// Generated by dart2js (NullSafetyMode.unsound, trust primitives, omit checks, lax runtime type, csp), the Dart to JavaScript compiler version: 2.17.5. // The code supports the following hooks: // dartPrint(message): // if this function is defined it is called instead of the Dart [print] // method. // // dartMainRunner(main, args): // if this function is defined, the Dart [main] method will not be invoked // directly. Instead, a closure that will invoke [main], and its arguments // [args] is passed to [dartMainRunner]. // // dartDeferredLibraryLoader(uri, successCallback, errorCallback, loadId): // if this function is defined, it will be called when a deferred library // is loaded. It should load and eval the javascript of `uri`, and call // successCallback. If it fails to do so, it should call errorCallback with // an error. The loadId argument is the deferred import that resulted in // this uri being loaded. // // dartCallInstrumentation(id, qualifiedName): // if this function is defined, it will be called at each entry of a // method or constructor. Used only when compiling programs with // --experiment-call-instrumentation. (function dartProgram() { function copyProperties(from, to) { var keys = Object.keys(from); for (var i = 0; i < keys.length; i++) { var key = keys[i]; to[key] = from[key]; } } function mixinPropertiesHard(from, to) { var keys = Object.keys(from); for (var i = 0; i < keys.length; i++) { var key = keys[i]; if (!to.hasOwnProperty(key)) to[key] = from[key]; } } function mixinPropertiesEasy(from, to) { Object.assign(to, from); } var supportsDirectProtoAccess = function() { var cls = function() { }; cls.prototype = {p: {}}; var object = new cls(); if (!(object.__proto__ && object.__proto__.p === cls.prototype.p)) return false; try { if (typeof navigator != "undefined" && typeof navigator.userAgent == "string" && navigator.userAgent.indexOf("Chrome/") >= 0) return true; if (typeof version == "function" && version.length == 0) { var v = version(); if (/^\d+\.\d+\.\d+\.\d+$/.test(v)) return true; } } catch (_) { } return false; }(); function inherit(cls, sup) { cls.prototype.constructor = cls; cls.prototype["$is" + cls.name] = cls; if (sup != null) { if (supportsDirectProtoAccess) { cls.prototype.__proto__ = sup.prototype; return; } var clsPrototype = Object.create(sup.prototype); copyProperties(cls.prototype, clsPrototype); cls.prototype = clsPrototype; } } function inheritMany(sup, classes) { for (var i = 0; i < classes.length; i++) inherit(classes[i], sup); } function mixinEasy(cls, mixin) { mixinPropertiesEasy(mixin.prototype, cls.prototype); cls.prototype.constructor = cls; } function mixinHard(cls, mixin) { mixinPropertiesHard(mixin.prototype, cls.prototype); cls.prototype.constructor = cls; } function lazyOld(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { holder[getterName] = function() { A.throwCyclicInit(name); }; var result; var sentinelInProgress = initializer; try { if (holder[name] === uninitializedSentinel) { result = holder[name] = sentinelInProgress; result = holder[name] = initializer(); } else result = holder[name]; } finally { if (result === sentinelInProgress) holder[name] = null; holder[getterName] = function() { return this[name]; }; } return result; }; } function lazy(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { if (holder[name] === uninitializedSentinel) holder[name] = initializer(); holder[getterName] = function() { return this[name]; }; return holder[name]; }; } function lazyFinal(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { if (holder[name] === uninitializedSentinel) { var value = initializer(); if (holder[name] !== uninitializedSentinel) A.throwLateFieldADI(name); holder[name] = value; } var finalValue = holder[name]; holder[getterName] = function() { return finalValue; }; return finalValue; }; } function makeConstList(list) { list.immutable$list = Array; list.fixed$length = Array; return list; } function convertToFastObject(properties) { function t() { } t.prototype = properties; new t(); return properties; } function convertAllToFastObject(arrayOfObjects) { for (var i = 0; i < arrayOfObjects.length; ++i) convertToFastObject(arrayOfObjects[i]); } var functionCounter = 0; function instanceTearOffGetter(isIntercepted, parameters) { var cache = null; return isIntercepted ? function(receiver) { if (cache === null) cache = A.closureFromTearOff(parameters); return new cache(receiver, this); } : function() { if (cache === null) cache = A.closureFromTearOff(parameters); return new cache(this, null); }; } function staticTearOffGetter(parameters) { var cache = null; return function() { if (cache === null) cache = A.closureFromTearOff(parameters).prototype; return cache; }; } var typesOffset = 0; function tearOffParameters(container, isStatic, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex, needsDirectAccess) { if (typeof funType == "number") funType += typesOffset; return {co: container, iS: isStatic, iI: isIntercepted, rC: requiredParameterCount, dV: optionalParameterDefaultValues, cs: callNames, fs: funsOrNames, fT: funType, aI: applyIndex || 0, nDA: needsDirectAccess}; } function installStaticTearOff(holder, getterName, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex) { var parameters = tearOffParameters(holder, true, false, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex, false); var getterFunction = staticTearOffGetter(parameters); holder[getterName] = getterFunction; } function installInstanceTearOff(prototype, getterName, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex, needsDirectAccess) { isIntercepted = !!isIntercepted; var parameters = tearOffParameters(prototype, false, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex, !!needsDirectAccess); var getterFunction = instanceTearOffGetter(isIntercepted, parameters); prototype[getterName] = getterFunction; } function setOrUpdateInterceptorsByTag(newTags) { var tags = init.interceptorsByTag; if (!tags) { init.interceptorsByTag = newTags; return; } copyProperties(newTags, tags); } function setOrUpdateLeafTags(newTags) { var tags = init.leafTags; if (!tags) { init.leafTags = newTags; return; } copyProperties(newTags, tags); } function updateTypes(newTypes) { var types = init.types; var length = types.length; types.push.apply(types, newTypes); return length; } function updateHolder(holder, newHolder) { copyProperties(newHolder, holder); return holder; } var hunkHelpers = function() { var mkInstance = function(isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, applyIndex) { return function(container, getterName, name, funType) { return installInstanceTearOff(container, getterName, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, [name], funType, applyIndex, false); }; }, mkStatic = function(requiredParameterCount, optionalParameterDefaultValues, callNames, applyIndex) { return function(container, getterName, name, funType) { return installStaticTearOff(container, getterName, requiredParameterCount, optionalParameterDefaultValues, callNames, [name], funType, applyIndex); }; }; return {inherit: inherit, inheritMany: inheritMany, mixin: mixinEasy, mixinHard: mixinHard, installStaticTearOff: installStaticTearOff, installInstanceTearOff: installInstanceTearOff, _instance_0u: mkInstance(0, 0, null, ["call$0"], 0), _instance_1u: mkInstance(0, 1, null, ["call$1"], 0), _instance_2u: mkInstance(0, 2, null, ["call$2"], 0), _instance_0i: mkInstance(1, 0, null, ["call$0"], 0), _instance_1i: mkInstance(1, 1, null, ["call$1"], 0), _instance_2i: mkInstance(1, 2, null, ["call$2"], 0), _static_0: mkStatic(0, null, ["call$0"], 0), _static_1: mkStatic(1, null, ["call$1"], 0), _static_2: mkStatic(2, null, ["call$2"], 0), makeConstList: makeConstList, lazy: lazy, lazyFinal: lazyFinal, lazyOld: lazyOld, updateHolder: updateHolder, convertToFastObject: convertToFastObject, updateTypes: updateTypes, setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag, setOrUpdateLeafTags: setOrUpdateLeafTags}; }(); function initializeDeferredHunk(hunk) { typesOffset = init.types.length; hunk(hunkHelpers, init, holders, $); } var A = { browserEngine() { var t1 = $.$get$_browserEngine(); return t1; }, detectBrowserEngineByVendorAgent(vendor, agent) { var exp; if (vendor === "Google Inc.") { exp = A.RegExp_RegExp("SAMSUNG|SGH-[I|N|T]|GT-[I|N]|SM-[A|N|P|T|Z]|SHV-E|SCH-[I|J|R|S]|SPH-L", true, false, false, false); if (exp._nativeRegExp.test(agent.toUpperCase())) return B.BrowserEngine_5; return B.BrowserEngine_0; } else if (vendor === "Apple Computer, Inc.") return B.BrowserEngine_1; else if (B.JSString_methods.contains$1(agent, "edge/")) return B.BrowserEngine_3; else if (B.JSString_methods.contains$1(agent, "Edg/")) return B.BrowserEngine_0; else if (B.JSString_methods.contains$1(agent, "trident/7.0")) return B.BrowserEngine_4; else if (vendor === "" && B.JSString_methods.contains$1(agent, "firefox")) return B.BrowserEngine_2; A.print("WARNING: failed to detect current browser engine."); return B.BrowserEngine_6; }, detectOperatingSystem() { var userAgent, maxTouchPoints, t1 = window.navigator.platform; t1.toString; userAgent = window.navigator.userAgent; if (B.JSString_methods.startsWith$1(t1, "Mac")) { maxTouchPoints = window.navigator.maxTouchPoints; if ((maxTouchPoints == null ? 0 : maxTouchPoints) > 2) return B.OperatingSystem_0; return B.OperatingSystem_4; } else if (B.JSString_methods.contains$1(t1.toLowerCase(), "iphone") || B.JSString_methods.contains$1(t1.toLowerCase(), "ipad") || B.JSString_methods.contains$1(t1.toLowerCase(), "ipod")) return B.OperatingSystem_0; else if (J.contains$1$asx(userAgent, "Android")) return B.OperatingSystem_1; else if (B.JSString_methods.startsWith$1(t1, "Linux")) return B.OperatingSystem_2; else if (B.JSString_methods.startsWith$1(t1, "Win")) return B.OperatingSystem_3; else return B.OperatingSystem_5; }, isIOS15() { var t1 = $.$get$_operatingSystem(); return t1 === B.OperatingSystem_0 && J.contains$1$asx(window.navigator.userAgent, "OS 15_"); }, _detectWebGLVersion() { var t1, canvas = A.CanvasElement_CanvasElement(1, 1); if (B.CanvasElement_methods.getContext$1(canvas, "webgl2") != null) { t1 = $.$get$_operatingSystem(); if (t1 === B.OperatingSystem_0) return 1; return 2; } if (B.CanvasElement_methods.getContext$1(canvas, "webgl") != null) return 1; return -1; }, canvasKit() { return $.__canvasKit._readField$0(); }, toSkM44FromFloat32(matrix4) { var r, t1, c, skM44 = new Float32Array(16); for (r = 0; r < 4; ++r) for (t1 = r * 4, c = 0; c < 4; ++c) skM44[c * 4 + r] = matrix4[t1 + c]; return skM44; }, toSkMatrixFromFloat32(matrix4) { var i, matrix4Index, skMatrix = new Float32Array(9); for (i = 0; i < 9; ++i) { matrix4Index = B.List_yXZ[i]; matrix4.toString; if (matrix4Index < 16) skMatrix[i] = matrix4[matrix4Index]; else skMatrix[i] = 0; } return skMatrix; }, toSkMatrixFromFloat64(matrix4) { var t1, i, matrix4Index, skMatrix = new Float32Array(9); for (t1 = matrix4.length, i = 0; i < 9; ++i) { matrix4Index = B.List_yXZ[i]; if (matrix4Index < t1) skMatrix[i] = matrix4[matrix4Index]; else skMatrix[i] = 0; } return skMatrix; }, toSkPoint(offset) { var point = new Float32Array(2); point[0] = offset._dx; point[1] = offset._dy; return point; }, toSkColorStops(colorStops) { var len, skColorStops, i; if (colorStops == null) return $.$get$_kDefaultSkColorStops(); len = colorStops.length; skColorStops = new Float32Array(len); for (i = 0; i < len; ++i) skColorStops[i] = colorStops[i]; return skColorStops; }, mallocFloat32List(size) { return self.window.flutterCanvasKit.Malloc(self.Float32Array, size); }, _populateSkColor(skColor, color) { var array = J.toTypedArray$0$x(skColor), t1 = color.value, t2 = J.getInterceptor$ax(array); t2.$indexSet(array, 0, (t1 >>> 16 & 255) / 255); t2.$indexSet(array, 1, (t1 >>> 8 & 255) / 255); t2.$indexSet(array, 2, (t1 & 255) / 255); t2.$indexSet(array, 3, (t1 >>> 24 & 255) / 255); return array; }, toSkRect(rect) { var skRect = new Float32Array(4); skRect[0] = rect.left; skRect[1] = rect.top; skRect[2] = rect.right; skRect[3] = rect.bottom; return skRect; }, fromSkRect(skRect) { var t1 = J.getInterceptor$asx(skRect); return new A.Rect(t1.$index(skRect, 0), t1.$index(skRect, 1), t1.$index(skRect, 2), t1.$index(skRect, 3)); }, toSkRRect(rrect) { var skRRect = new Float32Array(12); skRRect[0] = rrect.left; skRRect[1] = rrect.top; skRRect[2] = rrect.right; skRRect[3] = rrect.bottom; skRRect[4] = rrect.tlRadiusX; skRRect[5] = rrect.tlRadiusY; skRRect[6] = rrect.trRadiusX; skRRect[7] = rrect.trRadiusY; skRRect[8] = rrect.brRadiusX; skRRect[9] = rrect.brRadiusY; skRRect[10] = rrect.blRadiusX; skRRect[11] = rrect.blRadiusY; return skRRect; }, toMallocedSkPoints(points) { var t2, i, t3, len = points.length, t1 = self.window.flutterCanvasKit.Malloc(self.Float32Array, len * 2), list = J.toTypedArray$0$x(t1); for (t2 = J.getInterceptor$ax(list), i = 0; i < len; ++i) { t3 = 2 * i; t2.$indexSet(list, t3, points[i]._dx); t2.$indexSet(list, t3 + 1, points[i]._dy); } return t1; }, toFlatColors(colors) { var i, len = colors.length, result = new Uint32Array(len); for (i = 0; i < len; ++i) result[i] = J.get$value$x(colors[i]); return result; }, SkParagraphStyleProperties$(receiver) { return new A.SkParagraphStyleProperties(); }, SkTextStyleProperties$(receiver) { return new A.SkTextStyleProperties(); }, SkStrutStyleProperties$(receiver) { return new A.SkStrutStyleProperties(); }, SkFontStyle$(receiver) { return new A.SkFontStyle(); }, SkTextShadow$(receiver) { return new A.SkTextShadow(); }, SkFontFeature$(receiver) { return new A.SkFontFeature(); }, ProductionCollector$() { var t1 = new A.ProductionCollector(A._setArrayType([], type$.JSArray_SkDeletable)); t1.ProductionCollector$0(); return t1; }, patchCanvasKitModule(canvasKitScript) { var _s14_ = "defineProperty", t1 = $.$get$_context(), objectConstructor = type$.JsFunction._as(t1.$index(0, "Object")); if (t1.$index(0, "exports") == null) objectConstructor.callMethod$2(_s14_, [t1, "exports", A.JsObject_JsObject$jsify(A.LinkedHashMap_LinkedHashMap$_literal(["get", A.allowInterop(new A.patchCanvasKitModule_closure(canvasKitScript, objectConstructor)), "set", A.allowInterop(new A.patchCanvasKitModule_closure0()), "configurable", true], type$.String, type$.dynamic))]); if (t1.$index(0, "module") == null) objectConstructor.callMethod$2(_s14_, [t1, "module", A.JsObject_JsObject$jsify(A.LinkedHashMap_LinkedHashMap$_literal(["get", A.allowInterop(new A.patchCanvasKitModule_closure1(canvasKitScript, objectConstructor)), "set", A.allowInterop(new A.patchCanvasKitModule_closure2()), "configurable", true], type$.String, type$.dynamic))]); document.head.appendChild(canvasKitScript); }, ManagedSkColorFilter$(ckColorFilter) { var t1 = new A.ManagedSkColorFilter(ckColorFilter); t1.ManagedSkiaObject$1(null); return t1; }, Mutator$transform(matrix) { var _null = null; return new A.Mutator(B.MutatorType_3, _null, _null, _null, matrix, _null); }, diffViewList(active, next) { var index, i, t1, t2, _null = null; if (active.length === 0 || next.length === 0) return _null; index = B.JSArray_methods.indexOf$1(active, B.JSArray_methods.get$first(next)); if (index !== -1) { for (i = 0; t1 = i + index, t1 < active.length; ++i) { if (!J.$eq$(active[t1], next[i])) return _null; if (i === next.length - 1) if (index === 0) return new A.ViewListDiffResult(B.JSArray_methods.sublist$1(active, i + 1), B.List_empty24, true, B.JSArray_methods.get$first(next)); else return new A.ViewListDiffResult(B.JSArray_methods.sublist$2(active, 0, index), B.List_empty24, false, _null); } return new A.ViewListDiffResult(B.JSArray_methods.sublist$2(active, 0, index), B.JSArray_methods.sublist$1(next, active.length - index), false, _null); } index = B.JSArray_methods.lastIndexOf$1(active, B.JSArray_methods.get$last(next)); if (index !== -1) { for (i = 0; t1 = index - i, t1 >= 0; ++i) { t2 = next.length; if (t2 <= i || !J.$eq$(active[t1], next[t2 - 1 - i])) return _null; } return new A.ViewListDiffResult(B.JSArray_methods.sublist$1(active, index + 1), B.JSArray_methods.sublist$2(next, 0, next.length - index - 1), true, B.JSArray_methods.get$first(active)); } return _null; }, FontFallbackData_createNotoFontTree() { var t2, _i, font, t3, t4, _i0, range, t1 = type$.NotoFont, ranges = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_CodeunitRange); for (t2 = $.$get$_notoFonts(), _i = 0; _i < 25; ++_i) { font = t2[_i]; font._decodingCompleter = font.resolvedFont = null; for (t3 = font.approximateUnicodeRanges, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { range = t3[_i0]; J.add$1$ax(ranges.putIfAbsent$2(0, font, new A.FontFallbackData_createNotoFontTree_closure()), range); } } return A.IntervalTree_IntervalTree$createFromRanges(ranges, t1); }, findFontsForMissingCodeunits(codeUnits) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), t2, _i, codeUnit, t3, results, unmatchedCodeUnits, resolvedFonts, t4, t5, data, fonts, t1, coveredCodeUnits, missingCodeUnits; var $async$findFontsForMissingCodeunits = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start data = $.$get$FontFallbackData__instance(); fonts = A.LinkedHashSet_LinkedHashSet$_empty(type$.NotoFont); t1 = type$.int; coveredCodeUnits = A.LinkedHashSet_LinkedHashSet$_empty(t1); missingCodeUnits = A.LinkedHashSet_LinkedHashSet$_empty(t1); for (t2 = codeUnits.length, _i = 0; _i < codeUnits.length; codeUnits.length === t2 || (0, A.throwConcurrentModificationError)(codeUnits), ++_i) { codeUnit = codeUnits[_i]; t3 = data.notoTree; results = A._setArrayType([], t3.$ti._eval$1("JSArray<1>")); t3.root.searchForPoint$2(codeUnit, results); fonts.addAll$1(0, results); if (results.length !== 0) coveredCodeUnits.add$1(0, codeUnit); else missingCodeUnits.add$1(0, codeUnit); } t2 = A._LinkedHashSetIterator$(fonts, fonts._collection$_modifications, fonts.$ti._precomputed1); case 2: // for condition if (!t2.moveNext$0()) { // goto after for $async$goto = 3; break; } $async$goto = 4; return A._asyncAwait(t2._collection$_current.ensureResolved$0(), $async$findFontsForMissingCodeunits); case 4: // returning from await. // goto for condition $async$goto = 2; break; case 3: // after for unmatchedCodeUnits = A.LinkedHashSet_LinkedHashSet$from(coveredCodeUnits, t1); fonts = A.findMinimumFontsForCodeUnits(unmatchedCodeUnits, fonts); resolvedFonts = A.LinkedHashSet_LinkedHashSet$_empty(type$._ResolvedNotoSubset); for (t1 = A._LinkedHashSetIterator$(coveredCodeUnits, coveredCodeUnits._collection$_modifications, coveredCodeUnits.$ti._precomputed1), t2 = A._instanceType(fonts)._eval$1("_LinkedHashSetIterator<1>"); t1.moveNext$0();) { t3 = t1._collection$_current; for (t4 = new A._LinkedHashSetIterator(fonts, fonts._collection$_modifications, t2), t4._collection$_cell = fonts._collection$_first; t4.moveNext$0();) { t5 = t4._collection$_current.resolvedFont; if (t5 == null) continue; t5 = t5.tree; results = A._setArrayType([], t5.$ti._eval$1("JSArray<1>")); t5.root.searchForPoint$2(t3, results); resolvedFonts.addAll$1(0, results); } } t1 = $.$get$notoDownloadQueue(); resolvedFonts.forEach$1(0, t1.get$add(t1)); if (missingCodeUnits._collection$_length !== 0 || unmatchedCodeUnits._collection$_length !== 0) if (!data.registeredSymbolsAndEmoji) A._registerSymbolsAndEmoji(); else { t1 = $.$get$notoDownloadQueue(); if (!(t1.pendingSubsets._length !== 0 || t1._fontsLoading != null)) { $.$get$printWarning().call$1("Could not find a set of Noto fonts to display all missing characters. Please add a font asset for the missing characters. See: https://flutter.dev/docs/cookbook/design/fonts"); data.codeUnitsWithNoKnownFont.addAll$1(0, missingCodeUnits); } } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$findFontsForMissingCodeunits, $async$completer); }, _makeResolvedNotoFontFromCss(css, $name) { var t1, t2, fontFaceUnicodeRanges, fontFaceUrl, resolvingFontFace, t3, urlStart, rawRanges, _i, startEnd, rangeValue, startRange, endRange, rangesMap, subset, t4, _i0, range, _null = null, _s34_ = "Unable to parse Google Fonts CSS: ", subsets = A._setArrayType([], type$.JSArray__ResolvedNotoSubset); for (t1 = A.LineSplitter_split(css), t1 = new A._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")), t2 = type$.JSArray_CodeunitRange, fontFaceUnicodeRanges = _null, fontFaceUrl = fontFaceUnicodeRanges, resolvingFontFace = false; t1.moveNext$0();) { t3 = t1.get$current(t1); if (!resolvingFontFace) { if (t3 !== "@font-face {") continue; resolvingFontFace = true; } else if (J.startsWith$1$s(t3, " src:")) { urlStart = B.JSString_methods.indexOf$1(t3, "url("); if (urlStart === -1) { $.$get$printWarning().call$1("Unable to resolve Noto font URL: " + t3); return _null; } fontFaceUrl = B.JSString_methods.substring$2(t3, urlStart + 4, B.JSString_methods.indexOf$1(t3, ")")); resolvingFontFace = true; } else if (B.JSString_methods.startsWith$1(t3, " unicode-range:")) { fontFaceUnicodeRanges = A._setArrayType([], t2); rawRanges = B.JSString_methods.substring$2(t3, 17, t3.length - 1).split(", "); for (t3 = rawRanges.length, _i = 0; _i < t3; ++_i) { startEnd = J.split$1$s(rawRanges[_i], "-"); if (startEnd.length === 1) { rangeValue = A.int_parse(J.substring$1$s(B.JSArray_methods.get$single(startEnd), 2), 16); fontFaceUnicodeRanges.push(new A.CodeunitRange(rangeValue, rangeValue)); } else { startRange = startEnd[0]; endRange = startEnd[1]; fontFaceUnicodeRanges.push(new A.CodeunitRange(A.int_parse(J.substring$1$s(startRange, 2), 16), A.int_parse(endRange, 16))); } } resolvingFontFace = true; } else { if (t3 === "}") { if (fontFaceUrl == null || fontFaceUnicodeRanges == null) { $.$get$printWarning().call$1(_s34_ + A.S(css)); return _null; } subsets.push(new A._ResolvedNotoSubset(fontFaceUrl, $name, fontFaceUnicodeRanges)); } else continue; resolvingFontFace = false; } } if (resolvingFontFace) { $.$get$printWarning().call$1(_s34_ + A.S(css)); return _null; } t1 = type$._ResolvedNotoSubset; rangesMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_CodeunitRange); for (t2 = subsets.length, _i = 0; _i < subsets.length; subsets.length === t2 || (0, A.throwConcurrentModificationError)(subsets), ++_i) { subset = subsets[_i]; for (t3 = subset.ranges, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { range = t3[_i0]; J.add$1$ax(rangesMap.putIfAbsent$2(0, subset, new A._makeResolvedNotoFontFromCss_closure()), range); } } if (rangesMap._length === 0) { $.$get$printWarning().call$1("Parsed Google Fonts CSS was empty: " + A.S(css)); return _null; } return new A._ResolvedNotoFont($name, A.IntervalTree_IntervalTree$createFromRanges(rangesMap, t1)); }, _registerSymbolsAndEmoji() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, emojiCss, symbolsCss, t1, emojiFontUrl, symbolsFontUrl, data; var $async$_registerSymbolsAndEmoji = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start data = $.$get$FontFallbackData__instance(); if (data.registeredSymbolsAndEmoji) { // goto return $async$goto = 1; break; } data.registeredSymbolsAndEmoji = true; $async$goto = 3; return A._asyncAwait($.$get$notoDownloadQueue().downloader.downloadAsString$1("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji+Compat"), $async$_registerSymbolsAndEmoji); case 3: // returning from await. emojiCss = $async$result; $async$goto = 4; return A._asyncAwait($.$get$notoDownloadQueue().downloader.downloadAsString$1("https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols"), $async$_registerSymbolsAndEmoji); case 4: // returning from await. symbolsCss = $async$result; t1 = new A._registerSymbolsAndEmoji_extractUrlFromCss(); emojiFontUrl = t1.call$1(emojiCss); symbolsFontUrl = t1.call$1(symbolsCss); if (emojiFontUrl != null) $.$get$notoDownloadQueue().add$1(0, new A._ResolvedNotoSubset(emojiFontUrl, "Noto Color Emoji Compat", B.List_empty2)); else $.$get$printWarning().call$1("Error parsing CSS for Noto Emoji font."); if (symbolsFontUrl != null) $.$get$notoDownloadQueue().add$1(0, new A._ResolvedNotoSubset(symbolsFontUrl, "Noto Sans Symbols", B.List_empty2)); else $.$get$printWarning().call$1("Error parsing CSS for Noto Symbols font."); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_registerSymbolsAndEmoji, $async$completer); }, findMinimumFontsForCodeUnits(codeUnits, fonts) { var language, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _box_0, t12, maxCodeUnitsCovered, t13, t14, codeUnitsCovered, t15, t16, minimumFonts = A.LinkedHashSet_LinkedHashSet$_empty(type$.NotoFont), bestFonts = A._setArrayType([], type$.JSArray_NotoFont), t1 = window.navigator; t1.toString; language = t1.language || t1.userLanguage; for (t1 = A._instanceType(fonts)._eval$1("_LinkedHashSetIterator<1>"), t2 = A._instanceType(codeUnits)._eval$1("_LinkedHashSetIterator<1>"), t3 = language === "ja", t4 = language === "zh-HK", t5 = language !== "zh-Hant", t6 = language !== "zh-Hans", t7 = language !== "zh-CN", t8 = language !== "zh-SG", t9 = language === "zh-MY", t10 = language !== "zh-TW", t11 = language === "zh-MO"; codeUnits._collection$_length !== 0;) { _box_0 = {}; B.JSArray_methods.set$length(bestFonts, 0); for (t12 = new A._LinkedHashSetIterator(fonts, fonts._collection$_modifications, t1), t12._collection$_cell = fonts._collection$_first, maxCodeUnitsCovered = 0; t12.moveNext$0();) { t13 = t12._collection$_current; for (t14 = new A._LinkedHashSetIterator(codeUnits, codeUnits._collection$_modifications, t2), t14._collection$_cell = codeUnits._collection$_first, codeUnitsCovered = 0; t14.moveNext$0();) { t15 = t14._collection$_current; t16 = t13.resolvedFont; if ((t16 == null ? null : t16.tree.root.containsDeep$1(t15)) === true) ++codeUnitsCovered; } if (codeUnitsCovered > maxCodeUnitsCovered) { B.JSArray_methods.set$length(bestFonts, 0); bestFonts.push(t13); maxCodeUnitsCovered = codeUnitsCovered; } else if (codeUnitsCovered === maxCodeUnitsCovered) bestFonts.push(t13); } if (maxCodeUnitsCovered === 0) break; _box_0.bestFont = B.JSArray_methods.get$first(bestFonts); if (bestFonts.length > 1) if (B.JSArray_methods.every$1(bestFonts, new A.findMinimumFontsForCodeUnits_closure())) if (!t6 || !t7 || !t8 || t9) { if (B.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansSC())) _box_0.bestFont = $.$get$_notoSansSC(); } else if (!t5 || !t10 || t11) { if (B.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansTC())) _box_0.bestFont = $.$get$_notoSansTC(); } else if (t4) { if (B.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansHK())) _box_0.bestFont = $.$get$_notoSansHK(); } else if (t3) if (B.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansJP())) _box_0.bestFont = $.$get$_notoSansJP(); codeUnits._filterWhere$2(new A.findMinimumFontsForCodeUnits_closure0(_box_0), true); minimumFonts.addAll$1(0, bestFonts); } return minimumFonts; }, NotoFont$($name, approximateUnicodeRanges) { return new A.NotoFont($name, approximateUnicodeRanges); }, RegisteredFont$(bytes, family, typeface) { J.getGlyphBounds$3$x(new self.window.flutterCanvasKit.Font(typeface), A._setArrayType([0], type$.JSArray_int), null, null); return new A.RegisteredFont(family, bytes, typeface); }, skiaInstantiateImageCodec(list, targetWidth, targetHeight) { var _s19_ = "encoded image bytes"; if ($.$get$browserSupportsImageDecoder()) return A.CkBrowserImageDecoder_create(list, _s19_, targetHeight, targetWidth); else return A.CkAnimatedImage$decodeFromBytes(list, _s19_); }, skiaDecodeImageFromPixels(pixels, width, height, format, callback, allowUpscaling, rowBytes, targetHeight, targetWidth) { A.Timer_Timer(B.Duration_0, new A.skiaDecodeImageFromPixels_closure(width, height, format, pixels, rowBytes, callback)); }, ImageCodecException$(_message) { return new A.ImageCodecException(_message); }, skiaInstantiateWebImageCodec(url, chunkCallback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, list; var $async$skiaInstantiateWebImageCodec = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.fetchImage(url, chunkCallback), $async$skiaInstantiateWebImageCodec); case 3: // returning from await. list = $async$result; if ($.$get$browserSupportsImageDecoder()) { $async$returnValue = A.CkBrowserImageDecoder_create(list, url, null, null); // goto return $async$goto = 1; break; } else { $async$returnValue = A.CkAnimatedImage$decodeFromBytes(list, url); // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$skiaInstantiateWebImageCodec, $async$completer); }, fetchImage(url, chunkCallback) { var t2, t1 = new A._Future($.Zone__current, type$._Future_Uint8List), completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_Uint8List), request = $.$get$httpRequestFactory().call$0(); (request && B.HttpRequest_methods).open$3$async(request, "GET", url, true); request.responseType = "arraybuffer"; t2 = type$.legacy_ProgressEvent; A._EventStreamSubscription$(request, "progress", new A.fetchImage_closure(chunkCallback), false, t2); A._EventStreamSubscription$(request, "error", new A.fetchImage_closure0(completer, url), false, t2); A._EventStreamSubscription$(request, "load", new A.fetchImage_closure1(request, completer, url), false, t2); request.send(); return t1; }, CkImage$(skImage, videoFrame) { var t1 = new A.CkImage($, videoFrame); t1.CkImage$2$videoFrame(skImage, videoFrame); return t1; }, CkImage$cloneOf(box) { ++A._lateReadCheck(box, "box")._refCount; return new A.CkImage(box, null); }, CkImage__encodeImage(alphaType, colorSpace, colorType, format, skImage) { var t1 = format === B.ImageByteFormat_0 || format === B.ImageByteFormat_1, t2 = J.getInterceptor$x(skImage), bytes = t1 ? t2.readPixels$3(skImage, 0, 0, {width: t2.width$0(skImage), height: t2.height$0(skImage), colorType: colorType, alphaType: alphaType, colorSpace: colorSpace}) : t2.encodeToBytes$0(skImage); if (bytes == null) t1 = null; else { t1 = J.getInterceptor$x(bytes); t1 = J.asByteData$2$x(t1.get$buffer(bytes), 0, t1.get$length(bytes)); } return t1; }, CkAnimatedImage$decodeFromBytes(_bytes, src) { var t1 = new A.CkAnimatedImage(src, _bytes); t1.ManagedSkiaObject$1(null); return t1; }, CkBrowserImageDecoder_create(data, debugSource, targetHeight, targetWidth) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.CkBrowserImageDecoder), $async$returnValue, t1, decoder, contentType; var $async$CkBrowserImageDecoder_create = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start contentType = A.detectContentType(data); if (contentType == null) { data.toString; t1 = J.getInterceptor$asx(data); throw A.wrapException(A.ImageCodecException$("Failed to detect image file format using the file header.\nFile header was " + (!t1.get$isEmpty(data) ? "[" + A.bytesToHexString(t1.sublist$2(data, 0, Math.min(10, t1.get$length(data)))) + "]" : "empty") + ".\nImage source: " + debugSource)); } decoder = A.CkBrowserImageDecoder$_(contentType, data, debugSource, targetHeight, targetWidth); $async$goto = 3; return A._asyncAwait(decoder._getOrCreateWebDecoder$0(), $async$CkBrowserImageDecoder_create); case 3: // returning from await. $async$returnValue = decoder; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$CkBrowserImageDecoder_create, $async$completer); }, CkBrowserImageDecoder$_(contentType, data, debugSource, targetHeight, targetWidth) { return new A.CkBrowserImageDecoder(contentType, targetWidth, targetHeight, data, debugSource, new A.AlarmClock(new A.CkBrowserImageDecoder__cacheExpirationClock_closure())); }, detectContentType(data) { var t1, _i, format, t2, t3, i, magicByte; $label0$0: for (t1 = J.getInterceptor$asx(data), _i = 0; _i < 6; ++_i) { format = B.List_qp8[_i]; t2 = format.header; t3 = t2.length; if (t1.get$length(data) < t3) continue $label0$0; for (i = 0; i < t3; ++i) { magicByte = t2[i]; if (magicByte == null) continue; if (t1.$index(data, i) !== magicByte) continue $label0$0; } return format.contentType; } if (A.isAvif(data)) return "image/avif"; return null; }, isAvif(data) { var t1, i, i0, j, t2, t3; $label0$0: for (t1 = J.getInterceptor$asx(data), i = 0; i < 16; i0 = i + 1, i = i0) { for (j = 0; t2 = $.$get$_avifSignature()._string, j < t2.length; ++j) { t3 = i + j; if (t3 >= t1.get$length(data)) return false; if (t1.$index(data, t3) !== B.JSString_methods._codeUnitAt$1(t2, j)) continue $label0$0; } return true; } return false; }, _detectCanvasKit() { if (self.window.flutterWebRenderer != null) { var t1 = self.window.flutterWebRenderer; t1.toString; return J.$eq$(t1, "canvaskit"); } t1 = $.$get$_operatingSystem(); return J.containsKey$1$x(B.Set_69tl2._collection$_map, t1); }, initializeCanvasKit() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), t1, $async$temp1; var $async$initializeCanvasKit = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = self.window.flutterCanvasKit != null ? 2 : 4; break; case 2: // then t1 = self.window.flutterCanvasKit; t1.toString; $.__canvasKit.__late_helper$_value = t1; // goto join $async$goto = 3; break; case 4: // else $async$goto = $.$get$useH5vccCanvasKit() ? 5 : 7; break; case 5: // then t1 = self.window.h5vcc; if ((t1 == null ? null : J.get$canvasKit$x(t1)) == null) throw A.wrapException(A.CanvasKitError$("H5vcc CanvasKit implementation not found.")); t1 = self.window.h5vcc; t1.toString; t1 = J.get$canvasKit$x(t1); t1.toString; $.__canvasKit.__late_helper$_value = t1; self.window.flutterCanvasKit = $.__canvasKit._readField$0(); // goto join $async$goto = 6; break; case 7: // else $async$temp1 = $.__canvasKit; $async$goto = 8; return A._asyncAwait(A.downloadCanvasKit(null), $async$initializeCanvasKit); case 8: // returning from await. $async$temp1.__late_helper$_value = $async$result; self.window.flutterCanvasKit = $.__canvasKit._readField$0(); case 6: // join case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$initializeCanvasKit, $async$completer); }, downloadCanvasKit(canvasKitBase) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.CanvasKit), $async$returnValue, t1; var $async$downloadCanvasKit = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A._downloadCanvasKitJs(canvasKitBase), $async$downloadCanvasKit); case 3: // returning from await. t1 = new A._Future($.Zone__current, type$._Future_CanvasKit); J.then$1$x(self.window.CanvasKitInit({locateFile: A.allowInterop(new A.downloadCanvasKit_closure(canvasKitBase))}), A.allowInterop(new A.downloadCanvasKit_closure0(new A._AsyncCompleter(t1, type$._AsyncCompleter_CanvasKit)))); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$downloadCanvasKit, $async$completer); }, _downloadCanvasKitJs(canvasKitBase) { var canvasKitJavaScriptUrl, canvasKitScript, loadSubscription, t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); canvasKitJavaScriptUrl = t1.get$canvasKitBaseUrl(t1) + "profiling/canvaskit.js"; canvasKitScript = document.createElement("script"); canvasKitScript.src = canvasKitJavaScriptUrl; t1 = new A._Future($.Zone__current, type$._Future_void); loadSubscription = A._Cell$named("loadSubscription"); loadSubscription.__late_helper$_value = A._EventStreamSubscription$(canvasKitScript, "load", new A._downloadCanvasKitJs_closure(loadSubscription, new A._AsyncCompleter(t1, type$._AsyncCompleter_void)), false, type$._ElementEventStreamImpl_legacy_Event._precomputed1); A.patchCanvasKitModule(canvasKitScript); return t1; }, IntervalTree_IntervalTree$createFromRanges(rangesMap, $T) { var t1, intervals = A._setArrayType([], $T._eval$1("JSArray>")); rangesMap.forEach$1(0, new A.IntervalTree_IntervalTree$createFromRanges_closure(intervals, $T)); B.JSArray_methods.sort$1(intervals, new A.IntervalTree_IntervalTree$createFromRanges_closure0($T)); t1 = new A.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree($T).call$1(intervals); t1.toString; new A.IntervalTree_IntervalTree$createFromRanges__computeHigh($T).call$1(t1); return new A.IntervalTree(t1, $T._eval$1("IntervalTree<0>")); }, CkPaint$() { var t1 = new A.CkPaint(B.BlendMode_3, B.PaintingStyle_0, B.StrokeCap_0, B.StrokeJoin_0, B.Color_4278190080, B.FilterQuality_0); t1.ManagedSkiaObject$1(null); return t1; }, CkPath$() { var t1 = new A.CkPath(B.PathFillType_0); t1.ManagedSkiaObject$1(null); return t1; }, CkPath$fromSkPath(skPath, _fillType) { var t2, t3, t1 = new A.CkPath(_fillType); t1.ManagedSkiaObject$1(skPath); t2 = t1.get$skiaObject(); t3 = t1._fillType; J.setFillType$1$x(t2, $.$get$_skFillTypes()[t3.index]); return t1; }, SkiaObjects_registerCleanupCallback() { if ($.SkiaObjects__addedCleanupCallback) return; $.$get$EnginePlatformDispatcher__instance().get$rasterizer()._postFrameCallbacks.push(A._engine_SkiaObjects_postFrameCleanUp$closure()); $.SkiaObjects__addedCleanupCallback = true; }, SkiaObjects_markCacheForResize(cache) { A.SkiaObjects_registerCleanupCallback(); if (B.JSArray_methods.contains$1($.SkiaObjects_cachesToResize, cache)) return; $.SkiaObjects_cachesToResize.push(cache); }, SkiaObjects_postFrameCleanUp() { var i, object; if ($.SkiaObjects_resurrectableObjects.length === 0 && $.SkiaObjects_cachesToResize.length === 0) return; for (i = 0; i < $.SkiaObjects_resurrectableObjects.length; ++i) { object = $.SkiaObjects_resurrectableObjects[i]; object.delete$0(0); object.didDelete$0(); } B.JSArray_methods.set$length($.SkiaObjects_resurrectableObjects, 0); for (i = 0; i < $.SkiaObjects_cachesToResize.length; ++i) $.SkiaObjects_cachesToResize[i].resize$0(0); B.JSArray_methods.set$length($.SkiaObjects_cachesToResize, 0); }, SurfaceFactory_instance() { var t2, t3, t4, t5, _s20_ = "flt-canvas-container", t1 = $.SurfaceFactory__instance; if (t1 == null) { t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t1 = t1.get$canvasKitMaximumSurfaces(t1); t2 = A._ElementFactoryProvider_createElement_tag(_s20_, null); t3 = A._ElementFactoryProvider_createElement_tag(_s20_, null); t4 = type$.JSArray_Surface; t5 = A._setArrayType([], t4); t4 = A._setArrayType([], t4); t1 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t2), new A.Surface(t3), t1, t5, t4); } return t1; }, CkTextStyle_CkTextStyle(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing) { return new A.CkTextStyle(color, decoration, decorationColor, decorationStyle, decorationThickness, fontWeight, fontStyle, textBaseline, fontFamily, fontFamilyFallback, fontSize, letterSpacing, wordSpacing, height, leadingDistribution, locale, background, foreground, shadows, fontFeatures); }, toSkFontStyle(fontWeight, fontStyle) { var style = A.SkFontStyle$(null); if (fontWeight != null) style.weight = $.$get$_skFontWeights()[fontWeight.index]; if (fontStyle != null) style.slant = $.$get$_skFontSlants()[fontStyle.index]; return style; }, CkParagraphBuilder$(style) { var t2, t3, t4, t5, t6, t7, t8, t9, _null = null, t1 = A._setArrayType([], type$.JSArray__ParagraphCommand); type$.CkParagraphStyle._as(style); t2 = A._setArrayType([], type$.JSArray_double); t3 = A._setArrayType([], type$.JSArray_CkTextStyle); t4 = J.MakeFromFontProvider$2$x(J.get$ParagraphBuilder$x($.__canvasKit._readField$0()), style.skParagraphStyle, $._skiaFontCollection.fontProvider); t5 = style._fontFamily; t6 = style.__engine$_fontSize; t7 = style.__engine$_height; t8 = style._leadingDistribution; t9 = style._fontWeight; t3.push(A.CkTextStyle_CkTextStyle(_null, _null, _null, _null, _null, _null, t5, _null, _null, t6, style._fontStyle, t9, _null, t7, t8, _null, _null, _null, _null, _null)); return new A.CkParagraphBuilder(t4, style, t1, t2, t3); }, _getEffectiveFontFamilies(fontFamily, fontFamilyFallback) { var fontFamilies = A._setArrayType([], type$.JSArray_String); if (fontFamily != null) fontFamilies.push(fontFamily); if (fontFamilyFallback != null && !B.JSArray_methods.every$1(fontFamilyFallback, new A._getEffectiveFontFamilies_closure(fontFamily))) B.JSArray_methods.addAll$1(fontFamilies, fontFamilyFallback); B.JSArray_methods.addAll$1(fontFamilies, $.$get$FontFallbackData__instance().globalFontFallbacks); return fontFamilies; }, CanvasKitError$(message) { return new A.CanvasKitError(message); }, makeFreshSkColor(color) { var result = new Float32Array(4); result[0] = (color.get$value(color) >>> 16 & 255) / 255; result[1] = (color.get$value(color) >>> 8 & 255) / 255; result[2] = (color.get$value(color) & 255) / 255; result[3] = (color.get$value(color) >>> 24 & 255) / 255; return result; }, computeSkShadowBounds(path, elevation, devicePixelRatio, matrix) { var isComplex, ambientBlur, spotBlur, t1, spotOffsetX, spotOffsetY, shadowBounds, inverse, pathBounds = A.fromSkRect(J.getBounds$0$x(path.get$skiaObject())); if (elevation === 0) return pathBounds; isComplex = !matrix.isIdentityOrTranslation$0(); if (isComplex) pathBounds = A.transformRect(matrix, pathBounds); ambientBlur = Math.min(elevation * 0.0078125 * 64, 150); spotBlur = 1.1 * elevation; t1 = -elevation; spotOffsetX = t1 * 0; spotOffsetY = t1 * -0.75; shadowBounds = new A.Rect(pathBounds.left - 1 + (spotOffsetX - ambientBlur - spotBlur) * devicePixelRatio, pathBounds.top - 1 + (spotOffsetY - ambientBlur - spotBlur) * devicePixelRatio, pathBounds.right + 1 + (spotOffsetX + ambientBlur + spotBlur) * devicePixelRatio, pathBounds.bottom + 1 + (spotOffsetY + ambientBlur + spotBlur) * devicePixelRatio); if (isComplex) { inverse = new A.Matrix40(new Float32Array(16)); if (inverse.copyInverse$1(matrix) !== 0) return A.transformRect(inverse, shadowBounds); else return shadowBounds; } else return shadowBounds; }, drawSkShadow(skCanvas, path, color, elevation, transparentOccluder, devicePixelRatio) { var t3, t4, flags = transparentOccluder ? 5 : 4, inAmbient = A.Color$fromARGB(B.JSNumber_methods.round$0((color.get$value(color) >>> 24 & 255) * 0.039), color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), inSpot = A.Color$fromARGB(B.JSNumber_methods.round$0((color.get$value(color) >>> 24 & 255) * 0.25), color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), inTonalColors = {ambient: A.makeFreshSkColor(inAmbient), spot: A.makeFreshSkColor(inSpot)}, tonalColors = J.computeTonalColors$1$x($.__canvasKit._readField$0(), inTonalColors), t1 = path.get$skiaObject(), t2 = new Float32Array(3); t2[2] = devicePixelRatio * elevation; t3 = new Float32Array(3); t3[0] = 0; t3[1] = -450; t3[2] = devicePixelRatio * 600; t4 = J.getInterceptor$x(tonalColors); J.drawShadow$7$x(skCanvas, t1, t2, t3, devicePixelRatio * 1.1, t4.get$ambient(tonalColors), t4.get$spot(tonalColors), flags); }, PasteFromClipboardStrategy_PasteFromClipboardStrategy() { var t1 = $.$get$_browserEngine(); return t1 === B.BrowserEngine_2 || window.navigator.clipboard == null ? new A.ExecCommandPasteStrategy() : new A.ClipboardAPIPasteStrategy(); }, FlutterViewEmbedder$() { var t1 = document.body; t1.toString; t1 = new A.FlutterViewEmbedder(t1); t1.reset$0(0); return t1; }, FlutterViewEmbedder__deviceOrientationToLockType(deviceOrientation) { switch (deviceOrientation) { case "DeviceOrientation.portraitUp": return "portrait-primary"; case "DeviceOrientation.landscapeLeft": return "portrait-secondary"; case "DeviceOrientation.portraitDown": return "landscape-primary"; case "DeviceOrientation.landscapeRight": return "landscape-secondary"; default: return null; } }, applyGlobalCssRulesToSheet(sheet, browserEngine, hasAutofillOverlay) { var t1, isWebKit = browserEngine === B.BrowserEngine_1, isFirefox = browserEngine === B.BrowserEngine_2; if (isFirefox) sheet.insertRule("flt-paragraph, flt-span {line-height: 100%;}", sheet.cssRules.length); sheet.insertRule(" flt-semantics input[type=range] {\n appearance: none;\n -webkit-appearance: none;\n width: 100%;\n position: absolute;\n border: none;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n ", sheet.cssRules.length); if (isWebKit) sheet.insertRule("flt-semantics input[type=range]::-webkit-slider-thumb { -webkit-appearance: none;}", sheet.cssRules.length); if (isFirefox) { sheet.insertRule("input::-moz-selection { background-color: transparent;}", sheet.cssRules.length); sheet.insertRule("textarea::-moz-selection { background-color: transparent;}", sheet.cssRules.length); } else { sheet.insertRule("input::selection { background-color: transparent;}", sheet.cssRules.length); sheet.insertRule("textarea::selection { background-color: transparent;}", sheet.cssRules.length); } sheet.insertRule(' flt-semantics input,\n flt-semantics textarea,\n flt-semantics [contentEditable="true"] {\n caret-color: transparent;\n }\n ', sheet.cssRules.length); if (isWebKit) sheet.insertRule(" flt-glass-pane * {\n -webkit-tap-highlight-color: transparent;\n }\n ", sheet.cssRules.length); sheet.insertRule(" .flt-text-editing::placeholder {\n opacity: 0;\n }\n ", sheet.cssRules.length); t1 = $.$get$_browserEngine(); if (t1 !== B.BrowserEngine_0) if (t1 !== B.BrowserEngine_5) t1 = t1 === B.BrowserEngine_1; else t1 = true; else t1 = true; if (t1) sheet.insertRule(" .transparentTextEditing:-webkit-autofill,\n .transparentTextEditing:-webkit-autofill:hover,\n .transparentTextEditing:-webkit-autofill:focus,\n .transparentTextEditing:-webkit-autofill:active {\n -webkit-transition-delay: 99999s;\n }\n ", sheet.cssRules.length); }, flutterViewEmbedder() { var embedder = $._flutterViewEmbedder; embedder.toString; return embedder; }, transformWithOffset(transform, offset) { var effectiveTransform; if (offset.$eq(0, B.Offset_0_0)) return transform; effectiveTransform = new A.Matrix40(new Float32Array(16)); effectiveTransform.setFrom$1(transform); effectiveTransform.translate$3(0, offset._dx, offset._dy, 0); return effectiveTransform; }, drawParagraphElement(paragraph, offset, transform) { var paragraphElement = paragraph.toDomElement$0(); if (transform != null) A.setElementTransform(paragraphElement, A.transformWithOffset(transform, offset).__engine$_m4storage); return paragraphElement; }, sendFontChangeMessage() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic); var $async$sendFontChangeMessage = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$._fontChangeScheduled) { $._fontChangeScheduled = true; B.Window_methods.requestAnimationFrame$1(window, new A.sendFontChangeMessage_closure()); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$sendFontChangeMessage, $async$completer); }, BitmapCanvas$(_bounds, renderStrategy, density) { var t1 = A._ElementFactoryProvider_createElement_tag("flt-canvas", null), t2 = A._setArrayType([], type$.JSArray_Element), t3 = A.EnginePlatformDispatcher_browserDevicePixelRatio(), t4 = _bounds.left, t5 = _bounds.right - t4, t6 = A.BitmapCanvas_widthToPhysical(t5), t7 = _bounds.top, t8 = _bounds.bottom - t7, t9 = A.BitmapCanvas_heightToPhysical(t8); t8 = new A.CanvasPool(A.BitmapCanvas_widthToPhysical(t5), A.BitmapCanvas_heightToPhysical(t8), density, A._setArrayType([], type$.JSArray_SaveStackEntry), A.Matrix4$identity()); t3 = new A.BitmapCanvas(_bounds, t1, t8, t2, t6, t9, t3, density, renderStrategy); t9 = t1.style; t9.position = "absolute"; t3._canvasPositionX = B.JSNumber_methods.floor$0(t4) - 1; t3._canvasPositionY = B.JSNumber_methods.floor$0(t7) - 1; t3._updateRootElementTransform$0(); t8._rootElement = type$.HtmlElement._as(t1); t3._setupInitialTransform$0(); return t3; }, BitmapCanvas_widthToPhysical(width) { return B.JSNumber_methods.ceil$0((width + 1) * A.EnginePlatformDispatcher_browserDevicePixelRatio()) + 2; }, BitmapCanvas_heightToPhysical(height) { return B.JSNumber_methods.ceil$0((height + 1) * A.EnginePlatformDispatcher_browserDevicePixelRatio()) + 2; }, BitmapCanvas__onEvictElement(element) { (element && B.ImageElement_methods).remove$0(element); }, blendModeToCssMixBlendMode(blendMode) { if (blendMode == null) return null; switch (blendMode.index) { case 3: return "source-over"; case 5: return "source-in"; case 7: return "source-out"; case 9: return "source-atop"; case 4: return "destination-over"; case 6: return "destination-in"; case 8: return "destination-out"; case 10: return "destination-atop"; case 12: return "lighten"; case 1: return "copy"; case 11: return "xor"; case 24: case 13: return "multiply"; case 14: return "screen"; case 15: return "overlay"; case 16: return "darken"; case 17: return "lighten"; case 18: return "color-dodge"; case 19: return "color-burn"; case 20: return "hard-light"; case 21: return "soft-light"; case 22: return "difference"; case 23: return "exclusion"; case 25: return "hue"; case 26: return "saturation"; case 27: return "color"; case 28: return "luminosity"; default: throw A.wrapException(A.UnimplementedError$("Flutter Web does not support the blend mode: " + blendMode.toString$0(0))); } }, blendModeToSvgEnum(blendMode) { switch (blendMode.index) { case 0: return B.SvgBlendMode_0; case 3: return B.SvgBlendMode_00; case 5: return B.SvgBlendMode_01; case 7: return B.SvgBlendMode_02; case 9: return B.SvgBlendMode_03; case 4: return B.SvgBlendMode_04; case 6: return B.SvgBlendMode_05; case 8: return B.SvgBlendMode_06; case 10: return B.SvgBlendMode_07; case 12: return B.SvgBlendMode_08; case 1: return B.SvgBlendMode_09; case 11: return B.SvgBlendMode_010; case 24: case 13: return B.SvgBlendMode_2; case 14: return B.SvgBlendMode_3; case 15: return B.SvgBlendMode_6; case 16: return B.SvgBlendMode_4; case 17: return B.SvgBlendMode_5; case 18: return B.SvgBlendMode_7; case 19: return B.SvgBlendMode_8; case 20: return B.SvgBlendMode_9; case 21: return B.SvgBlendMode_10; case 22: return B.SvgBlendMode_11; case 23: return B.SvgBlendMode_12; case 25: return B.SvgBlendMode_13; case 26: return B.SvgBlendMode_14; case 27: return B.SvgBlendMode_15; case 28: return B.SvgBlendMode_16; default: return B.SvgBlendMode_1; } }, stringForStrokeCap(strokeCap) { switch (strokeCap.index) { case 0: return "butt"; case 1: return "round"; case 2: default: return "square"; } }, stringForStrokeJoin(strokeJoin) { switch (strokeJoin.index) { case 1: return "round"; case 2: return "bevel"; case 0: default: return "miter"; } }, _clipContent(clipStack, $content, offset, currentTransform) { var root, curElement, clipIndex, entry, t2, newElement, t3, rect, newClipTransform, transformKind, clipOffsetX, clipOffsetY, newClipTransform0, t4, t5, value, t6, t7, t8, t9, t10, ovalBounds, reverseTransformDiv, _s8_ = "absolute", _s6_ = "hidden", _s16_ = "transform-origin", _s9_ = "transform", _s13_ = "border-radius", _s15_ = "transform-style", t1 = type$.JSArray_Element, clipDefs = A._setArrayType([], t1), len = clipStack.length; for (root = null, curElement = null, clipIndex = 0; clipIndex < len; ++clipIndex, curElement = reverseTransformDiv) { entry = clipStack[clipIndex]; t2 = document; newElement = t2.createElement("div"); t3 = newElement.style; t3.position = _s8_; t3 = $.$get$_browserEngine(); if (t3 === B.BrowserEngine_1) { t3 = newElement.style; t3.zIndex = "0"; } if (root == null) root = newElement; else curElement.appendChild(newElement); rect = entry.rect; newClipTransform = entry.currentTransform; t3 = newClipTransform.__engine$_m4storage; transformKind = A.transformKindOf(t3); if (rect != null) { clipOffsetX = rect.left; clipOffsetY = rect.top; t3 = new Float32Array(16); newClipTransform0 = new A.Matrix40(t3); newClipTransform0.setFrom$1(newClipTransform); newClipTransform0.translate$2(0, clipOffsetX, clipOffsetY); t4 = newElement.style; t4.overflow = _s6_; t5 = rect.right; t4.width = A.S(t5 - clipOffsetX) + "px"; t5 = rect.bottom; t4.height = A.S(t5 - clipOffsetY) + "px"; t4 = newElement.style; t4.toString; t5 = B.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s16_); t4.setProperty(t5, "0 0 0", ""); value = A.float64ListToCssTransform(t3); t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s9_); t4.setProperty(t3, value, ""); newClipTransform = newClipTransform0; } else { t4 = entry.rrect; if (t4 != null) { t3 = t4.tlRadiusX; t5 = t4.trRadiusX; t6 = t4.brRadiusX; t7 = t4.blRadiusX; clipOffsetX = t4.left; clipOffsetY = t4.top; t8 = new Float32Array(16); newClipTransform0 = new A.Matrix40(t8); newClipTransform0.setFrom$1(newClipTransform); newClipTransform0.translate$2(0, clipOffsetX, clipOffsetY); t9 = newElement.style; t9.toString; t10 = B.CssStyleDeclaration_methods._browserPropertyName$1(t9, _s13_); t9.setProperty(t10, A.S(t3) + "px " + A.S(t5) + "px " + A.S(t6) + "px " + A.S(t7) + "px", ""); t9.overflow = _s6_; t3 = t4.right; t9.width = A.S(t3 - clipOffsetX) + "px"; t3 = t4.bottom; t9.height = A.S(t3 - clipOffsetY) + "px"; t3 = newElement.style; t3.toString; t4 = B.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s16_); t3.setProperty(t4, "0 0 0", ""); value = A.float64ListToCssTransform(t8); t4 = B.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s9_); t3.setProperty(t4, value, ""); newClipTransform = newClipTransform0; } else { t4 = entry.path; if (t4 != null) { t5 = t4.pathRef; if ((t5.fIsOval ? t5.fRRectOrOvalStartIdx : -1) !== -1) { ovalBounds = t4.getBounds$0(0); clipOffsetX = ovalBounds.left; clipOffsetY = ovalBounds.top; t3 = new Float32Array(16); newClipTransform0 = new A.Matrix40(t3); newClipTransform0.setFrom$1(newClipTransform); newClipTransform0.translate$2(0, clipOffsetX, clipOffsetY); t4 = newElement.style; t4.overflow = _s6_; t5 = ovalBounds.right; t4.width = A.S(t5 - clipOffsetX) + "px"; t5 = ovalBounds.bottom; t4.height = A.S(t5 - clipOffsetY) + "px"; t5 = B.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s13_); t4.setProperty(t5, "50%", ""); t4 = newElement.style; t4.toString; t5 = B.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s16_); t4.setProperty(t5, "0 0 0", ""); value = A.float64ListToCssTransform(t3); t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s9_); t4.setProperty(t3, value, ""); newClipTransform = newClipTransform0; } else { t5 = newElement.style; value = A.float64ListToCssTransform(t3); t5.toString; t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t5, _s9_); t5.setProperty(t3, value, ""); t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t5, _s16_); t5.setProperty(t3, "0 0 0", ""); clipDefs.push(A.createSvgClipDef(newElement, t4)); } } } } reverseTransformDiv = t2.createElement("div"); t2 = reverseTransformDiv.style; t2.position = _s8_; t2 = new Float32Array(16); t3 = new A.Matrix40(t2); t3.setFrom$1(newClipTransform); t3.copyInverse$1(t3); t3 = reverseTransformDiv.style; t3.toString; t4 = B.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s16_); t3.setProperty(t4, "0 0 0", ""); value = A.float64ListToCssTransform(t2); t2 = B.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s9_); t3.setProperty(t2, value, ""); if (transformKind === B.TransformKind_2) { t2 = newElement.style; t2.toString; t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t2, _s15_); t2.setProperty(t3, "preserve-3d", ""); t2 = reverseTransformDiv.style; t2.toString; t3 = B.CssStyleDeclaration_methods._browserPropertyName$1(t2, _s15_); t2.setProperty(t3, "preserve-3d", ""); } newElement.appendChild(reverseTransformDiv); } t2 = root.style; t2.position = _s8_; curElement.appendChild($content); A.setElementTransform($content, A.transformWithOffset(currentTransform, offset).__engine$_m4storage); t1 = A._setArrayType([root], t1); B.JSArray_methods.addAll$1(t1, clipDefs); return t1; }, maskFilterToCanvasFilter(maskFilter) { var t1, t2; if (maskFilter != null) { t1 = maskFilter._sigma; t2 = $.$get$window()._debugDevicePixelRatio; return "blur(" + A.S(t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2)) + "px)"; } else return "none"; }, createSvgClipDef(element, clipPath) { var t3, pathBounds = clipPath.getBounds$0(0), t1 = pathBounds.right, t2 = pathBounds.bottom, svgClipPath = A.pathToSvgClipPath(clipPath, 0, 0, 1 / t1, 1 / t2); A.setClipPath(element, "url(#svgClip" + $._clipIdCounter + ")"); t3 = element.style; t3.width = A.S(t1) + "px"; t3.height = A.S(t2) + "px"; return svgClipPath; }, SvgFilterBuilder$() { var t1 = type$.SvgSvgElement._as($.$get$kSvgResourceHeader().cloneNode(false)), t2 = type$.FilterElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "filter"))), t3 = $.SvgFilterBuilder__filterIdCounter + 1; $.SvgFilterBuilder__filterIdCounter = t3; t3 = "_fcf" + t3; t2.id = t3; t2.filterUnits.baseVal = 2; t2.x.baseVal.valueAsString = "0%"; t2.y.baseVal.valueAsString = "0%"; t2.width.baseVal.valueAsString = "100%"; t2.height.baseVal.valueAsString = "100%"; return new A.SvgFilterBuilder(t3, t1, t2); }, _blendColorFilterToSvg(color, svgBlendMode, swapLayers) { var _s5_ = "flood", _s13_ = "SourceGraphic", builder = A.SvgFilterBuilder$(), t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); if (swapLayers) builder.setFeBlend$3$in1$in2$mode(_s13_, _s5_, svgBlendMode.blendMode); else builder.setFeBlend$3$in1$in2$mode(_s5_, _s13_, svgBlendMode.blendMode); return builder.build$0(0); }, buildDrawRectElement(rect, paint, tagName, transform) { var isStroke, strokeWidth, t2, t3, left, right, $top, bottom, effectiveTransform, translated, style, cssColor, sigma, url, t1 = document.createElement(tagName); type$.HtmlElement._as(t1); isStroke = paint.style === B.PaintingStyle_1; strokeWidth = paint.strokeWidth; if (strokeWidth == null) strokeWidth = 0; t2 = rect.left; t3 = rect.right; left = Math.min(A.checkNum(t2), A.checkNum(t3)); right = Math.max(A.checkNum(t2), A.checkNum(t3)); t3 = rect.top; t2 = rect.bottom; $top = Math.min(A.checkNum(t3), A.checkNum(t2)); bottom = Math.max(A.checkNum(t3), A.checkNum(t2)); if (transform.isIdentity$0(0)) if (isStroke) { t2 = strokeWidth / 2; effectiveTransform = "translate(" + A.S(left - t2) + "px, " + A.S($top - t2) + "px)"; } else effectiveTransform = "translate(" + A.S(left) + "px, " + A.S($top) + "px)"; else { t2 = new Float32Array(16); translated = new A.Matrix40(t2); translated.setFrom$1(transform); if (isStroke) { t3 = strokeWidth / 2; translated.translate$2(0, left - t3, $top - t3); } else translated.translate$2(0, left, $top); effectiveTransform = A.float64ListToCssTransform(t2); } style = t1.style; style.position = "absolute"; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform-origin"), "0 0 0", ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform"), effectiveTransform, ""); t2 = paint.color; if (t2 == null) cssColor = "#000000"; else { t2 = A.colorToCssString(t2); t2.toString; cssColor = t2; } t2 = paint.maskFilter; if (t2 != null) { sigma = t2._sigma; t2 = $.$get$_browserEngine(); if (t2 === B.BrowserEngine_1 && !isStroke) { B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "box-shadow"), "0px 0px " + A.S(sigma * 2) + "px " + cssColor, ""); t2 = paint.color; if (t2 == null) t2 = B.Color_4278190080; t2 = A.colorToCssString(new A.Color(((B.JSNumber_methods.round$0((1 - Math.min(Math.sqrt(sigma) / 6.283185307179586, 1)) * (t2.get$value(t2) >>> 24 & 255)) & 255) << 24 | t2.get$value(t2) & 16777215) >>> 0)); t2.toString; cssColor = t2; } else B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "filter"), "blur(" + A.S(sigma) + "px)", ""); } t2 = right - left; if (isStroke) { style.width = A.S(t2 - strokeWidth) + "px"; style.height = A.S(bottom - $top - strokeWidth) + "px"; t2 = A._borderStrokeToCssUnit(strokeWidth); style.border = t2 + " solid " + cssColor; } else { style.width = A.S(t2) + "px"; style.height = A.S(bottom - $top) + "px"; style.backgroundColor = cssColor; url = A._getBackgroundImageUrl(paint.shader, rect); t2 = url !== "" ? "url('" + A.S(url) + "'" : ""; style.backgroundImage = t2; } return t1; }, _getBackgroundImageUrl(shader, bounds) { if (shader != null) if (shader instanceof A.EngineGradient) return A._asStringS(shader.createImageBitmap$3(bounds, 1, true)); return ""; }, applyRRectBorderRadius(style, rrect) { var t3, t4, t1 = rrect.tlRadiusX, t2 = rrect.trRadiusX; if (t1 === t2) { t3 = rrect.blRadiusX; if (t1 === t3) { t4 = rrect.brRadiusX; t3 = t1 === t4 && t1 === rrect.tlRadiusY && t2 === rrect.trRadiusY && t3 === rrect.blRadiusY && t4 === rrect.brRadiusY; } else t3 = false; } else t3 = false; if (t3) { t1 = A._borderStrokeToCssUnit(rrect.blRadiusX); style.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-radius"), t1, ""); return; } t1 = A._borderStrokeToCssUnit(t1); t3 = A._borderStrokeToCssUnit(rrect.tlRadiusY); style.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-left-radius"), t1 + " " + t3, ""); t2 = A._borderStrokeToCssUnit(t2); t3 = A._borderStrokeToCssUnit(rrect.trRadiusY); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-right-radius"), t2 + " " + t3, ""); t3 = A._borderStrokeToCssUnit(rrect.blRadiusX); t2 = A._borderStrokeToCssUnit(rrect.blRadiusY); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-left-radius"), t3 + " " + t2, ""); t2 = A._borderStrokeToCssUnit(rrect.brRadiusX); t3 = A._borderStrokeToCssUnit(rrect.brRadiusY); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-right-radius"), t2 + " " + t3, ""); }, _borderStrokeToCssUnit(value) { return B.JSNumber_methods.toStringAsFixed$1(value === 0 ? 1 : value, 3) + "px"; }, pathToSvgElement(path, paint, width, height) { var svgPath, color, t1, t2, _s4_ = "fill", root = A.SvgSvgElement_SvgSvgElement(); root.setAttribute("width", width + "px"); root.setAttribute("height", height + "px"); root.setAttribute("viewBox", "0 0 " + width + " " + height); svgPath = type$.PathElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "path"))); root.appendChild(svgPath); color = paint.color; t1 = color == null; if (t1) color = B.Color_4278190080; t2 = paint.style; if (t2 !== B.PaintingStyle_1) if (t2 !== B.PaintingStyle_0) { t2 = paint.strokeWidth; t2 = t2 !== 0 && t2 != null; } else t2 = false; else t2 = true; if (t2) { t1 = A.colorToCssString(color); t1.toString; svgPath.setAttribute("stroke", t1); t1 = paint.strokeWidth; svgPath.setAttribute("stroke-width", A.S(t1 == null ? 1 : t1)); svgPath.setAttribute(_s4_, "none"); } else if (!t1) { t1 = A.colorToCssString(color); t1.toString; svgPath.setAttribute(_s4_, t1); } else svgPath.setAttribute(_s4_, "#000000"); if (path._fillType === B.PathFillType_1) svgPath.setAttribute("fill-rule", "evenodd"); svgPath.setAttribute("d", A.pathToSvg(path.pathRef, 0, 0)); return root; }, Conic__subdivide(src, level, pointList) { var dst, t1, t2, startY, endY, midY, t3; if (0 === level) { pointList.push(new A.Offset(src.p1x, src.p1y)); pointList.push(new A.Offset(src.p2x, src.p2y)); return; } dst = new A._ConicPair(); src._chop$1(dst); t1 = dst.first; t1.toString; t2 = dst.second; t2.toString; startY = src.p0y; endY = src.p2y; if (A.SPath_between(startY, src.p1y, endY)) { midY = t1.p2y; if (!A.SPath_between(startY, midY, endY)) t3 = t1.p2y = t2.p0y = Math.abs(midY - startY) < Math.abs(midY - endY) ? startY : endY; else t3 = midY; if (!A.SPath_between(startY, t1.p1y, t3)) t1.p1y = startY; if (!A.SPath_between(t2.p0y, t2.p1y, endY)) t2.p1y = endY; } --level; A.Conic__subdivide(t1, level, pointList); A.Conic__subdivide(t2, level, pointList); }, Conic_evalNumerator(p0, p1, p2, w, t) { var src2w = p1 * w; return ((p2 - 2 * src2w + p0) * t + 2 * (src2w - p0)) * t + p0; }, Conic_evalDenominator(w, t) { var $B = 2 * (w - 1); return (-$B * t + $B) * t + 1; }, chopCubicAtYExtrema(points, dest) { var t1, roots, t2, t3, rootCount, y0 = points[1], y1 = points[3], y2 = points[5], _quadRoots = new A.QuadRoots(); _quadRoots.findRoots$3(points[7] - y0 + 3 * (y1 - y2), 2 * (y0 - y1 - y1 + y2), y1 - y0); t1 = _quadRoots.root0; if (t1 == null) roots = A._setArrayType([], type$.JSArray_double); else { t2 = _quadRoots.root1; t3 = type$.JSArray_double; roots = t2 == null ? A._setArrayType([t1], t3) : A._setArrayType([t1, t2], t3); } if (roots.length === 0) return 0; A._chopCubicAt(roots, points, dest); rootCount = roots.length; if (rootCount > 0) { t1 = dest[7]; dest[9] = t1; dest[5] = t1; if (rootCount === 2) { t1 = dest[13]; dest[15] = t1; dest[11] = t1; } } return rootCount; }, _chopCubicAt(tValues, points, outPts) { var i, t, t1, bufferPos, p3y, p0x, t2, p0y, p1x, p1y, p2x, p2y, bufferPos0, p3x, t3, ab1x, ab1y, bc1x, bc1y, cd1x, cd1y, abc1x, abc1y, bcd1x, bcd1y, outIndex, outIndex0, i0, rootCount = tValues.length; if (0 === rootCount) for (i = 0; i < 8; ++i) outPts[i] = points[i]; else { t = tValues[0]; for (t1 = rootCount - 1, bufferPos = 0, i = 0; i < rootCount; i = i0, bufferPos = bufferPos0) { t.toString; p3y = points[bufferPos + 7]; p0x = points[bufferPos]; t2 = bufferPos + 1; p0y = points[t2]; p1x = points[bufferPos + 2]; p1y = points[bufferPos + 3]; p2x = points[bufferPos + 4]; p2y = points[bufferPos + 5]; bufferPos0 = bufferPos + 6; p3x = points[bufferPos0]; t3 = 1 - t; ab1x = p0x * t3 + p1x * t; ab1y = p0y * t3 + p1y * t; bc1x = p1x * t3 + p2x * t; bc1y = p1y * t3 + p2y * t; cd1x = p2x * t3 + p3x * t; cd1y = p2y * t3 + p3y * t; abc1x = ab1x * t3 + bc1x * t; abc1y = ab1y * t3 + bc1y * t; bcd1x = bc1x * t3 + cd1x * t; bcd1y = bc1y * t3 + cd1y * t; outPts[bufferPos] = p0x; outIndex = t2 + 1; outPts[t2] = p0y; outIndex0 = outIndex + 1; outPts[outIndex] = ab1x; outIndex = outIndex0 + 1; outPts[outIndex0] = ab1y; outIndex0 = outIndex + 1; outPts[outIndex] = abc1x; outIndex = outIndex0 + 1; outPts[outIndex0] = abc1y; outIndex0 = outIndex + 1; outPts[outIndex] = abc1x * t3 + bcd1x * t; outIndex = outIndex0 + 1; outPts[outIndex0] = abc1y * t3 + bcd1y * t; outIndex0 = outIndex + 1; outPts[outIndex] = bcd1x; outIndex = outIndex0 + 1; outPts[outIndex0] = bcd1y; outIndex0 = outIndex + 1; outPts[outIndex] = cd1x; outIndex = outIndex0 + 1; outPts[outIndex0] = cd1y; outPts[outIndex] = p3x; outPts[outIndex + 1] = p3y; if (i === t1) break; i0 = i + 1; t2 = tValues[i0]; t3 = tValues[i]; t = A.validUnitDivide(t2 - t3, 1 - t3); if (t == null) { t1 = points[bufferPos0 + 3]; outPts[bufferPos0 + 6] = t1; outPts[bufferPos0 + 5] = t1; outPts[bufferPos0 + 4] = t1; break; } } } }, chopMonoAtY(_buffer, bufferStartPos, y) { var tNeg, tPos, t1, t2, t3, tMid, y01, y12, y012, y0123, ycrv0 = _buffer[1 + bufferStartPos] - y, ycrv1 = _buffer[3 + bufferStartPos] - y, ycrv2 = _buffer[5 + bufferStartPos] - y, ycrv3 = _buffer[7 + bufferStartPos] - y; if (ycrv0 < 0) { if (ycrv3 < 0) return null; tNeg = 0; tPos = 1; } else { if (!(ycrv0 > 0)) return 0; tNeg = 1; tPos = 0; } t1 = ycrv1 - ycrv0; t2 = ycrv2 - ycrv1; t3 = ycrv3 - ycrv2; do { tMid = (tPos + tNeg) / 2; y01 = ycrv0 + t1 * tMid; y12 = ycrv1 + t2 * tMid; y012 = y01 + (y12 - y01) * tMid; y0123 = y012 + (y12 + (ycrv2 + t3 * tMid - y12) * tMid - y012) * tMid; if (y0123 === 0) return tMid; if (y0123 < 0) tNeg = tMid; else tPos = tMid; } while (Math.abs(tPos - tNeg) > 0.0000152587890625); return (tNeg + tPos) / 2; }, evalCubicPts(c0, c1, c2, c3, t) { return (((c3 + 3 * (c1 - c2) - c0) * t + 3 * (c2 - c1 - c1 + c0)) * t + 3 * (c1 - c0)) * t + c0; }, SurfacePath$() { var t1 = new A.SurfacePath(A.PathRef$(), B.PathFillType_0); t1._resetFields$0(); return t1; }, _arcIsLonePoint(oval, startAngle, sweepAngle) { var t1; if (0 === sweepAngle) t1 = 0 === startAngle || 360 === startAngle; else t1 = false; if (t1) return new A.Offset(oval.right, oval.get$center()._dy); return null; }, _computeMinScale(radius1, radius2, limit, scale) { var totalRadius = radius1 + radius2; if (totalRadius <= limit) return scale; return Math.min(limit / totalRadius, scale); }, PathIterator$(pathRef, forceClose) { var t1 = new A.PathIterator(pathRef, true, pathRef._fVerbsLength); if (pathRef.fBoundsIsDirty) pathRef._computeBounds$0(); if (!pathRef.fIsFinite) t1._verbIndex = pathRef._fVerbsLength; return t1; }, PathRef$() { var t1 = new Float32Array(16); t1 = new A.PathRef(t1, new Uint8Array(8)); t1._fVerbsCapacity = t1._fPointsCapacity = 8; t1.fRRectOrOvalStartIdx = 172; return t1; }, PathRef__fPointsFromSource(source, offsetX, offsetY) { var i, t1, sourceLength = source._fPointsLength, sourceCapacity = source._fPointsCapacity, dest = new Float32Array(sourceCapacity * 2), sourcePoints = source.fPoints, len = sourceLength * 2; for (i = 0; i < len; i += 2) { dest[i] = sourcePoints[i] + offsetX; t1 = i + 1; dest[t1] = sourcePoints[t1] + offsetY; } return dest; }, pathToSvg(pathRef, offsetX, offsetY) { var outPts, verb, w, points, len, i, t1, t2, buffer = new A.StringBuffer(""), iter = new A.PathRefIterator(pathRef); iter.PathRefIterator$1(pathRef); outPts = new Float32Array(8); for (; verb = iter.next$1(0, outPts), verb !== 6;) switch (verb) { case 0: buffer._contents += "M " + A.S(outPts[0] + offsetX) + " " + A.S(outPts[1] + offsetY); break; case 1: buffer._contents += "L " + A.S(outPts[2] + offsetX) + " " + A.S(outPts[3] + offsetY); break; case 4: buffer._contents += "C " + A.S(outPts[2] + offsetX) + " " + A.S(outPts[3] + offsetY) + " " + A.S(outPts[4] + offsetX) + " " + A.S(outPts[5] + offsetY) + " " + A.S(outPts[6] + offsetX) + " " + A.S(outPts[7] + offsetY); break; case 2: buffer._contents += "Q " + A.S(outPts[2] + offsetX) + " " + A.S(outPts[3] + offsetY) + " " + A.S(outPts[4] + offsetX) + " " + A.S(outPts[5] + offsetY); break; case 3: w = pathRef._conicWeights[iter._conicWeightIndex]; points = new A.Conic(outPts[0], outPts[1], outPts[2], outPts[3], outPts[4], outPts[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t1 = points[i]; t2 = points[i + 1]; buffer._contents += "Q " + A.S(t1._dx + offsetX) + " " + A.S(t1._dy + offsetY) + " " + A.S(t2._dx + offsetX) + " " + A.S(t2._dy + offsetY); } break; case 5: buffer._contents += "Z"; break; default: throw A.wrapException(A.UnimplementedError$("Unknown path verb " + verb)); } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, SPath_between(a, b, c) { return (a - b) * (c - b) <= 0; }, SPath_scalarSignedAsInt(x) { var t1; if (x < 0) t1 = -1; else t1 = x > 0 ? 1 : 0; return t1; }, validUnitDivide(numer, denom) { var r; if (numer < 0) { numer = -numer; denom = -denom; } if (denom === 0 || numer === 0 || numer >= denom) return null; r = numer / denom; if (isNaN(r)) return null; if (r === 0) return null; return r; }, isRRectOval(rrect) { var t3, t4, t1 = rrect.tlRadiusX, t2 = rrect.trRadiusX; if (t1 + t2 !== rrect.right - rrect.left) return false; t3 = rrect.tlRadiusY; t4 = rrect.trRadiusY; if (t3 + t4 !== rrect.bottom - rrect.top) return false; if (t1 !== rrect.blRadiusX || t2 !== rrect.brRadiusX || t3 !== rrect.blRadiusY || t4 !== rrect.brRadiusY) return false; return true; }, SkQuadCoefficients$(x0, y0, x1, y1, x2, y2) { return new A.SkQuadCoefficients(x2 - 2 * x1 + x0, y2 - 2 * y1 + y0, 2 * (x1 - x0), 2 * (y1 - y0), x0, y0); }, PathWinding__checkOnCurve(x, y, startX, startY, endX, endY) { if (startY == endY) return A.SPath_between(startX, x, endX) && x != endX; else return x == startX && y == startY; }, PathWinding__chopQuadAtExtrema(buffer) { var p01x, p01y, p12x, p12y, x0 = buffer[0], y0 = buffer[1], x1 = buffer[2], y1 = buffer[3], x2 = buffer[4], y2 = buffer[5], t1 = y0 - y1, tValueAtExtrema = A.validUnitDivide(t1, t1 - y1 + y2); if (tValueAtExtrema != null) { p01x = x0 + tValueAtExtrema * (x1 - x0); p01y = y0 + tValueAtExtrema * (y1 - y0); p12x = x1 + tValueAtExtrema * (x2 - x1); p12y = y1 + tValueAtExtrema * (y2 - y1); buffer[2] = p01x; buffer[3] = p01y; buffer[4] = p01x + tValueAtExtrema * (p12x - p01x); buffer[5] = p01y + tValueAtExtrema * (p12y - p01y); buffer[6] = p12x; buffer[7] = p12y; buffer[8] = x2; buffer[9] = y2; return 1; } buffer[3] = Math.abs(t1) < Math.abs(y1 - y2) ? y0 : y2; return 0; }, PathWinding__isQuadMonotonic(quad) { var y0 = quad[1], y1 = quad[3], y2 = quad[5]; if (y0 === y1) return true; if (y0 < y1) return y1 <= y2; else return y1 >= y2; }, tangentLine(pts, x, y, tangents) { var x0, x1, dx, dy, y0 = pts[1], y1 = pts[3]; if (!A.SPath_between(y0, y, y1)) return; x0 = pts[0]; x1 = pts[2]; if (!A.SPath_between(x0, x, x1)) return; dx = x1 - x0; dy = y1 - y0; if (!(Math.abs((x - x0) * dy - dx * (y - y0)) < 0.000244140625)) return; tangents.push(new A.Offset(dx, dy)); }, tangentQuad(pts, x, y, tangents) { var x0, x1, x2, roots, n, $A, $B, index, t1, t, y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!A.SPath_between(y0, y, y1) && !A.SPath_between(y1, y, y2)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; if (!A.SPath_between(x0, x, x1) && !A.SPath_between(x1, x, x2)) return; roots = new A.QuadRoots(); n = roots.findRoots$3(y0 - 2 * y1 + y2, 2 * (y1 - y0), y0 - y); for ($A = x2 - 2 * x1 + x0, $B = 2 * (x1 - x0), index = 0; index < n; ++index) { if (index === 0) { t1 = roots.root0; t1.toString; t = t1; } else { t1 = roots.root1; t1.toString; t = t1; } if (!(Math.abs(x - (($A * t + $B) * t + x0)) < 0.000244140625)) continue; tangents.push(A._evalQuadTangentAt(x0, y0, x1, y1, x2, y2, t)); } }, _evalQuadTangentAt(x0, y0, x1, y1, x2, y2, t) { var t1, bx, by; if (!(t === 0 && x0 === x1 && y0 === y1)) t1 = t === 1 && x1 === x2 && y1 === y2; else t1 = true; if (t1) return new A.Offset(x2 - x0, y2 - y0); bx = x1 - x0; by = y1 - y0; return new A.Offset(((x2 - x1 - bx) * t + bx) * 2, ((y2 - y1 - by) * t + by) * 2); }, tangentConic(pts, x, y, weight, tangents) { var x0, x1, x2, $B, quadRoots, n, src2w, $A, B0, A0, index, t1, t, y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!A.SPath_between(y0, y, y1) && !A.SPath_between(y1, y, y2)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; if (!A.SPath_between(x0, x, x1) && !A.SPath_between(x1, x, x2)) return; $B = y1 * weight - y * weight + y; quadRoots = new A.QuadRoots(); n = quadRoots.findRoots$3(y2 + (y0 - 2 * $B), 2 * ($B - y0), y0 - y); for (src2w = x1 * weight, $A = x2 - 2 * src2w + x0, $B = 2 * (src2w - x0), B0 = 2 * (weight - 1), A0 = -B0, index = 0; index < n; ++index) { if (index === 0) { t1 = quadRoots.root0; t1.toString; t = t1; } else { t1 = quadRoots.root1; t1.toString; t = t1; } if (!(Math.abs(x - (($A * t + $B) * t + x0) / ((A0 * t + B0) * t + 1)) < 0.000244140625)) continue; tangents.push(new A.Conic(x0, y0, x1, y1, x2, y2, weight).evalTangentAt$1(t)); } }, tangentCubic(pts, x, y, tangents) { var x0, x1, x2, x3, dst, n, i, bufferPos, t, y3 = pts[7], y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!A.SPath_between(y0, y, y1) && !A.SPath_between(y1, y, y2) && !A.SPath_between(y2, y, y3)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; x3 = pts[6]; if (!A.SPath_between(x0, x, x1) && !A.SPath_between(x1, x, x2) && !A.SPath_between(x2, x, x3)) return; dst = new Float32Array(20); n = A.chopCubicAtYExtrema(pts, dst); for (i = 0; i <= n; ++i) { bufferPos = i * 6; t = A.chopMonoAtY(dst, bufferPos, y); if (t == null) continue; if (!(Math.abs(x - A.evalCubicPts(dst[bufferPos], dst[bufferPos + 2], dst[bufferPos + 4], dst[bufferPos + 6], t)) < 0.000244140625)) continue; tangents.push(A._evalCubicTangentAt(dst, bufferPos, t)); } }, _evalCubicTangentAt(points, bufferPos, t) { var t2, dx, dy, coeff, y3 = points[7 + bufferPos], y0 = points[1 + bufferPos], y1 = points[3 + bufferPos], y2 = points[5 + bufferPos], x0 = points[bufferPos], x1 = points[2 + bufferPos], x2 = points[4 + bufferPos], x3 = points[6 + bufferPos], t1 = t === 0; if (!(t1 && x0 === x1 && y0 === y1)) t2 = t === 1 && x2 === x3 && y2 === y3; else t2 = true; if (t2) { if (t1) { dx = x2 - x0; dy = y2 - y0; } else { dx = x3 - x1; dy = y3 - y1; } if (dx === 0 && dy === 0) { dx = x3 - x0; dy = y3 - y0; } return new A.Offset(dx, dy); } else { coeff = A.SkQuadCoefficients$(x3 + 3 * (x1 - x2) - x0, y3 + 3 * (y1 - y2) - y0, 2 * (x2 - 2 * x1 + x0), 2 * (y2 - 2 * y1 + y0), x1 - x0, y1 - y0); return new A.Offset(coeff.evalX$1(t), coeff.evalY$1(t)); } }, pathToSvgClipPath(path, offsetX, offsetY, scaleX, scaleY) { var root, t1, t2, defs, t3, clipPath, svgPath, _s26_ = "http://www.w3.org/2000/svg"; $._clipIdCounter = $._clipIdCounter + 1; root = type$.SvgSvgElement._as($.$get$kSvgResourceHeader().cloneNode(false)); t1 = document; t2 = type$.SvgElement; defs = type$.DefsElement._as(t2._as(B.HtmlDocument_methods.createElementNS$2(t1, _s26_, "defs"))); root.appendChild(defs); t3 = $._clipIdCounter; clipPath = type$.ClipPathElement._as(t2._as(B.HtmlDocument_methods.createElementNS$2(t1, _s26_, "clipPath"))); defs.appendChild(clipPath); clipPath.id = "svgClip" + t3; svgPath = type$.PathElement._as(t2._as(B.HtmlDocument_methods.createElementNS$2(t1, _s26_, "path"))); clipPath.appendChild(svgPath); svgPath.setAttribute("fill", "#FFFFFF"); t1 = $.$get$_browserEngine(); if (t1 !== B.BrowserEngine_2) { clipPath.setAttribute("clipPathUnits", "objectBoundingBox"); svgPath.setAttribute("transform", "scale(" + A.S(scaleX) + ", " + A.S(scaleY) + ")"); } svgPath.setAttribute("d", A.pathToSvg(type$.SurfacePath._as(path).pathRef, offsetX, offsetY)); return root; }, reduceCanvasMemoryUsage() { var i, t1, t2, canvasCount = $._recycledCanvases.length; for (i = 0; i < canvasCount; ++i) { t1 = $._recycledCanvases[i]._canvasPool; t2 = $.$get$_browserEngine(); if (t2 === B.BrowserEngine_1 && t1.__engine$_canvas != null) { t2 = t1.__engine$_canvas; t2.height = 0; t2.width = 0; } t1._clearActiveCanvasList$0(); } B.JSArray_methods.set$length($._recycledCanvases, 0); }, _recycleCanvas(canvas) { if (canvas != null && B.JSArray_methods.contains$1($._recycledCanvases, canvas)) return; if (canvas instanceof A.BitmapCanvas) { canvas._elementCache = null; if (canvas.__engine$_devicePixelRatio === A.EnginePlatformDispatcher_browserDevicePixelRatio()) { $._recycledCanvases.push(canvas); if ($._recycledCanvases.length > 30) B.JSArray_methods.removeAt$1($._recycledCanvases, 0)._canvasPool.dispose$0(0); } else canvas._canvasPool.dispose$0(0); } }, PersistedPicture__predictTrend(delta, extent) { if (delta <= 0) return extent * 0.1; else return Math.min(Math.max(extent * 0.5, delta * 10), extent); }, _computePixelDensity(transform, width, height) { var m, t1, t2, minX, t3, minY, t4, t5, t6, t7, wp, t8, t9, t10, t11, xp, t12, t13, t14, t15, yp, minX0, maxX, minY0, maxY, scale; if (transform == null || transform.isIdentityOrTranslation$0()) return 1; m = transform.__engine$_m4storage; t1 = m[12]; t2 = m[15]; minX = t1 * t2; t3 = m[13]; minY = t3 * t2; t4 = m[3]; t5 = t4 * width; t6 = m[7]; t7 = t6 * height; wp = 1 / (t5 + t7 + t2); t8 = m[0]; t9 = t8 * width; t10 = m[4]; t11 = t10 * height; xp = (t9 + t11 + t1) * wp; t12 = m[1]; t13 = t12 * width; t14 = m[5]; t15 = t14 * height; yp = (t13 + t15 + t3) * wp; minX0 = Math.min(minX, xp); maxX = Math.max(minX, xp); minY0 = Math.min(minY, yp); maxY = Math.max(minY, yp); wp = 1 / (t4 * 0 + t7 + t2); xp = (t8 * 0 + t11 + t1) * wp; yp = (t12 * 0 + t15 + t3) * wp; minX = Math.min(minX0, xp); maxX = Math.max(maxX, xp); minY = Math.min(minY0, yp); maxY = Math.max(maxY, yp); wp = 1 / (t5 + t6 * 0 + t2); xp = (t9 + t10 * 0 + t1) * wp; yp = (t13 + t14 * 0 + t3) * wp; minX = Math.min(minX, xp); maxX = Math.max(maxX, xp); minY = Math.min(minY, yp); scale = Math.min((maxX - minX) / width, (Math.max(maxY, yp) - minY) / height); if (scale < 1e-9 || scale === 1) return 1; if (scale > 1) { scale = Math.min(4, B.JSNumber_methods.ceil$0(scale / 2) * 2); t1 = width * height; if (t1 * scale * scale > 4194304 && scale > 2) scale = 3355443.2 / t1; } else scale = Math.max(2 / B.JSNumber_methods.floor$0(2 / scale), 0.0001); return scale; }, _measureBorderRadius(x, y) { var clampedX = x < 0 ? 0 : x, clampedY = y < 0 ? 0 : y; return clampedX * clampedX + clampedY * clampedY; }, _getPaintSpread(paint) { var t2, t1 = paint._paintData, maskFilter = t1.maskFilter, spread = maskFilter != null ? 0 + maskFilter._sigma * 2 : 0; t1 = t1.strokeWidth; t2 = t1 == null; if ((t2 ? 0 : t1) !== 0) spread += (t2 ? 0 : t1) * 0.70710678118; return spread; }, NormalizedGradient_NormalizedGradient(colors, stops) { var colorCount, t1, addFirst, addLast, normalizedCount, t2, bias, scale, t3, thresholds, c, targetIndex, thresholdIndex, _i, targetIndex0, t4, thresholdIndex0, lastColorIndex, i, t, colorIndex; if (stops == null) stops = B.List_0_1; colorCount = colors.length; t1 = B.JSArray_methods.any$1(colors, new A.NormalizedGradient_NormalizedGradient_closure()); addFirst = !J.$eq$(stops[0], 0); addLast = !J.$eq$(B.JSArray_methods.get$last(stops), 1); normalizedCount = addFirst ? colorCount + 1 : colorCount; if (addLast) ++normalizedCount; t2 = normalizedCount * 4; bias = new Float32Array(t2); scale = new Float32Array(t2); t2 = normalizedCount - 1; t3 = B.JSInt_methods._tdivFast$1(t2, 4); thresholds = new Float32Array(4 * (t3 + 1)); if (addFirst) { c = colors[0]; bias[0] = (c.get$value(c) >>> 16 & 255) / 255; bias[1] = (c.get$value(c) >>> 8 & 255) / 255; bias[2] = (c.get$value(c) & 255) / 255; bias[3] = (c.get$value(c) >>> 24 & 255) / 255; thresholds[0] = 0; targetIndex = 4; thresholdIndex = 1; } else { targetIndex = 0; thresholdIndex = 0; } for (t3 = colors.length, _i = 0; _i < colors.length; colors.length === t3 || (0, A.throwConcurrentModificationError)(colors), ++_i) { c = colors[_i]; targetIndex0 = targetIndex + 1; c.toString; t4 = J.getInterceptor$x(c); bias[targetIndex] = (t4.get$value(c) >>> 16 & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (t4.get$value(c) >>> 8 & 255) / 255; targetIndex0 = targetIndex + 1; bias[targetIndex] = (t4.get$value(c) & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (t4.get$value(c) >>> 24 & 255) / 255; } for (t3 = stops.length, _i = 0; _i < t3; ++_i, thresholdIndex = thresholdIndex0) { thresholdIndex0 = thresholdIndex + 1; thresholds[thresholdIndex] = stops[_i]; } if (addLast) { c = B.JSArray_methods.get$last(colors); targetIndex0 = targetIndex + 1; bias[targetIndex] = (c.get$value(c) >>> 16 & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (c.get$value(c) >>> 8 & 255) / 255; bias[targetIndex] = (c.get$value(c) & 255) / 255; bias[targetIndex + 1] = (c.get$value(c) >>> 24 & 255) / 255; thresholds[thresholdIndex] = 1; } lastColorIndex = 4 * t2; for (i = 0; i < lastColorIndex; ++i) { thresholdIndex = i >>> 2; scale[i] = (bias[i + 4] - bias[i]) / (thresholds[thresholdIndex + 1] - thresholds[thresholdIndex]); } scale[lastColorIndex] = 0; scale[lastColorIndex + 1] = 0; scale[lastColorIndex + 2] = 0; scale[lastColorIndex + 3] = 0; for (i = 0; i < normalizedCount; ++i) { t = thresholds[i]; colorIndex = i * 4; bias[colorIndex] = bias[colorIndex] - t * scale[colorIndex]; t2 = colorIndex + 1; bias[t2] = bias[t2] - t * scale[t2]; t2 = colorIndex + 2; bias[t2] = bias[t2] - t * scale[t2]; t2 = colorIndex + 3; bias[t2] = bias[t2] - t * scale[t2]; } return new A.NormalizedGradient(thresholds, bias, scale, normalizedCount, !t1); }, writeUnrolledBinarySearch(method, start, end, biasName, probe, scaleName, sourcePrefix) { var t1, mid; if (start === end) { t1 = "" + start; method.addStatement$1(biasName + " = " + (biasName + "_" + t1) + ";"); method.addStatement$1(scaleName + " = " + (scaleName + "_" + t1) + ";"); } else { mid = B.JSInt_methods._tdivFast$1(start + end, 2); t1 = mid + 1; method.addStatement$1("if (" + probe + " < " + (sourcePrefix + "_" + B.JSInt_methods._tdivFast$1(t1, 4) + ("." + "xyzw"[B.JSInt_methods.$mod(t1, 4)])) + ") {"); ++method._indentLevel; A.writeUnrolledBinarySearch(method, start, mid, biasName, probe, scaleName, sourcePrefix); --method._indentLevel; method.addStatement$1("} else {"); ++method._indentLevel; A.writeUnrolledBinarySearch(method, t1, end, biasName, probe, scaleName, sourcePrefix); --method._indentLevel; method.addStatement$1("}"); } }, _addColorStopsToCanvasGradient(gradient, colors, colorStops, isDecal) { var scale, offset, t1, i, colorStop, _s9_ = "#00000000"; if (isDecal) { gradient.addColorStop(0, _s9_); scale = 0.999; offset = 0.0005000000000000004; } else { scale = 1; offset = 0; } if (colorStops == null) { t1 = A.colorToCssString(colors[0]); t1.toString; gradient.addColorStop(offset, t1); t1 = A.colorToCssString(colors[1]); t1.toString; gradient.addColorStop(1 - offset, t1); } else for (i = 0; i < colors.length; ++i) { colorStop = J.clamp$2$n(colorStops[i], 0, 1); t1 = A.colorToCssString(colors[i]); t1.toString; gradient.addColorStop(colorStop * scale + offset, t1); } if (isDecal) gradient.addColorStop(1, _s9_); }, _writeSharedGradientShader(builder, method, gradient, tileMode) { var t1, t2, t3, i, probeName, _s8_ = "tiled_st"; method.addStatement$1("vec4 bias;"); method.addStatement$1("vec4 scale;"); for (t1 = gradient.thresholdCount, t2 = t1 - 1, t3 = B.JSInt_methods._tdivFast$1(t2, 4) + 1, i = 0; i < t3; ++i) builder.addUniform$2$name(11, "threshold_" + i); for (i = 0; i < t1; ++i) { t3 = "" + i; builder.addUniform$2$name(11, "bias_" + t3); builder.addUniform$2$name(11, "scale_" + t3); } switch (tileMode.index) { case 0: method.addStatement$1("float tiled_st = clamp(st, 0.0, 1.0);"); probeName = _s8_; break; case 3: probeName = "st"; break; case 1: method.addStatement$1("float tiled_st = fract(st);"); probeName = _s8_; break; case 2: method.addStatement$1("float t_1 = (st - 1.0);"); method.addStatement$1("float tiled_st = abs((t_1 - 2.0 * floor(t_1 * 0.5)) - 1.0);"); probeName = _s8_; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } A.writeUnrolledBinarySearch(method, 0, t2, "bias", probeName, "scale", "threshold"); return probeName; }, ShaderBuilder_typeToString(dataType) { switch (dataType) { case 0: return "bool"; case 1: return "int"; case 2: return "float"; case 3: return "bvec2"; case 4: return "bvec3"; case 5: return "bvec4"; case 6: return "ivec2"; case 7: return "ivec3"; case 8: return "ivec4"; case 9: return "vec2"; case 10: return "vec3"; case 11: return "vec4"; case 12: return "mat2"; case 13: return "mat3"; case 14: return "mat4"; case 15: return "sampler1D"; case 16: return "sampler2D"; case 17: return "sampler3D"; case 18: return "void"; } throw A.wrapException(A.ArgumentError$(null, null)); }, commitScene(scene) { var request, _i, i, t1 = $.paintQueue, t2 = t1.length; if (t2 !== 0) try { if (t2 > 1) B.JSArray_methods.sort$1(t1, new A.commitScene_closure()); for (t1 = $.paintQueue, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { request = t1[_i]; request.paintCallback$0(); } } finally { $.paintQueue = A._setArrayType([], type$.JSArray_PaintRequest); } t1 = $.retainedSurfaces; t2 = t1.length; if (t2 !== 0) { for (i = 0; i < t2; ++i) t1[i].__engine$_state = B.PersistedSurfaceState_1; $.retainedSurfaces = A._setArrayType([], type$.JSArray_PersistedSurface); } for (t1 = $.frameReferences, i = 0; i < t1.length; ++i) t1[i].value = null; $.frameReferences = A._setArrayType([], type$.JSArray_FrameReference_dynamic); }, PersistedContainerSurface__discardActiveChildren(surface) { var i, child, t1 = surface.__engine$_children, $length = t1.length; for (i = 0; i < $length; ++i) { child = t1[i]; if (child.__engine$_state === B.PersistedSurfaceState_1) child.discard$0(); } }, registerHotRestartListener(listener) { $._hotRestartListeners.push(listener); }, initializeEngineServices() { return A.initializeEngineServices$body(); }, initializeEngineServices$body() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, t2, t1; var $async$initializeEngineServices = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; if ($._initializationState !== B.DebugEngineInitializationState_0) { // goto return $async$goto = 1; break; } $._initializationState = B.DebugEngineInitializationState_1; t2 = $.$get$useCanvasKit(); if (!t2) A.scheduleMicrotask(new A.initializeEngineServices_closure()); A._addUrlStrategyListener(); A.registerExtension("ext.flutter.disassemble", new A.initializeEngineServices_closure0()); t1.waitingForAnimation = false; $.scheduleFrameCallback = new A.initializeEngineServices_closure1(t1); $async$goto = t2 ? 3 : 4; break; case 3: // then $async$goto = 5; return A._asyncAwait(A.initializeCanvasKit(), $async$initializeEngineServices); case 5: // returning from await. case 4: // join $async$goto = 6; return A._asyncAwait(A._setAssetManager(B.C_AssetManager), $async$initializeEngineServices); case 6: // returning from await. $async$goto = t2 ? 7 : 9; break; case 7: // then $async$goto = 10; return A._asyncAwait($._skiaFontCollection.ensureFontsLoaded$0(), $async$initializeEngineServices); case 10: // returning from await. // goto join $async$goto = 8; break; case 9: // else $async$goto = 11; return A._asyncAwait($._fontCollection.ensureFontsLoaded$0(), $async$initializeEngineServices); case 11: // returning from await. case 8: // join $._initializationState = B.DebugEngineInitializationState_2; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$initializeEngineServices, $async$completer); }, initializeEngineUi() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, t1; var $async$initializeEngineUi = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($._initializationState !== B.DebugEngineInitializationState_2) { // goto return $async$goto = 1; break; } $._initializationState = B.DebugEngineInitializationState_3; t1 = $.$get$_operatingSystem(); if ($.Keyboard__instance == null) $.Keyboard__instance = A.Keyboard$_(t1 === B.OperatingSystem_4); if ($.MouseCursor__instance == null) $.MouseCursor__instance = new A.MouseCursor(); if ($._flutterViewEmbedder == null) $._flutterViewEmbedder = A.FlutterViewEmbedder$(); if ($.$get$useCanvasKit()) { t1 = A._ElementFactoryProvider_createElement_tag("flt-scene", null); $.skiaSceneHost = t1; $._flutterViewEmbedder.renderScene$1(t1); } $._initializationState = B.DebugEngineInitializationState_4; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$initializeEngineUi, $async$completer); }, _setAssetManager(assetManager) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, t1, t2; var $async$_setAssetManager = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (assetManager === $._assetManager) { // goto return $async$goto = 1; break; } $._assetManager = assetManager; t1 = $.$get$useCanvasKit(); if (t1) { if ($._skiaFontCollection == null) { t2 = type$.String; $._skiaFontCollection = new A.SkiaFontCollection(A.LinkedHashSet_LinkedHashSet$_empty(t2), A._setArrayType([], type$.JSArray_Future_nullable_RegisteredFont), A._setArrayType([], type$.JSArray_RegisteredFont), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_SkFont)); } } else { t2 = $._fontCollection; if (t2 == null) t2 = $._fontCollection = new A.FontCollection(); t2._testFontManager = t2._assetFontManager = null; if ($.$get$supportsFontsClearApi()) document.fonts.clear(); } t2 = $._assetManager; $async$goto = t2 != null ? 3 : 4; break; case 3: // then $async$goto = t1 ? 5 : 7; break; case 5: // then $async$goto = 8; return A._asyncAwait($._skiaFontCollection.registerFonts$1(t2), $async$_setAssetManager); case 8: // returning from await. // goto join $async$goto = 6; break; case 7: // else $async$goto = 9; return A._asyncAwait($._fontCollection.registerFonts$1(t2), $async$_setAssetManager); case 9: // returning from await. case 6: // join case 4: // join case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_setAssetManager, $async$completer); }, _addUrlStrategyListener() { self._flutter_web_set_location_strategy = A.allowInterop(new A._addUrlStrategyListener_closure()); $._hotRestartListeners.push(new A._addUrlStrategyListener_closure0()); }, toMatrix32(matrix64) { var matrix32 = new Float32Array(16); matrix32[15] = matrix64[15]; matrix32[14] = matrix64[14]; matrix32[13] = matrix64[13]; matrix32[12] = matrix64[12]; matrix32[11] = matrix64[11]; matrix32[10] = matrix64[10]; matrix32[9] = matrix64[9]; matrix32[8] = matrix64[8]; matrix32[7] = matrix64[7]; matrix32[6] = matrix64[6]; matrix32[5] = matrix64[5]; matrix32[4] = matrix64[4]; matrix32[3] = matrix64[3]; matrix32[2] = matrix64[2]; matrix32[1] = matrix64[1]; matrix32[0] = matrix64[0]; return matrix32; }, Keyboard$_(_onMacOs) { var t1 = new A.Keyboard(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Timer), _onMacOs); t1.Keyboard$_$1(_onMacOs); return t1; }, _noopCallback(data) { }, createHistoryForExistingState(urlStrategy) { var state; if (urlStrategy != null) { state = urlStrategy.getState$0(0); if (A.SingleEntryBrowserHistory__isOriginEntry(state) || A.SingleEntryBrowserHistory__isFlutterEntry(state)) return A.SingleEntryBrowserHistory$(urlStrategy); } return A.MultiEntriesBrowserHistory$(urlStrategy); }, MultiEntriesBrowserHistory$(urlStrategy) { var t1 = new A.MultiEntriesBrowserHistory(urlStrategy); t1.MultiEntriesBrowserHistory$1$urlStrategy(urlStrategy); return t1; }, SingleEntryBrowserHistory$(urlStrategy) { var t1 = new A.SingleEntryBrowserHistory(urlStrategy, A.LinkedHashMap_LinkedHashMap$_literal(["flutter", true], type$.String, type$.bool)); t1.SingleEntryBrowserHistory$1$urlStrategy(urlStrategy); return t1; }, SingleEntryBrowserHistory__isOriginEntry(state) { return type$.Map_dynamic_dynamic._is(state) && J.$eq$(J.$index$asx(state, "origin"), true); }, SingleEntryBrowserHistory__isFlutterEntry(state) { return type$.Map_dynamic_dynamic._is(state) && J.$eq$(J.$index$asx(state, "flutter"), true); }, EnginePlatformDispatcher_browserDevicePixelRatio() { var ratio = window.devicePixelRatio; return ratio == null || ratio === 0 ? 1 : ratio; }, EnginePlatformDispatcher__zonedPlatformMessageResponseCallback(callback) { return new A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure($.Zone__current, callback); }, EnginePlatformDispatcher_parseBrowserLanguages() { var locales, t1, t2, t3, parts, languages = window.navigator.languages; if (languages == null || J.get$isEmpty$asx(languages)) return B.List_Locale_en_US; locales = A._setArrayType([], type$.JSArray_Locale); for (t1 = J.get$iterator$ax(languages), t2 = type$.JSArray_String; t1.moveNext$0();) { t3 = t1.get$current(t1); parts = A._setArrayType(t3.split("-"), t2); if (parts.length > 1) locales.push(new A.Locale(B.JSArray_methods.get$first(parts), B.JSArray_methods.get$last(parts))); else locales.push(new A.Locale(t3, null)); } return locales; }, _handleWebTestEnd2EndMessage(codec, data) { var decoded = codec.decodeMethodCall$1(data), ratio = A.double_parse(A._asStringS(decoded.$arguments)); switch (decoded.method) { case "setDevicePixelRatio": $.$get$window()._debugDevicePixelRatio = ratio; $.$get$EnginePlatformDispatcher__instance()._onMetricsChanged.call$0(); return true; } return false; }, invoke(callback, zone) { if (callback == null) return; if (zone == $.Zone__current) callback.call$0(); else zone.runGuarded$1(callback); }, invoke1(callback, zone, arg, $A) { if (callback == null) return; if (zone == $.Zone__current) callback.call$1(arg); else zone.runUnaryGuarded$1$2(callback, arg, $A); }, invoke2(callback, zone, arg1, arg2) { if (zone == $.Zone__current) callback.call$2(arg1, arg2); else zone.runGuarded$1(new A.invoke2_closure(callback, arg1, arg2)); }, invoke3(callback, zone, arg1, arg2, arg3) { if (callback == null) return; if (zone == $.Zone__current) callback.call$3(arg1, arg2, arg3); else zone.runGuarded$1(new A.invoke3_closure(callback, arg1, arg2, arg3)); }, findBrowserTextScaleFactor() { var computedStyleMap, t2, fontSizeObject, fontSize, t1 = document.documentElement; t1.toString; if ("computedStyleMap" in t1) { computedStyleMap = t1.computedStyleMap(); t2 = type$.Object; if (t2._is(computedStyleMap)) { fontSizeObject = computedStyleMap.get("font-size"); fontSize = t2._is(fontSizeObject) ? fontSizeObject.value : null; } else fontSize = null; } else fontSize = null; if (fontSize == null) fontSize = A.parseFloat(J.getComputedStyle$0$x(t1).fontSize); return (fontSize == null ? 16 : fontSize) / 16; }, createPlatformViewSlot(viewId) { var slot, t1 = document, wrapper = t1.createElement("flt-platform-view-slot"), t2 = wrapper.style; t2.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t2, B.CssStyleDeclaration_methods._browserPropertyName$1(t2, "pointer-events"), "auto", ""); slot = t1.createElement("slot"); slot.setAttribute("name", "flt-pv-slot-" + A.S(viewId)); wrapper.appendChild(slot); return wrapper; }, convertButtonToButtons(button) { switch (button) { case 0: return 1; case 1: return 4; case 2: return 2; default: return B.JSInt_methods.$shl(1, button); } }, _BaseAdapter__eventTimeStampToDuration(milliseconds) { var ms = J.toInt$0$n(milliseconds); return A.Duration$(0, 0, B.JSNumber_methods.toInt$0((milliseconds - ms) * 1000), ms, 0, 0); }, timeAction($name, action) { var t1 = action.call$0(); return t1; }, frameTimingsOnVsync() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._vsyncStartMicros = B.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, frameTimingsOnBuildStart() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._buildStartMicros = B.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, frameTimingsOnBuildFinish() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._buildFinishMicros = B.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, frameTimingsOnRasterStart() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._rasterStartMicros = B.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, frameTimingsOnRasterFinish() { var now, t2, t1 = $.$get$EnginePlatformDispatcher__instance(); if (t1._onReportTimings == null) return; now = $._rasterFinishMicros = B.JSNumber_methods.toInt$0(window.performance.now() * 1000); $._frameTimings.push(new A.FrameTiming(A._setArrayType([$._vsyncStartMicros, $._buildStartMicros, $._buildFinishMicros, $._rasterStartMicros, now, now, 0, 0, 0, 0, 1], type$.JSArray_int))); $._rasterFinishMicros = $._rasterStartMicros = $._buildFinishMicros = $._buildStartMicros = $._vsyncStartMicros = -1; if (now - $.$get$_frameTimingsLastSubmitTime() > 100000) { $._frameTimingsLastSubmitTime = now; t2 = $._frameTimings; A.invoke1(t1._onReportTimings, t1._onReportTimingsZone, t2, type$.List_FrameTiming); $._frameTimings = A._setArrayType([], type$.JSArray_FrameTiming); } }, _nowMicros() { return B.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, createPlainJsObject(properties) { var t1 = A.JsObject_JsObject$jsify(properties); return t1; }, getJsProperty(object, $name) { return object[$name]; }, parseFloat(source) { var result = self.parseFloat.call$1(source); if (result == null || isNaN(result)) return null; return result; }, parseFontSize(element) { var computedStyleMap, t1, fontSizeObject, fontSize; if ("computedStyleMap" in element) { computedStyleMap = element.computedStyleMap(); t1 = type$.Object; if (t1._is(computedStyleMap)) { fontSizeObject = computedStyleMap.get("font-size"); fontSize = t1._is(fontSizeObject) ? fontSizeObject.value : null; } else fontSize = null; } else fontSize = null; return fontSize == null ? A.parseFloat(J.getComputedStyle$0$x(element).fontSize) : fontSize; }, tryCreateCanvasElement(width, height) { var exception, canvas = document.createElement("CANVAS"); if (canvas == null) return null; try { canvas.width = width; canvas.height = height; } catch (exception) { return null; } return canvas; }, AccessibilityAnnouncements$_() { var t1 = new A.AccessibilityAnnouncements(); t1.AccessibilityAnnouncements$_$0(); return t1; }, _checkableKindFromSemanticsFlag(semanticsObject) { var t1 = semanticsObject.__engine$_flags; if ((t1 & 256) !== 0) return B._CheckableKind_1; else if ((t1 & 65536) !== 0) return B._CheckableKind_2; else return B._CheckableKind_0; }, Incrementable$(semanticsObject) { var t1 = new A.Incrementable(A.InputElement_InputElement(null), semanticsObject); t1.Incrementable$1(semanticsObject); return t1; }, SemanticsObject__clearSemanticElementTransform(element) { var t1 = element.style; t1.removeProperty("transform-origin"); t1.removeProperty("transform"); t1 = $.$get$_operatingSystem(); if (t1 !== B.OperatingSystem_0) t1 = t1 === B.OperatingSystem_4; else t1 = true; if (t1) { t1 = element.style; t1.top = "0px"; t1.left = "0px"; } else { t1 = element.style; t1.removeProperty("top"); t1.removeProperty("left"); } }, EngineSemanticsOwner$_() { var t1 = type$.SemanticsObject, t2 = A._setArrayType([], type$.JSArray_nullable_SemanticsObject), t3 = A._setArrayType([], type$.JSArray_of_void_Function), t4 = $.$get$_operatingSystem(); t4 = J.containsKey$1$x(B.Set_69tl2._collection$_map, t4) ? new A.DesktopSemanticsEnabler() : new A.MobileSemanticsEnabler(); t4 = new A.EngineSemanticsOwner(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, t1), A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_int, t1), t2, t3, new A.EngineSemanticsOwner__now_closure(), new A.SemanticsHelper(t4), B.GestureMode_1, A._setArrayType([], type$.JSArray_of_nullable_void_Function_GestureMode)); t4.EngineSemanticsOwner$_$0(); return t4; }, longestIncreasingSubsequence(list) { var longest, i, elem, hi, lo, mid, seq, k, len = list.length, t1 = type$.JSArray_int, predecessors = A._setArrayType([], t1), mins = A._setArrayType([0], t1); for (longest = 0, i = 0; i < len; ++i) { elem = list[i]; for (hi = longest, lo = 1; lo <= hi;) { mid = B.JSInt_methods._tdivFast$1(lo + hi, 2); if (list[mins[mid]] < elem) lo = mid + 1; else hi = mid - 1; } predecessors.push(mins[lo - 1]); if (lo >= mins.length) mins.push(i); else mins[lo] = i; if (lo > longest) longest = lo; } seq = A.List_List$filled(longest, 0, false, type$.int); k = mins[longest]; for (i = longest - 1; i >= 0; --i) { seq[i] = k; k = predecessors[k]; } return seq; }, SemanticsTextEditingStrategy_ensureInitialized(owner) { var t1 = $.SemanticsTextEditingStrategy__instance; if (t1 != null && t1.owner === owner) { t1.toString; return t1; } return $.SemanticsTextEditingStrategy__instance = new A.SemanticsTextEditingStrategy(owner, A._setArrayType([], type$.JSArray_StreamSubscription_Event)); }, _TypedDataBuffer__reverse(buffer, start, end) { var first, last; --end; for (; start < end;) { first = buffer[start]; last = buffer[end]; buffer[end] = first; buffer[start] = last; ++start; --end; } }, WriteBuffer_WriteBuffer0() { var t1 = new Uint8Array(0), eightBytes = new DataView(new ArrayBuffer(8)); return new A.WriteBuffer0(new A.Uint8Buffer(t1, 0), eightBytes, A.NativeUint8List_NativeUint8List$view(eightBytes.buffer, 0, null)); }, computeShadowOffset(elevation) { if (elevation === 0) return B.Offset_0_0; return new A.Offset(200 * elevation / 600, 400 * elevation / 600); }, computePenumbraBounds(shape, elevation) { var t1, t2, t3, t4, dx, dy; if (elevation === 0) return shape; t1 = shape.right; t2 = shape.left; t3 = shape.bottom; t4 = shape.top; dx = elevation * ((800 + (t1 - t2) * 0.5) / 600); dy = elevation * ((800 + (t3 - t4) * 0.5) / 600); return new A.Rect(t2 - dx, t4 - dy, t1 + dx, t3 + dy).shift$1(A.computeShadowOffset(elevation)); }, computeShadow(shape, elevation) { if (elevation === 0) return null; return new A.SurfaceShadowData(Math.min(elevation * ((800 + (shape.right - shape.left) * 0.5) / 600), elevation * ((800 + (shape.bottom - shape.top) * 0.5) / 600)), A.computeShadowOffset(elevation)); }, applyCssShadow(element, shape, elevation, color) { var t1, t2, t3, t4, _s10_ = "box-shadow", shadow = A.computeShadow(shape, elevation); if (shadow == null) { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "none", ""); } else { color = A.toShadowColor(color); t1 = element.style; t2 = shadow.offset; t3 = shadow.blurWidth; t4 = color.value; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), A.S(t2._dx) + "px " + A.S(t2._dy) + "px " + A.S(t3) + "px 0px rgba(" + (t4 >>> 16 & 255) + ", " + (t4 >>> 8 & 255) + ", " + (t4 & 255) + ", " + A.S((t4 >>> 24 & 255) / 255) + ")", ""); } }, toShadowColor(color) { var t1 = color.value; return new A.Color(((B.JSNumber_methods.round$0(0.3 * (t1 >>> 24 & 255)) & 255) << 24 | t1 & 16777215) >>> 0); }, FontManager_FontManager() { var t1 = type$.JSArray_Future_void; if ($.$get$supportsFontLoadingApi()) return new A.FontManager(A._setArrayType([], t1)); else return new A._PolyfillFontManager(A._setArrayType([], t1)); }, LineBuilder$_(paragraph, spanometer, accumulatedHeight, lineNumber, maxWidth, start) { return new A.LineBuilder(A._setArrayType([], type$.JSArray_LineSegment), A._setArrayType([], type$.JSArray_RangeBox), maxWidth, paragraph, spanometer, start, lineNumber, accumulatedHeight, start); }, ensureLineLookupInitialized() { var t1 = $._lineLookup; if (t1 == null) { t1 = type$.LineCharProperty; t1 = $._lineLookup = new A.UnicodePropertyLookup(A._unpackProperties(string$.x3000000, 937, B.List_UVg, t1), B.LineCharProperty_8, A.LinkedHashMap_LinkedHashMap$_empty(type$.int, t1), type$.UnicodePropertyLookup_LineCharProperty); } return t1; }, nextLineBreak(text, index, maxEnd) { var unsafeResult = A._unsafeNextLineBreak(text, index, maxEnd); if (unsafeResult.index > maxEnd) return new A.LineBreakResult(maxEnd, Math.min(maxEnd, unsafeResult.indexWithoutTrailingNewlines), Math.min(maxEnd, unsafeResult.indexWithoutTrailingSpaces), B.LineBreakType_1); return unsafeResult; }, _unsafeNextLineBreak(text, index, maxEnd) { var t1, t2, t3, t4, lastNonNewlineIndex, lastNonSpaceIndex, prev1, regionalIndicatorCount, t5, t6, t7, t8, curr0, isCurrZWJ0, t9, t10, codePoint = A.getCodePoint(text, index), curr = A.ensureLineLookupInitialized().findForChar$1(codePoint), baseOfSpaceSequence = curr === B.LineCharProperty_5 ? B.LineCharProperty_29 : null, isCurrZWJ = curr === B.LineCharProperty_26; if (curr === B.LineCharProperty_0 || isCurrZWJ) curr = B.LineCharProperty_8; for (t1 = text.length, t2 = type$.LineCharProperty, t3 = type$.int, t4 = type$.UnicodePropertyLookup_LineCharProperty, lastNonNewlineIndex = index, lastNonSpaceIndex = lastNonNewlineIndex, prev1 = null, regionalIndicatorCount = 0; index < t1; isCurrZWJ = isCurrZWJ0, prev1 = curr, curr = curr0) { if (index > maxEnd) return new A.LineBreakResult(maxEnd, Math.min(maxEnd, lastNonNewlineIndex), Math.min(maxEnd, lastNonSpaceIndex), B.LineBreakType_1); t5 = curr === B.LineCharProperty_35; regionalIndicatorCount = t5 ? regionalIndicatorCount + 1 : 0; index = (codePoint != null && codePoint > 65535 ? index + 1 : index) + 1; t6 = curr === B.LineCharProperty_5; t7 = !t6; if (t7) baseOfSpaceSequence = null; codePoint = A.getCodePoint(text, index); t8 = $._lineLookup; curr0 = (t8 == null ? $._lineLookup = new A.UnicodePropertyLookup(A._unpackProperties(string$.x3000000, 937, B.List_UVg, t2), B.LineCharProperty_8, A.LinkedHashMap_LinkedHashMap$_empty(t3, t2), t4) : t8).findForChar$1(codePoint); isCurrZWJ0 = curr0 === B.LineCharProperty_26; if (curr === B.LineCharProperty_2 || curr === B.LineCharProperty_3) return new A.LineBreakResult(index, lastNonNewlineIndex, lastNonSpaceIndex, B.LineBreakType_2); if (curr === B.LineCharProperty_4) if (curr0 === B.LineCharProperty_2) continue; else return new A.LineBreakResult(index, lastNonNewlineIndex, lastNonSpaceIndex, B.LineBreakType_2); if (t7) lastNonSpaceIndex = index; if (curr0 === B.LineCharProperty_2 || curr0 === B.LineCharProperty_3 || curr0 === B.LineCharProperty_4) { lastNonNewlineIndex = index; continue; } if (index >= t1) return new A.LineBreakResult(t1, index, lastNonSpaceIndex, B.LineBreakType_3); if (curr0 === B.LineCharProperty_5) { baseOfSpaceSequence = t6 ? baseOfSpaceSequence : curr; lastNonNewlineIndex = index; continue; } if (curr0 === B.LineCharProperty_25) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_25 || baseOfSpaceSequence === B.LineCharProperty_25) return new A.LineBreakResult(index, index, lastNonSpaceIndex, B.LineBreakType_0); if (curr0 === B.LineCharProperty_0 || isCurrZWJ0) { if (!t6) { if (t5) --regionalIndicatorCount; lastNonNewlineIndex = index; curr0 = curr; continue; } curr0 = B.LineCharProperty_8; } if (isCurrZWJ) { lastNonNewlineIndex = index; continue; } if (curr0 === B.LineCharProperty_29 || curr === B.LineCharProperty_29) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_18) { lastNonNewlineIndex = index; continue; } if (!(!t7 || curr === B.LineCharProperty_1 || curr === B.LineCharProperty_14) && curr0 === B.LineCharProperty_18) { lastNonNewlineIndex = index; continue; } if (t7) t5 = curr0 === B.LineCharProperty_17 || curr0 === B.LineCharProperty_12 || curr0 === B.LineCharProperty_6 || curr0 === B.LineCharProperty_13 || curr0 === B.LineCharProperty_15; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } t5 = curr === B.LineCharProperty_7; if (t5 && curr0 === B.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } t7 = curr !== B.LineCharProperty_17; if ((!t7 || baseOfSpaceSequence === B.LineCharProperty_17 || curr === B.LineCharProperty_12 || baseOfSpaceSequence === B.LineCharProperty_12) && curr0 === B.LineCharProperty_24) { lastNonNewlineIndex = index; continue; } if ((curr === B.LineCharProperty_27 || baseOfSpaceSequence === B.LineCharProperty_27) && curr0 === B.LineCharProperty_27) { lastNonNewlineIndex = index; continue; } if (t6) return new A.LineBreakResult(index, index, lastNonSpaceIndex, B.LineBreakType_0); if (t5 || curr0 === B.LineCharProperty_7) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_34 || curr0 === B.LineCharProperty_34) return new A.LineBreakResult(index, index, lastNonSpaceIndex, B.LineBreakType_0); if (curr0 === B.LineCharProperty_1 || curr0 === B.LineCharProperty_14 || curr0 === B.LineCharProperty_24 || curr === B.LineCharProperty_19) { lastNonNewlineIndex = index; continue; } if (prev1 === B.LineCharProperty_20) t5 = curr === B.LineCharProperty_14 || curr === B.LineCharProperty_1; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } t5 = curr === B.LineCharProperty_15; if (t5 && curr0 === B.LineCharProperty_20) { lastNonNewlineIndex = index; continue; } if (curr0 === B.LineCharProperty_28) { lastNonNewlineIndex = index; continue; } t6 = curr !== B.LineCharProperty_8; if (!((!t6 || curr === B.LineCharProperty_20) && curr0 === B.LineCharProperty_16)) if (curr === B.LineCharProperty_16) t8 = curr0 === B.LineCharProperty_8 || curr0 === B.LineCharProperty_20; else t8 = false; else t8 = true; if (t8) { lastNonNewlineIndex = index; continue; } t8 = curr === B.LineCharProperty_9; if (t8) t9 = curr0 === B.LineCharProperty_30 || curr0 === B.LineCharProperty_31 || curr0 === B.LineCharProperty_36; else t9 = false; if (t9) { lastNonNewlineIndex = index; continue; } if ((curr === B.LineCharProperty_30 || curr === B.LineCharProperty_31 || curr === B.LineCharProperty_36) && curr0 === B.LineCharProperty_10) { lastNonNewlineIndex = index; continue; } t9 = !t8; if (!t9 || curr === B.LineCharProperty_10) t10 = curr0 === B.LineCharProperty_8 || curr0 === B.LineCharProperty_20; else t10 = false; if (t10) { lastNonNewlineIndex = index; continue; } if (!t6 || curr === B.LineCharProperty_20) t10 = curr0 === B.LineCharProperty_9 || curr0 === B.LineCharProperty_10; else t10 = false; if (t10) { lastNonNewlineIndex = index; continue; } if (!t7 || curr === B.LineCharProperty_12 || curr === B.LineCharProperty_16) t7 = curr0 === B.LineCharProperty_10 || curr0 === B.LineCharProperty_9; else t7 = false; if (t7) { lastNonNewlineIndex = index; continue; } t7 = curr !== B.LineCharProperty_10; if ((!t7 || t8) && curr0 === B.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } if ((!t7 || !t9 || curr === B.LineCharProperty_14 || curr === B.LineCharProperty_13 || curr === B.LineCharProperty_16 || t5) && curr0 === B.LineCharProperty_16) { lastNonNewlineIndex = index; continue; } t5 = curr === B.LineCharProperty_21; if (t5) t7 = curr0 === B.LineCharProperty_21 || curr0 === B.LineCharProperty_22 || curr0 === B.LineCharProperty_32 || curr0 === B.LineCharProperty_33; else t7 = false; if (t7) { lastNonNewlineIndex = index; continue; } t7 = curr !== B.LineCharProperty_22; if (!t7 || curr === B.LineCharProperty_32) t9 = curr0 === B.LineCharProperty_22 || curr0 === B.LineCharProperty_23; else t9 = false; if (t9) { lastNonNewlineIndex = index; continue; } t9 = curr !== B.LineCharProperty_23; if ((!t9 || curr === B.LineCharProperty_33) && curr0 === B.LineCharProperty_23) { lastNonNewlineIndex = index; continue; } if ((t5 || !t7 || !t9 || curr === B.LineCharProperty_32 || curr === B.LineCharProperty_33) && curr0 === B.LineCharProperty_10) { lastNonNewlineIndex = index; continue; } if (t8) t5 = curr0 === B.LineCharProperty_21 || curr0 === B.LineCharProperty_22 || curr0 === B.LineCharProperty_23 || curr0 === B.LineCharProperty_32 || curr0 === B.LineCharProperty_33; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (!t6 || curr === B.LineCharProperty_20) t5 = curr0 === B.LineCharProperty_8 || curr0 === B.LineCharProperty_20; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_13) t5 = curr0 === B.LineCharProperty_8 || curr0 === B.LineCharProperty_20; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (!t6 || curr === B.LineCharProperty_20 || curr === B.LineCharProperty_16) if (curr0 === B.LineCharProperty_11) { t5 = B.JSString_methods.codeUnitAt$1(text, index); if (t5 !== 9001) if (!(t5 >= 12296 && t5 <= 12317)) t5 = t5 >= 65047 && t5 <= 65378; else t5 = true; else t5 = true; t5 = !t5; } else t5 = false; else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (curr === B.LineCharProperty_12) { t5 = B.JSString_methods.codeUnitAt$1(text, index - 1); if (t5 !== 9001) if (!(t5 >= 12296 && t5 <= 12317)) t5 = t5 >= 65047 && t5 <= 65378; else t5 = true; else t5 = true; if (!t5) t5 = curr0 === B.LineCharProperty_8 || curr0 === B.LineCharProperty_20 || curr0 === B.LineCharProperty_16; else t5 = false; } else t5 = false; if (t5) { lastNonNewlineIndex = index; continue; } if (curr0 === B.LineCharProperty_35) if ((regionalIndicatorCount & 1) === 1) { lastNonNewlineIndex = index; continue; } else return new A.LineBreakResult(index, index, lastNonSpaceIndex, B.LineBreakType_0); if (curr === B.LineCharProperty_31 && curr0 === B.LineCharProperty_36) { lastNonNewlineIndex = index; continue; } return new A.LineBreakResult(index, index, lastNonSpaceIndex, B.LineBreakType_0); } return new A.LineBreakResult(t1, lastNonNewlineIndex, lastNonSpaceIndex, B.LineBreakType_3); }, measureSubstring(_canvasContext, text, start, end, letterSpacing) { var cssFont, width, t1; if (start === end) return 0; cssFont = _canvasContext.font; if (start === $._lastStart && end === $._lastEnd && text === $._lastText && cssFont == $._lastCssFont) width = $._lastWidth; else { t1 = _canvasContext.measureText(start === 0 && end === text.length ? text : B.JSString_methods.substring$2(text, start, end)).width; t1.toString; width = t1; } $._lastStart = start; $._lastEnd = end; $._lastText = text; $._lastCssFont = cssFont; $._lastWidth = width; if (letterSpacing == null) letterSpacing = 0; return B.JSNumber_methods.round$0((letterSpacing !== 0 ? width + letterSpacing * (end - start) : width) * 100) / 100; }, EngineTextStyle$only(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontVariations, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing) { var t1 = fontFamily == null, t2 = t1 ? "" : fontFamily; return new A.EngineTextStyle(color, decoration, decorationColor, decorationStyle, decorationThickness, fontWeight, fontStyle, textBaseline, !t1, t2, fontFamilyFallback, fontFeatures, fontVariations, fontSize, letterSpacing, wordSpacing, height, locale, background, foreground, shadows); }, fontWeightToCss(fontWeight) { if (fontWeight == null) return null; return A.fontWeightIndexToCss(fontWeight.index); }, fontWeightIndexToCss(fontWeightIndex) { switch (fontWeightIndex) { case 0: return "100"; case 1: return "200"; case 2: return "300"; case 3: return "normal"; case 4: return "500"; case 5: return "600"; case 6: return "bold"; case 7: return "800"; case 8: return "900"; } return ""; }, _shadowListToCss(shadows) { var i, t2, shadow, t3, t1 = shadows.length; if (t1 === 0) return ""; for (i = 0, t2 = ""; i < t1; ++i, t2 = t3) { if (i !== 0) t2 += ","; shadow = shadows[i]; t3 = shadow.offset; t3 = t2 + (A.S(t3._dx) + "px " + A.S(t3._dy) + "px " + A.S(shadow.blurRadius) + "px " + A.S(A.colorToCssString(shadow.color))); } return t2.charCodeAt(0) == 0 ? t2 : t2; }, _fontFeatureListToCss(fontFeatures) { var i, t1; for (i = 0, t1 = ""; i < 1; ++i) t1 += '"tnum" 1'; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _decorationStyleToCssString(decorationStyle) { switch (decorationStyle.index) { case 3: return "dashed"; case 2: return "dotted"; case 1: return "double"; case 0: return "solid"; case 4: return "wavy"; default: return null; } }, textAlignToCssValue(align, textDirection) { var _s80_ = string$.x60null_c; switch (align) { case B.TextAlign_0: return "left"; case B.TextAlign_1: return "right"; case B.TextAlign_2: return "center"; case B.TextAlign_3: return "justify"; case B.TextAlign_5: switch (textDirection.index) { case 1: return "end"; case 0: return "left"; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case B.TextAlign_4: switch (textDirection.index) { case 1: return ""; case 0: return "right"; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case null: return ""; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, getDirectionalBlockEnd(text, start, end) { var t2, t3, blockDirection, i, codePoint, t1 = start.index; if (t1 === end.index) return new A.DirectionalPosition(end, null, false); t2 = end.indexWithoutTrailingSpaces; if (t1 === t2) return new A.DirectionalPosition(end, null, true); t3 = $.$get$_textDirectionLookup(); blockDirection = t3.find$2(0, text, t1); i = t1 + 1; for (; i < t2;) { codePoint = A.getCodePoint(text, i); if ((codePoint == null ? t3.defaultProperty : t3.findForChar$1(codePoint)) != blockDirection) break; ++i; } if (i === end.indexWithoutTrailingNewlines) return new A.DirectionalPosition(end, blockDirection, false); return new A.DirectionalPosition(new A.LineBreakResult(i, i, i, B.LineBreakType_1), blockDirection, false); }, getCodePoint(text, index) { var char; if (index < 0 || index >= text.length) return null; char = B.JSString_methods.codeUnitAt$1(text, index); if ((char & 63488) === 55296 && index < text.length - 1) return (char >>> 6 & 31) + 1 << 16 | (char & 63) << 10 | B.JSString_methods.codeUnitAt$1(text, index + 1) & 1023; return char; }, UnicodePropertyLookup$(ranges, defaultProperty, $P) { return new A.UnicodePropertyLookup(ranges, defaultProperty, A.LinkedHashMap_LinkedHashMap$_empty(type$.int, $P), $P._eval$1("UnicodePropertyLookup<0>")); }, UnicodePropertyLookup_UnicodePropertyLookup$fromPackedData(packedData, singleRangesCount, propertyEnumValues, defaultProperty, $P) { return new A.UnicodePropertyLookup(A._unpackProperties(packedData, singleRangesCount, propertyEnumValues, $P), defaultProperty, A.LinkedHashMap_LinkedHashMap$_empty(type$.int, $P), $P._eval$1("UnicodePropertyLookup<0>")); }, _unpackProperties(packedData, singleRangesCount, propertyEnumValues, $P) { var t1, i, rangeStart, rangeEnd, i0, ranges = A._setArrayType([], $P._eval$1("JSArray>")), dataLength = packedData.length; for (t1 = $P._eval$1("UnicodeRange<0>"), i = 0; i < dataLength; i = i0) { rangeStart = A._consumeInt(packedData, i); i += 4; if (B.JSString_methods._codeUnitAt$1(packedData, i) === 33) { ++i; rangeEnd = rangeStart; } else { rangeEnd = A._consumeInt(packedData, i); i += 4; } i0 = i + 1; ranges.push(new A.UnicodeRange(rangeStart, rangeEnd, propertyEnumValues[A._getEnumIndexFromPackedValue(B.JSString_methods._codeUnitAt$1(packedData, i))], t1)); } return ranges; }, _getEnumIndexFromPackedValue(charCode) { if (charCode <= 90) return charCode - 65; return 26 + charCode - 97; }, _consumeInt(packedData, index) { return A._getIntFromCharCode(B.JSString_methods._codeUnitAt$1(packedData, index + 3)) + A._getIntFromCharCode(B.JSString_methods._codeUnitAt$1(packedData, index + 2)) * 36 + A._getIntFromCharCode(B.JSString_methods._codeUnitAt$1(packedData, index + 1)) * 36 * 36 + A._getIntFromCharCode(B.JSString_methods._codeUnitAt$1(packedData, index)) * 36 * 36 * 36; }, _getIntFromCharCode(charCode) { if (charCode <= 57) return charCode - 48; return charCode - 97 + 10; }, WordBreaker__findBreakIndex(direction, text, index) { var t1 = direction.step, t2 = text.length, i = index; while (true) { if (!(i >= 0 && i <= t2)) break; i += t1; if (A.WordBreaker__isBreak(text, i)) break; } return A.clampInt(i, 0, t2); }, WordBreaker__isBreak(text, index) { var t1, immediateRight, immediateLeft, l, t2, codePoint, r, nextRight, nextLeft, _null = null; if (index <= 0 || index >= text.length) return true; t1 = index - 1; if ((B.JSString_methods.codeUnitAt$1(text, t1) & 63488) === 55296) return false; immediateRight = $.$get$wordLookup().find$2(0, text, index); immediateLeft = $.$get$wordLookup().find$2(0, text, t1); if (immediateLeft === B.WordCharProperty_3 && immediateRight === B.WordCharProperty_4) return false; if (A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_5, B.WordCharProperty_3, B.WordCharProperty_4, _null, _null)) return true; if (A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_5, B.WordCharProperty_3, B.WordCharProperty_4, _null, _null)) return true; if (immediateLeft === B.WordCharProperty_17 && immediateRight === B.WordCharProperty_17) return false; if (A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_6, B.WordCharProperty_8, B.WordCharProperty_16, _null, _null)) return false; for (l = 0; A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_6, B.WordCharProperty_8, B.WordCharProperty_16, _null, _null);) { ++l; t1 = index - l - 1; if (t1 < 0) return true; t2 = $.$get$wordLookup(); t2.toString; codePoint = A.getCodePoint(text, t1); immediateLeft = codePoint == null ? t2.defaultProperty : t2.findForChar$1(codePoint); } if (A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null) && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null)) return false; r = 0; do { ++r; nextRight = $.$get$wordLookup().find$2(0, text, index + r); } while (A.WordBreaker__oneOf(nextRight, B.WordCharProperty_6, B.WordCharProperty_8, B.WordCharProperty_16, _null, _null)); do { ++l; nextLeft = $.$get$wordLookup().find$2(0, text, index - l - 1); } while (A.WordBreaker__oneOf(nextLeft, B.WordCharProperty_6, B.WordCharProperty_8, B.WordCharProperty_16, _null, _null)); if (A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null) && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_11, B.WordCharProperty_13, B.WordCharProperty_1, _null, _null) && A.WordBreaker__oneOf(nextRight, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null)) return false; if (A.WordBreaker__oneOf(nextLeft, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null) && A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_11, B.WordCharProperty_13, B.WordCharProperty_1, _null, _null) && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null)) return false; t1 = immediateLeft === B.WordCharProperty_2; if (t1 && immediateRight === B.WordCharProperty_1) return false; if (t1 && immediateRight === B.WordCharProperty_0 && nextRight === B.WordCharProperty_2) return false; if (nextLeft === B.WordCharProperty_2 && immediateLeft === B.WordCharProperty_0 && immediateRight === B.WordCharProperty_2) return false; t1 = immediateLeft === B.WordCharProperty_14; if (t1 && immediateRight === B.WordCharProperty_14) return false; if (A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null) && immediateRight === B.WordCharProperty_14) return false; if (t1 && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_10, B.WordCharProperty_2, _null, _null, _null)) return false; if (nextLeft === B.WordCharProperty_14 && A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_12, B.WordCharProperty_13, B.WordCharProperty_1, _null, _null) && immediateRight === B.WordCharProperty_14) return false; if (t1 && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_12, B.WordCharProperty_13, B.WordCharProperty_1, _null, _null) && nextRight === B.WordCharProperty_14) return false; if (immediateLeft === B.WordCharProperty_9 && immediateRight === B.WordCharProperty_9) return false; if (A.WordBreaker__oneOf(immediateLeft, B.WordCharProperty_10, B.WordCharProperty_2, B.WordCharProperty_14, B.WordCharProperty_9, B.WordCharProperty_15) && immediateRight === B.WordCharProperty_15) return false; if (immediateLeft === B.WordCharProperty_15 && A.WordBreaker__oneOf(immediateRight, B.WordCharProperty_10, B.WordCharProperty_2, B.WordCharProperty_14, B.WordCharProperty_9, _null)) return false; return true; }, WordBreaker__oneOf(value, choice1, choice2, choice3, choice4, choice5) { if (value === choice1) return true; if (value === choice2) return true; if (choice3 != null && value === choice3) return true; if (choice4 != null && value === choice4) return true; if (choice5 != null && value === choice5) return true; return false; }, EngineInputType_fromName($name, isDecimal) { switch ($name) { case "TextInputType.number": return isDecimal ? B.C_DecimalInputType : B.C_NumberInputType; case "TextInputType.phone": return B.C_PhoneInputType; case "TextInputType.emailAddress": return B.C_EmailInputType; case "TextInputType.url": return B.C_UrlInputType; case "TextInputType.multiline": return B.C_MultilineInputType; case "TextInputType.none": return B.C_NoTextInputType; case "TextInputType.text": default: return B.C_TextInputType; } }, TextCapitalizationConfig$fromInputConfiguration(inputConfiguration) { var t1; if (inputConfiguration === "TextCapitalization.words") t1 = B.TextCapitalization_0; else if (inputConfiguration === "TextCapitalization.characters") t1 = B.TextCapitalization_2; else t1 = inputConfiguration === "TextCapitalization.sentences" ? B.TextCapitalization_10 : B.TextCapitalization_30; return new A.TextCapitalizationConfig(t1); }, _emptyCallback(_) { }, _hideAutofillElements(domElement, isOffScreen) { var t1, _s11_ = "transparent", _s4_ = "none", elementStyle = domElement.style; elementStyle.whiteSpace = "pre-wrap"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "align-content"), "center", ""); elementStyle.padding = "0"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "1", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; elementStyle.outline = _s4_; elementStyle.border = _s4_; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "resize"), _s4_, ""); elementStyle.width = "0"; elementStyle.height = "0"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "text-shadow"), _s11_, ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "transform-origin"), "0 0 0", ""); if (isOffScreen) { elementStyle.top = "-9999px"; elementStyle.left = "-9999px"; } t1 = $.$get$_browserEngine(); if (t1 !== B.BrowserEngine_0) if (t1 !== B.BrowserEngine_5) t1 = t1 === B.BrowserEngine_1; else t1 = true; else t1 = true; if (t1) domElement.classList.add("transparentTextEditing"); B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "caret-color"), _s11_, null); }, EngineAutofillForm_fromFrameworkMessage(focusedElementAutofill, fields) { var t1, elements, items, formElement, ids, focusedElement, t2, t3, t4, t5, autofillInfo, t6, autofill, htmlElement, _i, id, formIdentifier, form, submitButton; if (focusedElementAutofill == null) return null; t1 = type$.String; elements = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.HtmlElement); items = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.AutofillInfo); formElement = document.createElement("form"); formElement.noValidate = true; formElement.method = "post"; formElement.action = "#"; B.FormElement_methods.addEventListener$2(formElement, "submit", new A.EngineAutofillForm_fromFrameworkMessage_closure()); A._hideAutofillElements(formElement, false); ids = J.JSArray_JSArray$growable(0, t1); focusedElement = A.AutofillInfo_AutofillInfo$fromFrameworkMessage(focusedElementAutofill, B.TextCapitalizationConfig_TextCapitalization_3); if (fields != null) for (t1 = type$.Map_String_dynamic, t2 = J.cast$1$0$ax(fields, t1), t2 = t2.get$iterator(t2), t3 = focusedElement.uniqueIdentifier; t2.moveNext$0();) { t4 = t2.get$current(t2); t5 = J.getInterceptor$asx(t4); autofillInfo = t1._as(t5.$index(t4, "autofill")); t6 = A._asStringS(t5.$index(t4, "textCapitalization")); if (t6 === "TextCapitalization.words") t6 = B.TextCapitalization_0; else if (t6 === "TextCapitalization.characters") t6 = B.TextCapitalization_2; else t6 = t6 === "TextCapitalization.sentences" ? B.TextCapitalization_10 : B.TextCapitalization_30; autofill = A.AutofillInfo_AutofillInfo$fromFrameworkMessage(autofillInfo, new A.TextCapitalizationConfig(t6)); t6 = autofill.uniqueIdentifier; ids.push(t6); if (t6 != t3) { htmlElement = A.EngineInputType_fromName(A._asStringS(J.$index$asx(t1._as(t5.$index(t4, "inputType")), "name")), false).createDomElement$0(); autofill.editingState.applyToDomElement$1(htmlElement); autofill.applyToDomElement$1(htmlElement); A._hideAutofillElements(htmlElement, false); items.$indexSet(0, t6, autofill); elements.$indexSet(0, t6, htmlElement); formElement.appendChild(htmlElement); } } else ids.push(focusedElement.uniqueIdentifier); B.JSArray_methods.sort$0(ids); for (t1 = ids.length, _i = 0, t2 = ""; _i < t1; ++_i) { id = ids[_i]; if (t2.length > 0) t2 += "*"; t2 += A.S(id); } formIdentifier = t2.charCodeAt(0) == 0 ? t2 : t2; form = $.formsOnTheDom.$index(0, formIdentifier); if (form != null) B.FormElement_methods.remove$0(form); submitButton = A.InputElement_InputElement(null); A._hideAutofillElements(submitButton, true); submitButton.className = "submitBtn"; submitButton.type = "submit"; formElement.appendChild(submitButton); return new A.EngineAutofillForm(formElement, elements, items, formIdentifier); }, AutofillInfo_AutofillInfo$fromFrameworkMessage(autofill, textCapitalization) { var t2, t1 = J.getInterceptor$asx(autofill), uniqueIdentifier = A._asStringS(t1.$index(autofill, "uniqueIdentifier")), hintsList = type$.nullable_List_dynamic._as(t1.$index(autofill, "hints")), firstHint = hintsList == null || J.get$isEmpty$asx(hintsList) ? null : A._asStringS(J.get$first$ax(hintsList)), editingState = A.EditingState_EditingState$fromFrameworkMessage(type$.Map_String_dynamic._as(t1.$index(autofill, "editingValue"))); if (firstHint != null) { t2 = $.$get$BrowserAutofillHints__singletonInstance()._flutterToEngineMap.$index(0, firstHint); if (t2 == null) t2 = firstHint; } else t2 = null; return new A.AutofillInfo(editingState, uniqueIdentifier, t2, A._asStringQ(t1.$index(autofill, "hintText"))); }, _replace(originalText, replacementText, replacedRange) { var t1 = replacedRange.start, t2 = replacedRange.end, t3 = Math.min(A.checkNum(t1), A.checkNum(t2)); t2 = Math.max(A.checkNum(t1), A.checkNum(t2)); return J.substring$2$s(originalText, 0, t3) + replacementText + B.JSString_methods.substring$1(originalText, t2); }, TextEditingDeltaState_inferDeltaState(newEditingState, lastEditingState, lastTextEditingDeltaState) { var previousSelectionWasCollapsed, isTextBeingRemoved, isTextBeingChangedAtActiveSelection, isCurrentlyComposing, textAfterDelta, isPeriodInsertion, actualEnd, textAfterMatch, t1 = lastTextEditingDeltaState.oldText, t2 = lastTextEditingDeltaState.deltaText, t3 = lastTextEditingDeltaState.deltaStart, t4 = lastTextEditingDeltaState.deltaEnd, t5 = lastTextEditingDeltaState.baseOffset, t6 = lastTextEditingDeltaState.extentOffset, t7 = lastTextEditingDeltaState.composingOffset, t8 = lastTextEditingDeltaState.composingExtent, newTextEditingDeltaState = new A.TextEditingDeltaState(t1, t2, t3, t4, t5, t6, t7, t8); t5 = lastEditingState == null; t6 = t5 ? null : lastEditingState.baseOffset; previousSelectionWasCollapsed = t6 == (t5 ? null : lastEditingState.extentOffset); t5 = t2.length; t6 = t5 === 0; isTextBeingRemoved = t6 && t4 !== -1; t6 = !t6; isTextBeingChangedAtActiveSelection = t6 && !previousSelectionWasCollapsed; if (isTextBeingRemoved) { t3 = t4 - (t1.length - newEditingState.text.length); newTextEditingDeltaState.deltaStart = t3; } else if (isTextBeingChangedAtActiveSelection) { t3 = lastEditingState.baseOffset; newTextEditingDeltaState.deltaStart = t3; } isCurrentlyComposing = t7 != null && t7 !== t8; if (t6 && previousSelectionWasCollapsed && isCurrentlyComposing) { t7.toString; t3 = newTextEditingDeltaState.deltaStart = t7; t8.toString; t8 = newTextEditingDeltaState.deltaEnd = t8; t4 = t8; } if (!(t3 === -1 && t3 == t4)) { textAfterDelta = A._replace(t1, t2, new A.TextRange(t3, t4)); t3 = newEditingState.text; t3.toString; if (textAfterDelta !== t3) { isPeriodInsertion = B.JSString_methods.contains$1(t2, "."); for (t4 = A.RegExp_RegExp(A.quoteStringForRegExp(t2), true, false, false, false).allMatches$1(0, t3), t4 = new A._AllMatchesIterator(t4._re, t4.__js_helper$_string, t4.__js_helper$_start); t4.moveNext$0();) { t6 = t4.__js_helper$_current._match; t7 = t6.index; if (!(t7 >= 0 && t7 + t6[0].length <= t1.length)) { actualEnd = t7 + t5 - 1; textAfterMatch = A._replace(t1, t2, new A.TextRange(t7, actualEnd)); } else { actualEnd = isPeriodInsertion ? t7 + t6[0].length - 1 : t7 + t6[0].length; textAfterMatch = A._replace(t1, t2, new A.TextRange(t7, actualEnd)); } if (textAfterMatch === t3) { newTextEditingDeltaState.deltaStart = t7; newTextEditingDeltaState.deltaEnd = actualEnd; break; } } } } newTextEditingDeltaState.baseOffset = newEditingState.baseOffset; newTextEditingDeltaState.extentOffset = newEditingState.extentOffset; return newTextEditingDeltaState; }, EditingState$(baseOffset, extentOffset, text) { var t1 = baseOffset == null, t2 = t1 ? 0 : baseOffset, t3 = extentOffset == null, t4 = t3 ? 0 : extentOffset; t4 = Math.max(0, Math.min(t2, t4)); t1 = t1 ? 0 : baseOffset; t2 = t3 ? 0 : extentOffset; return new A.EditingState(text, t4, Math.max(0, Math.max(t1, t2))); }, EditingState_EditingState$fromFrameworkMessage(flutterEditingState) { var t1 = J.getInterceptor$asx(flutterEditingState); return A.EditingState$(A._asIntS(t1.$index(flutterEditingState, "selectionBase")), A._asIntS(t1.$index(flutterEditingState, "selectionExtent")), A._asStringQ(t1.$index(flutterEditingState, "text"))); }, EditingState_EditingState$fromDomElement(domElement) { var t1; if (type$.InputElement._is(domElement)) { t1 = domElement.value; return A.EditingState$(domElement.selectionStart, domElement.selectionEnd, t1); } else if (type$.TextAreaElement._is(domElement)) { t1 = domElement.value; return A.EditingState$(domElement.selectionStart, domElement.selectionEnd, t1); } else throw A.wrapException(A.UnsupportedError$("Initialized with unsupported input type")); }, InputConfiguration$fromFrameworkMessage(flutterInputConfiguration) { var t5, t6, t7, t8, t9, _s9_ = "inputType", _s8_ = "autofill", t1 = J.getInterceptor$asx(flutterInputConfiguration), t2 = type$.Map_String_dynamic, t3 = A._asStringS(J.$index$asx(t2._as(t1.$index(flutterInputConfiguration, _s9_)), "name")), t4 = A._asBoolQ(J.$index$asx(t2._as(t1.$index(flutterInputConfiguration, _s9_)), "decimal")); t3 = A.EngineInputType_fromName(t3, t4 === true); t4 = A._asStringQ(t1.$index(flutterInputConfiguration, "inputAction")); if (t4 == null) t4 = "TextInputAction.done"; t5 = A._asBoolQ(t1.$index(flutterInputConfiguration, "obscureText")); t6 = A._asBoolQ(t1.$index(flutterInputConfiguration, "readOnly")); t7 = A._asBoolQ(t1.$index(flutterInputConfiguration, "autocorrect")); t8 = A.TextCapitalizationConfig$fromInputConfiguration(A._asStringS(t1.$index(flutterInputConfiguration, "textCapitalization"))); t2 = t1.containsKey$1(flutterInputConfiguration, _s8_) ? A.AutofillInfo_AutofillInfo$fromFrameworkMessage(t2._as(t1.$index(flutterInputConfiguration, _s8_)), B.TextCapitalizationConfig_TextCapitalization_3) : null; t9 = A.EngineAutofillForm_fromFrameworkMessage(type$.nullable_Map_String_dynamic._as(t1.$index(flutterInputConfiguration, _s8_)), type$.nullable_List_dynamic._as(t1.$index(flutterInputConfiguration, "fields"))); t1 = A._asBoolQ(t1.$index(flutterInputConfiguration, "enableDeltaModel")); return new A.InputConfiguration(t3, t4, t6 === true, t5 === true, t7 !== false, t1 === true, t2, t9, t8); }, saveForms() { $.formsOnTheDom.forEach$1(0, new A.saveForms_closure()); }, cleanForms() { var t1, t2, t3; for (t1 = $.formsOnTheDom.get$values($.formsOnTheDom), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) { t1 = t2.__internal$_current; t3 = t1.parentNode; if (t3 != null) t3.removeChild(t1); } $.formsOnTheDom.clear$0(0); }, futurize(callbacker, $T) { var error, t1 = {}, t2 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1.sync = true; error = callbacker.call$1(new A.futurize_closure(t1, new A._SyncCompleter(t2, $T._eval$1("_SyncCompleter<0>")), $T)); t1.sync = false; if (error != null) throw A.wrapException(A.Exception_Exception(error)); return t2; }, setElementTransform(element, matrix4) { var t2, t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); t2 = A.float64ListToCssTransform(matrix4); B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, float64ListToCssTransform(matrix) { var transformKind = A.transformKindOf(matrix); if (transformKind === B.TransformKind_1) return "matrix(" + A.S(matrix[0]) + "," + A.S(matrix[1]) + "," + A.S(matrix[4]) + "," + A.S(matrix[5]) + "," + A.S(matrix[12]) + "," + A.S(matrix[13]) + ")"; else if (transformKind === B.TransformKind_2) return A.float64ListToCssTransform3d(matrix); else return "none"; }, transformKindOf(matrix) { if (!(matrix[15] === 1 && matrix[14] === 0 && matrix[11] === 0 && matrix[10] === 1 && matrix[9] === 0 && matrix[8] === 0 && matrix[7] === 0 && matrix[6] === 0 && matrix[3] === 0 && matrix[2] === 0)) return B.TransformKind_2; if (matrix[0] === 1 && matrix[1] === 0 && matrix[4] === 0 && matrix[5] === 1 && matrix[12] === 0 && matrix[13] === 0) return B.TransformKind_0; else return B.TransformKind_1; }, float64ListToCssTransform3d(matrix) { var t1 = matrix[0]; if (t1 === 1 && matrix[1] === 0 && matrix[2] === 0 && matrix[3] === 0 && matrix[4] === 0 && matrix[5] === 1 && matrix[6] === 0 && matrix[7] === 0 && matrix[8] === 0 && matrix[9] === 0 && matrix[10] === 1 && matrix[11] === 0 && matrix[14] === 0 && matrix[15] === 1) return "translate3d(" + A.S(matrix[12]) + "px, " + A.S(matrix[13]) + "px, 0px)"; else return "matrix3d(" + A.S(t1) + "," + A.S(matrix[1]) + "," + A.S(matrix[2]) + "," + A.S(matrix[3]) + "," + A.S(matrix[4]) + "," + A.S(matrix[5]) + "," + A.S(matrix[6]) + "," + A.S(matrix[7]) + "," + A.S(matrix[8]) + "," + A.S(matrix[9]) + "," + A.S(matrix[10]) + "," + A.S(matrix[11]) + "," + A.S(matrix[12]) + "," + A.S(matrix[13]) + "," + A.S(matrix[14]) + "," + A.S(matrix[15]) + ")"; }, transformRect(transform, rect) { var t1 = $.$get$_tempRectData(); t1[0] = rect.left; t1[1] = rect.top; t1[2] = rect.right; t1[3] = rect.bottom; A.transformLTRB(transform, t1); return new A.Rect(t1[0], t1[1], t1[2], t1[3]); }, transformLTRB(transform, ltrb) { var t2, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33, argStorage, w, t1 = $.$get$_tempPointData(); t1[0] = ltrb[0]; t1[4] = ltrb[1]; t1[8] = 0; t1[12] = 1; t1[1] = ltrb[2]; t1[5] = ltrb[1]; t1[9] = 0; t1[13] = 1; t1[2] = ltrb[0]; t1[6] = ltrb[3]; t1[10] = 0; t1[14] = 1; t1[3] = ltrb[2]; t1[7] = ltrb[3]; t1[11] = 0; t1[15] = 1; t2 = $.$get$_tempPointMatrix().__engine$_m4storage; m00 = t2[0]; m01 = t2[4]; m02 = t2[8]; m03 = t2[12]; m10 = t2[1]; m11 = t2[5]; m12 = t2[9]; m13 = t2[13]; m20 = t2[2]; m21 = t2[6]; m22 = t2[10]; m23 = t2[14]; m30 = t2[3]; m31 = t2[7]; m32 = t2[11]; m33 = t2[15]; argStorage = transform.__engine$_m4storage; t2[0] = m00 * argStorage[0] + m01 * argStorage[4] + m02 * argStorage[8] + m03 * argStorage[12]; t2[4] = m00 * argStorage[1] + m01 * argStorage[5] + m02 * argStorage[9] + m03 * argStorage[13]; t2[8] = m00 * argStorage[2] + m01 * argStorage[6] + m02 * argStorage[10] + m03 * argStorage[14]; t2[12] = m00 * argStorage[3] + m01 * argStorage[7] + m02 * argStorage[11] + m03 * argStorage[15]; t2[1] = m10 * argStorage[0] + m11 * argStorage[4] + m12 * argStorage[8] + m13 * argStorage[12]; t2[5] = m10 * argStorage[1] + m11 * argStorage[5] + m12 * argStorage[9] + m13 * argStorage[13]; t2[9] = m10 * argStorage[2] + m11 * argStorage[6] + m12 * argStorage[10] + m13 * argStorage[14]; t2[13] = m10 * argStorage[3] + m11 * argStorage[7] + m12 * argStorage[11] + m13 * argStorage[15]; t2[2] = m20 * argStorage[0] + m21 * argStorage[4] + m22 * argStorage[8] + m23 * argStorage[12]; t2[6] = m20 * argStorage[1] + m21 * argStorage[5] + m22 * argStorage[9] + m23 * argStorage[13]; t2[10] = m20 * argStorage[2] + m21 * argStorage[6] + m22 * argStorage[10] + m23 * argStorage[14]; t2[14] = m20 * argStorage[3] + m21 * argStorage[7] + m22 * argStorage[11] + m23 * argStorage[15]; t2[3] = m30 * argStorage[0] + m31 * argStorage[4] + m32 * argStorage[8] + m33 * argStorage[12]; t2[7] = m30 * argStorage[1] + m31 * argStorage[5] + m32 * argStorage[9] + m33 * argStorage[13]; t2[11] = m30 * argStorage[2] + m31 * argStorage[6] + m32 * argStorage[10] + m33 * argStorage[14]; t2[15] = m30 * argStorage[3] + m31 * argStorage[7] + m32 * argStorage[11] + m33 * argStorage[15]; w = argStorage[15]; if (w === 0) w = 1; ltrb[0] = Math.min(Math.min(Math.min(t1[0], t1[1]), t1[2]), t1[3]) / w; ltrb[1] = Math.min(Math.min(Math.min(t1[4], t1[5]), t1[6]), t1[7]) / w; ltrb[2] = Math.max(Math.max(Math.max(t1[0], t1[1]), t1[2]), t1[3]) / w; ltrb[3] = Math.max(Math.max(Math.max(t1[4], t1[5]), t1[6]), t1[7]) / w; }, rectContainsOther(rect, other) { return rect.left <= other.left && rect.top <= other.top && rect.right >= other.right && rect.bottom >= other.bottom; }, colorToCssString(color) { var value, hexValue, t1; if (color == null) return null; value = color.get$value(color); if ((value & 4278190080) >>> 0 === 4278190080) { hexValue = B.JSInt_methods.toRadixString$1(value & 16777215, 16); switch (hexValue.length) { case 1: return "#00000" + hexValue; case 2: return "#0000" + hexValue; case 3: return "#000" + hexValue; case 4: return "#00" + hexValue; case 5: return "#0" + hexValue; default: return "#" + hexValue; } } else { t1 = "rgba(" + B.JSInt_methods.toString$0(value >>> 16 & 255) + "," + B.JSInt_methods.toString$0(value >>> 8 & 255) + "," + B.JSInt_methods.toString$0(value & 255) + "," + B.JSNumber_methods.toString$0((value >>> 24 & 255) / 255) + ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }, colorComponentsToCssString(r, g, b, a) { var t1 = "" + r, t2 = "" + g, t3 = "" + b; if (a === 255) return "rgb(" + t1 + "," + t2 + "," + t3 + ")"; else return "rgba(" + t1 + "," + t2 + "," + t3 + "," + B.JSNumber_methods.toStringAsFixed$1(a / 255, 2) + ")"; }, _fallbackFontFamily() { if (A.isIOS15()) return "BlinkMacSystemFont"; var t1 = $.$get$_operatingSystem(); if (t1 !== B.OperatingSystem_0) t1 = t1 === B.OperatingSystem_4; else t1 = true; if (t1) return "-apple-system, BlinkMacSystemFont"; return "Arial"; }, canonicalizeFontFamily(fontFamily) { var t1; if (J.containsKey$1$x(B.Set_wIvsi._collection$_map, fontFamily)) return fontFamily; t1 = $.$get$_operatingSystem(); if (t1 !== B.OperatingSystem_0) t1 = t1 === B.OperatingSystem_4; else t1 = true; if (t1) if (fontFamily === ".SF Pro Text" || fontFamily === ".SF Pro Display" || fontFamily === ".SF UI Text" || fontFamily === ".SF UI Display") return A._fallbackFontFamily(); return '"' + A.S(fontFamily) + '", ' + A._fallbackFontFamily() + ", sans-serif"; }, clampInt(value, min, max) { if (value < min) return min; else if (value > max) return max; else return value; }, listEquals(a, b) { var index; if (a == null) return b == null; if (b == null || a.length !== b.length) return false; for (index = 0; index < a.length; ++index) if (!J.$eq$(a[index], b[index])) return false; return true; }, httpFetch(url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Body), $async$returnValue, t1, $async$temp1; var $async$httpFetch = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = window; $async$temp1 = type$.Body; $async$goto = 3; return A._asyncAwait(A.promiseToFuture(t1.fetch(url, null), type$.dynamic), $async$httpFetch); case 3: // returning from await. $async$returnValue = $async$temp1._as($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$httpFetch, $async$completer); }, bytesToHexString(data) { return J.map$1$1$ax(data, new A.bytesToHexString_closure(), type$.String).join$1(0, " "); }, setElementStyle(element, $name, value) { var t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, $name), value, null); }, setClipPath(element, value) { var t1 = $.$get$_browserEngine(); if (t1 === B.BrowserEngine_1) { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "-webkit-clip-path"), value, null); } t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "clip-path"), value, null); }, drawEllipse(context, centerX, centerY, radiusX, radiusY, rotation, startAngle, endAngle, antiClockwise) { var t1 = $._ellipseFeatureDetected; if (t1 == null ? $._ellipseFeatureDetected = context.ellipse != null : t1) context.ellipse(centerX, centerY, radiusX, radiusY, rotation, startAngle, endAngle, antiClockwise); else { context.save(); context.translate(centerX, centerY); context.rotate(rotation); context.scale(radiusX, radiusY); context.arc(0, 0, 1, startAngle, endAngle, antiClockwise); context.restore(); } }, removeAllChildren(node) { var t1, t2; for (; t1 = node.lastChild, t1 != null;) { t2 = t1.parentNode; if (t2 != null) t2.removeChild(t1); } }, Matrix4_tryInvert0(other) { var r = new A.Matrix40(new Float32Array(16)); if (r.copyInverse$1(other) === 0) return null; return r; }, Matrix4$identity() { var t1 = new Float32Array(16); t1[15] = 1; t1[0] = 1; t1[5] = 1; t1[10] = 1; return new A.Matrix40(t1); }, Matrix4$fromFloat32List(_m4storage) { return new A.Matrix40(_m4storage); }, Vector3_Vector3(x, y, z) { var t1 = new Float32Array(3); t1[0] = x; t1[1] = y; t1[2] = z; return new A.Vector30(t1); }, EngineSingletonFlutterWindow$(windowId, platformDispatcher) { var t1 = new A.EngineSingletonFlutterWindow(windowId, platformDispatcher, A.Future_Future$value(null, type$.void), B.WindowPadding_0_0_0_0); t1.EngineFlutterWindow$2(windowId, platformDispatcher); return t1; }, AlarmClock: function AlarmClock(t0) { var _ = this; _._timestampFunction = t0; _.callback = _._datetime = _._timer = null; }, AppBootstrap: function AppBootstrap(t0, t1) { this._initEngine = t0; this._runApp = t1; }, AppBootstrap_prepareEngineInitializer_closure: function AppBootstrap_prepareEngineInitializer_closure(t0) { this.$this = t0; }, AppBootstrap_prepareEngineInitializer__closure0: function AppBootstrap_prepareEngineInitializer__closure0(t0) { this.$this = t0; }, AppBootstrap_prepareEngineInitializer_closure0: function AppBootstrap_prepareEngineInitializer_closure0(t0) { this.$this = t0; }, AppBootstrap_prepareEngineInitializer__closure: function AppBootstrap_prepareEngineInitializer__closure(t0) { this.$this = t0; }, AppBootstrap__prepareAppRunner_closure: function AppBootstrap__prepareAppRunner_closure(t0) { this.$this = t0; }, AppBootstrap__prepareAppRunner__closure: function AppBootstrap__prepareAppRunner__closure(t0) { this.$this = t0; }, AssetManager: function AssetManager() { }, AssetManager__baseUrl_closure: function AssetManager__baseUrl_closure() { }, AssetManager__baseUrl_closure0: function AssetManager__baseUrl_closure0() { }, AssetManagerException: function AssetManagerException(t0, t1) { this.url = t0; this.httpStatus = t1; }, BrowserEngine: function BrowserEngine(t0, t1) { this.index = t0; this._core$_name = t1; }, OperatingSystem: function OperatingSystem(t0, t1) { this.index = t0; this._core$_name = t1; }, CanvasPool: function CanvasPool(t0, t1, t2, t3, t4) { var _ = this; _._contextHandle = _.__engine$_context = null; _._widthInBitmapPixels = t0; _._heightInBitmapPixels = t1; _._rootElement = _.__engine$_canvas = _._reusablePool = _._activeCanvasList = null; _._saveContextCount = 0; _._density = t2; _._saveStack = t3; _.clipStack = null; _._currentTransform = t4; }, ContextStateHandle: function ContextStateHandle(t0, t1, t2, t3, t4, t5) { var _ = this; _.context = t0; _._canvasPool = t1; _.density = t2; _._currentBlendMode = t3; _._currentStrokeCap = t4; _._currentStrokeJoin = t5; _._currentStrokeStyle = _._currentFillStyle = null; _._currentLineWidth = 1; _._shaderBounds = _._lastUsedPaint = _._currentFilter = null; _._debugIsPaintSetUp = false; }, _SaveStackTracking: function _SaveStackTracking() { }, CkCanvas: function CkCanvas(t0) { this.skCanvas = t0; }, RecordingCkCanvas: function RecordingCkCanvas(t0, t1) { this.pictureSnapshot = t0; this.skCanvas = t1; }, CkPictureSnapshot: function CkPictureSnapshot(t0, t1) { this._bounds = t0; this._commands = t1; }, CkPaintCommand: function CkPaintCommand() { }, CkClearCommand: function CkClearCommand(t0) { this.color = t0; }, CkSaveCommand: function CkSaveCommand() { }, CkRestoreCommand: function CkRestoreCommand() { }, CkRestoreToCountCommand: function CkRestoreToCountCommand(t0) { this.count = t0; }, CkTranslateCommand: function CkTranslateCommand(t0, t1) { this.dx = t0; this.dy = t1; }, CkScaleCommand: function CkScaleCommand(t0, t1) { this.sx = t0; this.sy = t1; }, CkRotateCommand: function CkRotateCommand(t0) { this.radians = t0; }, CkTransformCommand: function CkTransformCommand(t0) { this.matrix4 = t0; }, CkClipRectCommand: function CkClipRectCommand(t0, t1, t2) { this.rect = t0; this.clipOp = t1; this.doAntiAlias = t2; }, CkDrawArcCommand: function CkDrawArcCommand(t0, t1, t2, t3, t4) { var _ = this; _.oval = t0; _.startAngle = t1; _.sweepAngle = t2; _.useCenter = t3; _.paint = t4; }, CkClipRRectCommand: function CkClipRRectCommand(t0, t1) { this.rrect = t0; this.doAntiAlias = t1; }, CkClipPathCommand: function CkClipPathCommand(t0, t1) { this.path = t0; this.doAntiAlias = t1; }, CkDrawLineCommand: function CkDrawLineCommand(t0, t1, t2) { this.p1 = t0; this.p2 = t1; this.paint = t2; }, CkDrawPaintCommand: function CkDrawPaintCommand(t0) { this.paint = t0; }, CkDrawRectCommand: function CkDrawRectCommand(t0, t1) { this.rect = t0; this.paint = t1; }, CkDrawRRectCommand: function CkDrawRRectCommand(t0, t1) { this.rrect = t0; this.paint = t1; }, CkDrawDRRectCommand: function CkDrawDRRectCommand(t0, t1, t2) { this.outer = t0; this.inner = t1; this.paint = t2; }, CkDrawCircleCommand: function CkDrawCircleCommand(t0, t1, t2) { this.c = t0; this.radius = t1; this.paint = t2; }, CkDrawPathCommand: function CkDrawPathCommand(t0, t1) { this.path = t0; this.paint = t1; }, CkDrawShadowCommand: function CkDrawShadowCommand(t0, t1, t2, t3) { var _ = this; _.path = t0; _.color = t1; _.elevation = t2; _.transparentOccluder = t3; }, CkDrawImageRectCommand: function CkDrawImageRectCommand(t0, t1, t2, t3) { var _ = this; _.image = t0; _.src = t1; _.dst = t2; _.paint = t3; }, CkDrawParagraphCommand: function CkDrawParagraphCommand(t0, t1) { this.paragraph = t0; this.offset = t1; }, CkDrawPictureCommand: function CkDrawPictureCommand(t0) { this.picture = t0; }, CkSaveLayerCommand: function CkSaveLayerCommand(t0, t1) { this.bounds = t0; this.paint = t1; }, CkSaveLayerWithFilterCommand: function CkSaveLayerWithFilterCommand(t0, t1, t2) { this.bounds = t0; this.filter = t1; this.paint = t2; }, H5vcc: function H5vcc() { }, CanvasKit: function CanvasKit() { }, CanvasKitInitOptions: function CanvasKitInitOptions() { }, CanvasKitInitPromise: function CanvasKitInitPromise() { }, ColorSpace: function ColorSpace() { }, SkWebGLContextOptions: function SkWebGLContextOptions() { }, SkSurface: function SkSurface() { }, SkGrContext: function SkGrContext() { }, SkFontSlantEnum: function SkFontSlantEnum() { }, SkFontSlant: function SkFontSlant() { }, SkFontWeightEnum: function SkFontWeightEnum() { }, SkFontWeight: function SkFontWeight() { }, SkAffinityEnum: function SkAffinityEnum() { }, SkAffinity: function SkAffinity() { }, SkTextDirectionEnum: function SkTextDirectionEnum() { }, SkTextDirection: function SkTextDirection() { }, SkTextAlignEnum: function SkTextAlignEnum() { }, SkTextAlign: function SkTextAlign() { }, SkTextHeightBehaviorEnum: function SkTextHeightBehaviorEnum() { }, SkTextHeightBehavior: function SkTextHeightBehavior() { }, SkRectHeightStyleEnum: function SkRectHeightStyleEnum() { }, SkRectHeightStyle: function SkRectHeightStyle() { }, SkRectWidthStyleEnum: function SkRectWidthStyleEnum() { }, SkRectWidthStyle: function SkRectWidthStyle() { }, SkVertexModeEnum: function SkVertexModeEnum() { }, SkVertexMode: function SkVertexMode() { }, SkPointModeEnum: function SkPointModeEnum() { }, SkPointMode: function SkPointMode() { }, SkClipOpEnum: function SkClipOpEnum() { }, SkClipOp: function SkClipOp() { }, SkFillTypeEnum: function SkFillTypeEnum() { }, SkFillType: function SkFillType() { }, SkPathOpEnum: function SkPathOpEnum() { }, SkPathOp: function SkPathOp() { }, SkBlurStyleEnum: function SkBlurStyleEnum() { }, SkBlurStyle: function SkBlurStyle() { }, SkStrokeCapEnum: function SkStrokeCapEnum() { }, SkStrokeCap: function SkStrokeCap() { }, SkPaintStyleEnum: function SkPaintStyleEnum() { }, SkPaintStyle: function SkPaintStyle() { }, SkBlendModeEnum: function SkBlendModeEnum() { }, SkBlendMode: function SkBlendMode() { }, SkStrokeJoinEnum: function SkStrokeJoinEnum() { }, SkStrokeJoin: function SkStrokeJoin() { }, SkTileModeEnum: function SkTileModeEnum() { }, SkTileMode: function SkTileMode() { }, SkFilterModeEnum: function SkFilterModeEnum() { }, SkFilterMode: function SkFilterMode() { }, SkMipmapModeEnum: function SkMipmapModeEnum() { }, SkMipmapMode: function SkMipmapMode() { }, SkAlphaTypeEnum: function SkAlphaTypeEnum() { }, SkAlphaType: function SkAlphaType() { }, SkColorTypeEnum: function SkColorTypeEnum() { }, SkColorType: function SkColorType() { }, SkAnimatedImage: function SkAnimatedImage() { }, SkImage: function SkImage() { }, SkShaderNamespace: function SkShaderNamespace() { }, SkShader: function SkShader() { }, SkMaskFilterNamespace: function SkMaskFilterNamespace() { }, SkPaint: function SkPaint() { }, CkFilterOptions: function CkFilterOptions() { }, _CkCubicFilterOptions: function _CkCubicFilterOptions() { }, _CkTransformFilterOptions: function _CkTransformFilterOptions() { }, SkMaskFilter: function SkMaskFilter() { }, SkColorFilterNamespace: function SkColorFilterNamespace() { }, SkColorFilter: function SkColorFilter() { }, SkImageFilterNamespace: function SkImageFilterNamespace() { }, SkImageFilter: function SkImageFilter() { }, SkPathNamespace: function SkPathNamespace() { }, _NativeFloat32ArrayType: function _NativeFloat32ArrayType() { }, SkFloat32List: function SkFloat32List() { }, SkPath: function SkPath() { }, SkContourMeasureIter: function SkContourMeasureIter() { }, SkContourMeasure: function SkContourMeasure() { }, SkPictureRecorder: function SkPictureRecorder() { }, SkCanvas: function SkCanvas() { }, SkPicture: function SkPicture() { }, SkParagraphBuilderNamespace: function SkParagraphBuilderNamespace() { }, SkParagraphBuilder: function SkParagraphBuilder() { }, SkParagraphStyle: function SkParagraphStyle() { }, SkParagraphStyleProperties: function SkParagraphStyleProperties() { }, SkTextStyle: function SkTextStyle() { }, SkTextDecorationStyleEnum: function SkTextDecorationStyleEnum() { }, SkTextDecorationStyle: function SkTextDecorationStyle() { }, SkTextBaselineEnum: function SkTextBaselineEnum() { }, SkTextBaseline: function SkTextBaseline() { }, SkPlaceholderAlignmentEnum: function SkPlaceholderAlignmentEnum() { }, SkPlaceholderAlignment: function SkPlaceholderAlignment() { }, SkTextStyleProperties: function SkTextStyleProperties() { }, SkStrutStyleProperties: function SkStrutStyleProperties() { }, SkFontStyle: function SkFontStyle() { }, SkTextShadow: function SkTextShadow() { }, SkFontFeature: function SkFontFeature() { }, SkTypeface: function SkTypeface() { }, SkFont: function SkFont() { }, SkFontMgr: function SkFontMgr() { }, TypefaceFontProvider: function TypefaceFontProvider() { }, SkLineMetrics: function SkLineMetrics() { }, SkParagraph: function SkParagraph() { }, SkTextPosition: function SkTextPosition() { }, SkTextRange: function SkTextRange() { }, SkVertices: function SkVertices() { }, SkTonalColors: function SkTonalColors() { }, SkFontMgrNamespace: function SkFontMgrNamespace() { }, TypefaceFontProviderNamespace: function TypefaceFontProviderNamespace() { }, SkTypefaceFactory: function SkTypefaceFactory() { }, ProductionCollector: function ProductionCollector(t0) { this.__ProductionCollector__skObjectFinalizationRegistry = $; this._skiaObjectCollectionQueue = t0; this._skiaObjectCollectionTimer = null; }, ProductionCollector_closure: function ProductionCollector_closure(t0) { this.$this = t0; }, ProductionCollector_collect_closure: function ProductionCollector_collect_closure(t0) { this.$this = t0; }, SkiaObjectCollectionError: function SkiaObjectCollectionError(t0, t1) { this.error = t0; this.stackTrace = t1; }, SkDeletable: function SkDeletable() { }, JsConstructor: function JsConstructor() { }, SkObjectFinalizationRegistry: function SkObjectFinalizationRegistry() { }, SkData: function SkData() { }, SkImageInfo: function SkImageInfo() { }, SkPartialImageInfo: function SkPartialImageInfo() { }, patchCanvasKitModule_closure: function patchCanvasKitModule_closure(t0, t1) { this.canvasKitScript = t0; this.objectConstructor = t1; }, patchCanvasKitModule_closure0: function patchCanvasKitModule_closure0() { }, patchCanvasKitModule_closure1: function patchCanvasKitModule_closure1(t0, t1) { this.canvasKitScript = t0; this.objectConstructor = t1; }, patchCanvasKitModule_closure2: function patchCanvasKitModule_closure2() { }, CanvasKitCanvas: function CanvasKitCanvas(t0) { this.__engine$_canvas = t0; }, ManagedSkColorFilter: function ManagedSkColorFilter(t0) { this.colorFilter = t0; this.rawSkiaObject = null; }, CkColorFilter: function CkColorFilter() { }, CkBlendModeColorFilter: function CkBlendModeColorFilter() { }, CkMatrixColorFilter: function CkMatrixColorFilter(t0) { this.matrix = t0; }, CkComposeColorFilter: function CkComposeColorFilter(t0, t1) { this.outer = t0; this.inner = t1; }, HtmlViewEmbedder: function HtmlViewEmbedder(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._viewsUsingBackupSurface = t0; _._pictureRecordersCreatedDuringPreroll = t1; _._backupPictureRecorder = null; _._pictureRecorders = t2; _._currentCompositionParams = t3; _._viewClipChains = t4; _._overlays = t5; _._viewsToRecomposite = t6; _._compositionOrder = t7; _._visibleViewCount = 0; _._activeCompositionOrder = t8; _._frameSize = t9; _._clipPathCount = 0; _._svgPathDefs = null; _._svgClipDefs = t10; }, HtmlViewEmbedder_getOverlayCanvases_closure: function HtmlViewEmbedder_getOverlayCanvases_closure() { }, HtmlViewEmbedder__compositeWithParams_closure: function HtmlViewEmbedder__compositeWithParams_closure(t0) { this.viewId = t0; }, HtmlViewEmbedder__applyMutators_closure: function HtmlViewEmbedder__applyMutators_closure() { }, HtmlViewEmbedder__applyMutators_closure0: function HtmlViewEmbedder__applyMutators_closure0() { }, HtmlViewEmbedder_submitFrame_closure: function HtmlViewEmbedder_submitFrame_closure() { }, HtmlViewEmbedder_submitFrame_closure0: function HtmlViewEmbedder_submitFrame_closure0() { }, HtmlViewEmbedder_submitFrame_closure1: function HtmlViewEmbedder_submitFrame_closure1(t0) { this.$this = t0; }, HtmlViewEmbedder__updateOverlays_closure: function HtmlViewEmbedder__updateOverlays_closure() { }, ViewClipChain: function ViewClipChain(t0, t1) { this.__engine$_root = t0; this.__engine$_slot = t1; this._clipCount = -1; }, EmbeddedViewParams: function EmbeddedViewParams(t0, t1, t2) { this.offset = t0; this.size = t1; this.mutators = t2; }, MutatorType: function MutatorType(t0, t1) { this.index = t0; this._core$_name = t1; }, Mutator: function Mutator(t0, t1, t2, t3, t4, t5) { var _ = this; _.type = t0; _.rect = t1; _.rrect = t2; _.path = t3; _.matrix = t4; _.alpha = t5; }, MutatorsStack: function MutatorsStack(t0) { this._mutators = t0; }, ViewListDiffResult: function ViewListDiffResult(t0, t1, t2, t3) { var _ = this; _.viewsToRemove = t0; _.viewsToAdd = t1; _.addToBeginning = t2; _.viewToInsertBefore = t3; }, FontFallbackData: function FontFallbackData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.registeredSymbolsAndEmoji = false; _.codeUnitsWithNoKnownFont = t0; _.knownCoveredCodeUnits = t1; _.notoTree = t2; _.registeredFallbackFonts = t3; _.globalFontFallbacks = t4; _.fontFallbackCounts = t5; _._codeUnitsToCheckAgainstFallbackFonts = t6; _._scheduledCodeUnitCheck = false; }, FontFallbackData_createNotoFontTree_closure: function FontFallbackData_createNotoFontTree_closure() { }, FontFallbackData_ensureFontsSupportText_closure: function FontFallbackData_ensureFontsSupportText_closure() { }, FontFallbackData_registerFallbackFont_closure: function FontFallbackData_registerFallbackFont_closure() { }, _makeResolvedNotoFontFromCss_closure: function _makeResolvedNotoFontFromCss_closure() { }, _registerSymbolsAndEmoji_extractUrlFromCss: function _registerSymbolsAndEmoji_extractUrlFromCss() { }, findMinimumFontsForCodeUnits_closure: function findMinimumFontsForCodeUnits_closure() { }, findMinimumFontsForCodeUnits_closure0: function findMinimumFontsForCodeUnits_closure0(t0) { this._box_0 = t0; }, NotoFont: function NotoFont(t0, t1) { var _ = this; _.name = t0; _.approximateUnicodeRanges = t1; _.resolvedFont = _._decodingCompleter = null; }, CodeunitRange: function CodeunitRange(t0, t1) { this.start = t0; this.end = t1; }, _ResolvedNotoFont: function _ResolvedNotoFont(t0, t1) { this.name = t0; this.tree = t1; }, _ResolvedNotoSubset: function _ResolvedNotoSubset(t0, t1, t2) { this.url = t0; this.family = t1; this.ranges = t2; }, FallbackFontDownloadQueue: function FallbackFontDownloadQueue(t0, t1, t2) { var _ = this; _.downloader = t0; _.downloadedSubsets = t1; _.pendingSubsets = t2; _._fontsLoading = null; }, FallbackFontDownloadQueue_startDownloads_closure: function FallbackFontDownloadQueue_startDownloads_closure(t0, t1, t2) { this.$this = t0; this.subset = t1; this.downloadedData = t2; }, NotoDownloader: function NotoDownloader() { this._debugActiveDownloadCount = 0; }, NotoDownloader_downloadAsBytes_closure: function NotoDownloader_downloadAsBytes_closure() { }, NotoDownloader_downloadAsBytes__closure: function NotoDownloader_downloadAsBytes__closure() { }, NotoDownloader_downloadAsString_closure: function NotoDownloader_downloadAsString_closure() { }, NotoDownloader_downloadAsString__closure: function NotoDownloader_downloadAsString__closure() { }, SkiaFontCollection: function SkiaFontCollection(t0, t1, t2, t3) { var _ = this; _._registeredFontFamilies = t0; _._pendingFonts = t1; _._downloadedFonts = t2; _.familyToFontMap = t3; _.fontProvider = null; }, SkiaFontCollection_ensureFontsLoaded_closure: function SkiaFontCollection_ensureFontsLoaded_closure() { }, SkiaFontCollection_ensureFontsLoaded_closure0: function SkiaFontCollection_ensureFontsLoaded_closure0() { }, SkiaFontCollection__registerFont__downloadFont: function SkiaFontCollection__registerFont__downloadFont(t0, t1, t2) { this.$this = t0; this.url = t1; this.family = t2; }, SkiaFontCollection__getArrayBuffer_closure: function SkiaFontCollection__getArrayBuffer_closure() { }, RegisteredFont: function RegisteredFont(t0, t1, t2) { this.family = t0; this.bytes = t1; this.typeface = t2; }, skiaDecodeImageFromPixels_closure: function skiaDecodeImageFromPixels_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.width = t0; _.height = t1; _.format = t2; _.pixels = t3; _.rowBytes = t4; _.callback = t5; }, ImageCodecException: function ImageCodecException(t0) { this.__engine$_message = t0; }, httpRequestFactory_closure: function httpRequestFactory_closure() { }, fetchImage_closure: function fetchImage_closure(t0) { this.chunkCallback = t0; }, fetchImage_closure0: function fetchImage_closure0(t0, t1) { this.completer = t0; this.url = t1; }, fetchImage_closure1: function fetchImage_closure1(t0, t1, t2) { this.request = t0; this.completer = t1; this.url = t2; }, CkImage: function CkImage(t0, t1) { var _ = this; _._debugStackTrace = null; _.__CkImage_box = t0; _.videoFrame = t1; _._disposed = false; }, CkImage_closure: function CkImage_closure(t0, t1, t2) { this.originalWidth = t0; this.originalHeight = t1; this.originalBytes = t2; }, AnimatedImageFrameInfo: function AnimatedImageFrameInfo(t0, t1) { this.__engine$_duration = t0; this.__engine$_image = t1; }, CkImageFilter: function CkImageFilter() { }, _CkMatrixImageFilter: function _CkMatrixImageFilter(t0, t1) { this.matrix = t0; this.filterQuality = t1; this.rawSkiaObject = null; }, CkAnimatedImage: function CkAnimatedImage(t0, t1) { var _ = this; _.src = t0; _._bytes = t1; _._frameCount = 0; _._repetitionCount = -1; _._currentFrameIndex = 0; _._disposed = false; _.rawSkiaObject = null; }, CkBrowserImageDecoder: function CkBrowserImageDecoder(t0, t1, t2, t3, t4, t5) { var _ = this; _.contentType = t0; _.targetWidth = t1; _.targetHeight = t2; _.data = t3; _.debugSource = t4; _.__CkBrowserImageDecoder_repetitionCount = _.__CkBrowserImageDecoder_frameCount = $; _._isDisposed = false; _._nextFrameIndex = 0; _._cachedWebDecoder = null; _._cacheExpirationClock = t5; }, CkBrowserImageDecoder__cacheExpirationClock_closure: function CkBrowserImageDecoder__cacheExpirationClock_closure() { }, CkBrowserImageDecoder__getOrCreateWebDecoder_closure: function CkBrowserImageDecoder__getOrCreateWebDecoder_closure(t0) { this.$this = t0; }, ImageFileFormat: function ImageFileFormat(t0, t1) { this.header = t0; this.contentType = t1; }, downloadCanvasKit_closure: function downloadCanvasKit_closure(t0) { this.canvasKitBase = t0; }, downloadCanvasKit_closure0: function downloadCanvasKit_closure0(t0) { this.canvasKitInitCompleter = t0; }, _downloadCanvasKitJs_closure: function _downloadCanvasKitJs_closure(t0, t1) { this.loadSubscription = t0; this.canvasKitLoadCompleter = t1; }, IntervalTree: function IntervalTree(t0, t1) { this.root = t0; this.$ti = t1; }, IntervalTree_IntervalTree$createFromRanges_closure: function IntervalTree_IntervalTree$createFromRanges_closure(t0, t1) { this.intervals = t0; this.T = t1; }, IntervalTree_IntervalTree$createFromRanges_closure0: function IntervalTree_IntervalTree$createFromRanges_closure0(t0) { this.T = t0; }, IntervalTree_IntervalTree$createFromRanges__makeBalancedTree: function IntervalTree_IntervalTree$createFromRanges__makeBalancedTree(t0) { this.T = t0; }, IntervalTree_IntervalTree$createFromRanges__computeHigh: function IntervalTree_IntervalTree$createFromRanges__computeHigh(t0) { this.T = t0; }, IntervalTreeNode: function IntervalTreeNode(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.low = t1; _.high = t2; _.computedHigh = t3; _.right = _.left = null; _.$ti = t4; }, Layer: function Layer() { }, PrerollContext: function PrerollContext(t0, t1) { this.viewEmbedder = t0; this.mutatorsStack = t1; }, PaintContext: function PaintContext(t0, t1, t2) { this.internalNodesCanvas = t0; this.leafNodesCanvas = t1; this.viewEmbedder = t2; }, ContainerLayer: function ContainerLayer() { }, RootLayer: function RootLayer(t0, t1) { this._layers = t0; this.parent = null; this.paintBounds = t1; }, BackdropFilterEngineLayer: function BackdropFilterEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_filter = t0; _._blendMode = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, ClipPathEngineLayer: function ClipPathEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipPath = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, ClipRectEngineLayer: function ClipRectEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipRect = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, ClipRRectEngineLayer: function ClipRRectEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipRRect = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, OpacityEngineLayer: function OpacityEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_alpha = t0; _.__engine$_offset = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, TransformEngineLayer: function TransformEngineLayer(t0, t1, t2) { var _ = this; _.__engine$_transform = t0; _._layers = t1; _.parent = null; _.paintBounds = t2; }, OffsetEngineLayer: function OffsetEngineLayer(t0, t1, t2) { var _ = this; _.__engine$_transform = t0; _._layers = t1; _.parent = null; _.paintBounds = t2; }, PictureLayer0: function PictureLayer0(t0, t1, t2) { var _ = this; _.picture = t0; _.offset = t1; _.parent = null; _.paintBounds = t2; }, PhysicalShapeEngineLayer: function PhysicalShapeEngineLayer(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.__engine$_elevation = t0; _.__engine$_color = t1; _.__engine$_shadowColor = t2; _.__engine$_path = t3; _.__engine$_clipBehavior = t4; _._layers = t5; _.parent = null; _.paintBounds = t6; }, PlatformViewLayer0: function PlatformViewLayer0(t0, t1, t2, t3, t4) { var _ = this; _.viewId = t0; _.offset = t1; _.width = t2; _.height = t3; _.parent = null; _.paintBounds = t4; }, LayerScene: function LayerScene(t0) { this.layerTree = t0; }, LayerSceneBuilder: function LayerSceneBuilder(t0) { this.rootLayer = t0; this.__LayerSceneBuilder_currentLayer = $; }, LayerTree: function LayerTree(t0, t1) { this.rootLayer = t0; this.frameSize = t1; }, Frame: function Frame(t0, t1, t2) { this.canvas = t0; this.rasterCache = t1; this.viewEmbedder = t2; }, Frame_raster_closure: function Frame_raster_closure(t0, t1, t2) { this.$this = t0; this.layerTree = t1; this.ignoreRasterCache = t2; }, Frame_raster_closure0: function Frame_raster_closure0(t0, t1, t2) { this.$this = t0; this.layerTree = t1; this.ignoreRasterCache = t2; }, CompositorContext: function CompositorContext() { }, CkMaskFilter: function CkMaskFilter(t0, t1) { this._blurStyle = t0; this.__engine$_sigma = t1; this.rawSkiaObject = null; }, CkNWayCanvas: function CkNWayCanvas(t0) { this._canvases = t0; }, CkPaint: function CkPaint(t0, t1, t2, t3, t4, t5) { var _ = this; _._blendMode = t0; _._style = t1; _._strokeWidth = 0; _._strokeCap = t2; _._strokeJoin = t3; _._isAntiAlias = true; _.__engine$_color = t4; _.__engine$_invertColors = false; _._ckMaskFilter = _._maskFilter = _._shader = _._originalColorFilter = null; _.__engine$_filterQuality = t5; _.rawSkiaObject = _._managedImageFilter = _._imageFilter = _._effectiveColorFilter = null; }, CkPath: function CkPath(t0) { this._fillType = t0; this.rawSkiaObject = this._cachedCommands = null; }, CkPicture: function CkPicture(t0, t1) { var _ = this; _.cullRect = t0; _._snapshot = t1; _._isDisposed = false; _.rawSkiaObject = _._debugDisposalStackTrace = null; }, CkPictureRecorder: function CkPictureRecorder() { this._recordingCanvas = this._skRecorder = this._cullRect = null; }, Rasterizer: function Rasterizer(t0, t1) { this.context = t0; this._postFrameCallbacks = t1; }, CkShader: function CkShader() { }, CkGradientLinear: function CkGradientLinear(t0, t1, t2, t3, t4, t5) { var _ = this; _.from = t0; _.to = t1; _.colors = t2; _.colorStops = t3; _.tileMode = t4; _.matrix4 = t5; _.rawSkiaObject = null; }, SkiaObjectCache: function SkiaObjectCache(t0, t1, t2) { this.maximumSize = t0; this._itemQueue = t1; this._itemMap = t2; }, SynchronousSkiaObjectCache: function SynchronousSkiaObjectCache(t0, t1, t2) { this.maximumSize = t0; this._itemQueue = t1; this._itemMap = t2; }, SkiaObject: function SkiaObject() { }, ManagedSkiaObject: function ManagedSkiaObject() { }, SkiaObjectBox: function SkiaObjectBox(t0, t1, t2) { var _ = this; _._refCount = 1; _.debugReferrers = t0; _._skDeletable = _.rawSkiaObject = null; _._resurrector = t1; _._isDeletedPermanently = false; _.$ti = t2; }, SurfaceFrame: function SurfaceFrame(t0, t1) { this.skiaSurface = t0; this.submitCallback = t1; }, Surface: function Surface(t0) { var _ = this; _.__engine$_surface = null; _._forceNewContext = true; _._contextLost = false; _._skiaCacheBytes = _._glContext = _._grContext = _._cachedContextRestoredListener = _._cachedContextLostListener = null; _.htmlElement = t0; _.htmlCanvas = null; _._pixelHeight = _._pixelWidth = -1; _._addedToScene = false; _._currentSurfaceSize = _._currentCanvasPhysicalSize = null; _._currentDevicePixelRatio = -1; }, Surface_acquireFrame_closure: function Surface_acquireFrame_closure(t0) { this.$this = t0; }, CkSurface: function CkSurface(t0, t1) { this.surface = t0; this._glContext = t1; this._isDisposed = false; }, SurfaceFactory: function SurfaceFactory(t0, t1, t2, t3, t4) { var _ = this; _.baseSurface = t0; _.backupSurface = t1; _.maximumSurfaces = t2; _._liveSurfaces = t3; _.__engine$_cache = t4; }, CkParagraphStyle: function CkParagraphStyle(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.skParagraphStyle = t0; _.__engine$_textDirection = t1; _._fontFamily = t2; _.__engine$_fontSize = t3; _.__engine$_height = t4; _._fontWeight = t5; _._fontStyle = t6; _._leadingDistribution = t7; }, CkTextStyle: function CkTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.color = t0; _.decoration = t1; _.decorationColor = t2; _.decorationStyle = t3; _.decorationThickness = t4; _.fontWeight = t5; _.fontStyle = t6; _.textBaseline = t7; _.fontFamily = t8; _.fontFamilyFallback = t9; _.fontSize = t10; _.letterSpacing = t11; _.wordSpacing = t12; _.height = t13; _.leadingDistribution = t14; _.locale = t15; _.background = t16; _.foreground = t17; _.shadows = t18; _.fontFeatures = t19; _.__CkTextStyle_skTextStyle = _.__CkTextStyle_effectiveFontFamilies = $; }, CkTextStyle_skTextStyle_closure: function CkTextStyle_skTextStyle_closure(t0) { this.$this = t0; }, CkStrutStyle: function CkStrutStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._fontFamily = t0; _._fontFamilyFallback = t1; _.__engine$_fontSize = t2; _.__engine$_height = t3; _._leading = t4; _._fontWeight = t5; _._fontStyle = t6; _._forceStrutHeight = t7; _._leadingDistribution = t8; }, CkParagraph: function CkParagraph(t0, t1, t2) { var _ = this; _._skParagraph = t0; _._paragraphStyle = t1; _._paragraphCommands = t2; _._lastLayoutConstraints = null; _._alphabeticBaseline = 0; _._didExceedMaxLines = false; _.__engine$_width = _._minIntrinsicWidth = _._maxIntrinsicWidth = _._longestLine = _._ideographicBaseline = _.__engine$_height = 0; _._boxesForPlaceholders = null; }, CkLineMetrics: function CkLineMetrics(t0) { this.skLineMetrics = t0; }, CkParagraphBuilder: function CkParagraphBuilder(t0, t1, t2, t3, t4) { var _ = this; _._paragraphBuilder = t0; _._style = t1; _._commands = t2; _._placeholderCount = 0; _._placeholderScales = t3; _._styleStack = t4; }, _CkParagraphPlaceholder: function _CkParagraphPlaceholder(t0, t1, t2, t3, t4) { var _ = this; _.width = t0; _.height = t1; _.alignment = t2; _.baseline = t3; _.offset = t4; }, _ParagraphCommand: function _ParagraphCommand(t0, t1, t2, t3) { var _ = this; _.type = t0; _.text = t1; _.style = t2; _.placeholderStyle = t3; }, _ParagraphCommandType: function _ParagraphCommandType(t0, t1) { this.index = t0; this._core$_name = t1; }, _getEffectiveFontFamilies_closure: function _getEffectiveFontFamilies_closure(t0) { this.fontFamily = t0; }, CanvasKitError: function CanvasKitError(t0) { this.message = t0; }, ClipboardMessageHandler: function ClipboardMessageHandler(t0, t1) { this._copyToClipboardStrategy = t0; this._pasteFromClipboardStrategy = t1; }, ClipboardMessageHandler_setDataMethodCall_closure: function ClipboardMessageHandler_setDataMethodCall_closure(t0, t1) { this._box_0 = t0; this.callback = t1; }, ClipboardMessageHandler_setDataMethodCall_closure0: function ClipboardMessageHandler_setDataMethodCall_closure0(t0, t1) { this._box_0 = t0; this.callback = t1; }, ClipboardMessageHandler_getDataMethodCall_closure: function ClipboardMessageHandler_getDataMethodCall_closure(t0) { this.callback = t0; }, ClipboardMessageHandler_getDataMethodCall_closure0: function ClipboardMessageHandler_getDataMethodCall_closure0(t0, t1) { this.$this = t0; this.callback = t1; }, ClipboardMessageHandler_getDataMethodCall__closure: function ClipboardMessageHandler_getDataMethodCall__closure(t0) { this.callback = t0; }, ClipboardAPICopyStrategy: function ClipboardAPICopyStrategy() { }, ClipboardAPIPasteStrategy: function ClipboardAPIPasteStrategy() { }, ExecCommandCopyStrategy: function ExecCommandCopyStrategy() { }, ExecCommandPasteStrategy: function ExecCommandPasteStrategy() { }, FlutterConfiguration: function FlutterConfiguration(t0) { this._js = t0; }, JsFlutterConfiguration: function JsFlutterConfiguration() { }, FlutterViewEmbedder: function FlutterViewEmbedder(t0) { var _ = this; _._glassPaneShadow = _._glassPaneElement = _._staleHotRestartState = _._sceneElement = _._semanticsHostElement = _._resourcesHost = _._sceneHostElement = _._viewportMeta = _._styleElement = _._localeSubscription = _._resizeSubscription = null; _.rootElement = t0; }, FlutterViewEmbedder_reset_closure: function FlutterViewEmbedder_reset_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.initialInnerWidth = t2; }, FlutterViewEmbedder_setPreferredOrientation_closure: function FlutterViewEmbedder_setPreferredOrientation_closure(t0) { this.completer = t0; }, FlutterViewEmbedder_setPreferredOrientation_closure0: function FlutterViewEmbedder_setPreferredOrientation_closure0(t0) { this.completer = t0; }, EngineCanvas: function EngineCanvas() { }, SaveStackEntry: function SaveStackEntry(t0, t1) { this.transform = t0; this.clipStack = t1; }, SaveClipEntry: function SaveClipEntry(t0, t1, t2, t3) { var _ = this; _.rect = t0; _.rrect = t1; _.path = t2; _.currentTransform = t3; }, _SaveElementStackEntry: function _SaveElementStackEntry(t0, t1) { this.savedElement = t0; this.transform = t1; }, SaveElementStackTracking: function SaveElementStackTracking() { }, sendFontChangeMessage_closure: function sendFontChangeMessage_closure() { }, sendFontChangeMessage__closure: function sendFontChangeMessage__closure() { }, FrameReference: function FrameReference(t0, t1) { this.value = t0; this.$ti = t1; }, CrossFrameCache: function CrossFrameCache(t0) { this._reusablePool = this.__engine$_cache = null; this.$ti = t0; }, _CrossFrameCacheItem: function _CrossFrameCacheItem(t0, t1, t2) { this.value = t0; this.evictCallback = t1; this.$ti = t2; }, ShadowDomHostNode: function ShadowDomHostNode() { this.__ShadowDomHostNode__shadow = $; }, ElementHostNode: function ElementHostNode() { this.__ElementHostNode__element = $; }, PersistedBackdropFilter: function PersistedBackdropFilter(t0, t1, t2, t3) { var _ = this; _.filter = t0; _._activeClipBounds = _._filterElement = _._childContainer = null; _.__PersistedBackdropFilter__invertedTransform = $; _._previousTransform = null; _.__engine$_children = t1; _._oldLayer = t2; _.__engine$_index = -1; _.__engine$_state = t3; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, BitmapCanvas: function BitmapCanvas(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._bounds = t0; _._elementCache = null; _.rootElement = t1; _._canvasPool = t2; _._cachedLastCssFont = null; _.__engine$_children = t3; _.widthInBitmapPixels = t4; _.heightInBitmapPixels = t5; _._saveCount = 0; _.__engine$_devicePixelRatio = t6; _._canvasPositionY = _._canvasPositionX = null; _._preserveImageData = _._contains3dTransform = _._childOverdraw = false; _._density = t7; _._renderStrategy = t8; }, SvgBlendMode: function SvgBlendMode(t0) { this.blendMode = t0; }, SurfaceCanvas: function SurfaceCanvas(t0) { this.__engine$_canvas = t0; }, _DomClip: function _DomClip() { }, PersistedClipRect: function PersistedClipRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.clipBehavior = t0; _.rect = t1; _._DomClip__childContainer = t2; _.__engine$_children = t3; _._oldLayer = t4; _.__engine$_index = -1; _.__engine$_state = t5; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, PersistedClipRRect: function PersistedClipRRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rrect = t0; _.clipBehavior = t1; _._DomClip__childContainer = t2; _.__engine$_children = t3; _._oldLayer = t4; _.__engine$_index = -1; _.__engine$_state = t5; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, PersistedPhysicalShape: function PersistedPhysicalShape(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.path = t0; _.pathBounds = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.clipBehavior = t5; _._svgElement = _._clipElement = null; _._DomClip__childContainer = t6; _.__engine$_children = t7; _._oldLayer = t8; _.__engine$_index = -1; _.__engine$_state = t9; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, PersistedClipPath: function PersistedClipPath(t0, t1, t2, t3, t4) { var _ = this; _.clipPath = t0; _.clipBehavior = t1; _._clipElement = null; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, SvgFilterBuilder: function SvgFilterBuilder(t0, t1, t2) { this.id = t0; this.root = t1; this.filter = t2; }, SvgFilter: function SvgFilter(t0, t1) { this.id = t0; this.element = t1; }, DomCanvas: function DomCanvas(t0, t1, t2, t3) { var _ = this; _.rootElement = t0; _.SaveElementStackTracking__saveStack = t1; _.SaveElementStackTracking__elementStack = t2; _.SaveElementStackTracking__currentTransform = t3; }, PersistedOffset: function PersistedOffset(t0, t1, t2, t3, t4) { var _ = this; _.dx = t0; _.dy = t1; _._localTransformInverse = null; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, PersistedOpacity: function PersistedOpacity(t0, t1, t2, t3, t4) { var _ = this; _.alpha = t0; _.offset = t1; _._localTransformInverse = null; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, SurfacePaint: function SurfacePaint(t0) { this._paintData = t0; this._frozen = false; }, SurfacePaintData: function SurfacePaintData() { var _ = this; _.strokeJoin = _.strokeCap = _.strokeWidth = _.style = _.blendMode = null; _.isAntiAlias = true; _.colorFilter = _.filterQuality = _.maskFilter = _.shader = _.color = null; }, Conic: function Conic(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.p0x = t0; _.p0y = t1; _.p1x = t2; _.p1y = t3; _.p2x = t4; _.p2y = t5; _.fW = t6; }, QuadBounds: function QuadBounds() { var _ = this; _.maxY = _.maxX = _.minY = _.minX = 0; }, ConicBounds: function ConicBounds() { var _ = this; _.maxY = _.maxX = _.minY = _.minX = 0; }, _ConicPair: function _ConicPair() { this.second = this.first = null; }, CubicBounds: function CubicBounds() { var _ = this; _.maxY = _.minY = _.maxX = _.minX = 0; }, SurfacePath: function SurfacePath(t0, t1) { var _ = this; _.pathRef = t0; _._fillType = t1; _.fLastMoveToIndex = 0; _._firstDirection = _._convexityType = -1; }, PathIterator: function PathIterator(t0, t1, t2) { var _ = this; _.pathRef = t0; _._forceClose = t1; _._verbCount = t2; _._needClose = false; _._segmentState = 0; _._conicWeightIndex = -1; _._pointIndex = _._verbIndex = _._moveToY = _._moveToX = _._lastPointY = _._lastPointX = 0; }, PathRef: function PathRef(t0, t1) { var _ = this; _.cachedBounds = _.fBounds = null; _._fVerbsCapacity = _._fPointsLength = _._fPointsCapacity = 0; _.fPoints = t0; _._fVerbs = t1; _._conicWeightsCapacity = _._fVerbsLength = 0; _._conicWeights = null; _._conicWeightsLength = 0; _.fIsFinite = _.fBoundsIsDirty = true; _.fRRectOrOvalIsCCW = _.fIsRect = _.fIsRRect = _.fIsOval = false; _.fRRectOrOvalStartIdx = -1; _.fSegmentMask = 0; }, PathRefIterator: function PathRefIterator(t0) { var _ = this; _.pathRef = t0; _._conicWeightIndex = -1; _.iterIndex = _._pointIndex = _._verbIndex = 0; }, QuadRoots: function QuadRoots() { this.root1 = this.root0 = null; }, SkQuadCoefficients: function SkQuadCoefficients(t0, t1, t2, t3, t4, t5) { var _ = this; _.ax = t0; _.ay = t1; _.bx = t2; _.by = t3; _.cx = t4; _.cy = t5; }, PathWinding: function PathWinding(t0, t1, t2, t3) { var _ = this; _.pathRef = t0; _.x = t1; _.y = t2; _._onCurveCount = _._w = 0; _.__engine$_buffer = t3; }, PaintRequest: function PaintRequest(t0, t1) { this.canvasSize = t0; this.paintCallback = t1; }, PersistedPicture: function PersistedPicture(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.__engine$_canvas = null; _.dx = t0; _.dy = t1; _.picture = t2; _.localPaintBounds = t3; _._density = 1; _._requiresRepaint = false; _._elementCache = t4; _._exactLocalCullRect = _._exactGlobalCullRect = _._optimalLocalCullRect = null; _._oldLayer = t5; _.__engine$_index = -1; _.__engine$_state = t6; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, PersistedPicture__applyBitmapPaint_closure: function PersistedPicture__applyBitmapPaint_closure(t0) { this.$this = t0; }, PersistedPlatformView: function PersistedPlatformView(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.viewId = t0; _.dx = t1; _.dy = t2; _.width = t3; _.height = t4; _._oldLayer = t5; _.__engine$_index = -1; _.__engine$_state = t6; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, RecordingCanvas: function RecordingCanvas(t0, t1, t2) { var _ = this; _._paintBounds = t0; _._pictureBounds = null; _._commands = t1; _.renderStrategy = t2; _._recordingEnded = _._didDraw = false; _._saveCount = 1; }, PaintCommand: function PaintCommand() { }, DrawCommand: function DrawCommand() { }, PaintSave: function PaintSave() { }, PaintRestore: function PaintRestore() { }, PaintTranslate: function PaintTranslate(t0, t1) { this.dx = t0; this.dy = t1; }, PaintScale: function PaintScale(t0, t1) { this.sx = t0; this.sy = t1; }, PaintRotate: function PaintRotate(t0) { this.radians = t0; }, PaintTransform: function PaintTransform(t0) { this.matrix4 = t0; }, PaintClipRect: function PaintClipRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rect = t0; _.clipOp = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintClipRRect: function PaintClipRRect(t0, t1, t2, t3, t4) { var _ = this; _.rrect = t0; _.isClippedOut = false; _.leftBound = t1; _.topBound = t2; _.rightBound = t3; _.bottomBound = t4; }, PaintClipPath: function PaintClipPath(t0, t1, t2, t3, t4) { var _ = this; _.path = t0; _.isClippedOut = false; _.leftBound = t1; _.topBound = t2; _.rightBound = t3; _.bottomBound = t4; }, PaintDrawLine: function PaintDrawLine(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.p1 = t0; _.p2 = t1; _.paint = t2; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawRect: function PaintDrawRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rect = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawRRect: function PaintDrawRRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rrect = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawDRRect: function PaintDrawDRRect(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.outer = t0; _.inner = t1; _.paint = t2; _.path = null; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawCircle: function PaintDrawCircle(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.c = t0; _.radius = t1; _.paint = t2; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawPath: function PaintDrawPath(t0, t1, t2, t3, t4, t5) { var _ = this; _.path = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawShadow: function PaintDrawShadow(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.path = t0; _.color = t1; _.elevation = t2; _.transparentOccluder = t3; _.isClippedOut = false; _.leftBound = t4; _.topBound = t5; _.rightBound = t6; _.bottomBound = t7; }, PaintDrawImageRect: function PaintDrawImageRect(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.image = t0; _.src = t1; _.dst = t2; _.paint = t3; _.isClippedOut = false; _.leftBound = t4; _.topBound = t5; _.rightBound = t6; _.bottomBound = t7; }, PaintDrawParagraph: function PaintDrawParagraph(t0, t1, t2, t3, t4, t5) { var _ = this; _.paragraph = t0; _.offset = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, _PaintBounds: function _PaintBounds(t0, t1, t2, t3) { var _ = this; _.maxPaintBounds = t0; _._didPaintInsideClipArea = false; _.__engine$_top = _.__engine$_left = 17976931348623157e292; _.__engine$_bottom = _.__engine$_right = -17976931348623157e292; _.__engine$_transforms = t1; _._clipStack = t2; _._currentMatrixIsIdentity = true; _._currentMatrix = t3; _._clipRectInitialized = false; _._currentClipBottom = _._currentClipRight = _._currentClipTop = _._currentClipLeft = 0; }, RenderStrategy: function RenderStrategy() { var _ = this; _.isInsideSvgFilterTree = _.hasArbitraryPaint = _.hasParagraphs = _.hasImageElements = false; }, _WebGlRenderer: function _WebGlRenderer() { }, SurfaceScene: function SurfaceScene(t0) { this.webOnlyRootElement = t0; }, PersistedScene: function PersistedScene(t0, t1, t2) { var _ = this; _._localTransformInverse = null; _.__engine$_children = t0; _._oldLayer = t1; _.__engine$_index = -1; _.__engine$_state = t2; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, SurfaceSceneBuilder: function SurfaceSceneBuilder(t0) { this._surfaceStack = t0; }, SurfaceSceneBuilder_build_closure: function SurfaceSceneBuilder_build_closure(t0) { this.$this = t0; }, SurfaceSceneBuilder_build_closure0: function SurfaceSceneBuilder_build_closure0(t0) { this.$this = t0; }, NormalizedGradient: function NormalizedGradient(t0, t1, t2, t3, t4) { var _ = this; _._thresholds = t0; _._bias = t1; _.__engine$_scale = t2; _.thresholdCount = t3; _.isOpaque = t4; }, NormalizedGradient_NormalizedGradient_closure: function NormalizedGradient_NormalizedGradient_closure() { }, EngineGradient: function EngineGradient() { }, GradientLinear: function GradientLinear(t0, t1, t2, t3, t4, t5) { var _ = this; _.from = t0; _.to = t1; _.colors = t2; _.colorStops = t3; _.tileMode = t4; _.matrix4 = t5; }, EngineImageFilter: function EngineImageFilter() { }, _MatrixEngineImageFilter: function _MatrixEngineImageFilter(t0, t1) { this.webMatrix = t0; this.filterQuality = t1; }, ShaderBuilder: function ShaderBuilder(t0, t1, t2, t3, t4) { var _ = this; _.declarations = t0; _._methods = t1; _.floatPrecision = null; _._uniformCounter = _._varyingCounter = _._attribCounter = 0; _.isWebGl2 = t2; _._isFragmentShader = t3; _._fragmentColorDeclaration = null; _.__engine$_buffer = t4; }, ShaderMethod: function ShaderMethod(t0, t1) { this.name = t0; this._statements = t1; this._indentLevel = 1; }, ShaderDeclaration: function ShaderDeclaration(t0, t1, t2) { this.name = t0; this.dataType = t1; this.storage = t2; }, commitScene_closure: function commitScene_closure() { }, PersistedSurfaceState: function PersistedSurfaceState(t0, t1) { this.index = t0; this._core$_name = t1; }, PersistedSurface: function PersistedSurface() { }, PersistedLeafSurface: function PersistedLeafSurface() { }, PersistedContainerSurface: function PersistedContainerSurface() { }, PersistedContainerSurface__matchChildren_closure: function PersistedContainerSurface__matchChildren_closure() { }, _PersistedSurfaceMatch: function _PersistedSurfaceMatch(t0, t1, t2) { this.newChild = t0; this.oldChildIndex = t1; this.matchQuality = t2; }, PrerollSurfaceContext: function PrerollSurfaceContext() { }, PersistedTransform: function PersistedTransform(t0, t1, t2, t3) { var _ = this; _._matrixStorage = t0; _._localTransformInverse = _._matrix4 = null; _.__engine$_children = t1; _._oldLayer = t2; _.__engine$_index = -1; _.__engine$_state = t3; _.localClipBounds = _.projectedClip = _.transform = _.parent = _.rootElement = null; }, HtmlCodec: function HtmlCodec(t0, t1) { this.src = t0; this.chunkCallback = t1; }, HtmlCodec_getNextFrame_closure: function HtmlCodec_getNextFrame_closure(t0, t1, t2) { this.$this = t0; this.imgElement = t1; this.completer = t2; }, HtmlCodec_getNextFrame_closure0: function HtmlCodec_getNextFrame_closure0(t0, t1) { this.$this = t0; this.completer = t1; }, HtmlCodec__decodeUsingOnLoad_closure: function HtmlCodec__decodeUsingOnLoad_closure(t0, t1, t2) { this._box_0 = t0; this.errorSubscription = t1; this.completer = t2; }, HtmlCodec__decodeUsingOnLoad_closure0: function HtmlCodec__decodeUsingOnLoad_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.errorSubscription = t2; _.imgElement = t3; _.completer = t4; }, HtmlBlobCodec: function HtmlBlobCodec(t0, t1) { this.src = t0; this.chunkCallback = t1; }, SingleFrameInfo: function SingleFrameInfo(t0) { this.image = t0; }, HtmlImage: function HtmlImage(t0, t1, t2) { var _ = this; _.imgElement = t0; _._disposed = _._requiresClone = false; _.width = t1; _.height = t2; }, DebugEngineInitializationState: function DebugEngineInitializationState(t0, t1) { this.index = t0; this._core$_name = t1; }, initializeEngineServices_closure: function initializeEngineServices_closure() { }, initializeEngineServices_closure0: function initializeEngineServices_closure0() { }, initializeEngineServices_closure1: function initializeEngineServices_closure1(t0) { this._box_0 = t0; }, initializeEngineServices__closure: function initializeEngineServices__closure(t0) { this._box_0 = t0; }, _addUrlStrategyListener_closure: function _addUrlStrategyListener_closure() { }, _addUrlStrategyListener_closure0: function _addUrlStrategyListener_closure0() { }, FlutterEngineInitializer: function FlutterEngineInitializer() { }, InitializeEngineFnParameters: function InitializeEngineFnParameters() { }, FlutterAppRunner: function FlutterAppRunner() { }, RunAppFnParameters: function RunAppFnParameters() { }, FlutterApp: function FlutterApp() { }, Promise: function Promise() { }, Keyboard: function Keyboard(t0, t1) { var _ = this; _._keydownTimers = t0; _._keyupListener = _._keydownListener = null; _._lastMetaState = 0; _._onMacOs = t1; }, Keyboard$__closure: function Keyboard$__closure(t0) { this.$this = t0; }, Keyboard$__closure0: function Keyboard$__closure0(t0) { this.$this = t0; }, Keyboard$__closure1: function Keyboard$__closure1(t0) { this.$this = t0; }, Keyboard__handleHtmlEvent_closure: function Keyboard__handleHtmlEvent_closure(t0, t1, t2) { this.$this = t0; this.timerKey = t1; this.event = t2; }, Keyboard__handleHtmlEvent_closure0: function Keyboard__handleHtmlEvent_closure0(t0) { this.event = t0; }, _kLogicalKeyToModifierGetter_closure: function _kLogicalKeyToModifierGetter_closure() { }, _kLogicalKeyToModifierGetter_closure0: function _kLogicalKeyToModifierGetter_closure0() { }, _kLogicalKeyToModifierGetter_closure1: function _kLogicalKeyToModifierGetter_closure1() { }, _kLogicalKeyToModifierGetter_closure2: function _kLogicalKeyToModifierGetter_closure2() { }, _kLogicalKeyToModifierGetter_closure3: function _kLogicalKeyToModifierGetter_closure3() { }, _kLogicalKeyToModifierGetter_closure4: function _kLogicalKeyToModifierGetter_closure4() { }, _kLogicalKeyToModifierGetter_closure5: function _kLogicalKeyToModifierGetter_closure5() { }, _kLogicalKeyToModifierGetter_closure6: function _kLogicalKeyToModifierGetter_closure6() { }, KeyboardBinding: function KeyboardBinding(t0) { this.__KeyboardBinding__converter = $; this._listeners = t0; }, KeyboardBinding__addEventListener_loggedHandler: function KeyboardBinding__addEventListener_loggedHandler(t0) { this.handler = t0; }, KeyboardBinding__onKeyData_closure: function KeyboardBinding__onKeyData_closure(t0) { this._box_0 = t0; }, KeyboardBinding__setup_closure: function KeyboardBinding__setup_closure(t0) { this.$this = t0; }, KeyboardBinding__setup_closure0: function KeyboardBinding__setup_closure0(t0) { this.$this = t0; }, FlutterHtmlKeyboardEvent: function FlutterHtmlKeyboardEvent(t0) { this._event = t0; }, KeyboardConverter: function KeyboardConverter(t0, t1, t2, t3) { var _ = this; _.performDispatchKeyData = t0; _.onMacOs = t1; _._dispatchKeyData = null; _._disposed = false; _._pressingRecords = t2; _._keyGuards = t3; }, KeyboardConverter__scheduleAsyncEvent_closure: function KeyboardConverter__scheduleAsyncEvent_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.callback = t2; _.getData = t3; }, KeyboardConverter__scheduleAsyncEvent_closure0: function KeyboardConverter__scheduleAsyncEvent_closure0(t0) { this._box_0 = t0; }, KeyboardConverter__startGuardingKey_closure: function KeyboardConverter__startGuardingKey_closure(t0, t1, t2) { this.currentTimeStamp = t0; this.physicalKey = t1; this.logicalKey = t2; }, KeyboardConverter__startGuardingKey_closure0: function KeyboardConverter__startGuardingKey_closure0(t0, t1) { this.$this = t0; this.physicalKey = t1; }, KeyboardConverter__handleEvent_closure: function KeyboardConverter__handleEvent_closure(t0, t1, t2, t3) { var _ = this; _.event = t0; _.character = t1; _.eventKey = t2; _.physicalKey = t3; }, KeyboardConverter__handleEvent_closure0: function KeyboardConverter__handleEvent_closure0(t0, t1, t2) { this.timeStamp = t0; this.physicalKey = t1; this.logicalKey = t2; }, KeyboardConverter__handleEvent_closure1: function KeyboardConverter__handleEvent_closure1(t0, t1) { this.$this = t0; this.physicalKey = t1; }, KeyboardConverter__handleEvent_closure2: function KeyboardConverter__handleEvent_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.logicalKey = t1; _.event = t2; _.timeStamp = t3; }, KeyboardConverter__handleEvent__closure: function KeyboardConverter__handleEvent__closure(t0, t1, t2) { this.$this = t0; this.testeeLogicalKey = t1; this.timeStamp = t2; }, KeyboardConverter_handleEvent_closure: function KeyboardConverter_handleEvent_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, MouseCursor: function MouseCursor() { }, BrowserHistory: function BrowserHistory() { }, MultiEntriesBrowserHistory: function MultiEntriesBrowserHistory(t0) { var _ = this; _.urlStrategy = t0; _.__BrowserHistory__unsubscribe = _.__MultiEntriesBrowserHistory__lastSeenSerialCount = $; _._isDisposed = _._isTornDown = false; }, MultiEntriesBrowserHistory_onPopState_closure: function MultiEntriesBrowserHistory_onPopState_closure() { }, SingleEntryBrowserHistory: function SingleEntryBrowserHistory(t0, t1) { var _ = this; _.urlStrategy = t0; _._flutterState = t1; _._userProvidedRouteName = null; _.__BrowserHistory__unsubscribe = $; _._isDisposed = _._isTornDown = false; }, SingleEntryBrowserHistory_onPopState_closure: function SingleEntryBrowserHistory_onPopState_closure() { }, SingleEntryBrowserHistory_onPopState_closure0: function SingleEntryBrowserHistory_onPopState_closure0() { }, JsUrlStrategy: function JsUrlStrategy() { }, UrlStrategy: function UrlStrategy() { }, HashUrlStrategy: function HashUrlStrategy() { }, HashUrlStrategy_addPopStateListener_closure: function HashUrlStrategy_addPopStateListener_closure(t0, t1) { this.$this = t0; this.fn = t1; }, HashUrlStrategy__waitForPopState_closure: function HashUrlStrategy__waitForPopState_closure(t0, t1) { this.unsubscribe = t0; this.completer = t1; }, CustomUrlStrategy: function CustomUrlStrategy(t0) { this.delegate = t0; }, PlatformLocation: function PlatformLocation() { }, BrowserPlatformLocation: function BrowserPlatformLocation() { }, EnginePictureRecorder: function EnginePictureRecorder() { this.__engine$_canvas = null; this.__EnginePictureRecorder_cullRect = $; this._isRecording = false; }, EnginePicture: function EnginePicture(t0) { this._disposed = false; this.recordingCanvas = t0; }, EnginePlatformDispatcher: function EnginePlatformDispatcher(t0, t1, t2, t3) { var _ = this; _._configuration = t0; _._windows = t1; _._windowConfigurations = t2; _._onTextScaleFactorChangedZone = _._onTextScaleFactorChanged = _._fontSizeObserver = _._onLocaleChanged = _._platformViewMessageHandler = _._onReportTimingsZone = _._onReportTimings = _._onKeyDataZone = _._onKeyData = _._onPointerDataPacketZone = _._onPointerDataPacket = _._onDrawFrameZone = _._onDrawFrame = _._onBeginFrameZone = _._onBeginFrame = _._onMetricsChangedZone = _._onMetricsChanged = null; _._brightnessMediaQuery = t3; _._defaultRouteName = _._onSemanticsActionZone = _._onSemanticsAction = _._onSemanticsEnabledChangedZone = _._onSemanticsEnabledChanged = _._onPlatformBrightnessChangedZone = _._onPlatformBrightnessChanged = _._brightnessMediaQueryListener = null; _.__EnginePlatformDispatcher_rasterizer = $; }, EnginePlatformDispatcher_invokeOnKeyData_closure: function EnginePlatformDispatcher_invokeOnKeyData_closure(t0, t1, t2) { this.callback = t0; this.onKeyData = t1; this.data = t2; }, EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure: function EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure(t0, t1) { this.registrationZone = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure: function EnginePlatformDispatcher__sendPlatformMessage_closure(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure0: function EnginePlatformDispatcher__sendPlatformMessage_closure0(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure1: function EnginePlatformDispatcher__sendPlatformMessage_closure1(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure2: function EnginePlatformDispatcher__sendPlatformMessage_closure2(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure3: function EnginePlatformDispatcher__sendPlatformMessage_closure3() { }, EnginePlatformDispatcher__sendPlatformMessage_closure4: function EnginePlatformDispatcher__sendPlatformMessage_closure4(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__addFontSizeObserver_closure: function EnginePlatformDispatcher__addFontSizeObserver_closure(t0) { this.$this = t0; }, EnginePlatformDispatcher__addFontSizeObserver_closure0: function EnginePlatformDispatcher__addFontSizeObserver_closure0(t0) { this.$this = t0; }, EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure: function EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure(t0) { this.$this = t0; }, EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0: function EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0(t0) { this.$this = t0; }, EnginePlatformDispatcher_replyToPlatformMessage_closure: function EnginePlatformDispatcher_replyToPlatformMessage_closure(t0, t1) { this.callback = t0; this.data = t1; }, invoke2_closure: function invoke2_closure(t0, t1, t2) { this.callback = t0; this.arg1 = t1; this.arg2 = t2; }, invoke3_closure: function invoke3_closure(t0, t1, t2, t3) { var _ = this; _.callback = t0; _.arg1 = t1; _.arg2 = t2; _.arg3 = t3; }, PlatformViewManager: function PlatformViewManager(t0, t1, t2, t3) { var _ = this; _._factories = t0; _.__engine$_contents = t1; _._invisibleViews = t2; _._viewIdToType = t3; }, PlatformViewManager_renderContent_closure: function PlatformViewManager_renderContent_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.slotName = t1; _.viewType = t2; _.viewId = t3; _.params = t4; }, PlatformViewMessageHandler: function PlatformViewMessageHandler(t0, t1) { this._contentManager = t0; this._contentHandler = t1; }, PointerBinding: function PointerBinding(t0, t1) { this.glassPaneElement = t0; this._pointerDataConverter = t1; this.__PointerBinding__adapter = $; }, PointerSupportDetector: function PointerSupportDetector() { }, _BaseAdapter: function _BaseAdapter() { }, _BaseAdapter_addEventListener_loggedHandler: function _BaseAdapter_addEventListener_loggedHandler(t0, t1, t2) { this.$this = t0; this.acceptOutsideGlasspane = t1; this.handler = t2; }, _WheelEventListenerMixin: function _WheelEventListenerMixin() { }, _WheelEventListenerMixin__addWheelEventListener_closure: function _WheelEventListenerMixin__addWheelEventListener_closure(t0) { this.handler = t0; }, _SanitizedDetails: function _SanitizedDetails(t0, t1) { this.change = t0; this.buttons = t1; }, _ButtonSanitizer: function _ButtonSanitizer() { this._pressedButtons = 0; }, _PointerAdapter: function _PointerAdapter(t0, t1, t2, t3) { var _ = this; _._sanitizers = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _PointerAdapter__ensureSanitizer_closure: function _PointerAdapter__ensureSanitizer_closure() { }, _PointerAdapter__addPointerEventListener_closure: function _PointerAdapter__addPointerEventListener_closure(t0) { this.handler = t0; }, _PointerAdapter_setup_closure: function _PointerAdapter_setup_closure(t0) { this.$this = t0; }, _PointerAdapter_setup_closure0: function _PointerAdapter_setup_closure0(t0) { this.$this = t0; }, _PointerAdapter_setup_closure1: function _PointerAdapter_setup_closure1(t0) { this.$this = t0; }, _PointerAdapter_setup_closure2: function _PointerAdapter_setup_closure2(t0) { this.$this = t0; }, _PointerAdapter_setup_closure3: function _PointerAdapter_setup_closure3(t0) { this.$this = t0; }, _TouchAdapter: function _TouchAdapter(t0, t1, t2, t3) { var _ = this; _._pressedTouches = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _TouchAdapter__addTouchEventListener_closure: function _TouchAdapter__addTouchEventListener_closure(t0) { this.handler = t0; }, _TouchAdapter_setup_closure: function _TouchAdapter_setup_closure(t0) { this.$this = t0; }, _TouchAdapter_setup_closure0: function _TouchAdapter_setup_closure0(t0) { this.$this = t0; }, _TouchAdapter_setup_closure1: function _TouchAdapter_setup_closure1(t0) { this.$this = t0; }, _TouchAdapter_setup_closure2: function _TouchAdapter_setup_closure2(t0) { this.$this = t0; }, _MouseAdapter: function _MouseAdapter(t0, t1, t2, t3) { var _ = this; _._sanitizer = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _MouseAdapter__addMouseEventListener_closure: function _MouseAdapter__addMouseEventListener_closure(t0) { this.handler = t0; }, _MouseAdapter_setup_closure: function _MouseAdapter_setup_closure(t0) { this.$this = t0; }, _MouseAdapter_setup_closure0: function _MouseAdapter_setup_closure0(t0) { this.$this = t0; }, _MouseAdapter_setup_closure1: function _MouseAdapter_setup_closure1(t0) { this.$this = t0; }, _MouseAdapter_setup_closure2: function _MouseAdapter_setup_closure2(t0) { this.$this = t0; }, _PointerState: function _PointerState(t0, t1) { this._pointer = null; this.x = t0; this.y = t1; }, PointerDataConverter: function PointerDataConverter(t0) { this._pointers = t0; this._activeButtons = 0; }, PointerDataConverter__ensureStateForPointer_closure: function PointerDataConverter__ensureStateForPointer_closure(t0, t1) { this.x = t0; this.y = t1; }, Profiler: function Profiler() { }, JsPromise: function JsPromise() { }, ImageDecoder: function ImageDecoder() { }, ImageDecoderOptions: function ImageDecoderOptions() { }, DecodeResult: function DecodeResult() { }, DecodeOptions: function DecodeOptions() { }, VideoFrame: function VideoFrame() { }, ImageTrackList: function ImageTrackList() { }, ImageTrack: function ImageTrack() { }, GlProgram: function GlProgram(t0) { this.program = t0; }, GlContext: function GlContext(t0) { var _ = this; _.glContext = t0; _._heightInPixels = _._widthInPixels = _.__engine$_canvas = _._kUnsignedShort = _._kUnsignedByte = _._kLinkStatus = _._kTriangles = _._kColorBufferBit = _._kFloat = _._kStaticDraw = _._kElementArrayBuffer = _._kArrayBuffer = _._kCompileStatus = null; }, OffScreenCanvas: function OffScreenCanvas(t0, t1) { var _ = this; _.canvasElement = _.offScreenCanvas = null; _.width = t0; _.height = t1; }, AccessibilityAnnouncements: function AccessibilityAnnouncements() { this.__engine$_element = this._removeElementTimer = null; }, AccessibilityAnnouncements$__closure: function AccessibilityAnnouncements$__closure(t0) { this.$this = t0; }, AccessibilityAnnouncements_handleMessage_closure: function AccessibilityAnnouncements_handleMessage_closure(t0) { this.$this = t0; }, _CheckableKind: function _CheckableKind(t0, t1) { this.index = t0; this._core$_name = t1; }, Checkable: function Checkable(t0, t1) { this.__engine$_kind = t0; this.semanticsObject = t1; }, ImageRoleManager: function ImageRoleManager(t0) { this._auxiliaryImageElement = null; this.semanticsObject = t0; }, Incrementable: function Incrementable(t0, t1) { var _ = this; _.__engine$_element = t0; _._currentSurrogateValue = 1; _._gestureModeListener = null; _._pendingResync = false; _.semanticsObject = t1; }, Incrementable_closure: function Incrementable_closure(t0, t1) { this.$this = t0; this.semanticsObject = t1; }, Incrementable_closure0: function Incrementable_closure0(t0) { this.$this = t0; }, LabelAndValue: function LabelAndValue(t0) { this._auxiliaryValueElement = null; this.semanticsObject = t0; }, LiveRegion: function LiveRegion(t0) { this.semanticsObject = t0; }, Scrollable0: function Scrollable0(t0) { var _ = this; _._scrollListener = _._gestureModeListener = null; _._effectiveNeutralScrollPosition = 0; _.semanticsObject = t0; }, Scrollable_update_closure: function Scrollable_update_closure(t0) { this.$this = t0; }, Scrollable_update_closure0: function Scrollable_update_closure0(t0) { this.$this = t0; }, Scrollable_update_closure1: function Scrollable_update_closure1(t0) { this.$this = t0; }, SemanticsUpdate: function SemanticsUpdate(t0) { this.__engine$_nodeUpdates = t0; }, SemanticsNodeUpdate: function SemanticsNodeUpdate(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.id = t0; _.flags = t1; _.actions = t2; _.textSelectionBase = t3; _.textSelectionExtent = t4; _.scrollChildren = t5; _.scrollIndex = t6; _.scrollPosition = t7; _.scrollExtentMax = t8; _.scrollExtentMin = t9; _.rect = t10; _.label = t11; _.labelAttributes = t12; _.hint = t13; _.hintAttributes = t14; _.value = t15; _.valueAttributes = t16; _.increasedValue = t17; _.increasedValueAttributes = t18; _.decreasedValue = t19; _.decreasedValueAttributes = t20; _.tooltip = t21; _.textDirection = t22; _.transform = t23; _.childrenInTraversalOrder = t24; _.childrenInHitTestOrder = t25; _.additionalActions = t26; _.thickness = t27; }, Role: function Role(t0, t1) { this.index = t0; this._core$_name = t1; }, _roleFactories_closure: function _roleFactories_closure() { }, _roleFactories_closure0: function _roleFactories_closure0() { }, _roleFactories_closure1: function _roleFactories_closure1() { }, _roleFactories_closure2: function _roleFactories_closure2() { }, _roleFactories_closure3: function _roleFactories_closure3() { }, _roleFactories_closure4: function _roleFactories_closure4() { }, _roleFactories_closure5: function _roleFactories_closure5() { }, _roleFactories_closure6: function _roleFactories_closure6() { }, RoleManager: function RoleManager() { }, SemanticsObject: function SemanticsObject(t0, t1, t2, t3) { var _ = this; _.__engine$_flags = 0; _._tooltip = _._additionalActions = _._childrenInHitTestOrder = _.__engine$_childrenInTraversalOrder = _.__engine$_transform = _.__engine$_textDirection = _._decreasedValueAttributes = _._decreasedValue = _._increasedValueAttributes = _._increasedValue = _._valueAttributes = _.__engine$_value = _._hintAttributes = _._hint = _._labelAttributes = _.__engine$_label = _.__engine$_rect = _.__engine$_scrollExtentMin = _.__engine$_scrollExtentMax = _.__engine$_scrollPosition = _.__engine$_scrollIndex = _._scrollChildren = _._textSelectionExtent = _._textSelectionBase = _.__engine$_actions = null; _.id = t0; _.owner = t1; _.element = t2; _._dirtyFields = -1; _.__engine$_parent = _._childContainerElement = null; _._roleManagers = t3; _.horizontalContainerAdjustment = _.verticalContainerAdjustment = 0; _._previousChildrenInTraversalOrder = null; }, AccessibilityMode: function AccessibilityMode(t0, t1) { this.index = t0; this._core$_name = t1; }, GestureMode: function GestureMode(t0, t1) { this.index = t0; this._core$_name = t1; }, EngineSemanticsOwner: function EngineSemanticsOwner(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._semanticsTree = t0; _._attachments = t1; _._detachments = t2; _._oneTimePostUpdateCallbacks = t3; _._rootSemanticsElement = null; _._now = t4; _.semanticsHelper = t5; _._semanticsEnabled = false; _._gestureMode = t6; _._gestureModeClock = null; _._gestureModeListeners = t7; }, EngineSemanticsOwner$__closure: function EngineSemanticsOwner$__closure(t0) { this.$this = t0; }, EngineSemanticsOwner__now_closure: function EngineSemanticsOwner__now_closure() { }, EngineSemanticsOwner__getGestureModeClock_closure: function EngineSemanticsOwner__getGestureModeClock_closure(t0) { this.$this = t0; }, EnabledState: function EnabledState(t0, t1) { this.index = t0; this._core$_name = t1; }, SemanticsHelper: function SemanticsHelper(t0) { this._semanticsEnabler = t0; }, SemanticsEnabler: function SemanticsEnabler() { }, DesktopSemanticsEnabler: function DesktopSemanticsEnabler() { this._semanticsPlaceholder = null; }, DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure: function DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure(t0) { this.$this = t0; }, MobileSemanticsEnabler: function MobileSemanticsEnabler() { var _ = this; _._semanticsPlaceholder = _.semanticsActivationTimer = null; _.semanticsActivationAttempts = 0; _._schedulePlaceholderRemoval = false; }, MobileSemanticsEnabler_tryEnableSemantics_closure: function MobileSemanticsEnabler_tryEnableSemantics_closure(t0) { this.$this = t0; }, MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure: function MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure(t0) { this.$this = t0; }, Tappable: function Tappable(t0) { this._clickListener = null; this.semanticsObject = t0; }, Tappable_update_closure: function Tappable_update_closure(t0) { this.$this = t0; }, SemanticsTextEditingStrategy: function SemanticsTextEditingStrategy(t0, t1) { var _ = this; _._queuedStyle = _.inputConfig = _.activeTextField = null; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, TextField0: function TextField0(t0) { this.__TextField_editableElement = $; this._hasFocused = false; this.semanticsObject = t0; }, TextField__initializeForBlink_closure: function TextField__initializeForBlink_closure(t0) { this.$this = t0; }, TextField__initializeForWebkit_closure: function TextField__initializeForWebkit_closure(t0) { this._box_0 = t0; }, TextField__initializeForWebkit_closure0: function TextField__initializeForWebkit_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, TextField_update_closure: function TextField_update_closure(t0) { this.$this = t0; }, _TypedDataBuffer: function _TypedDataBuffer() { }, _IntBuffer: function _IntBuffer() { }, Uint8Buffer: function Uint8Buffer(t0, t1) { this.__engine$_buffer = t0; this.__engine$_length = t1; }, MethodCall: function MethodCall(t0, t1) { this.method = t0; this.$arguments = t1; }, JSONMessageCodec: function JSONMessageCodec() { }, JSONMethodCodec: function JSONMethodCodec() { }, StandardMessageCodec: function StandardMessageCodec() { }, StandardMessageCodec_writeValue_closure0: function StandardMessageCodec_writeValue_closure0(t0, t1) { this.$this = t0; this.buffer = t1; }, StandardMethodCodec: function StandardMethodCodec() { }, WriteBuffer0: function WriteBuffer0(t0, t1, t2) { var _ = this; _._debugFinalized = false; _.__engine$_buffer = t0; _.__engine$_eightBytes = t1; _.__engine$_eightBytesAsList = t2; }, ReadBuffer0: function ReadBuffer0(t0) { this.data = t0; this.__engine$_position = 0; }, SurfaceShadowData: function SurfaceShadowData(t0, t1) { this.blurWidth = t0; this.offset = t1; }, CanvasParagraph: function CanvasParagraph(t0, t1, t2, t3) { var _ = this; _.spans = t0; _.paragraphStyle = t1; _.plainText = t2; _.drawOnCanvas = t3; _.isLaidOut = false; _._lastUsedConstraints = null; _.__CanvasParagraph__paintService = _.__CanvasParagraph__layoutService = $; _._cachedDomElement = null; }, FlatTextSpan: function FlatTextSpan(t0, t1, t2) { this.style = t0; this.start = t1; this.end = t2; }, PlaceholderSpan0: function PlaceholderSpan0(t0, t1, t2, t3, t4) { var _ = this; _.end = t0; _.width = t1; _.height = t2; _.alignment = t3; _.baselineOffset = t4; }, StyleNode: function StyleNode() { }, ChildStyleNode: function ChildStyleNode(t0, t1) { this.parent = t0; this.style = t1; this._cachedStyle = null; }, RootStyleNode: function RootStyleNode(t0) { this.paragraphStyle = t0; this._cachedStyle = null; }, CanvasParagraphBuilder: function CanvasParagraphBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _._plainTextBuffer = t0; _._paragraphStyle = t1; _._spans = t2; _._styleStack = t3; _._rootStyleNode = t4; _._placeholderCount = 0; _._placeholderScales = t5; _._drawOnCanvas = true; }, FontCollection: function FontCollection() { this._testFontManager = this._assetFontManager = null; }, FontManager: function FontManager(t0) { this._fontLoadingFutures = t0; }, FontManager__loadFontFace_closure: function FontManager__loadFontFace_closure(t0) { this.fontFace = t0; }, FontManager__loadFontFace_closure0: function FontManager__loadFontFace_closure0(t0) { this.family = t0; }, _PolyfillFontManager: function _PolyfillFontManager(t0) { this._fontLoadingFutures = t0; }, _PolyfillFontManager_registerAsset__watchWidth: function _PolyfillFontManager_registerAsset__watchWidth(t0, t1, t2, t3, t4) { var _ = this; _.paragraph = t0; _.sansSerifWidth = t1; _.completer = t2; _._fontLoadStart = t3; _.family = t4; }, _PolyfillFontManager_registerAsset_closure: function _PolyfillFontManager_registerAsset_closure(t0) { this.fontStyleMap = t0; }, TextLayoutService: function TextLayoutService(t0, t1, t2) { var _ = this; _.paragraph = t0; _.context = t1; _.width = -1; _.height = 0; _.longestLine = null; _.maxIntrinsicWidth = _.minIntrinsicWidth = 0; _.ideographicBaseline = _.alphabeticBaseline = -1; _.didExceedMaxLines = false; _.lines = t2; }, RangeBox: function RangeBox() { }, PlaceholderBox: function PlaceholderBox(t0, t1, t2, t3, t4) { var _ = this; _.placeholder = t0; _.start = t1; _.end = t2; _.__RangeBox_lineWidth = _.__RangeBox_startOffset = $; _.paragraphDirection = t3; _.boxDirection = t4; }, SpanBox: function SpanBox(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.spanometer = t0; _.span = t1; _.contentDirection = t2; _.isSpaceOnly = t3; _._isTrailingSpace = false; _.__engine$_width = t4; _.height = t5; _.baseline = t6; _.start = t7; _.end = t8; _.__RangeBox_lineWidth = _.__RangeBox_startOffset = $; _.paragraphDirection = t9; _.boxDirection = t10; }, LineSegment: function LineSegment(t0, t1, t2, t3, t4) { var _ = this; _.span = t0; _.start = t1; _.end = t2; _.width = t3; _.widthIncludingSpace = t4; }, LineBuilder: function LineBuilder(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._segments = t0; _._boxes = t1; _.maxWidth = t2; _.paragraph = t3; _.spanometer = t4; _.start = t5; _.lineNumber = t6; _.accumulatedHeight = t7; _.__engine$_end = t8; _.descent = _.ascent = _.widthIncludingSpace = _.width = 0; _.isBreakable = false; _._spaceBoxCount = 0; _.__LineBuilder__currentContentDirection = _.__LineBuilder__currentBoxDirection = $; _._trailingSpaceBoxCount = _._currentBoxStartOffset = 0; _._cachedNextBreak = null; }, Spanometer: function Spanometer(t0, t1) { var _ = this; _.paragraph = t0; _.context = t1; _._cssFontString = ""; _._currentSpan = _._currentRuler = null; }, LineCharProperty: function LineCharProperty(t0, t1) { this.index = t0; this._core$_name = t1; }, LineBreakType: function LineBreakType(t0, t1) { this.index = t0; this._core$_name = t1; }, LineBreakResult: function LineBreakResult(t0, t1, t2, t3) { var _ = this; _.index = t0; _.indexWithoutTrailingNewlines = t1; _.indexWithoutTrailingSpaces = t2; _.type = t3; }, RulerHost: function RulerHost(t0) { this._rulerHost = t0; }, TextPaintService: function TextPaintService(t0) { this.paragraph = t0; }, EngineLineMetrics: function EngineLineMetrics(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.ellipsis = t0; _.startIndex = t1; _.endIndex = t2; _.endIndexWithoutNewlines = t3; _.boxes = t4; _.spaceBoxCount = t5; _.trailingSpaceBoxCount = t6; _.hardBreak = t7; _.ascent = t8; _.descent = t9; _.height = t10; _.width = t11; _.widthWithTrailingSpaces = t12; _.left = t13; _.baseline = t14; _.lineNumber = t15; }, EngineParagraphStyle: function EngineParagraphStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.textAlign = t0; _.textDirection = t1; _.fontWeight = t2; _.fontStyle = t3; _.maxLines = t4; _.fontFamily = t5; _.fontSize = t6; _.height = t7; _._textHeightBehavior = t8; _.ellipsis = t9; _.locale = t10; }, EngineTextStyle: function EngineTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.color = t0; _.decoration = t1; _.decorationColor = t2; _.decorationStyle = t3; _.decorationThickness = t4; _.fontWeight = t5; _.fontStyle = t6; _.textBaseline = t7; _.isFontFamilyProvided = t8; _.fontFamily = t9; _.fontFamilyFallback = t10; _.fontFeatures = t11; _.fontVariations = t12; _.fontSize = t13; _.letterSpacing = t14; _.wordSpacing = t15; _.height = t16; _.locale = t17; _.background = t18; _.foreground = t19; _.shadows = t20; _._cssFontString = null; _.__EngineTextStyle_heightStyle = $; }, EngineStrutStyle: function EngineStrutStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._fontFamily = t0; _._fontFamilyFallback = t1; _.__engine$_fontSize = t2; _.__engine$_height = t3; _._leading = t4; _._fontWeight = t5; _._fontStyle = t6; _._forceStrutHeight = t7; _._leadingDistribution = t8; }, ParagraphPlaceholder: function ParagraphPlaceholder() { }, TextHeightStyle: function TextHeightStyle(t0, t1, t2, t3, t4) { var _ = this; _.fontFamily = t0; _.fontSize = t1; _.height = t2; _.fontFeatures = t3; _.fontVariations = t4; _.__TextHeightStyle_hashCode = $; }, TextDimensions: function TextDimensions(t0) { this.__engine$_element = t0; this._cachedBoundingClientRect = null; }, TextHeightRuler: function TextHeightRuler(t0, t1, t2) { var _ = this; _.textHeightStyle = t0; _.rulerHost = t1; _.__TextHeightRuler__host = _.__TextHeightRuler__probe = $; _._dimensions = t2; _.__TextHeightRuler_height = _.__TextHeightRuler_alphabeticBaseline = $; }, DirectionalPosition: function DirectionalPosition(t0, t1, t2) { this.lineBreak = t0; this.textDirection = t1; this.isSpaceOnly = t2; }, _ComparisonResult: function _ComparisonResult(t0, t1) { this.index = t0; this._core$_name = t1; }, UnicodeRange: function UnicodeRange(t0, t1, t2, t3) { var _ = this; _.start = t0; _.end = t1; _.property = t2; _.$ti = t3; }, UnicodePropertyLookup: function UnicodePropertyLookup(t0, t1, t2, t3) { var _ = this; _.ranges = t0; _.defaultProperty = t1; _.__engine$_cache = t2; _.$ti = t3; }, WordCharProperty: function WordCharProperty(t0, t1) { this.index = t0; this._core$_name = t1; }, _FindBreakDirection: function _FindBreakDirection(t0) { this.step = t0; }, BrowserAutofillHints: function BrowserAutofillHints(t0) { this._flutterToEngineMap = t0; }, EngineInputType: function EngineInputType() { }, NoTextInputType: function NoTextInputType() { }, TextInputType0: function TextInputType0() { }, NumberInputType: function NumberInputType() { }, DecimalInputType: function DecimalInputType() { }, PhoneInputType: function PhoneInputType() { }, EmailInputType: function EmailInputType() { }, UrlInputType: function UrlInputType() { }, MultilineInputType: function MultilineInputType() { }, TextCapitalization: function TextCapitalization(t0, t1) { this.index = t0; this._core$_name = t1; }, TextCapitalizationConfig: function TextCapitalizationConfig(t0) { this.textCapitalization = t0; }, EngineAutofillForm: function EngineAutofillForm(t0, t1, t2, t3) { var _ = this; _.formElement = t0; _.elements = t1; _.items = t2; _.formIdentifier = t3; }, EngineAutofillForm_fromFrameworkMessage_closure: function EngineAutofillForm_fromFrameworkMessage_closure() { }, EngineAutofillForm_addInputEventListeners_addSubscriptionForKey: function EngineAutofillForm_addInputEventListeners_addSubscriptionForKey(t0, t1) { this.$this = t0; this.subscriptions = t1; }, EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure: function EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.element = t2; }, AutofillInfo: function AutofillInfo(t0, t1, t2, t3) { var _ = this; _.editingState = t0; _.uniqueIdentifier = t1; _.autofillHint = t2; _.placeholder = t3; }, TextEditingDeltaState: function TextEditingDeltaState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.oldText = t0; _.deltaText = t1; _.deltaStart = t2; _.deltaEnd = t3; _.baseOffset = t4; _.extentOffset = t5; _.composingOffset = t6; _.composingExtent = t7; }, EditingState: function EditingState(t0, t1, t2) { this.text = t0; this.baseOffset = t1; this.extentOffset = t2; }, InputConfiguration: function InputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.inputType = t0; _.inputAction = t1; _.readOnly = t2; _.obscureText = t3; _.autocorrect = t4; _.enableDeltaModel = t5; _.autofill = t6; _.autofillGroup = t7; _.textCapitalization = t8; }, GloballyPositionedTextEditingStrategy: function GloballyPositionedTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, SafariDesktopTextEditingStrategy: function SafariDesktopTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, DefaultTextEditingStrategy: function DefaultTextEditingStrategy() { }, DefaultTextEditingStrategy_addEventHandlers_closure: function DefaultTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure() { }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0() { }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1() { }, IOSTextEditingStrategy: function IOSTextEditingStrategy(t0, t1) { var _ = this; _._positionInputElementTimer = null; _._canPosition = true; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, IOSTextEditingStrategy_addEventHandlers_closure: function IOSTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, IOSTextEditingStrategy_addEventHandlers_closure0: function IOSTextEditingStrategy_addEventHandlers_closure0(t0, t1) { this.$this = t0; this.blurWatch = t1; }, IOSTextEditingStrategy__addTapListener_closure: function IOSTextEditingStrategy__addTapListener_closure(t0) { this.$this = t0; }, IOSTextEditingStrategy__schedulePlacement_closure: function IOSTextEditingStrategy__schedulePlacement_closure(t0) { this.$this = t0; }, AndroidTextEditingStrategy: function AndroidTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, AndroidTextEditingStrategy_addEventHandlers_closure: function AndroidTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, FirefoxTextEditingStrategy: function FirefoxTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy_inputConfiguration = $; _.onAction = _.onChange = _.geometry = _.style = _._editingDeltaState = _.lastEditingState = null; _.subscriptions = t1; _._appendedToForm = false; }, FirefoxTextEditingStrategy_addEventHandlers_closure: function FirefoxTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, FirefoxTextEditingStrategy_addEventHandlers_closure0: function FirefoxTextEditingStrategy_addEventHandlers_closure0(t0) { this.$this = t0; }, FirefoxTextEditingStrategy__postponeFocus_closure: function FirefoxTextEditingStrategy__postponeFocus_closure(t0) { this.$this = t0; }, TextInputCommand: function TextInputCommand() { }, TextInputSetClient: function TextInputSetClient(t0, t1) { this.clientId = t0; this.configuration = t1; }, TextInputUpdateConfig: function TextInputUpdateConfig() { }, TextInputSetEditingState: function TextInputSetEditingState(t0) { this.state = t0; }, TextInputShow: function TextInputShow() { }, TextInputSetEditableSizeAndTransform: function TextInputSetEditableSizeAndTransform(t0) { this.geometry = t0; }, TextInputSetStyle: function TextInputSetStyle(t0) { this.style = t0; }, TextInputClearClient: function TextInputClearClient() { }, TextInputHide: function TextInputHide() { }, TextInputSetMarkedTextRect: function TextInputSetMarkedTextRect() { }, TextInputSetCaretRect: function TextInputSetCaretRect() { }, TextInputRequestAutofill: function TextInputRequestAutofill() { }, TextInputFinishAutofillContext: function TextInputFinishAutofillContext(t0) { this.saveForm = t0; }, saveForms_closure: function saveForms_closure() { }, TextEditingChannel: function TextEditingChannel(t0) { this.implementation = t0; }, TextEditingChannel_handleTextInput_closure: function TextEditingChannel_handleTextInput_closure(t0) { this.callback = t0; }, HybridTextEditing: function HybridTextEditing() { var _ = this; _.__HybridTextEditing_channel = $; _.__engine$_clientId = null; _.isEditing = false; _.configuration = null; _.__HybridTextEditing_strategy = $; }, HybridTextEditing__startEditing_closure0: function HybridTextEditing__startEditing_closure0(t0) { this.$this = t0; }, HybridTextEditing__startEditing_closure: function HybridTextEditing__startEditing_closure(t0) { this.$this = t0; }, EditableTextStyle: function EditableTextStyle(t0, t1, t2, t3, t4) { var _ = this; _.fontSize = t0; _.fontWeight = t1; _.fontFamily = t2; _.textAlign = t3; _.textDirection = t4; }, EditableTextGeometry: function EditableTextGeometry(t0, t1, t2) { this.width = t0; this.height = t1; this.globalTransform = t2; }, futurize_closure: function futurize_closure(t0, t1, t2) { this._box_0 = t0; this.completer = t1; this.T = t2; }, TransformKind: function TransformKind(t0, t1) { this.index = t0; this._core$_name = t1; }, bytesToHexString_closure: function bytesToHexString_closure() { }, Matrix40: function Matrix40(t0) { this.__engine$_m4storage = t0; }, Vector30: function Vector30(t0) { this.__engine$_v3storage = t0; }, EngineFlutterWindow: function EngineFlutterWindow() { }, EngineFlutterWindow_closure: function EngineFlutterWindow_closure(t0) { this.$this = t0; }, EngineFlutterWindow_handleNavigationMessage_closure: function EngineFlutterWindow_handleNavigationMessage_closure(t0, t1) { this.$this = t0; this.data = t1; }, EngineSingletonFlutterWindow: function EngineSingletonFlutterWindow(t0, t1, t2, t3) { var _ = this; _._debugDevicePixelRatio = null; _._windowId = t0; _.platformDispatcher = t1; _._browserHistory = null; _._endOfTheLine = t2; _._viewInsets = t3; _._physicalSize = null; }, WindowPadding: function WindowPadding(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, _DomCanvas_EngineCanvas_SaveElementStackTracking: function _DomCanvas_EngineCanvas_SaveElementStackTracking() { }, _PersistedClipRRect_PersistedContainerSurface__DomClip: function _PersistedClipRRect_PersistedContainerSurface__DomClip() { }, _PersistedClipRect_PersistedContainerSurface__DomClip: function _PersistedClipRect_PersistedContainerSurface__DomClip() { }, _PersistedPhysicalShape_PersistedContainerSurface__DomClip: function _PersistedPhysicalShape_PersistedContainerSurface__DomClip() { }, __MouseAdapter__BaseAdapter__WheelEventListenerMixin: function __MouseAdapter__BaseAdapter__WheelEventListenerMixin() { }, __PointerAdapter__BaseAdapter__WheelEventListenerMixin: function __PointerAdapter__BaseAdapter__WheelEventListenerMixin() { }, JS_CONST: function JS_CONST() { }, HttpException$(message, uri) { return new A.HttpException(message, uri); }, _HeaderValue__isToken(token) { var i, codeUnit, t2, t1 = token.length; if (t1 === 0) return false; for (i = 0; i < t1; ++i) { codeUnit = B.JSString_methods._codeUnitAt$1(token, i); if (codeUnit > 32) if (codeUnit < 127) { t2 = token[i]; t2 = A.stringContainsUnchecked('"(),/:;<=>?@[]{}', t2, 0); } else t2 = true; else t2 = true; if (t2) return false; } return true; }, HttpException: function HttpException(t0, t1) { this.message = t0; this.uri = t1; }, _HeaderValue: function _HeaderValue() { }, _HeaderValue_toString_closure: function _HeaderValue_toString_closure(t0) { this.sb = t0; }, _HeaderValue__parse_done: function _HeaderValue__parse_done(t0, t1) { this._box_0 = t0; this.s = t1; }, _HeaderValue__parse_skipWS: function _HeaderValue__parse_skipWS(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_parseValue: function _HeaderValue__parse_parseValue(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.valueSeparator = t3; _.parameterSeparator = t4; }, _HeaderValue__parse_expect: function _HeaderValue__parse_expect(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_maybeExpect: function _HeaderValue__parse_maybeExpect(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_parseParameters: function _HeaderValue__parse_parseParameters(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _.$this = t1; _.done = t2; _.s = t3; _.parameterSeparator = t4; _.valueSeparator = t5; _.preserveBackslash = t6; _.parseValue = t7; _.skipWS = t8; _.maybeExpect = t9; _.expect = t10; }, _HeaderValue__parse_parseParameters_parseParameterName: function _HeaderValue__parse_parseParameters_parseParameterName(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.parameterSeparator = t3; _.valueSeparator = t4; }, _HeaderValue__parse_parseParameters_parseParameterValue: function _HeaderValue__parse_parseParameters_parseParameterValue(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.preserveBackslash = t3; _.parseValue = t4; }, _ContentType: function _ContentType() { var _ = this; _.__http$_value = _._subType = _._primaryType = ""; _._parameters = null; }, CastIterable_CastIterable(source, $S, $T) { if ($S._eval$1("EfficientLengthIterable<0>")._is(source)) return new A._EfficientLengthCastIterable(source, $S._eval$1("@<0>")._bind$1($T)._eval$1("_EfficientLengthCastIterable<1,2>")); return new A.CastIterable(source, $S._eval$1("@<0>")._bind$1($T)._eval$1("CastIterable<1,2>")); }, LateError$fieldADI(fieldName) { return new A.LateError("Field '" + A.S(fieldName) + string$.x27_has_); }, LateError$fieldNI(fieldName) { return new A.LateError("Field '" + fieldName + "' has not been initialized."); }, LateError$localNI(localName) { return new A.LateError("Local '" + localName + "' has not been initialized."); }, LateError$localAI(localName) { return new A.LateError("Local '" + localName + "' has already been initialized."); }, ReachabilityError$(_message) { return new A.ReachabilityError(_message); }, CodeUnits$(_string) { return new A.CodeUnits(_string); }, hexDigitValue(char) { var letter, digit = char ^ 48; if (digit <= 9) return digit; letter = char | 32; if (97 <= letter && letter <= 102) return letter - 87; return -1; }, parseHexByte(source, index) { var digit1 = A.hexDigitValue(B.JSString_methods.codeUnitAt$1(source, index)), digit2 = A.hexDigitValue(B.JSString_methods.codeUnitAt$1(source, index + 1)); return digit1 * 16 + digit2 - (digit2 & 256); }, SystemHash_combine(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, SystemHash_finish(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, SystemHash_hash2(v1, v2, seed) { return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(seed, v1), v2)); }, SystemHash_hash4(v1, v2, v3, v4, seed) { return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(seed, v1), v2), v3), v4)); }, checkNotNullable(value, $name, $T) { if (value == null) throw A.wrapException(new A.NotNullableError($name, $T._eval$1("NotNullableError<0>"))); return value; }, SubListIterable$(_iterable, _start, _endOrLength, $E) { A.RangeError_checkNotNegative(_start, "start"); if (_endOrLength != null) { A.RangeError_checkNotNegative(_endOrLength, "end"); if (_start > _endOrLength) A.throwExpression(A.RangeError$range(_start, 0, _endOrLength, "start", null)); } return new A.SubListIterable(_iterable, _start, _endOrLength, $E._eval$1("SubListIterable<0>")); }, MappedIterable_MappedIterable(iterable, $function, $S, $T) { if (type$.EfficientLengthIterable_dynamic._is(iterable)) return new A.EfficientLengthMappedIterable(iterable, $function, $S._eval$1("@<0>")._bind$1($T)._eval$1("EfficientLengthMappedIterable<1,2>")); return new A.MappedIterable(iterable, $function, $S._eval$1("@<0>")._bind$1($T)._eval$1("MappedIterable<1,2>")); }, TakeIterable_TakeIterable(iterable, takeCount, $E) { var _s9_ = "takeCount"; A.ArgumentError_checkNotNull(takeCount, _s9_); A.RangeError_checkNotNegative(takeCount, _s9_); if (type$.EfficientLengthIterable_dynamic._is(iterable)) return new A.EfficientLengthTakeIterable(iterable, takeCount, $E._eval$1("EfficientLengthTakeIterable<0>")); return new A.TakeIterable(iterable, takeCount, $E._eval$1("TakeIterable<0>")); }, SkipIterable_SkipIterable(iterable, count, $E) { var _s5_ = "count"; if (type$.EfficientLengthIterable_dynamic._is(iterable)) { A.ArgumentError_checkNotNull(count, _s5_); A.RangeError_checkNotNegative(count, _s5_); return new A.EfficientLengthSkipIterable(iterable, count, $E._eval$1("EfficientLengthSkipIterable<0>")); } A.ArgumentError_checkNotNull(count, _s5_); A.RangeError_checkNotNegative(count, _s5_); return new A.SkipIterable(iterable, count, $E._eval$1("SkipIterable<0>")); }, FollowedByIterable_FollowedByIterable$firstEfficient(first, second, $E) { return new A.FollowedByIterable(first, second, $E._eval$1("FollowedByIterable<0>")); }, IterableElementError_noElement() { return new A.StateError("No element"); }, IterableElementError_tooMany() { return new A.StateError("Too many elements"); }, IterableElementError_tooFew() { return new A.StateError("Too few elements"); }, Sort_sort(a, compare) { A.Sort__doSort(a, 0, J.get$length$asx(a) - 1, compare); }, Sort__doSort(a, left, right, compare) { if (right - left <= 32) A.Sort__insertionSort(a, left, right, compare); else A.Sort__dualPivotQuicksort(a, left, right, compare); }, Sort__insertionSort(a, left, right, compare) { var i, t1, el, j, j0; for (i = left + 1, t1 = J.getInterceptor$asx(a); i <= right; ++i) { el = t1.$index(a, i); j = i; while (true) { if (!(j > left && compare.call$2(t1.$index(a, j - 1), el) > 0)) break; j0 = j - 1; t1.$indexSet(a, j, t1.$index(a, j0)); j = j0; } t1.$indexSet(a, j, el); } }, Sort__dualPivotQuicksort(a, left, right, compare) { var t0, less, great, k, ak, comp, great0, less0, pivots_are_equal, t2, sixth = B.JSInt_methods._tdivFast$1(right - left + 1, 6), index1 = left + sixth, index5 = right - sixth, index3 = B.JSInt_methods._tdivFast$1(left + right, 2), index2 = index3 - sixth, index4 = index3 + sixth, t1 = J.getInterceptor$asx(a), el1 = t1.$index(a, index1), el2 = t1.$index(a, index2), el3 = t1.$index(a, index3), el4 = t1.$index(a, index4), el5 = t1.$index(a, index5); if (compare.call$2(el1, el2) > 0) { t0 = el2; el2 = el1; el1 = t0; } if (compare.call$2(el4, el5) > 0) { t0 = el5; el5 = el4; el4 = t0; } if (compare.call$2(el1, el3) > 0) { t0 = el3; el3 = el1; el1 = t0; } if (compare.call$2(el2, el3) > 0) { t0 = el3; el3 = el2; el2 = t0; } if (compare.call$2(el1, el4) > 0) { t0 = el4; el4 = el1; el1 = t0; } if (compare.call$2(el3, el4) > 0) { t0 = el4; el4 = el3; el3 = t0; } if (compare.call$2(el2, el5) > 0) { t0 = el5; el5 = el2; el2 = t0; } if (compare.call$2(el2, el3) > 0) { t0 = el3; el3 = el2; el2 = t0; } if (compare.call$2(el4, el5) > 0) { t0 = el5; el5 = el4; el4 = t0; } t1.$indexSet(a, index1, el1); t1.$indexSet(a, index3, el3); t1.$indexSet(a, index5, el5); t1.$indexSet(a, index2, t1.$index(a, left)); t1.$indexSet(a, index4, t1.$index(a, right)); less = left + 1; great = right - 1; if (J.$eq$(compare.call$2(el2, el4), 0)) { for (k = less; k <= great; ++k) { ak = t1.$index(a, k); comp = compare.call$2(ak, el2); if (comp === 0) continue; if (comp < 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else for (; true;) { comp = compare.call$2(t1.$index(a, great), el2); if (comp > 0) { --great; continue; } else { great0 = great - 1; if (comp < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); great = great0; less = less0; break; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); great = great0; break; } } } } pivots_are_equal = true; } else { for (k = less; k <= great; ++k) { ak = t1.$index(a, k); if (compare.call$2(ak, el2) < 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else if (compare.call$2(ak, el4) > 0) for (; true;) if (compare.call$2(t1.$index(a, great), el4) > 0) { --great; if (great < k) break; continue; } else { great0 = great - 1; if (compare.call$2(t1.$index(a, great), el2) < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); less = less0; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); } great = great0; break; } } pivots_are_equal = false; } t2 = less - 1; t1.$indexSet(a, left, t1.$index(a, t2)); t1.$indexSet(a, t2, el2); t2 = great + 1; t1.$indexSet(a, right, t1.$index(a, t2)); t1.$indexSet(a, t2, el4); A.Sort__doSort(a, left, less - 2, compare); A.Sort__doSort(a, great + 2, right, compare); if (pivots_are_equal) return; if (less < index1 && great > index5) { for (; J.$eq$(compare.call$2(t1.$index(a, less), el2), 0);) ++less; for (; J.$eq$(compare.call$2(t1.$index(a, great), el4), 0);) --great; for (k = less; k <= great; ++k) { ak = t1.$index(a, k); if (compare.call$2(ak, el2) === 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else if (compare.call$2(ak, el4) === 0) for (; true;) if (compare.call$2(t1.$index(a, great), el4) === 0) { --great; if (great < k) break; continue; } else { great0 = great - 1; if (compare.call$2(t1.$index(a, great), el2) < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); less = less0; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); } great = great0; break; } } A.Sort__doSort(a, less, great, compare); } else A.Sort__doSort(a, less, great, compare); }, _CopyingBytesBuilder: function _CopyingBytesBuilder(t0) { this.__internal$_length = 0; this.__internal$_buffer = t0; }, _BytesBuilder: function _BytesBuilder(t0) { this.__internal$_length = 0; this._chunks = t0; }, _CastIterableBase: function _CastIterableBase() { }, CastIterator: function CastIterator(t0, t1) { this._source = t0; this.$ti = t1; }, CastIterable: function CastIterable(t0, t1) { this._source = t0; this.$ti = t1; }, _EfficientLengthCastIterable: function _EfficientLengthCastIterable(t0, t1) { this._source = t0; this.$ti = t1; }, _CastListBase: function _CastListBase() { }, _CastListBase_sort_closure: function _CastListBase_sort_closure(t0, t1) { this.$this = t0; this.compare = t1; }, _CastListBase_removeWhere_closure: function _CastListBase_removeWhere_closure(t0, t1) { this.$this = t0; this.test = t1; }, _CastListBase_retainWhere_closure: function _CastListBase_retainWhere_closure(t0, t1) { this.$this = t0; this.test = t1; }, CastList: function CastList(t0, t1) { this._source = t0; this.$ti = t1; }, CastMap: function CastMap(t0, t1) { this._source = t0; this.$ti = t1; }, CastMap_putIfAbsent_closure: function CastMap_putIfAbsent_closure(t0, t1) { this.$this = t0; this.ifAbsent = t1; }, CastMap_forEach_closure: function CastMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, CastMap_entries_closure: function CastMap_entries_closure(t0) { this.$this = t0; }, LateError: function LateError(t0) { this.__internal$_message = t0; }, ReachabilityError: function ReachabilityError(t0) { this.__internal$_message = t0; }, CodeUnits: function CodeUnits(t0) { this._string = t0; }, nullFuture_closure: function nullFuture_closure() { }, SentinelValue: function SentinelValue() { }, NotNullableError: function NotNullableError(t0, t1) { this._name = t0; this.$ti = t1; }, EfficientLengthIterable: function EfficientLengthIterable() { }, ListIterable: function ListIterable() { }, SubListIterable: function SubListIterable(t0, t1, t2, t3) { var _ = this; _.__internal$_iterable = t0; _._start = t1; _._endOrLength = t2; _.$ti = t3; }, ListIterator: function ListIterator(t0, t1, t2) { var _ = this; _.__internal$_iterable = t0; _.__internal$_length = t1; _.__internal$_index = 0; _.__internal$_current = null; _.$ti = t2; }, MappedIterable: function MappedIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._f = t1; this.$ti = t2; }, EfficientLengthMappedIterable: function EfficientLengthMappedIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._f = t1; this.$ti = t2; }, MappedIterator: function MappedIterator(t0, t1, t2) { var _ = this; _.__internal$_current = null; _._iterator = t0; _._f = t1; _.$ti = t2; }, MappedListIterable: function MappedListIterable(t0, t1, t2) { this._source = t0; this._f = t1; this.$ti = t2; }, WhereIterable: function WhereIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._f = t1; this.$ti = t2; }, WhereIterator: function WhereIterator(t0, t1, t2) { this._iterator = t0; this._f = t1; this.$ti = t2; }, ExpandIterable: function ExpandIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._f = t1; this.$ti = t2; }, ExpandIterator: function ExpandIterator(t0, t1, t2, t3) { var _ = this; _._iterator = t0; _._f = t1; _._currentExpansion = t2; _.__internal$_current = null; _.$ti = t3; }, TakeIterable: function TakeIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._takeCount = t1; this.$ti = t2; }, EfficientLengthTakeIterable: function EfficientLengthTakeIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._takeCount = t1; this.$ti = t2; }, TakeIterator: function TakeIterator(t0, t1, t2) { this._iterator = t0; this._remaining = t1; this.$ti = t2; }, SkipIterable: function SkipIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._skipCount = t1; this.$ti = t2; }, EfficientLengthSkipIterable: function EfficientLengthSkipIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._skipCount = t1; this.$ti = t2; }, SkipIterator: function SkipIterator(t0, t1, t2) { this._iterator = t0; this._skipCount = t1; this.$ti = t2; }, SkipWhileIterable: function SkipWhileIterable(t0, t1, t2) { this.__internal$_iterable = t0; this._f = t1; this.$ti = t2; }, SkipWhileIterator: function SkipWhileIterator(t0, t1, t2) { var _ = this; _._iterator = t0; _._f = t1; _._hasSkipped = false; _.$ti = t2; }, EmptyIterable: function EmptyIterable(t0) { this.$ti = t0; }, EmptyIterator: function EmptyIterator(t0) { this.$ti = t0; }, FollowedByIterable: function FollowedByIterable(t0, t1, t2) { this.__internal$_first = t0; this._second = t1; this.$ti = t2; }, FollowedByIterator: function FollowedByIterator(t0, t1, t2) { this._currentIterator = t0; this._nextIterable = t1; this.$ti = t2; }, WhereTypeIterable: function WhereTypeIterable(t0, t1) { this._source = t0; this.$ti = t1; }, WhereTypeIterator: function WhereTypeIterator(t0, t1) { this._source = t0; this.$ti = t1; }, FixedLengthListMixin: function FixedLengthListMixin() { }, UnmodifiableListMixin: function UnmodifiableListMixin() { }, UnmodifiableListBase: function UnmodifiableListBase() { }, _ListIndicesIterable: function _ListIndicesIterable(t0) { this._backedList = t0; }, ListMapView: function ListMapView(t0, t1) { this._values = t0; this.$ti = t1; }, ReversedListIterable: function ReversedListIterable(t0, t1) { this._source = t0; this.$ti = t1; }, Symbol: function Symbol(t0) { this._name = t0; }, __CastListBase__CastIterableBase_ListMixin: function __CastListBase__CastIterableBase_ListMixin() { }, ConstantMap_ConstantMap$from(other, $K, $V) { var allStrings, k, object, t2, keys = A.List_List$from(other.get$keys(other), true, $K), t1 = keys.length, _i = 0; while (true) { if (!(_i < t1)) { allStrings = true; break; } k = keys[_i]; if (typeof k != "string" || "__proto__" === k) { allStrings = false; break; } ++_i; } if (allStrings) { object = {}; for (_i = 0; t2 = keys.length, _i < t2; keys.length === t1 || (0, A.throwConcurrentModificationError)(keys), ++_i) { k = keys[_i]; object[k] = other.$index(0, k); } return new A.ConstantStringMap(t2, object, keys, $K._eval$1("@<0>")._bind$1($V)._eval$1("ConstantStringMap<1,2>")); } return new A.ConstantMapView(A.LinkedHashMap_LinkedHashMap$from(other, $K, $V), $K._eval$1("@<0>")._bind$1($V)._eval$1("ConstantMapView<1,2>")); }, ConstantMap__throwUnmodifiable() { throw A.wrapException(A.UnsupportedError$("Cannot modify unmodifiable Map")); }, GeneralConstantMap__constantMapHashCode(key) { if (typeof key == "number") return B.JSNumber_methods.get$hashCode(key); if (type$.Symbol._is(key)) return key.get$hashCode(key); if (type$.Type._is(key)) return A.Primitives_objectHashCode(key); return A.objectHashCode(key); }, GeneralConstantMap__typeTest($T) { return new A.GeneralConstantMap__typeTest_closure($T); }, instantiate1(f, T1) { var t1 = new A.Instantiation1(f, T1._eval$1("Instantiation1<0>")); t1.Instantiation$1(f); return t1; }, unminifyOrTag(rawClassName) { var preserved = init.mangledGlobalNames[rawClassName]; if (preserved != null) return preserved; return rawClassName; }, isJsIndexable(object, record) { var result; if (record != null) { result = record.x; if (result != null) return result; } return type$.JavaScriptIndexingBehavior_dynamic._is(object); }, S(value) { var result; if (typeof value == "string") return value; if (typeof value == "number") { if (value !== 0) return "" + value; } else if (true === value) return "true"; else if (false === value) return "false"; else if (value == null) return "null"; result = J.toString$0$(value); if (typeof result != "string") throw A.wrapException(A.ArgumentError$value(value, "object", "toString method returned 'null'")); return result; }, Primitives_objectHashCode(object) { var hash, property = $.Primitives__identityHashCodeProperty; if (property == null) property = $.Primitives__identityHashCodeProperty = Symbol("identityHashCode"); hash = object[property]; if (hash == null) { hash = Math.random() * 0x3fffffff | 0; object[property] = hash; } return hash; }, Primitives_parseInt(source, radix) { var match, decimalMatch, maxCharCode, digitsPart, t1, i, _null = null; if (typeof source != "string") A.throwExpression(A.argumentErrorValue(source)); match = /^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(source); if (match == null) return _null; decimalMatch = match[3]; if (radix == null) { if (decimalMatch != null) return parseInt(source, 10); if (match[2] != null) return parseInt(source, 16); return _null; } if (radix < 2 || radix > 36) throw A.wrapException(A.RangeError$range(radix, 2, 36, "radix", _null)); if (radix === 10 && decimalMatch != null) return parseInt(source, 10); if (radix < 10 || decimalMatch == null) { maxCharCode = radix <= 10 ? 47 + radix : 86 + radix; digitsPart = match[1]; for (t1 = digitsPart.length, i = 0; i < t1; ++i) if ((B.JSString_methods._codeUnitAt$1(digitsPart, i) | 32) > maxCharCode) return _null; } return parseInt(source, radix); }, Primitives_parseDouble(source) { var result, trimmed; if (typeof source != "string") A.throwExpression(A.argumentErrorValue(source)); if (!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(source)) return null; result = parseFloat(source); if (isNaN(result)) { trimmed = J.trim$0$s(source); if (trimmed === "NaN" || trimmed === "+NaN" || trimmed === "-NaN") return result; return null; } return result; }, Primitives_objectTypeName(object) { return A.Primitives__objectTypeNameNewRti(object); }, Primitives__objectTypeNameNewRti(object) { var interceptor, dispatchName, t1, $constructor, constructorName; if (object instanceof A.Object) return A._rtiToString(A.instanceType(object), null); interceptor = J.getInterceptor$(object); if (interceptor === B.Interceptor_methods || interceptor === B.JavaScriptObject_methods || type$.UnknownJavaScriptObject._is(object)) { dispatchName = B.C_JS_CONST(object); t1 = dispatchName !== "Object" && dispatchName !== ""; if (t1) return dispatchName; $constructor = object.constructor; if (typeof $constructor == "function") { constructorName = $constructor.name; if (typeof constructorName == "string") t1 = constructorName !== "Object" && constructorName !== ""; else t1 = false; if (t1) return constructorName; } } return A._rtiToString(A.instanceType(object), null); }, Primitives_dateNow() { return Date.now(); }, Primitives_initTicker() { var $window, performance; if ($.Primitives_timerFrequency !== 0) return; $.Primitives_timerFrequency = 1000; if (typeof window == "undefined") return; $window = window; if ($window == null) return; performance = $window.performance; if (performance == null) return; if (typeof performance.now != "function") return; $.Primitives_timerFrequency = 1000000; $.Primitives_timerTicks = new A.Primitives_initTicker_closure(performance); }, Primitives_currentUri() { if (!!self.location) return self.location.href; return null; }, Primitives__fromCharCodeApply(array) { var result, i, i0, chunkEnd, end = array.length; if (end <= 500) return String.fromCharCode.apply(null, array); for (result = "", i = 0; i < end; i = i0) { i0 = i + 500; chunkEnd = i0 < end ? i0 : end; result += String.fromCharCode.apply(null, array.slice(i, chunkEnd)); } return result; }, Primitives_stringFromCodePoints(codePoints) { var t1, _i, i, a = A._setArrayType([], type$.JSArray_int); for (t1 = codePoints.length, _i = 0; _i < codePoints.length; codePoints.length === t1 || (0, A.throwConcurrentModificationError)(codePoints), ++_i) { i = codePoints[_i]; if (!A._isInt(i)) throw A.wrapException(A.argumentErrorValue(i)); if (i <= 65535) a.push(i); else if (i <= 1114111) { a.push(55296 + (B.JSInt_methods._shrOtherPositive$1(i - 65536, 10) & 1023)); a.push(56320 + (i & 1023)); } else throw A.wrapException(A.argumentErrorValue(i)); } return A.Primitives__fromCharCodeApply(a); }, Primitives_stringFromCharCodes(charCodes) { var t1, _i, i; for (t1 = charCodes.length, _i = 0; _i < t1; ++_i) { i = charCodes[_i]; if (!A._isInt(i)) throw A.wrapException(A.argumentErrorValue(i)); if (i < 0) throw A.wrapException(A.argumentErrorValue(i)); if (i > 65535) return A.Primitives_stringFromCodePoints(charCodes); } return A.Primitives__fromCharCodeApply(charCodes); }, Primitives_stringFromNativeUint8List(charCodes, start, end) { var i, result, i0, chunkEnd; if (end <= 500 && start === 0 && end === charCodes.length) return String.fromCharCode.apply(null, charCodes); for (i = start, result = ""; i < end; i = i0) { i0 = i + 500; chunkEnd = i0 < end ? i0 : end; result += String.fromCharCode.apply(null, charCodes.subarray(i, chunkEnd)); } return result; }, Primitives_stringFromCharCode(charCode) { var bits; if (0 <= charCode) { if (charCode <= 65535) return String.fromCharCode(charCode); if (charCode <= 1114111) { bits = charCode - 65536; return String.fromCharCode((B.JSInt_methods._shrOtherPositive$1(bits, 10) | 55296) >>> 0, bits & 1023 | 56320); } } throw A.wrapException(A.RangeError$range(charCode, 0, 1114111, null, null)); }, Primitives_valueFromDecomposedDate(years, month, day, hours, minutes, seconds, milliseconds, isUtc) { var jsMonth, value; if (!A._isInt(years)) A.throwExpression(A.argumentErrorValue(years)); if (!A._isInt(month)) A.throwExpression(A.argumentErrorValue(month)); if (!A._isInt(day)) A.throwExpression(A.argumentErrorValue(day)); if (!A._isInt(hours)) A.throwExpression(A.argumentErrorValue(hours)); if (!A._isInt(minutes)) A.throwExpression(A.argumentErrorValue(minutes)); if (!A._isInt(seconds)) A.throwExpression(A.argumentErrorValue(seconds)); jsMonth = month - 1; if (0 <= years && years < 100) { years += 400; jsMonth -= 4800; } value = isUtc ? Date.UTC(years, jsMonth, day, hours, minutes, seconds, milliseconds) : new Date(years, jsMonth, day, hours, minutes, seconds, milliseconds).valueOf(); if (isNaN(value) || value < -864e13 || value > 864e13) return null; return value; }, Primitives_lazyAsJsDate(receiver) { if (receiver.date === void 0) receiver.date = new Date(receiver._value); return receiver.date; }, Primitives_getYear(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCFullYear() + 0 : A.Primitives_lazyAsJsDate(receiver).getFullYear() + 0; }, Primitives_getMonth(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCMonth() + 1 : A.Primitives_lazyAsJsDate(receiver).getMonth() + 1; }, Primitives_getDay(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCDate() + 0 : A.Primitives_lazyAsJsDate(receiver).getDate() + 0; }, Primitives_getHours(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCHours() + 0 : A.Primitives_lazyAsJsDate(receiver).getHours() + 0; }, Primitives_getMinutes(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCMinutes() + 0 : A.Primitives_lazyAsJsDate(receiver).getMinutes() + 0; }, Primitives_getSeconds(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCSeconds() + 0 : A.Primitives_lazyAsJsDate(receiver).getSeconds() + 0; }, Primitives_getMilliseconds(receiver) { return receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCMilliseconds() + 0 : A.Primitives_lazyAsJsDate(receiver).getMilliseconds() + 0; }, Primitives_getWeekday(receiver) { return B.JSInt_methods.$mod((receiver.isUtc ? A.Primitives_lazyAsJsDate(receiver).getUTCDay() + 0 : A.Primitives_lazyAsJsDate(receiver).getDay() + 0) + 6, 7) + 1; }, Primitives_functionNoSuchMethod($function, positionalArguments, namedArguments) { var $arguments, namedArgumentList, t1 = {}; t1.argumentCount = 0; $arguments = []; namedArgumentList = []; t1.argumentCount = positionalArguments.length; B.JSArray_methods.addAll$1($arguments, positionalArguments); t1.names = ""; if (namedArguments != null && namedArguments._length !== 0) namedArguments.forEach$1(0, new A.Primitives_functionNoSuchMethod_closure(t1, namedArgumentList, $arguments)); return J.noSuchMethod$1$($function, new A.JSInvocationMirror(B.Symbol_call, 0, $arguments, namedArgumentList, 0)); }, Primitives_applyFunction($function, positionalArguments, namedArguments) { var t1, argumentCount, jsStub; if (Array.isArray(positionalArguments)) t1 = namedArguments == null || namedArguments._length === 0; else t1 = false; if (t1) { argumentCount = positionalArguments.length; if (argumentCount === 0) { if (!!$function.call$0) return $function.call$0(); } else if (argumentCount === 1) { if (!!$function.call$1) return $function.call$1(positionalArguments[0]); } else if (argumentCount === 2) { if (!!$function.call$2) return $function.call$2(positionalArguments[0], positionalArguments[1]); } else if (argumentCount === 3) { if (!!$function.call$3) return $function.call$3(positionalArguments[0], positionalArguments[1], positionalArguments[2]); } else if (argumentCount === 4) { if (!!$function.call$4) return $function.call$4(positionalArguments[0], positionalArguments[1], positionalArguments[2], positionalArguments[3]); } else if (argumentCount === 5) if (!!$function.call$5) return $function.call$5(positionalArguments[0], positionalArguments[1], positionalArguments[2], positionalArguments[3], positionalArguments[4]); jsStub = $function["call" + "$" + argumentCount]; if (jsStub != null) return jsStub.apply($function, positionalArguments); } return A.Primitives__generalApplyFunction($function, positionalArguments, namedArguments); }, Primitives__generalApplyFunction($function, positionalArguments, namedArguments) { var $arguments, argumentCount, requiredParameterCount, defaultValuesClosure, t1, defaultValues, interceptor, jsFunction, maxArguments, missingDefaults, keys, _i, defaultValue, used, t2; if (positionalArguments != null) $arguments = Array.isArray(positionalArguments) ? positionalArguments : A.List_List$of(positionalArguments, true, type$.dynamic); else $arguments = []; argumentCount = $arguments.length; requiredParameterCount = $function.$requiredArgCount; if (argumentCount < requiredParameterCount) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); defaultValuesClosure = $function.$defaultValues; t1 = defaultValuesClosure == null; defaultValues = !t1 ? defaultValuesClosure() : null; interceptor = J.getInterceptor$($function); jsFunction = interceptor["call*"]; if (typeof jsFunction == "string") jsFunction = interceptor[jsFunction]; if (t1) { if (namedArguments != null && namedArguments._length !== 0) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); if (argumentCount === requiredParameterCount) return jsFunction.apply($function, $arguments); return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); } if (Array.isArray(defaultValues)) { if (namedArguments != null && namedArguments._length !== 0) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); maxArguments = requiredParameterCount + defaultValues.length; if (argumentCount > maxArguments) return A.Primitives_functionNoSuchMethod($function, $arguments, null); if (argumentCount < maxArguments) { missingDefaults = defaultValues.slice(argumentCount - requiredParameterCount); if ($arguments === positionalArguments) $arguments = A.List_List$of($arguments, true, type$.dynamic); B.JSArray_methods.addAll$1($arguments, missingDefaults); } return jsFunction.apply($function, $arguments); } else { if (argumentCount > requiredParameterCount) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); if ($arguments === positionalArguments) $arguments = A.List_List$of($arguments, true, type$.dynamic); keys = Object.keys(defaultValues); if (namedArguments == null) for (t1 = keys.length, _i = 0; _i < keys.length; keys.length === t1 || (0, A.throwConcurrentModificationError)(keys), ++_i) { defaultValue = defaultValues[keys[_i]]; if (B.C__Required === defaultValue) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); B.JSArray_methods.add$1($arguments, defaultValue); } else { for (t1 = keys.length, used = 0, _i = 0; _i < keys.length; keys.length === t1 || (0, A.throwConcurrentModificationError)(keys), ++_i) { t2 = keys[_i]; if (namedArguments.containsKey$1(0, t2)) { ++used; B.JSArray_methods.add$1($arguments, namedArguments.$index(0, t2)); } else { defaultValue = defaultValues[t2]; if (B.C__Required === defaultValue) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); B.JSArray_methods.add$1($arguments, defaultValue); } } if (used !== namedArguments._length) return A.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); } return jsFunction.apply($function, $arguments); } }, diagnoseIndexError(indexable, index) { var $length, _s5_ = "index"; if (!A._isInt(index)) return new A.ArgumentError(true, index, _s5_, null); $length = J.get$length$asx(indexable); if (index < 0 || index >= $length) return A.IndexError$(index, indexable, _s5_, null, $length); return A.RangeError$value(index, _s5_); }, diagnoseRangeError(start, end, $length) { var _null = null; if (!A._isInt(start)) return new A.ArgumentError(true, start, "start", _null); if (start < 0 || start > $length) return A.RangeError$range(start, 0, $length, "start", _null); if (end != null) if (end < start || end > $length) return A.RangeError$range(end, start, $length, "end", _null); return new A.ArgumentError(true, end, "end", _null); }, argumentErrorValue(object) { return new A.ArgumentError(true, object, null, null); }, checkNum(value) { if (typeof value != "number") throw A.wrapException(A.argumentErrorValue(value)); return value; }, wrapException(ex) { var wrapper, t1; if (ex == null) ex = new A.NullThrownError(); wrapper = new Error(); wrapper.dartException = ex; t1 = A.toStringWrapper; if ("defineProperty" in Object) { Object.defineProperty(wrapper, "message", {get: t1}); wrapper.name = ""; } else wrapper.toString = t1; return wrapper; }, toStringWrapper() { return J.toString$0$(this.dartException); }, throwExpression(ex) { throw A.wrapException(ex); }, throwConcurrentModificationError(collection) { throw A.wrapException(A.ConcurrentModificationError$(collection)); }, TypeErrorDecoder_extractPattern(message) { var match, $arguments, argumentsExpr, expr, method, receiver; message = A.quoteStringForRegExp(message.replace(String({}), "$receiver$")); match = message.match(/\\\$[a-zA-Z]+\\\$/g); if (match == null) match = A._setArrayType([], type$.JSArray_String); $arguments = match.indexOf("\\$arguments\\$"); argumentsExpr = match.indexOf("\\$argumentsExpr\\$"); expr = match.indexOf("\\$expr\\$"); method = match.indexOf("\\$method\\$"); receiver = match.indexOf("\\$receiver\\$"); return new A.TypeErrorDecoder(message.replace(new RegExp("\\\\\\$arguments\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$", "g"), "((?:x|[^x])*)"), $arguments, argumentsExpr, expr, method, receiver); }, TypeErrorDecoder_provokeCallErrorOn(expression) { return function($expr$) { var $argumentsExpr$ = "$arguments$"; try { $expr$.$method$($argumentsExpr$); } catch (e) { return e.message; } }(expression); }, TypeErrorDecoder_provokePropertyErrorOn(expression) { return function($expr$) { try { $expr$.$method$; } catch (e) { return e.message; } }(expression); }, JsNoSuchMethodError$(_message, match) { var t1 = match == null, t2 = t1 ? null : match.method; return new A.JsNoSuchMethodError(_message, t2, t1 ? null : match.receiver); }, unwrapException(ex) { if (ex == null) return new A.NullThrownFromJavaScriptException(ex); if (ex instanceof A.ExceptionAndStackTrace) return A.saveStackTrace(ex, ex.dartException); if (typeof ex !== "object") return ex; if ("dartException" in ex) return A.saveStackTrace(ex, ex.dartException); return A._unwrapNonDartException(ex); }, saveStackTrace(ex, error) { if (type$.Error._is(error)) if (error.$thrownJsError == null) error.$thrownJsError = ex; return error; }, _unwrapNonDartException(ex) { var message, number, ieErrorCode, t1, nsme, notClosure, nullCall, nullLiteralCall, undefCall, undefLiteralCall, nullProperty, undefProperty, undefLiteralProperty, match, _null = null; if (!("message" in ex)) return ex; message = ex.message; if ("number" in ex && typeof ex.number == "number") { number = ex.number; ieErrorCode = number & 65535; if ((B.JSInt_methods._shrOtherPositive$1(number, 16) & 8191) === 10) switch (ieErrorCode) { case 438: return A.saveStackTrace(ex, A.JsNoSuchMethodError$(A.S(message) + " (Error " + ieErrorCode + ")", _null)); case 445: case 5007: t1 = A.S(message); return A.saveStackTrace(ex, new A.NullError(t1 + " (Error " + ieErrorCode + ")", _null)); } } if (ex instanceof TypeError) { nsme = $.$get$TypeErrorDecoder_noSuchMethodPattern(); notClosure = $.$get$TypeErrorDecoder_notClosurePattern(); nullCall = $.$get$TypeErrorDecoder_nullCallPattern(); nullLiteralCall = $.$get$TypeErrorDecoder_nullLiteralCallPattern(); undefCall = $.$get$TypeErrorDecoder_undefinedCallPattern(); undefLiteralCall = $.$get$TypeErrorDecoder_undefinedLiteralCallPattern(); nullProperty = $.$get$TypeErrorDecoder_nullPropertyPattern(); $.$get$TypeErrorDecoder_nullLiteralPropertyPattern(); undefProperty = $.$get$TypeErrorDecoder_undefinedPropertyPattern(); undefLiteralProperty = $.$get$TypeErrorDecoder_undefinedLiteralPropertyPattern(); match = nsme.matchTypeError$1(message); if (match != null) return A.saveStackTrace(ex, A.JsNoSuchMethodError$(message, match)); else { match = notClosure.matchTypeError$1(message); if (match != null) { match.method = "call"; return A.saveStackTrace(ex, A.JsNoSuchMethodError$(message, match)); } else { match = nullCall.matchTypeError$1(message); if (match == null) { match = nullLiteralCall.matchTypeError$1(message); if (match == null) { match = undefCall.matchTypeError$1(message); if (match == null) { match = undefLiteralCall.matchTypeError$1(message); if (match == null) { match = nullProperty.matchTypeError$1(message); if (match == null) { match = nullLiteralCall.matchTypeError$1(message); if (match == null) { match = undefProperty.matchTypeError$1(message); if (match == null) { match = undefLiteralProperty.matchTypeError$1(message); t1 = match != null; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; if (t1) return A.saveStackTrace(ex, new A.NullError(message, match == null ? _null : match.method)); } } return A.saveStackTrace(ex, new A.UnknownJsTypeError(typeof message == "string" ? message : "")); } if (ex instanceof RangeError) { if (typeof message == "string" && message.indexOf("call stack") !== -1) return new A.StackOverflowError(); message = function(ex) { try { return String(ex); } catch (e) { } return null; }(ex); return A.saveStackTrace(ex, new A.ArgumentError(false, _null, _null, typeof message == "string" ? message.replace(/^RangeError:\s*/, "") : message)); } if (typeof InternalError == "function" && ex instanceof InternalError) if (typeof message == "string" && message === "too much recursion") return new A.StackOverflowError(); return ex; }, getTraceFromException(exception) { var trace; if (exception instanceof A.ExceptionAndStackTrace) return exception.stackTrace; if (exception == null) return new A._StackTrace(exception); trace = exception.$cachedTrace; if (trace != null) return trace; return exception.$cachedTrace = new A._StackTrace(exception); }, objectHashCode(object) { if (object == null || typeof object != "object") return J.get$hashCode$(object); else return A.Primitives_objectHashCode(object); }, fillLiteralMap(keyValuePairs, result) { var index, index0, index1, $length = keyValuePairs.length; for (index = 0; index < $length; index = index1) { index0 = index + 1; index1 = index0 + 1; result.$indexSet(0, keyValuePairs[index], keyValuePairs[index0]); } return result; }, fillLiteralSet(values, result) { var index, $length = values.length; for (index = 0; index < $length; ++index) result.add$1(0, values[index]); return result; }, invokeClosure(closure, numberOfArguments, arg1, arg2, arg3, arg4) { switch (numberOfArguments) { case 0: return closure.call$0(); case 1: return closure.call$1(arg1); case 2: return closure.call$2(arg1, arg2); case 3: return closure.call$3(arg1, arg2, arg3); case 4: return closure.call$4(arg1, arg2, arg3, arg4); } throw A.wrapException(A.Exception_Exception("Unsupported number of arguments for wrapped closure")); }, convertDartClosureToJS(closure, arity) { var $function; if (closure == null) return null; $function = closure.$identity; if (!!$function) return $function; $function = function(closure, arity, invoke) { return function(a1, a2, a3, a4) { return invoke(closure, arity, a1, a2, a3, a4); }; }(closure, arity, A.invokeClosure); closure.$identity = $function; return $function; }, Closure_fromTearOff(parameters) { var $prototype, $constructor, t2, trampoline, applyTrampoline, i, stub, stub0, stubName, stubCallName, container = parameters.co, isStatic = parameters.iS, isIntercepted = parameters.iI, needsDirectAccess = parameters.nDA, applyTrampolineIndex = parameters.aI, funsOrNames = parameters.fs, callNames = parameters.cs, $name = funsOrNames[0], callName = callNames[0], $function = container[$name], t1 = parameters.fT; t1.toString; $prototype = isStatic ? Object.create(new A.StaticClosure().constructor.prototype) : Object.create(new A.BoundClosure(null, null).constructor.prototype); $prototype.$initialize = $prototype.constructor; if (isStatic) $constructor = function static_tear_off() { this.$initialize(); }; else $constructor = function tear_off(a, b) { this.$initialize(a, b); }; $prototype.constructor = $constructor; $constructor.prototype = $prototype; $prototype.$_name = $name; $prototype.$_target = $function; t2 = !isStatic; if (t2) trampoline = A.Closure_forwardCallTo($name, $function, isIntercepted, needsDirectAccess); else { $prototype.$static_name = $name; trampoline = $function; } $prototype.$signature = A.Closure__computeSignatureFunctionNewRti(t1, isStatic, isIntercepted); $prototype[callName] = trampoline; for (applyTrampoline = trampoline, i = 1; i < funsOrNames.length; ++i) { stub = funsOrNames[i]; if (typeof stub == "string") { stub0 = container[stub]; stubName = stub; stub = stub0; } else stubName = ""; stubCallName = callNames[i]; if (stubCallName != null) { if (t2) stub = A.Closure_forwardCallTo(stubName, stub, isIntercepted, needsDirectAccess); $prototype[stubCallName] = stub; } if (i === applyTrampolineIndex) applyTrampoline = stub; } $prototype["call*"] = applyTrampoline; $prototype.$requiredArgCount = parameters.rC; $prototype.$defaultValues = parameters.dV; return $constructor; }, Closure__computeSignatureFunctionNewRti(functionType, isStatic, isIntercepted) { if (typeof functionType == "number") return functionType; if (typeof functionType == "string") { if (isStatic) throw A.wrapException("Cannot compute signature for static tearoff."); return function(recipe, evalOnReceiver) { return function() { return evalOnReceiver(this, recipe); }; }(functionType, A.BoundClosure_evalRecipe); } throw A.wrapException("Error in functionType of tearoff"); }, Closure_cspForwardCall(arity, needsDirectAccess, stubName, $function) { var getReceiver = A.BoundClosure_receiverOf; switch (needsDirectAccess ? -1 : arity) { case 0: return function(entry, receiverOf) { return function() { return receiverOf(this)[entry](); }; }(stubName, getReceiver); case 1: return function(entry, receiverOf) { return function(a) { return receiverOf(this)[entry](a); }; }(stubName, getReceiver); case 2: return function(entry, receiverOf) { return function(a, b) { return receiverOf(this)[entry](a, b); }; }(stubName, getReceiver); case 3: return function(entry, receiverOf) { return function(a, b, c) { return receiverOf(this)[entry](a, b, c); }; }(stubName, getReceiver); case 4: return function(entry, receiverOf) { return function(a, b, c, d) { return receiverOf(this)[entry](a, b, c, d); }; }(stubName, getReceiver); case 5: return function(entry, receiverOf) { return function(a, b, c, d, e) { return receiverOf(this)[entry](a, b, c, d, e); }; }(stubName, getReceiver); default: return function(f, receiverOf) { return function() { return f.apply(receiverOf(this), arguments); }; }($function, getReceiver); } }, Closure_forwardCallTo(stubName, $function, isIntercepted, needsDirectAccess) { var arity, t1; if (isIntercepted) return A.Closure_forwardInterceptedCallTo(stubName, $function, needsDirectAccess); arity = $function.length; t1 = A.Closure_cspForwardCall(arity, needsDirectAccess, stubName, $function); return t1; }, Closure_cspForwardInterceptedCall(arity, needsDirectAccess, stubName, $function) { var getReceiver = A.BoundClosure_receiverOf, getInterceptor = A.BoundClosure_interceptorOf; switch (needsDirectAccess ? -1 : arity) { case 0: throw A.wrapException(new A.RuntimeError("Intercepted function with no arguments.")); case 1: return function(entry, interceptorOf, receiverOf) { return function() { return interceptorOf(this)[entry](receiverOf(this)); }; }(stubName, getInterceptor, getReceiver); case 2: return function(entry, interceptorOf, receiverOf) { return function(a) { return interceptorOf(this)[entry](receiverOf(this), a); }; }(stubName, getInterceptor, getReceiver); case 3: return function(entry, interceptorOf, receiverOf) { return function(a, b) { return interceptorOf(this)[entry](receiverOf(this), a, b); }; }(stubName, getInterceptor, getReceiver); case 4: return function(entry, interceptorOf, receiverOf) { return function(a, b, c) { return interceptorOf(this)[entry](receiverOf(this), a, b, c); }; }(stubName, getInterceptor, getReceiver); case 5: return function(entry, interceptorOf, receiverOf) { return function(a, b, c, d) { return interceptorOf(this)[entry](receiverOf(this), a, b, c, d); }; }(stubName, getInterceptor, getReceiver); case 6: return function(entry, interceptorOf, receiverOf) { return function(a, b, c, d, e) { return interceptorOf(this)[entry](receiverOf(this), a, b, c, d, e); }; }(stubName, getInterceptor, getReceiver); default: return function(f, interceptorOf, receiverOf) { return function() { var a = [receiverOf(this)]; Array.prototype.push.apply(a, arguments); return f.apply(interceptorOf(this), a); }; }($function, getInterceptor, getReceiver); } }, Closure_forwardInterceptedCallTo(stubName, $function, needsDirectAccess) { var arity, t1; if ($.BoundClosure__interceptorFieldNameCache == null) $.BoundClosure__interceptorFieldNameCache = A.BoundClosure__computeFieldNamed("interceptor"); if ($.BoundClosure__receiverFieldNameCache == null) $.BoundClosure__receiverFieldNameCache = A.BoundClosure__computeFieldNamed("receiver"); arity = $function.length; t1 = A.Closure_cspForwardInterceptedCall(arity, needsDirectAccess, stubName, $function); return t1; }, closureFromTearOff(parameters) { return A.Closure_fromTearOff(parameters); }, BoundClosure_evalRecipe(closure, recipe) { return A._Universe_evalInEnvironment(init.typeUniverse, A.instanceType(closure._receiver), recipe); }, BoundClosure_receiverOf(closure) { return closure._receiver; }, BoundClosure_interceptorOf(closure) { return closure._interceptor; }, BoundClosure__computeFieldNamed(fieldName) { var t1, i, $name, template = new A.BoundClosure("receiver", "interceptor"), names = J.JSArray_markFixedList(Object.getOwnPropertyNames(template)); for (t1 = names.length, i = 0; i < t1; ++i) { $name = names[i]; if (template[$name] === fieldName) return $name; } throw A.wrapException(A.ArgumentError$("Field name " + fieldName + " not found.", null)); }, throwCyclicInit(staticName) { throw A.wrapException(new A.CyclicInitializationError(staticName)); }, getIsolateAffinityTag($name) { return init.getIsolateTag($name); }, LinkedHashMapKeyIterator$(_map, _modifications, $E) { var t1 = new A.LinkedHashMapKeyIterator(_map, _modifications, $E._eval$1("LinkedHashMapKeyIterator<0>")); t1._cell = _map._first; return t1; }, defineProperty(obj, property, value) { Object.defineProperty(obj, property, {value: value, enumerable: false, writable: true, configurable: true}); }, lookupAndCacheInterceptor(obj) { var interceptor, interceptorClass, altTag, mark, t1, tag = $.getTagFunction.call$1(obj), record = $.dispatchRecordsForInstanceTags[tag]; if (record != null) { Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } interceptor = $.interceptorsForUncacheableTags[tag]; if (interceptor != null) return interceptor; interceptorClass = init.interceptorsByTag[tag]; if (interceptorClass == null) { altTag = $.alternateTagFunction.call$2(obj, tag); if (altTag != null) { record = $.dispatchRecordsForInstanceTags[altTag]; if (record != null) { Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } interceptor = $.interceptorsForUncacheableTags[altTag]; if (interceptor != null) return interceptor; interceptorClass = init.interceptorsByTag[altTag]; tag = altTag; } } if (interceptorClass == null) return null; interceptor = interceptorClass.prototype; mark = tag[0]; if (mark === "!") { record = A.makeLeafDispatchRecord(interceptor); $.dispatchRecordsForInstanceTags[tag] = record; Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } if (mark === "~") { $.interceptorsForUncacheableTags[tag] = interceptor; return interceptor; } if (mark === "-") { t1 = A.makeLeafDispatchRecord(interceptor); Object.defineProperty(Object.getPrototypeOf(obj), init.dispatchPropertyName, {value: t1, enumerable: false, writable: true, configurable: true}); return t1.i; } if (mark === "+") return A.patchInteriorProto(obj, interceptor); if (mark === "*") throw A.wrapException(A.UnimplementedError$(tag)); if (init.leafTags[tag] === true) { t1 = A.makeLeafDispatchRecord(interceptor); Object.defineProperty(Object.getPrototypeOf(obj), init.dispatchPropertyName, {value: t1, enumerable: false, writable: true, configurable: true}); return t1.i; } else return A.patchInteriorProto(obj, interceptor); }, patchInteriorProto(obj, interceptor) { var proto = Object.getPrototypeOf(obj); Object.defineProperty(proto, init.dispatchPropertyName, {value: J.makeDispatchRecord(interceptor, proto, null, null), enumerable: false, writable: true, configurable: true}); return interceptor; }, makeLeafDispatchRecord(interceptor) { return J.makeDispatchRecord(interceptor, false, null, !!interceptor.$isJavaScriptIndexingBehavior); }, makeDefaultDispatchRecord(tag, interceptorClass, proto) { var interceptor = interceptorClass.prototype; if (init.leafTags[tag] === true) return A.makeLeafDispatchRecord(interceptor); else return J.makeDispatchRecord(interceptor, proto, null, null); }, initNativeDispatch() { if (true === $.initNativeDispatchFlag) return; $.initNativeDispatchFlag = true; A.initNativeDispatchContinue(); }, initNativeDispatchContinue() { var map, tags, fun, i, tag, proto, record, interceptorClass; $.dispatchRecordsForInstanceTags = Object.create(null); $.interceptorsForUncacheableTags = Object.create(null); A.initHooks(); map = init.interceptorsByTag; tags = Object.getOwnPropertyNames(map); if (typeof window != "undefined") { window; fun = function() { }; for (i = 0; i < tags.length; ++i) { tag = tags[i]; proto = $.prototypeForTagFunction.call$1(tag); if (proto != null) { record = A.makeDefaultDispatchRecord(tag, map[tag], proto); if (record != null) { Object.defineProperty(proto, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); fun.prototype = proto; } } } } for (i = 0; i < tags.length; ++i) { tag = tags[i]; if (/^[A-Za-z_]/.test(tag)) { interceptorClass = map[tag]; map["!" + tag] = interceptorClass; map["~" + tag] = interceptorClass; map["-" + tag] = interceptorClass; map["+" + tag] = interceptorClass; map["*" + tag] = interceptorClass; } } }, initHooks() { var transformers, i, transformer, getTag, getUnknownTag, prototypeForTag, hooks = B.C_JS_CONST0(); hooks = A.applyHooksTransformer(B.C_JS_CONST1, A.applyHooksTransformer(B.C_JS_CONST2, A.applyHooksTransformer(B.C_JS_CONST3, A.applyHooksTransformer(B.C_JS_CONST3, A.applyHooksTransformer(B.C_JS_CONST4, A.applyHooksTransformer(B.C_JS_CONST5, A.applyHooksTransformer(B.C_JS_CONST6(B.C_JS_CONST), hooks))))))); if (typeof dartNativeDispatchHooksTransformer != "undefined") { transformers = dartNativeDispatchHooksTransformer; if (typeof transformers == "function") transformers = [transformers]; if (transformers.constructor == Array) for (i = 0; i < transformers.length; ++i) { transformer = transformers[i]; if (typeof transformer == "function") hooks = transformer(hooks) || hooks; } } getTag = hooks.getTag; getUnknownTag = hooks.getUnknownTag; prototypeForTag = hooks.prototypeForTag; $.getTagFunction = new A.initHooks_closure(getTag); $.alternateTagFunction = new A.initHooks_closure0(getUnknownTag); $.prototypeForTagFunction = new A.initHooks_closure1(prototypeForTag); }, applyHooksTransformer(transformer, hooks) { return transformer(hooks) || hooks; }, JSSyntaxRegExp_makeNative(source, multiLine, caseSensitive, unicode, dotAll, global) { var m = multiLine ? "m" : "", i = caseSensitive ? "" : "i", u = unicode ? "u" : "", s = dotAll ? "s" : "", g = global ? "g" : "", regexp = function(source, modifiers) { try { return new RegExp(source, modifiers); } catch (e) { return e; } }(source, m + i + u + s + g); if (regexp instanceof RegExp) return regexp; throw A.wrapException(A.FormatException$("Illegal RegExp pattern (" + String(regexp) + ")", source, null)); }, stringContainsUnchecked(receiver, other, startIndex) { var t1, t2; if (typeof other == "string") return receiver.indexOf(other, startIndex) >= 0; else if (other instanceof A.JSSyntaxRegExp) { t1 = B.JSString_methods.substring$1(receiver, startIndex); t2 = other._nativeRegExp; return t2.test(t1); } else { t1 = J.allMatches$1$s(other, B.JSString_methods.substring$1(receiver, startIndex)); return !t1.get$isEmpty(t1); } }, escapeReplacement(replacement) { if (replacement.indexOf("$", 0) >= 0) return replacement.replace(/\$/g, "$$$$"); return replacement; }, stringReplaceFirstRE(receiver, regexp, replacement, startIndex) { var match = regexp._execGlobal$2(receiver, startIndex); if (match == null) return receiver; return A.stringReplaceRangeUnchecked(receiver, match._match.index, match.get$end(match), replacement); }, quoteStringForRegExp(string) { if (/[[\]{}()*+?.\\^$|]/.test(string)) return string.replace(/[[\]{}()*+?.\\^$|]/g, "\\$&"); return string; }, stringReplaceAllUnchecked(receiver, pattern, replacement) { var nativeRegexp; if (typeof pattern == "string") return A.stringReplaceAllUncheckedString(receiver, pattern, replacement); if (pattern instanceof A.JSSyntaxRegExp) { nativeRegexp = pattern.get$_nativeGlobalVersion(); nativeRegexp.lastIndex = 0; return receiver.replace(nativeRegexp, A.escapeReplacement(replacement)); } return A.stringReplaceAllGeneral(receiver, pattern, replacement); }, stringReplaceAllGeneral(receiver, pattern, replacement) { var t1, startIndex, t2, match; if (pattern == null) A.throwExpression(A.argumentErrorValue(pattern)); for (t1 = J.allMatches$1$s(pattern, receiver), t1 = t1.get$iterator(t1), startIndex = 0, t2 = ""; t1.moveNext$0();) { match = t1.get$current(t1); t2 = t2 + receiver.substring(startIndex, match.get$start(match)) + replacement; startIndex = match.get$end(match); } t1 = t2 + receiver.substring(startIndex); return t1.charCodeAt(0) == 0 ? t1 : t1; }, stringReplaceAllUncheckedString(receiver, pattern, replacement) { var $length, t1, i, index; if (pattern === "") { if (receiver === "") return replacement; $length = receiver.length; for (t1 = replacement, i = 0; i < $length; ++i) t1 = t1 + receiver[i] + replacement; return t1.charCodeAt(0) == 0 ? t1 : t1; } index = receiver.indexOf(pattern, 0); if (index < 0) return receiver; if (receiver.length < 500 || replacement.indexOf("$", 0) >= 0) return receiver.split(pattern).join(replacement); return receiver.replace(new RegExp(A.quoteStringForRegExp(pattern), "g"), A.escapeReplacement(replacement)); }, _stringIdentity(string) { return string; }, stringReplaceAllFuncUnchecked(receiver, pattern, onMatch, onNonMatch) { var t1, startIndex, t2, match, t3, t4; if (!type$.Pattern._is(pattern)) throw A.wrapException(A.ArgumentError$value(pattern, "pattern", "is not a Pattern")); for (t1 = pattern.allMatches$1(0, receiver), t1 = new A._AllMatchesIterator(t1._re, t1.__js_helper$_string, t1.__js_helper$_start), startIndex = 0, t2 = ""; t1.moveNext$0();) { match = t1.__js_helper$_current; t3 = match._match; t4 = t3.index; t2 = t2 + A.S(A._stringIdentity(B.JSString_methods.substring$2(receiver, startIndex, t4))) + A.S(onMatch.call$1(match)); startIndex = t4 + t3[0].length; } t1 = t2 + A.S(A._stringIdentity(B.JSString_methods.substring$1(receiver, startIndex))); return t1.charCodeAt(0) == 0 ? t1 : t1; }, stringReplaceFirstUnchecked(receiver, pattern, replacement, startIndex) { var index, t1, matches, match; if (typeof pattern == "string") { index = receiver.indexOf(pattern, startIndex); if (index < 0) return receiver; return A.stringReplaceRangeUnchecked(receiver, index, index + pattern.length, replacement); } if (pattern instanceof A.JSSyntaxRegExp) return startIndex === 0 ? receiver.replace(pattern._nativeRegExp, A.escapeReplacement(replacement)) : A.stringReplaceFirstRE(receiver, pattern, replacement, startIndex); if (pattern == null) A.throwExpression(A.argumentErrorValue(pattern)); t1 = J.allMatches$2$s(pattern, receiver, startIndex); matches = t1.get$iterator(t1); if (!matches.moveNext$0()) return receiver; match = matches.get$current(matches); return B.JSString_methods.replaceRange$3(receiver, match.get$start(match), match.get$end(match), replacement); }, stringReplaceRangeUnchecked(receiver, start, end, replacement) { return receiver.substring(0, start) + A.S(replacement) + receiver.substring(end); }, ConstantMapView: function ConstantMapView(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, ConstantMap: function ConstantMap() { }, ConstantMap_map_closure: function ConstantMap_map_closure(t0, t1, t2) { this.$this = t0; this.transform = t1; this.result = t2; }, ConstantStringMap: function ConstantStringMap(t0, t1, t2, t3) { var _ = this; _._length = t0; _._jsObject = t1; _._keys = t2; _.$ti = t3; }, ConstantStringMap_values_closure: function ConstantStringMap_values_closure(t0) { this.$this = t0; }, _ConstantMapKeyIterable: function _ConstantMapKeyIterable(t0, t1) { this._map = t0; this.$ti = t1; }, GeneralConstantMap: function GeneralConstantMap(t0, t1) { this._jsData = t0; this.$ti = t1; }, GeneralConstantMap__typeTest_closure: function GeneralConstantMap__typeTest_closure(t0) { this.T = t0; }, Instantiation: function Instantiation() { }, Instantiation1: function Instantiation1(t0, t1) { this._genericClosure = t0; this.$ti = t1; }, JSInvocationMirror: function JSInvocationMirror(t0, t1, t2, t3, t4) { var _ = this; _.__js_helper$_memberName = t0; _.__js_helper$_kind = t1; _._arguments = t2; _._namedArgumentNames = t3; _._typeArgumentCount = t4; }, Primitives_initTicker_closure: function Primitives_initTicker_closure(t0) { this.performance = t0; }, Primitives_functionNoSuchMethod_closure: function Primitives_functionNoSuchMethod_closure(t0, t1, t2) { this._box_0 = t0; this.namedArgumentList = t1; this.$arguments = t2; }, TypeErrorDecoder: function TypeErrorDecoder(t0, t1, t2, t3, t4, t5) { var _ = this; _._pattern = t0; _._arguments = t1; _._argumentsExpr = t2; _._expr = t3; _._method = t4; _._receiver = t5; }, NullError: function NullError(t0, t1) { this.__js_helper$_message = t0; this._method = t1; }, JsNoSuchMethodError: function JsNoSuchMethodError(t0, t1, t2) { this.__js_helper$_message = t0; this._method = t1; this._receiver = t2; }, UnknownJsTypeError: function UnknownJsTypeError(t0) { this.__js_helper$_message = t0; }, NullThrownFromJavaScriptException: function NullThrownFromJavaScriptException(t0) { this._irritant = t0; }, ExceptionAndStackTrace: function ExceptionAndStackTrace(t0, t1) { this.dartException = t0; this.stackTrace = t1; }, _StackTrace: function _StackTrace(t0) { this._exception = t0; this._trace = null; }, Closure: function Closure() { }, Closure0Args: function Closure0Args() { }, Closure2Args: function Closure2Args() { }, TearOffClosure: function TearOffClosure() { }, StaticClosure: function StaticClosure() { }, BoundClosure: function BoundClosure(t0, t1) { this._receiver = t0; this._interceptor = t1; }, RuntimeError: function RuntimeError(t0) { this.message = t0; }, _Required: function _Required() { }, JsLinkedHashMap: function JsLinkedHashMap(t0) { var _ = this; _._length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t0; }, JsLinkedHashMap_values_closure: function JsLinkedHashMap_values_closure(t0) { this.$this = t0; }, JsLinkedHashMap_containsValue_closure: function JsLinkedHashMap_containsValue_closure(t0, t1) { this.$this = t0; this.value = t1; }, JsLinkedHashMap_addAll_closure: function JsLinkedHashMap_addAll_closure(t0) { this.$this = t0; }, LinkedHashMapCell: function LinkedHashMapCell(t0, t1) { var _ = this; _.hashMapCellKey = t0; _.hashMapCellValue = t1; _._previous = _._next = null; }, LinkedHashMapKeyIterable: function LinkedHashMapKeyIterable(t0, t1) { this._map = t0; this.$ti = t1; }, LinkedHashMapKeyIterator: function LinkedHashMapKeyIterator(t0, t1, t2) { var _ = this; _._map = t0; _._modifications = t1; _.__js_helper$_current = _._cell = null; _.$ti = t2; }, initHooks_closure: function initHooks_closure(t0) { this.getTag = t0; }, initHooks_closure0: function initHooks_closure0(t0) { this.getUnknownTag = t0; }, initHooks_closure1: function initHooks_closure1(t0) { this.prototypeForTag = t0; }, JSSyntaxRegExp: function JSSyntaxRegExp(t0, t1) { var _ = this; _.pattern = t0; _._nativeRegExp = t1; _._nativeAnchoredRegExp = _._nativeGlobalRegExp = null; }, _MatchImplementation: function _MatchImplementation(t0) { this._match = t0; }, _AllMatchesIterable: function _AllMatchesIterable(t0, t1, t2) { this._re = t0; this.__js_helper$_string = t1; this.__js_helper$_start = t2; }, _AllMatchesIterator: function _AllMatchesIterator(t0, t1, t2) { var _ = this; _._regExp = t0; _.__js_helper$_string = t1; _._nextIndex = t2; _.__js_helper$_current = null; }, StringMatch: function StringMatch(t0, t1, t2) { this.start = t0; this.input = t1; this.pattern = t2; }, _StringAllMatchesIterable: function _StringAllMatchesIterable(t0, t1, t2) { this._input = t0; this._pattern = t1; this.__js_helper$_index = t2; }, _StringAllMatchesIterator: function _StringAllMatchesIterator(t0, t1, t2) { var _ = this; _._input = t0; _._pattern = t1; _.__js_helper$_index = t2; _.__js_helper$_current = null; }, throwLateFieldADI(fieldName) { return A.throwExpression(A.LateError$fieldADI(fieldName)); }, _Cell$named(_name) { var t1 = new A._Cell(_name); return t1.__late_helper$_value = t1; }, _InitializedCell$named(_name, _initializer) { var t1 = new A._InitializedCell(_name, _initializer); return t1.__late_helper$_value = t1; }, _lateReadCheck(value, $name) { if (value === $) throw A.wrapException(A.LateError$fieldNI($name)); return value; }, _lateWriteOnceCheck(value, $name) { if (value !== $) throw A.wrapException(new A.LateError("Field '" + $name + "' has already been initialized.")); }, _lateInitializeOnceCheck(value, $name) { if (value !== $) throw A.wrapException(A.LateError$fieldADI($name)); }, _Cell: function _Cell(t0) { this.__late_helper$_name = t0; this.__late_helper$_value = null; }, _InitializedCell: function _InitializedCell(t0, t1) { this.__late_helper$_name = t0; this.__late_helper$_value = null; this.__late_helper$_initializer = t1; }, _checkViewArguments(buffer, offsetInBytes, $length) { if (!A._isInt(offsetInBytes)) throw A.wrapException(A.ArgumentError$("Invalid view offsetInBytes " + A.S(offsetInBytes), null)); }, _ensureNativeList(list) { var t1, result, i; if (type$.JSIndexable_dynamic._is(list)) return list; t1 = J.getInterceptor$asx(list); result = A.List_List$filled(t1.get$length(list), null, false, type$.dynamic); for (i = 0; i < t1.get$length(list); ++i) result[i] = t1.$index(list, i); return result; }, NativeByteData_NativeByteData$view(buffer, offsetInBytes, $length) { A._checkViewArguments(buffer, offsetInBytes, $length); return $length == null ? new DataView(buffer, offsetInBytes) : new DataView(buffer, offsetInBytes, $length); }, NativeFloat32List_NativeFloat32List($length) { return new Float32Array($length); }, NativeFloat32List_NativeFloat32List$fromList(elements) { return new Float32Array(A._ensureNativeList(elements)); }, NativeFloat64List_NativeFloat64List($length) { return new Float64Array($length); }, NativeFloat64List_NativeFloat64List$view(buffer, offsetInBytes, $length) { A._checkViewArguments(buffer, offsetInBytes, $length); if ($length == null) $length = B.JSInt_methods._tdivFast$1(buffer.byteLength - offsetInBytes, 8); return new Float64Array(buffer, offsetInBytes, $length); }, NativeInt32List_NativeInt32List($length) { return new Int32Array($length); }, NativeInt32List_NativeInt32List$view(buffer, offsetInBytes, $length) { A._checkViewArguments(buffer, offsetInBytes, $length); if ($length == null) $length = B.JSInt_methods._tdivFast$1(buffer.byteLength - offsetInBytes, 4); return new Int32Array(buffer, offsetInBytes, $length); }, NativeInt8List__create1(arg) { return new Int8Array(arg); }, NativeUint16List_NativeUint16List$fromList(list) { return new Uint16Array(A._ensureNativeList(list)); }, NativeUint8List_NativeUint8List($length) { if (!A._isInt($length)) A.throwExpression(A.ArgumentError$("Invalid length " + A.S($length), null)); return new Uint8Array($length); }, NativeUint8List_NativeUint8List$view(buffer, offsetInBytes, $length) { A._checkViewArguments(buffer, offsetInBytes, $length); return $length == null ? new Uint8Array(buffer, offsetInBytes) : new Uint8Array(buffer, offsetInBytes, $length); }, _checkValidIndex(index, list, $length) { if (index >>> 0 !== index || index >= $length) throw A.wrapException(A.diagnoseIndexError(list, index)); }, _checkValidRange(start, end, $length) { var t1; if (!(start >>> 0 !== start)) if (end == null) t1 = start > $length; else t1 = end >>> 0 !== end || start > end || end > $length; else t1 = true; if (t1) throw A.wrapException(A.diagnoseRangeError(start, end, $length)); if (end == null) return $length; return end; }, NativeByteBuffer: function NativeByteBuffer() { }, NativeTypedData: function NativeTypedData() { }, NativeByteData: function NativeByteData() { }, NativeTypedArray: function NativeTypedArray() { }, NativeTypedArrayOfDouble: function NativeTypedArrayOfDouble() { }, NativeTypedArrayOfInt: function NativeTypedArrayOfInt() { }, NativeFloat32List: function NativeFloat32List() { }, NativeFloat64List: function NativeFloat64List() { }, NativeInt16List: function NativeInt16List() { }, NativeInt32List: function NativeInt32List() { }, NativeInt8List: function NativeInt8List() { }, NativeUint16List: function NativeUint16List() { }, NativeUint32List: function NativeUint32List() { }, NativeUint8ClampedList: function NativeUint8ClampedList() { }, NativeUint8List: function NativeUint8List() { }, _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin: function _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin() { }, _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin: function _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin() { }, _NativeTypedArrayOfInt_NativeTypedArray_ListMixin: function _NativeTypedArrayOfInt_NativeTypedArray_ListMixin() { }, _NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin: function _NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin() { }, Rti__getQuestionFromStar(universe, rti) { var question = rti._precomputed1; return question == null ? rti._precomputed1 = A._Universe__lookupQuestionRti(universe, rti._primary, true) : question; }, Rti__getFutureFromFutureOr(universe, rti) { var future = rti._precomputed1; return future == null ? rti._precomputed1 = A._Universe__lookupInterfaceRti(universe, "Future", [rti._primary]) : future; }, Rti__isUnionOfFunctionType(rti) { var kind = rti._kind; if (kind === 6 || kind === 7 || kind === 8) return A.Rti__isUnionOfFunctionType(rti._primary); return kind === 11 || kind === 12; }, Rti__getCanonicalRecipe(rti) { return rti._canonicalRecipe; }, findType(recipe) { return A._Universe_eval(init.typeUniverse, recipe, false); }, instantiatedGenericFunctionType(genericFunctionRti, instantiationRti) { var t1, cache, key, probe, rti; if (genericFunctionRti == null) return null; t1 = instantiationRti._rest; cache = genericFunctionRti._bindCache; if (cache == null) cache = genericFunctionRti._bindCache = new Map(); key = instantiationRti._canonicalRecipe; probe = cache.get(key); if (probe != null) return probe; rti = A._substitute(init.typeUniverse, genericFunctionRti._primary, t1, 0); cache.set(key, rti); return rti; }, _substitute(universe, rti, typeArguments, depth) { var baseType, substitutedBaseType, interfaceTypeArguments, substitutedInterfaceTypeArguments, base, substitutedBase, $arguments, substitutedArguments, returnType, substitutedReturnType, functionParameters, substitutedFunctionParameters, bounds, substitutedBounds, index, argument, kind = rti._kind; switch (kind) { case 5: case 1: case 2: case 3: case 4: return rti; case 6: baseType = rti._primary; substitutedBaseType = A._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return A._Universe__lookupStarRti(universe, substitutedBaseType, true); case 7: baseType = rti._primary; substitutedBaseType = A._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return A._Universe__lookupQuestionRti(universe, substitutedBaseType, true); case 8: baseType = rti._primary; substitutedBaseType = A._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return A._Universe__lookupFutureOrRti(universe, substitutedBaseType, true); case 9: interfaceTypeArguments = rti._rest; substitutedInterfaceTypeArguments = A._substituteArray(universe, interfaceTypeArguments, typeArguments, depth); if (substitutedInterfaceTypeArguments === interfaceTypeArguments) return rti; return A._Universe__lookupInterfaceRti(universe, rti._primary, substitutedInterfaceTypeArguments); case 10: base = rti._primary; substitutedBase = A._substitute(universe, base, typeArguments, depth); $arguments = rti._rest; substitutedArguments = A._substituteArray(universe, $arguments, typeArguments, depth); if (substitutedBase === base && substitutedArguments === $arguments) return rti; return A._Universe__lookupBindingRti(universe, substitutedBase, substitutedArguments); case 11: returnType = rti._primary; substitutedReturnType = A._substitute(universe, returnType, typeArguments, depth); functionParameters = rti._rest; substitutedFunctionParameters = A._substituteFunctionParameters(universe, functionParameters, typeArguments, depth); if (substitutedReturnType === returnType && substitutedFunctionParameters === functionParameters) return rti; return A._Universe__lookupFunctionRti(universe, substitutedReturnType, substitutedFunctionParameters); case 12: bounds = rti._rest; depth += bounds.length; substitutedBounds = A._substituteArray(universe, bounds, typeArguments, depth); base = rti._primary; substitutedBase = A._substitute(universe, base, typeArguments, depth); if (substitutedBounds === bounds && substitutedBase === base) return rti; return A._Universe__lookupGenericFunctionRti(universe, substitutedBase, substitutedBounds, true); case 13: index = rti._primary; if (index < depth) return rti; argument = typeArguments[index - depth]; if (argument == null) return rti; return argument; default: throw A.wrapException(A.AssertionError$("Attempted to substitute unexpected RTI kind " + kind)); } }, _substituteArray(universe, rtiArray, typeArguments, depth) { var changed, i, rti, substitutedRti, $length = rtiArray.length, result = A._Utils_newArrayOrEmpty($length); for (changed = false, i = 0; i < $length; ++i) { rti = rtiArray[i]; substitutedRti = A._substitute(universe, rti, typeArguments, depth); if (substitutedRti !== rti) changed = true; result[i] = substitutedRti; } return changed ? result : rtiArray; }, _substituteNamed(universe, namedArray, typeArguments, depth) { var changed, i, t1, t2, rti, substitutedRti, $length = namedArray.length, result = A._Utils_newArrayOrEmpty($length); for (changed = false, i = 0; i < $length; i += 3) { t1 = namedArray[i]; t2 = namedArray[i + 1]; rti = namedArray[i + 2]; substitutedRti = A._substitute(universe, rti, typeArguments, depth); if (substitutedRti !== rti) changed = true; result.splice(i, 3, t1, t2, substitutedRti); } return changed ? result : namedArray; }, _substituteFunctionParameters(universe, functionParameters, typeArguments, depth) { var result, requiredPositional = functionParameters._requiredPositional, substitutedRequiredPositional = A._substituteArray(universe, requiredPositional, typeArguments, depth), optionalPositional = functionParameters._optionalPositional, substitutedOptionalPositional = A._substituteArray(universe, optionalPositional, typeArguments, depth), named = functionParameters._named, substitutedNamed = A._substituteNamed(universe, named, typeArguments, depth); if (substitutedRequiredPositional === requiredPositional && substitutedOptionalPositional === optionalPositional && substitutedNamed === named) return functionParameters; result = new A._FunctionParameters(); result._requiredPositional = substitutedRequiredPositional; result._optionalPositional = substitutedOptionalPositional; result._named = substitutedNamed; return result; }, _setArrayType(target, rti) { target[init.arrayRti] = rti; return target; }, closureFunctionType(closure) { var signature = closure.$signature; if (signature != null) { if (typeof signature == "number") return A.getTypeFromTypesTable(signature); return closure.$signature(); } return null; }, instanceOrFunctionType(object, testRti) { var rti; if (A.Rti__isUnionOfFunctionType(testRti)) if (object instanceof A.Closure) { rti = A.closureFunctionType(object); if (rti != null) return rti; } return A.instanceType(object); }, instanceType(object) { var rti; if (object instanceof A.Object) { rti = object.$ti; return rti != null ? rti : A._instanceTypeFromConstructor(object); } if (Array.isArray(object)) return A._arrayInstanceType(object); return A._instanceTypeFromConstructor(J.getInterceptor$(object)); }, _arrayInstanceType(object) { var rti = object[init.arrayRti], defaultRti = type$.JSArray_dynamic; if (rti == null) return defaultRti; if (rti.constructor !== defaultRti.constructor) return defaultRti; return rti; }, _instanceType(object) { var rti = object.$ti; return rti != null ? rti : A._instanceTypeFromConstructor(object); }, _instanceTypeFromConstructor(instance) { var $constructor = instance.constructor, probe = $constructor.$ccache; if (probe != null) return probe; return A._instanceTypeFromConstructorMiss(instance, $constructor); }, _instanceTypeFromConstructorMiss(instance, $constructor) { var effectiveConstructor = instance instanceof A.Closure ? instance.__proto__.__proto__.constructor : $constructor, rti = A._Universe_findErasedType(init.typeUniverse, effectiveConstructor.name); $constructor.$ccache = rti; return rti; }, getTypeFromTypesTable(index) { var rti, table = init.types, type = table[index]; if (typeof type == "string") { rti = A._Universe_eval(init.typeUniverse, type, false); table[index] = rti; return rti; } return type; }, getRuntimeType(object) { var rti = object instanceof A.Closure ? A.closureFunctionType(object) : null; return A.createRuntimeType(rti == null ? A.instanceType(object) : rti); }, createRuntimeType(rti) { var recipe, starErasedRecipe, starErasedRti, type = rti._cachedRuntimeType; if (type != null) return type; recipe = rti._canonicalRecipe; starErasedRecipe = recipe.replace(/\*/g, ""); if (starErasedRecipe === recipe) return rti._cachedRuntimeType = new A._Type(rti); starErasedRti = A._Universe_eval(init.typeUniverse, starErasedRecipe, true); type = starErasedRti._cachedRuntimeType; return rti._cachedRuntimeType = type == null ? starErasedRti._cachedRuntimeType = new A._Type(starErasedRti) : type; }, typeLiteral(recipe) { return A.createRuntimeType(A._Universe_eval(init.typeUniverse, recipe, false)); }, _installSpecializedIsTest(object) { var unstarred, isFn, $name, testRti = this, t1 = type$.Object; if (testRti === t1) return A._finishIsFn(testRti, object, A._isObject); if (!A.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) t1 = testRti === t1; else t1 = true; else t1 = true; if (t1) return A._finishIsFn(testRti, object, A._isTop); t1 = testRti._kind; unstarred = t1 === 6 ? testRti._primary : testRti; if (unstarred === type$.int) isFn = A._isInt; else if (unstarred === type$.double || unstarred === type$.num) isFn = A._isNum; else if (unstarred === type$.String) isFn = A._isString; else isFn = unstarred === type$.bool ? A._isBool : null; if (isFn != null) return A._finishIsFn(testRti, object, isFn); if (unstarred._kind === 9) { $name = unstarred._primary; if (unstarred._rest.every(A.isTopType)) { testRti._specializedTestResource = "$is" + $name; if ($name === "List") return A._finishIsFn(testRti, object, A._isListTestViaProperty); return A._finishIsFn(testRti, object, A._isTestViaProperty); } } else if (t1 === 7) return A._finishIsFn(testRti, object, A._generalNullableIsTestImplementation); return A._finishIsFn(testRti, object, A._generalIsTestImplementation); }, _finishIsFn(testRti, object, isFn) { testRti._is = isFn; return testRti._is(object); }, _installSpecializedAsCheck(object) { var t1, asFn, testRti = this; if (!A.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) t1 = testRti === type$.Object; else t1 = true; else t1 = true; if (t1) asFn = A._asTop; else if (testRti === type$.Object) asFn = A._asObject; else asFn = A._generalNullableAsCheckImplementation; testRti._as = asFn; return testRti._as(object); }, _nullIs(testRti) { var t1, kind = testRti._kind; if (!A.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) if (!(testRti === type$.legacy_Never)) if (kind !== 7) t1 = kind === 8 && A._nullIs(testRti._primary) || testRti === type$.Null || testRti === type$.JSNull; else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; }, _generalIsTestImplementation(object) { var testRti = this; if (object == null) return A._nullIs(testRti); return A._isSubtype(init.typeUniverse, A.instanceOrFunctionType(object, testRti), null, testRti, null); }, _generalNullableIsTestImplementation(object) { if (object == null) return true; return this._primary._is(object); }, _isTestViaProperty(object) { var tag, testRti = this; if (object == null) return A._nullIs(testRti); tag = testRti._specializedTestResource; if (object instanceof A.Object) return !!object[tag]; return !!J.getInterceptor$(object)[tag]; }, _isListTestViaProperty(object) { var tag, testRti = this; if (object == null) return A._nullIs(testRti); if (typeof object != "object") return false; if (Array.isArray(object)) return true; tag = testRti._specializedTestResource; if (object instanceof A.Object) return !!object[tag]; return !!J.getInterceptor$(object)[tag]; }, _generalAsCheckImplementation(object) { var testRti = this; if (object == null) return object; else if (testRti._is(object)) return object; A._failedAsCheck(object, testRti); }, _generalNullableAsCheckImplementation(object) { var testRti = this; if (object == null) return object; else if (testRti._is(object)) return object; A._failedAsCheck(object, testRti); }, _failedAsCheck(object, testRti) { throw A.wrapException(A._TypeError$fromMessage(A._Error_compose(object, A.instanceOrFunctionType(object, testRti), A._rtiToString(testRti, null)))); }, _Error_compose(object, objectRti, checkedTypeDescription) { var objectDescription = A.Error_safeToString(object); return objectDescription + ": type '" + A.S(A._rtiToString(objectRti == null ? A.instanceType(object) : objectRti, null)) + "' is not a subtype of type '" + A.S(checkedTypeDescription) + "'"; }, _TypeError$fromMessage(message) { return new A._TypeError("TypeError: " + message); }, _TypeError__TypeError$forType(object, type) { return new A._TypeError("TypeError: " + A._Error_compose(object, null, type)); }, _isObject(object) { return object != null; }, _asObject(object) { return object; }, _isTop(object) { return true; }, _asTop(object) { return object; }, _isBool(object) { return true === object || false === object; }, _asBool(object) { if (true === object) return true; if (false === object) return false; throw A.wrapException(A._TypeError__TypeError$forType(object, "bool")); }, _asBoolS(object) { if (true === object) return true; if (false === object) return false; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "bool")); }, _asBoolQ(object) { if (true === object) return true; if (false === object) return false; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "bool?")); }, _asDouble(object) { if (typeof object == "number") return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "double")); }, _asDoubleS(object) { if (typeof object == "number") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "double")); }, _asDoubleQ(object) { if (typeof object == "number") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "double?")); }, _isInt(object) { return typeof object == "number" && Math.floor(object) === object; }, _asInt(object) { if (typeof object == "number" && Math.floor(object) === object) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "int")); }, _asIntS(object) { if (typeof object == "number" && Math.floor(object) === object) return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "int")); }, _asIntQ(object) { if (typeof object == "number" && Math.floor(object) === object) return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "int?")); }, _isNum(object) { return typeof object == "number"; }, _asNum(object) { if (typeof object == "number") return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "num")); }, _asNumS(object) { if (typeof object == "number") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "num")); }, _asNumQ(object) { if (typeof object == "number") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "num?")); }, _isString(object) { return typeof object == "string"; }, _asString(object) { if (typeof object == "string") return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "String")); }, _asStringS(object) { if (typeof object == "string") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "String")); }, _asStringQ(object) { if (typeof object == "string") return object; if (object == null) return object; throw A.wrapException(A._TypeError__TypeError$forType(object, "String?")); }, _rtiArrayToString(array, genericContext) { var s, sep, i; for (s = "", sep = "", i = 0; i < array.length; ++i, sep = ", ") s += B.JSString_methods.$add(sep, A._rtiToString(array[i], genericContext)); return s; }, _functionRtiToString(functionType, genericContext, bounds) { var boundsLength, outerContextLength, offset, i, t1, t2, t3, typeParametersText, typeSep, boundRti, kind, t4, parameters, requiredPositional, requiredPositionalLength, optionalPositional, optionalPositionalLength, named, namedLength, returnTypeText, argumentsText, sep, _s2_ = ", "; if (bounds != null) { boundsLength = bounds.length; if (genericContext == null) { genericContext = A._setArrayType([], type$.JSArray_String); outerContextLength = null; } else outerContextLength = genericContext.length; offset = genericContext.length; for (i = boundsLength; i > 0; --i) genericContext.push("T" + (offset + i)); for (t1 = type$.nullable_Object, t2 = type$.legacy_Object, t3 = type$.Object, typeParametersText = "<", typeSep = "", i = 0; i < boundsLength; ++i, typeSep = _s2_) { typeParametersText = B.JSString_methods.$add(typeParametersText + typeSep, genericContext[genericContext.length - 1 - i]); boundRti = bounds[i]; kind = boundRti._kind; if (!(kind === 2 || kind === 3 || kind === 4 || kind === 5 || boundRti === t1)) if (!(boundRti === t2)) t4 = boundRti === t3; else t4 = true; else t4 = true; if (!t4) typeParametersText += B.JSString_methods.$add(" extends ", A._rtiToString(boundRti, genericContext)); } typeParametersText += ">"; } else { typeParametersText = ""; outerContextLength = null; } t1 = functionType._primary; parameters = functionType._rest; requiredPositional = parameters._requiredPositional; requiredPositionalLength = requiredPositional.length; optionalPositional = parameters._optionalPositional; optionalPositionalLength = optionalPositional.length; named = parameters._named; namedLength = named.length; returnTypeText = A._rtiToString(t1, genericContext); for (argumentsText = "", sep = "", i = 0; i < requiredPositionalLength; ++i, sep = _s2_) argumentsText += B.JSString_methods.$add(sep, A._rtiToString(requiredPositional[i], genericContext)); if (optionalPositionalLength > 0) { argumentsText += sep + "["; for (sep = "", i = 0; i < optionalPositionalLength; ++i, sep = _s2_) argumentsText += B.JSString_methods.$add(sep, A._rtiToString(optionalPositional[i], genericContext)); argumentsText += "]"; } if (namedLength > 0) { argumentsText += sep + "{"; for (sep = "", i = 0; i < namedLength; i += 3, sep = _s2_) { argumentsText += sep; if (named[i + 1]) argumentsText += "required "; argumentsText += J.$add$ansx(A._rtiToString(named[i + 2], genericContext), " ") + named[i]; } argumentsText += "}"; } if (outerContextLength != null) { genericContext.toString; genericContext.length = outerContextLength; } return typeParametersText + "(" + argumentsText + ") => " + A.S(returnTypeText); }, _rtiToString(rti, genericContext) { var s, questionArgument, argumentKind, $name, $arguments, t1, kind = rti._kind; if (kind === 5) return "erased"; if (kind === 2) return "dynamic"; if (kind === 3) return "void"; if (kind === 1) return "Never"; if (kind === 4) return "any"; if (kind === 6) { s = A._rtiToString(rti._primary, genericContext); return s; } if (kind === 7) { questionArgument = rti._primary; s = A._rtiToString(questionArgument, genericContext); argumentKind = questionArgument._kind; return J.$add$ansx(argumentKind === 11 || argumentKind === 12 ? B.JSString_methods.$add("(", s) + ")" : s, "?"); } if (kind === 8) return "FutureOr<" + A.S(A._rtiToString(rti._primary, genericContext)) + ">"; if (kind === 9) { $name = A._unminifyOrTag(rti._primary); $arguments = rti._rest; return $arguments.length > 0 ? $name + ("<" + A._rtiArrayToString($arguments, genericContext) + ">") : $name; } if (kind === 11) return A._functionRtiToString(rti, genericContext, null); if (kind === 12) return A._functionRtiToString(rti._primary, genericContext, rti._rest); if (kind === 13) { genericContext.toString; t1 = rti._primary; return genericContext[genericContext.length - 1 - t1]; } return "?"; }, _unminifyOrTag(rawClassName) { var preserved = init.mangledGlobalNames[rawClassName]; if (preserved != null) return preserved; return rawClassName; }, _Universe_findRule(universe, targetType) { var rule = universe.tR[targetType]; for (; typeof rule == "string";) rule = universe.tR[rule]; return rule; }, _Universe_findErasedType(universe, cls) { var $length, erased, $arguments, i, $interface, metadata = universe.eT, probe = metadata[cls]; if (probe == null) return A._Universe_eval(universe, cls, false); else if (typeof probe == "number") { $length = probe; erased = A._Universe__lookupTerminalRti(universe, 5, "#"); $arguments = A._Utils_newArrayOrEmpty($length); for (i = 0; i < $length; ++i) $arguments[i] = erased; $interface = A._Universe__lookupInterfaceRti(universe, cls, $arguments); metadata[cls] = $interface; return $interface; } else return probe; }, _Universe_addRules(universe, rules) { return A._Utils_objectAssign(universe.tR, rules); }, _Universe_addErasedTypes(universe, types) { return A._Utils_objectAssign(universe.eT, types); }, _Universe_eval(universe, recipe, normalize) { var rti, cache = universe.eC, probe = cache.get(recipe); if (probe != null) return probe; rti = A._Parser_parse(A._Parser_create(universe, null, recipe, normalize)); cache.set(recipe, rti); return rti; }, _Universe_evalInEnvironment(universe, environment, recipe) { var probe, rti, cache = environment._evalCache; if (cache == null) cache = environment._evalCache = new Map(); probe = cache.get(recipe); if (probe != null) return probe; rti = A._Parser_parse(A._Parser_create(universe, environment, recipe, true)); cache.set(recipe, rti); return rti; }, _Universe_bind(universe, environment, argumentsRti) { var argumentsRecipe, probe, rti, cache = environment._bindCache; if (cache == null) cache = environment._bindCache = new Map(); argumentsRecipe = argumentsRti._canonicalRecipe; probe = cache.get(argumentsRecipe); if (probe != null) return probe; rti = A._Universe__lookupBindingRti(universe, environment, argumentsRti._kind === 10 ? argumentsRti._rest : [argumentsRti]); cache.set(argumentsRecipe, rti); return rti; }, _Universe__installTypeTests(universe, rti) { rti._as = A._installSpecializedAsCheck; rti._is = A._installSpecializedIsTest; return rti; }, _Universe__lookupTerminalRti(universe, kind, key) { var rti, t1, probe = universe.eC.get(key); if (probe != null) return probe; rti = new A.Rti(null, null); rti._kind = kind; rti._canonicalRecipe = key; t1 = A._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupStarRti(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "*", probe = universe.eC.get(key); if (probe != null) return probe; t1 = A._Universe__createStarRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createStarRti(universe, baseType, key, normalize) { var baseKind, t1, rti; if (normalize) { baseKind = baseType._kind; if (!A.isStrongTopType(baseType)) t1 = baseType === type$.Null || baseType === type$.JSNull || baseKind === 7 || baseKind === 6; else t1 = true; if (t1) return baseType; } rti = new A.Rti(null, null); rti._kind = 6; rti._primary = baseType; rti._canonicalRecipe = key; return A._Universe__installTypeTests(universe, rti); }, _Universe__lookupQuestionRti(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "?", probe = universe.eC.get(key); if (probe != null) return probe; t1 = A._Universe__createQuestionRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createQuestionRti(universe, baseType, key, normalize) { var baseKind, t1, starArgument, rti; if (normalize) { baseKind = baseType._kind; if (!A.isStrongTopType(baseType)) if (!(baseType === type$.Null || baseType === type$.JSNull)) if (baseKind !== 7) t1 = baseKind === 8 && A.isNullable(baseType._primary); else t1 = true; else t1 = true; else t1 = true; if (t1) return baseType; else if (baseKind === 1 || baseType === type$.legacy_Never) return type$.Null; else if (baseKind === 6) { starArgument = baseType._primary; if (starArgument._kind === 8 && A.isNullable(starArgument._primary)) return starArgument; else return A.Rti__getQuestionFromStar(universe, baseType); } } rti = new A.Rti(null, null); rti._kind = 7; rti._primary = baseType; rti._canonicalRecipe = key; return A._Universe__installTypeTests(universe, rti); }, _Universe__lookupFutureOrRti(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "/", probe = universe.eC.get(key); if (probe != null) return probe; t1 = A._Universe__createFutureOrRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createFutureOrRti(universe, baseType, key, normalize) { var t1, t2, rti; if (normalize) { t1 = baseType._kind; if (!A.isStrongTopType(baseType)) if (!(baseType === type$.legacy_Object)) t2 = baseType === type$.Object; else t2 = true; else t2 = true; if (t2 || baseType === type$.Object) return baseType; else if (t1 === 1) return A._Universe__lookupInterfaceRti(universe, "Future", [baseType]); else if (baseType === type$.Null || baseType === type$.JSNull) return type$.nullable_Future_Null; } rti = new A.Rti(null, null); rti._kind = 8; rti._primary = baseType; rti._canonicalRecipe = key; return A._Universe__installTypeTests(universe, rti); }, _Universe__lookupGenericFunctionParameterRti(universe, index) { var rti, t1, key = "" + index + "^", probe = universe.eC.get(key); if (probe != null) return probe; rti = new A.Rti(null, null); rti._kind = 13; rti._primary = index; rti._canonicalRecipe = key; t1 = A._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__canonicalRecipeJoin($arguments) { var s, sep, i, $length = $arguments.length; for (s = "", sep = "", i = 0; i < $length; ++i, sep = ",") s += sep + $arguments[i]._canonicalRecipe; return s; }, _Universe__canonicalRecipeJoinNamed($arguments) { var s, sep, i, t1, nameSep, $length = $arguments.length; for (s = "", sep = "", i = 0; i < $length; i += 3, sep = ",") { t1 = $arguments[i]; nameSep = $arguments[i + 1] ? "!" : ":"; s += sep + t1 + nameSep + $arguments[i + 2]._canonicalRecipe; } return s; }, _Universe__lookupInterfaceRti(universe, $name, $arguments) { var probe, rti, t1, s = $name; if ($arguments.length > 0) s += "<" + A._Universe__canonicalRecipeJoin($arguments) + ">"; probe = universe.eC.get(s); if (probe != null) return probe; rti = new A.Rti(null, null); rti._kind = 9; rti._primary = $name; rti._rest = $arguments; if ($arguments.length > 0) rti._precomputed1 = $arguments[0]; rti._canonicalRecipe = s; t1 = A._Universe__installTypeTests(universe, rti); universe.eC.set(s, t1); return t1; }, _Universe__lookupBindingRti(universe, base, $arguments) { var newBase, newArguments, key, probe, rti, t1; if (base._kind === 10) { newBase = base._primary; newArguments = base._rest.concat($arguments); } else { newArguments = $arguments; newBase = base; } key = newBase._canonicalRecipe + (";<" + A._Universe__canonicalRecipeJoin(newArguments) + ">"); probe = universe.eC.get(key); if (probe != null) return probe; rti = new A.Rti(null, null); rti._kind = 10; rti._primary = newBase; rti._rest = newArguments; rti._canonicalRecipe = key; t1 = A._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupFunctionRti(universe, returnType, parameters) { var sep, key, probe, rti, t1, s = returnType._canonicalRecipe, requiredPositional = parameters._requiredPositional, requiredPositionalLength = requiredPositional.length, optionalPositional = parameters._optionalPositional, optionalPositionalLength = optionalPositional.length, named = parameters._named, namedLength = named.length, recipe = "(" + A._Universe__canonicalRecipeJoin(requiredPositional); if (optionalPositionalLength > 0) { sep = requiredPositionalLength > 0 ? "," : ""; recipe += sep + "[" + A._Universe__canonicalRecipeJoin(optionalPositional) + "]"; } if (namedLength > 0) { sep = requiredPositionalLength > 0 ? "," : ""; recipe += sep + "{" + A._Universe__canonicalRecipeJoinNamed(named) + "}"; } key = s + (recipe + ")"); probe = universe.eC.get(key); if (probe != null) return probe; rti = new A.Rti(null, null); rti._kind = 11; rti._primary = returnType; rti._rest = parameters; rti._canonicalRecipe = key; t1 = A._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupGenericFunctionRti(universe, baseFunctionType, bounds, normalize) { var t1, key = baseFunctionType._canonicalRecipe + ("<" + A._Universe__canonicalRecipeJoin(bounds) + ">"), probe = universe.eC.get(key); if (probe != null) return probe; t1 = A._Universe__createGenericFunctionRti(universe, baseFunctionType, bounds, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createGenericFunctionRti(universe, baseFunctionType, bounds, key, normalize) { var $length, typeArguments, count, i, bound, substitutedBase, substitutedBounds, rti; if (normalize) { $length = bounds.length; typeArguments = A._Utils_newArrayOrEmpty($length); for (count = 0, i = 0; i < $length; ++i) { bound = bounds[i]; if (bound._kind === 1) { typeArguments[i] = bound; ++count; } } if (count > 0) { substitutedBase = A._substitute(universe, baseFunctionType, typeArguments, 0); substitutedBounds = A._substituteArray(universe, bounds, typeArguments, 0); return A._Universe__lookupGenericFunctionRti(universe, substitutedBase, substitutedBounds, bounds !== substitutedBounds); } } rti = new A.Rti(null, null); rti._kind = 12; rti._primary = baseFunctionType; rti._rest = bounds; rti._canonicalRecipe = key; return A._Universe__installTypeTests(universe, rti); }, _Parser_create(universe, environment, recipe, normalize) { return {u: universe, e: environment, r: recipe, s: [], p: 0, n: normalize}; }, _Parser_parse(parser) { var t1, i, ch, universe, array, head, base, u, parameters, optionalPositional, named, item, source = parser.r, stack = parser.s; for (t1 = source.length, i = 0; i < t1;) { ch = source.charCodeAt(i); if (ch >= 48 && ch <= 57) i = A._Parser_handleDigit(i + 1, ch, source, stack); else if ((((ch | 32) >>> 0) - 97 & 65535) < 26 || ch === 95 || ch === 36) i = A._Parser_handleIdentifier(parser, i, source, stack, false); else if (ch === 46) i = A._Parser_handleIdentifier(parser, i, source, stack, true); else { ++i; switch (ch) { case 44: break; case 58: stack.push(false); break; case 33: stack.push(true); break; case 59: stack.push(A._Parser_toType(parser.u, parser.e, stack.pop())); break; case 94: stack.push(A._Universe__lookupGenericFunctionParameterRti(parser.u, stack.pop())); break; case 35: stack.push(A._Universe__lookupTerminalRti(parser.u, 5, "#")); break; case 64: stack.push(A._Universe__lookupTerminalRti(parser.u, 2, "@")); break; case 126: stack.push(A._Universe__lookupTerminalRti(parser.u, 3, "~")); break; case 60: stack.push(parser.p); parser.p = stack.length; break; case 62: universe = parser.u; array = stack.splice(parser.p); A._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); head = stack.pop(); if (typeof head == "string") stack.push(A._Universe__lookupInterfaceRti(universe, head, array)); else { base = A._Parser_toType(universe, parser.e, head); switch (base._kind) { case 11: stack.push(A._Universe__lookupGenericFunctionRti(universe, base, array, parser.n)); break; default: stack.push(A._Universe__lookupBindingRti(universe, base, array)); break; } } break; case 38: A._Parser_handleExtendedOperations(parser, stack); break; case 42: u = parser.u; stack.push(A._Universe__lookupStarRti(u, A._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 63: u = parser.u; stack.push(A._Universe__lookupQuestionRti(u, A._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 47: u = parser.u; stack.push(A._Universe__lookupFutureOrRti(u, A._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 40: stack.push(parser.p); parser.p = stack.length; break; case 41: universe = parser.u; parameters = new A._FunctionParameters(); optionalPositional = universe.sEA; named = universe.sEA; head = stack.pop(); if (typeof head == "number") switch (head) { case -1: optionalPositional = stack.pop(); break; case -2: named = stack.pop(); break; default: stack.push(head); break; } else stack.push(head); array = stack.splice(parser.p); A._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); parameters._requiredPositional = array; parameters._optionalPositional = optionalPositional; parameters._named = named; stack.push(A._Universe__lookupFunctionRti(universe, A._Parser_toType(universe, parser.e, stack.pop()), parameters)); break; case 91: stack.push(parser.p); parser.p = stack.length; break; case 93: array = stack.splice(parser.p); A._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); stack.push(array); stack.push(-1); break; case 123: stack.push(parser.p); parser.p = stack.length; break; case 125: array = stack.splice(parser.p); A._Parser_toTypesNamed(parser.u, parser.e, array); parser.p = stack.pop(); stack.push(array); stack.push(-2); break; default: throw "Bad character " + ch; } } } item = stack.pop(); return A._Parser_toType(parser.u, parser.e, item); }, _Parser_handleDigit(i, digit, source, stack) { var t1, ch, value = digit - 48; for (t1 = source.length; i < t1; ++i) { ch = source.charCodeAt(i); if (!(ch >= 48 && ch <= 57)) break; value = value * 10 + (ch - 48); } stack.push(value); return i; }, _Parser_handleIdentifier(parser, start, source, stack, hasPeriod) { var t1, ch, t2, string, environment, recipe, i = start + 1; for (t1 = source.length; i < t1; ++i) { ch = source.charCodeAt(i); if (ch === 46) { if (hasPeriod) break; hasPeriod = true; } else { if (!((((ch | 32) >>> 0) - 97 & 65535) < 26 || ch === 95 || ch === 36)) t2 = ch >= 48 && ch <= 57; else t2 = true; if (!t2) break; } } string = source.substring(start, i); if (hasPeriod) { t1 = parser.u; environment = parser.e; if (environment._kind === 10) environment = environment._primary; recipe = A._Universe_findRule(t1, environment._primary)[string]; if (recipe == null) A.throwExpression('No "' + string + '" in "' + A.Rti__getCanonicalRecipe(environment) + '"'); stack.push(A._Universe_evalInEnvironment(t1, environment, recipe)); } else stack.push(string); return i; }, _Parser_handleExtendedOperations(parser, stack) { var $top = stack.pop(); if (0 === $top) { stack.push(A._Universe__lookupTerminalRti(parser.u, 1, "0&")); return; } if (1 === $top) { stack.push(A._Universe__lookupTerminalRti(parser.u, 4, "1&")); return; } throw A.wrapException(A.AssertionError$("Unexpected extended operation " + A.S($top))); }, _Parser_toType(universe, environment, item) { if (typeof item == "string") return A._Universe__lookupInterfaceRti(universe, item, universe.sEA); else if (typeof item == "number") return A._Parser_indexToType(universe, environment, item); else return item; }, _Parser_toTypes(universe, environment, items) { var i, $length = items.length; for (i = 0; i < $length; ++i) items[i] = A._Parser_toType(universe, environment, items[i]); }, _Parser_toTypesNamed(universe, environment, items) { var i, $length = items.length; for (i = 2; i < $length; i += 3) items[i] = A._Parser_toType(universe, environment, items[i]); }, _Parser_indexToType(universe, environment, index) { var typeArguments, len, kind = environment._kind; if (kind === 10) { if (index === 0) return environment._primary; typeArguments = environment._rest; len = typeArguments.length; if (index <= len) return typeArguments[index - 1]; index -= len; environment = environment._primary; kind = environment._kind; } else if (index === 0) return environment; if (kind !== 9) throw A.wrapException(A.AssertionError$("Indexed base must be an interface type")); typeArguments = environment._rest; if (index <= typeArguments.length) return typeArguments[index - 1]; throw A.wrapException(A.AssertionError$("Bad index " + index + " for " + environment.toString$0(0))); }, _isSubtype(universe, s, sEnv, t, tEnv) { var t1, sKind, leftTypeVariable, tKind, sBounds, tBounds, sLength, i, sBound, tBound; if (s === t) return true; if (!A.isStrongTopType(t)) if (!(t === type$.legacy_Object)) t1 = t === type$.Object; else t1 = true; else t1 = true; if (t1) return true; sKind = s._kind; if (sKind === 4) return true; if (A.isStrongTopType(s)) return false; if (s._kind !== 1) t1 = s === type$.Null || s === type$.JSNull; else t1 = true; if (t1) return true; leftTypeVariable = sKind === 13; if (leftTypeVariable) if (A._isSubtype(universe, sEnv[s._primary], sEnv, t, tEnv)) return true; tKind = t._kind; if (sKind === 6) return A._isSubtype(universe, s._primary, sEnv, t, tEnv); if (tKind === 6) { t1 = t._primary; return A._isSubtype(universe, s, sEnv, t1, tEnv); } if (sKind === 8) { if (!A._isSubtype(universe, s._primary, sEnv, t, tEnv)) return false; return A._isSubtype(universe, A.Rti__getFutureFromFutureOr(universe, s), sEnv, t, tEnv); } if (sKind === 7) { t1 = A._isSubtype(universe, s._primary, sEnv, t, tEnv); return t1; } if (tKind === 8) { if (A._isSubtype(universe, s, sEnv, t._primary, tEnv)) return true; return A._isSubtype(universe, s, sEnv, A.Rti__getFutureFromFutureOr(universe, t), tEnv); } if (tKind === 7) { t1 = A._isSubtype(universe, s, sEnv, t._primary, tEnv); return t1; } if (leftTypeVariable) return false; t1 = sKind !== 11; if ((!t1 || sKind === 12) && t === type$.Function) return true; if (tKind === 12) { if (s === type$.JavaScriptFunction) return true; if (sKind !== 12) return false; sBounds = s._rest; tBounds = t._rest; sLength = sBounds.length; if (sLength !== tBounds.length) return false; sEnv = sEnv == null ? sBounds : sBounds.concat(sEnv); tEnv = tEnv == null ? tBounds : tBounds.concat(tEnv); for (i = 0; i < sLength; ++i) { sBound = sBounds[i]; tBound = tBounds[i]; if (!A._isSubtype(universe, sBound, sEnv, tBound, tEnv) || !A._isSubtype(universe, tBound, tEnv, sBound, sEnv)) return false; } return A._isFunctionSubtype(universe, s._primary, sEnv, t._primary, tEnv); } if (tKind === 11) { if (s === type$.JavaScriptFunction) return true; if (t1) return false; return A._isFunctionSubtype(universe, s, sEnv, t, tEnv); } if (sKind === 9) { if (tKind !== 9) return false; return A._isInterfaceSubtype(universe, s, sEnv, t, tEnv); } return false; }, _isFunctionSubtype(universe, s, sEnv, t, tEnv) { var sParameters, tParameters, sRequiredPositional, tRequiredPositional, sRequiredPositionalLength, tRequiredPositionalLength, requiredPositionalDelta, sOptionalPositional, tOptionalPositional, sOptionalPositionalLength, tOptionalPositionalLength, i, t1, sNamed, tNamed, sNamedLength, tNamedLength, sIndex, tIndex, tName, sName; if (!A._isSubtype(universe, s._primary, sEnv, t._primary, tEnv)) return false; sParameters = s._rest; tParameters = t._rest; sRequiredPositional = sParameters._requiredPositional; tRequiredPositional = tParameters._requiredPositional; sRequiredPositionalLength = sRequiredPositional.length; tRequiredPositionalLength = tRequiredPositional.length; if (sRequiredPositionalLength > tRequiredPositionalLength) return false; requiredPositionalDelta = tRequiredPositionalLength - sRequiredPositionalLength; sOptionalPositional = sParameters._optionalPositional; tOptionalPositional = tParameters._optionalPositional; sOptionalPositionalLength = sOptionalPositional.length; tOptionalPositionalLength = tOptionalPositional.length; if (sRequiredPositionalLength + sOptionalPositionalLength < tRequiredPositionalLength + tOptionalPositionalLength) return false; for (i = 0; i < sRequiredPositionalLength; ++i) { t1 = sRequiredPositional[i]; if (!A._isSubtype(universe, tRequiredPositional[i], tEnv, t1, sEnv)) return false; } for (i = 0; i < requiredPositionalDelta; ++i) { t1 = sOptionalPositional[i]; if (!A._isSubtype(universe, tRequiredPositional[sRequiredPositionalLength + i], tEnv, t1, sEnv)) return false; } for (i = 0; i < tOptionalPositionalLength; ++i) { t1 = sOptionalPositional[requiredPositionalDelta + i]; if (!A._isSubtype(universe, tOptionalPositional[i], tEnv, t1, sEnv)) return false; } sNamed = sParameters._named; tNamed = tParameters._named; sNamedLength = sNamed.length; tNamedLength = tNamed.length; for (sIndex = 0, tIndex = 0; tIndex < tNamedLength; tIndex += 3) { tName = tNamed[tIndex]; for (; true;) { if (sIndex >= sNamedLength) return false; sName = sNamed[sIndex]; sIndex += 3; if (tName < sName) return false; if (sName < tName) continue; t1 = sNamed[sIndex - 1]; if (!A._isSubtype(universe, tNamed[tIndex + 2], tEnv, t1, sEnv)) return false; break; } } return true; }, _isInterfaceSubtype(universe, s, sEnv, t, tEnv) { var rule, recipes, $length, supertypeArgs, i, t1, t2, sName = s._primary, tName = t._primary; for (; sName !== tName;) { rule = universe.tR[sName]; if (rule == null) return false; if (typeof rule == "string") { sName = rule; continue; } recipes = rule[tName]; if (recipes == null) return false; $length = recipes.length; supertypeArgs = $length > 0 ? new Array($length) : init.typeUniverse.sEA; for (i = 0; i < $length; ++i) supertypeArgs[i] = A._Universe_evalInEnvironment(universe, s, recipes[i]); return A._areArgumentsSubtypes(universe, supertypeArgs, null, sEnv, t._rest, tEnv); } t1 = s._rest; t2 = t._rest; return A._areArgumentsSubtypes(universe, t1, null, sEnv, t2, tEnv); }, _areArgumentsSubtypes(universe, sArgs, sVariances, sEnv, tArgs, tEnv) { var i, t1, t2, $length = sArgs.length; for (i = 0; i < $length; ++i) { t1 = sArgs[i]; t2 = tArgs[i]; if (!A._isSubtype(universe, t1, sEnv, t2, tEnv)) return false; } return true; }, isNullable(t) { var t1, kind = t._kind; if (!(t === type$.Null || t === type$.JSNull)) if (!A.isStrongTopType(t)) if (kind !== 7) if (!(kind === 6 && A.isNullable(t._primary))) t1 = kind === 8 && A.isNullable(t._primary); else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; }, isTopType(t) { var t1; if (!A.isStrongTopType(t)) if (!(t === type$.legacy_Object)) t1 = t === type$.Object; else t1 = true; else t1 = true; return t1; }, isStrongTopType(t) { var kind = t._kind; return kind === 2 || kind === 3 || kind === 4 || kind === 5 || t === type$.nullable_Object; }, _Utils_objectAssign(o, other) { var i, key, keys = Object.keys(other), $length = keys.length; for (i = 0; i < $length; ++i) { key = keys[i]; o[key] = other[key]; } }, _Utils_newArrayOrEmpty($length) { return $length > 0 ? new Array($length) : init.typeUniverse.sEA; }, Rti: function Rti(t0, t1) { var _ = this; _._as = t0; _._is = t1; _._cachedRuntimeType = _._specializedTestResource = _._precomputed1 = null; _._kind = 0; _._canonicalRecipe = _._bindCache = _._evalCache = _._rest = _._primary = null; }, _FunctionParameters: function _FunctionParameters() { this._named = this._optionalPositional = this._requiredPositional = null; }, _Type: function _Type(t0) { this._rti = t0; }, _Error: function _Error() { }, _TypeError: function _TypeError(t0) { this._message = t0; }, _AsyncRun__initializeScheduleImmediate() { var div, span, t1 = {}; if (self.scheduleImmediate != null) return A.async__AsyncRun__scheduleImmediateJsOverride$closure(); if (self.MutationObserver != null && self.document != null) { div = self.document.createElement("div"); span = self.document.createElement("span"); t1.storedCallback = null; new self.MutationObserver(A.convertDartClosureToJS(new A._AsyncRun__initializeScheduleImmediate_internalCallback(t1), 1)).observe(div, {childList: true}); return new A._AsyncRun__initializeScheduleImmediate_closure(t1, div, span); } else if (self.setImmediate != null) return A.async__AsyncRun__scheduleImmediateWithSetImmediate$closure(); return A.async__AsyncRun__scheduleImmediateWithTimer$closure(); }, _AsyncRun__scheduleImmediateJsOverride(callback) { self.scheduleImmediate(A.convertDartClosureToJS(new A._AsyncRun__scheduleImmediateJsOverride_internalCallback(callback), 0)); }, _AsyncRun__scheduleImmediateWithSetImmediate(callback) { self.setImmediate(A.convertDartClosureToJS(new A._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback(callback), 0)); }, _AsyncRun__scheduleImmediateWithTimer(callback) { A.Timer__createTimer(B.Duration_0, callback); }, Timer__createTimer(duration, callback) { var milliseconds = B.JSInt_methods._tdivFast$1(duration._duration, 1000); return A._TimerImpl$(milliseconds < 0 ? 0 : milliseconds, callback); }, Timer__createPeriodicTimer(duration, callback) { var milliseconds = B.JSInt_methods._tdivFast$1(duration._duration, 1000); return A._TimerImpl$periodic(milliseconds < 0 ? 0 : milliseconds, callback); }, _TimerImpl$(milliseconds, callback) { var t1 = new A._TimerImpl(true); t1._TimerImpl$2(milliseconds, callback); return t1; }, _TimerImpl$periodic(milliseconds, callback) { var t1 = new A._TimerImpl(false); t1._TimerImpl$periodic$2(milliseconds, callback); return t1; }, _makeAsyncAwaitCompleter($T) { return new A._AsyncAwaitCompleter(new A._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncAwaitCompleter<0>")); }, _asyncStartSync(bodyFunction, completer) { bodyFunction.call$2(0, null); completer.isSync = true; return completer._future; }, _asyncAwait(object, bodyFunction) { A._awaitOnObject(object, bodyFunction); }, _asyncReturn(object, completer) { completer.complete$1(0, object); }, _asyncRethrow(object, completer) { completer.completeError$2(A.unwrapException(object), A.getTraceFromException(object)); }, _awaitOnObject(object, bodyFunction) { var t1, future, thenCallback = new A._awaitOnObject_closure(bodyFunction), errorCallback = new A._awaitOnObject_closure0(bodyFunction); if (object instanceof A._Future) object._thenAwait$1$2(thenCallback, errorCallback, type$.dynamic); else { t1 = type$.dynamic; if (type$.Future_dynamic._is(object)) object.then$1$2$onError(0, thenCallback, errorCallback, t1); else { future = new A._Future($.Zone__current, type$._Future_dynamic); future._state = 8; future._resultOrListeners = object; future._thenAwait$1$2(thenCallback, errorCallback, t1); } } }, _wrapJsFunctionForAsync($function) { var $protected = function(fn, ERROR) { return function(errorCode, result) { while (true) try { fn(errorCode, result); break; } catch (error) { result = error; errorCode = ERROR; } }; }($function, 1); return $.Zone__current.registerBinaryCallback$3$1(new A._wrapJsFunctionForAsync_closure($protected), type$.void, type$.int, type$.dynamic); }, _asyncStarHelper(object, bodyFunctionOrErrorCode, controller) { var t1, t2, stream, _s10_ = "controller"; if (bodyFunctionOrErrorCode === 0) { t1 = controller.cancelationFuture; if (t1 != null) t1._completeWithValue$1(null); else A._lateReadCheck(controller.___AsyncStarStreamController_controller, _s10_).close$0(0); return; } else if (bodyFunctionOrErrorCode === 1) { t1 = controller.cancelationFuture; if (t1 != null) t1._completeError$2(A.unwrapException(object), A.getTraceFromException(object)); else { t1 = A.unwrapException(object); t2 = A.getTraceFromException(object); A._lateReadCheck(controller.___AsyncStarStreamController_controller, _s10_).addError$2(t1, t2); A._lateReadCheck(controller.___AsyncStarStreamController_controller, _s10_).close$0(0); } return; } if (object instanceof A._IterationMarker) { if (controller.cancelationFuture != null) { bodyFunctionOrErrorCode.call$2(2, null); return; } t1 = object.state; if (t1 === 0) { t1 = object.value; A._lateReadCheck(controller.___AsyncStarStreamController_controller, _s10_).add$1(0, t1); A.scheduleMicrotask(new A._asyncStarHelper_closure(controller, bodyFunctionOrErrorCode)); return; } else if (t1 === 1) { stream = object.value; A._lateReadCheck(controller.___AsyncStarStreamController_controller, _s10_).addStream$2$cancelOnError(0, stream, false).then$1$1(0, new A._asyncStarHelper_closure0(controller, bodyFunctionOrErrorCode), type$.Null); return; } } A._awaitOnObject(object, bodyFunctionOrErrorCode); }, _streamOfController(controller) { var t1 = A._lateReadCheck(controller.___AsyncStarStreamController_controller, "controller"); return new A._ControllerStream(t1, A._instanceType(t1)._eval$1("_ControllerStream<1>")); }, _AsyncStarStreamController$(body, $T) { var t1 = new A._AsyncStarStreamController($T._eval$1("_AsyncStarStreamController<0>")); t1._AsyncStarStreamController$1(body, $T); return t1; }, _makeAsyncStarStreamController(body, $T) { return A._AsyncStarStreamController$(body, $T); }, _IterationMarker_yieldStar(values) { return new A._IterationMarker(values, 1); }, _IterationMarker_endOfIteration() { return B._IterationMarker_null_2; }, _IterationMarker_yieldSingle(value) { return new A._IterationMarker(value, 0); }, _IterationMarker_uncaughtError(error) { return new A._IterationMarker(error, 3); }, _makeSyncStarIterable(body, $T) { return new A._SyncStarIterable(body, $T._eval$1("_SyncStarIterable<0>")); }, AsyncError$(error, stackTrace) { var t1 = A.checkNotNullable(error, "error", type$.Object); return new A.AsyncError(t1, stackTrace == null ? A.AsyncError_defaultStackTrace(error) : stackTrace); }, AsyncError_defaultStackTrace(error) { var stackTrace; if (type$.Error._is(error)) { stackTrace = error.get$stackTrace(); if (stackTrace != null) return stackTrace; } return B._StringStackTrace_3uE; }, Future_Future(computation, $T) { var result = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); A.Timer_Timer(B.Duration_0, new A.Future_Future_closure(result, computation)); return result; }, Future_Future$microtask(computation, $T) { var result = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); A.scheduleMicrotask(new A.Future_Future$microtask_closure(result, computation)); return result; }, Future_Future$sync(computation, $T) { var result, error, stackTrace, future, replacement, t1, exception; try { result = computation.call$0(); if ($T._eval$1("Future<0>")._is(result)) return result; else { t1 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1._state = 8; t1._resultOrListeners = result; return t1; } } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); t1 = $.Zone__current; future = new A._Future(t1, $T._eval$1("_Future<0>")); replacement = t1.errorCallback$2(error, stackTrace); if (replacement != null) future._asyncCompleteError$2(replacement.error, replacement.stackTrace); else future._asyncCompleteError$2(error, stackTrace); return future; } }, Future_Future$value(value, $T) { var t1 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1._asyncComplete$1(value); return t1; }, Future_Future$error(error, stackTrace, $T) { var t1, replacement; A.checkNotNullable(error, "error", type$.Object); t1 = $.Zone__current; if (t1 !== B.C__RootZone) { replacement = t1.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } } if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); t1 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1._asyncCompleteError$2(error, stackTrace); return t1; }, Future_Future$delayed(duration, computation, $T) { var result; computation == null; result = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); A.Timer_Timer(duration, new A.Future_Future$delayed_closure(computation, result, $T)); return result; }, Future_wait(futures, $T) { var error, stackTrace, handleError, future, pos, e, st, t1, t2, exception, _box_0 = {}, cleanUp = null, eagerError = false, _future = new A._Future($.Zone__current, $T._eval$1("_Future>")); _box_0.values = null; _box_0.remaining = 0; error = A._Cell$named("error"); stackTrace = A._Cell$named("stackTrace"); handleError = new A.Future_wait_handleError(_box_0, cleanUp, eagerError, _future, error, stackTrace); try { for (t1 = J.get$iterator$ax(futures), t2 = type$.Null; t1.moveNext$0();) { future = t1.get$current(t1); pos = _box_0.remaining; J.then$1$2$onError$x(future, new A.Future_wait_closure(_box_0, pos, _future, cleanUp, eagerError, error, stackTrace, $T), handleError, t2); ++_box_0.remaining; } t1 = _box_0.remaining; if (t1 === 0) { t1 = _future; t1._completeWithValue$1(A._setArrayType([], $T._eval$1("JSArray<0>"))); return t1; } _box_0.values = A.List_List$filled(t1, null, false, $T._eval$1("0?")); } catch (exception) { e = A.unwrapException(exception); st = A.getTraceFromException(exception); if (_box_0.remaining === 0 || eagerError) return A.Future_Future$error(e, st, $T._eval$1("List<0>")); else { error.__late_helper$_value = e; stackTrace.__late_helper$_value = st; } } return _future; }, Completer_Completer($T) { return new A._AsyncCompleter(new A._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncCompleter<0>")); }, _completeWithErrorCallback(result, error, stackTrace) { var replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); result._completeError$2(error, stackTrace); }, _Future$zoneValue(value, _zone, $T) { var t1 = new A._Future(_zone, $T._eval$1("_Future<0>")); t1._state = 8; t1._resultOrListeners = value; return t1; }, _Future__chainCoreFuture(source, target) { var t1, listeners; for (; t1 = source._state, (t1 & 4) !== 0;) source = source._resultOrListeners; if ((t1 & 24) !== 0) { listeners = target._removeListeners$0(); target._cloneResult$1(source); A._Future__propagateToListeners(target, listeners); } else { listeners = target._resultOrListeners; target._state = target._state & 1 | 4; target._resultOrListeners = source; source._prependListeners$1(listeners); } }, _Future__propagateToListeners(source, listeners) { var t2, _box_0, t3, t4, hasError, nextListener, nextListener0, sourceResult, t5, zone, oldZone, result, current, _box_1 = {}, t1 = _box_1.source = source; for (t2 = type$.Future_dynamic; true;) { _box_0 = {}; t3 = t1._state; t4 = (t3 & 16) === 0; hasError = !t4; if (listeners == null) { if (hasError && (t3 & 1) === 0) { t2 = t1._resultOrListeners; t1._zone.handleUncaughtError$2(t2.error, t2.stackTrace); } return; } _box_0.listener = listeners; nextListener = listeners._nextListener; for (t1 = listeners; nextListener != null; t1 = nextListener, nextListener = nextListener0) { t1._nextListener = null; A._Future__propagateToListeners(_box_1.source, t1); _box_0.listener = nextListener; nextListener0 = nextListener._nextListener; } t3 = _box_1.source; sourceResult = t3._resultOrListeners; _box_0.listenerHasError = hasError; _box_0.listenerValueOrError = sourceResult; if (t4) { t5 = t1.state; t5 = (t5 & 1) !== 0 || (t5 & 15) === 8; } else t5 = true; if (t5) { zone = t1.result._zone; if (hasError) { t1 = t3._zone; t1.toString; t1 = !(t1 === zone || t1.get$errorZone() === zone.get$errorZone()); } else t1 = false; if (t1) { t1 = _box_1.source; t2 = t1._resultOrListeners; t1._zone.handleUncaughtError$2(t2.error, t2.stackTrace); return; } oldZone = $.Zone__current; if (oldZone != zone) $.Zone__current = zone; else oldZone = null; t1 = _box_0.listener.state; if ((t1 & 15) === 8) new A._Future__propagateToListeners_handleWhenCompleteCallback(_box_0, _box_1, hasError).call$0(); else if (t4) { if ((t1 & 1) !== 0) new A._Future__propagateToListeners_handleValueCallback(_box_0, sourceResult).call$0(); } else if ((t1 & 2) !== 0) new A._Future__propagateToListeners_handleError(_box_1, _box_0).call$0(); if (oldZone != null) $.Zone__current = oldZone; t1 = _box_0.listenerValueOrError; if (t2._is(t1)) { t3 = _box_0.listener.$ti; t3 = t3._eval$1("Future<2>")._is(t1) || !t3._rest[1]._is(t1); } else t3 = false; if (t3) { result = _box_0.listener.result; if (t1 instanceof A._Future) if ((t1._state & 24) !== 0) { current = result._resultOrListeners; result._resultOrListeners = null; listeners = result._reverseListeners$1(current); result._state = t1._state & 30 | result._state & 1; result._resultOrListeners = t1._resultOrListeners; _box_1.source = t1; continue; } else A._Future__chainCoreFuture(t1, result); else result._chainForeignFuture$1(t1); return; } } result = _box_0.listener.result; current = result._resultOrListeners; result._resultOrListeners = null; listeners = result._reverseListeners$1(current); t1 = _box_0.listenerHasError; t3 = _box_0.listenerValueOrError; if (!t1) { result._state = 8; result._resultOrListeners = t3; } else { result._state = result._state & 1 | 16; result._resultOrListeners = t3; } _box_1.source = result; t1 = result; } }, _registerErrorHandler(errorHandler, zone) { if (type$.dynamic_Function_Object_StackTrace._is(errorHandler)) return zone.registerBinaryCallback$3$1(errorHandler, type$.dynamic, type$.Object, type$.StackTrace); if (type$.dynamic_Function_Object._is(errorHandler)) return zone.registerUnaryCallback$2$1(errorHandler, type$.dynamic, type$.Object); throw A.wrapException(A.ArgumentError$value(errorHandler, "onError", string$.Error_)); }, _microtaskLoop() { var entry, next; for (entry = $._nextCallback; entry != null; entry = $._nextCallback) { $._lastPriorityCallback = null; next = entry.next; $._nextCallback = next; if (next == null) $._lastCallback = null; entry.callback.call$0(); } }, _startMicrotaskLoop() { $._isInCallbackLoop = true; try { A._microtaskLoop(); } finally { $._lastPriorityCallback = null; $._isInCallbackLoop = false; if ($._nextCallback != null) $.$get$_AsyncRun__scheduleImmediateClosure().call$1(A.async___startMicrotaskLoop$closure()); } }, _scheduleAsyncCallback(callback) { var newEntry = new A._AsyncCallbackEntry(callback), lastCallback = $._lastCallback; if (lastCallback == null) { $._nextCallback = $._lastCallback = newEntry; if (!$._isInCallbackLoop) $.$get$_AsyncRun__scheduleImmediateClosure().call$1(A.async___startMicrotaskLoop$closure()); } else $._lastCallback = lastCallback.next = newEntry; }, _schedulePriorityAsyncCallback(callback) { var entry, lastPriorityCallback, next, t1 = $._nextCallback; if (t1 == null) { A._scheduleAsyncCallback(callback); $._lastPriorityCallback = $._lastCallback; return; } entry = new A._AsyncCallbackEntry(callback); lastPriorityCallback = $._lastPriorityCallback; if (lastPriorityCallback == null) { entry.next = t1; $._nextCallback = $._lastPriorityCallback = entry; } else { next = lastPriorityCallback.next; entry.next = next; $._lastPriorityCallback = lastPriorityCallback.next = entry; if (next == null) $._lastCallback = entry; } }, scheduleMicrotask(callback) { var t1, _null = null, currentZone = $.Zone__current; if (B.C__RootZone === currentZone) { A._rootScheduleMicrotask(_null, _null, B.C__RootZone, callback); return; } if (B.C__RootZone === currentZone.get$_scheduleMicrotask().zone) t1 = B.C__RootZone.get$errorZone() === currentZone.get$errorZone(); else t1 = false; if (t1) { A._rootScheduleMicrotask(_null, _null, currentZone, currentZone.registerCallback$1$1(callback, type$.void)); return; } t1 = $.Zone__current; t1.scheduleMicrotask$1(t1.bindCallbackGuarded$1(callback)); }, Stream_Stream$value(value, $T) { var _null = null, t1 = $T._eval$1("_AsyncStreamController<0>"), t2 = new A._AsyncStreamController(_null, _null, _null, _null, t1); t2._async$_add$1(0, value); t2._closeUnchecked$0(); return new A._ControllerStream(t2, t1._eval$1("_ControllerStream<1>")); }, Stream_Stream$fromFuture(future, $T) { var _null = null, t1 = $T._eval$1("_SyncStreamController<0>"), controller = new A._SyncStreamController(_null, _null, _null, _null, t1); future.then$1$2$onError(0, new A.Stream_Stream$fromFuture_closure(controller, $T), new A.Stream_Stream$fromFuture_closure0(controller), type$.Null); return new A._ControllerStream(controller, t1._eval$1("_ControllerStream<1>")); }, StreamIterator_StreamIterator(stream, $T) { return new A._StreamIterator(A.checkNotNullable(stream, "stream", type$.Object), $T._eval$1("_StreamIterator<0>")); }, StreamController_StreamController(onCancel, onListen, onResume, sync, $T) { return sync ? new A._SyncStreamController(onListen, null, onResume, onCancel, $T._eval$1("_SyncStreamController<0>")) : new A._AsyncStreamController(onListen, null, onResume, onCancel, $T._eval$1("_AsyncStreamController<0>")); }, StreamController_StreamController$broadcast(onCancel, onListen, sync, $T) { return sync ? new A._SyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_SyncBroadcastStreamController<0>")) : new A._AsyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_AsyncBroadcastStreamController<0>")); }, _runGuarded(notificationHandler) { var e, s, exception; if (notificationHandler == null) return; try { notificationHandler.call$0(); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); $.Zone__current.handleUncaughtError$2(e, s); } }, _ControllerSubscription$(_controller, onData, onError, onDone, cancelOnError, $T) { var t1 = $.Zone__current, t2 = cancelOnError ? 1 : 0; return new A._ControllerSubscription(_controller, A._BufferingStreamSubscription__registerDataHandler(t1, onData, $T), A._BufferingStreamSubscription__registerErrorHandler(t1, onError), A._BufferingStreamSubscription__registerDoneHandler(t1, onDone), t1, t2, $T._eval$1("_ControllerSubscription<0>")); }, _AddStreamState$(controller, source, cancelOnError, $T) { var t1 = $.Zone__current, t2 = controller.get$_async$_add(controller), t3 = controller.get$_addError(); return new A._AddStreamState(new A._Future(t1, type$._Future_dynamic), source.listen$4$cancelOnError$onDone$onError(0, t2, false, controller.get$_async$_close(), t3), $T._eval$1("_AddStreamState<0>")); }, _AddStreamState_makeErrorHandler(controller) { return new A._AddStreamState_makeErrorHandler_closure(controller); }, _BufferingStreamSubscription$(onData, onError, onDone, cancelOnError, $T) { var t1 = $.Zone__current, t2 = cancelOnError ? 1 : 0; return new A._BufferingStreamSubscription(A._BufferingStreamSubscription__registerDataHandler(t1, onData, $T), A._BufferingStreamSubscription__registerErrorHandler(t1, onError), A._BufferingStreamSubscription__registerDoneHandler(t1, onDone), t1, t2, $T._eval$1("_BufferingStreamSubscription<0>")); }, _BufferingStreamSubscription__registerDataHandler(zone, handleData, $T) { var t1 = handleData == null ? A.async___nullDataHandler$closure() : handleData; return zone.registerUnaryCallback$2$1(t1, type$.void, $T); }, _BufferingStreamSubscription__registerErrorHandler(zone, handleError) { if (handleError == null) handleError = A.async___nullErrorHandler$closure(); if (type$.void_Function_Object_StackTrace._is(handleError)) return zone.registerBinaryCallback$3$1(handleError, type$.dynamic, type$.Object, type$.StackTrace); if (type$.void_Function_Object._is(handleError)) return zone.registerUnaryCallback$2$1(handleError, type$.dynamic, type$.Object); throw A.wrapException(A.ArgumentError$("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.", null)); }, _BufferingStreamSubscription__registerDoneHandler(zone, handleDone) { var t1 = handleDone == null ? A.async___nullDoneHandler$closure() : handleDone; return zone.registerCallback$1$1(t1, type$.void); }, _nullDataHandler(value) { }, _nullErrorHandler(error, stackTrace) { $.Zone__current.handleUncaughtError$2(error, stackTrace); }, _nullDoneHandler() { }, _DoneStreamSubscription$(_onDone, $T) { var t1 = new A._DoneStreamSubscription($.Zone__current, _onDone, $T._eval$1("_DoneStreamSubscription<0>")); t1._schedule$0(); return t1; }, _runUserCode(userCode, onSuccess, onError) { var e, s, replacement, error, stackTrace, exception; try { onSuccess.call$1(userCode.call$0()); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); replacement = $.Zone__current.errorCallback$2(e, s); if (replacement == null) onError.call$2(e, s); else { error = replacement.error; stackTrace = replacement.stackTrace; onError.call$2(error, stackTrace); } } }, _cancelAndError(subscription, future, error, stackTrace) { var cancelFuture = subscription.cancel$0(0); if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(new A._cancelAndError_closure(future, error, stackTrace)); else future._completeError$2(error, stackTrace); }, _cancelAndErrorClosure(subscription, future) { return new A._cancelAndErrorClosure_closure(subscription, future); }, _cancelAndValue(subscription, future, value) { var cancelFuture = subscription.cancel$0(0); if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(new A._cancelAndValue_closure(future, value)); else future._complete$1(value); }, _addErrorWithReplacement(sink, error, stackTrace) { var replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } sink._addError$2(error, stackTrace); }, _StreamHandlerTransformer$(handleData, handleDone, handleError, $S, $T) { return new A._StreamHandlerTransformer(new A._StreamHandlerTransformer_closure(handleData, handleError, handleDone, $T, $S), $S._eval$1("@<0>")._bind$1($T)._eval$1("_StreamHandlerTransformer<1,2>")); }, Timer_Timer(duration, callback) { var t1 = $.Zone__current; if (t1 === B.C__RootZone) return t1.createTimer$2(duration, callback); return t1.createTimer$2(duration, t1.bindCallbackGuarded$1(callback)); }, Timer_Timer$periodic(duration, callback) { var boundCallback, t1 = $.Zone__current; if (t1 === B.C__RootZone) return t1.createPeriodicTimer$2(duration, callback); boundCallback = t1.bindUnaryCallbackGuarded$1$1(callback, type$.Timer); return $.Zone__current.createPeriodicTimer$2(duration, boundCallback); }, _rootHandleError(error, stackTrace) { A._schedulePriorityAsyncCallback(new A._rootHandleError_closure(error, stackTrace)); }, _rootRun($self, $parent, zone, f) { var old, t1 = $.Zone__current; if (t1 == zone) return f.call$0(); if (!(zone instanceof A._Zone)) throw A.wrapException(A.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$0(); return t1; } finally { $.Zone__current = old; } }, _rootRunUnary($self, $parent, zone, f, arg) { var old, t1 = $.Zone__current; if (t1 == zone) return f.call$1(arg); if (!(zone instanceof A._Zone)) throw A.wrapException(A.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$1(arg); return t1; } finally { $.Zone__current = old; } }, _rootRunBinary($self, $parent, zone, f, arg1, arg2) { var old, t1 = $.Zone__current; if (t1 == zone) return f.call$2(arg1, arg2); if (!(zone instanceof A._Zone)) throw A.wrapException(A.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$2(arg1, arg2); return t1; } finally { $.Zone__current = old; } }, _rootScheduleMicrotask($self, $parent, zone, f) { var t1, t2; if (B.C__RootZone !== zone) { t1 = B.C__RootZone.get$errorZone(); t2 = zone.get$errorZone(); f = t1 !== t2 ? zone.bindCallbackGuarded$1(f) : zone.bindCallback$1$1(f, type$.void); } A._scheduleAsyncCallback(f); }, _AsyncRun__initializeScheduleImmediate_internalCallback: function _AsyncRun__initializeScheduleImmediate_internalCallback(t0) { this._box_0 = t0; }, _AsyncRun__initializeScheduleImmediate_closure: function _AsyncRun__initializeScheduleImmediate_closure(t0, t1, t2) { this._box_0 = t0; this.div = t1; this.span = t2; }, _AsyncRun__scheduleImmediateJsOverride_internalCallback: function _AsyncRun__scheduleImmediateJsOverride_internalCallback(t0) { this.callback = t0; }, _AsyncRun__scheduleImmediateWithSetImmediate_internalCallback: function _AsyncRun__scheduleImmediateWithSetImmediate_internalCallback(t0) { this.callback = t0; }, _TimerImpl: function _TimerImpl(t0) { this._once = t0; this._handle = null; this._tick = 0; }, _TimerImpl_internalCallback: function _TimerImpl_internalCallback(t0, t1) { this.$this = t0; this.callback = t1; }, _TimerImpl$periodic_closure: function _TimerImpl$periodic_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.milliseconds = t1; _.start = t2; _.callback = t3; }, _AsyncAwaitCompleter: function _AsyncAwaitCompleter(t0, t1) { this._future = t0; this.isSync = false; this.$ti = t1; }, _awaitOnObject_closure: function _awaitOnObject_closure(t0) { this.bodyFunction = t0; }, _awaitOnObject_closure0: function _awaitOnObject_closure0(t0) { this.bodyFunction = t0; }, _wrapJsFunctionForAsync_closure: function _wrapJsFunctionForAsync_closure(t0) { this.$protected = t0; }, _asyncStarHelper_closure: function _asyncStarHelper_closure(t0, t1) { this.controller = t0; this.bodyFunction = t1; }, _asyncStarHelper_closure0: function _asyncStarHelper_closure0(t0, t1) { this.controller = t0; this.bodyFunction = t1; }, _AsyncStarStreamController: function _AsyncStarStreamController(t0) { var _ = this; _.___AsyncStarStreamController_controller = $; _.isSuspended = false; _.cancelationFuture = null; _.$ti = t0; }, _AsyncStarStreamController__resumeBody: function _AsyncStarStreamController__resumeBody(t0) { this.body = t0; }, _AsyncStarStreamController__resumeBody_closure: function _AsyncStarStreamController__resumeBody_closure(t0) { this.body = t0; }, _AsyncStarStreamController_closure0: function _AsyncStarStreamController_closure0(t0) { this._resumeBody = t0; }, _AsyncStarStreamController_closure1: function _AsyncStarStreamController_closure1(t0, t1) { this.$this = t0; this._resumeBody = t1; }, _AsyncStarStreamController_closure: function _AsyncStarStreamController_closure(t0, t1) { this.$this = t0; this.body = t1; }, _AsyncStarStreamController__closure: function _AsyncStarStreamController__closure(t0) { this.body = t0; }, _IterationMarker: function _IterationMarker(t0, t1) { this.value = t0; this.state = t1; }, _SyncStarIterator: function _SyncStarIterator(t0, t1) { var _ = this; _._body = t0; _._suspendedBodies = _._nestedIterator = _._async$_current = null; _.$ti = t1; }, _SyncStarIterable: function _SyncStarIterable(t0, t1) { this._outerHelper = t0; this.$ti = t1; }, AsyncError: function AsyncError(t0, t1) { this.error = t0; this.stackTrace = t1; }, _BroadcastStream: function _BroadcastStream(t0, t1) { this._async$_controller = t0; this.$ti = t1; }, _BroadcastSubscription: function _BroadcastSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._eventState = 0; _._async$_previous = _._async$_next = null; _._async$_controller = t0; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _BroadcastStreamController: function _BroadcastStreamController() { }, _SyncBroadcastStreamController: function _SyncBroadcastStreamController(t0, t1, t2) { var _ = this; _.onListen = t0; _.onCancel = t1; _._state = 0; _._doneFuture = _._addStreamState = _._lastSubscription = _._firstSubscription = null; _.$ti = t2; }, _SyncBroadcastStreamController__sendData_closure: function _SyncBroadcastStreamController__sendData_closure(t0, t1) { this.$this = t0; this.data = t1; }, _SyncBroadcastStreamController__sendError_closure: function _SyncBroadcastStreamController__sendError_closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _SyncBroadcastStreamController__sendDone_closure: function _SyncBroadcastStreamController__sendDone_closure(t0) { this.$this = t0; }, _AsyncBroadcastStreamController: function _AsyncBroadcastStreamController(t0, t1, t2) { var _ = this; _.onListen = t0; _.onCancel = t1; _._state = 0; _._doneFuture = _._addStreamState = _._lastSubscription = _._firstSubscription = null; _.$ti = t2; }, Future_Future_closure: function Future_Future_closure(t0, t1) { this.result = t0; this.computation = t1; }, Future_Future$microtask_closure: function Future_Future$microtask_closure(t0, t1) { this.result = t0; this.computation = t1; }, Future_Future$delayed_closure: function Future_Future$delayed_closure(t0, t1, t2) { this.computation = t0; this.result = t1; this.T = t2; }, Future_wait_handleError: function Future_wait_handleError(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.cleanUp = t1; _.eagerError = t2; _._future = t3; _.error = t4; _.stackTrace = t5; }, Future_wait_closure: function Future_wait_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _.pos = t1; _._future = t2; _.cleanUp = t3; _.eagerError = t4; _.error = t5; _.stackTrace = t6; _.T = t7; }, TimeoutException: function TimeoutException(t0, t1) { this.message = t0; this.duration = t1; }, _Completer: function _Completer() { }, _AsyncCompleter: function _AsyncCompleter(t0, t1) { this.future = t0; this.$ti = t1; }, _SyncCompleter: function _SyncCompleter(t0, t1) { this.future = t0; this.$ti = t1; }, _FutureListener: function _FutureListener(t0, t1, t2, t3, t4) { var _ = this; _._nextListener = null; _.result = t0; _.state = t1; _.callback = t2; _.errorCallback = t3; _.$ti = t4; }, _Future: function _Future(t0, t1) { var _ = this; _._state = 0; _._zone = t0; _._resultOrListeners = null; _.$ti = t1; }, _Future__addListener_closure: function _Future__addListener_closure(t0, t1) { this.$this = t0; this.listener = t1; }, _Future__prependListeners_closure: function _Future__prependListeners_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _Future__chainForeignFuture_closure: function _Future__chainForeignFuture_closure(t0) { this.$this = t0; }, _Future__chainForeignFuture_closure0: function _Future__chainForeignFuture_closure0(t0) { this.$this = t0; }, _Future__chainForeignFuture_closure1: function _Future__chainForeignFuture_closure1(t0, t1, t2) { this.$this = t0; this.e = t1; this.s = t2; }, _Future__asyncCompleteWithValue_closure: function _Future__asyncCompleteWithValue_closure(t0, t1) { this.$this = t0; this.value = t1; }, _Future__chainFuture_closure: function _Future__chainFuture_closure(t0, t1) { this.$this = t0; this.value = t1; }, _Future__asyncCompleteError_closure: function _Future__asyncCompleteError_closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _Future__propagateToListeners_handleWhenCompleteCallback: function _Future__propagateToListeners_handleWhenCompleteCallback(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.hasError = t2; }, _Future__propagateToListeners_handleWhenCompleteCallback_closure: function _Future__propagateToListeners_handleWhenCompleteCallback_closure(t0) { this.originalSource = t0; }, _Future__propagateToListeners_handleValueCallback: function _Future__propagateToListeners_handleValueCallback(t0, t1) { this._box_0 = t0; this.sourceResult = t1; }, _Future__propagateToListeners_handleError: function _Future__propagateToListeners_handleError(t0, t1) { this._box_1 = t0; this._box_0 = t1; }, _Future_timeout_closure: function _Future_timeout_closure(t0, t1) { this._future = t0; this.timeLimit = t1; }, _Future_timeout_closure0: function _Future_timeout_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this._future = t2; }, _Future_timeout_closure1: function _Future_timeout_closure1(t0, t1) { this._box_0 = t0; this._future = t1; }, _AsyncCallbackEntry: function _AsyncCallbackEntry(t0) { this.callback = t0; this.next = null; }, Stream: function Stream() { }, Stream_Stream$fromFuture_closure: function Stream_Stream$fromFuture_closure(t0, t1) { this.controller = t0; this.T = t1; }, Stream_Stream$fromFuture_closure0: function Stream_Stream$fromFuture_closure0(t0) { this.controller = t0; }, Stream_pipe_closure: function Stream_pipe_closure(t0) { this.streamConsumer = t0; }, Stream_fold_closure: function Stream_fold_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, Stream_fold_closure0: function Stream_fold_closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.combine = t2; _.subscription = t3; _.result = t4; _.S = t5; }, Stream_fold__closure: function Stream_fold__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.combine = t1; _.element = t2; _.S = t3; }, Stream_fold__closure0: function Stream_fold__closure0(t0, t1) { this._box_0 = t0; this.S = t1; }, Stream_forEach_closure: function Stream_forEach_closure(t0) { this.future = t0; }, Stream_forEach_closure0: function Stream_forEach_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.action = t1; _.subscription = t2; _.future = t3; }, Stream_forEach__closure: function Stream_forEach__closure(t0, t1) { this.action = t0; this.element = t1; }, Stream_forEach__closure0: function Stream_forEach__closure0() { }, Stream_length_closure: function Stream_length_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, Stream_length_closure0: function Stream_length_closure0(t0, t1) { this._box_0 = t0; this.future = t1; }, Stream_isEmpty_closure: function Stream_isEmpty_closure(t0) { this.future = t0; }, Stream_isEmpty_closure0: function Stream_isEmpty_closure0(t0, t1, t2) { this.$this = t0; this.subscription = t1; this.future = t2; }, Stream_toList_closure: function Stream_toList_closure(t0, t1) { this.$this = t0; this.result = t1; }, Stream_toList_closure0: function Stream_toList_closure0(t0, t1) { this.future = t0; this.result = t1; }, Stream_first_closure: function Stream_first_closure(t0) { this.future = t0; }, Stream_first_closure0: function Stream_first_closure0(t0, t1, t2) { this.$this = t0; this.subscription = t1; this.future = t2; }, StreamSubscription: function StreamSubscription() { }, StreamView: function StreamView() { }, StreamTransformerBase: function StreamTransformerBase() { }, _StreamController: function _StreamController() { }, _StreamController__subscribe_closure: function _StreamController__subscribe_closure(t0) { this.$this = t0; }, _StreamController__recordCancel_complete: function _StreamController__recordCancel_complete(t0) { this.$this = t0; }, _SyncStreamControllerDispatch: function _SyncStreamControllerDispatch() { }, _AsyncStreamControllerDispatch: function _AsyncStreamControllerDispatch() { }, _AsyncStreamController: function _AsyncStreamController(t0, t1, t2, t3, t4) { var _ = this; _._varData = null; _._state = 0; _._doneFuture = null; _.onListen = t0; _.onPause = t1; _.onResume = t2; _.onCancel = t3; _.$ti = t4; }, _SyncStreamController: function _SyncStreamController(t0, t1, t2, t3, t4) { var _ = this; _._varData = null; _._state = 0; _._doneFuture = null; _.onListen = t0; _.onPause = t1; _.onResume = t2; _.onCancel = t3; _.$ti = t4; }, _ControllerStream: function _ControllerStream(t0, t1) { this._async$_controller = t0; this.$ti = t1; }, _ControllerSubscription: function _ControllerSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._async$_controller = t0; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _AddStreamState: function _AddStreamState(t0, t1, t2) { this.addStreamFuture = t0; this.addSubscription = t1; this.$ti = t2; }, _AddStreamState_makeErrorHandler_closure: function _AddStreamState_makeErrorHandler_closure(t0) { this.controller = t0; }, _AddStreamState_cancel_closure: function _AddStreamState_cancel_closure(t0) { this.$this = t0; }, _StreamControllerAddStreamState: function _StreamControllerAddStreamState(t0, t1, t2, t3) { var _ = this; _.varData = t0; _.addStreamFuture = t1; _.addSubscription = t2; _.$ti = t3; }, _BufferingStreamSubscription: function _BufferingStreamSubscription(t0, t1, t2, t3, t4, t5) { var _ = this; _._async$_onData = t0; _._onError = t1; _._onDone = t2; _._zone = t3; _._state = t4; _._pending = _._cancelFuture = null; _.$ti = t5; }, _BufferingStreamSubscription__sendError_sendError: function _BufferingStreamSubscription__sendError_sendError(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _BufferingStreamSubscription__sendDone_sendDone: function _BufferingStreamSubscription__sendDone_sendDone(t0) { this.$this = t0; }, _StreamImpl: function _StreamImpl() { }, _DelayedEvent: function _DelayedEvent() { }, _DelayedData: function _DelayedData(t0, t1) { this.value = t0; this.next = null; this.$ti = t1; }, _DelayedError: function _DelayedError(t0, t1) { this.error = t0; this.stackTrace = t1; this.next = null; }, _DelayedDone: function _DelayedDone() { }, _PendingEvents: function _PendingEvents() { }, _PendingEvents_schedule_closure: function _PendingEvents_schedule_closure(t0, t1) { this.$this = t0; this.dispatch = t1; }, _StreamImplEvents: function _StreamImplEvents(t0) { var _ = this; _.lastPendingEvent = _.firstPendingEvent = null; _._state = 0; _.$ti = t0; }, _DoneStreamSubscription: function _DoneStreamSubscription(t0, t1, t2) { var _ = this; _._zone = t0; _._state = 0; _._onDone = t1; _.$ti = t2; }, _StreamIterator: function _StreamIterator(t0, t1) { var _ = this; _._async$_subscription = null; _._stateData = t0; _._async$_hasValue = false; _.$ti = t1; }, _EmptyStream: function _EmptyStream(t0) { this.$ti = t0; }, _MultiStream: function _MultiStream(t0, t1, t2) { this.isBroadcast = t0; this._onListen = t1; this.$ti = t2; }, _MultiStream_listen_closure: function _MultiStream_listen_closure(t0, t1) { this.$this = t0; this.controller = t1; }, _MultiStreamController: function _MultiStreamController(t0, t1, t2, t3, t4) { var _ = this; _._varData = null; _._state = 0; _._doneFuture = null; _.onListen = t0; _.onPause = t1; _.onResume = t2; _.onCancel = t3; _.$ti = t4; }, _cancelAndError_closure: function _cancelAndError_closure(t0, t1, t2) { this.future = t0; this.error = t1; this.stackTrace = t2; }, _cancelAndErrorClosure_closure: function _cancelAndErrorClosure_closure(t0, t1) { this.subscription = t0; this.future = t1; }, _cancelAndValue_closure: function _cancelAndValue_closure(t0, t1) { this.future = t0; this.value = t1; }, _ForwardingStream: function _ForwardingStream() { }, _ForwardingStreamSubscription: function _ForwardingStreamSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._stream = t0; _._async$_subscription = null; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _WhereStream: function _WhereStream(t0, t1, t2) { this._test = t0; this._async$_source = t1; this.$ti = t2; }, _MapStream: function _MapStream(t0, t1, t2) { this._async$_transform = t0; this._async$_source = t1; this.$ti = t2; }, _EventSinkWrapper: function _EventSinkWrapper(t0, t1) { this._async$_sink = t0; this.$ti = t1; }, _SinkTransformerStreamSubscription: function _SinkTransformerStreamSubscription(t0, t1, t2, t3, t4, t5) { var _ = this; _.___SinkTransformerStreamSubscription__transformerSink = $; _._async$_subscription = null; _._async$_onData = t0; _._onError = t1; _._onDone = t2; _._zone = t3; _._state = t4; _._pending = _._cancelFuture = null; _.$ti = t5; }, _StreamSinkTransformer: function _StreamSinkTransformer() { }, _BoundSinkStream: function _BoundSinkStream(t0, t1, t2) { this._sinkMapper = t0; this._stream = t1; this.$ti = t2; }, _HandlerEventSink: function _HandlerEventSink(t0, t1, t2, t3, t4) { var _ = this; _._handleData = t0; _._async$_handleError = t1; _._handleDone = t2; _._async$_sink = t3; _.$ti = t4; }, _StreamHandlerTransformer: function _StreamHandlerTransformer(t0, t1) { this._sinkMapper = t0; this.$ti = t1; }, _StreamHandlerTransformer_closure: function _StreamHandlerTransformer_closure(t0, t1, t2, t3, t4) { var _ = this; _.handleData = t0; _.handleError = t1; _.handleDone = t2; _.T = t3; _.S = t4; }, _ZoneFunction: function _ZoneFunction(t0, t1, t2) { this.zone = t0; this.$function = t1; this.$ti = t2; }, _Zone: function _Zone() { }, _rootHandleError_closure: function _rootHandleError_closure(t0, t1) { this.error = t0; this.stackTrace = t1; }, _RootZone: function _RootZone() { }, _RootZone_bindCallback_closure: function _RootZone_bindCallback_closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.R = t2; }, _RootZone_bindCallbackGuarded_closure: function _RootZone_bindCallbackGuarded_closure(t0, t1) { this.$this = t0; this.f = t1; }, _RootZone_bindUnaryCallbackGuarded_closure: function _RootZone_bindUnaryCallbackGuarded_closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.T = t2; }, _RootZone_bindBinaryCallbackGuarded_closure: function _RootZone_bindBinaryCallbackGuarded_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.f = t1; _.T1 = t2; _.T2 = t3; }, HashMap_HashMap(equals, hashCode, isValidKey, $K, $V) { if (isValidKey == null) if (hashCode == null) { if (equals == null) return new A._HashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_HashMap<1,2>")); hashCode = A.collection___defaultHashCode$closure(); } else { if (A.core__identityHashCode$closure() === hashCode && A.core__identical$closure() === equals) return new A._IdentityHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_IdentityHashMap<1,2>")); if (equals == null) equals = A.collection___defaultEquals$closure(); } else { if (hashCode == null) hashCode = A.collection___defaultHashCode$closure(); if (equals == null) equals = A.collection___defaultEquals$closure(); } return A._CustomHashMap$(equals, hashCode, isValidKey, $K, $V); }, _HashMap__getTableEntry(table, key) { var entry = table[key]; return entry === table ? null : entry; }, _HashMap__setTableEntry(table, key, value) { if (value == null) table[key] = table; else table[key] = value; }, _HashMap__newHashTable() { var table = Object.create(null); A._HashMap__setTableEntry(table, "", table); delete table[""]; return table; }, _CustomHashMap$(_equals, _hashCode, validKey, $K, $V) { var t1 = validKey != null ? validKey : new A._CustomHashMap_closure($K); return new A._CustomHashMap(_equals, _hashCode, t1, $K._eval$1("@<0>")._bind$1($V)._eval$1("_CustomHashMap<1,2>")); }, LinkedHashMap_LinkedHashMap(equals, hashCode, isValidKey, $K, $V) { if (isValidKey == null) if (hashCode == null) { if (equals == null) return new A.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>")); hashCode = A.collection___defaultHashCode$closure(); } else { if (A.core__identityHashCode$closure() === hashCode && A.core__identical$closure() === equals) return new A._LinkedIdentityHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_LinkedIdentityHashMap<1,2>")); if (equals == null) equals = A.collection___defaultEquals$closure(); } else { if (hashCode == null) hashCode = A.collection___defaultHashCode$closure(); if (equals == null) equals = A.collection___defaultEquals$closure(); } return A._LinkedCustomHashMap$(equals, hashCode, isValidKey, $K, $V); }, LinkedHashMap_LinkedHashMap$_literal(keyValuePairs, $K, $V) { return A.fillLiteralMap(keyValuePairs, new A.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>"))); }, LinkedHashMap_LinkedHashMap$_empty($K, $V) { return new A.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>")); }, _LinkedCustomHashMap$(_equals, _hashCode, validKey, $K, $V) { var t1 = validKey != null ? validKey : new A._LinkedCustomHashMap_closure($K); return new A._LinkedCustomHashMap(_equals, _hashCode, t1, $K._eval$1("@<0>")._bind$1($V)._eval$1("_LinkedCustomHashMap<1,2>")); }, HashSet_HashSet($E) { return new A._HashSet($E._eval$1("_HashSet<0>")); }, _HashSet__newHashTable() { var table = Object.create(null); table[""] = table; delete table[""]; return table; }, LinkedHashSet_LinkedHashSet($E) { return new A._LinkedHashSet($E._eval$1("_LinkedHashSet<0>")); }, LinkedHashSet_LinkedHashSet$_empty($E) { return new A._LinkedHashSet($E._eval$1("_LinkedHashSet<0>")); }, LinkedHashSet_LinkedHashSet$_literal(values, $E) { return A.fillLiteralSet(values, new A._LinkedHashSet($E._eval$1("_LinkedHashSet<0>"))); }, _LinkedHashSet__newHashTable() { var table = Object.create(null); table[""] = table; delete table[""]; return table; }, _LinkedHashSetIterator$(_set, _modifications, $E) { var t1 = new A._LinkedHashSetIterator(_set, _modifications, $E._eval$1("_LinkedHashSetIterator<0>")); t1._collection$_cell = _set._collection$_first; return t1; }, _defaultEquals(a, b) { return J.$eq$(a, b); }, _defaultHashCode(a) { return J.get$hashCode$(a); }, HashMap_HashMap$from(other, $K, $V) { var result = A.HashMap_HashMap(null, null, null, $K, $V); other.forEach$1(0, new A.HashMap_HashMap$from_closure(result, $K, $V)); return result; }, HashSet_HashSet$from(elements, $E) { var t1, _i, result = A.HashSet_HashSet($E); for (t1 = elements.length, _i = 0; _i < t1; ++_i) result.add$1(0, $E._as(elements[_i])); return result; }, IterableBase_iterableToShortString(iterable, leftDelimiter, rightDelimiter) { var parts, t1; if (A._isToStringVisiting(iterable)) { if (leftDelimiter === "(" && rightDelimiter === ")") return "(...)"; return leftDelimiter + "..." + rightDelimiter; } parts = A._setArrayType([], type$.JSArray_String); $._toStringVisiting.push(iterable); try { A._iterablePartsToStrings(iterable, parts); } finally { $._toStringVisiting.pop(); } t1 = A.StringBuffer__writeAll(leftDelimiter, parts, ", ") + rightDelimiter; return t1.charCodeAt(0) == 0 ? t1 : t1; }, IterableBase_iterableToFullString(iterable, leftDelimiter, rightDelimiter) { var buffer, t1; if (A._isToStringVisiting(iterable)) return leftDelimiter + "..." + rightDelimiter; buffer = new A.StringBuffer(leftDelimiter); $._toStringVisiting.push(iterable); try { t1 = buffer; t1._contents = A.StringBuffer__writeAll(t1._contents, iterable, ", "); } finally { $._toStringVisiting.pop(); } buffer._contents += rightDelimiter; t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _isToStringVisiting(o) { var t1, i; for (t1 = $._toStringVisiting.length, i = 0; i < t1; ++i) if (o === $._toStringVisiting[i]) return true; return false; }, _iterablePartsToStrings(iterable, parts) { var next, ultimateString, penultimateString, penultimate, ultimate, ultimate0, elision, it = J.get$iterator$ax(iterable), $length = 0, count = 0; while (true) { if (!($length < 80 || count < 3)) break; if (!it.moveNext$0()) return; next = A.S(it.get$current(it)); parts.push(next); $length += next.length + 2; ++count; } if (!it.moveNext$0()) { if (count <= 5) return; ultimateString = parts.pop(); penultimateString = parts.pop(); } else { penultimate = it.get$current(it); ++count; if (!it.moveNext$0()) { if (count <= 4) { parts.push(A.S(penultimate)); return; } ultimateString = A.S(penultimate); penultimateString = parts.pop(); $length += ultimateString.length + 2; } else { ultimate = it.get$current(it); ++count; for (; it.moveNext$0(); penultimate = ultimate, ultimate = ultimate0) { ultimate0 = it.get$current(it); ++count; if (count > 100) { while (true) { if (!($length > 75 && count > 3)) break; $length -= parts.pop().length + 2; --count; } parts.push("..."); return; } } penultimateString = A.S(penultimate); ultimateString = A.S(ultimate); $length += ultimateString.length + penultimateString.length + 4; } } if (count > parts.length + 2) { $length += 5; elision = "..."; } else elision = null; while (true) { if (!($length > 80 && parts.length > 3)) break; $length -= parts.pop().length + 2; if (elision == null) { $length += 5; elision = "..."; } } if (elision != null) parts.push(elision); parts.push(penultimateString); parts.push(ultimateString); }, LinkedHashMap_LinkedHashMap$from(other, $K, $V) { var result = A.LinkedHashMap_LinkedHashMap(null, null, null, $K, $V); J.forEach$1$ax(other, new A.LinkedHashMap_LinkedHashMap$from_closure(result, $K, $V)); return result; }, LinkedHashMap_LinkedHashMap$of(other, $K, $V) { var t1 = A.LinkedHashMap_LinkedHashMap(null, null, null, $K, $V); t1.addAll$1(0, other); return t1; }, LinkedHashMap_LinkedHashMap$fromIterable(iterable, key, value, $K, $V) { var map = A.LinkedHashMap_LinkedHashMap(null, null, null, $K, $V); A.MapBase__fillMapWithMappedIterable(map, iterable, key, value); return map; }, LinkedHashSet_LinkedHashSet$from(elements, $E) { var t1, result = A.LinkedHashSet_LinkedHashSet($E); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) result.add$1(0, $E._as(t1.get$current(t1))); return result; }, LinkedHashSet_LinkedHashSet$of(elements, $E) { var t1 = A.LinkedHashSet_LinkedHashSet($E); t1.addAll$1(0, elements); return t1; }, _LinkedListIterator$(list, $E) { return new A._LinkedListIterator(list, list._modificationCount, list._collection$_first, $E._eval$1("_LinkedListIterator<0>")); }, ListMixin__compareAny(a, b) { var t1 = type$.Comparable_dynamic; return J.compareTo$1$ns(t1._as(a), t1._as(b)); }, MapBase_mapToString(m) { var result, t1 = {}; if (A._isToStringVisiting(m)) return "{...}"; result = new A.StringBuffer(""); try { $._toStringVisiting.push(m); result._contents += "{"; t1.first = true; J.forEach$1$ax(m, new A.MapBase_mapToString_closure(t1, result)); result._contents += "}"; } finally { $._toStringVisiting.pop(); } t1 = result._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, MapBase__fillMapWithMappedIterable(map, iterable, key, value) { var t1, element; for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0();) { element = t1.get$current(t1); map.$indexSet(0, key.call$1(element), value.call$1(element)); } }, MapBase__fillMapWithIterables(map, keys, values) { var valueIterator, hasNextKey, hasNextValue, t1 = A._instanceType(keys), keyIterator = new A.MappedIterator(J.get$iterator$ax(keys.__internal$_iterable), keys._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); t1 = values._map; valueIterator = A.LinkedHashMapKeyIterator$(t1, t1._modifications, values.$ti._precomputed1); hasNextKey = keyIterator.moveNext$0(); hasNextValue = valueIterator.moveNext$0(); while (true) { if (!(hasNextKey && hasNextValue)) break; map.$indexSet(0, keyIterator.__internal$_current, valueIterator.__js_helper$_current); hasNextKey = keyIterator.moveNext$0(); hasNextValue = valueIterator.moveNext$0(); } if (hasNextKey || hasNextValue) throw A.wrapException(A.ArgumentError$("Iterables do not have same length.", null)); }, DoubleLinkedQueue$($E) { var t1 = new A._DoubleLinkedQueueSentinel($E._eval$1("_DoubleLinkedQueueSentinel<0>")); t1._previousLink = t1; t1._nextLink = t1; return new A.DoubleLinkedQueue(t1, $E._eval$1("DoubleLinkedQueue<0>")); }, ListQueue$(initialCapacity, $E) { return new A.ListQueue(A.List_List$filled(A.ListQueue__calculateCapacity(initialCapacity), null, false, $E._eval$1("0?")), $E._eval$1("ListQueue<0>")); }, ListQueue__calculateCapacity(initialCapacity) { if (initialCapacity == null || initialCapacity < 8) return 8; else if ((initialCapacity & initialCapacity - 1) >>> 0 !== 0) return A.ListQueue__nextPowerOf2(initialCapacity); return initialCapacity; }, ListQueue__nextPowerOf2(number) { var nextNumber; number = (number << 1 >>> 0) - 1; for (; true; number = nextNumber) { nextNumber = (number & number - 1) >>> 0; if (nextNumber === 0) return number; } }, _UnmodifiableSetMixin__throwUnmodifiable() { throw A.wrapException(A.UnsupportedError$("Cannot change an unmodifiable set")); }, _dynamicCompare(a, b) { return J.compareTo$1$ns(a, b); }, _defaultCompare($K) { if ($K._eval$1("int(0,0)")._is(A.core_Comparable_compare$closure())) return A.core_Comparable_compare$closure(); return A.collection___dynamicCompare$closure(); }, SplayTreeMap$($K, $V) { var t1 = A._defaultCompare($K); return new A.SplayTreeMap(t1, new A.SplayTreeMap_closure($K), $K._eval$1("@<0>")._bind$1($V)._eval$1("SplayTreeMap<1,2>")); }, SplayTreeSet$(compare, isValidKey, $E) { var t1 = compare == null ? A._defaultCompare($E) : compare, t2 = isValidKey == null ? new A.SplayTreeSet_closure($E) : isValidKey; return new A.SplayTreeSet(t1, t2, $E._eval$1("SplayTreeSet<0>")); }, _HashMap: function _HashMap(t0) { var _ = this; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _HashMap_values_closure: function _HashMap_values_closure(t0) { this.$this = t0; }, _HashMap_addAll_closure: function _HashMap_addAll_closure(t0) { this.$this = t0; }, _IdentityHashMap: function _IdentityHashMap(t0) { var _ = this; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _CustomHashMap: function _CustomHashMap(t0, t1, t2, t3) { var _ = this; _._equals = t0; _._hashCode = t1; _._validKey = t2; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t3; }, _CustomHashMap_closure: function _CustomHashMap_closure(t0) { this.K = t0; }, _HashMapKeyIterable: function _HashMapKeyIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _HashMapKeyIterator: function _HashMapKeyIterator(t0, t1, t2) { var _ = this; _._collection$_map = t0; _._collection$_keys = t1; _._offset = 0; _._collection$_current = null; _.$ti = t2; }, _LinkedIdentityHashMap: function _LinkedIdentityHashMap(t0) { var _ = this; _._length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t0; }, _LinkedCustomHashMap: function _LinkedCustomHashMap(t0, t1, t2, t3) { var _ = this; _._equals = t0; _._hashCode = t1; _._validKey = t2; _._length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t3; }, _LinkedCustomHashMap_closure: function _LinkedCustomHashMap_closure(t0) { this.K = t0; }, _HashSet: function _HashSet(t0) { var _ = this; _._collection$_length = 0; _._elements = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _HashSetIterator: function _HashSetIterator(t0, t1, t2) { var _ = this; _._set = t0; _._elements = t1; _._offset = 0; _._collection$_current = null; _.$ti = t2; }, _LinkedHashSet: function _LinkedHashSet(t0) { var _ = this; _._collection$_length = 0; _._collection$_last = _._collection$_first = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _._collection$_modifications = 0; _.$ti = t0; }, _LinkedHashSetCell: function _LinkedHashSetCell(t0) { this._element = t0; this._collection$_previous = this._collection$_next = null; }, _LinkedHashSetIterator: function _LinkedHashSetIterator(t0, t1, t2) { var _ = this; _._set = t0; _._collection$_modifications = t1; _._collection$_current = _._collection$_cell = null; _.$ti = t2; }, UnmodifiableListView: function UnmodifiableListView(t0, t1) { this._collection$_source = t0; this.$ti = t1; }, HashMap_HashMap$from_closure: function HashMap_HashMap$from_closure(t0, t1, t2) { this.result = t0; this.K = t1; this.V = t2; }, IterableMixin: function IterableMixin() { }, IterableBase: function IterableBase() { }, LinkedHashMap_LinkedHashMap$from_closure: function LinkedHashMap_LinkedHashMap$from_closure(t0, t1, t2) { this.result = t0; this.K = t1; this.V = t2; }, LinkedList: function LinkedList(t0) { var _ = this; _._collection$_length = _._modificationCount = 0; _._collection$_first = null; _.$ti = t0; }, _LinkedListIterator: function _LinkedListIterator(t0, t1, t2, t3) { var _ = this; _._collection$_list = t0; _._modificationCount = t1; _._collection$_current = null; _._collection$_next = t2; _._visitedFirst = false; _.$ti = t3; }, LinkedListEntry: function LinkedListEntry() { }, ListBase: function ListBase() { }, ListMixin: function ListMixin() { }, MapBase: function MapBase() { }, MapBase_mapToString_closure: function MapBase_mapToString_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, MapMixin: function MapMixin() { }, MapMixin_entries_closure: function MapMixin_entries_closure(t0) { this.$this = t0; }, UnmodifiableMapBase: function UnmodifiableMapBase() { }, _MapBaseValueIterable: function _MapBaseValueIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _MapBaseValueIterator: function _MapBaseValueIterator(t0, t1, t2) { var _ = this; _._collection$_keys = t0; _._collection$_map = t1; _._collection$_current = null; _.$ti = t2; }, _UnmodifiableMapMixin: function _UnmodifiableMapMixin() { }, MapView: function MapView() { }, UnmodifiableMapView: function UnmodifiableMapView(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _DoubleLinkedQueueEntry: function _DoubleLinkedQueueEntry() { }, _DoubleLinkedQueueElement: function _DoubleLinkedQueueElement(t0, t1, t2) { var _ = this; _._collection$_queue = t0; _.element = t1; _._nextLink = _._previousLink = null; _.$ti = t2; }, _DoubleLinkedQueueSentinel: function _DoubleLinkedQueueSentinel(t0) { this._nextLink = this._previousLink = null; this.$ti = t0; }, DoubleLinkedQueue: function DoubleLinkedQueue(t0, t1) { this._sentinel = t0; this._elementCount = 0; this.$ti = t1; }, _DoubleLinkedQueueIterator: function _DoubleLinkedQueueIterator(t0, t1, t2) { var _ = this; _._collection$_queue = t0; _._nextEntry = t1; _._collection$_current = null; _.$ti = t2; }, ListQueue: function ListQueue(t0, t1) { var _ = this; _._table = t0; _._modificationCount = _._tail = _._head = 0; _.$ti = t1; }, _ListQueueIterator: function _ListQueueIterator(t0, t1, t2, t3, t4) { var _ = this; _._collection$_queue = t0; _._end = t1; _._modificationCount = t2; _._collection$_position = t3; _._collection$_current = null; _.$ti = t4; }, SetMixin: function SetMixin() { }, SetBase: function SetBase() { }, _SetBase: function _SetBase() { }, _UnmodifiableSetMixin: function _UnmodifiableSetMixin() { }, _UnmodifiableSet: function _UnmodifiableSet(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeNode: function _SplayTreeNode() { }, _SplayTreeSetNode: function _SplayTreeSetNode(t0, t1) { var _ = this; _.key = t0; _._collection$_right = _._collection$_left = null; _.$ti = t1; }, _SplayTreeMapNode: function _SplayTreeMapNode(t0, t1, t2) { var _ = this; _.value = t0; _.key = t1; _._collection$_right = _._collection$_left = null; _.$ti = t2; }, _SplayTree: function _SplayTree() { }, SplayTreeMap: function SplayTreeMap(t0, t1, t2) { var _ = this; _._root = null; _._compare = t0; _._validKey = t1; _._splayCount = _._modificationCount = _._count = 0; _.$ti = t2; }, SplayTreeMap_closure: function SplayTreeMap_closure(t0) { this.K = t0; }, _SplayTreeIterator: function _SplayTreeIterator() { }, _SplayTreeKeyIterable: function _SplayTreeKeyIterable(t0, t1) { this._tree = t0; this.$ti = t1; }, _SplayTreeValueIterable: function _SplayTreeValueIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeMapEntryIterable: function _SplayTreeMapEntryIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeKeyIterator: function _SplayTreeKeyIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._modificationCount = null; _._splayCount = t2; _.$ti = t3; }, _SplayTreeValueIterator: function _SplayTreeValueIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._modificationCount = null; _._splayCount = t2; _.$ti = t3; }, _SplayTreeMapEntryIterator: function _SplayTreeMapEntryIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._modificationCount = null; _._splayCount = t2; _.$ti = t3; }, SplayTreeSet: function SplayTreeSet(t0, t1, t2) { var _ = this; _._root = null; _._compare = t0; _._validKey = t1; _._splayCount = _._modificationCount = _._count = 0; _.$ti = t2; }, SplayTreeSet_closure: function SplayTreeSet_closure(t0) { this.E = t0; }, SplayTreeSet__copyNode_copyChildren: function SplayTreeSet__copyNode_copyChildren(t0, t1) { this.$this = t0; this.Node = t1; }, _ListBase_Object_ListMixin: function _ListBase_Object_ListMixin() { }, _SetBase_Object_SetMixin: function _SetBase_Object_SetMixin() { }, _SplayTreeMap__SplayTree_MapMixin: function _SplayTreeMap__SplayTree_MapMixin() { }, _SplayTreeSet__SplayTree_IterableMixin: function _SplayTreeSet__SplayTree_IterableMixin() { }, _SplayTreeSet__SplayTree_IterableMixin_SetMixin: function _SplayTreeSet__SplayTree_IterableMixin_SetMixin() { }, _UnmodifiableMapView_MapView__UnmodifiableMapMixin: function _UnmodifiableMapView_MapView__UnmodifiableMapMixin() { }, __SetBase_Object_SetMixin: function __SetBase_Object_SetMixin() { }, __UnmodifiableSet__SetBase__UnmodifiableSetMixin: function __UnmodifiableSet__SetBase__UnmodifiableSetMixin() { }, _parseJson(source, reviver) { var parsed, e, exception, t1; if (typeof source != "string") throw A.wrapException(A.argumentErrorValue(source)); parsed = null; try { parsed = JSON.parse(source); } catch (exception) { e = A.unwrapException(exception); t1 = A.FormatException$(String(e), null, null); throw A.wrapException(t1); } t1 = A._convertJsonToDartLazy(parsed); return t1; }, _convertJsonToDartLazy(object) { var i; if (object == null) return null; if (typeof object != "object") return object; if (Object.getPrototypeOf(object) !== Array.prototype) return new A._JsonMap(object, Object.create(null)); for (i = 0; i < object.length; ++i) object[i] = A._convertJsonToDartLazy(object[i]); return object; }, Utf8Decoder__convertIntercepted(allowMalformed, codeUnits, start, end) { var casted, result; if (codeUnits instanceof Uint8Array) { casted = codeUnits; end = casted.length; if (end - start < 15) return null; result = A.Utf8Decoder__convertInterceptedUint8List(allowMalformed, casted, start, end); if (result != null && allowMalformed) if (result.indexOf("\ufffd") >= 0) return null; return result; } return null; }, Utf8Decoder__convertInterceptedUint8List(allowMalformed, codeUnits, start, end) { var decoder = allowMalformed ? $.$get$Utf8Decoder__decoderNonfatal() : $.$get$Utf8Decoder__decoder(); if (decoder == null) return null; if (0 === start && end === codeUnits.length) return A.Utf8Decoder__useTextDecoder(decoder, codeUnits); return A.Utf8Decoder__useTextDecoder(decoder, codeUnits.subarray(start, A.RangeError_checkValidRange(start, end, codeUnits.length, null, null))); }, Utf8Decoder__useTextDecoder(decoder, codeUnits) { var t1, exception; try { t1 = decoder.decode(codeUnits); return t1; } catch (exception) { } return null; }, Base64Codec__checkPadding(source, sourceIndex, sourceEnd, firstPadding, paddingCount, $length) { if (B.JSInt_methods.$mod($length, 4) !== 0) throw A.wrapException(A.FormatException$("Invalid base64 padding, padded length must be multiple of four, is " + $length, source, sourceEnd)); if (firstPadding + paddingCount !== $length) throw A.wrapException(A.FormatException$("Invalid base64 padding, '=' not at the end", source, sourceIndex)); if (paddingCount > 2) throw A.wrapException(A.FormatException$("Invalid base64 padding, more than two '=' characters", source, sourceIndex)); }, _Base64Encoder_encodeChunk(alphabet, bytes, start, end, isLast, output, outputIndex, state) { var t1, t2, i, byteOr, byte, outputIndex0, outputIndex1, bits = state >>> 2, expectedChars = 3 - (state & 3); for (t1 = J.getInterceptor$asx(bytes), t2 = J.getInterceptor$ax(output), i = start, byteOr = 0; i < end; ++i) { byte = t1.$index(bytes, i); byteOr = (byteOr | byte) >>> 0; bits = (bits << 8 | byte) & 16777215; --expectedChars; if (expectedChars === 0) { outputIndex0 = outputIndex + 1; t2.$indexSet(output, outputIndex, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 18 & 63)); outputIndex = outputIndex0 + 1; t2.$indexSet(output, outputIndex0, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 12 & 63)); outputIndex0 = outputIndex + 1; t2.$indexSet(output, outputIndex, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 6 & 63)); outputIndex = outputIndex0 + 1; t2.$indexSet(output, outputIndex0, B.JSString_methods._codeUnitAt$1(alphabet, bits & 63)); bits = 0; expectedChars = 3; } } if (byteOr >= 0 && byteOr <= 255) { if (isLast && expectedChars < 3) { outputIndex0 = outputIndex + 1; outputIndex1 = outputIndex0 + 1; if (3 - expectedChars === 1) { t2.$indexSet(output, outputIndex, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 2 & 63)); t2.$indexSet(output, outputIndex0, B.JSString_methods._codeUnitAt$1(alphabet, bits << 4 & 63)); t2.$indexSet(output, outputIndex1, 61); t2.$indexSet(output, outputIndex1 + 1, 61); } else { t2.$indexSet(output, outputIndex, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 10 & 63)); t2.$indexSet(output, outputIndex0, B.JSString_methods._codeUnitAt$1(alphabet, bits >>> 4 & 63)); t2.$indexSet(output, outputIndex1, B.JSString_methods._codeUnitAt$1(alphabet, bits << 2 & 63)); t2.$indexSet(output, outputIndex1 + 1, 61); } return 0; } return (bits << 2 | 3 - expectedChars) >>> 0; } for (i = start; i < end;) { byte = t1.$index(bytes, i); if (byte < 0 || byte > 255) break; ++i; } throw A.wrapException(A.ArgumentError$value(bytes, "Not a byte value at index " + i + ": 0x" + J.toRadixString$1$n(t1.$index(bytes, i), 16), null)); }, _Base64Decoder_decodeChunk(input, start, end, output, outIndex, state) { var i, charOr, char, code, outIndex0, expectedPadding, _s31_ = "Invalid encoding before padding", _s17_ = "Invalid character", bits = B.JSInt_methods._shrOtherPositive$1(state, 2), count = state & 3, inverseAlphabet = $.$get$_Base64Decoder__inverseAlphabet(); for (i = start, charOr = 0; i < end; ++i) { char = B.JSString_methods.codeUnitAt$1(input, i); charOr |= char; code = inverseAlphabet[char & 127]; if (code >= 0) { bits = (bits << 6 | code) & 16777215; count = count + 1 & 3; if (count === 0) { outIndex0 = outIndex + 1; output[outIndex] = bits >>> 16 & 255; outIndex = outIndex0 + 1; output[outIndex0] = bits >>> 8 & 255; outIndex0 = outIndex + 1; output[outIndex] = bits & 255; outIndex = outIndex0; bits = 0; } continue; } else if (code === -1 && count > 1) { if (charOr > 127) break; if (count === 3) { if ((bits & 3) !== 0) throw A.wrapException(A.FormatException$(_s31_, input, i)); output[outIndex] = bits >>> 10; output[outIndex + 1] = bits >>> 2; } else { if ((bits & 15) !== 0) throw A.wrapException(A.FormatException$(_s31_, input, i)); output[outIndex] = bits >>> 4; } expectedPadding = (3 - count) * 3; if (char === 37) expectedPadding += 2; return A._Base64Decoder__checkPadding(input, i + 1, end, -expectedPadding - 1); } throw A.wrapException(A.FormatException$(_s17_, input, i)); } if (charOr >= 0 && charOr <= 127) return (bits << 2 | count) >>> 0; for (i = start; i < end; ++i) { char = B.JSString_methods.codeUnitAt$1(input, i); if (char > 127) break; } throw A.wrapException(A.FormatException$(_s17_, input, i)); }, _Base64Decoder__allocateBuffer(input, start, end, state) { var paddingStart = A._Base64Decoder__trimPaddingChars(input, start, end), $length = (state & 3) + (paddingStart - start), bufferLength = B.JSInt_methods._shrOtherPositive$1($length, 2) * 3, remainderLength = $length & 3; if (remainderLength !== 0 && paddingStart < end) bufferLength += remainderLength - 1; if (bufferLength > 0) return new Uint8Array(bufferLength); return $.$get$_Base64Decoder__emptyBuffer(); }, _Base64Decoder__trimPaddingChars(input, start, end) { var char, newEnd = end, index = newEnd, padding = 0; while (true) { if (!(index > start && padding < 2)) break; c$0: { --index; char = B.JSString_methods.codeUnitAt$1(input, index); if (char === 61) { ++padding; newEnd = index; break c$0; } if ((char | 32) === 100) { if (index === start) break; --index; char = B.JSString_methods.codeUnitAt$1(input, index); } if (char === 51) { if (index === start) break; --index; char = B.JSString_methods.codeUnitAt$1(input, index); } if (char === 37) { ++padding; newEnd = index; break c$0; } break; } } return newEnd; }, _Base64Decoder__checkPadding(input, start, end, state) { var expectedPadding, char; if (start === end) return state; expectedPadding = -state - 1; for (; expectedPadding > 0;) { char = B.JSString_methods.codeUnitAt$1(input, start); if (expectedPadding === 3) { if (char === 61) { expectedPadding -= 3; ++start; break; } if (char === 37) { --expectedPadding; ++start; if (start === end) break; char = B.JSString_methods.codeUnitAt$1(input, start); } else break; } if ((expectedPadding > 3 ? expectedPadding - 3 : expectedPadding) === 2) { if (char !== 51) break; ++start; --expectedPadding; if (start === end) break; char = B.JSString_methods.codeUnitAt$1(input, start); } if ((char | 32) !== 100) break; ++start; --expectedPadding; if (start === end) break; } if (start !== end) throw A.wrapException(A.FormatException$("Invalid padding character", input, start)); return -expectedPadding - 1; }, Encoding_getByName($name) { if ($name == null) return null; return $.$get$Encoding__nameToEncoding().$index(0, $name.toLowerCase()); }, JsonUnsupportedObjectError$(unsupportedObject, cause, partialResult) { return new A.JsonUnsupportedObjectError(unsupportedObject, cause); }, _defaultToEncodable(object) { return object.toJson$0(); }, _JsonStringStringifier$(_sink, _toEncodable) { var t1 = _toEncodable == null ? A.convert___defaultToEncodable$closure() : _toEncodable; return new A._JsonStringStringifier(_sink, [], t1); }, _JsonStringStringifier_stringify(object, toEncodable, indent) { var t1, output = new A.StringBuffer(""); A._JsonStringStringifier_printOn(object, output, toEncodable, indent); t1 = output._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _JsonStringStringifier_printOn(object, output, toEncodable, indent) { var stringifier, t1; if (indent == null) stringifier = A._JsonStringStringifier$(output, toEncodable); else { t1 = toEncodable == null ? A.convert___defaultToEncodable$closure() : toEncodable; stringifier = new A._JsonStringStringifierPretty(indent, 0, output, [], t1); } stringifier.writeObject$1(object); }, LineSplitter_split($async$lines) { return A._makeSyncStarIterable(function() { var lines = $async$lines; var $async$goto = 0, $async$handler = 1, $async$currentError, sliceStart, char, i, char0, end; return function $async$LineSplitter_split($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start end = A.RangeError_checkValidRange(0, null, lines.length, null, null); sliceStart = 0, char = 0, i = 0; case 2: // for condition if (!(i < end)) { // goto after for $async$goto = 4; break; } char0 = B.JSString_methods._codeUnitAt$1(lines, i); if (char0 !== 13) { if (char0 !== 10) { // goto for update $async$goto = 3; break; } if (char === 13) { sliceStart = i + 1; // goto for update $async$goto = 3; break; } } $async$goto = 5; return B.JSString_methods.substring$2(lines, sliceStart, i); case 5: // after yield sliceStart = i + 1; case 3: // for update ++i, char = char0; // goto for condition $async$goto = 2; break; case 4: // after for $async$goto = sliceStart < end ? 6 : 7; break; case 6: // then $async$goto = 8; return B.JSString_methods.substring$2(lines, sliceStart, end); case 8: // after yield case 7: // join // implicit return return A._IterationMarker_endOfIteration(); case 1: // rethrow return A._IterationMarker_uncaughtError($async$currentError); } }; }, type$.String); }, _Utf8Decoder_errorDescription(state) { switch (state) { case 65: return "Missing extension byte"; case 67: return "Unexpected extension byte"; case 69: return "Invalid UTF-8 byte"; case 71: return "Overlong encoding"; case 73: return "Out of unicode range"; case 75: return "Encoded surrogate"; case 77: return "Unfinished UTF-8 octet sequence"; default: return ""; } }, _Utf8Decoder__makeUint8List(codeUnits, start, end) { var t1, i, b, $length = end - start, bytes = new Uint8Array($length); for (t1 = J.getInterceptor$asx(codeUnits), i = 0; i < $length; ++i) { b = t1.$index(codeUnits, start + i); bytes[i] = (b & 4294967040) >>> 0 !== 0 ? 255 : b; } return bytes; }, _JsonMap: function _JsonMap(t0, t1) { this._original = t0; this._processed = t1; this._data = null; }, _JsonMap_values_closure: function _JsonMap_values_closure(t0) { this.$this = t0; }, _JsonMapKeyIterable: function _JsonMapKeyIterable(t0) { this._parent = t0; }, Utf8Decoder__decoder_closure: function Utf8Decoder__decoder_closure() { }, Utf8Decoder__decoderNonfatal_closure: function Utf8Decoder__decoderNonfatal_closure() { }, AsciiCodec: function AsciiCodec() { }, _UnicodeSubsetEncoder: function _UnicodeSubsetEncoder() { }, AsciiEncoder: function AsciiEncoder(t0) { this._subsetMask = t0; }, _UnicodeSubsetDecoder: function _UnicodeSubsetDecoder() { }, AsciiDecoder: function AsciiDecoder(t0, t1) { this._allowInvalid = t0; this._subsetMask = t1; }, Base64Codec: function Base64Codec() { }, Base64Encoder: function Base64Encoder() { }, _Base64Encoder: function _Base64Encoder(t0) { this._convert$_state = 0; this._alphabet = t0; }, Base64Decoder: function Base64Decoder() { }, _Base64Decoder: function _Base64Decoder() { this._convert$_state = 0; }, ByteConversionSink: function ByteConversionSink() { }, ByteConversionSinkBase: function ByteConversionSinkBase() { }, _ByteCallbackSink: function _ByteCallbackSink(t0, t1) { this._convert$_callback = t0; this._buffer = t1; this._bufferIndex = 0; }, ChunkedConversionSink: function ChunkedConversionSink() { }, Codec0: function Codec0() { }, Converter: function Converter() { }, Encoding: function Encoding() { }, HtmlEscapeMode: function HtmlEscapeMode(t0, t1) { this._convert$_name = t0; this.escapeQuot = t1; }, HtmlEscape: function HtmlEscape(t0) { this.mode = t0; }, JsonUnsupportedObjectError: function JsonUnsupportedObjectError(t0, t1) { this.unsupportedObject = t0; this.cause = t1; }, JsonCyclicError: function JsonCyclicError(t0, t1) { this.unsupportedObject = t0; this.cause = t1; }, JsonCodec: function JsonCodec() { }, JsonEncoder: function JsonEncoder(t0, t1) { this.indent = t0; this._toEncodable = t1; }, JsonDecoder: function JsonDecoder(t0) { this._reviver = t0; }, _JsonStringifier: function _JsonStringifier() { }, _JsonStringifier_writeMap_closure: function _JsonStringifier_writeMap_closure(t0, t1) { this._box_0 = t0; this.keyValueList = t1; }, _JsonPrettyPrintMixin: function _JsonPrettyPrintMixin() { }, _JsonPrettyPrintMixin_writeMap_closure: function _JsonPrettyPrintMixin_writeMap_closure(t0, t1) { this._box_0 = t0; this.keyValueList = t1; }, _JsonStringStringifier: function _JsonStringStringifier(t0, t1, t2) { this._sink = t0; this._seen = t1; this._toEncodable = t2; }, _JsonStringStringifierPretty: function _JsonStringStringifierPretty(t0, t1, t2, t3, t4) { var _ = this; _._indent = t0; _._JsonPrettyPrintMixin__indentLevel = t1; _._sink = t2; _._seen = t3; _._toEncodable = t4; }, Latin1Codec: function Latin1Codec() { }, Latin1Encoder: function Latin1Encoder(t0) { this._subsetMask = t0; }, Latin1Decoder: function Latin1Decoder(t0, t1) { this._allowInvalid = t0; this._subsetMask = t1; }, LineSplitter: function LineSplitter() { }, Utf8Codec: function Utf8Codec() { }, Utf8Encoder: function Utf8Encoder() { }, _Utf8Encoder: function _Utf8Encoder(t0) { this._bufferIndex = this._carry = 0; this._buffer = t0; }, Utf8Decoder: function Utf8Decoder(t0) { this._allowMalformed = t0; }, _Utf8Decoder: function _Utf8Decoder(t0) { this.allowMalformed = t0; this._convert$_state = 16; this._charOrIndex = 0; }, __JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin: function __JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin() { }, _symbolMapToStringMap(map) { var result = new A.JsLinkedHashMap(type$.JsLinkedHashMap_String_dynamic); map.forEach$1(0, new A._symbolMapToStringMap_closure(result)); return result; }, identityHashCode(object) { return A.objectHashCode(object); }, Function_apply($function, positionalArguments, namedArguments) { return A.Primitives_applyFunction($function, positionalArguments, namedArguments == null ? null : A._symbolMapToStringMap(namedArguments)); }, Expando$($T) { return new A.Expando(new WeakMap(), $T._eval$1("Expando<0>")); }, Expando__checkType(object) { if (object == null || A._isBool(object) || typeof object == "number" || typeof object == "string") throw A.wrapException(A.ArgumentError$value(object, string$.Expand, null)); }, int_parse(source, radix) { var value = A.Primitives_parseInt(source, radix); if (value != null) return value; throw A.wrapException(A.FormatException$(source, null, null)); }, double_parse(source) { var value = A.Primitives_parseDouble(source); if (value != null) return value; throw A.wrapException(A.FormatException$("Invalid double", source, null)); }, Error__objectToString(object) { if (object instanceof A.Closure) return object.toString$0(0); return "Instance of '" + A.S(A.Primitives_objectTypeName(object)) + "'"; }, Error__throw(error, stackTrace) { error = A.wrapException(error); error.stack = J.toString$0$(stackTrace); throw error; throw A.wrapException("unreachable"); }, DateTime$fromMillisecondsSinceEpoch(millisecondsSinceEpoch, isUtc) { var t1; if (Math.abs(millisecondsSinceEpoch) <= 864e13) t1 = false; else t1 = true; if (t1) A.throwExpression(A.ArgumentError$("DateTime is outside valid range: " + A.S(millisecondsSinceEpoch), null)); A.checkNotNullable(isUtc, "isUtc", type$.bool); return new A.DateTime(millisecondsSinceEpoch, isUtc); }, List_List$filled($length, fill, growable, $E) { var i, result = growable ? J.JSArray_JSArray$growable($length, $E) : J.JSArray_JSArray$fixed($length, $E); if ($length !== 0 && fill != null) for (i = 0; i < result.length; ++i) result[i] = fill; return result; }, List_List$from(elements, growable, $E) { var t1, list = A._setArrayType([], $E._eval$1("JSArray<0>")); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) list.push(t1.get$current(t1)); if (growable) return list; return J.JSArray_markFixedList(list); }, List_List$of(elements, growable, $E) { var t1; if (growable) return A.List_List$_of(elements, $E); t1 = J.JSArray_markFixedList(A.List_List$_of(elements, $E)); return t1; }, List_List$_of(elements, $E) { var list, t1; if (Array.isArray(elements)) return A._setArrayType(elements.slice(0), $E._eval$1("JSArray<0>")); list = A._setArrayType([], $E._eval$1("JSArray<0>")); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) list.push(t1.get$current(t1)); return list; }, List_List$generate($length, generator, growable, $E) { var i, result = growable ? J.JSArray_JSArray$growable($length, $E) : J.JSArray_JSArray$fixed($length, $E); for (i = 0; i < $length; ++i) result[i] = generator.call$1(i); return result; }, List_List$unmodifiable(elements, $E) { return J.JSArray_markUnmodifiableList(A.List_List$from(elements, false, $E)); }, String_String$fromCharCodes(charCodes, start, end) { var array, len, _null = null; if (Array.isArray(charCodes)) { array = charCodes; len = array.length; end = A.RangeError_checkValidRange(start, end, len, _null, _null); return A.Primitives_stringFromCharCodes(start > 0 || end < len ? array.slice(start, end) : array); } if (type$.NativeUint8List._is(charCodes)) return A.Primitives_stringFromNativeUint8List(charCodes, start, A.RangeError_checkValidRange(start, end, charCodes.length, _null, _null)); return A.String__stringFromIterable(charCodes, start, end); }, String_String$fromCharCode(charCode) { return A.Primitives_stringFromCharCode(charCode); }, String__stringFromIterable(charCodes, start, end) { var t1, it, i, list, _null = null; if (start < 0) throw A.wrapException(A.RangeError$range(start, 0, J.get$length$asx(charCodes), _null, _null)); t1 = end == null; if (!t1 && end < start) throw A.wrapException(A.RangeError$range(end, start, J.get$length$asx(charCodes), _null, _null)); it = J.get$iterator$ax(charCodes); for (i = 0; i < start; ++i) if (!it.moveNext$0()) throw A.wrapException(A.RangeError$range(start, 0, i, _null, _null)); list = []; if (t1) for (; it.moveNext$0();) list.push(it.get$current(it)); else for (i = start; i < end; ++i) { if (!it.moveNext$0()) throw A.wrapException(A.RangeError$range(end, start, i, _null, _null)); list.push(it.get$current(it)); } return A.Primitives_stringFromCharCodes(list); }, RegExp_RegExp(source, caseSensitive, dotAll, multiLine, unicode) { return new A.JSSyntaxRegExp(source, A.JSSyntaxRegExp_makeNative(source, multiLine, caseSensitive, unicode, dotAll, false)); }, identical(a, b) { return a == null ? b == null : a === b; }, StringBuffer__writeAll(string, objects, separator) { var iterator = J.get$iterator$ax(objects); if (!iterator.moveNext$0()) return string; if (separator.length === 0) { do string += A.S(iterator.get$current(iterator)); while (iterator.moveNext$0()); } else { string += A.S(iterator.get$current(iterator)); for (; iterator.moveNext$0();) string = string + separator + A.S(iterator.get$current(iterator)); } return string; }, NoSuchMethodError$(receiver, memberName, positionalArguments, namedArguments) { return new A.NoSuchMethodError(receiver, memberName, positionalArguments, namedArguments); }, Uri_base() { var uri = A.Primitives_currentUri(); if (uri != null) return A.Uri_parse(uri, 0, null); throw A.wrapException(A.UnsupportedError$("'Uri.base' is not supported")); }, _Uri__uriEncode(canonicalTable, text, encoding, spaceToPlus) { var t1, bytes, i, t2, byte, _s16_ = "0123456789ABCDEF"; if (encoding === B.C_Utf8Codec) { t1 = $.$get$_Uri__needsNoEncoding()._nativeRegExp; if (typeof text != "string") A.throwExpression(A.argumentErrorValue(text)); t1 = t1.test(text); } else t1 = false; if (t1) return text; bytes = encoding.encode$1(text); for (t1 = J.getInterceptor$asx(bytes), i = 0, t2 = ""; i < t1.get$length(bytes); ++i) { byte = t1.$index(bytes, i); if (byte < 128 && (canonicalTable[B.JSInt_methods._shrOtherPositive$1(byte, 4)] & 1 << (byte & 15)) !== 0) t2 += A.Primitives_stringFromCharCode(byte); else t2 = spaceToPlus && byte === 32 ? t2 + "+" : t2 + "%" + _s16_[B.JSInt_methods._shrOtherPositive$1(byte, 4) & 15] + _s16_[byte & 15]; } return t2.charCodeAt(0) == 0 ? t2 : t2; }, StackTrace_current() { var stackTrace, exception; if ($.$get$_hasErrorStackProperty()) return A.getTraceFromException(new Error()); try { throw A.wrapException(""); } catch (exception) { stackTrace = A.getTraceFromException(exception); return stackTrace; } }, _BigIntImpl__parseDecimal(source, isNegative) { var part, i, result = $.$get$_BigIntImpl_zero(), t1 = source.length, digitInPartCount = 4 - t1 % 4; if (digitInPartCount === 4) digitInPartCount = 0; for (part = 0, i = 0; i < t1; ++i) { part = part * 10 + B.JSString_methods._codeUnitAt$1(source, i) - 48; ++digitInPartCount; if (digitInPartCount === 4) { result = result.$mul(0, $.$get$_BigIntImpl__bigInt10000()).$add(0, A._BigIntImpl__BigIntImpl$_fromInt(part)); part = 0; digitInPartCount = 0; } } if (isNegative) return result.$negate(0); return result; }, _BigIntImpl__codeUnitToRadixValue(codeUnit) { if (48 <= codeUnit && codeUnit <= 57) return codeUnit - 48; return (codeUnit | 32) - 97 + 10; }, _BigIntImpl__parseHex(source, startPos, isNegative) { var i, chunk, j, i0, digitValue, digitIndex, digitIndex0, t1 = source.length, sourceLength = t1 - startPos, chunkCount = B.JSNumber_methods.ceil$0(sourceLength / 4), digits = new Uint16Array(chunkCount), t2 = chunkCount - 1, lastDigitLength = sourceLength - t2 * 4; for (i = startPos, chunk = 0, j = 0; j < lastDigitLength; ++j, i = i0) { i0 = i + 1; digitValue = A._BigIntImpl__codeUnitToRadixValue(B.JSString_methods._codeUnitAt$1(source, i)); if (digitValue >= 16) return null; chunk = chunk * 16 + digitValue; } digitIndex = t2 - 1; digits[t2] = chunk; for (; i < t1; digitIndex = digitIndex0) { for (chunk = 0, j = 0; j < 4; ++j, i = i0) { i0 = i + 1; digitValue = A._BigIntImpl__codeUnitToRadixValue(B.JSString_methods._codeUnitAt$1(source, i)); if (digitValue >= 16) return null; chunk = chunk * 16 + digitValue; } digitIndex0 = digitIndex - 1; digits[digitIndex] = chunk; } if (chunkCount === 1 && digits[0] === 0) return $.$get$_BigIntImpl_zero(); t1 = A._BigIntImpl__normalize(chunkCount, digits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); }, _BigIntImpl__tryParse(source, radix) { var match, t1, isNegative, decimalMatch, hexMatch; if (source === "") return null; match = $.$get$_BigIntImpl__parseRE().firstMatch$1(source); if (match == null) return null; t1 = match._match; isNegative = t1[1] === "-"; decimalMatch = t1[4]; hexMatch = t1[3]; if (decimalMatch != null) return A._BigIntImpl__parseDecimal(decimalMatch, isNegative); if (hexMatch != null) return A._BigIntImpl__parseHex(hexMatch, 2, isNegative); return null; }, _BigIntImpl__normalize(used, digits) { while (true) { if (!(used > 0 && digits[used - 1] === 0)) break; --used; } return used; }, _BigIntImpl__cloneDigits(digits, from, to, $length) { var resultDigits, n, i; if (!A._isInt($length)) A.throwExpression(A.ArgumentError$("Invalid length " + A.S($length), null)); resultDigits = new Uint16Array($length); n = to - from; for (i = 0; i < n; ++i) resultDigits[i] = digits[from + i]; return resultDigits; }, _BigIntImpl__BigIntImpl$_fromInt(value) { var digits, t1, i, i0, isNegative = value < 0; if (isNegative) { if (value === -9223372036854776e3) { digits = new Uint16Array(4); digits[3] = 32768; t1 = A._BigIntImpl__normalize(4, digits); return new A._BigIntImpl(t1 !== 0 || false, digits, t1); } value = -value; } if (value < 65536) { digits = new Uint16Array(1); digits[0] = value; t1 = A._BigIntImpl__normalize(1, digits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); } if (value <= 4294967295) { digits = new Uint16Array(2); digits[0] = value & 65535; digits[1] = B.JSInt_methods._shrOtherPositive$1(value, 16); t1 = A._BigIntImpl__normalize(2, digits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); } t1 = B.JSInt_methods._tdivFast$1(B.JSInt_methods.get$bitLength(value) - 1, 16) + 1; digits = new Uint16Array(t1); for (i = 0; value !== 0; i = i0) { i0 = i + 1; digits[i] = value & 65535; value = B.JSInt_methods._tdivFast$1(value, 65536); } t1 = A._BigIntImpl__normalize(t1, digits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); }, _BigIntImpl__dlShiftDigits(xDigits, xUsed, n, resultDigits) { var i; if (xUsed === 0) return 0; if (n === 0 && resultDigits === xDigits) return xUsed; for (i = xUsed - 1; i >= 0; --i) resultDigits[i + n] = xDigits[i]; for (i = n - 1; i >= 0; --i) resultDigits[i] = 0; return xUsed + n; }, _BigIntImpl__lsh(xDigits, xUsed, n, resultDigits) { var i, carry, digit, digitShift = B.JSInt_methods._tdivFast$1(n, 16), bitShift = B.JSInt_methods.$mod(n, 16), carryBitShift = 16 - bitShift, bitMask = B.JSInt_methods.$shl(1, carryBitShift) - 1; for (i = xUsed - 1, carry = 0; i >= 0; --i) { digit = xDigits[i]; resultDigits[i + digitShift + 1] = (B.JSInt_methods._shrReceiverPositive$1(digit, carryBitShift) | carry) >>> 0; carry = B.JSInt_methods.$shl((digit & bitMask) >>> 0, bitShift); } resultDigits[digitShift] = carry; }, _BigIntImpl__lShiftDigits(xDigits, xUsed, n, resultDigits) { var resultUsed, i, resultUsed0, digitsShift = B.JSInt_methods._tdivFast$1(n, 16); if (B.JSInt_methods.$mod(n, 16) === 0) return A._BigIntImpl__dlShiftDigits(xDigits, xUsed, digitsShift, resultDigits); resultUsed = xUsed + digitsShift + 1; A._BigIntImpl__lsh(xDigits, xUsed, n, resultDigits); for (i = digitsShift; --i, i >= 0;) resultDigits[i] = 0; resultUsed0 = resultUsed - 1; return resultDigits[resultUsed0] === 0 ? resultUsed0 : resultUsed; }, _BigIntImpl__rsh(xDigits, xUsed, n, resultDigits) { var i, digit, digitsShift = B.JSInt_methods._tdivFast$1(n, 16), bitShift = B.JSInt_methods.$mod(n, 16), carryBitShift = 16 - bitShift, bitMask = B.JSInt_methods.$shl(1, bitShift) - 1, carry = B.JSInt_methods._shrReceiverPositive$1(xDigits[digitsShift], bitShift), last = xUsed - digitsShift - 1; for (i = 0; i < last; ++i) { digit = xDigits[i + digitsShift + 1]; resultDigits[i] = (B.JSInt_methods.$shl((digit & bitMask) >>> 0, carryBitShift) | carry) >>> 0; carry = B.JSInt_methods._shrReceiverPositive$1(digit, bitShift); } resultDigits[last] = carry; }, _BigIntImpl__compareDigits(digits, used, otherDigits, otherUsed) { var i, result = used - otherUsed; if (result === 0) for (i = used - 1; i >= 0; --i) { result = digits[i] - otherDigits[i]; if (result !== 0) return result; } return result; }, _BigIntImpl__absAdd(digits, used, otherDigits, otherUsed, resultDigits) { var carry, i; for (carry = 0, i = 0; i < otherUsed; ++i) { carry += digits[i] + otherDigits[i]; resultDigits[i] = carry & 65535; carry = carry >>> 16; } for (i = otherUsed; i < used; ++i) { carry += digits[i]; resultDigits[i] = carry & 65535; carry = carry >>> 16; } resultDigits[used] = carry; }, _BigIntImpl__absSub(digits, used, otherDigits, otherUsed, resultDigits) { var carry, i; for (carry = 0, i = 0; i < otherUsed; ++i) { carry += digits[i] - otherDigits[i]; resultDigits[i] = carry & 65535; carry = 0 - (B.JSInt_methods._shrOtherPositive$1(carry, 16) & 1); } for (i = otherUsed; i < used; ++i) { carry += digits[i]; resultDigits[i] = carry & 65535; carry = 0 - (B.JSInt_methods._shrOtherPositive$1(carry, 16) & 1); } }, _BigIntImpl__mulAdd(x, multiplicandDigits, i, accumulatorDigits, j, n) { var c, i0, combined, j0, l; if (x === 0) return; for (c = 0; --n, n >= 0; j = j0, i = i0) { i0 = i + 1; combined = x * multiplicandDigits[i] + accumulatorDigits[j] + c; j0 = j + 1; accumulatorDigits[j] = combined & 65535; c = B.JSInt_methods._tdivFast$1(combined, 65536); } for (; c !== 0; j = j0) { l = accumulatorDigits[j] + c; j0 = j + 1; accumulatorDigits[j] = l & 65535; c = B.JSInt_methods._tdivFast$1(l, 65536); } }, _BigIntImpl__estimateQuotientDigit(topDigitDivisor, digits, i) { var quotientDigit, t1 = digits[i]; if (t1 === topDigitDivisor) return 65535; quotientDigit = B.JSInt_methods.$tdiv((t1 << 16 | digits[i - 1]) >>> 0, topDigitDivisor); if (quotientDigit > 65535) return 65535; return quotientDigit; }, Comparable_compare(a, b) { return J.compareTo$1$ns(a, b); }, DateTime_parse(formattedString) { var t1, t2, t3, years, month, day, hour, minute, second, milliAndMicroseconds, millisecond, tzSign, sign, hourDifference, isUtc, value, _null = null, match = $.$get$DateTime__parseFormat().firstMatch$1(formattedString); if (match != null) { t1 = new A.DateTime_parse_parseIntOrZero(); t2 = match._match; t3 = t2[1]; t3.toString; years = A.int_parse(t3, _null); t3 = t2[2]; t3.toString; month = A.int_parse(t3, _null); t3 = t2[3]; t3.toString; day = A.int_parse(t3, _null); hour = t1.call$1(t2[4]); minute = t1.call$1(t2[5]); second = t1.call$1(t2[6]); milliAndMicroseconds = new A.DateTime_parse_parseMilliAndMicroseconds().call$1(t2[7]); millisecond = B.JSInt_methods._tdivFast$1(milliAndMicroseconds, 1000); if (t2[8] != null) { tzSign = t2[9]; if (tzSign != null) { sign = tzSign === "-" ? -1 : 1; t3 = t2[10]; t3.toString; hourDifference = A.int_parse(t3, _null); minute -= sign * (t1.call$1(t2[11]) + 60 * hourDifference); } isUtc = true; } else isUtc = false; value = A.Primitives_valueFromDecomposedDate(years, month, day, hour, minute, second, millisecond + B.JSNumber_methods.round$0(milliAndMicroseconds % 1000 / 1000), isUtc); if (value == null) throw A.wrapException(A.FormatException$("Time out of range", formattedString, _null)); return A.DateTime$_withValue(value, isUtc); } else throw A.wrapException(A.FormatException$("Invalid date format", formattedString, _null)); }, DateTime_tryParse(formattedString) { var t1, exception; try { t1 = A.DateTime_parse(formattedString); return t1; } catch (exception) { if (type$.FormatException._is(A.unwrapException(exception))) return null; else throw exception; } }, DateTime$_withValue(_value, isUtc) { var t1; if (Math.abs(_value) <= 864e13) t1 = false; else t1 = true; if (t1) A.throwExpression(A.ArgumentError$("DateTime is outside valid range: " + _value, null)); A.checkNotNullable(isUtc, "isUtc", type$.bool); return new A.DateTime(_value, isUtc); }, DateTime__fourDigits(n) { var absN = Math.abs(n), sign = n < 0 ? "-" : ""; if (absN >= 1000) return "" + n; if (absN >= 100) return sign + "0" + absN; if (absN >= 10) return sign + "00" + absN; return sign + "000" + absN; }, DateTime__sixDigits(n) { var absN = Math.abs(n), sign = n < 0 ? "-" : "+"; if (absN >= 100000) return sign + absN; return sign + "0" + absN; }, DateTime__threeDigits(n) { if (n >= 100) return "" + n; if (n >= 10) return "0" + n; return "00" + n; }, DateTime__twoDigits(n) { if (n >= 10) return "" + n; return "0" + n; }, Duration$(days, hours, microseconds, milliseconds, minutes, seconds) { return new A.Duration(microseconds + 1000 * milliseconds + 1000000 * seconds + 60000000 * minutes + 3600000000 * hours + 864e8 * days); }, Error_safeToString(object) { if (typeof object == "number" || A._isBool(object) || object == null) return J.toString$0$(object); if (typeof object == "string") return JSON.stringify(object); return A.Error__objectToString(object); }, Error_throwWithStackTrace(error, stackTrace) { A.checkNotNullable(error, "error", type$.Object); A.checkNotNullable(stackTrace, "stackTrace", type$.StackTrace); A.Error__throw(error, stackTrace); A.ReachabilityError$(string$.x60null_t); }, AssertionError$(message) { return new A.AssertionError(message); }, ArgumentError$(message, $name) { return new A.ArgumentError(false, null, $name, message); }, ArgumentError$value(value, $name, message) { return new A.ArgumentError(true, value, $name, message); }, ArgumentError$notNull($name) { return new A.ArgumentError(false, null, $name, "Must not be null"); }, ArgumentError_checkNotNull(argument, $name) { if (argument == null) throw A.wrapException(A.ArgumentError$notNull($name)); return argument; }, RangeError$(message) { var _null = null; return new A.RangeError(_null, _null, false, _null, _null, message); }, RangeError$value(value, $name) { return new A.RangeError(null, null, true, value, $name, "Value not in range"); }, RangeError$range(invalidValue, minValue, maxValue, $name, message) { return new A.RangeError(minValue, maxValue, true, invalidValue, $name, "Invalid value"); }, RangeError_checkValueInInterval(value, minValue, maxValue, $name) { if (value < minValue || value > maxValue) throw A.wrapException(A.RangeError$range(value, minValue, maxValue, $name, null)); return value; }, RangeError_checkValidIndex(index, indexable, $name, $length) { if ($length == null) $length = J.get$length$asx(indexable); if (0 > index || index >= $length) throw A.wrapException(A.IndexError$(index, indexable, $name == null ? "index" : $name, null, $length)); return index; }, RangeError_checkValidRange(start, end, $length, startName, endName) { if (0 > start || start > $length) throw A.wrapException(A.RangeError$range(start, 0, $length, startName == null ? "start" : startName, null)); if (end != null) { if (start > end || end > $length) throw A.wrapException(A.RangeError$range(end, start, $length, endName == null ? "end" : endName, null)); return end; } return $length; }, RangeError_checkNotNegative(value, $name) { if (value < 0) throw A.wrapException(A.RangeError$range(value, 0, null, $name, null)); return value; }, IndexError$(invalidValue, indexable, $name, message, $length) { var t1 = $length == null ? J.get$length$asx(indexable) : $length; return new A.IndexError(t1, true, invalidValue, $name, "Index out of range"); }, UnsupportedError$(message) { return new A.UnsupportedError(message); }, UnimplementedError$(message) { return new A.UnimplementedError(message); }, StateError$(message) { return new A.StateError(message); }, ConcurrentModificationError$(modifiedObject) { return new A.ConcurrentModificationError(modifiedObject); }, Exception_Exception(message) { return new A._Exception(message); }, FormatException$(message, source, offset) { return new A.FormatException(message, source, offset); }, Iterable_Iterable$generate(count, generator, $E) { if (count <= 0) return new A.EmptyIterable($E._eval$1("EmptyIterable<0>")); return new A._GeneratorIterable(count, generator, $E._eval$1("_GeneratorIterable<0>")); }, Map_castFrom(source, $K, $V, K2, V2) { return new A.CastMap(source, $K._eval$1("@<0>")._bind$1($V)._bind$1(K2)._bind$1(V2)._eval$1("CastMap<1,2,3,4>")); }, Object_hash(object1, object2, object3, object4, object5, object6, object7, object8, object9, object10, object11, object12, object13, object14, object15, object16, object17, object18, object19, object20) { var t1; if (B.C_SentinelValue === object3) return A.SystemHash_hash2(J.get$hashCode$(object1), J.get$hashCode$(object2), $.$get$_hashSeed()); if (B.C_SentinelValue === object4) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3)); } if (B.C_SentinelValue === object5) return A.SystemHash_hash4(J.get$hashCode$(object1), J.get$hashCode$(object2), J.get$hashCode$(object3), J.get$hashCode$(object4), $.$get$_hashSeed()); if (B.C_SentinelValue === object6) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5)); } if (B.C_SentinelValue === object7) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6)); } if (B.C_SentinelValue === object8) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7)); } if (B.C_SentinelValue === object9) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8)); } if (B.C_SentinelValue === object10) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9)); } if (B.C_SentinelValue === object11) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10)); } if (B.C_SentinelValue === object12) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11)); } if (B.C_SentinelValue === object13) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12)); } if (B.C_SentinelValue === object14) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13)); } if (B.C_SentinelValue === object15) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14)); } if (B.C_SentinelValue === object16) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15)); } if (B.C_SentinelValue === object17) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); object16 = J.get$hashCode$(object16); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15), object16)); } if (B.C_SentinelValue === object18) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); object16 = J.get$hashCode$(object16); object17 = J.get$hashCode$(object17); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15), object16), object17)); } if (B.C_SentinelValue === object19) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); object16 = J.get$hashCode$(object16); object17 = J.get$hashCode$(object17); object18 = J.get$hashCode$(object18); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15), object16), object17), object18)); } if (B.C_SentinelValue === object20) { t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); object16 = J.get$hashCode$(object16); object17 = J.get$hashCode$(object17); object18 = J.get$hashCode$(object18); object19 = J.get$hashCode$(object19); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15), object16), object17), object18), object19)); } t1 = J.get$hashCode$(object1); object2 = J.get$hashCode$(object2); object3 = J.get$hashCode$(object3); object4 = J.get$hashCode$(object4); object5 = J.get$hashCode$(object5); object6 = J.get$hashCode$(object6); object7 = J.get$hashCode$(object7); object8 = J.get$hashCode$(object8); object9 = J.get$hashCode$(object9); object10 = J.get$hashCode$(object10); object11 = J.get$hashCode$(object11); object12 = J.get$hashCode$(object12); object13 = J.get$hashCode$(object13); object14 = J.get$hashCode$(object14); object15 = J.get$hashCode$(object15); object16 = J.get$hashCode$(object16); object17 = J.get$hashCode$(object17); object18 = J.get$hashCode$(object18); object19 = J.get$hashCode$(object19); object20 = J.get$hashCode$(object20); return A.SystemHash_finish(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine(A.SystemHash_combine($.$get$_hashSeed(), t1), object2), object3), object4), object5), object6), object7), object8), object9), object10), object11), object12), object13), object14), object15), object16), object17), object18), object19), object20)); }, Object_hashAll(objects) { var t1, hash = $.$get$_hashSeed(); for (t1 = J.get$iterator$ax(objects); t1.moveNext$0();) hash = A.SystemHash_combine(hash, J.get$hashCode$(t1.get$current(t1))); return A.SystemHash_finish(hash); }, print(object) { var line = A.S(object), toZone = $.printToZone; if (toZone == null) A.printString(line); else toZone.call$1(line); }, Stopwatch$() { $.$get$Stopwatch__frequency(); return new A.Stopwatch(); }, _combineSurrogatePair(start, end) { return 65536 + ((start & 1023) << 10) + (end & 1023); }, Uri_parse(uri, start, end) { var t1, delta, indices, t2, schemeEnd, hostStart, portStart, pathStart, queryStart, fragmentStart, isSimple, scheme, t3, schemeAuth, userInfoStart, userInfo, host, portNumber, port, path, query, _null = null; end = uri.length; t1 = start + 5; if (end >= t1) { delta = ((B.JSString_methods._codeUnitAt$1(uri, start + 4) ^ 58) * 3 | B.JSString_methods._codeUnitAt$1(uri, start) ^ 100 | B.JSString_methods._codeUnitAt$1(uri, start + 1) ^ 97 | B.JSString_methods._codeUnitAt$1(uri, start + 2) ^ 116 | B.JSString_methods._codeUnitAt$1(uri, start + 3) ^ 97) >>> 0; if (delta === 0) return A.UriData__parse(start > 0 || end < end ? B.JSString_methods.substring$2(uri, start, end) : uri, 5, _null).get$uri(); else if (delta === 32) return A.UriData__parse(B.JSString_methods.substring$2(uri, t1, end), 0, _null).get$uri(); } indices = A.List_List$filled(8, 0, false, type$.int); indices[0] = 0; t2 = start - 1; indices[1] = t2; indices[2] = t2; indices[7] = t2; indices[3] = start; indices[4] = start; indices[5] = end; indices[6] = end; if (A._scan(uri, start, end, 0, indices) >= 14) indices[7] = end; schemeEnd = indices[1]; if (schemeEnd >= start) if (A._scan(uri, start, schemeEnd, 20, indices) === 20) indices[7] = schemeEnd; hostStart = indices[2] + 1; portStart = indices[3]; pathStart = indices[4]; queryStart = indices[5]; fragmentStart = indices[6]; if (fragmentStart < queryStart) queryStart = fragmentStart; if (pathStart < hostStart) pathStart = queryStart; else if (pathStart <= schemeEnd) pathStart = schemeEnd + 1; if (portStart < hostStart) portStart = pathStart; isSimple = indices[7] < start; if (isSimple) if (hostStart > schemeEnd + 3) { scheme = _null; isSimple = false; } else { t2 = portStart > start; if (t2 && portStart + 1 === pathStart) { scheme = _null; isSimple = false; } else { if (!(queryStart < end && queryStart === pathStart + 2 && B.JSString_methods.startsWith$2(uri, "..", pathStart))) t3 = queryStart > pathStart + 2 && B.JSString_methods.startsWith$2(uri, "/..", queryStart - 3); else t3 = true; if (t3) { scheme = _null; isSimple = false; } else { if (schemeEnd === start + 4) if (B.JSString_methods.startsWith$2(uri, "file", start)) { if (hostStart <= start) { if (!B.JSString_methods.startsWith$2(uri, "/", pathStart)) { schemeAuth = "file:///"; delta = 3; } else { schemeAuth = "file://"; delta = 2; } uri = schemeAuth + B.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; t1 = delta - start; queryStart += t1; fragmentStart += t1; end = uri.length; start = 0; hostStart = 7; portStart = 7; pathStart = 7; } else if (pathStart === queryStart) if (start === 0 && true) { uri = B.JSString_methods.replaceRange$3(uri, pathStart, queryStart, "/"); ++queryStart; ++fragmentStart; ++end; } else { uri = B.JSString_methods.substring$2(uri, start, pathStart) + "/" + B.JSString_methods.substring$2(uri, queryStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; pathStart -= start; t1 = 1 - start; queryStart += t1; fragmentStart += t1; end = uri.length; start = 0; } scheme = "file"; } else if (B.JSString_methods.startsWith$2(uri, "http", start)) { if (t2 && portStart + 3 === pathStart && B.JSString_methods.startsWith$2(uri, "80", portStart + 1)) if (start === 0 && true) { uri = B.JSString_methods.replaceRange$3(uri, portStart, pathStart, ""); pathStart -= 3; queryStart -= 3; fragmentStart -= 3; end -= 3; } else { uri = B.JSString_methods.substring$2(uri, start, portStart) + B.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; t1 = 3 + start; pathStart -= t1; queryStart -= t1; fragmentStart -= t1; end = uri.length; start = 0; } scheme = "http"; } else scheme = _null; else if (schemeEnd === t1 && B.JSString_methods.startsWith$2(uri, "https", start)) { if (t2 && portStart + 4 === pathStart && B.JSString_methods.startsWith$2(uri, "443", portStart + 1)) if (start === 0 && true) { uri = B.JSString_methods.replaceRange$3(uri, portStart, pathStart, ""); pathStart -= 4; queryStart -= 4; fragmentStart -= 4; end -= 3; } else { uri = B.JSString_methods.substring$2(uri, start, portStart) + B.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; t1 = 4 + start; pathStart -= t1; queryStart -= t1; fragmentStart -= t1; end = uri.length; start = 0; } scheme = "https"; } else scheme = _null; isSimple = true; } } } else scheme = _null; if (isSimple) { if (start > 0 || end < uri.length) { uri = B.JSString_methods.substring$2(uri, start, end); schemeEnd -= start; hostStart -= start; portStart -= start; pathStart -= start; queryStart -= start; fragmentStart -= start; } return new A._SimpleUri(uri, schemeEnd, hostStart, portStart, pathStart, queryStart, fragmentStart, scheme); } if (scheme == null) if (schemeEnd > start) scheme = A._Uri__makeScheme(uri, start, schemeEnd); else { if (schemeEnd === start) { A._Uri__fail(uri, start, "Invalid empty scheme"); A.ReachabilityError$(string$.x60null_t); } scheme = ""; } if (hostStart > start) { userInfoStart = schemeEnd + 3; userInfo = userInfoStart < hostStart ? A._Uri__makeUserInfo(uri, userInfoStart, hostStart - 1) : ""; host = A._Uri__makeHost(uri, hostStart, portStart, false); t1 = portStart + 1; if (t1 < pathStart) { portNumber = A.Primitives_parseInt(B.JSString_methods.substring$2(uri, t1, pathStart), _null); port = A._Uri__makePort(portNumber == null ? A.throwExpression(A.FormatException$("Invalid port", uri, t1)) : portNumber, scheme); } else port = _null; } else { port = _null; host = port; userInfo = ""; } path = A._Uri__makePath(uri, pathStart, queryStart, _null, scheme, host != null); query = queryStart < fragmentStart ? A._Uri__makeQuery(uri, queryStart + 1, fragmentStart, _null) : _null; return A._Uri$_internal(scheme, userInfo, host, port, path, query, fragmentStart < end ? A._Uri__makeFragment(uri, fragmentStart + 1, end) : _null); }, Uri_tryParse(uri) { var t1, exception, start = 0, end = null; try { t1 = A.Uri_parse(uri, start, end); return t1; } catch (exception) { if (type$.FormatException._is(A.unwrapException(exception))) return null; else throw exception; } }, Uri_decodeComponent(encodedComponent) { return A._Uri__uriDecode(encodedComponent, 0, encodedComponent.length, B.C_Utf8Codec, false); }, Uri_splitQueryString(query) { var t1 = type$.String; return B.JSArray_methods.fold$1$2(A._setArrayType(query.split("&"), type$.JSArray_String), A.LinkedHashMap_LinkedHashMap$_empty(t1, t1), new A.Uri_splitQueryString_closure(B.C_Utf8Codec), type$.Map_String_String); }, Uri__parseIPv4Address(host, start, end) { var i, partStart, partIndex, char, part, partIndex0, _s43_ = "IPv4 address should contain exactly 4 parts", _s37_ = "each part must be in the range 0..255", error = new A.Uri__parseIPv4Address_error(host), result = new Uint8Array(4); for (i = start, partStart = i, partIndex = 0; i < end; ++i) { char = B.JSString_methods.codeUnitAt$1(host, i); if (char !== 46) { if ((char ^ 48) > 9) error.call$2("invalid character", i); } else { if (partIndex === 3) error.call$2(_s43_, i); part = A.int_parse(B.JSString_methods.substring$2(host, partStart, i), null); if (part > 255) error.call$2(_s37_, partStart); partIndex0 = partIndex + 1; result[partIndex] = part; partStart = i + 1; partIndex = partIndex0; } } if (partIndex !== 3) error.call$2(_s43_, end); part = A.int_parse(B.JSString_methods.substring$2(host, partStart, end), null); if (part > 255) error.call$2(_s37_, partStart); result[partIndex] = part; return result; }, Uri_parseIPv6Address(host, start, end) { var parts, i, partStart, wildcardSeen, seenDot, char, atEnd, t1, last, bytes, wildCardLength, index, value, j, _null = null, error = new A.Uri_parseIPv6Address_error(host), parseHex = new A.Uri_parseIPv6Address_parseHex(error, host); if (host.length < 2) error.call$2("address is too short", _null); parts = A._setArrayType([], type$.JSArray_int); for (i = start, partStart = i, wildcardSeen = false, seenDot = false; i < end; ++i) { char = B.JSString_methods.codeUnitAt$1(host, i); if (char === 58) { if (i === start) { ++i; if (B.JSString_methods.codeUnitAt$1(host, i) !== 58) error.call$2("invalid start colon.", i); partStart = i; } if (i === partStart) { if (wildcardSeen) error.call$2("only one wildcard `::` is allowed", i); parts.push(-1); wildcardSeen = true; } else parts.push(parseHex.call$2(partStart, i)); partStart = i + 1; } else if (char === 46) seenDot = true; } if (parts.length === 0) error.call$2("too few parts", _null); atEnd = partStart === end; t1 = B.JSArray_methods.get$last(parts); if (atEnd && t1 !== -1) error.call$2("expected a part after last `:`", end); if (!atEnd) if (!seenDot) parts.push(parseHex.call$2(partStart, end)); else { last = A.Uri__parseIPv4Address(host, partStart, end); parts.push((last[0] << 8 | last[1]) >>> 0); parts.push((last[2] << 8 | last[3]) >>> 0); } if (wildcardSeen) { if (parts.length > 7) error.call$2("an address with a wildcard must have less than 7 parts", _null); } else if (parts.length !== 8) error.call$2("an address without a wildcard must contain exactly 8 parts", _null); bytes = new Uint8Array(16); for (t1 = parts.length, wildCardLength = 9 - t1, i = 0, index = 0; i < t1; ++i) { value = parts[i]; if (value === -1) for (j = 0; j < wildCardLength; ++j) { bytes[index] = 0; bytes[index + 1] = 0; index += 2; } else { bytes[index] = B.JSInt_methods._shrOtherPositive$1(value, 8); bytes[index + 1] = value & 255; index += 2; } } return bytes; }, _Uri$_internal(scheme, _userInfo, _host, _port, path, _query, _fragment) { return new A._Uri(scheme, _userInfo, _host, _port, path, _query, _fragment); }, _Uri__Uri(host, path, pathSegments, queryParameters, scheme) { var userInfo, query, fragment, port, isFile, t1, hasAuthority, t2, _null = null; scheme = scheme == null ? "" : A._Uri__makeScheme(scheme, 0, scheme.length); userInfo = A._Uri__makeUserInfo(_null, 0, 0); host = A._Uri__makeHost(host, 0, host == null ? 0 : host.length, false); query = A._Uri__makeQuery(_null, 0, 0, queryParameters); fragment = A._Uri__makeFragment(_null, 0, 0); port = A._Uri__makePort(_null, scheme); isFile = scheme === "file"; if (host == null) t1 = userInfo.length !== 0 || port != null || isFile; else t1 = false; if (t1) host = ""; t1 = host == null; hasAuthority = !t1; path = A._Uri__makePath(path, 0, path == null ? 0 : path.length, pathSegments, scheme, hasAuthority); t2 = scheme.length === 0; if (t2 && t1 && !B.JSString_methods.startsWith$1(path, "/")) path = A._Uri__normalizeRelativePath(path, !t2 || hasAuthority); else path = A._Uri__removeDotSegments(path); return A._Uri$_internal(scheme, userInfo, t1 && B.JSString_methods.startsWith$1(path, "//") ? "" : host, port, path, query, fragment); }, _Uri__defaultPort(scheme) { if (scheme === "http") return 80; if (scheme === "https") return 443; return 0; }, _Uri__fail(uri, index, message) { throw A.wrapException(A.FormatException$(message, uri, index)); }, _Uri__checkNonWindowsPathReservedCharacters(segments, argumentError) { var t1, _i, segment, t2, t3; for (t1 = segments.length, _i = 0; _i < t1; ++_i) { segment = segments[_i]; segment.toString; t2 = J.getInterceptor$asx(segment); t3 = t2.get$length(segment); if (0 > t3) A.throwExpression(A.RangeError$range(0, 0, t2.get$length(segment), null, null)); if (A.stringContainsUnchecked(segment, "/", 0)) { t1 = A.UnsupportedError$("Illegal path character " + A.S(segment)); throw A.wrapException(t1); } } }, _Uri__checkWindowsPathReservedCharacters(segments, argumentError, firstSegment) { var t1, t2, t3; for (t1 = A.SubListIterable$(segments, firstSegment, null, A._arrayInstanceType(segments)._precomputed1), t1 = new A.ListIterator(t1, t1.get$length(t1), t1.$ti._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; t3 = A.RegExp_RegExp('["*/:<>?\\\\|]', true, false, false, false); t2.toString; if (A.stringContainsUnchecked(t2, t3, 0)) if (argumentError) throw A.wrapException(A.ArgumentError$("Illegal character in path", null)); else throw A.wrapException(A.UnsupportedError$("Illegal character in path: " + t2)); } }, _Uri__checkWindowsDriveLetter(charCode, argumentError) { var t1, _s21_ = "Illegal drive letter "; if (!(65 <= charCode && charCode <= 90)) t1 = 97 <= charCode && charCode <= 122; else t1 = true; if (t1) return; if (argumentError) throw A.wrapException(A.ArgumentError$(_s21_ + A.String_String$fromCharCode(charCode), null)); else throw A.wrapException(A.UnsupportedError$(_s21_ + A.String_String$fromCharCode(charCode))); }, _Uri__makePort(port, scheme) { if (port != null && port === A._Uri__defaultPort(scheme)) return null; return port; }, _Uri__makeHost(host, start, end, strictIPv6) { var t1, t2, index, zoneIDstart, zoneID, i; if (host == null) return null; if (start === end) return ""; if (B.JSString_methods.codeUnitAt$1(host, start) === 91) { t1 = end - 1; if (B.JSString_methods.codeUnitAt$1(host, t1) !== 93) { A._Uri__fail(host, start, "Missing end `]` to match `[` in host"); A.ReachabilityError$(string$.x60null_t); } t2 = start + 1; index = A._Uri__checkZoneID(host, t2, t1); if (index < t1) { zoneIDstart = index + 1; zoneID = A._Uri__normalizeZoneID(host, B.JSString_methods.startsWith$2(host, "25", zoneIDstart) ? index + 3 : zoneIDstart, t1, "%25"); } else zoneID = ""; A.Uri_parseIPv6Address(host, t2, index); return B.JSString_methods.substring$2(host, start, index).toLowerCase() + zoneID + "]"; } for (i = start; i < end; ++i) if (B.JSString_methods.codeUnitAt$1(host, i) === 58) { index = B.JSString_methods.indexOf$2(host, "%", start); index = index >= start && index < end ? index : end; if (index < end) { zoneIDstart = index + 1; zoneID = A._Uri__normalizeZoneID(host, B.JSString_methods.startsWith$2(host, "25", zoneIDstart) ? index + 3 : zoneIDstart, end, "%25"); } else zoneID = ""; A.Uri_parseIPv6Address(host, start, index); return "[" + B.JSString_methods.substring$2(host, start, index) + zoneID + "]"; } return A._Uri__normalizeRegName(host, start, end); }, _Uri__checkZoneID(host, start, end) { var index = B.JSString_methods.indexOf$2(host, "%", start); return index >= start && index < end ? index : end; }, _Uri__normalizeZoneID(host, start, end, prefix) { var index, sectionStart, isNormalized, char, replacement, t1, t2, tail, sourceLength, slice, buffer = prefix !== "" ? new A.StringBuffer(prefix) : null; for (index = start, sectionStart = index, isNormalized = true; index < end;) { char = B.JSString_methods.codeUnitAt$1(host, index); if (char === 37) { replacement = A._Uri__normalizeEscape(host, index, true); t1 = replacement == null; if (t1 && isNormalized) { index += 3; continue; } if (buffer == null) buffer = new A.StringBuffer(""); t2 = buffer._contents += B.JSString_methods.substring$2(host, sectionStart, index); if (t1) replacement = B.JSString_methods.substring$2(host, index, index + 3); else if (replacement === "%") { A._Uri__fail(host, index, "ZoneID should not contain % anymore"); A.ReachabilityError$(string$.x60null_t); } buffer._contents = t2 + replacement; index += 3; sectionStart = index; isNormalized = true; } else if (char < 127 && (B.List_nxB[char >>> 4] & 1 << (char & 15)) !== 0) { if (isNormalized && 65 <= char && 90 >= char) { if (buffer == null) buffer = new A.StringBuffer(""); if (sectionStart < index) { buffer._contents += B.JSString_methods.substring$2(host, sectionStart, index); sectionStart = index; } isNormalized = false; } ++index; } else { if ((char & 64512) === 55296 && index + 1 < end) { tail = B.JSString_methods.codeUnitAt$1(host, index + 1); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; slice = B.JSString_methods.substring$2(host, sectionStart, index); if (buffer == null) { buffer = new A.StringBuffer(""); t1 = buffer; } else t1 = buffer; t1._contents += slice; t1._contents += A._Uri__escapeChar(char); index += sourceLength; sectionStart = index; } } if (buffer == null) return B.JSString_methods.substring$2(host, start, end); if (sectionStart < end) buffer._contents += B.JSString_methods.substring$2(host, sectionStart, end); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__normalizeRegName(host, start, end) { var index, sectionStart, buffer, isNormalized, char, replacement, t1, slice, t2, sourceLength, tail; for (index = start, sectionStart = index, buffer = null, isNormalized = true; index < end;) { char = B.JSString_methods.codeUnitAt$1(host, index); if (char === 37) { replacement = A._Uri__normalizeEscape(host, index, true); t1 = replacement == null; if (t1 && isNormalized) { index += 3; continue; } if (buffer == null) buffer = new A.StringBuffer(""); slice = B.JSString_methods.substring$2(host, sectionStart, index); t2 = buffer._contents += !isNormalized ? slice.toLowerCase() : slice; if (t1) { replacement = B.JSString_methods.substring$2(host, index, index + 3); sourceLength = 3; } else if (replacement === "%") { replacement = "%25"; sourceLength = 1; } else sourceLength = 3; buffer._contents = t2 + replacement; index += sourceLength; sectionStart = index; isNormalized = true; } else if (char < 127 && (B.List_qNA[char >>> 4] & 1 << (char & 15)) !== 0) { if (isNormalized && 65 <= char && 90 >= char) { if (buffer == null) buffer = new A.StringBuffer(""); if (sectionStart < index) { buffer._contents += B.JSString_methods.substring$2(host, sectionStart, index); sectionStart = index; } isNormalized = false; } ++index; } else if (char <= 93 && (B.List_2Vk[char >>> 4] & 1 << (char & 15)) !== 0) { A._Uri__fail(host, index, "Invalid character"); A.ReachabilityError$(string$.x60null_t); } else { if ((char & 64512) === 55296 && index + 1 < end) { tail = B.JSString_methods.codeUnitAt$1(host, index + 1); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; slice = B.JSString_methods.substring$2(host, sectionStart, index); if (!isNormalized) slice = slice.toLowerCase(); if (buffer == null) { buffer = new A.StringBuffer(""); t1 = buffer; } else t1 = buffer; t1._contents += slice; t1._contents += A._Uri__escapeChar(char); index += sourceLength; sectionStart = index; } } if (buffer == null) return B.JSString_methods.substring$2(host, start, end); if (sectionStart < end) { slice = B.JSString_methods.substring$2(host, sectionStart, end); buffer._contents += !isNormalized ? slice.toLowerCase() : slice; } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__makeScheme(scheme, start, end) { var i, containsUpperCase, codeUnit, _s67_ = string$.x60null_t; if (start === end) return ""; if (!A._Uri__isAlphabeticCharacter(J._codeUnitAt$1$s(scheme, start))) { A._Uri__fail(scheme, start, "Scheme not starting with alphabetic character"); A.ReachabilityError$(_s67_); } for (i = start, containsUpperCase = false; i < end; ++i) { codeUnit = B.JSString_methods._codeUnitAt$1(scheme, i); if (!(codeUnit < 128 && (B.List_JYB[codeUnit >>> 4] & 1 << (codeUnit & 15)) !== 0)) { A._Uri__fail(scheme, i, "Illegal scheme character"); A.ReachabilityError$(_s67_); } if (65 <= codeUnit && codeUnit <= 90) containsUpperCase = true; } scheme = B.JSString_methods.substring$2(scheme, start, end); return A._Uri__canonicalizeScheme(containsUpperCase ? scheme.toLowerCase() : scheme); }, _Uri__canonicalizeScheme(scheme) { if (scheme === "http") return "http"; if (scheme === "file") return "file"; if (scheme === "https") return "https"; if (scheme === "package") return "package"; return scheme; }, _Uri__makeUserInfo(userInfo, start, end) { if (userInfo == null) return ""; return A._Uri__normalizeOrSubstring(userInfo, start, end, B.List_gRj, false); }, _Uri__makePath(path, start, end, pathSegments, scheme, hasAuthority) { var result, isFile = scheme === "file", ensureLeadingSlash = isFile || hasAuthority; if (path == null) { if (pathSegments == null) return isFile ? "/" : ""; result = new A.MappedListIterable(pathSegments, new A._Uri__makePath_closure(), A._arrayInstanceType(pathSegments)._eval$1("MappedListIterable<1,String>")).join$1(0, "/"); } else if (pathSegments != null) throw A.wrapException(A.ArgumentError$("Both path and pathSegments specified", null)); else result = A._Uri__normalizeOrSubstring(path, start, end, B.List_qg4, true); if (result.length === 0) { if (isFile) return "/"; } else if (ensureLeadingSlash && !B.JSString_methods.startsWith$1(result, "/")) result = "/" + result; return A._Uri__normalizePath(result, scheme, hasAuthority); }, _Uri__normalizePath(path, scheme, hasAuthority) { var t1 = scheme.length === 0; if (t1 && !hasAuthority && !B.JSString_methods.startsWith$1(path, "/")) return A._Uri__normalizeRelativePath(path, !t1 || hasAuthority); return A._Uri__removeDotSegments(path); }, _Uri__makeQuery(query, start, end, queryParameters) { var result, t1 = {}; if (query != null) { if (queryParameters != null) throw A.wrapException(A.ArgumentError$("Both query and queryParameters specified", null)); return A._Uri__normalizeOrSubstring(query, start, end, B.List_CVk, true); } if (queryParameters == null) return null; result = new A.StringBuffer(""); t1.separator = ""; queryParameters.forEach$1(0, new A._Uri__makeQuery_closure(new A._Uri__makeQuery_writeParameter(t1, result))); t1 = result._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__makeFragment(fragment, start, end) { if (fragment == null) return null; return A._Uri__normalizeOrSubstring(fragment, start, end, B.List_CVk, true); }, _Uri__normalizeEscape(source, index, lowerCase) { var firstDigit, secondDigit, firstDigitValue, secondDigitValue, value, t1 = index + 2; if (t1 >= source.length) return "%"; firstDigit = B.JSString_methods.codeUnitAt$1(source, index + 1); secondDigit = B.JSString_methods.codeUnitAt$1(source, t1); firstDigitValue = A.hexDigitValue(firstDigit); secondDigitValue = A.hexDigitValue(secondDigit); if (firstDigitValue < 0 || secondDigitValue < 0) return "%"; value = firstDigitValue * 16 + secondDigitValue; if (value < 127 && (B.List_nxB[B.JSInt_methods._shrOtherPositive$1(value, 4)] & 1 << (value & 15)) !== 0) return A.Primitives_stringFromCharCode(lowerCase && 65 <= value && 90 >= value ? (value | 32) >>> 0 : value); if (firstDigit >= 97 || secondDigit >= 97) return B.JSString_methods.substring$2(source, index, index + 3).toUpperCase(); return null; }, _Uri__escapeChar(char) { var codeUnits, flag, encodedBytes, index, byte, _s16_ = "0123456789ABCDEF"; if (char < 128) { codeUnits = new Uint8Array(3); codeUnits[0] = 37; codeUnits[1] = B.JSString_methods._codeUnitAt$1(_s16_, char >>> 4); codeUnits[2] = B.JSString_methods._codeUnitAt$1(_s16_, char & 15); } else { if (char > 2047) if (char > 65535) { flag = 240; encodedBytes = 4; } else { flag = 224; encodedBytes = 3; } else { flag = 192; encodedBytes = 2; } codeUnits = new Uint8Array(3 * encodedBytes); for (index = 0; --encodedBytes, encodedBytes >= 0; flag = 128) { byte = B.JSInt_methods._shrReceiverPositive$1(char, 6 * encodedBytes) & 63 | flag; codeUnits[index] = 37; codeUnits[index + 1] = B.JSString_methods._codeUnitAt$1(_s16_, byte >>> 4); codeUnits[index + 2] = B.JSString_methods._codeUnitAt$1(_s16_, byte & 15); index += 3; } } return A.String_String$fromCharCodes(codeUnits, 0, null); }, _Uri__normalizeOrSubstring(component, start, end, charTable, escapeDelimiters) { var t1 = A._Uri__normalize(component, start, end, charTable, escapeDelimiters); return t1 == null ? B.JSString_methods.substring$2(component, start, end) : t1; }, _Uri__normalize(component, start, end, charTable, escapeDelimiters) { var t1, index, sectionStart, buffer, char, replacement, sourceLength, t2, tail, t3, _null = null; for (t1 = !escapeDelimiters, index = start, sectionStart = index, buffer = _null; index < end;) { char = B.JSString_methods.codeUnitAt$1(component, index); if (char < 127 && (charTable[char >>> 4] & 1 << (char & 15)) !== 0) ++index; else { if (char === 37) { replacement = A._Uri__normalizeEscape(component, index, false); if (replacement == null) { index += 3; continue; } if ("%" === replacement) { replacement = "%25"; sourceLength = 1; } else sourceLength = 3; } else if (t1 && char <= 93 && (B.List_2Vk[char >>> 4] & 1 << (char & 15)) !== 0) { A._Uri__fail(component, index, "Invalid character"); A.ReachabilityError$(string$.x60null_t); sourceLength = _null; replacement = sourceLength; } else { if ((char & 64512) === 55296) { t2 = index + 1; if (t2 < end) { tail = B.JSString_methods.codeUnitAt$1(component, t2); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; } else sourceLength = 1; replacement = A._Uri__escapeChar(char); } if (buffer == null) { buffer = new A.StringBuffer(""); t2 = buffer; } else t2 = buffer; t3 = t2._contents += B.JSString_methods.substring$2(component, sectionStart, index); t2._contents = t3 + A.S(replacement); index += sourceLength; sectionStart = index; } } if (buffer == null) return _null; if (sectionStart < end) buffer._contents += B.JSString_methods.substring$2(component, sectionStart, end); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__mayContainDotSegments(path) { if (B.JSString_methods.startsWith$1(path, ".")) return true; return B.JSString_methods.indexOf$1(path, "/.") !== -1; }, _Uri__removeDotSegments(path) { var output, t1, t2, appendSlash, _i, segment; if (!A._Uri__mayContainDotSegments(path)) return path; output = A._setArrayType([], type$.JSArray_String); for (t1 = path.split("/"), t2 = t1.length, appendSlash = false, _i = 0; _i < t2; ++_i) { segment = t1[_i]; if (J.$eq$(segment, "..")) { if (output.length !== 0) { output.pop(); if (output.length === 0) output.push(""); } appendSlash = true; } else if ("." === segment) appendSlash = true; else { output.push(segment); appendSlash = false; } } if (appendSlash) output.push(""); return B.JSArray_methods.join$1(output, "/"); }, _Uri__normalizeRelativePath(path, allowScheme) { var output, t1, t2, appendSlash, _i, segment; if (!A._Uri__mayContainDotSegments(path)) return !allowScheme ? A._Uri__escapeScheme(path) : path; output = A._setArrayType([], type$.JSArray_String); for (t1 = path.split("/"), t2 = t1.length, appendSlash = false, _i = 0; _i < t2; ++_i) { segment = t1[_i]; if (".." === segment) if (output.length !== 0 && B.JSArray_methods.get$last(output) !== "..") { output.pop(); appendSlash = true; } else { output.push(".."); appendSlash = false; } else if ("." === segment) appendSlash = true; else { output.push(segment); appendSlash = false; } } t1 = output.length; if (t1 !== 0) t1 = t1 === 1 && output[0].length === 0; else t1 = true; if (t1) return "./"; if (appendSlash || B.JSArray_methods.get$last(output) === "..") output.push(""); if (!allowScheme) output[0] = A._Uri__escapeScheme(output[0]); return B.JSArray_methods.join$1(output, "/"); }, _Uri__escapeScheme(path) { var i, char, t1 = path.length; if (t1 >= 2 && A._Uri__isAlphabeticCharacter(B.JSString_methods._codeUnitAt$1(path, 0))) for (i = 1; i < t1; ++i) { char = B.JSString_methods._codeUnitAt$1(path, i); if (char === 58) return B.JSString_methods.substring$2(path, 0, i) + "%3A" + B.JSString_methods.substring$1(path, i + 1); if (char > 127 || (B.List_JYB[char >>> 4] & 1 << (char & 15)) === 0) break; } return path; }, _Uri__packageNameEnd(uri, path) { if (uri.isScheme$1("package") && uri._host == null) return A._skipPackageNameChars(path, 0, path.length); return -1; }, _Uri__toWindowsFilePath(uri) { var hasDriveLetter, t2, host, segments = uri.get$pathSegments(), t1 = segments.length; if (t1 > 0 && J.get$length$asx(segments[0]) === 2 && J.codeUnitAt$1$s(segments[0], 1) === 58) { A._Uri__checkWindowsDriveLetter(J.codeUnitAt$1$s(segments[0], 0), false); A._Uri__checkWindowsPathReservedCharacters(segments, false, 1); hasDriveLetter = true; } else { A._Uri__checkWindowsPathReservedCharacters(segments, false, 0); hasDriveLetter = false; } t2 = uri.get$hasAbsolutePath() && !hasDriveLetter ? "\\" : ""; if (uri.get$hasAuthority()) { host = uri.get$host(uri); if (host.length !== 0) t2 = t2 + "\\" + host + "\\"; } t2 = A.StringBuffer__writeAll(t2, segments, "\\"); t1 = hasDriveLetter && t1 === 1 ? t2 + "\\" : t2; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__hexCharPairToByte(s, pos) { var byte, i, charCode; for (byte = 0, i = 0; i < 2; ++i) { charCode = B.JSString_methods._codeUnitAt$1(s, pos + i); if (48 <= charCode && charCode <= 57) byte = byte * 16 + charCode - 48; else { charCode |= 32; if (97 <= charCode && charCode <= 102) byte = byte * 16 + charCode - 87; else throw A.wrapException(A.ArgumentError$("Invalid URL encoding", null)); } } return byte; }, _Uri__uriDecode(text, start, end, encoding, plusToSpace) { var simple, codeUnit, t2, bytes, t1 = J.getInterceptor$s(text), i = start; while (true) { if (!(i < end)) { simple = true; break; } codeUnit = t1._codeUnitAt$1(text, i); if (codeUnit <= 127) if (codeUnit !== 37) t2 = plusToSpace && codeUnit === 43; else t2 = true; else t2 = true; if (t2) { simple = false; break; } ++i; } if (simple) { if (B.C_Utf8Codec !== encoding) t2 = false; else t2 = true; if (t2) return t1.substring$2(text, start, end); else bytes = new A.CodeUnits(t1.substring$2(text, start, end)); } else { bytes = A._setArrayType([], type$.JSArray_int); for (i = start; i < end; ++i) { codeUnit = t1._codeUnitAt$1(text, i); if (codeUnit > 127) throw A.wrapException(A.ArgumentError$("Illegal percent encoding in URI", null)); if (codeUnit === 37) { if (i + 3 > text.length) throw A.wrapException(A.ArgumentError$("Truncated URI", null)); bytes.push(A._Uri__hexCharPairToByte(text, i + 1)); i += 2; } else if (plusToSpace && codeUnit === 43) bytes.push(32); else bytes.push(codeUnit); } } return encoding.decode$1(0, bytes); }, _Uri__isAlphabeticCharacter(codeUnit) { var lowerCase = codeUnit | 32; return 97 <= lowerCase && lowerCase <= 122; }, UriData__parse(text, start, sourceUri) { var t1, i, slashIndex, char, equalsIndex, lastSeparator, t2, data, _s17_ = "Invalid MIME type", indices = A._setArrayType([start - 1], type$.JSArray_int); for (t1 = text.length, i = start, slashIndex = -1, char = null; i < t1; ++i) { char = B.JSString_methods._codeUnitAt$1(text, i); if (char === 44 || char === 59) break; if (char === 47) { if (slashIndex < 0) { slashIndex = i; continue; } throw A.wrapException(A.FormatException$(_s17_, text, i)); } } if (slashIndex < 0 && i > start) throw A.wrapException(A.FormatException$(_s17_, text, i)); for (; char !== 44;) { indices.push(i); ++i; for (equalsIndex = -1; i < t1; ++i) { char = B.JSString_methods._codeUnitAt$1(text, i); if (char === 61) { if (equalsIndex < 0) equalsIndex = i; } else if (char === 59 || char === 44) break; } if (equalsIndex >= 0) indices.push(equalsIndex); else { lastSeparator = B.JSArray_methods.get$last(indices); if (char !== 44 || i !== lastSeparator + 7 || !B.JSString_methods.startsWith$2(text, "base64", lastSeparator + 1)) throw A.wrapException(A.FormatException$("Expecting '='", text, i)); break; } } indices.push(i); t2 = i + 1; if ((indices.length & 1) === 1) text = B.C_Base64Codec.normalize$3(0, text, t2, t1); else { data = A._Uri__normalize(text, t2, t1, B.List_CVk, true); if (data != null) text = B.JSString_methods.replaceRange$3(text, t2, t1, data); } return new A.UriData(text, indices, sourceUri); }, _createTables() { var _i, t1, t2, t3, b, _s77_ = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=", _s1_ = ".", _s1_0 = ":", _s1_1 = "/", _s1_2 = "?", _s1_3 = "#", tables = J.JSArray_JSArray$allocateGrowable(22, type$.Uint8List); for (_i = 0; _i < 22; ++_i) tables[_i] = new Uint8Array(96); t1 = new A._createTables_build(tables); t2 = new A._createTables_setChars(); t3 = new A._createTables_setRange(); b = t1.call$2(0, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_, 14); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 3); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(14, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_, 15); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(15, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, "%", 225); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 9); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(1, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 10); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(2, 235); t2.call$3(b, _s77_, 139); t2.call$3(b, _s1_1, 131); t2.call$3(b, _s1_, 146); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(3, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 68); t2.call$3(b, _s1_, 18); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(4, 229); t2.call$3(b, _s77_, 5); t3.call$3(b, "AZ", 229); t2.call$3(b, _s1_0, 102); t2.call$3(b, "@", 68); t2.call$3(b, "[", 232); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(5, 229); t2.call$3(b, _s77_, 5); t3.call$3(b, "AZ", 229); t2.call$3(b, _s1_0, 102); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(6, 231); t3.call$3(b, "19", 7); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(7, 231); t3.call$3(b, "09", 7); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); t2.call$3(t1.call$2(8, 8), "]", 5); b = t1.call$2(9, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 16); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(16, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 17); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(17, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 9); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(10, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 18); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(18, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 19); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(19, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(11, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 10); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(12, 236); t2.call$3(b, _s77_, 12); t2.call$3(b, _s1_2, 12); t2.call$3(b, _s1_3, 205); b = t1.call$2(13, 237); t2.call$3(b, _s77_, 13); t2.call$3(b, _s1_2, 13); t3.call$3(t1.call$2(20, 245), "az", 21); b = t1.call$2(21, 245); t3.call$3(b, "az", 21); t3.call$3(b, "09", 21); t2.call$3(b, "+-.", 21); return tables; }, _scan(uri, start, end, state, indices) { var t1, i, table, char, transition, tables = $.$get$_scannerTables(); for (t1 = J.getInterceptor$s(uri), i = start; i < end; ++i) { table = tables[state]; char = t1._codeUnitAt$1(uri, i) ^ 96; transition = table[char > 95 ? 31 : char]; state = transition & 31; indices[transition >>> 5] = i; } return state; }, _SimpleUri__packageNameEnd(uri) { if (uri._schemeEnd === 7 && B.JSString_methods.startsWith$1(uri._uri, "package") && uri._hostStart <= 0) return A._skipPackageNameChars(uri._uri, uri._pathStart, uri._queryStart); return -1; }, _skipPackageNameChars(source, start, end) { var i, dots, char; for (i = start, dots = 0; i < end; ++i) { char = B.JSString_methods.codeUnitAt$1(source, i); if (char === 47) return dots !== 0 ? i : -1; if (char === 37 || char === 58) return -1; dots |= char ^ 46; } return -1; }, _caseInsensitiveCompareStart(prefix, string, start) { var t1, result, i, prefixChar, stringChar, delta, lowerChar; for (t1 = prefix.length, result = 0, i = 0; i < t1; ++i) { prefixChar = B.JSString_methods._codeUnitAt$1(prefix, i); stringChar = B.JSString_methods._codeUnitAt$1(string, start + i); delta = prefixChar ^ stringChar; if (delta !== 0) { if (delta === 32) { lowerChar = stringChar | delta; if (97 <= lowerChar && lowerChar <= 122) { result = 32; continue; } } return -1; } } return result; }, _symbolMapToStringMap_closure: function _symbolMapToStringMap_closure(t0) { this.result = t0; }, NoSuchMethodError_toString_closure: function NoSuchMethodError_toString_closure(t0, t1) { this._box_0 = t0; this.sb = t1; }, _BigIntImpl: function _BigIntImpl(t0, t1, t2) { this._isNegative = t0; this._digits = t1; this._used = t2; }, _BigIntImpl_hashCode_combine: function _BigIntImpl_hashCode_combine() { }, _BigIntImpl_hashCode_finish: function _BigIntImpl_hashCode_finish() { }, _BigIntImpl_toDouble_readBits: function _BigIntImpl_toDouble_readBits(t0, t1) { this._box_0 = t0; this.$this = t1; }, _BigIntImpl_toDouble_roundUp: function _BigIntImpl_toDouble_roundUp(t0) { this.resultBits = t0; }, Comparable: function Comparable() { }, DateTime: function DateTime(t0, t1) { this._value = t0; this.isUtc = t1; }, DateTime_parse_parseIntOrZero: function DateTime_parse_parseIntOrZero() { }, DateTime_parse_parseMilliAndMicroseconds: function DateTime_parse_parseMilliAndMicroseconds() { }, Duration: function Duration(t0) { this._duration = t0; }, _Enum: function _Enum() { }, Error: function Error() { }, AssertionError: function AssertionError(t0) { this.message = t0; }, TypeError: function TypeError() { }, NullThrownError: function NullThrownError() { }, ArgumentError: function ArgumentError(t0, t1, t2, t3) { var _ = this; _._hasValue = t0; _.invalidValue = t1; _.name = t2; _.message = t3; }, RangeError: function RangeError(t0, t1, t2, t3, t4, t5) { var _ = this; _.start = t0; _.end = t1; _._hasValue = t2; _.invalidValue = t3; _.name = t4; _.message = t5; }, IndexError: function IndexError(t0, t1, t2, t3, t4) { var _ = this; _.length = t0; _._hasValue = t1; _.invalidValue = t2; _.name = t3; _.message = t4; }, NoSuchMethodError: function NoSuchMethodError(t0, t1, t2, t3) { var _ = this; _._core$_receiver = t0; _._memberName = t1; _._core$_arguments = t2; _._namedArguments = t3; }, UnsupportedError: function UnsupportedError(t0) { this.message = t0; }, UnimplementedError: function UnimplementedError(t0) { this.message = t0; }, StateError: function StateError(t0) { this.message = t0; }, ConcurrentModificationError: function ConcurrentModificationError(t0) { this.modifiedObject = t0; }, OutOfMemoryError: function OutOfMemoryError() { }, StackOverflowError: function StackOverflowError() { }, CyclicInitializationError: function CyclicInitializationError(t0) { this.variableName = t0; }, _Exception: function _Exception(t0) { this.message = t0; }, FormatException: function FormatException(t0, t1, t2) { this.message = t0; this.source = t1; this.offset = t2; }, IntegerDivisionByZeroException: function IntegerDivisionByZeroException() { }, Iterable: function Iterable() { }, _GeneratorIterable: function _GeneratorIterable(t0, t1, t2) { this.length = t0; this._generator = t1; this.$ti = t2; }, BidirectionalIterator: function BidirectionalIterator() { }, Iterator: function Iterator() { }, MapEntry: function MapEntry(t0, t1, t2) { this.key = t0; this.value = t1; this.$ti = t2; }, Null: function Null() { }, Object: function Object() { }, _StringStackTrace: function _StringStackTrace(t0) { this._stackTrace = t0; }, Stopwatch: function Stopwatch() { this._stop = this._core$_start = 0; }, Runes: function Runes(t0) { this.string = t0; }, RuneIterator: function RuneIterator(t0) { var _ = this; _.string = t0; _._nextPosition = _._core$_position = 0; _._currentCodePoint = -1; }, StringBuffer: function StringBuffer(t0) { this._contents = t0; }, Uri_splitQueryString_closure: function Uri_splitQueryString_closure(t0) { this.encoding = t0; }, Uri__parseIPv4Address_error: function Uri__parseIPv4Address_error(t0) { this.host = t0; }, Uri_parseIPv6Address_error: function Uri_parseIPv6Address_error(t0) { this.host = t0; }, Uri_parseIPv6Address_parseHex: function Uri_parseIPv6Address_parseHex(t0, t1) { this.error = t0; this.host = t1; }, _Uri: function _Uri(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scheme = t0; _._userInfo = t1; _._host = t2; _._port = t3; _.path = t4; _._query = t5; _._fragment = t6; _.___Uri_queryParameters = _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $; }, _Uri__makePath_closure: function _Uri__makePath_closure() { }, _Uri__makeQuery_writeParameter: function _Uri__makeQuery_writeParameter(t0, t1) { this._box_0 = t0; this.result = t1; }, _Uri__makeQuery_closure: function _Uri__makeQuery_closure(t0) { this.writeParameter = t0; }, UriData: function UriData(t0, t1, t2) { this._text = t0; this._separatorIndices = t1; this._uriCache = t2; }, _createTables_build: function _createTables_build(t0) { this.tables = t0; }, _createTables_setChars: function _createTables_setChars() { }, _createTables_setRange: function _createTables_setRange() { }, _SimpleUri: function _SimpleUri(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._uri = t0; _._schemeEnd = t1; _._hostStart = t2; _._portStart = t3; _._pathStart = t4; _._queryStart = t5; _._fragmentStart = t6; _._schemeCache = t7; _._hashCodeCache = null; }, _DataUri: function _DataUri(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scheme = t0; _._userInfo = t1; _._host = t2; _._port = t3; _.path = t4; _._query = t5; _._fragment = t6; _.___Uri_queryParameters = _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $; }, Expando: function Expando(t0, t1) { this._jsWeakMap = t0; this.$ti = t1; }, _FakeUserTag__FakeUserTag(label) { var t1, existingTag = $._FakeUserTag__instances.$index(0, label); if (existingTag != null) return existingTag; if ($._FakeUserTag__instances._length === 64) throw A.wrapException(A.UnsupportedError$("UserTag instance limit (64) reached.")); t1 = new A._FakeUserTag(); $._FakeUserTag__instances.$indexSet(0, label, t1); return t1; }, ServiceExtensionResponse$result(result) { A.ArgumentError_checkNotNull(result, "result"); return new A.ServiceExtensionResponse(); }, ServiceExtensionResponse__validateErrorCode(errorCode) { var _s9_ = "errorCode"; A.ArgumentError_checkNotNull(errorCode, _s9_); if (errorCode === -32602) return; if (errorCode >= -32016 && errorCode <= -32000) return; throw A.wrapException(A.ArgumentError$value(errorCode, _s9_, "Out of range")); }, registerExtension(method, handler) { A.ArgumentError_checkNotNull(method, "method"); if (!B.JSString_methods.startsWith$1(method, "ext.")) throw A.wrapException(A.ArgumentError$value(method, "method", "Must begin with ext.")); if ($._extensions.$index(0, method) != null) throw A.wrapException(A.ArgumentError$("Extension already registered: " + method, null)); A.ArgumentError_checkNotNull(handler, "handler"); $._extensions.$indexSet(0, method, handler); }, postEvent(eventKind, eventData) { A.ArgumentError_checkNotNull(eventKind, "eventKind"); A.ArgumentError_checkNotNull(eventData, "eventData"); B.C_JsonCodec.encode$1(eventData); }, Timeline_startSync($name, $arguments, flow) { A.ArgumentError_checkNotNull($name, "name"); $.Timeline__stack.push(null); return; }, Timeline_finishSync() { if ($.Timeline__stack.length === 0) throw A.wrapException(A.StateError$("Uneven calls to startSync and finishSync")); var block = $.Timeline__stack.pop(); if (block == null) return; block.get$_jsonArguments(); if (block.flow != null) A._argumentsAsJson(null); }, Timeline_instantSync($name, $arguments) { A.ArgumentError_checkNotNull($name, "name"); return; }, Timeline_timeSync($name, $function, flow) { var t1; A.Timeline_startSync($name, null, flow); try { t1 = $function.call$0(); return t1; } finally { A.Timeline_finishSync(); } }, _argumentsAsJson($arguments) { if ($arguments == null || $arguments.get$length($arguments) === 0) return "{}"; return B.C_JsonCodec.encode$1($arguments); }, _FakeUserTag: function _FakeUserTag() { }, ServiceExtensionResponse: function ServiceExtensionResponse() { }, TimelineTask: function TimelineTask(t0, t1, t2) { this._developer$_parent = t0; this._developer$_taskId = t1; this._stack = t2; }, window() { return window; }, document() { return document; }, AnchorElement_AnchorElement(href) { var e = document.createElement("a"); if (href != null) e.href = href; return e; }, Blob_Blob(blobParts, type) { var bag, t1 = type == null; if (t1 && true) return new self.Blob(blobParts); bag = {}; if (!t1) bag.type = type; return new self.Blob(blobParts, bag); }, CanvasElement_CanvasElement(height, width) { var e = document.createElement("canvas"); if (width != null) e.width = width; if (height != null) e.height = height; return e; }, _ChildrenElementList__addAll(_element, iterable) { var t1; for (t1 = J.get$iterator$ax(iterable instanceof A._ChildNodeListLazy ? A.List_List$from(iterable, true, type$.Element) : iterable); t1.moveNext$0();) _element.appendChild(t1.get$current(t1)); }, _ChildrenElementList__remove(_element, object) { if (type$.Element._is(object)) if (object.parentNode === _element) { _element.removeChild(object); return true; } return false; }, _ChildrenElementList__first(_element) { var result = _element.firstElementChild; if (result == null) throw A.wrapException(A.StateError$("No elements")); return result; }, Element_Element$html(html, treeSanitizer, validator) { var fragment, t1 = document.body; t1.toString; fragment = B.BodyElement_methods.createFragment$3$treeSanitizer$validator(t1, html, treeSanitizer, validator); fragment.toString; t1 = new A.WhereIterable(new A._ChildNodeListLazy(fragment), new A.Element_Element$html_closure(), type$._ChildNodeListLazy._eval$1("WhereIterable")); return type$.Element._as(t1.get$single(t1)); }, Element_Element$tag(tag) { return A._ElementFactoryProvider_createElement_tag(tag, null); }, Element__safeTagName(element) { var t1, exception, result = "element tag unavailable"; try { t1 = J.getInterceptor$x(element); if (typeof t1.get$tagName(element) == "string") result = t1.get$tagName(element); } catch (exception) { } return result; }, _ElementFactoryProvider_createElement_tag(tag, typeExtension) { return document.createElement(tag); }, FontFace_FontFace(family, source, descriptors) { var t1 = new FontFace(family, source, A.convertDartToNative_Dictionary(descriptors)); return t1; }, HttpRequest_request(url, responseType) { var t2, t1 = new A._Future($.Zone__current, type$._Future_HttpRequest), completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_HttpRequest), xhr = new XMLHttpRequest(); B.HttpRequest_methods.open$3$async(xhr, "GET", url, true); xhr.responseType = responseType; t2 = type$.legacy_ProgressEvent; A._EventStreamSubscription$(xhr, "load", new A.HttpRequest_request_closure(xhr, completer), false, t2); A._EventStreamSubscription$(xhr, "error", completer.get$completeError(), false, t2); xhr.send(); return t1; }, ImageElement_ImageElement() { var e = document.createElement("img"); return e; }, InputElement_InputElement(type) { var exception, t1 = document.createElement("input"), e = type$.InputElement._as(t1); if (type != null) try { e.type = type; } catch (exception) { } return e; }, _EventStreamSubscription$(_target, _eventType, onData, _useCapture, $T) { var t1 = onData == null ? null : A._wrapZone(new A._EventStreamSubscription_closure(onData), type$.Event); t1 = new A._EventStreamSubscription(_target, _eventType, t1, false, $T._eval$1("_EventStreamSubscription<0>")); t1._tryResume$0(); return t1; }, _Html5NodeValidator$(uriPolicy) { var t1 = A.AnchorElement_AnchorElement(null), t2 = window.location; t1 = new A._Html5NodeValidator(new A._SameOriginUriPolicy(t1, t2)); t1._Html5NodeValidator$1$uriPolicy(uriPolicy); return t1; }, _Html5NodeValidator__standardAttributeValidator(element, attributeName, value, context) { return true; }, _Html5NodeValidator__uriAttributeValidator(element, attributeName, value, context) { var t3, t1 = context.uriPolicy, t2 = t1._hiddenAnchor; t2.href = value; t3 = t2.hostname; t1 = t1._loc; if (!(t3 == t1.hostname && t2.port == t1.port && t2.protocol == t1.protocol)) if (t3 === "") if (t2.port === "") { t1 = t2.protocol; t1 = t1 === ":" || t1 === ""; } else t1 = false; else t1 = false; else t1 = true; return t1; }, _TemplatingNodeValidator$() { var t1 = type$.String, t2 = A.LinkedHashSet_LinkedHashSet$from(B.List_wSV, t1), t3 = A._setArrayType(["TEMPLATE"], type$.JSArray_String); t1 = new A._TemplatingNodeValidator(t2, A.LinkedHashSet_LinkedHashSet(t1), A.LinkedHashSet_LinkedHashSet(t1), A.LinkedHashSet_LinkedHashSet(t1), null); t1._SimpleNodeValidator$4$allowedAttributes$allowedElements$allowedUriAttributes(null, new A.MappedListIterable(B.List_wSV, new A._TemplatingNodeValidator_closure(), type$.MappedListIterable_of_legacy_String_and_String), t3, null); return t1; }, _convertNativeToDart_EventTarget(e) { var $window; if ("postMessage" in e) { $window = A._DOMWindowCrossFrame__createSafe(e); if (type$.EventTarget._is($window)) return $window; return null; } else return e; }, _convertNativeToDart_XHR_Response(o) { if (type$.Document_2._is(o)) return o; return new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(o, true); }, _DOMWindowCrossFrame__createSafe(w) { if (w === window) return w; else return new A._DOMWindowCrossFrame(w); }, _wrapZone(callback, $T) { var t1 = $.Zone__current; if (t1 === B.C__RootZone) return callback; return t1.bindUnaryCallbackGuarded$1$1(callback, $T); }, _wrapBinaryZone(callback, T1, T2) { var t1 = $.Zone__current; if (t1 === B.C__RootZone) return callback; return t1.bindBinaryCallbackGuarded$2$1(callback, T1, T2); }, querySelector(selectors) { return document.querySelector(selectors); }, HtmlElement: function HtmlElement() { }, AccessibleNodeList: function AccessibleNodeList() { }, AnchorElement: function AnchorElement() { }, Animation: function Animation() { }, ApplicationCacheErrorEvent: function ApplicationCacheErrorEvent() { }, AreaElement: function AreaElement() { }, BackgroundFetchEvent: function BackgroundFetchEvent() { }, BackgroundFetchRegistration: function BackgroundFetchRegistration() { }, BaseElement: function BaseElement() { }, BeforeUnloadEvent: function BeforeUnloadEvent() { }, Blob: function Blob() { }, BluetoothRemoteGattDescriptor: function BluetoothRemoteGattDescriptor() { }, Body: function Body() { }, BodyElement: function BodyElement() { }, BroadcastChannel: function BroadcastChannel() { }, ButtonElement: function ButtonElement() { }, CanvasElement: function CanvasElement() { }, CanvasElement_toBlob_closure: function CanvasElement_toBlob_closure(t0) { this.completer = t0; }, CanvasRenderingContext2D: function CanvasRenderingContext2D() { }, CharacterData: function CharacterData() { }, Client: function Client() { }, Credential: function Credential() { }, CredentialUserData: function CredentialUserData() { }, CssKeyframesRule: function CssKeyframesRule() { }, CssKeywordValue: function CssKeywordValue() { }, CssNumericValue: function CssNumericValue() { }, CssPerspective: function CssPerspective() { }, CssRule: function CssRule() { }, CssStyleDeclaration: function CssStyleDeclaration() { }, CssStyleDeclarationBase: function CssStyleDeclarationBase() { }, CssStyleSheet: function CssStyleSheet() { }, CssStyleValue: function CssStyleValue() { }, CssTransformComponent: function CssTransformComponent() { }, CssTransformValue: function CssTransformValue() { }, CssUnitValue: function CssUnitValue() { }, CssUnparsedValue: function CssUnparsedValue() { }, DataElement: function DataElement() { }, DataTransferItemList: function DataTransferItemList() { }, DeprecationReport: function DeprecationReport() { }, DivElement: function DivElement() { }, Document1: function Document1() { }, DomError: function DomError() { }, DomException: function DomException() { }, DomRectList: function DomRectList() { }, DomRectReadOnly: function DomRectReadOnly() { }, DomStringList: function DomStringList() { }, DomTokenList: function DomTokenList() { }, _ChildrenElementList: function _ChildrenElementList(t0, t1) { this._html$_element = t0; this._html$_childElements = t1; }, _ChildrenElementList__filter_closure: function _ChildrenElementList__filter_closure(t0) { this.test = t0; }, _FrozenElementList: function _FrozenElementList(t0, t1) { this._nodeList = t0; this.$ti = t1; }, Element2: function Element2() { }, Element_Element$html_closure: function Element_Element$html_closure() { }, EmbedElement: function EmbedElement() { }, Entry: function Entry() { }, Entry_remove_closure: function Entry_remove_closure(t0) { this.completer = t0; }, Entry_remove_closure0: function Entry_remove_closure0(t0) { this.completer = t0; }, ErrorEvent: function ErrorEvent() { }, Event: function Event() { }, EventTarget: function EventTarget() { }, ExtendableEvent: function ExtendableEvent() { }, FederatedCredential: function FederatedCredential() { }, FieldSetElement: function FieldSetElement() { }, File: function File() { }, FileList: function FileList() { }, FileReader: function FileReader() { }, FileSystem: function FileSystem() { }, FileWriter: function FileWriter() { }, FontFace: function FontFace() { }, FontFaceSet: function FontFaceSet() { }, FormElement: function FormElement() { }, Gamepad: function Gamepad() { }, GamepadButton: function GamepadButton() { }, History: function History() { }, HtmlCollection: function HtmlCollection() { }, HtmlDocument: function HtmlDocument() { }, HttpRequest: function HttpRequest() { }, HttpRequest_request_closure: function HttpRequest_request_closure(t0, t1) { this.xhr = t0; this.completer = t1; }, HttpRequestEventTarget: function HttpRequestEventTarget() { }, IFrameElement: function IFrameElement() { }, ImageData: function ImageData() { }, ImageElement: function ImageElement() { }, InputElement: function InputElement() { }, InterventionReport: function InterventionReport() { }, KeyboardEvent: function KeyboardEvent() { }, LIElement: function LIElement() { }, LabelElement: function LabelElement() { }, Location: function Location() { }, MapElement: function MapElement() { }, MediaError: function MediaError() { }, MediaKeyMessageEvent: function MediaKeyMessageEvent() { }, MediaKeySession: function MediaKeySession() { }, MediaList: function MediaList() { }, MediaQueryList: function MediaQueryList() { }, MediaQueryListEvent: function MediaQueryListEvent() { }, MediaStream: function MediaStream() { }, MediaStreamTrack: function MediaStreamTrack() { }, MessagePort: function MessagePort() { }, MetaElement: function MetaElement() { }, MeterElement: function MeterElement() { }, MidiInputMap: function MidiInputMap() { }, MidiInputMap_keys_closure: function MidiInputMap_keys_closure(t0) { this.keys = t0; }, MidiInputMap_values_closure: function MidiInputMap_values_closure(t0) { this.values = t0; }, MidiOutputMap: function MidiOutputMap() { }, MidiOutputMap_keys_closure: function MidiOutputMap_keys_closure(t0) { this.keys = t0; }, MidiOutputMap_values_closure: function MidiOutputMap_values_closure(t0) { this.values = t0; }, MidiPort: function MidiPort() { }, MimeType: function MimeType() { }, MimeTypeArray: function MimeTypeArray() { }, MouseEvent: function MouseEvent() { }, MutationObserver: function MutationObserver() { }, MutationObserver_observe_override: function MutationObserver_observe_override(t0) { this.parsedOptions = t0; }, MutationRecord: function MutationRecord() { }, Navigator0: function Navigator0() { }, NavigatorConcurrentHardware: function NavigatorConcurrentHardware() { }, NavigatorUserMediaError: function NavigatorUserMediaError() { }, _ChildNodeListLazy: function _ChildNodeListLazy(t0) { this._this = t0; }, Node1: function Node1() { }, NodeList0: function NodeList0() { }, Notification: function Notification() { }, ObjectElement: function ObjectElement() { }, OffscreenCanvas: function OffscreenCanvas() { }, OptionElement: function OptionElement() { }, OutputElement: function OutputElement() { }, OverconstrainedError: function OverconstrainedError() { }, ParagraphElement: function ParagraphElement() { }, ParamElement: function ParamElement() { }, PasswordCredential: function PasswordCredential() { }, PaymentRequest: function PaymentRequest() { }, Performance: function Performance() { }, PerformanceEntry: function PerformanceEntry() { }, PerformanceServerTiming: function PerformanceServerTiming() { }, Plugin: function Plugin() { }, PluginArray: function PluginArray() { }, PointerEvent0: function PointerEvent0() { }, PositionError: function PositionError() { }, PresentationAvailability: function PresentationAvailability() { }, PresentationConnection: function PresentationConnection() { }, PresentationConnectionCloseEvent: function PresentationConnectionCloseEvent() { }, ProgressElement: function ProgressElement() { }, ProgressEvent: function ProgressEvent() { }, RelatedApplication: function RelatedApplication() { }, ReportBody: function ReportBody() { }, RtcDataChannel: function RtcDataChannel() { }, RtcLegacyStatsReport: function RtcLegacyStatsReport() { }, RtcStatsReport: function RtcStatsReport() { }, RtcStatsReport_keys_closure: function RtcStatsReport_keys_closure(t0) { this.keys = t0; }, RtcStatsReport_values_closure: function RtcStatsReport_values_closure(t0) { this.values = t0; }, ScreenOrientation: function ScreenOrientation() { }, SelectElement: function SelectElement() { }, SharedWorkerGlobalScope: function SharedWorkerGlobalScope() { }, SlotElement: function SlotElement() { }, SourceBuffer: function SourceBuffer() { }, SourceBufferList: function SourceBufferList() { }, SpeechGrammar: function SpeechGrammar() { }, SpeechGrammarList: function SpeechGrammarList() { }, SpeechRecognitionError: function SpeechRecognitionError() { }, SpeechRecognitionResult: function SpeechRecognitionResult() { }, SpeechSynthesisEvent: function SpeechSynthesisEvent() { }, SpeechSynthesisVoice: function SpeechSynthesisVoice() { }, Storage: function Storage() { }, Storage_keys_closure: function Storage_keys_closure(t0) { this.keys = t0; }, Storage_values_closure: function Storage_values_closure(t0) { this.values = t0; }, StyleElement: function StyleElement() { }, StyleSheet: function StyleSheet() { }, TableElement: function TableElement() { }, TableRowElement: function TableRowElement() { }, TableSectionElement: function TableSectionElement() { }, TemplateElement: function TemplateElement() { }, TextAreaElement: function TextAreaElement() { }, TextTrack: function TextTrack() { }, TextTrackCue: function TextTrackCue() { }, TextTrackCueList: function TextTrackCueList() { }, TextTrackList: function TextTrackList() { }, TimeRanges: function TimeRanges() { }, Touch: function Touch() { }, TouchEvent: function TouchEvent() { }, TouchList: function TouchList() { }, TrackDefaultList: function TrackDefaultList() { }, UIEvent: function UIEvent() { }, Url: function Url() { }, VideoTrack: function VideoTrack() { }, VideoTrackList: function VideoTrackList() { }, VttRegion: function VttRegion() { }, WheelEvent: function WheelEvent() { }, Window: function Window() { }, WorkerGlobalScope: function WorkerGlobalScope() { }, _Attr: function _Attr() { }, _CssRuleList: function _CssRuleList() { }, _DomRect: function _DomRect() { }, _GamepadList: function _GamepadList() { }, _NamedNodeMap: function _NamedNodeMap() { }, _Report: function _Report() { }, _SpeechRecognitionResultList: function _SpeechRecognitionResultList() { }, _StyleSheetList: function _StyleSheetList() { }, _AttributeMap: function _AttributeMap() { }, _ElementAttributeMap: function _ElementAttributeMap(t0) { this._html$_element = t0; }, _DataAttributeMap: function _DataAttributeMap(t0) { this._html$_attributes = t0; }, _DataAttributeMap_forEach_closure: function _DataAttributeMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, _DataAttributeMap_keys_closure: function _DataAttributeMap_keys_closure(t0, t1) { this.$this = t0; this.keys = t1; }, _DataAttributeMap_values_closure: function _DataAttributeMap_values_closure(t0, t1) { this.$this = t0; this.values = t1; }, EventStreamProvider: function EventStreamProvider(t0, t1) { this._eventType = t0; this.$ti = t1; }, _EventStream: function _EventStream(t0, t1, t2, t3) { var _ = this; _._target = t0; _._eventType = t1; _._useCapture = t2; _.$ti = t3; }, _ElementEventStreamImpl: function _ElementEventStreamImpl(t0, t1, t2, t3) { var _ = this; _._target = t0; _._eventType = t1; _._useCapture = t2; _.$ti = t3; }, _EventStreamSubscription: function _EventStreamSubscription(t0, t1, t2, t3, t4) { var _ = this; _._pauseCount = 0; _._target = t0; _._eventType = t1; _._onData = t2; _._useCapture = t3; _.$ti = t4; }, _EventStreamSubscription_closure: function _EventStreamSubscription_closure(t0) { this.onData = t0; }, _EventStreamSubscription_onData_closure: function _EventStreamSubscription_onData_closure(t0) { this.handleData = t0; }, _Html5NodeValidator: function _Html5NodeValidator(t0) { this.uriPolicy = t0; }, ImmutableListMixin: function ImmutableListMixin() { }, NodeValidatorBuilder: function NodeValidatorBuilder(t0) { this._validators = t0; }, NodeValidatorBuilder_allowsElement_closure: function NodeValidatorBuilder_allowsElement_closure(t0) { this.element = t0; }, NodeValidatorBuilder_allowsAttribute_closure: function NodeValidatorBuilder_allowsAttribute_closure(t0, t1, t2) { this.element = t0; this.attributeName = t1; this.value = t2; }, _SimpleNodeValidator: function _SimpleNodeValidator() { }, _SimpleNodeValidator_closure: function _SimpleNodeValidator_closure() { }, _SimpleNodeValidator_closure0: function _SimpleNodeValidator_closure0() { }, _TemplatingNodeValidator: function _TemplatingNodeValidator(t0, t1, t2, t3, t4) { var _ = this; _._templateAttrs = t0; _.allowedElements = t1; _.allowedAttributes = t2; _.allowedUriAttributes = t3; _.uriPolicy = t4; }, _TemplatingNodeValidator_closure: function _TemplatingNodeValidator_closure() { }, _SvgNodeValidator: function _SvgNodeValidator() { }, FixedSizeListIterator: function FixedSizeListIterator(t0, t1, t2) { var _ = this; _._array = t0; _._html$_length = t1; _._position = -1; _._current = null; _.$ti = t2; }, Console: function Console() { }, _DOMWindowCrossFrame: function _DOMWindowCrossFrame(t0) { this._html$_window = t0; }, _SameOriginUriPolicy: function _SameOriginUriPolicy(t0, t1) { this._hiddenAnchor = t0; this._loc = t1; }, _ValidatingTreeSanitizer: function _ValidatingTreeSanitizer(t0) { this.validator = t0; this.numTreeModifications = 0; }, _ValidatingTreeSanitizer_sanitizeTree_walk: function _ValidatingTreeSanitizer_sanitizeTree_walk(t0) { this.$this = t0; }, _CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase: function _CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase() { }, _DomRectList_JavaScriptObject_ListMixin: function _DomRectList_JavaScriptObject_ListMixin() { }, _DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin: function _DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _DomStringList_JavaScriptObject_ListMixin: function _DomStringList_JavaScriptObject_ListMixin() { }, _DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin: function _DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _FileList_JavaScriptObject_ListMixin: function _FileList_JavaScriptObject_ListMixin() { }, _FileList_JavaScriptObject_ListMixin_ImmutableListMixin: function _FileList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _HtmlCollection_JavaScriptObject_ListMixin: function _HtmlCollection_JavaScriptObject_ListMixin() { }, _HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin: function _HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _MidiInputMap_JavaScriptObject_MapMixin: function _MidiInputMap_JavaScriptObject_MapMixin() { }, _MidiOutputMap_JavaScriptObject_MapMixin: function _MidiOutputMap_JavaScriptObject_MapMixin() { }, _MimeTypeArray_JavaScriptObject_ListMixin: function _MimeTypeArray_JavaScriptObject_ListMixin() { }, _MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin: function _MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _NodeList_JavaScriptObject_ListMixin: function _NodeList_JavaScriptObject_ListMixin() { }, _NodeList_JavaScriptObject_ListMixin_ImmutableListMixin: function _NodeList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _PluginArray_JavaScriptObject_ListMixin: function _PluginArray_JavaScriptObject_ListMixin() { }, _PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin: function _PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _RtcStatsReport_JavaScriptObject_MapMixin: function _RtcStatsReport_JavaScriptObject_MapMixin() { }, _SourceBufferList_EventTarget_ListMixin: function _SourceBufferList_EventTarget_ListMixin() { }, _SourceBufferList_EventTarget_ListMixin_ImmutableListMixin: function _SourceBufferList_EventTarget_ListMixin_ImmutableListMixin() { }, _SpeechGrammarList_JavaScriptObject_ListMixin: function _SpeechGrammarList_JavaScriptObject_ListMixin() { }, _SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin: function _SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _Storage_JavaScriptObject_MapMixin: function _Storage_JavaScriptObject_MapMixin() { }, _TextTrackCueList_JavaScriptObject_ListMixin: function _TextTrackCueList_JavaScriptObject_ListMixin() { }, _TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin: function _TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _TextTrackList_EventTarget_ListMixin: function _TextTrackList_EventTarget_ListMixin() { }, _TextTrackList_EventTarget_ListMixin_ImmutableListMixin: function _TextTrackList_EventTarget_ListMixin_ImmutableListMixin() { }, _TouchList_JavaScriptObject_ListMixin: function _TouchList_JavaScriptObject_ListMixin() { }, _TouchList_JavaScriptObject_ListMixin_ImmutableListMixin: function _TouchList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, __CssRuleList_JavaScriptObject_ListMixin: function __CssRuleList_JavaScriptObject_ListMixin() { }, __CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin: function __CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, __GamepadList_JavaScriptObject_ListMixin: function __GamepadList_JavaScriptObject_ListMixin() { }, __GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin: function __GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, __NamedNodeMap_JavaScriptObject_ListMixin: function __NamedNodeMap_JavaScriptObject_ListMixin() { }, __NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin: function __NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin() { }, __SpeechRecognitionResultList_JavaScriptObject_ListMixin: function __SpeechRecognitionResultList_JavaScriptObject_ListMixin() { }, __SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin: function __SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, __StyleSheetList_JavaScriptObject_ListMixin: function __StyleSheetList_JavaScriptObject_ListMixin() { }, __StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin: function __StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _convertNativeToDart_Value(value) { var values, i; if (value == null) return value; if (typeof value == "string" || typeof value == "number" || A._isBool(value)) return value; if (A.isJavaScriptSimpleObject(value)) return A.convertNativeToDart_Dictionary(value); if (Array.isArray(value)) { values = []; for (i = 0; i < value.length; ++i) values.push(A._convertNativeToDart_Value(value[i])); return values; } return value; }, convertNativeToDart_Dictionary(object) { var dict, keys, t1, _i, key; if (object == null) return null; dict = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); keys = Object.getOwnPropertyNames(object); for (t1 = keys.length, _i = 0; _i < keys.length; keys.length === t1 || (0, A.throwConcurrentModificationError)(keys), ++_i) { key = keys[_i]; dict.$indexSet(0, key, A._convertNativeToDart_Value(object[key])); } return dict; }, _convertDartToNative_Value(value) { var array; if (value == null) return value; if (typeof value == "string" || typeof value == "number" || A._isBool(value)) return value; if (type$.Map_dynamic_dynamic._is(value)) return A.convertDartToNative_Dictionary(value); if (type$.List_dynamic._is(value)) { array = []; J.forEach$1$ax(value, new A._convertDartToNative_Value_closure(array)); value = array; } return value; }, convertDartToNative_Dictionary(dict) { var object = {}; J.forEach$1$ax(dict, new A.convertDartToNative_Dictionary_closure(object)); return object; }, isJavaScriptSimpleObject(value) { var proto = Object.getPrototypeOf(value); return proto === Object.prototype || proto === null; }, Device_userAgent() { return window.navigator.userAgent; }, _StructuredClone: function _StructuredClone() { }, _StructuredClone_walk_closure: function _StructuredClone_walk_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _StructuredClone_walk_closure0: function _StructuredClone_walk_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, _AcceptStructuredClone: function _AcceptStructuredClone() { }, _AcceptStructuredClone_walk_closure: function _AcceptStructuredClone_walk_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _convertDartToNative_Value_closure: function _convertDartToNative_Value_closure(t0) { this.array = t0; }, convertDartToNative_Dictionary_closure: function convertDartToNative_Dictionary_closure(t0) { this.object = t0; }, _StructuredCloneDart2Js: function _StructuredCloneDart2Js(t0, t1) { this.values = t0; this.copies = t1; }, _AcceptStructuredCloneDart2Js: function _AcceptStructuredCloneDart2Js(t0, t1) { this.values = t0; this.copies = t1; this.mustCopy = false; }, FilteredElementList0: function FilteredElementList0(t0, t1) { this._html_common$_node = t0; this._html_common$_childNodes = t1; }, FilteredElementList__iterable_closure: function FilteredElementList__iterable_closure() { }, FilteredElementList__iterable_closure0: function FilteredElementList__iterable_closure0() { }, FilteredElementList_removeRange_closure0: function FilteredElementList_removeRange_closure0() { }, Cursor: function Cursor() { }, CursorWithValue: function CursorWithValue() { }, Database: function Database() { }, Index: function Index() { }, KeyRange: function KeyRange() { }, ObjectStore: function ObjectStore() { }, Observation: function Observation() { }, VersionChangeEvent: function VersionChangeEvent() { }, _File__exists(namespace, path) { throw A.wrapException(A.UnsupportedError$("File._exists")); }, _File__lengthFromPath(namespace, path) { throw A.wrapException(A.UnsupportedError$("File._lengthFromPath")); }, _File__openStdio(fd) { throw A.wrapException(A.UnsupportedError$("File._openStdio")); }, _Namespace__namespace() { throw A.wrapException(A.UnsupportedError$("_Namespace")); }, _Namespace__namespacePointer() { throw A.wrapException(A.UnsupportedError$("_Namespace")); }, _Platform__numberOfProcessors() { throw A.wrapException(A.UnsupportedError$("Platform._numberOfProcessors")); }, _Platform__pathSeparator() { throw A.wrapException(A.UnsupportedError$("Platform._pathSeparator")); }, _Platform__operatingSystem() { throw A.wrapException(A.UnsupportedError$("Platform._operatingSystem")); }, _Platform__operatingSystemVersion() { throw A.wrapException(A.UnsupportedError$("Platform._operatingSystemVersion")); }, _Platform__localHostname() { throw A.wrapException(A.UnsupportedError$("Platform._localHostname")); }, _Platform__executable() { throw A.wrapException(A.UnsupportedError$("Platform._executable")); }, _Platform__resolvedExecutable() { throw A.wrapException(A.UnsupportedError$("Platform._resolvedExecutable")); }, _Platform__executableArguments() { throw A.wrapException(A.UnsupportedError$("Platform._executableArguments")); }, _Platform__environment() { throw A.wrapException(A.UnsupportedError$("Platform._environment")); }, _Platform__localeName() { throw A.wrapException(A.UnsupportedError$("Platform._localeName")); }, _Platform__script() { throw A.wrapException(A.UnsupportedError$("Platform._script")); }, Process_run(executable, $arguments) { throw A.wrapException(A.UnsupportedError$("Process.run")); }, _StdIOUtils__getStdioInputStream(fd) { throw A.wrapException(A.UnsupportedError$("StdIOUtils._getStdioInputStream")); }, _StdIOUtils__getStdioOutputStream(fd) { throw A.wrapException(A.UnsupportedError$("StdIOUtils._getStdioOutputStream")); }, _exceptionFromResponse(response, message, path) { var t1 = J.getInterceptor$asx(response); switch (t1.$index(response, 0)) { case 1: return new A.ArgumentError(false, null, null, message + ": " + A.S(path)); case 2: return new A.FileSystemException(message, path, new A.OSError(t1.$index(response, 2), t1.$index(response, 1))); case 3: return new A.FileSystemException("File closed", path, null); default: return new A._Exception("Unknown error"); } }, Directory_Directory(path) { var t1; A.IOOverrides_current(); A.ArgumentError_checkNotNull(path, "path"); t1 = A.FileSystemEntity__toNullTerminatedUtf8Array(B.C_Utf8Encoder.convert$1(path)); return new A._Directory(path, t1); }, File_File(path) { var t1; A.IOOverrides_current(); A.ArgumentError_checkNotNull(path, "path"); t1 = A.FileSystemEntity__toNullTerminatedUtf8Array(B.C_Utf8Encoder.convert$1(path)); return new A._File(path, t1); }, _File__namespacePointer() { return A._Namespace__namespacePointer(); }, _File__dispatchWithNamespace(request, data) { data[0] = A._File__namespacePointer(); }, FileSystemEntity__toNullTerminatedUtf8Array(l) { var t2, tmp, t1 = l.length; if (t1 !== 0) t2 = !B.NativeUint8List_methods.get$isEmpty(l) && !J.$eq$(B.NativeUint8List_methods.get$last(l), 0); else t2 = true; if (t2) { tmp = new Uint8Array(t1 + 1); B.NativeUint8List_methods.setRange$3(tmp, 0, t1, l); return tmp; } else return l; }, IOOverrides_current() { var t1 = $.Zone__current.$index(0, $.$get$_ioOverridesToken()); return t1 == null ? null : t1; }, Platform_localeName() { return A._Platform_localeName(); }, Platform_executable() { return $.$get$_Platform_executable(); }, Platform_resolvedExecutable() { return $.$get$_Platform_resolvedExecutable(); }, Platform_script() { return A._Platform_script(); }, Platform_executableArguments() { return A._Platform_executableArguments(); }, _Platform_localeName() { var result = A._Platform__localeName(); return result; }, _Platform_numberOfProcessors() { return A._Platform__numberOfProcessors(); }, _Platform_pathSeparator() { return A._Platform__pathSeparator(); }, _Platform_operatingSystem() { return A._Platform__operatingSystem(); }, _Platform_script() { return A._Platform__script(); }, _Platform_localHostname() { A._Platform__localHostname(); }, _Platform_executableArguments() { return A._Platform__executableArguments(); }, _Platform_environment() { var t1 = $._Platform__environmentCache; if (t1 == null) A._Platform__environment(); t1.toString; return t1; }, stdout() { A.IOOverrides_current(); var t1 = $.$get$_stdout(); return t1; }, OSError: function OSError(t0, t1) { this.message = t0; this.errorCode = t1; }, _Directory: function _Directory(t0, t1) { this._path = t0; this._rawPath = t1; }, FileMode: function FileMode(t0) { this._io$_mode = t0; }, FileSystemException: function FileSystemException(t0, t1, t2) { this.message = t0; this.path = t1; this.osError = t2; }, _FileStream: function _FileStream(t0, t1, t2, t3) { var _ = this; _.___FileStream__controller = $; _._path = t0; _.___FileStream__openedFile = $; _._io$_position = t1; _._io$_end = t2; _._closeCompleter = t3; _._unsubscribed = false; _._readInProgress = true; _._atEnd = _._closed = false; }, _FileStream_listen_closure: function _FileStream_listen_closure(t0) { this.$this = t0; }, _FileStream__closeFile_done: function _FileStream__closeFile_done(t0) { this.$this = t0; }, _FileStream__readBlock_closure: function _FileStream__readBlock_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _FileStream__readBlock_closure0: function _FileStream__readBlock_closure0(t0) { this.$this = t0; }, _FileStream__start_onReady: function _FileStream__start_onReady(t0) { this.$this = t0; }, _FileStream__start_onOpenFile: function _FileStream__start_onOpenFile(t0, t1) { this.$this = t0; this.onReady = t1; }, _FileStream__start_onOpenFile_closure: function _FileStream__start_onOpenFile_closure(t0) { this.$this = t0; }, _FileStream__start_openFailed: function _FileStream__start_openFailed(t0) { this.$this = t0; }, _File: function _File(t0, t1) { this._path = t0; this._rawPath = t1; }, _File_open_closure: function _File_open_closure(t0) { this.$this = t0; }, _File_length_closure: function _File_length_closure(t0) { this.$this = t0; }, _File_readAsBytes_readDataChunked: function _File_readAsBytes_readDataChunked() { }, _File_readAsBytes_readDataChunked_read: function _File_readAsBytes_readDataChunked_read(t0, t1, t2) { this.file = t0; this.builder = t1; this.completer = t2; }, _File_readAsBytes_readDataChunked_read_closure: function _File_readAsBytes_readDataChunked_read_closure(t0, t1, t2) { this.builder = t0; this.read = t1; this.completer = t2; }, _File_readAsBytes_closure: function _File_readAsBytes_closure(t0) { this.readDataChunked = t0; }, _File_readAsBytes__closure: function _File_readAsBytes__closure(t0, t1) { this.readDataChunked = t0; this.file = t1; }, FileSystemEntityType: function FileSystemEntityType(t0) { this._io$_type = t0; }, FileSystemEntity: function FileSystemEntity() { }, SystemEncoding: function SystemEncoding() { }, _callDartFunction(callback, captureThis, $self, $arguments) { var arguments0, t1; if (captureThis) { arguments0 = [$self]; B.JSArray_methods.addAll$1(arguments0, $arguments); $arguments = arguments0; } t1 = type$.dynamic; return A._convertToJS(A.Function_apply(callback, A.List_List$from(J.map$1$1$ax($arguments, A.js___convertToDart$closure(), t1), true, t1), null)); }, JsObject_JsObject($constructor) { var t1 = A._wrapToDart(new (A._convertToJS($constructor))()); return t1; }, JsObject_JsObject$jsify(object) { if (!type$.Map_dynamic_dynamic._is(object) && !type$.Iterable_dynamic._is(object)) throw A.wrapException(A.ArgumentError$("object must be a Map or Iterable", null)); return A._wrapToDart(A.JsObject__convertDataTree(object)); }, JsObject__convertDataTree(data) { return new A.JsObject__convertDataTree__convert(new A._IdentityHashMap(type$._IdentityHashMap_dynamic_dynamic)).call$1(data); }, JsArray__checkRange(start, end, $length) { var _null = null; if (start < 0 || start > $length) throw A.wrapException(A.RangeError$range(start, 0, $length, _null, _null)); if (end < start || end > $length) throw A.wrapException(A.RangeError$range(end, start, $length, _null, _null)); }, _castToJsObject(o) { return o; }, _defineProperty(o, $name, value) { var exception; try { if (Object.isExtensible(o) && !Object.prototype.hasOwnProperty.call(o, $name)) { Object.defineProperty(o, $name, {value: value}); return true; } } catch (exception) { } return false; }, _getOwnProperty(o, $name) { if (Object.prototype.hasOwnProperty.call(o, $name)) return o[$name]; return null; }, _convertToJS(o) { if (o == null || typeof o == "string" || typeof o == "number" || A._isBool(o)) return o; if (o instanceof A.JsObject) return o._js$_jsObject; if (A.isBrowserObject(o)) return o; if (type$.TypedData._is(o)) return o; if (o instanceof A.DateTime) return A.Primitives_lazyAsJsDate(o); if (type$.Function._is(o)) return A._getJsProxy(o, "$dart_jsFunction", new A._convertToJS_closure()); return A._getJsProxy(o, "_$dart_jsObject", new A._convertToJS_closure0($.$get$_dartProxyCtor())); }, _getJsProxy(o, propertyName, createProxy) { var jsProxy = A._getOwnProperty(o, propertyName); if (jsProxy == null) { jsProxy = createProxy.call$1(o); A._defineProperty(o, propertyName, jsProxy); } return jsProxy; }, _convertToDart(o) { if (o == null || typeof o == "string" || typeof o == "number" || typeof o == "boolean") return o; else if (o instanceof Object && A.isBrowserObject(o)) return o; else if (o instanceof Object && type$.TypedData._is(o)) return o; else if (o instanceof Date) return A.DateTime$fromMillisecondsSinceEpoch(o.getTime(), false); else if (o.constructor === $.$get$_dartProxyCtor()) return o.o; else return A._wrapToDart(o); }, _wrapToDart(o) { if (typeof o == "function") return A._getDartProxy(o, $.$get$DART_CLOSURE_PROPERTY_NAME(), new A._wrapToDart_closure()); if (o instanceof Array) return A._getDartProxy(o, $.$get$_DART_OBJECT_PROPERTY_NAME(), new A._wrapToDart_closure0()); return A._getDartProxy(o, $.$get$_DART_OBJECT_PROPERTY_NAME(), new A._wrapToDart_closure1()); }, _getDartProxy(o, propertyName, createProxy) { var dartProxy = A._getOwnProperty(o, propertyName); if (dartProxy == null || !(o instanceof Object)) { dartProxy = createProxy.call$1(o); A._defineProperty(o, propertyName, dartProxy); } return dartProxy; }, _convertDartFunctionFast(f) { var ret, existing = f.$dart_jsFunction; if (existing != null) return existing; ret = function(_call, f) { return function() { return _call(f, Array.prototype.slice.apply(arguments)); }; }(A._callDartFunctionFast, f); ret[$.$get$DART_CLOSURE_PROPERTY_NAME()] = f; f.$dart_jsFunction = ret; return ret; }, _callDartFunctionFast(callback, $arguments) { return A.Function_apply(callback, $arguments, null); }, allowInterop(f) { if (typeof f == "function") return f; else return A._convertDartFunctionFast(f); }, JsObject__convertDataTree__convert: function JsObject__convertDataTree__convert(t0) { this._convertedObjects = t0; }, _convertToJS_closure: function _convertToJS_closure() { }, _convertToJS_closure0: function _convertToJS_closure0(t0) { this.ctor = t0; }, _wrapToDart_closure: function _wrapToDart_closure() { }, _wrapToDart_closure0: function _wrapToDart_closure0() { }, _wrapToDart_closure1: function _wrapToDart_closure1() { }, JsObject: function JsObject(t0) { this._js$_jsObject = t0; }, JsFunction: function JsFunction(t0) { this._js$_jsObject = t0; }, JsArray: function JsArray(t0, t1) { this._js$_jsObject = t0; this.$ti = t1; }, _JsArray_JsObject_ListMixin: function _JsArray_JsObject_ListMixin() { }, _convertDataTree(data) { var t1 = new A._convertDataTree__convert(new A._IdentityHashMap(type$._IdentityHashMap_dynamic_dynamic)).call$1(data); t1.toString; return t1; }, hasProperty(o, $name) { return $name in o; }, callMethod(o, method, args) { return o[method].apply(o, args); }, _callMethodUnchecked0(o, method) { return o[method](); }, promiseToFuture(jsPromise, $T) { var t1 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")), completer = new A._AsyncCompleter(t1, $T._eval$1("_AsyncCompleter<0>")); jsPromise.then(A.convertDartClosureToJS(new A.promiseToFuture_closure(completer), 1), A.convertDartClosureToJS(new A.promiseToFuture_closure0(completer), 1)); return t1; }, _convertDataTree__convert: function _convertDataTree__convert(t0) { this._convertedObjects = t0; }, NullRejectionException: function NullRejectionException(t0) { this.isUndefined = t0; }, promiseToFuture_closure: function promiseToFuture_closure(t0) { this.completer = t0; }, promiseToFuture_closure0: function promiseToFuture_closure0(t0) { this.completer = t0; }, max(a, b) { return Math.max(A.checkNum(a), A.checkNum(b)); }, log(x) { return Math.log(x); }, pow(x, exponent) { A.checkNum(exponent); return Math.pow(x, exponent); }, Random_Random(seed) { var t1; if (seed == null) t1 = B.C__JSRandom; else { t1 = new A._Random(); t1._Random$1(seed); } return t1; }, Rectangle$(left, $top, width, height, $T) { var t1, t2; if (width < 0) t1 = width === -1 / 0 ? 0 : -width * 0; else t1 = width + 0; if (height < 0) t2 = height === -1 / 0 ? 0 : -height * 0; else t2 = height + 0; return new A.Rectangle(left, $top, t1, t2, $T._eval$1("Rectangle<0>")); }, _JSRandom: function _JSRandom() { }, _Random: function _Random() { this._hi = this._lo = 0; }, Point: function Point(t0, t1, t2) { this.x = t0; this.y = t1; this.$ti = t2; }, _RectangleBase: function _RectangleBase() { }, Rectangle: function Rectangle(t0, t1, t2, t3, t4) { var _ = this; _.left = t0; _.top = t1; _.width = t2; _.height = t3; _.$ti = t4; }, SvgSvgElement_SvgSvgElement() { var el = type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "svg")); el.setAttribute("version", "1.1"); return type$.SvgSvgElement._as(el); }, Angle: function Angle() { }, ClipPathElement: function ClipPathElement() { }, DefsElement: function DefsElement() { }, FEBlendElement: function FEBlendElement() { }, FEColorMatrixElement: function FEColorMatrixElement() { }, FECompositeElement: function FECompositeElement() { }, FEFloodElement: function FEFloodElement() { }, FilterElement: function FilterElement() { }, GeometryElement: function GeometryElement() { }, GraphicsElement: function GraphicsElement() { }, Length: function Length() { }, LengthList: function LengthList() { }, Number: function Number() { }, NumberList: function NumberList() { }, PathElement: function PathElement() { }, PointList: function PointList() { }, ScriptElement0: function ScriptElement0() { }, StringList: function StringList() { }, SvgElement: function SvgElement() { }, SvgSvgElement: function SvgSvgElement() { }, Transform0: function Transform0() { }, TransformList: function TransformList() { }, _LengthList_JavaScriptObject_ListMixin: function _LengthList_JavaScriptObject_ListMixin() { }, _LengthList_JavaScriptObject_ListMixin_ImmutableListMixin: function _LengthList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _NumberList_JavaScriptObject_ListMixin: function _NumberList_JavaScriptObject_ListMixin() { }, _NumberList_JavaScriptObject_ListMixin_ImmutableListMixin: function _NumberList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _StringList_JavaScriptObject_ListMixin: function _StringList_JavaScriptObject_ListMixin() { }, _StringList_JavaScriptObject_ListMixin_ImmutableListMixin: function _StringList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, _TransformList_JavaScriptObject_ListMixin: function _TransformList_JavaScriptObject_ListMixin() { }, _TransformList_JavaScriptObject_ListMixin_ImmutableListMixin: function _TransformList_JavaScriptObject_ListMixin_ImmutableListMixin() { }, Endian: function Endian() { }, PictureRecorder_PictureRecorder() { if ($.$get$useCanvasKit()) return new A.CkPictureRecorder(); else return new A.EnginePictureRecorder(); }, Canvas_Canvas(recorder, cullRect) { var _s62_ = '"recorder" must not already be associated with another Canvas.'; if ($.$get$useCanvasKit()) { if (recorder.get$isRecording()) A.throwExpression(A.ArgumentError$(_s62_, null)); if (cullRect == null) cullRect = B.Rect_aha; return new A.CanvasKitCanvas(type$.CkPictureRecorder._as(recorder).beginRecording$1(0, cullRect)); } else { type$.EnginePictureRecorder._as(recorder); if (recorder._isRecording) A.throwExpression(A.ArgumentError$(_s62_, null)); return new A.SurfaceCanvas(recorder.beginRecording$1(0, cullRect == null ? B.Rect_aha : cullRect)); } }, SceneBuilder_SceneBuilder() { var t1, t2, t3; if ($.$get$useCanvasKit()) { t1 = new A.RootLayer(A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0); t2 = new A.LayerSceneBuilder(t1); t2.__LayerSceneBuilder_currentLayer = t1; return t2; } else { t1 = A._setArrayType([], type$.JSArray_PersistedContainerSurface); t2 = $.SurfaceSceneBuilder__lastFrameScene; t3 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = t2 != null && t2.__engine$_state === B.PersistedSurfaceState_1 ? t2 : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); t2 = new A.PersistedScene(t3, t2, B.PersistedSurfaceState_0); t2.transform = A.Matrix4$identity(); t1.push(t2); return new A.SurfaceSceneBuilder(t1); } }, Offset_lerp(a, b, t) { if (b == null) if (a == null) return null; else return a.$mul(0, 1 - t); else if (a == null) return b.$mul(0, t); else return new A.Offset(A._lerpDouble(a._dx, b._dx, t), A._lerpDouble(a._dy, b._dy, t)); }, Size_lerp(a, b, t) { if (b == null) if (a == null) return null; else return a.$mul(0, 1 - t); else if (a == null) return b.$mul(0, t); else return new A.Size(A._lerpDouble(a._dx, b._dx, t), A._lerpDouble(a._dy, b._dy, t)); }, Rect$fromCircle(center, radius) { var t1 = center._dx, t2 = radius * 2 / 2, t3 = center._dy; return new A.Rect(t1 - t2, t3 - t2, t1 + t2, t3 + t2); }, Rect$fromCenter(center, height, width) { var t1 = center._dx, t2 = width / 2, t3 = center._dy, t4 = height / 2; return new A.Rect(t1 - t2, t3 - t4, t1 + t2, t3 + t4); }, Rect$fromPoints(a, b) { var t1 = a._dx, t2 = b._dx, t3 = Math.min(A.checkNum(t1), A.checkNum(t2)), t4 = a._dy, t5 = b._dy; return new A.Rect(t3, Math.min(A.checkNum(t4), A.checkNum(t5)), Math.max(A.checkNum(t1), A.checkNum(t2)), Math.max(A.checkNum(t4), A.checkNum(t5))); }, Rect_lerp(a, b, t) { var k, t1, t2, t3, t4; if (b == null) if (a == null) return null; else { k = 1 - t; return new A.Rect(a.left * k, a.top * k, a.right * k, a.bottom * k); } else { t1 = b.left; t2 = b.top; t3 = b.right; t4 = b.bottom; if (a == null) return new A.Rect(t1 * t, t2 * t, t3 * t, t4 * t); else return new A.Rect(A._lerpDouble(a.left, t1, t), A._lerpDouble(a.top, t2, t), A._lerpDouble(a.right, t3, t), A._lerpDouble(a.bottom, t4, t)); } }, Radius_lerp(a, b, t) { var k, t1, t2; if (b == null) if (a == null) return null; else { k = 1 - t; return new A.Radius(a.x * k, a.y * k); } else { t1 = b.x; t2 = b.y; if (a == null) return new A.Radius(t1 * t, t2 * t); else return new A.Radius(A._lerpDouble(a.x, t1, t), A._lerpDouble(a.y, t2, t)); } }, RRect$fromRectAndRadius(rect, radius) { var t1 = rect.top, t2 = rect.left, t3 = rect.right, t4 = rect.bottom, t5 = radius.x, t6 = radius.y; return new A.RRect(t2, t1, t3, t4, t5, t6, t5, t6, t5, t6, t5, t6, t5 === t6); }, RRect$fromLTRBAndCorners(left, $top, right, bottom, bottomLeft, bottomRight, topLeft, topRight) { var t1 = topLeft.x, t2 = topLeft.y, t3 = topRight.x, t4 = topRight.y, t5 = bottomLeft.x, t6 = bottomLeft.y, t7 = bottomRight.x, t8 = bottomRight.y; return new A.RRect(left, $top, right, bottom, t1, t2, t3, t4, t7, t8, t5, t6, t1 === t2 && t1 === t3 && t1 === t4 && t1 === t5 && t1 === t6 && t1 === t7 && t1 === t8); }, RRect$fromRectAndCorners(rect, bottomLeft, bottomRight, topLeft, topRight) { var t1 = rect.top, t2 = rect.left, t3 = rect.right, t4 = rect.bottom, t5 = topLeft.x, t6 = topLeft.y, t7 = topRight.x, t8 = topRight.y, t9 = bottomLeft.x, t10 = bottomLeft.y, t11 = bottomRight.x, t12 = bottomRight.y; return new A.RRect(t2, t1, t3, t4, t5, t6, t7, t8, t11, t12, t9, t10, t5 === t6 && t5 === t7 && t5 === t8 && t5 === t9 && t5 === t10 && t5 === t11 && t5 === t12); }, _Jenkins_combine(hash, o) { hash = hash + J.get$hashCode$(o) & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _Jenkins_finish(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashValues(arg01, arg02, arg03, arg04, arg05, arg06, arg07, arg08, arg09, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18) { var result = A._Jenkins_combine(A._Jenkins_combine(0, arg01), arg02); if (!J.$eq$(arg03, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg03); if (!J.$eq$(arg04, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg04); if (!J.$eq$(arg05, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg05); if (arg06 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg06); if (!J.$eq$(arg07, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg07); if (!J.$eq$(arg08, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg08); if (!J.$eq$(arg09, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg09); if (!J.$eq$(arg10, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg10); if (!J.$eq$(arg11, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg11); if (arg12 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg12); if (arg13 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg13); if (arg14 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg14); if (!J.$eq$(arg15, B.C__HashEnd)) { result = A._Jenkins_combine(result, arg15); if (arg16 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg16); if (arg17 !== B.C__HashEnd) { result = A._Jenkins_combine(result, arg17); if (arg18 !== B.C__HashEnd) result = A._Jenkins_combine(result, arg18); } } } } } } } } } } } } } } } return A._Jenkins_finish(result); }, hashList($arguments) { var t1, result; if ($arguments != null) for (t1 = J.get$iterator$ax($arguments), result = 0; t1.moveNext$0();) result = A._Jenkins_combine(result, t1.get$current(t1)); else result = 0; return A._Jenkins_finish(result); }, webOnlyWarmupEngine(registerPlugins, runApp) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$next = [], exception, t1, bootstrap, autoStart; var $async$webOnlyWarmupEngine = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start bootstrap = new A.AppBootstrap(new A.webOnlyWarmupEngine_closure(), new A.webOnlyWarmupEngine_closure0(registerPlugins, runApp)); autoStart = true; try { autoStart = self._flutter.loader.didCreateEngineInitializer == null; } catch (exception) { autoStart = true; } $async$goto = autoStart ? 2 : 4; break; case 2: // then A.print("Flutter Web Bootstrap: Auto"); $async$goto = 5; return A._asyncAwait(bootstrap.autoStart$0(), $async$webOnlyWarmupEngine); case 5: // returning from await. // goto join $async$goto = 3; break; case 4: // else A.print("Flutter Web Bootstrap: Programmatic"); t1 = self._flutter.loader.didCreateEngineInitializer; t1.toString; t1.call$1(bootstrap.prepareEngineInitializer$0()); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$webOnlyWarmupEngine, $async$completer); }, KeyData__typeToString(type) { switch (type.index) { case 1: return "up"; case 0: return "down"; case 2: return "repeat"; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, lerpDouble(a, b, t) { var t1; if (a != b) if ((a == null ? null : isNaN(a)) === true) t1 = (b == null ? null : isNaN(b)) === true; else t1 = false; else t1 = true; if (t1) return a == null ? null : a; if (a == null) a = 0; if (b == null) b = 0; return a * (1 - t) + b * t; }, _lerpDouble(a, b, t) { return a * (1 - t) + b * t; }, _lerpInt(a, b, t) { return a * (1 - t) + b * t; }, _scaleAlpha(a, factor) { return A.Color$fromARGB(A.clampInt(B.JSNumber_methods.round$0((a.get$value(a) >>> 24 & 255) * factor), 0, 255), a.get$value(a) >>> 16 & 255, a.get$value(a) >>> 8 & 255, a.get$value(a) & 255); }, Color$fromARGB(a, r, g, b) { return new A.Color(((a & 255) << 24 | (r & 255) << 16 | (g & 255) << 8 | b & 255) >>> 0); }, Color__linearizeColorComponent(component) { if (component <= 0.03928) return component / 12.92; return Math.pow((component + 0.055) / 1.055, 2.4); }, Color_lerp(a, b, t) { if (b == null) if (a == null) return null; else return A._scaleAlpha(a, 1 - t); else if (a == null) return A._scaleAlpha(b, t); else return A.Color$fromARGB(A.clampInt(B.JSNumber_methods.toInt$0(A._lerpInt(a.get$value(a) >>> 24 & 255, b.get$value(b) >>> 24 & 255, t)), 0, 255), A.clampInt(B.JSNumber_methods.toInt$0(A._lerpInt(a.get$value(a) >>> 16 & 255, b.get$value(b) >>> 16 & 255, t)), 0, 255), A.clampInt(B.JSNumber_methods.toInt$0(A._lerpInt(a.get$value(a) >>> 8 & 255, b.get$value(b) >>> 8 & 255, t)), 0, 255), A.clampInt(B.JSNumber_methods.toInt$0(A._lerpInt(a.get$value(a) & 255, b.get$value(b) & 255, t)), 0, 255)); }, Color_alphaBlend(foreground, background) { var invAlpha, backAlpha, outAlpha, alpha = foreground.get$value(foreground) >>> 24 & 255; if (alpha === 0) return background; invAlpha = 255 - alpha; backAlpha = background.get$value(background) >>> 24 & 255; if (backAlpha === 255) return A.Color$fromARGB(255, B.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) >>> 16 & 255) + invAlpha * (background.get$value(background) >>> 16 & 255), 255), B.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) >>> 8 & 255) + invAlpha * (background.get$value(background) >>> 8 & 255), 255), B.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) & 255) + invAlpha * (background.get$value(background) & 255), 255)); else { backAlpha = B.JSInt_methods._tdivFast$1(backAlpha * invAlpha, 255); outAlpha = alpha + backAlpha; return A.Color$fromARGB(outAlpha, B.JSInt_methods.$tdiv((foreground.get$value(foreground) >>> 16 & 255) * alpha + (background.get$value(background) >>> 16 & 255) * backAlpha, outAlpha), B.JSInt_methods.$tdiv((foreground.get$value(foreground) >>> 8 & 255) * alpha + (background.get$value(background) >>> 8 & 255) * backAlpha, outAlpha), B.JSInt_methods.$tdiv((foreground.get$value(foreground) & 255) * alpha + (background.get$value(background) & 255) * backAlpha, outAlpha)); } }, Gradient_Gradient$linear(from, to, colors, colorStops, tileMode, matrix4) { var t1; if ($.$get$useCanvasKit()) { t1 = new A.CkGradientLinear(from, to, colors, colorStops, tileMode, null); t1.ManagedSkiaObject$1(null); } else t1 = new A.GradientLinear(from, to, colors, colorStops, tileMode, null); return t1; }, ImageFilter_ImageFilter$matrix(matrix4, filterQuality) { var t1; if ($.$get$useCanvasKit()) { t1 = new A._CkMatrixImageFilter(new Float64Array(A._ensureNativeList(matrix4)), filterQuality); t1.ManagedSkiaObject$1(null); return t1; } return new A._MatrixEngineImageFilter(new Float64Array(A._ensureNativeList(matrix4)), filterQuality); }, instantiateImageCodec(list, allowUpscaling, targetHeight, targetWidth) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue; var $async$instantiateImageCodec = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.$get$useCanvasKit()) { $async$returnValue = A.skiaInstantiateImageCodec(list, targetWidth, targetHeight); // goto return $async$goto = 1; break; } else { $async$returnValue = new A.HtmlBlobCodec((self.URL || self.webkitURL).createObjectURL(A.Blob_Blob([J.get$buffer$x(list)], null)), null); // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$instantiateImageCodec, $async$completer); }, webOnlyInstantiateImageCodecFromUrl(uri, chunkCallback) { if ($.$get$useCanvasKit()) return A.skiaInstantiateWebImageCodec(uri.toString$0(0), chunkCallback); else return A.futurize(new A.webOnlyInstantiateImageCodecFromUrl_closure(uri, chunkCallback), type$.Codec); }, _createBmp(pixels, width, height, rowBytes, format) { var t1, bufferSize, bmpData, elementSize, byteLength, combinedPixels, rowCount, destinationByte, sourcePixel, colCount, _null = null, swapRedBlue = A._Cell$named("swapRedBlue"); switch (format.index) { case 1: swapRedBlue.__late_helper$_value = true; break; case 0: swapRedBlue.__late_helper$_value = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = width * height; bufferSize = 122 + t1 * 4; bmpData = new DataView(new ArrayBuffer(bufferSize)); bmpData.setUint16(0, 16973, false); bmpData.setUint32(2, bufferSize, true); bmpData.setUint32(10, 122, true); bmpData.setUint32(14, 108, true); bmpData.setUint32(18, width, true); bmpData.setUint32(22, height, true); bmpData.setUint16(26, 1, true); bmpData.setUint16(28, 32, true); bmpData.setUint32(30, 3, true); bmpData.setUint32(34, t1, true); bmpData.setUint32(38, width, true); bmpData.setUint32(42, height, true); bmpData.setUint32(46, 0, true); bmpData.setUint32(50, 0, true); bmpData.setUint32(54, swapRedBlue._readLocal$0() ? 16711680 : 255, true); bmpData.setUint32(58, 65280, true); bmpData.setUint32(62, swapRedBlue._readLocal$0() ? 255 : 16711680, true); bmpData.setUint32(66, 4278190080, true); t1 = J.getInterceptor$x(pixels); elementSize = t1.get$elementSizeInBytes(pixels); byteLength = (A.RangeError_checkValidRange(0, _null, B.JSInt_methods.$tdiv(t1.get$lengthInBytes(pixels), elementSize), _null, _null) - 0) * elementSize; if (B.JSInt_methods.$mod(byteLength, 4) !== 0) A.throwExpression(A.ArgumentError$("The number of bytes to view must be a multiple of 4", _null)); combinedPixels = J.asUint32List$2$x(t1.get$buffer(pixels), t1.get$offsetInBytes(pixels) + 0 * elementSize, B.JSInt_methods._tdivFast$1(byteLength, 4)); for (rowCount = height - 1, t1 = J.getInterceptor$asx(combinedPixels), destinationByte = 122; rowCount >= 0; --rowCount) { sourcePixel = rowCount * rowBytes; for (colCount = 0; colCount < width; ++colCount) { bmpData.setUint32(destinationByte, t1.$index(combinedPixels, sourcePixel), true); destinationByte += 4; ++sourcePixel; } } return A.instantiateImageCodec(A.NativeUint8List_NativeUint8List$view(bmpData.buffer, 0, _null), true, _null, _null); }, decodeImageFromPixels(pixels, width, height, format, callback) { if ($.$get$useCanvasKit()) { A.skiaDecodeImageFromPixels(pixels, width, height, format, callback, true, null, null, null); return; } A._createBmp(pixels, width, height, width, format).then$1$1(0, new A.decodeImageFromPixels_executeCallback(callback), type$.void); }, Shadow_convertRadiusToSigma(radius) { return radius > 0 ? radius * 0.57735 + 0.5 : 0; }, Shadow_lerp(a, b, t) { var t1, t2; if (b == null) if (a == null) return null; else return a.scale$1(0, 1 - t); else if (a == null) return b.scale$1(0, t); else { t1 = A.Color_lerp(a.color, b.color, t); t1.toString; t2 = A.Offset_lerp(a.offset, b.offset, t); t2.toString; return new A.Shadow(t1, t2, A._lerpDouble(a.blurRadius, b.blurRadius, t)); } }, Shadow_lerpList(a, b, t) { var result, commonLength, i, t1 = a == null; if (t1 && b == null) return null; if (t1) a = A._setArrayType([], type$.JSArray_Shadow); if (b == null) b = A._setArrayType([], type$.JSArray_Shadow); result = A._setArrayType([], type$.JSArray_Shadow); commonLength = Math.min(a.length, b.length); for (i = 0; i < commonLength; ++i) { t1 = A.Shadow_lerp(a[i], b[i], t); t1.toString; result.push(t1); } for (i = commonLength; i < a.length; ++i) result.push(J.scale$1$x(a[i], 1 - t)); for (i = commonLength; i < b.length; ++i) result.push(J.scale$1$x(b[i], t)); return result; }, Path_Path() { if ($.$get$useCanvasKit()) return A.CkPath$(); else return A.SurfacePath$(); }, PlatformConfiguration$(accessibilityFeatures, alwaysUse24HourFormat, defaultRouteName, locales, platformBrightness, semanticsEnabled, systemFontFamily, textScaleFactor) { return new A.PlatformConfiguration(accessibilityFeatures, false, semanticsEnabled, platformBrightness, textScaleFactor, locales, defaultRouteName, systemFontFamily); }, PointerData$(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalDeltaX, physicalDeltaY, physicalX, physicalY, platformData, pointerIdentifier, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, synthesized, tilt, timeStamp) { return new A.PointerData(timeStamp, change, kind, signalKind, device, pointerIdentifier, physicalX, physicalY, physicalDeltaX, physicalDeltaY, buttons, false, synthesized, pressure, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, platformData, scrollDeltaX, scrollDeltaY); }, FontWeight_lerp(a, b, t) { var t2, t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.index; if (t1 == null) t1 = 3; t2 = b == null ? null : b.index; t1 = A.lerpDouble(t1, t2 == null ? 3 : t2, t); t1.toString; return B.List_27p[A.clampInt(B.JSNumber_methods.round$0(t1), 0, 8)]; }, TextDecoration_TextDecoration$combine(decorations) { var mask, _i; for (mask = 0, _i = 0; _i < 2; ++_i) mask |= decorations[_i]._mask; return new A.TextDecoration(mask); }, TextStyle_TextStyle(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing) { var t1; if ($.$get$useCanvasKit()) { t1 = type$.nullable_CkPaint; return A.CkTextStyle_CkTextStyle(t1._as(background), color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, t1._as(foreground), height, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing); } else return A.EngineTextStyle$only(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, null, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing); }, ParagraphStyle_ParagraphStyle(ellipsis, fontFamily, fontSize, fontStyle, fontWeight, height, locale, maxLines, strutStyle, textAlign, textDirection, textHeightBehavior) { var properties, t1, t2, t3, skStrutStyle, t4, effectiveLeadingDistribution, skTextStyle, _null = null; if ($.$get$useCanvasKit()) { properties = A.SkParagraphStyleProperties$(_null); properties.textAlign = $.$get$_skTextAligns()[textAlign.index]; t1 = textDirection == null; if (!t1) properties.textDirection = $.$get$_skTextDirections()[textDirection.index]; if (maxLines != null) properties.maxLines = maxLines; t2 = height != null; if (t2) properties.heightMultiplier = height; t3 = textHeightBehavior == null; if (!t3) properties.textHeightBehavior = $.$get$_skTextHeightBehaviors()[0]; if (ellipsis != null) properties.ellipsis = ellipsis; if (strutStyle != null) { type$.CkStrutStyle._as(strutStyle); skStrutStyle = A.SkStrutStyleProperties$(_null); skStrutStyle.fontFamilies = A._getEffectiveFontFamilies(strutStyle._fontFamily, strutStyle._fontFamilyFallback); t4 = strutStyle.__engine$_fontSize; if (t4 != null) skStrutStyle.fontSize = t4; t4 = strutStyle.__engine$_height; if (t4 != null) skStrutStyle.heightMultiplier = t4; effectiveLeadingDistribution = t3 ? _null : textHeightBehavior.leadingDistribution; switch (effectiveLeadingDistribution) { case null: break; case B.TextLeadingDistribution_1: skStrutStyle.halfLeading = true; break; case B.TextLeadingDistribution_0: skStrutStyle.halfLeading = false; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } t4 = strutStyle._fontWeight; if (t4 != null || strutStyle._fontStyle != null) skStrutStyle.fontStyle = A.toSkFontStyle(t4, strutStyle._fontStyle); t4 = strutStyle._forceStrutHeight; if (t4 != null) skStrutStyle.forceStrutHeight = t4; skStrutStyle.strutEnabled = true; properties.strutStyle = skStrutStyle; } skTextStyle = A.SkTextStyleProperties$(_null); if (fontWeight != null || fontStyle != null) skTextStyle.fontStyle = A.toSkFontStyle(fontWeight, fontStyle); if (fontSize != null) skTextStyle.fontSize = fontSize; if (t2) skTextStyle.heightMultiplier = height; skTextStyle.fontFamilies = A._getEffectiveFontFamilies(fontFamily, _null); properties.textStyle = skTextStyle; t2 = J.ParagraphStyle$1$x($.__canvasKit._readField$0(), properties); t1 = t1 ? B.TextDirection_1 : textDirection; return new A.CkParagraphStyle(t2, t1, fontFamily, fontSize, height, fontWeight, fontStyle, t3 ? _null : textHeightBehavior.leadingDistribution); } else { type$.nullable_EngineStrutStyle._as(strutStyle); return new A.EngineParagraphStyle(textAlign, textDirection, fontWeight, fontStyle, maxLines, fontFamily, fontSize, height, textHeightBehavior, ellipsis, locale); } }, StrutStyle_StrutStyle(fontFamily, fontFamilyFallback, fontSize, fontStyle, fontWeight, forceStrutHeight, height, leading) { if ($.$get$useCanvasKit()) return new A.CkStrutStyle(fontFamily, fontFamilyFallback, fontSize, height, leading, fontWeight, fontStyle, forceStrutHeight, null); else return new A.EngineStrutStyle(fontFamily, fontFamilyFallback, fontSize, height, leading, fontWeight, fontStyle, forceStrutHeight, null); }, ParagraphBuilder_ParagraphBuilder(style) { if ($.$get$useCanvasKit()) return A.CkParagraphBuilder$(style); type$.EngineParagraphStyle._as(style); return new A.CanvasParagraphBuilder(new A.StringBuffer(""), style, A._setArrayType([], type$.JSArray_ParagraphSpan), A._setArrayType([], type$.JSArray_StyleNode), new A.RootStyleNode(style), A._setArrayType([], type$.JSArray_double)); }, PluginUtilities_getCallbackHandle(callback) { throw A.wrapException(A.UnimplementedError$(null)); }, PluginUtilities_getCallbackFromHandle(handle) { throw A.wrapException(A.UnimplementedError$(null)); }, ClipOp: function ClipOp(t0, t1) { this.index = t0; this._core$_name = t1; }, PathFillType: function PathFillType(t0, t1) { this.index = t0; this._core$_name = t1; }, _ChannelCallbackRecord: function _ChannelCallbackRecord(t0, t1) { this._callback = t0; this._ui$_zone = t1; }, _StoredMessage: function _StoredMessage(t0, t1, t2) { this.data = t0; this._callback = t1; this._ui$_zone = t2; }, _Channel: function _Channel(t0, t1) { var _ = this; _._queue = t0; _.debugEnableDiscardWarnings = true; _._capacity = t1; _._draining = false; _._channelCallbackRecord = null; }, ChannelBuffers: function ChannelBuffers(t0) { this._channels = t0; }, ChannelBuffers_push_closure: function ChannelBuffers_push_closure() { }, ChannelBuffers_setListener_closure: function ChannelBuffers_setListener_closure() { }, OffsetBase: function OffsetBase() { }, Offset: function Offset(t0, t1) { this._dx = t0; this._dy = t1; }, Size: function Size(t0, t1) { this._dx = t0; this._dy = t1; }, Rect: function Rect(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, Radius: function Radius(t0, t1) { this.x = t0; this.y = t1; }, RRect: function RRect(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.tlRadiusX = t4; _.tlRadiusY = t5; _.trRadiusX = t6; _.trRadiusY = t7; _.brRadiusX = t8; _.brRadiusY = t9; _.blRadiusX = t10; _.blRadiusY = t11; _.webOnlyUniformRadii = t12; }, _HashEnd: function _HashEnd() { }, webOnlyWarmupEngine_closure: function webOnlyWarmupEngine_closure() { }, webOnlyWarmupEngine_closure0: function webOnlyWarmupEngine_closure0(t0, t1) { this.registerPlugins = t0; this.runApp = t1; }, PlatformViewRegistry: function PlatformViewRegistry() { }, KeyEventType: function KeyEventType(t0, t1) { this.index = t0; this._core$_name = t1; }, KeyData: function KeyData(t0, t1, t2, t3, t4, t5) { var _ = this; _.timeStamp = t0; _.type = t1; _.physical = t2; _.logical = t3; _.character = t4; _.synthesized = t5; }, KeyData__logicalToString_closure: function KeyData__logicalToString_closure(t0) { this.planeNum = t0; }, KeyData__quotedCharCode_closure: function KeyData__quotedCharCode_closure() { }, Color: function Color(t0) { this.value = t0; }, StrokeCap: function StrokeCap(t0, t1) { this.index = t0; this._core$_name = t1; }, StrokeJoin: function StrokeJoin(t0, t1) { this.index = t0; this._core$_name = t1; }, PaintingStyle: function PaintingStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, BlendMode: function BlendMode(t0, t1) { this.index = t0; this._core$_name = t1; }, Clip: function Clip(t0, t1) { this.index = t0; this._core$_name = t1; }, BlurStyle: function BlurStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, MaskFilter: function MaskFilter(t0, t1) { this._ui$_style = t0; this._sigma = t1; }, FilterQuality: function FilterQuality(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageFilter: function ImageFilter() { }, ImageByteFormat: function ImageByteFormat(t0, t1) { this.index = t0; this._core$_name = t1; }, PixelFormat: function PixelFormat(t0, t1) { this.index = t0; this._core$_name = t1; }, webOnlyInstantiateImageCodecFromUrl_closure: function webOnlyInstantiateImageCodecFromUrl_closure(t0, t1) { this.uri = t0; this.chunkCallback = t1; }, decodeImageFromPixels_executeCallback: function decodeImageFromPixels_executeCallback(t0) { this.callback = t0; }, decodeImageFromPixels_executeCallback_closure: function decodeImageFromPixels_executeCallback_closure(t0) { this.callback = t0; }, Shadow: function Shadow(t0, t1, t2) { this.color = t0; this.offset = t1; this.blurRadius = t2; }, PlatformDispatcher: function PlatformDispatcher() { }, PlatformConfiguration: function PlatformConfiguration(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.accessibilityFeatures = t0; _.alwaysUse24HourFormat = t1; _.semanticsEnabled = t2; _.platformBrightness = t3; _.textScaleFactor = t4; _.locales = t5; _.defaultRouteName = t6; _.systemFontFamily = t7; }, ViewConfiguration0: function ViewConfiguration0() { }, FrameTiming: function FrameTiming(t0) { this._ui$_data = t0; }, AppLifecycleState: function AppLifecycleState(t0, t1) { this.index = t0; this._core$_name = t1; }, Locale: function Locale(t0, t1) { this._languageCode = t0; this._countryCode = t1; }, PointerChange: function PointerChange(t0, t1) { this.index = t0; this._core$_name = t1; }, PointerDeviceKind: function PointerDeviceKind(t0, t1) { this.index = t0; this._core$_name = t1; }, PointerSignalKind: function PointerSignalKind(t0, t1) { this.index = t0; this._core$_name = t1; }, PointerData: function PointerData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.timeStamp = t0; _.change = t1; _.kind = t2; _.signalKind = t3; _.device = t4; _.pointerIdentifier = t5; _.physicalX = t6; _.physicalY = t7; _.physicalDeltaX = t8; _.physicalDeltaY = t9; _.buttons = t10; _.obscured = t11; _.synthesized = t12; _.pressure = t13; _.pressureMin = t14; _.pressureMax = t15; _.distance = t16; _.distanceMax = t17; _.size = t18; _.radiusMajor = t19; _.radiusMinor = t20; _.radiusMin = t21; _.radiusMax = t22; _.orientation = t23; _.tilt = t24; _.platformData = t25; _.scrollDeltaX = t26; _.scrollDeltaY = t27; }, PointerDataPacket: function PointerDataPacket(t0) { this.data = t0; }, SemanticsAction: function SemanticsAction(t0) { this.index = t0; }, SemanticsFlag: function SemanticsFlag(t0) { this.index = t0; }, SemanticsUpdateBuilder: function SemanticsUpdateBuilder(t0) { this._nodeUpdates = t0; }, FontStyle: function FontStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, PlaceholderAlignment: function PlaceholderAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, FontWeight: function FontWeight(t0) { this.index = t0; }, FontFeature: function FontFeature() { }, TextAlign: function TextAlign(t0, t1) { this.index = t0; this._core$_name = t1; }, TextBaseline: function TextBaseline(t0, t1) { this.index = t0; this._core$_name = t1; }, TextDecoration: function TextDecoration(t0) { this._mask = t0; }, TextDecorationStyle: function TextDecorationStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, TextLeadingDistribution: function TextLeadingDistribution(t0, t1) { this.index = t0; this._core$_name = t1; }, TextHeightBehavior: function TextHeightBehavior(t0) { this.leadingDistribution = t0; }, TextDirection: function TextDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, TextBox: function TextBox(t0, t1, t2, t3, t4) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.direction = t4; }, TextAffinity: function TextAffinity(t0, t1) { this.index = t0; this._core$_name = t1; }, TextPosition: function TextPosition(t0, t1) { this.offset = t0; this.affinity = t1; }, TextRange: function TextRange(t0, t1) { this.start = t0; this.end = t1; }, ParagraphConstraints: function ParagraphConstraints(t0) { this.width = t0; }, BoxHeightStyle: function BoxHeightStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, BoxWidthStyle: function BoxWidthStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, TileMode: function TileMode(t0, t1) { this.index = t0; this._core$_name = t1; }, FlutterView: function FlutterView() { }, FlutterWindow: function FlutterWindow() { }, SingletonFlutterWindow: function SingletonFlutterWindow() { }, AccessibilityFeatures: function AccessibilityFeatures() { }, Brightness: function Brightness(t0, t1) { this.index = t0; this._core$_name = t1; }, CallbackHandle: function CallbackHandle(t0) { this._ui$_handle = t0; }, GestureSettings: function GestureSettings() { }, AudioBuffer: function AudioBuffer() { }, AudioParam: function AudioParam() { }, AudioParamMap: function AudioParamMap() { }, AudioParamMap_keys_closure: function AudioParamMap_keys_closure(t0) { this.keys = t0; }, AudioParamMap_values_closure: function AudioParamMap_values_closure(t0) { this.values = t0; }, AudioTrack: function AudioTrack() { }, AudioTrackList: function AudioTrackList() { }, BaseAudioContext: function BaseAudioContext() { }, OfflineAudioContext: function OfflineAudioContext() { }, _AudioParamMap_JavaScriptObject_MapMixin: function _AudioParamMap_JavaScriptObject_MapMixin() { }, ActiveInfo: function ActiveInfo() { }, GZipEncoder: function GZipEncoder() { }, ArchiveException$(message) { return new A.ArchiveException(message, null, null); }, ArchiveException: function ArchiveException(t0, t1, t2) { this.message = t0; this.source = t1; this.offset = t2; }, InputStream$(data, byteOrder, $length, start) { var t1, t2; if (type$.TypedData._is(data)) { t1 = J.getInterceptor$x(data); t1 = J.asUint8List$2$x(t1.get$buffer(data), t1.get$offsetInBytes(data), t1.get$lengthInBytes(data)); } else t1 = type$.List_int._is(data) ? data : A.List_List$from(data, true, type$.int); t2 = new A.InputStream(t1, start, start, byteOrder); t2.__InputStream__length = $length == null ? J.get$length$asx(t1) : $length; return t2; }, InputStreamBase: function InputStreamBase() { }, InputStream: function InputStream(t0, t1, t2, t3) { var _ = this; _.buffer = t0; _.offset = t1; _.start = t2; _.byteOrder = t3; _.__InputStream__length = $; }, OutputStream$(size) { var t1 = size == null ? 32768 : size; return new A.OutputStream(new Uint8Array(t1)); }, OutputStreamBase: function OutputStreamBase() { }, OutputStream: function OutputStream(t0) { this.length = 0; this._output_stream$_buffer = t0; }, Deflate__smaller(tree, n, m, depth) { var t1 = tree[n * 2], t2 = tree[m * 2]; if (t1 >= t2) t1 = t1 === t2 && depth[n] <= depth[m]; else t1 = true; return t1; }, _HuffmanTree$() { return new A._HuffmanTree(); }, _HuffmanTree__genCodes(tree, max_code, bl_count) { var code, bits, n, t1, len, t2, next_code = new Uint16Array(16); for (code = 0, bits = 1; bits <= 15; ++bits) { code = code + bl_count[bits - 1] << 1 >>> 0; next_code[bits] = code; } for (n = 0; n <= max_code; ++n) { t1 = n * 2; len = tree[t1 + 1]; if (len === 0) continue; t2 = next_code[len]; next_code[len] = t2 + 1; tree[t1] = A._HuffmanTree__reverseBits(t2, len); } }, _HuffmanTree__reverseBits(code, len) { var code0, res = 0; do { code0 = A._rshift(code, 1); res = (res | code & 1) << 1 >>> 0; if (--len, len > 0) { code = code0; continue; } else break; } while (true); return A._rshift(res, 1); }, _HuffmanTree__dCode(dist) { return dist < 256 ? B.List_AyI[dist] : B.List_AyI[256 + A._rshift(dist, 7)]; }, _StaticTree$(staticTree, extraBits, extraBase, numElements, maxLength) { return new A._StaticTree(staticTree, extraBits, extraBase, numElements, maxLength); }, _rshift(number, bits) { if (number >= 0) return B.JSInt_methods.$shr(number, bits); else return B.JSInt_methods.$shr(number, bits) + B.JSInt_methods._shlPositive$1(2, (~bits >>> 0) + 65536 & 65535); }, Deflate: function Deflate(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.total = _.crc32 = 0; _._deflate$_input = t0; _._output = t1; _._deflate$_status = null; _.__Deflate__pending = _.__Deflate__pendingOut = _.__Deflate__pendingBufferSize = _.__Deflate__pendingBuffer = $; _._dataType = 2; _.__Deflate__strStart = _.__Deflate__matchAvailable = _.__Deflate__prevMatch = _.__Deflate__matchLength = _.__Deflate__blockStart = _.__Deflate__hashShift = _.__Deflate__hashMask = _.__Deflate__hashBits = _.__Deflate__hashSize = _.__Deflate__insertHash = _.__Deflate__head = _.__Deflate__prev = _.__Deflate__actualWindowSize = _.__Deflate__window = _.__Deflate__windowMask = _.__Deflate__windowBits = _.__Deflate__windowSize = $; _._matchStart = 0; _.__Deflate__bitLengthTree = _.__Deflate__dynamicDistTree = _.__Deflate__dynamicLengthTree = _.__Deflate__strategy = _.__Deflate__level = _.__Deflate__prevLength = _.__Deflate__lookAhead = $; _._lDesc = t2; _._dDesc = t3; _._blDesc = t4; _._bitLengthCount = t5; _._heap = t6; _.__Deflate__heapMax = _.__Deflate__heapLen = $; _._deflate$_depth = t7; _.__Deflate__numValidBits = _.__Deflate__bitBuffer = _.__Deflate__lastEOBLen = _.__Deflate__matches = _.__Deflate__staticLen = _.__Deflate__optimalLen = _.__Deflate__dbuf = _.__Deflate__lastLit = _.__Deflate__litBufferSize = _.__Deflate__lbuf = $; }, _DeflaterConfig: function _DeflaterConfig(t0, t1, t2, t3, t4) { var _ = this; _.goodLength = t0; _.maxLazy = t1; _.niceLength = t2; _.maxChain = t3; _.$function = t4; }, _HuffmanTree: function _HuffmanTree() { this.___HuffmanTree_staticDesc = this.___HuffmanTree_maxCode = this.___HuffmanTree_dynamicTree = $; }, _StaticTree: function _StaticTree(t0, t1, t2, t3, t4) { var _ = this; _.staticTree = t0; _.extraBits = t1; _.extraBase = t2; _.numElements = t3; _.maxLength = t4; }, HuffmanTable$(lengths) { var t1 = new A.HuffmanTable(); t1.HuffmanTable$1(lengths); return t1; }, HuffmanTable: function HuffmanTable() { this.__HuffmanTable_table = $; this.maxCodeLength = 0; this.minCodeLength = 2147483647; }, Inflate$buffer(input) { var t1 = A.HuffmanTable$(B.List_2Bc), t2 = A.HuffmanTable$(B.List_X3d1); t2 = new A.Inflate(input, A.OutputStream$(null), t1, t2); t2.inputSet = true; t2._inflate$0(); return t2; }, Inflate: function Inflate(t0, t1, t2, t3) { var _ = this; _.__Inflate_input = t0; _.inputSet = false; _.output = t1; _._bitBufferLen = _._bitBuffer = 0; _._fixedLiteralLengthTable = t2; _._fixedDistanceTable = t3; }, AttributedSpans$(attributions) { var t1 = A._setArrayType([], type$.JSArray_SpanMarker); if (attributions != null) B.JSArray_methods.addAll$1(t1, attributions); B.JSArray_methods.sort$0(t1); return new A.AttributedSpans(t1); }, AttributedSpans: function AttributedSpans(t0) { this.markers = t0; }, AttributedSpans__getStartingMarkerAtOrBefore_closure: function AttributedSpans__getStartingMarkerAtOrBefore_closure(t0) { this.attribution = t0; }, AttributedSpans__getStartingMarkerAtOrBefore_closure0: function AttributedSpans__getStartingMarkerAtOrBefore_closure0(t0) { this.offset = t0; }, AttributedSpans__getEndingMarkerAtOrAfter_closure: function AttributedSpans__getEndingMarkerAtOrAfter_closure(t0) { this.attribution = t0; }, AttributedSpans__getEndingMarkerAtOrAfter_closure0: function AttributedSpans__getEndingMarkerAtOrAfter_closure0(t0) { this.offset = t0; }, AttributedSpans_addAttribution_closure: function AttributedSpans_addAttribution_closure(t0) { this.newAttribution = t0; }, AttributedSpans_addAttribution_closure0: function AttributedSpans_addAttribution_closure0(t0) { this.start = t0; }, AttributedSpans_addAttribution_closure1: function AttributedSpans_addAttribution_closure1(t0) { this.end = t0; }, AttributedSpans_addAttribution_closure2: function AttributedSpans_addAttribution_closure2(t0) { this.markersToDelete = t0; }, AttributedSpans_removeAttribution_closure: function AttributedSpans_removeAttribution_closure(t0) { this.attributionToRemove = t0; }, AttributedSpans_removeAttribution_closure0: function AttributedSpans_removeAttribution_closure0(t0) { this.start = t0; }, AttributedSpans_removeAttribution_closure1: function AttributedSpans_removeAttribution_closure1(t0) { this.end = t0; }, AttributedSpans_removeAttribution_closure2: function AttributedSpans_removeAttribution_closure2(t0) { this.markersToDelete = t0; }, AttributedSpans_removeAttribution_closure3: function AttributedSpans_removeAttribution_closure3(t0) { this.attributionToRemove = t0; }, AttributedSpans_removeAttribution_closure4: function AttributedSpans_removeAttribution_closure4() { }, AttributedSpans__isContinuousAttribution_closure: function AttributedSpans__isContinuousAttribution_closure(t0, t1) { this.markerBefore = t0; this.attribution = t1; }, AttributedSpans__getNearestMarkerAtOrBefore_closure: function AttributedSpans__getNearestMarkerAtOrBefore_closure(t0) { this.attribution = t0; }, AttributedSpans__getNearestMarkerAtOrBefore_closure0: function AttributedSpans__getNearestMarkerAtOrBefore_closure0(t0) { this.type = t0; }, AttributedSpans__getMarkerAt_closure: function AttributedSpans__getMarkerAt_closure(t0) { this.attribution = t0; }, AttributedSpans__getMarkerAt_closure0: function AttributedSpans__getMarkerAt_closure0(t0) { this.offset = t0; }, AttributedSpans__getMarkerAt_closure1: function AttributedSpans__getMarkerAt_closure1(t0) { this.type = t0; }, AttributedSpans__insertMarker_closure: function AttributedSpans__insertMarker_closure(t0) { this.newMarker = t0; }, AttributedSpans__mergeBackToBackAttributions_closure: function AttributedSpans__mergeBackToBackAttributions_closure(t0) { this.mergePoint = t0; }, AttributedSpans__mergeBackToBackAttributions_closure0: function AttributedSpans__mergeBackToBackAttributions_closure0(t0) { this.mergePoint = t0; }, AttributedSpans__mergeBackToBackAttributions_closure1: function AttributedSpans__mergeBackToBackAttributions_closure1(t0) { this.startMarker = t0; }, AttributedSpans_copyAttributionRegion_closure: function AttributedSpans_copyAttributionRegion_closure(t0) { this.startOffset = t0; }, AttributedSpans_copyAttributionRegion_closure0: function AttributedSpans_copyAttributionRegion_closure0(t0) { this.foundStartMarkers = t0; }, AttributedSpans_copyAttributionRegion__closure1: function AttributedSpans_copyAttributionRegion__closure1() { }, AttributedSpans_copyAttributionRegion__closure2: function AttributedSpans_copyAttributionRegion__closure2() { }, AttributedSpans_copyAttributionRegion_closure1: function AttributedSpans_copyAttributionRegion_closure1(t0, t1, t2) { this.$this = t0; this.cutAttributions = t1; this.startOffset = t2; }, AttributedSpans_copyAttributionRegion_closure2: function AttributedSpans_copyAttributionRegion_closure2(t0, t1) { this._box_0 = t0; this.startOffset = t1; }, AttributedSpans_copyAttributionRegion_closure3: function AttributedSpans_copyAttributionRegion_closure3(t0, t1) { this.cutAttributions = t0; this.startOffset = t1; }, AttributedSpans_copyAttributionRegion_closure4: function AttributedSpans_copyAttributionRegion_closure4(t0) { this._box_0 = t0; }, AttributedSpans_copyAttributionRegion_closure5: function AttributedSpans_copyAttributionRegion_closure5(t0) { this.foundEndMarkers = t0; }, AttributedSpans_copyAttributionRegion__closure: function AttributedSpans_copyAttributionRegion__closure() { }, AttributedSpans_copyAttributionRegion__closure0: function AttributedSpans_copyAttributionRegion__closure0() { }, AttributedSpans_copyAttributionRegion_closure6: function AttributedSpans_copyAttributionRegion_closure6(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.cutAttributions = t2; _.startOffset = t3; }, AttributedSpans_pushAttributionsBack_closure: function AttributedSpans_pushAttributionsBack_closure(t0) { this.offset = t0; }, AttributedSpans_contractAttributions_closure: function AttributedSpans_contractAttributions_closure(t0) { this.startOffset = t0; }, AttributedSpans_contractAttributions_closure0: function AttributedSpans_contractAttributions_closure0(t0, t1) { this.startOffset = t0; this.count = t1; }, AttributedSpans_contractAttributions_closure1: function AttributedSpans_contractAttributions_closure1(t0, t1) { this.needToEndAttributions = t0; this.needToStartAttributions = t1; }, AttributedSpans_contractAttributions_closure2: function AttributedSpans_contractAttributions_closure2(t0, t1) { this.startOffset = t0; this.count = t1; }, AttributedSpans_contractAttributions_closure3: function AttributedSpans_contractAttributions_closure3(t0) { this.count = t0; }, SpanMarker: function SpanMarker(t0, t1, t2) { this.attribution = t0; this.offset = t1; this.markerType = t2; }, SpanMarkerType: function SpanMarkerType(t0, t1) { this.index = t0; this._core$_name = t1; }, AttributionSpan: function AttributionSpan(t0, t1, t2) { this.attribution = t0; this.start = t1; this.end = t2; }, MultiAttributionSpan: function MultiAttributionSpan(t0, t1, t2) { this.attributions = t0; this.start = t1; this.end = t2; }, IncompatibleOverlappingAttributionsException: function IncompatibleOverlappingAttributionsException(t0, t1, t2) { this.existingAttribution = t0; this.newAttribution = t1; this.conflictStart = t2; }, AttributedText$(spans, text) { var t1 = spans == null ? A.AttributedSpans$(null) : spans; return new A.AttributedText(text, t1, A.LinkedHashSet_LinkedHashSet$_empty(type$.void_Function)); }, AttributedText: function AttributedText(t0, t1, t2) { this.text = t0; this.spans = t1; this._attributed_text$_listeners = t2; }, AttributionVisitEvent: function AttributionVisitEvent(t0, t1) { this.index = t0; this._core$_name = t1; }, NamedAttribution: function NamedAttribution(t0) { this.id = t0; }, SpanRange: function SpanRange(t0, t1) { this.start = t0; this.end = t1; }, BoardItem$(boardList, draggable, index, item, onDragItem, onDropItem, onStartDragItem, onTapItem) { return new A.BoardItem(boardList, item, index, onDropItem, onTapItem, onStartDragItem, onDragItem, draggable, null); }, BoardItem: function BoardItem(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.boardList = t0; _.item = t1; _.index = t2; _.onDropItem = t3; _.onTapItem = t4; _.onStartDragItem = t5; _.onDragItem = t6; _.draggable = t7; _.key = t8; }, BoardItemState: function BoardItemState(t0, t1) { var _ = this; _.__BoardItemState_height = $; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, BoardItemState_onDropItem_closure: function BoardItemState_onDropItem_closure() { }, BoardItemState__startDrag_closure: function BoardItemState__startDrag_closure() { }, BoardItemState__startDrag_closure0: function BoardItemState__startDrag_closure0() { }, BoardItemState_build_closure: function BoardItemState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, BoardItemState_build_closure3: function BoardItemState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, BoardItemState_build_closure2: function BoardItemState_build_closure2() { }, BoardItemState_build_closure1: function BoardItemState_build_closure1(t0) { this.$this = t0; }, BoardItemState_build_closure0: function BoardItemState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _BoardItemState_State_AutomaticKeepAliveClientMixin: function _BoardItemState_State_AutomaticKeepAliveClientMixin() { }, BoardList$(backgroundColor, boardView, draggable, footer, header, headerBackgroundColor, index, items, onDropList, onStartDragList, onTapList) { return new A.BoardList(header, footer, items, backgroundColor, headerBackgroundColor, boardView, onDropList, onTapList, onStartDragList, draggable, index, null); }, BoardList: function BoardList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.header = t0; _.footer = t1; _.items = t2; _.backgroundColor = t3; _.headerBackgroundColor = t4; _.boardView = t5; _.onDropList = t6; _.onTapList = t7; _.onStartDragList = t8; _.draggable = t9; _.index = t10; _.key = t11; }, BoardListState: function BoardListState(t0, t1, t2, t3) { var _ = this; _.itemStates = t0; _.boardListController = t1; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, BoardListState_onDropList_closure: function BoardListState_onDropList_closure() { }, BoardListState__startDrag_closure: function BoardListState__startDrag_closure() { }, BoardListState_build_closure0: function BoardListState_build_closure0(t0) { this.$this = t0; }, BoardListState_build_closure2: function BoardListState_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, BoardListState_build_closure1: function BoardListState_build_closure1() { }, BoardListState_build_closure: function BoardListState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, BoardListState_build_closure3: function BoardListState_build_closure3(t0) { this.$this = t0; }, _BoardListState_State_AutomaticKeepAliveClientMixin: function _BoardListState_State_AutomaticKeepAliveClientMixin() { }, BoardView: function BoardView(t0, t1, t2, t3) { var _ = this; _.lists = t0; _.boardViewController = t1; _.dragDelay = t2; _.key = t3; }, BoardViewState: function BoardViewState(t0, t1, t2, t3, t4) { var _ = this; _.offsetY = _.offsetX = _.dy = _.dyInit = _.dxInit = _.dx = _.draggedListIndex = _.draggedItemIndex = _.draggedItem = null; _.initialY = _.initialX = 0; _.startItemIndex = _.startListIndex = _.height = _.bottomItemY = _.topItemY = _.bottomListY = _.topListY = _.leftListX = _.rightListX = null; _.canDrag = true; _.boardViewController = t0; _.listStates = t1; _.onDropList = _.onDropItem = null; _._isInWidget = _.isScrolling = false; _._middleWidgetKey = t2; _.pointer = null; _.shown = true; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, BoardViewState_moveDown_closure: function BoardViewState_moveDown_closure() { }, BoardViewState_moveUp_closure: function BoardViewState_moveUp_closure() { }, BoardViewState_moveListRight_closure: function BoardViewState_moveListRight_closure(t0, t1) { this.$this = t0; this.tempListIndex = t1; }, BoardViewState_moveListRight__closure: function BoardViewState_moveListRight__closure(t0) { this.$this = t0; }, BoardViewState_moveListRight_closure0: function BoardViewState_moveListRight_closure0() { }, BoardViewState_moveRight_closure: function BoardViewState_moveRight_closure() { }, BoardViewState_moveRight_closure0: function BoardViewState_moveRight_closure0() { }, BoardViewState_moveRight_closure1: function BoardViewState_moveRight_closure1(t0, t1, t2) { this.$this = t0; this.tempListIndex = t1; this.tempItemIndex = t2; }, BoardViewState_moveRight__closure: function BoardViewState_moveRight__closure(t0) { this.$this = t0; }, BoardViewState_moveRight_closure2: function BoardViewState_moveRight_closure2() { }, BoardViewState_moveListLeft_closure: function BoardViewState_moveListLeft_closure(t0, t1) { this.$this = t0; this.tempListIndex = t1; }, BoardViewState_moveListLeft__closure: function BoardViewState_moveListLeft__closure(t0) { this.$this = t0; }, BoardViewState_moveListLeft_closure0: function BoardViewState_moveListLeft_closure0() { }, BoardViewState_moveLeft_closure: function BoardViewState_moveLeft_closure() { }, BoardViewState_moveLeft_closure0: function BoardViewState_moveLeft_closure0() { }, BoardViewState_moveLeft_closure1: function BoardViewState_moveLeft_closure1(t0, t1, t2) { this.$this = t0; this.tempListIndex = t1; this.tempItemIndex = t2; }, BoardViewState_moveLeft__closure: function BoardViewState_moveLeft__closure(t0) { this.$this = t0; }, BoardViewState_moveLeft_closure2: function BoardViewState_moveLeft_closure2() { }, BoardViewState_build_closure: function BoardViewState_build_closure(t0) { this.$this = t0; }, BoardViewState_build__closure5: function BoardViewState_build__closure5(t0, t1) { this.$this = t0; this._shown = t1; }, BoardViewState_build_closure0: function BoardViewState_build_closure0(t0) { this.$this = t0; }, BoardViewState_build_closure1: function BoardViewState_build_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, BoardViewState_build__closure4: function BoardViewState_build__closure4() { }, BoardViewState_build_closure2: function BoardViewState_build_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, BoardViewState_build__closure3: function BoardViewState_build__closure3() { }, BoardViewState_build_closure3: function BoardViewState_build_closure3(t0) { this.$this = t0; }, BoardViewState_build__closure2: function BoardViewState_build__closure2() { }, BoardViewState_build_closure5: function BoardViewState_build_closure5(t0) { this.$this = t0; }, BoardViewState_build__closure0: function BoardViewState_build__closure0() { }, BoardViewState_build_closure4: function BoardViewState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, BoardViewState_build__closure1: function BoardViewState_build__closure1() { }, BoardViewState_build_closure6: function BoardViewState_build_closure6(t0, t1) { this.$this = t0; this.context = t1; }, BoardViewState_build__closure: function BoardViewState_build__closure() { }, BoardViewState_run_closure: function BoardViewState_run_closure() { }, _BoardViewState_State_AutomaticKeepAliveClientMixin: function _BoardViewState_State_AutomaticKeepAliveClientMixin() { }, BoardViewController: function BoardViewController() { this.__BoardViewController_state = $; }, CopyOnWriteList: function CopyOnWriteList(t0, t1, t2) { var _ = this; _._copyBeforeWrite = true; _._growable = t0; _._copy_on_write_list$_list = t1; _.$ti = t2; }, CopyOnWriteSet: function CopyOnWriteSet(t0, t1, t2) { var _ = this; _._copy_on_write_set$_setFactory = t0; _._copy_on_write_set$_copyBeforeWrite = true; _._copy_on_write_set$_set = t1; _.$ti = t2; }, hashObjects(objects) { return A._finish(B.JSArray_methods.fold$1$2(objects, 0, new A.hashObjects_closure(), type$.int)); }, _combine(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _finish(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashObjects_closure: function hashObjects_closure() { }, BuiltList_BuiltList$from(iterable, $E) { var t1; if (iterable instanceof A._BuiltList) { t1 = A.createRuntimeType($E); t1 = A.createRuntimeType(iterable.$ti._precomputed1) === t1; } else t1 = false; if (t1) return $E._eval$1("BuiltList<0>")._as(iterable); else { t1 = new A._BuiltList(A.List_List$from(iterable, false, $E), $E._eval$1("_BuiltList<0>")); t1._maybeCheckForNull$0(); return t1; } }, BuiltList_BuiltList$of(iterable, $E) { var t1 = new A._BuiltList(A.List_List$from(iterable, false, $E), $E._eval$1("_BuiltList<0>")); t1._maybeCheckForNull$0(); return t1; }, ListBuilder_ListBuilder(iterable, $E) { var t1 = new A.ListBuilder($E._eval$1("ListBuilder<0>")); t1.replace$1(0, iterable); return t1; }, BuiltList: function BuiltList() { }, _BuiltList: function _BuiltList(t0, t1) { this._list = t0; this._list$_hashCode = null; this.$ti = t1; }, ListBuilder: function ListBuilder(t0) { this.__ListBuilder__list = $; this._listOwner = null; this.$ti = t0; }, BuiltListMultimap_BuiltListMultimap($K, $V) { var t1 = A._BuiltListMultimap$copy(B.Map_empty0.get$keys(B.Map_empty0), new A.BuiltListMultimap_BuiltListMultimap_closure(B.Map_empty0), $K, $V); return t1; }, _BuiltListMultimap$copy(keys, lookup, $K, $V) { var t1 = new A._BuiltListMultimap(A.LinkedHashMap_LinkedHashMap$_empty($K, $V._eval$1("BuiltList<0>")), A.BuiltList_BuiltList$from(B.List_empty, $V), $K._eval$1("@<0>")._bind$1($V)._eval$1("_BuiltListMultimap<1,2>")); t1._BuiltListMultimap$copy$2(keys, lookup, $K, $V); return t1; }, ListMultimapBuilder_ListMultimapBuilder($K, $V) { var t1 = new A.ListMultimapBuilder($K._eval$1("@<0>")._bind$1($V)._eval$1("ListMultimapBuilder<1,2>")); t1.replace$1(0, B.Map_empty0); return t1; }, BuiltListMultimap: function BuiltListMultimap() { }, BuiltListMultimap_BuiltListMultimap_closure: function BuiltListMultimap_BuiltListMultimap_closure(t0) { this.multimap = t0; }, BuiltListMultimap_hashCode_closure: function BuiltListMultimap_hashCode_closure(t0) { this.$this = t0; }, BuiltListMultimap_forEach_closure: function BuiltListMultimap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, BuiltListMultimap_forEach__closure: function BuiltListMultimap_forEach__closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.key = t2; }, _BuiltListMultimap: function _BuiltListMultimap(t0, t1, t2) { var _ = this; _._list_multimap$_map = t0; _._emptyList = t1; _._list_multimap$_keys = _._list_multimap$_hashCode = null; _.$ti = t2; }, ListMultimapBuilder: function ListMultimapBuilder(t0) { var _ = this; _.__ListMultimapBuilder__builtMap = $; _._list_multimap$_builtMapOwner = null; _.__ListMultimapBuilder__builderMap = $; _.$ti = t0; }, ListMultimapBuilder_replace_closure: function ListMultimapBuilder_replace_closure(t0) { this.multimap = t0; }, BuiltMap_BuiltMap(map, $K, $V) { var t1 = type$.Map_dynamic_dynamic._is(map) || false, t2 = J.getInterceptor$(map); if (t1) return A._BuiltMap$copyAndCheckTypes(t2.get$keys(map), new A.BuiltMap_BuiltMap_closure(map), $K, $V); else throw A.wrapException(A.ArgumentError$("expected Map or BuiltMap, got " + t2.get$runtimeType(map).toString$0(0), null)); }, BuiltMap_BuiltMap$from(map, $K, $V) { return A._BuiltMap$copyAndCheckTypes(new A.LinkedHashMapKeyIterable(map, A._instanceType(map)._eval$1("LinkedHashMapKeyIterable<1>")), new A.BuiltMap_BuiltMap$from_closure(map), $K, $V); }, _BuiltMap$copyAndCheckTypes(keys, lookup, $K, $V) { var t1 = new A._BuiltMap(null, A.LinkedHashMap_LinkedHashMap$_empty($K, $V), $K._eval$1("@<0>")._bind$1($V)._eval$1("_BuiltMap<1,2>")); t1._BuiltMap$copyAndCheckTypes$2(keys, lookup, $K, $V); return t1; }, MapBuilder_MapBuilder($K, $V) { var t1 = new A.MapBuilder(null, $, null, $K._eval$1("@<0>")._bind$1($V)._eval$1("MapBuilder<1,2>")); t1.replace$1(0, B.Map_empty0); return t1; }, BuiltMap: function BuiltMap() { }, BuiltMap_BuiltMap_closure: function BuiltMap_BuiltMap_closure(t0) { this.map = t0; }, BuiltMap_BuiltMap$from_closure: function BuiltMap_BuiltMap$from_closure(t0) { this.map = t0; }, BuiltMap_hashCode_closure: function BuiltMap_hashCode_closure(t0) { this.$this = t0; }, _BuiltMap: function _BuiltMap(t0, t1, t2) { var _ = this; _._mapFactory = t0; _._map$_map = t1; _._map$_values = _._map$_keys = _._map$_hashCode = null; _.$ti = t2; }, MapBuilder: function MapBuilder(t0, t1, t2, t3) { var _ = this; _._mapFactory = t0; _.__MapBuilder__map = t1; _._mapOwner = t2; _.$ti = t3; }, MapBuilder_replace_closure: function MapBuilder_replace_closure(t0, t1) { this.$this = t0; this.replacement = t1; }, MapBuilder_replace_closure0: function MapBuilder_replace_closure0(t0, t1) { this.$this = t0; this.replacement = t1; }, BuiltSet_BuiltSet(iterable, $E) { return A.BuiltSet_BuiltSet$from(iterable, $E); }, BuiltSet_BuiltSet$from(iterable, $E) { var t1 = new A._BuiltSet(null, A.LinkedHashSet_LinkedHashSet$from(iterable, $E), $E._eval$1("_BuiltSet<0>")); t1._set$_maybeCheckForNull$0(); return t1; }, SetBuilder_SetBuilder($E) { var t1 = new A.SetBuilder(null, $, null, $E._eval$1("SetBuilder<0>")); t1.replace$1(0, B.List_empty); return t1; }, BuiltSet: function BuiltSet() { }, BuiltSet_hashCode_closure: function BuiltSet_hashCode_closure(t0) { this.$this = t0; }, _BuiltSet: function _BuiltSet(t0, t1, t2) { var _ = this; _._setFactory = t0; _._set$_set = t1; _._set$_hashCode = null; _.$ti = t2; }, SetBuilder: function SetBuilder(t0, t1, t2, t3) { var _ = this; _._setFactory = t0; _.__SetBuilder__set = t1; _._setOwner = t2; _.$ti = t3; }, SetMultimapBuilder_SetMultimapBuilder($K, $V) { var t1 = new A.SetMultimapBuilder($K._eval$1("@<0>")._bind$1($V)._eval$1("SetMultimapBuilder<1,2>")); t1.replace$1(0, B.Map_empty0); return t1; }, BuiltSetMultimap: function BuiltSetMultimap() { }, BuiltSetMultimap_hashCode_closure: function BuiltSetMultimap_hashCode_closure(t0) { this.$this = t0; }, BuiltSetMultimap_forEach_closure: function BuiltSetMultimap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, BuiltSetMultimap_forEach__closure: function BuiltSetMultimap_forEach__closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.key = t2; }, _BuiltSetMultimap: function _BuiltSetMultimap(t0, t1, t2) { var _ = this; _._set_multimap$_map = t0; _._emptySet = t1; _._set_multimap$_keys = _._set_multimap$_hashCode = null; _.$ti = t2; }, SetMultimapBuilder: function SetMultimapBuilder(t0) { var _ = this; _.__SetMultimapBuilder__builtMap = $; _._builtMapOwner = null; _.__SetMultimapBuilder__builderMap = $; _.$ti = t0; }, SetMultimapBuilder_replace_closure: function SetMultimapBuilder_replace_closure(t0) { this.multimap = t0; }, $jc(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, $jf(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, BuiltValueNullFieldError$(type, field) { return new A.BuiltValueNullFieldError(type, field); }, BuiltValueNestedFieldError$(type, field, error) { return new A.BuiltValueNestedFieldError(type, field, error); }, EnumClass: function EnumClass() { }, newBuiltValueToStringHelper_closure: function newBuiltValueToStringHelper_closure() { }, IndentingBuiltValueToStringHelper: function IndentingBuiltValueToStringHelper(t0) { this._result = t0; }, BuiltValueNullFieldError: function BuiltValueNullFieldError(t0, t1) { this.type = t0; this.field = t1; }, BuiltValueNestedFieldError: function BuiltValueNestedFieldError(t0, t1, t2) { this.type = t0; this.field = t1; this.error = t2; }, JsonObject_JsonObject(value) { if (typeof value == "number") return new A.NumJsonObject(value); else if (typeof value == "string") return new A.StringJsonObject(value); else if (A._isBool(value)) return new A.BoolJsonObject(value); else if (type$.List_nullable_Object._is(value)) return new A.ListJsonObject(new A.UnmodifiableListView(value, type$.UnmodifiableListView_nullable_Object)); else if (type$.Map_of_String_and_nullable_Object._is(value)) return new A.MapJsonObject(new A.UnmodifiableMapView(value, type$.UnmodifiableMapView_of_String_and_nullable_Object)); else if (type$.Map_dynamic_dynamic._is(value)) return new A.MapJsonObject(new A.UnmodifiableMapView(J.cast$2$0$ax(value, type$.String, type$.nullable_Object), type$.UnmodifiableMapView_of_String_and_nullable_Object)); else throw A.wrapException(A.ArgumentError$value(value, "value", "Must be bool, List, Map, num or String")); }, JsonObject: function JsonObject() { }, BoolJsonObject: function BoolJsonObject(t0) { this.value = t0; }, ListJsonObject: function ListJsonObject(t0) { this.value = t0; }, MapJsonObject: function MapJsonObject(t0) { this.value = t0; }, NumJsonObject: function NumJsonObject(t0) { this.value = t0; }, StringJsonObject: function StringJsonObject(t0) { this.value = t0; }, Serializers_Serializers() { var t1 = type$.Type, t2 = type$.Serializer_dynamic, t3 = type$.String; t2 = new A.BuiltJsonSerializersBuilder(A.MapBuilder_MapBuilder(t1, t2), A.MapBuilder_MapBuilder(t3, t2), A.MapBuilder_MapBuilder(t3, t2), A.MapBuilder_MapBuilder(type$.FullType, type$.Function), A.ListBuilder_ListBuilder(B.List_empty, type$.SerializerPlugin)); t2.add$1(0, new A.BigIntSerializer(A.BuiltList_BuiltList$from([B.Type_BigInt_8OV, J.get$runtimeType$($.$get$_BigIntImpl_zero())], t1))); t2.add$1(0, new A.BoolSerializer(A.BuiltList_BuiltList$from([B.Type_bool_lhE], t1))); t3 = type$.Object; t2.add$1(0, new A.BuiltListSerializer(A.BuiltList_BuiltList$from([B.Type_BuiltList_iTR, A.getRuntimeType(A.BuiltList_BuiltList$from(B.List_empty, t3))], t1))); t2.add$1(0, new A.BuiltListMultimapSerializer(A.BuiltList_BuiltList$from([B.Type_BuiltListMultimap_2Mt, A.getRuntimeType(A.BuiltListMultimap_BuiltListMultimap(t3, t3))], t1))); t2.add$1(0, new A.BuiltMapSerializer(A.BuiltList_BuiltList$from([B.Type_BuiltMap_qd4, A.getRuntimeType(A.BuiltMap_BuiltMap(B.Map_empty0, t3, t3))], t1))); t2.add$1(0, new A.BuiltSetSerializer(A.BuiltList_BuiltList$from([B.Type_BuiltSet_fcN, A.getRuntimeType(A.BuiltSet_BuiltSet$from(B.List_empty, t3))], t1))); t2.add$1(0, new A.BuiltSetMultimapSerializer(A.BuiltSet_BuiltSet$from([B.Type_BuiltSetMultimap_9Fi], t1))); t2.add$1(0, new A.DateTimeSerializer(A.BuiltList_BuiltList$from([B.Type_DateTime_8AS], t1))); t2.add$1(0, new A.DoubleSerializer(A.BuiltList_BuiltList$from([B.Type_double_K1J], t1))); t2.add$1(0, new A.DurationSerializer(A.BuiltList_BuiltList$from([B.Type_Duration_SnA], t1))); t2.add$1(0, new A.IntSerializer(A.BuiltList_BuiltList$from([B.Type_int_tHn], t1))); t2.add$1(0, new A.Int64Serializer(A.BuiltList_BuiltList$from([B.Type_Int64_gc6], t1))); t2.add$1(0, new A.JsonObjectSerializer(A.BuiltList_BuiltList$from([B.Type_JsonObject_gyf, B.Type_BoolJsonObject_8HQ, B.Type_ListJsonObject_yPV, B.Type_MapJsonObject_bBG, B.Type_NumJsonObject_H9C, B.Type_StringJsonObject_GAC], t1))); t2.add$1(0, new A.NullSerializer(A.BuiltList_BuiltList$from([B.Type_Null_Yyn], t1))); t2.add$1(0, new A.NumSerializer(A.BuiltList_BuiltList$from([B.Type_num_cv7], t1))); t2.add$1(0, new A.RegExpSerializer(A.BuiltList_BuiltList$from([B.Type_RegExp_Eeh, $.$get$_runtimeType()], t1))); t2.add$1(0, new A.StringSerializer(A.BuiltList_BuiltList$from([B.Type_String_k8F], t1))); t2.add$1(0, new A.UriSerializer(A.BuiltList_BuiltList$from([B.Type_Uri_EFX, A.getRuntimeType(A.Uri_parse("http://example.com", 0, null)), A.getRuntimeType(A.Uri_parse("http://example.com:", 0, null))], t1))); t2.addBuilderFactory$2(B.FullType_eLJ, new A.Serializers_Serializers_closure()); t2.addBuilderFactory$2(B.FullType_4Wf, new A.Serializers_Serializers_closure0()); t2.addBuilderFactory$2(B.FullType_wIv, new A.Serializers_Serializers_closure1()); t2.addBuilderFactory$2(B.FullType_4e8, new A.Serializers_Serializers_closure2()); t2.addBuilderFactory$2(B.FullType_Ofx, new A.Serializers_Serializers_closure3()); return t2.build$0(0); }, FullType__getRawName(type) { var $name = J.toString$0$(type), genericsStart = J.indexOf$1$asx($name, "<"); return genericsStart === -1 ? $name : B.JSString_methods.substring$2($name, 0, genericsStart); }, DeserializationError_DeserializationError(json, type, error) { var limitedJson = J.toString$0$(json), t1 = limitedJson.length; return new A.DeserializationError(t1 > 80 ? B.JSString_methods.replaceRange$3(limitedJson, 77, t1, "...") : limitedJson, type, error); }, Serializers_Serializers_closure: function Serializers_Serializers_closure() { }, Serializers_Serializers_closure0: function Serializers_Serializers_closure0() { }, Serializers_Serializers_closure1: function Serializers_Serializers_closure1() { }, Serializers_Serializers_closure2: function Serializers_Serializers_closure2() { }, Serializers_Serializers_closure3: function Serializers_Serializers_closure3() { }, FullType: function FullType(t0, t1, t2) { this.root = t0; this.parameters = t1; this.nullable = t2; }, DeserializationError: function DeserializationError(t0, t1, t2) { this.json = t0; this.type = t1; this.error = t2; }, BigIntSerializer: function BigIntSerializer(t0) { this.types = t0; }, BoolSerializer: function BoolSerializer(t0) { this.types = t0; }, _getRawName(type) { var $name = J.toString$0$(type), genericsStart = J.indexOf$1$asx($name, "<"); return genericsStart === -1 ? $name : B.JSString_methods.substring$2($name, 0, genericsStart); }, BuiltJsonSerializers: function BuiltJsonSerializers(t0, t1, t2, t3, t4) { var _ = this; _._typeToSerializer = t0; _._wireNameToSerializer = t1; _._typeNameToSerializer = t2; _.builderFactories = t3; _.serializerPlugins = t4; }, BuiltJsonSerializersBuilder: function BuiltJsonSerializersBuilder(t0, t1, t2, t3, t4) { var _ = this; _._typeToSerializer = t0; _._wireNameToSerializer = t1; _._typeNameToSerializer = t2; _._builderFactories = t3; _._plugins = t4; }, BuiltListMultimapSerializer: function BuiltListMultimapSerializer(t0) { this.types = t0; }, BuiltListMultimapSerializer_serialize_closure: function BuiltListMultimapSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltListMultimapSerializer_deserialize_closure: function BuiltListMultimapSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltListSerializer: function BuiltListSerializer(t0) { this.types = t0; }, BuiltListSerializer_serialize_closure: function BuiltListSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltListSerializer_deserialize_closure: function BuiltListSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltMapSerializer: function BuiltMapSerializer(t0) { this.types = t0; }, BuiltSetMultimapSerializer: function BuiltSetMultimapSerializer(t0) { this.types = t0; }, BuiltSetMultimapSerializer_serialize_closure: function BuiltSetMultimapSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltSetMultimapSerializer_deserialize_closure: function BuiltSetMultimapSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltSetSerializer: function BuiltSetSerializer(t0) { this.types = t0; }, BuiltSetSerializer_serialize_closure: function BuiltSetSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltSetSerializer_deserialize_closure: function BuiltSetSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, DateTimeSerializer: function DateTimeSerializer(t0) { this.types = t0; }, DoubleSerializer: function DoubleSerializer(t0) { this.types = t0; }, DurationSerializer: function DurationSerializer(t0) { this.types = t0; }, Int64Serializer: function Int64Serializer(t0) { this.types = t0; }, IntSerializer: function IntSerializer(t0) { this.types = t0; }, JsonObjectSerializer: function JsonObjectSerializer(t0) { this.types = t0; }, NullSerializer: function NullSerializer(t0) { this.types = t0; }, NumSerializer: function NumSerializer(t0) { this.types = t0; }, RegExpSerializer: function RegExpSerializer(t0) { this.types = t0; }, StringSerializer: function StringSerializer(t0) { this.types = t0; }, UriSerializer: function UriSerializer(t0) { this.types = t0; }, StandardJsonPlugin: function StandardJsonPlugin() { }, StandardJsonPlugin__toList_closure: function StandardJsonPlugin__toList_closure() { }, StandardJsonPlugin__toList_closure0: function StandardJsonPlugin__toList_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.keepNulls = t2; _.result = t3; _.hasEncodedKeys = t4; }, StandardJsonPlugin__toListUsingDiscriminator_closure: function StandardJsonPlugin__toListUsingDiscriminator_closure() { }, StandardJsonPlugin__toListUsingDiscriminator_closure0: function StandardJsonPlugin__toListUsingDiscriminator_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.result = t2; _.needToDecodeKeys = t3; }, CachedNetworkImage$(errorWidget, fit, height, httpHeaders, imageRenderMethodForWeb, imageUrl, key, placeholder, width) { return new A.CachedNetworkImage(new A.CachedNetworkImageProvider(null, imageUrl, null, httpHeaders, imageRenderMethodForWeb == null ? B.ImageRenderMethodForWeb_0 : imageRenderMethodForWeb), imageUrl, placeholder, errorWidget, width, height, fit, key); }, CachedNetworkImage: function CachedNetworkImage(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._cached_image_widget$_image = t0; _.imageUrl = t1; _.placeholder = t2; _.errorWidget = t3; _.width = t4; _.height = t5; _.fit = t6; _.key = t7; }, CachedNetworkImageProvider: function CachedNetworkImageProvider(t0, t1, t2, t3, t4) { var _ = this; _.cacheManager = t0; _.url = t1; _.cacheKey = t2; _.headers = t3; _._imageRenderMethodForWeb = t4; }, CachedNetworkImageProvider__loadAsyncHttpGet_closure: function CachedNetworkImageProvider__loadAsyncHttpGet_closure(t0) { this.key = t0; }, loadAsyncHtmlImage(key, chunkEvents, decode) { return A.webOnlyInstantiateImageCodecFromUrl(A.Uri_base().resolve$1(0, key.url), new A.loadAsyncHtmlImage_closure(chunkEvents)); }, loadAsyncHtmlImage_closure: function loadAsyncHtmlImage_closure(t0) { this.chunkEvents = t0; }, ImageRenderMethodForWeb: function ImageRenderMethodForWeb(t0, t1) { this.index = t0; this._core$_name = t1; }, MultiImageStreamCompleter$(chunkEvents, codec, informationCollector, scale) { var t1 = new A.MultiImageStreamCompleter(scale, informationCollector, A._setArrayType([], type$.JSArray_ImageStreamListener), A._setArrayType([], type$.JSArray_of_void_Function)); t1.MultiImageStreamCompleter$4$chunkEvents$codec$informationCollector$scale(chunkEvents, codec, informationCollector, scale); return t1; }, MultiImageStreamCompleter: function MultiImageStreamCompleter(t0, t1, t2, t3) { var _ = this; _._nextImageCodec = _._multi_image_stream_completer$_codec = null; _._multi_image_stream_completer$_scale = t0; _._multi_image_stream_completer$_informationCollector = t1; _._multi_image_stream_completer$_frameDuration = _._shownTimestamp = _._multi_image_stream_completer$_nextFrame = null; _._multi_image_stream_completer$_framesEmitted = 0; _._multi_image_stream_completer$_timer = null; _._multi_image_stream_completer$_frameCallbackScheduled = false; _._image_stream$_listeners = t2; _.debugLabel = _._currentError = _._currentImage = null; _._addingInitialListeners = _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t3; }, MultiImageStreamCompleter_closure: function MultiImageStreamCompleter_closure(t0) { this.$this = t0; }, MultiImageStreamCompleter_closure0: function MultiImageStreamCompleter_closure0(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiImageStreamCompleter_closure1: function MultiImageStreamCompleter_closure1(t0, t1) { this.$this = t0; this.informationCollector = t1; }, StringCharacterRange_StringCharacterRange$at(string, startIndex, endIndex) { A.RangeError_checkValidRange(startIndex, endIndex, string.length, "startIndex", "endIndex"); return A.StringCharacterRange__expandRange(string, startIndex, endIndex == null ? startIndex : endIndex); }, StringCharacterRange__expandRange(string, start, end) { var t1 = string.length; start = A.previousBreak(string, 0, t1, start); return new A.StringCharacterRange(string, start, end != start ? A.nextBreak(string, 0, t1, end) : end); }, _indexOf(source, pattern, start, end) { var realEnd, index, t1, patternLength = pattern.length; if (patternLength === 0) return start; realEnd = end - patternLength; if (realEnd < start) return -1; if (source.length - realEnd <= (realEnd - start) * 2) { index = 0; while (true) { if (start < realEnd) { index = B.JSString_methods.indexOf$2(source, pattern, start); t1 = index >= 0; } else t1 = false; if (!t1) break; if (index > realEnd) return -1; if (A.isGraphemeClusterBoundary(source, start, end, index) && A.isGraphemeClusterBoundary(source, start, end, index + patternLength)) return index; start = index + 1; } return -1; } return A._gcIndexOf(source, pattern, start, end); }, _gcIndexOf(source, pattern, start, end) { var t1, index, endIndex, breaks = new A.Breaks(source, end, start, 0); for (t1 = pattern.length; index = breaks.nextBreak$0(), index >= 0;) { endIndex = index + t1; if (endIndex > end) break; if (B.JSString_methods.startsWith$2(source, pattern, index) && A.isGraphemeClusterBoundary(source, start, end, endIndex)) return index; } return -1; }, StringCharacters: function StringCharacters(t0) { this.string = t0; }, StringCharacterRange: function StringCharacterRange(t0, t1, t2) { var _ = this; _._characters_impl$_string = t0; _._characters_impl$_start = t1; _._characters_impl$_end = t2; _._currentCache = null; }, lookAhead(base, start, cursor, state) { if (state === 208) return A.lookAheadRegional(base, start, cursor); if (state === 224) { if (A.lookAheadPictorgraphicExtend(base, start, cursor) >= 0) return 145; return 64; } throw A.wrapException(A.StateError$("Unexpected state: " + B.JSInt_methods.toRadixString$1(state, 16))); }, lookAheadRegional(base, start, cursor) { var t1, index, count, index0, tail, lead; for (t1 = J.getInterceptor$s(base), index = cursor, count = 0; index0 = index - 2, index0 >= start; index = index0) { tail = t1.codeUnitAt$1(base, index - 1); if ((tail & 64512) !== 56320) break; lead = B.JSString_methods.codeUnitAt$1(base, index0); if ((lead & 64512) !== 55296) break; if (A.high(lead, tail) !== 6) break; count ^= 1; } if (count === 0) return 193; else return 144; }, lookAheadPictorgraphicExtend(base, start, cursor) { var t1, index, char, category, prevChar, t2; for (t1 = J.getInterceptor$s(base), index = cursor; index > start;) { --index; char = t1.codeUnitAt$1(base, index); if ((char & 64512) !== 56320) category = A.low(char); else { if (index > start) { --index; prevChar = B.JSString_methods.codeUnitAt$1(base, index); t2 = (prevChar & 64512) === 55296; } else { prevChar = 0; t2 = false; } if (t2) category = A.high(prevChar, char); else break; } if (category === 7) return index; if (category !== 4) break; } return -1; }, isGraphemeClusterBoundary(text, start, end, index) { var char, index0, prevChar, catAfter, t1, nextChar, catBefore, prevPrevChar, state, _s208_ = string$.x10__0__; if (start < index && index < end) { char = B.JSString_methods.codeUnitAt$1(text, index); index0 = index - 1; prevChar = B.JSString_methods.codeUnitAt$1(text, index0); if ((char & 63488) !== 55296) catAfter = A.low(char); else if ((char & 64512) === 55296) { t1 = index + 1; if (t1 >= end) return true; nextChar = B.JSString_methods.codeUnitAt$1(text, t1); if ((nextChar & 64512) !== 56320) return true; catAfter = A.high(char, nextChar); } else return (prevChar & 64512) !== 55296; if ((prevChar & 64512) !== 56320) { catBefore = A.low(prevChar); index = index0; } else { index -= 2; if (start <= index) { prevPrevChar = B.JSString_methods.codeUnitAt$1(text, index); if ((prevPrevChar & 64512) !== 55296) return true; catBefore = A.high(prevPrevChar, prevChar); } else return true; } state = B.JSString_methods._codeUnitAt$1(_s208_, B.JSString_methods._codeUnitAt$1(_s208_, catAfter | 176) & 240 | catBefore); return ((state >= 208 ? A.lookAhead(text, start, index, state) : state) & 1) === 0; } return start !== end; }, previousBreak(text, start, end, index) { var nextChar, category, indexBefore, indexAfter, secondChar, prevChar; if (index === start || index === end) return index; nextChar = B.JSString_methods.codeUnitAt$1(text, index); if ((nextChar & 63488) !== 55296) { category = A.low(nextChar); indexBefore = index; } else if ((nextChar & 64512) === 55296) { indexAfter = index + 1; if (indexAfter < end) { secondChar = B.JSString_methods.codeUnitAt$1(text, indexAfter); category = (secondChar & 64512) === 56320 ? A.high(nextChar, secondChar) : 2; } else category = 2; indexBefore = index; } else { indexBefore = index - 1; prevChar = B.JSString_methods.codeUnitAt$1(text, indexBefore); if ((prevChar & 64512) === 55296) category = A.high(prevChar, nextChar); else { indexBefore = index; category = 2; } } return new A.BackBreaks(text, start, indexBefore, B.JSString_methods._codeUnitAt$1(string$.x10__0__, category | 176)).nextBreak$0(); }, nextBreak(text, start, end, index) { var indexBefore, prevChar, prevCategory, nextChar, secondCharIndex, secondChar, state, t1; if (index === start || index === end) return index; indexBefore = index - 1; prevChar = B.JSString_methods.codeUnitAt$1(text, indexBefore); if ((prevChar & 63488) !== 55296) prevCategory = A.low(prevChar); else if ((prevChar & 64512) === 55296) { nextChar = B.JSString_methods.codeUnitAt$1(text, index); if ((nextChar & 64512) === 56320) { ++index; if (index === end) return end; prevCategory = A.high(prevChar, nextChar); } else prevCategory = 2; } else if (indexBefore > start) { secondCharIndex = indexBefore - 1; secondChar = B.JSString_methods.codeUnitAt$1(text, secondCharIndex); if ((secondChar & 64512) === 55296) { prevCategory = A.high(secondChar, prevChar); indexBefore = secondCharIndex; } else prevCategory = 2; } else prevCategory = 2; if (prevCategory === 6) state = A.lookAheadRegional(text, start, indexBefore) !== 144 ? 160 : 48; else { t1 = prevCategory === 1; if (t1 || prevCategory === 4) if (A.lookAheadPictorgraphicExtend(text, start, indexBefore) >= 0) state = t1 ? 144 : 128; else state = 48; else state = B.JSString_methods._codeUnitAt$1(string$.x200_000, prevCategory | 176); } return new A.Breaks(text, text.length, index, state).nextBreak$0(); }, Breaks: function Breaks(t0, t1, t2, t3) { var _ = this; _.base = t0; _.end = t1; _.cursor = t2; _.state = t3; }, BackBreaks: function BackBreaks(t0, t1, t2, t3) { var _ = this; _.base = t0; _.start = t1; _.cursor = t2; _.state = t3; }, BarChart0: function BarChart0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.vertical = t0; _._domainAxis = null; _._newDomainAxis = t1; _._newPrimaryMeasureAxisSpec = _._primaryMeasureAxisSpec = _._newDomainAxisSpec = _._domainAxisSpec = null; _._primaryMeasureAxis = t2; _._newSecondaryMeasureAxisSpec = _._secondaryMeasureAxisSpec = null; _._secondaryMeasureAxis = t3; _._newDisjointMeasureAxesSpec = _._disjointMeasureAxesSpec = null; _._disjointMeasureAxes = t4; _._useSecondaryMeasureAxis = _._usePrimaryMeasureAxis = _.flipVerticalAxisOutput = false; _.__BaseChart_context = $; _.graphicsFactory = null; _._layoutManager = t5; _._chartHeight = _._chartWidth = null; _.transition = t6; _.animationPercent = 0; _._animationsTemporarilyDisabled = false; _.__BaseChart__originalSeriesList = $; _._currentSeriesList = null; _._usingRenderers = t7; _._rendererToSeriesList = null; _._seriesRenderers = t8; _._behaviorRoleMap = t9; _._behaviorStack = t10; _._behaviorTappableMap = t11; _._gestureProxy = t12; _._selectionModels = t13; _._lifecycleListeners = t14; }, BarRenderer_BarRenderer(config, rendererId, $D) { var _null = null; if (config == null) config = A.BarRendererConfig$(_null, _null, $D); return new A.BarRenderer(config.barGroupInnerPaddingPx, config.stackedBarPaddingPx, config.barRendererDecorator, config, A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.String, $D._eval$1("List>")), A._setArrayType([], type$.JSArray_String), A.LinkedHashMap_LinkedHashMap(_null, _null, _null, $D, type$.Set_String), A.LayoutViewConfig$(config.layoutPaintOrder, B.LayoutPosition_8, 0), "bar", config.symbolRenderer, $D._eval$1("BarRenderer<0>")); }, BarRendererElement$clone(other, $D) { var t1 = new A.BarRendererElement($D._eval$1("BarRendererElement<0>")); t1.BaseBarRendererElement$clone$1(other); t1.series = other.series; t1.bounds = other.bounds; t1.roundPx = other.roundPx; t1.index = other.index; t1._datum = other._datum; return t1; }, BarRenderer: function BarRenderer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._barGroupInnerPaddingPx = t0; _._stackedBarPaddingPx = t1; _.barRendererDecorator = t2; _.config = t3; _._lastVertical = true; _._barStackMap = t4; _._currentKeys = t5; _._currentGroupsStackKeys = t6; _._prevDomainAxis = null; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t7; _.rendererId = t8; _.symbolRenderer = t9; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t10; }, BarRendererElement: function BarRendererElement(t0) { var _ = this; _.measureIsNegative = _.measureIsNull = _.strokeWidthPx = _.measureOffsetPlusMeasure = _.measureOffset = _.measureAxisPosition = _.fillPattern = _.fillColor = _.dashPattern = _.cumulativeTotal = _.color = _.barStackIndex = _._datum = _.index = _.roundPx = _.bounds = _.series = null; _.$ti = t0; }, AnimatedBar: function AnimatedBar(t0, t1, t2, t3, t4) { var _ = this; _.key = t0; _.datum = t1; _.series = t2; _.domainValue = t3; _._currentBar = _._targetBar = _._previousBar = null; _.animatingOut = false; _.$ti = t4; }, BarRendererConfig$(barRendererDecorator, groupingType, $D) { var _null = null, t1 = new A.RoundedRectSymbolRenderer(1, true); return new A.BarRendererConfig(B.C_ConstCornerStrategy, barRendererDecorator, 2, _null, t1, B.BarGroupingType_0, 10, 0, _null, _null, 1, 0, _null, new A.RendererAttributes(A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), _null, _null, _null, B.C_ViewMargin, $D._eval$1("BarRendererConfig<0>")); }, BarRendererConfig: function BarRendererConfig(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.cornerStrategy = t0; _.barRendererDecorator = t1; _.barGroupInnerPaddingPx = t2; _.customRendererId = t3; _.symbolRenderer = t4; _.groupingType = t5; _.layoutPaintOrder = t6; _.minBarLengthPx = t7; _.maxBarWidthPx = t8; _.fillPattern = t9; _.stackedBarPaddingPx = t10; _.strokeWidthPx = t11; _.weightPattern = t12; _.rendererAttributes = t13; _.paintOrder = t14; _.position = t15; _.positionOrder = t16; _.viewMargin = t17; _.$ti = t18; }, ConstCornerStrategy: function ConstCornerStrategy() { }, _ReversedSeriesIterator$(list, $S) { var t1 = new A._ReversedSeriesIterator(list, A._setArrayType([], type$.JSArray_int), $S._eval$1("_ReversedSeriesIterator<0>")); t1._ReversedSeriesIterator$1(list, $S); return t1; }, BaseBarRenderer: function BaseBarRenderer() { }, BaseBarRenderer_preprocessSeries_closure: function BaseBarRenderer_preprocessSeries_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.categoryToIndexMap = t2; _.posDomainToStackKeyToDetailsMap = t3; _.negDomainToStackKeyToDetailsMap = t4; }, BaseBarRenderer_preprocessSeries__closure0: function BaseBarRenderer_preprocessSeries__closure0(t0) { this.$this = t0; }, BaseBarRenderer_preprocessSeries__closure1: function BaseBarRenderer_preprocessSeries__closure1() { }, BaseBarRenderer_preprocessSeries__closure2: function BaseBarRenderer_preprocessSeries__closure2(t0) { this.elements = t0; }, BaseBarRenderer_preprocessSeries_closure0: function BaseBarRenderer_preprocessSeries_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.barWeights = t2; }, BaseBarRenderer_preprocessSeries__closure: function BaseBarRenderer_preprocessSeries__closure() { }, BaseBarRenderer_update_closure: function BaseBarRenderer_update_closure(t0) { this.$this = t0; }, BaseBarRenderer_update__closure: function BaseBarRenderer_update__closure(t0) { this.$this = t0; }, BaseBarRenderer_update__closure0: function BaseBarRenderer_update__closure0(t0, t1) { this.$this = t0; this.barKey = t1; }, BaseBarRenderer_update__closure1: function BaseBarRenderer_update__closure1() { }, BaseBarRenderer_update_closure0: function BaseBarRenderer_update_closure0(t0) { this.$this = t0; }, BaseBarRenderer_paint_closure: function BaseBarRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, BaseBarRenderer_paint__closure0: function BaseBarRenderer_paint__closure0(t0) { this.$this = t0; }, BaseBarRenderer_paint_closure0: function BaseBarRenderer_paint_closure0(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, BaseBarRenderer_paint_closure1: function BaseBarRenderer_paint_closure1(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, BaseBarRenderer_paint__closure: function BaseBarRenderer_paint__closure(t0, t1) { this.$this = t0; this.animationPercent = t1; }, BaseBarRenderer_getNearestDatumDetailPerSeries_closure: function BaseBarRenderer_getNearestDatumDetailPerSeries_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, BaseBarRenderer__getSegmentsForDomainValue_closure: function BaseBarRenderer__getSegmentsForDomainValue_closure() { }, BaseBarRenderer__getSegmentsForDomainValue_closure0: function BaseBarRenderer__getSegmentsForDomainValue_closure0(t0, t1, t2) { this.$this = t0; this.where = t1; this.matchingSegments = t2; }, BaseBarRenderer__getVerticalDetailsForDomainValue_closure: function BaseBarRenderer__getVerticalDetailsForDomainValue_closure(t0) { this.$this = t0; }, BaseBarRenderer__getVerticalDetailsForDomainValue_closure0: function BaseBarRenderer__getVerticalDetailsForDomainValue_closure0(t0, t1) { this.$this = t0; this.chartPoint = t1; }, _ReversedSeriesIterable: function _ReversedSeriesIterable(t0, t1) { this.seriesList = t0; this.$ti = t1; }, _ReversedSeriesIterator: function _ReversedSeriesIterator(t0, t1, t2) { var _ = this; _._base_bar_renderer$_list = t0; _._visitIndex = t1; _._base_bar_renderer$_current = null; _.$ti = t2; }, _ReversedSeriesIterator_closure: function _ReversedSeriesIterator_closure() { }, _ReversedSeriesIterator_closure0: function _ReversedSeriesIterator_closure0(t0) { this.$this = t0; }, BaseBarRendererConfig: function BaseBarRendererConfig() { }, BarGroupingType: function BarGroupingType(t0, t1) { this.index = t0; this._core$_name = t1; }, BaseBarRendererElement: function BaseBarRendererElement() { }, BaseAnimatedBar: function BaseAnimatedBar() { }, NumericAxis$() { var t1 = new A.NumericTickProvider(), formatter = A.NumericTickFormatter__getFormatter(A.NumberFormat_NumberFormat$decimalPattern(null)), t2 = new A.NumericTickFormatter(formatter), t3 = A.LinearScale$(); return new A.NumericAxis(t3, t3, t1, t1, t2, t2, A.LinkedHashMap_LinkedHashMap$_empty(type$.num, type$.String), A._setArrayType([], type$.JSArray_AxisTicks_num)); }, OrdinalAxis$() { var t1, t2; $.$get$StyleFactory__styleFactory().toString; t1 = type$.String; t2 = new A.SimpleOrdinalScale(new A.StepSizeConfig(), new A.OrdinalScaleDomainInfo(A.HashMap_HashMap(null, null, null, t1, type$.int), A._setArrayType([], type$.JSArray_String)), new A.ScaleOutputExtent(0, 1), 1, 0, new A.RangeBandConfig(B.RangeBandType_4, 0.65)); return new A.OrdinalAxis(t2, t2, B.C_OrdinalTickProvider, B.C_OrdinalTickProvider, B.C_OrdinalTickFormatter, B.C_OrdinalTickFormatter, A.LinkedHashMap_LinkedHashMap$_empty(t1, t1), A._setArrayType([], type$.JSArray_AxisTicks_String)); }, AxisOrientation: function AxisOrientation(t0, t1) { this.index = t0; this._core$_name = t1; }, ImmutableAxis: function ImmutableAxis() { }, Axis: function Axis() { }, Axis__updateAxisTicks_closure: function Axis__updateAxisTicks_closure(t0, t1) { this.$this = t0; this.animatedTick = t1; }, Axis__updateAxisTicks_closure0: function Axis__updateAxisTicks_closure0(t0, t1) { this.$this = t0; this.scale = t1; }, Axis_paint_closure: function Axis_paint_closure(t0) { this.$this = t0; }, NumericAxis: function NumericAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, OrdinalAxis: function OrdinalAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, AxisTicks$(tick, $D) { var t1 = tick.locationPx; return new A.AxisTicks(t1, tick.value, tick.textElement, t1, tick.labelOffsetPx, $D._eval$1("AxisTicks<0>")); }, AxisTicks: function AxisTicks(t0, t1, t2, t3, t4, t5) { var _ = this; _._markedForRemoval = false; _._previousLocation = _._currentLocation = null; _._targetLocation = t0; _._targetOpacity = _._previousOpacity = _._currentOpacity = null; _.value = t1; _.textElement = t2; _.locationPx = t3; _.labelOffsetPx = t4; _.$ti = t5; }, CollisionReport$(alternateTicksUsed, ticks, ticksCollide, $D) { var t1 = ticks == null ? A._setArrayType([], $D._eval$1("JSArray>")) : ticks; return new A.CollisionReport(ticksCollide, t1, alternateTicksUsed === true, $D._eval$1("CollisionReport<0>")); }, CollisionReport: function CollisionReport(t0, t1, t2, t3) { var _ = this; _.ticksCollide = t0; _.ticks = t1; _.alternateTicksUsed = t2; _.$ti = t3; }, BaseRenderSpec: function BaseRenderSpec() { }, BaseTickDrawStrategy: function BaseTickDrawStrategy() { }, BaseTickDrawStrategy_collides_closure: function BaseTickDrawStrategy_collides_closure(t0) { this.$this = t0; }, BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure: function BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure(t0, t1) { this.$this = t0; this.collision = t1; }, BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure: function BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure(t0, t1) { this.$this = t0; this.collision = t1; }, BaseTickDrawStrategy_splitLabel_closure: function BaseTickDrawStrategy_splitLabel_closure(t0, t1) { this.$this = t0; this.wholeLabel = t1; }, BaseTickDrawStrategy_getLabelWidth_closure: function BaseTickDrawStrategy_getLabelWidth_closure() { }, _PixelVerticalDirection: function _PixelVerticalDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, GridlineRendererSpec$(labelRotation, labelStyle, lineStyle, $D) { var _null = null; return new A.GridlineRendererSpec(lineStyle, _null, labelStyle, _null, _null, _null, _null, _null, _null, _null, labelRotation, _null, _null, $D._eval$1("GridlineRendererSpec<0>")); }, GridlineRendererSpec: function GridlineRendererSpec(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.lineStyle = t0; _.tickLengthPx = t1; _.labelStyle = t2; _.labelAnchor = t3; _.labelJustification = t4; _.labelOffsetFromAxisPx = t5; _.labelCollisionOffsetFromAxisPx = t6; _.labelOffsetFromTickPx = t7; _.labelCollisionOffsetFromTickPx = t8; _.minimumPaddingBetweenLabelsPx = t9; _.labelRotation = t10; _.labelCollisionRotation = t11; _.axisLineStyle = t12; _.$ti = t13; }, GridlineTickDrawStrategy: function GridlineTickDrawStrategy(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.tickLength = t0; _.lineStyle = t1; _.chartContext = t2; _.graphicsFactory = t3; _.axisLineStyle = t4; _.labelStyle = t5; _.tickLabelJustification = t6; _._defaultTickLabelAnchor = t7; _._labelDefaultOffsetFromAxisPx = t8; _._labelCollisionOffsetFromAxisPx = t9; _._labelDefaultOffsetFromTickPx = t10; _._labelCollisionOffsetFromTickPx = t11; _._labelDefaultRotation = t12; _._labelCollisionRotation = t13; _._rotateOnCollision = t14; _.minimumPaddingBetweenLabelsPx = t15; _.$ti = t16; }, NoneDrawStrategy$(chartContext, graphicsFactory, $D) { var t1, t2; $.$get$StyleFactory__styleFactory().toString; graphicsFactory.toString; t1 = new A.LineStyle(); t1.color = B.Color_ePM; t1.strokeWidth = 1; t2 = graphicsFactory.createTextPaint$0(); t2.color = B.Color_WL1; t2.fontSize = 0; return new A.NoneDrawStrategy(t1, t2, $D._eval$1("NoneDrawStrategy<0>")); }, NoneDrawStrategy: function NoneDrawStrategy(t0, t1, t2) { this.axisLineStyle = t0; this.noneTextStyle = t1; this.$ti = t2; }, NoneDrawStrategy_decorateTicks_closure: function NoneDrawStrategy_decorateTicks_closure(t0) { this.$this = t0; }, SmallTickRendererSpec$(axisLineStyle, labelAnchor, labelCollisionOffsetFromAxisPx, labelCollisionOffsetFromTickPx, labelCollisionRotation, labelJustification, labelOffsetFromAxisPx, labelOffsetFromTickPx, labelRotation, labelStyle, lineStyle, minimumPaddingBetweenLabelsPx, tickLengthPx, $D) { return new A.SmallTickRendererSpec(lineStyle, tickLengthPx, labelStyle, labelAnchor, labelJustification, labelOffsetFromAxisPx, labelCollisionOffsetFromAxisPx, labelOffsetFromTickPx, labelCollisionOffsetFromTickPx, minimumPaddingBetweenLabelsPx, labelRotation, labelCollisionRotation, axisLineStyle, $D._eval$1("SmallTickRendererSpec<0>")); }, SmallTickRendererSpec: function SmallTickRendererSpec(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.lineStyle = t0; _.tickLengthPx = t1; _.labelStyle = t2; _.labelAnchor = t3; _.labelJustification = t4; _.labelOffsetFromAxisPx = t5; _.labelCollisionOffsetFromAxisPx = t6; _.labelOffsetFromTickPx = t7; _.labelCollisionOffsetFromTickPx = t8; _.minimumPaddingBetweenLabelsPx = t9; _.labelRotation = t10; _.labelCollisionRotation = t11; _.axisLineStyle = t12; _.$ti = t13; }, SmallTickDrawStrategy: function SmallTickDrawStrategy(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.tickLength = t0; _.lineStyle = t1; _.chartContext = t2; _.graphicsFactory = t3; _.axisLineStyle = t4; _.labelStyle = t5; _.tickLabelJustification = t6; _._defaultTickLabelAnchor = t7; _._labelDefaultOffsetFromAxisPx = t8; _._labelCollisionOffsetFromAxisPx = t9; _._labelDefaultOffsetFromTickPx = t10; _._labelCollisionOffsetFromTickPx = t11; _._labelDefaultRotation = t12; _._labelCollisionRotation = t13; _._rotateOnCollision = t14; _.minimumPaddingBetweenLabelsPx = t15; _.$ti = t16; }, LinearScale$() { return new A.LinearScale(new A.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0), new A.LinearScaleViewportSettings(), new A.LinearScaleFunction(), B.RangeBandConfig_RangeBandType_0_0, B.C_StepSizeConfig); }, LinearScale$_copy(other) { var t3, t1 = other._domainInfo, t2 = new A.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0); t2._dataDomainStart = t1._dataDomainStart; t2._dataDomainEnd = t1._dataDomainEnd; t2._previouslyAddedDomain = t1._previouslyAddedDomain; t2._minimumDetectedDomainStep = t1._minimumDetectedDomainStep; t1 = other._viewportSettings; t3 = new A.LinearScaleViewportSettings(); t3.range = t1.range; t3.scalingFactor = t1.scalingFactor; t3.translatePx = t1.translatePx; t3._manualDomainExtent = t1._manualDomainExtent; t3._domainExtent = t1._domainExtent; return new A.LinearScale(t2, t3, new A.LinearScaleFunction(), other.rangeBandConfig, other.stepSizeConfig); }, LinearScale: function LinearScale(t0, t1, t2, t3, t4) { var _ = this; _._domainInfo = t0; _._viewportSettings = t1; _._scaleFunction = t2; _.rangeBandConfig = t3; _.stepSizeConfig = t4; _._scaleReady = false; }, LinearScaleDomainInfo: function LinearScaleDomainInfo(t0, t1, t2) { var _ = this; _.domainOverride = null; _._dataDomainStart = t0; _._dataDomainEnd = t1; _._previouslyAddedDomain = null; _._minimumDetectedDomainStep = t2; }, LinearScaleFunction: function LinearScaleFunction() { var _ = this; _.domainTranslate = _.rangeBandPixels = 0; _.scalingFactor = 1; _.stepSizePixels = _.rangeTranslate = 0; }, LinearScaleViewportSettings: function LinearScaleViewportSettings() { var _ = this; _.range = null; _.keepViewportWithinData = true; _.scalingFactor = 1; _.translatePx = 0; _._domainExtent = null; _._manualDomainExtent = false; }, NumericExtents: function NumericExtents(t0, t1) { this.min = t0; this.max = t1; }, NumericTickProvider__getEnclosingPowerOfTen(number) { var t1; if (number === 0) return 1; t1 = Math.pow(10, B.JSNumber_methods.ceil$0(0.4342944819032518 * Math.log(Math.abs(number)))); return t1 * (number < 0 ? -1 : 1); }, NumericTickProvider__getStepLessThan(number, stepSize) { var t1; if (number === 0 || stepSize === 0) return 0; t1 = number / stepSize; return (stepSize > 0 ? B.JSNumber_methods.floor$0(t1) : B.JSNumber_methods.ceil$0(t1)) * stepSize; }, NumericTickProvider: function NumericTickProvider() { var _ = this; _.__NumericTickProvider__high = _.__NumericTickProvider__low = $; _._maxTickCount = _._minTickCount = null; }, _TickStepInfo: function _TickStepInfo(t0, t1) { this.stepSize = t0; this.tickStart = t1; }, OrdinalScaleDomainInfo: function OrdinalScaleDomainInfo(t0, t1) { this._ordinal_scale_domain_info$_index = 0; this._domainsToOrder = t0; this._domainList = t1; }, OrdinalTickProvider: function OrdinalTickProvider() { }, Scale: function Scale() { }, MutableScale: function MutableScale() { }, ScaleOutputExtent: function ScaleOutputExtent(t0, t1) { this.start = t0; this.end = t1; }, RangeBandType: function RangeBandType(t0, t1) { this.index = t0; this._core$_name = t1; }, RangeBandConfig: function RangeBandConfig(t0, t1) { this.type = t0; this.size = t1; }, StepSizeType: function StepSizeType(t0, t1) { this.index = t0; this._core$_name = t1; }, StepSizeConfig: function StepSizeConfig() { }, Extents: function Extents() { }, SimpleOrdinalScale: function SimpleOrdinalScale(t0, t1, t2, t3, t4, t5) { var _ = this; _._stepSizeConfig = t0; _._domain = t1; _._range = t2; _._viewportScale = t3; _._viewportTranslatePx = t4; _._rangeBandConfig = t5; _._scaleChanged = true; _.__SimpleOrdinalScale__cachedRangeBandSize = _.__SimpleOrdinalScale__cachedRangeBandShift = _.__SimpleOrdinalScale__cachedStepSizePixels = $; _._viewportStartingDomain = _._viewportDataSize = null; }, AxisSpec: function AxisSpec() { }, TextStyleSpec: function TextStyleSpec(t0, t1) { this.fontSize = t0; this.color = t1; }, LineStyleSpec: function LineStyleSpec(t0) { this.color = t0; }, TickLabelAnchor: function TickLabelAnchor(t0, t1) { this.index = t0; this._core$_name = t1; }, TickLabelJustification: function TickLabelJustification(t0, t1) { this.index = t0; this._core$_name = t1; }, DateTimeAxisSpec$(renderSpec) { var _null = null; return new A.DateTimeAxisSpec(_null, renderSpec, _null, _null, _null); }, DateTimeAxisSpec: function DateTimeAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, NumericAxisSpec$(renderSpec) { var _null = null; return new A.NumericAxisSpec(_null, renderSpec, _null, _null, _null); }, NumericAxisSpec: function NumericAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, OrdinalAxisSpec: function OrdinalAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, Tick: function Tick(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.textElement = t1; _.locationPx = t2; _.labelOffsetPx = t3; _.$ti = t4; }, NumericTickFormatter__getFormatter(numberFormat) { return new A.NumericTickFormatter__getFormatter_closure(numberFormat); }, SimpleTickFormatterBase: function SimpleTickFormatterBase() { }, SimpleTickFormatterBase_format_closure: function SimpleTickFormatterBase_format_closure(t0, t1) { this.$this = t0; this.cache = t1; }, OrdinalTickFormatter: function OrdinalTickFormatter() { }, NumericTickFormatter: function NumericTickFormatter(t0) { this.formatter = t0; }, NumericTickFormatter__getFormatter_closure: function NumericTickFormatter__getFormatter_closure(t0) { this.numberFormat = t0; }, BaseTickProvider: function BaseTickProvider() { }, AutoAdjustingDateTimeTickProvider: function AutoAdjustingDateTimeTickProvider(t0) { this._potentialTickProviders = t0; }, BaseTimeStepper: function BaseTimeStepper() { }, _TimeStepIteratorImpl: function _TimeStepIteratorImpl(t0, t1, t2) { var _ = this; _.extentStartTime = t0; _.extentEndTime = t1; _.stepper = t2; _._base_time_stepper$_current = null; _._tickIncrement = 1; }, _TimeStepIteratorFactoryImpl: function _TimeStepIteratorFactoryImpl(t0, t1) { this.timeExtent = t0; this._timeStepIterator = t1; }, DateTimeAxis$(dateTimeFactory) { var map, _null = null, t1 = new A.AutoAdjustingDateTimeTickProvider(A._setArrayType([new A.TimeRangeTickProviderImpl(new A.YearTimeStepper(B.List_2Vk0, dateTimeFactory)), new A.TimeRangeTickProviderImpl(new A.MonthTimeStepper(B.List_ww8, dateTimeFactory)), new A.TimeRangeTickProviderImpl(new A.DayTimeStepper(B.List_yTu, dateTimeFactory)), new A.TimeRangeTickProviderImpl(new A.HourTimeStepper(B.List_E7y, dateTimeFactory)), new A.TimeRangeTickProviderImpl(new A.MinuteTimeStepper(B.List_yTu0, dateTimeFactory))], type$.JSArray_TimeRangeTickProvider)), t2 = A.DateFormat$("mm", _null), t3 = A.DateFormat$("h mm", _null), t4 = new A.HourTickFormatter(A.DateFormat$("h", _null), A.DateFormat$("MMM d ha", _null), B.CalendarField_2), t5 = A.DateFormat$("ha", _null); A._lateWriteOnceCheck($, "_noonFormat"); t4.__HourTickFormatter__noonFormat = t5; map = A.LinkedHashMap_LinkedHashMap$_literal([60000, new A.TimeTickFormatterImpl(t2, t3, B.CalendarField_3), 3600000, t4, 82800000, new A.TimeTickFormatterImpl(A.DateFormat$("d", _null), A.DateFormat$("MMM d", _null), B.CalendarField_1), 2419200000, new A.TimeTickFormatterImpl(A.DateFormat$("MMM", _null), A.DateFormat$("MMM yyyy", _null), B.CalendarField_0), 314496e5, new A.TimeTickFormatterImpl(A.DateFormat$("yyyy", _null), A.DateFormat$("yyyy", _null), B.CalendarField_0)], type$.int, type$.TimeTickFormatter); t2 = new A.DateTimeTickFormatter(map); t2.DateTimeTickFormatter$_internal$1(map); t3 = new A.DateTimeScale(dateTimeFactory, A.LinearScale$()); return new A.DateTimeAxis(t3, t3, t1, t1, t2, t2, A.LinkedHashMap_LinkedHashMap$_empty(type$.DateTime, type$.String), A._setArrayType([], type$.JSArray_AxisTicks_DateTime)); }, DateTimeAxis: function DateTimeAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, DateTimeExtents: function DateTimeExtents(t0, t1) { this.start = t0; this.end = t1; }, DateTimeScale: function DateTimeScale(t0, t1) { this.dateTimeFactory = t0; this._linearScale = t1; }, DateTimeTickFormatter__checkPositiveAndSorted(values) { var prev, isSorted, prev0, t1 = values._map, valuesIterator = A.LinkedHashMapKeyIterator$(t1, t1._modifications, values.$ti._precomputed1); valuesIterator.moveNext$0(); prev = valuesIterator.__js_helper$_current; if (prev <= 0) throw A.wrapException(A.ArgumentError$("Formatter keys must be positive", null)); isSorted = true; while (true) { if (!(valuesIterator.moveNext$0() && isSorted)) break; prev0 = valuesIterator.__js_helper$_current; isSorted = prev < prev0; prev = prev0; } if (!isSorted) throw A.wrapException(A.ArgumentError$("Formatters must be sorted with keys in increasing order", null)); }, DateTimeTickFormatter: function DateTimeTickFormatter(t0) { this._timeFormatters = t0; }, DayTimeStepper: function DayTimeStepper(t0, t1) { this._day_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, HourTickFormatter: function HourTickFormatter(t0, t1, t2) { var _ = this; _.__HourTickFormatter__noonFormat = $; _._simpleFormat = t0; _._transitionFormat = t1; _.transitionField = t2; }, HourTimeStepper: function HourTimeStepper(t0, t1) { this._hour_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, MinuteTimeStepper: function MinuteTimeStepper(t0, t1) { this._allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, MonthTimeStepper: function MonthTimeStepper(t0, t1) { this._month_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, TimeRangeTickProvider: function TimeRangeTickProvider() { }, TimeRangeTickProviderImpl: function TimeRangeTickProviderImpl(t0) { this.timeStepper = t0; }, TimeStepIteratorFactory: function TimeStepIteratorFactory() { }, TimeTickFormatterImpl: function TimeTickFormatterImpl(t0, t1, t2) { this._simpleFormat = t0; this._transitionFormat = t1; this.transitionField = t2; }, CalendarField: function CalendarField(t0, t1) { this.index = t0; this._core$_name = t1; }, YearTimeStepper: function YearTimeStepper(t0, t1) { this._year_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, OrdinalCartesianChart: function OrdinalCartesianChart() { }, CartesianChart: function CartesianChart() { }, CartesianChart_init_closure: function CartesianChart_init_closure(t0, t1) { this.context = t0; this.graphicsFactory = t1; }, CartesianChart_makeSeries_closure: function CartesianChart_makeSeries_closure() { }, CartesianChart_preprocessSeries_closure: function CartesianChart_preprocessSeries_closure(t0) { this.$this = t0; }, CartesianChart_preprocessSeries_closure0: function CartesianChart_preprocessSeries_closure0() { }, CartesianChart_preprocessSeries_closure1: function CartesianChart_preprocessSeries_closure1(t0, t1) { this.$this = t0; this.reverseAxisDirection = t1; }, CartesianChart_preprocessSeries_closure2: function CartesianChart_preprocessSeries_closure2(t0) { this.$this = t0; }, CartesianChart_onSkipLayout_closure: function CartesianChart_onSkipLayout_closure() { }, BaseCartesianRenderer: function BaseCartesianRenderer() { }, BaseCartesianRenderer_configureDomainAxes_closure: function BaseCartesianRenderer_configureDomainAxes_closure(t0) { this.$this = t0; }, BaseCartesianRenderer_configureMeasureAxes_closure: function BaseCartesianRenderer_configureMeasureAxes_closure(t0) { this.$this = t0; }, BaseChart0: function BaseChart0() { }, BaseChart_init_closure: function BaseChart_init_closure(t0) { this.graphicsFactory = t0; }, BaseChart_getSelectionModel_closure: function BaseChart_getSelectionModel_closure(t0) { this.$this = t0; }, BaseChart_pointWithinRenderer_closure: function BaseChart_pointWithinRenderer_closure(t0, t1) { this.$this = t0; this.chartPosition = t1; }, BaseChart_getNearestDatumDetailPerSeries_closure: function BaseChart_getNearestDatumDetailPerSeries_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.details = t1; _.drawAreaPoint = t2; _.boundsOverride = t3; }, BaseChart_getNearestDatumDetailPerSeries_closure0: function BaseChart_getNearestDatumDetailPerSeries_closure0(t0) { this.$this = t0; }, BaseChart_draw_closure: function BaseChart_draw_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, BaseChart_drawInternal_closure: function BaseChart_drawInternal_closure(t0) { this.$this = t0; }, BaseChart_configureSeries_closure: function BaseChart_configureSeries_closure(t0, t1) { this.$this = t0; this.rendererToSeriesList = t1; }, BaseChart_configureSeries__closure: function BaseChart_configureSeries__closure(t0) { this.$this = t0; }, BaseChart_configureSeries_closure0: function BaseChart_configureSeries_closure0(t0) { this.$this = t0; }, BaseChart_preprocessSeries_closure: function BaseChart_preprocessSeries_closure(t0, t1, t2) { this.$this = t0; this.rendererToSeriesList = t1; this.unusedRenderers = t2; }, BaseChart_preprocessSeries__closure: function BaseChart_preprocessSeries__closure(t0) { this.$this = t0; }, BaseChart_preprocessSeries_closure0: function BaseChart_preprocessSeries_closure0(t0, t1) { this.$this = t0; this.rendererToSeriesList = t1; }, BaseChart_preprocessSeries_closure1: function BaseChart_preprocessSeries_closure1(t0) { this.$this = t0; }, BaseChart_onPostLayout_closure: function BaseChart_onPostLayout_closure(t0) { this.$this = t0; }, BaseChart_paint_closure: function BaseChart_paint_closure(t0, t1) { this.$this = t0; this.canvas = t1; }, BaseChart_fireOnDraw_closure: function BaseChart_fireOnDraw_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnPreprocess_closure: function BaseChart_fireOnPreprocess_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnPostprocess_closure: function BaseChart_fireOnPostprocess_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnAxisConfigured_closure: function BaseChart_fireOnAxisConfigured_closure(t0) { this.$this = t0; }, BaseChart_fireOnPostrender_closure: function BaseChart_fireOnPostrender_closure(t0, t1) { this.$this = t0; this.canvas = t1; }, BaseChart_fireOnAnimationComplete_closure: function BaseChart_fireOnAnimationComplete_closure(t0) { this.$this = t0; }, LifecycleListener: function LifecycleListener(t0, t1, t2, t3, t4) { var _ = this; _.onData = t0; _.onPreprocess = t1; _.onPostprocess = t2; _.onAxisConfigured = t3; _.$ti = t4; }, BehaviorPosition: function BehaviorPosition(t0, t1) { this.index = t0; this._core$_name = t1; }, OutsideJustification: function OutsideJustification(t0, t1) { this.index = t0; this._core$_name = t1; }, InsideJustification: function InsideJustification(t0, t1) { this.index = t0; this._core$_name = t1; }, DomainHighlighter0: function DomainHighlighter0(t0, t1) { var _ = this; _.selectionModelType = t0; _.__DomainHighlighter__lifecycleListener = _.__DomainHighlighter__chart = $; _.$ti = t1; }, DomainHighlighter__updateColorFunctions_closure: function DomainHighlighter__updateColorFunctions_closure(t0, t1) { this.$this = t0; this.selectionModel = t1; }, DomainHighlighter__updateColorFunctions__closure: function DomainHighlighter__updateColorFunctions__closure(t0, t1, t2) { this.origColorFn = t0; this.selectionModel = t1; this.series = t2; }, Legend: function Legend() { }, LegendState: function LegendState(t0) { this.__LegendState__legendEntries = $; this._selectionModel = null; this.$ti = t0; }, LegendTapHandling: function LegendTapHandling(t0, t1) { this.index = t0; this._core$_name = t1; }, LegendEntryBase: function LegendEntryBase() { }, LegendEntry: function LegendEntry(t0, t1, t2, t3, t4) { var _ = this; _.series = t0; _.color = t1; _.formattedValue = _.value = null; _.isSelected = false; _.label = t2; _.textStyle = t3; _.$ti = t4; }, LegendDefaultMeasure: function LegendDefaultMeasure(t0, t1) { this.index = t0; this._core$_name = t1; }, PerSeriesLegendEntryGenerator: function PerSeriesLegendEntryGenerator(t0) { var _ = this; _.secondaryMeasureFormatter = _.measureFormatter = _.entryTextStyle = null; _.showOverlaySeries = false; _.__PerSeriesLegendEntryGenerator_legendDefaultMeasure = $; _.$ti = t0; }, PerSeriesLegendEntryGenerator_getLegendEntries_closure: function PerSeriesLegendEntryGenerator_getLegendEntries_closure(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator_getLegendEntries_closure0: function PerSeriesLegendEntryGenerator_getLegendEntries_closure0(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator__updateFromSelection_closure: function PerSeriesLegendEntryGenerator__updateFromSelection_closure(t0, t1) { this.$this = t0; this.entry = t1; }, PerSeriesLegendEntryGenerator__updateFromSelection_closure0: function PerSeriesLegendEntryGenerator__updateFromSelection_closure0(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal: function PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal(t0) { this.$this = t0; }, SeriesLegend0: function SeriesLegend0() { }, SeriesLegend_onData_closure0: function SeriesLegend_onData_closure0(t0) { this.$this = t0; }, SeriesLegend_onData_closure: function SeriesLegend_onData_closure(t0) { this.seriesIds = t0; }, SeriesLegend_preProcessSeriesList_closure: function SeriesLegend_preProcessSeriesList_closure(t0) { this.$this = t0; }, SeriesLegend_showSeries_closure: function SeriesLegend_showSeries_closure(t0) { this.seriesId = t0; }, _DatumPoint__DatumPoint$from0(other, x, y, $D) { var t1 = x == null ? other.x : x, t2 = y == null ? other.y : y; return new A._DatumPoint0(other.datum, other.domain, other.series, t1, t2, $D._eval$1("_DatumPoint0<0>")); }, LinePointHighlighter0: function LinePointHighlighter0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.selectionModelType = t0; _.defaultRadiusPx = t1; _.radiusPaddingPx = t2; _.showHorizontalFollowLine = t3; _.showVerticalFollowLine = t4; _.dashPattern = t5; _.drawFollowLinesAcrossChart = t6; _.symbolRenderer = t7; _.__LinePointHighlighter__lifecycleListener = _.__LinePointHighlighter__view = _.__LinePointHighlighter__chart = $; _._seriesPointMap = t8; _._line_point_highlighter$_currentKeys = t9; _.$ti = t10; }, LinePointHighlighter__updateViewData_closure: function LinePointHighlighter__updateViewData_closure(t0, t1) { this.$this = t0; this.newSeriesMap = t1; }, _LinePointLayoutView: function _LinePointLayoutView(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.layoutConfig = t0; _.showHorizontalFollowLine = t1; _.showVerticalFollowLine = t2; _.chart = t3; _.dashPattern = t4; _.___LinePointLayoutView__drawAreaBounds = $; _.drawFollowLinesAcrossChart = t5; _.symbolRenderer = t6; _._seriesPointMap = null; _.$ti = t7; }, _LinePointLayoutView_paint_closure: function _LinePointLayoutView_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, _LinePointLayoutView_paint_closure0: function _LinePointLayoutView_paint_closure0(t0, t1, t2) { this.$this = t0; this.points = t1; this.animationPercent = t2; }, _DatumPoint0: function _DatumPoint0(t0, t1, t2, t3, t4, t5) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.x = t3; _.y = t4; _.$ti = t5; }, _PointRendererElement: function _PointRendererElement(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.point = t0; _.color = t1; _.fillColor = t2; _.radiusPx = t3; _.measureAxisPosition = t4; _.strokeWidthPx = t5; _.symbolRenderer = t6; _.$ti = t7; }, _AnimatedPoint: function _AnimatedPoint(t0, t1) { var _ = this; _.key = t0; _._previousPoint = null; _.___AnimatedPoint__targetPoint = $; _._currentPoint = null; _.animatingOut = false; _.$ti = t1; }, LinePointHighlighterFollowLineType: function LinePointHighlighterFollowLineType(t0, t1) { this.index = t0; this._core$_name = t1; }, SelectNearest0: function SelectNearest0(t0, t1, t2, t3, t4, t5) { var _ = this; _.__SelectNearest__listener = $; _.selectionModelType = t0; _.eventTrigger = t1; _.selectionMode = t2; _.selectClosestSeries = t3; _.maximumDomainDistancePx = t4; _._select_nearest$_chart = null; _._delaySelect = false; _.$ti = t5; }, SelectNearest__onSelect_closure: function SelectNearest__onSelect_closure(t0) { this.$this = t0; }, SelectNearest__onSelect_closure0: function SelectNearest__onSelect_closure0(t0) { this.$this = t0; }, SelectNearest__extractSeriesFromNearestSelection_closure: function SelectNearest__extractSeriesFromNearestSelection_closure(t0) { this.$this = t0; }, SelectionMode: function SelectionMode(t0, t1) { this.index = t0; this._core$_name = t1; }, SelectionTrigger: function SelectionTrigger(t0, t1) { this.index = t0; this._core$_name = t1; }, CanvasBarStack_CanvasBarStack(segments, radius, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight, stackedBarPadding) { var barIndex, bounds, t2, t3, t4, firstBarBounds = B.JSArray_methods.get$first(segments).bounds, left = firstBarBounds.left, $top = firstBarBounds.top, t1 = A._instanceType(firstBarBounds)._precomputed1, right = t1._as(left + firstBarBounds.width), bottom = t1._as($top + firstBarBounds.height); for (t1 = segments.length, barIndex = 1; barIndex < t1; ++barIndex) { bounds = segments[barIndex].bounds; t2 = bounds.left; left = Math.min(left, A.checkNum(t2)); t3 = bounds.top; $top = Math.min($top, A.checkNum(t3)); t4 = A._instanceType(bounds)._precomputed1; right = Math.max(right, t4._as(t2 + bounds.width)); bottom = Math.max(bottom, t4._as(t3 + bounds.height)); } return new A.CanvasBarStack(segments, radius, roundTopLeft, roundTopRight, roundBottomLeft, roundBottomRight, A.Rectangle$(left, $top, right - left, bottom - $top, type$.int)); }, CanvasRect: function CanvasRect(t0, t1, t2, t3, t4) { var _ = this; _.bounds = t0; _.fill = t1; _.pattern = t2; _.stroke = t3; _.strokeWidthPx = t4; }, CanvasBarStack: function CanvasBarStack(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.segments = t0; _.radius = t1; _.roundTopLeft = t2; _.roundTopRight = t3; _.roundBottomLeft = t4; _.roundBottomRight = t5; _.fullStackRect = t6; }, getAnimatedColor(previous, target, animationPercent) { var g, b, t1 = target.r, t2 = previous.r, r = B.JSNumber_methods.round$0((t1 - t2) * animationPercent + t2); t2 = target.g; t1 = previous.g; g = B.JSNumber_methods.round$0((t2 - t1) * animationPercent + t1); t1 = target.b; t2 = previous.b; b = B.JSNumber_methods.round$0((t1 - t2) * animationPercent + t2); t2 = target.a; t1 = previous.a; return new A.Color0(r, g, b, B.JSNumber_methods.round$0((t2 - t1) * animationPercent + t1), null, null); }, FillPatternType: function FillPatternType(t0, t1) { this.index = t0; this._core$_name = t1; }, DatumDetails$(areaColor, bounds, chartPosition, chartPositionLower, chartPositionUpper, color, dashPattern, datum, domain, domainDistance, domainFormatter, domainLowerBound, domainUpperBound, fillColor, fillPattern, index, measure, measureDistance, measureFormatter, measureLowerBound, measureOffset, measureUpperBound, radiusPx, rawMeasure, rawMeasureLowerBound, rawMeasureUpperBound, relativeDistance, series, strokeWidthPx, symbolRenderer, $D) { return new A.DatumDetails(datum, index, domain, domainLowerBound, domainUpperBound, measure, measureLowerBound, measureUpperBound, measureOffset, rawMeasure, rawMeasureLowerBound, rawMeasureUpperBound, series, color, fillColor, fillPattern, areaColor, dashPattern, chartPosition, chartPositionLower, chartPositionUpper, bounds, domainDistance, measureDistance, relativeDistance, radiusPx, symbolRenderer, strokeWidthPx, domainFormatter, measureFormatter, $D._eval$1("DatumDetails<0>")); }, DatumDetails_DatumDetails$from(other, bounds, chartPosition, chartPositionLower, chartPositionUpper, symbolRenderer, $D) { var t1 = chartPositionLower == null ? other.chartPositionLower : chartPositionLower, t2 = chartPositionUpper == null ? other.chartPositionUpper : chartPositionUpper, t3 = bounds == null ? other.bounds : bounds, t4 = symbolRenderer == null ? other.symbolRenderer : symbolRenderer; return A.DatumDetails$(other.areaColor, t3, chartPosition, t1, t2, other.color, other.dashPattern, other.datum, other.domain, other.domainDistance, other.domainFormatter, other.domainLowerBound, other.domainUpperBound, other.fillColor, other.fillPattern, other.index, other.measure, other.measureDistance, other.measureFormatter, other.measureLowerBound, other.measureOffset, other.measureUpperBound, other.radiusPx, other.rawMeasure, other.rawMeasureLowerBound, other.rawMeasureUpperBound, null, other.series, other.strokeWidthPx, t4, $D); }, DatumDetails: function DatumDetails(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.datum = t0; _.index = t1; _.domain = t2; _.domainLowerBound = t3; _.domainUpperBound = t4; _.measure = t5; _.measureLowerBound = t6; _.measureUpperBound = t7; _.measureOffset = t8; _.rawMeasure = t9; _.rawMeasureLowerBound = t10; _.rawMeasureUpperBound = t11; _.series = t12; _.color = t13; _.fillColor = t14; _.fillPattern = t15; _.areaColor = t16; _.dashPattern = t17; _.chartPosition = t18; _.chartPositionLower = t19; _.chartPositionUpper = t20; _.bounds = t21; _.domainDistance = t22; _.measureDistance = t23; _.relativeDistance = t24; _.radiusPx = t25; _.symbolRenderer = t26; _.strokeWidthPx = t27; _.domainFormatter = t28; _.measureFormatter = t29; _.$ti = t30; }, MutableSeries$(series, $D) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t1 = series.id, t2 = series.displayName; if (t2 == null) t2 = t1; t3 = series.seriesCategory; t4 = series.seriesColor; t5 = series.data; t6 = series.keyFn; t7 = series.domainFn; t8 = series.domainFormatterFn; t9 = series.domainLowerBoundFn; t10 = series.domainUpperBoundFn; t11 = series.measureFn; t12 = series.measureFormatterFn; t13 = series.measureLowerBoundFn; t14 = series.measureUpperBoundFn; t15 = series.measureOffsetFn; t16 = series.areaColorFn; t17 = series.colorFn; t18 = series.dashPatternFn; t19 = series.fillColorFn; t20 = series.fillPatternFn; t21 = series.patternColorFn; t22 = series.insideLabelStyleAccessorFn; t23 = series.outsideLabelStyleAccessorFn; t23 = new A.MutableSeries(t1, t2, false, t3, t4, $, $, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t11, t13, t14, t16, t17, t18, t19, t20, t21, series.radiusPxFn, series.strokeWidthPxFn, null, t22, t23, new A.SeriesAttributes(A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), null, null, $D._eval$1("MutableSeries<0>")); t23.MutableSeries$1(series, $D); return t23; }, MutableSeries: function MutableSeries(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35) { var _ = this; _.id = t0; _.displayName = t1; _.overlaySeries = t2; _.seriesCategory = t3; _.seriesColor = t4; _.__MutableSeries_seriesIndex = t5; _.__MutableSeries_seriesMeasureTotal = t6; _.data = t7; _.MutableSeries_keyFn = t8; _.domainFn = t9; _.domainFormatterFn = t10; _.domainLowerBoundFn = t11; _.domainUpperBoundFn = t12; _.measureFn = t13; _.measureFormatterFn = t14; _.measureLowerBoundFn = t15; _.measureUpperBoundFn = t16; _.measureOffsetFn = t17; _.rawMeasureFn = t18; _.rawMeasureLowerBoundFn = t19; _.rawMeasureUpperBoundFn = t20; _.areaColorFn = t21; _.colorFn = t22; _.dashPatternFn = t23; _.fillColorFn = t24; _.fillPatternFn = t25; _.patternColorFn = t26; _.radiusPxFn = t27; _.strokeWidthPxFn = t28; _.labelAccessorFn = t29; _.MutableSeries_insideLabelStyleAccessorFn = t30; _.MutableSeries_outsideLabelStyleAccessorFn = t31; _._attrs = t32; _.measureAxis = t33; _.domainAxis = t34; _.keyFn = null; _.$ti = t35; }, MutableSeries_closure: function MutableSeries_closure(t0) { this.$this = t0; }, ImmutableSeries: function ImmutableSeries() { }, SelectionModel: function SelectionModel(t0, t1, t2) { this._selectedDatum = t0; this._selectedSeries = t1; this.$ti = t2; }, MutableSelectionModel: function MutableSelectionModel(t0, t1, t2, t3, t4, t5) { var _ = this; _._changedListeners = t0; _._updatedListeners = t1; _._lockChangedListeners = t2; _._selectedDatum = t3; _._selectedSeries = t4; _.$ti = t5; }, MutableSelectionModel_updateSelection_closure: function MutableSelectionModel_updateSelection_closure(t0, t1) { this.$this = t0; this.copyOfSelectionModel = t1; }, MutableSelectionModel_updateSelection_closure0: function MutableSelectionModel_updateSelection_closure0(t0, t1) { this.$this = t0; this.copyOfSelectionModel = t1; }, SelectionModelType: function SelectionModelType(t0, t1) { this.index = t0; this._core$_name = t1; }, SeriesDatum: function SeriesDatum(t0, t1, t2) { var _ = this; _.series = t0; _.datum = t1; _._series_datum$_index = null; _.$ti = t2; }, BaseSeriesRenderer: function BaseSeriesRenderer() { }, BaseSeriesRenderer_assignMissingColors_closure: function BaseSeriesRenderer_assignMissingColors_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.missingColorCountPerCategory = t2; }, BaseSeriesRenderer_assignMissingColors__closure3: function BaseSeriesRenderer_assignMissingColors__closure3(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure0: function BaseSeriesRenderer_assignMissingColors_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.palettes = t2; }, BaseSeriesRenderer_assignMissingColors__closure2: function BaseSeriesRenderer_assignMissingColors__closure2(t0) { this.color = t0; }, BaseSeriesRenderer_assignMissingColors_closure1: function BaseSeriesRenderer_assignMissingColors_closure1(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.colorsByCategory = t1; _.colorPalettes = t2; _.missingColorCountPerCategory = t3; }, BaseSeriesRenderer_assignMissingColors_closure2: function BaseSeriesRenderer_assignMissingColors_closure2(t0, t1, t2) { this.$this = t0; this.missingColorCountPerCategory = t1; this.colorsByCategory = t2; }, BaseSeriesRenderer_assignMissingColors__closure0: function BaseSeriesRenderer_assignMissingColors__closure0(t0) { this.color = t0; }, BaseSeriesRenderer_assignMissingColors__closure1: function BaseSeriesRenderer_assignMissingColors__closure1(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure3: function BaseSeriesRenderer_assignMissingColors_closure3(t0) { this.$this = t0; }, BaseSeriesRenderer_assignMissingColors__closure: function BaseSeriesRenderer_assignMissingColors__closure(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure4: function BaseSeriesRenderer_assignMissingColors_closure4(t0) { this.$this = t0; }, RendererAttributes: function RendererAttributes(t0) { this._registry = t0; }, IdentityConverter: function IdentityConverter(t0) { this.$ti = t0; }, LayoutConfig$(bottomSpec, leftSpec, rightSpec, topSpec) { var t1 = leftSpec == null ? B.MarginSpec_null_null_null_50 : leftSpec, t2 = rightSpec == null ? B.MarginSpec_null_null_null_50 : rightSpec, t3 = topSpec == null ? B.MarginSpec_null_null_null_50 : topSpec; return new A.LayoutConfig(t1, t2, t3, bottomSpec == null ? B.MarginSpec_null_null_null_50 : bottomSpec); }, MarginSpec_MarginSpec$fromPixel(minPixel) { return new A.MarginSpec(minPixel, null, null, null); }, LayoutConfig: function LayoutConfig(t0, t1, t2, t3) { var _ = this; _.leftSpec = t0; _.rightSpec = t1; _.topSpec = t2; _.bottomSpec = t3; }, MarginSpec: function MarginSpec(t0, t1, t2, t3) { var _ = this; _._minPixel = t0; _._maxPixel = t1; _._minPercent = t2; _._maxPercent = t3; }, LayoutManagerImpl: function LayoutManagerImpl(t0, t1) { var _ = this; _.config = t0; _._views = t1; _.__LayoutManagerImpl__drawAreaBounds = _.__LayoutManagerImpl__measurements = _.__LayoutManagerImpl__positionOrderedViews = _.__LayoutManagerImpl__paintOrderedViews = $; _._viewsNeedPositionSort = _._viewsNeedPaintSort = _._drawAreaBoundsOutdated = true; }, LayoutManagerImpl_paintOrderedViews_closure: function LayoutManagerImpl_paintOrderedViews_closure() { }, LayoutManagerImpl_positionOrderedViews_closure: function LayoutManagerImpl_positionOrderedViews_closure() { }, LayoutManagerImpl_drawableLayoutAreaBounds_closure: function LayoutManagerImpl_drawableLayoutAreaBounds_closure() { }, LayoutManagerImpl_layout_closure: function LayoutManagerImpl_layout_closure(t0) { this.$this = t0; }, LayoutManagerImpl__viewsForPositions_closure: function LayoutManagerImpl__viewsForPositions_closure(t0, t1) { this.p1 = t0; this.p2 = t1; }, _MeasuredSizes: function _MeasuredSizes(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.leftWidth = t0; _.leftSizes = t1; _.rightWidth = t2; _.rightSizes = t3; _.topHeight = t4; _.topSizes = t5; _.bottomHeight = t6; _.bottomSizes = t7; }, SizeList: function SizeList(t0) { this._layout_margin_strategy$_sizes = t0; this._total = 0; }, _DesiredViewSizes: function _DesiredViewSizes(t0, t1) { this.preferredSizes = t0; this.minimumSizes = t1; }, VerticalMarginStrategy: function VerticalMarginStrategy() { }, VerticalMarginStrategy_measure_closure: function VerticalMarginStrategy_measure_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.fullHeight = t1; _.height = t2; _.measuredWidths = t3; }, LeftMarginLayoutStrategy: function LeftMarginLayoutStrategy() { }, LeftMarginLayoutStrategy_layout_closure: function LeftMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, RightMarginLayoutStrategy: function RightMarginLayoutStrategy() { }, RightMarginLayoutStrategy_layout_closure: function RightMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, HorizontalMarginStrategy: function HorizontalMarginStrategy() { }, HorizontalMarginStrategy_measure_closure: function HorizontalMarginStrategy_measure_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.fullWidth = t1; _.width = t2; _.measuredHeights = t3; }, TopMarginLayoutStrategy: function TopMarginLayoutStrategy() { }, TopMarginLayoutStrategy_layout_closure: function TopMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, BottomMarginLayoutStrategy: function BottomMarginLayoutStrategy() { }, BottomMarginLayoutStrategy_layout_closure: function BottomMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, LayoutViewConfig$(paintOrder, position, positionOrder) { return new A.LayoutViewConfig(paintOrder, position, positionOrder, B.C_ViewMargin); }, ViewMeasuredSizes$(preferredHeight, preferredWidth) { return new A.ViewMeasuredSizes(preferredWidth, preferredHeight, 0, 0); }, LayoutPosition: function LayoutPosition(t0, t1) { this.index = t0; this._core$_name = t1; }, ViewMargin: function ViewMargin() { }, LayoutViewConfig: function LayoutViewConfig(t0, t1, t2, t3) { var _ = this; _.paintOrder = t0; _.position = t1; _.positionOrder = t2; _.viewMargin = t3; }, ViewMeasuredSizes: function ViewMeasuredSizes(t0, t1, t2, t3) { var _ = this; _.preferredWidth = t0; _.preferredHeight = t1; _.minWidth = t2; _.minHeight = t3; }, LayoutView: function LayoutView() { }, LineRenderer_LineRenderer(config, rendererId, $D) { var t1, t2, _null = null; if (config == null) { t1 = new A.LineSymbolRenderer(4, true); t1 = new A.LineRendererConfig(t1, new A.RendererAttributes(A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), _null, _null, _null, B.C_ViewMargin, $D._eval$1("LineRendererConfig<0>")); } else t1 = config; t2 = A._setArrayType([], type$.JSArray_String); return new A.LineRenderer(t1, A.PointRenderer$(A.PointRendererConfig$(3.5, $D), _null, $D), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, $D._eval$1("List<_AnimatedElements<0>>")), t2, A.LayoutViewConfig$(20, B.LayoutPosition_8, 0), "line", t1.symbolRenderer, $D._eval$1("LineRenderer<0>")); }, _DatumPoint__DatumPoint$from(other, x, y, $D) { var t1 = other.datum, t2 = other.domain, t3 = other.series, t4 = other.index, t5 = x == null ? other.x : x, t6 = y == null ? other.y : y; return new A._DatumPoint(t1, t2, t3, t4, t5, t6, $D._eval$1("_DatumPoint<0>")); }, LineRenderer: function LineRenderer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.config = t0; _.__LineRenderer__pointRenderer = t1; _._line_renderer$_chart = null; _.__LineRenderer__hasMeasureBounds = $; _._seriesLineMap = t2; _._line_renderer$_currentKeys = t3; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t4; _.rendererId = t5; _.symbolRenderer = t6; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t7; }, LineRenderer_configureSeries_closure: function LineRenderer_configureSeries_closure(t0) { this.$this = t0; }, LineRenderer_configureSeries__closure: function LineRenderer_configureSeries__closure(t0, t1) { this.$this = t0; this.series = t1; }, LineRenderer_preprocessSeries_closure: function LineRenderer_preprocessSeries_closure(t0) { this.$this = t0; }, LineRenderer_preprocessSeries_closure0: function LineRenderer_preprocessSeries_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, LineRenderer_preprocessSeries__closure: function LineRenderer_preprocessSeries__closure(t0) { this.$this = t0; }, LineRenderer__mergeIntoSeriesMap_closure: function LineRenderer__mergeIntoSeriesMap_closure(t0, t1, t2) { this.$this = t0; this.seriesList = t1; this.newLineMap = t2; }, LineRenderer__mergeIntoSeriesMap__closure: function LineRenderer__mergeIntoSeriesMap__closure(t0, t1) { this.$this = t0; this.firstKey = t1; }, LineRenderer_update_closure: function LineRenderer_update_closure(t0, t1, t2) { this.$this = t0; this.previousPointList = t1; this.previousInitialPointList = t2; }, LineRenderer_update__closure: function LineRenderer_update__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.elementsList = t1; _.previousInitialPointList = t2; _.stackIndex = t3; _.series = t4; _.previousPointList = t5; }, LineRenderer_update___closure: function LineRenderer_update___closure(t0, t1) { this.$this = t0; this.styleKey = t1; }, LineRenderer_update_closure0: function LineRenderer_update_closure0(t0) { this.$this = t0; }, LineRenderer__createBoundsSegment_closure: function LineRenderer__createBoundsSegment_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.initializeFromZero = t1; _.measureAxis = t2; _.series = t3; }, LineRenderer__createBoundsSegment_closure0: function LineRenderer__createBoundsSegment_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.initializeFromZero = t1; _.measureAxis = t2; _.series = t3; }, LineRenderer_paint_closure: function LineRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, LineRenderer_paint__closure7: function LineRenderer_paint__closure7(t0) { this.$this = t0; }, LineRenderer_paint_closure0: function LineRenderer_paint_closure0(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, LineRenderer_paint__closure: function LineRenderer_paint__closure(t0) { this.$this = t0; }, LineRenderer_paint__closure0: function LineRenderer_paint__closure0(t0) { this.$this = t0; }, LineRenderer_paint__closure1: function LineRenderer_paint__closure1(t0, t1) { this.$this = t0; this.animationPercent = t1; }, LineRenderer_paint__closure2: function LineRenderer_paint__closure2(t0, t1) { this.$this = t0; this.canvas = t1; }, LineRenderer_paint__closure3: function LineRenderer_paint__closure3(t0) { this.$this = t0; }, LineRenderer_paint__closure4: function LineRenderer_paint__closure4(t0) { this.$this = t0; }, LineRenderer_paint__closure5: function LineRenderer_paint__closure5(t0, t1) { this.$this = t0; this.animationPercent = t1; }, LineRenderer_paint__closure6: function LineRenderer_paint__closure6(t0, t1) { this.$this = t0; this.canvas = t1; }, _DatumPoint: function _DatumPoint(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.index = t3; _.x = t4; _.y = t5; _.$ti = t6; }, _LineRendererElement: function _LineRendererElement(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.points = t0; _.color = t1; _.areaColor = t2; _.dashPattern = t3; _.domainExtent = t4; _.measureAxisPosition = t5; _.positionExtent = t6; _.strokeWidthPx = t7; _.styleKey = t8; _.roundEndCaps = t9; _.$ti = t10; }, _AnimatedLine: function _AnimatedLine(t0, t1, t2) { var _ = this; _.key = t0; _.overlaySeries = t1; _._previousLine = null; _.___AnimatedLine__targetLine = $; _._line_renderer$_currentLine = null; _.animatingOut = false; _.$ti = t2; }, _AreaRendererElement: function _AreaRendererElement(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.points = t0; _.color = t1; _.areaColor = t2; _.domainExtent = t3; _.measureAxisPosition = t4; _.positionExtent = t5; _.styleKey = t6; _.$ti = t7; }, _AnimatedArea: function _AnimatedArea(t0, t1, t2) { var _ = this; _.key = t0; _.overlaySeries = t1; _._previousArea = null; _.___AnimatedArea__targetArea = $; _._currentArea = null; _.animatingOut = false; _.$ti = t2; }, _AnimatedElements: function _AnimatedElements(t0, t1, t2, t3, t4, t5) { var _ = this; _.allPoints = t0; _.areas = t1; _.lines = t2; _.bounds = t3; _.styleKey = t4; _.$ti = t5; }, _Range: function _Range(t0, t1, t2) { this._line_renderer$_start = t0; this._line_renderer$_end = t1; this.$ti = t2; }, LineRendererConfig: function LineRendererConfig(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.symbolRenderer = t0; _.rendererAttributes = t1; _.paintOrder = t2; _.position = t3; _.positionOrder = t4; _.viewMargin = t5; _.$ti = t6; }, PointRenderer$(config, rendererId, $D) { var t1 = A.LinkedHashMap_LinkedHashMap(null, null, null, type$.String, $D._eval$1("List>")), t2 = A._setArrayType([], type$.JSArray_String), t3 = B.List_empty16; return new A.PointRenderer(config, t3, t1, t2, A.LayoutViewConfig$(25, B.LayoutPosition_8, 0), "point", new A.CircleSymbolRenderer(true), $D._eval$1("PointRenderer<0>")); }, DatumPoint_DatumPoint$from(other, x, xLower, xUpper, y, yLower, yUpper, $D) { var t1 = other.datum, t2 = other.domain, t3 = other.series, t4 = x == null ? other.x : x, t5 = xLower == null ? other.xLower : xLower, t6 = xUpper == null ? other.xUpper : xUpper, t7 = y == null ? other.y : y, t8 = yLower == null ? other.yLower : yLower, t9 = yUpper == null ? other.yUpper : yUpper; return new A.DatumPoint(t1, t2, t3, t5, t6, t8, t9, t4, t7, $D._eval$1("DatumPoint<0>")); }, PointRenderer: function PointRenderer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.config = t0; _.pointRendererDecorators = t1; _._point_renderer$_chart = null; _.seriesPointMap = t2; _._point_renderer$_currentKeys = t3; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t4; _.rendererId = t5; _.symbolRenderer = t6; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t7; }, PointRenderer_paint_closure: function PointRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, PointRenderer_paint__closure1: function PointRenderer_paint__closure1(t0) { this.$this = t0; }, PointRenderer_paint_closure0: function PointRenderer_paint_closure0(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, PointRenderer_paint__closure: function PointRenderer_paint__closure(t0, t1) { this.$this = t0; this.animationPercent = t1; }, PointRenderer_paint__closure0: function PointRenderer_paint__closure0(t0, t1, t2) { this.$this = t0; this.canvas = t1; this.animationPercent = t2; }, PointRenderer_paint___closure: function PointRenderer_paint___closure(t0) { this.$this = t0; }, PointRenderer_paint___closure0: function PointRenderer_paint___closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.point = t1; _.canvas = t2; _.animationPercent = t3; }, PointRenderer_paint___closure1: function PointRenderer_paint___closure1(t0) { this.$this = t0; }, PointRenderer_paint___closure2: function PointRenderer_paint___closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.point = t1; _.canvas = t2; _.animationPercent = t3; }, DatumPoint: function DatumPoint(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.xLower = t3; _.xUpper = t4; _.yLower = t5; _.yUpper = t6; _.x = t7; _.y = t8; _.$ti = t9; }, PointRendererConfig$(radiusPx, $D) { return new A.PointRendererConfig(new A.RendererAttributes(A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), radiusPx, null, null, null, B.C_ViewMargin, $D._eval$1("PointRendererConfig<0>")); }, PointRendererConfig: function PointRendererConfig(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.rendererAttributes = t0; _.radiusPx = t1; _.paintOrder = t2; _.position = t3; _.positionOrder = t4; _.viewMargin = t5; _.$ti = t6; }, TimeSeriesChart: function TimeSeriesChart(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.dateTimeFactory = t0; _.vertical = t1; _._domainAxis = null; _._newDomainAxis = t2; _._newPrimaryMeasureAxisSpec = _._primaryMeasureAxisSpec = _._newDomainAxisSpec = _._domainAxisSpec = null; _._primaryMeasureAxis = t3; _._newSecondaryMeasureAxisSpec = _._secondaryMeasureAxisSpec = null; _._secondaryMeasureAxis = t4; _._newDisjointMeasureAxesSpec = _._disjointMeasureAxesSpec = null; _._disjointMeasureAxes = t5; _._useSecondaryMeasureAxis = _._usePrimaryMeasureAxis = _.flipVerticalAxisOutput = false; _.__BaseChart_context = $; _.graphicsFactory = null; _._layoutManager = t6; _._chartHeight = _._chartWidth = null; _.transition = t7; _.animationPercent = 0; _._animationsTemporarilyDisabled = false; _.__BaseChart__originalSeriesList = $; _._currentSeriesList = null; _._usingRenderers = t8; _._rendererToSeriesList = null; _._seriesRenderers = t9; _._behaviorRoleMap = t10; _._behaviorStack = t11; _._behaviorTappableMap = t12; _._gestureProxy = t13; _._selectionModels = t14; _._lifecycleListeners = t15; }, Color$fromOther(color, lighter) { var t1 = color.r, t2 = color.g, t3 = color.b, t4 = color.a, t5 = color._darker; return new A.Color0(t1, t2, t3, t4, t5, lighter == null ? color._lighter : lighter); }, Color0: function Color0(t0, t1, t2, t3, t4, t5) { var _ = this; _.r = t0; _.g = t1; _.b = t2; _.a = t3; _._darker = t4; _._lighter = t5; }, LocalDateTimeFactory: function LocalDateTimeFactory() { }, GestureListener$(onDragEnd, onDragStart, onDragUpdate, onHover, onLongPress, onTap, onTapTest) { var t1 = onTapTest == null ? $.$get$GestureListener_defaultTapTest() : onTapTest, t2 = $.$get$GestureListener_defaultTapCancel(); return new A.GestureListener(t1, t2, onLongPress, onTap, onDragStart, onDragUpdate, onDragEnd); }, GestureListener: function GestureListener(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onTapTest = t0; _.onTapCancel = t1; _.onLongPress = t2; _.onTap = t3; _.onDragStart = t4; _.onDragUpdate = t5; _.onDragEnd = t6; }, GestureListener_defaultTapCancel_closure: function GestureListener_defaultTapCancel_closure() { }, GestureListener_defaultTapTest_closure: function GestureListener_defaultTapTest_closure() { }, MaterialPalette__orderedPalettes_closure: function MaterialPalette__orderedPalettes_closure() { }, MaterialPalette__orderedPalettes_closure0: function MaterialPalette__orderedPalettes_closure0() { }, MaterialPalette__orderedPalettes_closure1: function MaterialPalette__orderedPalettes_closure1() { }, MaterialPalette__orderedPalettes_closure2: function MaterialPalette__orderedPalettes_closure2() { }, MaterialPalette__orderedPalettes_closure3: function MaterialPalette__orderedPalettes_closure3() { }, MaterialPalette__orderedPalettes_closure4: function MaterialPalette__orderedPalettes_closure4() { }, MaterialPalette__orderedPalettes_closure5: function MaterialPalette__orderedPalettes_closure5() { }, MaterialPalette__orderedPalettes_closure6: function MaterialPalette__orderedPalettes_closure6() { }, MaterialPalette__orderedPalettes_closure7: function MaterialPalette__orderedPalettes_closure7() { }, MaterialPalette__orderedPalettes_closure8: function MaterialPalette__orderedPalettes_closure8() { }, MaterialPalette__orderedPalettes_closure9: function MaterialPalette__orderedPalettes_closure9() { }, MaterialPalette__orderedPalettes_closure10: function MaterialPalette__orderedPalettes_closure10() { }, MaterialBlue: function MaterialBlue() { }, MaterialRed: function MaterialRed() { }, MaterialYellow: function MaterialYellow() { }, MaterialGreen: function MaterialGreen() { }, MaterialPurple: function MaterialPurple() { }, MaterialCyan: function MaterialCyan() { }, MaterialDeepOrange: function MaterialDeepOrange() { }, MaterialLime: function MaterialLime() { }, MaterialIndigo: function MaterialIndigo() { }, MaterialPink: function MaterialPink() { }, MaterialTeal: function MaterialTeal() { }, withinBounds(value, lowerBound, upperBound) { return value + 2e-10 >= lowerBound && value - 2e-10 <= upperBound; }, NullablePointsToPoints_toPoints(_this) { var t2, t3, _i, nullablePoint, t4, t5, t1 = A._setArrayType([], type$.JSArray_Point_double); for (t2 = _this.length, t3 = type$.Point_double, _i = 0; _i < _this.length; _this.length === t2 || (0, A.throwConcurrentModificationError)(_this), ++_i) { nullablePoint = _this[_i]; t4 = nullablePoint.x; if (t4 != null && nullablePoint.y != null) { t4.toString; t5 = nullablePoint.y; t5.toString; t1.push(new A.Point(t4, t5, t3)); } } return t1; }, NullablePoint: function NullablePoint(t0, t1) { this.x = t0; this.y = t1; }, Palette: function Palette() { }, Performance_time_closure: function Performance_time_closure() { }, Performance_timeEnd_closure: function Performance_timeEnd_closure() { }, ProxyGestureListener: function ProxyGestureListener(t0, t1) { this._proxy_gesture_listener$_listeners = t0; this._activeListeners = t1; }, ProxyGestureListener_onLongPress_closure: function ProxyGestureListener_onLongPress_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onTap_closure: function ProxyGestureListener_onTap_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onDragStart_closure: function ProxyGestureListener_onDragStart_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onDragUpdate_closure: function ProxyGestureListener_onDragUpdate_closure(t0, t1) { this.localPosition = t0; this.scale = t1; }, ProxyGestureListener_onDragEnd_closure: function ProxyGestureListener_onDragEnd_closure(t0, t1, t2) { this.localPosition = t0; this.scale = t1; this.pixelsPerSecond = t2; }, ProxyGestureListener__cancel_closure: function ProxyGestureListener__cancel_closure(t0) { this.keep = t0; }, ProxyGestureListener__populateActiveListeners_closure: function ProxyGestureListener__populateActiveListeners_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.localPosition = t2; }, MaterialStyle: function MaterialStyle() { }, StyleFactory: function StyleFactory() { }, BaseSymbolRenderer: function BaseSymbolRenderer() { }, SymbolRenderer: function SymbolRenderer() { }, RoundedRectSymbolRenderer: function RoundedRectSymbolRenderer(t0, t1) { this.radius = t0; this.isSolid = t1; }, LineSymbolRenderer: function LineSymbolRenderer(t0, t1) { this.strokeWidth = t0; this.isSolid = t1; }, CircleSymbolRenderer: function CircleSymbolRenderer(t0) { this.isSolid = t0; }, TextDirection0: function TextDirection0(t0, t1) { this.index = t0; this._core$_name = t1; }, MaxWidthStrategy: function MaxWidthStrategy(t0, t1) { this.index = t0; this._core$_name = t1; }, TextMeasurement: function TextMeasurement(t0, t1) { this.horizontalSliceWidth = t0; this.verticalSliceWidth = t1; }, TypedRegistry: function TypedRegistry() { }, TypedKey: function TypedKey() { }, Series_Series(colorFn, data, displayName, domainFn, id, measureFn, strokeWidthPxFn, $T, $D) { var _null = null, _strokeWidthPxFn = strokeWidthPxFn == null ? _null : new A.Series_Series_closure(strokeWidthPxFn, data); return new A.Series(id, displayName, false, _null, _null, data, _null, new A.Series_Series_closure0(domainFn, data, $D), _null, _null, _null, new A.Series_Series_closure1(measureFn, data), _null, _null, _null, _null, _null, new A.Series_Series_closure2(colorFn, data), _null, _null, _null, _null, _null, _strokeWidthPxFn, _null, _null, _null, new A.SeriesAttributes(A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), $T._eval$1("@<0>")._bind$1($D)._eval$1("Series<1,2>")); }, Series: function Series(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28) { var _ = this; _.id = t0; _.displayName = t1; _.overlaySeries = t2; _.seriesCategory = t3; _.seriesColor = t4; _.data = t5; _.keyFn = t6; _.domainFn = t7; _.domainFormatterFn = t8; _.domainLowerBoundFn = t9; _.domainUpperBoundFn = t10; _.measureFn = t11; _.measureFormatterFn = t12; _.measureLowerBoundFn = t13; _.measureUpperBoundFn = t14; _.measureOffsetFn = t15; _.areaColorFn = t16; _.colorFn = t17; _.dashPatternFn = t18; _.fillColorFn = t19; _.patternColorFn = t20; _.fillPatternFn = t21; _.radiusPxFn = t22; _.strokeWidthPxFn = t23; _.labelAccessorFn = t24; _.insideLabelStyleAccessorFn = t25; _.outsideLabelStyleAccessorFn = t26; _.attributes = t27; _.$ti = t28; }, Series_Series_closure0: function Series_Series_closure0(t0, t1, t2) { this.domainFn = t0; this.data = t1; this.D = t2; }, Series_Series_closure1: function Series_Series_closure1(t0, t1) { this.measureFn = t0; this.data = t1; }, Series_Series_closure2: function Series_Series_closure2(t0, t1) { this.colorFn = t0; this.data = t1; }, Series_Series_closure: function Series_Series_closure(t0, t1) { this.strokeWidthPxFn = t0; this.data = t1; }, AttributeKey: function AttributeKey(t0, t1) { this.uniqueKey = t0; this.$ti = t1; }, SeriesAttributes: function SeriesAttributes(t0) { this._registry = t0; }, BarChart: function BarChart(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.domainAxis = t0; _.primaryMeasureAxis = t1; _.secondaryMeasureAxis = t2; _.disjointMeasureAxes = t3; _.flipVerticalAxis = t4; _.seriesList = t5; _.animate = t6; _.animationDuration = t7; _.layoutConfig = t8; _.defaultRenderer = t9; _.defaultInteractions = t10; _.behaviors = t11; _.selectionModels = t12; _.customSeriesRenderers = t13; _.rtlSpec = t14; _.userManagedState = t15; _.key = t16; }, BaseChart: function BaseChart() { }, BaseChart__updateBehaviors_closure: function BaseChart__updateBehaviors_closure(t0, t1) { this.$this = t0; this.behaviorList = t1; }, BaseChart__updateBehaviors_closure0: function BaseChart__updateBehaviors_closure0(t0, t1, t2) { this.$this = t0; this.chartState = t1; this.chart = t2; }, BaseChart__notACustomBehavior_closure: function BaseChart__notACustomBehavior_closure(t0) { this.behavior = t0; }, BaseChart__updateSelectionModel_closure: function BaseChart__updateSelectionModel_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.chart = t1; _.chartState = t2; _.prevTypes = t3; }, BaseChart__updateSelectionModel_closure0: function BaseChart__updateSelectionModel_closure0(t0, t1) { this.chart = t0; this.chartState = t1; }, BaseChart_getDesiredGestures_closure: function BaseChart_getDesiredGestures_closure(t0) { this.types = t0; }, BaseChart_getDesiredGestures_closure0: function BaseChart_getDesiredGestures_closure0(t0) { this.types = t0; }, BaseChartState: function BaseChartState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.__BaseChartState__animationController = $; _._animationValue = 0; _._chartGestureDetector = _._oldWidget = null; _._configurationChanged = false; _.autoBehaviorWidgets = t0; _.addedBehaviorWidgets = t1; _.addedCommonBehaviorsByRole = t2; _.addedSelectionChangedListenersByType = t3; _.addedSelectionUpdatedListenersByType = t4; _._behaviorAnimationControllers = t5; _.TickerProviderStateMixin__tickers = t6; _.TickerProviderStateMixin__tickerModeNotifier = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; _.$ti = t9; }, BaseChartState_requestRebuild_closure: function BaseChartState_requestRebuild_closure() { }, BaseChartState_build_closure: function BaseChartState_build_closure(t0, t1, t2) { this.idAndBehaviorMap = t0; this.context = t1; this.chartWidgets = t2; }, BaseChartState_dispose_closure: function BaseChartState_dispose_closure() { }, BaseChartState__animationTick_closure: function BaseChartState__animationTick_closure(t0) { this.$this = t0; }, _BaseChartState_State_TickerProviderStateMixin: function _BaseChartState_State_TickerProviderStateMixin() { }, ChartBehavior: function ChartBehavior() { }, GestureType: function GestureType(t0, t1) { this.index = t0; this._core$_name = t1; }, DomainHighlighter: function DomainHighlighter(t0, t1) { this.desiredGestures = t0; this.$ti = t1; }, BaseLegendContentBuilder: function BaseLegendContentBuilder() { }, BaseLegendContentBuilder_build_closure: function BaseLegendContentBuilder_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.legend = t1; _.context = t2; _.showMeasures = t3; }, TabularLegendContentBuilder: function TabularLegendContentBuilder(t0, t1) { this.legendEntryLayout = t0; this.legendLayout = t1; }, SimpleLegendEntryLayout: function SimpleLegendEntryLayout() { }, SimpleLegendEntryLayout_makeTapUpCallback_closure: function SimpleLegendEntryLayout_makeTapUpCallback_closure(t0, t1) { this.legend = t0; this.legendEntry = t1; }, TabularLegendLayout_TabularLegendLayout$horizontalFirst(cellPadding, desiredMaxColumns) { return new A.TabularLegendLayout(true, -1, -1, cellPadding); }, TabularLegendLayout: function TabularLegendLayout(t0, t1, t2, t3) { var _ = this; _.isHorizontalFirst = t0; _.desiredMaxRows = t1; _.desiredMaxColumns = t2; _.cellPadding = t3; }, TabularLegendLayout_build_closure: function TabularLegendLayout_build_closure(t0) { this.$this = t0; }, TabularLegendLayout__buildTableFromRows_closure: function TabularLegendLayout__buildTableFromRows_closure() { }, TabularLegendLayout__buildTableFromRows_closure0: function TabularLegendLayout__buildTableFromRows_closure0() { }, TabularLegendLayout__buildTableFromRows_closure1: function TabularLegendLayout__buildTableFromRows_closure1(t0) { this.padWidget = t0; }, SeriesLegend: function SeriesLegend(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.desiredGestures = t0; _.selectionModelType = t1; _.contentBuilder = t2; _.position = t3; _.outsideJustification = t4; _.insideJustification = t5; _.showMeasures = t6; _.legendDefaultMeasure = t7; _.measureFormatter = t8; _.secondaryMeasureFormatter = t9; _.entryTextStyle = t10; _.defaultHiddenSeries = t11; _.$ti = t12; }, _FlutterSeriesLegend: function _FlutterSeriesLegend(t0, t1, t2, t3, t4, t5) { var _ = this; _.config = t0; _._hiddenSeriesList = t1; _._defaultHiddenSeries = null; _.selectionModelType = t2; _.legendState = t3; _.legendEntryGenerator = t4; _.__Legend__lifecycleListener = _.__Legend__chart = $; _._legend$_drawAreaBounds = _._legend$_componentBounds = null; _.__Legend__currentSeriesList = $; _._postProcessSeriesList = null; _.$ti = t5; }, _FlutterSeriesLegend_build_closure: function _FlutterSeriesLegend_build_closure(t0) { this.$this = t0; }, LinePointHighlighter: function LinePointHighlighter(t0, t1) { this.desiredGestures = t0; this.$ti = t1; }, SelectNearest: function SelectNearest(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.desiredGestures = t0; _.selectionModelType = t1; _.eventTrigger = t2; _.selectionMode = t3; _.selectClosestSeries = t4; _.maximumDomainDistancePx = t5; _.$ti = t6; }, LinePainter_draw(canvas, clipBounds, dashPattern, fill, paint, points, roundEndCaps, shader, stroke, strokeWidthPx) { var t1, t2, t3, point, t4; if (points.length === 0) return; t1 = clipBounds != null; if (t1) { canvas.save$0(0); t2 = clipBounds.left; t2.toString; t3 = clipBounds.top; t3.toString; canvas.clipRect$1(0, new A.Rect(t2, t3, t2 + clipBounds.width, t3 + clipBounds.height)); } paint.set$color(0, A.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); if (shader != null) paint.set$shader(shader); if (points.length === 1) { point = B.JSArray_methods.get$first(points); paint.set$style(0, B.PaintingStyle_0); t2 = point.x; t2.toString; t3 = point.y; t3.toString; t4 = strokeWidthPx == null ? 0 : strokeWidthPx; canvas.drawCircle$3(0, new A.Offset(t2, t3), t4, paint); } else { if (strokeWidthPx != null) paint.set$strokeWidth(strokeWidthPx); paint.set$strokeJoin(B.StrokeJoin_1); paint.set$style(0, B.PaintingStyle_1); if (dashPattern == null || J.get$isEmpty$asx(dashPattern)) { if (roundEndCaps === true) paint.set$strokeCap(B.StrokeCap_1); A.LinePainter__drawSolidLine(canvas, paint, points); } else A.LinePainter__drawDashedLine(canvas, paint, points, dashPattern); } if (t1) canvas.restore$0(0); }, LinePainter__drawSolidLine(canvas, paint, points) { var t2, _i, point, t3, path = A.Path_Path(), t1 = B.JSArray_methods.get$first(points).x; t1.toString; t2 = B.JSArray_methods.get$first(points).y; t2.toString; path.moveTo$2(0, t1, t2); for (t1 = points.length, _i = 0; _i < points.length; points.length === t1 || (0, A.throwConcurrentModificationError)(points), ++_i) { point = points[_i]; t2 = point.x; t2.toString; t3 = point.y; t3.toString; path.lineTo$2(0, t2, t3); } canvas.drawPath$2(0, path, paint); }, LinePainter__drawDashedLine(canvas, paint, points, dashPattern) { var t1, t2, previousSeriesPoint, getNextDashPatternSegment, remainder, solid, remainderPoints, pointIndex, t3, t4, seriesPoint, d, previousPoint, dashSegment, t5, t6, t7, t8, t9, t10, t11, distance, nextPoint, path, _i, p, _box_0 = {}, localDashPattern = A.List_List$from(dashPattern, true, type$.dynamic); if (B.JSInt_methods.$mod(J.get$length$asx(dashPattern), 2) === 1) B.JSArray_methods.addAll$1(localDashPattern, dashPattern); t1 = B.JSArray_methods.get$first(points); t2 = t1.x; t2.toString; t1 = t1.y; t1.toString; previousSeriesPoint = new A.Offset(t2, t1); _box_0.dashPatternIndex = 0; getNextDashPatternSegment = new A.LinePainter__drawDashedLine_closure(_box_0, localDashPattern); for (t1 = type$.JSArray_Offset, t2 = type$.Point_double, remainder = 0, solid = true, remainderPoints = null, pointIndex = 1; pointIndex < points.length; ++pointIndex, previousSeriesPoint = seriesPoint) { t3 = points[pointIndex]; t4 = t3.x; t4.toString; t3 = t3.y; t3.toString; seriesPoint = new A.Offset(t4, t3); if (!previousSeriesPoint.$eq(0, seriesPoint)) { d = new A.Point(previousSeriesPoint._dx, previousSeriesPoint._dy, t2).distanceTo$1(new A.Point(t4, t3, t2)); for (previousPoint = previousSeriesPoint; d > 0; previousPoint = nextPoint, remainder = 0) { dashSegment = remainder > 0 ? remainder : getNextDashPatternSegment.call$0(); t5 = previousPoint._dx; t6 = t4 - t5; t7 = previousPoint._dy; t8 = t3 - t7; t9 = t6 * t6 + t8 * t8; t10 = Math.sqrt(t9); t9 = Math.sqrt(t9); t11 = d < dashSegment; distance = t11 ? d : B.JSNumber_methods.toDouble$0(dashSegment); t6 = t5 + t6 / t10 * distance; t9 = t7 + t8 / t9 * distance; nextPoint = new A.Offset(t6, t9); if (solid) if (remainderPoints != null) { remainderPoints.push(new A.Offset(t6, t9)); path = A.Path_Path(); path.moveTo$2(0, B.JSArray_methods.get$first(remainderPoints)._dx, B.JSArray_methods.get$first(remainderPoints)._dy); for (t5 = remainderPoints.length, _i = 0; _i < remainderPoints.length; remainderPoints.length === t5 || (0, A.throwConcurrentModificationError)(remainderPoints), ++_i) { p = remainderPoints[_i]; path.lineTo$2(0, p.get$dx(p), p.get$dy(p)); } canvas.drawPath$2(0, path, paint); remainderPoints = null; } else if (t11 && pointIndex < points.length - 1) remainderPoints = A._setArrayType([new A.Offset(t5, t7), new A.Offset(t6, t9)], t1); else canvas.drawLine$3(0, previousPoint, nextPoint, paint); solid = !solid; d -= dashSegment; } remainder = -B.JSNumber_methods.round$0(d); if (remainder > 0) solid = !solid; } } }, LinePainter__drawDashedLine_closure: function LinePainter__drawDashedLine_closure(t0, t1) { this._box_0 = t0; this.localDashPattern = t1; }, CartesianChart0: function CartesianChart0() { }, ChartCanvas: function ChartCanvas(t0, t1) { this.canvas = t0; this._chart_canvas$_paint = t1; }, ChartContainerCustomPaint_ChartContainerCustomPaint(a11yNodes, chart, exploreMode, oldPainter, textDirection) { var t1; if (oldPainter != null) t1 = oldPainter.a11yNodes === a11yNodes && oldPainter.textDirection === textDirection; else t1 = false; if (t1) return oldPainter; else return new A.ChartContainerCustomPaint(chart, false, a11yNodes, textDirection, null); }, ChartContainer: function ChartContainer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.chartWidget = t0; _.oldChartWidget = t1; _.chartState = t2; _.animationValue = t3; _.rtl = t4; _.rtlSpec = t5; _.userManagedState = t6; _.painter = t7; _.foregroundPainter = t8; _.size = t9; _.child = t10; _.key = t11; _.$ti = t12; }, ChartContainerRenderObject: function ChartContainerRenderObject(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._seriesList = _._chart_container$_chart = null; _.__ChartContainerRenderObject__chartState = $; _._chartContainerIsRtl = false; _._a11yNodes = _._dateTimeFactory = _._rtlSpec = null; _._painter = t0; _._foregroundPainter = t1; _._preferredSize = t2; _.isComplex = t3; _.willChange = t4; _._foregroundSemanticsNodes = _._backgroundSemanticsNodes = _._foregroundSemanticsBuilder = _._backgroundSemanticsBuilder = null; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t7; }, ChartContainerRenderObject_requestAnimation_startAnimationController: function ChartContainerRenderObject_requestAnimation_startAnimationController(t0, t1) { this.$this = t0; this.transition = t1; }, ChartContainerRenderObject_requestRebuild_doRebuild: function ChartContainerRenderObject_requestRebuild_doRebuild(t0) { this.$this = t0; }, ChartContainerCustomPaint: function ChartContainerCustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.chart = t0; _.exploreMode = t1; _.a11yNodes = t2; _.textDirection = t3; _._repaint = t4; }, ChartGestureDetector: function ChartGestureDetector() { var _ = this; _._isDragging = _._listeningForLongPress = false; _._lastScale = _._lastTapPoint = _._longPressTimer = null; _.__ChartGestureDetector__containerResolver = $; }, ChartGestureDetector_makeWidget_closure: function ChartGestureDetector_makeWidget_closure(t0) { this.context = t0; }, ChartGestureDetector_onTapDown_closure: function ChartGestureDetector_onTapDown_closure(t0) { this.$this = t0; }, GraphicsFactory: function GraphicsFactory(t0, t1) { this.textScaleFactor = t0; this.defaultTextStyle = t1; }, LineStyle: function LineStyle() { this.dashPattern = this.color = null; this.strokeWidth = 0; }, SelectionModelConfig: function SelectionModelConfig(t0, t1, t2) { this.type = t0; this.changedListener = t1; this.$ti = t2; }, SymbolRendererCanvas: function SymbolRendererCanvas(t0, t1) { this.commonSymbolRenderer = t0; this.dashPattern = t1; }, _SymbolCustomPaint: function _SymbolCustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.context = t0; _.symbolRenderer = t1; _.color = t2; _.dashPattern = t3; _._repaint = t4; }, TextElement0: function TextElement0(t0, t1, t2) { var _ = this; _.text = t0; _.textScaleFactor = t1; _._painterReady = false; _._text_element$_textStyle = null; _._text_element$_textDirection = t2; _._maxWidthStrategy = _._text_element$_maxWidth = null; _.__TextElement__measurement = _.__TextElement__textPainter = $; _._text_element$_opacity = null; }, TextStyle0: function TextStyle0() { var _ = this; _.fontWeight = _.lineHeight = _.color = _.fontFamily = _.fontSize = null; }, TimeSeriesChart$(seriesList, animate, behaviors, domainAxis, primaryMeasureAxis, selectionModels) { var _null = null; return new A.TimeSeriesChart0(domainAxis, primaryMeasureAxis, _null, _null, _null, seriesList, true, B.Duration_300000, _null, _null, true, behaviors, selectionModels, _null, _null, _null, _null); }, TimeSeriesChart0: function TimeSeriesChart0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.domainAxis = t0; _.primaryMeasureAxis = t1; _.secondaryMeasureAxis = t2; _.disjointMeasureAxes = t3; _.flipVerticalAxis = t4; _.seriesList = t5; _.animate = t6; _.animationDuration = t7; _.layoutConfig = t8; _.defaultRenderer = t9; _.defaultInteractions = t10; _.behaviors = t11; _.selectionModels = t12; _.customSeriesRenderers = t13; _.rtlSpec = t14; _.userManagedState = t15; _.key = t16; }, getChartContainerRenderObject(box) { return type$.ChartContainerRenderObject_dynamic._as(type$.RenderPointerListener._as(type$.RenderSemanticsGestureHandler._as(B.JSArray_methods.firstWhere$1(type$.RenderCustomMultiChildLayoutBox._as(box).getChildrenAsList$0(), new A.getChartContainerRenderObject_closure())).RenderObjectWithChildMixin__child).RenderObjectWithChildMixin__child); }, getChartContainerRenderObject_closure: function getChartContainerRenderObject_closure() { }, WidgetLayoutDelegate: function WidgetLayoutDelegate(t0, t1, t2) { var _ = this; _.chartID = t0; _.isRTL = t1; _.idAndBehavior = t2; _._debugChildrenNeedingLayout = _._idToChild = null; }, _HorizontalJustification: function _HorizontalJustification(t0, t1) { this.index = t0; this._core$_name = t1; }, Clock: function Clock() { }, CanonicalizedMap: function CanonicalizedMap() { }, CanonicalizedMap_addAll_closure: function CanonicalizedMap_addAll_closure(t0) { this.$this = t0; }, CanonicalizedMap_entries_closure: function CanonicalizedMap_entries_closure(t0) { this.$this = t0; }, CanonicalizedMap_forEach_closure: function CanonicalizedMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, CanonicalizedMap_keys_closure: function CanonicalizedMap_keys_closure(t0) { this.$this = t0; }, CanonicalizedMap_map_closure: function CanonicalizedMap_map_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.transform = t1; _.K2 = t2; _.V2 = t3; }, CanonicalizedMap_putIfAbsent_closure: function CanonicalizedMap_putIfAbsent_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.ifAbsent = t2; }, CanonicalizedMap_values_closure: function CanonicalizedMap_values_closure(t0) { this.$this = t0; }, DefaultEquality: function DefaultEquality(t0) { this.$ti = t0; }, IterableEquality: function IterableEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, ListEquality: function ListEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, _UnorderedEquality: function _UnorderedEquality() { }, UnorderedIterableEquality: function UnorderedIterableEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, SetEquality: function SetEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, _MapEntry: function _MapEntry(t0, t1, t2) { this.equality = t0; this.key = t1; this.value = t2; }, MapEquality: function MapEquality(t0, t1, t2) { this._keyEquality = t0; this._valueEquality = t1; this.$ti = t2; }, DeepCollectionEquality: function DeepCollectionEquality(t0) { this._unordered = t0; }, HeapPriorityQueue: function HeapPriorityQueue(t0, t1, t2) { var _ = this; _.comparison = t0; _._priority_queue$_queue = t1; _._priority_queue$_modificationCount = _._priority_queue$_length = 0; _.$ti = t2; }, XFileBase: function XFileBase() { }, XFile$(path, lastModified, $length, mimeType, $name) { var t1; if (lastModified == null) A.DateTime$fromMillisecondsSinceEpoch(0, false); t1 = $name == null ? "" : $name; return new A.XFile(mimeType, t1, path, $length); }, XFile: function XFile(t0, t1, t2, t3) { var _ = this; _._mimeType = t0; _._html1$_name = t1; _.__XFile__path = t2; _._html1$_length = t3; _._browserBlob = null; }, _escapeString(text, single) { var t1, t2, result, i, replace, t3, _null = null; for (t1 = text.length, t2 = !single, result = _null, i = 0; i < t1; ++i) { switch (B.JSString_methods._codeUnitAt$1(text, i)) { case 34: replace = t2 ? '\\"' : _null; break; case 39: replace = single ? "\\'" : _null; break; default: replace = _null; } t3 = replace == null; if (!t3 && result == null) result = new A.StringBuffer(B.JSString_methods.substring$2(text, 0, i)); if (result != null) result._contents += t3 ? text[i] : replace; } if (result == null) t1 = text; else { t1 = result._contents; t1 = t1.charCodeAt(0) == 0 ? t1 : t1; } return t1; }, TokenKind_matchList(identList, tokenField, text, offset, $length) { var t1, _i, entry, ident, t2, idx, match, i, identChar, idx0, char, t3; for (t1 = identList.length, _i = 0; _i < t1; ++_i) { entry = identList[_i]; ident = A._asStringS(entry.$index(0, "value")); t2 = ident.length; if ($length === t2) { for (idx = offset, match = true, i = 0; i < t2; ++i, idx = idx0) { identChar = B.JSString_methods._codeUnitAt$1(ident, i); idx0 = idx + 1; char = B.JSString_methods.codeUnitAt$1(text, idx); if (match) if (char !== identChar) { t3 = char >= 65 && char <= 90 && char + 32 === identChar; match = t3; } else match = true; else match = false; if (!match) break; } if (match) return A._asIntS(entry.$index(0, tokenField)); } } return -1; }, TokenKind_unitToString(unitTokenToFind) { var _i, entry; if (unitTokenToFind === 24) return "%"; else for (_i = 0; _i < 26; ++_i) { entry = B.List_UJh[_i]; if (A._asIntS(entry.$index(0, "unit")) == unitTokenToFind) return A._asStringQ(entry.$index(0, "value")); } return ""; }, TokenKind_kindToString(kind) { switch (kind) { case 0: return "ERROR"; case 1: return "end of file"; case 2: return "("; case 3: return ")"; case 4: return "["; case 5: return "]"; case 6: return "{"; case 7: return "}"; case 8: return "."; case 9: return ";"; case 10: return "@"; case 11: return "#"; case 12: return "+"; case 13: return ">"; case 14: return "~"; case 15: return "*"; case 16: return "|"; case 17: return ":"; case 18: return "_"; case 19: return ","; case 20: return " "; case 21: return "\t"; case 22: return "\n"; case 23: return "\r"; case 24: return "%"; case 25: return "'"; case 26: return '"'; case 27: return "/"; case 28: return "="; case 30: return "^"; case 31: return "$"; case 32: return "<"; case 33: return "!"; case 34: return "-"; case 35: return "\\"; default: throw A.wrapException("Unknown TOKEN"); } }, TokenKind_isKindIdentifier(kind) { switch (kind) { case 641: case 642: case 643: case 644: case 645: case 646: case 647: case 648: case 649: case 650: case 651: case 652: case 653: case 654: case 655: case 656: case 600: case 601: case 602: case 603: case 604: case 605: case 606: case 607: case 608: case 609: case 610: case 612: case 613: case 614: case 615: case 617: return true; default: return false; } }, TokenizerHelpers_isIdentifierStartExpr(c) { var t1; if (!(c >= 97 && c <= 122)) t1 = c >= 65 && c <= 90 || c === 95 || c >= 160 || c === 92; else t1 = true; return t1; }, _Parser: function _Parser(t0) { this.tokenizer = t0; this._previousToken = null; this.___Parser__peekToken = $; }, Token: function Token(t0, t1) { this.kind = t0; this.span = t1; }, IdentifierToken: function IdentifierToken(t0, t1, t2) { this.text = t0; this.kind = t1; this.span = t2; }, Tokenizer: function Tokenizer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.UNICODE_U = t0; _.UNICODE_LOWER_U = t1; _.UNICODE_PLUS = t2; _.QUESTION_MARK = t3; _.CDATA_NAME = t4; _._file = t5; _._parser0$_text = t6; _._inString = t7; _.inSelector = _.inSelectorExpression = false; _._parser0$_index = t8; _._parser0$_startIndex = 0; }, TokenizerBase: function TokenizerBase() { }, MessageLevel: function MessageLevel(t0, t1) { this.index = t0; this._core$_name = t1; }, Message: function Message(t0, t1, t2, t3) { var _ = this; _.level = t0; _.message = t1; _.span = t2; _.useColors = t3; }, Messages: function Messages(t0, t1, t2) { this.printHandler = t0; this.options = t1; this.messages = t2; }, PreprocessorOptions$(inputFile, useColors) { return new A.PreprocessorOptions(useColors); }, PreprocessorOptions: function PreprocessorOptions(t0) { this.useColors = t0; }, Identifier: function Identifier(t0, t1) { this.name = t0; this.span = t1; }, Wildcard: function Wildcard(t0) { this.span = t0; }, ThisOperator: function ThisOperator(t0) { this.span = t0; }, Negation: function Negation(t0) { this.span = t0; }, SelectorGroup: function SelectorGroup(t0, t1) { this.selectors = t0; this.span = t1; }, Selector: function Selector(t0, t1) { this.simpleSelectorSequences = t0; this.span = t1; }, SimpleSelectorSequence: function SimpleSelectorSequence(t0, t1, t2) { this.combinator = t0; this.simpleSelector = t1; this.span = t2; }, SimpleSelector: function SimpleSelector() { }, ElementSelector: function ElementSelector(t0, t1) { this._visitor$_name = t0; this.span = t1; }, NamespaceSelector: function NamespaceSelector(t0, t1, t2) { this._namespace = t0; this._visitor$_name = t1; this.span = t2; }, AttributeSelector: function AttributeSelector(t0, t1, t2, t3) { var _ = this; _._op = t0; _.value = t1; _._visitor$_name = t2; _.span = t3; }, IdSelector: function IdSelector(t0, t1) { this._visitor$_name = t0; this.span = t1; }, ClassSelector: function ClassSelector(t0, t1) { this._visitor$_name = t0; this.span = t1; }, PseudoClassSelector: function PseudoClassSelector(t0, t1) { this._visitor$_name = t0; this.span = t1; }, PseudoElementSelector: function PseudoElementSelector(t0, t1, t2) { this.isLegacy = t0; this._visitor$_name = t1; this.span = t2; }, PseudoClassFunctionSelector: function PseudoClassFunctionSelector(t0, t1, t2) { this.argument = t0; this._visitor$_name = t1; this.span = t2; }, PseudoElementFunctionSelector: function PseudoElementFunctionSelector(t0, t1, t2) { this.isLegacy = t0; this._visitor$_name = t1; this.span = t2; }, SelectorExpression: function SelectorExpression(t0, t1) { this.expressions = t0; this.span = t1; }, NegationSelector: function NegationSelector(t0, t1, t2) { this.negationArg = t0; this._visitor$_name = t1; this.span = t2; }, OperatorPlus: function OperatorPlus(t0) { this.span = t0; }, OperatorMinus: function OperatorMinus(t0) { this.span = t0; }, LiteralTerm: function LiteralTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, NumberTerm: function NumberTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, UnitTerm: function UnitTerm() { }, LengthTerm: function LengthTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, PercentageTerm: function PercentageTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, EmTerm: function EmTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, ExTerm: function ExTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, AngleTerm: function AngleTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, TimeTerm: function TimeTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, FreqTerm: function FreqTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, FractionTerm: function FractionTerm(t0, t1, t2) { this.value = t0; this.text = t1; this.span = t2; }, ResolutionTerm: function ResolutionTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, ChTerm: function ChTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, RemTerm: function RemTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, ViewportTerm: function ViewportTerm(t0, t1, t2, t3) { var _ = this; _.unit = t0; _.value = t1; _.text = t2; _.span = t3; }, TreeNode: function TreeNode() { }, Expression: function Expression() { }, Visitor: function Visitor() { }, Clock0: function Clock0() { }, _RealtimeClock: function _RealtimeClock() { }, MemoryDirectory: function MemoryDirectory(t0, t1) { this.fileSystem = t0; this.path = t1; }, MemoryDirectory_createSync_closure: function MemoryDirectory_createSync_closure(t0) { this.recursive = t0; }, MemoryDirectory_createTempSync_closure: function MemoryDirectory_createTempSync_closure(t0) { this.dirname = t0; }, MemoryDirectory_createTempSync_closure0: function MemoryDirectory_createTempSync_closure0(t0) { this.dirname = t0; }, MemoryDirectory_createTempSync_name: function MemoryDirectory_createTempSync_name(t0, t1) { this._box_0 = t0; this.basename = t1; }, _MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin: function _MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin() { }, _FileSink__FileSink$fromFile(file, mode, encoding) { var e, exception, t2, future, t1 = {}, node = A._Cell$named("node"); t1.deferredException = null; try { node.__late_helper$_value = file.get$_resolvedBackingOrCreate(); } catch (exception) { t2 = A.unwrapException(exception); if (type$.Exception._is(t2)) { e = t2; t1.deferredException = e; } else throw exception; } future = A.Future_Future$microtask(new A._FileSink__FileSink$fromFile_closure(t1, file, node, mode), type$.FileNode); return new A._FileSink(new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void), future, encoding); }, MemoryFile: function MemoryFile(t0, t1) { this.fileSystem = t0; this.path = t1; }, MemoryFile__resolvedBackingOrCreate_closure: function MemoryFile__resolvedBackingOrCreate_closure(t0) { this.$this = t0; }, MemoryFile__resolvedBackingOrCreate_closure0: function MemoryFile__resolvedBackingOrCreate_closure0(t0) { this.$this = t0; }, MemoryFile__doCreate_closure: function MemoryFile__doCreate_closure(t0) { this.recursive = t0; }, _FileSink: function _FileSink(t0, t1, t2) { var _ = this; _._memory_file$_completer = t0; _._pendingWrites = t1; _._streamCompleter = null; _._isClosed = false; _.encoding = t2; }, _FileSink__FileSink$fromFile_closure: function _FileSink__FileSink$fromFile_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.file = t1; _.node = t2; _.mode = t3; }, _FileSink_addStream_finish: function _FileSink_addStream_finish(t0) { this.$this = t0; }, _FileSink_addStream_closure: function _FileSink_addStream_closure(t0) { this.$this = t0; }, _FileSink_addStream_closure0: function _FileSink_addStream_closure0(t0, t1) { this.$this = t0; this.finish = t1; }, _FileSink_close_closure: function _FileSink_close_closure(t0) { this.$this = t0; }, _FileSink_close_closure0: function _FileSink_close_closure0(t0) { this.$this = t0; }, _FileSink__addData_closure: function _FileSink__addData_closure(t0) { this.data = t0; }, MemoryFileStat: function MemoryFileStat(t0, t1) { this.type = t0; this.size = t1; }, _defaultOpHandle(context, operation) { }, _MemoryFileSystem: function _MemoryFileSystem(t0, t1, t2, t3) { var _ = this; _._systemTemp = _._memory_file_system$_root = null; _._memory_file_system$_context = t0; _.opHandle = t1; _.clock = t2; _.style = t3; }, _MemoryFileSystem_findNode_subpath: function _MemoryFileSystem_findNode_subpath(t0, t1, t2) { this.$this = t0; this.parts = t1; this.i = t2; }, _MemoryFileSystem_findNode_closure: function _MemoryFileSystem_findNode_closure(t0, t1, t2) { this.segmentVisitor = t0; this.i = t1; this.finalSegment = t2; }, MemoryFileSystemEntity: function MemoryFileSystemEntity() { }, MemoryFileSystemEntity_backing_closure: function MemoryFileSystemEntity_backing_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_resolvedBacking_closure: function MemoryFileSystemEntity_resolvedBacking_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_resolvedBacking_closure0: function MemoryFileSystemEntity_resolvedBacking_closure0(t0) { this.$this = t0; }, MemoryFileSystemEntity_defaultCheckType_closure: function MemoryFileSystemEntity_defaultCheckType_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_internalCreateSync_closure: function MemoryFileSystemEntity_internalCreateSync_closure(t0) { this.createChild = t0; }, DirectoryNode$($parent) { var t2, t1 = new A.DirectoryNode(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Node_4), $parent); if ($parent == null) { t1.get$isRoot(); t2 = true; } else t2 = false; if (t2) A.throwExpression(B.FileSystemException_sV6); t1.RealNode$1($parent); return t1; }, Node2: function Node2() { }, RealNode: function RealNode() { }, DirectoryNode: function DirectoryNode(t0, t1) { var _ = this; _.children = t0; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node1$_parent = t1; }, RootNode: function RootNode(t0, t1, t2) { var _ = this; _.fs = t0; _.children = t1; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node1$_parent = t2; }, FileNode: function FileNode(t0, t1) { var _ = this; _._node1$_content = t0; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node1$_parent = t1; }, FileSystemOp: function FileSystemOp(t0) { this._operations$_value = t0; }, FileSystemStyle: function FileSystemStyle() { }, _Posix: function _Posix() { }, checkIsDir(node, path) { if ((node == null ? null : node.get$type(node)) !== B.FileSystemEntityType_1) throw A.wrapException(A.notADirectory(A._asStringS(path.call$0()))); }, checkType(expectedType, actualType, path) { if (expectedType !== actualType) switch (expectedType) { case B.FileSystemEntityType_1: throw A.wrapException(A.notADirectory(A._asStringS(path.call$0()))); case B.FileSystemEntityType_0: throw A.wrapException(A.isADirectory(A._asStringS(path.call$0()))); case B.FileSystemEntityType_2: throw A.wrapException(A.invalidArgument(A._asStringS(path.call$0()))); default: throw A.wrapException(A.AssertionError$(null)); } }, isEmpty(str) { return str.length === 0; }, resolveLinks(link, path, ledger, tailVisitor) { var breadcrumbs = A.LinkedHashSet_LinkedHashSet(type$.LinkNode), node = link; while (true) { if (!false) break; if (!breadcrumbs.add$1(0, node)) throw A.wrapException(A._fsException(A._asStringS(path.call$0()), "Too many levels of symbolic links", A.ErrorCodes_ELOOP())); node = node.getReferent$1$tailVisitor(new A.resolveLinks_closure(tailVisitor)); } return node; }, resolveLinks_closure: function resolveLinks_closure(t0) { this.tailVisitor = t0; }, noSuchFileOrDirectory(path) { var _s25_ = "No such file or directory"; return new A.FileSystemException(_s25_, path, new A.OSError(_s25_, A.ErrorCodes_ENOENT())); }, notADirectory(path) { var _s15_ = "Not a directory"; return new A.FileSystemException(_s15_, path, new A.OSError(_s15_, A.ErrorCodes_ENOTDIR())); }, isADirectory(path) { var _s14_ = "Is a directory"; return new A.FileSystemException(_s14_, path, new A.OSError(_s14_, A.ErrorCodes_EISDIR())); }, invalidArgument(path) { var _s16_ = "Invalid argument"; return new A.FileSystemException(_s16_, path, new A.OSError(_s16_, A.ErrorCodes_EINVAL())); }, _fsException(path, msg, errorCode) { return new A.FileSystemException(msg, path, new A.OSError(msg, errorCode)); }, DirectoryAddOnsMixin: function DirectoryAddOnsMixin() { }, ErrorCodes_EINVAL() { return A.ErrorCodes__platform(new A.ErrorCodes_EINVAL_closure()); }, ErrorCodes_EISDIR() { return A.ErrorCodes__platform(new A.ErrorCodes_EISDIR_closure()); }, ErrorCodes_ELOOP() { return A.ErrorCodes__platform(new A.ErrorCodes_ELOOP_closure()); }, ErrorCodes_ENOENT() { return A.ErrorCodes__platform(new A.ErrorCodes_ENOENT_closure()); }, ErrorCodes_ENOTDIR() { return A.ErrorCodes__platform(new A.ErrorCodes_ENOTDIR_closure()); }, ErrorCodes_ENOTEMPTY() { return A.ErrorCodes__platform(new A.ErrorCodes_ENOTEMPTY_closure()); }, ErrorCodes__platform(getCode) { return getCode.call$1(B.C__LinuxCodes); }, ErrorCodes_EINVAL_closure: function ErrorCodes_EINVAL_closure() { }, ErrorCodes_EISDIR_closure: function ErrorCodes_EISDIR_closure() { }, ErrorCodes_ELOOP_closure: function ErrorCodes_ELOOP_closure() { }, ErrorCodes_ENOENT_closure: function ErrorCodes_ENOENT_closure() { }, ErrorCodes_ENOTDIR_closure: function ErrorCodes_ENOTDIR_closure() { }, ErrorCodes_ENOTEMPTY_closure: function ErrorCodes_ENOTEMPTY_closure() { }, _LinuxCodes: function _LinuxCodes() { }, FileSystem0: function FileSystem0() { }, FilePickerWeb__fileType(type, allowedExtensions) { switch (type.index) { case 0: return ""; case 4: return "audio/*"; case 2: return "image/*"; case 3: return "video/*"; case 1: return "video/*|image/*"; case 5: return B.JSArray_methods.fold$1$2(allowedExtensions, "", new A.FilePickerWeb__fileType_closure(), type$.String); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, FilePickerWeb: function FilePickerWeb(t0) { this.__FilePickerWeb__target = $; this._instanceToken = t0; }, FilePickerWeb_pickFiles_changeEventListener: function FilePickerWeb_pickFiles_changeEventListener(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.uploadInput = t2; _.onFileLoading = t3; _.filesCompleter = t4; _.withReadStream = t5; _.withData = t6; }, FilePickerWeb_pickFiles_changeEventListener_addPickedFile: function FilePickerWeb_pickFiles_changeEventListener_addPickedFile(t0, t1, t2, t3) { var _ = this; _.pickedFiles = t0; _.files = t1; _.onFileLoading = t2; _.filesCompleter = t3; }, FilePickerWeb_pickFiles_changeEventListener_closure: function FilePickerWeb_pickFiles_changeEventListener_closure(t0, t1, t2) { this.addPickedFile = t0; this.file = t1; this.reader = t2; }, FilePickerWeb_pickFiles_changeEventListener_closure0: function FilePickerWeb_pickFiles_changeEventListener_closure0(t0, t1, t2) { this.addPickedFile = t0; this.file = t1; this.reader = t2; }, FilePickerWeb_pickFiles_cancelledEventListener: function FilePickerWeb_pickFiles_cancelledEventListener(t0, t1) { this._box_0 = t0; this.filesCompleter = t1; }, FilePickerWeb_pickFiles_cancelledEventListener_closure: function FilePickerWeb_pickFiles_cancelledEventListener_closure(t0, t1) { this._box_0 = t0; this.filesCompleter = t1; }, FilePickerWeb__fileType_closure: function FilePickerWeb__fileType_closure() { }, FilePicker_FilePicker$_setPlatform() { if ($.$get$Platform_isAndroid() || $.$get$Platform_isIOS()) return new A.FilePickerIO($.$get$FilePicker__token()); else if ($.$get$Platform_isLinux()) return new A.FilePickerLinux($.$get$FilePicker__token()); else if ($.$get$Platform_isWindows()) return A.filePickerWithFFI(); else if ($.$get$Platform_isMacOS()) return new A.FilePickerMacOS($.$get$FilePicker__token()); else throw A.wrapException(A.UnimplementedError$('The current platform "' + A.S($.$get$Platform__operatingSystem()) + '" is not supported by this plugin.')); }, FileType: function FileType(t0, t1) { this.index = t0; this._core$_name = t1; }, FilePicker: function FilePicker() { }, FilePickerIO: function FilePickerIO(t0) { this._instanceToken = t0; }, FilePickerMacOS: function FilePickerMacOS(t0) { this._instanceToken = t0; }, FilePickerMacOS_resultStringToFilePaths_closure: function FilePickerMacOS_resultStringToFilePaths_closure() { }, FilePickerMacOS_resultStringToFilePaths_closure0: function FilePickerMacOS_resultStringToFilePaths_closure0() { }, FilePickerMacOS_resultStringToFilePaths_closure1: function FilePickerMacOS_resultStringToFilePaths_closure1() { }, FilePickerMacOS_resultStringToFilePaths__closure: function FilePickerMacOS_resultStringToFilePaths__closure() { }, FilePickerResult: function FilePickerResult(t0) { this.files = t0; }, FilePickerLinux: function FilePickerLinux(t0) { this._instanceToken = t0; }, KDialogHandler: function KDialogHandler() { }, KDialogHandler_fileTypeToFileFilter_closure: function KDialogHandler_fileTypeToFileFilter_closure() { }, KDialogHandler_resultStringToFilePaths_closure: function KDialogHandler_resultStringToFilePaths_closure() { }, QarmaAndZenityHandler: function QarmaAndZenityHandler() { }, QarmaAndZenityHandler_resultStringToFilePaths_closure: function QarmaAndZenityHandler_resultStringToFilePaths_closure() { }, PlatformFile: function PlatformFile(t0, t1, t2, t3, t4, t5) { var _ = this; _._platform_file$_path = t0; _.name = t1; _.bytes = t2; _.readStream = t3; _.size = t4; _.identifier = t5; }, filePathsToPlatformFiles(filePaths, withReadStream, withData) { var t1 = A._arrayInstanceType(filePaths), t2 = t1._eval$1("MappedIterable<1,Future>"); return A.Future_wait(A.List_List$of(new A.MappedIterable(new A.WhereIterable(filePaths, new A.filePathsToPlatformFiles_closure(), t1._eval$1("WhereIterable<1>")), new A.filePathsToPlatformFiles_closure0(false, true), t2), true, t2._eval$1("Iterable.E")), type$.PlatformFile); }, createPlatformFile(file, bytes, readStream) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PlatformFile), $async$returnValue, t1, t2; var $async$createPlatformFile = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = file._path; t2 = A.ParsedPath_ParsedPath$parse(t1, $.$get$context().style).get$basename(); $async$returnValue = new A.PlatformFile(t1, t2, bytes, readStream, file.existsSync$0() ? file.lengthSync$0() : 0, null); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$createPlatformFile, $async$completer); }, runExecutableWithArguments(executable, $arguments) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_String); var $async$runExecutableWithArguments = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.Process_run(executable, $arguments), $async$runExecutableWithArguments); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$runExecutableWithArguments, $async$completer); }, isExecutableOnPath(executable) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue, path; var $async$isExecutableOnPath = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.runExecutableWithArguments("which", A._setArrayType([executable], type$.JSArray_String)), $async$isExecutableOnPath); case 3: // returning from await. path = $async$result; if (path == null) throw A.wrapException(A.Exception_Exception("Couldn't find the executable " + executable + " in the path.")); $async$returnValue = path; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$isExecutableOnPath, $async$completer); }, filePathsToPlatformFiles_closure: function filePathsToPlatformFiles_closure() { }, filePathsToPlatformFiles_closure0: function filePathsToPlatformFiles_closure0(t0, t1) { this.withReadStream = t0; this.withData = t1; }, Int32__decodeDigit(c) { if (c >= 48 && c <= 57) return c - 48; else if (c >= 97 && c <= 122) return c - 97 + 10; else if (c >= 65 && c <= 90) return c - 65 + 10; else return -1; }, Int64__parseRadix(s, radix) { var i, negative, d0, d1, d2, c, digit, d00, d10, _null = null, t1 = s.length; if (0 < t1 && s[0] === "-") { i = 1; negative = true; } else { i = 0; negative = false; } if (i >= t1) throw A.wrapException(A.FormatException$("No digits in '" + s + "'", _null, _null)); for (d0 = 0, d1 = 0, d2 = 0; i < t1; ++i, d1 = d10, d0 = d00) { c = B.JSString_methods._codeUnitAt$1(s, i); digit = A.Int32__decodeDigit(c); if (digit < 0 || digit >= radix) throw A.wrapException(A.FormatException$("Non-radix char code: " + c, _null, _null)); d0 = d0 * radix + digit; d00 = d0 & 4194303; d1 = d1 * radix + B.JSInt_methods._shrOtherPositive$1(d0, 22); d10 = d1 & 4194303; d2 = d2 * radix + (d1 >>> 22) & 1048575; } if (negative) return A.Int64__sub(0, 0, 0, d0, d1, d2); return new A.Int64(d0 & 4194303, d1 & 4194303, d2 & 1048575); }, Int64_Int64(value) { var negative, v2, v1, t1, t2, t3; if (value < 0) { value = -value; negative = true; } else negative = false; v2 = B.JSInt_methods._tdivFast$1(value, 17592186044416); value -= v2 * 17592186044416; v1 = B.JSInt_methods._tdivFast$1(value, 4194304); t1 = v1 & 4194303; t2 = v2 & 1048575; t3 = value - v1 * 4194304 & 4194303; return negative ? A.Int64__sub(0, 0, 0, t3, t1, t2) : new A.Int64(t3, t1, t2); }, Int64__promote(value) { if (value instanceof A.Int64) return value; else if (A._isInt(value)) return A.Int64_Int64(value); throw A.wrapException(A.ArgumentError$value(value, null, null)); }, Int64__toRadixStringUnsigned(radix, d0, d1, d2, sign) { var d4, d3, fatRadix, chunk1, chunk2, chunk3, q, q0, q1, q2, q3, chunk10, residue; if (d0 === 0 && d1 === 0 && d2 === 0) return "0"; d4 = (d2 << 4 | d1 >>> 18) >>> 0; d3 = d1 >>> 8 & 1023; d2 = (d1 << 2 | d0 >>> 20) & 1023; d1 = d0 >>> 10 & 1023; d0 &= 1023; fatRadix = B.List_WrN[radix]; chunk1 = ""; chunk2 = ""; chunk3 = ""; while (true) { if (!!(d4 === 0 && d3 === 0)) break; q = B.JSInt_methods.$tdiv(d4, fatRadix); d3 += d4 - q * fatRadix << 10 >>> 0; q0 = B.JSInt_methods.$tdiv(d3, fatRadix); d2 += d3 - q0 * fatRadix << 10 >>> 0; q1 = B.JSInt_methods.$tdiv(d2, fatRadix); d1 += d2 - q1 * fatRadix << 10 >>> 0; q2 = B.JSInt_methods.$tdiv(d1, fatRadix); d0 += d1 - q2 * fatRadix << 10 >>> 0; q3 = B.JSInt_methods.$tdiv(d0, fatRadix); chunk10 = B.JSString_methods.substring$1(B.JSInt_methods.toRadixString$1(fatRadix + (d0 - q3 * fatRadix), radix), 1); chunk3 = chunk2; chunk2 = chunk1; chunk1 = chunk10; d3 = q0; d4 = q; d2 = q1; d1 = q2; d0 = q3; } residue = (d2 << 20 >>> 0) + (d1 << 10 >>> 0) + d0; return sign + (residue === 0 ? "" : B.JSInt_methods.toRadixString$1(residue, radix)) + chunk1 + chunk2 + chunk3; }, Int64__sub(a0, a1, a2, b0, b1, b2) { var diff0 = a0 - b0, diff1 = a1 - b1 - (B.JSInt_methods._shrOtherPositive$1(diff0, 22) & 1); return new A.Int64(diff0 & 4194303, diff1 & 4194303, a2 - b2 - (B.JSInt_methods._shrOtherPositive$1(diff1, 22) & 1) & 1048575); }, Int64__divide(a, other, what) { var t1, aNeg, t2, bNeg, b = A.Int64__promote(other); if (b.get$isZero()) throw A.wrapException(B.C_IntegerDivisionByZeroException); if (a.get$isZero()) return B.Int64_0_0_0; t1 = a._h; aNeg = (t1 & 524288) !== 0; t2 = b._h; bNeg = (t2 & 524288) !== 0; if (aNeg) a = A.Int64__sub(0, 0, 0, a._l, a._m, t1); if (bNeg) b = A.Int64__sub(0, 0, 0, b._l, b._m, t2); return A.Int64__divideHelper(a._l, a._m, a._h, aNeg, b._l, b._m, b._h, bNeg, what); }, Int64__divideHelper(a0, a1, a2, aNeg, b0, b1, b2, bNeg, what) { var q2, d1, q1, d0, q0, r0, r1, r2, qd, q2d, q1d, q0d, p0d, p0carry, p1d, p1carry, diff0, diff1, t1, m; if (b2 === 0 && b1 === 0 && b0 < 256) { q2 = B.JSInt_methods.$tdiv(a2, b0); d1 = a1 + (a2 - q2 * b0 << 22 >>> 0); q1 = B.JSInt_methods.$tdiv(d1, b0); d0 = a0 + (d1 - q1 * b0 << 22 >>> 0); q0 = B.JSInt_methods.$tdiv(d0, b0); r0 = d0 - q0 * b0; r1 = 0; r2 = 0; } else { qd = Math.floor((a0 + 4194304 * a1 + 17592186044416 * a2) / (b0 + 4194304 * b1 + 17592186044416 * b2)); q2d = Math.floor(qd / 17592186044416); qd -= 17592186044416 * q2d; q1d = Math.floor(qd / 4194304); q0d = qd - 4194304 * q1d; q2 = B.JSNumber_methods.toInt$0(q2d); q1 = B.JSNumber_methods.toInt$0(q1d); q0 = B.JSNumber_methods.toInt$0(q0d); p0d = q0d * b0; p0carry = Math.floor(p0d / 4194304); p1d = q1d * b0 + q0d * b1 + p0carry; p1carry = Math.floor(p1d / 4194304); diff0 = a0 - B.JSNumber_methods.toInt$0(p0d - p0carry * 4194304); diff1 = a1 - B.JSNumber_methods.toInt$0(p1d - p1carry * 4194304) - (B.JSInt_methods._shrOtherPositive$1(diff0, 22) & 1); r0 = diff0 & 4194303; r1 = diff1 & 4194303; r2 = a2 - B.JSNumber_methods.toInt$0(q2d * b0 + q1d * b1 + q0d * b2 + p1carry) - (B.JSInt_methods._shrOtherPositive$1(diff1, 22) & 1) & 1048575; while (true) { if (r2 < 524288) if (r2 <= b2) if (r2 === b2) if (r1 <= b1) t1 = r1 === b1 && r0 >= b0; else t1 = true; else t1 = false; else t1 = true; else t1 = true; if (!t1) break; m = (r2 & 524288) === 0 ? 1 : -1; d0 = r0 - m * b0; d1 = r1 - m * (b1 + (B.JSInt_methods._shrOtherPositive$1(d0, 22) & 1)); r0 = d0 & 4194303; r1 = d1 & 4194303; r2 = r2 - m * (b2 + (B.JSInt_methods._shrOtherPositive$1(d1, 22) & 1)) & 1048575; d0 = q0 + m; d1 = q1 + m * (B.JSInt_methods._shrOtherPositive$1(d0, 22) & 1); q0 = d0 & 4194303; q1 = d1 & 4194303; q2 = q2 + m * (B.JSInt_methods._shrOtherPositive$1(d1, 22) & 1) & 1048575; } } if (what === 1) { if (aNeg !== bNeg) return A.Int64__sub(0, 0, 0, q0, q1, q2); return new A.Int64(q0 & 4194303, q1 & 4194303, q2 & 1048575); } if (!aNeg) return new A.Int64(r0 & 4194303, r1 & 4194303, r2 & 1048575); if (what === 3) if (r0 === 0 && r1 === 0 && r2 === 0) return B.Int64_0_0_0; else return A.Int64__sub(b0, b1, b2, r0, r1, r2); else return A.Int64__sub(0, 0, 0, r0, r1, r2); }, Int64: function Int64(t0, t1, t2) { this._l = t0; this._m = t1; this._h = t2; }, AnimationStatus: function AnimationStatus(t0, t1) { this.index = t0; this._core$_name = t1; }, Animation0: function Animation0() { }, AnimationController$(debugLabel, duration, reverseDuration, upperBound, value, vsync) { var t1 = new A.AnimationController(0, upperBound, debugLabel, B.AnimationBehavior_0, duration, reverseDuration, B._AnimationDirection_0, B.AnimationStatus_0, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); t1._ticker = vsync.createTicker$1(t1.get$_animation_controller$_tick()); t1._internalSetValue$1(value == null ? 0 : value); return t1; }, AnimationController$unbounded(debugLabel, value, vsync) { var t1 = new A.AnimationController(-1 / 0, 1 / 0, debugLabel, B.AnimationBehavior_1, null, null, B._AnimationDirection_0, B.AnimationStatus_0, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); t1._ticker = vsync.createTicker$1(t1.get$_animation_controller$_tick()); t1._internalSetValue$1(value); return t1; }, _AnimationDirection: function _AnimationDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, AnimationBehavior: function AnimationBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, AnimationController: function AnimationController(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.lowerBound = t0; _.upperBound = t1; _.debugLabel = t2; _.animationBehavior = t3; _.duration = t4; _.reverseDuration = t5; _._simulation = _._ticker = null; _.__AnimationController__value = $; _._lastElapsedDuration = null; _._direction = t6; _.__AnimationController__status = $; _._lastReportedStatus = t7; _.AnimationLocalStatusListenersMixin__statusListeners = t8; _.AnimationLocalListenersMixin__listeners = t9; }, _InterpolationSimulation: function _InterpolationSimulation(t0, t1, t2, t3, t4) { var _ = this; _._durationInSeconds = t0; _._begin = t1; _._animation_controller$_end = t2; _._curve = t3; _.tolerance = t4; }, _RepeatingSimulation: function _RepeatingSimulation(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.min = t0; _.max = t1; _.reverse = t2; _.directionSetter = t3; _._periodInSeconds = t4; _._initialT = t5; _.tolerance = t6; }, _AnimationController_Animation_AnimationEagerListenerMixin: function _AnimationController_Animation_AnimationEagerListenerMixin() { }, _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin: function _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin() { }, _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, ProxyAnimation$(animation) { var t1 = new A.ProxyAnimation(new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0); t1._animations$_parent = animation; if (animation == null) { t1._status = B.AnimationStatus_0; t1._animations$_value = 0; } return t1; }, CurvedAnimation$(curve, $parent, reverseCurve) { var t1 = new A.CurvedAnimation($parent, curve, reverseCurve); t1._updateCurveDirection$1($parent.get$status($parent)); $parent.addStatusListener$1(t1.get$_updateCurveDirection()); return t1; }, TrainHoppingAnimation$(_currentTrain, _nextTrain, onSwitchedTrain) { var t2, t3, t1 = new A.TrainHoppingAnimation(_currentTrain, _nextTrain, onSwitchedTrain, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); if (J.$eq$(_currentTrain.get$value(_currentTrain), _nextTrain.get$value(_nextTrain))) { t1._currentTrain = _nextTrain; t1._nextTrain = null; t2 = _nextTrain; } else { if (_currentTrain.get$value(_currentTrain) > _nextTrain.get$value(_nextTrain)) t1._mode = B._TrainHoppingMode_1; else t1._mode = B._TrainHoppingMode_0; t2 = _currentTrain; } t2.addStatusListener$1(t1.get$_statusChangeHandler()); t2 = t1.get$_valueChangeHandler(); t1._currentTrain.addListener$1(0, t2); t3 = t1._nextTrain; if (t3 != null) t3.addListener$1(0, t2); return t1; }, AnimationMin$(first, next, $T) { return new A.AnimationMin(first, next, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0, $T._eval$1("AnimationMin<0>")); }, _AlwaysCompleteAnimation: function _AlwaysCompleteAnimation() { }, _AlwaysDismissedAnimation: function _AlwaysDismissedAnimation() { }, AlwaysStoppedAnimation: function AlwaysStoppedAnimation(t0, t1) { this.value = t0; this.$ti = t1; }, AnimationWithParentMixin: function AnimationWithParentMixin() { }, ProxyAnimation: function ProxyAnimation(t0, t1, t2) { var _ = this; _._animations$_parent = _._animations$_value = _._status = null; _.AnimationLocalStatusListenersMixin__statusListeners = t0; _.AnimationLocalListenersMixin__listeners = t1; _.AnimationLazyListenerMixin__listenerCounter = t2; }, ReverseAnimation: function ReverseAnimation(t0, t1, t2) { this.parent = t0; this.AnimationLocalStatusListenersMixin__statusListeners = t1; this.AnimationLazyListenerMixin__listenerCounter = t2; }, CurvedAnimation: function CurvedAnimation(t0, t1, t2) { var _ = this; _.parent = t0; _.curve = t1; _.reverseCurve = t2; _._curveDirection = null; }, _TrainHoppingMode: function _TrainHoppingMode(t0, t1) { this.index = t0; this._core$_name = t1; }, TrainHoppingAnimation: function TrainHoppingAnimation(t0, t1, t2, t3, t4) { var _ = this; _._currentTrain = t0; _._nextTrain = t1; _._mode = null; _.onSwitchedTrain = t2; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t3; _.AnimationLocalListenersMixin__listeners = t4; }, CompoundAnimation: function CompoundAnimation() { }, AnimationMin: function AnimationMin(t0, t1, t2, t3, t4, t5) { var _ = this; _.first = t0; _.next = t1; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t2; _.AnimationLocalListenersMixin__listeners = t3; _.AnimationLazyListenerMixin__listenerCounter = t4; _.$ti = t5; }, _CompoundAnimation_Animation_AnimationLazyListenerMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin() { }, _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin() { }, _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, _CurvedAnimation_Animation_AnimationWithParentMixin: function _CurvedAnimation_Animation_AnimationWithParentMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, _ReverseAnimation_Animation_AnimationLazyListenerMixin: function _ReverseAnimation_Animation_AnimationLazyListenerMixin() { }, _ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin: function _ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, ParametricCurve: function ParametricCurve() { }, Curve: function Curve() { }, _Linear: function _Linear() { }, SawTooth: function SawTooth(t0) { this.count = t0; }, Interval: function Interval(t0, t1, t2) { this.begin = t0; this.end = t1; this.curve = t2; }, Threshold: function Threshold(t0) { this.threshold = t0; }, Cubic: function Cubic(t0, t1, t2, t3) { var _ = this; _.a = t0; _.b = t1; _.c = t2; _.d = t3; }, ThreePointCubic: function ThreePointCubic() { }, FlippedCurve: function FlippedCurve(t0) { this.curve = t0; }, _DecelerateCurve: function _DecelerateCurve() { }, ElasticOutCurve: function ElasticOutCurve() { }, AnimationLazyListenerMixin: function AnimationLazyListenerMixin() { }, AnimationEagerListenerMixin: function AnimationEagerListenerMixin() { }, AnimationLocalListenersMixin: function AnimationLocalListenersMixin() { }, AnimationLocalStatusListenersMixin: function AnimationLocalStatusListenersMixin() { }, Tween$(begin, end, $T) { return new A.Tween(begin, end, $T._eval$1("Tween<0>")); }, CurveTween$(curve) { return new A.CurveTween(curve); }, Animatable: function Animatable() { }, _AnimatedEvaluation: function _AnimatedEvaluation(t0, t1, t2) { this.parent = t0; this._evaluatable = t1; this.$ti = t2; }, _ChainedEvaluation: function _ChainedEvaluation(t0, t1, t2) { this._tween$_parent = t0; this._evaluatable = t1; this.$ti = t2; }, Tween: function Tween(t0, t1, t2) { this.begin = t0; this.end = t1; this.$ti = t2; }, ReverseTween: function ReverseTween(t0, t1, t2, t3) { var _ = this; _.parent = t0; _.begin = t1; _.end = t2; _.$ti = t3; }, ColorTween: function ColorTween(t0, t1) { this.begin = t0; this.end = t1; }, SizeTween: function SizeTween(t0, t1) { this.begin = t0; this.end = t1; }, RectTween: function RectTween(t0, t1) { this.begin = t0; this.end = t1; }, IntTween: function IntTween(t0, t1) { this.begin = t0; this.end = t1; }, CurveTween: function CurveTween(t0) { this.curve = t0; }, __AnimatedEvaluation_Animation_AnimationWithParentMixin: function __AnimatedEvaluation_Animation_AnimationWithParentMixin() { }, TweenSequence$(items, $T) { var t1 = new A.TweenSequence(A._setArrayType([], $T._eval$1("JSArray>")), A._setArrayType([], type$.JSArray__Interval), $T._eval$1("TweenSequence<0>")); t1.TweenSequence$1(items, $T); return t1; }, TweenSequenceItem$(tween, weight, $T) { return new A.TweenSequenceItem(tween, weight, $T._eval$1("TweenSequenceItem<0>")); }, TweenSequence: function TweenSequence(t0, t1, t2) { this._items = t0; this._intervals = t1; this.$ti = t2; }, TweenSequenceItem: function TweenSequenceItem(t0, t1, t2) { this.tween = t0; this.weight = t1; this.$ti = t2; }, _Interval: function _Interval(t0, t1) { this.start = t0; this.end = t1; }, CupertinoButton$(alignment, borderRadius, child, color, disabledColor, minSize, onPressed, padding, pressedOpacity) { return new A.CupertinoButton(child, padding, color, disabledColor, onPressed, minSize, pressedOpacity, borderRadius, alignment, null); }, CupertinoButton: function CupertinoButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.child = t0; _.padding = t1; _.color = t2; _.disabledColor = t3; _.onPressed = t4; _.minSize = t5; _.pressedOpacity = t6; _.borderRadius = t7; _.alignment = t8; _.key = t9; }, _CupertinoButtonState: function _CupertinoButtonState(t0, t1, t2, t3) { var _ = this; _._opacityTween = t0; _.___CupertinoButtonState__opacityAnimation = _.___CupertinoButtonState__animationController = $; _._buttonHeldDown = false; _.SingleTickerProviderStateMixin__ticker = t1; _.SingleTickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CupertinoButtonState__animate_closure: function _CupertinoButtonState__animate_closure(t0, t1) { this.$this = t0; this.wasHeldDown = t1; }, __CupertinoButtonState_State_SingleTickerProviderStateMixin: function __CupertinoButtonState_State_SingleTickerProviderStateMixin() { }, CupertinoDynamicColor_maybeResolve(resolvable, context) { if (resolvable == null) return null; return resolvable instanceof A.CupertinoDynamicColor ? resolvable.resolveFrom$1(context) : resolvable; }, CupertinoDynamicColor: function CupertinoDynamicColor(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._effectiveColor = t0; _._colors$_debugLabel = t1; _._debugResolveContext = t2; _.color = t3; _.darkColor = t4; _.highContrastColor = t5; _.darkHighContrastColor = t6; _.elevatedColor = t7; _.darkElevatedColor = t8; _.highContrastElevatedColor = t9; _.darkHighContrastElevatedColor = t10; _.value = t11; }, CupertinoDynamicColor_toString_toString: function CupertinoDynamicColor_toString_toString(t0) { this.$this = t0; }, _CupertinoDynamicColor_Color_Diagnosticable: function _CupertinoDynamicColor_Color_Diagnosticable() { }, _CupertinoDesktopTextSelectionControls: function _CupertinoDesktopTextSelectionControls() { }, CupertinoIconThemeData: function CupertinoIconThemeData(t0, t1, t2, t3) { var _ = this; _.color = t0; _._opacity = t1; _.size = t2; _.shadows = t3; }, _CupertinoIconThemeData_IconThemeData_Diagnosticable: function _CupertinoIconThemeData_IconThemeData_Diagnosticable() { }, _CupertinoLocalizationsDelegate: function _CupertinoLocalizationsDelegate() { }, DefaultCupertinoLocalizations: function DefaultCupertinoLocalizations() { }, CupertinoRouteTransitionMixin__isPopGestureEnabled(route) { var t1; if (route.get$isFirst()) return false; t1 = route.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) return false; if (route._willPopCallbacks.length !== 0) return false; t1 = route._animationProxy; if (t1.get$status(t1) !== B.AnimationStatus_3) return false; t1 = route._secondaryAnimationProxy; if (t1.get$status(t1) !== B.AnimationStatus_0) return false; if (route._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) return false; return true; }, CupertinoRouteTransitionMixin_buildPageTransitions(route, context, animation, secondaryAnimation, child, $T) { var t4, t5, t6, t7, t1 = route._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value, t2 = t1 ? animation : A.CurvedAnimation$(B.Cubic_izR, animation, B.Cubic_OcD), t3 = $.$get$_kRightMiddleTween(); t2.toString; t4 = type$.Animation_double; t4._as(t2); t3.toString; t5 = t1 ? secondaryAnimation : A.CurvedAnimation$(B.Cubic_izR, secondaryAnimation, B.Cubic_OcD); t6 = $.$get$_kMiddleLeftTween(); t5.toString; t4._as(t5); t6.toString; t1 = t1 ? animation : A.CurvedAnimation$(B.Cubic_izR, animation, null); t7 = $.$get$_CupertinoEdgeShadowDecoration_kTween(); t1.toString; t4._as(t1); t7.toString; return new A.CupertinoPageTransition(new A._AnimatedEvaluation(t2, t3, t3.$ti._eval$1("_AnimatedEvaluation")), new A._AnimatedEvaluation(t5, t6, t6.$ti._eval$1("_AnimatedEvaluation")), new A._AnimatedEvaluation(t1, t7, A._instanceType(t7)._eval$1("_AnimatedEvaluation")), new A._CupertinoBackGestureDetector(child, new A.CupertinoRouteTransitionMixin_buildPageTransitions_closure(route), new A.CupertinoRouteTransitionMixin_buildPageTransitions_closure0(route, $T), null, $T._eval$1("_CupertinoBackGestureDetector<0>")), null); }, _CupertinoEdgeShadowDecoration_lerp(a, b, t) { var t2, t3, t4, i, t5, t6, t1 = a == null; if (t1 && b == null) return null; if (t1) { t1 = b._route$_colors; if (t1 == null) t1 = b; else { t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Color>"); t2 = new A._CupertinoEdgeShadowDecoration(A.List_List$of(new A.MappedListIterable(t1, new A._CupertinoEdgeShadowDecoration_lerp_closure(t), t2), true, t2._eval$1("ListIterable.E"))); t1 = t2; } return t1; } if (b == null) { t1 = a._route$_colors; if (t1 == null) t1 = a; else { t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Color>"); t2 = new A._CupertinoEdgeShadowDecoration(A.List_List$of(new A.MappedListIterable(t1, new A._CupertinoEdgeShadowDecoration_lerp_closure0(t), t2), true, t2._eval$1("ListIterable.E"))); t1 = t2; } return t1; } t1 = A._setArrayType([], type$.JSArray_Color_2); for (t2 = b._route$_colors, t3 = a._route$_colors, t4 = t3 == null, i = 0; i < t2.length; ++i) { t5 = t4 ? null : t3[i]; t6 = t2[i]; t5 = A.Color_lerp(t5, t6, t); t5.toString; t1.push(t5); } return new A._CupertinoEdgeShadowDecoration(t1); }, CupertinoRouteTransitionMixin_buildPageTransitions_closure: function CupertinoRouteTransitionMixin_buildPageTransitions_closure(t0) { this.route = t0; }, CupertinoRouteTransitionMixin_buildPageTransitions_closure0: function CupertinoRouteTransitionMixin_buildPageTransitions_closure0(t0, t1) { this.route = t0; this.T = t1; }, CupertinoPageTransition: function CupertinoPageTransition(t0, t1, t2, t3, t4) { var _ = this; _._primaryPositionAnimation = t0; _._secondaryPositionAnimation = t1; _._primaryShadowAnimation = t2; _.child = t3; _.key = t4; }, _CupertinoBackGestureDetector: function _CupertinoBackGestureDetector(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.enabledCallback = t1; _.onStartPopGesture = t2; _.key = t3; _.$ti = t4; }, _CupertinoBackGestureDetectorState: function _CupertinoBackGestureDetectorState(t0, t1) { var _ = this; _._backGestureController = null; _.___CupertinoBackGestureDetectorState__recognizer = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _CupertinoBackGestureController: function _CupertinoBackGestureController(t0, t1, t2) { this.controller = t0; this.navigator = t1; this.$ti = t2; }, _CupertinoBackGestureController_dragEnd_closure: function _CupertinoBackGestureController_dragEnd_closure(t0, t1) { this.$this = t0; this.animationStatusCallback = t1; }, _CupertinoEdgeShadowDecoration: function _CupertinoEdgeShadowDecoration(t0) { this._route$_colors = t0; }, _CupertinoEdgeShadowDecoration_lerp_closure: function _CupertinoEdgeShadowDecoration_lerp_closure(t0) { this.t = t0; }, _CupertinoEdgeShadowDecoration_lerp_closure0: function _CupertinoEdgeShadowDecoration_lerp_closure0(t0) { this.t = t0; }, _CupertinoEdgeShadowPainter: function _CupertinoEdgeShadowPainter(t0, t1) { this._route$_decoration = t0; this.onChanged = t1; }, CupertinoScrollbar: function CupertinoScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.thicknessWhileDragging = t0; _.radiusWhileDragging = t1; _.child = t2; _.controller = t3; _.thumbVisibility = t4; _.isAlwaysShown = t5; _.radius = t6; _.thickness = t7; _.trackVisibility = t8; _.fadeDuration = t9; _.timeToFade = t10; _.pressDuration = t11; _.notificationPredicate = t12; _.interactive = t13; _.scrollbarOrientation = t14; _.key = t15; }, _CupertinoScrollbarState: function _CupertinoScrollbarState(t0, t1, t2, t3) { var _ = this; _.___CupertinoScrollbarState__thicknessAnimationController = $; _._pressStartAxisPosition = 0; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisOffset = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CupertinoScrollbarState_initState_closure: function _CupertinoScrollbarState_initState_closure(t0) { this.$this = t0; }, _CupertinoScrollbarState_handleThumbPress_closure: function _CupertinoScrollbarState_handleThumbPress_closure() { }, CupertinoSwitch: function CupertinoSwitch(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.trackColor = t3; _.dragStartBehavior = t4; _.key = t5; }, _CupertinoSwitchState: function _CupertinoSwitchState(t0, t1, t2) { var _ = this; _.___CupertinoSwitchState__reaction = _.___CupertinoSwitchState__reactionController = _.___CupertinoSwitchState_position = _.___CupertinoSwitchState__positionController = _.___CupertinoSwitchState__drag = _.___CupertinoSwitchState__tap = $; _.needsPositionAnimation = false; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CupertinoSwitchState__handleDragEnd_closure: function _CupertinoSwitchState__handleDragEnd_closure(t0) { this.$this = t0; }, _CupertinoSwitchRenderObjectWidget: function _CupertinoSwitchRenderObjectWidget(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.activeColor = t1; _.trackColor = t2; _.thumbColor = t3; _.onChanged = t4; _.state = t5; _.textDirection = t6; _.key = t7; }, _RenderCupertinoSwitch: function _RenderCupertinoSwitch(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._switch$_state = t0; _._switch$_value = t1; _._activeColor = t2; _._switch$_trackColor = t3; _._thumbPainter = t4; _._onChanged = t5; _._switch$_textDirection = t6; _._clipRRectLayer = t7; _._additionalConstraints = t8; _.RenderObjectWithChildMixin__child = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t10; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderCupertinoSwitch_paint_closure: function _RenderCupertinoSwitch_paint_closure(t0, t1) { this.$this = t0; this.thumbBounds = t1; }, __CupertinoSwitchState_State_TickerProviderStateMixin: function __CupertinoSwitchState_State_TickerProviderStateMixin() { }, _TextSelectionHandlePainter0: function _TextSelectionHandlePainter0(t0, t1) { this.color = t0; this._repaint = t1; }, CupertinoTextSelectionControls: function CupertinoTextSelectionControls() { }, _resolveTextStyle(style, context) { return null; }, CupertinoTextThemeData: function CupertinoTextThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._text_theme$_defaults = t0; _._text_theme$_primaryColor = t1; _._textStyle = t2; _._actionTextStyle = t3; _._tabLabelTextStyle = t4; _._navTitleTextStyle = t5; _._navLargeTitleTextStyle = t6; _._navActionTextStyle = t7; _._pickerTextStyle = t8; _._dateTimePickerTextStyle = t9; }, _TextThemeDefaultsBuilder: function _TextThemeDefaultsBuilder(t0, t1) { this.labelColor = t0; this.inactiveGrayColor = t1; }, _CupertinoTextThemeData_Object_Diagnosticable: function _CupertinoTextThemeData_Object_Diagnosticable() { }, CupertinoTheme_of(context) { var inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedCupertinoTheme), t1 = inheritedTheme == null ? null : inheritedTheme.theme.data; return (t1 == null ? B.CupertinoThemeData_KQb : t1).resolveFrom$1(context); }, CupertinoThemeData$_rawWithDefaults(brightness, primaryColor, primaryContrastingColor, textTheme, barBackgroundColor, scaffoldBackgroundColor, _defaults) { return new A.CupertinoThemeData(_defaults, brightness, primaryColor, primaryContrastingColor, textTheme, barBackgroundColor, scaffoldBackgroundColor); }, CupertinoTheme: function CupertinoTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, _InheritedCupertinoTheme: function _InheritedCupertinoTheme(t0, t1, t2) { this.theme = t0; this.child = t1; this.key = t2; }, CupertinoThemeData: function CupertinoThemeData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._defaults = t0; _.brightness = t1; _.primaryColor = t2; _.primaryContrastingColor = t3; _.textTheme = t4; _.barBackgroundColor = t5; _.scaffoldBackgroundColor = t6; }, CupertinoThemeData_resolveFrom_convertColor: function CupertinoThemeData_resolveFrom_convertColor(t0) { this.context = t0; }, NoDefaultCupertinoThemeData: function NoDefaultCupertinoThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.brightness = t0; _.primaryColor = t1; _.primaryContrastingColor = t2; _.textTheme = t3; _.barBackgroundColor = t4; _.scaffoldBackgroundColor = t5; }, NoDefaultCupertinoThemeData_resolveFrom_convertColor: function NoDefaultCupertinoThemeData_resolveFrom_convertColor(t0) { this.context = t0; }, _CupertinoThemeDefaults: function _CupertinoThemeDefaults(t0, t1, t2, t3, t4, t5) { var _ = this; _.brightness = t0; _.primaryColor = t1; _.primaryContrastingColor = t2; _.barBackgroundColor = t3; _.scaffoldBackgroundColor = t4; _.textThemeDefaults = t5; }, _CupertinoThemeDefaults_resolveFrom_convertColor: function _CupertinoThemeDefaults_resolveFrom_convertColor(t0) { this.context = t0; }, _CupertinoTextThemeDefaults: function _CupertinoTextThemeDefaults(t0, t1) { this.labelColor = t0; this.inactiveGray = t1; }, _DefaultCupertinoTextThemeData: function _DefaultCupertinoTextThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.labelColor = t0; _.inactiveGray = t1; _._text_theme$_defaults = t2; _._text_theme$_primaryColor = t3; _._textStyle = t4; _._actionTextStyle = t5; _._tabLabelTextStyle = t6; _._navTitleTextStyle = t7; _._navLargeTitleTextStyle = t8; _._navActionTextStyle = t9; _._pickerTextStyle = t10; _._dateTimePickerTextStyle = t11; }, _CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable: function _CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable() { }, CupertinoThumbPainter: function CupertinoThumbPainter(t0, t1) { this.color = t0; this.shadows = t1; }, defaultTargetPlatform() { var t1 = $.$get$_testPlatform(); return t1 == null ? $.$get$_browserPlatform() : t1; }, _testPlatform_closure: function _testPlatform_closure() { }, _browserPlatform_closure: function _browserPlatform_closure() { }, ErrorDescription$(message) { var _null = null, t1 = A._setArrayType([message], type$.JSArray_Object); return new A.ErrorDescription(_null, false, true, _null, _null, _null, false, t1, true, _null, B.DiagnosticLevel_3, _null, _null, false, false, _null, B.DiagnosticsTreeStyle_7); }, ErrorSummary$(message) { var _null = null, t1 = A._setArrayType([message], type$.JSArray_Object); return new A.ErrorSummary(_null, false, true, _null, _null, _null, false, t1, true, _null, B.DiagnosticLevel_6, _null, _null, false, false, _null, B.DiagnosticsTreeStyle_7); }, ErrorHint$(message) { var _null = null, t1 = A._setArrayType([message], type$.JSArray_Object); return new A.ErrorHint(_null, false, true, _null, _null, _null, false, t1, true, _null, B.DiagnosticLevel_5, _null, _null, false, false, _null, B.DiagnosticsTreeStyle_7); }, ErrorSpacer$() { var _null = null; return new A.ErrorSpacer("", false, true, _null, _null, _null, false, _null, true, B.C__NoDefaultValue, B.DiagnosticLevel_3, _null, "", true, false, _null, B.DiagnosticsTreeStyle_8); }, FlutterError_FlutterError(message) { var lines = A._setArrayType(message.split("\n"), type$.JSArray_String), t1 = A._setArrayType([A.ErrorSummary$(B.JSArray_methods.get$first(lines))], type$.JSArray_DiagnosticsNode), t2 = A.SubListIterable$(lines, 1, null, type$.String); B.JSArray_methods.addAll$1(t1, new A.MappedListIterable(t2, new A.FlutterError_FlutterError_closure(), t2.$ti._eval$1("MappedListIterable"))); return new A.FlutterError(t1); }, FlutterError$fromParts(diagnostics) { return new A.FlutterError(diagnostics); }, FlutterError__defaultStackTraceDemangler(stackTrace) { return stackTrace; }, FlutterError_dumpErrorToConsole(details, forceReport) { var t1 = details.silent; if (t1 && true) return; if ($.FlutterError__errorCount === 0 || false) { t1 = details.stack; A.debugPrintStack(J.toString$0$(details.exception), 100, t1); } else $.debugPrint.call$1("Another exception was thrown: " + details.get$summary().toString$0(0)); $.FlutterError__errorCount = $.FlutterError__errorCount + 1; }, FlutterError_defaultStackFilter($frames) { var skipped, index, t1, frame, className, $package, reasons, t2, _i, result, index0, t3, t4, suffix, removedPackagesAndClasses = A.LinkedHashMap_LinkedHashMap$_literal(["dart:async-patch", 0, "dart:async", 0, "package:stack_trace", 0, "class _AssertionError", 0, "class _FakeAsync", 0, "class _FrameCallbackEntry", 0, "class _Timer", 0, "class _RawReceivePortImpl", 0], type$.String, type$.int), parsedFrames = A.StackFrame_fromStackString(J.join$1$ax($frames, "\n")); for (skipped = 0, index = 0; t1 = parsedFrames.length, index < t1; ++index) { frame = parsedFrames[index]; className = "class " + A.S(frame.className); $package = frame.packageScheme + ":" + A.S(frame.$package); if (removedPackagesAndClasses.containsKey$1(0, className)) { ++skipped; removedPackagesAndClasses.update$2(removedPackagesAndClasses, className, new A.FlutterError_defaultStackFilter_closure()); B.JSArray_methods.removeAt$1(parsedFrames, index); --index; } else if (removedPackagesAndClasses.containsKey$1(0, $package)) { ++skipped; removedPackagesAndClasses.update$2(removedPackagesAndClasses, $package, new A.FlutterError_defaultStackFilter_closure0()); B.JSArray_methods.removeAt$1(parsedFrames, index); --index; } } reasons = A.List_List$filled(t1, null, false, type$.nullable_String); for (t2 = $.FlutterError__stackFilters.length, _i = 0; _i < $.FlutterError__stackFilters.length; $.FlutterError__stackFilters.length === t2 || (0, A.throwConcurrentModificationError)($.FlutterError__stackFilters), ++_i) $.FlutterError__stackFilters[_i].filter$2(0, parsedFrames, reasons); t2 = type$.JSArray_String; result = A._setArrayType([], t2); for (--t1, index = 0; index < parsedFrames.length; index = index0 + 1) { index0 = index; while (true) { if (index0 < t1) { t3 = reasons[index0]; t3 = t3 != null && J.$eq$(reasons[index0 + 1], t3); } else t3 = false; if (!t3) break; ++index0; } t3 = reasons[index0]; t4 = t3 == null; if (!t4) suffix = index0 !== index ? " (" + (index0 - index + 2) + " frames)" : " (1 frame)"; else suffix = ""; result.push(A.S(t4 ? parsedFrames[index0].source : t3) + suffix); } t1 = A._setArrayType([], t2); for (t2 = removedPackagesAndClasses.get$entries(removedPackagesAndClasses), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); if (t3.get$value(t3) > 0) t1.push(t3.get$key(t3)); } B.JSArray_methods.sort$0(t1); if (skipped === 1) result.push("(elided one frame from " + A.S(B.JSArray_methods.get$single(t1)) + ")"); else if (skipped > 1) { t2 = t1.length; if (t2 > 1) t1[t2 - 1] = "and " + A.S(B.JSArray_methods.get$last(t1)); t2 = "(elided " + skipped; if (t1.length > 2) result.push(t2 + " frames from " + B.JSArray_methods.join$1(t1, ", ") + ")"); else result.push(t2 + " frames from " + B.JSArray_methods.join$1(t1, " ") + ")"); } return result; }, FlutterError_reportError(details) { var t1 = $.$get$FlutterError_onError(); if (t1 != null) t1.call$1(details); }, debugPrintStack(label, maxFrames, stackTrace) { var lines, t1; if (label != null) $.debugPrint.call$1(label); lines = A._setArrayType(B.JSString_methods.trimRight$0(J.toString$0$(stackTrace == null ? A.StackTrace_current() : A.FlutterError__defaultStackTraceDemangler(stackTrace))).split("\n"), type$.JSArray_String); t1 = lines.length; lines = J.take$1$ax(t1 !== 0 ? new A.SkipWhileIterable(lines, new A.debugPrintStack_closure(), type$.SkipWhileIterable_String) : lines, maxFrames); $.debugPrint.call$1(B.JSArray_methods.join$1(A.FlutterError_defaultStackFilter(lines), "\n")); }, DiagnosticsStackTrace$($name, stack, stackFilter) { var t1 = A.DiagnosticsStackTrace__applyStackFilter(stack, stackFilter); return new A.DiagnosticsStackTrace(B.List_empty1, t1, "", stack, true, $name, true, true, null, B.DiagnosticsTreeStyle_7); }, DiagnosticsStackTrace__applyStackFilter(stack, stackFilter) { var filter; if (stack == null) return A._setArrayType([], type$.JSArray_DiagnosticsNode); filter = stackFilter == null ? A.assertions_FlutterError_defaultStackFilter$closure() : stackFilter; return J.map$1$1$ax(filter.call$1(A._setArrayType(B.JSString_methods.trimRight$0(A.S(A.FlutterError__defaultStackTraceDemangler(stack))).split("\n"), type$.JSArray_String)), A.assertions_DiagnosticsStackTrace__createStackFrame$closure(), type$.DiagnosticsNode).toList$0(0); }, DiagnosticsStackTrace__createStackFrame(frame) { return A.DiagnosticsNode_DiagnosticsNode$message(frame, false, B.DiagnosticsTreeStyle_8); }, _FlutterErrorDetailsNode$($name, style, value) { return new A._FlutterErrorDetailsNode(value, $name, true, true, null, style); }, _ErrorDiagnostic: function _ErrorDiagnostic() { }, ErrorDescription: function ErrorDescription(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._diagnostics$_description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorSummary: function ErrorSummary(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._diagnostics$_description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorHint: function ErrorHint(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._diagnostics$_description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorSpacer: function ErrorSpacer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._diagnostics$_description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, FlutterErrorDetails: function FlutterErrorDetails(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.exception = t0; _.stack = t1; _.library = t2; _.context = t3; _.stackFilter = t4; _.informationCollector = t5; _.silent = t6; }, FlutterErrorDetails_summary_formatException: function FlutterErrorDetails_summary_formatException(t0) { this.$this = t0; }, FlutterErrorDetails_summary_closure: function FlutterErrorDetails_summary_closure() { }, FlutterErrorDetails_summary_closure0: function FlutterErrorDetails_summary_closure0() { }, FlutterErrorDetails_debugFillProperties_closure: function FlutterErrorDetails_debugFillProperties_closure() { }, FlutterError: function FlutterError(t0) { this.diagnostics = t0; }, FlutterError_FlutterError_closure: function FlutterError_FlutterError_closure() { }, FlutterError_defaultStackFilter_closure: function FlutterError_defaultStackFilter_closure() { }, FlutterError_defaultStackFilter_closure0: function FlutterError_defaultStackFilter_closure0() { }, FlutterError_toString_closure: function FlutterError_toString_closure(t0) { this.renderer = t0; }, debugPrintStack_closure: function debugPrintStack_closure() { }, DiagnosticsStackTrace: function DiagnosticsStackTrace(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._diagnostics$_children = t0; _._properties = t1; _._diagnostics$_description = t2; _.value = t3; _.allowTruncate = t4; _.name = t5; _.showSeparator = t6; _.showName = t7; _.linePrefix = t8; _.style = t9; }, _FlutterErrorDetailsNode: function _FlutterErrorDetailsNode(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _._cachedBuilder = null; _.name = t1; _.showSeparator = t2; _.showName = t3; _.linePrefix = t4; _.style = t5; }, _FlutterError_Error_DiagnosticableTreeMixin: function _FlutterError_Error_DiagnosticableTreeMixin() { }, _FlutterErrorDetails_Object_Diagnosticable: function _FlutterErrorDetails_Object_Diagnosticable() { }, BindingBase: function BindingBase() { }, BindingBase_initServiceExtensions_closure: function BindingBase_initServiceExtensions_closure() { }, BindingBase_initServiceExtensions_closure0: function BindingBase_initServiceExtensions_closure0() { }, BindingBase_initServiceExtensions_closure1: function BindingBase_initServiceExtensions_closure1() { }, BindingBase_initServiceExtensions_closure2: function BindingBase_initServiceExtensions_closure2() { }, BindingBase_lockEvents_closure: function BindingBase_lockEvents_closure(t0, t1) { this.$this = t0; this.timelineTask = t1; }, BindingBase_registerBoolServiceExtension_closure: function BindingBase_registerBoolServiceExtension_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.setter = t1; _.name = t2; _.getter = t3; }, BindingBase_registerNumericServiceExtension_closure: function BindingBase_registerNumericServiceExtension_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.name = t1; _.setter = t2; _.getter = t3; }, BindingBase_registerStringServiceExtension_closure: function BindingBase_registerStringServiceExtension_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.setter = t1; _.name = t2; _.getter = t3; }, BindingBase_registerServiceExtension_closure: function BindingBase_registerServiceExtension_closure(t0, t1) { this.methodName = t0; this.callback = t1; }, BindingBase_registerServiceExtension__closure: function BindingBase_registerServiceExtension__closure() { }, DebugReassembleConfig: function DebugReassembleConfig(t0) { this.widgetName = t0; }, ValueNotifier$(_value, $T) { return new A.ValueNotifier(_value, $.$get$ChangeNotifier__emptyListeners(), $T._eval$1("ValueNotifier<0>")); }, Listenable: function Listenable() { }, ChangeNotifier: function ChangeNotifier() { }, ChangeNotifier_notifyListeners_closure: function ChangeNotifier_notifyListeners_closure(t0) { this.$this = t0; }, _MergingListenable: function _MergingListenable(t0) { this._change_notifier$_children = t0; }, ValueNotifier: function ValueNotifier(t0, t1, t2) { var _ = this; _._change_notifier$_value = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _.$ti = t2; }, TextTreeConfiguration$(addBlankLineIfNoChildren, afterDescriptionIfBody, afterName, afterProperties, beforeName, beforeProperties, bodyIndent, footer, isBlankLineBetweenPropertiesAndChildren, isNameOnOwnLine, lineBreak, lineBreakProperties, linkCharacter, mandatoryFooter, prefixLastChildLineOne, prefixLineOne, prefixOtherLines, prefixOtherLinesRootNode, propertyPrefixIfChildren, propertyPrefixNoChildren, propertySeparator, showChildren, suffixLineOne) { return new A.TextTreeConfiguration(prefixLineOne, suffixLineOne, prefixOtherLines, prefixLastChildLineOne, prefixOtherLinesRootNode, propertyPrefixIfChildren, propertyPrefixNoChildren, linkCharacter, B.JSString_methods.$mul(" ", linkCharacter.length), lineBreak, lineBreakProperties, beforeName, afterName, afterDescriptionIfBody, beforeProperties, afterProperties, propertySeparator, bodyIndent, showChildren, addBlankLineIfNoChildren, isNameOnOwnLine, footer, mandatoryFooter, isBlankLineBetweenPropertiesAndChildren); }, _PrefixedStringBuilder__wordWrapLine(message, wrapRanges, width, otherLineOffset, startOffset) { var wrappedLine, startForLengthCalculations, lastWordStart, noWrap, t2, index, mode, lastWordEnd, start, t3, _box_0 = {}, t1 = message.length; if (t1 + startOffset < width) return A._setArrayType([message], type$.JSArray_String); wrappedLine = A._setArrayType([], type$.JSArray_String); startForLengthCalculations = -startOffset; lastWordStart = A._Cell$named("lastWordStart"); _box_0.currentChunk = 0; noWrap = new A._PrefixedStringBuilder__wordWrapLine_noWrap(_box_0, wrapRanges); for (t2 = lastWordStart.__late_helper$_name, index = 0, mode = B._WordWrapParseMode_0, lastWordEnd = null, start = 0; true;) switch (mode.index) { case 0: while (true) { if (!(index < t1 && message[index] === " ")) break; ++index; } lastWordStart.__late_helper$_value = index; mode = B._WordWrapParseMode_1; break; case 1: while (true) { if (index < t1) t3 = message[index] !== " " || noWrap.call$1(index); else t3 = false; if (!t3) break; ++index; } mode = B._WordWrapParseMode_2; break; case 2: t3 = index - startForLengthCalculations; if (t3 > width || index === t1) { if (t3 <= width || lastWordEnd == null) lastWordEnd = index; wrappedLine.push(B.JSString_methods.substring$2(message, start, lastWordEnd)); if (lastWordEnd >= t1) return wrappedLine; if (lastWordEnd === index) { while (true) { if (!(index < t1 && message[index] === " ")) break; ++index; } start = index; mode = B._WordWrapParseMode_1; } else { start = lastWordStart.__late_helper$_value; if (start === lastWordStart) A.throwExpression(A.LateError$localNI(t2)); mode = B._WordWrapParseMode_2; } startForLengthCalculations = start - otherLineOffset; lastWordEnd = null; } else { lastWordEnd = index; mode = B._WordWrapParseMode_0; } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, DiagnosticsNode_DiagnosticsNode$message(message, allowWrap, style) { var _null = null; return A.DiagnosticsProperty$("", _null, allowWrap, B.C__NoDefaultValue, message, false, _null, _null, B.DiagnosticLevel_3, _null, false, false, true, style, _null, type$.void); }, DiagnosticsProperty$($name, value, allowWrap, defaultValue, description, expandableValue, ifEmpty, ifNull, level, linePrefix, missingIfNull, showName, showSeparator, style, tooltip, $T) { var t1; if (ifNull == null) t1 = missingIfNull ? "MISSING" : null; else t1 = ifNull; return new A.DiagnosticsProperty(description, false, allowWrap, t1, ifEmpty, tooltip, missingIfNull, value, true, defaultValue, level, null, $name, showSeparator, showName, linePrefix, style, $T._eval$1("DiagnosticsProperty<0>")); }, DiagnosticableTreeNode$($name, style, value) { return new A.DiagnosticableTreeNode(value, $name, true, true, null, style); }, shortHash(object) { var t1 = J.get$hashCode$(object); t1.toString; return B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(t1 & 1048575, 16), 5, "0"); }, describeEnum(enumEntry) { var description; if (type$.Enum._is(enumEntry)) return enumEntry._core$_name; description = J.toString$0$(enumEntry); return B.JSString_methods.substring$1(description, J.indexOf$1$asx(description, ".") + 1); }, DiagnosticLevel: function DiagnosticLevel(t0, t1) { this.index = t0; this._core$_name = t1; }, DiagnosticsTreeStyle: function DiagnosticsTreeStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, TextTreeConfiguration: function TextTreeConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.prefixLineOne = t0; _.suffixLineOne = t1; _.prefixOtherLines = t2; _.prefixLastChildLineOne = t3; _.prefixOtherLinesRootNode = t4; _.propertyPrefixIfChildren = t5; _.propertyPrefixNoChildren = t6; _.linkCharacter = t7; _.childLinkSpace = t8; _.lineBreak = t9; _.lineBreakProperties = t10; _.beforeName = t11; _.afterName = t12; _.afterDescriptionIfBody = t13; _.beforeProperties = t14; _.afterProperties = t15; _.propertySeparator = t16; _.bodyIndent = t17; _.showChildren = t18; _.addBlankLineIfNoChildren = t19; _.isNameOnOwnLine = t20; _.footer = t21; _.mandatoryFooter = t22; _.isBlankLineBetweenPropertiesAndChildren = t23; }, _WordWrapParseMode: function _WordWrapParseMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _PrefixedStringBuilder: function _PrefixedStringBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _.prefixLineOne = t0; _._prefixOtherLines = t1; _._nextPrefixOtherLines = null; _.wrapWidth = t2; _._diagnostics$_buffer = t3; _._diagnostics$_currentLine = t4; _._wrappableRanges = t5; _._numLines = 0; }, _PrefixedStringBuilder__wordWrapLine_noWrap: function _PrefixedStringBuilder__wordWrapLine_noWrap(t0, t1) { this._box_0 = t0; this.wrapRanges = t1; }, _NoDefaultValue: function _NoDefaultValue() { }, TextTreeRenderer: function TextTreeRenderer(t0, t1, t2, t3) { var _ = this; _._wrapWidth = t0; _._wrapWidthProperties = t1; _._minLevel = t2; _._maxDescendentsTruncatableNode = t3; }, TextTreeRenderer__debugRender_visitor: function TextTreeRenderer__debugRender_visitor(t0, t1) { this._box_0 = t0; this.descendants = t1; }, TextTreeRenderer__debugRender_closure: function TextTreeRenderer__debugRender_closure(t0) { this.$this = t0; }, DiagnosticsNode: function DiagnosticsNode() { }, DiagnosticsProperty: function DiagnosticsProperty(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _._diagnostics$_description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; _.$ti = t17; }, DiagnosticableNode: function DiagnosticableNode() { }, DiagnosticableTreeNode: function DiagnosticableTreeNode(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _._cachedBuilder = null; _.name = t1; _.showSeparator = t2; _.showName = t3; _.linePrefix = t4; _.style = t5; }, DiagnosticPropertiesBuilder: function DiagnosticPropertiesBuilder(t0, t1) { this.properties = t0; this.defaultDiagnosticsTreeStyle = t1; this.emptyBodyDescription = null; }, Diagnosticable: function Diagnosticable() { }, DiagnosticableTree: function DiagnosticableTree() { }, DiagnosticableTreeMixin: function DiagnosticableTreeMixin() { }, DiagnosticsBlock: function DiagnosticsBlock() { }, _DiagnosticableTree_Object_Diagnosticable: function _DiagnosticableTree_Object_Diagnosticable() { }, UniqueKey$() { return new A.UniqueKey(); }, Key: function Key() { }, LocalKey: function LocalKey() { }, UniqueKey: function UniqueKey() { }, ValueKey: function ValueKey(t0, t1) { this.value = t0; this.$ti = t1; }, _TypeLiteral: function _TypeLiteral(t0) { this.$ti = t0; }, LicenseRegistry_licenses() { if ($.LicenseRegistry__collectors == null) return B.C__EmptyStream; var controller = A._Cell$named("controller"); controller.set$finalLocalValue(A.StreamController_StreamController(null, new A.LicenseRegistry_licenses_closure(controller), null, false, type$.LicenseEntry)); return J.get$stream$z(controller._readLocal$0()); }, LicenseParagraph: function LicenseParagraph(t0, t1) { this.text = t0; this.indent = t1; }, LicenseEntry: function LicenseEntry() { }, _LicenseEntryWithLineBreaksParserState: function _LicenseEntryWithLineBreaksParserState(t0, t1) { this.index = t0; this._core$_name = t1; }, LicenseEntryWithLineBreaks: function LicenseEntryWithLineBreaks(t0, t1) { this.packages = t0; this.text = t1; }, LicenseEntryWithLineBreaks_paragraphs_addLine: function LicenseEntryWithLineBreaks_paragraphs_addLine(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.lines = t2; }, LicenseEntryWithLineBreaks_paragraphs_getParagraph: function LicenseEntryWithLineBreaks_paragraphs_getParagraph(t0, t1) { this._box_0 = t0; this.lines = t1; }, LicenseRegistry_licenses_closure: function LicenseRegistry_licenses_closure(t0) { this.controller = t0; }, AbstractNode: function AbstractNode() { }, ObserverList$($T) { return new A.ObserverList(A._setArrayType([], $T._eval$1("JSArray<0>")), $T._eval$1("ObserverList<0>")); }, ObserverList: function ObserverList(t0, t1) { var _ = this; _._observer_list$_list = t0; _._isDirty = false; _.__ObserverList__set = $; _.$ti = t1; }, HashedObserverList: function HashedObserverList(t0, t1) { this._observer_list$_map = t0; this.$ti = t1; }, TargetPlatform: function TargetPlatform(t0, t1) { this.index = t0; this._core$_name = t1; }, WriteBuffer_WriteBuffer() { var eightBytes = new DataView(new ArrayBuffer(8)), eightBytesAsList = A.NativeUint8List_NativeUint8List$view(eightBytes.buffer, 0, null); return new A.WriteBuffer(new Uint8Array(8), eightBytes, eightBytesAsList); }, WriteBuffer: function WriteBuffer(t0, t1, t2) { var _ = this; _._serialization$_buffer = t0; _._currentSize = 0; _._isDone = false; _._eightBytes = t1; _._eightBytesAsList = t2; }, ReadBuffer: function ReadBuffer(t0) { this.data = t0; this._serialization$_position = 0; }, StackFrame_fromStackString(stack) { var t1 = type$.WhereTypeIterable_StackFrame; return A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(A._setArrayType(B.JSString_methods.trim$0(stack).split("\n"), type$.JSArray_String), new A.StackFrame_fromStackString_closure(), type$.WhereIterable_String), A.stack_frame_StackFrame_fromStackTraceLine$closure(), type$.MappedIterable_of_String_and_nullable_StackFrame), t1), true, t1._eval$1("Iterable.E")); }, StackFrame__parseWebFrame(line) { var t1 = A.StackFrame__parseWebNonDebugFrame(line); return t1; }, StackFrame__parseWebNonDebugFrame(line) { var classAndMethod, className, _s9_ = "", match = $.$get$StackFrame__webNonDebugFramePattern().firstMatch$1(line); if (match == null) return null; classAndMethod = A._setArrayType(match._match[1].split("."), type$.JSArray_String); className = classAndMethod.length > 1 ? B.JSArray_methods.get$first(classAndMethod) : _s9_; return new A.StackFrame(line, -1, _s9_, _s9_, _s9_, -1, -1, className, classAndMethod.length > 1 ? A.SubListIterable$(classAndMethod, 1, null, type$.String).join$1(0, ".") : B.JSArray_methods.get$single(classAndMethod)); }, StackFrame_fromStackTraceLine(line) { var t1, t2, method, className, parts, packageUri, packagePath, $package, t3, t4, _null = null, _s9_ = ""; if (line === "") return B.StackFrame_SOW; else if (line === "...") return B.StackFrame_8sg; if (!J.startsWith$1$s(line, "#")) return A.StackFrame__parseWebFrame(line); t1 = A.RegExp_RegExp("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$", true, false, false, false).firstMatch$1(line)._match; t2 = t1[2]; t2.toString; method = A.stringReplaceAllUnchecked(t2, ".", ""); if (B.JSString_methods.startsWith$1(method, "new")) { className = method.split(" ").length > 1 ? method.split(" ")[1] : _s9_; if (J.contains$1$asx(className, ".")) { parts = className.split("."); className = parts[0]; method = parts[1]; } else method = ""; } else if (B.JSString_methods.contains$1(method, ".")) { parts = method.split("."); className = parts[0]; method = parts[1]; } else className = ""; t2 = t1[3]; t2.toString; packageUri = A.Uri_parse(t2, 0, _null); packagePath = packageUri.get$path(packageUri); if (packageUri.get$scheme() === "dart" || packageUri.get$scheme() === "package") { $package = packageUri.get$pathSegments()[0]; packagePath = B.JSString_methods.replaceFirst$2(packageUri.get$path(packageUri), A.S(packageUri.get$pathSegments()[0]) + "/", ""); } else $package = _s9_; t2 = t1[1]; t2.toString; t2 = A.int_parse(t2, _null); t3 = packageUri.get$scheme(); t4 = t1[4]; if (t4 == null) t4 = -1; else { t4 = t4; t4.toString; t4 = A.int_parse(t4, _null); } t1 = t1[5]; if (t1 == null) t1 = -1; else { t1 = t1; t1.toString; t1 = A.int_parse(t1, _null); } return new A.StackFrame(line, t2, t3, $package, packagePath, t4, t1, className, method); }, StackFrame: function StackFrame(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.source = t0; _.number = t1; _.packageScheme = t2; _.$package = t3; _.packagePath = t4; _.line = t5; _.column = t6; _.className = t7; _.method = t8; }, StackFrame_fromStackString_closure: function StackFrame_fromStackString_closure() { }, SynchronousFuture: function SynchronousFuture(t0, t1) { this._synchronous_future$_value = t0; this.$ti = t1; }, SynchronousFuture_whenComplete_closure: function SynchronousFuture_whenComplete_closure(t0) { this.$this = t0; }, GestureDisposition: function GestureDisposition(t0, t1) { this.index = t0; this._core$_name = t1; }, GestureArenaMember: function GestureArenaMember() { }, GestureArenaEntry: function GestureArenaEntry(t0, t1, t2) { this._arena = t0; this._arena$_pointer = t1; this._member = t2; }, _GestureArena: function _GestureArena(t0) { var _ = this; _.members = t0; _.isOpen = true; _.hasPendingSweep = _.isHeld = false; _.eagerWinner = null; }, _GestureArena_toString_closure: function _GestureArena_toString_closure(t0) { this.$this = t0; }, GestureArenaManager: function GestureArenaManager(t0) { this._arenas = t0; }, GestureArenaManager_add_closure: function GestureArenaManager_add_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, GestureArenaManager__tryToResolveArena_closure: function GestureArenaManager__tryToResolveArena_closure(t0, t1, t2) { this.$this = t0; this.pointer = t1; this.state = t2; }, FlutterErrorDetailsForPointerEventDispatcher$(context, $event, exception, hitTestEntry, informationCollector, library, stack) { return new A.FlutterErrorDetailsForPointerEventDispatcher(exception, stack, library, context, null, informationCollector, false); }, _Resampler: function _Resampler(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._resamplers = t0; _._binding$_frameCallbackScheduled = false; _._frameTime = t1; _._frameTimeAge = t2; _._lastSampleTime = t3; _._lastEventTime = t4; _._handlePointerEvent = t5; _._handleSampleTimeChanged = t6; _._samplingInterval = t7; _._binding$_timer = null; }, GestureBinding: function GestureBinding() { }, GestureBinding_dispatchEvent_closure: function GestureBinding_dispatchEvent_closure(t0) { this.event = t0; }, GestureBinding_dispatchEvent_closure0: function GestureBinding_dispatchEvent_closure0(t0, t1) { this.event = t0; this.entry = t1; }, FlutterErrorDetailsForPointerEventDispatcher: function FlutterErrorDetailsForPointerEventDispatcher(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.exception = t0; _.stack = t1; _.library = t2; _.context = t3; _.stackFilter = t4; _.informationCollector = t5; _.silent = t6; }, _synthesiseDownButtons(buttons, kind) { switch (kind.index) { case 1: return buttons; case 0: case 2: case 3: return buttons === 0 ? 1 : buttons; case 5: default: return buttons === 0 ? 1 : buttons; } }, PointerEventConverter_expand(data, devicePixelRatio) { var t1 = A._arrayInstanceType(data); return new A.MappedIterable(new A.WhereIterable(data, new A.PointerEventConverter_expand_closure(), t1._eval$1("WhereIterable<1>")), new A.PointerEventConverter_expand_closure0(devicePixelRatio), t1._eval$1("MappedIterable<1,PointerEvent>")); }, PointerEventConverter_expand_closure: function PointerEventConverter_expand_closure() { }, PointerEventConverter_expand_closure0: function PointerEventConverter_expand_closure0(t0) { this.devicePixelRatio = t0; }, Drag: function Drag() { }, DragDownDetails: function DragDownDetails(t0) { this.globalPosition = t0; }, DragStartDetails: function DragStartDetails(t0, t1, t2, t3) { var _ = this; _.sourceTimeStamp = t0; _.globalPosition = t1; _.localPosition = t2; _.kind = t3; }, DragUpdateDetails: function DragUpdateDetails(t0, t1, t2, t3, t4) { var _ = this; _.sourceTimeStamp = t0; _.delta = t1; _.primaryDelta = t2; _.globalPosition = t3; _.localPosition = t4; }, DragEndDetails: function DragEndDetails(t0, t1) { this.velocity = t0; this.primaryVelocity = t1; }, PointerEvent_transformPosition(transform, position) { var t1, t2, position3; if (transform == null) return position; t1 = position._dx; t2 = position._dy; position3 = new A.Vector3(new Float64Array(3)); position3.setValues$3(t1, t2, 0); t1 = transform.perspectiveTransform$1(position3)._v3storage; return new A.Offset(t1[0], t1[1]); }, PointerEvent_transformDeltaViaPositions(transform, transformedEndPosition, untransformedDelta, untransformedEndPosition) { if (transform == null) return untransformedDelta; if (transformedEndPosition == null) transformedEndPosition = A.PointerEvent_transformPosition(transform, untransformedEndPosition); return transformedEndPosition.$sub(0, A.PointerEvent_transformPosition(transform, untransformedEndPosition.$sub(0, untransformedDelta))); }, PointerEvent_removePerspectiveTransform(transform) { var t2, t3, t1 = new Float64Array(4), vector = new A.Vector4(t1); vector.setValues$4(0, 0, 1, 0); transform.toString; t2 = new Float64Array(16); t3 = new A.Matrix4(t2); t3.setFrom$1(transform); t2[11] = t1[3]; t2[10] = t1[2]; t2[9] = t1[1]; t2[8] = t1[0]; t3.setRow$2(2, vector); return t3; }, PointerAddedEvent$(device, distance, distanceMax, embedderId, kind, obscured, orientation, position, pressureMax, pressureMin, radiusMax, radiusMin, tilt, timeStamp) { return new A.PointerAddedEvent(embedderId, timeStamp, 0, kind, device, position, B.Offset_0_0, 0, false, false, 0, pressureMin, pressureMax, distance, distanceMax, 0, 0, 0, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerRemovedEvent$(device, distanceMax, embedderId, kind, obscured, position, pressureMax, pressureMin, radiusMax, radiusMin, timeStamp) { return new A.PointerRemovedEvent(embedderId, timeStamp, 0, kind, device, position, B.Offset_0_0, 0, false, false, 0, pressureMin, pressureMax, 0, distanceMax, 0, 0, 0, radiusMin, radiusMax, 0, 0, 0, false, null, null); }, PointerHoverEvent$(buttons, delta, device, distance, distanceMax, embedderId, kind, obscured, orientation, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new A.PointerHoverEvent(embedderId, timeStamp, 0, kind, device, position, delta, buttons, false, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerEnterEvent$(buttons, delta, device, distance, distanceMax, down, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new A.PointerEnterEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, down, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerExitEvent$(buttons, delta, device, distance, distanceMax, down, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new A.PointerExitEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, down, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerDownEvent$(buttons, device, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new A.PointerDownEvent(embedderId, timeStamp, pointer, kind, device, position, B.Offset_0_0, buttons, true, false, pressure, pressureMin, pressureMax, 0, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerMoveEvent$(buttons, delta, device, distanceMax, embedderId, kind, obscured, orientation, platformData, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new A.PointerMoveEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, true, false, pressure, pressureMin, pressureMax, 0, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, platformData, synthesized, null, null); }, PointerUpEvent$(buttons, device, distance, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new A.PointerUpEvent(embedderId, timeStamp, pointer, kind, device, position, B.Offset_0_0, buttons, false, false, pressure, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerScrollEvent$(device, embedderId, kind, position, scrollDelta, timeStamp) { return new A.PointerScrollEvent(scrollDelta, embedderId, timeStamp, 0, kind, device, position, B.Offset_0_0, 0, false, false, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, null, null); }, PointerCancelEvent$(buttons, device, distance, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new A.PointerCancelEvent(embedderId, timeStamp, pointer, kind, device, position, B.Offset_0_0, buttons, false, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, computeHitSlop(kind, settings) { var t1; switch (kind.index) { case 1: return 1; case 2: case 3: case 5: case 0: default: t1 = settings == null ? null : settings.touchSlop; return t1 == null ? 18 : t1; } }, computePanSlop(kind, settings) { var t1; switch (kind.index) { case 1: return 2; case 2: case 3: case 5: case 0: default: if (settings == null) t1 = null; else { t1 = settings.touchSlop; t1 = t1 != null ? t1 * 2 : null; } return t1 == null ? 36 : t1; } }, computeScaleSlop(kind) { switch (kind.index) { case 1: return 1; case 2: case 3: case 5: case 0: default: return 18; } }, PointerEvent: function PointerEvent() { }, _PointerEventDescription: function _PointerEventDescription() { }, _AbstractPointerEvent: function _AbstractPointerEvent() { }, _TransformedPointerEvent: function _TransformedPointerEvent() { }, _CopyPointerAddedEvent: function _CopyPointerAddedEvent() { }, PointerAddedEvent: function PointerAddedEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerAddedEvent: function _TransformedPointerAddedEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerRemovedEvent: function _CopyPointerRemovedEvent() { }, PointerRemovedEvent: function PointerRemovedEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerRemovedEvent: function _TransformedPointerRemovedEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerHoverEvent: function _CopyPointerHoverEvent() { }, PointerHoverEvent: function PointerHoverEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerHoverEvent: function _TransformedPointerHoverEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerEnterEvent: function _CopyPointerEnterEvent() { }, PointerEnterEvent: function PointerEnterEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerEnterEvent: function _TransformedPointerEnterEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerExitEvent: function _CopyPointerExitEvent() { }, PointerExitEvent: function PointerExitEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerExitEvent: function _TransformedPointerExitEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerDownEvent: function _CopyPointerDownEvent() { }, PointerDownEvent: function PointerDownEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerDownEvent: function _TransformedPointerDownEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerMoveEvent: function _CopyPointerMoveEvent() { }, PointerMoveEvent: function PointerMoveEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerMoveEvent: function _TransformedPointerMoveEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerUpEvent: function _CopyPointerUpEvent() { }, PointerUpEvent: function PointerUpEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerUpEvent: function _TransformedPointerUpEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, PointerSignalEvent: function PointerSignalEvent() { }, _CopyPointerScrollEvent: function _CopyPointerScrollEvent() { }, PointerScrollEvent: function PointerScrollEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.scrollDelta = t0; _.embedderId = t1; _.timeStamp = t2; _.pointer = t3; _.kind = t4; _.device = t5; _.position = t6; _.delta = t7; _.buttons = t8; _.down = t9; _.obscured = t10; _.pressure = t11; _.pressureMin = t12; _.pressureMax = t13; _.distance = t14; _.distanceMax = t15; _.size = t16; _.radiusMajor = t17; _.radiusMinor = t18; _.radiusMin = t19; _.radiusMax = t20; _.orientation = t21; _.tilt = t22; _.platformData = t23; _.synthesized = t24; _.transform = t25; _.original = t26; }, _TransformedPointerScrollEvent: function _TransformedPointerScrollEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerCancelEvent: function _CopyPointerCancelEvent() { }, PointerCancelEvent: function PointerCancelEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerCancelEvent: function _TransformedPointerCancelEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _PointerAddedEvent_PointerEvent__PointerEventDescription: function _PointerAddedEvent_PointerEvent__PointerEventDescription() { }, _PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent: function _PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent() { }, _PointerCancelEvent_PointerEvent__PointerEventDescription: function _PointerCancelEvent_PointerEvent__PointerEventDescription() { }, _PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent: function _PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent() { }, _PointerDownEvent_PointerEvent__PointerEventDescription: function _PointerDownEvent_PointerEvent__PointerEventDescription() { }, _PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent: function _PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent() { }, _PointerEnterEvent_PointerEvent__PointerEventDescription: function _PointerEnterEvent_PointerEvent__PointerEventDescription() { }, _PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent: function _PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent() { }, _PointerEvent_Object_Diagnosticable: function _PointerEvent_Object_Diagnosticable() { }, _PointerExitEvent_PointerEvent__PointerEventDescription: function _PointerExitEvent_PointerEvent__PointerEventDescription() { }, _PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent: function _PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent() { }, _PointerHoverEvent_PointerEvent__PointerEventDescription: function _PointerHoverEvent_PointerEvent__PointerEventDescription() { }, _PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent: function _PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent() { }, _PointerMoveEvent_PointerEvent__PointerEventDescription: function _PointerMoveEvent_PointerEvent__PointerEventDescription() { }, _PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent: function _PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent() { }, _PointerRemovedEvent_PointerEvent__PointerEventDescription: function _PointerRemovedEvent_PointerEvent__PointerEventDescription() { }, _PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent: function _PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent() { }, _PointerScrollEvent_PointerSignalEvent__PointerEventDescription: function _PointerScrollEvent_PointerSignalEvent__PointerEventDescription() { }, _PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent: function _PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent() { }, _PointerUpEvent_PointerEvent__PointerEventDescription: function _PointerUpEvent_PointerEvent__PointerEventDescription() { }, _PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent: function _PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent() { }, __TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent: function __TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent() { }, __TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent: function __TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent() { }, __TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent: function __TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent() { }, __TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent: function __TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent() { }, __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable: function __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable() { }, __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription: function __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription() { }, __TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent: function __TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent() { }, __TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent: function __TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent() { }, __TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent: function __TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent() { }, __TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent: function __TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent() { }, __TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent: function __TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent() { }, __TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent: function __TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent() { }, ForcePressGestureRecognizer$(debugOwner) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.ForcePressGestureRecognizer(B._ForceState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, debugOwner, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, ForcePressGestureRecognizer__inverseLerp(min, max, t) { var value = (t - min) / (max - min); return !isNaN(value) ? B.JSNumber_methods.clamp$2(value, 0, 1) : value; }, _ForceState: function _ForceState(t0, t1) { this.index = t0; this._core$_name = t1; }, ForcePressDetails: function ForcePressDetails(t0) { this.globalPosition = t0; }, ForcePressGestureRecognizer: function ForcePressGestureRecognizer(t0, t1, t2, t3, t4, t5) { var _ = this; _.onEnd = _.onPeak = _.onUpdate = _.onStart = null; _.__ForcePressGestureRecognizer__lastPressure = _.__ForcePressGestureRecognizer__lastPosition = $; _._force_press$_state = t0; _._recognizer$_entries = t1; _._trackedPointers = t2; _._team = null; _.debugOwner = t3; _.gestureSettings = null; _._supportedDevices = t4; _._pointerToKind = t5; }, ForcePressGestureRecognizer_handleEvent_closure: function ForcePressGestureRecognizer_handleEvent_closure(t0, t1) { this.$this = t0; this.pressure = t1; }, ForcePressGestureRecognizer_acceptGesture_closure: function ForcePressGestureRecognizer_acceptGesture_closure(t0) { this.$this = t0; }, ForcePressGestureRecognizer_didStopTrackingLastPointer_closure: function ForcePressGestureRecognizer_didStopTrackingLastPointer_closure(t0) { this.$this = t0; }, DeviceGestureSettings: function DeviceGestureSettings(t0) { this.touchSlop = t0; }, HitTestResult$() { var t1 = A._setArrayType([], type$.JSArray_HitTestEntry_HitTestTarget), t2 = new A.Matrix4(new Float64Array(16)); t2.setIdentity$0(); return new A.HitTestResult(t1, A._setArrayType([t2], type$.JSArray_Matrix4_2), A._setArrayType([], type$.JSArray__TransformPart)); }, HitTestEntry: function HitTestEntry(t0, t1) { this.target = t0; this._transform = null; this.$ti = t1; }, _TransformPart: function _TransformPart() { }, _MatrixTransformPart: function _MatrixTransformPart(t0) { this.matrix = t0; }, _OffsetTransformPart: function _OffsetTransformPart(t0) { this.offset = t0; }, HitTestResult: function HitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, LongPressGestureRecognizer$(debugOwner, duration, kind, postAcceptSlopTolerance, supportedDevices) { var t1 = duration == null ? B.Duration_500000 : duration, t2 = type$.int, t3 = A.HashSet_HashSet(t2), t4 = type$.PointerDeviceKind, t5 = kind == null ? supportedDevices : A.LinkedHashSet_LinkedHashSet$_literal([kind], t4); return new A.LongPressGestureRecognizer(t1, postAcceptSlopTolerance, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), t3, debugOwner, t5, A.LinkedHashMap_LinkedHashMap$_empty(t2, t4)); }, LongPressStartDetails: function LongPressStartDetails(t0, t1) { this.globalPosition = t0; this.localPosition = t1; }, LongPressMoveUpdateDetails: function LongPressMoveUpdateDetails(t0, t1, t2) { this.globalPosition = t0; this.localPosition = t1; this.offsetFromOrigin = t2; }, LongPressEndDetails: function LongPressEndDetails(t0, t1) { this.localPosition = t0; this.velocity = t1; }, LongPressGestureRecognizer: function LongPressGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._longPressAccepted = false; _._velocityTracker = _.onTertiaryLongPressEnd = _.onTertiaryLongPressUp = _.onTertiaryLongPressMoveUpdate = _.onTertiaryLongPressStart = _.onTertiaryLongPress = _.onTertiaryLongPressCancel = _.onTertiaryLongPressDown = _.onSecondaryLongPressEnd = _.onSecondaryLongPressUp = _.onSecondaryLongPressMoveUpdate = _.onSecondaryLongPressStart = _.onSecondaryLongPress = _.onSecondaryLongPressCancel = _.onSecondaryLongPressDown = _.onLongPressEnd = _.onLongPressUp = _.onLongPressMoveUpdate = _.onLongPressStart = _.onLongPress = _.onLongPressCancel = _.onLongPressDown = _._long_press$_initialButtons = _._longPressOrigin = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _._recognizer$_state = t2; _._initialPosition = _._primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _.gestureSettings = null; _._supportedDevices = t6; _._pointerToKind = t7; }, LongPressGestureRecognizer__checkLongPressStart_closure: function LongPressGestureRecognizer__checkLongPressStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, LongPressGestureRecognizer__checkLongPressMoveUpdate_closure: function LongPressGestureRecognizer__checkLongPressMoveUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, LongPressGestureRecognizer__checkLongPressEnd_closure: function LongPressGestureRecognizer__checkLongPressEnd_closure(t0, t1) { this.$this = t0; this.details = t1; }, _Vector: function _Vector(t0, t1, t2) { this._lsq_solver$_offset = t0; this._lsq_solver$_length = t1; this._lsq_solver$_elements = t2; }, _Matrix: function _Matrix(t0, t1) { this._lsq_solver$_columns = t0; this._lsq_solver$_elements = t1; }, PolynomialFit: function PolynomialFit(t0) { this.coefficients = t0; this.__PolynomialFit_confidence = $; }, LeastSquaresSolver: function LeastSquaresSolver(t0, t1, t2) { this.x = t0; this.y = t1; this.w = t2; }, DragGestureRecognizer__defaultBuilder($event) { return new A.VelocityTracker($event.get$kind($event), A.List_List$filled(20, null, false, type$.nullable__PointAtTime)); }, VerticalDragGestureRecognizer$(debugOwner, supportedDevices) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.VerticalDragGestureRecognizer(B.DragStartBehavior_1, A.monodrag_DragGestureRecognizer__defaultBuilder$closure(), B._DragState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, debugOwner, supportedDevices, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, HorizontalDragGestureRecognizer$(debugOwner, supportedDevices) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.HorizontalDragGestureRecognizer(B.DragStartBehavior_1, A.monodrag_DragGestureRecognizer__defaultBuilder$closure(), B._DragState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, debugOwner, supportedDevices, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, PanGestureRecognizer$(debugOwner, supportedDevices) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.PanGestureRecognizer(B.DragStartBehavior_1, A.monodrag_DragGestureRecognizer__defaultBuilder$closure(), B._DragState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, debugOwner, supportedDevices, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, _DragState: function _DragState(t0, t1) { this.index = t0; this._core$_name = t1; }, DragGestureRecognizer: function DragGestureRecognizer() { }, DragGestureRecognizer__checkDown_closure: function DragGestureRecognizer__checkDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkStart_closure: function DragGestureRecognizer__checkStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkUpdate_closure: function DragGestureRecognizer__checkUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkEnd_closure: function DragGestureRecognizer__checkEnd_closure(t0, t1) { this.estimate = t0; this.velocity = t1; }, DragGestureRecognizer__checkEnd_closure0: function DragGestureRecognizer__checkEnd_closure0(t0) { this.estimate = t0; }, DragGestureRecognizer__checkEnd_closure1: function DragGestureRecognizer__checkEnd_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, VerticalDragGestureRecognizer: function VerticalDragGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _.gestureSettings = null; _._supportedDevices = t8; _._pointerToKind = t9; }, HorizontalDragGestureRecognizer: function HorizontalDragGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _.gestureSettings = null; _._supportedDevices = t8; _._pointerToKind = t9; }, PanGestureRecognizer: function PanGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _.gestureSettings = null; _._supportedDevices = t8; _._pointerToKind = t9; }, MultiDragPointerState: function MultiDragPointerState() { }, MultiDragGestureRecognizer: function MultiDragGestureRecognizer() { }, MultiDragGestureRecognizer_acceptGesture_closure: function MultiDragGestureRecognizer_acceptGesture_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, MultiDragGestureRecognizer__startDrag_closure: function MultiDragGestureRecognizer__startDrag_closure(t0, t1) { this.$this = t0; this.initialPosition = t1; }, _ImmediatePointerState: function _ImmediatePointerState(t0, t1, t2, t3, t4) { var _ = this; _.gestureSettings = t0; _.initialPosition = t1; _._multidrag$_velocityTracker = t2; _.kind = t3; _._multidrag$_client = null; _._pendingDelta = t4; _._arenaEntry = _._multidrag$_lastPendingEventTimestamp = null; }, ImmediateMultiDragGestureRecognizer: function ImmediateMultiDragGestureRecognizer(t0, t1, t2, t3) { var _ = this; _.onStart = null; _._multidrag$_pointers = t0; _.debugOwner = t1; _.gestureSettings = null; _._supportedDevices = t2; _._pointerToKind = t3; }, _DelayedPointerState: function _DelayedPointerState(t0, t1, t2, t3, t4) { var _ = this; _._starter = _._multidrag$_timer = null; _.gestureSettings = t0; _.initialPosition = t1; _._multidrag$_velocityTracker = t2; _.kind = t3; _._multidrag$_client = null; _._pendingDelta = t4; _._arenaEntry = _._multidrag$_lastPendingEventTimestamp = null; }, DelayedMultiDragGestureRecognizer: function DelayedMultiDragGestureRecognizer(t0, t1, t2, t3) { var _ = this; _.onStart = null; _._multidrag$_pointers = t0; _.debugOwner = t1; _.gestureSettings = null; _._supportedDevices = t2; _._pointerToKind = t3; }, _CountdownZoned: function _CountdownZoned() { this._timeout = false; }, _TapTracker: function _TapTracker(t0, t1, t2, t3, t4) { var _ = this; _.pointer = t0; _.entry = t1; _._initialGlobalPosition = t2; _.initialButtons = t3; _._doubleTapMinTimeCountdown = t4; _._isTrackingPointer = false; }, DoubleTapGestureRecognizer: function DoubleTapGestureRecognizer(t0, t1, t2, t3) { var _ = this; _._firstTap = _._doubleTapTimer = _.onDoubleTapCancel = _.onDoubleTap = _.onDoubleTapDown = null; _._trackers = t0; _.debugOwner = t1; _.gestureSettings = null; _._supportedDevices = t2; _._pointerToKind = t3; }, PointerRouter: function PointerRouter(t0, t1) { this._routeMap = t0; this._globalRoutes = t1; }, PointerRouter_addRoute_closure: function PointerRouter_addRoute_closure() { }, PointerRouter__dispatchEventToRoutes_closure: function PointerRouter__dispatchEventToRoutes_closure(t0, t1, t2) { this.$this = t0; this.referenceRoutes = t1; this.event = t2; }, PointerSignalResolver: function PointerSignalResolver() { this._currentEvent = this._firstRegisteredCallback = null; }, DragStartBehavior: function DragStartBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, GestureRecognizer: function GestureRecognizer() { }, OneSequenceGestureRecognizer: function OneSequenceGestureRecognizer() { }, GestureRecognizerState: function GestureRecognizerState(t0, t1) { this.index = t0; this._core$_name = t1; }, PrimaryPointerGestureRecognizer: function PrimaryPointerGestureRecognizer() { }, PrimaryPointerGestureRecognizer_addAllowedPointer_closure: function PrimaryPointerGestureRecognizer_addAllowedPointer_closure(t0, t1) { this.$this = t0; this.event = t1; }, OffsetPair: function OffsetPair(t0, t1) { this.local = t0; this.global = t1; }, _GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin: function _GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin() { }, ScaleUpdateDetails$(focalPoint, focalPointDelta, horizontalScale, localFocalPoint, pointerCount, rotation, scale, verticalScale) { return new A.ScaleUpdateDetails(focalPoint, localFocalPoint == null ? focalPoint : localFocalPoint, scale, horizontalScale, verticalScale, rotation, pointerCount); }, _ScaleState: function _ScaleState(t0, t1) { this.index = t0; this._core$_name = t1; }, ScaleStartDetails: function ScaleStartDetails(t0, t1, t2) { this.focalPoint = t0; this.localFocalPoint = t1; this.pointerCount = t2; }, ScaleUpdateDetails: function ScaleUpdateDetails(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.focalPoint = t0; _.localFocalPoint = t1; _.scale = t2; _.horizontalScale = t3; _.verticalScale = t4; _.rotation = t5; _.pointerCount = t6; }, ScaleEndDetails: function ScaleEndDetails(t0, t1) { this.velocity = t0; this.pointerCount = t1; }, _LineBetweenPointers: function _LineBetweenPointers(t0, t1, t2, t3) { var _ = this; _.pointerStartLocation = t0; _.pointerStartId = t1; _.pointerEndLocation = t2; _.pointerEndId = t3; }, ScaleGestureRecognizer: function ScaleGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.dragStartBehavior = t0; _.onEnd = _.onUpdate = _.onStart = null; _._scale$_state = t1; _._lastTransform = null; _.__ScaleGestureRecognizer__initialFocalPoint = $; _._currentFocalPoint = null; _.__ScaleGestureRecognizer__localFocalPoint = _.__ScaleGestureRecognizer__currentVerticalSpan = _.__ScaleGestureRecognizer__initialVerticalSpan = _.__ScaleGestureRecognizer__currentHorizontalSpan = _.__ScaleGestureRecognizer__initialHorizontalSpan = _.__ScaleGestureRecognizer__currentSpan = _.__ScaleGestureRecognizer__initialSpan = $; _._currentLine = _._initialLine = null; _.__ScaleGestureRecognizer__pointerQueue = _.__ScaleGestureRecognizer__pointerLocations = $; _._velocityTrackers = t2; _.__ScaleGestureRecognizer__delta = $; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _.gestureSettings = null; _._supportedDevices = t6; _._pointerToKind = t7; }, ScaleGestureRecognizer__reconfigure_closure: function ScaleGestureRecognizer__reconfigure_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, ScaleGestureRecognizer__reconfigure_closure0: function ScaleGestureRecognizer__reconfigure_closure0(t0) { this.$this = t0; }, ScaleGestureRecognizer__advanceStateMachine_closure: function ScaleGestureRecognizer__advanceStateMachine_closure(t0) { this.$this = t0; }, ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure: function ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure(t0) { this.$this = t0; }, TapGestureRecognizer$(debugOwner) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.TapGestureRecognizer(B.Duration_100000, 18, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, debugOwner, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, TapDownDetails: function TapDownDetails(t0, t1, t2) { this.globalPosition = t0; this.kind = t1; this.localPosition = t2; }, TapUpDetails: function TapUpDetails(t0, t1, t2) { this.globalPosition = t0; this.localPosition = t1; this.kind = t2; }, BaseTapGestureRecognizer: function BaseTapGestureRecognizer() { }, TapGestureRecognizer: function TapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onTertiaryTapCancel = _.onTertiaryTapUp = _.onTertiaryTapDown = _.onSecondaryTapCancel = _.onSecondaryTapUp = _.onSecondaryTapDown = _.onSecondaryTap = _.onTapCancel = _.onTap = _.onTapUp = _.onTapDown = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _._recognizer$_state = t2; _._initialPosition = _._primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _.gestureSettings = null; _._supportedDevices = t6; _._pointerToKind = t7; }, TapGestureRecognizer_handleTapDown_closure: function TapGestureRecognizer_handleTapDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapDown_closure0: function TapGestureRecognizer_handleTapDown_closure0(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapUp_closure: function TapGestureRecognizer_handleTapUp_closure(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapUp_closure0: function TapGestureRecognizer_handleTapUp_closure0(t0) { this.$this = t0; }, _CombiningGestureArenaEntry: function _CombiningGestureArenaEntry(t0, t1) { this._combiner = t0; this._team$_member = t1; }, _CombiningGestureArenaMember: function _CombiningGestureArenaMember(t0, t1, t2) { var _ = this; _._team$_owner = t0; _._members = t1; _._team$_pointer = t2; _._resolved = false; _._entry = _._winner = null; }, GestureArenaTeam: function GestureArenaTeam(t0) { this._combiners = t0; this.captain = null; }, GestureArenaTeam_add_closure: function GestureArenaTeam_add_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, Velocity: function Velocity(t0) { this.pixelsPerSecond = t0; }, VelocityEstimate: function VelocityEstimate(t0, t1, t2, t3) { var _ = this; _.pixelsPerSecond = t0; _.confidence = t1; _.duration = t2; _.offset = t3; }, _PointAtTime: function _PointAtTime(t0, t1) { this.time = t0; this.point = t1; }, VelocityTracker: function VelocityTracker(t0, t1) { this.kind = t0; this._samples = t1; this._velocity_tracker$_index = 0; }, IOSScrollViewFlingVelocityTracker: function IOSScrollViewFlingVelocityTracker(t0, t1, t2) { var _ = this; _._touchSamples = t0; _.kind = t1; _._samples = t2; _._velocity_tracker$_index = 0; }, showLicensePage(applicationIcon, applicationLegalese, applicationName, applicationVersion, context) { A.Navigator_of(context, false).push$1(A.MaterialPageRoute$(new A.showLicensePage_closure(applicationName, applicationVersion, applicationIcon, applicationLegalese), null, type$.void)); }, _PackagesViewState$() { var t1 = type$._LicenseData; return new A._PackagesViewState(A.LicenseRegistry_licenses().fold$1$2(0, new A._LicenseData(A._setArrayType([], type$.JSArray_LicenseEntry), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_int), A._setArrayType([], type$.JSArray_String)), new A._PackagesViewState_licenses_closure(), t1).then$1$1(0, new A._PackagesViewState_licenses_closure0(), t1), B._StateLifecycle_0); }, _MasterDetailFlow_of(context) { var pageOpener = context.findAncestorStateOfType$1$0(type$._MasterDetailScaffoldState), t1 = pageOpener == null ? context.findAncestorStateOfType$1$0(type$._MasterDetailFlowState) : pageOpener; return t1 != null ? new A._MasterDetailFlowProxy(t1) : null; }, showLicensePage_closure: function showLicensePage_closure(t0, t1, t2, t3) { var _ = this; _.applicationName = t0; _.applicationVersion = t1; _.applicationIcon = t2; _.applicationLegalese = t3; }, LicensePage: function LicensePage(t0, t1, t2, t3, t4) { var _ = this; _.applicationName = t0; _.applicationVersion = t1; _.applicationIcon = t2; _.applicationLegalese = t3; _.key = t4; }, _LicensePageState: function _LicensePageState(t0, t1) { var _ = this; _.selectedId = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AboutProgram: function _AboutProgram(t0, t1, t2, t3, t4) { var _ = this; _.name = t0; _.version = t1; _.icon = t2; _.legalese = t3; _.key = t4; }, _PackagesView: function _PackagesView(t0, t1, t2, t3) { var _ = this; _.about = t0; _.isLateral = t1; _.selectedId = t2; _.key = t3; }, _PackagesViewState: function _PackagesViewState(t0, t1) { var _ = this; _.licenses = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _PackagesViewState_licenses_closure: function _PackagesViewState_licenses_closure() { }, _PackagesViewState_licenses_closure0: function _PackagesViewState_licenses_closure0() { }, _PackagesViewState_build_closure: function _PackagesViewState_build_closure(t0) { this.$this = t0; }, _PackagesViewState_build__closure: function _PackagesViewState_build__closure(t0, t1) { this.$this = t0; this.snapshot = t1; }, _PackagesViewState_build___closure: function _PackagesViewState_build___closure(t0, t1) { this.$this = t0; this.snapshot = t1; }, _PackagesViewState__initDefaultDetailPage_closure: function _PackagesViewState__initDefaultDetailPage_closure(t0) { this.data = t0; }, _PackagesViewState__packagesList_closure: function _PackagesViewState__packagesList_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.data = t1; _.drawSelection = t2; _.selectedId = t3; _.context = t4; }, _PackagesViewState__packagesList__closure: function _PackagesViewState__packagesList__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.index = t1; _.context = t2; _.packageName = t3; _.bindings = t4; _.data = t5; }, _PackagesViewState__packagesList___closure: function _PackagesViewState__packagesList___closure(t0) { this.data = t0; }, _PackageListTile: function _PackageListTile(t0, t1, t2, t3, t4) { var _ = this; _.packageName = t0; _.isSelected = t1; _.numberLicenses = t2; _.onTap = t3; _.key = t4; }, _LicenseData: function _LicenseData(t0, t1, t2) { var _ = this; _.licenses = t0; _.packageLicenseBindings = t1; _.packages = t2; _.firstPackage = null; }, _LicenseData_sortPackages_closure: function _LicenseData_sortPackages_closure(t0) { this.$this = t0; }, _DetailArguments: function _DetailArguments(t0, t1) { this.packageName = t0; this.licenseEntries = t1; }, _PackageLicensePage: function _PackageLicensePage(t0, t1, t2, t3) { var _ = this; _.packageName = t0; _.licenseEntries = t1; _.scrollController = t2; _.key = t3; }, _PackageLicensePageState: function _PackageLicensePageState(t0, t1) { var _ = this; _._licenses = t0; _._loaded = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _PackageLicensePageState__initLicenses_closure: function _PackageLicensePageState__initLicenses_closure(t0, t1) { this.$this = t0; this.paragraphs = t1; }, _PackageLicensePageState__initLicenses_closure0: function _PackageLicensePageState__initLicenses_closure0(t0) { this.$this = t0; }, _PackageLicensePageState_build_closure: function _PackageLicensePageState_build_closure(t0) { this.listWidgets = t0; }, _PackageLicensePageTitle: function _PackageLicensePageTitle(t0, t1, t2, t3) { var _ = this; _.title = t0; _.subtitle = t1; _.theme = t2; _.key = t3; }, _ActionLevel: function _ActionLevel(t0, t1) { this.index = t0; this._core$_name = t1; }, _LayoutMode: function _LayoutMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _Focus: function _Focus(t0, t1) { this.index = t0; this._core$_name = t1; }, _MasterDetailFlow: function _MasterDetailFlow(t0, t1, t2, t3, t4) { var _ = this; _.masterViewBuilder = t0; _.detailPageBuilder = t1; _.detailPageFABlessGutterWidth = t2; _.title = t3; _.key = t4; }, _MasterDetailFlowProxy: function _MasterDetailFlowProxy(t0) { this._pageOpener = t0; }, _MasterDetailFlowState: function _MasterDetailFlowState(t0, t1, t2) { var _ = this; _.focus = t0; _._builtLayout = _._cachedDetailArguments = null; _._navigatorKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MasterDetailFlowState_build_closure: function _MasterDetailFlowState_build_closure(t0) { this.$this = t0; }, _MasterDetailFlowState__nestedUI_closure1: function _MasterDetailFlowState__nestedUI_closure1(t0) { this.$this = t0; }, _MasterDetailFlowState__nestedUI_closure: function _MasterDetailFlowState__nestedUI_closure(t0, t1) { this.$this = t0; this.masterPageRoute = t1; }, _MasterDetailFlowState__nestedUI_closure0: function _MasterDetailFlowState__nestedUI_closure0(t0, t1) { this.$this = t0; this.masterPageRoute = t1; }, _MasterDetailFlowState__masterPageRoute_closure: function _MasterDetailFlowState__masterPageRoute_closure(t0, t1) { this.$this = t0; this.context = t1; }, _MasterDetailFlowState__masterPageRoute__closure: function _MasterDetailFlowState__masterPageRoute__closure(t0) { this.context = t0; }, _MasterDetailFlowState__detailPageRoute_closure: function _MasterDetailFlowState__detailPageRoute_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailFlowState__detailPageRoute__closure: function _MasterDetailFlowState__detailPageRoute__closure(t0, t1) { this.$this = t0; this.context = t1; }, _MasterDetailFlowState__lateralUI_closure1: function _MasterDetailFlowState__lateralUI_closure1() { }, _MasterDetailFlowState__lateralUI_closure0: function _MasterDetailFlowState__lateralUI_closure0(t0) { this.$this = t0; }, _MasterDetailFlowState__lateralUI_closure: function _MasterDetailFlowState__lateralUI_closure(t0) { this.$this = t0; }, _MasterPage: function _MasterPage(t0, t1, t2, t3, t4) { var _ = this; _.masterViewBuilder = t0; _.title = t1; _.leading = t2; _.automaticallyImplyLeading = t3; _.key = t4; }, _MasterDetailScaffold: function _MasterDetailScaffold(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.masterViewBuilder = t0; _.detailPageBuilder = t1; _.actionBuilder = t2; _.initialArguments = t3; _.title = t4; _.automaticallyImplyLeading = t5; _.detailPageFABlessGutterWidth = t6; _.key = t7; }, _MasterDetailScaffoldState: function _MasterDetailScaffoldState(t0, t1) { var _ = this; _.___MasterDetailScaffoldState_masterViewWidth = _.___MasterDetailScaffoldState_detailPageFABlessGutterWidth = _.___MasterDetailScaffoldState_floatingActionButtonLocation = $; _._detailArguments = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MasterDetailScaffoldState_openDetailPage_closure: function _MasterDetailScaffoldState_openDetailPage_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailScaffoldState_setInitialDetailPage_closure: function _MasterDetailScaffoldState_setInitialDetailPage_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailScaffoldState_build_closure: function _MasterDetailScaffoldState_build_closure(t0) { this.$this = t0; }, _MasterDetailScaffoldState_build__closure: function _MasterDetailScaffoldState_build__closure() { }, _DetailView: function _DetailView(t0, t1, t2) { this._builder = t0; this._about$_arguments = t1; this.key = t2; }, _DetailView_build_closure: function _DetailView_build_closure(t0) { this.$this = t0; }, MaterialApp_createMaterialHeroController() { return new A.HeroController(new A.MaterialApp_createMaterialHeroController_closure(), A.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$._HeroFlight)); }, ThemeMode: function ThemeMode(t0, t1) { this.index = t0; this._core$_name = t1; }, MaterialApp: function MaterialApp(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.navigatorKey = t0; _.home = t1; _.routes = t2; _.onGenerateRoute = t3; _.navigatorObservers = t4; _.builder = t5; _.title = t6; _.theme = t7; _.locale = t8; _.localizationsDelegates = t9; _.supportedLocales = t10; _.debugShowCheckedModeBanner = t11; _.scrollBehavior = t12; _.key = t13; }, MaterialApp_createMaterialHeroController_closure: function MaterialApp_createMaterialHeroController_closure() { }, MaterialScrollBehavior: function MaterialScrollBehavior(t0) { this._androidOverscrollIndicator = t0; }, _MaterialAppState: function _MaterialAppState(t0) { var _ = this; _.___MaterialAppState__heroController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _MaterialAppState__materialBuilder_closure: function _MaterialAppState__materialBuilder_closure(t0, t1) { this.$this = t0; this.child = t1; }, _MaterialAppState__buildWidgetApp_closure: function _MaterialAppState__buildWidgetApp_closure() { }, _MaterialAppState_build_closure: function _MaterialAppState_build_closure() { }, AppBar$(actions, actionsIconTheme, automaticallyImplyLeading, backgroundColor, backwardsCompatibility, bottom, bottomOpacity, brightness, centerTitle, elevation, excludeHeaderSemantics, flexibleSpace, foregroundColor, iconTheme, leading, leadingWidth, primary, scrolledUnderElevation, shadowColor, shape, surfaceTintColor, systemOverlayStyle, textTheme, title, titleSpacing, titleTextStyle, toolbarHeight, toolbarOpacity, toolbarTextStyle) { var t1 = bottom == null ? null : bottom.get$preferredSize()._dy, t2 = toolbarHeight == null ? 56 : toolbarHeight; return new A.AppBar(leading, automaticallyImplyLeading, title, actions, flexibleSpace, bottom, elevation, scrolledUnderElevation, shadowColor, surfaceTintColor, shape, backgroundColor, foregroundColor, brightness, iconTheme, actionsIconTheme, textTheme, true, centerTitle, false, titleSpacing, toolbarOpacity, bottomOpacity, new A._PreferredAppBarSize(toolbarHeight, t1, 1 / 0, t2 + (t1 == null ? 0 : t1)), toolbarHeight, leadingWidth, backwardsCompatibility, toolbarTextStyle, titleTextStyle, systemOverlayStyle, null); }, AppBar_preferredHeightFor(context, preferredSize) { var t1, t2; if (preferredSize.toolbarHeight == null) { t1 = A.Theme_of(context).appBarTheme.toolbarHeight; if (t1 == null) t1 = 56; t2 = preferredSize.bottomHeight; return t1 + (t2 == null ? 0 : t2); } return preferredSize._dy; }, _ToolbarContainerLayout: function _ToolbarContainerLayout(t0) { this.toolbarHeight = t0; }, _PreferredAppBarSize: function _PreferredAppBarSize(t0, t1, t2, t3) { var _ = this; _.toolbarHeight = t0; _.bottomHeight = t1; _._dx = t2; _._dy = t3; }, AppBar: function AppBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.leading = t0; _.automaticallyImplyLeading = t1; _.title = t2; _.actions = t3; _.flexibleSpace = t4; _.bottom = t5; _.elevation = t6; _.scrolledUnderElevation = t7; _.shadowColor = t8; _.surfaceTintColor = t9; _.shape = t10; _.backgroundColor = t11; _.foregroundColor = t12; _.brightness = t13; _.iconTheme = t14; _.actionsIconTheme = t15; _.textTheme = t16; _.primary = t17; _.centerTitle = t18; _.excludeHeaderSemantics = t19; _.titleSpacing = t20; _.toolbarOpacity = t21; _.bottomOpacity = t22; _.preferredSize = t23; _.toolbarHeight = t24; _.leadingWidth = t25; _.backwardsCompatibility = t26; _.toolbarTextStyle = t27; _.titleTextStyle = t28; _.systemOverlayStyle = t29; _.key = t30; }, AppBar__getEffectiveCenterTitle_platformCenter: function AppBar__getEffectiveCenterTitle_platformCenter(t0, t1) { this.$this = t0; this.theme = t1; }, _AppBarState: function _AppBarState(t0) { var _ = this; _._scrollNotificationObserver = null; _._scrolledUnder = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AppBarState__handleScrollNotification_closure: function _AppBarState__handleScrollNotification_closure() { }, _SliverAppBarDelegate: function _SliverAppBarDelegate(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37) { var _ = this; _.leading = t0; _.automaticallyImplyLeading = t1; _.title = t2; _.actions = t3; _.flexibleSpace = t4; _.bottom = t5; _.elevation = t6; _.scrolledUnderElevation = t7; _.shadowColor = t8; _.surfaceTintColor = t9; _.forceElevated = t10; _.backgroundColor = t11; _.foregroundColor = t12; _.brightness = t13; _.iconTheme = t14; _.actionsIconTheme = t15; _.textTheme = t16; _.primary = t17; _.centerTitle = t18; _.excludeHeaderSemantics = t19; _.titleSpacing = t20; _.expandedHeight = t21; _.collapsedHeight = t22; _.topPadding = t23; _.floating = t24; _.pinned = t25; _.shape = t26; _.toolbarHeight = t27; _.leadingWidth = t28; _.backwardsCompatibility = t29; _.toolbarTextStyle = t30; _.titleTextStyle = t31; _.systemOverlayStyle = t32; _._bottomHeight = t33; _.vsync = t34; _.snapConfiguration = t35; _.stretchConfiguration = t36; _.showOnScreenConfiguration = t37; }, SliverAppBar: function SliverAppBar(t0, t1, t2, t3, t4) { var _ = this; _.automaticallyImplyLeading = t0; _.title = t1; _.backgroundColor = t2; _.pinned = t3; _.key = t4; }, _SliverAppBarState: function _SliverAppBarState(t0, t1, t2) { var _ = this; _._showOnScreenConfiguration = _._stretchConfiguration = _._snapConfiguration = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AppBarTitleBox: function _AppBarTitleBox(t0, t1) { this.child = t0; this.key = t1; }, _RenderAppBarTitleBox: function _RenderAppBarTitleBox(t0, t1, t2, t3) { var _ = this; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t0; _._shifted_box$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _DefaultsM20: function _DefaultsM20(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.context = t0; _.___DefaultsM2__colors = _.___DefaultsM2__theme = $; _.brightness = t1; _.backgroundColor = t2; _.foregroundColor = t3; _.elevation = t4; _.scrolledUnderElevation = t5; _.shadowColor = t6; _.surfaceTintColor = t7; _.shape = t8; _.iconTheme = t9; _.actionsIconTheme = t10; _.textTheme = t11; _.centerTitle = t12; _.titleSpacing = t13; _.toolbarHeight = t14; _.toolbarTextStyle = t15; _.titleTextStyle = t16; _.systemOverlayStyle = t17; _.backwardsCompatibility = t18; }, __SliverAppBarState_State_TickerProviderStateMixin: function __SliverAppBarState_State_TickerProviderStateMixin() { }, AppBarTheme$(actionsIconTheme, backgroundColor, backwardsCompatibility, brightness, centerTitle, color, elevation, foregroundColor, iconTheme, scrolledUnderElevation, shadowColor, shape, surfaceTintColor, systemOverlayStyle, textTheme, titleSpacing, titleTextStyle, toolbarHeight, toolbarTextStyle) { return new A.AppBarTheme(brightness, backgroundColor == null ? color : backgroundColor, foregroundColor, elevation, scrolledUnderElevation, shadowColor, surfaceTintColor, shape, iconTheme, actionsIconTheme, textTheme, centerTitle, titleSpacing, toolbarHeight, toolbarTextStyle, titleTextStyle, systemOverlayStyle, backwardsCompatibility); }, AppBarTheme: function AppBarTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.brightness = t0; _.backgroundColor = t1; _.foregroundColor = t2; _.elevation = t3; _.scrolledUnderElevation = t4; _.shadowColor = t5; _.surfaceTintColor = t6; _.shape = t7; _.iconTheme = t8; _.actionsIconTheme = t9; _.textTheme = t10; _.centerTitle = t11; _.titleSpacing = t12; _.toolbarHeight = t13; _.toolbarTextStyle = t14; _.titleTextStyle = t15; _.systemOverlayStyle = t16; _.backwardsCompatibility = t17; }, _AppBarTheme_Object_Diagnosticable: function _AppBarTheme_Object_Diagnosticable() { }, _maxBy(input, keyFunc) { var maxKey, _i, value, key, maxValue = A._Cell$named("maxValue"); for (maxKey = null, _i = 0; _i < 4; ++_i) { value = input[_i]; key = keyFunc.call$1(value); if (maxKey == null || key > maxKey) { maxValue.__late_helper$_value = value; maxKey = key; } } return maxValue._readLocal$0(); }, MaterialPointArcTween: function MaterialPointArcTween(t0, t1) { var _ = this; _._arc$_dirty = true; _._endAngle = _._beginAngle = _._radius = _._center = null; _.begin = t0; _.end = t1; }, MaterialPointArcTween__initialize_sweepAngle: function MaterialPointArcTween__initialize_sweepAngle(t0, t1) { this.$this = t0; this.distanceFromAtoB = t1; }, _CornerId: function _CornerId(t0, t1) { this.index = t0; this._core$_name = t1; }, _Diagonal: function _Diagonal(t0, t1) { this.beginId = t0; this.endId = t1; }, MaterialRectArcTween: function MaterialRectArcTween(t0, t1) { var _ = this; _._arc$_dirty = true; _.__MaterialRectArcTween__endArc = _.__MaterialRectArcTween__beginArc = $; _.begin = t0; _.end = t1; }, MaterialRectArcTween__initialize_closure: function MaterialRectArcTween__initialize_closure(t0, t1) { this.$this = t0; this.centersVector = t1; }, BackButtonIcon__getIconData(platform) { switch (platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return B.IconData_57490_MaterialIcons_null_true; case B.TargetPlatform_2: case B.TargetPlatform_4: return B.IconData_57491_MaterialIcons_null_true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, BackButtonIcon: function BackButtonIcon(t0) { this.key = t0; }, BackButton: function BackButton(t0, t1) { this.onPressed = t0; this.key = t1; }, BackButton_build_closure: function BackButton_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, MaterialBannerThemeData: function MaterialBannerThemeData(t0, t1, t2, t3, t4) { var _ = this; _.backgroundColor = t0; _.contentTextStyle = t1; _.elevation = t2; _.padding = t3; _.leadingPadding = t4; }, _MaterialBannerThemeData_Object_Diagnosticable: function _MaterialBannerThemeData_Object_Diagnosticable() { }, BottomAppBar$(child, color, elevation, shape) { return new A.BottomAppBar(child, color, elevation, shape, null); }, BottomAppBar: function BottomAppBar(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.color = t1; _.elevation = t2; _.shape = t3; _.key = t4; }, _BottomAppBarState: function _BottomAppBarState(t0, t1) { var _ = this; _.___BottomAppBarState_geometryListenable = $; _.materialKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _BottomAppBarClipper: function _BottomAppBarClipper(t0, t1, t2, t3, t4) { var _ = this; _.geometry = t0; _.shape = t1; _.materialKey = t2; _.notchMargin = t3; _._reclip = t4; }, BottomAppBarTheme: function BottomAppBarTheme(t0, t1, t2) { this.color = t0; this.elevation = t1; this.shape = t2; }, _BottomAppBarTheme_Object_Diagnosticable: function _BottomAppBarTheme_Object_Diagnosticable() { }, BottomNavigationBarThemeData: function BottomNavigationBarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.selectedIconTheme = t2; _.unselectedIconTheme = t3; _.selectedItemColor = t4; _.unselectedItemColor = t5; _.selectedLabelStyle = t6; _.unselectedLabelStyle = t7; _.showSelectedLabels = t8; _.showUnselectedLabels = t9; _.type = t10; _.enableFeedback = t11; _.landscapeLayout = t12; _.mouseCursor = t13; }, _BottomNavigationBarThemeData_Object_Diagnosticable: function _BottomNavigationBarThemeData_Object_Diagnosticable() { }, BottomSheet: function BottomSheet(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.animationController = t0; _.onClosing = t1; _.builder = t2; _.enableDrag = t3; _.onDragStart = t4; _.onDragEnd = t5; _.backgroundColor = t6; _.elevation = t7; _.shape = t8; _.clipBehavior = t9; _.constraints = t10; _.key = t11; }, _BottomSheetState: function _BottomSheetState(t0, t1) { var _ = this; _._childKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, BottomSheetThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.elevation; t4 = A.lerpDouble(t4, t3 ? _null : b.elevation, t); t5 = t1 ? _null : a.modalBackgroundColor; t5 = A.Color_lerp(t5, t3 ? _null : b.modalBackgroundColor, t); t6 = t1 ? _null : a.modalElevation; t6 = A.lerpDouble(t6, t3 ? _null : b.modalElevation, t); t7 = t1 ? _null : a.shape; t7 = A.ShapeBorder_lerp(t7, t3 ? _null : b.shape, t); if (t < 0.5) t8 = t1 ? _null : a.clipBehavior; else t8 = t3 ? _null : b.clipBehavior; t1 = t1 ? _null : a.constraints; return new A.BottomSheetThemeData(t2, t4, t5, t6, t7, t8, A.BoxConstraints_lerp(t1, t3 ? _null : b.constraints, t)); }, BottomSheetThemeData: function BottomSheetThemeData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.modalBackgroundColor = t2; _.modalElevation = t3; _.shape = t4; _.clipBehavior = t5; _.constraints = t6; }, _BottomSheetThemeData_Object_Diagnosticable: function _BottomSheetThemeData_Object_Diagnosticable() { }, RawMaterialButton$(autofocus, child, clipBehavior, constraints, disabledElevation, elevation, enableFeedback, fillColor, focusColor, focusElevation, focusNode, highlightColor, highlightElevation, hoverColor, hoverElevation, materialTapTargetSize, mouseCursor, onPressed, shape, splashColor, textStyle) { return new A.RawMaterialButton(onPressed, mouseCursor, textStyle, fillColor, focusColor, hoverColor, highlightColor, splashColor, elevation, hoverElevation, focusElevation, highlightElevation, disabledElevation, constraints, shape, child, materialTapTargetSize, focusNode, false, clipBehavior, enableFeedback, null); }, RawMaterialButton: function RawMaterialButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.onPressed = t0; _.mouseCursor = t1; _.textStyle = t2; _.fillColor = t3; _.focusColor = t4; _.hoverColor = t5; _.highlightColor = t6; _.splashColor = t7; _.elevation = t8; _.hoverElevation = t9; _.focusElevation = t10; _.highlightElevation = t11; _.disabledElevation = t12; _.constraints = t13; _.shape = t14; _.child = t15; _.materialTapTargetSize = t16; _.focusNode = t17; _.autofocus = t18; _.clipBehavior = t19; _.enableFeedback = t20; _.key = t21; }, _RawMaterialButtonState: function _RawMaterialButtonState(t0, t1) { var _ = this; _.MaterialStateMixin_materialStates = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InputPadding: function _InputPadding(t0, t1, t2) { this.minSize = t0; this.child = t1; this.key = t2; }, _RenderInputPadding: function _RenderInputPadding(t0, t1, t2) { var _ = this; _._minSize = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure: function _RenderInputPadding_hitTest_closure(t0, t1) { this.$this = t0; this.center = t1; }, __RawMaterialButtonState_State_MaterialStateMixin: function __RawMaterialButtonState_State_MaterialStateMixin() { }, ButtonBarThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t < 0.5; if (t2) t3 = t1 ? _null : a.alignment; else t3 = b == null ? _null : b.alignment; if (t2) t4 = t1 ? _null : a.mainAxisSize; else t4 = b == null ? _null : b.mainAxisSize; if (t2) t5 = t1 ? _null : a.buttonTextTheme; else t5 = b == null ? _null : b.buttonTextTheme; t6 = t1 ? _null : a.buttonMinWidth; t7 = b == null; t6 = A.lerpDouble(t6, t7 ? _null : b.buttonMinWidth, t); t8 = t1 ? _null : a.buttonHeight; t8 = A.lerpDouble(t8, t7 ? _null : b.buttonHeight, t); t9 = t1 ? _null : a.buttonPadding; t9 = A.EdgeInsetsGeometry_lerp(t9, t7 ? _null : b.buttonPadding, t); if (t2) t10 = t1 ? _null : a.buttonAlignedDropdown; else t10 = t7 ? _null : b.buttonAlignedDropdown; if (t2) t11 = t1 ? _null : a.layoutBehavior; else t11 = t7 ? _null : b.layoutBehavior; if (t2) t1 = t1 ? _null : a.overflowDirection; else t1 = t7 ? _null : b.overflowDirection; return new A.ButtonBarThemeData(t3, t4, t5, t6, t8, t9, t10, t11, t1); }, ButtonBarThemeData: function ButtonBarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.alignment = t0; _.mainAxisSize = t1; _.buttonTextTheme = t2; _.buttonMinWidth = t3; _.buttonHeight = t4; _.buttonPadding = t5; _.buttonAlignedDropdown = t6; _.layoutBehavior = t7; _.overflowDirection = t8; }, _ButtonBarThemeData_Object_Diagnosticable: function _ButtonBarThemeData_Object_Diagnosticable() { }, ButtonStyle$(alignment, animationDuration, backgroundColor, elevation, enableFeedback, fixedSize, foregroundColor, maximumSize, minimumSize, mouseCursor, overlayColor, padding, shadowColor, shape, side, splashFactory, surfaceTintColor, tapTargetSize, textStyle, visualDensity) { return new A.ButtonStyle(textStyle, backgroundColor, foregroundColor, overlayColor, shadowColor, surfaceTintColor, elevation, padding, minimumSize, fixedSize, maximumSize, side, shape, mouseCursor, visualDensity, tapTargetSize, animationDuration, enableFeedback, alignment, splashFactory); }, ButtonStyle_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.textStyle; t3 = b == null; t4 = t3 ? _null : b.textStyle; t4 = A.ButtonStyle__lerpProperties(t2, t4, t, A.text_style_TextStyle_lerp$closure(), type$.nullable_TextStyle); t2 = t1 ? _null : a.backgroundColor; t5 = t3 ? _null : b.backgroundColor; t6 = type$.nullable_Color; t5 = A.ButtonStyle__lerpProperties(t2, t5, t, A.ui_Color_lerp$closure(), t6); t2 = t1 ? _null : a.foregroundColor; t2 = A.ButtonStyle__lerpProperties(t2, t3 ? _null : b.foregroundColor, t, A.ui_Color_lerp$closure(), t6); t7 = t1 ? _null : a.overlayColor; t7 = A.ButtonStyle__lerpProperties(t7, t3 ? _null : b.overlayColor, t, A.ui_Color_lerp$closure(), t6); t8 = t1 ? _null : a.shadowColor; t8 = A.ButtonStyle__lerpProperties(t8, t3 ? _null : b.shadowColor, t, A.ui_Color_lerp$closure(), t6); t9 = t1 ? _null : a.surfaceTintColor; t6 = A.ButtonStyle__lerpProperties(t9, t3 ? _null : b.surfaceTintColor, t, A.ui_Color_lerp$closure(), t6); t9 = t1 ? _null : a.elevation; t10 = t3 ? _null : b.elevation; t10 = A.ButtonStyle__lerpProperties(t9, t10, t, A.ui__lerpDouble$closure(), type$.nullable_double); t9 = t1 ? _null : a.padding; t11 = t3 ? _null : b.padding; t11 = A.ButtonStyle__lerpProperties(t9, t11, t, A.edge_insets_EdgeInsetsGeometry_lerp$closure(), type$.nullable_EdgeInsetsGeometry); t9 = t1 ? _null : a.minimumSize; t12 = t3 ? _null : b.minimumSize; t13 = type$.nullable_Size; t12 = A.ButtonStyle__lerpProperties(t9, t12, t, A.ui_Size_lerp$closure(), t13); t9 = t1 ? _null : a.fixedSize; t9 = A.ButtonStyle__lerpProperties(t9, t3 ? _null : b.fixedSize, t, A.ui_Size_lerp$closure(), t13); t14 = t1 ? _null : a.maximumSize; t13 = A.ButtonStyle__lerpProperties(t14, t3 ? _null : b.maximumSize, t, A.ui_Size_lerp$closure(), t13); t14 = t1 ? _null : a.side; t14 = A.ButtonStyle__lerpSides(t14, t3 ? _null : b.side, t); t15 = t1 ? _null : a.shape; t15 = A.ButtonStyle__lerpShapes(t15, t3 ? _null : b.shape, t); t16 = t < 0.5; if (t16) t17 = t1 ? _null : a.mouseCursor; else t17 = t3 ? _null : b.mouseCursor; if (t16) t18 = t1 ? _null : a.visualDensity; else t18 = t3 ? _null : b.visualDensity; if (t16) t19 = t1 ? _null : a.tapTargetSize; else t19 = t3 ? _null : b.tapTargetSize; if (t16) t20 = t1 ? _null : a.animationDuration; else t20 = t3 ? _null : b.animationDuration; if (t16) t21 = t1 ? _null : a.enableFeedback; else t21 = t3 ? _null : b.enableFeedback; t22 = t1 ? _null : a.alignment; t22 = A.AlignmentGeometry_lerp(t22, t3 ? _null : b.alignment, t); if (t16) t1 = t1 ? _null : a.splashFactory; else t1 = t3 ? _null : b.splashFactory; return A.ButtonStyle$(t22, t20, t5, t10, t21, t9, t2, t13, t12, t17, t7, t11, t8, t15, t14, t1, t6, t19, t4, t18); }, ButtonStyle__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties(a, b, t, lerpFunction, $T._eval$1("_LerpProperties<0>")); }, ButtonStyle__lerpSides(a, b, t) { if (a == null && b == null) return null; return new A._LerpSides(a, b, t); }, ButtonStyle__lerpShapes(a, b, t) { if (a == null && b == null) return null; return new A._LerpShapes(a, b, t); }, ButtonStyle: function ButtonStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.textStyle = t0; _.backgroundColor = t1; _.foregroundColor = t2; _.overlayColor = t3; _.shadowColor = t4; _.surfaceTintColor = t5; _.elevation = t6; _.padding = t7; _.minimumSize = t8; _.fixedSize = t9; _.maximumSize = t10; _.side = t11; _.shape = t12; _.mouseCursor = t13; _.visualDensity = t14; _.tapTargetSize = t15; _.animationDuration = t16; _.enableFeedback = t17; _.alignment = t18; _.splashFactory = t19; }, _LerpProperties: function _LerpProperties(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _LerpSides: function _LerpSides(t0, t1, t2) { this.a = t0; this.b = t1; this.t = t2; }, _LerpShapes: function _LerpShapes(t0, t1, t2) { this.a = t0; this.b = t1; this.t = t2; }, _ButtonStyle_Object_Diagnosticable: function _ButtonStyle_Object_Diagnosticable() { }, ButtonStyleButton_scaledPadding(geometry1x, geometry2x, geometry3x, textScaleFactor) { var t1; if (textScaleFactor <= 1) return geometry1x; else if (textScaleFactor >= 3) return geometry3x; else if (textScaleFactor <= 2) { t1 = A.EdgeInsetsGeometry_lerp(geometry1x, geometry2x, textScaleFactor - 1); t1.toString; return t1; } t1 = A.EdgeInsetsGeometry_lerp(geometry2x, geometry3x, textScaleFactor - 2); t1.toString; return t1; }, ButtonStyleButton: function ButtonStyleButton() { }, _ButtonStyleState: function _ButtonStyleState(t0, t1, t2, t3) { var _ = this; _._backgroundColor = _._button_style_button$_elevation = _._button_style_button$_controller = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _.MaterialStateMixin_materialStates = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ButtonStyleState_build_effectiveValue: function _ButtonStyleState_build_effectiveValue(t0, t1, t2) { this.widgetStyle = t0; this.themeStyle = t1; this.defaultStyle = t2; }, _ButtonStyleState_build_resolve: function _ButtonStyleState_build_resolve(t0, t1) { this.$this = t0; this.effectiveValue = t1; }, _ButtonStyleState_build_resolve_closure: function _ButtonStyleState_build_resolve_closure(t0, t1, t2) { this.$this = t0; this.getProperty = t1; this.T = t2; }, _ButtonStyleState_build_closure: function _ButtonStyleState_build_closure() { }, _ButtonStyleState_build_closure0: function _ButtonStyleState_build_closure0() { }, _ButtonStyleState_build_closure1: function _ButtonStyleState_build_closure1() { }, _ButtonStyleState_build_closure2: function _ButtonStyleState_build_closure2() { }, _ButtonStyleState_build_closure3: function _ButtonStyleState_build_closure3() { }, _ButtonStyleState_build_closure4: function _ButtonStyleState_build_closure4() { }, _ButtonStyleState_build_closure5: function _ButtonStyleState_build_closure5() { }, _ButtonStyleState_build_closure6: function _ButtonStyleState_build_closure6() { }, _ButtonStyleState_build_closure7: function _ButtonStyleState_build_closure7() { }, _ButtonStyleState_build_closure8: function _ButtonStyleState_build_closure8() { }, _ButtonStyleState_build_closure9: function _ButtonStyleState_build_closure9() { }, _ButtonStyleState_build_closure10: function _ButtonStyleState_build_closure10() { }, _ButtonStyleState_build_closure18: function _ButtonStyleState_build_closure18(t0) { this.effectiveValue = t0; }, _ButtonStyleState_build__closure0: function _ButtonStyleState_build__closure0(t0) { this.states = t0; }, _ButtonStyleState_build_closure19: function _ButtonStyleState_build_closure19(t0) { this.effectiveValue = t0; }, _ButtonStyleState_build__closure: function _ButtonStyleState_build__closure(t0) { this.states = t0; }, _ButtonStyleState_build_closure11: function _ButtonStyleState_build_closure11() { }, _ButtonStyleState_build_closure12: function _ButtonStyleState_build_closure12() { }, _ButtonStyleState_build_closure13: function _ButtonStyleState_build_closure13() { }, _ButtonStyleState_build_closure14: function _ButtonStyleState_build_closure14() { }, _ButtonStyleState_build_closure15: function _ButtonStyleState_build_closure15() { }, _ButtonStyleState_build_closure16: function _ButtonStyleState_build_closure16() { }, _ButtonStyleState_build_closure17: function _ButtonStyleState_build_closure17(t0) { this.$this = t0; }, _ButtonStyleState_build__closure1: function _ButtonStyleState_build__closure1() { }, _MouseCursor: function _MouseCursor(t0) { this.resolveCallback = t0; }, _InputPadding0: function _InputPadding0(t0, t1, t2) { this.minSize = t0; this.child = t1; this.key = t2; }, _RenderInputPadding0: function _RenderInputPadding0(t0, t1, t2) { var _ = this; _._button_style_button$_minSize = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure0: function _RenderInputPadding_hitTest_closure0(t0, t1) { this.$this = t0; this.center = t1; }, __ButtonStyleState_State_MaterialStateMixin: function __ButtonStyleState_State_MaterialStateMixin() { }, __ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin: function __ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin() { }, ButtonTheme$fromButtonThemeData(child, data) { return new A.ButtonTheme(data, child, null); }, ButtonTheme_of(context) { var theme, inheritedButtonTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$.ButtonTheme), buttonTheme = inheritedButtonTheme == null ? null : inheritedButtonTheme.data, t1 = buttonTheme == null; if ((t1 ? null : buttonTheme.colorScheme) == null) { theme = A.Theme_of(context); if (t1) buttonTheme = theme.buttonTheme; if (buttonTheme.colorScheme == null) { t1 = theme.buttonTheme.colorScheme; buttonTheme = buttonTheme.copyWith$1$colorScheme(t1 == null ? theme.colorScheme : t1); } } buttonTheme.toString; return buttonTheme; }, ButtonThemeData$(alignedDropdown, buttonColor, colorScheme, disabledColor, focusColor, height, highlightColor, hoverColor, layoutBehavior, materialTapTargetSize, minWidth, padding, shape, splashColor, textTheme) { return new A.ButtonThemeData(minWidth, height, textTheme, layoutBehavior, padding, shape, false, buttonColor, disabledColor, focusColor, hoverColor, highlightColor, splashColor, colorScheme, materialTapTargetSize); }, ButtonTextTheme: function ButtonTextTheme(t0, t1) { this.index = t0; this._core$_name = t1; }, ButtonBarLayoutBehavior: function ButtonBarLayoutBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, ButtonTheme: function ButtonTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, ButtonThemeData: function ButtonThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.minWidth = t0; _.height = t1; _.textTheme = t2; _.layoutBehavior = t3; _._padding = t4; _._shape = t5; _.alignedDropdown = t6; _._buttonColor = t7; _._disabledColor = t8; _._focusColor = t9; _._hoverColor = t10; _._button_theme$_highlightColor = t11; _._splashColor = t12; _.colorScheme = t13; _._materialTapTargetSize = t14; }, _ButtonThemeData_Object_Diagnosticable: function _ButtonThemeData_Object_Diagnosticable() { }, CalendarDatePicker: function CalendarDatePicker(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.currentDate = t3; _.onDateChanged = t4; _.initialCalendarMode = t5; _.selectableDayPredicate = t6; _.key = t7; }, _CalendarDatePickerState: function _CalendarDatePickerState(t0, t1, t2) { var _ = this; _._announcedInitialDate = false; _.___CalendarDatePickerState__selectedDate = _.___CalendarDatePickerState__currentDisplayedMonthDate = _.___CalendarDatePickerState__mode = $; _._monthPickerKey = t0; _._yearPickerKey = t1; _.___CalendarDatePickerState__textDirection = _.___CalendarDatePickerState__localizations = $; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CalendarDatePickerState__handleModeChanged_closure: function _CalendarDatePickerState__handleModeChanged_closure(t0, t1) { this.$this = t0; this.mode = t1; }, _CalendarDatePickerState__handleMonthChanged_closure: function _CalendarDatePickerState__handleMonthChanged_closure(t0, t1) { this.$this = t0; this.date = t1; }, _CalendarDatePickerState__handleYearChanged_closure: function _CalendarDatePickerState__handleYearChanged_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _CalendarDatePickerState__handleDayChanged_closure: function _CalendarDatePickerState__handleDayChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _CalendarDatePickerState_build_closure: function _CalendarDatePickerState_build_closure(t0) { this.$this = t0; }, _DatePickerModeToggleButton: function _DatePickerModeToggleButton(t0, t1, t2, t3) { var _ = this; _.mode = t0; _.title = t1; _.onTitlePressed = t2; _.key = t3; }, _DatePickerModeToggleButtonState: function _DatePickerModeToggleButtonState(t0, t1, t2) { var _ = this; _.___DatePickerModeToggleButtonState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MonthPicker: function _MonthPicker(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.initialMonth = t0; _.currentDate = t1; _.firstDate = t2; _.lastDate = t3; _.selectedDate = t4; _.onChanged = t5; _.onDisplayedMonthChanged = t6; _.selectableDayPredicate = t7; _.key = t8; }, _MonthPickerState: function _MonthPickerState(t0, t1) { var _ = this; _._pageViewKey = t0; _.___MonthPickerState__textDirection = _.___MonthPickerState__localizations = _.___MonthPickerState__pageController = _.___MonthPickerState__currentMonth = $; _._actionMap = _._shortcutMap = null; _.___MonthPickerState__dayGridFocus = $; _._widget = _._focusedDay = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MonthPickerState_didUpdateWidget_closure: function _MonthPickerState_didUpdateWidget_closure(t0) { this.$this = t0; }, _MonthPickerState__handleMonthPageChanged_closure: function _MonthPickerState__handleMonthPageChanged_closure(t0, t1) { this.$this = t0; this.monthPage = t1; }, _MonthPickerState__handleGridFocusChange_closure: function _MonthPickerState__handleGridFocusChange_closure(t0, t1) { this.$this = t0; this.focused = t1; }, _MonthPickerState__handleDirectionFocus_closure: function _MonthPickerState__handleDirectionFocus_closure(t0, t1) { this.$this = t0; this.intent = t1; }, _FocusedDate: function _FocusedDate(t0, t1, t2) { this.date = t0; this.child = t1; this.key = t2; }, _DayPicker: function _DayPicker(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.selectedDate = t0; _.currentDate = t1; _.onChanged = t2; _.firstDate = t3; _.lastDate = t4; _.displayedMonth = t5; _.selectableDayPredicate = t6; _.key = t7; }, _DayPickerState: function _DayPickerState(t0) { var _ = this; _.___DayPickerState__dayFocusNodes = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DayPickerState_build_closure: function _DayPickerState_build_closure(t0, t1) { this.$this = t0; this.dayToBuild = t1; }, _DayPickerGridDelegate: function _DayPickerGridDelegate() { }, YearPicker: function YearPicker(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.currentDate = t0; _.firstDate = t1; _.lastDate = t2; _.initialDate = t3; _.selectedDate = t4; _.onChanged = t5; _.key = t6; }, _YearPickerState: function _YearPickerState(t0) { var _ = this; _.___YearPickerState__scrollController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _YearPickerState__buildYearItem_closure: function _YearPickerState__buildYearItem_closure(t0, t1) { this.$this = t0; this.year = t1; }, _YearPickerGridDelegate: function _YearPickerGridDelegate() { }, __DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin: function __DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin() { }, Card$(child, clipBehavior, color, elevation, margin, semanticContainer, shape) { return new A.Card(color, elevation, shape, clipBehavior, margin, semanticContainer, child, null); }, Card: function Card(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.color = t0; _.elevation = t1; _.shape = t2; _.clipBehavior = t3; _.margin = t4; _.semanticContainer = t5; _.child = t6; _.key = t7; }, _DefaultsM21: function _DefaultsM21(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.context = t0; _.clipBehavior = t1; _.color = t2; _.shadowColor = t3; _.surfaceTintColor = t4; _.elevation = t5; _.margin = t6; _.shape = t7; }, CardTheme: function CardTheme(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.clipBehavior = t0; _.color = t1; _.shadowColor = t2; _.surfaceTintColor = t3; _.elevation = t4; _.margin = t5; _.shape = t6; }, _CardTheme_Object_Diagnosticable: function _CardTheme_Object_Diagnosticable() { }, Checkbox$(activeColor, autofocus, checkColor, materialTapTargetSize, onChanged, shape, side, tristate, value) { return new A.Checkbox(value, onChanged, activeColor, checkColor, tristate, materialTapTargetSize, false, shape, side, null); }, Checkbox: function Checkbox(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.checkColor = t3; _.tristate = t4; _.materialTapTargetSize = t5; _.autofocus = t6; _.shape = t7; _.side = t8; _.key = t9; }, _CheckboxState: function _CheckboxState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._checkbox$_painter = t0; _._previousValue = null; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _.TickerProviderStateMixin__tickerModeNotifier = t14; _._widget = null; _._debugLifecycleState = t15; _._framework$_element = null; }, _CheckboxState__widgetFillColor_closure: function _CheckboxState__widgetFillColor_closure(t0) { this.$this = t0; }, _CheckboxState__defaultFillColor_closure: function _CheckboxState__defaultFillColor_closure(t0) { this.themeData = t0; }, _CheckboxState_build_closure: function _CheckboxState_build_closure(t0, t1) { this.$this = t0; this.checkboxTheme = t1; }, _CheckboxPainter: function _CheckboxPainter(t0) { var _ = this; _._isHovered = _._toggleable$_isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._toggleable$_activeColor = _._reactionHoverFade = _._reactionFocusFade = _._reaction = _._toggleable$_position = _._side = _._checkbox$_shape = _._previousValue = _._checkbox$_value = _._checkColor = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, __CheckboxState_State_TickerProviderStateMixin: function __CheckboxState_State_TickerProviderStateMixin() { }, __CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin: function __CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, CheckboxListTile$(activeColor, contentPadding, controlAffinity, dense, key, onChanged, title, value) { return new A.CheckboxListTile(value, onChanged, activeColor, title, dense, controlAffinity, contentPadding, key); }, CheckboxListTile: function CheckboxListTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.title = t3; _.dense = t4; _.controlAffinity = t5; _.contentPadding = t6; _.key = t7; }, CheckboxThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties4(a, b, t, lerpFunction, $T._eval$1("_LerpProperties4<0>")); }, CheckboxThemeData__lerpSides(a, b, t) { if (a == null && b == null) return null; a.toString; b.toString; return A.BorderSide_lerp(a, b, t); }, CheckboxThemeData: function CheckboxThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.mouseCursor = t0; _.fillColor = t1; _.checkColor = t2; _.overlayColor = t3; _.splashRadius = t4; _.materialTapTargetSize = t5; _.visualDensity = t6; _.shape = t7; _.side = t8; }, _LerpProperties4: function _LerpProperties4(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _CheckboxThemeData_Object_Diagnosticable: function _CheckboxThemeData_Object_Diagnosticable() { }, ChipThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.deleteIconColor; t4 = A.Color_lerp(t4, t3 ? _null : b.deleteIconColor, t); t5 = t1 ? _null : a.disabledColor; t5 = A.Color_lerp(t5, t3 ? _null : b.disabledColor, t); t6 = t1 ? _null : a.selectedColor; t6 = A.Color_lerp(t6, t3 ? _null : b.selectedColor, t); t7 = t1 ? _null : a.secondarySelectedColor; t7 = A.Color_lerp(t7, t3 ? _null : b.secondarySelectedColor, t); t8 = t1 ? _null : a.shadowColor; t8 = A.Color_lerp(t8, t3 ? _null : b.shadowColor, t); t9 = t1 ? _null : a.selectedShadowColor; t9 = A.Color_lerp(t9, t3 ? _null : b.selectedShadowColor, t); t10 = t1 ? _null : a.checkmarkColor; t10 = A.Color_lerp(t10, t3 ? _null : b.checkmarkColor, t); t11 = t1 ? _null : a.labelPadding; t11 = A.EdgeInsetsGeometry_lerp(t11, t3 ? _null : b.labelPadding, t); t12 = t1 ? _null : a.padding; t12 = A.EdgeInsetsGeometry_lerp(t12, t3 ? _null : b.padding, t); t13 = t1 ? _null : a.side; t13 = A.ChipThemeData__lerpSides(t13, t3 ? _null : b.side, t); t14 = t1 ? _null : a.shape; t14 = A.ChipThemeData__lerpShapes(t14, t3 ? _null : b.shape, t); t15 = t1 ? _null : a.labelStyle; t15 = A.TextStyle_lerp(t15, t3 ? _null : b.labelStyle, t); t16 = t1 ? _null : a.secondaryLabelStyle; t16 = A.TextStyle_lerp(t16, t3 ? _null : b.secondaryLabelStyle, t); if (t < 0.5) { t17 = t1 ? _null : a.brightness; if (t17 == null) t17 = B.Brightness_1; } else { t17 = t3 ? _null : b.brightness; if (t17 == null) t17 = B.Brightness_1; } t18 = t1 ? _null : a.elevation; t18 = A.lerpDouble(t18, t3 ? _null : b.elevation, t); t1 = t1 ? _null : a.pressElevation; return new A.ChipThemeData(t2, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, A.lerpDouble(t1, t3 ? _null : b.pressElevation, t)); }, ChipThemeData__lerpSides(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) { t1 = b.color; return A.BorderSide_lerp(new A.BorderSide(A.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, B.BorderStyle_1), b, t); } if (b == null) { t1 = a.color; return A.BorderSide_lerp(new A.BorderSide(A.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, B.BorderStyle_1), a, t); } return A.BorderSide_lerp(a, b, t); }, ChipThemeData__lerpShapes(a, b, t) { if (a == null && b == null) return null; return type$.nullable_OutlinedBorder._as(A.ShapeBorder_lerp(a, b, t)); }, ChipThemeData: function ChipThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.backgroundColor = t0; _.deleteIconColor = t1; _.disabledColor = t2; _.selectedColor = t3; _.secondarySelectedColor = t4; _.shadowColor = t5; _.selectedShadowColor = t6; _.checkmarkColor = t7; _.labelPadding = t8; _.padding = t9; _.side = t10; _.shape = t11; _.labelStyle = t12; _.secondaryLabelStyle = t13; _.brightness = t14; _.elevation = t15; _.pressElevation = t16; }, _ChipThemeData_Object_Diagnosticable: function _ChipThemeData_Object_Diagnosticable() { }, ColorScheme$(background, brightness, error, errorContainer, inversePrimary, inverseSurface, onBackground, onError, onErrorContainer, onInverseSurface, onPrimary, onPrimaryContainer, onSecondary, onSecondaryContainer, onSurface, onSurfaceVariant, onTertiary, onTertiaryContainer, outline, primary, primaryContainer, primaryVariant, secondary, secondaryContainer, secondaryVariant, shadow, surface, surfaceTint, surfaceVariant, tertiary, tertiaryContainer) { return new A.ColorScheme(brightness, primary, onPrimary, primaryContainer, onPrimaryContainer, secondary, onSecondary, secondaryContainer, onSecondaryContainer, tertiary, onTertiary, tertiaryContainer, onTertiaryContainer, error, onError, errorContainer, onErrorContainer, background, onBackground, surface, onSurface, surfaceVariant, onSurfaceVariant, outline, shadow, inverseSurface, onInverseSurface, inversePrimary, surfaceTint, primaryVariant, secondaryVariant); }, ColorScheme_ColorScheme$fromSwatch(accentColor, backgroundColor, brightness, cardColor, errorColor, primaryColorDark, primarySwatch) { var secondary, t1, t2, t3, t4, t5, t6, t7, t8, t9, _null = null, isDark = brightness === B.Brightness_0, primaryIsDark = A.ThemeData_estimateBrightnessForColor(primarySwatch) === B.Brightness_0; if (accentColor == null) secondary = isDark ? B.Color_4284809178 : primarySwatch; else secondary = accentColor; t1 = A.ThemeData_estimateBrightnessForColor(secondary); if (primaryColorDark == null) if (isDark) t2 = B.Color_4278190080; else { t2 = primarySwatch._swatch.$index(0, 700); t2.toString; } else t2 = primaryColorDark; if (isDark) t3 = B.Color_4278239141; else { t3 = primarySwatch._swatch.$index(0, 700); t3.toString; } if (cardColor == null) t4 = isDark ? B.Color_4282532418 : B.Color_4294967295; else t4 = cardColor; if (backgroundColor == null) if (isDark) t5 = B.Color_4284572001; else { t5 = primarySwatch._swatch.$index(0, 200); t5.toString; } else t5 = backgroundColor; t6 = errorColor == null ? B.Color_4292030255 : errorColor; t7 = primaryIsDark ? B.Color_4294967295 : B.Color_4278190080; t1 = t1 === B.Brightness_0 ? B.Color_4294967295 : B.Color_4278190080; t8 = isDark ? B.Color_4294967295 : B.Color_4278190080; t9 = primaryIsDark ? B.Color_4294967295 : B.Color_4278190080; return A.ColorScheme$(t5, brightness, t6, _null, _null, _null, t9, isDark ? B.Color_4278190080 : B.Color_4294967295, _null, _null, t7, _null, t1, _null, t8, _null, _null, _null, _null, primarySwatch, _null, t2, secondary, _null, t3, _null, t4, _null, _null, _null, _null); }, ColorScheme: function ColorScheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.brightness = t0; _.primary = t1; _.onPrimary = t2; _._primaryContainer = t3; _._onPrimaryContainer = t4; _.secondary = t5; _.onSecondary = t6; _._secondaryContainer = t7; _._onSecondaryContainer = t8; _._tertiary = t9; _._onTertiary = t10; _._tertiaryContainer = t11; _._onTertiaryContainer = t12; _.error = t13; _.onError = t14; _._errorContainer = t15; _._onErrorContainer = t16; _.background = t17; _.onBackground = t18; _.surface = t19; _.onSurface = t20; _._surfaceVariant = t21; _._onSurfaceVariant = t22; _._outline = t23; _._shadow = t24; _._inverseSurface = t25; _._onInverseSurface = t26; _._inversePrimary = t27; _._surfaceTint = t28; _._primaryVariant = t29; _._secondaryVariant = t30; }, _ColorScheme_Object_Diagnosticable: function _ColorScheme_Object_Diagnosticable() { }, MaterialColor: function MaterialColor(t0, t1) { this._swatch = t0; this.value = t1; }, MaterialAccentColor: function MaterialAccentColor(t0, t1) { this._swatch = t0; this.value = t1; }, DataRow$(cells) { return new A.DataRow(null, cells); }, DataRow$byIndex(cells, index) { return new A.DataRow(new A.ValueKey(index, type$.ValueKey_nullable_int), cells); }, DataCell$(child, onTap) { return new A.DataCell(child, onTap); }, DataTable$(checkboxHorizontalMargin, columnSpacing, columns, dataRowHeight, decoration, headingRowHeight, horizontalMargin, key, onSelectAll, rows, showBottomBorder, showCheckboxColumn, sortAscending, sortColumnIndex) { return new A.DataTable(columns, sortColumnIndex, sortAscending, onSelectAll, decoration, dataRowHeight, headingRowHeight, horizontalMargin, columnSpacing, true, rows, showBottomBorder, checkboxHorizontalMargin, A.DataTable__initOnlyTextColumn(columns), key); }, DataTable__initOnlyTextColumn(columns) { var t1, result, index; for (t1 = columns.length, result = null, index = 0; index < t1; ++index) if (!columns[index].numeric) { if (result != null) return null; result = index; } return result; }, TableRowInkWell$(child, onLongPress, onTap, overlayColor) { var _null = null; return new A.TableRowInkWell(child, onTap, _null, _null, _null, _null, onLongPress, _null, _null, _null, true, B.BoxShape_0, _null, _null, _null, _null, _null, _null, overlayColor, _null, _null, true, false, _null, false, _null, true, _null); }, DataColumn: function DataColumn(t0, t1, t2) { this.label = t0; this.numeric = t1; this.onSort = t2; }, DataRow: function DataRow(t0, t1) { this.key = t0; this.cells = t1; }, DataCell: function DataCell(t0, t1) { this.child = t0; this.onTap = t1; }, DataTable: function DataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.decoration = t4; _.dataRowHeight = t5; _.headingRowHeight = t6; _.horizontalMargin = t7; _.columnSpacing = t8; _.showCheckboxColumn = t9; _.rows = t10; _.showBottomBorder = t11; _.checkboxHorizontalMargin = t12; _._onlyTextColumn = t13; _.key = t14; }, DataTable_build_closure3: function DataTable_build_closure3(t0) { this.theme = t0; }, DataTable_build_closure: function DataTable_build_closure() { }, DataTable_build_closure0: function DataTable_build_closure0() { }, DataTable_build_closure1: function DataTable_build_closure1() { }, DataTable_build_closure2: function DataTable_build_closure2(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.anyRowSelectable = t1; _.effectiveDataRowColor = t2; _.effectiveHeadingRowColor = t3; _.context = t4; _.dataTableTheme = t5; _.theme = t6; _.defaultRowColor = t7; _.tableColumns = t8; }, DataTable_build_closure4: function DataTable_build_closure4(t0, t1) { this.$this = t0; this.someChecked = t1; }, DataTable_build_closure5: function DataTable_build_closure5(t0, t1, t2) { this.$this = t0; this.column = t1; this.dataColumnIndex = t2; }, TableRowInkWell: function TableRowInkWell(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapUp = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onHighlightChanged = t7; _.onHover = t8; _.mouseCursor = t9; _.containedInkWell = t10; _.highlightShape = t11; _.radius = t12; _.borderRadius = t13; _.customBorder = t14; _.focusColor = t15; _.hoverColor = t16; _.highlightColor = t17; _.overlayColor = t18; _.splashColor = t19; _.splashFactory = t20; _.enableFeedback = t21; _.excludeFromSemantics = t22; _.onFocusChange = t23; _.autofocus = t24; _.focusNode = t25; _.canRequestFocus = t26; _.key = t27; }, TableRowInkWell_getRectCallback_closure: function TableRowInkWell_getRectCallback_closure(t0) { this.referenceBox = t0; }, _SortArrow: function _SortArrow(t0, t1, t2, t3) { var _ = this; _.visible = t0; _.up = t1; _.duration = t2; _.key = t3; }, _SortArrowState: function _SortArrowState(t0, t1, t2) { var _ = this; _.___SortArrowState__orientationAnimation = _.___SortArrowState__orientationController = _.___SortArrowState__opacityAnimation = _.___SortArrowState__opacityController = $; _._orientationOffset = 0; _._data_table$_up = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _SortArrowState__rebuild_closure: function _SortArrowState__rebuild_closure() { }, _NullTableColumnWidth: function _NullTableColumnWidth() { }, _NullWidget: function _NullWidget(t0) { this.key = t0; }, __SortArrowState_State_TickerProviderStateMixin: function __SortArrowState_State_TickerProviderStateMixin() { }, DataTableSource: function DataTableSource() { }, DataTableThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties3(a, b, t, lerpFunction, $T._eval$1("_LerpProperties3<0>")); }, DataTableTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.DataTableTheme); t1 = A.Theme_of(context).dataTableTheme; return t1; }, DataTableThemeData: function DataTableThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.decoration = t0; _.dataRowColor = t1; _.dataRowHeight = t2; _.dataTextStyle = t3; _.headingRowColor = t4; _.headingRowHeight = t5; _.headingTextStyle = t6; _.horizontalMargin = t7; _.columnSpacing = t8; _.dividerThickness = t9; _.checkboxHorizontalMargin = t10; }, _LerpProperties3: function _LerpProperties3(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _DataTableThemeData_Object_Diagnosticable: function _DataTableThemeData_Object_Diagnosticable() { }, DateUtils_isSameDay(dateA, dateB) { var _null = null, t1 = dateA == null, t2 = t1 ? _null : A.Primitives_getYear(dateA), t3 = dateB == null; if (t2 == (t3 ? _null : A.Primitives_getYear(dateB))) { t2 = t1 ? _null : A.Primitives_getMonth(dateA); if (t2 == (t3 ? _null : A.Primitives_getMonth(dateB))) { t1 = t1 ? _null : A.Primitives_getDay(dateA); t1 = t1 == (t3 ? _null : A.Primitives_getDay(dateB)); } else t1 = false; } else t1 = false; return t1; }, DateUtils_isSameMonth(dateA, dateB) { var t1 = dateA == null, t2 = t1 ? null : A.Primitives_getYear(dateA); if (t2 === A.Primitives_getYear(dateB)) { t1 = t1 ? null : A.Primitives_getMonth(dateA); t1 = t1 === A.Primitives_getMonth(dateB); } else t1 = false; return t1; }, DateUtils_monthDelta(startDate, endDate) { endDate.toString; return (A.Primitives_getYear(endDate) - A.Primitives_getYear(startDate)) * 12 + A.Primitives_getMonth(endDate) - A.Primitives_getMonth(startDate); }, DateUtils_getDaysInMonth(year, month) { if (month === 2) return B.JSInt_methods.$mod(year, 4) === 0 && B.JSInt_methods.$mod(year, 100) !== 0 || B.JSInt_methods.$mod(year, 400) === 0 ? 29 : 28; return B.List_WB4[month - 1]; }, DatePickerEntryMode: function DatePickerEntryMode(t0, t1) { this.index = t0; this._core$_name = t1; }, DatePickerMode: function DatePickerMode(t0, t1) { this.index = t0; this._core$_name = t1; }, showDatePicker(context, firstDate, initialDate, lastDate, locale) { return A.showDatePicker$body(context, firstDate, initialDate, lastDate, locale); }, showDatePicker$body(context, firstDate, initialDate, lastDate, locale) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_DateTime), $async$returnValue, t2, t3, t4, t5, dialog, t1; var $async$showDatePicker = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; initialDate.toString; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(initialDate), A.Primitives_getMonth(initialDate), A.Primitives_getDay(initialDate), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); initialDate = new A.DateTime(t2, false); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDate), A.Primitives_getMonth(firstDate), A.Primitives_getDay(firstDate), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); firstDate = new A.DateTime(t2, false); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(lastDate), A.Primitives_getMonth(lastDate), A.Primitives_getDay(lastDate), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); lastDate = new A.DateTime(t2, false); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(initialDate), A.Primitives_getMonth(initialDate), A.Primitives_getDay(initialDate), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t3 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDate), A.Primitives_getMonth(firstDate), A.Primitives_getDay(firstDate), 0, 0, 0, 0, false); if (!A._isInt(t3)) A.throwExpression(A.argumentErrorValue(t3)); t4 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(lastDate), A.Primitives_getMonth(lastDate), A.Primitives_getDay(lastDate), 0, 0, 0, 0, false); if (!A._isInt(t4)) A.throwExpression(A.argumentErrorValue(t4)); t5 = new A.DateTime(Date.now(), false); t5 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t5), A.Primitives_getMonth(t5), A.Primitives_getDay(t5), 0, 0, 0, 0, false); if (!A._isInt(t5)) A.throwExpression(A.argumentErrorValue(t5)); dialog = new A.DatePickerDialog(new A.DateTime(t2, false), new A.DateTime(t3, false), new A.DateTime(t4, false), new A.DateTime(t5, false), B.DatePickerEntryMode_0, null, null, null, null, B.DatePickerMode_0, null, null, null, null, null, null); t1.dialog = dialog; t1.dialog = A.Localizations_Localizations$override(dialog, context, locale); $async$returnValue = A.showDialog(null, true, new A.showDatePicker_closure(t1, null), context, null, true, type$.DateTime); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$showDatePicker, $async$completer); }, showDatePicker_closure: function showDatePicker_closure(t0, t1) { this._box_0 = t0; this.builder = t1; }, DatePickerDialog: function DatePickerDialog(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.currentDate = t3; _.initialEntryMode = t4; _.selectableDayPredicate = t5; _.cancelText = t6; _.confirmText = t7; _.helpText = t8; _.initialCalendarMode = t9; _.errorFormatText = t10; _.errorInvalidText = t11; _.fieldHintText = t12; _.fieldLabelText = t13; _.keyboardType = t14; _.key = t15; }, _DatePickerDialogState: function _DatePickerDialogState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.___DatePickerDialogState__entryMode = _.___DatePickerDialogState__selectedDate = $; _._autovalidateMode = t0; _._calendarPickerKey = t1; _._formKey = t2; _.RestorationMixin__bucket = t3; _.RestorationMixin__properties = t4; _.RestorationMixin__debugPropertiesWaitingForReregistration = t5; _.RestorationMixin__firstRestorePending = t6; _.RestorationMixin__currentParent = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; }, _DatePickerDialogState__handleOk_closure: function _DatePickerDialogState__handleOk_closure(t0) { this.$this = t0; }, _DatePickerDialogState__handleEntryModeToggle_closure: function _DatePickerDialogState__handleEntryModeToggle_closure(t0) { this.$this = t0; }, _DatePickerDialogState__handleDateChanged_closure: function _DatePickerDialogState__handleDateChanged_closure(t0, t1) { this.$this = t0; this.date = t1; }, _DatePickerDialogState_build_calendarDatePicker: function _DatePickerDialogState_build_calendarDatePicker(t0) { this.$this = t0; }, _DatePickerDialogState_build_inputDatePicker: function _DatePickerDialogState_build_inputDatePicker(t0, t1) { this.$this = t0; this.orientation = t1; }, _DatePickerDialogState_build_closure: function _DatePickerDialogState_build_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.orientation = t1; _.header = t2; _.actions = t3; }, _RestorableDatePickerEntryMode: function _RestorableDatePickerEntryMode(t0, t1) { var _ = this; _._date_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _RestorableAutovalidateMode: function _RestorableAutovalidateMode(t0, t1) { var _ = this; _._date_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _DatePickerHeader: function _DatePickerHeader(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.helpText = t0; _.titleText = t1; _.titleStyle = t2; _.orientation = t3; _.isShort = t4; _.entryModeButton = t5; _.key = t6; }, __DatePickerDialogState_State_RestorationMixin_dispose_closure: function __DatePickerDialogState_State_RestorationMixin_dispose_closure() { }, __DatePickerDialogState_State_RestorationMixin: function __DatePickerDialogState_State_RestorationMixin() { }, _DesktopTextSelectionControls: function _DesktopTextSelectionControls() { }, Dialog$(alignment, backgroundColor, child, clipBehavior, elevation, insetPadding, shape) { return new A.Dialog(backgroundColor, elevation, insetPadding, clipBehavior, shape, alignment, child, null); }, AlertDialog$(actions, actionsPadding, backgroundColor, $content, contentPadding, key, semanticLabel, title) { return new A.AlertDialog(title, $content, contentPadding, actions, actionsPadding, backgroundColor, semanticLabel, key); }, SimpleDialog$(children, title) { return new A.SimpleDialog(title, children, null); }, _buildMaterialDialogTransitions(context, animation, secondaryAnimation, child) { return A.FadeTransition$(false, child, A.CurvedAnimation$(B.Cubic_xDo0, animation, null)); }, showDialog(anchorPoint, barrierDismissible, builder, context, routeSettings, useRootNavigator, $T) { var themes, t1 = A.Navigator_of(context, true)._framework$_element; t1.toString; themes = A.InheritedTheme_capture(context, t1); return A.Navigator_of(context, true).push$1(A.DialogRoute$(anchorPoint, B.Color_2315255808, barrierDismissible, null, builder, context, routeSettings, themes, true, $T)); }, DialogRoute$(anchorPoint, barrierColor, barrierDismissible, barrierLabel, builder, context, settings, themes, useSafeArea, $T) { var t2, t3, t4, t5, t6, t7, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$modalBarrierDismissLabel(); t2 = A._setArrayType([], type$.JSArray_of_Future_bool_Function); t3 = $.Zone__current; t4 = A.ProxyAnimation$(B.C__AlwaysDismissedAnimation); t5 = A._setArrayType([], type$.JSArray_OverlayEntry); t6 = $.$get$ChangeNotifier__emptyListeners(); t7 = $.Zone__current; return new A.DialogRoute(new A.DialogRoute_closure(builder, themes, true), barrierDismissible, t1, barrierColor, B.Duration_150000, A.dialog___buildMaterialDialogTransitions$closure(), anchorPoint, _null, t2, new A.LabeledGlobalKey(_null, $T._eval$1("LabeledGlobalKey<_ModalScopeState<0>>")), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.PageStorageBucket(), _null, new A._AsyncCompleter(new A._Future(t3, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), t4, t5, B.RouteSettings_null_null, new A.ValueNotifier(_null, t6, type$.ValueNotifier_nullable_String), new A._AsyncCompleter(new A._Future(t7, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), $T._eval$1("DialogRoute<0>")); }, _paddingScaleFactor(textScaleFactor) { var t1 = A.lerpDouble(1, 0.3333333333333333, B.JSNumber_methods.clamp$2(textScaleFactor, 1, 2) - 1); t1.toString; return t1; }, _DefaultsM2$(context) { return new A._DefaultsM2(context, A.Theme_of(context).textTheme, null, 24, B.RoundedRectangleBorder_LkV0, B.Alignment_0_0, null, null); }, Dialog: function Dialog(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.insetPadding = t2; _.clipBehavior = t3; _.shape = t4; _.alignment = t5; _.child = t6; _.key = t7; }, AlertDialog: function AlertDialog(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.title = t0; _.content = t1; _.contentPadding = t2; _.actions = t3; _.actionsPadding = t4; _.backgroundColor = t5; _.semanticLabel = t6; _.key = t7; }, SimpleDialogOption: function SimpleDialogOption(t0, t1, t2) { this.onPressed = t0; this.child = t1; this.key = t2; }, SimpleDialog: function SimpleDialog(t0, t1, t2) { this.title = t0; this.children = t1; this.key = t2; }, DialogRoute: function DialogRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _._pageBuilder = t0; _._barrierDismissible = t1; _._barrierLabel = t2; _._barrierColor = t3; _._transitionDuration = t4; _._transitionBuilder = t5; _.anchorPoint = t6; _.filter = t7; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t8; _._scopeKey = t9; _._subtreeKey = t10; _._storageBucket = t11; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t12; _._transitionCompleter = t13; _._popFinalized = false; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t14; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t15; _._navigator$_navigator = null; _._navigator$_settings = t16; _._restorationScopeId = t17; _._popCompleter = t18; _.$ti = t19; }, DialogRoute_closure: function DialogRoute_closure(t0, t1, t2) { this.builder = t0; this.themes = t1; this.useSafeArea = t2; }, _DefaultsM2: function _DefaultsM2(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.context = t0; _._textTheme = t1; _.backgroundColor = t2; _.elevation = t3; _.shape = t4; _.alignment = t5; _.titleTextStyle = t6; _.contentTextStyle = t7; }, DialogTheme: function DialogTheme(t0, t1, t2, t3, t4, t5) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.shape = t2; _.alignment = t3; _.titleTextStyle = t4; _.contentTextStyle = t5; }, _DialogTheme_Object_Diagnosticable: function _DialogTheme_Object_Diagnosticable() { }, Divider$(color, height, thickness) { return new A.Divider(height, thickness, color, null); }, Divider_createBorderSide(context, color, width) { var t1, effectiveColor, effectiveWidth; if (color == null) { t1 = A.DividerTheme_of(context).color; if (t1 == null) t1 = A.Theme_of(context).dividerColor; effectiveColor = t1; } else effectiveColor = color; effectiveWidth = width; if (effectiveColor == null) return new A.BorderSide(B.Color_4278190080, effectiveWidth, B.BorderStyle_1); return new A.BorderSide(effectiveColor, effectiveWidth, B.BorderStyle_1); }, Divider: function Divider(t0, t1, t2, t3) { var _ = this; _.height = t0; _.thickness = t1; _.color = t2; _.key = t3; }, DividerTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.DividerTheme); t1 = A.Theme_of(context).dividerTheme; return t1; }, DividerThemeData: function DividerThemeData(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.space = t1; _.thickness = t2; _.indent = t3; _.endIndent = t4; }, _DividerThemeData_Object_Diagnosticable: function _DividerThemeData_Object_Diagnosticable() { }, Drawer$(child) { return new A.Drawer(child, null); }, DrawerAlignment: function DrawerAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, Drawer: function Drawer(t0, t1) { this.child = t0; this.key = t1; }, DrawerController: function DrawerController(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.alignment = t1; _.drawerCallback = t2; _.dragStartBehavior = t3; _.scrimColor = t4; _.enableOpenDragGesture = t5; _.edgeDragWidth = t6; _.isDrawerOpen = t7; _.key = t8; }, DrawerControllerState: function DrawerControllerState(t0, t1, t2, t3, t4, t5) { var _ = this; _._historyEntry = null; _._drawer$_focusScopeNode = t0; _.__DrawerControllerState__controller = $; _._drawer$_drawerKey = t1; _._previouslyOpened = false; _.__DrawerControllerState__scrimColorTween = $; _._drawer$_gestureDetectorKey = t2; _.SingleTickerProviderStateMixin__ticker = t3; _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, DrawerControllerState__animationChanged_closure: function DrawerControllerState__animationChanged_closure() { }, _DrawerControllerState_State_SingleTickerProviderStateMixin: function _DrawerControllerState_State_SingleTickerProviderStateMixin() { }, DrawerThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.scrimColor; t4 = A.Color_lerp(t4, t3 ? _null : b.scrimColor, t); t5 = t1 ? _null : a.elevation; t5 = A.lerpDouble(t5, t3 ? _null : b.elevation, t); t6 = t1 ? _null : a.shape; t6 = A.ShapeBorder_lerp(t6, t3 ? _null : b.shape, t); t1 = t1 ? _null : a.width; return new A.DrawerThemeData(t2, t4, t5, t6, A.lerpDouble(t1, t3 ? _null : b.width, t)); }, DrawerTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.DrawerTheme); t1 = A.Theme_of(context).drawerTheme; return t1; }, DrawerThemeData: function DrawerThemeData(t0, t1, t2, t3, t4) { var _ = this; _.backgroundColor = t0; _.scrimColor = t1; _.elevation = t2; _.shape = t3; _.width = t4; }, _DrawerThemeData_Object_Diagnosticable: function _DrawerThemeData_Object_Diagnosticable() { }, DropdownMenuItem$(child, onTap, value, $T) { return new A.DropdownMenuItem(onTap, value, child, B.AlignmentDirectional_m1_0, null, $T._eval$1("DropdownMenuItem<0>")); }, DropdownButton$(dropdownColor, elevation, hint, icon, iconSize, isDense, isExpanded, itemHeight, items, onChanged, selectedItemBuilder, style, underline, value, $T) { var _null = null; return new A.DropdownButton(items, value, hint, _null, onChanged, _null, selectedItemBuilder, elevation, style, underline, icon, _null, _null, iconSize, isDense, isExpanded, itemHeight, _null, _null, false, dropdownColor, _null, _null, B.AlignmentDirectional_m1_0, _null, _null, false, false, _null, $T._eval$1("DropdownButton<0>")); }, DropdownButtonFormField$(decoration, isDense, isExpanded, items, onChanged, selectedItemBuilder, validator, value, $T) { var _null = null; if (decoration == null) A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DropdownButtonFormField(onChanged, _null, validator, new A.DropdownButtonFormField_closure($T, decoration, _null, items, onChanged, _null, _null, selectedItemBuilder, _null, 8, _null, _null, _null, _null, 24, true, isExpanded, _null, _null, false, _null, _null, _null, B.AlignmentDirectional_m1_0, _null), value, true, B.AutovalidateMode_0, _null, _null, $T._eval$1("DropdownButtonFormField<0>")); }, _DropdownMenuPainter: function _DropdownMenuPainter(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.color = t0; _.elevation = t1; _.selectedIndex = t2; _.borderRadius = t3; _.resize = t4; _.getSelectedItemOffset = t5; _._dropdown$_painter = t6; _._repaint = t7; }, _DropdownMenuItemButton: function _DropdownMenuItemButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.route = t0; _.padding = t1; _.buttonRect = t2; _.constraints = t3; _.itemIndex = t4; _.enableFeedback = t5; _.key = t6; _.$ti = t7; }, _DropdownMenuItemButtonState: function _DropdownMenuItemButtonState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownMenu: function _DropdownMenu(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.route = t0; _.padding = t1; _.buttonRect = t2; _.constraints = t3; _.dropdownColor = t4; _.enableFeedback = t5; _.borderRadius = t6; _.key = t7; _.$ti = t8; }, _DropdownMenuState: function _DropdownMenuState(t0, t1) { var _ = this; _.___DropdownMenuState__resize = _.___DropdownMenuState__fadeOpacity = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownMenuState_build_closure: function _DropdownMenuState_build_closure(t0) { this.route = t0; }, _DropdownMenuRouteLayout: function _DropdownMenuRouteLayout(t0, t1, t2, t3) { var _ = this; _.buttonRect = t0; _.route = t1; _.textDirection = t2; _.$ti = t3; }, _DropdownRouteResult: function _DropdownRouteResult(t0, t1) { this.result = t0; this.$ti = t1; }, _MenuLimits: function _MenuLimits(t0, t1, t2) { this.top = t0; this.height = t1; this.scrollOffset = t2; }, _DropdownRoute: function _DropdownRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.items = t0; _.padding = t1; _.buttonRect = t2; _.selectedIndex = t3; _.elevation = t4; _.capturedThemes = t5; _.style = t6; _.itemHeight = t7; _.dropdownColor = t8; _.menuMaxHeight = t9; _.enableFeedback = t10; _.borderRadius = t11; _.itemHeights = t12; _.scrollController = null; _.barrierLabel = t13; _.filter = t14; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t15; _._scopeKey = t16; _._subtreeKey = t17; _._storageBucket = t18; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t19; _._transitionCompleter = t20; _._popFinalized = false; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t21; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t22; _._navigator$_navigator = null; _._navigator$_settings = t23; _._restorationScopeId = t24; _._popCompleter = t25; _.$ti = t26; }, _DropdownRoute_buildPage_closure: function _DropdownRoute_buildPage_closure(t0) { this.$this = t0; }, _DropdownRoute_getItemOffset_closure: function _DropdownRoute_getItemOffset_closure() { }, _DropdownRoute_getMenuLimits_closure: function _DropdownRoute_getMenuLimits_closure() { }, _DropdownRoutePage: function _DropdownRoutePage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.route = t0; _.constraints = t1; _.padding = t2; _.buttonRect = t3; _.selectedIndex = t4; _.capturedThemes = t5; _.dropdownColor = t6; _.enableFeedback = t7; _.borderRadius = t8; _.key = t9; _.$ti = t10; }, _DropdownRoutePage_build_closure: function _DropdownRoutePage_build_closure(t0, t1, t2) { this.$this = t0; this.textDirection = t1; this.menu = t2; }, _MenuItem: function _MenuItem(t0, t1, t2, t3, t4) { var _ = this; _.onLayout = t0; _.item = t1; _.child = t2; _.key = t3; _.$ti = t4; }, _RenderMenuItem: function _RenderMenuItem(t0, t1, t2) { var _ = this; _.onLayout = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _DropdownMenuItemContainer: function _DropdownMenuItemContainer(t0, t1, t2) { this.child = t0; this.alignment = t1; this.key = t2; }, DropdownMenuItem: function DropdownMenuItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.onTap = t0; _.value = t1; _.child = t2; _.alignment = t3; _.key = t4; _.$ti = t5; }, DropdownButtonHideUnderline: function DropdownButtonHideUnderline(t0, t1) { this.child = t0; this.key = t1; }, DropdownButton: function DropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29) { var _ = this; _.items = t0; _.value = t1; _.hint = t2; _.disabledHint = t3; _.onChanged = t4; _.onTap = t5; _.selectedItemBuilder = t6; _.elevation = t7; _.style = t8; _.underline = t9; _.icon = t10; _.iconDisabledColor = t11; _.iconEnabledColor = t12; _.iconSize = t13; _.isDense = t14; _.isExpanded = t15; _.itemHeight = t16; _.focusColor = t17; _.focusNode = t18; _.autofocus = t19; _.dropdownColor = t20; _.menuMaxHeight = t21; _.enableFeedback = t22; _.alignment = t23; _.borderRadius = t24; _._inputDecoration = t25; _._isEmpty = t26; _._dropdown$_isFocused = t27; _.key = t28; _.$ti = t29; }, _DropdownButtonState: function _DropdownButtonState(t0, t1) { var _ = this; _._dropdown$_internalNode = _._lastOrientation = _._dropdownRoute = _._selectedIndex = null; _._hasPrimaryFocus = false; _.___DropdownButtonState__actionMap = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownButtonState_initState_closure: function _DropdownButtonState_initState_closure(t0) { this.$this = t0; }, _DropdownButtonState_initState_closure0: function _DropdownButtonState_initState_closure0(t0) { this.$this = t0; }, _DropdownButtonState__handleFocusChanged_closure: function _DropdownButtonState__handleFocusChanged_closure(t0) { this.$this = t0; }, _DropdownButtonState__updateSelectedIndex_closure: function _DropdownButtonState__updateSelectedIndex_closure(t0) { this.$this = t0; }, _DropdownButtonState__handleTap_closure: function _DropdownButtonState__handleTap_closure(t0, t1) { this.$this = t0; this.index = t1; }, _DropdownButtonState__handleTap_closure0: function _DropdownButtonState__handleTap_closure0(t0) { this.$this = t0; }, _DropdownButtonState_build_closure: function _DropdownButtonState_build_closure(t0) { this.$this = t0; }, DropdownButtonFormField: function DropdownButtonFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onChanged = t0; _.onSaved = t1; _.validator = t2; _.builder = t3; _.initialValue = t4; _.enabled = t5; _.autovalidateMode = t6; _.restorationId = t7; _.key = t8; _.$ti = t9; }, DropdownButtonFormField_closure: function DropdownButtonFormField_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.T = t0; _.decoration = t1; _.focusColor = t2; _.items = t3; _.onChanged = t4; _.hint = t5; _.disabledHint = t6; _.selectedItemBuilder = t7; _.onTap = t8; _.elevation = t9; _.style = t10; _.icon = t11; _.iconDisabledColor = t12; _.iconEnabledColor = t13; _.iconSize = t14; _.isDense = t15; _.isExpanded = t16; _.itemHeight = t17; _.focusNode = t18; _.autofocus = t19; _.dropdownColor = t20; _.menuMaxHeight = t21; _.enableFeedback = t22; _.alignment = t23; _.borderRadius = t24; }, DropdownButtonFormField__closure: function DropdownButtonFormField__closure(t0, t1) { this.state = t0; this.T = t1; }, DropdownButtonFormField_closure_isHintOrDisabledHintAvailable: function DropdownButtonFormField_closure_isHintOrDisabledHintAvailable(t0, t1, t2, t3) { var _ = this; _.onChanged = t0; _.items = t1; _.hint = t2; _.disabledHint = t3; }, DropdownButtonFormField__closure0: function DropdownButtonFormField__closure0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.items = t0; _.selectedItemBuilder = t1; _.state = t2; _.hint = t3; _.disabledHint = t4; _.onChanged = t5; _.onTap = t6; _.elevation = t7; _.style = t8; _.icon = t9; _.iconDisabledColor = t10; _.iconEnabledColor = t11; _.iconSize = t12; _.isDense = t13; _.isExpanded = t14; _.itemHeight = t15; _.focusColor = t16; _.focusNode = t17; _.autofocus = t18; _.dropdownColor = t19; _.menuMaxHeight = t20; _.enableFeedback = t21; _.alignment = t22; _.borderRadius = t23; _.effectiveDecoration = t24; _.field = t25; _.isEmpty = t26; _.T = t27; }, _DropdownButtonFormFieldState: function _DropdownButtonFormFieldState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.__FormFieldState__value = $; _._errorText = t0; _._hasInteractedByUser = t1; _.RestorationMixin__bucket = t2; _.RestorationMixin__properties = t3; _.RestorationMixin__debugPropertiesWaitingForReregistration = t4; _.RestorationMixin__firstRestorePending = t5; _.RestorationMixin__currentParent = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; _.$ti = t8; }, __DropdownButtonState_State_WidgetsBindingObserver: function __DropdownButtonState_State_WidgetsBindingObserver() { }, ElevatedButton$(child, onPressed, style) { var _null = null; return new A.ElevatedButton(onPressed, _null, _null, _null, style, B.Clip_0, _null, false, child, _null); }, ElevatedButton_styleFrom(alignment, animationDuration, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, maximumSize, minimumSize, onPrimary, onSurface, padding, primary, shadowColor, shape, splashFactory, tapTargetSize, textStyle, visualDensity) { var t2, t3, t4, t5, _null = null, t1 = onSurface == null, backgroundColor = t1 && primary == null ? _null : new A._ElevatedButtonDefaultBackground(primary, onSurface), foregroundColor = t1 && onPrimary == null ? _null : new A._ElevatedButtonDefaultForeground(onPrimary, onSurface), overlayColor = onPrimary == null ? _null : new A._ElevatedButtonDefaultOverlay(onPrimary), elevationValue = elevation == null ? _null : new A._ElevatedButtonDefaultElevation(elevation), mouseCursor = enabledMouseCursor == null && disabledMouseCursor == null ? _null : new A._ElevatedButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); t1 = shadowColor == null ? _null : new A._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t2 = padding == null ? _null : new A._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t3 = minimumSize == null ? _null : new A._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); t4 = maximumSize == null ? _null : new A._MaterialStatePropertyAll(maximumSize, type$._MaterialStatePropertyAll_Size); t5 = shape == null ? _null : new A._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder); return A.ButtonStyle$(alignment, animationDuration, backgroundColor, elevationValue, enableFeedback, _null, foregroundColor, t4, t3, mouseCursor, overlayColor, t2, t1, t5, _null, splashFactory, _null, tapTargetSize, new A._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_nullable_TextStyle), visualDensity); }, _scaledPadding(context) { var t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; return A.ButtonStyleButton_scaledPadding(B.EdgeInsets_16_0_16_0, B.EdgeInsets_8_0_8_0, B.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); }, ElevatedButton: function ElevatedButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.onHover = t2; _.onFocusChange = t3; _.style = t4; _.clipBehavior = t5; _.focusNode = t6; _.autofocus = t7; _.child = t8; _.key = t9; }, _ElevatedButtonDefaultBackground: function _ElevatedButtonDefaultBackground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _ElevatedButtonDefaultForeground: function _ElevatedButtonDefaultForeground(t0, t1) { this.onPrimary = t0; this.onSurface = t1; }, _ElevatedButtonDefaultOverlay: function _ElevatedButtonDefaultOverlay(t0) { this.onPrimary = t0; }, _ElevatedButtonDefaultElevation: function _ElevatedButtonDefaultElevation(t0) { this.elevation = t0; }, _ElevatedButtonDefaultMouseCursor: function _ElevatedButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable() { }, ElevatedButtonThemeData_lerp(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new A.ElevatedButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, ElevatedButtonThemeData: function ElevatedButtonThemeData(t0) { this.style = t0; }, _ElevatedButtonThemeData_Object_Diagnosticable: function _ElevatedButtonThemeData_Object_Diagnosticable() { }, ExpandIcon: function ExpandIcon(t0, t1, t2, t3) { var _ = this; _.isExpanded = t0; _.onPressed = t1; _.padding = t2; _.key = t3; }, _ExpandIconState: function _ExpandIconState(t0, t1, t2) { var _ = this; _.___ExpandIconState__iconTurns = _.___ExpandIconState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, __ExpandIconState_State_SingleTickerProviderStateMixin: function __ExpandIconState_State_SingleTickerProviderStateMixin() { }, _SaltedKey: function _SaltedKey(t0, t1, t2) { this.salt = t0; this.value = t1; this.$ti = t2; }, ExpansionPanel: function ExpansionPanel(t0, t1, t2) { this.headerBuilder = t0; this.body = t1; this.isExpanded = t2; }, ExpansionPanelList: function ExpansionPanelList(t0, t1, t2) { this.children = t0; this.expansionCallback = t1; this.key = t2; }, _ExpansionPanelListState: function _ExpansionPanelListState(t0) { var _ = this; _._widget = _._currentOpenPanel = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ExpansionPanelListState_build_closure: function _ExpansionPanelListState_build_closure(t0, t1) { this.$this = t0; this.index = t1; }, ExpansionTileThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.collapsedBackgroundColor; t4 = A.Color_lerp(t4, t3 ? _null : b.collapsedBackgroundColor, t); t5 = t1 ? _null : a.tilePadding; t5 = A.EdgeInsetsGeometry_lerp(t5, t3 ? _null : b.tilePadding, t); t6 = t1 ? _null : a.expandedAlignment; t6 = A.AlignmentGeometry_lerp(t6, t3 ? _null : b.expandedAlignment, t); t7 = t1 ? _null : a.childrenPadding; t7 = A.EdgeInsetsGeometry_lerp(t7, t3 ? _null : b.childrenPadding, t); t8 = t1 ? _null : a.iconColor; t8 = A.Color_lerp(t8, t3 ? _null : b.iconColor, t); t9 = t1 ? _null : a.collapsedIconColor; t9 = A.Color_lerp(t9, t3 ? _null : b.collapsedIconColor, t); t10 = t1 ? _null : a.textColor; t10 = A.Color_lerp(t10, t3 ? _null : b.textColor, t); t1 = t1 ? _null : a.collapsedTextColor; return new A.ExpansionTileThemeData(t2, t4, t5, t6, t7, t8, t9, t10, A.Color_lerp(t1, t3 ? _null : b.collapsedTextColor, t)); }, ExpansionTileThemeData: function ExpansionTileThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.backgroundColor = t0; _.collapsedBackgroundColor = t1; _.tilePadding = t2; _.expandedAlignment = t3; _.childrenPadding = t4; _.iconColor = t5; _.collapsedIconColor = t6; _.textColor = t7; _.collapsedTextColor = t8; }, _ExpansionTileThemeData_Object_Diagnosticable: function _ExpansionTileThemeData_Object_Diagnosticable() { }, Feedback_forTap(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue; var $async$Feedback_forTap = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) $async$outer: switch ($async$goto) { case 0: // Function start context.get$renderObject().sendSemanticsEvent$1(B.TapSemanticEvent_tap); switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: $async$returnValue = A.SystemSound_play(B.SystemSoundType_0); // goto return $async$goto = 1; break $async$outer; case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break $async$outer; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$Feedback_forTap, $async$completer); }, Feedback_wrapForTap(callback, context) { return new A.Feedback_wrapForTap_closure(context, callback); }, Feedback_forLongPress(context) { context.get$renderObject().sendSemanticsEvent$1(B.LongPressSemanticsEvent_longPress); switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: return A.HapticFeedback_vibrate(); case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return A.Future_Future$value(null, type$.void); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, Feedback_wrapForTap_closure: function Feedback_wrapForTap_closure(t0, t1) { this.context = t0; this.callback = t1; }, FlexibleSpaceBar_createSettings(child, currentExtent, isScrolledUnder, maxExtent, minExtent, toolbarOpacity) { var t1 = toolbarOpacity == null ? 1 : toolbarOpacity, t2 = minExtent == null ? currentExtent : minExtent; return new A.FlexibleSpaceBarSettings(t1, t2, maxExtent == null ? currentExtent : maxExtent, currentExtent, isScrolledUnder, child, null); }, FlexibleSpaceBarSettings: function FlexibleSpaceBarSettings(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.toolbarOpacity = t0; _.minExtent = t1; _.maxExtent = t2; _.currentExtent = t3; _.isScrolledUnder = t4; _.child = t5; _.key = t6; }, FloatingActionButton$(backgroundColor, child, heroTag, mini, onPressed, tooltip) { return new A.FloatingActionButton(child, tooltip, backgroundColor, heroTag, onPressed, mini ? B._FloatingActionButtonType_1 : B._FloatingActionButtonType_0, null); }, _DefaultHeroTag: function _DefaultHeroTag() { }, _FloatingActionButtonType: function _FloatingActionButtonType(t0, t1) { this.index = t0; this._core$_name = t1; }, FloatingActionButton: function FloatingActionButton(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.tooltip = t1; _.backgroundColor = t2; _.heroTag = t3; _.onPressed = t4; _._floatingActionButtonType = t5; _.key = t6; }, _ChildOverflowBox: function _ChildOverflowBox(t0, t1) { this.child = t0; this.key = t1; }, _RenderChildOverflowBox: function _RenderChildOverflowBox(t0, t1, t2, t3) { var _ = this; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t0; _._shifted_box$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _M2Defaults: function _M2Defaults(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.type = t0; _.hasChild = t1; _._theme = t2; _._colors = t3; _.foregroundColor = t4; _.backgroundColor = t5; _.focusColor = t6; _.hoverColor = t7; _.splashColor = t8; _.elevation = t9; _.focusElevation = t10; _.hoverElevation = t11; _.disabledElevation = t12; _.highlightElevation = t13; _.shape = t14; _.enableFeedback = t15; _.iconSize = t16; _.sizeConstraints = t17; _.smallSizeConstraints = t18; _.largeSizeConstraints = t19; _.extendedSizeConstraints = t20; _.extendedIconLabelSpacing = t21; _.extendedPadding = t22; _.extendedTextStyle = t23; }, _AnimationSwap$(first, next, $parent, swapThreshold, $T) { return new A._AnimationSwap($parent, swapThreshold, first, next, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0, $T._eval$1("_AnimationSwap<0>")); }, FloatingActionButtonLocation: function FloatingActionButtonLocation() { }, StandardFabLocation: function StandardFabLocation() { }, FabTopOffsetY: function FabTopOffsetY() { }, FabFloatOffsetY: function FabFloatOffsetY() { }, FabDockedOffsetY: function FabDockedOffsetY() { }, FabEndOffsetX: function FabEndOffsetX() { }, _EndTopFabLocation: function _EndTopFabLocation() { }, _EndFloatFabLocation: function _EndFloatFabLocation() { }, _EndDockedFabLocation: function _EndDockedFabLocation() { }, FloatingActionButtonAnimator: function FloatingActionButtonAnimator() { }, _ScalingFabMotionAnimator: function _ScalingFabMotionAnimator() { }, _AnimationSwap: function _AnimationSwap(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.parent = t0; _.swapThreshold = t1; _.first = t2; _.next = t3; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t4; _.AnimationLocalListenersMixin__listeners = t5; _.AnimationLazyListenerMixin__listenerCounter = t6; _.$ti = t7; }, __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX: function __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY: function __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY() { }, __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX: function __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY: function __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY() { }, __EndTopFabLocation_StandardFabLocation_FabEndOffsetX: function __EndTopFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY: function __EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY() { }, FloatingActionButtonThemeData$(backgroundColor, disabledElevation, elevation, enableFeedback, extendedIconLabelSpacing, extendedPadding, extendedSizeConstraints, extendedTextStyle, focusColor, focusElevation, foregroundColor, highlightElevation, hoverColor, hoverElevation, iconSize, largeSizeConstraints, shape, sizeConstraints, smallSizeConstraints, splashColor) { return new A.FloatingActionButtonThemeData(foregroundColor, backgroundColor, focusColor, hoverColor, splashColor, elevation, focusElevation, hoverElevation, disabledElevation, highlightElevation, shape, enableFeedback, iconSize, sizeConstraints, smallSizeConstraints, largeSizeConstraints, extendedSizeConstraints, extendedIconLabelSpacing, extendedPadding, extendedTextStyle); }, FloatingActionButtonThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.foregroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.foregroundColor, t); t4 = t1 ? _null : a.backgroundColor; t4 = A.Color_lerp(t4, t3 ? _null : b.backgroundColor, t); t5 = t1 ? _null : a.focusColor; t5 = A.Color_lerp(t5, t3 ? _null : b.focusColor, t); t6 = t1 ? _null : a.hoverColor; t6 = A.Color_lerp(t6, t3 ? _null : b.hoverColor, t); t7 = t1 ? _null : a.splashColor; t7 = A.Color_lerp(t7, t3 ? _null : b.splashColor, t); t8 = t1 ? _null : a.elevation; t8 = A.lerpDouble(t8, t3 ? _null : b.elevation, t); t9 = t1 ? _null : a.focusElevation; t9 = A.lerpDouble(t9, t3 ? _null : b.focusElevation, t); t10 = t1 ? _null : a.hoverElevation; t10 = A.lerpDouble(t10, t3 ? _null : b.hoverElevation, t); t11 = t1 ? _null : a.disabledElevation; t11 = A.lerpDouble(t11, t3 ? _null : b.disabledElevation, t); t12 = t1 ? _null : a.highlightElevation; t12 = A.lerpDouble(t12, t3 ? _null : b.highlightElevation, t); t13 = t1 ? _null : a.shape; t13 = A.ShapeBorder_lerp(t13, t3 ? _null : b.shape, t); if (t < 0.5) t14 = t1 ? _null : a.enableFeedback; else t14 = t3 ? _null : b.enableFeedback; t15 = t1 ? _null : a.iconSize; t15 = A.lerpDouble(t15, t3 ? _null : b.iconSize, t); t16 = t1 ? _null : a.sizeConstraints; t16 = A.BoxConstraints_lerp(t16, t3 ? _null : b.sizeConstraints, t); t17 = t1 ? _null : a.smallSizeConstraints; t17 = A.BoxConstraints_lerp(t17, t3 ? _null : b.smallSizeConstraints, t); t18 = t1 ? _null : a.largeSizeConstraints; t18 = A.BoxConstraints_lerp(t18, t3 ? _null : b.largeSizeConstraints, t); t19 = t1 ? _null : a.extendedSizeConstraints; t19 = A.BoxConstraints_lerp(t19, t3 ? _null : b.extendedSizeConstraints, t); t20 = t1 ? _null : a.extendedIconLabelSpacing; t20 = A.lerpDouble(t20, t3 ? _null : b.extendedIconLabelSpacing, t); t21 = t1 ? _null : a.extendedPadding; t21 = A.EdgeInsetsGeometry_lerp(t21, t3 ? _null : b.extendedPadding, t); t1 = t1 ? _null : a.extendedTextStyle; return A.FloatingActionButtonThemeData$(t4, t11, t8, t14, t20, t21, t19, A.TextStyle_lerp(t1, t3 ? _null : b.extendedTextStyle, t), t5, t9, t2, t12, t6, t10, t15, t18, t13, t16, t17, t7); }, FloatingActionButtonThemeData: function FloatingActionButtonThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.foregroundColor = t0; _.backgroundColor = t1; _.focusColor = t2; _.hoverColor = t3; _.splashColor = t4; _.elevation = t5; _.focusElevation = t6; _.hoverElevation = t7; _.disabledElevation = t8; _.highlightElevation = t9; _.shape = t10; _.enableFeedback = t11; _.iconSize = t12; _.sizeConstraints = t13; _.smallSizeConstraints = t14; _.largeSizeConstraints = t15; _.extendedSizeConstraints = t16; _.extendedIconLabelSpacing = t17; _.extendedPadding = t18; _.extendedTextStyle = t19; }, _FloatingActionButtonThemeData_Object_Diagnosticable: function _FloatingActionButtonThemeData_Object_Diagnosticable() { }, IconButton$(alignment, color, disabledColor, enableFeedback, icon, iconSize, onPressed, padding, splashRadius, tooltip, visualDensity) { return new A.IconButton(iconSize, visualDensity, padding, alignment, splashRadius, icon, color, disabledColor, onPressed, tooltip, true, null); }, IconButton: function IconButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.iconSize = t0; _.visualDensity = t1; _.padding = t2; _.alignment = t3; _.splashRadius = t4; _.icon = t5; _.color = t6; _.disabledColor = t7; _.onPressed = t8; _.tooltip = t9; _.enableFeedback = t10; _.key = t11; }, Ink$(child, color, decoration, height) { var t1, _null = null; if (decoration == null) t1 = color != null ? new A.BoxDecoration(color, _null, _null, _null, _null, _null, B.BoxShape_0) : _null; else t1 = decoration; return new A.Ink(child, t1, height, _null); }, Ink: function Ink(t0, t1, t2, t3) { var _ = this; _.child = t0; _.decoration = t1; _.height = t2; _.key = t3; }, _InkState: function _InkState(t0, t1) { var _ = this; _._boxKey = t0; _._widget = _._ink = null; _._debugLifecycleState = t1; _._framework$_element = null; }, InkDecoration: function InkDecoration(t0, t1, t2, t3) { var _ = this; _._ink_decoration$_decoration = _._ink_decoration$_painter = null; _._ink_decoration$_configuration = t0; _._material$_controller = t1; _.referenceBox = t2; _.onRemoved = t3; _._material$_debugDisposed = false; }, InkHighlight: function InkHighlight(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._ink_highlight$_shape = t0; _._ink_highlight$_radius = t1; _._ink_highlight$_borderRadius = t2; _._ink_highlight$_customBorder = t3; _._rectCallback = t4; _._ink_highlight$_textDirection = t5; _.__InkHighlight__alphaController = _.__InkHighlight__alpha = $; _._active = true; _._ink_well$_color = t6; _._material$_controller = t7; _.referenceBox = t8; _.onRemoved = t9; _._material$_debugDisposed = false; }, _getClipCallback(referenceBox, containedInkWell, rectCallback) { if (rectCallback != null) return rectCallback; if (containedInkWell) return new A._getClipCallback_closure(referenceBox); return null; }, _getClipCallback_closure: function _getClipCallback_closure(t0) { this.referenceBox = t0; }, _InkRippleFactory: function _InkRippleFactory() { }, InkRipple: function InkRipple(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._ink_ripple$_position = t0; _._ink_ripple$_borderRadius = t1; _._ink_ripple$_customBorder = t2; _._ink_ripple$_targetRadius = t3; _._ink_ripple$_clipCallback = t4; _._ink_ripple$_textDirection = t5; _.__InkRipple__fadeOutController = _.__InkRipple__fadeOut = _.__InkRipple__fadeInController = _.__InkRipple__fadeIn = _.__InkRipple__radiusController = _.__InkRipple__radius = $; _._ink_well$_color = t6; _._material$_controller = t7; _.referenceBox = t8; _.onRemoved = t9; _._material$_debugDisposed = false; }, _getClipCallback0(referenceBox, containedInkWell, rectCallback) { if (rectCallback != null) return rectCallback; if (containedInkWell) return new A._getClipCallback_closure0(referenceBox); return null; }, _getTargetRadius(referenceBox, containedInkWell, rectCallback, position) { var t1, size, d1, d2, d3, d4; if (containedInkWell) { if (rectCallback != null) { t1 = rectCallback.call$0(); size = new A.Size(t1.right - t1.left, t1.bottom - t1.top); } else { t1 = referenceBox._box$_size; t1.toString; size = t1; } d1 = position.$sub(0, B.Offset_0_0).get$distance(); d2 = position.$sub(0, new A.Offset(0 + size._dx, 0)).get$distance(); d3 = position.$sub(0, new A.Offset(0, 0 + size._dy)).get$distance(); d4 = position.$sub(0, size.bottomRight$1(0, B.Offset_0_0)).get$distance(); return Math.ceil(Math.max(Math.max(d1, d2), Math.max(d3, d4))); } return 35; }, _getClipCallback_closure0: function _getClipCallback_closure0(t0) { this.referenceBox = t0; }, _InkSplashFactory: function _InkSplashFactory() { }, InkSplash: function InkSplash(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._ink_splash$_position = t0; _._ink_splash$_borderRadius = t1; _._customBorder = t2; _._targetRadius = t3; _._clipCallback = t4; _._repositionToReferenceBox = t5; _._ink_splash$_textDirection = t6; _.__InkSplash__alpha = _.__InkSplash__radiusController = _.__InkSplash__radius = $; _._alphaController = null; _._ink_well$_color = t7; _._material$_controller = t8; _.referenceBox = t9; _.onRemoved = t10; _._material$_debugDisposed = false; }, InkResponse$(autofocus, borderRadius, canRequestFocus, child, containedInkWell, customBorder, enableFeedback, excludeFromSemantics, focusColor, focusNode, highlightColor, highlightShape, hoverColor, key, mouseCursor, onDoubleTap, onFocusChange, onHighlightChanged, onHover, onLongPress, onTap, onTapCancel, onTapDown, onTapUp, overlayColor, radius, splashColor, splashFactory) { return new A.InkResponse(child, onTap, onTapDown, onTapUp, onTapCancel, onDoubleTap, onLongPress, onHighlightChanged, onHover, mouseCursor, containedInkWell, highlightShape, radius, borderRadius, customBorder, focusColor, hoverColor, highlightColor, overlayColor, splashColor, splashFactory, enableFeedback, false, onFocusChange, autofocus, focusNode, canRequestFocus, key); }, InkWell$(autofocus, borderRadius, canRequestFocus, child, customBorder, enableFeedback, focusColor, focusNode, highlightColor, hoverColor, key, mouseCursor, onDoubleTap, onFocusChange, onHighlightChanged, onHover, onLongPress, onTap, onTapCancel, onTapDown, overlayColor, radius, splashColor, splashFactory) { return new A.InkWell(child, onTap, onTapDown, null, onTapCancel, onDoubleTap, onLongPress, onHighlightChanged, onHover, mouseCursor, true, B.BoxShape_0, radius, borderRadius, customBorder, focusColor, hoverColor, highlightColor, overlayColor, splashColor, splashFactory, enableFeedback !== false, false, onFocusChange, autofocus, focusNode, canRequestFocus, key); }, InteractiveInkFeature: function InteractiveInkFeature() { }, InteractiveInkFeatureFactory: function InteractiveInkFeatureFactory() { }, _ParentInkResponseProvider: function _ParentInkResponseProvider(t0, t1, t2) { this.state = t0; this.child = t1; this.key = t2; }, InkResponse: function InkResponse(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapUp = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onHighlightChanged = t7; _.onHover = t8; _.mouseCursor = t9; _.containedInkWell = t10; _.highlightShape = t11; _.radius = t12; _.borderRadius = t13; _.customBorder = t14; _.focusColor = t15; _.hoverColor = t16; _.highlightColor = t17; _.overlayColor = t18; _.splashColor = t19; _.splashFactory = t20; _.enableFeedback = t21; _.excludeFromSemantics = t22; _.onFocusChange = t23; _.autofocus = t24; _.focusNode = t25; _.canRequestFocus = t26; _.key = t27; }, _InkResponseStateWidget: function _InkResponseStateWidget(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapUp = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onHighlightChanged = t7; _.onHover = t8; _.mouseCursor = t9; _.containedInkWell = t10; _.highlightShape = t11; _.radius = t12; _.borderRadius = t13; _.customBorder = t14; _.focusColor = t15; _.hoverColor = t16; _.highlightColor = t17; _.overlayColor = t18; _.splashColor = t19; _.splashFactory = t20; _.enableFeedback = t21; _.excludeFromSemantics = t22; _.onFocusChange = t23; _.autofocus = t24; _.focusNode = t25; _.canRequestFocus = t26; _.parentState = t27; _.getRectCallback = t28; _.debugCheckContext = t29; _.key = t30; }, _HighlightType: function _HighlightType(t0, t1) { this.index = t0; this._core$_name = t1; }, _InkResponseState: function _InkResponseState(t0, t1, t2, t3) { var _ = this; _._currentSplash = _._splashes = null; _._hovering = false; _._highlights = t0; _.___InkResponseState__actionMap = $; _._activeChildren = t1; _._hasFocus = false; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _InkResponseState_highlightsExist_closure: function _InkResponseState_highlightsExist_closure() { }, _InkResponseState_updateHighlight_handleInkRemoval: function _InkResponseState_updateHighlight_handleInkRemoval(t0, t1) { this.$this = t0; this.type = t1; }, _InkResponseState__createInkFeature_onRemoved: function _InkResponseState__createInkFeature_onRemoved(t0, t1) { this._box_0 = t0; this.$this = t1; }, _InkResponseState__handleFocusHighlightModeChange_closure: function _InkResponseState__handleFocusHighlightModeChange_closure(t0) { this.$this = t0; }, InkWell: function InkWell(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapUp = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onHighlightChanged = t7; _.onHover = t8; _.mouseCursor = t9; _.containedInkWell = t10; _.highlightShape = t11; _.radius = t12; _.borderRadius = t13; _.customBorder = t14; _.focusColor = t15; _.hoverColor = t16; _.highlightColor = t17; _.overlayColor = t18; _.splashColor = t19; _.splashFactory = t20; _.enableFeedback = t21; _.excludeFromSemantics = t22; _.onFocusChange = t23; _.autofocus = t24; _.focusNode = t25; _.canRequestFocus = t26; _.key = t27; }, __InkResponseState_State_AutomaticKeepAliveClientMixin: function __InkResponseState_State_AutomaticKeepAliveClientMixin() { }, InputBorder: function InputBorder() { }, _NoInputBorder: function _NoInputBorder(t0) { this.borderSide = t0; }, UnderlineInputBorder: function UnderlineInputBorder(t0, t1) { this.borderRadius = t0; this.borderSide = t1; }, OutlineInputBorder: function OutlineInputBorder(t0, t1, t2) { this.gapPadding = t0; this.borderRadius = t1; this.borderSide = t2; }, InputDatePickerFormField: function InputDatePickerFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.onDateSubmitted = t3; _.onDateSaved = t4; _.selectableDayPredicate = t5; _.errorFormatText = t6; _.errorInvalidText = t7; _.fieldHintText = t8; _.fieldLabelText = t9; _.keyboardType = t10; _.autofocus = t11; _.key = t12; }, _InputDatePickerFormFieldState: function _InputDatePickerFormFieldState(t0, t1) { var _ = this; _._input_date_picker_form_field$_controller = t0; _._inputText = _._input_date_picker_form_field$_selectedDate = null; _._autoSelected = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InputDatePickerFormFieldState_didUpdateWidget_closure: function _InputDatePickerFormFieldState_didUpdateWidget_closure(t0) { this.$this = t0; }, _InputDatePickerFormFieldState_didUpdateWidget__closure: function _InputDatePickerFormFieldState_didUpdateWidget__closure(t0) { this.$this = t0; }, FloatingLabelAlignment__stringify(x) { if (x === -1) return "FloatingLabelAlignment.start"; if (x === 0) return "FloatingLabelAlignment.center"; return "FloatingLabelAlignment(x: " + B.JSInt_methods.toStringAsFixed$1(x, 1) + ")"; }, InputDecorator$(baseStyle, child, decoration, expands, isEmpty, isFocused, isHovering, textAlign, textAlignVertical) { return new A.InputDecorator(decoration, baseStyle, textAlign, textAlignVertical, isFocused, isHovering, expands, isEmpty, child, null); }, InputDecoration$(alignLabelWithHint, border, constraints, contentPadding, counter, counterStyle, counterText, disabledBorder, enabled, enabledBorder, errorBorder, errorMaxLines, errorStyle, errorText, fillColor, filled, floatingLabelAlignment, floatingLabelBehavior, floatingLabelStyle, focusColor, focusedBorder, focusedErrorBorder, helperMaxLines, helperStyle, helperText, hintMaxLines, hintStyle, hintText, hintTextDirection, hoverColor, icon, iconColor, isCollapsed, isDense, label, labelStyle, labelText, prefix, prefixIcon, prefixIconColor, prefixIconConstraints, prefixStyle, prefixText, semanticCounterText, suffix, suffixIcon, suffixIconColor, suffixIconConstraints, suffixStyle, suffixText) { return new A.InputDecoration(icon, iconColor, label, labelText, labelStyle, floatingLabelStyle, helperText, helperStyle, helperMaxLines, hintText, hintStyle, hintTextDirection, hintMaxLines, errorText, errorStyle, errorMaxLines, floatingLabelBehavior, floatingLabelAlignment, isDense, contentPadding, false, prefixIcon, prefixIconConstraints, prefix, prefixText, prefixStyle, prefixIconColor, suffixIcon, suffix, suffixText, suffixStyle, suffixIconColor, suffixIconConstraints, counterText, counter, counterStyle, filled, fillColor, focusColor, hoverColor, errorBorder, focusedBorder, focusedErrorBorder, disabledBorder, enabledBorder, border, enabled, semanticCounterText, alignLabelWithHint, constraints); }, _InputBorderGap: function _InputBorderGap(t0) { var _ = this; _._input_decorator$_start = null; _.ChangeNotifier__count = _._extent = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _InputBorderTween: function _InputBorderTween(t0, t1) { this.begin = t0; this.end = t1; }, _InputBorderPainter: function _InputBorderPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.borderAnimation = t0; _.border = t1; _.gapAnimation = t2; _.gap = t3; _.textDirection = t4; _.fillColor = t5; _.hoverColorTween = t6; _.hoverAnimation = t7; _._repaint = t8; }, _BorderContainer: function _BorderContainer(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.border = t0; _.gap = t1; _.gapAnimation = t2; _.fillColor = t3; _.hoverColor = t4; _.isHovering = t5; _.key = t6; }, _BorderContainerState: function _BorderContainerState(t0, t1, t2) { var _ = this; _.___BorderContainerState__hoverColorTween = _.___BorderContainerState__hoverAnimation = _.___BorderContainerState__border = _.___BorderContainerState__borderAnimation = _.___BorderContainerState__hoverColorController = _.___BorderContainerState__controller = $; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _Shaker: function _Shaker(t0, t1, t2) { this.child = t0; this.listenable = t1; this.key = t2; }, _HelperError: function _HelperError(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.textAlign = t0; _.helperText = t1; _.helperStyle = t2; _.helperMaxLines = t3; _.errorText = t4; _.errorStyle = t5; _.errorMaxLines = t6; _.key = t7; }, _HelperErrorState: function _HelperErrorState(t0, t1, t2) { var _ = this; _.___HelperErrorState__controller = $; _._error = _._helper = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _HelperErrorState__handleChange_closure: function _HelperErrorState__handleChange_closure() { }, FloatingLabelBehavior: function FloatingLabelBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, FloatingLabelAlignment: function FloatingLabelAlignment() { }, _DecorationSlot: function _DecorationSlot(t0, t1) { this.index = t0; this._core$_name = t1; }, _Decoration: function _Decoration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.contentPadding = t0; _.isCollapsed = t1; _.floatingLabelHeight = t2; _.floatingLabelProgress = t3; _.floatingLabelAlignment = t4; _.border = t5; _.borderGap = t6; _.alignLabelWithHint = t7; _.isDense = t8; _.visualDensity = t9; _.icon = t10; _.input = t11; _.label = t12; _.hint = t13; _.prefix = t14; _.suffix = t15; _.prefixIcon = t16; _.suffixIcon = t17; _.helperError = t18; _.counter = t19; _.container = t20; }, _RenderDecorationLayout: function _RenderDecorationLayout(t0, t1, t2, t3, t4, t5) { var _ = this; _.boxToBaseline = t0; _.inputBaseline = t1; _.outlineBaseline = t2; _.subtextBaseline = t3; _.containerHeight = t4; _.subtextHeight = t5; }, _RenderDecoration: function _RenderDecoration(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._input_decorator$_decoration = t0; _._input_decorator$_textDirection = t1; _._input_decorator$_textBaseline = t2; _._textAlignVertical = t3; _._isFocused = t4; _._input_decorator$_expands = t5; _._labelTransform = null; _.SlottedContainerRenderObjectMixin__slotToChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderDecoration_performLayout_centerLayout: function _RenderDecoration_performLayout_centerLayout(t0) { this._box_0 = t0; }, _RenderDecoration_performLayout_baselineLayout: function _RenderDecoration_performLayout_baselineLayout(t0, t1) { this._box_0 = t0; this.layout = t1; }, _RenderDecoration_paint_doPaint: function _RenderDecoration_paint_doPaint(t0, t1) { this.context = t0; this.offset = t1; }, _RenderDecoration_hitTestChildren_closure: function _RenderDecoration_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.offset = t1; this.child = t2; }, _Decorator: function _Decorator(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.decoration = t0; _.textDirection = t1; _.textBaseline = t2; _.textAlignVertical = t3; _.isFocused = t4; _.expands = t5; _.key = t6; }, InputDecorator: function InputDecorator(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.decoration = t0; _.baseStyle = t1; _.textAlign = t2; _.textAlignVertical = t3; _.isFocused = t4; _.isHovering = t5; _.expands = t6; _.isEmpty = t7; _.child = t8; _.key = t9; }, _InputDecoratorState: function _InputDecoratorState(t0, t1, t2, t3) { var _ = this; _.___InputDecoratorState__shakingLabelController = _.___InputDecoratorState__floatingLabelController = $; _._borderGap = t0; _._effectiveDecoration = null; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _InputDecoratorState__handleChange_closure: function _InputDecoratorState__handleChange_closure() { }, _InputDecoratorState__getIconColor__resolveIconColor: function _InputDecoratorState__getIconColor__resolveIconColor(t0) { this.themeData = t0; }, _InputDecoratorState__getFloatingLabelStyle_getFallbackTextStyle: function _InputDecoratorState__getFloatingLabelStyle_getFallbackTextStyle(t0, t1) { this.$this = t0; this.themeData = t1; }, InputDecoration: function InputDecoration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49) { var _ = this; _.icon = t0; _.iconColor = t1; _.label = t2; _.labelText = t3; _.labelStyle = t4; _.floatingLabelStyle = t5; _.helperText = t6; _.helperStyle = t7; _.helperMaxLines = t8; _.hintText = t9; _.hintStyle = t10; _.hintTextDirection = t11; _.hintMaxLines = t12; _.errorText = t13; _.errorStyle = t14; _.errorMaxLines = t15; _.floatingLabelBehavior = t16; _.floatingLabelAlignment = t17; _.isDense = t18; _.contentPadding = t19; _.isCollapsed = t20; _.prefixIcon = t21; _.prefixIconConstraints = t22; _.prefix = t23; _.prefixText = t24; _.prefixStyle = t25; _.prefixIconColor = t26; _.suffixIcon = t27; _.suffix = t28; _.suffixText = t29; _.suffixStyle = t30; _.suffixIconColor = t31; _.suffixIconConstraints = t32; _.counterText = t33; _.counter = t34; _.counterStyle = t35; _.filled = t36; _.fillColor = t37; _.focusColor = t38; _.hoverColor = t39; _.errorBorder = t40; _.focusedBorder = t41; _.focusedErrorBorder = t42; _.disabledBorder = t43; _.enabledBorder = t44; _.border = t45; _.enabled = t46; _.semanticCounterText = t47; _.alignLabelWithHint = t48; _.constraints = t49; }, InputDecorationTheme: function InputDecorationTheme() { }, _InputDecorationTheme_Object_Diagnosticable: function _InputDecorationTheme_Object_Diagnosticable() { }, __BorderContainerState_State_TickerProviderStateMixin: function __BorderContainerState_State_TickerProviderStateMixin() { }, __Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin: function __Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin() { }, __HelperErrorState_State_SingleTickerProviderStateMixin: function __HelperErrorState_State_SingleTickerProviderStateMixin() { }, __InputDecoratorState_State_TickerProviderStateMixin: function __InputDecoratorState_State_TickerProviderStateMixin() { }, __RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin: function __RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin() { }, ListTile$(autofocus, contentPadding, dense, enableFeedback, enabled, focusNode, hoverColor, isThreeLine, key, leading, onLongPress, onTap, selected, selectedTileColor, shape, subtitle, tileColor, title, trailing, visualDensity) { return new A.ListTile(leading, title, subtitle, trailing, isThreeLine, dense, visualDensity, shape, contentPadding, enabled, onTap, onLongPress, selected, hoverColor, focusNode, false, tileColor, selectedTileColor, enableFeedback, key); }, _RenderListTile__layoutBox(box, constraints) { var t1; if (box == null) return B.Size_0_0; box.layout$2$parentUsesSize(0, constraints, true); t1 = box._box$_size; t1.toString; return t1; }, ListTileStyle: function ListTileStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, ListTileControlAffinity: function ListTileControlAffinity(t0, t1) { this.index = t0; this._core$_name = t1; }, ListTile: function ListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.leading = t0; _.title = t1; _.subtitle = t2; _.trailing = t3; _.isThreeLine = t4; _.dense = t5; _.visualDensity = t6; _.shape = t7; _.contentPadding = t8; _.enabled = t9; _.onTap = t10; _.onLongPress = t11; _.selected = t12; _.hoverColor = t13; _.focusNode = t14; _.autofocus = t15; _.tileColor = t16; _.selectedTileColor = t17; _.enableFeedback = t18; _.key = t19; }, _ListTileSlot: function _ListTileSlot(t0, t1) { this.index = t0; this._core$_name = t1; }, _ListTile: function _ListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.leading = t0; _.title = t1; _.subtitle = t2; _.trailing = t3; _.isThreeLine = t4; _.isDense = t5; _.visualDensity = t6; _.textDirection = t7; _.titleBaselineType = t8; _.subtitleBaselineType = t9; _.horizontalTitleGap = t10; _.minVerticalPadding = t11; _.minLeadingWidth = t12; _.key = t13; }, _RenderListTile: function _RenderListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._isDense = t0; _._visualDensity = t1; _._isThreeLine = t2; _._list_tile$_textDirection = t3; _._titleBaselineType = t4; _._subtitleBaselineType = t5; _._horizontalTitleGap = t6; _._minVerticalPadding = t7; _._minLeadingWidth = t8; _.SlottedContainerRenderObjectMixin__slotToChild = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t10; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderListTile_paint_doPaint: function _RenderListTile_paint_doPaint(t0, t1) { this.context = t0; this.offset = t1; }, _RenderListTile_hitTestChildren_closure: function _RenderListTile_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.parentData = t1; this.child = t2; }, __ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin: function __ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin() { }, __RenderListTile_RenderBox_SlottedContainerRenderObjectMixin: function __RenderListTile_RenderBox_SlottedContainerRenderObjectMixin() { }, ListTileThemeData$(contentPadding, dense, enableFeedback, horizontalTitleGap, iconColor, minLeadingWidth, minVerticalPadding, mouseCursor, selectedColor, selectedTileColor, shape, style, textColor, tileColor, visualDensity) { return new A.ListTileThemeData(dense, shape, style, selectedColor, iconColor, textColor, contentPadding, tileColor, selectedTileColor, horizontalTitleGap, minVerticalPadding, minLeadingWidth, enableFeedback, mouseCursor, visualDensity); }, ListTileThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t < 0.5; if (t2) t3 = t1 ? _null : a.dense; else t3 = b == null ? _null : b.dense; t4 = t1 ? _null : a.shape; t5 = b == null; t4 = A.ShapeBorder_lerp(t4, t5 ? _null : b.shape, t); if (t2) t6 = t1 ? _null : a.style; else t6 = t5 ? _null : b.style; t7 = t1 ? _null : a.selectedColor; t7 = A.Color_lerp(t7, t5 ? _null : b.selectedColor, t); t8 = t1 ? _null : a.iconColor; t8 = A.Color_lerp(t8, t5 ? _null : b.iconColor, t); t9 = t1 ? _null : a.textColor; t9 = A.Color_lerp(t9, t5 ? _null : b.textColor, t); t10 = t1 ? _null : a.contentPadding; t10 = A.EdgeInsetsGeometry_lerp(t10, t5 ? _null : b.contentPadding, t); t11 = t1 ? _null : a.tileColor; t11 = A.Color_lerp(t11, t5 ? _null : b.tileColor, t); t12 = t1 ? _null : a.selectedTileColor; t12 = A.Color_lerp(t12, t5 ? _null : b.selectedTileColor, t); t13 = t1 ? _null : a.horizontalTitleGap; t13 = A.lerpDouble(t13, t5 ? _null : b.horizontalTitleGap, t); t14 = t1 ? _null : a.minVerticalPadding; t14 = A.lerpDouble(t14, t5 ? _null : b.minVerticalPadding, t); t15 = t1 ? _null : a.minLeadingWidth; t15 = A.lerpDouble(t15, t5 ? _null : b.minLeadingWidth, t); if (t2) t16 = t1 ? _null : a.enableFeedback; else t16 = t5 ? _null : b.enableFeedback; if (t2) t17 = t1 ? _null : a.mouseCursor; else t17 = t5 ? _null : b.mouseCursor; if (t2) t1 = t1 ? _null : a.visualDensity; else t1 = t5 ? _null : b.visualDensity; return A.ListTileThemeData$(t10, t3, t16, t13, t8, t15, t14, t17, t7, t12, t4, t6, t9, t11, t1); }, ListTileTheme$(child, data, key, style) { return new A.ListTileTheme(data, style, child, key); }, ListTileTheme_of(context) { var result = context.dependOnInheritedWidgetOfExactType$1$0(type$.ListTileTheme), t1 = result == null ? null : result.get$data(result); return t1 == null ? A.Theme_of(context).listTileTheme : t1; }, ListTileTheme_merge(child, selectedColor) { var _null = null; return new A.Builder(new A.ListTileTheme_merge_closure(_null, _null, _null, _null, selectedColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, child), _null); }, ListTileThemeData: function ListTileThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.dense = t0; _.shape = t1; _.style = t2; _.selectedColor = t3; _.iconColor = t4; _.textColor = t5; _.contentPadding = t6; _.tileColor = t7; _.selectedTileColor = t8; _.horizontalTitleGap = t9; _.minVerticalPadding = t10; _.minLeadingWidth = t11; _.enableFeedback = t12; _.mouseCursor = t13; _.visualDensity = t14; }, ListTileTheme: function ListTileTheme(t0, t1, t2, t3) { var _ = this; _._list_tile_theme$_data = t0; _._list_tile_theme$_style = t1; _.child = t2; _.key = t3; }, ListTileTheme_merge_closure: function ListTileTheme_merge_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.key = t0; _.dense = t1; _.shape = t2; _.style = t3; _.selectedColor = t4; _.iconColor = t5; _.textColor = t6; _.contentPadding = t7; _.tileColor = t8; _.selectedTileColor = t9; _.enableFeedback = t10; _.horizontalTitleGap = t11; _.minVerticalPadding = t12; _.minLeadingWidth = t13; _.child = t14; }, _ListTileThemeData_Object_Diagnosticable: function _ListTileThemeData_Object_Diagnosticable() { }, Material$(animationDuration, borderOnForeground, borderRadius, child, clipBehavior, color, elevation, key, shadowColor, shape, surfaceTintColor, textStyle, type) { return new A.Material(child, type, elevation, color, shadowColor, surfaceTintColor, textStyle, shape, true, clipBehavior, animationDuration, borderRadius, key); }, MaterialType: function MaterialType(t0, t1) { this.index = t0; this._core$_name = t1; }, Material: function Material(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.child = t0; _.type = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.surfaceTintColor = t5; _.textStyle = t6; _.shape = t7; _.borderOnForeground = t8; _.clipBehavior = t9; _.animationDuration = t10; _.borderRadius = t11; _.key = t12; }, _MaterialState: function _MaterialState(t0, t1, t2, t3) { var _ = this; _._inkFeatureRenderer = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _MaterialState_build_closure: function _MaterialState_build_closure(t0) { this.$this = t0; }, _RenderInkFeatures: function _RenderInkFeatures(t0, t1, t2, t3, t4) { var _ = this; _.vsync = t0; _.color = t1; _.absorbHitTest = t2; _._inkFeatures = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _InkFeatures: function _InkFeatures(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.vsync = t1; _.absorbHitTest = t2; _.child = t3; _.key = t4; }, InkFeature: function InkFeature() { }, ShapeBorderTween: function ShapeBorderTween(t0, t1) { this.begin = t0; this.end = t1; }, _MaterialInterior: function _MaterialInterior(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.child = t0; _.shape = t1; _.borderOnForeground = t2; _.clipBehavior = t3; _.elevation = t4; _.color = t5; _.shadowColor = t6; _.surfaceTintColor = t7; _.curve = t8; _.duration = t9; _.onEnd = t10; _.key = t11; }, _MaterialInteriorState: function _MaterialInteriorState(t0, t1, t2) { var _ = this; _._border = _._shadowColor = _._surfaceTintColor = _._elevation = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MaterialInteriorState_forEachTween_closure: function _MaterialInteriorState_forEachTween_closure() { }, _MaterialInteriorState_forEachTween_closure0: function _MaterialInteriorState_forEachTween_closure0() { }, _MaterialInteriorState_forEachTween_closure1: function _MaterialInteriorState_forEachTween_closure1() { }, _MaterialInteriorState_forEachTween_closure2: function _MaterialInteriorState_forEachTween_closure2() { }, _ShapeBorderPaint: function _ShapeBorderPaint(t0, t1, t2, t3) { var _ = this; _.child = t0; _.shape = t1; _.borderOnForeground = t2; _.key = t3; }, _ShapeBorderPainter: function _ShapeBorderPainter(t0, t1, t2) { this.border = t0; this.textDirection = t1; this._repaint = t2; }, __MaterialState_State_TickerProviderStateMixin: function __MaterialState_State_TickerProviderStateMixin() { }, _MaterialLocalizationsDelegate: function _MaterialLocalizationsDelegate() { }, DefaultMaterialLocalizations: function DefaultMaterialLocalizations() { }, _MaterialStateColor$(_resolve) { return new A._MaterialStateColor(_resolve, J.get$value$x(_resolve.call$1(B.Set_empty0))); }, MaterialStateProperty_resolveAs(value, states, $T) { if ($T._eval$1("MaterialStateProperty<0>")._is(value)) return value.resolve$1(0, states); return value; }, MaterialState: function MaterialState(t0, t1) { this.index = t0; this._core$_name = t1; }, MaterialStateColor: function MaterialStateColor() { }, _MaterialStateColor: function _MaterialStateColor(t0, t1) { this._material_state$_resolve = t0; this.value = t1; }, MaterialStateMouseCursor: function MaterialStateMouseCursor() { }, _EnabledAndDisabledMouseCursor: function _EnabledAndDisabledMouseCursor(t0, t1) { this.enabledCursor = t0; this.name = t1; }, MaterialStateProperty: function MaterialStateProperty() { }, _MaterialStatePropertyWith: function _MaterialStatePropertyWith(t0, t1) { this._material_state$_resolve = t0; this.$ti = t1; }, _MaterialStatePropertyAll: function _MaterialStatePropertyAll(t0, t1) { this.value = t0; this.$ti = t1; }, MaterialStateMixin: function MaterialStateMixin() { }, MaterialStateMixin_updateMaterialState_closure: function MaterialStateMixin_updateMaterialState_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.onChanged = t2; }, MaterialStateMixin_addMaterialState_closure: function MaterialStateMixin_addMaterialState_closure() { }, MaterialStateMixin_removeMaterialState_closure: function MaterialStateMixin_removeMaterialState_closure() { }, MergeableMaterialItem: function MergeableMaterialItem() { }, MaterialSlice: function MaterialSlice(t0, t1, t2) { this.child = t0; this.color = t1; this.key = t2; }, MaterialGap: function MaterialGap(t0, t1) { this.size = t0; this.key = t1; }, MergeableMaterial: function MergeableMaterial(t0, t1, t2, t3, t4) { var _ = this; _.children = t0; _.elevation = t1; _.hasDividers = t2; _.dividerColor = t3; _.key = t4; }, _AnimationTuple: function _AnimationTuple(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.startAnimation = t1; _.endAnimation = t2; _.gapAnimation = t3; _.gapStart = 0; }, _MergeableMaterialState: function _MergeableMaterialState(t0, t1, t2, t3) { var _ = this; _.___MergeableMaterialState__children = $; _._animationTuples = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _MergeableMaterialState__handleTick_closure: function _MergeableMaterialState__handleTick_closure() { }, _MergeableMaterialState_didUpdateWidget_closure: function _MergeableMaterialState_didUpdateWidget_closure() { }, _MergeableMaterialState_didUpdateWidget_closure0: function _MergeableMaterialState_didUpdateWidget_closure0() { }, _MergeableMaterialSliceKey: function _MergeableMaterialSliceKey(t0) { this.value = t0; }, _MergeableMaterialListBody: function _MergeableMaterialListBody(t0, t1, t2, t3) { var _ = this; _.elevation = t0; _.mainAxis = t1; _.children = t2; _.key = t3; }, _RenderMergeableMaterialListBody: function _RenderMergeableMaterialListBody(t0, t1, t2, t3, t4, t5) { var _ = this; _._mergeable_material$_elevation = t0; _._axisDirection = t1; _.ContainerRenderObjectMixin__childCount = t2; _.ContainerRenderObjectMixin__firstChild = t3; _.ContainerRenderObjectMixin__lastChild = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, __MergeableMaterialState_State_TickerProviderStateMixin: function __MergeableMaterialState_State_TickerProviderStateMixin() { }, NavigationBarThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.height; t3 = b == null; t2 = A.lerpDouble(t2, t3 ? _null : b.height, t); t4 = t1 ? _null : a.backgroundColor; t4 = A.Color_lerp(t4, t3 ? _null : b.backgroundColor, t); t5 = t1 ? _null : a.elevation; t5 = A.lerpDouble(t5, t3 ? _null : b.elevation, t); t6 = t1 ? _null : a.indicatorColor; t6 = A.Color_lerp(t6, t3 ? _null : b.indicatorColor, t); t7 = t1 ? _null : a.indicatorShape; t7 = A.ShapeBorder_lerp(t7, t3 ? _null : b.indicatorShape, t); t8 = t1 ? _null : a.labelTextStyle; t9 = t3 ? _null : b.labelTextStyle; t9 = A.NavigationBarThemeData__lerpProperties(t8, t9, t, A.text_style_TextStyle_lerp$closure(), type$.nullable_TextStyle); t8 = t1 ? _null : a.iconTheme; t10 = t3 ? _null : b.iconTheme; t10 = A.NavigationBarThemeData__lerpProperties(t8, t10, t, A.icon_theme_data_IconThemeData_lerp$closure(), type$.nullable_IconThemeData); if (t < 0.5) t1 = t1 ? _null : a.labelBehavior; else t1 = t3 ? _null : b.labelBehavior; return new A.NavigationBarThemeData(t2, t4, t5, t6, t7, t9, t10, t1); }, NavigationBarThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties2(a, b, t, lerpFunction, $T._eval$1("_LerpProperties2<0>")); }, NavigationBarThemeData: function NavigationBarThemeData(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.height = t0; _.backgroundColor = t1; _.elevation = t2; _.indicatorColor = t3; _.indicatorShape = t4; _.labelTextStyle = t5; _.iconTheme = t6; _.labelBehavior = t7; }, _LerpProperties2: function _LerpProperties2(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _NavigationBarThemeData_Object_Diagnosticable: function _NavigationBarThemeData_Object_Diagnosticable() { }, NavigationRailThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.elevation; t4 = A.lerpDouble(t4, t3 ? _null : b.elevation, t); t5 = t1 ? _null : a.unselectedLabelTextStyle; t5 = A.TextStyle_lerp(t5, t3 ? _null : b.unselectedLabelTextStyle, t); t6 = t1 ? _null : a.selectedLabelTextStyle; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.selectedLabelTextStyle, t); t7 = t1 ? _null : a.unselectedIconTheme; t7 = A.IconThemeData_lerp(t7, t3 ? _null : b.unselectedIconTheme, t); t8 = t1 ? _null : a.selectedIconTheme; t8 = A.IconThemeData_lerp(t8, t3 ? _null : b.selectedIconTheme, t); t9 = t1 ? _null : a.groupAlignment; t9 = A.lerpDouble(t9, t3 ? _null : b.groupAlignment, t); t10 = t < 0.5; if (t10) t11 = t1 ? _null : a.labelType; else t11 = t3 ? _null : b.labelType; if (t10) t10 = t1 ? _null : a.useIndicator; else t10 = t3 ? _null : b.useIndicator; t12 = t1 ? _null : a.indicatorColor; t12 = A.Color_lerp(t12, t3 ? _null : b.indicatorColor, t); t13 = t1 ? _null : a.minWidth; t13 = A.lerpDouble(t13, t3 ? _null : b.minWidth, t); t1 = t1 ? _null : a.minExtendedWidth; return new A.NavigationRailThemeData(t2, t4, t5, t6, t7, t8, t9, t11, t10, t12, t13, A.lerpDouble(t1, t3 ? _null : b.minExtendedWidth, t)); }, NavigationRailThemeData: function NavigationRailThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.unselectedLabelTextStyle = t2; _.selectedLabelTextStyle = t3; _.unselectedIconTheme = t4; _.selectedIconTheme = t5; _.groupAlignment = t6; _.labelType = t7; _.useIndicator = t8; _.indicatorColor = t9; _.minWidth = t10; _.minExtendedWidth = t11; }, _NavigationRailThemeData_Object_Diagnosticable: function _NavigationRailThemeData_Object_Diagnosticable() { }, OutlinedButton$(child, onLongPress, onPressed, style) { var _null = null; return new A.OutlinedButton(onPressed, onLongPress, _null, _null, style, B.Clip_0, _null, false, child, _null); }, OutlinedButton_styleFrom(alignment, animationDuration, backgroundColor, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, maximumSize, minimumSize, onSurface, padding, primary, shadowColor, shape, side, splashFactory, tapTargetSize, textStyle, visualDensity) { var mouseCursor, t1, t2, t3, t4, t5, t6, t7, t8, _null = null, foregroundColor = onSurface == null && primary == null ? _null : new A._OutlinedButtonDefaultForeground(primary, onSurface), overlayColor = primary == null ? _null : new A._OutlinedButtonDefaultOverlay(primary); if (enabledMouseCursor == null && disabledMouseCursor == null) mouseCursor = _null; else { enabledMouseCursor.toString; disabledMouseCursor.toString; mouseCursor = new A._OutlinedButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); } t1 = textStyle == null ? _null : new A._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_TextStyle); t2 = backgroundColor == null ? _null : new A._MaterialStatePropertyAll(backgroundColor, type$._MaterialStatePropertyAll_Color); t3 = shadowColor == null ? _null : new A._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t4 = elevation == null ? _null : new A._MaterialStatePropertyAll(elevation, type$._MaterialStatePropertyAll_double); t5 = padding == null ? _null : new A._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t6 = minimumSize == null ? _null : new A._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); t7 = maximumSize == null ? _null : new A._MaterialStatePropertyAll(maximumSize, type$._MaterialStatePropertyAll_Size); t8 = side == null ? _null : new A._MaterialStatePropertyAll(side, type$._MaterialStatePropertyAll_BorderSide); return A.ButtonStyle$(alignment, animationDuration, t2, t4, enableFeedback, _null, foregroundColor, t7, t6, mouseCursor, overlayColor, t5, t3, shape == null ? _null : new A._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder), t8, splashFactory, _null, tapTargetSize, t1, visualDensity); }, _scaledPadding1(context) { var t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; return A.ButtonStyleButton_scaledPadding(B.EdgeInsets_16_0_16_0, B.EdgeInsets_8_0_8_0, B.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); }, OutlinedButton: function OutlinedButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.onHover = t2; _.onFocusChange = t3; _.style = t4; _.clipBehavior = t5; _.focusNode = t6; _.autofocus = t7; _.child = t8; _.key = t9; }, _OutlinedButtonDefaultForeground: function _OutlinedButtonDefaultForeground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _OutlinedButtonDefaultOverlay: function _OutlinedButtonDefaultOverlay(t0) { this.primary = t0; }, _OutlinedButtonDefaultMouseCursor: function _OutlinedButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable() { }, __OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, __OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable() { }, OutlinedButtonThemeData_lerp(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new A.OutlinedButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, OutlinedButtonThemeData: function OutlinedButtonThemeData(t0) { this.style = t0; }, _OutlinedButtonThemeData_Object_Diagnosticable: function _OutlinedButtonThemeData_Object_Diagnosticable() { }, MaterialPageRoute$(builder, settings, $T) { var _null = null, t1 = A._setArrayType([], type$.JSArray_of_Future_bool_Function), t2 = $.Zone__current, t3 = A.ProxyAnimation$(B.C__AlwaysDismissedAnimation), t4 = A._setArrayType([], type$.JSArray_OverlayEntry), t5 = $.$get$ChangeNotifier__emptyListeners(), t6 = $.Zone__current, t7 = settings == null ? B.RouteSettings_null_null : settings; return new A.MaterialPageRoute(builder, false, _null, t1, new A.LabeledGlobalKey(_null, $T._eval$1("LabeledGlobalKey<_ModalScopeState<0>>")), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.PageStorageBucket(), _null, new A._AsyncCompleter(new A._Future(t2, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), t3, t4, t7, new A.ValueNotifier(_null, t5, type$.ValueNotifier_nullable_String), new A._AsyncCompleter(new A._Future(t6, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), $T._eval$1("MaterialPageRoute<0>")); }, MaterialPageRoute: function MaterialPageRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.builder = t0; _.fullscreenDialog = t1; _.filter = t2; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t3; _._scopeKey = t4; _._subtreeKey = t5; _._storageBucket = t6; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t7; _._transitionCompleter = t8; _._popFinalized = false; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t9; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t10; _._navigator$_navigator = null; _._navigator$_settings = t11; _._restorationScopeId = t12; _._popCompleter = t13; _.$ti = t14; }, MaterialRouteTransitionMixin: function MaterialRouteTransitionMixin() { }, _MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin: function _MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin() { }, _FadeUpwardsPageTransition$(child, routeAnimation) { var t3, t4, t1 = $.$get$_FadeUpwardsPageTransition__bottomUpTween(), t2 = $.$get$_FadeUpwardsPageTransition__fastOutSlowInTween(); t1.toString; t3 = t1.$ti._eval$1("_ChainedEvaluation"); routeAnimation.toString; type$.Animation_double._as(routeAnimation); t4 = $.$get$_FadeUpwardsPageTransition__easeInTween(); t4.toString; return new A._FadeUpwardsPageTransition(new A._AnimatedEvaluation(routeAnimation, new A._ChainedEvaluation(t2, t1, t3), t3._eval$1("_AnimatedEvaluation")), new A._AnimatedEvaluation(routeAnimation, t4, A._instanceType(t4)._eval$1("_AnimatedEvaluation")), child, null); }, _FadeUpwardsPageTransition: function _FadeUpwardsPageTransition(t0, t1, t2, t3) { var _ = this; _._positionAnimation = t0; _._opacityAnimation = t1; _.child = t2; _.key = t3; }, _ZoomPageTransition: function _ZoomPageTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.secondaryAnimation = t1; _.child = t2; _.key = t3; }, _ZoomPageTransition_build_closure: function _ZoomPageTransition_build_closure() { }, _ZoomPageTransition_build_closure0: function _ZoomPageTransition_build_closure0() { }, _ZoomPageTransition_build_closure1: function _ZoomPageTransition_build_closure1() { }, _ZoomPageTransition_build_closure2: function _ZoomPageTransition_build_closure2() { }, _ZoomEnterTransition: function _ZoomEnterTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.child = t1; _.reverse = t2; _.key = t3; }, _ZoomEnterTransition_build_closure: function _ZoomEnterTransition_build_closure(t0) { this._box_0 = t0; }, _ZoomExitTransition: function _ZoomExitTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.reverse = t1; _.child = t2; _.key = t3; }, PageTransitionsBuilder: function PageTransitionsBuilder() { }, ZoomPageTransitionsBuilder: function ZoomPageTransitionsBuilder() { }, CupertinoPageTransitionsBuilder: function CupertinoPageTransitionsBuilder() { }, PageTransitionsTheme: function PageTransitionsTheme(t0) { this._builders = t0; }, PageTransitionsTheme__all_closure: function PageTransitionsTheme__all_closure(t0) { this.builders = t0; }, _PageTransitionsTheme_Object_Diagnosticable: function _PageTransitionsTheme_Object_Diagnosticable() { }, PaginatedDataTable: function PaginatedDataTable(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.header = t0; _.columns = t1; _.sortColumnIndex = t2; _.sortAscending = t3; _.showFirstLastButtons = t4; _.source = t5; _.key = t6; }, PaginatedDataTableState: function PaginatedDataTableState(t0, t1, t2) { var _ = this; _.__PaginatedDataTableState__rowCountApproximate = _.__PaginatedDataTableState__rowCount = _.__PaginatedDataTableState__firstRowIndex = $; _._selectedRowCount = 0; _._paginated_data_table$_rows = t0; _._tableKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, PaginatedDataTableState__handleDataSourceChanged_closure: function PaginatedDataTableState__handleDataSourceChanged_closure(t0) { this.$this = t0; }, PaginatedDataTableState_pageTo_closure: function PaginatedDataTableState_pageTo_closure(t0, t1) { this.$this = t0; this.rowIndex = t1; }, PaginatedDataTableState__getBlankRowFor_closure: function PaginatedDataTableState__getBlankRowFor_closure() { }, PaginatedDataTableState__getProgressIndicatorRowFor_closure: function PaginatedDataTableState__getProgressIndicatorRowFor_closure(t0) { this._box_0 = t0; }, PaginatedDataTableState__getRows_closure: function PaginatedDataTableState__getRows_closure(t0, t1) { this.$this = t0; this.index = t1; }, PaginatedDataTableState_build_closure: function PaginatedDataTableState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.headerWidgets = t1; _.themeData = t2; _.footerTextStyle = t3; _.footerWidgets = t4; }, PopupMenuDivider$() { return new A.PopupMenuDivider(null); }, PopupMenuItem$(child, value, $T) { return new A.PopupMenuItem(value, child, null, $T._eval$1("PopupMenuItem<0>")); }, PopupMenuButton$(child, color, enabled, icon, initialValue, itemBuilder, onSelected, padding, tooltip, $T) { return new A.PopupMenuButton(itemBuilder, initialValue, onSelected, tooltip, padding, child, icon, enabled, color, null, $T._eval$1("PopupMenuButton<0>")); }, PopupMenuPosition: function PopupMenuPosition(t0, t1) { this.index = t0; this._core$_name = t1; }, PopupMenuEntry: function PopupMenuEntry() { }, PopupMenuDivider: function PopupMenuDivider(t0) { this.key = t0; }, _PopupMenuDividerState: function _PopupMenuDividerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MenuItem0: function _MenuItem0(t0, t1, t2) { this.onLayout = t0; this.child = t1; this.key = t2; }, _RenderMenuItem0: function _RenderMenuItem0(t0, t1, t2) { var _ = this; _.onLayout = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, PopupMenuItem: function PopupMenuItem(t0, t1, t2, t3) { var _ = this; _.value = t0; _.child = t1; _.key = t2; _.$ti = t3; }, PopupMenuItemState: function PopupMenuItemState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _PopupMenu: function _PopupMenu(t0, t1, t2, t3, t4) { var _ = this; _.route = t0; _.semanticLabel = t1; _.constraints = t2; _.key = t3; _.$ti = t4; }, _PopupMenu_build_closure: function _PopupMenu_build_closure(t0, t1) { this.$this = t0; this.i = t1; }, _PopupMenu_build_closure0: function _PopupMenu_build_closure0(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.opacity = t1; _.popupMenuTheme = t2; _.width = t3; _.height = t4; }, _PopupMenuRouteLayout: function _PopupMenuRouteLayout(t0, t1, t2, t3, t4, t5) { var _ = this; _.position = t0; _.itemSizes = t1; _.selectedItemIndex = t2; _.textDirection = t3; _.padding = t4; _.avoidBounds = t5; }, _PopupMenuRoute: function _PopupMenuRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.position = t0; _.items = t1; _.itemSizes = t2; _.initialValue = t3; _.elevation = t4; _.semanticLabel = t5; _.shape = t6; _.color = t7; _.capturedThemes = t8; _.constraints = t9; _.barrierLabel = t10; _.filter = t11; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t12; _._scopeKey = t13; _._subtreeKey = t14; _._storageBucket = t15; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t16; _._transitionCompleter = t17; _._popFinalized = false; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t18; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t19; _._navigator$_navigator = null; _._navigator$_settings = t20; _._restorationScopeId = t21; _._popCompleter = t22; _.$ti = t23; }, _PopupMenuRoute_buildPage_closure: function _PopupMenuRoute_buildPage_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.mediaQuery = t2; _.menu = t3; }, PopupMenuButton: function PopupMenuButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.itemBuilder = t0; _.initialValue = t1; _.onSelected = t2; _.tooltip = t3; _.padding = t4; _.child = t5; _.icon = t6; _.enabled = t7; _.color = t8; _.key = t9; _.$ti = t10; }, PopupMenuButtonState: function PopupMenuButtonState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, PopupMenuButtonState_showButtonMenu_closure: function PopupMenuButtonState_showButtonMenu_closure(t0) { this.$this = t0; }, _EffectiveMouseCursor: function _EffectiveMouseCursor(t0, t1) { this.widgetCursor = t0; this.themeCursor = t1; }, PopupMenuThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.color; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.shape; t4 = A.ShapeBorder_lerp(t4, t3 ? _null : b.shape, t); t5 = t1 ? _null : a.elevation; t5 = A.lerpDouble(t5, t3 ? _null : b.elevation, t); t6 = t1 ? _null : a.textStyle; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.textStyle, t); t7 = t < 0.5; if (t7) t8 = t1 ? _null : a.enableFeedback; else t8 = t3 ? _null : b.enableFeedback; if (t7) t1 = t1 ? _null : a.mouseCursor; else t1 = t3 ? _null : b.mouseCursor; return new A.PopupMenuThemeData(t2, t4, t5, t6, t8, t1); }, PopupMenuTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.PopupMenuTheme); t1 = A.Theme_of(context).popupMenuTheme; return t1; }, PopupMenuThemeData: function PopupMenuThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.color = t0; _.shape = t1; _.elevation = t2; _.textStyle = t3; _.enableFeedback = t4; _.mouseCursor = t5; }, _PopupMenuThemeData_Object_Diagnosticable: function _PopupMenuThemeData_Object_Diagnosticable() { }, LinearProgressIndicator$() { var _null = null; return new A.LinearProgressIndicator(_null, _null, _null, _null, _null, _null, _null); }, _CircularProgressIndicatorPainter$(backgroundColor, headValue, offsetValue, rotationValue, strokeWidth, tailValue, value, valueColor) { var t1 = value != null, t2 = t1 ? -1.5707963267948966 : -1.5707963267948966 + tailValue * 3 / 2 * 3.141592653589793 + rotationValue * 3.141592653589793 * 2 + offsetValue * 0.5 * 3.141592653589793; return new A._CircularProgressIndicatorPainter(backgroundColor, valueColor, value, headValue, tailValue, offsetValue, rotationValue, strokeWidth, t2, t1 ? B.JSNumber_methods.clamp$2(value, 0, 1) * 6.282185307179586 : Math.max(headValue * 3 / 2 * 3.141592653589793 - tailValue * 3 / 2 * 3.141592653589793, 0.001), null); }, CircularProgressIndicator$(backgroundColor, color, key, semanticsLabel, semanticsValue, strokeWidth, value, valueColor) { return new A.CircularProgressIndicator(strokeWidth, value, backgroundColor, color, valueColor, semanticsLabel, semanticsValue, key); }, _ActivityIndicatorType: function _ActivityIndicatorType(t0, t1) { this.index = t0; this._core$_name = t1; }, ProgressIndicator: function ProgressIndicator() { }, _LinearProgressIndicatorPainter: function _LinearProgressIndicatorPainter(t0, t1, t2, t3, t4, t5) { var _ = this; _.backgroundColor = t0; _.valueColor = t1; _.value = t2; _.animationValue = t3; _.textDirection = t4; _._repaint = t5; }, _LinearProgressIndicatorPainter_paint_drawBar: function _LinearProgressIndicatorPainter_paint_drawBar(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.size = t1; _.canvas = t2; _.paint = t3; }, LinearProgressIndicator: function LinearProgressIndicator(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.value = t0; _.backgroundColor = t1; _.color = t2; _.valueColor = t3; _.semanticsLabel = t4; _.semanticsValue = t5; _.key = t6; }, _LinearProgressIndicatorState: function _LinearProgressIndicatorState(t0, t1, t2) { var _ = this; _.___LinearProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _LinearProgressIndicatorState_build_closure: function _LinearProgressIndicatorState_build_closure(t0, t1) { this.$this = t0; this.textDirection = t1; }, _CircularProgressIndicatorPainter: function _CircularProgressIndicatorPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.backgroundColor = t0; _.valueColor = t1; _.value = t2; _.headValue = t3; _.tailValue = t4; _.offsetValue = t5; _.rotationValue = t6; _.strokeWidth = t7; _.arcStart = t8; _.arcSweep = t9; _._repaint = t10; }, CircularProgressIndicator: function CircularProgressIndicator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.strokeWidth = t0; _.value = t1; _.backgroundColor = t2; _.color = t3; _.valueColor = t4; _.semanticsLabel = t5; _.semanticsValue = t6; _.key = t7; }, _CircularProgressIndicatorState: function _CircularProgressIndicatorState(t0, t1, t2) { var _ = this; _.___CircularProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CircularProgressIndicatorState__buildAnimation_closure: function _CircularProgressIndicatorState__buildAnimation_closure(t0) { this.$this = t0; }, _RefreshProgressIndicatorPainter: function _RefreshProgressIndicatorPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.arrowheadScale = t0; _.backgroundColor = t1; _.valueColor = t2; _.value = t3; _.headValue = t4; _.tailValue = t5; _.offsetValue = t6; _.rotationValue = t7; _.strokeWidth = t8; _.arcStart = t9; _.arcSweep = t10; _._repaint = t11; }, RefreshProgressIndicator: function RefreshProgressIndicator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.strokeWidth = t0; _.value = t1; _.backgroundColor = t2; _.color = t3; _.valueColor = t4; _.semanticsLabel = t5; _.semanticsValue = t6; _.key = t7; }, _RefreshProgressIndicatorState: function _RefreshProgressIndicatorState(t0, t1, t2) { var _ = this; _.___RefreshProgressIndicatorState__additionalRotationTween = _.___RefreshProgressIndicatorState__convertTween = $; _._progress_indicator$_lastValue = null; _.___CircularProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _RefreshProgressIndicatorState__buildAnimation_closure: function _RefreshProgressIndicatorState__buildAnimation_closure(t0) { this.$this = t0; }, __CircularProgressIndicatorState_State_SingleTickerProviderStateMixin: function __CircularProgressIndicatorState_State_SingleTickerProviderStateMixin() { }, __LinearProgressIndicatorState_State_SingleTickerProviderStateMixin: function __LinearProgressIndicatorState_State_SingleTickerProviderStateMixin() { }, ProgressIndicatorThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.color; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.linearTrackColor; t4 = A.Color_lerp(t4, t3 ? _null : b.linearTrackColor, t); t5 = t1 ? _null : a.linearMinHeight; t5 = A.lerpDouble(t5, t3 ? _null : b.linearMinHeight, t); t6 = t1 ? _null : a.circularTrackColor; t6 = A.Color_lerp(t6, t3 ? _null : b.circularTrackColor, t); t1 = t1 ? _null : a.refreshBackgroundColor; return new A.ProgressIndicatorThemeData(t2, t4, t5, t6, A.Color_lerp(t1, t3 ? _null : b.refreshBackgroundColor, t)); }, ProgressIndicatorTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.ProgressIndicatorTheme); t1 = A.Theme_of(context).progressIndicatorTheme; return t1; }, ProgressIndicatorThemeData: function ProgressIndicatorThemeData(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.linearTrackColor = t1; _.linearMinHeight = t2; _.circularTrackColor = t3; _.refreshBackgroundColor = t4; }, _ProgressIndicatorThemeData_Object_Diagnosticable: function _ProgressIndicatorThemeData_Object_Diagnosticable() { }, Radio$(activeColor, autofocus, groupValue, materialTapTargetSize, onChanged, toggleable, value, $T) { return new A.Radio(value, groupValue, onChanged, toggleable, activeColor, materialTapTargetSize, false, null, $T._eval$1("Radio<0>")); }, Radio: function Radio(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.value = t0; _.groupValue = t1; _.onChanged = t2; _.toggleable = t3; _.activeColor = t4; _.materialTapTargetSize = t5; _.autofocus = t6; _.key = t7; _.$ti = t8; }, _RadioState: function _RadioState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._radio$_painter = t0; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _.TickerProviderStateMixin__tickerModeNotifier = t14; _._widget = null; _._debugLifecycleState = t15; _._framework$_element = null; _.$ti = t16; }, _RadioState__widgetFillColor_closure: function _RadioState__widgetFillColor_closure(t0) { this.$this = t0; }, _RadioState__defaultFillColor_closure: function _RadioState__defaultFillColor_closure(t0) { this.themeData = t0; }, _RadioState_build_closure: function _RadioState_build_closure(t0, t1) { this.$this = t0; this.radioTheme = t1; }, _RadioPainter: function _RadioPainter(t0) { var _ = this; _._isHovered = _._toggleable$_isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._toggleable$_activeColor = _._reactionHoverFade = _._reactionFocusFade = _._reaction = _._toggleable$_position = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, __RadioState_State_TickerProviderStateMixin: function __RadioState_State_TickerProviderStateMixin() { }, __RadioState_State_TickerProviderStateMixin_ToggleableStateMixin: function __RadioState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, RadioListTile: function RadioListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.value = t0; _.groupValue = t1; _.onChanged = t2; _.toggleable = t3; _.activeColor = t4; _.title = t5; _.subtitle = t6; _.dense = t7; _.key = t8; _.$ti = t9; }, RadioListTile_build_closure: function RadioListTile_build_closure(t0) { this.$this = t0; }, RadioThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties1(a, b, t, lerpFunction, $T._eval$1("_LerpProperties1<0>")); }, RadioThemeData: function RadioThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.mouseCursor = t0; _.fillColor = t1; _.overlayColor = t2; _.splashRadius = t3; _.materialTapTargetSize = t4; _.visualDensity = t5; }, _LerpProperties1: function _LerpProperties1(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _RadioThemeData_Object_Diagnosticable: function _RadioThemeData_Object_Diagnosticable() { }, RefreshIndicator$(child, onRefresh) { return new A.RefreshIndicator(child, onRefresh, null); }, _RefreshIndicatorMode: function _RefreshIndicatorMode(t0, t1) { this.index = t0; this._core$_name = t1; }, RefreshIndicatorTriggerMode: function RefreshIndicatorTriggerMode(t0, t1) { this.index = t0; this._core$_name = t1; }, RefreshIndicator: function RefreshIndicator(t0, t1, t2) { this.child = t0; this.onRefresh = t1; this.key = t2; }, RefreshIndicatorState: function RefreshIndicatorState(t0, t1, t2) { var _ = this; _.__RefreshIndicatorState__valueColor = _.__RefreshIndicatorState__value = _.__RefreshIndicatorState__scaleFactor = _.__RefreshIndicatorState__positionFactor = _.__RefreshIndicatorState__scaleController = _.__RefreshIndicatorState__positionController = $; _._dragOffset = _._isIndicatorAtTop = _._refresh_indicator$_mode = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, RefreshIndicatorState__handleScrollNotification_closure: function RefreshIndicatorState__handleScrollNotification_closure(t0) { this.$this = t0; }, RefreshIndicatorState__dismiss_closure: function RefreshIndicatorState__dismiss_closure(t0, t1) { this.$this = t0; this.newMode = t1; }, RefreshIndicatorState__dismiss_closure0: function RefreshIndicatorState__dismiss_closure0(t0) { this.$this = t0; }, RefreshIndicatorState__show_closure: function RefreshIndicatorState__show_closure(t0, t1) { this.$this = t0; this.completer = t1; }, RefreshIndicatorState__show__closure: function RefreshIndicatorState__show__closure(t0) { this.$this = t0; }, RefreshIndicatorState__show__closure0: function RefreshIndicatorState__show__closure0(t0, t1) { this.$this = t0; this.completer = t1; }, RefreshIndicatorState_build_closure: function RefreshIndicatorState_build_closure(t0, t1) { this.$this = t0; this.showIndeterminateIndicator = t1; }, _RefreshIndicatorState_State_TickerProviderStateMixin: function _RefreshIndicatorState_State_TickerProviderStateMixin() { }, ReorderableListView$(children, onReorder, scrollController) { return new A.ReorderableListView(new A.ReorderableListView_closure(children), children.length, onReorder, true, scrollController, null, false, null); }, ReorderableListView: function ReorderableListView(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.itemBuilder = t0; _.itemCount = t1; _.onReorder = t2; _.buildDefaultDragHandles = t3; _.scrollController = t4; _.primary = t5; _.shrinkWrap = t6; _.key = t7; }, ReorderableListView_closure: function ReorderableListView_closure(t0) { this.children = t0; }, _ReorderableListViewState: function _ReorderableListViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ReorderableListViewState__wrapWithSemantics_reorder: function _ReorderableListViewState__wrapWithSemantics_reorder(t0) { this.$this = t0; }, _ReorderableListViewState__wrapWithSemantics_moveToStart: function _ReorderableListViewState__wrapWithSemantics_moveToStart(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__wrapWithSemantics_moveToEnd: function _ReorderableListViewState__wrapWithSemantics_moveToEnd(t0, t1, t2) { this.$this = t0; this.reorder = t1; this.index = t2; }, _ReorderableListViewState__wrapWithSemantics_moveBefore: function _ReorderableListViewState__wrapWithSemantics_moveBefore(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__wrapWithSemantics_moveAfter: function _ReorderableListViewState__wrapWithSemantics_moveAfter(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__proxyDecorator_closure: function _ReorderableListViewState__proxyDecorator_closure(t0) { this.animation = t0; }, _ReorderableListViewChildGlobalKey: function _ReorderableListViewChildGlobalKey(t0, t1, t2) { this.subKey = t0; this.state = t1; this.value = t2; }, Scaffold$(appBar, backgroundColor, body, bottomNavigationBar, drawer, endDrawer, floatingActionButton, floatingActionButtonLocation) { return new A.Scaffold(appBar, body, floatingActionButton, floatingActionButtonLocation, drawer, endDrawer, backgroundColor, bottomNavigationBar, null); }, Scaffold_of(context) { var result = context.findAncestorStateOfType$1$0(type$.ScaffoldState); if (result != null) return result; throw A.wrapException(A.FlutterError$fromParts(A._setArrayType([A.ErrorSummary$("Scaffold.of() called with a context that does not contain a Scaffold."), A.ErrorDescription$("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."), A.ErrorHint$(string$.There_a), A.ErrorHint$("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."), context.describeElement$1("The context used was")], type$.JSArray_DiagnosticsNode))); }, _ScaffoldSlot: function _ScaffoldSlot(t0, t1) { this.index = t0; this._core$_name = t1; }, ScaffoldMessenger: function ScaffoldMessenger(t0, t1) { this.child = t0; this.key = t1; }, ScaffoldMessengerState: function ScaffoldMessengerState(t0, t1, t2, t3, t4, t5) { var _ = this; _._scaffolds = t0; _._materialBanners = t1; _._snackBars = t2; _._accessibleNavigation = _._snackBarTimer = null; _.TickerProviderStateMixin__tickers = t3; _.TickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, ScaffoldMessengerState_hideCurrentSnackBar_closure: function ScaffoldMessengerState_hideCurrentSnackBar_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.reason = t2; }, _ScaffoldMessengerScope: function _ScaffoldMessengerScope(t0, t1, t2) { this._scaffoldMessengerState = t0; this.child = t1; this.key = t2; }, ScaffoldPrelayoutGeometry: function ScaffoldPrelayoutGeometry(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.floatingActionButtonSize = t0; _.bottomSheetSize = t1; _.contentBottom = t2; _.contentTop = t3; _.minInsets = t4; _.minViewPadding = t5; _.scaffoldSize = t6; _.snackBarSize = t7; _.textDirection = t8; }, _TransitionSnapshotFabLocation: function _TransitionSnapshotFabLocation(t0, t1, t2, t3) { var _ = this; _.begin = t0; _.end = t1; _.animator = t2; _.progress = t3; }, ScaffoldGeometry: function ScaffoldGeometry(t0, t1) { this.bottomNavigationBarTop = t0; this.floatingActionButtonArea = t1; }, _ScaffoldGeometryNotifier: function _ScaffoldGeometryNotifier(t0, t1, t2) { var _ = this; _.context = t0; _.floatingActionButtonScale = null; _.geometry = t1; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _BodyBoxConstraints: function _BodyBoxConstraints(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.bottomWidgetsHeight = t0; _.appBarHeight = t1; _.materialBannerHeight = t2; _.minWidth = t3; _.maxWidth = t4; _.minHeight = t5; _.maxHeight = t6; }, _BodyBuilder: function _BodyBuilder(t0, t1, t2, t3) { var _ = this; _.body = t0; _.extendBody = t1; _.extendBodyBehindAppBar = t2; _.key = t3; }, _ScaffoldLayout: function _ScaffoldLayout(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.extendBody = t0; _.extendBodyBehindAppBar = t1; _.minInsets = t2; _.minViewPadding = t3; _.textDirection = t4; _.geometryNotifier = t5; _.previousFloatingActionButtonLocation = t6; _.currentFloatingActionButtonLocation = t7; _.floatingActionButtonMoveAnimationProgress = t8; _.floatingActionButtonMotionAnimator = t9; _.isSnackBarFloating = t10; _.snackBarWidth = t11; _.extendBodyBehindMaterialBanner = t12; _._debugChildrenNeedingLayout = _._idToChild = null; }, _FloatingActionButtonTransition: function _FloatingActionButtonTransition(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.fabMoveAnimation = t1; _.fabMotionAnimator = t2; _.geometryNotifier = t3; _.currentController = t4; _.key = t5; }, _FloatingActionButtonTransitionState: function _FloatingActionButtonTransitionState(t0, t1, t2) { var _ = this; _.___FloatingActionButtonTransitionState__currentRotationAnimation = _.___FloatingActionButtonTransitionState__extendedCurrentScaleAnimation = _.___FloatingActionButtonTransitionState__currentScaleAnimation = _.___FloatingActionButtonTransitionState__previousRotationAnimation = _.___FloatingActionButtonTransitionState__previousScaleAnimation = _.___FloatingActionButtonTransitionState__previousController = $; _._previousChild = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure: function _FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure(t0, t1) { this.$this = t0; this.status = t1; }, Scaffold: function Scaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.appBar = t0; _.body = t1; _.floatingActionButton = t2; _.floatingActionButtonLocation = t3; _.drawer = t4; _.endDrawer = t5; _.backgroundColor = t6; _.bottomNavigationBar = t7; _.key = t8; }, ScaffoldState: function ScaffoldState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._drawerKey = t0; _._endDrawerKey = t1; _._appBarMaxHeight = null; _._drawerOpened = t2; _._endDrawerOpened = t3; _._accessibleNavigation = _._scaffoldMessenger = null; _._snackBars = t4; _._messengerMaterialBanner = _._messengerSnackBar = _._snackBarTimer = null; _._dismissedBottomSheets = t5; _._currentBottomSheet = null; _._currentBottomSheetKey = t6; _.__ScaffoldState__floatingActionButtonAnimator = _.__ScaffoldState__floatingActionButtonMoveController = $; _._floatingActionButtonLocation = _._previousFloatingActionButtonLocation = null; _.__ScaffoldState__geometryNotifier = _.__ScaffoldState__floatingActionButtonVisibilityController = $; _._showBodyScrim = false; _._bodyScrimColor = t7; _.RestorationMixin__bucket = t8; _.RestorationMixin__properties = t9; _.RestorationMixin__debugPropertiesWaitingForReregistration = t10; _.RestorationMixin__firstRestorePending = t11; _.RestorationMixin__currentParent = t12; _.TickerProviderStateMixin__tickers = t13; _.TickerProviderStateMixin__tickerModeNotifier = t14; _._widget = null; _._debugLifecycleState = t15; _._framework$_element = null; }, ScaffoldState__drawerOpenedCallback_closure: function ScaffoldState__drawerOpenedCallback_closure(t0, t1) { this.$this = t0; this.isOpened = t1; }, ScaffoldState__endDrawerOpenedCallback_closure: function ScaffoldState__endDrawerOpenedCallback_closure(t0, t1) { this.$this = t0; this.isOpened = t1; }, ScaffoldState_hideCurrentSnackBar_closure: function ScaffoldState_hideCurrentSnackBar_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.reason = t2; }, ScaffoldState__updateSnackBar_closure: function ScaffoldState__updateSnackBar_closure(t0, t1) { this.$this = t0; this.messengerSnackBar = t1; }, ScaffoldState__updateMaterialBanner_closure: function ScaffoldState__updateMaterialBanner_closure(t0, t1) { this.$this = t0; this.messengerMaterialBanner = t1; }, ScaffoldState__buildBottomSheet__removeCurrentBottomSheet: function ScaffoldState__buildBottomSheet__removeCurrentBottomSheet(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.bottomSheet = t2; _.bottomSheetKey = t3; _.animationController = t4; _.completer = t5; }, ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure: function ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure(t0) { this.$this = t0; }, ScaffoldState__buildBottomSheet_closure: function ScaffoldState__buildBottomSheet_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.bottomSheet = t2; _._removeCurrentBottomSheet = t3; }, ScaffoldState__buildBottomSheet__removeEntryIfNeeded: function ScaffoldState__buildBottomSheet__removeEntryIfNeeded(t0, t1, t2) { this._box_0 = t0; this.isPersistent = t1; this.entry = t2; }, ScaffoldState__buildBottomSheet_closure0: function ScaffoldState__buildBottomSheet_closure0(t0, t1, t2) { this.$this = t0; this.bottomSheet = t1; this._removeEntryIfNeeded = t2; }, ScaffoldState__buildBottomSheet_closure1: function ScaffoldState__buildBottomSheet_closure1(t0, t1) { this.$this = t0; this.bottomSheet = t1; }, ScaffoldState__buildBottomSheet__closure: function ScaffoldState__buildBottomSheet__closure(t0, t1) { this.$this = t0; this.bottomSheet = t1; }, ScaffoldState__buildBottomSheet_closure2: function ScaffoldState__buildBottomSheet_closure2(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _._removeEntryIfNeeded = t1; _.shouldDisposeAnimationController = t2; _.animationController = t3; }, ScaffoldState_showBottomSheet_closure: function ScaffoldState_showBottomSheet_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.$this = t0; _.builder = t1; _.controller = t2; _.backgroundColor = t3; _.elevation = t4; _.shape = t5; _.clipBehavior = t6; _.constraints = t7; _.enableDrag = t8; _.transitionAnimationController = t9; _.T = t10; }, ScaffoldState__moveFloatingActionButton_closure: function ScaffoldState__moveFloatingActionButton_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.newLocation = t2; }, ScaffoldState_showBodyScrim_closure: function ScaffoldState_showBodyScrim_closure(t0, t1, t2) { this.$this = t0; this.value = t1; this.opacity = t2; }, ScaffoldState_build_closure: function ScaffoldState_build_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.extendBody = t2; _.minInsets = t3; _.minViewPadding = t4; _.textDirection = t5; _.children = t6; }, ScaffoldFeatureController: function ScaffoldFeatureController() { }, _BottomSheetSuspendedCurve: function _BottomSheetSuspendedCurve(t0, t1) { this.startingPoint = t0; this.curve = t1; }, _StandardBottomSheet: function _StandardBottomSheet(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.animationController = t0; _.enableDrag = t1; _.onClosing = t2; _.onDismissed = t3; _.onDispose = t4; _.builder = t5; _.backgroundColor = t6; _.elevation = t7; _.shape = t8; _.clipBehavior = t9; _.constraints = t10; _.key = t11; }, _StandardBottomSheetState: function _StandardBottomSheetState(t0, t1) { var _ = this; _.animationCurve = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _StandardBottomSheetState_build_closure: function _StandardBottomSheetState_build_closure(t0) { this.$this = t0; }, PersistentBottomSheetController: function PersistentBottomSheetController(t0, t1, t2, t3, t4) { var _ = this; _._isLocalHistoryEntry = t0; _._scaffold$_widget = t1; _._completer = t2; _.close = t3; _.$ti = t4; }, _ScaffoldScope: function _ScaffoldScope(t0, t1, t2, t3) { var _ = this; _.hasDrawer = t0; _.geometryNotifier = t1; _.child = t2; _.key = t3; }, _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, _ScaffoldMessengerState_State_TickerProviderStateMixin: function _ScaffoldMessengerState_State_TickerProviderStateMixin() { }, _ScaffoldState_State_TickerProviderStateMixin: function _ScaffoldState_State_TickerProviderStateMixin() { }, _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin: function _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin() { }, __FloatingActionButtonTransitionState_State_TickerProviderStateMixin: function __FloatingActionButtonTransitionState_State_TickerProviderStateMixin() { }, Scrollbar$(child, controller, thumbVisibility) { return new A.Scrollbar(child, controller, thumbVisibility, null); }, Scrollbar: function Scrollbar(t0, t1, t2, t3) { var _ = this; _.child = t0; _.controller = t1; _.thumbVisibility = t2; _.key = t3; }, _MaterialScrollbar: function _MaterialScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.showTrackOnHover = t0; _.hoverThickness = t1; _.child = t2; _.controller = t3; _.thumbVisibility = t4; _.isAlwaysShown = t5; _.radius = t6; _.thickness = t7; _.trackVisibility = t8; _.fadeDuration = t9; _.timeToFade = t10; _.pressDuration = t11; _.notificationPredicate = t12; _.interactive = t13; _.scrollbarOrientation = t14; _.key = t15; }, _MaterialScrollbarState: function _MaterialScrollbarState(t0, t1, t2, t3) { var _ = this; _.___MaterialScrollbarState__hoverAnimationController = $; _._scrollbar0$_hoverIsActive = _._dragIsActive = false; _.___MaterialScrollbarState__useAndroidScrollbar = _.___MaterialScrollbarState__scrollbarTheme = _.___MaterialScrollbarState__colorScheme = $; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisOffset = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _MaterialScrollbarState__trackVisibility_closure: function _MaterialScrollbarState__trackVisibility_closure(t0) { this.$this = t0; }, _MaterialScrollbarState__thumbColor_closure: function _MaterialScrollbarState__thumbColor_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.dragColor = t1; _.hoverColor = t2; _.idleColor = t3; }, _MaterialScrollbarState__trackColor_closure: function _MaterialScrollbarState__trackColor_closure(t0, t1, t2) { this.$this = t0; this.brightness = t1; this.onSurface = t2; }, _MaterialScrollbarState__trackBorderColor_closure: function _MaterialScrollbarState__trackBorderColor_closure(t0, t1, t2) { this.$this = t0; this.brightness = t1; this.onSurface = t2; }, _MaterialScrollbarState__thickness_closure: function _MaterialScrollbarState__thickness_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_initState_closure: function _MaterialScrollbarState_initState_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleThumbPressStart_closure: function _MaterialScrollbarState_handleThumbPressStart_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleThumbPressEnd_closure: function _MaterialScrollbarState_handleThumbPressEnd_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHover_closure: function _MaterialScrollbarState_handleHover_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHover_closure0: function _MaterialScrollbarState_handleHover_closure0(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHoverExit_closure: function _MaterialScrollbarState_handleHoverExit_closure(t0) { this.$this = t0; }, ScrollbarThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties5(a, b, t, lerpFunction, $T._eval$1("_LerpProperties5<0>")); }, _lerpBool(a, b, t) { return t < 0.5 ? a : b; }, ScrollbarThemeData: function ScrollbarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.thumbVisibility = t0; _.thickness = t1; _.trackVisibility = t2; _.showTrackOnHover = t3; _.isAlwaysShown = t4; _.interactive = t5; _.radius = t6; _.thumbColor = t7; _.trackColor = t8; _.trackBorderColor = t9; _.crossAxisMargin = t10; _.mainAxisMargin = t11; _.minThumbLength = t12; }, _LerpProperties5: function _LerpProperties5(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _ScrollbarThemeData_Object_Diagnosticable: function _ScrollbarThemeData_Object_Diagnosticable() { }, _TextSpanEditingController$(textSpan) { var t1 = textSpan.toPlainText$1$includeSemanticsLabels(false); return new A._TextSpanEditingController(textSpan, new A.TextEditingValue(t1, B.TextSelection_ke5, B.TextRange_m1_m1), $.$get$ChangeNotifier__emptyListeners()); }, SelectableText$(data, style) { return new A.SelectableText(data, style, B.ToolbarOptions_true_false_false_true, null); }, _TextSpanEditingController: function _TextSpanEditingController(t0, t1, t2) { var _ = this; _._textSpan = t0; _._change_notifier$_value = t1; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _SelectableTextSelectionGestureDetectorBuilder: function _SelectableTextSelectionGestureDetectorBuilder(t0, t1) { var _ = this; _._selectable_text$_state = t0; _.delegate = t1; _._shouldShowSelectionToolbar = true; _._dragStartViewportOffset = 0; _._isShiftTapping = false; _._shiftTapDragSelection = null; }, SelectableText: function SelectableText(t0, t1, t2, t3) { var _ = this; _.data = t0; _.style = t1; _.toolbarOptions = t2; _.key = t3; }, _SelectableTextState: function _SelectableTextState(t0, t1) { var _ = this; _.___SelectableTextState__controller = $; _._selectable_text$_focusNode = null; _._selectable_text$_showSelectionHandles = false; _.___SelectableTextState_forcePressEnabled = _.___SelectableTextState__selectionGestureDetectorBuilder = $; _.editableTextKey = t0; _._widget = _._lastSeenTextSelection = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SelectableTextState__onControllerChanged_closure: function _SelectableTextState__onControllerChanged_closure(t0, t1) { this.$this = t0; this.showSelectionHandles = t1; }, _SelectableTextState__handleSelectionChanged_closure: function _SelectableTextState__handleSelectionChanged_closure(t0, t1) { this.$this = t0; this.willShowSelectionHandles = t1; }, _SelectableTextState_build_closure: function _SelectableTextState_build_closure(t0) { this.$this = t0; }, SliderThemeData: function SliderThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.trackHeight = t0; _.activeTrackColor = t1; _.inactiveTrackColor = t2; _.disabledActiveTrackColor = t3; _.disabledInactiveTrackColor = t4; _.activeTickMarkColor = t5; _.inactiveTickMarkColor = t6; _.disabledActiveTickMarkColor = t7; _.disabledInactiveTickMarkColor = t8; _.thumbColor = t9; _.overlappingShapeStrokeColor = t10; _.disabledThumbColor = t11; _.overlayColor = t12; _.valueIndicatorColor = t13; _.overlayShape = t14; _.tickMarkShape = t15; _.thumbShape = t16; _.trackShape = t17; _.valueIndicatorShape = t18; _.rangeTickMarkShape = t19; _.rangeThumbShape = t20; _.rangeTrackShape = t21; _.rangeValueIndicatorShape = t22; _.showValueIndicator = t23; _.valueIndicatorTextStyle = t24; _.minThumbSeparation = t25; _.thumbSelector = t26; _.mouseCursor = t27; }, _SliderThemeData_Object_Diagnosticable: function _SliderThemeData_Object_Diagnosticable() { }, SnackBarClosedReason: function SnackBarClosedReason(t0, t1) { this.index = t0; this._core$_name = t1; }, SnackBarThemeData: function SnackBarThemeData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.backgroundColor = t0; _.actionTextColor = t1; _.disabledActionTextColor = t2; _.contentTextStyle = t3; _.elevation = t4; _.shape = t5; _.behavior = t6; }, _SnackBarThemeData_Object_Diagnosticable: function _SnackBarThemeData_Object_Diagnosticable() { }, Switch$(activeColor, activeThumbImage, activeTrackColor, autofocus, inactiveThumbColor, inactiveThumbImage, inactiveTrackColor, materialTapTargetSize, onChanged, value) { return new A.Switch(value, onChanged, activeColor, activeTrackColor, inactiveThumbColor, inactiveTrackColor, activeThumbImage, inactiveThumbImage, materialTapTargetSize, B._SwitchType_0, false, null); }, _SwitchType: function _SwitchType(t0, t1) { this.index = t0; this._core$_name = t1; }, Switch: function Switch(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.activeTrackColor = t3; _.inactiveThumbColor = t4; _.inactiveTrackColor = t5; _.activeThumbImage = t6; _.inactiveThumbImage = t7; _.materialTapTargetSize = t8; _._switchType = t9; _.autofocus = t10; _.key = t11; }, _MaterialSwitch: function _MaterialSwitch(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.activeTrackColor = t3; _.inactiveThumbColor = t4; _.inactiveTrackColor = t5; _.activeThumbImage = t6; _.onActiveThumbImageError = t7; _.inactiveThumbImage = t8; _.onInactiveThumbImageError = t9; _.thumbColor = t10; _.trackColor = t11; _.dragStartBehavior = t12; _.mouseCursor = t13; _.focusColor = t14; _.hoverColor = t15; _.overlayColor = t16; _.splashRadius = t17; _.focusNode = t18; _.autofocus = t19; _.size = t20; _.key = t21; }, _MaterialSwitchState: function _MaterialSwitchState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._switch0$_painter = t0; _._needsPositionAnimation = false; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _.TickerProviderStateMixin__tickerModeNotifier = t14; _._widget = null; _._debugLifecycleState = t15; _._framework$_element = null; }, _MaterialSwitchState__widgetThumbColor_closure: function _MaterialSwitchState__widgetThumbColor_closure(t0) { this.$this = t0; }, _MaterialSwitchState__defaultThumbColor_closure: function _MaterialSwitchState__defaultThumbColor_closure(t0, t1) { this.isDark = t0; this.theme = t1; }, _MaterialSwitchState__widgetTrackColor_closure: function _MaterialSwitchState__widgetTrackColor_closure(t0) { this.$this = t0; }, _MaterialSwitchState__defaultTrackColor_closure: function _MaterialSwitchState__defaultTrackColor_closure(t0, t1) { this.$this = t0; this.isDark = t1; }, _MaterialSwitchState__handleDragEnd_closure: function _MaterialSwitchState__handleDragEnd_closure(t0) { this.$this = t0; }, _MaterialSwitchState_build_closure: function _MaterialSwitchState_build_closure(t0, t1) { this.$this = t0; this.switchTheme = t1; }, _SwitchPainter: function _SwitchPainter(t0) { var _ = this; _._cachedThumbPainter = _._cachedThumbErrorListener = _._cachedThumbImage = _._cachedThumbColor = _._trackInnerLength = _._isInteractive = _._surfaceColor = _._switch0$_textDirection = _._switch0$_configuration = _._inactiveTrackColor = _._activeTrackColor = _._onInactiveThumbImageError = _._inactiveThumbImage = _._onActiveThumbImageError = _._activeThumbImage = null; _._isPainting = false; _._isHovered = _._toggleable$_isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._toggleable$_activeColor = _._reactionHoverFade = _._reactionFocusFade = _._reaction = _._toggleable$_position = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, __MaterialSwitchState_State_TickerProviderStateMixin: function __MaterialSwitchState_State_TickerProviderStateMixin() { }, __MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin: function __MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, SwitchListTile$(activeColor, dense, onChanged, secondary, subtitle, title, value) { return new A.SwitchListTile(value, onChanged, activeColor, title, subtitle, secondary, dense, null); }, _SwitchListTileType: function _SwitchListTileType(t0, t1) { this.index = t0; this._core$_name = t1; }, SwitchListTile: function SwitchListTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.title = t3; _.subtitle = t4; _.secondary = t5; _.dense = t6; _.key = t7; }, SwitchListTile_build_closure: function SwitchListTile_build_closure(t0) { this.$this = t0; }, SwitchThemeData__lerpProperties(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties0(a, b, t, lerpFunction, $T._eval$1("_LerpProperties0<0>")); }, SwitchTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.SwitchTheme); t1 = A.Theme_of(context).switchTheme; return t1; }, SwitchThemeData: function SwitchThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.thumbColor = t0; _.trackColor = t1; _.materialTapTargetSize = t2; _.mouseCursor = t3; _.overlayColor = t4; _.splashRadius = t5; }, _LerpProperties0: function _LerpProperties0(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _SwitchThemeData_Object_Diagnosticable: function _SwitchThemeData_Object_Diagnosticable() { }, TabBarTheme: function TabBarTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.indicator = t0; _.indicatorSize = t1; _.labelColor = t2; _.labelPadding = t3; _.labelStyle = t4; _.unselectedLabelColor = t5; _.unselectedLabelStyle = t6; _.overlayColor = t7; _.splashFactory = t8; _.mouseCursor = t9; }, _LerpColors: function _LerpColors(t0, t1, t2) { this.a = t0; this.b = t1; this.t = t2; }, _TabBarTheme_Object_Diagnosticable: function _TabBarTheme_Object_Diagnosticable() { }, TabController$(animationDuration, initialIndex, $length, vsync) { return new A.TabController(A.AnimationController$unbounded(null, initialIndex, vsync), B.Duration_300000, $length, initialIndex, initialIndex, $.$get$ChangeNotifier__emptyListeners()); }, DefaultTabController$(child, $length) { return new A.DefaultTabController($length, child, null); }, DefaultTabController_of(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._TabControllerScope); return scope == null ? null : scope.controller; }, TabController: function TabController(t0, t1, t2, t3, t4, t5) { var _ = this; _._tab_controller$_animationController = t0; _._animationDuration = t1; _.length = t2; _._tab_controller$_index = t3; _._previousIndex = t4; _.ChangeNotifier__count = _._indexIsChangingCount = 0; _.ChangeNotifier__listeners = t5; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, TabController__changeIndex_closure: function TabController__changeIndex_closure(t0) { this.$this = t0; }, _TabControllerScope: function _TabControllerScope(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.enabled = t1; _.child = t2; _.key = t3; }, DefaultTabController: function DefaultTabController(t0, t1, t2) { this.length = t0; this.child = t1; this.key = t2; }, _DefaultTabControllerState: function _DefaultTabControllerState(t0, t1, t2) { var _ = this; _.___DefaultTabControllerState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, __DefaultTabControllerState_State_SingleTickerProviderStateMixin: function __DefaultTabControllerState_State_SingleTickerProviderStateMixin() { }, UnderlineTabIndicator: function UnderlineTabIndicator(t0, t1) { this.borderSide = t0; this.insets = t1; }, _UnderlinePainter: function _UnderlinePainter(t0, t1) { this.decoration = t0; this.onChanged = t1; }, Tab$(child, text) { return new A.Tab(text, child, null); }, _TabStyle$(animation, child, labelColor, labelStyle, selected, unselectedLabelColor, unselectedLabelStyle) { return new A._TabStyle(labelStyle, unselectedLabelStyle, selected, labelColor, unselectedLabelColor, child, animation, null); }, _indexChangeProgress(controller) { var t1 = A._lateReadCheck(controller.get$animation(controller).__AnimationController__value, "_value"), previousIndex = controller._previousIndex, currentIndex = controller._tab_controller$_index; if (controller._indexIsChangingCount === 0) return B.JSNumber_methods.clamp$2(Math.abs(currentIndex - t1), 0, 1); return Math.abs(t1 - currentIndex) / Math.abs(currentIndex - previousIndex); }, TabBar$(controller, indicatorColor, isScrollable, key, onTap, tabs) { return new A.TabBar(tabs, controller, isScrollable, indicatorColor, onTap, key); }, TabBarView$(children, controller, key) { return new A.TabBarView(controller, children, key); }, Tab: function Tab(t0, t1, t2) { this.text = t0; this.child = t1; this.key = t2; }, _TabStyle: function _TabStyle(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.labelStyle = t0; _.unselectedLabelStyle = t1; _.selected = t2; _.labelColor = t3; _.unselectedLabelColor = t4; _.child = t5; _.listenable = t6; _.key = t7; }, _TabLabelBarRenderer: function _TabLabelBarRenderer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.onPerformLayout = t0; _._flex$_direction = t1; _._mainAxisAlignment = t2; _._mainAxisSize = t3; _._crossAxisAlignment = t4; _._flex$_textDirection = t5; _._verticalDirection = t6; _._flex$_textBaseline = t7; _._flex$_overflow = 0; _._flex$_clipBehavior = t8; _._flex$_clipRectLayer = t9; _.DebugOverflowIndicatorMixin__indicatorLabel = t10; _.DebugOverflowIndicatorMixin__overflowReportNeeded = t11; _.ContainerRenderObjectMixin__childCount = t12; _.ContainerRenderObjectMixin__firstChild = t13; _.ContainerRenderObjectMixin__lastChild = t14; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t15; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _TabLabelBar: function _TabLabelBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onPerformLayout = t0; _.direction = t1; _.mainAxisAlignment = t2; _.mainAxisSize = t3; _.crossAxisAlignment = t4; _.textDirection = t5; _.verticalDirection = t6; _.textBaseline = t7; _.children = t8; _.key = t9; }, _IndicatorPainter: function _IndicatorPainter(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.indicator = t1; _.indicatorSize = t2; _.indicatorPadding = t3; _.tabKeys = t4; _._tabs$_painter = _._currentRect = _._currentTextDirection = _._currentTabOffsets = null; _._tabs$_needsPaint = false; _._repaint = t5; }, _ChangeAnimation: function _ChangeAnimation(t0) { this.controller = t0; }, _DragAnimation: function _DragAnimation(t0, t1) { this.controller = t0; this.index = t1; }, _TabBarScrollPosition: function _TabBarScrollPosition(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.tabBar = t0; _._initialViewportDimensionWasZero = null; _._heldPreviousVelocity = 0; _._userScrollDirection = t1; _._currentDrag = null; _.physics = t2; _.context = t3; _.keepScrollOffset = t4; _.debugLabel = t5; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._scroll_position$_lastMetrics = null; _._haveScheduledUpdateNotification = false; _._semanticActions = _._lastAxis = null; _.isScrollingNotifier = t6; _._activity = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t7; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _TabBarScrollController: function _TabBarScrollController(t0, t1, t2, t3, t4, t5) { var _ = this; _.tabBar = t0; _._initialScrollOffset = t1; _.keepScrollOffset = t2; _.debugLabel = t3; _._positions = t4; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t5; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, TabBar: function TabBar(t0, t1, t2, t3, t4, t5) { var _ = this; _.tabs = t0; _.controller = t1; _.isScrollable = t2; _.indicatorColor = t3; _.onTap = t4; _.key = t5; }, _TabBarState: function _TabBarState(t0) { var _ = this; _._currentIndex = _._indicatorPainter = _._tabs$_controller = _._tabs$_scrollController = null; _.___TabBarState__tabKeys = _.___TabBarState__tabStripWidth = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TabBarState_initState_closure: function _TabBarState_initState_closure() { }, _TabBarState__handleTabControllerTick_closure: function _TabBarState__handleTabControllerTick_closure() { }, _TabBarState_build_closure: function _TabBarState_build_closure(t0, t1) { this.$this = t0; this.tabBarTheme = t1; }, _TabBarState_build_closure0: function _TabBarState_build_closure0(t0, t1) { this.$this = t0; this.index = t1; }, TabBarView: function TabBarView(t0, t1, t2) { this.controller = t0; this.children = t1; this.key = t2; }, _TabBarViewState: function _TabBarViewState(t0) { var _ = this; _._tabs$_controller = null; _.___TabBarViewState__childrenWithKey = _.___TabBarViewState__children = _.___TabBarViewState__pageController = $; _._currentIndex = null; _._warpUnderwayCount = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TabBarViewState__warpToCurrentIndex_closure: function _TabBarViewState__warpToCurrentIndex_closure(t0, t1, t2) { this.$this = t0; this.initialPage = t1; this.previousIndex = t2; }, _TabBarViewState__warpToCurrentIndex_closure0: function _TabBarViewState__warpToCurrentIndex_closure0(t0, t1) { this.$this = t0; this.originalChildren = t1; }, __ChangeAnimation_Animation_AnimationWithParentMixin: function __ChangeAnimation_Animation_AnimationWithParentMixin() { }, __DragAnimation_Animation_AnimationWithParentMixin: function __DragAnimation_Animation_AnimationWithParentMixin() { }, TextButton$(autofocus, child, onLongPress, onPressed, style) { var _null = null; return new A.TextButton(onPressed, onLongPress, _null, _null, style, B.Clip_0, _null, autofocus, child, _null); }, TextButton_styleFrom(alignment, animationDuration, backgroundColor, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, maximumSize, minimumSize, onSurface, padding, primary, shadowColor, shape, splashFactory, tapTargetSize, textStyle, visualDensity) { var mouseCursor, t1, t2, t3, t4, t5, t6, t7, _null = null, foregroundColor = onSurface == null && primary == null ? _null : new A._TextButtonDefaultForeground(primary, onSurface), overlayColor = primary == null ? _null : new A._TextButtonDefaultOverlay(primary); if (enabledMouseCursor == null && disabledMouseCursor == null) mouseCursor = _null; else { enabledMouseCursor.toString; disabledMouseCursor.toString; mouseCursor = new A._TextButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); } t1 = textStyle == null ? _null : new A._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_TextStyle); t2 = backgroundColor == null ? _null : new A._MaterialStatePropertyAll(backgroundColor, type$._MaterialStatePropertyAll_Color); t3 = shadowColor == null ? _null : new A._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t4 = elevation == null ? _null : new A._MaterialStatePropertyAll(elevation, type$._MaterialStatePropertyAll_double); t5 = padding == null ? _null : new A._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t6 = minimumSize == null ? _null : new A._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); t7 = maximumSize == null ? _null : new A._MaterialStatePropertyAll(maximumSize, type$._MaterialStatePropertyAll_Size); return A.ButtonStyle$(alignment, animationDuration, t2, t4, enableFeedback, _null, foregroundColor, t7, t6, mouseCursor, overlayColor, t5, t3, shape == null ? _null : new A._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder), _null, splashFactory, _null, tapTargetSize, t1, visualDensity); }, _scaledPadding0(context) { var t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; return A.ButtonStyleButton_scaledPadding(B.EdgeInsets_8_8_8_8, B.EdgeInsets_8_0_8_0, B.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); }, TextButton: function TextButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.onHover = t2; _.onFocusChange = t3; _.style = t4; _.clipBehavior = t5; _.focusNode = t6; _.autofocus = t7; _.child = t8; _.key = t9; }, _TextButtonDefaultForeground: function _TextButtonDefaultForeground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _TextButtonDefaultOverlay: function _TextButtonDefaultOverlay(t0) { this.primary = t0; }, _TextButtonDefaultMouseCursor: function _TextButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, TextButtonThemeData_lerp(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new A.TextButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, TextButtonThemeData: function TextButtonThemeData(t0) { this.style = t0; }, _TextButtonThemeData_Object_Diagnosticable: function _TextButtonThemeData_Object_Diagnosticable() { }, TextField$(autocorrect, autofillHints, autofocus, buildCounter, controller, cursorColor, cursorHeight, cursorRadius, cursorWidth, decoration, enableIMEPersonalizedLearning, enableInteractiveSelection, enableSuggestions, enabled, expands, focusNode, inputFormatters, keyboardAppearance, keyboardType, maxLength, maxLengthEnforcement, maxLines, minLines, mouseCursor, obscureText, obscuringCharacter, onChanged, onEditingComplete, onSubmitted, onTap, readOnly, restorationId, scrollController, scrollPadding, scrollPhysics, selectionControls, showCursor, smartDashesType, smartQuotesType, strutStyle, style, textAlign, textAlignVertical, textCapitalization, textDirection, textInputAction, toolbarOptions) { var t1, t2, t3, t4, t5; if (smartDashesType == null) t1 = obscureText ? B.SmartDashesType_0 : B.SmartDashesType_1; else t1 = smartDashesType; if (smartQuotesType == null) t2 = obscureText ? B.SmartQuotesType_0 : B.SmartQuotesType_1; else t2 = smartQuotesType; if (keyboardType == null) t3 = maxLines === 1 ? B.TextInputType_0_null_null : B.TextInputType_1_null_null; else t3 = keyboardType; if (enableInteractiveSelection == null) t4 = !readOnly || !obscureText; else t4 = enableInteractiveSelection; if (obscureText) t5 = readOnly ? B.ToolbarOptions_false_false_false_false : B.ToolbarOptions_false_false_true_true; else t5 = readOnly ? B.ToolbarOptions_true_false_false_true : B.ToolbarOptions_true_true_true_true; return new A.TextField(controller, focusNode, decoration, t3, textInputAction, textCapitalization, style, strutStyle, textAlign, textAlignVertical, textDirection, autofocus, obscuringCharacter, obscureText, autocorrect, t1, t2, true, maxLines, minLines, expands, readOnly, t5, showCursor, maxLength, maxLengthEnforcement, onChanged, onEditingComplete, onSubmitted, inputFormatters, enabled, cursorWidth, cursorHeight, cursorRadius, cursorColor, keyboardAppearance, scrollPadding, t4, selectionControls, onTap, mouseCursor, buildCounter, scrollPhysics, scrollController, autofillHints, restorationId, true, null); }, _TextFieldSelectionGestureDetectorBuilder: function _TextFieldSelectionGestureDetectorBuilder(t0, t1) { var _ = this; _._text_field$_state = t0; _.delegate = t1; _._shouldShowSelectionToolbar = true; _._dragStartViewportOffset = 0; _._isShiftTapping = false; _._shiftTapDragSelection = null; }, TextField: function TextField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47) { var _ = this; _.controller = t0; _.focusNode = t1; _.decoration = t2; _.keyboardType = t3; _.textInputAction = t4; _.textCapitalization = t5; _.style = t6; _.strutStyle = t7; _.textAlign = t8; _.textAlignVertical = t9; _.textDirection = t10; _.autofocus = t11; _.obscuringCharacter = t12; _.obscureText = t13; _.autocorrect = t14; _.smartDashesType = t15; _.smartQuotesType = t16; _.enableSuggestions = t17; _.maxLines = t18; _.minLines = t19; _.expands = t20; _.readOnly = t21; _.toolbarOptions = t22; _.showCursor = t23; _.maxLength = t24; _.maxLengthEnforcement = t25; _.onChanged = t26; _.onEditingComplete = t27; _.onSubmitted = t28; _.inputFormatters = t29; _.enabled = t30; _.cursorWidth = t31; _.cursorHeight = t32; _.cursorRadius = t33; _.cursorColor = t34; _.keyboardAppearance = t35; _.scrollPadding = t36; _.enableInteractiveSelection = t37; _.selectionControls = t38; _.onTap = t39; _.mouseCursor = t40; _.buildCounter = t41; _.scrollPhysics = t42; _.scrollController = t43; _.autofillHints = t44; _.restorationId = t45; _.enableIMEPersonalizedLearning = t46; _.key = t47; }, _TextFieldState: function _TextFieldState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._text_field$_focusNode = _._text_field$_controller = null; _._showSelectionHandles = _._isHovering = false; _.___TextFieldState_forcePressEnabled = _.___TextFieldState__selectionGestureDetectorBuilder = $; _.editableTextKey = t0; _.RestorationMixin__bucket = t1; _.RestorationMixin__properties = t2; _.RestorationMixin__debugPropertiesWaitingForReregistration = t3; _.RestorationMixin__firstRestorePending = t4; _.RestorationMixin__currentParent = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, _TextFieldState__handleFocusChanged_closure: function _TextFieldState__handleFocusChanged_closure() { }, _TextFieldState__handleSelectionChanged_closure: function _TextFieldState__handleSelectionChanged_closure(t0, t1) { this.$this = t0; this.willShowSelectionHandles = t1; }, _TextFieldState__handleHover_closure: function _TextFieldState__handleHover_closure(t0, t1) { this.$this = t0; this.hovering = t1; }, _TextFieldState_build_closure: function _TextFieldState_build_closure(t0) { this.$this = t0; }, _TextFieldState_build_closure0: function _TextFieldState_build_closure0(t0) { this.$this = t0; }, _TextFieldState_build_closure1: function _TextFieldState_build_closure1(t0, t1, t2) { this.$this = t0; this.focusNode = t1; this.controller = t2; }, _TextFieldState_build_closure3: function _TextFieldState_build_closure3(t0) { this.$this = t0; }, _TextFieldState_build_closure4: function _TextFieldState_build_closure4(t0) { this.$this = t0; }, _TextFieldState_build_closure2: function _TextFieldState_build_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, _TextFieldState_build__closure: function _TextFieldState_build__closure(t0) { this.$this = t0; }, __TextFieldState_State_RestorationMixin_dispose_closure: function __TextFieldState_State_RestorationMixin_dispose_closure() { }, __TextFieldState_State_RestorationMixin: function __TextFieldState_State_RestorationMixin() { }, TextFormField$(autocorrect, autofillHints, autofocus, autovalidateMode, controller, decoration, enabled, expands, focusNode, initialValue, inputFormatters, key, keyboardType, maxLines, minLines, obscureText, onChanged, onEditingComplete, onFieldSubmitted, onSaved, readOnly, restorationId, style, textAlign, textInputAction, validator) { var t1, t2, t3, _null = null; if (controller != null) t1 = controller._change_notifier$_value.text; else t1 = initialValue == null ? "" : initialValue; if (enabled == null) t2 = decoration == null ? _null : decoration.enabled; else t2 = enabled; t3 = autovalidateMode == null ? B.AutovalidateMode_0 : autovalidateMode; return new A.TextFormField(controller, onSaved, validator, new A.TextFormField_closure(decoration, onChanged, restorationId, focusNode, keyboardType, textInputAction, style, _null, textAlign, _null, _null, B.TextCapitalization_3, autofocus, _null, readOnly, _null, "\u2022", obscureText, autocorrect, _null, _null, true, _null, maxLines, minLines, expands, _null, _null, onEditingComplete, onFieldSubmitted, inputFormatters, enabled, 2, _null, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, autofillHints, _null, true, _null), t1, t2 !== false, t3, restorationId, key); }, TextFormField: function TextFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.controller = t0; _.onSaved = t1; _.validator = t2; _.builder = t3; _.initialValue = t4; _.enabled = t5; _.autovalidateMode = t6; _.restorationId = t7; _.key = t8; }, TextFormField_closure: function TextFormField_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45) { var _ = this; _.decoration = t0; _.onChanged = t1; _.restorationId = t2; _.focusNode = t3; _.keyboardType = t4; _.textInputAction = t5; _.style = t6; _.strutStyle = t7; _.textAlign = t8; _.textAlignVertical = t9; _.textDirection = t10; _.textCapitalization = t11; _.autofocus = t12; _.toolbarOptions = t13; _.readOnly = t14; _.showCursor = t15; _.obscuringCharacter = t16; _.obscureText = t17; _.autocorrect = t18; _.smartDashesType = t19; _.smartQuotesType = t20; _.enableSuggestions = t21; _.maxLengthEnforcement = t22; _.maxLines = t23; _.minLines = t24; _.expands = t25; _.maxLength = t26; _.onTap = t27; _.onEditingComplete = t28; _.onFieldSubmitted = t29; _.inputFormatters = t30; _.enabled = t31; _.cursorWidth = t32; _.cursorHeight = t33; _.cursorRadius = t34; _.cursorColor = t35; _.scrollPadding = t36; _.scrollPhysics = t37; _.keyboardAppearance = t38; _.enableInteractiveSelection = t39; _.selectionControls = t40; _.buildCounter = t41; _.autofillHints = t42; _.scrollController = t43; _.enableIMEPersonalizedLearning = t44; _.mouseCursor = t45; }, TextFormField_closure_onChangedHandler: function TextFormField_closure_onChangedHandler(t0, t1) { this.field = t0; this.onChanged = t1; }, _TextFormFieldState: function _TextFormFieldState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._text_form_field$_controller = null; _.__FormFieldState__value = $; _._errorText = t0; _._hasInteractedByUser = t1; _.RestorationMixin__bucket = t2; _.RestorationMixin__properties = t3; _.RestorationMixin__debugPropertiesWaitingForReregistration = t4; _.RestorationMixin__firstRestorePending = t5; _.RestorationMixin__currentParent = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, MaterialTextSelectionControls: function MaterialTextSelectionControls() { }, _TextSelectionHandlePainter: function _TextSelectionHandlePainter(t0, t1) { this.color = t0; this._repaint = t1; }, TextSelectionThemeData_lerp(a, b, t) { var t2, t3, t4, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.cursorColor; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.cursorColor, t); t4 = t1 ? _null : a.selectionColor; t4 = A.Color_lerp(t4, t3 ? _null : b.selectionColor, t); t1 = t1 ? _null : a.selectionHandleColor; return new A.TextSelectionThemeData(t2, t4, A.Color_lerp(t1, t3 ? _null : b.selectionHandleColor, t)); }, TextSelectionTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TextSelectionTheme); t1 = A.Theme_of(context).textSelectionTheme; return t1; }, TextSelectionThemeData: function TextSelectionThemeData(t0, t1, t2) { this.cursorColor = t0; this.selectionColor = t1; this.selectionHandleColor = t2; }, _TextSelectionThemeData_Object_Diagnosticable: function _TextSelectionThemeData_Object_Diagnosticable() { }, TextTheme$(bodyLarge, bodyMedium, bodySmall, displayLarge, displayMedium, displaySmall, headlineLarge, headlineMedium, headlineSmall, labelLarge, labelMedium, labelSmall, titleLarge, titleMedium, titleSmall) { var _null = null, t1 = displayLarge == null ? _null : displayLarge, t2 = displayMedium == null ? _null : displayMedium, t3 = displaySmall == null ? _null : displaySmall, t4 = headlineMedium == null ? _null : headlineMedium, t5 = headlineSmall == null ? _null : headlineSmall, t6 = titleLarge == null ? _null : titleLarge, t7 = titleMedium == null ? _null : titleMedium, t8 = titleSmall == null ? _null : titleSmall, t9 = bodyLarge == null ? _null : bodyLarge, t10 = bodyMedium == null ? _null : bodyMedium, t11 = bodySmall == null ? _null : bodySmall, t12 = labelLarge == null ? _null : labelLarge; return new A.TextTheme(t1, t2, t3, headlineLarge, t4, t5, t6, t7, t8, t9, t10, t11, t12, labelMedium, labelSmall == null ? _null : labelSmall); }, TextTheme_lerp(a, b, t) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, t1 = a == null, t2 = t1 ? _null : a.displayLarge, t3 = b == null; t2 = A.TextStyle_lerp(t2, t3 ? _null : b.displayLarge, t); t4 = t1 ? _null : a.displayMedium; t4 = A.TextStyle_lerp(t4, t3 ? _null : b.displayMedium, t); t5 = t1 ? _null : a.displaySmall; t5 = A.TextStyle_lerp(t5, t3 ? _null : b.displaySmall, t); t6 = t1 ? _null : a.headlineLarge; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.headlineLarge, t); t7 = t1 ? _null : a.headlineMedium; t7 = A.TextStyle_lerp(t7, t3 ? _null : b.headlineMedium, t); t8 = t1 ? _null : a.headlineSmall; t8 = A.TextStyle_lerp(t8, t3 ? _null : b.headlineSmall, t); t9 = t1 ? _null : a.titleLarge; t9 = A.TextStyle_lerp(t9, t3 ? _null : b.titleLarge, t); t10 = t1 ? _null : a.titleMedium; t10 = A.TextStyle_lerp(t10, t3 ? _null : b.titleMedium, t); t11 = t1 ? _null : a.titleSmall; t11 = A.TextStyle_lerp(t11, t3 ? _null : b.titleSmall, t); t12 = t1 ? _null : a.bodyLarge; t12 = A.TextStyle_lerp(t12, t3 ? _null : b.bodyLarge, t); t13 = t1 ? _null : a.bodyMedium; t13 = A.TextStyle_lerp(t13, t3 ? _null : b.bodyMedium, t); t14 = t1 ? _null : a.bodySmall; t14 = A.TextStyle_lerp(t14, t3 ? _null : b.bodySmall, t); t15 = t1 ? _null : a.labelLarge; t15 = A.TextStyle_lerp(t15, t3 ? _null : b.labelLarge, t); t16 = t1 ? _null : a.labelMedium; t16 = A.TextStyle_lerp(t16, t3 ? _null : b.labelMedium, t); t1 = t1 ? _null : a.labelSmall; return A.TextTheme$(t12, t13, t14, t2, t4, t5, t6, t7, t8, t15, t16, A.TextStyle_lerp(t1, t3 ? _null : b.labelSmall, t), t9, t10, t11); }, TextTheme: function TextTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.displayLarge = t0; _.displayMedium = t1; _.displaySmall = t2; _.headlineLarge = t3; _.headlineMedium = t4; _.headlineSmall = t5; _.titleLarge = t6; _.titleMedium = t7; _.titleSmall = t8; _.bodyLarge = t9; _.bodyMedium = t10; _.bodySmall = t11; _.labelLarge = t12; _.labelMedium = t13; _.labelSmall = t14; }, _TextTheme_Object_Diagnosticable: function _TextTheme_Object_Diagnosticable() { }, Theme_of(context) { var theme, inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedTheme), localizations = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations), category = localizations == null ? null : localizations.get$scriptCategory(); if (category == null) category = B.ScriptCategory_0; theme = inheritedTheme == null ? null : inheritedTheme.theme.data; if (theme == null) theme = $.$get$Theme__kFallbackTheme(); return A.ThemeData_localize(theme, theme.typography.geometryThemeFor$1(category)); }, Theme: function Theme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, _InheritedTheme: function _InheritedTheme(t0, t1, t2) { this.theme = t0; this.child = t1; this.key = t2; }, ThemeDataTween: function ThemeDataTween(t0, t1) { this.begin = t0; this.end = t1; }, AnimatedTheme: function AnimatedTheme(t0, t1, t2, t3, t4, t5) { var _ = this; _.data = t0; _.child = t1; _.curve = t2; _.duration = t3; _.onEnd = t4; _.key = t5; }, _AnimatedThemeState: function _AnimatedThemeState(t0, t1, t2) { var _ = this; _._theme$_data = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedThemeState_forEachTween_closure: function _AnimatedThemeState_forEachTween_closure() { }, ThemeData_ThemeData(appBarTheme, backgroundColor, bottomAppBarColor, brightness, canvasColor, cardColor, colorScheme, fontFamily, iconTheme, indicatorColor, outlinedButtonTheme, pageTransitionsTheme, primaryColor, primaryColorDark, primaryColorLight, scaffoldBackgroundColor, tabBarTheme, textButtonTheme, textSelectionTheme, unselectedWidgetColor) { var materialTapTargetSize, visualDensity, t1, effectiveBrightness, isDark, estimatedPrimaryColorBrightness, primaryIsDark, toggleableActiveColor, accentColor, accentColorBrightness, accentIsDark, focusColor, hoverColor, dividerColor, secondaryHeaderColor, dialogBackgroundColor, hintColor, buttonTheme, disabledColor, highlightColor, splashColor, typography, defaultTextTheme, defaultPrimaryTextTheme, defaultAccentTextTheme, textTheme, primaryTextTheme, primaryIconTheme, textSelectionColor, textSelectionHandleColor, accentTextTheme, accentIconTheme, buttonColor, _null = null, extensions = A._setArrayType([], type$.JSArray_ThemeExtension_ThemeExtension_dynamic), platform = A.defaultTargetPlatform(); switch (platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: materialTapTargetSize = B.MaterialTapTargetSize_0; break; case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: materialTapTargetSize = B.MaterialTapTargetSize_1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (pageTransitionsTheme == null) pageTransitionsTheme = B.PageTransitionsTheme_Map_DVCx1; visualDensity = A.VisualDensity_adaptivePlatformDensity(); if (brightness == null) { t1 = colorScheme == null ? _null : colorScheme.brightness; effectiveBrightness = t1; } else effectiveBrightness = brightness; if (effectiveBrightness == null) effectiveBrightness = B.Brightness_1; isDark = effectiveBrightness === B.Brightness_0; if (primaryColor == null) primaryColor = isDark ? B.Color_4280361249 : B.MaterialColor_Map_JNwaj_4280391411; estimatedPrimaryColorBrightness = A.ThemeData_estimateBrightnessForColor(primaryColor); if (primaryColorLight == null) primaryColorLight = isDark ? B.Color_4288585374 : B.Color_4290502395; if (primaryColorDark == null) primaryColorDark = isDark ? B.Color_4278190080 : B.Color_4279858898; primaryIsDark = estimatedPrimaryColorBrightness === B.Brightness_0; if (isDark) toggleableActiveColor = B.Color_4284809178; else toggleableActiveColor = B.Color_4280191205; accentColor = isDark ? B.Color_4284809178 : B.Color_4280391411; accentColorBrightness = A.ThemeData_estimateBrightnessForColor(accentColor); accentIsDark = accentColorBrightness === B.Brightness_0; focusColor = isDark ? A.Color$fromARGB(31, 255, 255, 255) : A.Color$fromARGB(31, 0, 0, 0); hoverColor = isDark ? A.Color$fromARGB(10, 255, 255, 255) : A.Color$fromARGB(10, 0, 0, 0); if (canvasColor == null) canvasColor = isDark ? B.Color_4281348144 : B.Color_4294638330; if (scaffoldBackgroundColor == null) scaffoldBackgroundColor = canvasColor; if (bottomAppBarColor == null) bottomAppBarColor = isDark ? B.Color_4282532418 : B.Color_4294967295; if (cardColor == null) cardColor = isDark ? B.Color_4282532418 : B.Color_4294967295; dividerColor = isDark ? B.Color_536870911 : B.Color_520093696; if (colorScheme == null) colorScheme = A.ColorScheme_ColorScheme$fromSwatch(accentColor, backgroundColor, effectiveBrightness, cardColor, _null, primaryColorDark, B.MaterialColor_Map_JNwaj_4280391411); if (unselectedWidgetColor == null) unselectedWidgetColor = isDark ? B.Color_3019898879 : B.Color_2315255808; secondaryHeaderColor = isDark ? B.Color_4284572001 : B.Color_4293128957; if (backgroundColor == null) backgroundColor = isDark ? B.Color_4284572001 : B.Color_4287679225; dialogBackgroundColor = isDark ? B.Color_4282532418 : B.Color_4294967295; if (indicatorColor == null) indicatorColor = accentColor.$eq(0, primaryColor) ? B.Color_4294967295 : accentColor; hintColor = isDark ? B.Color_2583691263 : A.Color$fromARGB(153, 0, 0, 0); t1 = isDark ? B.Color_4280191205 : B.Color_4292927712; buttonTheme = A.ButtonThemeData$(false, t1, colorScheme, _null, focusColor, 36, _null, hoverColor, B.ButtonBarLayoutBehavior_1, materialTapTargetSize, 88, _null, _null, _null, B.ButtonTextTheme_0); disabledColor = isDark ? B.Color_1660944383 : B.Color_1627389952; highlightColor = isDark ? B.Color_1087163596 : B.Color_1723645116; splashColor = isDark ? B.Color_1087163596 : B.Color_1724434632; typography = A.Typography_Typography$material2014(platform); defaultTextTheme = isDark ? typography.white : typography.black; defaultPrimaryTextTheme = primaryIsDark ? typography.white : typography.black; defaultAccentTextTheme = accentIsDark ? typography.white : typography.black; if (fontFamily != null) { defaultTextTheme = defaultTextTheme.apply$1$fontFamily(fontFamily); defaultPrimaryTextTheme = defaultPrimaryTextTheme.apply$1$fontFamily(fontFamily); defaultAccentTextTheme = defaultAccentTextTheme.apply$1$fontFamily(fontFamily); } textTheme = defaultTextTheme.merge$1(_null); primaryTextTheme = defaultPrimaryTextTheme.merge$1(_null); if (iconTheme == null) iconTheme = isDark ? B.IconThemeData_yrt : B.IconThemeData_UfZ0; primaryIconTheme = primaryIsDark ? B.IconThemeData_yrt : B.IconThemeData_UfZ1; if (appBarTheme == null) appBarTheme = B.AppBarTheme_ahf; if (outlinedButtonTheme == null) outlinedButtonTheme = B.OutlinedButtonThemeData_null; if (tabBarTheme == null) tabBarTheme = B.TabBarTheme_WXI; if (textButtonTheme == null) textButtonTheme = B.TextButtonThemeData_null; if (textSelectionTheme == null) textSelectionTheme = B.TextSelectionThemeData_null_null_null; textSelectionColor = isDark ? accentColor : B.Color_4287679225; textSelectionHandleColor = isDark ? B.Color_4280150454 : B.Color_4284790262; accentTextTheme = defaultAccentTextTheme.merge$1(_null); accentIconTheme = accentIsDark ? B.IconThemeData_yrt : B.IconThemeData_UfZ1; buttonColor = isDark ? B.Color_4280191205 : B.Color_4292927712; return A.ThemeData$raw(accentColor, accentColorBrightness, accentIconTheme, accentTextTheme, _null, appBarTheme, false, backgroundColor, B.MaterialBannerThemeData_6JY, bottomAppBarColor, B.BottomAppBarTheme_null_null_null, B.BottomNavigationBarThemeData_mRH, B.BottomSheetThemeData_OEE, B.ButtonBarThemeData_A0t, buttonColor, buttonTheme, canvasColor, cardColor, B.CardTheme_wEo, B.CheckboxThemeData_EkK, B.ChipThemeData_OhV, colorScheme, _null, B.Color_4282549748, B.DataTableThemeData_SL9, dialogBackgroundColor, B.DialogTheme_zPV, disabledColor, dividerColor, B.DividerThemeData_Tnu, B.DrawerThemeData_jfn, B.ElevatedButtonThemeData_null, B.Color_4292030255, B.ExpansionTileThemeData_O5j, A.ThemeData__themeExtensionIterableToMap(extensions), true, B.FloatingActionButtonThemeData_pYw, focusColor, highlightColor, hintColor, hoverColor, iconTheme, indicatorColor, B.C_InputDecorationTheme, B.ListTileThemeData_muk, materialTapTargetSize, B.NavigationBarThemeData_j8H, B.NavigationRailThemeData_4G2, outlinedButtonTheme, pageTransitionsTheme, platform, B.PopupMenuThemeData_rs3, primaryColor, estimatedPrimaryColorBrightness, primaryColorDark, primaryColorLight, primaryIconTheme, primaryTextTheme, B.ProgressIndicatorThemeData_Z49, B.RadioThemeData_gDe, scaffoldBackgroundColor, B.ScrollbarThemeData_Ep5, secondaryHeaderColor, B.Color_4294309365, B.Color_4278190080, B.SliderThemeData_qIG, B.SnackBarThemeData_gc6, splashColor, B.C__InkSplashFactory, B.SwitchThemeData_v9F, tabBarTheme, textButtonTheme, textSelectionColor, textSelectionHandleColor, textSelectionTheme, textTheme, B.TimePickerThemeData_10O, B.ToggleButtonsThemeData_UsI, toggleableActiveColor, B.TooltipThemeData_kSE, typography, unselectedWidgetColor, false, true, visualDensity); }, ThemeData$raw(accentColor, accentColorBrightness, accentIconTheme, accentTextTheme, androidOverscrollIndicator, appBarTheme, applyElevationOverlayColor, backgroundColor, bannerTheme, bottomAppBarColor, bottomAppBarTheme, bottomNavigationBarTheme, bottomSheetTheme, buttonBarTheme, buttonColor, buttonTheme, canvasColor, cardColor, cardTheme, checkboxTheme, chipTheme, colorScheme, cupertinoOverrideTheme, cursorColor, dataTableTheme, dialogBackgroundColor, dialogTheme, disabledColor, dividerColor, dividerTheme, drawerTheme, elevatedButtonTheme, errorColor, expansionTileTheme, extensions, fixTextFieldOutlineLabel, floatingActionButtonTheme, focusColor, highlightColor, hintColor, hoverColor, iconTheme, indicatorColor, inputDecorationTheme, listTileTheme, materialTapTargetSize, navigationBarTheme, navigationRailTheme, outlinedButtonTheme, pageTransitionsTheme, platform, popupMenuTheme, primaryColor, primaryColorBrightness, primaryColorDark, primaryColorLight, primaryIconTheme, primaryTextTheme, progressIndicatorTheme, radioTheme, scaffoldBackgroundColor, scrollbarTheme, secondaryHeaderColor, selectedRowColor, shadowColor, sliderTheme, snackBarTheme, splashColor, splashFactory, switchTheme, tabBarTheme, textButtonTheme, textSelectionColor, textSelectionHandleColor, textSelectionTheme, textTheme, timePickerTheme, toggleButtonsTheme, toggleableActiveColor, tooltipTheme, typography, unselectedWidgetColor, useMaterial3, useTextSelectionTheme, visualDensity) { return new A.ThemeData(androidOverscrollIndicator, applyElevationOverlayColor, cupertinoOverrideTheme, extensions, inputDecorationTheme, materialTapTargetSize, pageTransitionsTheme, platform, scrollbarTheme, splashFactory, visualDensity, false, colorScheme, primaryColor, primaryColorLight, primaryColorDark, focusColor, hoverColor, shadowColor, canvasColor, scaffoldBackgroundColor, bottomAppBarColor, cardColor, dividerColor, highlightColor, splashColor, selectedRowColor, unselectedWidgetColor, disabledColor, secondaryHeaderColor, backgroundColor, dialogBackgroundColor, indicatorColor, hintColor, errorColor, toggleableActiveColor, typography, textTheme, primaryTextTheme, iconTheme, primaryIconTheme, appBarTheme, bannerTheme, bottomAppBarTheme, bottomNavigationBarTheme, bottomSheetTheme, buttonBarTheme, buttonTheme, cardTheme, checkboxTheme, chipTheme, dataTableTheme, dialogTheme, dividerTheme, drawerTheme, elevatedButtonTheme, floatingActionButtonTheme, listTileTheme, navigationBarTheme, navigationRailTheme, outlinedButtonTheme, popupMenuTheme, progressIndicatorTheme, radioTheme, sliderTheme, snackBarTheme, switchTheme, tabBarTheme, textButtonTheme, textSelectionTheme, timePickerTheme, toggleButtonsTheme, tooltipTheme, expansionTileTheme, true, textSelectionColor, cursorColor, textSelectionHandleColor, accentColor, accentColorBrightness, accentTextTheme, accentIconTheme, buttonColor, true, primaryColorBrightness); }, ThemeData_ThemeData$fallback() { var _null = null; return A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, ThemeData_localize(baseTheme, localTextGeometry) { return $.$get$ThemeData__localizedThemeDataCache().putIfAbsent$2(0, new A._IdentityThemeDataCacheKey(baseTheme, localTextGeometry), new A.ThemeData_localize_closure(baseTheme, localTextGeometry)); }, ThemeData_estimateBrightnessForColor(color) { var t1 = 0.2126 * A.Color__linearizeColorComponent((color.get$value(color) >>> 16 & 255) / 255) + 0.7152 * A.Color__linearizeColorComponent((color.get$value(color) >>> 8 & 255) / 255) + 0.0722 * A.Color__linearizeColorComponent((color.get$value(color) & 255) / 255) + 0.05; if (t1 * t1 > 0.15) return B.Brightness_1; return B.Brightness_0; }, ThemeData__lerpThemeExtensions(a, b, t) { var t1 = a.extensions, newExtensions = t1.map$2$1(t1, new A.ThemeData__lerpThemeExtensions_closure(b, t), type$.Object, type$.ThemeExtension_dynamic); t1 = b.extensions; t1 = t1.get$entries(t1); newExtensions.addEntries$1(newExtensions, t1.where$1(t1, new A.ThemeData__lerpThemeExtensions_closure0(a))); return newExtensions; }, ThemeData__themeExtensionIterableToMap(extensionsIterable) { var _i, extension, t1 = type$.Object, t2 = type$.ThemeExtension_ThemeExtension_dynamic, t3 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); for (_i = 0; false; ++_i) { extension = extensionsIterable[_i]; t3.$indexSet(0, extension.get$type(extension), t2._as(extension)); } return A.ConstantMap_ConstantMap$from(t3, t1, type$.ThemeExtension_dynamic); }, MaterialBasedCupertinoThemeData$_(_materialTheme, _cupertinoOverrideTheme) { return new A.MaterialBasedCupertinoThemeData(_materialTheme, _cupertinoOverrideTheme, B._CupertinoThemeDefaults_iF8, _cupertinoOverrideTheme.brightness, _cupertinoOverrideTheme.primaryColor, _cupertinoOverrideTheme.primaryContrastingColor, _cupertinoOverrideTheme.textTheme, _cupertinoOverrideTheme.barBackgroundColor, _cupertinoOverrideTheme.scaffoldBackgroundColor); }, VisualDensity_adaptivePlatformDensity() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_2: case B.TargetPlatform_1: break; case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return B.VisualDensity_m2_m2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return B.VisualDensity_0_0; }, MaterialTapTargetSize: function MaterialTapTargetSize(t0, t1) { this.index = t0; this._core$_name = t1; }, ThemeData: function ThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84) { var _ = this; _.androidOverscrollIndicator = t0; _.applyElevationOverlayColor = t1; _.cupertinoOverrideTheme = t2; _.extensions = t3; _.inputDecorationTheme = t4; _.materialTapTargetSize = t5; _.pageTransitionsTheme = t6; _.platform = t7; _.scrollbarTheme = t8; _.splashFactory = t9; _.visualDensity = t10; _.useMaterial3 = t11; _.colorScheme = t12; _.primaryColor = t13; _.primaryColorLight = t14; _.primaryColorDark = t15; _.focusColor = t16; _.hoverColor = t17; _.shadowColor = t18; _.canvasColor = t19; _.scaffoldBackgroundColor = t20; _.bottomAppBarColor = t21; _.cardColor = t22; _.dividerColor = t23; _.highlightColor = t24; _.splashColor = t25; _.selectedRowColor = t26; _.unselectedWidgetColor = t27; _.disabledColor = t28; _.secondaryHeaderColor = t29; _.backgroundColor = t30; _.dialogBackgroundColor = t31; _.indicatorColor = t32; _.hintColor = t33; _.errorColor = t34; _.toggleableActiveColor = t35; _.typography = t36; _.textTheme = t37; _.primaryTextTheme = t38; _.iconTheme = t39; _.primaryIconTheme = t40; _.appBarTheme = t41; _.bannerTheme = t42; _.bottomAppBarTheme = t43; _.bottomNavigationBarTheme = t44; _.bottomSheetTheme = t45; _.buttonBarTheme = t46; _.buttonTheme = t47; _.cardTheme = t48; _.checkboxTheme = t49; _.chipTheme = t50; _.dataTableTheme = t51; _.dialogTheme = t52; _.dividerTheme = t53; _.drawerTheme = t54; _.elevatedButtonTheme = t55; _.floatingActionButtonTheme = t56; _.listTileTheme = t57; _.navigationBarTheme = t58; _.navigationRailTheme = t59; _.outlinedButtonTheme = t60; _.popupMenuTheme = t61; _.progressIndicatorTheme = t62; _.radioTheme = t63; _.sliderTheme = t64; _.snackBarTheme = t65; _.switchTheme = t66; _.tabBarTheme = t67; _.textButtonTheme = t68; _.textSelectionTheme = t69; _.timePickerTheme = t70; _.toggleButtonsTheme = t71; _.tooltipTheme = t72; _.expansionTileTheme = t73; _.useTextSelectionTheme = t74; _.textSelectionColor = t75; _.cursorColor = t76; _.textSelectionHandleColor = t77; _.accentColor = t78; _.accentColorBrightness = t79; _.accentTextTheme = t80; _.accentIconTheme = t81; _.buttonColor = t82; _.fixTextFieldOutlineLabel = t83; _.primaryColorBrightness = t84; }, ThemeData_localize_closure: function ThemeData_localize_closure(t0, t1) { this.baseTheme = t0; this.localTextGeometry = t1; }, ThemeData__lerpThemeExtensions_closure: function ThemeData__lerpThemeExtensions_closure(t0, t1) { this.b = t0; this.t = t1; }, ThemeData__lerpThemeExtensions_closure0: function ThemeData__lerpThemeExtensions_closure0(t0) { this.a = t0; }, MaterialBasedCupertinoThemeData: function MaterialBasedCupertinoThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._materialTheme = t0; _._cupertinoOverrideTheme = t1; _._defaults = t2; _.brightness = t3; _.primaryColor = t4; _.primaryContrastingColor = t5; _.textTheme = t6; _.barBackgroundColor = t7; _.scaffoldBackgroundColor = t8; }, _IdentityThemeDataCacheKey: function _IdentityThemeDataCacheKey(t0, t1) { this.baseTheme = t0; this.localTextGeometry = t1; }, _FifoCache: function _FifoCache(t0, t1, t2) { this._cache = t0; this._maximumSize = t1; this.$ti = t2; }, VisualDensity: function VisualDensity(t0, t1) { this.horizontal = t0; this.vertical = t1; }, _ThemeData_Object_Diagnosticable: function _ThemeData_Object_Diagnosticable() { }, _VisualDensity_Object_Diagnosticable: function _VisualDensity_Object_Diagnosticable() { }, hourFormat(of) { switch (of.index) { case 4: case 5: return B.HourFormat_2; case 3: return B.HourFormat_1; case 1: case 0: case 2: return B.HourFormat_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, DayPeriod: function DayPeriod(t0, t1) { this.index = t0; this._core$_name = t1; }, TimeOfDay: function TimeOfDay(t0, t1) { this.hour = t0; this.minute = t1; }, TimeOfDay_toString__addLeadingZeroIfNeeded: function TimeOfDay_toString__addLeadingZeroIfNeeded() { }, RestorableTimeOfDay: function RestorableTimeOfDay(t0, t1) { var _ = this; _._time$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, TimeOfDayFormat: function TimeOfDayFormat(t0, t1) { this.index = t0; this._core$_name = t1; }, HourFormat: function HourFormat(t0, t1) { this.index = t0; this._core$_name = t1; }, _DayPeriodInputPadding$(child, minSize, orientation) { return new A._DayPeriodInputPadding(minSize, orientation, child, null); }, _DialState__nearest(target, a, b) { return Math.abs(target - a) < Math.abs(target - b) ? a : b; }, _HourMinuteTextField$(autofocus, isHour, onChanged, onSavedSubmitted, restorationId, selectedTime, semanticHintText, style, validator) { return new A._HourMinuteTextField(selectedTime, isHour, autofocus, style, semanticHintText, validator, onSavedSubmitted, onChanged, restorationId, null); }, showTimePicker(builder, context, initialTime) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_TimeOfDay), $async$returnValue; var $async$showTimePicker = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = A.showDialog(null, true, new A.showTimePicker_closure(builder, new A.TimePickerDialog(initialTime, B.TimePickerEntryMode_0, null, null, null, null, null, null, null, null)), context, null, true, type$.TimeOfDay); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$showTimePicker, $async$completer); }, _TimePickerMode: function _TimePickerMode(t0, t1) { this.index = t0; this._core$_name = t1; }, TimePickerEntryMode: function TimePickerEntryMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _TimePickerFragmentContext: function _TimePickerFragmentContext(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.selectedTime = t0; _.mode = t1; _.onTimeChange = t2; _.onModeChange = t3; _.onHourDoubleTapped = t4; _.onMinuteDoubleTapped = t5; _.use24HourDials = t6; }, _TimePickerHeader: function _TimePickerHeader(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.selectedTime = t0; _.mode = t1; _.orientation = t2; _.onModeChanged = t3; _.onChanged = t4; _.onHourDoubleTapped = t5; _.onMinuteDoubleTapped = t6; _.use24HourDials = t7; _.helpText = t8; _.key = t9; }, _HourMinuteControl: function _HourMinuteControl(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.onTap = t1; _.onDoubleTap = t2; _.isSelected = t3; _.key = t4; }, _HourMinuteControl_build_closure: function _HourMinuteControl_build_closure(t0) { this.themeData = t0; }, _HourMinuteControl_build_closure0: function _HourMinuteControl_build_closure0(t0, t1) { this.themeData = t0; this.isDark = t1; }, _HourControl: function _HourControl(t0, t1) { this.fragmentContext = t0; this.key = t1; }, _HourControl_build_hoursFromSelected: function _HourControl_build_hoursFromSelected(t0) { this.$this = t0; }, _HourControl_build_closure1: function _HourControl_build_closure1(t0, t1) { this.$this = t0; this.nextHour = t1; }, _HourControl_build_closure0: function _HourControl_build_closure0(t0, t1) { this.$this = t0; this.previousHour = t1; }, _HourControl_build_closure: function _HourControl_build_closure(t0) { this.$this = t0; }, _StringFragment: function _StringFragment(t0, t1) { this.timeOfDayFormat = t0; this.key = t1; }, _MinuteControl: function _MinuteControl(t0, t1) { this.fragmentContext = t0; this.key = t1; }, _MinuteControl_build_closure1: function _MinuteControl_build_closure1(t0, t1) { this.$this = t0; this.nextMinute = t1; }, _MinuteControl_build_closure0: function _MinuteControl_build_closure0(t0, t1) { this.$this = t0; this.previousMinute = t1; }, _MinuteControl_build_closure: function _MinuteControl_build_closure(t0) { this.$this = t0; }, _DayPeriodControl: function _DayPeriodControl(t0, t1, t2, t3) { var _ = this; _.selectedTime = t0; _.orientation = t1; _.onChanged = t2; _.key = t3; }, _DayPeriodControl_build_closure: function _DayPeriodControl_build_closure(t0) { this.colorScheme = t0; }, _DayPeriodControl_build_closure0: function _DayPeriodControl_build_closure0(t0, t1) { this.colorScheme = t0; this.isDark = t1; }, _DayPeriodControl_build_closure1: function _DayPeriodControl_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _DayPeriodControl_build_closure2: function _DayPeriodControl_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, _DayPeriodInputPadding: function _DayPeriodInputPadding(t0, t1, t2, t3) { var _ = this; _.minSize = t0; _.orientation = t1; _.child = t2; _.key = t3; }, _RenderInputPadding1: function _RenderInputPadding1(t0, t1, t2, t3) { var _ = this; _.orientation = t0; _._time_picker0$_minSize = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure1: function _RenderInputPadding_hitTest_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, _TappableLabel: function _TappableLabel(t0, t1, t2) { this.value = t0; this.painter = t1; this.onTap = t2; }, _DialPainter: function _DialPainter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.primaryLabels = t0; _.secondaryLabels = t1; _.backgroundColor = t2; _.accentColor = t3; _.dotColor = t4; _.theta = t5; _._repaint = t6; }, _DialPainter_paint_getOffsetForTheta: function _DialPainter_paint_getOffsetForTheta(t0, t1) { this.center = t0; this.labelRadius = t1; }, _DialPainter_paint_paintLabels: function _DialPainter_paint_paintLabels(t0, t1) { this.canvas = t0; this.getOffsetForTheta = t1; }, _Dial: function _Dial(t0, t1, t2, t3, t4, t5) { var _ = this; _.selectedTime = t0; _.mode = t1; _.use24HourDials = t2; _.onChanged = t3; _.onHourSelected = t4; _.key = t5; }, _DialState: function _DialState(t0, t1, t2) { var _ = this; _.___DialState__thetaController = _.___DialState__theta = _.___DialState__thetaTween = _.___DialState_media = _.___DialState_localizations = _.___DialState_themeData = $; _._time_picker0$_dragging = false; _._time_picker0$_center = _._time_picker0$_position = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DialState_initState_closure: function _DialState_initState_closure(t0) { this.$this = t0; }, _DialState_initState__closure: function _DialState_initState__closure() { }, _DialState__updateThetaForPan_closure: function _DialState__updateThetaForPan_closure(t0, t1) { this.$this = t0; this.roundMinutes = t1; }, _DialState__build24HourRing_closure: function _DialState__build24HourRing_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _DialState__build12HourRing_closure: function _DialState__build12HourRing_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _DialState__buildMinutes_closure: function _DialState__buildMinutes_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _TimePickerInput: function _TimePickerInput(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.initialSelectedTime = t0; _.helpText = t1; _.errorInvalidText = t2; _.hourLabelText = t3; _.minuteLabelText = t4; _.autofocusHour = t5; _.autofocusMinute = t6; _.onChanged = t7; _.restorationId = t8; _.key = t9; }, _TimePickerInputState: function _TimePickerInputState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.___TimePickerInputState__selectedTime = $; _.hourHasError = t0; _.minuteHasError = t1; _.RestorationMixin__bucket = t2; _.RestorationMixin__properties = t3; _.RestorationMixin__debugPropertiesWaitingForReregistration = t4; _.RestorationMixin__firstRestorePending = t5; _.RestorationMixin__currentParent = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, _TimePickerInputState__validateHour_closure: function _TimePickerInputState__validateHour_closure(t0, t1) { this.$this = t0; this.newHour = t1; }, _TimePickerInputState__validateMinute_closure: function _TimePickerInputState__validateMinute_closure(t0, t1) { this.$this = t0; this.newMinute = t1; }, _HourTextField: function _HourTextField(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.selectedTime = t0; _.style = t1; _.autofocus = t2; _.validator = t3; _.onSavedSubmitted = t4; _.onChanged = t5; _.hourLabelText = t6; _.restorationId = t7; _.key = t8; }, _MinuteTextField: function _MinuteTextField(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.selectedTime = t0; _.style = t1; _.autofocus = t2; _.validator = t3; _.onSavedSubmitted = t4; _.minuteLabelText = t5; _.restorationId = t6; _.key = t7; }, _HourMinuteTextField: function _HourMinuteTextField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.selectedTime = t0; _.isHour = t1; _.autofocus = t2; _.style = t3; _.semanticHintText = t4; _.validator = t5; _.onSavedSubmitted = t6; _.onChanged = t7; _.restorationId = t8; _.key = t9; }, _HourMinuteTextFieldState: function _HourMinuteTextFieldState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.controller = t0; _.controllerHasBeenSet = t1; _.___HourMinuteTextFieldState_focusNode = $; _.RestorationMixin__bucket = t2; _.RestorationMixin__properties = t3; _.RestorationMixin__debugPropertiesWaitingForReregistration = t4; _.RestorationMixin__firstRestorePending = t5; _.RestorationMixin__currentParent = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, _HourMinuteTextFieldState_initState_closure: function _HourMinuteTextFieldState_initState_closure(t0) { this.$this = t0; }, _HourMinuteTextFieldState_initState__closure: function _HourMinuteTextFieldState_initState__closure() { }, _HourMinuteTextFieldState_build_closure: function _HourMinuteTextFieldState_build_closure(t0) { this.$this = t0; }, TimePickerDialog: function TimePickerDialog(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.initialTime = t0; _.initialEntryMode = t1; _.cancelText = t2; _.confirmText = t3; _.helpText = t4; _.errorInvalidText = t5; _.hourLabelText = t6; _.minuteLabelText = t7; _.onEntryModeChanged = t8; _.key = t9; }, _RestorableTimePickerEntryMode: function _RestorableTimePickerEntryMode(t0, t1) { var _ = this; _._time_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _RestorableTimePickerMode: function _RestorableTimePickerMode(t0, t1) { var _ = this; _._time_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _RestorableAutovalidateMode0: function _RestorableAutovalidateMode0(t0, t1) { var _ = this; _._time_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _RestorableTimePickerModeN: function _RestorableTimePickerModeN(t0, t1) { var _ = this; _._time_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _TimePickerDialogState: function _TimePickerDialogState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._time_picker0$_formKey = t0; _.___TimePickerDialogState__entryMode = $; _._time_picker0$_mode = t1; _._lastModeAnnounced = t2; _._time_picker0$_autovalidateMode = t3; _._autofocusHour = t4; _._autofocusMinute = t5; _._announcedInitialTime = t6; _.___TimePickerDialogState__selectedTime = _.___TimePickerDialogState__entryModeListener = $; _._vibrateTimer = null; _.___TimePickerDialogState_localizations = $; _.RestorationMixin__bucket = t7; _.RestorationMixin__properties = t8; _.RestorationMixin__debugPropertiesWaitingForReregistration = t9; _.RestorationMixin__firstRestorePending = t10; _.RestorationMixin__currentParent = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, _TimePickerDialogState_initState_closure: function _TimePickerDialogState_initState_closure(t0) { this.$this = t0; }, _TimePickerDialogState__vibrate_closure: function _TimePickerDialogState__vibrate_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleModeChanged_closure: function _TimePickerDialogState__handleModeChanged_closure(t0, t1) { this.$this = t0; this.mode = t1; }, _TimePickerDialogState__handleEntryModeToggle_closure: function _TimePickerDialogState__handleEntryModeToggle_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleTimeChanged_closure: function _TimePickerDialogState__handleTimeChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _TimePickerDialogState__handleHourSelected_closure: function _TimePickerDialogState__handleHourSelected_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleOk_closure: function _TimePickerDialogState__handleOk_closure(t0) { this.$this = t0; }, showTimePicker_closure: function showTimePicker_closure(t0, t1) { this.builder = t0; this.dialog = t1; }, __HourMinuteTextFieldState_State_RestorationMixin_dispose_closure: function __HourMinuteTextFieldState_State_RestorationMixin_dispose_closure() { }, __TimePickerDialogState_State_RestorationMixin_dispose_closure: function __TimePickerDialogState_State_RestorationMixin_dispose_closure() { }, __TimePickerInputState_State_RestorationMixin_dispose_closure: function __TimePickerInputState_State_RestorationMixin_dispose_closure() { }, __DialState_State_SingleTickerProviderStateMixin: function __DialState_State_SingleTickerProviderStateMixin() { }, __HourMinuteTextFieldState_State_RestorationMixin: function __HourMinuteTextFieldState_State_RestorationMixin() { }, __TimePickerDialogState_State_RestorationMixin: function __TimePickerDialogState_State_RestorationMixin() { }, __TimePickerInputState_State_RestorationMixin: function __TimePickerInputState_State_RestorationMixin() { }, TimePickerTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TimePickerTheme); t1 = A.Theme_of(context).timePickerTheme; return t1; }, TimePickerThemeData: function TimePickerThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.backgroundColor = t0; _.hourMinuteTextColor = t1; _.hourMinuteColor = t2; _.dayPeriodTextColor = t3; _.dayPeriodColor = t4; _.dialHandColor = t5; _.dialBackgroundColor = t6; _.dialTextColor = t7; _.entryModeIconColor = t8; _.hourMinuteTextStyle = t9; _.dayPeriodTextStyle = t10; _.helpTextStyle = t11; _.shape = t12; _.hourMinuteShape = t13; _.dayPeriodShape = t14; _.dayPeriodBorderSide = t15; _.inputDecorationTheme = t16; }, _TimePickerThemeData_Object_Diagnosticable: function _TimePickerThemeData_Object_Diagnosticable() { }, ToggleButtons$(borderColor, children, color, constraints, isSelected, onPressed, renderBorder, selectedBorderColor, selectedColor) { return new A.ToggleButtons(children, isSelected, onPressed, constraints, color, selectedColor, renderBorder, borderColor, selectedBorderColor, null); }, ToggleButtons: function ToggleButtons(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.children = t0; _.isSelected = t1; _.onPressed = t2; _.constraints = t3; _.color = t4; _.selectedColor = t5; _.renderBorder = t6; _.borderColor = t7; _.selectedBorderColor = t8; _.key = t9; }, ToggleButtons_build_closure: function ToggleButtons_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.textDirection = t1; _.toggleButtonsTheme = t2; _.theme = t3; }, ToggleButtons_build__closure: function ToggleButtons_build__closure(t0, t1) { this.$this = t0; this.index = t1; }, _ToggleButton: function _ToggleButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.selected = t0; _.textStyle = t1; _.constraints = t2; _.color = t3; _.selectedColor = t4; _.disabledColor = t5; _.fillColor = t6; _.focusColor = t7; _.hoverColor = t8; _.highlightColor = t9; _.splashColor = t10; _.focusNode = t11; _.onPressed = t12; _.mouseCursor = t13; _.leadingBorderSide = t14; _.borderSide = t15; _.trailingBorderSide = t16; _.borderRadius = t17; _.clipRadius = t18; _.isFirstButton = t19; _.isLastButton = t20; _.direction = t21; _.verticalDirection = t22; _.child = t23; _.key = t24; }, _ResolveFillColor: function _ResolveFillColor(t0) { this.primary = t0; }, _DefaultFillColor: function _DefaultFillColor(t0) { this.colorScheme = t0; }, _SelectToggleButton: function _SelectToggleButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.leadingBorderSide = t0; _.borderSide = t1; _.trailingBorderSide = t2; _.borderRadius = t3; _.isFirstButton = t4; _.isLastButton = t5; _.direction = t6; _.verticalDirection = t7; _.child = t8; _.key = t9; }, _SelectToggleButtonRenderObject: function _SelectToggleButtonRenderObject(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._toggle_buttons$_direction = t0; _._toggle_buttons$_verticalDirection = t1; _._leadingBorderSide = t2; _._borderSide = t3; _._trailingBorderSide = t4; _._toggle_buttons$_borderRadius = t5; _._isFirstButton = t6; _._isLastButton = t7; _._toggle_buttons$_textDirection = t8; _.RenderObjectWithChildMixin__child = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t10; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _InputPadding1: function _InputPadding1(t0, t1, t2, t3) { var _ = this; _.minSize = t0; _.direction = t1; _.child = t2; _.key = t3; }, _RenderInputPadding2: function _RenderInputPadding2(t0, t1, t2, t3) { var _ = this; _._toggle_buttons$_minSize = t0; _._toggle_buttons$_direction = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure2: function _RenderInputPadding_hitTest_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, __DefaultFillColor_MaterialStateProperty_Diagnosticable: function __DefaultFillColor_MaterialStateProperty_Diagnosticable() { }, __ResolveFillColor_MaterialStateProperty_Diagnosticable: function __ResolveFillColor_MaterialStateProperty_Diagnosticable() { }, ToggleButtonsThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.textStyle; t3 = b == null; t2 = A.TextStyle_lerp(t2, t3 ? _null : b.textStyle, t); t4 = t1 ? _null : a.constraints; t4 = A.BoxConstraints_lerp(t4, t3 ? _null : b.constraints, t); t5 = t1 ? _null : a.color; t5 = A.Color_lerp(t5, t3 ? _null : b.color, t); t6 = t1 ? _null : a.selectedColor; t6 = A.Color_lerp(t6, t3 ? _null : b.selectedColor, t); t7 = t1 ? _null : a.disabledColor; t7 = A.Color_lerp(t7, t3 ? _null : b.disabledColor, t); t8 = t1 ? _null : a.fillColor; t8 = A.Color_lerp(t8, t3 ? _null : b.fillColor, t); t9 = t1 ? _null : a.focusColor; t9 = A.Color_lerp(t9, t3 ? _null : b.focusColor, t); t10 = t1 ? _null : a.highlightColor; t10 = A.Color_lerp(t10, t3 ? _null : b.highlightColor, t); t11 = t1 ? _null : a.hoverColor; t11 = A.Color_lerp(t11, t3 ? _null : b.hoverColor, t); t12 = t1 ? _null : a.splashColor; t12 = A.Color_lerp(t12, t3 ? _null : b.splashColor, t); t13 = t1 ? _null : a.borderColor; t13 = A.Color_lerp(t13, t3 ? _null : b.borderColor, t); t14 = t1 ? _null : a.selectedBorderColor; t14 = A.Color_lerp(t14, t3 ? _null : b.selectedBorderColor, t); t15 = t1 ? _null : a.disabledBorderColor; t15 = A.Color_lerp(t15, t3 ? _null : b.disabledBorderColor, t); t16 = t1 ? _null : a.borderRadius; t16 = A.BorderRadius_lerp(t16, t3 ? _null : b.borderRadius, t); t1 = t1 ? _null : a.borderWidth; return new A.ToggleButtonsThemeData(t2, t4, t5, t6, t7, t8, t9, t10, t12, t11, t13, t14, t15, A.lerpDouble(t1, t3 ? _null : b.borderWidth, t), t16); }, ToggleButtonsTheme_of(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.ToggleButtonsTheme); t1 = A.Theme_of(context).toggleButtonsTheme; return t1; }, ToggleButtonsThemeData: function ToggleButtonsThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.textStyle = t0; _.constraints = t1; _.color = t2; _.selectedColor = t3; _.disabledColor = t4; _.fillColor = t5; _.focusColor = t6; _.highlightColor = t7; _.splashColor = t8; _.hoverColor = t9; _.borderColor = t10; _.selectedBorderColor = t11; _.disabledBorderColor = t12; _.borderWidth = t13; _.borderRadius = t14; }, _ToggleButtonsThemeData_Object_Diagnosticable: function _ToggleButtonsThemeData_Object_Diagnosticable() { }, ToggleableStateMixin: function ToggleableStateMixin() { }, ToggleableStateMixin__handleTapDown_closure: function ToggleableStateMixin__handleTapDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, ToggleableStateMixin__handleTapEnd_closure: function ToggleableStateMixin__handleTapEnd_closure(t0) { this.$this = t0; }, ToggleableStateMixin__handleFocusHighlightChanged_closure: function ToggleableStateMixin__handleFocusHighlightChanged_closure(t0, t1) { this.$this = t0; this.focused = t1; }, ToggleableStateMixin__handleHoverChanged_closure: function ToggleableStateMixin__handleHoverChanged_closure(t0, t1) { this.$this = t0; this.hovering = t1; }, ToggleablePainter: function ToggleablePainter() { }, Tooltip$(child, message) { return new A.Tooltip(message, child, null); }, Tooltip__concealOtherTooltips(current) { var openedTooltips, t1, _i, state; if ($.Tooltip__openedTooltips.length !== 0) { openedTooltips = A._setArrayType($.Tooltip__openedTooltips.slice(0), A._arrayInstanceType($.Tooltip__openedTooltips)); for (t1 = openedTooltips.length, _i = 0; _i < openedTooltips.length; openedTooltips.length === t1 || (0, A.throwConcurrentModificationError)(openedTooltips), ++_i) { state = openedTooltips[_i]; if (J.$eq$(state, current)) continue; state._concealTooltip$0(); } } }, Tooltip_dismissAllToolTips() { var openedTooltips, t1, _i; if ($.Tooltip__openedTooltips.length !== 0) { openedTooltips = A._setArrayType($.Tooltip__openedTooltips.slice(0), A._arrayInstanceType($.Tooltip__openedTooltips)); for (t1 = openedTooltips.length, _i = 0; _i < openedTooltips.length; openedTooltips.length === t1 || (0, A.throwConcurrentModificationError)(openedTooltips), ++_i) openedTooltips[_i]._dismissTooltip$1$immediately(true); return true; } return false; }, Tooltip: function Tooltip(t0, t1, t2) { this.message = t0; this.child = t1; this.key = t2; }, TooltipState: function TooltipState(t0, t1, t2) { var _ = this; _.__TooltipState__controller = _.__TooltipState__excludeFromSemantics = _.__TooltipState__preferBelow = _.__TooltipState__verticalOffset = _.__TooltipState__textStyle = _.__TooltipState__decoration = _.__TooltipState__margin = _.__TooltipState__padding = _.__TooltipState__height = $; _._showTimer = _._dismissTimer = _._tooltip$_entry = null; _.__TooltipState__mouseIsConnected = _.__TooltipState__waitDuration = _.__TooltipState__hoverShowDuration = _.__TooltipState__showDuration = $; _._pressActivated = false; _.__TooltipState__visible = _.__TooltipState__forceRemoval = _.__TooltipState__isConcealed = _.__TooltipState__enableFeedback = _.__TooltipState__triggerMode = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, TooltipState__handleMouseTrackerChange_closure: function TooltipState__handleMouseTrackerChange_closure(t0, t1) { this.$this = t0; this.mouseIsConnected = t1; }, TooltipState__createNewEntry_closure: function TooltipState__createNewEntry_closure(t0) { this.$this = t0; }, TooltipState__createNewEntry_closure0: function TooltipState__createNewEntry_closure0(t0) { this.$this = t0; }, TooltipState__createNewEntry_closure1: function TooltipState__createNewEntry_closure1(t0) { this.overlay = t0; }, TooltipState_build_closure: function TooltipState_build_closure(t0) { this.$this = t0; }, TooltipState_build_closure0: function TooltipState_build_closure0(t0) { this.$this = t0; }, _TooltipPositionDelegate: function _TooltipPositionDelegate(t0, t1, t2) { this.target = t0; this.verticalOffset = t1; this.preferBelow = t2; }, _TooltipOverlay: function _TooltipOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.richMessage = t0; _.height = t1; _.padding = t2; _.margin = t3; _.decoration = t4; _.textStyle = t5; _.animation = t6; _.target = t7; _.verticalOffset = t8; _.preferBelow = t9; _.onEnter = t10; _.onExit = t11; _.key = t12; }, _TooltipState_State_SingleTickerProviderStateMixin: function _TooltipState_State_SingleTickerProviderStateMixin() { }, TooltipThemeData_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.height; t3 = b == null; t2 = A.lerpDouble(t2, t3 ? _null : b.height, t); t4 = t1 ? _null : a.padding; t4 = A.EdgeInsetsGeometry_lerp(t4, t3 ? _null : b.padding, t); t5 = t1 ? _null : a.margin; t5 = A.EdgeInsetsGeometry_lerp(t5, t3 ? _null : b.margin, t); t6 = t1 ? _null : a.verticalOffset; t6 = A.lerpDouble(t6, t3 ? _null : b.verticalOffset, t); t7 = t < 0.5; if (t7) t8 = t1 ? _null : a.preferBelow; else t8 = t3 ? _null : b.preferBelow; if (t7) t7 = t1 ? _null : a.excludeFromSemantics; else t7 = t3 ? _null : b.excludeFromSemantics; t9 = t1 ? _null : a.decoration; t9 = A.Decoration_lerp(t9, t3 ? _null : b.decoration, t); t1 = t1 ? _null : a.textStyle; return new A.TooltipThemeData(t2, t4, t5, t6, t8, t7, t9, A.TextStyle_lerp(t1, t3 ? _null : b.textStyle, t)); }, TooltipThemeData: function TooltipThemeData(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.height = t0; _.padding = t1; _.margin = t2; _.verticalOffset = t3; _.preferBelow = t4; _.excludeFromSemantics = t5; _.decoration = t6; _.textStyle = t7; }, TooltipTriggerMode: function TooltipTriggerMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _TooltipThemeData_Object_Diagnosticable: function _TooltipThemeData_Object_Diagnosticable() { }, Typography_Typography$material2014(platform) { return A.Typography_Typography$_withPlatform(platform, null, null, B.TextTheme_gSp, B.TextTheme_jnH, B.TextTheme_uww); }, Typography_Typography$_withPlatform(platform, black, white, englishLike, dense, tall) { switch (platform) { case B.TargetPlatform_2: black = B.TextTheme_QJO; white = B.TextTheme_vru; break; case B.TargetPlatform_0: case B.TargetPlatform_1: black = B.TextTheme_WrZ; white = B.TextTheme_8I8; break; case B.TargetPlatform_5: black = B.TextTheme_pEW; white = B.TextTheme_3nh; break; case B.TargetPlatform_4: black = B.TextTheme_6bg; white = B.TextTheme_uDC; break; case B.TargetPlatform_3: black = B.TextTheme_AZd; white = B.TextTheme_Zy0; break; case null: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } black.toString; white.toString; return new A.Typography(black, white, englishLike, dense, tall); }, ScriptCategory: function ScriptCategory(t0, t1) { this.index = t0; this._core$_name = t1; }, Typography: function Typography(t0, t1, t2, t3, t4) { var _ = this; _.black = t0; _.white = t1; _.englishLike = t2; _.dense = t3; _.tall = t4; }, _Typography_Object_Diagnosticable: function _Typography_Object_Diagnosticable() { }, NetworkImage: function NetworkImage(t0, t1, t2) { this.url = t0; this.scale = t1; this.headers = t2; }, NetworkImage__loadAsync_closure: function NetworkImage__loadAsync_closure(t0) { this.chunkEvents = t0; }, AlignmentGeometry_lerp(a, b, t) { var t2, t3, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); if (a instanceof A.Alignment && b instanceof A.Alignment) return A.Alignment_lerp(a, b, t); if (a instanceof A.AlignmentDirectional && b instanceof A.AlignmentDirectional) return A.AlignmentDirectional_lerp(a, b, t); t1 = A.lerpDouble(a.get$_x(), b.get$_x(), t); t1.toString; t2 = A.lerpDouble(a.get$_alignment$_start(a), b.get$_alignment$_start(b), t); t2.toString; t3 = A.lerpDouble(a.get$_y(), b.get$_y(), t); t3.toString; return new A._MixedAlignment(t1, t2, t3); }, Alignment_lerp(a, b, t) { var t2, t1 = A.lerpDouble(a.x, b.x, t); t1.toString; t2 = A.lerpDouble(a.y, b.y, t); t2.toString; return new A.Alignment(t1, t2); }, Alignment__stringify(x, y) { var t2, t3, t1 = x === -1; if (t1 && y === -1) return "Alignment.topLeft"; t2 = x === 0; if (t2 && y === -1) return "Alignment.topCenter"; t3 = x === 1; if (t3 && y === -1) return "Alignment.topRight"; if (t1 && y === 0) return "Alignment.centerLeft"; if (t2 && y === 0) return "Alignment.center"; if (t3 && y === 0) return "Alignment.centerRight"; if (t1 && y === 1) return "Alignment.bottomLeft"; if (t2 && y === 1) return "Alignment.bottomCenter"; if (t3 && y === 1) return "Alignment.bottomRight"; return "Alignment(" + J.toStringAsFixed$1$n(x, 1) + ", " + J.toStringAsFixed$1$n(y, 1) + ")"; }, AlignmentDirectional_lerp(a, b, t) { var t2, t1 = A.lerpDouble(a.start, b.start, t); t1.toString; t2 = A.lerpDouble(a.y, b.y, t); t2.toString; return new A.AlignmentDirectional(t1, t2); }, AlignmentDirectional__stringify(start, y) { var t2, t3, t1 = start === -1; if (t1 && y === -1) return "AlignmentDirectional.topStart"; t2 = start === 0; if (t2 && y === -1) return "AlignmentDirectional.topCenter"; t3 = start === 1; if (t3 && y === -1) return "AlignmentDirectional.topEnd"; if (t1 && y === 0) return "AlignmentDirectional.centerStart"; if (t2 && y === 0) return "AlignmentDirectional.center"; if (t3 && y === 0) return "AlignmentDirectional.centerEnd"; if (t1 && y === 1) return "AlignmentDirectional.bottomStart"; if (t2 && y === 1) return "AlignmentDirectional.bottomCenter"; if (t3 && y === 1) return "AlignmentDirectional.bottomEnd"; return "AlignmentDirectional(" + J.toStringAsFixed$1$n(start, 1) + ", " + J.toStringAsFixed$1$n(y, 1) + ")"; }, AlignmentGeometry: function AlignmentGeometry() { }, Alignment: function Alignment(t0, t1) { this.x = t0; this.y = t1; }, AlignmentDirectional: function AlignmentDirectional(t0, t1) { this.start = t0; this.y = t1; }, _MixedAlignment: function _MixedAlignment(t0, t1, t2) { this._x = t0; this._alignment$_start = t1; this._y = t2; }, TextAlignVertical: function TextAlignVertical(t0) { this.y = t0; }, flipAxis(direction) { switch (direction.index) { case 0: return B.Axis_1; case 1: return B.Axis_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, axisDirectionToAxis(axisDirection) { switch (axisDirection.index) { case 0: case 2: return B.Axis_1; case 3: case 1: return B.Axis_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, textDirectionToAxisDirection(textDirection) { switch (textDirection) { case B.TextDirection_0: return B.AxisDirection_3; case B.TextDirection_1: return B.AxisDirection_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, flipAxisDirection(axisDirection) { switch (axisDirection.index) { case 0: return B.AxisDirection_2; case 1: return B.AxisDirection_3; case 2: return B.AxisDirection_0; case 3: return B.AxisDirection_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, axisDirectionIsReversed(axisDirection) { switch (axisDirection.index) { case 0: case 3: return true; case 2: case 1: return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, RenderComparison: function RenderComparison(t0, t1) { this.index = t0; this._core$_name = t1; }, Axis0: function Axis0(t0, t1) { this.index = t0; this._core$_name = t1; }, VerticalDirection: function VerticalDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, AxisDirection: function AxisDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, PaintingBinding: function PaintingBinding() { }, _SystemFontsNotifier: function _SystemFontsNotifier(t0) { this._systemFontsCallbacks = t0; }, BorderRadiusGeometry_lerp(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) a = B.BorderRadius_tLn; return a.add$1(0, (b == null ? B.BorderRadius_tLn : b).subtract$1(a).$mul(0, t)); }, BorderRadius$all(radius) { return new A.BorderRadius(radius, radius, radius, radius); }, BorderRadius$circular(radius) { var t1 = new A.Radius(radius, radius); return new A.BorderRadius(t1, t1, t1, t1); }, BorderRadius_lerp(a, b, t) { var t2, t3, t4, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); t1 = A.Radius_lerp(a.topLeft, b.topLeft, t); t1.toString; t2 = A.Radius_lerp(a.topRight, b.topRight, t); t2.toString; t3 = A.Radius_lerp(a.bottomLeft, b.bottomLeft, t); t3.toString; t4 = A.Radius_lerp(a.bottomRight, b.bottomRight, t); t4.toString; return new A.BorderRadius(t1, t2, t3, t4); }, BorderRadiusGeometry: function BorderRadiusGeometry() { }, BorderRadius: function BorderRadius(t0, t1, t2, t3) { var _ = this; _.topLeft = t0; _.topRight = t1; _.bottomLeft = t2; _.bottomRight = t3; }, _MixedBorderRadius: function _MixedBorderRadius(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._topLeft = t0; _._topRight = t1; _._bottomLeft = t2; _._bottomRight = t3; _._topStart = t4; _._topEnd = t5; _._bottomStart = t6; _._bottomEnd = t7; }, BorderSide_merge(a, b) { var t1 = a.style, aIsNone = t1 === B.BorderStyle_0 && a.width === 0, bIsNone = b.style === B.BorderStyle_0 && b.width === 0; if (aIsNone && bIsNone) return B.BorderSide_0CF; if (aIsNone) return b; if (bIsNone) return a; return new A.BorderSide(a.color, a.width + b.width, t1); }, BorderSide_canMerge(a, b) { var t2, t1 = a.style; if (!(t1 === B.BorderStyle_0 && a.width === 0)) t2 = b.style === B.BorderStyle_0 && b.width === 0; else t2 = true; if (t2) return true; return t1 === b.style && J.$eq$(a.color, b.color); }, BorderSide_lerp(a, b, t) { var t1, t2, t3, colorA, colorB, _s80_ = string$.x60null_c; if (t === 0) return a; if (t === 1) return b; t1 = A.lerpDouble(a.width, b.width, t); t1.toString; if (t1 < 0) return B.BorderSide_0CF; t2 = a.style; t3 = b.style; if (t2 === t3) { t3 = A.Color_lerp(a.color, b.color, t); t3.toString; return new A.BorderSide(t3, t1, t2); } switch (t2.index) { case 1: colorA = a.color; break; case 0: t2 = a.color; colorA = A.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } switch (t3.index) { case 1: colorB = b.color; break; case 0: t2 = b.color; colorB = A.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t2 = A.Color_lerp(colorA, colorB, t); t2.toString; return new A.BorderSide(t2, t1, B.BorderStyle_1); }, ShapeBorder_lerp(a, b, t) { var t1, result = b != null ? b.lerpFrom$2(a, t) : null; if (result == null && a != null) result = a.lerpTo$2(b, t); if (result == null) t1 = t < 0.5 ? a : b; else t1 = result; return t1; }, _CompoundBorder_lerp(a, b, t) { var index, localA, localB, t1, localResult, aList = a instanceof A._CompoundBorder ? a.borders : A._setArrayType([a], type$.JSArray_nullable_ShapeBorder), bList = b instanceof A._CompoundBorder ? b.borders : A._setArrayType([b], type$.JSArray_nullable_ShapeBorder), results = A._setArrayType([], type$.JSArray_ShapeBorder), $length = Math.max(aList.length, bList.length); for (index = 0; index < $length; ++index) { localA = index < aList.length ? aList[index] : null; localB = index < bList.length ? bList[index] : null; t1 = localA != null; if (t1 && localB != null) { localResult = localA.lerpTo$2(localB, t); if (localResult == null) localResult = localB.lerpFrom$2(localA, t); if (localResult != null) { results.push(localResult); continue; } } if (localB != null) results.push(localB.scale$1(0, t)); if (t1) results.push(localA.scale$1(0, 1 - t)); } return new A._CompoundBorder(results); }, paintBorder(canvas, rect, bottom, left, right, $top) { var path, t1, t2, t3, t4, _s80_ = string$.x60null_c, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$strokeWidth(0); path = A.Path_Path(); switch ($top.style.index) { case 1: paint.set$color(0, $top.color); path.reset$0(0); t1 = rect.left; t2 = rect.top; path.moveTo$2(0, t1, t2); t3 = rect.right; path.lineTo$2(0, t3, t2); t4 = $top.width; if (t4 === 0) paint.set$style(0, B.PaintingStyle_1); else { paint.set$style(0, B.PaintingStyle_0); t2 += t4; path.lineTo$2(0, t3 - right.width, t2); path.lineTo$2(0, t1 + left.width, t2); } canvas.drawPath$2(0, path, paint); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } switch (right.style.index) { case 1: paint.set$color(0, right.color); path.reset$0(0); t1 = rect.right; t2 = rect.top; path.moveTo$2(0, t1, t2); t3 = rect.bottom; path.lineTo$2(0, t1, t3); t4 = right.width; if (t4 === 0) paint.set$style(0, B.PaintingStyle_1); else { paint.set$style(0, B.PaintingStyle_0); t1 -= t4; path.lineTo$2(0, t1, t3 - bottom.width); path.lineTo$2(0, t1, t2 + $top.width); } canvas.drawPath$2(0, path, paint); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } switch (bottom.style.index) { case 1: paint.set$color(0, bottom.color); path.reset$0(0); t1 = rect.right; t2 = rect.bottom; path.moveTo$2(0, t1, t2); t3 = rect.left; path.lineTo$2(0, t3, t2); t4 = bottom.width; if (t4 === 0) paint.set$style(0, B.PaintingStyle_1); else { paint.set$style(0, B.PaintingStyle_0); t2 -= t4; path.lineTo$2(0, t3 + left.width, t2); path.lineTo$2(0, t1 - right.width, t2); } canvas.drawPath$2(0, path, paint); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } switch (left.style.index) { case 1: paint.set$color(0, left.color); path.reset$0(0); t1 = rect.left; t2 = rect.bottom; path.moveTo$2(0, t1, t2); t3 = rect.top; path.lineTo$2(0, t1, t3); t4 = left.width; if (t4 === 0) paint.set$style(0, B.PaintingStyle_1); else { paint.set$style(0, B.PaintingStyle_0); t1 += t4; path.lineTo$2(0, t1, t3 + $top.width); path.lineTo$2(0, t1, t2 - bottom.width); } canvas.drawPath$2(0, path, paint); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, BorderStyle: function BorderStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, BorderSide: function BorderSide(t0, t1, t2) { this.color = t0; this.width = t1; this.style = t2; }, ShapeBorder: function ShapeBorder() { }, OutlinedBorder: function OutlinedBorder() { }, _CompoundBorder: function _CompoundBorder(t0) { this.borders = t0; }, _CompoundBorder_dimensions_closure: function _CompoundBorder_dimensions_closure() { }, _CompoundBorder_scale_closure: function _CompoundBorder_scale_closure(t0) { this.t = t0; }, _CompoundBorder_toString_closure: function _CompoundBorder_toString_closure() { }, BoxBorder_lerp(a, b, t) { var t0, t2, t1 = type$.nullable_Border; if (t1._is(a) && t1._is(b)) return A.Border_lerp(a, b, t); t1 = type$.nullable_BorderDirectional; if (t1._is(a) && t1._is(b)) return A.BorderDirectional_lerp(a, b, t); if (b instanceof A.Border && a instanceof A.BorderDirectional) { t = 1 - t; t0 = b; b = a; a = t0; } if (a instanceof A.Border && b instanceof A.BorderDirectional) { t1 = b.start; if (J.$eq$(t1, B.BorderSide_0CF) && J.$eq$(b.end, B.BorderSide_0CF)) return new A.Border(A.BorderSide_lerp(a.top, b.top, t), A.BorderSide_lerp(a.right, B.BorderSide_0CF, t), A.BorderSide_lerp(a.bottom, b.bottom, t), A.BorderSide_lerp(a.left, B.BorderSide_0CF, t)); t2 = a.left; if (J.$eq$(t2, B.BorderSide_0CF) && J.$eq$(a.right, B.BorderSide_0CF)) return new A.BorderDirectional(A.BorderSide_lerp(a.top, b.top, t), A.BorderSide_lerp(B.BorderSide_0CF, t1, t), A.BorderSide_lerp(B.BorderSide_0CF, b.end, t), A.BorderSide_lerp(a.bottom, b.bottom, t)); if (t < 0.5) { t1 = t * 2; return new A.Border(A.BorderSide_lerp(a.top, b.top, t), A.BorderSide_lerp(a.right, B.BorderSide_0CF, t1), A.BorderSide_lerp(a.bottom, b.bottom, t), A.BorderSide_lerp(t2, B.BorderSide_0CF, t1)); } t2 = (t - 0.5) * 2; return new A.BorderDirectional(A.BorderSide_lerp(a.top, b.top, t), A.BorderSide_lerp(B.BorderSide_0CF, t1, t2), A.BorderSide_lerp(B.BorderSide_0CF, b.end, t2), A.BorderSide_lerp(a.bottom, b.bottom, t)); } throw A.wrapException(A.FlutterError$fromParts(A._setArrayType([A.ErrorSummary$("BoxBorder.lerp can only interpolate Border and BorderDirectional classes."), A.ErrorDescription$("BoxBorder.lerp() was called with two objects of type " + J.get$runtimeType$(a).toString$0(0) + " and " + J.get$runtimeType$(b).toString$0(0) + ":\n " + A.S(a) + "\n " + A.S(b) + "\nHowever, only Border and BorderDirectional classes are supported by this method."), A.ErrorHint$("For a more general interpolation method, consider using ShapeBorder.lerp instead.")], type$.JSArray_DiagnosticsNode))); }, BoxBorder__paintUniformBorderWithRadius(canvas, rect, side, borderRadius) { var outer, width, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, side.color); outer = borderRadius.toRRect$1(rect); width = side.width; if (width === 0) { paint.set$style(0, B.PaintingStyle_1); paint.set$strokeWidth(0); canvas.drawRRect$2(0, outer, paint); } else canvas.drawDRRect$3(0, outer, outer.inflate$1(-width), paint); }, BoxBorder__paintUniformBorderWithCircle(canvas, rect, side) { var width = side.width, paint = side.toPaint$0(), t1 = rect.get$shortestSide(); canvas.drawCircle$3(0, rect.get$center(), (t1 - width) / 2, paint); }, BoxBorder__paintUniformBorderWithRectangle(canvas, rect, side) { var width = side.width, paint = side.toPaint$0(); canvas.drawRect$2(0, rect.inflate$1(-(width / 2)), paint); }, Border_Border$all(color, width) { var side = new A.BorderSide(color, width, B.BorderStyle_1); return new A.Border(side, side, side, side); }, Border_lerp(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); return new A.Border(A.BorderSide_lerp(a.top, b.top, t), A.BorderSide_lerp(a.right, b.right, t), A.BorderSide_lerp(a.bottom, b.bottom, t), A.BorderSide_lerp(a.left, b.left, t)); }, BorderDirectional_lerp(a, b, t) { var t2, t3, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); t1 = A.BorderSide_lerp(a.top, b.top, t); t2 = A.BorderSide_lerp(a.end, b.end, t); t3 = A.BorderSide_lerp(a.bottom, b.bottom, t); return new A.BorderDirectional(t1, A.BorderSide_lerp(a.start, b.start, t), t2, t3); }, BoxShape: function BoxShape(t0, t1) { this.index = t0; this._core$_name = t1; }, BoxBorder: function BoxBorder() { }, Border: function Border(t0, t1, t2, t3) { var _ = this; _.top = t0; _.right = t1; _.bottom = t2; _.left = t3; }, BorderDirectional: function BorderDirectional(t0, t1, t2, t3) { var _ = this; _.top = t0; _.start = t1; _.end = t2; _.bottom = t3; }, BoxDecoration_lerp(a, b, t) { var t1, t2, t3, t4, t5, t6, t7; if (t === 0) return a; if (t === 1) return b; t1 = A.Color_lerp(a.color, b.color, t); t2 = t < 0.5; t3 = t2 ? a.image : b.image; t4 = A.BoxBorder_lerp(a.border, b.border, t); t5 = A.BorderRadiusGeometry_lerp(a.borderRadius, b.borderRadius, t); t6 = A.BoxShadow_lerpList(a.boxShadow, b.boxShadow, t); t7 = A.Gradient_lerp(a.gradient, b.gradient, t); return new A.BoxDecoration(t1, t3, t4, t5, t6, t7, t2 ? a.shape : b.shape); }, BoxDecoration: function BoxDecoration(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.color = t0; _.image = t1; _.border = t2; _.borderRadius = t3; _.boxShadow = t4; _.gradient = t5; _.shape = t6; }, _BoxDecorationPainter: function _BoxDecorationPainter(t0, t1) { var _ = this; _._box_decoration$_decoration = t0; _._box_decoration$_imagePainter = _._rectForCachedBackgroundPaint = _._cachedBackgroundPaint = null; _.onChanged = t1; }, applyBoxFit(fit, inputSize, outputSize) { var destinationSize, sourceSize, t2, t3, t4, aspectRatio, t1 = inputSize._dy; if (t1 <= 0 || inputSize._dx <= 0 || outputSize._dy <= 0 || outputSize._dx <= 0) return B.FittedSizes_46c; switch (fit.index) { case 0: destinationSize = outputSize; sourceSize = inputSize; break; case 1: t2 = outputSize._dx; t3 = outputSize._dy; t4 = inputSize._dx; destinationSize = t2 / t3 > t4 / t1 ? new A.Size(t4 * t3 / t1, t3) : new A.Size(t2, t1 * t2 / t4); sourceSize = inputSize; break; case 2: t2 = outputSize._dx; t3 = outputSize._dy; t4 = inputSize._dx; sourceSize = t2 / t3 > t4 / t1 ? new A.Size(t4, t4 * t3 / t2) : new A.Size(t1 * t2 / t3, t1); destinationSize = outputSize; break; case 3: t1 = inputSize._dx; t2 = outputSize._dy; t3 = outputSize._dx; t2 = t1 * t2 / t3; sourceSize = new A.Size(t1, t2); destinationSize = new A.Size(t3, t2 * t3 / t1); break; case 4: t2 = outputSize._dx; t3 = outputSize._dy; t2 = t1 * t2 / t3; sourceSize = new A.Size(t2, t1); destinationSize = new A.Size(t2 * t3 / t1, t3); break; case 5: t2 = inputSize._dx; t3 = outputSize._dx; sourceSize = new A.Size(Math.min(A.checkNum(t2), A.checkNum(t3)), Math.min(t1, A.checkNum(outputSize._dy))); destinationSize = sourceSize; break; case 6: aspectRatio = inputSize._dx / t1; t2 = outputSize._dy; destinationSize = t1 > t2 ? new A.Size(t2 * aspectRatio, t2) : inputSize; t1 = outputSize._dx; if (destinationSize._dx > t1) destinationSize = new A.Size(t1, t1 / aspectRatio); sourceSize = inputSize; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A.FittedSizes(sourceSize, destinationSize); }, BoxFit: function BoxFit(t0, t1) { this.index = t0; this._core$_name = t1; }, FittedSizes: function FittedSizes(t0, t1) { this.source = t0; this.destination = t1; }, BoxShadow_lerp(a, b, t) { var t2, t3, t4, t5, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); t1 = A.Color_lerp(a.color, b.color, t); t1.toString; t2 = A.Offset_lerp(a.offset, b.offset, t); t2.toString; t3 = A.lerpDouble(a.blurRadius, b.blurRadius, t); t3.toString; t4 = A.lerpDouble(a.spreadRadius, b.spreadRadius, t); t4.toString; t5 = a.blurStyle; return new A.BoxShadow(t4, t5 === B.BlurStyle_0 ? b.blurStyle : t5, t1, t2, t3); }, BoxShadow_lerpList(a, b, t) { var commonLength, i, t2, t3, t4, t5, t6, t7, t1 = a == null; if (t1 && b == null) return null; if (t1) a = A._setArrayType([], type$.JSArray_BoxShadow); if (b == null) b = A._setArrayType([], type$.JSArray_BoxShadow); commonLength = Math.min(a.length, b.length); t1 = A._setArrayType([], type$.JSArray_BoxShadow); for (i = 0; i < commonLength; ++i) { t2 = A.BoxShadow_lerp(a[i], b[i], t); t2.toString; t1.push(t2); } for (i = commonLength; i < a.length; ++i) { t2 = a[i]; t3 = 1 - t; t4 = t2.color; t5 = t2.offset; t6 = t5._dx; t5 = t5._dy; t7 = t2.blurRadius; t1.push(new A.BoxShadow(t2.spreadRadius * t3, t2.blurStyle, t4, new A.Offset(t6 * t3, t5 * t3), t7 * t3)); } for (i = commonLength; i < b.length; ++i) { t2 = b[i]; t3 = t2.color; t4 = t2.offset; t5 = t4._dx; t4 = t4._dy; t6 = t2.blurRadius; t1.push(new A.BoxShadow(t2.spreadRadius * t, t2.blurStyle, t3, new A.Offset(t5 * t, t4 * t), t6 * t)); } return t1; }, BoxShadow: function BoxShadow(t0, t1, t2, t3, t4) { var _ = this; _.spreadRadius = t0; _.blurStyle = t1; _.color = t2; _.offset = t3; _.blurRadius = t4; }, CircleBorder: function CircleBorder(t0) { this.side = t0; }, ClipContext: function ClipContext() { }, ClipContext_clipPathAndPaint_closure: function ClipContext_clipPathAndPaint_closure(t0, t1) { this.$this = t0; this.path = t1; }, ClipContext_clipRRectAndPaint_closure: function ClipContext_clipRRectAndPaint_closure(t0, t1) { this.$this = t0; this.rrect = t1; }, ClipContext_clipRectAndPaint_closure: function ClipContext_clipRectAndPaint_closure(t0, t1) { this.$this = t0; this.rect = t1; }, ColorSwatch: function ColorSwatch() { }, ImageSizeInfo: function ImageSizeInfo(t0, t1, t2) { this.source = t0; this.displaySize = t1; this.imageSize = t2; }, Decoration_lerp(a, b, t) { var _null = null, t1 = a == null; if (t1 && b == null) return _null; if (t1) { t1 = b.lerpFrom$2(_null, t); return t1 == null ? b : t1; } if (b == null) { t1 = a.lerpTo$2(_null, t); return t1 == null ? a : t1; } if (t === 0) return a; if (t === 1) return b; t1 = b.lerpFrom$2(a, t); if (t1 == null) t1 = a.lerpTo$2(b, t); if (t1 == null) if (t < 0.5) { t1 = a.lerpTo$2(_null, t * 2); if (t1 == null) t1 = a; } else { t1 = b.lerpFrom$2(_null, (t - 0.5) * 2); if (t1 == null) t1 = b; } return t1; }, Decoration: function Decoration() { }, BoxPainter: function BoxPainter() { }, _Decoration_Object_Diagnosticable: function _Decoration_Object_Diagnosticable() { }, paintImage(alignment, canvas, centerSlice, colorFilter, debugImageLabel, filterQuality, fit, flipHorizontally, image, invertColors, isAntiAlias, opacity, rect, repeat, scale) { var t1, t2, t3, t4, outputSize, t5, t6, fittedSizes, sourceSize, destinationSize, paint, t7, halfWidthDelta, t8, halfHeightDelta, destinationRect, sizeInfo, existingSizeInfo, needSave, dx, sourceRect, _i; if (rect.get$isEmpty(rect)) return; t1 = rect.right; t2 = rect.left; t1 -= t2; t3 = rect.bottom; t4 = rect.top; t3 -= t4; outputSize = new A.Size(t1, t3); t5 = image.get$width(image); t5.toString; t6 = image.get$height(image); t6.toString; if (fit == null) fit = B.BoxFit_6; fittedSizes = A.applyBoxFit(fit, new A.Size(t5, t6).$div(0, scale), outputSize); sourceSize = fittedSizes.source.$mul(0, scale); destinationSize = fittedSizes.destination; if (repeat !== B.ImageRepeat_3 && destinationSize.$eq(0, outputSize)) repeat = B.ImageRepeat_3; paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$isAntiAlias(false); if (colorFilter != null) paint.set$colorFilter(colorFilter); paint.set$color(0, new A.Color(((B.JSInt_methods._tdivFast$1(opacity * 255, 1) & 255) << 24 | 0) >>> 0)); paint.set$filterQuality(filterQuality); paint.set$invertColors(invertColors); t7 = destinationSize._dx; halfWidthDelta = (t1 - t7) / 2; t8 = destinationSize._dy; halfHeightDelta = (t3 - t8) / 2; t3 = flipHorizontally ? -alignment.x : alignment.x; t3 = t2 + (halfWidthDelta + t3 * halfWidthDelta); t4 += halfHeightDelta + alignment.y * halfHeightDelta; destinationRect = new A.Rect(t3, t4, t3 + t7, t4 + t8); t3 = debugImageLabel == null ? "" : debugImageLabel; t4 = image.get$width(image); t4.toString; t7 = image.get$height(image); t7.toString; $.PaintingBinding__instance.toString; t8 = $.$get$window()._debugDevicePixelRatio; t8 = outputSize.$mul(0, t8 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t8); sizeInfo = new A.ImageSizeInfo(t3, t8, new A.Size(t4, t7)); if (!$._lastFrameImageSizeInfo.contains$1(0, sizeInfo)) { existingSizeInfo = $._pendingImageSizeInfo.$index(0, t3); if (existingSizeInfo == null || existingSizeInfo._sizeToBytes$1(existingSizeInfo.displaySize) < sizeInfo._sizeToBytes$1(t8)) $._pendingImageSizeInfo.$indexSet(0, t3, sizeInfo); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.paintImage_closure()); } needSave = repeat !== B.ImageRepeat_3 || flipHorizontally; if (needSave) canvas.save$0(0); t3 = repeat === B.ImageRepeat_3; if (!t3) canvas.clipRect$1(0, rect); if (flipHorizontally) { dx = -(t2 + t1 / 2); canvas.translate$2(0, -dx, 0); canvas.scale$2(0, -1, 1); canvas.translate$2(0, dx, 0); } sourceRect = alignment.inscribe$2(sourceSize, new A.Rect(0, 0, t5, t6)); if (t3) canvas.drawImageRect$4(image, sourceRect, destinationRect, paint); else for (t1 = A._generateImageTileRects(rect, destinationRect, repeat), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) canvas.drawImageRect$4(image, sourceRect, t1[_i], paint); if (needSave) canvas.restore$0(0); }, _generateImageTileRects(outputRect, fundamentalRect, repeat) { var startX, stopX, startY, stopY, i, j, t1 = fundamentalRect.right, t2 = fundamentalRect.left, strideX = t1 - t2, t3 = fundamentalRect.bottom, t4 = fundamentalRect.top, strideY = t3 - t4, t5 = repeat !== B.ImageRepeat_0; if (!t5 || repeat === B.ImageRepeat_1) { startX = B.JSNumber_methods.floor$0((outputRect.left - t2) / strideX); stopX = B.JSNumber_methods.ceil$0((outputRect.right - t1) / strideX); } else { startX = 0; stopX = 0; } if (!t5 || repeat === B.ImageRepeat_2) { startY = B.JSNumber_methods.floor$0((outputRect.top - t4) / strideY); stopY = B.JSNumber_methods.ceil$0((outputRect.bottom - t3) / strideY); } else { startY = 0; stopY = 0; } t1 = A._setArrayType([], type$.JSArray_Rect); for (i = startX; i <= stopX; ++i) for (t2 = i * strideX, j = startY; j <= stopY; ++j) t1.push(fundamentalRect.shift$1(new A.Offset(t2, j * strideY))); return t1; }, ImageRepeat: function ImageRepeat(t0, t1) { this.index = t0; this._core$_name = t1; }, DecorationImagePainter: function DecorationImagePainter(t0, t1) { var _ = this; _._details = t0; _._decoration_image$_onChanged = t1; _._decoration_image$_image = _._decoration_image$_imageStream = null; }, paintImage_closure: function paintImage_closure() { }, EdgeInsetsGeometry_lerp(a, b, t) { var t2, t3, t4, t5, t6, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); if (a instanceof A.EdgeInsets && b instanceof A.EdgeInsets) return A.EdgeInsets_lerp(a, b, t); if (a instanceof A.EdgeInsetsDirectional && b instanceof A.EdgeInsetsDirectional) return A.EdgeInsetsDirectional_lerp(a, b, t); t1 = A.lerpDouble(a.get$_left(a), b.get$_left(b), t); t1.toString; t2 = A.lerpDouble(a.get$_right(a), b.get$_right(b), t); t2.toString; t3 = A.lerpDouble(a.get$_edge_insets$_start(a), b.get$_edge_insets$_start(b), t); t3.toString; t4 = A.lerpDouble(a.get$_edge_insets$_end(), b.get$_edge_insets$_end(), t); t4.toString; t5 = A.lerpDouble(a.get$_top(a), b.get$_top(b), t); t5.toString; t6 = A.lerpDouble(a.get$_bottom(a), b.get$_bottom(b), t); t6.toString; return new A._MixedEdgeInsets(t1, t2, t3, t4, t5, t6); }, EdgeInsets$fromWindowPadding(padding, devicePixelRatio) { return new A.EdgeInsets(padding.left / devicePixelRatio, padding.top / devicePixelRatio, padding.right / devicePixelRatio, padding.bottom / devicePixelRatio); }, EdgeInsets_lerp(a, b, t) { var t2, t3, t4, t1 = A.lerpDouble(a.left, b.left, t); t1.toString; t2 = A.lerpDouble(a.top, b.top, t); t2.toString; t3 = A.lerpDouble(a.right, b.right, t); t3.toString; t4 = A.lerpDouble(a.bottom, b.bottom, t); t4.toString; return new A.EdgeInsets(t1, t2, t3, t4); }, EdgeInsetsDirectional_lerp(a, b, t) { var t2, t3, t4, t1 = A.lerpDouble(a.start, b.start, t); t1.toString; t2 = A.lerpDouble(a.top, b.top, t); t2.toString; t3 = A.lerpDouble(a.end, b.end, t); t3.toString; t4 = A.lerpDouble(a.bottom, b.bottom, t); t4.toString; return new A.EdgeInsetsDirectional(t1, t2, t3, t4); }, EdgeInsetsGeometry: function EdgeInsetsGeometry() { }, EdgeInsets: function EdgeInsets(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, EdgeInsetsDirectional: function EdgeInsetsDirectional(t0, t1, t2, t3) { var _ = this; _.start = t0; _.top = t1; _.end = t2; _.bottom = t3; }, _MixedEdgeInsets: function _MixedEdgeInsets(t0, t1, t2, t3, t4, t5) { var _ = this; _._left = t0; _._right = t1; _._edge_insets$_start = t2; _._edge_insets$_end = t3; _._top = t4; _._bottom = t5; }, FractionalOffset$(dx, dy) { return new A.FractionalOffset(dx * 2 - 1, dy * 2 - 1); }, FractionalOffset: function FractionalOffset(t0, t1) { this.x = t0; this.y = t1; }, _sample(colors, stops, t) { var index, t1, t2, t3, t4; if (t <= (stops && B.JSArray_methods).get$first(stops)) return B.JSArray_methods.get$first(colors); if (t >= B.JSArray_methods.get$last(stops)) return B.JSArray_methods.get$last(colors); index = B.JSArray_methods.lastIndexWhere$1(stops, new A._sample_closure(t)); t1 = colors[index]; t2 = index + 1; t3 = colors[t2]; t4 = stops[index]; t4 = A.Color_lerp(t1, t3, (t - t4) / (stops[t2] - t4)); t4.toString; return t4; }, _interpolateColorsAndStops(aColors, aStops, bColors, bStops, t) { var interpolatedStops, t1, stops = A.SplayTreeSet$(null, null, type$.double); stops.addAll$1(0, aStops); stops.addAll$1(0, bStops); interpolatedStops = A.List_List$of(stops, false, stops.$ti._eval$1("SetMixin.E")); t1 = A._arrayInstanceType(interpolatedStops)._eval$1("MappedListIterable<1,Color>"); return new A._ColorsAndStops(A.List_List$of(new A.MappedListIterable(interpolatedStops, new A._interpolateColorsAndStops_closure(aColors, aStops, bColors, bStops, t), t1), false, t1._eval$1("ListIterable.E")), interpolatedStops); }, Gradient_lerp(a, b, t) { var t1 = b == null, result = !t1 ? b.lerpFrom$2(a, t) : null; if (result == null && a != null) result = a.lerpTo$2(b, t); if (result != null) return result; if (a == null && t1) return null; return t < 0.5 ? a.scale$1(0, 1 - t * 2) : b.scale$1(0, (t - 0.5) * 2); }, LinearGradient_lerp(a, b, t) { var interpolated, t2, t3, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); interpolated = A._interpolateColorsAndStops(a.colors, a._impliedStops$0(), b.colors, b._impliedStops$0(), t); t1 = A.AlignmentGeometry_lerp(a.begin, b.begin, t); t1.toString; t2 = A.AlignmentGeometry_lerp(a.end, b.end, t); t2.toString; t3 = t < 0.5 ? a.tileMode : b.tileMode; return new A.LinearGradient(t1, t2, t3, interpolated.colors, interpolated.stops, null); }, _ColorsAndStops: function _ColorsAndStops(t0, t1) { this.colors = t0; this.stops = t1; }, _sample_closure: function _sample_closure(t0) { this.t = t0; }, _interpolateColorsAndStops_closure: function _interpolateColorsAndStops_closure(t0, t1, t2, t3, t4) { var _ = this; _.aColors = t0; _.aStops = t1; _.bColors = t2; _.bStops = t3; _.t = t4; }, Gradient: function Gradient() { }, LinearGradient: function LinearGradient(t0, t1, t2, t3, t4, t5) { var _ = this; _.begin = t0; _.end = t1; _.tileMode = t2; _.colors = t3; _.stops = t4; _.transform = t5; }, LinearGradient_scale_closure: function LinearGradient_scale_closure(t0) { this.factor = t0; }, _LiveImage$(completer, handleRemove) { var t1; if (completer._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t1 = new A.ImageStreamCompleterHandle(completer); t1.ImageStreamCompleterHandle$_$1(completer); t1 = new A._LiveImage(completer, null, t1); t1._LiveImage$3$sizeBytes(completer, handleRemove, null); return t1; }, ImageCache: function ImageCache(t0, t1, t2) { var _ = this; _._pendingImages = t0; _._image_cache$_cache = t1; _._liveImages = t2; _._currentSizeBytes = 0; }, ImageCache__trackLiveImage_closure: function ImageCache__trackLiveImage_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.key = t2; }, ImageCache__trackLiveImage__closure: function ImageCache__trackLiveImage__closure(t0, t1) { this.$this = t0; this.key = t1; }, ImageCache_putIfAbsent_listener: function ImageCache_putIfAbsent_listener(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.key = t2; }, _CachedImageBase: function _CachedImageBase() { }, _CachedImageBase_dispose_closure: function _CachedImageBase_dispose_closure(t0) { this.$this = t0; }, _CachedImage: function _CachedImage(t0, t1, t2) { this.completer = t0; this.sizeBytes = t1; this.handle = t2; }, _LiveImage: function _LiveImage(t0, t1, t2) { var _ = this; _.___LiveImage__handleRemove = $; _.completer = t0; _.sizeBytes = t1; _.handle = t2; }, _LiveImage_closure: function _LiveImage_closure(t0, t1) { this.$this = t0; this.handleRemove = t1; }, _PendingImage: function _PendingImage(t0, t1) { this.completer = t0; this.listener = t1; }, ResizeImage_resizeIfNeeded(cacheWidth, cacheHeight, provider) { return provider; }, ImageConfiguration: function ImageConfiguration(t0, t1, t2, t3, t4, t5) { var _ = this; _.bundle = t0; _.devicePixelRatio = t1; _.locale = t2; _.textDirection = t3; _.size = t4; _.platform = t5; }, ImageProvider: function ImageProvider() { }, ImageProvider_resolve_closure: function ImageProvider_resolve_closure(t0, t1, t2) { this.$this = t0; this.configuration = t1; this.stream = t2; }, ImageProvider_resolve_closure0: function ImageProvider_resolve_closure0(t0, t1, t2) { this.$this = t0; this.configuration = t1; this.stream = t2; }, ImageProvider__createErrorHandlerAndKey_handleError: function ImageProvider__createErrorHandlerAndKey_handleError(t0, t1) { this._box_0 = t0; this.errorCallback = t1; }, ImageProvider__createErrorHandlerAndKey_closure: function ImageProvider__createErrorHandlerAndKey_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.successCallback = t2; _.handleError = t3; }, ImageProvider_resolveStreamForKey_closure: function ImageProvider_resolveStreamForKey_closure(t0) { this.stream = t0; }, ImageProvider_resolveStreamForKey_closure0: function ImageProvider_resolveStreamForKey_closure0(t0, t1) { this.$this = t0; this.key = t1; }, AssetBundleImageKey: function AssetBundleImageKey(t0, t1, t2) { this.bundle = t0; this.name = t1; this.scale = t2; }, AssetBundleImageProvider: function AssetBundleImageProvider() { }, _ErrorImageCompleter: function _ErrorImageCompleter(t0, t1) { var _ = this; _._image_stream$_listeners = t0; _.debugLabel = _._currentError = _._currentImage = null; _._addingInitialListeners = _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t1; }, AssetImage__manifestParser(jsonData) { var parsedJson, t1, t2, t3, t4, t5, t6; if (jsonData == null) return new A.SynchronousFuture(null, type$.SynchronousFuture_nullable_Map_of_String_and_List_String); parsedJson = type$.Map_String_dynamic._as(B.C_JsonCodec.decode$1(0, jsonData)); t1 = J.getInterceptor$x(parsedJson); t2 = type$.String; t3 = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_String); for (t4 = J.get$iterator$ax(t1.get$keys(parsedJson)), t5 = type$.List_dynamic; t4.moveNext$0();) { t6 = t4.get$current(t4); t3.$indexSet(0, t6, A.List_List$from(t5._as(t1.$index(parsedJson, t6)), true, t2)); } return new A.SynchronousFuture(t3, type$.SynchronousFuture_nullable_Map_of_String_and_List_String); }, AssetImage: function AssetImage(t0, t1, t2) { this.assetName = t0; this.bundle = t1; this.$package = t2; }, AssetImage_obtainKey_closure: function AssetImage_obtainKey_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.configuration = t2; _.chosenBundle = t3; }, AssetImage_obtainKey_closure0: function AssetImage_obtainKey_closure0(t0) { this._box_0 = t0; }, OneFrameImageStreamCompleter$(image) { var t1 = new A.OneFrameImageStreamCompleter(A._setArrayType([], type$.JSArray_ImageStreamListener), A._setArrayType([], type$.JSArray_of_void_Function)); t1.OneFrameImageStreamCompleter$2$informationCollector(image, null); return t1; }, MultiFrameImageStreamCompleter$(chunkEvents, codec, debugLabel, informationCollector, scale) { var t1 = new A.MultiFrameImageStreamCompleter(scale, informationCollector, A._setArrayType([], type$.JSArray_ImageStreamListener), A._setArrayType([], type$.JSArray_of_void_Function)); t1.MultiFrameImageStreamCompleter$5$chunkEvents$codec$debugLabel$informationCollector$scale(chunkEvents, codec, debugLabel, informationCollector, scale); return t1; }, ImageInfo: function ImageInfo(t0, t1, t2) { this.image = t0; this.scale = t1; this.debugLabel = t2; }, ImageStreamListener: function ImageStreamListener(t0, t1, t2) { this.onImage = t0; this.onChunk = t1; this.onError = t2; }, ImageChunkEvent: function ImageChunkEvent(t0, t1) { this.cumulativeBytesLoaded = t0; this.expectedTotalBytes = t1; }, ImageStream: function ImageStream() { this._image_stream$_listeners = this._image_stream$_completer = null; }, ImageStreamCompleterHandle: function ImageStreamCompleterHandle(t0) { this._image_stream$_completer = t0; }, ImageStreamCompleter: function ImageStreamCompleter() { }, ImageStreamCompleter_reportError_closure: function ImageStreamCompleter_reportError_closure() { }, ImageStreamCompleter_reportImageChunkEvent_closure: function ImageStreamCompleter_reportImageChunkEvent_closure() { }, OneFrameImageStreamCompleter: function OneFrameImageStreamCompleter(t0, t1) { var _ = this; _._image_stream$_listeners = t0; _.debugLabel = _._currentError = _._currentImage = null; _._addingInitialListeners = _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t1; }, OneFrameImageStreamCompleter_closure: function OneFrameImageStreamCompleter_closure(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiFrameImageStreamCompleter: function MultiFrameImageStreamCompleter(t0, t1, t2, t3) { var _ = this; _._codec = _._chunkSubscription = null; _._image_stream$_scale = t0; _._informationCollector = t1; _._nextFrame = null; _.__MultiFrameImageStreamCompleter__shownTimestamp = $; _._frameDuration = null; _._framesEmitted = 0; _._image_stream$_timer = null; _._frameCallbackScheduled = false; _._image_stream$_listeners = t2; _.debugLabel = _._currentError = _._currentImage = null; _._addingInitialListeners = _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t3; }, MultiFrameImageStreamCompleter_closure: function MultiFrameImageStreamCompleter_closure(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiFrameImageStreamCompleter_closure0: function MultiFrameImageStreamCompleter_closure0(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiFrameImageStreamCompleter__handleAppFrame_closure: function MultiFrameImageStreamCompleter__handleAppFrame_closure(t0) { this.$this = t0; }, _ImageChunkEvent_Object_Diagnosticable: function _ImageChunkEvent_Object_Diagnosticable() { }, _ImageStream_Object_Diagnosticable: function _ImageStream_Object_Diagnosticable() { }, _ImageStreamCompleter_Object_Diagnosticable: function _ImageStreamCompleter_Object_Diagnosticable() { }, InlineSpanSemanticsInformation$(text, recognizer, semanticsLabel, stringAttributes) { return new A.InlineSpanSemanticsInformation(text, semanticsLabel, recognizer, false, recognizer != null, stringAttributes); }, combineSemanticsInfo(infoList) { var t2, workingText, workingLabel, _i, info, effectiveLabel, effectiveLabel0, t3, t4, t5, _i0, infoAttribute, t6, combined = A._setArrayType([], type$.JSArray_InlineSpanSemanticsInformation), t1 = type$.JSArray_StringAttribute, workingAttributes = A._setArrayType([], t1); for (t2 = infoList.length, workingText = "", workingLabel = "", _i = 0; _i < infoList.length; infoList.length === t2 || (0, A.throwConcurrentModificationError)(infoList), ++_i) { info = infoList[_i]; if (info.requiresOwnNode) { combined.push(new A.InlineSpanSemanticsInformation(workingText, workingLabel, null, false, false, workingAttributes)); workingAttributes = A._setArrayType([], t1); combined.push(info); workingText = ""; workingLabel = ""; } else { effectiveLabel = info.text; workingText = B.JSString_methods.$add(workingText, effectiveLabel); effectiveLabel0 = info.semanticsLabel; effectiveLabel = effectiveLabel0 == null ? effectiveLabel : effectiveLabel0; for (t3 = info.stringAttributes, t4 = t3.length, t5 = workingLabel.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { infoAttribute = t3[_i0]; t6 = infoAttribute.range; workingAttributes.push(infoAttribute.copy$1$range(0, new A.TextRange(t6.start + t5, t6.end + t5))); } workingLabel = B.JSString_methods.$add(workingLabel, effectiveLabel); } } combined.push(A.InlineSpanSemanticsInformation$(workingText, null, workingLabel, workingAttributes)); return combined; }, Accumulator: function Accumulator() { this._inline_span$_value = 0; }, InlineSpanSemanticsInformation: function InlineSpanSemanticsInformation(t0, t1, t2, t3, t4, t5) { var _ = this; _.text = t0; _.semanticsLabel = t1; _.recognizer = t2; _.isPlaceholder = t3; _.requiresOwnNode = t4; _.stringAttributes = t5; }, InlineSpan: function InlineSpan() { }, InlineSpan_getSpanForPosition_closure: function InlineSpan_getSpanForPosition_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.offset = t2; }, InlineSpan_codeUnitAt_closure: function InlineSpan_codeUnitAt_closure(t0, t1, t2) { this._box_0 = t0; this.index = t1; this.offset = t2; }, NotchedShape: function NotchedShape() { }, CircularNotchedRectangle: function CircularNotchedRectangle() { }, PlaceholderSpan: function PlaceholderSpan() { }, RoundedRectangleBorder: function RoundedRectangleBorder(t0, t1) { this.borderRadius = t0; this.side = t1; }, _RoundedRectangleToCircleBorder: function _RoundedRectangleToCircleBorder(t0, t1, t2) { this.borderRadius = t0; this.circleness = t1; this.side = t2; }, ShapeDecoration_ShapeDecoration$fromBoxDecoration(source) { var t1, shape, t2; switch (source.shape.index) { case 1: t1 = source.border; shape = t1 != null ? new A.CircleBorder(t1.get$top(t1)) : B.CircleBorder_IVQ; break; case 0: t1 = source.borderRadius; shape = source.border; if (t1 != null) { t2 = shape == null ? null : shape.get$top(shape); shape = new A.RoundedRectangleBorder(t1, t2 == null ? B.BorderSide_0CF : t2); } else if (shape == null) shape = B.Border_27z; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A.ShapeDecoration(source.color, source.gradient, source.image, source.boxShadow, shape); }, ShapeDecoration_lerp(a, b, t) { var t2, t3, t4, t5, t6, _null = null, t1 = a == null; if (t1 && b == null) return _null; if (!t1 && b != null) { if (t === 0) return a; if (t === 1) return b; } t2 = t1 ? _null : a.color; t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.gradient; t4 = A.Gradient_lerp(t4, t3 ? _null : b.gradient, t); t5 = t < 0.5 ? a.image : b.image; t6 = t1 ? _null : a.shadows; t6 = A.BoxShadow_lerpList(t6, t3 ? _null : b.shadows, t); t1 = t1 ? _null : a.shape; t1 = A.ShapeBorder_lerp(t1, t3 ? _null : b.shape, t); t1.toString; return new A.ShapeDecoration(t2, t4, t5, t6, t1); }, ShapeDecoration: function ShapeDecoration(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.gradient = t1; _.image = t2; _.shadows = t3; _.shape = t4; }, _ShapeDecorationPainter: function _ShapeDecorationPainter(t0, t1) { var _ = this; _._shape_decoration$_decoration = t0; _._lastTextDirection = _._lastRect = null; _.___ShapeDecorationPainter__outerPath = $; _._shadowCount = _._interiorPaint = _._innerPath = null; _.___ShapeDecorationPainter__shadowPaints = _.___ShapeDecorationPainter__shadowPaths = $; _._imagePainter = null; _.onChanged = t1; }, _ShapeDecorationPainter__precache_closure: function _ShapeDecorationPainter__precache_closure() { }, _ShapeDecorationPainter__precache_closure0: function _ShapeDecorationPainter__precache_closure0(t0, t1, t2) { this.$this = t0; this.rect = t1; this.textDirection = t2; }, StadiumBorder: function StadiumBorder(t0) { this.side = t0; }, _StadiumToCircleBorder: function _StadiumToCircleBorder(t0, t1) { this.circleness = t0; this.side = t1; }, _StadiumToRoundedRectangleBorder: function _StadiumToRoundedRectangleBorder(t0, t1, t2) { this.borderRadius = t0; this.rectness = t1; this.side = t2; }, StrutStyle: function StrutStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.fontFamily = t0; _._strut_style$_fontFamilyFallback = t1; _.fontSize = t2; _.height = t3; _.fontWeight = t4; _.fontStyle = t5; _.leading = t6; _.forceStrutHeight = t7; _.debugLabel = t8; }, _StrutStyle_Object_Diagnosticable: function _StrutStyle_Object_Diagnosticable() { }, TextPainter$(ellipsis, locale, maxLines, strutStyle, text, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis) { return new A.TextPainter(text, textAlign, textDirection, textScaleFactor, ellipsis, locale, maxLines, strutStyle, textWidthBasis, textHeightBehavior); }, TextOverflow: function TextOverflow(t0, t1) { this.index = t0; this._core$_name = t1; }, PlaceholderDimensions: function PlaceholderDimensions(t0, t1, t2) { this.size = t0; this.baselineOffset = t1; this.baseline = t2; }, TextWidthBasis: function TextWidthBasis(t0, t1) { this.index = t0; this._core$_name = t1; }, _CaretMetrics: function _CaretMetrics(t0, t1) { this.offset = t0; this.fullHeight = t1; }, TextPainter: function TextPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._paragraph = null; _._rebuildParagraphForPaint = true; _._text_painter$_text = t0; _._textAlign = t1; _._text_painter$_textDirection = t2; _._text_painter$_textScaleFactor = t3; _._ellipsis = t4; _._text_painter$_locale = t5; _._maxLines = t6; _._strutStyle = t7; _._textWidthBasis = t8; _._text_painter$_textHeightBehavior = t9; _._lastMaxWidth = _._lastMinWidth = _._layoutTemplate = _._placeholderDimensions = _._inlinePlaceholderScales = _._inlinePlaceholderBoxes = null; _.__TextPainter__caretMetrics = $; _._lineMetricsCache = _._previousCaretPrototype = _._previousCaretPosition = null; }, TextSpan$(children, recognizer, style, text) { var t1 = recognizer == null ? B.C__DeferringMouseCursor : B.SystemMouseCursor_click; return new A.TextSpan(text, children, recognizer, t1, style); }, TextSpan: function TextSpan(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.children = t1; _.recognizer = t2; _.mouseCursor = t3; _.style = t4; }, TextSpan_debugDescribeChildren_closure: function TextSpan_debugDescribeChildren_closure() { }, TextStyle$(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, inherit, leadingDistribution, letterSpacing, locale, overflow, $package, shadows, textBaseline, wordSpacing) { return new A.TextStyle(inherit, color, backgroundColor, $package == null ? fontFamily : "packages/" + $package + "/" + A.S(fontFamily), fontFamilyFallback, $package, fontSize, fontWeight, fontStyle, letterSpacing, wordSpacing, textBaseline, height, leadingDistribution, locale, foreground, background, decoration, decorationColor, decorationStyle, decorationThickness, debugLabel, shadows, fontFeatures, overflow); }, TextStyle_lerp(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, _null = null, t1 = a == null; if (t1 && b == null) return _null; if (t1) { t1 = b.inherit; t2 = A.Color_lerp(_null, b.color, t); t3 = A.Color_lerp(_null, b.backgroundColor, t); t4 = t < 0.5; t5 = t4 ? _null : b.fontSize; t6 = A.FontWeight_lerp(_null, b.fontWeight, t); t7 = t4 ? _null : b.fontStyle; t8 = t4 ? _null : b.letterSpacing; t9 = t4 ? _null : b.wordSpacing; t10 = t4 ? _null : b.textBaseline; t11 = t4 ? _null : b.height; t12 = t4 ? _null : b.leadingDistribution; t13 = t4 ? _null : b.locale; t14 = t4 ? _null : b.foreground; t15 = t4 ? _null : b.background; t16 = t4 ? _null : b.shadows; t17 = t4 ? _null : b.fontFeatures; t18 = t4 ? _null : b.decoration; t19 = A.Color_lerp(_null, b.decorationColor, t); t20 = t4 ? _null : b.decorationStyle; t21 = t4 ? _null : b.decorationThickness; t22 = t4 ? _null : b.get$_text_style$_fontFamily(b); t23 = t4 ? _null : b.get$fontFamilyFallback(); t24 = t4 ? _null : b._package; return A.TextStyle$(t15, t3, t2, _null, t18, t19, t20, t21, t22, t23, t17, t5, t7, t6, t14, t11, t1, t12, t8, t13, t4 ? _null : b.overflow, t24, t16, t10, t9); } if (b == null) { t1 = a.inherit; t2 = A.Color_lerp(a.color, _null, t); t3 = A.Color_lerp(_null, a.backgroundColor, t); t4 = t < 0.5; t5 = t4 ? a.fontSize : _null; t6 = A.FontWeight_lerp(a.fontWeight, _null, t); t7 = t4 ? a.fontStyle : _null; t8 = t4 ? a.letterSpacing : _null; t9 = t4 ? a.wordSpacing : _null; t10 = t4 ? a.textBaseline : _null; t11 = t4 ? a.height : _null; t12 = t4 ? a.leadingDistribution : _null; t13 = t4 ? a.locale : _null; t14 = t4 ? a.foreground : _null; t15 = t4 ? a.background : _null; t16 = t4 ? a.shadows : _null; t17 = t4 ? a.fontFeatures : _null; t18 = t4 ? a.decoration : _null; t19 = A.Color_lerp(a.decorationColor, _null, t); t20 = t4 ? a.decorationStyle : _null; t21 = t4 ? a.decorationThickness : _null; t22 = t4 ? a.get$_text_style$_fontFamily(a) : _null; t23 = t4 ? a.get$fontFamilyFallback() : _null; t24 = t4 ? a._package : _null; return A.TextStyle$(t15, t3, t2, _null, t18, t19, t20, t21, t22, t23, t17, t5, t7, t6, t14, t11, t1, t12, t8, t13, t4 ? a.overflow : _null, t24, t16, t10, t9); } t1 = b.inherit; t2 = a.foreground; t3 = t2 == null; t4 = t3 && b.foreground == null ? A.Color_lerp(a.color, b.color, t) : _null; t5 = a.background; t6 = t5 == null; t7 = t6 && b.background == null ? A.Color_lerp(a.backgroundColor, b.backgroundColor, t) : _null; t8 = a.fontSize; t9 = t8 == null ? b.fontSize : t8; t10 = b.fontSize; t8 = A.lerpDouble(t9, t10 == null ? t8 : t10, t); t9 = A.FontWeight_lerp(a.fontWeight, b.fontWeight, t); t10 = t < 0.5; t11 = t10 ? a.fontStyle : b.fontStyle; t12 = a.letterSpacing; t13 = t12 == null ? b.letterSpacing : t12; t14 = b.letterSpacing; t12 = A.lerpDouble(t13, t14 == null ? t12 : t14, t); t13 = a.wordSpacing; t14 = t13 == null ? b.wordSpacing : t13; t15 = b.wordSpacing; t13 = A.lerpDouble(t14, t15 == null ? t13 : t15, t); t14 = t10 ? a.textBaseline : b.textBaseline; t15 = a.height; t16 = t15 == null ? b.height : t15; t17 = b.height; t15 = A.lerpDouble(t16, t17 == null ? t15 : t17, t); t16 = t10 ? a.leadingDistribution : b.leadingDistribution; t17 = t10 ? a.locale : b.locale; if (!t3 || b.foreground != null) if (t10) { if (t3) { t2 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3 = a.color; t3.toString; t2.set$color(0, t3); } } else { t2 = b.foreground; if (t2 == null) { t2 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3 = b.color; t3.toString; t2.set$color(0, t3); } } else t2 = _null; if (!t6 || b.background != null) if (t10) if (t6) { t3 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t5 = a.backgroundColor; t5.toString; t3.set$color(0, t5); } else t3 = t5; else { t3 = b.background; if (t3 == null) { t3 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t5 = b.backgroundColor; t5.toString; t3.set$color(0, t5); } } else t3 = _null; t5 = t10 ? a.shadows : b.shadows; t6 = t10 ? a.fontFeatures : b.fontFeatures; t18 = t10 ? a.decoration : b.decoration; t19 = A.Color_lerp(a.decorationColor, b.decorationColor, t); t20 = t10 ? a.decorationStyle : b.decorationStyle; t21 = a.decorationThickness; t22 = t21 == null ? b.decorationThickness : t21; t23 = b.decorationThickness; t21 = A.lerpDouble(t22, t23 == null ? t21 : t23, t); t22 = t10 ? a.get$_text_style$_fontFamily(a) : b.get$_text_style$_fontFamily(b); t23 = t10 ? a.get$fontFamilyFallback() : b.get$fontFamilyFallback(); t24 = t10 ? a._package : b._package; return A.TextStyle$(t3, t7, t4, _null, t18, t19, t20, t21, t22, t23, t6, t8, t11, t9, t2, t15, t1, t16, t12, t17, t10 ? a.overflow : b.overflow, t24, t5, t14, t13); }, TextStyle: function TextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.inherit = t0; _.color = t1; _.backgroundColor = t2; _.fontFamily = t3; _._text_style$_fontFamilyFallback = t4; _._package = t5; _.fontSize = t6; _.fontWeight = t7; _.fontStyle = t8; _.letterSpacing = t9; _.wordSpacing = t10; _.textBaseline = t11; _.height = t12; _.leadingDistribution = t13; _.locale = t14; _.foreground = t15; _.background = t16; _.decoration = t17; _.decorationColor = t18; _.decorationStyle = t19; _.decorationThickness = t20; _.debugLabel = t21; _.shadows = t22; _.fontFeatures = t23; _.overflow = t24; }, TextStyle_fontFamilyFallback_closure: function TextStyle_fontFamilyFallback_closure(t0) { this.$this = t0; }, _TextStyle_Object_Diagnosticable: function _TextStyle_Object_Diagnosticable() { }, FrictionSimulation: function FrictionSimulation(t0, t1, t2, t3, t4) { var _ = this; _._drag = t0; _._dragLog = t1; _._friction_simulation$_x = t2; _._v = t3; _.tolerance = t4; }, Simulation: function Simulation() { }, SpringDescription$withDampingRatio(mass, ratio, stiffness) { return new A.SpringDescription(mass, stiffness, ratio * 2 * Math.sqrt(mass * stiffness)); }, _SpringSolution__SpringSolution(spring, initialPosition, initialVelocity) { var r, r1, r2, c2, w, t1 = spring.damping, t2 = t1 * t1, t3 = spring.mass, t4 = 4 * t3 * spring.stiffness, cmk = t2 - t4; if (cmk === 0) { r = -t1 / (2 * t3); return new A._CriticalSolution(r, initialPosition, initialVelocity / (r * initialPosition)); } if (cmk > 0) { t1 = -t1; t3 = 2 * t3; r1 = (t1 - Math.sqrt(cmk)) / t3; r2 = (t1 + Math.sqrt(cmk)) / t3; c2 = (initialVelocity - r1 * initialPosition) / (r2 - r1); return new A._OverdampedSolution(r1, r2, initialPosition - c2, c2); } w = Math.sqrt(t4 - t2) / (2 * t3); r = -(t1 / 2 * t3); return new A._UnderdampedSolution(w, r, initialPosition, (initialVelocity - r * initialPosition) / w); }, SpringDescription: function SpringDescription(t0, t1, t2) { this.mass = t0; this.stiffness = t1; this.damping = t2; }, SpringType: function SpringType(t0, t1) { this.index = t0; this._core$_name = t1; }, SpringSimulation: function SpringSimulation(t0, t1, t2) { this._endPosition = t0; this._solution = t1; this.tolerance = t2; }, ScrollSpringSimulation: function ScrollSpringSimulation(t0, t1, t2) { this._endPosition = t0; this._solution = t1; this.tolerance = t2; }, _CriticalSolution: function _CriticalSolution(t0, t1, t2) { this._r = t0; this._c1 = t1; this._c2 = t2; }, _OverdampedSolution: function _OverdampedSolution(t0, t1, t2, t3) { var _ = this; _._r1 = t0; _._r2 = t1; _._c1 = t2; _._c2 = t3; }, _UnderdampedSolution: function _UnderdampedSolution(t0, t1, t2, t3) { var _ = this; _._spring_simulation$_w = t0; _._r = t1; _._c1 = t2; _._c2 = t3; }, Tolerance: function Tolerance(t0, t1) { this.distance = t0; this.velocity = t1; }, RenderAnimatedSize$(alignment, clipBehavior, curve, duration, reverseDuration, textDirection, vsync) { var _null = null, t1 = new A.RenderAnimatedSize(new A.SizeTween(_null, _null), B.RenderAnimatedSizeState_0, clipBehavior, vsync, A.LayerHandle$(type$.ClipRectLayer), alignment, textDirection, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); t1.RenderAnimatedSize$8$alignment$child$clipBehavior$curve$duration$reverseDuration$textDirection$vsync(alignment, _null, clipBehavior, curve, duration, reverseDuration, textDirection, vsync); return t1; }, RenderAnimatedSizeState: function RenderAnimatedSizeState(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderAnimatedSize: function RenderAnimatedSize(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.__RenderAnimatedSize__animation = _.__RenderAnimatedSize__controller = $; _._sizeTween = t0; _.__RenderAnimatedSize__hasVisualOverflow = $; _._animated_size$_lastValue = null; _._animated_size$_state = t1; _._animated_size$_clipBehavior = t2; _._vsync = t3; _._clipRectLayer = t4; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t5; _._shifted_box$_textDirection = t6; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t8; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAnimatedSize_closure: function RenderAnimatedSize_closure(t0) { this.$this = t0; }, RendererBinding: function RendererBinding() { }, RendererBinding__scheduleMouseTrackerUpdate_closure: function RendererBinding__scheduleMouseTrackerUpdate_closure(t0) { this.$this = t0; }, BoxConstraints$tight(size) { var t1 = size._dx, t2 = size._dy; return new A.BoxConstraints(t1, t1, t2, t2); }, BoxConstraints$tightFor(height, width) { var t3, t4, t1 = width == null, t2 = t1 ? 0 : width; t1 = t1 ? 1 / 0 : width; t3 = height == null; t4 = t3 ? 0 : height; return new A.BoxConstraints(t2, t1, t4, t3 ? 1 / 0 : height); }, BoxConstraints$tightForFinite(height, width) { var t3, t4, t1 = width !== 1 / 0, t2 = t1 ? width : 0; t1 = t1 ? width : 1 / 0; t3 = height !== 1 / 0; t4 = t3 ? height : 0; return new A.BoxConstraints(t2, t1, t4, t3 ? height : 1 / 0); }, BoxConstraints$loose(size) { return new A.BoxConstraints(0, size._dx, 0, size._dy); }, BoxConstraints$expand(height, width) { var t1 = height == null, t2 = t1 ? 1 / 0 : height; return new A.BoxConstraints(width, width, t2, t1 ? 1 / 0 : height); }, BoxConstraints_lerp(a, b, t) { var t2, t3, t4, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); t1 = a.minWidth; t1.toString; if (isFinite(t1)) { t1 = A.lerpDouble(t1, b.minWidth, t); t1.toString; } else t1 = 1 / 0; t2 = a.maxWidth; t2.toString; if (isFinite(t2)) { t2 = A.lerpDouble(t2, b.maxWidth, t); t2.toString; } else t2 = 1 / 0; t3 = a.minHeight; t3.toString; if (isFinite(t3)) { t3 = A.lerpDouble(t3, b.minHeight, t); t3.toString; } else t3 = 1 / 0; t4 = a.maxHeight; t4.toString; if (isFinite(t4)) { t4 = A.lerpDouble(t4, b.maxHeight, t); t4.toString; } else t4 = 1 / 0; return new A.BoxConstraints(t1, t2, t3, t4); }, BoxHitTestResult$() { var t1 = A._setArrayType([], type$.JSArray_HitTestEntry_HitTestTarget), t2 = new A.Matrix4(new Float64Array(16)); t2.setIdentity$0(); return new A.BoxHitTestResult(t1, A._setArrayType([t2], type$.JSArray_Matrix4_2), A._setArrayType([], type$.JSArray__TransformPart)); }, BoxHitTestResult$wrap(result) { return new A.BoxHitTestResult(result._hit_test$_path, result._transforms, result._localTransforms); }, BoxConstraints: function BoxConstraints(t0, t1, t2, t3) { var _ = this; _.minWidth = t0; _.maxWidth = t1; _.minHeight = t2; _.maxHeight = t3; }, BoxConstraints_toString_describe: function BoxConstraints_toString_describe() { }, BoxHitTestResult: function BoxHitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, BoxHitTestEntry: function BoxHitTestEntry(t0, t1) { this.localPosition = t0; this.target = t1; this._transform = null; }, BoxParentData: function BoxParentData(t0) { this.offset = t0; }, ContainerBoxParentData: function ContainerBoxParentData() { }, _IntrinsicDimension: function _IntrinsicDimension(t0, t1) { this.index = t0; this._core$_name = t1; }, _IntrinsicDimensionsCacheEntry: function _IntrinsicDimensionsCacheEntry(t0, t1) { this.dimension = t0; this.argument = t1; }, RenderBox: function RenderBox() { }, RenderBox__computeIntrinsicDimension_closure: function RenderBox__computeIntrinsicDimension_closure(t0, t1) { this.computer = t0; this.argument = t1; }, RenderBox_getDryLayout_closure: function RenderBox_getDryLayout_closure(t0, t1) { this.$this = t0; this.constraints = t1; }, RenderBox_getDistanceToActualBaseline_closure: function RenderBox_getDistanceToActualBaseline_closure(t0, t1) { this.$this = t0; this.baseline = t1; }, RenderBoxContainerDefaultsMixin: function RenderBoxContainerDefaultsMixin() { }, RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure: function RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.childParentData = t2; }, _ContainerBoxParentData_BoxParentData_ContainerParentDataMixin: function _ContainerBoxParentData_BoxParentData_ContainerParentDataMixin() { }, MultiChildLayoutParentData: function MultiChildLayoutParentData(t0, t1, t2) { var _ = this; _.id = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, MultiChildLayoutDelegate: function MultiChildLayoutDelegate() { }, RenderCustomMultiChildLayoutBox: function RenderCustomMultiChildLayoutBox(t0, t1, t2, t3, t4) { var _ = this; _._custom_layout$_delegate = t0; _.ContainerRenderObjectMixin__childCount = t1; _.ContainerRenderObjectMixin__firstChild = t2; _.ContainerRenderObjectMixin__lastChild = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin: function _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin() { }, _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, RenderCustomPaint$(foregroundPainter, isComplex, painter, preferredSize, willChange) { var t1 = new A.RenderCustomPaint(painter, foregroundPainter, preferredSize, false, false, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, RenderCustomPaint__updateSemanticsChildren(oldSemantics, newChildSemantics) { var t1, newChildrenBottom, t2, oldChildrenBottom, newChildren, newChildrenTop, oldChildrenTop, oldChild, newSemantics, t3, haveOldChildren, newChild, oldKeyedChildren, t4, _box_0 = {}; _box_0.newChildSemantics = newChildSemantics; if (oldSemantics == null) oldSemantics = B.List_empty21; if (newChildSemantics == null) newChildSemantics = B.List_empty22; _box_0.newChildSemantics = newChildSemantics; t1 = J.getInterceptor$asx(newChildSemantics); newChildrenBottom = t1.get$length(newChildSemantics) - 1; t2 = J.getInterceptor$asx(oldSemantics); oldChildrenBottom = t2.get$length(oldSemantics) - 1; newChildren = A.List_List$filled(t1.get$length(newChildSemantics), null, false, type$.nullable_SemanticsNode); t1 = J.getInterceptor$asx(newChildSemantics); newChildrenTop = 0; oldChildrenTop = 0; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; oldChild = t2.$index(oldSemantics, oldChildrenTop); newSemantics = t1.$index(newChildSemantics, newChildrenTop); t3 = oldChild.key; newSemantics.toString; if (t3 != null) break; newChildren[newChildrenTop] = A.RenderCustomPaint__updateSemanticsChild(oldChild, newSemantics); ++newChildrenTop; ++oldChildrenTop; } while (true) { haveOldChildren = oldChildrenTop <= oldChildrenBottom; if (!(haveOldChildren && newChildrenTop <= newChildrenBottom)) break; oldChild = t2.$index(oldSemantics, oldChildrenBottom); newChild = t1.$index(newChildSemantics, newChildrenBottom); t3 = oldChild.key; newChild.toString; if (t3 != null) break; --oldChildrenBottom; --newChildrenBottom; } oldKeyedChildren = A._Cell$named("oldKeyedChildren"); if (haveOldChildren) { oldKeyedChildren.set$finalLocalValue(A.LinkedHashMap_LinkedHashMap$_empty(type$.Key, type$.SemanticsNode)); for (t1 = oldKeyedChildren.__late_helper$_name; oldChildrenTop <= oldChildrenBottom;) { oldChild = t2.$index(oldSemantics, oldChildrenTop); t3 = oldChild.key; if (t3 != null) { t4 = oldKeyedChildren.__late_helper$_value; if (t4 === oldKeyedChildren) A.throwExpression(A.LateError$localNI(t1)); J.$indexSet$ax(t4, t3, oldChild); } ++oldChildrenTop; } haveOldChildren = true; } for (; newChildrenTop <= newChildrenBottom;) { newSemantics = J.$index$asx(_box_0.newChildSemantics, newChildrenTop); if (haveOldChildren) newSemantics.toString; newChildren[newChildrenTop] = A.RenderCustomPaint__updateSemanticsChild(null, newSemantics); ++newChildrenTop; } t1 = _box_0.newChildSemantics; newChildrenBottom = J.get$length$asx(t1) - 1; oldChildrenBottom = t2.get$length(oldSemantics) - 1; t3 = J.getInterceptor$asx(t1); while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; newChildren[newChildrenTop] = A.RenderCustomPaint__updateSemanticsChild(t2.$index(oldSemantics, oldChildrenTop), t3.$index(t1, newChildrenTop)); ++newChildrenTop; ++oldChildrenTop; } return new A.CastList(newChildren, A._arrayInstanceType(newChildren)._eval$1("CastList<1,SemanticsNode>")); }, RenderCustomPaint__updateSemanticsChild(oldChild, newSemantics) { var newChild, properties, config, t1; if (oldChild == null) { newSemantics.toString; newChild = A.SemanticsNode$(null, null); } else newChild = oldChild; properties = newSemantics.properties; config = A.SemanticsConfiguration$(); t1 = properties.sortKey; if (t1 != null) { config._semantics$_sortKey = t1; config._hasBeenAnnotated = true; } t1 = properties.checked; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_1, true); config._setFlag$2(B.SemanticsFlag_2, t1); } t1 = properties.selected; if (t1 != null) config._setFlag$2(B.SemanticsFlag_4, t1); t1 = properties.button; if (t1 != null) config._setFlag$2(B.SemanticsFlag_8, t1); t1 = properties.focusable; if (t1 != null) config._setFlag$2(B.SemanticsFlag_2097152, t1); t1 = properties.focused; if (t1 != null) config._setFlag$2(B.SemanticsFlag_32, t1); t1 = properties.enabled; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_64, true); config._setFlag$2(B.SemanticsFlag_128, t1); } t1 = properties.inMutuallyExclusiveGroup; if (t1 != null) config._setFlag$2(B.SemanticsFlag_256, t1); t1 = properties.header; if (t1 != null) config._setFlag$2(B.SemanticsFlag_512, t1); t1 = properties.scopesRoute; if (t1 != null) config._setFlag$2(B.SemanticsFlag_2048, t1); t1 = properties.namesRoute; if (t1 != null) config._setFlag$2(B.SemanticsFlag_4096, t1); t1 = properties.liveRegion; if (t1 != null) config._setFlag$2(B.SemanticsFlag_32768, t1); t1 = properties.maxValueLength; if (t1 != null) config.set$maxValueLength(t1); t1 = properties.currentValueLength; if (t1 != null) config.set$currentValueLength(t1); t1 = properties.toggled; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_65536, true); config._setFlag$2(B.SemanticsFlag_131072, t1); } t1 = properties.image; if (t1 != null) config._setFlag$2(B.SemanticsFlag_16384, t1); t1 = properties.label; if (t1 != null) { config._semantics$_attributedLabel = new A.AttributedString(t1, B.List_empty3); config._hasBeenAnnotated = true; } t1 = properties.value; if (t1 != null) { config._semantics$_attributedValue = new A.AttributedString(t1, B.List_empty3); config._hasBeenAnnotated = true; } t1 = properties.increasedValue; if (t1 != null) { config._semantics$_attributedIncreasedValue = new A.AttributedString(t1, B.List_empty3); config._hasBeenAnnotated = true; } t1 = properties.decreasedValue; if (t1 != null) { config._semantics$_attributedDecreasedValue = new A.AttributedString(t1, B.List_empty3); config._hasBeenAnnotated = true; } t1 = properties.textDirection; if (t1 != null) { config._semantics$_textDirection = t1; config._hasBeenAnnotated = true; } t1 = properties.onTap; if (t1 != null) config.set$onTap(t1); t1 = properties.onLongPress; if (t1 != null) config.set$onLongPress(t1); t1 = properties.onIncrease; if (t1 != null) config.set$onIncrease(t1); t1 = properties.onDecrease; if (t1 != null) config.set$onDecrease(t1); t1 = properties.onCopy; if (t1 != null) config.set$onCopy(0, t1); t1 = properties.onCut; if (t1 != null) config.set$onCut(0, t1); t1 = properties.onPaste; if (t1 != null) config.set$onPaste(0, t1); t1 = properties.onDidGainAccessibilityFocus; if (t1 != null) config.set$onDidGainAccessibilityFocus(t1); t1 = properties.onDismiss; if (t1 != null) config.set$onDismiss(t1); newChild.updateWith$2$childrenInInversePaintOrder$config(0, B.List_empty21, config); newChild.set$rect(0, newSemantics.rect); newChild.set$transform(0, null); newChild.tags = null; return newChild; }, CustomPainter: function CustomPainter() { }, CustomPainterSemantics: function CustomPainterSemantics(t0, t1) { this.rect = t0; this.properties = t1; }, RenderCustomPaint: function RenderCustomPaint(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._painter = t0; _._foregroundPainter = t1; _._preferredSize = t2; _.isComplex = t3; _.willChange = t4; _._foregroundSemanticsNodes = _._backgroundSemanticsNodes = _._foregroundSemanticsBuilder = _._backgroundSemanticsBuilder = null; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, DebugOverflowIndicatorMixin: function DebugOverflowIndicatorMixin() { }, _RenderEditableCustomPaint$(painter) { var t1 = new A._RenderEditableCustomPaint(painter, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; return t1; }, _TextHighlightPainter$() { var t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); return new A._TextHighlightPainter(t1, B.BoxHeightStyle_0, B.BoxWidthStyle_0, $.$get$ChangeNotifier__emptyListeners()); }, TextSelectionPoint: function TextSelectionPoint(t0, t1) { this.point = t0; this.direction = t1; }, VerticalCaretMovementRun: function VerticalCaretMovementRun(t0, t1, t2, t3, t4, t5) { var _ = this; _._currentOffset = t0; _._editable$_currentLine = t1; _._currentTextPosition = t2; _._lineMetrics = t3; _._editable = t4; _._isValid = true; _._positionCache = t5; }, RenderEditable: function RenderEditable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32) { var _ = this; _._backgroundRenderObject = _._foregroundRenderObject = null; _.__RenderEditable__placeholderSpans = $; _._editable$_painter = _._editable$_foregroundPainter = null; _.__RenderEditable__caretPainter = $; _._selectionPainter = t0; _._autocorrectHighlightPainter = t1; _._lastCaretRect = _._textLayoutLastMinWidth = _._textLayoutLastMaxWidth = _._cachedBuiltInPainters = _._cachedBuiltInForegroundPainters = null; _.onCaretChanged = t2; _.ignorePointer = t3; _._devicePixelRatio = t4; _._obscuringCharacter = t5; _._obscureText = t6; _.textSelectionDelegate = t7; _._selectionStartInViewport = t8; _._selectionEndInViewport = t9; _._cachedPlainText = null; _._editable$_textPainter = t10; _._editable$_cachedCombinedSemanticsInfos = _._cachedAttributedValue = null; _._showCursor = t11; _._editable$_hasFocus = t12; _._forceLine = t13; _._readOnly = t14; _._editable$_maxLines = t15; _._minLines = t16; _._expands = t17; _._selection = t18; _._editable$_offset = t19; _._cursorWidth = t20; _._cursorHeight = t21; _._paintCursorOnTop = t22; _._editable$_startHandleLayerLink = t23; _._editable$_endHandleLayerLink = t24; _._floatingCursorOn = false; _.__RenderEditable__floatingCursorTextPosition = $; _._enableInteractiveSelection = t25; _._editable$_maxScrollExtent = 0; _._editable$_clipBehavior = t26; _._cachedChildNodes = _._editable$_semanticsInfo = null; _.__RenderEditable__longPress = _.__RenderEditable__tap = $; _._editable$_placeholderDimensions = _._lastSecondaryTapDownPosition = _._lastTapDownPosition = null; _.__RenderEditable__caretPrototype = $; _._relativeOrigin = t27; _._previousOffset = null; _._resetOriginOnBottom = _._resetOriginOnTop = _._resetOriginOnRight = _._resetOriginOnLeft = false; _._resetFloatingCursorAnimationValue = null; _._editable$_clipRectLayer = t28; _.ContainerRenderObjectMixin__childCount = t29; _.ContainerRenderObjectMixin__firstChild = t30; _.ContainerRenderObjectMixin__lastChild = t31; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t32; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderEditable__extractPlaceholderSpans_closure: function RenderEditable__extractPlaceholderSpans_closure(t0) { this.$this = t0; }, RenderEditable_getBoxesForSelection_closure: function RenderEditable_getBoxesForSelection_closure(t0) { this.$this = t0; }, RenderEditable_describeSemanticsConfiguration_closure: function RenderEditable_describeSemanticsConfiguration_closure() { }, RenderEditable__createShowOnScreenFor_closure: function RenderEditable__createShowOnScreenFor_closure(t0, t1) { this.$this = t0; this.key = t1; }, RenderEditable_getRectForComposingRange_closure: function RenderEditable_getRectForComposingRange_closure() { }, RenderEditable_hitTestChildren_closure: function RenderEditable_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.textParentData = t2; }, RenderEditable__paintContents_closure: function RenderEditable__paintContents_closure(t0) { this._box_0 = t0; }, _RenderEditableCustomPaint: function _RenderEditableCustomPaint(t0, t1) { var _ = this; _._editable$_painter = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t1; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderEditablePainter: function RenderEditablePainter() { }, _TextHighlightPainter: function _TextHighlightPainter(t0, t1, t2, t3) { var _ = this; _.highlightPaint = t0; _._highlightedRange = _._highlightColor = null; _._selectionHeightStyle = t1; _._selectionWidthStyle = t2; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _FloatingCursorPainter: function _FloatingCursorPainter(t0, t1, t2, t3) { var _ = this; _._shouldPaint = true; _.caretPaintCallback = t0; _.showRegularCaret = false; _.caretPaint = t1; _.___FloatingCursorPainter_floatingCursorPaint = $; _._cursorRadius = _._caretColor = null; _._cursorOffset = t2; _._floatingCursorRect = _._backgroundCursorColor = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _CompositeRenderEditablePainter: function _CompositeRenderEditablePainter(t0, t1) { var _ = this; _.painters = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin: function _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin() { }, _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin: function _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin() { }, _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, RenderErrorBox: function RenderErrorBox(t0, t1) { var _ = this; _.message = t0; _.__RenderErrorBox__paragraph = $; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t1; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _startIsTopLeft(direction, textDirection, verticalDirection) { var _s80_ = string$.x60null_c; switch (direction.index) { case 0: switch (textDirection) { case B.TextDirection_1: return true; case B.TextDirection_0: return false; case null: return null; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case 1: switch (verticalDirection) { case B.VerticalDirection_1: return true; case B.VerticalDirection_0: return false; case null: return null; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, RenderFlex$(children, clipBehavior, crossAxisAlignment, direction, mainAxisAlignment, mainAxisSize, textBaseline, textDirection, verticalDirection) { var _null = null, t1 = new A.RenderFlex(direction, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, verticalDirection, textBaseline, clipBehavior, A.LayerHandle$(type$.ClipRectLayer), A.List_List$filled(4, A.TextPainter$(_null, _null, _null, _null, _null, B.TextAlign_4, B.TextDirection_1, _null, 1, B.TextWidthBasis_0), false, type$.TextPainter), true, 0, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, FlexFit: function FlexFit(t0, t1) { this.index = t0; this._core$_name = t1; }, FlexParentData: function FlexParentData(t0, t1, t2) { var _ = this; _.fit = _.flex = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, MainAxisSize: function MainAxisSize(t0, t1) { this.index = t0; this._core$_name = t1; }, MainAxisAlignment: function MainAxisAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, CrossAxisAlignment: function CrossAxisAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderFlex: function RenderFlex(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._flex$_direction = t0; _._mainAxisAlignment = t1; _._mainAxisSize = t2; _._crossAxisAlignment = t3; _._flex$_textDirection = t4; _._verticalDirection = t5; _._flex$_textBaseline = t6; _._flex$_overflow = 0; _._flex$_clipBehavior = t7; _._flex$_clipRectLayer = t8; _.DebugOverflowIndicatorMixin__indicatorLabel = t9; _.DebugOverflowIndicatorMixin__overflowReportNeeded = t10; _.ContainerRenderObjectMixin__childCount = t11; _.ContainerRenderObjectMixin__firstChild = t12; _.ContainerRenderObjectMixin__lastChild = t13; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t14; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFlex_computeMinIntrinsicWidth_closure: function RenderFlex_computeMinIntrinsicWidth_closure() { }, RenderFlex_computeMaxIntrinsicWidth_closure: function RenderFlex_computeMaxIntrinsicWidth_closure() { }, RenderFlex_computeMinIntrinsicHeight_closure: function RenderFlex_computeMinIntrinsicHeight_closure() { }, RenderFlex_computeMaxIntrinsicHeight_closure: function RenderFlex_computeMaxIntrinsicHeight_closure() { }, _LayoutSizes: function _LayoutSizes(t0, t1, t2) { this.mainSize = t0; this.crossSize = t1; this.allocatedSize = t2; }, _RenderFlex_RenderBox_ContainerRenderObjectMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin() { }, _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin() { }, RenderImage: function RenderImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _._flipHorizontally = _._image$_resolvedAlignment = null; _._image$_image = t0; _.debugImageLabel = t1; _._image$_width = t2; _._image$_height = t3; _._scale = t4; _._colorFilter = null; _._image$_color = t5; _._image$_opacity = t6; _._filterQuality = t7; _._colorBlendMode = t8; _._image$_fit = t9; _._image$_alignment = t10; _._repeat = t11; _._centerSlice = t12; _._invertColors = t13; _._matchTextDirection = t14; _._image$_textDirection = t15; _._image$_isAntiAlias = t16; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t17; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, LayerHandle$($T) { return new A.LayerHandle($T._eval$1("LayerHandle<0>")); }, TransformLayer$(transform) { return new A.TransformLayer(transform, B.Offset_0_0, A.LayerHandle$(type$.Layer_2)); }, PhysicalModelLayer$() { return new A.PhysicalModelLayer(B.Clip_0, A.LayerHandle$(type$.Layer_2)); }, FollowerLayer__collectTransformForLayerChain(layers) { var index, t1, result = new A.Matrix4(new Float64Array(16)); result.setIdentity$0(); for (index = layers.length - 1; index > 0; --index) { t1 = layers[index]; if (t1 != null) t1.applyTransform$2(layers[index - 1], result); } return result; }, FollowerLayer__pathsToCommonAncestor(a, b, ancestorsA, ancestorsB) { var t1, t2; if (a == null || b == null) return null; if (a === b) return a; t1 = a._depth; t2 = b._depth; if (t1 < t2) { t1 = type$.nullable_ContainerLayer; ancestorsB.push(t1._as(A.AbstractNode.prototype.get$parent.call(b, b))); return A.FollowerLayer__pathsToCommonAncestor(a, t1._as(A.AbstractNode.prototype.get$parent.call(b, b)), ancestorsA, ancestorsB); } else if (t1 > t2) { t1 = type$.nullable_ContainerLayer; ancestorsA.push(t1._as(A.AbstractNode.prototype.get$parent.call(a, a))); return A.FollowerLayer__pathsToCommonAncestor(t1._as(A.AbstractNode.prototype.get$parent.call(a, a)), b, ancestorsA, ancestorsB); } t1 = type$.nullable_ContainerLayer; ancestorsA.push(t1._as(A.AbstractNode.prototype.get$parent.call(a, a))); ancestorsB.push(t1._as(A.AbstractNode.prototype.get$parent.call(b, b))); return A.FollowerLayer__pathsToCommonAncestor(t1._as(A.AbstractNode.prototype.get$parent.call(a, a)), t1._as(A.AbstractNode.prototype.get$parent.call(b, b)), ancestorsA, ancestorsB); }, AnnotationEntry: function AnnotationEntry(t0, t1, t2) { this.annotation = t0; this.localPosition = t1; this.$ti = t2; }, AnnotationResult: function AnnotationResult(t0, t1) { this._layer$_entries = t0; this.$ti = t1; }, Layer0: function Layer0() { }, LayerHandle: function LayerHandle(t0) { this._layer = null; this.$ti = t0; }, PictureLayer: function PictureLayer(t0, t1) { var _ = this; _.canvasBounds = t0; _._picture = null; _._layer$_debugDisposed = _._willChangeHint = _._isComplexHint = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, PlatformViewLayer: function PlatformViewLayer(t0, t1, t2) { var _ = this; _.rect = t0; _.viewId = t1; _._layer$_debugDisposed = false; _._parentHandle = t2; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, PerformanceOverlayLayer: function PerformanceOverlayLayer(t0, t1, t2, t3, t4, t5) { var _ = this; _._overlayRect = t0; _.optionsMask = t1; _.rasterizerThreshold = t2; _.checkerboardRasterCacheImages = t3; _.checkerboardOffscreenLayers = t4; _._layer$_debugDisposed = false; _._parentHandle = t5; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, ContainerLayer0: function ContainerLayer0() { }, OffsetLayer: function OffsetLayer(t0, t1) { var _ = this; _._layer$_offset = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, ClipRectLayer: function ClipRectLayer(t0, t1) { var _ = this; _._clipRect = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, ClipRRectLayer: function ClipRRectLayer(t0, t1) { var _ = this; _._clipRRect = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, ClipPathLayer: function ClipPathLayer(t0, t1) { var _ = this; _._clipPath = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, TransformLayer: function TransformLayer(t0, t1, t2) { var _ = this; _._layer$_transform = t0; _._invertedTransform = _._lastEffectiveTransform = null; _._inverseDirty = true; _._layer$_offset = t1; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t2; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, OpacityLayer: function OpacityLayer(t0, t1) { var _ = this; _._layer$_alpha = null; _._layer$_offset = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, BackdropFilterLayer: function BackdropFilterLayer(t0, t1) { var _ = this; _._layer$_filter = null; _._layer$_blendMode = t0; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, PhysicalModelLayer: function PhysicalModelLayer(t0, t1) { var _ = this; _._clipPath = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = _._layer$_shadowColor = _._layer$_color = _._layer$_elevation = null; _._layer$_debugDisposed = false; _._parentHandle = t1; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, LayerLink: function LayerLink() { var _ = this; _._debugPreviousLeaders = _._leader = null; _._debugLeaderCheckScheduled = false; _.leaderSize = null; }, LeaderLayer: function LeaderLayer(t0, t1, t2) { var _ = this; _._layer$_link = t0; _._layer$_offset = t1; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t2; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, FollowerLayer: function FollowerLayer(t0, t1, t2, t3, t4) { var _ = this; _._layer$_link = t0; _.showWhenUnlinked = t1; _.unlinkedOffset = t2; _.linkedOffset = t3; _._invertedTransform = _._layer$_lastTransform = _._lastOffset = null; _._inverseDirty = true; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t4; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, AnnotatedRegionLayer: function AnnotatedRegionLayer(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.size = t1; _.offset = t2; _._lastChild = _._firstChild = null; _._layer$_debugDisposed = false; _._parentHandle = t3; _._layer$_refCount = 0; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t4; }, _Layer_AbstractNode_DiagnosticableTreeMixin: function _Layer_AbstractNode_DiagnosticableTreeMixin() { }, RenderListBody$(axisDirection, children) { var t1 = new A.RenderListBody(axisDirection, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, ListBodyParentData: function ListBodyParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.offset = t2; }, RenderListBody: function RenderListBody(t0, t1, t2, t3, t4) { var _ = this; _._axisDirection = t0; _.ContainerRenderObjectMixin__childCount = t1; _.ContainerRenderObjectMixin__firstChild = t2; _.ContainerRenderObjectMixin__lastChild = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderListBody_computeMinIntrinsicWidth_closure: function RenderListBody_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, RenderListBody_computeMinIntrinsicWidth_closure0: function RenderListBody_computeMinIntrinsicWidth_closure0(t0) { this.height = t0; }, RenderListBody_computeMaxIntrinsicWidth_closure: function RenderListBody_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, RenderListBody_computeMaxIntrinsicWidth_closure0: function RenderListBody_computeMaxIntrinsicWidth_closure0(t0) { this.height = t0; }, RenderListBody_computeMinIntrinsicHeight_closure: function RenderListBody_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, RenderListBody_computeMinIntrinsicHeight_closure0: function RenderListBody_computeMinIntrinsicHeight_closure0(t0) { this.width = t0; }, RenderListBody_computeMaxIntrinsicHeight_closure: function RenderListBody_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, RenderListBody_computeMaxIntrinsicHeight_closure0: function RenderListBody_computeMaxIntrinsicHeight_closure0(t0) { this.width = t0; }, _RenderListBody_RenderBox_ContainerRenderObjectMixin: function _RenderListBody_RenderBox_ContainerRenderObjectMixin() { }, _RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, MouseTracker__shouldMarkStateDirty(state, $event) { var lastEvent; if (state == null) return true; lastEvent = state._latestEvent; if (type$.PointerSignalEvent._is($event)) return false; return type$.PointerAddedEvent._is(lastEvent) || type$.PointerRemovedEvent._is($event) || !lastEvent.get$position(lastEvent).$eq(0, $event.get$position($event)); }, MouseTracker__handleDeviceUpdateMouseEvents(details) { var lastAnnotations, nextAnnotations, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, enteringAnnotations, baseEnterEvent, result = details.triggeringEvent; if (result == null) result = details.previousEvent; lastAnnotations = details.lastAnnotations; nextAnnotations = details.nextAnnotations; t1 = result.get$timeStamp(result); t2 = result.get$pointer(); t3 = result.get$kind(result); t4 = result.get$device(result); t5 = result.get$position(result); t6 = result.get$delta(); t7 = result.get$buttons(result); result.get$obscured(); t8 = result.get$pressureMin(); t9 = result.get$pressureMax(); t10 = result.get$distance(); t11 = result.get$distanceMax(); t12 = result.get$size(result); t13 = result.get$radiusMajor(); t14 = result.get$radiusMinor(); t15 = result.get$radiusMin(); t16 = result.get$radiusMax(); t17 = result.get$orientation(result); t18 = result.get$tilt(); lastAnnotations.forEach$1(0, new A.MouseTracker__handleDeviceUpdateMouseEvents_closure(nextAnnotations, A.PointerExitEvent$(t7, t6, t4, t10, t11, result.get$down(), 0, t3, false, t17, t2, t5, t9, t8, t13, t16, t15, t14, t12, result.get$synthesized(), t18, t1).transformed$1(result.get$transform(result)), lastAnnotations)); t1 = A._instanceType(nextAnnotations)._eval$1("LinkedHashMapKeyIterable<1>"); t18 = t1._eval$1("WhereIterable"); enteringAnnotations = A.List_List$of(new A.WhereIterable(new A.LinkedHashMapKeyIterable(nextAnnotations, t1), new A.MouseTracker__handleDeviceUpdateMouseEvents_closure0(lastAnnotations), t18), true, t18._eval$1("Iterable.E")); t18 = result.get$timeStamp(result); t1 = result.get$pointer(); t12 = result.get$kind(result); t14 = result.get$device(result); t15 = result.get$position(result); t16 = result.get$delta(); t13 = result.get$buttons(result); result.get$obscured(); t8 = result.get$pressureMin(); t9 = result.get$pressureMax(); t5 = result.get$distance(); t2 = result.get$distanceMax(); t17 = result.get$size(result); t3 = result.get$radiusMajor(); t11 = result.get$radiusMinor(); t10 = result.get$radiusMin(); t4 = result.get$radiusMax(); t6 = result.get$orientation(result); t7 = result.get$tilt(); baseEnterEvent = A.PointerEnterEvent$(t13, t16, t14, t5, t2, result.get$down(), 0, t12, false, t6, t1, t15, t9, t8, t3, t4, t10, t11, t17, result.get$synthesized(), t7, t18).transformed$1(result.get$transform(result)); for (t1 = A._arrayInstanceType(enteringAnnotations)._eval$1("ReversedListIterable<1>"), t2 = new A.ReversedListIterable(enteringAnnotations, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2.get$validForMouseTracker() && t2.get$onEnter(t2) != null) { t3 = t2.get$onEnter(t2); t3.toString; t3.call$1(baseEnterEvent.transformed$1(nextAnnotations.$index(0, t2))); } } }, _MouseState: function _MouseState(t0, t1) { this._annotations = t0; this._latestEvent = t1; }, _MouseTrackerUpdateDetails: function _MouseTrackerUpdateDetails(t0, t1, t2, t3) { var _ = this; _.lastAnnotations = t0; _.nextAnnotations = t1; _.previousEvent = t2; _.triggeringEvent = t3; }, MouseTracker: function MouseTracker(t0, t1, t2) { var _ = this; _._mouseCursorMixin = t0; _._mouseStates = t1; _._debugDuringDeviceUpdate = false; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, MouseTracker__handleDeviceUpdate_closure: function MouseTracker__handleDeviceUpdate_closure() { }, MouseTracker_updateWithEvent_closure: function MouseTracker_updateWithEvent_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.existingState = t1; _.event = t2; _.device = t3; _.result = t4; }, MouseTracker_updateWithEvent__closure: function MouseTracker_updateWithEvent__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.existingState = t1; _.event = t2; _.device = t3; _.result = t4; }, MouseTracker_updateAllDevices_closure: function MouseTracker_updateAllDevices_closure(t0, t1) { this.$this = t0; this.hitTest = t1; }, MouseTracker__handleDeviceUpdateMouseEvents_closure: function MouseTracker__handleDeviceUpdateMouseEvents_closure(t0, t1, t2) { this.nextAnnotations = t0; this.baseExitEvent = t1; this.lastAnnotations = t2; }, MouseTracker__handleDeviceUpdateMouseEvents_closure0: function MouseTracker__handleDeviceUpdateMouseEvents_closure0(t0) { this.lastAnnotations = t0; }, __MouseTrackerUpdateDetails_Object_Diagnosticable: function __MouseTrackerUpdateDetails_Object_Diagnosticable() { }, PaintingContext__repaintCompositedChild(child, childContext, debugAlsoPaintedParent) { var layer, t1 = child._layerHandle, childLayer = type$.nullable_OffsetLayer._as(t1._layer); if (childLayer == null) { layer = new A.OffsetLayer(B.Offset_0_0, A.LayerHandle$(type$.Layer_2)); t1.set$layer(0, layer); t1 = layer; } else { childLayer.removeAllChildren$0(); t1 = childLayer; } childContext = new A.PaintingContext(t1, child.get$paintBounds()); child._paintWithContext$2(childContext, B.Offset_0_0); childContext.stopRecordingIfNeeded$0(); }, RenderObject__cleanChildRelayoutBoundary(child) { child._cleanRelayoutBoundary$0(); }, RenderObject__propagateRelayoutBoundaryToChild(child) { child._propagateRelayoutBoundary$0(); }, _SemanticsGeometry__transformRect(rect, transform) { var t1; if (rect == null) return null; if (!rect.get$isEmpty(rect)) { t1 = transform._m4storage; t1 = t1[0] === 0 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 0 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 0 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 0; } else t1 = true; if (t1) return B.Rect_0_0_0_0; return A.MatrixUtils_inverseTransformRect(transform, rect); }, _SemanticsGeometry__applyIntermediatePaintTransforms(ancestor, child, transform, clipRectTransform) { var t2, intermediateParent, t3, t1 = child.get$parent(child); t1.toString; t2 = type$.RenderObject; t2._as(t1); for (intermediateParent = t1; intermediateParent !== ancestor; intermediateParent = t1, child = t3) { intermediateParent.applyPaintTransform$2(child, transform); t1 = intermediateParent.get$parent(intermediateParent); t1.toString; t2._as(t1); t3 = child.get$parent(child); t3.toString; t2._as(t3); } ancestor.applyPaintTransform$2(child, transform); ancestor.applyPaintTransform$2(child, clipRectTransform); }, _SemanticsGeometry__intersectRects(a, b) { if (a == null) return b; if (b == null) return a; return a.intersect$1(b); }, ParentData: function ParentData() { }, PaintingContext: function PaintingContext(t0, t1) { var _ = this; _._containerLayer = t0; _.estimatedBounds = t1; _._canvas = _._recorder = _._currentLayer = null; }, PaintingContext_pushClipRect_closure: function PaintingContext_pushClipRect_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, PaintingContext_pushClipRRect_closure: function PaintingContext_pushClipRRect_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, PaintingContext_pushClipPath_closure: function PaintingContext_pushClipPath_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, Constraints: function Constraints() { }, SemanticsHandle: function SemanticsHandle(t0, t1) { this._object$_owner = t0; this.listener = t1; }, PipelineOwner: function PipelineOwner(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onNeedVisualUpdate = t0; _.onSemanticsOwnerCreated = t1; _.onSemanticsOwnerDisposed = t2; _._rootNode = null; _._nodesNeedingLayout = t3; _._debugAllowMutationsToDirtySubtrees = _._debugDoingLayout = false; _._nodesNeedingCompositingBitsUpdate = t4; _._nodesNeedingPaint = t5; _._debugDoingPaint = false; _._semanticsOwner = null; _._outstandingSemanticsHandles = 0; _._debugDoingSemantics = false; _._nodesNeedingSemantics = t6; }, PipelineOwner_flushLayout_closure: function PipelineOwner_flushLayout_closure() { }, PipelineOwner_flushCompositingBits_closure: function PipelineOwner_flushCompositingBits_closure() { }, PipelineOwner_flushPaint_closure: function PipelineOwner_flushPaint_closure() { }, PipelineOwner_flushSemantics_closure: function PipelineOwner_flushSemantics_closure() { }, RenderObject: function RenderObject() { }, RenderObject_reassemble_closure: function RenderObject_reassemble_closure() { }, RenderObject__debugReportException_closure: function RenderObject__debugReportException_closure(t0) { this.$this = t0; }, RenderObject_invokeLayoutCallback_closure: function RenderObject_invokeLayoutCallback_closure(t0, t1, t2) { this.$this = t0; this.callback = t1; this.T = t2; }, RenderObject__updateCompositingBits_closure: function RenderObject__updateCompositingBits_closure(t0) { this.$this = t0; }, RenderObject_clearSemantics_closure: function RenderObject_clearSemantics_closure() { }, RenderObject__getSemanticsForParent_closure: function RenderObject__getSemanticsForParent_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.childrenMergeIntoParent = t2; _.fragments = t3; _.toBeMarkedExplicit = t4; _.config = t5; _.producesForkingFragment = t6; }, RenderObjectWithChildMixin: function RenderObjectWithChildMixin() { }, ContainerParentDataMixin: function ContainerParentDataMixin() { }, ContainerRenderObjectMixin: function ContainerRenderObjectMixin() { }, RelayoutWhenSystemFontsChangeMixin: function RelayoutWhenSystemFontsChangeMixin() { }, _SemanticsFragment: function _SemanticsFragment() { }, _ContainerSemanticsFragment: function _ContainerSemanticsFragment(t0, t1) { this.interestingFragments = t0; this.dropsSemanticsOfPreviousSiblings = t1; }, _InterestingSemanticsFragment: function _InterestingSemanticsFragment() { }, _RootSemanticsFragment: function _RootSemanticsFragment(t0, t1, t2) { var _ = this; _._object$_children = t0; _._ancestorChain = t1; _._object$_tagsForChildren = null; _.dropsSemanticsOfPreviousSiblings = t2; }, _SwitchableSemanticsFragment: function _SwitchableSemanticsFragment(t0, t1, t2, t3, t4) { var _ = this; _._mergeIntoParent = t0; _._object$_config = t1; _._isConfigWritable = false; _._object$_children = t2; _._isExplicit = false; _._ancestorChain = t3; _._object$_tagsForChildren = null; _.dropsSemanticsOfPreviousSiblings = t4; }, _SemanticsGeometry: function _SemanticsGeometry() { var _ = this; _._semanticsClipRect = _._paintClipRect = null; _.___SemanticsGeometry__rect = _.___SemanticsGeometry__transform = $; _._markAsHidden = false; }, _RenderObject_AbstractNode_DiagnosticableTreeMixin: function _RenderObject_AbstractNode_DiagnosticableTreeMixin() { }, RenderParagraph$(text, children, locale, maxLines, overflow, softWrap, strutStyle, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis) { var t1 = new A.RenderParagraph(A.TextPainter$(overflow === B.TextOverflow_2 ? "\u2026" : null, locale, maxLines, strutStyle, text, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis), softWrap, overflow, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); t1._extractPlaceholderSpans$1(text); return t1; }, TextParentData: function TextParentData(t0, t1, t2) { var _ = this; _.scale = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, PlaceholderSpanIndexSemanticsTag: function PlaceholderSpanIndexSemanticsTag(t0, t1) { this.index = t0; this.name = t1; }, RenderParagraph: function RenderParagraph(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._textPainter = t0; _._cachedCombinedSemanticsInfos = _._cachedAttributedLabel = null; _.__RenderParagraph__placeholderSpans = $; _._softWrap = t1; _._overflow = t2; _._needsClipping = false; _._paragraph$_cachedChildNodes = _._semanticsInfo = _._paragraph$_placeholderDimensions = _._overflowShader = null; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderParagraph__extractPlaceholderSpans_closure: function RenderParagraph__extractPlaceholderSpans_closure(t0) { this.$this = t0; }, RenderParagraph_hitTestChildren_closure: function RenderParagraph_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.textParentData = t2; }, RenderParagraph_paint_closure: function RenderParagraph_paint_closure(t0) { this._box_0 = t0; }, RenderParagraph_describeSemanticsConfiguration_closure: function RenderParagraph_describeSemanticsConfiguration_closure() { }, RenderParagraph__createShowOnScreenFor_closure: function RenderParagraph__createShowOnScreenFor_closure(t0, t1) { this.$this = t0; this.key = t1; }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin() { }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin() { }, RenderPerformanceOverlay: function RenderPerformanceOverlay(t0, t1, t2, t3, t4) { var _ = this; _._optionsMask = t0; _._rasterizerThreshold = t1; _._checkerboardRasterCacheImages = t2; _._checkerboardOffscreenLayers = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _factoryTypesSetEquals(a, b, $T) { if (a === b) return true; if (b == null) return false; return A.setEquals(A._factoriesTypeSet(a, $T), A._factoriesTypeSet(b, $T)); }, _factoriesTypeSet(factories, $T) { var t1 = A._instanceType(factories)._eval$1("EfficientLengthMappedIterable"); return A.LinkedHashSet_LinkedHashSet$of(new A.EfficientLengthMappedIterable(factories, new A._factoriesTypeSet_closure($T), t1), t1._eval$1("Iterable.E")); }, _PlatformViewGestureRecognizer$(handlePointerEvent, gestureRecognizerFactories) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); t1 = new A._PlatformViewGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_PointerEvent), A.LinkedHashSet_LinkedHashSet$_empty(t1), gestureRecognizerFactories, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, null, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); t1._PlatformViewGestureRecognizer$3$supportedDevices(handlePointerEvent, gestureRecognizerFactories, null); return t1; }, PlatformViewRenderBox$(controller, gestureRecognizers, hitTestBehavior) { var t1 = new A.PlatformViewRenderBox(controller, null, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$hitTestBehavior(hitTestBehavior); t1._updateGestureRecognizersWithCallBack$2(gestureRecognizers, t1._platform_view0$_controller.get$dispatchPointerEvent()); return t1; }, PlatformViewHitTestBehavior: function PlatformViewHitTestBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, _factoriesTypeSet_closure: function _factoriesTypeSet_closure(t0) { this.T = t0; }, _PlatformViewGestureRecognizer: function _PlatformViewGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.___PlatformViewGestureRecognizer__handlePointerEvent = $; _.cachedEvents = t0; _.forwardedPointers = t1; _.gestureRecognizerFactories = t2; _.___PlatformViewGestureRecognizer__gestureRecognizers = $; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _.gestureSettings = null; _._supportedDevices = t6; _._pointerToKind = t7; }, _PlatformViewGestureRecognizer_closure: function _PlatformViewGestureRecognizer_closure(t0) { this.$this = t0; }, PlatformViewRenderBox: function PlatformViewRenderBox(t0, t1, t2, t3, t4) { var _ = this; _._platform_view0$_controller = t0; _._PlatformViewGestureMixin__hitTestBehavior = t1; _._PlatformViewGestureMixin__handlePointerEvent = t2; _._PlatformViewGestureMixin__gestureRecognizer = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _PlatformViewGestureMixin: function _PlatformViewGestureMixin() { }, _PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin: function _PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin() { }, RenderConstrainedBox$(additionalConstraints) { var t1 = new A.RenderConstrainedBox(additionalConstraints, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, RenderIntrinsicWidth__applyStep(input, step) { if (step == null) return input; return B.JSNumber_methods.ceil$0(input / step) * step; }, RenderProxyBox: function RenderProxyBox() { }, RenderProxyBoxMixin: function RenderProxyBoxMixin() { }, HitTestBehavior: function HitTestBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderProxyBoxWithHitTestBehavior: function RenderProxyBoxWithHitTestBehavior() { }, RenderConstrainedBox: function RenderConstrainedBox(t0, t1, t2) { var _ = this; _._additionalConstraints = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderLimitedBox: function RenderLimitedBox(t0, t1, t2, t3) { var _ = this; _._maxWidth = t0; _._maxHeight = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAspectRatio: function RenderAspectRatio(t0, t1, t2) { var _ = this; _._aspectRatio = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIntrinsicWidth: function RenderIntrinsicWidth(t0, t1, t2, t3) { var _ = this; _._stepWidth = t0; _._stepHeight = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIntrinsicHeight: function RenderIntrinsicHeight(t0, t1) { var _ = this; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t1; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOpacity: function RenderOpacity(t0, t1, t2, t3, t4) { var _ = this; _._alpha = t0; _._proxy_box$_opacity = t1; _._alwaysIncludeSemantics = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAnimatedOpacityMixin: function RenderAnimatedOpacityMixin() { }, RenderAnimatedOpacity: function RenderAnimatedOpacity(t0, t1, t2, t3, t4, t5) { var _ = this; _.RenderAnimatedOpacityMixin__alpha = t0; _.RenderAnimatedOpacityMixin__currentlyNeedsCompositing = t1; _.RenderAnimatedOpacityMixin__opacity = t2; _.RenderAnimatedOpacityMixin__alwaysIncludeSemantics = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderBackdropFilter: function RenderBackdropFilter(t0, t1, t2, t3) { var _ = this; _._proxy_box$_filter = t0; _._proxy_box$_blendMode = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, CustomClipper: function CustomClipper() { }, ShapeBorderClipper: function ShapeBorderClipper(t0, t1, t2) { this.shape = t0; this.textDirection = t1; this._reclip = t2; }, _RenderCustomClip: function _RenderCustomClip() { }, RenderClipRect: function RenderClipRect(t0, t1, t2, t3) { var _ = this; _._clipper = t0; _._clip = null; _._proxy_box$_clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipRRect: function RenderClipRRect(t0, t1, t2, t3, t4) { var _ = this; _._proxy_box$_borderRadius = t0; _._clipper = t1; _._clip = null; _._proxy_box$_clipBehavior = t2; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipOval: function RenderClipOval(t0, t1, t2, t3) { var _ = this; _._proxy_box$_cachedRect = null; _.__RenderClipOval__cachedPath = $; _._clipper = t0; _._clip = null; _._proxy_box$_clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipPath: function RenderClipPath(t0, t1, t2, t3) { var _ = this; _._clipper = t0; _._clip = null; _._proxy_box$_clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderPhysicalModelBase: function _RenderPhysicalModelBase() { }, RenderPhysicalModel: function RenderPhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._proxy_box$_shape = t0; _._proxy_box$_borderRadius = t1; _._proxy_box$_elevation = t2; _._proxy_box$_shadowColor = t3; _._proxy_box$_color = t4; _._clipper = t5; _._clip = null; _._proxy_box$_clipBehavior = t6; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t8; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderPhysicalShape: function RenderPhysicalShape(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._proxy_box$_elevation = t0; _._proxy_box$_shadowColor = t1; _._proxy_box$_color = t2; _._clipper = t3; _._clip = null; _._proxy_box$_clipBehavior = t4; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, DecorationPosition: function DecorationPosition(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderDecoratedBox: function RenderDecoratedBox(t0, t1, t2, t3, t4) { var _ = this; _._proxy_box$_painter = null; _._proxy_box$_decoration = t0; _._proxy_box$_position = t1; _._proxy_box$_configuration = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTransform: function RenderTransform(t0, t1, t2) { var _ = this; _._proxy_box$_textDirection = _._proxy_box$_alignment = _._origin = null; _.transformHitTests = t0; _._proxy_box$_filterQuality = _._proxy_box$_transform = null; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTransform_hitTestChildren_closure: function RenderTransform_hitTestChildren_closure(t0) { this.$this = t0; }, RenderFittedBox: function RenderFittedBox(t0, t1, t2, t3, t4, t5) { var _ = this; _._proxy_box$_resolvedAlignment = null; _._proxy_box$_fit = t0; _._proxy_box$_alignment = t1; _._proxy_box$_textDirection = t2; _._proxy_box$_transform = _._hasVisualOverflow = null; _._proxy_box$_clipBehavior = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFittedBox_hitTestChildren_closure: function RenderFittedBox_hitTestChildren_closure(t0) { this.$this = t0; }, RenderFractionalTranslation: function RenderFractionalTranslation(t0, t1, t2, t3) { var _ = this; _._translation = t0; _.transformHitTests = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFractionalTranslation_hitTestChildren_closure: function RenderFractionalTranslation_hitTestChildren_closure(t0) { this.$this = t0; }, RenderPointerListener: function RenderPointerListener(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.onPointerDown = t0; _.onPointerMove = t1; _.onPointerUp = t2; _.onPointerHover = t3; _.onPointerCancel = t4; _.onPointerSignal = t5; _.behavior = t6; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t8; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderMouseRegion: function RenderMouseRegion(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._proxy_box$_opaque = t0; _.onEnter = t1; _.onHover = t2; _.onExit = t3; _._cursor = t4; _._validForMouseTracker = true; _.behavior = t5; _.RenderObjectWithChildMixin__child = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderRepaintBoundary: function RenderRepaintBoundary(t0, t1) { var _ = this; _._debugAsymmetricPaintCount = _._debugSymmetricPaintCount = 0; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t1; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIgnorePointer: function RenderIgnorePointer(t0, t1, t2, t3) { var _ = this; _._ignoring = t0; _._ignoringSemantics = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOffstage: function RenderOffstage(t0, t1, t2) { var _ = this; _._proxy_box$_offstage = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAbsorbPointer: function RenderAbsorbPointer(t0, t1, t2, t3) { var _ = this; _._absorbing = t0; _._ignoringSemantics = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSemanticsGestureHandler: function RenderSemanticsGestureHandler(t0, t1, t2) { var _ = this; _._onVerticalDragUpdate = _._onHorizontalDragUpdate = _._onLongPress = _._onTap = _._validActions = null; _.behavior = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSemanticsAnnotations: function RenderSemanticsAnnotations(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57) { var _ = this; _._container = t0; _._explicitChildNodes = t1; _._excludeSemantics = t2; _._checked = t3; _._enabled = t4; _._selected = t5; _._button = t6; _._slider = t7; _._keyboardKey = t8; _._proxy_box$_link = t9; _._header = t10; _._textField = t11; _._proxy_box$_readOnly = t12; _._focusable = t13; _._focused = t14; _._inMutuallyExclusiveGroup = t15; _._obscured = t16; _._multiline = t17; _._scopesRoute = t18; _._namesRoute = t19; _._hidden = t20; _._image = t21; _._liveRegion = t22; _._maxValueLength = t23; _._currentValueLength = t24; _._toggled = t25; _._attributedLabel = t26; _._attributedValue = t27; _._attributedIncreasedValue = t28; _._attributedDecreasedValue = t29; _._attributedHint = t30; _._hintOverrides = t31; _._proxy_box$_textDirection = t32; _._sortKey = t33; _._tagForChildren = t34; _._onTap = t35; _._onDismiss = t36; _._onLongPress = t37; _._onScrollLeft = t38; _._onScrollRight = t39; _._onScrollUp = t40; _._onScrollDown = t41; _._onIncrease = t42; _._onDecrease = t43; _._onCopy = t44; _._onCut = t45; _._onPaste = t46; _._onMoveCursorForwardByCharacter = t47; _._onMoveCursorBackwardByCharacter = t48; _._onMoveCursorForwardByWord = t49; _._onMoveCursorBackwardByWord = t50; _._onSetSelection = t51; _._onSetText = t52; _._onDidGainAccessibilityFocus = t53; _._onDidLoseAccessibilityFocus = t54; _._customSemanticsActions = t55; _.RenderObjectWithChildMixin__child = t56; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t57; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderBlockSemantics: function RenderBlockSemantics(t0, t1, t2) { var _ = this; _._blocking = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderMergeSemantics: function RenderMergeSemantics(t0, t1) { var _ = this; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t1; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderExcludeSemantics: function RenderExcludeSemantics(t0, t1, t2) { var _ = this; _._excluding = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIndexedSemantics: function RenderIndexedSemantics(t0, t1, t2) { var _ = this; _._proxy_box$_index = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderLeaderLayer: function RenderLeaderLayer(t0, t1, t2) { var _ = this; _._proxy_box$_link = t0; _._previousLayoutSize = null; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFollowerLayer: function RenderFollowerLayer(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._proxy_box$_link = t0; _._showWhenUnlinked = t1; _._proxy_box$_offset = t2; _._leaderAnchor = t3; _._followerAnchor = t4; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFollowerLayer_hitTestChildren_closure: function RenderFollowerLayer_hitTestChildren_closure(t0) { this.$this = t0; }, RenderAnnotatedRegion: function RenderAnnotatedRegion(t0, t1, t2, t3, t4) { var _ = this; _._proxy_box$_value = t0; _._sized = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t4; }, _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin: function _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin() { }, _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin: function _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin() { }, _RenderProxyBox_RenderBox_RenderObjectWithChildMixin: function _RenderProxyBox_RenderBox_RenderObjectWithChildMixin() { }, _RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin: function _RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin() { }, RenderShiftedBox: function RenderShiftedBox() { }, RenderShiftedBox_hitTestChildren_closure: function RenderShiftedBox_hitTestChildren_closure(t0, t1, t2) { this.$this = t0; this.position = t1; this.childParentData = t2; }, RenderPadding: function RenderPadding(t0, t1, t2, t3) { var _ = this; _._resolvedPadding = null; _._shifted_box$_padding = t0; _._shifted_box$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAligningShiftedBox: function RenderAligningShiftedBox() { }, RenderPositionedBox: function RenderPositionedBox(t0, t1, t2, t3, t4, t5) { var _ = this; _._widthFactor = t0; _._heightFactor = t1; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t2; _._shifted_box$_textDirection = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderConstrainedOverflowBox: function RenderConstrainedOverflowBox(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._minWidth = t0; _._shifted_box$_maxWidth = t1; _._minHeight = t2; _._shifted_box$_maxHeight = t3; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t4; _._shifted_box$_textDirection = t5; _.RenderObjectWithChildMixin__child = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFractionallySizedOverflowBox: function RenderFractionallySizedOverflowBox(t0, t1, t2, t3, t4, t5) { var _ = this; _._widthFactor = t0; _._heightFactor = t1; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t2; _._shifted_box$_textDirection = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, SingleChildLayoutDelegate: function SingleChildLayoutDelegate() { }, RenderCustomSingleChildLayoutBox: function RenderCustomSingleChildLayoutBox(t0, t1, t2) { var _ = this; _._shifted_box$_delegate = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderShiftedBox_RenderBox_RenderObjectWithChildMixin: function _RenderShiftedBox_RenderBox_RenderObjectWithChildMixin() { }, applyGrowthDirectionToAxisDirection(axisDirection, growthDirection) { switch (growthDirection.index) { case 0: return axisDirection; case 1: return A.flipAxisDirection(axisDirection); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, applyGrowthDirectionToScrollDirection(scrollDirection, growthDirection) { switch (growthDirection.index) { case 0: return scrollDirection; case 1: return A.flipScrollDirection(scrollDirection); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, SliverGeometry$(cacheExtent, hasVisualOverflow, hitTestExtent, layoutExtent, maxPaintExtent, maxScrollObstructionExtent, paintExtent, paintOrigin, scrollExtent, scrollOffsetCorrection) { var t1 = layoutExtent == null ? paintExtent : layoutExtent, t2 = hitTestExtent == null ? paintExtent : hitTestExtent, t3 = cacheExtent == null ? layoutExtent : cacheExtent; if (t3 == null) t3 = paintExtent; return new A.SliverGeometry(scrollExtent, paintOrigin, paintExtent, t1, maxPaintExtent, maxScrollObstructionExtent, t2, paintExtent > 0, hasVisualOverflow, scrollOffsetCorrection, t3); }, GrowthDirection: function GrowthDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, SliverConstraints: function SliverConstraints(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.axisDirection = t0; _.growthDirection = t1; _.userScrollDirection = t2; _.scrollOffset = t3; _.precedingScrollExtent = t4; _.overlap = t5; _.remainingPaintExtent = t6; _.crossAxisExtent = t7; _.crossAxisDirection = t8; _.viewportMainAxisExtent = t9; _.cacheOrigin = t10; _.remainingCacheExtent = t11; }, SliverGeometry: function SliverGeometry(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.scrollExtent = t0; _.paintOrigin = t1; _.paintExtent = t2; _.layoutExtent = t3; _.maxPaintExtent = t4; _.maxScrollObstructionExtent = t5; _.hitTestExtent = t6; _.visible = t7; _.hasVisualOverflow = t8; _.scrollOffsetCorrection = t9; _.cacheExtent = t10; }, SliverHitTestResult: function SliverHitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, SliverHitTestEntry: function SliverHitTestEntry(t0, t1, t2) { var _ = this; _.mainAxisPosition = t0; _.crossAxisPosition = t1; _.target = t2; _._transform = null; }, SliverLogicalParentData: function SliverLogicalParentData() { }, SliverLogicalContainerParentData: function SliverLogicalContainerParentData(t0, t1) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.layoutOffset = null; }, SliverPhysicalParentData: function SliverPhysicalParentData(t0) { this.paintOffset = t0; }, SliverPhysicalContainerParentData: function SliverPhysicalContainerParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.paintOffset = t2; }, RenderSliver: function RenderSliver() { }, RenderSliverHelpers: function RenderSliverHelpers() { }, RenderSliverHelpers_hitTestBoxChild_closure: function RenderSliverHelpers_hitTestBoxChild_closure(t0, t1) { this._box_0 = t0; this.child = t1; }, _SliverGeometry_Object_Diagnosticable: function _SliverGeometry_Object_Diagnosticable() { }, _SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin: function _SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin() { }, _SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin: function _SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin() { }, RenderSliverFillViewport: function RenderSliverFillViewport(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._sliver_fill0$_viewportFraction = t0; _._childManager = t1; _._keepAliveBucket = t2; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSliverFixedExtentBoxAdaptor: function RenderSliverFixedExtentBoxAdaptor() { }, SliverGridGeometry: function SliverGridGeometry(t0, t1, t2, t3) { var _ = this; _.scrollOffset = t0; _.crossAxisOffset = t1; _.mainAxisExtent = t2; _.crossAxisExtent = t3; }, SliverGridLayout: function SliverGridLayout() { }, SliverGridRegularTileLayout: function SliverGridRegularTileLayout(t0, t1, t2, t3, t4, t5) { var _ = this; _.crossAxisCount = t0; _.mainAxisStride = t1; _.crossAxisStride = t2; _.childMainAxisExtent = t3; _.childCrossAxisExtent = t4; _.reverseCrossAxis = t5; }, SliverGridDelegate: function SliverGridDelegate() { }, SliverGridDelegateWithFixedCrossAxisCount: function SliverGridDelegateWithFixedCrossAxisCount(t0, t1, t2, t3) { var _ = this; _.crossAxisCount = t0; _.mainAxisSpacing = t1; _.crossAxisSpacing = t2; _.childAspectRatio = t3; }, SliverGridParentData: function SliverGridParentData(t0, t1, t2) { var _ = this; _.index = _.crossAxisOffset = null; _._keptAlive = false; _.KeepAliveParentDataMixin_keepAlive = t0; _.ContainerParentDataMixin_previousSibling = t1; _.ContainerParentDataMixin_nextSibling = t2; _.layoutOffset = null; }, RenderSliverGrid: function RenderSliverGrid(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._gridDelegate = t0; _._childManager = t1; _._keepAliveBucket = t2; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSliverList: function RenderSliverList(t0, t1, t2, t3, t4, t5) { var _ = this; _._childManager = t0; _._keepAliveBucket = t1; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t2; _.ContainerRenderObjectMixin__firstChild = t3; _.ContainerRenderObjectMixin__lastChild = t4; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSliverList_performLayout_advance: function RenderSliverList_performLayout_advance(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.childConstraints = t2; }, KeepAliveParentDataMixin: function KeepAliveParentDataMixin() { }, RenderSliverWithKeepAliveMixin: function RenderSliverWithKeepAliveMixin() { }, SliverMultiBoxAdaptorParentData: function SliverMultiBoxAdaptorParentData(t0, t1, t2) { var _ = this; _.index = null; _._keptAlive = false; _.KeepAliveParentDataMixin_keepAlive = t0; _.ContainerParentDataMixin_previousSibling = t1; _.ContainerParentDataMixin_nextSibling = t2; _.layoutOffset = null; }, RenderSliverMultiBoxAdaptor: function RenderSliverMultiBoxAdaptor() { }, RenderSliverMultiBoxAdaptor__createOrObtainChild_closure: function RenderSliverMultiBoxAdaptor__createOrObtainChild_closure(t0, t1, t2) { this.$this = t0; this.index = t1; this.after = t2; }, RenderSliverMultiBoxAdaptor_collectGarbage_closure: function RenderSliverMultiBoxAdaptor_collectGarbage_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, RenderSliverMultiBoxAdaptor_collectGarbage__closure: function RenderSliverMultiBoxAdaptor_collectGarbage__closure() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin() { }, _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin: function _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin() { }, _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin: function _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin() { }, RenderSliverEdgeInsetsPadding: function RenderSliverEdgeInsetsPadding() { }, RenderSliverPadding: function RenderSliverPadding(t0, t1, t2, t3) { var _ = this; _._sliver_padding$_resolvedPadding = null; _._sliver_padding$_padding = t0; _._sliver_padding$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin: function _RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin() { }, _trim(original, bottom, left, right, $top) { return original == null ? null : original.intersect$1(new A.Rect(left, $top, right, bottom)); }, PersistentHeaderShowOnScreenConfiguration: function PersistentHeaderShowOnScreenConfiguration(t0) { this.minShowOnScreenExtent = t0; }, RenderSliverPersistentHeader: function RenderSliverPersistentHeader() { }, RenderSliverPersistentHeader_layoutChild_closure: function RenderSliverPersistentHeader_layoutChild_closure(t0, t1, t2) { this.$this = t0; this.shrinkOffset = t1; this.overlapsContent = t2; }, RenderSliverPinnedPersistentHeader: function RenderSliverPinnedPersistentHeader() { }, RenderSliverFloatingPersistentHeader__updateAnimation_closure: function RenderSliverFloatingPersistentHeader__updateAnimation_closure(t0) { this.$this = t0; }, _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin: function _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin() { }, _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers: function _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers() { }, RelativeRect_RelativeRect$fromRect(rect, container) { return new A.RelativeRect(rect.left - container.left, rect.top - container.top, container.right - rect.right, container.bottom - rect.bottom); }, RenderStack$(alignment, children, clipBehavior, fit, textDirection) { var t1 = new A.RenderStack(alignment, textDirection, fit, clipBehavior, A.LayerHandle$(type$.ClipRectLayer), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, RenderStack_getIntrinsicDimension(firstChild, mainChildSizeGetter) { var t1, child, extent, t2; for (t1 = type$.StackParentData, child = firstChild, extent = 0; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (!t2.get$isPositioned()) extent = Math.max(extent, A.checkNum(mainChildSizeGetter.call$1(child))); child = t2.ContainerParentDataMixin_nextSibling; } return extent; }, RenderStack_layoutPositionedChild(child, childParentData, size, alignment) { var t2, t3, childConstraints, x, hasVisualOverflow, y, t1 = childParentData.left; if (t1 != null && childParentData.right != null) { t2 = size._dx; t3 = childParentData.right; t3.toString; t1.toString; childConstraints = B.BoxConstraints_mlX5.tighten$1$width(t2 - t3 - t1); } else { t1 = childParentData.width; childConstraints = t1 != null ? B.BoxConstraints_mlX5.tighten$1$width(t1) : B.BoxConstraints_mlX5; } t1 = childParentData.top; if (t1 != null && childParentData.bottom != null) { t2 = size._dy; t3 = childParentData.bottom; t3.toString; t1.toString; childConstraints = childConstraints.tighten$1$height(t2 - t3 - t1); } else { t1 = childParentData.height; if (t1 != null) childConstraints = childConstraints.tighten$1$height(t1); } child.layout$2$parentUsesSize(0, childConstraints, true); x = childParentData.left; if (!(x != null)) { t1 = childParentData.right; t2 = child._box$_size; if (t1 != null) x = size._dx - t1 - t2._dx; else { t2.toString; x = alignment.alongOffset$1(type$.Offset._as(size.$sub(0, t2)))._dx; } } hasVisualOverflow = (x < 0 || x + child._box$_size._dx > size._dx) && true; y = childParentData.top; if (!(y != null)) { t1 = childParentData.bottom; t2 = child._box$_size; if (t1 != null) y = size._dy - t1 - t2._dy; else { t2.toString; y = alignment.alongOffset$1(type$.Offset._as(size.$sub(0, t2)))._dy; } } if (y < 0 || y + child._box$_size._dy > size._dy) hasVisualOverflow = true; childParentData.offset = new A.Offset(x, y); return hasVisualOverflow; }, RelativeRect: function RelativeRect(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, StackParentData: function StackParentData(t0, t1, t2) { var _ = this; _.height = _.width = _.left = _.bottom = _.right = _.top = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, StackFit: function StackFit(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderStack: function RenderStack(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._stack$_hasVisualOverflow = false; _._resolvedAlignment = null; _._alignment = t0; _._stack$_textDirection = t1; _._fit = t2; _._clipBehavior = t3; _._stack$_clipRectLayer = t4; _.ContainerRenderObjectMixin__childCount = t5; _.ContainerRenderObjectMixin__firstChild = t6; _.ContainerRenderObjectMixin__lastChild = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t8; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderStack_computeMinIntrinsicWidth_closure: function RenderStack_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, RenderStack_computeMaxIntrinsicWidth_closure: function RenderStack_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, RenderStack_computeMinIntrinsicHeight_closure: function RenderStack_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, RenderStack_computeMaxIntrinsicHeight_closure: function RenderStack_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, RenderIndexedStack: function RenderIndexedStack(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._stack$_index = t0; _._stack$_hasVisualOverflow = false; _._resolvedAlignment = null; _._alignment = t1; _._stack$_textDirection = t2; _._fit = t3; _._clipBehavior = t4; _._stack$_clipRectLayer = t5; _.ContainerRenderObjectMixin__childCount = t6; _.ContainerRenderObjectMixin__firstChild = t7; _.ContainerRenderObjectMixin__lastChild = t8; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t9; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIndexedStack_hitTestChildren_closure: function RenderIndexedStack_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, _RenderStack_RenderBox_ContainerRenderObjectMixin: function _RenderStack_RenderBox_ContainerRenderObjectMixin() { }, _RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, TableCellParentData: function TableCellParentData(t0) { this.y = this.verticalAlignment = null; this.offset = t0; }, TableColumnWidth: function TableColumnWidth() { }, IntrinsicColumnWidth: function IntrinsicColumnWidth(t0) { this._flex = t0; }, FixedColumnWidth: function FixedColumnWidth(t0) { this.value = t0; }, FlexColumnWidth: function FlexColumnWidth(t0) { this.value = t0; }, TableCellVerticalAlignment: function TableCellVerticalAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderTable: function RenderTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._table$_children = t0; _._table$_columns = t1; _._rows = t2; _._columnWidths = t3; _._defaultColumnWidth = t4; _._table$_textDirection = t5; _._table$_border = t6; _._rowDecorationPainters = _._table$_rowDecorations = null; _._table$_configuration = t7; _._defaultVerticalAlignment = t8; _._table$_textBaseline = t9; _._baselineDistance = null; _._rowTops = t10; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = _._columnLefts = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t11; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTable_computeDryLayout_closure: function RenderTable_computeDryLayout_closure() { }, RenderTable_hitTestChildren_closure: function RenderTable_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, AlignmentGeometryTween: function AlignmentGeometryTween(t0, t1) { this.begin = t0; this.end = t1; }, ViewConfiguration: function ViewConfiguration(t0, t1) { this.size = t0; this.devicePixelRatio = t1; }, RenderView: function RenderView(t0, t1, t2, t3, t4) { var _ = this; _._view$_size = t0; _._view$_configuration = t1; _._window = t2; _.automaticSystemUiAdjustment = true; _._rootTransform = null; _.RenderObjectWithChildMixin__child = t3; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderView_RenderObject_RenderObjectWithChildMixin: function _RenderView_RenderObject_RenderObjectWithChildMixin() { }, RenderAbstractViewport_of(object) { var t1, t2; for (t1 = type$.nullable_RenderObject, t2 = type$.RenderAbstractViewport; object != null;) { if (t2._is(object)) return object; object = t1._as(object.get$parent(object)); } return null; }, RenderViewportBase_showInViewport(curve, descendant, duration, offset, rect, viewport) { var leadingEdgeOffset, trailingEdgeOffset, t1, t2, t3, targetOffset, transform; if (descendant == null) return rect; leadingEdgeOffset = viewport.getOffsetToReveal$3$rect(descendant, 0, rect); trailingEdgeOffset = viewport.getOffsetToReveal$3$rect(descendant, 1, rect); t1 = offset._pixels; t1.toString; t2 = leadingEdgeOffset.offset; t3 = trailingEdgeOffset.offset; if (t2 < t3) targetOffset = Math.abs(t1 - t2) < Math.abs(t1 - t3) ? leadingEdgeOffset : trailingEdgeOffset; else if (t1 > t2) targetOffset = leadingEdgeOffset; else { if (!(t1 < t3)) { t1 = viewport._node$_parent; t1.toString; transform = descendant.getTransformTo$1(0, type$.RenderObject._as(t1)); return A.MatrixUtils_transformRect(transform, rect == null ? descendant.get$paintBounds() : rect); } targetOffset = trailingEdgeOffset; } offset.moveTo$3$curve$duration(0, targetOffset.offset, curve, duration); return targetOffset.rect; }, CacheExtentStyle: function CacheExtentStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, RevealedOffset: function RevealedOffset(t0, t1) { this.offset = t0; this.rect = t1; }, RenderViewportBase: function RenderViewportBase() { }, RenderViewportBase_visitChildrenForSemantics_closure: function RenderViewportBase_visitChildrenForSemantics_closure() { }, RenderViewportBase_hitTestChildren_closure: function RenderViewportBase_hitTestChildren_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.child = t2; _.sliverResult = t3; }, RenderViewport: function RenderViewport(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._anchor = t0; _._viewport$_center = null; _.__RenderViewport__maxScrollExtent = _.__RenderViewport__minScrollExtent = $; _._viewport$_hasVisualOverflow = false; _._viewport$_axisDirection = t1; _._crossAxisDirection = t2; _._viewport$_offset = t3; _._cacheExtent = t4; _._calculatedCacheExtent = null; _._cacheExtentStyle = t5; _._viewport$_clipBehavior = t6; _._viewport$_clipRectLayer = t7; _.ContainerRenderObjectMixin__childCount = t8; _.ContainerRenderObjectMixin__firstChild = t9; _.ContainerRenderObjectMixin__lastChild = t10; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t11; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderShrinkWrappingViewport: function RenderShrinkWrappingViewport(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.__RenderShrinkWrappingViewport__shrinkWrapExtent = _.__RenderShrinkWrappingViewport__maxScrollExtent = $; _._viewport$_hasVisualOverflow = false; _._viewport$_axisDirection = t0; _._crossAxisDirection = t1; _._viewport$_offset = t2; _._cacheExtent = t3; _._calculatedCacheExtent = null; _._cacheExtentStyle = t4; _._viewport$_clipBehavior = t5; _._viewport$_clipRectLayer = t6; _.ContainerRenderObjectMixin__childCount = t7; _.ContainerRenderObjectMixin__firstChild = t8; _.ContainerRenderObjectMixin__lastChild = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t10; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderViewportBase_RenderBox_ContainerRenderObjectMixin: function _RenderViewportBase_RenderBox_ContainerRenderObjectMixin() { }, flipScrollDirection(direction) { switch (direction.index) { case 0: return B.ScrollDirection_0; case 1: return B.ScrollDirection_2; case 2: return B.ScrollDirection_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, ScrollDirection: function ScrollDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, ViewportOffset: function ViewportOffset() { }, WrapAlignment: function WrapAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, WrapCrossAlignment: function WrapCrossAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, _RunMetrics: function _RunMetrics(t0, t1, t2) { this.mainAxisExtent = t0; this.crossAxisExtent = t1; this.childCount = t2; }, WrapParentData: function WrapParentData(t0, t1, t2) { var _ = this; _._runIndex = 0; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, RenderWrap: function RenderWrap(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._wrap$_direction = t0; _._wrap$_alignment = t1; _._wrap$_spacing = t2; _._runAlignment = t3; _._runSpacing = t4; _._wrap$_crossAxisAlignment = t5; _._wrap$_textDirection = t6; _._wrap$_verticalDirection = t7; _._wrap$_clipBehavior = t8; _._wrap$_hasVisualOverflow = false; _._wrap$_clipRectLayer = t9; _.ContainerRenderObjectMixin__childCount = t10; _.ContainerRenderObjectMixin__firstChild = t11; _.ContainerRenderObjectMixin__lastChild = t12; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t13; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderWrap_RenderBox_ContainerRenderObjectMixin: function _RenderWrap_RenderBox_ContainerRenderObjectMixin() { }, _RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, timeDilation(value) { var t1; if ($._timeDilation === value) return; t1 = $.SchedulerBinding__instance; if (t1 != null) t1.resetEpoch$0(); $._timeDilation = value; }, SchedulerBinding__taskSorter(e1, e2) { return -B.JSInt_methods.compareTo$1(e1.priority, e2.priority); }, defaultSchedulingStrategy(priority, scheduler) { if (scheduler.SchedulerBinding__transientCallbacks._length > 0) return priority >= 100000; return true; }, _TaskEntry: function _TaskEntry(t0, t1, t2, t3, t4, t5) { var _ = this; _.task = t0; _.priority = t1; _.debugLabel = t2; _.flow = t3; _.___TaskEntry_debugStack = $; _.completer = t4; _.$ti = t5; }, _TaskEntry_run_closure: function _TaskEntry_run_closure(t0) { this.$this = t0; }, _FrameCallbackEntry: function _FrameCallbackEntry(t0) { this.callback = t0; this.debugStack = null; }, SchedulerPhase: function SchedulerPhase(t0, t1) { this.index = t0; this._core$_name = t1; }, SchedulerBinding: function SchedulerBinding() { }, SchedulerBinding_endOfFrame_closure: function SchedulerBinding_endOfFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_scheduleWarmUpFrame_closure: function SchedulerBinding_scheduleWarmUpFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_scheduleWarmUpFrame_closure0: function SchedulerBinding_scheduleWarmUpFrame_closure0(t0, t1) { this.$this = t0; this.hadScheduledFrame = t1; }, SchedulerBinding_scheduleWarmUpFrame_closure1: function SchedulerBinding_scheduleWarmUpFrame_closure1(t0, t1) { this.$this = t0; this.timelineTask = t1; }, SchedulerBinding__handleDrawFrame_closure: function SchedulerBinding__handleDrawFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_handleBeginFrame_closure: function SchedulerBinding_handleBeginFrame_closure(t0) { this.$this = t0; }, Priority: function Priority(t0) { this._priority$_value = t0; }, TickerFuture$complete() { var t1 = new A.TickerFuture(new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void)); t1._ticker$_complete$0(); return t1; }, Ticker: function Ticker(t0, t1) { var _ = this; _._ticker$_future = null; _._muted = false; _._startTime = null; _._onTick = t0; _._animationId = null; _.debugLabel = t1; _.__Ticker__debugCreationStack = $; }, TickerFuture: function TickerFuture(t0) { this._primaryCompleter = t0; this._completed = this._secondaryCompleter = null; }, TickerFuture_whenCompleteOrCancel_thunk: function TickerFuture_whenCompleteOrCancel_thunk(t0) { this.callback = t0; }, TickerCanceled: function TickerCanceled(t0) { this.ticker = t0; }, SemanticsBinding: function SemanticsBinding() { }, CustomSemanticsAction_getIdentifier(action) { var result = $.CustomSemanticsAction__ids.$index(0, action); if (result == null) { result = $.CustomSemanticsAction__nextId; $.CustomSemanticsAction__nextId = result + 1; $.CustomSemanticsAction__ids.$indexSet(0, action, result); $.CustomSemanticsAction__actions.$indexSet(0, result, action); } return result; }, SemanticsData__sortedListsEqual(left, right) { var i; if (left.length !== right.length) return false; for (i = 0; i < left.length; ++i) if (!J.$eq$(left[i], right[i])) return false; return true; }, _SemanticsDiagnosticableNode$(childOrder, $name, style, value) { return new A._SemanticsDiagnosticableNode(childOrder, value, $name, true, true, null, style); }, SemanticsProperties$(attributedDecreasedValue, attributedHint, attributedIncreasedValue, attributedLabel, attributedValue, button, checked, currentValueLength, customSemanticsActions, decreasedValue, enabled, focusable, focused, header, hidden, hint, hintOverrides, image, inMutuallyExclusiveGroup, increasedValue, keyboardKey, label, link, liveRegion, maxValueLength, multiline, namesRoute, obscured, onCopy, onCut, onDecrease, onDidGainAccessibilityFocus, onDidLoseAccessibilityFocus, onDismiss, onIncrease, onLongPress, onMoveCursorBackwardByCharacter, onMoveCursorForwardByCharacter, onPaste, onScrollDown, onScrollLeft, onScrollRight, onScrollUp, onSetSelection, onSetText, onTap, readOnly, scopesRoute, selected, slider, sortKey, tagForChildren, textDirection, textField, toggled, value) { return new A.SemanticsProperties(enabled, checked, toggled, selected, button, link, header, textField, slider, keyboardKey, readOnly, focusable, focused, inMutuallyExclusiveGroup, hidden, obscured, multiline, scopesRoute, namesRoute, image, liveRegion, maxValueLength, currentValueLength, label, attributedLabel, value, attributedValue, increasedValue, attributedIncreasedValue, decreasedValue, attributedDecreasedValue, hint, attributedHint, hintOverrides, textDirection, sortKey, tagForChildren, onTap, onLongPress, onScrollLeft, onScrollRight, onScrollUp, onScrollDown, onIncrease, onDecrease, onCopy, onCut, onPaste, onMoveCursorForwardByCharacter, onMoveCursorBackwardByCharacter, onSetSelection, onSetText, onDidGainAccessibilityFocus, onDidLoseAccessibilityFocus, onDismiss, customSemanticsActions); }, SemanticsNode$(key, showOnScreen) { var t14, t1 = $.$get$SemanticsNode__kEmptyConfig(), t2 = t1._isMergingSemanticsOfDescendants, t3 = t1._actions, t4 = t1._semantics$_customSemanticsActions, t5 = t1._actionsAsBits, t6 = t1._flags, t7 = t1._semantics$_attributedLabel, t8 = t1._semantics$_attributedValue, t9 = t1._semantics$_attributedIncreasedValue, t10 = t1._semantics$_attributedDecreasedValue, t11 = t1._semantics$_attributedHint, t12 = t1._semantics$_elevation, t13 = t1._semantics$_thickness; t1 = t1._semantics$_textDirection; t14 = ($.SemanticsNode__lastIdentifier + 1) % 65535; $.SemanticsNode__lastIdentifier = t14; return new A.SemanticsNode(key, t14, showOnScreen, B.Rect_0_0_0_0, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t1); }, _pointInParentCoordinates(node, point) { var t1, vector; if (node._semantics$_transform == null) return point; t1 = new Float64Array(3); vector = new A.Vector3(t1); vector.setValues$3(point._dx, point._dy, 0); node._semantics$_transform.transform3$1(vector); return new A.Offset(t1[0], t1[1]); }, _childrenInDefaultOrder(children, textDirection) { var t1, _i, child, t2, verticalGroups, group, depth, edge, edges = A._setArrayType([], type$.JSArray__BoxEdge); for (t1 = children.length, _i = 0; _i < children.length; children.length === t1 || (0, A.throwConcurrentModificationError)(children), ++_i) { child = children[_i]; t2 = child._semantics$_rect; edges.push(new A._BoxEdge(true, A._pointInParentCoordinates(child, new A.Offset(t2.left - -0.1, t2.top - -0.1))._dy, child)); edges.push(new A._BoxEdge(false, A._pointInParentCoordinates(child, new A.Offset(t2.right + -0.1, t2.bottom + -0.1))._dy, child)); } B.JSArray_methods.sort$0(edges); verticalGroups = A._setArrayType([], type$.JSArray__SemanticsSortGroup); for (t1 = edges.length, t2 = type$.JSArray_SemanticsNode, group = null, depth = 0, _i = 0; _i < edges.length; edges.length === t1 || (0, A.throwConcurrentModificationError)(edges), ++_i) { edge = edges[_i]; if (edge.isLeadingEdge) { ++depth; if (group == null) group = new A._SemanticsSortGroup(edge.offset, textDirection, A._setArrayType([], t2)); group.nodes.push(edge.node); } else --depth; if (depth === 0) { group.toString; verticalGroups.push(group); group = null; } } B.JSArray_methods.sort$0(verticalGroups); t1 = type$.ExpandIterable__SemanticsSortGroup_SemanticsNode; return A.List_List$of(new A.ExpandIterable(verticalGroups, new A._childrenInDefaultOrder_closure(), t1), true, t1._eval$1("Iterable.E")); }, SemanticsConfiguration$() { return new A.SemanticsConfiguration(A.LinkedHashMap_LinkedHashMap$_empty(type$.SemanticsAction, type$.void_Function_nullable_Object), A.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.void_Function), new A.AttributedString("", B.List_empty3), new A.AttributedString("", B.List_empty3), new A.AttributedString("", B.List_empty3), new A.AttributedString("", B.List_empty3), new A.AttributedString("", B.List_empty3)); }, _concatAttributedString(otherAttributedString, otherTextDirection, thisAttributedString, thisTextDirection) { if (otherAttributedString.string.length === 0) return thisAttributedString; if (thisTextDirection != otherTextDirection && otherTextDirection != null) switch (otherTextDirection.index) { case 0: otherAttributedString = new A.AttributedString("\u202b", B.List_empty3).$add(0, otherAttributedString).$add(0, new A.AttributedString("\u202c", B.List_empty3)); break; case 1: otherAttributedString = new A.AttributedString("\u202a", B.List_empty3).$add(0, otherAttributedString).$add(0, new A.AttributedString("\u202c", B.List_empty3)); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (thisAttributedString.string.length === 0) return otherAttributedString; return thisAttributedString.$add(0, new A.AttributedString("\n", B.List_empty3)).$add(0, otherAttributedString); }, SemanticsTag: function SemanticsTag(t0) { this.name = t0; }, CustomSemanticsAction: function CustomSemanticsAction(t0, t1, t2) { this.label = t0; this.hint = t1; this.action = t2; }, AttributedString: function AttributedString(t0, t1) { this.string = t0; this.attributes = t1; }, SemanticsData: function SemanticsData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.flags = t0; _.actions = t1; _.attributedLabel = t2; _.attributedValue = t3; _.attributedIncreasedValue = t4; _.attributedDecreasedValue = t5; _.attributedHint = t6; _.textDirection = t7; _.textSelection = t8; _.scrollChildCount = t9; _.scrollIndex = t10; _.scrollPosition = t11; _.scrollExtentMax = t12; _.scrollExtentMin = t13; _.platformViewId = t14; _.maxValueLength = t15; _.currentValueLength = t16; _.rect = t17; _.tags = t18; _.transform = t19; _.elevation = t20; _.thickness = t21; _.customSemanticsActionIds = t22; }, _SemanticsDiagnosticableNode: function _SemanticsDiagnosticableNode(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.childOrder = t0; _.value = t1; _._cachedBuilder = null; _.name = t2; _.showSeparator = t3; _.showName = t4; _.linePrefix = t5; _.style = t6; }, SemanticsHintOverrides: function SemanticsHintOverrides(t0, t1) { this.onTapHint = t0; this.onLongPressHint = t1; }, SemanticsProperties: function SemanticsProperties(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55) { var _ = this; _.enabled = t0; _.checked = t1; _.toggled = t2; _.selected = t3; _.button = t4; _.link = t5; _.header = t6; _.textField = t7; _.slider = t8; _.keyboardKey = t9; _.readOnly = t10; _.focusable = t11; _.focused = t12; _.inMutuallyExclusiveGroup = t13; _.hidden = t14; _.obscured = t15; _.multiline = t16; _.scopesRoute = t17; _.namesRoute = t18; _.image = t19; _.liveRegion = t20; _.maxValueLength = t21; _.currentValueLength = t22; _.label = t23; _.attributedLabel = t24; _.value = t25; _.attributedValue = t26; _.increasedValue = t27; _.attributedIncreasedValue = t28; _.decreasedValue = t29; _.attributedDecreasedValue = t30; _.hint = t31; _.attributedHint = t32; _.hintOverrides = t33; _.textDirection = t34; _.sortKey = t35; _.tagForChildren = t36; _.onTap = t37; _.onLongPress = t38; _.onScrollLeft = t39; _.onScrollRight = t40; _.onScrollUp = t41; _.onScrollDown = t42; _.onIncrease = t43; _.onDecrease = t44; _.onCopy = t45; _.onCut = t46; _.onPaste = t47; _.onMoveCursorForwardByCharacter = t48; _.onMoveCursorBackwardByCharacter = t49; _.onSetSelection = t50; _.onSetText = t51; _.onDidGainAccessibilityFocus = t52; _.onDidLoseAccessibilityFocus = t53; _.onDismiss = t54; _.customSemanticsActions = t55; }, SemanticsNode: function SemanticsNode(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.key = t0; _._semantics$_id = t1; _._showOnScreen = t2; _._semantics$_transform = null; _._semantics$_rect = t3; _.indexInParent = _.elevationAdjustment = _.parentPaintClipRect = _.parentSemanticsClipRect = null; _._isMergedIntoParent = false; _._mergeAllDescendantsIntoThisNode = t4; _._semantics$_children = null; _.__SemanticsNode__debugPreviousSnapshot = $; _._semantics$_dirty = _._dead = false; _._actions = t5; _._semantics$_customSemanticsActions = t6; _._actionsAsBits = t7; _.tags = null; _._flags = t8; _._semantics$_attributedLabel = t9; _._semantics$_attributedValue = t10; _._semantics$_attributedIncreasedValue = t11; _._semantics$_attributedDecreasedValue = t12; _._semantics$_attributedHint = t13; _._semantics$_elevation = t14; _._semantics$_thickness = t15; _._semantics$_hintOverrides = null; _._semantics$_textDirection = t16; _._semantics$_currentValueLength = _._semantics$_maxValueLength = _._platformViewId = _._scrollExtentMin = _._scrollExtentMax = _._scrollPosition = _._scrollIndex = _._scrollChildCount = _._textSelection = _._semantics$_sortKey = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, SemanticsNode_getSemanticsData_closure: function SemanticsNode_getSemanticsData_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.customSemanticsActionIds = t2; }, SemanticsNode__childrenInTraversalOrder_closure: function SemanticsNode__childrenInTraversalOrder_closure() { }, SemanticsNode_debugDescribeChildren_closure: function SemanticsNode_debugDescribeChildren_closure(t0) { this.childOrder = t0; }, _BoxEdge: function _BoxEdge(t0, t1, t2) { this.isLeadingEdge = t0; this.offset = t1; this.node = t2; }, _SemanticsSortGroup: function _SemanticsSortGroup(t0, t1, t2) { this.startOffset = t0; this.textDirection = t1; this.nodes = t2; }, _SemanticsSortGroup_sortedWithinVerticalGroup_closure: function _SemanticsSortGroup_sortedWithinVerticalGroup_closure() { }, _SemanticsSortGroup_sortedWithinKnot_closure: function _SemanticsSortGroup_sortedWithinKnot_closure() { }, _SemanticsSortGroup_sortedWithinKnot_search: function _SemanticsSortGroup_sortedWithinKnot_search(t0, t1, t2) { this.visitedIds = t0; this.edges = t1; this.sortedIds = t2; }, _SemanticsSortGroup_sortedWithinKnot_closure0: function _SemanticsSortGroup_sortedWithinKnot_closure0() { }, _SemanticsSortGroup_sortedWithinKnot_closure1: function _SemanticsSortGroup_sortedWithinKnot_closure1(t0) { this.nodeMap = t0; }, _childrenInDefaultOrder_closure: function _childrenInDefaultOrder_closure() { }, _TraversalSortNode: function _TraversalSortNode(t0, t1, t2) { this.node = t0; this.sortKey = t1; this.position = t2; }, SemanticsOwner: function SemanticsOwner(t0, t1, t2, t3) { var _ = this; _._semantics$_dirtyNodes = t0; _._semantics$_nodes = t1; _._detachedNodes = t2; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, SemanticsOwner_sendSemanticsUpdate_closure: function SemanticsOwner_sendSemanticsUpdate_closure(t0) { this.$this = t0; }, SemanticsOwner_sendSemanticsUpdate_closure0: function SemanticsOwner_sendSemanticsUpdate_closure0() { }, SemanticsOwner_sendSemanticsUpdate_closure1: function SemanticsOwner_sendSemanticsUpdate_closure1() { }, SemanticsOwner__getSemanticsActionHandlerForId_closure: function SemanticsOwner__getSemanticsActionHandlerForId_closure(t0, t1) { this._box_0 = t0; this.action = t1; }, SemanticsConfiguration: function SemanticsConfiguration(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._hasBeenAnnotated = _.isBlockingSemanticsOfPreviouslyPaintedNodes = _.explicitChildNodes = _._isSemanticBoundary = false; _._actions = t0; _._actionsAsBits = 0; _._semantics$_currentValueLength = _._semantics$_maxValueLength = _._platformViewId = _._scrollIndex = _._scrollChildCount = _._indexInParent = _._semantics$_sortKey = _._semantics$_onTap = null; _._isMergingSemanticsOfDescendants = false; _._semantics$_customSemanticsActions = t1; _._semantics$_attributedLabel = t2; _._semantics$_attributedValue = t3; _._semantics$_attributedIncreasedValue = t4; _._semantics$_attributedDecreasedValue = t5; _._semantics$_attributedHint = t6; _._semantics$_hintOverrides = null; _._semantics$_thickness = _._semantics$_elevation = 0; _._tagsForChildren = _._scrollExtentMin = _._scrollExtentMax = _._scrollPosition = _._textSelection = _._semantics$_textDirection = null; _._flags = 0; }, SemanticsConfiguration__addArgumentlessAction_closure: function SemanticsConfiguration__addArgumentlessAction_closure(t0) { this.handler = t0; }, SemanticsConfiguration_onMoveCursorForwardByCharacter_closure: function SemanticsConfiguration_onMoveCursorForwardByCharacter_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure: function SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorForwardByWord_closure: function SemanticsConfiguration_onMoveCursorForwardByWord_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorBackwardByWord_closure: function SemanticsConfiguration_onMoveCursorBackwardByWord_closure(t0) { this.value = t0; }, SemanticsConfiguration_onSetSelection_closure: function SemanticsConfiguration_onSetSelection_closure(t0) { this.value = t0; }, SemanticsConfiguration_onSetText_closure: function SemanticsConfiguration_onSetText_closure(t0) { this.value = t0; }, DebugSemanticsDumpOrder: function DebugSemanticsDumpOrder(t0, t1) { this.index = t0; this._core$_name = t1; }, SemanticsSortKey: function SemanticsSortKey() { }, OrdinalSortKey: function OrdinalSortKey(t0, t1) { this.order = t0; this.name = t1; }, _SemanticsData_Object_Diagnosticable: function _SemanticsData_Object_Diagnosticable() { }, _SemanticsNode_AbstractNode_DiagnosticableTreeMixin: function _SemanticsNode_AbstractNode_DiagnosticableTreeMixin() { }, _SemanticsSortKey_Object_Diagnosticable: function _SemanticsSortKey_Object_Diagnosticable() { }, SemanticsEvent: function SemanticsEvent() { }, AnnounceSemanticsEvent: function AnnounceSemanticsEvent(t0, t1, t2) { this.message = t0; this.textDirection = t1; this.type = t2; }, TooltipSemanticsEvent: function TooltipSemanticsEvent(t0, t1) { this.message = t0; this.type = t1; }, LongPressSemanticsEvent: function LongPressSemanticsEvent(t0) { this.type = t0; }, TapSemanticEvent: function TapSemanticEvent(t0) { this.type = t0; }, AssetBundle__utf8decode(data) { return B.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(data))); }, AssetBundle: function AssetBundle() { }, CachingAssetBundle: function CachingAssetBundle() { }, CachingAssetBundle_loadStructuredData_closure: function CachingAssetBundle_loadStructuredData_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.key = t2; _.T = t3; }, PlatformAssetBundle: function PlatformAssetBundle(t0, t1) { this._stringCache = t0; this._structuredDataCache = t1; }, AutofillConfiguration: function AutofillConfiguration(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.uniqueIdentifier = t1; _.autofillHints = t2; _.currentEditingValue = t3; _.hintText = t4; }, _AutofillScopeTextInputConfiguration: function _AutofillScopeTextInputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.allConfigurations = t0; _.inputType = t1; _.readOnly = t2; _.obscureText = t3; _.autocorrect = t4; _.autofillConfiguration = t5; _.smartDashesType = t6; _.smartQuotesType = t7; _.enableSuggestions = t8; _.enableInteractiveSelection = t9; _.actionLabel = t10; _.inputAction = t11; _.textCapitalization = t12; _.keyboardAppearance = t13; _.enableIMEPersonalizedLearning = t14; _.enableDeltaModel = t15; }, _AutofillScopeTextInputConfiguration_toJson_closure: function _AutofillScopeTextInputConfiguration_toJson_closure() { }, AutofillScopeMixin: function AutofillScopeMixin() { }, AutofillScopeMixin_attach_closure: function AutofillScopeMixin_attach_closure() { }, BinaryMessenger: function BinaryMessenger() { }, ServicesBinding__parseLicenses(rawLicenses) { var t2, _i, license, t3, split, t1 = B.JSString_methods.$mul("-", 80), result = A._setArrayType([], type$.JSArray_LicenseEntry), licenses = rawLicenses.split("\n" + t1 + "\n"); for (t1 = licenses.length, t2 = type$.JSArray_String, _i = 0; _i < t1; ++_i) { license = licenses[_i]; t3 = J.getInterceptor$asx(license); split = t3.indexOf$1(license, "\n\n"); if (split >= 0) result.push(new A.LicenseEntryWithLineBreaks(A._setArrayType(t3.substring$2(license, 0, split).split("\n"), t2), t3.substring$1(license, split + 2))); else result.push(new A.LicenseEntryWithLineBreaks(B.List_empty0, license)); } return result; }, ServicesBinding__parseAppLifecycleMessage(message) { switch (message) { case "AppLifecycleState.paused": return B.AppLifecycleState_2; case "AppLifecycleState.resumed": return B.AppLifecycleState_0; case "AppLifecycleState.inactive": return B.AppLifecycleState_1; case "AppLifecycleState.detached": return B.AppLifecycleState_3; } return null; }, ServicesBinding: function ServicesBinding() { }, ServicesBinding__addLicenses_closure: function ServicesBinding__addLicenses_closure(t0) { this.controller = t0; }, _DefaultBinaryMessenger: function _DefaultBinaryMessenger() { }, _DefaultBinaryMessenger_send_closure: function _DefaultBinaryMessenger_send_closure(t0) { this.completer = t0; }, _DefaultBinaryMessenger_setMessageHandler_closure: function _DefaultBinaryMessenger_setMessageHandler_closure(t0) { this.handler = t0; }, Clipboard_setData(data) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$Clipboard_setData = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("Clipboard.setData", A.LinkedHashMap_LinkedHashMap$_literal(["text", data.text], type$.String, type$.dynamic), type$.void), $async$Clipboard_setData); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$Clipboard_setData, $async$completer); }, Clipboard_getData(format) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_ClipboardData), $async$returnValue, result; var $async$Clipboard_getData = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("Clipboard.getData", format, type$.Map_String_dynamic), $async$Clipboard_getData); case 3: // returning from await. result = $async$result; if (result == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$returnValue = new A.ClipboardData(A._asStringQ(J.$index$asx(result, "text"))); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$Clipboard_getData, $async$completer); }, ClipboardData: function ClipboardData(t0) { this.text = t0; }, KeyEventManager__eventFromData(keyData) { var logicalKey, timeStamp, t1 = keyData.physical, physicalKey = B.Map_Q5S3m.$index(0, t1); if (physicalKey == null) physicalKey = new A.PhysicalKeyboardKey(t1); t1 = keyData.logical; logicalKey = B.Map_mUsBb.$index(0, t1); if (logicalKey == null) logicalKey = new A.LogicalKeyboardKey(t1); timeStamp = keyData.timeStamp; switch (keyData.type.index) { case 0: return new A.KeyDownEvent(physicalKey, logicalKey, keyData.character, timeStamp, keyData.synthesized); case 1: return new A.KeyUpEvent(physicalKey, logicalKey, null, timeStamp, keyData.synthesized); case 2: return new A.KeyRepeatEvent(physicalKey, logicalKey, keyData.character, timeStamp, false); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, KeyboardLockMode: function KeyboardLockMode(t0) { this.logicalKey = t0; }, KeyEvent: function KeyEvent() { }, KeyDownEvent: function KeyDownEvent(t0, t1, t2, t3, t4) { var _ = this; _.physicalKey = t0; _.logicalKey = t1; _.character = t2; _.timeStamp = t3; _.synthesized = t4; }, KeyUpEvent: function KeyUpEvent(t0, t1, t2, t3, t4) { var _ = this; _.physicalKey = t0; _.logicalKey = t1; _.character = t2; _.timeStamp = t3; _.synthesized = t4; }, KeyRepeatEvent: function KeyRepeatEvent(t0, t1, t2, t3, t4) { var _ = this; _.physicalKey = t0; _.logicalKey = t1; _.character = t2; _.timeStamp = t3; _.synthesized = t4; }, HardwareKeyboard: function HardwareKeyboard(t0, t1, t2) { var _ = this; _._pressedKeys = t0; _._lockModes = t1; _._handlers = t2; _._duringDispatch = false; _._modifiedHandlers = null; }, KeyDataTransitMode: function KeyDataTransitMode(t0, t1) { this.index = t0; this._core$_name = t1; }, KeyMessage: function KeyMessage(t0, t1) { this.events = t0; this.rawEvent = t1; }, KeyEventManager: function KeyEventManager(t0, t1, t2) { var _ = this; _.keyMessageHandler = null; _._hardwareKeyboard = t0; _._rawKeyboard = t1; _._transitMode = null; _._keyEventsSinceLastMessage = t2; }, _KeyEvent_Object_Diagnosticable: function _KeyEvent_Object_Diagnosticable() { }, LogicalKeyboardKey_isControlCharacter(label) { var codeUnit, t1; if (label.length !== 1) return false; codeUnit = B.JSString_methods._codeUnitAt$1(label, 0); if (!(codeUnit <= 31 && true)) t1 = codeUnit >= 127 && codeUnit <= 159; else t1 = true; return t1; }, LogicalKeyboardKey_collapseSynonyms(input) { var t1, t2, synonym, result = A.LinkedHashSet_LinkedHashSet$_empty(type$.LogicalKeyboardKey); for (t1 = input.get$iterator(input); t1.moveNext$0();) { t2 = t1.get$current(t1); synonym = $.$get$LogicalKeyboardKey__synonyms().$index(0, t2); result.add$1(0, synonym == null ? t2 : synonym); } return result; }, KeyboardKey: function KeyboardKey() { }, LogicalKeyboardKey: function LogicalKeyboardKey(t0) { this.keyId = t0; }, PhysicalKeyboardKey: function PhysicalKeyboardKey(t0) { this.usbHidUsage = t0; }, _KeyboardKey_Object_Diagnosticable: function _KeyboardKey_Object_Diagnosticable() { }, PlatformException$(code, details, message, stacktrace) { return new A.PlatformException(code, message, details, stacktrace); }, MissingPluginException$(message) { return new A.MissingPluginException(message); }, MethodCall0: function MethodCall0(t0, t1) { this.method = t0; this.$arguments = t1; }, PlatformException: function PlatformException(t0, t1, t2, t3) { var _ = this; _.code = t0; _.message = t1; _.details = t2; _.stacktrace = t3; }, MissingPluginException: function MissingPluginException(t0) { this.message = t0; }, StringCodec: function StringCodec() { }, JSONMessageCodec0: function JSONMessageCodec0() { }, JSONMethodCodec0: function JSONMethodCodec0() { }, StandardMessageCodec0: function StandardMessageCodec0() { }, StandardMessageCodec_writeValue_closure: function StandardMessageCodec_writeValue_closure(t0, t1) { this.$this = t0; this.buffer = t1; }, StandardMethodCodec0: function StandardMethodCodec0() { }, _DeferringMouseCursor_firstNonDeferred(cursors) { var t1, t2; for (t1 = A._instanceType(cursors), t1 = new A.MappedIterator(J.get$iterator$ax(cursors.__internal$_iterable), cursors._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (!J.$eq$(t2, B.C__DeferringMouseCursor)) return t2; } return null; }, MouseCursorManager: function MouseCursorManager(t0, t1) { this.fallbackMouseCursor = t0; this._lastSession = t1; }, MouseCursorSession: function MouseCursorSession() { }, MouseCursor0: function MouseCursor0() { }, _DeferringMouseCursor: function _DeferringMouseCursor() { }, _NoopMouseCursorSession: function _NoopMouseCursorSession(t0, t1) { this.cursor = t0; this.device = t1; }, _NoopMouseCursor: function _NoopMouseCursor() { }, _SystemMouseCursorSession: function _SystemMouseCursorSession(t0, t1) { this.cursor = t0; this.device = t1; }, SystemMouseCursor: function SystemMouseCursor(t0) { this.kind = t0; }, _MouseCursor_Object_Diagnosticable: function _MouseCursor_Object_Diagnosticable() { }, MethodChannel$($name, codec, binaryMessenger) { return new A.MethodChannel($name, codec, binaryMessenger); }, BasicMessageChannel: function BasicMessageChannel(t0, t1, t2, t3) { var _ = this; _.name = t0; _.codec = t1; _._binaryMessenger = t2; _.$ti = t3; }, BasicMessageChannel_setMessageHandler_closure: function BasicMessageChannel_setMessageHandler_closure(t0, t1) { this.$this = t0; this.handler = t1; }, MethodChannel: function MethodChannel(t0, t1, t2) { this.name = t0; this.codec = t1; this._binaryMessenger = t2; }, MethodChannel_setMethodCallHandler_closure: function MethodChannel_setMethodCallHandler_closure(t0, t1) { this.$this = t0; this.handler = t1; }, OptionalMethodChannel: function OptionalMethodChannel(t0, t1, t2) { this.name = t0; this.codec = t1; this._binaryMessenger = t2; }, PlatformViewsRegistry: function PlatformViewsRegistry() { this._nextPlatformViewId = 0; }, PlatformViewController: function PlatformViewController() { }, RawKeyEvent_RawKeyEvent$fromMessage(message) { var data, t1, t2, repeat, _box_0 = {}; _box_0.character = null; data = new A.RawKeyEvent_RawKeyEvent$fromMessage__dataFromWeb(_box_0, message).call$0(); t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); repeat = A.LinkedHashSet_LinkedHashSet$of(new A.LinkedHashMapKeyIterable(t1, t2), t2._eval$1("Iterable.E")).contains$1(0, data.get$physicalKey()); t2 = J.$index$asx(message, "type"); t2.toString; A._asStringS(t2); switch (t2) { case "keydown": return new A.RawKeyDownEvent(_box_0.character, repeat, data); case "keyup": return new A.RawKeyUpEvent(null, false, data); default: throw A.wrapException(A.FlutterError_FlutterError("Unknown key event type: " + t2)); } }, KeyboardSide: function KeyboardSide(t0, t1) { this.index = t0; this._core$_name = t1; }, ModifierKey: function ModifierKey(t0, t1) { this.index = t0; this._core$_name = t1; }, RawKeyEventData: function RawKeyEventData() { }, RawKeyEvent: function RawKeyEvent() { }, RawKeyEvent_RawKeyEvent$fromMessage__dataFromWeb: function RawKeyEvent_RawKeyEvent$fromMessage__dataFromWeb(t0, t1) { this._box_0 = t0; this.message = t1; }, RawKeyDownEvent: function RawKeyDownEvent(t0, t1, t2) { this.character = t0; this.repeat = t1; this.data = t2; }, RawKeyUpEvent: function RawKeyUpEvent(t0, t1, t2) { this.character = t0; this.repeat = t1; this.data = t2; }, RawKeyboard: function RawKeyboard(t0, t1, t2) { this._raw_keyboard$_listeners = t0; this._keysPressed = t1; this._hiddenKeysPressed = t2; }, RawKeyboard__synchronizeModifiers_closure: function RawKeyboard__synchronizeModifiers_closure(t0) { this.anySideKeys = t0; }, _ModifierSidePair: function _ModifierSidePair(t0, t1) { this.modifier = t0; this.side = t1; }, _RawKeyEvent_Object_Diagnosticable: function _RawKeyEvent_Object_Diagnosticable() { }, _RawKeyEventData_Object_Diagnosticable: function _RawKeyEventData_Object_Diagnosticable() { }, RawKeyEventDataFuchsia: function RawKeyEventDataFuchsia() { }, RawKeyEventDataLinux: function RawKeyEventDataLinux() { }, RawKeyEventDataMacOs: function RawKeyEventDataMacOs() { }, RawKeyEventDataWeb: function RawKeyEventDataWeb(t0, t1, t2, t3, t4) { var _ = this; _.code = t0; _.key = t1; _.location = t2; _.metaState = t3; _.keyCode = t4; }, RestorationManager: function RestorationManager(t0, t1) { var _ = this; _._pendingRootBucket = _._restoration$_rootBucket = null; _._serializationScheduled = _._debugDoingUpdate = _._isReplacing = _._rootBucketIsValid = false; _._bucketsNeedingSerialization = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RestorationManager_handleRestorationUpdateFromEngine_closure: function RestorationManager_handleRestorationUpdateFromEngine_closure(t0) { this.$this = t0; }, RestorationManager_scheduleSerializationFor_closure: function RestorationManager_scheduleSerializationFor_closure(t0) { this.$this = t0; }, RestorationBucket: function RestorationBucket(t0, t1, t2, t3, t4, t5) { var _ = this; _._rawData = t0; _._debugOwner = null; _._restoration$_manager = t1; _._restoration$_parent = t2; _._restorationId = t3; _._claimedChildren = t4; _._childrenToAdd = t5; _._debugDisposed = _._needsSerialization = false; }, RestorationBucket__rawChildren_closure: function RestorationBucket__rawChildren_closure() { }, RestorationBucket__rawValues_closure: function RestorationBucket__rawValues_closure() { }, RestorationBucket__addChildData_closure: function RestorationBucket__addChildData_closure() { }, RestorationBucket__visitChildren_closure: function RestorationBucket__visitChildren_closure() { }, SystemChrome_setApplicationSwitcherDescription(description) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$SystemChrome_setApplicationSwitcherDescription = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2(string$.System, A.LinkedHashMap_LinkedHashMap$_literal(["label", description.label, "primaryColor", description.primaryColor], type$.String, type$.dynamic), type$.void), $async$SystemChrome_setApplicationSwitcherDescription); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$SystemChrome_setApplicationSwitcherDescription, $async$completer); }, SystemChrome_setSystemUIOverlayStyle(style) { if ($.SystemChrome__pendingStyle != null) { $.SystemChrome__pendingStyle = style; return; } if (style.$eq(0, $.SystemChrome__latestStyle)) return; $.SystemChrome__pendingStyle = style; A.scheduleMicrotask(new A.SystemChrome_setSystemUIOverlayStyle_closure()); }, ApplicationSwitcherDescription: function ApplicationSwitcherDescription(t0, t1) { this.label = t0; this.primaryColor = t1; }, SystemUiOverlayStyle: function SystemUiOverlayStyle(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.systemNavigationBarColor = t0; _.systemNavigationBarDividerColor = t1; _.systemNavigationBarIconBrightness = t2; _.systemNavigationBarContrastEnforced = t3; _.statusBarColor = t4; _.statusBarBrightness = t5; _.statusBarIconBrightness = t6; _.systemStatusBarContrastEnforced = t7; }, SystemChrome_setSystemUIOverlayStyle_closure: function SystemChrome_setSystemUIOverlayStyle_closure() { }, SystemSound_play(type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$SystemSound_play = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("SystemSound.play", "SystemSoundType." + type._core$_name, type$.void), $async$SystemSound_play); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$SystemSound_play, $async$completer); }, SystemSoundType: function SystemSoundType(t0, t1) { this.index = t0; this._core$_name = t1; }, TextSelection$(affinity, baseOffset, extentOffset, isDirectional) { var t1 = baseOffset < extentOffset, t2 = t1 ? baseOffset : extentOffset; return new A.TextSelection(baseOffset, extentOffset, affinity, isDirectional, t2, t1 ? extentOffset : baseOffset); }, TextSelection$collapsed(affinity, offset) { return new A.TextSelection(offset, offset, affinity, false, offset, offset); }, TextSelection$fromPosition(position) { var t1 = position.offset; return new A.TextSelection(t1, t1, position.affinity, false, t1, t1); }, TextSelection: function TextSelection(t0, t1, t2, t3, t4, t5) { var _ = this; _.baseOffset = t0; _.extentOffset = t1; _.affinity = t2; _.isDirectional = t3; _.start = t4; _.end = t5; }, _toTextAffinity(affinity) { switch (affinity) { case "TextAffinity.downstream": return B.TextAffinity_1; case "TextAffinity.upstream": return B.TextAffinity_0; } return null; }, TextEditingDelta_TextEditingDelta$fromJSON(encoded) { var t3, newComposing, t4, newSelection, textStart, textEnd, isDeletionGreaterThanOne, isDeletingByReplacingWithEmpty, isReplacedByShorter, isReplacedBySame, isInsertingInsideComposingRegion, isDeletingInsideComposingRegion, t5, newComposingText, originalComposingText, isReplaced, t1 = J.getInterceptor$asx(encoded), oldText = A._asStringS(t1.$index(encoded, "oldText")), replacementDestinationStart = A._asIntS(t1.$index(encoded, "deltaStart")), replacementDestinationEnd = A._asIntS(t1.$index(encoded, "deltaEnd")), replacementSource = A._asStringS(t1.$index(encoded, "deltaText")), replacementSourceEnd = replacementSource.length, isNonTextUpdate = replacementDestinationStart === -1 && replacementDestinationStart == replacementDestinationEnd, t2 = A._asIntQ(t1.$index(encoded, "composingBase")); if (t2 == null) t2 = -1; t3 = A._asIntQ(t1.$index(encoded, "composingExtent")); newComposing = new A.TextRange(t2, t3 == null ? -1 : t3); t2 = A._asIntQ(t1.$index(encoded, "selectionBase")); if (t2 == null) t2 = -1; t3 = A._asIntQ(t1.$index(encoded, "selectionExtent")); if (t3 == null) t3 = -1; t4 = A._toTextAffinity(A._asStringQ(t1.$index(encoded, "selectionAffinity"))); if (t4 == null) t4 = B.TextAffinity_1; t1 = A._asBoolQ(t1.$index(encoded, "selectionIsDirectional")); newSelection = A.TextSelection$(t4, t2, t3, t1 === true); if (isNonTextUpdate) return new A.TextEditingDeltaNonTextUpdate(oldText, newSelection, newComposing); textStart = J.substring$2$s(oldText, 0, replacementDestinationStart); textEnd = B.JSString_methods.substring$2(oldText, replacementDestinationEnd, oldText.length); t1 = replacementDestinationEnd - replacementDestinationStart; t2 = replacementSourceEnd - 0; isDeletionGreaterThanOne = t1 - t2 > 1; if (replacementSourceEnd === 0) isDeletingByReplacingWithEmpty = 0 === replacementSourceEnd; else isDeletingByReplacingWithEmpty = false; isReplacedByShorter = isDeletionGreaterThanOne && t2 < t1; isReplacedBySame = t2 === t1; t3 = replacementDestinationStart + replacementSourceEnd; isInsertingInsideComposingRegion = t3 > replacementDestinationEnd; t4 = !isReplacedByShorter; isDeletingInsideComposingRegion = t4 && !isDeletingByReplacingWithEmpty && t3 < replacementDestinationEnd; t5 = !isDeletingByReplacingWithEmpty; if (!t5 || isDeletingInsideComposingRegion || isReplacedByShorter) { newComposingText = B.JSString_methods.substring$2(replacementSource, 0, replacementSourceEnd); originalComposingText = B.JSString_methods.substring$2(oldText, replacementDestinationStart, t3); } else { newComposingText = B.JSString_methods.substring$2(replacementSource, 0, t1); originalComposingText = B.JSString_methods.substring$2(oldText, replacementDestinationStart, replacementDestinationEnd); } t3 = originalComposingText === newComposingText; isReplaced = !t3 || t2 > t1 || !t4 || isReplacedBySame; if (oldText === textStart + replacementSource + textEnd) return new A.TextEditingDeltaNonTextUpdate(oldText, newSelection, newComposing); else if ((!t5 || isDeletingInsideComposingRegion) && t3) return new A.TextEditingDeltaDeletion(new A.TextRange(!isDeletionGreaterThanOne ? replacementDestinationEnd - 1 : replacementDestinationStart, replacementDestinationEnd), oldText, newSelection, newComposing); else if ((replacementDestinationStart === replacementDestinationEnd || isInsertingInsideComposingRegion) && t3) return new A.TextEditingDeltaInsertion(B.JSString_methods.substring$2(replacementSource, t1, t1 + (replacementSourceEnd - t1)), replacementDestinationEnd, oldText, newSelection, newComposing); else if (isReplaced) return new A.TextEditingDeltaReplacement(replacementSource, new A.TextRange(replacementDestinationStart, replacementDestinationEnd), oldText, newSelection, newComposing); return new A.TextEditingDeltaNonTextUpdate(oldText, newSelection, newComposing); }, TextEditingDelta: function TextEditingDelta() { }, TextEditingDeltaInsertion: function TextEditingDeltaInsertion(t0, t1, t2, t3, t4) { var _ = this; _.textInserted = t0; _.insertionOffset = t1; _.oldText = t2; _.selection = t3; _.composing = t4; }, TextEditingDeltaDeletion: function TextEditingDeltaDeletion(t0, t1, t2, t3) { var _ = this; _.deletedRange = t0; _.oldText = t1; _.selection = t2; _.composing = t3; }, TextEditingDeltaReplacement: function TextEditingDeltaReplacement(t0, t1, t2, t3, t4) { var _ = this; _.replacementText = t0; _.replacedRange = t1; _.oldText = t2; _.selection = t3; _.composing = t4; }, TextEditingDeltaNonTextUpdate: function TextEditingDeltaNonTextUpdate(t0, t1, t2) { this.oldText = t0; this.selection = t1; this.composing = t2; }, LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement(platform) { return B.MaxLengthEnforcement_2; }, LengthLimitingTextInputFormatter_truncate(value, maxLength) { var truncated, t2, t3, t4, t1 = value.text, iterator = new A.StringCharacterRange(t1, 0, 0); t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); if (t1.get$length(t1) > maxLength) iterator._advanceEnd$2(maxLength, 0); truncated = iterator.get$current(iterator); t1 = value.selection; t2 = truncated.length; t1 = t1.copyWith$2$baseOffset$extentOffset(Math.min(A.checkNum(t1.start), t2), Math.min(A.checkNum(t1.end), t2)); t3 = value.composing; t4 = t3.start; t3 = t3.end; return new A.TextEditingValue(truncated, t1, t4 != t3 && t2 > t4 ? new A.TextRange(t4, Math.min(A.checkNum(t3), t2)) : B.TextRange_m1_m1); }, MaxLengthEnforcement: function MaxLengthEnforcement(t0, t1) { this.index = t0; this._core$_name = t1; }, TextInputFormatter: function TextInputFormatter() { }, _MutableTextRange: function _MutableTextRange(t0, t1) { this.base = t0; this.extent = t1; }, _TextEditingValueAccumulator: function _TextEditingValueAccumulator(t0, t1, t2, t3) { var _ = this; _.inputValue = t0; _.stringBuffer = t1; _.selection = t2; _.composingRegion = t3; _.debugFinalized = false; }, FilteringTextInputFormatter: function FilteringTextInputFormatter(t0, t1, t2) { this.filterPattern = t0; this.allow = t1; this.replacementString = t2; }, FilteringTextInputFormatter__processRegion_adjustIndex: function FilteringTextInputFormatter__processRegion_adjustIndex(t0, t1, t2) { this.regionStart = t0; this.regionEnd = t1; this.replacementString = t2; }, LengthLimitingTextInputFormatter: function LengthLimitingTextInputFormatter(t0, t1) { this.maxLength = t0; this.maxLengthEnforcement = t1; }, TextInputConfiguration$(actionLabel, autocorrect, autofillConfiguration, enableDeltaModel, enableIMEPersonalizedLearning, enableInteractiveSelection, enableSuggestions, inputAction, inputType, keyboardAppearance, obscureText, readOnly, smartDashesType, smartQuotesType, textCapitalization) { var t1, t2; if (smartDashesType == null) t1 = obscureText ? B.SmartDashesType_0 : B.SmartDashesType_1; else t1 = smartDashesType; if (smartQuotesType == null) t2 = obscureText ? B.SmartQuotesType_0 : B.SmartQuotesType_1; else t2 = smartQuotesType; return new A.TextInputConfiguration(inputType, readOnly, obscureText, autocorrect, autofillConfiguration, t1, t2, true, enableInteractiveSelection, actionLabel, inputAction, textCapitalization, keyboardAppearance, true, enableDeltaModel); }, _toTextAffinity0(affinity) { switch (affinity) { case "TextAffinity.downstream": return B.TextAffinity_1; case "TextAffinity.upstream": return B.TextAffinity_0; } return null; }, TextEditingValue_TextEditingValue$fromJSON(encoded) { var t4, t5, t6, t1 = J.getInterceptor$asx(encoded), t2 = A._asStringS(t1.$index(encoded, "text")), t3 = A._asIntQ(t1.$index(encoded, "selectionBase")); if (t3 == null) t3 = -1; t4 = A._asIntQ(t1.$index(encoded, "selectionExtent")); if (t4 == null) t4 = -1; t5 = A._toTextAffinity0(A._asStringQ(t1.$index(encoded, "selectionAffinity"))); if (t5 == null) t5 = B.TextAffinity_1; t6 = A._asBoolQ(t1.$index(encoded, "selectionIsDirectional")); t3 = A.TextSelection$(t5, t3, t4, t6 === true); t4 = A._asIntQ(t1.$index(encoded, "composingBase")); if (t4 == null) t4 = -1; t1 = A._asIntQ(t1.$index(encoded, "composingExtent")); return new A.TextEditingValue(t2, t3, new A.TextRange(t4, t1 == null ? -1 : t1)); }, TextInputConnection$_(_client) { var t1 = A._setArrayType([], type$.JSArray_SelectionRect), t2 = $.TextInputConnection__nextId; $.TextInputConnection__nextId = t2 + 1; return new A.TextInputConnection(t1, t2, _client); }, _toTextInputAction(action) { switch (action) { case "TextInputAction.none": return B.TextInputAction_0; case "TextInputAction.unspecified": return B.TextInputAction_1; case "TextInputAction.go": return B.TextInputAction_3; case "TextInputAction.search": return B.TextInputAction_4; case "TextInputAction.send": return B.TextInputAction_5; case "TextInputAction.next": return B.TextInputAction_6; case "TextInputAction.previous": return B.TextInputAction_7; case "TextInputAction.continue_action": return B.TextInputAction_8; case "TextInputAction.join": return B.TextInputAction_9; case "TextInputAction.route": return B.TextInputAction_10; case "TextInputAction.emergencyCall": return B.TextInputAction_11; case "TextInputAction.done": return B.TextInputAction_2; case "TextInputAction.newline": return B.TextInputAction_12; } throw A.wrapException(A.FlutterError$fromParts(A._setArrayType([A.ErrorSummary$("Unknown text input action: " + A.S(action))], type$.JSArray_DiagnosticsNode))); }, _toTextCursorAction(state) { switch (state) { case "FloatingCursorDragState.start": return B.FloatingCursorDragState_0; case "FloatingCursorDragState.update": return B.FloatingCursorDragState_1; case "FloatingCursorDragState.end": return B.FloatingCursorDragState_2; } throw A.wrapException(A.FlutterError$fromParts(A._setArrayType([A.ErrorSummary$("Unknown text cursor action: " + A.S(state))], type$.JSArray_DiagnosticsNode))); }, SmartDashesType: function SmartDashesType(t0, t1) { this.index = t0; this._core$_name = t1; }, SmartQuotesType: function SmartQuotesType(t0, t1) { this.index = t0; this._core$_name = t1; }, TextInputType: function TextInputType(t0, t1, t2) { this.index = t0; this.signed = t1; this.decimal = t2; }, TextInputAction: function TextInputAction(t0, t1) { this.index = t0; this._core$_name = t1; }, TextCapitalization0: function TextCapitalization0(t0, t1) { this.index = t0; this._core$_name = t1; }, TextInputConfiguration: function TextInputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.inputType = t0; _.readOnly = t1; _.obscureText = t2; _.autocorrect = t3; _.autofillConfiguration = t4; _.smartDashesType = t5; _.smartQuotesType = t6; _.enableSuggestions = t7; _.enableInteractiveSelection = t8; _.actionLabel = t9; _.inputAction = t10; _.textCapitalization = t11; _.keyboardAppearance = t12; _.enableIMEPersonalizedLearning = t13; _.enableDeltaModel = t14; }, FloatingCursorDragState: function FloatingCursorDragState(t0, t1) { this.index = t0; this._core$_name = t1; }, RawFloatingCursorPoint: function RawFloatingCursorPoint(t0, t1) { this.offset = t0; this.state = t1; }, TextEditingValue: function TextEditingValue(t0, t1, t2) { this.text = t0; this.selection = t1; this.composing = t2; }, TextEditingValue_replaced_adjustIndex: function TextEditingValue_replaced_adjustIndex(t0, t1) { this.replacementRange = t0; this.replacementString = t1; }, SelectionChangedCause: function SelectionChangedCause(t0, t1) { this.index = t0; this._core$_name = t1; }, TextSelectionDelegate: function TextSelectionDelegate() { }, SelectionRect: function SelectionRect(t0, t1) { this.position = t0; this.bounds = t1; }, TextInputConnection: function TextInputConnection(t0, t1, t2) { var _ = this; _._cachedCaretRect = _._cachedRect = _._cachedTransform = _._cachedSize = null; _._cachedSelectionRects = t0; _._text_input$_id = t1; _._text_input$_client = t2; }, TextInputConnection_setSelectionRects_closure: function TextInputConnection_setSelectionRects_closure() { }, TextInput: function TextInput(t0) { var _ = this; _.__TextInput__channel = $; _._currentConnection = null; _.__TextInput__currentConfiguration = $; _._scribbleClients = t0; _._hidePending = _._scribbleInProgress = false; }, TextInput__handleTextInputInvocation_closure: function TextInput__handleTextInputInvocation_closure() { }, TextInput__handleTextInputInvocation_closure0: function TextInput__handleTextInputInvocation_closure0(t0, t1) { this.$this = t0; this.args = t1; }, TextInput__handleTextInputInvocation_closure1: function TextInput__handleTextInputInvocation_closure1(t0) { this.$this = t0; }, TextInput__scheduleHide_closure: function TextInput__scheduleHide_closure(t0) { this.$this = t0; }, _getParent(context) { var $parent = A._Cell$named("parent"); context.visitAncestorElements$1(new A._getParent_closure($parent)); return $parent._readLocal$0(); }, Actions$(actions, child) { return new A.Actions(actions, child, null); }, Actions__visitActionsAncestors(context, visitor) { var t2, ancestor, t1 = type$._ActionsMarker, actionsElement = context.getElementForInheritedWidgetOfExactType$1$0(t1); for (; t2 = actionsElement != null, t2; actionsElement = ancestor) { if (J.$eq$(visitor.call$1(actionsElement), true)) break; t2 = A._getParent(actionsElement)._inheritedWidgets; ancestor = t2 == null ? null : t2.$index(0, A.createRuntimeType(t1)); } return t2; }, Actions__findDispatcher(context) { var t1 = {}; t1.dispatcher = null; A.Actions__visitActionsAncestors(context, new A.Actions__findDispatcher_closure(t1)); return B.C_ActionDispatcher; }, Actions_maybeFind(context, intent, $T) { var t1 = {}; t1.action = null; if ((intent == null ? null : A.getRuntimeType(intent)) == null) A.createRuntimeType($T); A.Actions__visitActionsAncestors(context, new A.Actions_maybeFind_closure(t1, intent, context, $T)); return t1.action; }, Actions__maybeFindWithoutDependingOn(context, $T) { var t1 = {}; t1.action = null; A.createRuntimeType($T); A.Actions__visitActionsAncestors(context, new A.Actions__maybeFindWithoutDependingOn_closure(t1, null, $T)); return t1.action; }, Actions__castAction(actionsMarker, intent, $T) { var t1 = actionsMarker.actions, t2 = intent == null ? null : A.getRuntimeType(intent), mappedAction = t1.$index(0, t2 == null ? A.createRuntimeType($T) : t2); if ($T._eval$1("Action<0>?")._is(mappedAction)) return mappedAction; else return null; }, Actions_invoke(context, intent, $T) { var t1 = {}; t1.returnValue = null; A.Actions__visitActionsAncestors(context, new A.Actions_invoke_closure(t1, intent, context, $T)); return t1.returnValue; }, FocusableActionDetector$(actions, autofocus, child, enabled, focusNode, mouseCursor, onFocusChange, onShowFocusHighlight, onShowHoverHighlight, shortcuts) { return new A.FocusableActionDetector(enabled, focusNode, false, actions, shortcuts, onShowFocusHighlight, onShowHoverHighlight, onFocusChange, mouseCursor, child, null); }, DoNothingAction$(consumesKey) { return new A.DoNothingAction(consumesKey, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent)); }, _OverridableAction$(defaultAction, lookupContext, $T) { return new A._OverridableAction(defaultAction, lookupContext, false, false, false, false, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), $T._eval$1("_OverridableAction<0>")); }, _OverridableContextAction$(defaultAction, lookupContext, $T) { return new A._OverridableContextAction(defaultAction, lookupContext, false, false, false, false, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), $T._eval$1("_OverridableContextAction<0>")); }, _getParent_closure: function _getParent_closure(t0) { this.parent = t0; }, Intent: function Intent() { }, Action: function Action() { }, ContextAction: function ContextAction() { }, CallbackAction: function CallbackAction(t0, t1, t2) { var _ = this; _.onInvoke = t0; _._actions$_listeners = t1; _._currentCallingAction = null; _.$ti = t2; }, ActionDispatcher: function ActionDispatcher() { }, Actions: function Actions(t0, t1, t2) { this.actions = t0; this.child = t1; this.key = t2; }, Actions__findDispatcher_closure: function Actions__findDispatcher_closure(t0) { this._box_0 = t0; }, Actions_maybeFind_closure: function Actions_maybeFind_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.intent = t1; _.context = t2; _.T = t3; }, Actions__maybeFindWithoutDependingOn_closure: function Actions__maybeFindWithoutDependingOn_closure(t0, t1, t2) { this._box_0 = t0; this.intent = t1; this.T = t2; }, Actions_invoke_closure: function Actions_invoke_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.intent = t1; _.context = t2; _.T = t3; }, _ActionsState: function _ActionsState(t0, t1, t2) { var _ = this; _.listenedActions = t0; _.rebuildKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ActionsState__handleActionChanged_closure: function _ActionsState__handleActionChanged_closure(t0) { this.$this = t0; }, _ActionsMarker: function _ActionsMarker(t0, t1, t2, t3, t4) { var _ = this; _.dispatcher = t0; _.actions = t1; _.rebuildKey = t2; _.child = t3; _.key = t4; }, FocusableActionDetector: function FocusableActionDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.enabled = t0; _.focusNode = t1; _.autofocus = t2; _.actions = t3; _.shortcuts = t4; _.onShowFocusHighlight = t5; _.onShowHoverHighlight = t6; _.onFocusChange = t7; _.mouseCursor = t8; _.child = t9; _.key = t10; }, _FocusableActionDetectorState: function _FocusableActionDetectorState(t0, t1) { var _ = this; _._actions$_focused = _._actions$_hovering = _._canShowHighlight = false; _._mouseRegionKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FocusableActionDetectorState_initState_closure: function _FocusableActionDetectorState_initState_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__updateHighlightMode_closure: function _FocusableActionDetectorState__updateHighlightMode_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleMouseEnter_closure: function _FocusableActionDetectorState__handleMouseEnter_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleMouseExit_closure: function _FocusableActionDetectorState__handleMouseExit_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleFocusChange_closure: function _FocusableActionDetectorState__handleFocusChange_closure(t0, t1) { this.$this = t0; this.focused = t1; }, _FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight: function _FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight(t0) { this.$this = t0; }, _FocusableActionDetectorState__mayTriggerCallback_canRequestFocus: function _FocusableActionDetectorState__mayTriggerCallback_canRequestFocus(t0) { this.$this = t0; }, _FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight: function _FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight(t0, t1) { this.$this = t0; this.canRequestFocus = t1; }, _FocusableActionDetectorState_didUpdateWidget_closure: function _FocusableActionDetectorState_didUpdateWidget_closure(t0, t1) { this.$this = t0; this.oldWidget = t1; }, DoNothingAction: function DoNothingAction(t0, t1) { this._consumesKey = t0; this._actions$_listeners = t1; this._currentCallingAction = null; }, ActivateIntent: function ActivateIntent() { }, ButtonActivateIntent: function ButtonActivateIntent() { }, DismissIntent: function DismissIntent() { }, DismissAction: function DismissAction() { }, PrioritizedIntents: function PrioritizedIntents() { }, PrioritizedAction: function PrioritizedAction(t0) { var _ = this; _.__PrioritizedAction__selectedIntent = _.__PrioritizedAction__selectedAction = $; _._actions$_listeners = t0; _._currentCallingAction = null; }, _OverridableActionMixin: function _OverridableActionMixin() { }, _OverridableAction: function _OverridableAction(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.defaultAction = t0; _.lookupContext = t1; _._OverridableActionMixin_debugAssertMutuallyRecursive = t2; _._OverridableActionMixin_debugAssertIsActionEnabledMutuallyRecursive = t3; _._OverridableActionMixin_debugAssertIsEnabledMutuallyRecursive = t4; _._OverridableActionMixin_debugAssertConsumeKeyMutuallyRecursive = t5; _._actions$_listeners = t6; _._currentCallingAction = null; _.$ti = t7; }, _OverridableContextAction: function _OverridableContextAction(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.defaultAction = t0; _.lookupContext = t1; _._OverridableActionMixin_debugAssertMutuallyRecursive = t2; _._OverridableActionMixin_debugAssertIsActionEnabledMutuallyRecursive = t3; _._OverridableActionMixin_debugAssertIsEnabledMutuallyRecursive = t4; _._OverridableActionMixin_debugAssertConsumeKeyMutuallyRecursive = t5; _._actions$_listeners = t6; _._currentCallingAction = null; _.$ti = t7; }, _ContextActionToActionAdapter: function _ContextActionToActionAdapter(t0, t1, t2, t3) { var _ = this; _.invokeContext = t0; _.action = t1; _._actions$_listeners = t2; _._currentCallingAction = null; _.$ti = t3; }, _Action_Object_Diagnosticable: function _Action_Object_Diagnosticable() { }, _ActionDispatcher_Object_Diagnosticable: function _ActionDispatcher_Object_Diagnosticable() { }, _Intent_Object_Diagnosticable: function _Intent_Object_Diagnosticable() { }, __OverridableAction_ContextAction__OverridableActionMixin: function __OverridableAction_ContextAction__OverridableActionMixin() { }, __OverridableContextAction_ContextAction__OverridableActionMixin: function __OverridableContextAction_ContextAction__OverridableActionMixin() { }, AnimatedCrossFade_defaultLayoutBuilder(topChild, topChildKey, bottomChild, bottomChildKey) { var _null = null; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_0, A._setArrayType([A.Positioned$(_null, bottomChild, _null, bottomChildKey, 0, 0, 0, _null), A.Positioned$(_null, topChild, _null, topChildKey, _null, _null, _null, _null)], type$.JSArray_Widget), _null); }, CrossFadeState: function CrossFadeState(t0, t1) { this.index = t0; this._core$_name = t1; }, AnimatedCrossFade: function AnimatedCrossFade(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.firstChild = t0; _.secondChild = t1; _.crossFadeState = t2; _.duration = t3; _.firstCurve = t4; _.secondCurve = t5; _.sizeCurve = t6; _.key = t7; }, _AnimatedCrossFadeState: function _AnimatedCrossFadeState(t0, t1, t2) { var _ = this; _.___AnimatedCrossFadeState__secondAnimation = _.___AnimatedCrossFadeState__firstAnimation = _.___AnimatedCrossFadeState__controller = $; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedCrossFadeState_initState_closure: function _AnimatedCrossFadeState_initState_closure(t0) { this.$this = t0; }, _AnimatedCrossFadeState_initState__closure: function _AnimatedCrossFadeState_initState__closure() { }, __AnimatedCrossFadeState_State_TickerProviderStateMixin: function __AnimatedCrossFadeState_State_TickerProviderStateMixin() { }, AnimatedSize$(alignment, child, curve, duration, reverseDuration) { return new A.AnimatedSize(child, alignment, curve, duration, reverseDuration, null); }, AnimatedSize: function AnimatedSize(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.alignment = t1; _.curve = t2; _.duration = t3; _.reverseDuration = t4; _.key = t5; }, _AnimatedSizeState: function _AnimatedSizeState(t0, t1, t2) { var _ = this; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedSize: function _AnimatedSize(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.alignment = t0; _.curve = t1; _.duration = t2; _.reverseDuration = t3; _.vsync = t4; _.clipBehavior = t5; _.child = t6; _.key = t7; }, __AnimatedSizeState_State_SingleTickerProviderStateMixin: function __AnimatedSizeState_State_SingleTickerProviderStateMixin() { }, AnimatedSwitcher$(child, duration, transitionBuilder) { return new A.AnimatedSwitcher(child, duration, transitionBuilder, null); }, AnimatedSwitcher_defaultTransitionBuilder(child, animation) { return A.FadeTransition$(false, child, animation); }, AnimatedSwitcher_defaultLayoutBuilder(currentChild, previousChildren) { var t1 = A.List_List$of(previousChildren, true, type$.Widget); if (currentChild != null) t1.push(currentChild); return new A.Stack(B.Alignment_0_0, null, B.StackFit_0, B.Clip_1, t1, null); }, _ChildEntry: function _ChildEntry(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.animation = t1; _.transition = t2; _.widgetChild = t3; }, AnimatedSwitcher: function AnimatedSwitcher(t0, t1, t2, t3) { var _ = this; _.child = t0; _.duration = t1; _.transitionBuilder = t2; _.key = t3; }, _AnimatedSwitcherState: function _AnimatedSwitcherState(t0, t1, t2, t3, t4) { var _ = this; _._currentEntry = null; _._outgoingEntries = t0; _._outgoingWidgets = t1; _._childNumber = 0; _.TickerProviderStateMixin__tickers = t2; _.TickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _AnimatedSwitcherState__newEntry_closure: function _AnimatedSwitcherState__newEntry_closure(t0, t1, t2) { this.$this = t0; this.entry = t1; this.controller = t2; }, _AnimatedSwitcherState__newEntry__closure: function _AnimatedSwitcherState__newEntry__closure(t0, t1) { this.$this = t0; this.entry = t1; }, _AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure: function _AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure() { }, __AnimatedSwitcherState_State_TickerProviderStateMixin: function __AnimatedSwitcherState_State_TickerProviderStateMixin() { }, AnnotatedRegion: function AnnotatedRegion(t0, t1, t2, t3) { var _ = this; _.value = t0; _.child = t1; _.key = t2; _.$ti = t3; }, basicLocaleListResolution(preferredLocales, supportedLocales) { var t1, t2, allSupportedLocales, languageAndCountryLocales, languageAndScriptLocales, languageLocales, countryLocales, _i, locale, t3, t4, t5, matchesCountryCode, matchesLanguageCode, localeIndex, userLocale, match, resolvedLocale, _null = null; if (preferredLocales == null || preferredLocales.length === 0) return B.JSArray_methods.get$first(supportedLocales); t1 = type$.String; t2 = type$.Locale; allSupportedLocales = A.HashMap_HashMap(_null, _null, _null, t1, t2); languageAndCountryLocales = A.HashMap_HashMap(_null, _null, _null, t1, t2); languageAndScriptLocales = A.HashMap_HashMap(_null, _null, _null, t1, t2); languageLocales = A.HashMap_HashMap(_null, _null, _null, t1, t2); countryLocales = A.HashMap_HashMap(_null, _null, _null, type$.nullable_String, t2); for (t1 = supportedLocales.length, _i = 0; _i < supportedLocales.length; supportedLocales.length === t1 || (0, A.throwConcurrentModificationError)(supportedLocales), ++_i) { locale = supportedLocales[_i]; t2 = locale._languageCode; t3 = B.Map_YCOho.$index(0, t2); if (t3 == null) t3 = t2; t4 = locale._countryCode; t5 = B.Map_0Agg9.$index(0, t4); if (t5 == null) t5 = t4; t5 = A.S(t3) + "_null_" + A.S(t5); if (allSupportedLocales.$index(0, t5) == null) allSupportedLocales.$indexSet(0, t5, locale); t3 = B.Map_YCOho.$index(0, t2); t3 = A.S(t3 == null ? t2 : t3) + "_null"; if (languageAndScriptLocales.$index(0, t3) == null) languageAndScriptLocales.$indexSet(0, t3, locale); t3 = B.Map_YCOho.$index(0, t2); if (t3 == null) t3 = t2; t5 = B.Map_0Agg9.$index(0, t4); if (t5 == null) t5 = t4; t5 = A.S(t3) + "_" + A.S(t5); if (languageAndCountryLocales.$index(0, t5) == null) languageAndCountryLocales.$indexSet(0, t5, locale); t3 = B.Map_YCOho.$index(0, t2); t2 = t3 == null ? t2 : t3; if (languageLocales.$index(0, t2) == null) languageLocales.$indexSet(0, t2, locale); t2 = B.Map_0Agg9.$index(0, t4); if (t2 == null) t2 = t4; if (countryLocales.$index(0, t2) == null) countryLocales.$indexSet(0, t2, locale); } for (matchesCountryCode = _null, matchesLanguageCode = matchesCountryCode, localeIndex = 0; localeIndex < preferredLocales.length; ++localeIndex) { userLocale = preferredLocales[localeIndex]; t1 = userLocale._languageCode; t2 = B.Map_YCOho.$index(0, t1); if (t2 == null) t2 = t1; t3 = userLocale._countryCode; t4 = B.Map_0Agg9.$index(0, t3); if (t4 == null) t4 = t3; if (allSupportedLocales.containsKey$1(0, A.S(t2) + "_null_" + A.S(t4))) return userLocale; t2 = B.Map_0Agg9.$index(0, t3); if ((t2 == null ? t3 : t2) != null) { t2 = B.Map_YCOho.$index(0, t1); if (t2 == null) t2 = t1; t4 = B.Map_0Agg9.$index(0, t3); if (t4 == null) t4 = t3; match = languageAndCountryLocales.$index(0, A.S(t2) + "_" + A.S(t4)); if (match != null) return match; } if (matchesLanguageCode != null) return matchesLanguageCode; t2 = B.Map_YCOho.$index(0, t1); match = languageLocales.$index(0, t2 == null ? t1 : t2); if (match != null) { if (localeIndex === 0) { t2 = localeIndex + 1; if (t2 < preferredLocales.length) { t2 = preferredLocales[t2]._languageCode; t4 = B.Map_YCOho.$index(0, t2); t2 = t4 == null ? t2 : t4; t4 = B.Map_YCOho.$index(0, t1); t1 = t2 == (t4 == null ? t1 : t4); } else t1 = false; t1 = !t1; } else t1 = false; if (t1) return match; matchesLanguageCode = match; } if (matchesCountryCode == null) { t1 = B.Map_0Agg9.$index(0, t3); t1 = (t1 == null ? t3 : t1) != null; } else t1 = false; if (t1) { t1 = B.Map_0Agg9.$index(0, t3); match = countryLocales.$index(0, t1 == null ? t3 : t1); if (match != null) matchesCountryCode = match; } } resolvedLocale = matchesLanguageCode == null ? matchesCountryCode : matchesLanguageCode; return resolvedLocale == null ? B.JSArray_methods.get$first(supportedLocales) : resolvedLocale; }, WidgetsApp_defaultShortcuts() { return B.Map_zPybB; }, WidgetsApp: function WidgetsApp(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33) { var _ = this; _.navigatorKey = t0; _.onGenerateRoute = t1; _.onGenerateInitialRoutes = t2; _.pageRouteBuilder = t3; _.routeInformationParser = t4; _.routerDelegate = t5; _.backButtonDispatcher = t6; _.routeInformationProvider = t7; _.home = t8; _.routes = t9; _.onUnknownRoute = t10; _.initialRoute = t11; _.navigatorObservers = t12; _.builder = t13; _.title = t14; _.onGenerateTitle = t15; _.textStyle = t16; _.color = t17; _.locale = t18; _.localizationsDelegates = t19; _.localeListResolutionCallback = t20; _.localeResolutionCallback = t21; _.supportedLocales = t22; _.showPerformanceOverlay = t23; _.checkerboardRasterCacheImages = t24; _.checkerboardOffscreenLayers = t25; _.showSemanticsDebugger = t26; _.inspectorSelectButtonBuilder = t27; _.debugShowCheckedModeBanner = t28; _.shortcuts = t29; _.actions = t30; _.restorationScopeId = t31; _.useInheritedMediaQuery = t32; _.key = t33; }, _WidgetsAppState: function _WidgetsAppState(t0) { var _ = this; _._widget = _._app$_locale = _._navigator = _._defaultRouteInformationProvider = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _WidgetsAppState__onGenerateRoute_closure: function _WidgetsAppState__onGenerateRoute_closure(t0) { this.$this = t0; }, _WidgetsAppState_didChangeLocales_closure: function _WidgetsAppState_didChangeLocales_closure(t0, t1) { this.$this = t0; this.newLocale = t1; }, _WidgetsAppState_build_closure: function _WidgetsAppState_build_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, __WidgetsAppState_State_WidgetsBindingObserver: function __WidgetsAppState_State_WidgetsBindingObserver() { }, AsyncSnapshot$nothing($T) { return new A.AsyncSnapshot(B.ConnectionState_0, null, null, null, $T._eval$1("AsyncSnapshot<0>")); }, StreamBuilder$(builder, stream, $T) { return new A.StreamBuilder(builder, stream, null, $T._eval$1("StreamBuilder<0>")); }, FutureBuilder$(builder, future, $T) { return new A.FutureBuilder(future, builder, null, $T._eval$1("FutureBuilder<0>")); }, StreamBuilderBase: function StreamBuilderBase() { }, _StreamBuilderBaseState: function _StreamBuilderBaseState(t0, t1) { var _ = this; _._subscription = null; _.___StreamBuilderBaseState__summary = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _StreamBuilderBaseState__subscribe_closure: function _StreamBuilderBaseState__subscribe_closure(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure1: function _StreamBuilderBaseState__subscribe__closure1(t0, t1) { this.$this = t0; this.data = t1; }, _StreamBuilderBaseState__subscribe_closure1: function _StreamBuilderBaseState__subscribe_closure1(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure: function _StreamBuilderBaseState__subscribe__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _StreamBuilderBaseState__subscribe_closure0: function _StreamBuilderBaseState__subscribe_closure0(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure0: function _StreamBuilderBaseState__subscribe__closure0(t0) { this.$this = t0; }, ConnectionState: function ConnectionState(t0, t1) { this.index = t0; this._core$_name = t1; }, AsyncSnapshot: function AsyncSnapshot(t0, t1, t2, t3, t4) { var _ = this; _.connectionState = t0; _.data = t1; _.error = t2; _.stackTrace = t3; _.$ti = t4; }, StreamBuilder: function StreamBuilder(t0, t1, t2, t3) { var _ = this; _.builder = t0; _.stream = t1; _.key = t2; _.$ti = t3; }, FutureBuilder: function FutureBuilder(t0, t1, t2, t3) { var _ = this; _.future = t0; _.builder = t1; _.key = t2; _.$ti = t3; }, _FutureBuilderState: function _FutureBuilderState(t0, t1) { var _ = this; _._activeCallbackIdentity = null; _.___FutureBuilderState__snapshot = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _FutureBuilderState__subscribe_closure: function _FutureBuilderState__subscribe_closure(t0, t1) { this.$this = t0; this.callbackIdentity = t1; }, _FutureBuilderState__subscribe__closure0: function _FutureBuilderState__subscribe__closure0(t0, t1) { this.$this = t0; this.data = t1; }, _FutureBuilderState__subscribe_closure0: function _FutureBuilderState__subscribe_closure0(t0, t1) { this.$this = t0; this.callbackIdentity = t1; }, _FutureBuilderState__subscribe__closure: function _FutureBuilderState__subscribe__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, RawAutocomplete_defaultStringForOption(option) { return J.toString$0$(option); }, _AutocompleteCallbackAction$(onInvoke, $T) { return new A._AutocompleteCallbackAction(onInvoke, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), $T._eval$1("_AutocompleteCallbackAction<0>")); }, AutocompleteHighlightedOption_of(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.AutocompleteHighlightedOption); if (t1 == null) t1 = null; else { t1 = t1.notifier; t1 = t1 == null ? null : t1._change_notifier$_value; } return t1 == null ? 0 : t1; }, RawAutocomplete: function RawAutocomplete(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.fieldViewBuilder = t0; _.focusNode = t1; _.optionsViewBuilder = t2; _.displayStringForOption = t3; _.onSelected = t4; _.optionsBuilder = t5; _.textEditingController = t6; _.initialValue = t7; _.key = t8; _.$ti = t9; }, _RawAutocompleteState: function _RawAutocompleteState(t0, t1, t2, t3, t4, t5) { var _ = this; _._fieldKey = t0; _._optionsLayerLink = t1; _.___RawAutocompleteState__hideOptionsAction = _.___RawAutocompleteState__nextOptionAction = _.___RawAutocompleteState__previousOptionAction = _.___RawAutocompleteState__actionMap = _.___RawAutocompleteState__focusNode = _.___RawAutocompleteState__textEditingController = $; _._autocomplete$_options = t2; _._autocomplete$_selection = null; _._userHidOptions = false; _._lastFieldText = ""; _._highlightedOptionIndex = t3; _._floatingOptions = null; _._floatingOptionsUpdateScheduled = false; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; _.$ti = t5; }, _RawAutocompleteState__updateOverlay_closure: function _RawAutocompleteState__updateOverlay_closure(t0) { this.$this = t0; }, _RawAutocompleteState__updateOverlay_closure0: function _RawAutocompleteState__updateOverlay_closure0(t0) { this.$this = t0; }, _RawAutocompleteState__updateOverlay__closure: function _RawAutocompleteState__updateOverlay__closure(t0) { this.$this = t0; }, _AutocompleteCallbackAction: function _AutocompleteCallbackAction(t0, t1, t2) { var _ = this; _.enabled = true; _.onInvoke = t0; _._actions$_listeners = t1; _._currentCallingAction = null; _.$ti = t2; }, AutocompletePreviousOptionIntent: function AutocompletePreviousOptionIntent() { }, AutocompleteNextOptionIntent: function AutocompleteNextOptionIntent() { }, AutocompleteHighlightedOption: function AutocompleteHighlightedOption(t0, t1, t2) { this.notifier = t0; this.child = t1; this.key = t2; }, AutofillGroup_of(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._AutofillScope); return scope == null ? null : scope._scope; }, AutofillContextAction: function AutofillContextAction(t0, t1) { this.index = t0; this._core$_name = t1; }, AutofillGroup: function AutofillGroup(t0, t1) { this.child = t0; this.key = t1; }, AutofillGroupState: function AutofillGroupState(t0, t1) { var _ = this; _._autofill$_clients = t0; _._isTopmostAutofillGroup = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, AutofillGroupState_autofillClients_closure: function AutofillGroupState_autofillClients_closure() { }, AutofillGroupState_register_closure: function AutofillGroupState_register_closure(t0) { this.client = t0; }, _AutofillScope: function _AutofillScope(t0, t1, t2) { this._scope = t0; this.child = t1; this.key = t2; }, _AutofillGroupState_State_AutofillScopeMixin: function _AutofillGroupState_State_AutofillScopeMixin() { }, AutomaticKeepAlive: function AutomaticKeepAlive(t0, t1) { this.child = t0; this.key = t1; }, _AutomaticKeepAliveState: function _AutomaticKeepAliveState(t0) { var _ = this; _._automatic_keep_alive$_child = _._automatic_keep_alive$_handles = null; _._keepingAlive = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AutomaticKeepAliveState__addClient_closure: function _AutomaticKeepAliveState__addClient_closure(t0) { this.$this = t0; }, _AutomaticKeepAliveState__getChildElement_closure: function _AutomaticKeepAliveState__getChildElement_closure(t0) { this._box_0 = t0; }, _AutomaticKeepAliveState__createCallback_closure: function _AutomaticKeepAliveState__createCallback_closure(t0, t1) { this.$this = t0; this.handle = t1; }, _AutomaticKeepAliveState__createCallback__closure: function _AutomaticKeepAliveState__createCallback__closure(t0) { this.$this = t0; }, _AutomaticKeepAliveState__createCallback__closure0: function _AutomaticKeepAliveState__createCallback__closure0(t0) { this.$this = t0; }, _AutomaticKeepAliveState__createCallback___closure: function _AutomaticKeepAliveState__createCallback___closure(t0) { this.$this = t0; }, KeepAliveNotification: function KeepAliveNotification(t0) { this.handle = t0; }, KeepAliveHandle: function KeepAliveHandle(t0) { var _ = this; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, AutomaticKeepAliveClientMixin: function AutomaticKeepAliveClientMixin() { }, _NullWidget0: function _NullWidget0(t0) { this.key = t0; }, Directionality$(child, textDirection) { return new A.Directionality(textDirection, child, null); }, Directionality_maybeOf(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); return widget == null ? null : widget.textDirection; }, Opacity$(child, opacity) { return new A.Opacity(opacity, child, null); }, BackdropFilter$(child, filter) { return new A.BackdropFilter(filter, child, null); }, CustomPaint$(child, foregroundPainter, key, painter, size) { return new A.CustomPaint(painter, foregroundPainter, size, child, key); }, ClipRect$(child, clipBehavior, clipper) { return new A.ClipRect(clipper, clipBehavior, child, null); }, ClipRRect$(borderRadius, child) { return new A.ClipRRect(borderRadius, child, null); }, ClipPath$(child, clipBehavior, clipper) { return new A.ClipPath(clipper, clipBehavior, child, null); }, ClipPath_shape(child, shape) { return new A.Builder(new A.ClipPath_shape_closure(shape, B.Clip_2, child), null); }, PhysicalShape$(child, clipBehavior, clipper, color, elevation, shadowColor) { return new A.PhysicalShape(clipper, clipBehavior, elevation, color, shadowColor, child, null); }, Transform$(alignment, child, transform, transformHitTests) { return new A.Transform(transform, alignment, transformHitTests, null, child, null); }, Transform$rotate(alignment, angle, child, filterQuality) { return new A.Transform(A.Matrix4_Matrix4$rotationZ(angle), alignment, true, filterQuality, child, null); }, CompositedTransformFollower$(child, key, link, offset, showWhenUnlinked, targetAnchor) { return new A.CompositedTransformFollower(link, showWhenUnlinked, targetAnchor, offset, child, key); }, FittedBox$(child) { return new A.FittedBox(child, null); }, FractionalTranslation$(child, transformHitTests, translation) { return new A.FractionalTranslation(translation, transformHitTests, child, null); }, Center$(child, heightFactor, widthFactor) { return new A.Center(B.Alignment_0_0, widthFactor, heightFactor, child, null); }, LayoutId$(child, id) { return new A.LayoutId(id, child, new A.ValueKey(id, type$.ValueKey_Object)); }, SizedBox$expand(child) { return new A.SizedBox(1 / 0, 1 / 0, child, null); }, SizedBox$fromSize(child, size) { return new A.SizedBox(size._dx, size._dy, child, null); }, FractionallySizedBox$(alignment, child, heightFactor, widthFactor) { return new A.FractionallySizedBox(widthFactor, heightFactor, alignment, child, null); }, LimitedBox$(child, maxHeight, maxWidth) { return new A.LimitedBox(maxWidth, maxHeight, child, null); }, OverflowBox$(alignment, child, maxHeight, maxWidth, minHeight, minWidth) { return new A.OverflowBox(alignment, minWidth, maxWidth, minHeight, maxHeight, child, null); }, IntrinsicWidth$(child, stepWidth) { return new A.IntrinsicWidth(stepWidth, child, null); }, getAxisDirectionFromAxisReverseAndDirectionality(context, axis, reverse) { var t1, axisDirection; switch (axis.index) { case 0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; axisDirection = A.textDirectionToAxisDirection(t1.textDirection); return reverse ? A.flipAxisDirection(axisDirection) : axisDirection; case 1: return reverse ? B.AxisDirection_0 : B.AxisDirection_2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, ListBody$(children, mainAxis) { return new A.ListBody(mainAxis, children, null); }, Positioned$(bottom, child, height, key, left, right, $top, width) { return new A.Positioned(left, $top, right, bottom, width, height, child, key); }, Positioned$fill(child) { return new A.Positioned(0, 0, 0, 0, null, null, child, null); }, Positioned_Positioned$directional(bottom, child, end, height, start, textDirection, $top, width) { var right, left; switch (textDirection) { case B.TextDirection_0: right = start; left = end; break; case B.TextDirection_1: right = end; left = start; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return A.Positioned$(bottom, child, height, null, left, right, $top, width); }, Flex$(children, crossAxisAlignment, direction, key, mainAxisAlignment, mainAxisSize, textBaseline, textDirection, verticalDirection) { return new A.Flex(direction, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, verticalDirection, textBaseline, children, key); }, Row$(children, crossAxisAlignment, mainAxisAlignment, mainAxisSize, textDirection) { return new A.Row(B.Axis_0, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, B.VerticalDirection_1, null, children, null); }, Column$(children, crossAxisAlignment, key, mainAxisAlignment, mainAxisSize, verticalDirection) { return new A.Column(B.Axis_1, mainAxisAlignment, mainAxisSize, crossAxisAlignment, null, verticalDirection, null, children, key); }, Expanded$(child, flex) { return new A.Expanded(flex, B.FlexFit_0, child, null); }, Wrap$(alignment, children, clipBehavior, crossAxisAlignment, spacing) { return new A.Wrap(alignment, spacing, crossAxisAlignment, clipBehavior, children, null); }, RichText$(key, locale, maxLines, overflow, softWrap, strutStyle, text, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis) { return new A.RichText(text, textAlign, textDirection, softWrap, overflow, textScaleFactor, maxLines, locale, strutStyle, textWidthBasis, textHeightBehavior, A.RichText__extractChildren(text), key); }, RichText__extractChildren(span) { var result, t1 = {}; t1.index = 0; result = A._setArrayType([], type$.JSArray_Widget); span.visitChildren$1(new A.RichText__extractChildren_closure(t1, result)); return result; }, Listener$(behavior, child, key, onPointerCancel, onPointerDown, onPointerHover, onPointerMove, onPointerSignal, onPointerUp) { return new A.Listener(onPointerDown, onPointerMove, onPointerUp, onPointerHover, onPointerCancel, onPointerSignal, behavior, child, key); }, MouseRegion$(child, cursor, key, onEnter, onExit, onHover) { return new A.MouseRegion(onEnter, onHover, onExit, cursor, child, key); }, AbsorbPointer$(absorbing, child) { return new A.AbsorbPointer(absorbing, child, null); }, BlockSemantics$(child) { return new A.BlockSemantics(child, null); }, KeyedSubtree_KeyedSubtree$wrap(child, childIndex) { var t1 = child.key; return new A.KeyedSubtree(child, t1 != null ? new A.ValueKey(t1, type$.ValueKey_Key) : new A.ValueKey(childIndex, type$.ValueKey_int)); }, KeyedSubtree_ensureUniqueKeysForList(items) { var itemsWithUniqueKeys, t2, t3, itemIndex, _i, item, t4, t1 = items.length; if (t1 === 0) return items; itemsWithUniqueKeys = A._setArrayType([], type$.JSArray_Widget); for (t1 = items.length, t2 = type$.ValueKey_int, t3 = type$.ValueKey_Key, itemIndex = 0, _i = 0; _i < items.length; items.length === t1 || (0, A.throwConcurrentModificationError)(items), ++_i) { item = items[_i]; t4 = item.key; itemsWithUniqueKeys.push(new A.KeyedSubtree(item, t4 != null ? new A.ValueKey(t4, t3) : new A.ValueKey(itemIndex, t2))); ++itemIndex; } return itemsWithUniqueKeys; }, Directionality: function Directionality(t0, t1, t2) { this.textDirection = t0; this.child = t1; this.key = t2; }, Opacity: function Opacity(t0, t1, t2) { this.opacity = t0; this.child = t1; this.key = t2; }, BackdropFilter: function BackdropFilter(t0, t1, t2) { this.filter = t0; this.child = t1; this.key = t2; }, CustomPaint: function CustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.painter = t0; _.foregroundPainter = t1; _.size = t2; _.child = t3; _.key = t4; }, ClipRect: function ClipRect(t0, t1, t2, t3) { var _ = this; _.clipper = t0; _.clipBehavior = t1; _.child = t2; _.key = t3; }, ClipRRect: function ClipRRect(t0, t1, t2) { this.borderRadius = t0; this.child = t1; this.key = t2; }, ClipOval: function ClipOval(t0, t1) { this.child = t0; this.key = t1; }, ClipPath: function ClipPath(t0, t1, t2, t3) { var _ = this; _.clipper = t0; _.clipBehavior = t1; _.child = t2; _.key = t3; }, ClipPath_shape_closure: function ClipPath_shape_closure(t0, t1, t2) { this.shape = t0; this.clipBehavior = t1; this.child = t2; }, PhysicalModel: function PhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.shape = t0; _.clipBehavior = t1; _.borderRadius = t2; _.elevation = t3; _.color = t4; _.shadowColor = t5; _.child = t6; _.key = t7; }, PhysicalShape: function PhysicalShape(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.clipper = t0; _.clipBehavior = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.child = t5; _.key = t6; }, Transform: function Transform(t0, t1, t2, t3, t4, t5) { var _ = this; _.transform = t0; _.alignment = t1; _.transformHitTests = t2; _.filterQuality = t3; _.child = t4; _.key = t5; }, CompositedTransformTarget: function CompositedTransformTarget(t0, t1, t2) { this.link = t0; this.child = t1; this.key = t2; }, CompositedTransformFollower: function CompositedTransformFollower(t0, t1, t2, t3, t4, t5) { var _ = this; _.link = t0; _.showWhenUnlinked = t1; _.targetAnchor = t2; _.offset = t3; _.child = t4; _.key = t5; }, FittedBox: function FittedBox(t0, t1) { this.child = t0; this.key = t1; }, FractionalTranslation: function FractionalTranslation(t0, t1, t2, t3) { var _ = this; _.translation = t0; _.transformHitTests = t1; _.child = t2; _.key = t3; }, Padding: function Padding(t0, t1, t2) { this.padding = t0; this.child = t1; this.key = t2; }, Align: function Align(t0, t1, t2, t3, t4) { var _ = this; _.alignment = t0; _.widthFactor = t1; _.heightFactor = t2; _.child = t3; _.key = t4; }, Center: function Center(t0, t1, t2, t3, t4) { var _ = this; _.alignment = t0; _.widthFactor = t1; _.heightFactor = t2; _.child = t3; _.key = t4; }, CustomSingleChildLayout: function CustomSingleChildLayout(t0, t1, t2) { this.delegate = t0; this.child = t1; this.key = t2; }, LayoutId: function LayoutId(t0, t1, t2) { this.id = t0; this.child = t1; this.key = t2; }, CustomMultiChildLayout: function CustomMultiChildLayout(t0, t1, t2) { this.delegate = t0; this.children = t1; this.key = t2; }, SizedBox: function SizedBox(t0, t1, t2, t3) { var _ = this; _.width = t0; _.height = t1; _.child = t2; _.key = t3; }, ConstrainedBox: function ConstrainedBox(t0, t1, t2) { this.constraints = t0; this.child = t1; this.key = t2; }, FractionallySizedBox: function FractionallySizedBox(t0, t1, t2, t3, t4) { var _ = this; _.widthFactor = t0; _.heightFactor = t1; _.alignment = t2; _.child = t3; _.key = t4; }, LimitedBox: function LimitedBox(t0, t1, t2, t3) { var _ = this; _.maxWidth = t0; _.maxHeight = t1; _.child = t2; _.key = t3; }, OverflowBox: function OverflowBox(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.alignment = t0; _.minWidth = t1; _.maxWidth = t2; _.minHeight = t3; _.maxHeight = t4; _.child = t5; _.key = t6; }, Offstage: function Offstage(t0, t1, t2) { this.offstage = t0; this.child = t1; this.key = t2; }, _OffstageElement: function _OffstageElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, AspectRatio: function AspectRatio(t0, t1, t2) { this.aspectRatio = t0; this.child = t1; this.key = t2; }, IntrinsicWidth: function IntrinsicWidth(t0, t1, t2) { this.stepWidth = t0; this.child = t1; this.key = t2; }, IntrinsicHeight: function IntrinsicHeight(t0, t1) { this.child = t0; this.key = t1; }, SliverPadding: function SliverPadding(t0, t1, t2) { this.padding = t0; this.child = t1; this.key = t2; }, ListBody: function ListBody(t0, t1, t2) { this.mainAxis = t0; this.children = t1; this.key = t2; }, Stack: function Stack(t0, t1, t2, t3, t4, t5) { var _ = this; _.alignment = t0; _.textDirection = t1; _.fit = t2; _.clipBehavior = t3; _.children = t4; _.key = t5; }, IndexedStack: function IndexedStack(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.index = t0; _.alignment = t1; _.textDirection = t2; _.fit = t3; _.clipBehavior = t4; _.children = t5; _.key = t6; }, Positioned: function Positioned(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.width = t4; _.height = t5; _.child = t6; _.key = t7; }, PositionedDirectional: function PositionedDirectional(t0, t1, t2, t3, t4, t5) { var _ = this; _.start = t0; _.top = t1; _.bottom = t2; _.width = t3; _.child = t4; _.key = t5; }, Flex: function Flex(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Row: function Row(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Column: function Column(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Flexible: function Flexible(t0, t1, t2, t3) { var _ = this; _.flex = t0; _.fit = t1; _.child = t2; _.key = t3; }, Expanded: function Expanded(t0, t1, t2, t3) { var _ = this; _.flex = t0; _.fit = t1; _.child = t2; _.key = t3; }, Wrap: function Wrap(t0, t1, t2, t3, t4, t5) { var _ = this; _.alignment = t0; _.spacing = t1; _.crossAxisAlignment = t2; _.clipBehavior = t3; _.children = t4; _.key = t5; }, RichText: function RichText(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.text = t0; _.textAlign = t1; _.textDirection = t2; _.softWrap = t3; _.overflow = t4; _.textScaleFactor = t5; _.maxLines = t6; _.locale = t7; _.strutStyle = t8; _.textWidthBasis = t9; _.textHeightBehavior = t10; _.children = t11; _.key = t12; }, RichText__extractChildren_closure: function RichText__extractChildren_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, RawImage: function RawImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.image = t0; _.debugImageLabel = t1; _.width = t2; _.height = t3; _.scale = t4; _.color = t5; _.opacity = t6; _.filterQuality = t7; _.colorBlendMode = t8; _.fit = t9; _.alignment = t10; _.repeat = t11; _.centerSlice = t12; _.matchTextDirection = t13; _.invertColors = t14; _.isAntiAlias = t15; _.key = t16; }, Listener: function Listener(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.onPointerDown = t0; _.onPointerMove = t1; _.onPointerUp = t2; _.onPointerHover = t3; _.onPointerCancel = t4; _.onPointerSignal = t5; _.behavior = t6; _.child = t7; _.key = t8; }, MouseRegion: function MouseRegion(t0, t1, t2, t3, t4, t5) { var _ = this; _.onEnter = t0; _.onHover = t1; _.onExit = t2; _.cursor = t3; _.child = t4; _.key = t5; }, RepaintBoundary: function RepaintBoundary(t0, t1) { this.child = t0; this.key = t1; }, IgnorePointer: function IgnorePointer(t0, t1, t2, t3) { var _ = this; _.ignoring = t0; _.ignoringSemantics = t1; _.child = t2; _.key = t3; }, AbsorbPointer: function AbsorbPointer(t0, t1, t2) { this.absorbing = t0; this.child = t1; this.key = t2; }, Semantics: function Semantics(t0, t1, t2, t3, t4, t5) { var _ = this; _.properties = t0; _.container = t1; _.explicitChildNodes = t2; _.excludeSemantics = t3; _.child = t4; _.key = t5; }, MergeSemantics: function MergeSemantics(t0, t1) { this.child = t0; this.key = t1; }, BlockSemantics: function BlockSemantics(t0, t1) { this.child = t0; this.key = t1; }, ExcludeSemantics: function ExcludeSemantics(t0, t1, t2) { this.excluding = t0; this.child = t1; this.key = t2; }, IndexedSemantics: function IndexedSemantics(t0, t1, t2) { this.index = t0; this.child = t1; this.key = t2; }, KeyedSubtree: function KeyedSubtree(t0, t1) { this.child = t0; this.key = t1; }, Builder: function Builder(t0, t1) { this.builder = t0; this.key = t1; }, ColoredBox: function ColoredBox(t0, t1, t2) { this.color = t0; this.child = t1; this.key = t2; }, _RenderColoredBox: function _RenderColoredBox(t0, t1, t2, t3) { var _ = this; _._basic$_color = t0; _.behavior = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, WidgetsBinding_instance() { var t1 = $.WidgetsBinding__instance; t1.toString; return t1; }, runApp(app) { var t1; if ($.WidgetsBinding__instance == null) A.WidgetsFlutterBinding$(); t1 = $.WidgetsBinding__instance; t1.scheduleAttachRootWidget$1(app); t1.scheduleWarmUpFrame$0(); }, RenderObjectToWidgetElement$(widget, $T) { return new A.RenderObjectToWidgetElement(widget, B._ElementLifecycle_0, $T._eval$1("RenderObjectToWidgetElement<0>")); }, WidgetsFlutterBinding$() { var t9, _null = null, t1 = A._setArrayType([], type$.JSArray_WidgetsBindingObserver), t2 = $.Zone__current, t3 = A._setArrayType([], type$.JSArray_of_void_Function_List_FrameTiming), t4 = A.List_List$filled(7, _null, false, type$.nullable__TaskEntry_dynamic), t5 = type$.int, t6 = A.HashSet_HashSet(t5), t7 = type$.JSArray_of_void_Function_Duration, t8 = A._setArrayType([], t7); t7 = A._setArrayType([], t7); t9 = A._setArrayType([], type$.JSArray_nullable__AsyncBlock); t1 = new A.WidgetsFlutterBinding(_null, $, t1, true, new A._AsyncCompleter(new A._Future(t2, type$._Future_void), type$._AsyncCompleter_void), false, _null, false, false, _null, $, _null, false, 0, false, $, $, new A._SystemFontsNotifier(A.LinkedHashSet_LinkedHashSet$_empty(type$.void_Function)), $, $, $, $, _null, t3, _null, A.binding0__defaultSchedulingStrategy$closure(), new A.HeapPriorityQueue(A.binding0_SchedulerBinding__taskSorter$closure(), t4, type$.HeapPriorityQueue__TaskEntry_dynamic), false, 0, A.LinkedHashMap_LinkedHashMap$_empty(t5, type$._FrameCallbackEntry), t6, t8, t7, _null, false, B.SchedulerPhase_0, true, false, _null, B.Duration_0, B.Duration_0, _null, 0, _null, false, new A.TimelineTask(_null, 0, t9), A.ListQueue$(_null, type$.PointerEvent_2), new A.PointerRouter(A.LinkedHashMap_LinkedHashMap$_empty(t5, type$.Map_of_void_Function_PointerEvent_and_nullable_Matrix4), A.LinkedHashMap_LinkedHashMap$_empty(type$.void_Function_PointerEvent, type$.nullable_Matrix4)), new A.GestureArenaManager(A.LinkedHashMap_LinkedHashMap$_empty(t5, type$._GestureArena)), new A.PointerSignalResolver(), A.LinkedHashMap_LinkedHashMap$_empty(t5, type$.HitTestResult), $, false, B.Duration_m38000); t1.BindingBase$0(); return t1; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure(t0, t1, t2) { this.$this = t0; this.hitTestResult = t1; this.event = t2; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure(t0) { this.$this = t0; }, WidgetsBindingObserver: function WidgetsBindingObserver() { }, WidgetsBinding: function WidgetsBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, WidgetsBinding_scheduleAttachRootWidget_closure: function WidgetsBinding_scheduleAttachRootWidget_closure(t0, t1) { this.$this = t0; this.rootWidget = t1; }, RenderObjectToWidgetAdapter: function RenderObjectToWidgetAdapter(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.container = t1; _.debugShortDescription = t2; _.key = t3; _.$ti = t4; }, RenderObjectToWidgetAdapter_attachToRenderTree_closure: function RenderObjectToWidgetAdapter_attachToRenderTree_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.owner = t2; }, RenderObjectToWidgetAdapter_attachToRenderTree_closure0: function RenderObjectToWidgetAdapter_attachToRenderTree_closure0(t0) { this._box_0 = t0; }, RenderObjectToWidgetElement: function RenderObjectToWidgetElement(t0, t1, t2) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._newWidget = _._child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t2; }, WidgetsFlutterBinding: function WidgetsFlutterBinding(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53) { var _ = this; _.WidgetsBinding__buildOwner = t0; _.WidgetsBinding___WidgetsBinding_platformMenuDelegate = t1; _.WidgetsBinding__observers = t2; _.WidgetsBinding__needToReportFirstFrame = t3; _.WidgetsBinding__firstFrameCompleter = t4; _.WidgetsBinding_debugBuildingDirtyElements = t5; _.WidgetsBinding__renderViewElement = t6; _.WidgetsBinding__readyToProduceFrames = t7; _.RendererBinding__debugIsRenderViewInitialized = t8; _.RendererBinding__mouseTracker = t9; _.RendererBinding___RendererBinding__pipelineOwner = t10; _.RendererBinding__semanticsHandle = t11; _.RendererBinding__debugMouseTrackerUpdateScheduled = t12; _.RendererBinding__firstFrameDeferredCount = t13; _.RendererBinding__firstFrameSent = t14; _.SemanticsBinding___SemanticsBinding__accessibilityFeatures = t15; _.PaintingBinding___PaintingBinding__imageCache = t16; _.PaintingBinding__systemFonts = t17; _.ServicesBinding___ServicesBinding__keyboard = t18; _.ServicesBinding___ServicesBinding__keyEventManager = t19; _.ServicesBinding___ServicesBinding__defaultBinaryMessenger = t20; _.ServicesBinding___ServicesBinding__restorationManager = t21; _.ServicesBinding__systemUiChangeCallback = t22; _.SchedulerBinding__timingsCallbacks = t23; _.SchedulerBinding__lifecycleState = t24; _.SchedulerBinding_schedulingStrategy = t25; _.SchedulerBinding__taskQueue = t26; _.SchedulerBinding__hasRequestedAnEventLoopCallback = t27; _.SchedulerBinding__nextFrameCallbackId = t28; _.SchedulerBinding__transientCallbacks = t29; _.SchedulerBinding__removedIds = t30; _.SchedulerBinding__persistentCallbacks = t31; _.SchedulerBinding__postFrameCallbacks = t32; _.SchedulerBinding__nextFrameCompleter = t33; _.SchedulerBinding__hasScheduledFrame = t34; _.SchedulerBinding__schedulerPhase = t35; _.SchedulerBinding__framesEnabled = t36; _.SchedulerBinding__warmUpFrame = t37; _.SchedulerBinding__firstRawTimeStampInEpoch = t38; _.SchedulerBinding__epochStart = t39; _.SchedulerBinding__lastRawTimeStamp = t40; _.SchedulerBinding__currentFrameTimeStamp = t41; _.SchedulerBinding__debugFrameNumber = t42; _.SchedulerBinding__debugBanner = t43; _.SchedulerBinding__rescheduleAfterWarmUpFrame = t44; _.SchedulerBinding__frameTimelineTask = t45; _.GestureBinding__pendingPointerEvents = t46; _.GestureBinding_pointerRouter = t47; _.GestureBinding_gestureArena = t48; _.GestureBinding_pointerSignalResolver = t49; _.GestureBinding__hitTests = t50; _.GestureBinding___GestureBinding__resampler = t51; _.GestureBinding_resamplingEnabled = t52; _.GestureBinding_samplingOffset = t53; _._debugConstructed = false; _._lockCount = 0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding() { }, DecoratedBox$(child, decoration, position) { return new A.DecoratedBox(decoration, position, child, null); }, Container$(alignment, child, clipBehavior, color, constraints, decoration, foregroundDecoration, height, key, margin, padding, transform, transformAlignment, width) { var t1; if (width != null || height != null) { t1 = constraints == null ? null : constraints.tighten$2$height$width(height, width); if (t1 == null) t1 = A.BoxConstraints$tightFor(height, width); } else t1 = constraints; return new A.Container(child, alignment, padding, color, decoration, foregroundDecoration, t1, margin, transform, transformAlignment, clipBehavior, key); }, DecoratedBox: function DecoratedBox(t0, t1, t2, t3) { var _ = this; _.decoration = t0; _.position = t1; _.child = t2; _.key = t3; }, Container: function Container(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.child = t0; _.alignment = t1; _.padding = t2; _.color = t3; _.decoration = t4; _.foregroundDecoration = t5; _.constraints = t6; _.margin = t7; _.transform = t8; _.transformAlignment = t9; _.clipBehavior = t10; _.key = t11; }, _DecorationClipper: function _DecorationClipper(t0, t1, t2) { this.textDirection = t0; this.decoration = t1; this._reclip = t2; }, DefaultTextEditingShortcuts__shortcuts() { var t1 = $.$get$DefaultTextEditingShortcuts__webShortcuts(); return t1; }, DefaultTextEditingShortcuts: function DefaultTextEditingShortcuts(t0, t1, t2, t3) { var _ = this; _.shortcuts = t0; _.child = t1; _.debugLabel = t2; _.key = t3; }, DisplayFeatureSubScreen__fallbackAnchorPoint(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: return B.Offset_L9C; case B.TextDirection_1: return B.Offset_0_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, DisplayFeatureSubScreen_avoidBounds(mediaQuery) { var t1 = mediaQuery.displayFeatures, t2 = A._arrayInstanceType(t1); return new A.MappedIterable(new A.WhereIterable(t1, new A.DisplayFeatureSubScreen_avoidBounds_closure(), t2._eval$1("WhereIterable<1>")), new A.DisplayFeatureSubScreen_avoidBounds_closure0(), t2._eval$1("MappedIterable<1,Rect>")); }, DisplayFeatureSubScreen__closestToAnchorPoint(subScreens, anchorPoint) { var t1, _i, $screen, subScreenDistance, closestScreen = B.JSArray_methods.get$first(subScreens), closestDistance = A.DisplayFeatureSubScreen__distanceFromPointToRect(anchorPoint, closestScreen); for (t1 = subScreens.length, _i = 0; _i < subScreens.length; subScreens.length === t1 || (0, A.throwConcurrentModificationError)(subScreens), ++_i) { $screen = subScreens[_i]; subScreenDistance = A.DisplayFeatureSubScreen__distanceFromPointToRect(anchorPoint, $screen); if (subScreenDistance < closestDistance) { closestDistance = subScreenDistance; closestScreen = $screen; } } return closestScreen; }, DisplayFeatureSubScreen__distanceFromPointToRect(point, rect) { var t3, t4, t1 = point._dx, t2 = rect.left; if (t1 < t2) { t3 = point._dy; t4 = rect.top; if (t3 < t4) return point.$sub(0, new A.Offset(t2, t4)).get$distance(); else { t4 = rect.bottom; if (t3 > t4) return point.$sub(0, new A.Offset(t2, t4)).get$distance(); else return t2 - t1; } } else { t2 = rect.right; if (t1 > t2) { t3 = point._dy; t4 = rect.top; if (t3 < t4) return point.$sub(0, new A.Offset(t2, t4)).get$distance(); else { t4 = rect.bottom; if (t3 > t4) return point.$sub(0, new A.Offset(t2, t4)).get$distance(); else return t1 - t2; } } else { t1 = point._dy; t2 = rect.top; if (t1 < t2) return t2 - t1; else { t2 = rect.bottom; if (t1 > t2) return t1 - t2; else return 0; } } } }, DisplayFeatureSubScreen_subScreensInBounds(wantedBounds, avoidBounds) { var t2, t3, newSubScreens, t4, _i, $screen, t5, t6, t7, t1 = type$.JSArray_Rect, subScreens = A._setArrayType([wantedBounds], t1); for (t2 = avoidBounds.get$iterator(avoidBounds); t2.moveNext$0(); subScreens = newSubScreens) { t3 = t2.get$current(t2); newSubScreens = A._setArrayType([], t1); for (t4 = subScreens.length, _i = 0; _i < subScreens.length; subScreens.length === t4 || (0, A.throwConcurrentModificationError)(subScreens), ++_i) { $screen = subScreens[_i]; t5 = $screen.top; t6 = t3.top; if (t5 >= t6 && $screen.bottom <= t3.bottom) { t6 = $screen.left; t7 = t3.left; if (t6 < t7) newSubScreens.push(new A.Rect(t6, t5, t6 + (t7 - t6), t5 + ($screen.bottom - t5))); t6 = $screen.right; t7 = t3.right; if (t6 > t7) newSubScreens.push(new A.Rect(t7, t5, t7 + (t6 - t7), t5 + ($screen.bottom - t5))); } else { t7 = $screen.left; if (t7 >= t3.left && $screen.right <= t3.right) { if (t5 < t6) newSubScreens.push(new A.Rect(t7, t5, t7 + ($screen.right - t7), t5 + (t6 - t5))); t5 = $screen.bottom; t6 = t3.bottom; if (t5 > t6) newSubScreens.push(new A.Rect(t7, t6, t7 + ($screen.right - t7), t6 + (t5 - t6))); } else newSubScreens.push($screen); } } } return subScreens; }, DisplayFeatureSubScreen__capOffset(offset, maximum) { var t2, t1 = offset._dx; if (t1 >= 0) if (t1 <= maximum._dx) { t2 = offset._dy; t2 = t2 >= 0 && t2 <= maximum._dy; } else t2 = false; else t2 = false; if (t2) return offset; else return new A.Offset(Math.min(Math.max(0, t1), A.checkNum(maximum._dx)), Math.min(Math.max(0, A.checkNum(offset._dy)), A.checkNum(maximum._dy))); }, DisplayFeatureSubScreen: function DisplayFeatureSubScreen(t0, t1, t2) { this.anchorPoint = t0; this.child = t1; this.key = t2; }, DisplayFeatureSubScreen_avoidBounds_closure: function DisplayFeatureSubScreen_avoidBounds_closure() { }, DisplayFeatureSubScreen_avoidBounds_closure0: function DisplayFeatureSubScreen_avoidBounds_closure0() { }, DisposableBuildContext: function DisposableBuildContext(t0, t1) { this._disposable_build_context$_state = t0; this.$ti = t1; }, _DraggableSheetExtent$(currentSize, hasDragged, initialSize, maxSize, minSize, onSizeChanged, snap, snapSizes) { var t1 = currentSize == null ? new A.ValueNotifier(initialSize, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_double) : currentSize; t1.addListener$1(0, onSizeChanged); return new A._DraggableSheetExtent(minSize, maxSize, false, snapSizes, initialSize, t1, onSizeChanged, 1 / 0, hasDragged === true); }, _InheritedResetNotifier_shouldReset(context) { var t1, wasCalled, widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedResetNotifier); if (widget == null) return false; t1 = widget.notifier; wasCalled = t1._wasCalled; t1._wasCalled = false; return wasCalled; }, DraggableScrollableSheet: function DraggableScrollableSheet(t0, t1, t2, t3, t4) { var _ = this; _.initialChildSize = t0; _.minChildSize = t1; _.expand = t2; _.builder = t3; _.key = t4; }, DraggableScrollableNotification: function DraggableScrollableNotification(t0, t1, t2, t3, t4, t5) { var _ = this; _.extent = t0; _.minExtent = t1; _.maxExtent = t2; _.initialExtent = t3; _.context = t4; _.ViewportNotificationMixin__depth = t5; }, _DraggableSheetExtent: function _DraggableSheetExtent(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._cancelActivity = null; _.minSize = t0; _.maxSize = t1; _.snap = t2; _.snapSizes = t3; _.initialSize = t4; _._draggable_scrollable_sheet$_currentSize = t5; _.onSizeChanged = t6; _.availablePixels = t7; _.hasDragged = t8; }, _DraggableScrollableSheetState: function _DraggableScrollableSheetState(t0) { var _ = this; _.___DraggableScrollableSheetState__extent = _.___DraggableScrollableSheetState__scrollController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DraggableScrollableSheetState__setExtent_closure: function _DraggableScrollableSheetState__setExtent_closure() { }, _DraggableScrollableSheetState_build_closure: function _DraggableScrollableSheetState_build_closure(t0) { this.$this = t0; }, _DraggableScrollableSheetScrollController: function _DraggableScrollableSheetScrollController(t0, t1, t2, t3, t4, t5) { var _ = this; _.extent = t0; _._initialScrollOffset = t1; _.keepScrollOffset = t2; _.debugLabel = t3; _._positions = t4; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t5; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _DraggableScrollableSheetScrollController_createScrollPosition_closure: function _DraggableScrollableSheetScrollController_createScrollPosition_closure(t0) { this.$this = t0; }, _DraggableScrollableSheetScrollPosition: function _DraggableScrollableSheetScrollPosition(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._ballisticCancelCallback = _._dragCancelCallback = null; _.getExtent = t0; _._heldPreviousVelocity = 0; _._userScrollDirection = t1; _._currentDrag = null; _.physics = t2; _.context = t3; _.keepScrollOffset = t4; _.debugLabel = t5; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._scroll_position$_lastMetrics = null; _._haveScheduledUpdateNotification = false; _._semanticActions = _._lastAxis = null; _.isScrollingNotifier = t6; _._activity = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t7; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _DraggableScrollableSheetScrollPosition_goBallistic__tick: function _DraggableScrollableSheetScrollPosition_goBallistic__tick(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.ballisticController = t2; }, _DraggableScrollableSheetScrollPosition_goBallistic_closure: function _DraggableScrollableSheetScrollPosition_goBallistic_closure(t0, t1) { this.$this = t0; this.ballisticController = t1; }, _DraggableScrollableNotification_Notification_ViewportNotificationMixin: function _DraggableScrollableNotification_Notification_ViewportNotificationMixin() { }, DualTransitionBuilder: function DualTransitionBuilder(t0, t1, t2, t3, t4) { var _ = this; _.animation = t0; _.forwardBuilder = t1; _.reverseBuilder = t2; _.child = t3; _.key = t4; }, _DualTransitionBuilderState: function _DualTransitionBuilderState(t0, t1, t2) { var _ = this; _.___DualTransitionBuilderState__effectiveAnimationStatus = $; _._forwardAnimation = t0; _._reverseAnimation = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, TextEditingController$fromValue(value) { var t1 = value == null ? B.TextEditingValue_li8 : value; return new A.TextEditingController(t1, $.$get$ChangeNotifier__emptyListeners()); }, EditableText$(autocorrect, autocorrectionTextRectColor, autofillClient, autofillHints, autofocus, backgroundCursorColor, clipBehavior, controller, cursorColor, cursorHeight, cursorOffset, cursorOpacityAnimates, cursorRadius, cursorWidth, dragStartBehavior, enableIMEPersonalizedLearning, enableInteractiveSelection, enableSuggestions, expands, focusNode, forceLine, inputFormatters, key, keyboardAppearance, keyboardType, maxLines, minLines, mouseCursor, obscureText, obscuringCharacter, onAppPrivateCommand, onChanged, onEditingComplete, onSelectionChanged, onSelectionHandleTapped, onSubmitted, paintCursorAboveText, readOnly, rendererIgnoresPointer, restorationId, scribbleEnabled, scrollController, scrollPadding, scrollPhysics, selectionColor, selectionControls, selectionHeightStyle, selectionWidthStyle, showCursor, showSelectionHandles, smartDashesType, smartQuotesType, strutStyle, style, textAlign, textCapitalization, textDirection, textHeightBehavior, textInputAction, textScaleFactor, textWidthBasis, toolbarOptions) { var t1, t2, t3, t4; if (smartDashesType == null) t1 = obscureText ? B.SmartDashesType_0 : B.SmartDashesType_1; else t1 = smartDashesType; if (smartQuotesType == null) t2 = obscureText ? B.SmartQuotesType_0 : B.SmartQuotesType_1; else t2 = smartQuotesType; t3 = keyboardType == null ? A.EditableText__inferKeyboardType(autofillHints, maxLines) : keyboardType; if (maxLines === 1) { t4 = A._setArrayType([$.$get$FilteringTextInputFormatter_singleLineFormatter()], type$.JSArray_TextInputFormatter); B.JSArray_methods.addAll$1(t4, inputFormatters == null ? B.C_EmptyIterable0 : inputFormatters); } else t4 = inputFormatters; return new A.EditableText(controller, focusNode, obscuringCharacter, obscureText, textHeightBehavior, textWidthBasis, readOnly, forceLine, toolbarOptions, showSelectionHandles, showCursor == null ? !readOnly : showCursor, autocorrect, t1, t2, true, style, strutStyle, textAlign, textDirection, textCapitalization, textScaleFactor, cursorColor, autocorrectionTextRectColor, backgroundCursorColor, maxLines, minLines, expands, autofocus, selectionColor, selectionControls, t3, textInputAction, onChanged, onEditingComplete, onSubmitted, onAppPrivateCommand, onSelectionChanged, onSelectionHandleTapped, t4, mouseCursor, true, cursorWidth, cursorHeight, cursorRadius, cursorOpacityAnimates, cursorOffset, paintCursorAboveText, selectionHeightStyle, selectionWidthStyle, keyboardAppearance, scrollPadding, enableInteractiveSelection, dragStartBehavior, scrollController, scrollPhysics, true, autofillHints, autofillClient, clipBehavior, restorationId, true, key); }, EditableText__inferKeyboardType(autofillHints, maxLines) { return maxLines === 1 ? B.TextInputType_0_null_null : B.TextInputType_1_null_null; }, _Editable__extractChildren(span) { var result = A._setArrayType([], type$.JSArray_Widget); span.visitChildren$1(new A._Editable__extractChildren_closure(result)); return result; }, _UpdateTextSelectionAction$(state, ignoreNonCollapsedSelection, getTextBoundariesForIntent, $T) { return new A._UpdateTextSelectionAction(state, ignoreNonCollapsedSelection, getTextBoundariesForIntent, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), $T._eval$1("_UpdateTextSelectionAction<0>")); }, _throttle(duration, $function, $T) { var t1 = {}; t1.timer = null; t1.calledDuringTimer = false; return new A._throttle_closure(t1, A._Cell$named("arg"), false, $function, duration, $T); }, TextEditingController: function TextEditingController(t0, t1) { var _ = this; _._change_notifier$_value = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ToolbarOptions: function ToolbarOptions(t0, t1, t2, t3) { var _ = this; _.copy = t0; _.cut = t1; _.paste = t2; _.selectAll = t3; }, EditableText: function EditableText(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61) { var _ = this; _.controller = t0; _.focusNode = t1; _.obscuringCharacter = t2; _.obscureText = t3; _.textHeightBehavior = t4; _.textWidthBasis = t5; _.readOnly = t6; _.forceLine = t7; _.toolbarOptions = t8; _.showSelectionHandles = t9; _.showCursor = t10; _.autocorrect = t11; _.smartDashesType = t12; _.smartQuotesType = t13; _.enableSuggestions = t14; _.style = t15; _._editable_text$_strutStyle = t16; _.textAlign = t17; _.textDirection = t18; _.textCapitalization = t19; _.textScaleFactor = t20; _.cursorColor = t21; _.autocorrectionTextRectColor = t22; _.backgroundCursorColor = t23; _.maxLines = t24; _.minLines = t25; _.expands = t26; _.autofocus = t27; _.selectionColor = t28; _.selectionControls = t29; _.keyboardType = t30; _.textInputAction = t31; _.onChanged = t32; _.onEditingComplete = t33; _.onSubmitted = t34; _.onAppPrivateCommand = t35; _.onSelectionChanged = t36; _.onSelectionHandleTapped = t37; _.inputFormatters = t38; _.mouseCursor = t39; _.rendererIgnoresPointer = t40; _.cursorWidth = t41; _.cursorHeight = t42; _.cursorRadius = t43; _.cursorOpacityAnimates = t44; _.cursorOffset = t45; _.paintCursorAboveText = t46; _.selectionHeightStyle = t47; _.selectionWidthStyle = t48; _.keyboardAppearance = t49; _.scrollPadding = t50; _.enableInteractiveSelection = t51; _.dragStartBehavior = t52; _.scrollController = t53; _.scrollPhysics = t54; _.scribbleEnabled = t55; _.autofillHints = t56; _.autofillClient = t57; _.clipBehavior = t58; _.restorationId = t59; _.enableIMEPersonalizedLearning = t60; _.key = t61; }, EditableTextState: function EditableTextState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._cursorTimer = null; _._targetCursorVisibility = false; _._cursorVisibilityNotifier = t0; _._editableKey = t1; _._cursorBlinkOpacityController = _._internalScrollController = _._selectionOverlay = _._textInputConnection = null; _._toolbarLayerLink = t2; _._startHandleLayerLink = t3; _._endHandleLayerLink = t4; _._didAutoFocus = false; _._floatingCursorResetController = _._currentAutofillScope = null; _._tickersEnabled = true; _._lastBoundedOffset = _._pointOffsetOrigin = _._lastTextPosition = _._startCaretRect = _._lastKnownRemoteTextEditingValue = null; _._batchEditDepth = 0; _._restartConnectionScheduled = false; _._currentCaretRect = null; _._showCaretOnScreenScheduled = false; _.__EditableTextState__lastBottomViewInset = $; _._obscureShowCharTicksPending = 0; _._obscureLatestCharIndex = null; _._cursorActive = false; _._cachedText = ""; _._cachedFirstRect = null; _._editable_text$_cachedSize = t5; _._cachedPlaceholder = -1; _._cachedTextStyle = null; _._placeholderLocation = -1; _._currentPromptRectRange = null; _.__EditableTextState__actions = _.__EditableTextState__adjacentLineAction = _.__EditableTextState__updateSelectionAction = _.__EditableTextState__replaceTextAction = $; _.TickerProviderStateMixin__tickers = t6; _.TickerProviderStateMixin__tickerModeNotifier = t7; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t8; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, EditableTextState_cutSelection_closure: function EditableTextState_cutSelection_closure(t0) { this.$this = t0; }, EditableTextState_pasteText_closure: function EditableTextState_pasteText_closure(t0) { this.$this = t0; }, EditableTextState_didChangeDependencies_closure: function EditableTextState_didChangeDependencies_closure(t0) { this.$this = t0; }, EditableTextState__scheduleShowCaretOnScreen_closure: function EditableTextState__scheduleShowCaretOnScreen_closure(t0, t1) { this.$this = t0; this.withAnimation = t1; }, EditableTextState_didChangeMetrics_closure: function EditableTextState_didChangeMetrics_closure(t0) { this.$this = t0; }, EditableTextState__formatAndSetValue_closure: function EditableTextState__formatAndSetValue_closure(t0) { this.$this = t0; }, EditableTextState__cursorTick_closure: function EditableTextState__cursorTick_closure(t0) { this.$this = t0; }, EditableTextState__didChangeTextEditingValue_closure: function EditableTextState__didChangeTextEditingValue_closure() { }, EditableTextState__handleFocusChanged_closure: function EditableTextState__handleFocusChanged_closure(t0) { this.$this = t0; }, EditableTextState__updateSelectionRects_closure: function EditableTextState__updateSelectionRects_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, EditableTextState__updateSelectionRects_closure0: function EditableTextState__updateSelectionRects_closure0(t0) { this.$this = t0; }, EditableTextState__updateSelectionRects_closure1: function EditableTextState__updateSelectionRects_closure1() { }, EditableTextState__updateSizeAndTransform_closure: function EditableTextState__updateSizeAndTransform_closure(t0) { this.$this = t0; }, EditableTextState__updateComposingRectIfNeeded_closure: function EditableTextState__updateComposingRectIfNeeded_closure(t0) { this.$this = t0; }, EditableTextState__updateCaretRectIfNeeded_closure: function EditableTextState__updateCaretRectIfNeeded_closure(t0) { this.$this = t0; }, EditableTextState_insertTextPlaceholder_closure: function EditableTextState_insertTextPlaceholder_closure(t0) { this.$this = t0; }, EditableTextState_removeTextPlaceholder_closure: function EditableTextState_removeTextPlaceholder_closure(t0) { this.$this = t0; }, EditableTextState_showAutocorrectionPromptRect_closure: function EditableTextState_showAutocorrectionPromptRect_closure(t0, t1, t2) { this.$this = t0; this.start = t1; this.end = t2; }, EditableTextState__semanticsOnCopy_closure: function EditableTextState__semanticsOnCopy_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState__semanticsOnCut_closure: function EditableTextState__semanticsOnCut_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState__semanticsOnPaste_closure: function EditableTextState__semanticsOnPaste_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState__actions_closure: function EditableTextState__actions_closure(t0) { this.$this = t0; }, EditableTextState_build_closure0: function EditableTextState_build_closure0(t0) { this.$this = t0; }, EditableTextState_build_closure: function EditableTextState_build_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState_build__closure: function EditableTextState_build__closure(t0) { this.$this = t0; }, _Editable: function _Editable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40) { var _ = this; _.inlineSpan = t0; _.value = t1; _.cursorColor = t2; _.startHandleLayerLink = t3; _.endHandleLayerLink = t4; _.backgroundCursorColor = t5; _.showCursor = t6; _.forceLine = t7; _.readOnly = t8; _.hasFocus = t9; _.maxLines = t10; _.minLines = t11; _.expands = t12; _.strutStyle = t13; _.selectionColor = t14; _.textScaleFactor = t15; _.textAlign = t16; _.textDirection = t17; _.locale = t18; _.obscuringCharacter = t19; _.obscureText = t20; _.textHeightBehavior = t21; _.textWidthBasis = t22; _.offset = t23; _.onCaretChanged = t24; _.rendererIgnoresPointer = t25; _.cursorWidth = t26; _.cursorHeight = t27; _.cursorRadius = t28; _.cursorOffset = t29; _.paintCursorAboveText = t30; _.selectionHeightStyle = t31; _.selectionWidthStyle = t32; _.enableInteractiveSelection = t33; _.textSelectionDelegate = t34; _.devicePixelRatio = t35; _.promptRectRange = t36; _.promptRectColor = t37; _.clipBehavior = t38; _.children = t39; _.key = t40; }, _Editable__extractChildren_closure: function _Editable__extractChildren_closure(t0) { this.result = t0; }, _ScribbleFocusable: function _ScribbleFocusable(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.focusNode = t1; _.editableKey = t2; _.updateSelectionRects = t3; _.enabled = t4; _.key = t5; }, _ScribbleFocusableState: function _ScribbleFocusableState(t0, t1) { var _ = this; _._elementIdentifier = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ScribbleFocusableState_isInScribbleRect_closure: function _ScribbleFocusableState_isInScribbleRect_closure(t0) { this.$this = t0; }, _ScribblePlaceholder: function _ScribblePlaceholder(t0, t1, t2, t3, t4) { var _ = this; _.size = t0; _.child = t1; _.alignment = t2; _.baseline = t3; _.style = t4; }, _TextBoundary: function _TextBoundary() { }, _CodeUnitBoundary: function _CodeUnitBoundary(t0) { this.textEditingValue = t0; }, _WhitespaceBoundary: function _WhitespaceBoundary(t0) { this.textEditingValue = t0; }, _CharacterBoundary: function _CharacterBoundary(t0) { this.textEditingValue = t0; }, _WordBoundary: function _WordBoundary(t0, t1) { this.textLayout = t0; this.textEditingValue = t1; }, _LineBreak: function _LineBreak(t0, t1) { this.textLayout = t0; this.textEditingValue = t1; }, _DocumentBoundary: function _DocumentBoundary(t0) { this.textEditingValue = t0; }, _ExpandedTextBoundary: function _ExpandedTextBoundary(t0, t1) { this.innerTextBoundary = t0; this.outerTextBoundary = t1; }, _CollapsedSelectionBoundary: function _CollapsedSelectionBoundary(t0, t1) { this.innerTextBoundary = t0; this.isForward = t1; }, _MixedBoundary: function _MixedBoundary(t0, t1) { this.leadingTextBoundary = t0; this.trailingTextBoundary = t1; }, _DeleteTextAction: function _DeleteTextAction(t0, t1, t2, t3) { var _ = this; _.state = t0; _.getTextBoundariesForIntent = t1; _._actions$_listeners = t2; _._currentCallingAction = null; _.$ti = t3; }, _UpdateTextSelectionAction: function _UpdateTextSelectionAction(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.ignoreNonCollapsedSelection = t1; _.getTextBoundariesForIntent = t2; _._actions$_listeners = t3; _._currentCallingAction = null; _.$ti = t4; }, _UpdateTextSelectionAction_invoke__collapse: function _UpdateTextSelectionAction_invoke__collapse(t0) { this.intent = t0; }, _ExtendSelectionOrCaretPositionAction: function _ExtendSelectionOrCaretPositionAction(t0, t1, t2) { var _ = this; _.state = t0; _.getTextBoundariesForIntent = t1; _._actions$_listeners = t2; _._currentCallingAction = null; }, _UpdateTextSelectionToAdjacentLineAction: function _UpdateTextSelectionToAdjacentLineAction(t0, t1, t2) { var _ = this; _.state = t0; _._runSelection = _._verticalMovementRun = null; _._actions$_listeners = t1; _._currentCallingAction = null; _.$ti = t2; }, _SelectAllAction: function _SelectAllAction(t0, t1) { this.state = t0; this._actions$_listeners = t1; this._currentCallingAction = null; }, _CopySelectionAction: function _CopySelectionAction(t0, t1) { this.state = t0; this._actions$_listeners = t1; this._currentCallingAction = null; }, _TextEditingHistory: function _TextEditingHistory(t0, t1, t2, t3) { var _ = this; _.child = t0; _.controller = t1; _.onTriggered = t2; _.key = t3; }, _TextEditingHistoryState: function _TextEditingHistoryState(t0, t1) { var _ = this; _._editable_text$_stack = t0; _.___TextEditingHistoryState__throttledPush = $; _._widget = _._throttleTimer = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _UndoStack: function _UndoStack(t0, t1) { this._editable_text$_list = t0; this.___UndoStack__index = $; this.$ti = t1; }, _throttle_closure: function _throttle_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.arg = t1; _.leadingEdge = t2; _.$function = t3; _.duration = t4; _.T = t5; }, _throttle__closure: function _throttle__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.leadingEdge = t1; _.$function = t2; _.arg = t3; }, _EditableTextState_State_AutomaticKeepAliveClientMixin: function _EditableTextState_State_AutomaticKeepAliveClientMixin() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate() { }, combineKeyEventResults(results) { var t1, hasSkipRemainingHandlers, _i; for (t1 = results.length, hasSkipRemainingHandlers = false, _i = 0; _i < t1; ++_i) switch (results[_i]) { case B.KeyEventResult_0: return B.KeyEventResult_0; case B.KeyEventResult_2: hasSkipRemainingHandlers = true; break; case B.KeyEventResult_1: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return hasSkipRemainingHandlers ? B.KeyEventResult_2 : B.KeyEventResult_1; }, FocusNode$(canRequestFocus, debugLabel, descendantsAreFocusable, descendantsAreTraversable, onKey, onKeyEvent, skipTraversal) { return new A.FocusNode(skipTraversal, canRequestFocus, descendantsAreFocusable, descendantsAreTraversable, onKey, onKeyEvent, A._setArrayType([], type$.JSArray_FocusNode), $.$get$ChangeNotifier__emptyListeners()); }, FocusScopeNode$(canRequestFocus, debugLabel, skipTraversal) { var t1 = type$.JSArray_FocusNode; return new A.FocusScopeNode(A._setArrayType([], t1), skipTraversal, canRequestFocus, true, true, null, null, A._setArrayType([], t1), $.$get$ChangeNotifier__emptyListeners()); }, FocusManager__defaultModeForPlatform() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: if ($.WidgetsBinding__instance.RendererBinding__mouseTracker._mouseStates._length !== 0) return B.FocusHighlightMode_1; return B.FocusHighlightMode_0; case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return B.FocusHighlightMode_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, KeyEventResult: function KeyEventResult(t0, t1) { this.index = t0; this._core$_name = t1; }, _Autofocus: function _Autofocus(t0, t1) { this.scope = t0; this.autofocusNode = t1; }, FocusAttachment: function FocusAttachment(t0) { this._node = t0; }, UnfocusDisposition: function UnfocusDisposition(t0, t1) { this.index = t0; this._core$_name = t1; }, FocusNode: function FocusNode(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._skipTraversal = t0; _._focus_manager$_canRequestFocus = t1; _._descendantsAreFocusable = t2; _._descendantsAreTraversable = t3; _._context = null; _.onKey = t4; _.onKeyEvent = t5; _._descendants = _._ancestors = _._manager = null; _._hasKeyboardToken = false; _._focus_manager$_parent = null; _._children = t6; _._attachment = _._focus_manager$_debugLabel = null; _._requestFocusWhenReparented = false; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t7; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, FocusNode_traversalDescendants_closure: function FocusNode_traversalDescendants_closure() { }, FocusNode_debugDescribeChildren_closure: function FocusNode_debugDescribeChildren_closure(t0) { this._box_0 = t0; }, FocusScopeNode: function FocusScopeNode(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._focusedChildren = t0; _._skipTraversal = t1; _._focus_manager$_canRequestFocus = t2; _._descendantsAreFocusable = t3; _._descendantsAreTraversable = t4; _._context = null; _.onKey = t5; _.onKeyEvent = t6; _._descendants = _._ancestors = _._manager = null; _._hasKeyboardToken = false; _._focus_manager$_parent = null; _._children = t7; _._attachment = _._focus_manager$_debugLabel = null; _._requestFocusWhenReparented = false; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t8; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, FocusHighlightMode: function FocusHighlightMode(t0, t1) { this.index = t0; this._core$_name = t1; }, FocusHighlightStrategy: function FocusHighlightStrategy(t0, t1) { this.index = t0; this._core$_name = t1; }, FocusManager: function FocusManager(t0, t1, t2, t3, t4) { var _ = this; _._lastInteractionWasTouch = _._highlightMode = null; _._focus_manager$_listeners = t0; _.rootScope = t1; _._primaryFocus = null; _._dirtyNodes = t2; _._markedForFocus = null; _._pendingAutofocuses = t3; _._haveScheduledUpdate = false; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t4; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _FocusManager_Object_DiagnosticableTreeMixin: function _FocusManager_Object_DiagnosticableTreeMixin() { }, _FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier: function _FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier() { }, _FocusNode_Object_DiagnosticableTreeMixin: function _FocusNode_Object_DiagnosticableTreeMixin() { }, _FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier: function _FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier() { }, Focus$(autofocus, canRequestFocus, child, debugLabel, descendantsAreFocusable, descendantsAreTraversable, focusNode, includeSemantics, key, onFocusChange, onKey, onKeyEvent, skipTraversal) { return new A.Focus(child, focusNode, autofocus, onFocusChange, onKeyEvent, onKey, canRequestFocus, skipTraversal, descendantsAreFocusable, descendantsAreTraversable, includeSemantics, debugLabel, key); }, Focus_maybeOf(context, scopeOk) { var marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker), node = marker == null ? null : marker.notifier; if (node == null) return null; return node; }, _FocusState$() { return new A._FocusState(B._StateLifecycle_0); }, FocusScope$(autofocus, child, key, node) { var _null = null; return new A.FocusScope(child, node, autofocus, _null, _null, _null, _null, _null, _null, _null, true, _null, key); }, FocusScope_of(context) { var t1, marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker); if (marker == null) t1 = null; else { t1 = marker.notifier; t1 = t1 == null ? null : t1.get$nearestScope(); } return t1 == null ? context._owner.focusManager.rootScope : t1; }, _FocusMarker$(child, node) { return new A._FocusMarker(node, child, null); }, Focus: function Focus(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.child = t0; _.focusNode = t1; _.autofocus = t2; _.onFocusChange = t3; _._onKeyEvent = t4; _._onKey = t5; _._canRequestFocus = t6; _._focus_scope$_skipTraversal = t7; _._focus_scope$_descendantsAreFocusable = t8; _._focus_scope$_descendantsAreTraversable = t9; _.includeSemantics = t10; _._focus_scope$_debugLabel = t11; _.key = t12; }, _FocusState: function _FocusState(t0) { var _ = this; _._internalNode = null; _.___FocusState__descendantsWereTraversable = _.___FocusState__descendantsWereFocusable = _.___FocusState__couldRequestFocus = _.___FocusState__hadPrimaryFocus = $; _._didAutofocus = false; _._widget = _._focusAttachment = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusState__handleFocusChanged_closure: function _FocusState__handleFocusChanged_closure(t0, t1) { this.$this = t0; this.hasPrimaryFocus = t1; }, _FocusState__handleFocusChanged_closure0: function _FocusState__handleFocusChanged_closure0(t0, t1) { this.$this = t0; this.canRequestFocus = t1; }, _FocusState__handleFocusChanged_closure1: function _FocusState__handleFocusChanged_closure1(t0, t1) { this.$this = t0; this.descendantsAreFocusable = t1; }, _FocusState__handleFocusChanged_closure2: function _FocusState__handleFocusChanged_closure2(t0, t1) { this.$this = t0; this.descendantsAreTraversable = t1; }, FocusScope: function FocusScope(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.child = t0; _.focusNode = t1; _.autofocus = t2; _.onFocusChange = t3; _._onKeyEvent = t4; _._onKey = t5; _._canRequestFocus = t6; _._focus_scope$_skipTraversal = t7; _._focus_scope$_descendantsAreFocusable = t8; _._focus_scope$_descendantsAreTraversable = t9; _.includeSemantics = t10; _._focus_scope$_debugLabel = t11; _.key = t12; }, _FocusScopeState: function _FocusScopeState(t0) { var _ = this; _._internalNode = null; _.___FocusState__descendantsWereTraversable = _.___FocusState__descendantsWereFocusable = _.___FocusState__couldRequestFocus = _.___FocusState__hadPrimaryFocus = $; _._didAutofocus = false; _._widget = _._focusAttachment = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusMarker: function _FocusMarker(t0, t1, t2) { this.notifier = t0; this.child = t1; this.key = t2; }, ExcludeFocus: function ExcludeFocus(t0, t1, t2) { this.excluding = t0; this.child = t1; this.key = t2; }, _getAncestor(context, count) { var t1 = {}; t1.count = count; t1.target = null; context.visitAncestorElements$1(new A._getAncestor_closure(t1)); return t1.target; }, _focusAndEnsureVisible(node, alignmentPolicy) { var t1; node.requestFocus$0(); t1 = node._context; t1.toString; A.Scrollable_ensureVisible(t1, 1, alignmentPolicy); }, _FocusTraversalGroupInfo$(marker, defaultPolicy, members) { var t1 = marker == null ? null : marker.policy; if (t1 == null) t1 = defaultPolicy; return new A._FocusTraversalGroupInfo(t1, members); }, _ReadingOrderSortData_commonDirectionalityOf(list) { var common, common0, t1 = A._arrayInstanceType(list)._eval$1("MappedListIterable<1,Set>"), allAncestors = new A.MappedListIterable(list, new A._ReadingOrderSortData_commonDirectionalityOf_closure(), t1); for (t1 = new A.ListIterator(allAncestors, allAncestors.get$length(allAncestors), t1._eval$1("ListIterator")), common = null; t1.moveNext$0();) { common0 = t1.__internal$_current; common = (common == null ? common0 : common).intersection$1(0, common0); } if (common.get$isEmpty(common)) return B.JSArray_methods.get$first(list).directionality; t1 = B.JSArray_methods.get$first(list).get$directionalAncestors(); return (t1 && B.JSArray_methods).firstWhere$1(t1, common.get$contains(common)).textDirection; }, _ReadingOrderSortData_sortWithDirectionality(list, directionality) { A.mergeSort(list, new A._ReadingOrderSortData_sortWithDirectionality_closure(directionality), type$._ReadingOrderSortData); }, _ReadingOrderDirectionalGroupData_sortWithDirectionality(list, directionality) { A.mergeSort(list, new A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure(directionality), type$._ReadingOrderDirectionalGroupData); }, FocusTraversalGroup$(child, descendantsAreFocusable, descendantsAreTraversable, policy) { return new A.FocusTraversalGroup(policy == null ? new A.ReadingOrderTraversalPolicy(A.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData)) : policy, descendantsAreFocusable, descendantsAreTraversable, child, null); }, _getAncestor_closure: function _getAncestor_closure(t0) { this._box_0 = t0; }, _FocusTraversalGroupInfo: function _FocusTraversalGroupInfo(t0, t1) { this.policy = t0; this.members = t1; }, TraversalDirection: function TraversalDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, FocusTraversalPolicy: function FocusTraversalPolicy() { }, FocusTraversalPolicy__sortAllDescendants_visitGroups: function FocusTraversalPolicy__sortAllDescendants_visitGroups(t0, t1) { this.groups = t0; this.sortedDescendants = t1; }, FocusTraversalPolicy__sortAllDescendants_closure: function FocusTraversalPolicy__sortAllDescendants_closure() { }, _DirectionalPolicyDataEntry: function _DirectionalPolicyDataEntry(t0, t1) { this.direction = t0; this.node = t1; }, _DirectionalPolicyData: function _DirectionalPolicyData(t0) { this.history = t0; }, DirectionalFocusTraversalPolicyMixin: function DirectionalFocusTraversalPolicyMixin() { }, _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure: function _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure(t0) { this.node = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure(t0, t1) { this.vertical = t0; this.first = t1; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure() { }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure() { }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate: function DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate(t0, t1, t2) { this.$this = t0; this.policyData = t1; this.nearestScope = t2; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure: function DirectionalFocusTraversalPolicyMixin_inDirection_closure(t0) { this.focusedScrollable = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure0: function DirectionalFocusTraversalPolicyMixin_inDirection_closure0(t0) { this.band = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure1: function DirectionalFocusTraversalPolicyMixin_inDirection_closure1(t0) { this.focusedChild = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure2: function DirectionalFocusTraversalPolicyMixin_inDirection_closure2(t0) { this.focusedScrollable = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure3: function DirectionalFocusTraversalPolicyMixin_inDirection_closure3(t0) { this.band = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure4: function DirectionalFocusTraversalPolicyMixin_inDirection_closure4(t0) { this.focusedChild = t0; }, _ReadingOrderSortData: function _ReadingOrderSortData(t0, t1, t2) { var _ = this; _.directionality = t0; _.rect = t1; _.node = t2; _._directionalAncestors = null; }, _ReadingOrderSortData_commonDirectionalityOf_closure: function _ReadingOrderSortData_commonDirectionalityOf_closure() { }, _ReadingOrderSortData_sortWithDirectionality_closure: function _ReadingOrderSortData_sortWithDirectionality_closure(t0) { this.directionality = t0; }, _ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors: function _ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors() { }, _ReadingOrderDirectionalGroupData: function _ReadingOrderDirectionalGroupData(t0) { this.members = t0; this._rect = null; }, _ReadingOrderDirectionalGroupData_rect_closure: function _ReadingOrderDirectionalGroupData_rect_closure() { }, _ReadingOrderDirectionalGroupData_sortWithDirectionality_closure: function _ReadingOrderDirectionalGroupData_sortWithDirectionality_closure(t0) { this.directionality = t0; }, ReadingOrderTraversalPolicy: function ReadingOrderTraversalPolicy(t0) { this.DirectionalFocusTraversalPolicyMixin__policyData = t0; }, ReadingOrderTraversalPolicy__pickNext_closure: function ReadingOrderTraversalPolicy__pickNext_closure() { }, ReadingOrderTraversalPolicy__pickNext_inBand: function ReadingOrderTraversalPolicy__pickNext_inBand() { }, ReadingOrderTraversalPolicy__pickNext_inBand_closure: function ReadingOrderTraversalPolicy__pickNext_inBand_closure(t0) { this.band = t0; }, FocusTraversalGroup: function FocusTraversalGroup(t0, t1, t2, t3, t4) { var _ = this; _.policy = t0; _.descendantsAreFocusable = t1; _.descendantsAreTraversable = t2; _.child = t3; _.key = t4; }, _FocusTraversalGroupState: function _FocusTraversalGroupState(t0) { var _ = this; _._widget = _.focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusTraversalGroupMarker: function _FocusTraversalGroupMarker(t0, t1, t2, t3) { var _ = this; _.policy = t0; _.focusNode = t1; _.child = t2; _.key = t3; }, RequestFocusAction: function RequestFocusAction(t0) { this._actions$_listeners = t0; this._currentCallingAction = null; }, NextFocusIntent: function NextFocusIntent() { }, NextFocusAction: function NextFocusAction(t0) { this._actions$_listeners = t0; this._currentCallingAction = null; }, PreviousFocusIntent: function PreviousFocusIntent() { }, PreviousFocusAction: function PreviousFocusAction(t0) { this._actions$_listeners = t0; this._currentCallingAction = null; }, DirectionalFocusIntent: function DirectionalFocusIntent(t0) { this.direction = t0; }, DirectionalFocusAction: function DirectionalFocusAction(t0, t1) { this._isForTextField = t0; this._actions$_listeners = t1; this._currentCallingAction = null; }, _FocusTraversalPolicy_Object_Diagnosticable: function _FocusTraversalPolicy_Object_Diagnosticable() { }, _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin: function _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin() { }, __ReadingOrderDirectionalGroupData_Object_Diagnosticable: function __ReadingOrderDirectionalGroupData_Object_Diagnosticable() { }, __ReadingOrderSortData_Object_Diagnosticable: function __ReadingOrderSortData_Object_Diagnosticable() { }, Form$(autovalidateMode, child, key) { return new A.Form(child, autovalidateMode == null ? B.AutovalidateMode_0 : autovalidateMode, key); }, Form_of(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._FormScope); return scope == null ? null : scope._formState; }, FormFieldState$($T) { var _null = null, t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.FormFieldState(new A.RestorableStringN(_null, t1), new A.RestorableBool(false, t1), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0, $T._eval$1("FormFieldState<0>")); }, Form: function Form(t0, t1, t2) { this.child = t0; this.autovalidateMode = t1; this.key = t2; }, FormState: function FormState(t0, t1) { var _ = this; _._generation = 0; _._hasInteractedByUser = false; _._fields = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, FormState__fieldDidChange_closure: function FormState__fieldDidChange_closure() { }, FormState__forceRebuild_closure: function FormState__forceRebuild_closure(t0) { this.$this = t0; }, _FormScope: function _FormScope(t0, t1, t2, t3) { var _ = this; _._formState = t0; _._generation = t1; _.child = t2; _.key = t3; }, FormField: function FormField() { }, FormFieldState: function FormFieldState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.__FormFieldState__value = $; _._errorText = t0; _._hasInteractedByUser = t1; _.RestorationMixin__bucket = t2; _.RestorationMixin__properties = t3; _.RestorationMixin__debugPropertiesWaitingForReregistration = t4; _.RestorationMixin__firstRestorePending = t5; _.RestorationMixin__currentParent = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; _.$ti = t8; }, FormFieldState_validate_closure: function FormFieldState_validate_closure(t0) { this.$this = t0; }, FormFieldState_didChange_closure: function FormFieldState_didChange_closure(t0, t1) { this.$this = t0; this.value = t1; }, AutovalidateMode: function AutovalidateMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _FormFieldState_State_RestorationMixin_dispose_closure: function _FormFieldState_State_RestorationMixin_dispose_closure() { }, _FormFieldState_State_RestorationMixin: function _FormFieldState_State_RestorationMixin() { }, GlobalKey_GlobalKey(debugLabel, $T) { return new A.LabeledGlobalKey(debugLabel, $T._eval$1("LabeledGlobalKey<0>")); }, _InactiveElements__deactivateRecursively(element) { element.deactivate$0(); element.visitChildren$1(A.framework__InactiveElements__deactivateRecursively$closure()); }, Element__sort(a, b) { var t1, _s6_ = "_depth"; if (A._lateReadCheck(a.__Element__depth, _s6_) < A._lateReadCheck(b.__Element__depth, _s6_)) return -1; if (A._lateReadCheck(b.__Element__depth, _s6_) < A._lateReadCheck(a.__Element__depth, _s6_)) return 1; t1 = b._dirty; if (t1 && !a._dirty) return -1; if (a._dirty && !t1) return 1; return 0; }, Element__activateRecursively(element) { element.activate$0(); element.visitChildren$1(A.framework_Element__activateRecursively$closure()); }, _ElementDiagnosticableTreeNode$($name, stateful, style, value) { return new A._ElementDiagnosticableTreeNode(stateful, value, $name, true, true, null, style); }, ErrorWidget__defaultErrorWidgetBuilder(details) { var exception = details.exception, t1 = exception instanceof A.FlutterError ? exception : null; return new A.ErrorWidget("", t1, new A.UniqueKey()); }, ErrorWidget__stringify(exception) { var t1, exception; try { t1 = J.toString$0$(exception); return t1; } catch (exception) { } return "Error"; }, StatefulElement$(widget) { var t1 = widget.createState$0(), t2 = new A.StatefulElement(t1, widget, B._ElementLifecycle_0); t1._framework$_element = t2; t1._widget = widget; return t2; }, InheritedElement$(widget) { return new A.InheritedElement(A.HashMap_HashMap(null, null, null, type$.Element_2, type$.nullable_Object), widget, B._ElementLifecycle_0); }, MultiChildRenderObjectElement$(widget) { return new A.MultiChildRenderObjectElement(A.HashSet_HashSet(type$.Element_2), widget, B._ElementLifecycle_0); }, _debugReportException(context, exception, stack, informationCollector) { var details = new A.FlutterErrorDetails(exception, stack, "widgets library", context, null, informationCollector, false); A.FlutterError_reportError(details); return details; }, _debugShouldReassemble(config, widget) { var t1; if (config != null) { t1 = config.widgetName; if (t1 != null) t1 = (widget == null ? null : A._rtiToString(A.getRuntimeType(widget)._rti, null)) === t1; else t1 = true; } else t1 = true; return t1; }, ObjectKey: function ObjectKey(t0) { this.value = t0; }, GlobalKey: function GlobalKey() { }, LabeledGlobalKey: function LabeledGlobalKey(t0, t1) { this._debugLabel = t0; this.$ti = t1; }, GlobalObjectKey: function GlobalObjectKey(t0, t1) { this.value = t0; this.$ti = t1; }, Widget: function Widget() { }, StatelessWidget: function StatelessWidget() { }, StatefulWidget: function StatefulWidget() { }, _StateLifecycle: function _StateLifecycle(t0, t1) { this.index = t0; this._core$_name = t1; }, State: function State() { }, ProxyWidget: function ProxyWidget() { }, ParentDataWidget: function ParentDataWidget() { }, InheritedWidget: function InheritedWidget() { }, RenderObjectWidget: function RenderObjectWidget() { }, LeafRenderObjectWidget: function LeafRenderObjectWidget() { }, SingleChildRenderObjectWidget: function SingleChildRenderObjectWidget() { }, MultiChildRenderObjectWidget: function MultiChildRenderObjectWidget() { }, _ElementLifecycle: function _ElementLifecycle(t0, t1) { this.index = t0; this._core$_name = t1; }, _InactiveElements: function _InactiveElements(t0) { this._locked = false; this._framework$_elements = t0; }, _InactiveElements__unmount_closure: function _InactiveElements__unmount_closure(t0, t1) { this.$this = t0; this.element = t1; }, BuildOwner: function BuildOwner(t0, t1, t2, t3) { var _ = this; _.onBuildScheduled = null; _._inactiveElements = t0; _._dirtyElements = t1; _._scheduledFlushDirtyElements = false; _._dirtyElementsNeedsResorting = null; _.focusManager = t2; _._debugStateLockLevel = 0; _._debugBuilding = false; _._debugElementsThatWillNeedToBeRebuiltDueToGlobalKeyShenanigans = _._debugCurrentBuildTarget = null; _._globalKeyRegistry = t3; }, BuildOwner_buildScope_closure: function BuildOwner_buildScope_closure(t0, t1, t2) { this._box_1 = t0; this.$this = t1; this.element = t2; }, NotifiableElementMixin: function NotifiableElementMixin() { }, _NotificationNode: function _NotificationNode(t0, t1) { this.current = t0; this.parent = t1; }, Element0: function Element0() { }, Element_reassemble_closure: function Element_reassemble_closure(t0) { this.$this = t0; }, Element_renderObject_visit: function Element_renderObject_visit(t0) { this._box_0 = t0; }, Element_updateSlotForChild_visit: function Element_updateSlotForChild_visit(t0) { this.newSlot = t0; }, Element__updateDepth_closure: function Element__updateDepth_closure(t0) { this.expectedDepth = t0; }, Element_detachRenderObject_closure: function Element_detachRenderObject_closure() { }, Element_attachRenderObject_closure: function Element_attachRenderObject_closure(t0) { this.newSlot = t0; }, Element_debugDescribeChildren_closure: function Element_debugDescribeChildren_closure(t0) { this.children = t0; }, _ElementDiagnosticableTreeNode: function _ElementDiagnosticableTreeNode(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.stateful = t0; _.value = t1; _._cachedBuilder = null; _.name = t2; _.showSeparator = t3; _.showName = t4; _.linePrefix = t5; _.style = t6; }, ErrorWidget: function ErrorWidget(t0, t1, t2) { this.message = t0; this._flutterError = t1; this.key = t2; }, ComponentElement: function ComponentElement() { }, ComponentElement_performRebuild_closure: function ComponentElement_performRebuild_closure(t0) { this.$this = t0; }, ComponentElement_performRebuild_closure0: function ComponentElement_performRebuild_closure0(t0) { this.$this = t0; }, StatelessElement: function StatelessElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, StatefulElement: function StatefulElement(t0, t1, t2) { var _ = this; _._framework$_state = t0; _._didChangeDependencies = false; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, ProxyElement: function ProxyElement() { }, ParentDataElement: function ParentDataElement(t0, t1, t2) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t2; }, ParentDataElement__applyParentData_applyParentDataToChild: function ParentDataElement__applyParentData_applyParentDataToChild(t0) { this.widget = t0; }, InheritedElement: function InheritedElement(t0, t1, t2) { var _ = this; _._dependents = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, RenderObjectElement: function RenderObjectElement() { }, RenderObjectElement_updateChildren_replaceWithNullIfForgotten: function RenderObjectElement_updateChildren_replaceWithNullIfForgotten(t0) { this.forgottenChildren = t0; }, RenderObjectElement_updateChildren_slotFor: function RenderObjectElement_updateChildren_slotFor(t0) { this.slots = t0; }, RootRenderObjectElement: function RootRenderObjectElement() { }, LeafRenderObjectElement: function LeafRenderObjectElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, SingleChildRenderObjectElement: function SingleChildRenderObjectElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, MultiChildRenderObjectElement: function MultiChildRenderObjectElement(t0, t1, t2) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, MultiChildRenderObjectElement_children_closure: function MultiChildRenderObjectElement_children_closure(t0) { this.$this = t0; }, IndexedSlot: function IndexedSlot(t0, t1, t2) { this.value = t0; this.index = t1; this.$ti = t2; }, _NullElement: function _NullElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _NullWidget1: function _NullWidget1(t0) { this.key = t0; }, _State_Object_Diagnosticable: function _State_Object_Diagnosticable() { }, GestureDetector$(behavior, child, dragStartBehavior, excludeFromSemantics, key, onDoubleTap, onHorizontalDragCancel, onHorizontalDragDown, onHorizontalDragEnd, onHorizontalDragStart, onHorizontalDragUpdate, onLongPress, onPanCancel, onPanDown, onPanEnd, onPanStart, onPanUpdate, onScaleEnd, onScaleStart, onScaleUpdate, onTap, onTapCancel, onTapDown, onTapUp, onVerticalDragEnd, onVerticalDragStart, onVerticalDragUpdate) { return new A.GestureDetector(child, onTapDown, onTapUp, onTap, onTapCancel, onDoubleTap, onLongPress, onVerticalDragStart, onVerticalDragUpdate, onVerticalDragEnd, onHorizontalDragDown, onHorizontalDragStart, onHorizontalDragUpdate, onHorizontalDragEnd, onHorizontalDragCancel, onPanDown, onPanStart, onPanUpdate, onPanEnd, onPanCancel, onScaleStart, onScaleUpdate, onScaleEnd, behavior, excludeFromSemantics, dragStartBehavior, key); }, GestureRecognizerFactory: function GestureRecognizerFactory() { }, GestureRecognizerFactoryWithHandlers: function GestureRecognizerFactoryWithHandlers(t0, t1, t2) { this._constructor = t0; this._initializer = t1; this.$ti = t2; }, GestureDetector: function GestureDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.child = t0; _.onTapDown = t1; _.onTapUp = t2; _.onTap = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onVerticalDragStart = t7; _.onVerticalDragUpdate = t8; _.onVerticalDragEnd = t9; _.onHorizontalDragDown = t10; _.onHorizontalDragStart = t11; _.onHorizontalDragUpdate = t12; _.onHorizontalDragEnd = t13; _.onHorizontalDragCancel = t14; _.onPanDown = t15; _.onPanStart = t16; _.onPanUpdate = t17; _.onPanEnd = t18; _.onPanCancel = t19; _.onScaleStart = t20; _.onScaleUpdate = t21; _.onScaleEnd = t22; _.behavior = t23; _.excludeFromSemantics = t24; _.dragStartBehavior = t25; _.key = t26; }, GestureDetector_build_closure: function GestureDetector_build_closure(t0) { this.$this = t0; }, GestureDetector_build_closure0: function GestureDetector_build_closure0(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure1: function GestureDetector_build_closure1(t0) { this.$this = t0; }, GestureDetector_build_closure2: function GestureDetector_build_closure2(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure3: function GestureDetector_build_closure3(t0) { this.$this = t0; }, GestureDetector_build_closure4: function GestureDetector_build_closure4(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure5: function GestureDetector_build_closure5(t0) { this.$this = t0; }, GestureDetector_build_closure6: function GestureDetector_build_closure6(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure7: function GestureDetector_build_closure7(t0) { this.$this = t0; }, GestureDetector_build_closure8: function GestureDetector_build_closure8(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure9: function GestureDetector_build_closure9(t0) { this.$this = t0; }, GestureDetector_build_closure10: function GestureDetector_build_closure10(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, GestureDetector_build_closure11: function GestureDetector_build_closure11(t0) { this.$this = t0; }, GestureDetector_build_closure12: function GestureDetector_build_closure12(t0, t1) { this.$this = t0; this.gestureSettings = t1; }, RawGestureDetector: function RawGestureDetector(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.gestures = t1; _.behavior = t2; _.excludeFromSemantics = t3; _.semantics = t4; _.key = t5; }, RawGestureDetectorState: function RawGestureDetectorState(t0, t1) { var _ = this; _._recognizers = t0; _._widget = _._gesture_detector$_semantics = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GestureSemantics: function _GestureSemantics(t0, t1, t2, t3) { var _ = this; _.behavior = t0; _.assignSemantics = t1; _.child = t2; _.key = t3; }, SemanticsGestureDelegate: function SemanticsGestureDelegate() { }, _DefaultSemanticsGestureDelegate: function _DefaultSemanticsGestureDelegate(t0) { this.detectorState = t0; }, _DefaultSemanticsGestureDelegate__getTapHandler_closure: function _DefaultSemanticsGestureDelegate__getTapHandler_closure(t0) { this.tap = t0; }, _DefaultSemanticsGestureDelegate__getLongPressHandler_closure: function _DefaultSemanticsGestureDelegate__getLongPressHandler_closure(t0) { this.longPress = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure(t0) { this.horizontal = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0(t0) { this.pan = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1(t0, t1) { this.horizontalHandler = t0; this.panHandler = t1; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure(t0) { this.vertical = t0; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0(t0) { this.pan = t0; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1(t0, t1) { this.verticalHandler = t0; this.panHandler = t1; }, Hero__allHeroesFor(context, isUserGestureTransition, $navigator) { var result = A.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$._HeroState); context.visitChildren$1(new A.Hero__allHeroesFor_visitor($navigator, new A.Hero__allHeroesFor_inviteHero(result, isUserGestureTransition))); return result; }, _HeroFlightManifest__boundingBoxFor(context, ancestorContext) { var t2, t1 = context.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1.getTransformTo$1(0, ancestorContext == null ? null : ancestorContext.get$renderObject()); t1 = t1._box$_size; return A.MatrixUtils_transformRect(t2, new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); }, HeroFlightDirection: function HeroFlightDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, Hero: function Hero(t0, t1, t2) { this.tag = t0; this.child = t1; this.key = t2; }, Hero__allHeroesFor_inviteHero: function Hero__allHeroesFor_inviteHero(t0, t1) { this.result = t0; this.isUserGestureTransition = t1; }, Hero__allHeroesFor_visitor: function Hero__allHeroesFor_visitor(t0, t1) { this.navigator = t0; this.inviteHero = t1; }, _HeroState: function _HeroState(t0, t1) { var _ = this; _._heroes$_key = t0; _._placeholderSize = null; _._shouldIncludeChild = true; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _HeroState_startFlight_closure: function _HeroState_startFlight_closure(t0, t1) { this.$this = t0; this.box = t1; }, _HeroState_endFlight_closure: function _HeroState_endFlight_closure() { }, _HeroFlightManifest: function _HeroFlightManifest(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.type = t0; _.overlay = t1; _.navigatorSize = t2; _.fromRoute = t3; _.toRoute = t4; _.fromHero = t5; _.toHero = t6; _.createRectTween = t7; _.shuttleBuilder = t8; _.isUserGestureTransition = t9; _.isDiverted = t10; _.___HeroFlightManifest_isValid = _.___HeroFlightManifest_toHeroLocation = _.___HeroFlightManifest_fromHeroLocation = $; }, _HeroFlight: function _HeroFlight(t0, t1) { var _ = this; _.onFlightEnded = t0; _.___HeroFlight_heroRectTween = $; _.shuttle = null; _._heroOpacity = t1; _.___HeroFlight_manifest = _.___HeroFlight__proxyAnimation = $; _.overlayEntry = null; _._scheduledPerformAnimationUpdate = _._aborted = false; }, _HeroFlight__buildOverlay_closure: function _HeroFlight__buildOverlay_closure(t0) { this.$this = t0; }, _HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate: function _HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate(t0, t1) { this.$this = t0; this.navigator = t1; }, HeroController: function HeroController(t0, t1) { this.createRectTween = t0; this._flights = t1; this._navigator$_navigator = null; }, HeroController_didStopUserGesture_isInvalidFlight: function HeroController_didStopUserGesture_isInvalidFlight() { }, HeroController__maybeStartHeroTransition_closure: function HeroController__maybeStartHeroTransition_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.from = t1; _.to = t2; _.flightType = t3; _.isUserGestureTransition = t4; }, Icon$(icon, color, size) { return new A.Icon(icon, size, color, null); }, Icon: function Icon(t0, t1, t2, t3) { var _ = this; _.icon = t0; _.size = t1; _.color = t2; _.key = t3; }, IconData: function IconData(t0, t1, t2, t3) { var _ = this; _.codePoint = t0; _.fontFamily = t1; _.fontPackage = t2; _.matchTextDirection = t3; }, IconTheme$(child, data, key) { return new A.IconTheme(data, child, key); }, IconTheme_merge(child, data) { return new A.Builder(new A.IconTheme_merge_closure(null, data, child), null); }, IconTheme_of(context) { var t3, t4, iconThemeData = A.IconTheme__getInheritedIconThemeData(context).resolve$1(0, context), t1 = iconThemeData.color, t2 = t1 == null; if (!t2 && iconThemeData.get$opacity(iconThemeData) != null && iconThemeData.size != null) t1 = iconThemeData; else { t3 = iconThemeData.size; if (t3 == null) t3 = 24; if (t2) t1 = B.Color_4278190080; t2 = iconThemeData.get$opacity(iconThemeData); if (t2 == null) t2 = B.IconThemeData_UfZ.get$opacity(B.IconThemeData_UfZ); t4 = iconThemeData.shadows; t1 = iconThemeData.copyWith$4$color$opacity$shadows$size(t1, t2, t4 == null ? null : t4, t3); } return t1; }, IconTheme__getInheritedIconThemeData(context) { var iconTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$.IconTheme), t1 = iconTheme == null ? null : iconTheme.data; return t1 == null ? B.IconThemeData_UfZ : t1; }, IconTheme: function IconTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, IconTheme_merge_closure: function IconTheme_merge_closure(t0, t1, t2) { this.key = t0; this.data = t1; this.child = t2; }, IconThemeData_lerp(a, b, t) { var t4, t5, _null = null, t1 = a == null, t2 = t1 ? _null : a.color, t3 = b == null; t2 = A.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.get$opacity(a); t4 = A.lerpDouble(t4, t3 ? _null : b.get$opacity(b), t); t5 = t1 ? _null : a.size; t5 = A.lerpDouble(t5, t3 ? _null : b.size, t); t1 = t1 ? _null : a.shadows; return new A.IconThemeData(t2, t4, t5, A.Shadow_lerpList(t1, t3 ? _null : b.shadows, t)); }, IconThemeData: function IconThemeData(t0, t1, t2, t3) { var _ = this; _.color = t0; _._opacity = t1; _.size = t2; _.shadows = t3; }, _IconThemeData_Object_Diagnosticable: function _IconThemeData_Object_Diagnosticable() { }, createLocalImageConfiguration(context, size) { var t1, t2; context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultAssetBundle); t1 = $.$get$rootBundle(); t2 = A.MediaQuery_maybeOf(context); t2 = t2 == null ? null : t2.devicePixelRatio; if (t2 == null) t2 = 1; return new A.ImageConfiguration(t1, t2, A.Localizations_maybeLocaleOf(context), A.Directionality_maybeOf(context), size, A.defaultTargetPlatform()); }, Image$(alignment, color, colorBlendMode, errorBuilder, filterQuality, fit, frameBuilder, height, image, key, loadingBuilder, matchTextDirection, repeat, width) { return new A.Image(image, frameBuilder, loadingBuilder, errorBuilder, width, height, color, filterQuality, colorBlendMode, fit, alignment, repeat, false, key); }, Image$network(src, fit, height, key, width) { var _null = null; return new A.Image(A.ResizeImage_resizeIfNeeded(_null, _null, new A.NetworkImage(src, 1, _null)), _null, _null, _null, width, height, _null, B.FilterQuality_1, _null, fit, B.Alignment_0_0, B.ImageRepeat_3, false, key); }, Image$asset($name, height, width) { var _null = null; return new A.Image(A.ResizeImage_resizeIfNeeded(_null, _null, new A.AssetImage($name, _null, _null)), _null, _null, _null, width, height, _null, B.FilterQuality_1, _null, _null, B.Alignment_0_0, B.ImageRepeat_3, false, _null); }, Image: function Image(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.image = t0; _.frameBuilder = t1; _.loadingBuilder = t2; _.errorBuilder = t3; _.width = t4; _.height = t5; _.color = t6; _.filterQuality = t7; _.colorBlendMode = t8; _.fit = t9; _.alignment = t10; _.repeat = t11; _.matchTextDirection = t12; _.key = t13; }, _ImageState: function _ImageState(t0) { var _ = this; _._loadingProgress = _._imageInfo = _._imageStream = null; _._isListeningToStream = false; _.___ImageState__invertColors = $; _._frameNumber = null; _._wasSynchronouslyLoaded = false; _.___ImageState__scrollAwareContext = $; _._widget = _._imageStreamListener = _._completerHandle = _._lastStack = _._lastException = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ImageState__getListener_closure: function _ImageState__getListener_closure(t0) { this.$this = t0; }, _ImageState__getListener__closure: function _ImageState__getListener__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _ImageState__handleImageFrame_closure: function _ImageState__handleImageFrame_closure(t0, t1, t2) { this.$this = t0; this.imageInfo = t1; this.synchronousCall = t2; }, _ImageState__handleImageChunk_closure: function _ImageState__handleImageChunk_closure(t0, t1) { this.$this = t0; this.event = t1; }, _ImageState__updateSourceStream_closure: function _ImageState__updateSourceStream_closure(t0) { this.$this = t0; }, _ImageState__updateSourceStream_closure0: function _ImageState__updateSourceStream_closure0(t0) { this.$this = t0; }, __ImageState_State_WidgetsBindingObserver: function __ImageState_State_WidgetsBindingObserver() { }, DecorationTween$(begin, end) { return new A.DecorationTween(begin, end); }, AnimatedContainer$(child, color, curve, decoration, duration, height, key, margin, padding, width) { var t1, t2, _null = null; if (decoration == null) t1 = color != null ? new A.BoxDecoration(color, _null, _null, _null, _null, _null, B.BoxShape_0) : _null; else t1 = decoration; if (width != null || height != null) t2 = A.BoxConstraints$tightFor(height, width); else t2 = _null; return new A.AnimatedContainer(child, padding, t1, t2, margin, curve, duration, _null, key); }, AnimatedOpacity$(alwaysIncludeSemantics, child, curve, duration, opacity) { return new A.AnimatedOpacity(child, opacity, alwaysIncludeSemantics, curve, duration, null, null); }, AnimatedDefaultTextStyle$(child, curve, duration, softWrap, style) { return new A.AnimatedDefaultTextStyle(child, style, softWrap, curve, duration, null, null); }, BoxConstraintsTween: function BoxConstraintsTween(t0, t1) { this.begin = t0; this.end = t1; }, DecorationTween: function DecorationTween(t0, t1) { this.begin = t0; this.end = t1; }, EdgeInsetsGeometryTween: function EdgeInsetsGeometryTween(t0, t1) { this.begin = t0; this.end = t1; }, BorderRadiusTween: function BorderRadiusTween(t0, t1) { this.begin = t0; this.end = t1; }, Matrix4Tween: function Matrix4Tween(t0, t1) { this.begin = t0; this.end = t1; }, TextStyleTween: function TextStyleTween(t0, t1) { this.begin = t0; this.end = t1; }, ImplicitlyAnimatedWidget: function ImplicitlyAnimatedWidget() { }, ImplicitlyAnimatedWidgetState: function ImplicitlyAnimatedWidgetState() { }, ImplicitlyAnimatedWidgetState_initState_closure: function ImplicitlyAnimatedWidgetState_initState_closure(t0) { this.$this = t0; }, ImplicitlyAnimatedWidgetState_didUpdateWidget_closure: function ImplicitlyAnimatedWidgetState_didUpdateWidget_closure(t0) { this.$this = t0; }, ImplicitlyAnimatedWidgetState__constructTweens_closure: function ImplicitlyAnimatedWidgetState__constructTweens_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, AnimatedWidgetBaseState: function AnimatedWidgetBaseState() { }, AnimatedWidgetBaseState__handleAnimationChanged_closure: function AnimatedWidgetBaseState__handleAnimationChanged_closure() { }, AnimatedContainer: function AnimatedContainer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.padding = t1; _.decoration = t2; _.constraints = t3; _.margin = t4; _.curve = t5; _.duration = t6; _.onEnd = t7; _.key = t8; }, _AnimatedContainerState: function _AnimatedContainerState(t0, t1, t2) { var _ = this; _._transformAlignment = _._implicit_animations$_transform = _._margin = _._constraints = _._foregroundDecoration = _._implicit_animations$_decoration = _._implicit_animations$_padding = _._implicit_animations$_alignment = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedContainerState_forEachTween_closure: function _AnimatedContainerState_forEachTween_closure() { }, _AnimatedContainerState_forEachTween_closure0: function _AnimatedContainerState_forEachTween_closure0() { }, _AnimatedContainerState_forEachTween_closure1: function _AnimatedContainerState_forEachTween_closure1() { }, _AnimatedContainerState_forEachTween_closure2: function _AnimatedContainerState_forEachTween_closure2() { }, _AnimatedContainerState_forEachTween_closure3: function _AnimatedContainerState_forEachTween_closure3() { }, _AnimatedContainerState_forEachTween_closure4: function _AnimatedContainerState_forEachTween_closure4() { }, _AnimatedContainerState_forEachTween_closure5: function _AnimatedContainerState_forEachTween_closure5() { }, _AnimatedContainerState_forEachTween_closure6: function _AnimatedContainerState_forEachTween_closure6() { }, AnimatedPadding: function AnimatedPadding(t0, t1, t2, t3, t4, t5) { var _ = this; _.padding = t0; _.child = t1; _.curve = t2; _.duration = t3; _.onEnd = t4; _.key = t5; }, _AnimatedPaddingState: function _AnimatedPaddingState(t0, t1, t2) { var _ = this; _._implicit_animations$_padding = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedPaddingState_forEachTween_closure: function _AnimatedPaddingState_forEachTween_closure() { }, AnimatedOpacity: function AnimatedOpacity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.opacity = t1; _.alwaysIncludeSemantics = t2; _.curve = t3; _.duration = t4; _.onEnd = t5; _.key = t6; }, _AnimatedOpacityState: function _AnimatedOpacityState(t0, t1, t2) { var _ = this; _._implicit_animations$_opacity = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = _.___AnimatedOpacityState__opacityAnimation = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedOpacityState_forEachTween_closure: function _AnimatedOpacityState_forEachTween_closure() { }, AnimatedDefaultTextStyle: function AnimatedDefaultTextStyle(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.style = t1; _.softWrap = t2; _.curve = t3; _.duration = t4; _.onEnd = t5; _.key = t6; }, _AnimatedDefaultTextStyleState: function _AnimatedDefaultTextStyleState(t0, t1, t2) { var _ = this; _._implicit_animations$_style = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedDefaultTextStyleState_forEachTween_closure: function _AnimatedDefaultTextStyleState_forEachTween_closure() { }, AnimatedPhysicalModel: function AnimatedPhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.child = t0; _.shape = t1; _.clipBehavior = t2; _.elevation = t3; _.color = t4; _.animateColor = t5; _.shadowColor = t6; _.curve = t7; _.duration = t8; _.onEnd = t9; _.key = t10; }, _AnimatedPhysicalModelState: function _AnimatedPhysicalModelState(t0, t1, t2) { var _ = this; _._implicit_animations$_shadowColor = _._implicit_animations$_color = _._implicit_animations$_elevation = _._borderRadius = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _AnimatedPhysicalModelState_forEachTween_closure: function _AnimatedPhysicalModelState_forEachTween_closure() { }, _AnimatedPhysicalModelState_forEachTween_closure0: function _AnimatedPhysicalModelState_forEachTween_closure0() { }, _AnimatedPhysicalModelState_forEachTween_closure1: function _AnimatedPhysicalModelState_forEachTween_closure1() { }, _AnimatedPhysicalModelState_forEachTween_closure2: function _AnimatedPhysicalModelState_forEachTween_closure2() { }, _ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin: function _ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin() { }, InheritedModel: function InheritedModel() { }, InheritedModelElement: function InheritedModelElement(t0, t1, t2, t3) { var _ = this; _._dependents = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t3; }, InheritedNotifier: function InheritedNotifier() { }, _InheritedNotifierElement: function _InheritedNotifierElement(t0, t1, t2, t3) { var _ = this; _._inherited_notifier$_dirty = false; _._dependents = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t3; }, InheritedTheme_capture(from, to) { var themes; if (J.$eq$(from, to)) return new A.CapturedThemes(B.List_empty7); themes = A._setArrayType([], type$.JSArray_InheritedTheme); from.visitAncestorElements$1(new A.InheritedTheme_capture_closure(to, A._Cell$named("debugDidFindAncestor"), A.LinkedHashSet_LinkedHashSet$_empty(type$.Type), themes)); return new A.CapturedThemes(themes); }, InheritedTheme: function InheritedTheme() { }, InheritedTheme_capture_closure: function InheritedTheme_capture_closure(t0, t1, t2, t3) { var _ = this; _.to = t0; _.debugDidFindAncestor = t1; _.themeTypes = t2; _.themes = t3; }, CapturedThemes: function CapturedThemes(t0) { this._themes = t0; }, _CaptureAll: function _CaptureAll(t0, t1, t2) { this.themes = t0; this.child = t1; this.key = t2; }, InteractiveViewer_getNearestPointOnLine(point, l1, l2) { var l1P, l1L2, t1 = l2._v3storage, t2 = l1._v3storage, lengthSquared = Math.pow(t1[0] - t2[0], 2) + Math.pow(t1[1] - t2[1], 2); if (lengthSquared === 0) return l1; l1P = point.$sub(0, l1); l1L2 = l2.$sub(0, l1); return l1.$add(0, l1L2.scaled$1(B.JSNumber_methods.clamp$2(l1P.dot$1(l1L2) / lengthSquared, 0, 1))); }, InteractiveViewer_getNearestPointInside(point, quad) { var t4, closestPoints, closestOverall, minDistance, _i, closePoint, distance, t1 = quad._point0, aM = point.$sub(0, t1), t2 = quad._point1, aB = t2.$sub(0, t1), t3 = quad._point3, aD = t3.$sub(0, t1), aMAB = aM.dot$1(aB), aBAB = aB.dot$1(aB), aMAD = aM.dot$1(aD), aDAD = aD.dot$1(aD); if (0 <= aMAB && aMAB <= aBAB && 0 <= aMAD && aMAD <= aDAD) return point; t4 = quad._point2; closestPoints = [A.InteractiveViewer_getNearestPointOnLine(point, t1, t2), A.InteractiveViewer_getNearestPointOnLine(point, t2, t4), A.InteractiveViewer_getNearestPointOnLine(point, t4, t3), A.InteractiveViewer_getNearestPointOnLine(point, t3, t1)]; closestOverall = A._Cell$named("closestOverall"); for (t1 = point._v3storage, minDistance = 1 / 0, _i = 0; _i < 4; ++_i) { closePoint = closestPoints[_i]; t2 = closePoint._v3storage; distance = Math.sqrt(Math.pow(t1[0] - t2[0], 2) + Math.pow(t1[1] - t2[1], 2)); if (distance < minDistance) { closestOverall.__late_helper$_value = closePoint; minDistance = distance; } } return closestOverall._readLocal$0(); }, TransformationController$() { var t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); return new A.TransformationController(t1, $.$get$ChangeNotifier__emptyListeners()); }, _transformViewport(matrix, viewport) { var inverseMatrix, t1, t2, t3, t4, t5, t6; matrix.toString; inverseMatrix = new A.Matrix4(new Float64Array(16)); inverseMatrix.setFrom$1(matrix); inverseMatrix.copyInverse$1(inverseMatrix); t1 = viewport.left; t2 = viewport.top; t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(t1, t2, 0); t3 = inverseMatrix.transform3$1(t3); t4 = viewport.right; t5 = new A.Vector3(new Float64Array(3)); t5.setValues$3(t4, t2, 0); t5 = inverseMatrix.transform3$1(t5); t2 = viewport.bottom; t6 = new A.Vector3(new Float64Array(3)); t6.setValues$3(t4, t2, 0); t6 = inverseMatrix.transform3$1(t6); t4 = new A.Vector3(new Float64Array(3)); t4.setValues$3(t1, t2, 0); t4 = inverseMatrix.transform3$1(t4); t1 = new A.Vector3(new Float64Array(3)); t1.setFrom$1(t3); t2 = new A.Vector3(new Float64Array(3)); t2.setFrom$1(t5); t3 = new A.Vector3(new Float64Array(3)); t3.setFrom$1(t6); t5 = new A.Vector3(new Float64Array(3)); t5.setFrom$1(t4); return new A.Quad(t1, t2, t3, t5); }, _exceedsBy(boundary, viewport) { var largestExcess, _i, point, t1, t2, t3, viewportPoints = [viewport._point0, viewport._point1, viewport._point2, viewport._point3]; for (largestExcess = B.Offset_0_0, _i = 0; _i < 4; ++_i) { point = viewportPoints[_i]; t1 = A.InteractiveViewer_getNearestPointInside(point, boundary)._v3storage; t2 = point._v3storage; t3 = t1[0] - t2[0]; t2 = t1[1] - t2[1]; if (Math.abs(t3) > Math.abs(largestExcess._dx)) largestExcess = new A.Offset(t3, largestExcess._dy); if (Math.abs(t2) > Math.abs(largestExcess._dy)) largestExcess = new A.Offset(largestExcess._dx, t2); } return A._round(largestExcess); }, _round(offset) { return new A.Offset(A.double_parse(J.toStringAsFixed$1$n(offset._dx, 9)), A.double_parse(J.toStringAsFixed$1$n(offset._dy, 9))); }, _getPanAxis(point1, point2) { if (J.$eq$(point1, point2)) return null; return Math.abs(point2._dx - point1._dx) > Math.abs(point2._dy - point1._dy) ? B.Axis_0 : B.Axis_1; }, InteractiveViewer: function InteractiveViewer(t0, t1, t2, t3) { var _ = this; _.child = t0; _.maxScale = t1; _.transformationController = t2; _.key = t3; }, _InteractiveViewerState: function _InteractiveViewerState(t0, t1, t2, t3, t4) { var _ = this; _._transformationController = null; _._interactive_viewer$_childKey = t0; _._parentKey = t1; _._interactive_viewer$_animation = null; _.___InteractiveViewerState__controller = $; _._scaleStart = _._referenceFocalPoint = _._panAxis = null; _._currentRotation = _._rotationStart = 0; _._gestureType = null; _.TickerProviderStateMixin__tickers = t2; _.TickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _InteractiveViewerState__onTransformationControllerChange_closure: function _InteractiveViewerState__onTransformationControllerChange_closure() { }, _InteractiveViewerBuilt: function _InteractiveViewerBuilt(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.childKey = t1; _.clipBehavior = t2; _.constrained = t3; _.matrix = t4; _.key = t5; }, TransformationController: function TransformationController(t0, t1) { var _ = this; _._change_notifier$_value = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _GestureType: function _GestureType(t0, t1) { this.index = t0; this._core$_name = t1; }, __InteractiveViewerState_State_TickerProviderStateMixin: function __InteractiveViewerState_State_TickerProviderStateMixin() { }, _debugReportException0(context, exception, stack, informationCollector) { var details = new A.FlutterErrorDetails(exception, stack, "widgets library", context, null, informationCollector, false); A.FlutterError_reportError(details); return details; }, ConstrainedLayoutBuilder: function ConstrainedLayoutBuilder() { }, _LayoutBuilderElement: function _LayoutBuilderElement(t0, t1, t2) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._layout_builder$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t2; }, _LayoutBuilderElement__layout_layoutCallback: function _LayoutBuilderElement__layout_layoutCallback(t0, t1) { this.$this = t0; this.constraints = t1; }, _LayoutBuilderElement__layout_layoutCallback_closure: function _LayoutBuilderElement__layout_layoutCallback_closure(t0) { this.$this = t0; }, _LayoutBuilderElement__layout_layoutCallback_closure0: function _LayoutBuilderElement__layout_layoutCallback_closure0(t0) { this.$this = t0; }, RenderConstrainedLayoutBuilder: function RenderConstrainedLayoutBuilder() { }, LayoutBuilder: function LayoutBuilder(t0, t1) { this.builder = t0; this.key = t1; }, _RenderLayoutBuilder: function _RenderLayoutBuilder(t0, t1, t2, t3, t4) { var _ = this; _.RenderConstrainedLayoutBuilder__callback = t0; _.RenderConstrainedLayoutBuilder__needsBuild = t1; _.RenderConstrainedLayoutBuilder__previousConstraints = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin: function __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin() { }, __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder: function __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder() { }, _loadAll(locale, allDelegates) { var types, delegates, _i, delegate, t3, t4, inputValue, futureValue, _box_1 = {}, t1 = type$.Type, t2 = type$.dynamic, output = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); _box_1.pendingList = null; types = A.LinkedHashSet_LinkedHashSet$_empty(t1); delegates = A._setArrayType([], type$.JSArray_LocalizationsDelegate_dynamic); for (t1 = allDelegates.length, _i = 0; _i < allDelegates.length; allDelegates.length === t1 || (0, A.throwConcurrentModificationError)(allDelegates), ++_i) { delegate = allDelegates[_i]; delegate.toString; t3 = A.instanceType(delegate)._eval$1("LocalizationsDelegate.T"); if (!types.contains$1(0, A.createRuntimeType(t3)) && delegate.isSupported$1(locale)) { types.add$1(0, A.createRuntimeType(t3)); delegates.push(delegate); } } for (t1 = delegates.length, t3 = type$.JSArray__Pending, _i = 0; _i < delegates.length; delegates.length === t1 || (0, A.throwConcurrentModificationError)(delegates), ++_i) { t4 = {}; delegate = delegates[_i]; inputValue = delegate.load$1(0, locale); t4.completedValue = null; futureValue = inputValue.then$1$1(0, new A._loadAll_closure(t4), t2); if (t4.completedValue != null) output.$indexSet(0, A.createRuntimeType(A._instanceType(delegate)._eval$1("LocalizationsDelegate.T")), t4.completedValue); else { t4 = _box_1.pendingList; if (t4 == null) t4 = _box_1.pendingList = A._setArrayType([], t3); t4.push(new A._Pending(delegate, futureValue)); } } t1 = _box_1.pendingList; if (t1 == null) return new A.SynchronousFuture(output, type$.SynchronousFuture_Map_Type_dynamic); return A.Future_wait(new A.MappedListIterable(t1, new A._loadAll_closure0(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Future<@>>")), t2).then$1$1(0, new A._loadAll_closure1(_box_1, output), type$.Map_Type_dynamic); }, Localizations_Localizations$override(child, context, locale) { var mergedDelegates = A.List_List$of(context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope).localizationsState._widget.delegates, true, type$.LocalizationsDelegate_dynamic); return new A.Localizations(locale, mergedDelegates, child, null); }, Localizations_maybeLocaleOf(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope); return scope == null ? null : scope.localizationsState._localizations$_locale; }, Localizations_of(context, type, $T) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope); return scope == null ? null : $T._eval$1("0?")._as(J.$index$asx(scope.localizationsState._typeToResources, type)); }, _Pending: function _Pending(t0, t1) { this.delegate = t0; this.futureValue = t1; }, _loadAll_closure: function _loadAll_closure(t0) { this._box_0 = t0; }, _loadAll_closure0: function _loadAll_closure0() { }, _loadAll_closure1: function _loadAll_closure1(t0, t1) { this._box_1 = t0; this.output = t1; }, LocalizationsDelegate: function LocalizationsDelegate() { }, _WidgetsLocalizationsDelegate: function _WidgetsLocalizationsDelegate() { }, DefaultWidgetsLocalizations: function DefaultWidgetsLocalizations() { }, _LocalizationsScope: function _LocalizationsScope(t0, t1, t2, t3) { var _ = this; _.localizationsState = t0; _.typeToResources = t1; _.child = t2; _.key = t3; }, Localizations: function Localizations(t0, t1, t2, t3) { var _ = this; _.locale = t0; _.delegates = t1; _.child = t2; _.key = t3; }, _LocalizationsState: function _LocalizationsState(t0, t1, t2) { var _ = this; _._localizedResourcesScopeKey = t0; _._typeToResources = t1; _._widget = _._localizations$_locale = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _LocalizationsState_load_closure: function _LocalizationsState_load_closure(t0) { this._box_0 = t0; }, _LocalizationsState_load_closure0: function _LocalizationsState_load_closure0(t0, t1) { this.$this = t0; this.locale = t1; }, _LocalizationsState_load__closure: function _LocalizationsState_load__closure(t0, t1, t2) { this.$this = t0; this.value = t1; this.locale = t2; }, MediaQueryData$(accessibleNavigation, alwaysUse24HourFormat, boldText, devicePixelRatio, disableAnimations, displayFeatures, gestureSettings, highContrast, invertColors, navigationMode, padding, platformBrightness, size, systemGestureInsets, textScaleFactor, viewInsets, viewPadding) { return new A.MediaQueryData(size, devicePixelRatio, textScaleFactor, platformBrightness, viewInsets, padding, viewPadding, systemGestureInsets, alwaysUse24HourFormat, accessibleNavigation, invertColors, highContrast, disableAnimations, boldText, navigationMode, gestureSettings, displayFeatures); }, MediaQueryData$fromWindow($window) { var t3, t4, t5, t6, t7, t1 = $window.get$physicalSize(), t2 = $window._debugDevicePixelRatio; t1 = t1.$div(0, t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t2 = $window._debugDevicePixelRatio; if (t2 == null) t2 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t3 = $window.platformDispatcher._configuration; $window.get$viewConfiguration(); t4 = $window._debugDevicePixelRatio; t4 = A.EdgeInsets$fromWindowPadding(B.WindowPadding_0_0_0_0, t4 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t4); $window.get$viewConfiguration(); t5 = $window._debugDevicePixelRatio; t5 = A.EdgeInsets$fromWindowPadding(B.WindowPadding_0_0_0_0, t5 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t5); t6 = $window._viewInsets; t7 = $window._debugDevicePixelRatio; t6 = A.EdgeInsets$fromWindowPadding(t6, t7 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t7); $window.get$viewConfiguration(); t7 = $window._debugDevicePixelRatio; t7 = A.EdgeInsets$fromWindowPadding(B.WindowPadding_0_0_0_0, t7 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t7); $window.get$viewConfiguration(); $window.get$viewConfiguration(); return new A.MediaQueryData(t1, t2, t3.textScaleFactor, t3.platformBrightness, t6, t4, t5, t7, false, false, false, false, false, false, B.NavigationMode_0, new A.DeviceGestureSettings(null), B.List_empty4); }, MediaQuery_MediaQuery$removePadding(child, context, removeBottom, removeLeft, removeRight, removeTop) { return new A.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.removePadding$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, removeLeft, removeRight, removeTop), child, null); }, MediaQuery_maybeOf(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery); return t1 == null ? null : t1.data; }, MediaQuery_textScaleFactorOf(context) { var t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; return t1 == null ? 1 : t1; }, MediaQuery_boldTextOverride(context) { var t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.boldText; return t1 === true; }, Orientation: function Orientation(t0, t1) { this.index = t0; this._core$_name = t1; }, MediaQueryData: function MediaQueryData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.size = t0; _.devicePixelRatio = t1; _.textScaleFactor = t2; _.platformBrightness = t3; _.viewInsets = t4; _.padding = t5; _.viewPadding = t6; _.systemGestureInsets = t7; _.alwaysUse24HourFormat = t8; _.accessibleNavigation = t9; _.invertColors = t10; _.highContrast = t11; _.disableAnimations = t12; _.boldText = t13; _.navigationMode = t14; _.gestureSettings = t15; _.displayFeatures = t16; }, MediaQueryData_removeDisplayFeatures_closure: function MediaQueryData_removeDisplayFeatures_closure(t0) { this.subScreen = t0; }, MediaQuery: function MediaQuery(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, NavigationMode: function NavigationMode(t0, t1) { this.index = t0; this._core$_name = t1; }, _MediaQueryFromWindow: function _MediaQueryFromWindow(t0, t1) { this.child = t0; this.key = t1; }, _MediaQueryFromWindowState: function _MediaQueryFromWindowState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MediaQueryFromWindowState_didChangeMetrics_closure: function _MediaQueryFromWindowState_didChangeMetrics_closure() { }, _MediaQueryFromWindowState_didChangeTextScaleFactor_closure: function _MediaQueryFromWindowState_didChangeTextScaleFactor_closure() { }, _MediaQueryFromWindowState_didChangePlatformBrightness_closure: function _MediaQueryFromWindowState_didChangePlatformBrightness_closure() { }, __MediaQueryFromWindowState_State_WidgetsBindingObserver: function __MediaQueryFromWindowState_State_WidgetsBindingObserver() { }, ModalBarrier$(barrierSemanticsDismissible, color, dismissible, semanticsLabel) { return new A.ModalBarrier(color, dismissible, true, semanticsLabel, null); }, ModalBarrier: function ModalBarrier(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.dismissible = t1; _.barrierSemanticsDismissible = t2; _.semanticsLabel = t3; _.key = t4; }, ModalBarrier_build_handleDismiss: function ModalBarrier_build_handleDismiss(t0, t1) { this.$this = t0; this.context = t1; }, AnimatedModalBarrier: function AnimatedModalBarrier(t0, t1, t2, t3, t4) { var _ = this; _.dismissible = t0; _.semanticsLabel = t1; _.barrierSemanticsDismissible = t2; _.listenable = t3; _.key = t4; }, _AnyTapGestureRecognizer: function _AnyTapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onAnyTapUp = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _._recognizer$_state = t2; _._initialPosition = _._primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _.gestureSettings = null; _._supportedDevices = t6; _._pointerToKind = t7; }, _ModalBarrierSemanticsDelegate: function _ModalBarrierSemanticsDelegate(t0) { this.onDismiss = t0; }, _AnyTapGestureRecognizerFactory: function _AnyTapGestureRecognizerFactory(t0) { this.onAnyTapUp = t0; }, _ModalBarrierGestureDetector: function _ModalBarrierGestureDetector(t0, t1, t2) { this.child = t0; this.onDismiss = t1; this.key = t2; }, NavigationToolbar: function NavigationToolbar(t0, t1, t2, t3, t4, t5) { var _ = this; _.leading = t0; _.middle = t1; _.trailing = t2; _.centerMiddle = t3; _.middleSpacing = t4; _.key = t5; }, _ToolbarSlot: function _ToolbarSlot(t0, t1) { this.index = t0; this._core$_name = t1; }, _ToolbarLayout: function _ToolbarLayout(t0, t1, t2) { var _ = this; _.centerMiddle = t0; _.middleSpacing = t1; _.textDirection = t2; _._debugChildrenNeedingLayout = _._idToChild = null; }, Navigator$(initialRoute, key, observers, onGenerateInitialRoutes, onGenerateRoute, onUnknownRoute, reportsRouteUpdateToEngine, restorationScopeId) { return new A.Navigator(initialRoute, onGenerateRoute, onUnknownRoute, observers, restorationScopeId, onGenerateInitialRoutes, reportsRouteUpdateToEngine, key); }, Navigator_maybePop(context) { return A.Navigator_of(context, false).maybePop$1(null); }, Navigator_of(context, rootNavigator) { var t1, $navigator, navigator0; if (context instanceof A.StatefulElement) { t1 = context._framework$_state; t1.toString; t1 = t1 instanceof A.NavigatorState; } else t1 = false; if (t1) { t1 = context._framework$_state; t1.toString; type$.NavigatorState._as(t1); $navigator = t1; } else $navigator = null; if (rootNavigator) { navigator0 = context.findRootAncestorStateOfType$1$0(type$.NavigatorState); $navigator = navigator0 == null ? $navigator : navigator0; t1 = $navigator; } else { if ($navigator == null) $navigator = context.findAncestorStateOfType$1$0(type$.NavigatorState); t1 = $navigator; } t1.toString; return t1; }, Navigator_maybeOf(context) { var $navigator = context.findAncestorStateOfType$1$0(type$.NavigatorState); return $navigator; }, Navigator_defaultGenerateInitialRoutes($navigator, initialRouteName) { var t1, routeParts, t2, _i, t3, routeName, _null = null, result = A._setArrayType([], type$.JSArray_nullable_Route_dynamic); if (B.JSString_methods.startsWith$1(initialRouteName, "/") && initialRouteName.length > 1) { initialRouteName = B.JSString_methods.substring$1(initialRouteName, 1); t1 = type$.dynamic; result.push($navigator._routeNamed$1$3$allowNull$arguments("/", true, _null, t1)); routeParts = initialRouteName.split("/"); if (initialRouteName.length !== 0) for (t2 = routeParts.length, _i = 0, t3 = ""; _i < t2; ++_i, t3 = routeName) { routeName = t3 + ("/" + A.S(routeParts[_i])); result.push($navigator._routeNamed$1$3$allowNull$arguments(routeName, true, _null, t1)); } if (B.JSArray_methods.get$last(result) == null) B.JSArray_methods.set$length(result, 0); } else if (initialRouteName !== "/") result.push($navigator._routeNamed$1$3$allowNull$arguments(initialRouteName, true, _null, type$.dynamic)); if (!!result.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(result, new A.Navigator_defaultGenerateInitialRoutes_closure(), true); if (result.length === 0) result.push($navigator._routeNamed$1$2$arguments("/", _null, type$.dynamic)); return new A.CastList(result, type$.CastList_of_nullable_Route_dynamic_and_Route_dynamic); }, _RouteEntry$(route, initialState, restorationInformation) { var t1 = $.$get$_RouteEntry_notAnnounced(); return new A._RouteEntry(route, restorationInformation, initialState, t1, t1, t1); }, _RouteEntry_isPresentPredicate(entry) { return entry.get$isPresent(); }, _RouteEntry_suitableForTransitionAnimationPredicate(entry) { var t1 = entry.currentState.index; return t1 <= 10 && t1 >= 3; }, _RouteEntry_willBePresentPredicate(entry) { return entry.get$willBePresent(); }, _RouteEntry_isRoutePredicate(route) { return new A._RouteEntry_isRoutePredicate_closure(route); }, _RestorationInformation__RestorationInformation$fromSerializableData(data) { var t1, t2, t3; type$.List_nullable_Object._as(data); t1 = J.getInterceptor$asx(data); t2 = t1.$index(data, 0); t2.toString; switch (B.List_MYz[A._asIntS(t2)].index) { case 0: t1 = t1.sublist$1(data, 1); t2 = t1[0]; t2.toString; A._asIntS(t2); t3 = t1[1]; t3.toString; A._asStringS(t3); return new A._NamedRestorationInformation(t2, t3, t1.length > 2 ? t1[2] : null, B._RouteRestorationType_0); case 1: t1 = t1.sublist$1(data, 1)[1]; t1.toString; type$.Route_dynamic_Function_2_BuildContext_and_nullable_Object._as(A.PluginUtilities_getCallbackFromHandle(new A.CallbackHandle(A._asIntS(t1)))); return null; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, RoutePopDisposition: function RoutePopDisposition(t0, t1) { this.index = t0; this._core$_name = t1; }, Route: function Route() { }, Route_didPush_closure: function Route_didPush_closure(t0) { this.$this = t0; }, Route_didAdd_closure: function Route_didAdd_closure(t0) { this.$this = t0; }, Route_isCurrent_closure: function Route_isCurrent_closure() { }, Route_isCurrent_closure0: function Route_isCurrent_closure0() { }, Route_isFirst_closure: function Route_isFirst_closure() { }, Route_isFirst_closure0: function Route_isFirst_closure0() { }, Route_isActive_closure: function Route_isActive_closure(t0) { this.$this = t0; }, Route_isActive_closure0: function Route_isActive_closure0() { }, RouteSettings: function RouteSettings(t0, t1) { this.name = t0; this.$arguments = t1; }, NavigatorObserver: function NavigatorObserver() { }, HeroControllerScope: function HeroControllerScope(t0, t1, t2) { this.controller = t0; this.child = t1; this.key = t2; }, RouteTransitionRecord: function RouteTransitionRecord() { }, TransitionDelegate: function TransitionDelegate() { }, DefaultTransitionDelegate: function DefaultTransitionDelegate(t0) { this.$ti = t0; }, Navigator: function Navigator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.initialRoute = t0; _.onGenerateRoute = t1; _.onUnknownRoute = t2; _.observers = t3; _.restorationScopeId = t4; _.onGenerateInitialRoutes = t5; _.reportsRouteUpdateToEngine = t6; _.key = t7; }, Navigator_defaultGenerateInitialRoutes_closure: function Navigator_defaultGenerateInitialRoutes_closure() { }, _RouteLifecycle: function _RouteLifecycle(t0, t1) { this.index = t0; this._core$_name = t1; }, _NotAnnounced: function _NotAnnounced(t0, t1, t2) { var _ = this; _._navigator$_navigator = null; _._navigator$_settings = t0; _._restorationScopeId = t1; _._popCompleter = t2; }, _RouteEntry: function _RouteEntry(t0, t1, t2, t3, t4, t5) { var _ = this; _.route = t0; _.restorationInformation = t1; _.currentState = t2; _.lastAnnouncedPreviousRoute = t3; _.lastAnnouncedPoppedNextRoute = t4; _.lastAnnouncedNextRoute = t5; _.pendingResult = null; _._reportRemovalToObserver = true; _._isWaitingForExitingDecision = false; }, _RouteEntry_handlePush_closure: function _RouteEntry_handlePush_closure(t0, t1) { this.$this = t0; this.navigator = t1; }, _RouteEntry_dispose_closure: function _RouteEntry_dispose_closure() { }, _RouteEntry_dispose_closure0: function _RouteEntry_dispose_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.entry = t2; _.listener = t3; }, _RouteEntry_isRoutePredicate_closure: function _RouteEntry_isRoutePredicate_closure(t0) { this.route = t0; }, _NavigatorObservation: function _NavigatorObservation() { }, _NavigatorPushObservation: function _NavigatorPushObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorPopObservation: function _NavigatorPopObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorRemoveObservation: function _NavigatorRemoveObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorReplaceObservation: function _NavigatorReplaceObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, NavigatorState: function NavigatorState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.__NavigatorState__overlayKey = $; _._history = t0; _._serializableHistory = t1; _._observedRouteAdditions = t2; _._observedRouteDeletions = t3; _.focusScopeNode = t4; _._debugLocked = false; _._heroControllerFromScope = null; _.__NavigatorState__effectiveObservers = $; _._rawNextPagelessRestorationScopeId = t5; _._lastAnnouncedRouteName = null; _._flushingHistory = _._debugUpdatingPage = false; _._userGesturesInProgressCount = 0; _.userGestureInProgressNotifier = t6; _._activePointers = t7; _.RestorationMixin__bucket = t8; _.RestorationMixin__properties = t9; _.RestorationMixin__debugPropertiesWaitingForReregistration = t10; _.RestorationMixin__firstRestorePending = t11; _.RestorationMixin__currentParent = t12; _.TickerProviderStateMixin__tickers = t13; _.TickerProviderStateMixin__tickerModeNotifier = t14; _._widget = null; _._debugLifecycleState = t15; _._framework$_element = null; }, NavigatorState_restoreState_closure: function NavigatorState_restoreState_closure(t0) { this.$this = t0; }, NavigatorState__flushHistoryUpdates_closure: function NavigatorState__flushHistoryUpdates_closure() { }, NavigatorState__flushHistoryUpdates_closure0: function NavigatorState__flushHistoryUpdates_closure0() { }, NavigatorState__afterNavigation_closure: function NavigatorState__afterNavigation_closure() { }, NavigatorState_maybePop_closure: function NavigatorState_maybePop_closure() { }, NavigatorState_maybePop_closure0: function NavigatorState_maybePop_closure0() { }, NavigatorState_maybePop_closure1: function NavigatorState_maybePop_closure1() { }, NavigatorState_maybePop_closure2: function NavigatorState_maybePop_closure2() { }, NavigatorState_removeRoute_closure: function NavigatorState_removeRoute_closure() { }, NavigatorState_removeRoute_closure0: function NavigatorState_removeRoute_closure0() { }, NavigatorState__cancelActivePointers_closure: function NavigatorState__cancelActivePointers_closure(t0) { this.absorber = t0; }, _RouteRestorationType: function _RouteRestorationType(t0, t1) { this.index = t0; this._core$_name = t1; }, _RestorationInformation: function _RestorationInformation() { }, _NamedRestorationInformation: function _NamedRestorationInformation(t0, t1, t2, t3) { var _ = this; _.restorationScopeId = t0; _.name = t1; _.$arguments = t2; _.type = t3; _._serializableData = null; }, _AnonymousRestorationInformation: function _AnonymousRestorationInformation(t0, t1, t2, t3) { var _ = this; _.restorationScopeId = t0; _.routeBuilder = t1; _.$arguments = t2; _.type = t3; _._serializableData = null; }, _HistoryProperty: function _HistoryProperty(t0) { var _ = this; _._pageToPagelessRoutes = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _HistoryProperty_fromPrimitives_closure: function _HistoryProperty_fromPrimitives_closure() { }, _NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, _NavigatorState_State_TickerProviderStateMixin: function _NavigatorState_State_TickerProviderStateMixin() { }, _NavigatorState_State_TickerProviderStateMixin_RestorationMixin: function _NavigatorState_State_TickerProviderStateMixin_RestorationMixin() { }, Notification0: function Notification0() { }, NotificationListener: function NotificationListener(t0, t1, t2, t3) { var _ = this; _.onNotification = t0; _.child = t1; _.key = t2; _.$ti = t3; }, _NotificationElement: function _NotificationElement(t0, t1, t2) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t2; }, LayoutChangedNotification: function LayoutChangedNotification() { }, __NotificationElement_ProxyElement_NotifiableElementMixin: function __NotificationElement_ProxyElement_NotifiableElementMixin() { }, OverflowBar$(alignment, children, overflowAlignment, overflowDirection, overflowSpacing, spacing) { return new A.OverflowBar(spacing, alignment, overflowSpacing, overflowAlignment, overflowDirection, children, null); }, OverflowBarAlignment: function OverflowBarAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, OverflowBar: function OverflowBar(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.spacing = t0; _.alignment = t1; _.overflowSpacing = t2; _.overflowAlignment = t3; _.overflowDirection = t4; _.children = t5; _.key = t6; }, _OverflowBarParentData: function _OverflowBarParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.offset = t2; }, _RenderOverflowBar: function _RenderOverflowBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._spacing = t0; _._overflow_bar$_alignment = t1; _._overflowSpacing = t2; _._overflowAlignment = t3; _._overflowDirection = t4; _._overflow_bar$_textDirection = t5; _._overflow_bar$_clipBehavior = t6; _.ContainerRenderObjectMixin__childCount = t7; _.ContainerRenderObjectMixin__firstChild = t8; _.ContainerRenderObjectMixin__lastChild = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t10; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderOverflowBar_performLayout_nextChild: function _RenderOverflowBar_performLayout_nextChild(t0, t1) { this._box_0 = t0; this.$this = t1; }, __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin: function __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin() { }, __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, OverlayEntry$(builder, maintainState) { return new A.OverlayEntry(builder, maintainState, new A.LabeledGlobalKey(null, type$.LabeledGlobalKey__OverlayEntryWidgetState), $.$get$ChangeNotifier__emptyListeners()); }, OverlayEntry: function OverlayEntry(t0, t1, t2, t3) { var _ = this; _.builder = t0; _._opaque = false; _._maintainState = t1; _._mounted = false; _._overlay = null; _._key = t2; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, OverlayEntry_remove_closure: function OverlayEntry_remove_closure(t0) { this.overlay = t0; }, _OverlayEntryWidget: function _OverlayEntryWidget(t0, t1, t2) { this.entry = t0; this.tickerEnabled = t1; this.key = t2; }, _OverlayEntryWidgetState: function _OverlayEntryWidgetState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _OverlayEntryWidgetState__markNeedsBuild_closure: function _OverlayEntryWidgetState__markNeedsBuild_closure() { }, Overlay: function Overlay(t0, t1) { this.initialEntries = t0; this.key = t1; }, OverlayState: function OverlayState(t0, t1, t2, t3) { var _ = this; _._entries = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, OverlayState_insert_closure: function OverlayState_insert_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.below = t1; _.above = t2; _.entry = t3; }, OverlayState_insertAll_closure: function OverlayState_insertAll_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.below = t1; _.above = t2; _.entries = t3; }, OverlayState_rearrange_closure: function OverlayState_rearrange_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.newEntriesList = t1; _.old = t2; _.below = t3; _.above = t4; }, OverlayState__markDirty_closure: function OverlayState__markDirty_closure() { }, OverlayState__didChangeEntryOpacity_closure: function OverlayState__didChangeEntryOpacity_closure() { }, _Theatre: function _Theatre(t0, t1, t2, t3) { var _ = this; _.skipCount = t0; _.clipBehavior = t1; _.children = t2; _.key = t3; }, _TheatreElement: function _TheatreElement(t0, t1, t2) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _RenderTheatre: function _RenderTheatre(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._overlay$_hasVisualOverflow = false; _._overlay$_resolvedAlignment = null; _._overlay$_textDirection = t0; _._overlay$_skipCount = t1; _._overlay$_clipBehavior = t2; _._overlay$_clipRectLayer = t3; _.ContainerRenderObjectMixin__childCount = t4; _.ContainerRenderObjectMixin__firstChild = t5; _.ContainerRenderObjectMixin__lastChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderTheatre_computeMinIntrinsicWidth_closure: function _RenderTheatre_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, _RenderTheatre_computeMaxIntrinsicWidth_closure: function _RenderTheatre_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, _RenderTheatre_computeMinIntrinsicHeight_closure: function _RenderTheatre_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, _RenderTheatre_computeMaxIntrinsicHeight_closure: function _RenderTheatre_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, _RenderTheatre_hitTestChildren_closure: function _RenderTheatre_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.childParentData = t2; }, _OverlayState_State_TickerProviderStateMixin: function _OverlayState_State_TickerProviderStateMixin() { }, __RenderTheatre_RenderBox_ContainerRenderObjectMixin: function __RenderTheatre_RenderBox_ContainerRenderObjectMixin() { }, _GlowController$(axis, color, vsync) { var decelerator, _null = null, _s15_ = "_glowController", t1 = type$.Tween_double, t2 = new A.Tween(0, 0, t1), t3 = new A.Tween(0, 0, t1), t4 = new A._GlowController(B._GlowState_0, t2, t3, 0.5, 0.5, color, axis, $.$get$ChangeNotifier__emptyListeners()), t5 = A.AnimationController$(_null, _null, _null, 1, _null, vsync); t5.addStatusListener$1(t4.get$_changePhase()); A._lateWriteOnceCheck(t4.___GlowController__glowController, _s15_); t4.___GlowController__glowController = t5; decelerator = A.CurvedAnimation$(B.C__DecelerateCurve, A._lateReadCheck(t5, _s15_), _null); decelerator.parent.addListener$1(0, t4.get$notifyListeners()); type$.Animation_double._as(decelerator); A._lateWriteOnceCheck(t4.___GlowController__glowOpacity, "_glowOpacity"); t4.___GlowController__glowOpacity = new A._AnimatedEvaluation(decelerator, t2, t1._eval$1("_AnimatedEvaluation")); A._lateWriteOnceCheck(t4.___GlowController__glowSize, "_glowSize"); t4.___GlowController__glowSize = new A._AnimatedEvaluation(decelerator, t3, t1._eval$1("_AnimatedEvaluation")); t1 = vsync.createTicker$1(t4.get$_tickDisplacement()); A._lateWriteOnceCheck(t4.___GlowController__displacementTicker, "_displacementTicker"); t4.___GlowController__displacementTicker = t1; return t4; }, GlowingOverscrollIndicator: function GlowingOverscrollIndicator(t0, t1, t2, t3) { var _ = this; _.axisDirection = t0; _.color = t1; _.child = t2; _.key = t3; }, _GlowingOverscrollIndicatorState: function _GlowingOverscrollIndicatorState(t0, t1, t2, t3) { var _ = this; _._lastNotificationType = _._leadingAndTrailingListener = _._trailingController = _._leadingController = null; _._accepted = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _GlowState: function _GlowState(t0, t1) { this.index = t0; this._core$_name = t1; }, _GlowController: function _GlowController(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._overscroll_indicator$_state = t0; _.___GlowController__glowController = $; _._pullRecedeTimer = null; _._paintOffsetScrollPixels = _._paintOffset = 0; _._glowOpacityTween = t1; _.___GlowController__glowOpacity = $; _._glowSizeTween = t2; _.___GlowController__displacementTicker = _.___GlowController__glowSize = $; _._displacementTickerLastElapsed = null; _._displacementTarget = t3; _._displacement = t4; _._pullDistance = 0; _._overscroll_indicator$_color = t5; _._axis = t6; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t7; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _GlowController_pull_closure: function _GlowController_pull_closure(t0) { this.$this = t0; }, _GlowingOverscrollIndicatorPainter: function _GlowingOverscrollIndicatorPainter(t0, t1, t2, t3) { var _ = this; _.leadingController = t0; _.trailingController = t1; _.axisDirection = t2; _._repaint = t3; }, StretchingOverscrollIndicator: function StretchingOverscrollIndicator(t0, t1, t2) { this.axisDirection = t0; this.child = t1; this.key = t2; }, _StretchingOverscrollIndicatorState: function _StretchingOverscrollIndicatorState(t0, t1, t2) { var _ = this; _.___StretchingOverscrollIndicatorState__stretchController = $; _._lastOverscrollNotification = _._lastNotification = null; _._accepted = true; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _StretchingOverscrollIndicatorState_build_closure: function _StretchingOverscrollIndicatorState_build_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.size = t2; }, _StretchState: function _StretchState(t0, t1) { this.index = t0; this._core$_name = t1; }, _StretchController: function _StretchController(t0, t1, t2) { var _ = this; _.___StretchController__stretchSize = _.___StretchController__stretchController = $; _._stretchSizeTween = t0; _._overscroll_indicator$_state = t1; _.ChangeNotifier__count = _._pullDistance = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, OverscrollIndicatorNotification: function OverscrollIndicatorNotification(t0, t1) { this.leading = t0; this._accepted = true; this.ViewportNotificationMixin__depth = t1; }, _OverscrollIndicatorNotification_Notification_ViewportNotificationMixin: function _OverscrollIndicatorNotification_Notification_ViewportNotificationMixin() { }, __GlowingOverscrollIndicatorState_State_TickerProviderStateMixin: function __GlowingOverscrollIndicatorState_State_TickerProviderStateMixin() { }, __StretchingOverscrollIndicatorState_State_TickerProviderStateMixin: function __StretchingOverscrollIndicatorState_State_TickerProviderStateMixin() { }, PageStorageBucket__maybeAddKey(context, keys) { var t1 = context._widget; t1.toString; return !(t1 instanceof A.PageStorage); }, PageStorage_of(context) { var widget = context.findAncestorWidgetOfExactType$1$0(type$.PageStorage); return widget == null ? null : widget.bucket; }, _StorageEntryIdentifier: function _StorageEntryIdentifier(t0) { this.keys = t0; }, PageStorageBucket: function PageStorageBucket() { this._storage = null; }, PageStorageBucket__allKeys_closure: function PageStorageBucket__allKeys_closure(t0) { this.keys = t0; }, PageStorage: function PageStorage(t0, t1, t2) { this.child = t0; this.bucket = t1; this.key = t2; }, PageController$(initialPage, viewportFraction) { return new A.PageController(initialPage, viewportFraction, 0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, PageController: function PageController(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.initialPage = t0; _.viewportFraction = t1; _._initialScrollOffset = t2; _.keepScrollOffset = t3; _.debugLabel = t4; _._positions = t5; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t6; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, PageMetrics: function PageMetrics(t0, t1, t2, t3, t4, t5) { var _ = this; _.viewportFraction = t0; _._scroll_metrics$_minScrollExtent = t1; _._scroll_metrics$_maxScrollExtent = t2; _._scroll_metrics$_pixels = t3; _._scroll_metrics$_viewportDimension = t4; _.axisDirection = t5; }, _PagePosition: function _PagePosition(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._pageToUseOnStartup = t0; _._cachedPage = null; _._viewportFraction = t1; _._heldPreviousVelocity = 0; _._userScrollDirection = t2; _._currentDrag = null; _.physics = t3; _.context = t4; _.keepScrollOffset = t5; _.debugLabel = t6; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._scroll_position$_lastMetrics = null; _._haveScheduledUpdateNotification = false; _._semanticActions = _._lastAxis = null; _.isScrollingNotifier = t7; _._activity = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t8; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _ForceImplicitScrollPhysics: function _ForceImplicitScrollPhysics(t0, t1) { this.allowImplicitScrolling = t0; this.parent = t1; }, PageScrollPhysics: function PageScrollPhysics(t0) { this.parent = t0; }, PageView: function PageView(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.physics = t1; _.onPageChanged = t2; _.childrenDelegate = t3; _.dragStartBehavior = t4; _.key = t5; }, _PageViewState: function _PageViewState(t0) { var _ = this; _._lastReportedPage = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PageViewState_build_closure: function _PageViewState_build_closure(t0) { this.$this = t0; }, _PageViewState_build_closure0: function _PageViewState_build_closure0(t0, t1) { this.$this = t0; this.axisDirection = t1; }, PageRoute: function PageRoute() { }, PerformanceOverlay: function PerformanceOverlay(t0, t1, t2, t3) { var _ = this; _.optionsMask = t0; _.checkerboardRasterCacheImages = t1; _.checkerboardOffscreenLayers = t2; _.key = t3; }, _PlaceholderPainter: function _PlaceholderPainter(t0, t1, t2) { this.color = t0; this.strokeWidth = t1; this._repaint = t2; }, Placeholder: function Placeholder(t0, t1) { this.color = t0; this.key = t1; }, MenuSerializableShortcut: function MenuSerializableShortcut() { }, PlatformMenuDelegate: function PlatformMenuDelegate() { }, DefaultPlatformMenuDelegate: function DefaultPlatformMenuDelegate(t0, t1) { this._idMap = t0; this.channel = t1; }, HtmlElementView: function HtmlElementView(t0, t1) { this.viewType = t0; this.key = t1; }, HtmlElementView_build_closure: function HtmlElementView_build_closure() { }, HtmlElementView__createHtmlElementView_closure: function HtmlElementView__createHtmlElementView_closure(t0, t1) { this.$this = t0; this.params = t1; }, _HtmlElementViewController: function _HtmlElementViewController(t0, t1) { this.viewId = t0; this.viewType = t1; this._initialized = false; }, PlatformViewCreationParams: function PlatformViewCreationParams(t0, t1) { this.id = t0; this.onPlatformViewCreated = t1; }, PlatformViewLink: function PlatformViewLink(t0, t1, t2, t3) { var _ = this; _._surfaceFactory = t0; _._onCreatePlatformView = t1; _.viewType = t2; _.key = t3; }, _PlatformViewLinkState: function _PlatformViewLinkState(t0) { var _ = this; _._widget = _._focusNode = _._surface = _._platform_view$_controller = _._platform_view$_id = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PlatformViewLinkState__initialize_closure: function _PlatformViewLinkState__initialize_closure() { }, PlatformViewSurface: function PlatformViewSurface(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.gestureRecognizers = t1; _.hitTestBehavior = t2; _.key = t3; }, PreferredSize: function PreferredSize(t0, t1, t2) { this.child = t0; this.preferredSize = t1; this.key = t2; }, PrimaryScrollController$(child, controller) { return new A.PrimaryScrollController(controller, child, null); }, PrimaryScrollController$none(child) { return new A.PrimaryScrollController(null, child, null); }, PrimaryScrollController_of(context) { var result = context.dependOnInheritedWidgetOfExactType$1$0(type$.PrimaryScrollController); return result == null ? null : result.controller; }, PrimaryScrollController: function PrimaryScrollController(t0, t1, t2) { this.controller = t0; this.child = t1; this.key = t2; }, _getDeltaToScrollOrigin(scrollableState) { var t1; switch (scrollableState._widget.axisDirection.index) { case 2: t1 = scrollableState._scrollable$_position._pixels; t1.toString; return new A.Offset(0, t1); case 0: t1 = scrollableState._scrollable$_position._pixels; t1.toString; return new A.Offset(0, -t1); case 3: t1 = scrollableState._scrollable$_position._pixels; t1.toString; return new A.Offset(-t1, 0); case 1: t1 = scrollableState._scrollable$_position._pixels; t1.toString; return new A.Offset(t1, 0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _overlayOrigin(context) { var result = context.findAncestorStateOfType$1$0(type$.OverlayState), t1 = result._framework$_element.get$renderObject(); t1.toString; return A.MatrixUtils_transformPoint(type$.RenderBox._as(t1).getTransformTo$1(0, null), B.Offset_0_0); }, _sizeExtent(size, scrollDirection) { switch (scrollDirection.index) { case 0: return size._dx; case 1: return size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _offsetExtent(offset, scrollDirection) { switch (scrollDirection.index) { case 0: return offset._dx; case 1: return offset._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _extentOffset(extent, scrollDirection) { switch (scrollDirection.index) { case 0: return new A.Offset(extent, 0); case 1: return new A.Offset(0, extent); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _restrictAxis(offset, scrollDirection) { switch (scrollDirection.index) { case 0: return new A.Offset(offset._dx, 0); case 1: return new A.Offset(0, offset._dy); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, SliverReorderableList: function SliverReorderableList(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.itemBuilder = t0; _.itemCount = t1; _.onReorder = t2; _.onReorderStart = t3; _.onReorderEnd = t4; _.proxyDecorator = t5; _.itemExtent = t6; _.prototypeItem = t7; _.key = t8; }, SliverReorderableListState: function SliverReorderableListState(t0, t1, t2, t3) { var _ = this; _._reorderable_list$_items = t0; _._recognizerPointer = _._recognizer = _._finalDropPosition = _._insertIndex = _._dragInfo = _._dragIndex = _._overlayEntry = null; _._dragStartTransitionComplete = false; _._autoScroller = null; _.__SliverReorderableListState__scrollable = $; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, SliverReorderableListState_startItemDragReorder_closure: function SliverReorderableListState_startItemDragReorder_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.event = t1; _.index = t2; _.recognizer = t3; }, SliverReorderableListState__dragStart_closure: function SliverReorderableListState__dragStart_closure(t0) { this.$this = t0; }, SliverReorderableListState__dragUpdate_closure: function SliverReorderableListState__dragUpdate_closure(t0) { this.$this = t0; }, SliverReorderableListState__dragEnd_closure: function SliverReorderableListState__dragEnd_closure(t0, t1) { this.$this = t0; this.item = t1; }, SliverReorderableListState__dragReset_closure: function SliverReorderableListState__dragReset_closure(t0) { this.$this = t0; }, _EdgeDraggingAutoScroller: function _EdgeDraggingAutoScroller(t0, t1) { var _ = this; _.scrollable = t0; _.onScrollViewScrolled = t1; _.___EdgeDraggingAutoScroller__dragTargetRelatedToScrollOrigin = $; _._scrolling = false; }, _ReorderableItem: function _ReorderableItem(t0, t1, t2, t3) { var _ = this; _.index = t0; _.child = t1; _.capturedThemes = t2; _.key = t3; }, _ReorderableItemState: function _ReorderableItemState(t0, t1, t2) { var _ = this; _.___ReorderableItemState__listState = $; _._startOffset = t0; _._targetOffset = t1; _._offsetAnimation = null; _._dragging = false; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ReorderableItemState_dragging_closure: function _ReorderableItemState_dragging_closure(t0, t1) { this.$this = t0; this.dragging = t1; }, _ReorderableItemState_updateForGap_closure: function _ReorderableItemState_updateForGap_closure(t0) { this.$this = t0; }, _ReorderableItemState_rebuild_closure: function _ReorderableItemState_rebuild_closure() { }, ReorderableDragStartListener: function ReorderableDragStartListener(t0, t1, t2, t3) { var _ = this; _.child = t0; _.index = t1; _.enabled = t2; _.key = t3; }, ReorderableDragStartListener_build_closure: function ReorderableDragStartListener_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ReorderableDelayedDragStartListener: function ReorderableDelayedDragStartListener(t0, t1, t2, t3) { var _ = this; _.child = t0; _.index = t1; _.enabled = t2; _.key = t3; }, _DragInfo: function _DragInfo(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scrollDirection = t0; _.onUpdate = t1; _.onEnd = t2; _.onCancel = t3; _.onDropCompleted = t4; _.proxyDecorator = t5; _.tickerProvider = t6; _.___DragInfo_capturedThemes = _.___DragInfo_itemExtent = _.___DragInfo_itemSize = _.___DragInfo_dragOffset = _.___DragInfo_dragPosition = _.___DragInfo_child = _.___DragInfo_index = _.___DragInfo_listState = $; _._proxyAnimation = null; }, _DragInfo_startDrag_closure: function _DragInfo_startDrag_closure(t0) { this.$this = t0; }, _DragItemProxy: function _DragItemProxy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.listState = t0; _.index = t1; _.child = t2; _.position = t3; _.size = t4; _.animation = t5; _.proxyDecorator = t6; _.key = t7; }, _DragItemProxy_build_closure: function _DragItemProxy_build_closure(t0, t1) { this.$this = t0; this.overlayOrigin = t1; }, _ReorderableItemGlobalKey: function _ReorderableItemGlobalKey(t0, t1, t2, t3) { var _ = this; _.subKey = t0; _.index = t1; _.state = t2; _.value = t3; }, _SliverReorderableListState_State_TickerProviderStateMixin: function _SliverReorderableListState_State_TickerProviderStateMixin() { }, RestorationScope_of(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.UnmanagedRestorationScope); return t1 == null ? null : t1.bucket; }, UnmanagedRestorationScope$(bucket, child) { return new A.UnmanagedRestorationScope(bucket, child, null); }, RestorationScope: function RestorationScope(t0, t1, t2) { this.child = t0; this.restorationId = t1; this.key = t2; }, _RestorationScopeState: function _RestorationScopeState(t0, t1, t2, t3, t4, t5) { var _ = this; _.RestorationMixin__bucket = t0; _.RestorationMixin__properties = t1; _.RestorationMixin__debugPropertiesWaitingForReregistration = t2; _.RestorationMixin__firstRestorePending = t3; _.RestorationMixin__currentParent = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, UnmanagedRestorationScope: function UnmanagedRestorationScope(t0, t1, t2) { this.bucket = t0; this.child = t1; this.key = t2; }, RootRestorationScope: function RootRestorationScope(t0, t1, t2) { this.child = t0; this.restorationId = t1; this.key = t2; }, _RootRestorationScopeState: function _RootRestorationScopeState(t0) { var _ = this; _._okToRenderBlankContainer = null; _._rootBucketValid = false; _._ancestorBucket = _._rootBucket = null; _._isLoadingRootBucket = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _RootRestorationScopeState__loadRootBucketIfNecessary_closure: function _RootRestorationScopeState__loadRootBucketIfNecessary_closure(t0) { this.$this = t0; }, _RootRestorationScopeState__loadRootBucketIfNecessary__closure: function _RootRestorationScopeState__loadRootBucketIfNecessary__closure(t0, t1) { this.$this = t0; this.bucket = t1; }, RestorableProperty: function RestorableProperty() { }, RestorationMixin: function RestorationMixin() { }, RestorationMixin_registerForRestoration_listener: function RestorationMixin_registerForRestoration_listener(t0, t1) { this.$this = t0; this.property = t1; }, __RestorationScopeState_State_RestorationMixin_dispose_closure: function __RestorationScopeState_State_RestorationMixin_dispose_closure() { }, __RestorationScopeState_State_RestorationMixin: function __RestorationScopeState_State_RestorationMixin() { }, RestorableValue: function RestorableValue() { }, _RestorablePrimitiveValueN: function _RestorablePrimitiveValueN() { }, _RestorablePrimitiveValue: function _RestorablePrimitiveValue() { }, RestorableNum: function RestorableNum(t0, t1, t2) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _.$ti = t2; }, RestorableBool: function RestorableBool(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RestorableBoolN: function RestorableBoolN(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RestorableStringN: function RestorableStringN(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RestorableDateTime: function RestorableDateTime(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RestorableListenable: function RestorableListenable() { }, RestorableChangeNotifier: function RestorableChangeNotifier() { }, RestorableTextEditingController: function RestorableTextEditingController(t0, t1) { var _ = this; _._initialValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, RouteInformation: function RouteInformation(t0, t1) { this.location = t0; this.state = t1; }, ModalRoute_of(context, $T) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._ModalScopeStatus), t1 = widget == null ? null : widget.route; return $T._eval$1("ModalRoute<0>?")._as(t1); }, OverlayRoute: function OverlayRoute() { }, TransitionRoute: function TransitionRoute() { }, TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd: function TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd(t0, t1, t2) { this.$this = t0; this.nextTrain = t1; this.nextRoute = t2; }, TransitionRoute__updateSecondaryAnimation_closure: function TransitionRoute__updateSecondaryAnimation_closure(t0, t1, t2) { this._box_0 = t0; this.nextTrain = t1; this._jumpOnAnimationEnd = t2; }, TransitionRoute__updateSecondaryAnimation_closure0: function TransitionRoute__updateSecondaryAnimation_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.nextRoute = t2; }, TransitionRoute__setSecondaryAnimation_closure: function TransitionRoute__setSecondaryAnimation_closure(t0, t1) { this.$this = t0; this.animation = t1; }, LocalHistoryEntry: function LocalHistoryEntry(t0) { this.onRemove = t0; this._routes$_owner = null; }, LocalHistoryRoute: function LocalHistoryRoute() { }, LocalHistoryRoute_removeLocalHistoryEntry_closure: function LocalHistoryRoute_removeLocalHistoryEntry_closure(t0) { this.$this = t0; }, _DismissModalAction: function _DismissModalAction(t0, t1) { this.context = t0; this._actions$_listeners = t1; this._currentCallingAction = null; }, _ModalScopeStatus: function _ModalScopeStatus(t0, t1, t2, t3, t4) { var _ = this; _.isCurrent = t0; _.canPop = t1; _.route = t2; _.child = t3; _.key = t4; }, _ModalScope: function _ModalScope(t0, t1, t2) { this.route = t0; this.key = t1; this.$ti = t2; }, _ModalScopeState: function _ModalScopeState(t0, t1, t2, t3) { var _ = this; _._page = null; _.___ModalScopeState__listenable = $; _.focusScopeNode = t0; _.primaryScrollController = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; _.$ti = t3; }, _ModalScopeState__forceRebuildPage_closure: function _ModalScopeState__forceRebuildPage_closure(t0) { this.$this = t0; }, _ModalScopeState_build_closure: function _ModalScopeState_build_closure(t0) { this.$this = t0; }, _ModalScopeState_build_closure0: function _ModalScopeState_build_closure0(t0) { this.$this = t0; }, _ModalScopeState_build__closure0: function _ModalScopeState_build__closure0(t0) { this.$this = t0; }, _ModalScopeState_build___closure: function _ModalScopeState_build___closure(t0) { this.$this = t0; }, _ModalScopeState_build__closure: function _ModalScopeState_build__closure(t0) { this.$this = t0; }, ModalRoute: function ModalRoute() { }, ModalRoute_offstage_closure: function ModalRoute_offstage_closure(t0, t1) { this.$this = t0; this.value = t1; }, ModalRoute_changedInternalState_closure: function ModalRoute_changedInternalState_closure() { }, PopupRoute: function PopupRoute() { }, RouteObserver: function RouteObserver() { }, RawDialogRoute: function RawDialogRoute() { }, FocusTrap: function FocusTrap(t0, t1, t2) { this.focusScopeNode = t0; this.child = t1; this.key = t2; }, FocusTrapArea: function FocusTrapArea(t0, t1, t2) { this.focusNode = t0; this.child = t1; this.key = t2; }, _RenderFocusTrapArea: function _RenderFocusTrapArea(t0, t1, t2) { var _ = this; _.focusNode = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderFocusTrap: function _RenderFocusTrap(t0, t1, t2, t3, t4) { var _ = this; _.cachedResults = t0; _._focusScopeNode = t1; _.behavior = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _ModalRoute_TransitionRoute_LocalHistoryRoute: function _ModalRoute_TransitionRoute_LocalHistoryRoute() { }, SafeArea$(bottom, child, minimum, $top) { return new A.SafeArea($top, bottom, minimum, child, null); }, SafeArea: function SafeArea(t0, t1, t2, t3, t4) { var _ = this; _.top = t0; _.bottom = t1; _.minimum = t2; _.child = t3; _.key = t4; }, ScrollActivity: function ScrollActivity() { }, IdleScrollActivity: function IdleScrollActivity(t0) { this._delegate = t0; }, HoldScrollActivity: function HoldScrollActivity(t0, t1) { this.onHoldCanceled = t0; this._delegate = t1; }, ScrollDragController: function ScrollDragController(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._delegate = t0; _.onDragCanceled = t1; _.carriedVelocity = t2; _.motionStartDistanceThreshold = t3; _._lastNonStationaryTimestamp = t4; _._retainMomentum = t5; _._offsetSinceLastStop = t6; _._lastDetails = t7; }, DragScrollActivity: function DragScrollActivity(t0, t1) { this._scroll_activity$_controller = t0; this._delegate = t1; }, BallisticScrollActivity: function BallisticScrollActivity(t0) { this.__BallisticScrollActivity__controller = $; this._delegate = t0; }, DrivenScrollActivity: function DrivenScrollActivity(t0) { this.__DrivenScrollActivity__controller = this.__DrivenScrollActivity__completer = $; this._delegate = t0; }, ScrollAwareImageProvider: function ScrollAwareImageProvider(t0, t1, t2) { this.context = t0; this.imageProvider = t1; this.$ti = t2; }, ScrollAwareImageProvider_resolveStreamForKey_closure: function ScrollAwareImageProvider_resolveStreamForKey_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.configuration = t1; _.stream = t2; _.key = t3; _.handleError = t4; }, ScrollAwareImageProvider_resolveStreamForKey__closure: function ScrollAwareImageProvider_resolveStreamForKey__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.configuration = t1; _.stream = t2; _.key = t3; _.handleError = t4; }, ScrollConfiguration$(behavior, child) { return new A.ScrollConfiguration(behavior, child, null); }, ScrollConfiguration_of(context) { var configuration = context.dependOnInheritedWidgetOfExactType$1$0(type$.ScrollConfiguration), t1 = configuration == null ? null : configuration.behavior; return t1 == null ? B.ScrollBehavior_null : t1; }, AndroidOverscrollIndicator: function AndroidOverscrollIndicator(t0, t1) { this.index = t0; this._core$_name = t1; }, ScrollBehavior: function ScrollBehavior(t0) { this._androidOverscrollIndicator = t0; }, ScrollBehavior_velocityTrackerBuilder_closure: function ScrollBehavior_velocityTrackerBuilder_closure() { }, ScrollBehavior_velocityTrackerBuilder_closure0: function ScrollBehavior_velocityTrackerBuilder_closure0() { }, _WrappedScrollBehavior: function _WrappedScrollBehavior(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.delegate = t0; _.scrollbars = t1; _.overscroll = t2; _.physics = t3; _.platform = t4; _._dragDevices = t5; _._androidOverscrollIndicator = t6; }, ScrollConfiguration: function ScrollConfiguration(t0, t1, t2) { this.behavior = t0; this.child = t1; this.key = t2; }, ScrollController: function ScrollController(t0, t1, t2, t3, t4) { var _ = this; _._initialScrollOffset = t0; _.keepScrollOffset = t1; _.debugLabel = t2; _._positions = t3; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t4; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ScrollMetrics: function ScrollMetrics() { }, FixedScrollMetrics: function FixedScrollMetrics(t0, t1, t2, t3, t4) { var _ = this; _._scroll_metrics$_minScrollExtent = t0; _._scroll_metrics$_maxScrollExtent = t1; _._scroll_metrics$_pixels = t2; _._scroll_metrics$_viewportDimension = t3; _.axisDirection = t4; }, _FixedScrollMetrics_Object_ScrollMetrics: function _FixedScrollMetrics_Object_ScrollMetrics() { }, ScrollUpdateNotification$(context, depth, dragDetails, metrics, scrollDelta) { var t1 = new A.ScrollUpdateNotification(dragDetails, scrollDelta, metrics, context, 0); if (depth != null) t1.ViewportNotificationMixin__depth = depth; return t1; }, defaultScrollNotificationPredicate(notification) { return notification.ViewportNotificationMixin__depth === 0; }, ViewportNotificationMixin: function ViewportNotificationMixin() { }, ViewportElementMixin: function ViewportElementMixin() { }, ScrollNotification: function ScrollNotification() { }, ScrollStartNotification: function ScrollStartNotification(t0, t1, t2, t3) { var _ = this; _.dragDetails = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, ScrollUpdateNotification: function ScrollUpdateNotification(t0, t1, t2, t3, t4) { var _ = this; _.dragDetails = t0; _.scrollDelta = t1; _.metrics = t2; _.context = t3; _.ViewportNotificationMixin__depth = t4; }, OverscrollNotification: function OverscrollNotification(t0, t1, t2, t3, t4, t5) { var _ = this; _.dragDetails = t0; _.overscroll = t1; _.velocity = t2; _.metrics = t3; _.context = t4; _.ViewportNotificationMixin__depth = t5; }, ScrollEndNotification: function ScrollEndNotification(t0, t1, t2, t3) { var _ = this; _.dragDetails = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, UserScrollNotification: function UserScrollNotification(t0, t1, t2, t3) { var _ = this; _.direction = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, _ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin: function _ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin() { }, _ScrollNotificationObserverScope: function _ScrollNotificationObserverScope(t0, t1, t2) { this._scrollNotificationObserverState = t0; this.child = t1; this.key = t2; }, _ListenerEntry: function _ListenerEntry(t0) { var _ = this; _.listener = t0; _._collection$_previous = _._collection$_next = _._collection$_list = null; }, ScrollNotificationObserver: function ScrollNotificationObserver(t0, t1) { this.child = t0; this.key = t1; }, ScrollNotificationObserverState: function ScrollNotificationObserverState(t0, t1) { var _ = this; _._scroll_notification_observer$_listeners = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, ScrollNotificationObserverState__notifyListeners_closure: function ScrollNotificationObserverState__notifyListeners_closure(t0) { this.$this = t0; }, ScrollNotificationObserverState_build_closure: function ScrollNotificationObserverState_build_closure(t0) { this.$this = t0; }, BouncingScrollPhysics__applyFriction(extentOutside, absDelta, gamma) { var deltaToLimit, total; if (extentOutside > 0) { deltaToLimit = extentOutside / gamma; if (absDelta < deltaToLimit) return absDelta * gamma; total = 0 + extentOutside; absDelta -= deltaToLimit; } else total = 0; return total + absDelta; }, ScrollPhysics: function ScrollPhysics(t0) { this.parent = t0; }, RangeMaintainingScrollPhysics: function RangeMaintainingScrollPhysics(t0) { this.parent = t0; }, BouncingScrollPhysics: function BouncingScrollPhysics(t0) { this.parent = t0; }, ClampingScrollPhysics: function ClampingScrollPhysics(t0) { this.parent = t0; }, AlwaysScrollableScrollPhysics: function AlwaysScrollableScrollPhysics(t0) { this.parent = t0; }, NeverScrollableScrollPhysics: function NeverScrollableScrollPhysics(t0) { this.parent = t0; }, ScrollPositionAlignmentPolicy: function ScrollPositionAlignmentPolicy(t0, t1) { this.index = t0; this._core$_name = t1; }, ScrollPosition: function ScrollPosition() { }, ScrollPosition_forcePixels_closure: function ScrollPosition_forcePixels_closure(t0) { this.$this = t0; }, ScrollMetricsNotification: function ScrollMetricsNotification(t0, t1, t2) { this.metrics = t0; this.context = t1; this.ViewportNotificationMixin__depth = t2; }, _ScrollMetricsNotification_Notification_ViewportNotificationMixin: function _ScrollMetricsNotification_Notification_ViewportNotificationMixin() { }, _ScrollPosition_ViewportOffset_ScrollMetrics: function _ScrollPosition_ViewportOffset_ScrollMetrics() { }, ScrollPositionWithSingleContext$(context, debugLabel, initialPixels, keepScrollOffset, oldPosition, physics) { var t1 = $.$get$ChangeNotifier__emptyListeners(); t1 = new A.ScrollPositionWithSingleContext(B.ScrollDirection_0, physics, context, true, debugLabel, new A.ValueNotifier(false, t1, type$.ValueNotifier_bool), t1); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, debugLabel, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, debugLabel, initialPixels, true, oldPosition, physics); return t1; }, ScrollPositionWithSingleContext: function ScrollPositionWithSingleContext(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._heldPreviousVelocity = 0; _._userScrollDirection = t0; _._currentDrag = null; _.physics = t1; _.context = t2; _.keepScrollOffset = t3; _.debugLabel = t4; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._scroll_position$_lastMetrics = null; _._haveScheduledUpdateNotification = false; _._semanticActions = _._lastAxis = null; _.isScrollingNotifier = t5; _._activity = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t6; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ClampingScrollSimulation$(position, tolerance, velocity) { var t1 = new A.ClampingScrollSimulation(position, velocity, tolerance), t2 = Math.exp(Math.log(0.35 * Math.abs(velocity) / 778.3530259679999) / ($.$get$ClampingScrollSimulation__kDecelerationRate() - 1)); t1.__ClampingScrollSimulation__duration = t2; t1.__ClampingScrollSimulation__distance = Math.abs(velocity * A._lateReadCheck(t2, "_duration") / 3.065); return t1; }, BouncingScrollSimulation: function BouncingScrollSimulation(t0, t1, t2, t3) { var _ = this; _.leadingExtent = t0; _.trailingExtent = t1; _.spring = t2; _.__BouncingScrollSimulation__springTime = _.__BouncingScrollSimulation__springSimulation = _.__BouncingScrollSimulation__frictionSimulation = $; _._timeOffset = 0; _.tolerance = t3; }, ClampingScrollSimulation: function ClampingScrollSimulation(t0, t1, t2) { var _ = this; _.position = t0; _.velocity = t1; _.__ClampingScrollSimulation__distance = _.__ClampingScrollSimulation__duration = $; _.tolerance = t2; }, CustomScrollView$(anchor, cacheExtent, clipBehavior, controller, dragStartBehavior, keyboardDismissBehavior, physics, primary, restorationId, reverse, scrollDirection, shrinkWrap, slivers) { var t2, _null = null, t1 = primary == null; if (t1) t2 = controller == null && scrollDirection === B.Axis_1; else t2 = primary; if (primary !== true) t1 = t1 && controller == null && scrollDirection === B.Axis_1; else t1 = true; t1 = t1 ? B.AlwaysScrollableScrollPhysics_null : _null; return new A.CustomScrollView(slivers, scrollDirection, false, controller, t2, t1, _null, shrinkWrap, _null, anchor, cacheExtent, _null, dragStartBehavior, keyboardDismissBehavior, restorationId, clipBehavior, _null); }, ListView$(children, controller, padding, scrollDirection, shrinkWrap) { var _null = null, t1 = A.SliverChildListDelegate$(children, true, true, true), t2 = children.length, t3 = controller == null && scrollDirection === B.Axis_1, t4 = controller == null && scrollDirection === B.Axis_1; t4 = t4 ? B.AlwaysScrollableScrollPhysics_null : _null; return new A.ListView(t1, padding, scrollDirection, false, controller, t3, t4, _null, shrinkWrap, _null, 0, _null, t2, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null); }, ListView$builder(controller, itemBuilder, itemCount, padding, physics, scrollDirection, shrinkWrap) { var t2, _null = null, t1 = controller == null && scrollDirection === B.Axis_1; if (physics == null) { t2 = controller == null && scrollDirection === B.Axis_1; t2 = t2 ? B.AlwaysScrollableScrollPhysics_null : _null; } else t2 = physics; return new A.ListView(new A.SliverChildBuilderDelegate(itemBuilder, itemCount, true, true, true, A.sliver___kDefaultSemanticIndexCallback$closure(), _null), padding, scrollDirection, false, controller, t1, t2, _null, shrinkWrap, _null, 0, _null, itemCount, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null); }, ListView$separated(controller, itemBuilder, itemCount, padding, separatorBuilder, shrinkWrap) { var _null = null, t1 = Math.max(0, itemCount * 2 - 1), t2 = controller == null && true, t3 = controller == null && true; t3 = t3 ? B.AlwaysScrollableScrollPhysics_null : _null; return new A.ListView(new A.SliverChildBuilderDelegate(new A.ListView$separated_closure(itemBuilder, separatorBuilder), t1, true, true, true, new A.ListView$separated_closure0(), _null), padding, B.Axis_1, false, controller, t2, t3, _null, true, _null, 0, _null, itemCount, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null); }, GridView$count(childAspectRatio, children, crossAxisCount, crossAxisSpacing, mainAxisSpacing, padding, physics, primary, shrinkWrap) { var t4, _null = null, t1 = A.SliverChildListDelegate$(children, true, true, true), t2 = children.length, t3 = primary == null; if (t3) t4 = true; else t4 = primary; if (physics == null) { if (primary !== true) if (t3) t3 = true; else t3 = false; else t3 = true; t3 = t3 ? B.AlwaysScrollableScrollPhysics_null : _null; } else t3 = physics; return new A.GridView(new A.SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount, mainAxisSpacing, crossAxisSpacing, childAspectRatio), t1, padding, B.Axis_1, false, _null, t4, t3, _null, shrinkWrap, _null, 0, _null, t2, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null); }, ScrollViewKeyboardDismissBehavior: function ScrollViewKeyboardDismissBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, ScrollView: function ScrollView() { }, ScrollView_build_closure: function ScrollView_build_closure(t0, t1, t2) { this.$this = t0; this.axisDirection = t1; this.slivers = t2; }, ScrollView_build_closure0: function ScrollView_build_closure0(t0) { this.context = t0; }, CustomScrollView: function CustomScrollView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.slivers = t0; _.scrollDirection = t1; _.reverse = t2; _.controller = t3; _.primary = t4; _.physics = t5; _.scrollBehavior = t6; _.shrinkWrap = t7; _.center = t8; _.anchor = t9; _.cacheExtent = t10; _.semanticChildCount = t11; _.dragStartBehavior = t12; _.keyboardDismissBehavior = t13; _.restorationId = t14; _.clipBehavior = t15; _.key = t16; }, BoxScrollView: function BoxScrollView() { }, ListView: function ListView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.childrenDelegate = t0; _.padding = t1; _.scrollDirection = t2; _.reverse = t3; _.controller = t4; _.primary = t5; _.physics = t6; _.scrollBehavior = t7; _.shrinkWrap = t8; _.center = t9; _.anchor = t10; _.cacheExtent = t11; _.semanticChildCount = t12; _.dragStartBehavior = t13; _.keyboardDismissBehavior = t14; _.restorationId = t15; _.clipBehavior = t16; _.key = t17; }, ListView$separated_closure: function ListView$separated_closure(t0, t1) { this.itemBuilder = t0; this.separatorBuilder = t1; }, ListView$separated_closure0: function ListView$separated_closure0() { }, GridView: function GridView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.gridDelegate = t0; _.childrenDelegate = t1; _.padding = t2; _.scrollDirection = t3; _.reverse = t4; _.controller = t5; _.primary = t6; _.physics = t7; _.scrollBehavior = t8; _.shrinkWrap = t9; _.center = t10; _.anchor = t11; _.cacheExtent = t12; _.semanticChildCount = t13; _.dragStartBehavior = t14; _.keyboardDismissBehavior = t15; _.restorationId = t16; _.clipBehavior = t17; _.key = t18; }, Scrollable$(axisDirection, controller, dragStartBehavior, excludeFromSemantics, physics, restorationId, scrollBehavior, semanticChildCount, viewportBuilder) { return new A.Scrollable(axisDirection, controller, physics, viewportBuilder, excludeFromSemantics, semanticChildCount, dragStartBehavior, restorationId, scrollBehavior, null); }, Scrollable_of(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._ScrollableScope); return widget == null ? null : widget.scrollable; }, Scrollable_recommendDeferredLoadingForContext(context) { var t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._ScrollableScope); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } type$.nullable__ScrollableScope._as(t1); if (t1 == null) return false; t1 = t1.position; return t1.physics.recommendDeferredLoading$3(t1._activity.get$velocity() + t1._impliedVelocity, t1.copyWith$0(), context); }, Scrollable_ensureVisible(context, alignment, alignmentPolicy) { var t1, targetRenderObject, t2, t3, widget, futures = A._setArrayType([], type$.JSArray_Future_void), scrollable = A.Scrollable_of(context); for (t1 = type$._ScrollableScope, targetRenderObject = null; scrollable != null;) { t2 = scrollable._scrollable$_position; t2.toString; t3 = context.get$renderObject(); t3.toString; futures.push(t2.ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject(t3, alignment, alignmentPolicy, B.Cubic_JUR, B.Duration_0, targetRenderObject)); if (targetRenderObject == null) targetRenderObject = context.get$renderObject(); context = scrollable._framework$_element; widget = context.dependOnInheritedWidgetOfExactType$1$0(t1); scrollable = widget == null ? null : widget.scrollable; } futures.length !== 0; t1 = A.Future_Future$value(null, type$.void); return t1; }, _ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, Scrollable: function Scrollable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.axisDirection = t0; _.controller = t1; _.physics = t2; _.viewportBuilder = t3; _.excludeFromSemantics = t4; _.semanticChildCount = t5; _.dragStartBehavior = t6; _.restorationId = t7; _.scrollBehavior = t8; _.key = t9; }, _ScrollableScope: function _ScrollableScope(t0, t1, t2, t3) { var _ = this; _.scrollable = t0; _.position = t1; _.child = t2; _.key = t3; }, ScrollableState: function ScrollableState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._scrollable$_position = null; _._persistedScrollOffset = t0; _.__ScrollableState__configuration = $; _._mediaQueryData = _._fallbackScrollController = _._physics = null; _._scrollSemanticsKey = t1; _._gestureDetectorKey = t2; _._ignorePointerKey = t3; _._gestureRecognizers = t4; _._shouldIgnorePointer = false; _._hold = _._scrollable$_drag = _._scrollable$_lastAxisDirection = _._lastCanDrag = null; _.RestorationMixin__bucket = t5; _.RestorationMixin__properties = t6; _.RestorationMixin__debugPropertiesWaitingForReregistration = t7; _.RestorationMixin__firstRestorePending = t8; _.RestorationMixin__currentParent = t9; _.TickerProviderStateMixin__tickers = t10; _.TickerProviderStateMixin__tickerModeNotifier = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, ScrollableState_setCanDrag_closure: function ScrollableState_setCanDrag_closure(t0) { this.$this = t0; }, ScrollableState_setCanDrag_closure0: function ScrollableState_setCanDrag_closure0(t0) { this.$this = t0; }, ScrollableState_setCanDrag_closure1: function ScrollableState_setCanDrag_closure1(t0) { this.$this = t0; }, ScrollableState_setCanDrag_closure2: function ScrollableState_setCanDrag_closure2(t0) { this.$this = t0; }, ScrollableDetails: function ScrollableDetails(t0, t1) { this.direction = t0; this.controller = t1; }, _ScrollSemantics: function _ScrollSemantics(t0, t1, t2, t3, t4) { var _ = this; _.position = t0; _.allowImplicitScrolling = t1; _.semanticChildCount = t2; _.child = t3; _.key = t4; }, _RenderScrollSemantics: function _RenderScrollSemantics(t0, t1, t2, t3, t4) { var _ = this; _._scrollable$_position = t0; _._allowImplicitScrolling = t1; _._semanticChildCount = t2; _._innerNode = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, ScrollIncrementType: function ScrollIncrementType(t0, t1) { this.index = t0; this._core$_name = t1; }, ScrollIntent: function ScrollIntent(t0, t1) { this.direction = t0; this.type = t1; }, ScrollAction: function ScrollAction(t0) { this._actions$_listeners = t0; this._currentCallingAction = null; }, _RestorableScrollOffset: function _RestorableScrollOffset(t0) { var _ = this; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _ScrollableState_State_TickerProviderStateMixin: function _ScrollableState_State_TickerProviderStateMixin() { }, _ScrollableState_State_TickerProviderStateMixin_RestorationMixin: function _ScrollableState_State_TickerProviderStateMixin_RestorationMixin() { }, RawScrollbar$(child, controller, fadeDuration, interactive, isAlwaysShown, key, notificationPredicate, pressDuration, radius, scrollbarOrientation, thickness, thumbVisibility, timeToFade, trackVisibility) { return new A.RawScrollbar(child, controller, thumbVisibility, isAlwaysShown, radius, thickness, trackVisibility, fadeDuration, timeToFade, pressDuration, notificationPredicate, interactive, scrollbarOrientation, key); }, RawScrollbarState$($T) { return new A.RawScrollbarState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, null, B._StateLifecycle_0, $T._eval$1("RawScrollbarState<0>")); }, _getLocalOffset(scrollbarPainterKey, position) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, scrollbarPainterKey).get$renderObject(); t1.toString; return type$.RenderBox._as(t1).globalToLocal$1(position); }, ScrollbarOrientation: function ScrollbarOrientation(t0, t1) { this.index = t0; this._core$_name = t1; }, ScrollbarPainter: function ScrollbarPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._scrollbar$_color = t0; _._trackColor = t1; _._trackBorderColor = t2; _._trackRadius = t3; _._scrollbar$_textDirection = null; _._thickness = t4; _.fadeoutOpacityAnimation = t5; _._mainAxisMargin = t6; _._crossAxisMargin = t7; _._scrollbar$_radius = t8; _._scrollbar$_shape = t9; _._scrollbar$_padding = t10; _._minLength = t11; _._minOverscrollLength = t12; _._scrollbarOrientation = t13; _._ignorePointer = false; _._trackRect = _._thumbRect = _._lastAxisDirection = _._lastMetrics = null; _.__ScrollbarPainter__thumbOffset = $; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t14; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ScrollbarPainter_update__needPaint: function ScrollbarPainter_update__needPaint() { }, RawScrollbar: function RawScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.child = t0; _.controller = t1; _.thumbVisibility = t2; _.isAlwaysShown = t3; _.radius = t4; _.thickness = t5; _.trackVisibility = t6; _.fadeDuration = t7; _.timeToFade = t8; _.pressDuration = t9; _.notificationPredicate = t10; _.interactive = t11; _.scrollbarOrientation = t12; _.key = t13; }, RawScrollbarState: function RawScrollbarState(t0, t1, t2, t3, t4) { var _ = this; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisOffset = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; _.$ti = t4; }, RawScrollbarState__maybeStartFadeoutTimer_closure: function RawScrollbarState__maybeStartFadeoutTimer_closure(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure: function RawScrollbarState__gestures_closure(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure0: function RawScrollbarState__gestures_closure0(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure: function RawScrollbarState__gestures__closure(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure0: function RawScrollbarState__gestures__closure0(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure1: function RawScrollbarState__gestures__closure1(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure1: function RawScrollbarState__gestures_closure1(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure2: function RawScrollbarState__gestures_closure2(t0) { this.$this = t0; }, RawScrollbarState_build_closure: function RawScrollbarState_build_closure(t0) { this.$this = t0; }, RawScrollbarState_build_closure0: function RawScrollbarState_build_closure0(t0) { this.$this = t0; }, _ThumbPressGestureRecognizer: function _ThumbPressGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._customPaintKey = t0; _._longPressAccepted = false; _._velocityTracker = _.onTertiaryLongPressEnd = _.onTertiaryLongPressUp = _.onTertiaryLongPressMoveUpdate = _.onTertiaryLongPressStart = _.onTertiaryLongPress = _.onTertiaryLongPressCancel = _.onTertiaryLongPressDown = _.onSecondaryLongPressEnd = _.onSecondaryLongPressUp = _.onSecondaryLongPressMoveUpdate = _.onSecondaryLongPressStart = _.onSecondaryLongPress = _.onSecondaryLongPressCancel = _.onSecondaryLongPressDown = _.onLongPressEnd = _.onLongPressUp = _.onLongPressMoveUpdate = _.onLongPressStart = _.onLongPress = _.onLongPressCancel = _.onLongPressDown = _._long_press$_initialButtons = _._longPressOrigin = null; _.deadline = t1; _.postAcceptSlopTolerance = t2; _._recognizer$_state = t3; _._initialPosition = _._primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t4; _._trackedPointers = t5; _._team = null; _.debugOwner = t6; _.gestureSettings = null; _._supportedDevices = t7; _._pointerToKind = t8; }, _TrackTapGestureRecognizer: function _TrackTapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._customPaintKey = t0; _.onTertiaryTapCancel = _.onTertiaryTapUp = _.onTertiaryTapDown = _.onSecondaryTapCancel = _.onSecondaryTapUp = _.onSecondaryTapDown = _.onSecondaryTap = _.onTapCancel = _.onTap = _.onTapUp = _.onTapDown = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t1; _.postAcceptSlopTolerance = t2; _._recognizer$_state = t3; _._initialPosition = _._primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t4; _._trackedPointers = t5; _._team = null; _.debugOwner = t6; _.gestureSettings = null; _._supportedDevices = t7; _._pointerToKind = t8; }, _RawScrollbarState_State_TickerProviderStateMixin: function _RawScrollbarState_State_TickerProviderStateMixin() { }, SharedAppData: function SharedAppData(t0, t1) { this.child = t0; this.key = t1; }, _SharedAppDataState: function _SharedAppDataState(t0) { var _ = this; _.___SharedAppDataState_data = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _SharedAppModel: function _SharedAppModel(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, KeySet__computeHashCode(keys) { var h1, h2, sortedHashes, $length = keys._collection$_length, iterator = new A._HashSetIterator(keys, keys._computeElements$0(), A._instanceType(keys)._eval$1("_HashSetIterator<1>")); iterator.moveNext$0(); h1 = J.get$hashCode$(iterator._collection$_current); if ($length === 1) return h1; iterator.moveNext$0(); h2 = J.get$hashCode$(iterator._collection$_current); if ($length === 2) return h1 < h2 ? A.Object_hash(h1, h2, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue) : A.Object_hash(h2, h1, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); sortedHashes = $length === 3 ? $.KeySet__tempHashStore3 : $.KeySet__tempHashStore4; sortedHashes[0] = h1; sortedHashes[1] = h2; iterator.moveNext$0(); sortedHashes[2] = J.get$hashCode$(iterator._collection$_current); if ($length === 4) { iterator.moveNext$0(); sortedHashes[3] = J.get$hashCode$(iterator._collection$_current); } B.JSArray_methods.sort$0(sortedHashes); return A.Object_hashAll(sortedHashes); }, LogicalKeySet$(key1) { var t1 = type$.LogicalKeyboardKey, t2 = A.HashSet_HashSet(t1); t2.add$1(0, key1); t2 = new A.LogicalKeySet(t2); t2.KeySet$4(key1, null, null, null, {}, t1); return t2; }, SingleActivator$(trigger, alt, control, meta, shift) { return new A.SingleActivator(trigger, control, shift, alt, meta); }, ShortcutManager__indexShortcuts(source) { var result = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_LogicalKeyboardKey, type$.List__ActivatorIntentPair); source.forEach$1(0, new A.ShortcutManager__indexShortcuts_closure(result)); return result; }, Shortcuts_maybeOf(context) { var t1, inherited = context.dependOnInheritedWidgetOfExactType$1$0(type$._ShortcutsMarker); if (inherited == null) t1 = null; else { t1 = inherited.notifier; t1.toString; } return t1; }, KeySet: function KeySet() { }, LogicalKeySet: function LogicalKeySet(t0) { this.__LogicalKeySet__triggers = $; this._shortcuts$_keys = t0; this.__KeySet_hashCode = $; }, LogicalKeySet__triggers_closure: function LogicalKeySet__triggers_closure() { }, SingleActivator: function SingleActivator(t0, t1, t2, t3, t4) { var _ = this; _.trigger = t0; _.control = t1; _.shift = t2; _.alt = t3; _.meta = t4; }, _ActivatorIntentPair: function _ActivatorIntentPair(t0, t1) { this.activator = t0; this.intent = t1; }, ShortcutManager: function ShortcutManager(t0, t1) { var _ = this; _._shortcuts = t0; _._indexedShortcutsCache = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ShortcutManager__indexShortcuts_closure: function ShortcutManager__indexShortcuts_closure(t0) { this.result = t0; }, ShortcutManager__indexShortcuts__closure: function ShortcutManager__indexShortcuts__closure() { }, Shortcuts: function Shortcuts(t0, t1, t2, t3) { var _ = this; _.shortcuts = t0; _.child = t1; _.debugLabel = t2; _.key = t3; }, _ShortcutsState: function _ShortcutsState(t0) { var _ = this; _._widget = _._internalManager = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ShortcutsMarker: function _ShortcutsMarker(t0, t1, t2) { this.notifier = t0; this.child = t1; this.key = t2; }, _LogicalKeySet_KeySet_Diagnosticable: function _LogicalKeySet_KeySet_Diagnosticable() { }, _ShortcutManager_ChangeNotifier_Diagnosticable: function _ShortcutManager_ChangeNotifier_Diagnosticable() { }, _SingleActivator_Object_Diagnosticable: function _SingleActivator_Object_Diagnosticable() { }, _SingleActivator_Object_Diagnosticable_MenuSerializableShortcut: function _SingleActivator_Object_Diagnosticable_MenuSerializableShortcut() { }, __ActivatorIntentPair_Object_Diagnosticable: function __ActivatorIntentPair_Object_Diagnosticable() { }, SingleChildScrollView$(child, controller, dragStartBehavior, padding, physics, restorationId, reverse, scrollDirection) { var t1 = controller == null && scrollDirection === B.Axis_1; return new A.SingleChildScrollView(scrollDirection, reverse, padding, controller, t1, physics, child, dragStartBehavior, restorationId, null); }, SingleChildScrollView: function SingleChildScrollView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.scrollDirection = t0; _.reverse = t1; _.padding = t2; _.controller = t3; _.primary = t4; _.physics = t5; _.child = t6; _.dragStartBehavior = t7; _.restorationId = t8; _.key = t9; }, SingleChildScrollView_build_closure: function SingleChildScrollView_build_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.axisDirection = t2; }, _SingleChildViewport: function _SingleChildViewport(t0, t1, t2, t3, t4) { var _ = this; _.axisDirection = t0; _.offset = t1; _.clipBehavior = t2; _.child = t3; _.key = t4; }, _SingleChildViewportElement: function _SingleChildViewportElement(t0, t1) { var _ = this; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._framework$_child = null; _.__Element__depth = $; _._widget = t0; _._owner = null; _._lifecycleState = t1; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _RenderSingleChildViewport: function _RenderSingleChildViewport(t0, t1, t2, t3, t4, t5) { var _ = this; _._single_child_scroll_view$_axisDirection = t0; _._single_child_scroll_view$_offset = t1; _._single_child_scroll_view$_clipBehavior = t2; _._single_child_scroll_view$_clipRectLayer = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t5; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderSingleChildViewport_paint_paintContents: function _RenderSingleChildViewport_paint_paintContents(t0, t1) { this.$this = t0; this.paintOffset = t1; }, _RenderSingleChildViewport_hitTestChildren_closure: function _RenderSingleChildViewport_hitTestChildren_closure(t0, t1) { this.$this = t0; this.position = t1; }, __RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin: function __RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin() { }, __SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin: function __SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin() { }, __SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin: function __SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin() { }, _kDefaultSemanticIndexCallback(_, localIndex) { return localIndex; }, SliverChildListDelegate$(children, addAutomaticKeepAlives, addRepaintBoundaries, addSemanticIndexes) { return new A.SliverChildListDelegate(true, addRepaintBoundaries, true, children, A.LinkedHashMap_LinkedHashMap$_literal([null, 0], type$.nullable_Key, type$.int)); }, SliverList$(delegate) { return new A.SliverList(delegate, null); }, SliverMultiBoxAdaptorElement$(widget, replaceMovedChildren) { return new A.SliverMultiBoxAdaptorElement(replaceMovedChildren, A.SplayTreeMap$(type$.int, type$.nullable_Element), widget, B._ElementLifecycle_0); }, SliverMultiBoxAdaptorElement__extrapolateMaxScrollOffset(firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset, childCount) { if (lastIndex === childCount - 1) return trailingScrollOffset; return trailingScrollOffset + (trailingScrollOffset - leadingScrollOffset) / (lastIndex - firstIndex + 1) * (childCount - lastIndex - 1); }, KeepAlive$(child, keepAlive) { return new A.KeepAlive(keepAlive, child, null); }, SliverChildDelegate: function SliverChildDelegate() { }, _SaltedValueKey: function _SaltedValueKey(t0) { this.value = t0; }, SliverChildBuilderDelegate: function SliverChildBuilderDelegate(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.builder = t0; _.childCount = t1; _.addAutomaticKeepAlives = t2; _.addRepaintBoundaries = t3; _.addSemanticIndexes = t4; _.semanticIndexCallback = t5; _.findChildIndexCallback = t6; }, SliverChildListDelegate: function SliverChildListDelegate(t0, t1, t2, t3, t4) { var _ = this; _.addAutomaticKeepAlives = t0; _.addRepaintBoundaries = t1; _.addSemanticIndexes = t2; _.children = t3; _._keyToIndex = t4; }, SliverWithKeepAliveWidget: function SliverWithKeepAliveWidget() { }, SliverMultiBoxAdaptorWidget: function SliverMultiBoxAdaptorWidget() { }, SliverList: function SliverList(t0, t1) { this.delegate = t0; this.key = t1; }, SliverGrid: function SliverGrid(t0, t1, t2) { this.gridDelegate = t0; this.delegate = t1; this.key = t2; }, SliverMultiBoxAdaptorElement: function SliverMultiBoxAdaptorElement(t0, t1, t2, t3) { var _ = this; _._replaceMovedChildren = t0; _._childElements = t1; _._currentlyUpdatingChildIndex = _._currentBeforeChild = null; _._didUnderflow = false; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, SliverMultiBoxAdaptorElement_performRebuild_processElement: function SliverMultiBoxAdaptorElement_performRebuild_processElement(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.newChildren = t2; _.adaptorWidget = t3; _.indexToLayoutOffset = t4; }, SliverMultiBoxAdaptorElement_performRebuild_closure: function SliverMultiBoxAdaptorElement_performRebuild_closure() { }, SliverMultiBoxAdaptorElement_performRebuild_closure0: function SliverMultiBoxAdaptorElement_performRebuild_closure0(t0, t1) { this.$this = t0; this.index = t1; }, SliverMultiBoxAdaptorElement_createChild_closure: function SliverMultiBoxAdaptorElement_createChild_closure(t0, t1, t2) { this.$this = t0; this.after = t1; this.index = t2; }, SliverMultiBoxAdaptorElement_removeChild_closure: function SliverMultiBoxAdaptorElement_removeChild_closure(t0, t1) { this.$this = t0; this.index = t1; }, KeepAlive: function KeepAlive(t0, t1, t2) { this.keepAlive = t0; this.child = t1; this.key = t2; }, SliverFillViewport: function SliverFillViewport(t0, t1, t2, t3) { var _ = this; _.viewportFraction = t0; _.padEnds = t1; _.delegate = t2; _.key = t3; }, _SliverFillViewportRenderObjectWidget: function _SliverFillViewportRenderObjectWidget(t0, t1, t2) { this.viewportFraction = t0; this.delegate = t1; this.key = t2; }, _SliverFractionalPadding: function _SliverFractionalPadding(t0, t1, t2) { this.viewportFraction = t0; this.child = t1; this.key = t2; }, _RenderSliverFractionalPadding: function _RenderSliverFractionalPadding(t0, t1, t2) { var _ = this; _._lastResolvedConstraints = null; _._sliver_fill$_viewportFraction = t0; _._sliver_fill$_resolvedPadding = null; _.RenderObjectWithChildMixin__child = t1; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t2; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, SliverPersistentHeaderDelegate: function SliverPersistentHeaderDelegate() { }, SliverPersistentHeader: function SliverPersistentHeader(t0, t1, t2, t3) { var _ = this; _.delegate = t0; _.pinned = t1; _.floating = t2; _.key = t3; }, _FloatingHeader: function _FloatingHeader(t0, t1) { this.child = t0; this.key = t1; }, _FloatingHeaderState: function _FloatingHeaderState(t0) { var _ = this; _._widget = _._sliver_persistent_header$_position = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _SliverPersistentHeaderElement: function _SliverPersistentHeaderElement(t0, t1, t2) { var _ = this; _.floating = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _.child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _SliverPersistentHeaderElement__build_closure: function _SliverPersistentHeaderElement__build_closure(t0, t1, t2) { this.$this = t0; this.shrinkOffset = t1; this.overlapsContent = t2; }, _SliverPersistentHeaderRenderObjectWidget: function _SliverPersistentHeaderRenderObjectWidget() { }, _RenderSliverPersistentHeaderForWidgetsMixin: function _RenderSliverPersistentHeaderForWidgetsMixin() { }, _SliverPinnedPersistentHeader: function _SliverPinnedPersistentHeader(t0, t1, t2) { this.delegate = t0; this.floating = t1; this.key = t2; }, _RenderSliverPinnedPersistentHeaderForWidgets: function _RenderSliverPinnedPersistentHeaderForWidgets(t0, t1, t2, t3) { var _ = this; _._RenderSliverPersistentHeaderForWidgetsMixin__element = t0; _.__RenderSliverPersistentHeader__lastStretchOffset = $; _._needsUpdateChild = true; _._lastShrinkOffset = 0; _._lastOverlapsContent = false; _.stretchConfiguration = t1; _.RenderObjectWithChildMixin__child = t2; _._geometry = null; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t3; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, __RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin: function __RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin() { }, SlottedMultiChildRenderObjectWidgetMixin: function SlottedMultiChildRenderObjectWidgetMixin() { }, SlottedContainerRenderObjectMixin: function SlottedContainerRenderObjectMixin() { }, SlottedRenderObjectElement: function SlottedRenderObjectElement(t0, t1, t2, t3) { var _ = this; _._slotToChild = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._debugPreviousSlots = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t3; }, Spacer: function Spacer(t0) { this.key = t0; }, Table$(border, children, columnWidths, defaultColumnWidth, defaultVerticalAlignment, key) { var t1; if (B.JSArray_methods.any$1(children, new A.Table_closure())) { t1 = A._arrayInstanceType(children)._eval$1("MappedListIterable<1,Decoration?>"); t1 = A.List_List$of(new A.MappedListIterable(children, new A.Table_closure0(), t1), false, t1._eval$1("ListIterable.E")); } else t1 = null; return new A.Table(children, columnWidths, defaultColumnWidth, border, defaultVerticalAlignment, t1, key); }, TableCell$(child, verticalAlignment) { return new A.TableCell(verticalAlignment, child, null); }, TableRow: function TableRow(t0, t1, t2) { this.key = t0; this.decoration = t1; this.children = t2; }, _TableElementRow: function _TableElementRow(t0, t1) { this.key = t0; this.children = t1; }, Table: function Table(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.children = t0; _.columnWidths = t1; _.defaultColumnWidth = t2; _.border = t3; _.defaultVerticalAlignment = t4; _._rowDecorations = t5; _.key = t6; }, Table_closure: function Table_closure() { }, Table_closure0: function Table_closure0() { }, _TableElement: function _TableElement(t0, t1, t2, t3) { var _ = this; _._table0$_children = t0; _._table0$_doingMountOrUpdate = false; _._table0$_forgottenChildren = t1; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _TableElement_mount_closure: function _TableElement_mount_closure(t0, t1) { this._box_1 = t0; this.$this = t1; }, _TableElement_mount__closure: function _TableElement_mount__closure(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.$this = t2; }, _TableElement_update_closure: function _TableElement_update_closure() { }, _TableElement_update_closure0: function _TableElement_update_closure0(t0) { this.taken = t0; }, _TableElement__updateRenderObjectChildren_closure: function _TableElement__updateRenderObjectChildren_closure() { }, _TableElement__updateRenderObjectChildren__closure: function _TableElement__updateRenderObjectChildren__closure() { }, _TableElement_visitChildren_closure: function _TableElement_visitChildren_closure() { }, TableCell: function TableCell(t0, t1, t2) { this.verticalAlignment = t0; this.child = t1; this.key = t2; }, _TableSlot: function _TableSlot(t0, t1) { this.column = t0; this.row = t1; }, __TableSlot_Object_Diagnosticable: function __TableSlot_Object_Diagnosticable() { }, DefaultTextStyle$(child, key, maxLines, overflow, softWrap, style, textAlign, textHeightBehavior, textWidthBasis) { return new A.DefaultTextStyle(style, textAlign, softWrap, overflow, maxLines, textWidthBasis, textHeightBehavior, child, key); }, DefaultTextHeightBehavior_of(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextHeightBehavior); return t1 == null ? null : t1.get$textHeightBehavior(t1); }, Text$(data, key, maxLines, overflow, semanticsLabel, softWrap, style, textAlign, textDirection, textScaleFactor) { return new A.Text(data, null, style, textAlign, textDirection, softWrap, overflow, textScaleFactor, maxLines, semanticsLabel, key); }, DefaultTextStyle: function DefaultTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.style = t0; _.textAlign = t1; _.softWrap = t2; _.overflow = t3; _.maxLines = t4; _.textWidthBasis = t5; _.textHeightBehavior = t6; _.child = t7; _.key = t8; }, _NullWidget2: function _NullWidget2(t0) { this.key = t0; }, Text: function Text(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.data = t0; _.textSpan = t1; _.style = t2; _.textAlign = t3; _.textDirection = t4; _.softWrap = t5; _.overflow = t6; _.textScaleFactor = t7; _.maxLines = t8; _.semanticsLabel = t9; _.key = t10; }, DoNothingAndStopPropagationTextIntent: function DoNothingAndStopPropagationTextIntent() { }, ReplaceTextIntent: function ReplaceTextIntent(t0, t1, t2, t3) { var _ = this; _.currentTextEditingValue = t0; _.replacementText = t1; _.replacementRange = t2; _.cause = t3; }, UpdateSelectionIntent: function UpdateSelectionIntent(t0, t1, t2) { this.currentTextEditingValue = t0; this.newSelection = t1; this.cause = t2; }, _SelectionHandleOverlay$(dragStartBehavior, handleLayerLink, onSelectionHandleDragEnd, onSelectionHandleDragStart, onSelectionHandleDragUpdate, onSelectionHandleTapped, preferredLineHeight, selectionControls, type, visibility) { return new A._SelectionHandleOverlay(handleLayerLink, onSelectionHandleTapped, onSelectionHandleDragStart, onSelectionHandleDragUpdate, onSelectionHandleDragEnd, selectionControls, visibility, preferredLineHeight, type, dragStartBehavior, null); }, TextSelectionHandleType: function TextSelectionHandleType(t0, t1) { this.index = t0; this._core$_name = t1; }, TextSelectionControls: function TextSelectionControls() { }, TextSelectionOverlay: function TextSelectionOverlay(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.renderObject = t0; _.selectionControls = t1; _.selectionDelegate = t2; _.__TextSelectionOverlay__selectionOverlay = $; _._text_selection$_value = t3; _._effectiveStartHandleVisibility = t4; _._effectiveEndHandleVisibility = t5; _._effectiveToolbarVisibility = t6; _._handlesVisible = false; _.__TextSelectionOverlay__dragStartPosition = _.__TextSelectionOverlay__dragEndPosition = $; }, SelectionOverlay: function SelectionOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.context = t0; _._startHandleType = t1; _._lineHeightAtStart = t2; _.startHandlesVisible = t3; _.onStartHandleDragStart = t4; _.onStartHandleDragUpdate = t5; _._endHandleType = t6; _._lineHeightAtEnd = t7; _.endHandlesVisible = t8; _.onEndHandleDragStart = t9; _.onEndHandleDragUpdate = t10; _.toolbarVisible = t11; _._selectionEndPoints = t12; _.debugRequiredFor = t13; _.toolbarLayerLink = t14; _.startHandleLayerLink = t15; _.endHandleLayerLink = t16; _.selectionControls = t17; _.selectionDelegate = t18; _.dragStartBehavior = t19; _.onSelectionHandleTapped = t20; _.clipboardStatus = t21; _._toolbarLocation = t22; _._toolbar = _._handles = null; _._buildScheduled = false; }, SelectionOverlay__markNeedsBuild_closure: function SelectionOverlay__markNeedsBuild_closure(t0) { this.$this = t0; }, _SelectionHandleOverlay: function _SelectionHandleOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.handleLayerLink = t0; _.onSelectionHandleTapped = t1; _.onSelectionHandleDragStart = t2; _.onSelectionHandleDragUpdate = t3; _.onSelectionHandleDragEnd = t4; _.selectionControls = t5; _.visibility = t6; _.preferredLineHeight = t7; _.type = t8; _.dragStartBehavior = t9; _.key = t10; }, _SelectionHandleOverlayState: function _SelectionHandleOverlayState(t0, t1, t2) { var _ = this; _.___SelectionHandleOverlayState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, TextSelectionGestureDetectorBuilder: function TextSelectionGestureDetectorBuilder() { }, TextSelectionGestureDetector: function TextSelectionGestureDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.onTapDown = t0; _.onForcePressStart = t1; _.onForcePressEnd = t2; _.onSecondaryTap = t3; _.onSecondaryTapDown = t4; _.onSingleTapUp = t5; _.onSingleTapCancel = t6; _.onSingleLongTapStart = t7; _.onSingleLongTapMoveUpdate = t8; _.onSingleLongTapEnd = t9; _.onDoubleTapDown = t10; _.onDragSelectionStart = t11; _.onDragSelectionUpdate = t12; _.onDragSelectionEnd = t13; _.behavior = t14; _.child = t15; _.key = t16; }, _TextSelectionGestureDetectorState: function _TextSelectionGestureDetectorState(t0) { var _ = this; _._lastTapOffset = _._text_selection$_doubleTapTimer = null; _._isDoubleTap = false; _._widget = _._dragUpdateThrottleTimer = _._lastDragUpdateDetails = _._lastDragStartDetails = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TextSelectionGestureDetectorState_build_closure: function _TextSelectionGestureDetectorState_build_closure(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure0: function _TextSelectionGestureDetectorState_build_closure0(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure1: function _TextSelectionGestureDetectorState_build_closure1(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure2: function _TextSelectionGestureDetectorState_build_closure2(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure3: function _TextSelectionGestureDetectorState_build_closure3(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure4: function _TextSelectionGestureDetectorState_build_closure4(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure5: function _TextSelectionGestureDetectorState_build_closure5(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure6: function _TextSelectionGestureDetectorState_build_closure6(t0) { this.$this = t0; }, __SelectionHandleOverlayState_State_SingleTickerProviderStateMixin: function __SelectionHandleOverlayState_State_SingleTickerProviderStateMixin() { }, TickerMode_of(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._EffectiveTickerMode), t1 = widget == null ? null : widget.enabled; return t1 !== false; }, TickerMode_getNotifier(context) { var t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._EffectiveTickerMode); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } type$.nullable__EffectiveTickerMode._as(t1); t1 = t1 == null ? null : t1.notifier; return t1 == null ? new A.ValueNotifier(true, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_bool) : t1; }, TickerMode: function TickerMode(t0, t1, t2) { this.enabled = t0; this.child = t1; this.key = t2; }, _TickerModeState: function _TickerModeState(t0, t1) { var _ = this; _._ancestorTicketMode = true; _._effectiveMode = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _EffectiveTickerMode: function _EffectiveTickerMode(t0, t1, t2, t3) { var _ = this; _.enabled = t0; _.notifier = t1; _.child = t2; _.key = t3; }, SingleTickerProviderStateMixin: function SingleTickerProviderStateMixin() { }, TickerProviderStateMixin: function TickerProviderStateMixin() { }, _WidgetTicker: function _WidgetTicker(t0, t1, t2) { var _ = this; _._creator = t0; _._ticker$_future = null; _._muted = false; _._startTime = null; _._onTick = t1; _._animationId = null; _.debugLabel = t2; _.__Ticker__debugCreationStack = $; }, Title: function Title(t0, t1, t2, t3) { var _ = this; _.title = t0; _.color = t1; _.child = t2; _.key = t3; }, SlideTransition$(child, position, textDirection, transformHitTests) { return new A.SlideTransition(textDirection, transformHitTests, child, position, null); }, ScaleTransition$(alignment, child, scale) { return new A.ScaleTransition(alignment, child, scale, null); }, RotationTransition$(alignment, child, turns) { return new A.RotationTransition(alignment, child, turns, null); }, SizeTransition$(axis, axisAlignment, child, sizeFactor) { return new A.SizeTransition(axis, axisAlignment, child, sizeFactor, null); }, FadeTransition$(alwaysIncludeSemantics, child, opacity) { return new A.FadeTransition(opacity, alwaysIncludeSemantics, child, null); }, AnimatedBuilder$(animation, builder, child) { return new A.AnimatedBuilder(builder, child, animation, null); }, AnimatedWidget: function AnimatedWidget() { }, _AnimatedState: function _AnimatedState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _AnimatedState__handleChange_closure: function _AnimatedState__handleChange_closure() { }, SlideTransition: function SlideTransition(t0, t1, t2, t3, t4) { var _ = this; _.textDirection = t0; _.transformHitTests = t1; _.child = t2; _.listenable = t3; _.key = t4; }, ScaleTransition: function ScaleTransition(t0, t1, t2, t3) { var _ = this; _.alignment = t0; _.child = t1; _.listenable = t2; _.key = t3; }, RotationTransition: function RotationTransition(t0, t1, t2, t3) { var _ = this; _.alignment = t0; _.child = t1; _.listenable = t2; _.key = t3; }, SizeTransition: function SizeTransition(t0, t1, t2, t3, t4) { var _ = this; _.axis = t0; _.axisAlignment = t1; _.child = t2; _.listenable = t3; _.key = t4; }, FadeTransition: function FadeTransition(t0, t1, t2, t3) { var _ = this; _.opacity = t0; _.alwaysIncludeSemantics = t1; _.child = t2; _.key = t3; }, DecoratedBoxTransition: function DecoratedBoxTransition(t0, t1, t2, t3) { var _ = this; _.decoration = t0; _.child = t1; _.listenable = t2; _.key = t3; }, AnimatedBuilder: function AnimatedBuilder(t0, t1, t2, t3) { var _ = this; _.builder = t0; _.child = t1; _.listenable = t2; _.key = t3; }, ValueListenableBuilder$(builder, valueListenable, $T) { return new A.ValueListenableBuilder(valueListenable, builder, null, $T._eval$1("ValueListenableBuilder<0>")); }, ValueListenableBuilder: function ValueListenableBuilder(t0, t1, t2, t3) { var _ = this; _.valueListenable = t0; _.builder = t1; _.key = t2; _.$ti = t3; }, _ValueListenableBuilderState: function _ValueListenableBuilderState(t0, t1) { var _ = this; _.___ValueListenableBuilderState_value = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _ValueListenableBuilderState__valueChanged_closure: function _ValueListenableBuilderState__valueChanged_closure(t0) { this.$this = t0; }, Viewport$(anchor, axisDirection, cacheExtent, cacheExtentStyle, center, clipBehavior, offset, slivers) { return new A.Viewport(axisDirection, anchor, offset, center, cacheExtent, cacheExtentStyle, clipBehavior, slivers, null); }, Viewport_getDefaultCrossAxisDirection(context, axisDirection) { var t1; switch (axisDirection.index) { case 0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return A.textDirectionToAxisDirection(t1.textDirection); case 1: return B.AxisDirection_2; case 2: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return A.textDirectionToAxisDirection(t1.textDirection); case 3: return B.AxisDirection_2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, Viewport: function Viewport(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.axisDirection = t0; _.anchor = t1; _.offset = t2; _.center = t3; _.cacheExtent = t4; _.cacheExtentStyle = t5; _.clipBehavior = t6; _.children = t7; _.key = t8; }, _ViewportElement: function _ViewportElement(t0, t1, t2) { var _ = this; _._doingMountOrUpdate = false; _._centerSlotIndex = null; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, ShrinkWrappingViewport: function ShrinkWrappingViewport(t0, t1, t2, t3, t4) { var _ = this; _.axisDirection = t0; _.offset = t1; _.clipBehavior = t2; _.children = t3; _.key = t4; }, __ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin: function __ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin() { }, __ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin: function __ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin() { }, WidgetSpan: function WidgetSpan() { }, WillPopScope: function WillPopScope(t0, t1, t2) { this.child = t0; this.onWillPop = t1; this.key = t2; }, _WillPopScopeState: function _WillPopScopeState(t0) { var _ = this; _._widget = _._route = null; _._debugLifecycleState = t0; _._framework$_element = null; }, CacheManager: function CacheManager() { }, DefaultCacheManager: function DefaultCacheManager(t0, t1, t2) { var _ = this; _.ImageCacheManager__runningResizes = t0; _._cache_manager$_config = t1; _._cache_manager$_store = t2; _.__CacheManager__webHelper = $; }, _DefaultCacheManager_CacheManager_ImageCacheManager: function _DefaultCacheManager_CacheManager_ImageCacheManager() { }, ImageCacheManager: function ImageCacheManager() { }, CacheStore$(config) { var t1 = type$.String, t2 = Date.now(); return new A.CacheStore(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_nullable_CacheObject), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.CacheObject), config.fileSystem, config, config.repo.open$0(0).then$1$1(0, new A.CacheStore_closure(config), type$.CacheInfoRepository), new A.DateTime(t2, false)); }, CacheStore: function CacheStore(t0, t1, t2, t3, t4, t5) { var _ = this; _._futureCache = t0; _._cache_store$_memCache = t1; _.fileSystem = t2; _._cache_store$_config = t3; _._cacheInfoRepository = t4; _.lastCleanupRun = t5; _._scheduledCleanup = null; }, CacheStore_closure: function CacheStore_closure(t0) { this.config = t0; }, CacheStore_retrieveCacheData_closure: function CacheStore_retrieveCacheData_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.completer = t2; }, CacheStore__scheduleCleanup_closure: function CacheStore__scheduleCleanup_closure(t0) { this.$this = t0; }, Config: function Config(t0, t1, t2, t3, t4) { var _ = this; _.repo = t0; _.fileSystem = t1; _.stalePeriod = t2; _.maxNrOfCacheObjects = t3; _.fileService = t4; }, CacheLogger: function CacheLogger() { }, DownloadProgress: function DownloadProgress(t0, t1) { this.totalSize = t0; this.downloaded = t1; }, FileInfo: function FileInfo(t0, t1) { this.file = t0; this.validTill = t1; }, FileResponse: function FileResponse() { }, NonStoringObjectProvider: function NonStoringObjectProvider() { }, CacheObject$(url, eTag, id, key, $length, relativePath, touched, validTill) { return new A.CacheObject(id, url, key == null ? url : key, relativePath, validTill, eTag, $length, touched); }, CacheObject: function CacheObject(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.id = t0; _.url = t1; _.key = t2; _.relativePath = t3; _.validTill = t4; _.eTag = t5; _.length = t6; _.touched = t7; }, MemoryCacheSystem: function MemoryCacheSystem(t0) { this.directory = t0; }, HttpFileService$() { return new A.HttpFileService(new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest))); }, FileService: function FileService() { }, HttpFileService: function HttpFileService(t0) { this._httpClient = t0; }, HttpGetResponse: function HttpGetResponse(t0, t1) { this._receivedTime = t0; this._file_service$_response = t1; }, QueueItem: function QueueItem(t0, t1, t2) { this.url = t0; this.key = t1; this.headers = t2; }, WebHelper: function WebHelper(t0, t1, t2, t3) { var _ = this; _._web_helper$_store = t0; _.fileFetcher = t1; _._memCache = t2; _._web_helper$_queue = t3; _.concurrentCalls = 0; }, WebHelper__manageResponse_closure: function WebHelper__manageResponse_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.oldCacheObject = t2; }, WebHelper__saveFileAndPostUpdates_closure: function WebHelper__saveFileAndPostUpdates_closure(t0, t1) { this._box_0 = t0; this.receivedBytesResultController = t1; }, HttpExceptionWithStatus: function HttpExceptionWithStatus(t0, t1) { this.message = t0; this.uri = t1; }, _defaultLayoutBuilder(context, colors, child) { var t2, t3, t4, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t1 = t1.get$orientation(t1) === B.Orientation_0; t2 = t1 ? 360 : 200; t1 = t1 ? 4 : 6; t3 = A._setArrayType([], type$.JSArray_Widget); for (t4 = J.get$iterator$ax(colors); t4.moveNext$0();) t3.push(child.call$1(t4.get$current(t4))); return new A.SizedBox(300, t2, A.GridView$count(1, t3, t1, 5, 5, _null, _null, _null, false), _null); }, _defaultItemBuilder(color, isCurrentColor, changeColor) { var _null = null, t1 = A._setArrayType([new A.BoxShadow(0, B.BlurStyle_0, A.Color$fromARGB(204, color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), B.Offset_1_2, 5)], type$.JSArray_BoxShadow), t2 = A.BorderRadius$circular(50), t3 = isCurrentColor ? 1 : 0; return A.Container$(_null, A.Material$(B.Duration_200000, true, _null, A.InkWell$(false, t2, true, A.AnimatedOpacity$(false, A.Icon$(B.IconData_57846_MaterialIcons_null_false, B.JSNumber_methods.round$0(Math.sqrt(Math.pow(color.get$value(color) >>> 16 & 255, 2) * 0.299 + Math.pow(color.get$value(color) >>> 8 & 255, 2) * 0.587 + Math.pow(color.get$value(color) & 255, 2) * 0.114)) < 130 && true ? B.Color_4294967295 : B.Color_4278190080, _null), B.C__Linear, B.Duration_210000, t3), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, changeColor, _null, _null, _null, _null, _null, _null), B.Clip_0, B.Color_0, 0, _null, _null, _null, _null, _null, B.MaterialType_0), B.Clip_0, _null, _null, new A.BoxDecoration(color, _null, _null, _null, t1, _null, B.BoxShape_1), _null, _null, _null, B.EdgeInsets_7_7_7_7, _null, _null, _null, _null); }, BlockPicker: function BlockPicker(t0, t1, t2, t3) { var _ = this; _.pickerColor = t0; _.onColorChanged = t1; _.availableColors = t2; _.key = t3; }, _BlockPickerState: function _BlockPickerState(t0) { var _ = this; _.___BlockPickerState__currentColor = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _BlockPickerState_changeColor_closure: function _BlockPickerState_changeColor_closure(t0, t1) { this.$this = t0; this.color = t1; }, _BlockPickerState_build_closure: function _BlockPickerState_build_closure(t0) { this.$this = t0; }, _BlockPickerState_build__closure: function _BlockPickerState_build__closure(t0, t1) { this.$this = t0; this.color = t1; }, _JsonViewerState_getContentWidget($content) { return new A.JsonObjectViewer($content, false, null); }, JsonObjectViewerState_getContentWidget($content) { if (type$.List_dynamic._is($content)) return new A.JsonArrayViewer($content, true, null); else return new A.JsonObjectViewer($content, true, null); }, JsonObjectViewerState_isInkWell($content) { if ($content == null) return false; else if (A._isInt($content)) return false; else if (typeof $content == "string") return false; else if (A._isBool($content)) return false; else if (typeof $content == "number") return false; else if (type$.List_dynamic._is($content)) if (J.get$isEmpty$asx($content)) return false; else return true; return true; }, JsonObjectViewerState_isExtensible($content) { if ($content == null) return false; else if (A._isInt($content)) return false; else if (typeof $content == "string") return false; else if (A._isBool($content)) return false; else if (typeof $content == "number") return false; return true; }, JsonObjectViewerState_getTypeName($content) { if (A._isInt($content)) return "int"; else if (typeof $content == "string") return "String"; else if (A._isBool($content)) return "bool"; else if (typeof $content == "number") return "double"; else if (type$.List_dynamic._is($content)) return "List"; return "Object"; }, JsonViewer: function JsonViewer(t0, t1) { this.jsonObj = t0; this.key = t1; }, _JsonViewerState: function _JsonViewerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, JsonObjectViewer: function JsonObjectViewer(t0, t1, t2) { this.jsonObj = t0; this.notRoot = t1; this.key = t2; }, JsonObjectViewerState: function JsonObjectViewerState(t0, t1) { var _ = this; _.openFlag = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, JsonObjectViewerState__getList_closure: function JsonObjectViewerState__getList_closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState__getList__closure: function JsonObjectViewerState__getList__closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget_closure: function JsonObjectViewerState_getValueWidget_closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget__closure0: function JsonObjectViewerState_getValueWidget__closure0(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget_closure0: function JsonObjectViewerState_getValueWidget_closure0(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget__closure: function JsonObjectViewerState_getValueWidget__closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonArrayViewer: function JsonArrayViewer(t0, t1, t2) { this.jsonArray = t0; this.notRoot = t1; this.key = t2; }, _JsonArrayViewerState: function _JsonArrayViewerState(t0) { var _ = this; _.___JsonArrayViewerState_openFlag = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _JsonArrayViewerState_getInkWell_closure: function _JsonArrayViewerState_getInkWell_closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getInkWell__closure: function _JsonArrayViewerState_getInkWell__closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget_closure: function _JsonArrayViewerState_getValueWidget_closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget__closure0: function _JsonArrayViewerState_getValueWidget__closure0(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget_closure0: function _JsonArrayViewerState_getValueWidget_closure0(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget__closure: function _JsonArrayViewerState_getValueWidget__closure(t0, t1) { this.$this = t0; this.index = t1; }, GlobalCupertinoLocalizations: function GlobalCupertinoLocalizations() { }, _GlobalCupertinoLocalizationsDelegate: function _GlobalCupertinoLocalizationsDelegate() { }, _GlobalCupertinoLocalizationsDelegate_load_closure: function _GlobalCupertinoLocalizationsDelegate_load_closure(t0) { this.locale = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats: function _GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.fullYearFormat = t0; _.dayFormat = t1; _.mediumDateFormat = t2; _.singleDigitHourFormat = t3; _.singleDigitMinuteFormat = t4; _.doubleDigitMinuteFormat = t5; _.singleDigitSecondFormat = t6; _.decimalFormat = t7; }, CupertinoLocalizationDe$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationDe(); }, CupertinoLocalizationEn$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationEn(); }, CupertinoLocalizationEs$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationEs(); }, CupertinoLocalizationFr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationFr(); }, CupertinoLocalizationPt$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationPt(); }, CupertinoLocalizationSr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationSr(); }, CupertinoLocalizationZh$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationZh(); }, CupertinoLocalizationZhHant$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationZhHant(); }, CupertinoLocalizationZhHantHk$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationZhHantHk(); }, CupertinoLocalizationZhHantTw$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new A.CupertinoLocalizationZhHantTw(); }, getCupertinoTranslation(locale, fullYearFormat, dayFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, doubleDigitMinuteFormat, singleDigitSecondFormat, decimalFormat) { switch (locale.get$languageCode(locale)) { case "af": return new A.CupertinoLocalizationAf(); case "am": return new A.CupertinoLocalizationAm(); case "ar": return new A.CupertinoLocalizationAr(); case "as": return new A.CupertinoLocalizationAs(); case "az": return new A.CupertinoLocalizationAz(); case "be": return new A.CupertinoLocalizationBe(); case "bg": return new A.CupertinoLocalizationBg(); case "bn": return new A.CupertinoLocalizationBn(); case "bs": return new A.CupertinoLocalizationBs(); case "ca": return new A.CupertinoLocalizationCa(); case "cs": return new A.CupertinoLocalizationCs(); case "da": return new A.CupertinoLocalizationDa(); case "de": switch (locale.get$countryCode()) { case "CH": return new A.CupertinoLocalizationDeCh(); } return A.CupertinoLocalizationDe$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "de", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "el": return new A.CupertinoLocalizationEl(); case "en": switch (locale.get$countryCode()) { case "AU": return new A.CupertinoLocalizationEnAu(); case "CA": return new A.CupertinoLocalizationEnCa(); case "GB": return new A.CupertinoLocalizationEnGb(); case "IE": return new A.CupertinoLocalizationEnIe(); case "IN": return new A.CupertinoLocalizationEnIn(); case "NZ": return new A.CupertinoLocalizationEnNz(); case "SG": return new A.CupertinoLocalizationEnSg(); case "ZA": return new A.CupertinoLocalizationEnZa(); } return A.CupertinoLocalizationEn$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "en", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "es": switch (locale.get$countryCode()) { case "419": return new A.CupertinoLocalizationEs419(); case "AR": return new A.CupertinoLocalizationEsAr(); case "BO": return new A.CupertinoLocalizationEsBo(); case "CL": return new A.CupertinoLocalizationEsCl(); case "CO": return new A.CupertinoLocalizationEsCo(); case "CR": return new A.CupertinoLocalizationEsCr(); case "DO": return new A.CupertinoLocalizationEsDo(); case "EC": return new A.CupertinoLocalizationEsEc(); case "GT": return new A.CupertinoLocalizationEsGt(); case "HN": return new A.CupertinoLocalizationEsHn(); case "MX": return new A.CupertinoLocalizationEsMx(); case "NI": return new A.CupertinoLocalizationEsNi(); case "PA": return new A.CupertinoLocalizationEsPa(); case "PE": return new A.CupertinoLocalizationEsPe(); case "PR": return new A.CupertinoLocalizationEsPr(); case "PY": return new A.CupertinoLocalizationEsPy(); case "SV": return new A.CupertinoLocalizationEsSv(); case "US": return new A.CupertinoLocalizationEsUs(); case "UY": return new A.CupertinoLocalizationEsUy(); case "VE": return new A.CupertinoLocalizationEsVe(); } return A.CupertinoLocalizationEs$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "es", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "et": return new A.CupertinoLocalizationEt(); case "eu": return new A.CupertinoLocalizationEu(); case "fa": return new A.CupertinoLocalizationFa(); case "fi": return new A.CupertinoLocalizationFi(); case "fil": return new A.CupertinoLocalizationFil(); case "fr": switch (locale.get$countryCode()) { case "CA": return new A.CupertinoLocalizationFrCa(); } return A.CupertinoLocalizationFr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "fr", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "gl": return new A.CupertinoLocalizationGl(); case "gsw": return new A.CupertinoLocalizationGsw(); case "gu": return new A.CupertinoLocalizationGu(); case "he": return new A.CupertinoLocalizationHe(); case "hi": return new A.CupertinoLocalizationHi(); case "hr": return new A.CupertinoLocalizationHr(); case "hu": return new A.CupertinoLocalizationHu(); case "hy": return new A.CupertinoLocalizationHy(); case "id": return new A.CupertinoLocalizationId(); case "is": return new A.CupertinoLocalizationIs(); case "it": return new A.CupertinoLocalizationIt(); case "ja": return new A.CupertinoLocalizationJa(); case "ka": return new A.CupertinoLocalizationKa(); case "kk": return new A.CupertinoLocalizationKk(); case "km": return new A.CupertinoLocalizationKm(); case "kn": return new A.CupertinoLocalizationKn(); case "ko": return new A.CupertinoLocalizationKo(); case "ky": return new A.CupertinoLocalizationKy(); case "lo": return new A.CupertinoLocalizationLo(); case "lt": return new A.CupertinoLocalizationLt(); case "lv": return new A.CupertinoLocalizationLv(); case "mk": return new A.CupertinoLocalizationMk(); case "ml": return new A.CupertinoLocalizationMl(); case "mn": return new A.CupertinoLocalizationMn(); case "mr": return new A.CupertinoLocalizationMr(); case "ms": return new A.CupertinoLocalizationMs(); case "my": return new A.CupertinoLocalizationMy(); case "nb": return new A.CupertinoLocalizationNb(); case "ne": return new A.CupertinoLocalizationNe(); case "nl": return new A.CupertinoLocalizationNl(); case "no": return new A.CupertinoLocalizationNo(); case "or": return new A.CupertinoLocalizationOr(); case "pa": return new A.CupertinoLocalizationPa(); case "pl": return new A.CupertinoLocalizationPl(); case "pt": switch (locale.get$countryCode()) { case "PT": return new A.CupertinoLocalizationPtPt(); } return A.CupertinoLocalizationPt$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "pt", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "ro": return new A.CupertinoLocalizationRo(); case "ru": return new A.CupertinoLocalizationRu(); case "si": return new A.CupertinoLocalizationSi(); case "sk": return new A.CupertinoLocalizationSk(); case "sl": return new A.CupertinoLocalizationSl(); case "sq": return new A.CupertinoLocalizationSq(); case "sr": switch (null) { case "Cyrl": return new A.CupertinoLocalizationSrCyrl(); case "Latn": return new A.CupertinoLocalizationSrLatn(); } return A.CupertinoLocalizationSr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "sr", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "sv": return new A.CupertinoLocalizationSv(); case "sw": return new A.CupertinoLocalizationSw(); case "ta": return new A.CupertinoLocalizationTa(); case "te": return new A.CupertinoLocalizationTe(); case "th": return new A.CupertinoLocalizationTh(); case "tl": return new A.CupertinoLocalizationTl(); case "tr": return new A.CupertinoLocalizationTr(); case "uk": return new A.CupertinoLocalizationUk(); case "ur": return new A.CupertinoLocalizationUr(); case "uz": return new A.CupertinoLocalizationUz(); case "vi": return new A.CupertinoLocalizationVi(); case "zh": switch (null) { case "Hans": return new A.CupertinoLocalizationZhHans(); case "Hant": switch (locale.get$countryCode()) { case "HK": return A.CupertinoLocalizationZhHantHk$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "TW": return A.CupertinoLocalizationZhHantTw$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } return A.CupertinoLocalizationZhHant$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "zh_Hant", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } switch (locale.get$countryCode()) { case "HK": return A.CupertinoLocalizationZhHantHk$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "TW": return A.CupertinoLocalizationZhHantTw$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } return A.CupertinoLocalizationZh$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "zh", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "zu": return new A.CupertinoLocalizationZu(); } return null; }, CupertinoLocalizationAf: function CupertinoLocalizationAf() { }, CupertinoLocalizationAm: function CupertinoLocalizationAm() { }, CupertinoLocalizationAr: function CupertinoLocalizationAr() { }, CupertinoLocalizationAs: function CupertinoLocalizationAs() { }, CupertinoLocalizationAz: function CupertinoLocalizationAz() { }, CupertinoLocalizationBe: function CupertinoLocalizationBe() { }, CupertinoLocalizationBg: function CupertinoLocalizationBg() { }, CupertinoLocalizationBn: function CupertinoLocalizationBn() { }, CupertinoLocalizationBs: function CupertinoLocalizationBs() { }, CupertinoLocalizationCa: function CupertinoLocalizationCa() { }, CupertinoLocalizationCs: function CupertinoLocalizationCs() { }, CupertinoLocalizationDa: function CupertinoLocalizationDa() { }, CupertinoLocalizationDe: function CupertinoLocalizationDe() { }, CupertinoLocalizationDeCh: function CupertinoLocalizationDeCh() { }, CupertinoLocalizationEl: function CupertinoLocalizationEl() { }, CupertinoLocalizationEn: function CupertinoLocalizationEn() { }, CupertinoLocalizationEnAu: function CupertinoLocalizationEnAu() { }, CupertinoLocalizationEnCa: function CupertinoLocalizationEnCa() { }, CupertinoLocalizationEnGb: function CupertinoLocalizationEnGb() { }, CupertinoLocalizationEnIe: function CupertinoLocalizationEnIe() { }, CupertinoLocalizationEnIn: function CupertinoLocalizationEnIn() { }, CupertinoLocalizationEnNz: function CupertinoLocalizationEnNz() { }, CupertinoLocalizationEnSg: function CupertinoLocalizationEnSg() { }, CupertinoLocalizationEnZa: function CupertinoLocalizationEnZa() { }, CupertinoLocalizationEs: function CupertinoLocalizationEs() { }, CupertinoLocalizationEs419: function CupertinoLocalizationEs419() { }, CupertinoLocalizationEsAr: function CupertinoLocalizationEsAr() { }, CupertinoLocalizationEsBo: function CupertinoLocalizationEsBo() { }, CupertinoLocalizationEsCl: function CupertinoLocalizationEsCl() { }, CupertinoLocalizationEsCo: function CupertinoLocalizationEsCo() { }, CupertinoLocalizationEsCr: function CupertinoLocalizationEsCr() { }, CupertinoLocalizationEsDo: function CupertinoLocalizationEsDo() { }, CupertinoLocalizationEsEc: function CupertinoLocalizationEsEc() { }, CupertinoLocalizationEsGt: function CupertinoLocalizationEsGt() { }, CupertinoLocalizationEsHn: function CupertinoLocalizationEsHn() { }, CupertinoLocalizationEsMx: function CupertinoLocalizationEsMx() { }, CupertinoLocalizationEsNi: function CupertinoLocalizationEsNi() { }, CupertinoLocalizationEsPa: function CupertinoLocalizationEsPa() { }, CupertinoLocalizationEsPe: function CupertinoLocalizationEsPe() { }, CupertinoLocalizationEsPr: function CupertinoLocalizationEsPr() { }, CupertinoLocalizationEsPy: function CupertinoLocalizationEsPy() { }, CupertinoLocalizationEsSv: function CupertinoLocalizationEsSv() { }, CupertinoLocalizationEsUs: function CupertinoLocalizationEsUs() { }, CupertinoLocalizationEsUy: function CupertinoLocalizationEsUy() { }, CupertinoLocalizationEsVe: function CupertinoLocalizationEsVe() { }, CupertinoLocalizationEt: function CupertinoLocalizationEt() { }, CupertinoLocalizationEu: function CupertinoLocalizationEu() { }, CupertinoLocalizationFa: function CupertinoLocalizationFa() { }, CupertinoLocalizationFi: function CupertinoLocalizationFi() { }, CupertinoLocalizationFil: function CupertinoLocalizationFil() { }, CupertinoLocalizationFr: function CupertinoLocalizationFr() { }, CupertinoLocalizationFrCa: function CupertinoLocalizationFrCa() { }, CupertinoLocalizationGl: function CupertinoLocalizationGl() { }, CupertinoLocalizationGsw: function CupertinoLocalizationGsw() { }, CupertinoLocalizationGu: function CupertinoLocalizationGu() { }, CupertinoLocalizationHe: function CupertinoLocalizationHe() { }, CupertinoLocalizationHi: function CupertinoLocalizationHi() { }, CupertinoLocalizationHr: function CupertinoLocalizationHr() { }, CupertinoLocalizationHu: function CupertinoLocalizationHu() { }, CupertinoLocalizationHy: function CupertinoLocalizationHy() { }, CupertinoLocalizationId: function CupertinoLocalizationId() { }, CupertinoLocalizationIs: function CupertinoLocalizationIs() { }, CupertinoLocalizationIt: function CupertinoLocalizationIt() { }, CupertinoLocalizationJa: function CupertinoLocalizationJa() { }, CupertinoLocalizationKa: function CupertinoLocalizationKa() { }, CupertinoLocalizationKk: function CupertinoLocalizationKk() { }, CupertinoLocalizationKm: function CupertinoLocalizationKm() { }, CupertinoLocalizationKn: function CupertinoLocalizationKn() { }, CupertinoLocalizationKo: function CupertinoLocalizationKo() { }, CupertinoLocalizationKy: function CupertinoLocalizationKy() { }, CupertinoLocalizationLo: function CupertinoLocalizationLo() { }, CupertinoLocalizationLt: function CupertinoLocalizationLt() { }, CupertinoLocalizationLv: function CupertinoLocalizationLv() { }, CupertinoLocalizationMk: function CupertinoLocalizationMk() { }, CupertinoLocalizationMl: function CupertinoLocalizationMl() { }, CupertinoLocalizationMn: function CupertinoLocalizationMn() { }, CupertinoLocalizationMr: function CupertinoLocalizationMr() { }, CupertinoLocalizationMs: function CupertinoLocalizationMs() { }, CupertinoLocalizationMy: function CupertinoLocalizationMy() { }, CupertinoLocalizationNb: function CupertinoLocalizationNb() { }, CupertinoLocalizationNe: function CupertinoLocalizationNe() { }, CupertinoLocalizationNl: function CupertinoLocalizationNl() { }, CupertinoLocalizationNo: function CupertinoLocalizationNo() { }, CupertinoLocalizationOr: function CupertinoLocalizationOr() { }, CupertinoLocalizationPa: function CupertinoLocalizationPa() { }, CupertinoLocalizationPl: function CupertinoLocalizationPl() { }, CupertinoLocalizationPt: function CupertinoLocalizationPt() { }, CupertinoLocalizationPtPt: function CupertinoLocalizationPtPt() { }, CupertinoLocalizationRo: function CupertinoLocalizationRo() { }, CupertinoLocalizationRu: function CupertinoLocalizationRu() { }, CupertinoLocalizationSi: function CupertinoLocalizationSi() { }, CupertinoLocalizationSk: function CupertinoLocalizationSk() { }, CupertinoLocalizationSl: function CupertinoLocalizationSl() { }, CupertinoLocalizationSq: function CupertinoLocalizationSq() { }, CupertinoLocalizationSr: function CupertinoLocalizationSr() { }, CupertinoLocalizationSrCyrl: function CupertinoLocalizationSrCyrl() { }, CupertinoLocalizationSrLatn: function CupertinoLocalizationSrLatn() { }, CupertinoLocalizationSv: function CupertinoLocalizationSv() { }, CupertinoLocalizationSw: function CupertinoLocalizationSw() { }, CupertinoLocalizationTa: function CupertinoLocalizationTa() { }, CupertinoLocalizationTe: function CupertinoLocalizationTe() { }, CupertinoLocalizationTh: function CupertinoLocalizationTh() { }, CupertinoLocalizationTl: function CupertinoLocalizationTl() { }, CupertinoLocalizationTr: function CupertinoLocalizationTr() { }, CupertinoLocalizationUk: function CupertinoLocalizationUk() { }, CupertinoLocalizationUr: function CupertinoLocalizationUr() { }, CupertinoLocalizationUz: function CupertinoLocalizationUz() { }, CupertinoLocalizationVi: function CupertinoLocalizationVi() { }, CupertinoLocalizationZh: function CupertinoLocalizationZh() { }, CupertinoLocalizationZhHans: function CupertinoLocalizationZhHans() { }, CupertinoLocalizationZhHant: function CupertinoLocalizationZhHant() { }, CupertinoLocalizationZhHantHk: function CupertinoLocalizationZhHantHk() { }, CupertinoLocalizationZhHantTw: function CupertinoLocalizationZhHantTw() { }, CupertinoLocalizationZu: function CupertinoLocalizationZu() { }, MaterialLocalizationDe$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationDe(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationEn$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationEn(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationEs$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationEs(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationFr$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationFr(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationPt$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationPt(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationSr$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationSr(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZh$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationZh(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHant$(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationZhHant(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHantHk$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationZhHantHk("zh_Hant_HK", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHantTw$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new A.MaterialLocalizationZhHantTw("zh_Hant_TW", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, getMaterialTranslation(locale, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat) { switch (locale.get$languageCode(locale)) { case "af": return new A.MaterialLocalizationAf("af", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "am": return new A.MaterialLocalizationAm("am", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ar": return new A.MaterialLocalizationAr("ar", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "as": return new A.MaterialLocalizationAs("as", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "az": return new A.MaterialLocalizationAz("az", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "be": return new A.MaterialLocalizationBe("be", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bg": return new A.MaterialLocalizationBg("bg", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bn": return new A.MaterialLocalizationBn("bn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bs": return new A.MaterialLocalizationBs("bs", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ca": return new A.MaterialLocalizationCa("ca", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "cs": return new A.MaterialLocalizationCs("cs", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "da": return new A.MaterialLocalizationDa("da", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "de": switch (locale.get$countryCode()) { case "CH": return new A.MaterialLocalizationDeCh("de_CH", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationDe$(compactDateFormat, decimalFormat, fullYearFormat, "de", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "el": return new A.MaterialLocalizationEl("el", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "en": switch (locale.get$countryCode()) { case "AU": return new A.MaterialLocalizationEnAu("en_AU", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CA": return new A.MaterialLocalizationEnCa("en_CA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "GB": return new A.MaterialLocalizationEnGb("en_GB", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "IE": return new A.MaterialLocalizationEnIe("en_IE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "IN": return new A.MaterialLocalizationEnIn("en_IN", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "NZ": return new A.MaterialLocalizationEnNz("en_NZ", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "SG": return new A.MaterialLocalizationEnSg("en_SG", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ZA": return new A.MaterialLocalizationEnZa("en_ZA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationEn$(compactDateFormat, decimalFormat, fullYearFormat, "en", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "es": switch (locale.get$countryCode()) { case "419": return new A.MaterialLocalizationEs419("es_419", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "AR": return new A.MaterialLocalizationEsAr("es_AR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "BO": return new A.MaterialLocalizationEsBo("es_BO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CL": return new A.MaterialLocalizationEsCl("es_CL", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CO": return new A.MaterialLocalizationEsCo("es_CO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CR": return new A.MaterialLocalizationEsCr("es_CR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "DO": return new A.MaterialLocalizationEsDo("es_DO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "EC": return new A.MaterialLocalizationEsEc("es_EC", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "GT": return new A.MaterialLocalizationEsGt("es_GT", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "HN": return new A.MaterialLocalizationEsHn("es_HN", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "MX": return new A.MaterialLocalizationEsMx("es_MX", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "NI": return new A.MaterialLocalizationEsNi("es_NI", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PA": return new A.MaterialLocalizationEsPa("es_PA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PE": return new A.MaterialLocalizationEsPe("es_PE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PR": return new A.MaterialLocalizationEsPr("es_PR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PY": return new A.MaterialLocalizationEsPy("es_PY", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "SV": return new A.MaterialLocalizationEsSv("es_SV", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "US": return new A.MaterialLocalizationEsUs("es_US", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "UY": return new A.MaterialLocalizationEsUy("es_UY", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "VE": return new A.MaterialLocalizationEsVe("es_VE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationEs$(compactDateFormat, decimalFormat, fullYearFormat, "es", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "et": return new A.MaterialLocalizationEt("et", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "eu": return new A.MaterialLocalizationEu("eu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fa": return new A.MaterialLocalizationFa("fa", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fi": return new A.MaterialLocalizationFi("fi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fil": return new A.MaterialLocalizationFil("fil", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fr": switch (locale.get$countryCode()) { case "CA": return new A.MaterialLocalizationFrCa("fr_CA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationFr$(compactDateFormat, decimalFormat, fullYearFormat, "fr", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "gl": return new A.MaterialLocalizationGl("gl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "gsw": return new A.MaterialLocalizationGsw("gsw", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "gu": return new A.MaterialLocalizationGu("gu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "he": return new A.MaterialLocalizationHe("he", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hi": return new A.MaterialLocalizationHi("hi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hr": return new A.MaterialLocalizationHr("hr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hu": return new A.MaterialLocalizationHu("hu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hy": return new A.MaterialLocalizationHy("hy", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "id": return new A.MaterialLocalizationId("id", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "is": return new A.MaterialLocalizationIs("is", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "it": return new A.MaterialLocalizationIt("it", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ja": return new A.MaterialLocalizationJa("ja", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ka": return new A.MaterialLocalizationKa("ka", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "kk": return new A.MaterialLocalizationKk("kk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "km": return new A.MaterialLocalizationKm("km", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "kn": return new A.MaterialLocalizationKn("kn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ko": return new A.MaterialLocalizationKo("ko", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ky": return new A.MaterialLocalizationKy("ky", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lo": return new A.MaterialLocalizationLo("lo", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lt": return new A.MaterialLocalizationLt("lt", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lv": return new A.MaterialLocalizationLv("lv", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mk": return new A.MaterialLocalizationMk("mk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ml": return new A.MaterialLocalizationMl("ml", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mn": return new A.MaterialLocalizationMn("mn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mr": return new A.MaterialLocalizationMr("mr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ms": return new A.MaterialLocalizationMs("ms", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "my": return new A.MaterialLocalizationMy("my", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "nb": return new A.MaterialLocalizationNb("nb", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ne": return new A.MaterialLocalizationNe("ne", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "nl": return new A.MaterialLocalizationNl("nl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "no": return new A.MaterialLocalizationNo("no", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "or": return new A.MaterialLocalizationOr("or", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pa": return new A.MaterialLocalizationPa("pa", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pl": return new A.MaterialLocalizationPl("pl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ps": return new A.MaterialLocalizationPs("ps", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pt": switch (locale.get$countryCode()) { case "PT": return new A.MaterialLocalizationPtPt("pt_PT", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationPt$(compactDateFormat, decimalFormat, fullYearFormat, "pt", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "ro": return new A.MaterialLocalizationRo("ro", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ru": return new A.MaterialLocalizationRu("ru", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "si": return new A.MaterialLocalizationSi("si", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sk": return new A.MaterialLocalizationSk("sk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sl": return new A.MaterialLocalizationSl("sl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sq": return new A.MaterialLocalizationSq("sq", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sr": switch (null) { case "Cyrl": return new A.MaterialLocalizationSrCyrl("sr_Cyrl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "Latn": return new A.MaterialLocalizationSrLatn("sr_Latn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return A.MaterialLocalizationSr$(compactDateFormat, decimalFormat, fullYearFormat, "sr", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "sv": return new A.MaterialLocalizationSv("sv", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sw": return new A.MaterialLocalizationSw("sw", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ta": return new A.MaterialLocalizationTa("ta", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "te": return new A.MaterialLocalizationTe("te", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "th": return new A.MaterialLocalizationTh("th", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "tl": return new A.MaterialLocalizationTl("tl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "tr": return new A.MaterialLocalizationTr("tr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "uk": return new A.MaterialLocalizationUk("uk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ur": return new A.MaterialLocalizationUr("ur", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "uz": return new A.MaterialLocalizationUz("uz", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "vi": return new A.MaterialLocalizationVi("vi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "zh": switch (null) { case "Hans": return new A.MaterialLocalizationZhHans("zh_Hans", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "Hant": switch (locale.get$countryCode()) { case "HK": return A.MaterialLocalizationZhHantHk$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "TW": return A.MaterialLocalizationZhHantTw$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } return A.MaterialLocalizationZhHant$(compactDateFormat, decimalFormat, fullYearFormat, "zh_Hant", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } switch (locale.get$countryCode()) { case "HK": return A.MaterialLocalizationZhHantHk$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "TW": return A.MaterialLocalizationZhHantTw$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } return A.MaterialLocalizationZh$(compactDateFormat, decimalFormat, fullYearFormat, "zh", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "zu": return new A.MaterialLocalizationZu("zu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return null; }, MaterialLocalizationAf: function MaterialLocalizationAf(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAm: function MaterialLocalizationAm(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAr: function MaterialLocalizationAr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAs: function MaterialLocalizationAs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAz: function MaterialLocalizationAz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBe: function MaterialLocalizationBe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBg: function MaterialLocalizationBg(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBn: function MaterialLocalizationBn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBs: function MaterialLocalizationBs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationCa: function MaterialLocalizationCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationCs: function MaterialLocalizationCs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDa: function MaterialLocalizationDa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDe: function MaterialLocalizationDe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDeCh: function MaterialLocalizationDeCh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEl: function MaterialLocalizationEl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEn: function MaterialLocalizationEn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnAu: function MaterialLocalizationEnAu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnCa: function MaterialLocalizationEnCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnGb: function MaterialLocalizationEnGb(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnIe: function MaterialLocalizationEnIe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnIn: function MaterialLocalizationEnIn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnNz: function MaterialLocalizationEnNz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnSg: function MaterialLocalizationEnSg(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnZa: function MaterialLocalizationEnZa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEs: function MaterialLocalizationEs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEs419: function MaterialLocalizationEs419(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsAr: function MaterialLocalizationEsAr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsBo: function MaterialLocalizationEsBo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCl: function MaterialLocalizationEsCl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCo: function MaterialLocalizationEsCo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCr: function MaterialLocalizationEsCr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsDo: function MaterialLocalizationEsDo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsEc: function MaterialLocalizationEsEc(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsGt: function MaterialLocalizationEsGt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsHn: function MaterialLocalizationEsHn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsMx: function MaterialLocalizationEsMx(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsNi: function MaterialLocalizationEsNi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPa: function MaterialLocalizationEsPa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPe: function MaterialLocalizationEsPe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPr: function MaterialLocalizationEsPr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPy: function MaterialLocalizationEsPy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsSv: function MaterialLocalizationEsSv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsUs: function MaterialLocalizationEsUs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsUy: function MaterialLocalizationEsUy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsVe: function MaterialLocalizationEsVe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEt: function MaterialLocalizationEt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEu: function MaterialLocalizationEu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFa: function MaterialLocalizationFa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFi: function MaterialLocalizationFi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFil: function MaterialLocalizationFil(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFr: function MaterialLocalizationFr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFrCa: function MaterialLocalizationFrCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGl: function MaterialLocalizationGl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGsw: function MaterialLocalizationGsw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGu: function MaterialLocalizationGu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHe: function MaterialLocalizationHe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHi: function MaterialLocalizationHi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHr: function MaterialLocalizationHr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHu: function MaterialLocalizationHu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHy: function MaterialLocalizationHy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationId: function MaterialLocalizationId(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationIs: function MaterialLocalizationIs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationIt: function MaterialLocalizationIt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationJa: function MaterialLocalizationJa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKa: function MaterialLocalizationKa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKk: function MaterialLocalizationKk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKm: function MaterialLocalizationKm(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKn: function MaterialLocalizationKn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKo: function MaterialLocalizationKo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKy: function MaterialLocalizationKy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLo: function MaterialLocalizationLo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLt: function MaterialLocalizationLt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLv: function MaterialLocalizationLv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMk: function MaterialLocalizationMk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMl: function MaterialLocalizationMl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMn: function MaterialLocalizationMn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMr: function MaterialLocalizationMr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMs: function MaterialLocalizationMs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMy: function MaterialLocalizationMy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNb: function MaterialLocalizationNb(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNe: function MaterialLocalizationNe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNl: function MaterialLocalizationNl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNo: function MaterialLocalizationNo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationOr: function MaterialLocalizationOr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPa: function MaterialLocalizationPa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPl: function MaterialLocalizationPl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPs: function MaterialLocalizationPs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPt: function MaterialLocalizationPt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPtPt: function MaterialLocalizationPtPt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationRo: function MaterialLocalizationRo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationRu: function MaterialLocalizationRu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSi: function MaterialLocalizationSi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSk: function MaterialLocalizationSk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSl: function MaterialLocalizationSl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSq: function MaterialLocalizationSq(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSr: function MaterialLocalizationSr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSrCyrl: function MaterialLocalizationSrCyrl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSrLatn: function MaterialLocalizationSrLatn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSv: function MaterialLocalizationSv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSw: function MaterialLocalizationSw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTa: function MaterialLocalizationTa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTe: function MaterialLocalizationTe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTh: function MaterialLocalizationTh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTl: function MaterialLocalizationTl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTr: function MaterialLocalizationTr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUk: function MaterialLocalizationUk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUr: function MaterialLocalizationUr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUz: function MaterialLocalizationUz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationVi: function MaterialLocalizationVi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZh: function MaterialLocalizationZh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHans: function MaterialLocalizationZhHans(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHant: function MaterialLocalizationZhHant(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHantHk: function MaterialLocalizationZhHantHk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHantTw: function MaterialLocalizationZhHantTw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZu: function MaterialLocalizationZu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat = t1; _._compactDateFormat = t2; _._mediumDateFormat = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat = t6; _._twoDigitZeroPaddedFormat = t7; }, _get24HourVersionOf(original) { switch (original.index) { case 0: case 1: case 2: case 3: return original; case 4: case 5: return B.TimeOfDayFormat_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, GlobalMaterialLocalizations: function GlobalMaterialLocalizations() { }, _MaterialLocalizationsDelegate0: function _MaterialLocalizationsDelegate0() { }, _MaterialLocalizationsDelegate_load_closure: function _MaterialLocalizationsDelegate_load_closure(t0) { this.locale = t0; }, loadDateIntlDataIfNotLoaded() { if (!$._dateIntlDataInitialized) { B.Map_2zqtW.cast$2$0(0, type$.String, type$.Map_String_dynamic).forEach$1(0, new A.loadDateIntlDataIfNotLoaded_closure()); $._dateIntlDataInitialized = true; } }, loadDateIntlDataIfNotLoaded_closure: function loadDateIntlDataIfNotLoaded_closure() { }, GlobalWidgetsLocalizations: function GlobalWidgetsLocalizations(t0) { this.locale = t0; this.__GlobalWidgetsLocalizations__textDirection = $; }, _WidgetsLocalizationsDelegate0: function _WidgetsLocalizationsDelegate0() { }, StoreProvider_of(context, $S) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0($S._eval$1("StoreProvider<0>")); $S._eval$1("StoreProvider<0>?")._as(t1); if (t1 == null) throw A.wrapException(new A.StoreProviderError($S._eval$1("StoreProviderError>"))); return t1._store; }, StoreConnector$(builder, converter, onDidChange, onDispose, onInit, onInitialBuild, onWillChange, rebuildOnChange, $S, ViewModel) { return new A.StoreConnector(builder, converter, onInit, onDispose, true, onWillChange, onDidChange, onInitialBuild, null, $S._eval$1("@<0>")._bind$1(ViewModel)._eval$1("StoreConnector<1,2>")); }, StoreBuilder__identity(store) { return store; }, StoreBuilder$(builder, onInit, $S) { return new A.StoreBuilder(builder, onInit, null, $S._eval$1("StoreBuilder<0>")); }, StoreProvider: function StoreProvider(t0, t1, t2, t3) { var _ = this; _._store = t0; _.child = t1; _.key = t2; _.$ti = t3; }, StoreConnector: function StoreConnector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.builder = t0; _.converter = t1; _.onInit = t2; _.onDispose = t3; _.rebuildOnChange = t4; _.onWillChange = t5; _.onDidChange = t6; _.onInitialBuild = t7; _.key = t8; _.$ti = t9; }, StoreBuilder: function StoreBuilder(t0, t1, t2, t3) { var _ = this; _.builder = t0; _.onInit = t1; _.key = t2; _.$ti = t3; }, _StoreStreamListener: function _StoreStreamListener(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.builder = t0; _.converter = t1; _.store = t2; _.rebuildOnChange = t3; _.distinct = t4; _.onInit = t5; _.onDispose = t6; _.ignoreChange = t7; _.onWillChange = t8; _.onDidChange = t9; _.onInitialBuild = t10; _.key = t11; _.$ti = t12; }, _StoreStreamListenerState: function _StoreStreamListenerState(t0, t1) { var _ = this; _.___StoreStreamListenerState__stream = $; _._widget = _._latestError = _._latestValue = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _StoreStreamListenerState_build_closure: function _StoreStreamListenerState_build_closure(t0) { this.$this = t0; }, StoreProviderError: function StoreProviderError(t0) { this.$ti = t0; }, ConverterError: function ConverterError(t0, t1) { this.error = t0; this.stackTrace = t1; }, ActionPaneConfiguration: function ActionPaneConfiguration(t0, t1, t2, t3, t4) { var _ = this; _.alignment = t0; _.direction = t1; _.isStartActionPane = t2; _.child = t3; _.key = t4; }, DrawerMotion: function DrawerMotion(t0) { this.key = t0; }, SlidableAction$(backgroundColor, foregroundColor, icon, label, onPressed) { return new A.SlidableAction(backgroundColor, foregroundColor, onPressed, icon, label, null); }, CustomSlidableAction: function CustomSlidableAction(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.flex = t0; _.backgroundColor = t1; _.foregroundColor = t2; _.autoClose = t3; _.onPressed = t4; _.child = t5; _.key = t6; }, CustomSlidableAction_build_closure: function CustomSlidableAction_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, SlidableAction: function SlidableAction(t0, t1, t2, t3, t4, t5) { var _ = this; _.backgroundColor = t0; _.foregroundColor = t1; _.onPressed = t2; _.icon = t3; _.label = t4; _.key = t5; }, SlidableAction_build_closure: function SlidableAction_build_closure() { }, SlidableAutoCloseBehaviorInteractor: function SlidableAutoCloseBehaviorInteractor(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, SlidableAutoCloseNotification: function SlidableAutoCloseNotification(t0, t1, t2) { this.groupTag = t0; this.controller = t1; this.closeSelf = t2; }, SlidableAutoCloseInteractor: function SlidableAutoCloseInteractor(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, SlidableAutoCloseBehaviorListener: function SlidableAutoCloseBehaviorListener(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, SlidableAutoCloseBehaviorListener_build_closure: function SlidableAutoCloseBehaviorListener_build_closure(t0) { this.$this = t0; }, SlidableAutoCloseNotificationSender: function SlidableAutoCloseNotificationSender(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, SlidableAutoCloseNotificationSender_build_closure: function SlidableAutoCloseNotificationSender_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, SlidableAutoCloseBarrierNotification: function SlidableAutoCloseBarrierNotification(t0, t1, t2) { this.groupTag = t0; this.controller = t1; this.enabled = t2; }, SlidableAutoCloseBarrierInteractor: function SlidableAutoCloseBarrierInteractor(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, SlidableAutoCloseBarrierNotificationSender: function SlidableAutoCloseBarrierNotificationSender(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, _SlidableAutoCloseBarrierNotificationSenderState: function _SlidableAutoCloseBarrierNotificationSenderState(t0) { var _ = this; _._widget = _.dispatcher = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _SlidableAutoCloseBarrierNotificationSenderState_dispose_closure: function _SlidableAutoCloseBarrierNotificationSenderState_dispose_closure(t0) { this.$this = t0; }, SlidableAutoCloseBarrierBehaviorListener: function SlidableAutoCloseBarrierBehaviorListener(t0, t1, t2, t3) { var _ = this; _.groupTag = t0; _.controller = t1; _.child = t2; _.key = t3; }, _SlidableAutoCloseBarrierBehaviorListenerState: function _SlidableAutoCloseBarrierBehaviorListenerState(t0) { var _ = this; _.absorbing = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _SlidableAutoCloseBarrierBehaviorListenerState_build_closure: function _SlidableAutoCloseBarrierBehaviorListenerState_build_closure(t0) { this.$this = t0; }, _SlidableNotificationSender: function _SlidableNotificationSender(t0, t1, t2, t3, t4) { var _ = this; _.controller = t0; _.onStatusChanged = t1; _.child = t2; _.enabled = t3; _.key = t4; }, _SlidableNotificationSenderState0: function _SlidableNotificationSenderState0(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, ActionPaneType: function ActionPaneType(t0, t1) { this.index = t0; this._core$_name = t1; }, GestureDirection: function GestureDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, EndGesture: function EndGesture() { }, OpeningGesture: function OpeningGesture() { }, ClosingGesture: function ClosingGesture() { }, StillGesture: function StillGesture(t0) { this.direction = t0; }, SlidableController: function SlidableController(t0, t1, t2, t3, t4, t5) { var _ = this; _._animationController = t0; _._dismissGesture = t1; _.isLeftToRight = _.enableEndActionPane = _.enableStartActionPane = true; _._endActionPaneExtentRatio = _._startActionPaneExtentRatio = 0; _._actionPaneConfigurator = null; _._replayEndGesture = false; _.endGesture = t2; _.resizeRequest = t3; _.actionPaneType = t4; _.direction = t5; _._closing = false; }, _ValueNotifier: function _ValueNotifier(t0, t1, t2) { var _ = this; _._change_notifier$_value = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _.$ti = t2; }, SlidableDismissal: function SlidableDismissal(t0, t1, t2, t3) { var _ = this; _.axis = t0; _.child = t1; _.controller = t2; _.key = t3; }, _SlidableDismissalState: function _SlidableDismissalState(t0, t1, t2) { var _ = this; _.resized = false; _.___SlidableDismissalState_resizeAnimation = _.___SlidableDismissalState_animationController = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _SlidableDismissalState_handleResizeRequestChanged_closure: function _SlidableDismissalState_handleResizeRequestChanged_closure(t0) { this.resizeRequest = t0; }, _SlidableDismissalState_handleResizeRequestChanged_closure0: function _SlidableDismissalState_handleResizeRequestChanged_closure0(t0) { this.$this = t0; }, __SlidableDismissalState_State_SingleTickerProviderStateMixin: function __SlidableDismissalState_State_SingleTickerProviderStateMixin() { }, FlexEntranceTransition: function FlexEntranceTransition(t0, t1, t2, t3, t4) { var _ = this; _.direction = t0; _.startToEnd = t1; _.mainAxisPosition = t2; _.children = t3; _.key = t4; }, _FlexEntranceTransitionParentData: function _FlexEntranceTransitionParentData(t0, t1, t2) { var _ = this; _.___FlexEntranceTransitionParentData_mainAxisPosition = $; _.fit = _.flex = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, _RenderFlexEntranceTransition: function _RenderFlexEntranceTransition(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._flex_entrance_transition$_direction = t0; _._startToEnd = t1; _._mainAxisPosition = t2; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t6; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderFlexEntranceTransition_getTotalFlex_closure: function _RenderFlexEntranceTransition_getTotalFlex_closure(t0) { this._box_0 = t0; }, _RenderFlexEntranceTransition_performLayout_closure: function _RenderFlexEntranceTransition_performLayout_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.totalFlex = t2; }, _RenderFlexEntranceTransition_hitTestChildren_closure: function _RenderFlexEntranceTransition_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.childParentData = t2; }, __RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin: function __RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin() { }, __RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function __RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, SlidableGestureDetector: function SlidableGestureDetector(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.child = t1; _.direction = t2; _.enabled = t3; _.dragStartBehavior = t4; _.key = t5; }, _SlidableGestureDetectorState: function _SlidableGestureDetectorState(t0) { var _ = this; _.dragExtent = 0; _.___SlidableGestureDetectorState_lastPosition = _.___SlidableGestureDetectorState_startPosition = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, SlidableGroupNotification_createDispatcher(context, assertParentExists, $T) { var t1 = context.getElementForInheritedWidgetOfExactType$1$0($T._eval$1("_InheritedSlidableNotification<0>")); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } $T._eval$1("_InheritedSlidableNotification<0>?")._as(t1); return null; }, SlidableGroupNotification_dispatch(context, notification, assertParentExists, $T) { var dispatcher = A.SlidableGroupNotification_createDispatcher(context, false, $T); if (dispatcher != null) dispatcher.dispatch$1(notification); }, SlidableGroupBehaviorListener: function SlidableGroupBehaviorListener(t0, t1, t2, t3) { var _ = this; _.onNotification = t0; _.child = t1; _.key = t2; _.$ti = t3; }, _SlidableGroupBehaviorListenerState: function _SlidableGroupBehaviorListenerState(t0, t1) { var _ = this; _._widget = _.notifier = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, SlidableNotificationSender: function SlidableNotificationSender(t0, t1, t2, t3) { var _ = this; _.tag = t0; _.controller = t1; _.child = t2; _.key = t3; }, _SlidableNotificationSenderState: function _SlidableNotificationSenderState(t0) { var _ = this; _._widget = _.listenerState = null; _._debugLifecycleState = t0; _._framework$_element = null; }, SlidableScrollingBehavior: function SlidableScrollingBehavior(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.closeOnScroll = t1; _.child = t2; _.key = t3; }, _SlidableScrollingBehaviorState: function _SlidableScrollingBehaviorState(t0) { var _ = this; _._widget = _.scrollPosition = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ActionPane$(children, motion) { return new A.ActionPane(motion, children, null); }, Slidable_of(context) { var t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._SlidableControllerScope); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } type$.nullable__SlidableControllerScope._as(t1); return t1 == null ? null : t1.controller; }, ActionPaneData: function ActionPaneData(t0, t1, t2, t3) { var _ = this; _.extentRatio = t0; _.direction = t1; _.fromStart = t2; _.children = t3; }, ActionPane: function ActionPane(t0, t1, t2) { this.motion = t0; this.children = t1; this.key = t2; }, _ActionPaneState: function _ActionPaneState(t0) { var _ = this; _.controller = null; _.___ActionPaneState_closeThreshold = _.___ActionPaneState_openThreshold = $; _.showMotion = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ActionPaneState_handleRatioChanged_closure: function _ActionPaneState_handleRatioChanged_closure(t0, t1) { this.$this = t0; this.show = t1; }, _ActionPaneScope: function _ActionPaneScope(t0, t1, t2) { this.actionPaneData = t0; this.child = t1; this.key = t2; }, Slidable: function Slidable(t0, t1, t2, t3) { var _ = this; _.startActionPane = t0; _.endActionPane = t1; _.child = t2; _.key = t3; }, _SlidableState: function _SlidableState(t0, t1, t2, t3) { var _ = this; _.___SlidableState_moveAnimation = _.___SlidableState_controller = $; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _SlidableState_handleActionPanelTypeChanged_closure: function _SlidableState_handleActionPanelTypeChanged_closure(t0) { this.$this = t0; }, _SlidableControllerScope: function _SlidableControllerScope(t0, t1, t2) { this.controller = t0; this.child = t1; this.key = t2; }, _SlidableClipper: function _SlidableClipper(t0, t1, t2) { this.axis = t0; this.controller = t1; this._reclip = t2; }, __SlidableState_State_TickerProviderStateMixin: function __SlidableState_State_TickerProviderStateMixin() { }, __SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin: function __SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin() { }, CustomSizeTransition$(alignment, axis, axisAlignment, child, sizeFactor) { return new A.CustomSizeTransition(axis, alignment, axisAlignment, child, sizeFactor, null); }, CustomSizeTransition: function CustomSizeTransition(t0, t1, t2, t3, t4, t5) { var _ = this; _.axis = t0; _.alignment = t1; _.axisAlignment = t2; _.child = t3; _.listenable = t4; _.key = t5; }, showToast(msg) { var textPadding, backgroundColor, borderRadius, shapeBorder, textDirection, textAlign, _null = null, context = $.currentContext, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.StyledToastTheme), textStyle = t1 == null ? _null : t1.textStyle; if (textStyle == null) textStyle = A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); textPadding = t1 == null ? _null : t1.textPadding; if (textPadding == null) textPadding = new A.EdgeInsets(17, 10, 17, 10); backgroundColor = t1 == null ? _null : t1.backgroundColor; if (backgroundColor == null) backgroundColor = B.Color_2566914048; borderRadius = t1 == null ? _null : t1.borderRadius; if (borderRadius == null) borderRadius = A.BorderRadius$circular(5); shapeBorder = new A.RoundedRectangleBorder(borderRadius, B.BorderSide_0CF); textDirection = t1 == null ? _null : t1.textDirection; if (textDirection == null) textDirection = B.TextDirection_1; textAlign = t1 == null ? _null : t1.textAlign; if (textAlign == null) textAlign = B.TextAlign_2; return A.showToastWidget(A.Container$(_null, A.Text$(msg == null ? "" : msg, _null, _null, _null, _null, _null, textStyle, textAlign, _null, _null), B.Clip_0, _null, _null, new A.ShapeDecoration(backgroundColor, _null, _null, _null, shapeBorder), _null, _null, _null, new A.EdgeInsets(50, 0, 50, 0), textPadding, _null, _null, _null), _null, _null, _null, _null, _null, context, _null, _null, _null, _null, _null, _null, _null, _null, B.C_StyledToastPosition, _null, _null, _null, _null, _null, _null, textDirection); }, showToastWidget(widget, alignment, animDuration, animation, animationBuilder, axis, context, curve, dismissOtherToast, duration, endOffset, isHideKeyboard, isIgnoring, onDismiss, onInitState, position, reverseAnimBuilder, reverseAnimation, reverseCurve, reverseEndOffset, reverseStartOffset, startOffset, textDirection) { var t2, t3, key, entry, future, result, _null = null, t1 = {}; t1.duration = duration; t1.animDuration = animDuration; t1.textDirection = textDirection; t1.alignment = alignment; t1.axis = axis; t1.startOffset = startOffset; t1.endOffset = endOffset; t1.reverseStartOffset = reverseStartOffset; t1.reverseEndOffset = reverseEndOffset; t1.position = position; t1.animation = animation; t1.reverseAnimation = reverseAnimation; t1.curve = curve; t1.reverseCurve = reverseCurve; t1.animationBuilder = animationBuilder; t1.reverseAnimBuilder = reverseAnimBuilder; t1.isIgnoring = isIgnoring; t1.onInitState = onInitState; context = context != null ? context : $.currentContext; t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.StyledToastTheme); duration = t2 == null ? _null : t2.duration; t1.duration = duration == null ? B.Duration_2300000 : duration; t1.animDuration = B.Duration_400000; t3 = t2 != null || _null; dismissOtherToast = t3 !== false; t1.alignment = B.Alignment_0_0; t1.axis = B.Axis_1; t1.startOffset = t2 == null ? _null : t2.startOffset; t1.endOffset = t2 == null ? _null : t2.endOffset; t1.reverseStartOffset = t2 == null ? _null : t2.reverseStartOffset; t1.reverseEndOffset = t2 == null ? _null : t2.reverseEndOffset; t1.curve = B.C__Linear; t1.reverseCurve = B.C__Linear; t1.animation = B.StyledToastAnimation_18; t1.reverseAnimation = B.StyledToastAnimation_18; animationBuilder = t2 == null ? _null : t2.animationBuilder; t1.animationBuilder = animationBuilder; reverseAnimBuilder = t2 == null ? _null : t2.reverseAnimBuilder; t1.reverseAnimBuilder = reverseAnimBuilder; onInitState = t2 == null ? _null : t2.onInitState; t1.onInitState = onInitState; onDismiss = t2 == null ? _null : t2.onDismiss; t2 = t2 != null || _null; t1.isIgnoring = t2 !== false; key = new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_StyledToastWidgetState); entry = A.OverlayEntry$(new A.showToastWidget_closure(t1, key, widget), false); if (dismissOtherToast) { t2 = $.ToastManager__instance; (t2 == null ? $.ToastManager__instance = new A.ToastManager(A.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t2).dismissAll$1$showAnim(false); } future = A.ToastFuture$create(t1.duration, entry, onDismiss, key); result = context.findAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, entry); t1 = $.ToastManager__instance; (t1 == null ? $.ToastManager__instance = new A.ToastManager(A.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t1).toastSet.add$1(0, future); return future; }, showToastWidget_closure: function showToastWidget_closure(t0, t1, t2) { this._box_0 = t0; this.key = t1; this.widget = t2; }, StyledToast: function StyledToast(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.backgroundColor = t1; _.textStyle = t2; _.duration = t3; _.locale = t4; _.key = t5; }, _StyledToastState: function _StyledToastState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _StyledToastState_build_closure: function _StyledToastState_build_closure(t0) { this.$this = t0; }, _StyledToastWidget: function _StyledToastWidget(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.child = t0; _.duration = t1; _.animDuration = t2; _.curve = t3; _.reverseCurve = t4; _.position = t5; _.alignment = t6; _.axis = t7; _.startOffset = t8; _.endOffset = t9; _.reverseStartOffset = t10; _.reverseEndOffset = t11; _.animation = t12; _.reverseAnimation = t13; _.animationBuilder = t14; _.reverseAnimBuilder = t15; _.onInitState = t16; _.key = t17; }, StyledToastWidgetState: function StyledToastWidgetState(t0, t1, t2) { var _ = this; _.__StyledToastWidgetState_rotateAnimReverse = _.__StyledToastWidgetState_slideToRightAnimReverse = _.__StyledToastWidgetState_slideToLeftAnimReverse = _.__StyledToastWidgetState_slideToBottomAnimReverse = _.__StyledToastWidgetState_slideToTopAnimReverse = _.__StyledToastWidgetState_sizeAnimReverse = _.__StyledToastWidgetState_scaleAnimReverse = _.__StyledToastWidgetState_fadeAnimReverse = _.__StyledToastWidgetState_rotateAnim = _.__StyledToastWidgetState_slideFromRightAnim = _.__StyledToastWidgetState_slideFromLeftAnim = _.__StyledToastWidgetState_slideFromBottomAnim = _.__StyledToastWidgetState_slideFromTopAnim = _.__StyledToastWidgetState_sizeAnim = _.__StyledToastWidgetState_scaleAnim = _.__StyledToastWidgetState_fadeAnim = _.__StyledToastWidgetState__reverseAnimController = _.__StyledToastWidgetState__animationController = $; _.opacity = 1; _._toastTimer = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, StyledToastWidgetState_initState_closure: function StyledToastWidgetState_initState_closure(t0) { this.$this = t0; }, StyledToastWidgetState_dismissToast_closure: function StyledToastWidgetState_dismissToast_closure(t0) { this.$this = t0; }, StyledToastWidgetState_didChangeMetrics_closure: function StyledToastWidgetState_didChangeMetrics_closure() { }, _StyledToastWidgetState_State_TickerProviderStateMixin: function _StyledToastWidgetState_State_TickerProviderStateMixin() { }, _StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver: function _StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver() { }, StyledToastPosition: function StyledToastPosition() { }, StyledToastAnimation: function StyledToastAnimation(t0, t1) { this.index = t0; this._core$_name = t1; }, ToastFuture$create(duration, _entry, _onDismiss, _containerKey) { var t1 = new A.ToastFuture(_entry, _onDismiss, _containerKey); t1.ToastFuture$create$4(duration, _entry, _onDismiss, _containerKey); return t1; }, ToastFuture: function ToastFuture(t0, t1, t2) { var _ = this; _._styled_toast_manage$_entry = t0; _._styled_toast_manage$_onDismiss = t1; _._containerKey = t2; _._isShow = true; _._styled_toast_manage$_timer = null; }, ToastFuture$create_closure: function ToastFuture$create_closure(t0) { this.$this = t0; }, ToastManager: function ToastManager(t0) { this.toastSet = t0; }, ToastManager_dismissAll_closure: function ToastManager_dismissAll_closure(t0) { this.showAnim = t0; }, StyledToastTheme: function StyledToastTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.StyledToastTheme_child = t0; _.textAlign = t1; _.textDirection = t2; _.borderRadius = t3; _.backgroundColor = t4; _.textPadding = t5; _.textStyle = t6; _.shapeBorder = t7; _.duration = t8; _.animDuration = t9; _.toastPositions = t10; _.alignment = t11; _.axis = t12; _.startOffset = t13; _.endOffset = t14; _.reverseStartOffset = t15; _.reverseEndOffset = t16; _.toastAnimation = t17; _.reverseAnimation = t18; _.curve = t19; _.reverseCurve = t20; _.dismissOtherOnShow = t21; _.onDismiss = t22; _.fullWidth = t23; _.isHideKeyboard = t24; _.animationBuilder = t25; _.reverseAnimBuilder = t26; _.isIgnoring = t27; _.onInitState = t28; _.child = t29; _.key = t30; }, JsUrlStrategy0: function JsUrlStrategy0() { }, Registrar: function Registrar() { }, Registrar_send_closure: function Registrar_send_closure(t0) { this.completer = t0; }, PluginRegistry: function PluginRegistry(t0) { this._plugin_registry$_handlers = t0; }, GoogleSignIn__waitFor(future) { var t1 = new A._Future($.Zone__current, type$._Future_void), completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_void); future.whenComplete$1(completer.get$complete(completer)).catchError$1(new A.GoogleSignIn__waitFor_closure()); return t1; }, GoogleSignInAuthentication: function GoogleSignInAuthentication(t0) { this._google_sign_in$_data = t0; }, GoogleSignInAccount: function GoogleSignInAccount(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.displayName = t0; _.email = t1; _.id = t2; _.photoUrl = t3; _.serverAuthCode = t4; _._idToken = t5; _._googleSignIn = t6; }, GoogleSignIn: function GoogleSignIn(t0, t1) { var _ = this; _.scopes = t0; _._currentUserController = t1; _._currentUser = _._lastMethodCall = _._initialization = null; }, GoogleSignIn__ensureInitialized_closure: function GoogleSignIn__ensureInitialized_closure(t0) { this.$this = t0; }, GoogleSignIn__waitFor_closure: function GoogleSignIn__waitFor_closure() { }, GoogleSignIn__addMethodCall_closure: function GoogleSignIn__addMethodCall_closure(t0, t1, t2) { this.$this = t0; this.canSkipCall = t1; this.method = t2; }, GoogleSignIn_signIn_isCanceled: function GoogleSignIn_signIn_isCanceled() { }, GoogleSignIn_signIn_closure: function GoogleSignIn_signIn_closure() { }, GoogleSignInPlatform_instance(instance) { var exception; try { } catch (exception) { if (type$.NoSuchMethodError._is(A.unwrapException(exception))) throw A.wrapException(A.AssertionError$(string$.Platfo)); else throw exception; } $.GoogleSignInPlatform__instance = instance; }, GoogleSignInPlatform: function GoogleSignInPlatform() { }, MethodChannelGoogleSignIn: function MethodChannelGoogleSignIn() { }, MethodChannelGoogleSignIn_getTokens_closure: function MethodChannelGoogleSignIn_getTokens_closure() { }, SignInOption: function SignInOption(t0, t1) { this.index = t0; this._core$_name = t1; }, GoogleSignInUserData: function GoogleSignInUserData(t0, t1, t2, t3, t4, t5) { var _ = this; _.displayName = t0; _.email = t1; _.id = t2; _.photoUrl = t3; _.idToken = t4; _.serverAuthCode = t5; }, GoogleSignInTokenData: function GoogleSignInTokenData(t0, t1, t2) { this.idToken = t0; this.accessToken = t1; this.serverAuthCode = t2; }, GoogleSignInPlugin$() { var t1 = new A.GoogleSignInPlugin(); t1.GoogleSignInPlugin$0(); return t1; }, GoogleSignInPlugin: function GoogleSignInPlugin() { var _ = this; _.__GoogleSignInPlugin__isAuthInitialized = _.__GoogleSignInPlugin__isGapiInitialized = $; _._isInitCalled = false; _._autoDetectedClientId = null; }, GoogleSignInPlugin_closure: function GoogleSignInPlugin_closure() { }, GoogleSignInPlugin_init_closure: function GoogleSignInPlugin_init_closure(t0) { this.isAuthInitialized = t0; }, GoogleSignInPlugin_init_closure0: function GoogleSignInPlugin_init_closure0(t0) { this.isAuthInitialized = t0; }, LoadConfig: function LoadConfig() { }, GoogleAuthInitFailureError: function GoogleAuthInitFailureError() { }, GoogleAuthSignInError: function GoogleAuthSignInError() { }, OfflineAccessResponse: function OfflineAccessResponse() { }, GoogleAuth: function GoogleAuth() { }, _GoogleAuth: function _GoogleAuth() { }, IsSignedIn: function IsSignedIn() { }, CurrentUser: function CurrentUser() { }, SigninOptions: function SigninOptions() { }, OfflineAccessOptions: function OfflineAccessOptions() { }, ClientConfig: function ClientConfig() { }, SigninOptionsBuilder: function SigninOptionsBuilder() { }, BasicProfile: function BasicProfile() { }, AuthResponse: function AuthResponse() { }, AuthorizeConfig: function AuthorizeConfig() { }, AuthorizeResponse: function AuthorizeResponse() { }, GoogleUser: function GoogleUser() { }, _GoogleUser: function _GoogleUser() { }, Promise0: function Promise0() { }, inject(url) { var t2, t1 = new A._Future($.Zone__current, type$._Future_void); self.gapiOnloadCallback = A.allowInterop(new A.inject_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_void))); t2 = A._setArrayType([B.JSString_methods.startsWith$1(url, "data:") ? url : url + "?onload=gapiOnloadCallback"], type$.JSArray_String); B.JSArray_methods.addAll$1(t2, B.List_empty0); return A.Future_wait(A._setArrayType([A.injectJSLibraries(t2), t1], type$.JSArray_Future_void), type$.void); }, init() { var t1 = new A._Future($.Zone__current, type$._Future_void); self.gapi.load("auth2", A.allowInterop(new A.init_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_void)))); return t1; }, inject_closure: function inject_closure(t0) { this.gapiOnLoad = t0; }, init_closure: function init_closure(t0) { this.gapiLoadCompleter = t0; }, Document$() { return new A.Document(A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); }, DocumentType$($name, publicId, systemId) { return new A.DocumentType($name, publicId, systemId, A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); }, Text$0(data) { var t1 = data == null ? "" : data; return new A.Text0(t1, A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); }, Element$_(localName, namespaceUri) { return new A.Element(namespaceUri, localName, A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); }, Element__getSerializationPrefix(uri) { var prefix; if (uri == null || uri === "http://www.w3.org/1999/xhtml" || uri === "http://www.w3.org/1998/Math/MathML" || uri === "http://www.w3.org/2000/svg") return ""; prefix = A.Namespaces_getPrefix(uri); return prefix == null ? "" : prefix + ":"; }, AttributeName: function AttributeName(t0, t1, t2) { this.prefix = t0; this.name = t1; this.namespace = t2; }, _ParentNode: function _ParentNode() { }, _NonElementParentNode: function _NonElementParentNode() { }, _ElementAndDocument: function _ElementAndDocument() { }, Node0: function Node0() { }, Document: function Document(t0) { var _ = this; _.parentNode = null; _.attributes = t0; _.__Node_nodes = $; _.sourceSpan = _._dom$_elements = null; }, DocumentType: function DocumentType(t0, t1, t2, t3) { var _ = this; _.name = t0; _.publicId = t1; _.systemId = t2; _.parentNode = null; _.attributes = t3; _.__Node_nodes = $; _.sourceSpan = _._dom$_elements = null; }, Text0: function Text0(t0, t1) { var _ = this; _._dom$_data = t0; _.parentNode = null; _.attributes = t1; _.__Node_nodes = $; _.sourceSpan = _._dom$_elements = null; }, Element: function Element(t0, t1, t2) { var _ = this; _.namespaceUri = t0; _.localName = t1; _.parentNode = null; _.attributes = t2; _.__Node_nodes = $; _.sourceSpan = _._dom$_elements = null; }, Element__addOuterHtml_closure: function Element__addOuterHtml_closure(t0) { this.str = t0; }, Comment: function Comment(t0, t1) { var _ = this; _.data = t0; _.parentNode = null; _.attributes = t1; _.__Node_nodes = $; _.sourceSpan = _._dom$_elements = null; }, NodeList: function NodeList(t0, t1) { this._dom$_parent = t0; this._list_proxy$_list = t1; }, NodeList_retainWhere_closure: function NodeList_retainWhere_closure(t0) { this.test = t0; }, FilteredElementList: function FilteredElementList(t0) { this._childNodes = t0; }, FilteredElementList_removeRange_closure: function FilteredElementList_removeRange_closure() { }, _ConcatTextVisitor: function _ConcatTextVisitor(t0) { this._str = t0; }, _Document_Node__ParentNode: function _Document_Node__ParentNode() { }, _Document_Node__ParentNode__NonElementParentNode: function _Document_Node__ParentNode__NonElementParentNode() { }, _Document_Node__ParentNode__NonElementParentNode__ElementAndDocument: function _Document_Node__ParentNode__NonElementParentNode__ElementAndDocument() { }, _Element_Node__ParentNode: function _Element_Node__ParentNode() { }, _Element_Node__ParentNode__ElementAndDocument: function _Element_Node__ParentNode__ElementAndDocument() { }, _FilteredElementList_IterableBase_ListMixin: function _FilteredElementList_IterableBase_ListMixin() { }, htmlSerializeEscape(text, attributeMode) { var t1, t2, result, i, ch, replace, _null = null; for (t1 = text.length, t2 = !attributeMode, result = _null, i = 0; i < t1; ++i) { ch = text[i]; switch (ch) { case "&": replace = "&"; break; case "\xa0": replace = " "; break; case '"': replace = attributeMode ? """ : _null; break; case "<": replace = t2 ? "<" : _null; break; case ">": replace = t2 ? ">" : _null; break; default: replace = _null; } if (replace != null) { if (result == null) result = new A.StringBuffer(B.JSString_methods.substring$2(text, 0, i)); result._contents += replace; } else if (result != null) result._contents += ch; } if (result != null) { t1 = result._contents; t1 = t1.charCodeAt(0) == 0 ? t1 : t1; } else t1 = text; return t1; }, isVoidElement(tagName) { switch (tagName) { case "area": case "base": case "br": case "col": case "command": case "embed": case "hr": case "img": case "input": case "keygen": case "link": case "meta": case "param": case "source": case "track": case "wbr": return true; } return false; }, writeTextNodeAsHtml(str, node) { var tag, t1, $parent = node.parentNode; if ($parent instanceof A.Element) { tag = $parent.localName; if (B.JSArray_methods.contains$1(B.List_yHT, tag) || tag === "plaintext") { t1 = J.toString$0$(node._dom$_data); node._dom$_data = t1; str._contents += t1; return; } } t1 = J.toString$0$(node._dom$_data); node._dom$_data = t1; str._contents += A.S(A.htmlSerializeEscape(t1, false)); }, TreeVisitor: function TreeVisitor() { }, HtmlParser: function HtmlParser(t0, t1, t2, t3) { var _ = this; _.generateSpans = t0; _.tokenizer = t1; _.tree = t2; _.errors = t3; _.firstStartTag = false; _.compatMode = "no quirks"; _.innerHTML = null; _.__HtmlParser_phase = $; _.originalPhase = null; _.framesetOK = true; _.__HtmlParser__afterAfterFramesetPhase = _.__HtmlParser__afterAfterBodyPhase = _.__HtmlParser__afterFramesetPhase = _.__HtmlParser__inFramesetPhase = _.__HtmlParser__afterBodyPhase = _.__HtmlParser__inForeignContentPhase = _.__HtmlParser__inSelectInTablePhase = _.__HtmlParser__inSelectPhase = _.__HtmlParser__inCellPhase = _.__HtmlParser__inRowPhase = _.__HtmlParser__inTableBodyPhase = _.__HtmlParser__inColumnGroupPhase = _.__HtmlParser__inCaptionPhase = _.__HtmlParser__inTableTextPhase = _.__HtmlParser__inTablePhase = _.__HtmlParser__textPhase = _.__HtmlParser__inBodyPhase = _.__HtmlParser__afterHeadPhase = _.__HtmlParser__inHeadPhase = _.__HtmlParser__beforeHeadPhase = _.__HtmlParser__beforeHtmlPhase = _.__HtmlParser__initialPhase = $; }, Phase: function Phase() { }, Phase_startTagHtml_closure: function Phase_startTagHtml_closure(t0) { this.$this = t0; }, Phase_startTagHtml__closure: function Phase_startTagHtml__closure(t0) { this.value = t0; }, InitialPhase: function InitialPhase(t0, t1) { this.parser = t0; this.tree = t1; }, BeforeHtmlPhase: function BeforeHtmlPhase(t0, t1) { this.parser = t0; this.tree = t1; }, BeforeHeadPhase: function BeforeHeadPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InHeadPhase: function InHeadPhase(t0, t1) { this.parser = t0; this.tree = t1; }, AfterHeadPhase: function AfterHeadPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InBodyPhase: function InBodyPhase(t0, t1) { this.dropNewline = false; this.parser = t0; this.tree = t1; }, InBodyPhase_startTagBody_closure: function InBodyPhase_startTagBody_closure(t0) { this.$this = t0; }, InBodyPhase_startTagBody__closure: function InBodyPhase_startTagBody__closure(t0) { this.value = t0; }, TextPhase: function TextPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InTablePhase: function InTablePhase(t0, t1) { this.parser = t0; this.tree = t1; }, InTableTextPhase: function InTableTextPhase(t0, t1, t2) { var _ = this; _.originalPhase = null; _.characterTokens = t0; _.parser = t1; _.tree = t2; }, InTableTextPhase_flushCharacters_closure: function InTableTextPhase_flushCharacters_closure() { }, InCaptionPhase: function InCaptionPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InColumnGroupPhase: function InColumnGroupPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InTableBodyPhase: function InTableBodyPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InRowPhase: function InRowPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InCellPhase: function InCellPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InSelectPhase: function InSelectPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InSelectInTablePhase: function InSelectInTablePhase(t0, t1) { this.parser = t0; this.tree = t1; }, InForeignContentPhase: function InForeignContentPhase(t0, t1) { this.parser = t0; this.tree = t1; }, AfterBodyPhase: function AfterBodyPhase(t0, t1) { this.parser = t0; this.tree = t1; }, InFramesetPhase: function InFramesetPhase(t0, t1) { this.parser = t0; this.tree = t1; }, AfterFramesetPhase: function AfterFramesetPhase(t0, t1) { this.parser = t0; this.tree = t1; }, AfterAfterBodyPhase: function AfterAfterBodyPhase(t0, t1) { this.parser = t0; this.tree = t1; }, AfterAfterFramesetPhase: function AfterAfterFramesetPhase(t0, t1) { this.parser = t0; this.tree = t1; }, ParseError: function ParseError(t0, t1, t2) { this.errorCode = t0; this.span = t1; this.data = t2; }, Namespaces_getPrefix(url) { switch (url) { case "http://www.w3.org/1999/xhtml": return "html"; case "http://www.w3.org/1998/Math/MathML": return "math"; case "http://www.w3.org/2000/svg": return "svg"; case "http://www.w3.org/1999/xlink": return "xlink"; case "http://www.w3.org/XML/1998/namespace": return "xml"; case "http://www.w3.org/2000/xmlns/": return "xmlns"; default: return null; } }, isWhitespace(char) { if (char == null) return false; return A.isWhitespaceCC(B.JSString_methods._codeUnitAt$1(char, 0)); }, isWhitespaceCC(charCode) { switch (charCode) { case 9: case 10: case 12: case 13: case 32: return true; } return false; }, isLetter(char) { var cc, t1; if (char == null) return false; cc = B.JSString_methods._codeUnitAt$1(char, 0); if (!(cc >= 97 && cc <= 122)) t1 = cc >= 65 && cc <= 90; else t1 = true; return t1; }, isDigit(char) { var cc; if (char == null) return false; cc = B.JSString_methods._codeUnitAt$1(char, 0); return cc >= 48 && cc < 58; }, isHexDigit(char) { if (char == null) return false; switch (B.JSString_methods._codeUnitAt$1(char, 0)) { case 48: case 49: case 50: case 51: case 52: case 53: case 54: case 55: case 56: case 57: case 65: case 66: case 67: case 68: case 69: case 70: case 97: case 98: case 99: case 100: case 101: case 102: return true; } return false; }, AsciiUpperToLower__asciiToLower(c) { return c >= 65 && c <= 90 ? c + 97 - 65 : c; }, ReparseException: function ReparseException() { }, ElementCssClassSet: function ElementCssClassSet(t0) { this._css_class_set$_element = t0; }, _CssClassSetImpl: function _CssClassSetImpl() { }, _CssClassSetImpl_add_closure: function _CssClassSetImpl_add_closure(t0) { this.value = t0; }, EncodingBytes: function EncodingBytes(t0) { this._encoding_parser$_bytes = t0; this.__position = -1; }, ContentAttrParser: function ContentAttrParser(t0) { this.data = t0; }, _invalidUnicode(c) { if (1 <= c && c <= 8) return true; if (14 <= c && c <= 31) return true; if (127 <= c && c <= 159) return true; if (55296 <= c && c <= 57343) return true; if (64976 <= c && c <= 65007) return true; switch (c) { case 11: case 65534: case 65535: case 131070: case 131071: case 196606: case 196607: case 262142: case 262143: case 327678: case 327679: case 393214: case 393215: case 458750: case 458751: case 524286: case 524287: case 589822: case 589823: case 655358: case 655359: case 720894: case 720895: case 786430: case 786431: case 851966: case 851967: case 917502: case 917503: case 983038: case 983039: case 1048574: case 1048575: case 1114110: case 1114111: return true; } return false; }, codecName(encoding) { var asciiPunctuation = A.RegExp_RegExp("[\t-\r -/:-@[-`{-~]", true, false, false, false); if (encoding == null) return null; return B.Map_wEdnB.$index(0, A.stringReplaceAllUnchecked(encoding, asciiPunctuation, "").toLowerCase()); }, _decodeBytes(encoding, bytes) { switch (encoding) { case "ascii": return new A.CodeUnits(B.C_AsciiCodec.decode$1(0, bytes)); case "utf-8": return new A.CodeUnits(B.C_Utf8Codec.decode$1(0, bytes)); default: throw A.wrapException(A.ArgumentError$("Encoding " + A.S(encoding) + " not supported", null)); } }, HtmlInputStream: function HtmlInputStream(t0, t1, t2, t3) { var _ = this; _.charEncodingName = t0; _.charEncodingCertain = true; _.sourceUrl = t1; _._rawChars = _._rawBytes = null; _.errors = t2; _.fileInfo = null; _._chars = t3; _._html_input_stream$_offset = 0; }, ListProxy: function ListProxy() { }, querySelectorAll(node, selector) { var results = A._setArrayType([], type$.JSArray_Element_4); new A.SelectorEvaluator().querySelectorAll$3(0, node, A._parseSelectorList(selector), results); return results; }, _parseSelectorList(selector) { var t2, group, t1 = type$.JSArray_Message, errors = A._setArrayType([], t1), options = A.PreprocessorOptions$("memory", false); t1 = A._setArrayType([], t1); $.__messages.__late_helper$_value = new A.Messages(B.JSArray_methods.get$add(errors), options, t1); t1 = new A.Tokenizer(85, 117, 43, 63, new A.CodeUnits("CDATA"), A.SourceFile$fromString(selector, null), selector, true, 0); t2 = new A._Parser(t1); t2.___Parser__peekToken = t1.next$0(0); t1 = t1.inSelector = true; group = t2.processSelectorGroup$0(); if (group != null ? errors.length !== 0 : t1) throw A.wrapException(A.FormatException$("'" + selector + "' is not a valid selector: " + A.S(errors), null, null)); return group; }, SelectorEvaluator__isLegacyPsuedoClass($name) { switch ($name) { case "before": case "after": case "first-line": case "first-letter": return true; default: return false; } }, SelectorEvaluator__getInheritedLanguage(node) { var lang, parentNode; for (; node != null;) { lang = node.attributes.$index(0, "lang"); if (lang != null) return lang; parentNode = node.parentNode; node = parentNode instanceof A.Element ? parentNode : null; } return null; }, SelectorEvaluator: function SelectorEvaluator() { this._query_selector$_element = null; }, SelectorEvaluator_visitPseudoClassSelector_closure: function SelectorEvaluator_visitPseudoClassSelector_closure() { }, SelectorEvaluator_visitPseudoClassSelector_closure0: function SelectorEvaluator_visitPseudoClassSelector_closure0() { }, SelectorEvaluator_visitPseudoClassSelector__closure: function SelectorEvaluator_visitPseudoClassSelector__closure() { }, SelectorEvaluator_visitAttributeSelector_closure: function SelectorEvaluator_visitAttributeSelector_closure(t0) { this.select = t0; }, StartTagToken$($name, data, namespace, selfClosing) { return new A.StartTagToken(data == null ? A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String) : data, namespace, $name, selfClosing); }, Token0: function Token0() { }, TagToken: function TagToken() { }, StartTagToken: function StartTagToken(t0, t1, t2, t3) { var _ = this; _.data = t0; _.selfClosingAcknowledged = false; _.namespace = t1; _.name = t2; _.selfClosing = t3; _.span = null; }, EndTagToken: function EndTagToken(t0, t1) { this.name = t0; this.selfClosing = t1; this.span = null; }, StringToken: function StringToken() { }, ParseErrorToken: function ParseErrorToken(t0, t1, t2) { var _ = this; _.messageParams = t0; _._token$_buffer = t1; _._token$_string = t2; _.span = null; }, CharactersToken: function CharactersToken(t0, t1) { this._token$_buffer = t0; this._token$_string = t1; this.span = null; }, SpaceCharactersToken: function SpaceCharactersToken(t0, t1) { this._token$_buffer = t0; this._token$_string = t1; this.span = null; }, CommentToken: function CommentToken(t0, t1) { this._token$_buffer = t0; this._token$_string = t1; this.span = null; }, DoctypeToken: function DoctypeToken(t0) { var _ = this; _.systemId = _.publicId = null; _.name = ""; _.correct = t0; _.span = null; }, TagAttribute: function TagAttribute() { this.name = null; this.__TagAttribute_value = $; }, entitiesByFirstChar_closure: function entitiesByFirstChar_closure() { }, entitiesByFirstChar__closure: function entitiesByFirstChar__closure() { }, HtmlTokenizer: function HtmlTokenizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.stream = t0; _.lowercaseElementName = t1; _.lowercaseAttrName = t2; _.generateSpans = t3; _.parser = null; _.tokenQueue = t4; _.currentToken = null; _.__HtmlTokenizer_state = $; _._tokenizer$_buffer = t5; _.__HtmlTokenizer__lastOffset = $; _._tokenizer$_current = _._attributeNames = _._attributes = null; _._attributeName = t6; _._attributeValue = t7; }, HtmlTokenizer_consumeEntity_closure: function HtmlTokenizer_consumeEntity_closure(t0) { this.name = t0; }, HtmlTokenizer_emitCurrentToken_closure: function HtmlTokenizer_emitCurrentToken_closure(t0) { this.attr = t0; }, _mapEquals(a, b) { var keyA, valB, t1 = a._length; if (t1 !== b._length) return false; if (t1 === 0) return true; for (t1 = A.LinkedHashMapKeyIterator$(a, a._modifications, A._instanceType(a)._precomputed1); t1.moveNext$0();) { keyA = t1.__js_helper$_current; valB = b.$index(0, keyA); if (valB == null && !b.containsKey$1(0, keyA)) return false; if (!J.$eq$(a.$index(0, keyA), valB)) return false; } return true; }, TreeBuilder__insertText($parent, data, span, refNode) { var last, t1, t2, index, nodes = $parent.get$nodes($parent); if (refNode == null) if (!nodes.get$isEmpty(nodes) && nodes.get$last(nodes) instanceof A.Text0) { last = type$.Text._as(nodes.get$last(nodes)); last.appendData$1(0, data); if (span != null) { t1 = span.file; t2 = last.sourceSpan; last.sourceSpan = t1.span$2(0, A.FileLocation$_(t2.file, t2._file$_start).offset, A.FileLocation$_(t1, span._file$_end).offset); } } else { t1 = A.Text$0(data); t1.sourceSpan = span; nodes.add$1(0, t1); } else { index = nodes.indexOf$1(nodes, refNode); if (index > 0 && nodes._list_proxy$_list[index - 1] instanceof A.Text0) type$.Text._as(nodes._list_proxy$_list[index - 1]).appendData$1(0, data); else { t1 = A.Text$0(data); t1.sourceSpan = span; nodes.insert$2(0, index, t1); } } }, ActiveFormattingElements: function ActiveFormattingElements(t0) { this._list_proxy$_list = t0; }, TreeBuilder: function TreeBuilder(t0, t1, t2) { var _ = this; _.defaultNamespace = t0; _.__TreeBuilder_document = $; _.openElements = t1; _.activeFormattingElements = t2; _.formPointer = _.headPointer = null; _.insertFromTable = false; }, slice(list, start, end) { var end0; if (end == null) end = list.length; if (end < start) end = start; end0 = list.length; return B.JSArray_methods.sublist$2(list, start, end > end0 ? end0 : end); }, allWhitespace(str) { var t1, i; for (t1 = str.length, i = 0; i < t1; ++i) if (!A.isWhitespaceCC(B.JSString_methods._codeUnitAt$1(str, i))) return false; return true; }, padWithZeros(str, size) { var i, t1 = str.length; if (t1 === size) return str; size -= t1; for (i = 0, t1 = ""; i < size; ++i) t1 += "0"; t1 += str; return t1.charCodeAt(0) == 0 ? t1 : t1; }, formatStr(format, data) { var t1 = {}; t1.format = format; if (data == null) return format; data.forEach$1(0, new A.formatStr_closure(t1)); return t1.format; }, Pair: function Pair(t0, t1, t2) { this.first = t0; this.second = t1; this.$ti = t2; }, formatStr_closure: function formatStr_closure(t0) { this._box_0 = t0; }, convert(html) { var t1, t2, t3, t4, p, root, _null = null; if (html.length === 0) return ""; A.updateStyleOptions(_null); t1 = A._setArrayType([], type$.JSArray_ParseError); t2 = A._setArrayType([], type$.JSArray_Element_4); t3 = A._setArrayType([], type$.JSArray_nullable_Element); t2 = new A.TreeBuilder("http://www.w3.org/1999/xhtml", t2, new A.ActiveFormattingElements(t3)); t2.reset$0(0); t3 = A.ListQueue$(_null, type$.String); t4 = A._setArrayType([], type$.JSArray_int); t4 = new A.HtmlInputStream(A.codecName(_null), _null, t3, t4); t4._rawChars = new A.CodeUnits(html); t4.charEncodingName = "utf-8"; t4.reset$0(0); t3 = new A.HtmlTokenizer(t4, true, true, false, A.ListQueue$(_null, type$.nullable_Token), new A.StringBuffer(""), new A.StringBuffer(""), new A.StringBuffer("")); t3.reset$0(0); p = new A.HtmlParser(false, t3, t2, t1); t3.parser = p; p._parser$_parse$0(); t2 = A._lateReadCheck(t2.__TreeBuilder_document, "document"); root = B.JSArray_methods.get$first(A.querySelectorAll(t2, "html")); t1 = new A.Node(); t1.Node$1(A._collapseWhitespace(root, A._setArrayType(["noscript"], type$.JSArray_String))); return A._postProcess(A._process(t1)); }, _escape(input) { var _null = null; return A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(A.stringReplaceAllFuncUnchecked(input, A.RegExp_RegExp("\\\\(\\S)", true, false, false, false), new A._escape_closure(), _null), A.RegExp_RegExp("^(#{1,6} )", true, false, true, false), new A._escape_closure0(), _null), A.RegExp_RegExp("^([-*_] *){3,}$", true, false, true, false), new A._escape_closure1(), _null), A.RegExp_RegExp("^(\\W* {0,3})(\\d+)\\. ", true, false, true, false), new A._escape_closure2(), _null), A.RegExp_RegExp("^([^\\\\\\w]*)[*+-] ", true, false, true, false), new A._escape_closure3(), _null), A.RegExp_RegExp("^(\\W* {0,3})> ", true, false, false, false), new A._escape_closure4(), _null), A.RegExp_RegExp("\\*+(?![*\\s\\W]).+?\\*+", true, false, false, false), new A._escape_closure5(), _null), A.RegExp_RegExp("_+(?![_\\s\\W]).+?_+", true, false, false, false), new A._escape_closure6(), _null), A.RegExp_RegExp("`+(?![`\\s\\W]).+?`+", true, false, false, false), new A._escape_closure7(), _null), A.RegExp_RegExp("[\\[\\]]", true, false, false, false), new A._escape_closure8(), _null); }, _isFlankedByWhitespace(node, side) { var sibling, regExp, str, isFlanked, t1 = node._node0$_node; if (side === "left") { t1.toString; sibling = A.previousSibling(t1); regExp = A.RegExp_RegExp(" $", true, false, false, false); } else { t1.toString; sibling = A.nextSibling(t1); regExp = A.RegExp_RegExp("^ ", true, false, false, false); } if (sibling != null) { sibling.get$nodeType(sibling); if (sibling instanceof A.Element && !A.isBlock(sibling)) { str = new A.StringBuffer(""); sibling._addInnerHtml$1(str); t1 = str._contents; isFlanked = regExp._nativeRegExp.test(t1.charCodeAt(0) == 0 ? t1 : t1); } else isFlanked = false; } else isFlanked = false; return isFlanked; }, _join(string1, string2) { var separator = A._separatingNewlines(string1, string2), t1 = $.$get$_trailingNewLinesRegExp(); string1 = A.stringReplaceAllUnchecked(string1, t1, ""); t1 = $.$get$_leadingNewLinesRegExp(); string2.toString; return string1 + separator + A.stringReplaceAllUnchecked(string2, t1, ""); }, _postProcess(input) { var t2, t1 = {}; t1.input = input; $._appendRuleSet.forEach$1(0, new A._postProcess_closure(t1)); t1 = t1.input; if (t1.length !== 0) { t2 = A.RegExp_RegExp("^[\\t\\r\\n]+", true, false, false, false); t1 = A.stringReplaceAllUnchecked(t1, t2, ""); t2 = A.RegExp_RegExp("[\\t\\r\\n\\s]+$", true, false, false, false); return A.stringReplaceAllUnchecked(t1, t2, ""); } return ""; }, _process(inNode) { var t1, t2, result, t3, t4, textContent, replacement, rule, $content, result0, t5, hasLeading, hasTrailing, separator, string1, _null = null, _s7_ = "leading", _s8_ = "trailing"; for (t1 = inNode.childNodes$0(0), t1 = new A._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")), t2 = type$.String, result = ""; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = t3._el == null ? _null : 1; if (t4 == null) { t4 = t3._node0$_node; t4 = t4.get$nodeType(t4); } if (t4 === 3) { textContent = t3.get$textContent(); replacement = t3.get$isCode() ? textContent : A._escape(textContent); } else { t4 = t3._el == null ? _null : 1; if (t4 == null) { t4 = t3._node0$_node; t4 = t4.get$nodeType(t4); } if (t4 === 1) { rule = A.Rule_findRule(t3); if (rule.append != null) $._appendRuleSet.add$1(0, rule); $content = A._process(t3); result0 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t4 = A._asElement(t3._el); if (t4 == null) t4 = _null; else { t4 = t4.localName; t4 = t4 == null ? _null : t4.toLowerCase(); } if (!B.JSArray_methods.contains$1(B.List_ILN, t4)) { t4 = A.RegExp_RegExp("^[ \\r\\n\\t]", true, false, false, false); t5 = t3.get$textContent(); hasLeading = t4._nativeRegExp.test(t5); t4 = A.RegExp_RegExp("[ \\r\\n\\t]$", true, false, false, false); t5 = t3.get$textContent(); hasTrailing = t4._nativeRegExp.test(t5); if (hasLeading && !A._isFlankedByWhitespace(t3, "left")) result0.$indexSet(0, _s7_, " "); if (hasTrailing && !A._isFlankedByWhitespace(t3, "right")) result0.$indexSet(0, _s8_, " "); } if (result0.$index(0, _s7_) != null || result0.$index(0, _s8_) != null) $content = B.JSString_methods.trim$0($content); replacement = rule.replacement.call$2($content, t3); if (rule.name === "image") { t3._el.attributes.$index(0, "src"); $._customOptions.$index(0, "imageBaseUrl"); } t3 = result0.$index(0, _s7_); if (t3 == null) t3 = ""; result0 = result0.$index(0, _s8_); t4 = result0 == null ? "" : result0; replacement = t3 + A.S(replacement) + t4; } else replacement = ""; } separator = A._separatingNewlines(result, replacement); t3 = $.$get$_trailingNewLinesRegExp(); string1 = A.stringReplaceAllUnchecked(result, t3, ""); t3 = $.$get$_leadingNewLinesRegExp(); result = string1 + separator + A.stringReplaceAllUnchecked(replacement, t3, ""); } return result; }, _separatingNewlines(output, replacement) { var maxNewlines, newlines = A._setArrayType([$.$get$_trailingNewLinesRegExp().stringMatch$1(output), $.$get$_leadingNewLinesRegExp().stringMatch$1(replacement)], type$.JSArray_nullable_String); B.JSArray_methods.sort$1(newlines, new A._separatingNewlines_closure()); maxNewlines = B.JSArray_methods.get$last(newlines); return maxNewlines.length < 2 ? maxNewlines : "\n\n"; }, _escape_closure: function _escape_closure() { }, _escape_closure0: function _escape_closure0() { }, _escape_closure1: function _escape_closure1() { }, _escape_closure2: function _escape_closure2() { }, _escape_closure3: function _escape_closure3() { }, _escape__closure: function _escape__closure() { }, _escape_closure4: function _escape_closure4() { }, _escape_closure5: function _escape_closure5() { }, _escape_closure6: function _escape_closure6() { }, _escape_closure7: function _escape_closure7() { }, _escape_closure8: function _escape_closure8() { }, _postProcess_closure: function _postProcess_closure(t0) { this._box_0 = t0; }, _separatingNewlines_closure: function _separatingNewlines_closure() { }, Node: function Node() { this._node0$_text = this._el = this._node0$_node = null; }, getStyleOption($name) { var t1 = $.$get$_styleMap().$index(0, $name); t1 = t1 == null ? null : t1.options[t1.defaultIndex]; return t1 == null ? "" : t1; }, updateStyleOptions(customOptions) { }, _StyleOption$(options) { return new A._StyleOption(options); }, _StyleOption: function _StyleOption(t0) { this.defaultIndex = 0; this.options = t0; }, Rule$($name, append, filterFn, filters, replacement) { return new A.Rule($name, replacement, append, A.Rule__buildFilterFn(filters, filterFn)); }, Rule_findRule(node) { var customRule, t1, t2; if ($.Rule__customRules.length !== 0) { customRule = A.IterableExtension_firstWhereOrNull($.Rule__customRules, new A.Rule_findRule_closure(node)); if (customRule != null) return customRule; } if (B.JSArray_methods.contains$1(A._setArrayType(["a", "th", "td"], type$.JSArray_String), node.get$nodeName(node))) { t1 = A.RegExp_RegExp("^\\s*$", false, false, false, false); t2 = node.get$textContent(); if (t1._nativeRegExp.test(t2)) if (!A.isVoid(node._el)) { t1 = node._el; if (t1 instanceof A.Element) { t1 = A._asElement(t1); t1.toString; t1 = A.querySelectorAll(t1, B.JSArray_methods.join$1(B.List_Vqn, ",")).length !== 0; } else t1 = false; t1 = !t1; } else t1 = false; else t1 = false; } else t1 = false; if (t1) return $.$get$_BaseRules_blankRule(); return B.JSArray_methods.firstWhere$2$orElse($.$get$_commonMarkRules(), new A.Rule_findRule_closure0(node), new A.Rule_findRule_closure1()); }, Rule__buildFilterFn(filters, filterFn) { var result = filters != null && filters.length !== 0 ? new A.Rule__buildFilterFn_closure(filters) : null; return result == null ? filterFn : result; }, Rule: function Rule(t0, t1, t2, t3) { var _ = this; _.name = t0; _.replacement = t1; _.append = t2; _._realFilterFn = t3; }, Rule_findRule_closure: function Rule_findRule_closure(t0) { this.node = t0; }, Rule_findRule_closure0: function Rule_findRule_closure0(t0) { this.node = t0; }, Rule_findRule_closure1: function Rule_findRule_closure1() { }, Rule__buildFilterFn_closure: function Rule__buildFilterFn_closure(t0) { this.filters = t0; }, _BaseRules_blankRule_closure: function _BaseRules_blankRule_closure() { }, _BaseRules_defaultRule_closure: function _BaseRules_defaultRule_closure() { }, _CommonRules_paragraph_closure: function _CommonRules_paragraph_closure() { }, _CommonRules_lineBreak_closure: function _CommonRules_lineBreak_closure() { }, _CommonRules_heading_closure: function _CommonRules_heading_closure() { }, _CommonRules_blockquote_closure: function _CommonRules_blockquote_closure() { }, _CommonRules_list_closure: function _CommonRules_list_closure() { }, _CommonRules_listItem_closure: function _CommonRules_listItem_closure() { }, _CommonRules_indentedCodeBlock_closure: function _CommonRules_indentedCodeBlock_closure() { }, _CommonRules_indentedCodeBlock_closure0: function _CommonRules_indentedCodeBlock_closure0() { }, _CommonRules_fencedCodeBlock_closure: function _CommonRules_fencedCodeBlock_closure() { }, _CommonRules_fencedCodeBlock_closure0: function _CommonRules_fencedCodeBlock_closure0() { }, _CommonRules_horizontalRule_closure: function _CommonRules_horizontalRule_closure() { }, _CommonRules_inlineLink_closure: function _CommonRules_inlineLink_closure() { }, _CommonRules_inlineLink_closure0: function _CommonRules_inlineLink_closure0() { }, _CommonRules_referenceLink_closure0: function _CommonRules_referenceLink_closure0() { }, _CommonRules_referenceLink_closure1: function _CommonRules_referenceLink_closure1() { }, _CommonRules_referenceLink_closure: function _CommonRules_referenceLink_closure() { }, _CommonRules_emphasis_closure: function _CommonRules_emphasis_closure() { }, _CommonRules_strong_closure: function _CommonRules_strong_closure() { }, _CommonRules_strike_closure: function _CommonRules_strike_closure() { }, _CommonRules_code_closure: function _CommonRules_code_closure() { }, _CommonRules_code_closure0: function _CommonRules_code_closure0() { }, _CommonRules_code__closure: function _CommonRules_code__closure() { }, _CommonRules_image_closure: function _CommonRules_image_closure() { }, _TableRules_table_closure: function _TableRules_table_closure() { }, _TableRules_tr_closure: function _TableRules_tr_closure() { }, _TableRules_tHeadBody_closure: function _TableRules_tHeadBody_closure() { }, _TableRules_th_closure: function _TableRules_th_closure() { }, _TableRules_td_closure: function _TableRules_td_closure() { }, isBlock(node) { var t1 = A._asElement(node); if (t1 == null) t1 = null; else { t1 = t1.localName; t1 = t1 == null ? null : t1.toLowerCase(); } return B.JSArray_methods.contains$1(B.List_ILN, t1); }, isVoid(node) { var t1 = A._asElement(node); if (t1 == null) t1 = null; else { t1 = t1.localName; t1 = t1 == null ? null : t1.toLowerCase(); } return B.JSArray_methods.contains$1(B.List_Vqn, t1); }, nextSibling(node) { var siblings, i, t1 = node.parentNode; if (t1 == null) return null; siblings = t1.get$nodes(t1); i = siblings.indexOf$1(siblings, node) + 1; t1 = siblings._list_proxy$_list; if (i < t1.length) return t1[i]; return null; }, countSiblingEl(node) { var t1 = {}, t2 = node.parentNode; if (t2 == null) return 0; t1.count = 0; t2 = t2.get$nodes(t2); t2.forEach$1(t2, new A.countSiblingEl_closure(t1)); return t1.count; }, previousSibling(node) { var siblings, i, t1 = node.parentNode; if (t1 == null) return null; siblings = t1.get$nodes(t1); i = siblings.indexOf$1(siblings, node) - 1; if (i >= 0) return siblings._list_proxy$_list[i]; return null; }, _asElement(node) { if (!(node instanceof A.Element)) return null; return node; }, _collapseWhitespace(domNode, removeTags) { var current, t2, t3, prevText, prev, t4, t5, text, next, value, _null = null, _s5_ = "nodes", t1 = domNode.get$nodes(domNode); if ((!t1.get$isEmpty(t1) ? domNode.get$nodes(domNode)._list_proxy$_list[0] : _null) == null || A._isPre(domNode)) return domNode; current = A._nextNode(_null, domNode); for (t1 = type$.Element_3, t2 = type$.Text, t3 = type$.JSArray_Node_2, prevText = _null, prev = prevText; current != domNode;) { if (current.get$nodeType(current) === 3 || current.get$nodeType(current) === 4) { t2._as(current); t4 = J.toString$0$(current._dom$_data); current._dom$_data = t4; t5 = A.RegExp_RegExp("[ \\r\\n\\t]+", true, false, false, false); text = A.stringReplaceAllUnchecked(t4, t5, " "); if (prevText != null) { t4 = A.RegExp_RegExp(" $", true, false, false, false); t5 = J.toString$0$(prevText._dom$_data); prevText._dom$_data = t5; t4 = t4._nativeRegExp.test(t5); } else t4 = true; if (t4 && B.JSString_methods.substring$2(text, 0, 1) === " ") text = B.JSString_methods.substring$1(text, 1); if (text.length === 0) { next = A.nextSibling(current); if (next == null) next = current.parentNode; t4 = current.parentNode; if (t4 != null) { value = t4.__Node_nodes; if (value === $) { t5 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t4.__Node_nodes, _s5_); value = t4.__Node_nodes = new A.NodeList(t4, t5); } B.JSArray_methods.remove$1(value._list_proxy$_list, current); } current = next; continue; } current._dom$_data = text; prevText = current; } else if (current.get$nodeType(current) === 1) { t1._as(current); t4 = current.localName; if (B.JSArray_methods.contains$1(removeTags, t4.toLowerCase())) { next = A.nextSibling(current); if (next == null) next = current.parentNode; t4 = current.parentNode; if (t4 != null) { value = t4.__Node_nodes; if (value === $) { t5 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t4.__Node_nodes, _s5_); value = t4.__Node_nodes = new A.NodeList(t4, t5); } B.JSArray_methods.remove$1(value._list_proxy$_list, current); } current = next; continue; } t5 = A._asElement(current); if (t5 == null) t5 = _null; else { t5 = t5.localName; t5 = t5 == null ? _null : t5.toLowerCase(); } if (B.JSArray_methods.contains$1(B.List_ILN, t5) || t4.toLowerCase() === "br") { if (prevText != null) { t4 = J.toString$0$(prevText._dom$_data); prevText._dom$_data = t4; t5 = A.RegExp_RegExp(" $", true, false, false, false); t4 = A.stringReplaceAllUnchecked(t4, t5, ""); prevText._dom$_data = t4; } prevText = _null; } else { t4 = A._asElement(current); if (t4 == null) t4 = _null; else { t4 = t4.localName; t4 = t4 == null ? _null : t4.toLowerCase(); } if (B.JSArray_methods.contains$1(B.List_Vqn, t4)) prevText = _null; } } else { next = A.nextSibling(current); if (next == null) next = current.parentNode; t4 = current.parentNode; if (t4 != null) { value = t4.__Node_nodes; if (value === $) { t5 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t4.__Node_nodes, _s5_); value = t4.__Node_nodes = new A.NodeList(t4, t5); } B.JSArray_methods.remove$1(value._list_proxy$_list, current); } current = next; continue; } next = A._nextNode(prev, current); prev = current; current = next; } if (prevText != null) { t1 = J.toString$0$(prevText._dom$_data); prevText._dom$_data = t1; t2 = A.RegExp_RegExp(" $", true, false, false, false); t1 = A.stringReplaceAllUnchecked(t1, t2, ""); prevText._dom$_data = t1; prevText._dom$_data = t1; if (t1.length === 0) A._remove(prevText); } return domNode; }, _isPre(node) { return node instanceof A.Element && A._asElement(node).localName.toLowerCase() === "pre"; }, _nextNode(prev, current) { var t1, parentNode; if (prev != null && prev.parentNode == current || A._isPre(current)) { current.toString; t1 = A.nextSibling(current); return t1 == null ? current.parentNode : t1; } t1 = current.get$nodes(current); t1 = !t1.get$isEmpty(t1) ? current.get$nodes(current)._list_proxy$_list[0] : null; if (t1 == null) t1 = A.nextSibling(current); if (t1 == null) { parentNode = current.parentNode; t1 = parentNode instanceof A.Element ? parentNode : null; } return t1; }, _remove(node) { var next = A.nextSibling(node); if (next == null) next = node.parentNode; node.remove$0(0); return next; }, countSiblingEl_closure: function countSiblingEl_closure(t0) { this._box_0 = t0; }, get(url) { return A._withClient(new A.get_closure(url, null), type$.Response); }, readBytes(url) { return A._withClient(new A.readBytes_closure(url, null), type$.Uint8List); }, _withClient(fn, $T) { return A._withClient$body(fn, $T, $T); }, _withClient$body(fn, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], t1, client; var $async$_withClient = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$handler = 3; $async$goto = 6; return A._asyncAwait(fn.call$1(client), $async$_withClient); case 6: // returning from await. t1 = $async$result; $async$returnValue = t1; $async$next = [1]; // goto finally $async$goto = 4; break; $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // uncaught $async$next = [2]; case 4: // finally $async$handler = 2; J.close$0$x(client); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_withClient, $async$completer); }, get_closure: function get_closure(t0, t1) { this.url = t0; this.headers = t1; }, readBytes_closure: function readBytes_closure(t0, t1) { this.url = t0; this.headers = t1; }, BaseClient: function BaseClient() { }, BaseRequest: function BaseRequest() { }, BaseRequest_closure: function BaseRequest_closure() { }, BaseRequest_closure0: function BaseRequest_closure0() { }, BaseResponse: function BaseResponse() { }, BrowserClient: function BrowserClient(t0) { this._xhrs = t0; }, BrowserClient_send_closure: function BrowserClient_send_closure(t0, t1, t2) { this.xhr = t0; this.completer = t1; this.request = t2; }, BrowserClient_send_closure0: function BrowserClient_send_closure0(t0, t1) { this.completer = t0; this.request = t1; }, ByteStream: function ByteStream(t0) { this._stream = t0; }, ByteStream_toBytes_closure: function ByteStream_toBytes_closure(t0) { this.completer = t0; }, ClientException$(message, uri) { return new A.ClientException(message); }, ClientException: function ClientException(t0) { this.message = t0; }, MultipartFile_MultipartFile$fromBytes(field, value, filename) { var t3, t1 = A.Stream_Stream$value(value, type$.List_int), t2 = J.get$length$asx(value); t1 = A.toByteStream(new A.ByteStream(t1)); t3 = A.MediaType$("application", "octet-stream", null); return new A.MultipartFile(field, t2, filename, t3, t1); }, MultipartFile: function MultipartFile(t0, t1, t2, t3, t4) { var _ = this; _.field = t0; _.length = t1; _.filename = t2; _.contentType = t3; _._multipart_file$_stream = t4; _._isFinalized = false; }, MultipartRequest$(method, url) { var t1 = type$.String, t2 = A._setArrayType([], type$.JSArray_MultipartFile), t3 = $.$get$BaseRequest__tokenRE()._nativeRegExp; if (!t3.test(method)) A.throwExpression(A.ArgumentError$value(method, "method", "Not a valid method")); return new A.MultipartRequest(A.LinkedHashMap_LinkedHashMap$_empty(t1, t1), t2, method, url, A.LinkedHashMap_LinkedHashMap(new A.BaseRequest_closure(), new A.BaseRequest_closure0(), null, t1, t1)); }, MultipartRequest: function MultipartRequest(t0, t1, t2, t3, t4) { var _ = this; _.fields = t0; _.files = t1; _.method = t2; _.url = t3; _.headers = t4; _._finalized = false; }, Request$(method, url) { var t1 = new Uint8Array(0), t2 = $.$get$BaseRequest__tokenRE()._nativeRegExp; if (!t2.test(method)) A.throwExpression(A.ArgumentError$value(method, "method", "Not a valid method")); t2 = type$.String; return new A.Request(B.C_Utf8Codec, t1, method, url, A.LinkedHashMap_LinkedHashMap(new A.BaseRequest_closure(), new A.BaseRequest_closure0(), null, t2, t2)); }, Request: function Request(t0, t1, t2, t3, t4) { var _ = this; _._defaultEncoding = t0; _._bodyBytes = t1; _.method = t2; _.url = t3; _.headers = t4; _._finalized = false; }, Response$bytes(bodyBytes, statusCode, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = A.toUint8List(bodyBytes), t2 = J.get$length$asx(bodyBytes); t1 = new A.Response(t1, request, statusCode, reasonPhrase, t2, headers, false, true); t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, t2, headers, false, true, reasonPhrase, request); return t1; }, Response_fromStream(response) { return A.Response_fromStream$body(response); }, Response_fromStream$body(response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Response), $async$returnValue, body, t1, t2; var $async$Response_fromStream = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(response.stream.toBytes$0(), $async$Response_fromStream); case 3: // returning from await. body = $async$result; t1 = response.statusCode; t2 = response.request; $async$returnValue = A.Response$bytes(body, t1, response.headers, false, true, response.reasonPhrase, t2); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$Response_fromStream, $async$completer); }, _contentTypeForHeaders(headers) { var contentType = headers.$index(0, "content-type"); if (contentType != null) return A.MediaType_MediaType$parse(contentType); return A.MediaType$("application", "octet-stream", null); }, Response: function Response(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.bodyBytes = t0; _.request = t1; _.statusCode = t2; _.reasonPhrase = t3; _.contentLength = t4; _.headers = t5; _.isRedirect = t6; _.persistentConnection = t7; }, StreamedResponse$(stream, statusCode, contentLength, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = new A.StreamedResponse(A.toByteStream(stream), request, statusCode, reasonPhrase, contentLength, headers, false, true); t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, contentLength, headers, false, true, reasonPhrase, request); return t1; }, StreamedResponse: function StreamedResponse(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.stream = t0; _.request = t1; _.statusCode = t2; _.reasonPhrase = t3; _.contentLength = t4; _.headers = t5; _.isRedirect = t6; _.persistentConnection = t7; }, mapToQuery(map, encoding) { var pairs = A._setArrayType([], type$.JSArray_List_String); map.forEach$1(0, new A.mapToQuery_closure(pairs, encoding)); return new A.MappedListIterable(pairs, new A.mapToQuery_closure0(), type$.MappedListIterable_of_List_String_and_String).join$1(0, "&"); }, encodingForCharset(charset) { var t1; if (charset == null) return B.C_Latin1Codec; t1 = A.Encoding_getByName(charset); return t1 == null ? B.C_Latin1Codec : t1; }, toUint8List(input) { if (type$.Uint8List._is(input)) return input; if (type$.TypedData._is(input)) return J.asUint8List$2$x(J.get$buffer$x(input), 0, null); return new Uint8Array(A._ensureNativeList(input)); }, toByteStream(stream) { if (stream instanceof A.ByteStream) return stream; return new A.ByteStream(stream); }, onDone(stream, onDone, $T) { return A._StreamHandlerTransformer$(null, new A.onDone_closure(onDone, $T), null, $T, $T).bind$1(0, stream); }, mapToQuery_closure: function mapToQuery_closure(t0, t1) { this.pairs = t0; this.encoding = t1; }, mapToQuery_closure0: function mapToQuery_closure0() { }, onDone_closure: function onDone_closure(t0, t1) { this.onDone = t0; this.T = t1; }, CaseInsensitiveMap$from(other, $V) { var t1 = new A.CaseInsensitiveMap(new A.CaseInsensitiveMap$from_closure(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, $V._eval$1("MapEntry")), $V._eval$1("CaseInsensitiveMap<0>")); t1.addAll$1(0, other); return t1; }, CaseInsensitiveMap: function CaseInsensitiveMap(t0, t1, t2) { this._canonicalize = t0; this._base = t1; this.$ti = t2; }, CaseInsensitiveMap$from_closure: function CaseInsensitiveMap$from_closure() { }, MediaType_MediaType$parse(mediaType) { return A.wrapFormatException("media type", mediaType, new A.MediaType_MediaType$parse_closure(mediaType)); }, MediaType$(type, subtype, parameters) { var t1 = type.toLowerCase(), t2 = subtype.toLowerCase(), t3 = type$.String; t3 = parameters == null ? A.LinkedHashMap_LinkedHashMap$_empty(t3, t3) : A.CaseInsensitiveMap$from(parameters, t3); return new A.MediaType(t1, t2, new A.UnmodifiableMapView(t3, type$.UnmodifiableMapView_String_String)); }, MediaType: function MediaType(t0, t1, t2) { this.type = t0; this.subtype = t1; this.parameters = t2; }, MediaType_MediaType$parse_closure: function MediaType_MediaType$parse_closure(t0) { this.mediaType = t0; }, MediaType_toString_closure: function MediaType_toString_closure(t0) { this.buffer = t0; }, MediaType_toString__closure: function MediaType_toString__closure() { }, expectQuotedString(scanner) { var string; scanner.expect$2$name($.$get$_quotedString(), "quoted string"); string = scanner.get$lastMatch().$index(0, 0); return A.stringReplaceAllFuncUnchecked(B.JSString_methods.substring$2(string, 1, string.length - 1), $.$get$_quotedPair(), new A.expectQuotedString_closure(), null); }, expectQuotedString_closure: function expectQuotedString_closure() { }, ExifData: function ExifData(t0) { this.rawData = null; this.data = t0; }, DecodeInfo: function DecodeInfo() { }, Decoder: function Decoder() { }, PngFrame: function PngFrame() { }, InternalPngFrame: function InternalPngFrame(t0) { var _ = this; _.dispose = _.height = _.width = null; _._fdat = t0; }, PngInfo: function PngInfo() { }, InternalPngInfo: function InternalPngInfo(t0, t1) { var _ = this; _.gamma = _.colorLut = _.transparency = _.palette = _.interlaceMethod = _.filterMethod = _.colorType = _.bits = null; _.iCCPName = ""; _.iCCPData = null; _.frames = t0; _._idat = t1; _.height = _.width = 0; }, PngDecoder: function PngDecoder() { var _ = this; _._info = null; _._png_decoder$_bitBufferLen = _._png_decoder$_bitBuffer = 0; _.__PngDecoder__input = $; _._progressY = 0; }, PngDecoder_decodeFrame_closure: function PngDecoder_decodeFrame_closure() { }, Image0: function Image0(t0, t1, t2) { this.width = t0; this.height = t1; this.data = t2; }, ImageException$(message) { return new A.ImageException(message); }, ImageException: function ImageException(t0) { this.message = t0; }, InputBuffer$(buffer, bigEndian, $length, offset) { return new A.InputBuffer(buffer, offset, $length == null ? J.get$length$asx(buffer) : offset + $length, offset, true); }, InputBuffer: function InputBuffer(t0, t1, t2, t3, t4) { var _ = this; _.buffer = t0; _.start = t1; _.end = t2; _.offset = t3; _.bigEndian = t4; }, ImageCropper: function ImageCropper() { }, ImageCropperPlugin: function ImageCropperPlugin(t0) { this._instanceToken = t0; }, Promise1: function Promise1() { }, BindConfiguration: function BindConfiguration() { }, Data: function Data() { }, Boundary: function Boundary() { }, ViewPort: function ViewPort() { }, Options: function Options() { }, CroppieJS: function CroppieJS() { }, MethodChannelImageCropper: function MethodChannelImageCropper(t0) { this._instanceToken = t0; }, CroppedFileBase: function CroppedFileBase() { }, CroppedFile: function CroppedFile(t0) { this.path = t0; }, aspectRatioPresetName(preset) { var _s8_ = "original"; switch (preset) { case B.CropAspectRatioPreset_0: return _s8_; case B.CropAspectRatioPreset_1: return "square"; case B.CropAspectRatioPreset_2: return "3x2"; case B.CropAspectRatioPreset_4: return "4x3"; case B.CropAspectRatioPreset_3: return "5x3"; case B.CropAspectRatioPreset_5: return "5x4"; case B.CropAspectRatioPreset_6: return "7x5"; case B.CropAspectRatioPreset_7: return "16x9"; default: return _s8_; } }, cropStyleName(style) { var _s9_ = "rectangle"; switch (style.index) { case 0: return _s9_; case 1: return "circle"; default: return _s9_; } }, compressFormatName(format) { switch (format.index) { case 0: return "jpg"; case 1: return "png"; default: return "jpg"; } }, CropAspectRatioPreset: function CropAspectRatioPreset(t0, t1) { this.index = t0; this._core$_name = t1; }, CropStyle: function CropStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageCompressFormat: function ImageCompressFormat(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageCropperPlatform: function ImageCropperPlatform() { }, ImagePicker: function ImagePicker() { }, ImagePickerPlugin: function ImagePickerPlugin(t0) { this.__ImagePickerPlugin__imageResizer = this.__ImagePickerPlugin__target = $; this._instanceToken = t0; }, ImagePickerPlugin__getSelectedXFiles_closure: function ImagePickerPlugin__getSelectedXFiles_closure(t0, t1) { this.$this = t0; this._completer = t1; }, ImagePickerPlugin__getSelectedXFiles__closure: function ImagePickerPlugin__getSelectedXFiles__closure() { }, ImagePickerPlugin__getSelectedXFiles_closure0: function ImagePickerPlugin__getSelectedXFiles_closure0(t0) { this._completer = t0; }, ImageResizer: function ImageResizer() { }, MethodChannelImagePicker: function MethodChannelImagePicker(t0) { this._instanceToken = t0; }, ImagePickerPlatform: function ImagePickerPlatform() { }, CameraDevice: function CameraDevice(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageSource: function ImageSource(t0, t1) { this.index = t0; this._core$_name = t1; }, DateSymbols$(AMPMS, AVAILABLEFORMATS, DATEFORMATS, DATETIMEFORMATS, ERANAMES, ERAS, FIRSTDAYOFWEEK, FIRSTWEEKCUTOFFDAY, MONTHS, NAME, NARROWMONTHS, NARROWWEEKDAYS, QUARTERS, SHORTMONTHS, SHORTQUARTERS, SHORTWEEKDAYS, STANDALONEMONTHS, STANDALONENARROWMONTHS, STANDALONENARROWWEEKDAYS, STANDALONESHORTMONTHS, STANDALONESHORTWEEKDAYS, STANDALONEWEEKDAYS, TIMEFORMATS, WEEKDAYS, WEEKENDRANGE, ZERODIGIT) { return new A.DateSymbols(NAME, ERAS, ERANAMES, NARROWMONTHS, STANDALONENARROWMONTHS, MONTHS, STANDALONEMONTHS, SHORTMONTHS, STANDALONESHORTMONTHS, WEEKDAYS, STANDALONEWEEKDAYS, SHORTWEEKDAYS, STANDALONESHORTWEEKDAYS, NARROWWEEKDAYS, STANDALONENARROWWEEKDAYS, SHORTQUARTERS, QUARTERS, AMPMS, FIRSTDAYOFWEEK, ZERODIGIT); }, DateSymbols_DateSymbols$deserializeFromMap(map) { var t25, t26, t1 = new A.DateSymbols_DateSymbols$deserializeFromMap__getStringList(map), t2 = J.getInterceptor$asx(map), t3 = t2.$index(map, "NAME"), t4 = t1.call$1("ERAS"), t5 = t1.call$1("ERANAMES"), t6 = t1.call$1("NARROWMONTHS"), t7 = t1.call$1("STANDALONENARROWMONTHS"), t8 = t1.call$1("MONTHS"), t9 = t1.call$1("STANDALONEMONTHS"), t10 = t1.call$1("SHORTMONTHS"), t11 = t1.call$1("STANDALONESHORTMONTHS"), t12 = t1.call$1("WEEKDAYS"), t13 = t1.call$1("STANDALONEWEEKDAYS"), t14 = t1.call$1("SHORTWEEKDAYS"), t15 = t1.call$1("STANDALONESHORTWEEKDAYS"), t16 = t1.call$1("NARROWWEEKDAYS"), t17 = t1.call$1("STANDALONENARROWWEEKDAYS"), t18 = t1.call$1("SHORTQUARTERS"), t19 = t1.call$1("QUARTERS"), t20 = t1.call$1("AMPMS"), t21 = t2.$index(map, "ZERODIGIT"), t22 = t1.call$1("DATEFORMATS"), t23 = t1.call$1("TIMEFORMATS"), t24 = t2.$index(map, "AVAILABLEFORMATS"); if (t24 == null) { t24 = type$.dynamic; t24 = A.LinkedHashMap_LinkedHashMap$_empty(t24, t24); } t25 = type$.String; t25 = A.LinkedHashMap_LinkedHashMap$from(t24, t25, t25); t24 = t2.$index(map, "FIRSTDAYOFWEEK"); t26 = A.List_List$from(t2.$index(map, "WEEKENDRANGE"), true, type$.int); t2 = t2.$index(map, "FIRSTWEEKCUTOFFDAY"); return A.DateSymbols$(t20, t25, t22, t1.call$1("DATETIMEFORMATS"), t5, t4, t24, t2, t8, t3, t6, t16, t19, t10, t18, t14, t9, t7, t17, t11, t15, t13, t23, t12, t26, t21); }, DateSymbols: function DateSymbols(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.NAME = t0; _.ERAS = t1; _.ERANAMES = t2; _.NARROWMONTHS = t3; _.STANDALONENARROWMONTHS = t4; _.MONTHS = t5; _.STANDALONEMONTHS = t6; _.SHORTMONTHS = t7; _.STANDALONESHORTMONTHS = t8; _.WEEKDAYS = t9; _.STANDALONEWEEKDAYS = t10; _.SHORTWEEKDAYS = t11; _.STANDALONESHORTWEEKDAYS = t12; _.NARROWWEEKDAYS = t13; _.STANDALONENARROWWEEKDAYS = t14; _.SHORTQUARTERS = t15; _.QUARTERS = t16; _.AMPMS = t17; _.FIRSTDAYOFWEEK = t18; _.ZERODIGIT = t19; }, DateSymbols_DateSymbols$deserializeFromMap__getStringList: function DateSymbols_DateSymbols$deserializeFromMap__getStringList(t0) { this.map = t0; }, Intl_pluralLogic(howMany, few, locale, many, one, other, two, zero) { var truncated, t1; A.ArgumentError_checkNotNull(other, "other"); A.ArgumentError_checkNotNull(howMany, "howMany"); truncated = B.JSInt_methods.toInt$0(howMany); if (truncated === howMany) howMany = truncated; if (howMany === 0 && zero != null) return zero; if (howMany === 1 && one != null) return one; if (howMany === 2 && two != null) return two; switch (A.Intl__pluralRule(locale, howMany, null).call$0()) { case B.PluralCase_0: return zero == null ? other : zero; case B.PluralCase_1: return one == null ? other : one; case B.PluralCase_2: t1 = two == null ? few : two; return t1 == null ? other : t1; case B.PluralCase_3: return few == null ? other : few; case B.PluralCase_4: return many == null ? other : many; case B.PluralCase_5: return other; default: throw A.wrapException(A.ArgumentError$value(howMany, "howMany", "Invalid plural argument")); } }, Intl__pluralRule(locale, howMany, precision) { var str, result, t1, base, verifiedLocale; $._n = howMany; $._precision = precision; $._i = B.JSInt_methods.round$0(howMany); str = "" + howMany; result = B.JSString_methods.indexOf$1(str, "."); t1 = result === -1 ? 0 : str.length - result - 1; t1 = Math.min(t1, 3); $._v = t1; base = A._asIntS(Math.pow(10, t1)); t1 = B.JSInt_methods.$mod(B.JSInt_methods.floor$0(howMany * base), base); $._f = t1; A._updateWT(t1, $._v); verifiedLocale = A.verifiedLocale(locale, A.plural_rules__localeHasPluralRules$closure(), new A.Intl__pluralRule_closure()); if ($.Intl__cachedPluralLocale == verifiedLocale) { t1 = $.Intl__cachedPluralRule; t1.toString; return t1; } else { t1 = $.$get$pluralRules().$index(0, verifiedLocale); $.Intl__cachedPluralRule = t1; $.Intl__cachedPluralLocale = verifiedLocale; t1.toString; return t1; } }, Intl__pluralRule_closure: function Intl__pluralRule_closure() { }, NumberSymbols$(CURRENCY_PATTERN, DECIMAL_PATTERN, DECIMAL_SEP, DEF_CURRENCY_CODE, EXP_SYMBOL, GROUP_SEP, INFINITY, MINUS_SIGN, NAME, NAN, PERCENT, PERCENT_PATTERN, PERMILL, PLUS_SIGN, SCIENTIFIC_PATTERN, ZERO_DIGIT) { return new A.NumberSymbols(NAME, DECIMAL_SEP, GROUP_SEP, PERCENT, ZERO_DIGIT, PLUS_SIGN, MINUS_SIGN, EXP_SYMBOL, PERMILL, INFINITY, NAN, DECIMAL_PATTERN, DEF_CURRENCY_CODE); }, NumberSymbols: function NumberSymbols(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.NAME = t0; _.DECIMAL_SEP = t1; _.GROUP_SEP = t2; _.PERCENT = t3; _.ZERO_DIGIT = t4; _.PLUS_SIGN = t5; _.MINUS_SIGN = t6; _.EXP_SYMBOL = t7; _.PERMILL = t8; _.INFINITY = t9; _.NAN = t10; _.DECIMAL_PATTERN = t11; _.DEF_CURRENCY_CODE = t12; }, DateBuilder: function DateBuilder(t0, t1) { var _ = this; _.year = 1970; _.day = _.month = 1; _.fractionalSecond = _.second = _.minute = _.hour = _.dayOfYear = 0; _._hasAmbiguousCentury = _.utc = _.pm = false; _._date_builder$_locale = t0; _._date_builder$_date = null; _._retried = 0; _.dateOnly = false; _._dateTimeConstructor = t1; }, DateFormat$(newPattern, locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1(newPattern); return t1; }, DateFormat$d(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("d"); return t1; }, DateFormat$MMMd(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("MMMd"); return t1; }, DateFormat$MMMEd(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("MMMEd"); return t1; }, DateFormat$y(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("y"); return t1; }, DateFormat$yMd(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMd"); return t1; }, DateFormat$yMMMd(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMd"); return t1; }, DateFormat$yMMMM(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMM"); return t1; }, DateFormat$yMMMMEEEEd(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMMEEEEd"); return t1; }, DateFormat$m(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("m"); return t1; }, DateFormat$s(locale) { var t1 = A.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("s"); return t1; }, DateFormat_localeExists(localeName) { if (localeName == null) return false; return J.containsKey$1$x($.$get$_dateTimeSymbols(), localeName); }, DateFormat__fieldConstructors() { return A._setArrayType([new A.DateFormat__fieldConstructors_closure(), new A.DateFormat__fieldConstructors_closure0(), new A.DateFormat__fieldConstructors_closure1()], type$.JSArray_of__DateFormatField_Function_String_DateFormat); }, _DateFormatQuotedField__patchQuotes(pattern) { var t1, t2; if (pattern === "''") return "'"; else { t1 = B.JSString_methods.substring$2(pattern, 1, pattern.length - 1); t2 = $.$get$_DateFormatQuotedField__twoEscapedQuotes(); return A.stringReplaceAllUnchecked(t1, t2, "'"); } }, DateFormat: function DateFormat(t0, t1) { var _ = this; _.dateTimeConstructor = t0; _._dateOnly = null; _._date_format$_locale = t1; _._localeZero = _._localeZeroCodeUnit = _._digitMatcher = _._useNativeDigits = _._formatFieldsPrivate = _._date_format$_pattern = null; }, DateFormat_dateTimeConstructor_closure: function DateFormat_dateTimeConstructor_closure() { }, DateFormat__checkDateOnly_closure: function DateFormat__checkDateOnly_closure() { }, DateFormat__initDigitMatcher_closure: function DateFormat__initDigitMatcher_closure() { }, DateFormat__initDigitMatcher_closure0: function DateFormat__initDigitMatcher_closure0(t0) { this.$this = t0; }, DateFormat__fieldConstructors_closure: function DateFormat__fieldConstructors_closure() { }, DateFormat__fieldConstructors_closure0: function DateFormat__fieldConstructors_closure0() { }, DateFormat__fieldConstructors_closure1: function DateFormat__fieldConstructors_closure1() { }, _DateFormatField: function _DateFormatField() { }, _DateFormatLiteralField: function _DateFormatLiteralField(t0, t1) { this.pattern = t0; this.parent = t1; }, _DateFormatQuotedField: function _DateFormatQuotedField(t0, t1, t2) { this._fullPattern = t0; this.pattern = t1; this.parent = t2; }, _DateFormatPatternField: function _DateFormatPatternField(t0, t1) { this._forDate = null; this.pattern = t0; this.parent = t1; }, _DateFormatPatternField_parseEnumeratedString_closure: function _DateFormatPatternField_parseEnumeratedString_closure(t0) { this.input = t0; }, _DateFormatPatternField_parseEnumeratedString_closure0: function _DateFormatPatternField_parseEnumeratedString_closure0(t0) { this.possibilities = t0; }, _DateFormatPatternField_parseStandaloneDay_closure: function _DateFormatPatternField_parseStandaloneDay_closure() { }, IntlStream: function IntlStream(t0) { this.contents = t0; this.index = 0; }, NumberFormat_NumberFormat(newPattern, locale) { return A.NumberFormat_NumberFormat$_forPattern(locale, new A.NumberFormat_NumberFormat_closure(newPattern)); }, NumberFormat_NumberFormat$decimalPattern(locale) { return A.NumberFormat_NumberFormat$_forPattern(locale, new A.NumberFormat_NumberFormat$decimalPattern_closure()); }, NumberFormat_NumberFormat$_forPattern(locale, getPattern) { var symbols, localeZero, t2, $name, pattern, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t1 = A.verifiedLocale(locale, A.number_format_NumberFormat_localeExists$closure(), null); t1.toString; symbols = $.$get$numberFormatSymbols().$index(0, t1); localeZero = B.JSString_methods._codeUnitAt$1(symbols.ZERO_DIGIT, 0); t2 = $.$get$asciiZeroCodeUnit(); $name = symbols.DEF_CURRENCY_CODE; pattern = getPattern.call$1(symbols); t3 = symbols.MINUS_SIGN; if (pattern == null) t3 = new A.NumberFormatParseResult(t3, null); else { t3 = new A.NumberFormatParseResult(t3, null); t4 = new A.StringIterator(pattern); t4.moveNext$0(); new A.NumberFormatParser(symbols, t4, false, $name, $name, t3)._parse$0(); } t4 = t3.positivePrefix; t5 = t3.negativePrefix; t6 = t3.positiveSuffix; t7 = t3.negativeSuffix; t8 = t3.multiplier; t9 = B.JSNumber_methods.round$0(Math.log(t8) / $.$get$_ln10()); t10 = t3.useExponentialNotation; t11 = t3.minimumExponentDigits; t12 = t3.maximumIntegerDigits; t13 = t3.minimumIntegerDigits; t14 = t3.maximumFractionDigits; t15 = t3.minimumFractionDigits; t16 = t3.groupingSize; t17 = t3.finalGroupingSize; t18 = t3.useSignForPositiveExponent; return new A.NumberFormat(t5, t4, t7, t6, t16, t17, t3.decimalSeparatorAlwaysShown, t18, t10, t12, t13, t14, t15, t11, t8, t9, pattern, t1, symbols, new A.StringBuffer(""), localeZero - t2); }, NumberFormat_localeExists(localeName) { if (localeName == null) return false; return $.$get$numberFormatSymbols().containsKey$1(0, localeName); }, NumberFormat: function NumberFormat(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.negativePrefix = t0; _.positivePrefix = t1; _.negativeSuffix = t2; _.positiveSuffix = t3; _._groupingSize = t4; _._finalGroupingSize = t5; _._decimalSeparatorAlwaysShown = t6; _._useSignForPositiveExponent = t7; _._useExponentialNotation = t8; _.maximumIntegerDigits = t9; _.minimumIntegerDigits = t10; _.maximumFractionDigits = t11; _.minimumFractionDigits = t12; _.minimumExponentDigits = t13; _.multiplier = t14; _._multiplierDigits = t15; _._number_format$_pattern = t16; _._number_format$_locale = t17; _._symbols = t18; _._number_format$_buffer = t19; _._zeroOffset = t20; }, NumberFormat_NumberFormat_closure: function NumberFormat_NumberFormat_closure(t0) { this.newPattern = t0; }, NumberFormat_NumberFormat$decimalPattern_closure: function NumberFormat_NumberFormat$decimalPattern_closure() { }, NumberFormatParseResult: function NumberFormatParseResult(t0, t1) { var _ = this; _.negativePrefix = t0; _.positiveSuffix = _.negativeSuffix = _.positivePrefix = ""; _.multiplier = 1; _.minimumExponentDigits = 0; _.maximumIntegerDigits = 40; _.minimumIntegerDigits = 1; _.maximumFractionDigits = 3; _.minimumFractionDigits = 0; _.finalGroupingSize = _.groupingSize = 3; _.useExponentialNotation = _.useSignForPositiveExponent = _.decimalSeparatorAlwaysShown = false; _.decimalDigits = t1; }, NumberFormatParser: function NumberFormatParser(t0, t1, t2, t3, t4, t5) { var _ = this; _.symbols = t0; _.pattern = t1; _.isForCurrency = t2; _.currencySymbol = t3; _.currencyName = t4; _.result = t5; _.inQuote = _.groupingSizeSetExplicitly = false; _.decimalPos = -1; _.digitRightCount = _.zeroDigitCount = _.digitLeftCount = 0; _.groupingCount = -1; }, StringIterator: function StringIterator(t0) { this.input = t0; this.nextIndex = 0; this._string_iterator$_current = null; }, UninitializedLocaleData$(message, fallbackData, $F) { return new A.UninitializedLocaleData(message, fallbackData, A._setArrayType([], type$.JSArray_String), $F._eval$1("UninitializedLocaleData<0>")); }, canonicalizedLocale(aLocale) { var t1, region; if (aLocale == null) { if (A.defaultLocale() == null) $._defaultLocale = "en_US"; t1 = A.defaultLocale(); t1.toString; return t1; } if (aLocale === "C") return "en_ISO"; if (aLocale.length < 5) return aLocale; t1 = aLocale[2]; if (t1 !== "-" && t1 !== "_") return aLocale; region = B.JSString_methods.substring$1(aLocale, 3); if (region.length <= 3) region = region.toUpperCase(); return aLocale[0] + aLocale[1] + "_" + region; }, verifiedLocale(newLocale, localeExists, onFailure) { var t1, _i, each; if (newLocale == null) { if (A.defaultLocale() == null) $._defaultLocale = "en_US"; t1 = A.defaultLocale(); t1.toString; return A.verifiedLocale(t1, localeExists, onFailure); } if (localeExists.call$1(newLocale)) return newLocale; for (t1 = [A.canonicalizedLocale(newLocale), A.shortLocale(newLocale), "fallback"], _i = 0; _i < 3; ++_i) { each = t1[_i]; if (localeExists.call$1(each)) return each; } return (onFailure == null ? A.intl_helpers___throwLocaleError$closure() : onFailure).call$1(newLocale); }, _throwLocaleError(localeName) { throw A.wrapException(A.ArgumentError$('Invalid locale "' + localeName + '"', null)); }, shortLocale(aLocale) { if (aLocale.length < 2) return aLocale; return B.JSString_methods.substring$2(aLocale, 0, 2).toLowerCase(); }, UninitializedLocaleData: function UninitializedLocaleData(t0, t1, t2, t3) { var _ = this; _.message = t0; _.fallbackData = t1; _._badMessages = t2; _.$ti = t3; }, LocaleDataException: function LocaleDataException(t0) { this.message = t0; }, _default_rule() { return B.PluralCase_5; }, _updateWT(v, f) { if (f === 0) { $._t = 0; return; } for (; B.JSInt_methods.$mod(f, 10) === 0;) { f = B.JSNumber_methods.floor$0(f / 10); --v; } $._t = f; }, _fil_rule() { var t2, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = t2 === 1 || t2 === 2 || t2 === 3; } else t2 = false; if (!t2) { if (t1) { t2 = B.JSInt_methods.$mod($._i, 10); t2 = t2 !== 4 && t2 !== 6 && t2 !== 9; } else t2 = false; if (!t2) if (!t1) { t1 = B.JSInt_methods.$mod($._f, 10); t1 = t1 !== 4 && t1 !== 6 && t1 !== 9; } else t1 = false; else t1 = true; } else t1 = true; if (t1) return B.PluralCase_1; return B.PluralCase_5; }, _pt_PT_rule() { if ($._n === 1 && $._v === 0) return B.PluralCase_1; return B.PluralCase_5; }, _br_rule() { var t3, t1 = $._n, t2 = B.JSInt_methods.$mod(t1, 10); if (t2 === 1) { t3 = B.JSInt_methods.$mod(t1, 100); t3 = t3 !== 11 && t3 !== 71 && t3 !== 91; } else t3 = false; if (t3) return B.PluralCase_1; if (t2 === 2) { t3 = B.JSInt_methods.$mod(t1, 100); t3 = t3 !== 12 && t3 !== 72 && t3 !== 92; } else t3 = false; if (t3) return B.PluralCase_2; if (t2 >= 3 && t2 <= 4 || t2 === 9) { t2 = B.JSInt_methods.$mod(t1, 100); if (t2 < 10 || t2 > 19) if (t2 < 70 || t2 > 79) t2 = t2 < 90 || false; else t2 = false; else t2 = false; } else t2 = false; if (t2) return B.PluralCase_3; if (t1 !== 0 && B.JSInt_methods.$mod(t1, 1000000) === 0) return B.PluralCase_4; return B.PluralCase_5; }, _sr_rule() { var t2, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = B.JSInt_methods.$mod(t2, 10) === 1 && B.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (!t2) { t2 = $._f; t2 = B.JSInt_methods.$mod(t2, 10) === 1 && B.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = true; if (t2) return B.PluralCase_1; if (t1) { t1 = $._i; t2 = B.JSInt_methods.$mod(t1, 10); if (t2 >= 2) if (t2 <= 4) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 < 12 || t1 > 14; } else t1 = false; else t1 = false; } else t1 = false; if (!t1) { t1 = $._f; t2 = B.JSInt_methods.$mod(t1, 10); if (t2 >= 2) if (t2 <= 4) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 < 12 || t1 > 14; } else t1 = false; else t1 = false; } else t1 = true; if (t1) return B.PluralCase_3; return B.PluralCase_5; }, _ro_rule() { if ($._i === 1 && $._v === 0) return B.PluralCase_1; if ($._v === 0) { var t1 = $._n; if (t1 !== 0) if (t1 !== 1) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 >= 1 && t1 <= 19; } else t1 = false; else t1 = true; } else t1 = true; if (t1) return B.PluralCase_3; return B.PluralCase_5; }, _hi_rule() { if ($._i === 0 || $._n === 1) return B.PluralCase_1; return B.PluralCase_5; }, _fr_rule() { var t1 = $._i; if (t1 === 0 || t1 === 1) return B.PluralCase_1; return B.PluralCase_5; }, _cs_rule() { var t1 = $._i; if (t1 === 1 && $._v === 0) return B.PluralCase_1; if (t1 >= 2 && t1 <= 4 && $._v === 0) return B.PluralCase_3; if ($._v !== 0) return B.PluralCase_4; return B.PluralCase_5; }, _pl_rule() { var t3, t4, t1 = $._i, t2 = t1 === 1; if (t2 && $._v === 0) return B.PluralCase_1; t3 = $._v === 0; if (t3) { t4 = B.JSInt_methods.$mod(t1, 10); if (t4 >= 2) if (t4 <= 4) { t4 = B.JSInt_methods.$mod(t1, 100); t4 = t4 < 12 || t4 > 14; } else t4 = false; else t4 = false; } else t4 = false; if (t4) return B.PluralCase_3; if (t3) if (!t2) t2 = B.JSInt_methods.$mod(t1, 10) <= 1; else t2 = false; else t2 = false; if (!t2) if (!(t3 && B.JSInt_methods.$mod(t1, 10) >= 5 && true)) if (t3) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 >= 12 && t1 <= 14; } else t1 = false; else t1 = true; else t1 = true; if (t1) return B.PluralCase_4; return B.PluralCase_5; }, _lv_rule() { var t3, t1 = $._n, t2 = B.JSInt_methods.$mod(t1, 10); if (t2 !== 0) { t3 = B.JSInt_methods.$mod(t1, 100); if (!(t3 >= 11 && t3 <= 19)) if ($._v === 2) { t3 = B.JSInt_methods.$mod($._f, 100); t3 = t3 >= 11 && t3 <= 19; } else t3 = false; else t3 = true; } else t3 = true; if (t3) return B.PluralCase_0; if (!(t2 === 1 && B.JSInt_methods.$mod(t1, 100) !== 11)) { t1 = $._v === 2; if (t1) { t2 = $._f; t2 = B.JSInt_methods.$mod(t2, 10) === 1 && B.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (!t2) t1 = !t1 && B.JSInt_methods.$mod($._f, 10) === 1; else t1 = true; } else t1 = true; if (t1) return B.PluralCase_1; return B.PluralCase_5; }, _he_rule() { var t1 = $._i; if (t1 === 1 && $._v === 0) return B.PluralCase_1; if (t1 === 2 && $._v === 0) return B.PluralCase_2; if ($._v === 0) { t1 = $._n; t1 = (t1 < 0 || t1 > 10) && B.JSInt_methods.$mod(t1, 10) === 0; } else t1 = false; if (t1) return B.PluralCase_4; return B.PluralCase_5; }, _mt_rule() { var t2, t1 = $._n; if (t1 === 1) return B.PluralCase_1; if (t1 !== 0) { t2 = B.JSInt_methods.$mod(t1, 100); t2 = t2 >= 2 && t2 <= 10; } else t2 = true; if (t2) return B.PluralCase_3; t1 = B.JSInt_methods.$mod(t1, 100); if (t1 >= 11 && t1 <= 19) return B.PluralCase_4; return B.PluralCase_5; }, _si_rule() { var t1 = $._n; if (t1 !== 0) if (t1 !== 1) t1 = $._i === 0 && $._f === 1; else t1 = true; else t1 = true; if (t1) return B.PluralCase_1; return B.PluralCase_5; }, _cy_rule() { var t1 = $._n; if (t1 === 0) return B.PluralCase_0; if (t1 === 1) return B.PluralCase_1; if (t1 === 2) return B.PluralCase_2; if (t1 === 3) return B.PluralCase_3; if (t1 === 6) return B.PluralCase_4; return B.PluralCase_5; }, _da_rule() { if ($._n !== 1) if ($._t !== 0) { var t1 = $._i; t1 = t1 === 0 || t1 === 1; } else t1 = false; else t1 = true; if (t1) return B.PluralCase_1; return B.PluralCase_5; }, _ru_rule() { var t2, t3, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = B.JSInt_methods.$mod(t2, 10) === 1 && B.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (t2) return B.PluralCase_1; if (t1) { t2 = $._i; t3 = B.JSInt_methods.$mod(t2, 10); if (t3 >= 2) if (t3 <= 4) { t2 = B.JSInt_methods.$mod(t2, 100); t2 = t2 < 12 || t2 > 14; } else t2 = false; else t2 = false; } else t2 = false; if (t2) return B.PluralCase_3; if (!(t1 && B.JSInt_methods.$mod($._i, 10) === 0)) if (!(t1 && B.JSInt_methods.$mod($._i, 10) >= 5 && true)) if (t1) { t1 = B.JSInt_methods.$mod($._i, 100); t1 = t1 >= 11 && t1 <= 14; } else t1 = false; else t1 = true; else t1 = true; if (t1) return B.PluralCase_4; return B.PluralCase_5; }, _be_rule() { var t3, t1 = $._n, t2 = B.JSInt_methods.$mod(t1, 10); if (t2 === 1 && B.JSInt_methods.$mod(t1, 100) !== 11) return B.PluralCase_1; if (t2 >= 2) if (t2 <= 4) { t3 = B.JSInt_methods.$mod(t1, 100); t3 = t3 < 12 || t3 > 14; } else t3 = false; else t3 = false; if (t3) return B.PluralCase_3; if (t2 !== 0) if (!(t2 >= 5 && true)) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 >= 11 && t1 <= 14; } else t1 = true; else t1 = true; if (t1) return B.PluralCase_4; return B.PluralCase_5; }, _mk_rule() { if ($._v === 0 && B.JSInt_methods.$mod($._i, 10) === 1 || B.JSInt_methods.$mod($._f, 10) === 1) return B.PluralCase_1; return B.PluralCase_5; }, _ga_rule() { var t1 = $._n; if (t1 === 1) return B.PluralCase_1; if (t1 === 2) return B.PluralCase_2; if (t1 >= 3 && t1 <= 6) return B.PluralCase_3; if (t1 >= 7 && t1 <= 10) return B.PluralCase_4; return B.PluralCase_5; }, _pt_rule() { var t1 = $._n; if (t1 >= 0 && t1 <= 2 && t1 !== 2) return B.PluralCase_1; return B.PluralCase_5; }, _es_rule() { if ($._n === 1) return B.PluralCase_1; return B.PluralCase_5; }, _is_rule() { var t2, t1 = $._t === 0; if (t1) { t2 = $._i; t2 = B.JSInt_methods.$mod(t2, 10) === 1 && B.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (t2 || !t1) return B.PluralCase_1; return B.PluralCase_5; }, _ar_rule() { var t1 = $._n; if (t1 === 0) return B.PluralCase_0; if (t1 === 1) return B.PluralCase_1; if (t1 === 2) return B.PluralCase_2; t1 = B.JSInt_methods.$mod(t1, 100); if (t1 >= 3 && t1 <= 10) return B.PluralCase_3; if (t1 >= 11 && true) return B.PluralCase_4; return B.PluralCase_5; }, _sl_rule() { var t2, t1 = $._v === 0; if (t1 && B.JSInt_methods.$mod($._i, 100) === 1) return B.PluralCase_1; if (t1 && B.JSInt_methods.$mod($._i, 100) === 2) return B.PluralCase_2; if (t1) { t2 = B.JSInt_methods.$mod($._i, 100); t2 = t2 >= 3 && t2 <= 4; } else t2 = false; if (t2 || !t1) return B.PluralCase_3; return B.PluralCase_5; }, _lt_rule() { var t3, t1 = $._n, t2 = B.JSInt_methods.$mod(t1, 10); if (t2 === 1) { t3 = B.JSInt_methods.$mod(t1, 100); t3 = t3 < 11 || t3 > 19; } else t3 = false; if (t3) return B.PluralCase_1; if (t2 >= 2) { t1 = B.JSInt_methods.$mod(t1, 100); t1 = t1 < 11 || t1 > 19; } else t1 = false; if (t1) return B.PluralCase_3; if ($._f !== 0) return B.PluralCase_4; return B.PluralCase_5; }, _en_rule() { if ($._i === 1 && $._v === 0) return B.PluralCase_1; return B.PluralCase_5; }, _ak_rule() { var t1 = $._n; if (t1 >= 0 && t1 <= 1) return B.PluralCase_1; return B.PluralCase_5; }, localeHasPluralRules(locale) { return $.$get$pluralRules().containsKey$1(0, locale); }, PluralCase: function PluralCase(t0, t1) { this.index = t0; this._core$_name = t1; }, InvoiceStatusColors: function InvoiceStatusColors(t0) { this._colors0$_colorTheme = t0; }, RecurringInvoiceStatusColors: function RecurringInvoiceStatusColors(t0) { this._colors0$_colorTheme = t0; }, CreditStatusColors: function CreditStatusColors(t0) { this._colors0$_colorTheme = t0; }, PurchaseOrderStatusColors: function PurchaseOrderStatusColors(t0) { this._colors0$_colorTheme = t0; }, QuoteStatusColors: function QuoteStatusColors(t0) { this._colors0$_colorTheme = t0; }, PaymentStatusColors: function PaymentStatusColors(t0) { this._colors0$_colorTheme = t0; }, ExpenseStatusColors: function ExpenseStatusColors(t0) { this._colors0$_colorTheme = t0; }, FileStorage: function FileStorage(t0) { this.tag = t0; }, AccountEntity__initializeBuilder(builder) { builder.get$_account_model$_$this()._debugEnabled = false; builder.get$_account_model$_$this()._isDocker = false; builder.get$_account_model$_$this()._isSchedulerRunning = false; builder.get$_account_model$_$this()._disableAutoUpdate = false; builder.get$_account_model$_$this()._isMigrated = false; builder.get$_account_model$_$this()._isHosted = false; builder.get$_account_model$_$this()._trialStarted = ""; builder.get$_account_model$_$this()._defaultCompanyId = ""; builder.get$_account_model$_$this()._trialDaysLeft = 0; builder.get$_account_model$_$this()._hostedClientCount = 0; builder.get$_account_model$_$this()._hostedCompanyCount = 1; builder.get$_account_model$_$this()._accountSmsVerified = false; builder.get$_account_model$_$this()._setReactAsDefaultAP = false; return builder; }, _$AccountEntity$_(accountSmsVerified, currentVersion, debugEnabled, defaultCompanyId, defaultUrl, disableAutoUpdate, hostedClientCount, hostedCompanyCount, id, isDocker, isHosted, isMigrated, isSchedulerRunning, latestVersion, plan, planExpires, reportErrors, setReactAsDefaultAP, trialDaysLeft, trialStarted) { return new A._$AccountEntity(id, trialStarted, defaultUrl, reportErrors, plan, planExpires, latestVersion, currentVersion, debugEnabled, isDocker, isMigrated, isHosted, isSchedulerRunning, disableAutoUpdate, defaultCompanyId, hostedClientCount, hostedCompanyCount, setReactAsDefaultAP, accountSmsVerified, trialDaysLeft); }, AccountEntity: function AccountEntity() { }, _$AccountEntitySerializer: function _$AccountEntitySerializer() { }, _$AccountEntity: function _$AccountEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.id = t0; _.trialStarted = t1; _.defaultUrl = t2; _.reportErrors = t3; _.plan = t4; _.planExpires = t5; _.latestVersion = t6; _.currentVersion = t7; _.debugEnabled = t8; _.isDocker = t9; _.isMigrated = t10; _.isHosted = t11; _.isSchedulerRunning = t12; _.disableAutoUpdate = t13; _.defaultCompanyId = t14; _.hostedClientCount = t15; _.hostedCompanyCount = t16; _.setReactAsDefaultAP = t17; _.accountSmsVerified = t18; _.trialDaysLeft = t19; _._account_model$__hashCode = null; }, AccountEntityBuilder: function AccountEntityBuilder() { var _ = this; _._trialDaysLeft = _._accountSmsVerified = _._setReactAsDefaultAP = _._hostedCompanyCount = _._hostedClientCount = _._defaultCompanyId = _._disableAutoUpdate = _._isSchedulerRunning = _._isHosted = _._isMigrated = _._isDocker = _._debugEnabled = _._currentVersion = _._latestVersion = _._planExpires = _._plan = _._reportErrors = _._defaultUrl = _._trialStarted = _._account_model$_id = _._account_model$_$v = null; }, ClientEntity_ClientEntity(group, id, state, user) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, _null = null; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = A.SettingsEntity_SettingsEntity(_null, _null, _null); t3 = group == null ? _null : group.id; if (t3 == null) t3 = ""; t4 = A.BuiltList_BuiltList$from(A._setArrayType([A.ClientContactEntity_ClientContactEntity().rebuild$1(new A.ClientEntity_ClientEntity_closure())], type$.JSArray_legacy_ClientContactEntity), type$.legacy_ClientContactEntity); t5 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity); t6 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_LedgerEntity); t7 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_GatewayTokenEntity); t8 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SystemLogEntity); t9 = user == null ? _null : user.id; if (t9 == null) t9 = ""; return A._$ClientEntity$_(t5, "", "", 0, t9, 0, "", "", t4, "", 0, "", 0, "", "", "", "", "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), t7, t3, t1, "", "", false, false, 0, t6, 0, "", "", 0, "", "", "", "", t2, "", "", "", "", "", "", "", "", t8, 0, "", ""); }, ClientContactEntity_ClientContactEntity() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return A._$ClientContactEntity$_(0, "", "", 0, "", "", "", "", "", "", "", "" + t1, false, false, false, 0, "", "", "", "", true, 0); }, _$ClientEntity$_(activities, address1, address2, archivedAt, assignedUserId, balance, city, clientHash, contacts, countryId, createdAt, createdUserId, creditBalance, customValue1, customValue2, customValue3, customValue4, displayName, documents, gatewayTokens, groupId, id, idNumber, industryId, isChanged, isDeleted, lastLogin, ledger, loadedAt, $name, number, paidToDate, phone, postalCode, privateNotes, publicNotes, settings, shippingAddress1, shippingAddress2, shippingCity, shippingCountryId, shippingPostalCode, shippingState, sizeId, state, systemLogs, updatedAt, vatNumber, website) { var _s12_ = "ClientEntity"; if (settings == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "settings")); if (contacts == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "contacts")); if (activities == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "activities")); if (ledger == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "ledger")); if (gatewayTokens == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "gatewayTokens")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "documents")); if (systemLogs == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "systemLogs")); return new A._$ClientEntity(groupId, loadedAt, $name, displayName, balance, creditBalance, paidToDate, clientHash, address1, address2, city, state, postalCode, countryId, phone, privateNotes, publicNotes, website, industryId, sizeId, vatNumber, idNumber, number, shippingAddress1, shippingAddress2, shippingCity, shippingState, shippingPostalCode, shippingCountryId, settings, lastLogin, customValue1, customValue2, customValue3, customValue4, contacts, activities, ledger, gatewayTokens, documents, systemLogs, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$ClientContactEntity$_(archivedAt, assignedUserId, contactKey, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, email, firstName, id, isChanged, isDeleted, isPrimary, lastLogin, lastName, link, password, phone, sendEmail, updatedAt) { return new A._$ClientContactEntity(firstName, lastName, email, password, phone, contactKey, isPrimary, sendEmail, customValue1, customValue2, customValue3, customValue4, lastLogin, link, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ClientListResponse: function ClientListResponse() { }, ClientItemResponse: function ClientItemResponse() { }, ClientEntity: function ClientEntity() { }, ClientEntity_ClientEntity_closure: function ClientEntity_ClientEntity_closure() { }, ClientEntity_primaryContact_closure: function ClientEntity_primaryContact_closure() { }, ClientEntity_primaryContact_closure0: function ClientEntity_primaryContact_closure0() { }, ClientEntity_emailContacts_closure: function ClientEntity_emailContacts_closure() { }, ClientEntity_hasEmailAddress_closure: function ClientEntity_hasEmailAddress_closure() { }, ClientEntity_getContact_closure: function ClientEntity_getContact_closure(t0) { this.contactId = t0; }, ClientEntity_getContact_closure0: function ClientEntity_getContact_closure0() { }, ClientContactEntity: function ClientContactEntity() { }, _$ClientListResponseSerializer: function _$ClientListResponseSerializer() { }, _$ClientItemResponseSerializer: function _$ClientItemResponseSerializer() { }, _$ClientEntitySerializer: function _$ClientEntitySerializer() { }, _$ClientContactEntitySerializer: function _$ClientContactEntitySerializer() { }, _$ClientListResponse: function _$ClientListResponse(t0) { this.data = t0; this._client_model$__hashCode = null; }, ClientListResponseBuilder: function ClientListResponseBuilder() { this._client_model$_data = this._client_model$_$v = null; }, _$ClientItemResponse: function _$ClientItemResponse(t0) { this.data = t0; this._client_model$__hashCode = null; }, ClientItemResponseBuilder: function ClientItemResponseBuilder() { this._client_model$_data = this._client_model$_$v = null; }, _$ClientEntity: function _$ClientEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48) { var _ = this; _.groupId = t0; _.loadedAt = t1; _.name = t2; _.displayName = t3; _.balance = t4; _.creditBalance = t5; _.paidToDate = t6; _.clientHash = t7; _.address1 = t8; _.address2 = t9; _.city = t10; _.state = t11; _.postalCode = t12; _.countryId = t13; _.phone = t14; _.privateNotes = t15; _.publicNotes = t16; _.website = t17; _.industryId = t18; _.sizeId = t19; _.vatNumber = t20; _.idNumber = t21; _.number = t22; _.shippingAddress1 = t23; _.shippingAddress2 = t24; _.shippingCity = t25; _.shippingState = t26; _.shippingPostalCode = t27; _.shippingCountryId = t28; _.settings = t29; _.lastLogin = t30; _.customValue1 = t31; _.customValue2 = t32; _.customValue3 = t33; _.customValue4 = t34; _.contacts = t35; _.activities = t36; _.ledger = t37; _.gatewayTokens = t38; _.documents = t39; _.systemLogs = t40; _.isChanged = t41; _.createdAt = t42; _.updatedAt = t43; _.archivedAt = t44; _.isDeleted = t45; _.createdUserId = t46; _.assignedUserId = t47; _.id = t48; _._client_model$__hashCode = null; }, ClientEntityBuilder: function ClientEntityBuilder() { var _ = this; _._shippingCountryId = _._shippingPostalCode = _._shippingState = _._shippingCity = _._shippingAddress2 = _._shippingAddress1 = _._number = _._client_model$_idNumber = _._client_model$_vatNumber = _._sizeId = _._industryId = _._client_model$_website = _._publicNotes = _._privateNotes = _._client_model$_phone = _._client_model$_countryId = _._client_model$_postalCode = _._client_model$_state = _._client_model$_city = _._client_model$_address2 = _._client_model$_address1 = _._clientHash = _._paidToDate = _._creditBalance = _._balance = _._displayName = _._client_model$_name = _._loadedAt = _._groupId = _._client_model$_$v = null; _._client_model$_id = _._client_model$_assignedUserId = _._client_model$_createdUserId = _._client_model$_isDeleted = _._client_model$_archivedAt = _._client_model$_updatedAt = _._client_model$_createdAt = _._client_model$_isChanged = _._systemLogs = _._client_model$_documents = _._gatewayTokens = _._ledger = _._activities = _._contacts = _._client_model$_customValue4 = _._client_model$_customValue3 = _._client_model$_customValue2 = _._client_model$_customValue1 = _._lastLogin = _._client_model$_settings = null; }, _$ClientContactEntity: function _$ClientContactEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.password = t3; _.phone = t4; _.contactKey = t5; _.isPrimary = t6; _.sendEmail = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.lastLogin = t12; _.link = t13; _.isChanged = t14; _.createdAt = t15; _.updatedAt = t16; _.archivedAt = t17; _.isDeleted = t18; _.createdUserId = t19; _.assignedUserId = t20; _.id = t21; _._client_model$__hashCode = null; }, ClientContactEntityBuilder: function ClientContactEntityBuilder() { var _ = this; _._client_model$_id = _._client_model$_assignedUserId = _._client_model$_createdUserId = _._client_model$_isDeleted = _._client_model$_archivedAt = _._client_model$_updatedAt = _._client_model$_createdAt = _._client_model$_isChanged = _._link = _._lastLogin = _._client_model$_customValue4 = _._client_model$_customValue3 = _._client_model$_customValue2 = _._client_model$_customValue1 = _._client_model$_sendEmail = _._client_model$_isPrimary = _._contactKey = _._client_model$_phone = _._client_model$_password = _._client_model$_email = _._client_model$_lastName = _._client_model$_firstName = _._client_model$_$v = null; }, _ClientContactEntity_Object_BaseEntity: function _ClientContactEntity_Object_BaseEntity() { }, _ClientContactEntity_Object_BaseEntity_SelectableEntity: function _ClientContactEntity_Object_BaseEntity_SelectableEntity() { }, _ClientEntity_Object_BaseEntity: function _ClientEntity_Object_BaseEntity() { }, _ClientEntity_Object_BaseEntity_SelectableEntity: function _ClientEntity_Object_BaseEntity_SelectableEntity() { }, _ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities: function _ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities() { }, CompanyGatewayEntity_CompanyGatewayEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$CompanyGatewayEntity$_(0, 0, "", "", 0, "", "", "", "", "", A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_FeesAndLimitsSettings), "", t1, false, false, false, "", null, false, false, false, true, false, false, true, false, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SystemLogEntity), "always", true, 0); }, FeesAndLimitsSettings_FeesAndLimitsSettings(isEnabled) { return A._$FeesAndLimitsSettings$_(false, 0, 0, 0, isEnabled === true, -1, -1, "", "", "", 0, 0, 0); }, _$CompanyGatewayEntity$_(acceptedCreditCards, archivedAt, assignedUserId, config, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, feesAndLimitsMap, gatewayId, id, isChanged, isDeleted, isTestMode, label, loadedAt, requireBillingAddress, requireClientName, requireClientPhone, requireContactEmail, requireContactName, requireCvv, requirePostalCode, requireShippingAddress, systemLogs, tokenBilling, updateDetails, updatedAt) { var _s20_ = "CompanyGatewayEntity"; if (feesAndLimitsMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "feesAndLimitsMap")); if (systemLogs == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "systemLogs")); return new A._$CompanyGatewayEntity(loadedAt, gatewayId, acceptedCreditCards, requireShippingAddress, requireBillingAddress, requireClientName, requirePostalCode, requireClientPhone, requireContactName, requireContactEmail, requireCvv, updateDetails, feesAndLimitsMap, systemLogs, customValue1, customValue2, customValue3, customValue4, config, tokenBilling, isTestMode, label, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$FeesAndLimitsSettings$_(adjustFeePercent, feeAmount, feeCap, feePercent, isEnabled, maxLimit, minLimit, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3) { return new A._$FeesAndLimitsSettings(minLimit, maxLimit, feeAmount, feePercent, feeCap, taxRate1, taxName1, taxRate2, taxName2, taxRate3, taxName3, adjustFeePercent, isEnabled); }, CompanyGatewayListResponse: function CompanyGatewayListResponse() { }, CompanyGatewayItemResponse: function CompanyGatewayItemResponse() { }, CompanyGatewayEntity: function CompanyGatewayEntity() { }, CompanyGatewayEntity_updateConfig_closure: function CompanyGatewayEntity_updateConfig_closure(t0) { this.updatedConfig = t0; }, FeesAndLimitsSettings: function FeesAndLimitsSettings() { }, _$CompanyGatewayListResponseSerializer: function _$CompanyGatewayListResponseSerializer() { }, _$CompanyGatewayItemResponseSerializer: function _$CompanyGatewayItemResponseSerializer() { }, _$CompanyGatewayEntitySerializer: function _$CompanyGatewayEntitySerializer() { }, _$FeesAndLimitsSettingsSerializer: function _$FeesAndLimitsSettingsSerializer() { }, _$CompanyGatewayListResponse: function _$CompanyGatewayListResponse(t0) { this.data = t0; this._company_gateway_model$__hashCode = null; }, CompanyGatewayListResponseBuilder: function CompanyGatewayListResponseBuilder() { this._company_gateway_model$_data = this._company_gateway_model$_$v = null; }, _$CompanyGatewayItemResponse: function _$CompanyGatewayItemResponse(t0) { this.data = t0; this._company_gateway_model$__hashCode = null; }, CompanyGatewayItemResponseBuilder: function CompanyGatewayItemResponseBuilder() { this._company_gateway_model$_data = this._company_gateway_model$_$v = null; }, _$CompanyGatewayEntity: function _$CompanyGatewayEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29) { var _ = this; _.loadedAt = t0; _.gatewayId = t1; _.acceptedCreditCards = t2; _.requireShippingAddress = t3; _.requireBillingAddress = t4; _.requireClientName = t5; _.requirePostalCode = t6; _.requireClientPhone = t7; _.requireContactName = t8; _.requireContactEmail = t9; _.requireCvv = t10; _.updateDetails = t11; _.feesAndLimitsMap = t12; _.systemLogs = t13; _.customValue1 = t14; _.customValue2 = t15; _.customValue3 = t16; _.customValue4 = t17; _.config = t18; _.tokenBilling = t19; _.isTestMode = t20; _.label = t21; _.isChanged = t22; _.createdAt = t23; _.updatedAt = t24; _.archivedAt = t25; _.isDeleted = t26; _.createdUserId = t27; _.assignedUserId = t28; _.id = t29; _._company_gateway_model$__hashCode = null; }, CompanyGatewayEntityBuilder: function CompanyGatewayEntityBuilder() { var _ = this; _._company_gateway_model$_assignedUserId = _._company_gateway_model$_createdUserId = _._company_gateway_model$_isDeleted = _._company_gateway_model$_archivedAt = _._company_gateway_model$_updatedAt = _._company_gateway_model$_createdAt = _._company_gateway_model$_isChanged = _._label = _._isTestMode = _._tokenBilling = _._config = _._company_gateway_model$_customValue4 = _._company_gateway_model$_customValue3 = _._company_gateway_model$_customValue2 = _._company_gateway_model$_customValue1 = _._company_gateway_model$_systemLogs = _._feesAndLimitsMap = _._updateDetails = _._requireCvv = _._requireContactEmail = _._requireContactName = _._requireClientPhone = _._requirePostalCode = _._requireClientName = _._requireBillingAddress = _._requireShippingAddress = _._acceptedCreditCards = _._gatewayId = _._company_gateway_model$_loadedAt = _._company_gateway_model$_$v = null; _._company_gateway_model$_id = null; }, _$FeesAndLimitsSettings: function _$FeesAndLimitsSettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.minLimit = t0; _.maxLimit = t1; _.feeAmount = t2; _.feePercent = t3; _.feeCap = t4; _.taxRate1 = t5; _.taxName1 = t6; _.taxRate2 = t7; _.taxName2 = t8; _.taxRate3 = t9; _.taxName3 = t10; _.adjustFeePercent = t11; _.isEnabled = t12; _._company_gateway_model$__hashCode = null; }, FeesAndLimitsSettingsBuilder: function FeesAndLimitsSettingsBuilder() { var _ = this; _._company_gateway_model$_isEnabled = _._adjustFeePercent = _._company_gateway_model$_taxName3 = _._company_gateway_model$_taxRate3 = _._company_gateway_model$_taxName2 = _._company_gateway_model$_taxRate2 = _._company_gateway_model$_taxName1 = _._company_gateway_model$_taxRate1 = _._feeCap = _._feePercent = _._feeAmount = _._maxLimit = _._minLimit = _._company_gateway_model$_$v = null; }, _CompanyGatewayEntity_Object_BaseEntity: function _CompanyGatewayEntity_Object_BaseEntity() { }, _CompanyGatewayEntity_Object_BaseEntity_SelectableEntity: function _CompanyGatewayEntity_Object_BaseEntity_SelectableEntity() { }, CompanyEntity_CompanyEntity() { var t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t1 = A.SettingsEntity_SettingsEntity(null, null, null), t2 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_GroupEntity), t3 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_TaxRateEntity), t4 = type$.legacy_TaskStatusEntity, t5 = A.BuiltList_BuiltList$from(B.List_empty, t4), t6 = type$.legacy_String; t4 = A.BuiltMap_BuiltMap(B.Map_empty0, t6, t4); t7 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_CompanyGatewayEntity); t8 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ExpenseCategoryEntity); t9 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_UserEntity); t6 = A.BuiltMap_BuiltMap(B.Map_empty0, t6, t6); t10 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity); t11 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ClientEntity); t12 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ProductEntity); t13 = type$.legacy_InvoiceEntity; t14 = A.BuiltList_BuiltList$from(B.List_empty, t13); t15 = A.BuiltList_BuiltList$from(B.List_empty, t13); t16 = type$.legacy_ExpenseEntity; t17 = A.BuiltList_BuiltList$from(B.List_empty, t16); t18 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_PaymentEntity); t19 = A.BuiltList_BuiltList$from(B.List_empty, t13); t20 = A.BuiltList_BuiltList$from(B.List_empty, t13); t21 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_TaskEntity); t16 = A.BuiltList_BuiltList$from(B.List_empty, t16); t22 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ProjectEntity); t23 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_VendorEntity); t24 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DesignEntity); t25 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_PaymentTermEntity); t26 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_TokenEntity); t27 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_WebhookEntity); t28 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity); t29 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SubscriptionEntity); t30 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SystemLogEntity); return A._$CompanyEntity$_(t10, 0, "", false, false, true, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_RegistrationFieldEntity), t11, t7, "", false, true, 0, "", t20, t6, true, false, t24, t28, false, false, false, false, false, false, false, true, false, 0, B.EntityType_company, t8, false, t16, true, "0", "0", "", t2, "", "", false, true, false, true, t14, false, false, false, false, false, false, true, true, 0, 0, false, 1800000, t25, t18, "", "subdomain", t12, t22, A.BuiltList_BuiltList$from(B.List_empty, t13), t19, t17, t15, false, 0, t1, true, false, false, "", "", true, 0, false, "", t29, t30, t4, t5, t21, t3, t26, false, true, 0, false, false, t9, t23, t27); }, CompanyEntity__initializeBuilder(builder) { builder.get$_company_model$_$this()._calculateExpenseTaxByAmount = false; builder.get$_company_model$_$this()._enableProductDiscount = false; builder.get$_company_model$_$this()._defaultTaskIsDateBased = false; builder.get$_company_model$_$this()._sessionTimeout = 0; builder.get$_company_model$_$this()._passwordTimeout = 1800000; builder.get$_company_model$_$this()._oauthPasswordRequired = false; builder.get$_company_model$_$this()._invoiceTaskDatelog = true; builder.get$_company_model$_$this()._showTaskEndDate = false; builder.get$_company_model$_$this()._markdownEnabled = true; builder.get$_company_model$_$this()._markdownEmailEnabled = true; builder.get$_company_model$_$this()._useCommaAsDecimalPlace = false; builder.get$_company_model$_$this()._useQuoteTermsOnConversion = false; builder.get$_company_model$_$this()._enableApplyingPayments = false; builder.get$_company_model$_$this()._trackInventory = false; builder.get$_company_model$_$this()._stockNotificationThreshold = 0; builder.get$_company_model$_$this()._stockNotification = true; builder.get$_company_model$_$this()._reportIncludeDrafts = false; builder.get$_company_model$_$this()._convertRateToClient = true; builder.get$_company_model$_$this()._stopOnUnpaidRecurring = false; builder.get$systemLogs().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SystemLogEntity)); builder.get$subscriptions().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_SubscriptionEntity)); builder.get$recurringExpenses().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ExpenseEntity)); builder.get$clientRegistrationFields().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_RegistrationFieldEntity)); builder.get$purchaseOrders().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_InvoiceEntity)); return builder; }, GatewayEntity_GatewayEntity() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return A._$GatewayEntity$_("1", "", "" + t1, false, false, "", A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_GatewayOptionsEntity), "", 0); }, GatewayEntity_getClientUrl(customerReference, gatewayId) { switch (gatewayId) { case "d14dd26a37cecc30fdd65700bfb55b23": case "d14dd26a47cecc30fdd65700bfb67b34": return "https://dashboard.stripe.com/customers/" + customerReference; default: return null; } }, GatewayEntity_getPaymentUrl(gatewayId, transactionReference) { switch (gatewayId) { case "d14dd26a37cecc30fdd65700bfb55b23": case "d14dd26a47cecc30fdd65700bfb67b34": if (B.JSString_methods.startsWith$1(transactionReference, "src")) return "https://dashboard.stripe.com/sources/" + transactionReference; else return "https://dashboard.stripe.com/payments/" + transactionReference; default: return null; } }, UserCompanyEntity_UserCompanyEntity(reportErrors) { var _null = null, t1 = A.CompanyEntity_CompanyEntity(), t2 = A.UserEntity_UserEntity(_null, _null, _null), t3 = A.TokenEntity_TokenEntity(_null, _null); return A._$UserCompanyEntity$_(A._$AccountEntity$_(false, "", false, "", "", false, 0, 1, "", false, false, false, false, "", "", "", reportErrors, false, 0, ""), t1, false, false, "", A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String).rebuild$1(new A.UserCompanyEntity_UserCompanyEntity_closure()), "", 0, _null, t3, t2); }, UserCompanyEntity__initializeBuilder(builder) { var t1 = builder.get$settings(), t2 = A.UserSettingsEntity_UserSettingsEntity(); A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; builder.get$notifications().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String).rebuild$1(new A.UserCompanyEntity__initializeBuilder_closure())); builder.get$_company_model$_$this()._permissionsUpdatedAt = 0; builder.get$_company_model$_$this()._ninjaPortalUrl = ""; return builder; }, UserSettingsEntity_UserSettingsEntity() { var t1 = type$.legacy_String, t2 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_BuiltList_legacy_String); return A._$UserSettingsEntity$_("#2F7DC3", false, 3, A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_ReportSettingsEntity), t2); }, UserSettingsEntity__initializeBuilder(builder) { var t1; builder.get$_company_model$_$this()._accentColor = "#2F7DC3"; builder.get$_company_model$_$this()._numberYearsActive = 3; t1 = type$.legacy_String; builder.get$tableColumns().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_BuiltList_legacy_String)); builder.get$reportSettings().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_ReportSettingsEntity)); builder.get$_company_model$_$this()._includeDeletedClients = false; return builder; }, ReportSettingsEntity_ReportSettingsEntity(sortColumn, sortTotalsIndex) { var t1 = sortColumn == null ? "" : sortColumn, t2 = sortTotalsIndex == null ? 0 : sortTotalsIndex; return A._$ReportSettingsEntity$_(A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_String), true, t1, true, t2); }, ReportSettingsEntity__initializeBuilder(builder) { builder.get$_company_model$_$this()._sortColumn = ""; builder.get$_company_model$_$this()._company_model$_sortAscending = true; builder.get$_company_model$_$this()._sortTotalsAscending = true; builder.get$_company_model$_$this()._sortTotalsIndex = 0; builder.get$columns(builder).replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_String)); return builder; }, _$CompanyEntity$_(activities, archivedAt, assignedUserId, autoStartTasks, calculateExpenseTaxByAmount, clientCanRegister, clientRegistrationFields, clients, companyGateways, companyKey, convertProductExchangeRate, convertRateToClient, createdAt, createdUserId, credits, customFields, defaultQuantity, defaultTaskIsDateBased, designs, documents, enableApplyingPayments, enableCustomSurchargeTaxes1, enableCustomSurchargeTaxes2, enableCustomSurchargeTaxes3, enableCustomSurchargeTaxes4, enableProductCost, enableProductDiscount, enableProductQuantity, enableShopApi, enabledModules, entityType, expenseCategories, expenseInclusiveTaxes, expenses, fillProducts, firstDayOfWeek, firstMonthOfYear, googleAnalyticsKey, groups, id, industryId, invoiceExpenseDocuments, invoiceTaskDatelog, invoiceTaskDocuments, invoiceTaskTimelog, invoices, isChanged, isDeleted, isDisabled, isLarge, markExpensesInvoiceable, markExpensesPaid, markdownEmailEnabled, markdownEnabled, numberOfInvoiceTaxRates, numberOfItemTaxRates, oauthPasswordRequired, passwordTimeout, paymentTerms, payments, portalDomain, portalMode, products, projects, purchaseOrders, quotes, recurringExpenses, recurringInvoices, reportIncludeDrafts, sessionTimeout, settings, showProductDetails, showTaskEndDate, showTasksTable, sizeId, slackWebhookUrl, stockNotification, stockNotificationThreshold, stopOnUnpaidRecurring, subdomain, subscriptions, systemLogs, taskStatusMap, taskStatuses, tasks, taxRates, tokens, trackInventory, updateProducts, updatedAt, useCommaAsDecimalPlace, useQuoteTermsOnConversion, users, vendors, webhooks) { var _s13_ = "CompanyEntity"; if (groups == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "groups")); if (activities == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "activities")); if (taxRates == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRates")); if (taskStatuses == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taskStatuses")); if (taskStatusMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taskStatusMap")); if (companyGateways == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "companyGateways")); if (expenseCategories == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "expenseCategories")); if (users == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "users")); if (clients == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clients")); if (products == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "products")); if (invoices == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoices")); if (recurringInvoices == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "recurringInvoices")); if (recurringExpenses == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "recurringExpenses")); if (payments == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "payments")); if (quotes == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "quotes")); if (credits == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "credits")); if (purchaseOrders == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "purchaseOrders")); if (tasks == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tasks")); if (projects == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "projects")); if (expenses == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "expenses")); if (vendors == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "vendors")); if (designs == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "designs")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "documents")); if (tokens == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tokens")); if (webhooks == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "webhooks")); if (subscriptions == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "subscriptions")); if (paymentTerms == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paymentTerms")); if (systemLogs == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "systemLogs")); if (clientRegistrationFields == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientRegistrationFields")); if (customFields == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customFields")); if (settings == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "settings")); return new A._$CompanyEntity(enableCustomSurchargeTaxes1, enableCustomSurchargeTaxes2, enableCustomSurchargeTaxes3, enableCustomSurchargeTaxes4, sizeId, industryId, subdomain, portalMode, portalDomain, updateProducts, convertProductExchangeRate, convertRateToClient, fillProducts, enableProductCost, enableProductQuantity, enableProductDiscount, defaultTaskIsDateBased, defaultQuantity, showProductDetails, clientCanRegister, isLarge, isDisabled, enableShopApi, companyKey, firstDayOfWeek, firstMonthOfYear, numberOfInvoiceTaxRates, numberOfItemTaxRates, expenseInclusiveTaxes, sessionTimeout, passwordTimeout, oauthPasswordRequired, markdownEnabled, markdownEmailEnabled, useCommaAsDecimalPlace, reportIncludeDrafts, useQuoteTermsOnConversion, enableApplyingPayments, trackInventory, stockNotificationThreshold, stockNotification, groups, activities, taxRates, taskStatuses, taskStatusMap, companyGateways, expenseCategories, users, clients, products, invoices, recurringInvoices, recurringExpenses, payments, quotes, credits, purchaseOrders, tasks, projects, expenses, vendors, designs, documents, tokens, webhooks, subscriptions, paymentTerms, systemLogs, clientRegistrationFields, customFields, slackWebhookUrl, googleAnalyticsKey, markExpensesInvoiceable, markExpensesPaid, invoiceExpenseDocuments, invoiceTaskDocuments, invoiceTaskTimelog, invoiceTaskDatelog, autoStartTasks, showTasksTable, showTaskEndDate, settings, enabledModules, calculateExpenseTaxByAmount, stopOnUnpaidRecurring, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$GatewayEntity$_(defaultGatewayTypeId, fields, id, isOffsite, isVisible, $name, options, siteUrl, sortOrder) { if (options == null) A.throwExpression(A.BuiltValueNullFieldError$("GatewayEntity", "options")); return new A._$GatewayEntity(id, $name, isOffsite, isVisible, sortOrder, defaultGatewayTypeId, siteUrl, options, fields); }, _$UserCompanyEntity$_(account, company, isAdmin, isOwner, ninjaPortalUrl, notifications, permissions, permissionsUpdatedAt, settings, token, user) { return new A._$UserCompanyEntity(isAdmin, isOwner, permissionsUpdatedAt, permissions, notifications, company, user, token, account, settings, ninjaPortalUrl); }, _$UserSettingsEntity$_(accentColor, includeDeletedClients, numberYearsActive, reportSettings, tableColumns) { var _s18_ = "UserSettingsEntity"; if (tableColumns == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "tableColumns")); if (reportSettings == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "reportSettings")); return new A._$UserSettingsEntity(accentColor, tableColumns, reportSettings, numberYearsActive, includeDeletedClients); }, _$ReportSettingsEntity$_(columns, sortAscending, sortColumn, sortTotalsAscending, sortTotalsIndex) { if (columns == null) A.throwExpression(A.BuiltValueNullFieldError$("ReportSettingsEntity", "columns")); return new A._$ReportSettingsEntity(sortColumn, sortAscending, sortTotalsIndex, sortTotalsAscending, columns); }, CompanyEntity: function CompanyEntity() { }, CompanyEntity_getCustomFieldValues_closure: function CompanyEntity_getCustomFieldValues_closure() { }, CompanyEntity_coreCompany_closure: function CompanyEntity_coreCompany_closure() { }, GatewayEntity: function GatewayEntity() { }, GatewayEntity_supportsTokenBilling_closure: function GatewayEntity_supportsTokenBilling_closure(t0) { this.$this = t0; }, GatewayEntity_supportsRefunds_closure: function GatewayEntity_supportsRefunds_closure(t0) { this.$this = t0; }, GatewayEntity_supportedEvents_closure: function GatewayEntity_supportedEvents_closure(t0) { this.events = t0; }, GatewayOptionsEntity: function GatewayOptionsEntity() { }, UserCompanyEntity: function UserCompanyEntity() { }, UserCompanyEntity_UserCompanyEntity_closure: function UserCompanyEntity_UserCompanyEntity_closure() { }, UserCompanyEntity__initializeBuilder_closure: function UserCompanyEntity__initializeBuilder_closure() { }, UserSettingsEntity: function UserSettingsEntity() { }, ReportSettingsEntity: function ReportSettingsEntity() { }, CompanyItemResponse: function CompanyItemResponse() { }, RegistrationFieldEntity: function RegistrationFieldEntity() { }, _$CompanyEntitySerializer: function _$CompanyEntitySerializer() { }, _$GatewayEntitySerializer: function _$GatewayEntitySerializer() { }, _$GatewayOptionsEntitySerializer: function _$GatewayOptionsEntitySerializer() { }, _$UserCompanyEntitySerializer: function _$UserCompanyEntitySerializer() { }, _$UserSettingsEntitySerializer: function _$UserSettingsEntitySerializer() { }, _$ReportSettingsEntitySerializer: function _$ReportSettingsEntitySerializer() { }, _$CompanyItemResponseSerializer: function _$CompanyItemResponseSerializer() { }, _$RegistrationFieldEntitySerializer: function _$RegistrationFieldEntitySerializer() { }, _$CompanyEntity: function _$CompanyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94) { var _ = this; _.enableCustomSurchargeTaxes1 = t0; _.enableCustomSurchargeTaxes2 = t1; _.enableCustomSurchargeTaxes3 = t2; _.enableCustomSurchargeTaxes4 = t3; _.sizeId = t4; _.industryId = t5; _.subdomain = t6; _.portalMode = t7; _.portalDomain = t8; _.updateProducts = t9; _.convertProductExchangeRate = t10; _.convertRateToClient = t11; _.fillProducts = t12; _.enableProductCost = t13; _.enableProductQuantity = t14; _.enableProductDiscount = t15; _.defaultTaskIsDateBased = t16; _.defaultQuantity = t17; _.showProductDetails = t18; _.clientCanRegister = t19; _.isLarge = t20; _.isDisabled = t21; _.enableShopApi = t22; _.companyKey = t23; _.firstDayOfWeek = t24; _.firstMonthOfYear = t25; _.numberOfInvoiceTaxRates = t26; _.numberOfItemTaxRates = t27; _.expenseInclusiveTaxes = t28; _.sessionTimeout = t29; _.passwordTimeout = t30; _.oauthPasswordRequired = t31; _.markdownEnabled = t32; _.markdownEmailEnabled = t33; _.useCommaAsDecimalPlace = t34; _.reportIncludeDrafts = t35; _.useQuoteTermsOnConversion = t36; _.enableApplyingPayments = t37; _.trackInventory = t38; _.stockNotificationThreshold = t39; _.stockNotification = t40; _.groups = t41; _.activities = t42; _.taxRates = t43; _.taskStatuses = t44; _.taskStatusMap = t45; _.companyGateways = t46; _.expenseCategories = t47; _.users = t48; _.clients = t49; _.products = t50; _.invoices = t51; _.recurringInvoices = t52; _.recurringExpenses = t53; _.payments = t54; _.quotes = t55; _.credits = t56; _.purchaseOrders = t57; _.tasks = t58; _.projects = t59; _.expenses = t60; _.vendors = t61; _.designs = t62; _.documents = t63; _.tokens = t64; _.webhooks = t65; _.subscriptions = t66; _.paymentTerms = t67; _.systemLogs = t68; _.clientRegistrationFields = t69; _.customFields = t70; _.slackWebhookUrl = t71; _.googleAnalyticsKey = t72; _.markExpensesInvoiceable = t73; _.markExpensesPaid = t74; _.invoiceExpenseDocuments = t75; _.invoiceTaskDocuments = t76; _.invoiceTaskTimelog = t77; _.invoiceTaskDatelog = t78; _.autoStartTasks = t79; _.showTasksTable = t80; _.showTaskEndDate = t81; _.settings = t82; _.enabledModules = t83; _.calculateExpenseTaxByAmount = t84; _.stopOnUnpaidRecurring = t85; _.isChanged = t86; _.createdAt = t87; _.updatedAt = t88; _.archivedAt = t89; _.isDeleted = t90; _.createdUserId = t91; _.assignedUserId = t92; _.entityType = t93; _.id = t94; _._company_model$__hashCode = null; }, CompanyEntityBuilder: function CompanyEntityBuilder() { var _ = this; _._expenseInclusiveTaxes = _._numberOfItemTaxRates = _._numberOfInvoiceTaxRates = _._firstMonthOfYear = _._firstDayOfWeek = _._companyKey = _._enableShopApi = _._isDisabled = _._isLarge = _._clientCanRegister = _._showProductDetails = _._defaultQuantity = _._defaultTaskIsDateBased = _._enableProductDiscount = _._enableProductQuantity = _._enableProductCost = _._fillProducts = _._convertRateToClient = _._convertProductExchangeRate = _._updateProducts = _._portalDomain = _._portalMode = _._subdomain = _._company_model$_industryId = _._company_model$_sizeId = _._enableCustomSurchargeTaxes4 = _._enableCustomSurchargeTaxes3 = _._enableCustomSurchargeTaxes2 = _._enableCustomSurchargeTaxes1 = _._company_model$_$v = null; _._tasks = _._purchaseOrders = _._credits = _._quotes = _._payments = _._recurringExpenses = _._recurringInvoices = _._invoices = _._products = _._clients = _._users = _._expenseCategories = _._companyGateways = _._taskStatusMap = _._taskStatuses = _._taxRates = _._company_model$_activities = _._groups = _._stockNotification = _._stockNotificationThreshold = _._trackInventory = _._enableApplyingPayments = _._useQuoteTermsOnConversion = _._reportIncludeDrafts = _._useCommaAsDecimalPlace = _._markdownEmailEnabled = _._markdownEnabled = _._oauthPasswordRequired = _._passwordTimeout = _._sessionTimeout = null; _._company_model$_updatedAt = _._company_model$_createdAt = _._company_model$_isChanged = _._stopOnUnpaidRecurring = _._calculateExpenseTaxByAmount = _._enabledModules = _._company_model$_settings = _._showTaskEndDate = _._showTasksTable = _._autoStartTasks = _._invoiceTaskDatelog = _._invoiceTaskTimelog = _._invoiceTaskDocuments = _._invoiceExpenseDocuments = _._markExpensesPaid = _._markExpensesInvoiceable = _._googleAnalyticsKey = _._slackWebhookUrl = _._customFields = _._clientRegistrationFields = _._company_model$_systemLogs = _._paymentTerms = _._subscriptions = _._webhooks = _._tokens = _._company_model$_documents = _._designs = _._vendors = _._expenses = _._projects = null; _._company_model$_id = _._company_model$_entityType = _._company_model$_assignedUserId = _._company_model$_createdUserId = _._company_model$_isDeleted = _._company_model$_archivedAt = null; }, _$GatewayEntity: function _$GatewayEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.id = t0; _.name = t1; _.isOffsite = t2; _.isVisible = t3; _.sortOrder = t4; _.defaultGatewayTypeId = t5; _.siteUrl = t6; _.options = t7; _.fields = t8; _._company_model$__hashCode = null; }, GatewayEntityBuilder: function GatewayEntityBuilder() { var _ = this; _._company_model$_fields = _._company_model$_options = _._siteUrl = _._defaultGatewayTypeId = _._sortOrder = _._isVisible = _._isOffsite = _._company_model$_name = _._company_model$_id = _._company_model$_$v = null; }, _$GatewayOptionsEntity: function _$GatewayOptionsEntity(t0, t1, t2) { var _ = this; _.supportRefunds = t0; _.supportTokenBilling = t1; _.webhooks = t2; _._company_model$__hashCode = null; }, GatewayOptionsEntityBuilder: function GatewayOptionsEntityBuilder() { var _ = this; _._webhooks = _._supportTokenBilling = _._supportRefunds = _._company_model$_$v = null; }, _$UserCompanyEntity: function _$UserCompanyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.isAdmin = t0; _.isOwner = t1; _.permissionsUpdatedAt = t2; _.permissions = t3; _.notifications = t4; _.company = t5; _.user = t6; _.token = t7; _.account = t8; _.settings = t9; _.ninjaPortalUrl = t10; _._company_model$__hashCode = null; }, UserCompanyEntityBuilder: function UserCompanyEntityBuilder() { var _ = this; _._ninjaPortalUrl = _._company_model$_settings = _._account = _._token = _._company_model$_user = _._company_model$_company = _._notifications = _._permissions = _._permissionsUpdatedAt = _._isOwner = _._isAdmin = _._company_model$_$v = null; }, _$UserSettingsEntity: function _$UserSettingsEntity(t0, t1, t2, t3, t4) { var _ = this; _.accentColor = t0; _.tableColumns = t1; _.reportSettings = t2; _.numberYearsActive = t3; _.includeDeletedClients = t4; _._company_model$__hashCode = null; }, UserSettingsEntityBuilder: function UserSettingsEntityBuilder() { var _ = this; _._includeDeletedClients = _._numberYearsActive = _._reportSettings = _._tableColumns = _._accentColor = _._company_model$_$v = null; }, _$ReportSettingsEntity: function _$ReportSettingsEntity(t0, t1, t2, t3, t4) { var _ = this; _.sortColumn = t0; _.sortAscending = t1; _.sortTotalsIndex = t2; _.sortTotalsAscending = t3; _.columns = t4; _._company_model$__hashCode = null; }, ReportSettingsEntityBuilder: function ReportSettingsEntityBuilder() { var _ = this; _._columns = _._sortTotalsAscending = _._sortTotalsIndex = _._company_model$_sortAscending = _._sortColumn = _._company_model$_$v = null; }, _$CompanyItemResponse: function _$CompanyItemResponse(t0) { this.data = t0; this._company_model$__hashCode = null; }, CompanyItemResponseBuilder: function CompanyItemResponseBuilder() { this._company_model$_data = this._company_model$_$v = null; }, _$RegistrationFieldEntity: function _$RegistrationFieldEntity(t0, t1) { this.key = t0; this.required = t1; this._company_model$__hashCode = null; }, RegistrationFieldEntityBuilder: function RegistrationFieldEntityBuilder() { this._required = this._company_model$_key = this._company_model$_$v = null; }, _CompanyEntity_Object_BaseEntity: function _CompanyEntity_Object_BaseEntity() { }, _GatewayEntity_Object_SelectableEntity: function _GatewayEntity_Object_SelectableEntity() { }, CreditListResponse: function CreditListResponse() { }, CreditItemResponse: function CreditItemResponse() { }, _$CreditListResponseSerializer: function _$CreditListResponseSerializer() { }, _$CreditItemResponseSerializer: function _$CreditItemResponseSerializer() { }, _$CreditListResponse: function _$CreditListResponse(t0) { this.data = t0; this._credit_model$__hashCode = null; }, CreditListResponseBuilder: function CreditListResponseBuilder() { this._credit_model$_data = this._credit_model$_$v = null; }, _$CreditItemResponse: function _$CreditItemResponse(t0) { this.data = t0; this._credit_model$__hashCode = null; }, CreditItemResponseBuilder: function CreditItemResponseBuilder() { this._credit_model$_data = this._credit_model$_$v = null; }, DashboardSettings_fromState(state) { var settings = state.settings, t1 = new A.DashboardSettings(); t1.dateRange = settings.dateRange; t1.startDate = settings.customStartDate; t1.endDate = settings.customEndDate; t1.enableComparison = settings.enableComparison; t1.compareDateRange = settings.compareDateRange; t1.compareStartDate = settings.compareCustomStartDate; t1.compareEndDate = settings.compareCustomEndDate; return t1; }, _$valueOf0($name) { switch ($name) { case "last7Days": return B.DateRange_last7Days; case "last30Days": return B.DateRange_last30Days; case "thisMonth": return B.DateRange_thisMonth; case "lastMonth": return B.DateRange_lastMonth; case "thisQuarter": return B.DateRange_thisQuarter; case "lastQuarter": return B.DateRange_lastQuarter; case "thisYear": return B.DateRange_thisYear; case "lastYear": return B.DateRange_lastYear; case "custom": return B.DateRange_custom; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$comparisonValueOf($name) { switch ($name) { case "previousPeriod": return B.DateRangeComparison_previousPeriod; case "previousYear": return B.DateRangeComparison_previousYear; case "customRange": return B.DateRangeComparison_customRange; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, DateRange: function DateRange(t0) { this.name = t0; }, DateRangeComparison: function DateRangeComparison(t0) { this.name = t0; }, DashboardSettings: function DashboardSettings() { var _ = this; _.compareEndDate = _.compareStartDate = _.compareDateRange = _.enableComparison = _.endDate = _.startDate = _.dateRange = null; }, _$DateRangeSerializer: function _$DateRangeSerializer() { }, _$DateRangeComparisonSerializer: function _$DateRangeComparisonSerializer() { }, DesignEntity_DesignEntity(design, id, state) { var t1, t2, designMap; if (design == null && state != null) { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2]; designMap = t2.designState.map; t2 = t2.userCompany.company.settings.defaultInvoiceDesignId; t2 = designMap._map$_map.$index(0, t2); design = t2 == null ? null : t2.design; } if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; if (design == null) { t2 = type$.legacy_String; t2 = A.BuiltMap_BuiltMap(A.LinkedHashMap_LinkedHashMap$_literal(["header", "", "body", "", "footer", "", "product", "", "task", "", "includes", ""], t2, t2), t2, t2); } else t2 = design; return A._$DesignEntity$_(0, null, 0, null, t2, t1, false, true, false, true, "", 0); }, _$DesignPreviewRequest$_(design, entityId, entityType) { if (design == null) A.throwExpression(A.BuiltValueNullFieldError$("DesignPreviewRequest", "design")); return new A._$DesignPreviewRequest(entityType, entityId, design); }, _$DesignEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, design, id, isChanged, isCustom, isDeleted, isFree, $name, updatedAt) { if (design == null) A.throwExpression(A.BuiltValueNullFieldError$("DesignEntity", "design")); return new A._$DesignEntity($name, design, isCustom, isFree, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, DesignListResponse: function DesignListResponse() { }, DesignItemResponse: function DesignItemResponse() { }, DesignPreviewRequest: function DesignPreviewRequest() { }, DesignEntity: function DesignEntity() { }, DesignEntity_clone_closure: function DesignEntity_clone_closure() { }, _$DesignListResponseSerializer: function _$DesignListResponseSerializer() { }, _$DesignItemResponseSerializer: function _$DesignItemResponseSerializer() { }, _$DesignPreviewRequestSerializer: function _$DesignPreviewRequestSerializer() { }, _$DesignEntitySerializer: function _$DesignEntitySerializer() { }, _$DesignListResponse: function _$DesignListResponse(t0) { this.data = t0; this._design_model$__hashCode = null; }, DesignListResponseBuilder: function DesignListResponseBuilder() { this._design_model$_data = this._design_model$_$v = null; }, _$DesignItemResponse: function _$DesignItemResponse(t0) { this.data = t0; this._design_model$__hashCode = null; }, DesignItemResponseBuilder: function DesignItemResponseBuilder() { this._design_model$_data = this._design_model$_$v = null; }, _$DesignPreviewRequest: function _$DesignPreviewRequest(t0, t1, t2) { var _ = this; _.entityType = t0; _.entityId = t1; _.design = t2; _._design_model$__hashCode = null; }, DesignPreviewRequestBuilder: function DesignPreviewRequestBuilder() { var _ = this; _._design = _._entityId = _._design_model$_entityType = _._design_model$_$v = null; }, _$DesignEntity: function _$DesignEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.name = t0; _.design = t1; _.isCustom = t2; _.isFree = t3; _.isChanged = t4; _.createdAt = t5; _.updatedAt = t6; _.archivedAt = t7; _.isDeleted = t8; _.createdUserId = t9; _.assignedUserId = t10; _.id = t11; _._design_model$__hashCode = null; }, DesignEntityBuilder: function DesignEntityBuilder() { var _ = this; _._design_model$_id = _._design_model$_assignedUserId = _._design_model$_createdUserId = _._design_model$_isDeleted = _._design_model$_archivedAt = _._design_model$_updatedAt = _._design_model$_createdAt = _._design_model$_isChanged = _._isFree = _._isCustom = _._design = _._design_model$_name = _._design_model$_$v = null; }, _DesignEntity_Object_BaseEntity: function _DesignEntity_Object_BaseEntity() { }, DocumentEntity_DocumentEntity(id) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$DocumentEntity$_(0, "", 0, "", "", 0, t1, false, false, false, "", "", 0, "", 0, "", 0); }, _$DocumentEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, hash, height, id, isChanged, isDefault, isDeleted, $name, preview, size, type, updatedAt, url, width) { return new A._$DocumentEntity($name, hash, type, url, width, height, size, preview, isDefault, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, DocumentListResponse: function DocumentListResponse() { }, DocumentItemResponse: function DocumentItemResponse() { }, DocumentEntity: function DocumentEntity() { }, _$DocumentListResponseSerializer: function _$DocumentListResponseSerializer() { }, _$DocumentItemResponseSerializer: function _$DocumentItemResponseSerializer() { }, _$DocumentEntitySerializer: function _$DocumentEntitySerializer() { }, _$DocumentListResponse: function _$DocumentListResponse(t0) { this.data = t0; this._document_model$__hashCode = null; }, DocumentListResponseBuilder: function DocumentListResponseBuilder() { this._document_model$_data = this._document_model$_$v = null; }, _$DocumentItemResponse: function _$DocumentItemResponse(t0) { this.data = t0; this._document_model$__hashCode = null; }, DocumentItemResponseBuilder: function DocumentItemResponseBuilder() { this._document_model$_data = this._document_model$_$v = null; }, _$DocumentEntity: function _$DocumentEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.name = t0; _.hash = t1; _.type = t2; _.url = t3; _.width = t4; _.height = t5; _.size = t6; _.preview = t7; _.isDefault = t8; _.isChanged = t9; _.createdAt = t10; _.updatedAt = t11; _.archivedAt = t12; _.isDeleted = t13; _.createdUserId = t14; _.assignedUserId = t15; _.id = t16; _._document_model$__hashCode = null; }, DocumentEntityBuilder: function DocumentEntityBuilder() { var _ = this; _._document_model$_id = _._document_model$_assignedUserId = _._document_model$_createdUserId = _._document_model$_isDeleted = _._document_model$_archivedAt = _._document_model$_updatedAt = _._document_model$_createdAt = _._document_model$_isChanged = _._isDefault = _._preview = _._size = _._document_model$_height = _._document_model$_width = _._url = _._type = _._hash = _._document_model$_name = _._document_model$_$v = null; }, _DocumentEntity_Object_BaseEntity: function _DocumentEntity_Object_BaseEntity() { }, _DocumentEntity_Object_BaseEntity_SelectableEntity: function _DocumentEntity_Object_BaseEntity_SelectableEntity() { }, _$typeValueOf($name) { switch ($name) { case "dashboard": return B.EntityType_dashboard; case "reports": return B.EntityType_reports; case "settings": return B.EntityType_settings; case "taxRate": return B.EntityType_taxRate; case "companyGateway": return B.EntityType_companyGateway; case "invoice": return B.EntityType_invoice; case "recurringInvoice": return B.EntityType_recurringInvoice; case "quote": return B.EntityType_quote; case "product": return B.EntityType_product; case "client": return B.EntityType_client; case "task": return B.EntityType_task; case "project": return B.EntityType_project; case "expense": return B.EntityType_expense; case "expenseCategory": return B.EntityType_expenseCategory; case "vendor": return B.EntityType_vendor; case "credit": return B.EntityType_credit; case "payment": return B.EntityType_payment; case "group": return B.EntityType_group; case "user": return B.EntityType_user; case "company": return B.EntityType_company; case "gateway": return B.EntityType_gateway; case "gatewayToken": return B.EntityType_gatewayToken; case "invoiceItem": return B.EntityType_invoiceItem; case "design": return B.EntityType_design; case "recurringExpense": return B.EntityType_recurringExpense; case "recurringQuote": return B.EntityType_recurringQuote; case "subscription": return B.EntityType_subscription; case "webhook": return B.EntityType_webhook; case "token": return B.EntityType_token; case "paymentTerm": return B.EntityType_paymentTerm; case "contact": return B.EntityType_contact; case "vendorContact": return B.EntityType_vendorContact; case "country": return B.EntityType_country; case "currency": return B.EntityType_currency; case "language": return B.EntityType_language; case "industry": return B.EntityType_industry; case "size": return B.EntityType_size; case "paymentType": return B.EntityType_paymentType; case "taskStatus": return B.EntityType_taskStatus; case "document": return B.EntityType_document; case "timezone": return B.EntityType_timezone; case "dateFormat": return B.EntityType_dateFormat; case "font": return B.EntityType_font; case "purchaseOrder": return B.EntityType_purchaseOrder; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$valueOf($name) { switch ($name) { case "active": return B.EntityState_active; case "archived": return B.EntityState_archived; case "deleted": return B.EntityState_deleted; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$templateValueOf($name) { switch ($name) { case "invoice": return B.EmailTemplate_invoice; case "quote": return B.EmailTemplate_quote; case "payment": return B.EmailTemplate_payment; case "payment_partial": return B.EmailTemplate_payment_partial; case "credit": return B.EmailTemplate_credit; case "statement": return B.EmailTemplate_statement; case "reminder1": return B.EmailTemplate_reminder1; case "reminder2": return B.EmailTemplate_reminder2; case "reminder3": return B.EmailTemplate_reminder3; case "reminder_endless": return B.EmailTemplate_reminder_endless; case "custom1": return B.EmailTemplate_custom1; case "custom2": return B.EmailTemplate_custom2; case "custom3": return B.EmailTemplate_custom3; case "purchase_order": return B.EmailTemplate_purchase_order; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, EntityType: function EntityType(t0) { this.name = t0; }, EntityState: function EntityState(t0) { this.name = t0; }, EmailTemplate: function EmailTemplate(t0) { this.name = t0; }, UserPermission: function UserPermission(t0) { this.name = t0; }, EntityStatus: function EntityStatus() { }, EntityStats: function EntityStats(t0, t1) { this.countActive = t0; this.countArchived = t1; }, SelectableEntity: function SelectableEntity() { }, BaseEntity: function BaseEntity() { }, HasActivities: function HasActivities() { }, HasActivities_getActivities_closure: function HasActivities_getActivities_closure(t0, t1) { this.invoiceId = t0; this.typeId = t1; }, BelongsToClient: function BelongsToClient() { }, BelongsToVendor: function BelongsToVendor() { }, LoginResponse: function LoginResponse() { }, ActivityEntity: function ActivityEntity() { }, LedgerEntity: function LedgerEntity() { }, _$EntityTypeSerializer: function _$EntityTypeSerializer() { }, _$EntityStateSerializer: function _$EntityStateSerializer() { }, _$EmailTemplateSerializer: function _$EmailTemplateSerializer() { }, _$LoginResponseSerializer: function _$LoginResponseSerializer() { }, _$ActivityEntitySerializer: function _$ActivityEntitySerializer() { }, _$LedgerEntitySerializer: function _$LedgerEntitySerializer() { }, _$LoginResponse: function _$LoginResponse(t0, t1) { this.userCompanies = t0; this.$static = t1; this._entities$__hashCode = null; }, LoginResponseBuilder: function LoginResponseBuilder() { this._static = this._userCompanies = this._entities$_$v = null; }, _$ActivityEntity: function _$ActivityEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.notes = t0; _.key = t1; _.activityTypeId = t2; _.clientId = t3; _.userId = t4; _.invoiceId = t5; _.recurringInvoiceId = t6; _.recurringExpenseId = t7; _.quoteId = t8; _.paymentId = t9; _.creditId = t10; _.updatedAt = t11; _.expenseId = t12; _.isSystem = t13; _.ip = t14; _.contactId = t15; _.taskId = t16; _.projectId = t17; _.vendorId = t18; _.tokenId = t19; _.history = t20; _._entities$__hashCode = null; }, ActivityEntityBuilder: function ActivityEntityBuilder() { var _ = this; _._entities$_history = _._tokenId = _._entities$_vendorId = _._entities$_projectId = _._entities$_taskId = _._contactId = _._ip = _._entities$_isSystem = _._entities$_expenseId = _._entities$_updatedAt = _._entities$_creditId = _._paymentId = _._quoteId = _._recurringExpenseId = _._recurringInvoiceId = _._entities$_invoiceId = _._entities$_userId = _._entities$_clientId = _._activityTypeId = _._entities$_key = _._entities$_notes = _._entities$_$v = null; }, _$LedgerEntity: function _$LedgerEntity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.notes = t0; _.balance = t1; _.adjustment = t2; _.createdAt = t3; _.invoiceId = t4; _.creditId = t5; _.paymentId = t6; _._entities$__hashCode = null; }, LedgerEntityBuilder: function LedgerEntityBuilder() { var _ = this; _._paymentId = _._entities$_creditId = _._entities$_invoiceId = _._entities$_createdAt = _._adjustment = _._entities$_balance = _._entities$_notes = _._entities$_$v = null; }, ExpenseCategoryEntity_ExpenseCategoryEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$ExpenseCategoryEntity$_(0, "", "", 0, "", t1, false, false, "", 0); }, _$ExpenseCategoryEntity$_(archivedAt, assignedUserId, color, createdAt, createdUserId, id, isChanged, isDeleted, $name, updatedAt) { return new A._$ExpenseCategoryEntity($name, color, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ExpenseCategoryListResponse: function ExpenseCategoryListResponse() { }, ExpenseCategoryItemResponse: function ExpenseCategoryItemResponse() { }, ExpenseCategoryEntity: function ExpenseCategoryEntity() { }, _$ExpenseCategoryListResponseSerializer: function _$ExpenseCategoryListResponseSerializer() { }, _$ExpenseCategoryItemResponseSerializer: function _$ExpenseCategoryItemResponseSerializer() { }, _$ExpenseCategoryEntitySerializer: function _$ExpenseCategoryEntitySerializer() { }, _$ExpenseCategoryListResponse: function _$ExpenseCategoryListResponse(t0) { this.data = t0; this._expense_category_model$__hashCode = null; }, ExpenseCategoryListResponseBuilder: function ExpenseCategoryListResponseBuilder() { this._expense_category_model$_data = this._expense_category_model$_$v = null; }, _$ExpenseCategoryItemResponse: function _$ExpenseCategoryItemResponse(t0) { this.data = t0; this._expense_category_model$__hashCode = null; }, ExpenseCategoryItemResponseBuilder: function ExpenseCategoryItemResponseBuilder() { this._expense_category_model$_data = this._expense_category_model$_$v = null; }, _$ExpenseCategoryEntity: function _$ExpenseCategoryEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.color = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._expense_category_model$__hashCode = null; }, ExpenseCategoryEntityBuilder: function ExpenseCategoryEntityBuilder() { var _ = this; _._expense_category_model$_id = _._expense_category_model$_assignedUserId = _._expense_category_model$_createdUserId = _._expense_category_model$_isDeleted = _._expense_category_model$_archivedAt = _._expense_category_model$_updatedAt = _._expense_category_model$_createdAt = _._expense_category_model$_isChanged = _._expense_category_model$_color = _._expense_category_model$_name = _._expense_category_model$_$v = null; }, _ExpenseCategoryEntity_Object_BaseEntity: function _ExpenseCategoryEntity_Object_BaseEntity() { }, _ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity: function _ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity() { }, ExpenseEntity_ExpenseEntity(client, entityType, id, project, state, user, vendor) { var company, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _null = null, t1 = state == null; if (t1) company = _null; else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; company = t2._list[t3].userCompany.company; } if (id == null) { t2 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t2; t2 = "" + t2; } else t2 = id; t3 = entityType == null ? B.EntityType_expense : entityType; t4 = company == null; t5 = t4 ? _null : company.markExpensesInvoiceable; t6 = t4 ? _null : company.invoiceExpenseDocuments; t7 = A.convertDateTimeToSqlDate(_null); t8 = t4 ? _null : company.markExpensesPaid; t8 = t8 === true ? A.convertDateTimeToSqlDate(_null) : ""; t9 = vendor == null; if (!t9) t10 = vendor.currencyId.length !== 0; else t10 = false; if (t10) t10 = vendor.currencyId; else { if (t1) t10 = _null; else { t10 = state.userCompanyStates; t11 = state.uiState.selectedCompanyIndex; t11 = t10._list[t11].userCompany.company; t10 = t11; } if (t10 == null) t10 = _null; else { t10 = t10.settings.currencyId; if (t10 == null) t10 = "1"; } if (t10 == null) t10 = "1"; } t11 = client == null; if (!t11 && client.get$hasCurrency()) t1 = client.settings.currencyId; else { if (t1) t1 = _null; else { t1 = state.userCompanyStates; t12 = state.uiState.selectedCompanyIndex; t12 = t1._list[t12].userCompany.company; t1 = t12; } if (t1 == null) t1 = _null; else { t1 = t1.settings.currencyId; if (t1 == null) t1 = "1"; } if (t1 == null) t1 = "1"; } t12 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity); t13 = t4 ? _null : company.expenseInclusiveTaxes; t4 = t4 ? _null : company.calculateExpenseTaxByAmount; t14 = project == null; t15 = t14 ? _null : project.clientId; if (t15 == null) t11 = t11 ? _null : client.id; else t11 = t15; t9 = t9 ? _null : vendor.id; t14 = t14 ? _null : project.id; t15 = user == null ? _null : user.id; if (t15 == null) t15 = ""; return A._$ExpenseEntity$_(0, 0, t15, "", t4 === true, "", t11, 0, "", t10, "", "", "", "", t7, t12, t3, 1, "5", t2, t1, t6 === true, "", false, false, "", _null, A.convertDateTimeToSqlDate(_null), "", t8, "", "", t14, "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ExpenseScheduleEntity), _null, -1, t5 === true, _null, 0, 0, 0, "", "", "", 0, 0, 0, "", "", 0, t13 === true, t9); }, ExpenseEntity__initializeBuilder(builder) { builder.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; builder.get$_expense_model$_$this()._expense_model$_frequencyId = ""; builder.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; builder.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; builder.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; return builder; }, _$ExpenseEntity$_(amount, archivedAt, assignedUserId, bankId, calculateTaxByAmount, categoryId, clientId, createdAt, createdUserId, currencyId, customValue1, customValue2, customValue3, customValue4, date, documents, entityType, exchangeRate, frequencyId, id, invoiceCurrencyId, invoiceDocuments, invoiceId, isChanged, isDeleted, lastSentDate, loadedAt, nextSendDate, number, paymentDate, paymentTypeId, privateNotes, projectId, publicNotes, recurringDates, recurringId, remainingCycles, shouldBeInvoiced, statusId, taxAmount1, taxAmount2, taxAmount3, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, transactionId, transactionReference, updatedAt, usesInclusiveTaxes, vendorId) { var _s13_ = "ExpenseEntity"; if (paymentDate == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paymentDate")); if (invoiceCurrencyId == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceCurrencyId")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "documents")); if (nextSendDate == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "nextSendDate")); return new A._$ExpenseEntity(privateNotes, publicNotes, shouldBeInvoiced, invoiceDocuments, transactionId, transactionReference, bankId, currencyId, categoryId, amount, date, paymentDate, exchangeRate, invoiceCurrencyId, paymentTypeId, taxName1, taxName2, taxRate1, taxRate2, taxName3, taxRate3, clientId, invoiceId, vendorId, projectId, statusId, customValue1, customValue2, customValue3, customValue4, taxAmount1, taxAmount2, taxAmount3, usesInclusiveTaxes, calculateTaxByAmount, documents, number, recurringId, frequencyId, lastSentDate, nextSendDate, remainingCycles, recurringDates, loadedAt, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$ExpenseStatusEntity$_(id, $name) { return new A._$ExpenseStatusEntity(id, $name); }, ExpenseListResponse: function ExpenseListResponse() { }, ExpenseItemResponse: function ExpenseItemResponse() { }, ExpenseEntity: function ExpenseEntity() { }, ExpenseEntity_clone_closure: function ExpenseEntity_clone_closure() { }, ExpenseScheduleEntity: function ExpenseScheduleEntity() { }, ExpenseStatusEntity: function ExpenseStatusEntity() { }, _$ExpenseListResponseSerializer: function _$ExpenseListResponseSerializer() { }, _$ExpenseItemResponseSerializer: function _$ExpenseItemResponseSerializer() { }, _$ExpenseEntitySerializer: function _$ExpenseEntitySerializer() { }, _$ExpenseScheduleEntitySerializer: function _$ExpenseScheduleEntitySerializer() { }, _$ExpenseStatusEntitySerializer: function _$ExpenseStatusEntitySerializer() { }, _$ExpenseListResponse: function _$ExpenseListResponse(t0) { this.data = t0; this._expense_model$__hashCode = null; }, ExpenseListResponseBuilder: function ExpenseListResponseBuilder() { this._expense_model$_data = this._expense_model$_$v = null; }, _$ExpenseItemResponse: function _$ExpenseItemResponse(t0) { this.data = t0; this._expense_model$__hashCode = null; }, ExpenseItemResponseBuilder: function ExpenseItemResponseBuilder() { this._expense_model$_data = this._expense_model$_$v = null; }, _$ExpenseEntity: function _$ExpenseEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52) { var _ = this; _.privateNotes = t0; _.publicNotes = t1; _.shouldBeInvoiced = t2; _.invoiceDocuments = t3; _.transactionId = t4; _.transactionReference = t5; _.bankId = t6; _.currencyId = t7; _.categoryId = t8; _.amount = t9; _.date = t10; _.paymentDate = t11; _.exchangeRate = t12; _.invoiceCurrencyId = t13; _.paymentTypeId = t14; _.taxName1 = t15; _.taxName2 = t16; _.taxRate1 = t17; _.taxRate2 = t18; _.taxName3 = t19; _.taxRate3 = t20; _.clientId = t21; _.invoiceId = t22; _.vendorId = t23; _.projectId = t24; _.statusId = t25; _.customValue1 = t26; _.customValue2 = t27; _.customValue3 = t28; _.customValue4 = t29; _.taxAmount1 = t30; _.taxAmount2 = t31; _.taxAmount3 = t32; _.usesInclusiveTaxes = t33; _.calculateTaxByAmount = t34; _.documents = t35; _.number = t36; _.recurringId = t37; _.frequencyId = t38; _.lastSentDate = t39; _.nextSendDate = t40; _.remainingCycles = t41; _.recurringDates = t42; _.loadedAt = t43; _.isChanged = t44; _.createdAt = t45; _.updatedAt = t46; _.archivedAt = t47; _.isDeleted = t48; _.createdUserId = t49; _.assignedUserId = t50; _.entityType = t51; _.id = t52; _._expense_model$__hashCode = null; }, ExpenseEntityBuilder: function ExpenseEntityBuilder() { var _ = this; _._expense_model$_customValue3 = _._expense_model$_customValue2 = _._expense_model$_customValue1 = _._expense_model$_statusId = _._expense_model$_projectId = _._expense_model$_vendorId = _._expense_model$_invoiceId = _._expense_model$_clientId = _._expense_model$_taxRate3 = _._expense_model$_taxName3 = _._expense_model$_taxRate2 = _._expense_model$_taxRate1 = _._expense_model$_taxName2 = _._expense_model$_taxName1 = _._paymentTypeId = _._invoiceCurrencyId = _._expense_model$_exchangeRate = _._paymentDate = _._expense_model$_date = _._expense_model$_amount = _._categoryId = _._expense_model$_currencyId = _._bankId = _._expense_model$_transactionReference = _._transactionId = _._invoiceDocuments = _._shouldBeInvoiced = _._expense_model$_publicNotes = _._expense_model$_privateNotes = _._expense_model$_$v = null; _._expense_model$_id = _._expense_model$_entityType = _._expense_model$_assignedUserId = _._expense_model$_createdUserId = _._expense_model$_isDeleted = _._expense_model$_archivedAt = _._expense_model$_updatedAt = _._expense_model$_createdAt = _._expense_model$_isChanged = _._expense_model$_loadedAt = _._expense_model$_recurringDates = _._expense_model$_remainingCycles = _._expense_model$_nextSendDate = _._expense_model$_lastSentDate = _._expense_model$_frequencyId = _._expense_model$_recurringId = _._expense_model$_number = _._expense_model$_documents = _._calculateTaxByAmount = _._expense_model$_usesInclusiveTaxes = _._taxAmount3 = _._taxAmount2 = _._taxAmount1 = _._expense_model$_customValue4 = null; }, _$ExpenseScheduleEntity: function _$ExpenseScheduleEntity(t0) { this.sendDate = t0; this._expense_model$__hashCode = null; }, ExpenseScheduleEntityBuilder: function ExpenseScheduleEntityBuilder() { this._expense_model$_sendDate = this._expense_model$_$v = null; }, _$ExpenseStatusEntity: function _$ExpenseStatusEntity(t0, t1) { this.id = t0; this.name = t1; this._expense_model$__hashCode = null; }, ExpenseStatusEntityBuilder: function ExpenseStatusEntityBuilder() { this._expense_model$_name = this._expense_model$_id = this._expense_model$_$v = null; }, _ExpenseEntity_Object_BaseEntity: function _ExpenseEntity_Object_BaseEntity() { }, _ExpenseEntity_Object_BaseEntity_SelectableEntity: function _ExpenseEntity_Object_BaseEntity_SelectableEntity() { }, _ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, _ExpenseStatusEntity_Object_EntityStatus: function _ExpenseStatusEntity_Object_EntityStatus() { }, _ExpenseStatusEntity_Object_EntityStatus_SelectableEntity: function _ExpenseStatusEntity_Object_EntityStatus_SelectableEntity() { }, GatewayTokenListResponse: function GatewayTokenListResponse() { }, GatewayTokenItemResponse: function GatewayTokenItemResponse() { }, GatewayTokenEntity: function GatewayTokenEntity() { }, GatewayTokenMetaEntity: function GatewayTokenMetaEntity() { }, _$GatewayTokenListResponseSerializer: function _$GatewayTokenListResponseSerializer() { }, _$GatewayTokenItemResponseSerializer: function _$GatewayTokenItemResponseSerializer() { }, _$GatewayTokenEntitySerializer: function _$GatewayTokenEntitySerializer() { }, _$GatewayTokenMetaEntitySerializer: function _$GatewayTokenMetaEntitySerializer() { }, _$GatewayTokenListResponse: function _$GatewayTokenListResponse(t0) { this.data = t0; this._gateway_token_model$__hashCode = null; }, GatewayTokenListResponseBuilder: function GatewayTokenListResponseBuilder() { this._gateway_token_model$_data = this._gateway_token_model$_$v = null; }, _$GatewayTokenItemResponse: function _$GatewayTokenItemResponse(t0) { this.data = t0; this._gateway_token_model$__hashCode = null; }, GatewayTokenItemResponseBuilder: function GatewayTokenItemResponseBuilder() { this._gateway_token_model$_data = this._gateway_token_model$_$v = null; }, _$GatewayTokenEntity: function _$GatewayTokenEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.token = t0; _.customerReference = t1; _.companyGatewayId = t2; _.gatewayTypeId = t3; _.isDefault = t4; _.meta = t5; _.isChanged = t6; _.createdAt = t7; _.updatedAt = t8; _.archivedAt = t9; _.isDeleted = t10; _.createdUserId = t11; _.assignedUserId = t12; _.id = t13; _._gateway_token_model$__hashCode = null; }, GatewayTokenEntityBuilder: function GatewayTokenEntityBuilder() { var _ = this; _._gateway_token_model$_id = _._gateway_token_model$_assignedUserId = _._gateway_token_model$_createdUserId = _._gateway_token_model$_isDeleted = _._gateway_token_model$_archivedAt = _._gateway_token_model$_updatedAt = _._gateway_token_model$_createdAt = _._gateway_token_model$_isChanged = _._meta = _._gateway_token_model$_isDefault = _._gatewayTypeId = _._gateway_token_model$_companyGatewayId = _._customerReference = _._gateway_token_model$_token = _._gateway_token_model$_$v = null; }, _$GatewayTokenMetaEntity: function _$GatewayTokenMetaEntity(t0, t1, t2, t3, t4) { var _ = this; _.brand = t0; _.last4 = t1; _.type = t2; _.expMonth = t3; _.expYear = t4; _._gateway_token_model$__hashCode = null; }, GatewayTokenMetaEntityBuilder: function GatewayTokenMetaEntityBuilder() { var _ = this; _._expYear = _._expMonth = _._gateway_token_model$_type = _._last4 = _._brand = _._gateway_token_model$_$v = null; }, _GatewayTokenEntity_Object_BaseEntity: function _GatewayTokenEntity_Object_BaseEntity() { }, _GatewayTokenEntity_Object_BaseEntity_SelectableEntity: function _GatewayTokenEntity_Object_BaseEntity_SelectableEntity() { }, GroupEntity_GroupEntity(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = A.SettingsEntity_SettingsEntity(null, null, null); return A._$GroupEntity$_(0, "", 0, "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), t1, false, false, "", t2, 0); }, GroupEntity__initializeBuilder(builder) { builder.get$documents().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity)); return builder; }, _$GroupEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, documents, id, isChanged, isDeleted, $name, settings, updatedAt) { var _s11_ = "GroupEntity"; if (settings == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "settings")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "documents")); return new A._$GroupEntity($name, settings, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, GroupListResponse: function GroupListResponse() { }, GroupItemResponse: function GroupItemResponse() { }, GroupEntity: function GroupEntity() { }, _$GroupListResponseSerializer: function _$GroupListResponseSerializer() { }, _$GroupItemResponseSerializer: function _$GroupItemResponseSerializer() { }, _$GroupEntitySerializer: function _$GroupEntitySerializer() { }, _$GroupListResponse: function _$GroupListResponse(t0) { this.data = t0; this._group_model$__hashCode = null; }, GroupListResponseBuilder: function GroupListResponseBuilder() { this._group_model$_data = this._group_model$_$v = null; }, _$GroupItemResponse: function _$GroupItemResponse(t0) { this.data = t0; this._group_model$__hashCode = null; }, GroupItemResponseBuilder: function GroupItemResponseBuilder() { this._group_model$_data = this._group_model$_$v = null; }, _$GroupEntity: function _$GroupEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.name = t0; _.settings = t1; _.documents = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._group_model$__hashCode = null; }, GroupEntityBuilder: function GroupEntityBuilder() { var _ = this; _._id = _._assignedUserId = _._createdUserId = _._isDeleted = _._archivedAt = _._group_model$_updatedAt = _._createdAt = _._group_model$_isChanged = _._documents = _._settings = _._group_model$_name = _._group_model$_$v = null; }, _GroupEntity_Object_BaseEntity: function _GroupEntity_Object_BaseEntity() { }, _GroupEntity_Object_BaseEntity_SelectableEntity: function _GroupEntity_Object_BaseEntity_SelectableEntity() { }, HealthCheckResponse: function HealthCheckResponse() { }, HealthCheckPHPResponse: function HealthCheckPHPResponse() { }, _$HealthCheckResponseSerializer: function _$HealthCheckResponseSerializer() { }, _$HealthCheckPHPResponseSerializer: function _$HealthCheckPHPResponseSerializer() { }, _$HealthCheckResponse: function _$HealthCheckResponse(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.systemHealth = t0; _.phpVersion = t1; _.envWritable = t2; _.dbCheck = t3; _.cacheEnabled = t4; _.phantomEnabled = t5; _.openBasedir = t6; _.filePermissions = t7; _.execEnabled = t8; _.emailDriver = t9; _.pendingJobs = t10; _.pdfEngine = t11; _.trailingSlash = t12; _.queue = t13; _._health_check_model$__hashCode = null; }, HealthCheckResponseBuilder: function HealthCheckResponseBuilder() { var _ = this; _._health_check_model$_queue = _._trailingSlash = _._pdfEngine = _._pendingJobs = _._emailDriver = _._execEnabled = _._filePermissions = _._openBasedir = _._phantomEnabled = _._cacheEnabled = _._dbCheck = _._envWritable = _._phpVersion = _._systemHealth = _._health_check_model$_$v = null; }, _$HealthCheckPHPResponse: function _$HealthCheckPHPResponse(t0, t1, t2, t3) { var _ = this; _.minimumPHPVersion = t0; _.currentPHPVersion = t1; _.currentPHPCLIVersion = t2; _.isOkay = t3; _._health_check_model$__hashCode = null; }, HealthCheckPHPResponseBuilder: function HealthCheckPHPResponseBuilder() { var _ = this; _._isOkay = _._currentPHPCLIVersion = _._currentPHPVersion = _._minimumPHPVersion = _._health_check_model$_$v = null; }, _$ImportRequest$_(columnMap, hash, importType, skipHeader) { var _s13_ = "ImportRequest"; if (skipHeader == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "skipHeader")); if (columnMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "columnMap")); return new A._$ImportRequest(hash, importType, skipHeader, columnMap); }, PreImportResponse: function PreImportResponse() { }, PreImportResponseEntityDetails: function PreImportResponseEntityDetails() { }, ImportRequest: function ImportRequest() { }, ImportRequestMapping: function ImportRequestMapping() { }, ImportType: function ImportType(t0) { this.name = t0; }, ExportType: function ExportType(t0) { this.name = t0; }, _$PreImportResponseSerializer: function _$PreImportResponseSerializer() { }, _$PreImportResponseEntityDetailsSerializer: function _$PreImportResponseEntityDetailsSerializer() { }, _$ImportRequestSerializer: function _$ImportRequestSerializer() { }, _$ImportRequestMappingSerializer: function _$ImportRequestMappingSerializer() { }, _$PreImportResponse: function _$PreImportResponse(t0, t1) { this.hash = t0; this.mappings = t1; this._import_model$__hashCode = null; }, PreImportResponseBuilder: function PreImportResponseBuilder() { this._mappings = this._import_model$_hash = this._import_model$_$v = null; }, _$PreImportResponseEntityDetails: function _$PreImportResponseEntityDetails(t0, t1) { this.available = t0; this.headers = t1; this._import_model$__hashCode = null; }, PreImportResponseEntityDetailsBuilder: function PreImportResponseEntityDetailsBuilder() { this._import_model$_headers = this._available = this._import_model$_$v = null; }, _$ImportRequest: function _$ImportRequest(t0, t1, t2, t3) { var _ = this; _.hash = t0; _.importType = t1; _.skipHeader = t2; _.columnMap = t3; _._import_model$__hashCode = null; }, ImportRequestBuilder: function ImportRequestBuilder() { var _ = this; _._columnMap = _._skipHeader = _._importType = _._import_model$_hash = _._import_model$_$v = null; }, _$ImportRequestMapping: function _$ImportRequestMapping(t0) { this.mapping = t0; this._import_model$__hashCode = null; }, ImportRequestMappingBuilder: function ImportRequestMappingBuilder() { this._mapping = this._import_model$_$v = null; }, InvoiceEntity_InvoiceEntity(client, entityType, id, state, user, vendor) { var company, t1, t2, settings, t3, t4, exchangeRate, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, _null = null; if (state == null) company = _null; else { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = t1._list[t2].userCompany.company; } settings = A.getClientSettings(state, client); t1 = client == null; t2 = t1 ? _null : client.settings.currencyId; if ((t2 == null ? "" : t2).length !== 0) { t2 = state.staticState.currencyMap; t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.company.settings.currencyId; t3 = t4 == null ? "1" : t4; exchangeRate = A.getExchangeRate(t2, t3, client.settings.currencyId); } else exchangeRate = 1; if (id == null) { t2 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t2; t2 = "" + t2; } else t2 = id; t3 = entityType == null ? B.EntityType_invoice : entityType; t4 = t1 ? _null : client.id; if (t4 == null) t4 = ""; t5 = vendor == null; t6 = t5 ? _null : vendor.id; if (t6 == null) t6 = ""; t7 = A.convertDateTimeToSqlDate(_null); t8 = company == null; t9 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t9 == null ? 0 : t9) >= 1) { t9 = settings.defaultTaxName1; if (t9 == null) t9 = ""; } else t9 = ""; t10 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t10 == null ? 0 : t10) >= 1) { t10 = settings.defaultTaxRate1; if (t10 == null) t10 = 0; } else t10 = 0; t11 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t11 == null ? 0 : t11) >= 2) { t11 = settings.defaultTaxName2; if (t11 == null) t11 = ""; } else t11 = ""; t12 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t12 == null ? 0 : t12) >= 2) { t12 = settings.defaultTaxRate2; if (t12 == null) t12 = 0; } else t12 = 0; t13 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t13 == null ? 0 : t13) >= 3) { t13 = settings.defaultTaxName3; if (t13 == null) t13 = ""; } else t13 = ""; t14 = t8 ? _null : company.numberOfInvoiceTaxRates; if ((t14 == null ? 0 : t14) >= 3) { t14 = settings.defaultTaxRate3; if (t14 == null) t14 = 0; } else t14 = 0; t15 = t8 ? _null : company.enableCustomSurchargeTaxes1; t16 = t8 ? _null : company.enableCustomSurchargeTaxes2; t17 = t8 ? _null : company.enableCustomSurchargeTaxes3; t18 = t8 ? _null : company.enableCustomSurchargeTaxes4; t19 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_InvoiceScheduleEntity); t20 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_InvoiceItemEntity); t8 = t8 ? _null : company.settings; t8 = t8 == null ? _null : t8.enableInclusiveTaxes; t21 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity); t22 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity); if (!t1) { t1 = client.get$emailContacts(); t5 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t5 = A.BuiltList_BuiltList$from(A.List_List$of(new A.MappedListIterable(t1, new A.InvoiceEntity_InvoiceEntity_closure(), t5), true, t5._eval$1("ListIterable.E")), type$.legacy_InvitationEntity); t1 = t5; } else { t1 = type$.legacy_InvitationEntity; if (!t5) { t5 = vendor.get$emailContacts(); t23 = A._arrayInstanceType(t5)._eval$1("MappedListIterable<1,InvitationEntity*>"); t1 = A.BuiltList_BuiltList$from(A.List_List$of(new A.MappedListIterable(t5, new A.InvoiceEntity_InvoiceEntity_closure0(), t23), true, t23._eval$1("ListIterable.E")), t1); } else t1 = A.BuiltList_BuiltList$from(B.List_empty, t1); } t5 = user == null ? _null : user.id; if (t5 == null) t5 = ""; return A._$InvoiceEntity$_(t22, 0, 0, t5, _null, false, 0, t4, 0, "", 0, 0, 0, 0, t15 === true, t16 === true, t17 === true, t18 === true, "", "", "", "", t7, "", 0, t21, "", "terms", t3, exchangeRate, "", "", "", "5", t2, t1, "", false, false, false, "", t20, 0, A.convertDateTimeToSqlDate(_null), "", 0, 0, "", "", "", "", "", t19, _null, -1, "", "", "", "", "1", "", 0, t9, t11, t13, t10, t12, t14, "", 0, t8 === true, t6); }, InvoiceEntity__initializeBuilder(builder) { builder.get$activities().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity)); builder.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; builder.get$_invoice_model$_$this()._projectId = ""; builder.get$_invoice_model$_$this()._expenseId = ""; builder.get$_invoice_model$_$this()._vendorId = ""; builder.get$_invoice_model$_$this()._autoBillEnabled = false; builder.get$_invoice_model$_$this()._subscriptionId = ""; return builder; }, InvoiceItemEntity_InvoiceItemEntity(productKey, quantity) { var t1 = productKey == null ? "" : productKey, t2 = quantity == null ? 1 : quantity; return A._$InvoiceItemEntity$_(0, 1000 * Date.now(), "", "", "", "", 0, null, "", 0, t1, t2, null, "", "", "", 0, 0, 0, "1"); }, InvitationEntity_InvitationEntity(clientContactId, vendorContactId) { var t2, t3, _null = null, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t2 = clientContactId == null ? "" : clientContactId; t3 = vendorContactId == null ? "" : vendorContactId; return A._$InvitationEntity$_(0, _null, t2, 0, _null, _null, _null, "" + t1, false, false, "", "", "", "", 0, t3, ""); }, _$InvoiceEntity$_(activities, amount, archivedAt, assignedUserId, autoBill, autoBillEnabled, balance, clientId, createdAt, createdUserId, customSurcharge1, customSurcharge2, customSurcharge3, customSurcharge4, customTaxes1, customTaxes2, customTaxes3, customTaxes4, customValue1, customValue2, customValue3, customValue4, date, designId, discount, documents, dueDate, dueDateDays, entityType, exchangeRate, expenseId, filename, footer, frequencyId, id, invitations, invoiceId, isAmountDiscount, isChanged, isDeleted, lastSentDate, lineItems, loadedAt, nextSendDate, number, paidToDate, partial, partialDueDate, poNumber, privateNotes, projectId, publicNotes, recurringDates, recurringId, remainingCycles, reminder1Sent, reminder2Sent, reminder3Sent, reminderLastSent, statusId, subscriptionId, taxAmount, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, terms, updatedAt, usesInclusiveTaxes, vendorId) { var _s13_ = "InvoiceEntity"; if (date == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "date")); if (nextSendDate == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "nextSendDate")); if (lineItems == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "lineItems")); if (invitations == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invitations")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "documents")); if (activities == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "activities")); return new A._$InvoiceEntity(amount, balance, paidToDate, clientId, projectId, expenseId, vendorId, subscriptionId, statusId, number, discount, poNumber, date, dueDate, publicNotes, privateNotes, terms, footer, designId, usesInclusiveTaxes, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, isAmountDiscount, partial, taxAmount, partialDueDate, autoBill, customValue1, customValue2, customValue3, customValue4, customSurcharge1, customSurcharge2, customSurcharge3, customSurcharge4, customTaxes1, customTaxes2, customTaxes3, customTaxes4, exchangeRate, reminder1Sent, reminder2Sent, reminder3Sent, reminderLastSent, frequencyId, lastSentDate, nextSendDate, remainingCycles, dueDateDays, invoiceId, recurringId, autoBillEnabled, filename, recurringDates, lineItems, invitations, documents, activities, loadedAt, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$InvoiceItemEntity$_(cost, createdAt, customValue1, customValue2, customValue3, customValue4, discount, expenseId, notes, productCost, productKey, quantity, taskId, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, typeId) { return new A._$InvoiceItemEntity(productKey, notes, cost, productCost, quantity, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, typeId, customValue1, customValue2, customValue3, customValue4, discount, taskId, expenseId, createdAt); }, _$InvitationEntity$_(archivedAt, assignedUserId, clientContactId, createdAt, createdUserId, emailStatus, entityType, id, isChanged, isDeleted, key, link, openedDate, sentDate, updatedAt, vendorContactId, viewedDate) { return new A._$InvitationEntity(key, link, clientContactId, vendorContactId, sentDate, viewedDate, openedDate, emailStatus, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, InvoiceListResponse: function InvoiceListResponse() { }, InvoiceItemResponse: function InvoiceItemResponse() { }, InvoiceEntity: function InvoiceEntity() { }, InvoiceEntity_InvoiceEntity_closure: function InvoiceEntity_InvoiceEntity_closure() { }, InvoiceEntity_InvoiceEntity_closure0: function InvoiceEntity_InvoiceEntity_closure0() { }, InvoiceEntity_moveLineItem_closure: function InvoiceEntity_moveLineItem_closure(t0) { this.oldIndex = t0; }, InvoiceEntity_moveLineItem_closure0: function InvoiceEntity_moveLineItem_closure0(t0, t1, t2) { this._box_0 = t0; this.newIndex = t1; this.lineItem = t2; }, InvoiceEntity_recreateInvitations_closure0: function InvoiceEntity_recreateInvitations_closure0() { }, InvoiceEntity_recreateInvitations_closure: function InvoiceEntity_recreateInvitations_closure(t0) { this.invitations = t0; }, InvoiceEntity_recreateInvitations_closure2: function InvoiceEntity_recreateInvitations_closure2() { }, InvoiceEntity_recreateInvitations_closure1: function InvoiceEntity_recreateInvitations_closure1(t0) { this.invitations = t0; }, InvoiceEntity_clone_closure: function InvoiceEntity_clone_closure(t0) { this.$this = t0; }, InvoiceEntity_clone__closure: function InvoiceEntity_clone__closure() { }, InvoiceEntity_clone__closure0: function InvoiceEntity_clone__closure0() { }, InvoiceEntity_applyClient_closure: function InvoiceEntity_applyClient_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.exchangeRate = t1; _.state = t2; _.settings = t3; }, InvoiceEntity_applyVendor_closure: function InvoiceEntity_applyVendor_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.exchangeRate = t1; _.state = t2; _.settings = t3; }, InvoiceEntity_history_closure: function InvoiceEntity_history_closure() { }, InvoiceEntity_history_closure0: function InvoiceEntity_history_closure0() { }, InvoiceEntity_hasTasks_closure: function InvoiceEntity_hasTasks_closure() { }, InvoiceEntity_hasProducts_closure: function InvoiceEntity_hasProducts_closure() { }, InvoiceEntity_hasExpenses_closure: function InvoiceEntity_hasExpenses_closure() { }, InvoiceEntity_applyTax_closure: function InvoiceEntity_applyTax_closure(t0) { this.taxRate = t0; }, InvoiceEntity_applyTax_closure0: function InvoiceEntity_applyTax_closure0(t0) { this.taxRate = t0; }, InvoiceEntity_applyTax_closure1: function InvoiceEntity_applyTax_closure1(t0) { this.taxRate = t0; }, InvoiceEntity_isViewed_closure: function InvoiceEntity_isViewed_closure() { }, InvoiceEntity_getInvitationForClientContact_closure: function InvoiceEntity_getInvitationForClientContact_closure(t0) { this.contact = t0; }, InvoiceEntity_getInvitationForClientContact_closure0: function InvoiceEntity_getInvitationForClientContact_closure0() { }, InvoiceEntity_getInvitationForVendorContact_closure: function InvoiceEntity_getInvitationForVendorContact_closure(t0) { this.contact = t0; }, InvoiceEntity_getInvitationForVendorContact_closure0: function InvoiceEntity_getInvitationForVendorContact_closure0() { }, InvoiceEntity_getTaxes_calculateAmount: function InvoiceEntity_getTaxes_calculateAmount(t0) { this.$this = t0; }, InvoiceEntity__calculateTax_closure: function InvoiceEntity__calculateTax_closure(t0, t1) { this.name = t0; this.rate = t1; }, InvoiceItemEntity: function InvoiceItemEntity() { }, InvoiceItemEntity_taxAmount_calculateTaxAmount: function InvoiceItemEntity_taxAmount_calculateTaxAmount(t0, t1, t2) { this.$this = t0; this.invoice = t1; this.precision = t2; }, InvoiceItemEntity_applyTax_closure: function InvoiceItemEntity_applyTax_closure(t0) { this.taxRate = t0; }, InvoiceItemEntity_applyTax_closure0: function InvoiceItemEntity_applyTax_closure0(t0) { this.taxRate = t0; }, InvoiceItemEntity_applyTax_closure1: function InvoiceItemEntity_applyTax_closure1(t0) { this.taxRate = t0; }, InvitationEntity: function InvitationEntity() { }, InvoiceScheduleEntity: function InvoiceScheduleEntity() { }, InvoiceHistoryEntity: function InvoiceHistoryEntity() { }, _$InvoiceListResponseSerializer: function _$InvoiceListResponseSerializer() { }, _$InvoiceItemResponseSerializer: function _$InvoiceItemResponseSerializer() { }, _$InvoiceEntitySerializer: function _$InvoiceEntitySerializer() { }, _$InvoiceItemEntitySerializer: function _$InvoiceItemEntitySerializer() { }, _$InvitationEntitySerializer: function _$InvitationEntitySerializer() { }, _$InvoiceScheduleEntitySerializer: function _$InvoiceScheduleEntitySerializer() { }, _$InvoiceHistoryEntitySerializer: function _$InvoiceHistoryEntitySerializer() { }, _$InvoiceListResponse: function _$InvoiceListResponse(t0) { this.data = t0; this._invoice_model$__hashCode = null; }, InvoiceListResponseBuilder: function InvoiceListResponseBuilder() { this._invoice_model$_data = this._invoice_model$_$v = null; }, _$InvoiceItemResponse: function _$InvoiceItemResponse(t0) { this.data = t0; this._invoice_model$__hashCode = null; }, InvoiceItemResponseBuilder: function InvoiceItemResponseBuilder() { this._invoice_model$_data = this._invoice_model$_$v = null; }, _$InvoiceEntity: function _$InvoiceEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71) { var _ = this; _.amount = t0; _.balance = t1; _.paidToDate = t2; _.clientId = t3; _.projectId = t4; _.expenseId = t5; _.vendorId = t6; _.subscriptionId = t7; _.statusId = t8; _.number = t9; _.discount = t10; _.poNumber = t11; _.date = t12; _.dueDate = t13; _.publicNotes = t14; _.privateNotes = t15; _.terms = t16; _.footer = t17; _.designId = t18; _.usesInclusiveTaxes = t19; _.taxName1 = t20; _.taxRate1 = t21; _.taxName2 = t22; _.taxRate2 = t23; _.taxName3 = t24; _.taxRate3 = t25; _.isAmountDiscount = t26; _.partial = t27; _.taxAmount = t28; _.partialDueDate = t29; _.autoBill = t30; _.customValue1 = t31; _.customValue2 = t32; _.customValue3 = t33; _.customValue4 = t34; _.customSurcharge1 = t35; _.customSurcharge2 = t36; _.customSurcharge3 = t37; _.customSurcharge4 = t38; _.customTaxes1 = t39; _.customTaxes2 = t40; _.customTaxes3 = t41; _.customTaxes4 = t42; _.exchangeRate = t43; _.reminder1Sent = t44; _.reminder2Sent = t45; _.reminder3Sent = t46; _.reminderLastSent = t47; _.frequencyId = t48; _.lastSentDate = t49; _.nextSendDate = t50; _.remainingCycles = t51; _.dueDateDays = t52; _.invoiceId = t53; _.recurringId = t54; _.autoBillEnabled = t55; _.filename = t56; _.recurringDates = t57; _.lineItems = t58; _.invitations = t59; _.documents = t60; _.activities = t61; _.loadedAt = t62; _.isChanged = t63; _.createdAt = t64; _.updatedAt = t65; _.archivedAt = t66; _.isDeleted = t67; _.createdUserId = t68; _.assignedUserId = t69; _.entityType = t70; _.id = t71; _._invoice_model$__hashCode = null; }, InvoiceEntityBuilder: function InvoiceEntityBuilder() { var _ = this; _._taxAmount = _._partial = _._isAmountDiscount = _._taxRate3 = _._taxName3 = _._taxRate2 = _._taxName2 = _._taxRate1 = _._taxName1 = _._usesInclusiveTaxes = _._designId = _._footer = _._terms = _._invoice_model$_privateNotes = _._invoice_model$_publicNotes = _._dueDate = _._date = _._poNumber = _._discount = _._invoice_model$_number = _._statusId = _._subscriptionId = _._vendorId = _._expenseId = _._projectId = _._clientId = _._invoice_model$_paidToDate = _._invoice_model$_balance = _._amount = _._invoice_model$_$v = null; _._lineItems = _._recurringDates = _._filename = _._autoBillEnabled = _._recurringId = _._invoiceId = _._dueDateDays = _._remainingCycles = _._nextSendDate = _._lastSentDate = _._frequencyId = _._reminderLastSent = _._reminder3Sent = _._reminder2Sent = _._reminder1Sent = _._exchangeRate = _._customTaxes4 = _._customTaxes3 = _._customTaxes2 = _._customTaxes1 = _._customSurcharge4 = _._customSurcharge3 = _._customSurcharge2 = _._customSurcharge1 = _._invoice_model$_customValue4 = _._invoice_model$_customValue3 = _._invoice_model$_customValue2 = _._invoice_model$_customValue1 = _._invoice_model$_autoBill = _._partialDueDate = null; _._invoice_model$_id = _._invoice_model$_entityType = _._invoice_model$_assignedUserId = _._invoice_model$_createdUserId = _._invoice_model$_isDeleted = _._invoice_model$_archivedAt = _._invoice_model$_updatedAt = _._invoice_model$_createdAt = _._invoice_model$_isChanged = _._invoice_model$_loadedAt = _._invoice_model$_activities = _._invoice_model$_documents = _._invitations = null; }, _$InvoiceItemEntity: function _$InvoiceItemEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.productKey = t0; _.notes = t1; _.cost = t2; _.productCost = t3; _.quantity = t4; _.taxName1 = t5; _.taxRate1 = t6; _.taxName2 = t7; _.taxRate2 = t8; _.taxName3 = t9; _.taxRate3 = t10; _.typeId = t11; _.customValue1 = t12; _.customValue2 = t13; _.customValue3 = t14; _.customValue4 = t15; _.discount = t16; _.taskId = t17; _.expenseId = t18; _.createdAt = t19; _._invoice_model$__hashCode = null; }, InvoiceItemEntityBuilder: function InvoiceItemEntityBuilder() { var _ = this; _._invoice_model$_createdAt = _._expenseId = _._taskId = _._discount = _._invoice_model$_customValue4 = _._invoice_model$_customValue3 = _._invoice_model$_customValue2 = _._invoice_model$_customValue1 = _._invoice_model$_typeId = _._taxRate3 = _._taxName3 = _._taxRate2 = _._taxName2 = _._taxRate1 = _._taxName1 = _._invoice_model$_quantity = _._productCost = _._invoice_model$_cost = _._invoice_model$_notes = _._invoice_model$_productKey = _._invoice_model$_$v = null; }, _$InvitationEntity: function _$InvitationEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.key = t0; _.link = t1; _.clientContactId = t2; _.vendorContactId = t3; _.sentDate = t4; _.viewedDate = t5; _.openedDate = t6; _.emailStatus = t7; _.isChanged = t8; _.createdAt = t9; _.updatedAt = t10; _.archivedAt = t11; _.isDeleted = t12; _.createdUserId = t13; _.assignedUserId = t14; _.entityType = t15; _.id = t16; _._invoice_model$__hashCode = null; }, InvitationEntityBuilder: function InvitationEntityBuilder() { var _ = this; _._invoice_model$_id = _._invoice_model$_entityType = _._invoice_model$_assignedUserId = _._invoice_model$_createdUserId = _._invoice_model$_isDeleted = _._invoice_model$_archivedAt = _._invoice_model$_updatedAt = _._invoice_model$_createdAt = _._invoice_model$_isChanged = _._emailStatus = _._openedDate = _._viewedDate = _._sentDate = _._vendorContactId = _._invoice_model$_clientContactId = _._invoice_model$_link = _._invoice_model$_key = _._invoice_model$_$v = null; }, _$InvoiceScheduleEntity: function _$InvoiceScheduleEntity(t0, t1) { this.sendDate = t0; this.dueDate = t1; this._invoice_model$__hashCode = null; }, InvoiceScheduleEntityBuilder: function InvoiceScheduleEntityBuilder() { this._dueDate = this._sendDate = this._invoice_model$_$v = null; }, _$InvoiceHistoryEntity: function _$InvoiceHistoryEntity(t0, t1, t2, t3) { var _ = this; _.id = t0; _.activityId = t1; _.createdAt = t2; _.amount = t3; _._invoice_model$__hashCode = null; }, InvoiceHistoryEntityBuilder: function InvoiceHistoryEntityBuilder() { var _ = this; _._amount = _._invoice_model$_createdAt = _._activityId = _._invoice_model$_id = _._invoice_model$_$v = null; }, _InvitationEntity_Object_BaseEntity: function _InvitationEntity_Object_BaseEntity() { }, _InvitationEntity_Object_BaseEntity_SelectableEntity: function _InvitationEntity_Object_BaseEntity_SelectableEntity() { }, _InvoiceEntity_Object_BaseEntity: function _InvoiceEntity_Object_BaseEntity() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity: function _InvoiceEntity_Object_BaseEntity_SelectableEntity() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal: function _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient: function _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor: function _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor() { }, CalculateInvoiceTotal: function CalculateInvoiceTotal() { }, CalculateInvoiceTotal_calculateTaxes_closure: function CalculateInvoiceTotal_calculateTaxes_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.precision = t2; _.useInclusiveTaxes = t3; _.map = t4; }, CalculateInvoiceTotal_calculateTaxes__closure: function CalculateInvoiceTotal_calculateTaxes__closure(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure0: function CalculateInvoiceTotal_calculateTaxes__closure0(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure1: function CalculateInvoiceTotal_calculateTaxes__closure1(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure2: function CalculateInvoiceTotal_calculateTaxes__closure2(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure3: function CalculateInvoiceTotal_calculateTaxes__closure3(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure4: function CalculateInvoiceTotal_calculateTaxes__closure4(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure0: function CalculateInvoiceTotal_calculateTaxes_closure0(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure1: function CalculateInvoiceTotal_calculateTaxes_closure1(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure2: function CalculateInvoiceTotal_calculateTaxes_closure2(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure3: function CalculateInvoiceTotal_calculateTaxes_closure3(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure4: function CalculateInvoiceTotal_calculateTaxes_closure4(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure5: function CalculateInvoiceTotal_calculateTaxes_closure5(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_getTaxable_closure: function CalculateInvoiceTotal_getTaxable_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, CalculateInvoiceTotal_calculateTotal_closure: function CalculateInvoiceTotal_calculateTotal_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.precision = t2; }, CalculateInvoiceTotal_calculateSubtotal_closure: function CalculateInvoiceTotal_calculateSubtotal_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.precision = t2; }, EntityAction_newEntityType(entityType) { switch (entityType) { case B.EntityType_client: return B.EntityAction_newClient; case B.EntityType_invoice: return B.EntityAction_newInvoice; case B.EntityType_recurringInvoice: return B.EntityAction_newRecurringInvoice; case B.EntityType_quote: return B.EntityAction_newQuote; case B.EntityType_credit: return B.EntityAction_newCredit; case B.EntityType_payment: return B.EntityAction_newPayment; case B.EntityType_expense: return B.EntityAction_newExpense; case B.EntityType_recurringExpense: return B.EntityAction_newRecurringExpense; case B.EntityType_project: return B.EntityAction_newProject; case B.EntityType_task: return B.EntityAction_newTask; case B.EntityType_vendor: return B.EntityAction_newVendor; case B.EntityType_purchaseOrder: return B.EntityAction_newPurchaseOrder; default: A.print("## ERROR: entityType " + A.S(entityType) + " not defined in EntityAction.newEntityType"); return null; } }, EntityAction: function EntityAction(t0) { this.name = t0; }, PaymentEntity_PaymentEntity(client, id, state) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _null = null; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = A.convertDateTimeToSqlDate(_null); t3 = state == null; if (t3) t4 = _null; else { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = t4._list[t5].userCompany.company; t4 = t5; } if (t4 != null) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = t4._list[t5].userCompany.company.settings.defaultPaymentTypeId; t4 = (t5 == null ? "" : t5).length !== 0; } else t4 = false; if (t4) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = t4._list[t5].userCompany.company.settings.defaultPaymentTypeId; t4 = t5; } else t4 = ""; t5 = client == null ? _null : client.id; if (t5 == null) t5 = ""; if (t3) t6 = _null; else { t6 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t7 = t6._list[t7].userCompany.company; t6 = t7; } if (t6 == null) t6 = _null; else { t6 = t6.settings.currencyId; if (t6 == null) t6 = "1"; } if (t6 == null) t6 = ""; t7 = type$.legacy_PaymentableEntity; t8 = A.BuiltList_BuiltList$from(B.List_empty, t7); t9 = A.BuiltList_BuiltList$from(B.List_empty, t7); t7 = A.BuiltList_BuiltList$from(B.List_empty, t7); if (t3) t3 = _null; else { t3 = state.userCompanyStates; t10 = state.uiState.selectedCompanyIndex; t10 = t3._list[t10].userCompany.company; t3 = t10; } t3 = t3 == null ? _null : t3.settings; return A._$PaymentEntity$_(0, 0, 0, "", "", t5, "", 0, "", t7, "", "", "", "", "", t2, t6, 1, _null, t1, "", t9, false, false, false, true, "", t8, "", "", 0, t3 == null ? _null : t3.clientManualPaymentNotification, "", "", t4, 0, ""); }, PaymentableEntity_PaymentableEntity(amount, creditId, invoiceId) { var t2, t3, t4, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t2 = invoiceId == null ? "" : invoiceId; t3 = creditId == null ? "" : creditId; t4 = amount == null ? 0 : amount; return A._$PaymentableEntity$_(t4, null, t3, "" + t1, t2, null); }, _$PaymentEntity$_(amount, applied, archivedAt, assignedUserId, clientContactId, clientId, companyGatewayId, createdAt, createdUserId, credits, currencyId, customValue1, customValue2, customValue3, customValue4, date, exchangeCurrencyId, exchangeRate, gatewayRefund, id, invitationId, invoices, isApplying, isChanged, isDeleted, isManual, number, paymentables, privateNotes, projectId, refunded, sendEmail, statusId, transactionReference, typeId, updatedAt, vendorId) { var _s13_ = "PaymentEntity"; if (date == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "date")); if (typeId == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "typeId")); if (paymentables == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paymentables")); if (invoices == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoices")); if (credits == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "credits")); return new A._$PaymentEntity(amount, applied, refunded, number, clientId, statusId, transactionReference, date, typeId, privateNotes, customValue1, customValue2, customValue3, customValue4, exchangeRate, exchangeCurrencyId, isManual, projectId, vendorId, invitationId, clientContactId, companyGatewayId, currencyId, isApplying, sendEmail, gatewayRefund, paymentables, invoices, credits, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$PaymentableEntity$_(amount, createdAt, creditId, id, invoiceId, updatedAt) { return new A._$PaymentableEntity(createdAt, updatedAt, invoiceId, creditId, amount, id); }, PaymentListResponse: function PaymentListResponse() { }, PaymentItemResponse: function PaymentItemResponse() { }, PaymentEntity: function PaymentEntity() { }, PaymentEntity_invoicePaymentables_closure: function PaymentEntity_invoicePaymentables_closure() { }, PaymentEntity_creditPaymentables_closure: function PaymentEntity_creditPaymentables_closure() { }, PaymentEntity_invoiceId_closure: function PaymentEntity_invoiceId_closure() { }, PaymentEntity_invoiceId_closure0: function PaymentEntity_invoiceId_closure0() { }, PaymentableEntity: function PaymentableEntity() { }, _$PaymentListResponseSerializer: function _$PaymentListResponseSerializer() { }, _$PaymentItemResponseSerializer: function _$PaymentItemResponseSerializer() { }, _$PaymentEntitySerializer: function _$PaymentEntitySerializer() { }, _$PaymentableEntitySerializer: function _$PaymentableEntitySerializer() { }, _$PaymentListResponse: function _$PaymentListResponse(t0) { this.data = t0; this._payment_model$__hashCode = null; }, PaymentListResponseBuilder: function PaymentListResponseBuilder() { this._payment_model$_data = this._payment_model$_$v = null; }, _$PaymentItemResponse: function _$PaymentItemResponse(t0) { this.data = t0; this._payment_model$__hashCode = null; }, PaymentItemResponseBuilder: function PaymentItemResponseBuilder() { this._payment_model$_data = this._payment_model$_$v = null; }, _$PaymentEntity: function _$PaymentEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36) { var _ = this; _.amount = t0; _.applied = t1; _.refunded = t2; _.number = t3; _.clientId = t4; _.statusId = t5; _.transactionReference = t6; _.date = t7; _.typeId = t8; _.privateNotes = t9; _.customValue1 = t10; _.customValue2 = t11; _.customValue3 = t12; _.customValue4 = t13; _.exchangeRate = t14; _.exchangeCurrencyId = t15; _.isManual = t16; _.projectId = t17; _.vendorId = t18; _.invitationId = t19; _.clientContactId = t20; _.companyGatewayId = t21; _.currencyId = t22; _.isApplying = t23; _.sendEmail = t24; _.gatewayRefund = t25; _.paymentables = t26; _.invoices = t27; _.credits = t28; _.isChanged = t29; _.createdAt = t30; _.updatedAt = t31; _.archivedAt = t32; _.isDeleted = t33; _.createdUserId = t34; _.assignedUserId = t35; _.id = t36; _._payment_model$__hashCode = null; }, PaymentEntityBuilder: function PaymentEntityBuilder() { var _ = this; _._payment_model$_credits = _._payment_model$_invoices = _._paymentables = _._gatewayRefund = _._sendEmail = _._isApplying = _._payment_model$_currencyId = _._companyGatewayId = _._clientContactId = _._invitationId = _._payment_model$_vendorId = _._payment_model$_projectId = _._isManual = _._exchangeCurrencyId = _._payment_model$_exchangeRate = _._payment_model$_customValue4 = _._payment_model$_customValue3 = _._payment_model$_customValue2 = _._payment_model$_customValue1 = _._payment_model$_privateNotes = _._typeId = _._payment_model$_date = _._transactionReference = _._payment_model$_statusId = _._payment_model$_clientId = _._payment_model$_number = _._refunded = _._applied = _._payment_model$_amount = _._payment_model$_$v = null; _._payment_model$_id = _._payment_model$_assignedUserId = _._payment_model$_createdUserId = _._payment_model$_isDeleted = _._payment_model$_archivedAt = _._payment_model$_updatedAt = _._payment_model$_createdAt = _._payment_model$_isChanged = null; }, _$PaymentableEntity: function _$PaymentableEntity(t0, t1, t2, t3, t4, t5) { var _ = this; _.createdAt = t0; _.updatedAt = t1; _.invoiceId = t2; _.creditId = t3; _.amount = t4; _.id = t5; _._payment_model$__hashCode = null; }, PaymentableEntityBuilder: function PaymentableEntityBuilder() { var _ = this; _._payment_model$_id = _._payment_model$_amount = _._creditId = _._payment_model$_invoiceId = _._payment_model$_updatedAt = _._payment_model$_createdAt = _._payment_model$_$v = null; }, _PaymentEntity_Object_BaseEntity: function _PaymentEntity_Object_BaseEntity() { }, _PaymentEntity_Object_BaseEntity_SelectableEntity: function _PaymentEntity_Object_BaseEntity_SelectableEntity() { }, _PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, _PaymentableEntity_Object_SelectableEntity: function _PaymentableEntity_Object_SelectableEntity() { }, PaymentTermEntity_PaymentTermEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$PaymentTermEntity$_(0, null, 0, null, t1, false, false, "", 0, 0); }, _$PaymentTermEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, $name, numDays, updatedAt) { return new A._$PaymentTermEntity($name, numDays, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, PaymentTermListResponse: function PaymentTermListResponse() { }, PaymentTermItemResponse: function PaymentTermItemResponse() { }, PaymentTermEntity: function PaymentTermEntity() { }, _$PaymentTermListResponseSerializer: function _$PaymentTermListResponseSerializer() { }, _$PaymentTermItemResponseSerializer: function _$PaymentTermItemResponseSerializer() { }, _$PaymentTermEntitySerializer: function _$PaymentTermEntitySerializer() { }, _$PaymentTermListResponse: function _$PaymentTermListResponse(t0) { this.data = t0; this._payment_term_model$__hashCode = null; }, PaymentTermListResponseBuilder: function PaymentTermListResponseBuilder() { this._payment_term_model$_data = this._payment_term_model$_$v = null; }, _$PaymentTermItemResponse: function _$PaymentTermItemResponse(t0) { this.data = t0; this._payment_term_model$__hashCode = null; }, PaymentTermItemResponseBuilder: function PaymentTermItemResponseBuilder() { this._payment_term_model$_data = this._payment_term_model$_$v = null; }, _$PaymentTermEntity: function _$PaymentTermEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.numDays = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._payment_term_model$__hashCode = null; }, PaymentTermEntityBuilder: function PaymentTermEntityBuilder() { var _ = this; _._payment_term_model$_id = _._payment_term_model$_assignedUserId = _._payment_term_model$_createdUserId = _._payment_term_model$_isDeleted = _._payment_term_model$_archivedAt = _._payment_term_model$_updatedAt = _._payment_term_model$_createdAt = _._payment_term_model$_isChanged = _._numDays = _._payment_term_model$_name = _._payment_term_model$_$v = null; }, _PaymentTermEntity_Object_BaseEntity: function _PaymentTermEntity_Object_BaseEntity() { }, _PaymentTermEntity_Object_BaseEntity_SelectableEntity: function _PaymentTermEntity_Object_BaseEntity_SelectableEntity() { }, ProductEntity_ProductEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$ProductEntity$_(0, "", 0, 0, "", "", "", "", "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), t1, false, false, "", 0, "", 1, true, 0, 0, "", "", "", 0, 0, 0, 0); }, ProductEntity__initializeBuilder(builder) { builder.get$_product_model$_$this()._stockQuantity = 0; builder.get$_product_model$_$this()._product_model$_stockNotification = true; builder.get$_product_model$_$this()._product_model$_stockNotificationThreshold = 0; return builder; }, _$ProductEntity$_(archivedAt, assignedUserId, cost, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, documents, id, isChanged, isDeleted, notes, price, productKey, quantity, stockNotification, stockNotificationThreshold, stockQuantity, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, updatedAt) { if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$("ProductEntity", "documents")); return new A._$ProductEntity(productKey, notes, cost, price, quantity, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, customValue1, customValue2, customValue3, customValue4, stockQuantity, stockNotificationThreshold, stockNotification, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ProductListResponse: function ProductListResponse() { }, ProductItemResponse: function ProductItemResponse() { }, ProductEntity: function ProductEntity() { }, ProductEntity_clone_closure: function ProductEntity_clone_closure() { }, _$ProductListResponseSerializer: function _$ProductListResponseSerializer() { }, _$ProductItemResponseSerializer: function _$ProductItemResponseSerializer() { }, _$ProductEntitySerializer: function _$ProductEntitySerializer() { }, _$ProductListResponse: function _$ProductListResponse(t0) { this.data = t0; this._product_model$__hashCode = null; }, ProductListResponseBuilder: function ProductListResponseBuilder() { this._product_model$_data = this._product_model$_$v = null; }, _$ProductItemResponse: function _$ProductItemResponse(t0) { this.data = t0; this._product_model$__hashCode = null; }, ProductItemResponseBuilder: function ProductItemResponseBuilder() { this._product_model$_data = this._product_model$_$v = null; }, _$ProductEntity: function _$ProductEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.productKey = t0; _.notes = t1; _.cost = t2; _.price = t3; _.quantity = t4; _.taxName1 = t5; _.taxRate1 = t6; _.taxName2 = t7; _.taxRate2 = t8; _.taxName3 = t9; _.taxRate3 = t10; _.customValue1 = t11; _.customValue2 = t12; _.customValue3 = t13; _.customValue4 = t14; _.stockQuantity = t15; _.stockNotificationThreshold = t16; _.stockNotification = t17; _.documents = t18; _.isChanged = t19; _.createdAt = t20; _.updatedAt = t21; _.archivedAt = t22; _.isDeleted = t23; _.createdUserId = t24; _.assignedUserId = t25; _.id = t26; _._product_model$__hashCode = null; }, ProductEntityBuilder: function ProductEntityBuilder() { var _ = this; _._product_model$_id = _._product_model$_assignedUserId = _._product_model$_createdUserId = _._product_model$_isDeleted = _._product_model$_archivedAt = _._product_model$_updatedAt = _._product_model$_createdAt = _._product_model$_isChanged = _._product_model$_documents = _._product_model$_stockNotification = _._product_model$_stockNotificationThreshold = _._stockQuantity = _._product_model$_customValue4 = _._product_model$_customValue3 = _._product_model$_customValue2 = _._product_model$_customValue1 = _._product_model$_taxRate3 = _._product_model$_taxName3 = _._product_model$_taxRate2 = _._product_model$_taxName2 = _._product_model$_taxRate1 = _._product_model$_taxName1 = _._quantity = _._product_model$_price = _._cost = _._notes = _._productKey = _._product_model$_$v = null; }, _ProductEntity_Object_BaseEntity: function _ProductEntity_Object_BaseEntity() { }, _ProductEntity_Object_BaseEntity_SelectableEntity: function _ProductEntity_Object_BaseEntity_SelectableEntity() { }, ProjectEntity_ProjectEntity(client, id, state, user) { var t1, t2, t3; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = client == null ? null : client.id; if (t2 == null) t2 = ""; t3 = user == null ? null : user.id; if (t3 == null) t3 = ""; return A._$ProjectEntity$_(0, t3, 0, t2, "", 0, "", "", "", "", "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), "", t1, false, false, "", "", "", "", 0, 0); }, _$ProjectEntity$_(archivedAt, assignedUserId, budgetedHours, clientId, color, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, documents, dueDate, id, isChanged, isDeleted, $name, number, privateNotes, publicNotes, taskRate, updatedAt) { if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$("ProjectEntity", "documents")); return new A._$ProjectEntity($name, color, clientId, taskRate, dueDate, privateNotes, publicNotes, budgetedHours, customValue1, customValue2, customValue3, customValue4, number, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ProjectListResponse: function ProjectListResponse() { }, ProjectItemResponse: function ProjectItemResponse() { }, ProjectEntity: function ProjectEntity() { }, ProjectEntity_clone_closure: function ProjectEntity_clone_closure() { }, _$ProjectListResponseSerializer: function _$ProjectListResponseSerializer() { }, _$ProjectItemResponseSerializer: function _$ProjectItemResponseSerializer() { }, _$ProjectEntitySerializer: function _$ProjectEntitySerializer() { }, _$ProjectListResponse: function _$ProjectListResponse(t0) { this.data = t0; this._project_model$__hashCode = null; }, ProjectListResponseBuilder: function ProjectListResponseBuilder() { this._project_model$_data = this._project_model$_$v = null; }, _$ProjectItemResponse: function _$ProjectItemResponse(t0) { this.data = t0; this._project_model$__hashCode = null; }, ProjectItemResponseBuilder: function ProjectItemResponseBuilder() { this._project_model$_data = this._project_model$_$v = null; }, _$ProjectEntity: function _$ProjectEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.name = t0; _.color = t1; _.clientId = t2; _.taskRate = t3; _.dueDate = t4; _.privateNotes = t5; _.publicNotes = t6; _.budgetedHours = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.number = t12; _.documents = t13; _.isChanged = t14; _.createdAt = t15; _.updatedAt = t16; _.archivedAt = t17; _.isDeleted = t18; _.createdUserId = t19; _.assignedUserId = t20; _.id = t21; _._project_model$__hashCode = null; }, ProjectEntityBuilder: function ProjectEntityBuilder() { var _ = this; _._project_model$_id = _._project_model$_assignedUserId = _._project_model$_createdUserId = _._project_model$_isDeleted = _._project_model$_archivedAt = _._project_model$_updatedAt = _._project_model$_createdAt = _._project_model$_isChanged = _._project_model$_documents = _._project_model$_number = _._project_model$_customValue4 = _._project_model$_customValue3 = _._project_model$_customValue2 = _._project_model$_customValue1 = _._budgetedHours = _._project_model$_publicNotes = _._project_model$_privateNotes = _._project_model$_dueDate = _._taskRate = _._project_model$_clientId = _._color = _._project_model$_name = _._project_model$_$v = null; }, _ProjectEntity_Object_BaseEntity: function _ProjectEntity_Object_BaseEntity() { }, _ProjectEntity_Object_BaseEntity_SelectableEntity: function _ProjectEntity_Object_BaseEntity_SelectableEntity() { }, _ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, _$serializers_closure: function _$serializers_closure() { }, _$serializers_closure0: function _$serializers_closure0() { }, _$serializers_closure1: function _$serializers_closure1() { }, _$serializers_closure2: function _$serializers_closure2() { }, _$serializers_closure3: function _$serializers_closure3() { }, _$serializers_closure4: function _$serializers_closure4() { }, _$serializers_closure5: function _$serializers_closure5() { }, _$serializers_closure6: function _$serializers_closure6() { }, _$serializers_closure7: function _$serializers_closure7() { }, _$serializers_closure8: function _$serializers_closure8() { }, _$serializers_closure9: function _$serializers_closure9() { }, _$serializers_closure10: function _$serializers_closure10() { }, _$serializers_closure11: function _$serializers_closure11() { }, _$serializers_closure12: function _$serializers_closure12() { }, _$serializers_closure13: function _$serializers_closure13() { }, _$serializers_closure14: function _$serializers_closure14() { }, _$serializers_closure15: function _$serializers_closure15() { }, _$serializers_closure16: function _$serializers_closure16() { }, _$serializers_closure17: function _$serializers_closure17() { }, _$serializers_closure18: function _$serializers_closure18() { }, _$serializers_closure19: function _$serializers_closure19() { }, _$serializers_closure20: function _$serializers_closure20() { }, _$serializers_closure21: function _$serializers_closure21() { }, _$serializers_closure22: function _$serializers_closure22() { }, _$serializers_closure23: function _$serializers_closure23() { }, _$serializers_closure24: function _$serializers_closure24() { }, _$serializers_closure25: function _$serializers_closure25() { }, _$serializers_closure26: function _$serializers_closure26() { }, _$serializers_closure27: function _$serializers_closure27() { }, _$serializers_closure28: function _$serializers_closure28() { }, _$serializers_closure29: function _$serializers_closure29() { }, _$serializers_closure30: function _$serializers_closure30() { }, _$serializers_closure31: function _$serializers_closure31() { }, _$serializers_closure32: function _$serializers_closure32() { }, _$serializers_closure33: function _$serializers_closure33() { }, _$serializers_closure34: function _$serializers_closure34() { }, _$serializers_closure35: function _$serializers_closure35() { }, _$serializers_closure36: function _$serializers_closure36() { }, _$serializers_closure37: function _$serializers_closure37() { }, _$serializers_closure38: function _$serializers_closure38() { }, _$serializers_closure39: function _$serializers_closure39() { }, _$serializers_closure40: function _$serializers_closure40() { }, _$serializers_closure41: function _$serializers_closure41() { }, _$serializers_closure42: function _$serializers_closure42() { }, _$serializers_closure43: function _$serializers_closure43() { }, _$serializers_closure44: function _$serializers_closure44() { }, _$serializers_closure45: function _$serializers_closure45() { }, _$serializers_closure46: function _$serializers_closure46() { }, _$serializers_closure47: function _$serializers_closure47() { }, _$serializers_closure48: function _$serializers_closure48() { }, _$serializers_closure49: function _$serializers_closure49() { }, _$serializers_closure50: function _$serializers_closure50() { }, _$serializers_closure51: function _$serializers_closure51() { }, _$serializers_closure52: function _$serializers_closure52() { }, _$serializers_closure53: function _$serializers_closure53() { }, _$serializers_closure54: function _$serializers_closure54() { }, _$serializers_closure55: function _$serializers_closure55() { }, _$serializers_closure56: function _$serializers_closure56() { }, _$serializers_closure57: function _$serializers_closure57() { }, _$serializers_closure58: function _$serializers_closure58() { }, _$serializers_closure59: function _$serializers_closure59() { }, _$serializers_closure60: function _$serializers_closure60() { }, _$serializers_closure61: function _$serializers_closure61() { }, _$serializers_closure62: function _$serializers_closure62() { }, _$serializers_closure63: function _$serializers_closure63() { }, _$serializers_closure64: function _$serializers_closure64() { }, _$serializers_closure65: function _$serializers_closure65() { }, _$serializers_closure66: function _$serializers_closure66() { }, _$serializers_closure67: function _$serializers_closure67() { }, _$serializers_closure68: function _$serializers_closure68() { }, _$serializers_closure69: function _$serializers_closure69() { }, _$serializers_closure70: function _$serializers_closure70() { }, _$serializers_closure71: function _$serializers_closure71() { }, _$serializers_closure72: function _$serializers_closure72() { }, _$serializers_closure73: function _$serializers_closure73() { }, _$serializers_closure74: function _$serializers_closure74() { }, _$serializers_closure75: function _$serializers_closure75() { }, _$serializers_closure76: function _$serializers_closure76() { }, _$serializers_closure77: function _$serializers_closure77() { }, _$serializers_closure78: function _$serializers_closure78() { }, _$serializers_closure79: function _$serializers_closure79() { }, _$serializers_closure80: function _$serializers_closure80() { }, _$serializers_closure81: function _$serializers_closure81() { }, _$serializers_closure82: function _$serializers_closure82() { }, _$serializers_closure83: function _$serializers_closure83() { }, _$serializers_closure84: function _$serializers_closure84() { }, _$serializers_closure85: function _$serializers_closure85() { }, _$serializers_closure86: function _$serializers_closure86() { }, _$serializers_closure87: function _$serializers_closure87() { }, _$serializers_closure88: function _$serializers_closure88() { }, _$serializers_closure89: function _$serializers_closure89() { }, _$serializers_closure90: function _$serializers_closure90() { }, _$serializers_closure91: function _$serializers_closure91() { }, _$serializers_closure92: function _$serializers_closure92() { }, _$serializers_closure93: function _$serializers_closure93() { }, _$serializers_closure94: function _$serializers_closure94() { }, _$serializers_closure95: function _$serializers_closure95() { }, _$serializers_closure96: function _$serializers_closure96() { }, _$serializers_closure97: function _$serializers_closure97() { }, _$serializers_closure98: function _$serializers_closure98() { }, _$serializers_closure99: function _$serializers_closure99() { }, _$serializers_closure100: function _$serializers_closure100() { }, _$serializers_closure101: function _$serializers_closure101() { }, _$serializers_closure102: function _$serializers_closure102() { }, _$serializers_closure103: function _$serializers_closure103() { }, _$serializers_closure104: function _$serializers_closure104() { }, _$serializers_closure105: function _$serializers_closure105() { }, _$serializers_closure106: function _$serializers_closure106() { }, _$serializers_closure107: function _$serializers_closure107() { }, _$serializers_closure108: function _$serializers_closure108() { }, _$serializers_closure109: function _$serializers_closure109() { }, _$serializers_closure110: function _$serializers_closure110() { }, _$serializers_closure111: function _$serializers_closure111() { }, _$serializers_closure112: function _$serializers_closure112() { }, _$serializers_closure113: function _$serializers_closure113() { }, _$serializers_closure114: function _$serializers_closure114() { }, _$serializers_closure115: function _$serializers_closure115() { }, _$serializers_closure116: function _$serializers_closure116() { }, _$serializers_closure117: function _$serializers_closure117() { }, _$serializers_closure118: function _$serializers_closure118() { }, _$serializers_closure119: function _$serializers_closure119() { }, _$serializers_closure120: function _$serializers_closure120() { }, _$serializers_closure121: function _$serializers_closure121() { }, _$serializers_closure122: function _$serializers_closure122() { }, _$serializers_closure123: function _$serializers_closure123() { }, _$serializers_closure124: function _$serializers_closure124() { }, _$serializers_closure125: function _$serializers_closure125() { }, _$serializers_closure126: function _$serializers_closure126() { }, _$serializers_closure127: function _$serializers_closure127() { }, _$serializers_closure128: function _$serializers_closure128() { }, _$serializers_closure129: function _$serializers_closure129() { }, _$serializers_closure130: function _$serializers_closure130() { }, _$serializers_closure131: function _$serializers_closure131() { }, _$serializers_closure132: function _$serializers_closure132() { }, _$serializers_closure133: function _$serializers_closure133() { }, _$serializers_closure134: function _$serializers_closure134() { }, _$serializers_closure135: function _$serializers_closure135() { }, _$serializers_closure136: function _$serializers_closure136() { }, _$serializers_closure137: function _$serializers_closure137() { }, _$serializers_closure138: function _$serializers_closure138() { }, _$serializers_closure139: function _$serializers_closure139() { }, _$serializers_closure140: function _$serializers_closure140() { }, _$serializers_closure141: function _$serializers_closure141() { }, _$serializers_closure142: function _$serializers_closure142() { }, _$serializers_closure143: function _$serializers_closure143() { }, _$serializers_closure144: function _$serializers_closure144() { }, _$serializers_closure145: function _$serializers_closure145() { }, _$serializers_closure146: function _$serializers_closure146() { }, _$serializers_closure147: function _$serializers_closure147() { }, _$serializers_closure148: function _$serializers_closure148() { }, _$serializers_closure149: function _$serializers_closure149() { }, _$serializers_closure150: function _$serializers_closure150() { }, _$serializers_closure151: function _$serializers_closure151() { }, _$serializers_closure152: function _$serializers_closure152() { }, _$serializers_closure153: function _$serializers_closure153() { }, _$serializers_closure154: function _$serializers_closure154() { }, _$serializers_closure155: function _$serializers_closure155() { }, _$serializers_closure156: function _$serializers_closure156() { }, _$serializers_closure157: function _$serializers_closure157() { }, _$serializers_closure158: function _$serializers_closure158() { }, _$serializers_closure159: function _$serializers_closure159() { }, _$serializers_closure160: function _$serializers_closure160() { }, _$serializers_closure161: function _$serializers_closure161() { }, _$serializers_closure162: function _$serializers_closure162() { }, _$serializers_closure163: function _$serializers_closure163() { }, _$serializers_closure164: function _$serializers_closure164() { }, _$serializers_closure165: function _$serializers_closure165() { }, _$serializers_closure166: function _$serializers_closure166() { }, _$serializers_closure167: function _$serializers_closure167() { }, _$serializers_closure168: function _$serializers_closure168() { }, _$serializers_closure169: function _$serializers_closure169() { }, _$serializers_closure170: function _$serializers_closure170() { }, _$serializers_closure171: function _$serializers_closure171() { }, _$serializers_closure172: function _$serializers_closure172() { }, _$serializers_closure173: function _$serializers_closure173() { }, _$serializers_closure174: function _$serializers_closure174() { }, _$serializers_closure175: function _$serializers_closure175() { }, _$serializers_closure176: function _$serializers_closure176() { }, _$serializers_closure177: function _$serializers_closure177() { }, _$serializers_closure178: function _$serializers_closure178() { }, _$serializers_closure179: function _$serializers_closure179() { }, _$serializers_closure180: function _$serializers_closure180() { }, _$serializers_closure181: function _$serializers_closure181() { }, _$serializers_closure182: function _$serializers_closure182() { }, _$serializers_closure183: function _$serializers_closure183() { }, _$serializers_closure184: function _$serializers_closure184() { }, _$serializers_closure185: function _$serializers_closure185() { }, _$serializers_closure186: function _$serializers_closure186() { }, _$serializers_closure187: function _$serializers_closure187() { }, _$serializers_closure188: function _$serializers_closure188() { }, _$serializers_closure189: function _$serializers_closure189() { }, _$serializers_closure190: function _$serializers_closure190() { }, _$serializers_closure191: function _$serializers_closure191() { }, SettingsEntity_SettingsEntity(clientSettings, companySettings, groupSettings) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _null = null, t1 = clientSettings == null, t2 = t1 ? _null : clientSettings.defaultInvoiceDesignId; if (t2 == null) t2 = groupSettings == null ? _null : groupSettings.defaultInvoiceDesignId; if (t2 == null) t2 = companySettings == null ? _null : companySettings.defaultInvoiceDesignId; t3 = t1 ? _null : clientSettings.defaultQuoteDesignId; if (t3 == null) t3 = groupSettings == null ? _null : groupSettings.defaultQuoteDesignId; if (t3 == null) t3 = companySettings == null ? _null : companySettings.defaultQuoteDesignId; t4 = t1 ? _null : clientSettings.defaultCreditDesignId; if (t4 == null) t4 = groupSettings == null ? _null : groupSettings.defaultCreditDesignId; if (t4 == null) t4 = companySettings == null ? _null : companySettings.defaultCreditDesignId; t5 = t1 ? _null : clientSettings.defaultPurchaseOrderDesignId; if (t5 == null) t5 = groupSettings == null ? _null : groupSettings.defaultPurchaseOrderDesignId; if (t5 == null) t5 = companySettings == null ? _null : companySettings.defaultPurchaseOrderDesignId; t6 = t1 ? _null : clientSettings.defaultInvoiceTerms; if (t6 == null) t6 = groupSettings == null ? _null : groupSettings.defaultInvoiceTerms; if (t6 == null) t6 = companySettings == null ? _null : companySettings.defaultInvoiceTerms; t7 = t1 ? _null : clientSettings.defaultInvoiceFooter; if (t7 == null) t7 = groupSettings == null ? _null : groupSettings.defaultInvoiceFooter; if (t7 == null) t7 = companySettings == null ? _null : companySettings.defaultInvoiceFooter; t8 = t1 ? _null : clientSettings.defaultQuoteTerms; if (t8 == null) t8 = groupSettings == null ? _null : groupSettings.defaultQuoteTerms; if (t8 == null) t8 = companySettings == null ? _null : companySettings.defaultQuoteTerms; t9 = t1 ? _null : clientSettings.defaultQuoteFooter; if (t9 == null) t9 = groupSettings == null ? _null : groupSettings.defaultQuoteFooter; if (t9 == null) t9 = companySettings == null ? _null : companySettings.defaultQuoteFooter; t10 = t1 ? _null : clientSettings.defaultCreditTerms; if (t10 == null) t10 = groupSettings == null ? _null : groupSettings.defaultCreditTerms; if (t10 == null) t10 = companySettings == null ? _null : companySettings.defaultCreditTerms; t11 = t1 ? _null : clientSettings.defaultCreditFooter; if (t11 == null) t11 = groupSettings == null ? _null : groupSettings.defaultCreditFooter; if (t11 == null) t11 = companySettings == null ? _null : companySettings.defaultCreditFooter; t12 = t1 ? _null : clientSettings.lockInvoices; if (t12 == null) t12 = groupSettings == null ? _null : groupSettings.lockInvoices; if (t12 == null) t12 = companySettings == null ? _null : companySettings.lockInvoices; t13 = t1 ? _null : clientSettings.emailSubjectCustom1; if (t13 == null) t13 = groupSettings == null ? _null : groupSettings.emailSubjectCustom1; if (t13 == null) t13 = companySettings == null ? _null : companySettings.emailSubjectCustom1; t14 = t1 ? _null : clientSettings.emailSubjectCustom2; if (t14 == null) t14 = groupSettings == null ? _null : groupSettings.emailSubjectCustom2; if (t14 == null) t14 = companySettings == null ? _null : companySettings.emailSubjectCustom2; t15 = t1 ? _null : clientSettings.emailSubjectCustom3; if (t15 == null) t15 = groupSettings == null ? _null : groupSettings.emailSubjectCustom3; if (t15 == null) t15 = companySettings == null ? _null : companySettings.emailSubjectCustom3; t16 = t1 ? _null : clientSettings.defaultPaymentTerms; if (t16 == null) t16 = groupSettings == null ? _null : groupSettings.defaultPaymentTerms; if (t16 == null) t16 = companySettings == null ? _null : companySettings.defaultPaymentTerms; t17 = t1 ? _null : clientSettings.defaultValidUntil; if (t17 == null) t17 = groupSettings == null ? _null : groupSettings.defaultValidUntil; if (t17 == null) t17 = companySettings == null ? _null : companySettings.defaultValidUntil; t18 = t1 ? _null : clientSettings.defaultTaxRate1; if (t18 == null) t18 = groupSettings == null ? _null : groupSettings.defaultTaxRate1; if (t18 == null) t18 = companySettings == null ? _null : companySettings.defaultTaxRate1; t19 = t1 ? _null : clientSettings.defaultTaxName1; if (t19 == null) t19 = groupSettings == null ? _null : groupSettings.defaultTaxName1; if (t19 == null) t19 = companySettings == null ? _null : companySettings.defaultTaxName1; t20 = t1 ? _null : clientSettings.defaultTaxRate2; if (t20 == null) t20 = groupSettings == null ? _null : groupSettings.defaultTaxRate2; if (t20 == null) t20 = companySettings == null ? _null : companySettings.defaultTaxRate2; t21 = t1 ? _null : clientSettings.defaultTaxName2; if (t21 == null) t21 = groupSettings == null ? _null : groupSettings.defaultTaxName2; if (t21 == null) t21 = companySettings == null ? _null : companySettings.defaultTaxName2; t22 = t1 ? _null : clientSettings.defaultTaxRate3; if (t22 == null) t22 = groupSettings == null ? _null : groupSettings.defaultTaxRate3; if (t22 == null) t22 = companySettings == null ? _null : companySettings.defaultTaxRate3; t1 = t1 ? _null : clientSettings.defaultTaxName3; if (t1 == null) t1 = groupSettings == null ? _null : groupSettings.defaultTaxName3; if (t1 == null) t1 = companySettings == null ? _null : companySettings.defaultTaxName3; return A._$SettingsEntity$_(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, t11, t10, t2, t7, t6, t16, _null, t5, _null, _null, t3, t9, t8, _null, t19, t21, t1, t18, t20, t22, t17, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t13, t14, t15, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, _$SettingsEntity$_(address1, address2, allPagesFooter, allPagesHeader, autoArchiveInvoice, autoArchiveInvoiceCancelled, autoArchiveQuote, autoBill, autoBillDate, autoConvertQuote, autoEmailInvoice, bccEmail, besrId, city, clientManualPaymentNotification, clientNumberCounter, clientNumberPattern, clientOnlinePaymentNotification, clientPortalAllowOverPayment, clientPortalAllowUnderPayment, clientPortalCustomCss, clientPortalCustomFooter, clientPortalCustomHeader, clientPortalCustomJs, clientPortalPrivacy, clientPortalTasks, clientPortalTerms, clientPortalUnderPaymentMinimum, companyGatewayIds, companyLogo, counterNumberApplied, counterPadding, countryId, creditNumberCounter, creditNumberPattern, currencyId, customMessageDashboard, customMessagePaidInvoice, customMessageUnapprovedQuote, customMessageUnpaidInvoice, customValue1, customValue2, customValue3, customValue4, dateFormatId, defaultCreditDesignId, defaultCreditFooter, defaultCreditTerms, defaultInvoiceDesignId, defaultInvoiceFooter, defaultInvoiceTerms, defaultPaymentTerms, defaultPaymentTypeId, defaultPurchaseOrderDesignId, defaultPurchaseOrderFooter, defaultPurchaseOrderTerms, defaultQuoteDesignId, defaultQuoteFooter, defaultQuoteTerms, defaultTaskRate, defaultTaxName1, defaultTaxName2, defaultTaxName3, defaultTaxRate1, defaultTaxRate2, defaultTaxRate3, defaultValidUntil, documentEmailAttachment, email, emailBodyCredit, emailBodyCustom1, emailBodyCustom2, emailBodyCustom3, emailBodyInvoice, emailBodyPayment, emailBodyPaymentPartial, emailBodyPurchaseOrder, emailBodyQuote, emailBodyReminder1, emailBodyReminder2, emailBodyReminder3, emailBodyReminderEndless, emailBodyStatement, emailFromName, emailSendingMethod, emailSignature, emailStyle, emailStyleCustom, emailSubjectCredit, emailSubjectCustom1, emailSubjectCustom2, emailSubjectCustom3, emailSubjectInvoice, emailSubjectPayment, emailSubjectPaymentPartial, emailSubjectPurchaseOrder, emailSubjectQuote, emailSubjectReminder1, emailSubjectReminder2, emailSubjectReminder3, emailSubjectReminderEndless, emailSubjectStatement, embedDocuments, enableClientPortalUploads, enableEmailMarkup, enableInclusiveTaxes, enableMilitaryTime, enablePortal, enablePortalDashboard, enablePortalPassword, enablePortalTasks, enableReminder1, enableReminder2, enableReminder3, enableReminderEndless, enableVendorPortalUploads, endlessReminderFrequencyId, entitySendTime, expenseNumberCounter, expenseNumberPattern, fontSize, gmailSendingUserId, hideEmptyColumnsOnPdf, hidePaidToDate, idNumber, invoiceNumberCounter, invoiceNumberPattern, languageId, lateFeeAmount1, lateFeeAmount2, lateFeeAmount3, lateFeeAmountEndless, lateFeePercent1, lateFeePercent2, lateFeePercent3, lateFeePercentEndless, lockInvoices, $name, numDaysReminder1, numDaysReminder2, numDaysReminder3, pageLayout, pageNumbering, pageNumberingAlignment, pageSize, paymentNumberCounter, paymentNumberPattern, pdfEmailAttachment, pdfVariables, phone, postalCode, primaryColor, primaryFont, projectNumberCounter, projectNumberPattern, purchaseOrderNumberCounter, purchaseOrderNumberPattern, qrIban, quoteNumberCounter, quoteNumberPattern, recurringExpenseNumberCounter, recurringExpenseNumberPattern, recurringInvoiceNumberCounter, recurringInvoiceNumberPattern, recurringNumberPrefix, replyToEmail, replyToName, requireInvoiceSignature, requirePurchaseOrderSignature, requireQuoteSignature, resetCounterDate, resetCounterFrequencyId, scheduleReminder1, scheduleReminder2, scheduleReminder3, secondaryColor, secondaryFont, sendReminders, sharedInvoiceCreditCounter, sharedInvoiceQuoteCounter, showAcceptInvoiceTerms, showAcceptQuoteTerms, showCurrencyCode, signatureOnPdf, state, taskNumberCounter, taskNumberPattern, ticketNumberCounter, ticketNumberPattern, timezoneId, translations, ublEmailAttachment, useCreditsPayment, vatNumber, vendorNumberCounter, vendorNumberPattern, website) { return new A._$SettingsEntity(timezoneId, dateFormatId, enableMilitaryTime, languageId, showCurrencyCode, currencyId, customValue1, customValue2, customValue3, customValue4, defaultPaymentTerms, defaultValidUntil, companyGatewayIds, defaultTaskRate, sendReminders, enablePortal, enablePortalDashboard, enablePortalTasks, enableClientPortalUploads, enableVendorPortalUploads, emailStyle, replyToEmail, replyToName, emailFromName, bccEmail, pdfEmailAttachment, ublEmailAttachment, documentEmailAttachment, emailStyleCustom, customMessageDashboard, customMessageUnpaidInvoice, customMessagePaidInvoice, customMessageUnapprovedQuote, autoArchiveInvoice, autoArchiveInvoiceCancelled, autoArchiveQuote, autoEmailInvoice, autoConvertQuote, enableInclusiveTaxes, translations, taskNumberPattern, taskNumberCounter, expenseNumberPattern, expenseNumberCounter, recurringExpenseNumberPattern, recurringExpenseNumberCounter, vendorNumberPattern, vendorNumberCounter, ticketNumberPattern, ticketNumberCounter, paymentNumberPattern, paymentNumberCounter, projectNumberPattern, projectNumberCounter, invoiceNumberPattern, invoiceNumberCounter, recurringInvoiceNumberPattern, recurringInvoiceNumberCounter, quoteNumberPattern, quoteNumberCounter, clientNumberPattern, clientNumberCounter, creditNumberPattern, creditNumberCounter, recurringNumberPrefix, resetCounterFrequencyId, resetCounterDate, counterPadding, sharedInvoiceQuoteCounter, sharedInvoiceCreditCounter, defaultInvoiceTerms, defaultQuoteTerms, defaultQuoteFooter, defaultCreditTerms, defaultCreditFooter, defaultInvoiceDesignId, defaultQuoteDesignId, defaultCreditDesignId, defaultInvoiceFooter, defaultTaxName1, defaultTaxRate1, defaultTaxName2, defaultTaxRate2, defaultTaxName3, defaultTaxRate3, defaultPaymentTypeId, pdfVariables, emailSignature, emailSubjectInvoice, emailSubjectQuote, emailSubjectCredit, emailSubjectPayment, emailSubjectPaymentPartial, emailBodyInvoice, emailBodyQuote, emailBodyCredit, emailBodyPayment, emailBodyPaymentPartial, emailSubjectReminder1, emailSubjectReminder2, emailSubjectReminder3, emailBodyReminder1, emailBodyReminder2, emailBodyReminder3, emailSubjectCustom1, emailBodyCustom1, emailSubjectCustom2, emailBodyCustom2, emailSubjectCustom3, emailBodyCustom3, emailSubjectStatement, emailBodyStatement, emailSubjectPurchaseOrder, emailBodyPurchaseOrder, enablePortalPassword, signatureOnPdf, enableEmailMarkup, showAcceptInvoiceTerms, showAcceptQuoteTerms, requireInvoiceSignature, requireQuoteSignature, $name, companyLogo, website, address1, address2, city, state, postalCode, phone, email, countryId, vatNumber, idNumber, pageSize, pageLayout, fontSize, primaryColor, secondaryColor, primaryFont, secondaryFont, hidePaidToDate, embedDocuments, allPagesHeader, allPagesFooter, enableReminder1, enableReminder2, enableReminder3, enableReminderEndless, numDaysReminder1, numDaysReminder2, numDaysReminder3, scheduleReminder1, scheduleReminder2, scheduleReminder3, endlessReminderFrequencyId, lateFeeAmount1, lateFeeAmount2, lateFeeAmount3, lateFeeAmountEndless, lateFeePercent1, lateFeePercent2, lateFeePercent3, lateFeePercentEndless, emailSubjectReminderEndless, emailBodyReminderEndless, clientOnlinePaymentNotification, clientManualPaymentNotification, counterNumberApplied, emailSendingMethod, gmailSendingUserId, clientPortalTerms, clientPortalPrivacy, lockInvoices, autoBill, clientPortalAllowUnderPayment, clientPortalAllowOverPayment, autoBillDate, clientPortalUnderPaymentMinimum, useCreditsPayment, clientPortalCustomHeader, clientPortalCustomCss, clientPortalCustomFooter, clientPortalCustomJs, hideEmptyColumnsOnPdf, entitySendTime, clientPortalTasks, pageNumbering, pageNumberingAlignment, requirePurchaseOrderSignature, defaultPurchaseOrderTerms, defaultPurchaseOrderDesignId, defaultPurchaseOrderFooter, purchaseOrderNumberPattern, purchaseOrderNumberCounter, qrIban, besrId); }, SettingsEntity: function SettingsEntity() { }, SettingsEntity_setFieldsForSection_closure: function SettingsEntity_setFieldsForSection_closure(t0, t1) { this.section = t0; this.fields = t1; }, SettingsEntity_setFieldsForSection_closure0: function SettingsEntity_setFieldsForSection_closure0(t0, t1) { this.section = t0; this.fields = t1; }, _$SettingsEntitySerializer: function _$SettingsEntitySerializer() { }, _$SettingsEntity: function _$SettingsEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196) { var _ = this; _.timezoneId = t0; _.dateFormatId = t1; _.enableMilitaryTime = t2; _.languageId = t3; _.showCurrencyCode = t4; _.currencyId = t5; _.customValue1 = t6; _.customValue2 = t7; _.customValue3 = t8; _.customValue4 = t9; _.defaultPaymentTerms = t10; _.defaultValidUntil = t11; _.companyGatewayIds = t12; _.defaultTaskRate = t13; _.sendReminders = t14; _.enablePortal = t15; _.enablePortalDashboard = t16; _.enablePortalTasks = t17; _.enableClientPortalUploads = t18; _.enableVendorPortalUploads = t19; _.emailStyle = t20; _.replyToEmail = t21; _.replyToName = t22; _.emailFromName = t23; _.bccEmail = t24; _.pdfEmailAttachment = t25; _.ublEmailAttachment = t26; _.documentEmailAttachment = t27; _.emailStyleCustom = t28; _.customMessageDashboard = t29; _.customMessageUnpaidInvoice = t30; _.customMessagePaidInvoice = t31; _.customMessageUnapprovedQuote = t32; _.autoArchiveInvoice = t33; _.autoArchiveInvoiceCancelled = t34; _.autoArchiveQuote = t35; _.autoEmailInvoice = t36; _.autoConvertQuote = t37; _.enableInclusiveTaxes = t38; _.translations = t39; _.taskNumberPattern = t40; _.taskNumberCounter = t41; _.expenseNumberPattern = t42; _.expenseNumberCounter = t43; _.recurringExpenseNumberPattern = t44; _.recurringExpenseNumberCounter = t45; _.vendorNumberPattern = t46; _.vendorNumberCounter = t47; _.ticketNumberPattern = t48; _.ticketNumberCounter = t49; _.paymentNumberPattern = t50; _.paymentNumberCounter = t51; _.projectNumberPattern = t52; _.projectNumberCounter = t53; _.invoiceNumberPattern = t54; _.invoiceNumberCounter = t55; _.recurringInvoiceNumberPattern = t56; _.recurringInvoiceNumberCounter = t57; _.quoteNumberPattern = t58; _.quoteNumberCounter = t59; _.clientNumberPattern = t60; _.clientNumberCounter = t61; _.creditNumberPattern = t62; _.creditNumberCounter = t63; _.recurringNumberPrefix = t64; _.resetCounterFrequencyId = t65; _.resetCounterDate = t66; _.counterPadding = t67; _.sharedInvoiceQuoteCounter = t68; _.sharedInvoiceCreditCounter = t69; _.defaultInvoiceTerms = t70; _.defaultQuoteTerms = t71; _.defaultQuoteFooter = t72; _.defaultCreditTerms = t73; _.defaultCreditFooter = t74; _.defaultInvoiceDesignId = t75; _.defaultQuoteDesignId = t76; _.defaultCreditDesignId = t77; _.defaultInvoiceFooter = t78; _.defaultTaxName1 = t79; _.defaultTaxRate1 = t80; _.defaultTaxName2 = t81; _.defaultTaxRate2 = t82; _.defaultTaxName3 = t83; _.defaultTaxRate3 = t84; _.defaultPaymentTypeId = t85; _.pdfVariables = t86; _.emailSignature = t87; _.emailSubjectInvoice = t88; _.emailSubjectQuote = t89; _.emailSubjectCredit = t90; _.emailSubjectPayment = t91; _.emailSubjectPaymentPartial = t92; _.emailBodyInvoice = t93; _.emailBodyQuote = t94; _.emailBodyCredit = t95; _.emailBodyPayment = t96; _.emailBodyPaymentPartial = t97; _.emailSubjectReminder1 = t98; _.emailSubjectReminder2 = t99; _.emailSubjectReminder3 = t100; _.emailBodyReminder1 = t101; _.emailBodyReminder2 = t102; _.emailBodyReminder3 = t103; _.emailSubjectCustom1 = t104; _.emailBodyCustom1 = t105; _.emailSubjectCustom2 = t106; _.emailBodyCustom2 = t107; _.emailSubjectCustom3 = t108; _.emailBodyCustom3 = t109; _.emailSubjectStatement = t110; _.emailBodyStatement = t111; _.emailSubjectPurchaseOrder = t112; _.emailBodyPurchaseOrder = t113; _.enablePortalPassword = t114; _.signatureOnPdf = t115; _.enableEmailMarkup = t116; _.showAcceptInvoiceTerms = t117; _.showAcceptQuoteTerms = t118; _.requireInvoiceSignature = t119; _.requireQuoteSignature = t120; _.name = t121; _.companyLogo = t122; _.website = t123; _.address1 = t124; _.address2 = t125; _.city = t126; _.state = t127; _.postalCode = t128; _.phone = t129; _.email = t130; _.countryId = t131; _.vatNumber = t132; _.idNumber = t133; _.pageSize = t134; _.pageLayout = t135; _.fontSize = t136; _.primaryColor = t137; _.secondaryColor = t138; _.primaryFont = t139; _.secondaryFont = t140; _.hidePaidToDate = t141; _.embedDocuments = t142; _.allPagesHeader = t143; _.allPagesFooter = t144; _.enableReminder1 = t145; _.enableReminder2 = t146; _.enableReminder3 = t147; _.enableReminderEndless = t148; _.numDaysReminder1 = t149; _.numDaysReminder2 = t150; _.numDaysReminder3 = t151; _.scheduleReminder1 = t152; _.scheduleReminder2 = t153; _.scheduleReminder3 = t154; _.endlessReminderFrequencyId = t155; _.lateFeeAmount1 = t156; _.lateFeeAmount2 = t157; _.lateFeeAmount3 = t158; _.lateFeeAmountEndless = t159; _.lateFeePercent1 = t160; _.lateFeePercent2 = t161; _.lateFeePercent3 = t162; _.lateFeePercentEndless = t163; _.emailSubjectReminderEndless = t164; _.emailBodyReminderEndless = t165; _.clientOnlinePaymentNotification = t166; _.clientManualPaymentNotification = t167; _.counterNumberApplied = t168; _.emailSendingMethod = t169; _.gmailSendingUserId = t170; _.clientPortalTerms = t171; _.clientPortalPrivacy = t172; _.lockInvoices = t173; _.autoBill = t174; _.clientPortalAllowUnderPayment = t175; _.clientPortalAllowOverPayment = t176; _.autoBillDate = t177; _.clientPortalUnderPaymentMinimum = t178; _.useCreditsPayment = t179; _.clientPortalCustomHeader = t180; _.clientPortalCustomCss = t181; _.clientPortalCustomFooter = t182; _.clientPortalCustomJs = t183; _.hideEmptyColumnsOnPdf = t184; _.entitySendTime = t185; _.clientPortalTasks = t186; _.pageNumbering = t187; _.pageNumberingAlignment = t188; _.requirePurchaseOrderSignature = t189; _.defaultPurchaseOrderTerms = t190; _.defaultPurchaseOrderDesignId = t191; _.defaultPurchaseOrderFooter = t192; _.purchaseOrderNumberPattern = t193; _.purchaseOrderNumberCounter = t194; _.qrIban = t195; _.besrId = t196; _._settings_model$__hashCode = null; }, SettingsEntityBuilder: function SettingsEntityBuilder() { var _ = this; _._emailStyleCustom = _._documentEmailAttachment = _._ublEmailAttachment = _._pdfEmailAttachment = _._bccEmail = _._emailFromName = _._replyToName = _._replyToEmail = _._emailStyle = _._enableVendorPortalUploads = _._enableClientPortalUploads = _._enablePortalTasks = _._enablePortalDashboard = _._enablePortal = _._sendReminders = _._defaultTaskRate = _._companyGatewayIds = _._defaultValidUntil = _._defaultPaymentTerms = _._customValue4 = _._customValue3 = _._customValue2 = _._customValue1 = _._currencyId = _._showCurrencyCode = _._languageId = _._enableMilitaryTime = _._dateFormatId = _._timezoneId = _._settings_model$_$v = null; _._quoteNumberPattern = _._recurringInvoiceNumberCounter = _._recurringInvoiceNumberPattern = _._invoiceNumberCounter = _._invoiceNumberPattern = _._projectNumberCounter = _._projectNumberPattern = _._paymentNumberCounter = _._paymentNumberPattern = _._ticketNumberCounter = _._ticketNumberPattern = _._vendorNumberCounter = _._vendorNumberPattern = _._recurringExpenseNumberCounter = _._recurringExpenseNumberPattern = _._expenseNumberCounter = _._expenseNumberPattern = _._taskNumberCounter = _._taskNumberPattern = _._translations = _._enableInclusiveTaxes = _._autoConvertQuote = _._autoEmailInvoice = _._autoArchiveQuote = _._autoArchiveInvoiceCancelled = _._autoArchiveInvoice = _._customMessageUnapprovedQuote = _._customMessagePaidInvoice = _._customMessageUnpaidInvoice = _._customMessageDashboard = null; _._emailSubjectInvoice = _._emailSignature = _._pdfVariables = _._defaultPaymentTypeId = _._defaultTaxRate3 = _._defaultTaxName3 = _._defaultTaxRate2 = _._defaultTaxName2 = _._defaultTaxRate1 = _._defaultTaxName1 = _._defaultInvoiceFooter = _._defaultCreditDesignId = _._defaultQuoteDesignId = _._defaultInvoiceDesignId = _._defaultCreditFooter = _._defaultCreditTerms = _._defaultQuoteFooter = _._defaultQuoteTerms = _._defaultInvoiceTerms = _._sharedInvoiceCreditCounter = _._sharedInvoiceQuoteCounter = _._counterPadding = _._resetCounterDate = _._resetCounterFrequencyId = _._recurringNumberPrefix = _._creditNumberCounter = _._creditNumberPattern = _._clientNumberCounter = _._clientNumberPattern = _._quoteNumberCounter = null; _._showAcceptQuoteTerms = _._showAcceptInvoiceTerms = _._enableEmailMarkup = _._signatureOnPdf = _._enablePortalPassword = _._emailBodyPurchaseOrder = _._emailSubjectPurchaseOrder = _._emailBodyStatement = _._emailSubjectStatement = _._emailBodyCustom3 = _._emailSubjectCustom3 = _._emailBodyCustom2 = _._emailSubjectCustom2 = _._emailBodyCustom1 = _._emailSubjectCustom1 = _._emailBodyReminder3 = _._emailBodyReminder2 = _._emailBodyReminder1 = _._emailSubjectReminder3 = _._emailSubjectReminder2 = _._emailSubjectReminder1 = _._emailBodyPaymentPartial = _._emailBodyPayment = _._emailBodyCredit = _._emailBodyQuote = _._emailBodyInvoice = _._emailSubjectPaymentPartial = _._emailSubjectPayment = _._emailSubjectCredit = _._emailSubjectQuote = null; _._enableReminderEndless = _._enableReminder3 = _._enableReminder2 = _._enableReminder1 = _._allPagesFooter = _._allPagesHeader = _._embedDocuments = _._hidePaidToDate = _._secondaryFont = _._primaryFont = _._secondaryColor = _._primaryColor = _._fontSize = _._pageLayout = _._pageSize = _._idNumber = _._vatNumber = _._countryId = _._email = _._phone = _._postalCode = _._settings_model$_state = _._city = _._address2 = _._address1 = _._website = _._companyLogo = _._settings_model$_name = _._requireQuoteSignature = _._requireInvoiceSignature = null; _._clientPortalUnderPaymentMinimum = _._autoBillDate = _._clientPortalAllowOverPayment = _._clientPortalAllowUnderPayment = _._autoBill = _._lockInvoices = _._clientPortalPrivacy = _._clientPortalTerms = _._gmailSendingUserId = _._emailSendingMethod = _._counterNumberApplied = _._clientManualPaymentNotification = _._clientOnlinePaymentNotification = _._emailBodyReminderEndless = _._emailSubjectReminderEndless = _._lateFeePercentEndless = _._lateFeePercent3 = _._lateFeePercent2 = _._lateFeePercent1 = _._lateFeeAmountEndless = _._lateFeeAmount3 = _._lateFeeAmount2 = _._lateFeeAmount1 = _._endlessReminderFrequencyId = _._scheduleReminder3 = _._scheduleReminder2 = _._scheduleReminder1 = _._numDaysReminder3 = _._numDaysReminder2 = _._numDaysReminder1 = null; _._besrId = _._qrIban = _._purchaseOrderNumberCounter = _._purchaseOrderNumberPattern = _._defaultPurchaseOrderFooter = _._defaultPurchaseOrderDesignId = _._defaultPurchaseOrderTerms = _._requirePurchaseOrderSignature = _._pageNumberingAlignment = _._pageNumbering = _._clientPortalTasks = _._entitySendTime = _._hideEmptyColumnsOnPdf = _._clientPortalCustomJs = _._clientPortalCustomFooter = _._clientPortalCustomCss = _._clientPortalCustomHeader = _._useCreditsPayment = null; }, ColorTheme$(colorDanger, colorInfo, colorPrimary, colorSuccess, colorWarning) { return new A.ColorTheme(colorPrimary, colorInfo, colorSuccess, colorWarning, colorDanger); }, ColorTheme: function ColorTheme(t0, t1, t2, t3, t4) { var _ = this; _.colorPrimary = t0; _.colorInfo = t1; _.colorSuccess = t2; _.colorWarning = t3; _.colorDanger = t4; }, CountryEntity_CountryEntity() { return A._$CountryEntity$_("", "", "", "", "", false, false, ""); }, _$CountryEntity$_(decimalSeparator, id, iso2, iso3, $name, swapCurrencySymbol, swapPostalCode, thousandSeparator) { return new A._$CountryEntity($name, swapPostalCode, swapCurrencySymbol, thousandSeparator, decimalSeparator, iso2, iso3, id); }, CountryListResponse: function CountryListResponse() { }, CountryItemResponse: function CountryItemResponse() { }, CountryEntity: function CountryEntity() { }, _$CountryListResponseSerializer: function _$CountryListResponseSerializer() { }, _$CountryItemResponseSerializer: function _$CountryItemResponseSerializer() { }, _$CountryEntitySerializer: function _$CountryEntitySerializer() { }, _$CountryListResponse: function _$CountryListResponse(t0) { this.data = t0; this._country_model$__hashCode = null; }, CountryListResponseBuilder: function CountryListResponseBuilder() { this._country_model$_data = this._country_model$_$v = null; }, _$CountryItemResponse: function _$CountryItemResponse(t0) { this.data = t0; this._country_model$__hashCode = null; }, CountryItemResponseBuilder: function CountryItemResponseBuilder() { this._country_model$_data = this._country_model$_$v = null; }, _$CountryEntity: function _$CountryEntity(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.name = t0; _.swapPostalCode = t1; _.swapCurrencySymbol = t2; _.thousandSeparator = t3; _.decimalSeparator = t4; _.iso2 = t5; _.iso3 = t6; _.id = t7; _._country_model$__hashCode = null; }, CountryEntityBuilder: function CountryEntityBuilder() { var _ = this; _._country_model$_id = _._iso3 = _._iso2 = _._country_model$_decimalSeparator = _._country_model$_thousandSeparator = _._country_model$_swapCurrencySymbol = _._swapPostalCode = _._country_model$_name = _._country_model$_$v = null; }, _CountryEntity_Object_SelectableEntity: function _CountryEntity_Object_SelectableEntity() { }, CurrencyEntity_CurrencyEntity() { return A._$CurrencyEntity$_("", "", 0, "", "", 2, false, "", ""); }, _$CurrencyEntity$_(code, decimalSeparator, exchangeRate, id, $name, precision, swapCurrencySymbol, symbol, thousandSeparator) { return new A._$CurrencyEntity($name, symbol, precision, thousandSeparator, decimalSeparator, code, swapCurrencySymbol, exchangeRate, id); }, CurrencyListResponse: function CurrencyListResponse() { }, CurrencyItemResponse: function CurrencyItemResponse() { }, CurrencyEntity: function CurrencyEntity() { }, _$CurrencyListResponseSerializer: function _$CurrencyListResponseSerializer() { }, _$CurrencyItemResponseSerializer: function _$CurrencyItemResponseSerializer() { }, _$CurrencyEntitySerializer: function _$CurrencyEntitySerializer() { }, _$CurrencyListResponse: function _$CurrencyListResponse(t0) { this.data = t0; this._currency_model$__hashCode = null; }, CurrencyListResponseBuilder: function CurrencyListResponseBuilder() { this._currency_model$_data = this._currency_model$_$v = null; }, _$CurrencyItemResponse: function _$CurrencyItemResponse(t0) { this.data = t0; this._currency_model$__hashCode = null; }, CurrencyItemResponseBuilder: function CurrencyItemResponseBuilder() { this._currency_model$_data = this._currency_model$_$v = null; }, _$CurrencyEntity: function _$CurrencyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.name = t0; _.symbol = t1; _.precision = t2; _.thousandSeparator = t3; _.decimalSeparator = t4; _.code = t5; _.swapCurrencySymbol = t6; _.exchangeRate = t7; _.id = t8; _._currency_model$__hashCode = null; }, CurrencyEntityBuilder: function CurrencyEntityBuilder() { var _ = this; _._currency_model$_id = _._currency_model$_exchangeRate = _._swapCurrencySymbol = _._code = _._decimalSeparator = _._thousandSeparator = _._precision = _._symbol = _._currency_model$_name = _._currency_model$_$v = null; }, _CurrencyEntity_Object_SelectableEntity: function _CurrencyEntity_Object_SelectableEntity() { }, DateFormatListResponse: function DateFormatListResponse() { }, DateFormatItemResponse: function DateFormatItemResponse() { }, DateFormatEntity: function DateFormatEntity() { }, _$DateFormatListResponseSerializer: function _$DateFormatListResponseSerializer() { }, _$DateFormatItemResponseSerializer: function _$DateFormatItemResponseSerializer() { }, _$DateFormatEntitySerializer: function _$DateFormatEntitySerializer() { }, _$DateFormatListResponse: function _$DateFormatListResponse(t0) { this.data = t0; this._date_format_model$__hashCode = null; }, DateFormatListResponseBuilder: function DateFormatListResponseBuilder() { this._date_format_model$_data = this._date_format_model$_$v = null; }, _$DateFormatItemResponse: function _$DateFormatItemResponse(t0) { this.data = t0; this._date_format_model$__hashCode = null; }, DateFormatItemResponseBuilder: function DateFormatItemResponseBuilder() { this._date_format_model$_data = this._date_format_model$_$v = null; }, _$DateFormatEntity: function _$DateFormatEntity(t0, t1) { this.format = t0; this.id = t1; this._date_format_model$__hashCode = null; }, DateFormatEntityBuilder: function DateFormatEntityBuilder() { this._date_format_model$_id = this._date_format_model$_format = this._date_format_model$_$v = null; }, _DateFormatEntity_Object_SelectableEntity: function _DateFormatEntity_Object_SelectableEntity() { }, DatetimeFormatListResponse: function DatetimeFormatListResponse() { }, DatetimeFormatItemResponse: function DatetimeFormatItemResponse() { }, DatetimeFormatEntity: function DatetimeFormatEntity() { }, _$DatetimeFormatListResponseSerializer: function _$DatetimeFormatListResponseSerializer() { }, _$DatetimeFormatItemResponseSerializer: function _$DatetimeFormatItemResponseSerializer() { }, _$DatetimeFormatEntitySerializer: function _$DatetimeFormatEntitySerializer() { }, _$DatetimeFormatListResponse: function _$DatetimeFormatListResponse(t0) { this.data = t0; this._datetime_format_model$__hashCode = null; }, DatetimeFormatListResponseBuilder: function DatetimeFormatListResponseBuilder() { this._datetime_format_model$_data = this._datetime_format_model$_$v = null; }, _$DatetimeFormatItemResponse: function _$DatetimeFormatItemResponse(t0) { this.data = t0; this._datetime_format_model$__hashCode = null; }, DatetimeFormatItemResponseBuilder: function DatetimeFormatItemResponseBuilder() { this._datetime_format_model$_data = this._datetime_format_model$_$v = null; }, _$DatetimeFormatEntity: function _$DatetimeFormatEntity(t0, t1) { this.id = t0; this.format = t1; this._datetime_format_model$__hashCode = null; }, DatetimeFormatEntityBuilder: function DatetimeFormatEntityBuilder() { this._datetime_format_model$_format = this._datetime_format_model$_id = this._datetime_format_model$_$v = null; }, FontEntity: function FontEntity() { }, _$FontEntity: function _$FontEntity(t0, t1) { this.name = t0; this.id = t1; this._font_model$__hashCode = null; }, _FontEntity_Object_SelectableEntity: function _FontEntity_Object_SelectableEntity() { }, IndustryListResponse: function IndustryListResponse() { }, IndustryItemResponse: function IndustryItemResponse() { }, IndustryEntity: function IndustryEntity() { }, _$IndustryListResponseSerializer: function _$IndustryListResponseSerializer() { }, _$IndustryItemResponseSerializer: function _$IndustryItemResponseSerializer() { }, _$IndustryEntitySerializer: function _$IndustryEntitySerializer() { }, _$IndustryListResponse: function _$IndustryListResponse(t0) { this.data = t0; this._industry_model$__hashCode = null; }, IndustryListResponseBuilder: function IndustryListResponseBuilder() { this._industry_model$_data = this._industry_model$_$v = null; }, _$IndustryItemResponse: function _$IndustryItemResponse(t0) { this.data = t0; this._industry_model$__hashCode = null; }, IndustryItemResponseBuilder: function IndustryItemResponseBuilder() { this._industry_model$_data = this._industry_model$_$v = null; }, _$IndustryEntity: function _$IndustryEntity(t0, t1) { this.name = t0; this.id = t1; this._industry_model$__hashCode = null; }, IndustryEntityBuilder: function IndustryEntityBuilder() { this._industry_model$_id = this._industry_model$_name = this._industry_model$_$v = null; }, _IndustryEntity_Object_SelectableEntity: function _IndustryEntity_Object_SelectableEntity() { }, _$InvoiceStatusEntity$_(id, $name) { return new A._$InvoiceStatusEntity(id, $name); }, InvoiceStatusEntity: function InvoiceStatusEntity() { }, _$InvoiceStatusEntitySerializer: function _$InvoiceStatusEntitySerializer() { }, _$InvoiceStatusEntity: function _$InvoiceStatusEntity(t0, t1) { this.id = t0; this.name = t1; this._invoice_status_model$__hashCode = null; }, InvoiceStatusEntityBuilder: function InvoiceStatusEntityBuilder() { this._invoice_status_model$_name = this._invoice_status_model$_id = this._invoice_status_model$_$v = null; }, _InvoiceStatusEntity_Object_EntityStatus: function _InvoiceStatusEntity_Object_EntityStatus() { }, _$LanguageEntity$_(id, locale, $name) { return new A._$LanguageEntity($name, locale, id); }, LanguageListResponse: function LanguageListResponse() { }, LanguageItemResponse: function LanguageItemResponse() { }, LanguageEntity: function LanguageEntity() { }, _$LanguageListResponseSerializer: function _$LanguageListResponseSerializer() { }, _$LanguageItemResponseSerializer: function _$LanguageItemResponseSerializer() { }, _$LanguageEntitySerializer: function _$LanguageEntitySerializer() { }, _$LanguageListResponse: function _$LanguageListResponse(t0) { this.data = t0; this._language_model$__hashCode = null; }, LanguageListResponseBuilder: function LanguageListResponseBuilder() { this._language_model$_data = this._language_model$_$v = null; }, _$LanguageItemResponse: function _$LanguageItemResponse(t0) { this.data = t0; this._language_model$__hashCode = null; }, LanguageItemResponseBuilder: function LanguageItemResponseBuilder() { this._language_model$_data = this._language_model$_$v = null; }, _$LanguageEntity: function _$LanguageEntity(t0, t1, t2) { var _ = this; _.name = t0; _.locale = t1; _.id = t2; _._language_model$__hashCode = null; }, LanguageEntityBuilder: function LanguageEntityBuilder() { var _ = this; _._language_model$_id = _._language_model$_locale = _._language_model$_name = _._language_model$_$v = null; }, _LanguageEntity_Object_SelectableEntity: function _LanguageEntity_Object_SelectableEntity() { }, _$PaymentTypeEntity$_(id, $name) { return new A._$PaymentTypeEntity($name, id); }, PaymentTypeListResponse: function PaymentTypeListResponse() { }, PaymentTypeItemResponse: function PaymentTypeItemResponse() { }, PaymentTypeEntity: function PaymentTypeEntity() { }, _$PaymentTypeListResponseSerializer: function _$PaymentTypeListResponseSerializer() { }, _$PaymentTypeItemResponseSerializer: function _$PaymentTypeItemResponseSerializer() { }, _$PaymentTypeEntitySerializer: function _$PaymentTypeEntitySerializer() { }, _$PaymentTypeListResponse: function _$PaymentTypeListResponse(t0) { this.data = t0; this._payment_type_model$__hashCode = null; }, PaymentTypeListResponseBuilder: function PaymentTypeListResponseBuilder() { this._payment_type_model$_data = this._payment_type_model$_$v = null; }, _$PaymentTypeItemResponse: function _$PaymentTypeItemResponse(t0) { this.data = t0; this._payment_type_model$__hashCode = null; }, PaymentTypeItemResponseBuilder: function PaymentTypeItemResponseBuilder() { this._payment_type_model$_data = this._payment_type_model$_$v = null; }, _$PaymentTypeEntity: function _$PaymentTypeEntity(t0, t1) { this.name = t0; this.id = t1; this._payment_type_model$__hashCode = null; }, PaymentTypeEntityBuilder: function PaymentTypeEntityBuilder() { this._payment_type_model$_id = this._payment_type_model$_name = this._payment_type_model$_$v = null; }, _PaymentTypeEntity_Object_SelectableEntity: function _PaymentTypeEntity_Object_SelectableEntity() { }, SizeListResponse: function SizeListResponse() { }, SizeItemResponse: function SizeItemResponse() { }, SizeEntity: function SizeEntity() { }, _$SizeListResponseSerializer: function _$SizeListResponseSerializer() { }, _$SizeItemResponseSerializer: function _$SizeItemResponseSerializer() { }, _$SizeEntitySerializer: function _$SizeEntitySerializer() { }, _$SizeListResponse: function _$SizeListResponse(t0) { this.data = t0; this._size_model$__hashCode = null; }, SizeListResponseBuilder: function SizeListResponseBuilder() { this._size_model$_data = this._size_model$_$v = null; }, _$SizeItemResponse: function _$SizeItemResponse(t0) { this.data = t0; this._size_model$__hashCode = null; }, SizeItemResponseBuilder: function SizeItemResponseBuilder() { this._size_model$_data = this._size_model$_$v = null; }, _$SizeEntity: function _$SizeEntity(t0, t1) { this.name = t0; this.id = t1; this._size_model$__hashCode = null; }, SizeEntityBuilder: function SizeEntityBuilder() { this._size_model$_id = this._size_model$_name = this._size_model$_$v = null; }, _SizeEntity_Object_SelectableEntity: function _SizeEntity_Object_SelectableEntity() { }, _$TemplateEntity$_(body, subject) { return new A._$TemplateEntity(subject, body); }, StaticDataItemResponse: function StaticDataItemResponse() { }, StaticDataEntity: function StaticDataEntity() { }, TemplateEntity: function TemplateEntity() { }, _$StaticDataItemResponseSerializer: function _$StaticDataItemResponseSerializer() { }, _$StaticDataEntitySerializer: function _$StaticDataEntitySerializer() { }, _$TemplateEntitySerializer: function _$TemplateEntitySerializer() { }, _$StaticDataItemResponse: function _$StaticDataItemResponse(t0) { this.data = t0; this._static_data_model$__hashCode = null; }, StaticDataItemResponseBuilder: function StaticDataItemResponseBuilder() { this._static_data_model$_data = this._static_data_model$_$v = null; }, _$StaticDataEntity: function _$StaticDataEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.currencies = t0; _.sizes = t1; _.industries = t2; _.timezones = t3; _.gateways = t4; _.dateFormats = t5; _.datetimeFormats = t6; _.languages = t7; _.paymentTypes = t8; _.countries = t9; _.invoiceStatus = t10; _.templates = t11; _._static_data_model$__hashCode = null; }, StaticDataEntityBuilder: function StaticDataEntityBuilder() { var _ = this; _._templates = _._invoiceStatus = _._countries = _._paymentTypes = _._languages = _._datetimeFormats = _._dateFormats = _._gateways = _._timezones = _._industries = _._sizes = _._currencies = _._static_data_model$_$v = null; }, _$TemplateEntity: function _$TemplateEntity(t0, t1) { this.subject = t0; this.body = t1; this._static_data_model$__hashCode = null; }, TemplateEntityBuilder: function TemplateEntityBuilder() { this._static_data_model$_body = this._subject = this._static_data_model$_$v = null; }, TimezoneListResponse: function TimezoneListResponse() { }, TimezoneItemResponse: function TimezoneItemResponse() { }, TimezoneEntity: function TimezoneEntity() { }, _$TimezoneListResponseSerializer: function _$TimezoneListResponseSerializer() { }, _$TimezoneItemResponseSerializer: function _$TimezoneItemResponseSerializer() { }, _$TimezoneEntitySerializer: function _$TimezoneEntitySerializer() { }, _$TimezoneListResponse: function _$TimezoneListResponse(t0) { this.data = t0; this._timezone_model$__hashCode = null; }, TimezoneListResponseBuilder: function TimezoneListResponseBuilder() { this._timezone_model$_data = this._timezone_model$_$v = null; }, _$TimezoneItemResponse: function _$TimezoneItemResponse(t0) { this.data = t0; this._timezone_model$__hashCode = null; }, TimezoneItemResponseBuilder: function TimezoneItemResponseBuilder() { this._timezone_model$_data = this._timezone_model$_$v = null; }, _$TimezoneEntity: function _$TimezoneEntity(t0, t1, t2) { var _ = this; _.name = t0; _.location = t1; _.id = t2; _._timezone_model$__hashCode = null; }, TimezoneEntityBuilder: function TimezoneEntityBuilder() { var _ = this; _._timezone_model$_id = _._location = _._timezone_model$_name = _._timezone_model$_$v = null; }, _TimezoneEntity_Object_SelectableEntity: function _TimezoneEntity_Object_SelectableEntity() { }, SubscriptionEntity_SubscriptionEntity(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = type$.legacy_String; return A._$SubscriptionEntity$_(false, false, false, 0, "", "", 0, "", "", "", t1, true, false, false, 0, "", false, 0, "", "", 0, "", "", 0, 0, false, 0, A._$WebhookConfigurationEntity$_("", A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2), "", "", "")); }, WebhookConfigurationEntity__initializeBuilder(builder) { var t1; builder.get$_subscription_model$_$this()._returnUrl = ""; builder.get$_subscription_model$_$this()._postPurchaseBody = ""; t1 = type$.legacy_String; builder.get$postPurchaseHeaders().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, t1)); builder.get$_subscription_model$_$this()._postPurchaseRestMethod = ""; builder.get$_subscription_model$_$this()._postPurchaseUrl = ""; return builder; }, _$SubscriptionEntity$_(allowCancellation, allowPlanChanges, allowQueryOverrides, archivedAt, assignedUserId, autoBill, createdAt, createdUserId, frequencyId, groupId, id, isAmountDiscount, isChanged, isDeleted, maxSeatsLimit, $name, perSeatEnabled, price, productIds, promoCode, promoDiscount, purchasePage, recurringProductIds, refundPeriod, trialDuration, trialEnabled, updatedAt, webhookConfiguration) { if (webhookConfiguration == null) A.throwExpression(A.BuiltValueNullFieldError$("SubscriptionEntity", "webhookConfiguration")); return new A._$SubscriptionEntity($name, groupId, productIds, recurringProductIds, frequencyId, autoBill, promoCode, promoDiscount, price, isAmountDiscount, allowCancellation, perSeatEnabled, maxSeatsLimit, trialEnabled, trialDuration, allowQueryOverrides, allowPlanChanges, refundPeriod, webhookConfiguration, purchasePage, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$WebhookConfigurationEntity$_(postPurchaseBody, postPurchaseHeaders, postPurchaseRestMethod, postPurchaseUrl, returnUrl) { if (postPurchaseHeaders == null) A.throwExpression(A.BuiltValueNullFieldError$("WebhookConfigurationEntity", "postPurchaseHeaders")); return new A._$WebhookConfigurationEntity(returnUrl, postPurchaseUrl, postPurchaseRestMethod, postPurchaseHeaders, postPurchaseBody); }, SubscriptionListResponse: function SubscriptionListResponse() { }, SubscriptionItemResponse: function SubscriptionItemResponse() { }, SubscriptionEntity: function SubscriptionEntity() { }, WebhookConfigurationEntity: function WebhookConfigurationEntity() { }, _$SubscriptionListResponseSerializer: function _$SubscriptionListResponseSerializer() { }, _$SubscriptionItemResponseSerializer: function _$SubscriptionItemResponseSerializer() { }, _$SubscriptionEntitySerializer: function _$SubscriptionEntitySerializer() { }, _$WebhookConfigurationEntitySerializer: function _$WebhookConfigurationEntitySerializer() { }, _$SubscriptionListResponse: function _$SubscriptionListResponse(t0) { this.data = t0; this._subscription_model$__hashCode = null; }, SubscriptionListResponseBuilder: function SubscriptionListResponseBuilder() { this._subscription_model$_data = this._subscription_model$_$v = null; }, _$SubscriptionItemResponse: function _$SubscriptionItemResponse(t0) { this.data = t0; this._subscription_model$__hashCode = null; }, SubscriptionItemResponseBuilder: function SubscriptionItemResponseBuilder() { this._subscription_model$_data = this._subscription_model$_$v = null; }, _$SubscriptionEntity: function _$SubscriptionEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.name = t0; _.groupId = t1; _.productIds = t2; _.recurringProductIds = t3; _.frequencyId = t4; _.autoBill = t5; _.promoCode = t6; _.promoDiscount = t7; _.price = t8; _.isAmountDiscount = t9; _.allowCancellation = t10; _.perSeatEnabled = t11; _.maxSeatsLimit = t12; _.trialEnabled = t13; _.trialDuration = t14; _.allowQueryOverrides = t15; _.allowPlanChanges = t16; _.refundPeriod = t17; _.webhookConfiguration = t18; _.purchasePage = t19; _.isChanged = t20; _.createdAt = t21; _.updatedAt = t22; _.archivedAt = t23; _.isDeleted = t24; _.createdUserId = t25; _.assignedUserId = t26; _.id = t27; _._subscription_model$__hashCode = null; }, SubscriptionEntityBuilder: function SubscriptionEntityBuilder() { var _ = this; _._subscription_model$_id = _._subscription_model$_assignedUserId = _._subscription_model$_createdUserId = _._subscription_model$_isDeleted = _._subscription_model$_archivedAt = _._subscription_model$_updatedAt = _._subscription_model$_createdAt = _._subscription_model$_isChanged = _._purchasePage = _._webhookConfiguration = _._refundPeriod = _._allowPlanChanges = _._allowQueryOverrides = _._trialDuration = _._trialEnabled = _._maxSeatsLimit = _._perSeatEnabled = _._allowCancellation = _._subscription_model$_isAmountDiscount = _._price = _._promoDiscount = _._promoCode = _._subscription_model$_autoBill = _._subscription_model$_frequencyId = _._recurringProductIds = _._productIds = _._subscription_model$_groupId = _._subscription_model$_name = _._subscription_model$_$v = null; }, _$WebhookConfigurationEntity: function _$WebhookConfigurationEntity(t0, t1, t2, t3, t4) { var _ = this; _.returnUrl = t0; _.postPurchaseUrl = t1; _.postPurchaseRestMethod = t2; _.postPurchaseHeaders = t3; _.postPurchaseBody = t4; _._subscription_model$__hashCode = null; }, WebhookConfigurationEntityBuilder: function WebhookConfigurationEntityBuilder() { var _ = this; _._postPurchaseBody = _._postPurchaseHeaders = _._postPurchaseRestMethod = _._postPurchaseUrl = _._returnUrl = _._subscription_model$_$v = null; }, _SubscriptionEntity_Object_BaseEntity: function _SubscriptionEntity_Object_BaseEntity() { }, SystemLogEntity: function SystemLogEntity() { }, _$SystemLogEntitySerializer: function _$SystemLogEntitySerializer() { }, _$SystemLogEntity: function _$SystemLogEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.id = t0; _.companyId = t1; _.userId = t2; _.clientId = t3; _.eventId = t4; _.categoryId = t5; _.typeId = t6; _.log = t7; _.createdAt = t8; _._system_log_model$__hashCode = null; }, SystemLogEntityBuilder: function SystemLogEntityBuilder() { var _ = this; _._system_log_model$_createdAt = _._log = _._system_log_model$_typeId = _._system_log_model$_categoryId = _._system_log_model$_eventId = _._system_log_model$_clientId = _._userId = _._companyId = _._system_log_model$_id = _._system_log_model$_$v = null; }, TaskTime_TaskTime(endDate, startDate) { return new A._$TaskTime(startDate == null ? A.DateTime$fromMillisecondsSinceEpoch(B.JSNumber_methods.floor$0(Date.now() / 1000) * 1000, true) : startDate, endDate); }, TaskEntity_TaskEntity(client, id, project, state, user) { var t2, t3, t4, t5, t6, t7, _null = null, t1 = state == null; if (t1) t2 = _null; else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany.company; t2 = t3; } t2 = t2 == null ? _null : t2.autoStartTasks; if (id == null) { t3 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t3; t3 = "" + t3; } else t3 = id; t4 = project == null; t5 = t4 ? _null : project.clientId; if (t5 == null) t5 = client == null ? _null : client.id; if (t5 == null) t5 = ""; t4 = t4 ? _null : project.id; if (t4 == null) t4 = ""; t2 = t2 === true ? "[[" + B.JSNumber_methods.floor$0(Date.now() / 1000) + ",0]]" : "[]"; t6 = user == null ? _null : user.id; if (t6 == null) t6 = ""; if (t1) t1 = _null; else { t1 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t7 = t1._list[t7].taskStatusState; t1 = t7; } t1 = t1 == null ? _null : t1.map; t1 = A.defaultTaskStatusId(t1 == null ? A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_TaskStatusEntity) : t1); return A._$TaskEntity$_(0, t6, t5, 0, "", "", "", "", "", "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), 0, t3, "", false, false, "", t4, 0, t1, _null, t2, 0); }, _$TaskEntity$_(archivedAt, assignedUserId, clientId, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, description, documents, duration, id, invoiceId, isChanged, isDeleted, number, projectId, rate, statusId, statusOrder, timeLog, updatedAt) { var _s10_ = "TaskEntity"; if (statusId == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "statusId")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "documents")); return new A._$TaskEntity(description, number, duration, invoiceId, clientId, rate, projectId, timeLog, customValue1, customValue2, customValue3, customValue4, statusId, statusOrder, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaskListResponse: function TaskListResponse() { }, TaskItemResponse: function TaskItemResponse() { }, TaskTime: function TaskTime() { }, TaskTime_stop_closure: function TaskTime_stop_closure() { }, TaskEntity: function TaskEntity() { }, TaskEntity_clone_closure: function TaskEntity_clone_closure() { }, TaskEntity_areTimesValid_closure: function TaskEntity_areTimesValid_closure(t0) { this._box_0 = t0; }, TaskEntity_getInvalidTimeIndices_closure: function TaskEntity_getInvalidTimeIndices_closure(t0, t1) { this._box_0 = t0; this.indices = t1; }, TaskEntity_isRunning_closure: function TaskEntity_isRunning_closure() { }, TaskEntity_getTaskTimes_closure: function TaskEntity_getTaskTimes_closure(t0) { this.details = t0; }, TaskEntity_getTaskTimes_closure0: function TaskEntity_getTaskTimes_closure0() { }, TaskEntity_addTaskTime_closure: function TaskEntity_addTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_updateTaskTime_closure: function TaskEntity_updateTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_deleteTaskTime_closure: function TaskEntity_deleteTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_calculateDuration_closure: function TaskEntity_calculateDuration_closure(t0) { this._box_0 = t0; }, _$TaskListResponseSerializer: function _$TaskListResponseSerializer() { }, _$TaskItemResponseSerializer: function _$TaskItemResponseSerializer() { }, _$TaskEntitySerializer: function _$TaskEntitySerializer() { }, _$TaskListResponse: function _$TaskListResponse(t0) { this.data = t0; this._task_model$__hashCode = null; }, TaskListResponseBuilder: function TaskListResponseBuilder() { this._task_model$_data = this._task_model$_$v = null; }, _$TaskItemResponse: function _$TaskItemResponse(t0) { this.data = t0; this._task_model$__hashCode = null; }, TaskItemResponseBuilder: function TaskItemResponseBuilder() { this._task_model$_data = this._task_model$_$v = null; }, _$TaskTime: function _$TaskTime(t0, t1) { this.startDate = t0; this.endDate = t1; this._task_model$__hashCode = null; }, TaskTimeBuilder: function TaskTimeBuilder() { this._endDate = this._startDate = this._task_model$_$v = null; }, _$TaskEntity: function _$TaskEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.description = t0; _.number = t1; _.duration = t2; _.invoiceId = t3; _.clientId = t4; _.rate = t5; _.projectId = t6; _.timeLog = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.statusId = t12; _.statusOrder = t13; _.documents = t14; _.isChanged = t15; _.createdAt = t16; _.updatedAt = t17; _.archivedAt = t18; _.isDeleted = t19; _.createdUserId = t20; _.assignedUserId = t21; _.id = t22; _._task_model$__hashCode = null; }, TaskEntityBuilder: function TaskEntityBuilder() { var _ = this; _._task_model$_id = _._task_model$_assignedUserId = _._task_model$_createdUserId = _._task_model$_isDeleted = _._task_model$_archivedAt = _._task_model$_updatedAt = _._task_model$_createdAt = _._task_model$_isChanged = _._task_model$_documents = _._statusOrder = _._task_model$_statusId = _._task_model$_customValue4 = _._task_model$_customValue3 = _._task_model$_customValue2 = _._task_model$_customValue1 = _._timeLog = _._task_model$_projectId = _._rate = _._task_model$_clientId = _._task_model$_invoiceId = _._task_model$_duration = _._task_model$_number = _._description = _._task_model$_$v = null; }, _TaskEntity_Object_BaseEntity: function _TaskEntity_Object_BaseEntity() { }, _TaskEntity_Object_BaseEntity_SelectableEntity: function _TaskEntity_Object_BaseEntity_SelectableEntity() { }, _TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, TaskStatusEntity_TaskStatusEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$TaskStatusEntity$_(0, "", "", 0, "", t1, false, false, "", null, 0); }, _$TaskStatusEntity$_(archivedAt, assignedUserId, color, createdAt, createdUserId, id, isChanged, isDeleted, $name, statusOrder, updatedAt) { return new A._$TaskStatusEntity($name, color, statusOrder, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaskStatusListResponse: function TaskStatusListResponse() { }, TaskStatusItemResponse: function TaskStatusItemResponse() { }, TaskStatusEntity: function TaskStatusEntity() { }, _$TaskStatusListResponseSerializer: function _$TaskStatusListResponseSerializer() { }, _$TaskStatusItemResponseSerializer: function _$TaskStatusItemResponseSerializer() { }, _$TaskStatusEntitySerializer: function _$TaskStatusEntitySerializer() { }, _$TaskStatusListResponse: function _$TaskStatusListResponse(t0) { this.data = t0; this._task_status_model$__hashCode = null; }, TaskStatusListResponseBuilder: function TaskStatusListResponseBuilder() { this._task_status_model$_data = this._task_status_model$_$v = null; }, _$TaskStatusItemResponse: function _$TaskStatusItemResponse(t0) { this.data = t0; this._task_status_model$__hashCode = null; }, TaskStatusItemResponseBuilder: function TaskStatusItemResponseBuilder() { this._task_status_model$_data = this._task_status_model$_$v = null; }, _$TaskStatusEntity: function _$TaskStatusEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.name = t0; _.color = t1; _.statusOrder = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._task_status_model$__hashCode = null; }, TaskStatusEntityBuilder: function TaskStatusEntityBuilder() { var _ = this; _._task_status_model$_id = _._task_status_model$_assignedUserId = _._task_status_model$_createdUserId = _._task_status_model$_isDeleted = _._task_status_model$_archivedAt = _._task_status_model$_updatedAt = _._task_status_model$_createdAt = _._task_status_model$_isChanged = _._task_status_model$_statusOrder = _._task_status_model$_color = _._task_status_model$_name = _._task_status_model$_$v = null; }, _TaskStatusEntity_Object_BaseEntity: function _TaskStatusEntity_Object_BaseEntity() { }, _TaskStatusEntity_Object_BaseEntity_SelectableEntity: function _TaskStatusEntity_Object_BaseEntity_SelectableEntity() { }, _TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus: function _TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus() { }, TaxRateEntity_TaxRateEntity(id, $name, rate, state) { var t2, t3, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t2 = $name == null ? "" : $name; t3 = rate == null ? 0 : rate; return A._$TaxRateEntity$_(0, "", 0, "", "" + t1, false, false, t2, t3, 0); }, _$TaxRateEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, $name, rate, updatedAt) { return new A._$TaxRateEntity($name, rate, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaxRateListResponse: function TaxRateListResponse() { }, TaxRateItemResponse: function TaxRateItemResponse() { }, TaxRateEntity: function TaxRateEntity() { }, _$TaxRateListResponseSerializer: function _$TaxRateListResponseSerializer() { }, _$TaxRateItemResponseSerializer: function _$TaxRateItemResponseSerializer() { }, _$TaxRateEntitySerializer: function _$TaxRateEntitySerializer() { }, _$TaxRateListResponse: function _$TaxRateListResponse(t0) { this.data = t0; this._tax_rate_model$__hashCode = null; }, TaxRateListResponseBuilder: function TaxRateListResponseBuilder() { this._tax_rate_model$_data = this._tax_rate_model$_$v = null; }, _$TaxRateItemResponse: function _$TaxRateItemResponse(t0) { this.data = t0; this._tax_rate_model$__hashCode = null; }, TaxRateItemResponseBuilder: function TaxRateItemResponseBuilder() { this._tax_rate_model$_data = this._tax_rate_model$_$v = null; }, _$TaxRateEntity: function _$TaxRateEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.rate = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._tax_rate_model$__hashCode = null; }, TaxRateEntityBuilder: function TaxRateEntityBuilder() { var _ = this; _._tax_rate_model$_id = _._tax_rate_model$_assignedUserId = _._tax_rate_model$_createdUserId = _._tax_rate_model$_isDeleted = _._tax_rate_model$_archivedAt = _._tax_rate_model$_updatedAt = _._tax_rate_model$_createdAt = _._tax_rate_model$_isChanged = _._tax_rate_model$_rate = _._tax_rate_model$_name = _._tax_rate_model$_$v = null; }, _TaxRateEntity_Object_BaseEntity: function _TaxRateEntity_Object_BaseEntity() { }, _TaxRateEntity_Object_BaseEntity_SelectableEntity: function _TaxRateEntity_Object_BaseEntity_SelectableEntity() { }, TokenEntity_TokenEntity(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$TokenEntity$_(0, "", 0, "", t1, false, false, false, "", "", 0); }, TokenEntity_unobscureToken(value) { if (value == null || value.length === 0) return null; return B.C_Utf8Codec.decode$1(0, B.C_Base64Decoder.convert$1(value)); }, _$TokenEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, isSystem, $name, token, updatedAt) { return new A._$TokenEntity(isSystem, token, $name, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TokenListResponse: function TokenListResponse() { }, TokenItemResponse: function TokenItemResponse() { }, TokenEntity: function TokenEntity() { }, _$TokenListResponseSerializer: function _$TokenListResponseSerializer() { }, _$TokenItemResponseSerializer: function _$TokenItemResponseSerializer() { }, _$TokenEntitySerializer: function _$TokenEntitySerializer() { }, _$TokenListResponse: function _$TokenListResponse(t0) { this.data = t0; this._token_model$__hashCode = null; }, TokenListResponseBuilder: function TokenListResponseBuilder() { this._token_model$_data = this._token_model$_$v = null; }, _$TokenItemResponse: function _$TokenItemResponse(t0) { this.data = t0; this._token_model$__hashCode = null; }, TokenItemResponseBuilder: function TokenItemResponseBuilder() { this._token_model$_data = this._token_model$_$v = null; }, _$TokenEntity: function _$TokenEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.isSystem = t0; _.token = t1; _.name = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._token_model$__hashCode = null; }, TokenEntityBuilder: function TokenEntityBuilder() { var _ = this; _._token_model$_id = _._token_model$_assignedUserId = _._token_model$_createdUserId = _._token_model$_isDeleted = _._token_model$_archivedAt = _._token_model$_updatedAt = _._token_model$_createdAt = _._token_model$_isChanged = _._token_model$_name = _._token_model$_token = _._isSystem = _._token_model$_$v = null; }, _TokenEntity_Object_BaseEntity: function _TokenEntity_Object_BaseEntity() { }, _TokenEntity_Object_BaseEntity_SelectableEntity: function _TokenEntity_Object_BaseEntity_SelectableEntity() { }, UserEntity_UserEntity(id, state, userCompany) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$UserEntity$_(0, "", 0, "", "", "", "", "", "", null, "", false, t1, false, false, false, "", "", "", "", "", "", 0, userCompany); }, UserEntity__initializeBuilder(builder) { builder.get$_user_model$_$this()._isTwoFactorEnabled = false; builder.get$_user_model$_$this()._hasPassword = false; builder.get$_user_model$_$this()._password = ""; builder.get$_user_model$_$this()._lastEmailAddress = ""; builder.get$_user_model$_$this()._oauthUserToken = ""; return builder; }, _$UserEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, email, emailVerifiedAt, firstName, hasPassword, id, isChanged, isDeleted, isTwoFactorEnabled, lastEmailAddress, lastName, oauthProvider, oauthUserToken, password, phone, updatedAt, userCompany) { return new A._$UserEntity(firstName, lastName, email, phone, password, emailVerifiedAt, customValue1, customValue2, customValue3, customValue4, isTwoFactorEnabled, hasPassword, lastEmailAddress, oauthUserToken, userCompany, oauthProvider, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, UserListResponse: function UserListResponse() { }, UserItemResponse: function UserItemResponse() { }, UserTwoFactorResponse: function UserTwoFactorResponse() { }, UserTwoFactorData: function UserTwoFactorData() { }, UserCompanyItemResponse: function UserCompanyItemResponse() { }, UserEntity: function UserEntity() { }, _$UserListResponseSerializer: function _$UserListResponseSerializer() { }, _$UserItemResponseSerializer: function _$UserItemResponseSerializer() { }, _$UserTwoFactorResponseSerializer: function _$UserTwoFactorResponseSerializer() { }, _$UserTwoFactorDataSerializer: function _$UserTwoFactorDataSerializer() { }, _$UserCompanyItemResponseSerializer: function _$UserCompanyItemResponseSerializer() { }, _$UserEntitySerializer: function _$UserEntitySerializer() { }, _$UserListResponse: function _$UserListResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserListResponseBuilder: function UserListResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserItemResponse: function _$UserItemResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserItemResponseBuilder: function UserItemResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserTwoFactorResponse: function _$UserTwoFactorResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserTwoFactorResponseBuilder: function UserTwoFactorResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserTwoFactorData: function _$UserTwoFactorData(t0, t1) { this.secret = t0; this.qrCode = t1; this._user_model$__hashCode = null; }, UserTwoFactorDataBuilder: function UserTwoFactorDataBuilder() { this._qrCode = this._secret = this._user_model$_$v = null; }, _$UserCompanyItemResponse: function _$UserCompanyItemResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserCompanyItemResponseBuilder: function UserCompanyItemResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserEntity: function _$UserEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.phone = t3; _.password = t4; _.emailVerifiedAt = t5; _.customValue1 = t6; _.customValue2 = t7; _.customValue3 = t8; _.customValue4 = t9; _.isTwoFactorEnabled = t10; _.hasPassword = t11; _.lastEmailAddress = t12; _.oauthUserToken = t13; _.userCompany = t14; _.oauthProvider = t15; _.isChanged = t16; _.createdAt = t17; _.updatedAt = t18; _.archivedAt = t19; _.isDeleted = t20; _.createdUserId = t21; _.assignedUserId = t22; _.id = t23; _._user_model$__hashCode = null; }, UserEntityBuilder: function UserEntityBuilder() { var _ = this; _._user_model$_id = _._user_model$_assignedUserId = _._user_model$_createdUserId = _._user_model$_isDeleted = _._user_model$_archivedAt = _._user_model$_updatedAt = _._user_model$_createdAt = _._user_model$_isChanged = _._oauthProvider = _._userCompany = _._oauthUserToken = _._lastEmailAddress = _._hasPassword = _._isTwoFactorEnabled = _._user_model$_customValue4 = _._user_model$_customValue3 = _._user_model$_customValue2 = _._user_model$_customValue1 = _._emailVerifiedAt = _._password = _._user_model$_phone = _._user_model$_email = _._lastName = _._firstName = _._user_model$_$v = null; }, _UserEntity_Object_BaseEntity: function _UserEntity_Object_BaseEntity() { }, _UserEntity_Object_BaseEntity_SelectableEntity: function _UserEntity_Object_BaseEntity_SelectableEntity() { }, VendorEntity_VendorEntity(id, state, user) { var t1, t2, t3, t4; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity); t3 = A.BuiltList_BuiltList$from(A._setArrayType([A.VendorContactEntity_VendorContactEntity().rebuild$1(new A.VendorEntity_VendorEntity_closure())], type$.JSArray_legacy_VendorContactEntity), type$.legacy_VendorContactEntity); t4 = user == null ? null : user.id; if (t4 == null) t4 = ""; return A._$VendorEntity$_(t2, "", "", 0, t4, "", t3, "", 0, "", "", "", "", "", "", A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_DocumentEntity), t1, "", false, false, "", "", "", "", "", "", "", 0, "", ""); }, VendorEntity__initializeBuilder(builder) { builder.get$activities().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_ActivityEntity)); return builder; }, VendorContactEntity_VendorContactEntity() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return A._$VendorContactEntity$_(0, "", 0, "", "", "", "" + t1, false, false, false, "", "", 0); }, _$VendorEntity$_(activities, address1, address2, archivedAt, assignedUserId, city, contacts, countryId, createdAt, createdUserId, currencyId, customValue1, customValue2, customValue3, customValue4, documents, id, idNumber, isChanged, isDeleted, $name, number, phone, postalCode, privateNotes, publicNotes, state, updatedAt, vatNumber, website) { var _s12_ = "VendorEntity"; if (contacts == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "contacts")); if (activities == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "activities")); if (documents == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "documents")); return new A._$VendorEntity($name, address1, address2, city, state, postalCode, countryId, phone, privateNotes, publicNotes, website, number, vatNumber, idNumber, currencyId, customValue1, customValue2, customValue3, customValue4, contacts, activities, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$VendorContactEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, email, firstName, id, isChanged, isDeleted, isPrimary, lastName, phone, updatedAt) { return new A._$VendorContactEntity(firstName, lastName, email, isPrimary, phone, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, VendorListResponse: function VendorListResponse() { }, VendorItemResponse: function VendorItemResponse() { }, VendorEntity: function VendorEntity() { }, VendorEntity_VendorEntity_closure: function VendorEntity_VendorEntity_closure() { }, VendorEntity_emailContacts_closure: function VendorEntity_emailContacts_closure() { }, VendorEntity_primaryContact_closure: function VendorEntity_primaryContact_closure() { }, VendorEntity_primaryContact_closure0: function VendorEntity_primaryContact_closure0() { }, VendorEntity_hasEmailAddress_closure: function VendorEntity_hasEmailAddress_closure() { }, VendorEntity_getContact_closure: function VendorEntity_getContact_closure(t0) { this.contactId = t0; }, VendorEntity_getContact_closure0: function VendorEntity_getContact_closure0() { }, VendorContactEntity: function VendorContactEntity() { }, _$VendorListResponseSerializer: function _$VendorListResponseSerializer() { }, _$VendorItemResponseSerializer: function _$VendorItemResponseSerializer() { }, _$VendorEntitySerializer: function _$VendorEntitySerializer() { }, _$VendorContactEntitySerializer: function _$VendorContactEntitySerializer() { }, _$VendorListResponse: function _$VendorListResponse(t0) { this.data = t0; this._vendor_model$__hashCode = null; }, VendorListResponseBuilder: function VendorListResponseBuilder() { this._vendor_model$_data = this._vendor_model$_$v = null; }, _$VendorItemResponse: function _$VendorItemResponse(t0) { this.data = t0; this._vendor_model$__hashCode = null; }, VendorItemResponseBuilder: function VendorItemResponseBuilder() { this._vendor_model$_data = this._vendor_model$_$v = null; }, _$VendorEntity: function _$VendorEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29) { var _ = this; _.name = t0; _.address1 = t1; _.address2 = t2; _.city = t3; _.state = t4; _.postalCode = t5; _.countryId = t6; _.phone = t7; _.privateNotes = t8; _.publicNotes = t9; _.website = t10; _.number = t11; _.vatNumber = t12; _.idNumber = t13; _.currencyId = t14; _.customValue1 = t15; _.customValue2 = t16; _.customValue3 = t17; _.customValue4 = t18; _.contacts = t19; _.activities = t20; _.documents = t21; _.isChanged = t22; _.createdAt = t23; _.updatedAt = t24; _.archivedAt = t25; _.isDeleted = t26; _.createdUserId = t27; _.assignedUserId = t28; _.id = t29; _._vendor_model$__hashCode = null; }, VendorEntityBuilder: function VendorEntityBuilder() { var _ = this; _._vendor_model$_assignedUserId = _._vendor_model$_createdUserId = _._vendor_model$_isDeleted = _._vendor_model$_archivedAt = _._vendor_model$_updatedAt = _._vendor_model$_createdAt = _._vendor_model$_isChanged = _._vendor_model$_documents = _._vendor_model$_activities = _._vendor_model$_contacts = _._vendor_model$_customValue4 = _._vendor_model$_customValue3 = _._vendor_model$_customValue2 = _._vendor_model$_customValue1 = _._vendor_model$_currencyId = _._vendor_model$_idNumber = _._vendor_model$_vatNumber = _._vendor_model$_number = _._vendor_model$_website = _._vendor_model$_publicNotes = _._vendor_model$_privateNotes = _._vendor_model$_phone = _._vendor_model$_countryId = _._vendor_model$_postalCode = _._vendor_model$_state = _._vendor_model$_city = _._vendor_model$_address2 = _._vendor_model$_address1 = _._vendor_model$_name = _._vendor_model$_$v = null; _._vendor_model$_id = null; }, _$VendorContactEntity: function _$VendorContactEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.isPrimary = t3; _.phone = t4; _.isChanged = t5; _.createdAt = t6; _.updatedAt = t7; _.archivedAt = t8; _.isDeleted = t9; _.createdUserId = t10; _.assignedUserId = t11; _.id = t12; _._vendor_model$__hashCode = null; }, VendorContactEntityBuilder: function VendorContactEntityBuilder() { var _ = this; _._vendor_model$_id = _._vendor_model$_assignedUserId = _._vendor_model$_createdUserId = _._vendor_model$_isDeleted = _._vendor_model$_archivedAt = _._vendor_model$_updatedAt = _._vendor_model$_createdAt = _._vendor_model$_isChanged = _._vendor_model$_phone = _._isPrimary = _._vendor_model$_email = _._vendor_model$_lastName = _._vendor_model$_firstName = _._vendor_model$_$v = null; }, _VendorContactEntity_Object_BaseEntity: function _VendorContactEntity_Object_BaseEntity() { }, _VendorEntity_Object_BaseEntity: function _VendorEntity_Object_BaseEntity() { }, _VendorEntity_Object_BaseEntity_SelectableEntity: function _VendorEntity_Object_BaseEntity_SelectableEntity() { }, _VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities: function _VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities() { }, WebhookEntity_WebhookEntity(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = type$.legacy_String; return A._$WebhookEntity$_(0, "", 0, "", "", "JSON", A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2), t1, false, false, "", "", 0); }, WebhookEntity__initializeBuilder(builder) { var t1 = type$.legacy_String; builder.get$headers(builder).replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, t1)); builder.get$_webhook_model$_$this()._restMethod = ""; return builder; }, _$WebhookEntity$_(archivedAt, assignedUserId, createdAt, createdUserId, eventId, format, headers, id, isChanged, isDeleted, restMethod, targetUrl, updatedAt) { if (headers == null) A.throwExpression(A.BuiltValueNullFieldError$("WebhookEntity", "headers")); return new A._$WebhookEntity(eventId, targetUrl, format, restMethod, headers, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, WebhookListResponse: function WebhookListResponse() { }, WebhookItemResponse: function WebhookItemResponse() { }, WebhookEntity: function WebhookEntity() { }, _$WebhookListResponseSerializer: function _$WebhookListResponseSerializer() { }, _$WebhookItemResponseSerializer: function _$WebhookItemResponseSerializer() { }, _$WebhookEntitySerializer: function _$WebhookEntitySerializer() { }, _$WebhookListResponse: function _$WebhookListResponse(t0) { this.data = t0; this._webhook_model$__hashCode = null; }, WebhookListResponseBuilder: function WebhookListResponseBuilder() { this._webhook_model$_data = this._webhook_model$_$v = null; }, _$WebhookItemResponse: function _$WebhookItemResponse(t0) { this.data = t0; this._webhook_model$__hashCode = null; }, WebhookItemResponseBuilder: function WebhookItemResponseBuilder() { this._webhook_model$_data = this._webhook_model$_$v = null; }, _$WebhookEntity: function _$WebhookEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.eventId = t0; _.targetUrl = t1; _.format = t2; _.restMethod = t3; _.headers = t4; _.isChanged = t5; _.createdAt = t6; _.updatedAt = t7; _.archivedAt = t8; _.isDeleted = t9; _.createdUserId = t10; _.assignedUserId = t11; _.id = t12; _._webhook_model$__hashCode = null; }, WebhookEntityBuilder: function WebhookEntityBuilder() { var _ = this; _._webhook_model$_id = _._webhook_model$_assignedUserId = _._webhook_model$_createdUserId = _._webhook_model$_isDeleted = _._webhook_model$_archivedAt = _._webhook_model$_updatedAt = _._webhook_model$_createdAt = _._webhook_model$_isChanged = _._headers = _._restMethod = _._format = _._targetUrl = _._eventId = _._webhook_model$_$v = null; }, _WebhookEntity_Object_BaseEntity: function _WebhookEntity_Object_BaseEntity() { }, _WebhookEntity_Object_BaseEntity_SelectableEntity: function _WebhookEntity_Object_BaseEntity_SelectableEntity() { }, AuthRepository: function AuthRepository() { }, ClientRepository: function ClientRepository() { }, ClientRepository_saveData_closure: function ClientRepository_saveData_closure() { }, CompanyGatewayRepository: function CompanyGatewayRepository() { }, CreditRepository: function CreditRepository() { }, CreditRepository_saveData_closure: function CreditRepository_saveData_closure() { }, DesignRepository: function DesignRepository() { }, DocumentRepository: function DocumentRepository() { }, ExpenseCategoryRepository: function ExpenseCategoryRepository() { }, ExpenseRepository: function ExpenseRepository() { }, GroupRepository: function GroupRepository() { }, InvoiceRepository: function InvoiceRepository() { }, InvoiceRepository_saveData_closure: function InvoiceRepository_saveData_closure() { }, PaymentRepository: function PaymentRepository() { }, PaymentTermRepository: function PaymentTermRepository() { }, PersistenceRepository: function PersistenceRepository(t0) { this.fileStorage = t0; }, ProductRepository: function ProductRepository() { }, ProductRepository_saveData_closure: function ProductRepository_saveData_closure() { }, ProjectRepository: function ProjectRepository() { }, PurchaseOrderRepository: function PurchaseOrderRepository() { }, PurchaseOrderRepository_saveData_closure: function PurchaseOrderRepository_saveData_closure() { }, QuoteRepository: function QuoteRepository() { }, QuoteRepository_saveData_closure: function QuoteRepository_saveData_closure() { }, RecurringExpenseRepository: function RecurringExpenseRepository() { }, RecurringInvoiceRepository: function RecurringInvoiceRepository() { }, SettingsRepository: function SettingsRepository() { }, SubscriptionRepository: function SubscriptionRepository() { }, TaskRepository: function TaskRepository() { }, TaskStatusRepository: function TaskStatusRepository() { }, TaxRateRepository: function TaxRateRepository() { }, TokenRepository: function TokenRepository() { }, UserRepository: function UserRepository() { }, VendorRepository: function VendorRepository() { }, WebhookRepository: function WebhookRepository() { }, _getHeaders(url, token, idToken, password, secret) { var t1, headers; if (B.JSString_methods.startsWith$1(url, "https://invoicing.co")) secret = ""; t1 = type$.legacy_String; headers = A.LinkedHashMap_LinkedHashMap$_literal(["X-CLIENT-VERSION", "5.0.88", "X-API-SECRET", secret, "X-Requested-With", "XMLHttpRequest", "Content-Type", "application/json; charset=utf-8"], t1, t1); if (token.length !== 0) headers.$indexSet(0, "X-API-Token", token); if ((idToken == null ? "" : idToken).length !== 0) headers.$indexSet(0, "X-API-OAUTH-PASSWORD", idToken); if ((password == null ? "" : password).length !== 0) { t1 = B.C_Utf8Codec.get$encoder().convert$1(password); headers.$indexSet(0, "X-API-PASSWORD-BASE64", B.C_Base64Codec.get$encoder().convert$1(t1)); } return headers; }, _checkResponse(response) { var serverVersion, minClientVersion, t2, t1 = response.headers; A.print("Response: " + A.formatSize(A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t1).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes).length)); serverVersion = t1.$index(0, "x-app-version"); minClientVersion = t1.$index(0, "x-minimum-client-version"); t1 = response.statusCode; if (t1 >= 500) throw A.wrapException(A._parseError(t1, response.get$body(response))); else if (serverVersion == null) throw A.wrapException("Error: please check that Invoice Ninja v5 is installed on the server"); else { t2 = A.Version__compare(A.Version_parse("5.0.88"), A.Version_parse(minClientVersion)); if (t2 < 0) throw A.wrapException("Error: client not supported, please update to the latest version [Current v5.0.88 < Minimum v" + A.S(minClientVersion) + "]"); else { t2 = A.Version__compare(A.Version_parse(serverVersion), A.Version_parse("5.0.4")); if (t2 < 0) throw A.wrapException("Error: server not supported, please update to the latest version [Current v" + serverVersion + " < Minimum v5.0.4]"); else if (t1 >= 400) throw A.wrapException(A._parseError(t1, response.get$body(response))); } } }, _parseError(code, response) { var jsonResponse, error, error0, message, exception, _s6_ = "errors", _s23_ = "Failed to parse error: ", t1 = {}; t1.message = response; if (B.JSString_methods.contains$1(response, "DOCTYPE html")) return A.S(code) + ": An error occurred"; try { jsonResponse = B.C_JsonCodec.decode$1(0, response); message = J.$index$asx(jsonResponse, "message"); if (message == null) message = jsonResponse; t1.message = message; if (J.$index$asx(jsonResponse, _s6_) != null && J.get$isNotEmpty$asx(type$.legacy_Map_dynamic_dynamic._as(J.$index$asx(jsonResponse, _s6_)))) { t1.message = J.$add$ansx(message, "\n"); try { J.forEach$1$ax(J.$index$asx(jsonResponse, _s6_), new A._parseError_closure(t1)); } catch (exception) { error = A.unwrapException(exception); A.print(_s23_ + A.S(error)); } } } catch (exception) { error0 = A.unwrapException(exception); A.print(_s23_ + A.S(error0)); } return A.S(code) + ": " + A.S(t1.message); }, _uploadFiles(url, token, multipartFiles, data, fileIndex, method) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, t1, request, $async$temp1; var $async$_uploadFiles = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start request = A.MultipartRequest$(method, A.Uri_parse(url, 0, null)); if (data == null) { t1 = type$.legacy_String; t1 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } else t1 = data; request.fields.addAll$1(0, t1); request.headers.addAll$1(0, A._getHeaders(url, token, null, null, null)); B.JSArray_methods.addAll$1(request.files, multipartFiles); $async$temp1 = A; $async$goto = 4; return A._asyncAwait(request.send$0(0), $async$_uploadFiles); case 4: // returning from await. $async$goto = 3; return A._asyncAwait($async$temp1.Response_fromStream($async$result).timeout$1(0, B.Duration_600000000), $async$_uploadFiles); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_uploadFiles, $async$completer); }, WebClient: function WebClient() { }, _parseError_closure: function _parseError_closure(t0) { this._box_0 = t0; }, _parseError__closure: function _parseError__closure(t0) { this._box_0 = t0; }, main0(isTesting) { return A.main$body(false); }, main$body(isTesting) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), t1, t2, t3, userLogout, userLogoutAll, loginRequest, oauthLoginRequest, signUpRequest, oauthSignUpRequest, refreshRequest, recoverRequest, addCompany, deleteCompany, setDefaultCompany, purgeData, resendConfirmation, t4, viewDocumentList, viewDocument, editDocument, loadDocuments, loadDocument, archiveDocument, deleteDocument, restoreDocument, downloadDocuments, viewDashboard, viewProductList, viewProduct, editProduct, loadProducts, loadProduct, saveProduct, archiveProduct, deleteProduct, restoreProduct, saveDocument, viewClientList, viewClient, editClient, showPdfClient, loadClients, loadClient, saveClient, archiveClient, mergeClients, deleteClient, purgeClient, restoreClient, viewInvoiceList, viewInvoice, editInvoice, showEmailInvoice, showPdfInvoice, loadInvoices, loadInvoice, saveInvoice, archiveInvoice, deleteInvoice, restoreInvoice, emailInvoice, bulkEmailInvoices, markInvoiceSent, markInvoicePaid, cancelInvoices, downloadInvoices, viewExpenseList, viewExpense, editExpense, loadExpenses, loadExpense, saveExpense, archiveExpense, deleteExpense, restoreExpense, viewVendorList, viewVendor, editVendor, loadVendors, loadVendor, saveVendor, archiveVendor, deleteVendor, restoreVendor, viewTaskList, viewTask, editTask, loadTasks, loadTask, saveTask, archiveTask, startTask, stopTask, deleteTask, restoreTask, sortTasks, viewProjectList, viewProject, editProject, loadProjects, loadProject, saveProject, archiveProject, deleteProject, restoreProject, viewPaymentList, viewPayment, editPayment, viewRefundPayment, loadPayments, loadPayment, savePayment, refundPayment, archivePayment, deletePayment, restorePayment, emailPayment, viewQuoteList, viewQuote, editQuote, showEmailQuote, showPdfQuote, convertQuote, approveQuote, loadQuotes, loadQuote, saveQuote, archiveQuote, deleteQuote, restoreQuote, emailQuote, bulkEmailQuotes, markSentQuote, downloadQuotes, viewSettings, saveCompany, saveAuthUser, connectOAuthUser, connectGmailUser, saveSettings, uploadLogo, disableTwoFactor, viewReports, viewPurchaseOrderList, viewPurchaseOrder, editPurchaseOrder, showEmailPurchaseOrder, showPdfPurchaseOrder, approvePurchaseOrder, loadPurchaseOrders, loadPurchaseOrder, savePurchaseOrder, archivePurchaseOrder, deletePurchaseOrder, restorePurchaseOrder, emailPurchaseOrder, bulkEmailPurchaseOrders, markSentPurchaseOrder, convertPurchaseOrdersToExpense, addPurchaseOrdersToInventory, acceptPurchaseOrders, cancelPurchaseOrders, downloadPurchaseOrders, viewRecurringExpenseList, viewRecurringExpense, editRecurringExpense, loadRecurringExpenses, loadRecurringExpense, saveRecurringExpense, archiveRecurringExpense, deleteRecurringExpense, restoreRecurringExpense, startRecurringExpense, stopRecurringExpense, viewSubscriptionList, viewSubscription, editSubscription, loadSubscriptions, loadSubscription, saveSubscription, archiveSubscription, deleteSubscription, restoreSubscription, viewTaskStatusList, viewTaskStatus, editTaskStatus, loadTaskStatuses, loadTaskStatus, saveTaskStatus, archiveTaskStatus, deleteTaskStatus, restoreTaskStatus, viewExpenseCategoryList, viewExpenseCategory, editExpenseCategory, loadExpenseCategories, loadExpenseCategory, saveExpenseCategory, archiveExpenseCategory, deleteExpenseCategory, restoreExpenseCategory, viewRecurringInvoiceList, viewRecurringInvoice, editRecurringInvoice, showPdfRecurringInvoice, loadRecurringInvoices, loadRecurringInvoice, saveRecurringInvoice, archiveRecurringInvoice, deleteRecurringInvoice, restoreRecurringInvoice, startRecurringInvoice, stopRecurringInvoice, sendNowRecurringInvoice, viewWebhookList, viewWebhook, editWebhook, loadWebhooks, loadWebhook, saveWebhook, archiveWebhook, deleteWebhook, restoreWebhook, viewTokenList, viewToken, editToken, loadTokens, loadToken, saveToken, archiveToken, deleteToken, restoreToken, viewPaymentTermList, viewPaymentTerm, editPaymentTerm, loadPaymentTerms, loadPaymentTerm, savePaymentTerm, archivePaymentTerm, deletePaymentTerm, restorePaymentTerm, viewDesignList, viewDesign, editDesign, loadDesigns, loadDesign, saveDesign, archiveDesign, deleteDesign, restoreDesign, viewCreditList, viewCredit, editCredit, showEmailCredit, showPdfCredit, loadCredits, loadCredit, saveCredit, archiveCredit, deleteCredit, restoreCredit, emailCredit, bulkEmailCredits, markPaidCredit, markSentCredit, downloadCredits, viewUserList, viewUser, editUser, loadUsers, loadUser, saveUser, archiveUser, deleteUser, restoreUser, removeUser, resendInvite, viewTaxRateList, viewTaxRate, editTaxRate, loadTaxRates, loadTaxRate, saveTaxRate, archiveTaxRate, deleteTaxRate, restoreTaxRate, viewCompanyGatewayList, viewCompanyGateway, editCompanyGateway, loadCompanyGateways, loadCompanyGateway, saveCompanyGateway, archiveCompanyGateway, deleteCompanyGateway, restoreCompanyGateway, disconnectCompanyGateway, viewGroupList, viewGroup, editGroup, loadGroups, loadGroup, saveGroup, archiveGroup, deleteGroup, restoreGroup, loadState, accountLoaded, dataRefreshed, persistData, persistStatic, userLoggedIn, persistUI, persistPrefs, clearDataState, deleteState, viewMainScreen, store; var $async$main0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.WidgetsBinding__instance == null) A.WidgetsFlutterBinding$(); $.WidgetsBinding__instance.toString; $async$goto = 2; return A._asyncAwait(A._initialState(false), $async$main0); case 2: // returning from await. t1 = $async$result; t2 = type$.JSArray_of_legacy_dynamic_Function_3_legacy_Store_legacy_AppState_and_dynamic_and_legacy_dynamic_Function_dynamic; t3 = A._setArrayType([], t2); userLogout = A._createUserLogout(); userLogoutAll = A._createUserLogoutAll(B.C_AuthRepository); loginRequest = A._createLoginRequest(B.C_AuthRepository); oauthLoginRequest = A._createOAuthLoginRequest(B.C_AuthRepository); signUpRequest = A._createSignUpRequest(B.C_AuthRepository); oauthSignUpRequest = A._createOAuthSignUpRequest(B.C_AuthRepository); refreshRequest = A._createRefreshRequest(B.C_AuthRepository); recoverRequest = A._createRecoverRequest(B.C_AuthRepository); addCompany = A._createCompany(B.C_AuthRepository); deleteCompany = A._deleteCompany(B.C_AuthRepository); setDefaultCompany = A._setDefaultCompany(B.C_AuthRepository); purgeData = A._purgeData(B.C_AuthRepository); resendConfirmation = A._resendConfirmation(B.C_AuthRepository); t4 = type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLogout; B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(userLogout, t4).get$$call(), new A.TypedMiddleware(userLogoutAll, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLogoutAll).get$$call(), new A.TypedMiddleware(loginRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginRequest).get$$call(), new A.TypedMiddleware(oauthLoginRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_OAuthLoginRequest).get$$call(), new A.TypedMiddleware(signUpRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserSignUpRequest).get$$call(), new A.TypedMiddleware(oauthSignUpRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_OAuthSignUpRequest).get$$call(), new A.TypedMiddleware(refreshRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefreshData).get$$call(), new A.TypedMiddleware(recoverRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RecoverPasswordRequest).get$$call(), new A.TypedMiddleware(addCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_AddCompany).get$$call(), new A.TypedMiddleware(deleteCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyRequest).get$$call(), new A.TypedMiddleware(setDefaultCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SetDefaultCompanyRequest).get$$call(), new A.TypedMiddleware(purgeData, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PurgeDataRequest).get$$call(), new A.TypedMiddleware(resendConfirmation, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ResendConfirmation).get$$call()], t2)); viewDocumentList = A._viewDocumentList(); viewDocument = A._viewDocument(); editDocument = A._editDocument(); loadDocuments = A._loadDocuments(B.C_DocumentRepository); loadDocument = A._loadDocument(B.C_DocumentRepository); archiveDocument = A._archiveDocument(B.C_DocumentRepository); deleteDocument = A._deleteDocument(B.C_DocumentRepository); restoreDocument = A._restoreDocument(B.C_DocumentRepository); downloadDocuments = A._downloadDocuments(B.C_DocumentRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewDocumentList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocumentList).get$$call(), new A.TypedMiddleware(viewDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocument).get$$call(), new A.TypedMiddleware(editDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditDocument).get$$call(), new A.TypedMiddleware(loadDocuments, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocuments).get$$call(), new A.TypedMiddleware(loadDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocument).get$$call(), new A.TypedMiddleware(archiveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDocumentRequest).get$$call(), new A.TypedMiddleware(deleteDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDocumentRequest).get$$call(), new A.TypedMiddleware(restoreDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDocumentRequest).get$$call(), new A.TypedMiddleware(downloadDocuments, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadDocumentsRequest).get$$call()], t2)); viewDashboard = A._createViewDashboard(); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewDashboard, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDashboard).get$$call()], t2)); viewProductList = A._viewProductList(); viewProduct = A._viewProduct(); editProduct = A._editProduct(); loadProducts = A._loadProducts(B.C_ProductRepository); loadProduct = A._loadProduct(B.C_ProductRepository); saveProduct = A._saveProduct(B.C_ProductRepository); archiveProduct = A._archiveProduct(B.C_ProductRepository); deleteProduct = A._deleteProduct(B.C_ProductRepository); restoreProduct = A._restoreProduct(B.C_ProductRepository); saveDocument = A._saveDocument(B.C_ProductRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewProductList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProductList).get$$call(), new A.TypedMiddleware(viewProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProduct).get$$call(), new A.TypedMiddleware(editProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditProduct).get$$call(), new A.TypedMiddleware(loadProducts, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProducts).get$$call(), new A.TypedMiddleware(loadProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProduct).get$$call(), new A.TypedMiddleware(saveProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductRequest).get$$call(), new A.TypedMiddleware(archiveProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProductsRequest).get$$call(), new A.TypedMiddleware(deleteProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProductsRequest).get$$call(), new A.TypedMiddleware(restoreProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProductsRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductDocumentRequest).get$$call()], t2)); viewClientList = A._viewClientList(); viewClient = A._viewClient(); editClient = A._editClient(); showPdfClient = A._showPdfClient(); loadClients = A._loadClients(B.C_ClientRepository); loadClient = A._loadClient(B.C_ClientRepository); saveClient = A._saveClient(B.C_ClientRepository); archiveClient = A._archiveClient(B.C_ClientRepository); mergeClients = A._mergeClients(B.C_ClientRepository); deleteClient = A._deleteClient(B.C_ClientRepository); purgeClient = A._purgeClient(B.C_ClientRepository); restoreClient = A._restoreClient(B.C_ClientRepository); saveDocument = A._saveDocument0(B.C_ClientRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewClientList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewClientList).get$$call(), new A.TypedMiddleware(viewClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewClient).get$$call(), new A.TypedMiddleware(editClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditClient).get$$call(), new A.TypedMiddleware(showPdfClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfClient).get$$call(), new A.TypedMiddleware(loadClients, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadClients).get$$call(), new A.TypedMiddleware(loadClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadClient).get$$call(), new A.TypedMiddleware(saveClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientRequest).get$$call(), new A.TypedMiddleware(mergeClients, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MergeClientsRequest).get$$call(), new A.TypedMiddleware(archiveClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveClientsRequest).get$$call(), new A.TypedMiddleware(deleteClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteClientsRequest).get$$call(), new A.TypedMiddleware(purgeClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PurgeClientRequest).get$$call(), new A.TypedMiddleware(restoreClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreClientsRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientDocumentRequest).get$$call()], t2)); viewInvoiceList = A._viewInvoiceList(); viewInvoice = A._viewInvoice(); editInvoice = A._editInvoice(); showEmailInvoice = A._showEmailInvoice(); showPdfInvoice = A._showPdfInvoice(); loadInvoices = A._loadInvoices(B.C_InvoiceRepository); loadInvoice = A._loadInvoice(B.C_InvoiceRepository); saveInvoice = A._saveInvoice(B.C_InvoiceRepository); archiveInvoice = A._archiveInvoice(B.C_InvoiceRepository); deleteInvoice = A._deleteInvoice(B.C_InvoiceRepository); restoreInvoice = A._restoreInvoice(B.C_InvoiceRepository); emailInvoice = A._emailInvoice(B.C_InvoiceRepository); bulkEmailInvoices = A._bulkEmailInvoices(B.C_InvoiceRepository); markInvoiceSent = A._markInvoiceSent(B.C_InvoiceRepository); markInvoicePaid = A._markInvoicePaid(B.C_InvoiceRepository); cancelInvoices = A._cancelInvoices(B.C_InvoiceRepository); downloadInvoices = A._downloadInvoices(B.C_InvoiceRepository); saveDocument = A._saveDocument1(B.C_InvoiceRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewInvoiceList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoiceList).get$$call(), new A.TypedMiddleware(viewInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoice).get$$call(), new A.TypedMiddleware(editInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditInvoice).get$$call(), new A.TypedMiddleware(showEmailInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailInvoice).get$$call(), new A.TypedMiddleware(showPdfInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfInvoice).get$$call(), new A.TypedMiddleware(loadInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoices).get$$call(), new A.TypedMiddleware(loadInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoice).get$$call(), new A.TypedMiddleware(saveInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceRequest).get$$call(), new A.TypedMiddleware(archiveInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveInvoicesRequest).get$$call(), new A.TypedMiddleware(deleteInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteInvoicesRequest).get$$call(), new A.TypedMiddleware(restoreInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreInvoicesRequest).get$$call(), new A.TypedMiddleware(emailInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailInvoiceRequest).get$$call(), new A.TypedMiddleware(bulkEmailInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailInvoicesRequest).get$$call(), new A.TypedMiddleware(markInvoiceSent, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesSentRequest).get$$call(), new A.TypedMiddleware(markInvoicePaid, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesPaidRequest).get$$call(), new A.TypedMiddleware(cancelInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_CancelInvoicesRequest).get$$call(), new A.TypedMiddleware(downloadInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadInvoicesRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceDocumentRequest).get$$call()], t2)); viewExpenseList = A._viewExpenseList(); viewExpense = A._viewExpense(); editExpense = A._editExpense(); loadExpenses = A._loadExpenses(B.C_ExpenseRepository); loadExpense = A._loadExpense(B.C_ExpenseRepository); saveExpense = A._saveExpense(B.C_ExpenseRepository); archiveExpense = A._archiveExpense(B.C_ExpenseRepository); deleteExpense = A._deleteExpense(B.C_ExpenseRepository); restoreExpense = A._restoreExpense(B.C_ExpenseRepository); saveDocument = A._saveDocument2(B.C_ExpenseRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewExpenseList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseList).get$$call(), new A.TypedMiddleware(viewExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpense).get$$call(), new A.TypedMiddleware(editExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditExpense).get$$call(), new A.TypedMiddleware(loadExpenses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenses).get$$call(), new A.TypedMiddleware(loadExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpense).get$$call(), new A.TypedMiddleware(saveExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseRequest).get$$call(), new A.TypedMiddleware(archiveExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseRequest).get$$call(), new A.TypedMiddleware(deleteExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseRequest).get$$call(), new A.TypedMiddleware(restoreExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseDocumentRequest).get$$call()], t2)); viewVendorList = A._viewVendorList(); viewVendor = A._viewVendor(); editVendor = A._editVendor(); loadVendors = A._loadVendors(B.C_VendorRepository); loadVendor = A._loadVendor(B.C_VendorRepository); saveVendor = A._saveVendor(B.C_VendorRepository); archiveVendor = A._archiveVendor(B.C_VendorRepository); deleteVendor = A._deleteVendor(B.C_VendorRepository); restoreVendor = A._restoreVendor(B.C_VendorRepository); saveDocument = A._saveDocument3(B.C_VendorRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewVendorList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendorList).get$$call(), new A.TypedMiddleware(viewVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendor).get$$call(), new A.TypedMiddleware(editVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditVendor).get$$call(), new A.TypedMiddleware(loadVendors, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendors).get$$call(), new A.TypedMiddleware(loadVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendor).get$$call(), new A.TypedMiddleware(saveVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorRequest).get$$call(), new A.TypedMiddleware(archiveVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveVendorRequest).get$$call(), new A.TypedMiddleware(deleteVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteVendorRequest).get$$call(), new A.TypedMiddleware(restoreVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreVendorRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorDocumentRequest).get$$call()], t2)); viewTaskList = A._viewTaskList(); viewTask = A._viewTask(); editTask = A._editTask(); loadTasks = A._loadTasks(B.C_TaskRepository); loadTask = A._loadTask(B.C_TaskRepository); saveTask = A._saveTask(B.C_TaskRepository); archiveTask = A._archiveTask(B.C_TaskRepository); startTask = A._startTask(B.C_TaskRepository); stopTask = A._stopTask(B.C_TaskRepository); deleteTask = A._deleteTask(B.C_TaskRepository); restoreTask = A._restoreTask(B.C_TaskRepository); saveDocument = A._saveDocument4(B.C_TaskRepository); sortTasks = A._sortTasks(B.C_TaskRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewTaskList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskList).get$$call(), new A.TypedMiddleware(viewTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTask).get$$call(), new A.TypedMiddleware(editTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTask).get$$call(), new A.TypedMiddleware(loadTasks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTasks).get$$call(), new A.TypedMiddleware(loadTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTask).get$$call(), new A.TypedMiddleware(saveTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskRequest).get$$call(), new A.TypedMiddleware(archiveTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskRequest).get$$call(), new A.TypedMiddleware(startTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StartTasksRequest).get$$call(), new A.TypedMiddleware(stopTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StopTasksRequest).get$$call(), new A.TypedMiddleware(deleteTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskRequest).get$$call(), new A.TypedMiddleware(restoreTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskDocumentRequest).get$$call(), new A.TypedMiddleware(sortTasks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SortTasksRequest).get$$call()], t2)); viewProjectList = A._viewProjectList(); viewProject = A._viewProject(); editProject = A._editProject(); loadProjects = A._loadProjects(B.C_ProjectRepository); loadProject = A._loadProject(B.C_ProjectRepository); saveProject = A._saveProject(B.C_ProjectRepository); archiveProject = A._archiveProject(B.C_ProjectRepository); deleteProject = A._deleteProject(B.C_ProjectRepository); restoreProject = A._restoreProject(B.C_ProjectRepository); saveDocument = A._saveDocument5(B.C_ProjectRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewProjectList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProjectList).get$$call(), new A.TypedMiddleware(viewProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProject).get$$call(), new A.TypedMiddleware(editProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditProject).get$$call(), new A.TypedMiddleware(loadProjects, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProjects).get$$call(), new A.TypedMiddleware(loadProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProject).get$$call(), new A.TypedMiddleware(saveProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectRequest).get$$call(), new A.TypedMiddleware(archiveProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProjectRequest).get$$call(), new A.TypedMiddleware(deleteProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProjectRequest).get$$call(), new A.TypedMiddleware(restoreProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProjectRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectDocumentRequest).get$$call()], t2)); viewPaymentList = A._viewPaymentList(); viewPayment = A._viewPayment(); editPayment = A._editPayment(); viewRefundPayment = A._viewRefundPayment(); loadPayments = A._loadPayments(B.C_PaymentRepository); loadPayment = A._loadPayment(B.C_PaymentRepository); savePayment = A._savePayment(B.C_PaymentRepository); refundPayment = A._refundPayment(B.C_PaymentRepository); archivePayment = A._archivePayment(B.C_PaymentRepository); deletePayment = A._deletePayment(B.C_PaymentRepository); restorePayment = A._restorePayment(B.C_PaymentRepository); emailPayment = A._emailPayment(B.C_PaymentRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewPaymentList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentList).get$$call(), new A.TypedMiddleware(viewPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPayment).get$$call(), new A.TypedMiddleware(editPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditPayment).get$$call(), new A.TypedMiddleware(viewRefundPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRefundPayment).get$$call(), new A.TypedMiddleware(loadPayments, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayments).get$$call(), new A.TypedMiddleware(loadPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayment).get$$call(), new A.TypedMiddleware(savePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentRequest).get$$call(), new A.TypedMiddleware(refundPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefundPaymentRequest).get$$call(), new A.TypedMiddleware(archivePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentsRequest).get$$call(), new A.TypedMiddleware(deletePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentsRequest).get$$call(), new A.TypedMiddleware(restorePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentsRequest).get$$call(), new A.TypedMiddleware(emailPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailPaymentRequest).get$$call()], t2)); viewQuoteList = A._viewQuoteList(); viewQuote = A._viewQuote(); editQuote = A._editQuote(); showEmailQuote = A._showEmailQuote(); showPdfQuote = A._showPdfQuote(); convertQuote = A._convertQuote(B.C_QuoteRepository); approveQuote = A._approveQuote(B.C_QuoteRepository); loadQuotes = A._loadQuotes(B.C_QuoteRepository); loadQuote = A._loadQuote(B.C_QuoteRepository); saveQuote = A._saveQuote(B.C_QuoteRepository); archiveQuote = A._archiveQuote(B.C_QuoteRepository); deleteQuote = A._deleteQuote(B.C_QuoteRepository); restoreQuote = A._restoreQuote(B.C_QuoteRepository); emailQuote = A._emailQuote(B.C_QuoteRepository); bulkEmailQuotes = A._bulkEmailQuotes(B.C_QuoteRepository); markSentQuote = A._markSentQuote(B.C_QuoteRepository); downloadQuotes = A._downloadQuotes(B.C_QuoteRepository); saveDocument = A._saveDocument6(B.C_QuoteRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewQuoteList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuoteList).get$$call(), new A.TypedMiddleware(viewQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuote).get$$call(), new A.TypedMiddleware(editQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditQuote).get$$call(), new A.TypedMiddleware(convertQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConvertQuotes).get$$call(), new A.TypedMiddleware(approveQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ApproveQuotes).get$$call(), new A.TypedMiddleware(showEmailQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailQuote).get$$call(), new A.TypedMiddleware(showPdfQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfQuote).get$$call(), new A.TypedMiddleware(loadQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuotes).get$$call(), new A.TypedMiddleware(loadQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuote).get$$call(), new A.TypedMiddleware(saveQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteRequest).get$$call(), new A.TypedMiddleware(archiveQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveQuotesRequest).get$$call(), new A.TypedMiddleware(deleteQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteQuotesRequest).get$$call(), new A.TypedMiddleware(restoreQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreQuotesRequest).get$$call(), new A.TypedMiddleware(emailQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailQuoteRequest).get$$call(), new A.TypedMiddleware(bulkEmailQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailQuotesRequest).get$$call(), new A.TypedMiddleware(markSentQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentQuotesRequest).get$$call(), new A.TypedMiddleware(downloadQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadQuotesRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteDocumentRequest).get$$call()], t2)); viewSettings = A._viewSettings(); saveCompany = A._saveCompany(B.C_SettingsRepository); saveAuthUser = A._saveAuthUser(B.C_SettingsRepository); connectOAuthUser = A._connectOAuthUser(B.C_SettingsRepository); connectGmailUser = A._connectGmailUser(B.C_SettingsRepository); saveSettings = A._saveSettings(B.C_SettingsRepository); uploadLogo = A._uploadLogo(B.C_SettingsRepository); saveDocument = A._saveDocument7(B.C_SettingsRepository); disableTwoFactor = A._disableTwoFactor(B.C_SettingsRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewSettings, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSettings).get$$call(), new A.TypedMiddleware(saveCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyRequest).get$$call(), new A.TypedMiddleware(saveAuthUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveAuthUserRequest).get$$call(), new A.TypedMiddleware(connectOAuthUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConnecOAuthUserRequest).get$$call(), new A.TypedMiddleware(connectGmailUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConnecGmailUserRequest).get$$call(), new A.TypedMiddleware(disableTwoFactor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DisableTwoFactorRequest).get$$call(), new A.TypedMiddleware(saveSettings, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserSettingsRequest).get$$call(), new A.TypedMiddleware(uploadLogo, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UploadLogoRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyDocumentRequest).get$$call()], t2)); viewReports = A._viewReports(); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewReports, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewReports).get$$call()], t2)); viewPurchaseOrderList = A._viewPurchaseOrderList(); viewPurchaseOrder = A._viewPurchaseOrder(); editPurchaseOrder = A._editPurchaseOrder(); showEmailPurchaseOrder = A._showEmailPurchaseOrder(); showPdfPurchaseOrder = A._showPdfPurchaseOrder(); approvePurchaseOrder = A._approvePurchaseOrder(B.C_PurchaseOrderRepository); loadPurchaseOrders = A._loadPurchaseOrders(B.C_PurchaseOrderRepository); loadPurchaseOrder = A._loadPurchaseOrder(B.C_PurchaseOrderRepository); savePurchaseOrder = A._savePurchaseOrder(B.C_PurchaseOrderRepository); archivePurchaseOrder = A._archivePurchaseOrder(B.C_PurchaseOrderRepository); deletePurchaseOrder = A._deletePurchaseOrder(B.C_PurchaseOrderRepository); restorePurchaseOrder = A._restorePurchaseOrder(B.C_PurchaseOrderRepository); emailPurchaseOrder = A._emailPurchaseOrder(B.C_PurchaseOrderRepository); bulkEmailPurchaseOrders = A._bulkEmailPurchaseOrders(B.C_PurchaseOrderRepository); markSentPurchaseOrder = A._markSentPurchaseOrder(B.C_PurchaseOrderRepository); convertPurchaseOrdersToExpense = A._convertPurchaseOrdersToExpense(B.C_PurchaseOrderRepository); addPurchaseOrdersToInventory = A._addPurchaseOrdersToInventory(B.C_PurchaseOrderRepository); acceptPurchaseOrders = A._acceptPurchaseOrders(B.C_PurchaseOrderRepository); cancelPurchaseOrders = A._cancelPurchaseOrders(B.C_PurchaseOrderRepository); downloadPurchaseOrders = A._downloadPurchaseOrders(B.C_PurchaseOrderRepository); saveDocument = A._saveDocument8(B.C_PurchaseOrderRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewPurchaseOrderList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPurchaseOrderList).get$$call(), new A.TypedMiddleware(viewPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPurchaseOrder).get$$call(), new A.TypedMiddleware(editPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditPurchaseOrder).get$$call(), new A.TypedMiddleware(approvePurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ApprovePurchaseOrders).get$$call(), new A.TypedMiddleware(showEmailPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailPurchaseOrder).get$$call(), new A.TypedMiddleware(showPdfPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfPurchaseOrder).get$$call(), new A.TypedMiddleware(loadPurchaseOrders, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPurchaseOrders).get$$call(), new A.TypedMiddleware(loadPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPurchaseOrder).get$$call(), new A.TypedMiddleware(savePurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePurchaseOrderRequest).get$$call(), new A.TypedMiddleware(archivePurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(deletePurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeletePurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(restorePurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestorePurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(emailPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailPurchaseOrderRequest).get$$call(), new A.TypedMiddleware(bulkEmailPurchaseOrders, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailPurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(markSentPurchaseOrder, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkPurchaseOrdersSentRequest).get$$call(), new A.TypedMiddleware(convertPurchaseOrdersToExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConvertPurchaseOrdersToExpensesRequest).get$$call(), new A.TypedMiddleware(addPurchaseOrdersToInventory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_AddPurchaseOrdersToInventoryRequest).get$$call(), new A.TypedMiddleware(acceptPurchaseOrders, type$.TypedMiddleware_of_legacy_AppState_and_legacy_AcceptPurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(cancelPurchaseOrders, type$.TypedMiddleware_of_legacy_AppState_and_legacy_CancelPurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(downloadPurchaseOrders, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadPurchaseOrdersRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePurchaseOrderDocumentRequest).get$$call()], t2)); viewRecurringExpenseList = A._viewRecurringExpenseList(); viewRecurringExpense = A._viewRecurringExpense(); editRecurringExpense = A._editRecurringExpense(); loadRecurringExpenses = A._loadRecurringExpenses(B.C_RecurringExpenseRepository); loadRecurringExpense = A._loadRecurringExpense(B.C_RecurringExpenseRepository); saveRecurringExpense = A._saveRecurringExpense(B.C_RecurringExpenseRepository); archiveRecurringExpense = A._archiveRecurringExpense(B.C_RecurringExpenseRepository); deleteRecurringExpense = A._deleteRecurringExpense(B.C_RecurringExpenseRepository); restoreRecurringExpense = A._restoreRecurringExpense(B.C_RecurringExpenseRepository); startRecurringExpense = A._startRecurringExpense(B.C_RecurringExpenseRepository); stopRecurringExpense = A._stopRecurringExpense(B.C_RecurringExpenseRepository); saveDocument = A._saveDocument9(B.C_RecurringExpenseRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewRecurringExpenseList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpenseList).get$$call(), new A.TypedMiddleware(viewRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpense).get$$call(), new A.TypedMiddleware(editRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringExpense).get$$call(), new A.TypedMiddleware(loadRecurringExpenses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpenses).get$$call(), new A.TypedMiddleware(loadRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpense).get$$call(), new A.TypedMiddleware(saveRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseRequest).get$$call(), new A.TypedMiddleware(archiveRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringExpensesRequest).get$$call(), new A.TypedMiddleware(deleteRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringExpensesRequest).get$$call(), new A.TypedMiddleware(restoreRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringExpensesRequest).get$$call(), new A.TypedMiddleware(startRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringExpensesRequest).get$$call(), new A.TypedMiddleware(stopRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringExpensesRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseDocumentRequest).get$$call()], t2)); viewSubscriptionList = A._viewSubscriptionList(); viewSubscription = A._viewSubscription(); editSubscription = A._editSubscription(); loadSubscriptions = A._loadSubscriptions(B.C_SubscriptionRepository); loadSubscription = A._loadSubscription(B.C_SubscriptionRepository); saveSubscription = A._saveSubscription(B.C_SubscriptionRepository); archiveSubscription = A._archiveSubscription(B.C_SubscriptionRepository); deleteSubscription = A._deleteSubscription(B.C_SubscriptionRepository); restoreSubscription = A._restoreSubscription(B.C_SubscriptionRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewSubscriptionList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscriptionList).get$$call(), new A.TypedMiddleware(viewSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscription).get$$call(), new A.TypedMiddleware(editSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditSubscription).get$$call(), new A.TypedMiddleware(loadSubscriptions, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscriptions).get$$call(), new A.TypedMiddleware(loadSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscription).get$$call(), new A.TypedMiddleware(saveSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveSubscriptionRequest).get$$call(), new A.TypedMiddleware(archiveSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveSubscriptionsRequest).get$$call(), new A.TypedMiddleware(deleteSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteSubscriptionsRequest).get$$call(), new A.TypedMiddleware(restoreSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreSubscriptionsRequest).get$$call()], t2)); viewTaskStatusList = A._viewTaskStatusList(); viewTaskStatus = A._viewTaskStatus(); editTaskStatus = A._editTaskStatus(); loadTaskStatuses = A._loadTaskStatuses(B.C_TaskStatusRepository); loadTaskStatus = A._loadTaskStatus(B.C_TaskStatusRepository); saveTaskStatus = A._saveTaskStatus(B.C_TaskStatusRepository); archiveTaskStatus = A._archiveTaskStatus(B.C_TaskStatusRepository); deleteTaskStatus = A._deleteTaskStatus(B.C_TaskStatusRepository); restoreTaskStatus = A._restoreTaskStatus(B.C_TaskStatusRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewTaskStatusList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatusList).get$$call(), new A.TypedMiddleware(viewTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatus).get$$call(), new A.TypedMiddleware(editTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTaskStatus).get$$call(), new A.TypedMiddleware(loadTaskStatuses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatuses).get$$call(), new A.TypedMiddleware(loadTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatus).get$$call(), new A.TypedMiddleware(saveTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskStatusRequest).get$$call(), new A.TypedMiddleware(archiveTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskStatusesRequest).get$$call(), new A.TypedMiddleware(deleteTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskStatusesRequest).get$$call(), new A.TypedMiddleware(restoreTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskStatusesRequest).get$$call()], t2)); viewExpenseCategoryList = A._viewExpenseCategoryList(); viewExpenseCategory = A._viewExpenseCategory(); editExpenseCategory = A._editExpenseCategory(); loadExpenseCategories = A._loadExpenseCategories(B.C_ExpenseCategoryRepository); loadExpenseCategory = A._loadExpenseCategory(B.C_ExpenseCategoryRepository); saveExpenseCategory = A._saveExpenseCategory(B.C_ExpenseCategoryRepository); archiveExpenseCategory = A._archiveExpenseCategory(B.C_ExpenseCategoryRepository); deleteExpenseCategory = A._deleteExpenseCategory(B.C_ExpenseCategoryRepository); restoreExpenseCategory = A._restoreExpenseCategory(B.C_ExpenseCategoryRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewExpenseCategoryList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategoryList).get$$call(), new A.TypedMiddleware(viewExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategory).get$$call(), new A.TypedMiddleware(editExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditExpenseCategory).get$$call(), new A.TypedMiddleware(loadExpenseCategories, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategories).get$$call(), new A.TypedMiddleware(loadExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategory).get$$call(), new A.TypedMiddleware(saveExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseCategoryRequest).get$$call(), new A.TypedMiddleware(archiveExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseCategoriesRequest).get$$call(), new A.TypedMiddleware(deleteExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseCategoriesRequest).get$$call(), new A.TypedMiddleware(restoreExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseCategoriesRequest).get$$call()], t2)); viewRecurringInvoiceList = A._viewRecurringInvoiceList(); viewRecurringInvoice = A._viewRecurringInvoice(); editRecurringInvoice = A._editRecurringInvoice(); showPdfRecurringInvoice = A._showPdfRecurringInvoice(); loadRecurringInvoices = A._loadRecurringInvoices(B.C_RecurringInvoiceRepository); loadRecurringInvoice = A._loadRecurringInvoice(B.C_RecurringInvoiceRepository); saveRecurringInvoice = A._saveRecurringInvoice(B.C_RecurringInvoiceRepository); archiveRecurringInvoice = A._archiveRecurringInvoice(B.C_RecurringInvoiceRepository); deleteRecurringInvoice = A._deleteRecurringInvoice(B.C_RecurringInvoiceRepository); restoreRecurringInvoice = A._restoreRecurringInvoice(B.C_RecurringInvoiceRepository); startRecurringInvoice = A._startRecurringInvoice(B.C_RecurringInvoiceRepository); stopRecurringInvoice = A._stopRecurringInvoice(B.C_RecurringInvoiceRepository); sendNowRecurringInvoice = A._sendNowRecurringInvoice(B.C_RecurringInvoiceRepository); saveDocument = A._saveDocument10(B.C_RecurringInvoiceRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewRecurringInvoiceList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoiceList).get$$call(), new A.TypedMiddleware(viewRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoice).get$$call(), new A.TypedMiddleware(editRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringInvoice).get$$call(), new A.TypedMiddleware(loadRecurringInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoices).get$$call(), new A.TypedMiddleware(loadRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoice).get$$call(), new A.TypedMiddleware(showPdfRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfRecurringInvoice).get$$call(), new A.TypedMiddleware(saveRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceRequest).get$$call(), new A.TypedMiddleware(archiveRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(deleteRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(restoreRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(startRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(stopRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(sendNowRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SendNowRecurringInvoicesRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceDocumentRequest).get$$call()], t2)); viewWebhookList = A._viewWebhookList(); viewWebhook = A._viewWebhook(); editWebhook = A._editWebhook(); loadWebhooks = A._loadWebhooks(B.C_WebhookRepository); loadWebhook = A._loadWebhook(B.C_WebhookRepository); saveWebhook = A._saveWebhook(B.C_WebhookRepository); archiveWebhook = A._archiveWebhook(B.C_WebhookRepository); deleteWebhook = A._deleteWebhook(B.C_WebhookRepository); restoreWebhook = A._restoreWebhook(B.C_WebhookRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewWebhookList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhookList).get$$call(), new A.TypedMiddleware(viewWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhook).get$$call(), new A.TypedMiddleware(editWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditWebhook).get$$call(), new A.TypedMiddleware(loadWebhooks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhooks).get$$call(), new A.TypedMiddleware(loadWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhook).get$$call(), new A.TypedMiddleware(saveWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveWebhookRequest).get$$call(), new A.TypedMiddleware(archiveWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveWebhooksRequest).get$$call(), new A.TypedMiddleware(deleteWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteWebhooksRequest).get$$call(), new A.TypedMiddleware(restoreWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreWebhooksRequest).get$$call()], t2)); viewTokenList = A._viewTokenList(); viewToken = A._viewToken(); editToken = A._editToken(); loadTokens = A._loadTokens(B.C_TokenRepository); loadToken = A._loadToken(B.C_TokenRepository); saveToken = A._saveToken(B.C_TokenRepository); archiveToken = A._archiveToken(B.C_TokenRepository); deleteToken = A._deleteToken(B.C_TokenRepository); restoreToken = A._restoreToken(B.C_TokenRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewTokenList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTokenList).get$$call(), new A.TypedMiddleware(viewToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewToken).get$$call(), new A.TypedMiddleware(editToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditToken).get$$call(), new A.TypedMiddleware(loadTokens, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTokens).get$$call(), new A.TypedMiddleware(loadToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadToken).get$$call(), new A.TypedMiddleware(saveToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTokenRequest).get$$call(), new A.TypedMiddleware(archiveToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTokensRequest).get$$call(), new A.TypedMiddleware(deleteToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTokensRequest).get$$call(), new A.TypedMiddleware(restoreToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTokensRequest).get$$call()], t2)); viewPaymentTermList = A._viewPaymentTermList(); viewPaymentTerm = A._viewPaymentTerm(); editPaymentTerm = A._editPaymentTerm(); loadPaymentTerms = A._loadPaymentTerms(B.C_PaymentTermRepository); loadPaymentTerm = A._loadPaymentTerm(B.C_PaymentTermRepository); savePaymentTerm = A._savePaymentTerm(B.C_PaymentTermRepository); archivePaymentTerm = A._archivePaymentTerm(B.C_PaymentTermRepository); deletePaymentTerm = A._deletePaymentTerm(B.C_PaymentTermRepository); restorePaymentTerm = A._restorePaymentTerm(B.C_PaymentTermRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewPaymentTermList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTermList).get$$call(), new A.TypedMiddleware(viewPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTerm).get$$call(), new A.TypedMiddleware(editPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditPaymentTerm).get$$call(), new A.TypedMiddleware(loadPaymentTerms, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerms).get$$call(), new A.TypedMiddleware(loadPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerm).get$$call(), new A.TypedMiddleware(savePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentTermRequest).get$$call(), new A.TypedMiddleware(archivePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentTermsRequest).get$$call(), new A.TypedMiddleware(deletePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentTermsRequest).get$$call(), new A.TypedMiddleware(restorePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentTermsRequest).get$$call()], t2)); viewDesignList = A._viewDesignList(); viewDesign = A._viewDesign(); editDesign = A._editDesign(); loadDesigns = A._loadDesigns(B.C_DesignRepository); loadDesign = A._loadDesign(B.C_DesignRepository); saveDesign = A._saveDesign(B.C_DesignRepository); archiveDesign = A._archiveDesign(B.C_DesignRepository); deleteDesign = A._deleteDesign(B.C_DesignRepository); restoreDesign = A._restoreDesign(B.C_DesignRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewDesignList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesignList).get$$call(), new A.TypedMiddleware(viewDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesign).get$$call(), new A.TypedMiddleware(editDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditDesign).get$$call(), new A.TypedMiddleware(loadDesigns, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesigns).get$$call(), new A.TypedMiddleware(loadDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesign).get$$call(), new A.TypedMiddleware(saveDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveDesignRequest).get$$call(), new A.TypedMiddleware(archiveDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDesignsRequest).get$$call(), new A.TypedMiddleware(deleteDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDesignsRequest).get$$call(), new A.TypedMiddleware(restoreDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDesignsRequest).get$$call()], t2)); viewCreditList = A._viewCreditList(); viewCredit = A._viewCredit(); editCredit = A._editCredit(); showEmailCredit = A._showEmailCredit(); showPdfCredit = A._showPdfCredit(); loadCredits = A._loadCredits(B.C_CreditRepository); loadCredit = A._loadCredit(B.C_CreditRepository); saveCredit = A._saveCredit(B.C_CreditRepository); archiveCredit = A._archiveCredit(B.C_CreditRepository); deleteCredit = A._deleteCredit(B.C_CreditRepository); restoreCredit = A._restoreCredit(B.C_CreditRepository); emailCredit = A._emailCredit(B.C_CreditRepository); bulkEmailCredits = A._bulkEmailCredits(B.C_CreditRepository); markPaidCredit = A._markPaidCredit(B.C_CreditRepository); markSentCredit = A._markSentCredit(B.C_CreditRepository); downloadCredits = A._downloadCredits(B.C_CreditRepository); saveDocument = A._saveDocument11(B.C_CreditRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewCreditList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCreditList).get$$call(), new A.TypedMiddleware(viewCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCredit).get$$call(), new A.TypedMiddleware(editCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditCredit).get$$call(), new A.TypedMiddleware(showEmailCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailCredit).get$$call(), new A.TypedMiddleware(showPdfCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfCredit).get$$call(), new A.TypedMiddleware(loadCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredits).get$$call(), new A.TypedMiddleware(loadCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredit).get$$call(), new A.TypedMiddleware(saveCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditRequest).get$$call(), new A.TypedMiddleware(archiveCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCreditsRequest).get$$call(), new A.TypedMiddleware(deleteCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCreditsRequest).get$$call(), new A.TypedMiddleware(restoreCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCreditsRequest).get$$call(), new A.TypedMiddleware(emailCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailCreditRequest).get$$call(), new A.TypedMiddleware(bulkEmailCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailCreditsRequest).get$$call(), new A.TypedMiddleware(markSentCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentCreditRequest).get$$call(), new A.TypedMiddleware(markPaidCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkCreditsPaidRequest).get$$call(), new A.TypedMiddleware(downloadCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadCreditsRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditDocumentRequest).get$$call()], t2)); viewUserList = A._viewUserList(); viewUser = A._viewUser(); editUser = A._editUser(); loadUsers = A._loadUsers(B.C_UserRepository); loadUser = A._loadUser(B.C_UserRepository); saveUser = A._saveUser(B.C_UserRepository); archiveUser = A._archiveUser(B.C_UserRepository); deleteUser = A._deleteUser(B.C_UserRepository); restoreUser = A._restoreUser(B.C_UserRepository); removeUser = A._removeUser(B.C_UserRepository); resendInvite = A._resendInvite(B.C_UserRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewUserList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewUserList).get$$call(), new A.TypedMiddleware(viewUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewUser).get$$call(), new A.TypedMiddleware(editUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditUser).get$$call(), new A.TypedMiddleware(loadUsers, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadUsers).get$$call(), new A.TypedMiddleware(loadUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadUser).get$$call(), new A.TypedMiddleware(saveUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserRequest).get$$call(), new A.TypedMiddleware(archiveUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveUserRequest).get$$call(), new A.TypedMiddleware(deleteUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteUserRequest).get$$call(), new A.TypedMiddleware(restoreUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreUserRequest).get$$call(), new A.TypedMiddleware(removeUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RemoveUserRequest).get$$call(), new A.TypedMiddleware(resendInvite, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ResendInviteRequest).get$$call()], t2)); viewTaxRateList = A._viewTaxRateList(); viewTaxRate = A._viewTaxRate(); editTaxRate = A._editTaxRate(); loadTaxRates = A._loadTaxRates(B.C_TaxRateRepository); loadTaxRate = A._loadTaxRate(B.C_TaxRateRepository); saveTaxRate = A._saveTaxRate(B.C_TaxRateRepository); archiveTaxRate = A._archiveTaxRate(B.C_TaxRateRepository); deleteTaxRate = A._deleteTaxRate(B.C_TaxRateRepository); restoreTaxRate = A._restoreTaxRate(B.C_TaxRateRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewTaxRateList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRateList).get$$call(), new A.TypedMiddleware(viewTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRate).get$$call(), new A.TypedMiddleware(editTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTaxRate).get$$call(), new A.TypedMiddleware(loadTaxRates, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRates).get$$call(), new A.TypedMiddleware(loadTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRate).get$$call(), new A.TypedMiddleware(saveTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaxRateRequest).get$$call(), new A.TypedMiddleware(archiveTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaxRateRequest).get$$call(), new A.TypedMiddleware(deleteTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaxRateRequest).get$$call(), new A.TypedMiddleware(restoreTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaxRateRequest).get$$call()], t2)); viewCompanyGatewayList = A._viewCompanyGatewayList(); viewCompanyGateway = A._viewCompanyGateway(); editCompanyGateway = A._editCompanyGateway(); loadCompanyGateways = A._loadCompanyGateways(B.C_CompanyGatewayRepository); loadCompanyGateway = A._loadCompanyGateway(B.C_CompanyGatewayRepository); saveCompanyGateway = A._saveCompanyGateway(B.C_CompanyGatewayRepository); archiveCompanyGateway = A._archiveCompanyGateway(B.C_CompanyGatewayRepository); deleteCompanyGateway = A._deleteCompanyGateway(B.C_CompanyGatewayRepository); restoreCompanyGateway = A._restoreCompanyGateway(B.C_CompanyGatewayRepository); disconnectCompanyGateway = A._disconnectCompanyGateway(B.C_CompanyGatewayRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewCompanyGatewayList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGatewayList).get$$call(), new A.TypedMiddleware(viewCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGateway).get$$call(), new A.TypedMiddleware(editCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditCompanyGateway).get$$call(), new A.TypedMiddleware(loadCompanyGateways, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateways).get$$call(), new A.TypedMiddleware(loadCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateway).get$$call(), new A.TypedMiddleware(saveCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyGatewayRequest).get$$call(), new A.TypedMiddleware(archiveCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCompanyGatewayRequest).get$$call(), new A.TypedMiddleware(deleteCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyGatewayRequest).get$$call(), new A.TypedMiddleware(restoreCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCompanyGatewayRequest).get$$call(), new A.TypedMiddleware(disconnectCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DisconnectCompanyGatewayRequest).get$$call()], t2)); viewGroupList = A._viewGroupList(); viewGroup = A._viewGroup(); editGroup = A._editGroup(); loadGroups = A._loadGroups(B.C_GroupRepository); loadGroup = A._loadGroup(B.C_GroupRepository); saveGroup = A._saveGroup(B.C_GroupRepository); archiveGroup = A._archiveGroup(B.C_GroupRepository); deleteGroup = A._deleteGroup(B.C_GroupRepository); restoreGroup = A._restoreGroup(B.C_GroupRepository); saveDocument = A._saveDocument12(B.C_GroupRepository); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(viewGroupList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroupList).get$$call(), new A.TypedMiddleware(viewGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroup).get$$call(), new A.TypedMiddleware(editGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditGroup).get$$call(), new A.TypedMiddleware(loadGroups, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroups).get$$call(), new A.TypedMiddleware(loadGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroup).get$$call(), new A.TypedMiddleware(saveGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupRequest).get$$call(), new A.TypedMiddleware(archiveGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveGroupRequest).get$$call(), new A.TypedMiddleware(deleteGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteGroupRequest).get$$call(), new A.TypedMiddleware(restoreGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreGroupRequest).get$$call(), new A.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupDocumentRequest).get$$call()], t2)); loadState = A._createLoadState(B.PersistenceRepository_FileStorage_auth_state, B.PersistenceRepository_FileStorage_ui_state, B.PersistenceRepository_FileStorage_static_state, B.List_Ga5); accountLoaded = A._createAccountLoaded(); dataRefreshed = A._createDataRefreshed(); persistData = A._createPersistData(B.List_Ga5); persistStatic = A._createPersistStatic(B.PersistenceRepository_FileStorage_static_state); userLoggedIn = A._createUserLoggedIn(B.PersistenceRepository_FileStorage_auth_state, B.PersistenceRepository_FileStorage_ui_state, B.PersistenceRepository_FileStorage_static_state, B.List_Ga5); persistUI = A._createPersistUI(B.PersistenceRepository_FileStorage_ui_state); persistPrefs = A._createPersistPrefs(); clearDataState = A._createClearData(B.List_Ga5); deleteState = A._createDeleteState(B.PersistenceRepository_FileStorage_auth_state, B.PersistenceRepository_FileStorage_ui_state, B.PersistenceRepository_FileStorage_static_state, B.List_Ga5); viewMainScreen = A._createViewMainScreen(); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.TypedMiddleware(deleteState, t4).get$$call(), new A.TypedMiddleware(loadState, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadStateRequest).get$$call(), new A.TypedMiddleware(userLoggedIn, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginSuccess).get$$call(), new A.TypedMiddleware(accountLoaded, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadAccountSuccess).get$$call(), new A.TypedMiddleware(dataRefreshed, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefreshDataSuccess).get$$call(), new A.TypedMiddleware(persistData, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistData).get$$call(), new A.TypedMiddleware(persistStatic, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistStatic).get$$call(), new A.TypedMiddleware(persistUI, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistUI).get$$call(), new A.TypedMiddleware(persistPrefs, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistPrefs).get$$call(), new A.TypedMiddleware(viewMainScreen, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewMainScreen).get$$call(), new A.TypedMiddleware(clearDataState, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ClearPersistedData).get$$call()], t2)); t2 = A._setArrayType([], t2); B.JSArray_methods.addAll$1(t3, t2); store = new A.Store(A.app_reducer__appReducer$closure(), new A._AsyncBroadcastStreamController(null, null, type$._AsyncBroadcastStreamController_legacy_AppState), type$.Store_legacy_AppState); store.__Store__state = t1; t1 = store._createDispatchers$2(t3, store._createReduceAndNotify$1(false)); A._lateWriteOnceCheck(store.__Store__dispatchers, "_dispatchers"); store.__Store__dispatchers = t1; A.runApp(new A.InvoiceNinjaApp(store, null)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$main0, $async$completer); }, _initialState(isTesting) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_AppState), $async$returnValue, $async$next = [], e, exception, t1, browserRoute, reportErrors, referralCode, prefs, prefString, url, prefState; var $async$_initialState = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$_initialState); case 3: // returning from await. prefs = $async$result; prefString = prefs == null ? null : A._asStringQ(J.$index$asx(prefs._preferenceCache, "shared_prefs")); url = A.WebUtils_apiUrl(); prefState = A.PrefState_PrefState(); if (prefString != null) try { prefState = $.$get$serializers().deserializeWith$1$2($.$get$_$prefStateSerializer(), B.C_JsonCodec.decode$1(0, prefString), type$.legacy_PrefState); } catch (exception) { e = A.unwrapException(exception); A.print("Failed to load prefs: " + A.S(e)); } t1 = prefState.appLayout; if (t1 === B.AppLayout_desktop) { browserRoute = J.replaceFirst$2$s(window.location.hash, "#", ""); t1 = browserRoute.length; if (t1 !== 0 && t1 > 4) { if (browserRoute === "/kanban") { prefState = prefState.rebuild$1(new A._initialState_closure()); browserRoute = "/task"; } } else browserRoute = null; } else browserRoute = null; t1 = window.document.documentElement; t1.toString; reportErrors = t1.getAttribute("data-" + new A._DataAttributeMap(new A._ElementAttributeMap(t1))._toHyphenedName$1("report-errors")) === "1"; t1 = window.document.documentElement; t1.toString; referralCode = t1.getAttribute("data-" + new A._DataAttributeMap(new A._ElementAttributeMap(t1))._toHyphenedName$1("rc")); if (reportErrors) A.print("## Error reporting is enabled"); t1 = prefState; $async$returnValue = A.AppState_AppState(browserRoute, t1, referralCode, reportErrors, url); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_initialState, $async$completer); }, _initialState_closure: function _initialState_closure() { }, InvoiceNinjaApp: function InvoiceNinjaApp(t0, t1) { this.store = t0; this.key = t1; }, InvoiceNinjaAppState: function InvoiceNinjaAppState(t0) { var _ = this; _._authenticated = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, InvoiceNinjaAppState__authenticate_closure: function InvoiceNinjaAppState__authenticate_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_initState_closure: function InvoiceNinjaAppState_initState_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_generateRoute_closure: function InvoiceNinjaAppState_generateRoute_closure() { }, InvoiceNinjaAppState_generateRoute_closure0: function InvoiceNinjaAppState_generateRoute_closure0() { }, InvoiceNinjaAppState_build_closure: function InvoiceNinjaAppState_build_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_build__closure109: function InvoiceNinjaAppState_build__closure109(t0) { this.state = t0; }, InvoiceNinjaAppState_build__closure: function InvoiceNinjaAppState_build__closure() { }, InvoiceNinjaAppState_build__closure0: function InvoiceNinjaAppState_build__closure0() { }, InvoiceNinjaAppState_build__closure1: function InvoiceNinjaAppState_build__closure1() { }, InvoiceNinjaAppState_build__closure2: function InvoiceNinjaAppState_build__closure2(t0) { this.state = t0; }, InvoiceNinjaAppState_build__closure3: function InvoiceNinjaAppState_build__closure3() { }, InvoiceNinjaAppState_build__closure4: function InvoiceNinjaAppState_build__closure4() { }, InvoiceNinjaAppState_build__closure5: function InvoiceNinjaAppState_build__closure5() { }, InvoiceNinjaAppState_build__closure6: function InvoiceNinjaAppState_build__closure6() { }, InvoiceNinjaAppState_build__closure7: function InvoiceNinjaAppState_build__closure7() { }, InvoiceNinjaAppState_build__closure8: function InvoiceNinjaAppState_build__closure8() { }, InvoiceNinjaAppState_build__closure9: function InvoiceNinjaAppState_build__closure9() { }, InvoiceNinjaAppState_build__closure10: function InvoiceNinjaAppState_build__closure10() { }, InvoiceNinjaAppState_build__closure11: function InvoiceNinjaAppState_build__closure11() { }, InvoiceNinjaAppState_build__closure12: function InvoiceNinjaAppState_build__closure12() { }, InvoiceNinjaAppState_build__closure13: function InvoiceNinjaAppState_build__closure13() { }, InvoiceNinjaAppState_build__closure14: function InvoiceNinjaAppState_build__closure14() { }, InvoiceNinjaAppState_build__closure15: function InvoiceNinjaAppState_build__closure15() { }, InvoiceNinjaAppState_build__closure16: function InvoiceNinjaAppState_build__closure16() { }, InvoiceNinjaAppState_build__closure17: function InvoiceNinjaAppState_build__closure17() { }, InvoiceNinjaAppState_build__closure18: function InvoiceNinjaAppState_build__closure18() { }, InvoiceNinjaAppState_build__closure19: function InvoiceNinjaAppState_build__closure19() { }, InvoiceNinjaAppState_build__closure20: function InvoiceNinjaAppState_build__closure20() { }, InvoiceNinjaAppState_build__closure21: function InvoiceNinjaAppState_build__closure21() { }, InvoiceNinjaAppState_build__closure22: function InvoiceNinjaAppState_build__closure22() { }, InvoiceNinjaAppState_build__closure23: function InvoiceNinjaAppState_build__closure23() { }, InvoiceNinjaAppState_build__closure24: function InvoiceNinjaAppState_build__closure24() { }, InvoiceNinjaAppState_build__closure25: function InvoiceNinjaAppState_build__closure25() { }, InvoiceNinjaAppState_build__closure26: function InvoiceNinjaAppState_build__closure26() { }, InvoiceNinjaAppState_build__closure27: function InvoiceNinjaAppState_build__closure27() { }, InvoiceNinjaAppState_build__closure28: function InvoiceNinjaAppState_build__closure28() { }, InvoiceNinjaAppState_build__closure29: function InvoiceNinjaAppState_build__closure29() { }, InvoiceNinjaAppState_build__closure30: function InvoiceNinjaAppState_build__closure30() { }, InvoiceNinjaAppState_build__closure31: function InvoiceNinjaAppState_build__closure31() { }, InvoiceNinjaAppState_build__closure32: function InvoiceNinjaAppState_build__closure32() { }, InvoiceNinjaAppState_build__closure33: function InvoiceNinjaAppState_build__closure33() { }, InvoiceNinjaAppState_build__closure34: function InvoiceNinjaAppState_build__closure34() { }, InvoiceNinjaAppState_build__closure35: function InvoiceNinjaAppState_build__closure35() { }, InvoiceNinjaAppState_build__closure36: function InvoiceNinjaAppState_build__closure36() { }, InvoiceNinjaAppState_build__closure37: function InvoiceNinjaAppState_build__closure37() { }, InvoiceNinjaAppState_build__closure38: function InvoiceNinjaAppState_build__closure38() { }, InvoiceNinjaAppState_build__closure39: function InvoiceNinjaAppState_build__closure39() { }, InvoiceNinjaAppState_build__closure40: function InvoiceNinjaAppState_build__closure40() { }, InvoiceNinjaAppState_build__closure41: function InvoiceNinjaAppState_build__closure41() { }, InvoiceNinjaAppState_build__closure42: function InvoiceNinjaAppState_build__closure42() { }, InvoiceNinjaAppState_build__closure43: function InvoiceNinjaAppState_build__closure43() { }, InvoiceNinjaAppState_build__closure44: function InvoiceNinjaAppState_build__closure44() { }, InvoiceNinjaAppState_build__closure45: function InvoiceNinjaAppState_build__closure45() { }, InvoiceNinjaAppState_build__closure46: function InvoiceNinjaAppState_build__closure46() { }, InvoiceNinjaAppState_build__closure47: function InvoiceNinjaAppState_build__closure47() { }, InvoiceNinjaAppState_build__closure48: function InvoiceNinjaAppState_build__closure48() { }, InvoiceNinjaAppState_build__closure49: function InvoiceNinjaAppState_build__closure49() { }, InvoiceNinjaAppState_build__closure50: function InvoiceNinjaAppState_build__closure50() { }, InvoiceNinjaAppState_build__closure51: function InvoiceNinjaAppState_build__closure51() { }, InvoiceNinjaAppState_build__closure52: function InvoiceNinjaAppState_build__closure52() { }, InvoiceNinjaAppState_build__closure53: function InvoiceNinjaAppState_build__closure53() { }, InvoiceNinjaAppState_build__closure54: function InvoiceNinjaAppState_build__closure54() { }, InvoiceNinjaAppState_build__closure55: function InvoiceNinjaAppState_build__closure55() { }, InvoiceNinjaAppState_build__closure56: function InvoiceNinjaAppState_build__closure56() { }, InvoiceNinjaAppState_build__closure57: function InvoiceNinjaAppState_build__closure57() { }, InvoiceNinjaAppState_build__closure58: function InvoiceNinjaAppState_build__closure58() { }, InvoiceNinjaAppState_build__closure59: function InvoiceNinjaAppState_build__closure59() { }, InvoiceNinjaAppState_build__closure60: function InvoiceNinjaAppState_build__closure60() { }, InvoiceNinjaAppState_build__closure61: function InvoiceNinjaAppState_build__closure61() { }, InvoiceNinjaAppState_build__closure62: function InvoiceNinjaAppState_build__closure62() { }, InvoiceNinjaAppState_build__closure63: function InvoiceNinjaAppState_build__closure63() { }, InvoiceNinjaAppState_build__closure64: function InvoiceNinjaAppState_build__closure64() { }, InvoiceNinjaAppState_build__closure65: function InvoiceNinjaAppState_build__closure65() { }, InvoiceNinjaAppState_build__closure66: function InvoiceNinjaAppState_build__closure66() { }, InvoiceNinjaAppState_build__closure67: function InvoiceNinjaAppState_build__closure67() { }, InvoiceNinjaAppState_build__closure68: function InvoiceNinjaAppState_build__closure68() { }, InvoiceNinjaAppState_build__closure69: function InvoiceNinjaAppState_build__closure69() { }, InvoiceNinjaAppState_build__closure70: function InvoiceNinjaAppState_build__closure70() { }, InvoiceNinjaAppState_build__closure71: function InvoiceNinjaAppState_build__closure71() { }, InvoiceNinjaAppState_build__closure72: function InvoiceNinjaAppState_build__closure72() { }, InvoiceNinjaAppState_build__closure73: function InvoiceNinjaAppState_build__closure73() { }, InvoiceNinjaAppState_build__closure74: function InvoiceNinjaAppState_build__closure74() { }, InvoiceNinjaAppState_build__closure75: function InvoiceNinjaAppState_build__closure75() { }, InvoiceNinjaAppState_build__closure76: function InvoiceNinjaAppState_build__closure76() { }, InvoiceNinjaAppState_build__closure77: function InvoiceNinjaAppState_build__closure77() { }, InvoiceNinjaAppState_build__closure78: function InvoiceNinjaAppState_build__closure78() { }, InvoiceNinjaAppState_build__closure79: function InvoiceNinjaAppState_build__closure79() { }, InvoiceNinjaAppState_build__closure80: function InvoiceNinjaAppState_build__closure80() { }, InvoiceNinjaAppState_build__closure81: function InvoiceNinjaAppState_build__closure81() { }, InvoiceNinjaAppState_build__closure82: function InvoiceNinjaAppState_build__closure82() { }, InvoiceNinjaAppState_build__closure83: function InvoiceNinjaAppState_build__closure83() { }, InvoiceNinjaAppState_build__closure84: function InvoiceNinjaAppState_build__closure84() { }, InvoiceNinjaAppState_build__closure85: function InvoiceNinjaAppState_build__closure85() { }, InvoiceNinjaAppState_build__closure86: function InvoiceNinjaAppState_build__closure86() { }, InvoiceNinjaAppState_build__closure87: function InvoiceNinjaAppState_build__closure87() { }, InvoiceNinjaAppState_build__closure88: function InvoiceNinjaAppState_build__closure88() { }, InvoiceNinjaAppState_build__closure89: function InvoiceNinjaAppState_build__closure89() { }, InvoiceNinjaAppState_build__closure90: function InvoiceNinjaAppState_build__closure90() { }, InvoiceNinjaAppState_build__closure91: function InvoiceNinjaAppState_build__closure91() { }, InvoiceNinjaAppState_build__closure92: function InvoiceNinjaAppState_build__closure92() { }, InvoiceNinjaAppState_build__closure93: function InvoiceNinjaAppState_build__closure93() { }, InvoiceNinjaAppState_build__closure94: function InvoiceNinjaAppState_build__closure94() { }, InvoiceNinjaAppState_build__closure95: function InvoiceNinjaAppState_build__closure95() { }, InvoiceNinjaAppState_build__closure96: function InvoiceNinjaAppState_build__closure96() { }, InvoiceNinjaAppState_build__closure97: function InvoiceNinjaAppState_build__closure97() { }, InvoiceNinjaAppState_build__closure98: function InvoiceNinjaAppState_build__closure98() { }, InvoiceNinjaAppState_build__closure99: function InvoiceNinjaAppState_build__closure99() { }, InvoiceNinjaAppState_build__closure100: function InvoiceNinjaAppState_build__closure100() { }, InvoiceNinjaAppState_build__closure101: function InvoiceNinjaAppState_build__closure101() { }, InvoiceNinjaAppState_build__closure102: function InvoiceNinjaAppState_build__closure102() { }, InvoiceNinjaAppState_build__closure103: function InvoiceNinjaAppState_build__closure103() { }, InvoiceNinjaAppState_build__closure104: function InvoiceNinjaAppState_build__closure104() { }, InvoiceNinjaAppState_build__closure105: function InvoiceNinjaAppState_build__closure105() { }, InvoiceNinjaAppState_build__closure106: function InvoiceNinjaAppState_build__closure106() { }, InvoiceNinjaAppState_build__closure107: function InvoiceNinjaAppState_build__closure107() { }, InvoiceNinjaAppState_build__closure108: function InvoiceNinjaAppState_build__closure108() { }, MyCustomScrollBehavior: function MyCustomScrollBehavior(t0) { this._androidOverscrollIndicator = t0; }, UpdateUserPreferences$(appLayout, colorTheme, customColors, editAfterSaving, enableDarkMode, enableJSPDF, enableTooltips, enableTouchEvents, flexibleSearch, historyMode, isFilterVisible, isPreviewVisible, longPressSelectionIsDefault, menuMode, moduleLayout, persistData, persistUi, requireAuthentication, rowsPerPage, showKanban, showPdfPreview, $sidebar, tapSelectedToEdit, textScaleFactor) { return new A.UpdateUserPreferences(appLayout, moduleLayout, $sidebar, menuMode, historyMode, enableDarkMode, longPressSelectionIsDefault, requireAuthentication, isPreviewVisible, isFilterVisible, showKanban, rowsPerPage, colorTheme, persistData, persistUi, tapSelectedToEdit, textScaleFactor, showPdfPreview, enableJSPDF, customColors, editAfterSaving, enableTouchEvents, enableTooltips, flexibleSearch); }, viewEntitiesByType(entityType, filterEntity) { var store, uiState, t1 = {}, t2 = $.$get$navigatorKey(); t2.toString; store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), type$.legacy_AppState); uiState = A._lateReadCheck(store.__Store__state, "_state").uiState; t1.action = null; A.checkForChanges(new A.viewEntitiesByType_closure(t1, filterEntity, uiState, store, entityType), false, store); }, viewEntity(addToStack, entity, filterEntity, force) { return A.viewEntityById(addToStack, entity.get$id(entity), entity.get$entityType(), filterEntity, force, true); }, viewEntityById(addToStack, entityId, entityType, filterEntity, force, showError) { var store, t1 = $.$get$navigatorKey(); t1.toString; store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); A.checkForChanges(new A.viewEntityById_closure(addToStack, store, entityId, entityType, A._lateReadCheck(store.__Store__state, "_state"), filterEntity, A._lateReadCheck(store.__Store__state, "_state").uiState, showError, force), force, store); }, createEntityByType(applyFilter, context, entityType) { var store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; if (!t1._list[t2].userCompany.can$2(B.UserPermission_create, entityType)) return; A.checkForChanges(new A.createEntityByType_closure(state, store, entityType, applyFilter, false), false, store); }, createEntity(cancelCompleter, completer, context, entity, force) { var store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex; if (!t1._list[t2].userCompany.can$2(B.UserPermission_create, entity.get$entityType())) return; A.checkForChanges(new A.createEntity_closure(uiState, store, state, entity, force, completer, cancelCompleter), force, store); }, editEntity(completer, entity, $fullScreen, subIndex) { var context, store, state, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); A.checkForChanges(new A.editEntity_closure(state, entity.get$entityType(), $fullScreen, store, entity, completer, context, t1, subIndex), false, store); }, handleEntitiesActions(entities, action, autoPop) { var t1, store, context; if (entities.length === 0) return; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_remove], type$.JSArray_legacy_EntityAction), action) && autoPop) { t1 = $.$get$navigatorKey(); t1.toString; if (A.getLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1)) === B.AppLayout_mobile) t1.get$currentState().pop$0(0); else if (B.JSArray_methods.get$first(entities).get$entityType().get$isSetting()) { store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); switch (B.JSArray_methods.get$first(entities).get$entityType()) { case B.EntityType_paymentTerm: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/payment_terms")); break; case B.EntityType_taxRate: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/tax_settings_rates")); break; case B.EntityType_companyGateway: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/company_gateways")); break; case B.EntityType_user: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/user_management")); break; case B.EntityType_group: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/group_settings")); break; case B.EntityType_design: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/custom_designs")); break; case B.EntityType_token: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/tokens")); break; case B.EntityType_webhook: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/webhook")); break; case B.EntityType_expenseCategory: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/expense_category")); break; case B.EntityType_taskStatus: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/task_status")); break; case B.EntityType_subscription: store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/subscriptions")); break; default: A.print("ERROR: " + A.S(B.JSArray_methods.get$first(entities).get$entityType()) + " entity type not supported"); } } } t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); switch (B.JSArray_methods.get$first(entities).get$entityType()) { case B.EntityType_client: A.handleClientAction(context, entities, action); break; case B.EntityType_product: A.handleProductAction(context, entities, action); break; case B.EntityType_invoice: A.handleInvoiceAction(context, entities, action); break; case B.EntityType_payment: A.handlePaymentAction(context, entities, action); break; case B.EntityType_quote: A.handleQuoteAction(context, entities, action); break; case B.EntityType_task: A.handleTaskAction(context, entities, action); break; case B.EntityType_project: A.handleProjectAction(context, entities, action); break; case B.EntityType_expense: A.handleExpenseAction(context, entities, action); break; case B.EntityType_vendor: A.handleVendorAction(context, entities, action); break; case B.EntityType_user: A.handleUserAction(context, entities, action); break; case B.EntityType_companyGateway: A.handleCompanyGatewayAction(context, entities, action); break; case B.EntityType_taxRate: A.handleTaxRateAction(context, entities, action); break; case B.EntityType_group: A.handleGroupAction(context, entities, action); break; case B.EntityType_document: A.handleDocumentAction(context, entities, action); break; case B.EntityType_purchaseOrder: A.handlePurchaseOrderAction(context, entities, action); break; case B.EntityType_recurringExpense: A.handleRecurringExpenseAction(context, entities, action); break; case B.EntityType_subscription: A.handleSubscriptionAction(context, entities, action); break; case B.EntityType_taskStatus: A.handleTaskStatusAction(context, entities, action); break; case B.EntityType_expenseCategory: A.handleExpenseCategoryAction(context, entities, action); break; case B.EntityType_recurringInvoice: A.handleRecurringInvoiceAction(context, entities, action); break; case B.EntityType_webhook: A.handleWebhookAction(context, entities, action); break; case B.EntityType_token: A.handleTokenAction(context, entities, action); break; case B.EntityType_paymentTerm: A.handlePaymentTermAction(context, entities, action); break; case B.EntityType_design: A.handleDesignAction(context, entities, action); break; case B.EntityType_credit: A.handleCreditAction(context, entities, action); break; default: A.print("Error: unhandled type " + A.S(B.JSArray_methods.get$first(entities).get$entityType()) + " in handleEntitiesActions"); } }, selectEntity(entity, forceView, longPress) { var context, store, state, uiState, entityUIState, t2, client, _null = null, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); uiState = state.uiState; entityUIState = state.getUIState$1(entity.get$entityType()); t1 = state.getUIState$1(entity.get$entityType()).get$listUIState().selectedIds; if (longPress) { t1 = state.prefState; t2 = t1.longPressSelectionIsDefault; if ((t2 || t1.moduleLayout === B.ModuleLayout_table) && uiState.currentRoute !== "/dashboard") A.handleEntitiesActions(A._setArrayType([entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_toggleMultiselect, false); else A.editEntity(_null, entity, true, _null); } else if (t1 != null && !forceView) A.handleEntitiesActions(A._setArrayType([entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_toggleMultiselect, false); else if (A.getLayout(context) === B.AppLayout_desktop && !state.prefState.isPreviewVisible) if (uiState.get$isEditing() && entityUIState.get$editingId() === entity.get$id(entity)) A.viewEntitiesByType(entity.get$entityType(), _null); else { t1 = entity.get$entityType(); t1.toString; if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), t1) && !state.prefState.isPreviewVisible) store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, entity, _null, false); } else { if (A.getLayout(context) === B.AppLayout_desktop) t1 = uiState.get$isEditing() || uiState.previewStack._list.length !== 0; else t1 = false; if (t1) A.viewEntity(false, entity, _null, false); else { if (A.getLayout(context) === B.AppLayout_desktop) if (!forceView) t1 = !uiState.get$isEditing() && !B.JSString_methods.endsWith$1(uiState.currentRoute, "/email") && !entity.get$entityType().get$isSetting() && entityUIState.get$selectedId() === entity.get$id(entity); else t1 = false; else t1 = false; if (t1) if (entityUIState.get$tabIndex(entityUIState) > 0) store.get$_dispatchers()[0].call$1(new A.PreviewEntity(_null, _null)); else { t1 = state.prefState; if (t1.tapSelectedToEdit) A.editEntity(_null, entity, true, _null); else if (t1.moduleLayout !== B.ModuleLayout_list) store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); } else { if (forceView && type$.legacy_BelongsToClient._is(entity)) { t1 = state.userCompanyStates; t2 = uiState.selectedCompanyIndex; client = t1._list[t2].clientState.$get$1(0, entity.get$clientId(entity)); } else client = _null; A.viewEntity(false, entity, client, false); } } } }, inspectEntity(entity, longPress) { var store, state, previewStack, entityType, t1 = $.$get$navigatorKey(); t1.toString; store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); previewStack = state.uiState.previewStack; if (A.getLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1)) === B.AppLayout_desktop) if (longPress) A.viewEntity(false, entity, null, false); else { t1 = previewStack._list; if (t1.length !== 0) { entityType = B.JSArray_methods.get$last(t1); A.viewEntityById(false, state.getUIState$1(entityType).get$selectedId(), entityType, entity, false, true); } else store.get$_dispatchers()[0].call$1(new A.FilterByEntity(entity, false)); } else if (longPress) A.showEntityActionsDialog(null, A._setArrayType([entity], type$.JSArray_legacy_BaseEntity), false); else A.viewEntity(false, entity, null, false); }, checkForChanges(callback, force, store) { var context, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); if (force) { store.get$_dispatchers()[0].call$1(new A.DiscardChanges()); store.get$_dispatchers()[0].call$1(new A.ResetSettings()); callback.call$0(); } else if (A._lateReadCheck(store.__Store__state, "_state").hasChanges$0() && A.getLayout(context) !== B.AppLayout_mobile) A.showDialog(null, true, new A.checkForChanges_closure(context, store, callback), context, null, true, type$.legacy_MessageDialog); else callback.call$0(); }, PersistData: function PersistData() { }, ClearPersistedData: function ClearPersistedData() { }, SwitchListTableLayout: function SwitchListTableLayout() { }, PopLastHistory: function PopLastHistory() { }, DismissNativeWarning: function DismissNativeWarning() { }, DismissNativeWarningPermanently: function DismissNativeWarningPermanently() { }, DismissGatewayWarningPermanently: function DismissGatewayWarningPermanently() { }, ViewMainScreen: function ViewMainScreen() { }, StartSaving: function StartSaving() { }, StopSaving: function StopSaving() { }, LoadStaticSuccess: function LoadStaticSuccess(t0) { this.data = t0; }, ToggleEditorLayout: function ToggleEditorLayout(t0) { this.entityType = t0; }, ToggleViewerLayout: function ToggleViewerLayout(t0) { this.entityType = t0; }, TogglePreviewSidebar: function TogglePreviewSidebar() { }, UpdateUserPreferences: function UpdateUserPreferences(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.appLayout = t0; _.moduleLayout = t1; _.sidebar = t2; _.menuMode = t3; _.historyMode = t4; _.enableDarkMode = t5; _.longPressSelectionIsDefault = t6; _.requireAuthentication = t7; _.isPreviewVisible = t8; _.isFilterVisible = t9; _.showKanban = t10; _.rowsPerPage = t11; _.colorTheme = t12; _.persistData = t13; _.persistUi = t14; _.tapSelectedToEdit = t15; _.textScaleFactor = t16; _.showPdfPreview = t17; _.enableJSPDF = t18; _.customColors = t19; _.editAfterSaving = t20; _.enableTouchEvents = t21; _.enableTooltips = t22; _.flexibleSearch = t23; }, LoadAccountSuccess: function LoadAccountSuccess(t0, t1) { this.completer = t0; this.loginResponse = t1; }, ResendConfirmation: function ResendConfirmation() { }, ResendConfirmationFailure: function ResendConfirmationFailure() { }, ResendConfirmationSuccess: function ResendConfirmationSuccess() { }, RefreshData: function RefreshData(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.clearData = t1; _.includeStatic = t2; _.allCompanies = t3; }, RefreshDataSuccess: function RefreshDataSuccess(t0, t1) { this.completer = t0; this.data = t1; }, RefreshDataFailure: function RefreshDataFailure(t0) { this.error = t0; }, PreviewEntity: function PreviewEntity(t0, t1) { this.entityId = t0; this.entityType = t1; }, ClearPreviewStack: function ClearPreviewStack() { }, PopPreviewStack: function PopPreviewStack() { }, PopFilterStack: function PopFilterStack() { }, ClearData: function ClearData() { }, ClearLastError: function ClearLastError() { }, DiscardChanges: function DiscardChanges() { }, ClearEntityFilter: function ClearEntityFilter() { }, ClearEntitySelection: function ClearEntitySelection(t0) { this.entityType = t0; }, FilterByEntity: function FilterByEntity(t0, t1) { this.entity = t0; this.clearSelection = t1; }, FilterCompany: function FilterCompany(t0) { this.filter = t0; }, viewEntitiesByType_closure: function viewEntitiesByType_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.filterEntity = t1; _.uiState = t2; _.store = t3; _.entityType = t4; }, viewEntityById_closure: function viewEntityById_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.addToStack = t0; _.store = t1; _.entityId = t2; _.entityType = t3; _.state = t4; _.filterEntity = t5; _.uiState = t6; _.showError = t7; _.force = t8; }, viewEntityById__closure: function viewEntityById__closure(t0) { this.state = t0; }, createEntityByType_closure: function createEntityByType_closure(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.store = t1; _.entityType = t2; _.applyFilter = t3; _.force = t4; }, createEntity_closure: function createEntity_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.uiState = t0; _.store = t1; _.state = t2; _.entity = t3; _.force = t4; _.completer = t5; _.cancelCompleter = t6; }, editEntity_closure: function editEntity_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.entityType = t1; _.fullScreen = t2; _.store = t3; _.entity = t4; _.completer = t5; _.context = t6; _.localization = t7; _.subIndex = t8; }, checkForChanges_closure: function checkForChanges_closure(t0, t1, t2) { this.context = t0; this.store = t1; this.callback = t2; }, checkForChanges__closure: function checkForChanges__closure(t0, t1) { this.store = t0; this.callback = t1; }, _createLoadState(authRepository, uiRepository, staticRepository, companyRepositories) { var t1 = {}; t1.staticState = t1.uiState = t1.authState = null; return new A._createLoadState_closure(t1, authRepository, uiRepository, staticRepository, companyRepositories, A._setArrayType([], type$.JSArray_legacy_UserCompanyState)); }, _getRoutes(state) { var t1 = {}, routes = A._setArrayType([], type$.JSArray_legacy_String); t1.route = ""; t1.entityType = null; new A.WhereIterable(A._setArrayType(state.uiState.currentRoute.split("/"), type$.JSArray_String), new A._getRoutes_closure(), type$.WhereIterable_String).forEach$1(0, new A._getRoutes_closure0(t1, state, routes)); return routes; }, _createUserLoggedIn(authRepository, uiRepository, staticRepository, companyRepositories) { return new A._createUserLoggedIn_closure(authRepository, uiRepository, staticRepository, companyRepositories); }, _createPersistData(companyRepositories) { return new A._createPersistData_closure(companyRepositories); }, _createPersistUI(uiRepository) { return new A._createPersistUI_closure(uiRepository); }, _createPersistPrefs() { return new A._createPersistPrefs_closure(); }, _createAccountLoaded() { return new A._createAccountLoaded_closure(); }, _createDataRefreshed() { return new A._createDataRefreshed_closure(); }, _createPersistStatic(staticRepository) { return new A._createPersistStatic_closure(staticRepository); }, _createDeleteState(authRepository, uiRepository, staticRepository, companyRepositories) { return new A._createDeleteState_closure(authRepository, uiRepository, staticRepository, companyRepositories); }, _createViewMainScreen() { return new A._createViewMainScreen_closure(); }, _createClearData(companyRepositories) { return new A._createClearData_closure(companyRepositories); }, _createLoadState_closure: function _createLoadState_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_1 = t0; _.authRepository = t1; _.uiRepository = t2; _.staticRepository = t3; _.companyRepositories = t4; _.companyStates = t5; }, _createLoadState__closure: function _createLoadState__closure(t0) { this.state = t0; }, _createLoadState__closure0: function _createLoadState__closure0(t0, t1) { this._box_1 = t0; this.companyStates = t1; }, _createLoadState__closure1: function _createLoadState__closure1(t0) { this.store = t0; }, _createLoadState__closure2: function _createLoadState__closure2(t0, t1) { this._box_0 = t0; this.navigator = t1; }, _createLoadState__closure3: function _createLoadState__closure3(t0) { this.store = t0; }, _getRoutes_closure: function _getRoutes_closure() { }, _getRoutes_closure0: function _getRoutes_closure0(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.routes = t2; }, _createUserLoggedIn_closure: function _createUserLoggedIn_closure(t0, t1, t2, t3) { var _ = this; _.authRepository = t0; _.uiRepository = t1; _.staticRepository = t2; _.companyRepositories = t3; }, _createPersistData_closure: function _createPersistData_closure(t0) { this.companyRepositories = t0; }, _createPersistUI_closure: function _createPersistUI_closure(t0) { this.uiRepository = t0; }, _createPersistUI__closure: function _createPersistUI__closure(t0, t1) { this.uiRepository = t0; this.store = t1; }, _createPersistPrefs_closure: function _createPersistPrefs_closure() { }, _createPersistPrefs__closure: function _createPersistPrefs__closure(t0) { this.string = t0; }, _createAccountLoaded_closure: function _createAccountLoaded_closure() { }, _createDataRefreshed_closure: function _createDataRefreshed_closure() { }, _createPersistStatic_closure: function _createPersistStatic_closure(t0) { this.staticRepository = t0; }, _createDeleteState_closure: function _createDeleteState_closure(t0, t1, t2, t3) { var _ = this; _.authRepository = t0; _.uiRepository = t1; _.staticRepository = t2; _.companyRepositories = t3; }, _createDeleteState__closure: function _createDeleteState__closure() { }, _createViewMainScreen_closure: function _createViewMainScreen_closure() { }, _createViewMainScreen__closure: function _createViewMainScreen__closure() { }, _createClearData_closure: function _createClearData_closure(t0) { this.companyRepositories = t0; }, _createClearData__closure: function _createClearData__closure() { }, appReducer(state, action) { var t1, t2, t3; if (action instanceof A.UserLogout) { t1 = state.prefState; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; return A.AppState_AppState(null, t1, null, t2._list[t3].userCompany.account.reportErrors, null).rebuild$1(new A.appReducer_closure(state)); } else if (action instanceof A.LoadStateSuccess) return action.state.rebuild$1(new A.appReducer_closure0()); else if (action instanceof A.ClearData) return state.rebuild$1(new A.appReducer_closure1(state)); return state.rebuild$1(new A.appReducer_closure2(state, action)); }, appReducer_closure: function appReducer_closure(t0) { this.state = t0; }, appReducer__closure: function appReducer__closure() { }, appReducer_closure0: function appReducer_closure0() { }, appReducer_closure1: function appReducer_closure1(t0) { this.state = t0; }, appReducer_closure2: function appReducer_closure2(t0, t1) { this.state = t0; this.action = t1; }, lastErrorReducer_closure: function lastErrorReducer_closure() { }, lastErrorReducer_closure0: function lastErrorReducer_closure0() { }, lastErrorReducer_closure1: function lastErrorReducer_closure1() { }, lastErrorReducer_closure2: function lastErrorReducer_closure2() { }, lastErrorReducer_closure3: function lastErrorReducer_closure3() { }, lastErrorReducer_closure4: function lastErrorReducer_closure4() { }, lastErrorReducer_closure5: function lastErrorReducer_closure5() { }, lastErrorReducer_closure6: function lastErrorReducer_closure6() { }, lastErrorReducer_closure7: function lastErrorReducer_closure7() { }, lastErrorReducer_closure8: function lastErrorReducer_closure8() { }, lastErrorReducer_closure9: function lastErrorReducer_closure9() { }, lastErrorReducer_closure10: function lastErrorReducer_closure10() { }, lastErrorReducer_closure11: function lastErrorReducer_closure11() { }, lastErrorReducer_closure12: function lastErrorReducer_closure12() { }, lastErrorReducer_closure13: function lastErrorReducer_closure13() { }, lastErrorReducer_closure14: function lastErrorReducer_closure14() { }, lastErrorReducer_closure15: function lastErrorReducer_closure15() { }, lastErrorReducer_closure16: function lastErrorReducer_closure16() { }, lastErrorReducer_closure17: function lastErrorReducer_closure17() { }, lastErrorReducer_closure18: function lastErrorReducer_closure18() { }, lastErrorReducer_closure19: function lastErrorReducer_closure19() { }, dismissedNativeWarningReducer_closure: function dismissedNativeWarningReducer_closure() { }, dismissedNativeWarningReducer_closure0: function dismissedNativeWarningReducer_closure0() { }, AppState_AppState(currentRoute, prefState, referralCode, reportErrors, url) { var t2, _list, i, i0, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, _null = null, _s4_ = "name", _s6_ = "number", t1 = url == null ? "" : url; t1 = A._$AuthState$_("", false, false, 0, referralCode == null ? "" : referralCode, t1); t2 = A.StaticState_StaticState(); _list = J.JSArray_JSArray$allocateGrowable(10, type$.legacy_int); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t3 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,UserCompanyState*>"); t3 = A.BuiltList_BuiltList$from(A.List_List$of(new A.MappedListIterable(_list, new A.AppState_AppState_closure(reportErrors), t3), true, t3._eval$1("ListIterable.E")), type$.legacy_UserCompanyState); t4 = prefState == null; t5 = t4 ? _null : prefState.sortFields; t6 = currentRoute == null ? "/login" : currentRoute; t7 = type$.legacy_EntityType; t8 = A.BuiltList_BuiltList$from(B.List_empty, t7); t9 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_BaseEntity); t10 = A.convertDateTimeToSqlDate(_null); t10 = A._$DashboardUISettings$_(A.convertDateTimeToSqlDate(_null), "", B.DateRangeComparison_previousPeriod, "-1", t10, "", B.DateRange_last30Days, true, true, 0); t10 = A._$DashboardUIState$_(A.BuiltMap_BuiltMap(B.Map_empty0, t7, type$.legacy_BuiltList_legacy_String), B.EntityType_invoice, t10, true); t7 = A.CompanyEntity_CompanyEntity(); t11 = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t12 = A.GroupEntity_GroupEntity(_null, _null); t13 = A.UserEntity_UserEntity(_null, _null, _null); t14 = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t15 = A.GroupEntity_GroupEntity(_null, _null); t16 = A.CompanyEntity_CompanyEntity(); t17 = A.UserEntity_UserEntity(_null, _null, _null); t7 = A._$SettingsUIState$_(t11, t7, B.EntityType_company, _null, 0, t12, false, t14, t16, t15, t17, "company_details", B.EmailTemplate_invoice, 0, 0, t13); t11 = A.ReportsUIState_ReportsUIState(); t5 = t5._map$_map; t12 = t5.$index(0, B.EntityType_product); t13 = t12 == null; t14 = t13 ? _null : t12.field; if (t14 == null) t14 = "product_key"; t12 = A.ListUIState_ListUIState(t14, t13 ? _null : t12.ascending); t12 = A._$ProductUIState$_(_null, A.ProductEntity_ProductEntity(_null, _null), _null, t12, _null, "", 0); t14 = t5.$index(0, B.EntityType_client); t13 = t14 == null; t15 = t13 ? _null : t14.field; if (t15 == null) t15 = _s4_; t14 = A.ListUIState_ListUIState(t15, t13 ? _null : t14.ascending); t14 = A._$ClientUIState$_(_null, A.ClientEntity_ClientEntity(_null, _null, _null, _null), A.ClientContactEntity_ClientContactEntity(), _null, t14, _null, _null, 0); t15 = t5.$index(0, B.EntityType_invoice); t13 = t15 == null; t16 = t13 ? _null : t15.field; if (t16 == null) t16 = _s6_; t13 = t13 ? _null : t15.ascending; t13 = A.ListUIState_ListUIState(t16, t13 === true); t13 = A._$InvoiceUIState$_(_null, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), _null, _null, _null, t13, _null, "", 0); t15 = t5.$index(0, B.EntityType_subscription); t16 = t15 == null; t17 = t16 ? _null : t15.field; if (t17 == null) t17 = "created_at"; t15 = A.ListUIState_ListUIState(t17, t16 ? _null : t15.ascending); t15 = A._$SubscriptionUIState$_(_null, A.SubscriptionEntity_SubscriptionEntity(_null, _null), _null, t15, _null, "", 0); t17 = t5.$index(0, B.EntityType_taskStatus); t16 = t17 == null; t18 = t16 ? _null : t17.field; if (t18 == null) t18 = "order"; t17 = A.ListUIState_ListUIState(t18, t16 ? _null : t17.ascending); t17 = A._$TaskStatusUIState$_(_null, A.TaskStatusEntity_TaskStatusEntity(_null, _null), _null, t17, _null, "", 0); t18 = t5.$index(0, B.EntityType_expenseCategory); t16 = t18 == null; t19 = t16 ? _null : t18.field; if (t19 == null) t19 = _s4_; t18 = A.ListUIState_ListUIState(t19, t16 ? _null : t18.ascending); t18 = A._$ExpenseCategoryUIState$_(_null, A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null), _null, t18, _null, "", 0); t19 = t5.$index(0, B.EntityType_recurringInvoice); t16 = t19 == null; t20 = t16 ? _null : t19.field; if (t20 == null) t20 = _s6_; t16 = t16 ? _null : t19.ascending; t16 = A.ListUIState_ListUIState(t20, t16 === true); t16 = A._$RecurringInvoiceUIState$_(_null, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), _null, _null, _null, t16, _null, "", 0); t19 = t5.$index(0, B.EntityType_webhook); t20 = t19 == null; t21 = t20 ? _null : t19.field; if (t21 == null) t21 = "target_url"; t19 = A.ListUIState_ListUIState(t21, t20 ? _null : t19.ascending); t19 = A._$WebhookUIState$_(_null, A.WebhookEntity_WebhookEntity(_null, _null), _null, t19, _null, "", 0); t21 = t5.$index(0, B.EntityType_token); t20 = t21 == null; t22 = t20 ? _null : t21.field; if (t22 == null) t22 = _s4_; t21 = A.ListUIState_ListUIState(t22, t20 ? _null : t21.ascending); t21 = A._$TokenUIState$_(_null, A.TokenEntity_TokenEntity(_null, _null), _null, t21, _null, "", 0); t22 = t5.$index(0, B.EntityType_paymentTerm); t20 = t22 == null; t23 = t20 ? _null : t22.field; if (t23 == null) t23 = _s4_; t22 = A.ListUIState_ListUIState(t23, t20 ? _null : t22.ascending); t22 = A._$PaymentTermUIState$_(_null, A.PaymentTermEntity_PaymentTermEntity(_null, _null), _null, t22, _null, "", 0); t23 = t5.$index(0, B.EntityType_design); t20 = t23 == null; t24 = t20 ? _null : t23.field; if (t24 == null) t24 = _s4_; t23 = A.ListUIState_ListUIState(t24, t20 ? _null : t23.ascending); t23 = A._$DesignUIState$_(_null, A.DesignEntity_DesignEntity(_null, _null, _null), _null, t23, _null, "", 0); t24 = t5.$index(0, B.EntityType_credit); t20 = t24 == null; t25 = t20 ? _null : t24.field; if (t25 == null) t25 = _s6_; t20 = t20 ? _null : t24.ascending; t20 = A.ListUIState_ListUIState(t25, t20 === true); t20 = A._$CreditUIState$_(_null, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), _null, _null, _null, t20, _null, "", 0); t24 = t5.$index(0, B.EntityType_user); t25 = t24 == null; t26 = t25 ? _null : t24.field; if (t26 == null) t26 = "first_name"; t24 = A.ListUIState_ListUIState(t26, t25 ? _null : t24.ascending); t24 = A._$UserUIState$_(_null, A.UserEntity_UserEntity(_null, _null, _null), _null, t24, _null, "", 0); t26 = t5.$index(0, B.EntityType_taxRate); t25 = t26 == null; t27 = t25 ? _null : t26.field; if (t27 == null) t27 = _s4_; t26 = A.ListUIState_ListUIState(t27, t25 ? _null : t26.ascending); t26 = A._$TaxRateUIState$_(_null, A.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), _null, t26, _null, "", 0); t27 = t5.$index(0, B.EntityType_companyGateway); t25 = t27 == null; t28 = t25 ? _null : t27.field; if (t28 == null) t28 = _s4_; t27 = A.ListUIState_ListUIState(t28, t25 ? _null : t27.ascending); t27 = A._$CompanyGatewayUIState$_(_null, A.CompanyGatewayEntity_CompanyGatewayEntity(_null, _null), _null, t27, _null, "", 0); t28 = t5.$index(0, B.EntityType_group); t25 = t28 == null; t29 = t25 ? _null : t28.field; if (t29 == null) t29 = _s4_; t28 = A.ListUIState_ListUIState(t29, t25 ? _null : t28.ascending); t28 = A._$GroupUIState$_(_null, A.GroupEntity_GroupEntity(_null, _null), _null, t28, _null, "", 0); t29 = t5.$index(0, B.EntityType_document); t25 = t29 == null; t30 = t25 ? _null : t29.field; if (t30 == null) t30 = _s4_; t29 = A.ListUIState_ListUIState(t30, t25 ? _null : t29.ascending); t29 = A._$DocumentUIState$_(_null, A.DocumentEntity_DocumentEntity(_null), _null, t29, _null, "", 0); t30 = t5.$index(0, B.EntityType_expense); t25 = t30 == null; t31 = t25 ? _null : t30.field; if (t31 == null) t31 = _s6_; t25 = t25 ? _null : t30.ascending; t25 = A.ListUIState_ListUIState(t31, t25 === true); t25 = A._$ExpenseUIState$_(_null, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null), _null, t25, _null, "", 0); t30 = t5.$index(0, B.EntityType_vendor); t31 = t30 == null; t32 = t31 ? _null : t30.field; if (t32 == null) t32 = _s4_; t30 = A.ListUIState_ListUIState(t32, t31 ? _null : t30.ascending); t30 = A._$VendorUIState$_(_null, A.VendorEntity_VendorEntity(_null, _null, _null), A.VendorContactEntity_VendorContactEntity(), _null, t30, _null, "", 0); t32 = t5.$index(0, B.EntityType_task); t31 = t32 == null; t33 = t31 ? _null : t32.field; if (t33 == null) t33 = _s6_; t31 = t31 ? _null : t32.ascending; t31 = A.ListUIState_ListUIState(t33, t31 === true); t31 = A._$TaskUIState$_(_null, A.TaskEntity_TaskEntity(_null, _null, _null, _null, _null), _null, _null, 0, t31, _null, "", 0); t32 = t5.$index(0, B.EntityType_project); t33 = t32 == null; t34 = t33 ? _null : t32.field; if (t34 == null) t34 = _s6_; t32 = t33 ? _null : t32.ascending; t32 = A.ListUIState_ListUIState(t34, t32 === true); t32 = A._$ProjectUIState$_(_null, A.ProjectEntity_ProjectEntity(_null, _null, _null, _null), _null, t32, _null, "", 0); t33 = t5.$index(0, B.EntityType_payment); t34 = t33 == null; t35 = t34 ? _null : t33.field; if (t35 == null) t35 = _s6_; t33 = t34 ? _null : t33.ascending; t33 = A.ListUIState_ListUIState(t35, t33 === true); t33 = A._$PaymentUIState$_(_null, A.PaymentEntity_PaymentEntity(_null, _null, _null), _null, t33, _null, "", 0); t34 = t5.$index(0, B.EntityType_quote); t35 = t34 == null; t36 = t35 ? _null : t34.field; if (t36 == null) t36 = _s6_; t34 = t35 ? _null : t34.ascending; t34 = A.ListUIState_ListUIState(t36, t34 === true); t34 = A._$QuoteUIState$_(_null, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), _null, _null, _null, t34, _null, "", 0); t35 = t5.$index(0, B.EntityType_purchaseOrder); t36 = t35 == null; t37 = t36 ? _null : t35.field; if (t37 == null) t37 = _s6_; t35 = A.ListUIState_ListUIState(t37, t36 ? _null : t35.ascending); t35 = A._$PurchaseOrderUIState$_(_null, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), _null, _null, _null, t35, _null, "", 0); t5 = t5.$index(0, B.EntityType_recurringExpense); t36 = t5 == null; t37 = t36 ? _null : t5.field; if (t37 == null) t37 = _s6_; t5 = A.ListUIState_ListUIState(t37, t36 ? _null : t5.ascending); t19 = A._$UIState$_(t14, t27, t20, t6, t10, t23, t29, t18, t25, _null, 0, t9, t28, t13, 0, _null, t22, t33, t8, "", t12, t32, t35, t34, A._$RecurringExpenseUIState$_(_null, A.ExpenseEntity_ExpenseEntity(_null, B.EntityType_recurringExpense, _null, _null, _null, _null, _null), _null, t5, _null, "", 0), t16, t11, 0, t7, t15, t17, t31, t26, t21, t24, t30, t19); return A._$AppState$_(t1, false, false, false, false, "", t4 ? A.PrefState_PrefState() : prefState, t2, t19, t3); }, _$AppState$_(authState, dismissedNativeWarning, isLoading, isSaving, isTesting, lastError, prefState, staticState, uiState, userCompanyStates) { var _s8_ = "AppState"; if (staticState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "staticState")); if (prefState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "prefState")); if (uiState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "uiState")); if (userCompanyStates == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "userCompanyStates")); return new A._$AppState(isLoading, isSaving, isTesting, dismissedNativeWarning, lastError, authState, staticState, prefState, uiState, userCompanyStates); }, AppState: function AppState() { }, AppState_AppState_closure: function AppState_AppState_closure(t0) { this.reportErrors = t0; }, AppState_companies_closure: function AppState_companies_closure() { }, AppState_historyList_closure: function AppState_historyList_closure(t0) { this.$this = t0; }, Credentials: function Credentials(t0, t1) { this.url = t0; this.token = t1; }, SelectionState: function SelectionState(t0, t1, t2) { this.selectedId = t0; this.filterEntityId = t1; this.filterEntityType = t2; }, _$AppStateSerializer: function _$AppStateSerializer() { }, _$AppState: function _$AppState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.isLoading = t0; _.isSaving = t1; _.isTesting = t2; _.dismissedNativeWarning = t3; _.lastError = t4; _.authState = t5; _.staticState = t6; _.prefState = t7; _.uiState = t8; _.userCompanyStates = t9; _._app_state$__hashCode = null; }, AppStateBuilder: function AppStateBuilder() { var _ = this; _._userCompanyStates = _._uiState = _._prefState = _._staticState = _._authState = _._lastError = _._dismissedNativeWarning = _._isTesting = _._isSaving = _._isLoading = _._app_state$_$v = null; }, LoadStateRequest: function LoadStateRequest(t0) { this.context = t0; }, LoadStateSuccess: function LoadStateSuccess(t0) { this.state = t0; }, OAuthLoginRequest: function OAuthLoginRequest(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.completer = t0; _.email = t1; _.idToken = t2; _.accessToken = t3; _.url = t4; _.secret = t5; _.platform = t6; _.provider = t7; _.authCode = t8; }, UserLoadUrl: function UserLoadUrl(t0) { this.url = t0; }, UserLoginRequest: function UserLoginRequest(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.completer = t0; _.email = t1; _.password = t2; _.url = t3; _.secret = t4; _.platform = t5; _.oneTimePassword = t6; }, UserLoginSuccess: function UserLoginSuccess() { }, UserLoginFailure: function UserLoginFailure() { }, RecoverPasswordRequest: function RecoverPasswordRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.email = t1; _.url = t2; _.secret = t3; }, RecoverPasswordSuccess: function RecoverPasswordSuccess() { }, RecoverPasswordFailure: function RecoverPasswordFailure() { }, UserLogout: function UserLogout() { }, UserLogoutAll: function UserLogoutAll(t0) { this.completer = t0; }, UserLogoutAllSuccess: function UserLogoutAllSuccess() { }, UserLogoutAllFailure: function UserLogoutAllFailure() { }, UserSignUpRequest: function UserSignUpRequest(t0, t1, t2) { this.completer = t0; this.email = t1; this.password = t2; }, OAuthSignUpRequest: function OAuthSignUpRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.idToken = t1; _.url = t2; _.accessToken = t3; _.provider = t4; }, UserVerifiedPassword: function UserVerifiedPassword() { }, UserUnverifiedPassword: function UserUnverifiedPassword() { }, _saveAuthLocal(url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic); var $async$_saveAuthLocal = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$_saveAuthLocal); case 2: // returning from await. $async$result._setValue$3("String", "url", A.formatApiUrl(url)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_saveAuthLocal, $async$completer); }, _createUserLogout() { return new A._createUserLogout_closure(); }, _createUserLogoutAll(repository) { return new A._createUserLogoutAll_closure(repository); }, _createLoginRequest(repository) { return new A._createLoginRequest_closure(repository); }, _createSignUpRequest(repository) { return new A._createSignUpRequest_closure(repository); }, _createOAuthLoginRequest(repository) { return new A._createOAuthLoginRequest_closure(repository); }, _createOAuthSignUpRequest(repository) { return new A._createOAuthSignUpRequest_closure(repository); }, _createRefreshRequest(repository) { return new A._createRefreshRequest_closure(repository); }, _createRecoverRequest(repository) { return new A._createRecoverRequest_closure(repository); }, _createCompany(repository) { return new A._createCompany_closure(repository); }, _setDefaultCompany(repository) { return new A._setDefaultCompany_closure(repository); }, _deleteCompany(repository) { return new A._deleteCompany_closure(repository); }, _purgeData(repository) { return new A._purgeData_closure(repository); }, _resendConfirmation(repository) { return new A._resendConfirmation_closure(repository); }, _parseError0(error) { var lastIndex, secondToLastIndex, _s28_ = "failed due to: Deserializing"; if (B.JSString_methods.contains$1(error, _s28_)) { lastIndex = B.JSString_methods.lastIndexOf$1(error, _s28_); secondToLastIndex = B.JSString_methods.lastIndexOf$1(B.JSString_methods.substring$2(error, 0, B.JSString_methods.lastIndexOf$1(error, _s28_)), _s28_); error = "Error :: " + B.JSString_methods.trim$0(B.JSString_methods.substring$1(error, (secondToLastIndex >= 0 ? secondToLastIndex : lastIndex) + 28)); } else if (B.JSString_methods.contains$1(error.toLowerCase(), "no host specified")) error = "An error occurred, please check the URL is correct"; else if (B.JSString_methods.contains$1(error, "404")) error += ", you may need to add /public to the URL"; return error; }, _createUserLogout_closure: function _createUserLogout_closure() { }, _createUserLogout__closure: function _createUserLogout__closure() { }, _createUserLogoutAll_closure: function _createUserLogoutAll_closure(t0) { this.repository = t0; }, _createUserLogoutAll__closure: function _createUserLogoutAll__closure(t0) { this.store = t0; }, _createUserLogoutAll__closure0: function _createUserLogoutAll__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createLoginRequest_closure: function _createLoginRequest_closure(t0) { this.repository = t0; }, _createLoginRequest__closure: function _createLoginRequest__closure(t0, t1) { this.action = t0; this.store = t1; }, _createLoginRequest__closure0: function _createLoginRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createSignUpRequest_closure: function _createSignUpRequest_closure(t0) { this.repository = t0; }, _createSignUpRequest__closure: function _createSignUpRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createSignUpRequest__closure0: function _createSignUpRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthLoginRequest_closure: function _createOAuthLoginRequest_closure(t0) { this.repository = t0; }, _createOAuthLoginRequest__closure: function _createOAuthLoginRequest__closure(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthLoginRequest__closure0: function _createOAuthLoginRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthSignUpRequest_closure: function _createOAuthSignUpRequest_closure(t0) { this.repository = t0; }, _createOAuthSignUpRequest__closure: function _createOAuthSignUpRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createOAuthSignUpRequest__closure0: function _createOAuthSignUpRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createRefreshRequest_closure: function _createRefreshRequest_closure(t0) { this.repository = t0; }, _createRefreshRequest__closure: function _createRefreshRequest__closure(t0, t1, t2) { this.state = t0; this.action = t1; this.store = t2; }, _createRefreshRequest___closure: function _createRefreshRequest___closure(t0, t1) { this._box_0 = t0; this.state = t1; }, _createRefreshRequest____closure: function _createRefreshRequest____closure(t0, t1) { this._box_0 = t0; this.userCompany = t1; }, _createRefreshRequest__closure0: function _createRefreshRequest__closure0(t0, t1) { this.store = t0; this.action = t1; }, _createRecoverRequest_closure: function _createRecoverRequest_closure(t0) { this.repository = t0; }, _createRecoverRequest__closure: function _createRecoverRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createRecoverRequest__closure0: function _createRecoverRequest__closure0(t0, t1) { this.store = t0; this.action = t1; }, _createCompany_closure: function _createCompany_closure(t0) { this.repository = t0; }, _createCompany__closure: function _createCompany__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _createCompany___closure: function _createCompany___closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _setDefaultCompany_closure: function _setDefaultCompany_closure(t0) { this.repository = t0; }, _setDefaultCompany__closure: function _setDefaultCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _setDefaultCompany__closure0: function _setDefaultCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompany_closure: function _deleteCompany_closure(t0) { this.repository = t0; }, _deleteCompany__closure: function _deleteCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompany__closure0: function _deleteCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _purgeData_closure: function _purgeData_closure(t0) { this.repository = t0; }, _purgeData__closure: function _purgeData__closure(t0, t1) { this.store = t0; this.action = t1; }, _purgeData___closure: function _purgeData___closure(t0) { this.action = t0; }, _purgeData__closure0: function _purgeData__closure0(t0, t1) { this.store = t0; this.action = t1; }, _resendConfirmation_closure: function _resendConfirmation_closure(t0) { this.repository = t0; }, _resendConfirmation__closure: function _resendConfirmation__closure(t0) { this.store = t0; }, _resendConfirmation__closure0: function _resendConfirmation__closure0(t0) { this.store = t0; }, userLoadUrlReducer(authState, action) { return authState.rebuild$1(new A.userLoadUrlReducer_closure(action)); }, userSignUpRequestReducer(authState, action) { return authState.rebuild$1(new A.userSignUpRequestReducer_closure()); }, userLoginRequestReducer(authState, action) { return authState.rebuild$1(new A.userLoginRequestReducer_closure(action)); }, oauthLoginRequestReducer(authState, action) { return authState.rebuild$1(new A.oauthLoginRequestReducer_closure(action)); }, oauthSignUpRequestReducer(authState, action) { return authState.rebuild$1(new A.oauthSignUpRequestReducer_closure()); }, userLoginSuccessReducer(authState, action) { return authState.rebuild$1(new A.userLoginSuccessReducer_closure()); }, userVerifiedPasswordReducer(authState, action) { return authState.rebuild$1(new A.userVerifiedPasswordReducer_closure()); }, userUnverifiedPasswordReducer(authState, action) { return authState.rebuild$1(new A.userUnverifiedPasswordReducer_closure()); }, userLoadUrlReducer_closure: function userLoadUrlReducer_closure(t0) { this.action = t0; }, userSignUpRequestReducer_closure: function userSignUpRequestReducer_closure() { }, userLoginRequestReducer_closure: function userLoginRequestReducer_closure(t0) { this.action = t0; }, oauthLoginRequestReducer_closure: function oauthLoginRequestReducer_closure(t0) { this.action = t0; }, oauthSignUpRequestReducer_closure: function oauthSignUpRequestReducer_closure() { }, userLoginSuccessReducer_closure: function userLoginSuccessReducer_closure() { }, userVerifiedPasswordReducer_closure: function userVerifiedPasswordReducer_closure() { }, userUnverifiedPasswordReducer_closure: function userUnverifiedPasswordReducer_closure() { }, _$AuthState$_(email, isAuthenticated, isInitialized, lastEnteredPasswordAt, referralCode, url) { return new A._$AuthState(email, url, isInitialized, isAuthenticated, lastEnteredPasswordAt, referralCode); }, AuthState: function AuthState() { }, _$AuthStateSerializer: function _$AuthStateSerializer() { }, _$AuthState: function _$AuthState(t0, t1, t2, t3, t4, t5) { var _ = this; _.email = t0; _.url = t1; _.isInitialized = t2; _.isAuthenticated = t3; _.lastEnteredPasswordAt = t4; _.referralCode = t5; _._auth_state$__hashCode = null; }, AuthStateBuilder: function AuthStateBuilder() { var _ = this; _._referralCode = _._lastEnteredPasswordAt = _._isAuthenticated = _._isInitialized = _._auth_state$_url = _._auth_state$_email = _._$v = null; }, handleClientAction(context, clients, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t2, clientIds, t3, client, contact, message, t4, documentIds, t1; var $async$handleClientAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.getInterceptor$asx(clients); if (t1.get$isEmpty(clients)) { // goto return $async$goto = 1; break; } store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); clientIds = t1.map$1$1(clients, new A.handleClientAction_closure(), type$.legacy_String).toList$0(0); t3 = type$.legacy_ClientEntity; client = t3._as(t1.$index(clients, 0)); switch (action) { case B.EntityAction_edit: A.editEntity(null, client, true, null); break; case B.EntityAction_viewStatement: store.get$_dispatchers()[0].call$1(new A.ShowPdfClient(client, context)); break; case B.EntityAction_clientPortal: contact = B.JSArray_methods.firstWhere$2$orElse(client.contacts._list, new A.handleClientAction_closure0(), null); if (contact != null) A.launch(contact.link + "?silent=true", null, false); break; case B.EntityAction_settings: store.get$_dispatchers()[0].call$1(new A.ViewSettings(null, null, client, null, false, "localization", false, null)); break; case B.EntityAction_newTask: A.createEntity(null, null, context, A.TaskEntity_TaskEntity(null, null, null, state, null).rebuild$1(new A.handleClientAction_closure1(client)), false); break; case B.EntityAction_newInvoice: A.createEntity(null, null, context, A.InvoiceEntity_InvoiceEntity(client, null, null, state, null, null), false); break; case B.EntityAction_newRecurringInvoice: A.createEntity(null, null, context, A.InvoiceEntity_InvoiceEntity(client, B.EntityType_recurringInvoice, null, state, null, null), false); break; case B.EntityAction_newRecurringExpense: A.createEntity(null, null, context, A.ExpenseEntity_ExpenseEntity(client, B.EntityType_recurringExpense, null, null, state, null, null), false); break; case B.EntityAction_newQuote: A.createEntity(null, null, context, A.InvoiceEntity_InvoiceEntity(client, B.EntityType_quote, null, state, null, null), false); break; case B.EntityAction_newCredit: A.createEntity(null, null, context, A.InvoiceEntity_InvoiceEntity(client, B.EntityType_credit, null, state, null, null), false); break; case B.EntityAction_newExpense: A.createEntity(null, null, context, A.ExpenseEntity_ExpenseEntity(client, null, null, null, state, null, null), false); break; case B.EntityAction_newPayment: A.createEntity(null, null, context, A.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new A.handleClientAction_closure2(client)), false); break; case B.EntityAction_newProject: A.createEntity(null, null, context, A.ProjectEntity_ProjectEntity(null, null, state, null).rebuild$1(new A.handleClientAction_closure3(client)), false); break; case B.EntityAction_restore: if (clientIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_clients"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(clientIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_client"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreClientsRequest(t1, clientIds)); break; case B.EntityAction_archive: if (clientIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_clients"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(clientIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_client"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveClientsRequest(t1, clientIds)); break; case B.EntityAction_delete: if (clientIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_clients"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(clientIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_client"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteClientsRequest(t1, clientIds)); break; case B.EntityAction_purge: A.confirmCallback(false, new A.handleClientAction_closure4(context, store, t2, client), context, t2.get$purge() + " - " + client.displayName, false, null); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.clientUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartClientMultiselect()); if (t1.get$isEmpty(clients)) break; for (t1 = t1.get$iterator(clients); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = state.uiState.clientUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.AddToClientMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.RemoveFromClientMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([client], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(clients); t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; case B.EntityAction_merge: A.showDialog(null, true, new A.handleClientAction_closure5(client), context, null, true, type$.void); break; default: A.print("## Error: action " + A.S(action) + " not handled in client_actions"); } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleClientAction, $async$completer); }, ViewClientList: function ViewClientList() { }, ViewClient: function ViewClient(t0) { this.clientId = t0; }, EditClient: function EditClient(t0, t1, t2) { this.client = t0; this.completer = t1; this.cancelCompleter = t2; }, EditContact: function EditContact(t0) { this.contact = t0; }, ShowPdfClient: function ShowPdfClient(t0, t1) { this.client = t0; this.context = t1; }, UpdateClient: function UpdateClient(t0) { this.client = t0; }, LoadClient: function LoadClient(t0, t1) { this.completer = t0; this.clientId = t1; }, LoadClients: function LoadClients(t0, t1) { this.completer = t0; this.page = t1; }, LoadClientRequest: function LoadClientRequest() { }, LoadClientFailure: function LoadClientFailure(t0) { this.error = t0; }, LoadClientSuccess: function LoadClientSuccess(t0) { this.client = t0; }, LoadClientsRequest: function LoadClientsRequest() { }, LoadClientsFailure: function LoadClientsFailure(t0) { this.error = t0; }, LoadClientsSuccess: function LoadClientsSuccess(t0) { this.clients = t0; }, AddContact: function AddContact(t0) { this.contact = t0; }, UpdateContact: function UpdateContact(t0, t1) { this.index = t0; this.contact = t1; }, DeleteContact: function DeleteContact(t0) { this.index = t0; }, SaveClientRequest: function SaveClientRequest(t0, t1) { this.completer = t0; this.client = t1; }, SaveClientSuccess: function SaveClientSuccess(t0) { this.client = t0; }, AddClientSuccess: function AddClientSuccess(t0) { this.client = t0; }, SaveClientFailure: function SaveClientFailure() { }, ArchiveClientsRequest: function ArchiveClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, ArchiveClientsSuccess: function ArchiveClientsSuccess(t0) { this.clients = t0; }, ArchiveClientsFailure: function ArchiveClientsFailure() { }, MergeClientsRequest: function MergeClientsRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.clientId = t1; _.mergeIntoClientId = t2; _.password = t3; _.idToken = t4; }, MergeClientsSuccess: function MergeClientsSuccess(t0) { this.clientId = t0; }, MergeClientsFailure: function MergeClientsFailure() { }, DeleteClientsRequest: function DeleteClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, DeleteClientsSuccess: function DeleteClientsSuccess(t0) { this.clients = t0; }, DeleteClientsFailure: function DeleteClientsFailure() { }, PurgeClientRequest: function PurgeClientRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.clientId = t1; _.password = t2; _.idToken = t3; }, PurgeClientSuccess: function PurgeClientSuccess(t0) { this.clientId = t0; }, PurgeClientFailure: function PurgeClientFailure() { }, RestoreClientsRequest: function RestoreClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, RestoreClientSuccess: function RestoreClientSuccess(t0) { this.clients = t0; }, RestoreClientFailure: function RestoreClientFailure() { }, FilterClients: function FilterClients(t0) { this.filter = t0; }, SortClients: function SortClients(t0) { this.field = t0; }, FilterClientsByState: function FilterClientsByState(t0) { this.state = t0; }, FilterClientsByCustom1: function FilterClientsByCustom1(t0) { this.value = t0; }, FilterClientsByCustom2: function FilterClientsByCustom2(t0) { this.value = t0; }, FilterClientsByCustom3: function FilterClientsByCustom3(t0) { this.value = t0; }, FilterClientsByCustom4: function FilterClientsByCustom4(t0) { this.value = t0; }, handleClientAction_closure: function handleClientAction_closure() { }, handleClientAction_closure0: function handleClientAction_closure0() { }, handleClientAction_closure1: function handleClientAction_closure1(t0) { this.client = t0; }, handleClientAction_closure2: function handleClientAction_closure2(t0) { this.client = t0; }, handleClientAction_closure3: function handleClientAction_closure3(t0) { this.client = t0; }, handleClientAction_closure4: function handleClientAction_closure4(t0, t1, t2, t3) { var _ = this; _.context = t0; _.store = t1; _.localization = t2; _.client = t3; }, handleClientAction__closure: function handleClientAction__closure(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.localization = t2; _.client = t3; }, handleClientAction_closure5: function handleClientAction_closure5(t0) { this.client = t0; }, StartClientMultiselect: function StartClientMultiselect() { }, AddToClientMultiselect: function AddToClientMultiselect(t0) { this.entity = t0; }, RemoveFromClientMultiselect: function RemoveFromClientMultiselect(t0) { this.entity = t0; }, ClearClientMultiselect: function ClearClientMultiselect() { }, SaveClientDocumentRequest: function SaveClientDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.client = t2; }, SaveClientDocumentFailure: function SaveClientDocumentFailure() { }, UpdateClientTab: function UpdateClientTab(t0) { this.tabIndex = t0; }, _MergClientPicker: function _MergClientPicker(t0, t1) { this.client = t0; this.key = t1; }, __MergClientPickerState: function __MergClientPickerState(t0) { var _ = this; _._widget = _._mergeIntoClientId = null; _._debugLifecycleState = t0; _._framework$_element = null; }, __MergClientPickerState_build_closure: function __MergClientPickerState_build_closure(t0) { this.$this = t0; }, __MergClientPickerState_build__closure0: function __MergClientPickerState_build__closure0(t0, t1) { this.$this = t0; this.client = t1; }, __MergClientPickerState_build_closure0: function __MergClientPickerState_build_closure0(t0) { this.context = t0; }, __MergClientPickerState_build_closure1: function __MergClientPickerState_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.store = t2; _.localization = t3; }, __MergClientPickerState_build__closure: function __MergClientPickerState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.store = t1; _.context = t2; _.localization = t3; }, _editClient() { return new A._editClient_closure(); }, _viewClient() { return new A._viewClient_closure(); }, _viewClientList() { return new A._viewClientList_closure1(); }, _archiveClient(repository) { return new A._archiveClient_closure(repository); }, _mergeClients(repository) { return new A._mergeClients_closure(repository); }, _deleteClient(repository) { return new A._deleteClient_closure(repository); }, _purgeClient(repository) { return new A._purgeClient_closure(repository); }, _restoreClient(repository) { return new A._restoreClient_closure(repository); }, _saveClient(repository) { return new A._saveClient_closure(repository); }, _loadClient(repository) { return new A._loadClient_closure(repository); }, _loadClients(repository) { return new A._loadClients_closure(repository); }, _saveDocument0(repository) { return new A._saveDocument_closure11(repository); }, _showPdfClient() { return new A._showPdfClient_closure(); }, _editClient_closure: function _editClient_closure() { }, _viewClient_closure: function _viewClient_closure() { }, _viewClientList_closure1: function _viewClientList_closure1() { }, _viewClientList__closure: function _viewClientList__closure() { }, _archiveClient_closure: function _archiveClient_closure(t0) { this.repository = t0; }, _archiveClient__closure: function _archiveClient__closure(t0) { this.store = t0; }, _archiveClient__closure0: function _archiveClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveClient__closure1: function _archiveClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _mergeClients_closure: function _mergeClients_closure(t0) { this.repository = t0; }, _mergeClients__closure: function _mergeClients__closure(t0, t1) { this.store = t0; this.action = t1; }, _mergeClients__closure0: function _mergeClients__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteClient_closure: function _deleteClient_closure(t0) { this.repository = t0; }, _deleteClient__closure: function _deleteClient__closure(t0) { this.store = t0; }, _deleteClient__closure0: function _deleteClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteClient__closure1: function _deleteClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _purgeClient_closure: function _purgeClient_closure(t0) { this.repository = t0; }, _purgeClient__closure: function _purgeClient__closure(t0, t1) { this.store = t0; this.action = t1; }, _purgeClient__closure0: function _purgeClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreClient_closure: function _restoreClient_closure(t0) { this.repository = t0; }, _restoreClient__closure: function _restoreClient__closure(t0) { this.store = t0; }, _restoreClient__closure0: function _restoreClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreClient__closure1: function _restoreClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _saveClient_closure: function _saveClient_closure(t0) { this.repository = t0; }, _saveClient__closure: function _saveClient__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveClient__closure0: function _saveClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadClient_closure: function _loadClient_closure(t0) { this.repository = t0; }, _loadClient__closure: function _loadClient__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadClient__closure0: function _loadClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadClients_closure: function _loadClients_closure(t0) { this.repository = t0; }, _loadClients__closure: function _loadClients__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadClients__closure0: function _loadClients__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure11: function _saveDocument_closure11(t0) { this.repository = t0; }, _saveDocument__closure23: function _saveDocument__closure23(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure24: function _saveDocument__closure24(t0, t1) { this.store = t0; this.action = t1; }, _showPdfClient_closure: function _showPdfClient_closure() { }, clientUIReducer(state, action) { var t1; state.toString; t1 = new A.ClientUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._client_state$_$v = state; new A.clientUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _viewClientList0(clientListState, action) { return clientListState.rebuild$1(new A._viewClientList_closure()); }, _filterClientsByCustom1(clientListState, action) { var t1 = clientListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return clientListState.rebuild$1(new A._filterClientsByCustom1_closure(action)); else return clientListState.rebuild$1(new A._filterClientsByCustom1_closure0(action)); }, _filterClientsByCustom2(clientListState, action) { var t1 = clientListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return clientListState.rebuild$1(new A._filterClientsByCustom2_closure(action)); else return clientListState.rebuild$1(new A._filterClientsByCustom2_closure0(action)); }, _filterClientsByCustom3(clientListState, action) { var t1 = clientListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return clientListState.rebuild$1(new A._filterClientsByCustom3_closure(action)); else return clientListState.rebuild$1(new A._filterClientsByCustom3_closure0(action)); }, _filterClientsByCustom4(clientListState, action) { var t1 = clientListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return clientListState.rebuild$1(new A._filterClientsByCustom4_closure(action)); else return clientListState.rebuild$1(new A._filterClientsByCustom4_closure0(action)); }, _filterClientsByState(clientListState, action) { var t1 = clientListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return clientListState.rebuild$1(new A._filterClientsByState_closure(action)); else return clientListState.rebuild$1(new A._filterClientsByState_closure0(action)); }, _filterClients(clientListState, action) { return clientListState.rebuild$1(new A._filterClients_closure(action, clientListState)); }, _sortClients(clientListState, action) { return clientListState.rebuild$1(new A._sortClients_closure(action)); }, _startListMultiselect(clientListState, action) { return clientListState.rebuild$1(new A._startListMultiselect_closure22()); }, _addToListMultiselect(clientListState, action) { return clientListState.rebuild$1(new A._addToListMultiselect_closure22(action)); }, _removeFromListMultiselect(clientListState, action) { return clientListState.rebuild$1(new A._removeFromListMultiselect_closure22(action)); }, _clearListMultiselect(clientListState, action) { return clientListState.rebuild$1(new A._clearListMultiselect_closure22()); }, _archiveClientSuccess(clientState, action) { return clientState.rebuild$1(new A._archiveClientSuccess_closure(action)); }, _deleteClientSuccess(clientState, action) { return clientState.rebuild$1(new A._deleteClientSuccess_closure(action)); }, _restoreClientSuccess(clientState, action) { return clientState.rebuild$1(new A._restoreClientSuccess_closure(action)); }, _addClient(clientState, action) { return clientState.rebuild$1(new A._addClient_closure(action)); }, _updateClient(clientState, action) { return clientState.rebuild$1(new A._updateClient_closure(action)); }, _setLoadedClient(clientState, action) { return clientState.rebuild$1(new A._setLoadedClient_closure(action)); }, _mergeClientSuccess(clientState, action) { return clientState.rebuild$1(new A._mergeClientSuccess_closure(action)); }, _purgeClientSuccess(clientState, action) { return clientState.rebuild$1(new A._purgeClientSuccess_closure(action)); }, _setLoadedClients(clientState, action) { return clientState.loadClients$1(action.clients); }, _setLoadedCompany(clientState, action) { return clientState.loadClients$1(action.userCompany.company.clients); }, clientUIReducer_closure: function clientUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure175: function forceSelectedReducer_closure175() { }, forceSelectedReducer_closure176: function forceSelectedReducer_closure176() { }, forceSelectedReducer_closure177: function forceSelectedReducer_closure177() { }, forceSelectedReducer_closure178: function forceSelectedReducer_closure178() { }, forceSelectedReducer_closure179: function forceSelectedReducer_closure179() { }, forceSelectedReducer_closure180: function forceSelectedReducer_closure180() { }, forceSelectedReducer_closure181: function forceSelectedReducer_closure181() { }, forceSelectedReducer_closure182: function forceSelectedReducer_closure182() { }, tabIndexReducer_closure23: function tabIndexReducer_closure23() { }, tabIndexReducer_closure24: function tabIndexReducer_closure24() { }, saveCompleterReducer_closure1: function saveCompleterReducer_closure1() { }, cancelCompleterReducer_closure1: function cancelCompleterReducer_closure1() { }, editingContactReducer_closure: function editingContactReducer_closure() { }, editingContactReducer_closure0: function editingContactReducer_closure0() { }, selectedIdReducer_closure354: function selectedIdReducer_closure354() { }, selectedIdReducer_closure355: function selectedIdReducer_closure355() { }, selectedIdReducer_closure356: function selectedIdReducer_closure356() { }, selectedIdReducer_closure357: function selectedIdReducer_closure357() { }, selectedIdReducer_closure358: function selectedIdReducer_closure358() { }, selectedIdReducer_closure359: function selectedIdReducer_closure359() { }, selectedIdReducer_closure360: function selectedIdReducer_closure360() { }, selectedIdReducer_closure361: function selectedIdReducer_closure361() { }, selectedIdReducer_closure362: function selectedIdReducer_closure362() { }, selectedIdReducer_closure363: function selectedIdReducer_closure363() { }, selectedIdReducer_closure364: function selectedIdReducer_closure364() { }, selectedIdReducer_closure365: function selectedIdReducer_closure365() { }, selectedIdReducer_closure366: function selectedIdReducer_closure366() { }, selectedIdReducer_closure367: function selectedIdReducer_closure367() { }, selectedIdReducer_closure368: function selectedIdReducer_closure368() { }, selectedIdReducer_closure369: function selectedIdReducer_closure369() { }, selectedIdReducer_closure370: function selectedIdReducer_closure370() { }, editingReducer_closure125: function editingReducer_closure125() { }, editingReducer_closure126: function editingReducer_closure126() { }, editingReducer_closure127: function editingReducer_closure127() { }, editingReducer_closure128: function editingReducer_closure128() { }, editingReducer_closure129: function editingReducer_closure129() { }, editingReducer_closure130: function editingReducer_closure130() { }, editingReducer_closure131: function editingReducer_closure131() { }, editingReducer__closure55: function editingReducer__closure55() { }, editingReducer_closure132: function editingReducer_closure132() { }, editingReducer__closure54: function editingReducer__closure54(t0) { this.action = t0; }, editingReducer_closure133: function editingReducer_closure133() { }, editingReducer__closure53: function editingReducer__closure53(t0) { this.action = t0; }, editingReducer_closure134: function editingReducer_closure134() { }, editingReducer__closure52: function editingReducer__closure52(t0) { this.action = t0; }, editingReducer_closure135: function editingReducer_closure135() { }, editingReducer_closure136: function editingReducer_closure136() { }, editingReducer_closure137: function editingReducer_closure137() { }, editingReducer_closure138: function editingReducer_closure138() { }, _viewClientList_closure: function _viewClientList_closure() { }, _filterClientsByCustom1_closure: function _filterClientsByCustom1_closure(t0) { this.action = t0; }, _filterClientsByCustom1_closure0: function _filterClientsByCustom1_closure0(t0) { this.action = t0; }, _filterClientsByCustom2_closure: function _filterClientsByCustom2_closure(t0) { this.action = t0; }, _filterClientsByCustom2_closure0: function _filterClientsByCustom2_closure0(t0) { this.action = t0; }, _filterClientsByCustom3_closure: function _filterClientsByCustom3_closure(t0) { this.action = t0; }, _filterClientsByCustom3_closure0: function _filterClientsByCustom3_closure0(t0) { this.action = t0; }, _filterClientsByCustom4_closure: function _filterClientsByCustom4_closure(t0) { this.action = t0; }, _filterClientsByCustom4_closure0: function _filterClientsByCustom4_closure0(t0) { this.action = t0; }, _filterClientsByState_closure: function _filterClientsByState_closure(t0) { this.action = t0; }, _filterClientsByState_closure0: function _filterClientsByState_closure0(t0) { this.action = t0; }, _filterClients_closure: function _filterClients_closure(t0, t1) { this.action = t0; this.clientListState = t1; }, _sortClients_closure: function _sortClients_closure(t0) { this.action = t0; }, _startListMultiselect_closure22: function _startListMultiselect_closure22() { }, _addToListMultiselect_closure22: function _addToListMultiselect_closure22(t0) { this.action = t0; }, _removeFromListMultiselect_closure22: function _removeFromListMultiselect_closure22(t0) { this.action = t0; }, _clearListMultiselect_closure22: function _clearListMultiselect_closure22() { }, _archiveClientSuccess_closure: function _archiveClientSuccess_closure(t0) { this.action = t0; }, _deleteClientSuccess_closure: function _deleteClientSuccess_closure(t0) { this.action = t0; }, _restoreClientSuccess_closure: function _restoreClientSuccess_closure(t0) { this.action = t0; }, _addClient_closure: function _addClient_closure(t0) { this.action = t0; }, _addClient__closure: function _addClient__closure() { }, _updateClient_closure: function _updateClient_closure(t0) { this.action = t0; }, _updateClient__closure: function _updateClient__closure() { }, _setLoadedClient_closure: function _setLoadedClient_closure(t0) { this.action = t0; }, _setLoadedClient__closure: function _setLoadedClient__closure() { }, _mergeClientSuccess_closure: function _mergeClientSuccess_closure(t0) { this.action = t0; }, _purgeClientSuccess_closure: function _purgeClientSuccess_closure(t0) { this.action = t0; }, dropdownClientsSelector(clientMap, clientList, userMap, staticState) { var t1 = clientList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownClientsSelector_closure(clientMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownClientsSelector_closure0(clientMap, userMap, staticState)); return list; }, clientStatsForUser(userId, clientMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; clientMap._map$_map.forEach$1(0, new A.clientStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, filteredClientsSelector(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = clientList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredClientsSelector_closure(clientMap, groupMap, selectionState, filterEntityType, filterEntityId, clientListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredClientsSelector_closure0(clientMap, clientListState, userMap, staticState)); return list; }, getClientSettings(state, client) { var t1, t2, company, _null = null; if (state == null) return A.SettingsEntity_SettingsEntity(_null, _null, _null); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2]; company = t2.userCompany.company; t2 = t2.groupState.$get$1(0, client.groupId).settings; return A.SettingsEntity_SettingsEntity(client.settings, company.settings, t2); }, getVendorSettings(state, vendor) { var t1, company, t2, _null = null; if (vendor == null) A.VendorEntity_VendorEntity(_null, _null, _null); t1 = state.uiState.selectedCompanyIndex; company = state.userCompanyStates._list[t1].userCompany.company; t1 = A.SettingsEntity_SettingsEntity(_null, _null, _null); t2 = A.SettingsEntity_SettingsEntity(_null, _null, _null); return A.SettingsEntity_SettingsEntity(t1, company.settings, t2); }, memoizedDropdownClientList_closure: function memoizedDropdownClientList_closure() { }, dropdownClientsSelector_closure: function dropdownClientsSelector_closure(t0) { this.clientMap = t0; }, dropdownClientsSelector_closure0: function dropdownClientsSelector_closure0(t0, t1, t2) { this.clientMap = t0; this.userMap = t1; this.staticState = t2; }, memoizedClientStatsForUser_closure: function memoizedClientStatsForUser_closure() { }, clientStatsForUser_closure: function clientStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedFilteredClientList_closure: function memoizedFilteredClientList_closure() { }, filteredClientsSelector_closure: function filteredClientsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.clientMap = t0; _.groupMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.clientListState = t5; }, filteredClientsSelector__closure: function filteredClientsSelector__closure(t0) { this.filterEntityId = t0; }, filteredClientsSelector_closure0: function filteredClientsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.clientMap = t0; _.clientListState = t1; _.userMap = t2; _.staticState = t3; }, _$ClientState$_(list, map) { var _s11_ = "ClientState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "list")); return new A._$ClientState(map, list); }, _$ClientUIState$_(cancelCompleter, editing, editingContact, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("ClientUIState", "listUIState")); return new A._$ClientUIState(editing, editingContact, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ClientState: function ClientState() { }, ClientState_loadClients_closure0: function ClientState_loadClients_closure0() { }, ClientState_loadClients_closure1: function ClientState_loadClients_closure1() { }, ClientState_loadClients_closure: function ClientState_loadClients_closure(t0, t1) { this.$this = t0; this.map = t1; }, ClientUIState: function ClientUIState() { }, _$ClientStateSerializer: function _$ClientStateSerializer() { }, _$ClientUIStateSerializer: function _$ClientUIStateSerializer() { }, _$ClientState: function _$ClientState(t0, t1) { this.map = t0; this.list = t1; this._client_state$__hashCode = null; }, ClientStateBuilder: function ClientStateBuilder() { this._client_state$_list = this._client_state$_map = this._client_state$_$v = null; }, _$ClientUIState: function _$ClientUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editing = t0; _.editingContact = t1; _.listUIState = t2; _.selectedId = t3; _.forceSelected = t4; _.tabIndex = t5; _.saveCompleter = t6; _.cancelCompleter = t7; _._client_state$__hashCode = null; }, ClientUIStateBuilder: function ClientUIStateBuilder() { var _ = this; _._client_state$_cancelCompleter = _._client_state$_saveCompleter = _._client_state$_tabIndex = _._client_state$_forceSelected = _._client_state$_selectedId = _._client_state$_listUIState = _._client_state$_editingContact = _._client_state$_editing = _._client_state$_$v = null; }, _ClientUIState_Object_EntityUIState: function _ClientUIState_Object_EntityUIState() { }, SelectCompany: function SelectCompany(t0, t1) { this.companyIndex = t0; this.clearSelection = t1; }, LoadCompanySuccess: function LoadCompanySuccess(t0) { this.userCompany = t0; }, UpdateCompany: function UpdateCompany(t0) { this.company = t0; }, SaveCompanyRequest: function SaveCompanyRequest(t0, t1) { this.completer = t0; this.company = t1; }, SaveCompanySuccess: function SaveCompanySuccess(t0) { this.company = t0; }, SaveCompanyFailure: function SaveCompanyFailure() { }, AddCompany: function AddCompany(t0, t1) { this.context = t0; this.completer = t1; }, AddCompanySuccess: function AddCompanySuccess() { }, DeleteCompanyRequest: function DeleteCompanyRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.reason = t2; }, DeleteCompanySuccess: function DeleteCompanySuccess() { }, DeleteCompanyFailure: function DeleteCompanyFailure() { }, PurgeDataRequest: function PurgeDataRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.idToken = t2; }, PurgeDataSuccess: function PurgeDataSuccess() { }, PurgeDataFailure: function PurgeDataFailure() { }, UpdateCompanyLanguage: function UpdateCompanyLanguage(t0) { this.languageId = t0; }, SaveCompanyDocumentRequest: function SaveCompanyDocumentRequest(t0, t1) { this.completer = t0; this.multipartFile = t1; }, SaveCompanyDocumentFailure: function SaveCompanyDocumentFailure() { }, SetDefaultCompanyRequest: function SetDefaultCompanyRequest(t0) { this.completer = t0; }, SetDefaultCompanySuccess: function SetDefaultCompanySuccess() { }, SetDefaultCompanyFailure: function SetDefaultCompanyFailure() { }, companyReducer(state, action) { var t1; if (action instanceof A.DeleteCompanySuccess) return A.UserCompanyState_UserCompanyState(false); state.toString; t1 = new A.UserCompanyStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._company_state$_$v = state; new A.companyReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, loadCompanySuccessReducer(company, action) { var t1 = {}, userCompany = t1.userCompany = action.userCompany, t2 = userCompany.settings == null ? t1.userCompany = userCompany.rebuild$1(new A.loadCompanySuccessReducer_closure()) : userCompany; userCompany = t2.rebuild$1(new A.loadCompanySuccessReducer_closure0()); t1.userCompany = userCompany; return t1.userCompany = userCompany.rebuild$1(new A.loadCompanySuccessReducer_closure1(t1)); }, saveCompanySuccessReducer(userCompany, action) { var company, t1 = {}; t1.userCompany = userCompany; company = action.company.rebuild$1(new A.saveCompanySuccessReducer_closure(t1)); return t1.userCompany = t1.userCompany.rebuild$1(new A.saveCompanySuccessReducer_closure0(company)); }, companyReducer_closure: function companyReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, userCompanyEntityReducer_closure: function userCompanyEntityReducer_closure() { }, userCompanyEntityReducer__closure5: function userCompanyEntityReducer__closure5(t0, t1) { this.action = t0; this.settings = t1; }, userCompanyEntityReducer___closure: function userCompanyEntityReducer___closure(t0, t1) { this.action = t0; this.settings = t1; }, userCompanyEntityReducer__closure6: function userCompanyEntityReducer__closure6(t0) { this.action = t0; }, userCompanyEntityReducer_closure0: function userCompanyEntityReducer_closure0() { }, userCompanyEntityReducer__closure4: function userCompanyEntityReducer__closure4(t0) { this.action = t0; }, userCompanyEntityReducer_closure1: function userCompanyEntityReducer_closure1() { }, userCompanyEntityReducer__closure3: function userCompanyEntityReducer__closure3(t0) { this.action = t0; }, userCompanyEntityReducer_closure2: function userCompanyEntityReducer_closure2() { }, userCompanyEntityReducer__closure2: function userCompanyEntityReducer__closure2(t0) { this.action = t0; }, userCompanyEntityReducer_closure3: function userCompanyEntityReducer_closure3() { }, userCompanyEntityReducer__closure1: function userCompanyEntityReducer__closure1() { }, userCompanyEntityReducer_closure4: function userCompanyEntityReducer_closure4() { }, userCompanyEntityReducer__closure0: function userCompanyEntityReducer__closure0(t0) { this.action = t0; }, userCompanyEntityReducer_closure5: function userCompanyEntityReducer_closure5() { }, userCompanyEntityReducer__closure: function userCompanyEntityReducer__closure(t0) { this.action = t0; }, loadCompanySuccessReducer_closure: function loadCompanySuccessReducer_closure() { }, loadCompanySuccessReducer_closure0: function loadCompanySuccessReducer_closure0() { }, loadCompanySuccessReducer_closure1: function loadCompanySuccessReducer_closure1(t0) { this._box_0 = t0; }, saveCompanySuccessReducer_closure: function saveCompanySuccessReducer_closure(t0) { this._box_0 = t0; }, saveCompanySuccessReducer_closure0: function saveCompanySuccessReducer_closure0(t0) { this.company = t0; }, lastUpdatedReducer_closure: function lastUpdatedReducer_closure() { }, lastUpdatedReducer_closure0: function lastUpdatedReducer_closure0() { }, dropdownExpenseCategoriesSelector(categoryMap, categoryList) { var t1 = categoryList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownExpenseCategoriesSelector_closure(categoryMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownExpenseCategoriesSelector_closure0(categoryMap)); return list; }, getCurrencyIds(company, clientMap, groupMap) { var t2, currencyIds, t1 = company.settings.currencyId; if (t1 == null) t1 = "1"; t2 = type$.JSArray_legacy_String; currencyIds = A._setArrayType([t1], t2); clientMap._map$_map.forEach$1(0, new A.getCurrencyIds_closure(groupMap, currencyIds)); if (currencyIds.length > 1) { t1 = A._setArrayType(["-1"], t2); B.JSArray_methods.addAll$1(t1, currencyIds); } else t1 = currencyIds; return t1; }, filteredSelector(filter, state) { var list = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = state.productState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure0(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.clientState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure1(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure2(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.quoteState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure3(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure4(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.paymentState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure5(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure6(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.projectState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure7(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure8(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.taskState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure9(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure10(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = state.invoiceState.list._list; t1 = new A.MappedListIterable(t1, new A.filteredSelector_closure11(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A.filteredSelector_closure12(filter)); B.JSArray_methods.addAll$1(list, A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); B.JSArray_methods.sort$1(list, new A.filteredSelector_closure13()); return list; }, localeSelector(state, twoLetter) { var t2, t3, locale, _null = null, t1 = state.staticState; t1 = t1 == null ? _null : t1.languageMap; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany.company; t2 = t3 == null ? _null : t3.settings; t2 = t2 == null ? _null : t2.languageId; t2 = t1._map$_map.$index(0, t2); locale = t2 == null ? _null : t2.locale; if (locale == null) locale = "en"; if (locale === "mk_MK" || locale === "sq") return "en"; else if (twoLetter) return B.JSArray_methods.get$first(locale.split("_")); else return locale; }, clientPortalUrlSelector(state, route) { var account, company, url, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].userCompany; account = t2.account; company = t2.company; if (company.portalMode === "domain") url = company.portalDomain; else { url = account.defaultUrl; if (state.get$isHosted()) url = B.JSString_methods.replaceFirst$2(url, "//", "//" + company.subdomain + "."); } url += "/client/" + route; return !state.get$isHosted() && state.get$companies().length > 1 && company.id !== account.defaultCompanyId ? url + ("/" + company.companyKey) : url; }, memoizedDropdownExpenseCategoriesList_closure: function memoizedDropdownExpenseCategoriesList_closure() { }, dropdownExpenseCategoriesSelector_closure: function dropdownExpenseCategoriesSelector_closure(t0) { this.categoryMap = t0; }, dropdownExpenseCategoriesSelector_closure0: function dropdownExpenseCategoriesSelector_closure0(t0) { this.categoryMap = t0; }, memoizedHasMultipleCurrencies_closure: function memoizedHasMultipleCurrencies_closure() { }, memoizedGetCurrencyIds_closure: function memoizedGetCurrencyIds_closure() { }, getCurrencyIds_closure: function getCurrencyIds_closure(t0, t1) { this.groupMap = t0; this.currencyIds = t1; }, memoizedFilteredSelector_closure: function memoizedFilteredSelector_closure() { }, filteredSelector_closure: function filteredSelector_closure(t0) { this.state = t0; }, filteredSelector_closure0: function filteredSelector_closure0(t0) { this.filter = t0; }, filteredSelector_closure1: function filteredSelector_closure1(t0) { this.state = t0; }, filteredSelector_closure2: function filteredSelector_closure2(t0) { this.filter = t0; }, filteredSelector_closure3: function filteredSelector_closure3(t0) { this.state = t0; }, filteredSelector_closure4: function filteredSelector_closure4(t0) { this.filter = t0; }, filteredSelector_closure5: function filteredSelector_closure5(t0) { this.state = t0; }, filteredSelector_closure6: function filteredSelector_closure6(t0) { this.filter = t0; }, filteredSelector_closure7: function filteredSelector_closure7(t0) { this.state = t0; }, filteredSelector_closure8: function filteredSelector_closure8(t0) { this.filter = t0; }, filteredSelector_closure9: function filteredSelector_closure9(t0) { this.state = t0; }, filteredSelector_closure10: function filteredSelector_closure10(t0) { this.filter = t0; }, filteredSelector_closure11: function filteredSelector_closure11(t0) { this.state = t0; }, filteredSelector_closure12: function filteredSelector_closure12(t0) { this.filter = t0; }, filteredSelector_closure13: function filteredSelector_closure13() { }, UserCompanyState_UserCompanyState(reportErrors) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t1 = A.UserCompanyEntity_UserCompanyEntity(reportErrors), t2 = type$.legacy_String, t3 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_DocumentEntity); t3 = A._$DocumentState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t3); t4 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_ProductEntity); t4 = A._$ProductState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t4); t5 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_ClientEntity); t5 = A._$ClientState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t5); t6 = type$.legacy_InvoiceEntity; t7 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t6); t7 = A._$InvoiceState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t7); t8 = type$.legacy_ExpenseEntity; t9 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t8); t9 = A._$ExpenseState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t9); t10 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_VendorEntity); t10 = A._$VendorState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t10); t11 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_TaskEntity); t11 = A._$TaskState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t11); t12 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_ProjectEntity); t12 = A._$ProjectState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t12); t13 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_PaymentEntity); t13 = A._$PaymentState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t13); t14 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t6); t14 = A._$QuoteState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t14); t15 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t6); t15 = A._$PurchaseOrderState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t15); t8 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t8); t8 = A._$RecurringExpenseState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t8); t16 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_SubscriptionEntity); t16 = A._$SubscriptionState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t16); t17 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_TaskStatusEntity); t17 = A._$TaskStatusState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t17); t18 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_ExpenseCategoryEntity); t18 = A._$ExpenseCategoryState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t18); t19 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t6); t19 = A._$RecurringInvoiceState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t19); t20 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_WebhookEntity); t20 = A._$WebhookState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t20); t21 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_TokenEntity); t21 = A._$TokenState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t21); t22 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_PaymentTermEntity); t22 = A._$PaymentTermState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t22); t23 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_DesignEntity); t23 = A._$DesignState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t23); t6 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t6); t6 = A._$CreditState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t6); t24 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_UserEntity); t24 = A._$UserState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t24); t25 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_TaxRateEntity); t25 = A._$TaxRateState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t25); t26 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_CompanyGatewayEntity); t26 = A._$CompanyGatewayState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t26); t27 = A.BuiltMap_BuiltMap(B.Map_empty0, t2, type$.legacy_GroupEntity); return A._$UserCompanyState$_(t5, t26, t6, t23, t3, t18, t9, A._$GroupState$_(A.BuiltList_BuiltList$from(B.List_empty, t2), t27), t7, 0, t13, t22, t4, t12, t15, t14, t8, t19, t16, t11, t17, t25, t21, t1, t24, t10, t20); }, _$UserCompanyState$_(clientState, companyGatewayState, creditState, designState, documentState, expenseCategoryState, expenseState, groupState, invoiceState, lastUpdated, paymentState, paymentTermState, productState, projectState, purchaseOrderState, quoteState, recurringExpenseState, recurringInvoiceState, subscriptionState, taskState, taskStatusState, taxRateState, tokenState, userCompany, userState, vendorState, webhookState) { var _s16_ = "UserCompanyState"; if (documentState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "documentState")); if (productState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "productState")); if (clientState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "clientState")); if (invoiceState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "invoiceState")); if (expenseState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "expenseState")); if (vendorState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "vendorState")); if (taskState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "taskState")); if (projectState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "projectState")); if (paymentState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "paymentState")); if (quoteState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "quoteState")); if (purchaseOrderState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "purchaseOrderState")); if (recurringExpenseState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "recurringExpenseState")); if (subscriptionState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "subscriptionState")); if (taskStatusState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "taskStatusState")); if (expenseCategoryState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "expenseCategoryState")); if (recurringInvoiceState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "recurringInvoiceState")); if (webhookState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "webhookState")); if (tokenState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "tokenState")); if (paymentTermState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "paymentTermState")); if (designState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "designState")); if (creditState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "creditState")); if (userState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "userState")); if (taxRateState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "taxRateState")); if (companyGatewayState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "companyGatewayState")); if (groupState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "groupState")); return new A._$UserCompanyState(lastUpdated, userCompany, documentState, productState, clientState, invoiceState, expenseState, vendorState, taskState, projectState, paymentState, quoteState, purchaseOrderState, recurringExpenseState, subscriptionState, taskStatusState, expenseCategoryState, recurringInvoiceState, webhookState, tokenState, paymentTermState, designState, creditState, userState, taxRateState, companyGatewayState, groupState); }, _$SettingsUIState$_(client, company, entityType, filter, filterClearedAt, group, isChanged, origClient, origCompany, origGroup, origUser, section, selectedTemplate, tabIndex, updatedAt, user) { var _s15_ = "SettingsUIState"; if (company == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "company")); if (origCompany == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "origCompany")); if (client == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "client")); if (origClient == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "origClient")); if (group == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "group")); if (origGroup == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "origGroup")); if (user == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "user")); if (origUser == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "origUser")); return new A._$SettingsUIState(company, origCompany, client, origClient, group, origGroup, user, origUser, entityType, isChanged, updatedAt, section, tabIndex, selectedTemplate, filter, filterClearedAt); }, UserCompanyState: function UserCompanyState() { }, SettingsUIState: function SettingsUIState() { }, _$UserCompanyStateSerializer: function _$UserCompanyStateSerializer() { }, _$SettingsUIStateSerializer: function _$SettingsUIStateSerializer() { }, _$UserCompanyState: function _$UserCompanyState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.lastUpdated = t0; _.userCompany = t1; _.documentState = t2; _.productState = t3; _.clientState = t4; _.invoiceState = t5; _.expenseState = t6; _.vendorState = t7; _.taskState = t8; _.projectState = t9; _.paymentState = t10; _.quoteState = t11; _.purchaseOrderState = t12; _.recurringExpenseState = t13; _.subscriptionState = t14; _.taskStatusState = t15; _.expenseCategoryState = t16; _.recurringInvoiceState = t17; _.webhookState = t18; _.tokenState = t19; _.paymentTermState = t20; _.designState = t21; _.creditState = t22; _.userState = t23; _.taxRateState = t24; _.companyGatewayState = t25; _.groupState = t26; _._company_state$__hashCode = null; }, UserCompanyStateBuilder: function UserCompanyStateBuilder() { var _ = this; _._groupState = _._companyGatewayState = _._taxRateState = _._userState = _._creditState = _._designState = _._paymentTermState = _._tokenState = _._webhookState = _._recurringInvoiceState = _._expenseCategoryState = _._taskStatusState = _._subscriptionState = _._recurringExpenseState = _._purchaseOrderState = _._quoteState = _._paymentState = _._projectState = _._taskState = _._vendorState = _._expenseState = _._invoiceState = _._clientState = _._productState = _._documentState = _._company_state$_userCompany = _._lastUpdated = _._company_state$_$v = null; }, _$SettingsUIState: function _$SettingsUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.company = t0; _.origCompany = t1; _.client = t2; _.origClient = t3; _.group = t4; _.origGroup = t5; _.user = t6; _.origUser = t7; _.entityType = t8; _.isChanged = t9; _.updatedAt = t10; _.section = t11; _.tabIndex = t12; _.selectedTemplate = t13; _.filter = t14; _.filterClearedAt = t15; _._company_state$__hashCode = null; }, SettingsUIStateBuilder: function SettingsUIStateBuilder() { var _ = this; _._company_state$_filterClearedAt = _._company_state$_filter = _._selectedTemplate = _._tabIndex = _._section = _._updatedAt = _._isChanged = _._entityType = _._origUser = _._user = _._origGroup = _._company_state$_group = _._origClient = _._client = _._origCompany = _._company = _._company_state$_$v = null; }, handleCompanyGatewayAction(context, companyGateways, action) { var store, t2, companyGateway, companyGatewayIds, message, completer, t3, t4, _null = null, _s6_ = ":value", _s20_ = "disconnected_gateway", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(companyGateways); if (t1.get$isEmpty(companyGateways)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); companyGateway = t1.get$first(companyGateways); companyGatewayIds = t1.map$1$1(companyGateways, new A.handleCompanyGatewayAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, companyGateway, true, _null); break; case B.EntityAction_restore: if (companyGatewayIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_company_gateways"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(companyGatewayIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_company_gateway"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreCompanyGatewayRequest(t1, companyGatewayIds)); break; case B.EntityAction_archive: if (companyGatewayIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_company_gateways"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(companyGatewayIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_company_gateway"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveCompanyGatewayRequest(t1, companyGatewayIds)); break; case B.EntityAction_delete: if (companyGatewayIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_company_gateways"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(companyGatewayIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_company_gateway"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteCompanyGatewayRequest(t1, companyGatewayIds)); break; case B.EntityAction_disconnect: t2.toString; t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, t2.localeCode), _s20_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s20_) : t2; t2 = type$.Null; completer = A.snackBarCompleter(context, t1, false, t2); completer.future.then$1$1(0, new A.handleCompanyGatewayAction_closure0(store), t2); A.confirmCallback(false, new A.handleCompanyGatewayAction_closure1(context, store, completer, companyGateway), context, _null, false, _null); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.companyGatewayUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartCompanyGatewayMultiselect()); if (t1.get$isEmpty(companyGateways)) break; for (t1 = t1.get$iterator(companyGateways); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.companyGatewayUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToCompanyGatewayMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromCompanyGatewayMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([companyGateway], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewCompanyGatewayList: function ViewCompanyGatewayList() { }, ViewCompanyGateway: function ViewCompanyGateway(t0) { this.companyGatewayId = t0; }, EditCompanyGateway: function EditCompanyGateway(t0) { this.companyGateway = t0; }, UpdateCompanyGateway: function UpdateCompanyGateway(t0) { this.companyGateway = t0; }, LoadCompanyGateway: function LoadCompanyGateway(t0, t1) { this.completer = t0; this.companyGatewayId = t1; }, LoadCompanyGatewayRequest: function LoadCompanyGatewayRequest() { }, LoadCompanyGatewayFailure: function LoadCompanyGatewayFailure(t0) { this.error = t0; }, LoadCompanyGatewaySuccess: function LoadCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, LoadCompanyGatewaysRequest: function LoadCompanyGatewaysRequest() { }, LoadCompanyGatewaysFailure: function LoadCompanyGatewaysFailure(t0) { this.error = t0; }, LoadCompanyGatewaysSuccess: function LoadCompanyGatewaysSuccess(t0) { this.companyGateways = t0; }, SaveCompanyGatewayRequest: function SaveCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGateway = t1; }, SaveCompanyGatewaySuccess: function SaveCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, AddCompanyGatewaySuccess: function AddCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, SaveCompanyGatewayFailure: function SaveCompanyGatewayFailure() { }, ArchiveCompanyGatewayRequest: function ArchiveCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, ArchiveCompanyGatewaySuccess: function ArchiveCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, ArchiveCompanyGatewayFailure: function ArchiveCompanyGatewayFailure() { }, DeleteCompanyGatewayRequest: function DeleteCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, DeleteCompanyGatewaySuccess: function DeleteCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, DeleteCompanyGatewayFailure: function DeleteCompanyGatewayFailure() { }, DisconnectCompanyGatewayRequest: function DisconnectCompanyGatewayRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.companyGatewayId = t1; _.password = t2; _.idToken = t3; }, DisconnectCompanyGatewaySuccess: function DisconnectCompanyGatewaySuccess() { }, DisconnectCompanyGatewayFailure: function DisconnectCompanyGatewayFailure() { }, RestoreCompanyGatewayRequest: function RestoreCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, RestoreCompanyGatewaySuccess: function RestoreCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, RestoreCompanyGatewayFailure: function RestoreCompanyGatewayFailure() { }, FilterCompanyGatewaysByState: function FilterCompanyGatewaysByState(t0) { this.state = t0; }, FilterCompanyGatewaysByCustom1: function FilterCompanyGatewaysByCustom1(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom2: function FilterCompanyGatewaysByCustom2(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom3: function FilterCompanyGatewaysByCustom3(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom4: function FilterCompanyGatewaysByCustom4(t0) { this.value = t0; }, handleCompanyGatewayAction_closure: function handleCompanyGatewayAction_closure() { }, handleCompanyGatewayAction_closure0: function handleCompanyGatewayAction_closure0(t0) { this.store = t0; }, handleCompanyGatewayAction_closure1: function handleCompanyGatewayAction_closure1(t0, t1, t2, t3) { var _ = this; _.context = t0; _.store = t1; _.completer = t2; _.companyGateway = t3; }, handleCompanyGatewayAction__closure: function handleCompanyGatewayAction__closure(t0, t1, t2) { this.store = t0; this.completer = t1; this.companyGateway = t2; }, StartCompanyGatewayMultiselect: function StartCompanyGatewayMultiselect() { }, AddToCompanyGatewayMultiselect: function AddToCompanyGatewayMultiselect(t0) { this.entity = t0; }, RemoveFromCompanyGatewayMultiselect: function RemoveFromCompanyGatewayMultiselect(t0) { this.entity = t0; }, ClearCompanyGatewayMultiselect: function ClearCompanyGatewayMultiselect() { }, _editCompanyGateway() { return new A._editCompanyGateway_closure(); }, _viewCompanyGateway() { return new A._viewCompanyGateway_closure(); }, _viewCompanyGatewayList() { return new A._viewCompanyGatewayList_closure(); }, _archiveCompanyGateway(repository) { return new A._archiveCompanyGateway_closure(repository); }, _deleteCompanyGateway(repository) { return new A._deleteCompanyGateway_closure(repository); }, _restoreCompanyGateway(repository) { return new A._restoreCompanyGateway_closure(repository); }, _disconnectCompanyGateway(repository) { return new A._disconnectCompanyGateway_closure(repository); }, _saveCompanyGateway(repository) { return new A._saveCompanyGateway_closure(repository); }, _loadCompanyGateway(repository) { return new A._loadCompanyGateway_closure(repository); }, _loadCompanyGateways(repository) { return new A._loadCompanyGateways_closure(repository); }, _editCompanyGateway_closure: function _editCompanyGateway_closure() { }, _viewCompanyGateway_closure: function _viewCompanyGateway_closure() { }, _viewCompanyGatewayList_closure: function _viewCompanyGatewayList_closure() { }, _viewCompanyGatewayList__closure: function _viewCompanyGatewayList__closure() { }, _archiveCompanyGateway_closure: function _archiveCompanyGateway_closure(t0) { this.repository = t0; }, _archiveCompanyGateway__closure: function _archiveCompanyGateway__closure(t0) { this.store = t0; }, _archiveCompanyGateway__closure0: function _archiveCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveCompanyGateway__closure1: function _archiveCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _deleteCompanyGateway_closure: function _deleteCompanyGateway_closure(t0) { this.repository = t0; }, _deleteCompanyGateway__closure: function _deleteCompanyGateway__closure(t0) { this.store = t0; }, _deleteCompanyGateway__closure0: function _deleteCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompanyGateway__closure1: function _deleteCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _restoreCompanyGateway_closure: function _restoreCompanyGateway_closure(t0) { this.repository = t0; }, _restoreCompanyGateway__closure: function _restoreCompanyGateway__closure(t0) { this.store = t0; }, _restoreCompanyGateway__closure0: function _restoreCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreCompanyGateway__closure1: function _restoreCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _disconnectCompanyGateway_closure: function _disconnectCompanyGateway_closure(t0) { this.repository = t0; }, _disconnectCompanyGateway__closure: function _disconnectCompanyGateway__closure(t0, t1) { this.store = t0; this.action = t1; }, _disconnectCompanyGateway__closure0: function _disconnectCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveCompanyGateway_closure: function _saveCompanyGateway_closure(t0) { this.repository = t0; }, _saveCompanyGateway__closure: function _saveCompanyGateway__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveCompanyGateway__closure0: function _saveCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateway_closure: function _loadCompanyGateway_closure(t0) { this.repository = t0; }, _loadCompanyGateway__closure: function _loadCompanyGateway__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateway__closure0: function _loadCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateways_closure: function _loadCompanyGateways_closure(t0) { this.repository = t0; }, _loadCompanyGateways__closure: function _loadCompanyGateways__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateways__closure0: function _loadCompanyGateways__closure0(t0, t1) { this.store = t0; this.action = t1; }, companyGatewayUIReducer(state, action) { var t1; state.toString; t1 = new A.CompanyGatewayUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._company_gateway_state$_$v = state; new A.companyGatewayUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing(companyGateway, action) { return A.CompanyGatewayEntity_CompanyGatewayEntity(null, null); }, _updateEditing(companyGateway, action) { return action.get$companyGateway(); }, _filterCompanyGatewaysByCustom1(companyGatewayListState, action) { var t1 = companyGatewayListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByCustom1_closure(action)); else return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByCustom1_closure0(action)); }, _filterCompanyGatewaysByCustom2(companyGatewayListState, action) { var t1 = companyGatewayListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByCustom2_closure(action)); else return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByCustom2_closure0(action)); }, _filterCompanyGatewaysByState(companyGatewayListState, action) { var t1 = companyGatewayListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByState_closure(action)); else return companyGatewayListState.rebuild$1(new A._filterCompanyGatewaysByState_closure0(action)); }, _filterCompanyGateways(companyGatewayListState, action) { return companyGatewayListState.rebuild$1(new A._filterCompanyGateways_closure(action, companyGatewayListState)); }, _sortCompanyGateways(companyGatewayListState, action) { return companyGatewayListState.rebuild$1(new A._sortCompanyGateways_closure(action)); }, _startListMultiselect0(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure7()); }, _addToListMultiselect0(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure7(action)); }, _removeFromListMultiselect0(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure7(action)); }, _clearListMultiselect0(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure7()); }, _archiveCompanyGatewaySuccess(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._archiveCompanyGatewaySuccess_closure(action)); }, _deleteCompanyGatewaySuccess(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._deleteCompanyGatewaySuccess_closure(action)); }, _restoreCompanyGatewaySuccess(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._restoreCompanyGatewaySuccess_closure(action)); }, _addCompanyGateway(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._addCompanyGateway_closure(action)); }, _updateCompanyGateway(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._updateCompanyGateway_closure(action)); }, _setLoadedCompanyGateway(companyGatewayState, action) { return companyGatewayState.rebuild$1(new A._setLoadedCompanyGateway_closure(action)); }, _setLoadedCompany0(companyGatewayState, action) { var state = companyGatewayState.rebuild$1(new A._setLoadedCompany_closure1(action)); return state.rebuild$1(new A._setLoadedCompany_closure2(state)); }, _setLoadedCompanyGateways(companyGatewayState, action) { var state = companyGatewayState.rebuild$1(new A._setLoadedCompanyGateways_closure(action)); return state.rebuild$1(new A._setLoadedCompanyGateways_closure0(state)); }, companyGatewayUIReducer_closure: function companyGatewayUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure59: function forceSelectedReducer_closure59() { }, forceSelectedReducer_closure60: function forceSelectedReducer_closure60() { }, forceSelectedReducer_closure61: function forceSelectedReducer_closure61() { }, forceSelectedReducer_closure62: function forceSelectedReducer_closure62() { }, forceSelectedReducer_closure63: function forceSelectedReducer_closure63() { }, forceSelectedReducer_closure64: function forceSelectedReducer_closure64() { }, forceSelectedReducer_closure65: function forceSelectedReducer_closure65() { }, forceSelectedReducer_closure66: function forceSelectedReducer_closure66() { }, selectedIdReducer_closure119: function selectedIdReducer_closure119() { }, selectedIdReducer_closure120: function selectedIdReducer_closure120() { }, selectedIdReducer_closure121: function selectedIdReducer_closure121() { }, selectedIdReducer_closure122: function selectedIdReducer_closure122() { }, selectedIdReducer_closure123: function selectedIdReducer_closure123() { }, selectedIdReducer_closure124: function selectedIdReducer_closure124() { }, selectedIdReducer_closure125: function selectedIdReducer_closure125() { }, selectedIdReducer_closure126: function selectedIdReducer_closure126() { }, selectedIdReducer_closure127: function selectedIdReducer_closure127() { }, selectedIdReducer_closure128: function selectedIdReducer_closure128() { }, selectedIdReducer_closure129: function selectedIdReducer_closure129() { }, selectedIdReducer_closure130: function selectedIdReducer_closure130() { }, selectedIdReducer_closure131: function selectedIdReducer_closure131() { }, selectedIdReducer_closure132: function selectedIdReducer_closure132() { }, selectedIdReducer_closure133: function selectedIdReducer_closure133() { }, editingReducer_closure37: function editingReducer_closure37() { }, editingReducer_closure38: function editingReducer_closure38() { }, editingReducer_closure39: function editingReducer_closure39() { }, editingReducer_closure40: function editingReducer_closure40() { }, editingReducer__closure13: function editingReducer__closure13() { }, _filterCompanyGatewaysByCustom1_closure: function _filterCompanyGatewaysByCustom1_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom1_closure0: function _filterCompanyGatewaysByCustom1_closure0(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom2_closure: function _filterCompanyGatewaysByCustom2_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom2_closure0: function _filterCompanyGatewaysByCustom2_closure0(t0) { this.action = t0; }, _filterCompanyGatewaysByState_closure: function _filterCompanyGatewaysByState_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByState_closure0: function _filterCompanyGatewaysByState_closure0(t0) { this.action = t0; }, _filterCompanyGateways_closure: function _filterCompanyGateways_closure(t0, t1) { this.action = t0; this.companyGatewayListState = t1; }, _sortCompanyGateways_closure: function _sortCompanyGateways_closure(t0) { this.action = t0; }, _startListMultiselect_closure7: function _startListMultiselect_closure7() { }, _addToListMultiselect_closure7: function _addToListMultiselect_closure7(t0) { this.action = t0; }, _removeFromListMultiselect_closure7: function _removeFromListMultiselect_closure7(t0) { this.action = t0; }, _clearListMultiselect_closure7: function _clearListMultiselect_closure7() { }, _archiveCompanyGatewaySuccess_closure: function _archiveCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _deleteCompanyGatewaySuccess_closure: function _deleteCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _restoreCompanyGatewaySuccess_closure: function _restoreCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _addCompanyGateway_closure: function _addCompanyGateway_closure(t0) { this.action = t0; }, _addCompanyGateway__closure: function _addCompanyGateway__closure() { }, _updateCompanyGateway_closure: function _updateCompanyGateway_closure(t0) { this.action = t0; }, _updateCompanyGateway__closure: function _updateCompanyGateway__closure() { }, _setLoadedCompanyGateway_closure: function _setLoadedCompanyGateway_closure(t0) { this.action = t0; }, _setLoadedCompanyGateway__closure: function _setLoadedCompanyGateway__closure() { }, _setLoadedCompany_closure1: function _setLoadedCompany_closure1(t0) { this.action = t0; }, _setLoadedCompany__closure1: function _setLoadedCompany__closure1() { }, _setLoadedCompany__closure2: function _setLoadedCompany__closure2() { }, _setLoadedCompany_closure2: function _setLoadedCompany_closure2(t0) { this.state = t0; }, _setLoadedCompanyGateways_closure: function _setLoadedCompanyGateways_closure(t0) { this.action = t0; }, _setLoadedCompanyGateways__closure: function _setLoadedCompanyGateways__closure() { }, _setLoadedCompanyGateways__closure0: function _setLoadedCompanyGateways__closure0() { }, _setLoadedCompanyGateways_closure0: function _setLoadedCompanyGateways_closure0(t0) { this.state = t0; }, filteredCompanyGatewaysSelector(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll) { var gatewaysIds, t1 = companyGatewayList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredCompanyGatewaysSelector_closure(companyGatewayMap, companyGatewayListState), t2), true, t2._eval$1("Iterable.E")); t1 = type$.WhereIterable_String; gatewaysIds = A.List_List$of(new A.WhereIterable(A._setArrayType((companyGatewayIds == null ? "" : companyGatewayIds).split(","), type$.JSArray_String), new A.filteredCompanyGatewaysSelector_closure0(companyGatewayMap, companyGatewayListState), t1), true, t1._eval$1("Iterable.E")); if (includeAll) B.JSArray_methods.forEach$1(list, new A.filteredCompanyGatewaysSelector_closure1(gatewaysIds)); return gatewaysIds; }, calculateCompanyGatewayProcessed(companyGatewayId, paymentMap) { var t1 = {}; t1.total = 0; paymentMap._map$_map.forEach$1(0, new A.calculateCompanyGatewayProcessed_closure(t1, companyGatewayId)); return t1.total; }, clientStatsForCompanyGateway(companyGatewayId, clientMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; clientMap._map$_map.forEach$1(0, new A.clientStatsForCompanyGateway_closure(t1, companyGatewayId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, paymentStatsForCompanyGateway(companyGatewayId, paymentMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; paymentMap._map$_map.forEach$1(0, new A.paymentStatsForCompanyGateway_closure(t1, companyGatewayId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, getUnconnectedStripeAccount(state) { var t2, t3, t1 = {}; t1.unconnectedGateway = null; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t2._list[t3].companyGatewayState.map._map$_map.forEach$1(0, new A.getUnconnectedStripeAccount_closure(t1)); return t1.unconnectedGateway; }, memoizedFilteredCompanyGatewayList_closure: function memoizedFilteredCompanyGatewayList_closure() { }, filteredCompanyGatewaysSelector_closure: function filteredCompanyGatewaysSelector_closure(t0, t1) { this.companyGatewayMap = t0; this.companyGatewayListState = t1; }, filteredCompanyGatewaysSelector_closure0: function filteredCompanyGatewaysSelector_closure0(t0, t1) { this.companyGatewayMap = t0; this.companyGatewayListState = t1; }, filteredCompanyGatewaysSelector_closure1: function filteredCompanyGatewaysSelector_closure1(t0) { this.gatewaysIds = t0; }, memoizedCalculateCompanyGatewayProcessed_closure: function memoizedCalculateCompanyGatewayProcessed_closure() { }, calculateCompanyGatewayProcessed_closure: function calculateCompanyGatewayProcessed_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, memoizedClientStatsForCompanyGateway_closure: function memoizedClientStatsForCompanyGateway_closure() { }, clientStatsForCompanyGateway_closure: function clientStatsForCompanyGateway_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, clientStatsForCompanyGateway__closure: function clientStatsForCompanyGateway__closure(t0) { this.companyGatewayId = t0; }, memoizedPaymentStatsForCompanyGateway_closure: function memoizedPaymentStatsForCompanyGateway_closure() { }, paymentStatsForCompanyGateway_closure: function paymentStatsForCompanyGateway_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, getUnconnectedStripeAccount_closure: function getUnconnectedStripeAccount_closure(t0) { this._box_0 = t0; }, _$CompanyGatewayState$_(list, map) { var _s19_ = "CompanyGatewayState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "list")); return new A._$CompanyGatewayState(map, list); }, _$CompanyGatewayUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("CompanyGatewayUIState", "listUIState")); return new A._$CompanyGatewayUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, CompanyGatewayState: function CompanyGatewayState() { }, CompanyGatewayUIState: function CompanyGatewayUIState() { }, _$CompanyGatewayStateSerializer: function _$CompanyGatewayStateSerializer() { }, _$CompanyGatewayUIStateSerializer: function _$CompanyGatewayUIStateSerializer() { }, _$CompanyGatewayState: function _$CompanyGatewayState(t0, t1) { this.map = t0; this.list = t1; this._company_gateway_state$__hashCode = null; }, CompanyGatewayStateBuilder: function CompanyGatewayStateBuilder() { this._company_gateway_state$_list = this._company_gateway_state$_map = this._company_gateway_state$_$v = null; }, _$CompanyGatewayUIState: function _$CompanyGatewayUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._company_gateway_state$__hashCode = null; }, CompanyGatewayUIStateBuilder: function CompanyGatewayUIStateBuilder() { var _ = this; _._company_gateway_state$_cancelCompleter = _._company_gateway_state$_saveCompleter = _._company_gateway_state$_tabIndex = _._company_gateway_state$_forceSelected = _._company_gateway_state$_selectedId = _._company_gateway_state$_listUIState = _._company_gateway_state$_editing = _._company_gateway_state$_$v = null; }, _CompanyGatewayUIState_Object_EntityUIState: function _CompanyGatewayUIState_Object_EntityUIState() { }, handleCreditAction(context, credits, action) { return A.handleCreditAction$body(context, credits, action); }, handleCreditAction$body(context, credits, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, designId, message, t4, response, documentIds, _box_0, store, state, t1, t2, t3, credit, creditIds; var $async$handleCreditAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = J.getInterceptor$ax(credits); t3 = type$.legacy_InvoiceEntity; credit = t3._as(t2.get$first(credits)); creditIds = t2.map$1$1(credits, new A.handleCreditAction_closure(), type$.legacy_String).toList$0(0); case 3: // switch switch (action) { case B.EntityAction_edit: // goto case $async$goto = 5; break; case B.EntityAction_viewPdf: // goto case $async$goto = 6; break; case B.EntityAction_clientPortal: // goto case $async$goto = 7; break; case B.EntityAction_markSent: // goto case $async$goto = 8; break; case B.EntityAction_sendEmail: // goto case $async$goto = 9; break; case B.EntityAction_bulkSendEmail: // goto case $async$goto = 10; break; case B.EntityAction_cloneToPurchaseOrder: // goto case $async$goto = 11; break; case B.EntityAction_cloneToOther: // goto case $async$goto = 12; break; case B.EntityAction_cloneToInvoice: // goto case $async$goto = 13; break; case B.EntityAction_cloneToQuote: // goto case $async$goto = 14; break; case B.EntityAction_clone: // goto case $async$goto = 15; break; case B.EntityAction_cloneToCredit: // goto case $async$goto = 16; break; case B.EntityAction_cloneToRecurring: // goto case $async$goto = 17; break; case B.EntityAction_markPaid: // goto case $async$goto = 18; break; case B.EntityAction_applyCredit: // goto case $async$goto = 19; break; case B.EntityAction_download: // goto case $async$goto = 20; break; case B.EntityAction_bulkDownload: // goto case $async$goto = 21; break; case B.EntityAction_restore: // goto case $async$goto = 22; break; case B.EntityAction_archive: // goto case $async$goto = 23; break; case B.EntityAction_delete: // goto case $async$goto = 24; break; case B.EntityAction_toggleMultiselect: // goto case $async$goto = 25; break; case B.EntityAction_printPdf: // goto case $async$goto = 26; break; case B.EntityAction_more: // goto case $async$goto = 27; break; case B.EntityAction_documents: // goto case $async$goto = 28; break; default: // goto default $async$goto = 29; break; } break; case 5: // case A.editEntity(null, credit, true, null); // goto after switch $async$goto = 4; break; case 6: // case store.get$_dispatchers()[0].call$1(new A.ShowPdfCredit(credit, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = credit.invitations._list; $async$goto = 32; return A._asyncAwait(A.canLaunch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true"), $async$handleCreditAction); case 32: // returning from await. $async$goto = $async$result ? 30 : 31; break; case 30: // then $async$goto = 33; return A._asyncAwait(A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true", false, false), $async$handleCreditAction); case 33: // returning from await. case 31: // join // goto after switch $async$goto = 4; break; case 8: // case t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "marked_credit_as_sent"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkSentCreditRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 9: // case case 10: // case _box_0.emailValid = true; t2.forEach$1(credits, new A.handleCreditAction_closure0(_box_0, state)); if (!_box_0.emailValid) { A.showMessageDialog(context, t1.get$clientEmailNotSet(), null, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new A.handleCreditAction_closure1(context, state, credit), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === B.EntityAction_sendEmail) { t1 = A.snackBarCompleter(context, t1.get$emailedCredit(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ShowEmailCredit(credit, context, t1)); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), "bulk_email_credits"); t2 = t3 == null ? J.$index$asx(t2.$index(0, "en"), "bulk_email_credits") : t3; A.confirmCallback(false, new A.handleCreditAction_closure2(store, context, creditIds, t1), context, t2, false, null); } // goto after switch $async$goto = 4; break; case 11: // case designId = A.getDesignIdForVendorByEntity(B.EntityType_purchaseOrder, state, credit.vendorId); A.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new A.handleCreditAction_closure3(designId)), false); // goto after switch $async$goto = 4; break; case 12: // case A.cloneToDialog(context, credit); // goto after switch $async$goto = 4; break; case 13: // case designId = A.getDesignIdForClientByEntity(credit.clientId, B.EntityType_invoice, state); A.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new A.handleCreditAction_closure4(designId)), false); // goto after switch $async$goto = 4; break; case 14: // case designId = A.getDesignIdForClientByEntity(credit.clientId, B.EntityType_quote, state); A.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new A.handleCreditAction_closure5(designId)), false); // goto after switch $async$goto = 4; break; case 15: // case case 16: // case A.createEntity(null, null, context, credit.get$clone(credit), false); // goto after switch $async$goto = 4; break; case 17: // case designId = A.getDesignIdForClientByEntity(credit.clientId, B.EntityType_invoice, state); A.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new A.handleCreditAction_closure6(designId)), false); // goto after switch $async$goto = 4; break; case 18: // case if (t2.get$length(credits) === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), "marked_credit_as_paid"); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), "marked_credit_as_paid"); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), "marked_credits_as_paid"); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), "marked_credits_as_paid"); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkCreditsPaidRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 19: // case A.createEntity(null, null, context, A.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new A.handleCreditAction_closure7(credit, credits)), false); // goto after switch $async$goto = 4; break; case 20: // case t1 = credit.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "/download?t=" + Date.now(), null, false); // goto after switch $async$goto = 4; break; case 21: // case t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 22: // case if (creditIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_credits"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(creditIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_credit"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 23: // case if (creditIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_credits"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(creditIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_credit"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 24: // case if (creditIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_credits"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(creditIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_credit"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 25: // case if (A._lateReadCheck(store.__Store__state, "_state").uiState.creditUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartCreditMultiselect()); for (t1 = t2.get$iterator(credits); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.creditUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.AddToCreditMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.RemoveFromCreditMultiselect(t2)); } // goto after switch $async$goto = 4; break; case 26: // case t1 = B.JSArray_methods.get$first(credit.invitations._list).link; t2 = Date.now(); store.get$_dispatchers()[0].call$1(new A.StartSaving()); $async$goto = 34; return A._asyncAwait(new A.WebClient().$get$3$rawResponse(0, t1 + "/download?t=" + t2, "", true), $async$handleCreditAction); case 34: // returning from await. response = $async$result; store.get$_dispatchers()[0].call$1(new A.StopSaving()); $async$goto = 35; return A._asyncAwait(A.Printing_layoutPdf(true, B.PdfPageFormat_gg4, "Document", new A.handleCreditAction_closure8(response), false), $async$handleCreditAction); case 35: // returning from await. // goto after switch $async$goto = 4; break; case 27: // case A.showEntityActionsDialog(null, A._setArrayType([credit], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 28: // case documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t2 = t2.get$iterator(credits); t2.moveNext$0();) for (t4 = t3._as(t2.get$current(t2)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); // goto after switch $async$goto = 4; break; case 29: // default A.print("## ERROR: unhandled action " + A.S(action) + " in credit_actions"); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleCreditAction, $async$completer); }, ViewCreditList: function ViewCreditList() { }, ViewCredit: function ViewCredit(t0) { this.creditId = t0; }, EditCredit: function EditCredit(t0) { this.credit = t0; }, ShowEmailCredit: function ShowEmailCredit(t0, t1, t2) { this.credit = t0; this.context = t1; this.completer = t2; }, ShowPdfCredit: function ShowPdfCredit(t0, t1, t2) { this.credit = t0; this.context = t1; this.activityId = t2; }, EditCreditItem: function EditCreditItem(t0) { this.creditItemIndex = t0; }, UpdateCredit: function UpdateCredit(t0) { this.credit = t0; }, UpdateCreditClient: function UpdateCreditClient(t0) { this.client = t0; }, LoadCredit: function LoadCredit(t0, t1) { this.completer = t0; this.creditId = t1; }, LoadCredits: function LoadCredits() { }, LoadCreditRequest: function LoadCreditRequest() { }, LoadCreditFailure: function LoadCreditFailure(t0) { this.error = t0; }, LoadCreditSuccess: function LoadCreditSuccess(t0) { this.credit = t0; }, LoadCreditsRequest: function LoadCreditsRequest() { }, LoadCreditsFailure: function LoadCreditsFailure(t0) { this.error = t0; }, LoadCreditsSuccess: function LoadCreditsSuccess(t0) { this.credits = t0; }, AddCreditContact: function AddCreditContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveCreditContact: function RemoveCreditContact(t0) { this.invitation = t0; }, AddCreditItem: function AddCreditItem(t0) { this.creditItem = t0; }, MoveCreditItem: function MoveCreditItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddCreditItems: function AddCreditItems(t0) { this.creditItems = t0; }, UpdateCreditItem: function UpdateCreditItem(t0, t1) { this.index = t0; this.creditItem = t1; }, DeleteCreditItem: function DeleteCreditItem(t0) { this.index = t0; }, SaveCreditRequest: function SaveCreditRequest(t0, t1, t2) { this.completer = t0; this.credit = t1; this.action = t2; }, SaveCreditSuccess: function SaveCreditSuccess(t0) { this.credit = t0; }, AddCreditSuccess: function AddCreditSuccess(t0) { this.credit = t0; }, SaveCreditFailure: function SaveCreditFailure() { }, EmailCreditRequest: function EmailCreditRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.creditId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailCreditSuccess: function EmailCreditSuccess() { }, EmailCreditFailure: function EmailCreditFailure() { }, MarkSentCreditRequest: function MarkSentCreditRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, MarkSentCreditSuccess: function MarkSentCreditSuccess(t0) { this.credits = t0; }, MarkSentCreditFailure: function MarkSentCreditFailure() { }, BulkEmailCreditsRequest: function BulkEmailCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, BulkEmailCreditsSuccess: function BulkEmailCreditsSuccess() { }, BulkEmailCreditsFailure: function BulkEmailCreditsFailure() { }, MarkCreditsPaidRequest: function MarkCreditsPaidRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, MarkCreditsPaidSuccess: function MarkCreditsPaidSuccess() { }, MarkCreditsPaidFailure: function MarkCreditsPaidFailure() { }, ArchiveCreditsRequest: function ArchiveCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, ArchiveCreditsSuccess: function ArchiveCreditsSuccess(t0) { this.credits = t0; }, ArchiveCreditsFailure: function ArchiveCreditsFailure() { }, DeleteCreditsRequest: function DeleteCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, DeleteCreditsSuccess: function DeleteCreditsSuccess(t0) { this.credits = t0; }, DeleteCreditsFailure: function DeleteCreditsFailure() { }, DownloadCreditsRequest: function DownloadCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, DownloadCreditsSuccess: function DownloadCreditsSuccess() { }, DownloadCreditsFailure: function DownloadCreditsFailure() { }, RestoreCreditsRequest: function RestoreCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, RestoreCreditsSuccess: function RestoreCreditsSuccess(t0) { this.credits = t0; }, RestoreCreditsFailure: function RestoreCreditsFailure() { }, FilterCredits: function FilterCredits(t0) { this.filter = t0; }, SortCredits: function SortCredits(t0) { this.field = t0; }, FilterCreditsByState: function FilterCreditsByState(t0) { this.state = t0; }, FilterCreditsByCustom1: function FilterCreditsByCustom1(t0) { this.value = t0; }, FilterCreditsByCustom2: function FilterCreditsByCustom2(t0) { this.value = t0; }, FilterCreditsByCustom3: function FilterCreditsByCustom3(t0) { this.value = t0; }, FilterCreditsByCustom4: function FilterCreditsByCustom4(t0) { this.value = t0; }, SaveCreditDocumentRequest: function SaveCreditDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.credit = t2; }, SaveCreditDocumentFailure: function SaveCreditDocumentFailure() { }, handleCreditAction_closure: function handleCreditAction_closure() { }, handleCreditAction_closure0: function handleCreditAction_closure0(t0, t1) { this._box_0 = t0; this.state = t1; }, handleCreditAction_closure1: function handleCreditAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.credit = t2; }, handleCreditAction_closure2: function handleCreditAction_closure2(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.creditIds = t2; _.localization = t3; }, handleCreditAction_closure3: function handleCreditAction_closure3(t0) { this.designId = t0; }, handleCreditAction_closure4: function handleCreditAction_closure4(t0) { this.designId = t0; }, handleCreditAction_closure5: function handleCreditAction_closure5(t0) { this.designId = t0; }, handleCreditAction_closure6: function handleCreditAction_closure6(t0) { this.designId = t0; }, handleCreditAction_closure7: function handleCreditAction_closure7(t0, t1) { this.credit = t0; this.credits = t1; }, handleCreditAction__closure: function handleCreditAction__closure() { }, handleCreditAction_closure8: function handleCreditAction_closure8(t0) { this.response = t0; }, StartCreditMultiselect: function StartCreditMultiselect() { }, AddToCreditMultiselect: function AddToCreditMultiselect(t0) { this.entity = t0; }, RemoveFromCreditMultiselect: function RemoveFromCreditMultiselect(t0) { this.entity = t0; }, ClearCreditMultiselect: function ClearCreditMultiselect() { }, UpdateCreditTab: function UpdateCreditTab(t0) { this.tabIndex = t0; }, _viewCredit() { return new A._viewCredit_closure(); }, _viewCreditList() { return new A._viewCreditList_closure0(); }, _editCredit() { return new A._editCredit_closure(); }, _showEmailCredit() { return new A._showEmailCredit_closure(); }, _showPdfCredit() { return new A._showPdfCredit_closure(); }, _archiveCredit(repository) { return new A._archiveCredit_closure(repository); }, _deleteCredit(repository) { return new A._deleteCredit_closure(repository); }, _restoreCredit(repository) { return new A._restoreCredit_closure(repository); }, _markSentCredit(repository) { return new A._markSentCredit_closure(repository); }, _markPaidCredit(repository) { return new A._markPaidCredit_closure(repository); }, _emailCredit(repository) { return new A._emailCredit_closure(repository); }, _saveCredit(repository) { return new A._saveCredit_closure(repository); }, _loadCredit(repository) { return new A._loadCredit_closure(repository); }, _loadCredits(repository) { return new A._loadCredits_closure(repository); }, _downloadCredits(repository) { return new A._downloadCredits_closure(repository); }, _bulkEmailCredits(repository) { return new A._bulkEmailCredits_closure(repository); }, _saveDocument11(repository) { return new A._saveDocument_closure0(repository); }, _viewCredit_closure: function _viewCredit_closure() { }, _viewCreditList_closure0: function _viewCreditList_closure0() { }, _viewCreditList__closure: function _viewCreditList__closure() { }, _editCredit_closure: function _editCredit_closure() { }, _showEmailCredit_closure: function _showEmailCredit_closure() { }, _showPdfCredit_closure: function _showPdfCredit_closure() { }, _archiveCredit_closure: function _archiveCredit_closure(t0) { this.repository = t0; }, _archiveCredit__closure: function _archiveCredit__closure(t0) { this.store = t0; }, _archiveCredit__closure0: function _archiveCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveCredit__closure1: function _archiveCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _deleteCredit_closure: function _deleteCredit_closure(t0) { this.repository = t0; }, _deleteCredit__closure: function _deleteCredit__closure(t0) { this.store = t0; }, _deleteCredit__closure0: function _deleteCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCredit__closure1: function _deleteCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _restoreCredit_closure: function _restoreCredit_closure(t0) { this.repository = t0; }, _restoreCredit__closure: function _restoreCredit__closure(t0) { this.store = t0; }, _restoreCredit__closure0: function _restoreCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreCredit__closure1: function _restoreCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _markSentCredit_closure: function _markSentCredit_closure(t0) { this.repository = t0; }, _markSentCredit__closure: function _markSentCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _markSentCredit__closure0: function _markSentCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markPaidCredit_closure: function _markPaidCredit_closure(t0) { this.repository = t0; }, _markPaidCredit__closure: function _markPaidCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _markPaidCredit__closure0: function _markPaidCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailCredit_closure: function _emailCredit_closure(t0) { this.repository = t0; }, _emailCredit__closure: function _emailCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailCredit__closure0: function _emailCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveCredit_closure: function _saveCredit_closure(t0) { this.repository = t0; }, _saveCredit__closure: function _saveCredit__closure(t0) { this.action = t0; }, _saveCredit___closure: function _saveCredit___closure() { }, _saveCredit__closure0: function _saveCredit__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveCredit__closure1: function _saveCredit__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadCredit_closure: function _loadCredit_closure(t0) { this.repository = t0; }, _loadCredit__closure: function _loadCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCredit__closure0: function _loadCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCredits_closure: function _loadCredits_closure(t0) { this.repository = t0; }, _loadCredits__closure: function _loadCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCredits__closure0: function _loadCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadCredits_closure: function _downloadCredits_closure(t0) { this.repository = t0; }, _downloadCredits__closure: function _downloadCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadCredits__closure0: function _downloadCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailCredits_closure: function _bulkEmailCredits_closure(t0) { this.repository = t0; }, _bulkEmailCredits__closure: function _bulkEmailCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailCredits__closure0: function _bulkEmailCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure0: function _saveDocument_closure0(t0) { this.repository = t0; }, _saveDocument__closure1: function _saveDocument__closure1(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure2: function _saveDocument__closure2(t0, t1) { this.store = t0; this.action = t1; }, creditUIReducer(state, action) { var t1; state.toString; t1 = new A.CreditUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._credit_state$_$v = state; new A.creditUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing0(credit, action) { var _null = null; return A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); }, _updateEditing0(credit, action) { return action.get$credit(); }, _addCreditItem(credit, action) { return credit.rebuild$1(new A._addCreditItem_closure(action)); }, _addCreditItems(credit, action) { return credit.rebuild$1(new A._addCreditItems_closure(action)); }, _removeCreditItem(credit, action) { if (credit.lineItems._list.length <= action.index) return credit; return credit.rebuild$1(new A._removeCreditItem_closure(action)); }, _updateCreditItem(credit, action) { if (credit.lineItems._list.length <= action.index) return credit; return credit.rebuild$1(new A._updateCreditItem_closure(action)); }, _viewCreditList0(creditListState, action) { return creditListState.rebuild$1(new A._viewCreditList_closure()); }, _filterCreditsByCustom1(creditListState, action) { var t1 = creditListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByCustom1_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByCustom1_closure0(action)); }, _filterCreditsByCustom2(creditListState, action) { var t1 = creditListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByCustom2_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByCustom2_closure0(action)); }, _filterCreditsByCustom3(creditListState, action) { var t1 = creditListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByCustom3_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByCustom3_closure0(action)); }, _filterCreditsByCustom4(creditListState, action) { var t1 = creditListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByCustom4_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByCustom4_closure0(action)); }, _filterCreditsByState(creditListState, action) { var t1 = creditListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByState_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByState_closure0(action)); }, _filterCreditsByStatus(creditListState, action) { var t1 = creditListState.statusFilters, t2 = action.get$status(action); if (B.JSArray_methods.contains$1(t1._list, t2)) return creditListState.rebuild$1(new A._filterCreditsByStatus_closure(action)); else return creditListState.rebuild$1(new A._filterCreditsByStatus_closure0(action)); }, _filterCredits(creditListState, action) { return creditListState.rebuild$1(new A._filterCredits_closure(action, creditListState)); }, _sortCredits(creditListState, action) { return creditListState.rebuild$1(new A._sortCredits_closure(action)); }, _startListMultiselect1(creditListState, action) { return creditListState.rebuild$1(new A._startListMultiselect_closure10()); }, _addToListMultiselect1(creditListState, action) { return creditListState.rebuild$1(new A._addToListMultiselect_closure10(action)); }, _removeFromListMultiselect1(creditListState, action) { return creditListState.rebuild$1(new A._removeFromListMultiselect_closure10(action)); }, _clearListMultiselect1(creditListState, action) { return creditListState.rebuild$1(new A._clearListMultiselect_closure10()); }, _markSentCreditSuccess(creditState, action) { return creditState.rebuild$1(new A._markSentCreditSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.credits, new A._markSentCreditSuccess_closure0(), new A._markSentCreditSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _archiveCreditSuccess(creditState, action) { return creditState.rebuild$1(new A._archiveCreditSuccess_closure(action)); }, _deleteCreditSuccess(creditState, action) { return creditState.rebuild$1(new A._deleteCreditSuccess_closure(action)); }, _restoreCreditSuccess(creditState, action) { return creditState.rebuild$1(new A._restoreCreditSuccess_closure(action)); }, _addCredit(creditState, action) { return creditState.rebuild$1(new A._addCredit_closure(action)); }, _updateCredit(invoiceState, action) { return invoiceState.rebuild$1(new A._updateCredit_closure(action.get$credit())); }, _setLoadedCredits(creditState, action) { return creditState.loadCredits$1(action.credits); }, _setLoadedCompany1(creditState, action) { return creditState.loadCredits$1(action.userCompany.company.credits); }, creditUIReducer_closure: function creditUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure79: function forceSelectedReducer_closure79() { }, forceSelectedReducer_closure80: function forceSelectedReducer_closure80() { }, forceSelectedReducer_closure81: function forceSelectedReducer_closure81() { }, forceSelectedReducer_closure82: function forceSelectedReducer_closure82() { }, forceSelectedReducer_closure83: function forceSelectedReducer_closure83() { }, forceSelectedReducer_closure84: function forceSelectedReducer_closure84() { }, forceSelectedReducer_closure85: function forceSelectedReducer_closure85() { }, forceSelectedReducer_closure86: function forceSelectedReducer_closure86() { }, tabIndexReducer_closure11: function tabIndexReducer_closure11() { }, tabIndexReducer_closure12: function tabIndexReducer_closure12() { }, historyActivityIdReducer_closure0: function historyActivityIdReducer_closure0() { }, editingItemReducer_closure1: function editingItemReducer_closure1() { }, editingItemReducer_closure2: function editingItemReducer_closure2() { }, selectedIdReducer_closure160: function selectedIdReducer_closure160() { }, selectedIdReducer_closure161: function selectedIdReducer_closure161() { }, selectedIdReducer_closure162: function selectedIdReducer_closure162() { }, selectedIdReducer_closure163: function selectedIdReducer_closure163() { }, selectedIdReducer_closure164: function selectedIdReducer_closure164() { }, selectedIdReducer_closure165: function selectedIdReducer_closure165() { }, selectedIdReducer_closure166: function selectedIdReducer_closure166() { }, selectedIdReducer_closure167: function selectedIdReducer_closure167() { }, selectedIdReducer_closure168: function selectedIdReducer_closure168() { }, selectedIdReducer_closure169: function selectedIdReducer_closure169() { }, selectedIdReducer_closure170: function selectedIdReducer_closure170() { }, selectedIdReducer_closure171: function selectedIdReducer_closure171() { }, selectedIdReducer_closure172: function selectedIdReducer_closure172() { }, selectedIdReducer_closure173: function selectedIdReducer_closure173() { }, selectedIdReducer_closure174: function selectedIdReducer_closure174() { }, selectedIdReducer_closure175: function selectedIdReducer_closure175() { }, selectedIdReducer_closure176: function selectedIdReducer_closure176() { }, selectedIdReducer_closure177: function selectedIdReducer_closure177() { }, selectedIdReducer_closure178: function selectedIdReducer_closure178() { }, editingReducer_closure49: function editingReducer_closure49() { }, editingReducer__closure22: function editingReducer__closure22() { }, editingReducer_closure50: function editingReducer_closure50() { }, editingReducer__closure21: function editingReducer__closure21() { }, editingReducer_closure51: function editingReducer_closure51() { }, editingReducer_closure52: function editingReducer_closure52() { }, editingReducer__closure20: function editingReducer__closure20() { }, editingReducer_closure53: function editingReducer_closure53() { }, editingReducer__closure19: function editingReducer__closure19() { }, editingReducer_closure54: function editingReducer_closure54() { }, editingReducer__closure18: function editingReducer__closure18(t0) { this.client = t0; }, editingReducer___closure0: function editingReducer___closure0() { }, editingReducer_closure55: function editingReducer_closure55() { }, editingReducer_closure56: function editingReducer_closure56() { }, editingReducer_closure57: function editingReducer_closure57() { }, editingReducer_closure58: function editingReducer_closure58() { }, editingReducer__closure17: function editingReducer__closure17(t0) { this.action = t0; }, editingReducer_closure59: function editingReducer_closure59() { }, editingReducer__closure16: function editingReducer__closure16(t0) { this.action = t0; }, _addCreditItem_closure: function _addCreditItem_closure(t0) { this.action = t0; }, _addCreditItems_closure: function _addCreditItems_closure(t0) { this.action = t0; }, _removeCreditItem_closure: function _removeCreditItem_closure(t0) { this.action = t0; }, _updateCreditItem_closure: function _updateCreditItem_closure(t0) { this.action = t0; }, _viewCreditList_closure: function _viewCreditList_closure() { }, _filterCreditsByCustom1_closure: function _filterCreditsByCustom1_closure(t0) { this.action = t0; }, _filterCreditsByCustom1_closure0: function _filterCreditsByCustom1_closure0(t0) { this.action = t0; }, _filterCreditsByCustom2_closure: function _filterCreditsByCustom2_closure(t0) { this.action = t0; }, _filterCreditsByCustom2_closure0: function _filterCreditsByCustom2_closure0(t0) { this.action = t0; }, _filterCreditsByCustom3_closure: function _filterCreditsByCustom3_closure(t0) { this.action = t0; }, _filterCreditsByCustom3_closure0: function _filterCreditsByCustom3_closure0(t0) { this.action = t0; }, _filterCreditsByCustom4_closure: function _filterCreditsByCustom4_closure(t0) { this.action = t0; }, _filterCreditsByCustom4_closure0: function _filterCreditsByCustom4_closure0(t0) { this.action = t0; }, _filterCreditsByState_closure: function _filterCreditsByState_closure(t0) { this.action = t0; }, _filterCreditsByState_closure0: function _filterCreditsByState_closure0(t0) { this.action = t0; }, _filterCreditsByStatus_closure: function _filterCreditsByStatus_closure(t0) { this.action = t0; }, _filterCreditsByStatus_closure0: function _filterCreditsByStatus_closure0(t0) { this.action = t0; }, _filterCredits_closure: function _filterCredits_closure(t0, t1) { this.action = t0; this.creditListState = t1; }, _sortCredits_closure: function _sortCredits_closure(t0) { this.action = t0; }, _startListMultiselect_closure10: function _startListMultiselect_closure10() { }, _addToListMultiselect_closure10: function _addToListMultiselect_closure10(t0) { this.action = t0; }, _removeFromListMultiselect_closure10: function _removeFromListMultiselect_closure10(t0) { this.action = t0; }, _clearListMultiselect_closure10: function _clearListMultiselect_closure10() { }, _markSentCreditSuccess_closure0: function _markSentCreditSuccess_closure0() { }, _markSentCreditSuccess_closure1: function _markSentCreditSuccess_closure1() { }, _markSentCreditSuccess_closure: function _markSentCreditSuccess_closure(t0) { this.creditMap = t0; }, _archiveCreditSuccess_closure: function _archiveCreditSuccess_closure(t0) { this.action = t0; }, _deleteCreditSuccess_closure: function _deleteCreditSuccess_closure(t0) { this.action = t0; }, _restoreCreditSuccess_closure: function _restoreCreditSuccess_closure(t0) { this.action = t0; }, _addCredit_closure: function _addCredit_closure(t0) { this.action = t0; }, _addCredit__closure: function _addCredit__closure() { }, _updateCredit_closure: function _updateCredit_closure(t0) { this.credit = t0; }, _updateCredit__closure: function _updateCredit__closure() { }, creditContactSelector(credit, client) { var t1 = {}, t2 = credit.invitations._list, t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String*>"), contactIds = A.List_List$of(new A.MappedListIterable(t2, new A.creditContactSelector_closure(), t3), true, t3._eval$1("ListIterable.E")); t1.contactIds = contactIds; if (B.JSArray_methods.contains$1(contactIds, client.get$primaryContact().id)) t1.contactIds = A._setArrayType([client.get$primaryContact().id], type$.JSArray_legacy_String); return B.JSArray_methods.firstWhere$2$orElse(client.contacts._list, new A.creditContactSelector_closure0(t1), null); }, dropdownCreditSelector(creditMap, clientMap, vendorMap, creditList, clientId, userMap, excludedIds) { var t1 = creditList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownCreditSelector_closure(creditMap, excludedIds, clientId, clientMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownCreditSelector_closure0(creditMap, clientMap, vendorMap, userMap)); return list; }, filteredCreditsSelector(selectionState, creditMap, creditList, clientMap, vendorMap, creditListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = creditList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredCreditsSelector_closure(creditMap, clientMap, selectionState, filterEntityType, filterEntityId, creditListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredCreditsSelector_closure0(creditMap, creditListState, clientMap, vendorMap, userMap)); return list; }, creditStatsForDesign(designId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; creditMap._map$_map.forEach$1(0, new A.creditStatsForDesign_closure(t1, designId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, creditStatsForClient(clientId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; creditMap._map$_map.forEach$1(0, new A.creditStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, creditStatsForUser(userId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; creditMap._map$_map.forEach$1(0, new A.creditStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasCreditChanges(credit, creditMap) { var t1; if (credit.get$isNew()) t1 = credit.isChanged; else { t1 = credit.id; t1 = !credit.$eq(0, creditMap._map$_map.$index(0, t1)); } return t1; }, creditContactSelector_closure: function creditContactSelector_closure() { }, creditContactSelector_closure0: function creditContactSelector_closure0(t0) { this._box_0 = t0; }, memoizedDropdownCreditList_closure: function memoizedDropdownCreditList_closure() { }, dropdownCreditSelector_closure: function dropdownCreditSelector_closure(t0, t1, t2, t3) { var _ = this; _.creditMap = t0; _.excludedIds = t1; _.clientId = t2; _.clientMap = t3; }, dropdownCreditSelector_closure0: function dropdownCreditSelector_closure0(t0, t1, t2, t3) { var _ = this; _.creditMap = t0; _.clientMap = t1; _.vendorMap = t2; _.userMap = t3; }, memoizedFilteredCreditList_closure: function memoizedFilteredCreditList_closure() { }, filteredCreditsSelector_closure: function filteredCreditsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.creditMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.creditListState = t5; }, filteredCreditsSelector_closure0: function filteredCreditsSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.creditMap = t0; _.creditListState = t1; _.clientMap = t2; _.vendorMap = t3; _.userMap = t4; }, memoizedCreditStatsForDesign_closure: function memoizedCreditStatsForDesign_closure() { }, creditStatsForDesign_closure: function creditStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedCreditStatsForClient_closure: function memoizedCreditStatsForClient_closure() { }, creditStatsForClient_closure: function creditStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedCreditStatsForUser_closure: function memoizedCreditStatsForUser_closure() { }, creditStatsForUser_closure: function creditStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$CreditState$_(list, map) { var _s11_ = "CreditState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "list")); return new A._$CreditState(map, list); }, _$CreditUIState$_(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("CreditUIState", "listUIState")); return new A._$CreditUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, CreditState: function CreditState() { }, CreditState_loadCredits_closure0: function CreditState_loadCredits_closure0() { }, CreditState_loadCredits_closure1: function CreditState_loadCredits_closure1() { }, CreditState_loadCredits_closure: function CreditState_loadCredits_closure(t0, t1) { this.$this = t0; this.map = t1; }, CreditUIState: function CreditUIState() { }, _$CreditStateSerializer: function _$CreditStateSerializer() { }, _$CreditUIStateSerializer: function _$CreditUIStateSerializer() { }, _$CreditState: function _$CreditState(t0, t1) { this.map = t0; this.list = t1; this._credit_state$__hashCode = null; }, CreditStateBuilder: function CreditStateBuilder() { this._credit_state$_list = this._credit_state$_map = this._credit_state$_$v = null; }, _$CreditUIState: function _$CreditUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._credit_state$__hashCode = null; }, CreditUIStateBuilder: function CreditUIStateBuilder() { var _ = this; _._credit_state$_cancelCompleter = _._credit_state$_saveCompleter = _._credit_state$_tabIndex = _._credit_state$_forceSelected = _._credit_state$_selectedId = _._credit_state$_listUIState = _._credit_state$_historyActivityId = _._credit_state$_editingItemIndex = _._credit_state$_editing = _._credit_state$_$v = null; }, _CreditUIState_Object_EntityUIState: function _CreditUIState_Object_EntityUIState() { }, ViewDashboard: function ViewDashboard(t0, t1) { this.force = t0; this.filter = t1; }, UpdateDashboardSettings: function UpdateDashboardSettings(t0, t1, t2, t3) { var _ = this; _.settings = t0; _.offset = t1; _.currencyId = t2; _.includeTaxes = t3; }, UpdateDashboardSelection: function UpdateDashboardSelection(t0, t1) { this.entityType = t0; this.entityIds = t1; }, UpdateDashboardEntityType: function UpdateDashboardEntityType(t0) { this.entityType = t0; }, UpdateDashboardSidebar: function UpdateDashboardSidebar(t0) { this.showSidebar = t0; }, _createViewDashboard() { return new A._createViewDashboard_closure(); }, _createViewDashboard_closure: function _createViewDashboard_closure() { }, _createViewDashboard__closure: function _createViewDashboard__closure(t0, t1, t2) { this.store = t0; this.next = t1; this.action = t2; }, _createViewDashboard___closure: function _createViewDashboard___closure() { }, dashboardUIReducer(state, action) { var t1; state.toString; t1 = new A.DashboardUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._dashboard_state$_$v = state; new A.dashboardUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, dashboardSettingsReducer(state, action) { var settings; if (action instanceof A.UpdateDashboardSettings) { settings = action.settings; if (settings != null) return state.rebuild$1(new A.dashboardSettingsReducer_closure(settings)); else if (action.includeTaxes != null) return state.rebuild$1(new A.dashboardSettingsReducer_closure0(action)); else if (action.offset != null) return state.rebuild$1(new A.dashboardSettingsReducer_closure1(action)); else if (action.currencyId != null) return state.rebuild$1(new A.dashboardSettingsReducer_closure2(action)); } else if (action instanceof A.SelectCompany) return state; return state; }, dashboardUIReducer_closure: function dashboardUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, selectedEntitiesReducer_closure: function selectedEntitiesReducer_closure() { }, selectedEntitiesReducer__closure0: function selectedEntitiesReducer__closure0(t0) { this.action = t0; }, selectedEntitiesReducer_closure0: function selectedEntitiesReducer_closure0() { }, selectedEntitiesReducer__closure: function selectedEntitiesReducer__closure() { }, selectedEntityTypeReducer_closure: function selectedEntityTypeReducer_closure() { }, showSidebarReducer_closure: function showSidebarReducer_closure() { }, dashboardSettingsReducer_closure: function dashboardSettingsReducer_closure(t0) { this.settings = t0; }, dashboardSettingsReducer_closure0: function dashboardSettingsReducer_closure0(t0) { this.action = t0; }, dashboardSettingsReducer_closure1: function dashboardSettingsReducer_closure1(t0) { this.action = t0; }, dashboardSettingsReducer_closure2: function dashboardSettingsReducer_closure2(t0) { this.action = t0; }, _chartInvoices(clientMap, company, currencyMap, invoiceMap, settings) { var outstandingData, counts, totals, date, t5, _s6_ = "active", _s11_ = "outstanding", t1 = type$.JSArray_legacy_ChartMoneyData, t2 = A._setArrayType([], t1), t3 = type$.legacy_String, t4 = type$.legacy_List_legacy_String, activeData = new A.ChartDataGroup(_s6_, t2, A.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); t1 = A._setArrayType([], t1); outstandingData = new A.ChartDataGroup(_s11_, t1, A.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); counts = A.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "outstanding", 0], t3, type$.legacy_int); t4 = type$.legacy_double; totals = A.LinkedHashMap_LinkedHashMap$_literal(["active", A.LinkedHashMap_LinkedHashMap$_empty(t3, t4), "outstanding", A.LinkedHashMap_LinkedHashMap$_empty(t3, t4)], t3, type$.legacy_Map_of_legacy_String_and_legacy_double); invoiceMap._map$_map.forEach$1(0, new A._chartInvoices_closure(clientMap, settings, company, totals, activeData, outstandingData, currencyMap, counts)); date = A.convertSqlDateToDateTime(settings.startDate$1(company)); for (t3 = A.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t3;) { t5 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t5)) { t2.push(new A.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t5))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t5); t1.push(new A.ChartMoneyData(date, totals.$index(0, _s11_).$index(0, t5))); outstandingData.total = outstandingData.total + totals.$index(0, _s11_).$index(0, t5); } else { t2.push(new A.ChartMoneyData(date, 0)); t1.push(new A.ChartMoneyData(date, 0)); } t4 += 86400000; t5 = date.isUtc; date = new A.DateTime(t4, t5); date.DateTime$_withValue$2$isUtc(t4, t5); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? A.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s11_); outstandingData.average = (t1 == null ? 0 : t1) > 0 ? A.round(outstandingData.total / counts.$index(0, _s11_), 2) : 0; return A._setArrayType([activeData, outstandingData], type$.JSArray_legacy_ChartDataGroup); }, chartQuotes(clientMap, company, currencyMap, quoteMap, settings) { var t3, t4, activeData, t5, approvedData, unapprovedData, date, t6, _s6_ = "active", _s8_ = "approved", _s10_ = "unapproved", t1 = type$.legacy_String, counts = A.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "approved", 0, "unapproved", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = A.LinkedHashMap_LinkedHashMap$_literal(["active", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "approved", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "unapproved", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = A._setArrayType([], t2); t4 = type$.legacy_List_legacy_String; activeData = new A.ChartDataGroup(_s6_, t3, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = A._setArrayType([], t2); approvedData = new A.ChartDataGroup(_s8_, t5, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = A._setArrayType([], t2); unapprovedData = new A.ChartDataGroup(_s10_, t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); quoteMap._map$_map.forEach$1(0, new A.chartQuotes_closure(clientMap, settings, company, totals, activeData, approvedData, unapprovedData, currencyMap, counts)); date = A.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = A.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t6 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t6)) { t3.push(new A.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t6))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t6); t5.push(new A.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t6))); approvedData.total = approvedData.total + totals.$index(0, _s8_).$index(0, t6); t2.push(new A.ChartMoneyData(date, totals.$index(0, _s10_).$index(0, t6))); unapprovedData.total = unapprovedData.total + totals.$index(0, _s10_).$index(0, t6); } else { t3.push(new A.ChartMoneyData(date, 0)); t5.push(new A.ChartMoneyData(date, 0)); t2.push(new A.ChartMoneyData(date, 0)); } t4 += 86400000; t6 = date.isUtc; date = new A.DateTime(t4, t6); date.DateTime$_withValue$2$isUtc(t4, t6); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? A.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); approvedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(approvedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s10_); unapprovedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(unapprovedData.total / counts.$index(0, _s10_), 2) : 0; return A._setArrayType([activeData, approvedData, unapprovedData], type$.JSArray_legacy_ChartDataGroup); }, chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { var t3, t4, activeData, refundedData, date, t5, _s6_ = "active", _s8_ = "refunded", t1 = type$.legacy_String, counts = A.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "refunded", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = A.LinkedHashMap_LinkedHashMap$_literal(["active", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "refunded", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = A._setArrayType([], t2); t4 = type$.legacy_List_legacy_String; activeData = new A.ChartDataGroup(_s6_, t3, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = A._setArrayType([], t2); refundedData = new A.ChartDataGroup(_s8_, t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); paymentMap._map$_map.forEach$1(0, new A.chartPayments_closure(clientMap, settings, company, totals, activeData, refundedData, currencyMap, counts)); date = A.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = A.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t5 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t5)) { t3.push(new A.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t5))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t5); t2.push(new A.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t5))); refundedData.total = refundedData.total + totals.$index(0, _s8_).$index(0, t5); } else { t3.push(new A.ChartMoneyData(date, 0)); t2.push(new A.ChartMoneyData(date, 0)); } t4 += 86400000; t5 = date.isUtc; date = new A.DateTime(t4, t5); date.DateTime$_withValue$2$isUtc(t4, t5); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? A.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); refundedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(refundedData.total / counts.$index(0, _s8_), 2) : 0; return A._setArrayType([activeData, refundedData], type$.JSArray_legacy_ChartDataGroup); }, chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { var t3, t4, loggedData, t5, invoicedData, paidData, date, t6, _s6_ = "logged", _s8_ = "invoiced", _s4_ = "paid", t1 = type$.legacy_String, counts = A.LinkedHashMap_LinkedHashMap$_literal(["logged", 0, "invoiced", 0, "paid", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = A.LinkedHashMap_LinkedHashMap$_literal(["logged", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "invoiced", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "paid", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = A._setArrayType([], t2); t4 = type$.legacy_List_legacy_String; loggedData = new A.ChartDataGroup(_s6_, t3, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = A._setArrayType([], t2); invoicedData = new A.ChartDataGroup(_s8_, t5, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = A._setArrayType([], t2); paidData = new A.ChartDataGroup(_s4_, t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); taskMap._map$_map.forEach$1(0, new A.chartTasks_closure(clientMap, invoiceMap, projectMap, groupMap, settings, company, totals, loggedData, invoicedData, paidData, currencyMap, counts)); date = A.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = A.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t6 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t6)) { t3.push(new A.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t6))); loggedData.total = loggedData.total + totals.$index(0, _s6_).$index(0, t6); t5.push(new A.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t6))); invoicedData.total = invoicedData.total + totals.$index(0, _s8_).$index(0, t6); t2.push(new A.ChartMoneyData(date, totals.$index(0, _s4_).$index(0, t6))); paidData.total = paidData.total + totals.$index(0, _s4_).$index(0, t6); } else { t3.push(new A.ChartMoneyData(date, 0)); t5.push(new A.ChartMoneyData(date, 0)); t2.push(new A.ChartMoneyData(date, 0)); } t4 += 86400000; t6 = date.isUtc; date = new A.DateTime(t4, t6); date.DateTime$_withValue$2$isUtc(t4, t6); } t1 = counts.$index(0, _s6_); loggedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(loggedData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); invoicedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(invoicedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s4_); paidData.average = (t1 == null ? 0 : t1) > 0 ? A.round(paidData.total / counts.$index(0, _s4_), 2) : 0; return A._setArrayType([loggedData, invoicedData, paidData], type$.JSArray_legacy_ChartDataGroup); }, chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap) { var t3, t4, loggedData, t5, pendingData, t6, invoicedData, paidData, date, t7, _s6_ = "logged", _s7_ = "pending", _s8_ = "invoiced", _s12_ = "invoice_paid", t1 = type$.legacy_String, counts = A.LinkedHashMap_LinkedHashMap$_literal(["logged", 0, "pending", 0, "invoiced", 0, "invoice_paid", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = A.LinkedHashMap_LinkedHashMap$_literal(["logged", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "pending", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "invoiced", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "invoice_paid", A.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = A._setArrayType([], t2); t4 = type$.legacy_List_legacy_String; loggedData = new A.ChartDataGroup(_s6_, t3, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = A._setArrayType([], t2); pendingData = new A.ChartDataGroup(_s7_, t5, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t6 = A._setArrayType([], t2); invoicedData = new A.ChartDataGroup(_s8_, t6, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = A._setArrayType([], t2); paidData = new A.ChartDataGroup(_s12_, t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); expenseMap._map$_map.forEach$1(0, new A.chartExpenses_closure(settings, company, totals, loggedData, pendingData, invoicedData, paidData, currencyMap, invoiceMap, counts)); date = A.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = A.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t7 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t7)) { t3.push(new A.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t7))); loggedData.total = loggedData.total + totals.$index(0, _s6_).$index(0, t7); t5.push(new A.ChartMoneyData(date, totals.$index(0, _s7_).$index(0, t7))); pendingData.total = pendingData.total + totals.$index(0, _s7_).$index(0, t7); t6.push(new A.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t7))); invoicedData.total = invoicedData.total + totals.$index(0, _s8_).$index(0, t7); t2.push(new A.ChartMoneyData(date, totals.$index(0, _s12_).$index(0, t7))); paidData.total = paidData.total + totals.$index(0, _s12_).$index(0, t7); } else { t3.push(new A.ChartMoneyData(date, 0)); t5.push(new A.ChartMoneyData(date, 0)); t6.push(new A.ChartMoneyData(date, 0)); t2.push(new A.ChartMoneyData(date, 0)); } t4 += 86400000; t7 = date.isUtc; date = new A.DateTime(t4, t7); date.DateTime$_withValue$2$isUtc(t4, t7); } t1 = counts.$index(0, _s6_); loggedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(loggedData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s7_); pendingData.average = (t1 == null ? 0 : t1) > 0 ? A.round(pendingData.total / counts.$index(0, _s7_), 2) : 0; t1 = counts.$index(0, _s8_); invoicedData.average = (t1 == null ? 0 : t1) > 0 ? A.round(invoicedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s12_); paidData.average = (t1 == null ? 0 : t1) > 0 ? A.round(paidData.total / counts.$index(0, _s12_), 2) : 0; return A._setArrayType([loggedData, pendingData, invoicedData, paidData], type$.JSArray_legacy_ChartDataGroup); }, runningTasks(taskMap, userId) { var tasks = A._setArrayType([], type$.JSArray_legacy_TaskEntity); taskMap._map$_map.forEach$1(0, new A.runningTasks_closure(userId, tasks)); return tasks; }, ChartDataGroup: function ChartDataGroup(t0, t1, t2) { var _ = this; _.name = t0; _.rawSeries = t1; _.entityMap = t2; _.chartSeries = null; _.previousTotal = _.average = _.total = 0; }, ChartMoneyData: function ChartMoneyData(t0, t1) { this.date = t0; this.amount = t1; }, memoizedChartInvoices_closure: function memoizedChartInvoices_closure() { }, memoizedPreviousChartInvoices_closure: function memoizedPreviousChartInvoices_closure() { }, _chartInvoices_closure: function _chartInvoices_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.outstandingData = t5; _.currencyMap = t6; _.counts = t7; }, memoizedChartQuotes_closure: function memoizedChartQuotes_closure() { }, memoizedPreviousChartQuotes_closure: function memoizedPreviousChartQuotes_closure() { }, chartQuotes_closure: function chartQuotes_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.approvedData = t5; _.unapprovedData = t6; _.currencyMap = t7; _.counts = t8; }, memoizedChartPayments_closure: function memoizedChartPayments_closure() { }, memoizedPreviousChartPayments_closure: function memoizedPreviousChartPayments_closure() { }, chartPayments_closure: function chartPayments_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.refundedData = t5; _.currencyMap = t6; _.counts = t7; }, memoizedChartTasks_closure: function memoizedChartTasks_closure() { }, memoizedPreviousChartTasks_closure: function memoizedPreviousChartTasks_closure() { }, chartTasks_closure: function chartTasks_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.clientMap = t0; _.invoiceMap = t1; _.projectMap = t2; _.groupMap = t3; _.settings = t4; _.company = t5; _.totals = t6; _.loggedData = t7; _.invoicedData = t8; _.paidData = t9; _.currencyMap = t10; _.counts = t11; }, chartTasks__closure: function chartTasks__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.totals = t0; _.loggedData = t1; _.invoicedData = t2; _.paidData = t3; _.company = t4; _.project = t5; _.client = t6; _.task = t7; _.group = t8; _.settings = t9; _.invoice = t10; _.currencyMap = t11; _.invoiceMap = t12; }, chartTasks___closure: function chartTasks___closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.totals = t0; _.loggedData = t1; _.invoicedData = t2; _.paidData = t3; _.company = t4; _.project = t5; _.client = t6; _.task = t7; _.group = t8; _.settings = t9; _.invoice = t10; _.currencyMap = t11; _.invoiceMap = t12; }, chartExpenses_closure: function chartExpenses_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.settings = t0; _.company = t1; _.totals = t2; _.loggedData = t3; _.pendingData = t4; _.invoicedData = t5; _.paidData = t6; _.currencyMap = t7; _.invoiceMap = t8; _.counts = t9; }, memoizedChartExpenses_closure: function memoizedChartExpenses_closure() { }, memoizedPreviousChartExpenses_closure: function memoizedPreviousChartExpenses_closure() { }, memoizedRunningTasks_closure0: function memoizedRunningTasks_closure0() { }, runningTasks_closure: function runningTasks_closure(t0, t1) { this.userId = t0; this.tasks = t1; }, _upcomingInvoices(clientMap, invoiceMap) { var invoices = A._setArrayType([], type$.JSArray_legacy_InvoiceEntity); invoiceMap._map$_map.forEach$1(0, new A._upcomingInvoices_closure(clientMap, invoices)); B.JSArray_methods.sort$1(invoices, new A._upcomingInvoices_closure0()); return invoices; }, _pastDueInvoices(clientMap, invoiceMap) { var invoices = A._setArrayType([], type$.JSArray_legacy_InvoiceEntity); invoiceMap._map$_map.forEach$1(0, new A._pastDueInvoices_closure(clientMap, invoices)); B.JSArray_methods.sort$1(invoices, new A._pastDueInvoices_closure0()); return invoices; }, _recentPayments(clientMap, paymentMap) { var payments = A._setArrayType([], type$.JSArray_legacy_PaymentEntity), threeMonthsAgo = B.JSNumber_methods.round$0(new A.DateTime(Date.now(), false).subtract$1(A.Duration$(60, 0, 0, 0, 0, 0))._value / 1000); paymentMap._map$_map.forEach$1(0, new A._recentPayments_closure(clientMap, threeMonthsAgo, payments)); B.JSArray_methods.sort$1(payments, new A._recentPayments_closure0()); return payments; }, _upcomingQuotes(clientMap, quoteMap) { var quotes = A._setArrayType([], type$.JSArray_legacy_InvoiceEntity); quoteMap._map$_map.forEach$1(0, new A._upcomingQuotes_closure(clientMap, quotes)); B.JSArray_methods.sort$1(quotes, new A._upcomingQuotes_closure0()); return quotes; }, _expiredQuotes(clientMap, quoteMap) { var quotes = A._setArrayType([], type$.JSArray_legacy_InvoiceEntity); quoteMap._map$_map.forEach$1(0, new A._expiredQuotes_closure(clientMap, quotes)); B.JSArray_methods.sort$1(quotes, new A._expiredQuotes_closure0()); return quotes; }, _runningTasks(clientMap, taskMap) { var tasks = A._setArrayType([], type$.JSArray_legacy_TaskEntity); taskMap._map$_map.forEach$1(0, new A._runningTasks_closure(clientMap, tasks)); B.JSArray_methods.sort$1(tasks, new A._runningTasks_closure0()); return tasks; }, _recentTasks(clientMap, taskMap) { var tasks = A._setArrayType([], type$.JSArray_legacy_TaskEntity); taskMap._map$_map.forEach$1(0, new A._recentTasks_closure(clientMap, tasks)); B.JSArray_methods.sort$1(tasks, new A._recentTasks_closure0()); return tasks; }, _recentExpenses(clientMap, expenseMap) { var expenses = A._setArrayType([], type$.JSArray_legacy_ExpenseEntity); expenseMap._map$_map.forEach$1(0, new A._recentExpenses_closure(clientMap, expenses)); B.JSArray_methods.sort$1(expenses, new A._recentExpenses_closure0()); return expenses; }, memoizedUpcomingInvoices_closure: function memoizedUpcomingInvoices_closure() { }, _upcomingInvoices_closure: function _upcomingInvoices_closure(t0, t1) { this.clientMap = t0; this.invoices = t1; }, _upcomingInvoices_closure0: function _upcomingInvoices_closure0() { }, memoizedPastDueInvoices_closure: function memoizedPastDueInvoices_closure() { }, _pastDueInvoices_closure: function _pastDueInvoices_closure(t0, t1) { this.clientMap = t0; this.invoices = t1; }, _pastDueInvoices_closure0: function _pastDueInvoices_closure0() { }, memoizedRecentPayments_closure: function memoizedRecentPayments_closure() { }, _recentPayments_closure: function _recentPayments_closure(t0, t1, t2) { this.clientMap = t0; this.threeMonthsAgo = t1; this.payments = t2; }, _recentPayments_closure0: function _recentPayments_closure0() { }, memoizedUpcomingQuotes_closure: function memoizedUpcomingQuotes_closure() { }, _upcomingQuotes_closure: function _upcomingQuotes_closure(t0, t1) { this.clientMap = t0; this.quotes = t1; }, _upcomingQuotes_closure0: function _upcomingQuotes_closure0() { }, memoizedExpiredQuotes_closure: function memoizedExpiredQuotes_closure() { }, _expiredQuotes_closure: function _expiredQuotes_closure(t0, t1) { this.clientMap = t0; this.quotes = t1; }, _expiredQuotes_closure0: function _expiredQuotes_closure0() { }, memoizedRunningTasks_closure: function memoizedRunningTasks_closure() { }, _runningTasks_closure: function _runningTasks_closure(t0, t1) { this.clientMap = t0; this.tasks = t1; }, _runningTasks_closure0: function _runningTasks_closure0() { }, memoizedRecentTasks_closure: function memoizedRecentTasks_closure() { }, _recentTasks_closure: function _recentTasks_closure(t0, t1) { this.clientMap = t0; this.tasks = t1; }, _recentTasks_closure0: function _recentTasks_closure0() { }, memoizedRecentExpenses_closure: function memoizedRecentExpenses_closure() { }, _recentExpenses_closure: function _recentExpenses_closure(t0, t1) { this.clientMap = t0; this.expenses = t1; }, _recentExpenses_closure0: function _recentExpenses_closure0() { }, _$DashboardUIState$_(selectedEntities, selectedEntityType, settings, showSidebar) { if (selectedEntities == null) A.throwExpression(A.BuiltValueNullFieldError$("DashboardUIState", "selectedEntities")); return new A._$DashboardUIState(settings, selectedEntityType, selectedEntities, showSidebar); }, _$DashboardUISettings$_(compareCustomEndDate, compareCustomStartDate, compareDateRange, currencyId, customEndDate, customStartDate, dateRange, enableComparison, includeTaxes, offset) { var _s19_ = "DashboardUISettings"; if (customEndDate == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customEndDate")); if (compareCustomEndDate == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "compareCustomEndDate")); return new A._$DashboardUISettings(dateRange, customStartDate, customEndDate, enableComparison, compareDateRange, compareCustomStartDate, compareCustomEndDate, offset, currencyId, includeTaxes); }, DashboardUIState: function DashboardUIState() { }, DashboardUISettings: function DashboardUISettings() { }, _$DashboardUIStateSerializer: function _$DashboardUIStateSerializer() { }, _$DashboardUISettingsSerializer: function _$DashboardUISettingsSerializer() { }, _$DashboardUIState: function _$DashboardUIState(t0, t1, t2, t3) { var _ = this; _.settings = t0; _.selectedEntityType = t1; _.selectedEntities = t2; _.showSidebar = t3; _._dashboard_state$__hashCode = null; }, DashboardUIStateBuilder: function DashboardUIStateBuilder() { var _ = this; _._showSidebar = _._selectedEntities = _._selectedEntityType = _._dashboard_state$_settings = _._dashboard_state$_$v = null; }, _$DashboardUISettings: function _$DashboardUISettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dateRange = t0; _.customStartDate = t1; _.customEndDate = t2; _.enableComparison = t3; _.compareDateRange = t4; _.compareCustomStartDate = t5; _.compareCustomEndDate = t6; _.offset = t7; _.currencyId = t8; _.includeTaxes = t9; _._dashboard_state$__hashCode = null; }, DashboardUISettingsBuilder: function DashboardUISettingsBuilder() { var _ = this; _._includeTaxes = _._dashboard_state$_currencyId = _._dashboard_state$_offset = _._compareCustomEndDate = _._compareCustomStartDate = _._compareDateRange = _._enableComparison = _._dashboard_state$_customEndDate = _._dashboard_state$_customStartDate = _._dateRange = _._dashboard_state$_$v = null; }, handleDesignAction(context, designs, action) { var store, state, t2, design, designIds, message, t3, t4, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(designs); if (t1.get$isEmpty(designs)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); design = type$.legacy_DesignEntity._as(t1.get$first(designs)); designIds = t1.map$1$1(designs, new A.handleDesignAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, design, true, _null); break; case B.EntityAction_clone: A.createEntity(_null, _null, context, design.get$clone(design), false); break; case B.EntityAction_newInvoice: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null, _null).rebuild$1(new A.handleDesignAction_closure0(design)), false); break; case B.EntityAction_newRecurringInvoice: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_recurringInvoice, _null, state, _null, _null).rebuild$1(new A.handleDesignAction_closure1(design)), false); break; case B.EntityAction_newQuote: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_quote, _null, state, _null, _null).rebuild$1(new A.handleDesignAction_closure2(design)), false); break; case B.EntityAction_newCredit: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_credit, _null, state, _null, _null).rebuild$1(new A.handleDesignAction_closure3(design)), false); break; case B.EntityAction_restore: if (designIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_designs"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(designIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_design"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreDesignsRequest(t1, designIds)); break; case B.EntityAction_archive: if (designIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_designs"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(designIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_design"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveDesignsRequest(t1, designIds)); break; case B.EntityAction_delete: if (designIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_designs"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(designIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_design"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteDesignsRequest(t1, designIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.designUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartDesignMultiselect()); if (t1.get$isEmpty(designs)) break; for (t1 = t1.get$iterator(designs); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.designUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToDesignMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromDesignMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([design], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewDesignList: function ViewDesignList() { }, ViewDesign: function ViewDesign(t0) { this.designId = t0; }, EditDesign: function EditDesign(t0) { this.design = t0; }, UpdateDesign: function UpdateDesign(t0) { this.design = t0; }, LoadDesignRequest: function LoadDesignRequest() { }, LoadDesignFailure: function LoadDesignFailure(t0) { this.error = t0; }, LoadDesignSuccess: function LoadDesignSuccess(t0) { this.design = t0; }, LoadDesignsRequest: function LoadDesignsRequest() { }, LoadDesignsFailure: function LoadDesignsFailure(t0) { this.error = t0; }, LoadDesignsSuccess: function LoadDesignsSuccess(t0) { this.designs = t0; }, SaveDesignRequest: function SaveDesignRequest(t0, t1) { this.completer = t0; this.design = t1; }, SaveDesignSuccess: function SaveDesignSuccess(t0) { this.design = t0; }, AddDesignSuccess: function AddDesignSuccess(t0) { this.design = t0; }, SaveDesignFailure: function SaveDesignFailure() { }, ArchiveDesignsRequest: function ArchiveDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, ArchiveDesignsSuccess: function ArchiveDesignsSuccess(t0) { this.designs = t0; }, ArchiveDesignsFailure: function ArchiveDesignsFailure() { }, DeleteDesignsRequest: function DeleteDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, DeleteDesignsSuccess: function DeleteDesignsSuccess(t0) { this.designs = t0; }, DeleteDesignsFailure: function DeleteDesignsFailure() { }, RestoreDesignsRequest: function RestoreDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, RestoreDesignsSuccess: function RestoreDesignsSuccess(t0) { this.designs = t0; }, RestoreDesignsFailure: function RestoreDesignsFailure() { }, FilterDesigns: function FilterDesigns(t0) { this.filter = t0; }, SortDesigns: function SortDesigns(t0) { this.field = t0; }, FilterDesignsByState: function FilterDesignsByState(t0) { this.state = t0; }, FilterDesignsByCustom1: function FilterDesignsByCustom1(t0) { this.value = t0; }, FilterDesignsByCustom2: function FilterDesignsByCustom2(t0) { this.value = t0; }, FilterDesignsByCustom3: function FilterDesignsByCustom3(t0) { this.value = t0; }, FilterDesignsByCustom4: function FilterDesignsByCustom4(t0) { this.value = t0; }, handleDesignAction_closure: function handleDesignAction_closure() { }, handleDesignAction_closure0: function handleDesignAction_closure0(t0) { this.design = t0; }, handleDesignAction_closure1: function handleDesignAction_closure1(t0) { this.design = t0; }, handleDesignAction_closure2: function handleDesignAction_closure2(t0) { this.design = t0; }, handleDesignAction_closure3: function handleDesignAction_closure3(t0) { this.design = t0; }, StartDesignMultiselect: function StartDesignMultiselect() { }, AddToDesignMultiselect: function AddToDesignMultiselect(t0) { this.entity = t0; }, RemoveFromDesignMultiselect: function RemoveFromDesignMultiselect(t0) { this.entity = t0; }, ClearDesignMultiselect: function ClearDesignMultiselect() { }, _editDesign() { return new A._editDesign_closure(); }, _viewDesign() { return new A._viewDesign_closure(); }, _viewDesignList() { return new A._viewDesignList_closure0(); }, _archiveDesign(repository) { return new A._archiveDesign_closure(repository); }, _deleteDesign(repository) { return new A._deleteDesign_closure(repository); }, _restoreDesign(repository) { return new A._restoreDesign_closure(repository); }, _saveDesign(repository) { return new A._saveDesign_closure(repository); }, _loadDesign(repository) { return new A._loadDesign_closure(repository); }, _loadDesigns(repository) { return new A._loadDesigns_closure(repository); }, _editDesign_closure: function _editDesign_closure() { }, _viewDesign_closure: function _viewDesign_closure() { }, _viewDesignList_closure0: function _viewDesignList_closure0() { }, _viewDesignList__closure: function _viewDesignList__closure() { }, _archiveDesign_closure: function _archiveDesign_closure(t0) { this.repository = t0; }, _archiveDesign__closure: function _archiveDesign__closure(t0) { this.store = t0; }, _archiveDesign__closure0: function _archiveDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveDesign__closure1: function _archiveDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _deleteDesign_closure: function _deleteDesign_closure(t0) { this.repository = t0; }, _deleteDesign__closure: function _deleteDesign__closure(t0) { this.store = t0; }, _deleteDesign__closure0: function _deleteDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteDesign__closure1: function _deleteDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _restoreDesign_closure: function _restoreDesign_closure(t0) { this.repository = t0; }, _restoreDesign__closure: function _restoreDesign__closure(t0) { this.store = t0; }, _restoreDesign__closure0: function _restoreDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDesign__closure1: function _restoreDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _saveDesign_closure: function _saveDesign_closure(t0) { this.repository = t0; }, _saveDesign__closure: function _saveDesign__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveDesign__closure0: function _saveDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDesign_closure: function _loadDesign_closure(t0) { this.repository = t0; }, _loadDesign__closure: function _loadDesign__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDesign__closure0: function _loadDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDesigns_closure: function _loadDesigns_closure(t0) { this.repository = t0; }, _loadDesigns__closure: function _loadDesigns__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDesigns__closure0: function _loadDesigns__closure0(t0, t1) { this.store = t0; this.action = t1; }, designUIReducer(state, action) { var t1; state.toString; t1 = new A.DesignUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._design_state$_$v = state; new A.designUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing1(design, action) { return A.DesignEntity_DesignEntity(null, null, null); }, _updateEditing1(design, action) { return action.get$design(); }, _viewDesignList0(designListState, action) { return designListState.rebuild$1(new A._viewDesignList_closure()); }, _filterDesignsByCustom1(designListState, action) { var t1 = designListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return designListState.rebuild$1(new A._filterDesignsByCustom1_closure(action)); else return designListState.rebuild$1(new A._filterDesignsByCustom1_closure0(action)); }, _filterDesignsByCustom2(designListState, action) { var t1 = designListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return designListState.rebuild$1(new A._filterDesignsByCustom2_closure(action)); else return designListState.rebuild$1(new A._filterDesignsByCustom2_closure0(action)); }, _filterDesignsByState(designListState, action) { var t1 = designListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return designListState.rebuild$1(new A._filterDesignsByState_closure(action)); else return designListState.rebuild$1(new A._filterDesignsByState_closure0(action)); }, _filterDesigns(designListState, action) { return designListState.rebuild$1(new A._filterDesigns_closure(action, designListState)); }, _sortDesigns(designListState, action) { return designListState.rebuild$1(new A._sortDesigns_closure(action)); }, _startListMultiselect2(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure11()); }, _addToListMultiselect2(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure11(action)); }, _removeFromListMultiselect2(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure11(action)); }, _clearListMultiselect2(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure11()); }, _archiveDesignSuccess(designState, action) { return designState.rebuild$1(new A._archiveDesignSuccess_closure(action)); }, _deleteDesignSuccess(designState, action) { return designState.rebuild$1(new A._deleteDesignSuccess_closure(action)); }, _restoreDesignSuccess(designState, action) { return designState.rebuild$1(new A._restoreDesignSuccess_closure(action)); }, _addDesign(designState, action) { return designState.rebuild$1(new A._addDesign_closure(action)); }, _updateDesign(designState, action) { return designState.rebuild$1(new A._updateDesign_closure(action)); }, _setLoadedDesign(designState, action) { return designState.rebuild$1(new A._setLoadedDesign_closure(action)); }, _setLoadedDesigns(designState, action) { return designState.loadDesigns$1(action.designs); }, _setLoadedCompany2(designState, action) { return designState.loadDesigns$1(action.userCompany.company.designs); }, designUIReducer_closure: function designUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure87: function forceSelectedReducer_closure87() { }, forceSelectedReducer_closure88: function forceSelectedReducer_closure88() { }, forceSelectedReducer_closure89: function forceSelectedReducer_closure89() { }, forceSelectedReducer_closure90: function forceSelectedReducer_closure90() { }, forceSelectedReducer_closure91: function forceSelectedReducer_closure91() { }, forceSelectedReducer_closure92: function forceSelectedReducer_closure92() { }, forceSelectedReducer_closure93: function forceSelectedReducer_closure93() { }, forceSelectedReducer_closure94: function forceSelectedReducer_closure94() { }, selectedIdReducer_closure179: function selectedIdReducer_closure179() { }, selectedIdReducer_closure180: function selectedIdReducer_closure180() { }, selectedIdReducer_closure181: function selectedIdReducer_closure181() { }, selectedIdReducer_closure182: function selectedIdReducer_closure182() { }, selectedIdReducer_closure183: function selectedIdReducer_closure183() { }, selectedIdReducer_closure184: function selectedIdReducer_closure184() { }, selectedIdReducer_closure185: function selectedIdReducer_closure185() { }, selectedIdReducer_closure186: function selectedIdReducer_closure186() { }, selectedIdReducer_closure187: function selectedIdReducer_closure187() { }, selectedIdReducer_closure188: function selectedIdReducer_closure188() { }, selectedIdReducer_closure189: function selectedIdReducer_closure189() { }, selectedIdReducer_closure190: function selectedIdReducer_closure190() { }, selectedIdReducer_closure191: function selectedIdReducer_closure191() { }, selectedIdReducer_closure192: function selectedIdReducer_closure192() { }, editingReducer_closure60: function editingReducer_closure60() { }, editingReducer_closure61: function editingReducer_closure61() { }, editingReducer_closure62: function editingReducer_closure62() { }, editingReducer_closure63: function editingReducer_closure63() { }, editingReducer__closure23: function editingReducer__closure23() { }, _viewDesignList_closure: function _viewDesignList_closure() { }, _filterDesignsByCustom1_closure: function _filterDesignsByCustom1_closure(t0) { this.action = t0; }, _filterDesignsByCustom1_closure0: function _filterDesignsByCustom1_closure0(t0) { this.action = t0; }, _filterDesignsByCustom2_closure: function _filterDesignsByCustom2_closure(t0) { this.action = t0; }, _filterDesignsByCustom2_closure0: function _filterDesignsByCustom2_closure0(t0) { this.action = t0; }, _filterDesignsByState_closure: function _filterDesignsByState_closure(t0) { this.action = t0; }, _filterDesignsByState_closure0: function _filterDesignsByState_closure0(t0) { this.action = t0; }, _filterDesigns_closure: function _filterDesigns_closure(t0, t1) { this.action = t0; this.designListState = t1; }, _sortDesigns_closure: function _sortDesigns_closure(t0) { this.action = t0; }, _startListMultiselect_closure11: function _startListMultiselect_closure11() { }, _addToListMultiselect_closure11: function _addToListMultiselect_closure11(t0) { this.action = t0; }, _removeFromListMultiselect_closure11: function _removeFromListMultiselect_closure11(t0) { this.action = t0; }, _clearListMultiselect_closure11: function _clearListMultiselect_closure11() { }, _archiveDesignSuccess_closure: function _archiveDesignSuccess_closure(t0) { this.action = t0; }, _deleteDesignSuccess_closure: function _deleteDesignSuccess_closure(t0) { this.action = t0; }, _restoreDesignSuccess_closure: function _restoreDesignSuccess_closure(t0) { this.action = t0; }, _addDesign_closure: function _addDesign_closure(t0) { this.action = t0; }, _updateDesign_closure: function _updateDesign_closure(t0) { this.action = t0; }, _setLoadedDesign_closure: function _setLoadedDesign_closure(t0) { this.action = t0; }, filteredDesignsSelector(designMap, designList, designListState) { var t1 = designList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredDesignsSelector_closure(designMap, designListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredDesignsSelector_closure0(designMap, designListState)); return list; }, getDesignIdForClientByEntity(clientId, entityType, state) { var t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, settings = A.getClientSettings(state, t1._list[t2].clientState.$get$1(0, clientId)); switch (entityType) { case B.EntityType_invoice: return settings.defaultInvoiceDesignId; case B.EntityType_quote: return settings.defaultQuoteDesignId; case B.EntityType_credit: return settings.defaultCreditDesignId; default: A.print("## ERROR: undefined entity type " + entityType.toString$0(0) + " in design_selectors"); return settings.defaultInvoiceDesignId; } }, getDesignIdForVendorByEntity(entityType, state, vendorId) { var t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, settings = A.getVendorSettings(state, t1._list[t2].vendorState.$get$1(0, vendorId)); switch (entityType) { case B.EntityType_purchaseOrder: return settings.defaultPurchaseOrderDesignId; default: A.print("## ERROR: undefined entity type " + entityType.toString$0(0) + " in design_selectors"); return settings.defaultInvoiceDesignId; } }, memoizedFilteredDesignList_closure: function memoizedFilteredDesignList_closure() { }, filteredDesignsSelector_closure: function filteredDesignsSelector_closure(t0, t1) { this.designMap = t0; this.designListState = t1; }, filteredDesignsSelector_closure0: function filteredDesignsSelector_closure0(t0, t1) { this.designMap = t0; this.designListState = t1; }, _$DesignState$_(list, map) { var _s11_ = "DesignState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "list")); return new A._$DesignState(map, list); }, _$DesignUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("DesignUIState", "listUIState")); return new A._$DesignUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, DesignState: function DesignState() { }, DesignState_cleanDesign_closure: function DesignState_cleanDesign_closure(t0) { this.$this = t0; }, DesignState_cleanDesign_closure0: function DesignState_cleanDesign_closure0() { }, DesignState_customDesigns_closure: function DesignState_customDesigns_closure(t0) { this.$this = t0; }, DesignState_customDesigns_closure0: function DesignState_customDesigns_closure0(t0) { this.$this = t0; }, DesignState_loadDesigns_closure0: function DesignState_loadDesigns_closure0() { }, DesignState_loadDesigns_closure1: function DesignState_loadDesigns_closure1() { }, DesignState_loadDesigns_closure: function DesignState_loadDesigns_closure(t0, t1) { this.$this = t0; this.map = t1; }, DesignUIState: function DesignUIState() { }, _$DesignStateSerializer: function _$DesignStateSerializer() { }, _$DesignUIStateSerializer: function _$DesignUIStateSerializer() { }, _$DesignState: function _$DesignState(t0, t1) { this.map = t0; this.list = t1; this._design_state$__hashCode = null; }, DesignStateBuilder: function DesignStateBuilder() { this._design_state$_list = this._design_state$_map = this._design_state$_$v = null; }, _$DesignUIState: function _$DesignUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._design_state$__hashCode = null; }, DesignUIStateBuilder: function DesignUIStateBuilder() { var _ = this; _._design_state$_cancelCompleter = _._design_state$_saveCompleter = _._design_state$_tabIndex = _._design_state$_forceSelected = _._design_state$_selectedId = _._design_state$_listUIState = _._design_state$_editing = _._design_state$_$v = null; }, _DesignUIState_Object_EntityUIState: function _DesignUIState_Object_EntityUIState() { }, handleDocumentAction(context, documents, action) { var store, t1, $document, t2, documentIds, message, _i, t3, _s12_ = "_dispatchers"; if (documents.length === 0) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $document = B.JSArray_methods.get$first(documents); t2 = A._arrayInstanceType(documents)._eval$1("MappedListIterable<1,String*>"); documentIds = A.List_List$of(new A.MappedListIterable(documents, new A.handleDocumentAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case B.EntityAction_edit: A.editEntity(null, $document, true, null); break; case B.EntityAction_restore: t2 = documentIds.length; if (t2 > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_documents"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(t2)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_document"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreDocumentRequest(t1, documentIds)); break; case B.EntityAction_archive: t2 = documentIds.length; if (t2 > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_documents"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(t2)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_document"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveDocumentRequest(t1, documentIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.documentUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartDocumentMultiselect()); t1 = documents.length; if (t1 === 0) break; for (_i = 0; _i < documents.length; documents.length === t1 || (0, A.throwConcurrentModificationError)(documents), ++_i) { $document = documents[_i]; t2 = A._lateReadCheck(store.__Store__state, "_state").uiState.documentUIState.listUIState; t3 = J.get$id$x($document); t2 = t2.selectedIds; t2 = t2 != null && B.JSArray_methods.contains$1(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.AddToDocumentMultiselect($document)); else J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.RemoveFromDocumentMultiselect($document)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([$document], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; } }, UpdateDocument: function UpdateDocument(t0) { this.document = t0; }, LoadDocumentRequest: function LoadDocumentRequest() { }, LoadDocumentFailure: function LoadDocumentFailure(t0) { this.error = t0; }, LoadDocumentSuccess: function LoadDocumentSuccess(t0) { this.document = t0; }, LoadDocumentsRequest: function LoadDocumentsRequest() { }, LoadDocumentsFailure: function LoadDocumentsFailure(t0) { this.error = t0; }, LoadDocumentsSuccess: function LoadDocumentsSuccess(t0) { this.documents = t0; }, DownloadDocumentsRequest: function DownloadDocumentsRequest(t0, t1) { this.completer = t0; this.documentIds = t1; }, DownloadDocumentsSuccess: function DownloadDocumentsSuccess() { }, DownloadDocumentsFailure: function DownloadDocumentsFailure() { }, ArchiveDocumentRequest: function ArchiveDocumentRequest(t0, t1) { this.completer = t0; this.documentIds = t1; }, ArchiveDocumentSuccess: function ArchiveDocumentSuccess(t0) { this.documents = t0; }, ArchiveDocumentFailure: function ArchiveDocumentFailure() { }, DeleteDocumentRequest: function DeleteDocumentRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.documentIds = t1; _.password = t2; _.idToken = t3; }, DeleteDocumentSuccess: function DeleteDocumentSuccess() { }, DeleteDocumentFailure: function DeleteDocumentFailure() { }, RestoreDocumentRequest: function RestoreDocumentRequest(t0, t1) { this.completer = t0; this.documentIds = t1; }, RestoreDocumentSuccess: function RestoreDocumentSuccess(t0) { this.documents = t0; }, RestoreDocumentFailure: function RestoreDocumentFailure() { }, FilterDocuments: function FilterDocuments(t0) { this.filter = t0; }, SortDocuments: function SortDocuments(t0) { this.field = t0; }, FilterDocumentsByState: function FilterDocumentsByState(t0) { this.state = t0; }, FilterDocumentsByCustom1: function FilterDocumentsByCustom1(t0) { this.value = t0; }, FilterDocumentsByCustom2: function FilterDocumentsByCustom2(t0) { this.value = t0; }, FilterDocumentsByCustom3: function FilterDocumentsByCustom3(t0) { this.value = t0; }, FilterDocumentsByCustom4: function FilterDocumentsByCustom4(t0) { this.value = t0; }, handleDocumentAction_closure: function handleDocumentAction_closure() { }, StartDocumentMultiselect: function StartDocumentMultiselect() { }, AddToDocumentMultiselect: function AddToDocumentMultiselect(t0) { this.entity = t0; }, RemoveFromDocumentMultiselect: function RemoveFromDocumentMultiselect(t0) { this.entity = t0; }, ClearDocumentMultiselect: function ClearDocumentMultiselect() { }, _editDocument() { return new A._editDocument_closure(); }, _viewDocument() { return new A._viewDocument_closure(); }, _viewDocumentList() { return new A._viewDocumentList_closure0(); }, _archiveDocument(repository) { return new A._archiveDocument_closure(repository); }, _downloadDocuments(repository) { return new A._downloadDocuments_closure(repository); }, _deleteDocument(repository) { return new A._deleteDocument_closure(repository); }, _restoreDocument(repository) { return new A._restoreDocument_closure(repository); }, _loadDocument(repository) { return new A._loadDocument_closure(repository); }, _loadDocuments(repository) { return new A._loadDocuments_closure(repository); }, _editDocument_closure: function _editDocument_closure() { }, _viewDocument_closure: function _viewDocument_closure() { }, _viewDocumentList_closure0: function _viewDocumentList_closure0() { }, _viewDocumentList__closure: function _viewDocumentList__closure() { }, _archiveDocument_closure: function _archiveDocument_closure(t0) { this.repository = t0; }, _archiveDocument__closure: function _archiveDocument__closure(t0) { this.store = t0; }, _archiveDocument__closure0: function _archiveDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveDocument__closure1: function _archiveDocument__closure1(t0, t1, t2) { this.store = t0; this.prevDocuments = t1; this.action = t2; }, _downloadDocuments_closure: function _downloadDocuments_closure(t0) { this.repository = t0; }, _downloadDocuments__closure: function _downloadDocuments__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadDocuments__closure0: function _downloadDocuments__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteDocument_closure: function _deleteDocument_closure(t0) { this.repository = t0; }, _deleteDocument__closure: function _deleteDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _deleteDocument__closure0: function _deleteDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDocument_closure: function _restoreDocument_closure(t0) { this.repository = t0; }, _restoreDocument__closure: function _restoreDocument__closure(t0) { this.store = t0; }, _restoreDocument__closure0: function _restoreDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDocument__closure1: function _restoreDocument__closure1(t0, t1, t2) { this.store = t0; this.prevDocuments = t1; this.action = t2; }, _loadDocument_closure: function _loadDocument_closure(t0) { this.repository = t0; }, _loadDocument__closure: function _loadDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDocument__closure0: function _loadDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDocuments_closure: function _loadDocuments_closure(t0) { this.repository = t0; }, _loadDocuments__closure: function _loadDocuments__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDocuments__closure0: function _loadDocuments__closure0(t0, t1) { this.store = t0; this.action = t1; }, documentUIReducer(state, action) { var t1; state.toString; t1 = new A.DocumentUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._document_state$_$v = state; new A.documentUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _updateEditing2($document, action) { return J.get$document$x(action); }, _viewDocumentList0(documentListState, action) { return documentListState.rebuild$1(new A._viewDocumentList_closure()); }, _filterDocumentsByCustom1(documentListState, action) { var t1 = documentListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return documentListState.rebuild$1(new A._filterDocumentsByCustom1_closure(action)); else return documentListState.rebuild$1(new A._filterDocumentsByCustom1_closure0(action)); }, _filterDocumentsByCustom2(documentListState, action) { var t1 = documentListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return documentListState.rebuild$1(new A._filterDocumentsByCustom2_closure(action)); else return documentListState.rebuild$1(new A._filterDocumentsByCustom2_closure0(action)); }, _filterDocumentsByState(documentListState, action) { var t1 = documentListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return documentListState.rebuild$1(new A._filterDocumentsByState_closure(action)); else return documentListState.rebuild$1(new A._filterDocumentsByState_closure0(action)); }, _filterDocuments(documentListState, action) { return documentListState.rebuild$1(new A._filterDocuments_closure(action, documentListState)); }, _sortDocuments(documentListState, action) { return documentListState.rebuild$1(new A._sortDocuments_closure(action)); }, _startListMultiselect3(documentListState, action) { return documentListState.rebuild$1(new A._startListMultiselect_closure5()); }, _addToListMultiselect3(documentListState, action) { return documentListState.rebuild$1(new A._addToListMultiselect_closure5(action)); }, _removeFromListMultiselect3(documentListState, action) { return documentListState.rebuild$1(new A._removeFromListMultiselect_closure5(action)); }, _clearListMultiselect3(documentListState, action) { return documentListState.rebuild$1(new A._clearListMultiselect_closure5()); }, _archiveDocumentSuccess(documentState, action) { return documentState.rebuild$1(new A._archiveDocumentSuccess_closure(action)); }, _deleteDocumentSuccess(documentState, action) { return documentState.rebuild$1(new A._deleteDocumentSuccess_closure(action)); }, _restoreDocumentSuccess(documentState, action) { return documentState.rebuild$1(new A._restoreDocumentSuccess_closure(action)); }, _updateDocument(documentState, action) { return documentState.rebuild$1(new A._updateDocument_closure(action)); }, _setLoadedDocument(documentState, action) { return documentState.rebuild$1(new A._setLoadedDocument_closure(action)); }, _setLoadedDocuments(documentState, action) { var state = documentState.rebuild$1(new A._setLoadedDocuments_closure(action)); return state.rebuild$1(new A._setLoadedDocuments_closure0(state)); }, documentUIReducer_closure: function documentUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure47: function forceSelectedReducer_closure47() { }, forceSelectedReducer_closure48: function forceSelectedReducer_closure48() { }, forceSelectedReducer_closure49: function forceSelectedReducer_closure49() { }, forceSelectedReducer_closure50: function forceSelectedReducer_closure50() { }, forceSelectedReducer_closure51: function forceSelectedReducer_closure51() { }, forceSelectedReducer_closure52: function forceSelectedReducer_closure52() { }, forceSelectedReducer_closure53: function forceSelectedReducer_closure53() { }, forceSelectedReducer_closure54: function forceSelectedReducer_closure54() { }, selectedIdReducer_closure94: function selectedIdReducer_closure94() { }, selectedIdReducer_closure95: function selectedIdReducer_closure95() { }, selectedIdReducer_closure96: function selectedIdReducer_closure96() { }, selectedIdReducer_closure97: function selectedIdReducer_closure97() { }, selectedIdReducer_closure98: function selectedIdReducer_closure98() { }, selectedIdReducer_closure99: function selectedIdReducer_closure99() { }, selectedIdReducer_closure100: function selectedIdReducer_closure100() { }, selectedIdReducer_closure101: function selectedIdReducer_closure101() { }, selectedIdReducer_closure102: function selectedIdReducer_closure102() { }, selectedIdReducer_closure103: function selectedIdReducer_closure103() { }, selectedIdReducer_closure104: function selectedIdReducer_closure104() { }, selectedIdReducer_closure105: function selectedIdReducer_closure105() { }, selectedIdReducer_closure106: function selectedIdReducer_closure106() { }, editingReducer_closure32: function editingReducer_closure32() { }, editingReducer__closure11: function editingReducer__closure11() { }, _viewDocumentList_closure: function _viewDocumentList_closure() { }, _filterDocumentsByCustom1_closure: function _filterDocumentsByCustom1_closure(t0) { this.action = t0; }, _filterDocumentsByCustom1_closure0: function _filterDocumentsByCustom1_closure0(t0) { this.action = t0; }, _filterDocumentsByCustom2_closure: function _filterDocumentsByCustom2_closure(t0) { this.action = t0; }, _filterDocumentsByCustom2_closure0: function _filterDocumentsByCustom2_closure0(t0) { this.action = t0; }, _filterDocumentsByState_closure: function _filterDocumentsByState_closure(t0) { this.action = t0; }, _filterDocumentsByState_closure0: function _filterDocumentsByState_closure0(t0) { this.action = t0; }, _filterDocuments_closure: function _filterDocuments_closure(t0, t1) { this.action = t0; this.documentListState = t1; }, _sortDocuments_closure: function _sortDocuments_closure(t0) { this.action = t0; }, _startListMultiselect_closure5: function _startListMultiselect_closure5() { }, _addToListMultiselect_closure5: function _addToListMultiselect_closure5(t0) { this.action = t0; }, _removeFromListMultiselect_closure5: function _removeFromListMultiselect_closure5(t0) { this.action = t0; }, _clearListMultiselect_closure5: function _clearListMultiselect_closure5() { }, _archiveDocumentSuccess_closure: function _archiveDocumentSuccess_closure(t0) { this.action = t0; }, _deleteDocumentSuccess_closure: function _deleteDocumentSuccess_closure(t0) { this.action = t0; }, _restoreDocumentSuccess_closure: function _restoreDocumentSuccess_closure(t0) { this.action = t0; }, _updateDocument_closure: function _updateDocument_closure(t0) { this.action = t0; }, _setLoadedDocument_closure: function _setLoadedDocument_closure(t0) { this.action = t0; }, _setLoadedDocuments_closure: function _setLoadedDocuments_closure(t0) { this.action = t0; }, _setLoadedDocuments__closure: function _setLoadedDocuments__closure() { }, _setLoadedDocuments__closure0: function _setLoadedDocuments__closure0() { }, _setLoadedDocuments_closure0: function _setLoadedDocuments_closure0(t0) { this.state = t0; }, filteredDocumentsSelector(documentMap, documentList, documentListState) { var t1 = documentList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredDocumentsSelector_closure(documentMap, documentListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredDocumentsSelector_closure0(documentMap, documentListState)); return list; }, memoizedFilteredDocumentList_closure: function memoizedFilteredDocumentList_closure() { }, filteredDocumentsSelector_closure: function filteredDocumentsSelector_closure(t0, t1) { this.documentMap = t0; this.documentListState = t1; }, filteredDocumentsSelector_closure0: function filteredDocumentsSelector_closure0(t0, t1) { this.documentMap = t0; this.documentListState = t1; }, _$DocumentState$_(list, map) { var _s13_ = "DocumentState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "list")); return new A._$DocumentState(map, list); }, _$DocumentUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("DocumentUIState", "listUIState")); return new A._$DocumentUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, DocumentState: function DocumentState() { }, DocumentUIState: function DocumentUIState() { }, _$DocumentStateSerializer: function _$DocumentStateSerializer() { }, _$DocumentUIStateSerializer: function _$DocumentUIStateSerializer() { }, _$DocumentState: function _$DocumentState(t0, t1) { this.map = t0; this.list = t1; this._document_state$__hashCode = null; }, DocumentStateBuilder: function DocumentStateBuilder() { this._document_state$_list = this._document_state$_map = this._document_state$_$v = null; }, _$DocumentUIState: function _$DocumentUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._document_state$__hashCode = null; }, DocumentUIStateBuilder: function DocumentUIStateBuilder() { var _ = this; _._document_state$_cancelCompleter = _._document_state$_saveCompleter = _._document_state$_tabIndex = _._document_state$_forceSelected = _._document_state$_selectedId = _._document_state$_listUIState = _._document_state$_editing = _._document_state$_$v = null; }, _DocumentUIState_Object_EntityUIState: function _DocumentUIState_Object_EntityUIState() { }, handleExpenseAction(context, expenses, action) { var t6, t7, client, availableExpenses, t8, items, message, documentIds, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", _box_0 = {}, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, _s6_), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = J.getInterceptor$ax(expenses), t3 = type$.legacy_ExpenseEntity, expense = t3._as(t2.get$first(expenses)), expenseIds = t2.map$1$1(expenses, new A.handleExpenseAction_closure(), type$.legacy_String).toList$0(0), t4 = state.userCompanyStates, t5 = state.uiState.selectedCompanyIndex; t4 = t4._list; t6 = t4[t5].clientState; t7 = expense.clientId; client = t6.$get$1(0, t7); switch (action) { case B.EntityAction_edit: A.editEntity(_null, expense, true, _null); break; case B.EntityAction_clone: case B.EntityAction_cloneToExpense: A.createEntity(_null, _null, context, expense.get$clone(expense).rebuild$1(new A.handleExpenseAction_closure0()), false); break; case B.EntityAction_cloneToRecurring: A.createEntity(_null, _null, context, expense.get$clone(expense).rebuild$1(new A.handleExpenseAction_closure1()), false); break; case B.EntityAction_invoiceExpense: case B.EntityAction_addToInvoice: availableExpenses = t2.where$1(expenses, new A.handleExpenseAction_closure2()); _box_0.vendorId = _box_0.projectId = ""; for (t1 = J.get$iterator$ax(availableExpenses.__internal$_iterable), t2 = availableExpenses.$ti, t6 = new A.WhereIterator(t1, availableExpenses._f, t2._eval$1("WhereIterator<1>")); t6.moveNext$0();) { expense = t3._as(t1.get$current(t1)); t8 = expense.vendorId; if (t8.length !== 0) _box_0.vendorId = t8; t8 = expense.projectId; if (t8.length !== 0) if (_box_0.projectId.length === 0 && t4[t5].projectState.$get$1(0, t8).clientId === client.id) _box_0.projectId = t8; } t1 = t2._eval$1("MappedIterable<1,InvoiceItemEntity*>"); items = A.List_List$of(new A.MappedIterable(availableExpenses, new A.handleExpenseAction_closure3(context), t1), true, t1._eval$1("Iterable.E")); if (items.length !== 0) if (action === B.EntityAction_invoiceExpense) { t1 = $.$get$navigatorKey(); t1.toString; A.createEntity(_null, _null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), A.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null, _null).rebuild$1(new A.handleExpenseAction_closure4(_box_0, items)), false); } else A.addToInvoiceDialog(t7, context, items); break; case B.EntityAction_restore: if (expenseIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_expenses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_expense"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreExpenseRequest(t1, expenseIds)); break; case B.EntityAction_archive: if (expenseIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_expenses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_expense"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseRequest(t1, expenseIds)); break; case B.EntityAction_delete: if (expenseIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_expenses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_expense"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteExpenseRequest(t1, expenseIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.expenseUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartExpenseMultiselect()); if (t2.get$isEmpty(expenses)) break; for (t1 = t2.get$iterator(expenses); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.expenseUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToExpenseMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromExpenseMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([expense], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t2 = t2.get$iterator(expenses); t2.moveNext$0();) for (t4 = t3._as(t2.get$current(t2)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in expense_actions"); break; } }, ViewExpenseList: function ViewExpenseList() { }, ViewExpense: function ViewExpense(t0) { this.expenseId = t0; }, EditExpense: function EditExpense(t0) { this.expense = t0; }, UpdateExpense: function UpdateExpense(t0) { this.expense = t0; }, LoadExpense: function LoadExpense(t0, t1) { this.completer = t0; this.expenseId = t1; }, LoadExpenses: function LoadExpenses() { }, LoadExpenseRequest: function LoadExpenseRequest() { }, LoadExpenseFailure: function LoadExpenseFailure(t0) { this.error = t0; }, LoadExpenseSuccess: function LoadExpenseSuccess(t0) { this.expense = t0; }, LoadExpensesRequest: function LoadExpensesRequest() { }, LoadExpensesFailure: function LoadExpensesFailure(t0) { this.error = t0; }, LoadExpensesSuccess: function LoadExpensesSuccess(t0) { this.expenses = t0; }, SaveExpenseRequest: function SaveExpenseRequest(t0, t1) { this.completer = t0; this.expense = t1; }, SaveExpenseSuccess: function SaveExpenseSuccess(t0) { this.expense = t0; }, AddExpenseSuccess: function AddExpenseSuccess(t0) { this.expense = t0; }, SaveExpenseFailure: function SaveExpenseFailure() { }, ArchiveExpenseRequest: function ArchiveExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, ArchiveExpenseSuccess: function ArchiveExpenseSuccess(t0) { this.expenses = t0; }, ArchiveExpenseFailure: function ArchiveExpenseFailure() { }, DeleteExpenseRequest: function DeleteExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, DeleteExpenseSuccess: function DeleteExpenseSuccess(t0) { this.expenses = t0; }, DeleteExpenseFailure: function DeleteExpenseFailure() { }, RestoreExpenseRequest: function RestoreExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, RestoreExpenseSuccess: function RestoreExpenseSuccess(t0) { this.expenses = t0; }, RestoreExpenseFailure: function RestoreExpenseFailure() { }, FilterExpenses: function FilterExpenses(t0) { this.filter = t0; }, SortExpenses: function SortExpenses(t0) { this.field = t0; }, FilterExpensesByState: function FilterExpensesByState(t0) { this.state = t0; }, FilterExpensesByStatus: function FilterExpensesByStatus(t0) { this.status = t0; }, FilterExpensesByCustom1: function FilterExpensesByCustom1(t0) { this.value = t0; }, FilterExpensesByCustom2: function FilterExpensesByCustom2(t0) { this.value = t0; }, FilterExpensesByCustom3: function FilterExpensesByCustom3(t0) { this.value = t0; }, FilterExpensesByCustom4: function FilterExpensesByCustom4(t0) { this.value = t0; }, handleExpenseAction_closure: function handleExpenseAction_closure() { }, handleExpenseAction_closure0: function handleExpenseAction_closure0() { }, handleExpenseAction_closure1: function handleExpenseAction_closure1() { }, handleExpenseAction_closure2: function handleExpenseAction_closure2() { }, handleExpenseAction_closure3: function handleExpenseAction_closure3(t0) { this.context = t0; }, handleExpenseAction_closure4: function handleExpenseAction_closure4(t0, t1) { this._box_0 = t0; this.items = t1; }, StartExpenseMultiselect: function StartExpenseMultiselect() { }, AddToExpenseMultiselect: function AddToExpenseMultiselect(t0) { this.entity = t0; }, RemoveFromExpenseMultiselect: function RemoveFromExpenseMultiselect(t0) { this.entity = t0; }, ClearExpenseMultiselect: function ClearExpenseMultiselect() { }, SaveExpenseDocumentRequest: function SaveExpenseDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.expense = t2; }, SaveExpenseDocumentFailure: function SaveExpenseDocumentFailure() { }, UpdateExpenseTab: function UpdateExpenseTab(t0) { this.tabIndex = t0; }, _editExpense() { return new A._editExpense_closure(); }, _viewExpense() { return new A._viewExpense_closure(); }, _viewExpenseList() { return new A._viewExpenseList_closure0(); }, _archiveExpense(repository) { return new A._archiveExpense_closure(repository); }, _deleteExpense(repository) { return new A._deleteExpense_closure(repository); }, _restoreExpense(repository) { return new A._restoreExpense_closure(repository); }, _saveExpense(repository) { return new A._saveExpense_closure(repository); }, _loadExpense(repository) { return new A._loadExpense_closure(repository); }, _loadExpenses(repository) { return new A._loadExpenses_closure(repository); }, _saveDocument2(repository) { return new A._saveDocument_closure9(repository); }, _editExpense_closure: function _editExpense_closure() { }, _viewExpense_closure: function _viewExpense_closure() { }, _viewExpenseList_closure0: function _viewExpenseList_closure0() { }, _viewExpenseList__closure: function _viewExpenseList__closure() { }, _archiveExpense_closure: function _archiveExpense_closure(t0) { this.repository = t0; }, _archiveExpense__closure: function _archiveExpense__closure(t0) { this.store = t0; }, _archiveExpense__closure0: function _archiveExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveExpense__closure1: function _archiveExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _deleteExpense_closure: function _deleteExpense_closure(t0) { this.repository = t0; }, _deleteExpense__closure: function _deleteExpense__closure(t0) { this.store = t0; }, _deleteExpense__closure0: function _deleteExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteExpense__closure1: function _deleteExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _restoreExpense_closure: function _restoreExpense_closure(t0) { this.repository = t0; }, _restoreExpense__closure: function _restoreExpense__closure(t0) { this.store = t0; }, _restoreExpense__closure0: function _restoreExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreExpense__closure1: function _restoreExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _saveExpense_closure: function _saveExpense_closure(t0) { this.repository = t0; }, _saveExpense__closure: function _saveExpense__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveExpense__closure0: function _saveExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpense_closure: function _loadExpense_closure(t0) { this.repository = t0; }, _loadExpense__closure: function _loadExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpense__closure0: function _loadExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenses_closure: function _loadExpenses_closure(t0) { this.repository = t0; }, _loadExpenses__closure: function _loadExpenses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenses__closure0: function _loadExpenses__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure9: function _saveDocument_closure9(t0) { this.repository = t0; }, _saveDocument__closure19: function _saveDocument__closure19(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure20: function _saveDocument__closure20(t0, t1) { this.store = t0; this.action = t1; }, expenseUIReducer(state, action) { var t1; state.toString; t1 = new A.ExpenseUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._expense_state$_$v = state; new A.expenseUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing2(expense, action) { var _null = null; return A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); }, _updateEditing3(expense, action) { return action.get$expense(); }, _viewExpenseList0(expenseListState, action) { return expenseListState.rebuild$1(new A._viewExpenseList_closure()); }, _filterExpensesByCustom1(expenseListState, action) { var t1 = expenseListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByCustom1_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByCustom1_closure0(action)); }, _filterExpensesByCustom2(expenseListState, action) { var t1 = expenseListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByCustom2_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByCustom2_closure0(action)); }, _filterExpensesByCustom3(expenseListState, action) { var t1 = expenseListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByCustom3_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByCustom3_closure0(action)); }, _filterExpensesByCustom4(expenseListState, action) { var t1 = expenseListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByCustom4_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByCustom4_closure0(action)); }, _filterExpensesByState(expenseListState, action) { var t1 = expenseListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByState_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByState_closure0(action)); }, _filterExpensesByStatus(expenseListState, action) { var t1 = expenseListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseListState.rebuild$1(new A._filterExpensesByStatus_closure(action)); else return expenseListState.rebuild$1(new A._filterExpensesByStatus_closure0(action)); }, _filterExpenses(expenseListState, action) { return expenseListState.rebuild$1(new A._filterExpenses_closure(action, expenseListState)); }, _sortExpenses(expenseListState, action) { return expenseListState.rebuild$1(new A._sortExpenses_closure(action)); }, _startListMultiselect4(expenseListState, action) { return expenseListState.rebuild$1(new A._startListMultiselect_closure4()); }, _addToListMultiselect4(expenseListState, action) { return expenseListState.rebuild$1(new A._addToListMultiselect_closure4(action)); }, _removeFromListMultiselect4(expenseListState, action) { return expenseListState.rebuild$1(new A._removeFromListMultiselect_closure4(action)); }, _clearListMultiselect4(expenseListState, action) { return expenseListState.rebuild$1(new A._clearListMultiselect_closure4()); }, _archiveExpenseSuccess(expenseState, action) { return expenseState.rebuild$1(new A._archiveExpenseSuccess_closure(action)); }, _deleteExpenseSuccess(expenseState, action) { return expenseState.rebuild$1(new A._deleteExpenseSuccess_closure(action)); }, _restoreExpenseSuccess(expenseState, action) { return expenseState.rebuild$1(new A._restoreExpenseSuccess_closure(action)); }, _addExpense(expenseState, action) { return expenseState.rebuild$1(new A._addExpense_closure(action)); }, _updateExpense(expenseState, action) { return expenseState.rebuild$1(new A._updateExpense_closure(action)); }, _setLoadedExpense(expenseState, action) { return expenseState.rebuild$1(new A._setLoadedExpense_closure(action)); }, _setLoadedExpenses(expenseState, action) { return expenseState.loadExpenses$1(action.expenses); }, _setLoadedCompany3(expenseState, action) { return expenseState.loadExpenses$1(action.userCompany.company.expenses); }, expenseUIReducer_closure: function expenseUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure39: function forceSelectedReducer_closure39() { }, forceSelectedReducer_closure40: function forceSelectedReducer_closure40() { }, forceSelectedReducer_closure41: function forceSelectedReducer_closure41() { }, forceSelectedReducer_closure42: function forceSelectedReducer_closure42() { }, forceSelectedReducer_closure43: function forceSelectedReducer_closure43() { }, forceSelectedReducer_closure44: function forceSelectedReducer_closure44() { }, forceSelectedReducer_closure45: function forceSelectedReducer_closure45() { }, forceSelectedReducer_closure46: function forceSelectedReducer_closure46() { }, tabIndexReducer_closure9: function tabIndexReducer_closure9() { }, tabIndexReducer_closure10: function tabIndexReducer_closure10() { }, selectedIdReducer_closure79: function selectedIdReducer_closure79() { }, selectedIdReducer_closure80: function selectedIdReducer_closure80() { }, selectedIdReducer_closure81: function selectedIdReducer_closure81() { }, selectedIdReducer_closure82: function selectedIdReducer_closure82() { }, selectedIdReducer_closure83: function selectedIdReducer_closure83() { }, selectedIdReducer_closure84: function selectedIdReducer_closure84() { }, selectedIdReducer_closure85: function selectedIdReducer_closure85() { }, selectedIdReducer_closure86: function selectedIdReducer_closure86() { }, selectedIdReducer_closure87: function selectedIdReducer_closure87() { }, selectedIdReducer_closure88: function selectedIdReducer_closure88() { }, selectedIdReducer_closure89: function selectedIdReducer_closure89() { }, selectedIdReducer_closure90: function selectedIdReducer_closure90() { }, selectedIdReducer_closure91: function selectedIdReducer_closure91() { }, selectedIdReducer_closure92: function selectedIdReducer_closure92() { }, selectedIdReducer_closure93: function selectedIdReducer_closure93() { }, editingReducer_closure28: function editingReducer_closure28() { }, editingReducer_closure29: function editingReducer_closure29() { }, editingReducer_closure30: function editingReducer_closure30() { }, editingReducer_closure31: function editingReducer_closure31() { }, editingReducer__closure10: function editingReducer__closure10() { }, _viewExpenseList_closure: function _viewExpenseList_closure() { }, _filterExpensesByCustom1_closure: function _filterExpensesByCustom1_closure(t0) { this.action = t0; }, _filterExpensesByCustom1_closure0: function _filterExpensesByCustom1_closure0(t0) { this.action = t0; }, _filterExpensesByCustom2_closure: function _filterExpensesByCustom2_closure(t0) { this.action = t0; }, _filterExpensesByCustom2_closure0: function _filterExpensesByCustom2_closure0(t0) { this.action = t0; }, _filterExpensesByCustom3_closure: function _filterExpensesByCustom3_closure(t0) { this.action = t0; }, _filterExpensesByCustom3_closure0: function _filterExpensesByCustom3_closure0(t0) { this.action = t0; }, _filterExpensesByCustom4_closure: function _filterExpensesByCustom4_closure(t0) { this.action = t0; }, _filterExpensesByCustom4_closure0: function _filterExpensesByCustom4_closure0(t0) { this.action = t0; }, _filterExpensesByState_closure: function _filterExpensesByState_closure(t0) { this.action = t0; }, _filterExpensesByState_closure0: function _filterExpensesByState_closure0(t0) { this.action = t0; }, _filterExpensesByStatus_closure: function _filterExpensesByStatus_closure(t0) { this.action = t0; }, _filterExpensesByStatus_closure0: function _filterExpensesByStatus_closure0(t0) { this.action = t0; }, _filterExpenses_closure: function _filterExpenses_closure(t0, t1) { this.action = t0; this.expenseListState = t1; }, _sortExpenses_closure: function _sortExpenses_closure(t0) { this.action = t0; }, _startListMultiselect_closure4: function _startListMultiselect_closure4() { }, _addToListMultiselect_closure4: function _addToListMultiselect_closure4(t0) { this.action = t0; }, _removeFromListMultiselect_closure4: function _removeFromListMultiselect_closure4(t0) { this.action = t0; }, _clearListMultiselect_closure4: function _clearListMultiselect_closure4() { }, _archiveExpenseSuccess_closure: function _archiveExpenseSuccess_closure(t0) { this.action = t0; }, _deleteExpenseSuccess_closure: function _deleteExpenseSuccess_closure(t0) { this.action = t0; }, _restoreExpenseSuccess_closure: function _restoreExpenseSuccess_closure(t0) { this.action = t0; }, _addExpense_closure: function _addExpense_closure(t0) { this.action = t0; }, _updateExpense_closure: function _updateExpense_closure(t0) { this.action = t0; }, _setLoadedExpense_closure: function _setLoadedExpense_closure(t0) { this.action = t0; }, expensePurchaseOrderSelector(expense, purchaseOrderMap) { purchaseOrderMap._map$_map.forEach$1(0, new A.expensePurchaseOrderSelector_closure(expense)); return null; }, convertExpenseToInvoiceItem(context, expense) { var t3, company, categoryMap, fieldLabel1, fieldLabel2, fieldLabel3, fieldLabel4, t4, customValues, value, _box_0 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2]; company = t3.userCompany.company; categoryMap = t3.expenseCategoryState.map; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); _box_0.customValue4 = _box_0.customValue3 = _box_0.customValue2 = _box_0.customValue1 = ""; fieldLabel1 = company.getCustomFieldLabel$1("product1"); fieldLabel2 = company.getCustomFieldLabel$1("product2"); fieldLabel3 = company.getCustomFieldLabel$1("product3"); fieldLabel4 = company.getCustomFieldLabel$1("product4"); t4 = type$.legacy_String; customValues = A.LinkedHashMap_LinkedHashMap$_literal([company.getCustomFieldLabel$1("expense1"), expense.customValue1, company.getCustomFieldLabel$1("expense2"), expense.customValue2, company.getCustomFieldLabel$1("expense3"), expense.customValue3, company.getCustomFieldLabel$1("expense4"), expense.customValue4, t3.get$category(), t1[t2].expenseCategoryState.$get$1(0, expense.categoryId).name, t3.get$vendor(t3), t1[t2].vendorState.$get$1(0, expense.vendorId).name, t3.get$date(), A.formatDate(expense.date, context, true, true, false), t3.get$project(), t1[t2].projectState.$get$1(0, expense.projectId).name], t4, t4); for (t1 = A.LinkedHashMapKeyIterator$(customValues, customValues._modifications, A._instanceType(customValues)._precomputed1); t1.moveNext$0();) { t2 = t1.__js_helper$_current; value = customValues.$index(0, t2); if (fieldLabel1.toLowerCase() === t2.toLowerCase()) _box_0.customValue1 = value; else if (fieldLabel2.toLowerCase() === t2.toLowerCase()) _box_0.customValue2 = value; else if (fieldLabel3.toLowerCase() === t2.toLowerCase()) _box_0.customValue3 = value; else if (fieldLabel4.toLowerCase() === t2.toLowerCase()) _box_0.customValue4 = value; } return A.InvoiceItemEntity_InvoiceItemEntity(null, null).rebuild$1(new A.convertExpenseToInvoiceItem_closure(_box_0, expense, categoryMap, company)); }, filteredExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { var t2, list, filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = expenseMap.get$keys(expenseMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.filteredExpensesSelector_closure(expenseMap, expenseCategoryMap, vendorMap, clientMap, selectionState, filterEntityType, filterEntityId, expenseListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredExpensesSelector_closure0(expenseMap, expenseListState, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState)); return list; }, expenseStatsForVendor(vendorId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.expenseStatsForVendor_closure(t1, vendorId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, expenseStatsForClient(clientId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.expenseStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, clientExpenseList(expenseMap, clientId) { var t2, list, t1 = expenseMap.get$keys(expenseMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.clientExpenseList_closure(expenseMap, clientId), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.clientExpenseList_closure0(expenseMap)); return list; }, expenseStatsForProject(projectId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.expenseStatsForProject_closure(t1, projectId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, expenseStatsForUser(userId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.expenseStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasExpenseChanges(expense, expenseMap) { var t1; if (expense.get$isNew()) t1 = expense.isChanged; else { t1 = expense.id; t1 = !expense.$eq(0, expenseMap._map$_map.$index(0, t1)); } return t1; }, memoizedExpensePurchaseOrderSelector_closure: function memoizedExpensePurchaseOrderSelector_closure() { }, expensePurchaseOrderSelector_closure: function expensePurchaseOrderSelector_closure(t0) { this.expense = t0; }, convertExpenseToInvoiceItem_closure: function convertExpenseToInvoiceItem_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.expense = t1; _.categoryMap = t2; _.company = t3; }, memoizedFilteredExpenseList_closure: function memoizedFilteredExpenseList_closure() { }, filteredExpensesSelector_closure: function filteredExpensesSelector_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseCategoryMap = t1; _.vendorMap = t2; _.clientMap = t3; _.selectionState = t4; _.filterEntityType = t5; _.filterEntityId = t6; _.expenseListState = t7; }, filteredExpensesSelector_closure0: function filteredExpensesSelector_closure0(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseListState = t1; _.clientMap = t2; _.userMap = t3; _.vendorMap = t4; _.invoiceMap = t5; _.expenseCategoryMap = t6; _.staticState = t7; }, memoizedExpenseStatsForVendor_closure: function memoizedExpenseStatsForVendor_closure() { }, expenseStatsForVendor_closure: function expenseStatsForVendor_closure(t0, t1) { this._box_0 = t0; this.vendorId = t1; }, memoizedExpenseStatsForClient_closure: function memoizedExpenseStatsForClient_closure() { }, expenseStatsForClient_closure: function expenseStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedClientExpenseList_closure: function memoizedClientExpenseList_closure() { }, clientExpenseList_closure: function clientExpenseList_closure(t0, t1) { this.expenseMap = t0; this.clientId = t1; }, clientExpenseList_closure0: function clientExpenseList_closure0(t0) { this.expenseMap = t0; }, memoizedExpenseStatsForProject_closure: function memoizedExpenseStatsForProject_closure() { }, expenseStatsForProject_closure: function expenseStatsForProject_closure(t0, t1) { this._box_0 = t0; this.projectId = t1; }, memoizedExpenseStatsForUser_closure: function memoizedExpenseStatsForUser_closure() { }, expenseStatsForUser_closure: function expenseStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$ExpenseState$_(list, map) { var _s12_ = "ExpenseState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$ExpenseState(map, list); }, _$ExpenseUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("ExpenseUIState", "listUIState")); return new A._$ExpenseUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ExpenseState: function ExpenseState() { }, ExpenseState_loadExpenses_closure0: function ExpenseState_loadExpenses_closure0() { }, ExpenseState_loadExpenses_closure1: function ExpenseState_loadExpenses_closure1() { }, ExpenseState_loadExpenses_closure: function ExpenseState_loadExpenses_closure(t0, t1) { this.$this = t0; this.map = t1; }, ExpenseUIState: function ExpenseUIState() { }, _$ExpenseStateSerializer: function _$ExpenseStateSerializer() { }, _$ExpenseUIStateSerializer: function _$ExpenseUIStateSerializer() { }, _$ExpenseState: function _$ExpenseState(t0, t1) { this.map = t0; this.list = t1; this._expense_state$__hashCode = null; }, ExpenseStateBuilder: function ExpenseStateBuilder() { this._expense_state$_list = this._expense_state$_map = this._expense_state$_$v = null; }, _$ExpenseUIState: function _$ExpenseUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._expense_state$__hashCode = null; }, ExpenseUIStateBuilder: function ExpenseUIStateBuilder() { var _ = this; _._expense_state$_cancelCompleter = _._expense_state$_saveCompleter = _._expense_state$_tabIndex = _._expense_state$_forceSelected = _._expense_state$_selectedId = _._expense_state$_listUIState = _._expense_state$_editing = _._expense_state$_$v = null; }, _ExpenseUIState_Object_EntityUIState: function _ExpenseUIState_Object_EntityUIState() { }, handleExpenseCategoryAction(context, expenseCategories, action) { var store, state, t2, expenseCategory, expenseCategoryIds, message, t3, t4, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(expenseCategories); if (t1.get$isEmpty(expenseCategories)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); expenseCategory = type$.legacy_ExpenseCategoryEntity._as(t1.get$first(expenseCategories)); expenseCategoryIds = t1.map$1$1(expenseCategories, new A.handleExpenseCategoryAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, expenseCategory, true, _null); break; case B.EntityAction_restore: if (expenseCategoryIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_expense_categories"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseCategoryIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_expense_category"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case B.EntityAction_archive: if (expenseCategoryIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_expense_categories"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseCategoryIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_expense_category"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case B.EntityAction_delete: if (expenseCategoryIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_expense_categories"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(expenseCategoryIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_expense_category"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case B.EntityAction_newExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, _null).rebuild$1(new A.handleExpenseCategoryAction_closure0(expenseCategory)), false); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.expenseCategoryUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartExpenseCategoryMultiselect()); if (t1.get$isEmpty(expenseCategories)) break; for (t1 = t1.get$iterator(expenseCategories); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.expenseCategoryUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToExpenseCategoryMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromExpenseCategoryMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([expenseCategory], type$.JSArray_legacy_BaseEntity), false); break; default: A.print("## ERROR: unhandled action " + A.S(action)); break; } }, ViewExpenseCategoryList: function ViewExpenseCategoryList() { }, ViewExpenseCategory: function ViewExpenseCategory(t0) { this.expenseCategoryId = t0; }, EditExpenseCategory: function EditExpenseCategory(t0) { this.expenseCategory = t0; }, UpdateExpenseCategory: function UpdateExpenseCategory(t0) { this.expenseCategory = t0; }, LoadExpenseCategoryRequest: function LoadExpenseCategoryRequest() { }, LoadExpenseCategoryFailure: function LoadExpenseCategoryFailure(t0) { this.error = t0; }, LoadExpenseCategorySuccess: function LoadExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, LoadExpenseCategoriesRequest: function LoadExpenseCategoriesRequest() { }, LoadExpenseCategoriesFailure: function LoadExpenseCategoriesFailure(t0) { this.error = t0; }, LoadExpenseCategoriesSuccess: function LoadExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, SaveExpenseCategoryRequest: function SaveExpenseCategoryRequest(t0, t1) { this.completer = t0; this.expenseCategory = t1; }, SaveExpenseCategorySuccess: function SaveExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, AddExpenseCategorySuccess: function AddExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, SaveExpenseCategoryFailure: function SaveExpenseCategoryFailure() { }, ArchiveExpenseCategoriesRequest: function ArchiveExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, ArchiveExpenseCategoriesSuccess: function ArchiveExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, ArchiveExpenseCategoriesFailure: function ArchiveExpenseCategoriesFailure() { }, DeleteExpenseCategoriesRequest: function DeleteExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, DeleteExpenseCategoriesSuccess: function DeleteExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, DeleteExpenseCategoriesFailure: function DeleteExpenseCategoriesFailure() { }, RestoreExpenseCategoriesRequest: function RestoreExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, RestoreExpenseCategoriesSuccess: function RestoreExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, RestoreExpenseCategoriesFailure: function RestoreExpenseCategoriesFailure() { }, FilterExpenseCategories: function FilterExpenseCategories(t0) { this.filter = t0; }, SortExpenseCategories: function SortExpenseCategories(t0) { this.field = t0; }, FilterExpenseCategoriesByState: function FilterExpenseCategoriesByState(t0) { this.state = t0; }, FilterExpenseCategoriesByCustom1: function FilterExpenseCategoriesByCustom1(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom2: function FilterExpenseCategoriesByCustom2(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom3: function FilterExpenseCategoriesByCustom3(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom4: function FilterExpenseCategoriesByCustom4(t0) { this.value = t0; }, StartExpenseCategoryMultiselect: function StartExpenseCategoryMultiselect() { }, AddToExpenseCategoryMultiselect: function AddToExpenseCategoryMultiselect(t0) { this.entity = t0; }, RemoveFromExpenseCategoryMultiselect: function RemoveFromExpenseCategoryMultiselect(t0) { this.entity = t0; }, ClearExpenseCategoryMultiselect: function ClearExpenseCategoryMultiselect() { }, handleExpenseCategoryAction_closure: function handleExpenseCategoryAction_closure() { }, handleExpenseCategoryAction_closure0: function handleExpenseCategoryAction_closure0(t0) { this.expenseCategory = t0; }, _editExpenseCategory() { return new A._editExpenseCategory_closure(); }, _viewExpenseCategory() { return new A._viewExpenseCategory_closure(); }, _viewExpenseCategoryList() { return new A._viewExpenseCategoryList_closure(); }, _archiveExpenseCategory(repository) { return new A._archiveExpenseCategory_closure(repository); }, _deleteExpenseCategory(repository) { return new A._deleteExpenseCategory_closure(repository); }, _restoreExpenseCategory(repository) { return new A._restoreExpenseCategory_closure(repository); }, _saveExpenseCategory(repository) { return new A._saveExpenseCategory_closure(repository); }, _loadExpenseCategory(repository) { return new A._loadExpenseCategory_closure(repository); }, _loadExpenseCategories(repository) { return new A._loadExpenseCategories_closure(repository); }, _editExpenseCategory_closure: function _editExpenseCategory_closure() { }, _viewExpenseCategory_closure: function _viewExpenseCategory_closure() { }, _viewExpenseCategoryList_closure: function _viewExpenseCategoryList_closure() { }, _viewExpenseCategoryList__closure: function _viewExpenseCategoryList__closure() { }, _archiveExpenseCategory_closure: function _archiveExpenseCategory_closure(t0) { this.repository = t0; }, _archiveExpenseCategory__closure: function _archiveExpenseCategory__closure(t0) { this.store = t0; }, _archiveExpenseCategory__closure0: function _archiveExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveExpenseCategory__closure1: function _archiveExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _deleteExpenseCategory_closure: function _deleteExpenseCategory_closure(t0) { this.repository = t0; }, _deleteExpenseCategory__closure: function _deleteExpenseCategory__closure(t0) { this.store = t0; }, _deleteExpenseCategory__closure0: function _deleteExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteExpenseCategory__closure1: function _deleteExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _restoreExpenseCategory_closure: function _restoreExpenseCategory_closure(t0) { this.repository = t0; }, _restoreExpenseCategory__closure: function _restoreExpenseCategory__closure(t0) { this.store = t0; }, _restoreExpenseCategory__closure0: function _restoreExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreExpenseCategory__closure1: function _restoreExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _saveExpenseCategory_closure: function _saveExpenseCategory_closure(t0) { this.repository = t0; }, _saveExpenseCategory__closure: function _saveExpenseCategory__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveExpenseCategory__closure0: function _saveExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategory_closure: function _loadExpenseCategory_closure(t0) { this.repository = t0; }, _loadExpenseCategory__closure: function _loadExpenseCategory__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategory__closure0: function _loadExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategories_closure: function _loadExpenseCategories_closure(t0) { this.repository = t0; }, _loadExpenseCategories__closure: function _loadExpenseCategories__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategories__closure0: function _loadExpenseCategories__closure0(t0, t1) { this.store = t0; this.action = t1; }, expenseCategoryUIReducer(state, action) { var t1; state.toString; t1 = new A.ExpenseCategoryUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._expense_category_state$_$v = state; new A.expenseCategoryUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing3(expenseCategory, action) { return A.ExpenseCategoryEntity_ExpenseCategoryEntity(null, null); }, _updateEditing4(expenseCategory, action) { return action.get$expenseCategory(); }, _filterExpenseCategoriesByCustom1(expenseCategoryListState, action) { var t1 = expenseCategoryListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByCustom1_closure(action)); else return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByCustom1_closure0(action)); }, _filterExpenseCategoriesByCustom2(expenseCategoryListState, action) { var t1 = expenseCategoryListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByCustom2_closure(action)); else return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByCustom2_closure0(action)); }, _filterExpenseCategoriesByState(expenseCategoryListState, action) { var t1 = expenseCategoryListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByState_closure(action)); else return expenseCategoryListState.rebuild$1(new A._filterExpenseCategoriesByState_closure0(action)); }, _filterExpenseCategories(expenseCategoryListState, action) { return expenseCategoryListState.rebuild$1(new A._filterExpenseCategories_closure(action, expenseCategoryListState)); }, _sortExpenseCategories(expenseCategoryListState, action) { return expenseCategoryListState.rebuild$1(new A._sortExpenseCategories_closure(action)); }, _startListMultiselect5(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure16()); }, _addToListMultiselect5(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure16(action)); }, _removeFromListMultiselect5(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure16(action)); }, _clearListMultiselect5(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure16()); }, _archiveExpenseCategorySuccess(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._archiveExpenseCategorySuccess_closure(action)); }, _deleteExpenseCategorySuccess(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._deleteExpenseCategorySuccess_closure(action)); }, _restoreExpenseCategorySuccess(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._restoreExpenseCategorySuccess_closure(action)); }, _addExpenseCategory(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._addExpenseCategory_closure(action)); }, _updateExpenseCategory(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._updateExpenseCategory_closure(action)); }, _setLoadedExpenseCategory(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new A._setLoadedExpenseCategory_closure(action)); }, _setLoadedExpenseCategories(expenseCategoryState, action) { return expenseCategoryState.loadExpenseCategories$1(action.expenseCategories); }, _setLoadedCompany4(expenseCategoryState, action) { return expenseCategoryState.loadExpenseCategories$1(action.userCompany.company.expenseCategories); }, expenseCategoryUIReducer_closure: function expenseCategoryUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure127: function forceSelectedReducer_closure127() { }, forceSelectedReducer_closure128: function forceSelectedReducer_closure128() { }, forceSelectedReducer_closure129: function forceSelectedReducer_closure129() { }, forceSelectedReducer_closure130: function forceSelectedReducer_closure130() { }, forceSelectedReducer_closure131: function forceSelectedReducer_closure131() { }, forceSelectedReducer_closure132: function forceSelectedReducer_closure132() { }, forceSelectedReducer_closure133: function forceSelectedReducer_closure133() { }, forceSelectedReducer_closure134: function forceSelectedReducer_closure134() { }, selectedIdReducer_closure256: function selectedIdReducer_closure256() { }, selectedIdReducer_closure257: function selectedIdReducer_closure257() { }, selectedIdReducer_closure258: function selectedIdReducer_closure258() { }, selectedIdReducer_closure259: function selectedIdReducer_closure259() { }, selectedIdReducer_closure260: function selectedIdReducer_closure260() { }, selectedIdReducer_closure261: function selectedIdReducer_closure261() { }, selectedIdReducer_closure262: function selectedIdReducer_closure262() { }, selectedIdReducer_closure263: function selectedIdReducer_closure263() { }, selectedIdReducer_closure264: function selectedIdReducer_closure264() { }, selectedIdReducer_closure265: function selectedIdReducer_closure265() { }, selectedIdReducer_closure266: function selectedIdReducer_closure266() { }, selectedIdReducer_closure267: function selectedIdReducer_closure267() { }, selectedIdReducer_closure268: function selectedIdReducer_closure268() { }, selectedIdReducer_closure269: function selectedIdReducer_closure269() { }, selectedIdReducer_closure270: function selectedIdReducer_closure270() { }, editingReducer_closure87: function editingReducer_closure87() { }, editingReducer_closure88: function editingReducer_closure88() { }, editingReducer_closure89: function editingReducer_closure89() { }, editingReducer_closure90: function editingReducer_closure90() { }, editingReducer__closure34: function editingReducer__closure34() { }, _filterExpenseCategoriesByCustom1_closure: function _filterExpenseCategoriesByCustom1_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom1_closure0: function _filterExpenseCategoriesByCustom1_closure0(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom2_closure: function _filterExpenseCategoriesByCustom2_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom2_closure0: function _filterExpenseCategoriesByCustom2_closure0(t0) { this.action = t0; }, _filterExpenseCategoriesByState_closure: function _filterExpenseCategoriesByState_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByState_closure0: function _filterExpenseCategoriesByState_closure0(t0) { this.action = t0; }, _filterExpenseCategories_closure: function _filterExpenseCategories_closure(t0, t1) { this.action = t0; this.expenseCategoryListState = t1; }, _sortExpenseCategories_closure: function _sortExpenseCategories_closure(t0) { this.action = t0; }, _startListMultiselect_closure16: function _startListMultiselect_closure16() { }, _addToListMultiselect_closure16: function _addToListMultiselect_closure16(t0) { this.action = t0; }, _removeFromListMultiselect_closure16: function _removeFromListMultiselect_closure16(t0) { this.action = t0; }, _clearListMultiselect_closure16: function _clearListMultiselect_closure16() { }, _archiveExpenseCategorySuccess_closure: function _archiveExpenseCategorySuccess_closure(t0) { this.action = t0; }, _deleteExpenseCategorySuccess_closure: function _deleteExpenseCategorySuccess_closure(t0) { this.action = t0; }, _restoreExpenseCategorySuccess_closure: function _restoreExpenseCategorySuccess_closure(t0) { this.action = t0; }, _addExpenseCategory_closure: function _addExpenseCategory_closure(t0) { this.action = t0; }, _updateExpenseCategory_closure: function _updateExpenseCategory_closure(t0) { this.action = t0; }, _setLoadedExpenseCategory_closure: function _setLoadedExpenseCategory_closure(t0) { this.action = t0; }, filteredExpenseCategoriesSelector(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState) { var t1 = expenseCategoryList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredExpenseCategoriesSelector_closure(expenseCategoryMap, selectionState, expenseCategoryListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredExpenseCategoriesSelector_closure0(expenseCategoryMap, expenseCategoryListState)); return list; }, calculateExpenseCategoryAmount(categoryId, expenseMap) { var t1 = {}; t1.total = 0; expenseMap._map$_map.forEach$1(0, new A.calculateExpenseCategoryAmount_closure(t1, categoryId)); return t1.total; }, expenseStatsForExpenseCategory(categoryId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.expenseStatsForExpenseCategory_closure(t1, categoryId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, memoizedFilteredExpenseCategoryList_closure: function memoizedFilteredExpenseCategoryList_closure() { }, filteredExpenseCategoriesSelector_closure: function filteredExpenseCategoriesSelector_closure(t0, t1, t2) { this.expenseCategoryMap = t0; this.selectionState = t1; this.expenseCategoryListState = t2; }, filteredExpenseCategoriesSelector_closure0: function filteredExpenseCategoriesSelector_closure0(t0, t1) { this.expenseCategoryMap = t0; this.expenseCategoryListState = t1; }, memoizedCalculateExpenseCategoryAmount_closure: function memoizedCalculateExpenseCategoryAmount_closure() { }, calculateExpenseCategoryAmount_closure: function calculateExpenseCategoryAmount_closure(t0, t1) { this._box_0 = t0; this.categoryId = t1; }, memoizedExpenseStatsForExpenseCategory_closure: function memoizedExpenseStatsForExpenseCategory_closure() { }, expenseStatsForExpenseCategory_closure: function expenseStatsForExpenseCategory_closure(t0, t1) { this._box_0 = t0; this.categoryId = t1; }, _$ExpenseCategoryState$_(list, map) { var _s20_ = "ExpenseCategoryState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "list")); return new A._$ExpenseCategoryState(map, list); }, _$ExpenseCategoryUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("ExpenseCategoryUIState", "listUIState")); return new A._$ExpenseCategoryUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ExpenseCategoryState: function ExpenseCategoryState() { }, ExpenseCategoryState_loadExpenseCategories_closure0: function ExpenseCategoryState_loadExpenseCategories_closure0() { }, ExpenseCategoryState_loadExpenseCategories_closure1: function ExpenseCategoryState_loadExpenseCategories_closure1() { }, ExpenseCategoryState_loadExpenseCategories_closure: function ExpenseCategoryState_loadExpenseCategories_closure(t0, t1) { this.$this = t0; this.map = t1; }, ExpenseCategoryUIState: function ExpenseCategoryUIState() { }, _$ExpenseCategoryStateSerializer: function _$ExpenseCategoryStateSerializer() { }, _$ExpenseCategoryUIStateSerializer: function _$ExpenseCategoryUIStateSerializer() { }, _$ExpenseCategoryState: function _$ExpenseCategoryState(t0, t1) { this.map = t0; this.list = t1; this._expense_category_state$__hashCode = null; }, ExpenseCategoryStateBuilder: function ExpenseCategoryStateBuilder() { this._expense_category_state$_list = this._expense_category_state$_map = this._expense_category_state$_$v = null; }, _$ExpenseCategoryUIState: function _$ExpenseCategoryUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._expense_category_state$__hashCode = null; }, ExpenseCategoryUIStateBuilder: function ExpenseCategoryUIStateBuilder() { var _ = this; _._expense_category_state$_cancelCompleter = _._expense_category_state$_saveCompleter = _._expense_category_state$_tabIndex = _._expense_category_state$_forceSelected = _._expense_category_state$_selectedId = _._expense_category_state$_listUIState = _._expense_category_state$_editing = _._expense_category_state$_$v = null; }, _ExpenseCategoryUIState_Object_EntityUIState: function _ExpenseCategoryUIState_Object_EntityUIState() { }, handleGroupAction(context, groups, action) { var store, t2, group, groupIds, message, t3, t4, _null = null, _s6_ = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(groups); if (t1.get$isEmpty(groups)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); group = t1.get$first(groups); groupIds = t1.map$1$1(groups, new A.handleGroupAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, group, true, _null); break; case B.EntityAction_settings: store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, group, _null, _null, false, "company_details", false, _null)); break; case B.EntityAction_newClient: A.createEntity(_null, _null, context, A.ClientEntity_ClientEntity(_null, _null, _null, _null).rebuild$1(new A.handleGroupAction_closure0(group)), false); break; case B.EntityAction_restore: if (groupIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_groups"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(groupIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_group"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreGroupRequest(t1, groupIds)); break; case B.EntityAction_archive: if (groupIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_groups"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(groupIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_group"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveGroupRequest(t1, groupIds)); break; case B.EntityAction_delete: if (groupIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_groups"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(groupIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_group"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteGroupRequest(t1, groupIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.groupUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartGroupMultiselect()); if (t1.get$isEmpty(groups)) break; for (t1 = t1.get$iterator(groups); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.groupUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToGroupMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromGroupMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([group], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewGroupList: function ViewGroupList() { }, ViewGroup: function ViewGroup(t0) { this.groupId = t0; }, EditGroup: function EditGroup(t0) { this.group = t0; }, UpdateGroup: function UpdateGroup(t0) { this.group = t0; }, LoadGroup: function LoadGroup(t0, t1) { this.completer = t0; this.groupId = t1; }, LoadGroupRequest: function LoadGroupRequest() { }, LoadGroupFailure: function LoadGroupFailure(t0) { this.error = t0; }, LoadGroupSuccess: function LoadGroupSuccess(t0) { this.group = t0; }, LoadGroupsRequest: function LoadGroupsRequest() { }, LoadGroupsFailure: function LoadGroupsFailure(t0) { this.error = t0; }, LoadGroupsSuccess: function LoadGroupsSuccess(t0) { this.groups = t0; }, SaveGroupRequest: function SaveGroupRequest(t0, t1) { this.completer = t0; this.group = t1; }, SaveGroupSuccess: function SaveGroupSuccess(t0) { this.group = t0; }, AddGroupSuccess: function AddGroupSuccess(t0) { this.group = t0; }, SaveGroupFailure: function SaveGroupFailure() { }, ArchiveGroupRequest: function ArchiveGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, ArchiveGroupSuccess: function ArchiveGroupSuccess(t0) { this.groups = t0; }, ArchiveGroupFailure: function ArchiveGroupFailure() { }, DeleteGroupRequest: function DeleteGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, DeleteGroupSuccess: function DeleteGroupSuccess(t0) { this.groups = t0; }, DeleteGroupFailure: function DeleteGroupFailure() { }, RestoreGroupRequest: function RestoreGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, RestoreGroupSuccess: function RestoreGroupSuccess(t0) { this.groups = t0; }, RestoreGroupFailure: function RestoreGroupFailure() { }, FilterGroups: function FilterGroups(t0) { this.filter = t0; }, SortGroups: function SortGroups(t0) { this.field = t0; }, FilterGroupsByState: function FilterGroupsByState(t0) { this.state = t0; }, handleGroupAction_closure: function handleGroupAction_closure() { }, handleGroupAction_closure0: function handleGroupAction_closure0(t0) { this.group = t0; }, StartGroupMultiselect: function StartGroupMultiselect() { }, AddToGroupMultiselect: function AddToGroupMultiselect(t0) { this.entity = t0; }, RemoveFromGroupMultiselect: function RemoveFromGroupMultiselect(t0) { this.entity = t0; }, ClearGroupMultiselect: function ClearGroupMultiselect() { }, SaveGroupDocumentRequest: function SaveGroupDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.group = t2; }, SaveGroupDocumentFailure: function SaveGroupDocumentFailure() { }, _editGroup() { return new A._editGroup_closure(); }, _viewGroup() { return new A._viewGroup_closure(); }, _viewGroupList() { return new A._viewGroupList_closure0(); }, _archiveGroup(repository) { return new A._archiveGroup_closure(repository); }, _deleteGroup(repository) { return new A._deleteGroup_closure(repository); }, _restoreGroup(repository) { return new A._restoreGroup_closure(repository); }, _saveGroup(repository) { return new A._saveGroup_closure(repository); }, _loadGroup(repository) { return new A._loadGroup_closure(repository); }, _loadGroups(repository) { return new A._loadGroups_closure(repository); }, _saveDocument12(repository) { return new A._saveDocument_closure(repository); }, _editGroup_closure: function _editGroup_closure() { }, _viewGroup_closure: function _viewGroup_closure() { }, _viewGroupList_closure0: function _viewGroupList_closure0() { }, _viewGroupList__closure: function _viewGroupList__closure() { }, _archiveGroup_closure: function _archiveGroup_closure(t0) { this.repository = t0; }, _archiveGroup__closure: function _archiveGroup__closure(t0) { this.store = t0; }, _archiveGroup__closure0: function _archiveGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveGroup__closure1: function _archiveGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _deleteGroup_closure: function _deleteGroup_closure(t0) { this.repository = t0; }, _deleteGroup__closure: function _deleteGroup__closure(t0) { this.store = t0; }, _deleteGroup__closure0: function _deleteGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteGroup__closure1: function _deleteGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _restoreGroup_closure: function _restoreGroup_closure(t0) { this.repository = t0; }, _restoreGroup__closure: function _restoreGroup__closure(t0) { this.store = t0; }, _restoreGroup__closure0: function _restoreGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreGroup__closure1: function _restoreGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _saveGroup_closure: function _saveGroup_closure(t0) { this.repository = t0; }, _saveGroup__closure: function _saveGroup__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveGroup__closure0: function _saveGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadGroup_closure: function _loadGroup_closure(t0) { this.repository = t0; }, _loadGroup__closure: function _loadGroup__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadGroup__closure0: function _loadGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadGroups_closure: function _loadGroups_closure(t0) { this.repository = t0; }, _loadGroups__closure: function _loadGroups__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadGroups__closure0: function _loadGroups__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure: function _saveDocument_closure(t0) { this.repository = t0; }, _saveDocument__closure: function _saveDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure0: function _saveDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, groupUIReducer(state, action) { var t1; state.toString; t1 = new A.GroupUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._group_state$_$v = state; new A.groupUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing4(group, action) { return A.GroupEntity_GroupEntity(null, null); }, _updateEditing5(group, action) { return action.get$group(); }, _viewGroupList0(groupListState, action) { return groupListState.rebuild$1(new A._viewGroupList_closure()); }, _filterGroupsByState(groupListState, action) { var t1 = groupListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return groupListState.rebuild$1(new A._filterGroupsByState_closure(action)); else return groupListState.rebuild$1(new A._filterGroupsByState_closure0(action)); }, _filterGroups(groupListState, action) { return groupListState.rebuild$1(new A._filterGroups_closure(action, groupListState)); }, _sortGroups(groupListState, action) { return groupListState.rebuild$1(new A._sortGroups_closure(action)); }, _startListMultiselect6(groupListState, action) { return groupListState.rebuild$1(new A._startListMultiselect_closure6()); }, _addToListMultiselect6(groupListState, action) { return groupListState.rebuild$1(new A._addToListMultiselect_closure6(action)); }, _removeFromListMultiselect6(groupListState, action) { return groupListState.rebuild$1(new A._removeFromListMultiselect_closure6(action)); }, _clearListMultiselect6(groupListState, action) { return groupListState.rebuild$1(new A._clearListMultiselect_closure6()); }, _archiveGroupSuccess(groupState, action) { return groupState.rebuild$1(new A._archiveGroupSuccess_closure(action)); }, _deleteGroupSuccess(groupState, action) { return groupState.rebuild$1(new A._deleteGroupSuccess_closure(action)); }, _restoreGroupSuccess(groupState, action) { return groupState.rebuild$1(new A._restoreGroupSuccess_closure(action)); }, _addGroup(groupState, action) { return groupState.rebuild$1(new A._addGroup_closure(action)); }, _updateGroup(groupState, action) { return groupState.rebuild$1(new A._updateGroup_closure(action)); }, _setLoadedGroup(groupState, action) { return groupState.rebuild$1(new A._setLoadedGroup_closure(action)); }, _setLoadedGroups(groupState, action) { var state = groupState.rebuild$1(new A._setLoadedGroups_closure(action)); return state.rebuild$1(new A._setLoadedGroups_closure0(state)); }, _setLoadedCompany5(groupState, action) { var state = groupState.rebuild$1(new A._setLoadedCompany_closure(action)); return state.rebuild$1(new A._setLoadedCompany_closure0(state)); }, groupUIReducer_closure: function groupUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure55: function forceSelectedReducer_closure55() { }, forceSelectedReducer_closure56: function forceSelectedReducer_closure56() { }, forceSelectedReducer_closure57: function forceSelectedReducer_closure57() { }, forceSelectedReducer_closure58: function forceSelectedReducer_closure58() { }, selectedIdReducer_closure107: function selectedIdReducer_closure107() { }, selectedIdReducer_closure108: function selectedIdReducer_closure108() { }, selectedIdReducer_closure109: function selectedIdReducer_closure109() { }, selectedIdReducer_closure110: function selectedIdReducer_closure110() { }, selectedIdReducer_closure111: function selectedIdReducer_closure111() { }, selectedIdReducer_closure112: function selectedIdReducer_closure112() { }, selectedIdReducer_closure113: function selectedIdReducer_closure113() { }, selectedIdReducer_closure114: function selectedIdReducer_closure114() { }, selectedIdReducer_closure115: function selectedIdReducer_closure115() { }, selectedIdReducer_closure116: function selectedIdReducer_closure116() { }, selectedIdReducer_closure117: function selectedIdReducer_closure117() { }, selectedIdReducer_closure118: function selectedIdReducer_closure118() { }, editingReducer_closure33: function editingReducer_closure33() { }, editingReducer_closure34: function editingReducer_closure34() { }, editingReducer_closure35: function editingReducer_closure35() { }, editingReducer_closure36: function editingReducer_closure36() { }, editingReducer__closure12: function editingReducer__closure12() { }, _viewGroupList_closure: function _viewGroupList_closure() { }, _filterGroupsByState_closure: function _filterGroupsByState_closure(t0) { this.action = t0; }, _filterGroupsByState_closure0: function _filterGroupsByState_closure0(t0) { this.action = t0; }, _filterGroups_closure: function _filterGroups_closure(t0, t1) { this.action = t0; this.groupListState = t1; }, _sortGroups_closure: function _sortGroups_closure(t0) { this.action = t0; }, _startListMultiselect_closure6: function _startListMultiselect_closure6() { }, _addToListMultiselect_closure6: function _addToListMultiselect_closure6(t0) { this.action = t0; }, _removeFromListMultiselect_closure6: function _removeFromListMultiselect_closure6(t0) { this.action = t0; }, _clearListMultiselect_closure6: function _clearListMultiselect_closure6() { }, _archiveGroupSuccess_closure: function _archiveGroupSuccess_closure(t0) { this.action = t0; }, _deleteGroupSuccess_closure: function _deleteGroupSuccess_closure(t0) { this.action = t0; }, _restoreGroupSuccess_closure: function _restoreGroupSuccess_closure(t0) { this.action = t0; }, _addGroup_closure: function _addGroup_closure(t0) { this.action = t0; }, _updateGroup_closure: function _updateGroup_closure(t0) { this.action = t0; }, _setLoadedGroup_closure: function _setLoadedGroup_closure(t0) { this.action = t0; }, _setLoadedGroups_closure: function _setLoadedGroups_closure(t0) { this.action = t0; }, _setLoadedGroups__closure: function _setLoadedGroups__closure() { }, _setLoadedGroups__closure0: function _setLoadedGroups__closure0() { }, _setLoadedGroups_closure0: function _setLoadedGroups_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure: function _setLoadedCompany_closure(t0) { this.action = t0; }, _setLoadedCompany__closure: function _setLoadedCompany__closure() { }, _setLoadedCompany__closure0: function _setLoadedCompany__closure0() { }, _setLoadedCompany_closure0: function _setLoadedCompany_closure0(t0) { this.state = t0; }, filteredGroupsSelector(selectionState, groupMap, groupList, groupListState) { var t1 = groupList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredGroupsSelector_closure(groupMap, selectionState, groupListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredGroupsSelector_closure0(groupMap, groupListState)); return list; }, clientStatsForGroup(clientMap, groupId) { var t1 = {}; t1.countArchived = t1.countActive = 0; clientMap._map$_map.forEach$1(0, new A.clientStatsForGroup_closure(t1, groupId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, memoizedFilteredGroupList_closure: function memoizedFilteredGroupList_closure() { }, filteredGroupsSelector_closure: function filteredGroupsSelector_closure(t0, t1, t2) { this.groupMap = t0; this.selectionState = t1; this.groupListState = t2; }, filteredGroupsSelector_closure0: function filteredGroupsSelector_closure0(t0, t1) { this.groupMap = t0; this.groupListState = t1; }, memoizedClientStatsForGroup_closure: function memoizedClientStatsForGroup_closure() { }, clientStatsForGroup_closure: function clientStatsForGroup_closure(t0, t1) { this._box_0 = t0; this.groupId = t1; }, _$GroupState$_(list, map) { var _s10_ = "GroupState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "list")); return new A._$GroupState(map, list); }, _$GroupUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("GroupUIState", "listUIState")); return new A._$GroupUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, GroupState: function GroupState() { }, GroupUIState: function GroupUIState() { }, _$GroupStateSerializer: function _$GroupStateSerializer() { }, _$GroupUIStateSerializer: function _$GroupUIStateSerializer() { }, _$GroupState: function _$GroupState(t0, t1) { this.map = t0; this.list = t1; this._group_state$__hashCode = null; }, GroupStateBuilder: function GroupStateBuilder() { this._group_state$_list = this._group_state$_map = this._group_state$_$v = null; }, _$GroupUIState: function _$GroupUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._group_state$__hashCode = null; }, GroupUIStateBuilder: function GroupUIStateBuilder() { var _ = this; _._group_state$_cancelCompleter = _._group_state$_saveCompleter = _._group_state$_tabIndex = _._group_state$_forceSelected = _._group_state$_selectedId = _._group_state$_listUIState = _._group_state$_editing = _._group_state$_$v = null; }, _GroupUIState_Object_EntityUIState: function _GroupUIState_Object_EntityUIState() { }, handleInvoiceAction(context, invoices, action) { return A.handleInvoiceAction$body(context, invoices, action); }, handleInvoiceAction$body(context, invoices, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t2, t3, invoice, invoiceIds, designId, message, t4, response, documentIds, _box_0, t1; var $async$handleInvoiceAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; t1 = J.getInterceptor$asx(invoices); if (t1.get$isEmpty(invoices)) { // goto return $async$goto = 1; break; } store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = type$.legacy_InvoiceEntity; invoice = t3._as(t1.get$first(invoices)); invoiceIds = t1.map$1$1(invoices, new A.handleInvoiceAction_closure(), type$.legacy_String).toList$0(0); case 3: // switch switch (action) { case B.EntityAction_edit: // goto case $async$goto = 5; break; case B.EntityAction_viewPdf: // goto case $async$goto = 6; break; case B.EntityAction_clientPortal: // goto case $async$goto = 7; break; case B.EntityAction_markSent: // goto case $async$goto = 8; break; case B.EntityAction_reverse: // goto case $async$goto = 9; break; case B.EntityAction_cancelInvoice: // goto case $async$goto = 10; break; case B.EntityAction_markPaid: // goto case $async$goto = 11; break; case B.EntityAction_sendEmail: // goto case $async$goto = 12; break; case B.EntityAction_bulkSendEmail: // goto case $async$goto = 13; break; case B.EntityAction_cloneToOther: // goto case $async$goto = 14; break; case B.EntityAction_clone: // goto case $async$goto = 15; break; case B.EntityAction_cloneToInvoice: // goto case $async$goto = 16; break; case B.EntityAction_cloneToQuote: // goto case $async$goto = 17; break; case B.EntityAction_cloneToCredit: // goto case $async$goto = 18; break; case B.EntityAction_cloneToPurchaseOrder: // goto case $async$goto = 19; break; case B.EntityAction_cloneToRecurring: // goto case $async$goto = 20; break; case B.EntityAction_newPayment: // goto case $async$goto = 21; break; case B.EntityAction_download: // goto case $async$goto = 22; break; case B.EntityAction_bulkDownload: // goto case $async$goto = 23; break; case B.EntityAction_restore: // goto case $async$goto = 24; break; case B.EntityAction_archive: // goto case $async$goto = 25; break; case B.EntityAction_delete: // goto case $async$goto = 26; break; case B.EntityAction_toggleMultiselect: // goto case $async$goto = 27; break; case B.EntityAction_printPdf: // goto case $async$goto = 28; break; case B.EntityAction_more: // goto case $async$goto = 29; break; case B.EntityAction_documents: // goto case $async$goto = 30; break; default: // goto default $async$goto = 31; break; } break; case 5: // case A.editEntity(null, invoice, true, null); // goto after switch $async$goto = 4; break; case 6: // case store.get$_dispatchers()[0].call$1(new A.ShowPdfInvoice(invoice, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = invoice.invitations._list; $async$goto = 34; return A._asyncAwait(A.canLaunch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true"), $async$handleInvoiceAction); case 34: // returning from await. $async$goto = $async$result ? 32 : 33; break; case 32: // then $async$goto = 35; return A._asyncAwait(A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true", false, false), $async$handleInvoiceAction); case 35: // returning from await. case 33: // join // goto after switch $async$goto = 4; break; case 8: // case if (invoiceIds.length === 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "marked_invoice_as_sent"); if (t1 == null) t1 = ""; } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "marked_invoices_as_sent"); if (t1 == null) t1 = ""; } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkInvoicesSentRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 9: // case designId = A.getDesignIdForClientByEntity(invoice.clientId, B.EntityType_credit, state); A.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new A.handleInvoiceAction_closure0(invoice, designId)), false); // goto after switch $async$goto = 4; break; case 10: // case A.confirmCallback(false, new A.handleInvoiceAction_closure1(store, context, invoiceIds, t2), context, t2.get$cancelInvoice(), false, null); // goto after switch $async$goto = 4; break; case 11: // case if (invoiceIds.length === 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "marked_invoice_as_paid"); if (t1 == null) t1 = ""; } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "marked_invoices_as_paid"); if (t1 == null) t1 = ""; } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkInvoicesPaidRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 12: // case case 13: // case _box_0.emailValid = true; t1.forEach$1(invoices, new A.handleInvoiceAction_closure2(_box_0, state)); if (!_box_0.emailValid) { A.showMessageDialog(context, t2.get$clientEmailNotSet(), null, A._setArrayType([A.TextButton$(false, A.Text$(t2.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new A.handleInvoiceAction_closure3(context, state, invoice), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === B.EntityAction_sendEmail) { t1 = A.snackBarCompleter(context, t2.get$emailedInvoice(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ShowEmailInvoice(invoice, context, t1)); } else { t2.toString; t1 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t1.$index(0, t2.localeCode), "bulk_email_invoices"); t1 = t3 == null ? J.$index$asx(t1.$index(0, "en"), "bulk_email_invoices") : t3; A.confirmCallback(false, new A.handleInvoiceAction_closure4(store, context, invoiceIds, t2), context, t1, false, null); } // goto after switch $async$goto = 4; break; case 14: // case A.cloneToDialog(context, invoice); // goto after switch $async$goto = 4; break; case 15: // case case 16: // case A.createEntity(null, null, context, invoice.get$clone(invoice), false); // goto after switch $async$goto = 4; break; case 17: // case designId = A.getDesignIdForClientByEntity(invoice.clientId, B.EntityType_quote, state); A.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new A.handleInvoiceAction_closure5(designId)), false); // goto after switch $async$goto = 4; break; case 18: // case designId = A.getDesignIdForClientByEntity(invoice.clientId, B.EntityType_credit, state); A.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new A.handleInvoiceAction_closure6(designId)), false); // goto after switch $async$goto = 4; break; case 19: // case designId = A.getDesignIdForVendorByEntity(B.EntityType_purchaseOrder, state, invoice.vendorId); A.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new A.handleInvoiceAction_closure7(designId)).recreateInvitations$1(state), false); // goto after switch $async$goto = 4; break; case 20: // case A.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new A.handleInvoiceAction_closure8()), false); // goto after switch $async$goto = 4; break; case 21: // case A.createEntity(null, null, context, A.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new A.handleInvoiceAction_closure9(invoice, invoices)), false); // goto after switch $async$goto = 4; break; case 22: // case t1 = invoice.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "/download?t=" + Date.now(), null, false); // goto after switch $async$goto = 4; break; case 23: // case t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 24: // case if (invoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(invoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 25: // case if (invoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(invoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 26: // case if (invoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(invoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 27: // case if (A._lateReadCheck(store.__Store__state, "_state").uiState.invoiceUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartInvoiceMultiselect()); for (t1 = t1.get$iterator(invoices); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.invoiceUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.AddToInvoiceMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.RemoveFromInvoiceMultiselect(t2)); } // goto after switch $async$goto = 4; break; case 28: // case t1 = B.JSArray_methods.get$first(invoice.invitations._list).link; t2 = Date.now(); store.get$_dispatchers()[0].call$1(new A.StartSaving()); $async$goto = 36; return A._asyncAwait(new A.WebClient().$get$3$rawResponse(0, t1 + "/download?t=" + t2, "", true), $async$handleInvoiceAction); case 36: // returning from await. response = $async$result; store.get$_dispatchers()[0].call$1(new A.StopSaving()); $async$goto = 37; return A._asyncAwait(A.Printing_layoutPdf(true, B.PdfPageFormat_gg4, "Document", new A.handleInvoiceAction_closure10(response), false), $async$handleInvoiceAction); case 37: // returning from await. // goto after switch $async$goto = 4; break; case 29: // case A.showEntityActionsDialog(null, A._setArrayType([invoice], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 30: // case documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(invoices); t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); // goto after switch $async$goto = 4; break; case 31: // default A.print("## ERROR: unhandled action " + A.S(action) + " in invoice_actions"); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleInvoiceAction, $async$completer); }, ViewInvoiceList: function ViewInvoiceList() { }, ViewInvoice: function ViewInvoice(t0) { this.invoiceId = t0; }, EditInvoice: function EditInvoice(t0, t1) { this.invoice = t0; this.invoiceItemIndex = t1; }, ShowEmailInvoice: function ShowEmailInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.completer = t2; }, ShowPdfInvoice: function ShowPdfInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.activityId = t2; }, EditInvoiceItem: function EditInvoiceItem(t0) { this.invoiceItemIndex = t0; }, UpdateInvoice: function UpdateInvoice(t0) { this.invoice = t0; }, UpdateInvoiceClient: function UpdateInvoiceClient(t0) { this.client = t0; }, LoadInvoice: function LoadInvoice(t0, t1) { this.completer = t0; this.invoiceId = t1; }, LoadInvoices: function LoadInvoices(t0, t1) { this.completer = t0; this.page = t1; }, LoadInvoiceRequest: function LoadInvoiceRequest() { }, LoadInvoiceFailure: function LoadInvoiceFailure(t0) { this.error = t0; }, LoadInvoiceSuccess: function LoadInvoiceSuccess(t0) { this.invoice = t0; }, LoadInvoicesRequest: function LoadInvoicesRequest() { }, LoadInvoicesFailure: function LoadInvoicesFailure(t0) { this.error = t0; }, LoadInvoicesSuccess: function LoadInvoicesSuccess(t0) { this.invoices = t0; }, AddInvoiceContact: function AddInvoiceContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveInvoiceContact: function RemoveInvoiceContact(t0) { this.invitation = t0; }, AddInvoiceItem: function AddInvoiceItem(t0) { this.invoiceItem = t0; }, MoveInvoiceItem: function MoveInvoiceItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddInvoiceItems: function AddInvoiceItems(t0) { this.lineItems = t0; }, UpdateInvoiceItem: function UpdateInvoiceItem(t0, t1) { this.index = t0; this.invoiceItem = t1; }, DeleteInvoiceItem: function DeleteInvoiceItem(t0) { this.index = t0; }, SaveInvoiceRequest: function SaveInvoiceRequest(t0, t1, t2) { this.completer = t0; this.invoice = t1; this.entityAction = t2; }, SaveInvoiceSuccess: function SaveInvoiceSuccess(t0) { this.invoice = t0; }, AddInvoiceSuccess: function AddInvoiceSuccess(t0) { this.invoice = t0; }, SaveInvoiceFailure: function SaveInvoiceFailure() { }, EmailInvoiceRequest: function EmailInvoiceRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.invoiceId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailInvoiceSuccess: function EmailInvoiceSuccess(t0) { this.invoice = t0; }, EmailInvoiceFailure: function EmailInvoiceFailure() { }, MarkInvoicesSentRequest: function MarkInvoicesSentRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, MarkInvoicesSentSuccess: function MarkInvoicesSentSuccess(t0) { this.invoices = t0; }, MarkInvoicesSentFailure: function MarkInvoicesSentFailure() { }, BulkEmailInvoicesRequest: function BulkEmailInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, BulkEmailInvoicesSuccess: function BulkEmailInvoicesSuccess() { }, BulkEmailInvoicesFailure: function BulkEmailInvoicesFailure() { }, MarkInvoicesPaidRequest: function MarkInvoicesPaidRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, MarkInvoicesPaidSuccess: function MarkInvoicesPaidSuccess(t0) { this.invoices = t0; }, MarkInvoicesPaidFailure: function MarkInvoicesPaidFailure() { }, CancelInvoicesRequest: function CancelInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, CancelInvoicesSuccess: function CancelInvoicesSuccess(t0) { this.invoices = t0; }, CancelInvoicesFailure: function CancelInvoicesFailure() { }, ArchiveInvoicesRequest: function ArchiveInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, ArchiveInvoicesSuccess: function ArchiveInvoicesSuccess(t0) { this.invoices = t0; }, ArchiveInvoicesFailure: function ArchiveInvoicesFailure() { }, DeleteInvoicesRequest: function DeleteInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DeleteInvoicesSuccess: function DeleteInvoicesSuccess(t0) { this.invoices = t0; }, DeleteInvoicesFailure: function DeleteInvoicesFailure() { }, DownloadInvoicesRequest: function DownloadInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DownloadInvoicesSuccess: function DownloadInvoicesSuccess() { }, DownloadInvoicesFailure: function DownloadInvoicesFailure() { }, RestoreInvoicesRequest: function RestoreInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, RestoreInvoicesSuccess: function RestoreInvoicesSuccess(t0) { this.invoices = t0; }, RestoreInvoicesFailure: function RestoreInvoicesFailure() { }, FilterInvoices: function FilterInvoices(t0) { this.filter = t0; }, SortInvoices: function SortInvoices(t0) { this.field = t0; }, FilterInvoicesByState: function FilterInvoicesByState(t0) { this.state = t0; }, FilterInvoicesByStatus: function FilterInvoicesByStatus(t0) { this.status = t0; }, FilterInvoicesByCustom1: function FilterInvoicesByCustom1(t0) { this.value = t0; }, FilterInvoicesByCustom2: function FilterInvoicesByCustom2(t0) { this.value = t0; }, FilterInvoicesByCustom3: function FilterInvoicesByCustom3(t0) { this.value = t0; }, FilterInvoicesByCustom4: function FilterInvoicesByCustom4(t0) { this.value = t0; }, StartInvoiceMultiselect: function StartInvoiceMultiselect() { }, AddToInvoiceMultiselect: function AddToInvoiceMultiselect(t0) { this.entity = t0; }, RemoveFromInvoiceMultiselect: function RemoveFromInvoiceMultiselect(t0) { this.entity = t0; }, ClearInvoiceMultiselect: function ClearInvoiceMultiselect() { }, SaveInvoiceDocumentRequest: function SaveInvoiceDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.invoice = t2; }, SaveInvoiceDocumentFailure: function SaveInvoiceDocumentFailure() { }, UpdateInvoiceTab: function UpdateInvoiceTab(t0) { this.tabIndex = t0; }, handleInvoiceAction_closure: function handleInvoiceAction_closure() { }, handleInvoiceAction_closure0: function handleInvoiceAction_closure0(t0, t1) { this.invoice = t0; this.designId = t1; }, handleInvoiceAction_closure1: function handleInvoiceAction_closure1(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.invoiceIds = t2; _.localization = t3; }, handleInvoiceAction_closure2: function handleInvoiceAction_closure2(t0, t1) { this._box_0 = t0; this.state = t1; }, handleInvoiceAction_closure3: function handleInvoiceAction_closure3(t0, t1, t2) { this.context = t0; this.state = t1; this.invoice = t2; }, handleInvoiceAction_closure4: function handleInvoiceAction_closure4(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.invoiceIds = t2; _.localization = t3; }, handleInvoiceAction_closure5: function handleInvoiceAction_closure5(t0) { this.designId = t0; }, handleInvoiceAction_closure6: function handleInvoiceAction_closure6(t0) { this.designId = t0; }, handleInvoiceAction_closure7: function handleInvoiceAction_closure7(t0) { this.designId = t0; }, handleInvoiceAction_closure8: function handleInvoiceAction_closure8() { }, handleInvoiceAction_closure9: function handleInvoiceAction_closure9(t0, t1) { this.invoice = t0; this.invoices = t1; }, handleInvoiceAction__closure: function handleInvoiceAction__closure() { }, handleInvoiceAction__closure0: function handleInvoiceAction__closure0() { }, handleInvoiceAction_closure10: function handleInvoiceAction_closure10(t0) { this.response = t0; }, _viewInvoiceList() { return new A._viewInvoiceList_closure0(); }, _viewInvoice() { return new A._viewInvoice_closure(); }, _editInvoice() { return new A._editInvoice_closure(); }, _showEmailInvoice() { return new A._showEmailInvoice_closure(); }, _showPdfInvoice() { return new A._showPdfInvoice_closure(); }, _cancelInvoices(repository) { return new A._cancelInvoices_closure(repository); }, _archiveInvoice(repository) { return new A._archiveInvoice_closure(repository); }, _deleteInvoice(repository) { return new A._deleteInvoice_closure(repository); }, _restoreInvoice(repository) { return new A._restoreInvoice_closure(repository); }, _markInvoiceSent(repository) { return new A._markInvoiceSent_closure(repository); }, _markInvoicePaid(repository) { return new A._markInvoicePaid_closure(repository); }, _downloadInvoices(repository) { return new A._downloadInvoices_closure(repository); }, _emailInvoice(repository) { return new A._emailInvoice_closure(repository); }, _bulkEmailInvoices(repository) { return new A._bulkEmailInvoices_closure(repository); }, _saveInvoice(repository) { return new A._saveInvoice_closure(repository); }, _loadInvoice(repository) { return new A._loadInvoice_closure(repository); }, _loadInvoices(repository) { return new A._loadInvoices_closure(repository); }, _saveDocument1(repository) { return new A._saveDocument_closure10(repository); }, _viewInvoiceList_closure0: function _viewInvoiceList_closure0() { }, _viewInvoiceList__closure: function _viewInvoiceList__closure() { }, _viewInvoice_closure: function _viewInvoice_closure() { }, _editInvoice_closure: function _editInvoice_closure() { }, _showEmailInvoice_closure: function _showEmailInvoice_closure() { }, _showPdfInvoice_closure: function _showPdfInvoice_closure() { }, _cancelInvoices_closure: function _cancelInvoices_closure(t0) { this.repository = t0; }, _cancelInvoices__closure: function _cancelInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _cancelInvoices__closure0: function _cancelInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveInvoice_closure: function _archiveInvoice_closure(t0) { this.repository = t0; }, _archiveInvoice__closure: function _archiveInvoice__closure(t0) { this.store = t0; }, _archiveInvoice__closure0: function _archiveInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveInvoice__closure1: function _archiveInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _deleteInvoice_closure: function _deleteInvoice_closure(t0) { this.repository = t0; }, _deleteInvoice__closure: function _deleteInvoice__closure(t0) { this.store = t0; }, _deleteInvoice__closure0: function _deleteInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteInvoice__closure1: function _deleteInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _restoreInvoice_closure: function _restoreInvoice_closure(t0) { this.repository = t0; }, _restoreInvoice__closure: function _restoreInvoice__closure(t0) { this.store = t0; }, _restoreInvoice__closure0: function _restoreInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreInvoice__closure1: function _restoreInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _markInvoiceSent_closure: function _markInvoiceSent_closure(t0) { this.repository = t0; }, _markInvoiceSent__closure: function _markInvoiceSent__closure(t0, t1) { this.store = t0; this.action = t1; }, _markInvoiceSent__closure0: function _markInvoiceSent__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markInvoicePaid_closure: function _markInvoicePaid_closure(t0) { this.repository = t0; }, _markInvoicePaid__closure: function _markInvoicePaid__closure(t0, t1) { this.store = t0; this.action = t1; }, _markInvoicePaid__closure0: function _markInvoicePaid__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadInvoices_closure: function _downloadInvoices_closure(t0) { this.repository = t0; }, _downloadInvoices__closure: function _downloadInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadInvoices__closure0: function _downloadInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailInvoice_closure: function _emailInvoice_closure(t0) { this.repository = t0; }, _emailInvoice__closure: function _emailInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailInvoice__closure0: function _emailInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailInvoices_closure: function _bulkEmailInvoices_closure(t0) { this.repository = t0; }, _bulkEmailInvoices__closure: function _bulkEmailInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailInvoices__closure0: function _bulkEmailInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveInvoice_closure: function _saveInvoice_closure(t0) { this.repository = t0; }, _saveInvoice__closure: function _saveInvoice__closure(t0) { this.action = t0; }, _saveInvoice___closure: function _saveInvoice___closure() { }, _saveInvoice__closure0: function _saveInvoice__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveInvoice__closure1: function _saveInvoice__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoice_closure: function _loadInvoice_closure(t0) { this.repository = t0; }, _loadInvoice__closure: function _loadInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoice__closure0: function _loadInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoices_closure: function _loadInvoices_closure(t0) { this.repository = t0; }, _loadInvoices__closure: function _loadInvoices__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadInvoices__closure0: function _loadInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure10: function _saveDocument_closure10(t0) { this.repository = t0; }, _saveDocument__closure21: function _saveDocument__closure21(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure22: function _saveDocument__closure22(t0, t1) { this.store = t0; this.action = t1; }, invoiceUIReducer(state, action) { var t1; state.toString; t1 = new A.InvoiceUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._invoice_state$_$v = state; new A.invoiceUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing5(invoice, action) { var _null = null; return A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); }, _updateEditing6(invoice, action) { return action.get$invoice(); }, _addInvoiceItem(invoice, action) { var item = action.invoiceItem; return invoice.rebuild$1(new A._addInvoiceItem_closure(item)); }, _addInvoiceItems(invoice, action) { return invoice.rebuild$1(new A._addInvoiceItems_closure(action)); }, _removeInvoiceItem(invoice, action) { if (invoice.lineItems._list.length <= action.index) return invoice; return invoice.rebuild$1(new A._removeInvoiceItem_closure(action)); }, _updateInvoiceItem(invoice, action) { if (invoice.lineItems._list.length <= action.index) return invoice; return invoice.rebuild$1(new A._updateInvoiceItem_closure(action)); }, _viewInvoiceList0(invoiceListState, action) { return invoiceListState.rebuild$1(new A._viewInvoiceList_closure()); }, _filterInvoicesByCustom1(invoiceListState, action) { var t1 = invoiceListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByCustom1_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByCustom1_closure0(action)); }, _filterInvoicesByCustom2(invoiceListState, action) { var t1 = invoiceListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByCustom2_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByCustom2_closure0(action)); }, _filterInvoicesByCustom3(invoiceListState, action) { var t1 = invoiceListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByCustom3_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByCustom3_closure0(action)); }, _filterInvoicesByCustom4(invoiceListState, action) { var t1 = invoiceListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByCustom4_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByCustom4_closure0(action)); }, _filterInvoicesByState(invoiceListState, action) { var t1 = invoiceListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByState_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByState_closure0(action)); }, _filterInvoicesByStatus(invoiceListState, action) { var t1 = invoiceListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return invoiceListState.rebuild$1(new A._filterInvoicesByStatus_closure(action)); else return invoiceListState.rebuild$1(new A._filterInvoicesByStatus_closure0(action)); }, _filterInvoices(invoiceListState, action) { return invoiceListState.rebuild$1(new A._filterInvoices_closure(action, invoiceListState)); }, _sortInvoices(invoiceListState, action) { return invoiceListState.rebuild$1(new A._sortInvoices_closure(action)); }, _startListMultiselect7(invoiceListState, action) { return invoiceListState.rebuild$1(new A._startListMultiselect_closure21()); }, _addToListMultiselect7(invoiceListState, action) { return invoiceListState.rebuild$1(new A._addToListMultiselect_closure21(action)); }, _removeFromListMultiselect7(invoiceListState, action) { return invoiceListState.rebuild$1(new A._removeFromListMultiselect_closure21(action)); }, _clearListMultiselect7(invoiceListState, action) { return invoiceListState.rebuild$1(new A._clearListMultiselect_closure21()); }, _markInvoicesSentSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._markInvoicesSentSuccess_closure(action)); }, _markInvoicesPaidSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._markInvoicesPaidSuccess_closure(action)); }, _cancelInvoicesSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._cancelInvoicesSuccess_closure(action)); }, _archiveInvoiceSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._archiveInvoiceSuccess_closure(action)); }, _deleteInvoiceSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._deleteInvoiceSuccess_closure(action)); }, _emailInvoiceSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._emailInvoiceSuccess_closure(action)); }, _restoreInvoiceSuccess(invoiceState, action) { return invoiceState.rebuild$1(new A._restoreInvoiceSuccess_closure(action)); }, _addInvoice(invoiceState, action) { return invoiceState.rebuild$1(new A._addInvoice_closure(action)); }, _updateInvoice(invoiceState, action) { return invoiceState.rebuild$1(new A._updateInvoice_closure(action, action.get$invoice())); }, _setLoadedInvoices(invoiceState, action) { return invoiceState.loadInvoices$1(action.invoices); }, _setLoadedCompany6(invoiceState, action) { return invoiceState.loadInvoices$1(action.userCompany.company.invoices); }, invoiceUIReducer_closure: function invoiceUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure167: function forceSelectedReducer_closure167() { }, forceSelectedReducer_closure168: function forceSelectedReducer_closure168() { }, forceSelectedReducer_closure169: function forceSelectedReducer_closure169() { }, forceSelectedReducer_closure170: function forceSelectedReducer_closure170() { }, forceSelectedReducer_closure171: function forceSelectedReducer_closure171() { }, forceSelectedReducer_closure172: function forceSelectedReducer_closure172() { }, forceSelectedReducer_closure173: function forceSelectedReducer_closure173() { }, forceSelectedReducer_closure174: function forceSelectedReducer_closure174() { }, tabIndexReducer_closure21: function tabIndexReducer_closure21() { }, tabIndexReducer_closure22: function tabIndexReducer_closure22() { }, historyActivityIdReducer_closure3: function historyActivityIdReducer_closure3() { }, editingItemIndexReducer_closure1: function editingItemIndexReducer_closure1() { }, editingItemIndexReducer_closure2: function editingItemIndexReducer_closure2() { }, selectedIdReducer_closure335: function selectedIdReducer_closure335() { }, selectedIdReducer_closure336: function selectedIdReducer_closure336() { }, selectedIdReducer_closure337: function selectedIdReducer_closure337() { }, selectedIdReducer_closure338: function selectedIdReducer_closure338() { }, selectedIdReducer_closure339: function selectedIdReducer_closure339() { }, selectedIdReducer_closure340: function selectedIdReducer_closure340() { }, selectedIdReducer_closure341: function selectedIdReducer_closure341() { }, selectedIdReducer_closure342: function selectedIdReducer_closure342() { }, selectedIdReducer_closure343: function selectedIdReducer_closure343() { }, selectedIdReducer_closure344: function selectedIdReducer_closure344() { }, selectedIdReducer_closure345: function selectedIdReducer_closure345() { }, selectedIdReducer_closure346: function selectedIdReducer_closure346() { }, selectedIdReducer_closure347: function selectedIdReducer_closure347() { }, selectedIdReducer_closure348: function selectedIdReducer_closure348() { }, selectedIdReducer_closure349: function selectedIdReducer_closure349() { }, selectedIdReducer_closure350: function selectedIdReducer_closure350() { }, selectedIdReducer_closure351: function selectedIdReducer_closure351() { }, selectedIdReducer_closure352: function selectedIdReducer_closure352() { }, selectedIdReducer_closure353: function selectedIdReducer_closure353() { }, editingReducer_closure114: function editingReducer_closure114() { }, editingReducer__closure51: function editingReducer__closure51() { }, editingReducer_closure115: function editingReducer_closure115() { }, editingReducer__closure50: function editingReducer__closure50() { }, editingReducer_closure116: function editingReducer_closure116() { }, editingReducer_closure117: function editingReducer_closure117() { }, editingReducer__closure49: function editingReducer__closure49() { }, editingReducer_closure118: function editingReducer_closure118() { }, editingReducer__closure48: function editingReducer__closure48() { }, editingReducer_closure119: function editingReducer_closure119() { }, editingReducer__closure47: function editingReducer__closure47(t0) { this.client = t0; }, editingReducer___closure3: function editingReducer___closure3() { }, editingReducer_closure120: function editingReducer_closure120() { }, editingReducer_closure121: function editingReducer_closure121() { }, editingReducer_closure122: function editingReducer_closure122() { }, editingReducer_closure123: function editingReducer_closure123() { }, editingReducer__closure46: function editingReducer__closure46(t0) { this.action = t0; }, editingReducer_closure124: function editingReducer_closure124() { }, editingReducer__closure45: function editingReducer__closure45(t0) { this.action = t0; }, _addInvoiceItem_closure: function _addInvoiceItem_closure(t0) { this.item = t0; }, _addInvoiceItems_closure: function _addInvoiceItems_closure(t0) { this.action = t0; }, _removeInvoiceItem_closure: function _removeInvoiceItem_closure(t0) { this.action = t0; }, _updateInvoiceItem_closure: function _updateInvoiceItem_closure(t0) { this.action = t0; }, _viewInvoiceList_closure: function _viewInvoiceList_closure() { }, _filterInvoicesByCustom1_closure: function _filterInvoicesByCustom1_closure(t0) { this.action = t0; }, _filterInvoicesByCustom1_closure0: function _filterInvoicesByCustom1_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom2_closure: function _filterInvoicesByCustom2_closure(t0) { this.action = t0; }, _filterInvoicesByCustom2_closure0: function _filterInvoicesByCustom2_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom3_closure: function _filterInvoicesByCustom3_closure(t0) { this.action = t0; }, _filterInvoicesByCustom3_closure0: function _filterInvoicesByCustom3_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom4_closure: function _filterInvoicesByCustom4_closure(t0) { this.action = t0; }, _filterInvoicesByCustom4_closure0: function _filterInvoicesByCustom4_closure0(t0) { this.action = t0; }, _filterInvoicesByState_closure: function _filterInvoicesByState_closure(t0) { this.action = t0; }, _filterInvoicesByState_closure0: function _filterInvoicesByState_closure0(t0) { this.action = t0; }, _filterInvoicesByStatus_closure: function _filterInvoicesByStatus_closure(t0) { this.action = t0; }, _filterInvoicesByStatus_closure0: function _filterInvoicesByStatus_closure0(t0) { this.action = t0; }, _filterInvoices_closure: function _filterInvoices_closure(t0, t1) { this.action = t0; this.invoiceListState = t1; }, _sortInvoices_closure: function _sortInvoices_closure(t0) { this.action = t0; }, _startListMultiselect_closure21: function _startListMultiselect_closure21() { }, _addToListMultiselect_closure21: function _addToListMultiselect_closure21(t0) { this.action = t0; }, _removeFromListMultiselect_closure21: function _removeFromListMultiselect_closure21(t0) { this.action = t0; }, _clearListMultiselect_closure21: function _clearListMultiselect_closure21() { }, _markInvoicesSentSuccess_closure: function _markInvoicesSentSuccess_closure(t0) { this.action = t0; }, _markInvoicesPaidSuccess_closure: function _markInvoicesPaidSuccess_closure(t0) { this.action = t0; }, _cancelInvoicesSuccess_closure: function _cancelInvoicesSuccess_closure(t0) { this.action = t0; }, _archiveInvoiceSuccess_closure: function _archiveInvoiceSuccess_closure(t0) { this.action = t0; }, _deleteInvoiceSuccess_closure: function _deleteInvoiceSuccess_closure(t0) { this.action = t0; }, _emailInvoiceSuccess_closure: function _emailInvoiceSuccess_closure(t0) { this.action = t0; }, _restoreInvoiceSuccess_closure: function _restoreInvoiceSuccess_closure(t0) { this.action = t0; }, _addInvoice_closure: function _addInvoice_closure(t0) { this.action = t0; }, _addInvoice__closure: function _addInvoice__closure() { }, _updateInvoice_closure: function _updateInvoice_closure(t0, t1) { this.action = t0; this.invoice = t1; }, _updateInvoice__closure: function _updateInvoice__closure() { }, invoiceQuoteSelector(invoice, quoteMap) { var t1 = {}; t1.invoiceQuote = null; quoteMap._map$_map.forEach$1(0, new A.invoiceQuoteSelector_closure(t1, invoice)); return t1.invoiceQuote; }, invoiceContactSelector(invoice, client) { var t1 = {}, t2 = invoice.invitations._list, t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String*>"), contactIds = A.List_List$of(new A.MappedListIterable(t2, new A.invoiceContactSelector_closure(), t3), true, t3._eval$1("ListIterable.E")); t1.contactIds = contactIds; if (B.JSArray_methods.contains$1(contactIds, client.get$primaryContact().id)) t1.contactIds = A._setArrayType([client.get$primaryContact().id], type$.JSArray_legacy_String); return B.JSArray_methods.firstWhere$2$orElse(client.contacts._list, new A.invoiceContactSelector_closure0(t1), null); }, dropdownInvoiceSelector(invoiceMap, clientMap, vendorMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix) { var t1 = invoiceList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownInvoiceSelector_closure(invoiceMap, excludedIds, clientId, clientMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownInvoiceSelector_closure0(invoiceMap, clientMap, vendorMap, recurringPrefix, userMap)); return list; }, filteredInvoicesSelector(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, paymentMap, invoiceListState, userMap, recurringPrefix) { var t1, t2, list, filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, invoicePaymentMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_List_legacy_String); if (filterEntityType === B.EntityType_payment) paymentMap._map$_map.forEach$1(0, new A.filteredInvoicesSelector_closure(invoicePaymentMap)); t1 = invoiceList._list; t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); list = A.List_List$of(new A.WhereIterable(t1, new A.filteredInvoicesSelector_closure0(invoiceMap, clientMap, selectionState, filterEntityType, filterEntityId, invoicePaymentMap, invoiceListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredInvoicesSelector_closure1(invoiceMap, invoiceListState, clientMap, vendorMap, userMap, recurringPrefix)); return list; }, invoiceStatsForClient(clientId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.invoiceStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForDesign(designId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.invoiceStatsForDesign_closure(t1, designId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForSubscription(subscriptionId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.invoiceStatsForSubscription_closure(t1, subscriptionId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForProject(projectId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.invoiceStatsForProject_closure(t1, projectId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForUser(userId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.invoiceStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, precisionForInvoice(state, invoice) { var currency, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, client = t1._list[t2].clientState.$get$1(0, invoice.clientId); t2 = state.staticState.currencyMap; t1 = client.settings.currencyId; currency = t2._map$_map.$index(0, t1); t1 = currency == null ? null : currency.precision; return t1 == null ? 2 : t1; }, hasInvoiceChanges(invoice, invoiceMap) { var t1; if (invoice.get$isNew()) t1 = invoice.isChanged; else { t1 = invoice.id; t1 = !invoice.$eq(0, invoiceMap._map$_map.$index(0, t1)); } return t1; }, memoizedInvoiceQuoteSelector_closure: function memoizedInvoiceQuoteSelector_closure() { }, invoiceQuoteSelector_closure: function invoiceQuoteSelector_closure(t0, t1) { this._box_0 = t0; this.invoice = t1; }, invoiceContactSelector_closure: function invoiceContactSelector_closure() { }, invoiceContactSelector_closure0: function invoiceContactSelector_closure0(t0) { this._box_0 = t0; }, memoizedDropdownInvoiceList_closure: function memoizedDropdownInvoiceList_closure() { }, dropdownInvoiceSelector_closure: function dropdownInvoiceSelector_closure(t0, t1, t2, t3) { var _ = this; _.invoiceMap = t0; _.excludedIds = t1; _.clientId = t2; _.clientMap = t3; }, dropdownInvoiceSelector_closure0: function dropdownInvoiceSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.invoiceMap = t0; _.clientMap = t1; _.vendorMap = t2; _.recurringPrefix = t3; _.userMap = t4; }, memoizedFilteredInvoiceList_closure: function memoizedFilteredInvoiceList_closure() { }, filteredInvoicesSelector_closure: function filteredInvoicesSelector_closure(t0) { this.invoicePaymentMap = t0; }, filteredInvoicesSelector__closure0: function filteredInvoicesSelector__closure0(t0, t1) { this.invoicePaymentMap = t0; this.payment = t1; }, filteredInvoicesSelector_closure0: function filteredInvoicesSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.invoiceMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.invoicePaymentMap = t5; _.invoiceListState = t6; }, filteredInvoicesSelector__closure: function filteredInvoicesSelector__closure(t0, t1) { this._box_0 = t0; this.filterEntityId = t1; }, filteredInvoicesSelector_closure1: function filteredInvoicesSelector_closure1(t0, t1, t2, t3, t4, t5) { var _ = this; _.invoiceMap = t0; _.invoiceListState = t1; _.clientMap = t2; _.vendorMap = t3; _.userMap = t4; _.recurringPrefix = t5; }, memoizedInvoiceStatsForClient_closure: function memoizedInvoiceStatsForClient_closure() { }, invoiceStatsForClient_closure: function invoiceStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedInvoiceStatsForDesign_closure: function memoizedInvoiceStatsForDesign_closure() { }, invoiceStatsForDesign_closure: function invoiceStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedInvoiceStatsForSubscription_closure: function memoizedInvoiceStatsForSubscription_closure() { }, invoiceStatsForSubscription_closure: function invoiceStatsForSubscription_closure(t0, t1) { this._box_0 = t0; this.subscriptionId = t1; }, memoizedInvoiceStatsForProject_closure: function memoizedInvoiceStatsForProject_closure() { }, invoiceStatsForProject_closure: function invoiceStatsForProject_closure(t0, t1) { this._box_0 = t0; this.projectId = t1; }, memoizedInvoiceStatsForUser_closure: function memoizedInvoiceStatsForUser_closure() { }, invoiceStatsForUser_closure: function invoiceStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$InvoiceState$_(list, map) { var _s12_ = "InvoiceState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$InvoiceState(map, list); }, _$InvoiceUIState$_(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("InvoiceUIState", "listUIState")); return new A._$InvoiceUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, InvoiceState: function InvoiceState() { }, InvoiceState_loadInvoices_closure0: function InvoiceState_loadInvoices_closure0() { }, InvoiceState_loadInvoices_closure1: function InvoiceState_loadInvoices_closure1() { }, InvoiceState_loadInvoices_closure: function InvoiceState_loadInvoices_closure(t0, t1) { this.$this = t0; this.map = t1; }, InvoiceUIState: function InvoiceUIState() { }, _$InvoiceStateSerializer: function _$InvoiceStateSerializer() { }, _$InvoiceUIStateSerializer: function _$InvoiceUIStateSerializer() { }, _$InvoiceState: function _$InvoiceState(t0, t1) { this.map = t0; this.list = t1; this._invoice_state$__hashCode = null; }, InvoiceStateBuilder: function InvoiceStateBuilder() { this._invoice_state$_list = this._invoice_state$_map = this._invoice_state$_$v = null; }, _$InvoiceUIState: function _$InvoiceUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._invoice_state$__hashCode = null; }, InvoiceUIStateBuilder: function InvoiceUIStateBuilder() { var _ = this; _._invoice_state$_cancelCompleter = _._invoice_state$_saveCompleter = _._invoice_state$_tabIndex = _._invoice_state$_forceSelected = _._invoice_state$_selectedId = _._invoice_state$_listUIState = _._invoice_state$_historyActivityId = _._invoice_state$_editingItemIndex = _._invoice_state$_editing = _._invoice_state$_$v = null; }, _InvoiceUIState_Object_EntityUIState: function _InvoiceUIState_Object_EntityUIState() { }, handlePaymentAction(context, payments, action) { var store, t2, t3, company, paymentIds, payment, message, t4, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", _box_0 = {}, t1 = J.getInterceptor$asx(payments); if (t1.get$isEmpty(payments)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A._lateReadCheck(store.__Store__state, _s6_); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = t3._list[t2].userCompany.company; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); paymentIds = t1.map$1$1(payments, new A.handlePaymentAction_closure(), type$.legacy_String).toList$0(0); payment = type$.legacy_PaymentEntity._as(t1.get$first(payments)); _box_0.payment = payment; switch (action) { case B.EntityAction_edit: A.editEntity(_null, payment, true, _null); break; case B.EntityAction_applyPayment: A.viewEntity(false, payment, _null, false); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.handlePaymentAction_closure0(_box_0)); break; case B.EntityAction_refundPayment: A.viewEntity(false, payment, _null, false); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.handlePaymentAction_closure1(_box_0, store, company)); break; case B.EntityAction_sendEmail: t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "emailed_payment"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.EmailPaymentRequest(t1, paymentIds)); break; case B.EntityAction_restore: if (paymentIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_payments"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(paymentIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_payment"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestorePaymentsRequest(t1, paymentIds)); break; case B.EntityAction_archive: if (paymentIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_payments"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(paymentIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_payment"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchivePaymentsRequest(t1, paymentIds)); break; case B.EntityAction_delete: if (paymentIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_payments"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(paymentIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_payment"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeletePaymentsRequest(t1, paymentIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.paymentUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartPaymentMultiselect()); if (t1.get$isEmpty(payments)) break; for (t1 = t1.get$iterator(payments); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.paymentUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToPaymentMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromPaymentMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([payment], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewPaymentList: function ViewPaymentList() { }, ViewPayment: function ViewPayment(t0) { this.paymentId = t0; }, EditPayment: function EditPayment(t0) { this.payment = t0; }, ViewRefundPayment: function ViewRefundPayment(t0) { this.payment = t0; }, UpdatePayment: function UpdatePayment(t0) { this.payment = t0; }, LoadPayment: function LoadPayment(t0, t1) { this.completer = t0; this.paymentId = t1; }, LoadPayments: function LoadPayments(t0, t1) { this.completer = t0; this.page = t1; }, LoadPaymentRequest: function LoadPaymentRequest() { }, LoadPaymentFailure: function LoadPaymentFailure(t0) { this.error = t0; }, LoadPaymentSuccess: function LoadPaymentSuccess(t0) { this.payment = t0; }, LoadPaymentsRequest: function LoadPaymentsRequest() { }, LoadPaymentsFailure: function LoadPaymentsFailure(t0) { this.error = t0; }, LoadPaymentsSuccess: function LoadPaymentsSuccess(t0) { this.payments = t0; }, SavePaymentRequest: function SavePaymentRequest(t0, t1) { this.completer = t0; this.payment = t1; }, SavePaymentSuccess: function SavePaymentSuccess(t0) { this.payment = t0; }, AddPaymentSuccess: function AddPaymentSuccess(t0) { this.payment = t0; }, SavePaymentFailure: function SavePaymentFailure() { }, RefundPaymentRequest: function RefundPaymentRequest(t0, t1) { this.completer = t0; this.payment = t1; }, RefundPaymentSuccess: function RefundPaymentSuccess(t0) { this.payment = t0; }, RefundPaymentFailure: function RefundPaymentFailure() { }, ArchivePaymentsRequest: function ArchivePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, ArchivePaymentsSuccess: function ArchivePaymentsSuccess(t0) { this.payments = t0; }, ArchivePaymentsFailure: function ArchivePaymentsFailure() { }, DeletePaymentsRequest: function DeletePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, DeletePaymentsSuccess: function DeletePaymentsSuccess(t0) { this.payments = t0; }, DeletePaymentsFailure: function DeletePaymentsFailure() { }, RestorePaymentsRequest: function RestorePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, RestorePaymentsSuccess: function RestorePaymentsSuccess(t0) { this.payments = t0; }, RestorePaymentsFailure: function RestorePaymentsFailure() { }, EmailPaymentRequest: function EmailPaymentRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, EmailPaymentSuccess: function EmailPaymentSuccess() { }, FilterPayments: function FilterPayments(t0) { this.filter = t0; }, SortPayments: function SortPayments(t0) { this.field = t0; }, FilterPaymentsByState: function FilterPaymentsByState(t0) { this.state = t0; }, FilterPaymentsByCustom1: function FilterPaymentsByCustom1(t0) { this.value = t0; }, FilterPaymentsByCustom2: function FilterPaymentsByCustom2(t0) { this.value = t0; }, FilterPaymentsByCustom3: function FilterPaymentsByCustom3(t0) { this.value = t0; }, FilterPaymentsByCustom4: function FilterPaymentsByCustom4(t0) { this.value = t0; }, StartPaymentMultiselect: function StartPaymentMultiselect() { }, AddToPaymentMultiselect: function AddToPaymentMultiselect(t0) { this.entity = t0; }, RemoveFromPaymentMultiselect: function RemoveFromPaymentMultiselect(t0) { this.entity = t0; }, ClearPaymentMultiselect: function ClearPaymentMultiselect() { }, handlePaymentAction_closure: function handlePaymentAction_closure() { }, handlePaymentAction_closure0: function handlePaymentAction_closure0(t0) { this._box_0 = t0; }, handlePaymentAction__closure1: function handlePaymentAction__closure1() { }, handlePaymentAction_closure1: function handlePaymentAction_closure1(t0, t1, t2) { this._box_0 = t0; this.store = t1; this.company = t2; }, handlePaymentAction__closure: function handlePaymentAction__closure(t0) { this._box_0 = t0; }, handlePaymentAction__closure0: function handlePaymentAction__closure0(t0) { this.company = t0; }, _editPayment() { return new A._editPayment_closure(); }, _viewRefundPayment() { return new A._viewRefundPayment_closure(); }, _viewPayment() { return new A._viewPayment_closure(); }, _viewPaymentList() { return new A._viewPaymentList_closure0(); }, _archivePayment(repository) { return new A._archivePayment_closure(repository); }, _deletePayment(repository) { return new A._deletePayment_closure(repository); }, _restorePayment(repository) { return new A._restorePayment_closure(repository); }, _savePayment(repository) { return new A._savePayment_closure(repository); }, _refundPayment(repository) { return new A._refundPayment_closure(repository); }, _emailPayment(repository) { return new A._emailPayment_closure(repository); }, _loadPayment(repository) { return new A._loadPayment_closure(repository); }, _loadPayments(repository) { return new A._loadPayments_closure(repository); }, _editPayment_closure: function _editPayment_closure() { }, _editPayment__closure: function _editPayment__closure() { }, _viewRefundPayment_closure: function _viewRefundPayment_closure() { }, _viewRefundPayment__closure: function _viewRefundPayment__closure() { }, _viewPayment_closure: function _viewPayment_closure() { }, _viewPaymentList_closure0: function _viewPaymentList_closure0() { }, _viewPaymentList__closure: function _viewPaymentList__closure() { }, _archivePayment_closure: function _archivePayment_closure(t0) { this.repository = t0; }, _archivePayment__closure: function _archivePayment__closure(t0) { this.store = t0; }, _archivePayment__closure0: function _archivePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archivePayment__closure1: function _archivePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _deletePayment_closure: function _deletePayment_closure(t0) { this.repository = t0; }, _deletePayment__closure: function _deletePayment__closure(t0) { this.store = t0; }, _deletePayment__closure0: function _deletePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deletePayment__closure1: function _deletePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _restorePayment_closure: function _restorePayment_closure(t0) { this.repository = t0; }, _restorePayment__closure: function _restorePayment__closure(t0) { this.store = t0; }, _restorePayment__closure0: function _restorePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restorePayment__closure1: function _restorePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _savePayment_closure: function _savePayment_closure(t0) { this.repository = t0; }, _savePayment__closure: function _savePayment__closure(t0, t1) { this.action = t0; this.store = t1; }, _savePayment__closure0: function _savePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _refundPayment_closure: function _refundPayment_closure(t0) { this.repository = t0; }, _refundPayment__closure: function _refundPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _refundPayment__closure0: function _refundPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailPayment_closure: function _emailPayment_closure(t0) { this.repository = t0; }, _emailPayment__closure: function _emailPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailPayment__closure0: function _emailPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPayment_closure: function _loadPayment_closure(t0) { this.repository = t0; }, _loadPayment__closure: function _loadPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPayment__closure0: function _loadPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPayments_closure: function _loadPayments_closure(t0) { this.repository = t0; }, _loadPayments__closure: function _loadPayments__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadPayments__closure0: function _loadPayments__closure0(t0, t1) { this.store = t0; this.action = t1; }, paymentUIReducer(state, action) { var t1; state.toString; t1 = new A.PaymentUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._payment_state$_$v = state; new A.paymentUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing6(payment, action) { return A.PaymentEntity_PaymentEntity(null, null, null); }, _updateEditing7(payment, action) { return action.get$payment(); }, _viewPaymentList0(paymentListState, action) { return paymentListState.rebuild$1(new A._viewPaymentList_closure()); }, _filterPaymentsByCustom1(paymentListState, action) { var t1 = paymentListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentListState.rebuild$1(new A._filterPaymentsByCustom1_closure(action)); else return paymentListState.rebuild$1(new A._filterPaymentsByCustom1_closure0(action)); }, _filterPaymentsByCustom2(paymentListState, action) { var t1 = paymentListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentListState.rebuild$1(new A._filterPaymentsByCustom2_closure(action)); else return paymentListState.rebuild$1(new A._filterPaymentsByCustom2_closure0(action)); }, _filterPaymentsByCustom3(paymentListState, action) { var t1 = paymentListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentListState.rebuild$1(new A._filterPaymentsByCustom3_closure(action)); else return paymentListState.rebuild$1(new A._filterPaymentsByCustom3_closure0(action)); }, _filterPaymentsByCustom4(paymentListState, action) { var t1 = paymentListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentListState.rebuild$1(new A._filterPaymentsByCustom4_closure(action)); else return paymentListState.rebuild$1(new A._filterPaymentsByCustom4_closure0(action)); }, _filterPaymentsByState(paymentListState, action) { var t1 = paymentListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentListState.rebuild$1(new A._filterPaymentsByState_closure(action)); else return paymentListState.rebuild$1(new A._filterPaymentsByState_closure0(action)); }, _filterPayments(paymentListState, action) { return paymentListState.rebuild$1(new A._filterPayments_closure(action, paymentListState)); }, _sortPayments(paymentListState, action) { return paymentListState.rebuild$1(new A._sortPayments_closure(action)); }, _startListMultiselect8(paymentListState, action) { return paymentListState.rebuild$1(new A._startListMultiselect_closure0()); }, _addToListMultiselect8(paymentListState, action) { return paymentListState.rebuild$1(new A._addToListMultiselect_closure0(action)); }, _removeFromListMultiselect8(paymentListState, action) { return paymentListState.rebuild$1(new A._removeFromListMultiselect_closure0(action)); }, _clearListMultiselect8(paymentListState, action) { return paymentListState.rebuild$1(new A._clearListMultiselect_closure0()); }, _archivePaymentSuccess(paymentState, action) { return paymentState.rebuild$1(new A._archivePaymentSuccess_closure(action)); }, _deletePaymentSuccess(paymentState, action) { return paymentState.rebuild$1(new A._deletePaymentSuccess_closure(action)); }, _restorePaymentSuccess(paymentState, action) { return paymentState.rebuild$1(new A._restorePaymentSuccess_closure(action)); }, _addPayment(paymentState, action) { return paymentState.rebuild$1(new A._addPayment_closure(action)); }, _updatePayment(paymentState, action) { return paymentState.rebuild$1(new A._updatePayment_closure(action)); }, _setLoadedPayment(paymentState, action) { return paymentState.rebuild$1(new A._setLoadedPayment_closure(action)); }, _setLoadedPayments(paymentState, action) { return paymentState.loadPayments$1(action.payments); }, _setLoadedCompany7(paymentState, action) { return paymentState.loadPayments$1(action.userCompany.company.payments); }, paymentUIReducer_closure: function paymentUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure7: function forceSelectedReducer_closure7() { }, forceSelectedReducer_closure8: function forceSelectedReducer_closure8() { }, forceSelectedReducer_closure9: function forceSelectedReducer_closure9() { }, forceSelectedReducer_closure10: function forceSelectedReducer_closure10() { }, forceSelectedReducer_closure11: function forceSelectedReducer_closure11() { }, forceSelectedReducer_closure12: function forceSelectedReducer_closure12() { }, forceSelectedReducer_closure13: function forceSelectedReducer_closure13() { }, forceSelectedReducer_closure14: function forceSelectedReducer_closure14() { }, tabIndexReducer_closure1: function tabIndexReducer_closure1() { }, tabIndexReducer_closure2: function tabIndexReducer_closure2() { }, selectedIdReducer_closure18: function selectedIdReducer_closure18() { }, selectedIdReducer_closure19: function selectedIdReducer_closure19() { }, selectedIdReducer_closure20: function selectedIdReducer_closure20() { }, selectedIdReducer_closure21: function selectedIdReducer_closure21() { }, selectedIdReducer_closure22: function selectedIdReducer_closure22() { }, selectedIdReducer_closure23: function selectedIdReducer_closure23() { }, selectedIdReducer_closure24: function selectedIdReducer_closure24() { }, selectedIdReducer_closure25: function selectedIdReducer_closure25() { }, selectedIdReducer_closure26: function selectedIdReducer_closure26() { }, selectedIdReducer_closure27: function selectedIdReducer_closure27() { }, selectedIdReducer_closure28: function selectedIdReducer_closure28() { }, selectedIdReducer_closure29: function selectedIdReducer_closure29() { }, selectedIdReducer_closure30: function selectedIdReducer_closure30() { }, selectedIdReducer_closure31: function selectedIdReducer_closure31() { }, selectedIdReducer_closure32: function selectedIdReducer_closure32() { }, selectedIdReducer_closure33: function selectedIdReducer_closure33() { }, editingReducer_closure10: function editingReducer_closure10() { }, editingReducer_closure11: function editingReducer_closure11() { }, editingReducer_closure12: function editingReducer_closure12() { }, editingReducer_closure13: function editingReducer_closure13() { }, editingReducer__closure6: function editingReducer__closure6() { }, _viewPaymentList_closure: function _viewPaymentList_closure() { }, _filterPaymentsByCustom1_closure: function _filterPaymentsByCustom1_closure(t0) { this.action = t0; }, _filterPaymentsByCustom1_closure0: function _filterPaymentsByCustom1_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom2_closure: function _filterPaymentsByCustom2_closure(t0) { this.action = t0; }, _filterPaymentsByCustom2_closure0: function _filterPaymentsByCustom2_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom3_closure: function _filterPaymentsByCustom3_closure(t0) { this.action = t0; }, _filterPaymentsByCustom3_closure0: function _filterPaymentsByCustom3_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom4_closure: function _filterPaymentsByCustom4_closure(t0) { this.action = t0; }, _filterPaymentsByCustom4_closure0: function _filterPaymentsByCustom4_closure0(t0) { this.action = t0; }, _filterPaymentsByState_closure: function _filterPaymentsByState_closure(t0) { this.action = t0; }, _filterPaymentsByState_closure0: function _filterPaymentsByState_closure0(t0) { this.action = t0; }, _filterPayments_closure: function _filterPayments_closure(t0, t1) { this.action = t0; this.paymentListState = t1; }, _sortPayments_closure: function _sortPayments_closure(t0) { this.action = t0; }, _startListMultiselect_closure0: function _startListMultiselect_closure0() { }, _addToListMultiselect_closure0: function _addToListMultiselect_closure0(t0) { this.action = t0; }, _removeFromListMultiselect_closure0: function _removeFromListMultiselect_closure0(t0) { this.action = t0; }, _clearListMultiselect_closure0: function _clearListMultiselect_closure0() { }, _archivePaymentSuccess_closure: function _archivePaymentSuccess_closure(t0) { this.action = t0; }, _deletePaymentSuccess_closure: function _deletePaymentSuccess_closure(t0) { this.action = t0; }, _restorePaymentSuccess_closure: function _restorePaymentSuccess_closure(t0) { this.action = t0; }, _addPayment_closure: function _addPayment_closure(t0) { this.action = t0; }, _updatePayment_closure: function _updatePayment_closure(t0) { this.action = t0; }, _setLoadedPayment_closure: function _setLoadedPayment_closure(t0) { this.action = t0; }, paymentsByInvoiceSelector(invoiceId, paymentMap, paymentList) { var t1 = paymentList._list; t1 = new A.MappedListIterable(t1, new A.paymentsByInvoiceSelector_closure(paymentMap), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>")).super$Iterable$where(0, new A.paymentsByInvoiceSelector_closure0(invoiceId)); return A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, paymentsByCreditSelector(creditId, paymentMap, paymentList) { var t1 = paymentList._list; t1 = new A.MappedListIterable(t1, new A.paymentsByCreditSelector_closure(paymentMap), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>")).super$Iterable$where(0, new A.paymentsByCreditSelector_closure0(creditId)); return A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, filteredPaymentsSelector(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentTypeMap, paymentListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = paymentList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredPaymentsSelector_closure(paymentMap, paymentListState, clientMap, selectionState, filterEntityType, filterEntityId), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredPaymentsSelector_closure0(paymentMap, paymentListState, invoiceMap, clientMap, userMap, paymentTypeMap)); return list; }, paymentStatsForClient(clientId, paymentMap, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; paymentMap._map$_map.forEach$1(0, new A.paymentStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, memoizedPaymentsByInvoice_closure: function memoizedPaymentsByInvoice_closure() { }, paymentsByInvoiceSelector_closure: function paymentsByInvoiceSelector_closure(t0) { this.paymentMap = t0; }, paymentsByInvoiceSelector_closure0: function paymentsByInvoiceSelector_closure0(t0) { this.invoiceId = t0; }, paymentsByInvoiceSelector__closure: function paymentsByInvoiceSelector__closure() { }, memoizedPaymentsByCredit_closure: function memoizedPaymentsByCredit_closure() { }, paymentsByCreditSelector_closure: function paymentsByCreditSelector_closure(t0) { this.paymentMap = t0; }, paymentsByCreditSelector_closure0: function paymentsByCreditSelector_closure0(t0) { this.creditId = t0; }, paymentsByCreditSelector__closure: function paymentsByCreditSelector__closure() { }, memoizedFilteredPaymentList_closure: function memoizedFilteredPaymentList_closure() { }, filteredPaymentsSelector_closure: function filteredPaymentsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.paymentMap = t0; _.paymentListState = t1; _.clientMap = t2; _.selectionState = t3; _.filterEntityType = t4; _.filterEntityId = t5; }, filteredPaymentsSelector__closure: function filteredPaymentsSelector__closure() { }, filteredPaymentsSelector_closure0: function filteredPaymentsSelector_closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.paymentMap = t0; _.paymentListState = t1; _.invoiceMap = t2; _.clientMap = t3; _.userMap = t4; _.paymentTypeMap = t5; }, memoizedPaymentStatsForClient_closure: function memoizedPaymentStatsForClient_closure() { }, paymentStatsForClient_closure: function paymentStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, _$PaymentState$_(list, map) { var _s12_ = "PaymentState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$PaymentState(map, list); }, _$PaymentUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("PaymentUIState", "listUIState")); return new A._$PaymentUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, PaymentState: function PaymentState() { }, PaymentState_loadPayments_closure0: function PaymentState_loadPayments_closure0() { }, PaymentState_loadPayments_closure1: function PaymentState_loadPayments_closure1() { }, PaymentState_loadPayments_closure: function PaymentState_loadPayments_closure(t0, t1) { this.$this = t0; this.map = t1; }, PaymentUIState: function PaymentUIState() { }, _$PaymentStateSerializer: function _$PaymentStateSerializer() { }, _$PaymentUIStateSerializer: function _$PaymentUIStateSerializer() { }, _$PaymentState: function _$PaymentState(t0, t1) { this.map = t0; this.list = t1; this._payment_state$__hashCode = null; }, PaymentStateBuilder: function PaymentStateBuilder() { this._payment_state$_list = this._payment_state$_map = this._payment_state$_$v = null; }, _$PaymentUIState: function _$PaymentUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._payment_state$__hashCode = null; }, PaymentUIStateBuilder: function PaymentUIStateBuilder() { var _ = this; _._payment_state$_cancelCompleter = _._payment_state$_saveCompleter = _._payment_state$_tabIndex = _._payment_state$_forceSelected = _._payment_state$_selectedId = _._payment_state$_listUIState = _._payment_state$_editing = _._payment_state$_$v = null; }, _PaymentUIState_Object_EntityUIState: function _PaymentUIState_Object_EntityUIState() { }, handlePaymentTermAction(context, paymentTerms, action) { var store, t2, paymentTerm, paymentTermIds, message, t3, t4, _s6_ = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(paymentTerms); if (t1.get$isEmpty(paymentTerms)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); paymentTerm = type$.legacy_PaymentTermEntity._as(t1.get$first(paymentTerms)); paymentTermIds = t1.map$1$1(paymentTerms, new A.handlePaymentTermAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(null, paymentTerm, true, null); break; case B.EntityAction_restore: if (paymentTermIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_payment_terms"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(paymentTermIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_payment_term"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestorePaymentTermsRequest(t1, paymentTermIds)); break; case B.EntityAction_archive: if (paymentTermIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_payment_terms"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(paymentTermIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_payment_term"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchivePaymentTermsRequest(t1, paymentTermIds)); break; case B.EntityAction_delete: if (paymentTermIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_payment_terms"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(paymentTermIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_payment_term"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeletePaymentTermsRequest(t1, paymentTermIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.paymentTermUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartPaymentTermMultiselect()); if (t1.get$isEmpty(paymentTerms)) break; for (t1 = t1.get$iterator(paymentTerms); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.paymentTermUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToPaymentTermMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromPaymentTermMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([paymentTerm], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewPaymentTermList: function ViewPaymentTermList() { }, ViewPaymentTerm: function ViewPaymentTerm(t0) { this.paymentTermId = t0; }, EditPaymentTerm: function EditPaymentTerm(t0) { this.paymentTerm = t0; }, UpdatePaymentTerm: function UpdatePaymentTerm(t0) { this.paymentTerm = t0; }, LoadPaymentTermRequest: function LoadPaymentTermRequest() { }, LoadPaymentTermFailure: function LoadPaymentTermFailure(t0) { this.error = t0; }, LoadPaymentTermSuccess: function LoadPaymentTermSuccess(t0) { this.paymentTerm = t0; }, LoadPaymentTermsRequest: function LoadPaymentTermsRequest() { }, LoadPaymentTermsFailure: function LoadPaymentTermsFailure(t0) { this.error = t0; }, LoadPaymentTermsSuccess: function LoadPaymentTermsSuccess(t0) { this.paymentTerms = t0; }, SavePaymentTermRequest: function SavePaymentTermRequest(t0, t1) { this.completer = t0; this.paymentTerm = t1; }, SavePaymentTermSuccess: function SavePaymentTermSuccess(t0) { this.paymentTerm = t0; }, AddPaymentTermSuccess: function AddPaymentTermSuccess(t0) { this.paymentTerm = t0; }, SavePaymentTermFailure: function SavePaymentTermFailure() { }, ArchivePaymentTermsRequest: function ArchivePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, ArchivePaymentTermsSuccess: function ArchivePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, ArchivePaymentTermsFailure: function ArchivePaymentTermsFailure() { }, DeletePaymentTermsRequest: function DeletePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, DeletePaymentTermsSuccess: function DeletePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, DeletePaymentTermsFailure: function DeletePaymentTermsFailure() { }, RestorePaymentTermsRequest: function RestorePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, RestorePaymentTermsSuccess: function RestorePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, RestorePaymentTermsFailure: function RestorePaymentTermsFailure() { }, FilterPaymentTerms: function FilterPaymentTerms(t0) { this.filter = t0; }, SortPaymentTerms: function SortPaymentTerms(t0) { this.field = t0; }, FilterPaymentTermsByState: function FilterPaymentTermsByState(t0) { this.state = t0; }, FilterPaymentTermsByCustom1: function FilterPaymentTermsByCustom1(t0) { this.value = t0; }, FilterPaymentTermsByCustom2: function FilterPaymentTermsByCustom2(t0) { this.value = t0; }, FilterPaymentTermsByCustom3: function FilterPaymentTermsByCustom3(t0) { this.value = t0; }, FilterPaymentTermsByCustom4: function FilterPaymentTermsByCustom4(t0) { this.value = t0; }, handlePaymentTermAction_closure: function handlePaymentTermAction_closure() { }, StartPaymentTermMultiselect: function StartPaymentTermMultiselect() { }, AddToPaymentTermMultiselect: function AddToPaymentTermMultiselect(t0) { this.entity = t0; }, RemoveFromPaymentTermMultiselect: function RemoveFromPaymentTermMultiselect(t0) { this.entity = t0; }, ClearPaymentTermMultiselect: function ClearPaymentTermMultiselect() { }, _editPaymentTerm() { return new A._editPaymentTerm_closure(); }, _viewPaymentTerm() { return new A._viewPaymentTerm_closure(); }, _viewPaymentTermList() { return new A._viewPaymentTermList_closure0(); }, _archivePaymentTerm(repository) { return new A._archivePaymentTerm_closure(repository); }, _deletePaymentTerm(repository) { return new A._deletePaymentTerm_closure(repository); }, _restorePaymentTerm(repository) { return new A._restorePaymentTerm_closure(repository); }, _savePaymentTerm(repository) { return new A._savePaymentTerm_closure(repository); }, _loadPaymentTerm(repository) { return new A._loadPaymentTerm_closure(repository); }, _loadPaymentTerms(repository) { return new A._loadPaymentTerms_closure(repository); }, _editPaymentTerm_closure: function _editPaymentTerm_closure() { }, _viewPaymentTerm_closure: function _viewPaymentTerm_closure() { }, _viewPaymentTermList_closure0: function _viewPaymentTermList_closure0() { }, _viewPaymentTermList__closure: function _viewPaymentTermList__closure() { }, _archivePaymentTerm_closure: function _archivePaymentTerm_closure(t0) { this.repository = t0; }, _archivePaymentTerm__closure: function _archivePaymentTerm__closure(t0) { this.store = t0; }, _archivePaymentTerm__closure0: function _archivePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archivePaymentTerm__closure1: function _archivePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _deletePaymentTerm_closure: function _deletePaymentTerm_closure(t0) { this.repository = t0; }, _deletePaymentTerm__closure: function _deletePaymentTerm__closure(t0) { this.store = t0; }, _deletePaymentTerm__closure0: function _deletePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deletePaymentTerm__closure1: function _deletePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _restorePaymentTerm_closure: function _restorePaymentTerm_closure(t0) { this.repository = t0; }, _restorePaymentTerm__closure: function _restorePaymentTerm__closure(t0) { this.store = t0; }, _restorePaymentTerm__closure0: function _restorePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restorePaymentTerm__closure1: function _restorePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _savePaymentTerm_closure: function _savePaymentTerm_closure(t0) { this.repository = t0; }, _savePaymentTerm__closure: function _savePaymentTerm__closure(t0, t1) { this.action = t0; this.store = t1; }, _savePaymentTerm__closure0: function _savePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerm_closure: function _loadPaymentTerm_closure(t0) { this.repository = t0; }, _loadPaymentTerm__closure: function _loadPaymentTerm__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerm__closure0: function _loadPaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerms_closure: function _loadPaymentTerms_closure(t0) { this.repository = t0; }, _loadPaymentTerms__closure: function _loadPaymentTerms__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerms__closure0: function _loadPaymentTerms__closure0(t0, t1) { this.store = t0; this.action = t1; }, paymentTermUIReducer(state, action) { var t1; state.toString; t1 = new A.PaymentTermUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._payment_term_state$_$v = state; new A.paymentTermUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing7(paymentTerm, action) { return A.PaymentTermEntity_PaymentTermEntity(null, null); }, _updateEditing8(paymentTerm, action) { return action.get$paymentTerm(); }, _viewPaymentTermList0(paymentTermListState, action) { return paymentTermListState.rebuild$1(new A._viewPaymentTermList_closure()); }, _filterPaymentTermsByCustom1(paymentTermListState, action) { var t1 = paymentTermListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentTermListState.rebuild$1(new A._filterPaymentTermsByCustom1_closure(action)); else return paymentTermListState.rebuild$1(new A._filterPaymentTermsByCustom1_closure0(action)); }, _filterPaymentTermsByCustom2(paymentTermListState, action) { var t1 = paymentTermListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentTermListState.rebuild$1(new A._filterPaymentTermsByCustom2_closure(action)); else return paymentTermListState.rebuild$1(new A._filterPaymentTermsByCustom2_closure0(action)); }, _filterPaymentTermsByState(paymentTermListState, action) { var t1 = paymentTermListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return paymentTermListState.rebuild$1(new A._filterPaymentTermsByState_closure(action)); else return paymentTermListState.rebuild$1(new A._filterPaymentTermsByState_closure0(action)); }, _filterPaymentTerms(paymentTermListState, action) { return paymentTermListState.rebuild$1(new A._filterPaymentTerms_closure(action, paymentTermListState)); }, _sortPaymentTerms(paymentTermListState, action) { return paymentTermListState.rebuild$1(new A._sortPaymentTerms_closure(action)); }, _startListMultiselect9(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure12()); }, _addToListMultiselect9(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure12(action)); }, _removeFromListMultiselect9(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure12(action)); }, _clearListMultiselect9(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure12()); }, _archivePaymentTermSuccess(paymentTermState, action) { return paymentTermState.rebuild$1(new A._archivePaymentTermSuccess_closure(action)); }, _deletePaymentTermSuccess(paymentTermState, action) { return paymentTermState.rebuild$1(new A._deletePaymentTermSuccess_closure(action)); }, _restorePaymentTermSuccess(paymentTermState, action) { return paymentTermState.rebuild$1(new A._restorePaymentTermSuccess_closure(action)); }, _addPaymentTerm(paymentTermState, action) { return paymentTermState.rebuild$1(new A._addPaymentTerm_closure(action)); }, _updatePaymentTerm(paymentTermState, action) { return paymentTermState.rebuild$1(new A._updatePaymentTerm_closure(action)); }, _setLoadedPaymentTerm(paymentTermState, action) { return paymentTermState.rebuild$1(new A._setLoadedPaymentTerm_closure(action)); }, _setLoadedPaymentTerms(paymentTermState, action) { return paymentTermState.loadPaymentTerms$1(action.paymentTerms); }, _setLoadedCompany8(paymentTermState, action) { var state = paymentTermState.rebuild$1(new A._setLoadedCompany_closure7(action)); return state.rebuild$1(new A._setLoadedCompany_closure8(state)); }, paymentTermUIReducer_closure: function paymentTermUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure95: function forceSelectedReducer_closure95() { }, forceSelectedReducer_closure96: function forceSelectedReducer_closure96() { }, forceSelectedReducer_closure97: function forceSelectedReducer_closure97() { }, forceSelectedReducer_closure98: function forceSelectedReducer_closure98() { }, forceSelectedReducer_closure99: function forceSelectedReducer_closure99() { }, forceSelectedReducer_closure100: function forceSelectedReducer_closure100() { }, forceSelectedReducer_closure101: function forceSelectedReducer_closure101() { }, forceSelectedReducer_closure102: function forceSelectedReducer_closure102() { }, selectedIdReducer_closure193: function selectedIdReducer_closure193() { }, selectedIdReducer_closure194: function selectedIdReducer_closure194() { }, selectedIdReducer_closure195: function selectedIdReducer_closure195() { }, selectedIdReducer_closure196: function selectedIdReducer_closure196() { }, selectedIdReducer_closure197: function selectedIdReducer_closure197() { }, selectedIdReducer_closure198: function selectedIdReducer_closure198() { }, selectedIdReducer_closure199: function selectedIdReducer_closure199() { }, selectedIdReducer_closure200: function selectedIdReducer_closure200() { }, selectedIdReducer_closure201: function selectedIdReducer_closure201() { }, selectedIdReducer_closure202: function selectedIdReducer_closure202() { }, selectedIdReducer_closure203: function selectedIdReducer_closure203() { }, selectedIdReducer_closure204: function selectedIdReducer_closure204() { }, selectedIdReducer_closure205: function selectedIdReducer_closure205() { }, selectedIdReducer_closure206: function selectedIdReducer_closure206() { }, editingReducer_closure64: function editingReducer_closure64() { }, editingReducer_closure65: function editingReducer_closure65() { }, editingReducer_closure66: function editingReducer_closure66() { }, editingReducer_closure67: function editingReducer_closure67() { }, editingReducer__closure24: function editingReducer__closure24() { }, _viewPaymentTermList_closure: function _viewPaymentTermList_closure() { }, _filterPaymentTermsByCustom1_closure: function _filterPaymentTermsByCustom1_closure(t0) { this.action = t0; }, _filterPaymentTermsByCustom1_closure0: function _filterPaymentTermsByCustom1_closure0(t0) { this.action = t0; }, _filterPaymentTermsByCustom2_closure: function _filterPaymentTermsByCustom2_closure(t0) { this.action = t0; }, _filterPaymentTermsByCustom2_closure0: function _filterPaymentTermsByCustom2_closure0(t0) { this.action = t0; }, _filterPaymentTermsByState_closure: function _filterPaymentTermsByState_closure(t0) { this.action = t0; }, _filterPaymentTermsByState_closure0: function _filterPaymentTermsByState_closure0(t0) { this.action = t0; }, _filterPaymentTerms_closure: function _filterPaymentTerms_closure(t0, t1) { this.action = t0; this.paymentTermListState = t1; }, _sortPaymentTerms_closure: function _sortPaymentTerms_closure(t0) { this.action = t0; }, _startListMultiselect_closure12: function _startListMultiselect_closure12() { }, _addToListMultiselect_closure12: function _addToListMultiselect_closure12(t0) { this.action = t0; }, _removeFromListMultiselect_closure12: function _removeFromListMultiselect_closure12(t0) { this.action = t0; }, _clearListMultiselect_closure12: function _clearListMultiselect_closure12() { }, _archivePaymentTermSuccess_closure: function _archivePaymentTermSuccess_closure(t0) { this.action = t0; }, _deletePaymentTermSuccess_closure: function _deletePaymentTermSuccess_closure(t0) { this.action = t0; }, _restorePaymentTermSuccess_closure: function _restorePaymentTermSuccess_closure(t0) { this.action = t0; }, _addPaymentTerm_closure: function _addPaymentTerm_closure(t0) { this.action = t0; }, _updatePaymentTerm_closure: function _updatePaymentTerm_closure(t0) { this.action = t0; }, _setLoadedPaymentTerm_closure: function _setLoadedPaymentTerm_closure(t0) { this.action = t0; }, _setLoadedCompany_closure7: function _setLoadedCompany_closure7(t0) { this.action = t0; }, _setLoadedCompany__closure7: function _setLoadedCompany__closure7() { }, _setLoadedCompany__closure8: function _setLoadedCompany__closure8() { }, _setLoadedCompany_closure8: function _setLoadedCompany_closure8(t0) { this.state = t0; }, dropdownPaymentTermsSelector(paymentTermMap, paymentTermList) { var t1 = paymentTermList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownPaymentTermsSelector_closure(paymentTermMap, A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_bool)), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownPaymentTermsSelector_closure0(paymentTermMap)); return list; }, filteredPaymentTermsSelector(selectionState, paymentTermMap, paymentTermList, paymentTermListState) { var t1 = paymentTermList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredPaymentTermsSelector_closure(paymentTermMap, selectionState, paymentTermListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredPaymentTermsSelector_closure0(paymentTermMap, paymentTermListState)); return list; }, memoizedDropdownPaymentTermList_closure: function memoizedDropdownPaymentTermList_closure() { }, dropdownPaymentTermsSelector_closure: function dropdownPaymentTermsSelector_closure(t0, t1) { this.paymentTermMap = t0; this.numDays = t1; }, dropdownPaymentTermsSelector_closure0: function dropdownPaymentTermsSelector_closure0(t0) { this.paymentTermMap = t0; }, memoizedFilteredPaymentTermList_closure: function memoizedFilteredPaymentTermList_closure() { }, filteredPaymentTermsSelector_closure: function filteredPaymentTermsSelector_closure(t0, t1, t2) { this.paymentTermMap = t0; this.selectionState = t1; this.paymentTermListState = t2; }, filteredPaymentTermsSelector_closure0: function filteredPaymentTermsSelector_closure0(t0, t1) { this.paymentTermMap = t0; this.paymentTermListState = t1; }, _$PaymentTermState$_(list, map) { var _s16_ = "PaymentTermState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "list")); return new A._$PaymentTermState(map, list); }, _$PaymentTermUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("PaymentTermUIState", "listUIState")); return new A._$PaymentTermUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, PaymentTermState: function PaymentTermState() { }, PaymentTermState_loadPaymentTerms_closure0: function PaymentTermState_loadPaymentTerms_closure0() { }, PaymentTermState_loadPaymentTerms_closure1: function PaymentTermState_loadPaymentTerms_closure1() { }, PaymentTermState_loadPaymentTerms_closure: function PaymentTermState_loadPaymentTerms_closure(t0, t1) { this.$this = t0; this.map = t1; }, PaymentTermUIState: function PaymentTermUIState() { }, _$PaymentTermStateSerializer: function _$PaymentTermStateSerializer() { }, _$PaymentTermUIStateSerializer: function _$PaymentTermUIStateSerializer() { }, _$PaymentTermState: function _$PaymentTermState(t0, t1) { this.map = t0; this.list = t1; this._payment_term_state$__hashCode = null; }, PaymentTermStateBuilder: function PaymentTermStateBuilder() { this._payment_term_state$_list = this._payment_term_state$_map = this._payment_term_state$_$v = null; }, _$PaymentTermUIState: function _$PaymentTermUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._payment_term_state$__hashCode = null; }, PaymentTermUIStateBuilder: function PaymentTermUIStateBuilder() { var _ = this; _._payment_term_state$_cancelCompleter = _._payment_term_state$_saveCompleter = _._payment_term_state$_tabIndex = _._payment_term_state$_forceSelected = _._payment_term_state$_selectedId = _._payment_term_state$_listUIState = _._payment_term_state$_editing = _._payment_term_state$_$v = null; }, _PaymentTermUIState_Object_EntityUIState: function _PaymentTermUIState_Object_EntityUIState() { }, handleProductAction(context, products, action) { var store, state, t2, productIds, product, invoice, message, t3, t4, documentIds, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(products); if (t1.get$isEmpty(products)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); productIds = t1.map$1$1(products, new A.handleProductAction_closure(), type$.legacy_String).toList$0(0); product = t1.get$first(products); switch (action) { case B.EntityAction_newInvoice: invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null, _null); A.createEntity(_null, _null, context, invoice.rebuild$1(new A.handleProductAction_closure0(productIds, state, invoice)), false); break; case B.EntityAction_newPurchaseOrder: invoice = A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_purchaseOrder, _null, state, _null, _null); A.createEntity(_null, _null, context, invoice.rebuild$1(new A.handleProductAction_closure1(productIds, state, invoice)), false); break; case B.EntityAction_edit: A.editEntity(_null, product, true, _null); break; case B.EntityAction_clone: type$.legacy_ProductEntity._as(product); A.createEntity(_null, _null, context, product.get$clone(product), false); break; case B.EntityAction_restore: if (productIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_products"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(productIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_product"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreProductsRequest(t1, productIds)); break; case B.EntityAction_archive: if (productIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_products"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(productIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_product"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveProductsRequest(t1, productIds)); break; case B.EntityAction_delete: if (productIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_products"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(productIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_product"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteProductsRequest(t1, productIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.productUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartProductMultiselect()); if (t1.get$isEmpty(products)) break; for (t1 = t1.get$iterator(products); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.productUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToProductMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromProductMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([product], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(products), t3 = type$.legacy_ProductEntity; t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in product_actions"); break; } }, ViewProductList: function ViewProductList() { }, ViewProduct: function ViewProduct(t0) { this.productId = t0; }, EditProduct: function EditProduct(t0) { this.product = t0; }, UpdateProduct: function UpdateProduct(t0) { this.product = t0; }, LoadProductRequest: function LoadProductRequest() { }, LoadProduct: function LoadProduct(t0, t1) { this.completer = t0; this.productId = t1; }, LoadProductSuccess: function LoadProductSuccess(t0) { this.product = t0; }, LoadProductFailure: function LoadProductFailure(t0) { this.error = t0; }, LoadProducts: function LoadProducts(t0, t1) { this.completer = t0; this.page = t1; }, LoadProductsRequest: function LoadProductsRequest() { }, LoadProductsFailure: function LoadProductsFailure(t0) { this.error = t0; }, LoadProductsSuccess: function LoadProductsSuccess(t0) { this.products = t0; }, SaveProductRequest: function SaveProductRequest(t0, t1) { this.completer = t0; this.product = t1; }, SaveProductSuccess: function SaveProductSuccess(t0) { this.product = t0; }, AddProductSuccess: function AddProductSuccess(t0) { this.product = t0; }, SaveProductFailure: function SaveProductFailure() { }, ArchiveProductsRequest: function ArchiveProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, ArchiveProductsSuccess: function ArchiveProductsSuccess(t0) { this.products = t0; }, ArchiveProductsFailure: function ArchiveProductsFailure() { }, DeleteProductsRequest: function DeleteProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, DeleteProductsSuccess: function DeleteProductsSuccess(t0) { this.products = t0; }, DeleteProductsFailure: function DeleteProductsFailure() { }, RestoreProductsRequest: function RestoreProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, RestoreProductsSuccess: function RestoreProductsSuccess(t0) { this.products = t0; }, RestoreProductsFailure: function RestoreProductsFailure() { }, FilterProducts: function FilterProducts(t0) { this.filter = t0; }, SortProducts: function SortProducts(t0) { this.field = t0; }, FilterProductsByState: function FilterProductsByState(t0) { this.state = t0; }, FilterProductsByCustom1: function FilterProductsByCustom1(t0) { this.value = t0; }, FilterProductsByCustom2: function FilterProductsByCustom2(t0) { this.value = t0; }, FilterProductsByCustom3: function FilterProductsByCustom3(t0) { this.value = t0; }, FilterProductsByCustom4: function FilterProductsByCustom4(t0) { this.value = t0; }, handleProductAction_closure: function handleProductAction_closure() { }, handleProductAction_closure0: function handleProductAction_closure0(t0, t1, t2) { this.productIds = t0; this.state = t1; this.invoice = t2; }, handleProductAction__closure0: function handleProductAction__closure0(t0, t1) { this.state = t0; this.invoice = t1; }, handleProductAction_closure1: function handleProductAction_closure1(t0, t1, t2) { this.productIds = t0; this.state = t1; this.invoice = t2; }, handleProductAction__closure: function handleProductAction__closure(t0, t1) { this.state = t0; this.invoice = t1; }, StartProductMultiselect: function StartProductMultiselect() { }, AddToProductMultiselect: function AddToProductMultiselect(t0) { this.entity = t0; }, RemoveFromProductMultiselect: function RemoveFromProductMultiselect(t0) { this.entity = t0; }, ClearProductMultiselect: function ClearProductMultiselect() { }, SaveProductDocumentRequest: function SaveProductDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.product = t2; }, SaveProductDocumentFailure: function SaveProductDocumentFailure() { }, UpdateProductTab: function UpdateProductTab(t0) { this.tabIndex = t0; }, _editProduct() { return new A._editProduct_closure(); }, _viewProduct() { return new A._viewProduct_closure(); }, _viewProductList() { return new A._viewProductList_closure(); }, _archiveProduct(repository) { return new A._archiveProduct_closure(repository); }, _deleteProduct(repository) { return new A._deleteProduct_closure(repository); }, _restoreProduct(repository) { return new A._restoreProduct_closure(repository); }, _saveProduct(repository) { return new A._saveProduct_closure(repository); }, _loadProduct(repository) { return new A._loadProduct_closure(repository); }, _loadProducts(repository) { return new A._loadProducts_closure(repository); }, _saveDocument(repository) { return new A._saveDocument_closure12(repository); }, _editProduct_closure: function _editProduct_closure() { }, _viewProduct_closure: function _viewProduct_closure() { }, _viewProductList_closure: function _viewProductList_closure() { }, _viewProductList__closure: function _viewProductList__closure() { }, _archiveProduct_closure: function _archiveProduct_closure(t0) { this.repository = t0; }, _archiveProduct__closure: function _archiveProduct__closure(t0) { this.store = t0; }, _archiveProduct__closure0: function _archiveProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveProduct__closure1: function _archiveProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _deleteProduct_closure: function _deleteProduct_closure(t0) { this.repository = t0; }, _deleteProduct__closure: function _deleteProduct__closure(t0) { this.store = t0; }, _deleteProduct__closure0: function _deleteProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteProduct__closure1: function _deleteProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _restoreProduct_closure: function _restoreProduct_closure(t0) { this.repository = t0; }, _restoreProduct__closure: function _restoreProduct__closure(t0) { this.store = t0; }, _restoreProduct__closure0: function _restoreProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreProduct__closure1: function _restoreProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _saveProduct_closure: function _saveProduct_closure(t0) { this.repository = t0; }, _saveProduct__closure: function _saveProduct__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveProduct__closure0: function _saveProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProduct_closure: function _loadProduct_closure(t0) { this.repository = t0; }, _loadProduct__closure: function _loadProduct__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProduct__closure0: function _loadProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProducts_closure: function _loadProducts_closure(t0) { this.repository = t0; }, _loadProducts__closure: function _loadProducts__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadProducts__closure0: function _loadProducts__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure12: function _saveDocument_closure12(t0) { this.repository = t0; }, _saveDocument__closure25: function _saveDocument__closure25(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure26: function _saveDocument__closure26(t0, t1) { this.store = t0; this.action = t1; }, productUIReducer(state, action) { var t1; state.toString; t1 = new A.ProductUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._product_state$_$v = state; new A.productUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing8(product, action) { return A.ProductEntity_ProductEntity(null, null); }, _updateEditing9(product, action) { return J.get$product$x(action); }, _viewClientList1(productListState, action) { return productListState.rebuild$1(new A._viewClientList_closure0()); }, _filterProductsByState(productListState, action) { var t1 = productListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return productListState.rebuild$1(new A._filterProductsByState_closure(action)); else return productListState.rebuild$1(new A._filterProductsByState_closure0(action)); }, _filterProductsByCustom1(productListState, action) { var t1 = productListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return productListState.rebuild$1(new A._filterProductsByCustom1_closure(action)); else return productListState.rebuild$1(new A._filterProductsByCustom1_closure0(action)); }, _filterProductsByCustom2(productListState, action) { var t1 = productListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return productListState.rebuild$1(new A._filterProductsByCustom2_closure(action)); else return productListState.rebuild$1(new A._filterProductsByCustom2_closure0(action)); }, _filterProductsByCustom3(productListState, action) { var t1 = productListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return productListState.rebuild$1(new A._filterProductsByCustom3_closure(action)); else return productListState.rebuild$1(new A._filterProductsByCustom3_closure0(action)); }, _filterProductsByCustom4(productListState, action) { var t1 = productListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return productListState.rebuild$1(new A._filterProductsByCustom4_closure(action)); else return productListState.rebuild$1(new A._filterProductsByCustom4_closure0(action)); }, _filterProducts(productListState, action) { return productListState.rebuild$1(new A._filterProducts_closure(action, productListState)); }, _sortProducts(productListState, action) { return productListState.rebuild$1(new A._sortProducts_closure(action)); }, _startListMultiselect10(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure23()); }, _addToListMultiselect10(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure23(action)); }, _removeFromListMultiselect10(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure23(action)); }, _clearListMultiselect10(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure23()); }, _archiveProductSuccess(productState, action) { return productState.rebuild$1(new A._archiveProductSuccess_closure(action)); }, _deleteProductSuccess(productState, action) { return productState.rebuild$1(new A._deleteProductSuccess_closure(action)); }, _restoreProductSuccess(productState, action) { return productState.rebuild$1(new A._restoreProductSuccess_closure(action)); }, _addProduct(productState, action) { return productState.rebuild$1(new A._addProduct_closure(action)); }, _updateProduct(productState, action) { return productState.rebuild$1(new A._updateProduct_closure(action)); }, _setLoadedProduct(productState, action) { return productState.rebuild$1(new A._setLoadedProduct_closure(action)); }, _setLoadedProducts(productState, action) { return productState.loadProducts$1(action.products); }, _setLoadedCompany9(productState, action) { return productState.loadProducts$1(action.userCompany.company.products); }, productUIReducer_closure: function productUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure183: function forceSelectedReducer_closure183() { }, forceSelectedReducer_closure184: function forceSelectedReducer_closure184() { }, forceSelectedReducer_closure185: function forceSelectedReducer_closure185() { }, forceSelectedReducer_closure186: function forceSelectedReducer_closure186() { }, forceSelectedReducer_closure187: function forceSelectedReducer_closure187() { }, forceSelectedReducer_closure188: function forceSelectedReducer_closure188() { }, forceSelectedReducer_closure189: function forceSelectedReducer_closure189() { }, forceSelectedReducer_closure190: function forceSelectedReducer_closure190() { }, tabIndexReducer_closure25: function tabIndexReducer_closure25() { }, tabIndexReducer_closure26: function tabIndexReducer_closure26() { }, editingReducer_closure139: function editingReducer_closure139() { }, editingReducer__closure56: function editingReducer__closure56() { }, editingReducer_closure140: function editingReducer_closure140() { }, editingReducer_closure141: function editingReducer_closure141() { }, editingReducer_closure142: function editingReducer_closure142() { }, selectedIdReducer_closure371: function selectedIdReducer_closure371() { }, selectedIdReducer_closure372: function selectedIdReducer_closure372() { }, selectedIdReducer_closure373: function selectedIdReducer_closure373() { }, selectedIdReducer_closure374: function selectedIdReducer_closure374() { }, selectedIdReducer_closure375: function selectedIdReducer_closure375() { }, selectedIdReducer_closure376: function selectedIdReducer_closure376() { }, selectedIdReducer_closure377: function selectedIdReducer_closure377() { }, selectedIdReducer_closure378: function selectedIdReducer_closure378() { }, selectedIdReducer_closure379: function selectedIdReducer_closure379() { }, selectedIdReducer_closure380: function selectedIdReducer_closure380() { }, selectedIdReducer_closure381: function selectedIdReducer_closure381() { }, selectedIdReducer_closure382: function selectedIdReducer_closure382() { }, selectedIdReducer_closure383: function selectedIdReducer_closure383() { }, selectedIdReducer_closure384: function selectedIdReducer_closure384() { }, _viewClientList_closure0: function _viewClientList_closure0() { }, _filterProductsByState_closure: function _filterProductsByState_closure(t0) { this.action = t0; }, _filterProductsByState_closure0: function _filterProductsByState_closure0(t0) { this.action = t0; }, _filterProductsByCustom1_closure: function _filterProductsByCustom1_closure(t0) { this.action = t0; }, _filterProductsByCustom1_closure0: function _filterProductsByCustom1_closure0(t0) { this.action = t0; }, _filterProductsByCustom2_closure: function _filterProductsByCustom2_closure(t0) { this.action = t0; }, _filterProductsByCustom2_closure0: function _filterProductsByCustom2_closure0(t0) { this.action = t0; }, _filterProductsByCustom3_closure: function _filterProductsByCustom3_closure(t0) { this.action = t0; }, _filterProductsByCustom3_closure0: function _filterProductsByCustom3_closure0(t0) { this.action = t0; }, _filterProductsByCustom4_closure: function _filterProductsByCustom4_closure(t0) { this.action = t0; }, _filterProductsByCustom4_closure0: function _filterProductsByCustom4_closure0(t0) { this.action = t0; }, _filterProducts_closure: function _filterProducts_closure(t0, t1) { this.action = t0; this.productListState = t1; }, _sortProducts_closure: function _sortProducts_closure(t0) { this.action = t0; }, _startListMultiselect_closure23: function _startListMultiselect_closure23() { }, _addToListMultiselect_closure23: function _addToListMultiselect_closure23(t0) { this.action = t0; }, _removeFromListMultiselect_closure23: function _removeFromListMultiselect_closure23(t0) { this.action = t0; }, _clearListMultiselect_closure23: function _clearListMultiselect_closure23() { }, _archiveProductSuccess_closure: function _archiveProductSuccess_closure(t0) { this.action = t0; }, _deleteProductSuccess_closure: function _deleteProductSuccess_closure(t0) { this.action = t0; }, _restoreProductSuccess_closure: function _restoreProductSuccess_closure(t0) { this.action = t0; }, _addProduct_closure: function _addProduct_closure(t0) { this.action = t0; }, _updateProduct_closure: function _updateProduct_closure(t0) { this.action = t0; }, _setLoadedProduct_closure: function _setLoadedProduct_closure(t0) { this.action = t0; }, productNotificationThreshold(company, product) { var t1 = product.stockNotificationThreshold; if (t1 !== 0) return t1; return company.stockNotificationThreshold; }, convertProductToInvoiceItem(client, company, currencyMap, invoice, product) { var cost, t2, exchangeRate, _null = null, t1 = {}; if (company.fillProducts) { cost = product.price; t1.cost = cost; if (company.convertProductExchangeRate) { t2 = client == null ? _null : client.settings.currencyId; t2 = (t2 == null ? "" : t2).length !== 0; } else t2 = false; if (t2) { exchangeRate = invoice.exchangeRate; if (!company.convertRateToClient && exchangeRate !== 0) exchangeRate = 1 / exchangeRate; t2 = client.settings.currencyId; t1.cost = A.round(cost * exchangeRate, currencyMap._map$_map.$index(0, t2).precision); } return A.InvoiceItemEntity_InvoiceItemEntity(_null, _null).rebuild$1(new A.convertProductToInvoiceItem_closure(t1, product, company)); } else return A.InvoiceItemEntity_InvoiceItemEntity(product.productKey, _null); }, dropdownProductsSelector(productMap, productList, userMap) { var t1 = productList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownProductsSelector_closure(productMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownProductsSelector_closure0(productMap, userMap)); return list; }, productList(productMap) { var t2, list, t1 = productMap.get$keys(productMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.productList_closure(productMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.productList_closure0(productMap)); return list; }, filteredProductsSelector(selectionState, productMap, productList, productListState, userMap) { var t1 = productList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredProductsSelector_closure(productMap, selectionState, productListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredProductsSelector_closure0(productMap, productListState, userMap)); return list; }, convertProductToInvoiceItem_closure: function convertProductToInvoiceItem_closure(t0, t1, t2) { this._box_0 = t0; this.product = t1; this.company = t2; }, memoizedDropdownProductList_closure: function memoizedDropdownProductList_closure() { }, dropdownProductsSelector_closure: function dropdownProductsSelector_closure(t0) { this.productMap = t0; }, dropdownProductsSelector_closure0: function dropdownProductsSelector_closure0(t0, t1) { this.productMap = t0; this.userMap = t1; }, memoizedProductList_closure: function memoizedProductList_closure() { }, productList_closure: function productList_closure(t0) { this.productMap = t0; }, productList_closure0: function productList_closure0(t0) { this.productMap = t0; }, memoizedFilteredProductList_closure: function memoizedFilteredProductList_closure() { }, filteredProductsSelector_closure: function filteredProductsSelector_closure(t0, t1, t2) { this.productMap = t0; this.selectionState = t1; this.productListState = t2; }, filteredProductsSelector_closure0: function filteredProductsSelector_closure0(t0, t1, t2) { this.productMap = t0; this.productListState = t1; this.userMap = t2; }, _$ProductState$_(list, map) { var _s12_ = "ProductState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$ProductState(map, list); }, _$ProductUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("ProductUIState", "listUIState")); return new A._$ProductUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ProductState: function ProductState() { }, ProductState_loadProducts_closure0: function ProductState_loadProducts_closure0() { }, ProductState_loadProducts_closure1: function ProductState_loadProducts_closure1() { }, ProductState_loadProducts_closure: function ProductState_loadProducts_closure(t0, t1) { this.$this = t0; this.map = t1; }, ProductUIState: function ProductUIState() { }, _$ProductStateSerializer: function _$ProductStateSerializer() { }, _$ProductUIStateSerializer: function _$ProductUIStateSerializer() { }, _$ProductState: function _$ProductState(t0, t1) { this.map = t0; this.list = t1; this._product_state$__hashCode = null; }, ProductStateBuilder: function ProductStateBuilder() { this._product_state$_list = this._product_state$_map = this._product_state$_$v = null; }, _$ProductUIState: function _$ProductUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._product_state$__hashCode = null; }, ProductUIStateBuilder: function ProductUIStateBuilder() { var _ = this; _._product_state$_cancelCompleter = _._product_state$_saveCompleter = _._product_state$_tabIndex = _._product_state$_forceSelected = _._product_state$_selectedId = _._product_state$_listUIState = _._product_state$_editing = _._product_state$_$v = null; }, _ProductUIState_Object_EntityUIState: function _ProductUIState_Object_EntityUIState() { }, handleProjectAction(context, projects, action) { var store, state, t2, project, projectIds, t3, t4, client, items, message, documentIds, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", _box_0 = {}, t1 = J.getInterceptor$asx(projects); if (t1.get$isEmpty(projects)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = type$.legacy_ProjectEntity; project = t2._as(t1.get$first(projects)); projectIds = t1.map$1$1(projects, new A.handleProjectAction_closure(), type$.legacy_String).toList$0(0); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; client = t3._list[t4].clientState.$get$1(0, project.clientId); t4 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); switch (action) { case B.EntityAction_edit: A.editEntity(_null, project, true, _null); break; case B.EntityAction_newTask: A.createEntity(_null, _null, context, A.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new A.handleProjectAction_closure0(project)), false); break; case B.EntityAction_invoiceProject: _box_0.lastClientId = ""; _box_0.hasMultipleClients = false; t1.forEach$1(projects, new A.handleProjectAction_closure1(_box_0)); if (_box_0.hasMultipleClients) { A.showErrorDialog(false, context, t4.get$multipleClientError()); return; } items = A._setArrayType([], type$.JSArray_legacy_InvoiceItemEntity); t1.forEach$1(projects, new A.handleProjectAction_closure2(items, context)); A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null, _null).rebuild$1(new A.handleProjectAction_closure3(items, project)), false); break; case B.EntityAction_newExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(client, _null, _null, _null, state, _null, _null).rebuild$1(new A.handleProjectAction_closure4(project)), false); break; case B.EntityAction_clone: A.createEntity(_null, _null, context, project.get$clone(project), false); break; case B.EntityAction_restore: if (projectIds.length > 1) { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "restored_projects"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(projectIds.length)); } else { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "restored_project"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreProjectRequest(t1, projectIds)); break; case B.EntityAction_archive: if (projectIds.length > 1) { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "archived_projects"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(projectIds.length)); } else { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "archived_project"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveProjectRequest(t1, projectIds)); break; case B.EntityAction_delete: if (projectIds.length > 1) { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "deleted_projects"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(projectIds.length)); } else { t4.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "deleted_project"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteProjectRequest(t1, projectIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.projectUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartProjectMultiselect()); if (t1.get$isEmpty(projects)) break; for (t1 = t1.get$iterator(projects); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.projectUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToProjectMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromProjectMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([project], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(projects); t1.moveNext$0();) for (t3 = t2._as(t1.get$current(t1)).documents._list, t3 = new J.ArrayIterator(t3, t3.length, A._arrayInstanceType(t3)._eval$1("ArrayIterator<1>")); t3.moveNext$0();) documentIds.push(t3.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t4.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; } }, ViewProjectList: function ViewProjectList() { }, ViewProject: function ViewProject(t0) { this.projectId = t0; }, EditProject: function EditProject(t0, t1, t2) { this.project = t0; this.completer = t1; this.cancelCompleter = t2; }, UpdateProject: function UpdateProject(t0) { this.project = t0; }, LoadProject: function LoadProject(t0, t1) { this.completer = t0; this.projectId = t1; }, LoadProjects: function LoadProjects() { }, LoadProjectRequest: function LoadProjectRequest() { }, LoadProjectFailure: function LoadProjectFailure(t0) { this.error = t0; }, LoadProjectSuccess: function LoadProjectSuccess(t0) { this.project = t0; }, LoadProjectsRequest: function LoadProjectsRequest() { }, LoadProjectsFailure: function LoadProjectsFailure(t0) { this.error = t0; }, LoadProjectsSuccess: function LoadProjectsSuccess(t0) { this.projects = t0; }, SaveProjectRequest: function SaveProjectRequest(t0, t1) { this.completer = t0; this.project = t1; }, SaveProjectSuccess: function SaveProjectSuccess(t0) { this.project = t0; }, AddProjectSuccess: function AddProjectSuccess(t0) { this.project = t0; }, SaveProjectFailure: function SaveProjectFailure() { }, ArchiveProjectRequest: function ArchiveProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, ArchiveProjectSuccess: function ArchiveProjectSuccess(t0) { this.projects = t0; }, ArchiveProjectFailure: function ArchiveProjectFailure() { }, DeleteProjectRequest: function DeleteProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, DeleteProjectSuccess: function DeleteProjectSuccess(t0) { this.projects = t0; }, DeleteProjectFailure: function DeleteProjectFailure() { }, RestoreProjectRequest: function RestoreProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, RestoreProjectSuccess: function RestoreProjectSuccess(t0) { this.projects = t0; }, RestoreProjectFailure: function RestoreProjectFailure() { }, FilterProjects: function FilterProjects(t0) { this.filter = t0; }, SortProjects: function SortProjects(t0) { this.field = t0; }, FilterProjectsByState: function FilterProjectsByState(t0) { this.state = t0; }, FilterProjectsByCustom1: function FilterProjectsByCustom1(t0) { this.value = t0; }, FilterProjectsByCustom2: function FilterProjectsByCustom2(t0) { this.value = t0; }, FilterProjectsByCustom3: function FilterProjectsByCustom3(t0) { this.value = t0; }, FilterProjectsByCustom4: function FilterProjectsByCustom4(t0) { this.value = t0; }, handleProjectAction_closure: function handleProjectAction_closure() { }, handleProjectAction_closure0: function handleProjectAction_closure0(t0) { this.project = t0; }, handleProjectAction_closure1: function handleProjectAction_closure1(t0) { this._box_0 = t0; }, handleProjectAction_closure2: function handleProjectAction_closure2(t0, t1) { this.items = t0; this.context = t1; }, handleProjectAction_closure3: function handleProjectAction_closure3(t0, t1) { this.items = t0; this.project = t1; }, handleProjectAction_closure4: function handleProjectAction_closure4(t0) { this.project = t0; }, StartProjectMultiselect: function StartProjectMultiselect() { }, AddToProjectMultiselect: function AddToProjectMultiselect(t0) { this.entity = t0; }, RemoveFromProjectMultiselect: function RemoveFromProjectMultiselect(t0) { this.entity = t0; }, ClearProjectMultiselect: function ClearProjectMultiselect() { }, SaveProjectDocumentRequest: function SaveProjectDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.project = t2; }, SaveProjectDocumentFailure: function SaveProjectDocumentFailure() { }, UpdateProjectTab: function UpdateProjectTab(t0) { this.tabIndex = t0; }, _editProject() { return new A._editProject_closure(); }, _viewProject() { return new A._viewProject_closure(); }, _viewProjectList() { return new A._viewProjectList_closure0(); }, _archiveProject(repository) { return new A._archiveProject_closure(repository); }, _deleteProject(repository) { return new A._deleteProject_closure(repository); }, _restoreProject(repository) { return new A._restoreProject_closure(repository); }, _saveProject(repository) { return new A._saveProject_closure(repository); }, _loadProject(repository) { return new A._loadProject_closure(repository); }, _loadProjects(repository) { return new A._loadProjects_closure(repository); }, _saveDocument5(repository) { return new A._saveDocument_closure6(repository); }, _editProject_closure: function _editProject_closure() { }, _viewProject_closure: function _viewProject_closure() { }, _viewProjectList_closure0: function _viewProjectList_closure0() { }, _viewProjectList__closure: function _viewProjectList__closure() { }, _archiveProject_closure: function _archiveProject_closure(t0) { this.repository = t0; }, _archiveProject__closure: function _archiveProject__closure(t0) { this.store = t0; }, _archiveProject__closure0: function _archiveProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveProject__closure1: function _archiveProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _deleteProject_closure: function _deleteProject_closure(t0) { this.repository = t0; }, _deleteProject__closure: function _deleteProject__closure(t0) { this.store = t0; }, _deleteProject__closure0: function _deleteProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteProject__closure1: function _deleteProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _restoreProject_closure: function _restoreProject_closure(t0) { this.repository = t0; }, _restoreProject__closure: function _restoreProject__closure(t0) { this.store = t0; }, _restoreProject__closure0: function _restoreProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreProject__closure1: function _restoreProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _saveProject_closure: function _saveProject_closure(t0) { this.repository = t0; }, _saveProject__closure: function _saveProject__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveProject__closure0: function _saveProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProject_closure: function _loadProject_closure(t0) { this.repository = t0; }, _loadProject__closure: function _loadProject__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProject__closure0: function _loadProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProjects_closure: function _loadProjects_closure(t0) { this.repository = t0; }, _loadProjects__closure: function _loadProjects__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProjects__closure0: function _loadProjects__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure6: function _saveDocument_closure6(t0) { this.repository = t0; }, _saveDocument__closure13: function _saveDocument__closure13(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure14: function _saveDocument__closure14(t0, t1) { this.store = t0; this.action = t1; }, projectUIReducer(state, action) { var t1; state.toString; t1 = new A.ProjectUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._project_state$_$v = state; new A.projectUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing9(project, dynamicAction) { var _null = null; return A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); }, _updateEditing10(project, action) { return action.get$project(); }, _viewProjectList0(projectListState, action) { return projectListState.rebuild$1(new A._viewProjectList_closure()); }, _filterProjectsByCustom1(projectListState, action) { var t1 = projectListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return projectListState.rebuild$1(new A._filterProjectsByCustom1_closure(action)); else return projectListState.rebuild$1(new A._filterProjectsByCustom1_closure0(action)); }, _filterProjectsByCustom2(projectListState, action) { var t1 = projectListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return projectListState.rebuild$1(new A._filterProjectsByCustom2_closure(action)); else return projectListState.rebuild$1(new A._filterProjectsByCustom2_closure0(action)); }, _filterProjectsByCustom3(projectListState, action) { var t1 = projectListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return projectListState.rebuild$1(new A._filterProjectsByCustom3_closure(action)); else return projectListState.rebuild$1(new A._filterProjectsByCustom3_closure0(action)); }, _filterProjectsByCustom4(projectListState, action) { var t1 = projectListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return projectListState.rebuild$1(new A._filterProjectsByCustom4_closure(action)); else return projectListState.rebuild$1(new A._filterProjectsByCustom4_closure0(action)); }, _filterProjectsByState(projectListState, action) { var t1 = projectListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return projectListState.rebuild$1(new A._filterProjectsByState_closure(action)); else return projectListState.rebuild$1(new A._filterProjectsByState_closure0(action)); }, _filterProjects(projectListState, action) { return projectListState.rebuild$1(new A._filterProjects_closure(action, projectListState)); }, _sortProjects(projectListState, action) { return projectListState.rebuild$1(new A._sortProjects_closure(action)); }, _startListMultiselect11(projectListState, action) { return projectListState.rebuild$1(new A._startListMultiselect_closure1()); }, _addToListMultiselect11(projectListState, action) { return projectListState.rebuild$1(new A._addToListMultiselect_closure1(action)); }, _removeFromListMultiselect11(projectListState, action) { return projectListState.rebuild$1(new A._removeFromListMultiselect_closure1(action)); }, _clearListMultiselect11(projectListState, action) { return projectListState.rebuild$1(new A._clearListMultiselect_closure1()); }, _archiveProjectSuccess(projectState, action) { return projectState.rebuild$1(new A._archiveProjectSuccess_closure(action)); }, _deleteProjectSuccess(projectState, action) { return projectState.rebuild$1(new A._deleteProjectSuccess_closure(action)); }, _restoreProjectSuccess(projectState, action) { return projectState.rebuild$1(new A._restoreProjectSuccess_closure(action)); }, _addProject(projectState, action) { return projectState.rebuild$1(new A._addProject_closure(action)); }, _updateProject(projectState, action) { return projectState.rebuild$1(new A._updateProject_closure(action)); }, _setLoadedProject(projectState, action) { return projectState.rebuild$1(new A._setLoadedProject_closure(action)); }, _setLoadedProjects(projectState, action) { return projectState.loadProjects$1(action.projects); }, _setLoadedCompany10(projectState, action) { return projectState.loadProjects$1(action.userCompany.company.projects); }, projectUIReducer_closure: function projectUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure15: function forceSelectedReducer_closure15() { }, forceSelectedReducer_closure16: function forceSelectedReducer_closure16() { }, forceSelectedReducer_closure17: function forceSelectedReducer_closure17() { }, forceSelectedReducer_closure18: function forceSelectedReducer_closure18() { }, forceSelectedReducer_closure19: function forceSelectedReducer_closure19() { }, forceSelectedReducer_closure20: function forceSelectedReducer_closure20() { }, forceSelectedReducer_closure21: function forceSelectedReducer_closure21() { }, forceSelectedReducer_closure22: function forceSelectedReducer_closure22() { }, tabIndexReducer_closure3: function tabIndexReducer_closure3() { }, tabIndexReducer_closure4: function tabIndexReducer_closure4() { }, saveCompleterReducer_closure: function saveCompleterReducer_closure() { }, cancelCompleterReducer_closure: function cancelCompleterReducer_closure() { }, selectedIdReducer_closure34: function selectedIdReducer_closure34() { }, selectedIdReducer_closure35: function selectedIdReducer_closure35() { }, selectedIdReducer_closure36: function selectedIdReducer_closure36() { }, selectedIdReducer_closure37: function selectedIdReducer_closure37() { }, selectedIdReducer_closure38: function selectedIdReducer_closure38() { }, selectedIdReducer_closure39: function selectedIdReducer_closure39() { }, selectedIdReducer_closure40: function selectedIdReducer_closure40() { }, selectedIdReducer_closure41: function selectedIdReducer_closure41() { }, selectedIdReducer_closure42: function selectedIdReducer_closure42() { }, selectedIdReducer_closure43: function selectedIdReducer_closure43() { }, selectedIdReducer_closure44: function selectedIdReducer_closure44() { }, selectedIdReducer_closure45: function selectedIdReducer_closure45() { }, selectedIdReducer_closure46: function selectedIdReducer_closure46() { }, selectedIdReducer_closure47: function selectedIdReducer_closure47() { }, selectedIdReducer_closure48: function selectedIdReducer_closure48() { }, editingReducer_closure14: function editingReducer_closure14() { }, editingReducer_closure15: function editingReducer_closure15() { }, editingReducer_closure16: function editingReducer_closure16() { }, editingReducer_closure17: function editingReducer_closure17() { }, editingReducer__closure7: function editingReducer__closure7() { }, _viewProjectList_closure: function _viewProjectList_closure() { }, _filterProjectsByCustom1_closure: function _filterProjectsByCustom1_closure(t0) { this.action = t0; }, _filterProjectsByCustom1_closure0: function _filterProjectsByCustom1_closure0(t0) { this.action = t0; }, _filterProjectsByCustom2_closure: function _filterProjectsByCustom2_closure(t0) { this.action = t0; }, _filterProjectsByCustom2_closure0: function _filterProjectsByCustom2_closure0(t0) { this.action = t0; }, _filterProjectsByCustom3_closure: function _filterProjectsByCustom3_closure(t0) { this.action = t0; }, _filterProjectsByCustom3_closure0: function _filterProjectsByCustom3_closure0(t0) { this.action = t0; }, _filterProjectsByCustom4_closure: function _filterProjectsByCustom4_closure(t0) { this.action = t0; }, _filterProjectsByCustom4_closure0: function _filterProjectsByCustom4_closure0(t0) { this.action = t0; }, _filterProjectsByState_closure: function _filterProjectsByState_closure(t0) { this.action = t0; }, _filterProjectsByState_closure0: function _filterProjectsByState_closure0(t0) { this.action = t0; }, _filterProjects_closure: function _filterProjects_closure(t0, t1) { this.action = t0; this.projectListState = t1; }, _sortProjects_closure: function _sortProjects_closure(t0) { this.action = t0; }, _startListMultiselect_closure1: function _startListMultiselect_closure1() { }, _addToListMultiselect_closure1: function _addToListMultiselect_closure1(t0) { this.action = t0; }, _removeFromListMultiselect_closure1: function _removeFromListMultiselect_closure1(t0) { this.action = t0; }, _clearListMultiselect_closure1: function _clearListMultiselect_closure1() { }, _archiveProjectSuccess_closure: function _archiveProjectSuccess_closure(t0) { this.action = t0; }, _deleteProjectSuccess_closure: function _deleteProjectSuccess_closure(t0) { this.action = t0; }, _restoreProjectSuccess_closure: function _restoreProjectSuccess_closure(t0) { this.action = t0; }, _addProject_closure: function _addProject_closure(t0) { this.action = t0; }, _updateProject_closure: function _updateProject_closure(t0) { this.action = t0; }, _setLoadedProject_closure: function _setLoadedProject_closure(t0) { this.action = t0; }, convertProjectToInvoiceItem(context, project) { var expenses, hasShownNotes, i, item, notes, t3, items = A._setArrayType([], type$.JSArray_legacy_InvoiceItemEntity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), tasks = A._setArrayType([], type$.JSArray_legacy_TaskEntity), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t1[t2].taskState.map._map$_map.forEach$1(0, new A.convertProjectToInvoiceItem_closure(project, tasks)); expenses = A._setArrayType([], type$.JSArray_legacy_ExpenseEntity); t1[t2].expenseState.map._map$_map.forEach$1(0, new A.convertProjectToInvoiceItem_closure0(project, expenses)); B.JSArray_methods.sort$1(tasks, new A.convertProjectToInvoiceItem_closure1()); B.JSArray_methods.sort$1(expenses, new A.convertProjectToInvoiceItem_closure2()); for (hasShownNotes = false, i = 0; i < expenses.length; ++i) { t1 = {}; item = A.convertExpenseToInvoiceItem(context, expenses[i]); if (i === 0) { notes = t1.notes = "## " + project.name + "\n"; t2 = project.publicNotes; if (t2.length !== 0) { t2 = t1.notes = notes + (t2 + "\n"); hasShownNotes = true; } else t2 = notes; t1.notes = t2 + item.notes; t2 = new A.InvoiceItemEntityBuilder(); t2.get$_invoice_model$_$this()._productCost = 0; t2._invoice_model$_$v = item; new A.convertProjectToInvoiceItem_closure3(t1).call$1(t2); item = t2.build$0(0); } items.push(item); } for (t1 = !hasShownNotes, i = 0; i < tasks.length; ++i) { t2 = {}; item = A.convertTaskToInvoiceItem(context, false, tasks[i]); if (i === 0) { notes = t2.notes = "## " + project.name + "\n"; t3 = project.publicNotes; t3 = t3.length !== 0 && t1 ? t2.notes = notes + (t3 + "\n") : notes; t2.notes = t3 + item.notes; t3 = new A.InvoiceItemEntityBuilder(); t3.get$_invoice_model$_$this()._productCost = 0; t3._invoice_model$_$v = item; new A.convertProjectToInvoiceItem_closure4(t2).call$1(t3); item = t3.build$0(0); } items.push(item); } return items; }, dropdownProjectsSelector(projectMap, projectList, clientMap, userMap, clientId) { var t1 = projectList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownProjectsSelector_closure(projectMap, clientId, clientMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownProjectsSelector_closure0(projectMap, userMap, clientMap)); return list; }, filteredProjectsSelector(selectionState, projectMap, projectList, projectListState, clientMap, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = projectList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredProjectsSelector_closure(projectMap, clientMap, userMap, selectionState, filterEntityId, filterEntityType, projectListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredProjectsSelector_closure0(projectMap, projectListState, userMap, clientMap)); return list; }, taskDurationForProject(project, taskMap) { var t1 = {}; t1.total = 0; taskMap._map$_map.forEach$1(0, new A.taskDurationForProject_closure(t1, project)); return A.Duration$(0, 0, 0, 0, 0, t1.total); }, projectStatsForClient(clientId, projectMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; projectMap._map$_map.forEach$1(0, new A.projectStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, convertProjectToInvoiceItem_closure: function convertProjectToInvoiceItem_closure(t0, t1) { this.project = t0; this.tasks = t1; }, convertProjectToInvoiceItem_closure0: function convertProjectToInvoiceItem_closure0(t0, t1) { this.project = t0; this.expenses = t1; }, convertProjectToInvoiceItem_closure1: function convertProjectToInvoiceItem_closure1() { }, convertProjectToInvoiceItem_closure2: function convertProjectToInvoiceItem_closure2() { }, convertProjectToInvoiceItem_closure3: function convertProjectToInvoiceItem_closure3(t0) { this._box_0 = t0; }, convertProjectToInvoiceItem_closure4: function convertProjectToInvoiceItem_closure4(t0) { this._box_1 = t0; }, memoizedDropdownProjectList_closure: function memoizedDropdownProjectList_closure() { }, dropdownProjectsSelector_closure: function dropdownProjectsSelector_closure(t0, t1, t2) { this.projectMap = t0; this.clientId = t1; this.clientMap = t2; }, dropdownProjectsSelector_closure0: function dropdownProjectsSelector_closure0(t0, t1, t2) { this.projectMap = t0; this.userMap = t1; this.clientMap = t2; }, memoizedFilteredProjectList_closure: function memoizedFilteredProjectList_closure() { }, filteredProjectsSelector_closure: function filteredProjectsSelector_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.projectMap = t0; _.clientMap = t1; _.userMap = t2; _.selectionState = t3; _.filterEntityId = t4; _.filterEntityType = t5; _.projectListState = t6; }, filteredProjectsSelector_closure0: function filteredProjectsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.projectMap = t0; _.projectListState = t1; _.userMap = t2; _.clientMap = t3; }, taskDurationForProject_closure: function taskDurationForProject_closure(t0, t1) { this._box_0 = t0; this.project = t1; }, memoizedProjectStatsForClient_closure: function memoizedProjectStatsForClient_closure() { }, projectStatsForClient_closure: function projectStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedProjectStatsForUser_closure: function memoizedProjectStatsForUser_closure() { }, _$ProjectState$_(list, map) { var _s12_ = "ProjectState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$ProjectState(map, list); }, _$ProjectUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("ProjectUIState", "listUIState")); return new A._$ProjectUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ProjectState: function ProjectState() { }, ProjectState_loadProjects_closure0: function ProjectState_loadProjects_closure0() { }, ProjectState_loadProjects_closure1: function ProjectState_loadProjects_closure1() { }, ProjectState_loadProjects_closure: function ProjectState_loadProjects_closure(t0, t1) { this.$this = t0; this.map = t1; }, ProjectUIState: function ProjectUIState() { }, _$ProjectStateSerializer: function _$ProjectStateSerializer() { }, _$ProjectUIStateSerializer: function _$ProjectUIStateSerializer() { }, _$ProjectState: function _$ProjectState(t0, t1) { this.map = t0; this.list = t1; this._project_state$__hashCode = null; }, ProjectStateBuilder: function ProjectStateBuilder() { this._project_state$_list = this._project_state$_map = this._project_state$_$v = null; }, _$ProjectUIState: function _$ProjectUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._project_state$__hashCode = null; }, ProjectUIStateBuilder: function ProjectUIStateBuilder() { var _ = this; _._project_state$_cancelCompleter = _._project_state$_saveCompleter = _._project_state$_tabIndex = _._project_state$_forceSelected = _._project_state$_selectedId = _._project_state$_listUIState = _._project_state$_editing = _._project_state$_$v = null; }, _ProjectUIState_Object_EntityUIState: function _ProjectUIState_Object_EntityUIState() { }, handlePurchaseOrderAction(context, purchaseOrders, action) { var store, state, t1, purchaseOrder, t2, purchaseOrderIds, _i, t3, designId, _null = null, _s6_ = "_state", _s23_ = "restored_purchase_order", _s2_ = "en", _s23_0 = "archived_purchase_order", _s22_ = "deleted_purchase_order", _s33_ = "added_purchase_order_to_inventory", _s34_ = "added_purchase_orders_to_inventory", _s20_ = "converted_to_expense", _s21_ = "converted_to_expenses", _s29_ = "marked_purchase_order_as_sent", _s30_ = "marked_purchase_orders_as_sent", _s24_ = "cancelled_purchase_order", _s25_ = "cancelled_purchase_orders", _s23_1 = "accepted_purchase_order", _s24_0 = "accepted_purchase_orders", _s12_ = "_dispatchers", _s20_0 = "vendor_email_not_set", _s26_ = "bulk_email_purchase_orders", _box_0 = {}; if (purchaseOrders.length === 0) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); purchaseOrder = type$.legacy_InvoiceEntity._as(B.JSArray_methods.get$first(purchaseOrders)); t2 = A._arrayInstanceType(purchaseOrders)._eval$1("MappedListIterable<1,String*>"); purchaseOrderIds = A.List_List$of(new A.MappedListIterable(purchaseOrders, new A.handlePurchaseOrderAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case B.EntityAction_edit: A.editEntity(_null, purchaseOrder, true, _null); break; case B.EntityAction_viewPdf: store.get$_dispatchers()[0].call$1(new A.ShowPdfPurchaseOrder(purchaseOrder, context, _null)); break; case B.EntityAction_restore: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s23_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s23_); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestorePurchaseOrdersRequest(t1, purchaseOrderIds)); break; case B.EntityAction_archive: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s23_0); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s23_0); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchivePurchaseOrdersRequest(t1, purchaseOrderIds)); break; case B.EntityAction_delete: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s22_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s22_); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeletePurchaseOrdersRequest(t1, purchaseOrderIds)); break; case B.EntityAction_addToInventory: if (purchaseOrders.length === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s33_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s33_); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s34_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s34_); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.AddPurchaseOrdersToInventoryRequest(t1, purchaseOrderIds)); break; case B.EntityAction_convertToExpense: if (purchaseOrders.length === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s20_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s20_); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s21_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s21_); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ConvertPurchaseOrdersToExpensesRequest(t1, purchaseOrderIds)); break; case B.EntityAction_viewExpense: A.viewEntityById(false, purchaseOrder.expenseId, B.EntityType_expense, _null, false, true); break; case B.EntityAction_markSent: if (purchaseOrders.length === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s29_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s29_); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s30_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s30_); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkPurchaseOrdersSentRequest(t1, purchaseOrderIds)); break; case B.EntityAction_cancelInvoice: if (purchaseOrders.length === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s24_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s24_); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s25_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s25_); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.CancelPurchaseOrdersRequest(purchaseOrderIds, t1)); break; case B.EntityAction_accept: if (purchaseOrders.length === 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s23_1); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s23_1); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s24_0); if (t1 == null) t1 = J.$index$asx(t2.$index(0, _s2_), _s24_0); } t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.AcceptPurchaseOrdersRequest(purchaseOrderIds, t1)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.purchaseOrderUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartPurchaseOrderMultiselect()); t1 = purchaseOrders.length; if (t1 === 0) break; for (_i = 0; _i < purchaseOrders.length; purchaseOrders.length === t1 || (0, A.throwConcurrentModificationError)(purchaseOrders), ++_i) { purchaseOrder = purchaseOrders[_i]; t2 = A._lateReadCheck(store.__Store__state, _s6_).uiState.purchaseOrderUIState.listUIState; t3 = J.get$id$x(purchaseOrder); t2 = t2.selectedIds; t2 = t2 != null && B.JSArray_methods.contains$1(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.AddToPurchaseOrderMultiselect(purchaseOrder)); else J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.RemoveFromPurchaseOrderMultiselect(purchaseOrder)); } break; case B.EntityAction_clientPortal: t1 = purchaseOrder.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true", _null, false); break; case B.EntityAction_sendEmail: case B.EntityAction_bulkSendEmail: _box_0.emailValid = true; B.JSArray_methods.forEach$1(purchaseOrders, new A.handlePurchaseOrderAction_closure0(_box_0, state)); if (!_box_0.emailValid) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), _s20_0); t2 = t3 == null ? J.$index$asx(t2.$index(0, _s2_), _s20_0) : t3; A.showMessageDialog(context, t2, _null, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$editVendor().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.handlePurchaseOrderAction_closure1(context, state, purchaseOrder), _null)], type$.JSArray_legacy_TextButton)); return; } if (action === B.EntityAction_sendEmail) { t1 = A.snackBarCompleter(context, t1.get$emailedPurchaseOrder(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ShowEmailPurchaseOrder(purchaseOrder, context, t1)); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), _s26_); t2 = t3 == null ? J.$index$asx(t2.$index(0, _s2_), _s26_) : t3; A.confirmCallback(false, new A.handlePurchaseOrderAction_closure2(store, context, purchaseOrderIds, t1), context, t2, false, _null); } break; case B.EntityAction_cloneToQuote: designId = A.getDesignIdForClientByEntity(purchaseOrder.clientId, B.EntityType_purchaseOrder, state); A.createEntity(_null, _null, context, purchaseOrder.get$clone(purchaseOrder).rebuild$1(new A.handlePurchaseOrderAction_closure3(designId)).recreateInvitations$1(state), false); break; case B.EntityAction_cloneToOther: A.cloneToDialog(context, purchaseOrder); break; case B.EntityAction_cloneToInvoice: designId = A.getDesignIdForClientByEntity(purchaseOrder.clientId, B.EntityType_invoice, state); A.createEntity(_null, _null, context, purchaseOrder.get$clone(purchaseOrder).rebuild$1(new A.handlePurchaseOrderAction_closure4(designId)).recreateInvitations$1(state), false); break; case B.EntityAction_clone: case B.EntityAction_cloneToPurchaseOrder: A.createEntity(_null, _null, context, purchaseOrder.get$clone(purchaseOrder), false); break; case B.EntityAction_cloneToCredit: designId = A.getDesignIdForClientByEntity(purchaseOrder.clientId, B.EntityType_credit, state); A.createEntity(_null, _null, context, purchaseOrder.get$clone(purchaseOrder).rebuild$1(new A.handlePurchaseOrderAction_closure5(designId)).recreateInvitations$1(state), false); break; case B.EntityAction_cloneToRecurring: designId = A.getDesignIdForClientByEntity(purchaseOrder.clientId, B.EntityType_invoice, state); A.createEntity(_null, _null, context, purchaseOrder.get$clone(purchaseOrder).rebuild$1(new A.handlePurchaseOrderAction_closure6(designId)).recreateInvitations$1(state), false); break; case B.EntityAction_download: t1 = purchaseOrder.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "/download?t=" + Date.now(), _null, false); break; case B.EntityAction_bulkDownload: t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadPurchaseOrdersRequest(t1, purchaseOrderIds)); break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([purchaseOrder], type$.JSArray_legacy_BaseEntity), false); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in purchase_order_actions"); break; } }, ViewPurchaseOrderList: function ViewPurchaseOrderList() { }, ViewPurchaseOrder: function ViewPurchaseOrder(t0) { this.purchaseOrderId = t0; }, EditPurchaseOrder: function EditPurchaseOrder(t0) { this.purchaseOrder = t0; }, ShowEmailPurchaseOrder: function ShowEmailPurchaseOrder(t0, t1, t2) { this.purchaseOrder = t0; this.context = t1; this.completer = t2; }, ShowPdfPurchaseOrder: function ShowPdfPurchaseOrder(t0, t1, t2) { this.purchaseOrder = t0; this.context = t1; this.activityId = t2; }, EditPurchaseOrderItem: function EditPurchaseOrderItem(t0) { this.itemIndex = t0; }, UpdatePurchaseOrder: function UpdatePurchaseOrder(t0) { this.purchaseOrder = t0; }, UpdatePurchaseOrderVendor: function UpdatePurchaseOrderVendor(t0) { this.vendor = t0; }, LoadPurchaseOrder: function LoadPurchaseOrder(t0, t1) { this.completer = t0; this.purchaseOrderId = t1; }, LoadPurchaseOrders: function LoadPurchaseOrders(t0, t1) { this.completer = t0; this.page = t1; }, LoadPurchaseOrderRequest: function LoadPurchaseOrderRequest() { }, LoadPurchaseOrderFailure: function LoadPurchaseOrderFailure(t0) { this.error = t0; }, LoadPurchaseOrderSuccess: function LoadPurchaseOrderSuccess(t0) { this.purchaseOrder = t0; }, LoadPurchaseOrdersRequest: function LoadPurchaseOrdersRequest() { }, LoadPurchaseOrdersFailure: function LoadPurchaseOrdersFailure(t0) { this.error = t0; }, LoadPurchaseOrdersSuccess: function LoadPurchaseOrdersSuccess(t0) { this.purchaseOrders = t0; }, SavePurchaseOrderDocumentRequest: function SavePurchaseOrderDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.purchaseOrder = t2; }, SavePurchaseOrderDocumentFailure: function SavePurchaseOrderDocumentFailure() { }, SavePurchaseOrderRequest: function SavePurchaseOrderRequest(t0, t1, t2) { this.completer = t0; this.purchaseOrder = t1; this.action = t2; }, SavePurchaseOrderSuccess: function SavePurchaseOrderSuccess(t0) { this.purchaseOrder = t0; }, AddPurchaseOrderSuccess: function AddPurchaseOrderSuccess(t0) { this.purchaseOrder = t0; }, SavePurchaseOrderFailure: function SavePurchaseOrderFailure() { }, BulkEmailPurchaseOrdersRequest: function BulkEmailPurchaseOrdersRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, BulkEmailPurchaseOrdersSuccess: function BulkEmailPurchaseOrdersSuccess() { }, BulkEmailPurchaseOrdersFailure: function BulkEmailPurchaseOrdersFailure() { }, ArchivePurchaseOrdersRequest: function ArchivePurchaseOrdersRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, ArchivePurchaseOrdersSuccess: function ArchivePurchaseOrdersSuccess(t0) { this.purchaseOrders = t0; }, ArchivePurchaseOrdersFailure: function ArchivePurchaseOrdersFailure() { }, DeletePurchaseOrdersRequest: function DeletePurchaseOrdersRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, DeletePurchaseOrdersSuccess: function DeletePurchaseOrdersSuccess(t0) { this.purchaseOrders = t0; }, DeletePurchaseOrdersFailure: function DeletePurchaseOrdersFailure() { }, DownloadPurchaseOrdersRequest: function DownloadPurchaseOrdersRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DownloadPurchaseOrdersSuccess: function DownloadPurchaseOrdersSuccess() { }, DownloadPurchaseOrdersFailure: function DownloadPurchaseOrdersFailure() { }, AcceptPurchaseOrdersRequest: function AcceptPurchaseOrdersRequest(t0, t1) { this.purchaseOrderIds = t0; this.completer = t1; }, AcceptPurchaseOrderSuccess: function AcceptPurchaseOrderSuccess(t0) { this.purchaseOrders = t0; }, AcceptPurchaseOrderFailure: function AcceptPurchaseOrderFailure() { }, CancelPurchaseOrdersRequest: function CancelPurchaseOrdersRequest(t0, t1) { this.purchaseOrderIds = t0; this.completer = t1; }, CancelPurchaseOrderSuccess: function CancelPurchaseOrderSuccess(t0) { this.purchaseOrders = t0; }, CancelPurchaseOrderFailure: function CancelPurchaseOrderFailure() { }, RestorePurchaseOrdersRequest: function RestorePurchaseOrdersRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, RestorePurchaseOrdersSuccess: function RestorePurchaseOrdersSuccess(t0) { this.purchaseOrders = t0; }, RestorePurchaseOrdersFailure: function RestorePurchaseOrdersFailure() { }, EmailPurchaseOrderRequest: function EmailPurchaseOrderRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.purchaseOrderId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailPurchaseOrderSuccess: function EmailPurchaseOrderSuccess(t0) { this.purchaseOrder = t0; }, EmailPurchaseOrderFailure: function EmailPurchaseOrderFailure() { }, MarkPurchaseOrdersSentRequest: function MarkPurchaseOrdersSentRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, MarkPurchaseOrderSentSuccess: function MarkPurchaseOrderSentSuccess(t0) { this.purchaseOrders = t0; }, MarkPurchaseOrderSentFailure: function MarkPurchaseOrderSentFailure() { }, ConvertPurchaseOrdersToExpensesRequest: function ConvertPurchaseOrdersToExpensesRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, ConvertPurchaseOrdersToExpensesSuccess: function ConvertPurchaseOrdersToExpensesSuccess(t0) { this.purchaseOrders = t0; }, ConvertPurchaseOrdersToExpensesFailure: function ConvertPurchaseOrdersToExpensesFailure() { }, AddPurchaseOrdersToInventoryRequest: function AddPurchaseOrdersToInventoryRequest(t0, t1) { this.completer = t0; this.purchaseOrderIds = t1; }, AddPurchaseOrdersToInventorySuccess: function AddPurchaseOrdersToInventorySuccess(t0) { this.purchaseOrders = t0; }, AddPurchaseOrdersToInventoryFailure: function AddPurchaseOrdersToInventoryFailure() { }, ApprovePurchaseOrderSuccess: function ApprovePurchaseOrderSuccess(t0) { this.purchaseOrders = t0; }, ApprovePurchaseOrderFailure: function ApprovePurchaseOrderFailure() { }, AddPurchaseOrderContact: function AddPurchaseOrderContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemovePurchaseOrderContact: function RemovePurchaseOrderContact(t0) { this.invitation = t0; }, AddPurchaseOrderItem: function AddPurchaseOrderItem(t0) { this.purchaseOrderItem = t0; }, MovePurchaseOrderItem: function MovePurchaseOrderItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddPurchaseOrderItems: function AddPurchaseOrderItems(t0) { this.lineItems = t0; }, UpdatePurchaseOrderItem: function UpdatePurchaseOrderItem(t0, t1) { this.index = t0; this.purchaseOrderItem = t1; }, DeletePurchaseOrderItem: function DeletePurchaseOrderItem(t0) { this.index = t0; }, FilterPurchaseOrders: function FilterPurchaseOrders(t0) { this.filter = t0; }, SortPurchaseOrders: function SortPurchaseOrders(t0) { this.field = t0; }, FilterPurchaseOrdersByState: function FilterPurchaseOrdersByState(t0) { this.state = t0; }, FilterPurchaseOrdersByStatus: function FilterPurchaseOrdersByStatus(t0) { this.status = t0; }, FilterPurchaseOrdersByCustom1: function FilterPurchaseOrdersByCustom1(t0) { this.value = t0; }, FilterPurchaseOrdersByCustom2: function FilterPurchaseOrdersByCustom2(t0) { this.value = t0; }, FilterPurchaseOrdersByCustom3: function FilterPurchaseOrdersByCustom3(t0) { this.value = t0; }, FilterPurchaseOrdersByCustom4: function FilterPurchaseOrdersByCustom4(t0) { this.value = t0; }, StartPurchaseOrderMultiselect: function StartPurchaseOrderMultiselect() { }, AddToPurchaseOrderMultiselect: function AddToPurchaseOrderMultiselect(t0) { this.entity = t0; }, RemoveFromPurchaseOrderMultiselect: function RemoveFromPurchaseOrderMultiselect(t0) { this.entity = t0; }, ClearPurchaseOrderMultiselect: function ClearPurchaseOrderMultiselect() { }, UpdatePurchaseOrderTab: function UpdatePurchaseOrderTab(t0) { this.tabIndex = t0; }, handlePurchaseOrderAction_closure: function handlePurchaseOrderAction_closure() { }, handlePurchaseOrderAction_closure0: function handlePurchaseOrderAction_closure0(t0, t1) { this._box_0 = t0; this.state = t1; }, handlePurchaseOrderAction_closure1: function handlePurchaseOrderAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.purchaseOrder = t2; }, handlePurchaseOrderAction_closure2: function handlePurchaseOrderAction_closure2(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.purchaseOrderIds = t2; _.localization = t3; }, handlePurchaseOrderAction_closure3: function handlePurchaseOrderAction_closure3(t0) { this.designId = t0; }, handlePurchaseOrderAction_closure4: function handlePurchaseOrderAction_closure4(t0) { this.designId = t0; }, handlePurchaseOrderAction_closure5: function handlePurchaseOrderAction_closure5(t0) { this.designId = t0; }, handlePurchaseOrderAction_closure6: function handlePurchaseOrderAction_closure6(t0) { this.designId = t0; }, _viewPurchaseOrder() { return new A._viewPurchaseOrder_closure(); }, _viewPurchaseOrderList() { return new A._viewPurchaseOrderList_closure0(); }, _editPurchaseOrder() { return new A._editPurchaseOrder_closure(); }, _showEmailPurchaseOrder() { return new A._showEmailPurchaseOrder_closure(); }, _showPdfPurchaseOrder() { return new A._showPdfPurchaseOrder_closure(); }, _archivePurchaseOrder(repository) { return new A._archivePurchaseOrder_closure(repository); }, _deletePurchaseOrder(repository) { return new A._deletePurchaseOrder_closure(repository); }, _restorePurchaseOrder(repository) { return new A._restorePurchaseOrder_closure(repository); }, _approvePurchaseOrder(repository) { return new A._approvePurchaseOrder_closure(repository); }, _markSentPurchaseOrder(repository) { return new A._markSentPurchaseOrder_closure(repository); }, _convertPurchaseOrdersToExpense(repository) { return new A._convertPurchaseOrdersToExpense_closure(repository); }, _addPurchaseOrdersToInventory(repository) { return new A._addPurchaseOrdersToInventory_closure(repository); }, _acceptPurchaseOrders(repository) { return new A._acceptPurchaseOrders_closure(repository); }, _cancelPurchaseOrders(repository) { return new A._cancelPurchaseOrders_closure(repository); }, _emailPurchaseOrder(repository) { return new A._emailPurchaseOrder_closure(repository); }, _savePurchaseOrder(repository) { return new A._savePurchaseOrder_closure(repository); }, _loadPurchaseOrder(repository) { return new A._loadPurchaseOrder_closure(repository); }, _downloadPurchaseOrders(repository) { return new A._downloadPurchaseOrders_closure(repository); }, _bulkEmailPurchaseOrders(repository) { return new A._bulkEmailPurchaseOrders_closure(repository); }, _loadPurchaseOrders(repository) { return new A._loadPurchaseOrders_closure(repository); }, _saveDocument8(repository) { return new A._saveDocument_closure3(repository); }, _viewPurchaseOrder_closure: function _viewPurchaseOrder_closure() { }, _viewPurchaseOrderList_closure0: function _viewPurchaseOrderList_closure0() { }, _viewPurchaseOrderList__closure: function _viewPurchaseOrderList__closure() { }, _editPurchaseOrder_closure: function _editPurchaseOrder_closure() { }, _showEmailPurchaseOrder_closure: function _showEmailPurchaseOrder_closure() { }, _showPdfPurchaseOrder_closure: function _showPdfPurchaseOrder_closure() { }, _archivePurchaseOrder_closure: function _archivePurchaseOrder_closure(t0) { this.repository = t0; }, _archivePurchaseOrder__closure: function _archivePurchaseOrder__closure(t0) { this.store = t0; }, _archivePurchaseOrder__closure0: function _archivePurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archivePurchaseOrder__closure1: function _archivePurchaseOrder__closure1(t0, t1, t2) { this.store = t0; this.prevPurchaseOrders = t1; this.action = t2; }, _deletePurchaseOrder_closure: function _deletePurchaseOrder_closure(t0) { this.repository = t0; }, _deletePurchaseOrder__closure: function _deletePurchaseOrder__closure(t0) { this.store = t0; }, _deletePurchaseOrder__closure0: function _deletePurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deletePurchaseOrder__closure1: function _deletePurchaseOrder__closure1(t0, t1, t2) { this.store = t0; this.prevPurchaseOrders = t1; this.action = t2; }, _restorePurchaseOrder_closure: function _restorePurchaseOrder_closure(t0) { this.repository = t0; }, _restorePurchaseOrder__closure: function _restorePurchaseOrder__closure(t0) { this.store = t0; }, _restorePurchaseOrder__closure0: function _restorePurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restorePurchaseOrder__closure1: function _restorePurchaseOrder__closure1(t0, t1, t2) { this.store = t0; this.prevPurchaseOrders = t1; this.action = t2; }, _approvePurchaseOrder_closure: function _approvePurchaseOrder_closure(t0) { this.repository = t0; }, _approvePurchaseOrder__closure: function _approvePurchaseOrder__closure(t0, t1) { this.store = t0; this.action = t1; }, _approvePurchaseOrder__closure0: function _approvePurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markSentPurchaseOrder_closure: function _markSentPurchaseOrder_closure(t0) { this.repository = t0; }, _markSentPurchaseOrder__closure: function _markSentPurchaseOrder__closure(t0, t1) { this.store = t0; this.action = t1; }, _markSentPurchaseOrder__closure0: function _markSentPurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _convertPurchaseOrdersToExpense_closure: function _convertPurchaseOrdersToExpense_closure(t0) { this.repository = t0; }, _convertPurchaseOrdersToExpense__closure: function _convertPurchaseOrdersToExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _convertPurchaseOrdersToExpense__closure0: function _convertPurchaseOrdersToExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _addPurchaseOrdersToInventory_closure: function _addPurchaseOrdersToInventory_closure(t0) { this.repository = t0; }, _addPurchaseOrdersToInventory__closure: function _addPurchaseOrdersToInventory__closure(t0, t1) { this.store = t0; this.action = t1; }, _addPurchaseOrdersToInventory__closure0: function _addPurchaseOrdersToInventory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _acceptPurchaseOrders_closure: function _acceptPurchaseOrders_closure(t0) { this.repository = t0; }, _acceptPurchaseOrders__closure: function _acceptPurchaseOrders__closure(t0, t1) { this.store = t0; this.action = t1; }, _acceptPurchaseOrders__closure0: function _acceptPurchaseOrders__closure0(t0, t1) { this.store = t0; this.action = t1; }, _cancelPurchaseOrders_closure: function _cancelPurchaseOrders_closure(t0) { this.repository = t0; }, _cancelPurchaseOrders__closure: function _cancelPurchaseOrders__closure(t0, t1) { this.store = t0; this.action = t1; }, _cancelPurchaseOrders__closure0: function _cancelPurchaseOrders__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailPurchaseOrder_closure: function _emailPurchaseOrder_closure(t0) { this.repository = t0; }, _emailPurchaseOrder__closure: function _emailPurchaseOrder__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailPurchaseOrder__closure0: function _emailPurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _savePurchaseOrder_closure: function _savePurchaseOrder_closure(t0) { this.repository = t0; }, _savePurchaseOrder__closure: function _savePurchaseOrder__closure(t0) { this.action = t0; }, _savePurchaseOrder___closure: function _savePurchaseOrder___closure() { }, _savePurchaseOrder__closure0: function _savePurchaseOrder__closure0(t0, t1) { this.action = t0; this.store = t1; }, _savePurchaseOrder__closure1: function _savePurchaseOrder__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadPurchaseOrder_closure: function _loadPurchaseOrder_closure(t0) { this.repository = t0; }, _loadPurchaseOrder__closure: function _loadPurchaseOrder__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPurchaseOrder__closure0: function _loadPurchaseOrder__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadPurchaseOrders_closure: function _downloadPurchaseOrders_closure(t0) { this.repository = t0; }, _downloadPurchaseOrders__closure: function _downloadPurchaseOrders__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadPurchaseOrders__closure0: function _downloadPurchaseOrders__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailPurchaseOrders_closure: function _bulkEmailPurchaseOrders_closure(t0) { this.repository = t0; }, _bulkEmailPurchaseOrders__closure: function _bulkEmailPurchaseOrders__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailPurchaseOrders__closure0: function _bulkEmailPurchaseOrders__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPurchaseOrders_closure: function _loadPurchaseOrders_closure(t0) { this.repository = t0; }, _loadPurchaseOrders__closure: function _loadPurchaseOrders__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadPurchaseOrders__closure0: function _loadPurchaseOrders__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure3: function _saveDocument_closure3(t0) { this.repository = t0; }, _saveDocument__closure7: function _saveDocument__closure7(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure8: function _saveDocument__closure8(t0, t1) { this.store = t0; this.action = t1; }, purchaseOrderUIReducer(state, action) { var t1; state.toString; t1 = new A.PurchaseOrderUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._purchase_order_state$_$v = state; new A.purchaseOrderUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing10(purchaseOrder, action) { var _null = null; return A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); }, _updateEditing11(purchaseOrder, action) { return action.get$purchaseOrder(); }, _addPurchaseOrderItem(purchaseOrder, action) { return purchaseOrder.rebuild$1(new A._addPurchaseOrderItem_closure(action)); }, _addPurchaseOrderItems(purchaseOrder, action) { return purchaseOrder.rebuild$1(new A._addPurchaseOrderItems_closure(action)); }, _removePurchaseOrderItem(purchaseOrder, action) { if (purchaseOrder.lineItems._list.length <= action.index) return purchaseOrder; return purchaseOrder.rebuild$1(new A._removePurchaseOrderItem_closure(action)); }, _updatePurchaseOrderItem(purchaseOrder, action) { if (purchaseOrder.lineItems._list.length <= action.index) return purchaseOrder; return purchaseOrder.rebuild$1(new A._updatePurchaseOrderItem_closure(action)); }, _viewPurchaseOrderList0(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._viewPurchaseOrderList_closure()); }, _filterPurchaseOrdersByCustom1(purchaseOrderListState, action) { var t1 = purchaseOrderListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom1_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom1_closure0(action)); }, _filterPurchaseOrdersByCustom2(purchaseOrderListState, action) { var t1 = purchaseOrderListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom2_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom2_closure0(action)); }, _filterPurchaseOrdersByCustom3(purchaseOrderListState, action) { var t1 = purchaseOrderListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom3_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom3_closure0(action)); }, _filterPurchaseOrdersByCustom4(purchaseOrderListState, action) { var t1 = purchaseOrderListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom4_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByCustom4_closure0(action)); }, _filterPurchaseOrdersByState(purchaseOrderListState, action) { var t1 = purchaseOrderListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByState_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByState_closure0(action)); }, _filterPurchaseOrdersByStatus(purchaseOrderListState, action) { var t1 = purchaseOrderListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByStatus_closure(action)); else return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrdersByStatus_closure0(action)); }, _filterPurchaseOrders(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._filterPurchaseOrders_closure(action, purchaseOrderListState)); }, _sortPurchaseOrders(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._sortPurchaseOrders_closure(action)); }, _startListMultiselect12(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._startListMultiselect_closure20()); }, _addToListMultiselect12(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._addToListMultiselect_closure20(action)); }, _removeFromListMultiselect12(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._removeFromListMultiselect_closure20(action)); }, _clearListMultiselect12(purchaseOrderListState, action) { return purchaseOrderListState.rebuild$1(new A._clearListMultiselect_closure20()); }, _markSentPurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._markSentPurchaseOrderSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._markSentPurchaseOrderSuccess_closure0(), new A._markSentPurchaseOrderSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _convertPurchaseOrdersToExpenses(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._convertPurchaseOrdersToExpenses_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._convertPurchaseOrdersToExpenses_closure0(), new A._convertPurchaseOrdersToExpenses_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _addPurchaseOrdersToInventorySuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._addPurchaseOrdersToInventorySuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._addPurchaseOrdersToInventorySuccess_closure0(), new A._addPurchaseOrdersToInventorySuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _acceptPurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._acceptPurchaseOrderSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._acceptPurchaseOrderSuccess_closure0(), new A._acceptPurchaseOrderSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _cancelPurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._cancelPurchaseOrderSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._cancelPurchaseOrderSuccess_closure0(), new A._cancelPurchaseOrderSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _archivePurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._archivePurchaseOrderSuccess_closure(action)); }, _deletePurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._deletePurchaseOrderSuccess_closure(action)); }, _restorePurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._restorePurchaseOrderSuccess_closure(action)); }, _emailPurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._emailPurchaseOrderSuccess_closure(action)); }, _approvePurchaseOrderSuccess(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._approvePurchaseOrderSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.purchaseOrders, new A._approvePurchaseOrderSuccess_closure0(), new A._approvePurchaseOrderSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _addPurchaseOrder(purchaseOrderState, action) { return purchaseOrderState.rebuild$1(new A._addPurchaseOrder_closure(action)); }, _updatePurchaseOrder(invoiceState, action) { return invoiceState.rebuild$1(new A._updatePurchaseOrder_closure(action.get$purchaseOrder())); }, _setLoadedPurchaseOrders(purchaseOrderState, action) { return purchaseOrderState.loadPurchaseOrders$1(action.purchaseOrders); }, _setLoadedCompany11(purchaseOrderState, action) { return purchaseOrderState.loadPurchaseOrders$1(action.userCompany.company.purchaseOrders); }, purchaseOrderUIReducer_closure: function purchaseOrderUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure159: function forceSelectedReducer_closure159() { }, forceSelectedReducer_closure160: function forceSelectedReducer_closure160() { }, forceSelectedReducer_closure161: function forceSelectedReducer_closure161() { }, forceSelectedReducer_closure162: function forceSelectedReducer_closure162() { }, forceSelectedReducer_closure163: function forceSelectedReducer_closure163() { }, forceSelectedReducer_closure164: function forceSelectedReducer_closure164() { }, forceSelectedReducer_closure165: function forceSelectedReducer_closure165() { }, forceSelectedReducer_closure166: function forceSelectedReducer_closure166() { }, tabIndexReducer_closure19: function tabIndexReducer_closure19() { }, tabIndexReducer_closure20: function tabIndexReducer_closure20() { }, historyActivityIdReducer_closure2: function historyActivityIdReducer_closure2() { }, editingItemReducer_closure3: function editingItemReducer_closure3() { }, editingItemReducer_closure4: function editingItemReducer_closure4() { }, selectedIdReducer_closure316: function selectedIdReducer_closure316() { }, selectedIdReducer_closure317: function selectedIdReducer_closure317() { }, selectedIdReducer_closure318: function selectedIdReducer_closure318() { }, selectedIdReducer_closure319: function selectedIdReducer_closure319() { }, selectedIdReducer_closure320: function selectedIdReducer_closure320() { }, selectedIdReducer_closure321: function selectedIdReducer_closure321() { }, selectedIdReducer_closure322: function selectedIdReducer_closure322() { }, selectedIdReducer_closure323: function selectedIdReducer_closure323() { }, selectedIdReducer_closure324: function selectedIdReducer_closure324() { }, selectedIdReducer_closure325: function selectedIdReducer_closure325() { }, selectedIdReducer_closure326: function selectedIdReducer_closure326() { }, selectedIdReducer_closure327: function selectedIdReducer_closure327() { }, selectedIdReducer_closure328: function selectedIdReducer_closure328() { }, selectedIdReducer_closure329: function selectedIdReducer_closure329() { }, selectedIdReducer_closure330: function selectedIdReducer_closure330() { }, selectedIdReducer_closure331: function selectedIdReducer_closure331() { }, selectedIdReducer_closure332: function selectedIdReducer_closure332() { }, selectedIdReducer_closure333: function selectedIdReducer_closure333() { }, selectedIdReducer_closure334: function selectedIdReducer_closure334() { }, editingReducer_closure103: function editingReducer_closure103() { }, editingReducer__closure44: function editingReducer__closure44() { }, editingReducer_closure104: function editingReducer_closure104() { }, editingReducer__closure43: function editingReducer__closure43() { }, editingReducer_closure105: function editingReducer_closure105() { }, editingReducer_closure106: function editingReducer_closure106() { }, editingReducer__closure42: function editingReducer__closure42() { }, editingReducer_closure107: function editingReducer_closure107() { }, editingReducer__closure41: function editingReducer__closure41() { }, editingReducer_closure108: function editingReducer_closure108() { }, editingReducer__closure40: function editingReducer__closure40(t0) { this.vendor = t0; }, editingReducer___closure2: function editingReducer___closure2() { }, editingReducer_closure109: function editingReducer_closure109() { }, editingReducer_closure110: function editingReducer_closure110() { }, editingReducer_closure111: function editingReducer_closure111() { }, editingReducer_closure112: function editingReducer_closure112() { }, editingReducer__closure39: function editingReducer__closure39(t0) { this.action = t0; }, editingReducer_closure113: function editingReducer_closure113() { }, editingReducer__closure38: function editingReducer__closure38(t0) { this.action = t0; }, _addPurchaseOrderItem_closure: function _addPurchaseOrderItem_closure(t0) { this.action = t0; }, _addPurchaseOrderItems_closure: function _addPurchaseOrderItems_closure(t0) { this.action = t0; }, _removePurchaseOrderItem_closure: function _removePurchaseOrderItem_closure(t0) { this.action = t0; }, _updatePurchaseOrderItem_closure: function _updatePurchaseOrderItem_closure(t0) { this.action = t0; }, _viewPurchaseOrderList_closure: function _viewPurchaseOrderList_closure() { }, _filterPurchaseOrdersByCustom1_closure: function _filterPurchaseOrdersByCustom1_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom1_closure0: function _filterPurchaseOrdersByCustom1_closure0(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom2_closure: function _filterPurchaseOrdersByCustom2_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom2_closure0: function _filterPurchaseOrdersByCustom2_closure0(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom3_closure: function _filterPurchaseOrdersByCustom3_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom3_closure0: function _filterPurchaseOrdersByCustom3_closure0(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom4_closure: function _filterPurchaseOrdersByCustom4_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByCustom4_closure0: function _filterPurchaseOrdersByCustom4_closure0(t0) { this.action = t0; }, _filterPurchaseOrdersByState_closure: function _filterPurchaseOrdersByState_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByState_closure0: function _filterPurchaseOrdersByState_closure0(t0) { this.action = t0; }, _filterPurchaseOrdersByStatus_closure: function _filterPurchaseOrdersByStatus_closure(t0) { this.action = t0; }, _filterPurchaseOrdersByStatus_closure0: function _filterPurchaseOrdersByStatus_closure0(t0) { this.action = t0; }, _filterPurchaseOrders_closure: function _filterPurchaseOrders_closure(t0, t1) { this.action = t0; this.purchaseOrderListState = t1; }, _sortPurchaseOrders_closure: function _sortPurchaseOrders_closure(t0) { this.action = t0; }, _startListMultiselect_closure20: function _startListMultiselect_closure20() { }, _addToListMultiselect_closure20: function _addToListMultiselect_closure20(t0) { this.action = t0; }, _removeFromListMultiselect_closure20: function _removeFromListMultiselect_closure20(t0) { this.action = t0; }, _clearListMultiselect_closure20: function _clearListMultiselect_closure20() { }, _markSentPurchaseOrderSuccess_closure0: function _markSentPurchaseOrderSuccess_closure0() { }, _markSentPurchaseOrderSuccess_closure1: function _markSentPurchaseOrderSuccess_closure1() { }, _markSentPurchaseOrderSuccess_closure: function _markSentPurchaseOrderSuccess_closure(t0) { this.purchaseOrderMap = t0; }, _convertPurchaseOrdersToExpenses_closure0: function _convertPurchaseOrdersToExpenses_closure0() { }, _convertPurchaseOrdersToExpenses_closure1: function _convertPurchaseOrdersToExpenses_closure1() { }, _convertPurchaseOrdersToExpenses_closure: function _convertPurchaseOrdersToExpenses_closure(t0) { this.purchaseOrderMap = t0; }, _addPurchaseOrdersToInventorySuccess_closure0: function _addPurchaseOrdersToInventorySuccess_closure0() { }, _addPurchaseOrdersToInventorySuccess_closure1: function _addPurchaseOrdersToInventorySuccess_closure1() { }, _addPurchaseOrdersToInventorySuccess_closure: function _addPurchaseOrdersToInventorySuccess_closure(t0) { this.purchaseOrderMap = t0; }, _acceptPurchaseOrderSuccess_closure0: function _acceptPurchaseOrderSuccess_closure0() { }, _acceptPurchaseOrderSuccess_closure1: function _acceptPurchaseOrderSuccess_closure1() { }, _acceptPurchaseOrderSuccess_closure: function _acceptPurchaseOrderSuccess_closure(t0) { this.purchaseOrderMap = t0; }, _cancelPurchaseOrderSuccess_closure0: function _cancelPurchaseOrderSuccess_closure0() { }, _cancelPurchaseOrderSuccess_closure1: function _cancelPurchaseOrderSuccess_closure1() { }, _cancelPurchaseOrderSuccess_closure: function _cancelPurchaseOrderSuccess_closure(t0) { this.purchaseOrderMap = t0; }, _archivePurchaseOrderSuccess_closure: function _archivePurchaseOrderSuccess_closure(t0) { this.action = t0; }, _deletePurchaseOrderSuccess_closure: function _deletePurchaseOrderSuccess_closure(t0) { this.action = t0; }, _restorePurchaseOrderSuccess_closure: function _restorePurchaseOrderSuccess_closure(t0) { this.action = t0; }, _emailPurchaseOrderSuccess_closure: function _emailPurchaseOrderSuccess_closure(t0) { this.action = t0; }, _approvePurchaseOrderSuccess_closure0: function _approvePurchaseOrderSuccess_closure0() { }, _approvePurchaseOrderSuccess_closure1: function _approvePurchaseOrderSuccess_closure1() { }, _approvePurchaseOrderSuccess_closure: function _approvePurchaseOrderSuccess_closure(t0) { this.purchaseOrderMap = t0; }, _addPurchaseOrder_closure: function _addPurchaseOrder_closure(t0) { this.action = t0; }, _addPurchaseOrder__closure: function _addPurchaseOrder__closure() { }, _updatePurchaseOrder_closure: function _updatePurchaseOrder_closure(t0) { this.purchaseOrder = t0; }, _updatePurchaseOrder__closure: function _updatePurchaseOrder__closure() { }, purchaseOrderContactSelector(purchaseOrder, vendor) { var t1 = {}, t2 = purchaseOrder.invitations._list, t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String*>"), contactIds = A.List_List$of(new A.MappedListIterable(t2, new A.purchaseOrderContactSelector_closure(), t3), true, t3._eval$1("ListIterable.E")); t1.contactIds = contactIds; if (B.JSArray_methods.contains$1(contactIds, vendor.get$primaryContact().id)) t1.contactIds = A._setArrayType([vendor.get$primaryContact().id], type$.JSArray_legacy_String); return B.JSArray_methods.firstWhere$2$orElse(vendor.contacts._list, new A.purchaseOrderContactSelector_closure0(t1), null); }, filteredPurchaseOrdersSelector(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, invoiceListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = invoiceList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredPurchaseOrdersSelector_closure(invoiceMap, vendorMap, selectionState, filterEntityType, filterEntityId, invoiceListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredPurchaseOrdersSelector_closure0(invoiceMap, invoiceListState, clientMap, vendorMap, userMap)); return list; }, purchaseOrderStatsForVendor(vendorId, purchaseOrderMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; purchaseOrderMap._map$_map.forEach$1(0, new A.purchaseOrderStatsForVendor_closure(t1, vendorId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasPurchaseOrderChanges(purchaseOrder, purchaseOrderMap) { var t1; if (purchaseOrder.get$isNew()) t1 = purchaseOrder.isChanged; else { t1 = purchaseOrder.id; t1 = !purchaseOrder.$eq(0, purchaseOrderMap._map$_map.$index(0, t1)); } return t1; }, purchaseOrderContactSelector_closure: function purchaseOrderContactSelector_closure() { }, purchaseOrderContactSelector_closure0: function purchaseOrderContactSelector_closure0(t0) { this._box_0 = t0; }, memoizedFilteredPurchaseOrderList_closure: function memoizedFilteredPurchaseOrderList_closure() { }, filteredPurchaseOrdersSelector_closure: function filteredPurchaseOrdersSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.invoiceMap = t0; _.vendorMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.invoiceListState = t5; }, filteredPurchaseOrdersSelector_closure0: function filteredPurchaseOrdersSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.invoiceMap = t0; _.invoiceListState = t1; _.clientMap = t2; _.vendorMap = t3; _.userMap = t4; }, memoizedPurchaseOrderStatsForVendor_closure: function memoizedPurchaseOrderStatsForVendor_closure() { }, purchaseOrderStatsForVendor_closure: function purchaseOrderStatsForVendor_closure(t0, t1) { this._box_0 = t0; this.vendorId = t1; }, _$PurchaseOrderState$_(list, map) { var _s18_ = "PurchaseOrderState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "list")); return new A._$PurchaseOrderState(map, list); }, _$PurchaseOrderUIState$_(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("PurchaseOrderUIState", "listUIState")); return new A._$PurchaseOrderUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, PurchaseOrderState: function PurchaseOrderState() { }, PurchaseOrderState_loadPurchaseOrders_closure0: function PurchaseOrderState_loadPurchaseOrders_closure0() { }, PurchaseOrderState_loadPurchaseOrders_closure1: function PurchaseOrderState_loadPurchaseOrders_closure1() { }, PurchaseOrderState_loadPurchaseOrders_closure: function PurchaseOrderState_loadPurchaseOrders_closure(t0, t1) { this.$this = t0; this.map = t1; }, PurchaseOrderUIState: function PurchaseOrderUIState() { }, _$PurchaseOrderStateSerializer: function _$PurchaseOrderStateSerializer() { }, _$PurchaseOrderUIStateSerializer: function _$PurchaseOrderUIStateSerializer() { }, _$PurchaseOrderState: function _$PurchaseOrderState(t0, t1) { this.map = t0; this.list = t1; this._purchase_order_state$__hashCode = null; }, PurchaseOrderStateBuilder: function PurchaseOrderStateBuilder() { this._purchase_order_state$_list = this._purchase_order_state$_map = this._purchase_order_state$_$v = null; }, _$PurchaseOrderUIState: function _$PurchaseOrderUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._purchase_order_state$__hashCode = null; }, PurchaseOrderUIStateBuilder: function PurchaseOrderUIStateBuilder() { var _ = this; _._purchase_order_state$_cancelCompleter = _._purchase_order_state$_saveCompleter = _._purchase_order_state$_tabIndex = _._purchase_order_state$_forceSelected = _._purchase_order_state$_selectedId = _._purchase_order_state$_listUIState = _._purchase_order_state$_historyActivityId = _._purchase_order_state$_editingItemIndex = _._purchase_order_state$_editing = _._purchase_order_state$_$v = null; }, _PurchaseOrderUIState_Object_EntityUIState: function _PurchaseOrderUIState_Object_EntityUIState() { }, handleQuoteAction(context, quotes, action) { return A.handleQuoteAction$body(context, quotes, action); }, handleQuoteAction$body(context, quotes, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, message, designId, t4, response, documentIds, _box_0, store, state, t1, t2, t3, quote, quoteIds; var $async$handleQuoteAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = J.getInterceptor$ax(quotes); t3 = type$.legacy_InvoiceEntity; quote = t3._as(t2.get$first(quotes)); quoteIds = t2.map$1$1(quotes, new A.handleQuoteAction_closure(), type$.legacy_String).toList$0(0); case 3: // switch switch (action) { case B.EntityAction_edit: // goto case $async$goto = 5; break; case B.EntityAction_viewPdf: // goto case $async$goto = 6; break; case B.EntityAction_clientPortal: // goto case $async$goto = 7; break; case B.EntityAction_convertToInvoice: // goto case $async$goto = 8; break; case B.EntityAction_approve: // goto case $async$goto = 9; break; case B.EntityAction_viewInvoice: // goto case $async$goto = 10; break; case B.EntityAction_markSent: // goto case $async$goto = 11; break; case B.EntityAction_sendEmail: // goto case $async$goto = 12; break; case B.EntityAction_bulkSendEmail: // goto case $async$goto = 13; break; case B.EntityAction_cloneToPurchaseOrder: // goto case $async$goto = 14; break; case B.EntityAction_cloneToOther: // goto case $async$goto = 15; break; case B.EntityAction_cloneToInvoice: // goto case $async$goto = 16; break; case B.EntityAction_clone: // goto case $async$goto = 17; break; case B.EntityAction_cloneToQuote: // goto case $async$goto = 18; break; case B.EntityAction_cloneToCredit: // goto case $async$goto = 19; break; case B.EntityAction_cloneToRecurring: // goto case $async$goto = 20; break; case B.EntityAction_download: // goto case $async$goto = 21; break; case B.EntityAction_bulkDownload: // goto case $async$goto = 22; break; case B.EntityAction_restore: // goto case $async$goto = 23; break; case B.EntityAction_archive: // goto case $async$goto = 24; break; case B.EntityAction_delete: // goto case $async$goto = 25; break; case B.EntityAction_toggleMultiselect: // goto case $async$goto = 26; break; case B.EntityAction_printPdf: // goto case $async$goto = 27; break; case B.EntityAction_more: // goto case $async$goto = 28; break; case B.EntityAction_documents: // goto case $async$goto = 29; break; default: // goto default $async$goto = 30; break; } break; case 5: // case A.editEntity(null, quote, true, null); // goto after switch $async$goto = 4; break; case 6: // case store.get$_dispatchers()[0].call$1(new A.ShowPdfQuote(quote, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = quote.invitations._list; $async$goto = 33; return A._asyncAwait(A.canLaunch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true"), $async$handleQuoteAction); case 33: // returning from await. $async$goto = $async$result ? 31 : 32; break; case 31: // then $async$goto = 34; return A._asyncAwait(A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true", false, false), $async$handleQuoteAction); case 34: // returning from await. case 32: // join // goto after switch $async$goto = 4; break; case 8: // case t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "converted_quote"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ConvertQuotes(quoteIds, t1)); // goto after switch $async$goto = 4; break; case 9: // case if (quoteIds.length > 1) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), "approved_quotes"); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), "approved_quotes"); message = J.replaceFirst$2$s(t1, ":value", B.JSInt_methods.toString$0(quoteIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "approve_quote"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ApproveQuotes(quoteIds, t1)); // goto after switch $async$goto = 4; break; case 10: // case A.viewEntityById(false, quote.invoiceId, B.EntityType_invoice, null, false, true); // goto after switch $async$goto = 4; break; case 11: // case t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "marked_quote_as_sent"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.MarkSentQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 12: // case case 13: // case _box_0.emailValid = true; t2.forEach$1(quotes, new A.handleQuoteAction_closure0(_box_0, state)); if (!_box_0.emailValid) { A.showMessageDialog(context, t1.get$clientEmailNotSet(), null, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new A.handleQuoteAction_closure1(context, state, quote), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === B.EntityAction_sendEmail) { t1 = A.snackBarCompleter(context, t1.get$emailedQuote(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ShowEmailQuote(quote, context, t1)); } else { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), "bulk_email_quotes"); t2 = t3 == null ? J.$index$asx(t2.$index(0, "en"), "bulk_email_quotes") : t3; A.confirmCallback(false, new A.handleQuoteAction_closure2(store, context, quoteIds, t1), context, t2, false, null); } // goto after switch $async$goto = 4; break; case 14: // case designId = A.getDesignIdForVendorByEntity(B.EntityType_purchaseOrder, state, quote.vendorId); A.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new A.handleQuoteAction_closure3(designId)), false); // goto after switch $async$goto = 4; break; case 15: // case A.cloneToDialog(context, quote); // goto after switch $async$goto = 4; break; case 16: // case designId = A.getDesignIdForClientByEntity(quote.clientId, B.EntityType_invoice, state); A.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new A.handleQuoteAction_closure4(designId)), false); // goto after switch $async$goto = 4; break; case 17: // case case 18: // case A.createEntity(null, null, context, quote.get$clone(quote), false); // goto after switch $async$goto = 4; break; case 19: // case designId = A.getDesignIdForClientByEntity(quote.clientId, B.EntityType_credit, state); A.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new A.handleQuoteAction_closure5(designId)), false); // goto after switch $async$goto = 4; break; case 20: // case designId = A.getDesignIdForClientByEntity(quote.clientId, B.EntityType_invoice, state); A.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new A.handleQuoteAction_closure6(designId)), false); // goto after switch $async$goto = 4; break; case 21: // case t1 = quote.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "/download?t=" + Date.now(), null, false); // goto after switch $async$goto = 4; break; case 22: // case t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 23: // case if (quoteIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_quotes"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(quoteIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "restored_quote"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 24: // case if (quoteIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_quotes"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(quoteIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "archived_quote"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 25: // case if (quoteIds.length > 1) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_quotes"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(quoteIds.length)); } else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "deleted_quote"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 26: // case if (A._lateReadCheck(store.__Store__state, "_state").uiState.quoteUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartQuoteMultiselect()); for (t1 = t2.get$iterator(quotes); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.quoteUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.AddToQuoteMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.RemoveFromQuoteMultiselect(t2)); } // goto after switch $async$goto = 4; break; case 27: // case t1 = B.JSArray_methods.get$first(quote.invitations._list).link; t2 = Date.now(); store.get$_dispatchers()[0].call$1(new A.StartSaving()); $async$goto = 35; return A._asyncAwait(new A.WebClient().$get$3$rawResponse(0, t1 + "/download?t=" + t2, "", true), $async$handleQuoteAction); case 35: // returning from await. response = $async$result; store.get$_dispatchers()[0].call$1(new A.StopSaving()); $async$goto = 36; return A._asyncAwait(A.Printing_layoutPdf(true, B.PdfPageFormat_gg4, "Document", new A.handleQuoteAction_closure7(response), false), $async$handleQuoteAction); case 36: // returning from await. // goto after switch $async$goto = 4; break; case 28: // case A.showEntityActionsDialog(null, A._setArrayType([quote], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 29: // case documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t2 = t2.get$iterator(quotes); t2.moveNext$0();) for (t4 = t3._as(t2.get$current(t2)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); // goto after switch $async$goto = 4; break; case 30: // default A.print("## ERROR: unhandled action " + A.S(action) + " in quote_actions"); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleQuoteAction, $async$completer); }, ViewQuoteList: function ViewQuoteList() { }, ViewQuote: function ViewQuote(t0) { this.quoteId = t0; }, EditQuote: function EditQuote(t0, t1) { this.quote = t0; this.quoteItemIndex = t1; }, ShowEmailQuote: function ShowEmailQuote(t0, t1, t2) { this.quote = t0; this.context = t1; this.completer = t2; }, ShowPdfQuote: function ShowPdfQuote(t0, t1, t2) { this.quote = t0; this.context = t1; this.activityId = t2; }, EditQuoteItem: function EditQuoteItem(t0) { this.quoteItemIndex = t0; }, UpdateQuote: function UpdateQuote(t0) { this.quote = t0; }, UpdateQuoteClient: function UpdateQuoteClient(t0) { this.client = t0; }, LoadQuote: function LoadQuote(t0, t1) { this.completer = t0; this.quoteId = t1; }, LoadQuotes: function LoadQuotes(t0, t1) { this.completer = t0; this.page = t1; }, LoadQuoteRequest: function LoadQuoteRequest() { }, LoadQuoteFailure: function LoadQuoteFailure(t0) { this.error = t0; }, LoadQuoteSuccess: function LoadQuoteSuccess(t0) { this.quote = t0; }, LoadQuotesRequest: function LoadQuotesRequest() { }, LoadQuotesFailure: function LoadQuotesFailure(t0) { this.error = t0; }, LoadQuotesSuccess: function LoadQuotesSuccess(t0) { this.quotes = t0; }, AddQuoteContact: function AddQuoteContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveQuoteContact: function RemoveQuoteContact(t0) { this.invitation = t0; }, AddQuoteItem: function AddQuoteItem(t0) { this.quoteItem = t0; }, MoveQuoteItem: function MoveQuoteItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddQuoteItems: function AddQuoteItems(t0) { this.quoteItems = t0; }, UpdateQuoteItem: function UpdateQuoteItem(t0, t1) { this.index = t0; this.quoteItem = t1; }, DeleteQuoteItem: function DeleteQuoteItem(t0) { this.index = t0; }, SaveQuoteRequest: function SaveQuoteRequest(t0, t1, t2) { this.completer = t0; this.quote = t1; this.action = t2; }, SaveQuoteSuccess: function SaveQuoteSuccess(t0) { this.quote = t0; }, AddQuoteSuccess: function AddQuoteSuccess(t0) { this.quote = t0; }, SaveQuoteFailure: function SaveQuoteFailure() { }, EmailQuoteRequest: function EmailQuoteRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.quoteId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailQuoteSuccess: function EmailQuoteSuccess(t0) { this.quote = t0; }, EmailQuoteFailure: function EmailQuoteFailure() { }, MarkSentQuotesRequest: function MarkSentQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, MarkSentQuoteSuccess: function MarkSentQuoteSuccess(t0) { this.quotes = t0; }, MarkSentQuoteFailure: function MarkSentQuoteFailure() { }, BulkEmailQuotesRequest: function BulkEmailQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, BulkEmailQuotesSuccess: function BulkEmailQuotesSuccess() { }, BulkEmailQuotesFailure: function BulkEmailQuotesFailure() { }, ArchiveQuotesRequest: function ArchiveQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, ArchiveQuotesSuccess: function ArchiveQuotesSuccess(t0) { this.quotes = t0; }, ArchiveQuotesFailure: function ArchiveQuotesFailure() { }, DeleteQuotesRequest: function DeleteQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, DeleteQuotesSuccess: function DeleteQuotesSuccess(t0) { this.quotes = t0; }, DeleteQuotesFailure: function DeleteQuotesFailure() { }, DownloadQuotesRequest: function DownloadQuotesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DownloadQuotesSuccess: function DownloadQuotesSuccess() { }, DownloadQuotesFailure: function DownloadQuotesFailure() { }, RestoreQuotesRequest: function RestoreQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, RestoreQuotesSuccess: function RestoreQuotesSuccess(t0) { this.quotes = t0; }, RestoreQuotesFailure: function RestoreQuotesFailure() { }, FilterQuotes: function FilterQuotes(t0) { this.filter = t0; }, SortQuotes: function SortQuotes(t0) { this.field = t0; }, FilterQuotesByState: function FilterQuotesByState(t0) { this.state = t0; }, FilterQuotesByStatus: function FilterQuotesByStatus(t0) { this.status = t0; }, FilterQuotesByCustom1: function FilterQuotesByCustom1(t0) { this.value = t0; }, FilterQuotesByCustom2: function FilterQuotesByCustom2(t0) { this.value = t0; }, FilterQuotesByCustom3: function FilterQuotesByCustom3(t0) { this.value = t0; }, FilterQuotesByCustom4: function FilterQuotesByCustom4(t0) { this.value = t0; }, ConvertQuotes: function ConvertQuotes(t0, t1) { this.quoteIds = t0; this.completer = t1; }, ConvertQuoteSuccess: function ConvertQuoteSuccess(t0) { this.quotes = t0; }, ConvertQuoteFailure: function ConvertQuoteFailure() { }, ApproveQuotes: function ApproveQuotes(t0, t1) { this.quoteIds = t0; this.completer = t1; }, ApproveQuoteSuccess: function ApproveQuoteSuccess() { }, ApproveQuoteFailure: function ApproveQuoteFailure() { }, SaveQuoteDocumentRequest: function SaveQuoteDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.quote = t2; }, SaveQuoteDocumentFailure: function SaveQuoteDocumentFailure() { }, handleQuoteAction_closure: function handleQuoteAction_closure() { }, handleQuoteAction_closure0: function handleQuoteAction_closure0(t0, t1) { this._box_0 = t0; this.state = t1; }, handleQuoteAction_closure1: function handleQuoteAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.quote = t2; }, handleQuoteAction_closure2: function handleQuoteAction_closure2(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.quoteIds = t2; _.localization = t3; }, handleQuoteAction_closure3: function handleQuoteAction_closure3(t0) { this.designId = t0; }, handleQuoteAction_closure4: function handleQuoteAction_closure4(t0) { this.designId = t0; }, handleQuoteAction_closure5: function handleQuoteAction_closure5(t0) { this.designId = t0; }, handleQuoteAction_closure6: function handleQuoteAction_closure6(t0) { this.designId = t0; }, handleQuoteAction_closure7: function handleQuoteAction_closure7(t0) { this.response = t0; }, StartQuoteMultiselect: function StartQuoteMultiselect() { }, AddToQuoteMultiselect: function AddToQuoteMultiselect(t0) { this.entity = t0; }, RemoveFromQuoteMultiselect: function RemoveFromQuoteMultiselect(t0) { this.entity = t0; }, ClearQuoteMultiselect: function ClearQuoteMultiselect() { }, UpdateQuoteTab: function UpdateQuoteTab(t0) { this.tabIndex = t0; }, _viewQuote() { return new A._viewQuote_closure(); }, _viewQuoteList() { return new A._viewQuoteList_closure0(); }, _editQuote() { return new A._editQuote_closure(); }, _showEmailQuote() { return new A._showEmailQuote_closure(); }, _showPdfQuote() { return new A._showPdfQuote_closure(); }, _archiveQuote(repository) { return new A._archiveQuote_closure(repository); }, _deleteQuote(repository) { return new A._deleteQuote_closure(repository); }, _restoreQuote(repository) { return new A._restoreQuote_closure(repository); }, _convertQuote(repository) { return new A._convertQuote_closure(repository); }, _approveQuote(repository) { return new A._approveQuote_closure(repository); }, _markSentQuote(repository) { return new A._markSentQuote_closure(repository); }, _emailQuote(repository) { return new A._emailQuote_closure(repository); }, _saveQuote(repository) { return new A._saveQuote_closure(repository); }, _loadQuote(repository) { return new A._loadQuote_closure(repository); }, _downloadQuotes(repository) { return new A._downloadQuotes_closure(repository); }, _bulkEmailQuotes(repository) { return new A._bulkEmailQuotes_closure(repository); }, _loadQuotes(repository) { return new A._loadQuotes_closure(repository); }, _saveDocument6(repository) { return new A._saveDocument_closure5(repository); }, _viewQuote_closure: function _viewQuote_closure() { }, _viewQuoteList_closure0: function _viewQuoteList_closure0() { }, _viewQuoteList__closure: function _viewQuoteList__closure() { }, _editQuote_closure: function _editQuote_closure() { }, _showEmailQuote_closure: function _showEmailQuote_closure() { }, _showPdfQuote_closure: function _showPdfQuote_closure() { }, _archiveQuote_closure: function _archiveQuote_closure(t0) { this.repository = t0; }, _archiveQuote__closure: function _archiveQuote__closure(t0) { this.store = t0; }, _archiveQuote__closure0: function _archiveQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveQuote__closure1: function _archiveQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _deleteQuote_closure: function _deleteQuote_closure(t0) { this.repository = t0; }, _deleteQuote__closure: function _deleteQuote__closure(t0) { this.store = t0; }, _deleteQuote__closure0: function _deleteQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteQuote__closure1: function _deleteQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _restoreQuote_closure: function _restoreQuote_closure(t0) { this.repository = t0; }, _restoreQuote__closure: function _restoreQuote__closure(t0) { this.store = t0; }, _restoreQuote__closure0: function _restoreQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreQuote__closure1: function _restoreQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _convertQuote_closure: function _convertQuote_closure(t0) { this.repository = t0; }, _convertQuote__closure: function _convertQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _convertQuote__closure0: function _convertQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _approveQuote_closure: function _approveQuote_closure(t0) { this.repository = t0; }, _approveQuote__closure: function _approveQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _approveQuote__closure0: function _approveQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markSentQuote_closure: function _markSentQuote_closure(t0) { this.repository = t0; }, _markSentQuote__closure: function _markSentQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _markSentQuote__closure0: function _markSentQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailQuote_closure: function _emailQuote_closure(t0) { this.repository = t0; }, _emailQuote__closure: function _emailQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailQuote__closure0: function _emailQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveQuote_closure: function _saveQuote_closure(t0) { this.repository = t0; }, _saveQuote__closure: function _saveQuote__closure(t0) { this.action = t0; }, _saveQuote___closure: function _saveQuote___closure() { }, _saveQuote__closure0: function _saveQuote__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveQuote__closure1: function _saveQuote__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadQuote_closure: function _loadQuote_closure(t0) { this.repository = t0; }, _loadQuote__closure: function _loadQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadQuote__closure0: function _loadQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadQuotes_closure: function _downloadQuotes_closure(t0) { this.repository = t0; }, _downloadQuotes__closure: function _downloadQuotes__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadQuotes__closure0: function _downloadQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailQuotes_closure: function _bulkEmailQuotes_closure(t0) { this.repository = t0; }, _bulkEmailQuotes__closure: function _bulkEmailQuotes__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailQuotes__closure0: function _bulkEmailQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadQuotes_closure: function _loadQuotes_closure(t0) { this.repository = t0; }, _loadQuotes__closure: function _loadQuotes__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _loadQuotes__closure0: function _loadQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure5: function _saveDocument_closure5(t0) { this.repository = t0; }, _saveDocument__closure11: function _saveDocument__closure11(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure12: function _saveDocument__closure12(t0, t1) { this.store = t0; this.action = t1; }, quoteUIReducer(state, action) { var t1; state.toString; t1 = new A.QuoteUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._quote_state$_$v = state; new A.quoteUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing11(quote, action) { var _null = null; return A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); }, _updateEditing12(quote, action) { return action.get$quote(); }, _addQuoteItem(quote, action) { return quote.rebuild$1(new A._addQuoteItem_closure(action)); }, _addQuoteItems(quote, action) { return quote.rebuild$1(new A._addQuoteItems_closure(action)); }, _removeQuoteItem(quote, action) { if (quote.lineItems._list.length <= action.index) return quote; return quote.rebuild$1(new A._removeQuoteItem_closure(action)); }, _updateQuoteItem(quote, action) { if (quote.lineItems._list.length <= action.index) return quote; return quote.rebuild$1(new A._updateQuoteItem_closure(action)); }, _viewQuoteList0(quoteListState, action) { return quoteListState.rebuild$1(new A._viewQuoteList_closure()); }, _filterQuotesByCustom1(quoteListState, action) { var t1 = quoteListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByCustom1_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByCustom1_closure0(action)); }, _filterQuotesByCustom2(quoteListState, action) { var t1 = quoteListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByCustom2_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByCustom2_closure0(action)); }, _filterQuotesByCustom3(quoteListState, action) { var t1 = quoteListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByCustom3_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByCustom3_closure0(action)); }, _filterQuotesByCustom4(quoteListState, action) { var t1 = quoteListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByCustom4_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByCustom4_closure0(action)); }, _filterQuotesByState(quoteListState, action) { var t1 = quoteListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByState_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByState_closure0(action)); }, _filterQuotesByStatus(quoteListState, action) { var t1 = quoteListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return quoteListState.rebuild$1(new A._filterQuotesByStatus_closure(action)); else return quoteListState.rebuild$1(new A._filterQuotesByStatus_closure0(action)); }, _filterQuotes(quoteListState, action) { return quoteListState.rebuild$1(new A._filterQuotes_closure(action, quoteListState)); }, _sortQuotes(quoteListState, action) { return quoteListState.rebuild$1(new A._sortQuotes_closure(action)); }, _startListMultiselect13(quoteListState, action) { return quoteListState.rebuild$1(new A._startListMultiselect_closure()); }, _addToListMultiselect13(quoteListState, action) { return quoteListState.rebuild$1(new A._addToListMultiselect_closure(action)); }, _removeFromListMultiselect13(quoteListState, action) { return quoteListState.rebuild$1(new A._removeFromListMultiselect_closure(action)); }, _clearListMultiselect13(quoteListState, action) { return quoteListState.rebuild$1(new A._clearListMultiselect_closure()); }, _markSentQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._markSentQuoteSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.quotes, new A._markSentQuoteSuccess_closure0(), new A._markSentQuoteSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _archiveQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._archiveQuoteSuccess_closure(action)); }, _deleteQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._deleteQuoteSuccess_closure(action)); }, _restoreQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._restoreQuoteSuccess_closure(action)); }, _emailQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._emailQuoteSuccess_closure(action)); }, _convertQuoteSuccess(quoteState, action) { return quoteState.rebuild$1(new A._convertQuoteSuccess_closure(A.LinkedHashMap_LinkedHashMap$fromIterable(action.quotes, new A._convertQuoteSuccess_closure0(), new A._convertQuoteSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _addQuote(quoteState, action) { return quoteState.rebuild$1(new A._addQuote_closure(action)); }, _updateQuote(invoiceState, action) { return invoiceState.rebuild$1(new A._updateQuote_closure(action.get$quote())); }, _setLoadedQuotes(quoteState, action) { return quoteState.loadQuotes$1(action.quotes); }, _setLoadedCompany12(quoteState, action) { return quoteState.loadQuotes$1(action.userCompany.company.quotes); }, quoteUIReducer_closure: function quoteUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure: function forceSelectedReducer_closure() { }, forceSelectedReducer_closure0: function forceSelectedReducer_closure0() { }, forceSelectedReducer_closure1: function forceSelectedReducer_closure1() { }, forceSelectedReducer_closure2: function forceSelectedReducer_closure2() { }, forceSelectedReducer_closure3: function forceSelectedReducer_closure3() { }, forceSelectedReducer_closure4: function forceSelectedReducer_closure4() { }, forceSelectedReducer_closure5: function forceSelectedReducer_closure5() { }, forceSelectedReducer_closure6: function forceSelectedReducer_closure6() { }, tabIndexReducer_closure: function tabIndexReducer_closure() { }, tabIndexReducer_closure0: function tabIndexReducer_closure0() { }, historyActivityIdReducer_closure: function historyActivityIdReducer_closure() { }, editingItemReducer_closure: function editingItemReducer_closure() { }, editingItemReducer_closure0: function editingItemReducer_closure0() { }, selectedIdReducer_closure: function selectedIdReducer_closure() { }, selectedIdReducer_closure0: function selectedIdReducer_closure0() { }, selectedIdReducer_closure1: function selectedIdReducer_closure1() { }, selectedIdReducer_closure2: function selectedIdReducer_closure2() { }, selectedIdReducer_closure3: function selectedIdReducer_closure3() { }, selectedIdReducer_closure4: function selectedIdReducer_closure4() { }, selectedIdReducer_closure5: function selectedIdReducer_closure5() { }, selectedIdReducer_closure6: function selectedIdReducer_closure6() { }, selectedIdReducer_closure7: function selectedIdReducer_closure7() { }, selectedIdReducer_closure8: function selectedIdReducer_closure8() { }, selectedIdReducer_closure9: function selectedIdReducer_closure9() { }, selectedIdReducer_closure10: function selectedIdReducer_closure10() { }, selectedIdReducer_closure11: function selectedIdReducer_closure11() { }, selectedIdReducer_closure12: function selectedIdReducer_closure12() { }, selectedIdReducer_closure13: function selectedIdReducer_closure13() { }, selectedIdReducer_closure14: function selectedIdReducer_closure14() { }, selectedIdReducer_closure15: function selectedIdReducer_closure15() { }, selectedIdReducer_closure16: function selectedIdReducer_closure16() { }, selectedIdReducer_closure17: function selectedIdReducer_closure17() { }, editingReducer_closure: function editingReducer_closure() { }, editingReducer__closure5: function editingReducer__closure5() { }, editingReducer_closure0: function editingReducer_closure0() { }, editingReducer__closure4: function editingReducer__closure4() { }, editingReducer_closure1: function editingReducer_closure1() { }, editingReducer_closure2: function editingReducer_closure2() { }, editingReducer__closure3: function editingReducer__closure3() { }, editingReducer_closure3: function editingReducer_closure3() { }, editingReducer__closure2: function editingReducer__closure2() { }, editingReducer_closure4: function editingReducer_closure4() { }, editingReducer__closure1: function editingReducer__closure1(t0) { this.client = t0; }, editingReducer___closure: function editingReducer___closure() { }, editingReducer_closure5: function editingReducer_closure5() { }, editingReducer_closure6: function editingReducer_closure6() { }, editingReducer_closure7: function editingReducer_closure7() { }, editingReducer_closure8: function editingReducer_closure8() { }, editingReducer__closure0: function editingReducer__closure0(t0) { this.action = t0; }, editingReducer_closure9: function editingReducer_closure9() { }, editingReducer__closure: function editingReducer__closure(t0) { this.action = t0; }, _addQuoteItem_closure: function _addQuoteItem_closure(t0) { this.action = t0; }, _addQuoteItems_closure: function _addQuoteItems_closure(t0) { this.action = t0; }, _removeQuoteItem_closure: function _removeQuoteItem_closure(t0) { this.action = t0; }, _updateQuoteItem_closure: function _updateQuoteItem_closure(t0) { this.action = t0; }, _viewQuoteList_closure: function _viewQuoteList_closure() { }, _filterQuotesByCustom1_closure: function _filterQuotesByCustom1_closure(t0) { this.action = t0; }, _filterQuotesByCustom1_closure0: function _filterQuotesByCustom1_closure0(t0) { this.action = t0; }, _filterQuotesByCustom2_closure: function _filterQuotesByCustom2_closure(t0) { this.action = t0; }, _filterQuotesByCustom2_closure0: function _filterQuotesByCustom2_closure0(t0) { this.action = t0; }, _filterQuotesByCustom3_closure: function _filterQuotesByCustom3_closure(t0) { this.action = t0; }, _filterQuotesByCustom3_closure0: function _filterQuotesByCustom3_closure0(t0) { this.action = t0; }, _filterQuotesByCustom4_closure: function _filterQuotesByCustom4_closure(t0) { this.action = t0; }, _filterQuotesByCustom4_closure0: function _filterQuotesByCustom4_closure0(t0) { this.action = t0; }, _filterQuotesByState_closure: function _filterQuotesByState_closure(t0) { this.action = t0; }, _filterQuotesByState_closure0: function _filterQuotesByState_closure0(t0) { this.action = t0; }, _filterQuotesByStatus_closure: function _filterQuotesByStatus_closure(t0) { this.action = t0; }, _filterQuotesByStatus_closure0: function _filterQuotesByStatus_closure0(t0) { this.action = t0; }, _filterQuotes_closure: function _filterQuotes_closure(t0, t1) { this.action = t0; this.quoteListState = t1; }, _sortQuotes_closure: function _sortQuotes_closure(t0) { this.action = t0; }, _startListMultiselect_closure: function _startListMultiselect_closure() { }, _addToListMultiselect_closure: function _addToListMultiselect_closure(t0) { this.action = t0; }, _removeFromListMultiselect_closure: function _removeFromListMultiselect_closure(t0) { this.action = t0; }, _clearListMultiselect_closure: function _clearListMultiselect_closure() { }, _markSentQuoteSuccess_closure0: function _markSentQuoteSuccess_closure0() { }, _markSentQuoteSuccess_closure1: function _markSentQuoteSuccess_closure1() { }, _markSentQuoteSuccess_closure: function _markSentQuoteSuccess_closure(t0) { this.quoteMap = t0; }, _archiveQuoteSuccess_closure: function _archiveQuoteSuccess_closure(t0) { this.action = t0; }, _deleteQuoteSuccess_closure: function _deleteQuoteSuccess_closure(t0) { this.action = t0; }, _restoreQuoteSuccess_closure: function _restoreQuoteSuccess_closure(t0) { this.action = t0; }, _emailQuoteSuccess_closure: function _emailQuoteSuccess_closure(t0) { this.action = t0; }, _convertQuoteSuccess_closure0: function _convertQuoteSuccess_closure0() { }, _convertQuoteSuccess_closure1: function _convertQuoteSuccess_closure1() { }, _convertQuoteSuccess_closure: function _convertQuoteSuccess_closure(t0) { this.quoteMap = t0; }, _addQuote_closure: function _addQuote_closure(t0) { this.action = t0; }, _addQuote__closure: function _addQuote__closure() { }, _updateQuote_closure: function _updateQuote_closure(t0) { this.quote = t0; }, _updateQuote__closure: function _updateQuote__closure() { }, quoteContactSelector(quote, client) { var t1 = {}, t2 = quote.invitations._list, t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String*>"), contactIds = A.List_List$of(new A.MappedListIterable(t2, new A.quoteContactSelector_closure(), t3), true, t3._eval$1("ListIterable.E")); t1.contactIds = contactIds; if (B.JSArray_methods.contains$1(contactIds, client.get$primaryContact().id)) t1.contactIds = A._setArrayType([client.get$primaryContact().id], type$.JSArray_legacy_String); return B.JSArray_methods.firstWhere$2$orElse(client.contacts._list, new A.quoteContactSelector_closure0(t1), null); }, filteredQuotesSelector(selectionState, quoteMap, quoteList, clientMap, vendorMap, quoteListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = quoteList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredQuotesSelector_closure(quoteMap, clientMap, selectionState, filterEntityType, filterEntityId, quoteListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredQuotesSelector_closure0(quoteMap, quoteListState, clientMap, vendorMap, userMap)); return list; }, quoteStatsForClient(clientId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; quoteMap._map$_map.forEach$1(0, new A.quoteStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, quoteStatsForDesign(designId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; quoteMap._map$_map.forEach$1(0, new A.quoteStatsForDesign_closure(t1, designId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, quoteStatsForUser(userId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; quoteMap._map$_map.forEach$1(0, new A.quoteStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasQuoteChanges(quote, quoteMap) { var t1; if (quote.get$isNew()) t1 = quote.isChanged; else { t1 = quote.id; t1 = !quote.$eq(0, quoteMap._map$_map.$index(0, t1)); } return t1; }, quoteContactSelector_closure: function quoteContactSelector_closure() { }, quoteContactSelector_closure0: function quoteContactSelector_closure0(t0) { this._box_0 = t0; }, memoizedFilteredQuoteList_closure: function memoizedFilteredQuoteList_closure() { }, filteredQuotesSelector_closure: function filteredQuotesSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.quoteMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.quoteListState = t5; }, filteredQuotesSelector_closure0: function filteredQuotesSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.quoteMap = t0; _.quoteListState = t1; _.clientMap = t2; _.vendorMap = t3; _.userMap = t4; }, memoizedQuoteStatsForClient_closure: function memoizedQuoteStatsForClient_closure() { }, quoteStatsForClient_closure: function quoteStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedQuoteStatsForDesign_closure: function memoizedQuoteStatsForDesign_closure() { }, quoteStatsForDesign_closure: function quoteStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedQuoteStatsForUser_closure: function memoizedQuoteStatsForUser_closure() { }, quoteStatsForUser_closure: function quoteStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$QuoteState$_(list, map) { var _s10_ = "QuoteState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "list")); return new A._$QuoteState(map, list); }, _$QuoteUIState$_(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("QuoteUIState", "listUIState")); return new A._$QuoteUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, QuoteState: function QuoteState() { }, QuoteState_loadQuotes_closure0: function QuoteState_loadQuotes_closure0() { }, QuoteState_loadQuotes_closure1: function QuoteState_loadQuotes_closure1() { }, QuoteState_loadQuotes_closure: function QuoteState_loadQuotes_closure(t0, t1) { this.$this = t0; this.map = t1; }, QuoteUIState: function QuoteUIState() { }, _$QuoteStateSerializer: function _$QuoteStateSerializer() { }, _$QuoteUIStateSerializer: function _$QuoteUIStateSerializer() { }, _$QuoteState: function _$QuoteState(t0, t1) { this.map = t0; this.list = t1; this._quote_state$__hashCode = null; }, QuoteStateBuilder: function QuoteStateBuilder() { this._quote_state$_list = this._quote_state$_map = this._quote_state$_$v = null; }, _$QuoteUIState: function _$QuoteUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._quote_state$__hashCode = null; }, QuoteUIStateBuilder: function QuoteUIStateBuilder() { var _ = this; _._cancelCompleter = _._saveCompleter = _._quote_state$_tabIndex = _._forceSelected = _._selectedId = _._listUIState = _._historyActivityId = _._editingItemIndex = _._editing = _._quote_state$_$v = null; }, _QuoteUIState_Object_EntityUIState: function _QuoteUIState_Object_EntityUIState() { }, handleRecurringExpenseAction(context, recurringExpenses, action) { var store, t1, t2, recurringExpense, t3, recurringExpenseIds, _i, documentIds, t4, _null = null, _s26_ = "restored_recurring_expense", _s26_0 = "archived_recurring_expense", _s25_ = "deleted_recurring_expense", _s12_ = "_dispatchers"; if (recurringExpenses.length === 0) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = type$.legacy_ExpenseEntity; recurringExpense = t2._as(B.JSArray_methods.get$first(recurringExpenses)); t3 = A._arrayInstanceType(recurringExpenses)._eval$1("MappedListIterable<1,String*>"); recurringExpenseIds = A.List_List$of(new A.MappedListIterable(recurringExpenses, new A.handleRecurringExpenseAction_closure(), t3), true, t3._eval$1("ListIterable.E")); switch (action) { case B.EntityAction_edit: A.editEntity(_null, recurringExpense, true, _null); break; case B.EntityAction_restore: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s26_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s26_); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreRecurringExpensesRequest(t1, recurringExpenseIds)); break; case B.EntityAction_archive: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s26_0); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s26_0); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringExpensesRequest(t1, recurringExpenseIds)); break; case B.EntityAction_delete: t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s25_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s25_); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteRecurringExpensesRequest(t1, recurringExpenseIds)); break; case B.EntityAction_start: t2 = recurringExpense.lastSentDate; t1 = t2.length === 0 ? t1.get$startedRecurringInvoice() : t1.get$resumedRecurringInvoice(); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StartRecurringExpensesRequest(t1, recurringExpenseIds)); break; case B.EntityAction_stop: t1 = A.snackBarCompleter(context, t1.get$stoppedRecurringInvoice(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StopRecurringExpensesRequest(t1, recurringExpenseIds)); break; case B.EntityAction_cloneToExpense: A.createEntity(_null, _null, context, recurringExpense.get$clone(recurringExpense).rebuild$1(new A.handleRecurringExpenseAction_closure0()), false); break; case B.EntityAction_clone: case B.EntityAction_cloneToRecurring: A.createEntity(_null, _null, context, recurringExpense.get$clone(recurringExpense).rebuild$1(new A.handleRecurringExpenseAction_closure1()), false); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.recurringExpenseUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartRecurringExpenseMultiselect()); t1 = recurringExpenses.length; if (t1 === 0) break; for (_i = 0; _i < recurringExpenses.length; recurringExpenses.length === t1 || (0, A.throwConcurrentModificationError)(recurringExpenses), ++_i) { recurringExpense = recurringExpenses[_i]; t2 = A._lateReadCheck(store.__Store__state, "_state").uiState.recurringExpenseUIState.listUIState; t3 = J.get$id$x(recurringExpense); t2 = t2.selectedIds; t2 = t2 != null && B.JSArray_methods.contains$1(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.AddToRecurringExpenseMultiselect(recurringExpense)); else J.$index$asx(A._lateReadCheck(t3, _s12_), 0).call$1(new A.RemoveFromRecurringExpenseMultiselect(recurringExpense)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([recurringExpense], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t3 = recurringExpenses.length, _i = 0; _i < recurringExpenses.length; recurringExpenses.length === t3 || (0, A.throwConcurrentModificationError)(recurringExpenses), ++_i) for (t4 = t2._as(recurringExpenses[_i]).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in recurring_expense_actions"); break; } }, ViewRecurringExpenseList: function ViewRecurringExpenseList() { }, ViewRecurringExpense: function ViewRecurringExpense(t0) { this.recurringExpenseId = t0; }, EditRecurringExpense: function EditRecurringExpense(t0) { this.recurringExpense = t0; }, UpdateRecurringExpense: function UpdateRecurringExpense(t0) { this.recurringExpense = t0; }, LoadRecurringExpense: function LoadRecurringExpense(t0, t1) { this.completer = t0; this.recurringExpenseId = t1; }, LoadRecurringExpenses: function LoadRecurringExpenses() { }, LoadRecurringExpenseRequest: function LoadRecurringExpenseRequest() { }, LoadRecurringExpenseFailure: function LoadRecurringExpenseFailure(t0) { this.error = t0; }, LoadRecurringExpenseSuccess: function LoadRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, LoadRecurringExpensesRequest: function LoadRecurringExpensesRequest() { }, LoadRecurringExpensesFailure: function LoadRecurringExpensesFailure(t0) { this.error = t0; }, LoadRecurringExpensesSuccess: function LoadRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, SaveRecurringExpenseRequest: function SaveRecurringExpenseRequest(t0, t1, t2) { this.completer = t0; this.recurringExpense = t1; this.action = t2; }, SaveRecurringExpenseSuccess: function SaveRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, AddRecurringExpenseSuccess: function AddRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, SaveRecurringExpenseFailure: function SaveRecurringExpenseFailure() { }, ArchiveRecurringExpensesRequest: function ArchiveRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, ArchiveRecurringExpensesSuccess: function ArchiveRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, ArchiveRecurringExpensesFailure: function ArchiveRecurringExpensesFailure() { }, DeleteRecurringExpensesRequest: function DeleteRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, DeleteRecurringExpensesSuccess: function DeleteRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, DeleteRecurringExpensesFailure: function DeleteRecurringExpensesFailure() { }, RestoreRecurringExpensesRequest: function RestoreRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, RestoreRecurringExpensesSuccess: function RestoreRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, RestoreRecurringExpensesFailure: function RestoreRecurringExpensesFailure() { }, FilterRecurringExpenses: function FilterRecurringExpenses(t0) { this.filter = t0; }, SortRecurringExpenses: function SortRecurringExpenses(t0) { this.field = t0; }, FilterRecurringExpensesByState: function FilterRecurringExpensesByState(t0) { this.state = t0; }, FilterRecurringExpensesByCustom1: function FilterRecurringExpensesByCustom1(t0) { this.value = t0; }, FilterRecurringExpensesByCustom2: function FilterRecurringExpensesByCustom2(t0) { this.value = t0; }, FilterRecurringExpensesByCustom3: function FilterRecurringExpensesByCustom3(t0) { this.value = t0; }, FilterRecurringExpensesByCustom4: function FilterRecurringExpensesByCustom4(t0) { this.value = t0; }, StartRecurringExpenseMultiselect: function StartRecurringExpenseMultiselect() { }, AddToRecurringExpenseMultiselect: function AddToRecurringExpenseMultiselect(t0) { this.entity = t0; }, RemoveFromRecurringExpenseMultiselect: function RemoveFromRecurringExpenseMultiselect(t0) { this.entity = t0; }, ClearRecurringExpenseMultiselect: function ClearRecurringExpenseMultiselect() { }, UpdateRecurringExpenseTab: function UpdateRecurringExpenseTab(t0) { this.tabIndex = t0; }, StartRecurringExpensesRequest: function StartRecurringExpensesRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, StartRecurringExpensesSuccess: function StartRecurringExpensesSuccess(t0) { this.expenses = t0; }, StartRecurringExpensesFailure: function StartRecurringExpensesFailure() { }, StopRecurringExpensesRequest: function StopRecurringExpensesRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, StopRecurringExpensesSuccess: function StopRecurringExpensesSuccess(t0) { this.expenses = t0; }, StopRecurringExpensesFailure: function StopRecurringExpensesFailure() { }, SaveRecurringExpenseDocumentRequest: function SaveRecurringExpenseDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.expense = t2; }, SaveRecurringExpenseDocumentFailure: function SaveRecurringExpenseDocumentFailure() { }, handleRecurringExpenseAction_closure: function handleRecurringExpenseAction_closure() { }, handleRecurringExpenseAction_closure0: function handleRecurringExpenseAction_closure0() { }, handleRecurringExpenseAction_closure1: function handleRecurringExpenseAction_closure1() { }, _editRecurringExpense() { return new A._editRecurringExpense_closure(); }, _viewRecurringExpense() { return new A._viewRecurringExpense_closure(); }, _viewRecurringExpenseList() { return new A._viewRecurringExpenseList_closure0(); }, _archiveRecurringExpense(repository) { return new A._archiveRecurringExpense_closure(repository); }, _deleteRecurringExpense(repository) { return new A._deleteRecurringExpense_closure(repository); }, _restoreRecurringExpense(repository) { return new A._restoreRecurringExpense_closure(repository); }, _saveRecurringExpense(repository) { return new A._saveRecurringExpense_closure(repository); }, _loadRecurringExpense(repository) { return new A._loadRecurringExpense_closure(repository); }, _loadRecurringExpenses(repository) { return new A._loadRecurringExpenses_closure(repository); }, _startRecurringExpense(repository) { return new A._startRecurringExpense_closure(repository); }, _stopRecurringExpense(repository) { return new A._stopRecurringExpense_closure(repository); }, _saveDocument9(repository) { return new A._saveDocument_closure2(repository); }, _editRecurringExpense_closure: function _editRecurringExpense_closure() { }, _viewRecurringExpense_closure: function _viewRecurringExpense_closure() { }, _viewRecurringExpenseList_closure0: function _viewRecurringExpenseList_closure0() { }, _viewRecurringExpenseList__closure: function _viewRecurringExpenseList__closure() { }, _archiveRecurringExpense_closure: function _archiveRecurringExpense_closure(t0) { this.repository = t0; }, _archiveRecurringExpense__closure: function _archiveRecurringExpense__closure(t0) { this.store = t0; }, _archiveRecurringExpense__closure0: function _archiveRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringExpense__closure1: function _archiveRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _deleteRecurringExpense_closure: function _deleteRecurringExpense_closure(t0) { this.repository = t0; }, _deleteRecurringExpense__closure: function _deleteRecurringExpense__closure(t0) { this.store = t0; }, _deleteRecurringExpense__closure0: function _deleteRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteRecurringExpense__closure1: function _deleteRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _restoreRecurringExpense_closure: function _restoreRecurringExpense_closure(t0) { this.repository = t0; }, _restoreRecurringExpense__closure: function _restoreRecurringExpense__closure(t0) { this.store = t0; }, _restoreRecurringExpense__closure0: function _restoreRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreRecurringExpense__closure1: function _restoreRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _saveRecurringExpense_closure: function _saveRecurringExpense_closure(t0) { this.repository = t0; }, _saveRecurringExpense__closure: function _saveRecurringExpense__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveRecurringExpense__closure0: function _saveRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpense_closure: function _loadRecurringExpense_closure(t0) { this.repository = t0; }, _loadRecurringExpense__closure: function _loadRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpense__closure0: function _loadRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpenses_closure: function _loadRecurringExpenses_closure(t0) { this.repository = t0; }, _loadRecurringExpenses__closure: function _loadRecurringExpenses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpenses__closure0: function _loadRecurringExpenses__closure0(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringExpense_closure: function _startRecurringExpense_closure(t0) { this.repository = t0; }, _startRecurringExpense__closure: function _startRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringExpense__closure0: function _startRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringExpense_closure: function _stopRecurringExpense_closure(t0) { this.repository = t0; }, _stopRecurringExpense__closure: function _stopRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringExpense__closure0: function _stopRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure2: function _saveDocument_closure2(t0) { this.repository = t0; }, _saveDocument__closure5: function _saveDocument__closure5(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure6: function _saveDocument__closure6(t0, t1) { this.store = t0; this.action = t1; }, recurringExpenseUIReducer(state, action) { var t1; state.toString; t1 = new A.RecurringExpenseUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._recurring_expense_state$_$v = state; new A.recurringExpenseUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing12(recurringExpense, action) { var _null = null; return A.ExpenseEntity_ExpenseEntity(_null, B.EntityType_recurringExpense, _null, _null, _null, _null, _null); }, _updateEditing13(recurringExpense, action) { return action.get$recurringExpense(); }, _viewRecurringExpenseList0(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new A._viewRecurringExpenseList_closure()); }, _filterRecurringExpensesByCustom1(recurringExpenseListState, action) { var t1 = recurringExpenseListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByCustom1_closure(action)); else return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByCustom1_closure0(action)); }, _filterRecurringExpensesByCustom2(recurringExpenseListState, action) { var t1 = recurringExpenseListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByCustom2_closure(action)); else return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByCustom2_closure0(action)); }, _filterRecurringExpensesByState(recurringExpenseListState, action) { var t1 = recurringExpenseListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByState_closure(action)); else return recurringExpenseListState.rebuild$1(new A._filterRecurringExpensesByState_closure0(action)); }, _filterRecurringExpenses(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new A._filterRecurringExpenses_closure(action, recurringExpenseListState)); }, _sortRecurringExpenses(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new A._sortRecurringExpenses_closure(action)); }, _startListMultiselect14(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure19()); }, _addToListMultiselect14(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure19(action)); }, _removeFromListMultiselect14(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure19(action)); }, _clearListMultiselect14(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure19()); }, _archiveRecurringExpenseSuccess(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._archiveRecurringExpenseSuccess_closure(action)); }, _deleteRecurringExpenseSuccess(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._deleteRecurringExpenseSuccess_closure(action)); }, _restoreRecurringExpenseSuccess(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._restoreRecurringExpenseSuccess_closure(action)); }, _addRecurringExpense(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._addRecurringExpense_closure(action)); }, _updateRecurringExpense(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._updateRecurringExpense_closure(action)); }, _startRecurringExpensesSuccess(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._startRecurringExpensesSuccess_closure(action)); }, _stopRecurringExpensesSuccess(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._stopRecurringExpensesSuccess_closure(action)); }, _setLoadedRecurringExpense(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new A._setLoadedRecurringExpense_closure(action)); }, _setLoadedRecurringExpenses(recurringExpenseState, action) { return recurringExpenseState.loadRecurringExpenses$1(action.recurringExpenses); }, _setLoadedCompany13(recurringExpenseState, action) { return recurringExpenseState.loadRecurringExpenses$1(action.userCompany.company.recurringExpenses); }, recurringExpenseUIReducer_closure: function recurringExpenseUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure151: function forceSelectedReducer_closure151() { }, forceSelectedReducer_closure152: function forceSelectedReducer_closure152() { }, forceSelectedReducer_closure153: function forceSelectedReducer_closure153() { }, forceSelectedReducer_closure154: function forceSelectedReducer_closure154() { }, forceSelectedReducer_closure155: function forceSelectedReducer_closure155() { }, forceSelectedReducer_closure156: function forceSelectedReducer_closure156() { }, forceSelectedReducer_closure157: function forceSelectedReducer_closure157() { }, forceSelectedReducer_closure158: function forceSelectedReducer_closure158() { }, tabIndexReducer_closure17: function tabIndexReducer_closure17() { }, tabIndexReducer_closure18: function tabIndexReducer_closure18() { }, selectedIdReducer_closure301: function selectedIdReducer_closure301() { }, selectedIdReducer_closure302: function selectedIdReducer_closure302() { }, selectedIdReducer_closure303: function selectedIdReducer_closure303() { }, selectedIdReducer_closure304: function selectedIdReducer_closure304() { }, selectedIdReducer_closure305: function selectedIdReducer_closure305() { }, selectedIdReducer_closure306: function selectedIdReducer_closure306() { }, selectedIdReducer_closure307: function selectedIdReducer_closure307() { }, selectedIdReducer_closure308: function selectedIdReducer_closure308() { }, selectedIdReducer_closure309: function selectedIdReducer_closure309() { }, selectedIdReducer_closure310: function selectedIdReducer_closure310() { }, selectedIdReducer_closure311: function selectedIdReducer_closure311() { }, selectedIdReducer_closure312: function selectedIdReducer_closure312() { }, selectedIdReducer_closure313: function selectedIdReducer_closure313() { }, selectedIdReducer_closure314: function selectedIdReducer_closure314() { }, selectedIdReducer_closure315: function selectedIdReducer_closure315() { }, editingReducer_closure99: function editingReducer_closure99() { }, editingReducer_closure100: function editingReducer_closure100() { }, editingReducer_closure101: function editingReducer_closure101() { }, editingReducer_closure102: function editingReducer_closure102() { }, editingReducer__closure37: function editingReducer__closure37() { }, _viewRecurringExpenseList_closure: function _viewRecurringExpenseList_closure() { }, _filterRecurringExpensesByCustom1_closure: function _filterRecurringExpensesByCustom1_closure(t0) { this.action = t0; }, _filterRecurringExpensesByCustom1_closure0: function _filterRecurringExpensesByCustom1_closure0(t0) { this.action = t0; }, _filterRecurringExpensesByCustom2_closure: function _filterRecurringExpensesByCustom2_closure(t0) { this.action = t0; }, _filterRecurringExpensesByCustom2_closure0: function _filterRecurringExpensesByCustom2_closure0(t0) { this.action = t0; }, _filterRecurringExpensesByState_closure: function _filterRecurringExpensesByState_closure(t0) { this.action = t0; }, _filterRecurringExpensesByState_closure0: function _filterRecurringExpensesByState_closure0(t0) { this.action = t0; }, _filterRecurringExpenses_closure: function _filterRecurringExpenses_closure(t0, t1) { this.action = t0; this.recurringExpenseListState = t1; }, _sortRecurringExpenses_closure: function _sortRecurringExpenses_closure(t0) { this.action = t0; }, _startListMultiselect_closure19: function _startListMultiselect_closure19() { }, _addToListMultiselect_closure19: function _addToListMultiselect_closure19(t0) { this.action = t0; }, _removeFromListMultiselect_closure19: function _removeFromListMultiselect_closure19(t0) { this.action = t0; }, _clearListMultiselect_closure19: function _clearListMultiselect_closure19() { }, _archiveRecurringExpenseSuccess_closure: function _archiveRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _deleteRecurringExpenseSuccess_closure: function _deleteRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _restoreRecurringExpenseSuccess_closure: function _restoreRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _addRecurringExpense_closure: function _addRecurringExpense_closure(t0) { this.action = t0; }, _addRecurringExpense__closure: function _addRecurringExpense__closure() { }, _updateRecurringExpense_closure: function _updateRecurringExpense_closure(t0) { this.action = t0; }, _updateRecurringExpense__closure: function _updateRecurringExpense__closure() { }, _startRecurringExpensesSuccess_closure: function _startRecurringExpensesSuccess_closure(t0) { this.action = t0; }, _stopRecurringExpensesSuccess_closure: function _stopRecurringExpensesSuccess_closure(t0) { this.action = t0; }, _setLoadedRecurringExpense_closure: function _setLoadedRecurringExpense_closure(t0) { this.action = t0; }, _setLoadedRecurringExpense__closure: function _setLoadedRecurringExpense__closure() { }, filteredRecurringExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { var t2, list, filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = expenseMap.get$keys(expenseMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.filteredRecurringExpensesSelector_closure(expenseMap, expenseCategoryMap, vendorMap, clientMap, selectionState, filterEntityType, filterEntityId, expenseListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredRecurringExpensesSelector_closure0(expenseMap, expenseListState, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState)); return list; }, recurringExpenseStatsForClient(clientId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.recurringExpenseStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForVendor(vendorId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.recurringExpenseStatsForVendor_closure(t1, vendorId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForUser(userId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.recurringExpenseStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForExpense(recurrigExpenseId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; expenseMap._map$_map.forEach$1(0, new A.recurringExpenseStatsForExpense_closure(t1, recurrigExpenseId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasRecurringExpenseChanges(recurringExpense, recurringExpenseMap) { var t1; if (recurringExpense.get$isNew()) t1 = recurringExpense.isChanged; else { t1 = recurringExpense.id; t1 = !recurringExpense.$eq(0, recurringExpenseMap._map$_map.$index(0, t1)); } return t1; }, memoizedFilteredRecurringExpenseList_closure: function memoizedFilteredRecurringExpenseList_closure() { }, filteredRecurringExpensesSelector_closure: function filteredRecurringExpensesSelector_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseCategoryMap = t1; _.vendorMap = t2; _.clientMap = t3; _.selectionState = t4; _.filterEntityType = t5; _.filterEntityId = t6; _.expenseListState = t7; }, filteredRecurringExpensesSelector_closure0: function filteredRecurringExpensesSelector_closure0(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseListState = t1; _.clientMap = t2; _.userMap = t3; _.vendorMap = t4; _.invoiceMap = t5; _.expenseCategoryMap = t6; _.staticState = t7; }, memoizedRecurringExpenseStatsForClient_closure: function memoizedRecurringExpenseStatsForClient_closure() { }, recurringExpenseStatsForClient_closure: function recurringExpenseStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedRecurringExpenseStatsForVendor_closure: function memoizedRecurringExpenseStatsForVendor_closure() { }, recurringExpenseStatsForVendor_closure: function recurringExpenseStatsForVendor_closure(t0, t1) { this._box_0 = t0; this.vendorId = t1; }, memoizedRecurringExpenseStatsForUser_closure: function memoizedRecurringExpenseStatsForUser_closure() { }, recurringExpenseStatsForUser_closure: function recurringExpenseStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedRecurringExpenseStatsForExpense_closure: function memoizedRecurringExpenseStatsForExpense_closure() { }, recurringExpenseStatsForExpense_closure: function recurringExpenseStatsForExpense_closure(t0, t1) { this._box_0 = t0; this.recurrigExpenseId = t1; }, _$RecurringExpenseState$_(list, map) { var _s21_ = "RecurringExpenseState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "list")); return new A._$RecurringExpenseState(map, list); }, _$RecurringExpenseUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("RecurringExpenseUIState", "listUIState")); return new A._$RecurringExpenseUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, RecurringExpenseState: function RecurringExpenseState() { }, RecurringExpenseState_loadRecurringExpenses_closure0: function RecurringExpenseState_loadRecurringExpenses_closure0() { }, RecurringExpenseState_loadRecurringExpenses_closure1: function RecurringExpenseState_loadRecurringExpenses_closure1() { }, RecurringExpenseState_loadRecurringExpenses_closure: function RecurringExpenseState_loadRecurringExpenses_closure(t0, t1) { this.$this = t0; this.map = t1; }, RecurringExpenseUIState: function RecurringExpenseUIState() { }, _$RecurringExpenseStateSerializer: function _$RecurringExpenseStateSerializer() { }, _$RecurringExpenseUIStateSerializer: function _$RecurringExpenseUIStateSerializer() { }, _$RecurringExpenseState: function _$RecurringExpenseState(t0, t1) { this.map = t0; this.list = t1; this._recurring_expense_state$__hashCode = null; }, RecurringExpenseStateBuilder: function RecurringExpenseStateBuilder() { this._recurring_expense_state$_list = this._recurring_expense_state$_map = this._recurring_expense_state$_$v = null; }, _$RecurringExpenseUIState: function _$RecurringExpenseUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._recurring_expense_state$__hashCode = null; }, RecurringExpenseUIStateBuilder: function RecurringExpenseUIStateBuilder() { var _ = this; _._recurring_expense_state$_cancelCompleter = _._recurring_expense_state$_saveCompleter = _._recurring_expense_state$_tabIndex = _._recurring_expense_state$_forceSelected = _._recurring_expense_state$_selectedId = _._recurring_expense_state$_listUIState = _._recurring_expense_state$_editing = _._recurring_expense_state$_$v = null; }, _RecurringExpenseUIState_Object_EntityUIState: function _RecurringExpenseUIState_Object_EntityUIState() { }, handleRecurringInvoiceAction(context, recurringInvoices, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t2, t3, recurringInvoice, recurringInvoiceIds, designId, message, t4, documentIds, t1; var $async$handleRecurringInvoiceAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.getInterceptor$asx(recurringInvoices); if (t1.get$isEmpty(recurringInvoices)) { // goto return $async$goto = 1; break; } store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = type$.legacy_InvoiceEntity; recurringInvoice = t3._as(t1.get$first(recurringInvoices)); recurringInvoiceIds = t1.map$1$1(recurringInvoices, new A.handleRecurringInvoiceAction_closure(), type$.legacy_String).toList$0(0); case 3: // switch switch (action) { case B.EntityAction_edit: // goto case $async$goto = 5; break; case B.EntityAction_viewPdf: // goto case $async$goto = 6; break; case B.EntityAction_clientPortal: // goto case $async$goto = 7; break; case B.EntityAction_cloneToPurchaseOrder: // goto case $async$goto = 8; break; case B.EntityAction_cloneToOther: // goto case $async$goto = 9; break; case B.EntityAction_clone: // goto case $async$goto = 10; break; case B.EntityAction_cloneToRecurring: // goto case $async$goto = 11; break; case B.EntityAction_cloneToInvoice: // goto case $async$goto = 12; break; case B.EntityAction_cloneToQuote: // goto case $async$goto = 13; break; case B.EntityAction_cloneToCredit: // goto case $async$goto = 14; break; case B.EntityAction_start: // goto case $async$goto = 15; break; case B.EntityAction_stop: // goto case $async$goto = 16; break; case B.EntityAction_restore: // goto case $async$goto = 17; break; case B.EntityAction_archive: // goto case $async$goto = 18; break; case B.EntityAction_delete: // goto case $async$goto = 19; break; case B.EntityAction_toggleMultiselect: // goto case $async$goto = 20; break; case B.EntityAction_more: // goto case $async$goto = 21; break; case B.EntityAction_documents: // goto case $async$goto = 22; break; case B.EntityAction_sendNow: // goto case $async$goto = 23; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case A.editEntity(null, recurringInvoice, true, null); // goto after switch $async$goto = 4; break; case 6: // case store.get$_dispatchers()[0].call$1(new A.ShowPdfRecurringInvoice(recurringInvoice, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = recurringInvoice.invitations._list; $async$goto = 26; return A._asyncAwait(A.canLaunch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true"), $async$handleRecurringInvoiceAction); case 26: // returning from await. $async$goto = $async$result ? 24 : 25; break; case 24: // then $async$goto = 27; return A._asyncAwait(A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "?silent=true", false, false), $async$handleRecurringInvoiceAction); case 27: // returning from await. case 25: // join // goto after switch $async$goto = 4; break; case 8: // case designId = A.getDesignIdForVendorByEntity(B.EntityType_purchaseOrder, state, recurringInvoice.vendorId); A.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new A.handleRecurringInvoiceAction_closure0(designId)), false); // goto after switch $async$goto = 4; break; case 9: // case A.cloneToDialog(context, recurringInvoice); // goto after switch $async$goto = 4; break; case 10: // case case 11: // case A.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice), false); // goto after switch $async$goto = 4; break; case 12: // case A.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new A.handleRecurringInvoiceAction_closure1()), false); // goto after switch $async$goto = 4; break; case 13: // case designId = A.getDesignIdForClientByEntity(recurringInvoice.clientId, B.EntityType_invoice, state); A.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new A.handleRecurringInvoiceAction_closure2(designId)), false); // goto after switch $async$goto = 4; break; case 14: // case designId = A.getDesignIdForClientByEntity(recurringInvoice.clientId, B.EntityType_credit, state); A.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new A.handleRecurringInvoiceAction_closure3(designId)), false); // goto after switch $async$goto = 4; break; case 15: // case t1 = recurringInvoice.lastSentDate; t1 = t1.length === 0 ? t2.get$startedRecurringInvoice() : t2.get$resumedRecurringInvoice(); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StartRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 16: // case t1 = A.snackBarCompleter(context, t2.get$stoppedRecurringInvoice(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StopRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 17: // case if (recurringInvoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_recurring_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(recurringInvoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 18: // case if (recurringInvoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_recurring_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(recurringInvoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 19: // case if (recurringInvoiceIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_recurring_invoices"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, ":value", B.JSInt_methods.toString$0(recurringInvoiceIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 20: // case if (A._lateReadCheck(store.__Store__state, "_state").uiState.recurringInvoiceUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartRecurringInvoiceMultiselect()); if (t1.get$isEmpty(recurringInvoices)) { // goto after switch $async$goto = 4; break; } for (t1 = t1.get$iterator(recurringInvoices); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.recurringInvoiceUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.AddToRecurringInvoiceMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, "_dispatchers"), 0).call$1(new A.RemoveFromRecurringInvoiceMultiselect(t2)); } // goto after switch $async$goto = 4; break; case 21: // case A.showEntityActionsDialog(null, A._setArrayType([recurringInvoice], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 22: // case documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(recurringInvoices); t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); // goto after switch $async$goto = 4; break; case 23: // case t1 = recurringInvoiceIds.length === 1 ? t2.get$emailedInvoice() : t2.get$emailedInvoice(); t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.SendNowRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleRecurringInvoiceAction, $async$completer); }, ViewRecurringInvoiceList: function ViewRecurringInvoiceList() { }, ViewRecurringInvoice: function ViewRecurringInvoice(t0) { this.recurringInvoiceId = t0; }, EditRecurringInvoice: function EditRecurringInvoice(t0) { this.recurringInvoice = t0; }, ShowPdfRecurringInvoice: function ShowPdfRecurringInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.activityId = t2; }, EditRecurringInvoiceItem: function EditRecurringInvoiceItem(t0) { this.itemIndex = t0; }, UpdateRecurringInvoice: function UpdateRecurringInvoice(t0) { this.recurringInvoice = t0; }, UpdateRecurringInvoiceClient: function UpdateRecurringInvoiceClient(t0) { this.client = t0; }, LoadRecurringInvoice: function LoadRecurringInvoice(t0, t1) { this.completer = t0; this.recurringInvoiceId = t1; }, LoadRecurringInvoices: function LoadRecurringInvoices() { }, LoadRecurringInvoiceRequest: function LoadRecurringInvoiceRequest() { }, LoadRecurringInvoiceFailure: function LoadRecurringInvoiceFailure(t0) { this.error = t0; }, LoadRecurringInvoiceSuccess: function LoadRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, LoadRecurringInvoicesRequest: function LoadRecurringInvoicesRequest() { }, LoadRecurringInvoicesFailure: function LoadRecurringInvoicesFailure(t0) { this.error = t0; }, LoadRecurringInvoicesSuccess: function LoadRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, AddRecurringInvoiceContact: function AddRecurringInvoiceContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveRecurringInvoiceContact: function RemoveRecurringInvoiceContact(t0) { this.invitation = t0; }, SaveRecurringInvoiceRequest: function SaveRecurringInvoiceRequest(t0, t1, t2) { this.completer = t0; this.recurringInvoice = t1; this.action = t2; }, SaveRecurringInvoiceSuccess: function SaveRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, AddRecurringInvoiceSuccess: function AddRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, AddRecurringInvoiceItem: function AddRecurringInvoiceItem(t0) { this.invoiceItem = t0; }, MoveRecurringInvoiceItem: function MoveRecurringInvoiceItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddRecurringInvoiceItems: function AddRecurringInvoiceItems(t0) { this.items = t0; }, UpdateRecurringInvoiceItem: function UpdateRecurringInvoiceItem(t0, t1) { this.index = t0; this.item = t1; }, DeleteRecurringInvoiceItem: function DeleteRecurringInvoiceItem(t0) { this.index = t0; }, SaveRecurringInvoiceFailure: function SaveRecurringInvoiceFailure() { }, ArchiveRecurringInvoicesRequest: function ArchiveRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, ArchiveRecurringInvoicesSuccess: function ArchiveRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, ArchiveRecurringInvoicesFailure: function ArchiveRecurringInvoicesFailure() { }, SendNowRecurringInvoicesRequest: function SendNowRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, SendNowRecurringInvoicesSuccess: function SendNowRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, SendNowRecurringInvoicesFailure: function SendNowRecurringInvoicesFailure() { }, DeleteRecurringInvoicesRequest: function DeleteRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, DeleteRecurringInvoicesSuccess: function DeleteRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, DeleteRecurringInvoicesFailure: function DeleteRecurringInvoicesFailure() { }, RestoreRecurringInvoicesRequest: function RestoreRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, RestoreRecurringInvoicesSuccess: function RestoreRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, RestoreRecurringInvoicesFailure: function RestoreRecurringInvoicesFailure() { }, FilterRecurringInvoices: function FilterRecurringInvoices(t0) { this.filter = t0; }, SortRecurringInvoices: function SortRecurringInvoices(t0) { this.field = t0; }, FilterRecurringInvoicesByState: function FilterRecurringInvoicesByState(t0) { this.state = t0; }, FilterRecurringInvoicesByStatus: function FilterRecurringInvoicesByStatus(t0) { this.status = t0; }, FilterRecurringInvoicesByCustom1: function FilterRecurringInvoicesByCustom1(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom2: function FilterRecurringInvoicesByCustom2(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom3: function FilterRecurringInvoicesByCustom3(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom4: function FilterRecurringInvoicesByCustom4(t0) { this.value = t0; }, SaveRecurringInvoiceDocumentRequest: function SaveRecurringInvoiceDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.invoice = t2; }, SaveRecurringInvoiceDocumentFailure: function SaveRecurringInvoiceDocumentFailure() { }, StartRecurringInvoicesRequest: function StartRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, StartRecurringInvoicesSuccess: function StartRecurringInvoicesSuccess(t0) { this.invoices = t0; }, StartRecurringInvoicesFailure: function StartRecurringInvoicesFailure() { }, StopRecurringInvoicesRequest: function StopRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, StopRecurringInvoicesSuccess: function StopRecurringInvoicesSuccess(t0) { this.invoices = t0; }, StopRecurringInvoicesFailure: function StopRecurringInvoicesFailure() { }, handleRecurringInvoiceAction_closure: function handleRecurringInvoiceAction_closure() { }, handleRecurringInvoiceAction_closure0: function handleRecurringInvoiceAction_closure0(t0) { this.designId = t0; }, handleRecurringInvoiceAction_closure1: function handleRecurringInvoiceAction_closure1() { }, handleRecurringInvoiceAction_closure2: function handleRecurringInvoiceAction_closure2(t0) { this.designId = t0; }, handleRecurringInvoiceAction_closure3: function handleRecurringInvoiceAction_closure3(t0) { this.designId = t0; }, StartRecurringInvoiceMultiselect: function StartRecurringInvoiceMultiselect() { }, AddToRecurringInvoiceMultiselect: function AddToRecurringInvoiceMultiselect(t0) { this.entity = t0; }, RemoveFromRecurringInvoiceMultiselect: function RemoveFromRecurringInvoiceMultiselect(t0) { this.entity = t0; }, ClearRecurringInvoiceMultiselect: function ClearRecurringInvoiceMultiselect() { }, UpdateRecurringInvoiceTab: function UpdateRecurringInvoiceTab(t0) { this.tabIndex = t0; }, _editRecurringInvoice() { return new A._editRecurringInvoice_closure(); }, _viewRecurringInvoice() { return new A._viewRecurringInvoice_closure(); }, _viewRecurringInvoiceList() { return new A._viewRecurringInvoiceList_closure(); }, _showPdfRecurringInvoice() { return new A._showPdfRecurringInvoice_closure(); }, _startRecurringInvoice(repository) { return new A._startRecurringInvoice_closure(repository); }, _stopRecurringInvoice(repository) { return new A._stopRecurringInvoice_closure(repository); }, _sendNowRecurringInvoice(repository) { return new A._sendNowRecurringInvoice_closure(repository); }, _archiveRecurringInvoice(repository) { return new A._archiveRecurringInvoice_closure(repository); }, _deleteRecurringInvoice(repository) { return new A._deleteRecurringInvoice_closure(repository); }, _restoreRecurringInvoice(repository) { return new A._restoreRecurringInvoice_closure(repository); }, _saveRecurringInvoice(repository) { return new A._saveRecurringInvoice_closure(repository); }, _loadRecurringInvoice(repository) { return new A._loadRecurringInvoice_closure(repository); }, _loadRecurringInvoices(repository) { return new A._loadRecurringInvoices_closure(repository); }, _saveDocument10(repository) { return new A._saveDocument_closure1(repository); }, _editRecurringInvoice_closure: function _editRecurringInvoice_closure() { }, _viewRecurringInvoice_closure: function _viewRecurringInvoice_closure() { }, _viewRecurringInvoiceList_closure: function _viewRecurringInvoiceList_closure() { }, _viewRecurringInvoiceList__closure: function _viewRecurringInvoiceList__closure() { }, _showPdfRecurringInvoice_closure: function _showPdfRecurringInvoice_closure() { }, _startRecurringInvoice_closure: function _startRecurringInvoice_closure(t0) { this.repository = t0; }, _startRecurringInvoice__closure: function _startRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringInvoice__closure0: function _startRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringInvoice_closure: function _stopRecurringInvoice_closure(t0) { this.repository = t0; }, _stopRecurringInvoice__closure: function _stopRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringInvoice__closure0: function _stopRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _sendNowRecurringInvoice_closure: function _sendNowRecurringInvoice_closure(t0) { this.repository = t0; }, _sendNowRecurringInvoice__closure: function _sendNowRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _sendNowRecurringInvoice__closure0: function _sendNowRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringInvoice_closure: function _archiveRecurringInvoice_closure(t0) { this.repository = t0; }, _archiveRecurringInvoice__closure: function _archiveRecurringInvoice__closure(t0) { this.store = t0; }, _archiveRecurringInvoice__closure0: function _archiveRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringInvoice__closure1: function _archiveRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _deleteRecurringInvoice_closure: function _deleteRecurringInvoice_closure(t0) { this.repository = t0; }, _deleteRecurringInvoice__closure: function _deleteRecurringInvoice__closure(t0) { this.store = t0; }, _deleteRecurringInvoice__closure0: function _deleteRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteRecurringInvoice__closure1: function _deleteRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _restoreRecurringInvoice_closure: function _restoreRecurringInvoice_closure(t0) { this.repository = t0; }, _restoreRecurringInvoice__closure: function _restoreRecurringInvoice__closure(t0) { this.store = t0; }, _restoreRecurringInvoice__closure0: function _restoreRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreRecurringInvoice__closure1: function _restoreRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _saveRecurringInvoice_closure: function _saveRecurringInvoice_closure(t0) { this.repository = t0; }, _saveRecurringInvoice__closure: function _saveRecurringInvoice__closure(t0) { this.action = t0; }, _saveRecurringInvoice___closure: function _saveRecurringInvoice___closure() { }, _saveRecurringInvoice__closure0: function _saveRecurringInvoice__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveRecurringInvoice__closure1: function _saveRecurringInvoice__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoice_closure: function _loadRecurringInvoice_closure(t0) { this.repository = t0; }, _loadRecurringInvoice__closure: function _loadRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoice__closure0: function _loadRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoices_closure: function _loadRecurringInvoices_closure(t0) { this.repository = t0; }, _loadRecurringInvoices__closure: function _loadRecurringInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoices__closure0: function _loadRecurringInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure1: function _saveDocument_closure1(t0) { this.repository = t0; }, _saveDocument__closure3: function _saveDocument__closure3(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure4: function _saveDocument__closure4(t0, t1) { this.store = t0; this.action = t1; }, recurringInvoiceUIReducer(state, action) { var t1; state.toString; t1 = new A.RecurringInvoiceUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._recurring_invoice_state$_$v = state; new A.recurringInvoiceUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing13(recurringInvoice, action) { var _null = null; return A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); }, _updateEditing14(recurringInvoice, action) { return action.get$recurringInvoice(); }, _addRecurringInvoiceItem(recurringInvoice, action) { var item = action.invoiceItem; return recurringInvoice.rebuild$1(new A._addRecurringInvoiceItem_closure(item)); }, _addRecurringInvoiceItems(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A._addRecurringInvoiceItems_closure(action)); }, _removeRecurringInvoiceItem(recurringInvoice, action) { if (recurringInvoice.lineItems._list.length <= action.index) return recurringInvoice; return recurringInvoice.rebuild$1(new A._removeRecurringInvoiceItem_closure(action)); }, _updateRecurringInvoiceItem(recurringInvoice, action) { if (recurringInvoice.lineItems._list.length <= action.index) return recurringInvoice; return recurringInvoice.rebuild$1(new A._updateRecurringInvoiceItem_closure(action)); }, _filterRecurringInvoicesByCustom1(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom1_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom1_closure0(action)); }, _filterRecurringInvoicesByCustom2(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom2_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom2_closure0(action)); }, _filterRecurringInvoicesByCustom3(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom3_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom3_closure0(action)); }, _filterRecurringInvoicesByCustom4(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom4_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom4_closure0(action)); }, _filterRecurringInvoicesByState(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByState_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByState_closure0(action)); }, _filterRecurringInvoicesByStatus(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByStatus_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByStatus_closure0(action)); }, _filterRecurringInvoices(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoices_closure(action, recurringInvoiceListState)); }, _sortRecurringInvoices(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._sortRecurringInvoices_closure(action)); }, _startListMultiselect15(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._startListMultiselect_closure15()); }, _addToListMultiselect15(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._addToListMultiselect_closure15(action)); }, _removeFromListMultiselect15(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._removeFromListMultiselect_closure15(action)); }, _clearListMultiselect15(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._clearListMultiselect_closure15()); }, _archiveRecurringInvoiceSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._archiveRecurringInvoiceSuccess_closure(action)); }, _deleteRecurringInvoiceSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._deleteRecurringInvoiceSuccess_closure(action)); }, _emailRecurringInvoiceSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._emailRecurringInvoiceSuccess_closure(action)); }, _restoreRecurringInvoiceSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._restoreRecurringInvoiceSuccess_closure(action)); }, _sendNowRecurringInvoiceSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._sendNowRecurringInvoiceSuccess_closure(action)); }, _startRecurringInvoicesSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._startRecurringInvoicesSuccess_closure(action)); }, _stopRecurringInvoicesSuccess(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._stopRecurringInvoicesSuccess_closure(action)); }, _addRecurringInvoice(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._addRecurringInvoice_closure(action)); }, _updateRecurringInvoice(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._updateRecurringInvoice_closure(action, action.get$recurringInvoice())); }, _setLoadedRecurringInvoices(recurringInvoiceState, action) { return recurringInvoiceState.loadRecurringInvoices$1(action.recurringInvoices); }, _setLoadedCompany14(recurringInvoiceState, action) { return recurringInvoiceState.loadRecurringInvoices$1(action.userCompany.company.recurringInvoices); }, recurringInvoiceUIReducer_closure: function recurringInvoiceUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure119: function forceSelectedReducer_closure119() { }, forceSelectedReducer_closure120: function forceSelectedReducer_closure120() { }, forceSelectedReducer_closure121: function forceSelectedReducer_closure121() { }, forceSelectedReducer_closure122: function forceSelectedReducer_closure122() { }, forceSelectedReducer_closure123: function forceSelectedReducer_closure123() { }, forceSelectedReducer_closure124: function forceSelectedReducer_closure124() { }, forceSelectedReducer_closure125: function forceSelectedReducer_closure125() { }, forceSelectedReducer_closure126: function forceSelectedReducer_closure126() { }, tabIndexReducer_closure13: function tabIndexReducer_closure13() { }, tabIndexReducer_closure14: function tabIndexReducer_closure14() { }, historyActivityIdReducer_closure1: function historyActivityIdReducer_closure1() { }, editingItemIndexReducer_closure: function editingItemIndexReducer_closure() { }, editingItemIndexReducer_closure0: function editingItemIndexReducer_closure0() { }, selectedIdReducer_closure237: function selectedIdReducer_closure237() { }, selectedIdReducer_closure238: function selectedIdReducer_closure238() { }, selectedIdReducer_closure239: function selectedIdReducer_closure239() { }, selectedIdReducer_closure240: function selectedIdReducer_closure240() { }, selectedIdReducer_closure241: function selectedIdReducer_closure241() { }, selectedIdReducer_closure242: function selectedIdReducer_closure242() { }, selectedIdReducer_closure243: function selectedIdReducer_closure243() { }, selectedIdReducer_closure244: function selectedIdReducer_closure244() { }, selectedIdReducer_closure245: function selectedIdReducer_closure245() { }, selectedIdReducer_closure246: function selectedIdReducer_closure246() { }, selectedIdReducer_closure247: function selectedIdReducer_closure247() { }, selectedIdReducer_closure248: function selectedIdReducer_closure248() { }, selectedIdReducer_closure249: function selectedIdReducer_closure249() { }, selectedIdReducer_closure250: function selectedIdReducer_closure250() { }, selectedIdReducer_closure251: function selectedIdReducer_closure251() { }, selectedIdReducer_closure252: function selectedIdReducer_closure252() { }, selectedIdReducer_closure253: function selectedIdReducer_closure253() { }, selectedIdReducer_closure254: function selectedIdReducer_closure254() { }, selectedIdReducer_closure255: function selectedIdReducer_closure255() { }, editingReducer_closure76: function editingReducer_closure76() { }, editingReducer__closure33: function editingReducer__closure33() { }, editingReducer_closure77: function editingReducer_closure77() { }, editingReducer__closure32: function editingReducer__closure32() { }, editingReducer_closure78: function editingReducer_closure78() { }, editingReducer_closure79: function editingReducer_closure79() { }, editingReducer__closure31: function editingReducer__closure31() { }, editingReducer_closure80: function editingReducer_closure80() { }, editingReducer__closure30: function editingReducer__closure30() { }, editingReducer_closure81: function editingReducer_closure81() { }, editingReducer__closure29: function editingReducer__closure29(t0) { this.client = t0; }, editingReducer___closure1: function editingReducer___closure1() { }, editingReducer_closure82: function editingReducer_closure82() { }, editingReducer_closure83: function editingReducer_closure83() { }, editingReducer_closure84: function editingReducer_closure84() { }, editingReducer_closure85: function editingReducer_closure85() { }, editingReducer__closure28: function editingReducer__closure28(t0) { this.action = t0; }, editingReducer_closure86: function editingReducer_closure86() { }, editingReducer__closure27: function editingReducer__closure27(t0) { this.action = t0; }, _addRecurringInvoiceItem_closure: function _addRecurringInvoiceItem_closure(t0) { this.item = t0; }, _addRecurringInvoiceItems_closure: function _addRecurringInvoiceItems_closure(t0) { this.action = t0; }, _removeRecurringInvoiceItem_closure: function _removeRecurringInvoiceItem_closure(t0) { this.action = t0; }, _updateRecurringInvoiceItem_closure: function _updateRecurringInvoiceItem_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom1_closure: function _filterRecurringInvoicesByCustom1_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom1_closure0: function _filterRecurringInvoicesByCustom1_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom2_closure: function _filterRecurringInvoicesByCustom2_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom2_closure0: function _filterRecurringInvoicesByCustom2_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom3_closure: function _filterRecurringInvoicesByCustom3_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom3_closure0: function _filterRecurringInvoicesByCustom3_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom4_closure: function _filterRecurringInvoicesByCustom4_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom4_closure0: function _filterRecurringInvoicesByCustom4_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByState_closure: function _filterRecurringInvoicesByState_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByState_closure0: function _filterRecurringInvoicesByState_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByStatus_closure: function _filterRecurringInvoicesByStatus_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByStatus_closure0: function _filterRecurringInvoicesByStatus_closure0(t0) { this.action = t0; }, _filterRecurringInvoices_closure: function _filterRecurringInvoices_closure(t0, t1) { this.action = t0; this.recurringInvoiceListState = t1; }, _sortRecurringInvoices_closure: function _sortRecurringInvoices_closure(t0) { this.action = t0; }, _startListMultiselect_closure15: function _startListMultiselect_closure15() { }, _addToListMultiselect_closure15: function _addToListMultiselect_closure15(t0) { this.action = t0; }, _removeFromListMultiselect_closure15: function _removeFromListMultiselect_closure15(t0) { this.action = t0; }, _clearListMultiselect_closure15: function _clearListMultiselect_closure15() { }, _archiveRecurringInvoiceSuccess_closure: function _archiveRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _deleteRecurringInvoiceSuccess_closure: function _deleteRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _emailRecurringInvoiceSuccess_closure: function _emailRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _restoreRecurringInvoiceSuccess_closure: function _restoreRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _sendNowRecurringInvoiceSuccess_closure: function _sendNowRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _startRecurringInvoicesSuccess_closure: function _startRecurringInvoicesSuccess_closure(t0) { this.action = t0; }, _stopRecurringInvoicesSuccess_closure: function _stopRecurringInvoicesSuccess_closure(t0) { this.action = t0; }, _addRecurringInvoice_closure: function _addRecurringInvoice_closure(t0) { this.action = t0; }, _addRecurringInvoice__closure: function _addRecurringInvoice__closure() { }, _updateRecurringInvoice_closure: function _updateRecurringInvoice_closure(t0, t1) { this.action = t0; this.recurringInvoice = t1; }, _updateRecurringInvoice__closure: function _updateRecurringInvoice__closure() { }, filteredRecurringInvoicesSelector(selectionState, recurringInvoiceMap, clientMap, vendorMap, recurringInvoiceList, invoiceListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = recurringInvoiceList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredRecurringInvoicesSelector_closure(recurringInvoiceMap, clientMap, selectionState, filterEntityType, filterEntityId, invoiceListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredRecurringInvoicesSelector_closure0(recurringInvoiceMap, invoiceListState, clientMap, vendorMap, userMap)); return list; }, recurringInvoiceStatsForClient(clientId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.recurringInvoiceStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForUser(userId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.recurringInvoiceStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForInvoice(recurrinInvoiceId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.recurringInvoiceStatsForInvoice_closure(t1, recurrinInvoiceId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForDesign(designId, recurringInvoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; recurringInvoiceMap._map$_map.forEach$1(0, new A.recurringInvoiceStatsForDesign_closure(t1, designId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForSubscription(subscriptionId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; invoiceMap._map$_map.forEach$1(0, new A.recurringInvoiceStatsForSubscription_closure(t1, subscriptionId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasRecurringInvoiceChanges(recurringInvoice, recurringInvoiceMap) { var t1; if (recurringInvoice.get$isNew()) t1 = recurringInvoice.isChanged; else { t1 = recurringInvoice.id; t1 = !recurringInvoice.$eq(0, recurringInvoiceMap._map$_map.$index(0, t1)); } return t1; }, memoizedFilteredRecurringInvoiceList_closure: function memoizedFilteredRecurringInvoiceList_closure() { }, filteredRecurringInvoicesSelector_closure: function filteredRecurringInvoicesSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.recurringInvoiceMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.invoiceListState = t5; }, filteredRecurringInvoicesSelector_closure0: function filteredRecurringInvoicesSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.recurringInvoiceMap = t0; _.invoiceListState = t1; _.clientMap = t2; _.vendorMap = t3; _.userMap = t4; }, memoizedRecurringInvoiceStatsForClient_closure: function memoizedRecurringInvoiceStatsForClient_closure() { }, recurringInvoiceStatsForClient_closure: function recurringInvoiceStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedRecurringInvoiceStatsForUser_closure: function memoizedRecurringInvoiceStatsForUser_closure() { }, recurringInvoiceStatsForUser_closure: function recurringInvoiceStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedRecurringInvoiceStatsForInvoice_closure: function memoizedRecurringInvoiceStatsForInvoice_closure() { }, recurringInvoiceStatsForInvoice_closure: function recurringInvoiceStatsForInvoice_closure(t0, t1) { this._box_0 = t0; this.recurrinInvoiceId = t1; }, memoizedRecurringInvoiceStatsForDesign_closure: function memoizedRecurringInvoiceStatsForDesign_closure() { }, recurringInvoiceStatsForDesign_closure: function recurringInvoiceStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedRecurringInvoiceStatsForSubscription_closure: function memoizedRecurringInvoiceStatsForSubscription_closure() { }, recurringInvoiceStatsForSubscription_closure: function recurringInvoiceStatsForSubscription_closure(t0, t1) { this._box_0 = t0; this.subscriptionId = t1; }, _$RecurringInvoiceState$_(list, map) { var _s21_ = "RecurringInvoiceState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "list")); return new A._$RecurringInvoiceState(map, list); }, _$RecurringInvoiceUIState$_(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("RecurringInvoiceUIState", "listUIState")); return new A._$RecurringInvoiceUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, RecurringInvoiceState: function RecurringInvoiceState() { }, RecurringInvoiceState_loadRecurringInvoices_closure0: function RecurringInvoiceState_loadRecurringInvoices_closure0() { }, RecurringInvoiceState_loadRecurringInvoices_closure1: function RecurringInvoiceState_loadRecurringInvoices_closure1() { }, RecurringInvoiceState_loadRecurringInvoices_closure: function RecurringInvoiceState_loadRecurringInvoices_closure(t0, t1) { this.$this = t0; this.map = t1; }, RecurringInvoiceUIState: function RecurringInvoiceUIState() { }, _$RecurringInvoiceStateSerializer: function _$RecurringInvoiceStateSerializer() { }, _$RecurringInvoiceUIStateSerializer: function _$RecurringInvoiceUIStateSerializer() { }, _$RecurringInvoiceState: function _$RecurringInvoiceState(t0, t1) { this.map = t0; this.list = t1; this._recurring_invoice_state$__hashCode = null; }, RecurringInvoiceStateBuilder: function RecurringInvoiceStateBuilder() { this._recurring_invoice_state$_list = this._recurring_invoice_state$_map = this._recurring_invoice_state$_$v = null; }, _$RecurringInvoiceUIState: function _$RecurringInvoiceUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._recurring_invoice_state$__hashCode = null; }, RecurringInvoiceUIStateBuilder: function RecurringInvoiceUIStateBuilder() { var _ = this; _._recurring_invoice_state$_cancelCompleter = _._recurring_invoice_state$_saveCompleter = _._recurring_invoice_state$_tabIndex = _._recurring_invoice_state$_forceSelected = _._recurring_invoice_state$_selectedId = _._recurring_invoice_state$_listUIState = _._recurring_invoice_state$_historyActivityId = _._recurring_invoice_state$_editingItemIndex = _._recurring_invoice_state$_editing = _._recurring_invoice_state$_$v = null; }, _RecurringInvoiceUIState_Object_EntityUIState: function _RecurringInvoiceUIState_Object_EntityUIState() { }, ViewReports: function ViewReports() { }, UpdateReportSettings: function UpdateReportSettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.report = t0; _.filters = t1; _.group = t2; _.selectedGroup = t3; _.chart = t4; _.subgroup = t5; _.sortColumn = t6; _.sortTotalsIndex = t7; _.customStartDate = t8; _.customEndDate = t9; }, _viewReports() { return new A._viewReports_closure(); }, _viewReports_closure: function _viewReports_closure() { }, _viewReports__closure: function _viewReports__closure(t0, t1, t2) { this.store = t0; this.next = t1; this.action = t2; }, _viewReports___closure: function _viewReports___closure() { }, reportsUIReducer(state, action) { var t1; if (action instanceof A.SaveAuthUserSuccess) return state.rebuild$1(new A.reportsUIReducer_closure()); else if (action instanceof A.UpdateReportSettings) { t1 = action.report; t1 = t1.length !== 0 && t1 !== state.report; if (t1) return A.ReportsUIState_ReportsUIState().rebuild$1(new A.reportsUIReducer_closure0(action)); else return state.rebuild$1(new A.reportsUIReducer_closure1(action, state)); } else if (action instanceof A.SelectCompany) return state; return state; }, reportsUIReducer_closure: function reportsUIReducer_closure() { }, reportsUIReducer_closure0: function reportsUIReducer_closure0(t0) { this.action = t0; }, reportsUIReducer_closure1: function reportsUIReducer_closure1(t0, t1) { this.action = t0; this.state = t1; }, ReportsUIState_ReportsUIState() { var t1 = type$.legacy_String; return A._$ReportsUIState$_("", "", "", A.BuiltMap_BuiltMap(B.Map_empty0, t1, t1), "", "client", "", "day"); }, _$ReportsUIState$_(chart, customEndDate, customStartDate, filters, group, report, selectedGroup, subgroup) { if (filters == null) A.throwExpression(A.BuiltValueNullFieldError$("ReportsUIState", "filters")); return new A._$ReportsUIState(report, group, selectedGroup, chart, subgroup, customStartDate, customEndDate, filters); }, ReportsUIState: function ReportsUIState() { }, _$ReportsUIStateSerializer: function _$ReportsUIStateSerializer() { }, _$ReportsUIState: function _$ReportsUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.report = t0; _.group = t1; _.selectedGroup = t2; _.chart = t3; _.subgroup = t4; _.customStartDate = t5; _.customEndDate = t6; _.filters = t7; _._reports_state$__hashCode = null; }, ReportsUIStateBuilder: function ReportsUIStateBuilder() { var _ = this; _._filters = _._customEndDate = _._customStartDate = _._subgroup = _._chart = _._selectedGroup = _._group = _._report = _._reports_state$_$v = null; }, ViewSettings: function ViewSettings(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.company = t0; _.group = t1; _.client = t2; _.user = t3; _.force = t4; _.section = t5; _.clearFilter = t6; _.tabIndex = t7; }, ClearSettingsFilter: function ClearSettingsFilter() { }, ResetSettings: function ResetSettings() { }, UpdateSettings: function UpdateSettings(t0) { this.settings = t0; }, UpdateSettingsTab: function UpdateSettingsTab(t0) { this.tabIndex = t0; }, UpdatedSetting: function UpdatedSetting() { }, UpdateSettingsTemplate: function UpdateSettingsTemplate(t0) { this.selectedTemplate = t0; }, UpdateUserSettings: function UpdateUserSettings(t0) { this.user = t0; }, UploadLogoRequest: function UploadLogoRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.type = t2; }, UploadLogoFailure: function UploadLogoFailure() { }, SaveUserSettingsRequest: function SaveUserSettingsRequest(t0, t1) { this.completer = t0; this.user = t1; }, SaveUserSettingsSuccess: function SaveUserSettingsSuccess(t0) { this.userCompany = t0; }, SaveUserSettingsFailure: function SaveUserSettingsFailure() { }, SaveAuthUserRequest: function SaveAuthUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.user = t1; _.password = t2; _.idToken = t3; }, SaveAuthUserSuccess: function SaveAuthUserSuccess(t0) { this.user = t0; }, SaveAuthUserFailure: function SaveAuthUserFailure() { }, ConnecOAuthUserRequest: function ConnecOAuthUserRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.provider = t1; _.password = t2; _.idToken = t3; _.accessToken = t4; }, ConnecOAuthUserSuccess: function ConnecOAuthUserSuccess(t0) { this.user = t0; }, ConnecOAuthUserFailure: function ConnecOAuthUserFailure() { }, DisableTwoFactorRequest: function DisableTwoFactorRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.idToken = t2; }, DisableTwoFactorSuccess: function DisableTwoFactorSuccess() { }, DisableTwoFactorFailure: function DisableTwoFactorFailure() { }, ConnecGmailUserSuccess: function ConnecGmailUserSuccess(t0) { this.user = t0; }, ConnecGmailUserFailure: function ConnecGmailUserFailure() { }, FilterSettings: function FilterSettings(t0) { this.filter = t0; }, _viewSettings() { return new A._viewSettings_closure(); }, _saveCompany(settingsRepository) { return new A._saveCompany_closure(settingsRepository); }, _saveAuthUser(settingsRepository) { return new A._saveAuthUser_closure(settingsRepository); }, _connectOAuthUser(settingsRepository) { return new A._connectOAuthUser_closure0(settingsRepository); }, _connectGmailUser(settingsRepository) { return new A._connectGmailUser_closure0(settingsRepository); }, _disableTwoFactor(settingsRepository) { return new A._disableTwoFactor_closure(settingsRepository); }, _saveSettings(settingsRepository) { return new A._saveSettings_closure(settingsRepository); }, _uploadLogo(settingsRepository) { return new A._uploadLogo_closure(settingsRepository); }, _saveDocument7(repository) { return new A._saveDocument_closure4(repository); }, _viewSettings_closure: function _viewSettings_closure() { }, _viewSettings__closure: function _viewSettings__closure(t0, t1, t2, t3) { var _ = this; _.action = t0; _.uiState = t1; _.store = t2; _.next = t3; }, _viewSettings___closure: function _viewSettings___closure() { }, _saveCompany_closure: function _saveCompany_closure(t0) { this.settingsRepository = t0; }, _saveCompany__closure: function _saveCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveCompany__closure0: function _saveCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveAuthUser_closure: function _saveAuthUser_closure(t0) { this.settingsRepository = t0; }, _saveAuthUser__closure: function _saveAuthUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveAuthUser__closure0: function _saveAuthUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _connectOAuthUser_closure0: function _connectOAuthUser_closure0(t0) { this.settingsRepository = t0; }, _connectOAuthUser__closure: function _connectOAuthUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _connectOAuthUser__closure0: function _connectOAuthUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _connectGmailUser_closure0: function _connectGmailUser_closure0(t0) { this.settingsRepository = t0; }, _connectGmailUser__closure: function _connectGmailUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _connectGmailUser__closure0: function _connectGmailUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _disableTwoFactor_closure: function _disableTwoFactor_closure(t0) { this.settingsRepository = t0; }, _disableTwoFactor__closure: function _disableTwoFactor__closure(t0, t1) { this.store = t0; this.action = t1; }, _disableTwoFactor__closure0: function _disableTwoFactor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveSettings_closure: function _saveSettings_closure(t0) { this.settingsRepository = t0; }, _saveSettings__closure: function _saveSettings__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveSettings__closure0: function _saveSettings__closure0(t0, t1) { this.store = t0; this.action = t1; }, _uploadLogo_closure: function _uploadLogo_closure(t0) { this.settingsRepository = t0; }, _uploadLogo__closure: function _uploadLogo__closure(t0, t1) { this.action = t0; this.store = t1; }, _uploadLogo__closure0: function _uploadLogo__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure4: function _saveDocument_closure4(t0) { this.repository = t0; }, _saveDocument__closure9: function _saveDocument__closure9(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure10: function _saveDocument__closure10(t0, t1) { this.store = t0; this.action = t1; }, settingsUIReducer_closure: function settingsUIReducer_closure() { }, settingsUIReducer__closure14: function settingsUIReducer__closure14(t0, t1) { this.action = t0; this.state = t1; }, settingsUIReducer_closure0: function settingsUIReducer_closure0() { }, settingsUIReducer__closure13: function settingsUIReducer__closure13(t0) { this.action = t0; }, settingsUIReducer_closure1: function settingsUIReducer_closure1() { }, settingsUIReducer__closure10: function settingsUIReducer__closure10(t0) { this.action = t0; }, settingsUIReducer__closure11: function settingsUIReducer__closure11(t0) { this.action = t0; }, settingsUIReducer__closure12: function settingsUIReducer__closure12(t0) { this.action = t0; }, settingsUIReducer_closure2: function settingsUIReducer_closure2() { }, settingsUIReducer__closure9: function settingsUIReducer__closure9(t0) { this.action = t0; }, settingsUIReducer_closure3: function settingsUIReducer_closure3() { }, settingsUIReducer__closure8: function settingsUIReducer__closure8(t0) { this.state = t0; }, settingsUIReducer_closure4: function settingsUIReducer_closure4() { }, settingsUIReducer__closure7: function settingsUIReducer__closure7(t0) { this.action = t0; }, settingsUIReducer_closure5: function settingsUIReducer_closure5() { }, settingsUIReducer__closure6: function settingsUIReducer__closure6(t0) { this.action = t0; }, settingsUIReducer_closure6: function settingsUIReducer_closure6() { }, settingsUIReducer__closure5: function settingsUIReducer__closure5(t0) { this.action = t0; }, settingsUIReducer_closure7: function settingsUIReducer_closure7() { }, settingsUIReducer__closure4: function settingsUIReducer__closure4(t0) { this.action = t0; }, settingsUIReducer_closure8: function settingsUIReducer_closure8() { }, settingsUIReducer__closure3: function settingsUIReducer__closure3(t0, t1) { this.action = t0; this.state = t1; }, settingsUIReducer_closure9: function settingsUIReducer_closure9() { }, settingsUIReducer__closure2: function settingsUIReducer__closure2(t0) { this.state = t0; }, settingsUIReducer_closure10: function settingsUIReducer_closure10() { }, settingsUIReducer__closure1: function settingsUIReducer__closure1(t0) { this.action = t0; }, settingsUIReducer_closure11: function settingsUIReducer_closure11() { }, settingsUIReducer__closure0: function settingsUIReducer__closure0(t0) { this.action = t0; }, settingsUIReducer_closure12: function settingsUIReducer_closure12() { }, settingsUIReducer__closure: function settingsUIReducer__closure() { }, staticLoadedReducer(staticState, action) { var data = action.data, t1 = A.StaticState_StaticState(), t2 = new A.StaticStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._static_state$_$v = t1; new A.staticLoadedReducer_closure(data).call$1(t2); return t2.build$0(0); }, staticLoadedReducer_closure: function staticLoadedReducer_closure(t0) { this.data = t0; }, staticLoadedReducer__closure: function staticLoadedReducer__closure() { }, staticLoadedReducer__closure0: function staticLoadedReducer__closure0() { }, staticLoadedReducer__closure1: function staticLoadedReducer__closure1() { }, staticLoadedReducer__closure2: function staticLoadedReducer__closure2() { }, staticLoadedReducer__closure3: function staticLoadedReducer__closure3() { }, staticLoadedReducer__closure4: function staticLoadedReducer__closure4() { }, staticLoadedReducer__closure5: function staticLoadedReducer__closure5() { }, staticLoadedReducer__closure6: function staticLoadedReducer__closure6() { }, staticLoadedReducer__closure7: function staticLoadedReducer__closure7() { }, staticLoadedReducer__closure8: function staticLoadedReducer__closure8() { }, staticLoadedReducer__closure9: function staticLoadedReducer__closure9() { }, staticLoadedReducer__closure10: function staticLoadedReducer__closure10() { }, staticLoadedReducer__closure11: function staticLoadedReducer__closure11() { }, staticLoadedReducer__closure12: function staticLoadedReducer__closure12() { }, staticLoadedReducer__closure13: function staticLoadedReducer__closure13() { }, staticLoadedReducer__closure14: function staticLoadedReducer__closure14() { }, staticLoadedReducer__closure15: function staticLoadedReducer__closure15() { }, staticLoadedReducer__closure16: function staticLoadedReducer__closure16() { }, countryList(countryMap) { var list, t1 = countryMap.get$keys(countryMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.countryList_closure(countryMap)); return list; }, groupList(groupMap) { var t2, list, t1 = groupMap.get$keys(groupMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.groupList_closure(groupMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.groupList_closure0(groupMap)); return list; }, languageList(languageMap) { var list, t1 = languageMap.get$keys(languageMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.languageList_closure(languageMap)); return list; }, currencyList(currencyMap) { var list, t1 = currencyMap.get$keys(currencyMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.currencyList_closure(currencyMap)); return list; }, timezoneList(timezoneMap) { var list, t1 = timezoneMap.get$keys(timezoneMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.timezoneList_closure(timezoneMap)); return list; }, dateFormatList(dateFormatMap) { var list, t1 = dateFormatMap.get$keys(dateFormatMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dateFormatList_closure(dateFormatMap)); return list; }, industryList(industryMap) { var list, t1 = industryMap.get$keys(industryMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.industryList_closure(industryMap)); return list; }, sizeList(sizeMap) { var list, t1 = sizeMap.get$keys(sizeMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.sizeList_closure(sizeMap)); return list; }, gatewayList(gatewayMap) { var t2, list, t1 = gatewayMap.get$keys(gatewayMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.gatewayList_closure(gatewayMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.gatewayList_closure0(gatewayMap)); return list; }, paymentTypeList(paymentTypeMap) { var list, t1 = paymentTypeMap.get$keys(paymentTypeMap); t1.toString; list = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.paymentTypeList_closure(paymentTypeMap)); return list; }, fontMap(fonts) { var t1 = type$.legacy_String, t2 = type$.legacy_SelectableEntity; return A.BuiltMap_BuiltMap$from(A.LinkedHashMap_LinkedHashMap$fromIterable(fonts, new A.fontMap_closure(), new A.fontMap_closure0(), t1, t2), t1, t2); }, memoizedCountryList_closure: function memoizedCountryList_closure() { }, countryList_closure: function countryList_closure(t0) { this.countryMap = t0; }, memoizedGroupList_closure: function memoizedGroupList_closure() { }, groupList_closure: function groupList_closure(t0) { this.groupMap = t0; }, groupList_closure0: function groupList_closure0(t0) { this.groupMap = t0; }, memoizedLanguageList_closure: function memoizedLanguageList_closure() { }, languageList_closure: function languageList_closure(t0) { this.languageMap = t0; }, memoizedCurrencyList_closure: function memoizedCurrencyList_closure() { }, currencyList_closure: function currencyList_closure(t0) { this.currencyMap = t0; }, memoizedTimezoneList_closure: function memoizedTimezoneList_closure() { }, timezoneList_closure: function timezoneList_closure(t0) { this.timezoneMap = t0; }, memoizedDateFormatList_closure: function memoizedDateFormatList_closure() { }, dateFormatList_closure: function dateFormatList_closure(t0) { this.dateFormatMap = t0; }, memoizedIndustryList_closure: function memoizedIndustryList_closure() { }, industryList_closure: function industryList_closure(t0) { this.industryMap = t0; }, memoizedSizeList_closure: function memoizedSizeList_closure() { }, sizeList_closure: function sizeList_closure(t0) { this.sizeMap = t0; }, memoizedGatewayList_closure: function memoizedGatewayList_closure() { }, gatewayList_closure: function gatewayList_closure(t0) { this.gatewayMap = t0; }, gatewayList_closure0: function gatewayList_closure0(t0) { this.gatewayMap = t0; }, memoizedPaymentTypeList_closure: function memoizedPaymentTypeList_closure() { }, paymentTypeList_closure: function paymentTypeList_closure(t0) { this.paymentTypeMap = t0; }, memoizedFontMap_closure: function memoizedFontMap_closure() { }, fontMap_closure: function fontMap_closure() { }, fontMap_closure0: function fontMap_closure0() { }, StaticState_StaticState() { var t1 = type$.legacy_String, t2 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_CurrencyEntity), t3 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_SizeEntity), t4 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_GatewayEntity), t5 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_IndustryEntity), t6 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_TimezoneEntity), t7 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_DateFormatEntity), t8 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_LanguageEntity), t9 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_PaymentTypeEntity); return A._$StaticState$_(A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_CountryEntity), t2, t7, t4, t5, t8, t9, t3, A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_TemplateEntity), t6, null); }, _$StaticState$_(countryMap, currencyMap, dateFormatMap, gatewayMap, industryMap, languageMap, paymentTypeMap, sizeMap, templateMap, timezoneMap, updatedAt) { var _s11_ = "StaticState"; if (currencyMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "currencyMap")); if (sizeMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "sizeMap")); if (gatewayMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "gatewayMap")); if (industryMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "industryMap")); if (timezoneMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "timezoneMap")); if (dateFormatMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "dateFormatMap")); if (languageMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "languageMap")); if (paymentTypeMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "paymentTypeMap")); if (countryMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "countryMap")); if (templateMap == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "templateMap")); return new A._$StaticState(updatedAt, currencyMap, sizeMap, gatewayMap, industryMap, timezoneMap, dateFormatMap, languageMap, paymentTypeMap, countryMap, templateMap); }, StaticState: function StaticState() { }, _$StaticStateSerializer: function _$StaticStateSerializer() { }, _$StaticState: function _$StaticState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.updatedAt = t0; _.currencyMap = t1; _.sizeMap = t2; _.gatewayMap = t3; _.industryMap = t4; _.timezoneMap = t5; _.dateFormatMap = t6; _.languageMap = t7; _.paymentTypeMap = t8; _.countryMap = t9; _.templateMap = t10; _._static_state$__hashCode = null; }, StaticStateBuilder: function StaticStateBuilder() { var _ = this; _._templateMap = _._countryMap = _._paymentTypeMap = _._languageMap = _._dateFormatMap = _._timezoneMap = _._industryMap = _._gatewayMap = _._sizeMap = _._currencyMap = _._static_state$_updatedAt = _._static_state$_$v = null; }, handleSubscriptionAction(context, subscriptions, action) { var store, t2, subscription, subscriptionIds, t3, t4, _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(subscriptions); if (t1.get$isEmpty(subscriptions)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); subscription = type$.legacy_SubscriptionEntity._as(t1.get$first(subscriptions)); subscriptionIds = t1.map$1$1(subscriptions, new A.handleSubscriptionAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(null, subscription, true, null); break; case B.EntityAction_restore: t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_subscription"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreSubscriptionsRequest(t1, subscriptionIds)); break; case B.EntityAction_archive: t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_subscription"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveSubscriptionsRequest(t1, subscriptionIds)); break; case B.EntityAction_delete: t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_subscription"); if (t1 == null) t1 = ""; t1 = A.snackBarCompleter(context, t1, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteSubscriptionsRequest(t1, subscriptionIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.subscriptionUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartSubscriptionMultiselect()); if (t1.get$isEmpty(subscriptions)) break; for (t1 = t1.get$iterator(subscriptions); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.subscriptionUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToSubscriptionMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromSubscriptionMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([subscription], type$.JSArray_legacy_BaseEntity), false); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in subscription_actions"); break; } }, ViewSubscriptionList: function ViewSubscriptionList() { }, ViewSubscription: function ViewSubscription(t0) { this.subscriptionId = t0; }, EditSubscription: function EditSubscription(t0) { this.subscription = t0; }, UpdateSubscription: function UpdateSubscription(t0) { this.subscription = t0; }, LoadSubscriptionRequest: function LoadSubscriptionRequest() { }, LoadSubscriptionFailure: function LoadSubscriptionFailure(t0) { this.error = t0; }, LoadSubscriptionSuccess: function LoadSubscriptionSuccess(t0) { this.subscription = t0; }, LoadSubscriptionsRequest: function LoadSubscriptionsRequest() { }, LoadSubscriptionsFailure: function LoadSubscriptionsFailure(t0) { this.error = t0; }, LoadSubscriptionsSuccess: function LoadSubscriptionsSuccess(t0) { this.subscriptions = t0; }, SaveSubscriptionRequest: function SaveSubscriptionRequest(t0, t1) { this.completer = t0; this.subscription = t1; }, SaveSubscriptionSuccess: function SaveSubscriptionSuccess(t0) { this.subscription = t0; }, AddSubscriptionSuccess: function AddSubscriptionSuccess(t0) { this.subscription = t0; }, SaveSubscriptionFailure: function SaveSubscriptionFailure() { }, ArchiveSubscriptionsRequest: function ArchiveSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, ArchiveSubscriptionsSuccess: function ArchiveSubscriptionsSuccess(t0) { this.subscriptions = t0; }, ArchiveSubscriptionsFailure: function ArchiveSubscriptionsFailure() { }, DeleteSubscriptionsRequest: function DeleteSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, DeleteSubscriptionsSuccess: function DeleteSubscriptionsSuccess(t0) { this.subscriptions = t0; }, DeleteSubscriptionsFailure: function DeleteSubscriptionsFailure() { }, RestoreSubscriptionsRequest: function RestoreSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, RestoreSubscriptionsSuccess: function RestoreSubscriptionsSuccess(t0) { this.subscriptions = t0; }, RestoreSubscriptionsFailure: function RestoreSubscriptionsFailure() { }, FilterSubscriptions: function FilterSubscriptions(t0) { this.filter = t0; }, SortSubscriptions: function SortSubscriptions(t0) { this.field = t0; }, FilterSubscriptionsByState: function FilterSubscriptionsByState(t0) { this.state = t0; }, FilterSubscriptionsByCustom1: function FilterSubscriptionsByCustom1(t0) { this.value = t0; }, FilterSubscriptionsByCustom2: function FilterSubscriptionsByCustom2(t0) { this.value = t0; }, FilterSubscriptionsByCustom3: function FilterSubscriptionsByCustom3(t0) { this.value = t0; }, FilterSubscriptionsByCustom4: function FilterSubscriptionsByCustom4(t0) { this.value = t0; }, StartSubscriptionMultiselect: function StartSubscriptionMultiselect() { }, AddToSubscriptionMultiselect: function AddToSubscriptionMultiselect(t0) { this.entity = t0; }, RemoveFromSubscriptionMultiselect: function RemoveFromSubscriptionMultiselect(t0) { this.entity = t0; }, ClearSubscriptionMultiselect: function ClearSubscriptionMultiselect() { }, handleSubscriptionAction_closure: function handleSubscriptionAction_closure() { }, _editSubscription() { return new A._editSubscription_closure(); }, _viewSubscription() { return new A._viewSubscription_closure(); }, _viewSubscriptionList() { return new A._viewSubscriptionList_closure(); }, _archiveSubscription(repository) { return new A._archiveSubscription_closure(repository); }, _deleteSubscription(repository) { return new A._deleteSubscription_closure(repository); }, _restoreSubscription(repository) { return new A._restoreSubscription_closure(repository); }, _saveSubscription(repository) { return new A._saveSubscription_closure(repository); }, _loadSubscription(repository) { return new A._loadSubscription_closure(repository); }, _loadSubscriptions(repository) { return new A._loadSubscriptions_closure(repository); }, _editSubscription_closure: function _editSubscription_closure() { }, _viewSubscription_closure: function _viewSubscription_closure() { }, _viewSubscriptionList_closure: function _viewSubscriptionList_closure() { }, _viewSubscriptionList__closure: function _viewSubscriptionList__closure() { }, _archiveSubscription_closure: function _archiveSubscription_closure(t0) { this.repository = t0; }, _archiveSubscription__closure: function _archiveSubscription__closure(t0) { this.store = t0; }, _archiveSubscription__closure0: function _archiveSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveSubscription__closure1: function _archiveSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _deleteSubscription_closure: function _deleteSubscription_closure(t0) { this.repository = t0; }, _deleteSubscription__closure: function _deleteSubscription__closure(t0) { this.store = t0; }, _deleteSubscription__closure0: function _deleteSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteSubscription__closure1: function _deleteSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _restoreSubscription_closure: function _restoreSubscription_closure(t0) { this.repository = t0; }, _restoreSubscription__closure: function _restoreSubscription__closure(t0) { this.store = t0; }, _restoreSubscription__closure0: function _restoreSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreSubscription__closure1: function _restoreSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _saveSubscription_closure: function _saveSubscription_closure(t0) { this.repository = t0; }, _saveSubscription__closure: function _saveSubscription__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveSubscription__closure0: function _saveSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscription_closure: function _loadSubscription_closure(t0) { this.repository = t0; }, _loadSubscription__closure: function _loadSubscription__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscription__closure0: function _loadSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscriptions_closure: function _loadSubscriptions_closure(t0) { this.repository = t0; }, _loadSubscriptions__closure: function _loadSubscriptions__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscriptions__closure0: function _loadSubscriptions__closure0(t0, t1) { this.store = t0; this.action = t1; }, subscriptionUIReducer(state, action) { var t1; state.toString; t1 = new A.SubscriptionUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._subscription_state$_$v = state; new A.subscriptionUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing14(subscription, action) { return A.SubscriptionEntity_SubscriptionEntity(null, null); }, _updateEditing15(subscription, action) { return action.get$subscription(); }, _filterSubscriptionsByCustom1(subscriptionListState, action) { var t1 = subscriptionListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return subscriptionListState.rebuild$1(new A._filterSubscriptionsByCustom1_closure(action)); else return subscriptionListState.rebuild$1(new A._filterSubscriptionsByCustom1_closure0(action)); }, _filterSubscriptionsByCustom2(subscriptionListState, action) { var t1 = subscriptionListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return subscriptionListState.rebuild$1(new A._filterSubscriptionsByCustom2_closure(action)); else return subscriptionListState.rebuild$1(new A._filterSubscriptionsByCustom2_closure0(action)); }, _filterSubscriptionsByState(subscriptionListState, action) { var t1 = subscriptionListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return subscriptionListState.rebuild$1(new A._filterSubscriptionsByState_closure(action)); else return subscriptionListState.rebuild$1(new A._filterSubscriptionsByState_closure0(action)); }, _filterSubscriptions(subscriptionListState, action) { return subscriptionListState.rebuild$1(new A._filterSubscriptions_closure(action, subscriptionListState)); }, _sortSubscriptions(subscriptionListState, action) { return subscriptionListState.rebuild$1(new A._sortSubscriptions_closure(action)); }, _startListMultiselect16(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure18()); }, _addToListMultiselect16(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure18(action)); }, _removeFromListMultiselect16(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure18(action)); }, _clearListMultiselect16(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure18()); }, _archiveSubscriptionSuccess(subscriptionState, action) { return subscriptionState.rebuild$1(new A._archiveSubscriptionSuccess_closure(action)); }, _deleteSubscriptionSuccess(subscriptionState, action) { return subscriptionState.rebuild$1(new A._deleteSubscriptionSuccess_closure(action)); }, _restoreSubscriptionSuccess(subscriptionState, action) { return subscriptionState.rebuild$1(new A._restoreSubscriptionSuccess_closure(action)); }, _addSubscription(subscriptionState, action) { return subscriptionState.rebuild$1(new A._addSubscription_closure(action)); }, _updateSubscription(subscriptionState, action) { return subscriptionState.rebuild$1(new A._updateSubscription_closure(action)); }, _setLoadedSubscription(subscriptionState, action) { return subscriptionState.rebuild$1(new A._setLoadedSubscription_closure(action)); }, _setLoadedSubscriptions(subscriptionState, action) { return subscriptionState.loadSubscriptions$1(action.subscriptions); }, _setLoadedCompany15(subscriptionState, action) { return subscriptionState.loadSubscriptions$1(action.userCompany.company.subscriptions); }, subscriptionUIReducer_closure: function subscriptionUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure143: function forceSelectedReducer_closure143() { }, forceSelectedReducer_closure144: function forceSelectedReducer_closure144() { }, forceSelectedReducer_closure145: function forceSelectedReducer_closure145() { }, forceSelectedReducer_closure146: function forceSelectedReducer_closure146() { }, forceSelectedReducer_closure147: function forceSelectedReducer_closure147() { }, forceSelectedReducer_closure148: function forceSelectedReducer_closure148() { }, forceSelectedReducer_closure149: function forceSelectedReducer_closure149() { }, forceSelectedReducer_closure150: function forceSelectedReducer_closure150() { }, tabIndexReducer_closure15: function tabIndexReducer_closure15() { }, tabIndexReducer_closure16: function tabIndexReducer_closure16() { }, selectedIdReducer_closure286: function selectedIdReducer_closure286() { }, selectedIdReducer_closure287: function selectedIdReducer_closure287() { }, selectedIdReducer_closure288: function selectedIdReducer_closure288() { }, selectedIdReducer_closure289: function selectedIdReducer_closure289() { }, selectedIdReducer_closure290: function selectedIdReducer_closure290() { }, selectedIdReducer_closure291: function selectedIdReducer_closure291() { }, selectedIdReducer_closure292: function selectedIdReducer_closure292() { }, selectedIdReducer_closure293: function selectedIdReducer_closure293() { }, selectedIdReducer_closure294: function selectedIdReducer_closure294() { }, selectedIdReducer_closure295: function selectedIdReducer_closure295() { }, selectedIdReducer_closure296: function selectedIdReducer_closure296() { }, selectedIdReducer_closure297: function selectedIdReducer_closure297() { }, selectedIdReducer_closure298: function selectedIdReducer_closure298() { }, selectedIdReducer_closure299: function selectedIdReducer_closure299() { }, selectedIdReducer_closure300: function selectedIdReducer_closure300() { }, editingReducer_closure95: function editingReducer_closure95() { }, editingReducer_closure96: function editingReducer_closure96() { }, editingReducer_closure97: function editingReducer_closure97() { }, editingReducer_closure98: function editingReducer_closure98() { }, editingReducer__closure36: function editingReducer__closure36() { }, _filterSubscriptionsByCustom1_closure: function _filterSubscriptionsByCustom1_closure(t0) { this.action = t0; }, _filterSubscriptionsByCustom1_closure0: function _filterSubscriptionsByCustom1_closure0(t0) { this.action = t0; }, _filterSubscriptionsByCustom2_closure: function _filterSubscriptionsByCustom2_closure(t0) { this.action = t0; }, _filterSubscriptionsByCustom2_closure0: function _filterSubscriptionsByCustom2_closure0(t0) { this.action = t0; }, _filterSubscriptionsByState_closure: function _filterSubscriptionsByState_closure(t0) { this.action = t0; }, _filterSubscriptionsByState_closure0: function _filterSubscriptionsByState_closure0(t0) { this.action = t0; }, _filterSubscriptions_closure: function _filterSubscriptions_closure(t0, t1) { this.action = t0; this.subscriptionListState = t1; }, _sortSubscriptions_closure: function _sortSubscriptions_closure(t0) { this.action = t0; }, _startListMultiselect_closure18: function _startListMultiselect_closure18() { }, _addToListMultiselect_closure18: function _addToListMultiselect_closure18(t0) { this.action = t0; }, _removeFromListMultiselect_closure18: function _removeFromListMultiselect_closure18(t0) { this.action = t0; }, _clearListMultiselect_closure18: function _clearListMultiselect_closure18() { }, _archiveSubscriptionSuccess_closure: function _archiveSubscriptionSuccess_closure(t0) { this.action = t0; }, _deleteSubscriptionSuccess_closure: function _deleteSubscriptionSuccess_closure(t0) { this.action = t0; }, _restoreSubscriptionSuccess_closure: function _restoreSubscriptionSuccess_closure(t0) { this.action = t0; }, _addSubscription_closure: function _addSubscription_closure(t0) { this.action = t0; }, _updateSubscription_closure: function _updateSubscription_closure(t0) { this.action = t0; }, _setLoadedSubscription_closure: function _setLoadedSubscription_closure(t0) { this.action = t0; }, filteredSubscriptionsSelector(selectionState, subscriptionMap, subscriptionList, subscriptionListState) { var filterEntityId = selectionState.filterEntityId, t1 = subscriptionList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredSubscriptionsSelector_closure(subscriptionMap, selectionState, filterEntityId, subscriptionListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredSubscriptionsSelector_closure0(subscriptionMap, subscriptionListState)); return list; }, memoizedFilteredSubscriptionList_closure: function memoizedFilteredSubscriptionList_closure() { }, filteredSubscriptionsSelector_closure: function filteredSubscriptionsSelector_closure(t0, t1, t2, t3) { var _ = this; _.subscriptionMap = t0; _.selectionState = t1; _.filterEntityId = t2; _.subscriptionListState = t3; }, filteredSubscriptionsSelector_closure0: function filteredSubscriptionsSelector_closure0(t0, t1) { this.subscriptionMap = t0; this.subscriptionListState = t1; }, _$SubscriptionState$_(list, map) { var _s17_ = "SubscriptionState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "list")); return new A._$SubscriptionState(map, list); }, _$SubscriptionUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("SubscriptionUIState", "listUIState")); return new A._$SubscriptionUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, SubscriptionState: function SubscriptionState() { }, SubscriptionState_loadSubscriptions_closure0: function SubscriptionState_loadSubscriptions_closure0() { }, SubscriptionState_loadSubscriptions_closure1: function SubscriptionState_loadSubscriptions_closure1() { }, SubscriptionState_loadSubscriptions_closure: function SubscriptionState_loadSubscriptions_closure(t0, t1) { this.$this = t0; this.map = t1; }, SubscriptionUIState: function SubscriptionUIState() { }, _$SubscriptionStateSerializer: function _$SubscriptionStateSerializer() { }, _$SubscriptionUIStateSerializer: function _$SubscriptionUIStateSerializer() { }, _$SubscriptionState: function _$SubscriptionState(t0, t1) { this.map = t0; this.list = t1; this._subscription_state$__hashCode = null; }, SubscriptionStateBuilder: function SubscriptionStateBuilder() { this._subscription_state$_list = this._subscription_state$_map = this._subscription_state$_$v = null; }, _$SubscriptionUIState: function _$SubscriptionUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._subscription_state$__hashCode = null; }, SubscriptionUIStateBuilder: function SubscriptionUIStateBuilder() { var _ = this; _._subscription_state$_cancelCompleter = _._subscription_state$_saveCompleter = _._subscription_state$_tabIndex = _._subscription_state$_forceSelected = _._subscription_state$_selectedId = _._subscription_state$_listUIState = _._subscription_state$_editing = _._subscription_state$_$v = null; }, _SubscriptionUIState_Object_EntityUIState: function _SubscriptionUIState_Object_EntityUIState() { }, handleTaskAction(context, tasks, action) { var store, state, t2, t3, task, t4, t5, t6, t7, client, taskIds, message, t8, t9, company, items, documentIds, _null = null, _s6_ = "_state", _s13_ = "started_tasks", _s6_0 = ":value", _s13_0 = "stopped_tasks", _s12_ = "_dispatchers", _box_0 = {}, t1 = J.getInterceptor$asx(tasks); if (t1.get$isEmpty(tasks)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = type$.legacy_TaskEntity; task = t3._as(t1.get$first(tasks)); t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t4 = t4._list; t6 = t4[t5].clientState; t7 = task.clientId; client = t6.$get$1(0, t7); taskIds = t1.map$1$1(tasks, new A.handleTaskAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, task, true, _null); break; case B.EntityAction_start: case B.EntityAction_resume: if (taskIds.length > 1) { t2.toString; t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, t2.localeCode), _s13_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; message = J.replaceFirst$2$s(t1, _s6_0, B.JSInt_methods.toString$0(taskIds.length)); } else message = t2.get$startedTask(); t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StartTasksRequest(t1, taskIds)); break; case B.EntityAction_stop: if (taskIds.length > 1) { t2.toString; t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, t2.localeCode), _s13_0); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_0) : t2; message = J.replaceFirst$2$s(t1, _s6_0, B.JSInt_methods.toString$0(taskIds.length)); } else message = t2.get$stoppedTask(); t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.StopTasksRequest(t1, taskIds)); break; case B.EntityAction_invoiceTask: case B.EntityAction_addToInvoice: _box_0.lastClientId = ""; _box_0.hasMultipleClients = false; t1.forEach$1(tasks, new A.handleTaskAction_closure0(_box_0)); if (_box_0.hasMultipleClients) { A.showErrorDialog(false, context, t2.get$multipleClientError()); return; } t1.sort$1(tasks, new A.handleTaskAction_closure1()); _box_0.projectId = ""; _box_0.hasMultipleProjects = false; for (t6 = t1.get$iterator(tasks); t6.moveNext$0();) { t8 = t3._as(t6.get$current(t6)).projectId; if (t8.length !== 0) { t9 = _box_0.projectId; if (t9.length === 0) _box_0.projectId = t8; else if (t8 !== t9) _box_0.hasMultipleProjects = true; } } company = t4[t5].userCompany.company; items = A._setArrayType([], type$.JSArray_legacy_InvoiceItemEntity); _box_0.lastTask = null; t1.where$1(tasks, new A.handleTaskAction_closure2()).forEach$1(0, new A.handleTaskAction_closure3(_box_0, items, context, company, t2)); if (items.length !== 0) if (action === B.EntityAction_invoiceTask) A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null, _null).rebuild$1(new A.handleTaskAction_closure4(_box_0, items)), false); else A.addToInvoiceDialog(t7, context, items); break; case B.EntityAction_clone: A.createEntity(_null, _null, context, task.get$clone(task), false); break; case B.EntityAction_changeStatus: A.changeTaskStatusDialog(context, task); break; case B.EntityAction_restore: if (taskIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_tasks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_task"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreTaskRequest(t1, taskIds)); break; case B.EntityAction_archive: if (taskIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_tasks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_task"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveTaskRequest(t1, taskIds)); break; case B.EntityAction_delete: if (taskIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_tasks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_task"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteTaskRequest(t1, taskIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.taskUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartTaskMultiselect()); if (t1.get$isEmpty(tasks)) break; for (t1 = t1.get$iterator(tasks); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.taskUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToTaskMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromTaskMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([task], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(tasks); t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in task_actions"); break; } }, ViewTaskList: function ViewTaskList() { }, ViewTask: function ViewTask(t0) { this.taskId = t0; }, EditTask: function EditTask(t0, t1) { this.taskTimeIndex = t0; this.task = t1; }, UpdateTask: function UpdateTask(t0) { this.task = t0; }, LoadTask: function LoadTask(t0, t1) { this.completer = t0; this.taskId = t1; }, LoadTasks: function LoadTasks() { }, LoadTaskRequest: function LoadTaskRequest() { }, LoadTaskFailure: function LoadTaskFailure(t0) { this.error = t0; }, LoadTaskSuccess: function LoadTaskSuccess(t0) { this.task = t0; }, EditTaskTime: function EditTaskTime() { }, AddTaskTime: function AddTaskTime(t0) { this.taskTime = t0; }, UpdateTaskTime: function UpdateTaskTime(t0, t1) { this.index = t0; this.taskTime = t1; }, DeleteTaskTime: function DeleteTaskTime(t0) { this.index = t0; }, LoadTasksRequest: function LoadTasksRequest() { }, LoadTasksFailure: function LoadTasksFailure(t0) { this.error = t0; }, LoadTasksSuccess: function LoadTasksSuccess(t0) { this.tasks = t0; }, SaveTaskRequest: function SaveTaskRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.task = t1; _.autoSelect = t2; _.action = t3; }, SaveTaskSuccess: function SaveTaskSuccess(t0) { this.task = t0; }, AddTaskSuccess: function AddTaskSuccess(t0, t1) { this.task = t0; this.autoSelect = t1; }, SaveTaskFailure: function SaveTaskFailure() { }, ArchiveTaskRequest: function ArchiveTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, ArchiveTaskSuccess: function ArchiveTaskSuccess(t0) { this.tasks = t0; }, ArchiveTaskFailure: function ArchiveTaskFailure() { }, StartTasksRequest: function StartTasksRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, StartTasksSuccess: function StartTasksSuccess(t0) { this.tasks = t0; }, StartTasksFailure: function StartTasksFailure() { }, StopTasksRequest: function StopTasksRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, StopTasksSuccess: function StopTasksSuccess(t0) { this.tasks = t0; }, StopTasksFailure: function StopTasksFailure() { }, DeleteTaskRequest: function DeleteTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, DeleteTaskSuccess: function DeleteTaskSuccess(t0) { this.tasks = t0; }, DeleteTaskFailure: function DeleteTaskFailure() { }, RestoreTaskRequest: function RestoreTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, RestoreTaskSuccess: function RestoreTaskSuccess(t0) { this.tasks = t0; }, RestoreTaskFailure: function RestoreTaskFailure() { }, SortTasksRequest: function SortTasksRequest(t0, t1, t2) { this.completer = t0; this.statusIds = t1; this.taskIds = t2; }, SortTasksSuccess: function SortTasksSuccess(t0, t1) { this.statusIds = t0; this.taskIds = t1; }, SortTasksFailure: function SortTasksFailure() { }, FilterTasks: function FilterTasks(t0) { this.filter = t0; }, SortTasks: function SortTasks(t0) { this.field = t0; }, FilterTasksByState: function FilterTasksByState(t0) { this.state = t0; }, FilterTasksByStatus: function FilterTasksByStatus(t0) { this.status = t0; }, FilterTasksByCustom1: function FilterTasksByCustom1(t0) { this.value = t0; }, FilterTasksByCustom2: function FilterTasksByCustom2(t0) { this.value = t0; }, FilterTasksByCustom3: function FilterTasksByCustom3(t0) { this.value = t0; }, FilterTasksByCustom4: function FilterTasksByCustom4(t0) { this.value = t0; }, UpdateKanban: function UpdateKanban() { }, handleTaskAction_closure: function handleTaskAction_closure() { }, handleTaskAction_closure0: function handleTaskAction_closure0(t0) { this._box_0 = t0; }, handleTaskAction_closure1: function handleTaskAction_closure1() { }, handleTaskAction_closure2: function handleTaskAction_closure2() { }, handleTaskAction_closure3: function handleTaskAction_closure3(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.items = t1; _.context = t2; _.company = t3; _.localization = t4; }, handleTaskAction_closure4: function handleTaskAction_closure4(t0, t1) { this._box_0 = t0; this.items = t1; }, StartTaskMultiselect: function StartTaskMultiselect() { }, AddToTaskMultiselect: function AddToTaskMultiselect(t0) { this.entity = t0; }, RemoveFromTaskMultiselect: function RemoveFromTaskMultiselect(t0) { this.entity = t0; }, ClearTaskMultiselect: function ClearTaskMultiselect() { }, SaveTaskDocumentRequest: function SaveTaskDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.task = t2; }, SaveTaskDocumentFailure: function SaveTaskDocumentFailure() { }, UpdateTaskTab: function UpdateTaskTab(t0) { this.tabIndex = t0; }, _editTask() { return new A._editTask_closure(); }, _viewTask() { return new A._viewTask_closure(); }, _viewTaskList() { return new A._viewTaskList_closure0(); }, _archiveTask(repository) { return new A._archiveTask_closure(repository); }, _startTask(repository) { return new A._startTask_closure(repository); }, _stopTask(repository) { return new A._stopTask_closure(repository); }, _deleteTask(repository) { return new A._deleteTask_closure(repository); }, _restoreTask(repository) { return new A._restoreTask_closure(repository); }, _saveTask(repository) { return new A._saveTask_closure(repository); }, _loadTask(repository) { return new A._loadTask_closure(repository); }, _loadTasks(repository) { return new A._loadTasks_closure(repository); }, _saveDocument4(repository) { return new A._saveDocument_closure7(repository); }, _sortTasks(repository) { return new A._sortTasks_closure0(repository); }, _editTask_closure: function _editTask_closure() { }, _viewTask_closure: function _viewTask_closure() { }, _viewTaskList_closure0: function _viewTaskList_closure0() { }, _viewTaskList__closure: function _viewTaskList__closure() { }, _archiveTask_closure: function _archiveTask_closure(t0) { this.repository = t0; }, _archiveTask__closure: function _archiveTask__closure(t0) { this.store = t0; }, _archiveTask__closure0: function _archiveTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTask__closure1: function _archiveTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _startTask_closure: function _startTask_closure(t0) { this.repository = t0; }, _startTask__closure: function _startTask__closure(t0) { this.store = t0; }, _startTask__closure0: function _startTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _startTask__closure1: function _startTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _stopTask_closure: function _stopTask_closure(t0) { this.repository = t0; }, _stopTask__closure: function _stopTask__closure(t0) { this.store = t0; }, _stopTask__closure0: function _stopTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _stopTask__closure1: function _stopTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _deleteTask_closure: function _deleteTask_closure(t0) { this.repository = t0; }, _deleteTask__closure: function _deleteTask__closure(t0) { this.store = t0; }, _deleteTask__closure0: function _deleteTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTask__closure1: function _deleteTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _restoreTask_closure: function _restoreTask_closure(t0) { this.repository = t0; }, _restoreTask__closure: function _restoreTask__closure(t0) { this.store = t0; }, _restoreTask__closure0: function _restoreTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTask__closure1: function _restoreTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _saveTask_closure: function _saveTask_closure(t0) { this.repository = t0; }, _saveTask__closure: function _saveTask__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTask__closure0: function _saveTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTask_closure: function _loadTask_closure(t0) { this.repository = t0; }, _loadTask__closure: function _loadTask__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTask__closure0: function _loadTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTasks_closure: function _loadTasks_closure(t0) { this.repository = t0; }, _loadTasks__closure: function _loadTasks__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTasks__closure0: function _loadTasks__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure7: function _saveDocument_closure7(t0) { this.repository = t0; }, _saveDocument__closure15: function _saveDocument__closure15(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure16: function _saveDocument__closure16(t0, t1) { this.store = t0; this.action = t1; }, _sortTasks_closure0: function _sortTasks_closure0(t0) { this.repository = t0; }, _sortTasks__closure: function _sortTasks__closure(t0, t1) { this.store = t0; this.action = t1; }, _sortTasks__closure0: function _sortTasks__closure0(t0, t1) { this.store = t0; this.action = t1; }, taskUIReducer(state, action) { var t1; state.toString; t1 = new A.TaskUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._task_state$_$v = state; new A.taskUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing15(task, action) { var _null = null; return A.TaskEntity_TaskEntity(_null, _null, _null, _null, _null); }, _updateEditing16(task, action) { return action.get$task(); }, _viewTaskList0(taskListState, action) { return taskListState.rebuild$1(new A._viewTaskList_closure()); }, _filterTasksByCustom1(taskListState, action) { var t1 = taskListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskListState.rebuild$1(new A._filterTasksByCustom1_closure(action)); else return taskListState.rebuild$1(new A._filterTasksByCustom1_closure0(action)); }, _filterTasksByCustom2(taskListState, action) { var t1 = taskListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskListState.rebuild$1(new A._filterTasksByCustom2_closure(action)); else return taskListState.rebuild$1(new A._filterTasksByCustom2_closure0(action)); }, _filterTasksByState(taskListState, action) { var t1 = taskListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskListState.rebuild$1(new A._filterTasksByState_closure(action)); else return taskListState.rebuild$1(new A._filterTasksByState_closure0(action)); }, _filterTasksByStatus(taskListState, action) { var t1 = taskListState.statusFilters, t2 = action.status; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskListState.rebuild$1(new A._filterTasksByStatus_closure(action)); else return taskListState.rebuild$1(new A._filterTasksByStatus_closure0(action)); }, _filterTasks(taskListState, action) { return taskListState.rebuild$1(new A._filterTasks_closure(action, taskListState)); }, _sortTasks0(taskListState, action) { return taskListState.rebuild$1(new A._sortTasks_closure(action)); }, _addTaskTime(task, action) { return task.addTaskTime$1(action.taskTime); }, _removeTaskTime(task, action) { return task.deleteTaskTime$1(action.index); }, _updateTaskTime(task, action) { return task.updateTaskTime$2(action.taskTime, action.index); }, _startListMultiselect17(taskListState, action) { return taskListState.rebuild$1(new A._startListMultiselect_closure2()); }, _addToListMultiselect17(taskListState, action) { return taskListState.rebuild$1(new A._addToListMultiselect_closure2(action)); }, _removeFromListMultiselect17(taskListState, action) { return taskListState.rebuild$1(new A._removeFromListMultiselect_closure2(action)); }, _clearListMultiselect17(taskListState, action) { return taskListState.rebuild$1(new A._clearListMultiselect_closure2()); }, _sortTasksSuccess(taskState, action) { return taskState.rebuild$1(new A._sortTasksSuccess_closure(action, taskState)); }, _archiveTaskSuccess(taskState, action) { return taskState.rebuild$1(new A._archiveTaskSuccess_closure(action)); }, _startTaskSuccess(taskState, action) { return taskState.rebuild$1(new A._startTaskSuccess_closure(action)); }, _stopTaskSuccess(taskState, action) { return taskState.rebuild$1(new A._stopTaskSuccess_closure(action)); }, _deleteTaskSuccess(taskState, action) { return taskState.rebuild$1(new A._deleteTaskSuccess_closure(action)); }, _restoreTaskSuccess(taskState, action) { return taskState.rebuild$1(new A._restoreTaskSuccess_closure(action)); }, _addTask(taskState, action) { return taskState.rebuild$1(new A._addTask_closure(action)); }, _updateTask(taskState, action) { return taskState.rebuild$1(new A._updateTask_closure(action)); }, _setLoadedTask(taskState, action) { return taskState.rebuild$1(new A._setLoadedTask_closure(action)); }, _setLoadedTasks(taskState, action) { return taskState.loadTasks$1(action.tasks); }, _setLoadedCompany16(taskState, action) { return taskState.loadTasks$1(action.userCompany.company.tasks); }, taskUIReducer_closure: function taskUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure23: function forceSelectedReducer_closure23() { }, forceSelectedReducer_closure24: function forceSelectedReducer_closure24() { }, forceSelectedReducer_closure25: function forceSelectedReducer_closure25() { }, forceSelectedReducer_closure26: function forceSelectedReducer_closure26() { }, forceSelectedReducer_closure27: function forceSelectedReducer_closure27() { }, forceSelectedReducer_closure28: function forceSelectedReducer_closure28() { }, forceSelectedReducer_closure29: function forceSelectedReducer_closure29() { }, forceSelectedReducer_closure30: function forceSelectedReducer_closure30() { }, tabIndexReducer_closure5: function tabIndexReducer_closure5() { }, tabIndexReducer_closure6: function tabIndexReducer_closure6() { }, kanbanLastUpdatedReducer_closure: function kanbanLastUpdatedReducer_closure() { }, editingTimeReducer_closure: function editingTimeReducer_closure() { }, editingTimeReducer_closure0: function editingTimeReducer_closure0() { }, selectedIdReducer_closure49: function selectedIdReducer_closure49() { }, selectedIdReducer_closure50: function selectedIdReducer_closure50() { }, selectedIdReducer_closure51: function selectedIdReducer_closure51() { }, selectedIdReducer_closure52: function selectedIdReducer_closure52() { }, selectedIdReducer_closure53: function selectedIdReducer_closure53() { }, selectedIdReducer_closure54: function selectedIdReducer_closure54() { }, selectedIdReducer_closure55: function selectedIdReducer_closure55() { }, selectedIdReducer_closure56: function selectedIdReducer_closure56() { }, selectedIdReducer_closure57: function selectedIdReducer_closure57() { }, selectedIdReducer_closure58: function selectedIdReducer_closure58() { }, selectedIdReducer_closure59: function selectedIdReducer_closure59() { }, selectedIdReducer_closure60: function selectedIdReducer_closure60() { }, selectedIdReducer_closure61: function selectedIdReducer_closure61() { }, selectedIdReducer_closure62: function selectedIdReducer_closure62() { }, selectedIdReducer_closure63: function selectedIdReducer_closure63() { }, editingReducer_closure18: function editingReducer_closure18() { }, editingReducer_closure19: function editingReducer_closure19() { }, editingReducer_closure20: function editingReducer_closure20() { }, editingReducer_closure21: function editingReducer_closure21() { }, editingReducer_closure22: function editingReducer_closure22() { }, editingReducer_closure23: function editingReducer_closure23() { }, editingReducer__closure8: function editingReducer__closure8() { }, _viewTaskList_closure: function _viewTaskList_closure() { }, _filterTasksByCustom1_closure: function _filterTasksByCustom1_closure(t0) { this.action = t0; }, _filterTasksByCustom1_closure0: function _filterTasksByCustom1_closure0(t0) { this.action = t0; }, _filterTasksByCustom2_closure: function _filterTasksByCustom2_closure(t0) { this.action = t0; }, _filterTasksByCustom2_closure0: function _filterTasksByCustom2_closure0(t0) { this.action = t0; }, _filterTasksByState_closure: function _filterTasksByState_closure(t0) { this.action = t0; }, _filterTasksByState_closure0: function _filterTasksByState_closure0(t0) { this.action = t0; }, _filterTasksByStatus_closure: function _filterTasksByStatus_closure(t0) { this.action = t0; }, _filterTasksByStatus_closure0: function _filterTasksByStatus_closure0(t0) { this.action = t0; }, _filterTasks_closure: function _filterTasks_closure(t0, t1) { this.action = t0; this.taskListState = t1; }, _sortTasks_closure: function _sortTasks_closure(t0) { this.action = t0; }, _startListMultiselect_closure2: function _startListMultiselect_closure2() { }, _addToListMultiselect_closure2: function _addToListMultiselect_closure2(t0) { this.action = t0; }, _removeFromListMultiselect_closure2: function _removeFromListMultiselect_closure2(t0) { this.action = t0; }, _clearListMultiselect_closure2: function _clearListMultiselect_closure2() { }, _sortTasksSuccess_closure: function _sortTasksSuccess_closure(t0, t1) { this.action = t0; this.taskState = t1; }, _sortTasksSuccess__closure: function _sortTasksSuccess__closure(t0, t1, t2) { this.statusId = t0; this.action = t1; this.taskId = t2; }, _archiveTaskSuccess_closure: function _archiveTaskSuccess_closure(t0) { this.action = t0; }, _startTaskSuccess_closure: function _startTaskSuccess_closure(t0) { this.action = t0; }, _stopTaskSuccess_closure: function _stopTaskSuccess_closure(t0) { this.action = t0; }, _deleteTaskSuccess_closure: function _deleteTaskSuccess_closure(t0) { this.action = t0; }, _restoreTaskSuccess_closure: function _restoreTaskSuccess_closure(t0) { this.action = t0; }, _addTask_closure: function _addTask_closure(t0) { this.action = t0; }, _updateTask_closure: function _updateTask_closure(t0) { this.action = t0; }, _setLoadedTask_closure: function _setLoadedTask_closure(t0) { this.action = t0; }, convertTaskToInvoiceItem(context, includeProjectHeader, task) { var t3, t4, project, client, group, company, t5, dates, t6, notes, t7, fieldLabel1, fieldLabel2, fieldLabel3, fieldLabel4, customValues, value, _box_0 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].projectState; t4 = task.projectId; project = t3.$get$1(0, t4); client = t1[t2].clientState.$get$1(0, task.clientId); group = t1[t2].groupState.$get$1(0, client.groupId); t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); company = t1[t2].userCompany.company; _box_0.notes = ""; t5 = type$.legacy_String; dates = A.LinkedHashSet_LinkedHashSet$_empty(t5); t6 = !project.get$isNew() && includeProjectHeader ? _box_0.notes = "## " + project.name + "\n" : ""; notes = _box_0.notes = t6 + task.description; t6 = t1[t2].userCompany.company; if (t6.invoiceTaskDatelog || t6.invoiceTaskTimelog) { _box_0.notes = (B.JSString_methods.trim$0(notes).length !== 0 ? _box_0.notes = notes + "\n" : notes) + '
\n'; t6 = task.getTaskTimes$0(); new A.WhereIterable(t6, new A.convertTaskToInvoiceItem_closure(), A._arrayInstanceType(t6)._eval$1("WhereIterable<1>")).forEach$1(0, new A.convertTaskToInvoiceItem_closure0(_box_0, state, context, dates)); t6 = _box_0.notes += "
\n"; t7 = t1[t2].userCompany.company; if (t7.invoiceTaskDatelog && !t7.invoiceTaskTimelog) t6 = _box_0.notes = t6 + ("\n" + dates.join$1(0, "\n")); _box_0.notes = B.JSString_methods.trim$0(t6); } _box_0.customValue4 = _box_0.customValue3 = _box_0.customValue2 = _box_0.customValue1 = ""; fieldLabel1 = company.getCustomFieldLabel$1("task1"); fieldLabel2 = company.getCustomFieldLabel$1("task2"); fieldLabel3 = company.getCustomFieldLabel$1("task3"); fieldLabel4 = company.getCustomFieldLabel$1("task4"); customValues = A.LinkedHashMap_LinkedHashMap$_literal([company.getCustomFieldLabel$1("task1"), task.customValue1, company.getCustomFieldLabel$1("task2"), task.customValue2, company.getCustomFieldLabel$1("task3"), task.customValue3, company.getCustomFieldLabel$1("task4"), task.customValue4, t3.get$project(), t1[t2].projectState.$get$1(0, t4).name], t5, t5); for (t1 = A.LinkedHashMapKeyIterator$(customValues, customValues._modifications, A._instanceType(customValues)._precomputed1); t1.moveNext$0();) { t2 = t1.__js_helper$_current; value = customValues.$index(0, t2); if (fieldLabel1.toLowerCase() === t2.toLowerCase()) _box_0.customValue1 = value; else if (fieldLabel2.toLowerCase() === t2.toLowerCase()) _box_0.customValue2 = value; else if (fieldLabel3.toLowerCase() === t2.toLowerCase()) _box_0.customValue3 = value; else if (fieldLabel4.toLowerCase() === t2.toLowerCase()) _box_0.customValue4 = value; } return A.InvoiceItemEntity_InvoiceItemEntity(null, null).rebuild$1(new A.convertTaskToInvoiceItem_closure1(_box_0, task, state, project, client, group)); }, taskList(taskMap, clientId, userMap, clientMap, projectMap) { var t2, list, t1 = taskMap.get$keys(taskMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.taskList_closure(taskMap, clientId), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.taskList_closure0(taskMap)); return list; }, kanbanTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = taskList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.kanbanTasksSelector_closure(taskMap, clientMap, filterEntityType, filterEntityId), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.kanbanTasksSelector_closure0(taskMap, taskListState, userMap, clientMap, projectMap, invoiceMap, taskStatusMap)); return list; }, filteredTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = taskList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredTasksSelector_closure(taskMap, clientMap, projectMap, selectionState, filterEntityType, filterEntityId, taskListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredTasksSelector_closure0(taskMap, taskListState, userMap, clientMap, projectMap, invoiceMap, taskStatusMap)); return list; }, taskRateSelector(client, company, group, project, task) { var t1 = task.rate; if (t1 > 0) return t1; else if (project != null && project.taskRate > 0) return project.taskRate; else { if (client != null) { t1 = client.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return client.settings.defaultTaskRate; else { if (group != null) { t1 = group.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return group.settings.defaultTaskRate; else { if (company != null) { t1 = company.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return company.settings.defaultTaskRate; } } } return 0; }, taskStatsForClient(clientId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; taskMap._map$_map.forEach$1(0, new A.taskStatsForClient_closure(t1, clientId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, taskStatsForProject(projectId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; taskMap._map$_map.forEach$1(0, new A.taskStatsForProject_closure(t1, projectId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, hasTaskChanges(task, taskMap) { var t1; if (task.get$isNew()) t1 = task.isChanged; else { t1 = task.id; t1 = !task.$eq(0, taskMap._map$_map.$index(0, t1)); } return t1; }, convertTaskToInvoiceItem_closure: function convertTaskToInvoiceItem_closure() { }, convertTaskToInvoiceItem_closure0: function convertTaskToInvoiceItem_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.state = t1; _.context = t2; _.dates = t3; }, convertTaskToInvoiceItem_closure1: function convertTaskToInvoiceItem_closure1(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.task = t1; _.state = t2; _.project = t3; _.client = t4; _.group = t5; }, memoizedTaskList_closure: function memoizedTaskList_closure() { }, taskList_closure: function taskList_closure(t0, t1) { this.taskMap = t0; this.clientId = t1; }, taskList_closure0: function taskList_closure0(t0) { this.taskMap = t0; }, memoizedKanbanTaskList_closure: function memoizedKanbanTaskList_closure() { }, kanbanTasksSelector_closure: function kanbanTasksSelector_closure(t0, t1, t2, t3) { var _ = this; _.taskMap = t0; _.clientMap = t1; _.filterEntityType = t2; _.filterEntityId = t3; }, kanbanTasksSelector_closure0: function kanbanTasksSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.taskListState = t1; _.userMap = t2; _.clientMap = t3; _.projectMap = t4; _.invoiceMap = t5; _.taskStatusMap = t6; }, memoizedFilteredTaskList_closure: function memoizedFilteredTaskList_closure() { }, filteredTasksSelector_closure: function filteredTasksSelector_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.clientMap = t1; _.projectMap = t2; _.selectionState = t3; _.filterEntityType = t4; _.filterEntityId = t5; _.taskListState = t6; }, filteredTasksSelector_closure0: function filteredTasksSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.taskListState = t1; _.userMap = t2; _.clientMap = t3; _.projectMap = t4; _.invoiceMap = t5; _.taskStatusMap = t6; }, memoizedTaskStatsForClient_closure: function memoizedTaskStatsForClient_closure() { }, taskStatsForClient_closure: function taskStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedTaskStatsForProject_closure: function memoizedTaskStatsForProject_closure() { }, taskStatsForProject_closure: function taskStatsForProject_closure(t0, t1) { this._box_0 = t0; this.projectId = t1; }, memoizedTaskStatsForUser_closure: function memoizedTaskStatsForUser_closure() { }, _$TaskState$_(list, map) { var _s9_ = "TaskState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "list")); return new A._$TaskState(map, list); }, _$TaskUIState$_(cancelCompleter, editing, editingTimeIndex, forceSelected, kanbanLastUpdated, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("TaskUIState", "listUIState")); return new A._$TaskUIState(editing, editingTimeIndex, kanbanLastUpdated, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaskState: function TaskState() { }, TaskState_loadTasks_closure0: function TaskState_loadTasks_closure0() { }, TaskState_loadTasks_closure1: function TaskState_loadTasks_closure1() { }, TaskState_loadTasks_closure: function TaskState_loadTasks_closure(t0, t1) { this.$this = t0; this.map = t1; }, TaskUIState: function TaskUIState() { }, _$TaskStateSerializer: function _$TaskStateSerializer() { }, _$TaskUIStateSerializer: function _$TaskUIStateSerializer() { }, _$TaskState: function _$TaskState(t0, t1) { this.map = t0; this.list = t1; this._task_state$__hashCode = null; }, TaskStateBuilder: function TaskStateBuilder() { this._task_state$_list = this._task_state$_map = this._task_state$_$v = null; }, _$TaskUIState: function _$TaskUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingTimeIndex = t1; _.kanbanLastUpdated = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._task_state$__hashCode = null; }, TaskUIStateBuilder: function TaskUIStateBuilder() { var _ = this; _._task_state$_cancelCompleter = _._task_state$_saveCompleter = _._task_state$_tabIndex = _._task_state$_forceSelected = _._task_state$_selectedId = _._task_state$_listUIState = _._kanbanLastUpdated = _._editingTimeIndex = _._task_state$_editing = _._task_state$_$v = null; }, _TaskUIState_Object_EntityUIState: function _TaskUIState_Object_EntityUIState() { }, handleTaskStatusAction(context, taskStatuses, action) { var store, state, t2, taskStatus, taskStatusIds, message, t3, t4, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(taskStatuses); if (t1.get$isEmpty(taskStatuses)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); taskStatus = type$.legacy_TaskStatusEntity._as(t1.get$first(taskStatuses)); taskStatusIds = t1.map$1$1(taskStatuses, new A.handleTaskStatusAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, taskStatus, true, _null); break; case B.EntityAction_restore: if (taskStatusIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_task_statuses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskStatusIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_task_status"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreTaskStatusesRequest(t1, taskStatusIds)); break; case B.EntityAction_archive: if (taskStatusIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_task_statuses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskStatusIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_task_status"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveTaskStatusesRequest(t1, taskStatusIds)); break; case B.EntityAction_delete: if (taskStatusIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_task_statuses"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(taskStatusIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_task_status"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteTaskStatusesRequest(t1, taskStatusIds)); break; case B.EntityAction_newTask: A.createEntity(_null, _null, context, A.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new A.handleTaskStatusAction_closure0(taskStatus)), false); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.taskStatusUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartTaskStatusMultiselect()); if (t1.get$isEmpty(taskStatuses)) break; for (t1 = t1.get$iterator(taskStatuses); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.taskStatusUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToTaskStatusMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromTaskStatusMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([taskStatus], type$.JSArray_legacy_BaseEntity), false); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in task_status_actions"); break; } }, ViewTaskStatusList: function ViewTaskStatusList() { }, ViewTaskStatus: function ViewTaskStatus(t0) { this.taskStatusId = t0; }, EditTaskStatus: function EditTaskStatus(t0) { this.taskStatus = t0; }, UpdateTaskStatus: function UpdateTaskStatus(t0) { this.taskStatus = t0; }, LoadTaskStatusRequest: function LoadTaskStatusRequest() { }, LoadTaskStatusFailure: function LoadTaskStatusFailure(t0) { this.error = t0; }, LoadTaskStatusSuccess: function LoadTaskStatusSuccess(t0) { this.taskStatus = t0; }, LoadTaskStatusesRequest: function LoadTaskStatusesRequest() { }, LoadTaskStatusesFailure: function LoadTaskStatusesFailure(t0) { this.error = t0; }, LoadTaskStatusesSuccess: function LoadTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, SaveTaskStatusRequest: function SaveTaskStatusRequest(t0, t1) { this.completer = t0; this.taskStatus = t1; }, SaveTaskStatusSuccess: function SaveTaskStatusSuccess(t0) { this.taskStatus = t0; }, AddTaskStatusSuccess: function AddTaskStatusSuccess(t0) { this.taskStatus = t0; }, SaveTaskStatusFailure: function SaveTaskStatusFailure() { }, ArchiveTaskStatusesRequest: function ArchiveTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, ArchiveTaskStatusesSuccess: function ArchiveTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, ArchiveTaskStatusesFailure: function ArchiveTaskStatusesFailure() { }, DeleteTaskStatusesRequest: function DeleteTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, DeleteTaskStatusesSuccess: function DeleteTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, DeleteTaskStatusesFailure: function DeleteTaskStatusesFailure() { }, RestoreTaskStatusesRequest: function RestoreTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, RestoreTaskStatusesSuccess: function RestoreTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, RestoreTaskStatusesFailure: function RestoreTaskStatusesFailure() { }, FilterTaskStatuses: function FilterTaskStatuses(t0) { this.filter = t0; }, SortTaskStatuses: function SortTaskStatuses(t0) { this.field = t0; }, FilterTaskStatusesByState: function FilterTaskStatusesByState(t0) { this.state = t0; }, FilterTaskStatusesByCustom1: function FilterTaskStatusesByCustom1(t0) { this.value = t0; }, FilterTaskStatusesByCustom2: function FilterTaskStatusesByCustom2(t0) { this.value = t0; }, FilterTaskStatusesByCustom3: function FilterTaskStatusesByCustom3(t0) { this.value = t0; }, FilterTaskStatusesByCustom4: function FilterTaskStatusesByCustom4(t0) { this.value = t0; }, StartTaskStatusMultiselect: function StartTaskStatusMultiselect() { }, AddToTaskStatusMultiselect: function AddToTaskStatusMultiselect(t0) { this.entity = t0; }, RemoveFromTaskStatusMultiselect: function RemoveFromTaskStatusMultiselect(t0) { this.entity = t0; }, ClearTaskStatusMultiselect: function ClearTaskStatusMultiselect() { }, handleTaskStatusAction_closure: function handleTaskStatusAction_closure() { }, handleTaskStatusAction_closure0: function handleTaskStatusAction_closure0(t0) { this.taskStatus = t0; }, _editTaskStatus() { return new A._editTaskStatus_closure(); }, _viewTaskStatus() { return new A._viewTaskStatus_closure(); }, _viewTaskStatusList() { return new A._viewTaskStatusList_closure0(); }, _archiveTaskStatus(repository) { return new A._archiveTaskStatus_closure(repository); }, _deleteTaskStatus(repository) { return new A._deleteTaskStatus_closure(repository); }, _restoreTaskStatus(repository) { return new A._restoreTaskStatus_closure(repository); }, _saveTaskStatus(repository) { return new A._saveTaskStatus_closure(repository); }, _loadTaskStatus(repository) { return new A._loadTaskStatus_closure(repository); }, _loadTaskStatuses(repository) { return new A._loadTaskStatuses_closure(repository); }, _editTaskStatus_closure: function _editTaskStatus_closure() { }, _viewTaskStatus_closure: function _viewTaskStatus_closure() { }, _viewTaskStatusList_closure0: function _viewTaskStatusList_closure0() { }, _viewTaskStatusList__closure: function _viewTaskStatusList__closure() { }, _archiveTaskStatus_closure: function _archiveTaskStatus_closure(t0) { this.repository = t0; }, _archiveTaskStatus__closure: function _archiveTaskStatus__closure(t0) { this.store = t0; }, _archiveTaskStatus__closure0: function _archiveTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTaskStatus__closure1: function _archiveTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _deleteTaskStatus_closure: function _deleteTaskStatus_closure(t0) { this.repository = t0; }, _deleteTaskStatus__closure: function _deleteTaskStatus__closure(t0) { this.store = t0; }, _deleteTaskStatus__closure0: function _deleteTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTaskStatus__closure1: function _deleteTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _restoreTaskStatus_closure: function _restoreTaskStatus_closure(t0) { this.repository = t0; }, _restoreTaskStatus__closure: function _restoreTaskStatus__closure(t0) { this.store = t0; }, _restoreTaskStatus__closure0: function _restoreTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTaskStatus__closure1: function _restoreTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _saveTaskStatus_closure: function _saveTaskStatus_closure(t0) { this.repository = t0; }, _saveTaskStatus__closure: function _saveTaskStatus__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTaskStatus__closure0: function _saveTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatus_closure: function _loadTaskStatus_closure(t0) { this.repository = t0; }, _loadTaskStatus__closure: function _loadTaskStatus__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatus__closure0: function _loadTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatuses_closure: function _loadTaskStatuses_closure(t0) { this.repository = t0; }, _loadTaskStatuses__closure: function _loadTaskStatuses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatuses__closure0: function _loadTaskStatuses__closure0(t0, t1) { this.store = t0; this.action = t1; }, taskStatusUIReducer(state, action) { var t1; state.toString; t1 = new A.TaskStatusUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._task_status_state$_$v = state; new A.taskStatusUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing16(taskStatus, action) { return A.TaskStatusEntity_TaskStatusEntity(null, null); }, _updateEditing17(taskStatus, action) { return action.get$taskStatus(); }, _viewTaskStatusList0(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._viewTaskStatusList_closure()); }, _filterTaskStatusesByCustom1(taskStatusListState, action) { var t1 = taskStatusListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom1_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom1_closure0(action)); }, _filterTaskStatusesByCustom2(taskStatusListState, action) { var t1 = taskStatusListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom2_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom2_closure0(action)); }, _filterTaskStatusesByState(taskStatusListState, action) { var t1 = taskStatusListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByState_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByState_closure0(action)); }, _filterTaskStatuses(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._filterTaskStatuses_closure(action, taskStatusListState)); }, _sortTaskStatuses(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._sortTaskStatuses_closure(action)); }, _startListMultiselect18(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure17()); }, _addToListMultiselect18(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure17(action)); }, _removeFromListMultiselect18(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure17(action)); }, _clearListMultiselect18(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure17()); }, _sortTaskStatusSuccess(taskStatusState, action) { return taskStatusState.rebuild$1(new A._sortTaskStatusSuccess_closure(action, taskStatusState)); }, _archiveTaskStatusSuccess(taskStatusState, action) { return taskStatusState.rebuild$1(new A._archiveTaskStatusSuccess_closure(action)); }, _deleteTaskStatusSuccess(taskStatusState, action) { return taskStatusState.rebuild$1(new A._deleteTaskStatusSuccess_closure(action)); }, _restoreTaskStatusSuccess(taskStatusState, action) { return taskStatusState.rebuild$1(new A._restoreTaskStatusSuccess_closure(action)); }, _addTaskStatus(taskStatusState, action) { return taskStatusState.rebuild$1(new A._addTaskStatus_closure(action)); }, _updateTaskStatus(taskStatusState, action) { return taskStatusState.rebuild$1(new A._updateTaskStatus_closure(action)); }, _setLoadedTaskStatus(taskStatusState, action) { return taskStatusState.rebuild$1(new A._setLoadedTaskStatus_closure(action)); }, _setLoadedTaskStatuses(taskStatusState, action) { return taskStatusState.loadTaskStatuses$1(action.taskStatuses); }, _setLoadedCompany17(taskStatusState, action) { return taskStatusState.loadTaskStatuses$1(action.userCompany.company.taskStatuses); }, taskStatusUIReducer_closure: function taskStatusUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure135: function forceSelectedReducer_closure135() { }, forceSelectedReducer_closure136: function forceSelectedReducer_closure136() { }, forceSelectedReducer_closure137: function forceSelectedReducer_closure137() { }, forceSelectedReducer_closure138: function forceSelectedReducer_closure138() { }, forceSelectedReducer_closure139: function forceSelectedReducer_closure139() { }, forceSelectedReducer_closure140: function forceSelectedReducer_closure140() { }, forceSelectedReducer_closure141: function forceSelectedReducer_closure141() { }, forceSelectedReducer_closure142: function forceSelectedReducer_closure142() { }, selectedIdReducer_closure271: function selectedIdReducer_closure271() { }, selectedIdReducer_closure272: function selectedIdReducer_closure272() { }, selectedIdReducer_closure273: function selectedIdReducer_closure273() { }, selectedIdReducer_closure274: function selectedIdReducer_closure274() { }, selectedIdReducer_closure275: function selectedIdReducer_closure275() { }, selectedIdReducer_closure276: function selectedIdReducer_closure276() { }, selectedIdReducer_closure277: function selectedIdReducer_closure277() { }, selectedIdReducer_closure278: function selectedIdReducer_closure278() { }, selectedIdReducer_closure279: function selectedIdReducer_closure279() { }, selectedIdReducer_closure280: function selectedIdReducer_closure280() { }, selectedIdReducer_closure281: function selectedIdReducer_closure281() { }, selectedIdReducer_closure282: function selectedIdReducer_closure282() { }, selectedIdReducer_closure283: function selectedIdReducer_closure283() { }, selectedIdReducer_closure284: function selectedIdReducer_closure284() { }, selectedIdReducer_closure285: function selectedIdReducer_closure285() { }, editingReducer_closure91: function editingReducer_closure91() { }, editingReducer_closure92: function editingReducer_closure92() { }, editingReducer_closure93: function editingReducer_closure93() { }, editingReducer_closure94: function editingReducer_closure94() { }, editingReducer__closure35: function editingReducer__closure35() { }, _viewTaskStatusList_closure: function _viewTaskStatusList_closure() { }, _filterTaskStatusesByCustom1_closure: function _filterTaskStatusesByCustom1_closure(t0) { this.action = t0; }, _filterTaskStatusesByCustom1_closure0: function _filterTaskStatusesByCustom1_closure0(t0) { this.action = t0; }, _filterTaskStatusesByCustom2_closure: function _filterTaskStatusesByCustom2_closure(t0) { this.action = t0; }, _filterTaskStatusesByCustom2_closure0: function _filterTaskStatusesByCustom2_closure0(t0) { this.action = t0; }, _filterTaskStatusesByState_closure: function _filterTaskStatusesByState_closure(t0) { this.action = t0; }, _filterTaskStatusesByState_closure0: function _filterTaskStatusesByState_closure0(t0) { this.action = t0; }, _filterTaskStatuses_closure: function _filterTaskStatuses_closure(t0, t1) { this.action = t0; this.taskStatusListState = t1; }, _sortTaskStatuses_closure: function _sortTaskStatuses_closure(t0) { this.action = t0; }, _startListMultiselect_closure17: function _startListMultiselect_closure17() { }, _addToListMultiselect_closure17: function _addToListMultiselect_closure17(t0) { this.action = t0; }, _removeFromListMultiselect_closure17: function _removeFromListMultiselect_closure17(t0) { this.action = t0; }, _clearListMultiselect_closure17: function _clearListMultiselect_closure17() { }, _sortTaskStatusSuccess_closure: function _sortTaskStatusSuccess_closure(t0, t1) { this.action = t0; this.taskStatusState = t1; }, _sortTaskStatusSuccess__closure: function _sortTaskStatusSuccess__closure(t0, t1) { this.action = t0; this.statusId = t1; }, _archiveTaskStatusSuccess_closure: function _archiveTaskStatusSuccess_closure(t0) { this.action = t0; }, _deleteTaskStatusSuccess_closure: function _deleteTaskStatusSuccess_closure(t0) { this.action = t0; }, _restoreTaskStatusSuccess_closure: function _restoreTaskStatusSuccess_closure(t0) { this.action = t0; }, _addTaskStatus_closure: function _addTaskStatus_closure(t0) { this.action = t0; }, _updateTaskStatus_closure: function _updateTaskStatus_closure(t0) { this.action = t0; }, _setLoadedTaskStatus_closure: function _setLoadedTaskStatus_closure(t0) { this.action = t0; }, sortedActiveTaskStatusIds(taskStatusList, taskStatusMap) { var t1 = taskStatusList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), statuses = A.List_List$of(new A.WhereIterable(t1, new A.sortedActiveTaskStatusIds_closure(taskStatusMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(statuses, new A.sortedActiveTaskStatusIds_closure0(taskStatusMap)); return statuses; }, dropdownTaskStatusesSelector(taskStatusMap, taskStatusList, staticState, userMap) { var t1 = taskStatusList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownTaskStatusesSelector_closure(taskStatusMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownTaskStatusesSelector_closure0(taskStatusMap)); return list; }, filteredTaskStatusesSelector(selectionState, taskStatusMap, taskStatusList, taskStatusListState) { var t1 = taskStatusList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredTaskStatusesSelector_closure(taskStatusMap, selectionState, taskStatusListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredTaskStatusesSelector_closure0(taskStatusMap, taskStatusListState)); return list; }, calculateTaskStatusAmount(taskMap, taskStatusId) { var t1 = {}; t1.total = 0; taskMap._map$_map.forEach$1(0, new A.calculateTaskStatusAmount_closure(t1, taskStatusId)); return t1.total; }, taskStatsForTaskStatus(statusId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; taskMap._map$_map.forEach$1(0, new A.taskStatsForTaskStatus_closure(t1, statusId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, defaultTaskStatusId(taskStatusMap) { var t2, statusIds, t1 = taskStatusMap.get$keys(taskStatusMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); statusIds = A.List_List$of(new A.WhereIterable(t1, new A.defaultTaskStatusId_closure(taskStatusMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(statusIds, new A.defaultTaskStatusId_closure0(taskStatusMap)); if (statusIds.length !== 0) return B.JSArray_methods.get$first(statusIds); else return ""; }, memoizedSortedActiveTaskStatusIds_closure: function memoizedSortedActiveTaskStatusIds_closure() { }, sortedActiveTaskStatusIds_closure: function sortedActiveTaskStatusIds_closure(t0) { this.taskStatusMap = t0; }, sortedActiveTaskStatusIds_closure0: function sortedActiveTaskStatusIds_closure0(t0) { this.taskStatusMap = t0; }, memoizedDropdownTaskStatusList_closure: function memoizedDropdownTaskStatusList_closure() { }, dropdownTaskStatusesSelector_closure: function dropdownTaskStatusesSelector_closure(t0) { this.taskStatusMap = t0; }, dropdownTaskStatusesSelector_closure0: function dropdownTaskStatusesSelector_closure0(t0) { this.taskStatusMap = t0; }, memoizedFilteredTaskStatusList_closure: function memoizedFilteredTaskStatusList_closure() { }, filteredTaskStatusesSelector_closure: function filteredTaskStatusesSelector_closure(t0, t1, t2) { this.taskStatusMap = t0; this.selectionState = t1; this.taskStatusListState = t2; }, filteredTaskStatusesSelector_closure0: function filteredTaskStatusesSelector_closure0(t0, t1) { this.taskStatusMap = t0; this.taskStatusListState = t1; }, memoizedCalculateTaskStatusAmount_closure: function memoizedCalculateTaskStatusAmount_closure() { }, calculateTaskStatusAmount_closure: function calculateTaskStatusAmount_closure(t0, t1) { this._box_0 = t0; this.taskStatusId = t1; }, memoizedTaskStatsForTaskStatus_closure: function memoizedTaskStatsForTaskStatus_closure() { }, taskStatsForTaskStatus_closure: function taskStatsForTaskStatus_closure(t0, t1) { this._box_0 = t0; this.statusId = t1; }, defaultTaskStatusId_closure: function defaultTaskStatusId_closure(t0) { this.taskStatusMap = t0; }, defaultTaskStatusId_closure0: function defaultTaskStatusId_closure0(t0) { this.taskStatusMap = t0; }, _$TaskStatusState$_(list, map) { var _s15_ = "TaskStatusState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "list")); return new A._$TaskStatusState(map, list); }, _$TaskStatusUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("TaskStatusUIState", "listUIState")); return new A._$TaskStatusUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaskStatusState: function TaskStatusState() { }, TaskStatusState_loadTaskStatuses_closure0: function TaskStatusState_loadTaskStatuses_closure0() { }, TaskStatusState_loadTaskStatuses_closure1: function TaskStatusState_loadTaskStatuses_closure1() { }, TaskStatusState_loadTaskStatuses_closure: function TaskStatusState_loadTaskStatuses_closure(t0, t1) { this.$this = t0; this.map = t1; }, TaskStatusUIState: function TaskStatusUIState() { }, _$TaskStatusStateSerializer: function _$TaskStatusStateSerializer() { }, _$TaskStatusUIStateSerializer: function _$TaskStatusUIStateSerializer() { }, _$TaskStatusState: function _$TaskStatusState(t0, t1) { this.map = t0; this.list = t1; this._task_status_state$__hashCode = null; }, TaskStatusStateBuilder: function TaskStatusStateBuilder() { this._task_status_state$_list = this._task_status_state$_map = this._task_status_state$_$v = null; }, _$TaskStatusUIState: function _$TaskStatusUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._task_status_state$__hashCode = null; }, TaskStatusUIStateBuilder: function TaskStatusUIStateBuilder() { var _ = this; _._task_status_state$_cancelCompleter = _._task_status_state$_saveCompleter = _._task_status_state$_tabIndex = _._task_status_state$_forceSelected = _._task_status_state$_selectedId = _._task_status_state$_listUIState = _._task_status_state$_editing = _._task_status_state$_$v = null; }, _TaskStatusUIState_Object_EntityUIState: function _TaskStatusUIState_Object_EntityUIState() { }, handleTaxRateAction(context, taxRates, action) { var store, t2, taxRate, taxRateIds, message, t3, t4, _s6_ = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(taxRates); if (t1.get$isEmpty(taxRates)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); taxRate = t1.get$first(taxRates); taxRateIds = t1.map$1$1(taxRates, new A.handleTaxRateAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(null, taxRate, true, null); break; case B.EntityAction_restore: if (taxRateIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_tax_rates"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(taxRateIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_tax_rate"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreTaxRateRequest(t1, taxRateIds)); break; case B.EntityAction_archive: if (taxRateIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_tax_rates"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(taxRateIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_tax_rate"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveTaxRateRequest(t1, taxRateIds)); break; case B.EntityAction_delete: if (taxRateIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_tax_rates"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(taxRateIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_tax_rate"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteTaxRateRequest(t1, taxRateIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.taxRateUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartTaxRateMultiselect()); if (t1.get$isEmpty(taxRates)) break; for (t1 = t1.get$iterator(taxRates); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.taxRateUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToTaxRateMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromTaxRateMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([taxRate], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewTaxRateList: function ViewTaxRateList() { }, ViewTaxRate: function ViewTaxRate(t0) { this.taxRateId = t0; }, EditTaxRate: function EditTaxRate(t0) { this.taxRate = t0; }, UpdateTaxRate: function UpdateTaxRate(t0) { this.taxRate = t0; }, LoadTaxRateRequest: function LoadTaxRateRequest() { }, LoadTaxRateFailure: function LoadTaxRateFailure(t0) { this.error = t0; }, LoadTaxRateSuccess: function LoadTaxRateSuccess(t0) { this.taxRate = t0; }, LoadTaxRatesRequest: function LoadTaxRatesRequest() { }, LoadTaxRatesFailure: function LoadTaxRatesFailure(t0) { this.error = t0; }, LoadTaxRatesSuccess: function LoadTaxRatesSuccess(t0) { this.taxRates = t0; }, SaveTaxRateRequest: function SaveTaxRateRequest(t0, t1) { this.completer = t0; this.taxRate = t1; }, SaveTaxRateSuccess: function SaveTaxRateSuccess(t0) { this.taxRate = t0; }, AddTaxRateSuccess: function AddTaxRateSuccess(t0) { this.taxRate = t0; }, SaveTaxRateFailure: function SaveTaxRateFailure() { }, ArchiveTaxRateRequest: function ArchiveTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, ArchiveTaxRatesSuccess: function ArchiveTaxRatesSuccess(t0) { this.taxRates = t0; }, ArchiveTaxRateFailure: function ArchiveTaxRateFailure() { }, DeleteTaxRateRequest: function DeleteTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, DeleteTaxRatesSuccess: function DeleteTaxRatesSuccess(t0) { this.taxRates = t0; }, DeleteTaxRateFailure: function DeleteTaxRateFailure() { }, RestoreTaxRateRequest: function RestoreTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, RestoreTaxRatesSuccess: function RestoreTaxRatesSuccess(t0) { this.taxRates = t0; }, RestoreTaxRateFailure: function RestoreTaxRateFailure() { }, FilterTaxRates: function FilterTaxRates(t0) { this.filter = t0; }, SortTaxRates: function SortTaxRates(t0) { this.field = t0; }, FilterTaxRatesByState: function FilterTaxRatesByState(t0) { this.state = t0; }, handleTaxRateAction_closure: function handleTaxRateAction_closure() { }, StartTaxRateMultiselect: function StartTaxRateMultiselect() { }, AddToTaxRateMultiselect: function AddToTaxRateMultiselect(t0) { this.entity = t0; }, RemoveFromTaxRateMultiselect: function RemoveFromTaxRateMultiselect(t0) { this.entity = t0; }, ClearTaxRateMultiselect: function ClearTaxRateMultiselect() { }, _editTaxRate() { return new A._editTaxRate_closure(); }, _viewTaxRate() { return new A._viewTaxRate_closure(); }, _viewTaxRateList() { return new A._viewTaxRateList_closure0(); }, _archiveTaxRate(repository) { return new A._archiveTaxRate_closure(repository); }, _deleteTaxRate(repository) { return new A._deleteTaxRate_closure(repository); }, _restoreTaxRate(repository) { return new A._restoreTaxRate_closure(repository); }, _saveTaxRate(repository) { return new A._saveTaxRate_closure(repository); }, _loadTaxRate(repository) { return new A._loadTaxRate_closure(repository); }, _loadTaxRates(repository) { return new A._loadTaxRates_closure(repository); }, _editTaxRate_closure: function _editTaxRate_closure() { }, _viewTaxRate_closure: function _viewTaxRate_closure() { }, _viewTaxRateList_closure0: function _viewTaxRateList_closure0() { }, _viewTaxRateList__closure: function _viewTaxRateList__closure() { }, _archiveTaxRate_closure: function _archiveTaxRate_closure(t0) { this.repository = t0; }, _archiveTaxRate__closure: function _archiveTaxRate__closure(t0) { this.store = t0; }, _archiveTaxRate__closure0: function _archiveTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTaxRate__closure1: function _archiveTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _deleteTaxRate_closure: function _deleteTaxRate_closure(t0) { this.repository = t0; }, _deleteTaxRate__closure: function _deleteTaxRate__closure(t0) { this.store = t0; }, _deleteTaxRate__closure0: function _deleteTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTaxRate__closure1: function _deleteTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _restoreTaxRate_closure: function _restoreTaxRate_closure(t0) { this.repository = t0; }, _restoreTaxRate__closure: function _restoreTaxRate__closure(t0) { this.store = t0; }, _restoreTaxRate__closure0: function _restoreTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTaxRate__closure1: function _restoreTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _saveTaxRate_closure: function _saveTaxRate_closure(t0) { this.repository = t0; }, _saveTaxRate__closure: function _saveTaxRate__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTaxRate__closure0: function _saveTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRate_closure: function _loadTaxRate_closure(t0) { this.repository = t0; }, _loadTaxRate__closure: function _loadTaxRate__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRate__closure0: function _loadTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRates_closure: function _loadTaxRates_closure(t0) { this.repository = t0; }, _loadTaxRates__closure: function _loadTaxRates__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRates__closure0: function _loadTaxRates__closure0(t0, t1) { this.store = t0; this.action = t1; }, taxRateUIReducer(state, action) { var t1; state.toString; t1 = new A.TaxRateUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._tax_rate_state$_$v = state; new A.taxRateUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing17(taxRate, action) { var _null = null; return A.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null); }, _updateEditing18(taxRate, action) { return action.get$taxRate(); }, _viewTaxRateList0(taxRateListState, action) { return taxRateListState.rebuild$1(new A._viewTaxRateList_closure()); }, _filterTaxRatesByState(taxRateListState, action) { var t1 = taxRateListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return taxRateListState.rebuild$1(new A._filterTaxRatesByState_closure(action)); else return taxRateListState.rebuild$1(new A._filterTaxRatesByState_closure0(action)); }, _filterTaxRates(taxRateListState, action) { return taxRateListState.rebuild$1(new A._filterTaxRates_closure(action, taxRateListState)); }, _sortTaxRates(taxRateListState, action) { return taxRateListState.rebuild$1(new A._sortTaxRates_closure(action)); }, _startListMultiselect19(taxRateListState, action) { return taxRateListState.rebuild$1(new A._startListMultiselect_closure8()); }, _addToListMultiselect19(taxRateListState, action) { return taxRateListState.rebuild$1(new A._addToListMultiselect_closure8(action)); }, _removeFromListMultiselect19(taxRateListState, action) { return taxRateListState.rebuild$1(new A._removeFromListMultiselect_closure8(action)); }, _clearListMultiselect19(taxRateListState, action) { return taxRateListState.rebuild$1(new A._clearListMultiselect_closure8()); }, _archiveTaxRateSuccess(taxRateState, action) { return taxRateState.rebuild$1(new A._archiveTaxRateSuccess_closure(action)); }, _deleteTaxRateSuccess(taxRateState, action) { return taxRateState.rebuild$1(new A._deleteTaxRateSuccess_closure(action)); }, _restoreTaxRateSuccess(taxRateState, action) { return taxRateState.rebuild$1(new A._restoreTaxRateSuccess_closure(action)); }, _addTaxRate(taxRateState, action) { return taxRateState.rebuild$1(new A._addTaxRate_closure(action)); }, _updateTaxRate(taxRateState, action) { return taxRateState.rebuild$1(new A._updateTaxRate_closure(action)); }, _setLoadedTaxRate(taxRateState, action) { return taxRateState.rebuild$1(new A._setLoadedTaxRate_closure(action)); }, _setLoadedTaxRates(taxRateState, action) { var state = taxRateState.rebuild$1(new A._setLoadedTaxRates_closure(action)); return state.rebuild$1(new A._setLoadedTaxRates_closure0(state)); }, _setLoadedCompany18(taxRateState, action) { var state = taxRateState.rebuild$1(new A._setLoadedCompany_closure3(action)); return state.rebuild$1(new A._setLoadedCompany_closure4(state)); }, taxRateUIReducer_closure: function taxRateUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure67: function forceSelectedReducer_closure67() { }, forceSelectedReducer_closure68: function forceSelectedReducer_closure68() { }, forceSelectedReducer_closure69: function forceSelectedReducer_closure69() { }, forceSelectedReducer_closure70: function forceSelectedReducer_closure70() { }, selectedIdReducer_closure134: function selectedIdReducer_closure134() { }, selectedIdReducer_closure135: function selectedIdReducer_closure135() { }, selectedIdReducer_closure136: function selectedIdReducer_closure136() { }, selectedIdReducer_closure137: function selectedIdReducer_closure137() { }, selectedIdReducer_closure138: function selectedIdReducer_closure138() { }, selectedIdReducer_closure139: function selectedIdReducer_closure139() { }, selectedIdReducer_closure140: function selectedIdReducer_closure140() { }, selectedIdReducer_closure141: function selectedIdReducer_closure141() { }, selectedIdReducer_closure142: function selectedIdReducer_closure142() { }, selectedIdReducer_closure143: function selectedIdReducer_closure143() { }, editingReducer_closure41: function editingReducer_closure41() { }, editingReducer_closure42: function editingReducer_closure42() { }, editingReducer_closure43: function editingReducer_closure43() { }, editingReducer_closure44: function editingReducer_closure44() { }, editingReducer__closure14: function editingReducer__closure14() { }, _viewTaxRateList_closure: function _viewTaxRateList_closure() { }, _filterTaxRatesByState_closure: function _filterTaxRatesByState_closure(t0) { this.action = t0; }, _filterTaxRatesByState_closure0: function _filterTaxRatesByState_closure0(t0) { this.action = t0; }, _filterTaxRates_closure: function _filterTaxRates_closure(t0, t1) { this.action = t0; this.taxRateListState = t1; }, _sortTaxRates_closure: function _sortTaxRates_closure(t0) { this.action = t0; }, _startListMultiselect_closure8: function _startListMultiselect_closure8() { }, _addToListMultiselect_closure8: function _addToListMultiselect_closure8(t0) { this.action = t0; }, _removeFromListMultiselect_closure8: function _removeFromListMultiselect_closure8(t0) { this.action = t0; }, _clearListMultiselect_closure8: function _clearListMultiselect_closure8() { }, _archiveTaxRateSuccess_closure: function _archiveTaxRateSuccess_closure(t0) { this.action = t0; }, _deleteTaxRateSuccess_closure: function _deleteTaxRateSuccess_closure(t0) { this.action = t0; }, _restoreTaxRateSuccess_closure: function _restoreTaxRateSuccess_closure(t0) { this.action = t0; }, _addTaxRate_closure: function _addTaxRate_closure(t0) { this.action = t0; }, _updateTaxRate_closure: function _updateTaxRate_closure(t0) { this.action = t0; }, _setLoadedTaxRate_closure: function _setLoadedTaxRate_closure(t0) { this.action = t0; }, _setLoadedTaxRates_closure: function _setLoadedTaxRates_closure(t0) { this.action = t0; }, _setLoadedTaxRates__closure: function _setLoadedTaxRates__closure() { }, _setLoadedTaxRates__closure0: function _setLoadedTaxRates__closure0() { }, _setLoadedTaxRates_closure0: function _setLoadedTaxRates_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure3: function _setLoadedCompany_closure3(t0) { this.action = t0; }, _setLoadedCompany__closure3: function _setLoadedCompany__closure3() { }, _setLoadedCompany__closure4: function _setLoadedCompany__closure4() { }, _setLoadedCompany_closure4: function _setLoadedCompany_closure4(t0) { this.state = t0; }, filteredTaxRatesSelector(selectionState, taxRateMap, taxRateList, taxRateListState) { var t1 = taxRateList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredTaxRatesSelector_closure(taxRateMap, selectionState, taxRateListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredTaxRatesSelector_closure0(taxRateMap, taxRateListState)); return list; }, memoizedFilteredTaxRateList_closure: function memoizedFilteredTaxRateList_closure() { }, filteredTaxRatesSelector_closure: function filteredTaxRatesSelector_closure(t0, t1, t2) { this.taxRateMap = t0; this.selectionState = t1; this.taxRateListState = t2; }, filteredTaxRatesSelector_closure0: function filteredTaxRatesSelector_closure0(t0, t1) { this.taxRateMap = t0; this.taxRateListState = t1; }, _$TaxRateState$_(list, map) { var _s12_ = "TaxRateState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$TaxRateState(map, list); }, _$TaxRateUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("TaxRateUIState", "listUIState")); return new A._$TaxRateUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaxRateState: function TaxRateState() { }, TaxRateUIState: function TaxRateUIState() { }, _$TaxRateStateSerializer: function _$TaxRateStateSerializer() { }, _$TaxRateUIStateSerializer: function _$TaxRateUIStateSerializer() { }, _$TaxRateState: function _$TaxRateState(t0, t1) { this.map = t0; this.list = t1; this._tax_rate_state$__hashCode = null; }, TaxRateStateBuilder: function TaxRateStateBuilder() { this._tax_rate_state$_list = this._tax_rate_state$_map = this._tax_rate_state$_$v = null; }, _$TaxRateUIState: function _$TaxRateUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._tax_rate_state$__hashCode = null; }, TaxRateUIStateBuilder: function TaxRateUIStateBuilder() { var _ = this; _._tax_rate_state$_cancelCompleter = _._tax_rate_state$_saveCompleter = _._tax_rate_state$_tabIndex = _._tax_rate_state$_forceSelected = _._tax_rate_state$_selectedId = _._tax_rate_state$_listUIState = _._tax_rate_state$_editing = _._tax_rate_state$_$v = null; }, _TaxRateUIState_Object_EntityUIState: function _TaxRateUIState_Object_EntityUIState() { }, handleTokenAction(context, tokens, action) { var store, t2, token, tokenIds, message, t3, t4, _s6_ = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(tokens); if (t1.get$isEmpty(tokens)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); token = type$.legacy_TokenEntity._as(t1.get$first(tokens)); tokenIds = t1.map$1$1(tokens, new A.handleTokenAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_copy: A.Clipboard_setData(new A.ClipboardData(token.token)); A.showToast(B.JSString_methods.replaceFirst$2(t2.get$copiedToClipboard(), ":value ", "")); break; case B.EntityAction_edit: A.editEntity(null, token, true, null); break; case B.EntityAction_restore: if (tokenIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_tokens"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(tokenIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_token"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreTokensRequest(t1, tokenIds)); break; case B.EntityAction_archive: if (tokenIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_tokens"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(tokenIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_token"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveTokensRequest(t1, tokenIds)); break; case B.EntityAction_delete: if (tokenIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_tokens"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(tokenIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_token"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteTokensRequest(t1, tokenIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.tokenUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartTokenMultiselect()); if (t1.get$isEmpty(tokens)) break; for (t1 = t1.get$iterator(tokens); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.tokenUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToTokenMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromTokenMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([token], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewTokenList: function ViewTokenList() { }, ViewToken: function ViewToken(t0) { this.tokenId = t0; }, EditToken: function EditToken(t0) { this.token = t0; }, UpdateToken: function UpdateToken(t0) { this.token = t0; }, LoadTokenRequest: function LoadTokenRequest() { }, LoadTokenFailure: function LoadTokenFailure(t0) { this.error = t0; }, LoadTokenSuccess: function LoadTokenSuccess(t0) { this.token = t0; }, LoadTokensRequest: function LoadTokensRequest() { }, LoadTokensFailure: function LoadTokensFailure(t0) { this.error = t0; }, LoadTokensSuccess: function LoadTokensSuccess(t0) { this.tokens = t0; }, SaveTokenRequest: function SaveTokenRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.token = t1; _.password = t2; _.idToken = t3; }, SaveTokenSuccess: function SaveTokenSuccess(t0) { this.token = t0; }, AddTokenSuccess: function AddTokenSuccess(t0) { this.token = t0; }, SaveTokenFailure: function SaveTokenFailure() { }, ArchiveTokensRequest: function ArchiveTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, ArchiveTokensSuccess: function ArchiveTokensSuccess(t0) { this.tokens = t0; }, ArchiveTokensFailure: function ArchiveTokensFailure() { }, DeleteTokensRequest: function DeleteTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, DeleteTokensSuccess: function DeleteTokensSuccess(t0) { this.tokens = t0; }, DeleteTokensFailure: function DeleteTokensFailure() { }, RestoreTokensRequest: function RestoreTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, RestoreTokensSuccess: function RestoreTokensSuccess(t0) { this.tokens = t0; }, RestoreTokensFailure: function RestoreTokensFailure() { }, FilterTokens: function FilterTokens(t0) { this.filter = t0; }, SortTokens: function SortTokens(t0) { this.field = t0; }, FilterTokensByState: function FilterTokensByState(t0) { this.state = t0; }, FilterTokensByCustom1: function FilterTokensByCustom1(t0) { this.value = t0; }, FilterTokensByCustom2: function FilterTokensByCustom2(t0) { this.value = t0; }, FilterTokensByCustom3: function FilterTokensByCustom3(t0) { this.value = t0; }, FilterTokensByCustom4: function FilterTokensByCustom4(t0) { this.value = t0; }, handleTokenAction_closure: function handleTokenAction_closure() { }, StartTokenMultiselect: function StartTokenMultiselect() { }, AddToTokenMultiselect: function AddToTokenMultiselect(t0) { this.entity = t0; }, RemoveFromTokenMultiselect: function RemoveFromTokenMultiselect(t0) { this.entity = t0; }, ClearTokenMultiselect: function ClearTokenMultiselect() { }, _editToken() { return new A._editToken_closure(); }, _viewToken() { return new A._viewToken_closure(); }, _viewTokenList() { return new A._viewTokenList_closure0(); }, _archiveToken(repository) { return new A._archiveToken_closure(repository); }, _deleteToken(repository) { return new A._deleteToken_closure(repository); }, _restoreToken(repository) { return new A._restoreToken_closure(repository); }, _saveToken(repository) { return new A._saveToken_closure(repository); }, _loadToken(repository) { return new A._loadToken_closure(repository); }, _loadTokens(repository) { return new A._loadTokens_closure(repository); }, _editToken_closure: function _editToken_closure() { }, _viewToken_closure: function _viewToken_closure() { }, _viewTokenList_closure0: function _viewTokenList_closure0() { }, _viewTokenList__closure: function _viewTokenList__closure() { }, _archiveToken_closure: function _archiveToken_closure(t0) { this.repository = t0; }, _archiveToken__closure: function _archiveToken__closure(t0) { this.store = t0; }, _archiveToken__closure0: function _archiveToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveToken__closure1: function _archiveToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _deleteToken_closure: function _deleteToken_closure(t0) { this.repository = t0; }, _deleteToken__closure: function _deleteToken__closure(t0) { this.store = t0; }, _deleteToken__closure0: function _deleteToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteToken__closure1: function _deleteToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _restoreToken_closure: function _restoreToken_closure(t0) { this.repository = t0; }, _restoreToken__closure: function _restoreToken__closure(t0) { this.store = t0; }, _restoreToken__closure0: function _restoreToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreToken__closure1: function _restoreToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _saveToken_closure: function _saveToken_closure(t0) { this.repository = t0; }, _saveToken__closure: function _saveToken__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveToken__closure0: function _saveToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadToken_closure: function _loadToken_closure(t0) { this.repository = t0; }, _loadToken__closure: function _loadToken__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadToken__closure0: function _loadToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTokens_closure: function _loadTokens_closure(t0) { this.repository = t0; }, _loadTokens__closure: function _loadTokens__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTokens__closure0: function _loadTokens__closure0(t0, t1) { this.store = t0; this.action = t1; }, tokenUIReducer(state, action) { var t1; state.toString; t1 = new A.TokenUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._token_state$_$v = state; new A.tokenUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing18(token, action) { return A.TokenEntity_TokenEntity(null, null); }, _updateEditing19(token, action) { return action.get$token(); }, _viewTokenList0(tokenListState, action) { return tokenListState.rebuild$1(new A._viewTokenList_closure()); }, _filterTokensByCustom1(tokenListState, action) { var t1 = tokenListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return tokenListState.rebuild$1(new A._filterTokensByCustom1_closure(action)); else return tokenListState.rebuild$1(new A._filterTokensByCustom1_closure0(action)); }, _filterTokensByCustom2(tokenListState, action) { var t1 = tokenListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return tokenListState.rebuild$1(new A._filterTokensByCustom2_closure(action)); else return tokenListState.rebuild$1(new A._filterTokensByCustom2_closure0(action)); }, _filterTokensByState(tokenListState, action) { var t1 = tokenListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return tokenListState.rebuild$1(new A._filterTokensByState_closure(action)); else return tokenListState.rebuild$1(new A._filterTokensByState_closure0(action)); }, _filterTokens(tokenListState, action) { return tokenListState.rebuild$1(new A._filterTokens_closure(action, tokenListState)); }, _sortTokens(tokenListState, action) { return tokenListState.rebuild$1(new A._sortTokens_closure(action)); }, _startListMultiselect20(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure13()); }, _addToListMultiselect20(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure13(action)); }, _removeFromListMultiselect20(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure13(action)); }, _clearListMultiselect20(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure13()); }, _archiveTokenSuccess(tokenState, action) { return tokenState.rebuild$1(new A._archiveTokenSuccess_closure(action)); }, _deleteTokenSuccess(tokenState, action) { return tokenState.rebuild$1(new A._deleteTokenSuccess_closure(action)); }, _restoreTokenSuccess(tokenState, action) { return tokenState.rebuild$1(new A._restoreTokenSuccess_closure(action)); }, _addToken(tokenState, action) { return tokenState.rebuild$1(new A._addToken_closure(action)); }, _updateToken(tokenState, action) { return tokenState.rebuild$1(new A._updateToken_closure(action)); }, _setLoadedToken(tokenState, action) { return tokenState.rebuild$1(new A._setLoadedToken_closure(action)); }, _setLoadedTokens(tokenState, action) { return tokenState.loadTokens$1(action.tokens); }, _setLoadedCompany19(tokenState, action) { return tokenState.loadTokens$1(action.userCompany.company.tokens); }, tokenUIReducer_closure: function tokenUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure103: function forceSelectedReducer_closure103() { }, forceSelectedReducer_closure104: function forceSelectedReducer_closure104() { }, forceSelectedReducer_closure105: function forceSelectedReducer_closure105() { }, forceSelectedReducer_closure106: function forceSelectedReducer_closure106() { }, forceSelectedReducer_closure107: function forceSelectedReducer_closure107() { }, forceSelectedReducer_closure108: function forceSelectedReducer_closure108() { }, forceSelectedReducer_closure109: function forceSelectedReducer_closure109() { }, forceSelectedReducer_closure110: function forceSelectedReducer_closure110() { }, selectedIdReducer_closure207: function selectedIdReducer_closure207() { }, selectedIdReducer_closure208: function selectedIdReducer_closure208() { }, selectedIdReducer_closure209: function selectedIdReducer_closure209() { }, selectedIdReducer_closure210: function selectedIdReducer_closure210() { }, selectedIdReducer_closure211: function selectedIdReducer_closure211() { }, selectedIdReducer_closure212: function selectedIdReducer_closure212() { }, selectedIdReducer_closure213: function selectedIdReducer_closure213() { }, selectedIdReducer_closure214: function selectedIdReducer_closure214() { }, selectedIdReducer_closure215: function selectedIdReducer_closure215() { }, selectedIdReducer_closure216: function selectedIdReducer_closure216() { }, selectedIdReducer_closure217: function selectedIdReducer_closure217() { }, selectedIdReducer_closure218: function selectedIdReducer_closure218() { }, selectedIdReducer_closure219: function selectedIdReducer_closure219() { }, selectedIdReducer_closure220: function selectedIdReducer_closure220() { }, selectedIdReducer_closure221: function selectedIdReducer_closure221() { }, editingReducer_closure68: function editingReducer_closure68() { }, editingReducer_closure69: function editingReducer_closure69() { }, editingReducer_closure70: function editingReducer_closure70() { }, editingReducer_closure71: function editingReducer_closure71() { }, editingReducer__closure25: function editingReducer__closure25() { }, _viewTokenList_closure: function _viewTokenList_closure() { }, _filterTokensByCustom1_closure: function _filterTokensByCustom1_closure(t0) { this.action = t0; }, _filterTokensByCustom1_closure0: function _filterTokensByCustom1_closure0(t0) { this.action = t0; }, _filterTokensByCustom2_closure: function _filterTokensByCustom2_closure(t0) { this.action = t0; }, _filterTokensByCustom2_closure0: function _filterTokensByCustom2_closure0(t0) { this.action = t0; }, _filterTokensByState_closure: function _filterTokensByState_closure(t0) { this.action = t0; }, _filterTokensByState_closure0: function _filterTokensByState_closure0(t0) { this.action = t0; }, _filterTokens_closure: function _filterTokens_closure(t0, t1) { this.action = t0; this.tokenListState = t1; }, _sortTokens_closure: function _sortTokens_closure(t0) { this.action = t0; }, _startListMultiselect_closure13: function _startListMultiselect_closure13() { }, _addToListMultiselect_closure13: function _addToListMultiselect_closure13(t0) { this.action = t0; }, _removeFromListMultiselect_closure13: function _removeFromListMultiselect_closure13(t0) { this.action = t0; }, _clearListMultiselect_closure13: function _clearListMultiselect_closure13() { }, _archiveTokenSuccess_closure: function _archiveTokenSuccess_closure(t0) { this.action = t0; }, _deleteTokenSuccess_closure: function _deleteTokenSuccess_closure(t0) { this.action = t0; }, _restoreTokenSuccess_closure: function _restoreTokenSuccess_closure(t0) { this.action = t0; }, _addToken_closure: function _addToken_closure(t0) { this.action = t0; }, _updateToken_closure: function _updateToken_closure(t0) { this.action = t0; }, _setLoadedToken_closure: function _setLoadedToken_closure(t0) { this.action = t0; }, filteredTokensSelector(selectionState, tokenMap, tokenList, tokenListState) { var t1 = tokenList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredTokensSelector_closure(tokenMap, selectionState, tokenListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredTokensSelector_closure0(tokenMap, tokenListState)); return list; }, memoizedFilteredTokenList_closure: function memoizedFilteredTokenList_closure() { }, filteredTokensSelector_closure: function filteredTokensSelector_closure(t0, t1, t2) { this.tokenMap = t0; this.selectionState = t1; this.tokenListState = t2; }, filteredTokensSelector_closure0: function filteredTokensSelector_closure0(t0, t1) { this.tokenMap = t0; this.tokenListState = t1; }, _$TokenState$_(list, map) { var _s10_ = "TokenState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "list")); return new A._$TokenState(map, list); }, _$TokenUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("TokenUIState", "listUIState")); return new A._$TokenUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TokenState: function TokenState() { }, TokenState_loadTokens_closure0: function TokenState_loadTokens_closure0() { }, TokenState_loadTokens_closure1: function TokenState_loadTokens_closure1() { }, TokenState_loadTokens_closure: function TokenState_loadTokens_closure(t0, t1) { this.$this = t0; this.map = t1; }, TokenUIState: function TokenUIState() { }, _$TokenStateSerializer: function _$TokenStateSerializer() { }, _$TokenUIStateSerializer: function _$TokenUIStateSerializer() { }, _$TokenState: function _$TokenState(t0, t1) { this.map = t0; this.list = t1; this._token_state$__hashCode = null; }, TokenStateBuilder: function TokenStateBuilder() { this._token_state$_list = this._token_state$_map = this._token_state$_$v = null; }, _$TokenUIState: function _$TokenUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._token_state$__hashCode = null; }, TokenUIStateBuilder: function TokenUIStateBuilder() { var _ = this; _._token_state$_cancelCompleter = _._token_state$_saveCompleter = _._token_state$_tabIndex = _._token_state$_forceSelected = _._token_state$_selectedId = _._token_state$_listUIState = _._token_state$_editing = _._token_state$_$v = null; }, _TokenUIState_Object_EntityUIState: function _TokenUIState_Object_EntityUIState() { }, EntityUIState: function EntityUIState() { }, ListUIState_ListUIState(sortField, sortAscending) { var t1 = A.BuiltList_BuiltList$from(A._setArrayType([B.EntityState_active], type$.JSArray_legacy_EntityState), type$.legacy_EntityState), t2 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_EntityStatus), t3 = type$.legacy_String; return A._$ListUIState$_(A.BuiltList_BuiltList$from(B.List_empty, t3), A.BuiltList_BuiltList$from(B.List_empty, t3), A.BuiltList_BuiltList$from(B.List_empty, t3), A.BuiltList_BuiltList$from(B.List_empty, t3), null, 0, null, sortAscending !== false, sortField, t1, t2); }, _$ListUIState$_(custom1Filters, custom2Filters, custom3Filters, custom4Filters, filter, filterClearedAt, selectedIds, sortAscending, sortField, stateFilters, statusFilters) { var _s11_ = "ListUIState"; if (stateFilters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "stateFilters")); if (statusFilters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "statusFilters")); if (custom1Filters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "custom1Filters")); if (custom2Filters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "custom2Filters")); if (custom3Filters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "custom3Filters")); if (custom4Filters == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "custom4Filters")); return new A._$ListUIState(filter, filterClearedAt, sortField, sortAscending, stateFilters, statusFilters, custom1Filters, custom2Filters, custom3Filters, custom4Filters, selectedIds); }, ListUIState: function ListUIState() { }, _$ListUIStateSerializer: function _$ListUIStateSerializer() { }, _$ListUIState: function _$ListUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.filter = t0; _.filterClearedAt = t1; _.sortField = t2; _.sortAscending = t3; _.stateFilters = t4; _.statusFilters = t5; _.custom1Filters = t6; _.custom2Filters = t7; _.custom3Filters = t8; _.custom4Filters = t9; _.selectedIds = t10; _._list_ui_state$__hashCode = null; }, ListUIStateBuilder: function ListUIStateBuilder() { var _ = this; _._selectedIds = _._custom4Filters = _._custom3Filters = _._custom2Filters = _._custom1Filters = _._statusFilters = _._stateFilters = _._sortAscending = _._sortField = _._list_ui_state$_filterClearedAt = _._list_ui_state$_filter = _._list_ui_state$_$v = null; }, prefReducer(state, action, selectedCompanyId) { return state.rebuild$1(new A.prefReducer_closure(selectedCompanyId, state, action)); }, _resortFields(value, entityType, field) { var t1, sortField = value._map$_map.$index(0, entityType); if (sortField == null) sortField = A._$PrefStateSortField$_(field !== "number", field); t1 = new A.PrefStateSortFieldBuilder(); A.ArgumentError_checkNotNull(sortField, "other"); t1._pref_state$_$v = sortField; new A._resortFields_closure(sortField, field).call$1(t1); return value.rebuild$1(new A._resortFields_closure0(entityType, t1.build$0(0))); }, companyPrefReducer(state, action) { var t2, t3, t1 = {}; t1.state = state; if (state == null) { t2 = A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_HistoryRecord); t2 = t1.state = new A._$CompanyPrefState(t2); } else t2 = state; t3 = new A.CompanyPrefStateBuilder(); A.ArgumentError_checkNotNull(t2, "other"); t3._pref_state$_$v = t2; new A.companyPrefReducer_closure(t1, action).call$1(t3); return t3.build$0(0); }, _addToHistory(list, record) { var old, t1 = record.id, t2 = t1 == null; if (!t2 && B.JSString_methods.startsWith$1(t1, "-")) return list; if (record.entityType === B.EntityType_settings) if (B.JSString_methods.endsWith$1(t2 ? "" : t1, "/edit")) return list; old = B.JSArray_methods.firstWhere$2$orElse(list._list, new A._addToHistory_closure(record), new A._addToHistory_closure0()); if (old != null) return list.rebuild$1(new A._addToHistory_closure1(old, record)); else return list.rebuild$1(new A._addToHistory_closure2(record, list)); }, prefReducer_closure: function prefReducer_closure(t0, t1, t2) { this.selectedCompanyId = t0; this.state = t1; this.action = t2; }, _resortFields_closure: function _resortFields_closure(t0, t1) { this.sortField = t0; this.field = t1; }, _resortFields_closure0: function _resortFields_closure0(t0, t1) { this.entityType = t0; this.directon = t1; }, sortFieldsReducer_closure: function sortFieldsReducer_closure() { }, sortFieldsReducer_closure0: function sortFieldsReducer_closure0() { }, sortFieldsReducer_closure1: function sortFieldsReducer_closure1() { }, sortFieldsReducer_closure2: function sortFieldsReducer_closure2() { }, sortFieldsReducer_closure3: function sortFieldsReducer_closure3() { }, sortFieldsReducer_closure4: function sortFieldsReducer_closure4() { }, sortFieldsReducer_closure5: function sortFieldsReducer_closure5() { }, sortFieldsReducer_closure6: function sortFieldsReducer_closure6() { }, sortFieldsReducer_closure7: function sortFieldsReducer_closure7() { }, sortFieldsReducer_closure8: function sortFieldsReducer_closure8() { }, sortFieldsReducer_closure9: function sortFieldsReducer_closure9() { }, sortFieldsReducer_closure10: function sortFieldsReducer_closure10() { }, sortFieldsReducer_closure11: function sortFieldsReducer_closure11() { }, sortFieldsReducer_closure12: function sortFieldsReducer_closure12() { }, sortFieldsReducer_closure13: function sortFieldsReducer_closure13() { }, sortFieldsReducer_closure14: function sortFieldsReducer_closure14() { }, sortFieldsReducer_closure15: function sortFieldsReducer_closure15() { }, sortFieldsReducer_closure16: function sortFieldsReducer_closure16() { }, sortFieldsReducer_closure17: function sortFieldsReducer_closure17() { }, sortFieldsReducer_closure18: function sortFieldsReducer_closure18() { }, sortFieldsReducer_closure19: function sortFieldsReducer_closure19() { }, sortFieldsReducer_closure20: function sortFieldsReducer_closure20() { }, sidebarEditorReducer_closure: function sidebarEditorReducer_closure() { }, sidebarEditorReducer__closure: function sidebarEditorReducer__closure(t0, t1) { this.entityType = t0; this.value = t1; }, sidebarEditorReducer__closure0: function sidebarEditorReducer__closure0(t0) { this.entityType = t0; }, sidebarViewerReducer_closure: function sidebarViewerReducer_closure() { }, sidebarViewerReducer__closure: function sidebarViewerReducer__closure(t0, t1) { this.entityType = t0; this.value = t1; }, sidebarViewerReducer__closure0: function sidebarViewerReducer__closure0(t0) { this.entityType = t0; }, menuVisibleReducer_closure: function menuVisibleReducer_closure() { }, menuVisibleReducer_closure0: function menuVisibleReducer_closure0() { }, textScaleFactorReducer_closure: function textScaleFactorReducer_closure() { }, historyVisibleReducer_closure: function historyVisibleReducer_closure() { }, historyVisibleReducer_closure0: function historyVisibleReducer_closure0() { }, hideDesktopWarningReducer_closure: function hideDesktopWarningReducer_closure() { }, hideGatewayWarningReducer_closure: function hideGatewayWarningReducer_closure() { }, hideReviewAppReducer_closure: function hideReviewAppReducer_closure() { }, layoutReducer_closure: function layoutReducer_closure() { }, moduleLayoutReducer_closure: function moduleLayoutReducer_closure() { }, moduleLayoutReducer_closure0: function moduleLayoutReducer_closure0() { }, rowsPerPageReducer_closure: function rowsPerPageReducer_closure() { }, manuSidebarReducer_closure: function manuSidebarReducer_closure() { }, historySidebarReducer_closure: function historySidebarReducer_closure() { }, darkModeReducer_closure: function darkModeReducer_closure() { }, enableJspdfReducer_closure: function enableJspdfReducer_closure() { }, enableTooltipsReducer_closure: function enableTooltipsReducer_closure() { }, enableFlexibleSearchReducer_closure: function enableFlexibleSearchReducer_closure() { }, persistDataReducer_closure: function persistDataReducer_closure() { }, persistUIReducer_closure: function persistUIReducer_closure() { }, showKanbanReducer_closure: function showKanbanReducer_closure() { }, isFilterVisibleReducer_closure: function isFilterVisibleReducer_closure() { }, longPressReducer_closure: function longPressReducer_closure() { }, tapSelectedToEditReducer_closure: function tapSelectedToEditReducer_closure() { }, isPreviewVisibleReducer_closure: function isPreviewVisibleReducer_closure() { }, isPreviewVisibleReducer_closure0: function isPreviewVisibleReducer_closure0() { }, requireAuthenticationReducer_closure: function requireAuthenticationReducer_closure() { }, colorThemeReducer_closure: function colorThemeReducer_closure() { }, showPdfPreviewReducer_closure: function showPdfPreviewReducer_closure() { }, editAfterSavingReducer_closure: function editAfterSavingReducer_closure() { }, enableTouchEventsReducer_closure: function enableTouchEventsReducer_closure() { }, customColorsReducer_closure: function customColorsReducer_closure() { }, companyPrefReducer_closure: function companyPrefReducer_closure(t0, t1) { this._box_0 = t0; this.action = t1; }, historyReducer_closure: function historyReducer_closure() { }, historyReducer__closure: function historyReducer__closure() { }, historyReducer_closure0: function historyReducer_closure0() { }, historyReducer_closure1: function historyReducer_closure1() { }, historyReducer_closure2: function historyReducer_closure2() { }, historyReducer_closure3: function historyReducer_closure3() { }, historyReducer_closure4: function historyReducer_closure4() { }, historyReducer_closure5: function historyReducer_closure5() { }, historyReducer_closure6: function historyReducer_closure6() { }, historyReducer_closure7: function historyReducer_closure7() { }, historyReducer_closure8: function historyReducer_closure8() { }, historyReducer_closure9: function historyReducer_closure9() { }, historyReducer_closure10: function historyReducer_closure10() { }, historyReducer_closure11: function historyReducer_closure11() { }, historyReducer_closure12: function historyReducer_closure12() { }, historyReducer_closure13: function historyReducer_closure13() { }, historyReducer_closure14: function historyReducer_closure14() { }, historyReducer_closure15: function historyReducer_closure15() { }, historyReducer_closure16: function historyReducer_closure16() { }, historyReducer_closure17: function historyReducer_closure17() { }, historyReducer_closure18: function historyReducer_closure18() { }, historyReducer_closure19: function historyReducer_closure19() { }, historyReducer_closure20: function historyReducer_closure20() { }, historyReducer_closure21: function historyReducer_closure21() { }, historyReducer_closure22: function historyReducer_closure22() { }, historyReducer_closure23: function historyReducer_closure23() { }, historyReducer_closure24: function historyReducer_closure24() { }, historyReducer_closure25: function historyReducer_closure25() { }, historyReducer_closure26: function historyReducer_closure26() { }, historyReducer_closure27: function historyReducer_closure27() { }, historyReducer_closure28: function historyReducer_closure28() { }, historyReducer_closure29: function historyReducer_closure29() { }, historyReducer_closure30: function historyReducer_closure30() { }, historyReducer_closure31: function historyReducer_closure31() { }, historyReducer_closure32: function historyReducer_closure32() { }, historyReducer_closure33: function historyReducer_closure33() { }, historyReducer_closure34: function historyReducer_closure34() { }, historyReducer_closure35: function historyReducer_closure35() { }, historyReducer_closure36: function historyReducer_closure36() { }, historyReducer_closure37: function historyReducer_closure37() { }, historyReducer_closure38: function historyReducer_closure38() { }, historyReducer_closure39: function historyReducer_closure39() { }, historyReducer_closure40: function historyReducer_closure40() { }, historyReducer_closure41: function historyReducer_closure41() { }, historyReducer_closure42: function historyReducer_closure42() { }, historyReducer_closure43: function historyReducer_closure43() { }, historyReducer_closure44: function historyReducer_closure44() { }, historyReducer_closure45: function historyReducer_closure45() { }, historyReducer_closure46: function historyReducer_closure46() { }, historyReducer_closure47: function historyReducer_closure47() { }, historyReducer_closure48: function historyReducer_closure48() { }, _addToHistory_closure: function _addToHistory_closure(t0) { this.record = t0; }, _addToHistory_closure0: function _addToHistory_closure0() { }, _addToHistory_closure1: function _addToHistory_closure1(t0, t1) { this.old = t0; this.record = t1; }, _addToHistory_closure2: function _addToHistory_closure2(t0, t1) { this.record = t0; this.list = t1; }, PrefState_PrefState() { var t4, t5, t1 = type$.legacy_EntityType, t2 = type$.legacy_bool, t3 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, t2); t2 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, t2); t4 = type$.legacy_String; t5 = A.BuiltMap_BuiltMap(B.Map_empty0, t4, type$.legacy_CompanyPrefState); t1 = A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_PrefStateSortField); return A._$PrefState$_(B.AppLayout_desktop, "light", t5, A.BuiltMap_BuiltMap(B.Map_soKdN, t4, t4), true, false, false, false, true, true, false, false, false, B.AppSidebarMode_float, false, false, true, false, true, B.AppSidebarMode_collapse, B.ModuleLayout_table, false, true, false, 10, false, true, t1, false, 1, t3, t2); }, PrefState__initializeBuilder(builder) { var t1 = type$.legacy_EntityType, t2 = type$.legacy_bool; builder.get$useSidebarEditor().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, t2)); builder.get$useSidebarViewer().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, t2)); builder.get$sortFields().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t1, type$.legacy_PrefStateSortField)); t1 = builder.get$customColors(); t2 = type$.legacy_String; t1.replace$1(0, builder.get$_pref_state$_$this()._enableDarkMode === true ? A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2) : A.BuiltMap_BuiltMap(B.Map_soKdN, t2, t2)); builder.get$_pref_state$_$this()._showKanban = false; builder.get$_pref_state$_$this()._isPreviewVisible = false; builder.get$_pref_state$_$this()._isFilterVisible = false; builder.get$_pref_state$_$this()._hideDesktopWarning = false; builder.get$_pref_state$_$this()._hideGatewayWarning = false; builder.get$_pref_state$_$this()._hideReviewApp = false; builder.get$_pref_state$_$this()._tapSelectedToEdit = false; builder.get$_pref_state$_$this()._persistData = false; builder.get$_pref_state$_$this()._persistUI = true; builder.get$_pref_state$_$this()._editAfterSaving = true; builder.get$_pref_state$_$this()._showPdfPreview = true; builder.get$_pref_state$_$this()._enableTouchEvents = true; builder.get$_pref_state$_$this()._enableFlexibleSearch = false; builder.get$_pref_state$_$this()._enableJSPDF = false; builder.get$_pref_state$_$this()._enableTooltips = true; builder.get$_pref_state$_$this()._textScaleFactor = 1; builder.get$_pref_state$_$this(); builder.get$_pref_state$_$this()._colorTheme = "light"; return builder; }, _$valueOf1($name) { switch ($name) { case "mobile": return B.AppLayout_mobile; case "desktop": return B.AppLayout_desktop; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$moduleLayoutValueOf($name) { switch ($name) { case "list": return B.ModuleLayout_list; case "table": return B.ModuleLayout_table; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$valueOfSidebarMode($name) { switch ($name) { case "float": return B.AppSidebarMode_float; case "visible": return B.AppSidebarMode_visible; case "collapse": return B.AppSidebarMode_collapse; default: throw A.wrapException(A.ArgumentError$($name, null)); } }, _$PrefState$_(appLayout, colorTheme, companyPrefs, customColors, editAfterSaving, enableDarkMode, enableFlexibleSearch, enableJSPDF, enableTooltips, enableTouchEvents, hideDesktopWarning, hideGatewayWarning, hideReviewApp, historySidebarMode, isFilterVisible, isHistoryVisible, isMenuVisible, isPreviewVisible, longPressSelectionIsDefault, menuSidebarMode, moduleLayout, persistData, persistUI, requireAuthentication, rowsPerPage, showKanban, showPdfPreview, sortFields, tapSelectedToEdit, textScaleFactor, useSidebarEditor, useSidebarViewer) { var _s9_ = "PrefState"; if (useSidebarEditor == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "useSidebarEditor")); if (useSidebarViewer == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "useSidebarViewer")); if (customColors == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "customColors")); if (sortFields == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "sortFields")); if (companyPrefs == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "companyPrefs")); return new A._$PrefState(appLayout, moduleLayout, menuSidebarMode, historySidebarMode, useSidebarEditor, useSidebarViewer, customColors, isPreviewVisible, isMenuVisible, showKanban, showPdfPreview, enableTouchEvents, enableFlexibleSearch, isHistoryVisible, enableDarkMode, isFilterVisible, persistData, persistUI, longPressSelectionIsDefault, requireAuthentication, tapSelectedToEdit, enableJSPDF, rowsPerPage, enableTooltips, colorTheme, hideDesktopWarning, hideGatewayWarning, hideReviewApp, editAfterSaving, textScaleFactor, sortFields, companyPrefs); }, _$PrefStateSortField$_(ascending, field) { if (field == null) A.throwExpression(A.BuiltValueNullFieldError$("PrefStateSortField", "field")); return new A._$PrefStateSortField(field, ascending); }, _$HistoryRecord$_(entityType, id, timestamp) { if (entityType == null) A.throwExpression(A.BuiltValueNullFieldError$("HistoryRecord", "entityType")); return new A._$HistoryRecord(id, entityType, timestamp); }, PrefState: function PrefState() { }, PrefStateSortField: function PrefStateSortField() { }, CompanyPrefState: function CompanyPrefState() { }, AppLayout: function AppLayout(t0) { this.name = t0; }, ModuleLayout: function ModuleLayout(t0) { this.name = t0; }, AppSidebar: function AppSidebar(t0) { this.name = t0; }, AppSidebarMode: function AppSidebarMode(t0) { this.name = t0; }, HistoryRecord: function HistoryRecord() { }, _$PrefStateSerializer: function _$PrefStateSerializer() { }, _$PrefStateSortFieldSerializer: function _$PrefStateSortFieldSerializer() { }, _$CompanyPrefStateSerializer: function _$CompanyPrefStateSerializer() { }, _$AppLayoutSerializer: function _$AppLayoutSerializer() { }, _$ModuleLayoutSerializer: function _$ModuleLayoutSerializer() { }, _$AppSidebarModeSerializer: function _$AppSidebarModeSerializer() { }, _$HistoryRecordSerializer: function _$HistoryRecordSerializer() { }, _$PrefState: function _$PrefState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31) { var _ = this; _.appLayout = t0; _.moduleLayout = t1; _.menuSidebarMode = t2; _.historySidebarMode = t3; _.useSidebarEditor = t4; _.useSidebarViewer = t5; _.customColors = t6; _.isPreviewVisible = t7; _.isMenuVisible = t8; _.showKanban = t9; _.showPdfPreview = t10; _.enableTouchEvents = t11; _.enableFlexibleSearch = t12; _.isHistoryVisible = t13; _.enableDarkMode = t14; _.isFilterVisible = t15; _.persistData = t16; _.persistUI = t17; _.longPressSelectionIsDefault = t18; _.requireAuthentication = t19; _.tapSelectedToEdit = t20; _.enableJSPDF = t21; _.rowsPerPage = t22; _.enableTooltips = t23; _.colorTheme = t24; _.hideDesktopWarning = t25; _.hideGatewayWarning = t26; _.hideReviewApp = t27; _.editAfterSaving = t28; _.textScaleFactor = t29; _.sortFields = t30; _.companyPrefs = t31; _.__hashCode = null; }, PrefStateBuilder: function PrefStateBuilder() { var _ = this; _._editAfterSaving = _._hideReviewApp = _._hideGatewayWarning = _._hideDesktopWarning = _._colorTheme = _._enableTooltips = _._rowsPerPage = _._enableJSPDF = _._tapSelectedToEdit = _._requireAuthentication = _._longPressSelectionIsDefault = _._persistUI = _._persistData = _._isFilterVisible = _._enableDarkMode = _._isHistoryVisible = _._enableFlexibleSearch = _._enableTouchEvents = _._showPdfPreview = _._showKanban = _._isMenuVisible = _._isPreviewVisible = _._customColors = _._useSidebarViewer = _._useSidebarEditor = _._historySidebarMode = _._menuSidebarMode = _._moduleLayout = _._appLayout = _._pref_state$_$v = null; _._companyPrefs = _._sortFields = _._textScaleFactor = null; }, _$PrefStateSortField: function _$PrefStateSortField(t0, t1) { this.field = t0; this.ascending = t1; this.__hashCode = null; }, PrefStateSortFieldBuilder: function PrefStateSortFieldBuilder() { this._ascending = this._field = this._pref_state$_$v = null; }, _$CompanyPrefState: function _$CompanyPrefState(t0) { this.historyList = t0; this.__hashCode = null; }, CompanyPrefStateBuilder: function CompanyPrefStateBuilder() { this._historyList = this._pref_state$_$v = null; }, _$HistoryRecord: function _$HistoryRecord(t0, t1, t2) { var _ = this; _.id = t0; _.entityType = t1; _.timestamp = t2; _.__hashCode = null; }, HistoryRecordBuilder: function HistoryRecordBuilder() { var _ = this; _._timestamp = _._pref_state$_entityType = _._pref_state$_id = _._pref_state$_$v = null; }, UpdateCurrentRoute: function UpdateCurrentRoute(t0) { this.route = t0; }, uiReducer(state, action) { return state.rebuild$1(new A.uiReducer_closure(state, action, $.$get$currentRouteReducer().call$2(state.currentRoute, action))); }, uiReducer_closure: function uiReducer_closure(t0, t1, t2) { this.state = t0; this.action = t1; this.currentRoute = t2; }, lastActivityReducer_closure: function lastActivityReducer_closure() { }, filterReducer_closure: function filterReducer_closure() { }, filterReducer_closure0: function filterReducer_closure0() { }, loadingEntityTypeReducer_closure: function loadingEntityTypeReducer_closure() { }, loadingEntityTypeReducer_closure0: function loadingEntityTypeReducer_closure0() { }, loadingEntityTypeReducer_closure1: function loadingEntityTypeReducer_closure1() { }, loadingEntityTypeReducer_closure2: function loadingEntityTypeReducer_closure2() { }, loadingEntityTypeReducer_closure3: function loadingEntityTypeReducer_closure3() { }, loadingEntityTypeReducer_closure4: function loadingEntityTypeReducer_closure4() { }, loadingEntityTypeReducer_closure5: function loadingEntityTypeReducer_closure5() { }, loadingEntityTypeReducer_closure6: function loadingEntityTypeReducer_closure6() { }, loadingEntityTypeReducer_closure7: function loadingEntityTypeReducer_closure7() { }, loadingEntityTypeReducer_closure8: function loadingEntityTypeReducer_closure8() { }, loadingEntityTypeReducer_closure9: function loadingEntityTypeReducer_closure9() { }, loadingEntityTypeReducer_closure10: function loadingEntityTypeReducer_closure10() { }, loadingEntityTypeReducer_closure11: function loadingEntityTypeReducer_closure11() { }, loadingEntityTypeReducer_closure12: function loadingEntityTypeReducer_closure12() { }, filterClearedAtReducer_closure: function filterClearedAtReducer_closure() { }, filterClearedAtReducer_closure0: function filterClearedAtReducer_closure0() { }, currentRouteReducer_closure: function currentRouteReducer_closure() { }, selectedCompanyIndexReducer_closure: function selectedCompanyIndexReducer_closure() { }, previewStackReducer_closure: function previewStackReducer_closure() { }, previewStackReducer__closure: function previewStackReducer__closure(t0) { this.action = t0; }, previewStackReducer_closure0: function previewStackReducer_closure0() { }, previewStackReducer_closure1: function previewStackReducer_closure1() { }, filterStackReducer_closure: function filterStackReducer_closure() { }, filterStackReducer_closure0: function filterStackReducer_closure0() { }, filterStackReducer__closure: function filterStackReducer__closure(t0) { this.action = t0; }, filterStackReducer_closure1: function filterStackReducer_closure1() { }, UIState__initializeBuilder(builder) { builder.get$_ui_state$_$this()._lastActivityAt = 0; builder.get$filterStack().replace$1(0, A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_BaseEntity)); return builder; }, _$UIState$_(clientUIState, companyGatewayUIState, creditUIState, currentRoute, dashboardUIState, designUIState, documentUIState, expenseCategoryUIState, expenseUIState, filter, filterClearedAt, filterStack, groupUIState, invoiceUIState, lastActivityAt, loadingEntityType, paymentTermUIState, paymentUIState, previewStack, previousRoute, productUIState, projectUIState, purchaseOrderUIState, quoteUIState, recurringExpenseUIState, recurringInvoiceUIState, reportsUIState, selectedCompanyIndex, settingsUIState, subscriptionUIState, taskStatusUIState, taskUIState, taxRateUIState, tokenUIState, userUIState, vendorUIState, webhookUIState) { var _s7_ = "UIState"; if (previewStack == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "previewStack")); if (filterStack == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "filterStack")); if (dashboardUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "dashboardUIState")); if (productUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "productUIState")); if (clientUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "clientUIState")); if (invoiceUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "invoiceUIState")); if (purchaseOrderUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "purchaseOrderUIState")); if (recurringExpenseUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "recurringExpenseUIState")); if (subscriptionUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "subscriptionUIState")); if (taskStatusUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "taskStatusUIState")); if (expenseCategoryUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "expenseCategoryUIState")); if (recurringInvoiceUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "recurringInvoiceUIState")); if (webhookUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "webhookUIState")); if (tokenUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "tokenUIState")); if (paymentTermUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "paymentTermUIState")); if (designUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "designUIState")); if (creditUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "creditUIState")); if (userUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "userUIState")); if (taxRateUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "taxRateUIState")); if (companyGatewayUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "companyGatewayUIState")); if (groupUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "groupUIState")); if (documentUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "documentUIState")); if (expenseUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "expenseUIState")); if (vendorUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "vendorUIState")); if (taskUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "taskUIState")); if (projectUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "projectUIState")); if (paymentUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "paymentUIState")); if (quoteUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "quoteUIState")); if (settingsUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "settingsUIState")); if (reportsUIState == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "reportsUIState")); return new A._$UIState(selectedCompanyIndex, currentRoute, previousRoute, loadingEntityType, previewStack, filterStack, filter, filterClearedAt, lastActivityAt, dashboardUIState, productUIState, clientUIState, invoiceUIState, purchaseOrderUIState, recurringExpenseUIState, subscriptionUIState, taskStatusUIState, expenseCategoryUIState, recurringInvoiceUIState, webhookUIState, tokenUIState, paymentTermUIState, designUIState, creditUIState, userUIState, taxRateUIState, companyGatewayUIState, groupUIState, documentUIState, expenseUIState, vendorUIState, taskUIState, projectUIState, paymentUIState, quoteUIState, settingsUIState, reportsUIState); }, UIState: function UIState() { }, UIState_mainRoute_closure: function UIState_mainRoute_closure() { }, UIState_subRoute_closure: function UIState_subRoute_closure() { }, UIState_previousMainRoute_closure: function UIState_previousMainRoute_closure() { }, UIState_previousSubRoute_closure: function UIState_previousSubRoute_closure() { }, _$UIStateSerializer: function _$UIStateSerializer() { }, _$UIState: function _$UIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36) { var _ = this; _.selectedCompanyIndex = t0; _.currentRoute = t1; _.previousRoute = t2; _.loadingEntityType = t3; _.previewStack = t4; _.filterStack = t5; _.filter = t6; _.filterClearedAt = t7; _.lastActivityAt = t8; _.dashboardUIState = t9; _.productUIState = t10; _.clientUIState = t11; _.invoiceUIState = t12; _.purchaseOrderUIState = t13; _.recurringExpenseUIState = t14; _.subscriptionUIState = t15; _.taskStatusUIState = t16; _.expenseCategoryUIState = t17; _.recurringInvoiceUIState = t18; _.webhookUIState = t19; _.tokenUIState = t20; _.paymentTermUIState = t21; _.designUIState = t22; _.creditUIState = t23; _.userUIState = t24; _.taxRateUIState = t25; _.companyGatewayUIState = t26; _.groupUIState = t27; _.documentUIState = t28; _.expenseUIState = t29; _.vendorUIState = t30; _.taskUIState = t31; _.projectUIState = t32; _.paymentUIState = t33; _.quoteUIState = t34; _.settingsUIState = t35; _.reportsUIState = t36; _._ui_state$__hashCode = null; }, UIStateBuilder: function UIStateBuilder() { var _ = this; _._documentUIState = _._groupUIState = _._companyGatewayUIState = _._taxRateUIState = _._userUIState = _._creditUIState = _._designUIState = _._paymentTermUIState = _._tokenUIState = _._webhookUIState = _._recurringInvoiceUIState = _._expenseCategoryUIState = _._taskStatusUIState = _._subscriptionUIState = _._recurringExpenseUIState = _._purchaseOrderUIState = _._invoiceUIState = _._clientUIState = _._productUIState = _._dashboardUIState = _._lastActivityAt = _._filterClearedAt = _._filter = _._filterStack = _._previewStack = _._loadingEntityType = _._previousRoute = _._currentRoute = _._selectedCompanyIndex = _._ui_state$_$v = null; _._reportsUIState = _._settingsUIState = _._quoteUIState = _._paymentUIState = _._projectUIState = _._taskUIState = _._vendorUIState = _._expenseUIState = null; }, handleUserAction(context, users, action) { var store, state, t2, user, userIds, message, t3, t4, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(users); if (t1.get$isEmpty(users)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); user = type$.legacy_UserEntity._as(t1.get$first(users)); userIds = t1.map$1$1(users, new A.handleUserAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, user, true, _null); break; case B.EntityAction_newClient: A.createEntity(_null, _null, context, A.ClientEntity_ClientEntity(_null, _null, state, _null).rebuild$1(new A.handleUserAction_closure0(user)), false); break; case B.EntityAction_newInvoice: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null, _null).rebuild$1(new A.handleUserAction_closure1(user)), false); break; case B.EntityAction_newRecurringInvoice: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_recurringInvoice, _null, state, _null, _null).rebuild$1(new A.handleUserAction_closure2(user)), false); break; case B.EntityAction_newQuote: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_quote, _null, state, _null, _null).rebuild$1(new A.handleUserAction_closure3(user)), false); break; case B.EntityAction_newCredit: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_credit, _null, state, _null, _null).rebuild$1(new A.handleUserAction_closure4(user)), false); break; case B.EntityAction_newExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, _null).rebuild$1(new A.handleUserAction_closure5(user)), false); break; case B.EntityAction_newPayment: A.createEntity(_null, _null, context, A.PaymentEntity_PaymentEntity(_null, _null, state).rebuild$1(new A.handleUserAction_closure6(user)), false); break; case B.EntityAction_newProject: A.createEntity(_null, _null, context, A.ProjectEntity_ProjectEntity(_null, _null, state, _null).rebuild$1(new A.handleUserAction_closure7(user)), false); break; case B.EntityAction_newTask: A.createEntity(_null, _null, context, A.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new A.handleUserAction_closure8(user)), false); break; case B.EntityAction_newVendor: A.createEntity(_null, _null, context, A.VendorEntity_VendorEntity(_null, state, _null).rebuild$1(new A.handleUserAction_closure9(user)), false); break; case B.EntityAction_restore: if (userIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_users"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(userIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_user"); message = t1 == null ? "" : t1; } A.passwordCallback(false, new A.handleUserAction_closure10(new A.handleUserAction_closure11(store, context, message, userIds)), context, false); break; case B.EntityAction_archive: if (userIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_users"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(userIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_user"); message = t1 == null ? "" : t1; } A.passwordCallback(false, new A.handleUserAction_closure12(new A.handleUserAction_closure13(store, context, message, userIds)), context, false); break; case B.EntityAction_delete: if (userIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_users"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(userIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_user"); message = t1 == null ? "" : t1; } A.passwordCallback(false, new A.handleUserAction_closure14(new A.handleUserAction_closure15(store, context, message, userIds)), context, false); break; case B.EntityAction_newRecurringExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, B.EntityType_recurringExpense, _null, _null, state, user, _null), false); break; case B.EntityAction_remove: if (userIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "removed_users"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(userIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "removed_user"); message = t1 == null ? "" : t1; } A.confirmCallback(false, new A.handleUserAction_closure16(context, new A.handleUserAction_closure17(store, context, message, user)), context, _null, false, _null); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.userUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartUserMultiselect()); if (t1.get$isEmpty(users)) break; for (t1 = t1.get$iterator(users); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.userUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToUserMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromUserMultiselect(t2)); } break; case B.EntityAction_resendInvite: A.passwordCallback(false, new A.handleUserAction_closure18(store, user, context, t2), context, false); break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([user], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewUserList: function ViewUserList() { }, ViewUser: function ViewUser(t0) { this.userId = t0; }, EditUser: function EditUser(t0) { this.user = t0; }, UpdateUser: function UpdateUser(t0) { this.user = t0; }, LoadUserRequest: function LoadUserRequest() { }, LoadUserFailure: function LoadUserFailure(t0) { this.error = t0; }, LoadUserSuccess: function LoadUserSuccess(t0) { this.user = t0; }, LoadUsersRequest: function LoadUsersRequest() { }, LoadUsersFailure: function LoadUsersFailure(t0) { this.error = t0; }, LoadUsersSuccess: function LoadUsersSuccess(t0) { this.users = t0; }, SaveUserRequest: function SaveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.user = t1; _.password = t2; _.idToken = t3; }, SaveUserSuccess: function SaveUserSuccess(t0) { this.user = t0; }, AddUserSuccess: function AddUserSuccess(t0) { this.user = t0; }, SaveUserFailure: function SaveUserFailure() { }, ArchiveUserRequest: function ArchiveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, ArchiveUserSuccess: function ArchiveUserSuccess(t0) { this.users = t0; }, ArchiveUserFailure: function ArchiveUserFailure() { }, DeleteUserRequest: function DeleteUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, DeleteUserSuccess: function DeleteUserSuccess(t0) { this.users = t0; }, DeleteUserFailure: function DeleteUserFailure() { }, RestoreUserRequest: function RestoreUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, RestoreUserSuccess: function RestoreUserSuccess(t0) { this.users = t0; }, RestoreUserFailure: function RestoreUserFailure() { }, RemoveUserRequest: function RemoveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userId = t1; _.password = t2; _.idToken = t3; }, RemoveUserSuccess: function RemoveUserSuccess(t0) { this.userId = t0; }, RemoveUserFailure: function RemoveUserFailure() { }, ResendInviteRequest: function ResendInviteRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userId = t1; _.password = t2; _.idToken = t3; }, ResendInviteSuccess: function ResendInviteSuccess() { }, ResendInviteFailure: function ResendInviteFailure() { }, FilterUsers: function FilterUsers(t0) { this.filter = t0; }, SortUsers: function SortUsers(t0) { this.field = t0; }, FilterUsersByState: function FilterUsersByState(t0) { this.state = t0; }, FilterUsersByCustom1: function FilterUsersByCustom1(t0) { this.value = t0; }, FilterUsersByCustom2: function FilterUsersByCustom2(t0) { this.value = t0; }, FilterUsersByCustom3: function FilterUsersByCustom3(t0) { this.value = t0; }, FilterUsersByCustom4: function FilterUsersByCustom4(t0) { this.value = t0; }, handleUserAction_closure: function handleUserAction_closure() { }, handleUserAction_closure0: function handleUserAction_closure0(t0) { this.user = t0; }, handleUserAction_closure1: function handleUserAction_closure1(t0) { this.user = t0; }, handleUserAction_closure2: function handleUserAction_closure2(t0) { this.user = t0; }, handleUserAction_closure3: function handleUserAction_closure3(t0) { this.user = t0; }, handleUserAction_closure4: function handleUserAction_closure4(t0) { this.user = t0; }, handleUserAction_closure5: function handleUserAction_closure5(t0) { this.user = t0; }, handleUserAction_closure6: function handleUserAction_closure6(t0) { this.user = t0; }, handleUserAction_closure7: function handleUserAction_closure7(t0) { this.user = t0; }, handleUserAction_closure8: function handleUserAction_closure8(t0) { this.user = t0; }, handleUserAction_closure9: function handleUserAction_closure9(t0) { this.user = t0; }, handleUserAction_closure11: function handleUserAction_closure11(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure10: function handleUserAction_closure10(t0) { this.dispatch = t0; }, handleUserAction_closure13: function handleUserAction_closure13(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure12: function handleUserAction_closure12(t0) { this.dispatch = t0; }, handleUserAction_closure15: function handleUserAction_closure15(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure14: function handleUserAction_closure14(t0) { this.dispatch = t0; }, handleUserAction_closure17: function handleUserAction_closure17(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.user = t3; }, handleUserAction_closure16: function handleUserAction_closure16(t0, t1) { this.context = t0; this.dispatch = t1; }, handleUserAction__closure: function handleUserAction__closure(t0) { this.dispatch = t0; }, handleUserAction_closure18: function handleUserAction_closure18(t0, t1, t2, t3) { var _ = this; _.store = t0; _.user = t1; _.context = t2; _.localization = t3; }, StartUserMultiselect: function StartUserMultiselect() { }, AddToUserMultiselect: function AddToUserMultiselect(t0) { this.entity = t0; }, RemoveFromUserMultiselect: function RemoveFromUserMultiselect(t0) { this.entity = t0; }, ClearUserMultiselect: function ClearUserMultiselect() { }, _editUser() { return new A._editUser_closure(); }, _viewUser() { return new A._viewUser_closure(); }, _viewUserList() { return new A._viewUserList_closure0(); }, _archiveUser(repository) { return new A._archiveUser_closure(repository); }, _deleteUser(repository) { return new A._deleteUser_closure(repository); }, _restoreUser(repository) { return new A._restoreUser_closure(repository); }, _removeUser(repository) { return new A._removeUser_closure(repository); }, _resendInvite(repository) { return new A._resendInvite_closure(repository); }, _saveUser(repository) { return new A._saveUser_closure(repository); }, _loadUser(repository) { return new A._loadUser_closure(repository); }, _loadUsers(repository) { return new A._loadUsers_closure(repository); }, _editUser_closure: function _editUser_closure() { }, _viewUser_closure: function _viewUser_closure() { }, _viewUserList_closure0: function _viewUserList_closure0() { }, _viewUserList__closure: function _viewUserList__closure() { }, _archiveUser_closure: function _archiveUser_closure(t0) { this.repository = t0; }, _archiveUser__closure: function _archiveUser__closure(t0) { this.store = t0; }, _archiveUser__closure0: function _archiveUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveUser__closure1: function _archiveUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _deleteUser_closure: function _deleteUser_closure(t0) { this.repository = t0; }, _deleteUser__closure: function _deleteUser__closure(t0) { this.store = t0; }, _deleteUser__closure0: function _deleteUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteUser__closure1: function _deleteUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _restoreUser_closure: function _restoreUser_closure(t0) { this.repository = t0; }, _restoreUser__closure: function _restoreUser__closure(t0) { this.store = t0; }, _restoreUser__closure0: function _restoreUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreUser__closure1: function _restoreUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _removeUser_closure: function _removeUser_closure(t0) { this.repository = t0; }, _removeUser__closure: function _removeUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _removeUser__closure0: function _removeUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _resendInvite_closure: function _resendInvite_closure(t0) { this.repository = t0; }, _resendInvite__closure: function _resendInvite__closure(t0, t1) { this.store = t0; this.action = t1; }, _resendInvite__closure0: function _resendInvite__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveUser_closure: function _saveUser_closure(t0) { this.repository = t0; }, _saveUser__closure: function _saveUser__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveUser__closure0: function _saveUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadUser_closure: function _loadUser_closure(t0) { this.repository = t0; }, _loadUser__closure: function _loadUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadUser__closure0: function _loadUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadUsers_closure: function _loadUsers_closure(t0) { this.repository = t0; }, _loadUsers__closure: function _loadUsers__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadUsers__closure0: function _loadUsers__closure0(t0, t1) { this.store = t0; this.action = t1; }, userUIReducer(state, action) { var t1; state.toString; t1 = new A.UserUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._user_state$_$v = state; new A.userUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing19(user, action) { return A.UserEntity_UserEntity(null, null, null); }, _updateEditing20(user, action) { return J.get$user$x(action); }, _viewUserList0(userListState, action) { return userListState.rebuild$1(new A._viewUserList_closure()); }, _filterUsersByCustom1(userListState, action) { var t1 = userListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return userListState.rebuild$1(new A._filterUsersByCustom1_closure(action)); else return userListState.rebuild$1(new A._filterUsersByCustom1_closure0(action)); }, _filterUsersByCustom2(userListState, action) { var t1 = userListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return userListState.rebuild$1(new A._filterUsersByCustom2_closure(action)); else return userListState.rebuild$1(new A._filterUsersByCustom2_closure0(action)); }, _filterUsersByCustom3(userListState, action) { var t1 = userListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return userListState.rebuild$1(new A._filterUsersByCustom3_closure(action)); else return userListState.rebuild$1(new A._filterUsersByCustom3_closure0(action)); }, _filterUsersByCustom4(userListState, action) { var t1 = userListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return userListState.rebuild$1(new A._filterUsersByCustom4_closure(action)); else return userListState.rebuild$1(new A._filterUsersByCustom4_closure0(action)); }, _filterUsersByState(userListState, action) { var t1 = userListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return userListState.rebuild$1(new A._filterUsersByState_closure(action)); else return userListState.rebuild$1(new A._filterUsersByState_closure0(action)); }, _filterUsers(userListState, action) { return userListState.rebuild$1(new A._filterUsers_closure(action, userListState)); }, _sortUsers(userListState, action) { return userListState.rebuild$1(new A._sortUsers_closure(action)); }, _startListMultiselect21(userListState, action) { return userListState.rebuild$1(new A._startListMultiselect_closure9()); }, _addToListMultiselect21(userListState, action) { return userListState.rebuild$1(new A._addToListMultiselect_closure9(action)); }, _removeFromListMultiselect21(userListState, action) { return userListState.rebuild$1(new A._removeFromListMultiselect_closure9(action)); }, _clearListMultiselect21(userListState, action) { return userListState.rebuild$1(new A._clearListMultiselect_closure9()); }, _archiveUserSuccess(userState, action) { return userState.rebuild$1(new A._archiveUserSuccess_closure(action)); }, _deleteUserSuccess(userState, action) { return userState.rebuild$1(new A._deleteUserSuccess_closure(action)); }, _restoreUserSuccess(userState, action) { return userState.rebuild$1(new A._restoreUserSuccess_closure(action)); }, _removeUserSuccess(userState, action) { return userState.rebuild$1(new A._removeUserSuccess_closure(action)); }, _addUser(userState, action) { return userState.rebuild$1(new A._addUser_closure(action)); }, _updateUser(userState, action) { return userState.rebuild$1(new A._updateUser_closure(action)); }, _updateAuthUser(userState, action) { return userState.rebuild$1(new A._updateAuthUser_closure(action)); }, _connectOAuthUser0(userState, action) { return userState.rebuild$1(new A._connectOAuthUser_closure(action)); }, _connectGmailUser0(userState, action) { return userState.rebuild$1(new A._connectGmailUser_closure(action)); }, _setLoadedUser(userState, action) { return userState.rebuild$1(new A._setLoadedUser_closure(action)); }, _setLoadedUsers(userState, action) { var state = userState.rebuild$1(new A._setLoadedUsers_closure(action)); return state.rebuild$1(new A._setLoadedUsers_closure0(state)); }, _setLoadedCompany20(userState, action) { var state = userState.rebuild$1(new A._setLoadedCompany_closure5(action)); return state.rebuild$1(new A._setLoadedCompany_closure6(state)); }, userUIReducer_closure: function userUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure71: function forceSelectedReducer_closure71() { }, forceSelectedReducer_closure72: function forceSelectedReducer_closure72() { }, forceSelectedReducer_closure73: function forceSelectedReducer_closure73() { }, forceSelectedReducer_closure74: function forceSelectedReducer_closure74() { }, forceSelectedReducer_closure75: function forceSelectedReducer_closure75() { }, forceSelectedReducer_closure76: function forceSelectedReducer_closure76() { }, forceSelectedReducer_closure77: function forceSelectedReducer_closure77() { }, forceSelectedReducer_closure78: function forceSelectedReducer_closure78() { }, selectedIdReducer_closure144: function selectedIdReducer_closure144() { }, selectedIdReducer_closure145: function selectedIdReducer_closure145() { }, selectedIdReducer_closure146: function selectedIdReducer_closure146() { }, selectedIdReducer_closure147: function selectedIdReducer_closure147() { }, selectedIdReducer_closure148: function selectedIdReducer_closure148() { }, selectedIdReducer_closure149: function selectedIdReducer_closure149() { }, selectedIdReducer_closure150: function selectedIdReducer_closure150() { }, selectedIdReducer_closure151: function selectedIdReducer_closure151() { }, selectedIdReducer_closure152: function selectedIdReducer_closure152() { }, selectedIdReducer_closure153: function selectedIdReducer_closure153() { }, selectedIdReducer_closure154: function selectedIdReducer_closure154() { }, selectedIdReducer_closure155: function selectedIdReducer_closure155() { }, selectedIdReducer_closure156: function selectedIdReducer_closure156() { }, selectedIdReducer_closure157: function selectedIdReducer_closure157() { }, selectedIdReducer_closure158: function selectedIdReducer_closure158() { }, selectedIdReducer_closure159: function selectedIdReducer_closure159() { }, editingReducer_closure45: function editingReducer_closure45() { }, editingReducer_closure46: function editingReducer_closure46() { }, editingReducer_closure47: function editingReducer_closure47() { }, editingReducer_closure48: function editingReducer_closure48() { }, editingReducer__closure15: function editingReducer__closure15() { }, _viewUserList_closure: function _viewUserList_closure() { }, _filterUsersByCustom1_closure: function _filterUsersByCustom1_closure(t0) { this.action = t0; }, _filterUsersByCustom1_closure0: function _filterUsersByCustom1_closure0(t0) { this.action = t0; }, _filterUsersByCustom2_closure: function _filterUsersByCustom2_closure(t0) { this.action = t0; }, _filterUsersByCustom2_closure0: function _filterUsersByCustom2_closure0(t0) { this.action = t0; }, _filterUsersByCustom3_closure: function _filterUsersByCustom3_closure(t0) { this.action = t0; }, _filterUsersByCustom3_closure0: function _filterUsersByCustom3_closure0(t0) { this.action = t0; }, _filterUsersByCustom4_closure: function _filterUsersByCustom4_closure(t0) { this.action = t0; }, _filterUsersByCustom4_closure0: function _filterUsersByCustom4_closure0(t0) { this.action = t0; }, _filterUsersByState_closure: function _filterUsersByState_closure(t0) { this.action = t0; }, _filterUsersByState_closure0: function _filterUsersByState_closure0(t0) { this.action = t0; }, _filterUsers_closure: function _filterUsers_closure(t0, t1) { this.action = t0; this.userListState = t1; }, _sortUsers_closure: function _sortUsers_closure(t0) { this.action = t0; }, _startListMultiselect_closure9: function _startListMultiselect_closure9() { }, _addToListMultiselect_closure9: function _addToListMultiselect_closure9(t0) { this.action = t0; }, _removeFromListMultiselect_closure9: function _removeFromListMultiselect_closure9(t0) { this.action = t0; }, _clearListMultiselect_closure9: function _clearListMultiselect_closure9() { }, _archiveUserSuccess_closure: function _archiveUserSuccess_closure(t0) { this.action = t0; }, _deleteUserSuccess_closure: function _deleteUserSuccess_closure(t0) { this.action = t0; }, _restoreUserSuccess_closure: function _restoreUserSuccess_closure(t0) { this.action = t0; }, _removeUserSuccess_closure: function _removeUserSuccess_closure(t0) { this.action = t0; }, _addUser_closure: function _addUser_closure(t0) { this.action = t0; }, _updateUser_closure: function _updateUser_closure(t0) { this.action = t0; }, _updateAuthUser_closure: function _updateAuthUser_closure(t0) { this.action = t0; }, _connectOAuthUser_closure: function _connectOAuthUser_closure(t0) { this.action = t0; }, _connectGmailUser_closure: function _connectGmailUser_closure(t0) { this.action = t0; }, _setLoadedUser_closure: function _setLoadedUser_closure(t0) { this.action = t0; }, _setLoadedUsers_closure: function _setLoadedUsers_closure(t0) { this.action = t0; }, _setLoadedUsers__closure: function _setLoadedUsers__closure() { }, _setLoadedUsers__closure0: function _setLoadedUsers__closure0() { }, _setLoadedUsers_closure0: function _setLoadedUsers_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure5: function _setLoadedCompany_closure5(t0) { this.action = t0; }, _setLoadedCompany__closure5: function _setLoadedCompany__closure5() { }, _setLoadedCompany__closure6: function _setLoadedCompany__closure6() { }, _setLoadedCompany_closure6: function _setLoadedCompany_closure6(t0) { this.state = t0; }, filteredUsersSelector(selectionState, userMap, userList, userListState, authUserId) { var t1 = userList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredUsersSelector_closure(userMap, selectionState, userListState, authUserId), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredUsersSelector_closure0(userMap, userListState)); return list; }, userList(userMap) { var t2, list, t1 = userMap.get$keys(userMap); t1.toString; t2 = t1.$ti._eval$1("WhereIterable"); list = A.List_List$of(new A.WhereIterable(t1, new A.userList_closure(userMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.userList_closure0(userMap)); return list; }, gmailUserList(userMap) { var t1 = A.userList(userMap), t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(t1, new A.gmailUserList_closure(userMap), t2), true, t2._eval$1("Iterable.E")); }, microsoftUserList(userMap) { var t1 = A.userList(userMap), t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(t1, new A.microsoftUserList_closure(userMap), t2), true, t2._eval$1("Iterable.E")); }, memoizedFilteredUserList_closure: function memoizedFilteredUserList_closure() { }, filteredUsersSelector_closure: function filteredUsersSelector_closure(t0, t1, t2, t3) { var _ = this; _.userMap = t0; _.selectionState = t1; _.userListState = t2; _.authUserId = t3; }, filteredUsersSelector_closure0: function filteredUsersSelector_closure0(t0, t1) { this.userMap = t0; this.userListState = t1; }, memoizedUserList_closure: function memoizedUserList_closure() { }, userList_closure: function userList_closure(t0) { this.userMap = t0; }, userList_closure0: function userList_closure0(t0) { this.userMap = t0; }, memoizedGmailUserList_closure: function memoizedGmailUserList_closure() { }, gmailUserList_closure: function gmailUserList_closure(t0) { this.userMap = t0; }, memoizedMicrosoftUserList_closure: function memoizedMicrosoftUserList_closure() { }, microsoftUserList_closure: function microsoftUserList_closure(t0) { this.userMap = t0; }, _$UserState$_(list, map) { var _s9_ = "UserState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "list")); return new A._$UserState(map, list); }, _$UserUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("UserUIState", "listUIState")); return new A._$UserUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, UserState: function UserState() { }, UserUIState: function UserUIState() { }, _$UserStateSerializer: function _$UserStateSerializer() { }, _$UserUIStateSerializer: function _$UserUIStateSerializer() { }, _$UserState: function _$UserState(t0, t1) { this.map = t0; this.list = t1; this._user_state$__hashCode = null; }, UserStateBuilder: function UserStateBuilder() { this._user_state$_list = this._user_state$_map = this._user_state$_$v = null; }, _$UserUIState: function _$UserUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._user_state$__hashCode = null; }, UserUIStateBuilder: function UserUIStateBuilder() { var _ = this; _._user_state$_cancelCompleter = _._user_state$_saveCompleter = _._user_state$_tabIndex = _._user_state$_forceSelected = _._user_state$_selectedId = _._user_state$_listUIState = _._user_state$_editing = _._user_state$_$v = null; }, _UserUIState_Object_EntityUIState: function _UserUIState_Object_EntityUIState() { }, handleVendorAction(context, vendors, action) { var store, state, t2, t3, vendor, vendorIds, message, t4, documentIds, _null = null, _s6_ = "_state", _s6_0 = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(vendors); if (t1.get$isEmpty(vendors)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, _s6_); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = type$.legacy_VendorEntity; vendor = t3._as(t1.get$first(vendors)); vendorIds = t1.map$1$1(vendors, new A.handleVendorAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_edit: A.editEntity(_null, vendor, true, _null); break; case B.EntityAction_newPurchaseOrder: A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_purchaseOrder, _null, state, _null, vendor), false); break; case B.EntityAction_newExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, vendor), false); break; case B.EntityAction_newRecurringExpense: A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, B.EntityType_recurringExpense, _null, _null, state, _null, vendor), false); break; case B.EntityAction_restore: if (vendorIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_vendors"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(vendorIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_vendor"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreVendorRequest(t1, vendorIds)); break; case B.EntityAction_archive: if (vendorIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_vendors"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(vendorIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_vendor"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveVendorRequest(t1, vendorIds)); break; case B.EntityAction_delete: if (vendorIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_vendors"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_0, B.JSInt_methods.toString$0(vendorIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_vendor"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteVendorRequest(t1, vendorIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, _s6_).uiState.vendorUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartVendorMultiselect()); if (t1.get$isEmpty(vendors)) break; for (t1 = t1.get$iterator(vendors); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, _s6_).uiState.vendorUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToVendorMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromVendorMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(_null, A._setArrayType([vendor], type$.JSArray_legacy_BaseEntity), false); break; case B.EntityAction_documents: documentIds = A._setArrayType([], type$.JSArray_legacy_String); for (t1 = t1.get$iterator(vendors); t1.moveNext$0();) for (t4 = t3._as(t1.get$current(t1)).documents._list, t4 = new J.ArrayIterator(t4, t4.length, A._arrayInstanceType(t4)._eval$1("ArrayIterator<1>")); t4.moveNext$0();) documentIds.push(t4.__interceptors$_current.id); t1 = A.snackBarCompleter(context, t2.get$exportedData(), false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsRequest(t1, documentIds)); break; default: A.print("## ERROR: unhandled action " + A.S(action) + " in vendor_actions"); break; } }, ViewVendorList: function ViewVendorList() { }, ViewVendor: function ViewVendor(t0) { this.vendorId = t0; }, EditVendor: function EditVendor(t0, t1, t2) { this.vendor = t0; this.completer = t1; this.cancelCompleter = t2; }, UpdateVendor: function UpdateVendor(t0) { this.vendor = t0; }, LoadVendor: function LoadVendor(t0, t1) { this.completer = t0; this.vendorId = t1; }, LoadVendors: function LoadVendors() { }, LoadVendorRequest: function LoadVendorRequest() { }, LoadVendorFailure: function LoadVendorFailure(t0) { this.error = t0; }, LoadVendorSuccess: function LoadVendorSuccess(t0) { this.vendor = t0; }, LoadVendorsRequest: function LoadVendorsRequest() { }, LoadVendorsFailure: function LoadVendorsFailure(t0) { this.error = t0; }, LoadVendorsSuccess: function LoadVendorsSuccess(t0) { this.vendors = t0; }, SaveVendorRequest: function SaveVendorRequest(t0, t1) { this.completer = t0; this.vendor = t1; }, SaveVendorSuccess: function SaveVendorSuccess(t0) { this.vendor = t0; }, AddVendorSuccess: function AddVendorSuccess(t0) { this.vendor = t0; }, SaveVendorFailure: function SaveVendorFailure() { }, ArchiveVendorRequest: function ArchiveVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, ArchiveVendorSuccess: function ArchiveVendorSuccess(t0) { this.vendors = t0; }, ArchiveVendorFailure: function ArchiveVendorFailure() { }, DeleteVendorRequest: function DeleteVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, DeleteVendorSuccess: function DeleteVendorSuccess(t0) { this.vendors = t0; }, DeleteVendorFailure: function DeleteVendorFailure() { }, RestoreVendorRequest: function RestoreVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, RestoreVendorSuccess: function RestoreVendorSuccess(t0) { this.vendors = t0; }, RestoreVendorFailure: function RestoreVendorFailure() { }, EditVendorContact: function EditVendorContact(t0) { this.contact = t0; }, AddVendorContact: function AddVendorContact(t0) { this.contact = t0; }, UpdateVendorContact: function UpdateVendorContact(t0, t1) { this.index = t0; this.contact = t1; }, DeleteVendorContact: function DeleteVendorContact(t0) { this.index = t0; }, FilterVendors: function FilterVendors(t0) { this.filter = t0; }, SortVendors: function SortVendors(t0) { this.field = t0; }, FilterVendorsByState: function FilterVendorsByState(t0) { this.state = t0; }, FilterVendorsByCustom1: function FilterVendorsByCustom1(t0) { this.value = t0; }, FilterVendorsByCustom2: function FilterVendorsByCustom2(t0) { this.value = t0; }, FilterVendorsByCustom3: function FilterVendorsByCustom3(t0) { this.value = t0; }, FilterVendorsByCustom4: function FilterVendorsByCustom4(t0) { this.value = t0; }, handleVendorAction_closure: function handleVendorAction_closure() { }, StartVendorMultiselect: function StartVendorMultiselect() { }, AddToVendorMultiselect: function AddToVendorMultiselect(t0) { this.entity = t0; }, RemoveFromVendorMultiselect: function RemoveFromVendorMultiselect(t0) { this.entity = t0; }, ClearVendorMultiselect: function ClearVendorMultiselect() { }, SaveVendorDocumentRequest: function SaveVendorDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.vendor = t2; }, SaveVendorDocumentFailure: function SaveVendorDocumentFailure() { }, UpdateVendorTab: function UpdateVendorTab(t0) { this.tabIndex = t0; }, _editVendor() { return new A._editVendor_closure(); }, _viewVendor() { return new A._viewVendor_closure(); }, _viewVendorList() { return new A._viewVendorList_closure0(); }, _archiveVendor(repository) { return new A._archiveVendor_closure(repository); }, _deleteVendor(repository) { return new A._deleteVendor_closure(repository); }, _restoreVendor(repository) { return new A._restoreVendor_closure(repository); }, _saveVendor(repository) { return new A._saveVendor_closure(repository); }, _loadVendor(repository) { return new A._loadVendor_closure(repository); }, _loadVendors(repository) { return new A._loadVendors_closure(repository); }, _saveDocument3(repository) { return new A._saveDocument_closure8(repository); }, _editVendor_closure: function _editVendor_closure() { }, _viewVendor_closure: function _viewVendor_closure() { }, _viewVendorList_closure0: function _viewVendorList_closure0() { }, _viewVendorList__closure: function _viewVendorList__closure() { }, _archiveVendor_closure: function _archiveVendor_closure(t0) { this.repository = t0; }, _archiveVendor__closure: function _archiveVendor__closure(t0) { this.store = t0; }, _archiveVendor__closure0: function _archiveVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveVendor__closure1: function _archiveVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _deleteVendor_closure: function _deleteVendor_closure(t0) { this.repository = t0; }, _deleteVendor__closure: function _deleteVendor__closure(t0) { this.store = t0; }, _deleteVendor__closure0: function _deleteVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteVendor__closure1: function _deleteVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _restoreVendor_closure: function _restoreVendor_closure(t0) { this.repository = t0; }, _restoreVendor__closure: function _restoreVendor__closure(t0) { this.store = t0; }, _restoreVendor__closure0: function _restoreVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreVendor__closure1: function _restoreVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _saveVendor_closure: function _saveVendor_closure(t0) { this.repository = t0; }, _saveVendor__closure: function _saveVendor__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveVendor__closure0: function _saveVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadVendor_closure: function _loadVendor_closure(t0) { this.repository = t0; }, _loadVendor__closure: function _loadVendor__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadVendor__closure0: function _loadVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadVendors_closure: function _loadVendors_closure(t0) { this.repository = t0; }, _loadVendors__closure: function _loadVendors__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadVendors__closure0: function _loadVendors__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure8: function _saveDocument_closure8(t0) { this.repository = t0; }, _saveDocument__closure17: function _saveDocument__closure17(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure18: function _saveDocument__closure18(t0, t1) { this.store = t0; this.action = t1; }, vendorUIReducer(state, action) { var t1; state.toString; t1 = new A.VendorUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._vendor_state$_$v = state; new A.vendorUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, editVendorContact(contact, action) { var t1 = action.get$contact(); return t1 == null ? A.VendorContactEntity_VendorContactEntity() : t1; }, _clearEditing20(vendor, action) { return A.VendorEntity_VendorEntity(null, null, null); }, _updateEditing21(vendor, action) { return J.get$vendor$x(action); }, _addContact(vendor, action) { return vendor.rebuild$1(new A._addContact_closure(action)); }, _removeContact(vendor, action) { return vendor.rebuild$1(new A._removeContact_closure(action)); }, _updateContact(vendor, action) { return vendor.rebuild$1(new A._updateContact_closure(action)); }, _viewVendorList0(vendorListState, action) { return vendorListState.rebuild$1(new A._viewVendorList_closure()); }, _filterVendorsByCustom1(vendorListState, action) { var t1 = vendorListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return vendorListState.rebuild$1(new A._filterVendorsByCustom1_closure(action)); else return vendorListState.rebuild$1(new A._filterVendorsByCustom1_closure0(action)); }, _filterVendorsByCustom2(vendorListState, action) { var t1 = vendorListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return vendorListState.rebuild$1(new A._filterVendorsByCustom2_closure(action)); else return vendorListState.rebuild$1(new A._filterVendorsByCustom2_closure0(action)); }, _filterVendorsByCustom3(vendorListState, action) { var t1 = vendorListState.custom3Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return vendorListState.rebuild$1(new A._filterVendorsByCustom3_closure(action)); else return vendorListState.rebuild$1(new A._filterVendorsByCustom3_closure0(action)); }, _filterVendorsByCustom4(vendorListState, action) { var t1 = vendorListState.custom4Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return vendorListState.rebuild$1(new A._filterVendorsByCustom4_closure(action)); else return vendorListState.rebuild$1(new A._filterVendorsByCustom4_closure0(action)); }, _filterVendorsByState(vendorListState, action) { var t1 = vendorListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return vendorListState.rebuild$1(new A._filterVendorsByState_closure(action)); else return vendorListState.rebuild$1(new A._filterVendorsByState_closure0(action)); }, _filterVendors(vendorListState, action) { return vendorListState.rebuild$1(new A._filterVendors_closure(action, vendorListState)); }, _sortVendors(vendorListState, action) { return vendorListState.rebuild$1(new A._sortVendors_closure(action)); }, _startListMultiselect22(vendorListState, action) { return vendorListState.rebuild$1(new A._startListMultiselect_closure3()); }, _addToListMultiselect22(vendorListState, action) { return vendorListState.rebuild$1(new A._addToListMultiselect_closure3(action)); }, _removeFromListMultiselect22(vendorListState, action) { return vendorListState.rebuild$1(new A._removeFromListMultiselect_closure3(action)); }, _clearListMultiselect22(vendorListState, action) { return vendorListState.rebuild$1(new A._clearListMultiselect_closure3()); }, _archiveVendorSuccess(vendorState, action) { return vendorState.rebuild$1(new A._archiveVendorSuccess_closure(action)); }, _deleteVendorSuccess(vendorState, action) { return vendorState.rebuild$1(new A._deleteVendorSuccess_closure(action)); }, _restoreVendorSuccess(vendorState, action) { return vendorState.rebuild$1(new A._restoreVendorSuccess_closure(action)); }, _addVendor(vendorState, action) { return vendorState.rebuild$1(new A._addVendor_closure(action)); }, _updateVendor(vendorState, action) { return vendorState.rebuild$1(new A._updateVendor_closure(action)); }, _setLoadedVendor(vendorState, action) { return vendorState.rebuild$1(new A._setLoadedVendor_closure(action)); }, _setLoadedVendors(vendorState, action) { return vendorState.loadVendors$1(action.vendors); }, _setLoadedCompany21(vendorState, action) { return vendorState.loadVendors$1(action.userCompany.company.vendors); }, vendorUIReducer_closure: function vendorUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure31: function forceSelectedReducer_closure31() { }, forceSelectedReducer_closure32: function forceSelectedReducer_closure32() { }, forceSelectedReducer_closure33: function forceSelectedReducer_closure33() { }, forceSelectedReducer_closure34: function forceSelectedReducer_closure34() { }, forceSelectedReducer_closure35: function forceSelectedReducer_closure35() { }, forceSelectedReducer_closure36: function forceSelectedReducer_closure36() { }, forceSelectedReducer_closure37: function forceSelectedReducer_closure37() { }, forceSelectedReducer_closure38: function forceSelectedReducer_closure38() { }, tabIndexReducer_closure7: function tabIndexReducer_closure7() { }, tabIndexReducer_closure8: function tabIndexReducer_closure8() { }, saveCompleterReducer_closure0: function saveCompleterReducer_closure0() { }, cancelCompleterReducer_closure0: function cancelCompleterReducer_closure0() { }, selectedIdReducer_closure64: function selectedIdReducer_closure64() { }, selectedIdReducer_closure65: function selectedIdReducer_closure65() { }, selectedIdReducer_closure66: function selectedIdReducer_closure66() { }, selectedIdReducer_closure67: function selectedIdReducer_closure67() { }, selectedIdReducer_closure68: function selectedIdReducer_closure68() { }, selectedIdReducer_closure69: function selectedIdReducer_closure69() { }, selectedIdReducer_closure70: function selectedIdReducer_closure70() { }, selectedIdReducer_closure71: function selectedIdReducer_closure71() { }, selectedIdReducer_closure72: function selectedIdReducer_closure72() { }, selectedIdReducer_closure73: function selectedIdReducer_closure73() { }, selectedIdReducer_closure74: function selectedIdReducer_closure74() { }, selectedIdReducer_closure75: function selectedIdReducer_closure75() { }, selectedIdReducer_closure76: function selectedIdReducer_closure76() { }, selectedIdReducer_closure77: function selectedIdReducer_closure77() { }, selectedIdReducer_closure78: function selectedIdReducer_closure78() { }, editingReducer_closure24: function editingReducer_closure24() { }, editingReducer_closure25: function editingReducer_closure25() { }, editingReducer_closure26: function editingReducer_closure26() { }, editingReducer_closure27: function editingReducer_closure27() { }, editingReducer__closure9: function editingReducer__closure9() { }, _addContact_closure: function _addContact_closure(t0) { this.action = t0; }, _removeContact_closure: function _removeContact_closure(t0) { this.action = t0; }, _updateContact_closure: function _updateContact_closure(t0) { this.action = t0; }, _viewVendorList_closure: function _viewVendorList_closure() { }, _filterVendorsByCustom1_closure: function _filterVendorsByCustom1_closure(t0) { this.action = t0; }, _filterVendorsByCustom1_closure0: function _filterVendorsByCustom1_closure0(t0) { this.action = t0; }, _filterVendorsByCustom2_closure: function _filterVendorsByCustom2_closure(t0) { this.action = t0; }, _filterVendorsByCustom2_closure0: function _filterVendorsByCustom2_closure0(t0) { this.action = t0; }, _filterVendorsByCustom3_closure: function _filterVendorsByCustom3_closure(t0) { this.action = t0; }, _filterVendorsByCustom3_closure0: function _filterVendorsByCustom3_closure0(t0) { this.action = t0; }, _filterVendorsByCustom4_closure: function _filterVendorsByCustom4_closure(t0) { this.action = t0; }, _filterVendorsByCustom4_closure0: function _filterVendorsByCustom4_closure0(t0) { this.action = t0; }, _filterVendorsByState_closure: function _filterVendorsByState_closure(t0) { this.action = t0; }, _filterVendorsByState_closure0: function _filterVendorsByState_closure0(t0) { this.action = t0; }, _filterVendors_closure: function _filterVendors_closure(t0, t1) { this.action = t0; this.vendorListState = t1; }, _sortVendors_closure: function _sortVendors_closure(t0) { this.action = t0; }, _startListMultiselect_closure3: function _startListMultiselect_closure3() { }, _addToListMultiselect_closure3: function _addToListMultiselect_closure3(t0) { this.action = t0; }, _removeFromListMultiselect_closure3: function _removeFromListMultiselect_closure3(t0) { this.action = t0; }, _clearListMultiselect_closure3: function _clearListMultiselect_closure3() { }, _archiveVendorSuccess_closure: function _archiveVendorSuccess_closure(t0) { this.action = t0; }, _deleteVendorSuccess_closure: function _deleteVendorSuccess_closure(t0) { this.action = t0; }, _restoreVendorSuccess_closure: function _restoreVendorSuccess_closure(t0) { this.action = t0; }, _addVendor_closure: function _addVendor_closure(t0) { this.action = t0; }, _updateVendor_closure: function _updateVendor_closure(t0) { this.action = t0; }, _setLoadedVendor_closure: function _setLoadedVendor_closure(t0) { this.action = t0; }, dropdownVendorsSelector(vendorMap, vendorList, userMap, staticState) { var t1 = vendorList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.dropdownVendorsSelector_closure(vendorMap), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.dropdownVendorsSelector_closure0(vendorMap, userMap, staticState)); return list; }, filteredVendorsSelector(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState) { var t1 = vendorList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredVendorsSelector_closure(vendorMap, selectionState, vendorListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredVendorsSelector_closure0(vendorMap, vendorListState, userMap, staticState)); return list; }, vendorStatsForUser(userId, vendorMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; vendorMap._map$_map.forEach$1(0, new A.vendorStatsForUser_closure(t1, userId)); return new A.EntityStats(t1.countActive, t1.countArchived); }, calculateVendorBalance(vendorId, currencyId, expenseMap, expenseList) { var t1 = {}; t1.total = 0; B.JSArray_methods.forEach$1(expenseList._list, new A.calculateVendorBalance_closure(t1, expenseMap, vendorId, currencyId)); return t1.total; }, memoizedDropdownVendorList_closure: function memoizedDropdownVendorList_closure() { }, dropdownVendorsSelector_closure: function dropdownVendorsSelector_closure(t0) { this.vendorMap = t0; }, dropdownVendorsSelector_closure0: function dropdownVendorsSelector_closure0(t0, t1, t2) { this.vendorMap = t0; this.userMap = t1; this.staticState = t2; }, memoizedFilteredVendorList_closure: function memoizedFilteredVendorList_closure() { }, filteredVendorsSelector_closure: function filteredVendorsSelector_closure(t0, t1, t2) { this.vendorMap = t0; this.selectionState = t1; this.vendorListState = t2; }, filteredVendorsSelector_closure0: function filteredVendorsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.vendorMap = t0; _.vendorListState = t1; _.userMap = t2; _.staticState = t3; }, memoizedVendorStatsForUser_closure: function memoizedVendorStatsForUser_closure() { }, vendorStatsForUser_closure: function vendorStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedCalculateVendorBalance_closure: function memoizedCalculateVendorBalance_closure() { }, calculateVendorBalance_closure: function calculateVendorBalance_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.expenseMap = t1; _.vendorId = t2; _.currencyId = t3; }, _$VendorState$_(list, map) { var _s11_ = "VendorState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "list")); return new A._$VendorState(map, list); }, _$VendorUIState$_(cancelCompleter, editing, editingContact, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("VendorUIState", "listUIState")); return new A._$VendorUIState(editing, editingContact, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, VendorState: function VendorState() { }, VendorState_loadVendors_closure0: function VendorState_loadVendors_closure0() { }, VendorState_loadVendors_closure1: function VendorState_loadVendors_closure1() { }, VendorState_loadVendors_closure: function VendorState_loadVendors_closure(t0, t1) { this.$this = t0; this.map = t1; }, VendorUIState: function VendorUIState() { }, _$VendorStateSerializer: function _$VendorStateSerializer() { }, _$VendorUIStateSerializer: function _$VendorUIStateSerializer() { }, _$VendorState: function _$VendorState(t0, t1) { this.map = t0; this.list = t1; this._vendor_state$__hashCode = null; }, VendorStateBuilder: function VendorStateBuilder() { this._vendor_state$_list = this._vendor_state$_map = this._vendor_state$_$v = null; }, _$VendorUIState: function _$VendorUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editing = t0; _.editingContact = t1; _.listUIState = t2; _.selectedId = t3; _.forceSelected = t4; _.tabIndex = t5; _.saveCompleter = t6; _.cancelCompleter = t7; _._vendor_state$__hashCode = null; }, VendorUIStateBuilder: function VendorUIStateBuilder() { var _ = this; _._vendor_state$_cancelCompleter = _._vendor_state$_saveCompleter = _._vendor_state$_tabIndex = _._vendor_state$_forceSelected = _._vendor_state$_selectedId = _._vendor_state$_listUIState = _._editingContact = _._vendor_state$_editing = _._vendor_state$_$v = null; }, _VendorUIState_Object_EntityUIState: function _VendorUIState_Object_EntityUIState() { }, handleWebhookAction(context, webhooks, action) { var store, t2, webhook, webhookIds, message, t3, t4, _s6_ = ":value", _s12_ = "_dispatchers", t1 = J.getInterceptor$asx(webhooks); if (t1.get$isEmpty(webhooks)) return; store = A.StoreProvider_of(context, type$.legacy_AppState); t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); webhook = type$.legacy_WebhookEntity._as(t1.get$first(webhooks)); webhookIds = t1.map$1$1(webhooks, new A.handleWebhookAction_closure(), type$.legacy_String).toList$0(0); switch (action) { case B.EntityAction_copy: A.Clipboard_setData(new A.ClipboardData(webhook.targetUrl)); A.showToast(B.JSString_methods.replaceFirst$2(t2.get$copiedToClipboard(), ":value ", "")); break; case B.EntityAction_edit: A.editEntity(null, webhook, true, null); break; case B.EntityAction_restore: if (webhookIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_webhooks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(webhookIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "restored_webhook"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.RestoreWebhooksRequest(t1, webhookIds)); break; case B.EntityAction_archive: if (webhookIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_webhooks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(webhookIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "archived_webhook"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.ArchiveWebhooksRequest(t1, webhookIds)); break; case B.EntityAction_delete: if (webhookIds.length > 1) { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_webhooks"); if (t1 == null) t1 = ""; message = B.JSString_methods.replaceFirst$2(t1, _s6_, B.JSInt_methods.toString$0(webhookIds.length)); } else { t2.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "deleted_webhook"); message = t1 == null ? "" : t1; } t1 = A.snackBarCompleter(context, message, false, type$.Null); store.get$_dispatchers()[0].call$1(new A.DeleteWebhooksRequest(t1, webhookIds)); break; case B.EntityAction_toggleMultiselect: if (A._lateReadCheck(store.__Store__state, "_state").uiState.webhookUIState.listUIState.selectedIds == null) store.get$_dispatchers()[0].call$1(new A.StartWebhookMultiselect()); if (t1.get$isEmpty(webhooks)) break; for (t1 = t1.get$iterator(webhooks); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = A._lateReadCheck(store.__Store__state, "_state").uiState.webhookUIState.listUIState; t4 = t2.get$id(t2); t3 = t3.selectedIds; t3 = t3 != null && B.JSArray_methods.contains$1(t3._list, t4); t4 = store.__Store__dispatchers; if (!t3) J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.AddToWebhookMultiselect(t2)); else J.$index$asx(A._lateReadCheck(t4, _s12_), 0).call$1(new A.RemoveFromWebhookMultiselect(t2)); } break; case B.EntityAction_more: A.showEntityActionsDialog(null, A._setArrayType([webhook], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewWebhookList: function ViewWebhookList() { }, ViewWebhook: function ViewWebhook(t0) { this.webhookId = t0; }, EditWebhook: function EditWebhook(t0) { this.webhook = t0; }, UpdateWebhook: function UpdateWebhook(t0) { this.webhook = t0; }, LoadWebhookRequest: function LoadWebhookRequest() { }, LoadWebhookFailure: function LoadWebhookFailure(t0) { this.error = t0; }, LoadWebhookSuccess: function LoadWebhookSuccess(t0) { this.webhook = t0; }, LoadWebhooksRequest: function LoadWebhooksRequest() { }, LoadWebhooksFailure: function LoadWebhooksFailure(t0) { this.error = t0; }, LoadWebhooksSuccess: function LoadWebhooksSuccess(t0) { this.webhooks = t0; }, SaveWebhookRequest: function SaveWebhookRequest(t0, t1) { this.completer = t0; this.webhook = t1; }, SaveWebhookSuccess: function SaveWebhookSuccess(t0) { this.webhook = t0; }, AddWebhookSuccess: function AddWebhookSuccess(t0) { this.webhook = t0; }, SaveWebhookFailure: function SaveWebhookFailure() { }, ArchiveWebhooksRequest: function ArchiveWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, ArchiveWebhooksSuccess: function ArchiveWebhooksSuccess(t0) { this.webhooks = t0; }, ArchiveWebhooksFailure: function ArchiveWebhooksFailure() { }, DeleteWebhooksRequest: function DeleteWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, DeleteWebhooksSuccess: function DeleteWebhooksSuccess(t0) { this.webhooks = t0; }, DeleteWebhooksFailure: function DeleteWebhooksFailure() { }, RestoreWebhooksRequest: function RestoreWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, RestoreWebhooksSuccess: function RestoreWebhooksSuccess(t0) { this.webhooks = t0; }, RestoreWebhooksFailure: function RestoreWebhooksFailure() { }, FilterWebhooks: function FilterWebhooks(t0) { this.filter = t0; }, SortWebhooks: function SortWebhooks(t0) { this.field = t0; }, FilterWebhooksByState: function FilterWebhooksByState(t0) { this.state = t0; }, FilterWebhooksByCustom1: function FilterWebhooksByCustom1(t0) { this.value = t0; }, FilterWebhooksByCustom2: function FilterWebhooksByCustom2(t0) { this.value = t0; }, FilterWebhooksByCustom3: function FilterWebhooksByCustom3(t0) { this.value = t0; }, FilterWebhooksByCustom4: function FilterWebhooksByCustom4(t0) { this.value = t0; }, handleWebhookAction_closure: function handleWebhookAction_closure() { }, StartWebhookMultiselect: function StartWebhookMultiselect() { }, AddToWebhookMultiselect: function AddToWebhookMultiselect(t0) { this.entity = t0; }, RemoveFromWebhookMultiselect: function RemoveFromWebhookMultiselect(t0) { this.entity = t0; }, ClearWebhookMultiselect: function ClearWebhookMultiselect() { }, _editWebhook() { return new A._editWebhook_closure(); }, _viewWebhook() { return new A._viewWebhook_closure(); }, _viewWebhookList() { return new A._viewWebhookList_closure0(); }, _archiveWebhook(repository) { return new A._archiveWebhook_closure(repository); }, _deleteWebhook(repository) { return new A._deleteWebhook_closure(repository); }, _restoreWebhook(repository) { return new A._restoreWebhook_closure(repository); }, _saveWebhook(repository) { return new A._saveWebhook_closure(repository); }, _loadWebhook(repository) { return new A._loadWebhook_closure(repository); }, _loadWebhooks(repository) { return new A._loadWebhooks_closure(repository); }, _editWebhook_closure: function _editWebhook_closure() { }, _viewWebhook_closure: function _viewWebhook_closure() { }, _viewWebhookList_closure0: function _viewWebhookList_closure0() { }, _viewWebhookList__closure: function _viewWebhookList__closure() { }, _archiveWebhook_closure: function _archiveWebhook_closure(t0) { this.repository = t0; }, _archiveWebhook__closure: function _archiveWebhook__closure(t0) { this.store = t0; }, _archiveWebhook__closure0: function _archiveWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveWebhook__closure1: function _archiveWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _deleteWebhook_closure: function _deleteWebhook_closure(t0) { this.repository = t0; }, _deleteWebhook__closure: function _deleteWebhook__closure(t0) { this.store = t0; }, _deleteWebhook__closure0: function _deleteWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteWebhook__closure1: function _deleteWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _restoreWebhook_closure: function _restoreWebhook_closure(t0) { this.repository = t0; }, _restoreWebhook__closure: function _restoreWebhook__closure(t0) { this.store = t0; }, _restoreWebhook__closure0: function _restoreWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreWebhook__closure1: function _restoreWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _saveWebhook_closure: function _saveWebhook_closure(t0) { this.repository = t0; }, _saveWebhook__closure: function _saveWebhook__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveWebhook__closure0: function _saveWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhook_closure: function _loadWebhook_closure(t0) { this.repository = t0; }, _loadWebhook__closure: function _loadWebhook__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhook__closure0: function _loadWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhooks_closure: function _loadWebhooks_closure(t0) { this.repository = t0; }, _loadWebhooks__closure: function _loadWebhooks__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhooks__closure0: function _loadWebhooks__closure0(t0, t1) { this.store = t0; this.action = t1; }, webhookUIReducer(state, action) { var t1; state.toString; t1 = new A.WebhookUIStateBuilder(); A.ArgumentError_checkNotNull(state, "other"); t1._webhook_state$_$v = state; new A.webhookUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing21(webhook, action) { return A.WebhookEntity_WebhookEntity(null, null); }, _updateEditing22(webhook, action) { return action.get$webhook(); }, _viewWebhookList0(webhookListState, action) { return webhookListState.rebuild$1(new A._viewWebhookList_closure()); }, _filterWebhooksByCustom1(webhookListState, action) { var t1 = webhookListState.custom1Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return webhookListState.rebuild$1(new A._filterWebhooksByCustom1_closure(action)); else return webhookListState.rebuild$1(new A._filterWebhooksByCustom1_closure0(action)); }, _filterWebhooksByCustom2(webhookListState, action) { var t1 = webhookListState.custom2Filters, t2 = action.value; if (B.JSArray_methods.contains$1(t1._list, t2)) return webhookListState.rebuild$1(new A._filterWebhooksByCustom2_closure(action)); else return webhookListState.rebuild$1(new A._filterWebhooksByCustom2_closure0(action)); }, _filterWebhooksByState(webhookListState, action) { var t1 = webhookListState.stateFilters, t2 = action.state; if (B.JSArray_methods.contains$1(t1._list, t2)) return webhookListState.rebuild$1(new A._filterWebhooksByState_closure(action)); else return webhookListState.rebuild$1(new A._filterWebhooksByState_closure0(action)); }, _filterWebhooks(webhookListState, action) { return webhookListState.rebuild$1(new A._filterWebhooks_closure(action, webhookListState)); }, _sortWebhooks(webhookListState, action) { return webhookListState.rebuild$1(new A._sortWebhooks_closure(action)); }, _startListMultiselect23(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure14()); }, _addToListMultiselect23(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure14(action)); }, _removeFromListMultiselect23(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure14(action)); }, _clearListMultiselect23(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure14()); }, _archiveWebhookSuccess(webhookState, action) { return webhookState.rebuild$1(new A._archiveWebhookSuccess_closure(action)); }, _deleteWebhookSuccess(webhookState, action) { return webhookState.rebuild$1(new A._deleteWebhookSuccess_closure(action)); }, _restoreWebhookSuccess(webhookState, action) { return webhookState.rebuild$1(new A._restoreWebhookSuccess_closure(action)); }, _addWebhook(webhookState, action) { return webhookState.rebuild$1(new A._addWebhook_closure(action)); }, _updateWebhook(webhookState, action) { return webhookState.rebuild$1(new A._updateWebhook_closure(action)); }, _setLoadedWebhook(webhookState, action) { return webhookState.rebuild$1(new A._setLoadedWebhook_closure(action)); }, _setLoadedWebhooks(webhookState, action) { return webhookState.loadWebhooks$1(action.webhooks); }, _setLoadedCompany22(webhookState, action) { return webhookState.loadWebhooks$1(action.userCompany.company.webhooks); }, webhookUIReducer_closure: function webhookUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure111: function forceSelectedReducer_closure111() { }, forceSelectedReducer_closure112: function forceSelectedReducer_closure112() { }, forceSelectedReducer_closure113: function forceSelectedReducer_closure113() { }, forceSelectedReducer_closure114: function forceSelectedReducer_closure114() { }, forceSelectedReducer_closure115: function forceSelectedReducer_closure115() { }, forceSelectedReducer_closure116: function forceSelectedReducer_closure116() { }, forceSelectedReducer_closure117: function forceSelectedReducer_closure117() { }, forceSelectedReducer_closure118: function forceSelectedReducer_closure118() { }, selectedIdReducer_closure222: function selectedIdReducer_closure222() { }, selectedIdReducer_closure223: function selectedIdReducer_closure223() { }, selectedIdReducer_closure224: function selectedIdReducer_closure224() { }, selectedIdReducer_closure225: function selectedIdReducer_closure225() { }, selectedIdReducer_closure226: function selectedIdReducer_closure226() { }, selectedIdReducer_closure227: function selectedIdReducer_closure227() { }, selectedIdReducer_closure228: function selectedIdReducer_closure228() { }, selectedIdReducer_closure229: function selectedIdReducer_closure229() { }, selectedIdReducer_closure230: function selectedIdReducer_closure230() { }, selectedIdReducer_closure231: function selectedIdReducer_closure231() { }, selectedIdReducer_closure232: function selectedIdReducer_closure232() { }, selectedIdReducer_closure233: function selectedIdReducer_closure233() { }, selectedIdReducer_closure234: function selectedIdReducer_closure234() { }, selectedIdReducer_closure235: function selectedIdReducer_closure235() { }, selectedIdReducer_closure236: function selectedIdReducer_closure236() { }, editingReducer_closure72: function editingReducer_closure72() { }, editingReducer_closure73: function editingReducer_closure73() { }, editingReducer_closure74: function editingReducer_closure74() { }, editingReducer_closure75: function editingReducer_closure75() { }, editingReducer__closure26: function editingReducer__closure26() { }, _viewWebhookList_closure: function _viewWebhookList_closure() { }, _filterWebhooksByCustom1_closure: function _filterWebhooksByCustom1_closure(t0) { this.action = t0; }, _filterWebhooksByCustom1_closure0: function _filterWebhooksByCustom1_closure0(t0) { this.action = t0; }, _filterWebhooksByCustom2_closure: function _filterWebhooksByCustom2_closure(t0) { this.action = t0; }, _filterWebhooksByCustom2_closure0: function _filterWebhooksByCustom2_closure0(t0) { this.action = t0; }, _filterWebhooksByState_closure: function _filterWebhooksByState_closure(t0) { this.action = t0; }, _filterWebhooksByState_closure0: function _filterWebhooksByState_closure0(t0) { this.action = t0; }, _filterWebhooks_closure: function _filterWebhooks_closure(t0, t1) { this.action = t0; this.webhookListState = t1; }, _sortWebhooks_closure: function _sortWebhooks_closure(t0) { this.action = t0; }, _startListMultiselect_closure14: function _startListMultiselect_closure14() { }, _addToListMultiselect_closure14: function _addToListMultiselect_closure14(t0) { this.action = t0; }, _removeFromListMultiselect_closure14: function _removeFromListMultiselect_closure14(t0) { this.action = t0; }, _clearListMultiselect_closure14: function _clearListMultiselect_closure14() { }, _archiveWebhookSuccess_closure: function _archiveWebhookSuccess_closure(t0) { this.action = t0; }, _deleteWebhookSuccess_closure: function _deleteWebhookSuccess_closure(t0) { this.action = t0; }, _restoreWebhookSuccess_closure: function _restoreWebhookSuccess_closure(t0) { this.action = t0; }, _addWebhook_closure: function _addWebhook_closure(t0) { this.action = t0; }, _updateWebhook_closure: function _updateWebhook_closure(t0) { this.action = t0; }, _setLoadedWebhook_closure: function _setLoadedWebhook_closure(t0) { this.action = t0; }, filteredWebhooksSelector(selectionState, webhookMap, webhookList, webhookListState) { var t1 = webhookList._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.filteredWebhooksSelector_closure(webhookMap, selectionState, webhookListState), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(list, new A.filteredWebhooksSelector_closure0(webhookMap, webhookListState)); return list; }, memoizedFilteredWebhookList_closure: function memoizedFilteredWebhookList_closure() { }, filteredWebhooksSelector_closure: function filteredWebhooksSelector_closure(t0, t1, t2) { this.webhookMap = t0; this.selectionState = t1; this.webhookListState = t2; }, filteredWebhooksSelector_closure0: function filteredWebhooksSelector_closure0(t0, t1) { this.webhookMap = t0; this.webhookListState = t1; }, _$WebhookState$_(list, map) { var _s12_ = "WebhookState"; if (map == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "list")); return new A._$WebhookState(map, list); }, _$WebhookUIState$_(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) A.throwExpression(A.BuiltValueNullFieldError$("WebhookUIState", "listUIState")); return new A._$WebhookUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, WebhookState: function WebhookState() { }, WebhookState_loadWebhooks_closure0: function WebhookState_loadWebhooks_closure0() { }, WebhookState_loadWebhooks_closure1: function WebhookState_loadWebhooks_closure1() { }, WebhookState_loadWebhooks_closure: function WebhookState_loadWebhooks_closure(t0, t1) { this.$this = t0; this.map = t1; }, WebhookUIState: function WebhookUIState() { }, _$WebhookStateSerializer: function _$WebhookStateSerializer() { }, _$WebhookUIStateSerializer: function _$WebhookUIStateSerializer() { }, _$WebhookState: function _$WebhookState(t0, t1) { this.map = t0; this.list = t1; this._webhook_state$__hashCode = null; }, WebhookStateBuilder: function WebhookStateBuilder() { this._webhook_state$_list = this._webhook_state$_map = this._webhook_state$_$v = null; }, _$WebhookUIState: function _$WebhookUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._webhook_state$__hashCode = null; }, WebhookUIStateBuilder: function WebhookUIStateBuilder() { var _ = this; _._webhook_state$_cancelCompleter = _._webhook_state$_saveCompleter = _._webhook_state$_tabIndex = _._webhook_state$_forceSelected = _._webhook_state$_selectedId = _._webhook_state$_listUIState = _._webhook_state$_editing = _._webhook_state$_$v = null; }, _WebhookUIState_Object_EntityUIState: function _WebhookUIState_Object_EntityUIState() { }, FieldGrid: function FieldGrid(t0, t1) { this.fields = t0; this.key = t1; }, FieldGrid_build_closure: function FieldGrid_build_closure(t0, t1, t2) { this.fieldWidgets = t0; this.localization = t1; this.textColor = t2; }, FieldGrid_build_closure0: function FieldGrid_build_closure0(t0) { this.fieldWidgets = t0; }, ActionMenuButton$(entity, entityActions, iconData, iconSize, isSaving, onSelected) { return new A.ActionMenuButton(entityActions, onSelected, isSaving, iconData, iconSize, null); }, ActionMenuButton: function ActionMenuButton(t0, t1, t2, t3, t4, t5) { var _ = this; _.entityActions = t0; _.onSelected = t1; _.isSaving = t2; _.iconData = t3; _.iconSize = t4; _.key = t5; }, ActionMenuButton_build_closure: function ActionMenuButton_build_closure(t0, t1) { this.actions = t0; this.context = t1; }, ActionMenuButton_build_closure0: function ActionMenuButton_build_closure0(t0) { this.actions = t0; }, ActionMenuButton_build_closure1: function ActionMenuButton_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, ViewActionMenuButton: function ViewActionMenuButton(t0, t1, t2, t3, t4) { var _ = this; _.entity = t0; _.entityActions = t1; _.onSelected = t2; _.isSaving = t3; _.key = t4; }, AppBorder: function AppBorder(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.isTop = t1; _.isBottom = t2; _.isLeft = t3; _.hideBorder = t4; _.key = t5; }, AppBottomBar$(customValues1, customValues2, customValues3, customValues4, defaultTableColumns, entityType, hideListOptions, iconButtons, onCheckboxPressed, onSelectedCustom1, onSelectedCustom2, onSelectedCustom3, onSelectedCustom4, onSelectedSortField, onSelectedState, onSelectedStatus, sortFields, statuses, tableColumns) { return new A.AppBottomBar(entityType, sortFields, statuses, onCheckboxPressed, onSelectedSortField, onSelectedState, onSelectedStatus, onSelectedCustom1, onSelectedCustom2, onSelectedCustom3, onSelectedCustom4, customValues1, customValues2, customValues3, customValues4, tableColumns, defaultTableColumns, hideListOptions, iconButtons, null); }, AppBottomBar: function AppBottomBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.entityType = t0; _.sortFields = t1; _.statuses = t2; _.onCheckboxPressed = t3; _.onSelectedSortField = t4; _.onSelectedState = t5; _.onSelectedStatus = t6; _.onSelectedCustom1 = t7; _.onSelectedCustom2 = t8; _.onSelectedCustom3 = t9; _.onSelectedCustom4 = t10; _.customValues1 = t11; _.customValues2 = t12; _.customValues3 = t13; _.customValues4 = t14; _.tableColumns = t15; _.defaultTableColumns = t16; _.hideListOptions = t17; _.iconButtons = t18; _.key = t19; }, _AppBottomBarState: function _AppBottomBarState(t0) { var _ = this; _._widget = _._filterCustom4Controller = _._filterCustom3Controller = _._filterCustom2Controller = _._filterCustom1Controller = _._filterStatusController = _._filterStateController = _._sortController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AppBottomBarState_build_closure0: function _AppBottomBarState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure14: function _AppBottomBarState_build__closure14(t0) { this.$this = t0; }, _AppBottomBarState_build___closure8: function _AppBottomBarState_build___closure8(t0) { this.$this = t0; }, _AppBottomBarState_build___closure7: function _AppBottomBarState_build___closure7(t0) { this.$this = t0; }, _AppBottomBarState_build____closure1: function _AppBottomBarState_build____closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.stateFilters = t2; }, _AppBottomBarState_build_____closure2: function _AppBottomBarState_build_____closure2(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build__closure15: function _AppBottomBarState_build__closure15(t0) { this.$this = t0; }, _AppBottomBarState_build_closure1: function _AppBottomBarState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure12: function _AppBottomBarState_build__closure12(t0) { this.$this = t0; }, _AppBottomBarState_build___closure6: function _AppBottomBarState_build___closure6(t0) { this.$this = t0; }, _AppBottomBarState_build___closure5: function _AppBottomBarState_build___closure5(t0) { this.$this = t0; }, _AppBottomBarState_build____closure0: function _AppBottomBarState_build____closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.statusFilters = t2; }, _AppBottomBarState_build_____closure1: function _AppBottomBarState_build_____closure1(t0, t1) { this.$this = t0; this.status = t1; }, _AppBottomBarState_build__closure13: function _AppBottomBarState_build__closure13(t0) { this.$this = t0; }, _AppBottomBarState_build_closure6: function _AppBottomBarState_build_closure6(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure2: function _AppBottomBarState_build__closure2(t0) { this.$this = t0; }, _AppBottomBarState_build___closure0: function _AppBottomBarState_build___closure0(t0) { this.$this = t0; }, _AppBottomBarState_build___closure: function _AppBottomBarState_build___closure(t0) { this.$this = t0; }, _AppBottomBarState_build____closure: function _AppBottomBarState_build____closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.listUIState = t2; }, _AppBottomBarState_build_____closure0: function _AppBottomBarState_build_____closure0(t0, t1) { this.$this = t0; this.sortField = t1; }, _AppBottomBarState_build_____closure: function _AppBottomBarState_build_____closure(t0, t1, t2) { this.$this = t0; this.listUIState = t1; this.field = t2; }, _AppBottomBarState_build__closure3: function _AppBottomBarState_build__closure3(t0) { this.$this = t0; }, _AppBottomBarState_build_closure2: function _AppBottomBarState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure10: function _AppBottomBarState_build__closure10(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure4: function _AppBottomBarState_build___closure4(t0) { this.$this = t0; }, _AppBottomBarState_build__closure11: function _AppBottomBarState_build__closure11(t0) { this.$this = t0; }, _AppBottomBarState_build_closure3: function _AppBottomBarState_build_closure3(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure8: function _AppBottomBarState_build__closure8(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure3: function _AppBottomBarState_build___closure3(t0) { this.$this = t0; }, _AppBottomBarState_build__closure9: function _AppBottomBarState_build__closure9(t0) { this.$this = t0; }, _AppBottomBarState_build_closure4: function _AppBottomBarState_build_closure4(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure6: function _AppBottomBarState_build__closure6(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure2: function _AppBottomBarState_build___closure2(t0) { this.$this = t0; }, _AppBottomBarState_build__closure7: function _AppBottomBarState_build__closure7(t0) { this.$this = t0; }, _AppBottomBarState_build_closure5: function _AppBottomBarState_build_closure5(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure4: function _AppBottomBarState_build__closure4(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure1: function _AppBottomBarState_build___closure1(t0) { this.$this = t0; }, _AppBottomBarState_build__closure5: function _AppBottomBarState_build__closure5(t0) { this.$this = t0; }, _AppBottomBarState_build_closure: function _AppBottomBarState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.$this = t0; _.state = t1; _.prefState = t2; _._showFilterStateSheet = t3; _._showFilterStatusSheet = t4; _._showFilterCustom1Sheet = t5; _._showFilterCustom2Sheet = t6; _._showFilterCustom3Sheet = t7; _._showFilterCustom4Sheet = t8; _._showSortSheet = t9; }, _AppBottomBarState_build_closure__onColumnsPressed: function _AppBottomBarState_build_closure__onColumnsPressed(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.store = t2; _.state = t3; }, _AppBottomBarState_build___onColumnsPressed_closure: function _AppBottomBarState_build___onColumnsPressed_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.store = t1; _.state = t2; _.context = t3; }, _AppBottomBarState_build___onColumnsPressed__closure: function _AppBottomBarState_build___onColumnsPressed__closure(t0, t1) { this.$this = t0; this.selected = t1; }, _AppBottomBarState_build___onColumnsPressed__closure0: function _AppBottomBarState_build___onColumnsPressed__closure0(t0) { this.settings = t0; }, _AppBottomBarState_build___onColumnsPressed__closure1: function _AppBottomBarState_build___onColumnsPressed__closure1(t0) { this.userCompany = t0; }, _AppBottomBarState_build__closure: function _AppBottomBarState_build__closure(t0) { this.$this = t0; }, _AppBottomBarState_build__closure0: function _AppBottomBarState_build__closure0(t0) { this.store = t0; }, _AppBottomBarState_build__closure1: function _AppBottomBarState_build__closure1(t0) { this.store = t0; }, CustomFieldSelector: function CustomFieldSelector(t0, t1, t2, t3, t4) { var _ = this; _.customNumber = t0; _.entityType = t1; _.customValues = t2; _.onSelected = t3; _.key = t4; }, CustomFieldSelector_build_closure0: function CustomFieldSelector_build_closure0(t0) { this.$this = t0; }, CustomFieldSelector_build_closure: function CustomFieldSelector_build_closure(t0) { this.$this = t0; }, CustomFieldSelector_build__closure: function CustomFieldSelector_build__closure(t0, t1, t2) { this.$this = t0; this.customFilters = t1; this.context = t2; }, CustomFieldSelector_build___closure: function CustomFieldSelector_build___closure(t0, t1) { this.$this = t0; this.customField = t1; }, AppBuilder: function AppBuilder(t0, t1) { this.builder = t0; this.key = t1; }, AppBuilderState: function AppBuilderState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, AppBuilderState_rebuild_closure: function AppBuilderState_rebuild_closure() { }, AppHeader: function AppHeader(t0, t1, t2, t3, t4) { var _ = this; _.label = t0; _.value = t1; _.secondLabel = t2; _.secondValue = t3; _.key = t4; }, AppHeader_build__value1: function AppHeader_build__value1(t0, t1) { this.$this = t0; this.textColor = t1; }, AppHeader_build__value2: function AppHeader_build__value2(t0, t1) { this.$this = t0; this.textColor = t1; }, AppTitleBar: function AppTitleBar(t0) { this.key = t0; }, AppWebView: function AppWebView(t0, t1) { this.html = t0; this.key = t1; }, _WebWebView: function _WebWebView(t0, t1) { this.html = t0; this.key = t1; }, BlankScreen: function BlankScreen(t0, t1) { this.message = t0; this.key = t1; }, AppTextButton: function AppTextButton(t0, t1, t2, t3, t4) { var _ = this; _.label = t0; _.onPressed = t1; _.isInHeader = t2; _.color = t3; _.key = t4; }, BottomButtons: function BottomButtons(t0, t1, t2, t3, t4, t5) { var _ = this; _.entity = t0; _.action1 = t1; _.action2 = t2; _.action1Enabled = t3; _.action2Enabled = t4; _.key = t5; }, BottomButtons_build_closure: function BottomButtons_build_closure(t0) { this.$this = t0; }, BottomButtons_build_closure0: function BottomButtons_build_closure0(t0) { this.$this = t0; }, AppButton: function AppButton(t0, t1, t2, t3, t4, t5) { var _ = this; _.color = t0; _.iconData = t1; _.label = t2; _.onPressed = t3; _.width = t4; _.key = t5; }, ChangeLayoutBanner: function ChangeLayoutBanner(t0, t1, t2, t3) { var _ = this; _.child = t0; _.appLayout = t1; _.suggestedLayout = t2; _.key = t3; }, _ChangeLayoutBannerState: function _ChangeLayoutBannerState(t0) { var _ = this; _._dismissedChange = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ChangeLayoutBannerState_build_closure: function _ChangeLayoutBannerState_build_closure(t0) { this.$this = t0; }, _ChangeLayoutBannerState_build__closure0: function _ChangeLayoutBannerState_build__closure0(t0) { this.$this = t0; }, _ChangeLayoutBannerState_build_closure0: function _ChangeLayoutBannerState_build_closure0(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, _ChangeLayoutBannerState_build__closure: function _ChangeLayoutBannerState_build__closure(t0, t1) { this.layout = t0; this.store = t1; }, ConfirmEmail: function ConfirmEmail(t0, t1) { this.viewModel = t0; this.key = t1; }, ConfirmEmail_build_closure: function ConfirmEmail_build_closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, ConfirmEmail_build__closure: function ConfirmEmail_build__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, ConfirmEmail_build___closure: function ConfirmEmail_build___closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.password = t2; _.idToken = t3; }, ConfirmEmailVM_fromStore(store) { return new A.ConfirmEmailVM(A._lateReadCheck(store.__Store__state, "_state"), new A.ConfirmEmailVM_fromStore_closure(store), new A.ConfirmEmailVM_fromStore_closure0(store), new A.ConfirmEmailVM_fromStore_closure1(store), new A.ConfirmEmailVM_fromStore_closure2(store)); }, ConfirmEmailBuilder: function ConfirmEmailBuilder(t0) { this.key = t0; }, ConfirmEmailBuilder_build_closure: function ConfirmEmailBuilder_build_closure() { }, ConfirmEmailVM: function ConfirmEmailVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.onResendPressed = t1; _.onRefreshPressed = t2; _.onLogoutPressed = t3; _.onChangeEmail = t4; }, ConfirmEmailVM_fromStore_closure0: function ConfirmEmailVM_fromStore_closure0(t0) { this.store = t0; }, ConfirmEmailVM_fromStore_closure1: function ConfirmEmailVM_fromStore_closure1(t0) { this.store = t0; }, ConfirmEmailVM_fromStore_closure: function ConfirmEmailVM_fromStore_closure(t0) { this.store = t0; }, ConfirmEmailVM_fromStore_closure2: function ConfirmEmailVM_fromStore_closure2(t0) { this.store = t0; }, ConfirmEmailVM_fromStore__closure: function ConfirmEmailVM_fromStore__closure(t0) { this.email = t0; }, CopyToClipboard: function CopyToClipboard(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.value = t1; _.showBorder = t2; _.onLongPress = t3; _.prefix = t4; _.key = t5; }, CopyToClipboard_build_closure: function CopyToClipboard_build_closure(t0, t1) { this.$this = t0; this.localization = t1; }, DesktopSessionTimeout: function DesktopSessionTimeout(t0, t1) { this.child = t0; this.key = t1; }, _DesktopSessionTimeoutState: function _DesktopSessionTimeoutState(t0) { var _ = this; _._desktop_session_timeout$_timer = null; _._isWarned = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DesktopSessionTimeoutState_initState_closure: function _DesktopSessionTimeoutState_initState_closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_initState__closure: function _DesktopSessionTimeoutState_initState__closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_build_closure: function _DesktopSessionTimeoutState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _DesktopSessionTimeoutState_build__closure: function _DesktopSessionTimeoutState_build__closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_build___closure: function _DesktopSessionTimeoutState_build___closure(t0) { this.$this = t0; }, MessageDialog: function MessageDialog(t0, t1, t2, t3, t4, t5) { var _ = this; _.message = t0; _.dismissLabel = t1; _.secondaryActions = t2; _.onDismiss = t3; _.onDiscard = t4; _.key = t5; }, MessageDialog_build_closure: function MessageDialog_build_closure() { }, MessageDialog_build_closure0: function MessageDialog_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, MessageDialog_build_closure1: function MessageDialog_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, ErrorDialog: function ErrorDialog(t0, t1, t2) { this.error = t0; this.clearErrorOnDismiss = t1; this.key = t2; }, ErrorDialog_build_closure: function ErrorDialog_build_closure(t0, t1) { this.context = t0; this.store = t1; }, ErrorDialog_build__closure: function ErrorDialog_build__closure(t0) { this.store = t0; }, ErrorDialog_build_closure0: function ErrorDialog_build_closure0(t0) { this._box_0 = t0; }, ErrorDialog_build_closure1: function ErrorDialog_build_closure1(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, HealthCheckDialog: function HealthCheckDialog(t0) { this.key = t0; }, _HealthCheckDialogState: function _HealthCheckDialogState(t0) { var _ = this; _._widget = _._response = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _HealthCheckDialogState_runCheck_closure: function _HealthCheckDialogState_runCheck_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_runCheck_closure0: function _HealthCheckDialogState_runCheck_closure0(t0) { this.$this = t0; }, _HealthCheckDialogState_runCheck__closure: function _HealthCheckDialogState_runCheck__closure(t0, t1) { this.$this = t0; this.response = t1; }, _HealthCheckDialogState_runCheck_closure1: function _HealthCheckDialogState_runCheck_closure1(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure: function _HealthCheckDialogState_clearCache_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure0: function _HealthCheckDialogState_clearCache_closure0(t0, t1) { this.$this = t0; this.store = t1; }, _HealthCheckDialogState_clearCache__closure: function _HealthCheckDialogState_clearCache__closure(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure1: function _HealthCheckDialogState_clearCache_closure1(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure: function _HealthCheckDialogState_build_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure0: function _HealthCheckDialogState_build_closure0(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure1: function _HealthCheckDialogState_build_closure1(t0) { this.context = t0; }, _HealthListTile: function _HealthListTile(t0, t1, t2, t3, t4, t5) { var _ = this; _.title = t0; _.isValid = t1; _.isWarning = t2; _.subtitle = t3; _.url = t4; _.key = t5; }, _HealthListTile_build_closure: function _HealthListTile_build_closure(t0) { this.$this = t0; }, LoadingDialog: function LoadingDialog(t0) { this.key = t0; }, multiselectDialog(context, defaultSelected, onSelected, options, selected) { A.showDialog(null, false, new A.multiselectDialog_closure(options, selected, defaultSelected, onSelected), context, null, true, type$.legacy_AlertDialog); }, MultiSelectList$(addTitle, defaultSelected, isDialog, liveChanges, onSelected, options, prefix, selected) { return new A.MultiSelectList(options, selected, defaultSelected, addTitle, onSelected, liveChanges, prefix, isDialog, null); }, multiselectDialog_closure: function multiselectDialog_closure(t0, t1, t2, t3) { var _ = this; _.options = t0; _.selected = t1; _.defaultSelected = t2; _.onSelected = t3; }, multiselectDialog__closure: function multiselectDialog__closure(t0) { this.onSelected = t0; }, MultiSelectList: function MultiSelectList(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.options = t0; _.selected = t1; _.defaultSelected = t2; _.addTitle = t3; _.onSelected = t4; _.liveChanges = t5; _.prefix = t6; _.isDialog = t7; _.key = t8; }, MultiSelectListState: function MultiSelectListState(t0) { var _ = this; _._widget = _._multiselect_dialog$_controller = _.selected = null; _._debugLifecycleState = t0; _._framework$_element = null; }, MultiSelectListState_build_closure: function MultiSelectListState_build_closure(t0) { this.$this = t0; }, MultiSelectListState_build_closure0: function MultiSelectListState_build_closure0(t0, t1, t2) { this.$this = t0; this.state = t1; this.options = t2; }, MultiSelectListState_build_closure1: function MultiSelectListState_build_closure1(t0) { this.$this = t0; }, MultiSelectListState_build_closure2: function MultiSelectListState_build_closure2(t0) { this.options = t0; }, MultiSelectListState_build_closure3: function MultiSelectListState_build_closure3(t0) { this.$this = t0; }, MultiSelectListState_build__closure3: function MultiSelectListState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, MultiSelectListState_build_closure4: function MultiSelectListState_build_closure4(t0, t1, t2) { this.$this = t0; this.state = t1; this.context = t2; }, MultiSelectListState_build__closure2: function MultiSelectListState_build__closure2(t0, t1) { this.$this = t0; this.option = t1; }, MultiSelectListState_build___closure: function MultiSelectListState_build___closure(t0, t1) { this.$this = t0; this.option = t1; }, MultiSelectListState_build_closure5: function MultiSelectListState_build_closure5(t0) { this.$this = t0; }, MultiSelectListState_build__closure1: function MultiSelectListState_build__closure1(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.oldIndex = t2; }, MultiSelectListState_build_closure6: function MultiSelectListState_build_closure6(t0) { this.$this = t0; }, MultiSelectListState_build__closure0: function MultiSelectListState_build__closure0(t0) { this.$this = t0; }, MultiSelectListState_build_closure7: function MultiSelectListState_build_closure7(t0) { this.$this = t0; }, MultiSelectListState_build__closure: function MultiSelectListState_build__closure(t0) { this.$this = t0; }, MultiSelectListState_build_closure8: function MultiSelectListState_build_closure8(t0) { this.context = t0; }, MultiSelectListState_build_closure9: function MultiSelectListState_build_closure9(t0, t1) { this.$this = t0; this.context = t1; }, DismissibleEntity: function DismissibleEntity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.userCompany = t0; _.entity = t1; _.child = t2; _.isSelected = t3; _.showCheckbox = t4; _.isDismissible = t5; _.key = t6; }, DismissibleEntity_build_closure: function DismissibleEntity_build_closure(t0) { this.$this = t0; }, DismissibleEntity_build_closure0: function DismissibleEntity_build_closure0(t0) { this.$this = t0; }, DismissibleEntity_build_closure1: function DismissibleEntity_build_closure1(t0) { this.$this = t0; }, DismissibleEntity_build_closure2: function DismissibleEntity_build_closure2(t0) { this.$this = t0; }, DismissibleEntity_build_closure3: function DismissibleEntity_build_closure3(t0) { this.$this = t0; }, DocumentGrid: function DocumentGrid(t0, t1, t2, t3, t4) { var _ = this; _.documents = t0; _.onUploadDocument = t1; _.onDeleteDocument = t2; _.onViewExpense = t3; _.key = t4; }, DocumentGrid_build_closure: function DocumentGrid_build_closure(t0) { this.$this = t0; }, DocumentGrid_build_closure0: function DocumentGrid_build_closure0(t0) { this.$this = t0; }, DocumentGrid_build_closure1: function DocumentGrid_build_closure1(t0) { this.$this = t0; }, DocumentGrid_build__closure: function DocumentGrid_build__closure(t0) { this.$this = t0; }, DocumentTile: function DocumentTile(t0, t1, t2, t3) { var _ = this; _.document = t0; _.onDeleteDocument = t1; _.onViewExpense = t2; _.key = t3; }, DocumentTile_build_closure0: function DocumentTile_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.state = t2; _.context = t3; }, DocumentTile_build__closure: function DocumentTile_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, DocumentTile_build___closure: function DocumentTile_build___closure(t0) { this.$this = t0; }, DocumentTile_build_closure: function DocumentTile_build_closure(t0) { this.localization = t0; }, DocumentPreview: function DocumentPreview(t0, t1, t2) { this.document = t0; this.height = t1; this.key = t2; }, DocumentPreview_build_closure0: function DocumentPreview_build_closure0(t0) { this.$this = t0; }, DocumentPreview_build_closure: function DocumentPreview_build_closure() { }, EditScaffold$(actions, appBarBottom, body, bottomNavigationBar, entity, floatingActionButton, isFullscreen, onActionPressed, onCancelPressed, onSavePressed, saveLabel, title) { return new A.EditScaffold(entity, title, onSavePressed, onCancelPressed, onActionPressed, actions, appBarBottom, floatingActionButton, body, bottomNavigationBar, saveLabel, isFullscreen, null); }, EditScaffold: function EditScaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.entity = t0; _.title = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.onActionPressed = t4; _.actions = t5; _.appBarBottom = t6; _.floatingActionButton = t7; _.body = t8; _.bottomNavigationBar = t9; _.saveLabel = t10; _.isFullscreen = t11; _.key = t12; }, EditScaffold_build_closure: function EditScaffold_build_closure() { }, EditScaffold_build_closure7: function EditScaffold_build_closure7() { }, EditScaffold_build_closure0: function EditScaffold_build_closure0(t0) { this.state = t0; }, EditScaffold_build_closure2: function EditScaffold_build_closure2(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.localization = t1; _.context = t2; _.state = t3; _.textStyle = t4; _.store = t5; }, EditScaffold_build__closure0: function EditScaffold_build__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.action = t1; _.context = t2; _.store = t3; }, EditScaffold_build_closure1: function EditScaffold_build_closure1(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.textStyle = t2; _.state = t3; _.entityActions = t4; }, EditScaffold_build__closure2: function EditScaffold_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, EditScaffold_build__closure1: function EditScaffold_build__closure1(t0, t1) { this.entityActions = t0; this.remaining = t1; }, EditScaffold_build___closure: function EditScaffold_build___closure(t0) { this.context = t0; }, EditScaffold_build_closure4: function EditScaffold_build_closure4(t0) { this.$this = t0; }, EditScaffold_build_closure3: function EditScaffold_build_closure3(t0, t1) { this.$this = t0; this.store = t1; }, EditScaffold_build_closure5: function EditScaffold_build_closure5(t0) { this.$this = t0; }, EditScaffold_build__closure: function EditScaffold_build__closure(t0) { this.context = t0; }, EditScaffold_build_closure6: function EditScaffold_build_closure6(t0, t1) { this.$this = t0; this.context = t1; }, showEntityActionsDialog(completer, entities, multiselect) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, t1, mainContext, state, actions, first, t2, t3, client; var $async$showEntityActionsDialog = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (entities == null) { // goto return $async$goto = 1; break; } t1 = $.$get$navigatorKey(); t1.toString; mainContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); state = A._lateReadCheck(A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState).__Store__state, "_state"); actions = A._setArrayType([], type$.JSArray_legacy_Widget); first = J.$index$asx(entities, 0); if (type$.legacy_BelongsToClient._is(first)) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; client = t2._list[t3].clientState.$get$1(0, first.get$clientId(first)); } else client = null; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = first.getActions$4$client$includeEdit$multiselect$userCompany(client, true, multiselect, t2._list[t3].userCompany); t2 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,StatelessWidget*>"); B.JSArray_methods.addAll$1(actions, A.List_List$of(new A.MappedListIterable(t3, new A.showEntityActionsDialog_closure(entities, mainContext, completer), t2), true, t2._eval$1("ListIterable.E"))); if (actions.length === 0) { // goto return $async$goto = 1; break; } A.showDialog(null, true, new A.showEntityActionsDialog_closure0(actions), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_String); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$showEntityActionsDialog, $async$completer); }, showEntityActionsDialog_closure: function showEntityActionsDialog_closure(t0, t1, t2) { this.entities = t0; this.mainContext = t1; this.completer = t2; }, showEntityActionsDialog_closure0: function showEntityActionsDialog_closure0(t0) { this.actions = t0; }, EntityActionListTile: function EntityActionListTile(t0, t1, t2, t3, t4) { var _ = this; _.entities = t0; _.action = t1; _.mainContext = t2; _.completer = t3; _.key = t4; }, EntityActionListTile_build_closure: function EntityActionListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, EntityListTile$(entity, isFilter, subtitle) { return new A.EntityListTile(subtitle, entity, isFilter, null); }, EntityListTile: function EntityListTile(t0, t1, t2, t3) { var _ = this; _.subtitle = t0; _.entity = t1; _.isFilter = t2; _.key = t3; }, _EntityListTileState: function _EntityListTileState(t0) { var _ = this; _._entity_list_tile$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityListTileState_build_closure: function _EntityListTileState_build_closure(t0) { this.$this = t0; }, _EntityListTileState_build_closure0: function _EntityListTileState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _EntityListTileState_build_closure3: function _EntityListTileState_build_closure3(t0) { this.$this = t0; }, _EntityListTileState_build__closure0: function _EntityListTileState_build__closure0(t0) { this.$this = t0; }, _EntityListTileState_build_closure4: function _EntityListTileState_build_closure4(t0) { this.$this = t0; }, _EntityListTileState_build__closure: function _EntityListTileState_build__closure(t0) { this.$this = t0; }, _EntityListTileState_build_closure2: function _EntityListTileState_build_closure2(t0, t1, t2) { this.$this = t0; this.state = t1; this.store = t2; }, _EntityListTileState_build_closure1: function _EntityListTileState_build_closure1(t0) { this.$this = t0; }, EntitiesListTile: function EntitiesListTile(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entity = t0; _.entityType = t1; _.title = t2; _.subtitle = t3; _.isFilter = t4; _.hideNew = t5; _.key = t6; }, _EntitiesListTileState: function _EntitiesListTileState(t0) { var _ = this; _._entity_list_tile$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntitiesListTileState_build_closure2: function _EntitiesListTileState_build_closure2(t0) { this.$this = t0; }, _EntitiesListTileState_build__closure0: function _EntitiesListTileState_build__closure0(t0) { this.$this = t0; }, _EntitiesListTileState_build_closure3: function _EntitiesListTileState_build_closure3(t0) { this.$this = t0; }, _EntitiesListTileState_build__closure: function _EntitiesListTileState_build__closure(t0) { this.$this = t0; }, _EntitiesListTileState_build_closure: function _EntitiesListTileState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _EntitiesListTileState_build_closure1: function _EntitiesListTileState_build_closure1() { }, _EntitiesListTileState_build_closure0: function _EntitiesListTileState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, EntityStatusChip$(entity, showState, width) { return new A.EntityStatusChip(entity, width, showState, null); }, EntityStatusChip: function EntityStatusChip(t0, t1, t2, t3) { var _ = this; _.entity = t0; _.width = t1; _.showState = t2; _.key = t3; }, EntityDropdown$(allowClearing, autoValidate, autofocus, entityId, entityList, entityMap, entityType, excludeIds, labelText, onAddPressed, onCreateNew, onSelected, overrideSuggestedAmount, overrideSuggestedLabel, validator) { return new A.EntityDropdown(entityType, entityList, labelText, entityId, autofocus, entityMap, onSelected, validator, autoValidate, allowClearing, onAddPressed, overrideSuggestedAmount, overrideSuggestedLabel, onCreateNew, excludeIds, null); }, EntityDropdown: function EntityDropdown(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.entityType = t0; _.entityList = t1; _.labelText = t2; _.entityId = t3; _.autofocus = t4; _.entityMap = t5; _.onSelected = t6; _.validator = t7; _.autoValidate = t8; _.allowClearing = t9; _.onAddPressed = t10; _.overrideSuggestedAmount = t11; _.overrideSuggestedLabel = t12; _.onCreateNew = t13; _.excludeIds = t14; _.key = t15; }, _EntityDropdownState: function _EntityDropdownState(t0, t1, t2) { var _ = this; _._entity_dropdown$_textController = t0; _._entity_dropdown$_focusNode = t1; _._entity_dropdown$_filter = ""; _._widget = _._entityMap = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _EntityDropdownState__showOptions_closure: function _EntityDropdownState__showOptions_closure(t0) { this.$this = t0; }, _EntityDropdownState__showOptions__closure0: function _EntityDropdownState__showOptions__closure0(t0) { this.$this = t0; }, _EntityDropdownState__showOptions__closure: function _EntityDropdownState__showOptions__closure(t0) { this.$this = t0; }, _EntityDropdownState_build_closure: function _EntityDropdownState_build_closure(t0) { this.$this = t0; }, _EntityDropdownState_build_closure0: function _EntityDropdownState_build_closure0(t0) { this.$this = t0; }, _EntityDropdownState_build__closure8: function _EntityDropdownState_build__closure8(t0) { this.$this = t0; }, _EntityDropdownState_build_closure5: function _EntityDropdownState_build_closure5(t0, t1) { this.$this = t0; this.state = t1; }, _EntityDropdownState_build__closure: function _EntityDropdownState_build__closure(t0) { this.$this = t0; }, _EntityDropdownState_build__closure0: function _EntityDropdownState_build__closure0(t0) { this.textEditingValue = t0; }, _EntityDropdownState_build__closure1: function _EntityDropdownState_build__closure1(t0) { this.$this = t0; }, _EntityDropdownState_build_closure3: function _EntityDropdownState_build_closure3() { }, _EntityDropdownState_build_closure4: function _EntityDropdownState_build_closure4(t0) { this.$this = t0; }, _EntityDropdownState_build_closure__wrapUp: function _EntityDropdownState_build_closure__wrapUp(t0) { this.$this = t0; }, _EntityDropdownState_build___wrapUp_closure: function _EntityDropdownState_build___wrapUp_closure(t0) { this.$this = t0; }, _EntityDropdownState_build__closure2: function _EntityDropdownState_build__closure2(t0) { this.$this = t0; }, _EntityDropdownState_build__closure3: function _EntityDropdownState_build__closure3(t0, t1) { this.$this = t0; this._wrapUp = t1; }, _EntityDropdownState_build__closure4: function _EntityDropdownState_build__closure4(t0) { this.$this = t0; }, _EntityDropdownState_build_closure1: function _EntityDropdownState_build_closure1(t0, t1) { this.$this = t0; this.iconButton = t1; }, _EntityDropdownState_build__closure7: function _EntityDropdownState_build__closure7(t0) { this.onFieldSubmitted = t0; }, _EntityDropdownState_build__closure6: function _EntityDropdownState_build__closure6(t0) { this.$this = t0; }, _EntityDropdownState_build_closure2: function _EntityDropdownState_build_closure2(t0, t1, t2) { this.$this = t0; this.theme = t1; this.state = t2; }, _EntityDropdownState_build__closure5: function _EntityDropdownState_build__closure5(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.onSelected = t2; _.options = t3; }, _EntityDropdownState_build___closure: function _EntityDropdownState_build___closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.index = t1; _.state = t2; _.onSelected = t3; _.options = t4; }, _EntityDropdownState_build____closure: function _EntityDropdownState_build____closure(t0) { this.context = t0; }, _EntityDropdownState_build____closure0: function _EntityDropdownState_build____closure0(t0) { this.onSelected = t0; }, _EntityDropdownState_build_closure6: function _EntityDropdownState_build_closure6(t0) { this.$this = t0; }, _EntityDropdownState_build_closure7: function _EntityDropdownState_build_closure7(t0) { this.$this = t0; }, EntityDropdownDialog: function EntityDropdownDialog(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entityMap = t0; _.entityList = t1; _.onSelected = t2; _.onAddPressed = t3; _.overrideSuggestedAmount = t4; _.overrideSuggestedLabel = t5; _.key = t6; }, _EntityDropdownDialogState: function _EntityDropdownDialogState(t0) { var _ = this; _._widget = _._entity_dropdown$_filter = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityDropdownDialogState_build__selectEntity: function _EntityDropdownDialogState_build__selectEntity(t0, t1) { this.$this = t0; this.context = t1; }, _EntityDropdownDialogState_build__headerRow: function _EntityDropdownDialogState_build__headerRow(t0, t1, t2) { this.$this = t0; this.localization = t1; this.context = t2; }, _EntityDropdownDialogState_build__headerRow_closure: function _EntityDropdownDialogState_build__headerRow_closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__headerRow__closure0: function _EntityDropdownDialogState_build__headerRow__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _EntityDropdownDialogState_build__headerRow_closure0: function _EntityDropdownDialogState_build__headerRow_closure0(t0) { this.context = t0; }, _EntityDropdownDialogState_build__headerRow_closure1: function _EntityDropdownDialogState_build__headerRow_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _EntityDropdownDialogState_build__headerRow__closure: function _EntityDropdownDialogState_build__headerRow__closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__createList: function _EntityDropdownDialogState_build__createList(t0, t1) { this.$this = t0; this._selectEntity = t1; }, _EntityDropdownDialogState_build__createList_closure: function _EntityDropdownDialogState_build__createList_closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__createList_closure0: function _EntityDropdownDialogState_build__createList_closure0(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__createList_closure1: function _EntityDropdownDialogState_build__createList_closure1(t0, t1, t2) { this.$this = t0; this.matches = t1; this._selectEntity = t2; }, _EntityDropdownDialogState_build__createList__closure: function _EntityDropdownDialogState_build__createList__closure(t0) { this._selectEntity = t0; }, EntityAutocompleteListTile: function EntityAutocompleteListTile(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entity = t0; _.onTap = t1; _.filter = t2; _.subtitle = t3; _.overrideSuggestedAmount = t4; _.overrideSuggestedLabel = t5; _.key = t6; }, EntityAutocompleteListTile_build_closure: function EntityAutocompleteListTile_build_closure(t0) { this.$this = t0; }, _AutocompleteEntity: function _AutocompleteEntity(t0) { this.name = t0; }, __AutocompleteEntity_Object_SelectableEntity: function __AutocompleteEntity_Object_SelectableEntity() { }, EntityHeader$(entity, label, secondLabel, secondValue, statusColor, statusLabel, value) { return new A.EntityHeader(entity, statusLabel, label, value, secondLabel, secondValue, null); }, EntityHeader: function EntityHeader(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entity = t0; _.statusLabel = t1; _.label = t2; _.value = t3; _.secondLabel = t4; _.secondValue = t5; _.key = t6; }, EntityHeader_build__value1: function EntityHeader_build__value1(t0, t1) { this.$this = t0; this.textColor = t1; }, EntityHeader_build__value2: function EntityHeader_build__value2(t0, t1) { this.$this = t0; this.textColor = t1; }, EntityStateLabel: function EntityStateLabel(t0, t1) { this.entity = t0; this.key = t1; }, EntityTopFilter: function EntityTopFilter(t0, t1) { this.show = t0; this.key = t1; }, EntityTopFilter_build_closure: function EntityTopFilter_build_closure(t0) { this.state = t0; }, EntityTopFilter_build_closure0: function EntityTopFilter_build_closure0(t0, t1) { this.store = t0; this.uiState = t1; }, EntityTopFilter_build_closure2: function EntityTopFilter_build_closure2(t0, t1) { this.store = t0; this.prefState = t1; }, EntityTopFilter_build_closure1: function EntityTopFilter_build_closure1(t0) { this.filterEntity = t0; }, EntityTopFilter_build_closure4: function EntityTopFilter_build_closure4(t0, t1, t2) { this.relatedTypes = t0; this.i = t1; this.filterEntity = t2; }, EntityTopFilter_build_closure3: function EntityTopFilter_build_closure3(t0, t1, t2) { this.filterEntity = t0; this.relatedTypes = t1; this.i = t2; }, EntityTopFilter_build_closure5: function EntityTopFilter_build_closure5(t0, t1, t2, t3, t4, t5) { var _ = this; _.localization = t0; _.state = t1; _.routeEntityType = t2; _.filterEntityType = t3; _.filterEntity = t4; _.relatedTypes = t5; }, EntityTopFilter_build__closure0: function EntityTopFilter_build__closure0(t0, t1) { this.filterEntityType = t0; this.filterEntity = t1; }, EntityTopFilter_build__closure: function EntityTopFilter_build__closure(t0, t1, t2, t3, t4) { var _ = this; _.filterEntityType = t0; _.relatedTypes = t1; _.remaining = t2; _.state = t3; _.localization = t4; }, EntityTopFilter_build___closure: function EntityTopFilter_build___closure(t0) { this.state = t0; }, EntityTopFilter_build___closure0: function EntityTopFilter_build___closure0(t0, t1) { this.filterEntityType = t0; this.localization = t1; }, EntityTopFilter_build_closure6: function EntityTopFilter_build_closure6(t0, t1) { this.store = t0; this.uiState = t1; }, EntityTopFilterHeader: function EntityTopFilterHeader(t0) { this.key = t0; }, EntityTopFilterHeader_build_closure: function EntityTopFilterHeader_build_closure() { }, EntityTopFilterHeader_build_closure0: function EntityTopFilterHeader_build_closure0(t0, t1, t2) { this.uiState = t0; this.state = t1; this.store = t2; }, EntityTopFilterHeader_build_closure2: function EntityTopFilterHeader_build_closure2(t0, t1) { this.store = t0; this.prefState = t1; }, EntityTopFilterHeader_build_closure1: function EntityTopFilterHeader_build_closure1(t0) { this.filterEntity = t0; }, EntityTopFilterHeader_build_closure4: function EntityTopFilterHeader_build_closure4(t0, t1, t2, t3) { var _ = this; _.localization = t0; _.state = t1; _.textStyle = t2; _.filterEntity = t3; }, EntityTopFilterHeader_build__closure: function EntityTopFilterHeader_build__closure(t0, t1) { this.filterEntity = t0; this.action = t1; }, EntityTopFilterHeader_build_closure3: function EntityTopFilterHeader_build_closure3(t0, t1, t2, t3, t4) { var _ = this; _.localization = t0; _.textStyle = t1; _.state = t2; _.filterEntity = t3; _.entityActions = t4; }, EntityTopFilterHeader_build__closure1: function EntityTopFilterHeader_build__closure1(t0) { this.filterEntity = t0; }, EntityTopFilterHeader_build__closure0: function EntityTopFilterHeader_build__closure0(t0, t1) { this.entityActions = t0; this.remaining = t1; }, EntityTopFilterHeader_build___closure: function EntityTopFilterHeader_build___closure(t0) { this.context = t0; }, EntityTopFilterHeader_build_closure5: function EntityTopFilterHeader_build_closure5(t0, t1) { this.store = t0; this.uiState = t1; }, FormCard$(child, children, constraints, crossAxisAlignment, forceNarrow, internalPadding, isLast, padding) { return new A.FormCard(child, children, crossAxisAlignment, forceNarrow, padding, internalPadding, isLast, constraints, null); }, FormCard: function FormCard(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.children = t1; _.crossAxisAlignment = t2; _.forceNarrow = t3; _.padding = t4; _.internalPadding = t5; _.isLast = t6; _.constraints = t7; _.key = t8; }, AppDropdownButton$(blankLabel, blankValue, enabled, items, key, labelText, onChanged, selectedItemBuilder, showBlank, value, $T) { return new A.AppDropdownButton(labelText, value, onChanged, items, showBlank, enabled, blankValue, blankLabel, selectedItemBuilder, key, $T._eval$1("AppDropdownButton<0>")); }, AppDropdownButton: function AppDropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.labelText = t0; _.value = t1; _.onChanged = t2; _.items = t3; _.showBlank = t4; _.enabled = t5; _.blankValue = t6; _.blankLabel = t7; _.selectedItemBuilder = t8; _.key = t9; _.$ti = t10; }, AppDropdownButton_build_closure: function AppDropdownButton_build_closure(t0) { this.$this = t0; }, AppForm: function AppForm(t0, t1, t2, t3, t4) { var _ = this; _.formKey = t0; _.children = t1; _.child = t2; _.focusNode = t3; _.key = t4; }, AppTabForm: function AppTabForm(t0, t1, t2, t3, t4, t5) { var _ = this; _.focusNode = t0; _.formKey = t1; _.children = t2; _.tabController = t3; _.tabBarKey = t4; _.key = t5; }, AppTabBar: function AppTabBar(t0, t1, t2, t3, t4) { var _ = this; _.tabs = t0; _.controller = t1; _.isScrollable = t2; _.onTap = t3; _.key = t4; }, AppToggleButtons: function AppToggleButtons(t0, t1, t2, t3) { var _ = this; _.tabLabels = t0; _.selectedIndex = t1; _.onTabChanged = t2; _.key = t3; }, AppToggleButtons_build_closure: function AppToggleButtons_build_closure(t0) { this.$this = t0; }, AppToggleButtons_build__closure: function AppToggleButtons_build__closure(t0) { this._box_0 = t0; }, AppToggleButtons_build__closure0: function AppToggleButtons_build__closure0(t0) { this.$this = t0; }, BoolDropdownButton$(disabledLabel, enabledLabel, helpLabel, iconData, label, minWidth, onChanged, value) { return new A.BoolDropdownButton(label, helpLabel, value, onChanged, iconData, enabledLabel, disabledLabel, minWidth, null); }, BoolDropdownButton: function BoolDropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.label = t0; _.helpLabel = t1; _.value = t2; _.onChanged = t3; _.iconData = t4; _.enabledLabel = t5; _.disabledLabel = t6; _.minWidth = t7; _.key = t8; }, BoolDropdownButton_build_closure: function BoolDropdownButton_build_closure(t0) { this.$this = t0; }, BoolDropdownButton_build_closure0: function BoolDropdownButton_build_closure0(t0) { this.$this = t0; }, BoolDropdownButton_build_closure2: function BoolDropdownButton_build_closure2(t0) { this.$this = t0; }, BoolDropdownButton_build_closure1: function BoolDropdownButton_build_closure1() { }, BoolDropdownButton_build_closure4: function BoolDropdownButton_build_closure4(t0) { this.$this = t0; }, BoolDropdownButton_build_closure3: function BoolDropdownButton_build_closure3() { }, ClientPicker: function ClientPicker(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.clientId = t0; _.clientState = t1; _.onSelected = t2; _.onAddPressed = t3; _.autofocus = t4; _.excludeIds = t5; _.key = t6; }, ClientPicker_build_closure: function ClientPicker_build_closure(t0) { this.context = t0; }, FormColorPicker$(initialValue, labelText, onSelected) { return new A.FormColorPicker(labelText, initialValue, onSelected, null); }, FormColorPicker: function FormColorPicker(t0, t1, t2, t3) { var _ = this; _.labelText = t0; _.initialValue = t1; _.onSelected = t2; _.key = t3; }, _FormColorPickerState: function _FormColorPickerState(t0, t1, t2, t3) { var _ = this; _._color_picker$_textController = t0; _._selectedColor = _._pendingColor = null; _._color_picker$_debouncer = t1; _._controllers = null; _._defaultColors = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _FormColorPickerState_didChangeDependencies_closure: function _FormColorPickerState_didChangeDependencies_closure(t0) { this.$this = t0; }, _FormColorPickerState_didChangeDependencies_closure0: function _FormColorPickerState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _FormColorPickerState__onChanged_closure: function _FormColorPickerState__onChanged_closure(t0) { this.$this = t0; }, _FormColorPickerState__selectColor_closure: function _FormColorPickerState__selectColor_closure(t0, t1) { this.$this = t0; this.color = t1; }, _FormColorPickerState__showPicker_closure: function _FormColorPickerState__showPicker_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.colors = t2; _.localization = t3; }, _FormColorPickerState__showPicker__closure: function _FormColorPickerState__showPicker__closure(t0) { this.$this = t0; }, _FormColorPickerState__showPicker__closure0: function _FormColorPickerState__showPicker__closure0(t0) { this.context = t0; }, _FormColorPickerState__showPicker__closure1: function _FormColorPickerState__showPicker__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _FormColorPickerState_build_closure: function _FormColorPickerState_build_closure(t0) { this.$this = t0; }, CustomField: function CustomField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.controller = t0; _.onChanged = t1; _.onSavePressed = t2; _.field = t3; _.value = t4; _.hideFieldLabel = t5; _.key = t6; }, _CustomFieldState: function _CustomFieldState(t0) { var _ = this; _._widget = _._custom_field$_value = _._custom_field$_controller = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _CustomFieldState_build_closure: function _CustomFieldState_build_closure(t0) { this.$this = t0; }, _CustomFieldState_build_closure0: function _CustomFieldState_build_closure0(t0) { this.$this = t0; }, _CustomFieldState_build_closure1: function _CustomFieldState_build_closure1() { }, _CustomFieldState_build_closure2: function _CustomFieldState_build_closure2(t0) { this.$this = t0; }, _CustomFieldState_build__closure: function _CustomFieldState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, CustomSurcharges: function CustomSurcharges(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.surcharge1Controller = t0; _.surcharge2Controller = t1; _.surcharge3Controller = t2; _.surcharge4Controller = t3; _.onSavePressed = t4; _.isAfterTaxes = t5; _.key = t6; }, DatePicker$(autoValidate, firstDate, key, labelText, message, onSelected, selectedDate, validator) { return new A.DatePicker(labelText, selectedDate, onSelected, validator, message, firstDate, key); }, DatePicker: function DatePicker(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.labelText = t0; _.selectedDate = t1; _.onSelected = t2; _.validator = t3; _.message = t4; _.firstDate = t5; _.key = t6; }, _DatePickerState: function _DatePickerState(t0, t1, t2) { var _ = this; _._textController = t0; _._date_picker$_focusNode = t1; _._widget = _._pendingValue = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DatePickerState__onFoucsChanged_closure: function _DatePickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _DatePickerState_build_closure: function _DatePickerState_build_closure(t0) { this.$this = t0; }, _DatePickerState_build_closure0: function _DatePickerState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _DatePickerState_build__closure: function _DatePickerState_build__closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.context = t2; }, DecoratedFormField$(autocorrect, autofillHints, autofocus, autovalidate, controller, decoration, enabled, focusNode, hint, initialValue, inputFormatters, isMoney, isPercent, key, keyboardType, label, maxLines, minLines, obscureText, onChanged, onFieldSubmitted, onSavePressed, showClear, suffixIcon, suffixIconButton, textAlign, validator) { return new A.DecoratedFormField(controller, label, hint, initialValue, validator, keyboardType, maxLines, minLines, autovalidate, enabled, false, obscureText, autofocus, onFieldSubmitted, onChanged, suffixIcon, suffixIconButton, autofillHints, onSavePressed, textAlign, decoration, focusNode, isMoney, isPercent, showClear, inputFormatters, key); }, DecoratedFormField: function DecoratedFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.controller = t0; _.label = t1; _.hint = t2; _.initialValue = t3; _.validator = t4; _.keyboardType = t5; _.maxLines = t6; _.minLines = t7; _.autovalidate = t8; _.enabled = t9; _.autocorrect = t10; _.obscureText = t11; _.autofocus = t12; _.onFieldSubmitted = t13; _.onChanged = t14; _.suffixIcon = t15; _.suffixIconButton = t16; _.autofillHints = t17; _.onSavePressed = t18; _.textAlign = t19; _.decoration = t20; _.focusNode = t21; _.isMoney = t22; _.isPercent = t23; _.showClear = t24; _.inputFormatters = t25; _.key = t26; }, _DecoratedFormFieldState: function _DecoratedFormFieldState(t0) { var _ = this; _._showClear = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DecoratedFormFieldState_build_closure: function _DecoratedFormFieldState_build_closure(t0) { this.$this = t0; }, _DecoratedFormFieldState_build__closure: function _DecoratedFormFieldState_build__closure(t0) { this.$this = t0; }, _DecoratedFormFieldState_build_closure0: function _DecoratedFormFieldState_build_closure0(t0) { this.$this = t0; }, _DecoratedFormFieldState_build_closure1: function _DecoratedFormFieldState_build_closure1(t0, t1, t2) { this.$this = t0; this.enterShouldSubmit = t1; this.context = t2; }, DesignPicker: function DesignPicker(t0, t1, t2, t3) { var _ = this; _.onSelected = t0; _.label = t1; _.initialValue = t2; _.key = t3; }, DesignPicker_build_closure1: function DesignPicker_build_closure1(t0, t1) { this.$this = t0; this.designState = t1; }, DesignPicker_build_closure: function DesignPicker_build_closure(t0, t1, t2) { this.$this = t0; this.designState = t1; this.state = t2; }, DesignPicker_build_closure0: function DesignPicker_build_closure0(t0) { this.designState = t0; }, DiscountField: function DiscountField(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.value = t1; _.isAmountDiscount = t2; _.onTypeChanged = t3; _.label = t4; _.key = t5; }, DurationPicker: function DurationPicker(t0, t1, t2, t3) { var _ = this; _.selectedDuration = t0; _.onSelected = t1; _.labelText = t2; _.key = t3; }, _DurationPickerState: function _DurationPickerState(t0, t1, t2) { var _ = this; _._duration_picker$_textController = t0; _._duration_picker$_focusNode = t1; _._widget = _._pendingDuration = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DurationPickerState__onFoucsChanged_closure: function _DurationPickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _DurationPickerState_build_closure1: function _DurationPickerState_build_closure1(t0) { this.$this = t0; }, _DurationPickerState_build__closure: function _DurationPickerState_build__closure(t0, t1) { this.$this = t0; this.duration = t1; }, _DurationPickerState_build_closure: function _DurationPickerState_build_closure() { }, _DurationPickerState_build__closure0: function _DurationPickerState_build__closure0() { }, _DurationPickerState_build_closure0: function _DurationPickerState_build_closure0(t0) { this.$this = t0; }, DynamicSelector$(allowClearing, entityId, entityIds, entityType, key, labelText, onChanged, overrideSuggestedLabel) { return new A.DynamicSelector(labelText, allowClearing, entityId, entityIds, entityType, onChanged, overrideSuggestedLabel, key); }, DynamicSelector: function DynamicSelector(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.labelText = t0; _.allowClearing = t1; _.entityId = t2; _.entityIds = t3; _.entityType = t4; _.onChanged = t5; _.overrideSuggestedLabel = t6; _.key = t7; }, DynamicSelector_build_closure0: function DynamicSelector_build_closure0(t0) { this.$this = t0; }, DynamicSelector_build_closure: function DynamicSelector_build_closure(t0, t1) { this.$this = t0; this.entityMap = t1; }, DynamicSelector_build_closure1: function DynamicSelector_build_closure1(t0) { this.$this = t0; }, GrowableFormField: function GrowableFormField(t0, t1, t2, t3) { var _ = this; _.initialValue = t0; _.onChanged = t1; _.autofocus = t2; _.key = t3; }, _GrowableFormFieldState: function _GrowableFormFieldState(t0, t1) { var _ = this; _._growable_form_field$_focusNode = t0; _._growable_form_field$_hasFocus = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GrowableFormFieldState__onFoucsChanged_closure: function _GrowableFormFieldState__onFoucsChanged_closure(t0) { this.$this = t0; }, LearnMoreUrl: function LearnMoreUrl(t0, t1, t2, t3) { var _ = this; _.child = t0; _.url = t1; _.label = t2; _.key = t3; }, LearnMoreUrl_build_closure: function LearnMoreUrl_build_closure(t0) { this.$this = t0; }, NotificationSettings: function NotificationSettings(t0, t1, t2) { this.user = t0; this.onChanged = t1; this.key = t2; }, NotificationSettings_build_closure: function NotificationSettings_build_closure(t0) { this.$this = t0; }, NotificationSettings_build_closure0: function NotificationSettings_build_closure0(t0) { this.state = t0; }, NotificationSettings_build_closure1: function NotificationSettings_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.emailNotifications = t1; _.localization = t2; _.hasMultipleUsers = t3; }, NotificationSettings_build__closure: function NotificationSettings_build__closure(t0, t1, t2) { this.$this = t0; this.emailNotifications = t1; this.eventType = t2; }, _NotificationSelector: function _NotificationSelector(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.onChanged = t1; _.hasMultipleUsers = t2; _.showNoneAsCustom = t3; _.key = t4; }, _NotificationSelector_build_closure: function _NotificationSelector_build_closure(t0) { this.$this = t0; }, PasswordFormField: function PasswordFormField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.controller = t0; _.onSavePressed = t1; _.autoValidate = t2; _.newPassword = t3; _.validate = t4; _.labelText = t5; _.key = t6; }, _PasswordFormFieldState: function _PasswordFormFieldState(t0) { var _ = this; _._password_field$_isPasswordObscured = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PasswordFormFieldState_build_closure: function _PasswordFormFieldState_build_closure(t0) { this.$this = t0; }, _PasswordFormFieldState_build__closure: function _PasswordFormFieldState_build__closure(t0) { this.$this = t0; }, _PasswordFormFieldState_build_closure0: function _PasswordFormFieldState_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, ProjectPicker: function ProjectPicker(t0, t1, t2, t3, t4) { var _ = this; _.projectId = t0; _.clientId = t1; _.onChanged = t2; _.onAddPressed = t3; _.key = t4; }, ProjectPicker_build_closure0: function ProjectPicker_build_closure0(t0) { this.$this = t0; }, ProjectPicker_build_closure: function ProjectPicker_build_closure(t0, t1) { this.$this = t0; this.store = t1; }, ProjectPicker_build__closure: function ProjectPicker_build__closure(t0, t1) { this.$this = t0; this.name = t1; }, SaveCancelButtons$(cancelLabel, isCancelEnabled, isEnabled, isHeader, onCancelPressed, onSavePressed, saveLabel) { return new A.SaveCancelButtons(isEnabled, isCancelEnabled, saveLabel, cancelLabel, isHeader, onCancelPressed, onSavePressed, null); }, SaveCancelButtons: function SaveCancelButtons(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.isEnabled = t0; _.isCancelEnabled = t1; _.saveLabel = t2; _.cancelLabel = t3; _.isHeader = t4; _.onCancelPressed = t5; _.onSavePressed = t6; _.key = t7; }, SaveCancelButtons_build_closure: function SaveCancelButtons_build_closure(t0, t1) { this.$this = t0; this.localization = t1; }, SaveCancelButtons_build__closure0: function SaveCancelButtons_build__closure0(t0, t1) { this.$this = t0; this.context = t1; }, SaveCancelButtons_build_closure0: function SaveCancelButtons_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, SaveCancelButtons_build__closure: function SaveCancelButtons_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, TimePicker$(isEndTime, key, labelText, onSelected, selectedDateTime) { return new A.TimePicker(labelText, selectedDateTime, onSelected, key); }, TimePicker: function TimePicker(t0, t1, t2, t3) { var _ = this; _.labelText = t0; _.selectedDateTime = t1; _.onSelected = t2; _.key = t3; }, _TimePickerState: function _TimePickerState(t0, t1, t2) { var _ = this; _._time_picker$_textController = t0; _._time_picker$_focusNode = t1; _._widget = _._time_picker$_pendingValue = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _TimePickerState__onFoucsChanged_closure: function _TimePickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _TimePickerState__showTimePicker_closure: function _TimePickerState__showTimePicker_closure() { }, _TimePickerState_build_closure: function _TimePickerState_build_closure(t0) { this.$this = t0; }, _TimePickerState_build_closure0: function _TimePickerState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _TimePickerState_build__closure: function _TimePickerState_build__closure() { }, _TimePickerState_build__closure0: function _TimePickerState_build__closure0() { }, _TimePickerState_build__closure1: function _TimePickerState_build__closure1(t0, t1, t2) { this.$this = t0; this.selectedDate = t1; this.context = t2; }, UserPicker: function UserPicker(t0, t1, t2) { this.userId = t0; this.onChanged = t1; this.key = t2; }, VendorPicker: function VendorPicker(t0, t1, t2, t3, t4, t5) { var _ = this; _.vendorId = t0; _.vendorState = t1; _.onSelected = t2; _.onAddPressed = t3; _.autofocus = t4; _.key = t5; }, VendorPicker_build_closure0: function VendorPicker_build_closure0(t0) { this.context = t0; }, VendorPicker_build_closure: function VendorPicker_build_closure(t0) { this.store = t0; }, VendorPicker_build__closure: function VendorPicker_build__closure(t0) { this.name = t0; }, TokenMeta: function TokenMeta(t0, t1) { this.meta = t0; this.key = t1; }, HelpText: function HelpText(t0, t1) { this.message = t0; this.key = t1; }, HistoryDrawer: function HistoryDrawer(t0) { this.key = t0; }, HistoryDrawer_build_closure: function HistoryDrawer_build_closure() { }, HistoryDrawer_build__closure: function HistoryDrawer_build__closure(t0) { this.context = t0; }, HistoryDrawer_build_closure0: function HistoryDrawer_build_closure0(t0) { this.store = t0; }, HistoryListTile: function HistoryListTile(t0, t1) { this.history = t0; this.key = t1; }, _HistoryListTileState: function _HistoryListTileState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _HistoryListTileState_build_closure1: function _HistoryListTileState_build_closure1(t0, t1) { this.history = t0; this.state = t1; }, _HistoryListTileState_build_closure0: function _HistoryListTileState_build_closure0(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.history = t2; _.store = t3; }, _HistoryListTileState_build_closure: function _HistoryListTileState_build_closure(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.context = t2; }, _HistoryListTileState_build__closure: function _HistoryListTileState_build__closure(t0) { this.context = t0; }, AppDrawerVM_fromStore(store) { var t1, t2, state = A._lateReadCheck(store.__Store__state, "_state"); state.get$companies(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.AppDrawerVM(t1._list[t2].userCompany.user); }, HistoryDrawerBuilder: function HistoryDrawerBuilder(t0) { this.key = t0; }, HistoryDrawerBuilder_build_closure: function HistoryDrawerBuilder_build_closure() { }, AppDrawerVM: function AppDrawerVM(t0) { this.user = t0; }, IconMessage: function IconMessage(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.iconData = t1; _.color = t2; _.trailing = t3; _.key = t4; }, IconText: function IconText(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.icon = t1; _.style = t2; _.alignment = t3; _.key = t4; }, InvoiceEmailView: function InvoiceEmailView(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceEmailViewState: function _InvoiceEmailViewState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.selectedTemplate = null; _._invoice_email_view$_subjectPreview = _._rawBodyPreview = _._invoice_email_view$_bodyPreview = _._invoice_email_view$_emailPreview = ""; _._invoice_email_view$_isLoading = false; _._invoice_email_view$_subjectController = t0; _._invoice_email_view$_bodyController = t1; _._invoice_email_view$_debouncer = t2; _._invoice_email_view$_controller = null; _._invoice_email_view$_controllers = t3; _.SingleTickerProviderStateMixin__ticker = t4; _.SingleTickerProviderStateMixin__tickerModeNotifier = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, _InvoiceEmailViewState_dispose_closure: function _InvoiceEmailViewState_dispose_closure() { }, _InvoiceEmailViewState__onChanged_closure: function _InvoiceEmailViewState__onChanged_closure(t0) { this.$this = t0; }, _InvoiceEmailViewState__loadTemplate_closure: function _InvoiceEmailViewState__loadTemplate_closure(t0) { this.$this = t0; }, _InvoiceEmailViewState__loadTemplate_closure0: function _InvoiceEmailViewState__loadTemplate_closure0(t0, t1, t2) { this.$this = t0; this.origSubject = t1; this.origBody = t2; }, _InvoiceEmailViewState__loadTemplate__closure: function _InvoiceEmailViewState__loadTemplate__closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.subject = t1; _.body = t2; _.email = t3; _.rawBody = t4; _.origSubject = t5; _.origBody = t6; _.rawSubject = t7; }, _InvoiceEmailViewState__buildTemplateDropdown_closure: function _InvoiceEmailViewState__buildTemplateDropdown_closure(t0, t1, t2) { this.invoice = t0; this.vendor = t1; this.client = t2; }, _InvoiceEmailViewState__buildTemplateDropdown__closure0: function _InvoiceEmailViewState__buildTemplateDropdown__closure0(t0, t1) { this.invoice = t0; this.invitation = t1; }, _InvoiceEmailViewState__buildTemplateDropdown__closure1: function _InvoiceEmailViewState__buildTemplateDropdown__closure1() { }, _InvoiceEmailViewState__buildTemplateDropdown_closure0: function _InvoiceEmailViewState__buildTemplateDropdown_closure0() { }, _InvoiceEmailViewState__buildTemplateDropdown_closure1: function _InvoiceEmailViewState__buildTemplateDropdown_closure1(t0) { this.invoice = t0; }, _InvoiceEmailViewState__buildTemplateDropdown_closure2: function _InvoiceEmailViewState__buildTemplateDropdown_closure2(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildTemplateDropdown__closure: function _InvoiceEmailViewState__buildTemplateDropdown__closure(t0, t1) { this.$this = t0; this.template = t1; }, _InvoiceEmailViewState__buildEdit_closure: function _InvoiceEmailViewState__buildEdit_closure(t0) { this.state = t0; }, _InvoiceEmailViewState__buildEdit_closure0: function _InvoiceEmailViewState__buildEdit_closure0(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildEdit_closure1: function _InvoiceEmailViewState__buildEdit_closure1(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildEdit_closure2: function _InvoiceEmailViewState__buildEdit_closure2(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildHistory_closure: function _InvoiceEmailViewState__buildHistory_closure(t0) { this.activities = t0; }, _InvoiceEmailViewState_build_closure: function _InvoiceEmailViewState_build_closure(t0) { this.invoice = t0; }, _InvoiceEmailViewState_build_closure0: function _InvoiceEmailViewState_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.viewModel = t2; _.localization = t3; }, _InvoiceEmailViewState_build_closure1: function _InvoiceEmailViewState_build_closure1(t0) { this.invoice = t0; }, _InvoiceEmailViewState_build_closure2: function _InvoiceEmailViewState_build_closure2(t0, t1) { this.$this = t0; this.viewModel = t1; }, __InvoiceEmailViewState_State_SingleTickerProviderStateMixin: function __InvoiceEmailViewState_State_SingleTickerProviderStateMixin() { }, InvoiceItemListTile: function InvoiceItemListTile(t0, t1, t2, t3) { var _ = this; _.onTap = t0; _.invoice = t1; _.invoiceItem = t2; _.key = t3; }, TaxRateDropdown: function TaxRateDropdown(t0, t1, t2, t3, t4) { var _ = this; _.labelText = t0; _.onSelected = t1; _.initialTaxName = t2; _.initialTaxRate = t3; _.key = t4; }, _TaxRateDropdownState: function _TaxRateDropdownState(t0, t1) { var _ = this; _._tax_rate_dropdown$_textController = t0; _._widget = _._selectedTaxRate = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaxRateDropdownState_didChangeDependencies_closure: function _TaxRateDropdownState_didChangeDependencies_closure(t0) { this.taxState = t0; }, _TaxRateDropdownState_didChangeDependencies_closure0: function _TaxRateDropdownState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaxRateDropdownState_didChangeDependencies_closure1: function _TaxRateDropdownState_didChangeDependencies_closure1(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure: function _TaxRateDropdownState_build_closure(t0) { this.taxState = t0; }, _TaxRateDropdownState_build_closure0: function _TaxRateDropdownState_build_closure0(t0) { this.taxState = t0; }, _TaxRateDropdownState_build_closure1: function _TaxRateDropdownState_build_closure1(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure2: function _TaxRateDropdownState_build_closure2(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure3: function _TaxRateDropdownState_build_closure3(t0) { this.$this = t0; }, TaxRateField: function TaxRateField(t0, t1, t2, t3, t4) { var _ = this; _.onNameChanged = t0; _.onAmountChanged = t1; _.initialTaxName = t2; _.initialTaxAmount = t3; _.key = t4; }, TaxRateField_build_closure: function TaxRateField_build_closure(t0) { this.$this = t0; }, TaxRateField_build_closure0: function TaxRateField_build_closure0(t0) { this.$this = t0; }, LinkTextSpan$(style, text, url) { var t1 = A.TapGestureRecognizer$(null); t1.onTap = new A.LinkTextSpan_closure(url); return new A.LinkTextSpan(text, null, t1, B.SystemMouseCursor_click, style); }, LinkTextRelatedEntity: function LinkTextRelatedEntity(t0, t1, t2) { this.entity = t0; this.relation = t1; this.key = t2; }, _LinkTextRelatedEntityState: function _LinkTextRelatedEntityState(t0) { var _ = this; _._link_text$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _LinkTextRelatedEntityState_build_closure2: function _LinkTextRelatedEntityState_build_closure2(t0) { this.$this = t0; }, _LinkTextRelatedEntityState_build__closure: function _LinkTextRelatedEntityState_build__closure(t0) { this.$this = t0; }, _LinkTextRelatedEntityState_build_closure1: function _LinkTextRelatedEntityState_build_closure1(t0) { this.$this = t0; }, _LinkTextRelatedEntityState_build__closure0: function _LinkTextRelatedEntityState_build__closure0(t0) { this.$this = t0; }, _LinkTextRelatedEntityState_build_closure0: function _LinkTextRelatedEntityState_build_closure0(t0) { this.$this = t0; }, _LinkTextRelatedEntityState_build_closure: function _LinkTextRelatedEntityState_build_closure(t0) { this.$this = t0; }, LinkTextSpan: function LinkTextSpan(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.children = t1; _.recognizer = t2; _.mouseCursor = t3; _.style = t4; }, LinkTextSpan_closure: function LinkTextSpan_closure(t0) { this.url = t0; }, ListFilter: function ListFilter(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.entityType = t0; _.filter = t1; _.onFilterChanged = t2; _.entityIds = t3; _.statuses = t4; _.onSelectedStatus = t5; _.onSelectedState = t6; _.key = t7; }, _ListFilterState: function _ListFilterState(t0, t1) { var _ = this; _._list_filter$_focusNode = _._filterController = null; _._debouncer = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ListFilterState_onFocusChanged_closure: function _ListFilterState_onFocusChanged_closure() { }, _ListFilterState_build_closure: function _ListFilterState_build_closure(t0) { this.$this = t0; }, _ListFilterState_build_closure0: function _ListFilterState_build_closure0(t0) { this.$this = t0; }, _ListFilterState_build__closure5: function _ListFilterState_build__closure5(t0, t1) { this.$this = t0; this.value = t1; }, _ListFilterState_build_closure3: function _ListFilterState_build_closure3(t0, t1) { this.$this = t0; this.state = t1; }, _ListFilterState_build__closure2: function _ListFilterState_build__closure2(t0) { this.stateFilters = t0; }, _ListFilterState_build__closure3: function _ListFilterState_build__closure3(t0) { this.selected = t0; }, _ListFilterState_build_closure2: function _ListFilterState_build_closure2(t0) { this.localization = t0; }, _ListFilterState_build_closure1: function _ListFilterState_build_closure1(t0) { this.localization = t0; }, _ListFilterState_build__closure4: function _ListFilterState_build__closure4(t0) { this.localization = t0; }, _ListFilterState_build_closure6: function _ListFilterState_build_closure6(t0, t1) { this.$this = t0; this.state = t1; }, _ListFilterState_build__closure: function _ListFilterState_build__closure(t0) { this.statusFilters = t0; }, _ListFilterState_build___closure0: function _ListFilterState_build___closure0() { }, _ListFilterState_build__closure0: function _ListFilterState_build__closure0(t0) { this.selected = t0; }, _ListFilterState_build___closure: function _ListFilterState_build___closure() { }, _ListFilterState_build_closure5: function _ListFilterState_build_closure5(t0) { this.localization = t0; }, _ListFilterState_build_closure4: function _ListFilterState_build_closure4(t0) { this.localization = t0; }, _ListFilterState_build__closure1: function _ListFilterState_build__closure1() { }, ListScaffold$(appBarActions, appBarLeadingActions, appBarTitle, body, bottomNavigationBar, entityType, floatingActionButton, onCancelSettingsIndex, onCancelSettingsSection, onCheckboxPressed, onHamburgerLongPress) { return new A.ListScaffold(entityType, body, bottomNavigationBar, floatingActionButton, appBarTitle, appBarActions, appBarLeadingActions, onHamburgerLongPress, onCancelSettingsSection, onCancelSettingsIndex, onCheckboxPressed, null); }, ListScaffold: function ListScaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.entityType = t0; _.body = t1; _.bottomNavigationBar = t2; _.floatingActionButton = t3; _.appBarTitle = t4; _.appBarActions = t5; _.appBarLeadingActions = t6; _.onHamburgerLongPress = t7; _.onCancelSettingsSection = t8; _.onCancelSettingsIndex = t9; _.onCheckboxPressed = t10; _.key = t11; }, ListScaffold_build_closure: function ListScaffold_build_closure(t0) { this.context = t0; }, ListScaffold_build_closure0: function ListScaffold_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ListScaffold_build_closure1: function ListScaffold_build_closure1(t0, t1) { this.$this = t0; this.localization = t1; }, ListScaffold_build__closure0: function ListScaffold_build__closure0(t0) { this.context = t0; }, ListScaffold_build_closure2: function ListScaffold_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, ListScaffold_build_closure3: function ListScaffold_build_closure3(t0) { this.$this = t0; }, ListScaffold_build_closure6: function ListScaffold_build_closure6(t0) { this.store = t0; }, ListScaffold_build_closure4: function ListScaffold_build_closure4(t0, t1, t2) { this.$this = t0; this.store = t1; this.state = t2; }, ListScaffold_build_closure5: function ListScaffold_build_closure5(t0, t1) { this.state = t0; this.store = t1; }, ListScaffold_build__closure: function ListScaffold_build__closure(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, ActivityListTile: function ActivityListTile(t0, t1, t2) { this.activity = t0; this.enableNavigation = t1; this.key = t2; }, ActivityListTile_build_closure: function ActivityListTile_build_closure(t0, t1) { this.$this = t0; this.client = t1; }, AppListTile$(buttonRow, copyValue, icon, onTap, subtitle, title) { return new A.AppListTile(icon, title, subtitle, onTap, copyValue, buttonRow, null); }, AppListTile: function AppListTile(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.icon = t0; _.title = t1; _.subtitle = t2; _.onTap = t3; _.copyValue = t4; _.buttonRow = t5; _.key = t6; }, AppListTile_build_closure0: function AppListTile_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, AppListTile_build_closure: function AppListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ListDivider: function ListDivider(t0) { this.key = t0; }, ListFilterMessage: function ListFilterMessage(t0, t1, t2, t3, t4, t5) { var _ = this; _.filterEntityId = t0; _.filterEntityType = t1; _.onPressed = t2; _.onClearPressed = t3; _.isSettings = t4; _.key = t5; }, FilterListTile: function FilterListTile(t0, t1, t2, t3, t4, t5) { var _ = this; _.entityType = t0; _.entity = t1; _.onPressed = t2; _.onClearPressed = t3; _.isSettings = t4; _.key = t5; }, FilterListTile_build_closure: function FilterListTile_build_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, FilterListTile_build__closure: function FilterListTile_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, SelectedIndicator: function SelectedIndicator(t0, t1, t2, t3) { var _ = this; _.child = t0; _.isSelected = t1; _.isMenu = t2; _.key = t3; }, LiveText: function LiveText(t0, t1, t2, t3) { var _ = this; _.duration = t0; _.value = t1; _.style = t2; _.key = t3; }, _LiveTextState: function _LiveTextState(t0) { var _ = this; _._widget = _._live_text$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _LiveTextState_initState_closure: function _LiveTextState_initState_closure(t0) { this.$this = t0; }, _LiveTextState_initState__closure: function _LiveTextState_initState__closure() { }, LoadingIndicator: function LoadingIndicator(t0, t1, t2) { this.height = t0; this.useCard = t1; this.key = t2; }, MainScreen: function MainScreen(t0) { this.key = t0; }, MainScreen_build_closure: function MainScreen_build_closure() { }, MainScreen_build__closure: function MainScreen_build__closure(t0) { this.store = t0; }, EntityScreens: function EntityScreens(t0, t1, t2) { this.entityType = t0; this.editingFilterEntity = t1; this.key = t2; }, SettingsScreens: function SettingsScreens(t0) { this.key = t0; }, DrawerTile$(company, entityType, icon, iconTooltip, onLongPress, onTap, title) { return new A.DrawerTile(company, entityType, icon, title, onTap, onLongPress, iconTooltip, null); }, _showContactUs(context) { A.showDialog(null, true, new A._showContactUs_closure(), context, null, true, type$.legacy_ContactUsDialog); }, _showUpdate(context) { A.showDialog(null, false, new A._showUpdate_closure(), context, null, true, type$.legacy_UpdateDialog); }, _showConnectStripe(context) { var t2, t3, _null = null, _s27_ = "unauthorized_stripe_warning", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t3 = J.$index$asx(t2.$index(0, t1), _s27_); if (t3 == null) t3 = J.$index$asx(t2.$index(0, "en"), _s27_); t1 = J.$index$asx(t2.$index(0, t1), "view_settings"); if (t1 == null) t1 = ""; A.showMessageDialog(context, t3, _null, A._setArrayType([A.TextButton$(false, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showConnectStripe_closure(), _null)], type$.JSArray_legacy_TextButton)); }, _showAbout(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), store, state, t1, t2; var $async$_showAbout = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = Date.now(); A.showDialog(null, true, new A._showAbout_closure(t1, A.Image$asset("assets/images/icon.png", 40, 40), "\xa9 " + A.Primitives_getYear(new A.DateTime(t2, false)) + " Invoice Ninja", state, store), context, null, true, type$.Null); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_showAbout, $async$completer); }, MenuDrawer: function MenuDrawer(t0, t1) { this.viewModel = t0; this.key = t1; }, _MenuDrawerState: function _MenuDrawerState(t0) { var _ = this; _._menu_drawer$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _MenuDrawerState_build__companyLogo: function _MenuDrawerState_build__companyLogo() { }, _MenuDrawerState_build__companyListItem: function _MenuDrawerState_build__companyListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.state = t1; _.store = t2; _._companyLogo = t3; _.localization = t4; _.context = t5; }, _MenuDrawerState_build__companyListItem_closure: function _MenuDrawerState_build__companyListItem_closure(t0) { this.company = t0; }, _MenuDrawerState_build__companyListItem_closure2: function _MenuDrawerState_build__companyListItem_closure2(t0) { this.$this = t0; }, _MenuDrawerState_build__companyListItem__closure0: function _MenuDrawerState_build__companyListItem__closure0(t0) { this.$this = t0; }, _MenuDrawerState_build__companyListItem_closure3: function _MenuDrawerState_build__companyListItem_closure3(t0) { this.$this = t0; }, _MenuDrawerState_build__companyListItem__closure: function _MenuDrawerState_build__companyListItem__closure(t0) { this.$this = t0; }, _MenuDrawerState_build__companyListItem_closure0: function _MenuDrawerState_build__companyListItem_closure0(t0) { this.store = t0; }, _MenuDrawerState_build__companyListItem_closure1: function _MenuDrawerState_build__companyListItem_closure1(t0, t1) { this.store = t0; this.state = t1; }, _MenuDrawerState_build_closure: function _MenuDrawerState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _._companyListItem = t1; _.state = t2; _.localization = t3; }, _MenuDrawerState_build__closure1: function _MenuDrawerState_build__closure1(t0) { this._companyListItem = t0; }, _MenuDrawerState_build_closure0: function _MenuDrawerState_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.localization = t3; }, _MenuDrawerState_build__closure0: function _MenuDrawerState_build__closure0(t0) { this.companyId = t0; }, _MenuDrawerState_build_closure3: function _MenuDrawerState_build_closure3(t0, t1) { this.state = t0; this._companyListItem = t1; }, _MenuDrawerState_build__closure: function _MenuDrawerState_build__closure(t0) { this._companyListItem = t0; }, _MenuDrawerState_build_closure1: function _MenuDrawerState_build_closure1(t0, t1) { this.state = t0; this._companyListItem = t1; }, _MenuDrawerState_build_closure2: function _MenuDrawerState_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.context = t2; _.localization = t3; }, _MenuDrawerState_build_closure4: function _MenuDrawerState_build_closure4(t0, t1, t2) { this.store = t0; this.company = t1; this.state = t2; }, _MenuDrawerState_build_closure5: function _MenuDrawerState_build_closure5(t0, t1, t2) { this.store = t0; this.company = t1; this.state = t2; }, _MenuDrawerState_build_closure6: function _MenuDrawerState_build_closure6(t0, t1) { this.store = t0; this.company = t1; }, _MenuDrawerState_build_closure7: function _MenuDrawerState_build_closure7(t0, t1) { this.store = t0; this.company = t1; }, _MenuDrawerState_build_closure9: function _MenuDrawerState_build_closure9() { }, _MenuDrawerState_build_closure8: function _MenuDrawerState_build_closure8(t0) { this.store = t0; }, _MenuDrawerState_build_closure10: function _MenuDrawerState_build_closure10() { }, _MenuDrawerState_build_closure11: function _MenuDrawerState_build_closure11() { }, DrawerTile: function DrawerTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.company = t0; _.entityType = t1; _.icon = t2; _.title = t3; _.onTap = t4; _.onLongPress = t5; _.iconTooltip = t6; _.key = t7; }, _DrawerTileState: function _DrawerTileState(t0) { var _ = this; _._menu_drawer$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DrawerTileState_build_closure: function _DrawerTileState_build_closure(t0) { this.$this = t0; }, _DrawerTileState_build_closure0: function _DrawerTileState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _DrawerTileState_build_closure1: function _DrawerTileState_build_closure1(t0, t1, t2, t3) { var _ = this; _.context = t0; _.navigator = t1; _.store = t2; _.uiState = t3; }, _DrawerTileState_build_closure2: function _DrawerTileState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.navigator = t2; }, _DrawerTileState_build_closure3: function _DrawerTileState_build_closure3(t0) { this.$this = t0; }, _DrawerTileState_build__closure0: function _DrawerTileState_build__closure0(t0) { this.$this = t0; }, _DrawerTileState_build_closure4: function _DrawerTileState_build_closure4(t0) { this.$this = t0; }, _DrawerTileState_build__closure: function _DrawerTileState_build__closure(t0) { this.$this = t0; }, SidebarFooter: function SidebarFooter(t0) { this.key = t0; }, SidebarFooter_build_closure: function SidebarFooter_build_closure(t0, t1, t2) { this.context = t0; this.localization = t1; this.store = t2; }, SidebarFooter_build__closure4: function SidebarFooter_build__closure4() { }, SidebarFooter_build__closure5: function SidebarFooter_build__closure5(t0, t1) { this.store = t0; this.context = t1; }, SidebarFooter_build_closure0: function SidebarFooter_build_closure0(t0) { this.context = t0; }, SidebarFooter_build_closure1: function SidebarFooter_build_closure1(t0) { this.context = t0; }, SidebarFooter_build_closure2: function SidebarFooter_build_closure2(t0) { this.context = t0; }, SidebarFooter_build_closure3: function SidebarFooter_build_closure3(t0, t1, t2) { this.context = t0; this.localization = t1; this.store = t2; }, SidebarFooter_build__closure2: function SidebarFooter_build__closure2(t0) { this.store = t0; }, SidebarFooter_build__closure0: function SidebarFooter_build__closure0(t0) { this.context = t0; }, SidebarFooter_build__closure1: function SidebarFooter_build__closure1() { }, SidebarFooter_build__closure3: function SidebarFooter_build__closure3(t0, t1) { this.context = t0; this.store = t1; }, SidebarFooter_build_closure4: function SidebarFooter_build_closure4(t0) { this.context = t0; }, SidebarFooter_build_closure5: function SidebarFooter_build_closure5() { }, SidebarFooter_build_closure6: function SidebarFooter_build_closure6(t0) { this.state = t0; }, SidebarFooter_build_closure7: function SidebarFooter_build_closure7(t0) { this.context = t0; }, SidebarFooter_build_closure8: function SidebarFooter_build_closure8(t0, t1) { this.context = t0; this.state = t1; }, SidebarFooter_build__closure: function SidebarFooter_build__closure(t0) { this.state = t0; }, SidebarFooter_build_closure9: function SidebarFooter_build_closure9(t0) { this.store = t0; }, SidebarFooterCollapsed: function SidebarFooterCollapsed(t0) { this.key = t0; }, SidebarFooterCollapsed_build_closure0: function SidebarFooterCollapsed_build_closure0(t0, t1) { this.localization = t0; this.context = t1; }, SidebarFooterCollapsed_build_closure: function SidebarFooterCollapsed_build_closure(t0, t1) { this.state = t0; this.localization = t1; }, SidebarFooterCollapsed_build_closure1: function SidebarFooterCollapsed_build_closure1(t0) { this.store = t0; }, _showContactUs_closure: function _showContactUs_closure() { }, _showUpdate_closure: function _showUpdate_closure() { }, _showConnectStripe_closure: function _showConnectStripe_closure() { }, _showAbout_closure: function _showAbout_closure(t0, t1, t2, t3, t4) { var _ = this; _.localization = t0; _.apppIcon = t1; _.appLegalese = t2; _.state = t3; _.store = t4; }, _showAbout__closure: function _showAbout__closure(t0, t1, t2, t3) { var _ = this; _.context = t0; _.apppIcon = t1; _.appLegalese = t2; _.state = t3; }, _showAbout__closure0: function _showAbout__closure0(t0) { this.context = t0; }, _showAbout__closure2: function _showAbout__closure2(t0, t1) { this.state = t0; this.localization = t1; }, _showAbout__closure1: function _showAbout__closure1(t0, t1, t2) { this.context = t0; this.localization = t1; this.store = t2; }, _showAbout___closure1: function _showAbout___closure1(t0) { this.store = t0; }, _showAbout__closure3: function _showAbout__closure3(t0, t1) { this.context = t0; this.localization = t1; }, _showAbout___closure0: function _showAbout___closure0(t0) { this.localization = t0; }, _showAbout____closure: function _showAbout____closure(t0, t1) { this.context = t0; this.localization = t1; }, _showAbout_____closure: function _showAbout_____closure(t0) { this.localization = t0; }, _showAbout______closure: function _showAbout______closure(t0) { this.context = t0; }, _showAbout______closure0: function _showAbout______closure0() { }, _showAbout______closure1: function _showAbout______closure1() { }, _showAbout______closure2: function _showAbout______closure2() { }, _showAbout____closure0: function _showAbout____closure0(t0) { this.context = t0; }, _showAbout____closure1: function _showAbout____closure1() { }, _showAbout____closure2: function _showAbout____closure2() { }, _showAbout____closure3: function _showAbout____closure3() { }, _showAbout____closure4: function _showAbout____closure4() { }, _showAbout____closure5: function _showAbout____closure5() { }, _showAbout____closure6: function _showAbout____closure6() { }, _showAbout__closure4: function _showAbout__closure4() { }, _showAbout__closure5: function _showAbout__closure5(t0) { this.context = t0; }, _showAbout___closure: function _showAbout___closure() { }, _showAbout__closure6: function _showAbout__closure6(t0) { this.context = t0; }, _showAbout__closure7: function _showAbout__closure7(t0) { this.context = t0; }, _showAbout__closure8: function _showAbout__closure8() { }, _showAbout__closure9: function _showAbout__closure9() { }, _showAbout__closure10: function _showAbout__closure10() { }, _showAbout__closure11: function _showAbout__closure11() { }, _showAbout__closure12: function _showAbout__closure12() { }, ContactUsDialog: function ContactUsDialog(t0) { this.key = t0; }, _ContactUsDialogState: function _ContactUsDialogState(t0) { var _ = this; _._menu_drawer$_message = ""; _._menu_drawer$_isSaving = _._includeLogs = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ContactUsDialogState__sendMessage_closure: function _ContactUsDialogState__sendMessage_closure(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage_closure0: function _ContactUsDialogState__sendMessage_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _ContactUsDialogState__sendMessage__closure0: function _ContactUsDialogState__sendMessage__closure0(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage__closure1: function _ContactUsDialogState__sendMessage__closure1(t0) { this.localization = t0; }, _ContactUsDialogState__sendMessage_closure1: function _ContactUsDialogState__sendMessage_closure1(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage__closure: function _ContactUsDialogState__sendMessage__closure(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure: function _ContactUsDialogState_build_closure(t0) { this.context = t0; }, _ContactUsDialogState_build_closure0: function _ContactUsDialogState_build_closure0(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure1: function _ContactUsDialogState_build_closure1(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure2: function _ContactUsDialogState_build_closure2(t0) { this.$this = t0; }, _ContactUsDialogState_build__closure: function _ContactUsDialogState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, MenuDrawerVM_fromStore(store) { var t3, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list[t2].userCompany; t3 = t1.user; return new A.MenuDrawerVM(state, t1.company, t3, B.JSInt_methods.toString$0(t2), new A.MenuDrawerVM_fromStore_closure(state, store), new A.MenuDrawerVM_fromStore_closure0(state, store), new A.MenuDrawerVM_fromStore_closure1(state, store)); }, MenuDrawerBuilder: function MenuDrawerBuilder(t0) { this.key = t0; }, MenuDrawerBuilder_build_closure: function MenuDrawerBuilder_build_closure() { }, MenuDrawerVM: function MenuDrawerVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.selectedCompany = t1; _.user = t2; _.selectedCompanyIndex = t3; _.onCompanyChanged = t4; _.onAddCompany = t5; _.onLogoutTap = t6; }, MenuDrawerVM_fromStore_closure1: function MenuDrawerVM_fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, MenuDrawerVM_fromStore__closure: function MenuDrawerVM_fromStore__closure(t0) { this.store = t0; }, MenuDrawerVM_fromStore_closure: function MenuDrawerVM_fromStore_closure(t0, t1) { this.state = t0; this.store = t1; }, MenuDrawerVM_fromStore__closure1: function MenuDrawerVM_fromStore__closure1(t0, t1, t2, t3, t4) { var _ = this; _.store = t0; _.index = t1; _.context = t2; _.state = t3; _.company = t4; }, MenuDrawerVM_fromStore_closure0: function MenuDrawerVM_fromStore_closure0(t0, t1) { this.state = t0; this.store = t1; }, MenuDrawerVM_fromStore__closure0: function MenuDrawerVM_fromStore__closure0(t0, t1) { this.context = t0; this.store = t1; }, MenuDrawerVM_fromStore___closure: function MenuDrawerVM_fromStore___closure() { }, MenuDrawerVM_fromStore___closure0: function MenuDrawerVM_fromStore___closure0() { }, DropDownMultiSelect$(childBuilder, decoration, menuItembuilder, onChanged, options, selectedValues, whenEmpty) { return new A.DropDownMultiSelect(options, selectedValues, onChanged, decoration, whenEmpty, childBuilder, menuItembuilder, null); }, _TheState: function _TheState() { }, _theState_closure: function _theState_closure() { }, _SelectRow: function _SelectRow(t0, t1, t2, t3) { var _ = this; _.onChange = t0; _.selected = t1; _.child = t2; _.key = t3; }, _SelectRow_build_closure: function _SelectRow_build_closure(t0) { this.$this = t0; }, DropDownMultiSelect: function DropDownMultiSelect(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.options = t0; _.selectedValues = t1; _.onChanged = t2; _.decoration = t3; _.whenEmpty = t4; _.childBuilder = t5; _.menuItembuilder = t6; _.key = t7; }, _DropDownMultiSelectState: function _DropDownMultiSelectState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _DropDownMultiSelectState_initState_closure: function _DropDownMultiSelectState_initState_closure(t0) { this.$this = t0; }, _DropDownMultiSelectState_initState__closure: function _DropDownMultiSelectState_initState__closure() { }, _DropDownMultiSelectState_build_closure: function _DropDownMultiSelectState_build_closure(t0) { this.$this = t0; }, _DropDownMultiSelectState_build__closure: function _DropDownMultiSelectState_build__closure(t0) { this.$this = t0; }, _DropDownMultiSelectState_build__closure1: function _DropDownMultiSelectState_build__closure1() { }, _DropDownMultiSelectState_build__closure2: function _DropDownMultiSelectState_build__closure2(t0) { this.$this = t0; }, _DropDownMultiSelectState_build___closure: function _DropDownMultiSelectState_build___closure() { }, _DropDownMultiSelectState_build__closure0: function _DropDownMultiSelectState_build__closure0(t0) { this.$this = t0; }, _DropDownMultiSelectState_build___closure0: function _DropDownMultiSelectState_build___closure0(t0, t1) { this.$this = t0; this.x = t1; }, _DropDownMultiSelectState_build____closure: function _DropDownMultiSelectState_build____closure(t0, t1) { this.$this = t0; this.x = t1; }, _DropDownMultiSelectState_build___closure1: function _DropDownMultiSelectState_build___closure1(t0, t1) { this.$this = t0; this.x = t1; }, PortalLinks: function PortalLinks(t0, t1, t2, t3, t4) { var _ = this; _.viewLink = t0; _.copyLink = t1; _.client = t2; _.useIcons = t3; _.key = t4; }, PortalLinks_build_closure: function PortalLinks_build_closure(t0) { this._box_0 = t0; }, PortalLinks_build_closure0: function PortalLinks_build_closure0(t0, t1) { this._box_0 = t0; this.localization = t1; }, EntityPresenter_isFieldNumeric(field) { if (B.JSString_methods.startsWith$1(field, "converted_")) return true; return B.JSArray_methods.contains$1(A._setArrayType(["balance", "paid_to_date", "amount", "quantity", "price", "cost", "line_total", "discount", "profit", "total", "payment", "expense", "invoice_amount", "invoice_balance", "client_balance", "credit_balance", "tax_rate", "tax_amount", "tax_amount1", "tax_amount2", "tax_amount3", "tax_paid", "payment_amount", "net_balance", "rate", "calculated_rate", "duration", "net_amount", "net_total", "age_group_0", "age_group_30", "age_group_60", "age_group_90", "age_group_120", "stock_quantity", "notification_threshold", "partial"], type$.JSArray_legacy_String), field); }, EntityPresenter: function EntityPresenter() { this.context = this.entity = null; }, TableTooltip: function TableTooltip(t0, t1) { this.message = t0; this.key = t1; }, CachedImage$(url, width) { return new A.CachedImage(url, width, null); }, CachedImage: function CachedImage(t0, t1, t2) { this.url = t0; this.width = t1; this.key = t2; }, ResponsivePadding: function ResponsivePadding(t0, t1) { this.child = t0; this.key = t1; }, ReviewApp: function ReviewApp(t0) { this.key = t0; }, _ReviewAppState: function _ReviewAppState(t0) { var _ = this; _._widget = _._likesTheApp = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ScrollableListView: function ScrollableListView(t0, t1, t2, t3) { var _ = this; _.children = t0; _.scrollController = t1; _.padding = t2; _.key = t3; }, _ScrollableListViewState: function _ScrollableListViewState(t0) { var _ = this; _._widget = _._scrollable_listview$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ScrollableListViewBuilder: function ScrollableListViewBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _.itemBuilder = t0; _.separatorBuilder = t1; _.itemCount = t2; _.scrollController = t3; _.padding = t4; _.key = t5; }, _ScrollableListViewBuilderState: function _ScrollableListViewBuilderState(t0) { var _ = this; _._widget = _._scrollable_listview$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, SystemLogViewer: function SystemLogViewer(t0, t1) { this.systemLogs = t0; this.key = t1; }, _SystemLogViewerState: function _SystemLogViewerState(t0, t1) { var _ = this; _._isExpanded = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SystemLogViewerState_build_closure: function _SystemLogViewerState_build_closure() { }, _SystemLogViewerState_build_closure2: function _SystemLogViewerState_build_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, _SystemLogViewerState_build__closure: function _SystemLogViewerState_build__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.index = t2; _.isExpanded = t3; }, _SystemLogViewerState_build_closure0: function _SystemLogViewerState_build_closure0() { }, _SystemLogViewerState_build_closure1: function _SystemLogViewerState_build_closure1(t0, t1, t2) { this.$this = t0; this.state = t1; this.localization = t2; }, _SystemLogViewerState_build__closure0: function _SystemLogViewerState_build__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.systemLog = t1; _.localization = t2; _.client = t3; }, _SystemLogViewerState_build___closure: function _SystemLogViewerState_build___closure(t0, t1) { this.$this = t0; this.systemLog = t1; }, _SystemLogViewerState_build____closure: function _SystemLogViewerState_build____closure(t0, t1) { this.$this = t0; this.systemLog = t1; }, AppDataTable__initOnlyTextColumn(columns) { var t1, result, index, index0; for (t1 = columns.length, result = null, index = 0; index < t1; index0 = index + 1, result = index, index = index0) { columns[index].toString; if (result != null) return null; } return result; }, TableRowInkWell$0(child, onTap) { var _null = null; return new A.TableRowInkWell0(child, onTap, _null, _null, _null, _null, _null, _null, _null, _null, true, B.BoxShape_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, false, _null, false, _null, true, _null); }, DataColumn0: function DataColumn0(t0, t1) { this.label = t0; this.onSort = t1; }, DataRow0: function DataRow0(t0, t1, t2, t3) { var _ = this; _.key = t0; _.onSelectChanged = t1; _.selected = t2; _.cells = t3; }, DataCell0: function DataCell0(t0, t1, t2) { this.child = t0; this.onTap = t1; this.backgroundColor = t2; }, AppDataTable: function AppDataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.dataRowHeight = t4; _.headingRowHeight = t5; _.horizontalMargin = t6; _.columnSpacing = t7; _.showCheckboxColumn = t8; _.rows = t9; _._app_data_table$_onlyTextColumn = t10; _.key = t11; }, AppDataTable__buildHeadingCell_arrowWithPadding: function AppDataTable__buildHeadingCell_arrowWithPadding(t0, t1, t2) { this.onSort = t0; this.sorted = t1; this.ascending = t2; }, AppDataTable_build_closure: function AppDataTable_build_closure() { }, AppDataTable_build_closure0: function AppDataTable_build_closure0() { }, AppDataTable_build_closure1: function AppDataTable_build_closure1(t0) { this.row = t0; }, AppDataTable_build_closure2: function AppDataTable_build_closure2(t0, t1, t2) { this.$this = t0; this.column = t1; this.dataColumnIndex = t2; }, AppDataTable_build_closure3: function AppDataTable_build_closure3(t0) { this.row = t0; }, TableRowInkWell0: function TableRowInkWell0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapUp = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onHighlightChanged = t7; _.onHover = t8; _.mouseCursor = t9; _.containedInkWell = t10; _.highlightShape = t11; _.radius = t12; _.borderRadius = t13; _.customBorder = t14; _.focusColor = t15; _.hoverColor = t16; _.highlightColor = t17; _.overlayColor = t18; _.splashColor = t19; _.splashFactory = t20; _.enableFeedback = t21; _.excludeFromSemantics = t22; _.onFocusChange = t23; _.autofocus = t24; _.focusNode = t25; _.canRequestFocus = t26; _.key = t27; }, TableRowInkWell_getRectCallback_closure0: function TableRowInkWell_getRectCallback_closure0(t0) { this.referenceBox = t0; }, _SortArrow0: function _SortArrow0(t0, t1, t2, t3) { var _ = this; _.visible = t0; _.down = t1; _.duration = t2; _.key = t3; }, _SortArrowState0: function _SortArrowState0(t0, t1, t2) { var _ = this; _._orientationAnimation = _._orientationController = _._app_data_table$_opacityAnimation = _._opacityController = null; _._app_data_table$_orientationOffset = 0; _._app_data_table$_down = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _SortArrowState__rebuild_closure0: function _SortArrowState__rebuild_closure0() { }, _NullTableColumnWidth0: function _NullTableColumnWidth0() { }, _NullWidget3: function _NullWidget3(t0) { this.key = t0; }, __SortArrowState_State_TickerProviderStateMixin0: function __SortArrowState_State_TickerProviderStateMixin0() { }, AppDataTableSource: function AppDataTableSource() { }, AppPaginatedDataTable: function AppPaginatedDataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.initialFirstRowIndex = t4; _.onPageChanged = t5; _.rowsPerPage = t6; _.availableRowsPerPage = t7; _.onRowsPerPageChanged = t8; _.source = t9; _.key = t10; }, AppPaginatedDataTableState: function AppPaginatedDataTableState(t0, t1, t2) { var _ = this; _._app_paginated_data_table$_controller = _._rowCountApproximate = _._rowCount = _._app_paginated_data_table$_firstRowIndex = null; _._app_paginated_data_table$_rows = t0; _._app_paginated_data_table$_tableKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, AppPaginatedDataTableState__handleDataSourceChanged_closure: function AppPaginatedDataTableState__handleDataSourceChanged_closure(t0) { this.$this = t0; }, AppPaginatedDataTableState_pageTo_closure: function AppPaginatedDataTableState_pageTo_closure(t0, t1) { this.$this = t0; this.rowIndex = t1; }, AppPaginatedDataTableState__getBlankRowFor_closure: function AppPaginatedDataTableState__getBlankRowFor_closure() { }, AppPaginatedDataTableState__getProgressIndicatorRowFor_closure: function AppPaginatedDataTableState__getProgressIndicatorRowFor_closure(t0) { this._box_0 = t0; }, AppPaginatedDataTableState__getRows_closure: function AppPaginatedDataTableState__getRows_closure(t0, t1) { this.$this = t0; this.index = t1; }, AppPaginatedDataTableState_build_closure: function AppPaginatedDataTableState_build_closure() { }, AppPaginatedDataTableState_build_closure0: function AppPaginatedDataTableState_build_closure0(t0, t1, t2) { this.$this = t0; this.footerTextStyle = t1; this.footerWidgets = t2; }, EntityDataTableSource: function EntityDataTableSource(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.entityType = t0; _.editingId = t1; _.context = t2; _.entityList = t3; _.entityPresenter = t4; _.entityMap = t5; _.tableColumns = t6; _.onTap = t7; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t8; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, EntityDataTableSource_getRow_closure: function EntityDataTableSource_getRow_closure() { }, EntityDataTableSource_getRow_closure0: function EntityDataTableSource_getRow_closure0(t0, t1) { this.$this = t0; this.entity = t1; }, EntityDataTableSource_getRow_closure2: function EntityDataTableSource_getRow_closure2(t0) { this.entity = t0; }, EntityDataTableSource_getRow_closure1: function EntityDataTableSource_getRow_closure1(t0) { this.entity = t0; }, EntityDataTableSource_getRow_closure3: function EntityDataTableSource_getRow_closure3(t0) { this.entity = t0; }, EntityDataTableSource_getRow_closure4: function EntityDataTableSource_getRow_closure4(t0, t1) { this.$this = t0; this.entity = t1; }, EntityDataTableSource_getRow_closure5: function EntityDataTableSource_getRow_closure5(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.wideFields = t2; _.entity = t3; }, EntityDataTableSource_getRow__closure: function EntityDataTableSource_getRow__closure(t0, t1) { this.$this = t0; this.entity = t1; }, EntityList$(entityList, entityType, itemBuilder, onClearMultiselect, onRefreshed, onSortColumn, presenter, state, tableColumns) { var t4, t1 = entityType.toString$0(0), t2 = A.S(tableColumns), t3 = state.uiState.filterStack._list; if (t3.length === 0) t3 = null; else { t3 = B.JSArray_methods.get$last(t3); t3 = t3.get$id(t3); } t4 = state.getUIState$1(entityType).get$listUIState(); return new A.EntityList(state, entityType, tableColumns, entityList, onRefreshed, presenter, onSortColumn, itemBuilder, onClearMultiselect, new A.ValueKey("__" + t1 + "_" + t2 + "_" + A.S(t3) + "_" + ((J.get$hashCode$(t4.custom1Filters) ^ J.get$hashCode$(t4.custom2Filters) ^ J.get$hashCode$(t4.custom3Filters) ^ J.get$hashCode$(t4.custom4Filters) ^ J.get$hashCode$(t4.stateFilters) ^ J.get$hashCode$(t4.statusFilters) ^ B.JSInt_methods.get$hashCode(t4.filterClearedAt) ^ J.get$hashCode$(t4.filter) ^ B.JSBool_methods.get$hashCode(t4.sortAscending) ^ B.JSString_methods.get$hashCode(t4.sortField)) >>> 0) + "__", type$.ValueKey_legacy_String)); }, EntityList: function EntityList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.entityType = t1; _.tableColumns = t2; _.entityList = t3; _.onRefreshed = t4; _.presenter = t5; _.onSortColumn = t6; _.itemBuilder = t7; _.onClearMultiselect = t8; _.key = t9; }, _EntityListState: function _EntityListState(t0) { var _ = this; _.dataTableSource = null; _._firstRowIndex = 0; _._widget = _._entity_list$_controller = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityListState_initState_closure: function _EntityListState_initState_closure() { }, _EntityListState_build_closure: function _EntityListState_build_closure(t0, t1) { this.entityType = t0; this.entityId = t1; }, _EntityListState_build_closure7: function _EntityListState_build_closure7(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.$this = t0; _.isList = t1; _.uiState = t2; _.context = t3; _.state = t4; _.store = t5; _.entityList = t6; _.entityMap = t7; _.listUIState = t8; _.isInMultiselect = t9; _.entityType = t10; }, _EntityListState_build__closure: function _EntityListState_build__closure(t0) { this.state = t0; }, _EntityListState_build__closure0: function _EntityListState_build__closure0(t0) { this.store = t0; }, _EntityListState_build__closure2: function _EntityListState_build__closure2(t0) { this.entityList = t0; }, _EntityListState_build__closure1: function _EntityListState_build__closure1(t0, t1) { this.$this = t0; this.entityList = t1; }, _EntityListState_build__closure3: function _EntityListState_build__closure3(t0) { this.state = t0; }, _EntityListState_build__closure4: function _EntityListState_build__closure4(t0) { this.store = t0; }, _EntityListState_build__closure6: function _EntityListState_build__closure6(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.entityList = t1; _.rowsPerPage = t2; _.entityMap = t3; _.listUIState = t4; }, _EntityListState_build___closure: function _EntityListState_build___closure(t0) { this.entityMap = t0; }, _EntityListState_build___closure0: function _EntityListState_build___closure0(t0, t1) { this.value = t0; this.listUIState = t1; }, _EntityListState_build__closure5: function _EntityListState_build__closure5(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.entityType = t2; _.state = t3; }, _EntityListState_build___closure1: function _EntityListState_build___closure1(t0, t1) { this.$this = t0; this.field = t1; }, _EntityListState_build__closure7: function _EntityListState_build__closure7(t0) { this.$this = t0; }, _EntityListState_build__closure8: function _EntityListState_build__closure8(t0) { this.store = t0; }, _EntityListState_build_closure0: function _EntityListState_build_closure0(t0) { this.entityMap = t0; }, _EntityListState_build_closure1: function _EntityListState_build_closure1() { }, _EntityListState_build_closure8: function _EntityListState_build_closure8(t0, t1) { this.$this = t0; this.context = t1; }, _EntityListState_build_closure2: function _EntityListState_build_closure2(t0, t1) { this.entityList = t0; this.entityMap = t1; }, _EntityListState_build__closure13: function _EntityListState_build__closure13(t0) { this.entityMap = t0; }, _EntityListState_build_closure4: function _EntityListState_build_closure4(t0, t1, t2) { this.$this = t0; this.localization = t1; this.entities = t2; }, _EntityListState_build__closure10: function _EntityListState_build__closure10(t0, t1, t2) { this.$this = t0; this.entities = t1; this.action = t2; }, _EntityListState_build_closure3: function _EntityListState_build_closure3(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.state = t2; _.entities = t3; _.actions = t4; }, _EntityListState_build__closure12: function _EntityListState_build__closure12(t0, t1) { this.$this = t0; this.entities = t1; }, _EntityListState_build__closure11: function _EntityListState_build__closure11(t0, t1) { this.actions = t0; this.remaining = t1; }, _EntityListState_build___closure2: function _EntityListState_build___closure2(t0) { this.context = t0; }, _EntityListState_build_closure6: function _EntityListState_build_closure6(t0, t1) { this.$this = t0; this.entities = t1; }, _EntityListState_build__closure9: function _EntityListState_build__closure9(t0) { this.$this = t0; }, _EntityListState_build_closure5: function _EntityListState_build_closure5(t0) { this.$this = t0; }, VariablesHelp: function VariablesHelp(t0, t1) { this.showInvoiceAsQuote = t0; this.key = t1; }, _VariablesHelpState: function _VariablesHelpState(t0, t1, t2) { var _ = this; _._variables$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _VariablesHelpState_build_closure: function _VariablesHelpState_build_closure() { }, _VariablesHelpState_build_closure0: function _VariablesHelpState_build_closure0() { }, _VariablesHelpState_build_closure1: function _VariablesHelpState_build_closure1() { }, _VariableGrid: function _VariableGrid(t0, t1) { this.fields = t0; this.key = t1; }, _VariableGrid_build_closure: function _VariableGrid_build_closure() { }, _VariableGrid_build_closure0: function _VariableGrid_build_closure0(t0) { this.$this = t0; }, _VariableGrid_build__closure: function _VariableGrid_build__closure(t0) { this.context = t0; }, _VariableGrid_build___closure: function _VariableGrid_build___closure(t0, t1) { this.field = t0; this.context = t1; }, __VariablesHelpState_State_SingleTickerProviderStateMixin: function __VariablesHelpState_State_SingleTickerProviderStateMixin() { }, ViewScaffold: function ViewScaffold(t0, t1, t2, t3, t4, t5) { var _ = this; _.isFilter = t0; _.entity = t1; _.body = t2; _.onBackPressed = t3; _.appBarBottom = t4; _.key = t5; }, ViewScaffold_build_closure: function ViewScaffold_build_closure(t0) { this.store = t0; }, ViewScaffold_build_closure0: function ViewScaffold_build_closure0(t0) { this.store = t0; }, ViewScaffold_build_closure1: function ViewScaffold_build_closure1(t0) { this.store = t0; }, ViewScaffold_build_closure2: function ViewScaffold_build_closure2(t0) { this.store = t0; }, ViewScaffold_build_closure6: function ViewScaffold_build_closure6() { }, ViewScaffold_build_closure3: function ViewScaffold_build_closure3(t0, t1, t2) { this.$this = t0; this.store = t1; this.state = t2; }, ViewScaffold_build_closure4: function ViewScaffold_build_closure4(t0, t1, t2) { this.$this = t0; this.state = t1; this.localization = t2; }, ViewScaffold_build__closure: function ViewScaffold_build__closure(t0) { this.$this = t0; }, ViewScaffold_build_closure5: function ViewScaffold_build_closure5(t0) { this.$this = t0; }, WebSessionTimeout: function WebSessionTimeout(t0, t1) { this.child = t0; this.key = t1; }, _WebSessionTimeoutState: function _WebSessionTimeoutState(t0) { var _ = this; _._widget = _._web_session_timeout$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _WebSessionTimeoutState_initState_closure: function _WebSessionTimeoutState_initState_closure(t0) { this.$this = t0; }, WebSocketRefresh: function WebSocketRefresh(t0, t1) { this.child = t0; this.key = t1; }, _WebSocketRefreshState: function _WebSocketRefreshState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, InitScreen: function InitScreen(t0) { this.key = t0; }, InitScreen_build_closure0: function InitScreen_build_closure0(t0) { this.context = t0; }, InitScreen_build_closure: function InitScreen_build_closure() { }, LockScreen: function LockScreen(t0, t1) { this.onAuthenticatePressed = t0; this.key = t1; }, LoginView: function LoginView(t0, t1) { this.viewModel = t0; this.key = t1; }, _LoginState: function _LoginState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._login_view$_formKey = t0; _._login_view$_firstNameController = t1; _._login_view$_lastNameController = t2; _._login_view$_emailController = t3; _._login_view$_passwordController = t4; _._login_view$_urlController = t5; _._secretController = t6; _._oneTimePasswordController = t7; _._tokenController = t8; _._buttonController = t9; _._loginError = ""; _._loginType = "email"; _._loginTypes = null; _._privacyChecked = _._termsChecked = _._login_view$_autoValidate = _._recoverPassword = _._createAccount = _._isSelfHosted = _._tokenLogin = false; _._widget = null; _._debugLifecycleState = t10; _._framework$_element = null; }, _LoginState__submitSignUpForm_closure: function _LoginState__submitSignUpForm_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _LoginState__submitSignUpForm_closure0: function _LoginState__submitSignUpForm_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _LoginState__submitSignUpForm__closure1: function _LoginState__submitSignUpForm__closure1(t0) { this.context = t0; }, _LoginState__submitSignUpForm_closure1: function _LoginState__submitSignUpForm_closure1(t0) { this.$this = t0; }, _LoginState__submitSignUpForm__closure0: function _LoginState__submitSignUpForm__closure0(t0) { this.$this = t0; }, _LoginState__submitSignUpForm_closure2: function _LoginState__submitSignUpForm_closure2(t0) { this.$this = t0; }, _LoginState__submitSignUpForm__closure: function _LoginState__submitSignUpForm__closure(t0, t1) { this.$this = t0; this.error = t1; }, _LoginState__submitLoginForm_closure: function _LoginState__submitLoginForm_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _LoginState__submitLoginForm_closure0: function _LoginState__submitLoginForm_closure0(t0) { this.$this = t0; }, _LoginState__submitLoginForm__closure0: function _LoginState__submitLoginForm__closure0(t0) { this.$this = t0; }, _LoginState__submitLoginForm___closure: function _LoginState__submitLoginForm___closure() { }, _LoginState__submitLoginForm_closure1: function _LoginState__submitLoginForm_closure1(t0) { this.$this = t0; }, _LoginState__submitLoginForm__closure: function _LoginState__submitLoginForm__closure(t0, t1) { this.$this = t0; this.error = t1; }, _LoginState_build_closure: function _LoginState_build_closure() { }, _LoginState_build_closure0: function _LoginState_build_closure0(t0) { this.$this = t0; }, _LoginState_build__closure5: function _LoginState_build__closure5(t0) { this.$this = t0; }, _LoginState_build_closure1: function _LoginState_build_closure1(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.context = t2; }, _LoginState_build_closure2: function _LoginState_build_closure2(t0) { this.$this = t0; }, _LoginState_build__closure4: function _LoginState_build__closure4(t0, t1) { this.$this = t0; this.index = t1; }, _LoginState_build_closure3: function _LoginState_build_closure3(t0) { this.$this = t0; }, _LoginState_build__closure3: function _LoginState_build__closure3(t0, t1) { this.$this = t0; this.index = t1; }, _LoginState_build_closure5: function _LoginState_build_closure5(t0) { this.localization = t0; }, _LoginState_build_closure4: function _LoginState_build_closure4(t0) { this.$this = t0; }, _LoginState_build_closure6: function _LoginState_build_closure6(t0) { this.$this = t0; }, _LoginState_build_closure7: function _LoginState_build_closure7(t0) { this.$this = t0; }, _LoginState_build_closure8: function _LoginState_build_closure8(t0) { this.$this = t0; }, _LoginState_build_closure9: function _LoginState_build_closure9(t0) { this.$this = t0; }, _LoginState_build__closure2: function _LoginState_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, _LoginState_build_closure10: function _LoginState_build_closure10(t0) { this.$this = t0; }, _LoginState_build__closure1: function _LoginState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _LoginState_build_closure11: function _LoginState_build_closure11(t0) { this.$this = t0; }, _LoginState_build_closure12: function _LoginState_build_closure12(t0) { this.$this = t0; }, _LoginState_build_closure13: function _LoginState_build_closure13(t0) { this.$this = t0; }, _LoginState_build__closure0: function _LoginState_build__closure0(t0) { this.$this = t0; }, _LoginState_build_closure14: function _LoginState_build_closure14(t0) { this.$this = t0; }, _LoginState_build__closure: function _LoginState_build__closure(t0) { this.$this = t0; }, _LoginState_build_closure15: function _LoginState_build_closure15() { }, _LoginState_build_closure16: function _LoginState_build_closure16(t0) { this.platform = t0; }, RuledText: function RuledText(t0, t1) { this.text = t0; this.key = t1; }, LoginVM_fromStore(store) { var _s6_ = "_state", t1 = new A.LoginVM_fromStore__handleLogin(store), t2 = new A.LoginVM_fromStore__formatApiUrl(), t3 = A._lateReadCheck(store.__Store__state, _s6_); A._lateReadCheck(store.__Store__state, _s6_).toString; return new A.LoginVM(t3, A._lateReadCheck(store.__Store__state, _s6_).authState, new A.LoginVM_fromStore_closure(store, t2, t1), new A.LoginVM_fromStore_closure0(store, t2), new A.LoginVM_fromStore_closure1(store, t1), new A.LoginVM_fromStore_closure2(), new A.LoginVM_fromStore_closure3(store, t2, t1), new A.LoginVM_fromStore_closure4(store, t1), new A.LoginVM_fromStore_closure5(store, t2, t1), new A.LoginVM_fromStore_closure6(store, t1), new A.LoginVM_fromStore_closure7(store, t2, t1), new A.LoginVM_fromStore_closure8(store, t1)); }, LoginScreen: function LoginScreen(t0) { this.key = t0; }, LoginScreen_build_closure: function LoginScreen_build_closure() { }, LoginVM: function LoginVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.state = t0; _.authState = t1; _.onLoginPressed = t2; _.onRecoverPressed = t3; _.onSignUpPressed = t4; _.onTokenLoginPressed = t5; _.onGoogleLoginPressed = t6; _.onGoogleSignUpPressed = t7; _.onMicrosoftLoginPressed = t8; _.onMicrosoftSignUpPressed = t9; _.onAppleLoginPressed = t10; _.onAppleSignUpPressed = t11; }, LoginVM_fromStore__handleLogin: function LoginVM_fromStore__handleLogin(t0) { this.store = t0; }, LoginVM_fromStore__handleLogin_closure: function LoginVM_fromStore__handleLogin_closure(t0, t1, t2) { this.layout = t0; this.isSignUp = t1; this.store = t2; }, LoginVM_fromStore__formatApiUrl: function LoginVM_fromStore__formatApiUrl() { }, LoginVM_fromStore_closure3: function LoginVM_fromStore_closure3(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure6: function LoginVM_fromStore__closure6(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.completer = t0; _.context = t1; _.store = t2; _._formatApiUrl = t3; _.url = t4; _.secret = t5; _.oneTimePassword = t6; _._handleLogin = t7; }, LoginVM_fromStore___closure2: function LoginVM_fromStore___closure2(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure4: function LoginVM_fromStore_closure4(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure5: function LoginVM_fromStore__closure5(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.context = t1; _.store = t2; _.url = t3; _._handleLogin = t4; }, LoginVM_fromStore___closure1: function LoginVM_fromStore___closure1(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure5: function LoginVM_fromStore_closure5(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure3: function LoginVM_fromStore__closure3(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.store = t0; _.completer = t1; _._formatApiUrl = t2; _.url = t3; _.secret = t4; _.context = t5; _.oneTimePassword = t6; _._handleLogin = t7; }, LoginVM_fromStore___closure0: function LoginVM_fromStore___closure0(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore__closure4: function LoginVM_fromStore__closure4(t0) { this.completer = t0; }, LoginVM_fromStore_closure6: function LoginVM_fromStore_closure6(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure1: function LoginVM_fromStore__closure1(t0, t1, t2, t3, t4) { var _ = this; _.store = t0; _.url = t1; _.completer = t2; _._handleLogin = t3; _.context = t4; }, LoginVM_fromStore___closure: function LoginVM_fromStore___closure(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore__closure2: function LoginVM_fromStore__closure2(t0) { this.completer = t0; }, LoginVM_fromStore_closure7: function LoginVM_fromStore_closure7(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure0: function LoginVM_fromStore__closure0(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure8: function LoginVM_fromStore_closure8(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure: function LoginVM_fromStore__closure(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure1: function LoginVM_fromStore_closure1(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure7: function LoginVM_fromStore__closure7(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure0: function LoginVM_fromStore_closure0(t0, t1) { this.store = t0; this._formatApiUrl = t1; }, LoginVM_fromStore_closure: function LoginVM_fromStore_closure(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure8: function LoginVM_fromStore__closure8(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure2: function LoginVM_fromStore_closure2() { }, ClientListItem: function ClientListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.client = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ClientListItem_build_closure: function ClientListItem_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.filterMatch = t5; }, ClientListItem_build__closure2: function ClientListItem_build__closure2(t0) { this.$this = t0; }, ClientListItem_build__closure1: function ClientListItem_build__closure1(t0) { this.$this = t0; }, ClientListItem_build__closure: function ClientListItem_build__closure(t0) { this.$this = t0; }, ClientListItem_build__closure0: function ClientListItem_build__closure0(t0) { this.$this = t0; }, ClientListItem_build__closure5: function ClientListItem_build__closure5(t0) { this.$this = t0; }, ClientListItem_build__closure4: function ClientListItem_build__closure4(t0) { this.$this = t0; }, ClientListItem_build__closure3: function ClientListItem_build__closure3(t0) { this.$this = t0; }, ClientListVM_fromStore(store) { var t6, t7, t8, t9, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredClientList(), t2 = state.getUISelection$1(B.EntityType_client), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.clientState; t8 = t7.map; t7 = t7.list; t9 = t6.groupState.map; t4 = t4.clientUIState.listUIState; t6 = t1.call$7(t2, t8, t7, t9, t4, t6.userState.map, state.staticState); t9 = t3[t5]; t7 = t9.clientState.map; t4 = t4.filter; t9 = t9.userCompany.settings; t1 = t9 == null ? null : t9.getTableColumns$1(B.EntityType_client); if (t1 == null) { t3[t5].toString; t1 = A._setArrayType(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], type$.JSArray_legacy_String); } return new A.ClientListVM(state, t6, t7, t4, new A.ClientListVM_fromStore_closure(new A.ClientListVM_fromStore__handleRefresh(store)), t1, new A.ClientListVM_fromStore_closure0(store), new A.ClientListVM_fromStore_closure1(store)); }, ClientListBuilder: function ClientListBuilder(t0) { this.key = t0; }, ClientListBuilder_build_closure: function ClientListBuilder_build_closure() { }, ClientListBuilder_build__closure: function ClientListBuilder_build__closure(t0) { this.viewModel = t0; }, ClientListVM: function ClientListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.clientList = t1; _.clientMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ClientListVM_fromStore__handleRefresh: function ClientListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ClientListVM_fromStore_closure: function ClientListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ClientListVM_fromStore_closure0: function ClientListVM_fromStore_closure0(t0) { this.store = t0; }, ClientListVM_fromStore_closure1: function ClientListVM_fromStore_closure1(t0) { this.store = t0; }, ClientPdfView: function ClientPdfView(t0, t1, t2) { this.viewModel = t0; this.showAppBar = t1; this.key = t2; }, _ClientPdfViewState: function _ClientPdfViewState(t0, t1, t2, t3) { var _ = this; _._client_pdf$_isLoading = false; _._client_pdf$_response = null; _._client_pdf$_dateRange = t0; _._client_pdf$_startDate = t1; _._client_pdf$_endDate = t2; _._client_pdf$_status = "all"; _._showAging = _._showPayments = true; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ClientPdfViewState_loadPdf_closure: function _ClientPdfViewState_loadPdf_closure(t0) { this.$this = t0; }, _ClientPdfViewState_loadPdf_closure0: function _ClientPdfViewState_loadPdf_closure0(t0) { this.$this = t0; }, _ClientPdfViewState_loadPdf__closure0: function _ClientPdfViewState_loadPdf__closure0(t0, t1) { this.$this = t0; this.response = t1; }, _ClientPdfViewState_loadPdf_closure1: function _ClientPdfViewState_loadPdf_closure1(t0) { this.$this = t0; }, _ClientPdfViewState_loadPdf__closure: function _ClientPdfViewState_loadPdf__closure(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure: function _ClientPdfViewState_build_closure(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure4: function _ClientPdfViewState_build__closure4(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure0: function _ClientPdfViewState_build_closure0(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure3: function _ClientPdfViewState_build__closure3(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure2: function _ClientPdfViewState_build_closure2(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure2: function _ClientPdfViewState_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, _ClientPdfViewState_build_closure1: function _ClientPdfViewState_build_closure1(t0) { this.localization = t0; }, _ClientPdfViewState_build_closure4: function _ClientPdfViewState_build_closure4(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure1: function _ClientPdfViewState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _ClientPdfViewState_build_closure3: function _ClientPdfViewState_build_closure3(t0) { this.localization = t0; }, _ClientPdfViewState_build_closure5: function _ClientPdfViewState_build_closure5(t0, t1, t2) { this.$this = t0; this.localization = t1; this.client = t2; }, _ClientPdfViewState_build_closure6: function _ClientPdfViewState_build_closure6(t0) { this.client = t0; }, _ClientPdfViewState_build_closure7: function _ClientPdfViewState_build_closure7(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure0: function _ClientPdfViewState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _ClientPdfViewState_build_closure8: function _ClientPdfViewState_build_closure8(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure: function _ClientPdfViewState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, _ClientPdfViewState_build_closure9: function _ClientPdfViewState_build_closure9(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure10: function _ClientPdfViewState_build_closure10(t0) { this.$this = t0; }, ClientPdfScreen: function ClientPdfScreen(t0) { this.key = t0; }, ClientPdfScreen_build_closure0: function ClientPdfScreen_build_closure0() { }, ClientPdfScreen_build_closure: function ClientPdfScreen_build_closure(t0) { this.$this = t0; }, ClientPdfVM: function ClientPdfVM(t0, t1) { this.state = t0; this.client = t1; }, ClientPresenter: function ClientPresenter() { this.context = this.entity = null; }, ClientPresenter_getField_closure: function ClientPresenter_getField_closure(t0) { this.client = t0; }, ClientPresenter_getField_closure0: function ClientPresenter_getField_closure0() { }, ClientScreen: function ClientScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientScreen_build_closure10: function ClientScreen_build_closure10(t0) { this.store = t0; }, ClientScreen_build_closure7: function ClientScreen_build_closure7(t0) { this.store = t0; }, ClientScreen_build_closure8: function ClientScreen_build_closure8(t0) { this.store = t0; }, ClientScreen_build_closure9: function ClientScreen_build_closure9(t0) { this.store = t0; }, ClientScreen_build_closure4: function ClientScreen_build_closure4(t0) { this.store = t0; }, ClientScreen_build_closure5: function ClientScreen_build_closure5(t0) { this.store = t0; }, ClientScreen_build_closure: function ClientScreen_build_closure(t0) { this.store = t0; }, ClientScreen_build_closure0: function ClientScreen_build_closure0(t0) { this.store = t0; }, ClientScreen_build_closure1: function ClientScreen_build_closure1(t0) { this.store = t0; }, ClientScreen_build_closure2: function ClientScreen_build_closure2(t0) { this.store = t0; }, ClientScreen_build_closure3: function ClientScreen_build_closure3(t0) { this.store = t0; }, ClientScreen_build_closure6: function ClientScreen_build_closure6(t0) { this.context = t0; }, ClientScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].clientState.toString; t4 = $.$get$memoizedFilteredClientList(); t5 = state.getUISelection$1(B.EntityType_client); t6 = t1[t3]; t7 = t6.clientState; t8 = t7.map; t7 = t7.list; t9 = t6.groupState.map; t2 = t2.clientUIState.listUIState; t6 = t4.call$7(t5, t8, t7, t9, t2, t6.userState.map, state.staticState); t1[t3].toString; t2.toString; return new A.ClientScreenVM(t6); }, ClientScreenBuilder: function ClientScreenBuilder(t0) { this.key = t0; }, ClientScreenBuilder_build_closure: function ClientScreenBuilder_build_closure() { }, ClientScreenVM: function ClientScreenVM(t0) { this.clientList = t0; }, ClientEdit: function ClientEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientEditState: function _ClientEditState(t0, t1, t2) { var _ = this; _._client_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ClientEditState_build_closure: function _ClientEditState_build_closure(t0) { this.viewModel = t0; }, _ClientEditState_build_closure0: function _ClientEditState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ClientEditState_build__closure: function _ClientEditState_build__closure() { }, __ClientEditState_State_SingleTickerProviderStateMixin: function __ClientEditState_State_SingleTickerProviderStateMixin() { }, ClientEditBillingAddress: function ClientEditBillingAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditBillingAddressState: function ClientEditBillingAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._client_edit_billing_address$_address1Controller = t0; _._client_edit_billing_address$_address2Controller = t1; _._client_edit_billing_address$_cityController = t2; _._client_edit_billing_address$_stateController = t3; _._client_edit_billing_address$_postalCodeController = t4; _._client_edit_billing_address$_controllers = t5; _._client_edit_billing_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ClientEditBillingAddressState_didChangeDependencies_closure: function ClientEditBillingAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState_didChangeDependencies_closure0: function ClientEditBillingAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditBillingAddressState_dispose_closure: function ClientEditBillingAddressState_dispose_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState__onChanged_closure: function ClientEditBillingAddressState__onChanged_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState__onChanged_closure0: function ClientEditBillingAddressState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditBillingAddressState_build_closure: function ClientEditBillingAddressState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditBillingAddressState_build__closure0: function ClientEditBillingAddressState_build__closure0(t0) { this.country = t0; }, ClientEditBillingAddressState_build_closure0: function ClientEditBillingAddressState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, ClientEditBillingAddressState_build__closure: function ClientEditBillingAddressState_build__closure(t0) { this.$this = t0; }, ClientEditContacts: function ClientEditContacts(t0, t1, t2) { this.viewModel = t0; this.clientViewModel = t1; this.key = t2; }, _ClientEditContactsState: function _ClientEditContactsState(t0) { var _ = this; _._widget = _.selectedContact = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ClientEditContactsState__showContactEditor_closure: function _ClientEditContactsState__showContactEditor_closure(t0, t1) { this.$this = t0; this.contact = t1; }, _ClientEditContactsState__showContactEditor__closure: function _ClientEditContactsState__showContactEditor__closure(t0) { this.contact = t0; }, _ClientEditContactsState_build_closure: function _ClientEditContactsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _ClientEditContactsState_build__closure: function _ClientEditContactsState_build__closure(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientEditContactsState_build_closure0: function _ClientEditContactsState_build_closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientEditContactsState_build_closure1: function _ClientEditContactsState_build_closure1(t0) { this.viewModel = t0; }, ContactListTile0: function ContactListTile0(t0, t1, t2) { this.onTap = t0; this.contact = t1; this.key = t2; }, ContactEditDetails: function ContactEditDetails(t0, t1, t2, t3, t4, t5) { var _ = this; _.index = t0; _.contact = t1; _.viewModel = t2; _.clientViewModel = t3; _.isDialog = t4; _.key = t5; }, ContactEditDetailsState: function ContactEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._client_edit_contacts$_firstNameController = t0; _._client_edit_contacts$_lastNameController = t1; _._client_edit_contacts$_emailController = t2; _._client_edit_contacts$_passwordController = t3; _._client_edit_contacts$_phoneController = t4; _._client_edit_contacts$_custom1Controller = t5; _._client_edit_contacts$_custom2Controller = t6; _._client_edit_contacts$_custom3Controller = t7; _._client_edit_contacts$_custom4Controller = t8; _._client_edit_contacts$_debouncer = t9; _._client_edit_contacts$_controllers = t10; _._widget = _._contact = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ContactEditDetailsState_didChangeDependencies_closure: function ContactEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ContactEditDetailsState_didChangeDependencies_closure0: function ContactEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ContactEditDetailsState_dispose_closure: function ContactEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ContactEditDetailsState__onChanged_closure: function ContactEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ContactEditDetailsState__onChanged_closure0: function ContactEditDetailsState__onChanged_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.contact = t2; }, ContactEditDetailsState_build_closure0: function ContactEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, ContactEditDetailsState_build_closure: function ContactEditDetailsState_build_closure(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure2: function ContactEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, ContactEditDetailsState_build_closure1: function ContactEditDetailsState_build_closure1(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure4: function ContactEditDetailsState_build_closure4(t0) { this.localization = t0; }, ContactEditDetailsState_build_closure3: function ContactEditDetailsState_build_closure3(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure6: function ContactEditDetailsState_build_closure6(t0) { this.localization = t0; }, ContactEditDetailsState_build_closure5: function ContactEditDetailsState_build_closure5(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure7: function ContactEditDetailsState_build_closure7(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure8: function ContactEditDetailsState_build_closure8(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure9: function ContactEditDetailsState_build_closure9(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure10: function ContactEditDetailsState_build_closure10(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure11: function ContactEditDetailsState_build_closure11(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure12: function ContactEditDetailsState_build_closure12(t0, t1) { this.$this = t0; this.viewModel = t1; }, ContactEditDetailsState_build__closure0: function ContactEditDetailsState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, ContactEditDetailsState_build___closure: function ContactEditDetailsState_build___closure(t0) { this.value = t0; }, ContactEditDetailsState_build__closure1: function ContactEditDetailsState_build__closure1(t0) { this.value = t0; }, ContactEditDetailsState_build_closure13: function ContactEditDetailsState_build_closure13(t0, t1) { this.$this = t0; this.context = t1; }, ContactEditDetailsState_build__closure: function ContactEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, ContactEditDetailsState_build_closure14: function ContactEditDetailsState_build_closure14(t0) { this.$this = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.clientUIState, client = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.ClientEditContactsVM(t3._list[t1].userCompany.company, client, t2.editingContact, new A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure(store), new A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0(store), new A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1(store), new A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2(store)); }, ClientEditContactsScreen: function ClientEditContactsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditContactsScreen_build_closure0: function ClientEditContactsScreen_build_closure0() { }, ClientEditContactsScreen_build_closure: function ClientEditContactsScreen_build_closure(t0) { this.$this = t0; }, ClientEditContactsVM: function ClientEditContactsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.client = t1; _.contact = t2; _.onAddContactPressed = t3; _.onRemoveContactPressed = t4; _.onDoneContactPressed = t5; _.onChangedContact = t6; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2(t0) { this.store = t0; }, ClientEditDesktop: function ClientEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditDetails: function ClientEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditDetailsState: function ClientEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._client_edit_details$_numberController = t0; _._client_edit_details$_nameController = t1; _._client_edit_details$_idNumberController = t2; _._client_edit_details$_vatNumberController = t3; _._client_edit_details$_websiteController = t4; _._client_edit_details$_phoneController = t5; _._client_edit_details$_custom1Controller = t6; _._client_edit_details$_custom2Controller = t7; _._client_edit_details$_custom3Controller = t8; _._client_edit_details$_custom4Controller = t9; _._client_edit_details$_debouncer = t10; _._widget = _._client_edit_details$_controllers = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ClientEditDetailsState_didChangeDependencies_closure: function ClientEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditDetailsState_didChangeDependencies_closure0: function ClientEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditDetailsState_dispose_closure: function ClientEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ClientEditDetailsState__onChanged_closure: function ClientEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ClientEditDetailsState__onChanged_closure0: function ClientEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build_closure: function ClientEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, ClientEditDetailsState_build_closure0: function ClientEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build__closure0: function ClientEditDetailsState_build__closure0(t0) { this.groupId = t0; }, ClientEditDetailsState_build_closure1: function ClientEditDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build__closure: function ClientEditDetailsState_build__closure(t0) { this.userId = t0; }, ClientEditFooter: function ClientEditFooter(t0, t1) { this.client = t0; this.key = t1; }, ClientEditFooter_build_closure: function ClientEditFooter_build_closure(t0) { this.store = t0; }, ClientEditNotes: function ClientEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditNotesState: function ClientEditNotesState(t0, t1, t2, t3) { var _ = this; _._client_edit_notes$_publicNotesController = t0; _._client_edit_notes$_privateNotesController = t1; _._client_edit_notes$_controllers = null; _._client_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ClientEditNotesState_didChangeDependencies_closure: function ClientEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditNotesState_didChangeDependencies_closure0: function ClientEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditNotesState_dispose_closure: function ClientEditNotesState_dispose_closure(t0) { this.$this = t0; }, ClientEditNotesState__onChanged_closure: function ClientEditNotesState__onChanged_closure(t0) { this.$this = t0; }, ClientEditNotesState__onChanged_closure0: function ClientEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build_closure: function ClientEditNotesState_build_closure(t0) { this.state = t0; }, ClientEditNotesState_build_closure0: function ClientEditNotesState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build__closure0: function ClientEditNotesState_build__closure0(t0) { this.sizeId = t0; }, ClientEditNotesState_build_closure1: function ClientEditNotesState_build_closure1(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build__closure: function ClientEditNotesState_build__closure(t0) { this.industry = t0; }, ClientEditSettings: function ClientEditSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditSettingsState: function ClientEditSettingsState(t0, t1, t2) { var _ = this; _._client_edit_settings$_taskRateController = t0; _._client_edit_settings$_controllers = null; _._client_edit_settings$_debouncer = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, ClientEditSettingsState_didChangeDependencies_closure: function ClientEditSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditSettingsState_didChangeDependencies_closure0: function ClientEditSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditSettingsState_dispose_closure: function ClientEditSettingsState_dispose_closure(t0) { this.$this = t0; }, ClientEditSettingsState__onChanged_closure: function ClientEditSettingsState__onChanged_closure(t0) { this.$this = t0; }, ClientEditSettingsState__onChanged_closure0: function ClientEditSettingsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build_closure: function ClientEditSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure3: function ClientEditSettingsState_build__closure3(t0) { this.currency = t0; }, ClientEditSettingsState_build_closure0: function ClientEditSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure2: function ClientEditSettingsState_build__closure2(t0) { this.language = t0; }, ClientEditSettingsState_build_closure1: function ClientEditSettingsState_build_closure1(t0, t1) { this.state = t0; this.localization = t1; }, ClientEditSettingsState_build_closure2: function ClientEditSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure1: function ClientEditSettingsState_build__closure1(t0) { this.numDays = t0; }, ClientEditSettingsState_build_closure3: function ClientEditSettingsState_build_closure3(t0, t1) { this.state = t0; this.localization = t1; }, ClientEditSettingsState_build_closure4: function ClientEditSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure0: function ClientEditSettingsState_build__closure0(t0) { this.numDays = t0; }, ClientEditSettingsState_build_closure5: function ClientEditSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure: function ClientEditSettingsState_build__closure(t0) { this.value = t0; }, ClientEditShippingAddress: function ClientEditShippingAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditShippingAddressState: function ClientEditShippingAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._shippingAddress1Controller = t0; _._shippingAddress2Controller = t1; _._shippingCityController = t2; _._shippingStateController = t3; _._shippingPostalCodeController = t4; _._client_edit_shipping_address$_controllers = t5; _._client_edit_shipping_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ClientEditShippingAddressState_didChangeDependencies_closure: function ClientEditShippingAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState_didChangeDependencies_closure0: function ClientEditShippingAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditShippingAddressState_dispose_closure: function ClientEditShippingAddressState_dispose_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState__onChanged_closure: function ClientEditShippingAddressState__onChanged_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState__onChanged_closure0: function ClientEditShippingAddressState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditShippingAddressState_build_closure: function ClientEditShippingAddressState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditShippingAddressState_build__closure0: function ClientEditShippingAddressState_build__closure0(t0) { this.country = t0; }, ClientEditShippingAddressState_build_closure0: function ClientEditShippingAddressState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, ClientEditShippingAddressState_build__closure: function ClientEditShippingAddressState_build__closure(t0) { this.$this = t0; }, ClientEditVM_ClientEditVM$fromStore(store) { var t3, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, client = t1.clientUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; t2 = t1.userCompany.company; t1 = t1.clientState.map; t3 = client.id; t1._map$_map.$index(0, t3); return new A.ClientEditVM(state, t2, client, new A.ClientEditVM_ClientEditVM$fromStore_closure(store), new A.ClientEditVM_ClientEditVM$fromStore_closure0(store, state), new A.ClientEditVM_ClientEditVM$fromStore_closure1(state, store), state.staticState, new A.ClientEditVM_ClientEditVM$fromStore_closure2(store, client), new A.ClientEditVM_ClientEditVM$fromStore_closure3(store, client)); }, ClientEditScreen: function ClientEditScreen(t0) { this.key = t0; }, ClientEditScreen_build_closure0: function ClientEditScreen_build_closure0() { }, ClientEditScreen_build_closure: function ClientEditScreen_build_closure() { }, ClientEditVM: function ClientEditVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.company = t1; _.client = t2; _.onChanged = t3; _.onSavePressed = t4; _.onCancelPressed = t5; _.staticState = t6; _.copyShippingAddress = t7; _.copyBillingAddress = t8; }, ClientEditVM_ClientEditVM$fromStore_closure: function ClientEditVM_ClientEditVM$fromStore_closure(t0) { this.store = t0; }, ClientEditVM_ClientEditVM$fromStore_closure3: function ClientEditVM_ClientEditVM$fromStore_closure3(t0, t1) { this.store = t0; this.client = t1; }, ClientEditVM_ClientEditVM$fromStore__closure: function ClientEditVM_ClientEditVM$fromStore__closure(t0) { this.client = t0; }, ClientEditVM_ClientEditVM$fromStore_closure2: function ClientEditVM_ClientEditVM$fromStore_closure2(t0, t1) { this.store = t0; this.client = t1; }, ClientEditVM_ClientEditVM$fromStore__closure0: function ClientEditVM_ClientEditVM$fromStore__closure0(t0) { this.client = t0; }, ClientEditVM_ClientEditVM$fromStore_closure1: function ClientEditVM_ClientEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, ClientEditVM_ClientEditVM$fromStore_closure0: function ClientEditVM_ClientEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ClientEditVM_ClientEditVM$fromStore__closure1: function ClientEditVM_ClientEditVM$fromStore__closure1(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, ClientEditVM_ClientEditVM$fromStore___closure: function ClientEditVM_ClientEditVM$fromStore___closure() { }, ClientEditVM_ClientEditVM$fromStore___closure0: function ClientEditVM_ClientEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.client = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ClientEditVM_ClientEditVM$fromStore___closure1: function ClientEditVM_ClientEditVM$fromStore___closure1() { }, ClientEditVM_ClientEditVM$fromStore____closure: function ClientEditVM_ClientEditVM$fromStore____closure(t0) { this.error = t0; }, ClientView: function ClientView(t0, t1, t2, t3, t4) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.isTopFilter = t2; _.tabIndex = t3; _.key = t4; }, _ClientViewState: function _ClientViewState(t0, t1, t2) { var _ = this; _._client_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ClientViewState_build_closure0: function _ClientViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.client = t2; }, _ClientViewState_build__closure: function _ClientViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure0: function _ClientViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure1: function _ClientViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure2: function _ClientViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure3: function _ClientViewState_build__closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure4: function _ClientViewState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build_closure: function _ClientViewState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.context = t0; _.userCompany = t1; _.localization = t2; _.client = t3; _.store = t4; }, _ClientViewState_build__closure5: function _ClientViewState_build__closure5(t0, t1, t2, t3) { var _ = this; _.userCompany = t0; _.localization = t1; _.client = t2; _.store = t3; }, _ClientViewState_build___closure: function _ClientViewState_build___closure(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure0: function _ClientViewState_build___closure0(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure1: function _ClientViewState_build___closure1(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure2: function _ClientViewState_build___closure2(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure3: function _ClientViewState_build___closure3(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure4: function _ClientViewState_build___closure4(t0, t1, t2) { this.context = t0; this.store = t1; this.client = t2; }, __ClientViewState_State_SingleTickerProviderStateMixin: function __ClientViewState_State_SingleTickerProviderStateMixin() { }, ClientViewActivity: function ClientViewActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewActivityState: function _ClientViewActivityState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ClientViewActivityState_build_closure0: function _ClientViewActivityState_build_closure0() { }, _ClientViewActivityState_build_closure: function _ClientViewActivityState_build_closure(t0) { this.activities = t0; }, ClientViewDetails: function ClientViewDetails(t0, t1) { this.client = t0; this.key = t1; }, _ClientViewDetailsState: function _ClientViewDetailsState(t0) { var _ = this; _._widget = _._client_view_details$_launched = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ClientViewDetailsState_build__buildDetailsList: function _ClientViewDetailsState_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.client = t1; _.localization = t2; _.context = t3; }, _ClientViewDetailsState_build__buildDetailsList_closure: function _ClientViewDetailsState_build__buildDetailsList_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.listTiles = t1; _.client = t2; _.localization = t3; _.context = t4; }, _ClientViewDetailsState_build__buildDetailsList__closure1: function _ClientViewDetailsState_build__buildDetailsList__closure1(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientViewDetailsState_build__buildDetailsList___closure0: function _ClientViewDetailsState_build__buildDetailsList___closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure2: function _ClientViewDetailsState_build__buildDetailsList__closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _ClientViewDetailsState_build__buildDetailsList___closure: function _ClientViewDetailsState_build__buildDetailsList___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure0: function _ClientViewDetailsState_build__buildDetailsList_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure0: function _ClientViewDetailsState_build__buildDetailsList__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure1: function _ClientViewDetailsState_build__buildDetailsList_closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure: function _ClientViewDetailsState_build__buildDetailsList__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure2: function _ClientViewDetailsState_build__buildDetailsList_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.client = t3; }, _ClientViewDetailsState_build__buildDetailsList_closure3: function _ClientViewDetailsState_build__buildDetailsList_closure3(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.client = t3; }, ClientViewDocuments: function ClientViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientViewDocuments_build_closure: function ClientViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ClientViewDocuments_build_closure0: function ClientViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ClientViewFullwidth: function ClientViewFullwidth(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewFullwidthState: function _ClientViewFullwidthState(t0, t1, t2) { var _ = this; _._client_view_fullwidth$_scrollController3 = _._client_view_fullwidth$_scrollController2 = _._client_view_fullwidth$_scrollController1 = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ClientViewFullwidthState_build_closure: function _ClientViewFullwidthState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.localization = t1; _.client = t2; _.state = t3; _.billingAddress = t4; _.shippingAddress = t5; _.showStanding = t6; _.documents = t7; _.viewModel = t8; }, _ClientViewFullwidthState_build__closure: function _ClientViewFullwidthState_build__closure(t0) { this.billingAddress = t0; }, _ClientViewFullwidthState_build__closure0: function _ClientViewFullwidthState_build__closure0(t0) { this.shippingAddress = t0; }, _ClientViewFullwidthState_build__closure1: function _ClientViewFullwidthState_build__closure1(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewFullwidthState_build__closure2: function _ClientViewFullwidthState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewFullwidthState_build__closure3: function _ClientViewFullwidthState_build__closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewFullwidthState_build__closure4: function _ClientViewFullwidthState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewFullwidthState_build__closure5: function _ClientViewFullwidthState_build__closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, __ClientViewFullwidthState_State_TickerProviderStateMixin: function __ClientViewFullwidthState_State_TickerProviderStateMixin() { }, ClientViewLedger: function ClientViewLedger(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewLedgerState: function _ClientViewLedgerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ClientViewLedgerState_build_closure: function _ClientViewLedgerState_build_closure() { }, _ClientViewLedgerState_build_closure1: function _ClientViewLedgerState_build_closure1() { }, _ClientViewLedgerState_build_closure0: function _ClientViewLedgerState_build_closure0(t0, t1) { this.ledgers = t0; this.client = t1; }, _ClientViewLedgerState_build__closure0: function _ClientViewLedgerState_build__closure0(t0) { this.entity = t0; }, _ClientViewLedgerState_build__closure: function _ClientViewLedgerState_build__closure(t0) { this.entity = t0; }, ClientOverview: function ClientOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, ClientOverview_build_closure: function ClientOverview_build_closure(t0, t1, t2, t3) { var _ = this; _.state = t0; _.gatewayMap = t1; _.linkMap = t2; _.tokenMap = t3; }, ClientOverview_build_closure0: function ClientOverview_build_closure0() { }, ClientOverview_build_closure1: function ClientOverview_build_closure1(t0, t1) { this.linkMap = t0; this.customerReference = t1; }, ClientOverview_build_closure2: function ClientOverview_build_closure2() { }, ClientOverview_build_closure3: function ClientOverview_build_closure3() { }, ClientViewSystemLogs: function ClientViewSystemLogs(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewSystemLogsState: function _ClientViewSystemLogsState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, ClientViewVM_ClientViewVM$fromStore(store) { var t4, client, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].clientState.map; t2 = t2.clientUIState.selectedId; client = t4._map$_map.$index(0, t2); if (client == null) client = A.ClientEntity_ClientEntity(null, t2, null, null); client.get$isNew(); return new A.ClientViewVM(state, client, t1[t3].userCompany.company, new A.ClientViewVM_ClientViewVM$fromStore_closure(new A.ClientViewVM_ClientViewVM$fromStore__handleRefresh(store, client)), new A.ClientViewVM_ClientViewVM$fromStore_closure0(store, client), new A.ClientViewVM_ClientViewVM$fromStore_closure1(store, client)); }, ClientViewScreen: function ClientViewScreen(t0, t1, t2) { this.isFilter = t0; this.isTopFilter = t1; this.key = t2; }, ClientViewScreen_build_closure0: function ClientViewScreen_build_closure0() { }, ClientViewScreen_build_closure: function ClientViewScreen_build_closure(t0) { this.$this = t0; }, ClientViewVM: function ClientViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.client = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ClientViewVM_ClientViewVM$fromStore__handleRefresh: function ClientViewVM_ClientViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore_closure: function ClientViewVM_ClientViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ClientViewVM_ClientViewVM$fromStore_closure0: function ClientViewVM_ClientViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore__closure0: function ClientViewVM_ClientViewVM$fromStore__closure0(t0) { this.context = t0; }, ClientViewVM_ClientViewVM$fromStore__closure1: function ClientViewVM_ClientViewVM$fromStore__closure1(t0) { this.context = t0; }, ClientViewVM_ClientViewVM$fromStore___closure: function ClientViewVM_ClientViewVM$fromStore___closure(t0) { this.error = t0; }, ClientViewVM_ClientViewVM$fromStore_closure1: function ClientViewVM_ClientViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore__closure: function ClientViewVM_ClientViewVM$fromStore__closure(t0, t1) { this.store = t0; this.client = t1; }, CompanyGatewayList: function CompanyGatewayList(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyGatewayListState: function _CompanyGatewayListState(t0) { var _ = this; _._widget = _._company_gateway_list$_controller = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _CompanyGatewayListState_build_closure1: function _CompanyGatewayListState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayListState_build_closure0: function _CompanyGatewayListState_build_closure0(t0) { this.$this = t0; }, _CompanyGatewayListState_build_closure: function _CompanyGatewayListState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.isInMultiselect = t2; _.listUIState = t3; }, _CompanyGatewayListState_build__closure: function _CompanyGatewayListState_build__closure(t0, t1) { this.$this = t0; this.companyGatewayId = t1; }, CompanyGatewayListItem: function CompanyGatewayListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.companyGateway = t1; _.filter = t2; _.onRemovePressed = t3; _.isChecked = t4; _.key = t5; }, CompanyGatewayListItem_build_closure0: function CompanyGatewayListItem_build_closure0(t0) { this.$this = t0; }, CompanyGatewayListItem_build_closure: function CompanyGatewayListItem_build_closure(t0) { this.$this = t0; }, CompanyGatewayListVM_fromStore(store) { var t2, t3, t4, t5, t6, gatewayIds, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, uiState = t1.settingsUIState, companyGatewayIds = uiState.get$settings().companyGatewayIds; if ((companyGatewayIds == null ? "" : companyGatewayIds).length === 0) { t2 = state.userCompanyStates; t3 = t1.selectedCompanyIndex; companyGatewayIds = B.JSArray_methods.join$1(t2._list[t3].companyGatewayState.list._list, ","); } t2 = $.$get$memoizedFilteredCompanyGatewayList(); t3 = state.userCompanyStates; t4 = t1.selectedCompanyIndex; t3 = t3._list; t5 = t3[t4].companyGatewayState; t6 = t5.map; t5 = t5.list; t1 = t1.companyGatewayUIState.listUIState; gatewayIds = t2.call$5(t6, t5, t1, companyGatewayIds, uiState.entityType === B.EntityType_company); return new A.CompanyGatewayListVM(state, gatewayIds, t3[t4].companyGatewayState.map, t1.filter, new A.CompanyGatewayListVM_fromStore_closure(new A.CompanyGatewayListVM_fromStore__handleRefresh(store)), new A.CompanyGatewayListVM_fromStore_closure0(gatewayIds, uiState, store), new A.CompanyGatewayListVM_fromStore_closure1(gatewayIds, uiState, store)); }, CompanyGatewayListBuilder: function CompanyGatewayListBuilder(t0) { this.key = t0; }, CompanyGatewayListBuilder_build_closure: function CompanyGatewayListBuilder_build_closure() { }, CompanyGatewayListVM: function CompanyGatewayListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.companyGatewayList = t1; _.companyGatewayMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortChanged = t5; _.onRemovePressed = t6; }, CompanyGatewayListVM_fromStore__handleRefresh: function CompanyGatewayListVM_fromStore__handleRefresh(t0) { this.store = t0; }, CompanyGatewayListVM_fromStore_closure: function CompanyGatewayListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, CompanyGatewayListVM_fromStore_closure1: function CompanyGatewayListVM_fromStore_closure1(t0, t1, t2) { this.gatewayIds = t0; this.uiState = t1; this.store = t2; }, CompanyGatewayListVM_fromStore__closure: function CompanyGatewayListVM_fromStore__closure(t0) { this.gatewayIds = t0; }, CompanyGatewayListVM_fromStore_closure0: function CompanyGatewayListVM_fromStore_closure0(t0, t1, t2) { this.gatewayIds = t0; this.uiState = t1; this.store = t2; }, CompanyGatewayListVM_fromStore__closure0: function CompanyGatewayListVM_fromStore__closure0(t0) { this.gatewayIds = t0; }, CompanyGatewayScreen: function CompanyGatewayScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CompanyGatewayScreen_build_closure11: function CompanyGatewayScreen_build_closure11(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure10: function CompanyGatewayScreen_build_closure10(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure: function CompanyGatewayScreen_build_closure(t0, t1, t2) { this.$this = t0; this.listUIState = t1; this.store = t2; }, CompanyGatewayScreen_build__closure0: function CompanyGatewayScreen_build__closure0(t0) { this.$this = t0; }, CompanyGatewayScreen_build__closure1: function CompanyGatewayScreen_build__closure1(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure0: function CompanyGatewayScreen_build_closure0(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure1: function CompanyGatewayScreen_build_closure1(t0, t1) { this.settingsUIState = t0; this.store = t1; }, CompanyGatewayScreen_build__closure: function CompanyGatewayScreen_build__closure() { }, CompanyGatewayScreen_build_closure2: function CompanyGatewayScreen_build_closure2(t0, t1) { this.settingsUIState = t0; this.store = t1; }, CompanyGatewayScreen_build_closure4: function CompanyGatewayScreen_build_closure4(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure5: function CompanyGatewayScreen_build_closure5(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure6: function CompanyGatewayScreen_build_closure6(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure7: function CompanyGatewayScreen_build_closure7(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure8: function CompanyGatewayScreen_build_closure8(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure3: function CompanyGatewayScreen_build_closure3(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure9: function CompanyGatewayScreen_build_closure9(t0, t1) { this.settingsUIState = t0; this.context = t1; }, CompanyGatewayScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].companyGatewayState; t5 = t4.map; t6 = $.$get$memoizedFilteredCompanyGatewayList(); t4 = t4.list; t7 = t2.companyGatewayUIState.listUIState; t2 = t2.settingsUIState; t6.call$5(t5, t4, t7, t2.get$settings().companyGatewayIds, t2.entityType === B.EntityType_company); t1[t3].toString; return new A.CompanyGatewayScreenVM(t7.selectedIds != null, t5, new A.CompanyGatewayScreenVM_fromStore_closure(store)); }, CompanyGatewayScreenBuilder: function CompanyGatewayScreenBuilder(t0) { this.key = t0; }, CompanyGatewayScreenBuilder_build_closure: function CompanyGatewayScreenBuilder_build_closure() { }, CompanyGatewayScreenVM: function CompanyGatewayScreenVM(t0, t1, t2) { this.isInMultiselect = t0; this.companyGatewayMap = t1; this.onSavePressed = t2; }, CompanyGatewayScreenVM_fromStore_closure: function CompanyGatewayScreenVM_fromStore_closure(t0) { this.store = t0; }, CompanyGatewayScreenVM_fromStore__closure: function CompanyGatewayScreenVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, CompanyGatewayEdit: function CompanyGatewayEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyGatewayEditState: function _CompanyGatewayEditState(t0, t1, t2, t3) { var _ = this; _._company_gateway_edit$_focusNode = t0; _._company_gateway_edit$_controller = null; _._company_gateway_edit$_gatewayTypeId = "1"; _.SingleTickerProviderStateMixin__ticker = t1; _.SingleTickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CompanyGatewayEditState_didChangeDependencies_closure: function _CompanyGatewayEditState_didChangeDependencies_closure(t0) { this.companyGateway = t0; }, _CompanyGatewayEditState_build_closure: function _CompanyGatewayEditState_build_closure(t0) { this.companyGateway = t0; }, _CompanyGatewayEditState_build_closure0: function _CompanyGatewayEditState_build_closure0(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure12: function _CompanyGatewayEditState_build__closure12(t0) { this.gateway = t0; }, _CompanyGatewayEditState_build_closure1: function _CompanyGatewayEditState_build_closure1(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.companyGateway = t2; }, _CompanyGatewayEditState_build_closure2: function _CompanyGatewayEditState_build_closure2() { }, _CompanyGatewayEditState_build_closure3: function _CompanyGatewayEditState_build_closure3(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure11: function _CompanyGatewayEditState_build__closure11(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure5: function _CompanyGatewayEditState_build_closure5(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure10: function _CompanyGatewayEditState_build__closure10(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure4: function _CompanyGatewayEditState_build_closure4(t0) { this.localization = t0; }, _CompanyGatewayEditState_build_closure6: function _CompanyGatewayEditState_build_closure6(t0, t1, t2) { this.companyGateway = t0; this.gatewayTypeId = t1; this.viewModel = t2; }, _CompanyGatewayEditState_build__closure9: function _CompanyGatewayEditState_build__closure9(t0, t1, t2) { this.gatewayTypeId = t0; this.settings = t1; this.value = t2; }, _CompanyGatewayEditState_build___closure: function _CompanyGatewayEditState_build___closure(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure7: function _CompanyGatewayEditState_build_closure7(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure8: function _CompanyGatewayEditState_build__closure8(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure8: function _CompanyGatewayEditState_build_closure8(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure7: function _CompanyGatewayEditState_build__closure7(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure9: function _CompanyGatewayEditState_build_closure9(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure6: function _CompanyGatewayEditState_build__closure6(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure10: function _CompanyGatewayEditState_build_closure10(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure5: function _CompanyGatewayEditState_build__closure5(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure11: function _CompanyGatewayEditState_build_closure11(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure4: function _CompanyGatewayEditState_build__closure4(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure12: function _CompanyGatewayEditState_build_closure12(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure3: function _CompanyGatewayEditState_build__closure3(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure13: function _CompanyGatewayEditState_build_closure13(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure2: function _CompanyGatewayEditState_build__closure2(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure14: function _CompanyGatewayEditState_build_closure14(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure1: function _CompanyGatewayEditState_build__closure1(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure15: function _CompanyGatewayEditState_build_closure15(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure0: function _CompanyGatewayEditState_build__closure0(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure16: function _CompanyGatewayEditState_build_closure16(t0) { this.localization = t0; }, _CompanyGatewayEditState_build_closure17: function _CompanyGatewayEditState_build_closure17(t0) { this.$this = t0; }, _CompanyGatewayEditState_build__closure: function _CompanyGatewayEditState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, GatewayConfigSettings: function GatewayConfigSettings(t0, t1, t2, t3) { var _ = this; _.companyGateway = t0; _.viewModel = t1; _.disasbledFields = t2; _.key = t3; }, GatewayConfigSettings_build_closure: function GatewayConfigSettings_build_closure(t0) { this.gateway = t0; }, GatewayConfigSettings_build_closure0: function GatewayConfigSettings_build_closure0(t0, t1) { this.$this = t0; this.gateway = t1; }, GatewayConfigSettings_build__closure: function GatewayConfigSettings_build__closure(t0, t1) { this.$this = t0; this.field = t1; }, GatewayConfigField: function GatewayConfigField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.gateway = t0; _.field = t1; _.value = t2; _.defaultValue = t3; _.onChanged = t4; _.enabled = t5; _.key = t6; }, _GatewayConfigFieldState: function _GatewayConfigFieldState(t0) { var _ = this; _._widget = _._company_gateway_edit$_textController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _GatewayConfigFieldState__obscureText_closure: function _GatewayConfigFieldState__obscureText_closure(t0, t1) { this._box_0 = t0; this.field = t1; }, _GatewayConfigFieldState_build_closure0: function _GatewayConfigFieldState_build_closure0(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure: function _GatewayConfigFieldState_build_closure() { }, _GatewayConfigFieldState_build_closure1: function _GatewayConfigFieldState_build_closure1(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure2: function _GatewayConfigFieldState_build_closure2(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure3: function _GatewayConfigFieldState_build_closure3(t0) { this.$this = t0; }, LimitEditor: function LimitEditor(t0, t1, t2, t3) { var _ = this; _.companyGateway = t0; _.viewModel = t1; _.gatewayTypeId = t2; _.key = t3; }, _LimitEditorState: function _LimitEditorState(t0, t1) { var _ = this; _._company_gateway_edit$_debouncer = t0; _._enableMax = _._enableMin = false; _._widget = _._maxController = _._minController = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _LimitEditorState__onChanged_closure: function _LimitEditorState__onChanged_closure(t0) { this.$this = t0; }, _LimitEditorState__onChanged_closure0: function _LimitEditorState__onChanged_closure0(t0, t1) { this.$this = t0; this.updatedSettings = t1; }, _LimitEditorState__onTextChange_closure: function _LimitEditorState__onTextChange_closure(t0) { this.$this = t0; }, _LimitEditorState_build_closure: function _LimitEditorState_build_closure(t0) { this.$this = t0; }, _LimitEditorState_build__closure0: function _LimitEditorState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _LimitEditorState_build_closure0: function _LimitEditorState_build_closure0(t0) { this.$this = t0; }, _LimitEditorState_build__closure: function _LimitEditorState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, FeesEditor: function FeesEditor(t0, t1, t2, t3) { var _ = this; _.companyGateway = t0; _.viewModel = t1; _.gatewayTypeId = t2; _.key = t3; }, _FeesEditorState: function _FeesEditorState(t0, t1, t2, t3, t4) { var _ = this; _._amountController = t0; _._percentController = t1; _._capController = t2; _._company_gateway_edit$_controllers = null; _._company_gateway_edit$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _FeesEditorState_dispose_closure: function _FeesEditorState_dispose_closure(t0) { this.$this = t0; }, _FeesEditorState_didChangeDependencies_closure: function _FeesEditorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _FeesEditorState_didChangeDependencies_closure0: function _FeesEditorState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _FeesEditorState__onChanged_closure: function _FeesEditorState__onChanged_closure(t0, t1, t2) { this.amount = t0; this.percent = t1; this.cap = t2; }, _FeesEditorState__onChanged_closure0: function _FeesEditorState__onChanged_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.updatedSettings = t3; }, _FeesEditorState__onChanged__closure: function _FeesEditorState__onChanged__closure(t0, t1) { this.$this = t0; this.updatedSettings = t1; }, _FeesEditorState_build_closure: function _FeesEditorState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure2: function _FeesEditorState_build__closure2(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure2: function _FeesEditorState_build___closure2(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure0: function _FeesEditorState_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure1: function _FeesEditorState_build__closure1(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure1: function _FeesEditorState_build___closure1(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure1: function _FeesEditorState_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure0: function _FeesEditorState_build__closure0(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure0: function _FeesEditorState_build___closure0(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure2: function _FeesEditorState_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure: function _FeesEditorState_build__closure(t0, t1, t2) { this.$this = t0; this.settings = t1; this.value = t2; }, _FeesEditorState_build___closure: function _FeesEditorState_build___closure(t0) { this.value = t0; }, __CompanyGatewayEditState_State_SingleTickerProviderStateMixin: function __CompanyGatewayEditState_State_SingleTickerProviderStateMixin() { }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore(store) { var t3, t4, companyGateway = A._lateReadCheck(store.__Store__state, "_state").uiState.companyGatewayUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].companyGatewayState.map; t4 = companyGateway.id; t3._map$_map.$index(0, t4); return new A.CompanyGatewayEditVM(companyGateway, t1[t2].userCompany.company, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(store), new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0(store, state), new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1(store, state), state, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2(state, store)); }, CompanyGatewayEditScreen: function CompanyGatewayEditScreen(t0) { this.key = t0; }, CompanyGatewayEditScreen_build_closure0: function CompanyGatewayEditScreen_build_closure0() { }, CompanyGatewayEditScreen_build_closure: function CompanyGatewayEditScreen_build_closure() { }, CompanyGatewayEditVM: function CompanyGatewayEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.companyGateway = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; _.onGatewaySignUpPressed = t6; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(t0) { this.store = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.companyGateway = t0; _.localization = t1; _.store = t2; _.state = t3; _.navigator = t4; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0(t0) { this.savedCompanyGateway = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0() { }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure(t0) { this.error = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.gatewayId = t1; this.credentials = t2; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0(t0) { this.store = t0; }, CompanyGatewayView: function CompanyGatewayView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _CompanyGatewayViewState: function _CompanyGatewayViewState(t0, t1, t2) { var _ = this; _._company_gateway_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CompanyGatewayViewState_build_closure1: function _CompanyGatewayViewState_build_closure1(t0) { this.$this = t0; }, _CompanyGatewayViewState_build_closure: function _CompanyGatewayViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyGatewayViewState_build_closure0: function _CompanyGatewayViewState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyGatewayOverview: function _CompanyGatewayOverview(t0, t1, t2) { this.isFilter = t0; this.viewModel = t1; this.key = t2; }, _CompanyGatewayOverview_build_closure: function _CompanyGatewayOverview_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayOverview_build_closure0: function _CompanyGatewayOverview_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayOverview_build_closure2: function _CompanyGatewayOverview_build_closure2() { }, _CompanyGatewayOverview_build_closure1: function _CompanyGatewayOverview_build_closure1(t0, t1) { this.webhookUrl = t0; this.localization = t1; }, _CompanyGatewaySystemLog: function _CompanyGatewaySystemLog(t0, t1) { this.viewModel = t0; this.key = t1; }, __CompanyGatewaySystemLogState: function __CompanyGatewaySystemLogState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, __CompanyGatewayViewState_State_SingleTickerProviderStateMixin: function __CompanyGatewayViewState_State_SingleTickerProviderStateMixin() { }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore(store) { var t4, companyGateway, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].companyGatewayState.map; t2 = t2.companyGatewayUIState.selectedId; companyGateway = t4._map$_map.$index(0, t2); if (companyGateway == null) companyGateway = A.CompanyGatewayEntity_CompanyGatewayEntity(t2, null); t1 = t1[t3].userCompany.company; companyGateway.get$isNew(); return new A.CompanyGatewayViewVM(state, companyGateway, t1, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure(store), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh(store, companyGateway)), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1(state, store), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2(state, store)); }, CompanyGatewayViewScreen: function CompanyGatewayViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, CompanyGatewayViewScreen_build_closure0: function CompanyGatewayViewScreen_build_closure0() { }, CompanyGatewayViewScreen_build_closure: function CompanyGatewayViewScreen_build_closure(t0) { this.$this = t0; }, CompanyGatewayViewVM: function CompanyGatewayViewVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.companyGateway = t1; _.company = t2; _.onBackPressed = t3; _.onRefreshed = t4; _.onStripeImportPressed = t5; _.onStripeVerifyPressed = t6; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.companyGateway = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure(t0) { this.store = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.store = t0; _.webClient = t1; _.url = t2; _.credentials = t3; _.localization = t4; _.context = t5; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure(t0, t1) { this.store = t0; this.localization = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure(t0, t1) { this.localization = t0; this.response = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure(t0) { this.context = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0(t0, t1) { this.store = t0; this.context = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.store = t0; _.webClient = t1; _.url = t2; _.credentials = t3; _.context = t4; _.localization = t5; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1(t0, t1, t2) { this.store = t0; this.context = t1; this.localization = t2; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2(t0, t1) { this.store = t0; this.context = t1; }, EmailCreditVM_EmailCreditVM$fromStore(store, credit) { var t3, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2]; t1 = t2.userCompany.company; t2 = t2.clientState.map; t3 = credit.clientId; return new A.EmailCreditVM(state, t1, credit, t2._map$_map.$index(0, t3), null, new A.EmailCreditVM_EmailCreditVM$fromStore_closure(credit, store)); }, CreditEmailScreen: function CreditEmailScreen(t0) { this.key = t0; }, CreditEmailScreen_build_closure1: function CreditEmailScreen_build_closure1() { }, CreditEmailScreen_build_closure0: function CreditEmailScreen_build_closure0() { }, CreditEmailScreen_build_closure: function CreditEmailScreen_build_closure() { }, EmailCreditVM: function EmailCreditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.vendor = t4; _.onSendPressed = t5; }, EmailCreditVM_EmailCreditVM$fromStore_closure: function EmailCreditVM_EmailCreditVM$fromStore_closure(t0, t1) { this.credit = t0; this.store = t1; }, EmailCreditVM_EmailCreditVM$fromStore__closure: function EmailCreditVM_EmailCreditVM$fromStore__closure(t0) { this.credit = t0; }, CreditListItem: function CreditListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.credit = t1; _.client = t2; _.filter = t3; _.isChecked = t4; _.key = t5; }, CreditListItem_build_closure: function CreditListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.state = t4; _.localization = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, CreditListItem_build__closure2: function CreditListItem_build__closure2(t0) { this.$this = t0; }, CreditListItem_build__closure1: function CreditListItem_build__closure1(t0) { this.$this = t0; }, CreditListItem_build__closure: function CreditListItem_build__closure(t0) { this.$this = t0; }, CreditListItem_build__closure0: function CreditListItem_build__closure0(t0) { this.$this = t0; }, CreditListItem_build__closure5: function CreditListItem_build__closure5(t0) { this.$this = t0; }, CreditListItem_build__closure4: function CreditListItem_build__closure4(t0) { this.$this = t0; }, CreditListItem_build__closure3: function CreditListItem_build__closure3(t0) { this.$this = t0; }, CreditListVM_fromStore(store) { var t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredCreditList(), t2 = state.getUISelection$1(B.EntityType_credit), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.creditState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t4 = t4.creditUIState.listUIState; t6 = t1.call$7(t2, t8, t7, t9, t10, t4, t6.userState.map); t10 = t3[t5]; t9 = t10.creditState.map; t7 = t10.clientState.map; t4 = t4.filter; t10 = t10.userCompany.settings; t1 = t10 == null ? null : t10.getTableColumns$1(B.EntityType_credit); if (t1 == null) { t3[t5].toString; t1 = A._setArrayType(["status", "number", "client", "amount", "date", "remaining"], type$.JSArray_legacy_String); } return new A.CreditListVM(state, t6, t9, t7, t4, new A.CreditListVM_fromStore_closure(new A.CreditListVM_fromStore__handleRefresh(store)), t1, new A.CreditListVM_fromStore_closure0(store), new A.CreditListVM_fromStore_closure1(store)); }, CreditListBuilder: function CreditListBuilder(t0) { this.key = t0; }, CreditListBuilder_build_closure: function CreditListBuilder_build_closure() { }, CreditListBuilder_build__closure: function CreditListBuilder_build__closure(t0) { this.viewModel = t0; }, CreditListVM: function CreditListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, CreditListVM_fromStore__handleRefresh: function CreditListVM_fromStore__handleRefresh(t0) { this.store = t0; }, CreditListVM_fromStore_closure: function CreditListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, CreditListVM_fromStore_closure0: function CreditListVM_fromStore_closure0(t0) { this.store = t0; }, CreditListVM_fromStore_closure1: function CreditListVM_fromStore_closure1(t0) { this.store = t0; }, CreditPdfScreen: function CreditPdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, CreditPdfScreen_build_closure0: function CreditPdfScreen_build_closure0() { }, CreditPdfScreen_build_closure: function CreditPdfScreen_build_closure(t0) { this.$this = t0; }, CreditPdfVM: function CreditPdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, CreditPresenter: function CreditPresenter() { this.context = this.entity = null; }, CreditPresenter_getField_closure: function CreditPresenter_getField_closure(t0) { this.contact = t0; }, CreditScreen: function CreditScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CreditScreen_build_closure10: function CreditScreen_build_closure10(t0) { this.store = t0; }, CreditScreen_build_closure7: function CreditScreen_build_closure7(t0) { this.store = t0; }, CreditScreen_build_closure8: function CreditScreen_build_closure8(t0) { this.store = t0; }, CreditScreen_build_closure9: function CreditScreen_build_closure9(t0) { this.store = t0; }, CreditScreen_build_closure4: function CreditScreen_build_closure4(t0) { this.store = t0; }, CreditScreen_build_closure5: function CreditScreen_build_closure5(t0) { this.store = t0; }, CreditScreen_build_closure: function CreditScreen_build_closure(t0) { this.store = t0; }, CreditScreen_build_closure0: function CreditScreen_build_closure0(t0) { this.store = t0; }, CreditScreen_build_closure1: function CreditScreen_build_closure1(t0) { this.store = t0; }, CreditScreen_build_closure2: function CreditScreen_build_closure2(t0) { this.store = t0; }, CreditScreen_build_closure3: function CreditScreen_build_closure3(t0) { this.store = t0; }, CreditScreen_build_closure6: function CreditScreen_build_closure6(t0) { this.context = t0; }, CreditScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].creditState.toString; t4 = $.$get$memoizedFilteredCreditList(); t5 = state.getUISelection$1(B.EntityType_credit); t6 = t1[t3]; t7 = t6.creditState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t2 = t2.creditUIState.listUIState; t6 = t4.call$7(t5, t8, t7, t9, t10, t2, t6.userState.map); t1[t3].toString; t2.toString; return new A.CreditScreenVM(t6); }, CreditScreenBuilder: function CreditScreenBuilder(t0) { this.key = t0; }, CreditScreenBuilder_build_closure: function CreditScreenBuilder_build_closure() { }, CreditScreenVM: function CreditScreenVM(t0) { this.creditList = t0; }, CreditEdit: function CreditEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _CreditEditState: function _CreditEditState(t0, t1, t2) { var _ = this; _._credit_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CreditEditState_build_closure1: function _CreditEditState_build_closure1(t0) { this.viewModel = t0; }, _CreditEditState_build_closure2: function _CreditEditState_build_closure2(t0) { this.$this = t0; }, _CreditEditState_build_closure0: function _CreditEditState_build_closure0(t0) { this.$this = t0; }, _CreditEditState_build_closure: function _CreditEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _CreditEditState_build__closure: function _CreditEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _CreditEditState_build___closure0: function _CreditEditState_build___closure0() { }, _CreditEditState_build___closure1: function _CreditEditState_build___closure1(t0) { this.viewModel = t0; }, _CreditEditState_build___closure: function _CreditEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __CreditEditState_State_SingleTickerProviderStateMixin: function __CreditEditState_State_SingleTickerProviderStateMixin() { }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore(store) { var company, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, credit = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; company = t1.userCompany.company; t1.clientState.toString; return new A.CreditEditDetailsVM(state, company, credit, new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure(store), new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0(store, state), null, new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1(store), null); }, CreditEditDetailsScreen: function CreditEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CreditEditDetailsScreen_build_closure0: function CreditEditDetailsScreen_build_closure0() { }, CreditEditDetailsScreen_build_closure: function CreditEditDetailsScreen_build_closure(t0) { this.$this = t0; }, CreditEditDetailsVM: function CreditEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onVendorChanged = t5; _.onAddClientPressed = t6; _.onAddVendorPressed = t7; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore(store, isTasks) { var _s6_ = "_state", t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = A._lateReadCheck(store.__Store__state, _s6_), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new A.CreditEditItemsVM(t1, t3._list[t2].userCompany.company, A._lateReadCheck(store.__Store__state, _s6_).uiState.creditUIState.editing, A._lateReadCheck(store.__Store__state, _s6_).uiState.creditUIState.editingItemIndex, new A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure(store), new A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0(store), new A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1(store, isTasks), new A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2(store)); }, CreditEditItemsScreen: function CreditEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, CreditEditItemsScreen_build_closure0: function CreditEditItemsScreen_build_closure0(t0) { this.$this = t0; }, CreditEditItemsScreen_build_closure: function CreditEditItemsScreen_build_closure(t0) { this.$this = t0; }, CreditEditItemsVM: function CreditEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure(t0) { this.store = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, CreditEditItemsVM_CreditEditItemsVM$fromStore__closure: function CreditEditItemsVM_CreditEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, CreditEditNotesVM_CreditEditNotesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, credit = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.CreditEditNotesVM(state, t2._list[t1].userCompany.company, credit, new A.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure(store)); }, CreditEditNotesScreen: function CreditEditNotesScreen(t0) { this.key = t0; }, CreditEditNotesScreen_build_closure0: function CreditEditNotesScreen_build_closure0() { }, CreditEditNotesScreen_build_closure: function CreditEditNotesScreen_build_closure() { }, CreditEditNotesVM: function CreditEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, CreditEditNotesVM_CreditEditNotesVM$fromStore_closure: function CreditEditNotesVM_CreditEditNotesVM$fromStore_closure(t0) { this.store = t0; }, CreditEditPDFScreen: function CreditEditPDFScreen(t0) { this.key = t0; }, CreditEditPDFScreen_build_closure0: function CreditEditPDFScreen_build_closure0() { }, CreditEditPDFScreen_build_closure: function CreditEditPDFScreen_build_closure() { }, CreditEditPDFVM: function CreditEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, CreditEditVM_CreditEditVM$fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.creditUIState, credit = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; t2 = t2.editingItemIndex; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].creditState.map; t4 = credit.id; t3._map$_map.$index(0, t4); return new A.CreditEditVM(state, t1, credit, t2, new A.CreditEditVM_CreditEditVM$fromStore_closure(store, state), new A.CreditEditVM_CreditEditVM$fromStore_closure0(store, credit), new A.CreditEditVM_CreditEditVM$fromStore_closure1(state, store)); }, CreditEditScreen: function CreditEditScreen(t0) { this.key = t0; }, CreditEditScreen_build_closure0: function CreditEditScreen_build_closure0() { }, CreditEditScreen_build_closure: function CreditEditScreen_build_closure() { }, CreditEditVM: function CreditEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, CreditEditVM_CreditEditVM$fromStore_closure: function CreditEditVM_CreditEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, CreditEditVM_CreditEditVM$fromStore__closure: function CreditEditVM_CreditEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, CreditEditVM_CreditEditVM$fromStore___closure: function CreditEditVM_CreditEditVM$fromStore___closure(t0) { this.localization = t0; }, CreditEditVM_CreditEditVM$fromStore___closure0: function CreditEditVM_CreditEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.credit = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, CreditEditVM_CreditEditVM$fromStore___closure1: function CreditEditVM_CreditEditVM$fromStore___closure1() { }, CreditEditVM_CreditEditVM$fromStore____closure: function CreditEditVM_CreditEditVM$fromStore____closure(t0) { this.error = t0; }, CreditEditVM_CreditEditVM$fromStore_closure0: function CreditEditVM_CreditEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.credit = t1; }, CreditEditVM_CreditEditVM$fromStore_closure1: function CreditEditVM_CreditEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, CreditViewVM_CreditViewVM$fromStore(store) { var t4, credit, t5, client, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].creditState.map; t2 = t2.creditUIState.selectedId; credit = t4._map$_map.$index(0, t2); if (credit == null) credit = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); t2 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t5 = credit.clientId; client = t4._list[t2].clientState.map._map$_map.$index(0, t5); if (client == null) client = A.ClientEntity_ClientEntity(_null, t5, _null, _null); t1 = t1[t3].userCompany.company; credit.get$isNew(); return new A.CreditViewVM(state, t1, credit, client, new A.CreditViewVM_CreditViewVM$fromStore_closure(credit), new A.CreditViewVM_CreditViewVM$fromStore_closure0(new A.CreditViewVM_CreditViewVM$fromStore__handleRefresh(store, credit)), new A.CreditViewVM_CreditViewVM$fromStore_closure1(store, credit), new A.CreditViewVM_CreditViewVM$fromStore_closure2(store, credit), _null, new A.CreditViewVM_CreditViewVM$fromStore_closure3(store)); }, CreditViewScreen: function CreditViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, CreditViewScreen_build_closure0: function CreditViewScreen_build_closure0() { }, CreditViewScreen_build_closure: function CreditViewScreen_build_closure(t0) { this.$this = t0; }, CreditViewVM: function CreditViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, CreditViewVM_CreditViewVM$fromStore__handleRefresh: function CreditViewVM_CreditViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore_closure: function CreditViewVM_CreditViewVM$fromStore_closure(t0) { this.credit = t0; }, CreditViewVM_CreditViewVM$fromStore_closure0: function CreditViewVM_CreditViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, CreditViewVM_CreditViewVM$fromStore_closure1: function CreditViewVM_CreditViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore__closure0: function CreditViewVM_CreditViewVM$fromStore__closure0(t0) { this.context = t0; }, CreditViewVM_CreditViewVM$fromStore__closure1: function CreditViewVM_CreditViewVM$fromStore__closure1(t0) { this.context = t0; }, CreditViewVM_CreditViewVM$fromStore___closure: function CreditViewVM_CreditViewVM$fromStore___closure(t0) { this.error = t0; }, CreditViewVM_CreditViewVM$fromStore_closure2: function CreditViewVM_CreditViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore__closure: function CreditViewVM_CreditViewVM$fromStore__closure(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore_closure3: function CreditViewVM_CreditViewVM$fromStore_closure3(t0) { this.store = t0; }, DashboardActivity: function DashboardActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, DashboardActivity_build_closure0: function DashboardActivity_build_closure0() { }, DashboardActivity_build_closure: function DashboardActivity_build_closure(t0) { this.activities = t0; }, DashboardChart: function DashboardChart(t0, t1, t2, t3, t4) { var _ = this; _.data = t0; _.title = t1; _.currencyId = t2; _.onDateSelected = t3; _.key = t4; }, _DashboardChartState: function _DashboardChartState(t0) { var _ = this; _._dashboard_chart$_selected = null; _._dashboard_chart$_selectedIndex = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DashboardChartState__onSelectionChanged_closure: function _DashboardChartState__onSelectionChanged_closure() { }, _DashboardChartState__onSelectionChanged_closure0: function _DashboardChartState__onSelectionChanged_closure0(t0, t1) { this._box_0 = t0; this.measures = t1; }, _DashboardChartState__onSelectionChanged_closure1: function _DashboardChartState__onSelectionChanged_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, _DashboardChartState_build_closure: function _DashboardChartState_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.context = t1; _.settings = t2; _.state = t3; _.theme = t4; _.localization = t5; }, _DashboardChartState_build__closure: function _DashboardChartState_build__closure(t0, t1) { this.$this = t0; this.index = t1; }, _DashboardChartState_build___closure: function _DashboardChartState_build___closure(t0, t1) { this.$this = t0; this.index = t1; }, DashboardDateRangePicker: function DashboardDateRangePicker(t0, t1, t2) { this.state = t0; this.onSettingsChanged = t1; this.key = t2; }, _DashboardDateRangePickerState: function _DashboardDateRangePickerState(t0) { var _ = this; _._widget = _._dashboard_date_range_picker$_settings = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DashboardDateRangePickerState_build_closure: function _DashboardDateRangePickerState_build_closure(t0) { this.localization = t0; }, _DashboardDateRangePickerState_build_closure0: function _DashboardDateRangePickerState_build_closure0(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure6: function _DashboardDateRangePickerState_build__closure6(t0, t1) { this.$this = t0; this.dateRange = t1; }, _DashboardDateRangePickerState_build_closure1: function _DashboardDateRangePickerState_build_closure1(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure5: function _DashboardDateRangePickerState_build__closure5(t0, t1) { this.$this = t0; this.value = t1; }, _DashboardDateRangePickerState_build_closure2: function _DashboardDateRangePickerState_build_closure2(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure4: function _DashboardDateRangePickerState_build__closure4(t0, t1) { this.$this = t0; this.date = t1; }, _DashboardDateRangePickerState_build_closure3: function _DashboardDateRangePickerState_build_closure3(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure3: function _DashboardDateRangePickerState_build__closure3(t0, t1) { this.$this = t0; this.date = t1; }, _DashboardDateRangePickerState_build_closure4: function _DashboardDateRangePickerState_build_closure4(t0) { this.localization = t0; }, _DashboardDateRangePickerState_build_closure5: function _DashboardDateRangePickerState_build_closure5(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure2: function _DashboardDateRangePickerState_build__closure2(t0, t1) { this.$this = t0; this.dateRange = t1; }, _DashboardDateRangePickerState_build_closure6: function _DashboardDateRangePickerState_build_closure6(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure1: function _DashboardDateRangePickerState_build__closure1(t0, t1) { this.$this = t0; this.date = t1; }, _DashboardDateRangePickerState_build_closure7: function _DashboardDateRangePickerState_build_closure7(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure0: function _DashboardDateRangePickerState_build__closure0(t0, t1) { this.$this = t0; this.date = t1; }, _DashboardDateRangePickerState_build_closure8: function _DashboardDateRangePickerState_build_closure8(t0, t1) { this.$this = t0; this.context = t1; }, _DashboardDateRangePickerState_build__closure: function _DashboardDateRangePickerState_build__closure() { }, _DashboardPanel$(context, currentData, isLoaded, onDateSelected, previousData, title, viewModel) { return new A._DashboardPanel(viewModel, context, title, currentData, previousData, isLoaded, onDateSelected, null); }, DashboardPanels: function DashboardPanels(t0, t1, t2) { this.viewModel = t0; this.scrollController = t1; this.key = t2; }, DashboardPanels__showDateOptions_closure: function DashboardPanels__showDateOptions_closure(t0) { this.$this = t0; }, DashboardPanels__header_closure: function DashboardPanels__header_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.localization = t1; _.settings = t2; _.company = t3; _.state = t4; _.hasMultipleCurrencies = t5; _.clientMap = t6; _.groupMap = t7; }, DashboardPanels__header__closure: function DashboardPanels__header__closure(t0, t1, t2) { this.$this = t0; this.isWide = t1; this.context = t2; }, DashboardPanels__header__closure0: function DashboardPanels__header__closure0(t0) { this.localization = t0; }, DashboardPanels__header___closure1: function DashboardPanels__header___closure1(t0) { this.localization = t0; }, DashboardPanels__header__closure1: function DashboardPanels__header__closure1(t0, t1, t2) { this.$this = t0; this.state = t1; this.context = t2; }, DashboardPanels__header___closure0: function DashboardPanels__header___closure0(t0, t1) { this.$this = t0; this.context = t1; }, DashboardPanels__header__closure2: function DashboardPanels__header__closure2(t0, t1) { this.$this = t0; this.localization = t1; }, DashboardPanels__header__closure3: function DashboardPanels__header__closure3(t0, t1, t2) { this.$this = t0; this.isWide = t1; this.context = t2; }, DashboardPanels__header__closure4: function DashboardPanels__header__closure4(t0) { this.$this = t0; }, DashboardPanels__header__closure5: function DashboardPanels__header__closure5(t0) { this.$this = t0; }, DashboardPanels__header__closure6: function DashboardPanels__header__closure6(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.context = t1; _.localization = t2; _.settings = t3; _.hasMultipleCurrencies = t4; _.company = t5; _.taxSettings = t6; }, DashboardPanels__header___closure: function DashboardPanels__header___closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.localization = t1; _.settings = t2; _.hasMultipleCurrencies = t3; _.company = t4; _.taxSettings = t5; }, DashboardPanels__header____closure: function DashboardPanels__header____closure(t0) { this.context = t0; }, DashboardPanels__header__closure7: function DashboardPanels__header__closure7(t0) { this.$this = t0; }, DashboardPanels__paymentChart_closure: function DashboardPanels__paymentChart_closure() { }, DashboardPanels__paymentChart_closure0: function DashboardPanels__paymentChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__quoteChart_closure: function DashboardPanels__quoteChart_closure() { }, DashboardPanels__quoteChart_closure0: function DashboardPanels__quoteChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__taskChart_closure: function DashboardPanels__taskChart_closure() { }, DashboardPanels__taskChart_closure0: function DashboardPanels__taskChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__expenseChart_closure: function DashboardPanels__expenseChart_closure() { }, DashboardPanels__expenseChart_closure0: function DashboardPanels__expenseChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels_build__runningTasks: function DashboardPanels_build__runningTasks(t0, t1, t2) { this.runningTasks = t0; this.state = t1; this.context = t2; }, DashboardPanels_build__runningTasks_closure: function DashboardPanels_build__runningTasks_closure(t0, t1) { this.state = t0; this.context = t1; }, DashboardPanels_build__runningTasks__closure2: function DashboardPanels_build__runningTasks__closure2(t0) { this.task = t0; }, DashboardPanels_build__runningTasks__closure1: function DashboardPanels_build__runningTasks__closure1(t0, t1) { this.task = t0; this.client = t1; }, DashboardPanels_build__runningTasks__closure0: function DashboardPanels_build__runningTasks__closure0(t0) { this.task = t0; }, DashboardPanels_build__runningTasks__closure: function DashboardPanels_build__runningTasks__closure(t0) { this.task = t0; }, DashboardPanels_build_closure: function DashboardPanels_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.entityTypes = t1; _.state = t2; _.localization = t3; _._runningTasks = t4; }, DashboardPanels_build__closure: function DashboardPanels_build__closure(t0) { this.context = t0; }, DashboardPanels_build__closure0: function DashboardPanels_build__closure0(t0) { this.context = t0; }, DashboardPanels_build__closure1: function DashboardPanels_build__closure1(t0) { this.context = t0; }, DashboardPanels_build__closure2: function DashboardPanels_build__closure2(t0) { this.$this = t0; }, DashboardPanels_build__closure3: function DashboardPanels_build__closure3(t0) { this.$this = t0; }, DashboardPanels_build__closure4: function DashboardPanels_build__closure4(t0) { this.$this = t0; }, DashboardPanels_build__closure5: function DashboardPanels_build__closure5(t0) { this.$this = t0; }, DashboardPanels_build__closure6: function DashboardPanels_build__closure6(t0) { this.$this = t0; }, _DashboardPanel: function _DashboardPanel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.viewModel = t0; _.context = t1; _.title = t2; _.currentData = t3; _.previousData = t4; _.isLoaded = t5; _.onDateSelected = t6; _.key = t7; }, __DashboardPanelState: function __DashboardPanelState(t0) { var _ = this; _._widget = _._dashboard_panels$_chart = _._previousData = _._currentData = null; _._debugLifecycleState = t0; _._framework$_element = null; }, __DashboardPanelState_build_closure: function __DashboardPanelState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.settings = t1; _.localization = t2; _.state = t3; }, __DashboardPanelState_build__closure0: function __DashboardPanelState_build__closure0() { }, __DashboardPanelState_build__closure1: function __DashboardPanelState_build__closure1() { }, __DashboardPanelState_build__closure: function __DashboardPanelState_build__closure() { }, __DashboardPanelState_build__closure2: function __DashboardPanelState_build__closure2() { }, __DashboardPanelState_build__closure4: function __DashboardPanelState_build__closure4() { }, __DashboardPanelState_build__closure5: function __DashboardPanelState_build__closure5() { }, __DashboardPanelState_build__closure3: function __DashboardPanelState_build__closure3(t0) { this.state = t0; }, __DashboardPanelState_build__closure6: function __DashboardPanelState_build__closure6() { }, _InvoiceChart: function _InvoiceChart(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.onDateSelected = t2; _.key = t3; }, _InvoiceChart_build_closure: function _InvoiceChart_build_closure() { }, _InvoiceChart_build_closure0: function _InvoiceChart_build_closure0(t0, t1) { this.$this = t0; this.currentData = t1; }, DashboardScreen: function DashboardScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, _DashboardScreenState: function _DashboardScreenState(t0, t1, t2, t3) { var _ = this; _._dashboard_screen$_scrollController = _._sideTabController = _._mainTabController = null; _._tabs = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _DashboardScreenState_initState_closure: function _DashboardScreenState_initState_closure(t0, t1) { this.$this = t0; this.company = t1; }, _DashboardScreenState_initState_closure0: function _DashboardScreenState_initState_closure0(t0, t1) { this.$this = t0; this.state = t1; }, _DashboardScreenState_initState__closure: function _DashboardScreenState_initState__closure(t0) { this.state = t0; }, _DashboardScreenState_build_closure: function _DashboardScreenState_build_closure(t0) { this.localization = t0; }, _DashboardScreenState_build__closure3: function _DashboardScreenState_build__closure3(t0) { this.context = t0; }, _DashboardScreenState_build_closure0: function _DashboardScreenState_build_closure0(t0) { this.store = t0; }, _DashboardScreenState_build_closure1: function _DashboardScreenState_build_closure1(t0, t1, t2) { this.state = t0; this.store = t1; this.context = t2; }, _DashboardScreenState_build__closure0: function _DashboardScreenState_build__closure0() { }, _DashboardScreenState_build__closure1: function _DashboardScreenState_build__closure1(t0) { this.store = t0; }, _DashboardScreenState_build__closure2: function _DashboardScreenState_build__closure2(t0, t1) { this.store = t0; this.context = t1; }, _DashboardScreenState_build_closure2: function _DashboardScreenState_build_closure2(t0) { this.state = t0; }, _DashboardScreenState_build_closure3: function _DashboardScreenState_build_closure3(t0, t1, t2) { this.state = t0; this.localization = t1; this.store = t2; }, _DashboardScreenState_build__closure: function _DashboardScreenState_build__closure(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, _DashboardScreenState_build_closure4: function _DashboardScreenState_build_closure4() { }, _CustomTabBarView: function _CustomTabBarView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.tabController = t1; _.scrollController = t2; _.key = t3; }, _CustomTabBarView_build_closure: function _CustomTabBarView_build_closure(t0) { this.$this = t0; }, _CustomTabBarView_build__closure: function _CustomTabBarView_build__closure(t0) { this.entity = t0; }, _CustomTabBarView_build_closure0: function _CustomTabBarView_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _CustomTabBarView_build_closure1: function _CustomTabBarView_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _CustomTabBarView_build_closure2: function _CustomTabBarView_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, __DashboardScreenState_State_TickerProviderStateMixin: function __DashboardScreenState_State_TickerProviderStateMixin() { }, DashboardVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, filter = t1.filter, t2 = t1.dashboardUIState, t3 = state.staticState.currencyMap, t4 = $.$get$memoizedFilteredSelector(), t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.DashboardVM(state, t2, t3, filter, t4.call$2(filter, t5._list[t1]), new A.DashboardVM_fromStore_closure(new A.DashboardVM_fromStore__handleRefresh(store)), new A.DashboardVM_fromStore_closure0(store), new A.DashboardVM_fromStore_closure1(store), new A.DashboardVM_fromStore_closure2(store), new A.DashboardVM_fromStore_closure3(store), new A.DashboardVM_fromStore_closure4(store), new A.DashboardVM_fromStore_closure5(store), new A.DashboardVM_fromStore_closure6(store)); }, DashboardScreenBuilder: function DashboardScreenBuilder(t0) { this.key = t0; }, DashboardScreenBuilder_build_closure: function DashboardScreenBuilder_build_closure() { }, DashboardVM: function DashboardVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.state = t0; _.dashboardUIState = t1; _.currencyMap = t2; _.filter = t3; _.filteredList = t4; _.onRefreshed = t5; _.onSettingsChanged = t6; _.onSelectionChanged = t7; _.onEntityTypeChanged = t8; _.onOffsetChanged = t9; _.onCurrencyChanged = t10; _.onTaxesChanged = t11; _.onShowSidebar = t12; }, DashboardVM_fromStore__handleRefresh: function DashboardVM_fromStore__handleRefresh(t0) { this.store = t0; }, DashboardVM_fromStore_closure: function DashboardVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DashboardVM_fromStore_closure2: function DashboardVM_fromStore_closure2(t0) { this.store = t0; }, DashboardVM_fromStore_closure0: function DashboardVM_fromStore_closure0(t0) { this.store = t0; }, DashboardVM_fromStore_closure5: function DashboardVM_fromStore_closure5(t0) { this.store = t0; }, DashboardVM_fromStore_closure1: function DashboardVM_fromStore_closure1(t0) { this.store = t0; }, DashboardVM_fromStore_closure3: function DashboardVM_fromStore_closure3(t0) { this.store = t0; }, DashboardVM_fromStore_closure4: function DashboardVM_fromStore_closure4(t0) { this.store = t0; }, DashboardVM_fromStore_closure6: function DashboardVM_fromStore_closure6(t0) { this.store = t0; }, _DashboardSidebar$(entityType, label1, label2, label3, list1, list2, list3) { return new A._DashboardSidebar(entityType, label1, label2, label3, list1, list2, list3, null); }, SidebarScaffold: function SidebarScaffold(t0, t1) { this.tabController = t0; this.key = t1; }, SidebarScaffold_build_closure: function SidebarScaffold_build_closure(t0) { this.store = t0; }, InvoiceSidebar: function InvoiceSidebar(t0) { this.key = t0; }, InvoiceSidebar_build_closure: function InvoiceSidebar_build_closure(t0) { this.upcomingInvoices = t0; }, InvoiceSidebar_build_closure0: function InvoiceSidebar_build_closure0() { }, InvoiceSidebar_build_closure1: function InvoiceSidebar_build_closure1(t0) { this.pastDueInvoices = t0; }, InvoiceSidebar_build_closure2: function InvoiceSidebar_build_closure2() { }, InvoiceSidebar_build_closure3: function InvoiceSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, InvoiceSidebar_build_closure4: function InvoiceSidebar_build_closure4() { }, PaymentSidebar: function PaymentSidebar(t0) { this.key = t0; }, PaymentSidebar_build_closure: function PaymentSidebar_build_closure(t0) { this.recentPayments = t0; }, PaymentSidebar_build_closure0: function PaymentSidebar_build_closure0() { }, PaymentSidebar_build_closure1: function PaymentSidebar_build_closure1(t0, t1) { this.state = t0; this.selectedIds = t1; }, PaymentSidebar_build_closure2: function PaymentSidebar_build_closure2() { }, QuoteSidebar: function QuoteSidebar(t0) { this.key = t0; }, QuoteSidebar_build_closure: function QuoteSidebar_build_closure(t0) { this.upcomingQuotes = t0; }, QuoteSidebar_build_closure0: function QuoteSidebar_build_closure0() { }, QuoteSidebar_build_closure1: function QuoteSidebar_build_closure1(t0) { this.expriedQuotes = t0; }, QuoteSidebar_build_closure2: function QuoteSidebar_build_closure2() { }, QuoteSidebar_build_closure3: function QuoteSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, QuoteSidebar_build_closure4: function QuoteSidebar_build_closure4() { }, TaskSidebar: function TaskSidebar(t0) { this.key = t0; }, TaskSidebar_build_closure: function TaskSidebar_build_closure(t0) { this.runningTasks = t0; }, TaskSidebar_build_closure0: function TaskSidebar_build_closure0() { }, TaskSidebar_build_closure1: function TaskSidebar_build_closure1(t0) { this.recentTasks = t0; }, TaskSidebar_build_closure2: function TaskSidebar_build_closure2() { }, TaskSidebar_build_closure3: function TaskSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, TaskSidebar_build_closure4: function TaskSidebar_build_closure4() { }, ExpenseSidbar: function ExpenseSidbar(t0) { this.key = t0; }, ExpenseSidbar_build_closure: function ExpenseSidbar_build_closure(t0) { this.recentExpenses = t0; }, ExpenseSidbar_build_closure0: function ExpenseSidbar_build_closure0() { }, ExpenseSidbar_build_closure1: function ExpenseSidbar_build_closure1(t0, t1) { this.state = t0; this.selectedIds = t1; }, ExpenseSidbar_build_closure2: function ExpenseSidbar_build_closure2() { }, _DashboardSidebar: function _DashboardSidebar(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.entityType = t0; _.label1 = t1; _.label2 = t2; _.label3 = t3; _.list1 = t4; _.list2 = t5; _.list3 = t6; _.key = t7; }, _DashboardSidebar_build_closure: function _DashboardSidebar_build_closure(t0, t1) { this.$this = t0; this.store = t1; }, DashboardSystemLogs: function DashboardSystemLogs(t0, t1) { this.viewModel = t0; this.key = t1; }, DesignListItem: function DesignListItem(t0, t1, t2, t3) { var _ = this; _.design = t0; _.filter = t1; _.isChecked = t2; _.key = t3; }, DesignListItem_build_closure1: function DesignListItem_build_closure1(t0) { this.$this = t0; }, DesignListItem_build_closure0: function DesignListItem_build_closure0(t0) { this.$this = t0; }, DesignListItem_build_closure: function DesignListItem_build_closure(t0) { this.$this = t0; }, DesignListVM_fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3]; t4.toString; t2 = t2.designUIState; t2.toString; t4 = t4.designState; t2 = t2.listUIState; return new A.DesignListVM(state, $.$get$memoizedFilteredDesignList().call$3(t4.map, t4.list, t2), t1[t3].designState.map, t2.filter, new A.DesignListVM_fromStore_closure(new A.DesignListVM_fromStore__handleRefresh(store)), A._setArrayType([], type$.JSArray_legacy_String), new A.DesignListVM_fromStore_closure0(store), new A.DesignListVM_fromStore_closure1(store)); }, DesignListBuilder: function DesignListBuilder(t0) { this.key = t0; }, DesignListBuilder_build_closure: function DesignListBuilder_build_closure() { }, DesignListBuilder_build__closure: function DesignListBuilder_build__closure(t0) { this.viewModel = t0; }, DesignListVM: function DesignListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.designList = t1; _.designMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, DesignListVM_fromStore__handleRefresh: function DesignListVM_fromStore__handleRefresh(t0) { this.store = t0; }, DesignListVM_fromStore_closure: function DesignListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DesignListVM_fromStore_closure0: function DesignListVM_fromStore_closure0(t0) { this.store = t0; }, DesignListVM_fromStore_closure1: function DesignListVM_fromStore_closure1(t0) { this.store = t0; }, DesignScreen: function DesignScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, DesignScreen_build_closure10: function DesignScreen_build_closure10(t0) { this.store = t0; }, DesignScreen_build_closure7: function DesignScreen_build_closure7(t0) { this.store = t0; }, DesignScreen_build_closure8: function DesignScreen_build_closure8(t0) { this.store = t0; }, DesignScreen_build_closure9: function DesignScreen_build_closure9(t0) { this.store = t0; }, DesignScreen_build_closure4: function DesignScreen_build_closure4(t0) { this.store = t0; }, DesignScreen_build_closure5: function DesignScreen_build_closure5(t0) { this.store = t0; }, DesignScreen_build_closure: function DesignScreen_build_closure(t0) { this.store = t0; }, DesignScreen_build_closure0: function DesignScreen_build_closure0(t0) { this.store = t0; }, DesignScreen_build_closure1: function DesignScreen_build_closure1(t0) { this.store = t0; }, DesignScreen_build_closure2: function DesignScreen_build_closure2(t0) { this.store = t0; }, DesignScreen_build_closure3: function DesignScreen_build_closure3(t0) { this.store = t0; }, DesignScreen_build_closure6: function DesignScreen_build_closure6(t0, t1) { this.context = t0; this.state = t1; }, DesignScreenVM_fromStore(store) { var t4, t5, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].designState; t4.toString; t5 = $.$get$memoizedFilteredDesignList(); t2 = t2.designUIState.listUIState; t4 = t5.call$3(t4.map, t4.list, t2); t1[t3].toString; t2.toString; return new A.DesignScreenVM(t4); }, DesignScreenBuilder: function DesignScreenBuilder(t0) { this.key = t0; }, DesignScreenBuilder_build_closure: function DesignScreenBuilder_build_closure() { }, DesignScreenVM: function DesignScreenVM(t0) { this.designList = t0; }, DesignSettings$(draftMode, htmlController, isLoading, nameController, onDraftModeChanged, onLoadDesign, viewModel) { return new A.DesignSettings(viewModel, onLoadDesign, nameController, htmlController, draftMode, isLoading, onDraftModeChanged, null); }, DesignEdit: function DesignEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _DesignEditState: function _DesignEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._design_edit$_debouncer = t0; _._htmlDebouncer = t1; _._design_edit$_nameController = t2; _._htmlController = t3; _._headerController = t4; _._footerController = t5; _._bodyController = t6; _._productsController = t7; _._tasksController = t8; _._includesController = t9; _._pdfBytes = _._tabController = _._design_edit$_focusNode = null; _._html = ""; _._isDraftMode = _._design_edit$_isLoading = false; _._design_edit$_controllers = null; _.SingleTickerProviderStateMixin__ticker = t10; _.SingleTickerProviderStateMixin__tickerModeNotifier = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, _DesignEditState_didChangeDependencies_closure: function _DesignEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DesignEditState_didChangeDependencies_closure0: function _DesignEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _DesignEditState_dispose_closure: function _DesignEditState_dispose_closure(t0) { this.$this = t0; }, _DesignEditState__onChanged_closure: function _DesignEditState__onChanged_closure(t0) { this.$this = t0; }, _DesignEditState__onChanged_closure0: function _DesignEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.design = t1; }, _DesignEditState__onHtmlChanged_closure: function _DesignEditState__onHtmlChanged_closure(t0) { this.$this = t0; }, _DesignEditState__onHtmlChanged__closure: function _DesignEditState__onHtmlChanged__closure(t0) { this.$this = t0; }, _DesignEditState__loadDesign_closure: function _DesignEditState__loadDesign_closure(t0) { this.$this = t0; }, _DesignEditState__loadDesign_closure0: function _DesignEditState__loadDesign_closure0(t0) { this.$this = t0; }, _DesignEditState__loadPreview_closure: function _DesignEditState__loadPreview_closure(t0) { this.$this = t0; }, _DesignEditState__loadPreview_closure0: function _DesignEditState__loadPreview_closure0(t0) { this.$this = t0; }, _DesignEditState__loadPreview__closure: function _DesignEditState__loadPreview__closure(t0, t1) { this.$this = t0; this.response = t1; }, _DesignEditState__setDraftMode_closure: function _DesignEditState__setDraftMode_closure(t0, t1) { this.$this = t0; this.isDraftMode = t1; }, _DesignEditState_build_closure2: function _DesignEditState_build_closure2(t0) { this.viewModel = t0; }, _DesignEditState_build_closure: function _DesignEditState_build_closure(t0) { this.viewModel = t0; }, _DesignEditState_build_closure0: function _DesignEditState_build_closure0(t0) { this.$this = t0; }, _DesignEditState_build_closure1: function _DesignEditState_build_closure1(t0) { this.$this = t0; }, DesignSection: function DesignSection(t0, t1) { this.textController = t0; this.key = t1; }, DesignSettings: function DesignSettings(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.viewModel = t0; _.onLoadDesign = t1; _.nameController = t2; _.htmlController = t3; _.draftMode = t4; _.isLoading = t5; _.onDraftModeChanged = t6; _.key = t7; }, _DesignSettingsState: function _DesignSettingsState(t0) { var _ = this; _._widget = _._selectedDesign = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DesignSettingsState_build_closure: function _DesignSettingsState_build_closure(t0) { this.$this = t0; }, _DesignSettingsState_build_closure0: function _DesignSettingsState_build_closure0() { }, PdfDesignPreview: function PdfDesignPreview(t0, t1, t2) { this.pdfBytes = t0; this.isLoading = t1; this.key = t2; }, _PdfDesignPreviewState: function _PdfDesignPreviewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, HtmlDesignPreview: function HtmlDesignPreview(t0, t1, t2) { this.html = t0; this.isLoading = t1; this.key = t2; }, InsertTabIntent: function InsertTabIntent(t0, t1) { this.numSpaces = t0; this.textController = t1; }, InsertTabAction: function InsertTabAction(t0) { this._actions$_listeners = t0; this._currentCallingAction = null; }, __DesignEditState_State_SingleTickerProviderStateMixin: function __DesignEditState_State_SingleTickerProviderStateMixin() { }, DesignEditVM_DesignEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, design = t1.designUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].designState.map; t4 = design.id; t3._map$_map.$index(0, t4); return new A.DesignEditVM(design, t2[t1].userCompany.company, new A.DesignEditVM_DesignEditVM$fromStore_closure(store), new A.DesignEditVM_DesignEditVM$fromStore_closure0(store), new A.DesignEditVM_DesignEditVM$fromStore_closure1(store, state), state); }, DesignEditScreen: function DesignEditScreen(t0) { this.key = t0; }, DesignEditScreen_build_closure0: function DesignEditScreen_build_closure0() { }, DesignEditScreen_build_closure: function DesignEditScreen_build_closure() { }, DesignEditVM: function DesignEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.design = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, DesignEditVM_DesignEditVM$fromStore_closure: function DesignEditVM_DesignEditVM$fromStore_closure(t0) { this.store = t0; }, DesignEditVM_DesignEditVM$fromStore_closure1: function DesignEditVM_DesignEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, DesignEditVM_DesignEditVM$fromStore_closure0: function DesignEditVM_DesignEditVM$fromStore_closure0(t0) { this.store = t0; }, DesignEditVM_DesignEditVM$fromStore__closure: function DesignEditVM_DesignEditVM$fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, DesignView: function DesignView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _DesignViewState: function _DesignViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _DesignViewState_build_closure: function _DesignViewState_build_closure(t0) { this.state = t0; }, _DesignViewState_build_closure0: function _DesignViewState_build_closure0(t0) { this.design = t0; }, _DesignViewState_build_closure1: function _DesignViewState_build_closure1(t0) { this.state = t0; }, _DesignViewState_build_closure2: function _DesignViewState_build_closure2(t0) { this.design = t0; }, _DesignViewState_build_closure3: function _DesignViewState_build_closure3(t0) { this.state = t0; }, _DesignViewState_build_closure4: function _DesignViewState_build_closure4(t0) { this.design = t0; }, _DesignViewState_build_closure5: function _DesignViewState_build_closure5(t0) { this.state = t0; }, _DesignViewState_build_closure6: function _DesignViewState_build_closure6(t0) { this.design = t0; }, _DesignViewState_build_closure7: function _DesignViewState_build_closure7(t0) { this.viewModel = t0; }, DesignViewVM_DesignViewVM$fromStore(store) { var t4, design, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].designState.map; t2 = t2.designUIState.selectedId; design = t4._map$_map.$index(0, t2); if (design == null) design = A.DesignEntity_DesignEntity(null, t2, null); t1 = t1[t3].userCompany.company; design.get$isNew(); return new A.DesignViewVM(state, design, t1, new A.DesignViewVM_DesignViewVM$fromStore_closure(store)); }, DesignViewScreen: function DesignViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, DesignViewScreen_build_closure0: function DesignViewScreen_build_closure0() { }, DesignViewScreen_build_closure: function DesignViewScreen_build_closure(t0) { this.$this = t0; }, DesignViewVM: function DesignViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.design = t1; _.company = t2; _.onBackPressed = t3; }, DesignViewVM_DesignViewVM$fromStore_closure: function DesignViewVM_DesignViewVM$fromStore_closure(t0) { this.store = t0; }, DocumentListItem: function DocumentListItem(t0, t1, t2, t3, t4) { var _ = this; _.userCompany = t0; _.isChecked = t1; _.document = t2; _.filter = t3; _.key = t4; }, DocumentListItem_build_closure1: function DocumentListItem_build_closure1(t0) { this.$this = t0; }, DocumentListItem_build_closure0: function DocumentListItem_build_closure0(t0) { this.$this = t0; }, DocumentListItem_build_closure: function DocumentListItem_build_closure(t0) { this.$this = t0; }, DocumentListVM_fromStore(store) { var t3, t4, t5, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.documentUIState; t2.toString; t3 = $.$get$memoizedFilteredDocumentList(); t4 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t4 = t4._list; t5 = t4[t1].documentState; t2 = t2.listUIState; return new A.DocumentListVM(state, t3.call$3(t5.map, t5.list, t2), t4[t1].documentState.map, t2.filter, new A.DocumentListVM_fromStore_closure(new A.DocumentListVM_fromStore__handleRefresh(store)), new A.DocumentListVM_fromStore_closure0(store), new A.DocumentListVM_fromStore_closure1(store)); }, DocumentListBuilder: function DocumentListBuilder(t0) { this.key = t0; }, DocumentListBuilder_build_closure: function DocumentListBuilder_build_closure() { }, DocumentListBuilder_build__closure: function DocumentListBuilder_build__closure(t0) { this.viewModel = t0; }, DocumentListVM: function DocumentListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.documentList = t1; _.documentMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, DocumentListVM_fromStore__handleRefresh: function DocumentListVM_fromStore__handleRefresh(t0) { this.store = t0; }, DocumentListVM_fromStore_closure: function DocumentListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DocumentListVM_fromStore_closure0: function DocumentListVM_fromStore_closure0(t0) { this.store = t0; }, DocumentListVM_fromStore_closure1: function DocumentListVM_fromStore_closure1(t0) { this.store = t0; }, DocumentScreen: function DocumentScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, DocumentScreen_build_closure10: function DocumentScreen_build_closure10(t0) { this.store = t0; }, DocumentScreen_build_closure7: function DocumentScreen_build_closure7(t0) { this.store = t0; }, DocumentScreen_build_closure8: function DocumentScreen_build_closure8(t0) { this.store = t0; }, DocumentScreen_build_closure9: function DocumentScreen_build_closure9(t0) { this.store = t0; }, DocumentScreen_build_closure4: function DocumentScreen_build_closure4(t0) { this.store = t0; }, DocumentScreen_build_closure0: function DocumentScreen_build_closure0(t0) { this.store = t0; }, DocumentScreen_build_closure1: function DocumentScreen_build_closure1(t0) { this.store = t0; }, DocumentScreen_build_closure2: function DocumentScreen_build_closure2(t0) { this.store = t0; }, DocumentScreen_build_closure3: function DocumentScreen_build_closure3(t0) { this.store = t0; }, DocumentScreen_build_closure5: function DocumentScreen_build_closure5(t0) { this.store = t0; }, DocumentScreen_build_closure: function DocumentScreen_build_closure(t0) { this.store = t0; }, DocumentScreen_build_closure6: function DocumentScreen_build_closure6(t0) { this.context = t0; }, DocumentScreenVM_fromStore(store) { var t4, t5, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].documentState; t4.toString; t5 = $.$get$memoizedFilteredDocumentList(); t2 = t2.documentUIState.listUIState; t4 = t5.call$3(t4.map, t4.list, t2); t1[t3].toString; t2.toString; return new A.DocumentScreenVM(t4); }, DocumentScreenBuilder: function DocumentScreenBuilder(t0) { this.key = t0; }, DocumentScreenBuilder_build_closure: function DocumentScreenBuilder_build_closure() { }, DocumentScreenVM: function DocumentScreenVM(t0) { this.documentList = t0; }, DocumentEdit: function DocumentEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _DocumentEditState: function _DocumentEditState(t0, t1, t2) { var _ = this; _._document_edit$_debouncer = t0; _._document_edit$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DocumentEditState_didChangeDependencies_closure: function _DocumentEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DocumentEditState_didChangeDependencies_closure0: function _DocumentEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _DocumentEditState_dispose_closure: function _DocumentEditState_dispose_closure(t0) { this.$this = t0; }, _DocumentEditState__onChanged_closure: function _DocumentEditState__onChanged_closure() { }, _DocumentEditState__onChanged_closure0: function _DocumentEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.document = t1; }, _DocumentEditState_build_closure0: function _DocumentEditState_build_closure0(t0) { this.viewModel = t0; }, _DocumentEditState_build_closure: function _DocumentEditState_build_closure() { }, DocumentEditVM_DocumentEditVM$fromStore(store) { var t3, t4, $document = A._lateReadCheck(store.__Store__state, "_state").uiState.documentUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].documentState.map; t4 = $document.id; t3._map$_map.$index(0, t4); return new A.DocumentEditVM($document, t1[t2].userCompany.company, new A.DocumentEditVM_DocumentEditVM$fromStore_closure(store), new A.DocumentEditVM_DocumentEditVM$fromStore_closure0(), state); }, DocumentEditScreen: function DocumentEditScreen(t0) { this.key = t0; }, DocumentEditScreen_build_closure0: function DocumentEditScreen_build_closure0() { }, DocumentEditScreen_build_closure: function DocumentEditScreen_build_closure() { }, DocumentEditVM: function DocumentEditVM(t0, t1, t2, t3, t4) { var _ = this; _.document = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.state = t4; }, DocumentEditVM_DocumentEditVM$fromStore_closure: function DocumentEditVM_DocumentEditVM$fromStore_closure(t0) { this.store = t0; }, DocumentEditVM_DocumentEditVM$fromStore_closure0: function DocumentEditVM_DocumentEditVM$fromStore_closure0() { }, DocumentView: function DocumentView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _DocumentViewState: function _DocumentViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, DocumentViewVM_DocumentViewVM$fromStore(store) { var t4, $document, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].documentState.map; t2 = t2.documentUIState.selectedId; $document = t4._map$_map.$index(0, t2); if ($document == null) $document = A.DocumentEntity_DocumentEntity(t2); t1 = t1[t3].userCompany.company; $document.get$isNew(); return new A.DocumentViewVM(state, $document, t1); }, DocumentViewScreen: function DocumentViewScreen(t0) { this.key = t0; }, DocumentViewScreen_build_closure0: function DocumentViewScreen_build_closure0() { }, DocumentViewScreen_build_closure: function DocumentViewScreen_build_closure(t0) { this.$this = t0; }, DocumentViewVM: function DocumentViewVM(t0, t1, t2) { this.state = t0; this.document = t1; this.company = t2; }, ExpenseEdit: function ExpenseEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseEditState: function _ExpenseEditState(t0, t1, t2) { var _ = this; _._expense_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ExpenseEditState__onSavePressed_closure: function _ExpenseEditState__onSavePressed_closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.action = t2; }, _ExpenseEditState_build_closure1: function _ExpenseEditState_build_closure1(t0) { this.viewModel = t0; }, _ExpenseEditState_build_closure2: function _ExpenseEditState_build_closure2(t0) { this.$this = t0; }, _ExpenseEditState_build_closure0: function _ExpenseEditState_build_closure0(t0) { this.$this = t0; }, _ExpenseEditState_build_closure: function _ExpenseEditState_build_closure(t0) { this.store = t0; }, __ExpenseEditState_State_SingleTickerProviderStateMixin: function __ExpenseEditState_State_SingleTickerProviderStateMixin() { }, ExpenseEditDesktop: function ExpenseEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditDetails: function ExpenseEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditDetailsState: function ExpenseEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._expense_edit_details$_numberController = t0; _._expense_edit_details$_amountController = t1; _._expense_edit_details$_custom1Controller = t2; _._expense_edit_details$_custom2Controller = t3; _._expense_edit_details$_custom3Controller = t4; _._expense_edit_details$_custom4Controller = t5; _._expense_edit_details$_controllers = null; _._expense_edit_details$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ExpenseEditDetailsState_didChangeDependencies_closure: function ExpenseEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState_didChangeDependencies_closure0: function ExpenseEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditDetailsState_dispose_closure: function ExpenseEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState__onChanged_closure: function ExpenseEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState__onChanged_closure0: function ExpenseEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build_closure1: function ExpenseEditDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure18: function ExpenseEditDetailsState_build__closure18(t0) { this.vendor = t0; }, ExpenseEditDetailsState_build_closure: function ExpenseEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, ExpenseEditDetailsState_build_closure0: function ExpenseEditDetailsState_build_closure0(t0) { this.store = t0; }, ExpenseEditDetailsState_build__closure19: function ExpenseEditDetailsState_build__closure19(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure3: function ExpenseEditDetailsState_build_closure3(t0, t1, t2) { this.company = t0; this.viewModel = t1; this.expense = t2; }, ExpenseEditDetailsState_build__closure17: function ExpenseEditDetailsState_build__closure17(t0, t1) { this.client = t0; this.currencyId = t1; }, ExpenseEditDetailsState_build_closure2: function ExpenseEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, ExpenseEditDetailsState_build_closure4: function ExpenseEditDetailsState_build_closure4(t0, t1, t2) { this.store = t0; this.viewModel = t1; this.expense = t2; }, ExpenseEditDetailsState_build__closure16: function ExpenseEditDetailsState_build__closure16(t0, t1) { this.project = t0; this.expense = t1; }, ExpenseEditDetailsState_build_closure6: function ExpenseEditDetailsState_build_closure6(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure14: function ExpenseEditDetailsState_build__closure14(t0) { this.category = t0; }, ExpenseEditDetailsState_build_closure5: function ExpenseEditDetailsState_build_closure5(t0) { this.store = t0; }, ExpenseEditDetailsState_build__closure15: function ExpenseEditDetailsState_build__closure15(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure7: function ExpenseEditDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure13: function ExpenseEditDetailsState_build__closure13(t0) { this.userId = t0; }, ExpenseEditDetailsState_build_closure8: function ExpenseEditDetailsState_build_closure8(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure12: function ExpenseEditDetailsState_build__closure12(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure9: function ExpenseEditDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure11: function ExpenseEditDetailsState_build__closure11(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure10: function ExpenseEditDetailsState_build_closure10(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure10: function ExpenseEditDetailsState_build__closure10(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure11: function ExpenseEditDetailsState_build_closure11(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure9: function ExpenseEditDetailsState_build__closure9(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure12: function ExpenseEditDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure8: function ExpenseEditDetailsState_build__closure8(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure13: function ExpenseEditDetailsState_build_closure13(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure7: function ExpenseEditDetailsState_build__closure7(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure14: function ExpenseEditDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure6: function ExpenseEditDetailsState_build__closure6(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure15: function ExpenseEditDetailsState_build_closure15(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure5: function ExpenseEditDetailsState_build__closure5(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure16: function ExpenseEditDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure4: function ExpenseEditDetailsState_build__closure4(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure17: function ExpenseEditDetailsState_build_closure17(t0) { this.viewModel = t0; }, ExpenseEditDetailsState_build__closure3: function ExpenseEditDetailsState_build__closure3(t0) { this.currency = t0; }, ExpenseEditDetailsState_build_closure18: function ExpenseEditDetailsState_build_closure18(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure2: function ExpenseEditDetailsState_build__closure2(t0) { this.date = t0; }, ExpenseEditDetailsState_build_closure20: function ExpenseEditDetailsState_build_closure20(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure1: function ExpenseEditDetailsState_build__closure1(t0) { this.value = t0; }, ExpenseEditDetailsState_build_closure19: function ExpenseEditDetailsState_build_closure19(t0) { this.localization = t0; }, ExpenseEditDetailsState_build_closure21: function ExpenseEditDetailsState_build_closure21(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure0: function ExpenseEditDetailsState_build__closure0(t0) { this.date = t0; }, ExpenseEditDetailsState_build_closure23: function ExpenseEditDetailsState_build_closure23(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure: function ExpenseEditDetailsState_build__closure(t0) { this.value = t0; }, ExpenseEditDetailsState_build_closure22: function ExpenseEditDetailsState_build_closure22() { }, ExpenseEditNotes: function ExpenseEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditNotesState: function ExpenseEditNotesState(t0, t1, t2, t3) { var _ = this; _._publicNotesController = t0; _._expense_edit_notes$_privateNotesController = t1; _._expense_edit_notes$_controllers = null; _._expense_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ExpenseEditNotesState_didChangeDependencies_closure: function ExpenseEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditNotesState_didChangeDependencies_closure0: function ExpenseEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditNotesState_dispose_closure: function ExpenseEditNotesState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditNotesState__onChanged_closure: function ExpenseEditNotesState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditNotesState__onChanged_closure0: function ExpenseEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettings: function ExpenseEditSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditSettingsState: function ExpenseEditSettingsState(t0, t1, t2, t3) { var _ = this; _._showConvertCurrencyFields = _._showPaymentFields = false; _._expense_edit_settings$_convertedAmount = 0; _._expense_edit_settings$_transactionReferenceController = t0; _._expense_edit_settings$_exchangeRateController = t1; _._expense_edit_settings$_controllers = null; _._expense_edit_settings$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ExpenseEditSettingsState_didChangeDependencies_closure: function ExpenseEditSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState_didChangeDependencies_closure0: function ExpenseEditSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditSettingsState_dispose_closure: function ExpenseEditSettingsState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState__onChanged_closure: function ExpenseEditSettingsState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState__onChanged_closure0: function ExpenseEditSettingsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState__setCurrency_closure: function ExpenseEditSettingsState__setCurrency_closure(t0, t1, t2) { this.currency = t0; this.expense = t1; this.exchangeRate = t2; }, ExpenseEditSettingsState__setCurrency_closure0: function ExpenseEditSettingsState__setCurrency_closure0(t0, t1) { this.$this = t0; this.exchangeRate = t1; }, ExpenseEditSettingsState__calculateExchangeRate_closure: function ExpenseEditSettingsState__calculateExchangeRate_closure(t0) { this.exchangeRate = t0; }, ExpenseEditSettingsState_build_closure: function ExpenseEditSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure11: function ExpenseEditSettingsState_build__closure11(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure0: function ExpenseEditSettingsState_build_closure0(t0, t1, t2) { this.$this = t0; this.expense = t1; this.viewModel = t2; }, ExpenseEditSettingsState_build__closure7: function ExpenseEditSettingsState_build__closure7() { }, ExpenseEditSettingsState_build__closure8: function ExpenseEditSettingsState_build__closure8() { }, ExpenseEditSettingsState_build__closure9: function ExpenseEditSettingsState_build__closure9(t0) { this.$this = t0; }, ExpenseEditSettingsState_build__closure10: function ExpenseEditSettingsState_build__closure10(t0, t1) { this.$this = t0; this.value = t1; }, ExpenseEditSettingsState_build_closure1: function ExpenseEditSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure6: function ExpenseEditSettingsState_build__closure6(t0) { this.paymentType = t0; }, ExpenseEditSettingsState_build_closure2: function ExpenseEditSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure5: function ExpenseEditSettingsState_build__closure5(t0) { this.date = t0; }, ExpenseEditSettingsState_build_closure3: function ExpenseEditSettingsState_build_closure3(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.staticState = t1; _.expense = t2; _.viewModel = t3; }, ExpenseEditSettingsState_build__closure2: function ExpenseEditSettingsState_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, ExpenseEditSettingsState_build__closure3: function ExpenseEditSettingsState_build__closure3() { }, ExpenseEditSettingsState_build__closure4: function ExpenseEditSettingsState_build__closure4(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure4: function ExpenseEditSettingsState_build_closure4(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure7: function ExpenseEditSettingsState_build_closure7(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure5: function ExpenseEditSettingsState_build_closure5(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure6: function ExpenseEditSettingsState_build_closure6(t0, t1) { this.$this = t0; this.viewModel = t1; }, ExpenseEditSettingsState_build_closure8: function ExpenseEditSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure1: function ExpenseEditSettingsState_build__closure1(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure9: function ExpenseEditSettingsState_build_closure9(t0) { this.context = t0; }, ExpenseEditSettingsState_build_closure10: function ExpenseEditSettingsState_build_closure10(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure0: function ExpenseEditSettingsState_build__closure0(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure11: function ExpenseEditSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure: function ExpenseEditSettingsState_build__closure(t0) { this.value = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore(store) { var expense = A._lateReadCheck(store.__Store__state, "_state").uiState.expenseUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].expenseState.map; t1 = expense.id; t2._map$_map.$index(0, t1); return new A.ExpenseEditVM(expense, new A.ExpenseEditVM_ExpenseEditVM$fromStore_closure(store), new A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0(store, state), new A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1(store, state), state, new A.ExpenseEditVM_ExpenseEditVM$fromStore_closure2(store), new A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3(store)); }, ExpenseEditScreen: function ExpenseEditScreen(t0) { this.key = t0; }, ExpenseEditScreen_build_closure0: function ExpenseEditScreen_build_closure0() { }, ExpenseEditScreen_build_closure: function ExpenseEditScreen_build_closure() { }, AbstractExpenseEditVM: function AbstractExpenseEditVM() { }, ExpenseEditVM: function ExpenseEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.expense = t0; _.onChanged = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.state = t4; _.onAddClientPressed = t5; _.onAddVendorPressed = t6; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure: function ExpenseEditVM_ExpenseEditVM$fromStore_closure(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure1: function ExpenseEditVM_ExpenseEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure2: function ExpenseEditVM_ExpenseEditVM$fromStore_closure2(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure1: function ExpenseEditVM_ExpenseEditVM$fromStore__closure1(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure2: function ExpenseEditVM_ExpenseEditVM$fromStore__closure2(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure3: function ExpenseEditVM_ExpenseEditVM$fromStore_closure3(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure: function ExpenseEditVM_ExpenseEditVM$fromStore__closure(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure0: function ExpenseEditVM_ExpenseEditVM$fromStore__closure0(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure0: function ExpenseEditVM_ExpenseEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure3: function ExpenseEditVM_ExpenseEditVM$fromStore__closure3(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, ExpenseEditVM_ExpenseEditVM$fromStore___closure: function ExpenseEditVM_ExpenseEditVM$fromStore___closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.expense = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, ExpenseEditVM_ExpenseEditVM$fromStore___closure0: function ExpenseEditVM_ExpenseEditVM$fromStore___closure0() { }, ExpenseEditVM_ExpenseEditVM$fromStore____closure: function ExpenseEditVM_ExpenseEditVM$fromStore____closure(t0) { this.error = t0; }, ExpenseListItem$(expense, filter, isChecked, isDismissible, onCheckboxChanged, onTap, showCheckbox) { return new A.ExpenseListItem(onCheckboxChanged, onTap, expense, filter, showCheckbox, isDismissible, isChecked, null); }, ExpenseListItem: function ExpenseListItem(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onCheckboxChanged = t0; _.onTap = t1; _.expense = t2; _.filter = t3; _.showCheckbox = t4; _.isDismissible = t5; _.isChecked = t6; _.key = t7; }, ExpenseListItem_build_closure: function ExpenseListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; _.localization = t9; _.category = t10; }, ExpenseListItem_build__closure2: function ExpenseListItem_build__closure2(t0) { this.$this = t0; }, ExpenseListItem_build__closure1: function ExpenseListItem_build__closure1(t0) { this.$this = t0; }, ExpenseListItem_build__closure: function ExpenseListItem_build__closure(t0) { this.$this = t0; }, ExpenseListItem_build__closure0: function ExpenseListItem_build__closure0(t0) { this.$this = t0; }, ExpenseListItem_build__closure5: function ExpenseListItem_build__closure5(t0) { this.$this = t0; }, ExpenseListItem_build__closure4: function ExpenseListItem_build__closure4(t0) { this.$this = t0; }, ExpenseListItem_build__closure3: function ExpenseListItem_build__closure3(t0) { this.$this = t0; }, ExpenseListVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userCompany.user; t2 = t2.expenseUIState; t2.toString; t5 = $.$get$memoizedFilteredExpenseList(); t6 = state.getUISelection$1(B.EntityType_expense); t7 = t1[t3]; t2 = t2.listUIState; t7 = t5.call$9(t6, t7.expenseState.map, t7.clientState.map, t7.vendorState.map, t7.userState.map, t2, t7.invoiceState.map, t7.expenseCategoryState.map, state.staticState); t6 = t1[t3]; t5 = t6.expenseState.map; t2 = t2.filter; t6 = t6.userCompany.settings; t6 = t6 == null ? null : t6.getTableColumns$1(B.EntityType_expense); if (t6 == null) { t1[t3].toString; t1 = A._setArrayType(["status", "number", "vendor", "client", "date", "amount", "public_notes", "entity_state"], type$.JSArray_legacy_String); } else t1 = t6; return new A.ExpenseListVM(state, t4, t7, t5, t2, new A.ExpenseListVM_fromStore_closure(new A.ExpenseListVM_fromStore__handleRefresh(store)), t1, new A.ExpenseListVM_fromStore_closure0(store), new A.ExpenseListVM_fromStore_closure1(store)); }, ExpenseListBuilder: function ExpenseListBuilder(t0) { this.key = t0; }, ExpenseListBuilder_build_closure: function ExpenseListBuilder_build_closure() { }, ExpenseListBuilder_build__closure: function ExpenseListBuilder_build__closure(t0) { this.viewModel = t0; }, ExpenseListVM: function ExpenseListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.user = t1; _.expenseList = t2; _.expenseMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultielsect = t8; }, ExpenseListVM_fromStore__handleRefresh: function ExpenseListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ExpenseListVM_fromStore_closure: function ExpenseListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseListVM_fromStore_closure0: function ExpenseListVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseListVM_fromStore_closure1: function ExpenseListVM_fromStore_closure1(t0) { this.store = t0; }, ExpensePresenter: function ExpensePresenter() { this.context = this.entity = null; }, ExpenseScreen: function ExpenseScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseScreen_build_closure: function ExpenseScreen_build_closure(t0) { this.localization = t0; }, ExpenseScreen_build_closure0: function ExpenseScreen_build_closure0(t0) { this.localization = t0; }, ExpenseScreen_build_closure1: function ExpenseScreen_build_closure1(t0) { this.localization = t0; }, ExpenseScreen_build_closure2: function ExpenseScreen_build_closure2(t0) { this.localization = t0; }, ExpenseScreen_build_closure3: function ExpenseScreen_build_closure3(t0) { this.localization = t0; }, ExpenseScreen_build_closure17: function ExpenseScreen_build_closure17(t0) { this.store = t0; }, ExpenseScreen_build_closure13: function ExpenseScreen_build_closure13(t0) { this.store = t0; }, ExpenseScreen_build_closure15: function ExpenseScreen_build_closure15(t0) { this.store = t0; }, ExpenseScreen_build_closure14: function ExpenseScreen_build_closure14(t0) { this.store = t0; }, ExpenseScreen_build_closure16: function ExpenseScreen_build_closure16(t0) { this.store = t0; }, ExpenseScreen_build_closure9: function ExpenseScreen_build_closure9(t0) { this.store = t0; }, ExpenseScreen_build_closure5: function ExpenseScreen_build_closure5(t0) { this.store = t0; }, ExpenseScreen_build_closure6: function ExpenseScreen_build_closure6(t0) { this.store = t0; }, ExpenseScreen_build_closure7: function ExpenseScreen_build_closure7(t0) { this.store = t0; }, ExpenseScreen_build_closure8: function ExpenseScreen_build_closure8(t0) { this.store = t0; }, ExpenseScreen_build_closure10: function ExpenseScreen_build_closure10(t0) { this.store = t0; }, ExpenseScreen_build_closure11: function ExpenseScreen_build_closure11(t0) { this.store = t0; }, ExpenseScreen_build_closure4: function ExpenseScreen_build_closure4(t0) { this.store = t0; }, ExpenseScreen_build_closure12: function ExpenseScreen_build_closure12(t0) { this.context = t0; }, ExpenseScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].expenseState.toString; t4 = $.$get$memoizedFilteredExpenseList(); t5 = state.getUISelection$1(B.EntityType_expense); t6 = t1[t3]; t7 = t6.expenseState.map; t8 = t6.clientState.map; t9 = t6.vendorState.map; t10 = t6.userState.map; t2 = t2.expenseUIState.listUIState; t6 = t4.call$9(t5, t7, t8, t9, t10, t2, t6.invoiceState.map, t6.expenseCategoryState.map, state.staticState); t1[t3].toString; t2.toString; return new A.ExpenseScreenVM(t6); }, ExpenseScreenBuilder: function ExpenseScreenBuilder(t0) { this.key = t0; }, ExpenseScreenBuilder_build_closure: function ExpenseScreenBuilder_build_closure() { }, ExpenseScreenVM: function ExpenseScreenVM(t0) { this.expenseList = t0; }, ExpenseView: function ExpenseView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ExpenseViewState: function _ExpenseViewState(t0, t1, t2) { var _ = this; _._expense_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ExpenseViewState_build_closure: function _ExpenseViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.expense = t2; }, _ExpenseViewState_build__closure: function _ExpenseViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ExpenseViewState_build__closure0: function _ExpenseViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ExpenseViewState_build__closure1: function _ExpenseViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, __ExpenseViewState_State_SingleTickerProviderStateMixin: function __ExpenseViewState_State_SingleTickerProviderStateMixin() { }, ExpenseViewDocuments: function ExpenseViewDocuments(t0, t1, t2) { this.viewModel = t0; this.expense = t1; this.key = t2; }, ExpenseViewDocuments_build_closure: function ExpenseViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseViewDocuments_build_closure0: function ExpenseViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseOverview: function ExpenseOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, ExpenseOverview_build__buildDetailsList: function ExpenseOverview_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.expense = t0; _.context = t1; _.localization = t2; _.state = t3; }, ExpenseViewSchedule: function ExpenseViewSchedule(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseViewScheduleState: function _ExpenseViewScheduleState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ExpenseViewScheduleState_build_closure: function _ExpenseViewScheduleState_build_closure(t0) { this.context = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore(store) { var t4, expense, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].expenseState.map; t2 = t2.expenseUIState.selectedId; expense = t4._map$_map.$index(0, t2); if (expense == null) expense = A.ExpenseEntity_ExpenseEntity(_null, _null, t2, _null, _null, _null, _null); t1 = t1[t3].userCompany.company; expense.get$isNew(); return new A.ExpenseViewVM(state, expense, t1, new A.ExpenseViewVM_ExpenseViewVM$fromStore_closure(new A.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh(store, expense)), new A.ExpenseViewVM_ExpenseViewVM$fromStore_closure0(store, expense), new A.ExpenseViewVM_ExpenseViewVM$fromStore_closure1(store, expense)); }, ExpenseViewScreen: function ExpenseViewScreen(t0) { this.key = t0; }, ExpenseViewScreen_build_closure0: function ExpenseViewScreen_build_closure0() { }, ExpenseViewScreen_build_closure: function ExpenseViewScreen_build_closure(t0) { this.$this = t0; }, AbstractExpenseViewVM: function AbstractExpenseViewVM() { }, ExpenseViewVM: function ExpenseViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.expense = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh: function ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure: function ExpenseViewVM_ExpenseViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure0: function ExpenseViewVM_ExpenseViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure0: function ExpenseViewVM_ExpenseViewVM$fromStore__closure0(t0) { this.context = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure1: function ExpenseViewVM_ExpenseViewVM$fromStore__closure1() { }, ExpenseViewVM_ExpenseViewVM$fromStore___closure: function ExpenseViewVM_ExpenseViewVM$fromStore___closure(t0) { this.error = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure1: function ExpenseViewVM_ExpenseViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure: function ExpenseViewVM_ExpenseViewVM$fromStore__closure(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseCategoryEdit: function ExpenseCategoryEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseCategoryEditState: function _ExpenseCategoryEditState(t0, t1, t2, t3) { var _ = this; _._expense_category_edit$_debouncer = t0; _._autoValidate = false; _._nameController = t1; _._expense_category_edit$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ExpenseCategoryEditState_didChangeDependencies_closure: function _ExpenseCategoryEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState_didChangeDependencies_closure0: function _ExpenseCategoryEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ExpenseCategoryEditState_dispose_closure: function _ExpenseCategoryEditState_dispose_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState__onChanged_closure: function _ExpenseCategoryEditState__onChanged_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState__onChanged_closure0: function _ExpenseCategoryEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.expenseCategory = t1; }, _ExpenseCategoryEditState_build_closure0: function _ExpenseCategoryEditState_build_closure0(t0) { this.viewModel = t0; }, _ExpenseCategoryEditState_build_closure1: function _ExpenseCategoryEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ExpenseCategoryEditState_build__closure: function _ExpenseCategoryEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ExpenseCategoryEditState_build_closure: function _ExpenseCategoryEditState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.viewModel = t2; _.expenseCategory = t3; }, _ExpenseCategoryEditState_build__closure0: function _ExpenseCategoryEditState_build__closure0(t0, t1) { this.viewModel = t0; this.expenseCategory = t1; }, _ExpenseCategoryEditState_build___closure: function _ExpenseCategoryEditState_build___closure(t0) { this.value = t0; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, expenseCategory = t1.expenseCategoryUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].expenseCategoryState.map; t4 = expenseCategory.id; t3._map$_map.$index(0, t4); return new A.ExpenseCategoryEditVM(expenseCategory, t2[t1].userCompany.company, new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure(store), new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0(store, state), new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1(store, state), state); }, ExpenseCategoryEditScreen: function ExpenseCategoryEditScreen(t0) { this.key = t0; }, ExpenseCategoryEditScreen_build_closure0: function ExpenseCategoryEditScreen_build_closure0() { }, ExpenseCategoryEditScreen_build_closure: function ExpenseCategoryEditScreen_build_closure() { }, ExpenseCategoryEditVM: function ExpenseCategoryEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.expenseCategory = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure(t0) { this.store = t0; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.expenseCategory = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0() { }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure(t0) { this.error = t0; }, ExpenseCategoryListItem: function ExpenseCategoryListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.expenseCategory = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ExpenseCategoryListItem_build_closure1: function ExpenseCategoryListItem_build_closure1(t0) { this.$this = t0; }, ExpenseCategoryListItem_build_closure0: function ExpenseCategoryListItem_build_closure0(t0) { this.$this = t0; }, ExpenseCategoryListItem_build_closure: function ExpenseCategoryListItem_build_closure(t0) { this.$this = t0; }, ExpenseCategoryListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.expenseCategoryUIState; t2.toString; t4 = $.$get$memoizedFilteredExpenseCategoryList(); t5 = state.getUISelection$1(B.EntityType_expenseCategory); t6 = t1[t3].expenseCategoryState; t2 = t2.listUIState; t6 = t4.call$4(t5, t6.map, t6.list, t2); t5 = t1[t3]; t4 = t5.expenseCategoryState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_expenseCategory); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType([], type$.JSArray_legacy_String); } else t1 = t5; return new A.ExpenseCategoryListVM(state, t6, t4, t2, new A.ExpenseCategoryListVM_fromStore_closure(new A.ExpenseCategoryListVM_fromStore__handleRefresh(store)), t1, new A.ExpenseCategoryListVM_fromStore_closure0(store), new A.ExpenseCategoryListVM_fromStore_closure1(store)); }, ExpenseCategoryListBuilder: function ExpenseCategoryListBuilder(t0) { this.key = t0; }, ExpenseCategoryListBuilder_build_closure: function ExpenseCategoryListBuilder_build_closure() { }, ExpenseCategoryListBuilder_build__closure: function ExpenseCategoryListBuilder_build__closure(t0) { this.viewModel = t0; }, ExpenseCategoryListVM: function ExpenseCategoryListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.expenseCategoryList = t1; _.expenseCategoryMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ExpenseCategoryListVM_fromStore__handleRefresh: function ExpenseCategoryListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ExpenseCategoryListVM_fromStore_closure: function ExpenseCategoryListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseCategoryListVM_fromStore_closure0: function ExpenseCategoryListVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseCategoryListVM_fromStore_closure1: function ExpenseCategoryListVM_fromStore_closure1(t0) { this.store = t0; }, ExpenseCategoryPresenter: function ExpenseCategoryPresenter() { this.context = this.entity = null; }, ExpenseCategoryScreen: function ExpenseCategoryScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseCategoryScreen_build_closure10: function ExpenseCategoryScreen_build_closure10(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure9: function ExpenseCategoryScreen_build_closure9(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure7: function ExpenseCategoryScreen_build_closure7(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure8: function ExpenseCategoryScreen_build_closure8(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure4: function ExpenseCategoryScreen_build_closure4(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure5: function ExpenseCategoryScreen_build_closure5(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure: function ExpenseCategoryScreen_build_closure(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure0: function ExpenseCategoryScreen_build_closure0(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure1: function ExpenseCategoryScreen_build_closure1(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure2: function ExpenseCategoryScreen_build_closure2(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure3: function ExpenseCategoryScreen_build_closure3(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure6: function ExpenseCategoryScreen_build_closure6(t0) { this.context = t0; }, ExpenseCategoryScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].expenseCategoryState.toString; t4 = $.$get$memoizedFilteredExpenseCategoryList(); t5 = state.getUISelection$1(B.EntityType_expenseCategory); t6 = t1[t3].expenseCategoryState; t7 = t6.map; t6 = t6.list; t2 = t2.expenseCategoryUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.ExpenseCategoryScreenVM(t6); }, ExpenseCategoryScreenBuilder: function ExpenseCategoryScreenBuilder(t0) { this.key = t0; }, ExpenseCategoryScreenBuilder_build_closure: function ExpenseCategoryScreenBuilder_build_closure() { }, ExpenseCategoryScreenVM: function ExpenseCategoryScreenVM(t0) { this.expenseCategoryList = t0; }, ExpenseCategoryView: function ExpenseCategoryView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _ExpenseCategoryViewState: function _ExpenseCategoryViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ExpenseCategoryViewState_build_closure: function _ExpenseCategoryViewState_build_closure(t0) { this.viewModel = t0; }, ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore(store) { var t4, expenseCategory, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].expenseCategoryState.map; t2 = t2.expenseCategoryUIState.selectedId; expenseCategory = t4._map$_map.$index(0, t2); if (expenseCategory == null) expenseCategory = A.ExpenseCategoryEntity_ExpenseCategoryEntity(t2, null); t1 = t1[t3].userCompany.company; expenseCategory.get$isNew(); return new A.ExpenseCategoryViewVM(state, expenseCategory, t1, new A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure(store)); }, ExpenseCategoryViewScreen: function ExpenseCategoryViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, ExpenseCategoryViewScreen_build_closure0: function ExpenseCategoryViewScreen_build_closure0() { }, ExpenseCategoryViewScreen_build_closure: function ExpenseCategoryViewScreen_build_closure(t0) { this.$this = t0; }, ExpenseCategoryViewVM: function ExpenseCategoryViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.expenseCategory = t1; _.company = t2; _.onBackPressed = t3; }, ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure: function ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure(t0) { this.store = t0; }, GroupEdit: function GroupEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _GroupEditState: function _GroupEditState(t0, t1, t2, t3, t4, t5) { var _ = this; _._group_edit$_nameController = t0; _._group_edit$_custom1Controller = t1; _._group_edit$_custom2Controller = t2; _._group_edit$_controllers = t3; _._group_edit$_debouncer = t4; _.autoValidate = false; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _GroupEditState_didChangeDependencies_closure: function _GroupEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _GroupEditState_didChangeDependencies_closure0: function _GroupEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _GroupEditState_dispose_closure: function _GroupEditState_dispose_closure(t0) { this.$this = t0; }, _GroupEditState__onChanged_closure: function _GroupEditState__onChanged_closure(t0) { this.$this = t0; }, _GroupEditState__onChanged_closure0: function _GroupEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.group = t1; }, _GroupEditState_build_closure0: function _GroupEditState_build_closure0(t0) { this.viewModel = t0; }, _GroupEditState_build_closure1: function _GroupEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _GroupEditState_build__closure: function _GroupEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _GroupEditState_build_closure: function _GroupEditState_build_closure(t0, t1, t2) { this.$this = t0; this.localization = t1; this.viewModel = t2; }, _GroupEditState_build__closure0: function _GroupEditState_build__closure0(t0) { this.localization = t0; }, GroupEditVM_GroupEditVM$fromStore(store) { var t3, t4, group = A._lateReadCheck(store.__Store__state, "_state").uiState.groupUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].groupState.map; t4 = group.id; t3._map$_map.$index(0, t4); return new A.GroupEditVM(group, t1[t2].userCompany.company, new A.GroupEditVM_GroupEditVM$fromStore_closure(store), new A.GroupEditVM_GroupEditVM$fromStore_closure0(store, state), new A.GroupEditVM_GroupEditVM$fromStore_closure1(store, state), state); }, GroupEditScreen: function GroupEditScreen(t0) { this.key = t0; }, GroupEditScreen_build_closure0: function GroupEditScreen_build_closure0() { }, GroupEditScreen_build_closure: function GroupEditScreen_build_closure() { }, GroupEditVM: function GroupEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.group = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, GroupEditVM_GroupEditVM$fromStore_closure: function GroupEditVM_GroupEditVM$fromStore_closure(t0) { this.store = t0; }, GroupEditVM_GroupEditVM$fromStore_closure1: function GroupEditVM_GroupEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore_closure0: function GroupEditVM_GroupEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore__closure: function GroupEditVM_GroupEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore___closure: function GroupEditVM_GroupEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.group = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, GroupEditVM_GroupEditVM$fromStore___closure0: function GroupEditVM_GroupEditVM$fromStore___closure0() { }, GroupEditVM_GroupEditVM$fromStore____closure: function GroupEditVM_GroupEditVM$fromStore____closure(t0) { this.error = t0; }, GroupListItem: function GroupListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.group = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, GroupListItem_build_closure1: function GroupListItem_build_closure1(t0) { this.$this = t0; }, GroupListItem_build_closure0: function GroupListItem_build_closure0(t0) { this.$this = t0; }, GroupListItem_build_closure: function GroupListItem_build_closure(t0) { this.$this = t0; }, GroupListVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userCompany; t2 = t2.groupUIState; t2.toString; t5 = $.$get$memoizedFilteredGroupList(); t6 = state.getUISelection$1(B.EntityType_group); t7 = t1[t3].groupState; t2 = t2.listUIState; return new A.GroupListVM(state, t4, t5.call$4(t6, t7.map, t7.list, t2), t1[t3].groupState.map, t2.filter, new A.GroupListVM_fromStore_closure(new A.GroupListVM_fromStore__handleRefresh(store)), new A.GroupListVM_fromStore_closure0(store), new A.GroupListVM_fromStore_closure1(store)); }, GroupListBuilder: function GroupListBuilder(t0) { this.key = t0; }, GroupListBuilder_build_closure: function GroupListBuilder_build_closure() { }, GroupListBuilder_build__closure: function GroupListBuilder_build__closure(t0) { this.viewModel = t0; }, GroupListVM: function GroupListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.userCompany = t1; _.groupList = t2; _.groupMap = t3; _.filter = t4; _.onRefreshed = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, GroupListVM_fromStore__handleRefresh: function GroupListVM_fromStore__handleRefresh(t0) { this.store = t0; }, GroupListVM_fromStore_closure: function GroupListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, GroupListVM_fromStore_closure0: function GroupListVM_fromStore_closure0(t0) { this.store = t0; }, GroupListVM_fromStore_closure1: function GroupListVM_fromStore_closure1(t0) { this.store = t0; }, GroupSettingsScreen: function GroupSettingsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, GroupSettingsScreen_build_closure6: function GroupSettingsScreen_build_closure6(t0) { this.store = t0; }, GroupSettingsScreen_build_closure3: function GroupSettingsScreen_build_closure3(t0) { this.store = t0; }, GroupSettingsScreen_build_closure4: function GroupSettingsScreen_build_closure4(t0) { this.store = t0; }, GroupSettingsScreen_build_closure5: function GroupSettingsScreen_build_closure5(t0) { this.store = t0; }, GroupSettingsScreen_build_closure0: function GroupSettingsScreen_build_closure0(t0) { this.store = t0; }, GroupSettingsScreen_build_closure1: function GroupSettingsScreen_build_closure1(t0) { this.store = t0; }, GroupSettingsScreen_build_closure: function GroupSettingsScreen_build_closure(t0) { this.store = t0; }, GroupSettingsScreen_build_closure2: function GroupSettingsScreen_build_closure2(t0) { this.context = t0; }, GroupScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].groupState.toString; t4 = $.$get$memoizedFilteredGroupList(); t5 = state.getUISelection$1(B.EntityType_group); t6 = t1[t3].groupState; t7 = t6.map; t6 = t6.list; t2 = t2.groupUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.GroupScreenVM(t6); }, GroupScreenBuilder: function GroupScreenBuilder(t0) { this.key = t0; }, GroupScreenBuilder_build_closure: function GroupScreenBuilder_build_closure() { }, GroupScreenVM: function GroupScreenVM(t0) { this.groupList = t0; }, GroupView: function GroupView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _GroupViewState: function _GroupViewState(t0, t1, t2) { var _ = this; _._group_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _GroupViewState_build_closure2: function _GroupViewState_build_closure2(t0) { this.viewModel = t0; }, _GroupViewState_build_closure: function _GroupViewState_build_closure(t0, t1) { this.context = t0; this.group = t1; }, _GroupViewState_build_closure0: function _GroupViewState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _GroupViewState_build_closure1: function _GroupViewState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, SettingsViewer: function SettingsViewer(t0, t1, t2) { this.settings = t0; this.state = t1; this.key = t2; }, __GroupViewState_State_SingleTickerProviderStateMixin: function __GroupViewState_State_SingleTickerProviderStateMixin() { }, GroupViewVM_GroupViewVM$fromStore(store) { var t4, group, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].groupState.map; t2 = t2.groupUIState.selectedId; group = t4._map$_map.$index(0, t2); if (group == null) group = A.GroupEntity_GroupEntity(t2, null); t1 = t1[t3].userCompany.company; group.get$isNew(); return new A.GroupViewVM(state, group, t1, new A.GroupViewVM_GroupViewVM$fromStore_closure(store), new A.GroupViewVM_GroupViewVM$fromStore_closure0(store, group), new A.GroupViewVM_GroupViewVM$fromStore_closure1(store, group)); }, GroupViewScreen: function GroupViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, GroupViewScreen_build_closure0: function GroupViewScreen_build_closure0() { }, GroupViewScreen_build_closure: function GroupViewScreen_build_closure(t0) { this.$this = t0; }, GroupViewVM: function GroupViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.group = t1; _.company = t2; _.onBackPressed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, GroupViewVM_GroupViewVM$fromStore_closure: function GroupViewVM_GroupViewVM$fromStore_closure(t0) { this.store = t0; }, GroupViewVM_GroupViewVM$fromStore_closure0: function GroupViewVM_GroupViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.group = t1; }, GroupViewVM_GroupViewVM$fromStore__closure0: function GroupViewVM_GroupViewVM$fromStore__closure0(t0) { this.context = t0; }, GroupViewVM_GroupViewVM$fromStore__closure1: function GroupViewVM_GroupViewVM$fromStore__closure1(t0) { this.context = t0; }, GroupViewVM_GroupViewVM$fromStore___closure: function GroupViewVM_GroupViewVM$fromStore___closure(t0) { this.error = t0; }, GroupViewVM_GroupViewVM$fromStore_closure1: function GroupViewVM_GroupViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.group = t1; }, GroupViewVM_GroupViewVM$fromStore__closure: function GroupViewVM_GroupViewVM$fromStore__closure(t0, t1) { this.store = t0; this.group = t1; }, InvoiceEdit: function InvoiceEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceEditState: function _InvoiceEditState(t0, t1, t2) { var _ = this; _._invoice_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _InvoiceEditState__onSavePressed_closure: function _InvoiceEditState__onSavePressed_closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.action = t2; }, _InvoiceEditState_build_closure1: function _InvoiceEditState_build_closure1(t0) { this.viewModel = t0; }, _InvoiceEditState_build_closure2: function _InvoiceEditState_build_closure2(t0) { this.$this = t0; }, _InvoiceEditState_build_closure0: function _InvoiceEditState_build_closure0(t0) { this.$this = t0; }, _InvoiceEditState_build_closure: function _InvoiceEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _InvoiceEditState_build__closure: function _InvoiceEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _InvoiceEditState_build___closure0: function _InvoiceEditState_build___closure0() { }, _InvoiceEditState_build___closure1: function _InvoiceEditState_build___closure1(t0) { this.viewModel = t0; }, _InvoiceEditState_build___closure: function _InvoiceEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __InvoiceEditState_State_SingleTickerProviderStateMixin: function __InvoiceEditState_State_SingleTickerProviderStateMixin() { }, InvoiceEditContacts: function InvoiceEditContacts(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditContacts_build_closure: function InvoiceEditContacts_build_closure() { }, InvoiceEditContacts_build_closure0: function InvoiceEditContacts_build_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditContacts_build__closure0: function InvoiceEditContacts_build__closure0(t0, t1, t2) { this.$this = t0; this.invitation = t1; this.contact = t2; }, InvoiceEditContacts_build_closure1: function InvoiceEditContacts_build_closure1() { }, InvoiceEditContacts_build_closure2: function InvoiceEditContacts_build_closure2(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditContacts_build__closure: function InvoiceEditContacts_build__closure(t0, t1, t2) { this.$this = t0; this.invitation = t1; this.contact = t2; }, _ClientContactListTile: function _ClientContactListTile(t0, t1, t2, t3, t4) { var _ = this; _.invoice = t0; _.clientContact = t1; _.invitation = t2; _.onTap = t3; _.key = t4; }, _ClientContactListTile_build_closure: function _ClientContactListTile_build_closure() { }, _ClientContactListTile_build_closure0: function _ClientContactListTile_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _VendorContactListTile: function _VendorContactListTile(t0, t1, t2, t3, t4) { var _ = this; _.invoice = t0; _.vendorContact = t1; _.invitation = t2; _.onTap = t3; _.key = t4; }, _VendorContactListTile_build_closure: function _VendorContactListTile_build_closure() { }, _VendorContactListTile_build_closure0: function _VendorContactListTile_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore(store, entityType) { var t2, entity, t3, t4, t5, t6, t7, t1 = {}, state = A._lateReadCheck(store.__Store__state, "_state"); t1.entity = null; if (entityType === B.EntityType_invoice) t2 = t1.entity = state.uiState.invoiceUIState.editing; else if (entityType === B.EntityType_quote) { entity = state.uiState.quoteUIState.editing; t1.entity = entity; t2 = entity; } else if (entityType === B.EntityType_credit) { entity = state.uiState.creditUIState.editing; t1.entity = entity; t2 = entity; } else if (entityType === B.EntityType_recurringInvoice) { entity = state.uiState.recurringInvoiceUIState.editing; t1.entity = entity; t2 = entity; } else if (entityType === B.EntityType_purchaseOrder) { entity = state.uiState.purchaseOrderUIState.editing; t1.entity = entity; t2 = entity; } else { A.print("ERROR: entityType " + A.S(entityType) + " not handled in invoice_edit_contacts_vm"); t2 = null; } t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t3 = t3._list; t5 = t3[t4]; t6 = t5.userCompany.company; t5 = t5.clientState.map; t7 = t2.clientId; t7 = t5._map$_map.$index(0, t7); t4 = t3[t4].vendorState.map; t3 = t2.vendorId; return new A.InvoiceEditContactsVM(state, t6, t2, t7, t4._map$_map.$index(0, t3), new A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure(t1, state, entityType, store), new A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0(t1, state, entityType, store), new A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1(t1, store, entityType)); }, InvoiceEditContactsScreen: function InvoiceEditContactsScreen(t0, t1) { this.entityType = t0; this.key = t1; }, InvoiceEditContactsScreen_build_closure0: function InvoiceEditContactsScreen_build_closure0(t0) { this.$this = t0; }, InvoiceEditContactsScreen_build_closure: function InvoiceEditContactsScreen_build_closure() { }, EntityEditContactsVM: function EntityEditContactsVM() { }, InvoiceEditContactsVM: function InvoiceEditContactsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.vendor = t4; _.onAddClientContact = t5; _.onAddVendorContact = t6; _.onRemoveContact = t7; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure: function InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.state = t1; _.entityType = t2; _.store = t3; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0: function InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.state = t1; _.entityType = t2; _.store = t3; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1: function InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1(t0, t1, t2) { this._box_0 = t0; this.store = t1; this.entityType = t2; }, InvoiceEditDesktop: function InvoiceEditDesktop(t0, t1, t2) { this.viewModel = t0; this.entityViewModel = t1; this.key = t2; }, InvoiceEditDesktopState: function InvoiceEditDesktopState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _._tableTabController = _._optionTabController = null; _._invoice_edit_desktop$_showTasksTable = false; _._invoice_edit_desktop$_focusNode = null; _._invoice_edit_desktop$_invoiceNumberController = t0; _._invoice_edit_desktop$_poNumberController = t1; _._invoice_edit_desktop$_discountController = t2; _._invoice_edit_desktop$_partialController = t3; _._invoice_edit_desktop$_custom1Controller = t4; _._invoice_edit_desktop$_custom2Controller = t5; _._invoice_edit_desktop$_custom3Controller = t6; _._invoice_edit_desktop$_custom4Controller = t7; _._invoice_edit_desktop$_surcharge1Controller = t8; _._invoice_edit_desktop$_surcharge2Controller = t9; _._invoice_edit_desktop$_surcharge3Controller = t10; _._invoice_edit_desktop$_surcharge4Controller = t11; _._invoice_edit_desktop$_publicNotesController = t12; _._invoice_edit_desktop$_privateNotesController = t13; _._invoice_edit_desktop$_termsController = t14; _._invoice_edit_desktop$_footerController = t15; _._invoice_edit_desktop$_scrollController = null; _._invoice_edit_desktop$_controllers = t16; _._invoice_edit_desktop$_debouncer = t17; _.TickerProviderStateMixin__tickers = t18; _.TickerProviderStateMixin__tickerModeNotifier = t19; _._widget = null; _._debugLifecycleState = t20; _._framework$_element = null; }, InvoiceEditDesktopState_didChangeDependencies_closure: function InvoiceEditDesktopState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState_didChangeDependencies_closure0: function InvoiceEditDesktopState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditDesktopState_dispose_closure: function InvoiceEditDesktopState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState__onChanged_closure: function InvoiceEditDesktopState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState__onChanged_closure0: function InvoiceEditDesktopState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure: function InvoiceEditDesktopState_build_closure() { }, InvoiceEditDesktopState_build_closure0: function InvoiceEditDesktopState_build_closure0() { }, InvoiceEditDesktopState_build_closure1: function InvoiceEditDesktopState_build_closure1(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDesktopState_build_closure2: function InvoiceEditDesktopState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDesktopState_build_closure3: function InvoiceEditDesktopState_build_closure3(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDesktopState_build_closure4: function InvoiceEditDesktopState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDesktopState_build_closure5: function InvoiceEditDesktopState_build_closure5(t0, t1, t2) { this.invoice = t0; this.vendor = t1; this.client = t2; }, InvoiceEditDesktopState_build_closure6: function InvoiceEditDesktopState_build_closure6(t0, t1, t2) { this.invoice = t0; this.vendor = t1; this.client = t2; }, InvoiceEditDesktopState_build_closure8: function InvoiceEditDesktopState_build_closure8(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure17: function InvoiceEditDesktopState_build__closure17(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure7: function InvoiceEditDesktopState_build_closure7(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure9: function InvoiceEditDesktopState_build_closure9(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure16: function InvoiceEditDesktopState_build__closure16(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure11: function InvoiceEditDesktopState_build_closure11(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure15: function InvoiceEditDesktopState_build__closure15(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure10: function InvoiceEditDesktopState_build_closure10() { }, InvoiceEditDesktopState_build_closure13: function InvoiceEditDesktopState_build_closure13(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure14: function InvoiceEditDesktopState_build__closure14(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure12: function InvoiceEditDesktopState_build_closure12(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure15: function InvoiceEditDesktopState_build_closure15(t0) { this.context = t0; }, InvoiceEditDesktopState_build_closure14: function InvoiceEditDesktopState_build_closure14(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure13: function InvoiceEditDesktopState_build__closure13(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure16: function InvoiceEditDesktopState_build_closure16(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure12: function InvoiceEditDesktopState_build__closure12(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure17: function InvoiceEditDesktopState_build_closure17(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.state = t2; _.localization = t3; }, InvoiceEditDesktopState_build_closure18: function InvoiceEditDesktopState_build_closure18(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure11: function InvoiceEditDesktopState_build__closure11(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure19: function InvoiceEditDesktopState_build_closure19(t0, t1, t2) { this.invoice = t0; this.originalInvoice = t1; this.context = t2; }, InvoiceEditDesktopState_build_closure20: function InvoiceEditDesktopState_build_closure20(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure10: function InvoiceEditDesktopState_build__closure10(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure22: function InvoiceEditDesktopState_build_closure22(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure9: function InvoiceEditDesktopState_build__closure9(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure21: function InvoiceEditDesktopState_build_closure21(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure23: function InvoiceEditDesktopState_build_closure23() { }, InvoiceEditDesktopState_build_closure24: function InvoiceEditDesktopState_build_closure24(t0) { this.$this = t0; }, InvoiceEditDesktopState_build__closure8: function InvoiceEditDesktopState_build__closure8(t0, t1) { this.$this = t0; this.index = t1; }, InvoiceEditDesktopState_build_closure25: function InvoiceEditDesktopState_build_closure25(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.company = t3; _.store = t4; _.state = t5; _.localization = t6; }, InvoiceEditDesktopState_build__closure: function InvoiceEditDesktopState_build__closure(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure8: function InvoiceEditDesktopState_build___closure8(t0) { this.userId = t0; }, InvoiceEditDesktopState_build__closure0: function InvoiceEditDesktopState_build__closure0(t0, t1, t2, t3, t4) { var _ = this; _.store = t0; _.state = t1; _.invoice = t2; _.viewModel = t3; _.context = t4; }, InvoiceEditDesktopState_build___closure6: function InvoiceEditDesktopState_build___closure6(t0) { this.projectId = t0; }, InvoiceEditDesktopState_build___closure7: function InvoiceEditDesktopState_build___closure7(t0) { this.projectId = t0; }, InvoiceEditDesktopState_build__closure1: function InvoiceEditDesktopState_build__closure1(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure5: function InvoiceEditDesktopState_build___closure5(t0) { this.client = t0; }, InvoiceEditDesktopState_build__closure3: function InvoiceEditDesktopState_build__closure3(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure3: function InvoiceEditDesktopState_build___closure3(t0) { this.vendor = t0; }, InvoiceEditDesktopState_build__closure2: function InvoiceEditDesktopState_build__closure2(t0) { this.store = t0; }, InvoiceEditDesktopState_build___closure4: function InvoiceEditDesktopState_build___closure4(t0) { this.name = t0; }, InvoiceEditDesktopState_build__closure4: function InvoiceEditDesktopState_build__closure4(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure2: function InvoiceEditDesktopState_build___closure2(t0) { this.value = t0; }, InvoiceEditDesktopState_build__closure5: function InvoiceEditDesktopState_build__closure5(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure1: function InvoiceEditDesktopState_build___closure1(t0) { this.value = t0; }, InvoiceEditDesktopState_build__closure6: function InvoiceEditDesktopState_build__closure6(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure0: function InvoiceEditDesktopState_build___closure0(t0) { this.value = t0; }, InvoiceEditDesktopState_build__closure7: function InvoiceEditDesktopState_build__closure7(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build___closure: function InvoiceEditDesktopState_build___closure(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure26: function InvoiceEditDesktopState_build_closure26(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure27: function InvoiceEditDesktopState_build_closure27(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure28: function InvoiceEditDesktopState_build_closure28(t0, t1) { this.invoice = t0; this.viewModel = t1; }, _PdfPreview: function _PdfPreview(t0, t1) { this.invoice = t0; this.key = t1; }, __PdfPreviewState: function __PdfPreviewState(t0, t1) { var _ = this; _._pdfDebouncer = t0; _._currentPage = _._pageCount = 1; _._invoice_edit_desktop$_response = _._invoice_edit_desktop$_pdfString = null; _._pendingLoad = _._invoice_edit_desktop$_isLoading = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __PdfPreviewState_loadPdf_closure: function __PdfPreviewState_loadPdf_closure(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf_closure: function __PdfPreviewState__loadPdf_closure(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf_closure0: function __PdfPreviewState__loadPdf_closure0(t0, t1) { this.$this = t0; this.state = t1; }, __PdfPreviewState__loadPdf__closure0: function __PdfPreviewState__loadPdf__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.response = t1; _.pages = t2; _.state = t3; }, __PdfPreviewState__loadPdf_closure1: function __PdfPreviewState__loadPdf_closure1(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf__closure: function __PdfPreviewState__loadPdf__closure(t0) { this.$this = t0; }, __PdfPreviewState_build_closure: function __PdfPreviewState_build_closure(t0) { this.$this = t0; }, __PdfPreviewState_build__closure0: function __PdfPreviewState_build__closure0(t0) { this.$this = t0; }, __PdfPreviewState_build_closure0: function __PdfPreviewState_build_closure0(t0) { this.$this = t0; }, __PdfPreviewState_build__closure: function __PdfPreviewState_build__closure(t0) { this.$this = t0; }, __PdfPreviewState_build_closure1: function __PdfPreviewState_build_closure1(t0) { this.$this = t0; }, _InvoiceEditDesktopState_State_TickerProviderStateMixin: function _InvoiceEditDesktopState_State_TickerProviderStateMixin() { }, InvoiceEditDetails: function InvoiceEditDetails(t0, t1, t2) { this.viewModel = t0; this.entityType = t1; this.key = t2; }, InvoiceEditDetailsState: function InvoiceEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._invoiceNumberController = t0; _._poNumberController = t1; _._invoice_edit_details$_discountController = t2; _._partialController = t3; _._invoice_edit_details$_custom1Controller = t4; _._invoice_edit_details$_custom2Controller = t5; _._invoice_edit_details$_custom3Controller = t6; _._invoice_edit_details$_custom4Controller = t7; _._surcharge1Controller = t8; _._surcharge2Controller = t9; _._surcharge3Controller = t10; _._surcharge4Controller = t11; _._invoice_edit_details$_controllers = t12; _._invoice_edit_details$_debouncer = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, InvoiceEditDetailsState_didChangeDependencies_closure: function InvoiceEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState_didChangeDependencies_closure0: function InvoiceEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditDetailsState_dispose_closure: function InvoiceEditDetailsState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState__onChanged_closure: function InvoiceEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState__onChanged_closure0: function InvoiceEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure: function InvoiceEditDetailsState_build_closure(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDetailsState_build_closure0: function InvoiceEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDetailsState_build_closure1: function InvoiceEditDetailsState_build_closure1(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDetailsState_build_closure2: function InvoiceEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDetailsState_build_closure3: function InvoiceEditDetailsState_build_closure3(t0, t1, t2) { this.invoice = t0; this.originalInvoice = t1; this.context = t2; }, InvoiceEditDetailsState_build_closure4: function InvoiceEditDetailsState_build_closure4(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure17: function InvoiceEditDetailsState_build__closure17(t0) { this.userId = t0; }, InvoiceEditDetailsState_build_closure6: function InvoiceEditDetailsState_build_closure6(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure16: function InvoiceEditDetailsState_build__closure16(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure5: function InvoiceEditDetailsState_build_closure5(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure7: function InvoiceEditDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure15: function InvoiceEditDetailsState_build__closure15(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure9: function InvoiceEditDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure14: function InvoiceEditDetailsState_build__closure14(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure8: function InvoiceEditDetailsState_build_closure8() { }, InvoiceEditDetailsState_build_closure11: function InvoiceEditDetailsState_build_closure11(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure13: function InvoiceEditDetailsState_build__closure13(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure10: function InvoiceEditDetailsState_build_closure10(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure13: function InvoiceEditDetailsState_build_closure13(t0) { this.context = t0; }, InvoiceEditDetailsState_build_closure12: function InvoiceEditDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure12: function InvoiceEditDetailsState_build__closure12(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure14: function InvoiceEditDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure11: function InvoiceEditDetailsState_build__closure11(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure15: function InvoiceEditDetailsState_build_closure15(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.state = t2; _.localization = t3; }, InvoiceEditDetailsState_build_closure16: function InvoiceEditDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure10: function InvoiceEditDetailsState_build__closure10(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure17: function InvoiceEditDetailsState_build_closure17(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure9: function InvoiceEditDetailsState_build__closure9(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure19: function InvoiceEditDetailsState_build_closure19(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure8: function InvoiceEditDetailsState_build__closure8(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure18: function InvoiceEditDetailsState_build_closure18(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure20: function InvoiceEditDetailsState_build_closure20(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure21: function InvoiceEditDetailsState_build_closure21(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure22: function InvoiceEditDetailsState_build_closure22(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure23: function InvoiceEditDetailsState_build_closure23(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure7: function InvoiceEditDetailsState_build__closure7(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure24: function InvoiceEditDetailsState_build_closure24(t0, t1, t2, t3) { var _ = this; _.state = t0; _.invoice = t1; _.viewModel = t2; _.context = t3; }, InvoiceEditDetailsState_build__closure5: function InvoiceEditDetailsState_build__closure5(t0) { this.projectId = t0; }, InvoiceEditDetailsState_build__closure6: function InvoiceEditDetailsState_build__closure6(t0) { this.projectId = t0; }, InvoiceEditDetailsState_build_closure25: function InvoiceEditDetailsState_build_closure25(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure4: function InvoiceEditDetailsState_build__closure4(t0) { this.client = t0; }, InvoiceEditDetailsState_build_closure27: function InvoiceEditDetailsState_build_closure27(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure2: function InvoiceEditDetailsState_build__closure2(t0) { this.vendor = t0; }, InvoiceEditDetailsState_build_closure26: function InvoiceEditDetailsState_build_closure26(t0) { this.store = t0; }, InvoiceEditDetailsState_build__closure3: function InvoiceEditDetailsState_build__closure3(t0) { this.name = t0; }, InvoiceEditDetailsState_build_closure28: function InvoiceEditDetailsState_build_closure28(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure1: function InvoiceEditDetailsState_build__closure1(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure29: function InvoiceEditDetailsState_build_closure29(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure0: function InvoiceEditDetailsState_build__closure0(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure30: function InvoiceEditDetailsState_build_closure30(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure: function InvoiceEditDetailsState_build__closure(t0) { this.value = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore(store) { var company, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; company = t1.userCompany.company; t1.clientState.toString; return new A.InvoiceEditDetailsVM(state, company, invoice, new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure(store), new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0(store, state), null, new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1(state, store), null); }, InvoiceEditDetailsScreen: function InvoiceEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditDetailsScreen_build_closure0: function InvoiceEditDetailsScreen_build_closure0() { }, InvoiceEditDetailsScreen_build_closure: function InvoiceEditDetailsScreen_build_closure(t0) { this.$this = t0; }, EntityEditDetailsVM: function EntityEditDetailsVM() { }, InvoiceEditDetailsVM: function InvoiceEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onVendorChanged = t5; _.onAddClientPressed = t6; _.onAddVendorPressed = t7; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, InvoiceEditFooter: function InvoiceEditFooter(t0, t1) { this.invoice = t0; this.key = t1; }, InvoiceEditFooter_build_closure: function InvoiceEditFooter_build_closure(t0) { this.store = t0; }, InvoiceEditItems: function InvoiceEditItems(t0, t1, t2) { this.viewModel = t0; this.entityViewModel = t1; this.key = t2; }, _InvoiceEditItemsState: function _InvoiceEditItemsState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceEditItemsState__showInvoiceItemEditor_closure: function _InvoiceEditItemsState__showInvoiceItemEditor_closure(t0, t1) { this.$this = t0; this.lineItemIndex = t1; }, _InvoiceEditItemsState_build_closure: function _InvoiceEditItemsState_build_closure(t0, t1, t2) { this.$this = t0; this.itemIndex = t1; this.context = t2; }, _InvoiceEditItemsState_build_closure0: function _InvoiceEditItemsState_build_closure0(t0, t1, t2) { this.$this = t0; this.i = t1; this.context = t2; }, ItemEditDetails: function ItemEditDetails(t0, t1, t2, t3, t4) { var _ = this; _.index = t0; _.invoiceItem = t1; _.viewModel = t2; _.entityViewModel = t3; _.key = t4; }, ItemEditDetailsState: function ItemEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._invoice_edit_items$_productKeyController = t0; _._invoice_edit_items$_notesController = t1; _._invoice_edit_items$_costController = t2; _._qtyController = t3; _._discountController = t4; _._invoice_edit_items$_custom1Controller = t5; _._invoice_edit_items$_custom2Controller = t6; _._invoice_edit_items$_custom3Controller = t7; _._invoice_edit_items$_custom4Controller = t8; _._invoice_edit_items$_taxRate3 = _._invoice_edit_items$_taxRate2 = _._invoice_edit_items$_taxRate1 = null; _._invoice_edit_items$_controllers = t9; _._invoice_edit_items$_debouncer = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ItemEditDetailsState_didChangeDependencies_closure: function ItemEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ItemEditDetailsState_dispose_closure: function ItemEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ItemEditDetailsState__onTextChanged_closure: function ItemEditDetailsState__onTextChanged_closure(t0) { this.$this = t0; }, ItemEditDetailsState__onChanged_closure: function ItemEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ItemEditDetailsState_build_closure: function ItemEditDetailsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ItemEditDetailsState_build__closure2: function ItemEditDetailsState_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ItemEditDetailsState_build_closure0: function ItemEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, ItemEditDetailsState_build_closure1: function ItemEditDetailsState_build_closure1(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure1: function ItemEditDetailsState_build__closure1(t0, t1) { this.$this = t0; this.taxRate = t1; }, ItemEditDetailsState_build_closure2: function ItemEditDetailsState_build_closure2(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure0: function ItemEditDetailsState_build__closure0(t0, t1) { this.$this = t0; this.taxRate = t1; }, ItemEditDetailsState_build_closure3: function ItemEditDetailsState_build_closure3(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure: function ItemEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.taxRate = t1; }, InvoiceEditItemsDesktop: function InvoiceEditItemsDesktop(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.entityViewModel = t1; _.isTasks = t2; _.key = t3; }, _InvoiceEditItemsDesktopState: function _InvoiceEditItemsDesktopState(t0, t1, t2) { var _ = this; _._invoice_edit_items_desktop$_debouncer = t0; _._isReordering = false; _._invoice_edit_items_desktop$_updatedAt = null; _._autocompleteFocusIndex = -1; _._invoice_edit_items_desktop$_columns = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _InvoiceEditItemsDesktopState__updateColumns_closure: function _InvoiceEditItemsDesktopState__updateColumns_closure(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState__updateColumns_closure0: function _InvoiceEditItemsDesktopState__updateColumns_closure0() { }, _InvoiceEditItemsDesktopState__updateColumns_closure1: function _InvoiceEditItemsDesktopState__updateColumns_closure1() { }, _InvoiceEditItemsDesktopState__updateColumns_closure2: function _InvoiceEditItemsDesktopState__updateColumns_closure2() { }, _InvoiceEditItemsDesktopState__updateColumns_closure3: function _InvoiceEditItemsDesktopState__updateColumns_closure3() { }, _InvoiceEditItemsDesktopState__updateTable_closure: function _InvoiceEditItemsDesktopState__updateTable_closure(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState__onChanged_closure: function _InvoiceEditItemsDesktopState__onChanged_closure(t0, t1, t2) { this.viewModel = t0; this.lineItem = t1; this.index = t2; }, _InvoiceEditItemsDesktopState__onFocusChange_closure: function _InvoiceEditItemsDesktopState__onFocusChange_closure() { }, _InvoiceEditItemsDesktopState_build_closure: function _InvoiceEditItemsDesktopState_build_closure(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure0: function _InvoiceEditItemsDesktopState_build_closure0() { }, _InvoiceEditItemsDesktopState_build_closure1: function _InvoiceEditItemsDesktopState_build_closure1(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure31: function _InvoiceEditItemsDesktopState_build__closure31(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure2: function _InvoiceEditItemsDesktopState_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.lineItems = t1; _.invoice = t2; _.precision = t3; }, _InvoiceEditItemsDesktopState_build__closure29: function _InvoiceEditItemsDesktopState_build__closure29(t0, t1, t2) { this.item = t0; this.context = t1; this.invoice = t2; }, _InvoiceEditItemsDesktopState_build__closure30: function _InvoiceEditItemsDesktopState_build__closure30() { }, _InvoiceEditItemsDesktopState_build_closure3: function _InvoiceEditItemsDesktopState_build_closure3(t0, t1) { this.lineItems = t0; this.viewModel = t1; }, _InvoiceEditItemsDesktopState_build_closure4: function _InvoiceEditItemsDesktopState_build_closure4() { }, _InvoiceEditItemsDesktopState_build_closure5: function _InvoiceEditItemsDesktopState_build_closure5() { }, _InvoiceEditItemsDesktopState_build_closure6: function _InvoiceEditItemsDesktopState_build_closure6(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure28: function _InvoiceEditItemsDesktopState_build__closure28(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure7: function _InvoiceEditItemsDesktopState_build_closure7(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.$this = t0; _.index = t1; _.lineItems = t2; _.productIds = t3; _.productState = t4; _.company = t5; _.state = t6; _.invoice = t7; _.viewModel = t8; _.theme = t9; _.customField1 = t10; _.customField2 = t11; _.customField3 = t12; _.customField4 = t13; _.context = t14; }, _InvoiceEditItemsDesktopState_build__closure5: function _InvoiceEditItemsDesktopState_build__closure5(t0, t1) { this.$this = t0; this.index = t1; }, _InvoiceEditItemsDesktopState_build__closure4: function _InvoiceEditItemsDesktopState_build__closure4(t0, t1, t2, t3, t4) { var _ = this; _.productIds = t0; _.productState = t1; _.company = t2; _.lineItems = t3; _.index = t4; }, _InvoiceEditItemsDesktopState_build___closure10: function _InvoiceEditItemsDesktopState_build___closure10(t0) { this.productState = t0; }, _InvoiceEditItemsDesktopState_build___closure11: function _InvoiceEditItemsDesktopState_build___closure11(t0, t1) { this.textEditingValue = t0; this.company = t1; }, _InvoiceEditItemsDesktopState_build__closure2: function _InvoiceEditItemsDesktopState_build__closure2() { }, _InvoiceEditItemsDesktopState_build__closure3: function _InvoiceEditItemsDesktopState_build__closure3(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.lineItems = t1; _.index = t2; _.state = t3; _.invoice = t4; _.company = t5; _.viewModel = t6; }, _InvoiceEditItemsDesktopState_build___closure12: function _InvoiceEditItemsDesktopState_build___closure12(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.product = t1; _.item = t2; _.viewModel = t3; _.company = t4; }, _InvoiceEditItemsDesktopState_build___closure13: function _InvoiceEditItemsDesktopState_build___closure13(t0) { this.product = t0; }, _InvoiceEditItemsDesktopState_build__closure0: function _InvoiceEditItemsDesktopState_build__closure0(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure16: function _InvoiceEditItemsDesktopState_build___closure16(t0) { this.onFieldSubmitted = t0; }, _InvoiceEditItemsDesktopState_build___closure15: function _InvoiceEditItemsDesktopState_build___closure15(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build____closure0: function _InvoiceEditItemsDesktopState_build____closure0(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure1: function _InvoiceEditItemsDesktopState_build__closure1(t0, t1, t2) { this.theme = t0; this.state = t1; this.company = t2; }, _InvoiceEditItemsDesktopState_build___closure14: function _InvoiceEditItemsDesktopState_build___closure14(t0, t1, t2, t3, t4) { var _ = this; _.options = t0; _.highlightedIndex = t1; _.state = t2; _.onSelected = t3; _.company = t4; }, _InvoiceEditItemsDesktopState_build____closure: function _InvoiceEditItemsDesktopState_build____closure(t0) { this.onSelected = t0; }, _InvoiceEditItemsDesktopState_build__closure7: function _InvoiceEditItemsDesktopState_build__closure7(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure6: function _InvoiceEditItemsDesktopState_build__closure6(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure9: function _InvoiceEditItemsDesktopState_build___closure9(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure9: function _InvoiceEditItemsDesktopState_build__closure9(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure8: function _InvoiceEditItemsDesktopState_build__closure8(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure8: function _InvoiceEditItemsDesktopState_build___closure8(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure11: function _InvoiceEditItemsDesktopState_build__closure11(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure10: function _InvoiceEditItemsDesktopState_build__closure10(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure7: function _InvoiceEditItemsDesktopState_build___closure7(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure13: function _InvoiceEditItemsDesktopState_build__closure13(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure12: function _InvoiceEditItemsDesktopState_build__closure12(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure6: function _InvoiceEditItemsDesktopState_build___closure6(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure15: function _InvoiceEditItemsDesktopState_build__closure15(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure14: function _InvoiceEditItemsDesktopState_build__closure14(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure5: function _InvoiceEditItemsDesktopState_build___closure5(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure17: function _InvoiceEditItemsDesktopState_build__closure17(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure16: function _InvoiceEditItemsDesktopState_build__closure16(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure4: function _InvoiceEditItemsDesktopState_build___closure4(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build__closure19: function _InvoiceEditItemsDesktopState_build__closure19(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure18: function _InvoiceEditItemsDesktopState_build__closure18(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure3: function _InvoiceEditItemsDesktopState_build___closure3(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build__closure21: function _InvoiceEditItemsDesktopState_build__closure21(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure20: function _InvoiceEditItemsDesktopState_build__closure20(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure2: function _InvoiceEditItemsDesktopState_build___closure2(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build__closure23: function _InvoiceEditItemsDesktopState_build__closure23(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure22: function _InvoiceEditItemsDesktopState_build__closure22(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure1: function _InvoiceEditItemsDesktopState_build___closure1(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure25: function _InvoiceEditItemsDesktopState_build__closure25(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure24: function _InvoiceEditItemsDesktopState_build__closure24(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure0: function _InvoiceEditItemsDesktopState_build___closure0(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build__closure27: function _InvoiceEditItemsDesktopState_build__closure27(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build__closure26: function _InvoiceEditItemsDesktopState_build__closure26(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build___closure: function _InvoiceEditItemsDesktopState_build___closure(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure8: function _InvoiceEditItemsDesktopState_build_closure8(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.includedLineItems = t1; _.lineItems = t2; _.index = t3; _.localization = t4; }, _InvoiceEditItemsDesktopState_build__closure: function _InvoiceEditItemsDesktopState_build__closure(t0) { this.options = t0; }, _InvoiceEditItemsDesktopState_build_closure9: function _InvoiceEditItemsDesktopState_build_closure9(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.lineItems = t2; _.index = t3; _.viewModel = t4; }, TableHeader: function TableHeader(t0, t1, t2, t3) { var _ = this; _.label = t0; _.isNumeric = t1; _.isFirst = t2; _.key = t3; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore(store, isTasks) { var _s6_ = "_state", t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = A._lateReadCheck(store.__Store__state, _s6_), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new A.InvoiceEditItemsVM(t1, t3._list[t2].userCompany.company, A._lateReadCheck(store.__Store__state, _s6_).uiState.invoiceUIState.editing, A._lateReadCheck(store.__Store__state, _s6_).uiState.invoiceUIState.editingItemIndex, new A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure(store), new A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0(store), new A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1(store, isTasks), new A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2(store)); }, InvoiceEditItemsScreen: function InvoiceEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, InvoiceEditItemsScreen_build_closure0: function InvoiceEditItemsScreen_build_closure0(t0) { this.$this = t0; }, InvoiceEditItemsScreen_build_closure: function InvoiceEditItemsScreen_build_closure(t0) { this.$this = t0; }, EntityEditItemsVM: function EntityEditItemsVM() { }, InvoiceEditItemsVM: function InvoiceEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, InvoiceEditNotes: function InvoiceEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditNotesState: function InvoiceEditNotesState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._invoice_edit_notes$_publicNotesController = t0; _._invoice_edit_notes$_privateNotesController = t1; _._invoice_edit_notes$_termsController = t2; _._invoice_edit_notes$_footerController = t3; _._invoice_edit_notes$_controllers = t4; _._invoice_edit_notes$_debouncer = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, InvoiceEditNotesState_didChangeDependencies_closure: function InvoiceEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditNotesState_didChangeDependencies_closure0: function InvoiceEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditNotesState_dispose_closure: function InvoiceEditNotesState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditNotesState__onChanged_closure: function InvoiceEditNotesState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditNotesState__onChanged_closure0: function InvoiceEditNotesState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.InvoiceEditNotesVM(state, t2._list[t1].userCompany.company, invoice, new A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure(store)); }, InvoiceEditNotesScreen: function InvoiceEditNotesScreen(t0) { this.key = t0; }, InvoiceEditNotesScreen_build_closure0: function InvoiceEditNotesScreen_build_closure0() { }, InvoiceEditNotesScreen_build_closure: function InvoiceEditNotesScreen_build_closure() { }, EntityEditNotesVM: function EntityEditNotesVM() { }, InvoiceEditNotesVM: function InvoiceEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure: function InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditPDF: function InvoiceEditPDF(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditPDFState: function InvoiceEditPDFState(t0) { var _ = this; _._invoice_edit_pdf$_isLoading = false; _._widget = _._invoice_edit_pdf$_response = _._invoice_edit_pdf$_pdfString = null; _._debugLifecycleState = t0; _._framework$_element = null; }, InvoiceEditPDFState_didChangeDependencies_closure: function InvoiceEditPDFState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies_closure0: function InvoiceEditPDFState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies__closure0: function InvoiceEditPDFState_didChangeDependencies__closure0(t0, t1) { this.$this = t0; this.response = t1; }, InvoiceEditPDFState_didChangeDependencies_closure1: function InvoiceEditPDFState_didChangeDependencies_closure1(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies__closure: function InvoiceEditPDFState_didChangeDependencies__closure(t0) { this.$this = t0; }, InvoiceEditPDFScreen: function InvoiceEditPDFScreen(t0) { this.key = t0; }, InvoiceEditPDFScreen_build_closure0: function InvoiceEditPDFScreen_build_closure0() { }, InvoiceEditPDFScreen_build_closure: function InvoiceEditPDFScreen_build_closure() { }, EntityEditPDFVM: function EntityEditPDFVM() { }, InvoiceEditPDFVM: function InvoiceEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, InvoiceEditVM_InvoiceEditVM$fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.invoiceUIState, invoice = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; t2 = t2.editingItemIndex; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].invoiceState.map; t4 = invoice.id; t3._map$_map.$index(0, t4); return new A.InvoiceEditVM(state, t1, invoice, t2, new A.InvoiceEditVM_InvoiceEditVM$fromStore_closure(store), new A.InvoiceEditVM_InvoiceEditVM$fromStore_closure0(state, store, invoice), new A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1(state, store)); }, InvoiceEditScreen: function InvoiceEditScreen(t0) { this.key = t0; }, InvoiceEditScreen_build_closure0: function InvoiceEditScreen_build_closure0() { }, InvoiceEditScreen_build_closure: function InvoiceEditScreen_build_closure() { }, AbstractInvoiceEditVM: function AbstractInvoiceEditVM() { }, InvoiceEditVM: function InvoiceEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, InvoiceEditVM_InvoiceEditVM$fromStore_closure: function InvoiceEditVM_InvoiceEditVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore__closure0: function InvoiceEditVM_InvoiceEditVM$fromStore__closure0(t0, t1) { this.store = t0; this.action = t1; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure0: function InvoiceEditVM_InvoiceEditVM$fromStore___closure0(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure1: function InvoiceEditVM_InvoiceEditVM$fromStore___closure1(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure2: function InvoiceEditVM_InvoiceEditVM$fromStore___closure2(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure3: function InvoiceEditVM_InvoiceEditVM$fromStore___closure3(t0, t1, t2, t3, t4, t5) { var _ = this; _.invoice = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure4: function InvoiceEditVM_InvoiceEditVM$fromStore___closure4() { }, InvoiceEditVM_InvoiceEditVM$fromStore____closure: function InvoiceEditVM_InvoiceEditVM$fromStore____closure(t0) { this.error = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore_closure0: function InvoiceEditVM_InvoiceEditVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.store = t1; this.invoice = t2; }, InvoiceEditVM_InvoiceEditVM$fromStore__closure: function InvoiceEditVM_InvoiceEditVM$fromStore__closure(t0, t1, t2) { this.clientId = t0; this.projectId = t1; this.client = t2; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure: function InvoiceEditVM_InvoiceEditVM$fromStore___closure() { }, InvoiceEditVM_InvoiceEditVM$fromStore_closure1: function InvoiceEditVM_InvoiceEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, InvoiceItemSelector: function InvoiceItemSelector(t0, t1, t2, t3, t4) { var _ = this; _.onItemsSelected = t0; _.clientId = t1; _.excluded = t2; _.showTasksAndExpenses = t3; _.key = t4; }, _InvoiceItemSelectorState: function _InvoiceItemSelectorState(t0, t1, t2, t3, t4) { var _ = this; _._invoice_item_selector$_tabController = _._filterClientId = _._invoice_item_selector$_filter = null; _._invoice_item_selector$_selected = t0; _._invoice_item_selector$_textController = t1; _.SingleTickerProviderStateMixin__ticker = t2; _.SingleTickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _InvoiceItemSelectorState__onItemsSelected_closure: function _InvoiceItemSelectorState__onItemsSelected_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.items = t2; _.company = t3; _.state = t4; _.context = t5; }, _InvoiceItemSelectorState__toggleEntity_closure: function _InvoiceItemSelectorState__toggleEntity_closure(t0, t1) { this.$this = t0; this.entity = t1; }, _InvoiceItemSelectorState__updateClientId_closure: function _InvoiceItemSelectorState__updateClientId_closure() { }, _InvoiceItemSelectorState__updateClientId_closure0: function _InvoiceItemSelectorState__updateClientId_closure0() { }, _InvoiceItemSelectorState_build_closure: function _InvoiceItemSelectorState_build_closure(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build_closure0: function _InvoiceItemSelectorState_build_closure0(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build_closure1: function _InvoiceItemSelectorState_build_closure1(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build__productList: function _InvoiceItemSelectorState_build__productList(t0, t1, t2) { this.$this = t0; this.products = t1; this.state = t2; }, _InvoiceItemSelectorState_build__productList_closure: function _InvoiceItemSelectorState_build__productList_closure(t0, t1, t2) { this.$this = t0; this.products = t1; this.state = t2; }, _InvoiceItemSelectorState_build__productList__closure: function _InvoiceItemSelectorState_build__productList__closure(t0, t1) { this.$this = t0; this.product = t1; }, _InvoiceItemSelectorState_build__productList__closure0: function _InvoiceItemSelectorState_build__productList__closure0(t0, t1, t2) { this.$this = t0; this.product = t1; this.context = t2; }, _InvoiceItemSelectorState_build__taskList: function _InvoiceItemSelectorState_build__taskList(t0, t1, t2) { this.$this = t0; this.tasks = t1; this.state = t2; }, _InvoiceItemSelectorState_build__taskList_closure: function _InvoiceItemSelectorState_build__taskList_closure(t0, t1, t2) { this.$this = t0; this.tasks = t1; this.state = t2; }, _InvoiceItemSelectorState_build__taskList__closure: function _InvoiceItemSelectorState_build__taskList__closure(t0, t1) { this.$this = t0; this.task = t1; }, _InvoiceItemSelectorState_build__taskList__closure0: function _InvoiceItemSelectorState_build__taskList__closure0(t0, t1, t2) { this.$this = t0; this.task = t1; this.context = t2; }, _InvoiceItemSelectorState_build__expenseList: function _InvoiceItemSelectorState_build__expenseList(t0, t1, t2) { this.$this = t0; this.expenses = t1; this.state = t2; }, _InvoiceItemSelectorState_build__expenseList_closure: function _InvoiceItemSelectorState_build__expenseList_closure(t0, t1, t2) { this.$this = t0; this.expenses = t1; this.state = t2; }, _InvoiceItemSelectorState_build__expenseList__closure: function _InvoiceItemSelectorState_build__expenseList__closure(t0, t1) { this.$this = t0; this.expense = t1; }, _InvoiceItemSelectorState_build__expenseList__closure0: function _InvoiceItemSelectorState_build__expenseList__closure0(t0, t1, t2) { this.$this = t0; this.expense = t1; this.context = t2; }, _InvoiceItemSelectorState_build_closure2: function _InvoiceItemSelectorState_build_closure2(t0) { this.$this = t0; }, _InvoiceItemSelectorState_build__closure0: function _InvoiceItemSelectorState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceItemSelectorState_build_closure3: function _InvoiceItemSelectorState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, _InvoiceItemSelectorState_build__closure: function _InvoiceItemSelectorState_build__closure(t0) { this.$this = t0; }, _InvoiceItemSelectorState_build_closure4: function _InvoiceItemSelectorState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, _InvoiceItemSelectorState_build_closure5: function _InvoiceItemSelectorState_build_closure5(t0, t1) { this.$this = t0; this.company = t1; }, __InvoiceItemSelectorState_State_SingleTickerProviderStateMixin: function __InvoiceItemSelectorState_State_SingleTickerProviderStateMixin() { }, EmailInvoiceVM_EmailInvoiceVM$fromStore(store, invoice) { var t3, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2]; t1 = t2.userCompany.company; t2 = t2.clientState.map; t3 = invoice.clientId; t2 = t2._map$_map.$index(0, t3); if (t2 == null) t2 = A.ClientEntity_ClientEntity(_null, t3, _null, _null); return new A.EmailInvoiceVM(state, t1, invoice, t2, _null, new A.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure(invoice, store)); }, InvoiceEmailScreen: function InvoiceEmailScreen(t0) { this.key = t0; }, InvoiceEmailScreen_build_closure1: function InvoiceEmailScreen_build_closure1() { }, InvoiceEmailScreen_build_closure0: function InvoiceEmailScreen_build_closure0() { }, InvoiceEmailScreen_build_closure: function InvoiceEmailScreen_build_closure() { }, EmailEntityVM: function EmailEntityVM() { }, EmailInvoiceVM: function EmailInvoiceVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.vendor = t4; _.onSendPressed = t5; }, EmailInvoiceVM_EmailInvoiceVM$fromStore_closure: function EmailInvoiceVM_EmailInvoiceVM$fromStore_closure(t0, t1) { this.invoice = t0; this.store = t1; }, EmailInvoiceVM_EmailInvoiceVM$fromStore__closure: function EmailInvoiceVM_EmailInvoiceVM$fromStore__closure(t0) { this.invoice = t0; }, InvoiceListItem: function InvoiceListItem(t0, t1, t2, t3) { var _ = this; _.invoice = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, InvoiceListItem_build_closure: function InvoiceListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; _.statusLabel = t11; _.statusColor = t12; }, InvoiceListItem_build__closure2: function InvoiceListItem_build__closure2(t0) { this.$this = t0; }, InvoiceListItem_build__closure1: function InvoiceListItem_build__closure1(t0) { this.$this = t0; }, InvoiceListItem_build__closure: function InvoiceListItem_build__closure() { }, InvoiceListItem_build__closure0: function InvoiceListItem_build__closure0(t0) { this.$this = t0; }, InvoiceListItem_build__closure5: function InvoiceListItem_build__closure5(t0) { this.$this = t0; }, InvoiceListItem_build__closure4: function InvoiceListItem_build__closure4(t0) { this.$this = t0; }, InvoiceListItem_build__closure3: function InvoiceListItem_build__closure3() { }, InvoiceListVM_fromStore(store) { var t6, t7, t8, t9, t10, t11, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredInvoiceList(), t2 = state.getUISelection$1(B.EntityType_invoice), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.invoiceState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t11 = t6.paymentState.map; t4 = t4.invoiceUIState.listUIState; t6 = t1.call$9(t2, t8, t7, t9, t10, t11, t4, t6.userState.map, t6.userCompany.company.settings.recurringNumberPrefix); t11 = t3[t5]; t10 = t11.invoiceState.map; t9 = t11.clientState.map; t4 = t4.filter; t11 = t11.userCompany.settings; t1 = t11 == null ? null : t11.getTableColumns$1(B.EntityType_invoice); if (t1 == null) { t3[t5].toString; t1 = A._setArrayType(["status", "number", "client", "amount", "balance", "date", "due_date"], type$.JSArray_legacy_String); } return new A.InvoiceListVM(state, t6, t10, t9, t4, new A.InvoiceListVM_fromStore_closure(new A.InvoiceListVM_fromStore__handleRefresh(store)), t1, new A.InvoiceListVM_fromStore_closure0(store), new A.InvoiceListVM_fromStore_closure1(store)); }, InvoiceListBuilder: function InvoiceListBuilder(t0) { this.key = t0; }, InvoiceListBuilder_build_closure: function InvoiceListBuilder_build_closure() { }, InvoiceListBuilder_build__closure: function InvoiceListBuilder_build__closure(t0) { this.viewModel = t0; }, EntityListVM: function EntityListVM() { }, InvoiceListVM: function InvoiceListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, InvoiceListVM_fromStore__handleRefresh: function InvoiceListVM_fromStore__handleRefresh(t0) { this.store = t0; }, InvoiceListVM_fromStore_closure: function InvoiceListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, InvoiceListVM_fromStore_closure0: function InvoiceListVM_fromStore_closure0(t0) { this.store = t0; }, InvoiceListVM_fromStore_closure1: function InvoiceListVM_fromStore_closure1(t0) { this.store = t0; }, _loadPDF(context, invoice, isDeliveryNote, activityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, $async$next = [], errorMessage, credential, url, t1, t2, exception, response; var $async$_loadPDF = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start response = null; $async$goto = activityId != null || isDeliveryNote ? 3 : 5; break; case 3: // then credential = J.get$credentials$z(A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state")); url = isDeliveryNote ? "/invoices/" + invoice.id + "/delivery_note" : "/activities/download_entity/" + A.S(activityId); $async$goto = 6; return A._asyncAwait(new A.WebClient().$get$3$rawResponse(0, credential.url + url, credential.token, true), $async$_loadPDF); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(new A.WebClient().$get$3$rawResponse(0, B.JSArray_methods.get$first(invoice.invitations._list).link + "/download?t=" + Date.now(), "", true), $async$_loadPDF); case 7: // returning from await. response = $async$result; case 4: // join if (response.statusCode >= 400) { errorMessage = A.S(response.statusCode) + ": " + A.S(response.reasonPhrase) + "\n\n"; try { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, J.$index$asx(B.C_JsonCodec.decode$2$reviver(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes), null), "message")); } catch (exception) { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes)); } A.showErrorDialog(false, context, errorMessage); throw A.wrapException(errorMessage); } $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_loadPDF, $async$completer); }, InvoicePdfView: function InvoicePdfView(t0, t1, t2) { this.viewModel = t0; this.showAppBar = t1; this.key = t2; }, _InvoicePdfViewState: function _InvoicePdfViewState(t0) { var _ = this; _._invoice_pdf$_isLoading = true; _._isDeliveryNote = false; _._widget = _._invoice_pdf$_response = _._invoice_pdf$_pdfString = _._invoice_pdf$_activityId = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _InvoicePdfViewState_loadPdf_closure: function _InvoicePdfViewState_loadPdf_closure(t0) { this.$this = t0; }, _InvoicePdfViewState_loadPdf_closure0: function _InvoicePdfViewState_loadPdf_closure0(t0) { this.$this = t0; }, _InvoicePdfViewState_loadPdf__closure: function _InvoicePdfViewState_loadPdf__closure(t0, t1) { this.$this = t0; this.response = t1; }, _InvoicePdfViewState_loadPdf_closure1: function _InvoicePdfViewState_loadPdf_closure1(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure: function _InvoicePdfViewState_build_closure(t0) { this.$this = t0; }, _InvoicePdfViewState_build__closure: function _InvoicePdfViewState_build__closure(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure0: function _InvoicePdfViewState_build_closure0(t0) { this.invoice = t0; }, _InvoicePdfViewState_build_closure1: function _InvoicePdfViewState_build_closure1(t0, t1, t2) { this.$this = t0; this.invoice = t1; this.localization = t2; }, _InvoicePdfViewState_build_closure2: function _InvoicePdfViewState_build_closure2(t0) { this.invoice = t0; }, InvoicePdfScreen: function InvoicePdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, InvoicePdfScreen_build_closure0: function InvoicePdfScreen_build_closure0() { }, InvoicePdfScreen_build_closure: function InvoicePdfScreen_build_closure(t0) { this.$this = t0; }, EntityPdfVM: function EntityPdfVM() { }, InvoicePdfVM: function InvoicePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, InvoicePresenter: function InvoicePresenter() { this.context = this.entity = null; }, InvoicePresenter_getField_closure: function InvoicePresenter_getField_closure(t0) { this.contact = t0; }, InvoiceScreen: function InvoiceScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceScreen_build_closure: function InvoiceScreen_build_closure(t0) { this.localization = t0; }, InvoiceScreen_build_closure0: function InvoiceScreen_build_closure0(t0) { this.localization = t0; }, InvoiceScreen_build_closure1: function InvoiceScreen_build_closure1(t0) { this.localization = t0; }, InvoiceScreen_build_closure2: function InvoiceScreen_build_closure2(t0) { this.localization = t0; }, InvoiceScreen_build_closure3: function InvoiceScreen_build_closure3(t0) { this.localization = t0; }, InvoiceScreen_build_closure4: function InvoiceScreen_build_closure4(t0) { this.localization = t0; }, InvoiceScreen_build_closure5: function InvoiceScreen_build_closure5(t0) { this.localization = t0; }, InvoiceScreen_build_closure19: function InvoiceScreen_build_closure19(t0) { this.store = t0; }, InvoiceScreen_build_closure15: function InvoiceScreen_build_closure15(t0) { this.store = t0; }, InvoiceScreen_build_closure17: function InvoiceScreen_build_closure17(t0) { this.store = t0; }, InvoiceScreen_build_closure16: function InvoiceScreen_build_closure16(t0) { this.store = t0; }, InvoiceScreen_build_closure18: function InvoiceScreen_build_closure18(t0) { this.store = t0; }, InvoiceScreen_build_closure11: function InvoiceScreen_build_closure11(t0) { this.store = t0; }, InvoiceScreen_build_closure12: function InvoiceScreen_build_closure12(t0) { this.store = t0; }, InvoiceScreen_build_closure13: function InvoiceScreen_build_closure13(t0) { this.store = t0; }, InvoiceScreen_build_closure7: function InvoiceScreen_build_closure7(t0) { this.store = t0; }, InvoiceScreen_build_closure8: function InvoiceScreen_build_closure8(t0) { this.store = t0; }, InvoiceScreen_build_closure9: function InvoiceScreen_build_closure9(t0) { this.store = t0; }, InvoiceScreen_build_closure10: function InvoiceScreen_build_closure10(t0) { this.store = t0; }, InvoiceScreen_build_closure6: function InvoiceScreen_build_closure6(t0) { this.store = t0; }, InvoiceScreen_build_closure14: function InvoiceScreen_build_closure14(t0) { this.context = t0; }, InvoiceScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, t11, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].invoiceState.toString; t4 = $.$get$memoizedFilteredInvoiceList(); t5 = state.getUISelection$1(B.EntityType_invoice); t6 = t1[t3]; t7 = t6.invoiceState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t11 = t6.paymentState.map; t2 = t2.invoiceUIState.listUIState; t6 = t4.call$9(t5, t8, t7, t9, t10, t11, t2, t6.userState.map, t6.userCompany.company.settings.recurringNumberPrefix); t1[t3].toString; t2.toString; return new A.InvoiceScreenVM(t6); }, InvoiceScreenBuilder: function InvoiceScreenBuilder(t0) { this.key = t0; }, InvoiceScreenBuilder_build_closure: function InvoiceScreenBuilder_build_closure() { }, InvoiceScreenVM: function InvoiceScreenVM(t0) { this.invoiceList = t0; }, InvoiceView: function InvoiceView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _InvoiceViewState: function _InvoiceViewState(t0, t1, t2) { var _ = this; _._invoice_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _InvoiceViewState_build_closure: function _InvoiceViewState_build_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.viewModel = t2; _.invoice = t3; }, _InvoiceViewState_build__closure5: function _InvoiceViewState_build__closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure: function _InvoiceViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure0: function _InvoiceViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure1: function _InvoiceViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure2: function _InvoiceViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure3: function _InvoiceViewState_build__closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure4: function _InvoiceViewState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, __InvoiceViewState_State_SingleTickerProviderStateMixin: function __InvoiceViewState_State_SingleTickerProviderStateMixin() { }, InvoiceViewActivity: function InvoiceViewActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewActivityState: function _InvoiceViewActivityState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewActivityState_build_closure0: function _InvoiceViewActivityState_build_closure0() { }, _InvoiceViewActivityState_build_closure: function _InvoiceViewActivityState_build_closure(t0) { this.activities = t0; }, InvoiceViewContacts: function InvoiceViewContacts(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceViewContacts_build_closure: function InvoiceViewContacts_build_closure(t0) { this.$this = t0; }, _InvitationListTile: function _InvitationListTile(t0, t1, t2) { this.invitation = t0; this.viewModel = t1; this.key = t2; }, _InvitationListTile_build_closure: function _InvitationListTile_build_closure(t0) { this.$this = t0; }, _InvitationListTile_build_closure0: function _InvitationListTile_build_closure0() { }, _InvitationListTile_build_closure1: function _InvitationListTile_build_closure1(t0) { this.$this = t0; }, _InvitationListTile_build_closure2: function _InvitationListTile_build_closure2() { }, InvoiceViewDocuments: function InvoiceViewDocuments(t0, t1, t2) { this.viewModel = t0; this.invoice = t1; this.key = t2; }, InvoiceViewDocuments_build_closure: function InvoiceViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceViewDocuments_build_closure0: function InvoiceViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceViewDocuments_build_closure1: function InvoiceViewDocuments_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceViewHistory: function InvoiceViewHistory(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewHistoryState: function _InvoiceViewHistoryState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewHistoryState_build_closure: function _InvoiceViewHistoryState_build_closure() { }, _InvoiceViewHistoryState_build_closure0: function _InvoiceViewHistoryState_build_closure0() { }, _InvoiceViewHistoryState_build_closure1: function _InvoiceViewHistoryState_build_closure1(t0, t1, t2) { this.activityList = t0; this.viewModel = t1; this.invoice = t2; }, _InvoiceViewHistoryState_build__closure: function _InvoiceViewHistoryState_build__closure(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.invoice = t2; _.history = t3; }, _InvoiceViewHistoryState_build_closure2: function _InvoiceViewHistoryState_build_closure2() { }, InvoiceOverview: function InvoiceOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, InvoiceOverview_build_closure: function InvoiceOverview_build_closure(t0, t1, t2) { this.invoice = t0; this.paymentMap = t1; this.creditMap = t2; }, InvoiceOverview_build__closure0: function InvoiceOverview_build__closure0(t0, t1, t2) { this.invoice = t0; this.paymentMap = t1; this.payment = t2; }, InvoiceOverview_build__closure1: function InvoiceOverview_build__closure1(t0, t1, t2) { this.invoice = t0; this.creditMap = t1; this.payment = t2; }, InvoiceOverview_build_closure0: function InvoiceOverview_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.client = t2; _.widgets = t3; }, InvoiceOverview_build_closure1: function InvoiceOverview_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.client = t2; _.widgets = t3; }, InvoiceOverview_build_closure2: function InvoiceOverview_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.widgets = t1; _.invoice = t2; _.userCompany = t3; }, InvoiceOverview_build__closure: function InvoiceOverview_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.invoiceItem = t2; _.userCompany = t3; }, InvoiceOverview_build___closure: function InvoiceOverview_build___closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.userCompany = t1; _.invoice = t2; _.context = t3; _.invoiceItem = t4; }, InvoiceOverview_build_surchargeRow: function InvoiceOverview_build_surchargeRow(t0, t1) { this.context = t0; this.invoice = t1; }, InvoiceOverview_build_closure3: function InvoiceOverview_build_closure3(t0, t1) { this.widgets = t0; this.surchargeRow = t1; }, InvoiceViewSchedule: function InvoiceViewSchedule(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewScheduleState: function _InvoiceViewScheduleState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewScheduleState_build_closure: function _InvoiceViewScheduleState_build_closure(t0) { this.context = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore(store) { var invoice, client, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; invoice = t1[t3].invoiceState.$get$1(0, t2.invoiceUIState.selectedId); client = t1[t3].clientState.$get$1(0, invoice.clientId); t3 = t1[t3].userCompany.company; invoice.get$isNew(); return new A.InvoiceViewVM(state, t3, invoice, client, new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure(invoice), new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0(new A.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh(store, invoice)), new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure1(store, invoice), new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure2(store, invoice), new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure3(), new A.InvoiceViewVM_InvoiceViewVM$fromStore_closure4(store)); }, InvoiceViewScreen: function InvoiceViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, InvoiceViewScreen_build_closure0: function InvoiceViewScreen_build_closure0() { }, InvoiceViewScreen_build_closure: function InvoiceViewScreen_build_closure(t0) { this.$this = t0; }, AbstractInvoiceViewVM: function AbstractInvoiceViewVM() { }, InvoiceViewVM: function InvoiceViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh: function InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure: function InvoiceViewVM_InvoiceViewVM$fromStore_closure(t0) { this.invoice = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure0: function InvoiceViewVM_InvoiceViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure1: function InvoiceViewVM_InvoiceViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure0: function InvoiceViewVM_InvoiceViewVM$fromStore__closure0(t0) { this.context = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure1: function InvoiceViewVM_InvoiceViewVM$fromStore__closure1(t0) { this.context = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore___closure: function InvoiceViewVM_InvoiceViewVM$fromStore___closure(t0) { this.error = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure2: function InvoiceViewVM_InvoiceViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure: function InvoiceViewVM_InvoiceViewVM$fromStore__closure(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure3: function InvoiceViewVM_InvoiceViewVM$fromStore_closure3() { }, InvoiceViewVM_InvoiceViewVM$fromStore_closure4: function InvoiceViewVM_InvoiceViewVM$fromStore_closure4(t0) { this.store = t0; }, PaymentEdit: function PaymentEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentEditState: function _PaymentEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._payment_edit$_amountController = t0; _._numberController = t1; _._transactionReferenceController = t2; _._privateNotesController = t3; _._payment_edit$_custom1Controller = t4; _._payment_edit$_custom2Controller = t5; _._payment_edit$_custom3Controller = t6; _._payment_edit$_custom4Controller = t7; _._exchangeRateController = t8; _._payment_edit$_controllers = t9; _._payment_edit$_debouncer = t10; _._showConvertCurrency = _.autoValidate = false; _._convertedAmount = 0; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, _PaymentEditState_didChangeDependencies_closure: function _PaymentEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentEditState_didChangeDependencies_closure0: function _PaymentEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentEditState_dispose_closure: function _PaymentEditState_dispose_closure(t0) { this.$this = t0; }, _PaymentEditState__onChanged_closure: function _PaymentEditState__onChanged_closure(t0) { this.$this = t0; }, _PaymentEditState__onChanged_closure0: function _PaymentEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.payment = t1; }, _PaymentEditState_convertCurrency_closure: function _PaymentEditState_convertCurrency_closure(t0, t1) { this._box_0 = t0; this.currency = t1; }, _PaymentEditState_build_closure: function _PaymentEditState_build_closure() { }, _PaymentEditState_build_closure0: function _PaymentEditState_build_closure0() { }, _PaymentEditState_build_closure1: function _PaymentEditState_build_closure1(t0) { this._box_0 = t0; }, _PaymentEditState_build_closure2: function _PaymentEditState_build_closure2(t0) { this._box_0 = t0; }, _PaymentEditState_build_closure4: function _PaymentEditState_build_closure4(t0) { this.context = t0; }, _PaymentEditState_build_closure3: function _PaymentEditState_build_closure3(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure5: function _PaymentEditState_build__closure5(t0) { this.client = t0; }, _PaymentEditState_build_closure5: function _PaymentEditState_build_closure5(t0) { this.localization = t0; }, _PaymentEditState_build_closure7: function _PaymentEditState_build_closure7(t0) { this.context = t0; }, _PaymentEditState_build_closure6: function _PaymentEditState_build_closure6(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure4: function _PaymentEditState_build__closure4(t0) { this.date = t0; }, _PaymentEditState_build_closure8: function _PaymentEditState_build_closure8(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure3: function _PaymentEditState_build__closure3(t0) { this.paymentType = t0; }, _PaymentEditState_build_closure9: function _PaymentEditState_build_closure9(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure2: function _PaymentEditState_build__closure2(t0) { this.value = t0; }, _PaymentEditState_build_closure10: function _PaymentEditState_build_closure10(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.payment = t2; _.state = t3; }, _PaymentEditState_build__closure0: function _PaymentEditState_build__closure0() { }, _PaymentEditState_build__closure1: function _PaymentEditState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _PaymentEditState_build_closure11: function _PaymentEditState_build_closure11(t0) { this.$this = t0; }, _PaymentEditState_build_closure13: function _PaymentEditState_build_closure13(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.payment = t2; _.context = t3; _.viewModel = t4; }, _PaymentEditState_build__closure: function _PaymentEditState_build__closure(t0) { this.exchangeRate = t0; }, _PaymentEditState_build_closure12: function _PaymentEditState_build_closure12(t0) { this.$this = t0; }, _PaymentEditState_build_onSavePressed: function _PaymentEditState_build_onSavePressed(t0, t1) { this.$this = t0; this.viewModel = t1; }, _PaymentEditState_build_onSavePressed_closure: function _PaymentEditState_build_onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _PaymentEditState_build_closure14: function _PaymentEditState_build_closure14(t0) { this.context = t0; }, _PaymentEditState_build_closure15: function _PaymentEditState_build_closure15(t0, t1) { this.onSavePressed = t0; this.context = t1; }, _PaymentEditState_build_closure16: function _PaymentEditState_build_closure16(t0) { this.viewModel = t0; }, PaymentableEditor: function PaymentableEditor(t0, t1, t2, t3, t4, t5) { var _ = this; _.viewModel = t0; _.paymentable = t1; _.index = t2; _.entityType = t3; _.limit = t4; _.key = t5; }, _PaymentableEditorState: function _PaymentableEditorState(t0, t1, t2) { var _ = this; _._payment_edit$_amountController = t0; _._payment_edit$_creditId = _._payment_edit$_invoiceId = null; _._payment_edit$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PaymentableEditorState_didChangeDependencies_closure: function _PaymentableEditorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentableEditorState_didChangeDependencies_closure0: function _PaymentableEditorState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentableEditorState_dispose_closure0: function _PaymentableEditorState_dispose_closure0(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure: function _PaymentableEditorState__onChanged_closure(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure0: function _PaymentableEditorState__onChanged_closure0(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure1: function _PaymentableEditorState__onChanged_closure1(t0) { this._box_0 = t0; }, _PaymentableEditorState__onChanged_closure2: function _PaymentableEditorState__onChanged_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, _PaymentableEditorState__onChanged_closure3: function _PaymentableEditorState__onChanged_closure3(t0) { this._box_0 = t0; }, _PaymentableEditorState__onChanged_closure4: function _PaymentableEditorState__onChanged_closure4(t0, t1) { this._box_0 = t0; this.$this = t1; }, _PaymentableEditorState__onChanged_closure5: function _PaymentableEditorState__onChanged_closure5(t0) { this.clientId = t0; }, _PaymentableEditorState_build_closure: function _PaymentableEditorState_build_closure() { }, _PaymentableEditorState_build_closure0: function _PaymentableEditorState_build_closure0() { }, _PaymentableEditorState_build_closure3: function _PaymentableEditorState_build_closure3(t0) { this.localization = t0; }, _PaymentableEditorState_build_closure2: function _PaymentableEditorState_build_closure2(t0) { this.context = t0; }, _PaymentableEditorState_build_closure1: function _PaymentableEditorState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _PaymentableEditorState_build_closure6: function _PaymentableEditorState_build_closure6(t0) { this.localization = t0; }, _PaymentableEditorState_build_closure5: function _PaymentableEditorState_build_closure5(t0) { this.context = t0; }, _PaymentableEditorState_build_closure4: function _PaymentableEditorState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, _PaymentableEditorState_build_closure7: function _PaymentableEditorState_build_closure7(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.payment = t2; }, _PaymentableEditorState_build__closure: function _PaymentableEditorState_build__closure(t0) { this.$this = t0; }, _PaymentableEditorState_build__closure0: function _PaymentableEditorState_build__closure0(t0) { this.$this = t0; }, PaymentEditVM_PaymentEditVM$fromStore(store) { var t2, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, payment = t1.paymentUIState.editing; payment.get$isNew(); t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1].paymentState.map; t2 = payment.id; t1._map$_map.$index(0, t2); return new A.PaymentEditVM(state, payment, new A.PaymentEditVM_PaymentEditVM$fromStore_closure(store), new A.PaymentEditVM_PaymentEditVM$fromStore_closure0(store, state), new A.PaymentEditVM_PaymentEditVM$fromStore_closure1(store, state), state.staticState); }, PaymentEditScreen: function PaymentEditScreen(t0) { this.key = t0; }, PaymentEditScreen_build_closure0: function PaymentEditScreen_build_closure0() { }, PaymentEditScreen_build_closure: function PaymentEditScreen_build_closure() { }, PaymentEditVM: function PaymentEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.payment = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.staticState = t5; }, PaymentEditVM_PaymentEditVM$fromStore_closure: function PaymentEditVM_PaymentEditVM$fromStore_closure(t0) { this.store = t0; }, PaymentEditVM_PaymentEditVM$fromStore_closure1: function PaymentEditVM_PaymentEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore_closure0: function PaymentEditVM_PaymentEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore__closure: function PaymentEditVM_PaymentEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore___closure: function PaymentEditVM_PaymentEditVM$fromStore___closure(t0) { this._box_0 = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure0: function PaymentEditVM_PaymentEditVM$fromStore___closure0(t0) { this._box_0 = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure1: function PaymentEditVM_PaymentEditVM$fromStore___closure1(t0) { this.localization = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure2: function PaymentEditVM_PaymentEditVM$fromStore___closure2(t0, t1, t2, t3, t4) { var _ = this; _.payment = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, PaymentEditVM_PaymentEditVM$fromStore___closure3: function PaymentEditVM_PaymentEditVM$fromStore___closure3() { }, PaymentEditVM_PaymentEditVM$fromStore____closure: function PaymentEditVM_PaymentEditVM$fromStore____closure(t0) { this.error = t0; }, PaymentListItem: function PaymentListItem(t0, t1, t2, t3) { var _ = this; _.payment = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, PaymentListItem_build_closure: function PaymentListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.textStyle = t7; _.filterMatch = t8; _.textColor = t9; _.mobileSubtitle = t10; _.localization = t11; }, PaymentListItem_build__closure2: function PaymentListItem_build__closure2(t0) { this.$this = t0; }, PaymentListItem_build__closure1: function PaymentListItem_build__closure1(t0) { this.$this = t0; }, PaymentListItem_build__closure: function PaymentListItem_build__closure() { }, PaymentListItem_build__closure0: function PaymentListItem_build__closure0(t0) { this.$this = t0; }, PaymentListItem_build__closure5: function PaymentListItem_build__closure5(t0) { this.$this = t0; }, PaymentListItem_build__closure4: function PaymentListItem_build__closure4(t0) { this.$this = t0; }, PaymentListItem_build__closure3: function PaymentListItem_build__closure3() { }, PaymentListVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userCompany.user; t5 = $.$get$memoizedFilteredPaymentList(); t6 = state.getUISelection$1(B.EntityType_payment); t7 = t1[t3]; t8 = t7.paymentState; t9 = t8.map; t8 = t8.list; t10 = t7.invoiceState.map; t11 = t7.clientState.map; t7 = t7.userState.map; t12 = state.staticState.paymentTypeMap; t2 = t2.paymentUIState.listUIState; t12 = t5.call$8(t6, t9, t8, t10, t11, t7, t12, t2); t7 = t1[t3]; t7.paymentState.toString; t7.clientState.toString; t2 = t2.filter; t7 = t7.userCompany.settings; t5 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_payment); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType(["status", "number", "client", "amount", "invoice_number", "date", "type", "transaction_reference"], type$.JSArray_legacy_String); } else t1 = t5; return new A.PaymentListVM(state, t4, t12, t2, new A.PaymentListVM_fromStore_closure(new A.PaymentListVM_fromStore__handleRefresh(store)), t1, new A.PaymentListVM_fromStore_closure0(store), new A.PaymentListVM_fromStore_closure1(store)); }, PaymentListBuilder: function PaymentListBuilder(t0) { this.key = t0; }, PaymentListBuilder_build_closure: function PaymentListBuilder_build_closure() { }, PaymentListBuilder_build__closure: function PaymentListBuilder_build__closure(t0) { this.viewModel = t0; }, PaymentListVM: function PaymentListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.user = t1; _.paymentList = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, PaymentListVM_fromStore__handleRefresh: function PaymentListVM_fromStore__handleRefresh(t0) { this.store = t0; }, PaymentListVM_fromStore_closure: function PaymentListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentListVM_fromStore_closure0: function PaymentListVM_fromStore_closure0(t0) { this.store = t0; }, PaymentListVM_fromStore_closure1: function PaymentListVM_fromStore_closure1(t0) { this.store = t0; }, PaymentPresenter: function PaymentPresenter() { this.context = this.entity = null; }, PaymentPresenter_getField_closure: function PaymentPresenter_getField_closure(t0) { this.state = t0; }, PaymentPresenter_getField_closure0: function PaymentPresenter_getField_closure0() { }, PaymentPresenter_getField_closure1: function PaymentPresenter_getField_closure1(t0) { this.payment = t0; }, PaymentPresenter_getField_closure2: function PaymentPresenter_getField_closure2(t0) { this.state = t0; }, PaymentScreen: function PaymentScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PaymentScreen_build_closure10: function PaymentScreen_build_closure10(t0) { this.store = t0; }, PaymentScreen_build_closure7: function PaymentScreen_build_closure7(t0) { this.store = t0; }, PaymentScreen_build_closure8: function PaymentScreen_build_closure8(t0) { this.store = t0; }, PaymentScreen_build_closure9: function PaymentScreen_build_closure9(t0) { this.store = t0; }, PaymentScreen_build_closure4: function PaymentScreen_build_closure4(t0) { this.store = t0; }, PaymentScreen_build_closure0: function PaymentScreen_build_closure0(t0) { this.store = t0; }, PaymentScreen_build_closure1: function PaymentScreen_build_closure1(t0) { this.store = t0; }, PaymentScreen_build_closure2: function PaymentScreen_build_closure2(t0) { this.store = t0; }, PaymentScreen_build_closure3: function PaymentScreen_build_closure3(t0) { this.store = t0; }, PaymentScreen_build_closure5: function PaymentScreen_build_closure5(t0) { this.store = t0; }, PaymentScreen_build_closure: function PaymentScreen_build_closure(t0) { this.store = t0; }, PaymentScreen_build_closure6: function PaymentScreen_build_closure6(t0) { this.context = t0; }, PaymentScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, t11, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].paymentState.toString; t4 = $.$get$memoizedFilteredPaymentList(); t5 = state.getUISelection$1(B.EntityType_payment); t6 = t1[t3]; t7 = t6.paymentState; t8 = t7.map; t7 = t7.list; t9 = t6.invoiceState.map; t10 = t6.clientState.map; t6 = t6.userState.map; t11 = state.staticState.paymentTypeMap; t2 = t2.paymentUIState.listUIState; t11 = t4.call$8(t5, t8, t7, t9, t10, t6, t11, t2); t1[t3].toString; t2.toString; return new A.PaymentScreenVM(t11); }, PaymentScreenBuilder: function PaymentScreenBuilder(t0) { this.key = t0; }, PaymentScreenBuilder_build_closure: function PaymentScreenBuilder_build_closure() { }, PaymentScreenVM: function PaymentScreenVM(t0) { this.paymentList = t0; }, PaymentRefund: function PaymentRefund(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentRefundState: function _PaymentRefundState(t0, t1, t2, t3) { var _ = this; _._payment_refund$_amountController = t0; _._payment_refund$_controllers = t1; _._payment_refund$_debouncer = t2; _.autoValidate = false; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _PaymentRefundState_didChangeDependencies_closure: function _PaymentRefundState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentRefundState_didChangeDependencies_closure0: function _PaymentRefundState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentRefundState_dispose_closure: function _PaymentRefundState_dispose_closure(t0) { this.$this = t0; }, _PaymentRefundState__onChanged_closure: function _PaymentRefundState__onChanged_closure(t0) { this.$this = t0; }, _PaymentRefundState__onChanged__closure: function _PaymentRefundState__onChanged__closure(t0) { this.$this = t0; }, _PaymentRefundState_build_closure: function _PaymentRefundState_build_closure() { }, _PaymentRefundState_build_closure1: function _PaymentRefundState_build_closure1(t0) { this.context = t0; }, _PaymentRefundState_build_closure0: function _PaymentRefundState_build_closure0(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure1: function _PaymentRefundState_build__closure1(t0) { this.date = t0; }, _PaymentRefundState_build_closure2: function _PaymentRefundState_build_closure2(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure0: function _PaymentRefundState_build__closure0(t0) { this.value = t0; }, _PaymentRefundState_build_closure3: function _PaymentRefundState_build_closure3(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure: function _PaymentRefundState_build__closure(t0) { this.value = t0; }, _PaymentRefundState_build_onSavePressed: function _PaymentRefundState_build_onSavePressed(t0, t1) { this.$this = t0; this.viewModel = t1; }, _PaymentRefundState_build_onSavePressed_closure: function _PaymentRefundState_build_onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _PaymentRefundState_build_onSavePressed_closure0: function _PaymentRefundState_build_onSavePressed_closure0(t0) { this.context = t0; }, _PaymentRefundState_build_closure4: function _PaymentRefundState_build_closure4(t0) { this.viewModel = t0; }, _PaymentRefundState_build_closure5: function _PaymentRefundState_build_closure5(t0) { this.onSavePressed = t0; }, _PaymentRefundState_build_closure6: function _PaymentRefundState_build_closure6(t0) { this.context = t0; }, _PaymentRefundState_build_closure7: function _PaymentRefundState_build_closure7(t0, t1) { this.onSavePressed = t0; this.context = t1; }, PaymentableEditor0: function PaymentableEditor0(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.paymentable = t1; _.index = t2; _.key = t3; }, _PaymentableEditorState0: function _PaymentableEditorState0(t0, t1, t2) { var _ = this; _._payment_refund$_amountController = t0; _._payment_refund$_invoiceId = ""; _._payment_refund$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PaymentableEditorState_didChangeDependencies_closure1: function _PaymentableEditorState_didChangeDependencies_closure1(t0) { this.$this = t0; }, _PaymentableEditorState_didChangeDependencies_closure2: function _PaymentableEditorState_didChangeDependencies_closure2(t0) { this.$this = t0; }, _PaymentableEditorState_dispose_closure: function _PaymentableEditorState_dispose_closure(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure6: function _PaymentableEditorState__onChanged_closure6(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure7: function _PaymentableEditorState__onChanged_closure7(t0) { this.paymentable = t0; }, _PaymentableEditorState__onChanged_closure8: function _PaymentableEditorState__onChanged_closure8(t0, t1) { this.$this = t0; this.paymentable = t1; }, _PaymentableEditorState__onChanged_closure9: function _PaymentableEditorState__onChanged_closure9(t0) { this.clientId = t0; }, _PaymentableEditorState_build_closure8: function _PaymentableEditorState_build_closure8() { }, _PaymentableEditorState_build_closure10: function _PaymentableEditorState_build_closure10(t0) { this.context = t0; }, _PaymentableEditorState_build_closure9: function _PaymentableEditorState_build_closure9(t0) { this.$this = t0; }, _PaymentableEditorState_build__closure2: function _PaymentableEditorState_build__closure2(t0, t1) { this.$this = t0; this.invoice = t1; }, _PaymentableEditorState_build_closure11: function _PaymentableEditorState_build_closure11(t0, t1) { this.hasMultipleInvoices = t0; this.localization = t1; }, _PaymentableEditorState_build_closure12: function _PaymentableEditorState_build_closure12(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.payment = t2; }, _PaymentableEditorState_build__closure1: function _PaymentableEditorState_build__closure1(t0) { this.$this = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore(store) { var t2, t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, payment = t1.paymentUIState.editing; payment.get$isNew(); t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].paymentState.map; t4 = payment.id; t3._map$_map.$index(0, t4); t2[t1].invoiceState.toString; return new A.PaymentRefundVM(state, payment, new A.PaymentRefundVM_PaymentRefundVM$fromStore_closure(store), new A.PaymentRefundVM_PaymentRefundVM$fromStore_closure0(store, payment), new A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1(store, state)); }, PaymentRefundScreen: function PaymentRefundScreen(t0) { this.key = t0; }, PaymentRefundScreen_build_closure0: function PaymentRefundScreen_build_closure0() { }, PaymentRefundScreen_build_closure: function PaymentRefundScreen_build_closure() { }, PaymentRefundVM: function PaymentRefundVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.payment = t1; _.onChanged = t2; _.onRefundPressed = t3; _.onCancelPressed = t4; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure: function PaymentRefundVM_PaymentRefundVM$fromStore_closure(t0) { this.store = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure1: function PaymentRefundVM_PaymentRefundVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure0: function PaymentRefundVM_PaymentRefundVM$fromStore_closure0(t0, t1) { this.store = t0; this.payment = t1; }, PaymentRefundVM_PaymentRefundVM$fromStore__closure: function PaymentRefundVM_PaymentRefundVM$fromStore__closure(t0, t1, t2) { this.context = t0; this.store = t1; this.payment = t2; }, PaymentRefundVM_PaymentRefundVM$fromStore__closure0: function PaymentRefundVM_PaymentRefundVM$fromStore__closure0(t0) { this.context = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore___closure: function PaymentRefundVM_PaymentRefundVM$fromStore___closure(t0) { this.error = t0; }, PaymentView: function PaymentView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _PaymentViewState: function _PaymentViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _PaymentViewState_build_closure: function _PaymentViewState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.viewModel = t1; _.payment = t2; _.state = t3; _.localization = t4; _.client = t5; _.companyGateway = t6; _.companyGatewayLink = t7; _.fields = t8; }, _PaymentViewState_build__closure2: function _PaymentViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _PaymentViewState_build__closure: function _PaymentViewState_build__closure(t0) { this.companyGatewayLink = t0; }, _PaymentViewState_build__closure0: function _PaymentViewState_build__closure0() { }, _PaymentViewState_build__closure1: function _PaymentViewState_build__closure1() { }, PaymentViewVM_PaymentViewVM$fromStore(store) { var t4, payment, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].paymentState.map; t2 = t2.paymentUIState.selectedId; payment = t4._map$_map.$index(0, t2); if (payment == null) payment = A.PaymentEntity_PaymentEntity(null, t2, null); t1 = t1[t3].userCompany.company; payment.get$isNew(); return new A.PaymentViewVM(state, payment, t1, new A.PaymentViewVM_PaymentViewVM$fromStore_closure(new A.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh(store, payment))); }, PaymentViewScreen: function PaymentViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, PaymentViewScreen_build_closure0: function PaymentViewScreen_build_closure0() { }, PaymentViewScreen_build_closure: function PaymentViewScreen_build_closure(t0) { this.$this = t0; }, PaymentViewVM: function PaymentViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.payment = t1; _.company = t2; _.onRefreshed = t3; }, PaymentViewVM_PaymentViewVM$fromStore__handleRefresh: function PaymentViewVM_PaymentViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.payment = t1; }, PaymentViewVM_PaymentViewVM$fromStore_closure: function PaymentViewVM_PaymentViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentTermEdit: function PaymentTermEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentTermEditState: function _PaymentTermEditState(t0, t1, t2, t3) { var _ = this; _._payment_term_edit$_debouncer = t0; _._payment_term_edit$_controllers = t1; _._numDaysController = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _PaymentTermEditState_didChangeDependencies_closure: function _PaymentTermEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentTermEditState_didChangeDependencies_closure0: function _PaymentTermEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentTermEditState_dispose_closure: function _PaymentTermEditState_dispose_closure(t0) { this.$this = t0; }, _PaymentTermEditState__onChanged_closure: function _PaymentTermEditState__onChanged_closure(t0) { this.$this = t0; }, _PaymentTermEditState__onChanged_closure0: function _PaymentTermEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.paymentTerm = t1; }, _PaymentTermEditState_build_closure0: function _PaymentTermEditState_build_closure0(t0) { this.viewModel = t0; }, _PaymentTermEditState_build_closure1: function _PaymentTermEditState_build_closure1(t0) { this.viewModel = t0; }, _PaymentTermEditState_build_closure: function _PaymentTermEditState_build_closure(t0, t1) { this.$this = t0; this.localization = t1; }, _PaymentTermEditState_build__closure: function _PaymentTermEditState_build__closure(t0) { this.localization = t0; }, PaymentTermEditVM_PaymentTermEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, paymentTerm = t1.paymentTermUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].paymentTermState.map; t4 = paymentTerm.id; t3._map$_map.$index(0, t4); return new A.PaymentTermEditVM(paymentTerm, t2[t1].userCompany.company, new A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure(store), new A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0(store, state), new A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1(store, state), state); }, PaymentTermEditScreen: function PaymentTermEditScreen(t0) { this.key = t0; }, PaymentTermEditScreen_build_closure0: function PaymentTermEditScreen_build_closure0() { }, PaymentTermEditScreen_build_closure: function PaymentTermEditScreen_build_closure() { }, PaymentTermEditVM: function PaymentTermEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.paymentTerm = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure(t0) { this.store = t0; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, PaymentTermEditVM_PaymentTermEditVM$fromStore__closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, PaymentTermEditVM_PaymentTermEditVM$fromStore___closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.paymentTerm = t0; _.localization = t1; _.state = t2; _.store = t3; _.context = t4; }, PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0: function PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0() { }, PaymentTermEditVM_PaymentTermEditVM$fromStore____closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore____closure(t0) { this.error = t0; }, PaymentTermListItem: function PaymentTermListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.paymentTerm = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, PaymentTermListItem_build_closure1: function PaymentTermListItem_build_closure1(t0) { this.$this = t0; }, PaymentTermListItem_build_closure0: function PaymentTermListItem_build_closure0(t0) { this.$this = t0; }, PaymentTermListItem_build_closure: function PaymentTermListItem_build_closure(t0) { this.$this = t0; }, PaymentTermListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.paymentTermUIState; t2.toString; t4 = $.$get$memoizedFilteredPaymentTermList(); t5 = state.getUISelection$1(B.EntityType_paymentTerm); t6 = t1[t3].paymentTermState; t2 = t2.listUIState; return new A.PaymentTermListVM(state, t4.call$4(t5, t6.map, t6.list, t2), t1[t3].paymentTermState.map, t2.filter, new A.PaymentTermListVM_fromStore_closure(new A.PaymentTermListVM_fromStore__handleRefresh(store)), new A.PaymentTermListVM_fromStore_closure0(store), new A.PaymentTermListVM_fromStore_closure1(store)); }, PaymentTermListBuilder: function PaymentTermListBuilder(t0) { this.key = t0; }, PaymentTermListBuilder_build_closure: function PaymentTermListBuilder_build_closure() { }, PaymentTermListBuilder_build__closure: function PaymentTermListBuilder_build__closure(t0) { this.viewModel = t0; }, PaymentTermListVM: function PaymentTermListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.paymentTermList = t1; _.paymentTermMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, PaymentTermListVM_fromStore__handleRefresh: function PaymentTermListVM_fromStore__handleRefresh(t0) { this.store = t0; }, PaymentTermListVM_fromStore_closure: function PaymentTermListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentTermListVM_fromStore_closure0: function PaymentTermListVM_fromStore_closure0(t0) { this.store = t0; }, PaymentTermListVM_fromStore_closure1: function PaymentTermListVM_fromStore_closure1(t0) { this.store = t0; }, PaymentTermScreen: function PaymentTermScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PaymentTermScreen_build_closure10: function PaymentTermScreen_build_closure10(t0) { this.store = t0; }, PaymentTermScreen_build_closure7: function PaymentTermScreen_build_closure7(t0) { this.store = t0; }, PaymentTermScreen_build_closure8: function PaymentTermScreen_build_closure8(t0) { this.store = t0; }, PaymentTermScreen_build_closure9: function PaymentTermScreen_build_closure9(t0) { this.store = t0; }, PaymentTermScreen_build_closure4: function PaymentTermScreen_build_closure4(t0) { this.store = t0; }, PaymentTermScreen_build_closure5: function PaymentTermScreen_build_closure5(t0) { this.store = t0; }, PaymentTermScreen_build_closure: function PaymentTermScreen_build_closure(t0) { this.store = t0; }, PaymentTermScreen_build_closure0: function PaymentTermScreen_build_closure0(t0) { this.store = t0; }, PaymentTermScreen_build_closure1: function PaymentTermScreen_build_closure1(t0) { this.store = t0; }, PaymentTermScreen_build_closure2: function PaymentTermScreen_build_closure2(t0) { this.store = t0; }, PaymentTermScreen_build_closure3: function PaymentTermScreen_build_closure3(t0) { this.store = t0; }, PaymentTermScreen_build_closure6: function PaymentTermScreen_build_closure6(t0) { this.context = t0; }, PaymentTermScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].paymentTermState.toString; t4 = $.$get$memoizedFilteredPaymentTermList(); t5 = state.getUISelection$1(B.EntityType_paymentTerm); t6 = t1[t3].paymentTermState; t7 = t6.map; t6 = t6.list; t2 = t2.paymentTermUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.PaymentTermScreenVM(t6); }, PaymentTermScreenBuilder: function PaymentTermScreenBuilder(t0) { this.key = t0; }, PaymentTermScreenBuilder_build_closure: function PaymentTermScreenBuilder_build_closure() { }, PaymentTermScreenVM: function PaymentTermScreenVM(t0) { this.paymentTermList = t0; }, PaymentTermView: function PaymentTermView(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentTermViewState: function _PaymentTermViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _PaymentTermViewState_build_closure: function _PaymentTermViewState_build_closure(t0) { this.viewModel = t0; }, PaymentTermViewVM_PaymentTermViewVM$fromStore(store) { var t4, paymentTerm, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].paymentTermState.map; t2 = t2.paymentTermUIState.selectedId; paymentTerm = t4._map$_map.$index(0, t2); if (paymentTerm == null) paymentTerm = A.PaymentTermEntity_PaymentTermEntity(t2, null); t1 = t1[t3].userCompany.company; paymentTerm.get$isNew(); return new A.PaymentTermViewVM(state, paymentTerm, t1, new A.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure(store)); }, PaymentTermViewScreen: function PaymentTermViewScreen(t0) { this.key = t0; }, PaymentTermViewScreen_build_closure0: function PaymentTermViewScreen_build_closure0() { }, PaymentTermViewScreen_build_closure: function PaymentTermViewScreen_build_closure() { }, PaymentTermViewVM: function PaymentTermViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.paymentTerm = t1; _.company = t2; _.onBackPressed = t3; }, PaymentTermViewVM_PaymentTermViewVM$fromStore_closure: function PaymentTermViewVM_PaymentTermViewVM$fromStore_closure(t0) { this.store = t0; }, ProductEdit: function ProductEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductEditState: function _ProductEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._product_edit$_focusNode = t0; _._product_edit$_autoValidate = false; _._productKeyController = t1; _._notesController = t2; _._priceController = t3; _._quantityController = t4; _._costController = t5; _._product_edit$_custom1Controller = t6; _._product_edit$_custom2Controller = t7; _._product_edit$_custom3Controller = t8; _._product_edit$_custom4Controller = t9; _._stockQuantityController = t10; _._notificationThresholdController = t11; _._product_edit$_controllers = t12; _._product_edit$_debouncer = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, _ProductEditState_didChangeDependencies_closure: function _ProductEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ProductEditState_didChangeDependencies_closure0: function _ProductEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ProductEditState_dispose_closure: function _ProductEditState_dispose_closure(t0) { this.$this = t0; }, _ProductEditState__onChanged_closure: function _ProductEditState__onChanged_closure(t0) { this.$this = t0; }, _ProductEditState__onChanged_closure0: function _ProductEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.product = t1; }, _ProductEditState_build_closure4: function _ProductEditState_build_closure4(t0) { this.viewModel = t0; }, _ProductEditState_build_closure5: function _ProductEditState_build_closure5(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ProductEditState_build__closure: function _ProductEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ProductEditState_build_closure: function _ProductEditState_build_closure(t0) { this.localization = t0; }, _ProductEditState_build_closure0: function _ProductEditState_build_closure0(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure3: function _ProductEditState_build__closure3(t0) { this.taxRate = t0; }, _ProductEditState_build_closure1: function _ProductEditState_build_closure1(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure2: function _ProductEditState_build__closure2(t0) { this.taxRate = t0; }, _ProductEditState_build_closure2: function _ProductEditState_build_closure2(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure1: function _ProductEditState_build__closure1(t0) { this.taxRate = t0; }, _ProductEditState_build_closure3: function _ProductEditState_build_closure3(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure0: function _ProductEditState_build__closure0(t0) { this.value = t0; }, ProductEditVM_ProductEditVM$fromStore(store) { var t3, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, product = t1.productUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].userCompany.company; product.get$isNew(); t1 = t2[t1].productState.map; t2 = product.id; t1._map$_map.$index(0, t2); return new A.ProductEditVM(state, t3, product, new A.ProductEditVM_ProductEditVM$fromStore_closure(store), new A.ProductEditVM_ProductEditVM$fromStore_closure0(store, state), new A.ProductEditVM_ProductEditVM$fromStore_closure1(store, state)); }, ProductEditScreen: function ProductEditScreen(t0) { this.key = t0; }, ProductEditScreen_build_closure0: function ProductEditScreen_build_closure0() { }, ProductEditScreen_build_closure: function ProductEditScreen_build_closure() { }, ProductEditVM: function ProductEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.product = t2; _.onChanged = t3; _.onSavePressed = t4; _.onCancelPressed = t5; }, ProductEditVM_ProductEditVM$fromStore_closure: function ProductEditVM_ProductEditVM$fromStore_closure(t0) { this.store = t0; }, ProductEditVM_ProductEditVM$fromStore_closure1: function ProductEditVM_ProductEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore_closure0: function ProductEditVM_ProductEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore__closure: function ProductEditVM_ProductEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore___closure: function ProductEditVM_ProductEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.product = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ProductEditVM_ProductEditVM$fromStore___closure0: function ProductEditVM_ProductEditVM$fromStore___closure0() { }, ProductEditVM_ProductEditVM$fromStore____closure: function ProductEditVM_ProductEditVM$fromStore____closure(t0) { this.error = t0; }, ProductListItem$(filter, isChecked, isDismissible, onCheckboxChanged, onTap, product) { return new A.ProductListItem(onTap, onCheckboxChanged, isChecked, isDismissible, product, filter, null); }, ProductListItem: function ProductListItem(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onTap = t0; _.onCheckboxChanged = t1; _.isChecked = t2; _.isDismissible = t3; _.product = t4; _.filter = t5; _.key = t6; }, ProductListItem_build_closure: function ProductListItem_build_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.filterMatch = t5; _.subtitle = t6; }, ProductListItem_build__closure2: function ProductListItem_build__closure2(t0) { this.$this = t0; }, ProductListItem_build__closure1: function ProductListItem_build__closure1(t0) { this.$this = t0; }, ProductListItem_build__closure: function ProductListItem_build__closure(t0) { this.$this = t0; }, ProductListItem_build__closure0: function ProductListItem_build__closure0(t0) { this.$this = t0; }, ProductListItem_build__closure5: function ProductListItem_build__closure5(t0) { this.$this = t0; }, ProductListItem_build__closure4: function ProductListItem_build__closure4(t0) { this.$this = t0; }, ProductListItem_build__closure3: function ProductListItem_build__closure3(t0) { this.$this = t0; }, ProductListVM_fromStore(store) { var t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredProductList(), t2 = state.getUISelection$1(B.EntityType_product), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.productState; t8 = t7.map; t7 = t7.list; t4 = t4.productUIState.listUIState; t6 = t1.call$5(t2, t8, t7, t4, t6.userState.map); t7 = t3[t5]; t8 = t7.productState.map; t4 = t4.filter; t7 = t7.userCompany.settings; t1 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_product); if (t1 == null) t1 = A.ProductPresenter_getDefaultTableFields(t3[t5].userCompany); return new A.ProductListVM(state, t6, t8, t4, new A.ProductListVM_fromStore_closure(new A.ProductListVM_fromStore__handleRefresh(store)), t1, new A.ProductListVM_fromStore_closure0(store), new A.ProductListVM_fromStore_closure1(store)); }, ProductListBuilder: function ProductListBuilder(t0) { this.key = t0; }, ProductListBuilder_build_closure: function ProductListBuilder_build_closure() { }, ProductListBuilder_build__closure: function ProductListBuilder_build__closure(t0) { this.viewModel = t0; }, ProductListVM: function ProductListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.productList = t1; _.productMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ProductListVM_fromStore__handleRefresh: function ProductListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ProductListVM_fromStore_closure: function ProductListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ProductListVM_fromStore_closure0: function ProductListVM_fromStore_closure0(t0) { this.store = t0; }, ProductListVM_fromStore_closure1: function ProductListVM_fromStore_closure1(t0) { this.store = t0; }, ProductPresenter_getDefaultTableFields(userCompany) { var company = userCompany.company, t1 = A._setArrayType(["product_key", "description"], type$.JSArray_legacy_String); if (company.enableProductCost) t1.push("cost"); t1.push("price"); if (company.enableProductQuantity) t1.push("quantity"); return t1; }, ProductPresenter: function ProductPresenter() { this.context = this.entity = null; }, ProductScreen: function ProductScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ProductScreen_build_closure10: function ProductScreen_build_closure10(t0) { this.store = t0; }, ProductScreen_build_closure7: function ProductScreen_build_closure7(t0) { this.store = t0; }, ProductScreen_build_closure8: function ProductScreen_build_closure8(t0) { this.store = t0; }, ProductScreen_build_closure9: function ProductScreen_build_closure9(t0) { this.store = t0; }, ProductScreen_build_closure4: function ProductScreen_build_closure4(t0) { this.store = t0; }, ProductScreen_build_closure0: function ProductScreen_build_closure0(t0) { this.store = t0; }, ProductScreen_build_closure1: function ProductScreen_build_closure1(t0) { this.store = t0; }, ProductScreen_build_closure2: function ProductScreen_build_closure2(t0) { this.store = t0; }, ProductScreen_build_closure3: function ProductScreen_build_closure3(t0) { this.store = t0; }, ProductScreen_build_closure5: function ProductScreen_build_closure5(t0) { this.store = t0; }, ProductScreen_build_closure: function ProductScreen_build_closure(t0) { this.store = t0; }, ProductScreen_build_closure6: function ProductScreen_build_closure6(t0) { this.context = t0; }, ProductScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].productState.toString; t4 = $.$get$memoizedFilteredProductList(); t5 = state.getUISelection$1(B.EntityType_product); t6 = t1[t3]; t7 = t6.productState; t8 = t7.map; t7 = t7.list; t2 = t2.productUIState.listUIState; t6 = t4.call$5(t5, t8, t7, t2, t6.userState.map); t1[t3].toString; t2.toString; return new A.ProductScreenVM(t6); }, ProductScreenBuilder: function ProductScreenBuilder(t0) { this.key = t0; }, ProductScreenBuilder_build_closure: function ProductScreenBuilder_build_closure() { }, ProductScreenVM: function ProductScreenVM(t0) { this.productList = t0; }, ProductView: function ProductView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ProductViewState: function _ProductViewState(t0, t1, t2) { var _ = this; _._product_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ProductViewState_build_closure: function _ProductViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.product = t2; }, _ProductViewState_build__closure: function _ProductViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProductViewState_build__closure0: function _ProductViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, __ProductViewState_State_SingleTickerProviderStateMixin: function __ProductViewState_State_SingleTickerProviderStateMixin() { }, ProductViewDocuments: function ProductViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ProductViewDocuments_build_closure: function ProductViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ProductViewDocuments_build_closure0: function ProductViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ProductOverview: function ProductOverview(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductOverviewState: function _ProductOverviewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, ProductViewVM_ProductViewVM$fromStore(store) { var t4, product, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].productState.map; t2 = t2.productUIState.selectedId; product = t4._map$_map.$index(0, t2); if (product == null) product = A.ProductEntity_ProductEntity(t2, null); product.get$isNew(); return new A.ProductViewVM(state, product, t1[t3].userCompany.company, new A.ProductViewVM_ProductViewVM$fromStore_closure(new A.ProductViewVM_ProductViewVM$fromStore__handleRefresh(store, product)), new A.ProductViewVM_ProductViewVM$fromStore_closure0(store, product), new A.ProductViewVM_ProductViewVM$fromStore_closure1(store, product)); }, ProductViewScreen: function ProductViewScreen(t0) { this.key = t0; }, ProductViewScreen_build_closure0: function ProductViewScreen_build_closure0() { }, ProductViewScreen_build_closure: function ProductViewScreen_build_closure(t0) { this.$this = t0; }, ProductViewVM: function ProductViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.product = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ProductViewVM_ProductViewVM$fromStore__handleRefresh: function ProductViewVM_ProductViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore_closure: function ProductViewVM_ProductViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ProductViewVM_ProductViewVM$fromStore_closure0: function ProductViewVM_ProductViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore__closure0: function ProductViewVM_ProductViewVM$fromStore__closure0(t0) { this.context = t0; }, ProductViewVM_ProductViewVM$fromStore__closure1: function ProductViewVM_ProductViewVM$fromStore__closure1(t0) { this.context = t0; }, ProductViewVM_ProductViewVM$fromStore___closure: function ProductViewVM_ProductViewVM$fromStore___closure(t0) { this.error = t0; }, ProductViewVM_ProductViewVM$fromStore_closure1: function ProductViewVM_ProductViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore__closure: function ProductViewVM_ProductViewVM$fromStore__closure(t0, t1) { this.store = t0; this.product = t1; }, ProjectEdit: function ProjectEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProjectEditState: function _ProjectEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._project_edit$_debouncer = t0; _._project_edit$_autoValidate = false; _._project_edit$_numberController = t1; _._project_edit$_nameController = t2; _._dueDateController = t3; _._hoursController = t4; _._project_edit$_taskRateController = t5; _._project_edit$_privateNotesController = t6; _._project_edit$_publicNotesController = t7; _._project_edit$_custom1Controller = t8; _._project_edit$_custom2Controller = t9; _._project_edit$_custom3Controller = t10; _._project_edit$_custom4Controller = t11; _._project_edit$_controllers = t12; _._widget = null; _._debugLifecycleState = t13; _._framework$_element = null; }, _ProjectEditState_didChangeDependencies_closure: function _ProjectEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ProjectEditState_didChangeDependencies_closure0: function _ProjectEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ProjectEditState_dispose_closure: function _ProjectEditState_dispose_closure(t0) { this.$this = t0; }, _ProjectEditState__onChanged_closure: function _ProjectEditState__onChanged_closure(t0) { this.$this = t0; }, _ProjectEditState__onChanged_closure0: function _ProjectEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.project = t1; }, _ProjectEditState_build_closure0: function _ProjectEditState_build_closure0(t0) { this.viewModel = t0; }, _ProjectEditState_build_closure1: function _ProjectEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ProjectEditState_build__closure: function _ProjectEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ProjectEditState_build_closure: function _ProjectEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.project = t1; _.localization = t2; _.viewModel = t3; _.state = t4; }, _ProjectEditState_build__closure0: function _ProjectEditState_build__closure0(t0) { this.localization = t0; }, _ProjectEditState_build__closure3: function _ProjectEditState_build__closure3(t0) { this.localization = t0; }, _ProjectEditState_build__closure2: function _ProjectEditState_build__closure2(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure1: function _ProjectEditState_build___closure1(t0) { this.client = t0; }, _ProjectEditState_build__closure1: function _ProjectEditState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectEditState_build__closure5: function _ProjectEditState_build__closure5(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure: function _ProjectEditState_build___closure(t0) { this.userId = t0; }, _ProjectEditState_build__closure4: function _ProjectEditState_build__closure4(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure0: function _ProjectEditState_build___closure0(t0) { this.date = t0; }, ProjectEditVM_ProjectEditVM$fromStore(store) { var t3, project = A._lateReadCheck(store.__Store__state, "_state").uiState.projectUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2]; t1 = t2.userCompany.company; t2 = t2.projectState.map; t3 = project.id; t2._map$_map.$index(0, t3); return new A.ProjectEditVM(project, t1, new A.ProjectEditVM_ProjectEditVM$fromStore_closure(store), new A.ProjectEditVM_ProjectEditVM$fromStore_closure0(store, state), new A.ProjectEditVM_ProjectEditVM$fromStore_closure1(state, store), state, new A.ProjectEditVM_ProjectEditVM$fromStore_closure2(store)); }, ProjectEditScreen: function ProjectEditScreen(t0) { this.key = t0; }, ProjectEditScreen_build_closure0: function ProjectEditScreen_build_closure0() { }, ProjectEditScreen_build_closure: function ProjectEditScreen_build_closure() { }, ProjectEditVM: function ProjectEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.project = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; _.onAddClientPressed = t6; }, ProjectEditVM_ProjectEditVM$fromStore_closure: function ProjectEditVM_ProjectEditVM$fromStore_closure(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore_closure1: function ProjectEditVM_ProjectEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, ProjectEditVM_ProjectEditVM$fromStore_closure2: function ProjectEditVM_ProjectEditVM$fromStore_closure2(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore__closure: function ProjectEditVM_ProjectEditVM$fromStore__closure(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore__closure0: function ProjectEditVM_ProjectEditVM$fromStore__closure0(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore_closure0: function ProjectEditVM_ProjectEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ProjectEditVM_ProjectEditVM$fromStore__closure1: function ProjectEditVM_ProjectEditVM$fromStore__closure1(t0, t1) { this.store = t0; this.state = t1; }, ProjectEditVM_ProjectEditVM$fromStore___closure: function ProjectEditVM_ProjectEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.project = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ProjectEditVM_ProjectEditVM$fromStore___closure0: function ProjectEditVM_ProjectEditVM$fromStore___closure0() { }, ProjectEditVM_ProjectEditVM$fromStore____closure: function ProjectEditVM_ProjectEditVM$fromStore____closure(t0) { this.error = t0; }, ProjectListItem: function ProjectListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.project = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ProjectListItem_build_closure: function ProjectListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.client = t4; _.textStyle = t5; _.subtitle = t6; _.filterMatch = t7; _.textColor = t8; }, ProjectListItem_build__closure2: function ProjectListItem_build__closure2(t0) { this.$this = t0; }, ProjectListItem_build__closure1: function ProjectListItem_build__closure1(t0) { this.$this = t0; }, ProjectListItem_build__closure: function ProjectListItem_build__closure(t0) { this.$this = t0; }, ProjectListItem_build__closure0: function ProjectListItem_build__closure0(t0) { this.$this = t0; }, ProjectListItem_build__closure5: function ProjectListItem_build__closure5(t0) { this.$this = t0; }, ProjectListItem_build__closure4: function ProjectListItem_build__closure4(t0) { this.$this = t0; }, ProjectListItem_build__closure3: function ProjectListItem_build__closure3(t0) { this.$this = t0; }, ProjectListVM_fromStore(store) { var t3, t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.projectUIState; t2.toString; t3 = $.$get$memoizedFilteredProjectList(); t4 = state.getUISelection$1(B.EntityType_project); t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t5 = t5._list; t6 = t5[t1]; t7 = t6.projectState; t2 = t2.listUIState; t6 = t3.call$6(t4, t7.map, t7.list, t2, t6.clientState.map, t6.userState.map); t7 = t5[t1]; t4 = t7.projectState.map; t7.clientState.toString; t2 = t2.filter; t7 = t7.userCompany.settings; t3 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_project); if (t3 == null) { t5[t1].toString; t1 = A._setArrayType(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], type$.JSArray_legacy_String); } else t1 = t3; return new A.ProjectListVM(state, t6, t4, t2, new A.ProjectListVM_fromStore_closure(new A.ProjectListVM_fromStore__handleRefresh(store)), t1, new A.ProjectListVM_fromStore_closure0(store), new A.ProjectListVM_fromStore_closure1(store)); }, ProjectListBuilder: function ProjectListBuilder(t0) { this.key = t0; }, ProjectListBuilder_build_closure: function ProjectListBuilder_build_closure() { }, ProjectListBuilder_build__closure: function ProjectListBuilder_build__closure(t0) { this.viewModel = t0; }, ProjectListVM: function ProjectListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.projectList = t1; _.projectMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ProjectListVM_fromStore__handleRefresh: function ProjectListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ProjectListVM_fromStore_closure: function ProjectListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ProjectListVM_fromStore_closure0: function ProjectListVM_fromStore_closure0(t0) { this.store = t0; }, ProjectListVM_fromStore_closure1: function ProjectListVM_fromStore_closure1(t0) { this.store = t0; }, ProjectPresenter: function ProjectPresenter() { this.context = this.entity = null; }, ProjectScreen: function ProjectScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ProjectScreen_build_closure10: function ProjectScreen_build_closure10(t0) { this.store = t0; }, ProjectScreen_build_closure7: function ProjectScreen_build_closure7(t0) { this.store = t0; }, ProjectScreen_build_closure8: function ProjectScreen_build_closure8(t0) { this.store = t0; }, ProjectScreen_build_closure9: function ProjectScreen_build_closure9(t0) { this.store = t0; }, ProjectScreen_build_closure4: function ProjectScreen_build_closure4(t0) { this.store = t0; }, ProjectScreen_build_closure0: function ProjectScreen_build_closure0(t0) { this.store = t0; }, ProjectScreen_build_closure1: function ProjectScreen_build_closure1(t0) { this.store = t0; }, ProjectScreen_build_closure2: function ProjectScreen_build_closure2(t0) { this.store = t0; }, ProjectScreen_build_closure3: function ProjectScreen_build_closure3(t0) { this.store = t0; }, ProjectScreen_build_closure5: function ProjectScreen_build_closure5(t0) { this.store = t0; }, ProjectScreen_build_closure: function ProjectScreen_build_closure(t0) { this.store = t0; }, ProjectScreen_build_closure6: function ProjectScreen_build_closure6(t0) { this.context = t0; }, ProjectScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].projectState.toString; t4 = $.$get$memoizedFilteredProjectList(); t5 = state.getUISelection$1(B.EntityType_project); t6 = t1[t3]; t7 = t6.projectState; t8 = t7.map; t7 = t7.list; t2 = t2.projectUIState.listUIState; t6 = t4.call$6(t5, t8, t7, t2, t6.clientState.map, t6.userState.map); t1[t3].toString; t2.toString; return new A.ProjectScreenVM(t6); }, ProjectScreenBuilder: function ProjectScreenBuilder(t0) { this.key = t0; }, ProjectScreenBuilder_build_closure: function ProjectScreenBuilder_build_closure() { }, ProjectScreenVM: function ProjectScreenVM(t0) { this.projectList = t0; }, ProjectView: function ProjectView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ProjectViewState: function _ProjectViewState(t0, t1, t2) { var _ = this; _._project_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ProjectViewState_build_closure0: function _ProjectViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.project = t2; }, _ProjectViewState_build__closure: function _ProjectViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectViewState_build__closure0: function _ProjectViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectViewState_build_closure: function _ProjectViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, __ProjectViewState_State_SingleTickerProviderStateMixin: function __ProjectViewState_State_SingleTickerProviderStateMixin() { }, ProjectViewDocuments: function ProjectViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ProjectViewDocuments_build_closure: function ProjectViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ProjectViewDocuments_build_closure0: function ProjectViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ProjectOverview: function ProjectOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _ProjectOverviewState: function _ProjectOverviewState(t0) { var _ = this; _._widget = _._project_view_overview$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ProjectOverviewState_initState_closure: function _ProjectOverviewState_initState_closure(t0) { this.$this = t0; }, _ProjectOverviewState_initState__closure: function _ProjectOverviewState_initState__closure() { }, _ProjectOverviewState_build__buildView: function _ProjectOverviewState_build__buildView(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.project = t1; _.localization = t2; _.state = t3; _.client = t4; _.company = t5; _.fields = t6; }, _ProjectOverviewState_build_closure: function _ProjectOverviewState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ProjectViewVM_ProjectViewVM$fromStore(store) { var t4, project, client, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].projectState.map; t2 = t2.projectUIState.selectedId; project = t4._map$_map.$index(0, t2); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t2, _null, _null); t2 = project.clientId; client = t1[t3].clientState.map._map$_map.$index(0, t2); if (client == null) client = A.ClientEntity_ClientEntity(_null, t2, _null, _null); t1 = t1[t3].userCompany.company; project.get$isNew(); return new A.ProjectViewVM(state, project, client, t1, new A.ProjectViewVM_ProjectViewVM$fromStore_closure(state, project), new A.ProjectViewVM_ProjectViewVM$fromStore_closure0(new A.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh(store, project)), new A.ProjectViewVM_ProjectViewVM$fromStore_closure1(store, project), new A.ProjectViewVM_ProjectViewVM$fromStore_closure2(store, project)); }, ProjectViewScreen: function ProjectViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, ProjectViewScreen_build_closure0: function ProjectViewScreen_build_closure0() { }, ProjectViewScreen_build_closure: function ProjectViewScreen_build_closure(t0) { this.$this = t0; }, ProjectViewVM: function ProjectViewVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.project = t1; _.client = t2; _.company = t3; _.onAddTaskPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; }, ProjectViewVM_ProjectViewVM$fromStore__handleRefresh: function ProjectViewVM_ProjectViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore_closure0: function ProjectViewVM_ProjectViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure: function ProjectViewVM_ProjectViewVM$fromStore_closure(t0, t1) { this.state = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure2: function ProjectViewVM_ProjectViewVM$fromStore__closure2(t0) { this.project = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure1: function ProjectViewVM_ProjectViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure0: function ProjectViewVM_ProjectViewVM$fromStore__closure0(t0) { this.context = t0; }, ProjectViewVM_ProjectViewVM$fromStore__closure1: function ProjectViewVM_ProjectViewVM$fromStore__closure1(t0) { this.context = t0; }, ProjectViewVM_ProjectViewVM$fromStore___closure: function ProjectViewVM_ProjectViewVM$fromStore___closure(t0) { this.error = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure2: function ProjectViewVM_ProjectViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure: function ProjectViewVM_ProjectViewVM$fromStore__closure(t0, t1) { this.store = t0; this.project = t1; }, PurchaseOrderEdit: function PurchaseOrderEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _PurchaseOrderEditState: function _PurchaseOrderEditState(t0, t1, t2) { var _ = this; _._purchase_order_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PurchaseOrderEditState_build_closure1: function _PurchaseOrderEditState_build_closure1(t0) { this.viewModel = t0; }, _PurchaseOrderEditState_build_closure2: function _PurchaseOrderEditState_build_closure2(t0) { this.$this = t0; }, _PurchaseOrderEditState_build_closure0: function _PurchaseOrderEditState_build_closure0(t0) { this.$this = t0; }, _PurchaseOrderEditState_build_closure: function _PurchaseOrderEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _PurchaseOrderEditState_build__closure: function _PurchaseOrderEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _PurchaseOrderEditState_build___closure0: function _PurchaseOrderEditState_build___closure0() { }, _PurchaseOrderEditState_build___closure1: function _PurchaseOrderEditState_build___closure1(t0) { this.viewModel = t0; }, _PurchaseOrderEditState_build___closure: function _PurchaseOrderEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __PurchaseOrderEditState_State_SingleTickerProviderStateMixin: function __PurchaseOrderEditState_State_SingleTickerProviderStateMixin() { }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore(store) { var company, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, purchaseOrder = t1.purchaseOrderUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; company = t1.userCompany.company; t1.clientState.toString; return new A.PurchaseOrderEditDetailsVM(state, company, purchaseOrder, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure(store), null, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0(store, state), null, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1(state, store)); }, PurchaseOrderEditDetailsScreen: function PurchaseOrderEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PurchaseOrderEditDetailsScreen_build_closure0: function PurchaseOrderEditDetailsScreen_build_closure0() { }, PurchaseOrderEditDetailsScreen_build_closure: function PurchaseOrderEditDetailsScreen_build_closure(t0) { this.$this = t0; }, PurchaseOrderEditDetailsVM: function PurchaseOrderEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onVendorChanged = t5; _.onAddClientPressed = t6; _.onAddVendorPressed = t7; }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure: function PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0: function PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1: function PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure: function PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0: function PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore(store) { var _s6_ = "_state", t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = A._lateReadCheck(store.__Store__state, _s6_), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new A.PurchaseOrderEditItemsVM(t1, t3._list[t2].userCompany.company, A._lateReadCheck(store.__Store__state, _s6_).uiState.purchaseOrderUIState.editing, A._lateReadCheck(store.__Store__state, _s6_).uiState.purchaseOrderUIState.editingItemIndex, new A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure(store), new A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0(store), new A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1(store), new A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2(store)); }, PurchaseOrderEditItemsScreen: function PurchaseOrderEditItemsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PurchaseOrderEditItemsScreen_build_closure0: function PurchaseOrderEditItemsScreen_build_closure0() { }, PurchaseOrderEditItemsScreen_build_closure: function PurchaseOrderEditItemsScreen_build_closure(t0) { this.$this = t0; }, PurchaseOrderEditItemsVM: function PurchaseOrderEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure: function PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure(t0) { this.store = t0; }, PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0: function PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1: function PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1(t0) { this.store = t0; }, PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2: function PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, purchaseOrder = t1.purchaseOrderUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.PurchaseOrderEditNotesVM(state, t2._list[t1].userCompany.company, purchaseOrder, new A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure(store)); }, PurchaseOrderEditNotesScreen: function PurchaseOrderEditNotesScreen(t0) { this.key = t0; }, PurchaseOrderEditNotesScreen_build_closure0: function PurchaseOrderEditNotesScreen_build_closure0() { }, PurchaseOrderEditNotesScreen_build_closure: function PurchaseOrderEditNotesScreen_build_closure() { }, PurchaseOrderEditNotesVM: function PurchaseOrderEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure: function PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure(t0) { this.store = t0; }, PurchaseOrderEditPDFScreen: function PurchaseOrderEditPDFScreen(t0) { this.key = t0; }, PurchaseOrderEditPDFScreen_build_closure0: function PurchaseOrderEditPDFScreen_build_closure0() { }, PurchaseOrderEditPDFScreen_build_closure: function PurchaseOrderEditPDFScreen_build_closure() { }, PurchaseOrderEditPDFVM: function PurchaseOrderEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.purchaseOrderUIState, purchaseOrder = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; t2 = t2.editingItemIndex; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].purchaseOrderState.map; t4 = purchaseOrder.id; t3._map$_map.$index(0, t4); return new A.PurchaseOrderEditVM(state, t1, purchaseOrder, t2, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure(store, state), new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0(store, purchaseOrder), new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1(state, store)); }, PurchaseOrderEditScreen: function PurchaseOrderEditScreen(t0) { this.key = t0; }, PurchaseOrderEditScreen_build_closure0: function PurchaseOrderEditScreen_build_closure0() { }, PurchaseOrderEditScreen_build_closure: function PurchaseOrderEditScreen_build_closure() { }, PurchaseOrderEditVM: function PurchaseOrderEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure(t0) { this.localization = t0; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.purchaseOrder = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1() { }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure(t0) { this.error = t0; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.purchaseOrder = t1; }, PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1: function PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore(store, purchaseOrder) { var t3, t4, t5, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2]; t4 = t3.userCompany.company; t3 = t3.clientState.map; t5 = purchaseOrder.clientId; t5 = t3._map$_map.$index(0, t5); t2 = t1[t2].vendorState.map; t1 = purchaseOrder.vendorId; return new A.EmailPurchaseOrderVM(state, t4, purchaseOrder, t5, t2._map$_map.$index(0, t1), new A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure(purchaseOrder, store)); }, PurchaseOrderEmailScreen: function PurchaseOrderEmailScreen(t0) { this.key = t0; }, PurchaseOrderEmailScreen_build_closure0: function PurchaseOrderEmailScreen_build_closure0() { }, PurchaseOrderEmailScreen_build_closure: function PurchaseOrderEmailScreen_build_closure() { }, EmailPurchaseOrderVM: function EmailPurchaseOrderVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.vendor = t4; _.onSendPressed = t5; }, EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure: function EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure(t0, t1) { this.purchaseOrder = t0; this.store = t1; }, EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure: function EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure(t0) { this.purchaseOrder = t0; }, PurchaseOrderListItem: function PurchaseOrderListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.purchaseOrder = t1; _.client = t2; _.filter = t3; _.isChecked = t4; _.key = t5; }, PurchaseOrderListItem_build_closure: function PurchaseOrderListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.state = t4; _.localization = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, PurchaseOrderListItem_build__closure2: function PurchaseOrderListItem_build__closure2(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure1: function PurchaseOrderListItem_build__closure1(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure: function PurchaseOrderListItem_build__closure(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure0: function PurchaseOrderListItem_build__closure0(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure5: function PurchaseOrderListItem_build__closure5(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure4: function PurchaseOrderListItem_build__closure4(t0) { this.$this = t0; }, PurchaseOrderListItem_build__closure3: function PurchaseOrderListItem_build__closure3(t0) { this.$this = t0; }, PurchaseOrderListVM_fromStore(store) { var t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredPurchaseOrderList(), t2 = state.getUISelection$1(B.EntityType_purchaseOrder), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.purchaseOrderState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t4 = t4.purchaseOrderUIState.listUIState; t6 = t1.call$7(t2, t8, t7, t9, t10, t4, t6.userState.map); t10 = t3[t5]; t9 = t10.purchaseOrderState.map; t7 = t10.clientState.map; t4 = t4.filter; t10 = t10.userCompany.settings; t1 = t10 == null ? null : t10.getTableColumns$1(B.EntityType_purchaseOrder); if (t1 == null) { t3[t5].toString; t1 = A._setArrayType(["status", "number", "vendor", "expense", "amount", "date", "due_date"], type$.JSArray_legacy_String); } return new A.PurchaseOrderListVM(state, t6, t9, t7, t4, new A.PurchaseOrderListVM_fromStore_closure(new A.PurchaseOrderListVM_fromStore__handleRefresh(store)), t1, new A.PurchaseOrderListVM_fromStore_closure0(store), new A.PurchaseOrderListVM_fromStore_closure1(store)); }, PurchaseOrderListBuilder: function PurchaseOrderListBuilder(t0) { this.key = t0; }, PurchaseOrderListBuilder_build_closure: function PurchaseOrderListBuilder_build_closure() { }, PurchaseOrderListBuilder_build__closure: function PurchaseOrderListBuilder_build__closure(t0) { this.viewModel = t0; }, PurchaseOrderListVM: function PurchaseOrderListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, PurchaseOrderListVM_fromStore__handleRefresh: function PurchaseOrderListVM_fromStore__handleRefresh(t0) { this.store = t0; }, PurchaseOrderListVM_fromStore_closure: function PurchaseOrderListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, PurchaseOrderListVM_fromStore_closure0: function PurchaseOrderListVM_fromStore_closure0(t0) { this.store = t0; }, PurchaseOrderListVM_fromStore_closure1: function PurchaseOrderListVM_fromStore_closure1(t0) { this.store = t0; }, PurchaseOrderPdfScreen: function PurchaseOrderPdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, PurchaseOrderPdfScreen_build_closure0: function PurchaseOrderPdfScreen_build_closure0() { }, PurchaseOrderPdfScreen_build_closure: function PurchaseOrderPdfScreen_build_closure(t0) { this.$this = t0; }, PurchaseOrderPdfVM: function PurchaseOrderPdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, PurchaseOrderPresenter: function PurchaseOrderPresenter() { this.context = this.entity = null; }, PurchaseOrderPresenter_getField_closure: function PurchaseOrderPresenter_getField_closure(t0) { this.contact = t0; }, PurchaseOrderScreen: function PurchaseOrderScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PurchaseOrderScreen_build_closure: function PurchaseOrderScreen_build_closure(t0) { this.localization = t0; }, PurchaseOrderScreen_build_closure0: function PurchaseOrderScreen_build_closure0(t0) { this.localization = t0; }, PurchaseOrderScreen_build_closure1: function PurchaseOrderScreen_build_closure1(t0) { this.localization = t0; }, PurchaseOrderScreen_build_closure2: function PurchaseOrderScreen_build_closure2(t0) { this.localization = t0; }, PurchaseOrderScreen_build_closure16: function PurchaseOrderScreen_build_closure16(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure12: function PurchaseOrderScreen_build_closure12(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure14: function PurchaseOrderScreen_build_closure14(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure13: function PurchaseOrderScreen_build_closure13(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure15: function PurchaseOrderScreen_build_closure15(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure8: function PurchaseOrderScreen_build_closure8(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure9: function PurchaseOrderScreen_build_closure9(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure10: function PurchaseOrderScreen_build_closure10(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure3: function PurchaseOrderScreen_build_closure3(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure4: function PurchaseOrderScreen_build_closure4(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure5: function PurchaseOrderScreen_build_closure5(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure6: function PurchaseOrderScreen_build_closure6(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure7: function PurchaseOrderScreen_build_closure7(t0) { this.store = t0; }, PurchaseOrderScreen_build_closure11: function PurchaseOrderScreen_build_closure11(t0) { this.context = t0; }, PurchaseOrderScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].purchaseOrderState.toString; t4 = $.$get$memoizedFilteredPurchaseOrderList(); t5 = state.getUISelection$1(B.EntityType_purchaseOrder); t6 = t1[t3]; t7 = t6.purchaseOrderState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t2 = t2.purchaseOrderUIState.listUIState; t6 = t4.call$7(t5, t8, t7, t9, t10, t2, t6.userState.map); t1[t3].toString; t2.toString; return new A.PurchaseOrderScreenVM(t6); }, PurchaseOrderScreenBuilder: function PurchaseOrderScreenBuilder(t0) { this.key = t0; }, PurchaseOrderScreenBuilder_build_closure: function PurchaseOrderScreenBuilder_build_closure() { }, PurchaseOrderScreenVM: function PurchaseOrderScreenVM(t0) { this.purchaseOrderList = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore(store) { var t4, purchaseOrder, t5, client, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].purchaseOrderState.map; t2 = t2.purchaseOrderUIState.selectedId; purchaseOrder = t4._map$_map.$index(0, t2); if (purchaseOrder == null) purchaseOrder = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); t2 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t5 = purchaseOrder.clientId; client = t4._list[t2].clientState.map._map$_map.$index(0, t5); if (client == null) client = A.ClientEntity_ClientEntity(_null, t5, _null, _null); t1 = t1[t3].userCompany.company; purchaseOrder.get$isNew(); return new A.PurchaseOrderViewVM(state, t1, purchaseOrder, client, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure(purchaseOrder), new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0(new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh(store, purchaseOrder)), new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1(store, purchaseOrder), new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2(store, purchaseOrder), _null, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure3(store)); }, PurchaseOrderViewScreen: function PurchaseOrderViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, PurchaseOrderViewScreen_build_closure0: function PurchaseOrderViewScreen_build_closure0() { }, PurchaseOrderViewScreen_build_closure: function PurchaseOrderViewScreen_build_closure(t0) { this.$this = t0; }, PurchaseOrderViewVM: function PurchaseOrderViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.purchaseOrder = t1; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure(t0) { this.purchaseOrder = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.purchaseOrder = t1; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0(t0) { this.context = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure1: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure1(t0) { this.context = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure(t0) { this.error = t0; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.purchaseOrder = t1; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure(t0, t1) { this.store = t0; this.purchaseOrder = t1; }, PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure3: function PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure3(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore(store) { var company, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, quote = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; company = t1.userCompany.company; t1.clientState.toString; return new A.QuoteEditDetailsVM(state, company, quote, new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure(store), new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0(store, state), null, new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1(store), null); }, QuoteEditDetailsScreen: function QuoteEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteEditDetailsScreen_build_closure0: function QuoteEditDetailsScreen_build_closure0() { }, QuoteEditDetailsScreen_build_closure: function QuoteEditDetailsScreen_build_closure(t0) { this.$this = t0; }, QuoteEditDetailsVM: function QuoteEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onVendorChanged = t5; _.onAddClientPressed = t6; _.onAddVendorPressed = t7; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore(store) { var _s6_ = "_state", t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = A._lateReadCheck(store.__Store__state, _s6_), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new A.QuoteEditItemsVM(t1, t3._list[t2].userCompany.company, A._lateReadCheck(store.__Store__state, _s6_).uiState.quoteUIState.editing, A._lateReadCheck(store.__Store__state, _s6_).uiState.quoteUIState.editingItemIndex, new A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure(store), new A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0(store), new A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1(store), new A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2(store)); }, QuoteEditItemsScreen: function QuoteEditItemsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteEditItemsScreen_build_closure0: function QuoteEditItemsScreen_build_closure0() { }, QuoteEditItemsScreen_build_closure: function QuoteEditItemsScreen_build_closure(t0) { this.$this = t0; }, QuoteEditItemsVM: function QuoteEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, QuoteEditNotesVM_QuoteEditNotesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, quote = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.QuoteEditNotesVM(state, t2._list[t1].userCompany.company, quote, new A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure(store)); }, QuoteEditNotesScreen: function QuoteEditNotesScreen(t0) { this.key = t0; }, QuoteEditNotesScreen_build_closure0: function QuoteEditNotesScreen_build_closure0() { }, QuoteEditNotesScreen_build_closure: function QuoteEditNotesScreen_build_closure() { }, QuoteEditNotesVM: function QuoteEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure: function QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure(t0) { this.store = t0; }, QuoteEditPDFScreen: function QuoteEditPDFScreen(t0) { this.key = t0; }, QuoteEditPDFScreen_build_closure0: function QuoteEditPDFScreen_build_closure0() { }, QuoteEditPDFScreen_build_closure: function QuoteEditPDFScreen_build_closure() { }, QuoteEditPDFVM: function QuoteEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, QuoteEditVM_QuoteEditVM$fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.quoteUIState, quote = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; t2 = t2.editingItemIndex; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].quoteState.map; t4 = quote.id; t3._map$_map.$index(0, t4); return new A.QuoteEditVM(state, t1, quote, t2, new A.QuoteEditVM_QuoteEditVM$fromStore_closure(store, state), new A.QuoteEditVM_QuoteEditVM$fromStore_closure0(store, quote), new A.QuoteEditVM_QuoteEditVM$fromStore_closure1(state, store)); }, QuoteEditScreen: function QuoteEditScreen(t0) { this.key = t0; }, QuoteEditScreen_build_closure0: function QuoteEditScreen_build_closure0() { }, QuoteEditScreen_build_closure: function QuoteEditScreen_build_closure() { }, QuoteEditVM: function QuoteEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, QuoteEditVM_QuoteEditVM$fromStore_closure: function QuoteEditVM_QuoteEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, QuoteEditVM_QuoteEditVM$fromStore__closure: function QuoteEditVM_QuoteEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, QuoteEditVM_QuoteEditVM$fromStore___closure: function QuoteEditVM_QuoteEditVM$fromStore___closure(t0) { this.localization = t0; }, QuoteEditVM_QuoteEditVM$fromStore___closure0: function QuoteEditVM_QuoteEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.quote = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, QuoteEditVM_QuoteEditVM$fromStore___closure1: function QuoteEditVM_QuoteEditVM$fromStore___closure1() { }, QuoteEditVM_QuoteEditVM$fromStore____closure: function QuoteEditVM_QuoteEditVM$fromStore____closure(t0) { this.error = t0; }, QuoteEditVM_QuoteEditVM$fromStore_closure0: function QuoteEditVM_QuoteEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.quote = t1; }, QuoteEditVM_QuoteEditVM$fromStore_closure1: function QuoteEditVM_QuoteEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, QuoteEdit: function QuoteEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _QuoteEditState: function _QuoteEditState(t0, t1, t2) { var _ = this; _._quote_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _QuoteEditState_build_closure1: function _QuoteEditState_build_closure1(t0) { this.viewModel = t0; }, _QuoteEditState_build_closure2: function _QuoteEditState_build_closure2(t0) { this.$this = t0; }, _QuoteEditState_build_closure0: function _QuoteEditState_build_closure0(t0) { this.$this = t0; }, _QuoteEditState_build_closure: function _QuoteEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _QuoteEditState_build__closure: function _QuoteEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _QuoteEditState_build___closure0: function _QuoteEditState_build___closure0() { }, _QuoteEditState_build___closure1: function _QuoteEditState_build___closure1(t0) { this.viewModel = t0; }, _QuoteEditState_build___closure: function _QuoteEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __QuoteEditState_State_SingleTickerProviderStateMixin: function __QuoteEditState_State_SingleTickerProviderStateMixin() { }, EmailQuoteVM_EmailQuoteVM$fromStore(store, quote) { var t3, t4, t5, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2]; t4 = t3.userCompany.company; t3 = t3.clientState.map; t5 = quote.clientId; t5 = t3._map$_map.$index(0, t5); t2 = t1[t2].vendorState.map; t1 = quote.vendorId; return new A.EmailQuoteVM(state, t4, quote, t5, t2._map$_map.$index(0, t1), new A.EmailQuoteVM_EmailQuoteVM$fromStore_closure(quote, store)); }, QuoteEmailScreen: function QuoteEmailScreen(t0) { this.key = t0; }, QuoteEmailScreen_build_closure1: function QuoteEmailScreen_build_closure1() { }, QuoteEmailScreen_build_closure0: function QuoteEmailScreen_build_closure0() { }, QuoteEmailScreen_build_closure: function QuoteEmailScreen_build_closure() { }, EmailQuoteVM: function EmailQuoteVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.vendor = t4; _.onSendPressed = t5; }, EmailQuoteVM_EmailQuoteVM$fromStore_closure: function EmailQuoteVM_EmailQuoteVM$fromStore_closure(t0, t1) { this.quote = t0; this.store = t1; }, EmailQuoteVM_EmailQuoteVM$fromStore__closure: function EmailQuoteVM_EmailQuoteVM$fromStore__closure(t0) { this.quote = t0; }, QuoteListItem: function QuoteListItem(t0, t1, t2, t3) { var _ = this; _.quote = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, QuoteListItem_build_closure: function QuoteListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; }, QuoteListItem_build__closure2: function QuoteListItem_build__closure2(t0) { this.$this = t0; }, QuoteListItem_build__closure1: function QuoteListItem_build__closure1(t0) { this.$this = t0; }, QuoteListItem_build__closure: function QuoteListItem_build__closure() { }, QuoteListItem_build__closure0: function QuoteListItem_build__closure0(t0) { this.$this = t0; }, QuoteListItem_build__closure5: function QuoteListItem_build__closure5(t0) { this.$this = t0; }, QuoteListItem_build__closure4: function QuoteListItem_build__closure4(t0) { this.$this = t0; }, QuoteListItem_build__closure3: function QuoteListItem_build__closure3() { }, QuoteListVM_fromStore(store) { var t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedFilteredQuoteList(), t2 = state.getUISelection$1(B.EntityType_quote), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.quoteState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t4 = t4.quoteUIState.listUIState; t6 = t1.call$7(t2, t8, t7, t9, t10, t4, t6.userState.map); t10 = t3[t5]; t9 = t10.quoteState.map; t7 = t10.clientState.map; t4 = t4.filter; t10 = t10.userCompany.settings; t1 = t10 == null ? null : t10.getTableColumns$1(B.EntityType_quote); if (t1 == null) { t3[t5].toString; t1 = A._setArrayType(["status", "number", "client", "amount", "date", "valid_until"], type$.JSArray_legacy_String); } return new A.QuoteListVM(state, t6, t9, t7, t4, new A.QuoteListVM_fromStore_closure(new A.QuoteListVM_fromStore__handleRefresh(store)), t1, new A.QuoteListVM_fromStore_closure0(store), new A.QuoteListVM_fromStore_closure1(store)); }, QuoteListBuilder: function QuoteListBuilder(t0) { this.key = t0; }, QuoteListBuilder_build_closure: function QuoteListBuilder_build_closure() { }, QuoteListBuilder_build__closure: function QuoteListBuilder_build__closure(t0) { this.viewModel = t0; }, QuoteListVM: function QuoteListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, QuoteListVM_fromStore__handleRefresh: function QuoteListVM_fromStore__handleRefresh(t0) { this.store = t0; }, QuoteListVM_fromStore_closure: function QuoteListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, QuoteListVM_fromStore_closure0: function QuoteListVM_fromStore_closure0(t0) { this.store = t0; }, QuoteListVM_fromStore_closure1: function QuoteListVM_fromStore_closure1(t0) { this.store = t0; }, QuotePdfScreen: function QuotePdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, QuotePdfScreen_build_closure0: function QuotePdfScreen_build_closure0() { }, QuotePdfScreen_build_closure: function QuotePdfScreen_build_closure(t0) { this.$this = t0; }, QuotePdfVM: function QuotePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, QuotePresenter: function QuotePresenter() { this.context = this.entity = null; }, QuotePresenter_getField_closure: function QuotePresenter_getField_closure(t0) { this.contact = t0; }, QuoteScreen: function QuoteScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteScreen_build_closure: function QuoteScreen_build_closure(t0) { this.localization = t0; }, QuoteScreen_build_closure0: function QuoteScreen_build_closure0(t0) { this.localization = t0; }, QuoteScreen_build_closure1: function QuoteScreen_build_closure1(t0) { this.localization = t0; }, QuoteScreen_build_closure2: function QuoteScreen_build_closure2(t0) { this.localization = t0; }, QuoteScreen_build_closure3: function QuoteScreen_build_closure3(t0) { this.localization = t0; }, QuoteScreen_build_closure17: function QuoteScreen_build_closure17(t0) { this.store = t0; }, QuoteScreen_build_closure13: function QuoteScreen_build_closure13(t0) { this.store = t0; }, QuoteScreen_build_closure15: function QuoteScreen_build_closure15(t0) { this.store = t0; }, QuoteScreen_build_closure14: function QuoteScreen_build_closure14(t0) { this.store = t0; }, QuoteScreen_build_closure16: function QuoteScreen_build_closure16(t0) { this.store = t0; }, QuoteScreen_build_closure9: function QuoteScreen_build_closure9(t0) { this.store = t0; }, QuoteScreen_build_closure5: function QuoteScreen_build_closure5(t0) { this.store = t0; }, QuoteScreen_build_closure6: function QuoteScreen_build_closure6(t0) { this.store = t0; }, QuoteScreen_build_closure7: function QuoteScreen_build_closure7(t0) { this.store = t0; }, QuoteScreen_build_closure8: function QuoteScreen_build_closure8(t0) { this.store = t0; }, QuoteScreen_build_closure10: function QuoteScreen_build_closure10(t0) { this.store = t0; }, QuoteScreen_build_closure11: function QuoteScreen_build_closure11(t0) { this.store = t0; }, QuoteScreen_build_closure4: function QuoteScreen_build_closure4(t0) { this.store = t0; }, QuoteScreen_build_closure12: function QuoteScreen_build_closure12(t0) { this.context = t0; }, QuoteScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].quoteState.toString; t4 = $.$get$memoizedFilteredQuoteList(); t5 = state.getUISelection$1(B.EntityType_quote); t6 = t1[t3]; t7 = t6.quoteState; t8 = t7.map; t7 = t7.list; t9 = t6.clientState.map; t10 = t6.vendorState.map; t2 = t2.quoteUIState.listUIState; t6 = t4.call$7(t5, t8, t7, t9, t10, t2, t6.userState.map); t1[t3].toString; t2.toString; return new A.QuoteScreenVM(t6); }, QuoteScreenBuilder: function QuoteScreenBuilder(t0) { this.key = t0; }, QuoteScreenBuilder_build_closure: function QuoteScreenBuilder_build_closure() { }, QuoteScreenVM: function QuoteScreenVM(t0) { this.quoteList = t0; }, QuoteViewVM_QuoteViewVM$fromStore(store) { var t4, quote, t5, client, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].quoteState.map; t2 = t2.quoteUIState.selectedId; quote = t4._map$_map.$index(0, t2); if (quote == null) quote = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); t2 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t5 = quote.clientId; client = t4._list[t2].clientState.map._map$_map.$index(0, t5); if (client == null) client = A.ClientEntity_ClientEntity(_null, t5, _null, _null); t1 = t1[t3].userCompany.company; quote.get$isNew(); return new A.QuoteViewVM(state, t1, quote, client, new A.QuoteViewVM_QuoteViewVM$fromStore_closure(quote), new A.QuoteViewVM_QuoteViewVM$fromStore_closure0(new A.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh(store, quote)), new A.QuoteViewVM_QuoteViewVM$fromStore_closure1(store, quote), new A.QuoteViewVM_QuoteViewVM$fromStore_closure2(store, quote), _null, new A.QuoteViewVM_QuoteViewVM$fromStore_closure3(store)); }, QuoteViewScreen: function QuoteViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, QuoteViewScreen_build_closure0: function QuoteViewScreen_build_closure0() { }, QuoteViewScreen_build_closure: function QuoteViewScreen_build_closure(t0) { this.$this = t0; }, QuoteViewVM: function QuoteViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, QuoteViewVM_QuoteViewVM$fromStore__handleRefresh: function QuoteViewVM_QuoteViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore_closure: function QuoteViewVM_QuoteViewVM$fromStore_closure(t0) { this.quote = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure0: function QuoteViewVM_QuoteViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure1: function QuoteViewVM_QuoteViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore__closure0: function QuoteViewVM_QuoteViewVM$fromStore__closure0(t0) { this.context = t0; }, QuoteViewVM_QuoteViewVM$fromStore__closure1: function QuoteViewVM_QuoteViewVM$fromStore__closure1(t0) { this.context = t0; }, QuoteViewVM_QuoteViewVM$fromStore___closure: function QuoteViewVM_QuoteViewVM$fromStore___closure(t0) { this.error = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure2: function QuoteViewVM_QuoteViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore__closure: function QuoteViewVM_QuoteViewVM$fromStore__closure(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore_closure3: function QuoteViewVM_QuoteViewVM$fromStore_closure3(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, recurringExpense = t1.recurringExpenseUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1].recurringExpenseState.map; t2 = recurringExpense.id; t1._map$_map.$index(0, t2); return new A.RecurringExpenseEditVM(recurringExpense, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure(store), new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0(store, state), new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1(state, store), state, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2(store), new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3(store)); }, RecurringExpenseEditScreen: function RecurringExpenseEditScreen(t0) { this.key = t0; }, RecurringExpenseEditScreen_build_closure0: function RecurringExpenseEditScreen_build_closure0() { }, RecurringExpenseEditScreen_build_closure: function RecurringExpenseEditScreen_build_closure() { }, RecurringExpenseEditVM: function RecurringExpenseEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.expense = t0; _.onChanged = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.state = t4; _.onAddClientPressed = t5; _.onAddVendorPressed = t6; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.state = t2; _.action = t3; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.recurringExpense = t0; _.localization = t1; _.state = t2; _.store = t3; _.context = t4; _.action = t5; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0(t0) { this.context = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure(t0) { this.error = t0; }, RecurringExpenseListItem: function RecurringExpenseListItem(t0, t1, t2, t3) { var _ = this; _.expense = t0; _.filter = t1; _.isChecked = t2; _.key = t3; }, RecurringExpenseListItem_build_closure: function RecurringExpenseListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, RecurringExpenseListItem_build__closure2: function RecurringExpenseListItem_build__closure2(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure1: function RecurringExpenseListItem_build__closure1(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure: function RecurringExpenseListItem_build__closure(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure0: function RecurringExpenseListItem_build__closure0(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure5: function RecurringExpenseListItem_build__closure5(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure4: function RecurringExpenseListItem_build__closure4(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure3: function RecurringExpenseListItem_build__closure3(t0) { this.$this = t0; }, RecurringExpenseListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.recurringExpenseUIState; t2.toString; t4 = $.$get$memoizedFilteredRecurringExpenseList(); t5 = state.getUISelection$1(B.EntityType_recurringExpense); t6 = t1[t3]; t2 = t2.listUIState; t6 = t4.call$9(t5, t6.recurringExpenseState.map, t6.clientState.map, t6.vendorState.map, t6.userState.map, t2, t6.invoiceState.map, t6.expenseCategoryState.map, state.staticState); t5 = t1[t3]; t4 = t5.recurringExpenseState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_recurringExpense); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType(["status", "number", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], type$.JSArray_legacy_String); } else t1 = t5; return new A.RecurringExpenseListVM(state, t6, t4, t2, new A.RecurringExpenseListVM_fromStore_closure(new A.RecurringExpenseListVM_fromStore__handleRefresh(store)), t1, new A.RecurringExpenseListVM_fromStore_closure0(store), new A.RecurringExpenseListVM_fromStore_closure1(store)); }, RecurringExpenseListBuilder: function RecurringExpenseListBuilder(t0) { this.key = t0; }, RecurringExpenseListBuilder_build_closure: function RecurringExpenseListBuilder_build_closure() { }, RecurringExpenseListBuilder_build__closure: function RecurringExpenseListBuilder_build__closure(t0) { this.viewModel = t0; }, RecurringExpenseListVM: function RecurringExpenseListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.recurringExpenseList = t1; _.recurringExpenseMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, RecurringExpenseListVM_fromStore__handleRefresh: function RecurringExpenseListVM_fromStore__handleRefresh(t0) { this.store = t0; }, RecurringExpenseListVM_fromStore_closure: function RecurringExpenseListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringExpenseListVM_fromStore_closure0: function RecurringExpenseListVM_fromStore_closure0(t0) { this.store = t0; }, RecurringExpenseListVM_fromStore_closure1: function RecurringExpenseListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringExpensePresenter: function RecurringExpensePresenter() { this.context = this.entity = null; }, RecurringExpenseScreen: function RecurringExpenseScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringExpenseScreen_build_closure10: function RecurringExpenseScreen_build_closure10(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure7: function RecurringExpenseScreen_build_closure7(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure8: function RecurringExpenseScreen_build_closure8(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure9: function RecurringExpenseScreen_build_closure9(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure4: function RecurringExpenseScreen_build_closure4(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure5: function RecurringExpenseScreen_build_closure5(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure: function RecurringExpenseScreen_build_closure(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure0: function RecurringExpenseScreen_build_closure0(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure1: function RecurringExpenseScreen_build_closure1(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure2: function RecurringExpenseScreen_build_closure2(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure3: function RecurringExpenseScreen_build_closure3(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure6: function RecurringExpenseScreen_build_closure6(t0) { this.context = t0; }, RecurringExpenseScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].recurringExpenseState.toString; t4 = $.$get$memoizedFilteredRecurringExpenseList(); t5 = state.getUISelection$1(B.EntityType_recurringExpense); t6 = t1[t3]; t7 = t6.recurringExpenseState.map; t8 = t6.clientState.map; t9 = t6.vendorState.map; t10 = t6.userState.map; t2 = t2.recurringExpenseUIState.listUIState; t6 = t4.call$9(t5, t7, t8, t9, t10, t2, t6.invoiceState.map, t6.expenseCategoryState.map, state.staticState); t1[t3].toString; t2.toString; return new A.RecurringExpenseScreenVM(t6); }, RecurringExpenseScreenBuilder: function RecurringExpenseScreenBuilder(t0) { this.key = t0; }, RecurringExpenseScreenBuilder_build_closure: function RecurringExpenseScreenBuilder_build_closure() { }, RecurringExpenseScreenVM: function RecurringExpenseScreenVM(t0) { this.recurringExpenseList = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore(store) { var t4, recurringExpense, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].recurringExpenseState.map; t2 = t2.recurringExpenseUIState.selectedId; recurringExpense = t4._map$_map.$index(0, t2); if (recurringExpense == null) recurringExpense = A.ExpenseEntity_ExpenseEntity(_null, _null, t2, _null, _null, _null, _null); t1 = t1[t3].userCompany.company; recurringExpense.get$isNew(); return new A.RecurringExpenseViewVM(state, recurringExpense, t1, new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure(new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh(store, recurringExpense)), new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0(store, recurringExpense), new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1(store, recurringExpense)); }, RecurringExpenseViewScreen: function RecurringExpenseViewScreen(t0) { this.key = t0; }, RecurringExpenseViewScreen_build_closure0: function RecurringExpenseViewScreen_build_closure0() { }, RecurringExpenseViewScreen_build_closure: function RecurringExpenseViewScreen_build_closure(t0) { this.$this = t0; }, RecurringExpenseViewVM: function RecurringExpenseViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.expense = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0(t0) { this.context = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1() { }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure(t0) { this.error = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringInvoiceEdit: function RecurringInvoiceEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _RecurringInvoiceEditState: function _RecurringInvoiceEditState(t0, t1, t2) { var _ = this; _._recurring_invoice_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _RecurringInvoiceEditState_build_closure1: function _RecurringInvoiceEditState_build_closure1(t0) { this.viewModel = t0; }, _RecurringInvoiceEditState_build_closure2: function _RecurringInvoiceEditState_build_closure2(t0) { this.$this = t0; }, _RecurringInvoiceEditState_build_closure0: function _RecurringInvoiceEditState_build_closure0(t0) { this.$this = t0; }, _RecurringInvoiceEditState_build_closure: function _RecurringInvoiceEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _RecurringInvoiceEditState_build__closure: function _RecurringInvoiceEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _RecurringInvoiceEditState_build___closure0: function _RecurringInvoiceEditState_build___closure0() { }, _RecurringInvoiceEditState_build___closure1: function _RecurringInvoiceEditState_build___closure1(t0) { this.viewModel = t0; }, _RecurringInvoiceEditState_build___closure: function _RecurringInvoiceEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __RecurringInvoiceEditState_State_SingleTickerProviderStateMixin: function __RecurringInvoiceEditState_State_SingleTickerProviderStateMixin() { }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore(store) { var company, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t2._list[t1]; company = t1.userCompany.company; t1.clientState.toString; return new A.RecurringInvoiceEditDetailsVM(state, company, invoice, new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure(store), new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0(store, state), null, new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1(store), null); }, RecurringInvoiceEditDetailsScreen: function RecurringInvoiceEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringInvoiceEditDetailsScreen_build_closure0: function RecurringInvoiceEditDetailsScreen_build_closure0() { }, RecurringInvoiceEditDetailsScreen_build_closure: function RecurringInvoiceEditDetailsScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceEditDetailsVM: function RecurringInvoiceEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onVendorChanged = t5; _.onAddClientPressed = t6; _.onAddVendorPressed = t7; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore(store, isTasks) { var _s6_ = "_state", t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = A._lateReadCheck(store.__Store__state, _s6_), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new A.RecurringInvoiceEditItemsVM(t1, t3._list[t2].userCompany.company, A._lateReadCheck(store.__Store__state, _s6_).uiState.recurringInvoiceUIState.editing, A._lateReadCheck(store.__Store__state, _s6_).uiState.recurringInvoiceUIState.editingItemIndex, new A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure(store), new A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0(store), new A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1(store, isTasks), new A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2(store)); }, RecurringInvoiceEditItemsScreen: function RecurringInvoiceEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, RecurringInvoiceEditItemsScreen_build_closure0: function RecurringInvoiceEditItemsScreen_build_closure0(t0) { this.$this = t0; }, RecurringInvoiceEditItemsScreen_build_closure: function RecurringInvoiceEditItemsScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceEditItemsVM: function RecurringInvoiceEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, recurringInvoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.RecurringInvoiceEditNotesVM(state, t2._list[t1].userCompany.company, recurringInvoice, new A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure(store)); }, RecurringInvoiceEditNotesScreen: function RecurringInvoiceEditNotesScreen(t0) { this.key = t0; }, RecurringInvoiceEditNotesScreen_build_closure0: function RecurringInvoiceEditNotesScreen_build_closure0() { }, RecurringInvoiceEditNotesScreen_build_closure: function RecurringInvoiceEditNotesScreen_build_closure() { }, RecurringInvoiceEditNotesVM: function RecurringInvoiceEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure: function RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditPDFScreen: function RecurringInvoiceEditPDFScreen(t0) { this.key = t0; }, RecurringInvoiceEditPDFScreen_build_closure0: function RecurringInvoiceEditPDFScreen_build_closure0() { }, RecurringInvoiceEditPDFScreen_build_closure: function RecurringInvoiceEditPDFScreen_build_closure() { }, RecurringInvoiceEditPDFVM: function RecurringInvoiceEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore(store) { var t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.recurringInvoiceUIState, recurringInvoice = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; t2 = t2.editingItemIndex; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].recurringInvoiceState.map; t4 = recurringInvoice.id; t3._map$_map.$index(0, t4); return new A.RecurringInvoiceEditVM(state, t1, recurringInvoice, t2, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure(store, state), new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0(store, recurringInvoice), new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1(state, store)); }, RecurringInvoiceEditScreen: function RecurringInvoiceEditScreen(t0) { this.key = t0; }, RecurringInvoiceEditScreen_build_closure0: function RecurringInvoiceEditScreen_build_closure0() { }, RecurringInvoiceEditScreen_build_closure: function RecurringInvoiceEditScreen_build_closure() { }, RecurringInvoiceEditVM: function RecurringInvoiceEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure(t0) { this.localization = t0; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.recurringInvoice = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1() { }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure(t0) { this.error = t0; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.recurringInvoice = t1; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, RecurringInvoiceListItem: function RecurringInvoiceListItem(t0, t1, t2) { this.invoice = t0; this.filter = t1; this.key = t2; }, RecurringInvoiceListItem_build_closure: function RecurringInvoiceListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; _.statusLabel = t11; _.statusColor = t12; }, RecurringInvoiceListItem_build__closure2: function RecurringInvoiceListItem_build__closure2(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure1: function RecurringInvoiceListItem_build__closure1(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure: function RecurringInvoiceListItem_build__closure() { }, RecurringInvoiceListItem_build__closure0: function RecurringInvoiceListItem_build__closure0(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure5: function RecurringInvoiceListItem_build__closure5(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure4: function RecurringInvoiceListItem_build__closure4(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure3: function RecurringInvoiceListItem_build__closure3() { }, RecurringInvoiceListVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.recurringInvoiceUIState; t2.toString; t4 = $.$get$memoizedFilteredRecurringInvoiceList(); t5 = state.getUISelection$1(B.EntityType_recurringInvoice); t6 = t1[t3]; t7 = t6.recurringInvoiceState; t2 = t2.listUIState; t6 = t4.call$7(t5, t7.map, t6.clientState.map, t6.vendorState.map, t7.list, t2, t6.userState.map); t7 = t1[t3]; t5 = t7.recurringInvoiceState.map; t2 = t2.filter; t7 = t7.userCompany.settings; t4 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_recurringInvoice); if (t4 == null) { t1[t3].toString; t1 = A._setArrayType(["status", "number", "client", "amount", "remaining_cycles", "next_send_date", "frequency", "due_date_days", "auto_bill"], type$.JSArray_legacy_String); } else t1 = t4; return new A.RecurringInvoiceListVM(state, t6, t5, t2, new A.RecurringInvoiceListVM_fromStore_closure(new A.RecurringInvoiceListVM_fromStore__handleRefresh(store)), t1, new A.RecurringInvoiceListVM_fromStore_closure0(store), new A.RecurringInvoiceListVM_fromStore_closure1(store)); }, RecurringInvoiceListBuilder: function RecurringInvoiceListBuilder(t0) { this.key = t0; }, RecurringInvoiceListBuilder_build_closure: function RecurringInvoiceListBuilder_build_closure() { }, RecurringInvoiceListBuilder_build__closure: function RecurringInvoiceListBuilder_build__closure(t0) { this.viewModel = t0; }, RecurringInvoiceListVM: function RecurringInvoiceListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.recurringInvoiceList = t1; _.recurringInvoiceMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, RecurringInvoiceListVM_fromStore__handleRefresh: function RecurringInvoiceListVM_fromStore__handleRefresh(t0) { this.store = t0; }, RecurringInvoiceListVM_fromStore_closure: function RecurringInvoiceListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringInvoiceListVM_fromStore_closure0: function RecurringInvoiceListVM_fromStore_closure0(t0) { this.store = t0; }, RecurringInvoiceListVM_fromStore_closure1: function RecurringInvoiceListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringInvoicePdfScreen: function RecurringInvoicePdfScreen(t0) { this.key = t0; }, RecurringInvoicePdfScreen_build_closure0: function RecurringInvoicePdfScreen_build_closure0() { }, RecurringInvoicePdfScreen_build_closure: function RecurringInvoicePdfScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoicePdfVM: function RecurringInvoicePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, RecurringInvoicePresenter: function RecurringInvoicePresenter() { this.context = this.entity = null; }, RecurringInvoiceScreen: function RecurringInvoiceScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringInvoiceScreen_build_closure: function RecurringInvoiceScreen_build_closure(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure0: function RecurringInvoiceScreen_build_closure0(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure1: function RecurringInvoiceScreen_build_closure1(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure2: function RecurringInvoiceScreen_build_closure2(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure3: function RecurringInvoiceScreen_build_closure3(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure17: function RecurringInvoiceScreen_build_closure17(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure13: function RecurringInvoiceScreen_build_closure13(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure14: function RecurringInvoiceScreen_build_closure14(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure15: function RecurringInvoiceScreen_build_closure15(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure16: function RecurringInvoiceScreen_build_closure16(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure9: function RecurringInvoiceScreen_build_closure9(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure11: function RecurringInvoiceScreen_build_closure11(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure10: function RecurringInvoiceScreen_build_closure10(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure4: function RecurringInvoiceScreen_build_closure4(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure5: function RecurringInvoiceScreen_build_closure5(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure6: function RecurringInvoiceScreen_build_closure6(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure7: function RecurringInvoiceScreen_build_closure7(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure8: function RecurringInvoiceScreen_build_closure8(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure12: function RecurringInvoiceScreen_build_closure12(t0) { this.context = t0; }, RecurringInvoiceScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].recurringInvoiceState.toString; t4 = $.$get$memoizedFilteredRecurringInvoiceList(); t5 = state.getUISelection$1(B.EntityType_recurringInvoice); t6 = t1[t3]; t7 = t6.recurringInvoiceState; t8 = t7.map; t9 = t6.clientState.map; t10 = t6.vendorState.map; t7 = t7.list; t2 = t2.recurringInvoiceUIState.listUIState; t6 = t4.call$7(t5, t8, t9, t10, t7, t2, t6.userState.map); t1[t3].toString; t2.toString; return new A.RecurringInvoiceScreenVM(t6); }, RecurringInvoiceScreenBuilder: function RecurringInvoiceScreenBuilder(t0) { this.key = t0; }, RecurringInvoiceScreenBuilder_build_closure: function RecurringInvoiceScreenBuilder_build_closure() { }, RecurringInvoiceScreenVM: function RecurringInvoiceScreenVM(t0) { this.recurringInvoiceList = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore(store) { var t4, invoice, t5, client, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].recurringInvoiceState.map; t2 = t2.recurringInvoiceUIState.selectedId; invoice = t4._map$_map.$index(0, t2); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); t2 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t5 = invoice.clientId; client = t4._list[t2].clientState.map._map$_map.$index(0, t5); if (client == null) client = A.ClientEntity_ClientEntity(_null, t5, _null, _null); t1 = t1[t3].userCompany.company; invoice.get$isNew(); return new A.RecurringInvoiceViewVM(state, t1, invoice, client, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure(invoice), new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0(new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh(store, invoice)), new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1(store, invoice), new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2(store, invoice), _null, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3(store)); }, RecurringInvoiceViewScreen: function RecurringInvoiceViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, RecurringInvoiceViewScreen_build_closure0: function RecurringInvoiceViewScreen_build_closure0() { }, RecurringInvoiceViewScreen_build_closure: function RecurringInvoiceViewScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceViewVM: function RecurringInvoiceViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure(t0) { this.invoice = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0(t0) { this.context = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1(t0) { this.context = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure(t0) { this.error = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3(t0) { this.store = t0; }, clientReport(userCompany, reportsUIState, clientMap, userMap, groupMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, client, contact, row, t9, t10, currencyId, currencyId0, t11, exchangeRate, t12, value, t13, t14, t15, value0, t16, value1, t17, value2, t18, value3, t19, t20, t21, value4, value5, value6, value7, t22, t23, value8, value9, value10, value11, value12, t24, value13, value14, value15, value16, value17, t25, t26, t27, t28, t29, t30, t31, t32, value18, value19, t33, value20, t34, value21, skip, t35, value22, t36, t37, currencyId1, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, clientReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "client") ? reportSettings._map$_map.$index(0, "client") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_ClientReportFields; defaultColumns = A._setArrayType([B.ClientReportFields_1, B.ClientReportFields_43, B.ClientReportFields_38, B.ClientReportFields_39, B.ClientReportFields_4, B.ClientReportFields_29, B.ClientReportFields_31, B.ClientReportFields_16, B.ClientReportFields_51], t1); t2 = clientReportSettings.columns._list; t3 = type$.legacy_ClientReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.clientReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,ClientReportFields*>")).super$Iterable$where(0, new A.clientReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = clientMap.get$keys(clientMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = clientMap._map$_map; t2.moveNext$0();) { client = t8.$index(0, t2.__js_helper$_current); contact = client.get$primaryContact(); if (client.isDeleted) continue; row = A._setArrayType([], t7); t9 = staticState.currencyMap; t10 = client.settings; currencyId = t10.currencyId; currencyId0 = t6.settings.currencyId; t11 = currencyId0 == null; exchangeRate = A.getExchangeRate(t9, currencyId, t11 ? "1" : currencyId0); for (t12 = new J.ArrayIterator(t3, t3.length, t5), value = client.id, t13 = client.createdAt, t14 = client.updatedAt, t15 = client.archivedAt > 0, value0 = client.paidToDate, t16 = value0 * exchangeRate, value1 = client.creditBalance, t17 = value1 * exchangeRate, value2 = client.balance, t18 = value2 * exchangeRate, value3 = value2 + value0, t19 = value3 * exchangeRate, t20 = client.createdUserId, t21 = client.assignedUserId, value4 = client.vatNumber, value5 = client.idNumber, value6 = client.number, value7 = client.phone, t22 = staticState.countryMap, t23 = client.shippingCountryId, value8 = client.shippingPostalCode, value9 = client.shippingState, value10 = client.shippingCity, value11 = client.shippingAddress2, value12 = client.shippingAddress1, t24 = client.countryId, value13 = client.postalCode, value14 = client.state, value15 = client.city, value16 = client.address2, value17 = client.address1, t25 = client.customValue4, t26 = client.customValue3, t27 = client.customValue2, t28 = client.customValue1, t29 = staticState.sizeMap, t30 = client.sizeId, t31 = staticState.industryMap, t32 = client.industryId, value18 = client.publicNotes, value19 = client.privateNotes, t33 = staticState.languageMap, value20 = client.website, t34 = client.groupId, value21 = client.displayName, t13 *= 1000, t14 *= 1000, t10 = t10.languageId, skip = false; t12.moveNext$0();) { t35 = t12.__interceptors$_current; switch (t35) { case B.ClientReportFields_0: value22 = value; break; case B.ClientReportFields_1: value22 = value21; break; case B.ClientReportFields_2: t36 = groupMap._map$_map.$index(0, t34); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_3: value22 = value20; break; case B.ClientReportFields_4: t36 = t9._map$_map.$index(0, currencyId); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_5: t36 = t33._map$_map.$index(0, t10); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_6: value22 = value19; break; case B.ClientReportFields_7: value22 = value18; break; case B.ClientReportFields_8: t36 = t31._map$_map.$index(0, t32); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_9: t36 = t29._map$_map.$index(0, t30); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_23: value22 = A.presentCustomField(t6, "client1", t28); break; case B.ClientReportFields_24: value22 = A.presentCustomField(t6, "client2", t27); break; case B.ClientReportFields_25: value22 = A.presentCustomField(t6, "client3", t26); break; case B.ClientReportFields_26: value22 = A.presentCustomField(t6, "client4", t25); break; case B.ClientReportFields_10: value22 = value17; break; case B.ClientReportFields_11: value22 = value16; break; case B.ClientReportFields_12: value22 = value15; break; case B.ClientReportFields_13: value22 = value14; break; case B.ClientReportFields_14: value22 = value13; break; case B.ClientReportFields_16: t36 = t22._map$_map.$index(0, t24); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_17: value22 = value12; break; case B.ClientReportFields_18: value22 = value11; break; case B.ClientReportFields_19: value22 = value10; break; case B.ClientReportFields_20: value22 = value9; break; case B.ClientReportFields_21: value22 = value8; break; case B.ClientReportFields_22: t36 = t22._map$_map.$index(0, t23); value22 = t36 == null ? _null : t36.name; if (value22 == null) value22 = ""; break; case B.ClientReportFields_15: value22 = value7; break; case B.ClientReportFields_37: value22 = value6; break; case B.ClientReportFields_38: value22 = value5; break; case B.ClientReportFields_39: value22 = value4; break; case B.ClientReportFields_28: t36 = userMap._map$_map.$index(0, t21); if (t36 == null) value22 = _null; else { t37 = B.JSString_methods.trim$0(t36.firstName + " " + t36.lastName); t36 = t37.length !== 0 ? t37 : t36.email; value22 = t36; } if (value22 == null) value22 = ""; break; case B.ClientReportFields_27: t36 = userMap._map$_map.$index(0, t20); if (t36 == null) value22 = _null; else { t37 = B.JSString_methods.trim$0(t36.firstName + " " + t36.lastName); t36 = t37.length !== 0 ? t37 : t36.email; value22 = t36; } if (value22 == null) value22 = ""; break; case B.ClientReportFields_40: value22 = B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); break; case B.ClientReportFields_41: value22 = contact.firstName; break; case B.ClientReportFields_42: value22 = contact.lastName; break; case B.ClientReportFields_43: value22 = contact.email; break; case B.ClientReportFields_44: value22 = contact.phone; break; case B.ClientReportFields_45: value22 = A.presentCustomField(t6, "contact1", contact.customValue1); break; case B.ClientReportFields_46: value22 = A.presentCustomField(t6, "contact2", contact.customValue2); break; case B.ClientReportFields_47: value22 = A.presentCustomField(t6, "contact3", contact.customValue3); break; case B.ClientReportFields_48: value22 = A.presentCustomField(t6, "contact4", contact.customValue4); break; case B.ClientReportFields_49: t36 = contact.lastLogin; t36 *= 1000; t37 = new A.DateTime(t36, true); t37.DateTime$_withValue$2$isUtc(t36, true); value22 = t37.toIso8601String$0(); break; case B.ClientReportFields_32: value22 = value3; break; case B.ClientReportFields_29: value22 = value2; break; case B.ClientReportFields_30: value22 = value1; break; case B.ClientReportFields_31: value22 = value0; break; case B.ClientReportFields_36: value22 = A.round(t19, 2); break; case B.ClientReportFields_33: value22 = A.round(t18, 2); break; case B.ClientReportFields_34: value22 = A.round(t17, 2); break; case B.ClientReportFields_35: value22 = A.round(t16, 2); break; case B.ClientReportFields_50: t36 = t15 && true; value22 = !t36 && true; break; case B.ClientReportFields_52: t36 = new A.DateTime(t14, true); t36.DateTime$_withValue$2$isUtc(t14, true); value22 = t36.toIso8601String$0(); break; case B.ClientReportFields_51: t36 = new A.DateTime(t13, true); t36.DateTime$_withValue$2$isUtc(t13, true); value22 = t36.toIso8601String$0(); break; default: value22 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t35), _null, reportsUIState, userCompany, value22)) skip = true; t36 = J.getInterceptor$(value22); if (t36.get$runtimeType(value22) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value22, client.get$entityType(), value)); else if (t36.get$runtimeType(value22) === B.Type_double_K1J || t36.get$runtimeType(value22) === B.Type_int_tHn) { if (B.JSArray_methods.contains$1(A._setArrayType([B.ClientReportFields_33, B.ClientReportFields_34, B.ClientReportFields_35, B.ClientReportFields_36], t1), t35)) currencyId1 = t11 ? "1" : currencyId0; else currencyId1 = currencyId; row.push(new A.ReportNumberValue(value22, _null, currencyId1, exchangeRate, client.get$entityType(), value)); } else row.push(new A.ReportStringValue(A.S(value22), client.get$entityType(), value)); } if (!skip) { data.push(row); entities.push(client); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.clientReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.clientReport_closure2(clientReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ClientReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_ANz, new A.clientReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.clientReport_closure4(), t1), true, t3), data, entities, true); }, ClientReportFields: function ClientReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedClientReport_closure: function memoizedClientReport_closure() { }, clientReport_closure: function clientReport_closure() { }, clientReport_closure0: function clientReport_closure0() { }, clientReport_closure1: function clientReport_closure1() { }, clientReport_closure2: function clientReport_closure2(t0, t1) { this.clientReportSettings = t0; this.selectedColumns = t1; }, clientReport_closure3: function clientReport_closure3() { }, clientReport_closure4: function clientReport_closure4() { }, contactReport(userCompany, reportsUIState, clientMap, userMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, client, t9, t10, t11, t12, t13, value, value0, value1, value2, t14, t15, value3, value4, value5, value6, t16, value7, value8, value9, value10, value11, t17, value12, value13, value14, value15, value16, t18, t19, t20, t21, t22, t23, value17, value18, t24, value19, value20, t25, row, t26, currencyId, currencyId0, t27, exchangeRate, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, skip, t38, value21, t39, t40, currencyId1, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, clientReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "client") ? reportSettings._map$_map.$index(0, "client") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_ContactReportFields; defaultColumns = A._setArrayType([B.ContactReportFields_1, B.ContactReportFields_42, B.ContactReportFields_37, B.ContactReportFields_38, B.ContactReportFields_3, B.ContactReportFields_28, B.ContactReportFields_30, B.ContactReportFields_15, B.ContactReportFields_50], t1); t2 = clientReportSettings.columns._list; t3 = type$.legacy_ContactReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.contactReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,ContactReportFields*>")).super$Iterable$where(0, new A.contactReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = clientMap.get$keys(clientMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = clientMap._map$_map; t2.moveNext$0();) { client = t8.$index(0, t2.__js_helper$_current); if (client.isDeleted) continue; for (t9 = client.contacts._list, t9 = new J.ArrayIterator(t9, t9.length, A._arrayInstanceType(t9)._eval$1("ArrayIterator<1>")), t10 = client.id, t11 = client.createdAt, t12 = client.updatedAt, t13 = client.archivedAt > 0, value = client.paidToDate, value0 = client.creditBalance, value1 = client.balance, value2 = value1 + value, t14 = client.createdUserId, t15 = client.assignedUserId, value3 = client.vatNumber, value4 = client.idNumber, value5 = client.number, value6 = client.phone, t16 = client.shippingCountryId, value7 = client.shippingPostalCode, value8 = client.shippingState, value9 = client.shippingCity, value10 = client.shippingAddress2, value11 = client.shippingAddress1, t17 = client.countryId, value12 = client.postalCode, value13 = client.state, value14 = client.city, value15 = client.address2, value16 = client.address1, t18 = client.customValue4, t19 = client.customValue3, t20 = client.customValue2, t21 = client.customValue1, t22 = client.sizeId, t23 = client.industryId, value17 = client.publicNotes, value18 = client.privateNotes, t24 = client.settings, value19 = client.website, value20 = client.displayName, t11 *= 1000, t12 *= 1000; t9.moveNext$0();) { t25 = t9.__interceptors$_current; row = A._setArrayType([], t7); t26 = staticState.currencyMap; currencyId = t24.currencyId; currencyId0 = t6.settings.currencyId; t27 = currencyId0 == null; exchangeRate = A.getExchangeRate(t26, currencyId, t27 ? "1" : currencyId0); for (t28 = new J.ArrayIterator(t3, t3.length, t5), t29 = value * exchangeRate, t30 = value0 * exchangeRate, t31 = value1 * exchangeRate, t32 = value2 * exchangeRate, t33 = staticState.countryMap, t34 = staticState.sizeMap, t35 = staticState.industryMap, t36 = staticState.languageMap, t37 = t24.languageId, skip = false; t28.moveNext$0();) { t38 = t28.__interceptors$_current; switch (t38) { case B.ContactReportFields_0: value21 = t25.id; break; case B.ContactReportFields_1: value21 = value20; break; case B.ContactReportFields_2: value21 = value19; break; case B.ContactReportFields_3: t39 = t26._map$_map.$index(0, currencyId); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_4: t39 = t36._map$_map.$index(0, t37); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_5: value21 = value18; break; case B.ContactReportFields_6: value21 = value17; break; case B.ContactReportFields_7: t39 = t35._map$_map.$index(0, t23); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_8: t39 = t34._map$_map.$index(0, t22); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_22: value21 = A.presentCustomField(t6, "client1", t21); break; case B.ContactReportFields_23: value21 = A.presentCustomField(t6, "client2", t20); break; case B.ContactReportFields_24: value21 = A.presentCustomField(t6, "client3", t19); break; case B.ContactReportFields_25: value21 = A.presentCustomField(t6, "client4", t18); break; case B.ContactReportFields_9: value21 = value16; break; case B.ContactReportFields_10: value21 = value15; break; case B.ContactReportFields_11: value21 = value14; break; case B.ContactReportFields_12: value21 = value13; break; case B.ContactReportFields_13: value21 = value12; break; case B.ContactReportFields_15: t39 = t33._map$_map.$index(0, t17); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_16: value21 = value11; break; case B.ContactReportFields_17: value21 = value10; break; case B.ContactReportFields_18: value21 = value9; break; case B.ContactReportFields_19: value21 = value8; break; case B.ContactReportFields_20: value21 = value7; break; case B.ContactReportFields_21: t39 = t33._map$_map.$index(0, t16); value21 = t39 == null ? _null : t39.name; if (value21 == null) value21 = ""; break; case B.ContactReportFields_14: value21 = value6; break; case B.ContactReportFields_36: value21 = value5; break; case B.ContactReportFields_37: value21 = value4; break; case B.ContactReportFields_38: value21 = value3; break; case B.ContactReportFields_27: t39 = userMap._map$_map.$index(0, t15); if (t39 == null) value21 = _null; else { t40 = B.JSString_methods.trim$0(t39.firstName + " " + t39.lastName); t39 = t40.length !== 0 ? t40 : t39.email; value21 = t39; } if (value21 == null) value21 = ""; break; case B.ContactReportFields_26: t39 = userMap._map$_map.$index(0, t14); if (t39 == null) value21 = _null; else { t40 = B.JSString_methods.trim$0(t39.firstName + " " + t39.lastName); t39 = t40.length !== 0 ? t40 : t39.email; value21 = t39; } if (value21 == null) value21 = ""; break; case B.ContactReportFields_39: value21 = B.JSString_methods.trim$0(t25.firstName + " " + t25.lastName); break; case B.ContactReportFields_40: value21 = t25.firstName; break; case B.ContactReportFields_41: value21 = t25.lastName; break; case B.ContactReportFields_42: value21 = t25.email; break; case B.ContactReportFields_43: value21 = t25.phone; break; case B.ContactReportFields_44: value21 = A.presentCustomField(t6, "contact1", t25.customValue1); break; case B.ContactReportFields_45: value21 = A.presentCustomField(t6, "contact2", t25.customValue2); break; case B.ContactReportFields_46: value21 = A.presentCustomField(t6, "contact3", t25.customValue3); break; case B.ContactReportFields_47: value21 = A.presentCustomField(t6, "contact4", t25.customValue4); break; case B.ContactReportFields_48: t39 = t25.lastLogin; t39 *= 1000; t40 = new A.DateTime(t39, true); t40.DateTime$_withValue$2$isUtc(t39, true); value21 = t40.toIso8601String$0(); break; case B.ContactReportFields_31: value21 = t25.isPrimary ? value2 : 0; break; case B.ContactReportFields_28: value21 = t25.isPrimary ? value1 : 0; break; case B.ContactReportFields_29: value21 = t25.isPrimary ? value0 : 0; break; case B.ContactReportFields_30: value21 = t25.isPrimary ? value : 0; break; case B.ContactReportFields_35: value21 = t25.isPrimary ? A.round(t32, 2) : 0; break; case B.ContactReportFields_32: value21 = t25.isPrimary ? A.round(t31, 2) : 0; break; case B.ContactReportFields_33: value21 = t25.isPrimary ? A.round(t30, 2) : 0; break; case B.ContactReportFields_34: value21 = t25.isPrimary ? A.round(t29, 2) : 0; break; case B.ContactReportFields_49: t39 = t13 && true; value21 = !t39 && true; break; case B.ContactReportFields_51: t39 = new A.DateTime(t12, true); t39.DateTime$_withValue$2$isUtc(t12, true); value21 = t39.toIso8601String$0(); break; case B.ContactReportFields_50: t39 = new A.DateTime(t11, true); t39.DateTime$_withValue$2$isUtc(t11, true); value21 = t39.toIso8601String$0(); break; default: value21 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t38), _null, reportsUIState, userCompany, value21)) skip = true; t39 = J.getInterceptor$(value21); if (t39.get$runtimeType(value21) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value21, client.get$entityType(), t10)); else if (t39.get$runtimeType(value21) === B.Type_double_K1J || t39.get$runtimeType(value21) === B.Type_int_tHn) { if (B.JSArray_methods.contains$1(A._setArrayType([B.ContactReportFields_32, B.ContactReportFields_33, B.ContactReportFields_34, B.ContactReportFields_35], t1), t38)) currencyId1 = t27 ? "1" : currencyId0; else currencyId1 = currencyId; row.push(new A.ReportNumberValue(value21, _null, currencyId1, exchangeRate, client.get$entityType(), t10)); } else row.push(new A.ReportStringValue(A.S(value21), client.get$entityType(), t10)); } if (!skip) data.push(row); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.contactReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.contactReport_closure2(clientReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ContactReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_4Sq, new A.contactReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.contactReport_closure4(), t1), true, t3), data, _null, true); }, ContactReportFields: function ContactReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedContactReport_closure: function memoizedContactReport_closure() { }, contactReport_closure: function contactReport_closure() { }, contactReport_closure0: function contactReport_closure0() { }, contactReport_closure1: function contactReport_closure1() { }, contactReport_closure2: function contactReport_closure2(t0, t1) { this.clientReportSettings = t0; this.selectedColumns = t1; }, contactReport_closure3: function contactReport_closure3() { }, contactReport_closure4: function contactReport_closure4() { }, creditReport(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, credit, t9, client, contact, value, row, value0, t10, value1, t11, value2, value3, value4, value5, value6, t12, value7, t13, t14, t15, value8, value9, value10, value11, value12, value13, value14, value15, value16, value17, t16, value18, value19, value20, t17, value21, value22, value23, value24, t18, t19, t20, t21, value25, value26, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, value38, t22, t23, t24, skip, t25, value39, t26, t27, currencyId, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, creditReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "credit") ? reportSettings._map$_map.$index(0, "credit") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_CreditReportFields; defaultColumns = A._setArrayType([B.CreditReportFields_19, B.CreditReportFields_1, B.CreditReportFields_2, B.CreditReportFields_22, B.CreditReportFields_23, B.CreditReportFields_5], t1); t2 = creditReportSettings.columns._list; t3 = type$.legacy_CreditReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.creditReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,CreditReportFields*>")).super$Iterable$where(0, new A.creditReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = creditMap.get$keys(creditMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = creditMap._map$_map; t2.moveNext$0();) { credit = t8.$index(0, t2.__js_helper$_current); t9 = credit.clientId; client = clientMap._map$_map.$index(0, t9); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t9 = credit.invitations._list; if (t9.length === 0) continue; contact = client.getContact$1(B.JSArray_methods.get$first(t9).clientContactId); value = credit.isDeleted; if (value || client.isDeleted) continue; if (!t6.reportIncludeDrafts && credit.statusId === "1") continue; row = A._setArrayType([], t7); for (t9 = new J.ArrayIterator(t3, t3.length, t5), value0 = credit.id, t10 = credit.entityType, value1 = client.number, t11 = client.shippingCountryId, value2 = client.shippingPostalCode, value3 = client.shippingState, value4 = client.shippingCity, value5 = client.state, value6 = client.website, t12 = contact == null, value7 = client.phone, t13 = credit.createdUserId, t14 = credit.assignedUserId, t15 = client.settings, value8 = client.city, value9 = credit.privateNotes, value10 = credit.publicNotes, value11 = credit.taxRate1, value12 = credit.taxName1, value13 = credit.taxRate2, value14 = credit.taxName2, value15 = client.vatNumber, value16 = client.postalCode, value17 = credit.exchangeRate, t16 = client.countryId, value18 = credit.amount, value19 = credit.taxAmount, value20 = value18 - value19, t17 = credit.createdAt, value21 = credit.customSurcharge4, value22 = credit.customSurcharge3, value23 = credit.customSurcharge2, value24 = credit.customSurcharge1, t18 = credit.customValue4, t19 = credit.customValue3, t20 = credit.customValue2, t21 = credit.customValue1, value25 = credit.autoBill, value26 = credit.partialDueDate, value27 = credit.partial, value28 = credit.dueDate, value29 = credit.date, value30 = credit.poNumber, value31 = credit.discount, value32 = credit.number, value33 = client.shippingAddress2, value34 = client.shippingAddress1, value35 = client.address2, value36 = client.address1, value37 = client.balance, value38 = credit.balance, t22 = value38 / value17, t23 = value18 / value17, t17 *= 1000, t24 = t6.settings, skip = false; t9.moveNext$0();) { t25 = t9.__interceptors$_current; switch (t25) { case B.CreditReportFields_0: value39 = value0; break; case B.CreditReportFields_1: value39 = value18; break; case B.CreditReportFields_2: value39 = value38; break; case B.CreditReportFields_3: value39 = A.round(t23, 2); break; case B.CreditReportFields_4: value39 = A.round(t22, 2); break; case B.CreditReportFields_5: value39 = client.displayName; break; case B.CreditReportFields_7: value39 = value37; break; case B.CreditReportFields_8: value39 = value36; break; case B.CreditReportFields_9: value39 = value35; break; case B.CreditReportFields_11: value39 = value34; break; case B.CreditReportFields_12: value39 = value33; break; case B.CreditReportFields_18: value39 = B.Map_qBa3g.$index(0, credit.get$calculatedStatusId()); if (value39 == null) value39 = ""; break; case B.CreditReportFields_19: value39 = value32; break; case B.CreditReportFields_20: value39 = value31; break; case B.CreditReportFields_21: value39 = value30; break; case B.CreditReportFields_22: value39 = value29; break; case B.CreditReportFields_23: value39 = value28; break; case B.CreditReportFields_24: value39 = value27; break; case B.CreditReportFields_25: value39 = value26; break; case B.CreditReportFields_26: value39 = value25; break; case B.CreditReportFields_27: value39 = A.presentCustomField(t6, "invoice1", t21); break; case B.CreditReportFields_28: value39 = A.presentCustomField(t6, "invoice2", t20); break; case B.CreditReportFields_29: value39 = A.presentCustomField(t6, "invoice3", t19); break; case B.CreditReportFields_30: value39 = A.presentCustomField(t6, "invoice4", t18); break; case B.CreditReportFields_31: value39 = value24; break; case B.CreditReportFields_32: value39 = value23; break; case B.CreditReportFields_33: value39 = value22; break; case B.CreditReportFields_34: value39 = value21; break; case B.CreditReportFields_35: t26 = new A.DateTime(t17, true); t26.DateTime$_withValue$2$isUtc(t17, true); value39 = t26.toIso8601String$0(); break; case B.CreditReportFields_36: t26 = new A.DateTime(t17, true); t26.DateTime$_withValue$2$isUtc(t17, true); value39 = t26.toIso8601String$0(); break; case B.CreditReportFields_37: value39 = value; break; case B.CreditReportFields_38: value39 = value19; break; case B.CreditReportFields_39: value39 = value20; break; case B.CreditReportFields_40: value39 = credit.get$netBalance(); break; case B.CreditReportFields_10: t26 = staticState.countryMap._map$_map.$index(0, t16); value39 = t26 == null ? _null : t26.name; if (value39 == null) value39 = ""; break; case B.CreditReportFields_41: value39 = value17; break; case B.CreditReportFields_46: value39 = value16; break; case B.CreditReportFields_44: value39 = value15; break; case B.CreditReportFields_51: value39 = value12; break; case B.CreditReportFields_48: value39 = value11; break; case B.CreditReportFields_52: value39 = value14; break; case B.CreditReportFields_49: value39 = value13; break; case B.CreditReportFields_53: value39 = value12; break; case B.CreditReportFields_50: value39 = value11; break; case B.CreditReportFields_42: value39 = value10; break; case B.CreditReportFields_43: value39 = value9; break; case B.CreditReportFields_45: value39 = value8; break; case B.CreditReportFields_54: t26 = staticState.currencyMap; t27 = t15.currencyId; t27 = t26._map$_map.$index(0, t27); value39 = t27 == null ? _null : t27.name; if (value39 == null) value39 = ""; break; case B.CreditReportFields_55: value39 = credit.get$isViewed(); break; case B.CreditReportFields_56: t26 = userMap._map$_map.$index(0, t14); if (t26 == null) value39 = _null; else { t27 = B.JSString_methods.trim$0(t26.firstName + " " + t26.lastName); t26 = t27.length !== 0 ? t27 : t26.email; value39 = t26; } if (value39 == null) value39 = ""; break; case B.CreditReportFields_57: t26 = userMap._map$_map.$index(0, t13); if (t26 == null) value39 = _null; else { t27 = B.JSString_methods.trim$0(t26.firstName + " " + t26.lastName); t26 = t27.length !== 0 ? t27 : t26.email; value39 = t26; } if (value39 == null) value39 = ""; break; case B.CreditReportFields_58: value39 = value7; break; case B.CreditReportFields_59: value39 = t12 ? _null : contact.email; if (value39 == null) value39 = ""; break; case B.CreditReportFields_61: value39 = t12 ? _null : B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); if (value39 == null) value39 = ""; break; case B.CreditReportFields_60: value39 = t12 ? _null : contact.phone; if (value39 == null) value39 = ""; break; case B.CreditReportFields_47: value39 = value6; break; case B.CreditReportFields_13: value39 = value5; break; case B.CreditReportFields_14: value39 = value4; break; case B.CreditReportFields_15: value39 = value3; break; case B.CreditReportFields_16: value39 = value2; break; case B.CreditReportFields_17: t26 = staticState.countryMap._map$_map.$index(0, t11); value39 = t26 == null ? _null : t26.name; if (value39 == null) value39 = ""; break; case B.CreditReportFields_6: value39 = value1; break; default: value39 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t25), _null, reportsUIState, userCompany, value39)) skip = true; t26 = J.getInterceptor$(value39); if (t26.get$runtimeType(value39) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value39, t10, value0)); else if (t26.get$runtimeType(value39) === B.Type_double_K1J || t26.get$runtimeType(value39) === B.Type_int_tHn) { currencyId = t15.currencyId; if (B.JSArray_methods.contains$1(A._setArrayType([B.CreditReportFields_3, B.CreditReportFields_4], t1), t25)) { currencyId = t24.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value39, _null, currencyId, value17, t10, value0)); } else row.push(new A.ReportStringValue(value39, t10, value0)); } if (!skip) { data.push(row); entities.push(credit); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.creditReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.creditReport_closure2(creditReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_CreditReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_HT3, new A.creditReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.creditReport_closure4(), t1), true, t3), data, entities, true); }, CreditReportFields: function CreditReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedCreditReport_closure: function memoizedCreditReport_closure() { }, creditReport_closure: function creditReport_closure() { }, creditReport_closure0: function creditReport_closure0() { }, creditReport_closure1: function creditReport_closure1() { }, creditReport_closure2: function creditReport_closure2(t0, t1) { this.creditReportSettings = t0; this.selectedColumns = t1; }, creditReport_closure3: function creditReport_closure3() { }, creditReport_closure4: function creditReport_closure4() { }, documentReport(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap) { var t2, t3, reportSettings, documentReportSettings, defaultColumns, t4, selectedColumns, _s8_ = "document", t1 = {}, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity); t1.columns = null; t2 = A.AppLocalization_createLocale(A.defaultLocale()).toString$0(0); t3 = userCompany.settings; reportSettings = t3 == null ? null : t3.reportSettings; documentReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s8_) ? reportSettings._map$_map.$index(0, _s8_) : A.ReportSettingsEntity_ReportSettingsEntity(null, null); defaultColumns = A._setArrayType([B.DocumentReportFields_5, B.DocumentReportFields_6, B.DocumentReportFields_0, B.DocumentReportFields_4], type$.JSArray_legacy_DocumentReportFields); t3 = documentReportSettings.columns._list; t4 = type$.legacy_DocumentReportFields; if (t3.length !== 0) { t3 = new A.MappedListIterable(t3, new A.documentReport_closure(), A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,DocumentReportFields*>")).super$Iterable$where(0, new A.documentReport_closure0()); t1.columns = A.BuiltList_BuiltList$from(A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")), t4); } else t1.columns = A.BuiltList_BuiltList$from(defaultColumns, t4); t2 = new A.documentReport__getRow(t1, userMap, userCompany, reportsUIState, new A.AppLocalization(t2)); clientMap._map$_map.forEach$1(0, new A.documentReport_closure1(t2, data, entities)); productMap._map$_map.forEach$1(0, new A.documentReport_closure2(t2, data, entities)); invoiceMap._map$_map.forEach$1(0, new A.documentReport_closure3(t2, data, entities)); quoteMap._map$_map.forEach$1(0, new A.documentReport_closure4(t2, data, entities)); t1 = t1.columns._list; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t1, new A.documentReport_closure5(), t2), true, t2._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.documentReport_closure6(documentReportSettings, selectedColumns)); t2 = type$.MappedListIterable_of_legacy_DocumentReportFields_and_legacy_String; t1 = t2._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_lqi, new A.documentReport_closure7(), t2), true, t1), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.documentReport_closure8(), t2), true, t1), data, entities, false); }, DocumentReportFields: function DocumentReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedDocumentReport_closure: function memoizedDocumentReport_closure() { }, documentReport_closure: function documentReport_closure() { }, documentReport_closure0: function documentReport_closure0() { }, documentReport__getRow: function documentReport__getRow(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.userMap = t1; _.userCompany = t2; _.reportsUIState = t3; _.localization = t4; }, documentReport_closure1: function documentReport_closure1(t0, t1, t2) { this._getRow = t0; this.data = t1; this.entities = t2; }, documentReport__closure2: function documentReport__closure2(t0, t1, t2, t3) { var _ = this; _._getRow = t0; _.client = t1; _.data = t2; _.entities = t3; }, documentReport_closure2: function documentReport_closure2(t0, t1, t2) { this._getRow = t0; this.data = t1; this.entities = t2; }, documentReport__closure1: function documentReport__closure1(t0, t1, t2, t3) { var _ = this; _._getRow = t0; _.product = t1; _.data = t2; _.entities = t3; }, documentReport_closure3: function documentReport_closure3(t0, t1, t2) { this._getRow = t0; this.data = t1; this.entities = t2; }, documentReport__closure0: function documentReport__closure0(t0, t1, t2, t3) { var _ = this; _._getRow = t0; _.invoice = t1; _.data = t2; _.entities = t3; }, documentReport_closure4: function documentReport_closure4(t0, t1, t2) { this._getRow = t0; this.data = t1; this.entities = t2; }, documentReport__closure: function documentReport__closure(t0, t1, t2, t3) { var _ = this; _._getRow = t0; _.quote = t1; _.data = t2; _.entities = t3; }, documentReport_closure5: function documentReport_closure5() { }, documentReport_closure6: function documentReport_closure6(t0, t1) { this.documentReportSettings = t0; this.selectedColumns = t1; }, documentReport_closure7: function documentReport_closure7() { }, documentReport_closure8: function documentReport_closure8() { }, expenseReport(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, projectMap, userMap, staticState) { var t2, columns, t3, t4, t5, t6, t7, expense, t8, client, invoice, vendor, project, row, value, t9, t10, t11, value0, value1, t12, t13, t14, t15, t16, t17, t18, value2, t19, value3, value4, value5, t20, value6, value7, t21, value8, value9, t22, t23, skip, t24, value10, t25, t26, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, expenseReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "expense") ? reportSettings._map$_map.$index(0, "expense") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.ExpenseReportFields_1, B.ExpenseReportFields_4, B.ExpenseReportFields_12, B.ExpenseReportFields_18, B.ExpenseReportFields_21, B.ExpenseReportFields_27, B.ExpenseReportFields_6], type$.JSArray_legacy_ExpenseReportFields); t1 = expenseReportSettings.columns._list; t2 = type$.legacy_ExpenseReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.expenseReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseReportFields*>")).super$Iterable$where(0, new A.expenseReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = expenseMap.get$keys(expenseMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = columns._list, t3 = A._arrayInstanceType(t2), t4 = t3._eval$1("ArrayIterator<1>"), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = expenseMap._map$_map; t1.moveNext$0();) { expense = t7.$index(0, t1.__js_helper$_current); t8 = expense.clientId; client = clientMap._map$_map.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t8 = expense.invoiceId; invoice = invoiceMap._map$_map.$index(0, t8); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); t8 = expense.vendorId; vendor = vendorMap._map$_map.$index(0, t8); if (vendor == null) vendor = A.VendorEntity_VendorEntity(_null, _null, _null); t8 = expense.projectId; project = projectMap._map$_map.$index(0, t8); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); if (expense.isDeleted) continue; row = A._setArrayType([], t6); for (t8 = new J.ArrayIterator(t2, t2.length, t4), value = expense.id, t9 = expense.entityType, t10 = expense.createdAt, t11 = expense.updatedAt, value0 = expense.privateNotes, value1 = expense.publicNotes, t12 = expense.createdUserId, t13 = expense.assignedUserId, t14 = expense.categoryId, t15 = expense.customValue4, t16 = expense.customValue3, t17 = expense.customValue2, t18 = expense.customValue1, value2 = invoice.date, t19 = invoice.id, value3 = expense.taxRate3, value4 = expense.taxRate2, value5 = expense.taxRate1, t20 = expense.paymentTypeId, value6 = expense.paymentDate, value7 = expense.date, t21 = expense.currencyId, value8 = expense.transactionReference, value9 = expense.amount, t22 = expense.usesInclusiveTaxes, t10 *= 1000, t11 *= 1000, t23 = t19.length !== 0, skip = false; t8.moveNext$0();) { t24 = t8.__interceptors$_current; switch (t24) { case B.ExpenseReportFields_0: value10 = value; break; case B.ExpenseReportFields_1: value10 = t22 ? value9 : value9 + (expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3()); break; case B.ExpenseReportFields_2: value10 = t22 ? value9 - (expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3()) : value9; break; case B.ExpenseReportFields_3: value10 = expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3(); break; case B.ExpenseReportFields_4: value10 = value8; break; case B.ExpenseReportFields_5: t25 = staticState.currencyMap._map$_map.$index(0, t21); value10 = t25 == null ? _null : t25.name; if (value10 == null) value10 = ""; break; case B.ExpenseReportFields_6: value10 = value7; break; case B.ExpenseReportFields_7: value10 = value6; break; case B.ExpenseReportFields_8: t25 = staticState.paymentTypeMap._map$_map.$index(0, t20); value10 = t25 == null ? _null : t25.name; if (value10 == null) value10 = ""; break; case B.ExpenseReportFields_9: value10 = value5; break; case B.ExpenseReportFields_10: value10 = value4; break; case B.ExpenseReportFields_11: value10 = value3; break; case B.ExpenseReportFields_12: value10 = client.displayName; break; case B.ExpenseReportFields_13: value10 = client.balance; break; case B.ExpenseReportFields_14: value10 = client.address1; break; case B.ExpenseReportFields_15: value10 = client.address2; break; case B.ExpenseReportFields_16: value10 = client.shippingAddress1; break; case B.ExpenseReportFields_17: value10 = client.shippingAddress2; break; case B.ExpenseReportFields_18: value10 = invoice.number; break; case B.ExpenseReportFields_19: value10 = invoice.amount; break; case B.ExpenseReportFields_20: if (t23) { t25 = A.Primitives_parseInt(t19, _null); t25 = (t25 == null ? 0 : t25) < 0; } else t25 = true; value10 = t25 ? "" : value2; break; case B.ExpenseReportFields_21: value10 = vendor.name; break; case B.ExpenseReportFields_22: value10 = project.name; break; case B.ExpenseReportFields_23: value10 = A.presentCustomField(t5, "expense1", t18); break; case B.ExpenseReportFields_24: value10 = A.presentCustomField(t5, "expense2", t17); break; case B.ExpenseReportFields_25: value10 = A.presentCustomField(t5, "expense3", t16); break; case B.ExpenseReportFields_26: value10 = A.presentCustomField(t5, "expense4", t15); break; case B.ExpenseReportFields_27: t25 = expenseCategoryMap._map$_map.$index(0, t14); value10 = t25 == null ? _null : t25.name; if (value10 == null) value10 = ""; break; case B.ExpenseReportFields_28: t25 = userMap._map$_map.$index(0, t13); if (t25 == null) value10 = _null; else { t26 = B.JSString_methods.trim$0(t25.firstName + " " + t25.lastName); t25 = t26.length !== 0 ? t26 : t25.email; value10 = t25; } if (value10 == null) value10 = ""; break; case B.ExpenseReportFields_29: t25 = userMap._map$_map.$index(0, t12); if (t25 == null) value10 = _null; else { t26 = B.JSString_methods.trim$0(t25.firstName + " " + t25.lastName); t25 = t26.length !== 0 ? t26 : t25.email; value10 = t25; } if (value10 == null) value10 = ""; break; case B.ExpenseReportFields_30: value10 = value1; break; case B.ExpenseReportFields_31: value10 = value0; break; case B.ExpenseReportFields_32: value10 = expense.get$calculateTaxAmount1(); break; case B.ExpenseReportFields_33: value10 = expense.get$calculateTaxAmount2(); break; case B.ExpenseReportFields_34: value10 = expense.get$calculateTaxAmount3(); break; case B.ExpenseReportFields_36: t25 = new A.DateTime(t11, true); t25.DateTime$_withValue$2$isUtc(t11, true); value10 = t25.toIso8601String$0(); break; case B.ExpenseReportFields_35: t25 = new A.DateTime(t10, true); t25.DateTime$_withValue$2$isUtc(t10, true); value10 = t25.toIso8601String$0(); break; default: value10 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t24), _null, reportsUIState, userCompany, value10)) skip = true; t24 = J.getInterceptor$(value10); if (t24.get$runtimeType(value10) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value10, t9, value)); else if (t24.get$runtimeType(value10) === B.Type_double_K1J || t24.get$runtimeType(value10) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value10, _null, t21, _null, t9, value)); else row.push(new A.ReportStringValue(value10, t9, value)); } if (!skip) { data.push(row); entities.push(expense); } } t1 = t3._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t2, new A.expenseReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.expenseReport_closure2(expenseReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ExpenseReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_9W7, new A.expenseReport_closure3(), t1), true, t2), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.expenseReport_closure4(), t1), true, t2), data, entities, true); }, ExpenseReportFields: function ExpenseReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedExpenseReport_closure: function memoizedExpenseReport_closure() { }, expenseReport_closure: function expenseReport_closure() { }, expenseReport_closure0: function expenseReport_closure0() { }, expenseReport_closure1: function expenseReport_closure1() { }, expenseReport_closure2: function expenseReport_closure2(t0, t1) { this.expenseReportSettings = t0; this.selectedColumns = t1; }, expenseReport_closure3: function expenseReport_closure3() { }, expenseReport_closure4: function expenseReport_closure4() { }, lineItemReport0(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { var t2, columns, productKeyMap, t3, t4, t5, t6, t7, t8, invoice, client, t9, t10, precision, t11, t12, value, value0, value1, value2, t13, row, t14, skip, t15, value3, productId, t16, t17, t18, selectedColumns, _null = null, _s12_ = "invoice_item", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, lineItemReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s12_) ? reportSettings._map$_map.$index(0, _s12_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.InvoiceItemReportFields_12, B.InvoiceItemReportFields_13, B.InvoiceItemReportFields_0, B.InvoiceItemReportFields_4, B.InvoiceItemReportFields_2], type$.JSArray_legacy_InvoiceItemReportFields); t1 = lineItemReportSettings.columns._list; t2 = type$.legacy_InvoiceItemReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.lineItemReport_closure5(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceItemReportFields*>")).super$Iterable$where(0, new A.lineItemReport_closure6()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); t1 = type$.legacy_String; productKeyMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = productMap._map$_map, t2 = t1.get$entries(t1), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); productKeyMap.$indexSet(0, t3.get$value(t3).productKey, t3.get$value(t3).id); } for (t2 = invoiceMap._map$_map, t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_ReportElement, t7 = userCompany.company; t2.moveNext$0();) { t8 = t2.get$current(t2); invoice = t8.get$value(t8); t8 = invoice.clientId; client = clientMap._map$_map.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t8 = staticState.currencyMap; t9 = client.settings.currencyId; t8 = t8._map$_map; t10 = t8.$index(0, t9); precision = t10 == null ? _null : t10.precision; if (precision == null) precision = 2; if (invoice.isDeleted || client.isDeleted) continue; if (!t7.reportIncludeDrafts && invoice.statusId === "1") continue; for (t10 = invoice.lineItems._list, t10 = new J.ArrayIterator(t10, t10.length, A._arrayInstanceType(t10)._eval$1("ArrayIterator<1>")), t11 = invoice.id, t12 = invoice.entityType, value = invoice.dueDate, value0 = client.displayName, value1 = invoice.date, value2 = invoice.number; t10.moveNext$0();) { t13 = t10.__interceptors$_current; row = A._setArrayType([], t6); for (t14 = new J.ArrayIterator(t3, t3.length, t5), skip = false; t14.moveNext$0();) { t15 = t14.__interceptors$_current; value3 = t13.productKey; productId = productKeyMap.$index(0, value3); switch (t15) { case B.InvoiceItemReportFields_2: value3 = t13.cost; break; case B.InvoiceItemReportFields_4: value3 = t13.quantity; break; case B.InvoiceItemReportFields_3: value3 = t13.productCost; if (!(value3 !== 0)) value3 = productId == null ? 0 : t1.$index(0, productId).cost; break; case B.InvoiceItemReportFields_5: t16 = t13.total$2(0, invoice, precision); t17 = t13.taxAmount$2(invoice, precision); t18 = productId == null ? 0 : t1.$index(0, productId).cost; value3 = t16 - t17 - t18; break; case B.InvoiceItemReportFields_8: value3 = t13.customValue1; break; case B.InvoiceItemReportFields_9: value3 = t13.customValue2; break; case B.InvoiceItemReportFields_10: value3 = t13.customValue3; break; case B.InvoiceItemReportFields_11: value3 = t13.customValue4; break; case B.InvoiceItemReportFields_1: value3 = t13.notes; break; case B.InvoiceItemReportFields_6: value3 = t13.total$2(0, invoice, precision); break; case B.InvoiceItemReportFields_0: break; case B.InvoiceItemReportFields_7: value3 = t13.discount; break; case B.InvoiceItemReportFields_12: value3 = value2; break; case B.InvoiceItemReportFields_13: value3 = value1; break; case B.InvoiceItemReportFields_14: value3 = value0; break; case B.InvoiceItemReportFields_15: value3 = value; break; case B.InvoiceItemReportFields_16: value3 = t13.get$hasTaxes(); break; case B.InvoiceItemReportFields_17: value3 = t13.get$taxRates(); break; case B.InvoiceItemReportFields_18: value3 = t13.taxAmount$2(invoice, precision); break; case B.InvoiceItemReportFields_19: value3 = t13.total$2(0, invoice, precision) - t13.taxAmount$2(invoice, precision); break; case B.InvoiceItemReportFields_20: t16 = t8.$index(0, t9); value3 = t16 == null ? _null : t16.name; if (value3 == null) value3 = ""; break; default: value3 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value3)) skip = true; t16 = J.getInterceptor$(value3); if (t16.get$runtimeType(value3) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t12, t11)); else if (t16.get$runtimeType(value3) === B.Type_double_K1J || t16.get$runtimeType(value3) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t15 === B.InvoiceItemReportFields_4 ? _null : t9, _null, t12, t11)); else row.push(new A.ReportStringValue(value3, t12, t11)); } if (!skip) data.push(row); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.lineItemReport_closure7(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.lineItemReport_closure8(lineItemReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_InvoiceItemReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_Wii, new A.lineItemReport_closure9(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.lineItemReport_closure10(), t1), true, t3), data, _null, true); }, InvoiceItemReportFields: function InvoiceItemReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedInvoiceItemReport_closure: function memoizedInvoiceItemReport_closure() { }, lineItemReport_closure5: function lineItemReport_closure5() { }, lineItemReport_closure6: function lineItemReport_closure6() { }, lineItemReport_closure7: function lineItemReport_closure7() { }, lineItemReport_closure8: function lineItemReport_closure8(t0, t1) { this.lineItemReportSettings = t0; this.selectedColumns = t1; }, lineItemReport_closure9: function lineItemReport_closure9() { }, lineItemReport_closure10: function lineItemReport_closure10() { }, invoiceReport(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, invoice, t9, client, contact, value, row, value0, t10, value1, t11, t12, value2, value3, t13, value4, value5, value6, value7, value8, t14, value9, t15, t16, t17, t18, t19, value10, value11, value12, value13, value14, value15, value16, value17, value18, t20, value19, t21, t22, value20, value21, value22, t23, value23, value24, value25, value26, t24, t25, t26, t27, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, value38, value39, value40, value41, value42, value43, value44, t28, t29, skip, t30, value45, t31, t32, currencyId, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, invoiceReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "invoice") ? reportSettings._map$_map.$index(0, "invoice") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_InvoiceReportFields; defaultColumns = A._setArrayType([B.InvoiceReportFields_22, B.InvoiceReportFields_5, B.InvoiceReportFields_1, B.InvoiceReportFields_2, B.InvoiceReportFields_25, B.InvoiceReportFields_26, B.InvoiceReportFields_27], t1); t2 = invoiceReportSettings.columns._list; t3 = type$.legacy_InvoiceReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.invoiceReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,InvoiceReportFields*>")).super$Iterable$where(0, new A.invoiceReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = invoiceMap.get$keys(invoiceMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = invoiceMap._map$_map; t2.moveNext$0();) { invoice = t8.$index(0, t2.__js_helper$_current); t9 = invoice.clientId; client = clientMap._map$_map.$index(0, t9); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t9 = invoice.invitations._list; if (t9.length === 0) continue; contact = client.getContact$1(B.JSArray_methods.get$first(t9).clientContactId); value = invoice.isDeleted; if (value || client.isDeleted) continue; if (!t6.reportIncludeDrafts && invoice.statusId === "1") continue; row = A._setArrayType([], t7); for (t9 = new J.ArrayIterator(t3, t3.length, t5), value0 = invoice.id, t10 = invoice.entityType, value1 = invoice.balance, t11 = t10 === B.EntityType_invoice, t12 = invoice.statusId, value2 = t12 === "4", value3 = client.number, t13 = client.shippingCountryId, value4 = client.shippingPostalCode, value5 = client.shippingState, value6 = client.shippingCity, value7 = client.state, value8 = client.website, t14 = contact == null, value9 = client.phone, t15 = invoice.vendorId, t16 = invoice.projectId, t17 = invoice.createdUserId, t18 = invoice.assignedUserId, t19 = client.settings, value10 = client.city, value11 = invoice.privateNotes, value12 = invoice.publicNotes, value13 = invoice.taxRate1, value14 = invoice.taxName1, value15 = invoice.taxRate2, value16 = invoice.taxName2, value17 = client.vatNumber, value18 = client.postalCode, t20 = client.countryId, value19 = invoice.exchangeRate, t21 = t12 === "5", t22 = t10 === B.EntityType_purchaseOrder, value20 = invoice.amount, value21 = invoice.taxAmount, value22 = value20 - value21, t23 = invoice.createdAt, value23 = invoice.customSurcharge4, value24 = invoice.customSurcharge3, value25 = invoice.customSurcharge2, value26 = invoice.customSurcharge1, t24 = invoice.customValue4, t25 = invoice.customValue3, t26 = invoice.customValue2, t27 = invoice.customValue1, value27 = invoice.autoBill, value28 = invoice.partialDueDate, value29 = invoice.partial, value30 = invoice.dueDate, value31 = invoice.reminderLastSent, value32 = invoice.reminder3Sent, value33 = invoice.reminder2Sent, value34 = invoice.reminder1Sent, value35 = invoice.date, value36 = invoice.poNumber, value37 = invoice.discount, value38 = invoice.number, value39 = client.shippingAddress2, value40 = client.shippingAddress1, value41 = client.address2, value42 = client.address1, value43 = client.balance, value44 = client.displayName, t12 = t12 !== "1", t28 = value20 / value19, t23 *= 1000, t29 = t6.settings, skip = false; t9.moveNext$0();) { t30 = t9.__interceptors$_current; switch (t30) { case B.InvoiceReportFields_0: value45 = value0; break; case B.InvoiceReportFields_1: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; value45 = t31 ? 0 : value20; break; case B.InvoiceReportFields_2: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; if (t31) value45 = 0; else value45 = t12 ? value1 : value20; break; case B.InvoiceReportFields_3: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; value45 = t31 ? 0 : A.round(t28, 2); break; case B.InvoiceReportFields_4: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; if (t31) value45 = 0; else value45 = A.round((t12 ? value1 : value20) / value19, 2); break; case B.InvoiceReportFields_5: value45 = value44; break; case B.InvoiceReportFields_7: value45 = value43; break; case B.InvoiceReportFields_8: value45 = value42; break; case B.InvoiceReportFields_9: value45 = value41; break; case B.InvoiceReportFields_14: value45 = value40; break; case B.InvoiceReportFields_15: value45 = value39; break; case B.InvoiceReportFields_21: value45 = B.Map_j34mP.$index(0, invoice.get$calculatedStatusId()); if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_22: value45 = value38; break; case B.InvoiceReportFields_23: value45 = value37; break; case B.InvoiceReportFields_24: value45 = value36; break; case B.InvoiceReportFields_25: value45 = value35; break; case B.InvoiceReportFields_47: value45 = value34; break; case B.InvoiceReportFields_48: value45 = value33; break; case B.InvoiceReportFields_49: value45 = value32; break; case B.InvoiceReportFields_50: value45 = value31; break; case B.InvoiceReportFields_27: value45 = t11 && value2 ? -1 : invoice.get$age(); break; case B.InvoiceReportFields_26: value45 = value30; break; case B.InvoiceReportFields_28: value45 = value29; break; case B.InvoiceReportFields_29: value45 = value28; break; case B.InvoiceReportFields_30: value45 = value27; break; case B.InvoiceReportFields_31: value45 = A.presentCustomField(t6, "invoice1", t27); break; case B.InvoiceReportFields_32: value45 = A.presentCustomField(t6, "invoice2", t26); break; case B.InvoiceReportFields_33: value45 = A.presentCustomField(t6, "invoice3", t25); break; case B.InvoiceReportFields_34: value45 = A.presentCustomField(t6, "invoice4", t24); break; case B.InvoiceReportFields_35: value45 = invoice.get$hasExpenses(); break; case B.InvoiceReportFields_36: value45 = invoice.get$hasTasks(); break; case B.InvoiceReportFields_37: value45 = value26; break; case B.InvoiceReportFields_38: value45 = value25; break; case B.InvoiceReportFields_39: value45 = value24; break; case B.InvoiceReportFields_40: value45 = value23; break; case B.InvoiceReportFields_41: t31 = new A.DateTime(t23, true); t31.DateTime$_withValue$2$isUtc(t23, true); value45 = t31.toIso8601String$0(); break; case B.InvoiceReportFields_42: t31 = new A.DateTime(t23, true); t31.DateTime$_withValue$2$isUtc(t23, true); value45 = t31.toIso8601String$0(); break; case B.InvoiceReportFields_43: value45 = value; break; case B.InvoiceReportFields_44: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; value45 = t31 ? 0 : value21; break; case B.InvoiceReportFields_45: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; value45 = t31 ? 0 : value22; break; case B.InvoiceReportFields_46: if (!(t11 && t21)) t31 = t22 && t21; else t31 = true; value45 = t31 ? 0 : invoice.get$netBalanceOrAmount(); break; case B.InvoiceReportFields_51: value45 = value19; break; case B.InvoiceReportFields_13: t31 = staticState.countryMap._map$_map.$index(0, t20); value45 = t31 == null ? _null : t31.name; if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_12: value45 = value18; break; case B.InvoiceReportFields_10: value45 = value17; break; case B.InvoiceReportFields_58: value45 = value14; break; case B.InvoiceReportFields_55: value45 = value13; break; case B.InvoiceReportFields_59: value45 = value16; break; case B.InvoiceReportFields_56: value45 = value15; break; case B.InvoiceReportFields_60: value45 = value14; break; case B.InvoiceReportFields_57: value45 = value13; break; case B.InvoiceReportFields_52: value45 = value12; break; case B.InvoiceReportFields_53: value45 = value11; break; case B.InvoiceReportFields_11: value45 = value10; break; case B.InvoiceReportFields_61: t31 = staticState.currencyMap; t32 = t19.currencyId; t32 = t31._map$_map.$index(0, t32); value45 = t32 == null ? _null : t32.name; if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_62: value45 = invoice.get$isViewed(); break; case B.InvoiceReportFields_63: t31 = userMap._map$_map.$index(0, t18); if (t31 == null) value45 = _null; else { t32 = B.JSString_methods.trim$0(t31.firstName + " " + t31.lastName); t31 = t32.length !== 0 ? t32 : t31.email; value45 = t31; } if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_64: t31 = userMap._map$_map.$index(0, t17); if (t31 == null) value45 = _null; else { t32 = B.JSString_methods.trim$0(t31.firstName + " " + t31.lastName); t31 = t32.length !== 0 ? t32 : t31.email; value45 = t31; } if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_65: t31 = projectMap._map$_map.$index(0, t16); value45 = (t31 == null ? A.ProjectEntity_ProjectEntity(_null, _null, _null, _null) : t31).name; break; case B.InvoiceReportFields_66: t31 = vendorMap._map$_map.$index(0, t15); value45 = (t31 == null ? A.VendorEntity_VendorEntity(_null, _null, _null) : t31).name; break; case B.InvoiceReportFields_67: value45 = t11 && value2; break; case B.InvoiceReportFields_68: value45 = value9; break; case B.InvoiceReportFields_69: value45 = t14 ? _null : contact.email; if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_71: value45 = t14 ? _null : B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_70: value45 = t14 ? _null : contact.phone; if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_54: value45 = value8; break; case B.InvoiceReportFields_16: value45 = value7; break; case B.InvoiceReportFields_17: value45 = value6; break; case B.InvoiceReportFields_18: value45 = value5; break; case B.InvoiceReportFields_19: value45 = value4; break; case B.InvoiceReportFields_20: t31 = staticState.countryMap._map$_map.$index(0, t13); value45 = t31 == null ? _null : t31.name; if (value45 == null) value45 = ""; break; case B.InvoiceReportFields_6: value45 = value3; break; case B.InvoiceReportFields_72: value45 = t11 && value2 || invoice.get$age() >= 30 ? 0 : value1; break; case B.InvoiceReportFields_73: value45 = t11 && value2 || invoice.get$age() < 30 || invoice.get$age() >= 60 ? 0 : value1; break; case B.InvoiceReportFields_74: value45 = t11 && value2 || invoice.get$age() < 60 || invoice.get$age() >= 90 ? 0 : value1; break; case B.InvoiceReportFields_75: value45 = t11 && value2 || invoice.get$age() < 90 || invoice.get$age() >= 120 ? 0 : value1; break; case B.InvoiceReportFields_76: value45 = t11 && value2 || invoice.get$age() < 120 ? 0 : value1; break; default: value45 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t30), _null, reportsUIState, userCompany, value45)) skip = true; t31 = J.getInterceptor$(value45); if (t31.get$runtimeType(value45) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value45, t10, value0)); else if (t30 === B.InvoiceReportFields_27) row.push(new A.ReportAgeValue(value45, t19.currencyId, t10, value0)); else if (t31.get$runtimeType(value45) === B.Type_double_K1J || t31.get$runtimeType(value45) === B.Type_int_tHn) { currencyId = t19.currencyId; if (B.JSArray_methods.contains$1(A._setArrayType([B.InvoiceReportFields_3, B.InvoiceReportFields_4], t1), t30)) { currencyId = t29.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value45, _null, currencyId, value19, t10, value0)); } else row.push(new A.ReportStringValue(value45, t10, value0)); } if (!skip) { data.push(row); entities.push(invoice); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.invoiceReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.invoiceReport_closure2(invoiceReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_InvoiceReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_7Jw, new A.invoiceReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.invoiceReport_closure4(), t1), true, t3), data, entities, true); }, InvoiceReportFields: function InvoiceReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedInvoiceReport_closure: function memoizedInvoiceReport_closure() { }, invoiceReport_closure: function invoiceReport_closure() { }, invoiceReport_closure0: function invoiceReport_closure0() { }, invoiceReport_closure1: function invoiceReport_closure1() { }, invoiceReport_closure2: function invoiceReport_closure2(t0, t1) { this.invoiceReportSettings = t0; this.selectedColumns = t1; }, invoiceReport_closure3: function invoiceReport_closure3() { }, invoiceReport_closure4: function invoiceReport_closure4() { }, taxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { var t2, columns, t3, t4, t5, t6, t7, invoice, t8, client, t9, t10, precision, taxes, t11, t12, value, value0, value1, value2, value3, t13, row, taxName, taxRate, t14, skip, t15, value4, t16, credit, _null = null, _s11_ = "invoice_tax", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, taxRateReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s11_) ? reportSettings._map$_map.$index(0, _s11_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.TaxRateReportFields_50, B.TaxRateReportFields_70, B.TaxRateReportFields_80, B.TaxRateReportFields_30, B.TaxRateReportFields_40, B.TaxRateReportFields_20], type$.JSArray_legacy_TaxRateReportFields_2); t1 = taxRateReportSettings.columns._list; t2 = type$.legacy_TaxRateReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.taxReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateReportFields0*>")).super$Iterable$where(0, new A.taxReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = invoiceMap.get$keys(invoiceMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = userCompany.company, t3 = invoiceMap._map$_map, t4 = columns._list, t5 = A._arrayInstanceType(t4), t6 = t5._eval$1("ArrayIterator<1>"), t7 = type$.JSArray_legacy_ReportElement; t1.moveNext$0();) { invoice = t3.$index(0, t1.__js_helper$_current); if (!t2.reportIncludeDrafts && invoice.statusId === "1") continue; if (!invoice.isDeleted && invoice.statusId !== "1") { t8 = invoice.clientId; client = clientMap._map$_map.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t8 = staticState.currencyMap; t9 = client.settings.currencyId; t8 = t8._map$_map; t10 = t8.$index(0, t9); precision = t10 == null ? _null : t10.precision; taxes = invoice.getTaxes$1(precision == null ? 2 : precision); for (t10 = new A.LinkedHashMapKeyIterator(taxes, taxes._modifications, A._instanceType(taxes)._eval$1("LinkedHashMapKeyIterator<1>")), t10._cell = taxes._first, t11 = invoice.id, t12 = invoice.entityType, value = client.number, value0 = invoice.amount, value1 = invoice.date, value2 = invoice.number, value3 = client.displayName; t10.moveNext$0();) { t13 = t10.__js_helper$_current; row = A._setArrayType([], t7); taxName = J.$index$asx(taxes.$index(0, t13), "name"); taxRate = J.$index$asx(taxes.$index(0, t13), "rate"); for (t14 = new J.ArrayIterator(t4, t4.length, t6), skip = false; t14.moveNext$0();) { t15 = t14.__interceptors$_current; switch (t15) { case B.TaxRateReportFields_00: value4 = value3; break; case B.TaxRateReportFields_20: value4 = value2; break; case B.TaxRateReportFields_40: value4 = value1; break; case B.TaxRateReportFields_30: value4 = value0; break; case B.TaxRateReportFields_50: value4 = taxName; break; case B.TaxRateReportFields_60: value4 = taxRate; break; case B.TaxRateReportFields_70: value4 = J.$index$asx(taxes.$index(0, t13), "amount"); if (value4 == null) value4 = 0; break; case B.TaxRateReportFields_80: value4 = J.$index$asx(taxes.$index(0, t13), "paid"); if (value4 == null) value4 = 0; break; case B.TaxRateReportFields_90: t16 = t8.$index(0, t9); value4 = t16 == null ? _null : t16.name; if (value4 == null) { t16 = t8.$index(0, t9); value4 = t16 == null ? _null : t16.name; } break; case B.TaxRateReportFields_12: value4 = value; break; default: value4 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value4)) skip = true; t15 = J.getInterceptor$(value4); if (t15.get$runtimeType(value4) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value4, t12, t11)); else if (t15.get$runtimeType(value4) === B.Type_double_K1J || t15.get$runtimeType(value4) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value4, _null, t9, _null, t12, t11)); else row.push(new A.ReportStringValue(value4, t12, t11)); } if (!skip) data.push(row); } } } for (t1 = creditMap.get$keys(creditMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = creditMap._map$_map; t1.moveNext$0();) { credit = t2.$index(0, t1.__js_helper$_current); if (!credit.isDeleted && credit.statusId !== "1") { t3 = credit.clientId; client = clientMap._map$_map.$index(0, t3); if (client == null) client = A.ClientEntity_ClientEntity(_null, t3, _null, _null); t3 = staticState.currencyMap; t8 = client.settings.currencyId; t3 = t3._map$_map; t9 = t3.$index(0, t8); precision = t9 == null ? _null : t9.precision; taxes = credit.getTaxes$1(precision == null ? 2 : precision); for (t9 = new A.LinkedHashMapKeyIterator(taxes, taxes._modifications, A._instanceType(taxes)._eval$1("LinkedHashMapKeyIterator<1>")), t9._cell = taxes._first, t10 = credit.id, t11 = credit.entityType, value = client.number, value0 = credit.amount * -1, value1 = credit.date, value2 = credit.number, value3 = client.displayName; t9.moveNext$0();) { t12 = t9.__js_helper$_current; row = A._setArrayType([], t7); taxName = J.$index$asx(taxes.$index(0, t12), "name"); taxRate = J.$index$asx(taxes.$index(0, t12), "rate"); for (t13 = new J.ArrayIterator(t4, t4.length, t6), skip = false; t13.moveNext$0();) { t14 = t13.__interceptors$_current; switch (t14) { case B.TaxRateReportFields_00: value4 = value3; break; case B.TaxRateReportFields_20: value4 = value2; break; case B.TaxRateReportFields_40: value4 = value1; break; case B.TaxRateReportFields_30: value4 = value0; break; case B.TaxRateReportFields_50: value4 = taxName; break; case B.TaxRateReportFields_60: value4 = taxRate; break; case B.TaxRateReportFields_70: t15 = J.$index$asx(taxes.$index(0, t12), "amount"); value4 = J.$mul$ns(t15 == null ? 0 : t15, -1); break; case B.TaxRateReportFields_80: t15 = J.$index$asx(taxes.$index(0, t12), "paid"); value4 = J.$mul$ns(t15 == null ? 0 : t15, -1); break; case B.TaxRateReportFields_90: t15 = t3.$index(0, t8); value4 = t15 == null ? _null : t15.name; if (value4 == null) { t15 = t3.$index(0, t8); value4 = t15 == null ? _null : t15.name; } break; case B.TaxRateReportFields_12: value4 = value; break; default: value4 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t14), _null, reportsUIState, userCompany, value4)) skip = true; t14 = J.getInterceptor$(value4); if (t14.get$runtimeType(value4) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value4, t11, t10)); else if (t14.get$runtimeType(value4) === B.Type_double_K1J || t14.get$runtimeType(value4) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value4, _null, t8, _null, t11, t10)); else row.push(new A.ReportStringValue(value4, t11, t10)); } if (!skip) data.push(row); } } } t1 = t5._eval$1("MappedListIterable<1,String*>"); t2 = t1._eval$1("ListIterable.E"); B.JSArray_methods.sort$1(data, new A.taxReport_closure1(taxRateReportSettings, A.List_List$of(new A.MappedListIterable(t4, new A.taxReport_closure2(), t1), true, t2))); t3 = type$.MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String; t5 = t3._eval$1("ListIterable.E"); t6 = A.List_List$of(new A.MappedListIterable(B.List_y1j, new A.taxReport_closure3(), t3), true, t5); return new A.ReportResult(A.List_List$of(new A.MappedListIterable(t4, new A.taxReport_closure4(), t1), true, t2), t6, A.List_List$of(new A.MappedListIterable(defaultColumns, new A.taxReport_closure5(), t3), true, t5), data, _null, true); }, TaxRateReportFields0: function TaxRateReportFields0(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedInvoiceTaxReport_closure: function memoizedInvoiceTaxReport_closure() { }, taxReport_closure: function taxReport_closure() { }, taxReport_closure0: function taxReport_closure0() { }, taxReport_closure2: function taxReport_closure2() { }, taxReport_closure1: function taxReport_closure1(t0, t1) { this.taxRateReportSettings = t0; this.selectedColumns = t1; }, taxReport_closure3: function taxReport_closure3() { }, taxReport_closure4: function taxReport_closure4() { }, taxReport_closure5: function taxReport_closure5() { }, paymentReport(userCompany, reportsUIState, paymentMap, clientMap, userMap, invoiceMap, creditMap, staticState) { var t2, columns, paymentInvoiceMap, paymentCreditMap, t3, t4, payment, t5, t6, t7, _i, t8, invoice, credit, client, row, t9, value, value0, t10, t11, t12, t13, value1, value2, value3, value4, value5, t14, value6, t15, value7, value8, value9, value10, value11, value12, value13, value14, value15, value16, t16, value17, t17, t18, skip, t19, value18, t20, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, paymentReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "payment") ? reportSettings._map$_map.$index(0, "payment") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.PaymentReportFields_1, B.PaymentReportFields_2, B.PaymentReportFields_3, B.PaymentReportFields_20, B.PaymentReportFields_19], type$.JSArray_legacy_PaymentReportFields); t1 = paymentReportSettings.columns._list; t2 = type$.legacy_PaymentReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.paymentReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentReportFields*>")).super$Iterable$where(0, new A.paymentReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); t1 = type$.legacy_String; t2 = type$.legacy_List_legacy_String; paymentInvoiceMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); paymentCreditMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); t1 = columns._list; if (B.JSArray_methods.contains$1(t1, B.PaymentReportFields_28)) for (t2 = paymentMap.get$keys(paymentMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = type$.JSArray_legacy_String, t4 = paymentMap._map$_map; t2.moveNext$0();) { payment = t4.$index(0, t2.__js_helper$_current); if (payment == null) payment = A.PaymentEntity_PaymentEntity(_null, _null, _null); t5 = payment.id; paymentInvoiceMap.$indexSet(0, t5, A._setArrayType([], t3)); if (payment.isDeleted) continue; for (t6 = payment.get$invoicePaymentables(), t7 = t6.length, _i = 0; _i < t6.length; t6.length === t7 || (0, A.throwConcurrentModificationError)(t6), ++_i) { t8 = t6[_i].invoiceId; invoice = invoiceMap._map$_map.$index(0, t8); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); if (invoice.isDeleted) continue; paymentInvoiceMap.$index(0, t5).push(invoice.number); } } if (B.JSArray_methods.contains$1(t1, B.PaymentReportFields_29)) for (t2 = paymentMap.get$keys(paymentMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = type$.JSArray_legacy_String, t4 = paymentMap._map$_map; t2.moveNext$0();) { payment = t4.$index(0, t2.__js_helper$_current); if (payment == null) payment = A.PaymentEntity_PaymentEntity(_null, _null, _null); t5 = payment.id; paymentCreditMap.$indexSet(0, t5, A._setArrayType([], t3)); if (payment.isDeleted) continue; for (t6 = payment.get$invoicePaymentables(), t7 = t6.length, _i = 0; _i < t6.length; t6.length === t7 || (0, A.throwConcurrentModificationError)(t6), ++_i) { t8 = t6[_i].invoiceId; credit = creditMap._map$_map.$index(0, t8); if (credit == null) credit = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); if (credit.isDeleted) continue; paymentCreditMap.$index(0, t5).push(credit.number); } } for (t2 = paymentMap.get$keys(paymentMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = A._arrayInstanceType(t1), t4 = t3._eval$1("ArrayIterator<1>"), t5 = type$.JSArray_legacy_String, t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = paymentMap._map$_map; t2.moveNext$0();) { payment = t8.$index(0, t2.__js_helper$_current); if (payment == null) payment = A.PaymentEntity_PaymentEntity(_null, _null, _null); client = clientMap._map$_map.$index(0, payment.clientId); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); if (payment.isDeleted || client.isDeleted) continue; row = A._setArrayType([], t7); for (t9 = new J.ArrayIterator(t1, t1.length, t4), value = payment.id, value0 = payment.exchangeRate, t10 = payment.customValue4, t11 = payment.customValue3, t12 = payment.customValue2, t13 = payment.customValue1, value1 = payment.date, value2 = payment.transactionReference, value3 = client.number, value4 = client.vatNumber, value5 = client.postalCode, t14 = client.countryId, value6 = client.city, t15 = client.shippingCountryId, value7 = client.shippingPostalCode, value8 = client.shippingState, value9 = client.shippingCity, value10 = client.state, value11 = client.shippingAddress2, value12 = client.shippingAddress1, value13 = client.address2, value14 = client.address1, value15 = client.balance, value16 = client.displayName, t16 = payment.typeId, value17 = payment.number, t17 = payment.currencyId, t18 = payment.exchangeCurrencyId, skip = false; t9.moveNext$0();) { t19 = t9.__interceptors$_current; switch (t19) { case B.PaymentReportFields_0: value18 = value; break; case B.PaymentReportFields_1: value18 = value17; break; case B.PaymentReportFields_21: t20 = staticState.paymentTypeMap._map$_map.$index(0, t16); value18 = t20 == null ? _null : t20.name; if (value18 == null) value18 = ""; break; case B.PaymentReportFields_2: value18 = payment.get$completedAmount(); break; case B.PaymentReportFields_3: value18 = value16; break; case B.PaymentReportFields_5: value18 = value15; break; case B.PaymentReportFields_6: value18 = value14; break; case B.PaymentReportFields_7: value18 = value13; break; case B.PaymentReportFields_12: value18 = value12; break; case B.PaymentReportFields_13: value18 = value11; break; case B.PaymentReportFields_14: value18 = value10; break; case B.PaymentReportFields_15: value18 = value9; break; case B.PaymentReportFields_16: value18 = value8; break; case B.PaymentReportFields_17: value18 = value7; break; case B.PaymentReportFields_18: t20 = staticState.countryMap._map$_map.$index(0, t15); value18 = t20 == null ? _null : t20.name; if (value18 == null) value18 = ""; break; case B.PaymentReportFields_9: value18 = value6; break; case B.PaymentReportFields_11: t20 = staticState.countryMap._map$_map.$index(0, t14); value18 = t20 == null ? _null : t20.name; if (value18 == null) value18 = ""; break; case B.PaymentReportFields_10: value18 = value5; break; case B.PaymentReportFields_8: value18 = value4; break; case B.PaymentReportFields_4: value18 = value3; break; case B.PaymentReportFields_19: value18 = value2; break; case B.PaymentReportFields_20: value18 = value1; break; case B.PaymentReportFields_22: value18 = A.presentCustomField(t6, "payment1", t13); break; case B.PaymentReportFields_23: value18 = A.presentCustomField(t6, "payment2", t12); break; case B.PaymentReportFields_24: value18 = A.presentCustomField(t6, "payment3", t11); break; case B.PaymentReportFields_25: value18 = A.presentCustomField(t6, "payment4", t10); break; case B.PaymentReportFields_26: value18 = value0; break; case B.PaymentReportFields_27: value18 = A.round(payment.get$completedAmount() * value0, 2); break; case B.PaymentReportFields_28: t20 = paymentInvoiceMap.$index(0, value); value18 = B.JSArray_methods.join$1(t20 == null ? A._setArrayType([], t5) : t20, ", "); break; case B.PaymentReportFields_29: t20 = paymentCreditMap.$index(0, value); value18 = B.JSArray_methods.join$1(t20 == null ? A._setArrayType([], t5) : t20, ", "); break; default: value18 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t19), _null, reportsUIState, userCompany, value18)) skip = true; t20 = J.getInterceptor$(value18); if (t20.get$runtimeType(value18) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value18, payment.get$entityType(), value)); else if (t19 === B.PaymentReportFields_27) row.push(new A.ReportNumberValue(value18, _null, t18, _null, payment.get$entityType(), value)); else if (t20.get$runtimeType(value18) === B.Type_double_K1J || t20.get$runtimeType(value18) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value18, _null, t17, _null, payment.get$entityType(), value)); else row.push(new A.ReportStringValue(value18, payment.get$entityType(), value)); } if (!skip) { data.push(row); entities.push(payment); } } t2 = t3._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t1, new A.paymentReport_closure1(), t2), true, t2._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.paymentReport_closure2(paymentReportSettings, selectedColumns)); t2 = type$.MappedListIterable_of_legacy_PaymentReportFields_and_legacy_String; t1 = t2._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_wMy0, new A.paymentReport_closure3(), t2), true, t1), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.paymentReport_closure4(), t2), true, t1), data, entities, true); }, PaymentReportFields: function PaymentReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedPaymentReport_closure: function memoizedPaymentReport_closure() { }, paymentReport_closure: function paymentReport_closure() { }, paymentReport_closure0: function paymentReport_closure0() { }, paymentReport_closure1: function paymentReport_closure1() { }, paymentReport_closure2: function paymentReport_closure2(t0, t1) { this.paymentReportSettings = t0; this.selectedColumns = t1; }, paymentReport_closure3: function paymentReport_closure3() { }, paymentReport_closure4: function paymentReport_closure4() { }, paymentTaxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { var t2, columns, t3, t4, t5, t6, payment, client, t7, t8, t9, precision, value, value0, value1, t10, t11, invoice, multiplier, taxes, t12, t13, value2, t14, value3, value4, value5, t15, row, taxName, taxRate, t16, skip, t17, value6, t18, _null = null, _s11_ = "payment_tax", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, taxRateReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s11_) ? reportSettings._map$_map.$index(0, _s11_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.TaxRateReportFields_5, B.TaxRateReportFields_7, B.TaxRateReportFields_8, B.TaxRateReportFields_2, B.TaxRateReportFields_3, B.TaxRateReportFields_1, B.TaxRateReportFields_4], type$.JSArray_legacy_TaxRateReportFields); t1 = taxRateReportSettings.columns._list; t2 = type$.legacy_TaxRateReportFields_2; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.paymentTaxReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateReportFields*>")).super$Iterable$where(0, new A.paymentTaxReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = paymentMap.get$keys(paymentMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = paymentMap._map$_map, t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_ReportElement; t1.moveNext$0();) { payment = t2.$index(0, t1.__js_helper$_current); if (payment == null) payment = A.PaymentEntity_PaymentEntity(_null, _null, _null); if (!payment.isDeleted) { client = clientMap._map$_map.$index(0, payment.clientId); t7 = staticState.currencyMap; t8 = client.settings.currencyId; t7 = t7._map$_map; t9 = t7.$index(0, t8); precision = t9 == null ? _null : t9.precision; if (precision == null) precision = 2; for (t9 = payment.paymentables._list, t9 = new J.ArrayIterator(t9, t9.length, A._arrayInstanceType(t9)._eval$1("ArrayIterator<1>")), value = payment.transactionReference, value0 = payment.date, value1 = client.displayName; t9.moveNext$0();) { t10 = t9.__interceptors$_current; t11 = t10.invoiceId; if (((t11 == null ? "" : t11).length === 0 ? B.EntityType_credit : B.EntityType_invoice) === B.EntityType_invoice) { invoice = invoiceMap._map$_map.$index(0, t11); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); multiplier = 1; } else { t11 = t10.creditId; invoice = creditMap._map$_map.$index(0, t11); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); multiplier = -1; } if (invoice.statusId !== "1" && !invoice.isDeleted) { taxes = invoice.getTaxes$1(precision); for (t11 = new A.LinkedHashMapKeyIterator(taxes, taxes._modifications, A._instanceType(taxes)._eval$1("LinkedHashMapKeyIterator<1>")), t11._cell = taxes._first, t12 = invoice.id, t13 = invoice.entityType, t10 = t10.amount, value2 = t10 * multiplier, t14 = invoice.amount, value3 = t14 * t10 / t14 * multiplier, value4 = invoice.date, value5 = invoice.number; t11.moveNext$0();) { t15 = t11.__js_helper$_current; row = A._setArrayType([], t6); taxName = J.$index$asx(taxes.$index(0, t15), "name"); taxRate = J.$index$asx(taxes.$index(0, t15), "rate"); for (t16 = new J.ArrayIterator(t3, t3.length, t5), skip = false; t16.moveNext$0();) { t17 = t16.__interceptors$_current; switch (t17) { case B.TaxRateReportFields_0: value6 = value1; break; case B.TaxRateReportFields_1: value6 = value5; break; case B.TaxRateReportFields_3: value6 = value4; break; case B.TaxRateReportFields_4: value6 = value0; break; case B.TaxRateReportFields_2: value6 = value3; break; case B.TaxRateReportFields_5: value6 = taxName; break; case B.TaxRateReportFields_6: value6 = taxRate; break; case B.TaxRateReportFields_7: t18 = J.$index$asx(taxes.$index(0, t15), "amount"); value6 = J.$mul$ns(J.$div$n(J.$mul$ns(t18 == null ? 0 : t18, t10), t14), multiplier); break; case B.TaxRateReportFields_8: t18 = J.$index$asx(taxes.$index(0, t15), "paid"); value6 = J.$mul$ns(J.$div$n(J.$mul$ns(t18 == null ? 0 : t18, t10), t14), multiplier); break; case B.TaxRateReportFields_9: value6 = value2; break; case B.TaxRateReportFields_10: t18 = t7.$index(0, t8); value6 = t18 == null ? _null : t18.name; if (value6 == null) { t18 = t7.$index(0, t8); value6 = t18 == null ? _null : t18.name; } break; case B.TaxRateReportFields_11: value6 = value; break; default: value6 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t17), _null, reportsUIState, userCompany, value6)) skip = true; t17 = J.getInterceptor$(value6); if (t17.get$runtimeType(value6) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value6, t13, t12)); else if (t17.get$runtimeType(value6) === B.Type_double_K1J || t17.get$runtimeType(value6) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value6, _null, t8, _null, t13, t12)); else row.push(new A.ReportStringValue(value6, t13, t12)); } if (!skip) data.push(row); } } } } } t1 = t4._eval$1("MappedListIterable<1,String*>"); t2 = t1._eval$1("ListIterable.E"); B.JSArray_methods.sort$1(data, new A.paymentTaxReport_closure1(taxRateReportSettings, A.List_List$of(new A.MappedListIterable(t3, new A.paymentTaxReport_closure2(), t1), true, t2))); t4 = type$.MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String_2; t5 = t4._eval$1("ListIterable.E"); t6 = A.List_List$of(new A.MappedListIterable(B.List_qPn, new A.paymentTaxReport_closure3(), t4), true, t5); return new A.ReportResult(A.List_List$of(new A.MappedListIterable(t3, new A.paymentTaxReport_closure4(), t1), true, t2), t6, A.List_List$of(new A.MappedListIterable(defaultColumns, new A.paymentTaxReport_closure5(), t4), true, t5), data, _null, true); }, TaxRateReportFields: function TaxRateReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedPaymentTaxReport_closure: function memoizedPaymentTaxReport_closure() { }, paymentTaxReport_closure: function paymentTaxReport_closure() { }, paymentTaxReport_closure0: function paymentTaxReport_closure0() { }, paymentTaxReport_closure2: function paymentTaxReport_closure2() { }, paymentTaxReport_closure1: function paymentTaxReport_closure1(t0, t1) { this.taxRateReportSettings = t0; this.selectedColumns = t1; }, paymentTaxReport_closure3: function paymentTaxReport_closure3() { }, paymentTaxReport_closure4: function paymentTaxReport_closure4() { }, paymentTaxReport_closure5: function paymentTaxReport_closure5() { }, productReport(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState) { var t2, columns, t3, t4, t5, t6, t7, product, row, t8, value, t9, t10, value0, t11, t12, t13, t14, value1, value2, value3, value4, value5, value6, value7, value8, skip, t15, value9, t16, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, productReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "product") ? reportSettings._map$_map.$index(0, "product") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.ProductReportFields_1, B.ProductReportFields_2, B.ProductReportFields_4, B.ProductReportFields_5, B.ProductReportFields_15], type$.JSArray_legacy_ProductReportFields); t1 = productReportSettings.columns._list; t2 = type$.legacy_ProductReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.productReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductReportFields*>")).super$Iterable$where(0, new A.productReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = productMap.get$keys(productMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = columns._list, t3 = A._arrayInstanceType(t2), t4 = t3._eval$1("ArrayIterator<1>"), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = productMap._map$_map; t1.moveNext$0();) { product = t7.$index(0, t1.__js_helper$_current); if (product.isDeleted) continue; row = A._setArrayType([], t6); for (t8 = new J.ArrayIterator(t2, t2.length, t4), value = product.id, t9 = product.createdAt, t10 = product.updatedAt, value0 = product.stockQuantity, t11 = product.customValue4, t12 = product.customValue3, t13 = product.customValue2, t14 = product.customValue1, value1 = product.taxRate3, value2 = product.taxRate2, value3 = product.taxRate1, value4 = product.quantity, value5 = product.notes, value6 = product.cost, value7 = product.price, value8 = product.productKey, t9 *= 1000, t10 *= 1000, skip = false; t8.moveNext$0();) { t15 = t8.__interceptors$_current; switch (t15) { case B.ProductReportFields_0: value9 = value; break; case B.ProductReportFields_1: value9 = value8; break; case B.ProductReportFields_2: value9 = value7; break; case B.ProductReportFields_4: value9 = value6; break; case B.ProductReportFields_3: value9 = value5; break; case B.ProductReportFields_5: value9 = value4; break; case B.ProductReportFields_6: value9 = value3; break; case B.ProductReportFields_7: value9 = value2; break; case B.ProductReportFields_8: value9 = value1; break; case B.ProductReportFields_9: value9 = A.presentCustomField(t5, "product1", t14); break; case B.ProductReportFields_10: value9 = A.presentCustomField(t5, "product2", t13); break; case B.ProductReportFields_11: value9 = A.presentCustomField(t5, "product3", t12); break; case B.ProductReportFields_12: value9 = A.presentCustomField(t5, "product4", t11); break; case B.ProductReportFields_13: value9 = value0; break; case B.ProductReportFields_14: value9 = A.productNotificationThreshold(t5, product); break; case B.ProductReportFields_16: t16 = new A.DateTime(t10, true); t16.DateTime$_withValue$2$isUtc(t10, true); value9 = t16.toIso8601String$0(); break; case B.ProductReportFields_15: t16 = new A.DateTime(t9, true); t16.DateTime$_withValue$2$isUtc(t9, true); value9 = t16.toIso8601String$0(); break; default: value9 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value9)) skip = true; t16 = J.getInterceptor$(value9); if (t16.get$runtimeType(value9) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value9, product.get$entityType(), value)); else if (t15 === B.ProductReportFields_5) { t15 = t5.settings.currencyId; if (t15 == null) t15 = "1"; row.push(new A.ReportNumberValue(value9, B.FormatNumberType_3, t15, _null, product.get$entityType(), value)); } else if (t15 === B.ProductReportFields_14) row.push(new A.ReportIntValue(value9, product.get$entityType(), value)); else if (t16.get$runtimeType(value9) === B.Type_double_K1J || t16.get$runtimeType(value9) === B.Type_int_tHn) { t15 = t5.settings.currencyId; if (t15 == null) t15 = "1"; row.push(new A.ReportNumberValue(value9, _null, t15, _null, product.get$entityType(), value)); } else row.push(new A.ReportStringValue(value9, product.get$entityType(), value)); } if (!skip) { data.push(row); entities.push(product); } } t1 = t3._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t2, new A.productReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.productReport_closure2(productReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ProductReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_7xV, new A.productReport_closure3(), t1), true, t2), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.productReport_closure4(), t1), true, t2), data, entities, true); }, ProductReportFields: function ProductReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedProductReport_closure: function memoizedProductReport_closure() { }, productReport_closure: function productReport_closure() { }, productReport_closure0: function productReport_closure0() { }, productReport_closure1: function productReport_closure1() { }, productReport_closure2: function productReport_closure2(t0, t1) { this.productReportSettings = t0; this.selectedColumns = t1; }, productReport_closure3: function productReport_closure3() { }, productReport_closure4: function productReport_closure4() { }, profitAndLossReport(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState) { var t2, columns, t3, t4, t5, t6, t7, t8, payment, t9, client, vendor, skip, row, t10, t11, t12, t13, scope, value, t14, expense, value0, value1, t15, value2, t16, _null = null, _s15_ = "profit_and_loss", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, profitAndLossReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s15_) ? reportSettings._map$_map.$index(0, _s15_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.ProfitAndLossReportFields_12, B.ProfitAndLossReportFields_14, B.ProfitAndLossReportFields_15, B.ProfitAndLossReportFields_16, B.ProfitAndLossReportFields_0, B.ProfitAndLossReportFields_6, B.ProfitAndLossReportFields_17], type$.JSArray_legacy_ProfitAndLossReportFields); t1 = profitAndLossReportSettings.columns._list; t2 = type$.legacy_ProfitAndLossReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.profitAndLossReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProfitAndLossReportFields*>")).super$Iterable$where(0, new A.profitAndLossReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = paymentMap.get$keys(paymentMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = columns._list, t3 = A._arrayInstanceType(t2), t4 = t3._eval$1("ArrayIterator<1>"), t5 = type$.nullable_AppLocalization, t6 = type$._LocalizationsScope, t7 = type$.JSArray_legacy_ReportElement, t8 = paymentMap._map$_map; t1.moveNext$0();) { payment = t8.$index(0, t1.__js_helper$_current); t9 = payment.clientId; client = clientMap._map$_map.$index(0, t9); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t9 = payment.vendorId; vendor = vendorMap._map$_map.$index(0, t9); if (vendor == null) vendor = A.VendorEntity_VendorEntity(_null, _null, _null); skip = payment.isDeleted || client.isDeleted; row = A._setArrayType([], t7); for (t9 = new J.ArrayIterator(t2, t2.length, t4), t10 = payment.id, t11 = payment.currencyId; t9.moveNext$0();) { t12 = t9.__interceptors$_current; switch (t12) { case B.ProfitAndLossReportFields_12: t13 = $.$get$navigatorKey(); t13.toString; scope = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t13).dependOnInheritedWidgetOfExactType$1$0(t6); t13 = scope == null ? _null : t5._as(J.$index$asx(scope.localizationsState._typeToResources, B.Type_AppLocalization_KyD)); t13.toString; t13 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t13.localeCode), "payment"); value = t13 == null ? "" : t13; break; case B.ProfitAndLossReportFields_0: value = client.displayName; break; case B.ProfitAndLossReportFields_1: value = client.address1; break; case B.ProfitAndLossReportFields_2: value = client.address2; break; case B.ProfitAndLossReportFields_3: value = client.city; break; case B.ProfitAndLossReportFields_4: value = client.state; break; case B.ProfitAndLossReportFields_5: t13 = staticState.countryMap; t14 = client.countryId; t14 = t13._map$_map.$index(0, t14); value = t14 == null ? _null : t14.name; if (value == null) value = ""; break; case B.ProfitAndLossReportFields_6: value = vendor.name; break; case B.ProfitAndLossReportFields_7: value = vendor.address1; break; case B.ProfitAndLossReportFields_8: value = vendor.address2; break; case B.ProfitAndLossReportFields_9: value = vendor.city; break; case B.ProfitAndLossReportFields_10: value = vendor.state; break; case B.ProfitAndLossReportFields_11: t13 = staticState.countryMap; t14 = vendor.countryId; t14 = t13._map$_map.$index(0, t14); value = t14 == null ? _null : t14.name; if (value == null) value = ""; break; case B.ProfitAndLossReportFields_13: value = payment.get$completedAmount(); break; case B.ProfitAndLossReportFields_14: value = payment.get$completedAmount(); break; case B.ProfitAndLossReportFields_15: value = 0; break; case B.ProfitAndLossReportFields_16: value = payment.get$completedAmount(); break; case B.ProfitAndLossReportFields_17: value = payment.date; break; case B.ProfitAndLossReportFields_18: value = ""; break; default: value = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t12), _null, reportsUIState, userCompany, value)) skip = true; t12 = J.getInterceptor$(value); if (t12.get$runtimeType(value) === B.Type_EntityType_6qb) { t12 = payment.get$entityType(); row.push(new A.ReportEntityTypeValue(payment.get$entityType(), t12, t10)); } else if (t12.get$runtimeType(value) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value, payment.get$entityType(), t10)); else if (t12.get$runtimeType(value) === B.Type_double_K1J || t12.get$runtimeType(value) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value, _null, t11, _null, payment.get$entityType(), t10)); else row.push(new A.ReportStringValue(value, payment.get$entityType(), t10)); } if (!skip) data.push(row); } for (t1 = expenseMap.get$keys(expenseMap), t8 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t8, t8._modifications, A._instanceType(t1)._precomputed1), t8 = expenseMap._map$_map; t1.moveNext$0();) { expense = t8.$index(0, t1.__js_helper$_current); t9 = expense.clientId; client = clientMap._map$_map.$index(0, t9); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t9 = expense.vendorId; vendor = vendorMap._map$_map.$index(0, t9); if (vendor == null) vendor = A.VendorEntity_VendorEntity(_null, _null, _null); if (!expense.isDeleted) skip = client.isDeleted === true; else skip = true; row = A._setArrayType([], t7); for (t9 = new J.ArrayIterator(t2, t2.length, t4), t10 = expense.id, t11 = expense.entityType, t12 = expense.categoryId, value = expense.date, value0 = expense.amount, value1 = -value0, t13 = expense.currencyId; t9.moveNext$0();) { t14 = t9.__interceptors$_current; switch (t14) { case B.ProfitAndLossReportFields_12: t15 = $.$get$navigatorKey(); t15.toString; scope = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t15).dependOnInheritedWidgetOfExactType$1$0(t6); t15 = scope == null ? _null : t5._as(J.$index$asx(scope.localizationsState._typeToResources, B.Type_AppLocalization_KyD)); t15.toString; t15 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t15.localeCode), "expense"); value2 = t15 == null ? "" : t15; break; case B.ProfitAndLossReportFields_0: value2 = client.displayName; break; case B.ProfitAndLossReportFields_1: value2 = client.address1; break; case B.ProfitAndLossReportFields_2: value2 = client.address2; break; case B.ProfitAndLossReportFields_3: value2 = client.city; break; case B.ProfitAndLossReportFields_4: value2 = client.state; break; case B.ProfitAndLossReportFields_5: t15 = staticState.countryMap; t16 = client.countryId; t16 = t15._map$_map.$index(0, t16); value2 = t16 == null ? _null : t16.name; if (value2 == null) value2 = ""; break; case B.ProfitAndLossReportFields_6: value2 = vendor.name; break; case B.ProfitAndLossReportFields_7: value2 = vendor.address1; break; case B.ProfitAndLossReportFields_8: value2 = vendor.address2; break; case B.ProfitAndLossReportFields_9: value2 = vendor.city; break; case B.ProfitAndLossReportFields_10: value2 = vendor.state; break; case B.ProfitAndLossReportFields_11: t15 = staticState.countryMap; t16 = vendor.countryId; value2 = t15._map$_map.$index(0, t16); break; case B.ProfitAndLossReportFields_13: value2 = value1; break; case B.ProfitAndLossReportFields_14: value2 = 0; break; case B.ProfitAndLossReportFields_15: value2 = value0; break; case B.ProfitAndLossReportFields_16: value2 = value1; break; case B.ProfitAndLossReportFields_17: value2 = value; break; case B.ProfitAndLossReportFields_18: t15 = expenseCategoryMap._map$_map.$index(0, t12); value2 = t15 == null ? _null : t15.name; if (value2 == null) value2 = ""; break; default: value2 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t14), _null, reportsUIState, userCompany, value2)) skip = true; t14 = J.getInterceptor$(value2); if (t14.get$runtimeType(value2) === B.Type_EntityType_6qb) row.push(new A.ReportEntityTypeValue(t11, t11, t10)); else if (t14.get$runtimeType(value2) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value2, t11, t10)); else if (t14.get$runtimeType(value2) === B.Type_double_K1J || t14.get$runtimeType(value2) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value2, _null, t13, _null, t11, t10)); else row.push(new A.ReportStringValue(value2, t11, t10)); } if (!skip) data.push(row); } t1 = t3._eval$1("MappedListIterable<1,String*>"); t3 = t1._eval$1("ListIterable.E"); B.JSArray_methods.sort$1(data, new A.profitAndLossReport_closure1(profitAndLossReportSettings, A.List_List$of(new A.MappedListIterable(t2, new A.profitAndLossReport_closure2(), t1), true, t3))); t4 = type$.MappedListIterable_of_legacy_ProfitAndLossReportFields_and_legacy_String; t5 = t4._eval$1("ListIterable.E"); t6 = A.List_List$of(new A.MappedListIterable(B.List_T8q, new A.profitAndLossReport_closure3(), t4), true, t5); return new A.ReportResult(A.List_List$of(new A.MappedListIterable(t2, new A.profitAndLossReport_closure4(), t1), true, t3), t6, A.List_List$of(new A.MappedListIterable(defaultColumns, new A.profitAndLossReport_closure5(), t4), true, t5), data, _null, true); }, ProfitAndLossReportFields: function ProfitAndLossReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedProfitAndLossReport_closure: function memoizedProfitAndLossReport_closure() { }, profitAndLossReport_closure: function profitAndLossReport_closure() { }, profitAndLossReport_closure0: function profitAndLossReport_closure0() { }, profitAndLossReport_closure2: function profitAndLossReport_closure2() { }, profitAndLossReport_closure1: function profitAndLossReport_closure1(t0, t1) { this.profitAndLossReportSettings = t0; this.selectedColumns = t1; }, profitAndLossReport_closure3: function profitAndLossReport_closure3() { }, profitAndLossReport_closure4: function profitAndLossReport_closure4() { }, profitAndLossReport_closure5: function profitAndLossReport_closure5() { }, purchaseOrderReport(userCompany, reportsUIState, purchaseOrderMap, clientMap, vendorMap, userMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, t9, purchaseOrder, t10, vendor, contact, value, row, t11, t12, value0, value1, value2, t13, value3, t14, t15, currencyId, value4, value5, value6, value7, value8, value9, value10, value11, value12, t16, value13, value14, value15, value16, t17, t18, value17, value18, value19, value20, value21, value22, t19, t20, t21, t22, value23, value24, value25, value26, value27, value28, value29, value30, value31, value32, value33, t23, t24, skip, t25, value34, t26, t27, currencyId0, selectedColumns, _null = null, _s14_ = "purchase_order", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, purchaseOrderReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s14_) ? reportSettings._map$_map.$index(0, _s14_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_PurchaseOrderReportFields; defaultColumns = A._setArrayType([B.PurchaseOrderReportFields_10, B.PurchaseOrderReportFields_3, B.PurchaseOrderReportFields_1, B.PurchaseOrderReportFields_13, B.PurchaseOrderReportFields_15], t1); t2 = purchaseOrderReportSettings.columns._list; t3 = type$.legacy_PurchaseOrderReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.purchaseOrderReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,PurchaseOrderReportFields*>")).super$Iterable$where(0, new A.purchaseOrderReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = purchaseOrderMap.get$keys(purchaseOrderMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_String, t7 = userCompany.company, t8 = type$.JSArray_legacy_ReportElement, t9 = purchaseOrderMap._map$_map; t2.moveNext$0();) { purchaseOrder = t9.$index(0, t2.__js_helper$_current); t10 = purchaseOrder.vendorId; vendor = vendorMap._map$_map.$index(0, t10); if (vendor == null) vendor = A.VendorEntity_VendorEntity(_null, _null, _null); t10 = purchaseOrder.invitations._list; if (t10.length === 0) continue; contact = vendor.getContact$1(B.JSArray_methods.get$first(t10).vendorContactId); value = purchaseOrder.isDeleted; if (value || vendor.isDeleted) continue; if (!t7.reportIncludeDrafts && purchaseOrder.statusId === "1") continue; row = A._setArrayType([], t8); for (t10 = new J.ArrayIterator(t3, t3.length, t5), t11 = purchaseOrder.id, t12 = purchaseOrder.entityType, value0 = vendor.number, value1 = vendor.state, value2 = vendor.website, t13 = contact == null, value3 = vendor.phone, t14 = purchaseOrder.createdUserId, t15 = purchaseOrder.assignedUserId, currencyId = vendor.currencyId, value4 = vendor.city, value5 = purchaseOrder.privateNotes, value6 = purchaseOrder.publicNotes, value7 = purchaseOrder.taxRate1, value8 = purchaseOrder.taxName1, value9 = purchaseOrder.taxRate2, value10 = purchaseOrder.taxName2, value11 = vendor.vatNumber, value12 = vendor.postalCode, t16 = vendor.countryId, value13 = purchaseOrder.exchangeRate, value14 = purchaseOrder.amount, value15 = purchaseOrder.taxAmount, value16 = value14 - value15, t17 = t12 === B.EntityType_quote, t18 = purchaseOrder.statusId, value17 = purchaseOrder.archivedAt, value18 = purchaseOrder.updatedAt, value19 = purchaseOrder.customSurcharge4, value20 = purchaseOrder.customSurcharge3, value21 = purchaseOrder.customSurcharge2, value22 = purchaseOrder.customSurcharge1, t19 = purchaseOrder.customValue4, t20 = purchaseOrder.customValue3, t21 = purchaseOrder.customValue2, t22 = purchaseOrder.customValue1, value23 = purchaseOrder.autoBill, value24 = purchaseOrder.partial, value25 = purchaseOrder.dueDate, value26 = purchaseOrder.date, value27 = purchaseOrder.partialDueDate, value28 = purchaseOrder.poNumber, value29 = purchaseOrder.discount, value30 = vendor.address2, value31 = vendor.address1, value32 = vendor.name, value33 = purchaseOrder.number, t23 = value14 / value13, t24 = t7.settings, skip = false; t10.moveNext$0();) { t25 = t10.__interceptors$_current; switch (t25) { case B.PurchaseOrderReportFields_0: value34 = value14; break; case B.PurchaseOrderReportFields_1: value34 = value14; break; case B.PurchaseOrderReportFields_2: value34 = A.round(t23, 2); break; case B.PurchaseOrderReportFields_10: value34 = value33; break; case B.PurchaseOrderReportFields_3: value34 = value32; break; case B.PurchaseOrderReportFields_5: value34 = value31; break; case B.PurchaseOrderReportFields_6: value34 = value30; break; case B.PurchaseOrderReportFields_9: value34 = B.Map_EH27z.$index(0, purchaseOrder.get$calculatedStatusId()); if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_11: value34 = value29; break; case B.PurchaseOrderReportFields_12: value34 = value28; break; case B.PurchaseOrderReportFields_14: value34 = value27; break; case B.PurchaseOrderReportFields_13: value34 = value26; break; case B.PurchaseOrderReportFields_15: value34 = value25; break; case B.PurchaseOrderReportFields_16: value34 = value24; break; case B.PurchaseOrderReportFields_17: value34 = value23; break; case B.PurchaseOrderReportFields_18: value34 = A.presentCustomField(t7, "invoice1", t22); break; case B.PurchaseOrderReportFields_19: value34 = A.presentCustomField(t7, "invoice2", t21); break; case B.PurchaseOrderReportFields_20: value34 = A.presentCustomField(t7, "invoice3", t20); break; case B.PurchaseOrderReportFields_21: value34 = A.presentCustomField(t7, "invoice4", t19); break; case B.PurchaseOrderReportFields_22: value34 = value22; break; case B.PurchaseOrderReportFields_23: value34 = value21; break; case B.PurchaseOrderReportFields_24: value34 = value20; break; case B.PurchaseOrderReportFields_25: value34 = value19; break; case B.PurchaseOrderReportFields_26: value34 = value18; break; case B.PurchaseOrderReportFields_27: value34 = value17; break; case B.PurchaseOrderReportFields_28: value34 = value; break; case B.PurchaseOrderReportFields_29: value34 = t17 && B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], t6), t18); break; case B.PurchaseOrderReportFields_30: value34 = value15; break; case B.PurchaseOrderReportFields_31: value34 = value16; break; case B.PurchaseOrderReportFields_32: value34 = value13; break; case B.PurchaseOrderReportFields_8: t26 = staticState.countryMap._map$_map.$index(0, t16); value34 = t26 == null ? _null : t26.name; if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_37: value34 = value12; break; case B.PurchaseOrderReportFields_35: value34 = value11; break; case B.PurchaseOrderReportFields_42: value34 = value8; break; case B.PurchaseOrderReportFields_39: value34 = value7; break; case B.PurchaseOrderReportFields_43: value34 = value10; break; case B.PurchaseOrderReportFields_40: value34 = value9; break; case B.PurchaseOrderReportFields_44: value34 = value8; break; case B.PurchaseOrderReportFields_41: value34 = value7; break; case B.PurchaseOrderReportFields_33: value34 = value6; break; case B.PurchaseOrderReportFields_34: value34 = value5; break; case B.PurchaseOrderReportFields_36: value34 = value4; break; case B.PurchaseOrderReportFields_45: t26 = staticState.currencyMap._map$_map.$index(0, currencyId); value34 = t26 == null ? _null : t26.name; if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_46: value34 = purchaseOrder.get$isViewed(); break; case B.PurchaseOrderReportFields_47: t26 = userMap._map$_map.$index(0, t15); if (t26 == null) value34 = _null; else { t27 = B.JSString_methods.trim$0(t26.firstName + " " + t26.lastName); t26 = t27.length !== 0 ? t27 : t26.email; value34 = t26; } if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_48: t26 = userMap._map$_map.$index(0, t14); if (t26 == null) value34 = _null; else { t27 = B.JSString_methods.trim$0(t26.firstName + " " + t26.lastName); t26 = t27.length !== 0 ? t27 : t26.email; value34 = t26; } if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_49: value34 = value3; break; case B.PurchaseOrderReportFields_50: value34 = t13 ? _null : contact.email; if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_52: value34 = t13 ? _null : B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_51: value34 = t13 ? _null : contact.phone; if (value34 == null) value34 = ""; break; case B.PurchaseOrderReportFields_38: value34 = value2; break; case B.PurchaseOrderReportFields_7: value34 = value1; break; case B.PurchaseOrderReportFields_4: value34 = value0; break; default: value34 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t25), _null, reportsUIState, userCompany, value34)) skip = true; t26 = J.getInterceptor$(value34); if (t26.get$runtimeType(value34) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value34, t12, t11)); else if (t26.get$runtimeType(value34) === B.Type_double_K1J || t26.get$runtimeType(value34) === B.Type_int_tHn) { if (B.JSArray_methods.contains$1(A._setArrayType([B.PurchaseOrderReportFields_2], t1), t25)) { currencyId0 = t24.currencyId; if (currencyId0 == null) currencyId0 = "1"; } else currencyId0 = currencyId; row.push(new A.ReportNumberValue(value34, _null, currencyId0, value13, t12, t11)); } else row.push(new A.ReportStringValue(value34, t12, t11)); } if (!skip) { data.push(row); entities.push(purchaseOrder); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.purchaseOrderReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.purchaseOrderReport_closure2(purchaseOrderReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_PurchaseOrderReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_MAa, new A.purchaseOrderReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.purchaseOrderReport_closure4(), t1), true, t3), data, entities, true); }, PurchaseOrderReportFields: function PurchaseOrderReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedPurchaseOrderReport_closure: function memoizedPurchaseOrderReport_closure() { }, purchaseOrderReport_closure: function purchaseOrderReport_closure() { }, purchaseOrderReport_closure0: function purchaseOrderReport_closure0() { }, purchaseOrderReport_closure1: function purchaseOrderReport_closure1() { }, purchaseOrderReport_closure2: function purchaseOrderReport_closure2(t0, t1) { this.purchaseOrderReportSettings = t0; this.selectedColumns = t1; }, purchaseOrderReport_closure3: function purchaseOrderReport_closure3() { }, purchaseOrderReport_closure4: function purchaseOrderReport_closure4() { }, lineItemReport(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { var t2, columns, productKeyMap, t3, t4, t5, t6, t7, t8, invoice, client, t9, t10, precision, t11, t12, value, value0, value1, value2, t13, row, t14, skip, t15, value3, productId, t16, t17, t18, selectedColumns, _null = null, _s10_ = "quote_item", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, lineItemReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s10_) ? reportSettings._map$_map.$index(0, _s10_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.QuoteItemReportFields_12, B.QuoteItemReportFields_13, B.QuoteItemReportFields_0, B.QuoteItemReportFields_4, B.QuoteItemReportFields_2], type$.JSArray_legacy_QuoteItemReportFields); t1 = lineItemReportSettings.columns._list; t2 = type$.legacy_QuoteItemReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.lineItemReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,QuoteItemReportFields*>")).super$Iterable$where(0, new A.lineItemReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); t1 = type$.legacy_String; productKeyMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = productMap._map$_map, t2 = t1.get$entries(t1), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); productKeyMap.$indexSet(0, t3.get$value(t3).productKey, t3.get$value(t3).id); } for (t2 = invoiceMap._map$_map, t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_ReportElement, t7 = userCompany.company; t2.moveNext$0();) { t8 = t2.get$current(t2); invoice = t8.get$value(t8); t8 = invoice.clientId; client = clientMap._map$_map.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t8 = staticState.currencyMap; t9 = client.settings.currencyId; t8 = t8._map$_map; t10 = t8.$index(0, t9); precision = t10 == null ? _null : t10.precision; if (precision == null) precision = 2; if (invoice.isDeleted || client.isDeleted) continue; if (!t7.reportIncludeDrafts && invoice.statusId === "1") continue; for (t10 = invoice.lineItems._list, t10 = new J.ArrayIterator(t10, t10.length, A._arrayInstanceType(t10)._eval$1("ArrayIterator<1>")), t11 = invoice.id, t12 = invoice.entityType, value = invoice.dueDate, value0 = client.displayName, value1 = invoice.date, value2 = invoice.number; t10.moveNext$0();) { t13 = t10.__interceptors$_current; row = A._setArrayType([], t6); for (t14 = new J.ArrayIterator(t3, t3.length, t5), skip = false; t14.moveNext$0();) { t15 = t14.__interceptors$_current; value3 = t13.productKey; productId = productKeyMap.$index(0, value3); switch (t15) { case B.QuoteItemReportFields_2: value3 = t13.cost; break; case B.QuoteItemReportFields_4: value3 = t13.quantity; break; case B.QuoteItemReportFields_3: value3 = productId == null ? 0 : t1.$index(0, productId).cost; break; case B.QuoteItemReportFields_5: t16 = t13.total$2(0, invoice, precision); t17 = t13.taxAmount$2(invoice, precision); t18 = productId == null ? 0 : t1.$index(0, productId).cost; value3 = t16 - t17 - t18; break; case B.QuoteItemReportFields_8: value3 = t13.customValue1; break; case B.QuoteItemReportFields_9: value3 = t13.customValue2; break; case B.QuoteItemReportFields_10: value3 = t13.customValue3; break; case B.QuoteItemReportFields_11: value3 = t13.customValue4; break; case B.QuoteItemReportFields_1: value3 = t13.notes; break; case B.QuoteItemReportFields_6: value3 = t13.total$2(0, invoice, precision); break; case B.QuoteItemReportFields_0: break; case B.QuoteItemReportFields_7: value3 = t13.discount; break; case B.QuoteItemReportFields_12: value3 = value2; break; case B.QuoteItemReportFields_13: value3 = value1; break; case B.QuoteItemReportFields_14: value3 = value0; break; case B.QuoteItemReportFields_15: value3 = value; break; case B.QuoteItemReportFields_16: value3 = t13.get$hasTaxes(); break; case B.QuoteItemReportFields_17: value3 = t13.get$taxRates(); break; case B.QuoteItemReportFields_18: value3 = t13.taxAmount$2(invoice, precision); break; case B.QuoteItemReportFields_19: value3 = t13.total$2(0, invoice, precision) - t13.taxAmount$2(invoice, precision); break; case B.QuoteItemReportFields_20: t16 = t8.$index(0, t9); value3 = t16 == null ? _null : t16.name; if (value3 == null) value3 = ""; break; default: value3 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value3)) skip = true; t16 = J.getInterceptor$(value3); if (t16.get$runtimeType(value3) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t12, t11)); else if (t16.get$runtimeType(value3) === B.Type_double_K1J || t16.get$runtimeType(value3) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t15 === B.QuoteItemReportFields_4 ? _null : t9, _null, t12, t11)); else row.push(new A.ReportStringValue(value3, t12, t11)); } if (!skip) data.push(row); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.lineItemReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.lineItemReport_closure2(lineItemReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_QuoteItemReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_gqs, new A.lineItemReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.lineItemReport_closure4(), t1), true, t3), data, _null, true); }, QuoteItemReportFields: function QuoteItemReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedQuoteItemReport_closure: function memoizedQuoteItemReport_closure() { }, lineItemReport_closure: function lineItemReport_closure() { }, lineItemReport_closure0: function lineItemReport_closure0() { }, lineItemReport_closure1: function lineItemReport_closure1() { }, lineItemReport_closure2: function lineItemReport_closure2(t0, t1) { this.lineItemReportSettings = t0; this.selectedColumns = t1; }, lineItemReport_closure3: function lineItemReport_closure3() { }, lineItemReport_closure4: function lineItemReport_closure4() { }, quoteReport(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState) { var defaultColumns, t2, t3, columns, t4, t5, t6, t7, t8, t9, quote, t10, client, contact, value, row, t11, t12, value0, t13, value1, value2, value3, value4, value5, t14, value6, t15, t16, t17, value7, value8, value9, value10, value11, value12, value13, value14, value15, t18, value16, value17, value18, value19, t19, t20, value20, value21, value22, value23, value24, value25, t21, t22, t23, t24, value26, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, value38, value39, t25, t26, skip, t27, value40, t28, t29, currencyId, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, quoteReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "quote") ? reportSettings._map$_map.$index(0, "quote") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t1 = type$.JSArray_legacy_QuoteReportFields; defaultColumns = A._setArrayType([B.QuoteReportFields_17, B.QuoteReportFields_3, B.QuoteReportFields_1, B.QuoteReportFields_20, B.QuoteReportFields_22], t1); t2 = quoteReportSettings.columns._list; t3 = type$.legacy_QuoteReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.quoteReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,QuoteReportFields*>")).super$Iterable$where(0, new A.quoteReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = quoteMap.get$keys(quoteMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_String, t7 = userCompany.company, t8 = type$.JSArray_legacy_ReportElement, t9 = quoteMap._map$_map; t2.moveNext$0();) { quote = t9.$index(0, t2.__js_helper$_current); t10 = quote.clientId; client = clientMap._map$_map.$index(0, t10); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t10 = quote.invitations._list; if (t10.length === 0) continue; contact = client.getContact$1(B.JSArray_methods.get$first(t10).clientContactId); value = quote.isDeleted; if (value || client.isDeleted) continue; if (!t7.reportIncludeDrafts && quote.statusId === "1") continue; row = A._setArrayType([], t8); for (t10 = new J.ArrayIterator(t3, t3.length, t5), t11 = quote.id, t12 = quote.entityType, value0 = client.number, t13 = client.shippingCountryId, value1 = client.shippingPostalCode, value2 = client.shippingState, value3 = client.shippingCity, value4 = client.state, value5 = client.website, t14 = contact == null, value6 = client.phone, t15 = quote.createdUserId, t16 = quote.assignedUserId, t17 = client.settings, value7 = client.city, value8 = quote.privateNotes, value9 = quote.publicNotes, value10 = quote.taxRate1, value11 = quote.taxName1, value12 = quote.taxRate2, value13 = quote.taxName2, value14 = client.vatNumber, value15 = client.postalCode, t18 = client.countryId, value16 = quote.exchangeRate, value17 = quote.amount, value18 = quote.taxAmount, value19 = value17 - value18, t19 = t12 === B.EntityType_quote, t20 = quote.statusId, value20 = quote.archivedAt, value21 = quote.updatedAt, value22 = quote.customSurcharge4, value23 = quote.customSurcharge3, value24 = quote.customSurcharge2, value25 = quote.customSurcharge1, t21 = quote.customValue4, t22 = quote.customValue3, t23 = quote.customValue2, t24 = quote.customValue1, value26 = quote.autoBill, value27 = quote.partial, value28 = quote.dueDate, value29 = quote.date, value30 = quote.partialDueDate, value31 = quote.poNumber, value32 = quote.discount, value33 = client.shippingAddress2, value34 = client.shippingAddress1, value35 = client.address2, value36 = client.address1, value37 = client.balance, value38 = client.displayName, value39 = quote.number, t25 = value17 / value16, t26 = t7.settings, skip = false; t10.moveNext$0();) { t27 = t10.__interceptors$_current; switch (t27) { case B.QuoteReportFields_0: value40 = value17; break; case B.QuoteReportFields_1: value40 = value17; break; case B.QuoteReportFields_2: value40 = A.round(t25, 2); break; case B.QuoteReportFields_17: value40 = value39; break; case B.QuoteReportFields_3: value40 = value38; break; case B.QuoteReportFields_5: value40 = value37; break; case B.QuoteReportFields_6: value40 = value36; break; case B.QuoteReportFields_7: value40 = value35; break; case B.QuoteReportFields_10: value40 = value34; break; case B.QuoteReportFields_11: value40 = value33; break; case B.QuoteReportFields_16: value40 = B.Map_IF4bq.$index(0, quote.get$calculatedStatusId()); if (value40 == null) value40 = ""; break; case B.QuoteReportFields_18: value40 = value32; break; case B.QuoteReportFields_19: value40 = value31; break; case B.QuoteReportFields_21: value40 = value30; break; case B.QuoteReportFields_20: value40 = value29; break; case B.QuoteReportFields_22: value40 = value28; break; case B.QuoteReportFields_23: value40 = value27; break; case B.QuoteReportFields_24: value40 = value26; break; case B.QuoteReportFields_25: value40 = A.presentCustomField(t7, "invoice1", t24); break; case B.QuoteReportFields_26: value40 = A.presentCustomField(t7, "invoice2", t23); break; case B.QuoteReportFields_27: value40 = A.presentCustomField(t7, "invoice3", t22); break; case B.QuoteReportFields_28: value40 = A.presentCustomField(t7, "invoice4", t21); break; case B.QuoteReportFields_29: value40 = value25; break; case B.QuoteReportFields_30: value40 = value24; break; case B.QuoteReportFields_31: value40 = value23; break; case B.QuoteReportFields_32: value40 = value22; break; case B.QuoteReportFields_33: value40 = value21; break; case B.QuoteReportFields_34: value40 = value20; break; case B.QuoteReportFields_35: value40 = value; break; case B.QuoteReportFields_36: value40 = t19 && B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], t6), t20); break; case B.QuoteReportFields_37: value40 = value18; break; case B.QuoteReportFields_38: value40 = value19; break; case B.QuoteReportFields_39: value40 = value16; break; case B.QuoteReportFields_9: t28 = staticState.countryMap._map$_map.$index(0, t18); value40 = t28 == null ? _null : t28.name; if (value40 == null) value40 = ""; break; case B.QuoteReportFields_44: value40 = value15; break; case B.QuoteReportFields_42: value40 = value14; break; case B.QuoteReportFields_49: value40 = value11; break; case B.QuoteReportFields_46: value40 = value10; break; case B.QuoteReportFields_50: value40 = value13; break; case B.QuoteReportFields_47: value40 = value12; break; case B.QuoteReportFields_51: value40 = value11; break; case B.QuoteReportFields_48: value40 = value10; break; case B.QuoteReportFields_40: value40 = value9; break; case B.QuoteReportFields_41: value40 = value8; break; case B.QuoteReportFields_43: value40 = value7; break; case B.QuoteReportFields_52: t28 = staticState.currencyMap; t29 = t17.currencyId; t29 = t28._map$_map.$index(0, t29); value40 = t29 == null ? _null : t29.name; if (value40 == null) value40 = ""; break; case B.QuoteReportFields_53: value40 = quote.get$isViewed(); break; case B.QuoteReportFields_54: t28 = userMap._map$_map.$index(0, t16); if (t28 == null) value40 = _null; else { t29 = B.JSString_methods.trim$0(t28.firstName + " " + t28.lastName); t28 = t29.length !== 0 ? t29 : t28.email; value40 = t28; } if (value40 == null) value40 = ""; break; case B.QuoteReportFields_55: t28 = userMap._map$_map.$index(0, t15); if (t28 == null) value40 = _null; else { t29 = B.JSString_methods.trim$0(t28.firstName + " " + t28.lastName); t28 = t29.length !== 0 ? t29 : t28.email; value40 = t28; } if (value40 == null) value40 = ""; break; case B.QuoteReportFields_56: value40 = value6; break; case B.QuoteReportFields_57: value40 = t14 ? _null : contact.email; if (value40 == null) value40 = ""; break; case B.QuoteReportFields_59: value40 = t14 ? _null : B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); if (value40 == null) value40 = ""; break; case B.QuoteReportFields_58: value40 = t14 ? _null : contact.phone; if (value40 == null) value40 = ""; break; case B.QuoteReportFields_45: value40 = value5; break; case B.QuoteReportFields_8: value40 = value4; break; case B.QuoteReportFields_12: value40 = value3; break; case B.QuoteReportFields_13: value40 = value2; break; case B.QuoteReportFields_14: value40 = value1; break; case B.QuoteReportFields_15: t28 = staticState.countryMap._map$_map.$index(0, t13); value40 = t28 == null ? _null : t28.name; if (value40 == null) value40 = ""; break; case B.QuoteReportFields_4: value40 = value0; break; default: value40 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t27), _null, reportsUIState, userCompany, value40)) skip = true; t28 = J.getInterceptor$(value40); if (t28.get$runtimeType(value40) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value40, t12, t11)); else if (t28.get$runtimeType(value40) === B.Type_double_K1J || t28.get$runtimeType(value40) === B.Type_int_tHn) { currencyId = t17.currencyId; if (B.JSArray_methods.contains$1(A._setArrayType([B.QuoteReportFields_2], t1), t27)) { currencyId = t26.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value40, _null, currencyId, value16, t12, t11)); } else row.push(new A.ReportStringValue(value40, t12, t11)); } if (!skip) { data.push(row); entities.push(quote); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.quoteReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.quoteReport_closure2(quoteReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_QuoteReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_m9u, new A.quoteReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.quoteReport_closure4(), t1), true, t3), data, entities, true); }, QuoteReportFields: function QuoteReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedQuoteReport_closure: function memoizedQuoteReport_closure() { }, quoteReport_closure: function quoteReport_closure() { }, quoteReport_closure0: function quoteReport_closure0() { }, quoteReport_closure1: function quoteReport_closure1() { }, quoteReport_closure2: function quoteReport_closure2(t0, t1) { this.quoteReportSettings = t0; this.selectedColumns = t1; }, quoteReport_closure3: function quoteReport_closure3() { }, quoteReport_closure4: function quoteReport_closure4() { }, recurringExpenseReport(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState) { var t2, reportSettings, expenseReportSettings, defaultColumns, t3, columns, t4, t5, t6, t7, expense, t8, client, invoice, vendor, row, value, t9, t10, value0, value1, t11, value2, value3, t12, t13, t14, value4, value5, value6, value7, value8, value9, value10, t15, value11, value12, t16, value13, value14, t17, skip, t18, value15, t19, t20, selectedColumns, _null = null, _s17_ = "recurring_expense", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = $.$get$navigatorKey(); t1.toString; t1 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = userCompany.settings; reportSettings = t2 == null ? _null : t2.reportSettings; expenseReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s17_) ? reportSettings._map$_map.$index(0, _s17_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); defaultColumns = A._setArrayType([B.RecurringExpenseReportFields_1, B.RecurringExpenseReportFields_4, B.RecurringExpenseReportFields_12, B.RecurringExpenseReportFields_18, B.RecurringExpenseReportFields_23, B.RecurringExpenseReportFields_28, B.RecurringExpenseReportFields_29, B.RecurringExpenseReportFields_30], type$.JSArray_legacy_RecurringExpenseReportFields); t2 = expenseReportSettings.columns._list; t3 = type$.legacy_RecurringExpenseReportFields; if (t2.length !== 0) { t2 = new A.MappedListIterable(t2, new A.recurringExpenseReport_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,RecurringExpenseReportFields*>")).super$Iterable$where(0, new A.recurringExpenseReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t3); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t3); for (t2 = expenseMap.get$keys(expenseMap), t3 = t2._map, t2 = A.LinkedHashMapKeyIterator$(t3, t3._modifications, A._instanceType(t2)._precomputed1), t3 = columns._list, t4 = A._arrayInstanceType(t3), t5 = t4._eval$1("ArrayIterator<1>"), t6 = type$.JSArray_legacy_ReportElement, t7 = expenseMap._map$_map; t2.moveNext$0();) { expense = t7.$index(0, t2.__js_helper$_current); t8 = expense.clientId; client = clientMap._map$_map.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t8 = expense.invoiceId; invoice = invoiceMap._map$_map.$index(0, t8); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); t8 = expense.vendorId; vendor = vendorMap._map$_map.$index(0, t8); if (vendor == null) vendor = A.VendorEntity_VendorEntity(_null, _null, _null); if (expense.isDeleted) continue; row = A._setArrayType([], t6); for (t8 = new J.ArrayIterator(t3, t3.length, t5), value = expense.id, t9 = expense.entityType, t10 = invoice.remainingCycles, value0 = A.S(t10), t10 = t10 === -1, value1 = invoice.nextSendDate, t11 = invoice.frequencyId, value2 = expense.privateNotes, value3 = expense.publicNotes, t12 = expense.createdUserId, t13 = expense.assignedUserId, t14 = expense.categoryId, value4 = expense.customValue4, value5 = expense.customValue3, value6 = expense.customValue2, value7 = expense.customValue1, value8 = expense.taxRate3, value9 = expense.taxRate2, value10 = expense.taxRate1, t15 = expense.paymentTypeId, value11 = expense.paymentDate, value12 = expense.date, t16 = expense.currencyId, value13 = expense.transactionReference, value14 = expense.amount, t17 = expense.usesInclusiveTaxes, skip = false; t8.moveNext$0();) { t18 = t8.__interceptors$_current; switch (t18) { case B.RecurringExpenseReportFields_0: value15 = value; break; case B.RecurringExpenseReportFields_1: value15 = t17 ? value14 : value14 + (expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3()); break; case B.RecurringExpenseReportFields_2: value15 = t17 ? value14 - (expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3()) : value14; break; case B.RecurringExpenseReportFields_3: value15 = expense.get$calculateTaxAmount1() + expense.get$calculateTaxAmount2() + expense.get$calculateTaxAmount3(); break; case B.RecurringExpenseReportFields_4: value15 = value13; break; case B.RecurringExpenseReportFields_5: t19 = staticState.currencyMap._map$_map.$index(0, t16); value15 = t19 == null ? _null : t19.name; if (value15 == null) value15 = ""; break; case B.RecurringExpenseReportFields_6: value15 = value12; break; case B.RecurringExpenseReportFields_7: value15 = value11; break; case B.RecurringExpenseReportFields_8: t19 = staticState.paymentTypeMap._map$_map.$index(0, t15); value15 = t19 == null ? _null : t19.name; if (value15 == null) value15 = ""; break; case B.RecurringExpenseReportFields_9: value15 = value10; break; case B.RecurringExpenseReportFields_10: value15 = value9; break; case B.RecurringExpenseReportFields_11: value15 = value8; break; case B.RecurringExpenseReportFields_12: value15 = client.displayName; break; case B.RecurringExpenseReportFields_13: value15 = client.balance; break; case B.RecurringExpenseReportFields_14: value15 = client.address1; break; case B.RecurringExpenseReportFields_15: value15 = client.address2; break; case B.RecurringExpenseReportFields_16: value15 = client.shippingAddress1; break; case B.RecurringExpenseReportFields_17: value15 = client.shippingAddress2; break; case B.RecurringExpenseReportFields_18: value15 = vendor.name; break; case B.RecurringExpenseReportFields_19: value15 = value7; break; case B.RecurringExpenseReportFields_20: value15 = value6; break; case B.RecurringExpenseReportFields_21: value15 = value5; break; case B.RecurringExpenseReportFields_22: value15 = value4; break; case B.RecurringExpenseReportFields_23: t19 = expenseCategoryMap._map$_map.$index(0, t14); value15 = t19 == null ? _null : t19.name; if (value15 == null) value15 = ""; break; case B.RecurringExpenseReportFields_24: t19 = userMap._map$_map.$index(0, t13); if (t19 == null) value15 = _null; else { t20 = B.JSString_methods.trim$0(t19.firstName + " " + t19.lastName); t19 = t20.length !== 0 ? t20 : t19.email; value15 = t19; } if (value15 == null) value15 = ""; break; case B.RecurringExpenseReportFields_25: t19 = userMap._map$_map.$index(0, t12); if (t19 == null) value15 = _null; else { t20 = B.JSString_methods.trim$0(t19.firstName + " " + t19.lastName); t19 = t20.length !== 0 ? t20 : t19.email; value15 = t19; } if (value15 == null) value15 = ""; break; case B.RecurringExpenseReportFields_26: value15 = value3; break; case B.RecurringExpenseReportFields_27: value15 = value2; break; case B.RecurringExpenseReportFields_28: value15 = t1.lookup$1(B.Map_tOn4d.$index(0, t11)); break; case B.RecurringExpenseReportFields_29: value15 = value1; break; case B.RecurringExpenseReportFields_30: if (t10) { t1.toString; t19 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "endless"); value15 = t19 == null ? "" : t19; } else value15 = value0; break; default: value15 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t18), _null, reportsUIState, userCompany, value15)) skip = true; t18 = J.getInterceptor$(value15); if (t18.get$runtimeType(value15) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value15, t9, value)); else if (t18.get$runtimeType(value15) === B.Type_double_K1J || t18.get$runtimeType(value15) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value15, _null, t16, _null, t9, value)); else row.push(new A.ReportStringValue(value15, t9, value)); } if (!skip) { data.push(row); entities.push(expense); } } t1 = t4._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t3, new A.recurringExpenseReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.recurringExpenseReport_closure2(expenseReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_RecurringExpenseReportFields_and_legacy_String; t3 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_oqK, new A.recurringExpenseReport_closure3(), t1), true, t3), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.recurringExpenseReport_closure4(), t1), true, t3), data, entities, true); }, RecurringExpenseReportFields: function RecurringExpenseReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedRecurringExpenseReport_closure: function memoizedRecurringExpenseReport_closure() { }, recurringExpenseReport_closure: function recurringExpenseReport_closure() { }, recurringExpenseReport_closure0: function recurringExpenseReport_closure0() { }, recurringExpenseReport_closure1: function recurringExpenseReport_closure1() { }, recurringExpenseReport_closure2: function recurringExpenseReport_closure2(t0, t1) { this.expenseReportSettings = t0; this.selectedColumns = t1; }, recurringExpenseReport_closure3: function recurringExpenseReport_closure3() { }, recurringExpenseReport_closure4: function recurringExpenseReport_closure4() { }, recurringInvoiceReport(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState) { var t2, reportSettings, invoiceReportSettings, defaultColumns, t3, t4, columns, t5, t6, t7, t8, t9, invoice, t10, client, contact, value, row, value0, t11, value1, t12, value2, value3, t13, t14, value4, value5, value6, value7, value8, t15, value9, t16, value10, t17, t18, t19, t20, t21, value11, value12, value13, value14, value15, value16, value17, value18, value19, t22, value20, value21, value22, value23, t23, value24, value25, value26, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, value38, value39, value40, value41, value42, value43, value44, value45, t24, t25, skip, t26, value46, t27, t28, currencyId, selectedColumns, _null = null, _s17_ = "recurring_invoice", data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = $.$get$navigatorKey(); t1.toString; t1 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = userCompany.settings; reportSettings = t2 == null ? _null : t2.reportSettings; invoiceReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, _s17_) ? reportSettings._map$_map.$index(0, _s17_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t2 = type$.JSArray_legacy_RecurringInvoiceReportFields; defaultColumns = A._setArrayType([B.RecurringInvoiceReportFields_20, B.RecurringInvoiceReportFields_3, B.RecurringInvoiceReportFields_1, B.RecurringInvoiceReportFields_64, B.RecurringInvoiceReportFields_65, B.RecurringInvoiceReportFields_66], t2); t3 = invoiceReportSettings.columns._list; t4 = type$.legacy_RecurringInvoiceReportFields; if (t3.length !== 0) { t3 = new A.MappedListIterable(t3, new A.recurringInvoiceReport_closure(), A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,RecurringInvoiceReportFields*>")).super$Iterable$where(0, new A.recurringInvoiceReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")), t4); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t4); for (t3 = invoiceMap.get$keys(invoiceMap), t4 = t3._map, t3 = A.LinkedHashMapKeyIterator$(t4, t4._modifications, A._instanceType(t3)._precomputed1), t4 = columns._list, t5 = A._arrayInstanceType(t4), t6 = t5._eval$1("ArrayIterator<1>"), t7 = userCompany.company, t8 = type$.JSArray_legacy_ReportElement, t9 = invoiceMap._map$_map; t3.moveNext$0();) { invoice = t9.$index(0, t3.__js_helper$_current); t10 = invoice.clientId; client = clientMap._map$_map.$index(0, t10); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t10 = invoice.invitations._list; if (t10.length === 0) continue; contact = client.getContact$1(B.JSArray_methods.get$first(t10).clientContactId); value = invoice.isDeleted; if (value || client.isDeleted) continue; if (!t7.reportIncludeDrafts && invoice.statusId === "1") continue; row = A._setArrayType([], t8); for (t10 = new J.ArrayIterator(t4, t4.length, t6), value0 = invoice.id, t11 = invoice.entityType, value1 = client.number, t12 = invoice.remainingCycles, value2 = A.S(t12), t12 = t12 === -1, value3 = invoice.nextSendDate, t13 = invoice.frequencyId, t14 = client.shippingCountryId, value4 = client.shippingPostalCode, value5 = client.shippingState, value6 = client.shippingCity, value7 = client.state, value8 = client.website, t15 = contact == null, value9 = client.phone, t16 = t11 === B.EntityType_invoice, value10 = invoice.statusId === "4", t17 = invoice.vendorId, t18 = invoice.projectId, t19 = invoice.createdUserId, t20 = invoice.assignedUserId, t21 = client.settings, value11 = client.city, value12 = invoice.privateNotes, value13 = invoice.publicNotes, value14 = invoice.taxRate1, value15 = invoice.taxName1, value16 = invoice.taxRate2, value17 = invoice.taxName2, value18 = client.vatNumber, value19 = client.postalCode, t22 = client.countryId, value20 = invoice.exchangeRate, value21 = invoice.amount, value22 = invoice.taxAmount, value23 = value21 - value22, t23 = invoice.createdAt, value24 = invoice.customSurcharge4, value25 = invoice.customSurcharge3, value26 = invoice.customSurcharge2, value27 = invoice.customSurcharge1, value28 = invoice.customValue4, value29 = invoice.customValue3, value30 = invoice.customValue2, value31 = invoice.customValue1, value32 = invoice.autoBill, value33 = invoice.reminderLastSent, value34 = invoice.reminder3Sent, value35 = invoice.reminder2Sent, value36 = invoice.reminder1Sent, value37 = invoice.poNumber, value38 = invoice.discount, value39 = invoice.number, value40 = client.shippingAddress2, value41 = client.shippingAddress1, value42 = client.address2, value43 = client.address1, value44 = client.balance, value45 = client.displayName, t24 = value21 / value20, t23 *= 1000, t25 = t7.settings, skip = false; t10.moveNext$0();) { t26 = t10.__interceptors$_current; switch (t26) { case B.RecurringInvoiceReportFields_0: value46 = value0; break; case B.RecurringInvoiceReportFields_1: value46 = value21; break; case B.RecurringInvoiceReportFields_2: value46 = A.round(t24, 2); break; case B.RecurringInvoiceReportFields_3: value46 = value45; break; case B.RecurringInvoiceReportFields_5: value46 = value44; break; case B.RecurringInvoiceReportFields_6: value46 = value43; break; case B.RecurringInvoiceReportFields_7: value46 = value42; break; case B.RecurringInvoiceReportFields_12: value46 = value41; break; case B.RecurringInvoiceReportFields_13: value46 = value40; break; case B.RecurringInvoiceReportFields_19: value46 = B.Map_j34mP.$index(0, invoice.get$calculatedStatusId()); if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_20: value46 = value39; break; case B.RecurringInvoiceReportFields_21: value46 = value38; break; case B.RecurringInvoiceReportFields_22: value46 = value37; break; case B.RecurringInvoiceReportFields_40: value46 = value36; break; case B.RecurringInvoiceReportFields_41: value46 = value35; break; case B.RecurringInvoiceReportFields_42: value46 = value34; break; case B.RecurringInvoiceReportFields_43: value46 = value33; break; case B.RecurringInvoiceReportFields_23: value46 = value32; break; case B.RecurringInvoiceReportFields_24: value46 = value31; break; case B.RecurringInvoiceReportFields_25: value46 = value30; break; case B.RecurringInvoiceReportFields_26: value46 = value29; break; case B.RecurringInvoiceReportFields_27: value46 = value28; break; case B.RecurringInvoiceReportFields_28: value46 = invoice.get$hasExpenses(); break; case B.RecurringInvoiceReportFields_29: value46 = invoice.get$hasTasks(); break; case B.RecurringInvoiceReportFields_30: value46 = value27; break; case B.RecurringInvoiceReportFields_31: value46 = value26; break; case B.RecurringInvoiceReportFields_32: value46 = value25; break; case B.RecurringInvoiceReportFields_33: value46 = value24; break; case B.RecurringInvoiceReportFields_34: t27 = new A.DateTime(t23, true); t27.DateTime$_withValue$2$isUtc(t23, true); value46 = t27.toIso8601String$0(); break; case B.RecurringInvoiceReportFields_35: t27 = new A.DateTime(t23, true); t27.DateTime$_withValue$2$isUtc(t23, true); value46 = t27.toIso8601String$0(); break; case B.RecurringInvoiceReportFields_36: value46 = value; break; case B.RecurringInvoiceReportFields_37: value46 = value22; break; case B.RecurringInvoiceReportFields_38: value46 = value23; break; case B.RecurringInvoiceReportFields_39: value46 = invoice.get$netBalanceOrAmount(); break; case B.RecurringInvoiceReportFields_44: value46 = value20; break; case B.RecurringInvoiceReportFields_11: t27 = staticState.countryMap._map$_map.$index(0, t22); value46 = t27 == null ? _null : t27.name; if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_10: value46 = value19; break; case B.RecurringInvoiceReportFields_8: value46 = value18; break; case B.RecurringInvoiceReportFields_51: value46 = value15; break; case B.RecurringInvoiceReportFields_48: value46 = value14; break; case B.RecurringInvoiceReportFields_52: value46 = value17; break; case B.RecurringInvoiceReportFields_49: value46 = value16; break; case B.RecurringInvoiceReportFields_53: value46 = value15; break; case B.RecurringInvoiceReportFields_50: value46 = value14; break; case B.RecurringInvoiceReportFields_45: value46 = value13; break; case B.RecurringInvoiceReportFields_46: value46 = value12; break; case B.RecurringInvoiceReportFields_9: value46 = value11; break; case B.RecurringInvoiceReportFields_54: t27 = staticState.currencyMap; t28 = t21.currencyId; t28 = t27._map$_map.$index(0, t28); value46 = t28 == null ? _null : t28.name; if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_55: t27 = userMap._map$_map.$index(0, t20); if (t27 == null) value46 = _null; else { t28 = B.JSString_methods.trim$0(t27.firstName + " " + t27.lastName); t27 = t28.length !== 0 ? t28 : t27.email; value46 = t27; } if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_56: t27 = userMap._map$_map.$index(0, t19); if (t27 == null) value46 = _null; else { t28 = B.JSString_methods.trim$0(t27.firstName + " " + t27.lastName); t27 = t28.length !== 0 ? t28 : t27.email; value46 = t27; } if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_57: t27 = projectMap._map$_map.$index(0, t18); value46 = (t27 == null ? A.ProjectEntity_ProjectEntity(_null, _null, _null, _null) : t27).name; break; case B.RecurringInvoiceReportFields_58: t27 = vendorMap._map$_map.$index(0, t17); value46 = (t27 == null ? A.VendorEntity_VendorEntity(_null, _null, _null) : t27).name; break; case B.RecurringInvoiceReportFields_59: value46 = t16 && value10; break; case B.RecurringInvoiceReportFields_60: value46 = value9; break; case B.RecurringInvoiceReportFields_61: value46 = t15 ? _null : contact.email; if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_63: value46 = t15 ? _null : B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_62: value46 = t15 ? _null : contact.phone; if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_47: value46 = value8; break; case B.RecurringInvoiceReportFields_14: value46 = value7; break; case B.RecurringInvoiceReportFields_15: value46 = value6; break; case B.RecurringInvoiceReportFields_16: value46 = value5; break; case B.RecurringInvoiceReportFields_17: value46 = value4; break; case B.RecurringInvoiceReportFields_18: t27 = staticState.countryMap._map$_map.$index(0, t14); value46 = t27 == null ? _null : t27.name; if (value46 == null) value46 = ""; break; case B.RecurringInvoiceReportFields_64: value46 = t1.lookup$1(B.Map_tOn4d.$index(0, t13)); break; case B.RecurringInvoiceReportFields_65: value46 = value3; break; case B.RecurringInvoiceReportFields_66: if (t12) { t1.toString; t27 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "endless"); value46 = t27 == null ? "" : t27; } else value46 = value2; break; case B.RecurringInvoiceReportFields_4: value46 = value1; break; default: value46 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t26), _null, reportsUIState, userCompany, value46)) skip = true; t27 = J.getInterceptor$(value46); if (t27.get$runtimeType(value46) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value46, t11, value0)); else if (t27.get$runtimeType(value46) === B.Type_double_K1J || t27.get$runtimeType(value46) === B.Type_int_tHn) { currencyId = t21.currencyId; if (B.JSArray_methods.contains$1(A._setArrayType([B.RecurringInvoiceReportFields_2], t2), t26)) { currencyId = t25.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value46, _null, currencyId, value20, t11, value0)); } else row.push(new A.ReportStringValue(value46, t11, value0)); } if (!skip) { data.push(row); entities.push(invoice); } } t1 = t5._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t4, new A.recurringInvoiceReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.recurringInvoiceReport_closure2(invoiceReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_RecurringInvoiceReportFields_and_legacy_String; t4 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_QXJ, new A.recurringInvoiceReport_closure3(), t1), true, t4), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.recurringInvoiceReport_closure4(), t1), true, t4), data, entities, true); }, RecurringInvoiceReportFields: function RecurringInvoiceReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedRecurringInvoiceReport_closure: function memoizedRecurringInvoiceReport_closure() { }, recurringInvoiceReport_closure: function recurringInvoiceReport_closure() { }, recurringInvoiceReport_closure0: function recurringInvoiceReport_closure0() { }, recurringInvoiceReport_closure1: function recurringInvoiceReport_closure1() { }, recurringInvoiceReport_closure2: function recurringInvoiceReport_closure2(t0, t1) { this.invoiceReportSettings = t0; this.selectedColumns = t1; }, recurringInvoiceReport_closure3: function recurringInvoiceReport_closure3() { }, recurringInvoiceReport_closure4: function recurringInvoiceReport_closure4() { }, ReportCharts: function ReportCharts(t0, t1) { this.viewModel = t0; this.key = t1; }, ReportCharts_build_closure: function ReportCharts_build_closure(t0) { this.state = t0; }, ReportCharts_build_closure1: function ReportCharts_build_closure1(t0, t1) { this.columnType = t0; this.localization = t1; }, ReportCharts_build_closure2: function ReportCharts_build_closure2() { }, ReportCharts_build_closure0: function ReportCharts_build_closure0(t0, t1) { this.$this = t0; this.reportState = t1; }, ReportCharts_build_closure3: function ReportCharts_build_closure3() { }, ReportCharts_build_closure4: function ReportCharts_build_closure4() { }, ReportCharts_build_closure5: function ReportCharts_build_closure5(t0) { this.state = t0; }, ReportCharts_build_closure7: function ReportCharts_build_closure7() { }, ReportCharts_build_closure8: function ReportCharts_build_closure8() { }, ReportCharts_build_closure6: function ReportCharts_build_closure6(t0, t1) { this.$this = t0; this.reportState = t1; }, canTotalColumn(column) { if (column === "notification_threshold") return false; if (J.contains$1$asx(column, "_rate")) return false; return true; }, getReportColumnType(column, context) { var t1, t2, company; column = A.toSnakeCase(column); t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = t2._list[t1].userCompany.company; if (B.JSString_methods.startsWith$1(column, "surcharge")) return B.ReportColumnType_3; else if (column === "duration") return B.ReportColumnType_6; else if (company.getCustomFieldLabel$1(column).length !== 0) return new A.getReportColumnType_convertCustomFieldType().call$1(company.getCustomFieldType$1(column)); else if (A.EntityPresenter_isFieldNumeric(column)) return B.ReportColumnType_3; else { t1 = type$.JSArray_legacy_String; if (B.JSArray_methods.contains$1(A._setArrayType(["updated_at", "created_at", "start_time", "end_time"], t1), column)) return B.ReportColumnType_1; else if (B.JSString_methods.contains$1(column, "_date") && column !== "paid_to_date" || B.JSArray_methods.contains$1(A._setArrayType(["date", "valid_until"], t1), column)) return B.ReportColumnType_2; else if (column === "age") return B.ReportColumnType_5; else if (B.JSString_methods.startsWith$1(column, "is_")) return B.ReportColumnType_4; else return B.ReportColumnType_0; } }, ReportResult_matchField(column, localization, reportsUIState, userCompany, value) { var filter, min, boolFilter, t1 = reportsUIState.filters._map$_map; if (t1.containsKey$1(0, column)) { filter = t1.$index(0, column); if (filter.length !== 0) if (column === "age") { min = B.Map_gpKp8.$index(0, filter); if (filter === "age_group_paid") return J.$eq$(value, -1); else if (filter === "age_group_120") return J.$gt$n(value, min); else { t1 = J.getInterceptor$n(value); if (t1.$lt(value, min) || t1.$ge(value, min + 30)) return false; } } else { t1 = J.getInterceptor$(value); if (t1.get$runtimeType(value) === B.Type_int_tHn || t1.get$runtimeType(value) === B.Type_double_K1J) { if (!A.ReportResult_matchAmount(value, filter)) return false; } else if (t1.get$runtimeType(value) === B.Type_bool_lhE || filter === "true" || filter === "false") { if (filter.toLowerCase() === "yes") boolFilter = "true"; else boolFilter = filter.toLowerCase() === "no" ? "false" : filter; if (t1.get$runtimeType(value) === B.Type_String_k8F) if (J.$eq$(t1.toLowerCase$0(value), "yes")) value = "true"; else if (J.$eq$(t1.toLowerCase$0(value), "no")) value = "false"; if (boolFilter !== A.S(value)) return false; } else if (t1.get$runtimeType(value) === B.Type_EntityType_6qb) return filter.toLowerCase() === A.S(value).toLowerCase(); else if (A.isValidDate(value)) { if (!A.ReportResult_matchDateTime(filter, reportsUIState, userCompany, value)) return false; } else if (!A.ReportResult_matchString(filter, value)) return false; } } return true; }, ReportResult_matchString(filter, value) { var t1; filter = B.JSString_methods.trim$0(filter); if (filter.length === 0) return true; t1 = value == null ? "" : value; value = t1.toLowerCase(); filter = filter.toLowerCase(); if (filter === "null" && value.length === 0) return true; if (B.JSString_methods.contains$1(value, filter)) return true; t1 = $.$get$navigatorKey(); t1.toString; if (B.JSString_methods.contains$1(A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(value).toLowerCase(), filter)) return true; return false; }, ReportResult_matchAmount(amount, filter) { var t1, parts = (A.stringReplaceAllUnchecked(filter, ",", "-") + "-").split("-"), min = A.parseDouble(parts[0], false), max = parts.length > 1 ? A.parseDouble(parts[1], false) : 0; if (!(amount < min)) t1 = max > 0 && amount > max; else t1 = true; if (t1) return false; return true; }, ReportResult_matchDateTime(filter, reportsUIState, userCompany, value) { var exception, t1, t2, t3, startDate, endDate, dateRange = B.DateRange_last30Days; try { dateRange = A._$valueOf0(filter); } catch (exception) { } t1 = userCompany.company; t2 = reportsUIState.customStartDate; t3 = reportsUIState.customEndDate; startDate = A.calculateStartDate(t1, t3, t2, dateRange, 0); endDate = A.calculateEndDate(t1, t3, t2, dateRange, 0); value = B.JSArray_methods.get$first(value.split("T")); if (dateRange === B.DateRange_custom) { t1 = t2.length !== 0; if (t1 && t3.length !== 0) { if (!(J.compareTo$1$ns(startDate, value) <= 0 && J.compareTo$1$ns(endDate, value) >= 0)) return false; } else if (t1) { if (J.compareTo$1$ns(startDate, value) > 0) return false; } else if (t3.length !== 0) if (J.compareTo$1$ns(endDate, value) < 0) return false; } else if (!(J.compareTo$1$ns(startDate, value) <= 0 && J.compareTo$1$ns(endDate, value) >= 0)) return false; return true; }, sortReportTableRows(rowA, rowB, reportSettings, columns) { var index, valueA, valueB, t1 = reportSettings.sortColumn; if (t1.length === 0) return 0; index = B.JSArray_methods.indexOf$1(columns, t1); if (index === -1) return 0; else { t1 = J.getInterceptor$asx(rowA); if (t1.get$length(rowA) <= index || J.get$length$asx(rowB) <= index) return 0; } valueA = J.get$value$x(t1.$index(rowA, index)); valueB = J.get$value$x(J.$index$asx(rowB, index)); if (reportSettings.sortAscending) return J.compareTo$1$ns(valueA, valueB); else return J.compareTo$1$ns(valueB, valueA); }, ReportsScreen: function ReportsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ReportsScreen_build_closure: function ReportsScreen_build_closure(t0) { this.localization = t0; }, ReportsScreen_build__closure5: function ReportsScreen_build__closure5(t0) { this.context = t0; }, ReportsScreen_build_closure0: function ReportsScreen_build_closure0(t0, t1) { this.reportsState = t0; this.context = t1; }, ReportsScreen_build_closure1: function ReportsScreen_build_closure1() { }, ReportsScreen_build_closure3: function ReportsScreen_build_closure3(t0) { this.$this = t0; }, ReportsScreen_build_closure2: function ReportsScreen_build_closure2(t0) { this.localization = t0; }, ReportsScreen_build_closure6: function ReportsScreen_build_closure6(t0) { this.$this = t0; }, ReportsScreen_build_closure4: function ReportsScreen_build_closure4(t0) { this.context = t0; }, ReportsScreen_build_closure5: function ReportsScreen_build_closure5(t0, t1) { this.state = t0; this.localization = t1; }, ReportsScreen_build_closure7: function ReportsScreen_build_closure7(t0) { this.$this = t0; }, ReportsScreen_build_closure8: function ReportsScreen_build_closure8(t0, t1) { this.context = t0; this.reportState = t1; }, ReportsScreen_build_closure9: function ReportsScreen_build_closure9(t0) { this.context = t0; }, ReportsScreen_build_closure11: function ReportsScreen_build_closure11(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.reportState = t2; _.filterColumns = t3; }, ReportsScreen_build__closure4: function ReportsScreen_build__closure4(t0, t1, t2) { this.value = t0; this.filterColumns = t1; this.reportState = t2; }, ReportsScreen_build_closure10: function ReportsScreen_build_closure10(t0) { this.localization = t0; }, ReportsScreen_build_closure12: function ReportsScreen_build_closure12(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.reportState = t2; _.dateField = t3; _.dateColumns = t4; }, ReportsScreen_build__closure3: function ReportsScreen_build__closure3(t0, t1, t2) { this.dateField = t0; this.dateColumns = t1; this.value = t2; }, ReportsScreen_build_closure13: function ReportsScreen_build_closure13(t0) { this.localization = t0; }, ReportsScreen_build_closure14: function ReportsScreen_build_closure14(t0) { this.$this = t0; }, ReportsScreen_build_closure15: function ReportsScreen_build_closure15(t0) { this.$this = t0; }, ReportsScreen_build_closure18: function ReportsScreen_build_closure18(t0) { this.$this = t0; }, ReportsScreen_build_closure16: function ReportsScreen_build_closure16(t0) { this.context = t0; }, ReportsScreen_build_closure17: function ReportsScreen_build_closure17(t0) { this.localization = t0; }, ReportsScreen_build_closure26: function ReportsScreen_build_closure26(t0) { this.store = t0; }, ReportsScreen_build_closure19: function ReportsScreen_build_closure19(t0, t1, t2) { this.$this = t0; this.localization = t1; this.reportResult = t2; }, ReportsScreen_build__closure2: function ReportsScreen_build__closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.reportResult = t2; }, ReportsScreen_build___closure0: function ReportsScreen_build___closure0(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure20: function ReportsScreen_build_closure20(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure21: function ReportsScreen_build_closure21(t0, t1, t2) { this.localization = t0; this.reportResult = t1; this.firstEntity = t2; }, ReportsScreen_build__closure1: function ReportsScreen_build__closure1(t0, t1) { this.reportResult = t0; this.action = t1; }, ReportsScreen_build_closure22: function ReportsScreen_build_closure22(t0, t1, t2) { this.state = t0; this.localization = t1; this.store = t2; }, ReportsScreen_build__closure0: function ReportsScreen_build__closure0(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, ReportsScreen_build_closure23: function ReportsScreen_build_closure23(t0) { this.state = t0; }, ReportsScreen_build_closure24: function ReportsScreen_build_closure24(t0, t1, t2) { this.$this = t0; this.localization = t1; this.reportResult = t2; }, ReportsScreen_build__closure: function ReportsScreen_build__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.reportResult = t2; }, ReportsScreen_build___closure: function ReportsScreen_build___closure(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure25: function ReportsScreen_build_closure25(t0, t1) { this.$this = t0; this.context = t1; }, ReportDataTable: function ReportDataTable(t0, t1) { this.viewModel = t0; this.key = t1; }, _ReportDataTableState: function _ReportDataTableState(t0, t1, t2) { var _ = this; _._textEditingControllers = t0; _._textEditingFocusNodes = t1; _._widget = _.dataTableSource = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ReportDataTableState_initState_closure: function _ReportDataTableState_initState_closure(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ReportDataTableState_initState__closure: function _ReportDataTableState_initState__closure(t0, t1) { this.column = t0; this.value = t1; }, _ReportDataTableState_didChangeDependencies_closure: function _ReportDataTableState_didChangeDependencies_closure(t0, t1, t2) { this.$this = t0; this.column = t1; this.textEditingController = t2; }, _ReportDataTableState__onChanged_closure: function _ReportDataTableState__onChanged_closure(t0, t1) { this.column = t0; this.value = t1; }, _ReportDataTableState_dispose_closure: function _ReportDataTableState_dispose_closure(t0) { this.$this = t0; }, _ReportDataTableState_dispose__closure: function _ReportDataTableState_dispose__closure(t0, t1) { this.$this = t0; this.i = t1; }, _ReportDataTableState_build_closure: function _ReportDataTableState_build_closure(t0, t1) { this.$this = t0; this.sortedColumns = t1; }, TotalsDataTable: function TotalsDataTable(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.reportSettings = t1; _.reportResult = t2; _.key = t3; }, TotalsDataTable_build_closure: function TotalsDataTable_build_closure(t0) { this.$this = t0; }, ReportColumnType: function ReportColumnType(t0, t1) { this.index = t0; this._core$_name = t1; }, getReportColumnType_convertCustomFieldType: function getReportColumnType_convertCustomFieldType() { }, ReportDataTableSource: function ReportDataTableSource(t0, t1, t2, t3, t4, t5) { var _ = this; _.viewModel = t0; _.context = t1; _.textEditingControllers = t2; _.textEditingFocusNodes = t3; _.onFilterChanged = t4; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t5; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, ReportDataTableSource_getRow_closure: function ReportDataTableSource_getRow_closure(t0) { this.$this = t0; }, ReportResult: function ReportResult(t0, t1, t2, t3, t4, t5) { var _ = this; _.columns = t0; _.allColumns = t1; _.defaultColumns = t2; _.data = t3; _.entities = t4; _.showTotals = t5; }, ReportResult_tableColumns_closure: function ReportResult_tableColumns_closure(t0, t1) { this.store = t0; this.reportState = t1; }, ReportResult_tableFilters_closure: function ReportResult_tableFilters_closure(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure0: function ReportResult_tableFilters_closure0(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure1: function ReportResult_tableFilters_closure1(t0) { this.localization = t0; }, ReportResult_tableFilters_closure2: function ReportResult_tableFilters_closure2(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure3: function ReportResult_tableFilters_closure3(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure4: function ReportResult_tableFilters_closure4(t0) { this.localization = t0; }, ReportResult_tableFilters_closure8: function ReportResult_tableFilters_closure8(t0, t1, t2) { this.$this = t0; this.column = t1; this.context = t2; }, ReportResult_tableFilters__closure: function ReportResult_tableFilters__closure(t0, t1, t2, t3) { var _ = this; _.index = t0; _.context = t1; _.column = t2; _.filter = t3; }, ReportResult_tableFilters__closure0: function ReportResult_tableFilters__closure0(t0, t1, t2) { this.index = t0; this.context = t1; this.column = t2; }, ReportResult_tableFilters_closure7: function ReportResult_tableFilters_closure7(t0, t1, t2, t3) { var _ = this; _.textEditingControllers = t0; _.column = t1; _.onFilterChanged = t2; _.textEditingFocusNodes = t3; }, ReportResult_tableFilters__closure1: function ReportResult_tableFilters__closure1(t0) { this.textEditingController = t0; }, ReportResult_tableFilters_closure5: function ReportResult_tableFilters_closure5(t0, t1, t2, t3) { var _ = this; _.textEditingControllers = t0; _.column = t1; _.onFilterChanged = t2; _.textEditingFocusNodes = t3; }, ReportResult_tableFilters__closure3: function ReportResult_tableFilters__closure3(t0, t1, t2, t3) { var _ = this; _.textEditingControllers = t0; _.column = t1; _.onFilterChanged = t2; _.textEditingFocusNodes = t3; }, ReportResult_tableFilters__closure4: function ReportResult_tableFilters__closure4(t0) { this.onFieldSubmitted = t0; }, ReportResult_tableFilters_closure6: function ReportResult_tableFilters_closure6(t0, t1) { this.theme = t0; this.store = t1; }, ReportResult_tableFilters__closure2: function ReportResult_tableFilters__closure2(t0, t1, t2, t3) { var _ = this; _.highlightedIndex = t0; _.store = t1; _.options = t2; _.onSelected = t3; }, ReportResult_tableFilters___closure: function ReportResult_tableFilters___closure(t0, t1, t2) { this.onSelected = t0; this.options = t1; this.index = t2; }, ReportResult_tableRow_closure: function ReportResult_tableRow_closure(t0) { this.cell = t0; }, ReportResult_tableRow_closure0: function ReportResult_tableRow_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.group = t0; _.column = t1; _.groupBy = t2; _.context = t3; _.reportState = t4; _.localization = t5; _.store = t6; }, ReportResult_tableRow__closure: function ReportResult_tableRow__closure(t0, t1) { this._box_0 = t0; this.column = t1; }, ReportResult_totalColumns_closure: function ReportResult_totalColumns_closure() { }, ReportResult_totalColumns_closure0: function ReportResult_totalColumns_closure0() { }, ReportResult_totalRows_closure: function ReportResult_totalRows_closure() { }, ReportResult_totalRows_closure0: function ReportResult_totalRows_closure0(t0, t1, t2) { this.reportSettings = t0; this.state = t1; this.totals = t2; }, ReportResult_totalRows__closure0: function ReportResult_totalRows__closure0() { }, ReportResult_totalRows_closure1: function ReportResult_totalRows_closure1(t0, t1) { this._box_0 = t0; this.totals = t1; }, ReportResult_totalRows_closure2: function ReportResult_totalRows_closure2() { }, ReportResult_totalRows_closure3: function ReportResult_totalRows_closure3(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.totals = t1; _.store = t2; _.context = t3; _.rows = t4; }, ReportResult_totalRows__closure: function ReportResult_totalRows__closure(t0, t1, t2, t3) { var _ = this; _.values = t0; _.context = t1; _.currencyId = t2; _.cells = t3; }, ReportElement: function ReportElement() { }, ReportStringValue: function ReportStringValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportEntityTypeValue: function ReportEntityTypeValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportAgeValue: function ReportAgeValue(t0, t1, t2, t3) { var _ = this; _.value = t0; _.currencyId = t1; _.entityType = t2; _.entityId = t3; }, ReportDurationValue: function ReportDurationValue(t0, t1, t2, t3) { var _ = this; _.value = t0; _.currencyId = t1; _.entityType = t2; _.entityId = t3; }, ReportIntValue: function ReportIntValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportNumberValue: function ReportNumberValue(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.formatNumberType = t1; _.currencyId = t2; _.exchangeRate = t3; _.entityType = t4; _.entityId = t5; }, ReportBoolValue: function ReportBoolValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportsScreenVM_fromStore(store) { var t4, allReportSettings, reportSettings, t5, groupTotals, _null = null, _box_1 = {}, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.reportsUIState, report = t2.report, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t3 = t3._list; t4 = t3[t1].userCompany; t4 = t4 == null ? _null : t4.settings; allReportSettings = t4 == null ? _null : t4.reportSettings; reportSettings = allReportSettings != null && allReportSettings._map$_map.containsKey$1(0, report) ? allReportSettings._map$_map.$index(0, report) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); t4 = _box_1.reportResult = null; switch (report) { case "invoice": t4 = $.$get$memoizedInvoiceReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$8(t5.userCompany, t2, t5.invoiceState.map, t5.clientState.map, t5.userState.map, t5.vendorState.map, t5.projectState.map, state.staticState); t4 = t5; break; case "recurring_invoice": t4 = $.$get$memoizedRecurringInvoiceReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$8(t5.userCompany, t2, t5.recurringInvoiceState.map, t5.clientState.map, t5.userState.map, t5.vendorState.map, t5.projectState.map, state.staticState); t4 = t5; break; case "document": t4 = $.$get$memoizedDocumentReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$10(t5.userCompany, t2, t5.clientState.map, t5.productState.map, t5.invoiceState.map, t5.quoteState.map, t5.expenseState.map, t5.projectState.map, t5.vendorState.map, t5.userState.map); t4 = t5; break; case "expense": t4 = $.$get$memoizedExpenseReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$10(t5.userCompany, t2, t5.expenseState.map, t5.expenseCategoryState.map, t5.invoiceState.map, t5.clientState.map, t5.vendorState.map, t5.projectState.map, t5.userState.map, state.staticState); t4 = t5; break; case "recurring_expense": t4 = $.$get$memoizedRecurringExpenseReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$9(t5.userCompany, t2, t5.recurringExpenseState.map, t5.expenseCategoryState.map, t5.invoiceState.map, t5.clientState.map, t5.vendorState.map, t5.userState.map, state.staticState); t4 = t5; break; case "payment": t4 = $.$get$memoizedPaymentReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$8(t5.userCompany, t2, t5.paymentState.map, t5.clientState.map, t5.userState.map, t5.invoiceState.map, t5.creditState.map, state.staticState); t4 = t5; break; case "product": t4 = $.$get$memoizedProductReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$6(t5.userCompany, t2, t5.productState.map, t5.vendorState.map, t5.userState.map, state.staticState); t4 = t5; break; case "task": t4 = $.$get$memoizedTaskReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$10(t5.userCompany, t2, t5.taskState.map, t5.invoiceState.map, t5.groupState.map, t5.clientState.map, t5.taskStatusState.map, t5.userState.map, t5.projectState.map, state.staticState); t4 = t5; break; case "quote": t4 = $.$get$memoizedQuoteReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$7(t5.userCompany, t2, t5.quoteState.map, t5.clientState.map, t5.vendorState.map, t5.userState.map, state.staticState); t4 = t5; break; case "invoice_tax": t4 = $.$get$memoizedInvoiceTaxReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$9(t5.userCompany, t2, t5.taxRateState.map, t5.invoiceState.map, t5.creditState.map, t5.clientState.map, t5.paymentState.map, t5.userState.map, state.staticState); t4 = t5; break; case "payment_tax": t4 = $.$get$memoizedPaymentTaxReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$9(t5.userCompany, t2, t5.taxRateState.map, t5.invoiceState.map, t5.creditState.map, t5.clientState.map, t5.paymentState.map, t5.userState.map, state.staticState); t4 = t5; break; case "credit": t4 = $.$get$memoizedCreditReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$6(t5.userCompany, t2, t5.creditState.map, t5.clientState.map, t5.userState.map, state.staticState); t4 = t5; break; case "profit_and_loss": t4 = $.$get$memoizedProfitAndLossReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$9(t5.userCompany, t2, t5.clientState.map, t5.paymentState.map, t5.expenseState.map, t5.expenseCategoryState.map, t5.vendorState.map, t5.userState.map, state.staticState); t4 = t5; break; case "invoice_item": t4 = $.$get$memoizedInvoiceItemReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$6(t5.userCompany, t2, t5.productState.map, t5.invoiceState.map, t5.clientState.map, state.staticState); t4 = t5; break; case "quote_item": t4 = $.$get$memoizedQuoteItemReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$6(t5.userCompany, t2, t5.productState.map, t5.quoteState.map, t5.clientState.map, state.staticState); t4 = t5; break; case "contact": t4 = $.$get$memoizedContactReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$5(t5.userCompany, t2, t5.clientState.map, t5.userState.map, state.staticState); t4 = t5; break; case "purchase_order": t4 = $.$get$memoizedPurchaseOrderReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$7(t5.userCompany, t2, t5.purchaseOrderState.map, t5.clientState.map, t5.vendorState.map, t5.userState.map, state.staticState); t4 = t5; break; case "client": t4 = $.$get$memoizedClientReport(); t5 = t3[t1]; t5 = _box_1.reportResult = t4.call$6(t5.userCompany, t2, t5.clientState.map, t5.userState.map, t5.groupState.map, state.staticState); t4 = t5; break; } groupTotals = $.$get$memoizeedGroupTotals().call$5(t4, t2, reportSettings, state.staticState.currencyMap, t3[t1].userCompany.company); return new A.ReportsScreenVM(state, t4, t2, groupTotals, new A.ReportsScreenVM_fromStore_closure(state, reportSettings, store), new A.ReportsScreenVM_fromStore_closure0(_box_1, state, groupTotals), new A.ReportsScreenVM_fromStore_closure1(store, report), new A.ReportsScreenVM_fromStore_closure2(store, state), new A.ReportsScreenVM_fromStore_closure3(store, state), new A.ReportsScreenVM_fromStore_closure4(state, store)); }, calculateReportTotals(company, currencyMap, reportResult, reportSettings, reportState) { var groupCurrencies, line, shouldConverCurrencies, i, row, columnIndex, toZone, groupCell, group, j, cell, column, currencyId, t3, t4, t5, t6, t7, t8, age, date, cellValue, rate, rows, sortedColumns, t1 = type$.legacy_String, totals = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_double), data = reportResult.data, columns = reportResult.columns, t2 = reportState.group; if (t2.length === 0) return new A.GroupTotals(null, null); groupCurrencies = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_String); for (line = "## ERROR: colum not found - " + t2, shouldConverCurrencies = false, i = 0; i < data.length; ++i) { row = data[i]; columnIndex = B.JSArray_methods.indexOf$1(columns, t2); if (columnIndex === -1) { toZone = $.printToZone; if (toZone == null) A.printString(line); else toZone.call$1(line); continue; } groupCell = row[columnIndex]; group = groupCell.get$stringValue(groupCell); if (!groupCurrencies.containsKey$1(0, group)) groupCurrencies.$indexSet(0, group, A.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); for (j = 0; j < row.length; ++j) { cell = row[j]; column = columns[j]; if (cell instanceof A.ReportNumberValue) { currencyId = groupCurrencies.$index(0, group).$index(0, column); if (currencyId == null) currencyId = ""; if (currencyId.length !== 0 && currencyId !== cell.currencyId) { shouldConverCurrencies = true; break; } groupCurrencies.$index(0, group).$indexSet(0, column, cell.currencyId); } } } for (t3 = reportState.subgroup, t4 = t3 === "week", t5 = t3 === "month", t3 = t3 === "year", t6 = type$.legacy_double, i = 0; i < data.length; ++i) { row = data[i]; columnIndex = B.JSArray_methods.indexOf$1(columns, t2); if (columnIndex === -1) { toZone = $.printToZone; if (toZone == null) A.printString(line); else toZone.call$1(line); continue; } groupCell = row[columnIndex]; group = groupCell.get$stringValue(groupCell); if (groupCell instanceof A.ReportAgeValue) { t7 = groupCell.value; t8 = t7 === -1; if (t8) age = 0; else { t7.toString; age = t7; } if (t8) group = "age_group_paid"; else if (age < 30) group = "age_group_0"; else if (age < 60) group = "age_group_30"; else if (age < 90) group = "age_group_60"; else group = age < 120 ? "age_group_90" : "age_group_120"; } else if (group.length !== 0 && A.isValidDate(group)) { date = A.DateTime_tryParse(group); group = B.JSArray_methods.get$first((date == null ? new A.DateTime(Date.now(), false) : date).toIso8601String$0().split("T")); if (t3) group = J.substring$2$s(group, 0, 4) + "-01-01"; else if (t5) group = J.substring$2$s(group, 0, 7) + "-01"; else if (t4) { date = A.DateTime_parse(group); t7 = B.JSInt_methods.$mod(A.Primitives_getWeekday(date), 7); t7 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date), A.Primitives_getMonth(date), A.Primitives_getDay(date) - t7, 0, 0, 0, 0, false); if (!A._isInt(t7)) A.throwExpression(A.argumentErrorValue(t7)); group = B.JSArray_methods.get$first(new A.DateTime(t7, false).toIso8601String$0().split("T")); } } if (!totals.containsKey$1(0, group)) totals.$indexSet(0, group, A.LinkedHashMap_LinkedHashMap$_literal(["count", 0], t1, t6)); for (j = 0; j < row.length; ++j) { cell = row[j]; column = columns[j]; if (column === t2) { t7 = totals.$index(0, group); t7.$indexSet(0, "count", t7.$index(0, "count") + 1); } t7 = cell instanceof A.ReportNumberValue; if (t7 || cell instanceof A.ReportAgeValue || cell instanceof A.ReportDurationValue) { if (!totals.$index(0, group).containsKey$1(0, column)) totals.$index(0, group).$indexSet(0, column, 0); if (t7 && cell.currencyId != null) totals.$index(0, group).$indexSet(0, A.S(column) + "_currency_id", A.parseDouble(cell.currencyId, false)); if (t7) { t7 = cell.currencyId; if (t7 != null) { t8 = company.settings.currencyId; t7 = t7 !== (t8 == null ? "1" : t8) && shouldConverCurrencies; } else t7 = false; } else t7 = false; if (t7) { cellValue = cell.value; rate = cell.exchangeRate; if (rate == null || rate === 0 || rate === 1) { t7 = cell.currencyId; t8 = company.settings.currencyId; rate = A.getExchangeRate(currencyMap, t7, t8 == null ? "1" : t8); } t7 = company.settings.currencyId; if (t7 == null) t7 = "1"; cellValue = A.round(cellValue / rate, currencyMap._map$_map.$index(0, t7).precision); t7 = totals.$index(0, group); t7.$indexSet(0, column, t7.$index(0, column) + cellValue); } else { t7 = totals.$index(0, group); t7.$indexSet(0, column, t7.$index(0, column) + cell.get$doubleValue()); } } } } t1 = totals.$ti._eval$1("LinkedHashMapKeyIterable<1>"); rows = A.List_List$of(new A.LinkedHashMapKeyIterable(totals, t1), true, t1._eval$1("Iterable.E")); sortedColumns = reportResult.sortedColumns$1(reportState); t1 = reportSettings.sortColumn; B.JSArray_methods.sort$1(rows, new A.calculateReportTotals_closure(totals, B.JSArray_methods.contains$1(sortedColumns, t1) ? B.JSArray_methods.indexOf$1(sortedColumns, t1) : 0, columns, sortedColumns, reportSettings)); return new A.GroupTotals(totals, rows); }, ReportsScreenBuilder: function ReportsScreenBuilder(t0) { this.key = t0; }, ReportsScreenBuilder_build_closure: function ReportsScreenBuilder_build_closure() { }, ReportsScreenVM: function ReportsScreenVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.reportResult = t1; _.reportState = t2; _.groupTotals = t3; _.onReportColumnsChanged = t4; _.onExportPressed = t5; _.onReportFiltersChanged = t6; _.onReportSorted = t7; _.onReportTotalsSorted = t8; _.onSettingsChanged = t9; }, ReportsScreenVM_fromStore_closure2: function ReportsScreenVM_fromStore_closure2(t0, t1) { this.store = t0; this.state = t1; }, ReportsScreenVM_fromStore_closure3: function ReportsScreenVM_fromStore_closure3(t0, t1) { this.store = t0; this.state = t1; }, ReportsScreenVM_fromStore_closure1: function ReportsScreenVM_fromStore_closure1(t0, t1) { this.store = t0; this.report = t1; }, ReportsScreenVM_fromStore_closure: function ReportsScreenVM_fromStore_closure(t0, t1, t2) { this.state = t0; this.reportSettings = t1; this.store = t2; }, ReportsScreenVM_fromStore__closure6: function ReportsScreenVM_fromStore__closure6(t0, t1, t2) { this.state = t0; this.reportSettings = t1; this.columns = t2; }, ReportsScreenVM_fromStore___closure0: function ReportsScreenVM_fromStore___closure0(t0) { this.columns = t0; }, ReportsScreenVM_fromStore__closure7: function ReportsScreenVM_fromStore__closure7(t0) { this.settings = t0; }, ReportsScreenVM_fromStore__closure8: function ReportsScreenVM_fromStore__closure8(t0) { this.userCompany = t0; }, ReportsScreenVM_fromStore_closure4: function ReportsScreenVM_fromStore_closure4(t0, t1) { this.state = t0; this.store = t1; }, ReportsScreenVM_fromStore__closure: function ReportsScreenVM_fromStore__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.store = t1; _.report = t2; _.group = t3; _.selectedGroup = t4; _.subgroup = t5; _.chart = t6; _.customStartDate = t7; _.customEndDate = t8; }, ReportsScreenVM_fromStore_closure0: function ReportsScreenVM_fromStore_closure0(t0, t1, t2) { this._box_1 = t0; this.state = t1; this.groupTotals = t2; }, ReportsScreenVM_fromStore__closure0: function ReportsScreenVM_fromStore__closure0(t0, t1) { this._box_0 = t0; this.localization = t1; }, ReportsScreenVM_fromStore__closure1: function ReportsScreenVM_fromStore__closure1(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.context = t2; }, ReportsScreenVM_fromStore__closure2: function ReportsScreenVM_fromStore__closure2(t0) { this.context = t0; }, ReportsScreenVM_fromStore__closure3: function ReportsScreenVM_fromStore__closure3() { }, ReportsScreenVM_fromStore__closure4: function ReportsScreenVM_fromStore__closure4(t0, t1) { this._box_0 = t0; this.localization = t1; }, ReportsScreenVM_fromStore__closure5: function ReportsScreenVM_fromStore__closure5(t0, t1, t2) { this._box_0 = t0; this.groupTotals = t1; this.columns = t2; }, ReportsScreenVM_fromStore___closure: function ReportsScreenVM_fromStore___closure(t0, t1) { this._box_0 = t0; this.row = t1; }, GroupTotals: function GroupTotals(t0, t1) { this.totals = t0; this.rows = t1; }, memoizeedGroupTotals_closure: function memoizeedGroupTotals_closure() { }, calculateReportTotals_closure: function calculateReportTotals_closure(t0, t1, t2, t3, t4) { var _ = this; _.totals = t0; _.index = t1; _.columns = t2; _.sortedColumns = t3; _.reportSettings = t4; }, taskReport(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState) { var t2, columns, t3, t4, t5, t6, t7, task, t8, t9, client, t10, invoice, t11, project, group, row, t12, value, t13, t14, t15, t16, t17, t18, t19, value0, value1, value2, value3, value4, value5, t20, value6, value7, value8, t21, t22, skip, t23, value9, timestamp, t24, t25, t26, selectedColumns, _null = null, data = A._setArrayType([], type$.JSArray_legacy_List_legacy_ReportElement), entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity), t1 = userCompany.settings, reportSettings = t1 == null ? _null : t1.reportSettings, taskReportSettings = reportSettings != null && reportSettings._map$_map.containsKey$1(0, "task") ? reportSettings._map$_map.$index(0, "task") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = A._setArrayType([B.TaskReportFields_3, B.TaskReportFields_4, B.TaskReportFields_5, B.TaskReportFields_6, B.TaskReportFields_12, B.TaskReportFields_11, B.TaskReportFields_7, B.TaskReportFields_22], type$.JSArray_legacy_TaskReportFields); t1 = taskReportSettings.columns._list; t2 = type$.legacy_TaskReportFields; if (t1.length !== 0) { t1 = new A.MappedListIterable(t1, new A.taskReport_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskReportFields*>")).super$Iterable$where(0, new A.taskReport_closure0()); columns = A.BuiltList_BuiltList$from(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t2); } else columns = A.BuiltList_BuiltList$from(defaultColumns, t2); for (t1 = taskMap.get$keys(taskMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = columns._list, t3 = A._arrayInstanceType(t2), t4 = t3._eval$1("ArrayIterator<1>"), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = taskMap._map$_map; t1.moveNext$0();) { task = t7.$index(0, t1.__js_helper$_current); t8 = task.clientId; t9 = clientMap._map$_map; client = t9.$index(0, t8); if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t10 = task.invoiceId; invoice = invoiceMap._map$_map.$index(0, t10); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); t10 = task.projectId; t11 = projectMap._map$_map; project = t11.$index(0, t10); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); group = groupMap._map$_map.$index(0, client.groupId); if (group == null) group = A.GroupEntity_GroupEntity(_null, _null); if (task.isDeleted || client.isDeleted) continue; row = A._setArrayType([], t6); for (t12 = new J.ArrayIterator(t2, t2.length, t4), value = task.id, t13 = task.createdUserId, t14 = task.assignedUserId, t15 = task.statusId, t16 = task.customValue4, t17 = task.customValue3, t18 = task.customValue2, t19 = task.customValue1, value0 = client.shippingAddress2, value1 = client.shippingAddress1, value2 = client.address2, value3 = client.address1, value4 = client.balance, value5 = invoice.dueDate, t20 = invoice.id, value6 = invoice.date, value7 = task.description, value8 = task.rate, t21 = client.settings, t22 = t20.length !== 0, skip = false; t12.moveNext$0();) { t23 = t12.__interceptors$_current; switch (t23) { case B.TaskReportFields_0: value9 = value; break; case B.TaskReportFields_1: value9 = value8; break; case B.TaskReportFields_2: value9 = A.taskRateSelector(client, t5, group, project, task); break; case B.TaskReportFields_3: timestamp = task.get$startTimestamp(); t24 = timestamp == null; if ((t24 ? 0 : timestamp) > 0) { t25 = (t24 ? 0 : timestamp) * 1000; t26 = new A.DateTime(t25, true); t26.DateTime$_withValue$2$isUtc(t25, true); value9 = t26.toIso8601String$0(); } else value9 = ""; break; case B.TaskReportFields_4: timestamp = task.get$endTimestamp(); t24 = timestamp == null; if ((t24 ? 0 : timestamp) > 0) { t25 = (t24 ? 0 : timestamp) * 1000; t26 = new A.DateTime(t25, true); t26.DateTime$_withValue$2$isUtc(t25, true); value9 = t26.toIso8601String$0(); } else value9 = ""; break; case B.TaskReportFields_6: value9 = value7; break; case B.TaskReportFields_7: t24 = invoice.number; value9 = t24; break; case B.TaskReportFields_8: value9 = invoice.amount; break; case B.TaskReportFields_9: if (t22) { t24 = A.Primitives_parseInt(t20, _null); t24 = (t24 == null ? 0 : t24) < 0; } else t24 = true; value9 = t24 ? "" : value6; break; case B.TaskReportFields_10: if (t22) { t24 = A.Primitives_parseInt(t20, _null); t24 = (t24 == null ? 0 : t24) < 0; } else t24 = true; value9 = t24 ? "" : value5; break; case B.TaskReportFields_5: value9 = B.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); break; case B.TaskReportFields_11: t24 = t11.$index(0, t10); value9 = t24 == null ? _null : t24.name; if (value9 == null) value9 = ""; break; case B.TaskReportFields_12: t24 = t9.$index(0, t8); value9 = t24 == null ? _null : t24.displayName; if (value9 == null) value9 = ""; break; case B.TaskReportFields_13: value9 = value4; break; case B.TaskReportFields_14: value9 = value3; break; case B.TaskReportFields_15: value9 = value2; break; case B.TaskReportFields_16: value9 = value1; break; case B.TaskReportFields_17: value9 = value0; break; case B.TaskReportFields_18: value9 = A.presentCustomField(t5, "task1", t19); break; case B.TaskReportFields_19: value9 = A.presentCustomField(t5, "task2", t18); break; case B.TaskReportFields_20: value9 = A.presentCustomField(t5, "task3", t17); break; case B.TaskReportFields_21: value9 = A.presentCustomField(t5, "task4", t16); break; case B.TaskReportFields_22: t24 = taskStatusMap._map$_map.$index(0, t15); value9 = t24 == null ? _null : t24.name; if (value9 == null) value9 = ""; break; case B.TaskReportFields_23: t24 = userMap._map$_map.$index(0, t14); if (t24 == null) value9 = _null; else { t25 = B.JSString_methods.trim$0(t24.firstName + " " + t24.lastName); t24 = t25.length !== 0 ? t25 : t24.email; value9 = t24; } if (value9 == null) value9 = ""; break; case B.TaskReportFields_24: t24 = userMap._map$_map.$index(0, t13); if (t24 == null) value9 = _null; else { t25 = B.JSString_methods.trim$0(t24.firstName + " " + t24.lastName); t24 = t25.length !== 0 ? t25 : t24.email; value9 = t24; } if (value9 == null) value9 = ""; break; default: value9 = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t23), _null, reportsUIState, userCompany, value9)) skip = true; if (t23 === B.TaskReportFields_5) { t23 = t21.currencyId; row.push(new A.ReportDurationValue(value9, t23, task.get$entityType(), value)); } else { t23 = J.getInterceptor$(value9); if (t23.get$runtimeType(value9) === B.Type_bool_lhE) row.push(new A.ReportBoolValue(value9, task.get$entityType(), value)); else if (t23.get$runtimeType(value9) === B.Type_double_K1J || t23.get$runtimeType(value9) === B.Type_int_tHn) row.push(new A.ReportNumberValue(value9, _null, t21.currencyId, _null, task.get$entityType(), value)); else row.push(new A.ReportStringValue(value9, task.get$entityType(), value)); } } if (!skip) { data.push(row); entities.push(task); } } t1 = t3._eval$1("MappedListIterable<1,String*>"); selectedColumns = A.List_List$of(new A.MappedListIterable(t2, new A.taskReport_closure1(), t1), true, t1._eval$1("ListIterable.E")); B.JSArray_methods.sort$1(data, new A.taskReport_closure2(taskReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_TaskReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, A.List_List$of(new A.MappedListIterable(B.List_qrv, new A.taskReport_closure3(), t1), true, t2), A.List_List$of(new A.MappedListIterable(defaultColumns, new A.taskReport_closure4(), t1), true, t2), data, entities, true); }, TaskReportFields: function TaskReportFields(t0, t1) { this.index = t0; this._core$_name = t1; }, memoizedTaskReport_closure: function memoizedTaskReport_closure() { }, taskReport_closure: function taskReport_closure() { }, taskReport_closure0: function taskReport_closure0() { }, taskReport_closure1: function taskReport_closure1() { }, taskReport_closure2: function taskReport_closure2(t0, t1) { this.taskReportSettings = t0; this.selectedColumns = t1; }, taskReport_closure3: function taskReport_closure3() { }, taskReport_closure4: function taskReport_closure4() { }, AccountManagement: function AccountManagement(t0, t1) { this.viewModel = t0; this.key = t1; }, _AccountManagementState: function _AccountManagementState(t0, t1, t2, t3, t4, t5) { var _ = this; _._account_management$_controller = _._account_management$_focusNode = null; _._account_management$_debouncer = t0; _._trackingIdController = t1; _._account_management$_controllers = t2; _.SingleTickerProviderStateMixin__ticker = t3; _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _AccountManagementState_didChangeDependencies_closure: function _AccountManagementState_didChangeDependencies_closure(t0) { this.$this = t0; }, _AccountManagementState_didChangeDependencies_closure0: function _AccountManagementState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _AccountManagementState__onChanged_closure: function _AccountManagementState__onChanged_closure(t0) { this.$this = t0; }, _AccountManagementState__onChanged_closure0: function _AccountManagementState__onChanged_closure0(t0, t1) { this.$this = t0; this.company = t1; }, _AccountManagementState_dispose_closure: function _AccountManagementState_dispose_closure(t0) { this.$this = t0; }, _AccountManagementState_build_closure: function _AccountManagementState_build_closure(t0, t1, t2, t3) { var _ = this; _.localization = t0; _.company = t1; _.context = t2; _.viewModel = t3; }, _AccountManagementState_build__closure2: function _AccountManagementState_build__closure2(t0, t1, t2) { this.company = t0; this.module = t1; this.viewModel = t2; }, _AccountManagementState_build___closure: function _AccountManagementState_build___closure(t0) { this._box_0 = t0; }, _AccountManagementState_build_closure0: function _AccountManagementState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure1: function _AccountManagementState_build__closure1(t0) { this.value = t0; }, _AccountManagementState_build_closure1: function _AccountManagementState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure0: function _AccountManagementState_build__closure0(t0) { this.value = t0; }, _AccountManagementState_build_closure2: function _AccountManagementState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure: function _AccountManagementState_build__closure(t0) { this.value = t0; }, _AccountOverview: function _AccountOverview(t0, t1) { this.viewModel = t0; this.key = t1; }, _AccountOverview_build__getDataStats: function _AccountOverview_build__getDataStats(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure: function _AccountOverview_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure0: function _AccountOverview_build_closure0(t0) { this.state = t0; }, _AccountOverview_build_closure1: function _AccountOverview_build_closure1(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure5: function _AccountOverview_build__closure5(t0) { this.value = t0; }, _AccountOverview_build_closure2: function _AccountOverview_build_closure2(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure4: function _AccountOverview_build__closure4(t0) { this.value = t0; }, _AccountOverview_build_closure3: function _AccountOverview_build_closure3(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure3: function _AccountOverview_build__closure3(t0) { this.value = t0; }, _AccountOverview_build_closure4: function _AccountOverview_build_closure4(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure2: function _AccountOverview_build__closure2(t0) { this.value = t0; }, _AccountOverview_build_closure5: function _AccountOverview_build_closure5() { }, _AccountOverview_build_closure6: function _AccountOverview_build_closure6(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _AccountOverview_build__closure1: function _AccountOverview_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure1: function _AccountOverview_build___closure1() { }, _AccountOverview_build___closure2: function _AccountOverview_build___closure2(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure3: function _AccountOverview_build___closure3(t0) { this.context = t0; }, _AccountOverview_build_closure7: function _AccountOverview_build_closure7(t0) { this.store = t0; }, _AccountOverview_build_closure8: function _AccountOverview_build_closure8(t0) { this.store = t0; }, _AccountOverview_build_closure9: function _AccountOverview_build_closure9() { }, _AccountOverview_build_closure10: function _AccountOverview_build_closure10() { }, _AccountOverview_build_closure11: function _AccountOverview_build_closure11(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.localization = t2; _._getDataStats = t3; }, _AccountOverview_build__closure0: function _AccountOverview_build__closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure0: function _AccountOverview_build___closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure12: function _AccountOverview_build_closure12(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.companies = t1; _.localization = t2; _.company = t3; _._getDataStats = t4; _.context = t5; }, _AccountOverview_build__closure: function _AccountOverview_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure: function _AccountOverview_build___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.reason = t2; }, __AccountManagementState_State_SingleTickerProviderStateMixin: function __AccountManagementState_State_SingleTickerProviderStateMixin() { }, AccountManagementVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.AccountManagementVM(state, new A.AccountManagementVM_fromStore_closure(store), state.uiState.settingsUIState.company, new A.AccountManagementVM_fromStore_closure0(store), new A.AccountManagementVM_fromStore_closure1(store), new A.AccountManagementVM_fromStore_closure2(state, store), new A.AccountManagementVM_fromStore_closure3(store), new A.AccountManagementVM_fromStore_closure4(store)); }, AccountManagementScreen: function AccountManagementScreen(t0) { this.key = t0; }, AccountManagementScreen_build_closure: function AccountManagementScreen_build_closure() { }, AccountManagementVM: function AccountManagementVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onSetPrimaryCompany = t3; _.onCompanyChanged = t4; _.onCompanyDelete = t5; _.onPurgeData = t6; _.onAppliedLicense = t7; }, AccountManagementVM_fromStore_closure1: function AccountManagementVM_fromStore_closure1(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure2: function AccountManagementVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, AccountManagementVM_fromStore__closure: function AccountManagementVM_fromStore__closure() { }, AccountManagementVM_fromStore__closure0: function AccountManagementVM_fromStore__closure0(t0, t1) { this.store = t0; this.companyLength = t1; }, AccountManagementVM_fromStore___closure0: function AccountManagementVM_fromStore___closure0(t0, t1) { this.store = t0; this.context = t1; }, AccountManagementVM_fromStore__closure1: function AccountManagementVM_fromStore__closure1() { }, AccountManagementVM_fromStore___closure: function AccountManagementVM_fromStore___closure(t0) { this.error = t0; }, AccountManagementVM_fromStore_closure: function AccountManagementVM_fromStore_closure(t0) { this.store = t0; }, AccountManagementVM_fromStore__closure2: function AccountManagementVM_fromStore__closure2(t0, t1) { this.store = t0; this.context = t1; }, AccountManagementVM_fromStore_closure3: function AccountManagementVM_fromStore_closure3(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure4: function AccountManagementVM_fromStore_closure4(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure0: function AccountManagementVM_fromStore_closure0(t0) { this.store = t0; }, ClientPortal: function ClientPortal(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientPortalState: function _ClientPortalState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _._client_portal$_focusNode = t0; _._client_portal$_controller = null; _._webClient = t1; _._client_portal$_autoValidate = false; _._isSubdomainUnique = true; _._isCheckingSubdomain = false; _._client_portal$_debouncer = t2; _._subdomainController = t3; _._portalDomainController = t4; _._customCssController = t5; _._customJavaScriptController = t6; _._customHeaderController = t7; _._customFooterController = t8; _._client_portal$_customMessageDashboard = t9; _._client_portal$_customMessageUnpaidInvoice = t10; _._client_portal$_customMessagePaidInvoice = t11; _._client_portal$_customMessageUnapprovedQuote = t12; _._termsController = t13; _._privacyController = t14; _._client_portal$_controllers = t15; _.SingleTickerProviderStateMixin__ticker = t16; _.SingleTickerProviderStateMixin__tickerModeNotifier = t17; _._widget = null; _._debugLifecycleState = t18; _._framework$_element = null; }, _ClientPortalState__validateSubdomain_closure: function _ClientPortalState__validateSubdomain_closure(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain_closure0: function _ClientPortalState__validateSubdomain_closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure: function _ClientPortalState__validateSubdomain__closure(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure0: function _ClientPortalState__validateSubdomain__closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure1: function _ClientPortalState__validateSubdomain__closure1(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain___closure0: function _ClientPortalState__validateSubdomain___closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure2: function _ClientPortalState__validateSubdomain__closure2(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain___closure: function _ClientPortalState__validateSubdomain___closure(t0) { this.$this = t0; }, _ClientPortalState_dispose_closure: function _ClientPortalState_dispose_closure(t0) { this.$this = t0; }, _ClientPortalState_didChangeDependencies_closure: function _ClientPortalState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ClientPortalState_didChangeDependencies_closure0: function _ClientPortalState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ClientPortalState__onChanged_closure: function _ClientPortalState__onChanged_closure(t0) { this.$this = t0; }, _ClientPortalState__onChanged__closure: function _ClientPortalState__onChanged__closure(t0) { this.$this = t0; }, _ClientPortalState__onChanged__closure0: function _ClientPortalState__onChanged__closure0(t0) { this.$this = t0; }, _ClientPortalState__onSavePressed_closure: function _ClientPortalState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ClientPortalState_build_closure20: function _ClientPortalState_build_closure20(t0) { this.$this = t0; }, _ClientPortalState_build_closure: function _ClientPortalState_build_closure(t0) { this.viewModel = t0; }, _ClientPortalState_build__closure12: function _ClientPortalState_build__closure12(t0) { this.value = t0; }, _ClientPortalState_build_closure1: function _ClientPortalState_build_closure1(t0, t1) { this.$this = t0; this.localization = t1; }, _ClientPortalState_build_closure0: function _ClientPortalState_build_closure0(t0) { this.$this = t0; }, _ClientPortalState_build_closure2: function _ClientPortalState_build_closure2(t0, t1) { this.state = t0; this.localization = t1; }, _ClientPortalState_build_closure3: function _ClientPortalState_build_closure3() { }, _ClientPortalState_build_closure4: function _ClientPortalState_build_closure4(t0, t1) { this.loginUrl = t0; this.localization = t1; }, _ClientPortalState_build_closure5: function _ClientPortalState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure11: function _ClientPortalState_build__closure11(t0) { this.value = t0; }, _ClientPortalState_build_closure6: function _ClientPortalState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure10: function _ClientPortalState_build__closure10(t0) { this.value = t0; }, _ClientPortalState_build_closure7: function _ClientPortalState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure9: function _ClientPortalState_build__closure9(t0) { this.value = t0; }, _ClientPortalState_build_closure8: function _ClientPortalState_build_closure8(t0, t1) { this.viewModel = t0; this.company = t1; }, _ClientPortalState_build__closure8: function _ClientPortalState_build__closure8(t0) { this.value = t0; }, _ClientPortalState_build_closure9: function _ClientPortalState_build_closure9(t0, t1) { this.company = t0; this.localization = t1; }, _ClientPortalState_build_closure10: function _ClientPortalState_build_closure10(t0, t1) { this.viewModel = t0; this.company = t1; }, _ClientPortalState_build__closure7: function _ClientPortalState_build__closure7(t0) { this.value = t0; }, _ClientPortalState_build_closure11: function _ClientPortalState_build_closure11(t0, t1) { this.registrationUrl = t0; this.localization = t1; }, _ClientPortalState_build_closure12: function _ClientPortalState_build_closure12(t0, t1, t2, t3) { var _ = this; _.context = t0; _.localization = t1; _.company = t2; _.viewModel = t3; }, _ClientPortalState_build__closure6: function _ClientPortalState_build__closure6(t0, t1, t2) { this.company = t0; this.field = t1; this.viewModel = t2; }, _ClientPortalState_build___closure: function _ClientPortalState_build___closure(t0, t1) { this.index = t0; this.field = t1; }, _ClientPortalState_build____closure: function _ClientPortalState_build____closure(t0) { this.field = t0; }, _ClientPortalState_build_closure13: function _ClientPortalState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure5: function _ClientPortalState_build__closure5(t0) { this.value = t0; }, _ClientPortalState_build_closure14: function _ClientPortalState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure4: function _ClientPortalState_build__closure4(t0) { this.value = t0; }, _ClientPortalState_build_closure15: function _ClientPortalState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure3: function _ClientPortalState_build__closure3(t0) { this.value = t0; }, _ClientPortalState_build_closure16: function _ClientPortalState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure2: function _ClientPortalState_build__closure2(t0) { this.value = t0; }, _ClientPortalState_build_closure17: function _ClientPortalState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure1: function _ClientPortalState_build__closure1(t0) { this.value = t0; }, _ClientPortalState_build_closure18: function _ClientPortalState_build_closure18(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure0: function _ClientPortalState_build__closure0(t0) { this.value = t0; }, _ClientPortalState_build_closure19: function _ClientPortalState_build_closure19(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure: function _ClientPortalState_build__closure(t0) { this.value = t0; }, __ClientPortalState_State_SingleTickerProviderStateMixin: function __ClientPortalState_State_SingleTickerProviderStateMixin() { }, ClientPortalVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.ClientPortalVM(state, t1.company, t2, new A.ClientPortalVM_fromStore_closure(store, state), new A.ClientPortalVM_fromStore_closure0(store), new A.ClientPortalVM_fromStore_closure1(store)); }, ClientPortalScreen: function ClientPortalScreen(t0) { this.key = t0; }, ClientPortalScreen_build_closure: function ClientPortalScreen_build_closure() { }, ClientPortalVM: function ClientPortalVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSavePressed = t3; _.onCompanyChanged = t4; _.onSettingsChanged = t5; }, ClientPortalVM_fromStore_closure1: function ClientPortalVM_fromStore_closure1(t0) { this.store = t0; }, ClientPortalVM_fromStore_closure0: function ClientPortalVM_fromStore_closure0(t0) { this.store = t0; }, ClientPortalVM_fromStore_closure: function ClientPortalVM_fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, ClientPortalVM_fromStore__closure: function ClientPortalVM_fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, ClientPortalVM_fromStore___closure: function ClientPortalVM_fromStore___closure() { }, CompanyDetails: function CompanyDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyDetailsState: function _CompanyDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _._company_details$_focusNode = t0; _._company_details$_controller = null; _._company_details$_debouncer = t1; _._company_details$_nameController = t2; _._idNumberController = t3; _._vatNumberController = t4; _._company_details$_emailController = t5; _._websiteController = t6; _._company_details$_phoneController = t7; _._address1Controller = t8; _._address2Controller = t9; _._cityController = t10; _._stateController = t11; _._postalCodeController = t12; _._company_details$_custom1Controller = t13; _._company_details$_custom2Controller = t14; _._company_details$_custom3Controller = t15; _._company_details$_custom4Controller = t16; _._invoiceTermsController = t17; _._invoiceFooterController = t18; _._quoteTermsController = t19; _._quoteFooterController = t20; _._creditTermsController = t21; _._creditFooterController = t22; _._purchaseOrderTermsController = t23; _._purchaseOrderFooterController = t24; _._qrIbanController = t25; _._besrIdController = t26; _._company_details$_controllers = t27; _.SingleTickerProviderStateMixin__ticker = t28; _.SingleTickerProviderStateMixin__tickerModeNotifier = t29; _._widget = null; _._debugLifecycleState = t30; _._framework$_element = null; }, _CompanyDetailsState_didChangeDependencies_closure: function _CompanyDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CompanyDetailsState_didChangeDependencies_closure0: function _CompanyDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _CompanyDetailsState_dispose_closure: function _CompanyDetailsState_dispose_closure(t0) { this.$this = t0; }, _CompanyDetailsState__onSettingsChanged_closure: function _CompanyDetailsState__onSettingsChanged_closure(t0) { this.$this = t0; }, _CompanyDetailsState__onSettingsChanged_closure0: function _CompanyDetailsState__onSettingsChanged_closure0(t0, t1) { this.$this = t0; this.settings = t1; }, _CompanyDetailsState_build_closure: function _CompanyDetailsState_build_closure(t0) { this.localization = t0; }, _CompanyDetailsState_build_closure0: function _CompanyDetailsState_build_closure0(t0) { this.state = t0; }, _CompanyDetailsState_build_closure1: function _CompanyDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _CompanyDetailsState_build__closure14: function _CompanyDetailsState_build__closure14(t0) { this.sizeId = t0; }, _CompanyDetailsState_build_closure2: function _CompanyDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _CompanyDetailsState_build__closure13: function _CompanyDetailsState_build__closure13(t0) { this.industry = t0; }, _CompanyDetailsState_build_closure3: function _CompanyDetailsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure12: function _CompanyDetailsState_build__closure12(t0) { this.country = t0; }, _CompanyDetailsState_build_closure4: function _CompanyDetailsState_build_closure4(t0, t1, t2) { this.settings = t0; this.localization = t1; this.viewModel = t2; }, _CompanyDetailsState_build__closure10: function _CompanyDetailsState_build__closure10(t0, t1) { this.context = t0; this.viewModel = t1; }, _CompanyDetailsState_build___closure: function _CompanyDetailsState_build___closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build__closure11: function _CompanyDetailsState_build__closure11(t0) { this.viewModel = t0; }, _CompanyDetailsState_build_closure6: function _CompanyDetailsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure9: function _CompanyDetailsState_build__closure9(t0) { this.value = t0; }, _CompanyDetailsState_build_closure5: function _CompanyDetailsState_build_closure5(t0) { this.localization = t0; }, _CompanyDetailsState_build_closure7: function _CompanyDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure8: function _CompanyDetailsState_build__closure8(t0) { this.paymentType = t0; }, _CompanyDetailsState_build_closure8: function _CompanyDetailsState_build_closure8(t0, t1) { this.state = t0; this.localization = t1; }, _CompanyDetailsState_build_closure9: function _CompanyDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure7: function _CompanyDetailsState_build__closure7(t0) { this.numDays = t0; }, _CompanyDetailsState_build_closure10: function _CompanyDetailsState_build_closure10(t0, t1) { this.state = t0; this.localization = t1; }, _CompanyDetailsState_build_closure11: function _CompanyDetailsState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure6: function _CompanyDetailsState_build__closure6(t0) { this.numDays = t0; }, _CompanyDetailsState_build_closure12: function _CompanyDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build_closure13: function _CompanyDetailsState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure5: function _CompanyDetailsState_build__closure5(t0) { this.value = t0; }, _CompanyDetailsState_build_closure14: function _CompanyDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure4: function _CompanyDetailsState_build__closure4(t0) { this.value = t0; }, _CompanyDetailsState_build_closure15: function _CompanyDetailsState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure3: function _CompanyDetailsState_build__closure3(t0) { this.value = t0; }, _CompanyDetailsState_build_closure16: function _CompanyDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure2: function _CompanyDetailsState_build__closure2(t0) { this.value = t0; }, _CompanyDetailsState_build_closure17: function _CompanyDetailsState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure1: function _CompanyDetailsState_build__closure1(t0) { this.value = t0; }, _CompanyDetailsState_build_closure18: function _CompanyDetailsState_build_closure18(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure0: function _CompanyDetailsState_build__closure0(t0) { this.value = t0; }, _CompanyDetailsState_build_closure19: function _CompanyDetailsState_build_closure19(t0, t1) { this.viewModel = t0; this.company = t1; }, _CompanyDetailsState_build__closure: function _CompanyDetailsState_build__closure(t0) { this.value = t0; }, _CompanyDetailsState_build_closure20: function _CompanyDetailsState_build_closure20(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build_closure21: function _CompanyDetailsState_build_closure21(t0, t1) { this.viewModel = t0; this.context = t1; }, __CompanyDetailsState_State_SingleTickerProviderStateMixin: function __CompanyDetailsState_State_SingleTickerProviderStateMixin() { }, CompanyDetailsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.CompanyDetailsVM(state, t1.company, t2, new A.CompanyDetailsVM_fromStore_closure(store), new A.CompanyDetailsVM_fromStore_closure0(store), new A.CompanyDetailsVM_fromStore_closure1(store), new A.CompanyDetailsVM_fromStore_closure2(state, store), new A.CompanyDetailsVM_fromStore_closure3(state, store), new A.CompanyDetailsVM_fromStore_closure4(state, store), new A.CompanyDetailsVM_fromStore_closure5(store), new A.CompanyDetailsVM_fromStore_closure6(store)); }, CompanyDetailsScreen: function CompanyDetailsScreen(t0) { this.key = t0; }, CompanyDetailsScreen_build_closure: function CompanyDetailsScreen_build_closure() { }, CompanyDetailsVM: function CompanyDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSettingsChanged = t3; _.onCompanyChanged = t4; _.onSavePressed = t5; _.onUploadLogo = t6; _.onDeleteLogo = t7; _.onConfigurePaymentTermsPressed = t8; _.onUploadDocument = t9; _.onDeleteDocument = t10; }, CompanyDetailsVM_fromStore_closure: function CompanyDetailsVM_fromStore_closure(t0) { this.store = t0; }, CompanyDetailsVM_fromStore_closure0: function CompanyDetailsVM_fromStore_closure0(t0) { this.store = t0; }, CompanyDetailsVM_fromStore_closure3: function CompanyDetailsVM_fromStore_closure3(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore__closure2: function CompanyDetailsVM_fromStore__closure2() { }, CompanyDetailsVM_fromStore__closure3: function CompanyDetailsVM_fromStore__closure3() { }, CompanyDetailsVM_fromStore__closure4: function CompanyDetailsVM_fromStore__closure4() { }, CompanyDetailsVM_fromStore_closure1: function CompanyDetailsVM_fromStore_closure1(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure5: function CompanyDetailsVM_fromStore__closure5(t0, t1) { this.store = t0; this.context = t1; }, CompanyDetailsVM_fromStore_closure2: function CompanyDetailsVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore_closure4: function CompanyDetailsVM_fromStore_closure4(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore_closure5: function CompanyDetailsVM_fromStore_closure5(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure0: function CompanyDetailsVM_fromStore__closure0(t0) { this.context = t0; }, CompanyDetailsVM_fromStore__closure1: function CompanyDetailsVM_fromStore__closure1(t0) { this.context = t0; }, CompanyDetailsVM_fromStore___closure: function CompanyDetailsVM_fromStore___closure(t0) { this.error = t0; }, CompanyDetailsVM_fromStore_closure6: function CompanyDetailsVM_fromStore_closure6(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure: function CompanyDetailsVM_fromStore__closure(t0) { this.store = t0; }, CreditCardsAndBanks: function CreditCardsAndBanks(t0) { this.key = t0; }, _CreditCardsAndBanksState: function _CreditCardsAndBanksState(t0, t1, t2, t3, t4) { var _ = this; _._credit_cards_and_banks$_controller = null; _._credit_cards_and_banks$_nameController = t0; _._credit_cards_and_banks$_controllers = t1; _.SingleTickerProviderStateMixin__ticker = t2; _.SingleTickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _CreditCardsAndBanksState_dispose_closure: function _CreditCardsAndBanksState_dispose_closure(t0) { this.$this = t0; }, _CreditCardsAndBanksState_didChangeDependencies_closure: function _CreditCardsAndBanksState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CreditCardsAndBanksState_didChangeDependencies_closure0: function _CreditCardsAndBanksState_didChangeDependencies_closure0(t0) { this.$this = t0; }, __CreditCardsAndBanksState_State_SingleTickerProviderStateMixin: function __CreditCardsAndBanksState_State_SingleTickerProviderStateMixin() { }, CreditCardsAndBanksVM_fromStore(store) { return new A.CreditCardsAndBanksVM(A._lateReadCheck(store.__Store__state, "_state")); }, CreditCardsAndBanksScreen: function CreditCardsAndBanksScreen(t0) { this.key = t0; }, CreditCardsAndBanksScreen_build_closure: function CreditCardsAndBanksScreen_build_closure() { }, CreditCardsAndBanksVM: function CreditCardsAndBanksVM(t0) { this.state = t0; }, CustomFields: function CustomFields(t0, t1) { this.viewModel = t0; this.key = t1; }, _CustomFieldsState: function _CustomFieldsState(t0, t1, t2) { var _ = this; _._custom_fields$_controller = _._custom_fields$_focusNode = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CustomFieldsState_initState_closure: function _CustomFieldsState_initState_closure(t0, t1) { this._box_0 = t0; this.state = t1; }, CustomFieldsSettings: function CustomFieldsSettings(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.showChargeTaxes = t1; _.fieldType = t2; _.key = t3; }, CustomFieldsSettings_build_closure: function CustomFieldsSettings_build_closure(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure6: function CustomFieldsSettings_build__closure6(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure0: function CustomFieldsSettings_build_closure0(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure5: function CustomFieldsSettings_build__closure5(t0) { this.value = t0; }, CustomFieldsSettings_build_closure1: function CustomFieldsSettings_build_closure1(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure4: function CustomFieldsSettings_build__closure4(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure2: function CustomFieldsSettings_build_closure2(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure3: function CustomFieldsSettings_build__closure3(t0) { this.value = t0; }, CustomFieldsSettings_build_closure3: function CustomFieldsSettings_build_closure3(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure2: function CustomFieldsSettings_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure4: function CustomFieldsSettings_build_closure4(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure1: function CustomFieldsSettings_build__closure1(t0) { this.value = t0; }, CustomFieldsSettings_build_closure5: function CustomFieldsSettings_build_closure5(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure0: function CustomFieldsSettings_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure6: function CustomFieldsSettings_build_closure6(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure: function CustomFieldsSettings_build__closure(t0) { this.value = t0; }, CustomFormField: function CustomFormField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.label = t0; _.value = t1; _.showTaxes = t2; _.taxesEnabled = t3; _.onChanged = t4; _.onTaxesChanged = t5; _.key = t6; }, _CustomFormFieldState: function _CustomFormFieldState(t0, t1, t2, t3) { var _ = this; _._customFieldController = t0; _._optionsController = t1; _._fieldType = "single_line_text"; _._custom_fields$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CustomFormFieldState_dispose_closure: function _CustomFormFieldState_dispose_closure(t0) { this.$this = t0; }, _CustomFormFieldState_didChangeDependencies_closure: function _CustomFormFieldState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CustomFormFieldState_didChangeDependencies_closure0: function _CustomFormFieldState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _CustomFormFieldState__onChanged_closure: function _CustomFormFieldState__onChanged_closure() { }, _CustomFormFieldState_build_closure: function _CustomFormFieldState_build_closure() { }, _CustomFormFieldState_build_closure0: function _CustomFormFieldState_build_closure0(t0) { this.$this = t0; }, _CustomFormFieldState_build_closure1: function _CustomFormFieldState_build_closure1(t0) { this.$this = t0; }, _CustomFormFieldState_build__closure: function _CustomFormFieldState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, __CustomFieldsState_State_SingleTickerProviderStateMixin: function __CustomFieldsState_State_SingleTickerProviderStateMixin() { }, CustomFieldsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.CustomFieldsVM(state, new A.CustomFieldsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new A.CustomFieldsVM_fromStore_closure0(store)); }, CustomFieldsScreen: function CustomFieldsScreen(t0) { this.key = t0; }, CustomFieldsScreen_build_closure: function CustomFieldsScreen_build_closure() { }, CustomFieldsVM: function CustomFieldsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; }, CustomFieldsVM_fromStore_closure0: function CustomFieldsVM_fromStore_closure0(t0) { this.store = t0; }, CustomFieldsVM_fromStore_closure: function CustomFieldsVM_fromStore_closure(t0) { this.store = t0; }, CustomFieldsVM_fromStore__closure: function CustomFieldsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, DataVisualizations: function DataVisualizations(t0) { this.key = t0; }, _DataVisualizationsState: function _DataVisualizationsState(t0, t1, t2) { var _ = this; _._data_visualizations$_firstNameController = t0; _._data_visualizations$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DataVisualizationsState_dispose_closure: function _DataVisualizationsState_dispose_closure(t0) { this.$this = t0; }, _DataVisualizationsState_didChangeDependencies_closure: function _DataVisualizationsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DataVisualizationsState_didChangeDependencies_closure0: function _DataVisualizationsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, DataVisualizationsVM_fromStore(store) { return new A.DataVisualizationsVM(A._lateReadCheck(store.__Store__state, "_state")); }, DataVisualizationsScreen: function DataVisualizationsScreen(t0) { this.key = t0; }, DataVisualizationsScreen_build_closure: function DataVisualizationsScreen_build_closure() { }, DataVisualizationsVM: function DataVisualizationsVM(t0) { this.state = t0; }, DeviceSettings: function DeviceSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _DeviceSettingsState: function _DeviceSettingsState(t0, t1, t2, t3) { var _ = this; _._device_settings$_formKey = t0; _._device_settings$_focusNode = _._device_settings$_controller = null; _.SingleTickerProviderStateMixin__ticker = t1; _.SingleTickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _DeviceSettingsState_build_closure: function _DeviceSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure0: function _DeviceSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure1: function _DeviceSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure2: function _DeviceSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure3: function _DeviceSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure4: function _DeviceSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure5: function _DeviceSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure6: function _DeviceSettingsState_build_closure6(t0, t1, t2) { this.localization = t0; this.prefState = t1; this.viewModel = t2; }, _DeviceSettingsState_build__closure7: function _DeviceSettingsState_build__closure7(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure7: function _DeviceSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure8: function _DeviceSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure9: function _DeviceSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure10: function _DeviceSettingsState_build_closure10(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure11: function _DeviceSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure12: function _DeviceSettingsState_build_closure12(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure13: function _DeviceSettingsState_build_closure13(t0, t1, t2) { this.localization = t0; this.state = t1; this.viewModel = t2; }, _DeviceSettingsState_build__closure6: function _DeviceSettingsState_build__closure6(t0, t1) { this.state = t0; this.localization = t1; }, _DeviceSettingsState_build__closure5: function _DeviceSettingsState_build__closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure14: function _DeviceSettingsState_build_closure14(t0, t1) { this.context = t0; this.viewModel = t1; }, _DeviceSettingsState_build__closure4: function _DeviceSettingsState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure15: function _DeviceSettingsState_build_closure15(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure16: function _DeviceSettingsState_build_closure16() { }, _DeviceSettingsState_build_closure17: function _DeviceSettingsState_build_closure17(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure18: function _DeviceSettingsState_build_closure18(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.prefState = t2; _.state = t3; }, _DeviceSettingsState_build__closure2: function _DeviceSettingsState_build__closure2() { }, _DeviceSettingsState_build__closure3: function _DeviceSettingsState_build__closure3(t0) { this.enableDarkMode = t0; }, _DeviceSettingsState_build_closure19: function _DeviceSettingsState_build_closure19(t0, t1, t2, t3) { var _ = this; _.localization = t0; _.prefState = t1; _.viewModel = t2; _.context = t3; }, _DeviceSettingsState_build__closure1: function _DeviceSettingsState_build__closure1(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.prefState = t2; _.selector = t3; }, _DeviceSettingsState_build___closure0: function _DeviceSettingsState_build___closure0(t0, t1) { this.selector = t0; this.value = t1; }, _DeviceSettingsState_build_closure20: function _DeviceSettingsState_build_closure20(t0, t1) { this.prefState = t0; this.localization = t1; }, _DeviceSettingsState_build__closure0: function _DeviceSettingsState_build__closure0(t0) { this.prefState = t0; }, _DeviceSettingsState_build_closure21: function _DeviceSettingsState_build_closure21(t0, t1, t2, t3) { var _ = this; _.context = t0; _.localization = t1; _.prefState = t2; _.viewModel = t3; }, _DeviceSettingsState_build__closure: function _DeviceSettingsState_build__closure(t0, t1, t2) { this.prefState = t0; this.viewModel = t1; this.context = t2; }, _DeviceSettingsState_build___closure: function _DeviceSettingsState_build___closure(t0, t1) { this.i = t0; this.colors = t1; }, __DeviceSettingsState_State_SingleTickerProviderStateMixin: function __DeviceSettingsState_State_SingleTickerProviderStateMixin() { }, DeviceSettingsVM_fromStore(store) { return new A.DeviceSettingsVM(A._lateReadCheck(store.__Store__state, "_state"), new A.DeviceSettingsVM_fromStore_closure(), new A.DeviceSettingsVM_fromStore_closure0(store), new A.DeviceSettingsVM_fromStore_closure1(store), new A.DeviceSettingsVM_fromStore_closure2(store), new A.DeviceSettingsVM_fromStore_closure3(store), new A.DeviceSettingsVM_fromStore_closure4(store), new A.DeviceSettingsVM_fromStore_closure5(store), new A.DeviceSettingsVM_fromStore_closure6(store), new A.DeviceSettingsVM_fromStore_closure7(store), new A.DeviceSettingsVM_fromStore_closure8(store), new A.DeviceSettingsVM_fromStore_closure9(store), new A.DeviceSettingsVM_fromStore_closure10(store), new A.DeviceSettingsVM_fromStore_closure11(store), new A.DeviceSettingsVM_fromStore_closure12(store), new A.DeviceSettingsVM_fromStore_closure13(store), new A.DeviceSettingsVM_fromStore_closure14(store), new A.DeviceSettingsVM_fromStore_closure15(store), new A.DeviceSettingsVM_fromStore_closure16(store), new A.DeviceSettingsVM_fromStore_closure17(store), A.Future_Future(new A.DeviceSettingsVM_fromStore_closure18(), type$.legacy_bool)); }, DeviceSettingsScreen: function DeviceSettingsScreen(t0) { this.key = t0; }, DeviceSettingsScreen_build_closure: function DeviceSettingsScreen_build_closure() { }, DeviceSettingsVM: function DeviceSettingsVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.state = t0; _.onRefreshTap = t1; _.onLogoutTap = t2; _.onDarkModeChanged = t3; _.onCustomColorsChanged = t4; _.onLayoutChanged = t5; _.onMenuModeChanged = t6; _.onHistoryModeChanged = t7; _.onColorThemeChanged = t8; _.onLongPressSelectionIsDefault = t9; _.onTapSelectedChanged = t10; _.onEditAfterSavingChanged = t11; _.onRequireAuthenticationChanged = t12; _.onPersistDataChanged = t13; _.onShowPdfChanged = t14; _.onEnableJSPDFChanged = t15; _.onEnableTouchEventsChanged = t16; _.onEnableTooltipsChanged = t17; _.onEnableFlexibleSearchChanged = t18; _.onTextScaleFactorChanged = t19; _.authenticationSupported = t20; }, DeviceSettingsVM_fromStore_closure: function DeviceSettingsVM_fromStore_closure() { }, DeviceSettingsVM_fromStore_closure0: function DeviceSettingsVM_fromStore_closure0(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure1: function DeviceSettingsVM_fromStore_closure1(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure7: function DeviceSettingsVM_fromStore_closure7(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure4: function DeviceSettingsVM_fromStore_closure4(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure5: function DeviceSettingsVM_fromStore_closure5(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure8: function DeviceSettingsVM_fromStore_closure8(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure14: function DeviceSettingsVM_fromStore_closure14(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure12: function DeviceSettingsVM_fromStore_closure12(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure13: function DeviceSettingsVM_fromStore_closure13(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure17: function DeviceSettingsVM_fromStore_closure17(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure15: function DeviceSettingsVM_fromStore_closure15(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure16: function DeviceSettingsVM_fromStore_closure16(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure6: function DeviceSettingsVM_fromStore_closure6(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure9: function DeviceSettingsVM_fromStore_closure9(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure3: function DeviceSettingsVM_fromStore_closure3(t0) { this.store = t0; }, DeviceSettingsVM_fromStore__closure: function DeviceSettingsVM_fromStore__closure(t0, t1) { this.value = t0; this.store = t1; }, DeviceSettingsVM_fromStore_closure10: function DeviceSettingsVM_fromStore_closure10(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure18: function DeviceSettingsVM_fromStore_closure18() { }, DeviceSettingsVM_fromStore_closure2: function DeviceSettingsVM_fromStore_closure2(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure11: function DeviceSettingsVM_fromStore_closure11(t0) { this.store = t0; }, EmailSettings: function EmailSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _EmailSettingsState: function _EmailSettingsState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._email_settings$_focusNode = null; _._fromNameController = t0; _._replyToEmailController = t1; _._replyToNameController = t2; _._bccEmailController = t3; _._emailStyleCustomController = t4; _._emailSignatureController = t5; _._email_settings$_controllers = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, _EmailSettingsState_dispose_closure: function _EmailSettingsState_dispose_closure(t0) { this.$this = t0; }, _EmailSettingsState_didChangeDependencies_closure: function _EmailSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _EmailSettingsState_didChangeDependencies_closure0: function _EmailSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _EmailSettingsState__onChanged_closure: function _EmailSettingsState__onChanged_closure(t0) { this.$this = t0; }, _EmailSettingsState_build_closure: function _EmailSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure6: function _EmailSettingsState_build__closure6(t0) { this.value = t0; }, _EmailSettingsState_build_closure0: function _EmailSettingsState_build_closure0(t0) { this.context = t0; }, _EmailSettingsState_build_closure1: function _EmailSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure5: function _EmailSettingsState_build__closure5(t0) { this.userId = t0; }, _EmailSettingsState_build_closure2: function _EmailSettingsState_build_closure2() { }, _EmailSettingsState_build_closure3: function _EmailSettingsState_build_closure3(t0) { this.context = t0; }, _EmailSettingsState_build_closure4: function _EmailSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure4: function _EmailSettingsState_build__closure4(t0) { this.userId = t0; }, _EmailSettingsState_build_closure5: function _EmailSettingsState_build_closure5() { }, _EmailSettingsState_build_closure7: function _EmailSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure3: function _EmailSettingsState_build__closure3(t0) { this.value = t0; }, _EmailSettingsState_build_closure6: function _EmailSettingsState_build_closure6(t0) { this.viewModel = t0; }, _EmailSettingsState_build_closure8: function _EmailSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure2: function _EmailSettingsState_build__closure2(t0) { this.value = t0; }, _EmailSettingsState_build_closure9: function _EmailSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure1: function _EmailSettingsState_build__closure1(t0) { this.value = t0; }, _EmailSettingsState_build_closure10: function _EmailSettingsState_build_closure10(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure0: function _EmailSettingsState_build__closure0(t0) { this.value = t0; }, _EmailSettingsState_build_closure11: function _EmailSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure: function _EmailSettingsState_build__closure(t0) { this.value = t0; }, EmailSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.EmailSettingsVM(state, new A.EmailSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.get$settings(), new A.EmailSettingsVM_fromStore_closure0(store)); }, EmailSettingsScreen: function EmailSettingsScreen(t0) { this.key = t0; }, EmailSettingsScreen_build_closure: function EmailSettingsScreen_build_closure() { }, EmailSettingsVM: function EmailSettingsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; }, EmailSettingsVM_fromStore_closure0: function EmailSettingsVM_fromStore_closure0(t0) { this.store = t0; }, EmailSettingsVM_fromStore_closure: function EmailSettingsVM_fromStore_closure(t0) { this.store = t0; }, EmailSettingsVM_fromStore__closure: function EmailSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, ExpenseSettings: function ExpenseSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseSettingsState: function _ExpenseSettingsState(t0) { var _ = this; _._widget = _._expense_settings$_focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ExpenseSettingsState_build_closure: function _ExpenseSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure3: function _ExpenseSettingsState_build__closure3(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure0: function _ExpenseSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure2: function _ExpenseSettingsState_build__closure2(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure1: function _ExpenseSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure1: function _ExpenseSettingsState_build__closure1(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure2: function _ExpenseSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure0: function _ExpenseSettingsState_build__closure0(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure3: function _ExpenseSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure: function _ExpenseSettingsState_build__closure(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure4: function _ExpenseSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, ExpenseSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.ExpenseSettingsVM(state, new A.ExpenseSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new A.ExpenseSettingsVM_fromStore_closure0(store), new A.ExpenseSettingsVM_fromStore_closure1(store)); }, ExpenseSettingsScreen: function ExpenseSettingsScreen(t0) { this.key = t0; }, ExpenseSettingsScreen_build_closure: function ExpenseSettingsScreen_build_closure() { }, ExpenseSettingsVM: function ExpenseSettingsVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; _.onConfigureCategoriesPressed = t4; }, ExpenseSettingsVM_fromStore_closure0: function ExpenseSettingsVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseSettingsVM_fromStore_closure: function ExpenseSettingsVM_fromStore_closure(t0) { this.store = t0; }, ExpenseSettingsVM_fromStore__closure: function ExpenseSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, ExpenseSettingsVM_fromStore_closure1: function ExpenseSettingsVM_fromStore_closure1(t0) { this.store = t0; }, GeneratedNumbers: function GeneratedNumbers(t0, t1) { this.viewModel = t0; this.key = t1; }, _GeneratedNumbersState: function _GeneratedNumbersState(t0, t1, t2, t3, t4, t5) { var _ = this; _._generated_numbers$_controller = _._generated_numbers$_focusNode = null; _._recurringPrefixController = t0; _._generated_numbers$_controllers = t1; _._generated_numbers$_debouncer = t2; _.SingleTickerProviderStateMixin__ticker = t3; _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _GeneratedNumbersState_initState_closure: function _GeneratedNumbersState_initState_closure(t0, t1) { this._box_0 = t0; this.company = t1; }, _GeneratedNumbersState_dispose_closure: function _GeneratedNumbersState_dispose_closure(t0) { this.$this = t0; }, _GeneratedNumbersState_didChangeDependencies_closure: function _GeneratedNumbersState_didChangeDependencies_closure(t0) { this.$this = t0; }, _GeneratedNumbersState_didChangeDependencies_closure0: function _GeneratedNumbersState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _GeneratedNumbersState__onChanged_closure: function _GeneratedNumbersState__onChanged_closure(t0) { this.$this = t0; }, _GeneratedNumbersState__onChanged__closure: function _GeneratedNumbersState__onChanged__closure(t0) { this.$this = t0; }, _GeneratedNumbersState__onSavePressed_closure: function _GeneratedNumbersState__onSavePressed_closure(t0) { this._box_0 = t0; }, _GeneratedNumbersState__onSavePressed_closure0: function _GeneratedNumbersState__onSavePressed_closure0() { }, _GeneratedNumbersState_build_closure0: function _GeneratedNumbersState_build_closure0(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure16: function _GeneratedNumbersState_build__closure16(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure: function _GeneratedNumbersState_build_closure() { }, _GeneratedNumbersState_build_closure1: function _GeneratedNumbersState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure15: function _GeneratedNumbersState_build__closure15(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure2: function _GeneratedNumbersState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure14: function _GeneratedNumbersState_build__closure14(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure3: function _GeneratedNumbersState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure13: function _GeneratedNumbersState_build__closure13(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure5: function _GeneratedNumbersState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure12: function _GeneratedNumbersState_build__closure12(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure4: function _GeneratedNumbersState_build_closure4(t0) { this.localization = t0; }, _GeneratedNumbersState_build_closure6: function _GeneratedNumbersState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure11: function _GeneratedNumbersState_build__closure11(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure7: function _GeneratedNumbersState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure10: function _GeneratedNumbersState_build__closure10(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure8: function _GeneratedNumbersState_build_closure8(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure9: function _GeneratedNumbersState_build__closure9(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure9: function _GeneratedNumbersState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure8: function _GeneratedNumbersState_build__closure8(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure10: function _GeneratedNumbersState_build_closure10(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure7: function _GeneratedNumbersState_build__closure7(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure11: function _GeneratedNumbersState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure6: function _GeneratedNumbersState_build__closure6(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure12: function _GeneratedNumbersState_build_closure12(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure5: function _GeneratedNumbersState_build__closure5(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure13: function _GeneratedNumbersState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure4: function _GeneratedNumbersState_build__closure4(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure14: function _GeneratedNumbersState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure3: function _GeneratedNumbersState_build__closure3(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure15: function _GeneratedNumbersState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure2: function _GeneratedNumbersState_build__closure2(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure16: function _GeneratedNumbersState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure1: function _GeneratedNumbersState_build__closure1(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure17: function _GeneratedNumbersState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure0: function _GeneratedNumbersState_build__closure0(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure18: function _GeneratedNumbersState_build_closure18(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure: function _GeneratedNumbersState_build__closure(t0, t1) { this.counter = t0; this.pattern = t1; }, EntityNumberSettings: function EntityNumberSettings(t0, t1, t2, t3, t4, t5) { var _ = this; _.counterValue = t0; _.patternValue = t1; _.onChanged = t2; _.showVendorFields = t3; _.showClientFields = t4; _.key = t5; }, _EntityNumberSettingsState: function _EntityNumberSettingsState(t0, t1, t2, t3, t4) { var _ = this; _._counterController = t0; _._patternController = t1; _._generated_numbers$_controllers = t2; _._generated_numbers$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _EntityNumberSettingsState_dispose_closure: function _EntityNumberSettingsState_dispose_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_didChangeDependencies_closure: function _EntityNumberSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_didChangeDependencies_closure0: function _EntityNumberSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _EntityNumberSettingsState__onChanged_closure: function _EntityNumberSettingsState__onChanged_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_build_closure: function _EntityNumberSettingsState_build_closure() { }, _EntityNumberSettingsState_build_closure0: function _EntityNumberSettingsState_build_closure0(t0) { this.$this = t0; }, HelpPanel: function HelpPanel(t0, t1, t2, t3) { var _ = this; _.showVendorFields = t0; _.showClientFields = t1; _.onFieldPressed = t2; _.key = t3; }, HelpPanel_build_closure: function HelpPanel_build_closure(t0) { this.$this = t0; }, HelpPanel_build_closure0: function HelpPanel_build_closure0(t0) { this.$this = t0; }, HelpPanel_build_closure1: function HelpPanel_build_closure1() { }, HelpPanel_build_closure2: function HelpPanel_build_closure2(t0) { this.$this = t0; }, HelpPanel_build__closure: function HelpPanel_build__closure(t0, t1) { this.$this = t0; this.field = t1; }, __GeneratedNumbersState_State_SingleTickerProviderStateMixin: function __GeneratedNumbersState_State_SingleTickerProviderStateMixin() { }, GeneratedNumbersVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.company; return new A.GeneratedNumbersVM(state, new A.GeneratedNumbersVM_fromStore_closure(store), t1.get$settings(), new A.GeneratedNumbersVM_fromStore_closure0(store), t2); }, GeneratedNumbersScreen: function GeneratedNumbersScreen(t0) { this.key = t0; }, GeneratedNumbersScreen_build_closure: function GeneratedNumbersScreen_build_closure() { }, GeneratedNumbersVM: function GeneratedNumbersVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; _.company = t4; }, GeneratedNumbersVM_fromStore_closure0: function GeneratedNumbersVM_fromStore_closure0(t0) { this.store = t0; }, GeneratedNumbersVM_fromStore_closure: function GeneratedNumbersVM_fromStore_closure(t0) { this.store = t0; }, GeneratedNumbersVM_fromStore__closure: function GeneratedNumbersVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, ImportExport: function ImportExport(t0) { this.key = t0; }, _ImportExportState: function _ImportExportState(t0, t1, t2, t3) { var _ = this; _._import_export$_response = _._import_export$_focusNode = null; _._importFormat = t0; _._exportFormat = t1; _._exportType = t2; _._isExporting = false; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ImportExportState_build_closure0: function _ImportExportState_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _ImportExportState_build__closure5: function _ImportExportState_build__closure5(t0, t1) { this.$this = t0; this.response = t1; }, _ImportExportState_build_closure: function _ImportExportState_build_closure(t0) { this.$this = t0; }, _ImportExportState_build__closure6: function _ImportExportState_build__closure6(t0, t1) { this.$this = t0; this.importType = t1; }, _ImportExportState_build_closure1: function _ImportExportState_build_closure1(t0) { this.$this = t0; }, _ImportExportState_build__closure4: function _ImportExportState_build__closure4(t0) { this.$this = t0; }, _ImportExportState_build_closure3: function _ImportExportState_build_closure3(t0) { this.$this = t0; }, _ImportExportState_build__closure3: function _ImportExportState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, _ImportExportState_build_closure2: function _ImportExportState_build_closure2(t0) { this.localization = t0; }, _ImportExportState_build_closure5: function _ImportExportState_build_closure5(t0) { this.$this = t0; }, _ImportExportState_build__closure2: function _ImportExportState_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, _ImportExportState_build_closure4: function _ImportExportState_build_closure4(t0) { this.localization = t0; }, _ImportExportState_build_closure6: function _ImportExportState_build_closure6(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _ImportExportState_build__closure: function _ImportExportState_build__closure(t0) { this.$this = t0; }, _ImportExportState_build__closure0: function _ImportExportState_build__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _ImportExportState_build___closure0: function _ImportExportState_build___closure0(t0) { this.$this = t0; }, _ImportExportState_build__closure1: function _ImportExportState_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _ImportExportState_build___closure: function _ImportExportState_build___closure(t0) { this.$this = t0; }, _FileImport: function _FileImport(t0, t1, t2, t3) { var _ = this; _.importType = t0; _.onImportTypeChanged = t1; _.onUploaded = t2; _.key = t3; }, _FileImportState: function _FileImportState(t0, t1) { var _ = this; _._multipartFiles = t0; _._importJsonSettings = _._importJsonData = _._import_export$_isLoading = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FileImportState_uploadJsonFile_closure: function _FileImportState_uploadJsonFile_closure(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile_closure0: function _FileImportState_uploadJsonFile_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _FileImportState_uploadJsonFile__closure0: function _FileImportState_uploadJsonFile__closure0(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile_closure1: function _FileImportState_uploadJsonFile_closure1(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile__closure: function _FileImportState_uploadJsonFile__closure(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure: function _FileImportState_uploadFile_closure(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure0: function _FileImportState_uploadFile_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _FileImportState_uploadFile__closure0: function _FileImportState_uploadFile__closure0(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure1: function _FileImportState_uploadFile_closure1(t0) { this.$this = t0; }, _FileImportState_uploadFile__closure: function _FileImportState_uploadFile__closure(t0) { this.$this = t0; }, _FileImportState_build_closure0: function _FileImportState_build_closure0(t0) { this.$this = t0; }, _FileImportState_build_closure: function _FileImportState_build_closure(t0) { this.localization = t0; }, _FileImportState_build_closure1: function _FileImportState_build_closure1(t0, t1) { this.$this = t0; this.uploadPart = t1; }, _FileImportState_build__closure1: function _FileImportState_build__closure1(t0, t1, t2) { this.$this = t0; this.uploadPart = t1; this.multipartFile = t2; }, _FileImportState_build_closure2: function _FileImportState_build_closure2(t0) { this.$this = t0; }, _FileImportState_build__closure0: function _FileImportState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _FileImportState_build_closure3: function _FileImportState_build_closure3(t0) { this.$this = t0; }, _FileImportState_build__closure: function _FileImportState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, _FileImportState_build_closure4: function _FileImportState_build_closure4(t0) { this.$this = t0; }, _FileMapper: function _FileMapper(t0, t1, t2, t3, t4) { var _ = this; _.importType = t0; _.response = t1; _.onCancelPressed = t2; _.formKey = t3; _.key = t4; }, __FileMapperState: function __FileMapperState(t0, t1) { var _ = this; _._useFirstRowAsHeaders = true; _._import_export$_mapping = t0; _._import_export$_isLoading = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __FileMapperState_build_closure: function __FileMapperState_build_closure(t0) { this.$this = t0; }, __FileMapperState_build__closure3: function __FileMapperState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, __FileMapperState_build_closure0: function __FileMapperState_build_closure0(t0, t1, t2) { this.$this = t0; this.entry = t1; this.i = t2; }, __FileMapperState_build__closure2: function __FileMapperState_build__closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.entry = t1; _.i = t2; _.value = t3; }, __FileMapperState_build_closure1: function __FileMapperState_build_closure1(t0) { this.$this = t0; }, __FileMapperState_build_closure2: function __FileMapperState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, __FileMapperState_build__closure: function __FileMapperState_build__closure(t0) { this.$this = t0; }, __FileMapperState_build__closure0: function __FileMapperState_build__closure0(t0, t1) { this.$this = t0; this.localization = t1; }, __FileMapperState_build___closure0: function __FileMapperState_build___closure0(t0) { this.$this = t0; }, __FileMapperState_build__closure1: function __FileMapperState_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, __FileMapperState_build___closure: function __FileMapperState_build___closure(t0) { this.$this = t0; }, _FieldMapper: function _FieldMapper(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.field1 = t0; _.field2 = t1; _.available = t2; _.mappedTo = t3; _.onMappedToChanged = t4; _.mapping = t5; _.key = t6; }, _FieldMapper_build_closure: function _FieldMapper_build_closure(t0) { this.localization = t0; }, _FieldMapper_build_closure1: function _FieldMapper_build_closure1(t0, t1) { this.$this = t0; this.localization = t1; }, _FieldMapper_build__closure: function _FieldMapper_build__closure(t0) { this.value = t0; }, _FieldMapper_build_closure0: function _FieldMapper_build_closure0(t0) { this.localization = t0; }, ImportExportVM_fromStore(store) { return new A.ImportExportVM(A._lateReadCheck(store.__Store__state, "_state")); }, ImportExportScreen: function ImportExportScreen(t0) { this.key = t0; }, ImportExportScreen_build_closure: function ImportExportScreen_build_closure() { }, ImportExportVM: function ImportExportVM(t0) { this.state = t0; }, InvoiceDesign: function InvoiceDesign(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceDesignState: function _InvoiceDesignState(t0, t1, t2) { var _ = this; _._invoice_design$_focusNode = _._invoice_design$_controller = null; _._updateAllPurchaseOrderDesigns = _._updateAllCreditDesigns = _._updateAllQuoteDesigns = _._updateAllInvoiceDesigns = _._wasPurchaseOrderDesignChanged = _._wasCreditDesignChanged = _._wasQuoteDesignChanged = _._wasInvoiceDesignChanged = false; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _InvoiceDesignState_initState_closure: function _InvoiceDesignState_initState_closure(t0, t1) { this._box_0 = t0; this.state = t1; }, _InvoiceDesignState_build_closure62: function _InvoiceDesignState_build_closure62(t0, t1) { this.$this = t0; this.viewModel = t1; }, _InvoiceDesignState_build_closure20: function _InvoiceDesignState_build_closure20(t0, t1, t2) { this.state = t0; this.context = t1; this.store = t2; }, _InvoiceDesignState_build_closure: function _InvoiceDesignState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure19: function _InvoiceDesignState_build__closure19(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure20: function _InvoiceDesignState_build__closure20(t0) { this.value = t0; }, _InvoiceDesignState_build_closure0: function _InvoiceDesignState_build_closure0(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure18: function _InvoiceDesignState_build__closure18(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure1: function _InvoiceDesignState_build_closure1(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure16: function _InvoiceDesignState_build__closure16(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure17: function _InvoiceDesignState_build__closure17(t0) { this.value = t0; }, _InvoiceDesignState_build_closure2: function _InvoiceDesignState_build_closure2(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure15: function _InvoiceDesignState_build__closure15(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure3: function _InvoiceDesignState_build_closure3(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure13: function _InvoiceDesignState_build__closure13(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure14: function _InvoiceDesignState_build__closure14(t0) { this.value = t0; }, _InvoiceDesignState_build_closure4: function _InvoiceDesignState_build_closure4(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure12: function _InvoiceDesignState_build__closure12(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure5: function _InvoiceDesignState_build_closure5(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure10: function _InvoiceDesignState_build__closure10(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure11: function _InvoiceDesignState_build__closure11(t0) { this.value = t0; }, _InvoiceDesignState_build_closure6: function _InvoiceDesignState_build_closure6(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure9: function _InvoiceDesignState_build__closure9(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure7: function _InvoiceDesignState_build_closure7(t0, t1) { this.store = t0; this.state = t1; }, _InvoiceDesignState_build_closure9: function _InvoiceDesignState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure8: function _InvoiceDesignState_build__closure8(t0) { this.value = t0; }, _InvoiceDesignState_build_closure8: function _InvoiceDesignState_build_closure8(t0) { this.localization = t0; }, _InvoiceDesignState_build_closure11: function _InvoiceDesignState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure7: function _InvoiceDesignState_build__closure7(t0) { this.value = t0; }, _InvoiceDesignState_build_closure10: function _InvoiceDesignState_build_closure10(t0) { this.localization = t0; }, _InvoiceDesignState_build_closure13: function _InvoiceDesignState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure6: function _InvoiceDesignState_build__closure6(t0) { this.value = t0; }, _InvoiceDesignState_build_closure12: function _InvoiceDesignState_build_closure12() { }, _InvoiceDesignState_build_closure14: function _InvoiceDesignState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure5: function _InvoiceDesignState_build__closure5(t0) { this.font = t0; }, _InvoiceDesignState_build_closure15: function _InvoiceDesignState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure4: function _InvoiceDesignState_build__closure4(t0) { this.font = t0; }, _InvoiceDesignState_build_closure16: function _InvoiceDesignState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure3: function _InvoiceDesignState_build__closure3(t0) { this.value = t0; }, _InvoiceDesignState_build_closure17: function _InvoiceDesignState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure2: function _InvoiceDesignState_build__closure2(t0) { this.value = t0; }, _InvoiceDesignState_build_closure18: function _InvoiceDesignState_build_closure18(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure1: function _InvoiceDesignState_build__closure1(t0) { this.value = t0; }, _InvoiceDesignState_build_closure19: function _InvoiceDesignState_build_closure19(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure0: function _InvoiceDesignState_build__closure0(t0) { this.value = t0; }, _InvoiceDesignState_build_closure21: function _InvoiceDesignState_build_closure21(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure: function _InvoiceDesignState_build__closure(t0) { this.value = t0; }, _InvoiceDesignState_build_closure22: function _InvoiceDesignState_build_closure22() { }, _InvoiceDesignState_build_closure23: function _InvoiceDesignState_build_closure23() { }, _InvoiceDesignState_build_closure24: function _InvoiceDesignState_build_closure24() { }, _InvoiceDesignState_build_closure25: function _InvoiceDesignState_build_closure25() { }, _InvoiceDesignState_build_closure26: function _InvoiceDesignState_build_closure26(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure27: function _InvoiceDesignState_build_closure27() { }, _InvoiceDesignState_build_closure28: function _InvoiceDesignState_build_closure28() { }, _InvoiceDesignState_build_closure29: function _InvoiceDesignState_build_closure29(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure30: function _InvoiceDesignState_build_closure30() { }, _InvoiceDesignState_build_closure31: function _InvoiceDesignState_build_closure31() { }, _InvoiceDesignState_build_closure32: function _InvoiceDesignState_build_closure32(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure33: function _InvoiceDesignState_build_closure33() { }, _InvoiceDesignState_build_closure34: function _InvoiceDesignState_build_closure34() { }, _InvoiceDesignState_build_closure35: function _InvoiceDesignState_build_closure35() { }, _InvoiceDesignState_build_closure36: function _InvoiceDesignState_build_closure36(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure37: function _InvoiceDesignState_build_closure37() { }, _InvoiceDesignState_build_closure38: function _InvoiceDesignState_build_closure38() { }, _InvoiceDesignState_build_closure39: function _InvoiceDesignState_build_closure39() { }, _InvoiceDesignState_build_closure40: function _InvoiceDesignState_build_closure40(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure41: function _InvoiceDesignState_build_closure41() { }, _InvoiceDesignState_build_closure42: function _InvoiceDesignState_build_closure42() { }, _InvoiceDesignState_build_closure43: function _InvoiceDesignState_build_closure43() { }, _InvoiceDesignState_build_closure44: function _InvoiceDesignState_build_closure44(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure45: function _InvoiceDesignState_build_closure45() { }, _InvoiceDesignState_build_closure46: function _InvoiceDesignState_build_closure46() { }, _InvoiceDesignState_build_closure47: function _InvoiceDesignState_build_closure47() { }, _InvoiceDesignState_build_closure48: function _InvoiceDesignState_build_closure48() { }, _InvoiceDesignState_build_closure49: function _InvoiceDesignState_build_closure49(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure50: function _InvoiceDesignState_build_closure50() { }, _InvoiceDesignState_build_closure51: function _InvoiceDesignState_build_closure51() { }, _InvoiceDesignState_build_closure52: function _InvoiceDesignState_build_closure52(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure53: function _InvoiceDesignState_build_closure53() { }, _InvoiceDesignState_build_closure54: function _InvoiceDesignState_build_closure54() { }, _InvoiceDesignState_build_closure55: function _InvoiceDesignState_build_closure55(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure56: function _InvoiceDesignState_build_closure56() { }, _InvoiceDesignState_build_closure57: function _InvoiceDesignState_build_closure57() { }, _InvoiceDesignState_build_closure58: function _InvoiceDesignState_build_closure58(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure59: function _InvoiceDesignState_build_closure59() { }, _InvoiceDesignState_build_closure60: function _InvoiceDesignState_build_closure60() { }, _InvoiceDesignState_build_closure61: function _InvoiceDesignState_build_closure61(t0, t1) { this.viewModel = t0; this.settings = t1; }, __InvoiceDesignState_State_SingleTickerProviderStateMixin: function __InvoiceDesignState_State_SingleTickerProviderStateMixin() { }, InvoiceDesignVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState; return new A.InvoiceDesignVM(state, t1.get$settings(), t1.company, new A.InvoiceDesignVM_fromStore_closure(store), new A.InvoiceDesignVM_fromStore_closure0(store, state)); }, InvoiceDesignScreen: function InvoiceDesignScreen(t0) { this.key = t0; }, InvoiceDesignScreen_build_closure: function InvoiceDesignScreen_build_closure() { }, InvoiceDesignVM: function InvoiceDesignVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.settings = t1; _.company = t2; _.onSettingsChanged = t3; _.onSavePressed = t4; }, InvoiceDesignVM_fromStore_closure: function InvoiceDesignVM_fromStore_closure(t0) { this.store = t0; }, InvoiceDesignVM_fromStore_closure0: function InvoiceDesignVM_fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, InvoiceDesignVM_fromStore__closure: function InvoiceDesignVM_fromStore__closure(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.state = t2; _.entityTypes = t3; }, InvoiceDesignVM_fromStore___closure: function InvoiceDesignVM_fromStore___closure(t0, t1, t2) { this.state = t0; this.store = t1; this.entityTypes = t2; }, InvoiceDesignVM_fromStore____closure: function InvoiceDesignVM_fromStore____closure(t0, t1, t2, t3) { var _ = this; _.webClient = t0; _.url = t1; _.credentials = t2; _.settings = t3; }, InvoiceDesignVM_fromStore_____closure: function InvoiceDesignVM_fromStore_____closure() { }, InvoiceDesignVM_fromStore_____closure0: function InvoiceDesignVM_fromStore_____closure0() { }, LocalizationSettings: function LocalizationSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _LocalizationSettingsState: function _LocalizationSettingsState(t0, t1, t2, t3, t4) { var _ = this; _._localization_settings$_firstNameController = t0; _._localization_settings$_focusNode = _._localization_settings$_controller = null; _._localization_settings$_controllers = t1; _.SingleTickerProviderStateMixin__ticker = t2; _.SingleTickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _LocalizationSettingsState_dispose_closure: function _LocalizationSettingsState_dispose_closure(t0) { this.$this = t0; }, _LocalizationSettingsState_didChangeDependencies_closure: function _LocalizationSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _LocalizationSettingsState_didChangeDependencies_closure0: function _LocalizationSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _LocalizationSettingsState_build_closure: function _LocalizationSettingsState_build_closure(t0) { this.translations = t0; }, _LocalizationSettingsState_build_closure0: function _LocalizationSettingsState_build_closure0(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure1: function _LocalizationSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure13: function _LocalizationSettingsState_build__closure13(t0) { this.currency = t0; }, _LocalizationSettingsState_build_closure2: function _LocalizationSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure12: function _LocalizationSettingsState_build__closure12(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure3: function _LocalizationSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure11: function _LocalizationSettingsState_build__closure11(t0) { this.language = t0; }, _LocalizationSettingsState_build_closure4: function _LocalizationSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure10: function _LocalizationSettingsState_build__closure10(t0) { this.timezone = t0; }, _LocalizationSettingsState_build_closure5: function _LocalizationSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure9: function _LocalizationSettingsState_build__closure9(t0) { this.dateFormat = t0; }, _LocalizationSettingsState_build_closure6: function _LocalizationSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure8: function _LocalizationSettingsState_build__closure8(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure7: function _LocalizationSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.company = t1; }, _LocalizationSettingsState_build__closure7: function _LocalizationSettingsState_build__closure7(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure9: function _LocalizationSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.company = t1; }, _LocalizationSettingsState_build__closure6: function _LocalizationSettingsState_build__closure6(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure8: function _LocalizationSettingsState_build_closure8(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure10: function _LocalizationSettingsState_build_closure10(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure11: function _LocalizationSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure5: function _LocalizationSettingsState_build__closure5(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure12: function _LocalizationSettingsState_build_closure12(t0, t1, t2, t3) { var _ = this; _.context = t0; _.viewModel = t1; _.settings = t2; _.localization = t3; }, _LocalizationSettingsState_build__closure3: function _LocalizationSettingsState_build__closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build___closure: function _LocalizationSettingsState_build___closure(t0) { this.value = t0; }, _LocalizationSettingsState_build__closure4: function _LocalizationSettingsState_build__closure4() { }, _LocalizationSettingsState_build_closure13: function _LocalizationSettingsState_build_closure13(t0, t1, t2, t3) { var _ = this; _.context = t0; _.state = t1; _.viewModel = t2; _.settings = t3; }, _LocalizationSettingsState_build__closure1: function _LocalizationSettingsState_build__closure1() { }, _LocalizationSettingsState_build__closure2: function _LocalizationSettingsState_build__closure2(t0) { this.key = t0; }, _LocalizationSettingsState_build_closure14: function _LocalizationSettingsState_build_closure14(t0, t1, t2) { this.viewModel = t0; this.settings = t1; this.key = t2; }, _LocalizationSettingsState_build__closure0: function _LocalizationSettingsState_build__closure0(t0, t1) { this.key = t0; this.value = t1; }, _LocalizationSettingsState_build_closure15: function _LocalizationSettingsState_build_closure15(t0, t1, t2) { this.viewModel = t0; this.settings = t1; this.key = t2; }, _LocalizationSettingsState_build__closure: function _LocalizationSettingsState_build__closure(t0) { this.key = t0; }, _AddCompanyDialog: function _AddCompanyDialog(t0) { this.key = t0; }, _AddCompanyDialogState: function _AddCompanyDialogState(t0) { var _ = this; _._widget = _._localization_settings$_countryId = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AddCompanyDialogState_build_closure: function _AddCompanyDialogState_build_closure(t0) { this.context = t0; }, _AddCompanyDialogState_build_closure0: function _AddCompanyDialogState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AddCompanyDialogState_build_closure1: function _AddCompanyDialogState_build_closure1(t0) { this.$this = t0; }, __LocalizationSettingsState_State_SingleTickerProviderStateMixin: function __LocalizationSettingsState_State_SingleTickerProviderStateMixin() { }, LocalizationSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.LocalizationSettingsVM(state, t1.company, new A.LocalizationSettingsVM_fromStore_closure(store), t2, new A.LocalizationSettingsVM_fromStore_closure0(store), new A.LocalizationSettingsVM_fromStore_closure1(store)); }, LocalizationScreen: function LocalizationScreen(t0) { this.key = t0; }, LocalizationScreen_build_closure: function LocalizationScreen_build_closure() { }, LocalizationSettingsVM: function LocalizationSettingsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.onCompanyChanged = t2; _.settings = t3; _.onSettingsChanged = t4; _.onSavePressed = t5; }, LocalizationSettingsVM_fromStore_closure0: function LocalizationSettingsVM_fromStore_closure0(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore_closure: function LocalizationSettingsVM_fromStore_closure(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore_closure1: function LocalizationSettingsVM_fromStore_closure1(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore__closure: function LocalizationSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, LocalizationSettingsVM_fromStore___closure: function LocalizationSettingsVM_fromStore___closure(t0, t1) { this.appBuilder = t0; this.store = t1; }, LocalizationSettingsVM_fromStore____closure: function LocalizationSettingsVM_fromStore____closure(t0) { this.appBuilder = t0; }, PaymentSettings: function PaymentSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentSettingsState: function _PaymentSettingsState(t0, t1, t2) { var _ = this; _._payment_settings$_focusNode = null; _._minimumAmountController = t0; _._payment_settings$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PaymentSettingsState_didChangeDependencies_closure: function _PaymentSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentSettingsState_didChangeDependencies_closure0: function _PaymentSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentSettingsState__onChanged_closure: function _PaymentSettingsState__onChanged_closure(t0) { this.$this = t0; }, _PaymentSettingsState_build_closure: function _PaymentSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _PaymentSettingsState_build__closure3: function _PaymentSettingsState_build__closure3(t0) { this.value = t0; }, _PaymentSettingsState_build_closure0: function _PaymentSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.settings = t1; }, _PaymentSettingsState_build__closure2: function _PaymentSettingsState_build__closure2(t0) { this.value = t0; }, _PaymentSettingsState_build_closure1: function _PaymentSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _PaymentSettingsState_build__closure1: function _PaymentSettingsState_build__closure1(t0) { this.value = t0; }, _PaymentSettingsState_build_closure2: function _PaymentSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _PaymentSettingsState_build__closure0: function _PaymentSettingsState_build__closure0(t0) { this.value = t0; }, _PaymentSettingsState_build_closure3: function _PaymentSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _PaymentSettingsState_build__closure: function _PaymentSettingsState_build__closure(t0) { this.value = t0; }, _PaymentSettingsState_build_closure4: function _PaymentSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, PaymentSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState; return new A.PaymentSettingsVM(state, t1.company, t1.get$settings(), new A.PaymentSettingsVM_fromStore_closure(store), new A.PaymentSettingsVM_fromStore_closure0(store), new A.PaymentSettingsVM_fromStore_closure1(store), new A.PaymentSettingsVM_fromStore_closure2(store)); }, PaymentsSettingsScreen: function PaymentsSettingsScreen(t0) { this.key = t0; }, PaymentsSettingsScreen_build_closure: function PaymentsSettingsScreen_build_closure() { }, PaymentSettingsVM: function PaymentSettingsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSavePressed = t3; _.onCompanyChanged = t4; _.onSettingsChanged = t5; _.onConfigureGatewaysPressed = t6; }, PaymentSettingsVM_fromStore_closure0: function PaymentSettingsVM_fromStore_closure0(t0) { this.store = t0; }, PaymentSettingsVM_fromStore_closure1: function PaymentSettingsVM_fromStore_closure1(t0) { this.store = t0; }, PaymentSettingsVM_fromStore_closure: function PaymentSettingsVM_fromStore_closure(t0) { this.store = t0; }, PaymentSettingsVM_fromStore__closure: function PaymentSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, PaymentSettingsVM_fromStore_closure2: function PaymentSettingsVM_fromStore_closure2(t0) { this.store = t0; }, ProductSettings: function ProductSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductSettingsState: function _ProductSettingsState(t0, t1, t2, t3) { var _ = this; _._product_settings$_focusNode = null; _._product_settings$_debouncer = t0; _._stockThresholdController = t1; _._product_settings$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ProductSettingsState_didChangeDependencies_closure: function _ProductSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ProductSettingsState_didChangeDependencies_closure0: function _ProductSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ProductSettingsState_dispose_closure: function _ProductSettingsState_dispose_closure(t0) { this.$this = t0; }, _ProductSettingsState__onChanged_closure: function _ProductSettingsState__onChanged_closure(t0) { this.$this = t0; }, _ProductSettingsState__onChanged_closure0: function _ProductSettingsState__onChanged_closure0(t0, t1) { this.$this = t0; this.company = t1; }, _ProductSettingsState_build_closure: function _ProductSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure9: function _ProductSettingsState_build__closure9(t0) { this.value = t0; }, _ProductSettingsState_build_closure0: function _ProductSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure8: function _ProductSettingsState_build__closure8(t0) { this.value = t0; }, _ProductSettingsState_build_closure1: function _ProductSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure7: function _ProductSettingsState_build__closure7(t0) { this.value = t0; }, _ProductSettingsState_build_closure2: function _ProductSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure6: function _ProductSettingsState_build__closure6(t0) { this.value = t0; }, _ProductSettingsState_build_closure3: function _ProductSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure5: function _ProductSettingsState_build__closure5(t0) { this.value = t0; }, _ProductSettingsState_build_closure4: function _ProductSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure4: function _ProductSettingsState_build__closure4(t0) { this.value = t0; }, _ProductSettingsState_build_closure5: function _ProductSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure3: function _ProductSettingsState_build__closure3(t0) { this.value = t0; }, _ProductSettingsState_build_closure6: function _ProductSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure2: function _ProductSettingsState_build__closure2(t0) { this.value = t0; }, _ProductSettingsState_build_closure7: function _ProductSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure1: function _ProductSettingsState_build__closure1(t0) { this.value = t0; }, _ProductSettingsState_build_closure8: function _ProductSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure0: function _ProductSettingsState_build__closure0(t0) { this.value = t0; }, _ProductSettingsState_build_closure9: function _ProductSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure: function _ProductSettingsState_build__closure(t0) { this.value = t0; }, ProductSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.ProductSettingsVM(state, new A.ProductSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new A.ProductSettingsVM_fromStore_closure0(store)); }, ProductSettingsScreen: function ProductSettingsScreen(t0) { this.key = t0; }, ProductSettingsScreen_build_closure: function ProductSettingsScreen_build_closure() { }, ProductSettingsVM: function ProductSettingsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; }, ProductSettingsVM_fromStore_closure0: function ProductSettingsVM_fromStore_closure0(t0) { this.store = t0; }, ProductSettingsVM_fromStore_closure: function ProductSettingsVM_fromStore_closure(t0) { this.store = t0; }, ProductSettingsVM_fromStore__closure: function ProductSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, SettingsList: function SettingsList(t0, t1) { this.viewModel = t0; this.key = t1; }, _SettingsListState: function _SettingsListState(t0) { var _ = this; _._widget = _._settings_list$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, SettingsListTile: function SettingsListTile(t0, t1, t2) { this.section = t0; this.viewModel = t1; this.key = t2; }, SettingsListTile_build_closure: function SettingsListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, SettingsSearch: function SettingsSearch(t0, t1, t2) { this.viewModel = t0; this.filter = t1; this.key = t2; }, SettingsSearch_build_closure: function SettingsSearch_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.section = t2; _.i = t3; }, SettingsListVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), settingsUIState = state.uiState.settingsUIState; return new A.SettingsListVM(state, new A.SettingsListVM_fromStore_closure(store, state), new A.SettingsListVM_fromStore_closure0(settingsUIState), new A.SettingsListVM_fromStore_closure1(settingsUIState), new A.SettingsListVM_fromStore_closure2(store)); }, SettingsListBuilder: function SettingsListBuilder(t0) { this.key = t0; }, SettingsListBuilder_build_closure: function SettingsListBuilder_build_closure() { }, SettingsListVM: function SettingsListVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.loadSection = t1; _.onViewGroupPressed = t2; _.onViewClientPressed = t3; _.onClearSettingsFilterPressed = t4; }, SettingsListVM_fromStore_closure: function SettingsListVM_fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, SettingsListVM_fromStore_closure2: function SettingsListVM_fromStore_closure2(t0) { this.store = t0; }, SettingsListVM_fromStore_closure1: function SettingsListVM_fromStore_closure1(t0) { this.settingsUIState = t0; }, SettingsListVM_fromStore_closure0: function SettingsListVM_fromStore_closure0(t0) { this.settingsUIState = t0; }, SettingsScreen: function SettingsScreen(t0) { this.key = t0; }, SettingsScreen_build_closure: function SettingsScreen_build_closure(t0) { this.store = t0; }, SettingsScreenVM_fromStore(store) { return new A.SettingsScreenVM(A._lateReadCheck(store.__Store__state, "_state")); }, SettingsScreenBuilder: function SettingsScreenBuilder(t0) { this.key = t0; }, SettingsScreenBuilder_build_closure: function SettingsScreenBuilder_build_closure() { }, SettingsScreenVM: function SettingsScreenVM(t0) { this.state = t0; }, SettingsWizard: function SettingsWizard(t0, t1) { this.user = t0; this.key = t1; }, _SettingsWizardState: function _SettingsWizardState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._settings_wizard$_focusNode = t0; _._settings_wizard$_debouncer = t1; _._settings_wizard$_isCheckingSubdomain = _._settings_wizard$_isSubdomainUnique = _._settings_wizard$_isSaving = _._settings_wizard$_autoValidate = false; _._settings_wizard$_languageId = _._settings_wizard$_currencyId = "1"; _._settings_wizard$_nameController = t2; _._settings_wizard$_firstNameController = t3; _._settings_wizard$_lastNameController = t4; _._settings_wizard$_subdomainController = t5; _._settings_wizard$_webClient = t6; _._settings_wizard$_controllers = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; }, _SettingsWizardState_dispose_closure: function _SettingsWizardState_dispose_closure() { }, _SettingsWizardState__validateSubdomain_closure: function _SettingsWizardState__validateSubdomain_closure(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure: function _SettingsWizardState__validateSubdomain__closure(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure0: function _SettingsWizardState__validateSubdomain__closure0(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure1: function _SettingsWizardState__validateSubdomain__closure1(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain___closure0: function _SettingsWizardState__validateSubdomain___closure0(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure2: function _SettingsWizardState__validateSubdomain__closure2(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain___closure: function _SettingsWizardState__validateSubdomain___closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed_closure: function _SettingsWizardState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _SettingsWizardState__onSavePressed_closure0: function _SettingsWizardState__onSavePressed_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.navigator = t1; _.store = t2; _.state = t3; }, _SettingsWizardState__onSavePressed__closure: function _SettingsWizardState__onSavePressed__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.navigator = t2; _.store = t3; _.state = t4; }, _SettingsWizardState__onSavePressed___closure0: function _SettingsWizardState__onSavePressed___closure0(t0) { this.navigator = t0; }, _SettingsWizardState__onSavePressed___closure1: function _SettingsWizardState__onSavePressed___closure1(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed____closure: function _SettingsWizardState__onSavePressed____closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed___closure2: function _SettingsWizardState__onSavePressed___closure2(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure0: function _SettingsWizardState__onSavePressed__closure0(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed___closure: function _SettingsWizardState__onSavePressed___closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure1: function _SettingsWizardState__onSavePressed__closure1(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure2: function _SettingsWizardState__onSavePressed__closure2(t0) { this.$this = t0; }, _SettingsWizardState_build_closure: function _SettingsWizardState_build_closure(t0) { this.localization = t0; }, _SettingsWizardState_build_closure0: function _SettingsWizardState_build_closure0(t0) { this.localization = t0; }, _SettingsWizardState_build_closure1: function _SettingsWizardState_build_closure1(t0) { this.localization = t0; }, _SettingsWizardState_build_closure2: function _SettingsWizardState_build_closure2(t0) { this.$this = t0; }, _SettingsWizardState_build__closure1: function _SettingsWizardState_build__closure1(t0, t1) { this.$this = t0; this.currency = t1; }, _SettingsWizardState_build_closure3: function _SettingsWizardState_build_closure3(t0) { this.localization = t0; }, _SettingsWizardState_build_closure4: function _SettingsWizardState_build_closure4(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, _SettingsWizardState_build__closure0: function _SettingsWizardState_build__closure0(t0, t1) { this.$this = t0; this.language = t1; }, _SettingsWizardState_build_closure5: function _SettingsWizardState_build_closure5(t0) { this.localization = t0; }, _SettingsWizardState_build_closure6: function _SettingsWizardState_build_closure6(t0, t1, t2) { this.localization = t0; this.state = t1; this.store = t2; }, _SettingsWizardState_build__closure: function _SettingsWizardState_build__closure(t0, t1) { this.store = t0; this.context = t1; }, _SettingsWizardState_build_closure8: function _SettingsWizardState_build_closure8(t0, t1) { this.$this = t0; this.localization = t1; }, _SettingsWizardState_build_closure7: function _SettingsWizardState_build_closure7(t0) { this.$this = t0; }, _SettingsWizardState_build_closure9: function _SettingsWizardState_build_closure9(t0) { this.context = t0; }, TaskSettings: function TaskSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskSettingsState: function _TaskSettingsState(t0, t1) { var _ = this; _._task_settings$_focusNode = null; _._taskRateController = t0; _._widget = _._task_settings$_controllers = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaskSettingsState_didChangeDependencies_closure: function _TaskSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskSettingsState_didChangeDependencies_closure0: function _TaskSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskSettingsState_dispose_closure: function _TaskSettingsState_dispose_closure(t0) { this.$this = t0; }, _TaskSettingsState__onChanged_closure: function _TaskSettingsState__onChanged_closure(t0, t1) { this.$this = t0; this.state = t1; }, _TaskSettingsState_build_closure: function _TaskSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure6: function _TaskSettingsState_build__closure6(t0) { this.value = t0; }, _TaskSettingsState_build_closure0: function _TaskSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure5: function _TaskSettingsState_build__closure5(t0) { this.value = t0; }, _TaskSettingsState_build_closure1: function _TaskSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure4: function _TaskSettingsState_build__closure4(t0) { this.value = t0; }, _TaskSettingsState_build_closure2: function _TaskSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure3: function _TaskSettingsState_build__closure3(t0) { this.value = t0; }, _TaskSettingsState_build_closure3: function _TaskSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure2: function _TaskSettingsState_build__closure2(t0) { this.value = t0; }, _TaskSettingsState_build_closure4: function _TaskSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure1: function _TaskSettingsState_build__closure1(t0) { this.value = t0; }, _TaskSettingsState_build_closure5: function _TaskSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaskSettingsState_build__closure0: function _TaskSettingsState_build__closure0(t0) { this.value = t0; }, _TaskSettingsState_build_closure6: function _TaskSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaskSettingsState_build__closure: function _TaskSettingsState_build__closure(t0) { this.value = t0; }, _TaskSettingsState_build_closure7: function _TaskSettingsState_build_closure7(t0) { this.localization = t0; }, _TaskSettingsState_build_closure8: function _TaskSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.context = t1; }, TaskSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState; return new A.TaskSettingsVM(state, new A.TaskSettingsVM_fromStore_closure(store), t1.company, t1.get$settings(), new A.TaskSettingsVM_fromStore_closure0(store), new A.TaskSettingsVM_fromStore_closure1(store), new A.TaskSettingsVM_fromStore_closure2(store)); }, TaskSettingsScreen: function TaskSettingsScreen(t0) { this.key = t0; }, TaskSettingsScreen_build_closure: function TaskSettingsScreen_build_closure() { }, TaskSettingsVM: function TaskSettingsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.settings = t3; _.onCompanyChanged = t4; _.onSettingsChanged = t5; _.onConfigureStatusesPressed = t6; }, TaskSettingsVM_fromStore_closure0: function TaskSettingsVM_fromStore_closure0(t0) { this.store = t0; }, TaskSettingsVM_fromStore_closure1: function TaskSettingsVM_fromStore_closure1(t0) { this.store = t0; }, TaskSettingsVM_fromStore_closure: function TaskSettingsVM_fromStore_closure(t0) { this.store = t0; }, TaskSettingsVM_fromStore__closure: function TaskSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TaskSettingsVM_fromStore_closure2: function TaskSettingsVM_fromStore_closure2(t0) { this.store = t0; }, TaxSettings: function TaxSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaxSettingsState: function _TaxSettingsState(t0) { var _ = this; _._widget = _._tax_settings$_focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TaxSettingsState_build_closure: function _TaxSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaxSettingsState_build__closure4: function _TaxSettingsState_build__closure4(t0) { this.value = t0; }, _TaxSettingsState_build_closure0: function _TaxSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaxSettingsState_build__closure3: function _TaxSettingsState_build__closure3(t0) { this.value = t0; }, _TaxSettingsState_build_closure1: function _TaxSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure2: function _TaxSettingsState_build__closure2(t0) { this.value = t0; }, _TaxSettingsState_build_closure2: function _TaxSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure1: function _TaxSettingsState_build__closure1(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure3: function _TaxSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure0: function _TaxSettingsState_build__closure0(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure4: function _TaxSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure: function _TaxSettingsState_build__closure(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure5: function _TaxSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, NumberOfRatesSelector: function NumberOfRatesSelector(t0, t1, t2, t3) { var _ = this; _.label = t0; _.numberOfRates = t1; _.onChanged = t2; _.key = t3; }, NumberOfRatesSelector_build_closure: function NumberOfRatesSelector_build_closure(t0) { this.$this = t0; }, TaxSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState; return new A.TaxSettingsVM(state, new A.TaxSettingsVM_fromStore_closure(store), t1.get$settings(), new A.TaxSettingsVM_fromStore_closure0(store), t1.company, new A.TaxSettingsVM_fromStore_closure1(store), new A.TaxSettingsVM_fromStore_closure2(store)); }, TaxSettingsScreen: function TaxSettingsScreen(t0) { this.key = t0; }, TaxSettingsScreen_build_closure: function TaxSettingsScreen_build_closure() { }, TaxSettingsVM: function TaxSettingsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; _.company = t4; _.onCompanyChanged = t5; _.onConfigureRatesPressed = t6; }, TaxSettingsVM_fromStore_closure0: function TaxSettingsVM_fromStore_closure0(t0) { this.store = t0; }, TaxSettingsVM_fromStore_closure1: function TaxSettingsVM_fromStore_closure1(t0) { this.store = t0; }, TaxSettingsVM_fromStore_closure: function TaxSettingsVM_fromStore_closure(t0) { this.store = t0; }, TaxSettingsVM_fromStore__closure: function TaxSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TaxSettingsVM_fromStore_closure2: function TaxSettingsVM_fromStore_closure2(t0) { this.store = t0; }, TemplatesAndReminders: function TemplatesAndReminders(t0, t1) { this.viewModel = t0; this.key = t1; }, _TemplatesAndRemindersState: function _TemplatesAndRemindersState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._templates_and_reminders$_debouncer = t0; _._templates_and_reminders$_selectedTemplate = null; _._templates_and_reminders$_selectedIndex = 0; _._bodyMarkdown = ""; _._lastBody = _._lastSubject = null; _._defaultBody = _._defaultSubject = _._emailPreview = _._bodyPreview = _._subjectPreview = ""; _._templates_and_reminders$_isLoading = false; _._templates_and_reminders$_controller = _._templates_and_reminders$_focusNode = null; _._updateReminders = false; _._subjectController = t1; _._templates_and_reminders$_bodyController = t2; _._templates_and_reminders$_controllers = t3; _.SingleTickerProviderStateMixin__ticker = t4; _.SingleTickerProviderStateMixin__tickerModeNotifier = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, _TemplatesAndRemindersState_initState_closure: function _TemplatesAndRemindersState_initState_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState_dispose_closure: function _TemplatesAndRemindersState_dispose_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__loadTemplate_closure: function _TemplatesAndRemindersState__loadTemplate_closure(t0, t1, t2) { this.$this = t0; this.template = t1; this.state = t2; }, _TemplatesAndRemindersState__onTextChanged_closure: function _TemplatesAndRemindersState__onTextChanged_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__onChanged_closure: function _TemplatesAndRemindersState__onChanged_closure(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure0: function _TemplatesAndRemindersState__onChanged_closure0(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure1: function _TemplatesAndRemindersState__onChanged_closure1(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure2: function _TemplatesAndRemindersState__onChanged_closure2(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure3: function _TemplatesAndRemindersState__onChanged_closure3(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure4: function _TemplatesAndRemindersState__onChanged_closure4(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure5: function _TemplatesAndRemindersState__onChanged_closure5(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure6: function _TemplatesAndRemindersState__onChanged_closure6(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure7: function _TemplatesAndRemindersState__onChanged_closure7(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure8: function _TemplatesAndRemindersState__onChanged_closure8(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure9: function _TemplatesAndRemindersState__onChanged_closure9(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure10: function _TemplatesAndRemindersState__onChanged_closure10(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure11: function _TemplatesAndRemindersState__onChanged_closure11(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onChanged_closure12: function _TemplatesAndRemindersState__onChanged_closure12(t0) { this._box_0 = t0; }, _TemplatesAndRemindersState__onTabChanged_closure: function _TemplatesAndRemindersState__onTabChanged_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__renderTemplate_closure: function _TemplatesAndRemindersState__renderTemplate_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__renderTemplate_closure0: function _TemplatesAndRemindersState__renderTemplate_closure0(t0) { this.$this = t0; }, _TemplatesAndRemindersState__renderTemplate__closure: function _TemplatesAndRemindersState__renderTemplate__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.subject = t1; _.body = t2; _.email = t3; }, _TemplatesAndRemindersState_build_closure9: function _TemplatesAndRemindersState_build_closure9(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TemplatesAndRemindersState_build_closure1: function _TemplatesAndRemindersState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TemplatesAndRemindersState_build__closure4: function _TemplatesAndRemindersState_build__closure4(t0, t1, t2) { this.$this = t0; this.value = t1; this.viewModel = t2; }, _TemplatesAndRemindersState_build_closure: function _TemplatesAndRemindersState_build_closure(t0) { this.company = t0; }, _TemplatesAndRemindersState_build_closure0: function _TemplatesAndRemindersState_build_closure0(t0) { this.localization = t0; }, _TemplatesAndRemindersState_build_closure2: function _TemplatesAndRemindersState_build_closure2(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _TemplatesAndRemindersState_build__closure3: function _TemplatesAndRemindersState_build__closure3(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure3: function _TemplatesAndRemindersState_build_closure3(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _TemplatesAndRemindersState_build__closure2: function _TemplatesAndRemindersState_build__closure2(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure4: function _TemplatesAndRemindersState_build_closure4(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _TemplatesAndRemindersState_build__closure1: function _TemplatesAndRemindersState_build__closure1(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure5: function _TemplatesAndRemindersState_build_closure5(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _TemplatesAndRemindersState_build__closure0: function _TemplatesAndRemindersState_build__closure0(t0) { this.value = t0; }, _TemplatesAndRemindersState_build_closure7: function _TemplatesAndRemindersState_build_closure7(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _TemplatesAndRemindersState_build__closure: function _TemplatesAndRemindersState_build__closure(t0) { this.value = t0; }, _TemplatesAndRemindersState_build_closure6: function _TemplatesAndRemindersState_build_closure6(t0) { this.localization = t0; }, _TemplatesAndRemindersState_build_closure8: function _TemplatesAndRemindersState_build_closure8(t0) { this.$this = t0; }, ReminderSettings: function ReminderSettings(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.enabled = t0; _.numDays = t1; _.feeAmount = t2; _.feePercent = t3; _.schedule = t4; _.onChanged = t5; _.key = t6; }, _ReminderSettingsState: function _ReminderSettingsState(t0, t1, t2, t3, t4, t5) { var _ = this; _._daysController = t0; _._feeAmountController = t1; _._feePercentController = t2; _._templates_and_reminders$_schedule = _._templates_and_reminders$_enabled = null; _._templates_and_reminders$_controllers = t3; _._templates_and_reminders$_debouncer = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _ReminderSettingsState_dispose_closure: function _ReminderSettingsState_dispose_closure(t0) { this.$this = t0; }, _ReminderSettingsState_didChangeDependencies_closure: function _ReminderSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ReminderSettingsState_didChangeDependencies_closure0: function _ReminderSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ReminderSettingsState__onTextChanged_closure: function _ReminderSettingsState__onTextChanged_closure(t0) { this.$this = t0; }, _ReminderSettingsState_build_closure: function _ReminderSettingsState_build_closure(t0) { this.$this = t0; }, _ReminderSettingsState_build_closure0: function _ReminderSettingsState_build_closure0(t0) { this.$this = t0; }, EmailPreview: function EmailPreview(t0, t1, t2, t3) { var _ = this; _.subject = t0; _.body = t1; _.isLoading = t2; _.key = t3; }, __TemplatesAndRemindersState_State_SingleTickerProviderStateMixin: function __TemplatesAndRemindersState_State_SingleTickerProviderStateMixin() { }, TemplatesAndRemindersVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.selectedTemplate; return new A.TemplatesAndRemindersVM(state, t1.get$settings(), t2, new A.TemplatesAndRemindersVM_fromStore_closure(store), new A.TemplatesAndRemindersVM_fromStore_closure0(store), new A.TemplatesAndRemindersVM_fromStore_closure1(state, store)); }, TemplatesAndRemindersScreen: function TemplatesAndRemindersScreen(t0) { this.key = t0; }, TemplatesAndRemindersScreen_build_closure: function TemplatesAndRemindersScreen_build_closure() { }, TemplatesAndRemindersVM: function TemplatesAndRemindersVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.settings = t1; _.selectedTemplate = t2; _.onTemplateChanged = t3; _.onSettingsChanged = t4; _.onSavePressed = t5; }, TemplatesAndRemindersVM_fromStore_closure0: function TemplatesAndRemindersVM_fromStore_closure0(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore_closure: function TemplatesAndRemindersVM_fromStore_closure(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore_closure1: function TemplatesAndRemindersVM_fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, TemplatesAndRemindersVM_fromStore__closure: function TemplatesAndRemindersVM_fromStore__closure(t0, t1, t2, t3) { var _ = this; _.updateReminders = t0; _.state = t1; _.store = t2; _.context = t3; }, TemplatesAndRemindersVM_fromStore___closure: function TemplatesAndRemindersVM_fromStore___closure(t0, t1, t2) { this.updateReminders = t0; this.state = t1; this.store = t2; }, TemplatesAndRemindersVM_fromStore____closure: function TemplatesAndRemindersVM_fromStore____closure(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore_____closure: function TemplatesAndRemindersVM_fromStore_____closure(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore____closure0: function TemplatesAndRemindersVM_fromStore____closure0(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore___closure0: function TemplatesAndRemindersVM_fromStore___closure0(t0) { this.callback = t0; }, TemplatesAndRemindersVM_fromStore___closure1: function TemplatesAndRemindersVM_fromStore___closure1(t0) { this.callback = t0; }, TemplatesAndRemindersVM_fromStore___closure2: function TemplatesAndRemindersVM_fromStore___closure2(t0) { this.callback = t0; }, UserDetails: function UserDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _UserDetailsState: function _UserDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._user_details$_focusNode = t0; _._user_details$_controller = null; _.autoValidate = false; _._user_details$_firstNameController = t1; _._user_details$_lastNameController = t2; _._user_details$_phoneController = t3; _._user_details$_emailController = t4; _._passwordController = t5; _._user_details$_controllers = t6; _._user_details$_debouncer = t7; _.SingleTickerProviderStateMixin__ticker = t8; _.SingleTickerProviderStateMixin__tickerModeNotifier = t9; _._widget = null; _._debugLifecycleState = t10; _._framework$_element = null; }, _UserDetailsState_dispose_closure: function _UserDetailsState_dispose_closure(t0) { this.$this = t0; }, _UserDetailsState_didChangeDependencies_closure: function _UserDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _UserDetailsState_didChangeDependencies_closure0: function _UserDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _UserDetailsState__onChanged_closure: function _UserDetailsState__onChanged_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _UserDetailsState__onChanged_closure0: function _UserDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState__onSavePressed_closure: function _UserDetailsState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _UserDetailsState_build_closure: function _UserDetailsState_build_closure(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure0: function _UserDetailsState_build_closure0(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure1: function _UserDetailsState_build_closure1(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure2: function _UserDetailsState_build_closure2(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure3: function _UserDetailsState_build_closure3(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure4: function _UserDetailsState_build_closure4(t0) { this.localization = t0; }, _UserDetailsState_build_closure5: function _UserDetailsState_build_closure5(t0) { this.localization = t0; }, _UserDetailsState_build_closure6: function _UserDetailsState_build_closure6(t0) { this.localization = t0; }, _UserDetailsState_build_closure7: function _UserDetailsState_build_closure7(t0, t1) { this.state = t0; this.localization = t1; }, _UserDetailsState_build_closure8: function _UserDetailsState_build_closure8(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.user = t3; _.viewModel = t4; }, _UserDetailsState_build__closure4: function _UserDetailsState_build__closure4(t0) { this.viewModel = t0; }, _UserDetailsState_build_closure9: function _UserDetailsState_build_closure9(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; _.user = t4; }, _UserDetailsState_build__closure3: function _UserDetailsState_build__closure3(t0) { this.viewModel = t0; }, _UserDetailsState_build_closure10: function _UserDetailsState_build_closure10(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure2: function _UserDetailsState_build__closure2(t0) { this.value = t0; }, _UserDetailsState_build_closure12: function _UserDetailsState_build_closure12(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure1: function _UserDetailsState_build__closure1(t0) { this.value = t0; }, _UserDetailsState_build_closure11: function _UserDetailsState_build_closure11() { }, _UserDetailsState_build_closure13: function _UserDetailsState_build_closure13(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure0: function _UserDetailsState_build__closure0(t0) { this.value = t0; }, _UserDetailsState_build_closure14: function _UserDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserDetailsState_build__closure: function _UserDetailsState_build__closure(t0, t1) { this.channel = t0; this.options = t1; }, _EnableTwoFactor: function _EnableTwoFactor(t0, t1) { this.state = t0; this.key = t1; }, _EnableTwoFactorState: function _EnableTwoFactorState(t0, t1, t2) { var _ = this; _._oneTimePassword = _._user_details$_qrCode = _._user_details$_secret = null; _._user_details$_isLoading = true; _._user_details$_webClient = t0; _._user_details$_focusNode = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _EnableTwoFactorState_initState_closure: function _EnableTwoFactorState_initState_closure(t0) { this.$this = t0; }, _EnableTwoFactorState_initState__closure: function _EnableTwoFactorState_initState__closure(t0, t1) { this.$this = t0; this.response = t1; }, _EnableTwoFactorState_initState_closure0: function _EnableTwoFactorState_initState_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure: function _EnableTwoFactorState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _EnableTwoFactorState__onSavePressed_closure0: function _EnableTwoFactorState__onSavePressed_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure1: function _EnableTwoFactorState__onSavePressed_closure1(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed__closure0: function _EnableTwoFactorState__onSavePressed__closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure2: function _EnableTwoFactorState__onSavePressed_closure2(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed__closure: function _EnableTwoFactorState__onSavePressed__closure(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure: function _EnableTwoFactorState_build_closure(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure1: function _EnableTwoFactorState_build_closure1(t0) { this.context = t0; }, _EnableTwoFactorState_build_closure0: function _EnableTwoFactorState_build_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure2: function _EnableTwoFactorState_build_closure2() { }, _EnableTwoFactorState_build_closure3: function _EnableTwoFactorState_build_closure3(t0) { this.context = t0; }, _EnableTwoFactorState_build_closure4: function _EnableTwoFactorState_build_closure4(t0) { this.$this = t0; }, _SmsVerification: function _SmsVerification(t0, t1) { this.state = t0; this.key = t1; }, __SmsVerificationState: function __SmsVerificationState(t0, t1, t2) { var _ = this; _._user_details$_isLoading = true; _._user_details$_code = ""; _._user_details$_autoValidate = false; _._user_details$_webClient = t0; _._user_details$_focusNode = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, __SmsVerificationState__sendCode_closure: function __SmsVerificationState__sendCode_closure(t0) { this.$this = t0; }, __SmsVerificationState__sendCode_closure0: function __SmsVerificationState__sendCode_closure0(t0) { this.$this = t0; }, __SmsVerificationState__sendCode__closure0: function __SmsVerificationState__sendCode__closure0(t0) { this.$this = t0; }, __SmsVerificationState__sendCode_closure1: function __SmsVerificationState__sendCode_closure1(t0, t1) { this.$this = t0; this.navigator = t1; }, __SmsVerificationState__sendCode__closure: function __SmsVerificationState__sendCode__closure(t0) { this.$this = t0; }, __SmsVerificationState__verifyCode_closure: function __SmsVerificationState__verifyCode_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, __SmsVerificationState__verifyCode_closure0: function __SmsVerificationState__verifyCode_closure0(t0) { this.$this = t0; }, __SmsVerificationState__verifyCode_closure1: function __SmsVerificationState__verifyCode_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.navigator = t1; _.localization = t2; _.store = t3; }, __SmsVerificationState__verifyCode__closure0: function __SmsVerificationState__verifyCode__closure0(t0) { this.$this = t0; }, __SmsVerificationState__verifyCode_closure2: function __SmsVerificationState__verifyCode_closure2(t0) { this.$this = t0; }, __SmsVerificationState__verifyCode__closure: function __SmsVerificationState__verifyCode__closure(t0) { this.$this = t0; }, __SmsVerificationState_build_closure: function __SmsVerificationState_build_closure(t0) { this.$this = t0; }, __SmsVerificationState_build_closure0: function __SmsVerificationState_build_closure0(t0) { this.localization = t0; }, __SmsVerificationState_build_closure1: function __SmsVerificationState_build_closure1(t0) { this.context = t0; }, __SmsVerificationState_build_closure2: function __SmsVerificationState_build_closure2(t0) { this.$this = t0; }, __SmsVerificationState_build_closure3: function __SmsVerificationState_build_closure3(t0) { this.$this = t0; }, __UserDetailsState_State_SingleTickerProviderStateMixin: function __UserDetailsState_State_SingleTickerProviderStateMixin() { }, UserDetailsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"); return new A.UserDetailsVM(state, state.uiState.settingsUIState.user, new A.UserDetailsVM_fromStore_closure(store), new A.UserDetailsVM_fromStore_closure0(state, store), new A.UserDetailsVM_fromStore_closure1(store), new A.UserDetailsVM_fromStore_closure2(state, store), new A.UserDetailsVM_fromStore_closure3(store), new A.UserDetailsVM_fromStore_closure4(state, store), new A.UserDetailsVM_fromStore_closure5(store, state), new A.UserDetailsVM_fromStore_closure6(store, state), new A.UserDetailsVM_fromStore_closure7(store), new A.UserDetailsVM_fromStore_closure8(state, store)); }, UserDetailsScreen: function UserDetailsScreen(t0) { this.key = t0; }, UserDetailsScreen_build_closure: function UserDetailsScreen_build_closure() { }, UserDetailsVM: function UserDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.state = t0; _.user = t1; _.onChanged = t2; _.onSavePressed = t3; _.onConnectGooglePressed = t4; _.onDisconnectGooglePressed = t5; _.onConnectMicrosoftPressed = t6; _.onDisconnectMicrosoftPressed = t7; _.onDisconnectMicrosoftEmailPressed = t8; _.onDisconnectGmailPressed = t9; _.onDisableTwoFactorPressed = t10; _.onDisconnectApplePressed = t11; }, UserDetailsVM_fromStore_closure: function UserDetailsVM_fromStore_closure(t0) { this.store = t0; }, UserDetailsVM_fromStore_closure5: function UserDetailsVM_fromStore_closure5(t0, t1) { this.store = t0; this.state = t1; }, UserDetailsVM_fromStore__closure2: function UserDetailsVM_fromStore__closure2(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure2: function UserDetailsVM_fromStore___closure2(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure2: function UserDetailsVM_fromStore____closure2() { }, UserDetailsVM_fromStore_closure6: function UserDetailsVM_fromStore_closure6(t0, t1) { this.store = t0; this.state = t1; }, UserDetailsVM_fromStore__closure1: function UserDetailsVM_fromStore__closure1(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure1: function UserDetailsVM_fromStore___closure1(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure1: function UserDetailsVM_fromStore____closure1() { }, UserDetailsVM_fromStore_closure7: function UserDetailsVM_fromStore_closure7(t0) { this.store = t0; }, UserDetailsVM_fromStore__closure0: function UserDetailsVM_fromStore__closure0(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore___closure0: function UserDetailsVM_fromStore___closure0(t0, t1) { this.store = t0; this.completer = t1; }, UserDetailsVM_fromStore_closure2: function UserDetailsVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure5: function UserDetailsVM_fromStore__closure5(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure6: function UserDetailsVM_fromStore___closure6(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure5: function UserDetailsVM_fromStore____closure5() { }, UserDetailsVM_fromStore____closure6: function UserDetailsVM_fromStore____closure6() { }, UserDetailsVM_fromStore_closure1: function UserDetailsVM_fromStore_closure1(t0) { this.store = t0; }, UserDetailsVM_fromStore__closure6: function UserDetailsVM_fromStore__closure6(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore___closure7: function UserDetailsVM_fromStore___closure7(t0, t1, t2, t3) { var _ = this; _.context = t0; _.store = t1; _.password = t2; _.completer = t3; }, UserDetailsVM_fromStore_closure4: function UserDetailsVM_fromStore_closure4(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure3: function UserDetailsVM_fromStore__closure3(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure3: function UserDetailsVM_fromStore___closure3(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure3: function UserDetailsVM_fromStore____closure3() { }, UserDetailsVM_fromStore____closure4: function UserDetailsVM_fromStore____closure4() { }, UserDetailsVM_fromStore_closure8: function UserDetailsVM_fromStore_closure8(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure: function UserDetailsVM_fromStore__closure(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure: function UserDetailsVM_fromStore___closure(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure: function UserDetailsVM_fromStore____closure() { }, UserDetailsVM_fromStore____closure0: function UserDetailsVM_fromStore____closure0() { }, UserDetailsVM_fromStore_closure3: function UserDetailsVM_fromStore_closure3(t0) { this.store = t0; }, UserDetailsVM_fromStore__closure4: function UserDetailsVM_fromStore__closure4(t0, t1, t2) { this.store = t0; this.completer = t1; this.context = t2; }, UserDetailsVM_fromStore___closure4: function UserDetailsVM_fromStore___closure4(t0, t1, t2) { this.store = t0; this.password = t1; this.completer = t2; }, UserDetailsVM_fromStore___closure5: function UserDetailsVM_fromStore___closure5(t0) { this.context = t0; }, UserDetailsVM_fromStore_closure0: function UserDetailsVM_fromStore_closure0(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure7: function UserDetailsVM_fromStore__closure7(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, UserDetailsVM_fromStore___closure8: function UserDetailsVM_fromStore___closure8(t0, t1, t2, t3) { var _ = this; _.store = t0; _.origUserSettings = t1; _.localization = t2; _.appBuilder = t3; }, UserDetailsVM_fromStore____closure8: function UserDetailsVM_fromStore____closure8() { }, UserDetailsVM_fromStore___closure9: function UserDetailsVM_fromStore___closure9(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore____closure7: function UserDetailsVM_fromStore____closure7(t0, t1) { this.store = t0; this.completer = t1; }, WorkflowSettings: function WorkflowSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _WorkflowSettingsState: function _WorkflowSettingsState(t0, t1, t2) { var _ = this; _._workflow_settings$_controller = _._workflow_settings$_focusNode = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _WorkflowSettingsState_build_closure: function _WorkflowSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure5: function _WorkflowSettingsState_build__closure5(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure0: function _WorkflowSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _WorkflowSettingsState_build__closure4: function _WorkflowSettingsState_build__closure4(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure1: function _WorkflowSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure3: function _WorkflowSettingsState_build__closure3(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure2: function _WorkflowSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure2: function _WorkflowSettingsState_build__closure2(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure4: function _WorkflowSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure1: function _WorkflowSettingsState_build__closure1(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure3: function _WorkflowSettingsState_build_closure3(t0) { this.localization = t0; }, _WorkflowSettingsState_build_closure5: function _WorkflowSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure0: function _WorkflowSettingsState_build__closure0(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure6: function _WorkflowSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure: function _WorkflowSettingsState_build__closure(t0) { this.value = t0; }, __WorkflowSettingsState_State_SingleTickerProviderStateMixin: function __WorkflowSettingsState_State_SingleTickerProviderStateMixin() { }, WorkflowSettingsVM_fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.WorkflowSettingsVM(state, t1.company, new A.WorkflowSettingsVM_fromStore_closure(store), t2, new A.WorkflowSettingsVM_fromStore_closure0(store), new A.WorkflowSettingsVM_fromStore_closure1(store)); }, WorkflowSettingsScreen: function WorkflowSettingsScreen(t0) { this.key = t0; }, WorkflowSettingsScreen_build_closure: function WorkflowSettingsScreen_build_closure() { }, WorkflowSettingsVM: function WorkflowSettingsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.onSavePressed = t2; _.settings = t3; _.onSettingsChanged = t4; _.onCompanyChanged = t5; }, WorkflowSettingsVM_fromStore_closure0: function WorkflowSettingsVM_fromStore_closure0(t0) { this.store = t0; }, WorkflowSettingsVM_fromStore_closure1: function WorkflowSettingsVM_fromStore_closure1(t0) { this.store = t0; }, WorkflowSettingsVM_fromStore_closure: function WorkflowSettingsVM_fromStore_closure(t0) { this.store = t0; }, WorkflowSettingsVM_fromStore__closure: function WorkflowSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, SubscriptionEdit: function SubscriptionEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _SubscriptionEditState: function _SubscriptionEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._subscription_edit$_debouncer = t0; _._subscription_edit$_controller = _._subscription_edit$_focusNode = null; _._subscription_edit$_nameController = t1; _._promoCodeController = t2; _._promoDiscountController = t3; _._maxSeatsLimitController = t4; _._returnUrlController = t5; _._postPurchaseHeaderKeyController = t6; _._postPurchaseHeaderValueController = t7; _._postPurchaseUrlController = t8; _._subscription_edit$_controllers = t9; _.SingleTickerProviderStateMixin__ticker = t10; _.SingleTickerProviderStateMixin__tickerModeNotifier = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, _SubscriptionEditState_didChangeDependencies_closure: function _SubscriptionEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _SubscriptionEditState_didChangeDependencies_closure0: function _SubscriptionEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _SubscriptionEditState_dispose_closure: function _SubscriptionEditState_dispose_closure(t0) { this.$this = t0; }, _SubscriptionEditState__onChanged_closure: function _SubscriptionEditState__onChanged_closure(t0) { this.$this = t0; }, _SubscriptionEditState__onChanged_closure0: function _SubscriptionEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.subscription = t1; }, _SubscriptionEditState_build_closure24: function _SubscriptionEditState_build_closure24(t0) { this.viewModel = t0; }, _SubscriptionEditState_build_closure25: function _SubscriptionEditState_build_closure25(t0) { this.viewModel = t0; }, _SubscriptionEditState_build_closure: function _SubscriptionEditState_build_closure(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure21: function _SubscriptionEditState_build__closure21(t0) { this.groupId = t0; }, _SubscriptionEditState_build_closure0: function _SubscriptionEditState_build_closure0(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure20: function _SubscriptionEditState_build__closure20(t0) { this.userId = t0; }, _SubscriptionEditState_build_closure1: function _SubscriptionEditState_build_closure1(t0, t1, t2) { this.subscription = t0; this.viewModel = t1; this.context = t2; }, _SubscriptionEditState_build__closure18: function _SubscriptionEditState_build__closure18(t0, t1) { this.parts = t0; this.value = t1; }, _SubscriptionEditState_build___closure3: function _SubscriptionEditState_build___closure3() { }, _SubscriptionEditState_build__closure19: function _SubscriptionEditState_build__closure19(t0) { this.context = t0; }, _SubscriptionEditState_build_closure2: function _SubscriptionEditState_build_closure2() { }, _SubscriptionEditState_build_closure3: function _SubscriptionEditState_build_closure3(t0, t1, t2) { this.state = t0; this.subscription = t1; this.viewModel = t2; }, _SubscriptionEditState_build__closure17: function _SubscriptionEditState_build__closure17(t0, t1, t2) { this.subscription = t0; this.productId = t1; this.viewModel = t2; }, _SubscriptionEditState_build___closure2: function _SubscriptionEditState_build___closure2(t0) { this.parts = t0; }, _SubscriptionEditState_build_closure4: function _SubscriptionEditState_build_closure4(t0, t1, t2) { this.subscription = t0; this.viewModel = t1; this.context = t2; }, _SubscriptionEditState_build__closure15: function _SubscriptionEditState_build__closure15(t0, t1) { this.parts = t0; this.value = t1; }, _SubscriptionEditState_build___closure1: function _SubscriptionEditState_build___closure1() { }, _SubscriptionEditState_build__closure16: function _SubscriptionEditState_build__closure16(t0) { this.context = t0; }, _SubscriptionEditState_build_closure5: function _SubscriptionEditState_build_closure5() { }, _SubscriptionEditState_build_closure6: function _SubscriptionEditState_build_closure6(t0, t1, t2) { this.state = t0; this.subscription = t1; this.viewModel = t2; }, _SubscriptionEditState_build__closure14: function _SubscriptionEditState_build__closure14(t0, t1, t2) { this.subscription = t0; this.productId = t1; this.viewModel = t2; }, _SubscriptionEditState_build___closure0: function _SubscriptionEditState_build___closure0(t0) { this.parts = t0; }, _SubscriptionEditState_build_closure8: function _SubscriptionEditState_build_closure8(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure13: function _SubscriptionEditState_build__closure13(t0) { this.value = t0; }, _SubscriptionEditState_build_closure7: function _SubscriptionEditState_build_closure7(t0) { this.localization = t0; }, _SubscriptionEditState_build_closure10: function _SubscriptionEditState_build_closure10(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure12: function _SubscriptionEditState_build__closure12(t0) { this.value = t0; }, _SubscriptionEditState_build_closure9: function _SubscriptionEditState_build_closure9(t0) { this.localization = t0; }, _SubscriptionEditState_build_closure11: function _SubscriptionEditState_build_closure11(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure11: function _SubscriptionEditState_build__closure11(t0) { this.value = t0; }, _SubscriptionEditState_build_closure12: function _SubscriptionEditState_build_closure12(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure10: function _SubscriptionEditState_build__closure10(t0) { this.value = t0; }, _SubscriptionEditState_build_closure13: function _SubscriptionEditState_build_closure13(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure9: function _SubscriptionEditState_build__closure9(t0) { this.value = t0; }, _SubscriptionEditState_build_closure14: function _SubscriptionEditState_build_closure14(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure8: function _SubscriptionEditState_build__closure8(t0) { this.value = t0; }, _SubscriptionEditState_build_closure15: function _SubscriptionEditState_build_closure15(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure7: function _SubscriptionEditState_build__closure7(t0) { this.value = t0; }, _SubscriptionEditState_build_closure16: function _SubscriptionEditState_build_closure16(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure6: function _SubscriptionEditState_build__closure6(t0) { this.value = t0; }, _SubscriptionEditState_build_closure17: function _SubscriptionEditState_build_closure17(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure5: function _SubscriptionEditState_build__closure5(t0) { this.value = t0; }, _SubscriptionEditState_build_closure18: function _SubscriptionEditState_build_closure18(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure4: function _SubscriptionEditState_build__closure4(t0) { this.value = t0; }, _SubscriptionEditState_build_closure19: function _SubscriptionEditState_build_closure19(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure3: function _SubscriptionEditState_build__closure3(t0) { this.value = t0; }, _SubscriptionEditState_build_closure20: function _SubscriptionEditState_build_closure20(t0) { this.$this = t0; }, _SubscriptionEditState_build__closure2: function _SubscriptionEditState_build__closure2() { }, _SubscriptionEditState_build_closure21: function _SubscriptionEditState_build_closure21(t0) { this.$this = t0; }, _SubscriptionEditState_build__closure1: function _SubscriptionEditState_build__closure1() { }, _SubscriptionEditState_build_closure22: function _SubscriptionEditState_build_closure22(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.webhookConfiguration = t1; _.key = t2; _.viewModel = t3; _.subscription = t4; _.value = t5; }, _SubscriptionEditState_build__closure0: function _SubscriptionEditState_build__closure0(t0, t1) { this.key = t0; this.value = t1; }, _SubscriptionEditState_build_closure23: function _SubscriptionEditState_build_closure23(t0, t1, t2, t3) { var _ = this; _.webhookConfiguration = t0; _.localization = t1; _.viewModel = t2; _.subscription = t3; }, _SubscriptionEditState_build__closure: function _SubscriptionEditState_build__closure(t0, t1, t2) { this.viewModel = t0; this.subscription = t1; this.key = t2; }, _SubscriptionEditState_build___closure: function _SubscriptionEditState_build___closure(t0) { this.key = t0; }, __SubscriptionEditState_State_SingleTickerProviderStateMixin: function __SubscriptionEditState_State_SingleTickerProviderStateMixin() { }, SubscriptionEditVM_SubscriptionEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, subscription = t1.subscriptionUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].subscriptionState.map; t4 = subscription.id; t3._map$_map.$index(0, t4); return new A.SubscriptionEditVM(subscription, t2[t1].userCompany.company, new A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure(store), new A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0(store, state), new A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1(state, store), state); }, SubscriptionEditScreen: function SubscriptionEditScreen(t0) { this.key = t0; }, SubscriptionEditScreen_build_closure0: function SubscriptionEditScreen_build_closure0() { }, SubscriptionEditScreen_build_closure: function SubscriptionEditScreen_build_closure() { }, SubscriptionEditVM: function SubscriptionEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.subscription = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure(t0) { this.store = t0; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore__closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure(t0) { this.localization = t0; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.subscription = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1() { }, SubscriptionEditVM_SubscriptionEditVM$fromStore____closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore____closure(t0) { this.error = t0; }, SubscriptionListItem: function SubscriptionListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.subscription = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, SubscriptionListItem_build_closure1: function SubscriptionListItem_build_closure1(t0) { this.$this = t0; }, SubscriptionListItem_build_closure0: function SubscriptionListItem_build_closure0(t0) { this.$this = t0; }, SubscriptionListItem_build_closure: function SubscriptionListItem_build_closure(t0) { this.$this = t0; }, SubscriptionListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.subscriptionUIState; t2.toString; t4 = $.$get$memoizedFilteredSubscriptionList(); t5 = state.getUISelection$1(B.EntityType_subscription); t6 = t1[t3].subscriptionState; t2 = t2.listUIState; t6 = t4.call$4(t5, t6.map, t6.list, t2); t5 = t1[t3]; t4 = t5.subscriptionState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_subscription); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType([], type$.JSArray_legacy_String); } else t1 = t5; return new A.SubscriptionListVM(state, t6, t4, t2, new A.SubscriptionListVM_fromStore_closure(new A.SubscriptionListVM_fromStore__handleRefresh(store)), t1, new A.SubscriptionListVM_fromStore_closure0(store), new A.SubscriptionListVM_fromStore_closure1(store)); }, SubscriptionListBuilder: function SubscriptionListBuilder(t0) { this.key = t0; }, SubscriptionListBuilder_build_closure: function SubscriptionListBuilder_build_closure() { }, SubscriptionListBuilder_build__closure: function SubscriptionListBuilder_build__closure(t0) { this.viewModel = t0; }, SubscriptionListVM: function SubscriptionListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.subscriptionList = t1; _.subscriptionMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, SubscriptionListVM_fromStore__handleRefresh: function SubscriptionListVM_fromStore__handleRefresh(t0) { this.store = t0; }, SubscriptionListVM_fromStore_closure: function SubscriptionListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, SubscriptionListVM_fromStore_closure0: function SubscriptionListVM_fromStore_closure0(t0) { this.store = t0; }, SubscriptionListVM_fromStore_closure1: function SubscriptionListVM_fromStore_closure1(t0) { this.store = t0; }, SubscriptionPresenter: function SubscriptionPresenter() { this.context = this.entity = null; }, SubscriptionScreen: function SubscriptionScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, SubscriptionScreen_build_closure10: function SubscriptionScreen_build_closure10(t0) { this.store = t0; }, SubscriptionScreen_build_closure7: function SubscriptionScreen_build_closure7(t0) { this.store = t0; }, SubscriptionScreen_build_closure8: function SubscriptionScreen_build_closure8(t0) { this.store = t0; }, SubscriptionScreen_build_closure9: function SubscriptionScreen_build_closure9(t0) { this.store = t0; }, SubscriptionScreen_build_closure4: function SubscriptionScreen_build_closure4(t0) { this.store = t0; }, SubscriptionScreen_build_closure5: function SubscriptionScreen_build_closure5(t0) { this.store = t0; }, SubscriptionScreen_build_closure: function SubscriptionScreen_build_closure(t0) { this.store = t0; }, SubscriptionScreen_build_closure0: function SubscriptionScreen_build_closure0(t0) { this.store = t0; }, SubscriptionScreen_build_closure1: function SubscriptionScreen_build_closure1(t0) { this.store = t0; }, SubscriptionScreen_build_closure2: function SubscriptionScreen_build_closure2(t0) { this.store = t0; }, SubscriptionScreen_build_closure3: function SubscriptionScreen_build_closure3(t0) { this.store = t0; }, SubscriptionScreen_build_closure6: function SubscriptionScreen_build_closure6(t0) { this.context = t0; }, SubscriptionScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].subscriptionState.toString; t4 = $.$get$memoizedFilteredSubscriptionList(); t5 = state.getUISelection$1(B.EntityType_subscription); t6 = t1[t3].subscriptionState; t7 = t6.map; t6 = t6.list; t2 = t2.subscriptionUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.SubscriptionScreenVM(t6); }, SubscriptionScreenBuilder: function SubscriptionScreenBuilder(t0) { this.key = t0; }, SubscriptionScreenBuilder_build_closure: function SubscriptionScreenBuilder_build_closure() { }, SubscriptionScreenVM: function SubscriptionScreenVM(t0) { this.subscriptionList = t0; }, SubscriptionView: function SubscriptionView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _SubscriptionViewState: function _SubscriptionViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _SubscriptionViewState_build_closure1: function _SubscriptionViewState_build_closure1(t0) { this.viewModel = t0; }, _SubscriptionViewState_build_closure0: function _SubscriptionViewState_build_closure0(t0, t1) { this.subscription = t0; this.localization = t1; }, _SubscriptionViewState_build_closure: function _SubscriptionViewState_build_closure(t0) { this.subscription = t0; }, SubscriptionViewVM_SubscriptionViewVM$fromStore(store) { var t4, subscription, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].subscriptionState.map; t2 = t2.subscriptionUIState.selectedId; subscription = t4._map$_map.$index(0, t2); if (subscription == null) subscription = A.SubscriptionEntity_SubscriptionEntity(t2, null); t1 = t1[t3].userCompany.company; subscription.get$isNew(); return new A.SubscriptionViewVM(state, subscription, t1, new A.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure(store)); }, SubscriptionViewScreen: function SubscriptionViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, SubscriptionViewScreen_build_closure0: function SubscriptionViewScreen_build_closure0() { }, SubscriptionViewScreen_build_closure: function SubscriptionViewScreen_build_closure(t0) { this.$this = t0; }, SubscriptionViewVM: function SubscriptionViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.subscription = t1; _.company = t2; _.onBackPressed = t3; }, SubscriptionViewVM_SubscriptionViewVM$fromStore_closure: function SubscriptionViewVM_SubscriptionViewVM$fromStore_closure(t0) { this.store = t0; }, UpdateDialog: function UpdateDialog(t0) { this.key = t0; }, UpdateState: function UpdateState(t0, t1) { this.index = t0; this._core$_name = t1; }, _UpdateDialogState: function _UpdateDialogState(t0, t1) { var _ = this; _.updateState = t0; _._widget = _.updateResponse = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _UpdateDialogState_build_closure: function _UpdateDialogState_build_closure(t0) { this.localization = t0; }, _UpdateDialogState_build_closure0: function _UpdateDialogState_build_closure0(t0) { this.context = t0; }, _UpdateDialogState_build_closure1: function _UpdateDialogState_build_closure1() { }, _UpdateDialogState_build_closure2: function _UpdateDialogState_build_closure2(t0) { this.account = t0; }, _UpdateDialogState_build_closure3: function _UpdateDialogState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, _UpdateDialogState_build_closure4: function _UpdateDialogState_build_closure4(t0, t1) { this.context = t0; this.store = t1; }, _UpdateDialogState_updateApp_closure: function _UpdateDialogState_updateApp_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.store = t2; _.context = t3; }, _UpdateDialogState_updateApp__closure: function _UpdateDialogState_updateApp__closure(t0) { this.$this = t0; }, _UpdateDialogState_updateApp__closure0: function _UpdateDialogState_updateApp__closure0(t0, t1) { this.$this = t0; this.store = t1; }, _UpdateDialogState_updateApp___closure0: function _UpdateDialogState_updateApp___closure0(t0, t1) { this.$this = t0; this.response = t1; }, _UpdateDialogState_updateApp__closure1: function _UpdateDialogState_updateApp__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _UpdateDialogState_updateApp___closure: function _UpdateDialogState_updateApp___closure(t0) { this.$this = t0; }, TaskEdit: function TaskEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditState: function _TaskEditState(t0, t1, t2) { var _ = this; _._task_edit$_controller = null; _._task_edit$_updatedAt = 0; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _TaskEditState_build_closure1: function _TaskEditState_build_closure1(t0) { this.viewModel = t0; }, _TaskEditState_build_closure2: function _TaskEditState_build_closure2(t0) { this.$this = t0; }, _TaskEditState_build_closure0: function _TaskEditState_build_closure0(t0) { this.$this = t0; }, _TaskEditState_build_closure: function _TaskEditState_build_closure(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TaskEditState_build__closure: function _TaskEditState_build__closure(t0) { this.$this = t0; }, _BottomBar: function _BottomBar(t0, t1) { this.task = t0; this.key = t1; }, _BottomBar_build_closure: function _BottomBar_build_closure(t0) { this.store = t0; }, _BottomBar_build_closure0: function _BottomBar_build_closure0(t0, t1, t2) { this.$this = t0; this.localization = t1; this.context = t2; }, __TaskEditState_State_SingleTickerProviderStateMixin: function __TaskEditState_State_SingleTickerProviderStateMixin() { }, TaskEditDesktop: function TaskEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditDesktopState: function _TaskEditDesktopState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._task_edit_desktop$_numberController = t0; _._task_edit_desktop$_rateController = t1; _._task_edit_desktop$_descriptionController = t2; _._task_edit_desktop$_custom1Controller = t3; _._task_edit_desktop$_custom2Controller = t4; _._task_edit_desktop$_custom3Controller = t5; _._task_edit_desktop$_custom4Controller = t6; _._task_edit_desktop$_debouncer = t7; _._task_edit_desktop$_controllers = t8; _._task_edit_desktop$_durationUpdateAt = _._task_edit_desktop$_endTimeUpdatedAt = _._task_edit_desktop$_endDateUpdatedAt = _._task_edit_desktop$_startTimeUpdatedAt = _._task_edit_desktop$_startDateUpdatedAt = _._task_edit_desktop$_updatedAt = 0; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, _TaskEditDesktopState_didChangeDependencies_closure: function _TaskEditDesktopState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskEditDesktopState_didChangeDependencies_closure0: function _TaskEditDesktopState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskEditDesktopState_dispose_closure: function _TaskEditDesktopState_dispose_closure(t0) { this.$this = t0; }, _TaskEditDesktopState__onChanged_closure: function _TaskEditDesktopState__onChanged_closure(t0) { this.$this = t0; }, _TaskEditDesktopState__onChanged_closure0: function _TaskEditDesktopState__onChanged_closure0(t0, t1) { this.$this = t0; this.task = t1; }, _TaskEditDesktopState_build_closure: function _TaskEditDesktopState_build_closure() { }, _TaskEditDesktopState_build_closure0: function _TaskEditDesktopState_build_closure0() { }, _TaskEditDesktopState_build_closure2: function _TaskEditDesktopState_build_closure2(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDesktopState_build__closure8: function _TaskEditDesktopState_build__closure8(t0) { this.client = t0; }, _TaskEditDesktopState_build_closure1: function _TaskEditDesktopState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDesktopState_build_closure3: function _TaskEditDesktopState_build_closure3(t0, t1, t2) { this.store = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDesktopState_build__closure7: function _TaskEditDesktopState_build__closure7(t0, t1) { this.project = t0; this.task = t1; }, _TaskEditDesktopState_build_closure4: function _TaskEditDesktopState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDesktopState_build_closure5: function _TaskEditDesktopState_build_closure5(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDesktopState_build__closure6: function _TaskEditDesktopState_build__closure6(t0) { this.userId = t0; }, _TaskEditDesktopState_build_closure6: function _TaskEditDesktopState_build_closure6(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDesktopState_build__closure5: function _TaskEditDesktopState_build__closure5(t0) { this.taskStatus = t0; }, _TaskEditDesktopState_build_closure7: function _TaskEditDesktopState_build_closure7(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.showEndDate = t3; _.viewModel = t4; }, _TaskEditDesktopState_build__closure4: function _TaskEditDesktopState_build__closure4(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure8: function _TaskEditDesktopState_build_closure8(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure3: function _TaskEditDesktopState_build__closure3(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure9: function _TaskEditDesktopState_build_closure9(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure2: function _TaskEditDesktopState_build__closure2(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure10: function _TaskEditDesktopState_build_closure10(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure1: function _TaskEditDesktopState_build__closure1(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure11: function _TaskEditDesktopState_build_closure11(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure0: function _TaskEditDesktopState_build__closure0(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure12: function _TaskEditDesktopState_build_closure12(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.index = t2; }, _TaskEditDesktopState_build__closure: function _TaskEditDesktopState_build__closure(t0) { this.$this = t0; }, TaskEditDetails: function TaskEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditDetailsState: function _TaskEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._task_edit_details$_numberController = t0; _._task_edit_details$_rateController = t1; _._descriptionController = t2; _._task_edit_details$_custom1Controller = t3; _._task_edit_details$_custom2Controller = t4; _._task_edit_details$_custom3Controller = t5; _._task_edit_details$_custom4Controller = t6; _._task_edit_details$_debouncer = t7; _._task_edit_details$_controllers = t8; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, _TaskEditDetailsState_didChangeDependencies_closure: function _TaskEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskEditDetailsState_didChangeDependencies_closure0: function _TaskEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskEditDetailsState_dispose_closure: function _TaskEditDetailsState_dispose_closure(t0) { this.$this = t0; }, _TaskEditDetailsState__onChanged_closure: function _TaskEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, _TaskEditDetailsState__onChanged_closure0: function _TaskEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.task = t1; }, _TaskEditDetailsState_build_closure0: function _TaskEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDetailsState_build__closure2: function _TaskEditDetailsState_build__closure2(t0) { this.client = t0; }, _TaskEditDetailsState_build_closure: function _TaskEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDetailsState_build_closure1: function _TaskEditDetailsState_build_closure1(t0, t1, t2) { this.store = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDetailsState_build__closure1: function _TaskEditDetailsState_build__closure1(t0, t1) { this.project = t0; this.task = t1; }, _TaskEditDetailsState_build_closure2: function _TaskEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDetailsState_build_closure3: function _TaskEditDetailsState_build_closure3(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDetailsState_build__closure0: function _TaskEditDetailsState_build__closure0(t0) { this.userId = t0; }, _TaskEditDetailsState_build_closure4: function _TaskEditDetailsState_build_closure4(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDetailsState_build__closure: function _TaskEditDetailsState_build__closure(t0) { this.taskStatus = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore(store) { var t4, t5, task = A._lateReadCheck(store.__Store__state, "_state").uiState.taskUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].taskState.map; t5 = task.id; t4._map$_map.$index(0, t5); t2.taskUIState.toString; return new A.TaskEditDetailsVM(task, t1[t3].userCompany.company, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure(store), state, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0(store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1(task, store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2(task, store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3(store)); }, TaskEditDetailsScreen: function TaskEditDetailsScreen(t0) { this.key = t0; }, TaskEditDetailsScreen_build_closure0: function TaskEditDetailsScreen_build_closure0() { }, TaskEditDetailsScreen_build_closure: function TaskEditDetailsScreen_build_closure() { }, TaskEditDetailsVM: function TaskEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.task = t0; _.company = t1; _.onChanged = t2; _.state = t3; _.onAddClientPressed = t4; _.onAddProjectPressed = t5; _.onUpdatedTaskTime = t6; _.onRemoveTaskTime = t7; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2(t0, t1) { this.task = t0; this.store = t1; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1(t0, t1) { this.task = t0; this.store = t1; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure(t0) { this.task = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1(t0) { this.store = t0; }, TaskEditTimes: function TaskEditTimes(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditTimesState: function _TaskEditTimesState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaskEditTimesState__showTaskTimeEditor_closure: function _TaskEditTimesState__showTaskTimeEditor_closure(t0, t1) { this.$this = t0; this.taskTime = t1; }, _TaskEditTimesState__showTaskTimeEditor__closure: function _TaskEditTimesState__showTaskTimeEditor__closure(t0) { this.taskTime = t0; }, _TaskEditTimesState_build_closure: function _TaskEditTimesState_build_closure(t0, t1, t2) { this.$this = t0; this.taskTime = t1; this.context = t2; }, _TaskEditTimesState_build_closure0: function _TaskEditTimesState_build_closure0(t0, t1) { this.$this = t0; this.taskTime = t1; }, TimeEditDetails: function TimeEditDetails(t0, t1, t2, t3) { var _ = this; _.index = t0; _.taskTime = t1; _.viewModel = t2; _.key = t3; }, TimeEditDetailsState: function TimeEditDetailsState(t0, t1) { var _ = this; _._taskTime = t0; _._durationUpdateAt = _._endTimeUpdatedAt = _._endDateUpdatedAt = _._startTimeUpdatedAt = _._startDateUpdatedAt = 0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, TimeEditDetailsState_build_closure: function TimeEditDetailsState_build_closure(t0, t1, t2) { this.$this = t0; this.showEndDate = t1; this.viewModel = t2; }, TimeEditDetailsState_build__closure3: function TimeEditDetailsState_build__closure3(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.date = t1; _.showEndDate = t2; _.viewModel = t3; }, TimeEditDetailsState_build_closure0: function TimeEditDetailsState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure2: function TimeEditDetailsState_build__closure2(t0, t1, t2) { this.$this = t0; this.timeOfDay = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure1: function TimeEditDetailsState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure1: function TimeEditDetailsState_build__closure1(t0, t1, t2) { this.$this = t0; this.timeOfDay = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure2: function TimeEditDetailsState_build_closure2(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure0: function TimeEditDetailsState_build__closure0(t0, t1, t2) { this.$this = t0; this.date = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure3: function TimeEditDetailsState_build_closure3(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure: function TimeEditDetailsState_build__closure(t0, t1, t2) { this.$this = t0; this.duration = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure4: function TimeEditDetailsState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, TimeEditDetailsState_build_closure5: function TimeEditDetailsState_build_closure5(t0, t1) { this.$this = t0; this.context = t1; }, TaskEditTimesVM_TaskEditTimesVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.taskUIState, task = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.TaskEditTimesVM(t3._list[t1].userCompany.company, task, t2.editingTimeIndex, new A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure(store), new A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0(store), new A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1(store), new A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2(store)); }, TaskEditTimesScreen: function TaskEditTimesScreen(t0) { this.key = t0; }, TaskEditTimesScreen_build_closure0: function TaskEditTimesScreen_build_closure0() { }, TaskEditTimesScreen_build_closure: function TaskEditTimesScreen_build_closure() { }, TaskEditTimesVM: function TaskEditTimesVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.task = t1; _.taskTimeIndex = t2; _.onRemoveTaskTimePressed = t3; _.onDoneTaskTimePressed = t4; _.onUpdatedTaskTime = t5; _.clearSelectedTaskTime = t6; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2(t0) { this.store = t0; }, TaskEditVM_TaskEditVM$fromStore(store) { var t4, t5, task = A._lateReadCheck(store.__Store__state, "_state").uiState.taskUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].taskState.map; t5 = task.id; t4._map$_map.$index(0, t5); return new A.TaskEditVM(task, t2.taskUIState.editingTimeIndex, t1[t3].userCompany.company, new A.TaskEditVM_TaskEditVM$fromStore_closure(store, state), new A.TaskEditVM_TaskEditVM$fromStore_closure0(store, state), new A.TaskEditVM_TaskEditVM$fromStore_closure1(task, store), state); }, TaskEditScreen: function TaskEditScreen(t0) { this.key = t0; }, TaskEditScreen_build_closure0: function TaskEditScreen_build_closure0() { }, TaskEditScreen_build_closure: function TaskEditScreen_build_closure() { }, TaskEditVM: function TaskEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.task = t0; _.taskTimeIndex = t1; _.company = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.onFabPressed = t5; _.state = t6; }, TaskEditVM_TaskEditVM$fromStore_closure0: function TaskEditVM_TaskEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskEditVM_TaskEditVM$fromStore_closure1: function TaskEditVM_TaskEditVM$fromStore_closure1(t0, t1) { this.task = t0; this.store = t1; }, TaskEditVM_TaskEditVM$fromStore__closure: function TaskEditVM_TaskEditVM$fromStore__closure() { }, TaskEditVM_TaskEditVM$fromStore_closure: function TaskEditVM_TaskEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, TaskEditVM_TaskEditVM$fromStore__closure0: function TaskEditVM_TaskEditVM$fromStore__closure0(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, TaskEditVM_TaskEditVM$fromStore___closure: function TaskEditVM_TaskEditVM$fromStore___closure(t0) { this.localization = t0; }, TaskEditVM_TaskEditVM$fromStore___closure0: function TaskEditVM_TaskEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.task = t0; _.localization = t1; _.origTask = t2; _.store = t3; _.state = t4; _.navigator = t5; _.action = t6; }, TaskEditVM_TaskEditVM$fromStore___closure1: function TaskEditVM_TaskEditVM$fromStore___closure1() { }, TaskEditVM_TaskEditVM$fromStore____closure: function TaskEditVM_TaskEditVM$fromStore____closure(t0) { this.error = t0; }, KanbanTaskCard$(isCorrectOrder, isDragging, isSaving, isSelected, onCancelPressed, onSavePressed, task) { return new A.KanbanTaskCard(task, onSavePressed, onCancelPressed, isCorrectOrder, isSaving, isSelected, null); }, KanbanTaskCard: function KanbanTaskCard(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.task = t0; _.onSavePressed = t1; _.onCancelPressed = t2; _.isCorrectOrder = t3; _.isSaving = t4; _.isSelected = t5; _.key = t6; }, _KanbanTaskCardState: function _KanbanTaskCardState(t0) { var _ = this; _._kanban_card$_isHovered = _._isEditing = false; _._kanban_card$_description = ""; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _KanbanTaskCardState_build_closure: function _KanbanTaskCardState_build_closure(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure1: function _KanbanTaskCardState_build_closure1(t0, t1) { this.$this = t0; this.task = t1; }, _KanbanTaskCardState_build__closure3: function _KanbanTaskCardState_build__closure3(t0, t1) { this.$this = t0; this.task = t1; }, _KanbanTaskCardState_build_closure0: function _KanbanTaskCardState_build_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _KanbanTaskCardState_build__closure4: function _KanbanTaskCardState_build__closure4(t0) { this.$this = t0; }, _KanbanTaskCardState_build___closure: function _KanbanTaskCardState_build___closure(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure10: function _KanbanTaskCardState_build_closure10(t0, t1) { this.$this = t0; this.state = t1; }, _KanbanTaskCardState_build__closure: function _KanbanTaskCardState_build__closure(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure9: function _KanbanTaskCardState_build_closure9(t0) { this.$this = t0; }, _KanbanTaskCardState_build__closure0: function _KanbanTaskCardState_build__closure0(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure2: function _KanbanTaskCardState_build_closure2(t0, t1) { this.state = t0; this.task = t1; }, _KanbanTaskCardState_build_closure3: function _KanbanTaskCardState_build_closure3(t0) { this.task = t0; }, _KanbanTaskCardState_build_closure4: function _KanbanTaskCardState_build_closure4(t0) { this.task = t0; }, _KanbanTaskCardState_build_closure5: function _KanbanTaskCardState_build_closure5(t0, t1, t2) { this.task = t0; this.client = t1; this.project = t2; }, _KanbanTaskCardState_build_closure6: function _KanbanTaskCardState_build_closure6(t0, t1) { this.localization = t0; this.startLabel = t1; }, _KanbanTaskCardState_build__closure2: function _KanbanTaskCardState_build__closure2(t0) { this.localization = t0; }, _KanbanTaskCardState_build_closure7: function _KanbanTaskCardState_build_closure7(t0, t1, t2) { this.startLabel = t0; this.task = t1; this.localization = t2; }, _KanbanTaskCardState_build_closure8: function _KanbanTaskCardState_build_closure8(t0) { this.$this = t0; }, _KanbanTaskCardState_build__closure1: function _KanbanTaskCardState_build__closure1(t0) { this.$this = t0; }, KanbanStatusCard: function KanbanStatusCard(t0, t1, t2, t3, t4) { var _ = this; _.status = t0; _.onSavePressed = t1; _.isCorrectOrder = t2; _.isSaving = t3; _.key = t4; }, _KanbanStatusCardState: function _KanbanStatusCardState(t0) { var _ = this; _._kanban_status$_isEditing = false; _._kanban_status$_name = ""; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _KanbanStatusCardState__onSavePressed_closure: function _KanbanStatusCardState__onSavePressed_closure(t0) { this.$this = t0; }, _KanbanStatusCardState__onSavePressed__closure: function _KanbanStatusCardState__onSavePressed__closure(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure: function _KanbanStatusCardState_build_closure(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure0: function _KanbanStatusCardState_build_closure0(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure1: function _KanbanStatusCardState_build_closure1(t0) { this.$this = t0; }, _KanbanStatusCardState_build__closure0: function _KanbanStatusCardState_build__closure0(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure2: function _KanbanStatusCardState_build_closure2(t0) { this.$this = t0; }, _KanbanStatusCardState_build__closure: function _KanbanStatusCardState_build__closure(t0) { this.$this = t0; }, KanbanView: function KanbanView(t0, t1) { this.viewModel = t0; this.key = t1; }, KanbanViewState: function KanbanViewState(t0, t1) { var _ = this; _._boardViewController = t0; _._kanban_view$_tasks = _._newTask = _._statuses = null; _.isDragging = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, KanbanViewState__initBoard_closure: function KanbanViewState__initBoard_closure(t0, t1) { this.$this = t0; this.state = t1; }, KanbanViewState__initBoard_closure0: function KanbanViewState__initBoard_closure0(t0, t1) { this.$this = t0; this.state = t1; }, KanbanViewState__initBoard__closure: function KanbanViewState__initBoard__closure(t0) { this.state = t0; }, KanbanViewState__onBoardChanged_closure: function KanbanViewState__onBoardChanged_closure(t0) { this.$this = t0; }, KanbanViewState_build_closure: function KanbanViewState_build_closure(t0) { this.$this = t0; }, KanbanViewState_build_closure0: function KanbanViewState_build_closure0(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.state = t1; _.filteredStatusIds = t2; _.color = t3; _.context = t4; }, KanbanViewState_build__closure5: function KanbanViewState_build__closure5(t0) { this.$this = t0; }, KanbanViewState_build___closure: function KanbanViewState_build___closure(t0, t1, t2) { this.$this = t0; this.startIndex = t1; this.endIndex = t2; }, KanbanViewState_build__closure: function KanbanViewState_build__closure(t0, t1) { this.$this = t0; this.statusId = t1; }, KanbanViewState_build__closure1: function KanbanViewState_build__closure1(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build__closure0: function KanbanViewState_build__closure0(t0) { this.$this = t0; }, KanbanViewState_build___closure5: function KanbanViewState_build___closure5(t0) { this.$this = t0; }, KanbanViewState_build__closure2: function KanbanViewState_build__closure2(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build___closure4: function KanbanViewState_build___closure4(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build____closure3: function KanbanViewState_build____closure3(t0) { this.status = t0; }, KanbanViewState_build__closure3: function KanbanViewState_build__closure3(t0) { this.$this = t0; }, KanbanViewState_build__closure4: function KanbanViewState_build__closure4(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.status = t2; _.statusId = t3; }, KanbanViewState_build___closure1: function KanbanViewState_build___closure1(t0, t1, t2) { this.$this = t0; this.status = t1; this.task = t2; }, KanbanViewState_build___closure0: function KanbanViewState_build___closure0(t0, t1) { this.$this = t0; this.task = t1; }, KanbanViewState_build____closure2: function KanbanViewState_build____closure2(t0) { this.$this = t0; }, KanbanViewState_build___closure3: function KanbanViewState_build___closure3(t0) { this.$this = t0; }, KanbanViewState_build____closure: function KanbanViewState_build____closure(t0) { this.$this = t0; }, KanbanViewState_build___closure2: function KanbanViewState_build___closure2(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build____closure0: function KanbanViewState_build____closure0(t0) { this.$this = t0; }, KanbanViewState_build____closure1: function KanbanViewState_build____closure1(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.oldStatusId = t1; _.taskId = t2; _.newStatusId = t3; _.itemIndex = t4; }, KanbanVM_fromStore(store) { var t6, t7, t8, t9, t10, t11, t12, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = $.$get$memoizedKanbanTaskList(), t2 = state.getUISelection$1(B.EntityType_task), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; t7 = t6.taskState; t8 = t7.map; t9 = t6.clientState.map; t10 = t6.userState.map; t11 = t6.projectState.map; t12 = t6.invoiceState.map; t6 = t6.taskStatusState.map; t7 = t7.list; t4 = t4.taskUIState.listUIState; t7 = t1.call$9(t2, t8, t9, t10, t11, t12, t6, t7, t4); t6 = $.$get$memoizedFilteredTaskList(); t12 = state.getUISelection$1(B.EntityType_task); t5 = t3[t5]; t3 = t5.taskState; return new A.KanbanVM(state, t7, t6.call$9(t12, t3.map, t5.clientState.map, t5.userState.map, t5.projectState.map, t5.invoiceState.map, t5.taskStatusState.map, t3.list, t4), new A.KanbanVM_fromStore_closure(store), new A.KanbanVM_fromStore_closure0(state, store), new A.KanbanVM_fromStore_closure1(state, store)); }, KanbanViewBuilder: function KanbanViewBuilder(t0) { this.key = t0; }, _KanbanViewBuilderState: function _KanbanViewBuilderState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _KanbanViewBuilderState_build_closure: function _KanbanViewBuilderState_build_closure() { }, KanbanVM: function KanbanVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.taskList = t1; _.filteredTaskList = t2; _.onBoardChanged = t3; _.onSaveTaskPressed = t4; _.onSaveStatusPressed = t5; }, KanbanVM_fromStore_closure: function KanbanVM_fromStore_closure(t0) { this.store = t0; }, KanbanVM_fromStore_closure1: function KanbanVM_fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, KanbanVM_fromStore__closure: function KanbanVM_fromStore__closure(t0, t1, t2) { this._box_0 = t0; this.name = t1; this.statusOrder = t2; }, KanbanVM_fromStore_closure0: function KanbanVM_fromStore_closure0(t0, t1) { this.state = t0; this.store = t1; }, KanbanVM_fromStore__closure0: function KanbanVM_fromStore__closure0(t0, t1, t2, t3) { var _ = this; _._box_1 = t0; _.description = t1; _.statusOrder = t2; _.statusId = t3; }, KanbanVM_fromStore__closure1: function KanbanVM_fromStore__closure1(t0) { this.uiState = t0; }, KanbanVM_fromStore__closure2: function KanbanVM_fromStore__closure2(t0, t1) { this.uiState = t0; this.project = t1; }, KanbanVM_fromStore__closure3: function KanbanVM_fromStore__closure3(t0) { this.uiState = t0; }, TaskListItem$(filter, isChecked, isDismissible, onCheckboxChanged, onTap, showCheckbox, task) { return new A.TaskListItem(onCheckboxChanged, onTap, task, filter, showCheckbox, isDismissible, isChecked, null); }, TaskListItem: function TaskListItem(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onCheckboxChanged = t0; _.onTap = t1; _.task = t2; _.filter = t3; _.showCheckbox = t4; _.isDismissible = t5; _.isChecked = t6; _.key = t7; }, TaskListItem_build_closure1: function TaskListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build_closure: function TaskListItem_build_closure(t0) { this.$this = t0; }, TaskListItem_build_closure0: function TaskListItem_build_closure0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; _.duration = t9; _.startStopButton = t10; _.localization = t11; }, TaskListItem_build__closure2: function TaskListItem_build__closure2(t0) { this.$this = t0; }, TaskListItem_build__closure1: function TaskListItem_build__closure1(t0) { this.$this = t0; }, TaskListItem_build__closure: function TaskListItem_build__closure(t0) { this.$this = t0; }, TaskListItem_build__closure0: function TaskListItem_build__closure0(t0) { this.$this = t0; }, TaskListItem_build__closure5: function TaskListItem_build__closure5(t0) { this.$this = t0; }, TaskListItem_build__closure4: function TaskListItem_build__closure4(t0) { this.$this = t0; }, TaskListItem_build__closure3: function TaskListItem_build__closure3(t0) { this.$this = t0; }, TaskListVM_fromStore(store) { var t4, t5, t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userCompany.user; t2 = t2.taskUIState; t2.toString; t5 = $.$get$memoizedFilteredTaskList(); t6 = state.getUISelection$1(B.EntityType_task); t7 = t1[t3]; t8 = t7.taskState; t2 = t2.listUIState; t8 = t5.call$9(t6, t8.map, t7.clientState.map, t7.userState.map, t7.projectState.map, t7.invoiceState.map, t7.taskStatusState.map, t8.list, t2); t7 = t1[t3]; t6 = t7.taskState.map; t7.clientState.toString; t2 = t2.filter; t7 = t7.userCompany.settings; t5 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_task); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType(["status", "number", "client", "project", "description", "duration", "entity_state"], type$.JSArray_legacy_String); } else t1 = t5; return new A.TaskListVM(state, t4, t8, t6, t2, new A.TaskListVM_fromStore_closure(new A.TaskListVM_fromStore__handleRefresh(store)), t1, new A.TaskListVM_fromStore_closure0(store), new A.TaskListVM_fromStore_closure1(store)); }, TaskListBuilder: function TaskListBuilder(t0) { this.key = t0; }, TaskListBuilder_build_closure: function TaskListBuilder_build_closure() { }, TaskListBuilder_build__closure: function TaskListBuilder_build__closure(t0) { this.viewModel = t0; }, TaskListVM: function TaskListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.user = t1; _.taskList = t2; _.taskMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultielsect = t8; }, TaskListVM_fromStore__handleRefresh: function TaskListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaskListVM_fromStore_closure0: function TaskListVM_fromStore_closure0(t0) { this.store = t0; }, TaskListVM_fromStore_closure: function TaskListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaskListVM_fromStore_closure1: function TaskListVM_fromStore_closure1(t0) { this.store = t0; }, TaskPresenter: function TaskPresenter() { this.context = this.entity = null; }, TaskPresenter_getField_closure: function TaskPresenter_getField_closure() { }, TaskPresenter_getField_closure0: function TaskPresenter_getField_closure0(t0, t1) { this.context = t0; this.notes = t1; }, TaskScreen: function TaskScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskScreen_build_closure: function TaskScreen_build_closure(t0) { this.localization = t0; }, TaskScreen_build_closure0: function TaskScreen_build_closure0(t0) { this.localization = t0; }, TaskScreen_build_closure1: function TaskScreen_build_closure1(t0) { this.localization = t0; }, TaskScreen_build_closure17: function TaskScreen_build_closure17(t0) { this.store = t0; }, TaskScreen_build_closure13: function TaskScreen_build_closure13(t0) { this.store = t0; }, TaskScreen_build_closure15: function TaskScreen_build_closure15(t0) { this.store = t0; }, TaskScreen_build_closure14: function TaskScreen_build_closure14(t0) { this.store = t0; }, TaskScreen_build_closure16: function TaskScreen_build_closure16(t0) { this.store = t0; }, TaskScreen_build_closure2: function TaskScreen_build_closure2(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, TaskScreen_build_closure3: function TaskScreen_build_closure3(t0, t1) { this.store = t0; this.state = t1; }, TaskScreen_build_closure9: function TaskScreen_build_closure9(t0) { this.store = t0; }, TaskScreen_build_closure11: function TaskScreen_build_closure11(t0) { this.store = t0; }, TaskScreen_build_closure5: function TaskScreen_build_closure5(t0) { this.store = t0; }, TaskScreen_build_closure6: function TaskScreen_build_closure6(t0) { this.store = t0; }, TaskScreen_build_closure7: function TaskScreen_build_closure7(t0) { this.store = t0; }, TaskScreen_build_closure8: function TaskScreen_build_closure8(t0) { this.store = t0; }, TaskScreen_build_closure10: function TaskScreen_build_closure10(t0) { this.store = t0; }, TaskScreen_build_closure4: function TaskScreen_build_closure4(t0) { this.store = t0; }, TaskScreen_build_closure12: function TaskScreen_build_closure12(t0) { this.context = t0; }, TaskScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].taskState.toString; t4 = $.$get$memoizedFilteredTaskList(); t5 = state.getUISelection$1(B.EntityType_task); t6 = t1[t3]; t7 = t6.taskState; t8 = t7.map; t9 = t6.clientState.map; t10 = t6.userState.map; t11 = t6.projectState.map; t12 = t6.invoiceState.map; t6 = t6.taskStatusState.map; t7 = t7.list; t2 = t2.taskUIState.listUIState; t7 = t4.call$9(t5, t8, t9, t10, t11, t12, t6, t7, t2); t1[t3].toString; t2.toString; return new A.TaskScreenVM(t7); }, TaskScreenBuilder: function TaskScreenBuilder(t0) { this.key = t0; }, TaskScreenBuilder_build_closure: function TaskScreenBuilder_build_closure() { }, TaskScreenVM: function TaskScreenVM(t0) { this.taskList = t0; }, TaskTimeListTile: function TaskTimeListTile(t0, t1, t2, t3, t4) { var _ = this; _.onTap = t0; _.task = t1; _.taskTime = t2; _.isValid = t3; _.key = t4; }, TaskTimeListTile_build_closure0: function TaskTimeListTile_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, TaskTimeListTile_build_closure: function TaskTimeListTile_build_closure(t0) { this.$this = t0; }, TaskView: function TaskView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _TaskViewState: function _TaskViewState(t0, t1, t2) { var _ = this; _._task_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _TaskViewState_build_closure: function _TaskViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.task = t2; }, _TaskViewState_build__closure: function _TaskViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskViewState_build__closure0: function _TaskViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, __TaskViewState_State_SingleTickerProviderStateMixin: function __TaskViewState_State_SingleTickerProviderStateMixin() { }, TaskViewDocuments: function TaskViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskViewDocuments_build_closure: function TaskViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, TaskViewDocuments_build_closure0: function TaskViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, TaskOverview: function TaskOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaskOverviewState: function _TaskOverviewState(t0) { var _ = this; _._widget = _._task_view_overview$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TaskOverviewState_initState_closure: function _TaskOverviewState_initState_closure(t0) { this.$this = t0; }, _TaskOverviewState_initState__closure: function _TaskOverviewState_initState__closure() { }, _TaskOverviewState_build__buildView: function _TaskOverviewState_build__buildView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.$this = t0; _.task = t1; _.state = t2; _.localization = t3; _.company = t4; _.project = t5; _.client = t6; _.group = t7; _.context = t8; _.status = t9; _.user = t10; _.invoice = t11; _.fields = t12; _.viewModel = t13; }, _TaskOverviewState_build__buildView_closure: function _TaskOverviewState_build__buildView_closure(t0, t1, t2) { this.widgets = t0; this.task = t1; this.viewModel = t2; }, _TaskOverviewState_build__buildView__closure: function _TaskOverviewState_build__buildView__closure(t0, t1, t2) { this.viewModel = t0; this.task = t1; this.taskTime = t2; }, _TaskOverviewState_build_closure: function _TaskOverviewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, TaskViewVM_TaskViewVM$fromStore(store) { var task, t4, client, project, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; task = t1[t3].taskState.$get$1(0, t2.taskUIState.selectedId); t2 = t1[t3].clientState.map; t4 = task.clientId; client = t2._map$_map.$index(0, t4); t4 = t1[t3].projectState.map; t2 = task.projectId; project = t4._map$_map.$index(0, t2); t3 = t1[t3].userCompany.company; task.get$isNew(); return new A.TaskViewVM(state, task, client, project, t3, new A.TaskViewVM_TaskViewVM$fromStore_closure(task), new A.TaskViewVM_TaskViewVM$fromStore_closure0(new A.TaskViewVM_TaskViewVM$fromStore__toggleTask(store, task)), new A.TaskViewVM_TaskViewVM$fromStore_closure1(new A.TaskViewVM_TaskViewVM$fromStore__handleRefresh(store, task)), new A.TaskViewVM_TaskViewVM$fromStore_closure2(store, task), new A.TaskViewVM_TaskViewVM$fromStore_closure3(store, task)); }, TaskViewScreen: function TaskViewScreen(t0) { this.key = t0; }, TaskViewScreen_build_closure0: function TaskViewScreen_build_closure0() { }, TaskViewScreen_build_closure: function TaskViewScreen_build_closure(t0) { this.$this = t0; }, TaskViewVM: function TaskViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.task = t1; _.client = t2; _.project = t3; _.company = t4; _.onEditPressed = t5; _.onFabPressed = t6; _.onRefreshed = t7; _.onUploadDocument = t8; _.onDeleteDocument = t9; }, TaskViewVM_TaskViewVM$fromStore__handleRefresh: function TaskViewVM_TaskViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__toggleTask: function TaskViewVM_TaskViewVM$fromStore__toggleTask(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__toggleTask_closure: function TaskViewVM_TaskViewVM$fromStore__toggleTask_closure(t0) { this.localization = t0; }, TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0: function TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore__toggleTask__closure: function TaskViewVM_TaskViewVM$fromStore__toggleTask__closure(t0) { this.error = t0; }, TaskViewVM_TaskViewVM$fromStore_closure0: function TaskViewVM_TaskViewVM$fromStore_closure0(t0) { this._toggleTask = t0; }, TaskViewVM_TaskViewVM$fromStore_closure: function TaskViewVM_TaskViewVM$fromStore_closure(t0) { this.task = t0; }, TaskViewVM_TaskViewVM$fromStore_closure1: function TaskViewVM_TaskViewVM$fromStore_closure1(t0) { this._handleRefresh = t0; }, TaskViewVM_TaskViewVM$fromStore_closure2: function TaskViewVM_TaskViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__closure0: function TaskViewVM_TaskViewVM$fromStore__closure0(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore__closure1: function TaskViewVM_TaskViewVM$fromStore__closure1(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore___closure: function TaskViewVM_TaskViewVM$fromStore___closure(t0) { this.error = t0; }, TaskViewVM_TaskViewVM$fromStore_closure3: function TaskViewVM_TaskViewVM$fromStore_closure3(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__closure: function TaskViewVM_TaskViewVM$fromStore__closure(t0, t1) { this.store = t0; this.task = t1; }, TaskStatusEdit: function TaskStatusEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskStatusEditState: function _TaskStatusEditState(t0, t1, t2, t3) { var _ = this; _._task_status_edit$_debouncer = t0; _._task_status_edit$_autoValidate = false; _._task_status_edit$_nameController = t1; _._task_status_edit$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _TaskStatusEditState_didChangeDependencies_closure: function _TaskStatusEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskStatusEditState_didChangeDependencies_closure0: function _TaskStatusEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskStatusEditState_dispose_closure: function _TaskStatusEditState_dispose_closure(t0) { this.$this = t0; }, _TaskStatusEditState__onChanged_closure: function _TaskStatusEditState__onChanged_closure(t0) { this.$this = t0; }, _TaskStatusEditState__onChanged_closure0: function _TaskStatusEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.taskStatus = t1; }, _TaskStatusEditState_build_closure0: function _TaskStatusEditState_build_closure0(t0) { this.viewModel = t0; }, _TaskStatusEditState_build_closure1: function _TaskStatusEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TaskStatusEditState_build__closure: function _TaskStatusEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _TaskStatusEditState_build_closure: function _TaskStatusEditState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.viewModel = t2; _.taskStatus = t3; }, _TaskStatusEditState_build__closure0: function _TaskStatusEditState_build__closure0(t0) { this.localization = t0; }, _TaskStatusEditState_build__closure1: function _TaskStatusEditState_build__closure1(t0, t1) { this.viewModel = t0; this.taskStatus = t1; }, _TaskStatusEditState_build___closure: function _TaskStatusEditState_build___closure(t0) { this.value = t0; }, TaskStatusEditVM_TaskStatusEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, taskStatus = t1.taskStatusUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].taskStatusState.map; t4 = taskStatus.id; t3._map$_map.$index(0, t4); return new A.TaskStatusEditVM(taskStatus, t2[t1].userCompany.company, new A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure(store), new A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0(store, state), new A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1(store, state), state); }, TaskStatusEditScreen: function TaskStatusEditScreen(t0) { this.key = t0; }, TaskStatusEditScreen_build_closure0: function TaskStatusEditScreen_build_closure0() { }, TaskStatusEditScreen_build_closure: function TaskStatusEditScreen_build_closure() { }, TaskStatusEditVM: function TaskStatusEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.taskStatus = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure(t0) { this.store = t0; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore__closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore___closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.taskStatus = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0: function TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0() { }, TaskStatusEditVM_TaskStatusEditVM$fromStore____closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore____closure(t0) { this.error = t0; }, TaskStatusListItem: function TaskStatusListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.taskStatus = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TaskStatusListItem_build_closure1: function TaskStatusListItem_build_closure1(t0) { this.$this = t0; }, TaskStatusListItem_build_closure0: function TaskStatusListItem_build_closure0(t0) { this.$this = t0; }, TaskStatusListItem_build_closure: function TaskStatusListItem_build_closure(t0) { this.$this = t0; }, TaskStatusListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.taskStatusUIState; t2.toString; t4 = $.$get$memoizedFilteredTaskStatusList(); t5 = state.getUISelection$1(B.EntityType_taskStatus); t6 = t1[t3].taskStatusState; t2 = t2.listUIState; t6 = t4.call$4(t5, t6.map, t6.list, t2); t5 = t1[t3]; t4 = t5.taskStatusState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_taskStatus); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType([], type$.JSArray_legacy_String); } else t1 = t5; return new A.TaskStatusListVM(state, t6, t4, t2, new A.TaskStatusListVM_fromStore_closure(new A.TaskStatusListVM_fromStore__handleRefresh(store)), t1, new A.TaskStatusListVM_fromStore_closure0(store), new A.TaskStatusListVM_fromStore_closure1(store)); }, TaskStatusListBuilder: function TaskStatusListBuilder(t0) { this.key = t0; }, TaskStatusListBuilder_build_closure: function TaskStatusListBuilder_build_closure() { }, TaskStatusListBuilder_build__closure: function TaskStatusListBuilder_build__closure(t0) { this.viewModel = t0; }, TaskStatusListVM: function TaskStatusListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.taskStatusList = t1; _.taskStatusMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TaskStatusListVM_fromStore__handleRefresh: function TaskStatusListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaskStatusListVM_fromStore_closure: function TaskStatusListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaskStatusListVM_fromStore_closure0: function TaskStatusListVM_fromStore_closure0(t0) { this.store = t0; }, TaskStatusListVM_fromStore_closure1: function TaskStatusListVM_fromStore_closure1(t0) { this.store = t0; }, TaskStatusPresenter: function TaskStatusPresenter() { this.context = this.entity = null; }, TaskStatusScreen: function TaskStatusScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskStatusScreen_build_closure10: function TaskStatusScreen_build_closure10(t0) { this.store = t0; }, TaskStatusScreen_build_closure7: function TaskStatusScreen_build_closure7(t0) { this.store = t0; }, TaskStatusScreen_build_closure8: function TaskStatusScreen_build_closure8(t0) { this.store = t0; }, TaskStatusScreen_build_closure9: function TaskStatusScreen_build_closure9(t0) { this.store = t0; }, TaskStatusScreen_build_closure4: function TaskStatusScreen_build_closure4(t0) { this.store = t0; }, TaskStatusScreen_build_closure5: function TaskStatusScreen_build_closure5(t0) { this.store = t0; }, TaskStatusScreen_build_closure: function TaskStatusScreen_build_closure(t0) { this.store = t0; }, TaskStatusScreen_build_closure0: function TaskStatusScreen_build_closure0(t0) { this.store = t0; }, TaskStatusScreen_build_closure1: function TaskStatusScreen_build_closure1(t0) { this.store = t0; }, TaskStatusScreen_build_closure2: function TaskStatusScreen_build_closure2(t0) { this.store = t0; }, TaskStatusScreen_build_closure3: function TaskStatusScreen_build_closure3(t0) { this.store = t0; }, TaskStatusScreen_build_closure6: function TaskStatusScreen_build_closure6(t0) { this.context = t0; }, TaskStatusScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].taskStatusState.toString; t4 = $.$get$memoizedFilteredTaskStatusList(); t5 = state.getUISelection$1(B.EntityType_taskStatus); t6 = t1[t3].taskStatusState; t7 = t6.map; t6 = t6.list; t2 = t2.taskStatusUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.TaskStatusScreenVM(t6); }, TaskStatusScreenBuilder: function TaskStatusScreenBuilder(t0) { this.key = t0; }, TaskStatusScreenBuilder_build_closure: function TaskStatusScreenBuilder_build_closure() { }, TaskStatusScreenVM: function TaskStatusScreenVM(t0) { this.taskStatusList = t0; }, TaskStatusView: function TaskStatusView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaskStatusViewState: function _TaskStatusViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaskStatusViewState_build_closure: function _TaskStatusViewState_build_closure(t0) { this.viewModel = t0; }, TaskStatusViewVM_TaskStatusViewVM$fromStore(store) { var t4, taskStatus, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].taskStatusState.map; t2 = t2.taskStatusUIState.selectedId; taskStatus = t4._map$_map.$index(0, t2); if (taskStatus == null) taskStatus = A.TaskStatusEntity_TaskStatusEntity(t2, null); t1 = t1[t3].userCompany.company; taskStatus.get$isNew(); return new A.TaskStatusViewVM(state, taskStatus, t1, new A.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure(store)); }, TaskStatusViewScreen: function TaskStatusViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, TaskStatusViewScreen_build_closure0: function TaskStatusViewScreen_build_closure0() { }, TaskStatusViewScreen_build_closure: function TaskStatusViewScreen_build_closure(t0) { this.$this = t0; }, TaskStatusViewVM: function TaskStatusViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.taskStatus = t1; _.company = t2; _.onBackPressed = t3; }, TaskStatusViewVM_TaskStatusViewVM$fromStore_closure: function TaskStatusViewVM_TaskStatusViewVM$fromStore_closure(t0) { this.store = t0; }, TaxRateEdit: function TaxRateEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaxRateEditState: function _TaxRateEditState(t0, t1, t2, t3, t4) { var _ = this; _._tax_rate_edit$_nameController = t0; _._rateController = t1; _._tax_rate_edit$_controllers = t2; _._tax_rate_edit$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _TaxRateEditState_didChangeDependencies_closure: function _TaxRateEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaxRateEditState_didChangeDependencies_closure0: function _TaxRateEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaxRateEditState_dispose_closure: function _TaxRateEditState_dispose_closure(t0) { this.$this = t0; }, _TaxRateEditState__onChanged_closure: function _TaxRateEditState__onChanged_closure(t0) { this.$this = t0; }, _TaxRateEditState__onChanged_closure0: function _TaxRateEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.taxRate = t1; }, _TaxRateEditState_build_closure: function _TaxRateEditState_build_closure(t0) { this.localization = t0; }, TaxRateEditVM_TaxRateEditVM$fromStore(store) { var t3, t4, taxRate = A._lateReadCheck(store.__Store__state, "_state").uiState.taxRateUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].taxRateState.map; t4 = taxRate.id; t3._map$_map.$index(0, t4); return new A.TaxRateEditVM(taxRate, t1[t2].userCompany.company, new A.TaxRateEditVM_TaxRateEditVM$fromStore_closure(store), new A.TaxRateEditVM_TaxRateEditVM$fromStore_closure0(store, state), new A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1(store, state), state); }, TaxRateEditScreen: function TaxRateEditScreen(t0) { this.key = t0; }, TaxRateEditScreen_build_closure0: function TaxRateEditScreen_build_closure0() { }, TaxRateEditScreen_build_closure: function TaxRateEditScreen_build_closure() { }, TaxRateEditVM: function TaxRateEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.taxRate = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure: function TaxRateEditVM_TaxRateEditVM$fromStore_closure(t0) { this.store = t0; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure1: function TaxRateEditVM_TaxRateEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure0: function TaxRateEditVM_TaxRateEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore__closure: function TaxRateEditVM_TaxRateEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore___closure: function TaxRateEditVM_TaxRateEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.taxRate = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TaxRateEditVM_TaxRateEditVM$fromStore___closure0: function TaxRateEditVM_TaxRateEditVM$fromStore___closure0() { }, TaxRateEditVM_TaxRateEditVM$fromStore____closure: function TaxRateEditVM_TaxRateEditVM$fromStore____closure(t0) { this.error = t0; }, TaxRateListItem: function TaxRateListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.taxRate = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TaxRateListItem_build_closure1: function TaxRateListItem_build_closure1(t0) { this.$this = t0; }, TaxRateListItem_build_closure0: function TaxRateListItem_build_closure0(t0) { this.$this = t0; }, TaxRateListItem_build_closure: function TaxRateListItem_build_closure(t0) { this.$this = t0; }, TaxRateListVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userCompany; t2 = t2.taxRateUIState; t2.toString; t5 = $.$get$memoizedFilteredTaxRateList(); t6 = state.getUISelection$1(B.EntityType_taxRate); t7 = t1[t3].taxRateState; t2 = t2.listUIState; return new A.TaxRateListVM(state, t4, t5.call$4(t6, t7.map, t7.list, t2), t1[t3].taxRateState.map, t2.filter, new A.TaxRateListVM_fromStore_closure(new A.TaxRateListVM_fromStore__handleRefresh(store)), new A.TaxRateListVM_fromStore_closure0(store), new A.TaxRateListVM_fromStore_closure1(store)); }, TaxRateListBuilder: function TaxRateListBuilder(t0) { this.key = t0; }, TaxRateListBuilder_build_closure: function TaxRateListBuilder_build_closure() { }, TaxRateListBuilder_build__closure: function TaxRateListBuilder_build__closure(t0) { this.viewModel = t0; }, TaxRateListVM: function TaxRateListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.userCompany = t1; _.taxRateList = t2; _.taxRateMap = t3; _.filter = t4; _.onRefreshed = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TaxRateListVM_fromStore__handleRefresh: function TaxRateListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaxRateListVM_fromStore_closure: function TaxRateListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaxRateListVM_fromStore_closure0: function TaxRateListVM_fromStore_closure0(t0) { this.store = t0; }, TaxRateListVM_fromStore_closure1: function TaxRateListVM_fromStore_closure1(t0) { this.store = t0; }, TaxRateSettingsScreen: function TaxRateSettingsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaxRateSettingsScreen_build_closure6: function TaxRateSettingsScreen_build_closure6(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure3: function TaxRateSettingsScreen_build_closure3(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure4: function TaxRateSettingsScreen_build_closure4(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure5: function TaxRateSettingsScreen_build_closure5(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure0: function TaxRateSettingsScreen_build_closure0(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure1: function TaxRateSettingsScreen_build_closure1(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure: function TaxRateSettingsScreen_build_closure(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure2: function TaxRateSettingsScreen_build_closure2(t0) { this.context = t0; }, TaxRateScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].taxRateState.toString; t4 = $.$get$memoizedFilteredTaxRateList(); t5 = state.getUISelection$1(B.EntityType_taxRate); t6 = t1[t3].taxRateState; t7 = t6.map; t6 = t6.list; t2 = t2.taxRateUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.TaxRateScreenVM(t6); }, TaxRateScreenBuilder: function TaxRateScreenBuilder(t0) { this.key = t0; }, TaxRateScreenBuilder_build_closure: function TaxRateScreenBuilder_build_closure() { }, TaxRateScreenVM: function TaxRateScreenVM(t0) { this.taxRateList = t0; }, TaxRateView: function TaxRateView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaxRateViewState: function _TaxRateViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaxRateViewState_build_closure: function _TaxRateViewState_build_closure(t0) { this.viewModel = t0; }, TaxRateViewVM_TaxRateViewVM$fromStore(store) { var t4, taxRate, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].taxRateState.map; t2 = t2.taxRateUIState.selectedId; taxRate = t4._map$_map.$index(0, t2); if (taxRate == null) taxRate = A.TaxRateEntity_TaxRateEntity(t2, null, null, null); t1 = t1[t3].userCompany.company; taxRate.get$isNew(); return new A.TaxRateViewVM(state, taxRate, t1, new A.TaxRateViewVM_TaxRateViewVM$fromStore_closure(store)); }, TaxRateViewScreen: function TaxRateViewScreen(t0) { this.key = t0; }, TaxRateViewScreen_build_closure0: function TaxRateViewScreen_build_closure0() { }, TaxRateViewScreen_build_closure: function TaxRateViewScreen_build_closure(t0) { this.$this = t0; }, TaxRateViewVM: function TaxRateViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.taxRate = t1; _.company = t2; _.onBackPressed = t3; }, TaxRateViewVM_TaxRateViewVM$fromStore_closure: function TaxRateViewVM_TaxRateViewVM$fromStore_closure(t0) { this.store = t0; }, TokenEdit: function TokenEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TokenEditState: function _TokenEditState(t0, t1, t2, t3) { var _ = this; _._token_edit$_debouncer = t0; _._token_edit$_nameController = t1; _._token_edit$_controllers = t2; _._token_edit$_autoValidate = false; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _TokenEditState_didChangeDependencies_closure: function _TokenEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TokenEditState_didChangeDependencies_closure0: function _TokenEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TokenEditState_dispose_closure: function _TokenEditState_dispose_closure(t0) { this.$this = t0; }, _TokenEditState__onChanged_closure: function _TokenEditState__onChanged_closure(t0) { this.$this = t0; }, _TokenEditState__onChanged_closure0: function _TokenEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.token = t1; }, _TokenEditState_build_closure0: function _TokenEditState_build_closure0(t0) { this.viewModel = t0; }, _TokenEditState_build_closure1: function _TokenEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TokenEditState_build__closure: function _TokenEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _TokenEditState_build_closure: function _TokenEditState_build_closure(t0, t1, t2) { this.$this = t0; this.localization = t1; this.viewModel = t2; }, _TokenEditState_build__closure0: function _TokenEditState_build__closure0(t0) { this.localization = t0; }, TokenEditVM_TokenEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, token = t1.tokenUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].tokenState.map; t4 = token.id; t3._map$_map.$index(0, t4); return new A.TokenEditVM(token, t2[t1].userCompany.company, new A.TokenEditVM_TokenEditVM$fromStore_closure(store), new A.TokenEditVM_TokenEditVM$fromStore_closure0(store, state), new A.TokenEditVM_TokenEditVM$fromStore_closure1(state, store), state); }, TokenEditScreen: function TokenEditScreen(t0) { this.key = t0; }, TokenEditScreen_build_closure0: function TokenEditScreen_build_closure0() { }, TokenEditScreen_build_closure: function TokenEditScreen_build_closure() { }, TokenEditVM: function TokenEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.token = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TokenEditVM_TokenEditVM$fromStore_closure: function TokenEditVM_TokenEditVM$fromStore_closure(t0) { this.store = t0; }, TokenEditVM_TokenEditVM$fromStore_closure1: function TokenEditVM_TokenEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, TokenEditVM_TokenEditVM$fromStore_closure0: function TokenEditVM_TokenEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TokenEditVM_TokenEditVM$fromStore__closure: function TokenEditVM_TokenEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, TokenEditVM_TokenEditVM$fromStore___closure: function TokenEditVM_TokenEditVM$fromStore___closure(t0, t1, t2) { this.store = t0; this.token = t1; this.state = t2; }, TokenEditVM_TokenEditVM$fromStore____closure: function TokenEditVM_TokenEditVM$fromStore____closure(t0, t1, t2, t3, t4) { var _ = this; _.token = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TokenEditVM_TokenEditVM$fromStore____closure0: function TokenEditVM_TokenEditVM$fromStore____closure0() { }, TokenEditVM_TokenEditVM$fromStore_____closure: function TokenEditVM_TokenEditVM$fromStore_____closure(t0) { this.error = t0; }, TokenListItem: function TokenListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.token = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TokenListItem_build_closure1: function TokenListItem_build_closure1(t0) { this.$this = t0; }, TokenListItem_build_closure0: function TokenListItem_build_closure0(t0) { this.$this = t0; }, TokenListItem_build_closure: function TokenListItem_build_closure(t0) { this.$this = t0; }, TokenListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.tokenUIState; t2.toString; t4 = $.$get$memoizedFilteredTokenList(); t5 = state.getUISelection$1(B.EntityType_token); t6 = t1[t3].tokenState; t2 = t2.listUIState; t6 = t4.call$4(t5, t6.map, t6.list, t2); t5 = t1[t3]; t4 = t5.tokenState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_token); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType([], type$.JSArray_legacy_String); } else t1 = t5; return new A.TokenListVM(state, t6, t4, t2, new A.TokenListVM_fromStore_closure(new A.TokenListVM_fromStore__handleRefresh(store)), t1, new A.TokenListVM_fromStore_closure0(store), new A.TokenListVM_fromStore_closure1(store)); }, TokenListBuilder: function TokenListBuilder(t0) { this.key = t0; }, TokenListBuilder_build_closure: function TokenListBuilder_build_closure() { }, TokenListBuilder_build__closure: function TokenListBuilder_build__closure(t0) { this.viewModel = t0; }, TokenListVM: function TokenListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.tokenList = t1; _.tokenMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TokenListVM_fromStore__handleRefresh: function TokenListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TokenListVM_fromStore_closure: function TokenListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TokenListVM_fromStore_closure0: function TokenListVM_fromStore_closure0(t0) { this.store = t0; }, TokenListVM_fromStore_closure1: function TokenListVM_fromStore_closure1(t0) { this.store = t0; }, TokenPresenter: function TokenPresenter() { this.context = this.entity = null; }, TokenScreen: function TokenScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TokenScreen_build_closure10: function TokenScreen_build_closure10(t0) { this.store = t0; }, TokenScreen_build_closure7: function TokenScreen_build_closure7(t0) { this.store = t0; }, TokenScreen_build_closure8: function TokenScreen_build_closure8(t0) { this.store = t0; }, TokenScreen_build_closure9: function TokenScreen_build_closure9(t0) { this.store = t0; }, TokenScreen_build_closure4: function TokenScreen_build_closure4(t0) { this.store = t0; }, TokenScreen_build_closure5: function TokenScreen_build_closure5(t0) { this.store = t0; }, TokenScreen_build_closure: function TokenScreen_build_closure(t0) { this.store = t0; }, TokenScreen_build_closure0: function TokenScreen_build_closure0(t0) { this.store = t0; }, TokenScreen_build_closure1: function TokenScreen_build_closure1(t0) { this.store = t0; }, TokenScreen_build_closure2: function TokenScreen_build_closure2(t0) { this.store = t0; }, TokenScreen_build_closure3: function TokenScreen_build_closure3(t0) { this.store = t0; }, TokenScreen_build_closure6: function TokenScreen_build_closure6(t0) { this.context = t0; }, TokenScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].tokenState.toString; t4 = $.$get$memoizedFilteredTokenList(); t5 = state.getUISelection$1(B.EntityType_token); t6 = t1[t3].tokenState; t7 = t6.map; t6 = t6.list; t2 = t2.tokenUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.TokenScreenVM(t6); }, TokenScreenBuilder: function TokenScreenBuilder(t0) { this.key = t0; }, TokenScreenBuilder_build_closure: function TokenScreenBuilder_build_closure() { }, TokenScreenVM: function TokenScreenVM(t0) { this.tokenList = t0; }, TokenView: function TokenView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TokenViewState: function _TokenViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TokenViewState_build_closure: function _TokenViewState_build_closure(t0) { this.viewModel = t0; }, _TokenListTile: function _TokenListTile(t0, t1) { this.token = t0; this.key = t1; }, _TokenListTile_build_closure: function _TokenListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, TokenViewVM_TokenViewVM$fromStore(store) { var t4, token, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].tokenState.map; t2 = t2.tokenUIState.selectedId; token = t4._map$_map.$index(0, t2); if (token == null) token = A.TokenEntity_TokenEntity(t2, null); t1 = t1[t3].userCompany.company; token.get$isNew(); return new A.TokenViewVM(state, token, t1, new A.TokenViewVM_TokenViewVM$fromStore_closure(store)); }, TokenViewScreen: function TokenViewScreen(t0) { this.key = t0; }, TokenViewScreen_build_closure0: function TokenViewScreen_build_closure0() { }, TokenViewScreen_build_closure: function TokenViewScreen_build_closure(t0) { this.$this = t0; }, TokenViewVM: function TokenViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.token = t1; _.company = t2; _.onBackPressed = t3; }, TokenViewVM_TokenViewVM$fromStore_closure: function TokenViewVM_TokenViewVM$fromStore_closure(t0) { this.store = t0; }, UserEdit: function UserEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _UserEditState: function _UserEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._user_edit$_debouncer = t0; _._user_edit$_focusNode = t1; _._user_edit$_controller = null; _.autoValidate = false; _._firstNameController = t2; _._lastNameController = t3; _._phoneController = t4; _._emailController = t5; _._custom1Controller = t6; _._custom2Controller = t7; _._custom3Controller = t8; _._custom4Controller = t9; _._user_edit$_controllers = t10; _.SingleTickerProviderStateMixin__ticker = t11; _.SingleTickerProviderStateMixin__tickerModeNotifier = t12; _._widget = null; _._debugLifecycleState = t13; _._framework$_element = null; }, _UserEditState_didChangeDependencies_closure: function _UserEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _UserEditState_didChangeDependencies_closure0: function _UserEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _UserEditState_dispose_closure: function _UserEditState_dispose_closure(t0) { this.$this = t0; }, _UserEditState__onChanged_closure: function _UserEditState__onChanged_closure(t0) { this.$this = t0; }, _UserEditState__onChanged_closure0: function _UserEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.user = t1; }, _UserEditState__togglePermission_closure: function _UserEditState__togglePermission_closure() { }, _UserEditState__togglePermission_closure0: function _UserEditState__togglePermission_closure0(t0) { this.permissionsString = t0; }, _UserEditState_build_closure13: function _UserEditState_build_closure13(t0) { this.viewModel = t0; }, _UserEditState_build_closure14: function _UserEditState_build_closure14(t0, t1) { this.$this = t0; this.viewModel = t1; }, _UserEditState_build__closure: function _UserEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _UserEditState_build_closure: function _UserEditState_build_closure(t0) { this.localization = t0; }, _UserEditState_build_closure0: function _UserEditState_build_closure0(t0) { this.localization = t0; }, _UserEditState_build_closure1: function _UserEditState_build_closure1(t0) { this.localization = t0; }, _UserEditState_build_closure2: function _UserEditState_build_closure2(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserEditState_build__closure9: function _UserEditState_build__closure9(t0, t1) { this.channel = t0; this.options = t1; }, _UserEditState_build_closure3: function _UserEditState_build_closure3(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserEditState_build__closure8: function _UserEditState_build__closure8(t0) { this.value = t0; }, _UserEditState_build_closure4: function _UserEditState_build_closure4(t0) { this.$this = t0; }, _UserEditState_build__closure7: function _UserEditState_build__closure7(t0) { this.$this = t0; }, _UserEditState_build___closure0: function _UserEditState_build___closure0(t0) { this.$this = t0; }, _UserEditState_build_closure5: function _UserEditState_build_closure5(t0) { this.$this = t0; }, _UserEditState_build_closure6: function _UserEditState_build_closure6(t0) { this.$this = t0; }, _UserEditState_build_closure7: function _UserEditState_build_closure7(t0) { this.$this = t0; }, _UserEditState_build_closure8: function _UserEditState_build_closure8(t0) { this.$this = t0; }, _UserEditState_build_closure9: function _UserEditState_build_closure9(t0) { this.$this = t0; }, _UserEditState_build_closure10: function _UserEditState_build_closure10(t0) { this.$this = t0; }, _UserEditState_build_closure11: function _UserEditState_build_closure11(t0) { this.state = t0; }, _UserEditState_build_closure12: function _UserEditState_build_closure12(t0, t1, t2) { this.$this = t0; this.localization = t1; this.userCompany = t2; }, _UserEditState_build__closure0: function _UserEditState_build__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.createPermission = t1; _.viewPermission = t2; _.editPermission = t3; }, _UserEditState_build___closure: function _UserEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewPermission = t1; this.editPermission = t2; }, _UserEditState_build____closure: function _UserEditState_build____closure(t0, t1) { this.$this = t0; this.editPermission = t1; }, _UserEditState_build__closure2: function _UserEditState_build__closure2(t0, t1) { this.$this = t0; this.createPermission = t1; }, _UserEditState_build__closure1: function _UserEditState_build__closure1(t0, t1) { this.$this = t0; this.createPermission = t1; }, _UserEditState_build__closure4: function _UserEditState_build__closure4(t0, t1) { this.$this = t0; this.viewPermission = t1; }, _UserEditState_build__closure3: function _UserEditState_build__closure3(t0, t1) { this.$this = t0; this.viewPermission = t1; }, _UserEditState_build__closure6: function _UserEditState_build__closure6(t0, t1) { this.$this = t0; this.editPermission = t1; }, _UserEditState_build__closure5: function _UserEditState_build__closure5(t0, t1) { this.$this = t0; this.editPermission = t1; }, _PermissionCheckbox: function _PermissionCheckbox(t0, t1, t2, t3, t4) { var _ = this; _.userCompany = t0; _.permission = t1; _.onChanged = t2; _.checkAll = t3; _.key = t4; }, __UserEditState_State_SingleTickerProviderStateMixin: function __UserEditState_State_SingleTickerProviderStateMixin() { }, UserEditVM_UserEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, user = t1.userUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].userState.map; t4 = user.id; t3._map$_map.$index(0, t4); return new A.UserEditVM(user, t2[t1].userCompany.company, new A.UserEditVM_UserEditVM$fromStore_closure(store), new A.UserEditVM_UserEditVM$fromStore_closure0(store, state), new A.UserEditVM_UserEditVM$fromStore_closure1(store, state), state); }, UserEditScreen: function UserEditScreen(t0) { this.key = t0; }, UserEditScreen_build_closure0: function UserEditScreen_build_closure0() { }, UserEditScreen_build_closure: function UserEditScreen_build_closure() { }, UserEditVM: function UserEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.company = t1; _.onUserChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, UserEditVM_UserEditVM$fromStore_closure: function UserEditVM_UserEditVM$fromStore_closure(t0) { this.store = t0; }, UserEditVM_UserEditVM$fromStore_closure1: function UserEditVM_UserEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, UserEditVM_UserEditVM$fromStore_closure0: function UserEditVM_UserEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, UserEditVM_UserEditVM$fromStore__closure: function UserEditVM_UserEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, UserEditVM_UserEditVM$fromStore___closure: function UserEditVM_UserEditVM$fromStore___closure(t0, t1, t2) { this.store = t0; this.completer = t1; this.user = t2; }, UserEditVM_UserEditVM$fromStore___closure0: function UserEditVM_UserEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, UserEditVM_UserEditVM$fromStore___closure1: function UserEditVM_UserEditVM$fromStore___closure1() { }, UserEditVM_UserEditVM$fromStore____closure: function UserEditVM_UserEditVM$fromStore____closure(t0) { this.error = t0; }, UserListItem: function UserListItem(t0, t1, t2, t3) { var _ = this; _.user = t0; _.onLongPress = t1; _.filter = t2; _.key = t3; }, UserListItem_build_closure1: function UserListItem_build_closure1(t0) { this.$this = t0; }, UserListItem_build_closure0: function UserListItem_build_closure0(t0) { this.$this = t0; }, UserListItem_build_closure: function UserListItem_build_closure(t0) { this.$this = t0; }, UserListVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.userUIState; t2.toString; t4 = $.$get$memoizedFilteredUserList(); t5 = state.getUISelection$1(B.EntityType_user); t6 = t1[t3]; t7 = t6.userState; t2 = t2.listUIState; return new A.UserListVM(state, t4.call$5(t5, t7.map, t7.list, t2, t6.userCompany.user.id), t1[t3].userState.map, t2.filter, new A.UserListVM_fromStore_closure(new A.UserListVM_fromStore__handleRefresh(store)), new A.UserListVM_fromStore_closure0(store), new A.UserListVM_fromStore_closure1(store)); }, UserListBuilder: function UserListBuilder(t0) { this.key = t0; }, UserListBuilder_build_closure: function UserListBuilder_build_closure() { }, UserListBuilder_build__closure: function UserListBuilder_build__closure(t0) { this.viewModel = t0; }, UserListBuilder_build__closure_showDialog: function UserListBuilder_build__closure_showDialog(t0) { this.user = t0; }, UserListBuilder_build___closure: function UserListBuilder_build___closure(t0) { this.showDialog = t0; }, UserListVM: function UserListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.userList = t1; _.userMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, UserListVM_fromStore__handleRefresh: function UserListVM_fromStore__handleRefresh(t0) { this.store = t0; }, UserListVM_fromStore_closure: function UserListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, UserListVM_fromStore_closure0: function UserListVM_fromStore_closure0(t0) { this.store = t0; }, UserListVM_fromStore_closure1: function UserListVM_fromStore_closure1(t0) { this.store = t0; }, UserScreen: function UserScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, UserScreen_build_closure10: function UserScreen_build_closure10(t0) { this.store = t0; }, UserScreen_build_closure7: function UserScreen_build_closure7(t0) { this.store = t0; }, UserScreen_build_closure8: function UserScreen_build_closure8(t0) { this.store = t0; }, UserScreen_build_closure9: function UserScreen_build_closure9(t0) { this.store = t0; }, UserScreen_build_closure4: function UserScreen_build_closure4(t0) { this.store = t0; }, UserScreen_build_closure0: function UserScreen_build_closure0(t0) { this.store = t0; }, UserScreen_build_closure1: function UserScreen_build_closure1(t0) { this.store = t0; }, UserScreen_build_closure2: function UserScreen_build_closure2(t0) { this.store = t0; }, UserScreen_build_closure3: function UserScreen_build_closure3(t0) { this.store = t0; }, UserScreen_build_closure5: function UserScreen_build_closure5(t0) { this.store = t0; }, UserScreen_build_closure: function UserScreen_build_closure(t0) { this.store = t0; }, UserScreen_build_closure6: function UserScreen_build_closure6(t0) { this.context = t0; }, UserScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].userState.toString; t4 = $.$get$memoizedFilteredUserList(); t5 = state.getUISelection$1(B.EntityType_user); t6 = t1[t3]; t7 = t6.userState; t8 = t7.map; t7 = t7.list; t2 = t2.userUIState.listUIState; t6 = t4.call$5(t5, t8, t7, t2, t6.userCompany.user.id); t1[t3].toString; t2.toString; return new A.UserScreenVM(t6); }, UserScreenBuilder: function UserScreenBuilder(t0) { this.key = t0; }, UserScreenBuilder_build_closure: function UserScreenBuilder_build_closure() { }, UserScreenVM: function UserScreenVM(t0) { this.userList = t0; }, UserView: function UserView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, UserView_build_closure: function UserView_build_closure(t0) { this.$this = t0; }, UserViewVM_UserViewVM$fromStore(store) { var t4, user, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].userState.map; t2 = t2.userUIState.selectedId; user = t4._map$_map.$index(0, t2); if (user == null) user = A.UserEntity_UserEntity(t2, null, null); t1 = t1[t3].userCompany.company; user.get$isNew(); return new A.UserViewVM(state, user, t1, new A.UserViewVM_UserViewVM$fromStore_closure(store)); }, UserViewScreen: function UserViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, UserViewScreen_build_closure0: function UserViewScreen_build_closure0() { }, UserViewScreen_build_closure: function UserViewScreen_build_closure(t0) { this.$this = t0; }, UserViewVM: function UserViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.user = t1; _.company = t2; _.onBackPressed = t3; }, UserViewVM_UserViewVM$fromStore_closure: function UserViewVM_UserViewVM$fromStore_closure(t0) { this.store = t0; }, VendorEdit: function VendorEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _VendorEditState: function _VendorEditState(t0, t1, t2) { var _ = this; _._vendor_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _VendorEditState_build_closure: function _VendorEditState_build_closure(t0) { this.viewModel = t0; }, _VendorEditState_build_closure0: function _VendorEditState_build_closure0(t0) { this.viewModel = t0; }, __VendorEditState_State_SingleTickerProviderStateMixin: function __VendorEditState_State_SingleTickerProviderStateMixin() { }, VendorEditAddress: function VendorEditAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditAddressState: function VendorEditAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._vendor_edit_address$_address1Controller = t0; _._vendor_edit_address$_address2Controller = t1; _._vendor_edit_address$_cityController = t2; _._vendor_edit_address$_stateController = t3; _._vendor_edit_address$_postalCodeController = t4; _._vendor_edit_address$_controllers = t5; _._vendor_edit_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, VendorEditAddressState_didChangeDependencies_closure: function VendorEditAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditAddressState_didChangeDependencies_closure0: function VendorEditAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditAddressState_dispose_closure: function VendorEditAddressState_dispose_closure(t0) { this.$this = t0; }, VendorEditAddressState__onChanged_closure: function VendorEditAddressState__onChanged_closure(t0) { this.$this = t0; }, VendorEditAddressState__onChanged_closure0: function VendorEditAddressState__onChanged_closure0(t0, t1) { this.$this = t0; this.vendor = t1; }, VendorEditAddressState_build_closure: function VendorEditAddressState_build_closure(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditAddressState_build__closure: function VendorEditAddressState_build__closure(t0) { this.country = t0; }, VendorEditContacts: function VendorEditContacts(t0, t1, t2) { this.viewModel = t0; this.vendorViewModel = t1; this.key = t2; }, _VendorEditContactsState: function _VendorEditContactsState(t0) { var _ = this; _._widget = _.selectedContact = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _VendorEditContactsState__showContactEditor_closure: function _VendorEditContactsState__showContactEditor_closure(t0, t1) { this.$this = t0; this.contact = t1; }, _VendorEditContactsState__showContactEditor__closure: function _VendorEditContactsState__showContactEditor__closure(t0) { this.contact = t0; }, _VendorEditContactsState_build_closure: function _VendorEditContactsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _VendorEditContactsState_build__closure: function _VendorEditContactsState_build__closure(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _VendorEditContactsState_build_closure0: function _VendorEditContactsState_build_closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _VendorEditContactsState_build_closure1: function _VendorEditContactsState_build_closure1(t0) { this.viewModel = t0; }, ContactListTile: function ContactListTile(t0, t1, t2) { this.onTap = t0; this.contact = t1; this.key = t2; }, VendorContactEditDetails: function VendorContactEditDetails(t0, t1, t2, t3, t4, t5) { var _ = this; _.index = t0; _.contact = t1; _.viewModel = t2; _.vendorViewModel = t3; _.isDialog = t4; _.key = t5; }, VendorContactEditDetailsState: function VendorContactEditDetailsState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._vendor_edit_contacts$_firstNameController = t0; _._vendor_edit_contacts$_lastNameController = t1; _._vendor_edit_contacts$_emailController = t2; _._vendor_edit_contacts$_phoneController = t3; _._vendor_edit_contacts$_debouncer = t4; _._vendor_edit_contacts$_controllers = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, VendorContactEditDetailsState_didChangeDependencies_closure: function VendorContactEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState_didChangeDependencies_closure0: function VendorContactEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorContactEditDetailsState_dispose_closure: function VendorContactEditDetailsState_dispose_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState__onChanged_closure: function VendorContactEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState__onChanged_closure0: function VendorContactEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.contact = t1; }, VendorContactEditDetailsState_build_closure: function VendorContactEditDetailsState_build_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure0: function VendorContactEditDetailsState_build_closure0(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure1: function VendorContactEditDetailsState_build_closure1(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure2: function VendorContactEditDetailsState_build_closure2(t0) { this.localization = t0; }, VendorContactEditDetailsState_build_closure3: function VendorContactEditDetailsState_build_closure3(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure4: function VendorContactEditDetailsState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, VendorContactEditDetailsState_build__closure: function VendorContactEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, VendorContactEditDetailsState_build_closure5: function VendorContactEditDetailsState_build_closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, VendorEditContactsVM_VendorEditContactsVM$fromStore(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.vendorUIState, vendor = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.VendorEditContactsVM(t3._list[t1].userCompany.company, vendor, t2.editingContact, new A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure(store), new A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0(store), new A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1(store), new A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2(store)); }, VendorEditContactsScreen: function VendorEditContactsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditContactsScreen_build_closure0: function VendorEditContactsScreen_build_closure0() { }, VendorEditContactsScreen_build_closure: function VendorEditContactsScreen_build_closure(t0) { this.$this = t0; }, VendorEditContactsVM: function VendorEditContactsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.vendor = t1; _.contact = t2; _.onAddContactPressed = t3; _.onRemoveContactPressed = t4; _.onDoneContactPressed = t5; _.onChangedContact = t6; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2(t0) { this.store = t0; }, VendorEditDesktop: function VendorEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditDetails: function VendorEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditDetailsState: function VendorEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._vendor_edit_details$_numberController = t0; _._vendor_edit_details$_nameController = t1; _._vendor_edit_details$_idNumberController = t2; _._vendor_edit_details$_vatNumberController = t3; _._vendor_edit_details$_websiteController = t4; _._vendor_edit_details$_phoneController = t5; _._vendor_edit_details$_custom1Controller = t6; _._vendor_edit_details$_custom2Controller = t7; _._vendor_edit_details$_custom3Controller = t8; _._vendor_edit_details$_custom4Controller = t9; _._vendor_edit_details$_debouncer = t10; _._widget = _._vendor_edit_details$_controllers = null; _._debugLifecycleState = t11; _._framework$_element = null; }, VendorEditDetailsState_didChangeDependencies_closure: function VendorEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditDetailsState_didChangeDependencies_closure0: function VendorEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditDetailsState_dispose_closure: function VendorEditDetailsState_dispose_closure(t0) { this.$this = t0; }, VendorEditDetailsState__onChanged_closure: function VendorEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, VendorEditDetailsState__onChanged_closure0: function VendorEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditDetailsState_build_closure: function VendorEditDetailsState_build_closure(t0) { this.context = t0; }, VendorEditDetailsState_build_closure0: function VendorEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditDetailsState_build__closure: function VendorEditDetailsState_build__closure(t0) { this.userId = t0; }, VendorEditFooter: function VendorEditFooter(t0, t1) { this.vendor = t0; this.key = t1; }, VendorEditFooter_build_closure: function VendorEditFooter_build_closure(t0) { this.store = t0; }, VendorEditNotes: function VendorEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditNotesState: function VendorEditNotesState(t0, t1, t2, t3) { var _ = this; _._vendor_edit_notes$_publicNotesController = t0; _._vendor_edit_notes$_privateNotesController = t1; _._vendor_edit_notes$_controllers = null; _._vendor_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, VendorEditNotesState_didChangeDependencies_closure: function VendorEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditNotesState_didChangeDependencies_closure0: function VendorEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditNotesState_dispose_closure: function VendorEditNotesState_dispose_closure(t0) { this.$this = t0; }, VendorEditNotesState__onChanged_closure: function VendorEditNotesState__onChanged_closure(t0) { this.$this = t0; }, VendorEditNotesState__onChanged_closure0: function VendorEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditNotesState_build_closure: function VendorEditNotesState_build_closure(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditNotesState_build__closure: function VendorEditNotesState_build__closure(t0) { this.currency = t0; }, VendorEditVM_VendorEditVM$fromStore(store) { var t3, t4, vendor = A._lateReadCheck(store.__Store__state, "_state").uiState.vendorUIState.editing, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].vendorState.map; t4 = vendor.id; t3._map$_map.$index(0, t4); return new A.VendorEditVM(vendor, t1[t2].userCompany.company, new A.VendorEditVM_VendorEditVM$fromStore_closure(store), new A.VendorEditVM_VendorEditVM$fromStore_closure0(store, state), new A.VendorEditVM_VendorEditVM$fromStore_closure1(state, store), state); }, VendorEditScreen: function VendorEditScreen(t0) { this.key = t0; }, VendorEditScreen_build_closure0: function VendorEditScreen_build_closure0() { }, VendorEditScreen_build_closure: function VendorEditScreen_build_closure() { }, VendorEditVM: function VendorEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.vendor = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, VendorEditVM_VendorEditVM$fromStore_closure: function VendorEditVM_VendorEditVM$fromStore_closure(t0) { this.store = t0; }, VendorEditVM_VendorEditVM$fromStore_closure1: function VendorEditVM_VendorEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, VendorEditVM_VendorEditVM$fromStore_closure0: function VendorEditVM_VendorEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, VendorEditVM_VendorEditVM$fromStore__closure: function VendorEditVM_VendorEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, VendorEditVM_VendorEditVM$fromStore___closure: function VendorEditVM_VendorEditVM$fromStore___closure(t0) { this.localization = t0; }, VendorEditVM_VendorEditVM$fromStore___closure0: function VendorEditVM_VendorEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.vendor = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, VendorEditVM_VendorEditVM$fromStore___closure1: function VendorEditVM_VendorEditVM$fromStore___closure1() { }, VendorEditVM_VendorEditVM$fromStore____closure: function VendorEditVM_VendorEditVM$fromStore____closure(t0) { this.error = t0; }, VendorListItem: function VendorListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.vendor = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, VendorListItem_build_closure: function VendorListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.documents = t5; _.filterMatch = t6; _.textColor = t7; }, VendorListItem_build__closure2: function VendorListItem_build__closure2(t0) { this.$this = t0; }, VendorListItem_build__closure1: function VendorListItem_build__closure1(t0) { this.$this = t0; }, VendorListItem_build__closure: function VendorListItem_build__closure(t0) { this.$this = t0; }, VendorListItem_build__closure0: function VendorListItem_build__closure0(t0) { this.$this = t0; }, VendorListItem_build__closure5: function VendorListItem_build__closure5(t0) { this.$this = t0; }, VendorListItem_build__closure4: function VendorListItem_build__closure4(t0) { this.$this = t0; }, VendorListItem_build__closure3: function VendorListItem_build__closure3(t0) { this.$this = t0; }, VendorListVM_fromStore(store) { var t3, t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, t2 = t1.vendorUIState; t2.toString; t3 = $.$get$memoizedFilteredVendorList(); t4 = state.getUISelection$1(B.EntityType_vendor); t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t5 = t5._list; t6 = t5[t1]; t7 = t6.vendorState; t2 = t2.listUIState; t6 = t3.call$6(t4, t7.map, t7.list, t2, t6.userState.map, state.staticState); t7 = t5[t1]; t4 = t7.vendorState.map; t2 = t2.filter; t7 = t7.userCompany.settings; t3 = t7 == null ? null : t7.getTableColumns$1(B.EntityType_vendor); if (t3 == null) { t5[t1].toString; t1 = A._setArrayType(["number", "name", "city", "phone", "entity_state", "created_at"], type$.JSArray_legacy_String); } else t1 = t3; return new A.VendorListVM(state, t6, t4, t2, new A.VendorListVM_fromStore_closure(new A.VendorListVM_fromStore__handleRefresh(store)), t1, new A.VendorListVM_fromStore_closure0(store), new A.VendorListVM_fromStore_closure1(store)); }, VendorListBuilder: function VendorListBuilder(t0) { this.key = t0; }, VendorListBuilder_build_closure: function VendorListBuilder_build_closure() { }, VendorListBuilder_build__closure: function VendorListBuilder_build__closure(t0) { this.viewModel = t0; }, VendorListVM: function VendorListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.vendorList = t1; _.vendorMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, VendorListVM_fromStore__handleRefresh: function VendorListVM_fromStore__handleRefresh(t0) { this.store = t0; }, VendorListVM_fromStore_closure: function VendorListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, VendorListVM_fromStore_closure0: function VendorListVM_fromStore_closure0(t0) { this.store = t0; }, VendorListVM_fromStore_closure1: function VendorListVM_fromStore_closure1(t0) { this.store = t0; }, VendorPresenter: function VendorPresenter() { this.context = this.entity = null; }, VendorPresenter_getField_closure: function VendorPresenter_getField_closure() { }, VendorScreen: function VendorScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorScreen_build_closure10: function VendorScreen_build_closure10(t0) { this.store = t0; }, VendorScreen_build_closure7: function VendorScreen_build_closure7(t0) { this.store = t0; }, VendorScreen_build_closure8: function VendorScreen_build_closure8(t0) { this.store = t0; }, VendorScreen_build_closure9: function VendorScreen_build_closure9(t0) { this.store = t0; }, VendorScreen_build_closure4: function VendorScreen_build_closure4(t0) { this.store = t0; }, VendorScreen_build_closure0: function VendorScreen_build_closure0(t0) { this.store = t0; }, VendorScreen_build_closure1: function VendorScreen_build_closure1(t0) { this.store = t0; }, VendorScreen_build_closure2: function VendorScreen_build_closure2(t0) { this.store = t0; }, VendorScreen_build_closure3: function VendorScreen_build_closure3(t0) { this.store = t0; }, VendorScreen_build_closure5: function VendorScreen_build_closure5(t0) { this.store = t0; }, VendorScreen_build_closure: function VendorScreen_build_closure(t0) { this.store = t0; }, VendorScreen_build_closure6: function VendorScreen_build_closure6(t0) { this.context = t0; }, VendorScreenVM_fromStore(store) { var t4, t5, t6, t7, t8, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].vendorState.toString; t4 = $.$get$memoizedFilteredVendorList(); t5 = state.getUISelection$1(B.EntityType_vendor); t6 = t1[t3]; t7 = t6.vendorState; t8 = t7.map; t7 = t7.list; t2 = t2.vendorUIState.listUIState; t6 = t4.call$6(t5, t8, t7, t2, t6.userState.map, state.staticState); t1[t3].toString; t2.toString; return new A.VendorScreenVM(t6); }, VendorScreenBuilder: function VendorScreenBuilder(t0) { this.key = t0; }, VendorScreenBuilder_build_closure: function VendorScreenBuilder_build_closure() { }, VendorScreenVM: function VendorScreenVM(t0) { this.vendorList = t0; }, VendorView: function VendorView(t0, t1, t2, t3, t4) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.isTopFilter = t2; _.tabIndex = t3; _.key = t4; }, _VendorViewState: function _VendorViewState(t0, t1, t2) { var _ = this; _._vendor_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _VendorViewState_build_closure0: function _VendorViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.vendor = t2; }, _VendorViewState_build__closure: function _VendorViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build__closure0: function _VendorViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build__closure1: function _VendorViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build_closure: function _VendorViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, __VendorViewState_State_SingleTickerProviderStateMixin: function __VendorViewState_State_SingleTickerProviderStateMixin() { }, VendorViewDetails: function VendorViewDetails(t0, t1) { this.vendor = t0; this.key = t1; }, _VendorViewDetailsState: function _VendorViewDetailsState(t0) { var _ = this; _._widget = _._launched = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _VendorViewDetailsState_build__buildDetailsList: function _VendorViewDetailsState_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.vendor = t1; _.localization = t2; _.context = t3; }, _VendorViewDetailsState_build__buildDetailsList_closure: function _VendorViewDetailsState_build__buildDetailsList_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.listTiles = t1; _.localization = t2; _.context = t3; }, _VendorViewDetailsState_build__buildDetailsList__closure1: function _VendorViewDetailsState_build__buildDetailsList__closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList___closure0: function _VendorViewDetailsState_build__buildDetailsList___closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure2: function _VendorViewDetailsState_build__buildDetailsList__closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList___closure: function _VendorViewDetailsState_build__buildDetailsList___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure0: function _VendorViewDetailsState_build__buildDetailsList_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure0: function _VendorViewDetailsState_build__buildDetailsList__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure1: function _VendorViewDetailsState_build__buildDetailsList_closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure: function _VendorViewDetailsState_build__buildDetailsList__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure2: function _VendorViewDetailsState_build__buildDetailsList_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.vendor = t3; }, VendorViewDocuments: function VendorViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorViewDocuments_build_closure: function VendorViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, VendorViewDocuments_build_closure0: function VendorViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, VendorViewFullwidth: function VendorViewFullwidth(t0, t1) { this.viewModel = t0; this.key = t1; }, _VendorViewFullwidthState: function _VendorViewFullwidthState(t0, t1, t2) { var _ = this; _._scrollController3 = _._scrollController2 = _._scrollController1 = null; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _VendorViewFullwidthState_build_closure: function _VendorViewFullwidthState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.localization = t1; _.vendor = t2; _.state = t3; _.billingAddress = t4; _.showStanding = t5; _.documents = t6; _.viewModel = t7; }, _VendorViewFullwidthState_build__closure: function _VendorViewFullwidthState_build__closure(t0) { this.billingAddress = t0; }, _VendorViewFullwidthState_build__closure0: function _VendorViewFullwidthState_build__closure0(t0) { this.context = t0; }, _VendorViewFullwidthState_build__closure1: function _VendorViewFullwidthState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, __VendorViewFullwidthState_State_TickerProviderStateMixin: function __VendorViewFullwidthState_State_TickerProviderStateMixin() { }, VendorOverview: function VendorOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, VendorViewVM_VendorViewVM$fromStore(store) { var t4, vendor, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].vendorState.map; t2 = t2.vendorUIState.selectedId; vendor = t4._map$_map.$index(0, t2); if (vendor == null) vendor = A.VendorEntity_VendorEntity(t2, null, null); t1 = t1[t3].userCompany.company; vendor.get$isNew(); return new A.VendorViewVM(state, vendor, t1, new A.VendorViewVM_VendorViewVM$fromStore_closure(new A.VendorViewVM_VendorViewVM$fromStore__handleRefresh(store, vendor)), new A.VendorViewVM_VendorViewVM$fromStore_closure0(state, vendor), new A.VendorViewVM_VendorViewVM$fromStore_closure1(store, vendor), new A.VendorViewVM_VendorViewVM$fromStore_closure2(store, vendor)); }, VendorViewScreen: function VendorViewScreen(t0, t1, t2) { this.isFilter = t0; this.isTopFilter = t1; this.key = t2; }, VendorViewScreen_build_closure0: function VendorViewScreen_build_closure0() { }, VendorViewScreen_build_closure: function VendorViewScreen_build_closure(t0) { this.$this = t0; }, VendorViewVM: function VendorViewVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.vendor = t1; _.company = t2; _.onRefreshed = t3; _.onAddExpensePressed = t4; _.onUploadDocument = t5; _.onDeleteDocument = t6; }, VendorViewVM_VendorViewVM$fromStore__handleRefresh: function VendorViewVM_VendorViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore_closure: function VendorViewVM_VendorViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, VendorViewVM_VendorViewVM$fromStore_closure0: function VendorViewVM_VendorViewVM$fromStore_closure0(t0, t1) { this.state = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore_closure1: function VendorViewVM_VendorViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore__closure0: function VendorViewVM_VendorViewVM$fromStore__closure0(t0) { this.context = t0; }, VendorViewVM_VendorViewVM$fromStore__closure1: function VendorViewVM_VendorViewVM$fromStore__closure1(t0) { this.context = t0; }, VendorViewVM_VendorViewVM$fromStore___closure: function VendorViewVM_VendorViewVM$fromStore___closure(t0) { this.error = t0; }, VendorViewVM_VendorViewVM$fromStore_closure2: function VendorViewVM_VendorViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore__closure: function VendorViewVM_VendorViewVM$fromStore__closure(t0, t1) { this.store = t0; this.vendor = t1; }, WebhookEdit: function WebhookEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _WebhookEditState: function _WebhookEditState(t0, t1, t2, t3, t4, t5) { var _ = this; _._targetUrlController = t0; _._headerKeyController = t1; _._headerValueController = t2; _._webhook_edit$_debouncer = t3; _._webhook_edit$_controllers = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _WebhookEditState_didChangeDependencies_closure: function _WebhookEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _WebhookEditState_didChangeDependencies_closure0: function _WebhookEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _WebhookEditState_dispose_closure: function _WebhookEditState_dispose_closure(t0) { this.$this = t0; }, _WebhookEditState__onChanged_closure: function _WebhookEditState__onChanged_closure(t0) { this.$this = t0; }, _WebhookEditState__onChanged_closure0: function _WebhookEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.webhook = t1; }, _WebhookEditState_build_closure0: function _WebhookEditState_build_closure0(t0) { this.viewModel = t0; }, _WebhookEditState_build_closure1: function _WebhookEditState_build_closure1(t0) { this.viewModel = t0; }, _WebhookEditState_build_closure: function _WebhookEditState_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.localization = t1; _.webhook = t2; _.viewModel = t3; _.key = t4; _.value = t5; }, _WebhookEditState_build__closure: function _WebhookEditState_build__closure(t0) { this.localization = t0; }, _WebhookEditState_build__closure1: function _WebhookEditState_build__closure1(t0, t1) { this.viewModel = t0; this.webhook = t1; }, _WebhookEditState_build___closure4: function _WebhookEditState_build___closure4(t0) { this.value = t0; }, _WebhookEditState_build__closure0: function _WebhookEditState_build__closure0(t0) { this.localization = t0; }, _WebhookEditState_build__closure2: function _WebhookEditState_build__closure2(t0, t1) { this.viewModel = t0; this.webhook = t1; }, _WebhookEditState_build___closure3: function _WebhookEditState_build___closure3(t0) { this.value = t0; }, _WebhookEditState_build__closure3: function _WebhookEditState_build__closure3(t0) { this.$this = t0; }, _WebhookEditState_build___closure2: function _WebhookEditState_build___closure2() { }, _WebhookEditState_build__closure4: function _WebhookEditState_build__closure4(t0) { this.$this = t0; }, _WebhookEditState_build___closure1: function _WebhookEditState_build___closure1() { }, _WebhookEditState_build__closure5: function _WebhookEditState_build__closure5(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.webhook = t1; _.key = t2; _.viewModel = t3; _.value = t4; }, _WebhookEditState_build___closure0: function _WebhookEditState_build___closure0(t0, t1) { this.key = t0; this.value = t1; }, _WebhookEditState_build__closure6: function _WebhookEditState_build__closure6(t0, t1, t2) { this.webhook = t0; this.localization = t1; this.viewModel = t2; }, _WebhookEditState_build___closure: function _WebhookEditState_build___closure(t0, t1, t2) { this.viewModel = t0; this.webhook = t1; this.key = t2; }, _WebhookEditState_build____closure: function _WebhookEditState_build____closure(t0) { this.key = t0; }, WebhookEditVM_WebhookEditVM$fromStore(store) { var t3, t4, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, webhook = t1.webhookUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = t2[t1].webhookState.map; t4 = webhook.id; t3._map$_map.$index(0, t4); return new A.WebhookEditVM(webhook, t2[t1].userCompany.company, new A.WebhookEditVM_WebhookEditVM$fromStore_closure(store), new A.WebhookEditVM_WebhookEditVM$fromStore_closure0(store, state), new A.WebhookEditVM_WebhookEditVM$fromStore_closure1(state, store), state); }, WebhookEditScreen: function WebhookEditScreen(t0) { this.key = t0; }, WebhookEditScreen_build_closure0: function WebhookEditScreen_build_closure0() { }, WebhookEditScreen_build_closure: function WebhookEditScreen_build_closure() { }, WebhookEditVM: function WebhookEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.webhook = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, WebhookEditVM_WebhookEditVM$fromStore_closure: function WebhookEditVM_WebhookEditVM$fromStore_closure(t0) { this.store = t0; }, WebhookEditVM_WebhookEditVM$fromStore_closure1: function WebhookEditVM_WebhookEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, WebhookEditVM_WebhookEditVM$fromStore_closure0: function WebhookEditVM_WebhookEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, WebhookEditVM_WebhookEditVM$fromStore__closure: function WebhookEditVM_WebhookEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, WebhookEditVM_WebhookEditVM$fromStore___closure: function WebhookEditVM_WebhookEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.webhook = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, WebhookEditVM_WebhookEditVM$fromStore___closure0: function WebhookEditVM_WebhookEditVM$fromStore___closure0() { }, WebhookEditVM_WebhookEditVM$fromStore____closure: function WebhookEditVM_WebhookEditVM$fromStore____closure(t0) { this.error = t0; }, WebhookView: function WebhookView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _WebhookViewState: function _WebhookViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _WebhookViewState_build_closure: function _WebhookViewState_build_closure(t0) { this.viewModel = t0; }, TargetListTile: function TargetListTile(t0, t1) { this.webhook = t0; this.key = t1; }, TargetListTile_build_closure: function TargetListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, WebhookViewVM_WebhookViewVM$fromStore(store) { var t4, webhook, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = t1[t3].webhookState.map; t2 = t2.webhookUIState.selectedId; webhook = t4._map$_map.$index(0, t2); if (webhook == null) webhook = A.WebhookEntity_WebhookEntity(t2, null); t1 = t1[t3].userCompany.company; webhook.get$isNew(); return new A.WebhookViewVM(state, webhook, t1, new A.WebhookViewVM_WebhookViewVM$fromStore_closure(store)); }, WebhookViewScreen: function WebhookViewScreen(t0) { this.key = t0; }, WebhookViewScreen_build_closure0: function WebhookViewScreen_build_closure0() { }, WebhookViewScreen_build_closure: function WebhookViewScreen_build_closure(t0) { this.$this = t0; }, WebhookViewVM: function WebhookViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.webhook = t1; _.company = t2; _.onBackPressed = t3; }, WebhookViewVM_WebhookViewVM$fromStore_closure: function WebhookViewVM_WebhookViewVM$fromStore_closure(t0) { this.store = t0; }, WebhookListItem: function WebhookListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.webhook = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, WebhookListItem_build_closure1: function WebhookListItem_build_closure1(t0) { this.$this = t0; }, WebhookListItem_build_closure0: function WebhookListItem_build_closure0(t0) { this.$this = t0; }, WebhookListItem_build_closure: function WebhookListItem_build_closure(t0) { this.$this = t0; }, WebhookListVM_fromStore(store) { var t4, t5, t6, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].toString; t2 = t2.webhookUIState; t2.toString; t4 = $.$get$memoizedFilteredWebhookList(); t5 = state.getUISelection$1(B.EntityType_webhook); t6 = t1[t3].webhookState; t2 = t2.listUIState; t6 = t4.call$4(t5, t6.map, t6.list, t2); t5 = t1[t3]; t4 = t5.webhookState.map; t2 = t2.filter; t5 = t5.userCompany.settings; t5 = t5 == null ? null : t5.getTableColumns$1(B.EntityType_webhook); if (t5 == null) { t1[t3].toString; t1 = A._setArrayType([], type$.JSArray_legacy_String); } else t1 = t5; return new A.WebhookListVM(state, t6, t4, t2, new A.WebhookListVM_fromStore_closure(new A.WebhookListVM_fromStore__handleRefresh(store)), t1, new A.WebhookListVM_fromStore_closure0(store), new A.WebhookListVM_fromStore_closure1(store)); }, WebhookListBuilder: function WebhookListBuilder(t0) { this.key = t0; }, WebhookListBuilder_build_closure: function WebhookListBuilder_build_closure() { }, WebhookListBuilder_build__closure: function WebhookListBuilder_build__closure(t0) { this.viewModel = t0; }, WebhookListVM: function WebhookListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.webhookList = t1; _.webhookMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, WebhookListVM_fromStore__handleRefresh: function WebhookListVM_fromStore__handleRefresh(t0) { this.store = t0; }, WebhookListVM_fromStore_closure: function WebhookListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, WebhookListVM_fromStore_closure0: function WebhookListVM_fromStore_closure0(t0) { this.store = t0; }, WebhookListVM_fromStore_closure1: function WebhookListVM_fromStore_closure1(t0) { this.store = t0; }, WebhookPresenter: function WebhookPresenter() { this.context = this.entity = null; }, WebhookScreen: function WebhookScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, WebhookScreen_build_closure10: function WebhookScreen_build_closure10(t0) { this.store = t0; }, WebhookScreen_build_closure7: function WebhookScreen_build_closure7(t0) { this.store = t0; }, WebhookScreen_build_closure8: function WebhookScreen_build_closure8(t0) { this.store = t0; }, WebhookScreen_build_closure9: function WebhookScreen_build_closure9(t0) { this.store = t0; }, WebhookScreen_build_closure4: function WebhookScreen_build_closure4(t0) { this.store = t0; }, WebhookScreen_build_closure5: function WebhookScreen_build_closure5(t0) { this.store = t0; }, WebhookScreen_build_closure: function WebhookScreen_build_closure(t0) { this.store = t0; }, WebhookScreen_build_closure0: function WebhookScreen_build_closure0(t0) { this.store = t0; }, WebhookScreen_build_closure1: function WebhookScreen_build_closure1(t0) { this.store = t0; }, WebhookScreen_build_closure2: function WebhookScreen_build_closure2(t0) { this.store = t0; }, WebhookScreen_build_closure3: function WebhookScreen_build_closure3(t0) { this.store = t0; }, WebhookScreen_build_closure6: function WebhookScreen_build_closure6(t0) { this.context = t0; }, WebhookScreenVM_fromStore(store) { var t4, t5, t6, t7, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t1[t3].webhookState.toString; t4 = $.$get$memoizedFilteredWebhookList(); t5 = state.getUISelection$1(B.EntityType_webhook); t6 = t1[t3].webhookState; t7 = t6.map; t6 = t6.list; t2 = t2.webhookUIState.listUIState; t6 = t4.call$4(t5, t7, t6, t2); t1[t3].toString; t2.toString; return new A.WebhookScreenVM(t6); }, WebhookScreenBuilder: function WebhookScreenBuilder(t0) { this.key = t0; }, WebhookScreenBuilder_build_closure: function WebhookScreenBuilder_build_closure() { }, WebhookScreenVM: function WebhookScreenVM(t0) { this.webhookList = t0; }, snackBarCompleter(context, message, shouldPop, $T) { var t1 = new A._Future($.Zone__current, $T._eval$1("_Future<0*>")), $navigator = A.Navigator_of(context, false); t1.then$1$1(0, new A.snackBarCompleter_closure(shouldPop, $navigator, message, null, $T), type$.Null).catchError$1(new A.snackBarCompleter_closure0(shouldPop, $navigator)); return new A._AsyncCompleter(t1, $T._eval$1("_AsyncCompleter<0*>")); }, snackBarCompleter_closure: function snackBarCompleter_closure(t0, t1, t2, t3, t4) { var _ = this; _.shouldPop = t0; _.navigator = t1; _.message = t2; _.callback = t3; _.T = t4; }, snackBarCompleter_closure0: function snackBarCompleter_closure0(t0, t1) { this.shouldPop = t0; this.navigator = t1; }, snackBarCompleter__closure: function snackBarCompleter__closure(t0) { this.error = t0; }, Debouncer: function Debouncer(t0, t1) { this.milliseconds = t0; this.sendFirstAction = t1; }, Debouncer_run_closure: function Debouncer_run_closure(t0) { this.action = t0; }, PersistUIDebouncer: function PersistUIDebouncer() { }, PersistUIDebouncer_run_closure: function PersistUIDebouncer_run_closure(t0) { this.action = t0; }, loadDesign(context, design, isDraftMode, isPurchaseOrder, onComplete) { var request, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), credentials = state.get$credentials(state), url = credentials.url + "/preview"; if (isDraftMode) url += "?html=true"; request = A._$DesignPreviewRequest$_(design, "", B.EntityType_invoice); new A.WebClient().post$4$data$rawResponse(url, credentials.token, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$designPreviewRequestSerializer(), request)), true).then$1$1(0, new A.loadDesign_closure(context, onComplete), type$.Null).catchError$1(new A.loadDesign_closure0(context, onComplete)); }, loadDesign_closure: function loadDesign_closure(t0, t1) { this.context = t0; this.onComplete = t1; }, loadDesign_closure0: function loadDesign_closure0(t0, t1) { this.context = t0; this.onComplete = t1; }, showRefreshDataDialog(context, includeStatic) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), store, t1; var $async$showRefreshDataDialog = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start store = A.StoreProvider_of(context, type$.legacy_AppState); t1 = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), true, type$.Null); store.get$_dispatchers()[0].call$1(new A.RefreshData(t1, true, includeStatic, false)); $async$goto = 2; return A._asyncAwait(A.showDialog(null, false, new A.showRefreshDataDialog_closure(), context, null, true, type$.legacy_AlertDialog), $async$showRefreshDataDialog); case 2: // returning from await. t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$showRefreshDataDialog, $async$completer); }, showErrorDialog(clearErrorOnDismiss, context, message) { A.showDialog(null, true, new A.showErrorDialog_closure(message, clearErrorOnDismiss), context, null, true, type$.legacy_ErrorDialog); }, showMessageDialog(context, message, onDismiss, secondaryActions) { A.showDialog(null, true, new A.showMessageDialog_closure(message, secondaryActions, onDismiss), context, null, true, type$.legacy_MessageDialog); }, confirmCallback(askForReason, callback, context, message, skip, typeToConfirm) { var t1, t2, title, _null = null; if (skip) { callback.call$1(_null); return; } t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = message == null; title = t2 ? t1.get$areYouSure() : message; A.showDialog(_null, true, new A.confirmCallback_closure(typeToConfirm, callback, t1, title, askForReason, t2 ? _null : t1.get$areYouSure()), context, _null, true, type$.legacy_AlertDialog); }, passwordCallback(alwaysRequire, callback, context, skipOAuth) { var user, error, t4, t5, t6, exception, _null = null, _s21_ = "please_set_a_password", _s12_ = "set_password", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state, t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; user = t3._list[t2].userCompany.user; t2 = user.hasPassword; t3 = state.get$hasRecentlyEnteredPassword(); t4 = user.oauthProvider; t5 = state; t6 = t5.userCompanyStates; t5 = t5.uiState.selectedCompanyIndex; A.print("## Confirm password: " + alwaysRequire + ", " + t2 + ", " + t3 + ", " + (t4.length === 0) + ", " + t6._list[t5].userCompany.company.oauthPasswordRequired); if (alwaysRequire && !user.hasPassword) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t3 = J.$index$asx(t2.$index(0, t1), _s21_); if (t3 == null) t3 = J.$index$asx(t2.$index(0, "en"), _s21_); t1 = J.$index$asx(t2.$index(0, t1), _s12_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s12_); A.showMessageDialog(context, t3, _null, A._setArrayType([A.TextButton$(false, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.passwordCallback_closure(store, context), _null)], type$.JSArray_legacy_TextButton)); A.print("## 1"); return; } if (state.get$hasRecentlyEnteredPassword() && !alwaysRequire) { callback.call$2(_null, _null); A.print("## 2"); return; } if (user.oauthProvider.length !== 0) if (!skipOAuth) { user.oauthProvider === "google"; user.oauthProvider === "apple"; user.toString; t1 = false; } else t1 = true; else t1 = true; if (t1) { A.showDialog(_null, false, new A.passwordCallback_closure0(callback), context, _null, true, type$.Null); return; } try { if (user.oauthProvider === "google") A.GoogleOAuth_signIn(new A.passwordCallback_closure1(alwaysRequire, state, user, callback, context), true); else if (user.oauthProvider === "microsoft") A.WebUtils_microsoftLogin(new A.passwordCallback_closure2(alwaysRequire, state, user, callback, context), new A.passwordCallback_closure3(context)); } catch (exception) { error = A.unwrapException(exception); A.showErrorDialog(false, context, A.S(error)); } A.print("## 8"); }, fieldCallback(callback, context, field, maxLength, secondaryActions, title) { A.showDialog(null, false, new A.fieldCallback_closure(callback, field, title, maxLength, secondaryActions), context, null, true, type$.legacy_AlertDialog); }, cloneToDialog(context, invoice) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; A.showDialog(null, true, new A.cloneToDialog_closure(t1, t2._list[t3].userCompany, invoice), context, null, true, type$.legacy_AlertDialog); }, changeTaskStatusDialog(context, task) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = $.$get$memoizedSortedActiveTaskStatusIds(), t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].taskStatusState; t4 = J.where$1$ax(t2.call$2(t4.list, t4.map), new A.changeTaskStatusDialog_closure(task)); A.showDialog(null, true, new A.changeTaskStatusDialog_closure0(t1, A.List_List$of(t4, true, t4.$ti._eval$1("Iterable.E")), state, store, task), context, null, true, type$.legacy_AlertDialog); }, addToInvoiceDialog(clientId, context, items) { var invoices, _null = null, _s17_ = "no_invoices_found", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].invoiceState.map; t2 = t3._map$_values; if (t2 == null) { t2 = t3._map$_map; t2 = t3._map$_values = t2.get$values(t2); } invoices = new A.WhereIterable(t2, new A.addToInvoiceDialog_closure(clientId), A._instanceType(t2)._eval$1("WhereIterable")); if (!invoices.get$iterator(invoices).moveNext$0()) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s17_); A.showMessageDialog(context, t1 == null ? J.$index$asx(t2.$index(0, "en"), _s17_) : t1, _null, _null); return; } A.showDialog(_null, true, new A.addToInvoiceDialog_closure0(t1, invoices, items), context, _null, true, type$.legacy_AlertDialog); }, showRefreshDataDialog_closure: function showRefreshDataDialog_closure() { }, showErrorDialog_closure: function showErrorDialog_closure(t0, t1) { this.message = t0; this.clearErrorOnDismiss = t1; }, showMessageDialog_closure: function showMessageDialog_closure(t0, t1, t2) { this.message = t0; this.secondaryActions = t1; this.onDismiss = t2; }, confirmCallback_closure: function confirmCallback_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.typeToConfirm = t0; _.callback = t1; _.localization = t2; _.title = t3; _.askForReason = t4; _.content = t5; }, confirmCallback_closure__onPressed: function confirmCallback_closure__onPressed(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.typeToConfirm = t1; _.context = t2; _.callback = t3; _.localization = t4; }, confirmCallback__closure: function confirmCallback__closure(t0) { this._box_0 = t0; }, confirmCallback__closure0: function confirmCallback__closure0(t0) { this._onPressed = t0; }, confirmCallback__closure1: function confirmCallback__closure1(t0) { this._box_0 = t0; }, confirmCallback__closure2: function confirmCallback__closure2(t0) { this.context = t0; }, confirmCallback__closure3: function confirmCallback__closure3(t0) { this._onPressed = t0; }, passwordCallback_closure: function passwordCallback_closure(t0, t1) { this.store = t0; this.context = t1; }, passwordCallback_closure0: function passwordCallback_closure0(t0) { this.callback = t0; }, passwordCallback_closure1: function passwordCallback_closure1(t0, t1, t2, t3, t4) { var _ = this; _.alwaysRequire = t0; _.state = t1; _.user = t2; _.callback = t3; _.context = t4; }, passwordCallback__closure0: function passwordCallback__closure0(t0, t1) { this.callback = t0; this.idToken = t1; }, passwordCallback_closure2: function passwordCallback_closure2(t0, t1, t2, t3, t4) { var _ = this; _.alwaysRequire = t0; _.state = t1; _.user = t2; _.callback = t3; _.context = t4; }, passwordCallback__closure: function passwordCallback__closure(t0, t1) { this.callback = t0; this.idToken = t1; }, passwordCallback_closure3: function passwordCallback_closure3(t0) { this.context = t0; }, PasswordConfirmation: function PasswordConfirmation(t0, t1, t2) { this.callback = t0; this.idToken = t1; this.key = t2; }, _PasswordConfirmationState: function _PasswordConfirmationState(t0) { var _ = this; _._dialogs$_password = null; _._isPasswordObscured = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PasswordConfirmationState_build_closure0: function _PasswordConfirmationState_build_closure0(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure: function _PasswordConfirmationState_build_closure(t0) { this.$this = t0; }, _PasswordConfirmationState_build__closure: function _PasswordConfirmationState_build__closure(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure1: function _PasswordConfirmationState_build_closure1(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure2: function _PasswordConfirmationState_build_closure2(t0) { this.context = t0; }, _PasswordConfirmationState_build_closure3: function _PasswordConfirmationState_build_closure3(t0) { this.$this = t0; }, fieldCallback_closure: function fieldCallback_closure(t0, t1, t2, t3, t4) { var _ = this; _.callback = t0; _.field = t1; _.title = t2; _.maxLength = t3; _.secondaryActions = t4; }, FieldConfirmation: function FieldConfirmation(t0, t1, t2, t3, t4, t5) { var _ = this; _.callback = t0; _.title = t1; _.field = t2; _.maxLength = t3; _.secondaryActions = t4; _.key = t5; }, _FieldConfirmationState: function _FieldConfirmationState(t0) { var _ = this; _._widget = _._dialogs$_field = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FieldConfirmationState_build_closure0: function _FieldConfirmationState_build_closure0(t0) { this.$this = t0; }, _FieldConfirmationState_build_closure: function _FieldConfirmationState_build_closure() { }, _FieldConfirmationState_build_closure1: function _FieldConfirmationState_build_closure1(t0) { this.$this = t0; }, _FieldConfirmationState_build_closure2: function _FieldConfirmationState_build_closure2(t0) { this.context = t0; }, _FieldConfirmationState_build_closure3: function _FieldConfirmationState_build_closure3(t0) { this.$this = t0; }, cloneToDialog_closure: function cloneToDialog_closure(t0, t1, t2) { this.localization = t0; this.userCompany = t1; this.invoice = t2; }, cloneToDialog__closure: function cloneToDialog__closure(t0, t1) { this.context = t0; this.invoice = t1; }, cloneToDialog__closure0: function cloneToDialog__closure0(t0, t1) { this.context = t0; this.invoice = t1; }, cloneToDialog__closure1: function cloneToDialog__closure1(t0, t1) { this.context = t0; this.invoice = t1; }, cloneToDialog__closure2: function cloneToDialog__closure2(t0, t1) { this.context = t0; this.invoice = t1; }, cloneToDialog__closure3: function cloneToDialog__closure3(t0, t1) { this.context = t0; this.invoice = t1; }, cloneToDialog__closure4: function cloneToDialog__closure4(t0) { this.context = t0; }, changeTaskStatusDialog_closure: function changeTaskStatusDialog_closure(t0) { this.task = t0; }, changeTaskStatusDialog_closure0: function changeTaskStatusDialog_closure0(t0, t1, t2, t3, t4) { var _ = this; _.localization = t0; _.statusIds = t1; _.state = t2; _.store = t3; _.task = t4; }, changeTaskStatusDialog__closure: function changeTaskStatusDialog__closure(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.store = t1; _.task = t2; _.context = t3; _.localization = t4; }, changeTaskStatusDialog___closure: function changeTaskStatusDialog___closure(t0, t1, t2, t3, t4) { var _ = this; _.store = t0; _.task = t1; _.statusId = t2; _.context = t3; _.localization = t4; }, changeTaskStatusDialog____closure: function changeTaskStatusDialog____closure(t0) { this.statusId = t0; }, changeTaskStatusDialog__closure0: function changeTaskStatusDialog__closure0(t0) { this.context = t0; }, addToInvoiceDialog_closure: function addToInvoiceDialog_closure(t0) { this.clientId = t0; }, addToInvoiceDialog_closure0: function addToInvoiceDialog_closure0(t0, t1, t2) { this.localization = t0; this.invoices = t1; this.items = t2; }, addToInvoiceDialog__closure: function addToInvoiceDialog__closure(t0, t1) { this.context = t0; this.items = t1; }, addToInvoiceDialog___closure: function addToInvoiceDialog___closure(t0, t1, t2) { this.context = t0; this.invoice = t1; this.items = t2; }, addToInvoiceDialog____closure: function addToInvoiceDialog____closure(t0) { this.items = t0; }, EnumUtils_parse(enumItem) { if (enumItem == null) return null; return J.toString$0$(enumItem).split(".")[1]; }, EnumUtils_fromString(enumValues, value, $T) { if (value == null || false) return null; return B.JSArray_methods.singleWhere$2$orElse(enumValues, new A.EnumUtils_fromString_closure(value, $T), new A.EnumUtils_fromString_closure0()); }, EnumUtils_fromString_closure: function EnumUtils_fromString_closure(t0, t1) { this.value = t0; this.T = t1; }, EnumUtils_fromString_closure0: function EnumUtils_fromString_closure0() { }, round(value, precision) { var fac, result; if (isNaN(value)) return 0; fac = Math.pow(10, precision); result = value * fac; return B.JSNumber_methods.round$0(B.JSString_methods.contains$1(A.S(result), "999999") ? result + 0.000001 : result) / fac; }, parseInt(value, zeroIsNull) { var intValue, t1 = A.RegExp_RegExp("[^0-9\\.\\-]", true, false, false, false); value.toString; intValue = A.Primitives_parseInt(A.stringReplaceAllUnchecked(value, t1, ""), null); if (intValue == null) intValue = 0; return intValue === 0 && zeroIsNull ? null : intValue; }, parseDouble(value, zeroIsNull) { var state, t2, doubleValue, t1 = $.$get$navigatorKey(); t1.toString; state = A._lateReadCheck(A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState).__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; if (t1._list[t2].userCompany.company.useCommaAsDecimalPlace && J.contains$1$asx(value, ",")) { value = A.stringReplaceAllUnchecked(value, ".", ""); value = A.stringReplaceAllUnchecked(value, ",", "."); } t1 = A.RegExp_RegExp("[^0-9\\.\\-]", true, false, false, false); value.toString; doubleValue = A.Primitives_parseDouble(A.stringReplaceAllUnchecked(value, t1, "")); if (doubleValue == null) doubleValue = 0; return doubleValue === 0 && zeroIsNull ? null : doubleValue; }, formatSize(size) { return size > 1000000 ? "" + B.JSNumber_methods.toInt$0(A.round(size / 1000000, 1)) + " MB" : "" + B.JSNumber_methods.toInt$0(A.round(size / 1000, 0)) + " KB"; }, formatNumber(value, context, clientId, currencyId, formatNumberType, roundToPrecision, showCurrencyCode, zeroIsNull) { var state, t1, t2, t3, company, client, t4, t5, group, countryId, currency, t6, companyCurrency, country, companyCountry, thousandSeparator, decimalSeparator, swapCurrencySymbol, thousandSeparator0, decimalSeparator0, formatted, formatter, prefix, _null = null, _s6_ = "custom", _s11_ = "#,##0.#####"; if ((zeroIsNull || formatNumberType === B.FormatNumberType_4 || formatNumberType === B.FormatNumberType_5) && value === 0) return _null; else if (value == null) return ""; if (formatNumberType === B.FormatNumberType_6) return A.formatDuration(A.Duration$(0, 0, 0, 0, 0, B.JSNumber_methods.toInt$0(value)), true); state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2]; company = t3.userCompany.company; client = t3.clientState.map._map$_map.$index(0, clientId); t3 = t1[t2].groupState.map; t4 = client == null; t5 = t4 ? _null : client.groupId; group = t3._map$_map.$index(0, t5); t3 = t4 ? _null : client.countryId; countryId = (t3 == null ? "" : t3).length !== 0 && client.get$hasNameSet() ? client.countryId : company.settings.countryId; if (currencyId === "-1") { currencyId = company.settings.currencyId; if (currencyId == null) currencyId = "1"; } else if (!(currencyId != null && currencyId.length !== 0)) if (!t4 && client.get$hasCurrency()) currencyId = client.settings.currencyId; else if (group != null && group.get$hasCurrency()) currencyId = group.settings.currencyId; else { currencyId = company.settings.currencyId; if (currencyId == null) currencyId = "1"; } t3 = state.staticState; t4 = t3.currencyMap._map$_map; currency = t4.$index(0, currencyId); t5 = company.settings; t6 = t5.currencyId; companyCurrency = t4.$index(0, t6 == null ? "1" : t6); t3 = t3.countryMap._map$_map; country = t3.$index(0, countryId); if (country == null) country = A.CountryEntity_CountryEntity(); companyCountry = t3.$index(0, t5.countryId); if (companyCountry == null) companyCountry = A.CountryEntity_CountryEntity(); if (currency == null) return ""; if (formatNumberType === B.FormatNumberType_0 && roundToPrecision) value = A.round(value, currency.precision); thousandSeparator = currency.thousandSeparator; decimalSeparator = currency.decimalSeparator; swapCurrencySymbol = companyCurrency.swapCurrencySymbol; if (currency.id === "3") { swapCurrencySymbol = companyCountry.swapCurrencySymbol; thousandSeparator0 = country.thousandSeparator; if (thousandSeparator0.length !== 0) thousandSeparator = thousandSeparator0; decimalSeparator0 = country.decimalSeparator; if (decimalSeparator0.length !== 0) decimalSeparator = decimalSeparator0; } if (B.JSArray_methods.contains$1(A._setArrayType([B.FormatNumberType_4, B.FormatNumberType_5], type$.JSArray_legacy_FormatNumberType), formatNumberType)) { decimalSeparator = t1[t2].userCompany.company.useCommaAsDecimalPlace ? "," : "."; thousandSeparator = ""; } $.$get$numberFormatSymbols().$indexSet(0, _s6_, A.NumberSymbols$("", "", decimalSeparator, "", "", thousandSeparator, "", "-", _s6_, "", "", "", "", "+", "", "0")); if (formatNumberType === B.FormatNumberType_2) return A.NumberFormat_NumberFormat("#,##0", _s6_).format$1(0, value); else if (formatNumberType === B.FormatNumberType_3) return A.NumberFormat_NumberFormat(_s11_, _s6_).format$1(0, value); else if (formatNumberType === B.FormatNumberType_5) return A.NumberFormat_NumberFormat("#.#####", _s6_).format$1(0, value); else if (formatNumberType === B.FormatNumberType_4) { t1 = currency.precision; if (t1 === 0) return A.NumberFormat_NumberFormat("#.#####", _s6_).format$1(0, value); else if (t1 === 1) return A.NumberFormat_NumberFormat("#.0####", _s6_).format$1(0, value); else if (t1 === 2) return A.NumberFormat_NumberFormat("#.00###", _s6_).format$1(0, value); else if (t1 === 3) return A.NumberFormat_NumberFormat("#.000##", _s6_).format$1(0, value); formatted = _null; } else { if (formatNumberType === B.FormatNumberType_1) formatter = A.NumberFormat_NumberFormat(_s11_, _s6_); else { t1 = currency.precision; if (t1 === 0) formatter = A.NumberFormat_NumberFormat(_s11_, _s6_); else if (t1 === 1) formatter = A.NumberFormat_NumberFormat("#,##0.0####", _s6_); else if (t1 === 2) formatter = A.NumberFormat_NumberFormat("#,##0.00###", _s6_); else formatter = t1 === 3 ? A.NumberFormat_NumberFormat("#,##0.000##", _s6_) : _null; } formatted = formatter.format$1(0, value < 0 ? value * -1 : value); if (formatted === "-0.00") formatted = "0.00"; else if (formatted === "-0,00") formatted = "0,00"; } prefix = value < 0 ? "-" : ""; if (formatNumberType === B.FormatNumberType_1) return prefix + A.S(formatted) + "%"; else { t1 = showCurrencyCode == null ? t5.showCurrencyCode : showCurrencyCode; if (t1 === true || currency.symbol.length === 0) return prefix + A.S(formatted) + " " + currency.code; else { t1 = A.S(formatted); t2 = currency.symbol; if (swapCurrencySymbol) return prefix + t1 + " " + B.JSString_methods.trim$0(t2); else return prefix + t2 + t1; } } }, formatURL(url) { if (B.JSString_methods.startsWith$1(url, "http")) return url; return "http://" + url; }, formatAddress(appState, delimiter, isShipping, object) { var address2, city, state, postalCode, countryId, str, t1, t2, address1 = isShipping ? object.get$shippingAddress1() : object.get$address1(); if (address1 == null) address1 = ""; address2 = isShipping ? object.get$shippingAddress2() : object.get$address2(); if (address2 == null) address2 = ""; city = isShipping ? object.get$shippingCity() : object.get$city(object); if (city == null) city = ""; state = isShipping ? object.get$shippingState() : object.get$state(object); if (state == null) state = ""; postalCode = isShipping ? object.get$shippingPostalCode() : object.get$postalCode(object); if (postalCode == null) postalCode = ""; countryId = isShipping ? object.get$shippingCountryId() : object.get$countryId(); if (countryId == null) countryId = ""; str = address1.length !== 0 ? address1 + delimiter : ""; if (address2.length !== 0) str += address2 + delimiter; if (city.length !== 0) str += city + ", "; if (state.length !== 0) str += state + " "; if (postalCode.length !== 0) str += postalCode; if (countryId.length !== 0) { t1 = appState.userCompanyStates; t2 = appState.uiState.selectedCompanyIndex; t2 = countryId !== t1._list[t2].userCompany.company.settings.countryId; t1 = t2; } else t1 = false; if (t1) { if (str.length !== 0) str += delimiter; t1 = appState.staticState.countryMap._map$_map.$index(0, countryId); t1 = t1 == null ? null : t1.name; str += t1 == null ? "" : t1; } return str; }, convertDateTimeToSqlDate(date) { return B.JSArray_methods.get$first((date == null ? new A.DateTime(Date.now(), false) : date).toIso8601String$0().split("T")); }, convertSqlDateToDateTime(date) { var parts = (date == null ? A.convertDateTimeToSqlDate(null) : date).split("-"), t1 = A.parseInt(parts[0], false), t2 = A.parseInt(parts[1], false), t3 = A.parseInt(parts[2], false); t1 = A.Primitives_valueFromDecomposedDate(t1, t2, t3, 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, true); }, convertTimestampToDate(timestamp) { return A.DateTime$fromMillisecondsSinceEpoch((timestamp == null ? 0 : timestamp) * 1000, true); }, formatDuration(duration, showSeconds) { var parts, time = J.toString$0$(duration).split(".")[0]; if (showSeconds) return time; else { parts = time.split(":"); return A.S(parts[0]) + ":" + A.S(parts[1]); } }, parseDate(value, context) { var state, t1, t2, company, dateFormats, dateFormatId; if (value.length === 0) return ""; state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = t1._list[t2].userCompany.company; dateFormats = state.staticState.dateFormatMap; dateFormatId = company.settings.dateFormatId; dateFormatId = (dateFormatId == null ? "" : dateFormatId).length !== 0 ? dateFormatId : "5"; return A.convertDateTimeToSqlDate(A.DateFormat$(dateFormats._map$_map.$index(0, dateFormatId).format, A.localeSelector(state, false))._date_format$_parse$3$strict$utc(value, false, false)); }, parseTime(value, context) { var state, t1, t2, company, enableMilitaryTime, format; if (value.length === 0) return null; state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = t1._list[t2].userCompany.company; t2 = B.JSString_methods.allMatches$1(":", value); t2 = t2.get$length(t2); enableMilitaryTime = company.settings.enableMilitaryTime; if (t2 >= 2) format = enableMilitaryTime ? "H:mm:ss" : "h:mm:ss a"; else format = enableMilitaryTime ? "H:mm" : "h:mm a"; return A.DateFormat$("y-M-D " + format, A.localeSelector(state, false))._date_format$_parse$3$strict$utc("2000-01-01 " + value, false, false); }, formatDate(value, context, showDate, showSeconds, showTime) { var state, t1, t2, company, format, dateFormats, dateFormatId, formatter, parsed, _s9_ = "h:mm:ss a"; if (value == null || value.length === 0) return ""; state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = t1._list[t2].userCompany.company; if (showTime) { if (!showDate) if (showSeconds) format = company.settings.enableMilitaryTime ? "H:mm:ss" : _s9_; else format = company.settings.enableMilitaryTime ? "H:mm" : "h:mm a"; else { dateFormats = state.staticState.dateFormatMap; t1 = company.settings; dateFormatId = t1.dateFormatId; dateFormatId = (dateFormatId == null ? "" : dateFormatId).length !== 0 ? dateFormatId : "5"; format = dateFormats._map$_map.$index(0, dateFormatId).format; if (showSeconds) t1 = t1.enableMilitaryTime ? "H:mm:ss" : _s9_; else t1 = t1.enableMilitaryTime ? "H:mm" : "h:mm a"; format += " " + t1; } formatter = A.DateFormat$(format, A.localeSelector(state, false)); parsed = A.DateTime_tryParse(J.endsWith$1$s(value, "Z") ? value : value + "Z"); return parsed == null ? "" : formatter.format$1(0, parsed.toLocal$0()); } else { dateFormats = state.staticState.dateFormatMap; t1 = company.settings.dateFormatId; formatter = A.DateFormat$(dateFormats._map$_map.$index(0, t1).format, A.localeSelector(state, false)); parsed = A.DateTime_tryParse(value); return parsed == null ? "" : formatter.format$1(0, parsed); } }, formatApiUrl(url) { url = A.cleanApiUrl(url); if (url.length === 0) return ""; return url + "/api/v1"; }, cleanApiUrl(url) { return B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(B.JSString_methods.trim$0(url == null ? "" : url), A.RegExp_RegExp("/api/v1", true, false, false, false), ""), A.RegExp_RegExp("/$", true, false, false, false), ""); }, formatCustomValue(context, field, value) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; switch (t2._list[t3].userCompany.company.getCustomFieldType$1(field)) { case "switch": return value === "yes" ? t1.get$yes() : t1.get$no(); case "date": return A.formatDate(value, context, true, true, false); default: return value; } }, FormatNumberType: function FormatNumberType(t0, t1) { this.index = t0; this._core$_name = t1; }, LocaleCodeAware: function LocaleCodeAware() { }, LocalizationsProvider: function LocalizationsProvider() { }, AppLocalization_createLocale(locale) { var parts, t1; if (!B.JSArray_methods.contains$1(B.List_KAC, locale)) return new A.Locale("en", null); parts = locale.split("_"); t1 = parts[0]; return new A.Locale(t1, parts.length > 1 ? parts[1] : null); }, AppLocalization: function AppLocalization(t0) { this.localeCode = t0; }, AppLocalizationsDelegate: function AppLocalizationsDelegate() { }, _AppLocalization_LocaleCodeAware_LocalizationsProvider: function _AppLocalization_LocaleCodeAware_LocalizationsProvider() { }, deserializeMarkdownToDocument(markdown) { var t1, _i, t2, markdownNodes = A.BlockParser$(B.C_LineSplitter.convert$1(markdown), A.Document$0()).parseLines$0(), nodeVisitor = new A._MarkdownToDocument(A._setArrayType([], type$.JSArray_legacy_DocumentNode), A._setArrayType([], type$.JSArray_legacy_ListItemType)); for (t1 = markdownNodes.length, _i = 0; _i < markdownNodes.length; markdownNodes.length === t1 || (0, A.throwConcurrentModificationError)(markdownNodes), ++_i) J.accept$1$x(markdownNodes[_i], nodeVisitor); t1 = nodeVisitor._markdown$_content; t2 = new A.MutableDocument(t1, $.$get$ChangeNotifier__emptyListeners()); t2.MutableDocument$1$nodes(t1); return t2; }, serializeDocumentToMarkdown(doc) { var t1, t2, i, node, t3, _length, _list, index, indent, symbol, blockType, buffer = new A.StringBuffer(""); for (t1 = doc._nodes, t2 = type$.JSArray_legacy_String, i = 0; i < t1.length; ++i) { node = t1[i]; if (node instanceof A.ImageNode) { t3 = buffer._contents += "![" + A.S(node._altText) + "](" + A.S(node._imageUrl) + ")\n"; buffer._contents = t3 + "\n"; } else if (node instanceof A.HorizontalRuleNode) { t3 = buffer._contents += "---\n"; buffer._contents = t3 + "\n"; } else if (node instanceof A.ListItemNode) { _length = node._list_items$_indent + 1; if (_length < 0) A.throwExpression(A.ArgumentError$("Length must be a non-negative integer: " + _length, null)); _list = A._setArrayType(new Array(_length), t2); for (index = 0; index < _length; ++index) _list[index] = " "; indent = B.JSArray_methods.join$1(_list, ""); symbol = node.type === B.ListItemType_1 ? "*" : "1."; t3 = buffer._contents += indent + symbol + " " + A._extension_0_toMarkdown(node._text$_text) + "\n"; if (!((i < t1.length - 1 ? t1[i + 1] : null) instanceof A.ListItemNode)) buffer._contents = t3 + "\n"; } else if (node instanceof A.ParagraphNode) { blockType = node._metadata.$index(0, "blockType"); t3 = J.getInterceptor$(blockType); if (t3.$eq(blockType, B.NamedAttribution_header1)) { t3 = buffer._contents += "# " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_header2)) { t3 = buffer._contents += "## " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_header3)) { t3 = buffer._contents += "### " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_header4)) { t3 = buffer._contents += "#### " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_header5)) { t3 = buffer._contents += "##### " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_header6)) { t3 = buffer._contents += "###### " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_blockquote)) { t3 = buffer._contents += "> " + A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } else if (t3.$eq(blockType, B.NamedAttribution_code)) { t3 = buffer._contents += "```\n"; t3 += A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3; t3 += "```\n"; buffer._contents = t3; buffer._contents = t3 + "\n"; } else { t3 = buffer._contents += A._extension_0_toMarkdown(node._text$_text) + "\n"; buffer._contents = t3 + "\n"; } } } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _extension_0__sortAndSerializeAttributions(attributions, $event) { var t1, t2, buffer = new A.StringBuffer(""); for (t1 = J.get$iterator$ax($event === B.AttributionVisitEvent_0 ? B.List_ot1 : new A.ReversedListIterable(B.List_ot1, type$.ReversedListIterable_legacy_NamedAttribution)); t1.moveNext$0();) { t2 = t1.get$current(t1); if (attributions.contains$1(0, t2)) buffer._contents += A._extension_0__encodeMarkdownStyle(t2); } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _extension_0__encodeMarkdownStyle(attribution) { var t1 = J.getInterceptor$(attribution); if (t1.$eq(attribution, B.NamedAttribution_code)) return "`"; else if (t1.$eq(attribution, B.NamedAttribution_bold)) return "**"; else if (t1.$eq(attribution, B.NamedAttribution_italics)) return "*"; else if (t1.$eq(attribution, B.NamedAttribution_strikethrough)) return "~"; else return ""; }, _extension_0__encodeLinkMarker(attributions, $event) { var linkAttribution, linkAttributions = new A.WhereIterable(attributions, new A._extension_0__encodeLinkMarker_closure(), A._instanceType(attributions)._eval$1("WhereIterable")); if (!linkAttributions.get$isEmpty(linkAttributions)) { linkAttribution = type$.legacy_LinkAttribution._as(linkAttributions.get$first(linkAttributions)); if ($event === B.AttributionVisitEvent_0) return "["; else return "](" + linkAttribution.url.toString$0(0) + ")"; } return ""; }, _extension_0_toMarkdown(_this) { var t1 = {}, buffer = new A.StringBuffer(""); t1.spanStart = 0; _this.visitAttributions$1(new A._extension_0_toMarkdown_closure(t1, buffer)); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _MarkdownToDocument: function _MarkdownToDocument(t0, t1) { this._markdown$_content = t0; this._listItemTypeStack = t1; }, _InlineMarkdownToDocument: function _InlineMarkdownToDocument(t0) { this._imageAltText = this._markdown$_imageUrl = null; this._textStack = t0; }, _extension_0__encodeLinkMarker_closure: function _extension_0__encodeLinkMarker_closure() { }, _extension_0_toMarkdown_closure: function _extension_0_toMarkdown_closure(t0, t1) { this._box_0 = t0; this.buffer = t1; }, GoogleOAuth_signIn(callback, isSilent) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, account; var $async$GoogleOAuth_signIn = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = isSilent ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait($.$get$_googleSignIn().signInSilently$0(), $async$GoogleOAuth_signIn); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$result = null; case 4: // join account = $async$result; $async$goto = account == null ? 7 : 8; break; case 7: // then $async$goto = 9; return A._asyncAwait($.$get$_googleSignIn().signIn$0(0), $async$GoogleOAuth_signIn); case 9: // returning from await. account = $async$result; case 8: // join if (account != null) { account.get$authentication().then$1$1(0, new A.GoogleOAuth_signIn_closure(callback), type$.Null); $async$returnValue = true; // goto return $async$goto = 1; break; } else { A.print("## ERROR: sign in failed"); $async$returnValue = false; // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$GoogleOAuth_signIn, $async$completer); }, GoogleOAuth_signUp(callback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, account; var $async$GoogleOAuth_signUp = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($.$get$_googleSignIn().signIn$0(0), $async$GoogleOAuth_signUp); case 3: // returning from await. account = $async$result; if (account != null) { account.get$authentication().then$1$1(0, new A.GoogleOAuth_signUp_closure(callback), type$.Null); $async$returnValue = true; // goto return $async$goto = 1; break; } else { A.print("## ERROR: sign up failed"); $async$returnValue = false; // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$GoogleOAuth_signUp, $async$completer); }, GoogleOAuth_signOut() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_GoogleSignInAccount), $async$returnValue, t2, t1; var $async$GoogleOAuth_signOut = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$_googleSignIn(); t1.toString; t2 = $.$get$GoogleSignInPlatform__instance(); $async$goto = 3; return A._asyncAwait(t1._addMethodCall$1(t2.get$signOut(t2)), $async$GoogleOAuth_signOut); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$GoogleOAuth_signOut, $async$completer); }, GoogleOAuth_disconnect() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_GoogleSignInAccount), $async$returnValue, t2, t1; var $async$GoogleOAuth_disconnect = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$_googleSignIn(); t1.toString; t2 = $.$get$GoogleSignInPlatform__instance(); $async$goto = 3; return A._asyncAwait(t1._addMethodCall$1(t2.get$disconnect(t2)), $async$GoogleOAuth_disconnect); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$GoogleOAuth_disconnect, $async$completer); }, GoogleOAuth_signIn_closure: function GoogleOAuth_signIn_closure(t0) { this.callback = t0; }, GoogleOAuth_signUp_closure: function GoogleOAuth_signUp_closure(t0) { this.callback = t0; }, toSnakeCase(value) { var t1; if ((value == null ? "" : value).length === 0) return ""; t1 = A.RegExp_RegExp("[A-Z]", true, false, false, false); value.toString; return A.stringReplaceAllFuncUnchecked(value, t1, new A.toSnakeCase_closure(), null); }, toCamelCase(subject) { var _firstWord, t1, t2, _splittedString = A._setArrayType(subject.split("_"), type$.JSArray_String); if (_splittedString.length === 0) return ""; _firstWord = _splittedString[0].toLowerCase(); t1 = B.JSArray_methods.sublist$1(_splittedString, 1); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>"); return _firstWord + B.JSArray_methods.join$1(A.List_List$of(new A.MappedListIterable(t1, new A.toCamelCase_closure(), t2), true, t2._eval$1("ListIterable.E")), ""); }, toSpaceCase(value) { if (value.length === 0) return ""; return A.stringReplaceAllFuncUnchecked(value, A.RegExp_RegExp("[A-Z]", true, false, false, false), new A.toSpaceCase_closure(), null); }, toTitleCase(text) { if ((text == null ? "" : text).length === 0) return ""; if (text.length <= 1) return text.toUpperCase(); return new A.MappedListIterable(A._setArrayType(A.toSpaceCase(text).split(" "), type$.JSArray_String), new A.toTitleCase_closure(), type$.MappedListIterable_of_String_and_legacy_String).join$1(0, " "); }, isValidDate(input) { var exception; try { A.DateTime_parse(input); return true; } catch (exception) { return false; } }, matchesStrings(haystacks, needle) { var t1 = {}; if (needle == null || needle.length === 0) return true; t1.isMatch = false; B.JSArray_methods.forEach$1(haystacks, new A.matchesStrings_closure(t1, needle)); return t1.isMatch; }, matchesString(haystack, needle) { var t2, t1 = {}; if (needle == null || needle.length === 0) return true; t2 = $.$get$navigatorKey(); t2.toString; if (A._lateReadCheck(A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), type$.legacy_AppState).__Store__state, "_state").prefState.enableFlexibleSearch) { t1.regExp = ""; new A.Runes(needle.toLowerCase()).forEach$1(0, new A.matchesString_closure(t1)); t1 = A.RegExp_RegExp(t1.regExp, true, false, false, false); t2 = haystack.toLowerCase(); return t1._nativeRegExp.test(t2); } else return B.JSString_methods.contains$1(haystack.toLowerCase(), needle.toLowerCase()); }, matchesStringsValue(haystacks, needle) { var t1 = {}; if (needle == null || needle.length === 0) return null; t1.match = null; B.JSArray_methods.forEach$1(haystacks, new A.matchesStringsValue_closure(t1, needle)); return t1.match; }, matchesStringValue(haystack, needle) { if (needle.length === 0) return null; if (B.JSString_methods.contains$1(haystack.toLowerCase(), needle.toLowerCase())) return haystack; else return null; }, trimUrl(url) { url = B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(url, "http://", ""), "https://", ""); return B.JSString_methods.startsWith$1(url, "www.") ? B.JSString_methods.replaceFirst$2(url, "www.", "") : url; }, toSnakeCase_closure: function toSnakeCase_closure() { }, toCamelCase_closure: function toCamelCase_closure() { }, toSpaceCase_closure: function toSpaceCase_closure() { }, toTitleCase_closure: function toTitleCase_closure() { }, matchesStrings_closure: function matchesStrings_closure(t0, t1) { this._box_0 = t0; this.needle = t1; }, matchesString_closure: function matchesString_closure(t0) { this._box_0 = t0; }, matchesStringsValue_closure: function matchesStringsValue_closure(t0, t1) { this._box_0 = t0; this.needle = t1; }, ExampleEditor: function ExampleEditor(t0, t1, t2) { this.value = t0; this.onChanged = t1; this.key = t2; }, _ExampleEditorState: function _ExampleEditorState(t0, t1, t2, t3) { var _ = this; _._docLayoutKey = t0; _._textFormatBarOverlayEntry = _._super_editor$_scrollController = _._editorFocusNode = _._docOps = _._composer = _._docEditor = _._super_editor$_doc = null; _._textSelectionAnchor = t1; _._imageFormatBarOverlayEntry = null; _._imageSelectionAnchor = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ExampleEditorState_initState_closure: function _ExampleEditorState_initState_closure(t0) { this.$this = t0; }, _ExampleEditorState__showEditorToolbar_closure: function _ExampleEditorState__showEditorToolbar_closure(t0) { this.$this = t0; }, _ExampleEditorState__showEditorToolbar_closure0: function _ExampleEditorState__showEditorToolbar_closure0(t0) { this.$this = t0; }, _ExampleEditorState__showImageToolbar_closure: function _ExampleEditorState__showImageToolbar_closure(t0) { this.$this = t0; }, _ExampleEditorState__showImageToolbar__closure: function _ExampleEditorState__showImageToolbar__closure(t0) { this.$this = t0; }, _ExampleEditorState__showImageToolbar_closure0: function _ExampleEditorState__showImageToolbar_closure0(t0) { this.$this = t0; }, _ExampleEditorState__buildEditor_closure: function _ExampleEditorState__buildEditor_closure(t0) { this.$this = t0; }, _ExampleEditorState__buildEditor_closure0: function _ExampleEditorState__buildEditor_closure0(t0) { this.$this = t0; }, _ExampleEditorState__buildMountedToolbar_closure: function _ExampleEditorState__buildMountedToolbar_closure(t0) { this.$this = t0; }, EditorToolbar: function EditorToolbar(t0, t1, t2, t3, t4) { var _ = this; _.anchor = t0; _.editor = t1; _.composer = t2; _.closeToolbar = t3; _.key = t4; }, _EditorToolbarState: function _EditorToolbarState(t0) { var _ = this; _._showUrlField = false; _._widget = _._urlController = _._urlFocusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EditorToolbarState__getSelectedLinkSpans_closure: function _EditorToolbarState__getSelectedLinkSpans_closure() { }, _EditorToolbarState__onLinkPressed_closure: function _EditorToolbarState__onLinkPressed_closure() { }, _EditorToolbarState__onLinkPressed_closure0: function _EditorToolbarState__onLinkPressed_closure0(t0) { this.$this = t0; }, _EditorToolbarState__applyLink_closure: function _EditorToolbarState__applyLink_closure(t0) { this.$this = t0; }, _EditorToolbarState_build_closure: function _EditorToolbarState_build_closure(t0) { this.$this = t0; }, _EditorToolbarState__buildToolbar_closure: function _EditorToolbarState__buildToolbar_closure() { }, _EditorToolbarState__buildToolbar_closure0: function _EditorToolbarState__buildToolbar_closure0(t0) { this.$this = t0; }, _EditorToolbarState__buildUrlField_closure: function _EditorToolbarState__buildUrlField_closure(t0) { this.$this = t0; }, _EditorToolbarState__buildUrlField_closure0: function _EditorToolbarState__buildUrlField_closure0(t0) { this.$this = t0; }, _EditorToolbarState__buildUrlField__closure: function _EditorToolbarState__buildUrlField__closure(t0) { this.$this = t0; }, _TextType: function _TextType(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageFormatToolbar: function ImageFormatToolbar(t0, t1, t2, t3) { var _ = this; _.anchor = t0; _.composer = t1; _.setWidth = t2; _.key = t3; }, _ImageFormatToolbarState: function _ImageFormatToolbarState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ImageFormatToolbarState_build_closure: function _ImageFormatToolbarState_build_closure(t0) { this.$this = t0; }, _PositionedToolbar: function _PositionedToolbar(t0, t1, t2, t3) { var _ = this; _.anchor = t0; _.composer = t1; _.child = t2; _.key = t3; }, _PositionedToolbar_build_closure: function _PositionedToolbar_build_closure(t0) { this.$this = t0; }, loadEmailTemplate(body, context, invoice, onComplete, subject, template) { var state, credentials, t2, t3, t4, t1 = {}; t1.subject = subject; t1.body = body; state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); t2 = invoice == null; t3 = t2 ? null : invoice.entityType; t3 = A.S(t3 == null ? "" : t3); t2 = t2 ? null : invoice.id; if (t2 == null) t2 = ""; t4 = type$.legacy_String; new A.WebClient().post$3$data(credentials.url + "/templates", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", t3, "entity_id", t2, "template", "email_template_" + template, "subject", subject, "body", body], t4, t4))).then$1$1(0, new A.loadEmailTemplate_closure(onComplete), type$.Null).catchError$1(new A.loadEmailTemplate_closure0(t1, context, onComplete)); }, loadEmailTemplate_closure: function loadEmailTemplate_closure(t0) { this.onComplete = t0; }, loadEmailTemplate_closure0: function loadEmailTemplate_closure0(t0, t1, t2) { this._box_0 = t0; this.context = t1; this.onComplete = t2; }, WebUtils_apiUrl() { var url = window.location.href; if (J.contains$1$asx(url, "?")) url = url.split("?")[0]; return A.formatApiUrl(J.contains$1$asx(url, "#") ? url.split("#")[0] : url); }, WebUtils_downloadBinaryFile(filename, data) { var t1 = A.AnchorElement_AnchorElement("data:application/octet-stream;charset=utf-16le;base64," + B.C_Base64Codec.get$encoder().convert$1(data)); t1.setAttribute("download", filename); t1.click(); }, WebUtils_registerWebView(html) { $.$get$platformViewRegistry().toString; $.$get$platformViewManager().registerFactory$3$isVisible(html, new A.WebUtils_registerWebView_closure(html), true); }, WebUtils_warnChanges(store) { A._EventStreamSubscription$(window, "beforeunload", new A.WebUtils_warnChanges_closure(store), false, type$.legacy_BeforeUnloadEvent); }, WebUtils_microsoftLogout() { var config = new A.Configuration(A.Configuration$(null)), t1 = A.BrowserAuthOptions$(null); t1.redirectUri = A.cleanApiUrl(A.WebUtils_apiUrl()); t1.clientId = "1023b9ce-5b09-4f04-98f8-e1ed85a72332"; config.set$auth(0, new A.BrowserAuthOptions(t1)); A.PublicClientApplication_PublicClientApplication(config).logoutPopup$1(0, new A.EndSessionPopupRequest(A.EndSessionPopupRequest$(null))); }, WebUtils_microsoftLogin(succesCallback, failureCallback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), publicClientApp, t2, value, config, t1; var $async$WebUtils_microsoftLogin = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start config = new A.Configuration(A.Configuration$(null)); t1 = A.BrowserAuthOptions$(null); t1.redirectUri = A.cleanApiUrl(A.WebUtils_apiUrl()); t1.clientId = "1023b9ce-5b09-4f04-98f8-e1ed85a72332"; config.set$auth(0, new A.BrowserAuthOptions(t1)); publicClientApp = A.PublicClientApplication_PublicClientApplication(config); t1 = A.PopupRequest$(null); t2 = A._setArrayType(["user.read"], type$.JSArray_legacy_String); value = A._convertDataTree(t2); t1.scopes = value; publicClientApp.loginPopup$1(0, new A.PopupRequest(t1)).then$1$1(0, new A.WebUtils_microsoftLogin_closure(succesCallback), type$.Null).catchError$1(new A.WebUtils_microsoftLogin_closure0(failureCallback)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$WebUtils_microsoftLogin, $async$completer); }, WebUtils_registerWebView_closure: function WebUtils_registerWebView_closure(t0) { this.html = t0; }, WebUtils_warnChanges_closure: function WebUtils_warnChanges_closure(t0) { this.store = t0; }, WebUtils_microsoftLogin_closure: function WebUtils_microsoftLogin_closure(t0) { this.succesCallback = t0; }, WebUtils_microsoftLogin_closure0: function WebUtils_microsoftLogin_closure0(t0) { this.failureCallback = t0; }, linkify(text, options) { var t1 = {}, t2 = type$.JSArray_LinkifyElement; t1.list = A._setArrayType([new A.TextElement(text)], t2); if (text.length === 0) return A._setArrayType([], t2); B.JSArray_methods.forEach$1(B.List_UrlLinkifier_EmailLinkifier, new A.linkify_closure(t1, options)); return t1.list; }, LinkifyElement: function LinkifyElement() { }, LinkableElement: function LinkableElement() { }, TextElement: function TextElement(t0) { this.text = t0; }, Linkifier: function Linkifier() { }, LinkifyOptions: function LinkifyOptions(t0) { this.humanize = t0; }, linkify_closure: function linkify_closure(t0, t1) { this._box_0 = t0; this.options = t1; }, EmailLinkifier: function EmailLinkifier() { }, EmailLinkifier_parse_closure: function EmailLinkifier_parse_closure(t0, t1, t2) { this.$this = t0; this.list = t1; this.options = t2; }, EmailElement: function EmailElement(t0, t1, t2) { this.emailAddress = t0; this.url = t1; this.text = t2; }, UrlLinkifier: function UrlLinkifier() { }, UrlLinkifier_parse_closure: function UrlLinkifier_parse_closure(t0, t1, t2) { this.$this = t0; this.options = t1; this.list = t2; }, UrlElement: function UrlElement(t0, t1) { this.url = t0; this.text = t1; }, AndroidAuthMessages: function AndroidAuthMessages() { }, IOSAuthMessages: function IOSAuthMessages() { }, LocalAuthentication: function LocalAuthentication() { }, Level: function Level(t0, t1) { this.name = t0; this.value = t1; }, LogRecord: function LogRecord(t0, t1, t2) { this.level = t0; this.message = t1; this.loggerName = t2; }, Logger_Logger($name) { return $.Logger__loggers.putIfAbsent$2(0, $name, new A.Logger_Logger_closure($name)); }, Logger: function Logger(t0, t1, t2) { var _ = this; _.name = t0; _.parent = t1; _._level = null; _._logger$_children = t2; _._logger$_controller = null; }, Logger_Logger_closure: function Logger_Logger_closure(t0) { this.name = t0; }, Element1: function Element1(t0, t1, t2) { this.tag = t0; this.children = t1; this.attributes = t2; }, Element_textContent_closure: function Element_textContent_closure() { }, Text1: function Text1(t0) { this.text = t0; }, UnparsedContent: function UnparsedContent(t0) { this.textContent = t0; }, BlockParser$(lines, $document) { var t1 = type$.JSArray_BlockSyntax, t2 = A._setArrayType([], t1); t1 = A._setArrayType([B.C_EmptyBlockSyntax, B.C_BlockTagBlockHtmlSyntax, new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}|$)", true, false, false, false), A.RegExp_RegExp("", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}|$)", true, false, false, false), A.RegExp_RegExp("", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}|$)", true, false, false, false), A.RegExp_RegExp("", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}<\\?", true, false, false, false), A.RegExp_RegExp("\\?>", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}", true, false, false, false)), new A.LongBlockHtmlSyntax(A.RegExp_RegExp("^ {0,3}", true, false, false, false)), B.C_OtherTagBlockHtmlSyntax, B.C_SetextHeaderSyntax, B.C_HeaderSyntax, B.C_CodeBlockSyntax, B.C_BlockquoteSyntax, B.C_HorizontalRuleSyntax, B.C_UnorderedListSyntax, B.C_OrderedListSyntax, B.C_ParagraphSyntax], t1); B.JSArray_methods.addAll$1(t2, $document._blockSyntaxes); B.JSArray_methods.addAll$1(t2, t1); return new A.BlockParser(lines, $document, t2, t1); }, BlockSyntax_isAtBlockEnd(parser) { if (parser._pos >= parser.lines.length) return true; return B.JSArray_methods.any$1(parser.blockSyntaxes, new A.BlockSyntax_isAtBlockEnd_closure(parser)); }, ListSyntax__expandedTabLength(input) { var t1, $length; input.toString; t1 = new A.CodeUnits(input); t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); $length = 0; for (; t1.moveNext$0();) $length += t1.__internal$_current === 9 ? 4 - B.JSInt_methods.$mod($length, 4) : 1; return $length; }, BlockParser: function BlockParser(t0, t1, t2, t3) { var _ = this; _.lines = t0; _.document = t1; _.blockSyntaxes = t2; _._pos = 0; _.encounteredBlankLine = false; _.standardBlockSyntaxes = t3; }, BlockSyntax: function BlockSyntax() { }, BlockSyntax_isAtBlockEnd_closure: function BlockSyntax_isAtBlockEnd_closure(t0) { this.parser = t0; }, EmptyBlockSyntax: function EmptyBlockSyntax() { }, SetextHeaderSyntax: function SetextHeaderSyntax() { }, HeaderSyntax: function HeaderSyntax() { }, BlockquoteSyntax: function BlockquoteSyntax() { }, BlockquoteSyntax_parseChildLines_closure: function BlockquoteSyntax_parseChildLines_closure(t0) { this.parser = t0; }, CodeBlockSyntax: function CodeBlockSyntax() { }, FencedCodeBlockSyntax: function FencedCodeBlockSyntax() { }, HorizontalRuleSyntax: function HorizontalRuleSyntax() { }, BlockHtmlSyntax: function BlockHtmlSyntax() { }, BlockTagBlockHtmlSyntax: function BlockTagBlockHtmlSyntax() { }, OtherTagBlockHtmlSyntax: function OtherTagBlockHtmlSyntax() { }, LongBlockHtmlSyntax: function LongBlockHtmlSyntax(t0, t1) { this.pattern = t0; this._endPattern = t1; }, ListItem: function ListItem(t0) { this.lines = t0; }, ListSyntax: function ListSyntax() { }, ListSyntax_parse_endItem: function ListSyntax_parse_endItem(t0, t1) { this._box_0 = t0; this.items = t1; }, ListSyntax_parse_tryMatch: function ListSyntax_parse_tryMatch(t0, t1) { this.match = t0; this.parser = t1; }, UnorderedListSyntax: function UnorderedListSyntax() { }, OrderedListSyntax: function OrderedListSyntax() { }, ParagraphSyntax: function ParagraphSyntax() { }, ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition: function ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition(t0) { this.lines = t0; }, ParagraphSyntax__parseReflinkDefinition_closure: function ParagraphSyntax__parseReflinkDefinition_closure(t0, t1) { this._box_0 = t0; this.destination = t1; }, Document$0() { var t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.BlockSyntax), t2 = A.LinkedHashSet_LinkedHashSet$_empty(type$.InlineSyntax), t3 = A._setArrayType([], type$.JSArray_BlockSyntax); t1.addAll$1(0, t3); t3 = A._setArrayType([], type$.JSArray_InlineSyntax); t2.addAll$1(0, t3); t3 = $.$get$ExtensionSet_commonMark(); t1.addAll$1(0, t3.blockSyntaxes); t2.addAll$1(0, t3.inlineSyntaxes); return new A.Document0(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.LinkReference), t1, t2, false); }, Document0: function Document0(t0, t1, t2, t3) { var _ = this; _.linkReferences = t0; _._blockSyntaxes = t1; _._inlineSyntaxes = t2; _.hasCustomInlineSyntaxes = t3; }, LinkReference: function LinkReference(t0, t1) { this.destination = t0; this.title = t1; }, ExtensionSet: function ExtensionSet(t0, t1) { this.blockSyntaxes = t0; this.inlineSyntaxes = t1; }, TextSyntax$(pattern, startCharacter, sub) { return new A.TextSyntax(sub, A.RegExp_RegExp(pattern, true, false, true, false), startCharacter); }, DelimiterRun_tryParse(parser, runStart, runEnd, allowIntraWord, node, syntax) { var leftFlanking, rightFlanking, t3, _s4_ = " \t\r\n", preceding = runStart === 0 ? "\n" : B.JSString_methods.substring$2(parser.source, runStart - 1, runStart), t1 = $.$get$DelimiterRun_punctuation()._nativeRegExp, precededByPunctuation = t1.test(preceding), t2 = parser.source, following = runEnd === t2.length ? "\n" : B.JSString_methods.substring$2(t2, runEnd, runEnd + 1), followedByPunctuation = t1.test(following); t1 = B.JSString_methods.contains$1(_s4_, following); if (t1) leftFlanking = false; else leftFlanking = !followedByPunctuation || B.JSString_methods.contains$1(_s4_, preceding) || precededByPunctuation || false; if (B.JSString_methods.contains$1(_s4_, preceding)) rightFlanking = false; else rightFlanking = !precededByPunctuation || t1 || followedByPunctuation || false; if (!leftFlanking && !rightFlanking) return null; t1 = B.JSString_methods.codeUnitAt$1(t2, runStart); if (leftFlanking) if (t1 !== 42) if (rightFlanking) t2 = precededByPunctuation; else t2 = true; else t2 = true; else t2 = false; if (rightFlanking) if (t1 !== 42) if (leftFlanking) t3 = followedByPunctuation; else t3 = true; else t3 = true; else t3 = false; return new A.DelimiterRun(node, t1, syntax, t2, t3); }, TagSyntax$(pattern, requiresDelimiterRun, startCharacter) { return new A.TagSyntax(requiresDelimiterRun, A.RegExp_RegExp(pattern, true, false, true, false), startCharacter); }, LinkSyntax$(linkResolver, pattern, startCharacter) { return new A.LinkSyntax(new A.LinkSyntax_closure(), false, A.RegExp_RegExp(pattern, true, false, true, false), startCharacter); }, ImageSyntax$(linkResolver) { return new A.ImageSyntax(new A.LinkSyntax_closure(), false, A.RegExp_RegExp("!\\[", true, false, true, false), 33); }, InlineParser: function InlineParser(t0, t1, t2, t3, t4) { var _ = this; _.source = t0; _.document = t1; _.syntaxes = t2; _.start = _.pos = 0; _._delimiterStack = t3; _._inline_parser$_tree = t4; }, InlineParser_parse_closure: function InlineParser_parse_closure(t0) { this.$this = t0; }, InlineParser__linkOrImage_closure: function InlineParser__linkOrImage_closure() { }, InlineParser__linkOrImage_closure0: function InlineParser__linkOrImage_closure0() { }, InlineParser__linkOrImage_closure1: function InlineParser__linkOrImage_closure1(t0) { this.delimiter = t0; }, InlineParser__linkOrImage_closure2: function InlineParser__linkOrImage_closure2(t0, t1, t2) { this.$this = t0; this.index = t1; this.nodeIndex = t2; }, InlineParser__processEmphasis_closure: function InlineParser__processEmphasis_closure(t0) { this.bottomIndex = t0; }, InlineParser__processEmphasis_closure0: function InlineParser__processEmphasis_closure0(t0, t1) { this.$this = t0; this.closer = t1; }, InlineParser__processEmphasis_closure1: function InlineParser__processEmphasis_closure1(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.openerTextNodeIndex = t2; }, InlineSyntax: function InlineSyntax() { }, LineBreakSyntax: function LineBreakSyntax(t0, t1) { this.pattern = t0; this._startCharacter = t1; }, TextSyntax: function TextSyntax(t0, t1, t2) { this.substitute = t0; this.pattern = t1; this._startCharacter = t2; }, EscapeSyntax: function EscapeSyntax(t0, t1) { this.pattern = t0; this._startCharacter = t1; }, InlineHtmlSyntax: function InlineHtmlSyntax(t0, t1, t2) { this.substitute = t0; this.pattern = t1; this._startCharacter = t2; }, EmailAutolinkSyntax: function EmailAutolinkSyntax(t0, t1) { this.pattern = t0; this._startCharacter = t1; }, AutolinkSyntax: function AutolinkSyntax(t0, t1) { this.pattern = t0; this._startCharacter = t1; }, SimpleDelimiter: function SimpleDelimiter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.node = t0; _.char = t1; _.length = t2; _.isActive = true; _.canOpen = t3; _.canClose = t4; _.syntax = t5; _.endPos = t6; }, DelimiterRun: function DelimiterRun(t0, t1, t2, t3, t4) { var _ = this; _.node = t0; _.char = t1; _.syntax = t2; _.canOpen = t3; _.canClose = t4; }, TagSyntax: function TagSyntax(t0, t1, t2) { this.requiresDelimiterRun = t0; this.pattern = t1; this._startCharacter = t2; }, LinkSyntax: function LinkSyntax(t0, t1, t2, t3) { var _ = this; _.linkResolver = t0; _.requiresDelimiterRun = t1; _.pattern = t2; _._startCharacter = t3; }, LinkSyntax_closure: function LinkSyntax_closure() { }, ImageSyntax: function ImageSyntax(t0, t1, t2, t3) { var _ = this; _.linkResolver = t0; _.requiresDelimiterRun = t1; _.pattern = t2; _._startCharacter = t3; }, ImageSyntax__createNode_closure: function ImageSyntax__createNode_closure() { }, CodeSyntax: function CodeSyntax(t0, t1) { this.pattern = t0; this._startCharacter = t1; }, InlineLink: function InlineLink(t0, t1) { this.destination = t0; this.title = t1; }, _MdiIconData: function _MdiIconData(t0, t1, t2, t3) { var _ = this; _.codePoint = t0; _.fontFamily = t1; _.fontPackage = t2; _.matchTextDirection = t3; }, memo1(func, $A, $R) { var t1 = {}, prevArg = A._Cell$named("prevArg"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo1_closure(t1, prevArg, prevResult, func, $A, $R); }, memo2(func, $A, $B, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo2_closure(t1, prevArgA, prevArgB, prevResult, func, $A, $B, $R); }, memo3(func, $A, $B, $C, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo3_closure(t1, prevArgA, prevArgB, prevArgC, prevResult, func, $A, $B, $C, $R); }, memo4(func, $A, $B, $C, $D, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo4_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevResult, func, $A, $B, $C, $D, $R); }, memo5(func, $A, $B, $C, $D, $E, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo5_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevResult, func, $A, $B, $C, $D, $E, $R); }, memo6(func, $A, $B, $C, $D, $E, $F, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevArgF = A._Cell$named("prevArgF"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo6_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevArgF, prevResult, func, $A, $B, $C, $D, $E, $F, $R); }, memo7(func, $A, $B, $C, $D, $E, $F, $G, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevArgF = A._Cell$named("prevArgF"), prevArgG = A._Cell$named("prevArgG"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo7_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevArgF, prevArgG, prevResult, func, $A, $B, $C, $D, $E, $F, $G, $R); }, memo8(func, $A, $B, $C, $D, $E, $F, $G, $H, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevArgF = A._Cell$named("prevArgF"), prevArgG = A._Cell$named("prevArgG"), prevArgH = A._Cell$named("prevArgH"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo8_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevArgF, prevArgG, prevArgH, prevResult, func, $A, $B, $C, $D, $E, $F, $G, $H, $R); }, memo9(func, $A, $B, $C, $D, $E, $F, $G, $H, I, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevArgF = A._Cell$named("prevArgF"), prevArgG = A._Cell$named("prevArgG"), prevArgH = A._Cell$named("prevArgH"), prevArgI = A._Cell$named("prevArgI"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo9_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevArgF, prevArgG, prevArgH, prevArgI, prevResult, func, $A, $B, $C, $D, $E, $F, $G, $H, I, $R); }, memo10(func, $A, $B, $C, $D, $E, $F, $G, $H, I, $J, $R) { var t1 = {}, prevArgA = A._Cell$named("prevArgA"), prevArgB = A._Cell$named("prevArgB"), prevArgC = A._Cell$named("prevArgC"), prevArgD = A._Cell$named("prevArgD"), prevArgE = A._Cell$named("prevArgE"), prevArgF = A._Cell$named("prevArgF"), prevArgG = A._Cell$named("prevArgG"), prevArgH = A._Cell$named("prevArgH"), prevArgI = A._Cell$named("prevArgI"), prevArgJ = A._Cell$named("prevArgJ"), prevResult = A._Cell$named("prevResult"); t1.isInitial = true; return new A.memo10_closure(t1, prevArgA, prevArgB, prevArgC, prevArgD, prevArgE, prevArgF, prevArgG, prevArgH, prevArgI, prevArgJ, prevResult, func, $A, $B, $C, $D, $E, $F, $G, $H, I, $J, $R); }, memo1_closure: function memo1_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.prevArg = t1; _.prevResult = t2; _.func = t3; _.A = t4; _.R = t5; }, memo2_closure: function memo2_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevResult = t3; _.func = t4; _.A = t5; _.B = t6; _.R = t7; }, memo3_closure: function memo3_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevResult = t4; _.func = t5; _.A = t6; _.B = t7; _.C = t8; _.R = t9; }, memo4_closure: function memo4_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevResult = t5; _.func = t6; _.A = t7; _.B = t8; _.C = t9; _.D = t10; _.R = t11; }, memo5_closure: function memo5_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevResult = t6; _.func = t7; _.A = t8; _.B = t9; _.C = t10; _.D = t11; _.E = t12; _.R = t13; }, memo6_closure: function memo6_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevArgF = t6; _.prevResult = t7; _.func = t8; _.A = t9; _.B = t10; _.C = t11; _.D = t12; _.E = t13; _.F = t14; _.R = t15; }, memo7_closure: function memo7_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevArgF = t6; _.prevArgG = t7; _.prevResult = t8; _.func = t9; _.A = t10; _.B = t11; _.C = t12; _.D = t13; _.E = t14; _.F = t15; _.G = t16; _.R = t17; }, memo8_closure: function memo8_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevArgF = t6; _.prevArgG = t7; _.prevArgH = t8; _.prevResult = t9; _.func = t10; _.A = t11; _.B = t12; _.C = t13; _.D = t14; _.E = t15; _.F = t16; _.G = t17; _.H = t18; _.R = t19; }, memo9_closure: function memo9_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevArgF = t6; _.prevArgG = t7; _.prevArgH = t8; _.prevArgI = t9; _.prevResult = t10; _.func = t11; _.A = t12; _.B = t13; _.C = t14; _.D = t15; _.E = t16; _.F = t17; _.G = t18; _.H = t19; _.I = t20; _.R = t21; }, memo10_closure: function memo10_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _._box_0 = t0; _.prevArgA = t1; _.prevArgB = t2; _.prevArgC = t3; _.prevArgD = t4; _.prevArgE = t5; _.prevArgF = t6; _.prevArgG = t7; _.prevArgH = t8; _.prevArgI = t9; _.prevArgJ = t10; _.prevResult = t11; _.func = t12; _.A = t13; _.B = t14; _.C = t15; _.D = t16; _.E = t17; _.F = t18; _.G = t19; _.H = t20; _.I = t21; _.J = t22; _.R = t23; }, PublicClientApplication_PublicClientApplication(configuration) { var ex, t1, exception; try { t1 = new msal.PublicClientApplication(configuration._msal_js$_jsObject); return new A.PublicClientApplication(t1); } catch (exception) { t1 = A.unwrapException(exception); if (type$.JsError._is(t1)) { ex = t1; throw A.wrapException(A.convertJsError(ex)); } else throw exception; } }, _callJsMethod($function) { var ex, t1, exception; try { t1 = $function.call$0(); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (type$.JsError._is(t1)) { ex = t1; throw A.wrapException(A.convertJsError(ex)); } else throw exception; } }, _convertMsalPromise(promise, $T) { return A._convertMsalPromise$body(promise, $T, $T); }, _convertMsalPromise$body(promise, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], ex, t1, exception, $async$exception; var $async$_convertMsalPromise = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; $async$goto = 7; return A._asyncAwait(A.promiseToFuture(promise, $T), $async$_convertMsalPromise); case 7: // returning from await. t1 = $async$result; $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (type$.JsError._is(t1)) { ex = t1; throw A.wrapException(A.convertJsError(ex)); } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_convertMsalPromise, $async$completer); }, AuthenticationResult: function AuthenticationResult(t0) { this._msal_js$_jsObject = t0; }, Configuration: function Configuration(t0) { this._msal_js$_jsObject = t0; }, BrowserAuthOptions: function BrowserAuthOptions(t0) { this._msal_js$_jsObject = t0; }, PublicClientApplication: function PublicClientApplication(t0) { this._msal_js$_jsObject = t0; }, PublicClientApplication_loginPopup_closure: function PublicClientApplication_loginPopup_closure(t0, t1) { this.$this = t0; this.request = t1; }, PublicClientApplication_logoutPopup_closure: function PublicClientApplication_logoutPopup_closure(t0, t1) { this.$this = t0; this.logoutRequest = t1; }, EndSessionPopupRequest: function EndSessionPopupRequest(t0) { this._msal_js$_jsObject = t0; }, PopupRequest: function PopupRequest(t0) { this._msal_js$_jsObject = t0; }, CommonAuthorizationUrlRequest: function CommonAuthorizationUrlRequest() { }, CommonEndSessionRequest: function CommonEndSessionRequest() { }, convertJsError(jsError) { var t1 = J.getInterceptor$x(jsError); if (J.$eq$(t1.get$name(jsError), "BrowserConfigurationAuthError")) return new A.BrowserConfigurationAuthException(jsError, jsError); else if (J.$eq$(t1.get$name(jsError), "BrowserAuthError")) return new A.BrowserAuthException(jsError, jsError); else if (J.$eq$(t1.get$name(jsError), "ClientConfigurationError")) return new A.ClientConfigurationException(jsError, jsError); else if (J.$eq$(t1.get$name(jsError), "InteractionRequiredAuthError")) return new A.InteractionRequiredAuthException(jsError, jsError); else if (J.$eq$(t1.get$name(jsError), "ServerError")) return new A.ServerException(jsError, jsError); else if (J.$eq$(t1.get$name(jsError), "ClientAuthError")) return new A.ClientAuthException(jsError, jsError); else return new A.AuthException(jsError, jsError); }, MsalJsException: function MsalJsException() { }, AuthException: function AuthException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, ClientAuthException: function ClientAuthException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, ClientConfigurationException: function ClientConfigurationException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, InteractionRequiredAuthException: function InteractionRequiredAuthException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, ServerException: function ServerException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, BrowserAuthException: function BrowserAuthException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, BrowserConfigurationAuthException: function BrowserConfigurationAuthException(t0, t1) { this._exceptions$_jsObject = t0; this._baseJsObject = t1; }, Configuration$(receiver) { return new A.Configuration0(); }, BrowserAuthOptions$(receiver) { return new A.BrowserAuthOptions0(); }, EndSessionPopupRequest$(receiver) { return new A.EndSessionPopupRequest0(); }, PopupRequest$(receiver) { return new A.PopupRequest0(); }, AccountInfo: function AccountInfo() { }, AuthenticationResult0: function AuthenticationResult0() { }, Configuration0: function Configuration0() { }, BrowserAuthOptions0: function BrowserAuthOptions0() { }, CacheOptions: function CacheOptions() { }, BrowserSystemOptions: function BrowserSystemOptions() { }, LoggerOptions: function LoggerOptions() { }, AuthError: function AuthError() { }, EventMessage: function EventMessage() { }, Logger1: function Logger1() { }, NavigationOptions: function NavigationOptions() { }, NetworkRequestOptions: function NetworkRequestOptions() { }, NetworkResponse: function NetworkResponse() { }, PublicClientApplication0: function PublicClientApplication0() { }, SsoSilentRequest: function SsoSilentRequest() { }, EndSessionRequest: function EndSessionRequest() { }, EndSessionPopupRequest0: function EndSessionPopupRequest0() { }, SilentRequest: function SilentRequest() { }, RedirectRequest: function RedirectRequest() { }, PopupRequest0: function PopupRequest0() { }, CommonSilentFlowRequest: function CommonSilentFlowRequest() { }, CommonAuthorizationUrlRequest0: function CommonAuthorizationUrlRequest0() { }, CommonEndSessionRequest0: function CommonEndSessionRequest0() { }, JsError: function JsError() { }, Promise2: function Promise2() { }, Array: function Array() { }, Object0: function Object0() { }, Reflect: function Reflect() { }, AnimationDirection: function AnimationDirection(t0, t1) { this.index = t0; this._core$_name = t1; }, FadeWidget: function FadeWidget(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.duration = t1; _.direction = t2; _.curve = t3; _.key = t4; }, _FadeWidgetState: function _FadeWidgetState(t0, t1, t2) { var _ = this; _.___FadeWidgetState_hideWidget = _.___FadeWidgetState_controller = _.___FadeWidgetState_opacity = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _FadeWidgetState_animationStatusChange_closure: function _FadeWidgetState_animationStatusChange_closure(t0, t1) { this.$this = t0; this.status = t1; }, __FadeWidgetState_State_SingleTickerProviderStateMixin: function __FadeWidgetState_State_SingleTickerProviderStateMixin() { }, OctoImage: function OctoImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.image = t0; _.imageBuilder = t1; _.placeholderBuilder = t2; _.progressIndicatorBuilder = t3; _.errorBuilder = t4; _.placeholderFadeInDuration = t5; _.fadeOutDuration = t6; _.fadeOutCurve = t7; _.fadeInDuration = t8; _.fadeInCurve = t9; _.width = t10; _.height = t11; _.fit = t12; _.alignment = t13; _.repeat = t14; _.matchTextDirection = t15; _.color = t16; _.colorBlendMode = t17; _.filterQuality = t18; _.gaplessPlayback = t19; _.key = t20; }, _OctoImageState: function _OctoImageState(t0) { var _ = this; _._previousHandler = null; _.___OctoImageState__imageHandler = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ImageHandler$(alignment, alwaysShowPlaceHolder, color, colorBlendMode, errorBuilder, fadeInCurve, fadeInDuration, fadeOutCurve, fadeOutDuration, filterQuality, fit, height, image, imageBuilder, matchTextDirection, placeholderBuilder, placeholderFadeInDuration, progressIndicatorBuilder, repeat, width) { var t1 = new A.ImageHandler(image, width, height, fit, alignment, repeat, false, color, colorBlendMode, filterQuality, imageBuilder, placeholderBuilder, progressIndicatorBuilder, errorBuilder, placeholderFadeInDuration, fadeOutDuration, fadeOutCurve, fadeInDuration, fadeInCurve, alwaysShowPlaceHolder); t1.__ImageHandler__placeholderType = t1._definePlaceholderType$0(); return t1; }, _PlaceholderType: function _PlaceholderType(t0, t1) { this.index = t0; this._core$_name = t1; }, ImageHandler: function ImageHandler(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.image = t0; _.width = t1; _.height = t2; _.fit = t3; _.alignment = t4; _.repeat = t5; _.matchTextDirection = t6; _.color = t7; _.colorBlendMode = t8; _.filterQuality = t9; _.__ImageHandler__placeholderType = $; _.imageBuilder = t10; _.placeholderBuilder = t11; _.progressIndicatorBuilder = t12; _.errorBuilder = t13; _.placeholderFadeInDuration = t14; _.fadeOutDuration = t15; _.fadeOutCurve = t16; _.fadeInDuration = t17; _.fadeInCurve = t18; _.alwaysShowPlaceHolder = t19; _._isLoaded = _._image_handler$_wasSynchronouslyLoaded = false; }, OverflowViewParentData: function OverflowViewParentData(t0, t1, t2) { var _ = this; _.offstage = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, OverflowViewLayoutBehavior: function OverflowViewLayoutBehavior(t0, t1) { this.index = t0; this._core$_name = t1; }, RenderOverflowView: function RenderOverflowView(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._overflow_view$_direction = t0; _._overflow_view$_spacing = t1; _._overflow_view$_layoutBehavior = t2; _._isHorizontal = t3; _._hasOverflow = false; _.ContainerRenderObjectMixin__childCount = t4; _.ContainerRenderObjectMixin__firstChild = t5; _.ContainerRenderObjectMixin__lastChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOverflowView_resetOffstage_closure: function RenderOverflowView_resetOffstage_closure() { }, RenderOverflowView_performFixedLayout_getChildOffset: function RenderOverflowView_performFixedLayout_getChildOffset(t0, t1) { this.$this = t0; this.childStride = t1; }, RenderOverflowView_performFlexibleLayout_closure: function RenderOverflowView_performFlexibleLayout_closure(t0) { this.$this = t0; }, RenderOverflowView_visitOnlyOnStageChildren_closure: function RenderOverflowView_visitOnlyOnStageChildren_closure(t0) { this.visitor = t0; }, RenderOverflowView_paint_paintChild: function RenderOverflowView_paint_paintChild(t0, t1, t2) { this.$this = t0; this.context = t1; this.offset = t2; }, RenderOverflowView_paint_defaultPaint: function RenderOverflowView_paint_defaultPaint(t0, t1) { this.$this = t0; this.paintChild = t1; }, RenderOverflowView_hitTestChildren_closure: function RenderOverflowView_hitTestChildren_closure(t0, t1) { this.result = t0; this.position = t1; }, RenderOverflowView_hitTestChildren__closure: function RenderOverflowView_hitTestChildren__closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, _RenderOverflowView_RenderBox_ContainerRenderObjectMixin: function _RenderOverflowView_RenderBox_ContainerRenderObjectMixin() { }, _RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, OverflowView$flexible(builder, children, spacing) { var t1 = A.List_List$of(children, true, type$.Widget); t1.push(new A.ValueLayoutBuilder(new A.OverflowView$_all_closure(builder), null, type$.ValueLayoutBuilder_int)); return new A.OverflowView(B.Axis_0, spacing, B.OverflowViewLayoutBehavior_1, t1, null); }, OverflowView: function OverflowView(t0, t1, t2, t3, t4) { var _ = this; _.direction = t0; _.spacing = t1; _._layoutBehavior = t2; _.children = t3; _.key = t4; }, OverflowView$_all_closure: function OverflowView$_all_closure(t0) { this.builder = t0; }, _OverflowViewElement: function _OverflowViewElement(t0, t1, t2) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, MethodChannelPackageInfo: function MethodChannelPackageInfo(t0) { this._instanceToken = t0; }, PackageInfoPlatform: function PackageInfoPlatform() { }, PackageInfoPlugin: function PackageInfoPlugin(t0) { this._instanceToken = t0; }, Context_Context(current, style) { if (current == null) current = style == null ? A.current() : "."; if (style == null) style = $.$get$Style_platform(); return new A.Context(style, current); }, _parseUri(uri) { if (type$.Uri._is(uri)) return uri; throw A.wrapException(A.ArgumentError$value(uri, "uri", "Value must be a String or a Uri")); }, _validateArgList(method, args) { var numArgs, i, numArgs0, message, t1, t2, t3, t4; for (numArgs = args.length, i = 1; i < numArgs; ++i) { if (args[i] == null || args[i - 1] != null) continue; for (; numArgs >= 1; numArgs = numArgs0) { numArgs0 = numArgs - 1; if (args[numArgs0] != null) break; } message = new A.StringBuffer(""); t1 = method + "("; message._contents = t1; t2 = A._arrayInstanceType(args); t3 = t2._eval$1("SubListIterable<1>"); t4 = new A.SubListIterable(args, 0, numArgs, t3); t4.SubListIterable$3(args, 0, numArgs, t2._precomputed1); t3 = t1 + new A.MappedListIterable(t4, new A._validateArgList_closure(), t3._eval$1("MappedListIterable")).join$1(0, ", "); message._contents = t3; message._contents = t3 + ("): part " + (i - 1) + " was null, but part " + i + " was not."); throw A.wrapException(A.ArgumentError$(message.toString$0(0), null)); } }, Context: function Context(t0, t1) { this.style = t0; this._context$_current = t1; }, Context_joinAll_closure: function Context_joinAll_closure() { }, Context_split_closure: function Context_split_closure() { }, _validateArgList_closure: function _validateArgList_closure() { }, InternalStyle: function InternalStyle() { }, ParsedPath_ParsedPath$parse(path, style) { var t1, parts, separators, start, i, root = style.getRoot$1(path), isRootRelative = style.isRootRelative$1(path); if (root != null) path = J.substring$1$s(path, root.length); t1 = type$.JSArray_String; parts = A._setArrayType([], t1); separators = A._setArrayType([], t1); t1 = path.length; if (t1 !== 0 && style.isSeparator$1(B.JSString_methods._codeUnitAt$1(path, 0))) { separators.push(path[0]); start = 1; } else { separators.push(""); start = 0; } for (i = start; i < t1; ++i) if (style.isSeparator$1(B.JSString_methods._codeUnitAt$1(path, i))) { parts.push(B.JSString_methods.substring$2(path, start, i)); separators.push(path[i]); start = i + 1; } if (start < t1) { parts.push(B.JSString_methods.substring$1(path, start)); separators.push(""); } return new A.ParsedPath(style, root, isRootRelative, parts, separators); }, ParsedPath: function ParsedPath(t0, t1, t2, t3, t4) { var _ = this; _.style = t0; _.root = t1; _.isRootRelative = t2; _.parts = t3; _.separators = t4; }, PathException$(message) { return new A.PathException(message); }, PathException: function PathException(t0) { this.message = t0; }, Style__getPlatformStyle() { var t1, _null = null; if (A.Uri_base().get$scheme() !== "file") return $.$get$Style_url(); t1 = A.Uri_base(); if (!B.JSString_methods.endsWith$1(t1.get$path(t1), "/")) return $.$get$Style_url(); if (A._Uri__Uri(_null, "a/b", _null, _null, _null).toFilePath$0() === "a\\b") return $.$get$Style_windows(); return $.$get$Style_posix(); }, Style: function Style() { }, PosixStyle: function PosixStyle(t0, t1, t2) { this.separatorPattern = t0; this.needsSeparatorPattern = t1; this.rootPattern = t2; }, UrlStyle: function UrlStyle(t0, t1, t2, t3) { var _ = this; _.separatorPattern = t0; _.needsSeparatorPattern = t1; _.rootPattern = t2; _.relativeRootPattern = t3; }, WindowsStyle: function WindowsStyle(t0, t1, t2, t3) { var _ = this; _.separatorPattern = t0; _.needsSeparatorPattern = t1; _.rootPattern = t2; _.relativeRootPattern = t3; }, getApplicationDocumentsDirectory() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Directory_2), $async$returnValue, path; var $async$getApplicationDocumentsDirectory = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $.$get$PathProviderPlatform__instance().toString; $async$goto = 3; return A._asyncAwait(B.MethodChannel_OTL._invokeMethod$1$3$arguments$missingOk("getApplicationDocumentsDirectory", null, false, type$.String), $async$getApplicationDocumentsDirectory); case 3: // returning from await. path = $async$result; if (path == null) throw A.wrapException(new A.MissingPlatformDirectoryException("Unable to get application documents directory")); $async$returnValue = A.Directory_Directory(path); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getApplicationDocumentsDirectory, $async$completer); }, MissingPlatformDirectoryException: function MissingPlatformDirectoryException(t0) { this.message = t0; }, PathProviderPlatform: function PathProviderPlatform() { }, MethodChannelPathProvider: function MethodChannelPathProvider(t0) { this._instanceToken = t0; }, PdfPageFormat$(width, height, marginAll, marginBottom, marginLeft, marginRight, marginTop) { var t1 = marginAll == null, t2 = t1 ? marginTop : marginAll, t3 = t1 ? marginBottom : marginAll, t4 = t1 ? marginLeft : marginAll; return new A.PdfPageFormat(width, height, t2, t3, t4, t1 ? marginRight : marginAll); }, PdfPageFormat: function PdfPageFormat(t0, t1, t2, t3, t4, t5) { var _ = this; _.width = t0; _.height = t1; _.marginTop = t2; _.marginBottom = t3; _.marginLeft = t4; _.marginRight = t5; }, PermissionHandlerPlatform: function PermissionHandlerPlatform() { }, PermissionStatus0: function PermissionStatus0(t0, t1) { this.index = t0; this._core$_name = t1; }, PermissionWithService: function PermissionWithService(t0) { this.value = t0; }, Permission: function Permission(t0) { this.value = t0; }, MethodChannelPermissionHandler: function MethodChannelPermissionHandler(t0) { this._instanceToken = t0; }, decodePermissionRequestResult(value) { return value.map$2$1(value, new A.decodePermissionRequestResult_closure(), type$.Permission, type$.PermissionStatus); }, encodePermissions(permissions) { var t1 = A._arrayInstanceType(permissions)._eval$1("MappedListIterable<1,int>"); return A.List_List$of(new A.MappedListIterable(permissions, new A.encodePermissions_closure(), t1), true, t1._eval$1("ListIterable.E")); }, decodePermissionRequestResult_closure: function decodePermissionRequestResult_closure() { }, encodePermissions_closure: function encodePermissions_closure() { }, LocalPlatform: function LocalPlatform() { }, Platform0: function Platform0() { }, PlatformInterface__verify(instance, token, preventConstObject) { if (preventConstObject && instance._instanceToken === B.C_Object) throw A.wrapException(A.AssertionError$("`const Object()` cannot be used as the token.")); if (token != instance._instanceToken) throw A.wrapException(A.AssertionError$(string$.Platfo)); }, PlatformInterface: function PlatformInterface() { }, _registerFactory(debug) { var viewType = debug ? "__webPointerInterceptorViewType__debug__" : "__webPointerInterceptorViewType__"; $.$get$platformViewRegistry().toString; $.$get$platformViewManager().registerFactory$3$isVisible(viewType, new A._registerFactory_closure(debug), false); }, PointerInterceptor$(child) { if (!$.PointerInterceptor__registered) { A._registerFactory(false); A._registerFactory(true); $.PointerInterceptor__registered = true; } return new A.PointerInterceptor(child, null); }, _registerFactory_closure: function _registerFactory_closure(t0) { this.debug = t0; }, PointerInterceptor: function PointerInterceptor(t0, t1) { this.child = t0; this.key = t1; }, PrintingPlugin: function PrintingPlugin(t0, t1) { this._loading = t0; this._instanceToken = t1; }, PrintingPlugin__initPlugin_closure: function PrintingPlugin__initPlugin_closure(t0) { this.completer = t0; }, PrintingPlugin_layoutPdf_closure: function PrintingPlugin_layoutPdf_closure() { }, PrintingPlugin_layoutPdf_closure0: function PrintingPlugin_layoutPdf_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.frame = t2; _.isSafari = t3; _.stopWatch = t4; _.completer = t5; _.result = t6; }, PrintingPlugin_layoutPdf__closure: function PrintingPlugin_layoutPdf__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.stopWatch = t1; _.completer = t2; _.result = t3; }, PrintingPlugin_raster_closure: function PrintingPlugin_raster_closure() { }, PrintingPlugin_raster_closure0: function PrintingPlugin_raster_closure0(t0, t1, t2) { this.data = t0; this.r = t1; this.completer = t2; }, _WebPdfRaster: function _WebPdfRaster(t0, t1, t2, t3) { var _ = this; _.png = t0; _._printing_web$_pixels = null; _.width = t1; _.height = t2; _.pixels = t3; }, PrintingPlatform: function PrintingPlatform() { }, MethodChannelPrinting__handleMethod($call) { return A.MethodChannelPrinting__handleMethod$body($call); }, MethodChannelPrinting__handleMethod$body($call) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], job, format, bytes, e, s, t1, t2, t3, t4, t5, t6, t7, exception, completed, error, $async$exception; var $async$MethodChannelPrinting__handleMethod = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start case 3: // switch switch ($call.method) { case "onLayout": // goto case $async$goto = 5; break; case "onCompleted": // goto case $async$goto = 6; break; case "onHtmlRendered": // goto case $async$goto = 7; break; case "onHtmlError": // goto case $async$goto = 8; break; case "onPageRasterized": // goto case $async$goto = 9; break; case "onPageRasterEnd": // goto case $async$goto = 10; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = $call.$arguments; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "job"); job = t1._printJobs.$index(0, t4); if (job == null) { // goto return $async$goto = 1; break; } t1 = t3.$index(t2, "width"); t4 = t3.$index(t2, "height"); t5 = t3.$index(t2, "marginLeft"); t6 = t3.$index(t2, "marginTop"); t7 = t3.$index(t2, "marginRight"); format = A.PdfPageFormat$(t1, t4, null, t3.$index(t2, "marginBottom"), t5, t7, t6); bytes = null; $async$handler = 12; $async$goto = 15; return A._asyncAwait(job.onLayout.call$1(format), $async$MethodChannelPrinting__handleMethod); case 15: // returning from await. bytes = $async$result; $async$handler = 2; // goto after finally $async$goto = 14; break; case 12: // catch $async$handler = 11; $async$exception = $async$currentError; e = A.unwrapException($async$exception); s = A.getTraceFromException($async$exception); t1 = A.ErrorDescription$("while generating a PDF"); A.FlutterError_reportError(new A.FlutterErrorDetails(e, s, "printing", t1, new A.MethodChannelPrinting__handleMethod_closure(), null, false)); if (job.useFFI) { $async$returnValue = A.setErrorFfi(job, J.toString$0$(e)); // goto return $async$goto = 1; break; } throw $async$exception; // goto after finally $async$goto = 14; break; case 11: // uncaught // goto rethrow $async$goto = 2; break; case 14: // after finally if (job.useFFI) { $async$returnValue = A.setDocumentFfi(job, bytes); // goto return $async$goto = 1; break; } $async$returnValue = new Uint8Array(A._ensureNativeList(bytes)); // goto return $async$goto = 1; break; case 6: // case t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); completed = t2.$index(t1, "completed"); error = t2.$index(t1, "error"); t3 = $.$get$MethodChannelPrinting__printJobs(); t1 = t2.$index(t1, "job"); job = t3._printJobs.$index(0, t1); if (job != null) { t1 = completed === false && error != null; t2 = job.onCompleted; if (t1) t2.completeError$1(error); else t2.complete$1(0, completed); } // goto after switch $async$goto = 4; break; case 7: // case t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = $call.$arguments; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "job"); job = t1._printJobs.$index(0, t4); if (job != null) { t1 = job.onHtmlRendered; t1.toString; t1.complete$1(0, t3.$index(t2, "doc")); } // goto after switch $async$goto = 4; break; case 8: // case t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = $call.$arguments; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "job"); job = t1._printJobs.$index(0, t4); if (job != null) { t1 = job.onHtmlRendered; t1.toString; t1.completeError$1(t3.$index(t2, "error")); } // goto after switch $async$goto = 4; break; case 9: // case t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = $call.$arguments; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "job"); job = t1._printJobs.$index(0, t4); if (job != null) { t1 = t3.$index(t2, "width"); t4 = t3.$index(t2, "height"); t2 = t3.$index(t2, "image"); job.onPageRasterized.add$1(0, new A.PdfRaster(t1, t4, t2)); } // goto after switch $async$goto = 4; break; case 10: // case t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = $call.$arguments; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "job"); t1 = t1._printJobs; job = t1.$index(0, t4); $async$goto = job != null ? 16 : 17; break; case 16: // then error = t3.$index(t2, "error"); if (error != null) job.onPageRasterized.addError$1(error); $async$goto = 18; return A._asyncAwait(job.onPageRasterized.close$0(0), $async$MethodChannelPrinting__handleMethod); case 18: // returning from await. t1.remove$1(0, job.index); case 17: // join // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$MethodChannelPrinting__handleMethod, $async$completer); }, MethodChannelPrinting: function MethodChannelPrinting(t0) { this._instanceToken = t0; }, MethodChannelPrinting__handleMethod_closure: function MethodChannelPrinting__handleMethod_closure() { }, Mutex: function Mutex(t0) { this._waiting = t0; this._mutex$_locked = false; }, Settings$(receiver) { return new A.Settings(); }, PdfJs: function PdfJs() { }, Settings: function Settings() { }, PdfJsDocLoader: function PdfJsDocLoader() { }, PdfJsDoc: function PdfJsDoc() { }, PdfJsPage: function PdfJsPage() { }, PdfJsViewport: function PdfJsViewport() { }, PdfJsRender: function PdfJsRender() { }, PdfPreviewActionBounds: function PdfPreviewActionBounds() { }, PdfPreviewAction: function PdfPreviewAction(t0, t1, t2) { this.icon = t0; this.onPressed = t1; this.key = t2; }, PdfPreviewAction_build_closure: function PdfPreviewAction_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, PdfPrintAction: function PdfPrintAction(t0, t1, t2, t3, t4, t5) { var _ = this; _.icon = t0; _.jobName = t1; _.dynamicLayout = t2; _.onPrinted = t3; _.onPrintError = t4; _.key = t5; }, PdfShareAction: function PdfShareAction(t0, t1, t2, t3, t4) { var _ = this; _.icon = t0; _.filename = t1; _.onShared = t2; _.PdfPreviewActionBounds_childKey = t3; _.key = t4; }, _PdfShareAction_StatelessWidget_PdfPreviewActionBounds: function _PdfShareAction_StatelessWidget_PdfPreviewActionBounds() { }, PdfPreviewData$(buildDocument, initialPageFormat, onComputeActualPageFormat, pageFormats) { var t2, t1 = new A.PdfPreviewData(buildDocument, onComputeActualPageFormat, $.$get$ChangeNotifier__emptyListeners()); if (initialPageFormat == null) { t2 = pageFormats.$index(0, t1.get$localPageFormat()); if (t2 == null) t2 = J.get$first$ax(pageFormats.get$values(pageFormats)); } else t2 = initialPageFormat; t1.__PdfPreviewData__pageFormat = t2; return t1; }, PdfPreviewData: function PdfPreviewData(t0, t1, t2) { var _ = this; _.__PdfPreviewData__pageFormat = $; _.buildDocument = t0; _._onComputeActualPageFormat = t1; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, PdfPreviewController: function PdfPreviewController(t0, t1, t2, t3) { var _ = this; _.data = t0; _.notifier = t1; _.child = t2; _.key = t3; }, PdfPreviewCustom: function PdfPreviewCustom(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.pageFormat = t0; _.build = t1; _.maxPageWidth = t2; _.onError = t3; _.scrollViewDecoration = t4; _.pdfPreviewPageDecoration = t5; _.pages = t6; _.previewPageMargin = t7; _.padding = t8; _.shouldRepaint = t9; _.loadingWidget = t10; _.dpi = t11; _.key = t12; }, PdfPreviewCustomState: function PdfPreviewCustomState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.listView = t0; _.infoLoaded = false; _.updatePosition = _.preview = null; _.scrollController = t1; _.transformationController = t2; _.PdfPreviewRaster_pages = t3; _.PdfPreviewRaster_info = t4; _.PdfPreviewRaster_error = t5; _.PdfPreviewRaster_dpi = t6; _.PdfPreviewRaster__rastering = t7; _.PdfPreviewRaster__previewUpdate = t8; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, PdfPreviewCustomState_didChangeDependencies_closure: function PdfPreviewCustomState_didChangeDependencies_closure(t0) { this.$this = t0; }, PdfPreviewCustomState_didChangeDependencies__closure: function PdfPreviewCustomState_didChangeDependencies__closure(t0, t1) { this.$this = t0; this._info = t1; }, PdfPreviewCustomState__createPreview_closure: function PdfPreviewCustomState__createPreview_closure(t0) { this.$this = t0; }, PdfPreviewCustomState__createPreview__closure: function PdfPreviewCustomState__createPreview__closure(t0, t1) { this.$this = t0; this.index = t1; }, PdfPreviewCustomState__createPreview___closure: function PdfPreviewCustomState__createPreview___closure(t0, t1) { this.$this = t0; this.index = t1; }, PdfPreviewCustomState__zoomPreview_closure: function PdfPreviewCustomState__zoomPreview_closure(t0) { this.$this = t0; }, PdfPreviewCustomState__zoomPreview__closure: function PdfPreviewCustomState__zoomPreview__closure(t0) { this.$this = t0; }, PdfPreviewCustomState_build_closure: function PdfPreviewCustomState_build_closure(t0) { this.$this = t0; }, _PdfPreviewCustomState_State_PdfPreviewRaster: function _PdfPreviewCustomState_State_PdfPreviewRaster() { }, PdfPreviewPage: function PdfPreviewPage(t0, t1, t2, t3) { var _ = this; _.page = t0; _.pdfPreviewPageDecoration = t1; _.pageMargin = t2; _.key = t3; }, PdfPreview$(build, canChangeOrientation, canChangePageFormat, canDebug, maxPageWidth, pages) { return new A.PdfPreview(build, maxPageWidth, false, false, false, pages, null); }, PdfPreview: function PdfPreview(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.build = t0; _.maxPageWidth = t1; _.canChangePageFormat = t2; _.canChangeOrientation = t3; _.canDebug = t4; _.pages = t5; _.key = t6; }, _PdfPreviewState: function _PdfPreviewState(t0, t1) { var _ = this; _.previewWidget = t0; _.___PdfPreviewState_previewData = $; _.info = null; _.infoLoaded = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _PdfPreviewState_initState_closure: function _PdfPreviewState_initState_closure(t0) { this.$this = t0; }, _PdfPreviewState_initState__closure: function _PdfPreviewState_initState__closure() { }, _PdfPreviewState_didUpdateWidget_closure: function _PdfPreviewState_didUpdateWidget_closure() { }, _PdfPreviewState_didChangeDependencies_closure: function _PdfPreviewState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PdfPreviewState_didChangeDependencies__closure: function _PdfPreviewState_didChangeDependencies__closure(t0, t1) { this.$this = t0; this._info = t1; }, _PdfPreviewState_build_closure: function _PdfPreviewState_build_closure(t0) { this.$this = t0; }, PdfPreviewRaster: function PdfPreviewRaster() { }, PdfPreviewRaster_raster_closure: function PdfPreviewRaster_raster_closure(t0) { this.$this = t0; }, PdfPreviewRaster__raster_closure: function PdfPreviewRaster__raster_closure(t0, t1) { this.$this = t0; this.exception = t1; }, PdfPreviewRaster__raster_closure0: function PdfPreviewRaster__raster_closure0(t0) { this.$this = t0; }, PdfPreviewRaster__raster_closure1: function PdfPreviewRaster__raster_closure1(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.page = t2; }, PdfPreviewRaster__raster_closure2: function PdfPreviewRaster__raster_closure2(t0, t1) { this.$this = t0; this.exception = t1; }, PrintJob: function PrintJob(t0, t1, t2, t3, t4, t5) { var _ = this; _.onLayout = t0; _.onHtmlRendered = t1; _.onCompleted = t2; _.onPageRasterized = t3; _.index = t4; _.useFFI = t5; }, PrintJobs: function PrintJobs(t0) { this._printJobs = t0; }, PrintingInfo: function PrintingInfo(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.directPrint = t0; _.dynamicLayout = t1; _.canPrint = t2; _.canConvertHtml = t3; _.canListPrinters = t4; _.canShare = t5; _.canRaster = t6; }, PdfRaster: function PdfRaster(t0, t1, t2) { this.width = t0; this.height = t1; this.pixels = t2; }, PdfRaster_toImage_closure: function PdfRaster_toImage_closure(t0) { this.comp = t0; }, PdfRasterImage: function PdfRasterImage(t0) { this.raster = t0; }, QrBitBuffer: function QrBitBuffer(t0) { this._bit_buffer$_buffer = t0; this._bit_buffer$_length = 0; }, _QrBitBuffer_Object_ListMixin: function _QrBitBuffer_Object_ListMixin() { }, QrByte: function QrByte(t0) { this._byte$_data = t0; }, InputTooLongException: function InputTooLongException(t0) { this.message = t0; }, QrPolynomial_QrPolynomial(thing, shift) { var values, i, t1 = thing.length, offset = 0; while (true) { if (!(offset < t1 && thing[offset] === 0)) break; ++offset; } t1 -= offset; values = new Uint8Array(t1 + shift); for (i = 0; i < t1; ++i) values[i] = thing[i + offset]; return new A.QrPolynomial(values); }, QrPolynomial: function QrPolynomial(t0) { this._polynomial$_values = t0; }, QrCode$(typeNumber, errorCorrectLevel) { var t1 = A._setArrayType([], type$.JSArray_QrDatum); A.RangeError_checkValueInInterval(typeNumber, 1, 40, "typeNumber"); A.RangeError_checkValidIndex(errorCorrectLevel, B.List_1_0_3_2, "errorCorrectLevel", null); return new A.QrCode(typeNumber, errorCorrectLevel, typeNumber * 4 + 17, t1); }, QrCode__calculateTypeNumberFromData(errorCorrectLevel, dataList) { var t1, typeNumber, rsBlocks, buffer, t2, totalDataCount, i, data; for (t1 = type$.JSArray_int, typeNumber = 1; typeNumber < 40; ++typeNumber) { rsBlocks = A.QrRsBlock_getRSBlocks(typeNumber, errorCorrectLevel); buffer = new A.QrBitBuffer(A._setArrayType([], t1)); for (t2 = rsBlocks.length, totalDataCount = 0, i = 0; i < t2; ++i) totalDataCount += rsBlocks[i].dataCount; for (i = 0; i < 1; ++i) { data = dataList[i]; buffer.put$2(0, 4, 4); buffer.put$2(0, data._byte$_data.length, A._lengthInBits(4, typeNumber)); data.write$1(0, buffer); } if (buffer._bit_buffer$_length <= totalDataCount * 8) break; } return typeNumber; }, _createData(typeNumber, errorCorrectLevel, dataList) { var i, data, t1, totalDataCount, totalByteCount, count, count0, rsBlocks = A.QrRsBlock_getRSBlocks(typeNumber, errorCorrectLevel), buffer = new A.QrBitBuffer(A._setArrayType([], type$.JSArray_int)); for (i = 0; i < dataList.length; ++i) { data = dataList[i]; buffer.put$2(0, 4, 4); buffer.put$2(0, data._byte$_data.length, A._lengthInBits(4, typeNumber)); data.write$1(0, buffer); } for (t1 = rsBlocks.length, totalDataCount = 0, i = 0; i < t1; ++i) totalDataCount += rsBlocks[i].dataCount; totalByteCount = totalDataCount * 8; t1 = buffer._bit_buffer$_length; if (t1 > totalByteCount) throw A.wrapException(new A.InputTooLongException("Input too long. " + t1 + " > " + totalByteCount)); if (t1 + 4 <= totalByteCount) buffer.put$2(0, 0, 4); for (; B.JSInt_methods.$mod(buffer._bit_buffer$_length, 8) !== 0;) buffer.putBit$1(false); for (count = 0; true; count = count0) { if (buffer._bit_buffer$_length >= totalByteCount) break; count0 = count + 1; buffer.put$2(0, (count & 1) === 0 ? 236 : 17, 8); } return A._createBytes(buffer, rsBlocks); }, _createBytes(buffer, rsBlocks) { var offset, maxDcCount, maxEcCount, r, t2, dcCount, ecCount, dcItem, i, rsPoly, modPoly, ecItem, t3, t4, modIndex, data, t1 = type$.nullable_List_int, dcData = A.List_List$filled(rsBlocks.length, null, false, t1), ecData = A.List_List$filled(rsBlocks.length, null, false, t1); for (t1 = buffer._bit_buffer$_buffer, offset = 0, maxDcCount = 0, maxEcCount = 0, r = 0; r < rsBlocks.length; ++r) { t2 = rsBlocks[r]; dcCount = t2.dataCount; ecCount = t2.totalCount - dcCount; maxDcCount = Math.max(maxDcCount, dcCount); maxEcCount = Math.max(maxEcCount, ecCount); dcItem = new Uint8Array(dcCount); dcData[r] = dcItem; for (i = 0; i < dcCount; ++i) dcItem[i] = t1[i + offset] & 255; offset += dcCount; rsPoly = A._errorCorrectPolynomial(ecCount); t2 = rsPoly._polynomial$_values.length - 1; modPoly = A.QrPolynomial_QrPolynomial(dcItem, t2).mod$1(rsPoly); ecItem = new Uint8Array(t2); ecData[r] = ecItem; for (t3 = modPoly._polynomial$_values, t4 = t3.length, i = 0; i < t2; ++i) { modIndex = i + t4 - t2; ecItem[i] = modIndex >= 0 ? t3[modIndex] : 0; } } data = A._setArrayType([], type$.JSArray_int); for (i = 0; i < maxDcCount; ++i) for (r = 0; r < rsBlocks.length; ++r) { t1 = dcData[r]; if (i < t1.length) data.push(t1[i]); } for (i = 0; i < maxEcCount; ++i) for (r = 0; r < rsBlocks.length; ++r) { t1 = ecData[r]; if (i < t1.length) data.push(t1[i]); } return data; }, _lengthInBits(mode, type) { var _null = null; if (1 <= type && type < 10) switch (mode) { case 1: return 10; case 2: return 9; case 4: return 8; case 8: return 8; default: throw A.wrapException(A.ArgumentError$("mode:" + mode, _null)); } else if (type < 27) switch (mode) { case 1: return 12; case 2: return 11; case 4: return 16; case 8: return 10; default: throw A.wrapException(A.ArgumentError$("mode:" + mode, _null)); } else if (type < 41) switch (mode) { case 1: return 14; case 2: return 13; case 4: return 16; case 8: return 12; default: throw A.wrapException(A.ArgumentError$("mode:" + mode, _null)); } else throw A.wrapException(A.ArgumentError$("type:" + type, _null)); }, _errorCorrectPolynomial(errorCorrectLength) { var i, t1 = type$.JSArray_int, a = A.QrPolynomial_QrPolynomial(A._setArrayType([1], t1), 0); for (i = 0; i < errorCorrectLength; ++i) a = a.multiply$1(0, A.QrPolynomial_QrPolynomial(A._setArrayType([1, A.gexp(i)], t1), 0)); return a; }, QrCode: function QrCode(t0, t1, t2, t3) { var _ = this; _.typeNumber = t0; _.errorCorrectLevel = t1; _.moduleCount = t2; _._dataCache = null; _._dataList = t3; }, QrImage_QrImage(qrCode) { var t1, minLostPoint, bestImage, i, t2, t3, t4, t5, testImage, lostPoint; for (t1 = type$.JSArray_List_nullable_bool, minLostPoint = 0, bestImage = null, i = 0; i < 8; ++i) { t2 = A._setArrayType([], t1); t3 = qrCode.moduleCount; t4 = qrCode.typeNumber; t5 = qrCode.errorCorrectLevel; testImage = new A.QrImage(t3, t4, t5, i, t2); t2 = qrCode._dataCache; testImage._makeImpl$3(i, t2 == null ? qrCode._dataCache = A._createData(t4, t5, qrCode._dataList) : t2, true); lostPoint = A._lostPoint(testImage); if (i === 0 || minLostPoint > lostPoint) { bestImage = testImage; minLostPoint = lostPoint; } } t2 = bestImage.maskPattern; t1 = A._setArrayType([], t1); t1 = new A.QrImage(qrCode.moduleCount, qrCode.typeNumber, qrCode.errorCorrectLevel, t2, t1); t1._makeImpl$3(t2, qrCode.get$dataCache(), false); return t1; }, _mask(maskPattern, i, j) { var t1; switch (maskPattern) { case 0: return (i + j & 1) === 0; case 1: return (i & 1) === 0; case 2: return B.JSInt_methods.$mod(j, 3) === 0; case 3: return B.JSInt_methods.$mod(i + j, 3) === 0; case 4: return (B.JSInt_methods._tdivFast$1(i, 2) + B.JSInt_methods._tdivFast$1(j, 3) & 1) === 0; case 5: t1 = i * j; return B.JSInt_methods.$mod(t1, 2) + B.JSInt_methods.$mod(t1, 3) === 0; case 6: t1 = i * j; return (B.JSInt_methods.$mod(t1, 2) + B.JSInt_methods.$mod(t1, 3) & 1) === 0; case 7: return (B.JSInt_methods.$mod(i * j, 3) + B.JSInt_methods.$mod(i + j, 2) & 1) === 0; default: throw A.wrapException(A.ArgumentError$("bad maskPattern:" + maskPattern, null)); } }, _lostPoint(qrImage) { var lostPoint, row, col, dark, sameCount, r, t1, t2, c, t3, row0, count, darkCount, moduleCount = qrImage.moduleCount; for (lostPoint = 0, row = 0; row < moduleCount; ++row) for (col = 0; col < moduleCount; ++col) { dark = qrImage.isDark$2(row, col); for (sameCount = 0, r = -1; r <= 1; ++r) { t1 = row + r; if (t1 < 0 || moduleCount <= t1) continue; for (t2 = r === 0, c = -1; c <= 1; ++c) { t3 = col + c; if (t3 < 0 || moduleCount <= t3) continue; if (t2 && c === 0) continue; if (dark == qrImage.isDark$2(t1, t3)) ++sameCount; } } if (sameCount > 5) lostPoint += 3 + sameCount - 5; } for (t1 = moduleCount - 1, row = 0; row < t1; row = row0) for (row0 = row + 1, col = 0; col < t1;) { count = qrImage.isDark$2(row, col) ? 1 : 0; if (qrImage.isDark$2(row0, col)) ++count; ++col; if (qrImage.isDark$2(row, col)) ++count; if (qrImage.isDark$2(row0, col)) ++count; if (count === 0 || count === 4) lostPoint += 3; } for (t1 = moduleCount - 6, row = 0; row < moduleCount; ++row) for (col = 0; col < t1; ++col) if (qrImage.isDark$2(row, col) && !qrImage.isDark$2(row, col + 1) && qrImage.isDark$2(row, col + 2) && qrImage.isDark$2(row, col + 3) && qrImage.isDark$2(row, col + 4) && !qrImage.isDark$2(row, col + 5) && qrImage.isDark$2(row, col + 6)) lostPoint += 40; for (col = 0; col < moduleCount; ++col) for (row = 0; row < t1; ++row) if (qrImage.isDark$2(row, col) && !qrImage.isDark$2(row + 1, col) && qrImage.isDark$2(row + 2, col) && qrImage.isDark$2(row + 3, col) && qrImage.isDark$2(row + 4, col) && !qrImage.isDark$2(row + 5, col) && qrImage.isDark$2(row + 6, col)) lostPoint += 40; for (col = 0, darkCount = 0; col < moduleCount; ++col) for (row = 0; row < moduleCount; ++row) if (qrImage.isDark$2(row, col)) ++darkCount; return lostPoint + Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5 * 10; }, QrImage: function QrImage(t0, t1, t2, t3, t4) { var _ = this; _.moduleCount = t0; _.typeNumber = t1; _.errorCorrectLevel = t2; _.maskPattern = t3; _._modules = t4; }, QrRsBlock_getRSBlocks(typeNumber, errorCorrectLevel) { var i, t1, count, totalCount, dataCount, j, rsBlock = A._getRsBlockTable(typeNumber, errorCorrectLevel), $length = rsBlock.length / 3 | 0, list = A._setArrayType([], type$.JSArray_QrRsBlock); for (i = 0; i < $length; ++i) { t1 = i * 3; count = rsBlock[t1]; totalCount = rsBlock[t1 + 1]; dataCount = rsBlock[t1 + 2]; for (j = 0; j < count; ++j) list.push(new A.QrRsBlock(totalCount, dataCount)); } return list; }, _getRsBlockTable(typeNumber, errorCorrectLevel) { switch (errorCorrectLevel) { case 1: return B.List_exN[(typeNumber - 1) * 4]; case 0: return B.List_exN[(typeNumber - 1) * 4 + 1]; case 3: return B.List_exN[(typeNumber - 1) * 4 + 2]; case 2: return B.List_exN[(typeNumber - 1) * 4 + 3]; default: throw A.wrapException(A.ArgumentError$("bad rs block @ typeNumber: " + typeNumber + "/errorCorrectLevel:" + errorCorrectLevel, null)); } }, QrRsBlock: function QrRsBlock(t0, t1) { this.totalCount = t0; this.dataCount = t1; }, PaintCache: function PaintCache(t0, t1) { this._pixelPaints = t0; this._keyedPaints = t1; }, QrImageView: function QrImageView(t0, t1, t2, t3, t4) { var _ = this; _._qr_image_view$_data = t0; _.backgroundColor = t1; _.version = t2; _.size = t3; _.key = t4; }, _QrImageViewState: function _QrImageViewState(t0) { var _ = this; _._qr = null; _.___QrImageViewState_streamListener = _.___QrImageViewState__validationResult = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _QrImageViewState_build_closure: function _QrImageViewState_build_closure(t0) { this.$this = t0; }, _QrContentView: function _QrContentView(t0, t1, t2, t3, t4, t5) { var _ = this; _.edgeLength = t0; _.backgroundColor = t1; _.padding = t2; _.child = t3; _.semanticsLabel = t4; _.key = t5; }, QrPainter: function QrPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.version = t0; _.errorCorrectionLevel = t1; _.color = t2; _.gapless = t3; _.embeddedImage = t4; _.embeddedImageStyle = t5; _.eyeStyle = t6; _.dataModuleStyle = t7; _._qr_painter$_qr = t8; _.__QrPainter__calcVersion = _.__QrPainter__qrImage = $; _._paintCache = t9; _._repaint = t10; }, _PaintMetrics: function _PaintMetrics(t0, t1, t2) { var _ = this; _.moduleCount = t0; _.containerSize = t1; _.gapSize = t2; _.___PaintMetrics__inset = _.___PaintMetrics__innerContentSize = _.___PaintMetrics__pixelSize = $; }, QrCodeElement: function QrCodeElement(t0, t1) { this.index = t0; this._core$_name = t1; }, FinderPatternPosition: function FinderPatternPosition(t0, t1) { this.index = t0; this._core$_name = t1; }, QrEyeShape: function QrEyeShape(t0, t1) { this.index = t0; this._core$_name = t1; }, QrDataModuleShape: function QrDataModuleShape(t0, t1) { this.index = t0; this._core$_name = t1; }, QrEyeStyle: function QrEyeStyle() { }, QrDataModuleStyle: function QrDataModuleStyle() { }, QrValidator_validate(data, errorCorrectionLevel, version) { var itle, ex, t1, exception, qrCode = A._Cell$named("qrCode"); try { if (version !== -1) { qrCode.set$finalLocalValue(A.QrCode$(version, errorCorrectionLevel)); t1 = qrCode._readLocal$0(); t1.toString; t1._dataList.push(new A.QrByte(B.C_Utf8Encoder.convert$1(data))); t1._dataCache = null; } else { t1 = A.QrCode$(A.QrCode__calculateTypeNumberFromData(errorCorrectionLevel, A._setArrayType([new A.QrByte(B.C_Utf8Encoder.convert$1(data))], type$.JSArray_QrDatum)), errorCorrectionLevel); t1._dataList.push(new A.QrByte(B.C_Utf8Encoder.convert$1(data))); t1._dataCache = null; qrCode.set$finalLocalValue(t1); } t1 = qrCode._readLocal$0(); return new A.QrValidationResult(B.QrValidationStatus_0, t1, null); } catch (exception) { t1 = A.unwrapException(exception); if (t1 instanceof A.InputTooLongException) { itle = t1; return new A.QrValidationResult(B.QrValidationStatus_1, null, itle); } else if (type$.Exception._is(t1)) { ex = t1; return new A.QrValidationResult(B.QrValidationStatus_2, null, ex); } else throw exception; } }, QrValidationResult: function QrValidationResult(t0, t1, t2) { this.status = t0; this.qrCode = t1; this.error = t2; }, QrValidationStatus: function QrValidationStatus(t0, t1) { this.index = t0; this._core$_name = t1; }, hashObjects0(objects) { return A._finish0(J.fold$1$2$ax(objects, 0, new A.hashObjects_closure0(), type$.int)); }, _combine0(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _finish0(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashObjects_closure0: function hashObjects_closure0() { }, MiddlewareClass: function MiddlewareClass() { }, Store: function Store(t0, t1, t2) { var _ = this; _.reducer = t0; _._changeController = t1; _.__Store__dispatchers = _.__Store__state = $; _.$ti = t2; }, Store__createReduceAndNotify_closure: function Store__createReduceAndNotify_closure(t0, t1) { this.$this = t0; this.distinct = t1; }, Store__createDispatchers_closure: function Store__createDispatchers_closure(t0, t1, t2) { this.$this = t0; this.nextMiddleware = t1; this.next = t2; }, TypedReducer$(reducer, State, Action) { return new A.TypedReducer(reducer, State._eval$1("@<0>")._bind$1(Action)._eval$1("TypedReducer<1,2>")); }, combineReducers(reducers, State) { return new A.combineReducers_closure(reducers, State); }, TypedReducer: function TypedReducer(t0, t1) { this.reducer = t0; this.$ti = t1; }, TypedMiddleware: function TypedMiddleware(t0, t1) { this.middleware = t0; this.$ti = t1; }, combineReducers_closure: function combineReducers_closure(t0, t1) { this.reducers = t0; this.State = t1; }, LoggingMiddleware: function LoggingMiddleware(t0, t1, t2, t3) { var _ = this; _.logger = t0; _.level = t1; _.formatter = t2; _.$ti = t3; }, LoggingMiddleware_call_closure: function LoggingMiddleware_call_closure(t0, t1, t2) { this.$this = t0; this.store = t1; this.action = t2; }, ButtonState: function ButtonState(t0, t1) { this.index = t0; this._core$_name = t1; }, RoundedLoadingButton: function RoundedLoadingButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.controller = t0; _.onPressed = t1; _.child = t2; _.color = t3; _.height = t4; _.width = t5; _.borderRadius = t6; _.key = t7; }, RoundedLoadingButtonState: function RoundedLoadingButtonState(t0, t1, t2, t3) { var _ = this; _.__RoundedLoadingButtonState__borderAnimation = _.__RoundedLoadingButtonState__bounceAnimation = _.__RoundedLoadingButtonState__squeezeAnimation = _.__RoundedLoadingButtonState__checkButtonControler = _.__RoundedLoadingButtonState__borderController = _.__RoundedLoadingButtonState__buttonController = $; _._rounded_loading_button$_state = t0; _.TickerProviderStateMixin__tickers = t1; _.TickerProviderStateMixin__tickerModeNotifier = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, RoundedLoadingButtonState_build_closure: function RoundedLoadingButtonState_build_closure(t0, t1) { this.$this = t0; this._loader = t1; }, RoundedLoadingButtonState_initState_closure: function RoundedLoadingButtonState_initState_closure(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure1: function RoundedLoadingButtonState_initState__closure1() { }, RoundedLoadingButtonState_initState_closure0: function RoundedLoadingButtonState_initState_closure0(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure0: function RoundedLoadingButtonState_initState__closure0() { }, RoundedLoadingButtonState_initState_closure1: function RoundedLoadingButtonState_initState_closure1(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState_closure2: function RoundedLoadingButtonState_initState_closure2(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure: function RoundedLoadingButtonState_initState__closure() { }, RoundedLoadingButtonState_initState_closure3: function RoundedLoadingButtonState_initState_closure3(t0) { this.$this = t0; }, RoundedLoadingButtonController: function RoundedLoadingButtonController(t0) { this._resetListener = this._startListener = null; this._rounded_loading_button$_state = t0; }, _RoundedLoadingButtonState_State_TickerProviderStateMixin: function _RoundedLoadingButtonState_State_TickerProviderStateMixin() { }, DeferStream$(streamFactory, reusable, $T) { return new A.DeferStream(streamFactory, true, $T._eval$1("DeferStream<0>")); }, DeferStream: function DeferStream(t0, t1, t2) { this._factory = t0; this._isReusable = t1; this.$ti = t2; }, _MissingCase: function _MissingCase(t0, t1) { this.index = t0; this._core$_name = t1; }, ValueStreamError: function ValueStreamError(t0) { this._missingCase = t0; }, BehaviorSubject_BehaviorSubject$seeded(seedValue, $T) { var controller = new A._AsyncBroadcastStreamController(null, null, $T._eval$1("_AsyncBroadcastStreamController<0>")), wrapper = new A._Wrapper(true, seedValue, $T._eval$1("_Wrapper<0>")); return new A.BehaviorSubject(wrapper, controller, A.DeferStream$(A.BehaviorSubject__deferStream(wrapper, controller, false, $T), true, $T), $T._eval$1("BehaviorSubject<0>")); }, BehaviorSubject__deferStream(wrapper, controller, sync, $T) { return new A.BehaviorSubject__deferStream_closure(wrapper, controller, $T); }, BehaviorSubject: function BehaviorSubject(t0, t1, t2, t3) { var _ = this; _._wrapper = t0; _._subject$_controller = t1; _._isAddingStreamItems = false; _._stream = t2; _.$ti = t3; }, BehaviorSubject__deferStream_closure: function BehaviorSubject__deferStream_closure(t0, t1, t2) { this.wrapper = t0; this.controller = t1; this.T = t2; }, _Wrapper: function _Wrapper(t0, t1, t2) { var _ = this; _.isValue = t0; _.value = t1; _.errorAndStackTrace = null; _.$ti = t2; }, Subject: function Subject() { }, Subject_addStream_complete: function Subject_addStream_complete(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.completer = t2; }, Subject_addStream_closure: function Subject_addStream_closure(t0) { this.$this = t0; }, Subject_addStream_closure1: function Subject_addStream_closure1(t0, t1, t2) { this.$this = t0; this.cancelOnError = t1; this.complete = t2; }, Subject_addStream_closure0: function Subject_addStream_closure0(t0) { this.complete = t0; }, _StartWithStreamSink: function _StartWithStreamSink(t0, t1) { this._startValue = t0; this._forwarding_sink$_sink = null; this.$ti = t1; }, StartWithStreamTransformer: function StartWithStreamTransformer(t0, t1) { this.startValue = t0; this.$ti = t1; }, StartWithStreamTransformer_bind_closure: function StartWithStreamTransformer_bind_closure(t0) { this.$this = t0; }, _StartWithErrorStreamSink: function _StartWithErrorStreamSink(t0, t1, t2) { var _ = this; _._e = t0; _._st = t1; _._forwarding_sink$_sink = null; _.$ti = t2; }, StartWithErrorStreamTransformer: function StartWithErrorStreamTransformer(t0, t1, t2) { this.error = t0; this.stackTrace = t1; this.$ti = t2; }, StartWithErrorStreamTransformer_bind_closure: function StartWithErrorStreamTransformer_bind_closure(t0) { this.$this = t0; }, _Empty: function _Empty() { }, ErrorAndStackTrace: function ErrorAndStackTrace(t0, t1) { this.error = t0; this.stackTrace = t1; }, ForwardingSink: function ForwardingSink() { }, forwardStream(stream, sinkFactory, $T, $R) { var t1; if (stream.get$isBroadcast()) t1 = A._forwardMulti(stream, sinkFactory, $T, $R); else t1 = A._forward(stream, sinkFactory, $T, $R); return t1; }, _forwardMulti(stream, sinkFactory, $T, $R) { return new A._MultiStream(true, new A._forwardMulti_closure(sinkFactory, stream, $R), $R._eval$1("_MultiStream<0>")); }, _forward(stream, sinkFactory, $T, $R) { var controller, sink, _null = null, t1 = {}; if (stream.get$isBroadcast()) controller = new A._SyncBroadcastStreamController(_null, _null, $R._eval$1("_SyncBroadcastStreamController<0>")); else controller = A.StreamController_StreamController(_null, _null, _null, true, $R); t1.subscription = null; t1.cancelled = false; sink = A._InitializedCell$named("sink", new A._forward_closure(sinkFactory, $T, $R)); controller.set$onListen(new A._forward_closure0(t1, stream, sink, controller)); controller.set$onCancel(0, new A._forward_closure1(t1, sink)); return controller.get$stream(controller); }, _waitFutures(f1, f2) { var t1; if (f1 == null) t1 = f2; else t1 = f1; return t1; }, _forwardMulti_closure: function _forwardMulti_closure(t0, t1, t2) { this.sinkFactory = t0; this.stream = t1; this.R = t2; }, _forwardMulti_closure_listenToUpstream: function _forwardMulti_closure_listenToUpstream(t0, t1, t2) { this._box_0 = t0; this.stream = t1; this.sink = t2; }, _forwardMulti__closure: function _forwardMulti__closure(t0, t1) { this._box_0 = t0; this.sink = t1; }, _forward_closure: function _forward_closure(t0, t1, t2) { this.sinkFactory = t0; this.T = t1; this.R = t2; }, _forward_closure0: function _forward_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.stream = t1; _.sink = t2; _.controller = t3; }, _forward_closure_listenToUpstream: function _forward_closure_listenToUpstream(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.stream = t1; _.sink = t2; _.controller = t3; }, _forward__listenToUpstream_closure: function _forward__listenToUpstream_closure(t0, t1) { this._box_0 = t0; this.sink = t1; }, _forward__listenToUpstream_closure0: function _forward__listenToUpstream_closure0(t0, t1) { this._box_0 = t0; this.sink = t1; }, _forward_closure1: function _forward_closure1(t0, t1) { this._box_0 = t0; this.sink = t1; }, _MultiControllerSink: function _MultiControllerSink(t0, t1) { this.controller = t0; this.$ti = t1; }, WebEnvironmentVariables: function WebEnvironmentVariables() { }, EnvironmentVariables: function EnvironmentVariables() { }, HubAdapter: function HubAdapter() { }, NoOpClient: function NoOpClient() { }, NoOpHub_NoOpHub() { return $.$get$NoOpHub__instance(); }, NoOpHub: function NoOpHub(t0) { this._noop_hub$_options = t0; }, NoOpSentrySpan: function NoOpSentrySpan() { }, WebPlatform: function WebPlatform() { }, Platform1: function Platform1() { }, PlatformChecker: function PlatformChecker() { }, Breadcrumb: function Breadcrumb() { }, SentryLevel: function SentryLevel(t0) { this.name = t0; }, SpanStatus$ok() { return new A.SpanStatus("ok", 200, 299); }, SpanStatus: function SpanStatus(t0, t1, t2) { this._span_status$_value = t0; this._minHttpStatusCode = t1; this._maxHttpStatusCode = t2; }, SentryMeasurement: function SentryMeasurement(t0, t1) { this.name = t0; this.value = t1; }, noOpLogger(level, message, exception, logger, stackTrace) { }, SentryOptions: function SentryOptions(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dsn = t0; _.httpClient = t1; _._eventProcessors = t2; _._integrations = t3; _.diagnosticLevel = t4; _.environment = _.release = _.beforeSend = null; _._inAppExcludes = t5; _._inAppIncludes = t6; _.transport = t7; _.dist = null; _.__SentryOptions_sdk = $; _.platformChecker = t8; _.environmentVariables = t9; _.__SentryOptions_stackTraceFactory = _.__SentryOptions_exceptionFactory = $; }, ISentrySpan: function ISentrySpan() { }, NoOpTransport: function NoOpTransport() { }, SentryFlutterWeb: function SentryFlutterWeb() { }, RouteObserverBreadcrumb__formatArgs(args) { if (args == null) return null; if (type$.Map_String_dynamic._is(args)) return J.map$2$1$ax(args, new A.RouteObserverBreadcrumb__formatArgs_closure(), type$.String, type$.dynamic); return J.toString$0$(args); }, SentryNavigatorObserver: function SentryNavigatorObserver(t0, t1, t2) { var _ = this; _._hub = t0; _._native = t1; _._transaction = null; _._routes$_listeners = t2; _._navigator$_navigator = null; }, SentryNavigatorObserver__startTransaction_closure: function SentryNavigatorObserver__startTransaction_closure(t0) { this.$this = t0; }, SentryNavigatorObserver__startTransaction_closure0: function SentryNavigatorObserver__startTransaction_closure0(t0) { this.$this = t0; }, RouteObserverBreadcrumb: function RouteObserverBreadcrumb(t0, t1, t2, t3, t4, t5) { var _ = this; _.message = t0; _.category = t1; _.data = t2; _.level = t3; _.type = t4; _.timestamp = t5; }, RouteObserverBreadcrumb__formatArgs_closure: function RouteObserverBreadcrumb__formatArgs_closure() { }, SentryNative: function SentryNative() { this.appStartEnd = this._nativeChannel = null; this._didFetchAppStart = false; }, NativeFrames: function NativeFrames(t0, t1, t2) { this.totalFrames = t0; this.slowFrames = t1; this.frozenFrames = t2; }, SharedPreferences_getInstance() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.SharedPreferences), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], completer, preferencesMap, e, sharedPrefsFuture, exception, t1, $async$exception; var $async$SharedPreferences_getInstance = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $.SharedPreferences__completer; $async$goto = t1 == null ? 3 : 4; break; case 3: // then completer = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_SharedPreferences), type$._AsyncCompleter_SharedPreferences); $async$handler = 6; $async$goto = 9; return A._asyncAwait(A.SharedPreferences__getSharedPreferencesMap(), $async$SharedPreferences_getInstance); case 9: // returning from await. preferencesMap = $async$result; J.complete$1$z(completer, new A.SharedPreferences(preferencesMap)); $async$handler = 2; // goto after finally $async$goto = 8; break; case 6: // catch $async$handler = 5; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (type$.Exception._is(t1)) { e = t1; completer.completeError$1(e); sharedPrefsFuture = completer.future; $.SharedPreferences__completer = null; $async$returnValue = sharedPrefsFuture; // goto return $async$goto = 1; break; } else throw $async$exception; // goto after finally $async$goto = 8; break; case 5: // uncaught // goto rethrow $async$goto = 2; break; case 8: // after finally t1 = $.SharedPreferences__completer = completer; case 4: // join $async$returnValue = t1.future; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$SharedPreferences_getInstance, $async$completer); }, SharedPreferences__getSharedPreferencesMap() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, t2, t3, t4, fromSystem, preferencesMap; var $async$SharedPreferences__getSharedPreferencesMap = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($.$get$SharedPreferencesStorePlatform__instance().getAll$0(0), $async$SharedPreferences__getSharedPreferencesMap); case 3: // returning from await. fromSystem = $async$result; preferencesMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Object); for (t1 = J.getInterceptor$x(fromSystem), t2 = J.get$iterator$ax(t1.get$keys(fromSystem)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = J.substring$1$s(t3, 8); t3 = t1.$index(fromSystem, t3); t3.toString; preferencesMap.$indexSet(0, t4, t3); } $async$returnValue = preferencesMap; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$SharedPreferences__getSharedPreferencesMap, $async$completer); }, SharedPreferences: function SharedPreferences(t0) { this._preferenceCache = t0; }, MethodChannelSharedPreferencesStore: function MethodChannelSharedPreferencesStore() { }, SharedPreferencesStorePlatform_instance(value) { var exception; try { } catch (exception) { if (type$.NoSuchMethodError._is(A.unwrapException(exception))) throw A.wrapException(A.AssertionError$(string$.Platfo)); else throw exception; } $.SharedPreferencesStorePlatform__instance = value; }, SharedPreferencesStorePlatform: function SharedPreferencesStorePlatform() { }, SharedPreferencesPlugin: function SharedPreferencesPlugin() { }, SharedPreferencesPlugin__storedFlutterKeys_closure: function SharedPreferencesPlugin__storedFlutterKeys_closure() { }, AppleLogoPainter: function AppleLogoPainter(t0, t1) { this.color = t0; this._repaint = t1; }, SignInWithAppleButton: function SignInWithAppleButton(t0, t1) { this.onPressed = t0; this.key = t1; }, SignInWithAppleButtonStyle: function SignInWithAppleButtonStyle(t0, t1) { this.index = t0; this._core$_name = t1; }, IconAlignment: function IconAlignment(t0, t1) { this.index = t0; this._core$_name = t1; }, parseAuthorizationCredentialAppleID(response) { var authorizationCode, t1 = J.getInterceptor$asx(response); if (J.$eq$(t1.$index(response, "type"), "appleid")) { authorizationCode = A._asStringQ(t1.$index(response, "authorizationCode")); if (authorizationCode == null) throw A.wrapException(B.SignInWithAppleAuthorizationException_gsm); return new A.AuthorizationCredentialAppleID(A._asStringQ(t1.$index(response, "userIdentifier")), A._asStringQ(t1.$index(response, "givenName")), A._asStringQ(t1.$index(response, "familyName")), A._asStringQ(t1.$index(response, "email")), authorizationCode, A._asStringQ(t1.$index(response, "identityToken")), A._asStringQ(t1.$index(response, "state"))); } else throw A.wrapException(A.Exception_Exception("Unsupported result type " + A.S(t1.$index(response, "type")))); }, AuthorizationCredentialAppleID: function AuthorizationCredentialAppleID(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.userIdentifier = t0; _.givenName = t1; _.familyName = t2; _.email = t3; _.authorizationCode = t4; _.identityToken = t5; _.state = t6; }, AppleIDAuthorizationScopes: function AppleIDAuthorizationScopes(t0, t1) { this.index = t0; this._core$_name = t1; }, AppleIDAuthorizationRequest: function AppleIDAuthorizationRequest(t0, t1, t2) { this.scopes = t0; this.nonce = t1; this.state = t2; }, SignInWithAppleException_SignInWithAppleException$fromPlatformException(exception) { var _s19_ = "no message provided", t1 = exception.code, t2 = exception.message; switch (t1) { case "not-supported": return new A.SignInWithAppleNotSupportedException(t2 == null ? _s19_ : t2); case "authorization-error/unknown": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_5, t2 == null ? _s19_ : t2); case "authorization-error/canceled": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_0, t2 == null ? _s19_ : t2); case "authorization-error/invalidResponse": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_2, t2 == null ? _s19_ : t2); case "authorization-error/notHandled": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_3, t2 == null ? _s19_ : t2); case "authorization-error/notInteractive": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_4, t2 == null ? _s19_ : t2); case "authorization-error/failed": return new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_1, t2 == null ? _s19_ : t2); case "credentials-error": return new A.SignInWithAppleCredentialsException(t2 == null ? _s19_ : t2); default: return new A.UnknownSignInWithAppleException(t1, t2, exception.details, null); } }, SignInWithAppleCredentialsException$(message) { return new A.SignInWithAppleCredentialsException(message); }, UnknownSignInWithAppleException: function UnknownSignInWithAppleException(t0, t1, t2, t3) { var _ = this; _.code = t0; _.message = t1; _.details = t2; _.stacktrace = t3; }, SignInWithAppleNotSupportedException: function SignInWithAppleNotSupportedException(t0) { this.message = t0; }, AuthorizationErrorCode: function AuthorizationErrorCode(t0, t1) { this.index = t0; this._core$_name = t1; }, SignInWithAppleAuthorizationException: function SignInWithAppleAuthorizationException(t0, t1) { this.code = t0; this.message = t1; }, SignInWithAppleCredentialsException: function SignInWithAppleCredentialsException(t0) { this.message = t0; }, MethodChannelSignInWithApple: function MethodChannelSignInWithApple(t0) { this._instanceToken = t0; }, MethodChannelSignInWithApple__signInWithAppleAndroid_closure: function MethodChannelSignInWithApple__signInWithAppleAndroid_closure() { }, SignInWithApplePlatform: function SignInWithApplePlatform() { }, WebAuthenticationOptions: function WebAuthenticationOptions(t0, t1) { this.clientId = t0; this.redirectUri = t1; }, SignInWithApplePlugin: function SignInWithApplePlugin(t0) { this._instanceToken = t0; }, SignInWithAppleInitOptions: function SignInWithAppleInitOptions() { }, SignInResponseI: function SignInResponseI() { }, AuthorizationI: function AuthorizationI() { }, UserI: function UserI() { }, NameI: function NameI() { }, SourceFile$fromString(text, url) { var t1 = new A.CodeUnits(text), t2 = A._setArrayType([0], type$.JSArray_int); t2 = new A.SourceFile(url, t2, new Uint32Array(A._ensureNativeList(t1.toList$0(t1)))); t2.SourceFile$decoded$2$url(t1, url); return t2; }, SourceFile$decoded(decodedChars, url) { var t1 = A._setArrayType([0], type$.JSArray_int); t1 = new A.SourceFile(url, t1, new Uint32Array(A._ensureNativeList(J.toList$0$ax(decodedChars)))); t1.SourceFile$decoded$2$url(decodedChars, url); return t1; }, FileLocation$_(file, offset) { if (offset < 0) A.throwExpression(A.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > file._decodedChars.length) A.throwExpression(A.RangeError$("Offset " + offset + string$.x20must_ + file.get$length(file) + ".")); return new A.FileLocation(file, offset); }, _FileSpan$(file, _start, _end) { if (_end < _start) A.throwExpression(A.ArgumentError$("End " + _end + " must come after start " + _start + ".", null)); else if (_end > file._decodedChars.length) A.throwExpression(A.RangeError$("End " + _end + string$.x20must_ + file.get$length(file) + ".")); else if (_start < 0) A.throwExpression(A.RangeError$("Start may not be negative, was " + _start + ".")); return new A._FileSpan(file, _start, _end); }, SourceFile: function SourceFile(t0, t1, t2) { var _ = this; _.url = t0; _._lineStarts = t1; _._decodedChars = t2; _._cachedLine = null; }, FileLocation: function FileLocation(t0, t1) { this.file = t0; this.offset = t1; }, _FileSpan: function _FileSpan(t0, t1, t2) { this.file = t0; this._file$_start = t1; this._file$_end = t2; }, Highlighter$(span, color) { var t1 = A.Highlighter__collateLines(A._setArrayType([A._Highlight$(span, true)], type$.JSArray__Highlight)), t2 = new A.Highlighter_closure(color).call$0(), t3 = B.JSInt_methods.toString$0(B.JSArray_methods.get$last(t1).number + 1), t4 = A.Highlighter__contiguous(t1) ? 0 : 3, t5 = A._arrayInstanceType(t1); return new A.Highlighter(t1, t2, null, 1 + Math.max(t3.length, t4), new A.MappedListIterable(t1, new A.Highlighter$__closure(), t5._eval$1("MappedListIterable<1,int>")).reduce$1(0, B.CONSTANT), !A.isAllTheSame(new A.MappedListIterable(t1, new A.Highlighter$__closure0(), t5._eval$1("MappedListIterable<1,Object?>"))), new A.StringBuffer("")); }, Highlighter__contiguous(lines) { var i, thisLine, nextLine; for (i = 0; i < lines.length - 1;) { thisLine = lines[i]; ++i; nextLine = lines[i]; if (thisLine.number + 1 !== nextLine.number && J.$eq$(thisLine.url, nextLine.url)) return false; } return true; }, Highlighter__collateLines(highlights) { var t1, t2, highlightsByUrl = A.groupBy(highlights, new A.Highlighter__collateLines_closure(), type$._Highlight, type$.Object); for (t1 = highlightsByUrl.get$values(highlightsByUrl), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) J.sort$1$ax(t2.__internal$_current, new A.Highlighter__collateLines_closure0()); t1 = highlightsByUrl.get$entries(highlightsByUrl); t2 = A._instanceType(t1)._eval$1("ExpandIterable"); return A.List_List$of(new A.ExpandIterable(t1, new A.Highlighter__collateLines_closure1(), t2), true, t2._eval$1("Iterable.E")); }, _Highlight$(span, primary) { return new A._Highlight(new A._Highlight_closure(span).call$0(), true); }, _Highlight__normalizeNewlines(span) { var t1, endOffset, i, t2, t3, t4, text = span.get$text(span); if (!B.JSString_methods.contains$1(text, "\r\n")) return span; t1 = span.get$end(span); endOffset = t1.get$offset(t1); for (t1 = text.length - 1, i = 0; i < t1; ++i) if (B.JSString_methods._codeUnitAt$1(text, i) === 13 && B.JSString_methods._codeUnitAt$1(text, i + 1) === 10) --endOffset; t1 = span.get$start(span); t2 = span.get$sourceUrl(); t3 = span.get$end(span); t3 = t3.get$line(t3); t2 = A.SourceLocation$(endOffset, span.get$end(span).get$column(), t3, t2); t3 = A.stringReplaceAllUnchecked(text, "\r\n", "\n"); t4 = span.get$context(span); return A.SourceSpanWithContext$(t1, t2, t3, A.stringReplaceAllUnchecked(t4, "\r\n", "\n")); }, _Highlight__normalizeTrailingNewline(span) { var context, text, start, end, t1, t2, t3; if (!B.JSString_methods.endsWith$1(span.get$context(span), "\n")) return span; if (B.JSString_methods.endsWith$1(span.get$text(span), "\n\n")) return span; context = B.JSString_methods.substring$2(span.get$context(span), 0, span.get$context(span).length - 1); text = span.get$text(span); start = span.get$start(span); end = span.get$end(span); if (B.JSString_methods.endsWith$1(span.get$text(span), "\n")) { t1 = A.findLineStart(span.get$context(span), span.get$text(span), span.get$start(span).get$column()); t1.toString; t1 = t1 + span.get$start(span).get$column() + span.get$length(span) === span.get$context(span).length; } else t1 = false; if (t1) { text = B.JSString_methods.substring$2(span.get$text(span), 0, span.get$text(span).length - 1); if (text.length === 0) end = start; else { t1 = span.get$end(span); t1 = t1.get$offset(t1); t2 = span.get$sourceUrl(); t3 = span.get$end(span); t3 = t3.get$line(t3); end = A.SourceLocation$(t1 - 1, A._Highlight__lastLineLength(context), t3 - 1, t2); t1 = span.get$start(span); t1 = t1.get$offset(t1); t2 = span.get$end(span); start = t1 === t2.get$offset(t2) ? end : span.get$start(span); } } return A.SourceSpanWithContext$(start, end, text, context); }, _Highlight__normalizeEndOfLine(span) { var t1, t2, text, t3, t4; if (span.get$end(span).get$column() !== 0) return span; t1 = span.get$end(span); t1 = t1.get$line(t1); t2 = span.get$start(span); if (t1 == t2.get$line(t2)) return span; text = B.JSString_methods.substring$2(span.get$text(span), 0, span.get$text(span).length - 1); t1 = span.get$start(span); t2 = span.get$end(span); t2 = t2.get$offset(t2); t3 = span.get$sourceUrl(); t4 = span.get$end(span); t4 = t4.get$line(t4); t3 = A.SourceLocation$(t2 - 1, text.length - B.JSString_methods.lastIndexOf$1(text, "\n") - 1, t4 - 1, t3); return A.SourceSpanWithContext$(t1, t3, text, B.JSString_methods.endsWith$1(span.get$context(span), "\n") ? B.JSString_methods.substring$2(span.get$context(span), 0, span.get$context(span).length - 1) : span.get$context(span)); }, _Highlight__lastLineLength(text) { var t1 = text.length; if (t1 === 0) return 0; else if (B.JSString_methods.codeUnitAt$1(text, t1 - 1) === 10) return t1 === 1 ? 0 : t1 - B.JSString_methods.lastIndexOf$2(text, "\n", t1 - 2) - 1; else return t1 - B.JSString_methods.lastIndexOf$1(text, "\n") - 1; }, Highlighter: function Highlighter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._lines = t0; _._highlighter$_primaryColor = t1; _._highlighter$_secondaryColor = t2; _._paddingBeforeSidebar = t3; _._maxMultilineSpans = t4; _._multipleFiles = t5; _._highlighter$_buffer = t6; }, Highlighter_closure: function Highlighter_closure(t0) { this.color = t0; }, Highlighter$__closure: function Highlighter$__closure() { }, Highlighter$___closure: function Highlighter$___closure() { }, Highlighter$__closure0: function Highlighter$__closure0() { }, Highlighter__collateLines_closure: function Highlighter__collateLines_closure() { }, Highlighter__collateLines_closure0: function Highlighter__collateLines_closure0() { }, Highlighter__collateLines_closure1: function Highlighter__collateLines_closure1() { }, Highlighter__collateLines__closure: function Highlighter__collateLines__closure(t0) { this.line = t0; }, Highlighter_highlight_closure: function Highlighter_highlight_closure() { }, Highlighter__writeFileStart_closure: function Highlighter__writeFileStart_closure(t0) { this.$this = t0; }, Highlighter__writeMultilineHighlights_closure: function Highlighter__writeMultilineHighlights_closure(t0, t1, t2) { this.$this = t0; this.startLine = t1; this.line = t2; }, Highlighter__writeMultilineHighlights_closure0: function Highlighter__writeMultilineHighlights_closure0(t0, t1) { this.$this = t0; this.highlight = t1; }, Highlighter__writeMultilineHighlights_closure1: function Highlighter__writeMultilineHighlights_closure1(t0) { this.$this = t0; }, Highlighter__writeMultilineHighlights_closure2: function Highlighter__writeMultilineHighlights_closure2(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.current = t2; _.startLine = t3; _.line = t4; _.highlight = t5; _.endLine = t6; }, Highlighter__writeMultilineHighlights__closure: function Highlighter__writeMultilineHighlights__closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, Highlighter__writeMultilineHighlights__closure0: function Highlighter__writeMultilineHighlights__closure0(t0, t1) { this.$this = t0; this.vertical = t1; }, Highlighter__writeHighlightedText_closure: function Highlighter__writeHighlightedText_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.text = t1; _.startColumn = t2; _.endColumn = t3; }, Highlighter__writeIndicator_closure: function Highlighter__writeIndicator_closure(t0, t1, t2) { this.$this = t0; this.line = t1; this.highlight = t2; }, Highlighter__writeIndicator_closure0: function Highlighter__writeIndicator_closure0(t0, t1, t2) { this.$this = t0; this.line = t1; this.highlight = t2; }, Highlighter__writeIndicator_closure1: function Highlighter__writeIndicator_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.coversWholeLine = t1; _.line = t2; _.highlight = t3; }, Highlighter__writeSidebar_closure: function Highlighter__writeSidebar_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.end = t2; }, _Highlight: function _Highlight(t0, t1) { this.span = t0; this.isPrimary = t1; }, _Highlight_closure: function _Highlight_closure(t0) { this.span = t0; }, _Line: function _Line(t0, t1, t2, t3) { var _ = this; _.text = t0; _.number = t1; _.url = t2; _.highlights = t3; }, SourceLocation$(offset, column, line, sourceUrl) { var t1 = line == null, t2 = t1 ? 0 : line; if (offset < 0) A.throwExpression(A.RangeError$("Offset may not be negative, was " + offset + ".")); else if (!t1 && line < 0) A.throwExpression(A.RangeError$("Line may not be negative, was " + A.S(line) + ".")); else if (column < 0) A.throwExpression(A.RangeError$("Column may not be negative, was " + column + ".")); return new A.SourceLocation(sourceUrl, offset, t2, column); }, SourceLocation: function SourceLocation(t0, t1, t2, t3) { var _ = this; _.sourceUrl = t0; _.offset = t1; _.line = t2; _.column = t3; }, SourceLocationMixin: function SourceLocationMixin() { }, SourceSpanBase: function SourceSpanBase() { }, SourceSpanFormatException$(message, span, source) { return new A.SourceSpanFormatException(source, message, span); }, SourceSpanException: function SourceSpanException() { }, SourceSpanFormatException: function SourceSpanFormatException(t0, t1, t2) { this.source = t0; this._span_exception$_message = t1; this._span_exception$_span = t2; }, SourceSpanMixin: function SourceSpanMixin() { }, SourceSpanWithContext$(start, end, text, _context) { var t1 = new A.SourceSpanWithContext(_context, start, end, text); t1.SourceSpanBase$3(start, end, text); if (!B.JSString_methods.contains$1(_context, text)) A.throwExpression(A.ArgumentError$('The context line "' + _context + '" must contain "' + text + '".', null)); if (A.findLineStart(_context, text, start.get$column()) == null) A.throwExpression(A.ArgumentError$('The span text "' + text + '" must start at column ' + (start.get$column() + 1) + ' in a line within "' + _context + '".', null)); return t1; }, SourceSpanWithContext: function SourceSpanWithContext(t0, t1, t2, t3) { var _ = this; _._span_with_context$_context = t0; _.start = t1; _.end = t2; _.text = t3; }, SnapState$_nothing(initialState, _infoMessage, debugPrintWhenNotifiedPreMessage, $T) { var _null = null; return new A.SnapState(B.ConnectionState_0, initialState, _null, _null, _null, _infoMessage, _null, debugPrintWhenNotifiedPreMessage, false, $T._eval$1("SnapState<0>")); }, SnapStateX_copyWith(_this, data, infoMessage, $T) { var t1 = data == null ? _this.data : data, t2 = _this.error, t3 = _this.stackTrace, t4 = _this.onErrorRefresher, t5 = infoMessage == null ? _this._infoMessage : infoMessage; return new A.SnapState(_this._connectionState, t1, t2, t3, t4, t5, _this._isImmutable, _this._debugPrintWhenNotifiedPreMessage, _this.isActive, $T._eval$1("SnapState<0>")); }, MyElement$(widget) { var t1 = widget.createState$0(), t2 = new A.MyElement(t1, widget, B._ElementLifecycle_0); t1._framework$_element = t2; t1._widget = widget; return t2; }, OnBuilder$(builder, debugPrintWhenRebuild, key, listenTo, shouldRebuild, sideEffects, watch, $T) { var t1 = new A.OnBuilder(listenTo, sideEffects, shouldRebuild, debugPrintWhenRebuild, key, $T._eval$1("OnBuilder<0>")); t1.OnBuilder$8$builder$debugPrintWhenRebuild$key$listenTo$listenToMany$shouldRebuild$sideEffects$watch(builder, debugPrintWhenRebuild, key, listenTo, null, shouldRebuild, sideEffects, watch, $T); return t1; }, SideEffects$(dispose, initState, onAfterBuild, onSetState, $T) { var t1 = new A.SideEffects(initState, dispose, onSetState, $T._eval$1("SideEffects<0>")); t1.SideEffects$4$dispose$initState$onAfterBuild$onSetState(dispose, initState, onAfterBuild, onSetState, $T); return t1; }, OnX__canRebuild(_this, inj) { var _s19_ = "_reactiveModelState", _s11_ = "__snapState", t1 = A._lateReadCheck(inj.__InjectedBaseState__reactiveModelState, _s19_); t1.initializer.call$0(); if (A._lateReadCheck(t1.__ReactiveModelBase___snapState, _s11_)._connectionState === B.ConnectionState_1) return _this._onWaiting != null; t1 = A._lateReadCheck(inj.__InjectedBaseState__reactiveModelState, _s19_); t1.initializer.call$0(); if (A._lateReadCheck(t1.__ReactiveModelBase___snapState, _s11_).error != null) return _this._rm$_onError != null; return true; }, OnX_listenTo(_this, injected, debugPrintWhenRebuild, dispose, initState, key, onAfterBuild, onSetState, shouldRebuild, $T) { return new A.StateBuilderBase(new A.OnX_listenTo_closure(null, injected, $T, shouldRebuild, _this, onSetState, onAfterBuild, debugPrintWhenRebuild, initState, dispose), new A._OnWidget(injected, _this, type$._OnWidget_Widget), key, type$.StateBuilderBase__OnWidget_Widget); }, On_On(builder, $T) { return new A.On(builder, builder, new A.On_On_closure(builder, $T), builder, $T._eval$1("On<0>")); }, On_On$or(onData, onError, onIdle, onWaiting, or, $T) { var t1 = onData == null ? or : onData; return new A.On(or, or, new A.On_On$or_closure(or, $T), t1, $T._eval$1("On<0>")); }, RM_inject(creator, $T) { var t2, _null = null, inj = A._Cell$named("inj"), t1 = A.On_On(new A.RM_inject_closure(_null, inj, _null), type$.void); t1 = new A.InjectedImp(_null, t1, _null, _null, _null, _null, _null, _null, _null, 0, _null, A._setArrayType([], type$.JSArray_of_void_Function), A._setArrayType([null], type$.JSArray_of_nullable_dynamic_Function), A.LinkedHashSet_LinkedHashSet$_empty($T._eval$1("Injected<0>")), $T._eval$1("InjectedImp<0>")); t2 = new A.ReactiveModelBase(creator, t1.get$initialize(t1), true, _null, $T._eval$1("ReactiveModelBase<0>")); t2.__ReactiveModelBase___snapState = t2.__ReactiveModelBase__oldSnapState = A.SnapState$_nothing(_null, "INITIALIZING...", _null, $T); t1.__InjectedBaseState__reactiveModelState = t2; inj.set$finalLocalValue(t1); return t1; }, addToInjectedModels(inj) { $.injectedModels.add$1(0, inj); return new A.addToInjectedModels_closure(inj); }, addToContextSet(ctx) { $._contextSet.push(ctx); return new A.addToContextSet_closure(ctx); }, Injected: function Injected() { }, InjectedBase: function InjectedBase() { }, InjectedBaseState: function InjectedBaseState() { }, InjectedImp: function InjectedImp(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.undoRedoPersistState = null; _.middleSnapState = t0; _.onSetState = t1; _.debugPrintWhenNotifiedPreMessage = t2; _.toDebugString = t3; _.onInitialized = t4; _.onDisposed = t5; _.onWaiting = t6; _.onDataForSideEffect = t7; _.onError = t8; _.oldSnap = null; _.undoStackLength = t9; _.dependsOn = t10; _._dependentDebounceTimer = null; _._dependentDisposers = t11; _.cachedCreatorMocks = t12; _.inheritedInjects = t13; _.__InjectedBaseState__reactiveModelState = _.__ReactiveModel_rebuild = $; _.$ti = t14; }, InjectedImp_initialize_closure: function InjectedImp_initialize_closure(t0, t1, t2) { this._box_1 = t0; this.$this = t1; this.creatorMock = t2; }, InjectedImp_initialize_closure0: function InjectedImp_initialize_closure0(t0, t1) { this._box_1 = t0; this.$this = t1; }, InjectedImp_initialize__closure: function InjectedImp_initialize__closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, InjectedImp_initialize_closure1: function InjectedImp_initialize_closure1(t0) { this.$this = t0; }, _Rebuild: function _Rebuild(t0, t1) { this._injected = t0; this.$ti = t1; }, ReactiveModel: function ReactiveModel() { }, ReactiveModelBase: function ReactiveModelBase(t0, t1, t2, t3, t4) { var _ = this; _.creator = t0; _.initializer = t1; _.autoDisposeWhenNotUsed = t2; _.__ReactiveModelBase__oldSnapState = _.__ReactiveModelBase___snapState = $; _._initialState = _._removeFromInjectedList = null; _._rm$_isInitialized = false; _._rm$_isDisposed = true; _._endStreamCompleter = _._rm$_completer = _.subscription = null; _.__ReactiveModelBase_listeners = $; _.debugPrintWhenNotifiedPreMessage = t3; _._initialStateCreator = null; _.$ti = t4; }, ReactiveModelBase__setInitialStateCreator_closure: function ReactiveModelBase__setInitialStateCreator_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.middleCreator = t1; _.middleState = t2; _.onDone = t3; }, ReactiveModelBase__setInitialStateCreator__closure: function ReactiveModelBase__setInitialStateCreator__closure(t0, t1) { this.$this = t0; this.middleCreator = t1; }, ReactiveModelBase_setStateFn_closure: function ReactiveModelBase_setStateFn_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _.$this = t1; _.fn = t2; _.middleState = t3; _.$call = t4; _.skipWaiting = t5; _.debugMessage = t6; _.onDone = t7; }, ReactiveModelBase_setStateFn__closure: function ReactiveModelBase_setStateFn__closure(t0) { this.$call = t0; }, ReactiveModelBase_setStateFn__closure0: function ReactiveModelBase_setStateFn__closure0(t0, t1) { this.$this = t0; this.data = t1; }, ReactiveModelBase_setStateFn__closure1: function ReactiveModelBase_setStateFn__closure1(t0) { this.$this = t0; }, ReactiveModelBase__streamSubscription_closure: function ReactiveModelBase__streamSubscription_closure(t0, t1) { this.$this = t0; this.middleState = t1; }, ReactiveModelBase__streamSubscription_closure1: function ReactiveModelBase__streamSubscription_closure1(t0, t1, t2) { this.$this = t0; this.middleState = t1; this.refresher = t2; }, ReactiveModelBase__streamSubscription_closure0: function ReactiveModelBase__streamSubscription_closure0(t0) { this.$this = t0; }, ReactiveModelListener: function ReactiveModelListener(t0, t1, t2, t3) { var _ = this; _._rm$_listeners = t0; _._cleaners = t1; _._sideEffectListeners = t2; _.onFirstListerAdded = null; _.$ti = t3; }, ReactiveModelListener_addListenerForRebuild_closure0: function ReactiveModelListener_addListenerForRebuild_closure0(t0, t1) { this.$this = t0; this.setState = t1; }, ReactiveModelListener_addListenerForRebuild_closure: function ReactiveModelListener_addListenerForRebuild_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.cleanDisposer = t1; _.setState = t2; _.clean = t3; }, ReactiveModelListener_addCleaner_closure: function ReactiveModelListener_addCleaner_closure(t0, t1) { this.$this = t0; this.cleaner = t1; }, SnapState: function SnapState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._connectionState = t0; _.data = t1; _.error = t2; _.stackTrace = t3; _.onErrorRefresher = t4; _._infoMessage = t5; _._isImmutable = t6; _._debugPrintWhenNotifiedPreMessage = t7; _.isActive = t8; _.$ti = t9; }, MiddleSnapState: function MiddleSnapState(t0, t1, t2) { this.currentSnap = t0; this.nextSnap = t1; this.$ti = t2; }, StateBuilderBase: function StateBuilderBase(t0, t1, t2, t3) { var _ = this; _.initState = t0; _.widget = t1; _.key = t2; _.$ti = t3; }, _StateBuilderBaseState: function _StateBuilderBaseState(t0, t1) { var _ = this; _.___StateBuilderBaseState__builder = $; _._isMounted = false; _.___StateBuilderBaseState_removeFromContextSet = $; _._widget = _.cachedAddToObs = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _StateBuilderBaseState_initState_closure: function _StateBuilderBaseState_initState_closure(t0) { this.$this = t0; }, _StateBuilderBaseState_initState__closure: function _StateBuilderBaseState_initState__closure() { }, LifeCycleHooks: function LifeCycleHooks(t0, t1, t2, t3, t4) { var _ = this; _.mountedState = t0; _.dispose = t1; _.didUpdateWidget = t2; _.builder = t3; _.$ti = t4; }, MyStatefulWidget: function MyStatefulWidget() { }, MyElement: function MyElement(t0, t1, t2) { var _ = this; _._framework$_state = t0; _._didChangeDependencies = false; _._slot = _._notificationTree = _._debugReassembleConfig = _._framework$_parent = _._framework$_child = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, ExtendedState: function ExtendedState() { }, OnBuilder: function OnBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _.listenTo = t0; _.__OnBuilder_onBuilder = $; _.sideEffects = t1; _.shouldRebuild = t2; _.debugPrintWhenRebuild = t3; _.key = t4; _.$ti = t5; }, OnBuilder_closure: function OnBuilder_closure(t0, t1) { this.builder = t0; this.T = t1; }, OnBuilder_build_closure: function OnBuilder_build_closure(t0) { this.$this = t0; }, OnBuilder_build_closure0: function OnBuilder_build_closure0(t0) { this.$this = t0; }, OnBuilder_build_closure1: function OnBuilder_build_closure1(t0) { this.$this = t0; }, OnBuilder_build_closure2: function OnBuilder_build_closure2(t0) { this.$this = t0; }, SideEffects: function SideEffects(t0, t1, t2, t3) { var _ = this; _.initState = t0; _.dispose = t1; _.onSetState = t2; _._onAfterBuild = null; _.$ti = t3; }, SideEffects_closure: function SideEffects_closure(t0) { this.onAfterBuild = t0; }, SideEffects__closure: function SideEffects__closure(t0) { this.onAfterBuild = t0; }, _On: function _On(t0, t1) { this.orElse = t0; this.$ti = t1; }, OnX_listenTo_closure: function OnX_listenTo_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.watch = t0; _.injected = t1; _.T = t2; _.shouldRebuild = t3; _._this = t4; _.onSetState = t5; _.onAfterBuild = t6; _.debugPrintWhenRebuild = t7; _.initState = t8; _.dispose = t9; }, OnX_listenTo__closure: function OnX_listenTo__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._box_0 = t0; _.inj = t1; _.disposer = t2; _.shouldRebuild = t3; _.injected = t4; _.watch = t5; _._this = t6; _.onSetState = t7; _.onAfterBuild = t8; _.setState = t9; _.debugPrintWhenRebuild = t10; _.initState = t11; _.T = t12; }, OnX_listenTo___closure: function OnX_listenTo___closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._box_0 = t0; _.shouldRebuild = t1; _.injected = t2; _.watch = t3; _._this = t4; _.onSetState = t5; _.onAfterBuild = t6; _.setState = t7; _.debugPrintWhenRebuild = t8; _.T = t9; }, OnX_listenTo____closure: function OnX_listenTo____closure(t0, t1) { this.onAfterBuild = t0; this.injected = t1; }, OnX_listenTo___closure0: function OnX_listenTo___closure0(t0) { this.inj = t0; }, OnX_listenTo___closure1: function OnX_listenTo___closure1(t0, t1) { this.onAfterBuild = t0; this.inj = t1; }, OnX_listenTo__closure0: function OnX_listenTo__closure0(t0, t1) { this.dispose = t0; this.disposer = t1; }, OnX_listenTo__closure1: function OnX_listenTo__closure1() { }, OnX_listenTo__closure2: function OnX_listenTo__closure2(t0) { this.injected = t0; }, _OnWidget: function _OnWidget(t0, t1, t2) { this.inject = t0; this.on = t1; this.$ti = t2; }, On: function On(t0, t1, t2, t3, t4) { var _ = this; _._onIdle = t0; _._onWaiting = t1; _._rm$_onError = t2; _._rm$_onData = t3; _.$ti = t4; }, On_On_closure: function On_On_closure(t0, t1) { this.builder = t0; this.T = t1; }, On_On$or_closure: function On_On$or_closure(t0, t1) { this.or = t0; this.T = t1; }, OnCombined: function OnCombined(t0, t1, t2, t3, t4) { var _ = this; _._onIdle = t0; _._onWaiting = t1; _._rm$_onError = t2; _._rm$_onData = t3; _._combinedSnap = _._notifiedInject = null; _.$ti = t4; }, RM_inject_closure: function RM_inject_closure(t0, t1, t2) { this.sideEffects = t0; this.inj = t1; this.onSetState = t2; }, addToInjectedModels_closure: function addToInjectedModels_closure(t0) { this.inj = t0; }, addToContextSet_closure: function addToContextSet_closure(t0) { this.ctx = t0; }, StringScannerException: function StringScannerException(t0, t1, t2) { this.source = t0; this._span_exception$_message = t1; this._span_exception$_span = t2; }, StringScanner: function StringScanner(t0, t1) { var _ = this; _.sourceUrl = t0; _.string = t1; _._string_scanner$_position = 0; _._lastMatchPosition = _._lastMatch = null; }, DocumentRange: function DocumentRange(t0, t1) { this.start = t0; this.end = t1; }, DocumentPosition: function DocumentPosition(t0, t1) { this.nodeId = t0; this.nodePosition = t1; }, DocumentNode: function DocumentNode() { }, DocumentComposer$() { var t1 = $.$get$ChangeNotifier__emptyListeners(); t1 = new A.DocumentComposer(new A.ValueNotifier(null, t1, type$.ValueNotifier_nullable_DocumentSelection), new A.ValueNotifier(B.C_ImeConfiguration, t1, type$.ValueNotifier_ImeConfiguration), new A.ComposerPreferences(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution), t1), t1); t1.DocumentComposer$2$imeConfiguration$initialSelection(null, null); return t1; }, DocumentComposer: function DocumentComposer(t0, t1, t2, t3) { var _ = this; _._document_composer$_selection = null; _.selectionNotifier = t0; _.imeConfiguration = t1; _._preferences = t2; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, DocumentComposer_closure: function DocumentComposer_closure(t0) { this.$this = t0; }, ComposerPreferences: function ComposerPreferences(t0, t1) { var _ = this; _._currentAttributions = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _ComposerPreferences_Object_ChangeNotifier: function _ComposerPreferences_Object_ChangeNotifier() { }, _DocumentComposer_Object_ChangeNotifier: function _DocumentComposer_Object_ChangeNotifier() { }, DocumentEditor: function DocumentEditor(t0) { this._document = t0; }, EditorCommandFunction: function EditorCommandFunction(t0) { this._execute = t0; }, DocumentEditorTransaction: function DocumentEditorTransaction(t0) { this._document = t0; }, MutableDocument: function MutableDocument(t0, t1) { var _ = this; _._nodes = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, MutableDocument_getNodeById_closure: function MutableDocument_getNodeById_closure(t0) { this.nodeId = t0; }, MutableDocument_getNode_closure: function MutableDocument_getNode_closure(t0) { this.position = t0; }, _MutableDocument_Object_ChangeNotifier: function _MutableDocument_Object_ChangeNotifier() { }, DocumentComponent: function DocumentComponent() { }, MovementModifier: function MovementModifier(t0) { this.id = t0; }, InspectDocumentAffinity_getAffinityBetween(_this, base, extent) { var t2, baseIndex, extentIndex, affinity, t1 = _this.getNode$1(base); t1.toString; t2 = _this._nodes; baseIndex = B.JSArray_methods.indexOf$1(t2, t1); t1 = _this.getNode$1(extent); t1.toString; extentIndex = B.JSArray_methods.indexOf$1(t2, t1); affinity = A._Cell$named("affinity"); if (extentIndex > baseIndex) affinity.__late_helper$_value = B.TextAffinity_1; else if (extentIndex < baseIndex) affinity.__late_helper$_value = B.TextAffinity_0; else { t2 = base.nodePosition; affinity.__late_helper$_value = J.$eq$(t2, t1.selectUpstreamPosition$2(t2, extent.nodePosition)) ? B.TextAffinity_1 : B.TextAffinity_0; } return affinity._readLocal$0(); }, InspectDocumentSelection_selectUpstreamPosition(_this, docPosition1, docPosition2) { var t2, docPosition1NodeIndex, t3, docPosition2NodeIndex, t1 = _this.getNodeById$1(docPosition1.nodeId); t1.toString; t2 = _this._nodes; docPosition1NodeIndex = B.JSArray_methods.indexOf$1(t2, t1); t3 = _this.getNodeById$1(docPosition2.nodeId); t3.toString; docPosition2NodeIndex = B.JSArray_methods.indexOf$1(t2, t3); if (docPosition1NodeIndex < docPosition2NodeIndex) return docPosition1; else if (docPosition2NodeIndex < docPosition1NodeIndex) return docPosition2; t2 = docPosition1.nodePosition; return t1.selectUpstreamPosition$2(t2, docPosition2.nodePosition).$eq(0, t2) ? docPosition1 : docPosition2; }, InspectDocumentSelection_doesSelectionContainPosition(_this, selection, position) { var t1, t2, baseNodeIndex, t3, extentNodeIndex, t4, upstreamNode, upstreamNodeIndex, downstreamNode, downstreamNodeIndex, positionNodeIndex, upstreamPosition, downstreamCap, upstreamCap, downstreamPosition = selection.base, downstreamPosition0 = selection.extent; if (J.$eq$(downstreamPosition, downstreamPosition0)) return false; t1 = _this.getNodeById$1(downstreamPosition.nodeId); t1.toString; t2 = _this._nodes; baseNodeIndex = B.JSArray_methods.indexOf$1(t2, t1); t3 = _this.getNodeById$1(downstreamPosition0.nodeId); t3.toString; extentNodeIndex = B.JSArray_methods.indexOf$1(t2, t3); t4 = baseNodeIndex < extentNodeIndex; if (t4) upstreamNode = t1; else upstreamNode = t3; upstreamNodeIndex = t4 ? baseNodeIndex : extentNodeIndex; if (t4) downstreamNode = t3; else downstreamNode = t1; downstreamNodeIndex = t4 ? extentNodeIndex : baseNodeIndex; t1 = _this.getNodeById$1(position.nodeId); t1.toString; positionNodeIndex = B.JSArray_methods.indexOf$1(t2, t1); if (upstreamNodeIndex < positionNodeIndex && positionNodeIndex < downstreamNodeIndex) return true; if (positionNodeIndex === upstreamNodeIndex) { upstreamPosition = A.InspectDocumentSelection_selectUpstreamPosition(_this, downstreamPosition, downstreamPosition0); if (upstreamPosition.$eq(0, downstreamPosition)) downstreamPosition = downstreamPosition0; downstreamCap = upstreamNodeIndex === downstreamNodeIndex ? downstreamPosition.nodePosition : upstreamNode.get$endPosition(); t1 = position.nodePosition; return upstreamNode.selectDownstreamPosition$2(upstreamPosition.nodePosition, t1).$eq(0, upstreamNode.selectUpstreamPosition$2(t1, downstreamCap)); } if (positionNodeIndex === downstreamNodeIndex) { upstreamPosition = A.InspectDocumentSelection_selectUpstreamPosition(_this, downstreamPosition, downstreamPosition0); if (upstreamPosition.$eq(0, downstreamPosition)) downstreamPosition = downstreamPosition0; upstreamCap = downstreamNodeIndex === upstreamNodeIndex ? upstreamPosition.nodePosition : downstreamNode.get$beginningPosition(); t1 = position.nodePosition; return downstreamNode.selectDownstreamPosition$2(upstreamCap, t1).$eq(0, downstreamNode.selectUpstreamPosition$2(t1, downstreamPosition.nodePosition)); } return false; }, DocumentSelection: function DocumentSelection(t0, t1) { this.base = t0; this.extent = t1; }, DocumentNodeSelection: function DocumentNodeSelection(t0, t1, t2, t3, t4) { var _ = this; _.nodeId = t0; _.nodeSelection = t1; _.isExtent = t2; _.highlightWhenEmpty = t3; _.$ti = t4; }, EditContext: function EditContext(t0, t1, t2, t3) { var _ = this; _.editor = t0; _._getDocumentLayout = t1; _.composer = t2; _.commonOps = t3; }, StyleRule$(selector, styler) { return new A.StyleRule(selector, styler); }, BlockSelector$_(blockType, followingBlockType, indexMatcher, precedingBlockType) { return new A.BlockSelector(blockType, precedingBlockType, followingBlockType, indexMatcher); }, Stylesheet: function Stylesheet(t0, t1) { this.inlineTextStyler = t0; this.rules = t1; }, StyleRule: function StyleRule(t0, t1) { this.selector = t0; this.styler = t1; }, BlockSelector: function BlockSelector(t0, t1, t2, t3) { var _ = this; _._blockType = t0; _._precedingBlockType = t1; _._followingBlockType = t2; _._indexMatcher = t3; }, _LastBlockMatcher: function _LastBlockMatcher() { }, CascadingPadding: function CascadingPadding(t0, t1, t2, t3) { var _ = this; _.left = t0; _.right = t1; _.top = t2; _.bottom = t3; }, SelectionStyles: function SelectionStyles() { }, LinkAttribution: function LinkAttribution(t0) { this.url = t0; }, BlockquoteComponentViewModel$(backgroundColor, borderRadius, caret, caretColor, highlightWhenEmpty, maxWidth, nodeId, padding, selection, selectionColor, text, textAlignment, textDirection, textStyleBuilder) { return new A.BlockquoteComponentViewModel(text, textStyleBuilder, textDirection, textAlignment, selection, selectionColor, caret, caretColor, highlightWhenEmpty, backgroundColor, borderRadius, nodeId, maxWidth, padding); }, BlockquoteComponentBuilder: function BlockquoteComponentBuilder() { }, BlockquoteComponentViewModel: function BlockquoteComponentViewModel(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.text = t0; _.textStyleBuilder = t1; _.textDirection = t2; _.textAlignment = t3; _.selection = t4; _.selectionColor = t5; _.caret = t6; _.caretColor = t7; _.highlightWhenEmpty = t8; _.backgroundColor = t9; _.borderRadius = t10; _.nodeId = t11; _.maxWidth = t12; _.padding = t13; }, BlockquoteComponent: function BlockquoteComponent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.textKey = t0; _.text = t1; _.styleBuilder = t2; _.textSelection = t3; _.selectionColor = t4; _.backgroundColor = t5; _.borderRadius = t6; _.showCaret = t7; _.caretColor = t8; _.highlightWhenEmpty = t9; _.key = t10; }, _BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure: function _BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(t0) { this.styles = t0; }, _BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel: function _BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel() { }, BlockNode: function BlockNode() { }, BoxComponent: function BoxComponent(t0, t1) { this.child = t0; this.key = t1; }, _BoxComponentState: function _BoxComponentState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, SelectableBox: function SelectableBox(t0, t1, t2, t3, t4, t5) { var _ = this; _.selection = t0; _.selectionColor = t1; _.showCaret = t2; _.caretColor = t3; _.child = t4; _.key = t5; }, __BoxComponentState_State_DocumentComponent: function __BoxComponentState_State_DocumentComponent() { }, CommonEditorOperations_getDocumentPositionAfterExpandedDeletion($document, selection) { var t1, baseNodeIndex, extentPosition, extentNode, extentNodeIndex, t2, topNodePosition, t3, bottomNodePosition, newSelectionPosition, baseOffset, extentOffset, basePosition = selection.base, baseNode = $document.getNode$1(basePosition); if (baseNode == null) throw A.wrapException(A.Exception_Exception("Failed to _getDocumentPositionAfterDeletion because the base node no longer exists.")); t1 = $document._nodes; baseNodeIndex = B.JSArray_methods.indexOf$1(t1, baseNode); extentPosition = selection.extent; extentNode = $document.getNode$1(extentPosition); if (extentNode == null) throw A.wrapException(A.Exception_Exception("Failed to _getDocumentPositionAfterDeletion because the extent node no longer exists.")); extentNodeIndex = B.JSArray_methods.indexOf$1(t1, extentNode); t1 = $document.getNodeAt$1(Math.min(baseNodeIndex, extentNodeIndex)); t1.toString; t2 = baseNodeIndex < extentNodeIndex; topNodePosition = t2 ? basePosition.nodePosition : extentPosition.nodePosition; t3 = $document.getNodeAt$1(Math.max(baseNodeIndex, extentNodeIndex)); t3.toString; bottomNodePosition = t2 ? extentPosition.nodePosition : basePosition.nodePosition; if (baseNodeIndex !== extentNodeIndex) { t2 = J.getInterceptor$(topNodePosition); if (t2.$eq(topNodePosition, t1.get$beginningPosition()) && J.$eq$(bottomNodePosition, t3.get$endPosition())) newSelectionPosition = new A.DocumentPosition(baseNode.get$id(baseNode), B.TextNodePosition_0_TextAffinity_1); else if (t2.$eq(topNodePosition, t1.get$beginningPosition())) newSelectionPosition = new A.DocumentPosition(t3.get$id(t3), t3.get$beginningPosition()); else if (J.$eq$(bottomNodePosition, t3.get$endPosition())) newSelectionPosition = new A.DocumentPosition(t1.get$id(t1), topNodePosition); else newSelectionPosition = baseNodeIndex <= extentNodeIndex ? basePosition : extentPosition; } else { t1 = basePosition.nodePosition; if (t1 instanceof A.UpstreamDownstreamNodePosition) newSelectionPosition = new A.DocumentPosition(baseNode.get$id(baseNode), B.TextNodePosition_0_TextAffinity_1); else if (t1 instanceof A.TextNodePosition) { baseOffset = t1.offset; extentOffset = type$.TextNodePosition._as(extentPosition.nodePosition).offset; newSelectionPosition = new A.DocumentPosition(baseNode.get$id(baseNode), new A.TextNodePosition(Math.min(A.checkNum(baseOffset), A.checkNum(extentOffset)), B.TextAffinity_1)); } else throw A.wrapException(A.Exception_Exception("Unknown selection position type: " + basePosition.toString$0(0) + ", for node: " + baseNode.toString$0(0) + ", within document selection: " + selection.toString$0(0))); } return newSelectionPosition; }, CommonEditorOperations: function CommonEditorOperations(t0, t1, t2) { this.editor = t0; this.composer = t1; this.documentLayoutResolver = t2; }, CommonEditorOperations_deleteUpstream_closure: function CommonEditorOperations_deleteUpstream_closure(t0) { this.nodeBefore = t0; }, CommonEditorOperations_deleteUpstream_closure0: function CommonEditorOperations_deleteUpstream_closure0(t0) { this.node = t0; }, CommonEditorOperations__replaceBlockNodeWithEmptyParagraphAndCollapsedSelection_closure: function CommonEditorOperations__replaceBlockNodeWithEmptyParagraphAndCollapsedSelection_closure(t0, t1) { this.$this = t0; this.nodeId = t1; }, CommonEditorOperations_convertParagraphByPatternMatching_closure: function CommonEditorOperations_convertParagraphByPatternMatching_closure(t0, t1) { this.node = t0; this.newNode = t1; }, CommonEditorOperations_convertParagraphByPatternMatching_closure0: function CommonEditorOperations_convertParagraphByPatternMatching_closure0(t0) { this.paragraphNodeIndex = t0; }, CommonEditorOperations_convertParagraphByPatternMatching_closure1: function CommonEditorOperations_convertParagraphByPatternMatching_closure1(t0, t1) { this.node = t0; this.newNode = t1; }, CommonEditorOperations_convertParagraphByPatternMatching_closure2: function CommonEditorOperations_convertParagraphByPatternMatching_closure2() { }, CommonEditorOperations_convertParagraphByPatternMatching_closure3: function CommonEditorOperations_convertParagraphByPatternMatching_closure3() { }, CommonEditorOperations_convertParagraphByPatternMatching_closure4: function CommonEditorOperations_convertParagraphByPatternMatching_closure4() { }, CommonEditorOperations__processUrlNode_closure: function CommonEditorOperations__processUrlNode_closure(t0, t1) { this.node = t0; this.imageNode = t1; }, CommonEditorOperations_insertBlockLevelNewline_closure: function CommonEditorOperations_insertBlockLevelNewline_closure(t0, t1) { this.extentNode = t0; this.newNodeId = t1; }, CommonEditorOperations_insertBlockLevelNewline_closure0: function CommonEditorOperations_insertBlockLevelNewline_closure0(t0, t1) { this.extentNode = t0; this.newNodeId = t1; }, CommonEditorOperations_convertToListItem_closure: function CommonEditorOperations_convertToListItem_closure(t0, t1) { this.node = t0; this.newNode = t1; }, CommonEditorOperations_convertToBlockquote_closure: function CommonEditorOperations_convertToBlockquote_closure(t0, t1) { this.node = t0; this.newNode = t1; }, CommonEditorOperations_convertToParagraph_closure: function CommonEditorOperations_convertToParagraph_closure(t0, t1) { this.extentNode = t0; this.newMetadata = t1; }, _PasteEditorCommand: function _PasteEditorCommand(t0, t1, t2) { this._content = t0; this._pastePosition = t1; this._common_editor_operations$_composer = t2; }, _PasteEditorCommand_execute_closure: function _PasteEditorCommand_execute_closure() { }, AxisOffset: function AxisOffset(t0, t1) { this.leading = t0; this.trailing = t1; }, DocumentMouseInteractor: function DocumentMouseInteractor(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.focusNode = t0; _.editContext = t1; _.scrollController = t2; _.showDebugPaint = t3; _.scrollingMinimapId = t4; _.child = t5; _.key = t6; }, _DocumentMouseInteractorState: function _DocumentMouseInteractorState(t0, t1, t2, t3, t4, t5) { var _ = this; _._documentWrapperKey = t0; _.___DocumentMouseInteractorState__scrollController = _.___DocumentMouseInteractorState__focusNode = $; _._document_gestures_mouse$_ancestorScrollPosition = null; _._document_gestures_mouse$_selectionType = t1; _._hasAncestorScrollable = false; _._dragEndInDoc = _._document_gestures_mouse$_dragEndInInteractor = _._document_gestures_mouse$_dragStartScrollOffset = _._document_gestures_mouse$_dragStartInDoc = null; _._document_gestures_mouse$_scrollDownOnTick = _._document_gestures_mouse$_scrollUpOnTick = _._expandSelectionDuringDrag = false; _.___DocumentMouseInteractorState__ticker = $; _._cursorStyle = t2; _._debugInstrumentation = null; _.SingleTickerProviderStateMixin__ticker = t3; _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _DocumentMouseInteractorState__onSelectionChange_closure: function _DocumentMouseInteractorState__onSelectionChange_closure(t0) { this.$this = t0; }, _DocumentMouseInteractorState__onPanUpdate_closure: function _DocumentMouseInteractorState__onPanUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, _DocumentMouseInteractorState__onDragEnd_closure: function _DocumentMouseInteractorState__onDragEnd_closure(t0) { this.$this = t0; }, _DocumentMouseInteractorState__buildCursorStyle_closure: function _DocumentMouseInteractorState__buildCursorStyle_closure(t0) { this.$this = t0; }, _DocumentMouseInteractorState__buildGestureInput_closure: function _DocumentMouseInteractorState__buildGestureInput_closure() { }, _DocumentMouseInteractorState__buildGestureInput_closure0: function _DocumentMouseInteractorState__buildGestureInput_closure0(t0) { this.$this = t0; }, _DocumentMouseInteractorState__buildGestureInput_closure1: function _DocumentMouseInteractorState__buildGestureInput_closure1() { }, _DocumentMouseInteractorState__buildGestureInput_closure2: function _DocumentMouseInteractorState__buildGestureInput_closure2(t0) { this.$this = t0; }, SelectionType: function SelectionType(t0, t1) { this.index = t0; this._core$_name = t1; }, __DocumentMouseInteractorState_State_SingleTickerProviderStateMixin: function __DocumentMouseInteractorState_State_SingleTickerProviderStateMixin() { }, ScrollableDocument: function ScrollableDocument(t0, t1, t2, t3, t4) { var _ = this; _.scrollController = t0; _.disableDragScrolling = t1; _.documentLayerLink = t2; _.child = t3; _.key = t4; }, MagnifierAndToolbarController: function MagnifierAndToolbarController() { }, DragHandleAutoScroller: function DragHandleAutoScroller(t0, t1, t2, t3) { var _ = this; _._document_gestures_touch$_autoScroller = t0; _._dragAutoScrollBoundary = t1; _._getScrollPosition = t2; _._getViewportBox = t3; }, _MagnifierAndToolbarController_Object_ChangeNotifier: function _MagnifierAndToolbarController_Object_ChangeNotifier() { }, AndroidDocumentTouchInteractor: function AndroidDocumentTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.focusNode = t0; _.composer = t1; _.document = t2; _.documentKey = t3; _.getDocumentLayout = t4; _.scrollController = t5; _.popoverToolbarBuilder = t6; _.createOverlayControlsClipper = t7; _.child = t8; _.key = t9; }, _AndroidDocumentTouchInteractorState: function _AndroidDocumentTouchInteractorState(t0, t1, t2, t3, t4) { var _ = this; _.___AndroidDocumentTouchInteractorState__scrollController = $; _._document_gestures_touch_android$_controlsOverlayEntry = _._document_gestures_touch_android$_activeScrollPosition = _._document_gestures_touch_android$_ancestorScrollPosition = null; _.___AndroidDocumentTouchInteractorState__editingController = $; _._document_gestures_touch_android$_documentLayoutLink = t0; _._document_gestures_touch_android$_magnifierFocalPointLink = t1; _.___AndroidDocumentTouchInteractorState__handleAutoScrolling = $; _._selectionType = _._document_gestures_touch_android$_dragEndInInteractor = _._document_gestures_touch_android$_globalDragOffset = _._document_gestures_touch_android$_dragStartScrollOffset = _._document_gestures_touch_android$_startDragPositionOffset = _._document_gestures_touch_android$_dragStartInDoc = _._document_gestures_touch_android$_globalStartDragOffset = null; _.SingleTickerProviderStateMixin__ticker = t2; _.SingleTickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _AndroidDocumentTouchInteractorState_initState_closure: function _AndroidDocumentTouchInteractorState_initState_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_initState_closure0: function _AndroidDocumentTouchInteractorState_initState_closure0(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_initState_closure1: function _AndroidDocumentTouchInteractorState_initState_closure1(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_didChangeDependencies_closure: function _AndroidDocumentTouchInteractorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_reassemble_closure: function _AndroidDocumentTouchInteractorState_reassemble_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_dispose_closure: function _AndroidDocumentTouchInteractorState_dispose_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_didChangeMetrics_closure: function _AndroidDocumentTouchInteractorState_didChangeMetrics_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState_didChangeMetrics__closure: function _AndroidDocumentTouchInteractorState_didChangeMetrics__closure() { }, _AndroidDocumentTouchInteractorState__onDocumentChange_closure: function _AndroidDocumentTouchInteractorState__onDocumentChange_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState__onSelectionChange_closure: function _AndroidDocumentTouchInteractorState__onSelectionChange_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState__showEditingControlsOverlay_closure: function _AndroidDocumentTouchInteractorState__showEditingControlsOverlay_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchInteractorState__positionCollapsedHandle_closure: function _AndroidDocumentTouchInteractorState__positionCollapsedHandle_closure(t0) { this.extentRect = t0; }, _AndroidDocumentTouchInteractorState__positionExpandedHandles_closure: function _AndroidDocumentTouchInteractorState__positionExpandedHandles_closure(t0, t1, t2) { this.affinity = t0; this.baseHandleOffset = t1; this.extentHandleOffset = t2; }, _AndroidDocumentTouchInteractorState__positionExpandedHandles_closure0: function _AndroidDocumentTouchInteractorState__positionExpandedHandles_closure0(t0, t1, t2) { this.affinity = t0; this.extentHandleOffset = t1; this.baseHandleOffset = t2; }, _AndroidDocumentTouchInteractorState__buildGestureInput_closure: function _AndroidDocumentTouchInteractorState__buildGestureInput_closure() { }, _AndroidDocumentTouchInteractorState__buildGestureInput_closure0: function _AndroidDocumentTouchInteractorState__buildGestureInput_closure0(t0) { this.$this = t0; }, AndroidDocumentTouchEditingControls: function AndroidDocumentTouchEditingControls(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editingController = t0; _.createOverlayControlsClipper = t1; _.handleColor = t2; _.onHandleDragStart = t3; _.onHandleDragUpdate = t4; _.onHandleDragEnd = t5; _.popoverToolbarBuilder = t6; _.showDebugPaint = t7; _.key = t8; }, _AndroidDocumentTouchEditingControlsState: function _AndroidDocumentTouchEditingControlsState(t0, t1, t2, t3, t4, t5) { var _ = this; _._document_gestures_touch_android$_collapsedHandleKey = t0; _._document_gestures_touch_android$_upstreamHandleKey = t1; _._document_gestures_touch_android$_downstreamHandleKey = t2; _._isDraggingHandle = _._isDraggingExpandedHandle = false; _._localDragOffset = null; _.___AndroidDocumentTouchEditingControlsState__caretBlinkController = $; _._document_gestures_touch_android$_prevCaretOffset = null; _.SingleTickerProviderStateMixin__ticker = t3; _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _AndroidDocumentTouchEditingControlsState__onCollapsedPanStart_closure: function _AndroidDocumentTouchEditingControlsState__onCollapsedPanStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, _AndroidDocumentTouchEditingControlsState__onExpandedHandleDragStart_closure: function _AndroidDocumentTouchEditingControlsState__onExpandedHandleDragStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, _AndroidDocumentTouchEditingControlsState__onPanUpdate_closure: function _AndroidDocumentTouchEditingControlsState__onPanUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, _AndroidDocumentTouchEditingControlsState__onHandleDragEnd_closure: function _AndroidDocumentTouchEditingControlsState__onHandleDragEnd_closure(t0) { this.$this = t0; }, _AndroidDocumentTouchEditingControlsState_build_closure: function _AndroidDocumentTouchEditingControlsState_build_closure(t0) { this.$this = t0; }, SelectionType0: function SelectionType0(t0, t1) { this.index = t0; this._core$_name = t1; }, AndroidDocumentGestureEditingController: function AndroidDocumentGestureEditingController(t0, t1, t2) { var _ = this; _._document_gestures_touch_android$_documentLayoutLink = t0; _._collapsedHandleAutoHideTimer = _._document_gestures_touch_android$_downstreamHandleOffset = _._document_gestures_touch_android$_upstreamHandleOffset = _._document_gestures_touch_android$_collapsedHandleOffset = _._document_gestures_touch_android$_caretHeight = _._document_gestures_touch_android$_caretTop = null; _._isCollapsedHandleAutoHidden = false; _._magnifierFocalPointLink = t1; _._shouldDisplayToolbar = _._isMagnifierVisible = false; _._toolbarBottomAnchor = _._toolbarTopAnchor = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, __AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin: function __AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin() { }, __AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver: function __AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver() { }, __AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin: function __AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin() { }, IOSDocumentTouchInteractor: function IOSDocumentTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.focusNode = t0; _.composer = t1; _.document = t2; _.documentKey = t3; _.getDocumentLayout = t4; _.scrollController = t5; _.popoverToolbarBuilder = t6; _.floatingCursorController = t7; _.createOverlayControlsClipper = t8; _.child = t9; _.key = t10; }, _IOSDocumentTouchInteractorState: function _IOSDocumentTouchInteractorState(t0, t1, t2, t3, t4) { var _ = this; _.___IOSDocumentTouchInteractorState__scrollController = $; _._controlsOverlayEntry = _._activeScrollPosition = _._ancestorScrollPosition = null; _.___IOSDocumentTouchInteractorState__editingController = $; _._documentLayerLink = t0; _._document_gestures_touch_ios$_magnifierFocalPointLink = t1; _.___IOSDocumentTouchInteractorState__handleAutoScrolling = $; _._dragHandleType = _._dragMode = _._dragEndInInteractor = _._globalDragOffset = _._dragStartScrollOffset = _._startDragPositionOffset = _._dragStartInDoc = _._globalStartDragOffset = null; _._waitingForMoreTaps = false; _.SingleTickerProviderStateMixin__ticker = t2; _.SingleTickerProviderStateMixin__tickerModeNotifier = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _IOSDocumentTouchInteractorState_initState_closure: function _IOSDocumentTouchInteractorState_initState_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState_initState_closure0: function _IOSDocumentTouchInteractorState_initState_closure0(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState_didChangeDependencies_closure: function _IOSDocumentTouchInteractorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState_didChangeDependencies__closure: function _IOSDocumentTouchInteractorState_didChangeDependencies__closure(t0, t1) { this.$this = t0; this.newScrollPosition = t1; }, _IOSDocumentTouchInteractorState_reassemble_closure: function _IOSDocumentTouchInteractorState_reassemble_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState_didChangeMetrics_closure: function _IOSDocumentTouchInteractorState_didChangeMetrics_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState_didChangeMetrics__closure: function _IOSDocumentTouchInteractorState_didChangeMetrics__closure() { }, _IOSDocumentTouchInteractorState__onDocumentChange_closure: function _IOSDocumentTouchInteractorState__onDocumentChange_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__onSelectionChange_closure: function _IOSDocumentTouchInteractorState__onSelectionChange_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__onTapUp_closure: function _IOSDocumentTouchInteractorState__onTapUp_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__onTapTimeout_closure: function _IOSDocumentTouchInteractorState__onTapTimeout_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__showEditingControlsOverlay_closure: function _IOSDocumentTouchInteractorState__showEditingControlsOverlay_closure(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__positionCollapsedHandle_closure: function _IOSDocumentTouchInteractorState__positionCollapsedHandle_closure(t0) { this.extentRect = t0; }, _IOSDocumentTouchInteractorState__buildGestureInput_closure: function _IOSDocumentTouchInteractorState__buildGestureInput_closure() { }, _IOSDocumentTouchInteractorState__buildGestureInput_closure0: function _IOSDocumentTouchInteractorState__buildGestureInput_closure0(t0) { this.$this = t0; }, _IOSDocumentTouchInteractorState__buildGestureInput_closure1: function _IOSDocumentTouchInteractorState__buildGestureInput_closure1() { }, _IOSDocumentTouchInteractorState__buildGestureInput_closure2: function _IOSDocumentTouchInteractorState__buildGestureInput_closure2(t0) { this.$this = t0; }, FloatingCursorController: function FloatingCursorController(t0) { var _ = this; _._document_gestures_touch_ios$_offset = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t0; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _DragMode: function _DragMode(t0, t1) { this.index = t0; this._core$_name = t1; }, IosDocumentTouchEditingControls: function IosDocumentTouchEditingControls(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.editingController = t0; _.document = t1; _.composer = t2; _.floatingCursorController = t3; _.documentLayout = t4; _.createOverlayControlsClipper = t5; _.handleColor = t6; _.onFloatingCursorStart = t7; _.onFloatingCursorMoved = t8; _.onFloatingCursorStop = t9; _.magnifierFocalPointOffset = t10; _.popoverToolbarBuilder = t11; _.showDebugPaint = t12; _.key = t13; }, _IosDocumentTouchEditingControlsState: function _IosDocumentTouchEditingControlsState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._collapsedHandleKey = t0; _._upstreamHandleKey = t1; _._downstreamHandleKey = t2; _.___IosDocumentTouchEditingControlsState__caretBlinkController = $; _._prevCaretOffset = null; _._isShowingFloatingCursor = t3; _._floatingCursorKey = t4; _._initialFloatingCursorOffset = null; _._floatingCursorOffset = t5; _._floatingCursorHeight = 20; _.SingleTickerProviderStateMixin__ticker = t6; _.SingleTickerProviderStateMixin__tickerModeNotifier = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; }, _IosDocumentTouchEditingControlsState__onFloatingCursorChange_closure: function _IosDocumentTouchEditingControlsState__onFloatingCursorChange_closure(t0) { this.$this = t0; }, _IosDocumentTouchEditingControlsState_build_closure: function _IosDocumentTouchEditingControlsState_build_closure(t0) { this.$this = t0; }, _IosDocumentTouchEditingControlsState__buildHandleOld_closure: function _IosDocumentTouchEditingControlsState__buildHandleOld_closure(t0) { this.$this = t0; }, _IosDocumentTouchEditingControlsState__buildFloatingCursor_closure: function _IosDocumentTouchEditingControlsState__buildFloatingCursor_closure(t0) { this.$this = t0; }, _IosDocumentTouchEditingControlsState__buildToolbar_closure: function _IosDocumentTouchEditingControlsState__buildToolbar_closure(t0) { this.$this = t0; }, IosDocumentGestureEditingController: function IosDocumentGestureEditingController(t0, t1, t2) { var _ = this; _._documentLayoutLink = t0; _._downstreamHandleOffset = _._downstreamCaretHeight = _._upstreamHandleOffset = _._upstreamCaretHeight = _._collapsedHandleOffset = _._caretHeight = _._caretTop = null; _._magnifierFocalPointLink = t1; _._shouldDisplayToolbar = _._isMagnifierVisible = false; _._toolbarBottomAnchor = _._toolbarTopAnchor = null; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _FloatingCursorController_Object_ChangeNotifier: function _FloatingCursorController_Object_ChangeNotifier() { }, __IOSDocumentTouchInteractorState_State_WidgetsBindingObserver: function __IOSDocumentTouchInteractorState_State_WidgetsBindingObserver() { }, __IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin: function __IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin() { }, __IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin: function __IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin() { }, DocumentImeSerializer$(_doc, _selection) { var t1 = type$.TextRange, t2 = type$.String; t1 = new A.DocumentImeSerializer(_doc, _selection, A.LinkedHashMap_LinkedHashMap$_empty(t1, t2), A.LinkedHashMap_LinkedHashMap$_empty(t2, t1), A._setArrayType([], type$.JSArray_DocumentNode)); t1._serialize$0(); return t1; }, DocumentImeInteractor: function DocumentImeInteractor(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.focusNode = t0; _.autofocus = t1; _.editContext = t2; _.softwareKeyboardHandler = t3; _.hardwareKeyboardActions = t4; _.floatingCursorController = t5; _.child = t6; _.key = t7; }, _DocumentImeInteractorState: function _DocumentImeInteractorState(t0, t1) { var _ = this; _.___DocumentImeInteractorState__focusNode = $; _._inputConnection = null; _._currentTextEditingValue = t0; _._lastTextEditingValueSentToOs = null; _._isApplyingDeltas = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _DocumentImeInteractorState_updateEditingValue_closure: function _DocumentImeInteractorState_updateEditingValue_closure(t0, t1) { this.$this = t0; this.value = t1; }, _DocumentImeInteractorState_updateEditingValueWithDeltas_closure: function _DocumentImeInteractorState_updateEditingValueWithDeltas_closure() { }, DocumentImeSerializer: function DocumentImeSerializer(t0, t1, t2, t3, t4) { var _ = this; _._doc = t0; _._document_input_ime$_selection = t1; _._imeRangesToDocTextNodes = t2; _._docTextNodesToImeRanges = t3; _._selectedNodes = t4; _.__DocumentImeSerializer__imeText = $; _._prependedPlaceholder = ""; }, ImeConfiguration: function ImeConfiguration() { }, SoftwareKeyboardHandler: function SoftwareKeyboardHandler(t0, t1, t2) { this.editor = t0; this.composer = t1; this.commonOps = t2; }, KeyboardEditingToolbar: function KeyboardEditingToolbar(t0, t1, t2, t3) { var _ = this; _.document = t0; _.composer = t1; _.commonOps = t2; _.key = t3; }, KeyboardEditingToolbar_build_closure: function KeyboardEditingToolbar_build_closure(t0, t1) { this.$this = t0; this.selection = t1; }, DocumentKeyboardInteractor: function DocumentKeyboardInteractor(t0, t1, t2, t3, t4, t5) { var _ = this; _.focusNode = t0; _.autofocus = t1; _.editContext = t2; _.keyboardActions = t3; _.child = t4; _.key = t5; }, ExecutionInstruction: function ExecutionInstruction(t0, t1) { this.index = t0; this._core$_name = t1; }, HorizontalRuleNode$(id) { var t1 = new A.HorizontalRuleNode(id, $.$get$ChangeNotifier__emptyListeners(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1.putMetadataValue$2("blockType", B.NamedAttribution_horizontalRule); return t1; }, HorizontalRuleNode: function HorizontalRuleNode(t0, t1, t2) { var _ = this; _.id = t0; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _._metadata = t2; }, HorizontalRuleComponentBuilder: function HorizontalRuleComponentBuilder() { }, HorizontalRuleComponentViewModel: function HorizontalRuleComponentViewModel(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.selection = t0; _.selectionColor = t1; _.caret = t2; _.caretColor = t3; _.nodeId = t4; _.maxWidth = t5; _.padding = t6; }, HorizontalRuleComponent: function HorizontalRuleComponent(t0, t1, t2, t3, t4, t5) { var _ = this; _.componentKey = t0; _.selectionColor = t1; _.selection = t2; _.caretColor = t3; _.showCaret = t4; _.key = t5; }, _HorizontalRuleNode_BlockNode_ChangeNotifier: function _HorizontalRuleNode_BlockNode_ChangeNotifier() { }, ImageNode$(altText, id, imageUrl) { var t1 = new A.ImageNode(id, imageUrl, altText, $.$get$ChangeNotifier__emptyListeners(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1.set$metadata(0, null); t1.putMetadataValue$2("blockType", B.NamedAttribution_image); return t1; }, ImageNode: function ImageNode(t0, t1, t2, t3, t4) { var _ = this; _.id = t0; _._imageUrl = t1; _._altText = t2; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t3; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _._metadata = t4; }, ImageComponentBuilder: function ImageComponentBuilder() { }, ImageComponentViewModel: function ImageComponentViewModel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.imageUrl = t0; _.selection = t1; _.selectionColor = t2; _.caret = t3; _.caretColor = t4; _.nodeId = t5; _.maxWidth = t6; _.padding = t7; }, ImageComponent: function ImageComponent(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.componentKey = t0; _.imageUrl = t1; _.selectionColor = t2; _.selection = t3; _.caretColor = t4; _.showCaret = t5; _.key = t6; }, _ImageNode_BlockNode_ChangeNotifier: function _ImageNode_BlockNode_ChangeNotifier() { }, SingleColumnDocumentLayout: function SingleColumnDocumentLayout(t0, t1, t2) { this.presenter = t0; this.componentBuilders = t1; this.key = t2; }, _SingleColumnDocumentLayoutState: function _SingleColumnDocumentLayoutState(t0, t1, t2) { var _ = this; _._nodeIdsToComponentKeys = t0; _._topToBottomComponentKeys = t1; _.___SingleColumnDocumentLayoutState__presenterListener = $; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _SingleColumnDocumentLayoutState__onViewModelChange_closure: function _SingleColumnDocumentLayoutState__onViewModelChange_closure() { }, _SingleColumnDocumentLayoutState__getDocumentPositionInComponentNearOffset_closure: function _SingleColumnDocumentLayoutState__getDocumentPositionInComponentNearOffset_closure(t0) { this.componentKey = t0; }, _SingleColumnDocumentLayoutState__getNodeIdsBetween_closure: function _SingleColumnDocumentLayoutState__getNodeIdsBetween_closure(t0) { this.$this = t0; }, _SingleColumnDocumentLayoutState__getNodeIdsBetween__closure: function _SingleColumnDocumentLayoutState__getNodeIdsBetween__closure(t0) { this.componentKey = t0; }, _SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure: function _SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure(t0) { this.componentKey = t0; }, _SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure0: function _SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure0(t0) { this.componentKey = t0; }, _SingleColumnDocumentLayoutState__buildDocComponents_closure: function _SingleColumnDocumentLayoutState__buildDocComponents_closure(t0, t1) { this.$this = t0; this.componentKey = t1; }, _SingleColumnDocumentLayoutState__buildDocComponents_closure0: function _SingleColumnDocumentLayoutState__buildDocComponents_closure0() { }, _PresenterComponentBuilder: function _PresenterComponentBuilder(t0, t1, t2, t3) { var _ = this; _.presenter = t0; _.watchNode = t1; _.builder = t2; _.key = t3; }, _PresenterComponentBuilderState: function _PresenterComponentBuilderState(t0) { var _ = this; _.___PresenterComponentBuilderState__presenterListener = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PresenterComponentBuilderState__onViewModelChange_closure: function _PresenterComponentBuilderState__onViewModelChange_closure() { }, _Component: function _Component(t0, t1, t2, t3) { var _ = this; _.componentBuilders = t0; _.componentKey = t1; _.componentViewModel = t2; _.key = t3; }, noStyleBuilder(attributions) { return B.TextStyle_zIQ0; }, SingleColumnLayoutViewModel$(componentViewModels, padding) { var t1 = new A.SingleColumnLayoutViewModel(padding, componentViewModels, A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.SingleColumnLayoutComponentViewModel)); t1.SingleColumnLayoutViewModel$2$componentViewModels$padding(componentViewModels, padding); return t1; }, SingleColumnDocumentComponentContext: function SingleColumnDocumentComponentContext(t0, t1) { this.context = t0; this.componentKey = t1; }, SingleColumnLayoutPresenter: function SingleColumnLayoutPresenter(t0, t1, t2, t3, t4) { var _ = this; _.__presenter$_document = t0; _._componentBuilders = t1; _._pipeline = t2; _._phaseViewModels = t3; _._earliestDirtyPhase = 0; _.__SingleColumnLayoutPresenter__viewModel = $; _.__presenter$_listeners = t4; }, SingleColumnLayoutPresenter__assemblePipeline_closure: function SingleColumnLayoutPresenter__assemblePipeline_closure(t0, t1) { this.$this = t0; this.i = t1; }, SingleColumnLayoutPresenterChangeListener: function SingleColumnLayoutPresenterChangeListener(t0, t1) { this.__presenter$_onPresenterMarkedDirty = t0; this.__presenter$_onViewModelChange = t1; }, SingleColumnLayoutStylePhase: function SingleColumnLayoutStylePhase() { }, SingleColumnLayoutViewModel: function SingleColumnLayoutViewModel(t0, t1, t2) { this.padding = t0; this._componentViewModels = t1; this._viewModelsByNodeId = t2; }, SingleColumnLayoutComponentViewModel: function SingleColumnLayoutComponentViewModel() { }, SingleColumnLayoutComponentStyles_SingleColumnLayoutComponentStyles$fromMetadata(node) { var _s18_ = "singleColumnLayout", t1 = node._metadata, t2 = t1.$index(0, _s18_); t2 = t2 == null ? null : J.$index$asx(t2, "width"); t1 = t1.$index(0, _s18_); return new A.SingleColumnLayoutComponentStyles(t2, t1 == null ? null : J.$index$asx(t1, "padding")); }, SingleColumnLayoutCustomComponentStyler: function SingleColumnLayoutCustomComponentStyler() { this._dirtyCallback = null; }, SingleColumnLayoutComponentStyles: function SingleColumnLayoutComponentStyles(t0, t1) { this.width = t0; this.padding = t1; }, SingleColumnStylesheetStyler: function SingleColumnStylesheetStyler(t0) { this._stylesheet = t0; this._dirtyCallback = null; }, SingleColumnLayoutSelectionStyler: function SingleColumnLayoutSelectionStyler(t0, t1, t2) { var _ = this; _.__styler_user_selection$_document = t0; _.__styler_user_selection$_composer = t1; _._selectionStyles = t2; _._shouldDocumentShowCaret = false; _._dirtyCallback = null; }, SingleColumnLayoutSelectionStyler__computeNodeSelection_closure: function SingleColumnLayoutSelectionStyler__computeNodeSelection_closure(t0) { this.node = t0; }, ListItemNode$ordered(id, indent, text) { var t1 = new A.ListItemNode(B.ListItemType_0, indent, id, text, $.$get$ChangeNotifier__emptyListeners(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1.TextNode$3$id$metadata$text(id, null, text); t1.putMetadataValue$2("blockType", B.NamedAttribution_listItem); return t1; }, ListItemNode$unordered(id, indent, text) { var t1 = new A.ListItemNode(B.ListItemType_1, indent, id, text, $.$get$ChangeNotifier__emptyListeners(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1.TextNode$3$id$metadata$text(id, null, text); t1.putMetadataValue$2("blockType", B.NamedAttribution_listItem); return t1; }, ListItemNode$(id, indent, itemType, text) { var t1 = new A.ListItemNode(itemType, indent, id, text, $.$get$ChangeNotifier__emptyListeners(), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1.TextNode$3$id$metadata$text(id, null, text); return t1; }, ListItemComponentViewModel$(caret, caretColor, indent, maxWidth, nodeId, ordinalValue, padding, selection, selectionColor, text, textDirection, textStyleBuilder, type) { return new A.ListItemComponentViewModel(type, ordinalValue, indent, text, textStyleBuilder, textDirection, selection, selectionColor, caret, caretColor, nodeId, maxWidth, padding); }, _defaultUnorderedListItemDotBuilder(context, component) { var _null = null; return new A.Align(B.Alignment_1_0, _null, _null, A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(component.styleBuilder.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)).color, _null, _null, _null, _null, _null, B.BoxShape_1), _null, 4, _null, B.EdgeInsets_0_0_10_0, _null, _null, _null, 4), _null); }, _defaultIndentCalculator(textStyle, indent) { var t1 = textStyle.fontSize; t1.toString; return t1 * 0.6 * 4 * (indent + 1); }, _defaultOrderedListItemNumeralBuilder(context, component) { var _null = null; return A.OverflowBox$(B.Alignment_0_0, new A.Align(B.Alignment_1_0, _null, _null, new A.Padding(B.EdgeInsets_0_0_5_0, A.Text$(A.S(component.listIndex) + ".", _null, _null, _null, _null, _null, component.styleBuilder.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)).copyWith$0(), B.TextAlign_1, _null, _null), _null), _null), 1 / 0, 1 / 0, _null, _null); }, tabToIndentListItem(editContext, keyEvent) { var t1, t2; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967305)) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; if (t1) return B.ExecutionInstruction_0; return editContext.commonOps.indentListItem$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, shiftTabToUnIndentListItem(editContext, keyEvent) { var t1, t2; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967305)) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; if (!t1) return B.ExecutionInstruction_0; return editContext.commonOps.unindentListItem$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, backspaceToUnIndentListItem(editContext, keyEvent) { var t1, t2; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304)) return B.ExecutionInstruction_0; t1 = editContext.composer; t2 = t1._document_composer$_selection; if (t2 == null) return B.ExecutionInstruction_0; if (!J.$eq$(t2.base, t2.extent)) return B.ExecutionInstruction_0; if (!(editContext.editor._document.getNodeById$1(t1._document_composer$_selection.extent.nodeId) instanceof A.ListItemNode)) return B.ExecutionInstruction_0; if (type$.TextPosition._as(t1._document_composer$_selection.extent.nodePosition).offset > 0) return B.ExecutionInstruction_0; return editContext.commonOps.unindentListItem$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, ListItemNode: function ListItemNode(t0, t1, t2, t3, t4, t5) { var _ = this; _.type = t0; _._list_items$_indent = t1; _.id = t2; _._text$_text = t3; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t4; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _._metadata = t5; }, ListItemType: function ListItemType(t0, t1) { this.index = t0; this._core$_name = t1; }, ListItemComponentBuilder: function ListItemComponentBuilder() { }, ListItemComponentViewModel: function ListItemComponentViewModel(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.type = t0; _.ordinalValue = t1; _.indent = t2; _.text = t3; _.textStyleBuilder = t4; _.textDirection = t5; _.selection = t6; _.selectionColor = t7; _.caret = t8; _.caretColor = t9; _.highlightWhenEmpty = false; _.nodeId = t10; _.maxWidth = t11; _.padding = t12; }, UnorderedListItemComponent: function UnorderedListItemComponent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.textKey = t0; _.text = t1; _.styleBuilder = t2; _.indent = t3; _.textSelection = t4; _.selectionColor = t5; _.showCaret = t6; _.caretColor = t7; _.highlightWhenEmpty = t8; _.key = t9; }, OrderedListItemComponent: function OrderedListItemComponent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.textKey = t0; _.listIndex = t1; _.text = t2; _.styleBuilder = t3; _.indent = t4; _.textSelection = t5; _.selectionColor = t6; _.showCaret = t7; _.caretColor = t8; _.highlightWhenEmpty = t9; _.key = t10; }, IndentListItemCommand: function IndentListItemCommand(t0) { this.nodeId = t0; }, UnIndentListItemCommand: function UnIndentListItemCommand(t0) { this.nodeId = t0; }, ConvertListItemToParagraphCommand: function ConvertListItemToParagraphCommand(t0, t1) { this.nodeId = t0; this.paragraphMetadata = t1; }, ConvertParagraphToListItemCommand: function ConvertParagraphToListItemCommand(t0, t1) { this.nodeId = t0; this.type = t1; }, ChangeListItemTypeCommand: function ChangeListItemTypeCommand(t0, t1) { this.nodeId = t0; this.newType = t1; }, SplitListItemCommand: function SplitListItemCommand(t0, t1, t2) { this.nodeId = t0; this.splitPosition = t1; this.newNodeId = t2; }, _ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure: function _ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(t0) { this.styles = t0; }, _ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel: function _ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel() { }, DeleteSelectionCommand: function DeleteSelectionCommand(t0) { this.documentSelection = t0; }, ParagraphNode$(id, metadata, text) { var _s9_ = "blockType", t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), t2 = new A.ParagraphNode(id, text, $.$get$ChangeNotifier__emptyListeners(), t1); t2.TextNode$3$id$metadata$text(id, metadata, text); if (t1.$index(0, _s9_) == null) t2.putMetadataValue$2(_s9_, B.NamedAttribution_paragraph); return t2; }, ParagraphComponentViewModel$(blockType, caret, caretColor, highlightWhenEmpty, maxWidth, nodeId, padding, selection, selectionColor, text, textAlignment, textDirection, textStyleBuilder) { return new A.ParagraphComponentViewModel(blockType, text, textStyleBuilder, textDirection, textAlignment, selection, selectionColor, caret, caretColor, highlightWhenEmpty, nodeId, maxWidth, padding); }, anyCharacterToInsertInParagraph(editContext, keyEvent) { var t2, t3, character, didInsertCharacter, t1 = editContext.composer; if (t1._document_composer$_selection == null) return B.ExecutionInstruction_0; t2 = $.$get$RawKeyboard_instance()._keysPressed; t3 = t2.get$values(t2); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934848)) { t3 = t2.get$values(t2); t3 = A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934849); } else t3 = true; if (!t3) { t3 = t2.get$values(t2); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934854)) { t2 = t2.get$values(t2); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934855); } else t2 = true; } else t2 = true; if (t2) return B.ExecutionInstruction_0; character = keyEvent.character; if (character == null || character === "") return B.ExecutionInstruction_0; character.toString; if (A.LogicalKeyboardKey_isControlCharacter(character) || A.IsArrowKeyExtension_get_isArrowKeyPressed(keyEvent)) return B.ExecutionInstruction_0; t2 = J.containsKey$1$x(B.Set_UOWB._collection$_map, character); if (t2) return B.ExecutionInstruction_0; if (character === "Tab") character = " "; t2 = editContext.commonOps; didInsertCharacter = t2.insertCharacter$1(character); if (didInsertCharacter && character === " ") t2.convertParagraphByPatternMatching$1(t1._document_composer$_selection.extent.nodeId); return didInsertCharacter ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, backspaceToClearParagraphBlockType(editContext, keyEvent) { var t1, t2, textPosition; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304)) return B.ExecutionInstruction_0; t1 = editContext.composer; t2 = t1._document_composer$_selection; if (t2 == null) return B.ExecutionInstruction_0; if (!J.$eq$(t2.base, t2.extent)) return B.ExecutionInstruction_0; if (!(editContext.editor._document.getNodeById$1(t1._document_composer$_selection.extent.nodeId) instanceof A.ParagraphNode)) return B.ExecutionInstruction_0; textPosition = t1._document_composer$_selection.extent.nodePosition; if (!(textPosition instanceof A.TextNodePosition) || textPosition.offset > 0) return B.ExecutionInstruction_0; return editContext.commonOps.convertToParagraph$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, enterToInsertBlockNewline(editContext, keyEvent) { var t1 = keyEvent.data; if (!t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967309) && !t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_8589935117)) return B.ExecutionInstruction_0; return editContext.commonOps.insertBlockLevelNewline$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, ParagraphNode: function ParagraphNode(t0, t1, t2, t3) { var _ = this; _.id = t0; _._text$_text = t1; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t2; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; _._metadata = t3; }, ParagraphComponentBuilder: function ParagraphComponentBuilder() { }, ParagraphComponentViewModel: function ParagraphComponentViewModel(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.blockType = t0; _.text = t1; _.textStyleBuilder = t2; _.textDirection = t3; _.textAlignment = t4; _.selection = t5; _.selectionColor = t6; _.caret = t7; _.caretColor = t8; _.highlightWhenEmpty = t9; _.nodeId = t10; _.maxWidth = t11; _.padding = t12; }, CombineParagraphsCommand: function CombineParagraphsCommand(t0, t1) { this.firstNodeId = t0; this.secondNodeId = t1; }, SplitParagraphCommand: function SplitParagraphCommand(t0, t1, t2, t3) { var _ = this; _.nodeId = t0; _.splitPosition = t1; _.newNodeId = t2; _.replicateExistingMetadata = t3; }, _ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure: function _ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(t0) { this.styles = t0; }, _ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel: function _ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel() { }, UpstreamDownstreamNodePosition: function UpstreamDownstreamNodePosition(t0) { this.affinity = t0; }, UpstreamDownstreamNodeSelection: function UpstreamDownstreamNodeSelection(t0, t1) { this.base = t0; this.extent = t1; }, defaultInlineTextStyler(attributions, existingStyle) { return existingStyle.merge$1(A.defaultStyleBuilder(attributions)); }, defaultStyleBuilder(attributions) { var t1, t2, newStyle, t3, t4; for (t1 = attributions.get$iterator(attributions), t2 = type$.JSArray_TextDecoration, newStyle = B.TextStyle_zIQ; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = J.getInterceptor$(t3); if (t4.$eq(t3, B.NamedAttribution_bold)) newStyle = newStyle.copyWith$1$fontWeight(B.FontWeight_6); else if (t4.$eq(t3, B.NamedAttribution_italics)) newStyle = newStyle.copyWith$1$fontStyle(B.FontStyle_1); else if (t4.$eq(t3, B.NamedAttribution_underline)) { t3 = newStyle.decoration; newStyle = newStyle.copyWith$1$decoration(t3 == null ? B.TextDecoration_1 : A.TextDecoration_TextDecoration$combine(A._setArrayType([B.TextDecoration_1, t3], t2))); } else if (t4.$eq(t3, B.NamedAttribution_strikethrough)) { t3 = newStyle.decoration; newStyle = newStyle.copyWith$1$decoration(t3 == null ? B.TextDecoration_4 : A.TextDecoration_TextDecoration$combine(A._setArrayType([B.TextDecoration_4, t3], t2))); } else if (t3 instanceof A.LinkAttribution) newStyle = newStyle.copyWith$2$color$decoration(B.MaterialColor_Map_JN3Gf_4278430196, B.TextDecoration_1); } return newStyle; }, SuperEditor: function SuperEditor(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.focusNode = t0; _.scrollController = t1; _.documentLayoutKey = t2; _.stylesheet = t3; _.selectionStyles = t4; _.inputSource = t5; _.gestureMode = t6; _.androidToolbarBuilder = t7; _.iOSToolbarBuilder = t8; _.editor = t9; _.composer = t10; _.componentBuilders = t11; _.keyboardActions = t12; _.key = t13; }, _SuperEditorState: function _SuperEditorState(t0, t1) { var _ = this; _.___SuperEditorState__docLayoutKey = $; _._docLayoutPresenter = null; _.___SuperEditorState__composer = _.___SuperEditorState__focusNode = _.___SuperEditorState__docLayoutSelectionStyler = _.___SuperEditorState__docLayoutPerComponentBlockStyler = _.___SuperEditorState__docStylesheetStyler = $; _._previousSelectionExtent = null; _.___SuperEditorState__softwareKeyboardHandler = _.___SuperEditorState__editContext = $; _._floatingCursorController = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SuperEditorState__createEditContext_closure: function _SuperEditorState__createEditContext_closure(t0) { this.$this = t0; }, _SuperEditorState__createEditContext_closure0: function _SuperEditorState__createEditContext_closure0(t0) { this.$this = t0; }, _SuperEditorState__buildGestureSystem_closure: function _SuperEditorState__buildGestureSystem_closure(t0) { this.$this = t0; }, _SuperEditorState__buildGestureSystem_closure0: function _SuperEditorState__buildGestureSystem_closure0(t0) { this.$this = t0; }, DocumentInputSource: function DocumentInputSource(t0, t1) { this.index = t0; this._core$_name = t1; }, DocumentGestureMode: function DocumentGestureMode(t0, t1) { this.index = t0; this._core$_name = t1; }, DebugPaintConfig: function DebugPaintConfig() { }, defaultStylesheet_closure: function defaultStylesheet_closure() { }, defaultStylesheet_closure0: function defaultStylesheet_closure0() { }, defaultStylesheet_closure1: function defaultStylesheet_closure1() { }, defaultStylesheet_closure2: function defaultStylesheet_closure2() { }, defaultStylesheet_closure3: function defaultStylesheet_closure3() { }, defaultStylesheet_closure4: function defaultStylesheet_closure4() { }, defaultStylesheet_closure5: function defaultStylesheet_closure5() { }, defaultStylesheet_closure6: function defaultStylesheet_closure6() { }, defaultStylesheet_closure7: function defaultStylesheet_closure7() { }, defaultStylesheet_closure8: function defaultStylesheet_closure8() { }, DocumentSelectionWithText_doesSelectedTextContainAttributions(_this, selection, attributions) { var nodeRange, t3, t4, t5, t6, _i, textNode, baseOffset, extentOffset, t7, startOffset, endOffset, t1 = selection.base, t2 = selection.extent, nodes = _this.getNodesInside$2(t1, t2); if (nodes.length === 0) return false; nodeRange = _this.getRangeBetween$2(t1, t2); for (t3 = nodes.length, t4 = nodeRange.end, t5 = type$.TextPosition, t6 = nodeRange.start, _i = 0; _i < nodes.length; nodes.length === t3 || (0, A.throwConcurrentModificationError)(nodes), ++_i) { textNode = nodes[_i]; if (!(textNode instanceof A.TextNode)) continue; if (textNode.$eq(0, B.JSArray_methods.get$first(nodes)) && textNode.$eq(0, B.JSArray_methods.get$last(nodes))) { baseOffset = t5._as(t1.nodePosition).offset; extentOffset = t5._as(t2.nodePosition).offset; t7 = baseOffset < extentOffset; startOffset = t7 ? baseOffset : extentOffset; endOffset = (t7 ? extentOffset : baseOffset) - 1; } else if (textNode.$eq(0, B.JSArray_methods.get$first(nodes))) { startOffset = t5._as(t6.nodePosition).offset; endOffset = Math.max(textNode._text$_text.text.length - 1, 0); } else { endOffset = textNode.$eq(0, B.JSArray_methods.get$last(nodes)) ? t5._as(t4.nodePosition).offset - 1 : Math.max(textNode._text$_text.text.length - 1, 0); startOffset = 0; } if (textNode._text$_text.spans.hasAttributionsWithin$3$attributions$end$start(attributions, endOffset, startOffset)) return true; } return false; }, TextNodeSelection$fromTextSelection(textSelection) { var t1 = textSelection.baseOffset, t2 = textSelection.extentOffset, t3 = t1 < t2, t4 = t3 ? t1 : t2; t3 = t3 ? t2 : t1; return new A.TextNodeSelection(t1, t2, textSelection.affinity, textSelection.isDirectional, t4, t3); }, TextComponent$(caretColor, highlightWhenEmpty, key, metadata, selectionColor, showCaret, showDebugPaint, text, textAlign, textDirection, textSelection, textStyleBuilder) { return new A.TextComponent(text, textAlign, textDirection, textStyleBuilder, metadata, textSelection, selectionColor, showCaret, caretColor, highlightWhenEmpty, key); }, anyCharacterToInsertInTextContent(editContext, keyEvent) { var character, t1 = $.$get$RawKeyboard_instance()._keysPressed, t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934848)) { t2 = t1.get$values(t1); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934849); } else t2 = true; if (!t2) { t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934854)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934855); } else t1 = true; } else t1 = true; if (t1) return B.ExecutionInstruction_0; t1 = editContext.composer; t2 = t1._document_composer$_selection; if (t2 == null) return B.ExecutionInstruction_0; if (!J.$eq$(t2.base, t2.extent)) return B.ExecutionInstruction_0; if (!(editContext.editor._document.getNodeById$1(t1._document_composer$_selection.extent.nodeId) instanceof A.TextNode)) return B.ExecutionInstruction_0; t1 = keyEvent.character; if (t1 == null || t1 === "") return B.ExecutionInstruction_0; t1.toString; if (A.LogicalKeyboardKey_isControlCharacter(t1) || A.IsArrowKeyExtension_get_isArrowKeyPressed(keyEvent)) return B.ExecutionInstruction_0; t2 = J.containsKey$1$x(B.Set_UOWB._collection$_map, t1); if (t2) return B.ExecutionInstruction_0; if (t1 === "Tab") character = " "; else character = t1; return editContext.commonOps.insertCharacter$1(character) ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, deleteToRemoveDownstreamContent(editContext, keyEvent) { if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967423)) return B.ExecutionInstruction_0; return editContext.commonOps.deleteDownstream$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, shiftEnterToInsertNewlineInBlock(editContext, keyEvent) { var t2, t1 = keyEvent.data; if (!t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967309) && !t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_8589935117)) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; if (!t1) return B.ExecutionInstruction_0; return editContext.commonOps.insertPlainText$1("\n") ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, TextNode: function TextNode() { }, TextNodeSelection: function TextNodeSelection(t0, t1, t2, t3, t4, t5) { var _ = this; _.baseOffset = t0; _.extentOffset = t1; _.affinity = t2; _.isDirectional = t3; _.start = t4; _.end = t5; }, TextNodePosition: function TextNodePosition(t0, t1) { this.offset = t0; this.affinity = t1; }, TextComponentViewModel: function TextComponentViewModel() { }, TextComponent: function TextComponent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.text = t0; _.textAlign = t1; _.textDirection = t2; _.textStyleBuilder = t3; _.metadata = t4; _.textSelection = t5; _.selectionColor = t6; _.showCaret = t7; _.caretColor = t8; _.highlightWhenEmpty = t9; _.key = t10; }, _TextComponentState: function _TextComponentState(t0, t1) { var _ = this; _._textKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, ToggleTextAttributionsCommand: function ToggleTextAttributionsCommand(t0, t1) { this.documentSelection = t0; this.attributions = t1; }, ToggleTextAttributionsCommand_execute_closure: function ToggleTextAttributionsCommand_execute_closure(t0) { this.selectionRange = t0; }, InsertTextCommand: function InsertTextCommand(t0, t1, t2) { this.documentPosition = t0; this.textToInsert = t1; this.attributions = t2; }, _TextNode_DocumentNode_ChangeNotifier: function _TextNode_DocumentNode_ChangeNotifier() { }, __TextComponentState_State_DocumentComponent: function __TextComponentState_State_DocumentComponent() { }, UnknownComponentBuilder: function UnknownComponentBuilder() { }, MultiListenableBuilder: function MultiListenableBuilder(t0, t1, t2) { this.listenables = t0; this.builder = t1; this.key = t2; }, _MultiListenableBuilderState: function _MultiListenableBuilderState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MultiListenableBuilderState__onListenableChange_closure: function _MultiListenableBuilderState__onListenableChange_closure() { }, ListenableBuilder: function ListenableBuilder(t0, t1, t2) { this.listenable = t0; this.builder = t1; this.key = t2; }, ListenableBuilder_build_closure: function ListenableBuilder_build_closure(t0) { this.$this = t0; }, Logger$(scope) { return new A.Logger0(scope); }, Logger0: function Logger0(t0) { this.__logging$_scope = t0; }, AutoScroller$(vsync) { var t1 = new A.AutoScroller(); t1.__AutoScroller__ticker = vsync.createTicker$1(t1.get$__scrolling$_onTick()); return t1; }, AutoScroller: function AutoScroller() { var _ = this; _.__scrolling$_scrollPosition = null; _._scrollSpeedPercent = 0; _._scrollDownOnTick = _._scrollUpOnTick = false; _.__AutoScroller__ticker = $; }, ComputerTextSpan_computeTextSpan(_this, styleBuilder) { var t3, collapsedSpans, textSpans, _null = null, t1 = $.$get$attributionsLog0(), t2 = _this.text.length; t1.log$4(B.Level_FINE_500, "text length: " + t2, _null, _null); t1.log$4(B.Level_FINE_500, "attributions used to compute spans:", _null, _null); t3 = _this.spans; t1.log$4(B.Level_FINE_500, t3.toString$0(0), _null, _null); if (t2 === 0) { t1.log$4(B.Level_FINE_500, "text is empty. Returning empty TextSpan.", _null, _null); return A.TextSpan$(_null, _null, styleBuilder.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)), ""); } collapsedSpans = t3.collapseSpans$1$contentLength(t2); t1 = A._arrayInstanceType(collapsedSpans)._eval$1("MappedListIterable<1,TextSpan>"); textSpans = A.List_List$of(new A.MappedListIterable(collapsedSpans, new A.ComputerTextSpan_computeTextSpan_closure(_this, styleBuilder), t1), true, t1._eval$1("ListIterable.E")); return textSpans.length === 1 ? B.JSArray_methods.get$first(textSpans) : A.TextSpan$(textSpans, _null, styleBuilder.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)), _null); }, ComputerTextSpan_computeTextSpan_closure: function ComputerTextSpan_computeTextSpan_closure(t0, t1) { this._this = t0; this.styleBuilder = t1; }, BlinkingCaret$(borderRadius, caretHeight, caretOffset, color, controller, isTextEmpty, showCaret, width) { return new A.BlinkingCaret(controller, caretHeight, caretOffset, color, width, borderRadius, false, true, null); }, BlinkingCaret: function BlinkingCaret(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.controller = t0; _.caretHeight = t1; _.caretOffset = t2; _.color = t3; _.width = t4; _.borderRadius = t5; _.isTextEmpty = t6; _.showCaret = t7; _.key = t8; }, BlinkingCaretState: function BlinkingCaretState(t0, t1, t2) { var _ = this; _.__BlinkingCaretState__caretBlinkController = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CaretPainter: function _CaretPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.blinkController = t0; _.caretHeight = t1; _.caretOffset = t2; _.width = t3; _.borderRadius = t4; _.isTextEmpty = t5; _.showCaret = t6; _.caretColor = t7; _.caretPaint = t8; _._repaint = t9; }, _BlinkingCaretState_State_SingleTickerProviderStateMixin: function _BlinkingCaretState_State_SingleTickerProviderStateMixin() { }, TapSequenceGestureRecognizer$() { var t1 = type$.int; return new A.TapSequenceGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._TapTracker_2), null, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, TapSequenceGestureRecognizer: function TapSequenceGestureRecognizer(t0, t1, t2, t3) { var _ = this; _._secondTapUpDetails = _._secondTapDownDetails = _._secondTap = _._firstTapUpDetails = _._firstTapDownDetails = _._multi_tap_gesture$_firstTap = _._tapTimer = _.onTimeout = _.onTripleTap = _.onTripleTapUp = _.onTripleTapDown = _.onDoubleTap = _.onDoubleTapUp = _.onDoubleTapDown = _.onTapUp = null; _._multi_tap_gesture$_trackers = t0; _.debugOwner = t1; _.gestureSettings = null; _._supportedDevices = t2; _._pointerToKind = t3; }, TapSequenceGestureRecognizer_addAllowedPointer_closure: function TapSequenceGestureRecognizer_addAllowedPointer_closure(t0, t1) { this.$this = t0; this.details = t1; }, TapSequenceGestureRecognizer_addAllowedPointer_closure0: function TapSequenceGestureRecognizer_addAllowedPointer_closure0(t0) { this.$this = t0; }, TapSequenceGestureRecognizer__checkUp_closure: function TapSequenceGestureRecognizer__checkUp_closure(t0) { this.$this = t0; }, TapSequenceGestureRecognizer__checkUp_closure0: function TapSequenceGestureRecognizer__checkUp_closure0(t0) { this.$this = t0; }, TapSequenceGestureRecognizer__checkUp_closure1: function TapSequenceGestureRecognizer__checkUp_closure1(t0, t1) { this.$this = t0; this.details = t1; }, _TapTracker0: function _TapTracker0(t0, t1, t2, t3, t4) { var _ = this; _.pointer = t0; _.entry = t1; _._multi_tap_gesture$_initialGlobalPosition = t2; _.initialButtons = t3; _._tapMinTimeCountdown = t4; _._multi_tap_gesture$_isTrackingPointer = false; }, _CountdownZoned0: function _CountdownZoned0() { this._multi_tap_gesture$_timeout = false; }, Platform: function Platform() { }, AndroidFollowingMagnifier: function AndroidFollowingMagnifier(t0, t1, t2) { this.layerLink = t0; this.offsetFromFocalPoint = t1; this.key = t2; }, AndroidMagnifyingGlass: function AndroidMagnifyingGlass(t0, t1) { this.offsetFromFocalPoint = t0; this.key = t1; }, AndroidSelectionHandle: function AndroidSelectionHandle(t0, t1, t2) { this.handleType = t0; this.color = t1; this.key = t2; }, AndroidTextEditingFloatingToolbar: function AndroidTextEditingFloatingToolbar(t0, t1, t2, t3, t4) { var _ = this; _.onCutPressed = t0; _.onCopyPressed = t1; _.onPastePressed = t2; _.onSelectAllPressed = t3; _.key = t4; }, _roundedRectangleMagnifierBuilder(context, offsetFromFocalPoint) { return new A.IOSRoundedRectangleMagnifyingGlass(offsetFromFocalPoint, null); }, IOSFollowingMagnifier: function IOSFollowingMagnifier(t0, t1, t2) { this.layerLink = t0; this.offsetFromFocalPoint = t1; this.key = t2; }, IOSRoundedRectangleMagnifyingGlass: function IOSRoundedRectangleMagnifyingGlass(t0, t1) { this.offsetFromFocalPoint = t0; this.key = t1; }, IOSSelectionHandle$upstream(ballRadius, caretHeight, color, handleType) { return new A.IOSSelectionHandle(color, caretHeight, ballRadius, handleType, null); }, IOSSelectionHandle: function IOSSelectionHandle(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.caretHeight = t1; _.ballRadius = t2; _.handleType = t3; _.key = t4; }, IOSCollapsedHandle: function IOSCollapsedHandle(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.color = t1; _.caretHeight = t2; _.key = t3; }, IOSTextEditingFloatingToolbar: function IOSTextEditingFloatingToolbar(t0, t1, t2, t3) { var _ = this; _.onCutPressed = t0; _.onCopyPressed = t1; _.onPastePressed = t2; _.key = t3; }, ViewportEdge: function ViewportEdge(t0, t1) { this.index = t0; this._core$_name = t1; }, CharacterMovement_moveOffsetUpstreamByWord(_this, textOffset) { if (textOffset === 0) return null; return A.CharacterMovement__moveOffsetByWord(_this, textOffset, true); }, CharacterMovement_moveOffsetUpstreamByCharacter(_this, textOffset) { if (textOffset === 0) return null; return A.CharacterMovement__moveOffsetByCharacter(_this, textOffset, 1, true); }, CharacterMovement_moveOffsetDownstreamByWord(_this, textOffset) { if (textOffset === _this.length) return null; return A.CharacterMovement__moveOffsetByWord(_this, textOffset, false); }, CharacterMovement_moveOffsetDownstreamByCharacter(_this, textOffset) { if (textOffset === _this.length) return null; return A.CharacterMovement__moveOffsetByCharacter(_this, textOffset, 1, false); }, CharacterMovement__moveOffsetByWord(_this, textOffset, upstream) { var range, moveWhile, t1 = {}; if (textOffset < 0 || textOffset > _this.length) throw A.wrapException(A.Exception_Exception("Index '" + A.S(textOffset) + "' is out of string range. Length: " + _this.length)); range = new A.StringCharacterRange((_this.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(_this)).string, 0, 0); t1.remainingOffset = textOffset; range.expandWhile$1(new A.CharacterMovement__moveOffsetByWord_closure(t1)); moveWhile = upstream ? range.get$dropBackWhile() : range.get$expandWhile(); moveWhile.call$1(new A.CharacterMovement__moveOffsetByWord_closure0()); moveWhile.call$1(new A.CharacterMovement__moveOffsetByWord_closure1()); return range.get$current(range).length; }, CharacterMovement__moveOffsetByCharacter(_this, textOffset, characterCount, upstream) { var t2, range, t1 = {}; if (textOffset < 0 || textOffset > _this.length) throw A.wrapException(A.Exception_Exception("Index '" + A.S(textOffset) + "' is out of string range. Length: " + _this.length)); t2 = (_this.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(_this)).string; range = new A.StringCharacterRange(t2, 0, 0); t1.remainingOffset = textOffset; range.expandWhile$1(new A.CharacterMovement__moveOffsetByCharacter_closure(t1)); if (upstream ? range.get$current(range).length < characterCount : t2.length - range._characters_impl$_end < characterCount) return null; if (upstream) range.dropLast$1(characterCount); else range._advanceEnd$2(characterCount, range._characters_impl$_start); return range.get$current(range).length; }, CharacterMovement__moveOffsetByWord_closure: function CharacterMovement__moveOffsetByWord_closure(t0) { this._box_0 = t0; }, CharacterMovement__moveOffsetByWord_closure0: function CharacterMovement__moveOffsetByWord_closure0() { }, CharacterMovement__moveOffsetByWord_closure1: function CharacterMovement__moveOffsetByWord_closure1() { }, CharacterMovement__moveOffsetByCharacter_closure: function CharacterMovement__moveOffsetByCharacter_closure(t0) { this._box_0 = t0; }, MagnifyingGlass: function MagnifyingGlass(t0, t1, t2, t3, t4) { var _ = this; _.offsetFromFocalPoint = t0; _.shape = t1; _.size = t2; _.magnificationScale = t3; _.key = t4; }, OuterBoxShadow: function OuterBoxShadow(t0, t1, t2, t3, t4) { var _ = this; _.spreadRadius = t0; _.blurStyle = t1; _.color = t2; _.offset = t3; _.blurRadius = t4; }, ToolbarPositionDelegate: function ToolbarPositionDelegate(t0, t1, t2) { this.textFieldGlobalOffset = t0; this.desiredTopAnchorInTextField = t1; this.desiredBottomAnchorInTextField = t2; }, HandleType: function HandleType(t0, t1) { this.index = t0; this._core$_name = t1; }, TextLayoutCaret: function TextLayoutCaret(t0, t1, t2, t3, t4, t5) { var _ = this; _.textLayout = t0; _.blinkCaret = t1; _.style = t2; _.position = t3; _.caretTracker = t4; _.key = t5; }, _TextLayoutCaretState: function _TextLayoutCaretState(t0, t1, t2) { var _ = this; _.___TextLayoutCaretState__blinkController = $; _.TickerProviderStateMixin__tickers = t0; _.TickerProviderStateMixin__tickerModeNotifier = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, CaretPainter: function CaretPainter(t0, t1, t2, t3, t4) { var _ = this; _._blinkController = t0; _._caretStyle = t1; _._caret_layer$_offset = t2; _._caret_layer$_height = t3; _._repaint = t4; }, CaretStyle: function CaretStyle(t0) { this.color = t0; }, __TextLayoutCaretState_State_TickerProviderStateMixin: function __TextLayoutCaretState_State_TickerProviderStateMixin() { }, BlinkController$(tickerProvider) { var t1 = new A.BlinkController(B.Duration_0, $.$get$ChangeNotifier__emptyListeners()), t2 = tickerProvider.createTicker$1(t1.get$_blink_controller$_onTick()); A._lateWriteOnceCheck(t1.__BlinkController__ticker, "_ticker"); t1.__BlinkController__ticker = t2; return t1; }, BlinkController: function BlinkController(t0, t1) { var _ = this; _.__BlinkController__ticker = $; _._lastBlinkTime = t0; _._blink_controller$_isVisible = true; _.ChangeNotifier__count = 0; _.ChangeNotifier__listeners = t1; _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; _.ChangeNotifier__debugDisposed = false; }, _BlinkController_Object_ChangeNotifier: function _BlinkController_Object_ChangeNotifier() { }, RenderSuperTextLayout_textLayoutFrom(key) { var t2, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key); t1 = t1 == null ? null : t1.get$renderObject(); t1 = type$.RenderSuperTextLayout._as(t1)._super_text$_state; t2 = t1._super_text$_paragraph; if (t2 == null) return null; return A.RenderParagraphProseTextLayout$(t2, t1._widget.richText); }, SuperText: function SuperText(t0, t1, t2, t3) { var _ = this; _.richText = t0; _.layerBeneathBuilder = t1; _.layerAboveBuilder = t2; _.key = t3; }, SuperTextState: function SuperTextState(t0, t1) { var _ = this; _._textLayoutKey = t0; _._textBuildCount = 0; _._widget = _._super_text$_paragraph = null; _._debugLifecycleState = t1; _._framework$_element = null; }, SuperTextState_build_closure: function SuperTextState_build_closure(t0) { this.$this = t0; }, SuperTextState_build_closure0: function SuperTextState_build_closure0(t0) { this.$this = t0; }, _SuperTextLayout: function _SuperTextLayout(t0, t1, t2) { this.state = t0; this.children = t1; this.key = t2; }, _SuperTextLayoutParentData: function _SuperTextLayoutParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.offset = t2; }, RenderSuperTextLayout: function RenderSuperTextLayout(t0, t1, t2, t3, t4) { var _ = this; _._super_text$_state = t0; _.ContainerRenderObjectMixin__childCount = t1; _.ContainerRenderObjectMixin__firstChild = t2; _.ContainerRenderObjectMixin__lastChild = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, LayoutAwareRichText: function LayoutAwareRichText(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.onMarkNeedsLayout = t0; _.text = t1; _.textAlign = t2; _.textDirection = t3; _.softWrap = t4; _.overflow = t5; _.textScaleFactor = t6; _.maxLines = t7; _.locale = t8; _.strutStyle = t9; _.textWidthBasis = t10; _.textHeightBehavior = t11; _.children = t12; _.key = t13; }, RenderLayoutAwareParagraph: function RenderLayoutAwareParagraph(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._onMarkNeedsLayout = t0; _._super_text$_needsLayout = true; _._textPainter = t1; _._cachedCombinedSemanticsInfos = _._cachedAttributedLabel = null; _.__RenderParagraph__placeholderSpans = $; _._softWrap = t2; _._overflow = t3; _._needsClipping = false; _._paragraph$_cachedChildNodes = _._semanticsInfo = _._paragraph$_placeholderDimensions = _._overflowShader = null; _.ContainerRenderObjectMixin__childCount = t4; _.ContainerRenderObjectMixin__firstChild = t5; _.ContainerRenderObjectMixin__lastChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t7; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin: function _RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin() { }, _RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, _SuperTextState_State_ProseTextBlock: function _SuperTextState_State_ProseTextBlock() { }, SuperTextWithSelection: function SuperTextWithSelection(t0, t1, t2) { this.richText = t0; this.userSelections = t1; this.key = t2; }, _SuperTextWithSelectionState: function _SuperTextWithSelectionState(t0) { var _ = this; _.___SuperTextWithSelectionState__userSelections = _.___SuperTextWithSelectionState__textLayoutKey = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _RebuildOptimizedSuperTextWithSelection: function _RebuildOptimizedSuperTextWithSelection(t0, t1, t2, t3) { var _ = this; _.textLayoutKey = t0; _.richText = t1; _.userSelections = t2; _.key = t3; }, _RebuildOptimizedSuperTextWithSelectionState: function _RebuildOptimizedSuperTextWithSelectionState(t0) { var _ = this; _._cachedSubtree = null; _.___RebuildOptimizedSuperTextWithSelectionState__cachedTextLength = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _RebuildOptimizedSuperTextWithSelectionState__buildLayerBeneath_closure: function _RebuildOptimizedSuperTextWithSelectionState__buildLayerBeneath_closure(t0, t1) { this.$this = t0; this.textLayout = t1; }, _RebuildOptimizedSuperTextWithSelectionState__buildLayerAbove_closure: function _RebuildOptimizedSuperTextWithSelectionState__buildLayerAbove_closure(t0, t1) { this.$this = t0; this.textLayout = t1; }, UserSelection: function UserSelection(t0, t1, t2, t3, t4) { var _ = this; _.selection = t0; _.highlightStyle = t1; _.highlightWhenEmpty = t2; _.caretStyle = t3; _.hasCaret = t4; }, RenderParagraphProseTextLayout$(renderParagraph, richText) { var t1 = new A.RenderParagraphProseTextLayout(richText, renderParagraph), t2 = richText.toPlainText$0(); A._lateWriteOnceCheck($, "_textLength"); t1.__RenderParagraphProseTextLayout__textLength = t2.length; return t1; }, ProseTextBlock: function ProseTextBlock() { }, ProseTextState: function ProseTextState() { }, RenderParagraphProseTextLayout: function RenderParagraphProseTextLayout(t0, t1) { this._richText = t0; this._renderParagraph = t1; this.__RenderParagraphProseTextLayout__textLength = $; }, _ProseTextState_State_ProseTextBlock: function _ProseTextState_State_ProseTextBlock() { }, TextLayoutSelectionHighlight: function TextLayoutSelectionHighlight(t0, t1, t2, t3) { var _ = this; _.textLayout = t0; _.style = t1; _.selection = t2; _.key = t3; }, TextLayoutEmptyHighlight: function TextLayoutEmptyHighlight(t0, t1, t2) { this.textLayout = t0; this.style = t1; this.key = t2; }, _EmptyHighlightPainter: function _EmptyHighlightPainter(t0, t1, t2, t3) { var _ = this; _.width = t0; _.height = t1; _.style = t2; _._repaint = t3; }, SelectionHighlightStyle: function SelectionHighlightStyle(t0) { this.color = t0; }, TextSelectionPainter: function TextSelectionPainter(t0, t1, t2, t3, t4) { var _ = this; _.textLayout = t0; _.textSelection = t1; _.selectionColor = t2; _._selectionPaint = t3; _._repaint = t4; }, ArMessages: function ArMessages() { }, CaMessages: function CaMessages() { }, _pluralize(n, form1, form2, form3) { if (n === 1) return "" + n + " " + form1; if (n >= 2 && n <= 4) return "" + n + " " + form2; return "" + n + " " + form3; }, CsMessages: function CsMessages() { }, DaMessages: function DaMessages() { }, DeMessages: function DeMessages() { }, EnMessages: function EnMessages() { }, EnShortMessages: function EnShortMessages() { }, EsMessages: function EsMessages() { }, EsShortMessages: function EsShortMessages() { }, FaMessages: function FaMessages() { }, FrMessages: function FrMessages() { }, FrShortMessages: function FrShortMessages() { }, ItMessages: function ItMessages() { }, ItShortMessages: function ItShortMessages() { }, JaMessages: function JaMessages() { }, NbNoShortMessages: function NbNoShortMessages() { }, NbNoMessages: function NbNoMessages() { }, NlMessages: function NlMessages() { }, NlShortMessages: function NlShortMessages() { }, PlMessages: function PlMessages() { }, PtBrMessages: function PtBrMessages() { }, PtBrShortMessages: function PtBrShortMessages() { }, RoMessages: function RoMessages() { }, RoShortMessages: function RoShortMessages() { }, RuMessages: function RuMessages() { }, RuShortMessages: function RuShortMessages() { }, SvMessages: function SvMessages() { }, SvShortMessages: function SvShortMessages() { }, ThMessages: function ThMessages() { }, ThShortMessages: function ThShortMessages() { }, ZhMessages: function ZhMessages() { }, format(date, locale) { var messages, t1, prefix, suffix, seconds, minutes, hours, days, months, years, result, _locale = locale == null ? "en" : locale; if ($.$get$_lookupMessagesMap().$index(0, _locale) == null) A.print("Locale [" + _locale + "] has not been added, using [en] as fallback. To add a locale use [setLocaleMessages]"); messages = $.$get$_lookupMessagesMap().$index(0, _locale); if (messages == null) messages = new A.EnMessages(); t1 = Date.now(); prefix = messages.prefixAgo$0(); suffix = messages.suffixAgo$0(); seconds = (t1 - date._value) / 1000; minutes = seconds / 60; hours = minutes / 60; days = hours / 24; months = days / 30; years = days / 365; if (seconds < 45) result = messages.lessThanOneMinute$1(B.JSNumber_methods.round$0(seconds)); else if (seconds < 90) result = messages.aboutAMinute$1(B.JSNumber_methods.round$0(minutes)); else if (minutes < 45) result = messages.minutes$1(B.JSNumber_methods.round$0(minutes)); else if (minutes < 90) result = messages.aboutAnHour$1(B.JSNumber_methods.round$0(minutes)); else if (hours < 24) result = messages.hours$1(B.JSNumber_methods.round$0(hours)); else if (hours < 48) result = messages.aDay$1(B.JSNumber_methods.round$0(hours)); else if (days < 30) result = messages.days$1(B.JSNumber_methods.round$0(days)); else if (days < 60) result = messages.aboutAMonth$1(B.JSNumber_methods.round$0(days)); else if (days < 365) result = messages.months$1(B.JSNumber_methods.round$0(months)); else result = years < 2 ? messages.aboutAYear$1(B.JSNumber_methods.round$0(months)) : messages.years$1(B.JSNumber_methods.round$0(years)); return new A.WhereIterable(A._setArrayType([prefix, result, suffix], type$.JSArray_String), new A.format_closure(), type$.WhereIterable_String).join$1(0, messages.wordSeparator$0()); }, format_closure: function format_closure() { }, MethodChannelUrlLauncher: function MethodChannelUrlLauncher(t0) { this._instanceToken = t0; }, MethodChannelUrlLauncher_canLaunch_closure: function MethodChannelUrlLauncher_canLaunch_closure() { }, MethodChannelUrlLauncher_launch_closure: function MethodChannelUrlLauncher_launch_closure() { }, UrlLauncherPlatform: function UrlLauncherPlatform() { }, UrlLauncherPlugin: function UrlLauncherPlugin(t0, t1) { this._url_launcher_web$_window = t0; this._isSafari = false; this._instanceToken = t1; }, Uuid_unparse(buffer) { var t2, t1 = J.getInterceptor$asx(buffer); if (t1.get$length(buffer) !== 16) throw A.wrapException(A.Exception_Exception("The provided buffer needs to have a length of 16.")); t2 = $.$get$Uuid__byteToHex(); return t2[t1.$index(buffer, 0)] + t2[t1.$index(buffer, 1)] + t2[t1.$index(buffer, 2)] + t2[t1.$index(buffer, 3)] + "-" + t2[t1.$index(buffer, 4)] + t2[t1.$index(buffer, 5)] + "-" + t2[t1.$index(buffer, 6)] + t2[t1.$index(buffer, 7)] + "-" + t2[t1.$index(buffer, 8)] + t2[t1.$index(buffer, 9)] + "-" + t2[t1.$index(buffer, 10)] + t2[t1.$index(buffer, 11)] + t2[t1.$index(buffer, 12)] + t2[t1.$index(buffer, 13)] + t2[t1.$index(buffer, 14)] + t2[t1.$index(buffer, 15)]; }, Uuid: function Uuid() { }, BoxValueConstraints$(constraints, value, $T) { return new A.BoxValueConstraints(value, constraints.minWidth, constraints.maxWidth, constraints.minHeight, constraints.maxHeight, $T._eval$1("BoxValueConstraints<0>")); }, BoxValueConstraints: function BoxValueConstraints(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.minWidth = t1; _.maxWidth = t2; _.minHeight = t3; _.maxHeight = t4; _.$ti = t5; }, ValueLayoutBuilder: function ValueLayoutBuilder(t0, t1, t2) { this.builder = t0; this.key = t1; this.$ti = t2; }, _RenderValueLayoutBuilder: function _RenderValueLayoutBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _.RenderConstrainedLayoutBuilder__callback = t0; _.RenderConstrainedLayoutBuilder__needsBuild = t1; _.RenderConstrainedLayoutBuilder__previousConstraints = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _._object$_debugDisposed = false; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._object$_constraints = null; _._debugDoingThisPaint = false; _._layerHandle = t4; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t5; }, __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin: function __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin() { }, __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder: function __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder() { }, Matrix4_tryInvert(other) { var r = new A.Matrix4(new Float64Array(16)); if (r.copyInverse$1(other) === 0) return null; return r; }, Matrix4$zero() { return new A.Matrix4(new Float64Array(16)); }, Matrix4_Matrix4$identity() { var t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); return t1; }, Matrix4_Matrix4$rotationZ(radians) { var c, s, t1 = new Float64Array(16); t1[15] = 1; c = Math.cos(radians); s = Math.sin(radians); t1[0] = c; t1[1] = s; t1[2] = 0; t1[4] = -s; t1[5] = c; t1[6] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 1; t1[3] = 0; t1[7] = 0; t1[11] = 0; return new A.Matrix4(t1); }, Matrix4_Matrix4$translationValues(x, y, z) { var t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t1.setTranslationRaw$3(x, y, z); return t1; }, Matrix4_Matrix4$diagonal3Values(x, y, z) { var t1 = new Float64Array(16); t1[15] = 1; t1[10] = z; t1[5] = y; t1[0] = x; return new A.Matrix4(t1); }, Quaternion_Quaternion$identity() { var t1 = new Float64Array(4); t1[3] = 1; return new A.Quaternion(t1); }, Matrix3: function Matrix3(t0) { this._m3storage = t0; }, Matrix4: function Matrix4(t0) { this._m4storage = t0; }, Quad: function Quad(t0, t1, t2, t3) { var _ = this; _._point0 = t0; _._point1 = t1; _._point2 = t2; _._point3 = t3; }, Quaternion: function Quaternion(t0) { this._qStorage = t0; }, Vector3: function Vector3(t0) { this._v3storage = t0; }, Vector4: function Vector4(t0) { this._v4storage = t0; }, Version_parse(versionString) { var t2, parts, major, minor, patch, preReleaseString, preReleaseList, build, t3, _null = null, t1 = versionString == null ? _null : B.JSString_methods.trim$0(versionString).length === 0; if (t1 !== false) throw A.wrapException(A.FormatException$("Cannot parse empty string into version", _null, _null)); t1 = $.$get$Version__versionRegex(); versionString.toString; t2 = t1._nativeRegExp; if (!t2.test(versionString)) throw A.wrapException(A.FormatException$("Not a properly formatted version string", _null, _null)); t1 = t1.firstMatch$1(versionString)._match; parts = t1[1].split("."); major = A.int_parse(parts[0], _null); t2 = parts.length; if (t2 > 1) { minor = A.int_parse(parts[1], _null); patch = t2 > 2 ? A.int_parse(parts[2], _null) : _null; } else { patch = _null; minor = patch; } preReleaseString = t1[3]; if (preReleaseString == null) preReleaseString = ""; t2 = type$.JSArray_String; preReleaseList = A._setArrayType([], t2); if (B.JSString_methods.trim$0(preReleaseString).length !== 0) preReleaseList = A._setArrayType(preReleaseString.split("."), t2); build = t1[5]; if (build == null) build = ""; t1 = minor == null ? 0 : minor; t2 = patch == null ? 0 : patch; t3 = new A.Version(major, t1, t2, build, preReleaseList); t3.Version$5$build$preRelease(major, t1, t2, build, preReleaseList); return t3; }, Version__compare(a, b) { var t3, preReleaseMax, i, aNumeric, bNumeric, t1 = a.major, t2 = b.major; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a.minor; t2 = b.minor; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a.patch; t2 = b.patch; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a._preRelease; t2 = type$.String; if (A.List_List$from(t1, true, t2).length === 0) if (A.List_List$from(b._preRelease, true, t2).length === 0) return 0; else return 1; else { t3 = b._preRelease; if (A.List_List$from(t3, true, t2).length === 0) return -1; else { preReleaseMax = A.List_List$from(t1, true, t2).length; if (A.List_List$from(t3, true, t2).length > A.List_List$from(t1, true, t2).length) preReleaseMax = A.List_List$from(t3, true, t2).length; for (i = 0; i < preReleaseMax; ++i) { if (A.List_List$from(t3, true, t2).length <= i) return 1; else if (A.List_List$from(t1, true, t2).length <= i) return -1; if (J.$eq$(A.List_List$from(t1, true, t2)[i], A.List_List$from(t3, true, t2)[i])) continue; aNumeric = A.Version__isNumeric(A.List_List$from(t1, true, t2)[i]); bNumeric = A.Version__isNumeric(A.List_List$from(t3, true, t2)[i]); if (aNumeric && bNumeric) if (A.double_parse(A.List_List$from(t1, true, t2)[i]) > A.double_parse(A.List_List$from(t3, true, t2)[i])) return 1; else return -1; else if (bNumeric) return 1; else if (aNumeric) return -1; else { t1 = A.List_List$from(t1, true, t2)[i]; t2 = A.List_List$from(t3, true, t2)[i]; t1.toString; if (typeof t2 != "string") A.throwExpression(A.argumentErrorValue(t2)); if (J.$eq$(t1, t2)) t1 = 0; else t1 = t1 < t2 ? -1 : 1; return t1; } } } } return 0; }, Version__isNumeric(s) { if (s == null) return false; return A.Primitives_parseDouble(s) != null; }, Version: function Version(t0, t1, t2, t3, t4) { var _ = this; _.major = t0; _.minor = t1; _.patch = t2; _.build = t3; _._preRelease = t4; }, main() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$main = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.webOnlyWarmupEngine(new A.main_closure(), new A.main_closure0()), $async$main); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$main, $async$completer); }, main_closure0: function main_closure0() { }, main_closure: function main_closure() { }, CupertinoUserInterfaceLevel_maybeOf(context) { context.dependOnInheritedWidgetOfExactType$1$0(type$.CupertinoUserInterfaceLevel); return null; }, LinkViewController__viewFactory(viewId) { return $.LinkViewController__instances.$index(0, viewId).get$_link$_element(); }, isBrowserObject(o) { return type$.Blob._is(o) || type$.Event._is(o) || type$.KeyRange._is(o) || type$.ImageData._is(o) || type$.Node._is(o) || type$.Window._is(o) || type$.WorkerGlobalScope._is(o); }, printString(string) { if (typeof dartPrint == "function") { dartPrint(string); return; } if (typeof console == "object" && typeof console.log != "undefined") { console.log(string); return; } if (typeof window == "object") return; if (typeof print == "function") { print(string); return; } throw "Unable to print message: " + String(string); }, getCrc32(array, crc) { var ip, ip0, t1 = J.getInterceptor$asx(array), len = t1.get$length(array); crc ^= 4294967295; for (ip = 0; len >= 8;) { ip0 = ip + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; len -= 8; } if (len > 0) do { ip0 = ip + 1; crc = B.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; if (--len, len > 0) { ip = ip0; continue; } else break; } while (true); return (crc ^ 4294967295) >>> 0; }, getCharacterEndBounds(text, startingCodePointIndex) { var range, t1 = text.length; if (startingCodePointIndex === t1) return t1; range = A.StringCharacterRange_StringCharacterRange$at(text, 0, startingCodePointIndex); if (range.get$current(range).length !== startingCodePointIndex) return range.get$current(range).length; range._advanceEnd$2(1, range._characters_impl$_start); return range.get$current(range).length; }, getCharacterStartBounds(text, endingCodePointIndex) { var range; if (endingCodePointIndex === 0) return 0; range = A.StringCharacterRange_StringCharacterRange$at(text, 0, endingCodePointIndex); if (range.get$current(range).length !== endingCodePointIndex) { range.dropLast$0(); return range.get$current(range).length; } range.dropLast$0(); return range.get$current(range).length; }, low(codeUnit) { var index = B.JSString_methods._codeUnitAt$1(string$.u0e3b_____, codeUnit >>> 6) + (codeUnit & 63), bit = index & 1, pair = B.JSString_methods._codeUnitAt$1(string$.x22_____, index >>> 1); return pair >>> 4 & -bit | pair & 15 & bit - 1; }, high(lead, tail) { var index = B.JSString_methods._codeUnitAt$1(string$.u0e3b_____, 1024 + (lead & 1023)) + (tail & 1023), bit = index & 1, pair = B.JSString_methods._codeUnitAt$1(string$.x22_____, index >>> 1); return pair >>> 4 & -bit | pair & 15 & bit - 1; }, PointPainter_draw(canvas, fill, paint, point, radius, stroke, strokeWidthPx) { var t1, t2; if (fill != null) { paint.set$color(0, A.Color$fromARGB(fill.a, fill.r, fill.g, fill.b)); paint.set$style(0, B.PaintingStyle_0); t1 = point.x; t1.toString; t2 = point.y; t2.toString; canvas.drawCircle$3(0, new A.Offset(t1, t2), radius, paint); } if (stroke != null && strokeWidthPx != null && strokeWidthPx > 0) { paint.set$color(0, A.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); paint.set$strokeWidth(strokeWidthPx); paint.set$strokeJoin(B.StrokeJoin_2); paint.set$style(0, B.PaintingStyle_1); t1 = point.x; t1.toString; t2 = point.y; t2.toString; canvas.drawCircle$3(0, new A.Offset(t1, t2), radius, paint); } }, PolygonPainter_draw(canvas, clipBounds, fill, paint, points, stroke, strokeWidthPx) { var t1, t2, fillColor, point, path, _i, t3; if (points.length === 0) return; canvas.save$0(0); t1 = clipBounds.left; t1.toString; t2 = clipBounds.top; t2.toString; canvas.clipRect$1(0, new A.Rect(t1, t2, t1 + clipBounds.width, t2 + clipBounds.height)); fillColor = fill != null ? A.Color$fromARGB(fill.a, fill.r, fill.g, fill.b) : null; if (points.length === 1) { point = B.JSArray_methods.get$first(points); if (fillColor != null) paint.set$color(0, fillColor); paint.set$style(0, B.PaintingStyle_0); t1 = point.x; t1.toString; t2 = point.y; t2.toString; strokeWidthPx.toString; canvas.drawCircle$3(0, new A.Offset(t1, t2), strokeWidthPx, paint); } else { if (fillColor != null) { paint.set$color(0, fillColor); paint.set$style(0, B.PaintingStyle_0); } path = A.Path_Path(); t1 = B.JSArray_methods.get$first(points).x; t1.toString; t2 = B.JSArray_methods.get$first(points).y; t2.toString; path.moveTo$2(0, t1, t2); for (t1 = points.length, _i = 0; _i < points.length; points.length === t1 || (0, A.throwConcurrentModificationError)(points), ++_i) { point = points[_i]; t2 = point.x; t2.toString; t3 = point.y; t3.toString; path.lineTo$2(0, t2, t3); } canvas.drawPath$2(0, path, paint); } canvas.restore$0(0); }, ColorUtil_fromDartColor(color) { var t1 = color.value; return new A.Color0(t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255, t1 >>> 24 & 255, null, null); }, systemTime() { return new A.DateTime(Date.now(), false); }, clock() { var t1 = type$.nullable_Clock._as($.Zone__current.$index(0, $.$get$_clockKey())); return t1 == null ? B.C_Clock : t1; }, compareNatural(a, b) { var t1, t2, i, aChar, bChar; for (t1 = a.length, t2 = b.length, i = 0; i < t1; ++i) { if (i >= t2) return 1; aChar = B.JSString_methods._codeUnitAt$1(a, i); bChar = B.JSString_methods._codeUnitAt$1(b, i); if (aChar !== bChar) return A._compareNaturally(a, b, i, aChar, bChar); } if (t2 > t1) return -1; return 0; }, _compareNaturally(a, b, index, aChar, bChar) { var bIsDigit = (bChar ^ 48) <= 9; if ((aChar ^ 48) <= 9) { if (bIsDigit) return A._compareNumerically(a, b, aChar, bChar, index); else if (index > 0 && (B.JSString_methods.codeUnitAt$1(a, index - 1) ^ 48) <= 9) return 1; } else if (bIsDigit && index > 0 && (B.JSString_methods.codeUnitAt$1(b, index - 1) ^ 48) <= 9) return -1; return B.JSInt_methods.get$sign(aChar - bChar); }, _compareNumerically(a, b, aChar, bChar, index) { var result, t1, aIndex, bIndex, t2, aIsDigit, bIsDigit; if (A._isNonZeroNumberSuffix(a, index)) { result = A._compareDigitCount(a, b, index, index); if (result !== 0) return result; return B.JSInt_methods.get$sign(aChar - bChar); } if (aChar === 48) { t1 = a.length; aIndex = index; do { ++aIndex; if (aIndex === t1) return -1; aChar = B.JSString_methods._codeUnitAt$1(a, aIndex); } while (aChar === 48); if ((aChar ^ 48) > 9) return -1; bIndex = index; } else { if (bChar === 48) { t1 = b.length; bIndex = index; do { ++bIndex; if (bIndex === t1) return 1; bChar = B.JSString_methods._codeUnitAt$1(b, bIndex); } while (bChar === 48); if ((bChar ^ 48) > 9) return 1; } else bIndex = index; aIndex = index; } if (aChar !== bChar) { result = A._compareDigitCount(a, b, aIndex, bIndex); if (result !== 0) return result; return B.JSInt_methods.get$sign(aChar - bChar); } for (t1 = b.length, t2 = a.length; true;) { ++aIndex; if (aIndex < t2) { aChar = B.JSString_methods._codeUnitAt$1(a, aIndex); aIsDigit = (aChar ^ 48) <= 9; } else { aChar = 0; aIsDigit = false; } ++bIndex; if (bIndex < t1) { bChar = B.JSString_methods._codeUnitAt$1(b, bIndex); bIsDigit = (bChar ^ 48) <= 9; } else { bChar = 0; bIsDigit = false; } if (aIsDigit) { if (bIsDigit) { if (aChar === bChar) continue; break; } return 1; } else if (bIsDigit) return -1; else { t1 = aIndex - bIndex; if (t1 > 0) t1 = 1; else if (t1 < 0) t1 = -1; return t1; } } result = A._compareDigitCount(a, b, aIndex, bIndex); if (result !== 0) return result; return B.JSInt_methods.get$sign(aChar - bChar); }, _compareDigitCount(a, b, i, j) { var t1, t2, aIsDigit, bIsDigit; for (t1 = a.length, t2 = b.length; ++i, i < t1;) { aIsDigit = (B.JSString_methods._codeUnitAt$1(a, i) ^ 48) <= 9; ++j; if (j === t2) return aIsDigit ? 1 : 0; bIsDigit = (B.JSString_methods._codeUnitAt$1(b, j) ^ 48) <= 9; if (aIsDigit) { if (bIsDigit) continue; return 1; } else if (bIsDigit) return -1; else return 0; } ++j; if (j < t2 && (B.JSString_methods._codeUnitAt$1(b, j) ^ 48) <= 9) return -1; return 0; }, _isNonZeroNumberSuffix(string, index) { var char; for (; --index, index >= 0;) { char = B.JSString_methods.codeUnitAt$1(string, index); if (char !== 48) return (char ^ 48) <= 9; } return false; }, groupBy(values, key, $S, $T) { var t1, _i, element, t2, t3, map = A.LinkedHashMap_LinkedHashMap$_empty($T, $S._eval$1("List<0>")); for (t1 = $S._eval$1("JSArray<0>"), _i = 0; _i < 1; ++_i) { element = values[_i]; t2 = key.call$1(element); t3 = map.$index(0, t2); if (t3 == null) { t3 = A._setArrayType([], t1); map.$indexSet(0, t2, t3); t2 = t3; } else t2 = t3; J.add$1$ax(t2, element); } return map; }, IterableExtension_firstWhereOrNull(_this, test) { var t1, element; for (t1 = J.get$iterator$ax(_this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) return element; } return null; }, _register(base, accents) { var t1, baseUnit, t2; if (base.length === 1) { t1 = new A.CodeUnits(base); baseUnit = t1.get$first(t1); for (t1 = new A.CodeUnits(accents), t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; $._singleUnit.$indexSet(0, t2, baseUnit); } } else for (t1 = new A.CodeUnits(accents), t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; $._multiUnit.$indexSet(0, t2, new A.CodeUnits(base)); } }, replaceCodeUnits(codeUnits) { var result, t1, t2, single, multiple; A._initIfRequired(); result = A._setArrayType([], type$.JSArray_int); for (t1 = new A.ListIterator(codeUnits, codeUnits.get$length(codeUnits), A._instanceType(codeUnits)._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2 >= 768 && t2 <= 879) continue; single = $._singleUnit.$index(0, t2); if (single != null) { result.push(single); continue; } multiple = $._multiUnit.$index(0, t2); if (multiple != null) { B.JSArray_methods.addAll$1(result, multiple); continue; } result.push(t2); } return result; }, _initIfRequired() { if ($._initialized) return; A._register(" ", "\xa0"); A._register("A", "A\u24b6\uff21\xc0\xc1\xc2\u1ea6\u1ea4\u1eaa\u1ea8\xc3\u0100\u0102\u1eb0\u1eae\u1eb4\u1eb2\u0226\u01e0\xc4\u01de\u1ea2\xc5\u01fa\u01cd\u0200\u0202\u1ea0\u1eac\u1eb6\u1e00\u0104\u023a\u2c6f"); A._register("AA", "\ua732"); A._register("AE", "\xc6\u01fc\u01e2"); A._register("AO", "\ua734"); A._register("AU", "\ua736"); A._register("AV", "\ua738\ua73a"); A._register("AY", "\ua73c"); A._register("B", "B\u24b7\uff22\u1e02\u1e04\u1e06\u0243\u0182\u0181"); A._register("C", "C\u24b8\uff23\u0106\u0108\u010a\u010c\xc7\u1e08\u0187\u023b\ua73e"); A._register("D", "D\u24b9\uff24\u1e0a\u010e\u1e0c\u1e10\u1e12\u1e0e\u0110\u018b\u018a\u0189\ua779"); A._register("DZ", "\u01f1\u01c4"); A._register("Dz", "\u01f2\u01c5"); A._register("E", "E\u24ba\uff25\xc8\xc9\xca\u1ec0\u1ebe\u1ec4\u1ec2\u1ebc\u0112\u1e14\u1e16\u0114\u0116\xcb\u1eba\u011a\u0204\u0206\u1eb8\u1ec6\u0228\u1e1c\u0118\u1e18\u1e1a\u0190\u018e"); A._register("F", "F\u24bb\uff26\u1e1e\u0191\ua77b"); A._register("G", "G\u24bc\uff27\u01f4\u011c\u1e20\u011e\u0120\u01e6\u0122\u01e4\u0193\ua7a0\ua77d\ua77e"); A._register("H", "H\u24bd\uff28\u0124\u1e22\u1e26\u021e\u1e24\u1e28\u1e2a\u0126\u2c67\u2c75\ua78d"); A._register("I", "I\u24be\uff29\xcc\xcd\xce\u0128\u012a\u012c\u0130\xcf\u1e2e\u1ec8\u01cf\u0208\u020a\u1eca\u012e\u1e2c\u0197"); A._register("J", "J\u24bf\uff2a\u0134\u0248"); A._register("K", "K\u24c0\uff2b\u1e30\u01e8\u1e32\u0136\u1e34\u0198\u2c69\ua740\ua742\ua744\ua7a2"); A._register("L", "L\u24c1\uff2c\u013f\u0139\u013d\u1e36\u1e38\u013b\u1e3c\u1e3a\u0141\u023d\u2c62\u2c60\ua748\ua746\ua780"); A._register("LJ", "\u01c7"); A._register("Lj", "\u01c8"); A._register("M", "M\u24c2\uff2d\u1e3e\u1e40\u1e42\u2c6e\u019c"); A._register("N", "N\u24c3\uff2e\u01f8\u0143\xd1\u1e44\u0147\u1e46\u0145\u1e4a\u1e48\u0220\u019d\ua790\ua7a4"); A._register("NJ", "\u01ca"); A._register("Nj", "\u01cb"); A._register("O", "O\u24c4\uff2f\xd2\xd3\xd4\u1ed2\u1ed0\u1ed6\u1ed4\xd5\u1e4c\u022c\u1e4e\u014c\u1e50\u1e52\u014e\u022e\u0230\xd6\u022a\u1ece\u0150\u01d1\u020c\u020e\u01a0\u1edc\u1eda\u1ee0\u1ede\u1ee2\u1ecc\u1ed8\u01ea\u01ec\xd8\u01fe\u0186\u019f\ua74a\ua74c"); A._register("OI", "\u01a2"); A._register("OO", "\ua74e"); A._register("OU", "\u0222"); A._register("P", "P\u24c5\uff30\u1e54\u1e56\u01a4\u2c63\ua750\ua752\ua754"); A._register("Q", "Q\u24c6\uff31\ua756\ua758\u024a"); A._register("R", "R\u24c7\uff32\u0154\u1e58\u0158\u0210\u0212\u1e5a\u1e5c\u0156\u1e5e\u024c\u2c64\ua75a\ua7a6\ua782"); A._register("S", "S\u24c8\uff33\u1e9e\u015a\u1e64\u015c\u1e60\u0160\u1e66\u1e62\u1e68\u0218\u015e\u2c7e\ua7a8\ua784"); A._register("T", "T\u24c9\uff34\u1e6a\u0164\u1e6c\u021a\u0162\u1e70\u1e6e\u0166\u01ac\u01ae\u023e\ua786"); A._register("Th", "\xde"); A._register("TZ", "\ua728"); A._register("U", "U\u24ca\uff35\xd9\xda\xdb\u0168\u1e78\u016a\u1e7a\u016c\xdc\u01db\u01d7\u01d5\u01d9\u1ee6\u016e\u0170\u01d3\u0214\u0216\u01af\u1eea\u1ee8\u1eee\u1eec\u1ef0\u1ee4\u1e72\u0172\u1e76\u1e74\u0244"); A._register("V", "V\u24cb\uff36\u1e7c\u1e7e\u01b2\ua75e\u0245"); A._register("VY", "\ua760"); A._register("W", "W\u24cc\uff37\u1e80\u1e82\u0174\u1e86\u1e84\u1e88\u2c72"); A._register("X", "X\u24cd\uff38\u1e8a\u1e8c"); A._register("Y", "Y\u24ce\uff39\u1ef2\xdd\u0176\u1ef8\u0232\u1e8e\u0178\u1ef6\u1ef4\u01b3\u024e\u1efe"); A._register("Z", "Z\u24cf\uff3a\u0179\u1e90\u017b\u017d\u1e92\u1e94\u01b5\u0224\u2c7f\u2c6b\ua762"); A._register("a", "a\u24d0\uff41\u1e9a\xe0\xe1\xe2\u1ea7\u1ea5\u1eab\u1ea9\xe3\u0101\u0103\u1eb1\u1eaf\u1eb5\u1eb3\u0227\u01e1\xe4\u01df\u1ea3\xe5\u01fb\u01ce\u0201\u0203\u1ea1\u1ead\u1eb7\u1e01\u0105\u2c65\u0250\u0251"); A._register("aa", "\ua733"); A._register("ae", "\xe6\u01fd\u01e3"); A._register("ao", "\ua735"); A._register("au", "\ua737"); A._register("av", "\ua739\ua73b"); A._register("ay", "\ua73d"); A._register("b", "b\u24d1\uff42\u1e03\u1e05\u1e07\u0180\u0183\u0253"); A._register("c", "c\u24d2\uff43\u0107\u0109\u010b\u010d\xe7\u1e09\u0188\u023c\ua73f\u2184"); A._register("d", "d\u24d3\uff44\u1e0b\u010f\u1e0d\u1e11\u1e13\u1e0f\u0111\u018c\u0256\u0257\ua77a"); A._register("dz", "\u01f3\u01c6"); A._register("e", "e\u24d4\uff45\xe8\xe9\xea\u1ec1\u1ebf\u1ec5\u1ec3\u1ebd\u0113\u1e15\u1e17\u0115\u0117\xeb\u1ebb\u011b\u0205\u0207\u1eb9\u1ec7\u0229\u1e1d\u0119\u1e19\u1e1b\u0247\u025b\u01dd"); A._register("f", "f\u24d5\uff46\u1e1f\u0192\ua77c"); A._register("ff", "\ufb00"); A._register("fi", "\ufb01"); A._register("fl", "\ufb02"); A._register("ffi", "\ufb03"); A._register("ffl", "\ufb04"); A._register("g", "g\u24d6\uff47\u01f5\u011d\u1e21\u011f\u0121\u01e7\u0123\u01e5\u0260\ua7a1\u1d79\ua77f"); A._register("h", "h\u24d7\uff48\u0125\u1e23\u1e27\u021f\u1e25\u1e29\u1e2b\u1e96\u0127\u2c68\u2c76\u0265"); A._register("hv", "\u0195"); A._register("i", "i\u24d8\uff49\xec\xed\xee\u0129\u012b\u012d\xef\u1e2f\u1ec9\u01d0\u0209\u020b\u1ecb\u012f\u1e2d\u0268\u0131"); A._register("j", "j\u24d9\uff4a\u0135\u01f0\u0249"); A._register("k", "k\u24da\uff4b\u1e31\u01e9\u1e33\u0137\u1e35\u0199\u2c6a\ua741\ua743\ua745\ua7a3"); A._register("l", "l\u24db\uff4c\u0140\u013a\u013e\u1e37\u1e39\u013c\u1e3d\u1e3b\u017f\u0142\u019a\u026b\u2c61\ua749\ua781\ua747"); A._register("lj", "\u01c9"); A._register("m", "m\u24dc\uff4d\u1e3f\u1e41\u1e43\u0271\u026f"); A._register("n", "n\xf1n\u24dd\uff4e\u01f9\u0144\xf1\u1e45\u0148\u1e47\u0146\u1e4b\u1e49\u019e\u0272\u0149\ua791\ua7a5\u043b\u0509"); A._register("nj", "\u01cc"); A._register("o", "\u07c0o\u24de\uff4f\xf2\xf3\xf4\u1ed3\u1ed1\u1ed7\u1ed5\xf5\u1e4d\u022d\u1e4f\u014d\u1e51\u1e53\u014f\u022f\u0231\xf6\u022b\u1ecf\u0151\u01d2\u020d\u020f\u01a1\u1edd\u1edb\u1ee1\u1edf\u1ee3\u1ecd\u1ed9\u01eb\u01ed\xf8\u01ff\u0254\ua74b\ua74d\u0275"); A._register("oe", "\u0152\u0153"); A._register("oi", "\u01a3"); A._register("ou", "\u0223"); A._register("oo", "\ua74f"); A._register("p", "p\u24df\uff50\u1e55\u1e57\u01a5\u1d7d\ua751\ua753\ua755"); A._register("q", "q\u24e0\uff51\u024b\ua757\ua759"); A._register("r", "r\u24e1\uff52\u0155\u1e59\u0159\u0211\u0213\u1e5b\u1e5d\u0157\u1e5f\u024d\u027d\ua75b\ua7a7\ua783"); A._register("s", "s\u24e2\uff53\xdf\u015b\u1e65\u015d\u1e61\u0161\u1e67\u1e63\u1e69\u0219\u015f\u023f\ua7a9\ua785\u1e9b"); A._register("ss", "\xdf"); A._register("t", "t\u24e3\uff54\u1e6b\u1e97\u0165\u1e6d\u021b\u0163\u1e71\u1e6f\u0167\u01ad\u0288\u2c66\ua787"); A._register("th", "\xfe"); A._register("tz", "\ua729"); A._register("u", "u\u24e4\uff55\xf9\xfa\xfb\u0169\u1e79\u016b\u1e7b\u016d\xfc\u01dc\u01d8\u01d6\u01da\u1ee7\u016f\u0171\u01d4\u0215\u0217\u01b0\u1eeb\u1ee9\u1eef\u1eed\u1ef1\u1ee5\u1e73\u0173\u1e77\u1e75\u0289"); A._register("v", "v\u24e5\uff56\u1e7d\u1e7f\u028b\ua75f\u028c"); A._register("vy", "\ua761"); A._register("w", "w\u24e6\uff57\u1e81\u1e83\u0175\u1e87\u1e85\u1e98\u1e89\u2c73"); A._register("x", "x\u24e7\uff58\u1e8b\u1e8d"); A._register("y", "y\u24e8\uff59\u1ef3\xfd\u0177\u1ef9\u0233\u1e8f\xff\u1ef7\u1e99\u1ef5\u01b4\u024f\u1eff"); A._register("z", "z\u24e9\uff5a\u017a\u1e91\u017c\u017e\u1e93\u1e95\u01b6\u0225\u0240\u2c6c\ua763"); $._initialized = true; }, DialogHandler_DialogHandler(pathToExecutable) { pathToExecutable = pathToExecutable.toLowerCase(); if (B.JSString_methods.endsWith$1(pathToExecutable, "kdialog")) return new A.KDialogHandler(); else if (B.JSString_methods.endsWith$1(pathToExecutable, "qarma") || B.JSString_methods.endsWith$1(pathToExecutable, "zenity")) return new A.QarmaAndZenityHandler(); throw A.wrapException(A.UnimplementedError$("DialogHandler for executable " + pathToExecutable + " has not been implemented")); }, filePickerWithFFI() { return A.throwExpression(A.UnimplementedError$("Unsupported")); }, compute(callback, message, debugLabel, $Q, $R) { return A.compute$body(callback, message, debugLabel, $Q, $R, $R); }, compute$body(callback, message, debugLabel, $Q, $R, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue; var $async$compute = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(null, $async$compute); case 3: // returning from await. $async$returnValue = callback.call$1(message); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$compute, $async$completer); }, setEquals(a, b) { var t1; if (a == null) return b == null; if (b == null || a.get$length(a) != b.get$length(b)) return false; if (a === b) return true; for (t1 = a.get$iterator(a); t1.moveNext$0();) if (!b.contains$1(0, t1.get$current(t1))) return false; return true; }, listEquals0(a, b) { var t1, t2, index; if (a == null) return b == null; if (b == null || J.get$length$asx(a) != J.get$length$asx(b)) return false; if (a === b) return true; for (t1 = J.getInterceptor$asx(a), t2 = J.getInterceptor$asx(b), index = 0; index < t1.get$length(a); ++index) if (!J.$eq$(t1.$index(a, index), t2.$index(b, index))) return false; return true; }, mapEquals(a, b) { var t1, key; if (a == null) return b == null; if (b == null || a.get$length(a) != b.get$length(b)) return false; if (a === b) return true; for (t1 = J.get$iterator$ax(a.get$keys(a)); t1.moveNext$0();) { key = t1.get$current(t1); if (!b.containsKey$1(0, key) || !J.$eq$(b.$index(0, key), a.$index(0, key))) return false; } return true; }, mergeSort(list, compare, $T) { var middle, secondLength, scratchSpace, firstTarget, end = list.length, $length = end - 0; if ($length < 2) return; if ($length < 32) { A._insertionSort(list, compare, end, 0, $T); return; } middle = B.JSInt_methods._shrOtherPositive$1($length, 1); secondLength = end - middle; scratchSpace = A.List_List$filled(secondLength, list[0], false, $T); A._mergeSort(list, compare, middle, end, scratchSpace, 0); firstTarget = end - (middle - 0); A._mergeSort(list, compare, 0, middle, list, firstTarget); A._merge(compare, list, firstTarget, end, scratchSpace, 0, secondLength, list, 0); }, _insertionSort(list, compare, end, start, $T) { var pos, element, max, min, mid; for (pos = start + 1; pos < end;) { element = list[pos]; for (max = pos, min = start; min < max;) { mid = min + B.JSInt_methods._shrOtherPositive$1(max - min, 1); if (compare.call$2(element, list[mid]) < 0) max = mid; else min = mid + 1; } ++pos; B.JSArray_methods.setRange$4(list, min + 1, pos, list, min); list[min] = element; } }, _movingInsertionSort(list, compare, start, end, target, targetOffset) { var i, element, max, max0, min, mid, $length = end - start; if ($length === 0) return; target[targetOffset] = list[start]; for (i = 1; i < $length; ++i) { element = list[start + i]; max = targetOffset + i; for (max0 = max, min = targetOffset; min < max0;) { mid = min + B.JSInt_methods._shrOtherPositive$1(max0 - min, 1); if (compare.call$2(element, target[mid]) < 0) max0 = mid; else min = mid + 1; } B.JSArray_methods.setRange$4(target, min + 1, max + 1, target, min); target[min] = element; } }, _mergeSort(list, compare, start, end, target, targetOffset) { var middle, firstLength, targetMiddle, $length = end - start; if ($length < 32) { A._movingInsertionSort(list, compare, start, end, target, targetOffset); return; } middle = start + B.JSInt_methods._shrOtherPositive$1($length, 1); firstLength = middle - start; targetMiddle = targetOffset + firstLength; A._mergeSort(list, compare, middle, end, target, targetMiddle); A._mergeSort(list, compare, start, middle, list, middle); A._merge(compare, list, middle, middle + firstLength, target, targetMiddle, targetMiddle + (end - middle), target, targetOffset); }, _merge(compare, firstList, firstStart, firstEnd, secondList, secondStart, secondEnd, target, targetOffset) { var targetOffset0, cursor10, cursor20, cursor1 = firstStart + 1, firstElement = firstList[firstStart], cursor2 = secondStart + 1, secondElement = secondList[secondStart]; for (; true; targetOffset = targetOffset0) { targetOffset0 = targetOffset + 1; if (compare.call$2(firstElement, secondElement) <= 0) { target[targetOffset] = firstElement; if (cursor1 === firstEnd) { targetOffset = targetOffset0; break; } cursor10 = cursor1 + 1; firstElement = firstList[cursor1]; } else { target[targetOffset] = secondElement; if (cursor2 !== secondEnd) { cursor20 = cursor2 + 1; secondElement = secondList[cursor2]; cursor2 = cursor20; continue; } targetOffset = targetOffset0 + 1; target[targetOffset0] = firstElement; B.JSArray_methods.setRange$4(target, targetOffset, targetOffset + (firstEnd - cursor1), firstList, cursor1); return; } cursor1 = cursor10; } targetOffset0 = targetOffset + 1; target[targetOffset] = secondElement; B.JSArray_methods.setRange$4(target, targetOffset0, targetOffset0 + (secondEnd - cursor2), secondList, cursor2); }, debugInstrumentAction(description, action, $T) { return A.debugInstrumentAction$body(description, action, $T, $T); }, debugInstrumentAction$body(description, action, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, t1; var $async$debugInstrumentAction = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = action.call$0(); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$debugInstrumentAction, $async$completer); }, debugFormatDouble(value) { if (value == null) return "null"; return B.JSNumber_methods.toStringAsFixed$1(value, 1); }, debugPrintThrottled(message, wrapWidth) { var messageLines = A._setArrayType(message.split("\n"), type$.JSArray_String); $.$get$_debugPrintBuffer().addAll$1(0, messageLines); if (!$._debugPrintScheduled) A._debugPrintTask(); }, _debugPrintTask() { var line, toZone, t1 = $._debugPrintScheduled = false, t2 = $.$get$_debugPrintStopwatch(); if (A.Duration$(0, 0, t2.get$elapsedMicroseconds(), 0, 0, 0)._duration > 1000000) { if (t2._stop == null) t2._stop = $.Primitives_timerTicks.call$0(); t2.reset$0(0); $._debugPrintedCharacters = 0; } while (true) { if ($._debugPrintedCharacters < 12288) { t2 = $.$get$_debugPrintBuffer(); t2 = !t2.get$isEmpty(t2); } else t2 = t1; if (!t2) break; line = $.$get$_debugPrintBuffer().removeFirst$0(); $._debugPrintedCharacters = $._debugPrintedCharacters + line.length; toZone = $.printToZone; if (toZone == null) A.printString(line); else toZone.call$1(line); } t1 = $.$get$_debugPrintBuffer(); if (!t1.get$isEmpty(t1)) { $._debugPrintScheduled = true; $._debugPrintedCharacters = 0; A.Timer_Timer(B.Duration_1000000, A.print___debugPrintTask$closure()); if ($._debugPrintCompleter == null) $._debugPrintCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); } else { $.$get$_debugPrintStopwatch().start$0(0); t1 = $._debugPrintCompleter; if (t1 != null) t1.complete$0(0); $._debugPrintCompleter = null; } }, ElevationOverlay_applyOverlay(context, color, elevation) { var t1, t2, theme = A.Theme_of(context); if (elevation > 0) if (theme.applyElevationOverlayColor) { t1 = theme.colorScheme; if (t1.brightness === B.Brightness_0) { t2 = A.Color$fromARGB(255, color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255); t1 = t1.surface.value; t1 = t2.$eq(0, A.Color$fromARGB(255, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255)); } else t1 = false; } else t1 = false; else t1 = false; if (t1) return A.Color_alphaBlend(A.ElevationOverlay__overlayColor(theme.colorScheme.onSurface, elevation), color); return color; }, ElevationOverlay__overlayColor(color, elevation) { var t1 = Math.log(elevation + 1); color.toString; return A.Color$fromARGB(B.JSNumber_methods.round$0(255 * ((4.5 * t1 + 2) / 100)), color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255); }, PlatformAdaptiveIcons__isCupertino() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return false; case B.TargetPlatform_2: case B.TargetPlatform_4: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, positionDependentBox(childSize, preferBelow, size, target, verticalOffset) { var fitsAbove, tooltipBelow, y, x, normalizedTargetX, edge, t1 = target._dy, t2 = t1 + verticalOffset, t3 = childSize._dy, t4 = size._dy - 10, fitsBelow = t2 + t3 <= t4; t3 = t1 - verticalOffset - t3; fitsAbove = t3 >= 10; if (preferBelow) tooltipBelow = fitsBelow || !fitsAbove; else tooltipBelow = !(fitsAbove || !fitsBelow); y = tooltipBelow ? Math.min(t2, t4) : Math.max(t3, 10); t1 = size._dx; t2 = childSize._dx; if (t1 - 20 < t2) x = (t1 - t2) / 2; else { t3 = t1 - 10; normalizedTargetX = J.clamp$2$n(target._dx, 10, t3); t4 = t2 / 2; edge = 10 + t4; if (normalizedTargetX < edge) x = 10; else x = normalizedTargetX > t1 - edge ? t3 - t2 : normalizedTargetX - t4; } return new A.Offset(x, y); }, MatrixUtils_getAsTranslation(transform) { var values = transform._m4storage; if (values[0] === 1 && values[1] === 0 && values[2] === 0 && values[3] === 0 && values[4] === 0 && values[5] === 1 && values[6] === 0 && values[7] === 0 && values[8] === 0 && values[9] === 0 && values[10] === 1 && values[11] === 0 && values[14] === 0 && values[15] === 1) return new A.Offset(values[12], values[13]); return null; }, MatrixUtils_matrixEquals(a, b) { var t1, t2, t3; if (a == b) return true; if (a == null) { b.toString; return A.MatrixUtils_isIdentity(b); } if (b == null) return A.MatrixUtils_isIdentity(a); t1 = a._m4storage; t2 = t1[0]; t3 = b._m4storage; return t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8] && t1[9] === t3[9] && t1[10] === t3[10] && t1[11] === t3[11] && t1[12] === t3[12] && t1[13] === t3[13] && t1[14] === t3[14] && t1[15] === t3[15]; }, MatrixUtils_isIdentity(a) { var t1 = a._m4storage; return t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 1; }, MatrixUtils_transformPoint(transform, point) { var storage = transform._m4storage, x = point._dx, y = point._dy, rx = storage[0] * x + storage[4] * y + storage[12], ry = storage[1] * x + storage[5] * y + storage[13], rw = storage[3] * x + storage[7] * y + storage[15]; if (rw === 1) return new A.Offset(rx, ry); else return new A.Offset(rx / rw, ry / rw); }, MatrixUtils__accumulate(m, x, y, first, isAffine) { var t1, w = isAffine ? 1 : 1 / (m[3] * x + m[7] * y + m[15]), tx = (m[0] * x + m[4] * y + m[12]) * w, ty = (m[1] * x + m[5] * y + m[13]) * w; if (first) { t1 = $.$get$MatrixUtils__minMax(); t1[2] = tx; t1[0] = tx; t1[3] = ty; t1[1] = ty; } else { t1 = $.$get$MatrixUtils__minMax(); if (tx < t1[0]) t1[0] = tx; if (ty < t1[1]) t1[1] = ty; if (tx > t1[2]) t1[2] = tx; if (ty > t1[3]) t1[3] = ty; } }, MatrixUtils_transformRect(transform, rect) { var isAffine, wx, hx, rx, wy, hy, ry, left, right, $top, bottom, hw, rw, ulx, uly, urx, t3, ury, t4, llx, lly, lrx, lry, storage = transform._m4storage, x = rect.left, y = rect.top, t1 = rect.right, w = t1 - x, t2 = rect.bottom, h = t2 - y; if (!isFinite(w) || !isFinite(h)) { isAffine = storage[3] === 0 && storage[7] === 0 && storage[15] === 1; A.MatrixUtils__accumulate(storage, x, y, true, isAffine); A.MatrixUtils__accumulate(storage, t1, y, false, isAffine); A.MatrixUtils__accumulate(storage, x, t2, false, isAffine); A.MatrixUtils__accumulate(storage, t1, t2, false, isAffine); t1 = $.$get$MatrixUtils__minMax(); return new A.Rect(t1[0], t1[1], t1[2], t1[3]); } t1 = storage[0]; wx = t1 * w; t2 = storage[4]; hx = t2 * h; rx = t1 * x + t2 * y + storage[12]; t2 = storage[1]; wy = t2 * w; t1 = storage[5]; hy = t1 * h; ry = t2 * x + t1 * y + storage[13]; t1 = storage[3]; if (t1 === 0 && storage[7] === 0 && storage[15] === 1) { left = rx + wx; if (wx < 0) right = rx; else { right = left; left = rx; } if (hx < 0) left += hx; else right += hx; $top = ry + wy; if (wy < 0) bottom = ry; else { bottom = $top; $top = ry; } if (hy < 0) $top += hy; else bottom += hy; return new A.Rect(left, $top, right, bottom); } else { t2 = storage[7]; hw = t2 * h; rw = t1 * x + t2 * y + storage[15]; ulx = rx / rw; uly = ry / rw; t2 = rx + wx; t1 = rw + t1 * w; urx = t2 / t1; t3 = ry + wy; ury = t3 / t1; t4 = rw + hw; llx = (rx + hx) / t4; lly = (ry + hy) / t4; t1 += hw; lrx = (t2 + hx) / t1; lry = (t3 + hy) / t1; return new A.Rect(A.MatrixUtils__min4(ulx, urx, llx, lrx), A.MatrixUtils__min4(uly, ury, lly, lry), A.MatrixUtils__max4(ulx, urx, llx, lrx), A.MatrixUtils__max4(uly, ury, lly, lry)); } }, MatrixUtils__min4(a, b, c, d) { var e = a < b ? a : b, f = c < d ? c : d; return e < f ? e : f; }, MatrixUtils__max4(a, b, c, d) { var e = a > b ? a : b, f = c > d ? c : d; return e > f ? e : f; }, MatrixUtils_inverseTransformRect(transform, rect) { var transform0; if (A.MatrixUtils_isIdentity(transform)) return rect; transform0 = new A.Matrix4(new Float64Array(16)); transform0.setFrom$1(transform); transform0.copyInverse$1(transform0); return A.MatrixUtils_transformRect(transform0, rect); }, MatrixUtils_forceToPoint(offset) { var t2, t3, t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t2 = offset._dx; t3 = new A.Vector4(new Float64Array(4)); t3.setValues$4(0, 0, 0, t2); t1.setRow$2(0, t3); t3 = offset._dy; t2 = new A.Vector4(new Float64Array(4)); t2.setValues$4(0, 0, 0, t3); t1.setRow$2(1, t2); return t1; }, nearEqual(a, b, epsilon) { if (a == null || b == null) return a == b; return a > b - epsilon && a < b + epsilon || a === b; }, ChildLayoutHelper_dryLayoutChild(child, constraints) { return child.getDryLayout$1(constraints); }, ChildLayoutHelper_layoutChild(child, constraints) { var t1; child.layout$2$parentUsesSize(0, constraints, true); t1 = child._box$_size; t1.toString; return t1; }, SemanticsService_announce(message, textDirection) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$SemanticsService_announce = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.BasicMessageChannel_QXb.send$1(0, new A.AnnounceSemanticsEvent(message, textDirection, "announce").toMap$0()), $async$SemanticsService_announce); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$SemanticsService_announce, $async$completer); }, SemanticsService_tooltip(message) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$SemanticsService_tooltip = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.BasicMessageChannel_QXb.send$1(0, new A.TooltipSemanticsEvent(message, "tooltip").toMap$0()), $async$SemanticsService_tooltip); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$SemanticsService_tooltip, $async$completer); }, HapticFeedback_vibrate() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_vibrate = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$1("HapticFeedback.vibrate", type$.void), $async$HapticFeedback_vibrate); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$HapticFeedback_vibrate, $async$completer); }, HapticFeedback_lightImpact() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_lightImpact = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("HapticFeedback.vibrate", "HapticFeedbackType.lightImpact", type$.void), $async$HapticFeedback_lightImpact); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$HapticFeedback_lightImpact, $async$completer); }, HapticFeedback_mediumImpact() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_mediumImpact = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("HapticFeedback.vibrate", "HapticFeedbackType.mediumImpact", type$.void), $async$HapticFeedback_mediumImpact); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$HapticFeedback_mediumImpact, $async$completer); }, SystemNavigator_pop() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$SystemNavigator_pop = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.OptionalMethodChannel_0.invokeMethod$1$2("SystemNavigator.pop", null, type$.void), $async$SystemNavigator_pop); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$SystemNavigator_pop, $async$completer); }, SystemNavigator_routeInformationUpdated($location, replace, state) { return B.OptionalMethodChannel_qNA.invokeMethod$1$2("routeInformationUpdated", A.LinkedHashMap_LinkedHashMap$_literal(["location", $location, "state", state, "replace", replace], type$.String, type$.dynamic), type$.void); }, TextLayoutMetrics_isWhitespace(codeUnit) { switch (codeUnit) { case 9: case 10: case 11: case 12: case 13: case 28: case 29: case 30: case 31: case 32: case 160: case 5760: case 8192: case 8193: case 8194: case 8195: case 8196: case 8197: case 8198: case 8199: case 8200: case 8201: case 8202: case 8239: case 8287: case 12288: break; default: return false; } return true; }, getUserDataFromMap(data) { var t1, t2, t3; if (data == null) return null; t1 = J.getInterceptor$asx(data); t2 = t1.$index(data, "email"); t2.toString; A._asStringS(t2); t3 = t1.$index(data, "id"); t3.toString; A._asStringS(t3); return new A.GoogleSignInUserData(A._asStringQ(t1.$index(data, "displayName")), t2, t3, A._asStringQ(t1.$index(data, "photoUrl")), A._asStringQ(t1.$index(data, "idToken")), A._asStringQ(t1.$index(data, "serverAuthCode"))); }, injectJSLibraries(libraries) { var t3, t4, _i, library, script, t5, loading = A._setArrayType([], type$.JSArray_Future_void), tags = A._setArrayType([], type$.JSArray_HtmlElement), t1 = document, t2 = t1.querySelector("head"); t2.toString; for (t3 = libraries.length, t4 = type$._ElementEventStreamImpl_legacy_Event, _i = 0; _i < libraries.length; libraries.length === t3 || (0, A.throwConcurrentModificationError)(libraries), ++_i) { library = libraries[_i]; script = t1.createElement("script"); script.async = true; script.defer = true; script.src = library; t5 = new A._ElementEventStreamImpl(script, "load", false, t4); loading.push(t5.get$first(t5)); tags.push(script); } J.get$children$x(t2).addAll$1(0, tags); return A.Future_wait(loading, type$.void); }, gapiUserToPluginUserData(currentUser) { var profile, t2, t3, t4, t5, _null = null, t1 = currentUser == null, isSignedIn = t1 ? _null : J.isSignedIn$0$x(currentUser); if (isSignedIn == null) isSignedIn = false; profile = t1 ? _null : J.getBasicProfile$0$x(currentUser); if (isSignedIn) t2 = (profile == null ? _null : J.getId$0$x(profile)) == null; else t2 = true; if (t2) return _null; t2 = profile == null; t3 = t2 ? _null : J.getName$0$x(profile); t4 = t2 ? _null : J.getEmail$0$x(profile); if (t4 == null) t4 = ""; t5 = t2 ? _null : J.getId$0$x(profile); if (t5 == null) t5 = ""; t2 = t2 ? _null : J.getImageUrl$0$x(profile); return new A.GoogleSignInUserData(t3, t4, t5, t2, t1 ? _null : J.get$id_token$x(J.getAuthResponse$0$x(currentUser)), _null); }, wrapFormatException($name, value, body) { var error, error0, t1, exception; try { t1 = body.call$0(); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (t1 instanceof A.SourceSpanFormatException) { error = t1; throw A.wrapException(A.SourceSpanFormatException$("Invalid " + $name + ": " + error._span_exception$_message, error._span_exception$_span, J.get$source$z(error))); } else if (type$.FormatException._is(t1)) { error0 = t1; throw A.wrapException(A.FormatException$("Invalid " + $name + ' "' + value + '": ' + A.S(J.get$message$x(error0)), J.get$source$z(error0), J.get$offset$x(error0))); } else throw exception; } }, getColor(r, g, b, a) { return (B.JSNumber_methods.toInt$0(J.clamp$2$n(a, 0, 255)) << 24 | B.JSNumber_methods.toInt$0(J.clamp$2$n(b, 0, 255)) << 16 | B.JSNumber_methods.toInt$0(J.clamp$2$n(g, 0, 255)) << 8 | B.JSNumber_methods.toInt$0(J.clamp$2$n(r, 0, 255))) >>> 0; }, _emptySymbols() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.DateSymbols); }, _emptyPatterns() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Map_String_String); }, defaultLocale() { var zoneLocale = A._asStringQ($.Zone__current.$index(0, B.Symbol_89P)); return zoneLocale == null ? $._defaultLocale : zoneLocale; }, dayOfYear(month, day, leapYear) { var t1, t2; if (month === 1) return day; if (month === 2) return day + 31; t1 = B.JSNumber_methods.floor$0(30.6 * month - 91.4); t2 = leapYear ? 1 : 0; return t1 + day + 59 + t2; }, _setLoading(state, action) { return true; }, _setLoaded(state, action) { return false; }, _setSaving(state, action) { return true; }, _setSaved(state, action) { return false; }, presentCustomField(company, customFieldType, value) { if (company.getCustomFieldType$1(customFieldType) === "switch") return value === "yes"; else return value; }, convertHexStringToColor(value) { var t1, exception; value = value; if (value == null) return null; t1 = value; value = A.stringReplaceAllUnchecked(t1, "#", ""); if (J.get$length$asx(value) !== 6) return null; try { t1 = A.int_parse(value, 16); return new A.Color(t1 + 4278190080 >>> 0); } catch (exception) { return null; } }, convertColorToHexString(color) { var hex, t1, exception; try { hex = B.JSInt_methods.toRadixString$1(color.get$value(color), 16); t1 = J.substring$2$s(hex, 2, J.get$length$asx(hex)); return "#" + t1; } catch (exception) { return null; } }, addMonths(dateTime, offset) { var newYear, newMonth, result, t1, newDay, r = B.JSInt_methods.$mod(offset, 12), q = B.JSInt_methods._tdivFast$1(offset - r, 12); dateTime.toString; newYear = A.Primitives_getYear(dateTime) + q; newMonth = A.Primitives_getMonth(dateTime) + r; if (newMonth > 12) { ++newYear; newMonth -= 12; } result = B.List_mC8[newMonth]; if (newMonth === 2) if (B.JSInt_methods.$mod(newYear, 400) !== 0) t1 = B.JSInt_methods.$mod(newYear, 4) === 0 && B.JSInt_methods.$mod(newYear, 100) !== 0; else t1 = true; else t1 = false; if (t1) ++result; newDay = Math.min(A.Primitives_getDay(dateTime), result); if (dateTime.isUtc) { t1 = A.Primitives_valueFromDecomposedDate(newYear, newMonth, newDay, A.Primitives_getHours(dateTime), A.Primitives_getMinutes(dateTime), A.Primitives_getSeconds(dateTime), A.Primitives_getMilliseconds(dateTime), true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, true); } else { t1 = A.Primitives_valueFromDecomposedDate(newYear, newMonth, newDay, A.Primitives_getHours(dateTime), A.Primitives_getMinutes(dateTime), A.Primitives_getSeconds(dateTime), A.Primitives_getMilliseconds(dateTime), false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, false); } }, calculateStartDate(company, customEndDate, customStartDate, dateRange, offset) { var firstDayOfMonth, firstMonthOfYear, firstDayOfYear, startDate, endDate, today = new A.DateTime(Date.now(), false), t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(today), A.Primitives_getMonth(today), 1, 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); firstDayOfMonth = new A.DateTime(t1, true); firstMonthOfYear = A.Primitives_parseInt(company.firstMonthOfYear, null); if (firstMonthOfYear == null) firstMonthOfYear = 1; t1 = firstMonthOfYear > A.Primitives_getMonth(today) ? 1 : 0; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(today) - t1, firstMonthOfYear, 1, 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); firstDayOfYear = new A.DateTime(t1, true); switch (dateRange) { case B.DateRange_last7Days: return A.convertDateTimeToSqlDate(today.subtract$1(A.Duration$(7 * (1 + offset), 0, 0, 0, 0, 0))); case B.DateRange_last30Days: return A.convertDateTimeToSqlDate(today.subtract$1(A.Duration$(30 * (1 + offset), 0, 0, 0, 0, 0))); case B.DateRange_thisMonth: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, offset * -1)); case B.DateRange_lastMonth: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, (1 + offset) * -1)); case B.DateRange_thisQuarter: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, offset * -3 + B.JSInt_methods.$mod(A.Primitives_getMonth(today) - 1, 3) * -1)); case B.DateRange_lastQuarter: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, (offset + 1) * -3 + B.JSInt_methods.$mod(A.Primitives_getMonth(today) - 1, 3) * -1)); case B.DateRange_thisYear: t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDayOfYear) + offset * -1, A.Primitives_getMonth(firstDayOfYear), A.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.convertDateTimeToSqlDate(new A.DateTime(t1, true)); case B.DateRange_lastYear: t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDayOfYear) + (1 + offset) * -1, A.Primitives_getMonth(firstDayOfYear), A.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.convertDateTimeToSqlDate(new A.DateTime(t1, true)); default: if (customStartDate == null || customStartDate.length === 0) startDate = new A.DateTime(Date.now(), false); else { t1 = A.DateTime_tryParse(customStartDate); startDate = t1 == null ? new A.DateTime(Date.now(), false) : t1; } if (customEndDate == null || customEndDate.length === 0) endDate = new A.DateTime(Date.now(), false); else { t1 = A.DateTime_tryParse(customEndDate); endDate = t1 == null ? new A.DateTime(Date.now(), false) : t1; } return A.convertDateTimeToSqlDate(startDate.subtract$1(A.Duration$(B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, endDate._value - startDate._value, 0, 0)._duration, 864e8) * offset, 0, 0, 0, 0, 0))); } }, calculateEndDate(company, customEndDate, customStartDate, dateRange, offset) { var firstDayOfMonth, firstMonthOfYear, firstDayOfYear, startDate, endDate, today = new A.DateTime(Date.now(), false), t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(today), A.Primitives_getMonth(today), 1, 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); firstDayOfMonth = new A.DateTime(t1, true); firstMonthOfYear = A.Primitives_parseInt(company.firstMonthOfYear, null); if (firstMonthOfYear == null) firstMonthOfYear = 1; t1 = firstMonthOfYear > A.Primitives_getMonth(today) ? 1 : 0; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(today) - t1, firstMonthOfYear, 1, 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); firstDayOfYear = new A.DateTime(t1, true); switch (dateRange) { case B.DateRange_last7Days: return A.convertDateTimeToSqlDate(today.subtract$1(A.Duration$(7 * offset, 0, 0, 0, 0, 0))); case B.DateRange_last30Days: return A.convertDateTimeToSqlDate(today.subtract$1(A.Duration$(30 * offset, 0, 0, 0, 0, 0))); case B.DateRange_thisMonth: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, (offset - 1) * -1).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); case B.DateRange_lastMonth: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, offset * -1).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); case B.DateRange_thisQuarter: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, offset * -3 + B.JSInt_methods.$mod(A.Primitives_getMonth(today) - 1, 3) * -1 + 3).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); case B.DateRange_lastQuarter: return A.convertDateTimeToSqlDate(A.addMonths(firstDayOfMonth, (offset + 1) * -3 + B.JSInt_methods.$mod(A.Primitives_getMonth(today) - 1, 3) * -1 + 3).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); case B.DateRange_thisYear: t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDayOfYear) + (offset - 1) * -1, A.Primitives_getMonth(firstDayOfYear), A.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.convertDateTimeToSqlDate(new A.DateTime(t1, true).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); case B.DateRange_lastYear: t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(firstDayOfYear) + offset * -1, A.Primitives_getMonth(firstDayOfYear), A.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.convertDateTimeToSqlDate(new A.DateTime(t1, true).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))); default: if (customStartDate == null || customStartDate.length === 0) startDate = new A.DateTime(Date.now(), false); else { t1 = A.DateTime_tryParse(customStartDate); startDate = t1 == null ? new A.DateTime(Date.now(), false) : t1; } if (customEndDate == null || customEndDate.length === 0) endDate = new A.DateTime(Date.now(), false); else { t1 = A.DateTime_tryParse(customEndDate); endDate = t1 == null ? new A.DateTime(Date.now(), false) : t1; } return A.convertDateTimeToSqlDate(endDate.subtract$1(A.Duration$(B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, endDate._value - startDate._value, 0, 0)._duration, 864e8) * offset, 0, 0, 0, 0, 0))); } }, pickFile(allowedExtensions, fileIndex, fileType) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_MultipartFile), $async$returnValue, t1; var $async$pickFile = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._pickFile(allowedExtensions, fileIndex, fileType); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$pickFile, $async$completer); }, _pickFile(allowedExtensions, fileIndex, fileType) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_MultipartFile), $async$returnValue, file, t1, t2, result; var $async$_pickFile = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$FilePicker__instance(); t2 = fileType == null ? B.FileType_5 : fileType; $async$goto = 3; return A._asyncAwait(t1.pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(true, false, allowedExtensions == null ? A._setArrayType([], type$.JSArray_legacy_String) : allowedExtensions, t2, true), $async$_pickFile); case 3: // returning from await. result = $async$result; if (result != null && J.get$isNotEmpty$asx(result.files)) { file = J.get$first$ax(result.files); t1 = fileIndex == null ? "file" : fileIndex; $async$returnValue = A.MultipartFile_MultipartFile$fromBytes(t1, file.bytes, file.name); // goto return $async$goto = 1; break; } $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_pickFile, $async$completer); }, getEntityActionIcon(entityAction) { switch (entityAction) { case B.EntityAction_edit: return B._MdiIconData_gg9; case B.EntityAction_viewStatement: case B.EntityAction_viewPdf: case B.EntityAction_bulkDownload: return B.IconData_58560_MaterialIcons_null_false; case B.EntityAction_printPdf: return B.IconData_58602_MaterialIcons_null_false; case B.EntityAction_download: case B.EntityAction_documents: return B.IconData_57857_MaterialIcons_null_false; case B.EntityAction_clientPortal: return B.IconData_57712_MaterialIcons_null_false; case B.EntityAction_clone: case B.EntityAction_cloneToOther: case B.EntityAction_cloneToInvoice: case B.EntityAction_cloneToExpense: case B.EntityAction_cloneToQuote: case B.EntityAction_cloneToCredit: case B.EntityAction_cloneToRecurring: case B.EntityAction_cloneToPurchaseOrder: return B.IconData_57750_MaterialIcons_null_false; case B.EntityAction_markSent: return B.IconData_58608_MaterialIcons_null_false; case B.EntityAction_markPaid: return B.IconData_58497_MaterialIcons_null_false; case B.EntityAction_sendEmail: case B.EntityAction_bulkSendEmail: case B.EntityAction_resendInvite: case B.EntityAction_sendNow: return B.IconData_58737_MaterialIcons_null_true; case B.EntityAction_archive: return B.IconData_57489_MaterialIcons_null_false; case B.EntityAction_delete: return B.IconData_57785_MaterialIcons_null_false; case B.EntityAction_remove: return B.IconData_58648_MaterialIcons_null_false; case B.EntityAction_restore: return B.IconData_58676_MaterialIcons_null_false; case B.EntityAction_convertToInvoice: case B.EntityAction_convertToExpense: return B.IconData_57744_MaterialIcons_null_false; case B.EntityAction_approve: case B.EntityAction_accept: return B.IconData_57690_MaterialIcons_null_false; case B.EntityAction_newInvoice: case B.EntityAction_newExpense: case B.EntityAction_newTask: case B.EntityAction_newClient: case B.EntityAction_newPayment: case B.EntityAction_newQuote: case B.EntityAction_newCredit: case B.EntityAction_newRecurringInvoice: case B.EntityAction_newRecurringQuote: case B.EntityAction_newRecurringExpense: case B.EntityAction_newPurchaseOrder: case B.EntityAction_invoiceTask: case B.EntityAction_invoiceExpense: case B.EntityAction_invoiceProject: case B.EntityAction_addToInvoice: return B.IconData_57424_MaterialIcons_null_false; case B.EntityAction_resume: case B.EntityAction_start: return B.IconData_58571_MaterialIcons_null_false; case B.EntityAction_stop: return B.IconData_58886_MaterialIcons_null_false; case B.EntityAction_settings: return B.IconData_58751_MaterialIcons_null_false; case B.EntityAction_refundPayment: case B.EntityAction_cancelInvoice: return B.IconData_58648_MaterialIcons_null_false; case B.EntityAction_reverse: return B.IconData_59020_MaterialIcons_null_true; case B.EntityAction_copy: return B.IconData_57744_MaterialIcons_null_false; case B.EntityAction_applyPayment: case B.EntityAction_applyCredit: return B.IconData_58497_MaterialIcons_null_false; case B.EntityAction_disconnect: return B._MdiIconData_Oe4; case B.EntityAction_purge: return B.IconData_57786_MaterialIcons_null_false; case B.EntityAction_viewInvoice: return B._MdiIconData_2C7; case B.EntityAction_changeStatus: return B.IconData_57441_MaterialIcons_null_false; case B.EntityAction_cancel: return B.IconData_61224_MaterialIcons_null_false; case B.EntityAction_save: return B.IconData_57717_MaterialIcons_null_false; case B.EntityAction_addToInventory: return B.IconData_58185_MaterialIcons_null_false; case B.EntityAction_merge: return B._MdiIconData_kmg; default: return null; } }, getEntityIcon(entityType) { switch (entityType) { case B.EntityType_dashboard: return B._MdiIconData_rJg; case B.EntityType_reports: return B._MdiIconData_egL2; case B.EntityType_settings: return B._MdiIconData_AmO0; case B.EntityType_product: return B._MdiIconData_7T12; case B.EntityType_project: return B._MdiIconData_2Nv0; case B.EntityType_client: return B.IconData_58502_MaterialIcons_null_false; case B.EntityType_invoice: return B._MdiIconData_2C7; case B.EntityType_recurringInvoice: case B.EntityType_recurringExpense: case B.EntityType_recurringQuote: return B._MdiIconData_90Y; case B.EntityType_payment: return B._MdiIconData_dEB; case B.EntityType_companyGateway: return B._MdiIconData_ifn0; case B.EntityType_quote: return B._MdiIconData_sUr0; case B.EntityType_vendor: return B.IconData_57627_MaterialIcons_null_false; case B.EntityType_expense: return B._MdiIconData_jVE; case B.EntityType_task: return B._MdiIconData_90Y0; case B.EntityType_group: return B._MdiIconData_I2F; case B.EntityType_user: return B.IconData_58513_MaterialIcons_null_false; case B.EntityType_credit: return B._MdiIconData_yrt; case B.EntityType_design: return B._MdiIconData_atK; case B.EntityType_paymentTerm: return B._MdiIconData_dEB0; case B.EntityType_token: return B._MdiIconData_wMy0; case B.EntityType_webhook: return B._MdiIconData_FFB; case B.EntityType_expenseCategory: case B.EntityType_taskStatus: return B._MdiIconData_yvL; case B.EntityType_subscription: return B._MdiIconData_egL3; case B.EntityType_purchaseOrder: return B._MdiIconData_90Y1; default: return B._MdiIconData_UEg; } }, getFileTypeIcon(type) { switch (type) { case "pdf": return B._MdiIconData_MO91; case "psd": return B._MdiIconData_jVE; case "txt": return B._MdiIconData_Skt0; case "doc": case "docx": return B._MdiIconData_43h0; case "xls": case "xlsx": return B._MdiIconData_UEg0; case "ppt": case "pptt": return B._MdiIconData_MO93; default: return null; } }, getSettingIcon(section) { switch (section) { case "company_details": return B.IconData_57627_MaterialIcons_null_false; case "user_details": return B.IconData_58513_MaterialIcons_null_false; case "localization": return B.IconData_58214_MaterialIcons_null_false; case "payment_settings": case "company_gateways": return B._MdiIconData_dEB; case "tax_settings": case "tax_settings_rates": return B._MdiIconData_egL; case "import_export": return B.IconData_58168_MaterialIcons_null_false; case "device_settings": return B.IconData_58751_MaterialIcons_null_false; case "group_settings": return B._MdiIconData_I2F; case "generated_numbers": return B._MdiIconData_MO90; case "custom_fields": return B._MdiIconData_Skt; case "custom_designs": return B._MdiIconData_atK; case "invoice_design": return B._MdiIconData_EuK0; case "workflow_settings": return B._MdiIconData_IAW; case "client_portal": return B._MdiIconData_Qa6; case "email_settings": return B.IconData_58307_MaterialIcons_null_false; case "templates_and_reminders": return B._MdiIconData_CtR; case "credit_cards_and_banks": return B._MdiIconData_FFB; case "data_visualizations": return B._MdiIconData_FFB; case "user_management": return B.IconData_58502_MaterialIcons_null_false; case "account_management": return B._MdiIconData_GDY; case "product_settings": return A.getEntityIcon(B.EntityType_product); case "expense_settings": case "expense_category": return A.getEntityIcon(B.EntityType_expense); case "task_settings": case "task_status": return A.getEntityIcon(B.EntityType_task); case "subscriptions": return A.getEntityIcon(B.EntityType_subscription); default: return null; } }, getActivityIcon(categoryId) { switch (categoryId) { case 2: return B.IconData_57898_MaterialIcons_null_false; case 1: return B.IconData_57759_MaterialIcons_null_false; case 4: return B.IconData_58560_MaterialIcons_null_false; case 5: return B.IconData_58729_MaterialIcons_null_false; case 3: return B._MdiIconData_FFB; default: return B._MdiIconData_UEg; } }, getExchangeRate(currencyMap, fromCurrencyId, toCurrencyId) { var t1, fromCurrency, toCurrency, baseCurrency; if ((fromCurrencyId == null ? "" : fromCurrencyId).length !== 0) t1 = (toCurrencyId == null ? "" : toCurrencyId).length === 0; else t1 = true; if (t1) return 1; t1 = currencyMap._map$_map; fromCurrency = t1.$index(0, fromCurrencyId); toCurrency = t1.$index(0, toCurrencyId); baseCurrency = t1.$index(0, "1"); if (J.$eq$(fromCurrency, baseCurrency)) return toCurrency.exchangeRate; if (J.$eq$(toCurrency, baseCurrency)) { t1 = fromCurrency == null ? null : fromCurrency.exchangeRate; return 1 / (t1 == null ? 1 : t1); } return toCurrency.exchangeRate * (1 / fromCurrency.exchangeRate); }, isApple() { return false; }, isMacOS() { return false; }, isWindows() { return false; }, isLinux() { return false; }, isAndroid() { return false; }, isIOS() { return false; }, getPlatformLetter() { return "C"; }, getPlatformName() { return "Web"; }, getNativePlatform() { var userAgent, t1 = window.document.documentElement; t1.toString; userAgent = t1.getAttribute("data-" + new A._DataAttributeMap(new A._ElementAttributeMap(t1))._toHyphenedName$1("user-agent")); if (userAgent == null) userAgent = ""; userAgent = userAgent.toLowerCase(); if (B.JSString_methods.contains$1(userAgent, "ipad") || B.JSString_methods.contains$1(userAgent, "ipod") || B.JSString_methods.contains$1(userAgent, "iphone")) return "iPhone"; else if (B.JSString_methods.contains$1(userAgent, "android")) return "Android"; else if (B.JSString_methods.contains$1(userAgent, "win")) return "Windows"; else if (B.JSString_methods.contains$1(userAgent, "mac")) return "macOS"; else if (B.JSString_methods.contains$1(userAgent, "linux")) return "Linux"; else return ""; }, getNativeAppUrl(platform) { switch (platform) { case "Android": return string$.https_p; case "iPhone": return string$.https_as; case "Windows": return string$.https_w; case "macOS": return "https://apps.apple.com/app/id1503970375"; case "Linux": return "https://snapcraft.io/invoiceninja"; } return ""; }, getNativeAppIcon(platform) { switch (platform) { case "Android": return B.IconData_57477_MaterialIcons_null_false; case "iPhone": return B._MdiIconData_7T1; case "Windows": return B._MdiIconData_jVE1; case "macOS": return B._MdiIconData_7T1; case "Linux": return B._MdiIconData_ifn; } return null; }, getRateAppURL(context) { var _s47_ = "https://www.capterra.com/p/145215/Invoice-Ninja"; return _s47_; }, calculateLayout(context) { if (context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx < 700) return B.AppLayout_mobile; else return B.AppLayout_desktop; }, getLayout(context) { var t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.appLayout; return t1; }, SerializationUtils_computeDecode(list) { var t1 = J.getInterceptor$asx(list); return $.$get$serializers().deserializeWith$1$2(t1.$index(list, 0), t1.$index(list, 1), type$.dynamic); }, escapeAttribute(value) { var ch, t1 = value.length, i = 0, t2 = ""; while (true) { if (!(i < t1)) { t1 = t2; break; } ch = B.JSString_methods._codeUnitAt$1(value, i); if (ch === 92) { ++i; if (i === t1) { t1 = t2 + A.Primitives_stringFromCharCode(ch); break; } ch = B.JSString_methods._codeUnitAt$1(value, i); switch (ch) { case 34: t2 += """; break; case 33: case 35: case 36: case 37: case 38: case 39: case 40: case 41: case 42: case 43: case 44: case 45: case 46: case 47: case 58: case 59: case 60: case 61: case 62: case 63: case 64: case 91: case 92: case 93: case 94: case 95: case 96: case 123: case 124: case 125: case 126: t2 += A.Primitives_stringFromCharCode(ch); break; default: t2 = t2 + "%5C" + A.Primitives_stringFromCharCode(ch); } } else t2 = ch === 34 ? t2 + "%22" : t2 + A.Primitives_stringFromCharCode(ch); ++i; } return t1.charCodeAt(0) == 0 ? t1 : t1; }, current() { var exception, t1, path, lastIndex, uri = null; try { uri = A.Uri_base(); } catch (exception) { if (type$.Exception._is(A.unwrapException(exception))) { t1 = $._current; if (t1 != null) return t1; throw exception; } else throw exception; } if (J.$eq$(uri, $._currentUriBase)) { t1 = $._current; t1.toString; return t1; } $._currentUriBase = uri; if ($.$get$Style_platform() == $.$get$Style_url()) t1 = $._current = J.resolve$1$z(uri, ".").toString$0(0); else { path = uri.toFilePath$0(); lastIndex = path.length - 1; t1 = $._current = lastIndex === 0 ? path : B.JSString_methods.substring$2(path, 0, lastIndex); } return t1; }, isAlphabetic(char) { var t1; if (!(char >= 65 && char <= 90)) t1 = char >= 97 && char <= 122; else t1 = true; return t1; }, isDriveLetter(path, index) { var t1 = path.length, t2 = index + 2; if (t1 < t2) return false; if (!A.isAlphabetic(B.JSString_methods.codeUnitAt$1(path, index))) return false; if (B.JSString_methods.codeUnitAt$1(path, index + 1) !== 58) return false; if (t1 === t2) return true; return B.JSString_methods.codeUnitAt$1(path, t2) === 47; }, PermissionActions_request(_this) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PermissionStatus), $async$returnValue, t1, permissionStatus, $async$temp1; var $async$PermissionActions_request = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._setArrayType([_this], type$.JSArray_Permission); $async$temp1 = J; $async$goto = 3; return A._asyncAwait($.$get$PermissionHandlerPlatform__instance().requestPermissions$1(t1), $async$PermissionActions_request); case 3: // returning from await. permissionStatus = $async$temp1.$index$asx($async$result, _this); $async$returnValue = permissionStatus == null ? B.PermissionStatus_0 : permissionStatus; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$PermissionActions_request, $async$completer); }, setDocumentFfi(job, data) { throw A.wrapException(A.UnimplementedError$("Not using FFI")); }, setErrorFfi(job, message) { throw A.wrapException(A.UnimplementedError$("Not using FFI")); }, Printing_layoutPdf(dynamicLayout, format, $name, onLayout, usePrinterSettings) { return $.$get$PrintingPlatform__instance().layoutPdf$6(null, onLayout, $name, format, true, false); }, glog(n) { if (n < 1) throw A.wrapException(A.ArgumentError$("glog(" + n + ")", null)); return $.$get$_logTable()[n]; }, gexp(n) { for (; n < 0;) n += 255; for (; n >= 256;) n -= 255; return $.$get$_expTable()[n]; }, _createExpTable() { var i, list = new Uint8Array(256); for (i = 0; i < 8; ++i) list[i] = B.JSInt_methods._shlPositive$1(1, i); for (i = 8; i < 256; ++i) list[i] = (list[i - 4] ^ list[i - 5] ^ list[i - 6] ^ list[i - 8]) >>> 0; return list; }, _createLogTable() { var i, list = new Uint8Array(256); for (i = 0; i < 255; ++i) list[$.$get$_expTable()[i]] = i; return list; }, bchTypeInfo(data) { var d0, d = data << 10 >>> 0; for (d0 = d; A._bchDigit(d0) - A._bchDigit(1335) >= 0;) d0 = (d0 ^ B.JSInt_methods.$shl(1335, A._bchDigit(d0) - A._bchDigit(1335))) >>> 0; return ((d | d0) ^ 21522) >>> 0; }, bchTypeNumber(data) { var d0, d = data << 12 >>> 0; for (d0 = d; A._bchDigit(d0) - A._bchDigit(7973) >= 0;) d0 = (d0 ^ B.JSInt_methods.$shl(7973, A._bchDigit(d0) - A._bchDigit(7973))) >>> 0; return (d | d0) >>> 0; }, _bchDigit(data) { var digit; for (digit = 0; data !== 0;) { ++digit; data = data >>> 1; } return digit; }, getUtcDateTime() { return new A.DateTime(Date.now(), false).toUtc$0(); }, formatDateAsIso8601WithMillisPrecision(date) { var iso = date.toIso8601String$0(), millisecondSeparatorIndex = B.JSString_methods.lastIndexOf$1(iso, "."); return (millisecondSeparatorIndex !== -1 ? B.JSString_methods.substring$2(iso, 0, millisecondSeparatorIndex + 4) : iso) + "Z"; }, SignInWithApple_getAppleIDCredential(scopes, webAuthenticationOptions) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.AuthorizationCredentialAppleID), $async$returnValue; var $async$SignInWithApple_getAppleIDCredential = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $.$get$SignInWithApplePlatform__instance().getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions(null, scopes, null, webAuthenticationOptions); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$SignInWithApple_getAppleIDCredential, $async$completer); }, isAllTheSame(iter) { var firstValue, t1; if (iter.get$length(iter) === 0) return true; firstValue = iter.get$first(iter); for (t1 = A.SubListIterable$(iter, 1, null, iter.$ti._eval$1("ListIterable.E")), t1 = new A.ListIterator(t1, t1.get$length(t1), t1.$ti._eval$1("ListIterator")); t1.moveNext$0();) if (!J.$eq$(t1.__internal$_current, firstValue)) return false; return true; }, replaceFirstNull(list, element) { var index = B.JSArray_methods.indexOf$1(list, null); if (index < 0) throw A.wrapException(A.ArgumentError$(A.S(list) + " contains no null elements.", null)); list[index] = element; }, replaceWithNull(list, element) { var index = B.JSArray_methods.indexOf$1(list, element); if (index < 0) throw A.wrapException(A.ArgumentError$(A.S(list) + " contains no elements matching " + element.toString$0(0) + ".", null)); list[index] = null; }, countCodeUnits(string, codeUnit) { var t1, count; for (t1 = new A.CodeUnits(string), t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")), count = 0; t1.moveNext$0();) if (t1.__internal$_current === codeUnit) ++count; return count; }, findLineStart(context, text, column) { var beginningOfLine, index, lineStart; if (text.length === 0) for (beginningOfLine = 0; true;) { index = B.JSString_methods.indexOf$2(context, "\n", beginningOfLine); if (index === -1) return context.length - beginningOfLine >= column ? beginningOfLine : null; if (index - beginningOfLine >= column) return beginningOfLine; beginningOfLine = index + 1; } index = B.JSString_methods.indexOf$1(context, text); for (; index !== -1;) { lineStart = index === 0 ? 0 : B.JSString_methods.lastIndexOf$2(context, "\n", index - 1) + 1; if (column === index - lineStart) return lineStart; index = B.JSString_methods.indexOf$2(context, text, index + 1); } return null; }, StatesRebuilerLogger_log(m, e, s) { var errorMessage, exception, t1 = e == null, t2 = $.StatesRebuilerLogger_message = "[states_rebuilder::" + (t1 ? "INFO" : "ERROR") + "]: " + m; if (!t1) { errorMessage = null; try { errorMessage = A._asStringQ(J.get$message$x(e)); } catch (exception) { errorMessage = A.S(e); } t1 = $.StatesRebuilerLogger_message = $.StatesRebuilerLogger_message + (" : " + A.S(errorMessage)); } else t1 = t2; A.print(t1); if (s != null) A.print(s); }, doNothingWhenThereIsNoSelection(editContext, keyEvent) { if (editContext.composer._document_composer$_selection == null) return B.ExecutionInstruction_2; else return B.ExecutionInstruction_0; }, pasteWhenCmdVIsPressed(editContext, keyEvent) { if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_118)) return B.ExecutionInstruction_0; if (editContext.composer._document_composer$_selection == null) return B.ExecutionInstruction_0; editContext.commonOps.paste$0(); return B.ExecutionInstruction_2; }, selectAllWhenCmdAIsPressed(editContext, keyEvent) { if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_97)) return B.ExecutionInstruction_0; return editContext.commonOps.selectAll$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, copyWhenCmdCIsPressed(editContext, keyEvent) { var t1; if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_99)) return B.ExecutionInstruction_0; t1 = editContext.composer._document_composer$_selection; if (t1 == null) return B.ExecutionInstruction_0; if (J.$eq$(t1.base, t1.extent)) return B.ExecutionInstruction_2; editContext.commonOps.copy$0(0); return B.ExecutionInstruction_2; }, cutWhenCmdXIsPressed(editContext, keyEvent) { var t1; if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_120)) return B.ExecutionInstruction_0; t1 = editContext.composer._document_composer$_selection; if (t1 == null) return B.ExecutionInstruction_0; if (J.$eq$(t1.base, t1.extent)) return B.ExecutionInstruction_2; editContext.commonOps.cut$0(); return B.ExecutionInstruction_2; }, cmdBToToggleBold(editContext, keyEvent) { var t1, t2, t3; if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_98)) return B.ExecutionInstruction_0; t1 = editContext.composer._document_composer$_selection; t2 = type$.Attribution; t3 = editContext.commonOps; if (J.$eq$(t1.base, t1.extent)) { t1 = A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold], t2); t3.composer._preferences.toggleStyles$1(t1); return B.ExecutionInstruction_2; } else { t3.toggleAttributionsOnSelection$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold], t2)); return B.ExecutionInstruction_2; } }, cmdIToToggleItalics(editContext, keyEvent) { var t1, t2, t3; if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_105)) return B.ExecutionInstruction_0; t1 = editContext.composer._document_composer$_selection; t2 = type$.Attribution; t3 = editContext.commonOps; if (J.$eq$(t1.base, t1.extent)) { t1 = A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_italics], t2); t3.composer._preferences.toggleStyles$1(t1); return B.ExecutionInstruction_2; } else { t3.toggleAttributionsOnSelection$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_italics], t2)); return B.ExecutionInstruction_2; } }, anyCharacterOrDestructiveKeyToDeleteSelection(editContext, keyEvent) { var t2, t3, isDestructiveKey, character, isCharacterKey, t1 = editContext.composer._document_composer$_selection; if (t1 == null || J.$eq$(t1.base, t1.extent)) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934848)) { t2 = t1.get$values(t1); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934849); } else t2 = true; if (!t2) { t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934854)) { t2 = t1.get$values(t1); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934855); } else t2 = true; } else t2 = true; if (t2) return B.ExecutionInstruction_0; t2 = keyEvent.data; if (t2.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967323)) return B.ExecutionInstruction_0; t3 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; if (t1) return B.ExecutionInstruction_0; isDestructiveKey = t2.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304) || t2.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967423); character = keyEvent.character; t1 = character != null; isCharacterKey = t1 && character !== "" && !J.containsKey$1$x(B.Set_UOWB._collection$_map, character); if (!(isDestructiveKey || isCharacterKey)) return B.ExecutionInstruction_0; t2 = editContext.commonOps; t2.deleteSelection$0(); if (t1) t1 = J.containsKey$1$x(B.Set_UOWB._collection$_map, character); else t1 = false; if (t1) t2.insertCharacter$1(character === "Tab" ? " " : character); return B.ExecutionInstruction_2; }, backspaceToRemoveUpstreamContent(editContext, keyEvent) { var t1, t2; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304)) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934854)) { t2 = t1.get$values(t1); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934855); } else t2 = true; if (!t2) { t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934852)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934853); } else t1 = true; } else t1 = true; if (t1) return B.ExecutionInstruction_0; return editContext.commonOps.deleteUpstream$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, moveUpDownLeftAndRightWithArrowKeys(editContext, keyEvent) { var movementModifier, t2, t3, didMove, t1 = keyEvent.data; if (!B.JSArray_methods.contains$1(B.List_w97, t1.get$logicalKey())) return B.ExecutionInstruction_0; if (t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968066) || t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968067)) { if (A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent)) movementModifier = B.MovementModifier_line; else { t2 = $.$get$RawKeyboard_instance()._keysPressed; t3 = t2.get$values(t2); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934852)) { t2 = t2.get$values(t2); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934853); } else t2 = true; movementModifier = t2 ? B.MovementModifier_word : null; } t2 = editContext.commonOps; if (t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968066)) { t1 = $.$get$RawKeyboard_instance()._keysPressed; t3 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; didMove = t2.moveCaretUpstream$2$expand$movementModifier(t1, movementModifier); } else { t1 = $.$get$RawKeyboard_instance()._keysPressed; t3 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; didMove = t2.moveCaretDownstream$2$expand$movementModifier(t1, movementModifier); } } else if (t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968068)) { t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; didMove = editContext.commonOps.moveCaretUp$1$expand(t1); } else if (t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968065)) { t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; didMove = editContext.commonOps.moveCaretDown$1$expand(t1); } else didMove = false; return didMove ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, moveToLineStartOrEndWithCtrlAOrE(editContext, keyEvent) { var t1, t2, t3, didMove; $.$get$Platform__instance().toString; if ($.$get$isMac()) return B.ExecutionInstruction_0; t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934848)) { t2 = t1.get$values(t1); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934849); } else t2 = true; if (!t2) return B.ExecutionInstruction_0; t2 = keyEvent.data; if (t2.get$logicalKey().$eq(0, B.LogicalKeyboardKey_97)) { t3 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t3 = t1.get$values(t1); t3 = A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t3 = true; didMove = editContext.commonOps.moveCaretUpstream$2$expand$movementModifier(t3, B.MovementModifier_line); } else didMove = false; if (t2.get$logicalKey().$eq(0, B.LogicalKeyboardKey_101)) { t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851); } else t1 = true; didMove = editContext.commonOps.moveCaretDownstream$2$expand$movementModifier(t1, B.MovementModifier_line); } return didMove ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; }, deleteLineWithCmdBksp(editContext, keyEvent) { var t1; if (!A.PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(keyEvent) || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304)) return B.ExecutionInstruction_0; if (editContext.composer._document_composer$_selection == null) return B.ExecutionInstruction_0; t1 = editContext.commonOps; if (t1.moveCaretUpstream$2$expand$movementModifier(true, B.MovementModifier_line)) return t1.deleteSelection$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; return B.ExecutionInstruction_0; }, deleteWordWithAltBksp(editContext, keyEvent) { var t1 = $.$get$RawKeyboard_instance()._keysPressed, t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934852)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934853); } else t1 = true; if (!t1 || !keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967304)) return B.ExecutionInstruction_0; if (editContext.composer._document_composer$_selection == null) return B.ExecutionInstruction_0; t1 = editContext.commonOps; if (t1.moveCaretUpstream$2$expand$movementModifier(true, B.MovementModifier_word)) return t1.deleteSelection$0() ? B.ExecutionInstruction_2 : B.ExecutionInstruction_0; return B.ExecutionInstruction_0; }, collapseSelectionWhenEscIsPressed(editContext, keyEvent) { var t1; if (!keyEvent.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967323)) return B.ExecutionInstruction_0; t1 = editContext.composer._document_composer$_selection; if (t1 == null || J.$eq$(t1.base, t1.extent)) return B.ExecutionInstruction_0; editContext.commonOps.collapseSelection$0(); return B.ExecutionInstruction_2; }, getWordSelection(docLayout, docPosition) { var t2, component, nodePosition, wordNodeSelection, _s16_ = "getWordSelection", t1 = $.$get$_log3(); t1.log$2(_s16_, "_getWordSelection()"); t1.log$2(_s16_, " - doc position: " + A.S(docPosition)); t2 = docPosition.nodeId; component = docLayout.getComponentByNodeId$1(t2); if (!type$.TextComposable._is(component)) return null; nodePosition = docPosition.nodePosition; if (!(nodePosition instanceof A.TextNodePosition)) return null; wordNodeSelection = A.TextNodeSelection$fromTextSelection(A.TextNodeSelection$fromTextSelection(type$.ProseTextBlock._as(A._lateReadCheck(component._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getWordSelectionAt$1(nodePosition))); t1.log$2(_s16_, " - word selection: " + wordNodeSelection.toString$0(0)); return new A.DocumentSelection(new A.DocumentPosition(t2, new A.TextNodePosition(wordNodeSelection.baseOffset, B.TextAffinity_1)), new A.DocumentPosition(t2, new A.TextNodePosition(wordNodeSelection.extentOffset, B.TextAffinity_1))); }, getParagraphSelection(docLayout, docPosition) { var component, nodePosition, paragraphNodeSelection, _s21_ = "getParagraphSelection", t1 = $.$get$_log3(); t1.log$2(_s21_, "_getWordSelection()"); t1.log$2(_s21_, " - doc position: " + A.S(docPosition)); t1 = docPosition.nodeId; component = docLayout.getComponentByNodeId$1(t1); if (!type$.TextComposable._is(component)) return null; nodePosition = docPosition.nodePosition; if (!(nodePosition instanceof A.TextNodePosition)) return null; paragraphNodeSelection = A.TextNodeSelection$fromTextSelection(A.expandPositionToParagraph(component._widget.text.text, nodePosition)); return new A.DocumentSelection(new A.DocumentPosition(t1, new A.TextNodePosition(paragraphNodeSelection.baseOffset, B.TextAffinity_1)), new A.DocumentPosition(t1, new A.TextNodePosition(paragraphNodeSelection.extentOffset, B.TextAffinity_1))); }, expandPositionToParagraph(text, textPosition) { var t2, t3, start, end, t1 = text.length; if (t1 === 0) return B.TextSelection_ke5; t2 = textPosition.offset; t3 = t1 - 1; start = Math.min(A.checkNum(t2), t3); end = Math.min(A.checkNum(t2), t3); while (true) { if (!(start > 0 && text[start] !== "\n")) break; --start; } while (true) { if (!(end < t1 && text[end] !== "\n")) break; ++end; } return A.TextSelection$(B.TextAffinity_1, start, end, false); }, getParagraphDirection(text) { var t1, t2; text = J.trim$0$s(text); if (text.length !== 0) { t1 = $.$get$_rtlRegExp(); t2 = new A.Runes(text); t2 = A.Primitives_stringFromCharCode(t2.get$first(t2)); t1 = t1._nativeRegExp; t1 = t1.test(t2); } else t1 = false; if (t1) return B.TextDirection_0; else return B.TextDirection_1; }, PrimaryShortcutKey_get_isPrimaryShortcutKeyPressed(_this) { var t1, t2, t3; $.$get$Platform__instance().toString; t1 = $.$get$isMac(); if (t1) { t2 = $.$get$RawKeyboard_instance()._keysPressed; t3 = t2.get$values(t2); if (!A.LinkedHashSet_LinkedHashSet$of(t3, A._instanceType(t3)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934854)) { t2 = t2.get$values(t2); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934855); } else t2 = true; } else t2 = false; if (!t2) { $.$get$Platform__instance().toString; if (!t1) { t1 = $.$get$RawKeyboard_instance()._keysPressed; t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934848)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934849); } else t1 = true; } else t1 = false; } else t1 = true; return t1; }, IsArrowKeyExtension_get_isArrowKeyPressed(_this) { var t1 = _this.data; return t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968068) || t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968065) || t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968066) || t1.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294968067); }, launch(urlString, forceSafariVC, forceWebView) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, isWebURL, t1, result, url; var $async$launch = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = A.Uri_tryParse(J.trimLeft$0$s(urlString)); if (url != null) isWebURL = url.get$scheme() === "http" || url.get$scheme() === "https"; else isWebURL = false; if ((forceSafariVC === true || false) && !isWebURL) throw A.wrapException(A.PlatformException$("NOT_A_WEB_SCHEME", null, "To use webview or safariVC, you need to passin a web URL. This " + urlString + " is not a web URL.", null)); t1 = $.$get$UrlLauncherPlatform__instance(); $async$goto = 3; return A._asyncAwait(t1.launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(urlString, false, false, B.Map_empty6, false, forceSafariVC == null ? isWebURL : forceSafariVC, false, null), $async$launch); case 3: // returning from await. result = $async$result; $async$returnValue = result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$launch, $async$completer); }, canLaunch(urlString) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$canLaunch = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($.$get$UrlLauncherPlatform__instance().canLaunch$1(urlString), $async$canLaunch); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$canLaunch, $async$completer); }, UuidUtil_mathRNG(seed) { var rand, t1, i, b = new Uint8Array(16); if (seed === -1) rand = $.$get$UuidUtil__random(); else if (seed == null) rand = B.C__JSRandom; else { t1 = new A._Random(); t1._Random$1(seed); rand = t1; } for (i = 0; i < 16; ++i) b[i] = rand.nextInt$1(256); return b; } }, J = { makeDispatchRecord(interceptor, proto, extension, indexability) { return {i: interceptor, p: proto, e: extension, x: indexability}; }, getNativeInterceptor(object) { var proto, objectProto, $constructor, interceptor, t1, record = object[init.dispatchPropertyName]; if (record == null) if ($.initNativeDispatchFlag == null) { A.initNativeDispatch(); record = object[init.dispatchPropertyName]; } if (record != null) { proto = record.p; if (false === proto) return record.i; if (true === proto) return object; objectProto = Object.getPrototypeOf(object); if (proto === objectProto) return record.i; if (record.e === objectProto) throw A.wrapException(A.UnimplementedError$("Return interceptor for " + A.S(proto(object, record)))); } $constructor = object.constructor; if ($constructor == null) interceptor = null; else { t1 = $._JS_INTEROP_INTERCEPTOR_TAG; if (t1 == null) t1 = $._JS_INTEROP_INTERCEPTOR_TAG = init.getIsolateTag("_$dart_js"); interceptor = $constructor[t1]; } if (interceptor != null) return interceptor; interceptor = A.lookupAndCacheInterceptor(object); if (interceptor != null) return interceptor; if (typeof object == "function") return B.JavaScriptFunction_methods; proto = Object.getPrototypeOf(object); if (proto == null) return B.PlainJavaScriptObject_methods; if (proto === Object.prototype) return B.PlainJavaScriptObject_methods; if (typeof $constructor == "function") { t1 = $._JS_INTEROP_INTERCEPTOR_TAG; if (t1 == null) t1 = $._JS_INTEROP_INTERCEPTOR_TAG = init.getIsolateTag("_$dart_js"); Object.defineProperty($constructor, t1, {value: B.UnknownJavaScriptObject_methods, enumerable: false, writable: true, configurable: true}); return B.UnknownJavaScriptObject_methods; } return B.UnknownJavaScriptObject_methods; }, JSArray_JSArray$fixed($length, $E) { if (!A._isInt($length)) throw A.wrapException(A.ArgumentError$value($length, "length", "is not an integer")); if ($length < 0 || $length > 4294967295) throw A.wrapException(A.RangeError$range($length, 0, 4294967295, "length", null)); return J.JSArray_JSArray$markFixed(new Array($length), $E); }, JSArray_JSArray$allocateFixed($length, $E) { if ($length < 0 || $length > 4294967295) throw A.wrapException(A.RangeError$range($length, 0, 4294967295, "length", null)); return J.JSArray_JSArray$markFixed(new Array($length), $E); }, JSArray_JSArray$growable($length, $E) { if (!A._isInt($length) || $length < 0) throw A.wrapException(A.ArgumentError$("Length must be a non-negative integer: " + A.S($length), null)); return A._setArrayType(new Array($length), $E._eval$1("JSArray<0>")); }, JSArray_JSArray$allocateGrowable($length, $E) { if ($length < 0) throw A.wrapException(A.ArgumentError$("Length must be a non-negative integer: " + $length, null)); return A._setArrayType(new Array($length), $E._eval$1("JSArray<0>")); }, JSArray_JSArray$markFixed(allocation, $E) { return J.JSArray_markFixedList(A._setArrayType(allocation, $E._eval$1("JSArray<0>"))); }, JSArray_markFixedList(list) { list.fixed$length = Array; return list; }, JSArray_markUnmodifiableList(list) { list.fixed$length = Array; list.immutable$list = Array; return list; }, JSArray__compareAny(a, b) { return J.compareTo$1$ns(a, b); }, JSString__isWhitespace(codeUnit) { if (codeUnit < 256) switch (codeUnit) { case 9: case 10: case 11: case 12: case 13: case 32: case 133: case 160: return true; default: return false; } switch (codeUnit) { case 5760: case 8192: case 8193: case 8194: case 8195: case 8196: case 8197: case 8198: case 8199: case 8200: case 8201: case 8202: case 8232: case 8233: case 8239: case 8287: case 12288: case 65279: return true; default: return false; } }, JSString__skipLeadingWhitespace(string, index) { var t1, codeUnit; for (t1 = string.length; index < t1;) { codeUnit = B.JSString_methods._codeUnitAt$1(string, index); if (codeUnit !== 32 && codeUnit !== 13 && !J.JSString__isWhitespace(codeUnit)) break; ++index; } return index; }, JSString__skipTrailingWhitespace(string, index) { var index0, codeUnit; for (; index > 0; index = index0) { index0 = index - 1; codeUnit = B.JSString_methods.codeUnitAt$1(string, index0); if (codeUnit !== 32 && codeUnit !== 13 && !J.JSString__isWhitespace(codeUnit)) break; } return index; }, getInterceptor$(receiver) { if (typeof receiver == "number") { if (Math.floor(receiver) == receiver) return J.JSInt.prototype; return J.JSNumNotInt.prototype; } if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return J.JSNull.prototype; if (typeof receiver == "boolean") return J.JSBool.prototype; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof A.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$ansx(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof A.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$asx(receiver) { if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof A.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$ax(receiver) { if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof A.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$in(receiver) { if (typeof receiver == "number") { if (Math.floor(receiver) == receiver) return J.JSInt.prototype; return J.JSNumNotInt.prototype; } if (receiver == null) return receiver; if (!(receiver instanceof A.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$n(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (receiver == null) return receiver; if (!(receiver instanceof A.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$ns(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (!(receiver instanceof A.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$s(receiver) { if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (!(receiver instanceof A.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$x(receiver) { if (receiver == null) return receiver; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof A.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$z(receiver) { if (receiver == null) return receiver; if (!(receiver instanceof A.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, set$length$asx(receiver, value) { return J.getInterceptor$asx(receiver).set$length(receiver, value); }, set$text$x(receiver, value) { return J.getInterceptor$x(receiver).set$text(receiver, value); }, set$textDirection$x(receiver, value) { return J.getInterceptor$x(receiver).set$textDirection(receiver, value); }, get$AboveBaseline$x(receiver) { return J.getInterceptor$x(receiver).get$AboveBaseline(receiver); }, get$All$x(receiver) { return J.getInterceptor$x(receiver).get$All(receiver); }, get$AlphaType$x(receiver) { return J.getInterceptor$x(receiver).get$AlphaType(receiver); }, get$Alphabetic$x(receiver) { return J.getInterceptor$x(receiver).get$Alphabetic(receiver); }, get$BGRA_8888$x(receiver) { return J.getInterceptor$x(receiver).get$BGRA_8888(receiver); }, get$Baseline$x(receiver) { return J.getInterceptor$x(receiver).get$Baseline(receiver); }, get$BelowBaseline$x(receiver) { return J.getInterceptor$x(receiver).get$BelowBaseline(receiver); }, get$Bevel$x(receiver) { return J.getInterceptor$x(receiver).get$Bevel(receiver); }, get$BlendMode$x(receiver) { return J.getInterceptor$x(receiver).get$BlendMode(receiver); }, get$BlurStyle$x(receiver) { return J.getInterceptor$x(receiver).get$BlurStyle(receiver); }, get$Bold$x(receiver) { return J.getInterceptor$x(receiver).get$Bold(receiver); }, get$Bottom$x(receiver) { return J.getInterceptor$x(receiver).get$Bottom(receiver); }, get$Butt$x(receiver) { return J.getInterceptor$x(receiver).get$Butt(receiver); }, get$Center$x(receiver) { return J.getInterceptor$x(receiver).get$Center(receiver); }, get$Clamp$x(receiver) { return J.getInterceptor$x(receiver).get$Clamp(receiver); }, get$Clear$x(receiver) { return J.getInterceptor$x(receiver).get$Clear(receiver); }, get$ClipOp$x(receiver) { return J.getInterceptor$x(receiver).get$ClipOp(receiver); }, get$Color$x(receiver) { return J.getInterceptor$x(receiver).get$Color(receiver); }, get$ColorBurn$x(receiver) { return J.getInterceptor$x(receiver).get$ColorBurn(receiver); }, get$ColorDodge$x(receiver) { return J.getInterceptor$x(receiver).get$ColorDodge(receiver); }, get$ColorFilter$x(receiver) { return J.getInterceptor$x(receiver).get$ColorFilter(receiver); }, get$ColorType$x(receiver) { return J.getInterceptor$x(receiver).get$ColorType(receiver); }, get$Darken$x(receiver) { return J.getInterceptor$x(receiver).get$Darken(receiver); }, get$Dashed$x(receiver) { return J.getInterceptor$x(receiver).get$Dashed(receiver); }, get$Decal$x(receiver) { return J.getInterceptor$x(receiver).get$Decal(receiver); }, get$DecorationStyle$x(receiver) { return J.getInterceptor$x(receiver).get$DecorationStyle(receiver); }, get$Difference$x(receiver) { return J.getInterceptor$x(receiver).get$Difference(receiver); }, get$DisableAll$x(receiver) { return J.getInterceptor$x(receiver).get$DisableAll(receiver); }, get$DisableFirstAscent$x(receiver) { return J.getInterceptor$x(receiver).get$DisableFirstAscent(receiver); }, get$DisableLastDescent$x(receiver) { return J.getInterceptor$x(receiver).get$DisableLastDescent(receiver); }, get$Dotted$x(receiver) { return J.getInterceptor$x(receiver).get$Dotted(receiver); }, get$Double$x(receiver) { return J.getInterceptor$x(receiver).get$Double(receiver); }, get$Dst$x(receiver) { return J.getInterceptor$x(receiver).get$Dst(receiver); }, get$DstATop$x(receiver) { return J.getInterceptor$x(receiver).get$DstATop(receiver); }, get$DstIn$x(receiver) { return J.getInterceptor$x(receiver).get$DstIn(receiver); }, get$DstOut$x(receiver) { return J.getInterceptor$x(receiver).get$DstOut(receiver); }, get$DstOver$x(receiver) { return J.getInterceptor$x(receiver).get$DstOver(receiver); }, get$End$x(receiver) { return J.getInterceptor$x(receiver).get$End(receiver); }, get$EvenOdd$x(receiver) { return J.getInterceptor$x(receiver).get$EvenOdd(receiver); }, get$Exclusion$x(receiver) { return J.getInterceptor$x(receiver).get$Exclusion(receiver); }, get$ExtraBlack$x(receiver) { return J.getInterceptor$x(receiver).get$ExtraBlack(receiver); }, get$ExtraBold$x(receiver) { return J.getInterceptor$x(receiver).get$ExtraBold(receiver); }, get$ExtraLight$x(receiver) { return J.getInterceptor$x(receiver).get$ExtraLight(receiver); }, get$Fill$x(receiver) { return J.getInterceptor$x(receiver).get$Fill(receiver); }, get$FillType$x(receiver) { return J.getInterceptor$x(receiver).get$FillType(receiver); }, get$FilterMode$x(receiver) { return J.getInterceptor$x(receiver).get$FilterMode(receiver); }, get$FontSlant$x(receiver) { return J.getInterceptor$x(receiver).get$FontSlant(receiver); }, get$FontWeight$x(receiver) { return J.getInterceptor$x(receiver).get$FontWeight(receiver); }, get$HardLight$x(receiver) { return J.getInterceptor$x(receiver).get$HardLight(receiver); }, get$Hue$x(receiver) { return J.getInterceptor$x(receiver).get$Hue(receiver); }, get$Ideographic$x(receiver) { return J.getInterceptor$x(receiver).get$Ideographic(receiver); }, get$ImageFilter$x(receiver) { return J.getInterceptor$x(receiver).get$ImageFilter(receiver); }, get$IncludeLineSpacingBottom$x(receiver) { return J.getInterceptor$x(receiver).get$IncludeLineSpacingBottom(receiver); }, get$IncludeLineSpacingMiddle$x(receiver) { return J.getInterceptor$x(receiver).get$IncludeLineSpacingMiddle(receiver); }, get$IncludeLineSpacingTop$x(receiver) { return J.getInterceptor$x(receiver).get$IncludeLineSpacingTop(receiver); }, get$Inner$x(receiver) { return J.getInterceptor$x(receiver).get$Inner(receiver); }, get$Intersect$x(receiver) { return J.getInterceptor$x(receiver).get$Intersect(receiver); }, get$Italic$x(receiver) { return J.getInterceptor$x(receiver).get$Italic(receiver); }, get$Justify$x(receiver) { return J.getInterceptor$x(receiver).get$Justify(receiver); }, get$LTR$x(receiver) { return J.getInterceptor$x(receiver).get$LTR(receiver); }, get$Left$x(receiver) { return J.getInterceptor$x(receiver).get$Left(receiver); }, get$Light$x(receiver) { return J.getInterceptor$x(receiver).get$Light(receiver); }, get$Lighten$x(receiver) { return J.getInterceptor$x(receiver).get$Lighten(receiver); }, get$LineThroughDecoration$x(receiver) { return J.getInterceptor$x(receiver).get$LineThroughDecoration(receiver); }, get$Linear$x(receiver) { return J.getInterceptor$x(receiver).get$Linear(receiver); }, get$Luminosity$x(receiver) { return J.getInterceptor$x(receiver).get$Luminosity(receiver); }, get$MaskFilter$x(receiver) { return J.getInterceptor$x(receiver).get$MaskFilter(receiver); }, get$Max$x(receiver) { return J.getInterceptor$x(receiver).get$Max(receiver); }, get$Medium$x(receiver) { return J.getInterceptor$x(receiver).get$Medium(receiver); }, get$Middle$x(receiver) { return J.getInterceptor$x(receiver).get$Middle(receiver); }, get$MipmapMode$x(receiver) { return J.getInterceptor$x(receiver).get$MipmapMode(receiver); }, get$Mirror$x(receiver) { return J.getInterceptor$x(receiver).get$Mirror(receiver); }, get$Miter$x(receiver) { return J.getInterceptor$x(receiver).get$Miter(receiver); }, get$Modulate$x(receiver) { return J.getInterceptor$x(receiver).get$Modulate(receiver); }, get$Multiply$x(receiver) { return J.getInterceptor$x(receiver).get$Multiply(receiver); }, get$Nearest$x(receiver) { return J.getInterceptor$x(receiver).get$Nearest(receiver); }, get$NoDecoration$x(receiver) { return J.getInterceptor$x(receiver).get$NoDecoration(receiver); }, get$None$x(receiver) { return J.getInterceptor$x(receiver).get$None(receiver); }, get$Normal$x(receiver) { return J.getInterceptor$x(receiver).get$Normal(receiver); }, get$Outer$x(receiver) { return J.getInterceptor$x(receiver).get$Outer(receiver); }, get$Overlay$x(receiver) { return J.getInterceptor$x(receiver).get$Overlay(receiver); }, get$OverlineDecoration$x(receiver) { return J.getInterceptor$x(receiver).get$OverlineDecoration(receiver); }, get$PaintStyle$x(receiver) { return J.getInterceptor$x(receiver).get$PaintStyle(receiver); }, get$ParagraphBuilder$x(receiver) { return J.getInterceptor$x(receiver).get$ParagraphBuilder(receiver); }, get$Path$x(receiver) { return J.getInterceptor$x(receiver).get$Path(receiver); }, get$PlaceholderAlignment$x(receiver) { return J.getInterceptor$x(receiver).get$PlaceholderAlignment(receiver); }, get$Plus$x(receiver) { return J.getInterceptor$x(receiver).get$Plus(receiver); }, get$Premul$x(receiver) { return J.getInterceptor$x(receiver).get$Premul(receiver); }, get$RGBA_8888$x(receiver) { return J.getInterceptor$x(receiver).get$RGBA_8888(receiver); }, get$RTL$x(receiver) { return J.getInterceptor$x(receiver).get$RTL(receiver); }, get$RectHeightStyle$x(receiver) { return J.getInterceptor$x(receiver).get$RectHeightStyle(receiver); }, get$RectWidthStyle$x(receiver) { return J.getInterceptor$x(receiver).get$RectWidthStyle(receiver); }, get$Repeat$x(receiver) { return J.getInterceptor$x(receiver).get$Repeat(receiver); }, get$Right$x(receiver) { return J.getInterceptor$x(receiver).get$Right(receiver); }, get$Round$x(receiver) { return J.getInterceptor$x(receiver).get$Round(receiver); }, get$Saturation$x(receiver) { return J.getInterceptor$x(receiver).get$Saturation(receiver); }, get$Screen$x(receiver) { return J.getInterceptor$x(receiver).get$Screen(receiver); }, get$SemiBold$x(receiver) { return J.getInterceptor$x(receiver).get$SemiBold(receiver); }, get$Shader$x(receiver) { return J.getInterceptor$x(receiver).get$Shader(receiver); }, get$SoftLight$x(receiver) { return J.getInterceptor$x(receiver).get$SoftLight(receiver); }, get$Solid$x(receiver) { return J.getInterceptor$x(receiver).get$Solid(receiver); }, get$Square$x(receiver) { return J.getInterceptor$x(receiver).get$Square(receiver); }, get$Src$x(receiver) { return J.getInterceptor$x(receiver).get$Src(receiver); }, get$SrcATop$x(receiver) { return J.getInterceptor$x(receiver).get$SrcATop(receiver); }, get$SrcIn$x(receiver) { return J.getInterceptor$x(receiver).get$SrcIn(receiver); }, get$SrcOut$x(receiver) { return J.getInterceptor$x(receiver).get$SrcOut(receiver); }, get$SrcOver$x(receiver) { return J.getInterceptor$x(receiver).get$SrcOver(receiver); }, get$Start$x(receiver) { return J.getInterceptor$x(receiver).get$Start(receiver); }, get$Stroke$x(receiver) { return J.getInterceptor$x(receiver).get$Stroke(receiver); }, get$StrokeCap$x(receiver) { return J.getInterceptor$x(receiver).get$StrokeCap(receiver); }, get$StrokeJoin$x(receiver) { return J.getInterceptor$x(receiver).get$StrokeJoin(receiver); }, get$Strut$x(receiver) { return J.getInterceptor$x(receiver).get$Strut(receiver); }, get$TextAlign$x(receiver) { return J.getInterceptor$x(receiver).get$TextAlign(receiver); }, get$TextBaseline$x(receiver) { return J.getInterceptor$x(receiver).get$TextBaseline(receiver); }, get$TextDirection$x(receiver) { return J.getInterceptor$x(receiver).get$TextDirection(receiver); }, get$TextHeightBehavior$x(receiver) { return J.getInterceptor$x(receiver).get$TextHeightBehavior(receiver); }, get$Thin$x(receiver) { return J.getInterceptor$x(receiver).get$Thin(receiver); }, get$Tight$x(receiver) { return J.getInterceptor$x(receiver).get$Tight(receiver); }, get$TileMode$x(receiver) { return J.getInterceptor$x(receiver).get$TileMode(receiver); }, get$Top$x(receiver) { return J.getInterceptor$x(receiver).get$Top(receiver); }, get$Typeface$x(receiver) { return J.getInterceptor$x(receiver).get$Typeface(receiver); }, get$TypefaceFontProvider$x(receiver) { return J.getInterceptor$x(receiver).get$TypefaceFontProvider(receiver); }, get$UnderlineDecoration$x(receiver) { return J.getInterceptor$x(receiver).get$UnderlineDecoration(receiver); }, get$Upright$x(receiver) { return J.getInterceptor$x(receiver).get$Upright(receiver); }, get$Wavy$x(receiver) { return J.getInterceptor$x(receiver).get$Wavy(receiver); }, get$Winding$x(receiver) { return J.getInterceptor$x(receiver).get$Winding(receiver); }, get$Xor$x(receiver) { return J.getInterceptor$x(receiver).get$Xor(receiver); }, get$accessToken$x(receiver) { return J.getInterceptor$x(receiver).get$accessToken(receiver); }, get$access_token$x(receiver) { return J.getInterceptor$x(receiver).get$access_token(receiver); }, get$add$ax(receiver) { return J.getInterceptor$ax(receiver).get$add(receiver); }, get$attributes$x(receiver) { return J.getInterceptor$x(receiver).get$attributes(receiver); }, get$authorization$x(receiver) { return J.getInterceptor$x(receiver).get$authorization(receiver); }, get$baseline$x(receiver) { return J.getInterceptor$x(receiver).get$baseline(receiver); }, get$body$x(receiver) { return J.getInterceptor$x(receiver).get$body(receiver); }, get$buffer$x(receiver) { return J.getInterceptor$x(receiver).get$buffer(receiver); }, get$canvasKit$x(receiver) { return J.getInterceptor$x(receiver).get$canvasKit(receiver); }, get$canvasKitBaseUrl$x(receiver) { return J.getInterceptor$x(receiver).get$canvasKitBaseUrl(receiver); }, get$canvasKitForceCpuOnly$x(receiver) { return J.getInterceptor$x(receiver).get$canvasKitForceCpuOnly(receiver); }, get$canvasKitMaximumSurfaces$x(receiver) { return J.getInterceptor$x(receiver).get$canvasKitMaximumSurfaces(receiver); }, get$children$x(receiver) { return J.getInterceptor$x(receiver).get$children(receiver); }, get$close$x(receiver) { return J.getInterceptor$x(receiver).get$close(receiver); }, get$code$x(receiver) { return J.getInterceptor$x(receiver).get$code(receiver); }, get$credentials$z(receiver) { return J.getInterceptor$z(receiver).get$credentials(receiver); }, get$currentUser$x(receiver) { return J.getInterceptor$x(receiver).get$currentUser(receiver); }, get$debugShowSemanticsNodes$x(receiver) { return J.getInterceptor$x(receiver).get$debugShowSemanticsNodes(receiver); }, get$descent$x(receiver) { return J.getInterceptor$x(receiver).get$descent(receiver); }, get$document$x(receiver) { return J.getInterceptor$x(receiver).get$document(receiver); }, get$email$x(receiver) { return J.getInterceptor$x(receiver).get$email(receiver); }, get$entries$x(receiver) { return J.getInterceptor$x(receiver).get$entries(receiver); }, get$error$x(receiver) { return J.getInterceptor$x(receiver).get$error(receiver); }, get$first$ax(receiver) { return J.getInterceptor$ax(receiver).get$first(receiver); }, get$firstName$x(receiver) { return J.getInterceptor$x(receiver).get$firstName(receiver); }, get$frameCount$x(receiver) { return J.getInterceptor$x(receiver).get$frameCount(receiver); }, get$hashCode$(receiver) { return J.getInterceptor$(receiver).get$hashCode(receiver); }, get$id$x(receiver) { return J.getInterceptor$x(receiver).get$id(receiver); }, get$idToken$x(receiver) { return J.getInterceptor$x(receiver).get$idToken(receiver); }, get$id_token$x(receiver) { return J.getInterceptor$x(receiver).get$id_token(receiver); }, get$image$x(receiver) { return J.getInterceptor$x(receiver).get$image(receiver); }, get$index$z(receiver) { return J.getInterceptor$z(receiver).get$index(receiver); }, get$isDeleted$x(receiver) { return J.getInterceptor$x(receiver).get$isDeleted(receiver); }, get$isEmpty$asx(receiver) { return J.getInterceptor$asx(receiver).get$isEmpty(receiver); }, get$isNegative$n(receiver) { return J.getInterceptor$n(receiver).get$isNegative(receiver); }, get$isNotEmpty$asx(receiver) { return J.getInterceptor$asx(receiver).get$isNotEmpty(receiver); }, get$iterator$ax(receiver) { return J.getInterceptor$ax(receiver).get$iterator(receiver); }, get$key$x(receiver) { return J.getInterceptor$x(receiver).get$key(receiver); }, get$keys$x(receiver) { return J.getInterceptor$x(receiver).get$keys(receiver); }, get$last$ax(receiver) { return J.getInterceptor$ax(receiver).get$last(receiver); }, get$lastName$x(receiver) { return J.getInterceptor$x(receiver).get$lastName(receiver); }, get$length$asx(receiver) { return J.getInterceptor$asx(receiver).get$length(receiver); }, get$lengthInBytes$x(receiver) { return J.getInterceptor$x(receiver).get$lengthInBytes(receiver); }, get$lineNumber$x(receiver) { return J.getInterceptor$x(receiver).get$lineNumber(receiver); }, get$message$x(receiver) { return J.getInterceptor$x(receiver).get$message(receiver); }, get$name$x(receiver) { return J.getInterceptor$x(receiver).get$name(receiver); }, get$nodes$x(receiver) { return J.getInterceptor$x(receiver).get$nodes(receiver); }, get$offset$x(receiver) { return J.getInterceptor$x(receiver).get$offset(receiver); }, get$onError$x(receiver) { return J.getInterceptor$x(receiver).get$onError(receiver); }, get$product$x(receiver) { return J.getInterceptor$x(receiver).get$product(receiver); }, get$promise$x(receiver) { return J.getInterceptor$x(receiver).get$promise(receiver); }, get$ready$x(receiver) { return J.getInterceptor$x(receiver).get$ready(receiver); }, get$repetitionCount$x(receiver) { return J.getInterceptor$x(receiver).get$repetitionCount(receiver); }, get$reversed$ax(receiver) { return J.getInterceptor$ax(receiver).get$reversed(receiver); }, get$runtimeType$(receiver) { return J.getInterceptor$(receiver).get$runtimeType(receiver); }, get$selectedTrack$x(receiver) { return J.getInterceptor$x(receiver).get$selectedTrack(receiver); }, get$setRequestHeader$x(receiver) { return J.getInterceptor$x(receiver).get$setRequestHeader(receiver); }, get$sign$in(receiver) { if (typeof receiver === "number") return receiver > 0 ? 1 : receiver < 0 ? -1 : receiver; return J.getInterceptor$in(receiver).get$sign(receiver); }, get$source$z(receiver) { return J.getInterceptor$z(receiver).get$source(receiver); }, get$state$x(receiver) { return J.getInterceptor$x(receiver).get$state(receiver); }, get$stop$z(receiver) { return J.getInterceptor$z(receiver).get$stop(receiver); }, get$stream$z(receiver) { return J.getInterceptor$z(receiver).get$stream(receiver); }, get$target$x(receiver) { return J.getInterceptor$x(receiver).get$target(receiver); }, get$user$x(receiver) { return J.getInterceptor$x(receiver).get$user(receiver); }, get$value$x(receiver) { return J.getInterceptor$x(receiver).get$value(receiver); }, get$values$x(receiver) { return J.getInterceptor$x(receiver).get$values(receiver); }, get$vendor$x(receiver) { return J.getInterceptor$x(receiver).get$vendor(receiver); }, $add$ansx(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver + a0; return J.getInterceptor$ansx(receiver).$add(receiver, a0); }, $div$n(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver / a0; return J.getInterceptor$n(receiver).$div(receiver, a0); }, $eq$(receiver, a0) { if (receiver == null) return a0 == null; if (typeof receiver != "object") return a0 != null && receiver === a0; return J.getInterceptor$(receiver).$eq(receiver, a0); }, $get$0$x(receiver) { return J.getInterceptor$x(receiver).$get$0(receiver); }, $get$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).$get$2(receiver, a0, a1); }, $get$3$rawResponse$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).$get$3$rawResponse(receiver, a0, a1, a2); }, $gt$n(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver > a0; return J.getInterceptor$n(receiver).$gt(receiver, a0); }, $index$asx(receiver, a0) { if (typeof a0 === "number") if (receiver.constructor == Array || typeof receiver == "string" || A.isJsIndexable(receiver, receiver[init.dispatchPropertyName])) if (a0 >>> 0 === a0 && a0 < receiver.length) return receiver[a0]; return J.getInterceptor$asx(receiver).$index(receiver, a0); }, $indexSet$ax(receiver, a0, a1) { if (typeof a0 === "number") if ((receiver.constructor == Array || A.isJsIndexable(receiver, receiver[init.dispatchPropertyName])) && !receiver.immutable$list && a0 >>> 0 === a0 && a0 < receiver.length) return receiver[a0] = a1; return J.getInterceptor$ax(receiver).$indexSet(receiver, a0, a1); }, $mul$ns(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver * a0; return J.getInterceptor$ns(receiver).$mul(receiver, a0); }, $sub$n(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver - a0; return J.getInterceptor$n(receiver).$sub(receiver, a0); }, GetWebGLContext$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).GetWebGLContext$2(receiver, a0, a1); }, Make$0$x(receiver) { return J.getInterceptor$x(receiver).Make$0(receiver); }, MakeAnimatedImageFromEncoded$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeAnimatedImageFromEncoded$1(receiver, a0); }, MakeBlur$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).MakeBlur$3(receiver, a0, a1, a2); }, MakeCompose$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).MakeCompose$2(receiver, a0, a1); }, MakeFreeTypeFaceFromData$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeFreeTypeFaceFromData$1(receiver, a0); }, MakeFromCmds$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeFromCmds$1(receiver, a0); }, MakeFromFontProvider$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).MakeFromFontProvider$2(receiver, a0, a1); }, MakeGrContext$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeGrContext$1(receiver, a0); }, MakeImage$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).MakeImage$3(receiver, a0, a1, a2); }, MakeLazyImageFromTextureSource$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).MakeLazyImageFromTextureSource$2(receiver, a0, a1); }, MakeLinearGradient$6$x(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).MakeLinearGradient$6(receiver, a0, a1, a2, a3, a4, a5); }, MakeMatrix$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeMatrix$1(receiver, a0); }, MakeMatrixTransform$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).MakeMatrixTransform$3(receiver, a0, a1, a2); }, MakeOnScreenGLSurface$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).MakeOnScreenGLSurface$4(receiver, a0, a1, a2, a3); }, MakeSWCanvasSurface$1$x(receiver, a0) { return J.getInterceptor$x(receiver).MakeSWCanvasSurface$1(receiver, a0); }, ParagraphStyle$1$x(receiver, a0) { return J.getInterceptor$x(receiver).ParagraphStyle$1(receiver, a0); }, TextStyle$1$x(receiver, a0) { return J.getInterceptor$x(receiver).TextStyle$1(receiver, a0); }, _clearChildren$0$x(receiver) { return J.getInterceptor$x(receiver)._clearChildren$0(receiver); }, _codeUnitAt$1$s(receiver, a0) { return J.getInterceptor$s(receiver)._codeUnitAt$1(receiver, a0); }, _replaceChild$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver)._replaceChild$2(receiver, a0, a1); }, accept$1$x(receiver, a0) { return J.getInterceptor$x(receiver).accept$1(receiver, a0); }, add$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).add$1(receiver, a0); }, addAll$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).addAll$1(receiver, a0); }, addArc$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addArc$3(receiver, a0, a1, a2); }, addEventListener$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).addEventListener$2(receiver, a0, a1); }, addEventListener$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addEventListener$3(receiver, a0, a1, a2); }, addListener$1$x(receiver, a0) { return J.getInterceptor$x(receiver).addListener$1(receiver, a0); }, addOval$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addOval$3(receiver, a0, a1, a2); }, addPlaceholder$5$x(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).addPlaceholder$5(receiver, a0, a1, a2, a3, a4); }, addPoly$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).addPoly$2(receiver, a0, a1); }, addPopStateListener$1$x(receiver, a0) { return J.getInterceptor$x(receiver).addPopStateListener$1(receiver, a0); }, addRRect$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).addRRect$2(receiver, a0, a1); }, addRect$1$x(receiver, a0) { return J.getInterceptor$x(receiver).addRect$1(receiver, a0); }, addStream$1$z(receiver, a0) { return J.getInterceptor$z(receiver).addStream$1(receiver, a0); }, addText$1$x(receiver, a0) { return J.getInterceptor$x(receiver).addText$1(receiver, a0); }, allMatches$1$s(receiver, a0) { return J.getInterceptor$s(receiver).allMatches$1(receiver, a0); }, allMatches$2$s(receiver, a0, a1) { return J.getInterceptor$s(receiver).allMatches$2(receiver, a0, a1); }, any$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).any$1(receiver, a0); }, arcToOval$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).arcToOval$4(receiver, a0, a1, a2, a3); }, arcToRotated$7$x(receiver, a0, a1, a2, a3, a4, a5, a6) { return J.getInterceptor$x(receiver).arcToRotated$7(receiver, a0, a1, a2, a3, a4, a5, a6); }, asByteData$0$x(receiver) { return J.getInterceptor$x(receiver).asByteData$0(receiver); }, asByteData$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asByteData$2(receiver, a0, a1); }, asFloat32List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asFloat32List$2(receiver, a0, a1); }, asFloat64List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asFloat64List$2(receiver, a0, a1); }, asInt32List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asInt32List$2(receiver, a0, a1); }, asInt64List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asInt64List$2(receiver, a0, a1); }, asMap$0$ax(receiver) { return J.getInterceptor$ax(receiver).asMap$0(receiver); }, asUint32List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asUint32List$2(receiver, a0, a1); }, asUint8List$0$x(receiver) { return J.getInterceptor$x(receiver).asUint8List$0(receiver); }, asUint8List$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).asUint8List$2(receiver, a0, a1); }, beginRecording$1$x(receiver, a0) { return J.getInterceptor$x(receiver).beginRecording$1(receiver, a0); }, build$0$x(receiver) { return J.getInterceptor$x(receiver).build$0(receiver); }, build$3$dimensions$textScaleFactor$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).build$3$dimensions$textScaleFactor(receiver, a0, a1, a2); }, cancel$0$z(receiver) { return J.getInterceptor$z(receiver).cancel$0(receiver); }, cast$1$0$ax(receiver, $T1) { return J.getInterceptor$ax(receiver).cast$1$0(receiver, $T1); }, cast$2$0$ax(receiver, $T1, $T2) { return J.getInterceptor$ax(receiver).cast$2$0(receiver, $T1, $T2); }, ceil$0$n(receiver) { return J.getInterceptor$n(receiver).ceil$0(receiver); }, clamp$2$n(receiver, a0, a1) { return J.getInterceptor$n(receiver).clamp$2(receiver, a0, a1); }, clear$0$ax(receiver) { return J.getInterceptor$ax(receiver).clear$0(receiver); }, clear$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).clear$1(receiver, a0); }, clipPath$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipPath$3(receiver, a0, a1, a2); }, clipRRect$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipRRect$3(receiver, a0, a1, a2); }, clipRect$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipRect$3(receiver, a0, a1, a2); }, close$0$x(receiver) { return J.getInterceptor$x(receiver).close$0(receiver); }, codeUnitAt$1$s(receiver, a0) { return J.getInterceptor$s(receiver).codeUnitAt$1(receiver, a0); }, compareTo$1$ns(receiver, a0) { return J.getInterceptor$ns(receiver).compareTo$1(receiver, a0); }, compareTo$3$expenseCategory$sortAscending$sortField$ns(receiver, a0, a1, a2) { return J.getInterceptor$ns(receiver).compareTo$3$expenseCategory$sortAscending$sortField(receiver, a0, a1, a2); }, compareTo$3$sortAscending$sortField$taskStatus$ns(receiver, a0, a1, a2) { return J.getInterceptor$ns(receiver).compareTo$3$sortAscending$sortField$taskStatus(receiver, a0, a1, a2); }, compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$ns(receiver).compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(receiver, a0, a1, a2, a3, a4, a5); }, compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap$ns(receiver, a0, a1, a2, a3, a4, a5, a6) { return J.getInterceptor$ns(receiver).compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap(receiver, a0, a1, a2, a3, a4, a5, a6); }, complete$0$z(receiver) { return J.getInterceptor$z(receiver).complete$0(receiver); }, complete$1$z(receiver, a0) { return J.getInterceptor$z(receiver).complete$1(receiver, a0); }, complete$2$isReplaced$z(receiver, a0, a1) { return J.getInterceptor$z(receiver).complete$2$isReplaced(receiver, a0, a1); }, computeTonalColors$1$x(receiver, a0) { return J.getInterceptor$x(receiver).computeTonalColors$1(receiver, a0); }, concat$1$x(receiver, a0) { return J.getInterceptor$x(receiver).concat$1(receiver, a0); }, contains$1$asx(receiver, a0) { return J.getInterceptor$asx(receiver).contains$1(receiver, a0); }, contains$2$asx(receiver, a0, a1) { return J.getInterceptor$asx(receiver).contains$2(receiver, a0, a1); }, containsKey$1$x(receiver, a0) { return J.getInterceptor$x(receiver).containsKey$1(receiver, a0); }, copy$0$x(receiver) { return J.getInterceptor$x(receiver).copy$0(receiver); }, copy$1$range$x(receiver, a0) { return J.getInterceptor$x(receiver).copy$1$range(receiver, a0); }, createElement$1$x(receiver, a0) { return J.getInterceptor$x(receiver).createElement$1(receiver, a0); }, cubicTo$6$x(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).cubicTo$6(receiver, a0, a1, a2, a3, a4, a5); }, decode$1$x(receiver, a0) { return J.getInterceptor$x(receiver).decode$1(receiver, a0); }, delete$0$x(receiver) { return J.getInterceptor$x(receiver).delete$0(receiver); }, detach$0$z(receiver) { return J.getInterceptor$z(receiver).detach$0(receiver); }, didExceedMaxLines$0$x(receiver) { return J.getInterceptor$x(receiver).didExceedMaxLines$0(receiver); }, disconnect$0$x(receiver) { return J.getInterceptor$x(receiver).disconnect$0(receiver); }, dispose$0$x(receiver) { return J.getInterceptor$x(receiver).dispose$0(receiver); }, drawArc$5$x(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).drawArc$5(receiver, a0, a1, a2, a3, a4); }, drawCircle$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).drawCircle$4(receiver, a0, a1, a2, a3); }, drawDRRect$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).drawDRRect$3(receiver, a0, a1, a2); }, drawImageRectCubic$6$x(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).drawImageRectCubic$6(receiver, a0, a1, a2, a3, a4, a5); }, drawImageRectOptions$6$x(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).drawImageRectOptions$6(receiver, a0, a1, a2, a3, a4, a5); }, drawLine$5$x(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).drawLine$5(receiver, a0, a1, a2, a3, a4); }, drawPaint$1$x(receiver, a0) { return J.getInterceptor$x(receiver).drawPaint$1(receiver, a0); }, drawParagraph$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).drawParagraph$3(receiver, a0, a1, a2); }, drawPath$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawPath$2(receiver, a0, a1); }, drawPicture$1$x(receiver, a0) { return J.getInterceptor$x(receiver).drawPicture$1(receiver, a0); }, drawRRect$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawRRect$2(receiver, a0, a1); }, drawRect$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawRect$2(receiver, a0, a1); }, drawShadow$7$x(receiver, a0, a1, a2, a3, a4, a5, a6) { return J.getInterceptor$x(receiver).drawShadow$7(receiver, a0, a1, a2, a3, a4, a5, a6); }, elementAt$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).elementAt$1(receiver, a0); }, endsWith$1$s(receiver, a0) { return J.getInterceptor$s(receiver).endsWith$1(receiver, a0); }, floor$0$n(receiver) { return J.getInterceptor$n(receiver).floor$0(receiver); }, flush$0$x(receiver) { return J.getInterceptor$x(receiver).flush$0(receiver); }, focus$0$x(receiver) { return J.getInterceptor$x(receiver).focus$0(receiver); }, fold$1$2$ax(receiver, a0, a1, $T1) { return J.getInterceptor$ax(receiver).fold$1$2(receiver, a0, a1, $T1); }, forEach$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).forEach$1(receiver, a0); }, format$1$x(receiver, a0) { return J.getInterceptor$x(receiver).format$1(receiver, a0); }, getAlphabeticBaseline$0$x(receiver) { return J.getInterceptor$x(receiver).getAlphabeticBaseline$0(receiver); }, getAuthResponse$0$x(receiver) { return J.getInterceptor$x(receiver).getAuthResponse$0(receiver); }, getBasicProfile$0$x(receiver) { return J.getInterceptor$x(receiver).getBasicProfile$0(receiver); }, getBounds$0$x(receiver) { return J.getInterceptor$x(receiver).getBounds$0(receiver); }, getCanvas$0$x(receiver) { return J.getInterceptor$x(receiver).getCanvas$0(receiver); }, getComputedStyle$0$x(receiver) { return J.getInterceptor$x(receiver).getComputedStyle$0(receiver); }, getEmail$0$x(receiver) { return J.getInterceptor$x(receiver).getEmail$0(receiver); }, getFloat64$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getFloat64$2(receiver, a0, a1); }, getGlyphBounds$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).getGlyphBounds$3(receiver, a0, a1, a2); }, getGlyphIDs$1$x(receiver, a0) { return J.getInterceptor$x(receiver).getGlyphIDs$1(receiver, a0); }, getGlyphPositionAtCoordinate$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getGlyphPositionAtCoordinate$2(receiver, a0, a1); }, getH5vccSkSurface$0$x(receiver) { return J.getInterceptor$x(receiver).getH5vccSkSurface$0(receiver); }, getHeight$0$x(receiver) { return J.getInterceptor$x(receiver).getHeight$0(receiver); }, getId$0$x(receiver) { return J.getInterceptor$x(receiver).getId$0(receiver); }, getIdeographicBaseline$0$x(receiver) { return J.getInterceptor$x(receiver).getIdeographicBaseline$0(receiver); }, getImageUrl$0$x(receiver) { return J.getInterceptor$x(receiver).getImageUrl$0(receiver); }, getInt32$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getInt32$2(receiver, a0, a1); }, getInt64$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getInt64$2(receiver, a0, a1); }, getLineMetrics$0$x(receiver) { return J.getInterceptor$x(receiver).getLineMetrics$0(receiver); }, getLongestLine$0$x(receiver) { return J.getInterceptor$x(receiver).getLongestLine$0(receiver); }, getMaxIntrinsicWidth$0$x(receiver) { return J.getInterceptor$x(receiver).getMaxIntrinsicWidth$0(receiver); }, getMaxWidth$0$x(receiver) { return J.getInterceptor$x(receiver).getMaxWidth$0(receiver); }, getMinIntrinsicWidth$0$x(receiver) { return J.getInterceptor$x(receiver).getMinIntrinsicWidth$0(receiver); }, getName$0$x(receiver) { return J.getInterceptor$x(receiver).getName$0(receiver); }, getPath$0$x(receiver) { return J.getInterceptor$x(receiver).getPath$0(receiver); }, getRange$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).getRange$2(receiver, a0, a1); }, getRectsForPlaceholders$0$x(receiver) { return J.getInterceptor$x(receiver).getRectsForPlaceholders$0(receiver); }, getRectsForRange$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).getRectsForRange$4(receiver, a0, a1, a2, a3); }, getState$0$x(receiver) { return J.getInterceptor$x(receiver).getState$0(receiver); }, getUint16$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getUint16$2(receiver, a0, a1); }, getUint32$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).getUint32$2(receiver, a0, a1); }, getUint8$1$x(receiver, a0) { return J.getInterceptor$x(receiver).getUint8$1(receiver, a0); }, getWordBoundary$1$x(receiver, a0) { return J.getInterceptor$x(receiver).getWordBoundary$1(receiver, a0); }, go$1$x(receiver, a0) { return J.getInterceptor$x(receiver).go$1(receiver, a0); }, height$0$x(receiver) { return J.getInterceptor$x(receiver).height$0(receiver); }, indexOf$1$asx(receiver, a0) { return J.getInterceptor$asx(receiver).indexOf$1(receiver, a0); }, indexOf$2$asx(receiver, a0, a1) { return J.getInterceptor$asx(receiver).indexOf$2(receiver, a0, a1); }, insert$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).insert$2(receiver, a0, a1); }, insertAll$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).insertAll$2(receiver, a0, a1); }, insertAllBefore$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).insertAllBefore$2(receiver, a0, a1); }, isAliasOf$1$x(receiver, a0) { return J.getInterceptor$x(receiver).isAliasOf$1(receiver, a0); }, isDeleted$0$x(receiver) { return J.getInterceptor$x(receiver).isDeleted$0(receiver); }, isEmpty$0$asx(receiver) { return J.getInterceptor$asx(receiver).isEmpty$0(receiver); }, isIdentity$0$z(receiver) { return J.getInterceptor$z(receiver).isIdentity$0(receiver); }, isSignedIn$0$x(receiver) { return J.getInterceptor$x(receiver).isSignedIn$0(receiver); }, join$0$ax(receiver) { return J.getInterceptor$ax(receiver).join$0(receiver); }, join$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).join$1(receiver, a0); }, layout$1$x(receiver, a0) { return J.getInterceptor$x(receiver).layout$1(receiver, a0); }, lineTo$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).lineTo$2(receiver, a0, a1); }, listen$4$cancelOnError$onDone$onError$z(receiver, a0, a1, a2, a3) { return J.getInterceptor$z(receiver).listen$4$cancelOnError$onDone$onError(receiver, a0, a1, a2, a3); }, listener$1$z(receiver, a0) { return J.getInterceptor$z(receiver).listener$1(receiver, a0); }, loginPopup$1$x(receiver, a0) { return J.getInterceptor$x(receiver).loginPopup$1(receiver, a0); }, logoutPopup$1$x(receiver, a0) { return J.getInterceptor$x(receiver).logoutPopup$1(receiver, a0); }, map$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).map$1(receiver, a0); }, map$1$1$ax(receiver, a0, $T1) { return J.getInterceptor$ax(receiver).map$1$1(receiver, a0, $T1); }, map$2$1$ax(receiver, a0, $T1, $T2) { return J.getInterceptor$ax(receiver).map$2$1(receiver, a0, $T1, $T2); }, matchAsPrefix$2$s(receiver, a0, a1) { return J.getInterceptor$s(receiver).matchAsPrefix$2(receiver, a0, a1); }, moveTo$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).moveTo$2(receiver, a0, a1); }, noSuchMethod$1$(receiver, a0) { return J.getInterceptor$(receiver).noSuchMethod$1(receiver, a0); }, onCancel$0$z(receiver) { return J.getInterceptor$z(receiver).onCancel$0(receiver); }, onPause$0$z(receiver) { return J.getInterceptor$z(receiver).onPause$0(receiver); }, onResume$0$z(receiver) { return J.getInterceptor$z(receiver).onResume$0(receiver); }, open$3$async$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).open$3$async(receiver, a0, a1, a2); }, parse$1$z(receiver, a0) { return J.getInterceptor$z(receiver).parse$1(receiver, a0); }, parse$2$z(receiver, a0, a1) { return J.getInterceptor$z(receiver).parse$2(receiver, a0, a1); }, pop$0$x(receiver) { return J.getInterceptor$x(receiver).pop$0(receiver); }, pushPaintStyle$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).pushPaintStyle$3(receiver, a0, a1, a2); }, pushState$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).pushState$3(receiver, a0, a1, a2); }, pushStyle$1$x(receiver, a0) { return J.getInterceptor$x(receiver).pushStyle$1(receiver, a0); }, putIfAbsent$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).putIfAbsent$2(receiver, a0, a1); }, quadTo$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).quadTo$4(receiver, a0, a1, a2, a3); }, register$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).register$2(receiver, a0, a1); }, registerFont$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).registerFont$2(receiver, a0, a1); }, releaseResourcesAndAbandonContext$0$x(receiver) { return J.getInterceptor$x(receiver).releaseResourcesAndAbandonContext$0(receiver); }, remove$0$ax(receiver) { return J.getInterceptor$ax(receiver).remove$0(receiver); }, remove$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).remove$1(receiver, a0); }, removeAt$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).removeAt$1(receiver, a0); }, removeEventListener$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).removeEventListener$2(receiver, a0, a1); }, removeEventListener$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).removeEventListener$3(receiver, a0, a1, a2); }, removeLast$0$ax(receiver) { return J.getInterceptor$ax(receiver).removeLast$0(receiver); }, removeListener$1$x(receiver, a0) { return J.getInterceptor$x(receiver).removeListener$1(receiver, a0); }, removeRange$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).removeRange$2(receiver, a0, a1); }, removeWhere$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).removeWhere$1(receiver, a0); }, replaceFirst$2$s(receiver, a0, a1) { return J.getInterceptor$s(receiver).replaceFirst$2(receiver, a0, a1); }, replaceRange$3$asx(receiver, a0, a1, a2) { return J.getInterceptor$asx(receiver).replaceRange$3(receiver, a0, a1, a2); }, replaceState$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).replaceState$3(receiver, a0, a1, a2); }, replaceWith$1$x(receiver, a0) { return J.getInterceptor$x(receiver).replaceWith$1(receiver, a0); }, reset$0$x(receiver) { return J.getInterceptor$x(receiver).reset$0(receiver); }, resolve$1$z(receiver, a0) { return J.getInterceptor$z(receiver).resolve$1(receiver, a0); }, restore$0$x(receiver) { return J.getInterceptor$x(receiver).restore$0(receiver); }, restoreToCount$1$x(receiver, a0) { return J.getInterceptor$x(receiver).restoreToCount$1(receiver, a0); }, retainWhere$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).retainWhere$1(receiver, a0); }, rotate$3$x(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).rotate$3(receiver, a0, a1, a2); }, round$0$n(receiver) { return J.getInterceptor$n(receiver).round$0(receiver); }, roundToDouble$0$n(receiver) { return J.getInterceptor$n(receiver).roundToDouble$0(receiver); }, save$0$x(receiver) { return J.getInterceptor$x(receiver).save$0(receiver); }, saveLayer$4$x(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).saveLayer$4(receiver, a0, a1, a2, a3); }, scale$1$x(receiver, a0) { return J.getInterceptor$x(receiver).scale$1(receiver, a0); }, scale$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).scale$2(receiver, a0, a1); }, select$0$x(receiver) { return J.getInterceptor$x(receiver).select$0(receiver); }, send$1$x(receiver, a0) { return J.getInterceptor$x(receiver).send$1(receiver, a0); }, setAll$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).setAll$2(receiver, a0, a1); }, setAntiAlias$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setAntiAlias$1(receiver, a0); }, setBlendMode$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setBlendMode$1(receiver, a0); }, setColorFilter$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setColorFilter$1(receiver, a0); }, setColorInt$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setColorInt$1(receiver, a0); }, setFillType$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setFillType$1(receiver, a0); }, setMaskFilter$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setMaskFilter$1(receiver, a0); }, setRange$4$ax(receiver, a0, a1, a2, a3) { return J.getInterceptor$ax(receiver).setRange$4(receiver, a0, a1, a2, a3); }, setResourceCacheLimitBytes$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setResourceCacheLimitBytes$1(receiver, a0); }, setShader$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setShader$1(receiver, a0); }, setStrokeCap$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeCap$1(receiver, a0); }, setStrokeJoin$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeJoin$1(receiver, a0); }, setStrokeWidth$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeWidth$1(receiver, a0); }, setStyle$1$x(receiver, a0) { return J.getInterceptor$x(receiver).setStyle$1(receiver, a0); }, signIn$1$x(receiver, a0) { return J.getInterceptor$x(receiver).signIn$1(receiver, a0); }, signOut$0$x(receiver) { return J.getInterceptor$x(receiver).signOut$0(receiver); }, skip$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).skip$1(receiver, a0); }, sort$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).sort$1(receiver, a0); }, split$1$s(receiver, a0) { return J.getInterceptor$s(receiver).split$1(receiver, a0); }, startsWith$1$s(receiver, a0) { return J.getInterceptor$s(receiver).startsWith$1(receiver, a0); }, style$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).style$2(receiver, a0, a1); }, sublist$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).sublist$1(receiver, a0); }, sublist$2$ax(receiver, a0, a1) { return J.getInterceptor$ax(receiver).sublist$2(receiver, a0, a1); }, submit$0$z(receiver) { return J.getInterceptor$z(receiver).submit$0(receiver); }, substring$1$s(receiver, a0) { return J.getInterceptor$s(receiver).substring$1(receiver, a0); }, substring$2$s(receiver, a0, a1) { return J.getInterceptor$s(receiver).substring$2(receiver, a0, a1); }, take$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).take$1(receiver, a0); }, then$1$x(receiver, a0) { return J.getInterceptor$x(receiver).then$1(receiver, a0); }, then$1$1$x(receiver, a0, $T1) { return J.getInterceptor$x(receiver).then$1$1(receiver, a0, $T1); }, then$1$2$onError$x(receiver, a0, a1, $T1) { return J.getInterceptor$x(receiver).then$1$2$onError(receiver, a0, a1, $T1); }, then$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).then$2(receiver, a0, a1); }, toCmds$0$x(receiver) { return J.getInterceptor$x(receiver).toCmds$0(receiver); }, toDouble$0$n(receiver) { return J.getInterceptor$n(receiver).toDouble$0(receiver); }, toInt$0$n(receiver) { return J.getInterceptor$n(receiver).toInt$0(receiver); }, toList$0$ax(receiver) { return J.getInterceptor$ax(receiver).toList$0(receiver); }, toList$1$growable$ax(receiver, a0) { return J.getInterceptor$ax(receiver).toList$1$growable(receiver, a0); }, toLowerCase$0$s(receiver) { return J.getInterceptor$s(receiver).toLowerCase$0(receiver); }, toRadixString$1$n(receiver, a0) { return J.getInterceptor$n(receiver).toRadixString$1(receiver, a0); }, toSVGString$0$x(receiver) { return J.getInterceptor$x(receiver).toSVGString$0(receiver); }, toSet$0$ax(receiver) { return J.getInterceptor$ax(receiver).toSet$0(receiver); }, toString$0$(receiver) { return J.getInterceptor$(receiver).toString$0(receiver); }, toStringAsFixed$1$n(receiver, a0) { return J.getInterceptor$n(receiver).toStringAsFixed$1(receiver, a0); }, toTypedArray$0$x(receiver) { return J.getInterceptor$x(receiver).toTypedArray$0(receiver); }, total$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).total$2(receiver, a0, a1); }, transform$9$x(receiver, a0, a1, a2, a3, a4, a5, a6, a7, a8) { return J.getInterceptor$x(receiver).transform$9(receiver, a0, a1, a2, a3, a4, a5, a6, a7, a8); }, translate$2$x(receiver, a0, a1) { return J.getInterceptor$x(receiver).translate$2(receiver, a0, a1); }, trim$0$s(receiver) { return J.getInterceptor$s(receiver).trim$0(receiver); }, trimLeft$0$s(receiver) { return J.getInterceptor$s(receiver).trimLeft$0(receiver); }, trimRight$0$s(receiver) { return J.getInterceptor$s(receiver).trimRight$0(receiver); }, unlock$0$x(receiver) { return J.getInterceptor$x(receiver).unlock$0(receiver); }, updateWith$1$config$z(receiver, a0) { return J.getInterceptor$z(receiver).updateWith$1$config(receiver, a0); }, where$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).where$1(receiver, a0); }, width$0$x(receiver) { return J.getInterceptor$x(receiver).width$0(receiver); }, Interceptor: function Interceptor() { }, JSBool: function JSBool() { }, JSNull: function JSNull() { }, JavaScriptObject: function JavaScriptObject() { }, LegacyJavaScriptObject: function LegacyJavaScriptObject() { }, PlainJavaScriptObject: function PlainJavaScriptObject() { }, UnknownJavaScriptObject: function UnknownJavaScriptObject() { }, JavaScriptFunction: function JavaScriptFunction() { }, JSArray: function JSArray(t0) { this.$ti = t0; }, JSUnmodifiableArray: function JSUnmodifiableArray(t0) { this.$ti = t0; }, ArrayIterator: function ArrayIterator(t0, t1, t2) { var _ = this; _._iterable = t0; _.__interceptors$_length = t1; _._index = 0; _.__interceptors$_current = null; _.$ti = t2; }, JSNumber: function JSNumber() { }, JSInt: function JSInt() { }, JSNumNotInt: function JSNumNotInt() { }, JSString: function JSString() { } }, B = {}; var holders = [A, J, B]; var $ = {}; A.AlarmClock.prototype = { set$datetime(value) { var now, t1, t2, _this = this; if (J.$eq$(value, _this._datetime)) return; if (value == null) { _this._cancelTimer$0(); _this._datetime = null; return; } now = _this._timestampFunction.call$0(); t1 = value._value; t2 = now._value; if (t1 < t2) { _this._cancelTimer$0(); _this._datetime = value; return; } if (_this._timer == null) _this._timer = A.Timer_Timer(A.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); else if (_this._datetime._value > t1) { _this._cancelTimer$0(); _this._timer = A.Timer_Timer(A.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); } _this._datetime = value; }, _cancelTimer$0() { var t1 = this._timer; if (t1 != null) t1.cancel$0(0); this._timer = null; }, _timerDidFire$0() { var t2, _this = this, now = _this._timestampFunction.call$0(), t1 = _this._datetime; t1.toString; t2 = now._value; t1 = t1._value; if (t2 >= t1) { _this._timer = null; t1 = _this.callback; if (t1 != null) t1.call$0(); } else _this._timer = A.Timer_Timer(A.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); } }; A.AppBootstrap.prototype = { autoStart$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$autoStart$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self._initEngine.call$0(), $async$autoStart$0); case 2: // returning from await. $async$goto = 3; return A._asyncAwait($async$self._runApp.call$0(), $async$autoStart$0); case 3: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$autoStart$0, $async$completer); }, prepareEngineInitializer$0() { var t1 = A.allowInterop(new A.AppBootstrap_prepareEngineInitializer_closure(this)); return {initializeEngine: A.allowInterop(new A.AppBootstrap_prepareEngineInitializer_closure0(this)), autoStart: t1}; }, _prepareAppRunner$0() { return {runApp: A.allowInterop(new A.AppBootstrap__prepareAppRunner_closure(this))}; } }; A.AppBootstrap_prepareEngineInitializer_closure.prototype = { call$0() { return new self.Promise(A.allowInterop(new A.AppBootstrap_prepareEngineInitializer__closure0(this.$this)), type$.FlutterApp); }, $signature: 1146 }; A.AppBootstrap_prepareEngineInitializer__closure0.prototype = { call$2(resolve, _) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self.$this.autoStart$0(), $async$call$2); case 2: // returning from await. resolve.call$1({}); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 790 }; A.AppBootstrap_prepareEngineInitializer_closure0.prototype = { call$1(params) { return new self.Promise(A.allowInterop(new A.AppBootstrap_prepareEngineInitializer__closure(this.$this)), type$.FlutterAppRunner); }, call$0() { return this.call$1(null); }, "call*": "call$1", $requiredArgCount: 0, $defaultValues() { return [null]; }, $signature: 978 }; A.AppBootstrap_prepareEngineInitializer__closure.prototype = { call$2(resolve, _) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; $async$goto = 2; return A._asyncAwait(t1._initEngine.call$0(), $async$call$2); case 2: // returning from await. resolve.call$1(t1._prepareAppRunner$0()); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 1001 }; A.AppBootstrap__prepareAppRunner_closure.prototype = { call$1(params) { return new self.Promise(A.allowInterop(new A.AppBootstrap__prepareAppRunner__closure(this.$this)), type$.FlutterApp); }, call$0() { return this.call$1(null); }, "call*": "call$1", $requiredArgCount: 0, $defaultValues() { return [null]; }, $signature: 2699 }; A.AppBootstrap__prepareAppRunner__closure.prototype = { call$2(resolve, _) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self.$this._runApp.call$0(), $async$call$2); case 2: // returning from await. resolve.call$1({}); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 790 }; A.AssetManager.prototype = { get$_baseUrl() { var t1 = new A.WhereTypeIterable(new A._FrozenElementList(window.document.querySelectorAll("meta"), type$._FrozenElementList_Element), type$.WhereTypeIterable_nullable_MetaElement).firstWhere$2$orElse(0, new A.AssetManager__baseUrl_closure(), new A.AssetManager__baseUrl_closure0()); return t1 == null ? null : t1.content; }, getAssetUrl$1(asset) { var t1; if (A.Uri_parse(asset, 0, null).get$hasScheme()) return A._Uri__uriEncode(B.List_gnE, asset, B.C_Utf8Codec, false); t1 = this.get$_baseUrl(); if (t1 == null) t1 = ""; return A._Uri__uriEncode(B.List_gnE, t1 + ("assets/" + A.S(asset)), B.C_Utf8Codec, false); }, load$1(_, asset) { return this.load$body$AssetManager(0, asset); }, load$body$AssetManager(_, asset) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.ByteData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, request, response, e, target, t1, exception, url, $async$exception; var $async$load$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start url = $async$self.getAssetUrl$1(asset); $async$handler = 4; $async$goto = 7; return A._asyncAwait(A.HttpRequest_request(url, "arraybuffer"), $async$load$1); case 7: // returning from await. request = $async$result; response = type$.ByteBuffer._as(A._convertNativeToDart_XHR_Response(request.response)); t1 = J.asByteData$0$x(response); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (type$.ProgressEvent._is(t1)) { e = t1; target = A._convertNativeToDart_EventTarget(e.target); if (type$.HttpRequest._is(target)) { if (target.status === 404 && asset === "AssetManifest.json") { $.$get$printWarning().call$1("Asset manifest does not exist at `" + A.S(url) + "` \u2013 ignoring."); $async$returnValue = A.NativeByteData_NativeByteData$view(new Uint8Array(A._ensureNativeList(B.C_Utf8Codec.get$encoder().convert$1("{}"))).buffer, 0, null); // goto return $async$goto = 1; break; } t1 = target.status; t1.toString; throw A.wrapException(new A.AssetManagerException(url, t1)); } $.$get$printWarning().call$1("Caught ProgressEvent with target: " + A.S(target)); throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$load$1, $async$completer); } }; A.AssetManager__baseUrl_closure.prototype = { call$1(e) { return J.$eq$(J.get$name$x(e), "assetBase"); }, $signature: 125 }; A.AssetManager__baseUrl_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.AssetManagerException.prototype = { toString$0(_) { return 'Failed to load asset at "' + A.S(this.url) + '" (' + A.S(this.httpStatus) + ")"; }, $isException: 1 }; A.BrowserEngine.prototype = { toString$0(_) { return "BrowserEngine." + this._core$_name; } }; A.OperatingSystem.prototype = { toString$0(_) { return "OperatingSystem." + this._core$_name; } }; A.CanvasPool.prototype = { get$isEmpty(_) { return this.__engine$_canvas == null; }, get$context(_) { var t1, ctx = this.__engine$_context; if (ctx == null) { this._createCanvas$0(); t1 = this.__engine$_context; t1.toString; ctx = t1; } return ctx; }, get$contextHandle() { if (this.__engine$_canvas == null) this._createCanvas$0(); var t1 = this._contextHandle; t1.toString; return t1; }, _createCanvas$0() { var canvas0, requiresClearRect, t2, t3, t4, t5, exception, ctx, _this = this, reused = false, canvas = null, t1 = _this.__engine$_canvas; if (t1 != null) { t1.width = 0; _this.__engine$_canvas.height = 0; _this.__engine$_canvas = null; } t1 = _this._reusablePool; if (t1 != null && t1.length !== 0) { t1.toString; canvas0 = B.JSArray_methods.removeAt$1(t1, 0); _this.__engine$_canvas = canvas0; canvas = canvas0; reused = true; requiresClearRect = true; } else { t1 = _this._widthInBitmapPixels; t2 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t3 = _this._heightInBitmapPixels; t4 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); canvas = _this._allocCanvas$2(t1, t3); t5 = canvas; _this.__engine$_canvas = t5; if (t5 == null) { A.reduceCanvasMemoryUsage(); canvas = _this._allocCanvas$2(t1, t3); } t5 = canvas.style; t5.position = "absolute"; t5.width = A.S(t1 / t2) + "px"; t5.height = A.S(t3 / t4) + "px"; requiresClearRect = false; } t1 = _this._rootElement; t2 = t1.lastChild; t3 = canvas; if (t2 == null ? t3 != null : t2 !== t3) t1.appendChild(canvas); try { if (reused) canvas.style.removeProperty("z-index"); _this.__engine$_context = canvas.getContext("2d"); } catch (exception) { } t1 = _this.__engine$_context; if (t1 == null) { A.reduceCanvasMemoryUsage(); t1 = _this.__engine$_context = canvas.getContext("2d"); } if (t1 == null) { t1 = _this.__engine$_canvas; if (t1 != null) t1.width = 0; t1 = _this.__engine$_canvas; if (t1 != null) t1.height = 0; _this.__engine$_canvas = null; return; } t2 = _this._density; _this._contextHandle = new A.ContextStateHandle(t1, _this, t2, B.BlendMode_3, B.StrokeCap_0, B.StrokeJoin_0); ctx = _this.get$context(_this); ctx.save(); ++_this._saveContextCount; ctx.setTransform(1, 0, 0, 1, 0, 0); if (requiresClearRect) ctx.clearRect(0, 0, _this._widthInBitmapPixels * t2, _this._heightInBitmapPixels * t2); ctx.scale(A.EnginePlatformDispatcher_browserDevicePixelRatio() * t2, A.EnginePlatformDispatcher_browserDevicePixelRatio() * t2); _this._replayClipStack$0(); }, _allocCanvas$2(width, height) { var t1 = this._density; return A.tryCreateCanvasElement(B.JSNumber_methods.ceil$0(width * t1), B.JSNumber_methods.ceil$0(height * t1)); }, clear$0(_) { var ctx, e, exception, t1, t2, _this = this; _this.super$_SaveStackTracking$clear(0); if (_this.__engine$_canvas != null) { ctx = _this.__engine$_context; if (ctx != null) try { ctx.font = ""; } catch (exception) { e = A.unwrapException(exception); if (!J.$eq$(e.name, "NS_ERROR_FAILURE")) throw exception; } } if (_this.__engine$_canvas != null) { _this._restoreContextSave$0(); _this._contextHandle.reset$0(0); t1 = _this._activeCanvasList; if (t1 == null) t1 = _this._activeCanvasList = A._setArrayType([], type$.JSArray_CanvasElement); t2 = _this.__engine$_canvas; t2.toString; t1.push(t2); _this._contextHandle = _this.__engine$_context = null; } _this._reusablePool = _this._activeCanvasList; _this._contextHandle = _this.__engine$_context = _this.__engine$_canvas = _this._activeCanvasList = null; }, _replaySingleSaveEntry$4(clipDepth, prevTransform, transform, clipStack) { var clipCount, t1, t2, clipEntry, clipTimeTransform, t3, t4, ratio, t5, path, _this = this, ctx = _this.get$context(_this); if (clipStack != null) for (clipCount = clipStack.length, t1 = _this._density, t2 = type$.SurfacePath; clipDepth < clipCount; ++clipDepth) { clipEntry = clipStack[clipDepth]; clipTimeTransform = clipEntry.currentTransform; t3 = clipTimeTransform.__engine$_m4storage; t4 = prevTransform.__engine$_m4storage; if (t3[0] !== t4[0] || t3[1] !== t4[1] || t3[4] !== t4[4] || t3[5] !== t4[5] || t3[12] !== t4[12] || t3[13] !== t4[13]) { ratio = window.devicePixelRatio; ratio = (ratio == null || ratio === 0 ? 1 : ratio) * t1; ctx.setTransform(ratio, 0, 0, ratio, 0, 0); ctx.transform(t3[0], t3[1], t3[4], t3[5], t3[12], t3[13]); prevTransform = clipTimeTransform; } t3 = clipEntry.rect; if (t3 != null) { ctx.beginPath(); t4 = t3.left; t5 = t3.top; ctx.rect(t4, t5, t3.right - t4, t3.bottom - t5); ctx.clip(); } else { t3 = clipEntry.rrect; if (t3 != null) { path = A.Path_Path(); path.addRRect$1(0, t3); _this._runPath$2(ctx, t2._as(path)); ctx.clip(); } else { t3 = clipEntry.path; if (t3 != null) { _this._runPath$2(ctx, t3); if (t3._fillType === B.PathFillType_0) ctx.clip(); else ctx.clip("evenodd"); } } } } t1 = transform.__engine$_m4storage; t2 = prevTransform.__engine$_m4storage; if (t1[0] !== t2[0] || t1[1] !== t2[1] || t1[4] !== t2[4] || t1[5] !== t2[5] || t1[12] !== t2[12] || t1[13] !== t2[13]) { ratio = A.EnginePlatformDispatcher_browserDevicePixelRatio() * _this._density; ctx.setTransform(ratio, 0, 0, ratio, 0, 0); ctx.transform(t1[0], t1[1], t1[4], t1[5], t1[12], t1[13]); } return clipDepth; }, _replayClipStack$0() { var clipDepth, saveStackIndex, saveEntry, prevTransform0, _this = this, ctx = _this.get$context(_this), prevTransform = A.Matrix4$identity(), t1 = _this._saveStack, len = t1.length; for (clipDepth = 0, saveStackIndex = 0; saveStackIndex < len; ++saveStackIndex, prevTransform = prevTransform0) { saveEntry = t1[saveStackIndex]; prevTransform0 = saveEntry.transform; clipDepth = _this._replaySingleSaveEntry$4(clipDepth, prevTransform, prevTransform0, saveEntry.clipStack); ctx.save(); ++_this._saveContextCount; } _this._replaySingleSaveEntry$4(clipDepth, prevTransform, _this._currentTransform, _this.clipStack); }, endOfPaint$0() { var t2, _i, e, t3, t1 = this._reusablePool; if (t1 != null) { for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { e = t1[_i]; t3 = $.$get$_browserEngine(); if (t3 === B.BrowserEngine_1) { e.height = 0; e.width = 0; } t3 = e.parentNode; if (t3 != null) t3.removeChild(e); } this._reusablePool = null; } this._restoreContextSave$0(); }, _restoreContextSave$0() { for (; this._saveContextCount !== 0;) { this.__engine$_context.restore(); --this._saveContextCount; } }, translate$2(_, dx, dy) { var _this = this; _this.super$_SaveStackTracking$translate(0, dx, dy); if (_this.__engine$_canvas != null) _this.get$context(_this).translate(dx, dy); }, __engine$_clipRect$2(ctx, rect) { var t1, t2; ctx.beginPath(); t1 = rect.left; t2 = rect.top; ctx.rect(t1, t2, rect.right - t1, rect.bottom - t2); ctx.clip(); }, __engine$_clipRRect$2(ctx, rrect) { var path = A.Path_Path(); path.addRRect$1(0, rrect); this._runPath$2(ctx, type$.SurfacePath._as(path)); ctx.clip(); }, clipPath$1(_, path) { var ctx, _this = this; _this.super$_SaveStackTracking$clipPath(0, path); if (_this.__engine$_canvas != null) { ctx = _this.get$context(_this); _this._runPath$2(ctx, path); if (path._fillType === B.PathFillType_0) ctx.clip(); else ctx.clip("evenodd"); } }, _runPath$2(ctx, path) { var p, t1, iter, verb, w, points, len, i, t2, t3; ctx.beginPath(); p = $.$get$CanvasPool__runBuffer(); t1 = path.pathRef; iter = new A.PathRefIterator(t1); iter.PathRefIterator$1(t1); for (; verb = iter.next$1(0, p), verb !== 6;) switch (verb) { case 0: ctx.moveTo(p[0], p[1]); break; case 1: ctx.lineTo(p[2], p[3]); break; case 4: ctx.bezierCurveTo(p[2], p[3], p[4], p[5], p[6], p[7]); break; case 2: ctx.quadraticCurveTo(p[2], p[3], p[4], p[5]); break; case 3: w = t1._conicWeights[iter._conicWeightIndex]; points = new A.Conic(p[0], p[1], p[2], p[3], p[4], p[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t2 = points[i]; t3 = points[i + 1]; ctx.quadraticCurveTo(t2._dx, t2._dy, t3._dx, t3._dy); } break; case 5: ctx.closePath(); break; default: throw A.wrapException(A.UnimplementedError$("Unknown path verb " + verb)); } }, _runPathWithOffset$4(ctx, path, offsetX, offsetY) { var p, t1, iter, verb, w, points, len, i, t2, t3; ctx.beginPath(); p = $.$get$CanvasPool__runBuffer(); t1 = path.pathRef; iter = new A.PathRefIterator(t1); iter.PathRefIterator$1(t1); for (; verb = iter.next$1(0, p), verb !== 6;) switch (verb) { case 0: ctx.moveTo(p[0] + offsetX, p[1] + offsetY); break; case 1: ctx.lineTo(p[2] + offsetX, p[3] + offsetY); break; case 4: ctx.bezierCurveTo(p[2] + offsetX, p[3] + offsetY, p[4] + offsetX, p[5] + offsetY, p[6] + offsetX, p[7] + offsetY); break; case 2: ctx.quadraticCurveTo(p[2] + offsetX, p[3] + offsetY, p[4] + offsetX, p[5] + offsetY); break; case 3: w = t1._conicWeights[iter._conicWeightIndex]; points = new A.Conic(p[0], p[1], p[2], p[3], p[4], p[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t2 = points[i]; t3 = points[i + 1]; ctx.quadraticCurveTo(t2._dx + offsetX, t2._dy + offsetY, t3._dx + offsetX, t3._dy + offsetY); } break; case 5: ctx.closePath(); break; default: throw A.wrapException(A.UnimplementedError$("Unknown path verb " + verb)); } }, drawPath$2(_, path, style) { var t2, _this = this, shaderBounds = _this.get$contextHandle()._shaderBounds, t1 = type$.SurfacePath; if (shaderBounds == null) _this._runPath$2(_this.get$context(_this), t1._as(path)); else _this._runPathWithOffset$4(_this.get$context(_this), t1._as(path), -shaderBounds.left, -shaderBounds.top); t1 = _this.get$contextHandle(); t2 = path._fillType; t1.toString; if (style === B.PaintingStyle_1) t1.context.stroke(); else { t1 = t1.context; if (t2 === B.PathFillType_0) t1.fill(); else t1.fill("evenodd"); } }, dispose$0(_) { var t1 = $.$get$_browserEngine(); if (t1 === B.BrowserEngine_1 && this.__engine$_canvas != null) { t1 = this.__engine$_canvas; t1.height = 0; t1.width = 0; } this._clearActiveCanvasList$0(); }, _clearActiveCanvasList$0() { var t2, _i, c, t3, t1 = this._activeCanvasList; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { c = t1[_i]; t3 = $.$get$_browserEngine(); if (t3 === B.BrowserEngine_1) { c.height = 0; c.width = 0; } t3 = c.parentNode; if (t3 != null) t3.removeChild(c); } this._activeCanvasList = null; } }; A.ContextStateHandle.prototype = { set$fillStyle(_, colorOrGradient) { var t1 = this._currentFillStyle; if (colorOrGradient == null ? t1 != null : colorOrGradient !== t1) { this._currentFillStyle = colorOrGradient; this.context.fillStyle = colorOrGradient; } }, set$strokeStyle(_, colorOrGradient) { var t1 = this._currentStrokeStyle; if (colorOrGradient == null ? t1 != null : colorOrGradient !== t1) { this._currentStrokeStyle = colorOrGradient; this.context.strokeStyle = colorOrGradient; } }, setUpPaint$2(paint, shaderBounds) { var t1, strokeCap, strokeJoin, t2, paintStyle, colorString, maskFilter, tempVector, shadowOffsetX, shadowOffsetY, _this = this; _this._lastUsedPaint = paint; t1 = paint.strokeWidth; if (t1 == null) t1 = 1; if (t1 !== _this._currentLineWidth) { _this._currentLineWidth = t1; _this.context.lineWidth = t1; } t1 = paint.blendMode; if (t1 != _this._currentBlendMode) { _this._currentBlendMode = t1; t1 = A.blendModeToCssMixBlendMode(t1); if (t1 == null) t1 = "source-over"; _this.context.globalCompositeOperation = t1; } strokeCap = paint.strokeCap; if (strokeCap == null) strokeCap = B.StrokeCap_0; if (strokeCap !== _this._currentStrokeCap) { _this._currentStrokeCap = strokeCap; t1 = A.stringForStrokeCap(strokeCap); t1.toString; _this.context.lineCap = t1; } strokeJoin = paint.strokeJoin; if (strokeJoin == null) strokeJoin = B.StrokeJoin_0; if (strokeJoin !== _this._currentStrokeJoin) { _this._currentStrokeJoin = strokeJoin; _this.context.lineJoin = A.stringForStrokeJoin(strokeJoin); } t1 = paint.shader; if (t1 != null) { if (t1 instanceof A.EngineGradient) { t2 = _this._canvasPool; paintStyle = t1.createPaintStyle$3(t2.get$context(t2), shaderBounds, _this.density); _this.set$fillStyle(0, paintStyle); _this.set$strokeStyle(0, paintStyle); _this._shaderBounds = shaderBounds; _this.context.translate(shaderBounds.left, shaderBounds.top); } } else { t1 = paint.color; if (t1 != null) { colorString = A.colorToCssString(t1); _this.set$fillStyle(0, colorString); _this.set$strokeStyle(0, colorString); } else { _this.set$fillStyle(0, "#000000"); _this.set$strokeStyle(0, "#000000"); } } maskFilter = paint.maskFilter; t1 = $.$get$_browserEngine(); if (!(t1 === B.BrowserEngine_1 || false)) { if (!J.$eq$(_this._currentFilter, maskFilter)) { _this._currentFilter = maskFilter; _this.context.filter = A.maskFilterToCanvasFilter(maskFilter); } } else if (maskFilter != null) { t1 = _this.context; t1.save(); t1.shadowBlur = maskFilter._sigma * 2; t2 = paint.color; if (t2 != null) { t2 = A.colorToCssString(A.Color$fromARGB(255, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); t2.toString; t1.shadowColor = t2; } else { t2 = A.colorToCssString(B.Color_4278190080); t2.toString; t1.shadowColor = t2; } t1.translate(-50000, 0); tempVector = new Float32Array(2); t2 = $.$get$window()._debugDevicePixelRatio; tempVector[0] = 50000 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t2 = _this._canvasPool; t2._currentTransform.transform2$1(tempVector); shadowOffsetX = tempVector[0]; shadowOffsetY = tempVector[1]; tempVector[1] = 0; tempVector[0] = 0; t2._currentTransform.transform2$1(tempVector); t1.shadowOffsetX = shadowOffsetX - tempVector[0]; t1.shadowOffsetY = shadowOffsetY - tempVector[1]; } }, tearDownPaint$0() { var _this = this, t1 = _this._lastUsedPaint; if ((t1 == null ? null : t1.maskFilter) != null) { t1 = $.$get$_browserEngine(); t1 = t1 === B.BrowserEngine_1 || false; } else t1 = false; if (t1) _this.context.restore(); t1 = _this._shaderBounds; if (t1 != null) { _this.context.translate(-t1.left, -t1.top); _this._shaderBounds = null; } }, paint$1(style) { var t1 = this.context; if (style === B.PaintingStyle_1) t1.stroke(); else t1.fill(); }, reset$0(_) { var _this = this, t1 = _this.context; t1.fillStyle = ""; _this._currentFillStyle = t1.fillStyle; t1.strokeStyle = ""; _this._currentStrokeStyle = t1.strokeStyle; t1.shadowBlur = 0; t1.shadowColor = "none"; t1.shadowOffsetX = 0; t1.shadowOffsetY = 0; t1.globalCompositeOperation = "source-over"; _this._currentBlendMode = B.BlendMode_3; t1.lineWidth = 1; _this._currentLineWidth = 1; t1.lineCap = "butt"; _this._currentStrokeCap = B.StrokeCap_0; t1.lineJoin = "miter"; _this._currentStrokeJoin = B.StrokeJoin_0; _this._shaderBounds = null; } }; A._SaveStackTracking.prototype = { clear$0(_) { B.JSArray_methods.set$length(this._saveStack, 0); this.clipStack = null; this._currentTransform = A.Matrix4$identity(); }, save$0(_) { var t1 = this._currentTransform, t2 = new A.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); t1 = this.clipStack; t1 = t1 == null ? null : A.List_List$from(t1, true, type$.SaveClipEntry); this._saveStack.push(new A.SaveStackEntry(t2, t1)); }, restore$0(_) { var entry, t1 = this._saveStack; if (t1.length === 0) return; entry = t1.pop(); this._currentTransform = entry.transform; this.clipStack = entry.clipStack; }, translate$2(_, dx, dy) { this._currentTransform.translate$2(0, dx, dy); }, scale$2(_, sx, sy) { this._currentTransform.scale$2(0, sx, sy); }, rotate$1(_, radians) { this._currentTransform.rotate$2(0, $.$get$_SaveStackTracking__unitZ(), radians); }, transform$1(_, matrix4) { this._currentTransform.multiply$1(0, new A.Matrix40(matrix4)); }, clipRect$1(_, rect) { var t2, t3, t1 = this.clipStack; if (t1 == null) t1 = this.clipStack = A._setArrayType([], type$.JSArray_SaveClipEntry); t2 = this._currentTransform; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new A.SaveClipEntry(rect, null, null, t3)); }, clipRRect$1(_, rrect) { var t2, t3, t1 = this.clipStack; if (t1 == null) t1 = this.clipStack = A._setArrayType([], type$.JSArray_SaveClipEntry); t2 = this._currentTransform; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new A.SaveClipEntry(null, rrect, null, t3)); }, clipPath$1(_, path) { var t2, t3, t1 = this.clipStack; if (t1 == null) t1 = this.clipStack = A._setArrayType([], type$.JSArray_SaveClipEntry); t2 = this._currentTransform; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new A.SaveClipEntry(null, null, path, t3)); } }; A.CkCanvas.prototype = { clear$1(_, color) { J.clear$1$ax(this.skCanvas, A._populateSkColor($.$get$_sharedSkColor1(), color)); }, clipPath$2(_, path, doAntiAlias) { J.clipPath$3$x(this.skCanvas, path.get$skiaObject(), $.$get$_clipOpIntersect(), doAntiAlias); }, clipRRect$2(_, rrect, doAntiAlias) { J.clipRRect$3$x(this.skCanvas, A.toSkRRect(rrect), $.$get$_clipOpIntersect(), doAntiAlias); }, clipRect$3(_, rect, clipOp, doAntiAlias) { J.clipRect$3$x(this.skCanvas, A.toSkRect(rect), $.$get$_skClipOps()[clipOp.index], doAntiAlias); }, drawArc$5(_, oval, startAngle, sweepAngle, useCenter, paint) { J.drawArc$5$x(this.skCanvas, A.toSkRect(oval), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232, false, paint.get$skiaObject()); }, drawCircle$3(_, c, radius, paint) { J.drawCircle$4$x(this.skCanvas, c._dx, c._dy, radius, paint.get$skiaObject()); }, drawDRRect$3(_, outer, inner, paint) { J.drawDRRect$3$x(this.skCanvas, A.toSkRRect(outer), A.toSkRRect(inner), paint.get$skiaObject()); }, drawImageRect$4(image, src, dst, paint) { var t2, t3, t4, t5, t6, filterQuality = paint.__engine$_filterQuality, t1 = this.skCanvas; if (filterQuality === B.FilterQuality_3) J.drawImageRectCubic$6$x(t1, A._lateReadCheck(image.__CkImage_box, "box").get$skiaObject(), A.toSkRect(src), A.toSkRect(dst), 0.3333333333333333, 0.3333333333333333, paint.get$skiaObject()); else { t2 = A._lateReadCheck(image.__CkImage_box, "box").get$skiaObject(); t3 = A.toSkRect(src); t4 = A.toSkRect(dst); t5 = filterQuality === B.FilterQuality_0 ? J.get$Nearest$x(J.get$FilterMode$x($.__canvasKit._readField$0())) : J.get$Linear$x(J.get$FilterMode$x($.__canvasKit._readField$0())); t6 = filterQuality === B.FilterQuality_2 ? J.get$Linear$x(J.get$MipmapMode$x($.__canvasKit._readField$0())) : J.get$None$x(J.get$MipmapMode$x($.__canvasKit._readField$0())); J.drawImageRectOptions$6$x(t1, t2, t3, t4, t5, t6, paint.get$skiaObject()); } }, drawLine$3(_, p1, p2, paint) { J.drawLine$5$x(this.skCanvas, p1._dx, p1._dy, p2._dx, p2._dy, paint.get$skiaObject()); }, drawPaint$1(_, paint) { J.drawPaint$1$x(this.skCanvas, paint.get$skiaObject()); }, drawParagraph$2(_, paragraph, offset) { var t1 = paragraph._lastLayoutConstraints; t1.toString; J.drawParagraph$3$x(this.skCanvas, paragraph._ensureInitialized$1(t1), offset._dx, offset._dy); if (!$.$get$CkParagraph__paragraphCache().markUsed$1(paragraph)) $.$get$CkParagraph__paragraphCache().add$1(0, paragraph); }, drawPath$2(_, path, paint) { J.drawPath$2$x(this.skCanvas, path.get$skiaObject(), paint.get$skiaObject()); }, drawPicture$1(_, picture) { J.drawPicture$1$x(this.skCanvas, picture.get$skiaObject()); }, drawRRect$2(_, rrect, paint) { J.drawRRect$2$x(this.skCanvas, A.toSkRRect(rrect), paint.get$skiaObject()); }, drawRect$2(_, rect, paint) { J.drawRect$2$x(this.skCanvas, A.toSkRect(rect), paint.get$skiaObject()); }, drawShadow$4(_, path, color, elevation, transparentOccluder) { var t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); A.drawSkShadow(this.skCanvas, path, color, elevation, transparentOccluder, t1); }, restore$0(_) { J.restore$0$x(this.skCanvas); }, restoreToCount$1(_, count) { J.restoreToCount$1$x(this.skCanvas, count); }, rotate$1(_, radians) { J.rotate$3$x(this.skCanvas, radians * 180 / 3.141592653589793, 0, 0); }, save$0(_) { return J.save$0$x(this.skCanvas); }, saveLayer$2(_, bounds, paint) { var t1 = paint == null ? null : paint.get$skiaObject(); J.saveLayer$4$x(this.skCanvas, t1, A.toSkRect(bounds), null, null); }, saveLayerWithFilter$3(bounds, filter, paint) { var t1; type$.CkManagedSkImageFilterConvertible._as(filter); t1 = paint.get$skiaObject(); return J.saveLayer$4$x(this.skCanvas, t1, A.toSkRect(bounds), filter.get$skiaObject(), 0); }, scale$2(_, sx, sy) { J.scale$2$x(this.skCanvas, sx, sy); }, transform$1(_, matrix4) { J.concat$1$x(this.skCanvas, A.toSkM44FromFloat32(matrix4)); }, translate$2(_, dx, dy) { J.translate$2$x(this.skCanvas, dx, dy); }, get$pictureSnapshot() { return null; } }; A.RecordingCkCanvas.prototype = { clear$1(_, color) { this.super$CkCanvas$clear(0, color); this.pictureSnapshot._commands.push(new A.CkClearCommand(color)); }, clipPath$2(_, path, doAntiAlias) { this.super$CkCanvas$clipPath(0, path, doAntiAlias); this.pictureSnapshot._commands.push(new A.CkClipPathCommand(path, doAntiAlias)); }, clipRRect$2(_, rrect, doAntiAlias) { this.super$CkCanvas$clipRRect(0, rrect, doAntiAlias); this.pictureSnapshot._commands.push(new A.CkClipRRectCommand(rrect, doAntiAlias)); }, clipRect$3(_, rect, clipOp, doAntiAlias) { this.super$CkCanvas$clipRect(0, rect, clipOp, doAntiAlias); this.pictureSnapshot._commands.push(new A.CkClipRectCommand(rect, clipOp, doAntiAlias)); }, drawArc$5(_, oval, startAngle, sweepAngle, useCenter, paint) { this.super$CkCanvas$drawArc(0, oval, startAngle, sweepAngle, false, paint); this.pictureSnapshot._commands.push(new A.CkDrawArcCommand(oval, startAngle, sweepAngle, false, paint)); }, drawCircle$3(_, c, radius, paint) { this.super$CkCanvas$drawCircle(0, c, radius, paint); this.pictureSnapshot._commands.push(new A.CkDrawCircleCommand(c, radius, paint)); }, drawDRRect$3(_, outer, inner, paint) { this.super$CkCanvas$drawDRRect(0, outer, inner, paint); this.pictureSnapshot._commands.push(new A.CkDrawDRRectCommand(outer, inner, paint)); }, drawImageRect$4(image, src, dst, paint) { this.super$CkCanvas$drawImageRect(image, src, dst, paint); this.pictureSnapshot._commands.push(new A.CkDrawImageRectCommand(A.CkImage$cloneOf(A._lateReadCheck(image.__CkImage_box, "box")), src, dst, paint)); }, drawLine$3(_, p1, p2, paint) { this.super$CkCanvas$drawLine(0, p1, p2, paint); this.pictureSnapshot._commands.push(new A.CkDrawLineCommand(p1, p2, paint)); }, drawPaint$1(_, paint) { this.super$CkCanvas$drawPaint(0, paint); this.pictureSnapshot._commands.push(new A.CkDrawPaintCommand(paint)); }, drawParagraph$2(_, paragraph, offset) { this.super$CkCanvas$drawParagraph(0, paragraph, offset); this.pictureSnapshot._commands.push(new A.CkDrawParagraphCommand(paragraph, offset)); }, drawPath$2(_, path, paint) { this.super$CkCanvas$drawPath(0, path, paint); this.pictureSnapshot._commands.push(new A.CkDrawPathCommand(path, paint)); }, drawPicture$1(_, picture) { this.super$CkCanvas$drawPicture(0, picture); this.pictureSnapshot._commands.push(new A.CkDrawPictureCommand(picture)); }, drawRRect$2(_, rrect, paint) { this.super$CkCanvas$drawRRect(0, rrect, paint); this.pictureSnapshot._commands.push(new A.CkDrawRRectCommand(rrect, paint)); }, drawRect$2(_, rect, paint) { this.super$CkCanvas$drawRect(0, rect, paint); this.pictureSnapshot._commands.push(new A.CkDrawRectCommand(rect, paint)); }, drawShadow$4(_, path, color, elevation, transparentOccluder) { this.super$CkCanvas$drawShadow(0, path, color, elevation, transparentOccluder); this.pictureSnapshot._commands.push(new A.CkDrawShadowCommand(path, color, elevation, transparentOccluder)); }, restore$0(_) { this.super$CkCanvas$restore(0); this.pictureSnapshot._commands.push(B.C_CkRestoreCommand); }, restoreToCount$1(_, count) { this.super$CkCanvas$restoreToCount(0, count); this.pictureSnapshot._commands.push(new A.CkRestoreToCountCommand(count)); }, rotate$1(_, radians) { this.super$CkCanvas$rotate(0, radians); this.pictureSnapshot._commands.push(new A.CkRotateCommand(radians)); }, save$0(_) { this.pictureSnapshot._commands.push(B.C_CkSaveCommand); return this.super$CkCanvas$save(0); }, saveLayer$2(_, bounds, paint) { this.super$CkCanvas$saveLayer(0, bounds, paint); this.pictureSnapshot._commands.push(new A.CkSaveLayerCommand(bounds, paint)); }, saveLayerWithFilter$3(bounds, filter, paint) { this.super$CkCanvas$saveLayerWithFilter(bounds, filter, paint); this.pictureSnapshot._commands.push(new A.CkSaveLayerWithFilterCommand(bounds, filter, paint)); }, scale$2(_, sx, sy) { this.super$CkCanvas$scale(0, sx, sy); this.pictureSnapshot._commands.push(new A.CkScaleCommand(sx, sy)); }, transform$1(_, matrix4) { this.super$CkCanvas$transform(0, matrix4); this.pictureSnapshot._commands.push(new A.CkTransformCommand(matrix4)); }, translate$2(_, dx, dy) { this.super$CkCanvas$translate(0, dx, dy); this.pictureSnapshot._commands.push(new A.CkTranslateCommand(dx, dy)); }, get$pictureSnapshot() { return this.pictureSnapshot; } }; A.CkPictureSnapshot.prototype = { toPicture$0() { var t2, t3, _i, skPicture, recorder = new self.window.flutterCanvasKit.PictureRecorder(), t1 = J.getInterceptor$x(recorder), skCanvas = t1.beginRecording$1(recorder, A.toSkRect(this._bounds)); for (t2 = this._commands, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) t2[_i].apply$1(skCanvas); skPicture = t1.finishRecordingAsPicture$0(recorder); t1.delete$0(recorder); return skPicture; }, dispose$0(_) { var t1, t2, _i; for (t1 = this._commands, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].dispose$0(0); } }; A.CkPaintCommand.prototype = { dispose$0(_) { } }; A.CkClearCommand.prototype = { apply$1(canvas) { J.clear$1$ax(canvas, A._populateSkColor($.$get$_sharedSkColor1(), this.color)); } }; A.CkSaveCommand.prototype = { apply$1(canvas) { J.save$0$x(canvas); } }; A.CkRestoreCommand.prototype = { apply$1(canvas) { J.restore$0$x(canvas); } }; A.CkRestoreToCountCommand.prototype = { apply$1(canvas) { J.restoreToCount$1$x(canvas, this.count); } }; A.CkTranslateCommand.prototype = { apply$1(canvas) { J.translate$2$x(canvas, this.dx, this.dy); } }; A.CkScaleCommand.prototype = { apply$1(canvas) { J.scale$2$x(canvas, this.sx, this.sy); } }; A.CkRotateCommand.prototype = { apply$1(canvas) { J.rotate$3$x(canvas, this.radians * 180 / 3.141592653589793, 0, 0); } }; A.CkTransformCommand.prototype = { apply$1(canvas) { J.concat$1$x(canvas, A.toSkM44FromFloat32(this.matrix4)); } }; A.CkClipRectCommand.prototype = { apply$1(canvas) { J.clipRect$3$x(canvas, A.toSkRect(this.rect), $.$get$_skClipOps()[this.clipOp.index], this.doAntiAlias); } }; A.CkDrawArcCommand.prototype = { apply$1(canvas) { var _this = this; J.drawArc$5$x(canvas, A.toSkRect(_this.oval), _this.startAngle * 57.29577951308232, _this.sweepAngle * 57.29577951308232, false, _this.paint.get$skiaObject()); } }; A.CkClipRRectCommand.prototype = { apply$1(canvas) { J.clipRRect$3$x(canvas, A.toSkRRect(this.rrect), $.$get$_clipOpIntersect(), this.doAntiAlias); } }; A.CkClipPathCommand.prototype = { apply$1(canvas) { J.clipPath$3$x(canvas, this.path.get$skiaObject(), $.$get$_clipOpIntersect(), this.doAntiAlias); } }; A.CkDrawLineCommand.prototype = { apply$1(canvas) { var t1 = this.p1, t2 = this.p2; J.drawLine$5$x(canvas, t1._dx, t1._dy, t2._dx, t2._dy, this.paint.get$skiaObject()); } }; A.CkDrawPaintCommand.prototype = { apply$1(canvas) { J.drawPaint$1$x(canvas, this.paint.get$skiaObject()); } }; A.CkDrawRectCommand.prototype = { apply$1(canvas) { J.drawRect$2$x(canvas, A.toSkRect(this.rect), this.paint.get$skiaObject()); } }; A.CkDrawRRectCommand.prototype = { apply$1(canvas) { J.drawRRect$2$x(canvas, A.toSkRRect(this.rrect), this.paint.get$skiaObject()); } }; A.CkDrawDRRectCommand.prototype = { apply$1(canvas) { J.drawDRRect$3$x(canvas, A.toSkRRect(this.outer), A.toSkRRect(this.inner), this.paint.get$skiaObject()); } }; A.CkDrawCircleCommand.prototype = { apply$1(canvas) { var t1 = this.c; J.drawCircle$4$x(canvas, t1._dx, t1._dy, this.radius, this.paint.get$skiaObject()); } }; A.CkDrawPathCommand.prototype = { apply$1(canvas) { J.drawPath$2$x(canvas, this.path.get$skiaObject(), this.paint.get$skiaObject()); } }; A.CkDrawShadowCommand.prototype = { apply$1(canvas) { var _this = this, t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); A.drawSkShadow(canvas, _this.path, _this.color, _this.elevation, _this.transparentOccluder, t1); } }; A.CkDrawImageRectCommand.prototype = { apply$1(canvas) { var t5, t6, _this = this, t1 = _this.paint, filterQuality = t1.__engine$_filterQuality, t2 = _this.src, t3 = _this.dst, t4 = _this.image.__CkImage_box; if (filterQuality === B.FilterQuality_3) J.drawImageRectCubic$6$x(canvas, A._lateReadCheck(t4, "box").get$skiaObject(), A.toSkRect(t2), A.toSkRect(t3), 0.3333333333333333, 0.3333333333333333, t1.get$skiaObject()); else { t4 = A._lateReadCheck(t4, "box").get$skiaObject(); t2 = A.toSkRect(t2); t3 = A.toSkRect(t3); t5 = filterQuality === B.FilterQuality_0 ? J.get$Nearest$x(J.get$FilterMode$x($.__canvasKit._readField$0())) : J.get$Linear$x(J.get$FilterMode$x($.__canvasKit._readField$0())); t6 = filterQuality === B.FilterQuality_2 ? J.get$Linear$x(J.get$MipmapMode$x($.__canvasKit._readField$0())) : J.get$None$x(J.get$MipmapMode$x($.__canvasKit._readField$0())); J.drawImageRectOptions$6$x(canvas, t4, t2, t3, t5, t6, t1.get$skiaObject()); } }, dispose$0(_) { var t1 = this.image; t1._disposed = true; A._lateReadCheck(t1.__CkImage_box, "box").unref$1(t1); } }; A.CkDrawParagraphCommand.prototype = { apply$1(canvas) { var t3, t1 = this.paragraph, t2 = t1._lastLayoutConstraints; t2.toString; t3 = this.offset; J.drawParagraph$3$x(canvas, t1._ensureInitialized$1(t2), t3._dx, t3._dy); if (!$.$get$CkParagraph__paragraphCache().markUsed$1(t1)) $.$get$CkParagraph__paragraphCache().add$1(0, t1); } }; A.CkDrawPictureCommand.prototype = { apply$1(canvas) { J.drawPicture$1$x(canvas, this.picture.get$skiaObject()); } }; A.CkSaveLayerCommand.prototype = { apply$1(canvas) { var t1 = this.paint; t1 = t1 == null ? null : t1.get$skiaObject(); J.saveLayer$4$x(canvas, t1, A.toSkRect(this.bounds), null, null); } }; A.CkSaveLayerWithFilterCommand.prototype = { apply$1(canvas) { var convertible = type$.CkManagedSkImageFilterConvertible._as(this.filter), t1 = this.paint.get$skiaObject(); return J.saveLayer$4$x(canvas, t1, A.toSkRect(this.bounds), convertible.get$skiaObject(), 0); } }; A.H5vcc.prototype = {}; A.CanvasKit.prototype = {}; A.CanvasKitInitOptions.prototype = {}; A.CanvasKitInitPromise.prototype = {}; A.ColorSpace.prototype = {}; A.SkWebGLContextOptions.prototype = {}; A.SkSurface.prototype = {}; A.SkGrContext.prototype = {}; A.SkFontSlantEnum.prototype = {}; A.SkFontSlant.prototype = {}; A.SkFontWeightEnum.prototype = {}; A.SkFontWeight.prototype = {}; A.SkAffinityEnum.prototype = {}; A.SkAffinity.prototype = {}; A.SkTextDirectionEnum.prototype = {}; A.SkTextDirection.prototype = {}; A.SkTextAlignEnum.prototype = {}; A.SkTextAlign.prototype = {}; A.SkTextHeightBehaviorEnum.prototype = {}; A.SkTextHeightBehavior.prototype = {}; A.SkRectHeightStyleEnum.prototype = {}; A.SkRectHeightStyle.prototype = {}; A.SkRectWidthStyleEnum.prototype = {}; A.SkRectWidthStyle.prototype = {}; A.SkVertexModeEnum.prototype = {}; A.SkVertexMode.prototype = {}; A.SkPointModeEnum.prototype = {}; A.SkPointMode.prototype = {}; A.SkClipOpEnum.prototype = {}; A.SkClipOp.prototype = {}; A.SkFillTypeEnum.prototype = {}; A.SkFillType.prototype = {}; A.SkPathOpEnum.prototype = {}; A.SkPathOp.prototype = {}; A.SkBlurStyleEnum.prototype = {}; A.SkBlurStyle.prototype = {}; A.SkStrokeCapEnum.prototype = {}; A.SkStrokeCap.prototype = {}; A.SkPaintStyleEnum.prototype = {}; A.SkPaintStyle.prototype = {}; A.SkBlendModeEnum.prototype = {}; A.SkBlendMode.prototype = {}; A.SkStrokeJoinEnum.prototype = {}; A.SkStrokeJoin.prototype = {}; A.SkTileModeEnum.prototype = {}; A.SkTileMode.prototype = {}; A.SkFilterModeEnum.prototype = {}; A.SkFilterMode.prototype = {}; A.SkMipmapModeEnum.prototype = {}; A.SkMipmapMode.prototype = {}; A.SkAlphaTypeEnum.prototype = {}; A.SkAlphaType.prototype = {}; A.SkColorTypeEnum.prototype = {}; A.SkColorType.prototype = {}; A.SkAnimatedImage.prototype = {}; A.SkImage.prototype = {}; A.SkShaderNamespace.prototype = {}; A.SkShader.prototype = {}; A.SkMaskFilterNamespace.prototype = {}; A.SkPaint.prototype = {}; A.CkFilterOptions.prototype = {}; A._CkCubicFilterOptions.prototype = {}; A._CkTransformFilterOptions.prototype = {}; A.SkMaskFilter.prototype = {}; A.SkColorFilterNamespace.prototype = {}; A.SkColorFilter.prototype = {}; A.SkImageFilterNamespace.prototype = {}; A.SkImageFilter.prototype = {}; A.SkPathNamespace.prototype = {}; A._NativeFloat32ArrayType.prototype = {}; A.SkFloat32List.prototype = {}; A.SkPath.prototype = {}; A.SkContourMeasureIter.prototype = {}; A.SkContourMeasure.prototype = {}; A.SkPictureRecorder.prototype = {}; A.SkCanvas.prototype = {}; A.SkPicture.prototype = {}; A.SkParagraphBuilderNamespace.prototype = {}; A.SkParagraphBuilder.prototype = {}; A.SkParagraphStyle.prototype = {}; A.SkParagraphStyleProperties.prototype = {}; A.SkTextStyle.prototype = {}; A.SkTextDecorationStyleEnum.prototype = {}; A.SkTextDecorationStyle.prototype = {}; A.SkTextBaselineEnum.prototype = {}; A.SkTextBaseline.prototype = {}; A.SkPlaceholderAlignmentEnum.prototype = {}; A.SkPlaceholderAlignment.prototype = {}; A.SkTextStyleProperties.prototype = {}; A.SkStrutStyleProperties.prototype = {}; A.SkFontStyle.prototype = {}; A.SkTextShadow.prototype = {}; A.SkFontFeature.prototype = {}; A.SkTypeface.prototype = {}; A.SkFont.prototype = {}; A.SkFontMgr.prototype = {}; A.TypefaceFontProvider.prototype = {}; A.SkLineMetrics.prototype = {}; A.SkParagraph.prototype = {}; A.SkTextPosition.prototype = {}; A.SkTextRange.prototype = {}; A.SkVertices.prototype = {}; A.SkTonalColors.prototype = {}; A.SkFontMgrNamespace.prototype = {}; A.TypefaceFontProviderNamespace.prototype = {}; A.SkTypefaceFactory.prototype = {}; A.ProductionCollector.prototype = { ProductionCollector$0() { var t1 = new self.window.FinalizationRegistry(A.allowInterop(new A.ProductionCollector_closure(this))); A._lateWriteOnceCheck(this.__ProductionCollector__skObjectFinalizationRegistry, "_skObjectFinalizationRegistry"); this.__ProductionCollector__skObjectFinalizationRegistry = t1; }, register$2(_, wrapper, deletable) { J.register$2$x(A._lateReadCheck(this.__ProductionCollector__skObjectFinalizationRegistry, "_skObjectFinalizationRegistry"), wrapper, deletable); }, collect$1(deletable) { var _this = this; _this._skiaObjectCollectionQueue.push(deletable); if (_this._skiaObjectCollectionTimer == null) _this._skiaObjectCollectionTimer = A.Timer_Timer(B.Duration_0, new A.ProductionCollector_collect_closure(_this)); }, collectSkiaObjectsNow$0() { var firstError, firstStackTrace, deletable, error, stackTrace, $length, i, exception, _s25_ = "SkObject collection-start", _s23_ = "SkObject collection-end", t1 = window.performance; (t1 && B.Performance_methods).mark$1(t1, _s25_); $length = this._skiaObjectCollectionQueue.length; firstError = null; firstStackTrace = null; for (i = 0; i < $length; ++i) { deletable = this._skiaObjectCollectionQueue[i]; if (J.isDeleted$0$x(deletable)) continue; try { J.delete$0$x(deletable); } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); if (firstError == null) { firstError = error; firstStackTrace = stackTrace; } } } this._skiaObjectCollectionQueue = A._setArrayType([], type$.JSArray_SkDeletable); t1 = window.performance; (t1 && B.Performance_methods).mark$1(t1, _s23_); t1 = window.performance; (t1 && B.Performance_methods).measure$3(t1, "SkObject collection", _s25_, _s23_); if (firstError != null) throw A.wrapException(new A.SkiaObjectCollectionError(firstError, firstStackTrace)); } }; A.ProductionCollector_closure.prototype = { call$1(deletable) { if (!J.isDeleted$0$x(deletable)) this.$this.collect$1(deletable); }, $signature: 1106 }; A.ProductionCollector_collect_closure.prototype = { call$0() { var t1 = this.$this; t1._skiaObjectCollectionTimer = null; t1.collectSkiaObjectsNow$0(); }, $signature: 0 }; A.SkiaObjectCollectionError.prototype = { toString$0(_) { return "SkiaObjectCollectionError: " + A.S(this.error) + "\n" + A.S(this.stackTrace); }, $isError: 1, get$stackTrace() { return this.stackTrace; } }; A.SkDeletable.prototype = {}; A.JsConstructor.prototype = {}; A.SkObjectFinalizationRegistry.prototype = {}; A.SkData.prototype = {}; A.SkImageInfo.prototype = {}; A.SkPartialImageInfo.prototype = {}; A.patchCanvasKitModule_closure.prototype = { call$0() { if (document.currentScript === this.canvasKitScript) return A.JsObject_JsObject(this.objectConstructor); else return $.$get$_context().$index(0, "_flutterWebCachedExports"); }, $signature: 9 }; A.patchCanvasKitModule_closure0.prototype = { call$1(value) { $.$get$_context().$indexSet(0, "_flutterWebCachedExports", value); }, $signature: 7 }; A.patchCanvasKitModule_closure1.prototype = { call$0() { if (document.currentScript === this.canvasKitScript) return A.JsObject_JsObject(this.objectConstructor); else return $.$get$_context().$index(0, "_flutterWebCachedModule"); }, $signature: 9 }; A.patchCanvasKitModule_closure2.prototype = { call$1(value) { $.$get$_context().$indexSet(0, "_flutterWebCachedModule", value); }, $signature: 7 }; A.CanvasKitCanvas.prototype = { save$0(_) { this.__engine$_canvas.save$0(0); }, saveLayer$2(_, bounds, paint) { this.__engine$_canvas.saveLayer$2(0, bounds, type$.CkPaint._as(paint)); }, restore$0(_) { this.__engine$_canvas.restore$0(0); }, translate$2(_, dx, dy) { this.__engine$_canvas.translate$2(0, dx, dy); }, scale$2(_, sx, sy) { var t1 = sy == null ? sx : sy; this.__engine$_canvas.scale$2(0, sx, t1); return null; }, rotate$1(_, radians) { this.__engine$_canvas.rotate$1(0, radians); }, transform$1(_, matrix4) { this.__engine$_canvas.transform$1(0, A.toMatrix32(matrix4)); }, clipRect$3$clipOp$doAntiAlias(_, rect, clipOp, doAntiAlias) { this.__engine$_canvas.clipRect$3(0, rect, clipOp, doAntiAlias); }, clipRect$2$doAntiAlias($receiver, rect, doAntiAlias) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, B.ClipOp_1, doAntiAlias); }, clipRect$1($receiver, rect) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, B.ClipOp_1, true); }, clipRRect$2$doAntiAlias(_, rrect, doAntiAlias) { this.__engine$_canvas.clipRRect$2(0, rrect, doAntiAlias); }, clipRRect$1($receiver, rrect) { return this.clipRRect$2$doAntiAlias($receiver, rrect, true); }, clipPath$2$doAntiAlias(_, path, doAntiAlias) { this.__engine$_canvas.clipPath$2(0, type$.CkPath._as(path), doAntiAlias); }, clipPath$1($receiver, path) { return this.clipPath$2$doAntiAlias($receiver, path, true); }, drawLine$3(_, p1, p2, paint) { this.__engine$_canvas.drawLine$3(0, p1, p2, type$.CkPaint._as(paint)); }, drawRect$2(_, rect, paint) { this.__engine$_canvas.drawRect$2(0, rect, type$.CkPaint._as(paint)); }, drawRRect$2(_, rrect, paint) { this.__engine$_canvas.drawRRect$2(0, rrect, type$.CkPaint._as(paint)); }, drawDRRect$3(_, outer, inner, paint) { this.__engine$_canvas.drawDRRect$3(0, outer, inner, type$.CkPaint._as(paint)); }, drawCircle$3(_, c, radius, paint) { this.__engine$_canvas.drawCircle$3(0, c, radius, type$.CkPaint._as(paint)); }, drawArc$5(_, rect, startAngle, sweepAngle, useCenter, paint) { this.__engine$_canvas.drawArc$5(0, rect, startAngle, sweepAngle, false, type$.CkPaint._as(paint)); }, drawPath$2(_, path, paint) { this.__engine$_canvas.drawPath$2(0, type$.CkPath._as(path), type$.CkPaint._as(paint)); }, drawImageRect$4(image, src, dst, paint) { this.__engine$_canvas.drawImageRect$4(type$.CkImage._as(image), src, dst, type$.CkPaint._as(paint)); }, drawParagraph$2(_, paragraph, offset) { this.__engine$_canvas.drawParagraph$2(0, type$.CkParagraph._as(paragraph), offset); }, drawShadow$4(_, path, color, elevation, transparentOccluder) { this.__engine$_canvas.drawShadow$4(0, type$.CkPath._as(path), color, elevation, true); } }; A.ManagedSkColorFilter.prototype = { createDefault$0() { return this.colorFilter._initRawColorFilter$0(); }, resurrect$0() { return this.colorFilter._initRawColorFilter$0(); }, delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, get$hashCode(_) { var t1 = this.colorFilter; return t1.get$hashCode(t1); }, $eq(_, other) { if (other == null) return false; if (A.getRuntimeType(this) !== J.get$runtimeType$(other)) return false; return other instanceof A.ManagedSkColorFilter && other.colorFilter.$eq(0, this.colorFilter); }, toString$0(_) { return this.colorFilter.toString$0(0); } }; A.CkColorFilter.prototype = {$isCkManagedSkImageFilterConvertible: 1}; A.CkBlendModeColorFilter.prototype = {}; A.CkMatrixColorFilter.prototype = { _initRawColorFilter$0() { var float32Matrix, i, matrix = this.matrix; if (type$.Float32List._is(matrix)) return J.MakeMatrix$1$x(J.get$ColorFilter$x($.__canvasKit._readField$0()), matrix); float32Matrix = new Float32Array(20); for (i = 0; i < 20; ++i) float32Matrix[i] = matrix[i]; return J.MakeMatrix$1$x(J.get$ColorFilter$x($.__canvasKit._readField$0()), float32Matrix); }, get$hashCode(_) { return A.hashList(this.matrix); }, $eq(_, other) { if (other == null) return false; return A.getRuntimeType(this) === J.get$runtimeType$(other) && other instanceof A.CkMatrixColorFilter && A.listEquals(this.matrix, other.matrix); }, toString$0(_) { return "ColorFilter.matrix(" + A.S(this.matrix) + ")"; } }; A.CkComposeColorFilter.prototype = { _initRawColorFilter$0() { var t1 = J.get$ColorFilter$x($.__canvasKit._readField$0()), t2 = this.outer; t2 = t2 == null ? null : t2.get$skiaObject(); return J.MakeCompose$2$x(t1, t2, this.inner.get$skiaObject()); }, $eq(_, other) { if (other == null) return false; if (!(other instanceof A.CkComposeColorFilter)) return false; return J.$eq$(other.outer, this.outer) && J.$eq$(other.inner, this.inner); }, get$hashCode(_) { return A.Object_hash(this.outer, this.inner, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "ColorFilter.compose(" + A.S(this.outer) + ", " + A.S(this.inner) + ")"; } }; A.HtmlViewEmbedder.prototype = { getOverlayCanvases$0() { var t2, overlayCanvases, t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t1 = t1.get$canvasKitMaximumSurfaces(t1) <= 1; if (t1) return B.List_empty23; t1 = this._pictureRecordersCreatedDuringPreroll; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CkCanvas>"); overlayCanvases = A.List_List$of(new A.MappedListIterable(t1, new A.HtmlViewEmbedder_getOverlayCanvases_closure(), t2), true, t2._eval$1("ListIterable.E")); t1 = this._backupPictureRecorder; if (t1 != null) { t1 = t1._recordingCanvas; t1.toString; B.JSArray_methods.add$1(overlayCanvases, t1); } return overlayCanvases; }, prerollCompositeEmbeddedView$2(viewId, params) { var pictureRecorder, t2, _this = this, t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t1 = t1.get$canvasKitMaximumSurfaces(t1) <= 1; if (!t1 && !$.$get$platformViewManager().isInvisible$1(viewId)) { t1 = _this._pictureRecordersCreatedDuringPreroll; if (t1.length >= A.SurfaceFactory_instance().maximumSurfaces - 2 && true) { if (_this._backupPictureRecorder == null) { pictureRecorder = new A.CkPictureRecorder(); t1 = _this._frameSize; pictureRecorder.beginRecording$1(0, new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); pictureRecorder._recordingCanvas.clear$1(0, B.Color_0); _this._backupPictureRecorder = pictureRecorder; } } else { pictureRecorder = new A.CkPictureRecorder(); t2 = _this._frameSize; pictureRecorder.beginRecording$1(0, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); pictureRecorder._recordingCanvas.clear$1(0, B.Color_0); t1.push(pictureRecorder); } } t1 = _this._currentCompositionParams; if (J.$eq$(t1.$index(0, viewId), params)) { if (!B.JSArray_methods.contains$1(_this._activeCompositionOrder, viewId)) _this._viewsToRecomposite.add$1(0, viewId); return; } t1.$indexSet(0, viewId, params); _this._viewsToRecomposite.add$1(0, viewId); }, compositeEmbeddedView$1(viewId) { var t1, t2, needOverlay, _this = this, overlayIndex = _this._visibleViewCount; _this._compositionOrder.push(viewId); t1 = $.$get$platformViewManager(); if (!t1.isInvisible$1(viewId)) ++_this._visibleViewCount; t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t2 = t2.get$canvasKitMaximumSurfaces(t2) <= 1; needOverlay = !t2 && !t1.isInvisible$1(viewId); if (needOverlay) { t1 = _this._pictureRecordersCreatedDuringPreroll; t2 = _this._pictureRecorders; if (overlayIndex < t1.length) t2.$indexSet(0, viewId, t1[overlayIndex]); else { _this._viewsUsingBackupSurface.add$1(0, viewId); t1 = _this._backupPictureRecorder; t1.toString; t2.$indexSet(0, viewId, t1); } } t1 = _this._viewsToRecomposite; if (!t1.contains$1(0, viewId)) if (needOverlay) return _this._pictureRecorders.$index(0, viewId)._recordingCanvas; else return null; t2 = _this._currentCompositionParams.$index(0, viewId); t2.toString; _this._compositeWithParams$2(viewId, t2); t1.remove$1(0, viewId); if (needOverlay) return _this._pictureRecorders.$index(0, viewId)._recordingCanvas; else return null; }, _compositeWithParams$2(viewId, params) { var currentClippingCount, _this = this, clipChain = _this._viewClipChains.putIfAbsent$2(0, viewId, new A.HtmlViewEmbedder__compositeWithParams_closure(viewId)), slot = clipChain.__engine$_slot, t1 = slot.style, t2 = params.size; t1.width = A.S(t2._dx) + "px"; t1.height = A.S(t2._dy) + "px"; t1.position = "absolute"; t1 = params.mutators; currentClippingCount = _this._countClips$1(t1); if (currentClippingCount !== clipChain._clipCount) { clipChain.__engine$_root = _this._reconstructClipViewsChain$3(currentClippingCount, slot, clipChain.__engine$_root); clipChain._clipCount = currentClippingCount; } _this._applyMutators$3(t1, slot, viewId); }, _countClips$1(mutators) { var t1, t2, clipCount; for (t1 = mutators._mutators, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), clipCount = 0; t2.moveNext$0();) { t1 = t2.__internal$_current.type; if (t1 === B.MutatorType_0 || t1 === B.MutatorType_1 || t1 === B.MutatorType_2) ++clipCount; } return clipCount; }, _reconstructClipViewsChain$3(numClips, platformView, headClipView) { var t1, indexInFlutterView, head, clipIndex, head0; if (headClipView.parentElement != null) { t1 = $.skiaSceneHost; t1.toString; t1 = J.get$children$x(t1); indexInFlutterView = t1.indexOf$1(t1, headClipView); J.remove$0$ax(headClipView); } else indexInFlutterView = -1; head = platformView; clipIndex = 0; while (true) { if (!(head !== headClipView && clipIndex < numClips)) break; t1 = head.parentElement; t1.toString; ++clipIndex; head = t1; } for (; clipIndex < numClips; head = head0) { head0 = A._ElementFactoryProvider_createElement_tag("flt-clip", null); head0.appendChild(head); ++clipIndex; } J.remove$0$ax(head); if (indexInFlutterView > -1) { t1 = $.skiaSceneHost; t1.toString; J.get$children$x(t1).insert$2(0, indexInFlutterView, head); } return head; }, _cleanUpClipDefs$1(viewId) { var t2, nodesToRemove, t3, t4, _i, node, t1 = this._svgClipDefs; if (t1.containsKey$1(0, viewId)) { t2 = this._svgPathDefs.querySelector("#sk_path_defs"); t2.toString; nodesToRemove = A._setArrayType([], type$.JSArray_Element); t3 = t1.$index(0, viewId); t3.toString; for (t2 = J.get$children$x(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t4 = t2.__interceptors$_current; if (t3.contains$1(0, t4.id)) nodesToRemove.push(t4); } for (t2 = nodesToRemove.length, _i = 0; _i < nodesToRemove.length; nodesToRemove.length === t2 || (0, A.throwConcurrentModificationError)(nodesToRemove), ++_i) { node = nodesToRemove[_i]; t3 = node.parentNode; if (t3 != null) t3.removeChild(node); } t1 = t1.$index(0, viewId); t1.toString; J.clear$0$ax(t1); } }, _applyMutators$3(mutators, embeddedView, viewId) { var t2, t3, t4, t5, head, embeddedOpacity, t6, t7, headTransform0, value, clipView, t8, t9, t10, path, clipId, temp, temp0, scale, inverseScale, _this = this, _s16_ = "transform-origin", _s8_ = "absolute", _s9_ = "transform", _s9_0 = "clip-path", _s13_ = "#sk_path_defs", headTransform = A.Matrix4$identity(), t1 = embeddedView.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s16_), "0 0 0", ""); t1 = embeddedView.style; t1.position = _s8_; _this._cleanUpClipDefs$1(viewId); for (t1 = mutators._mutators, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), t1 = _this._svgClipDefs, t3 = type$.SvgElement, t4 = type$.PathElement, t5 = type$.ClipPathElement, head = embeddedView, embeddedOpacity = 1; t2.moveNext$0();) { t6 = t2.__internal$_current; switch (t6.type.index) { case 3: t6 = t6.matrix; t6.toString; t7 = new Float32Array(16); headTransform0 = new A.Matrix40(t7); headTransform0.setFrom$1(t6); headTransform0.multiply$1(0, headTransform); t6 = head.style; value = A.float64ListToCssTransform(t7); t6.toString; t7 = B.CssStyleDeclaration_methods._browserPropertyName$1(t6, _s9_); t6.setProperty(t7, value, ""); headTransform = headTransform0; break; case 0: case 1: case 2: clipView = head.parentElement; t7 = clipView.style; t7.clip = ""; t7 = clipView.style; t7.toString; t8 = B.CssStyleDeclaration_methods._browserPropertyName$1(t7, _s9_0); t7.setProperty(t8, "", ""); headTransform = new A.Matrix40(new Float32Array(16)); headTransform.Matrix4$identity$0(); t7 = clipView.style; t7.toString; t8 = B.CssStyleDeclaration_methods._browserPropertyName$1(t7, _s9_); t7.setProperty(t8, "", ""); t7 = t6.rect; if (t7 != null) { t6 = clipView.style; t8 = t7.top; t9 = t7.right; t10 = t7.bottom; t7 = t7.left; t6.clip = "rect(" + A.S(t8) + "px, " + A.S(t9) + "px, " + A.S(t10) + "px, " + A.S(t7) + "px)"; } else { t7 = t6.rrect; if (t7 != null) { path = new A.CkPath(B.PathFillType_0); path.ManagedSkiaObject$1(null); t6 = path.rawSkiaObject; if (t6 == null) t6 = path._doResurrect$0(); J.addRRect$2$x(t6, A.toSkRRect(t7), false); _this._ensureSvgPathDefs$0(); t7 = _this._svgPathDefs.querySelector(_s13_); t7.toString; clipId = "svgClip" + ++_this._clipPathCount; t6 = document; temp = t6.createElementNS("http://www.w3.org/2000/svg", "clipPath"); temp = t5._as(t3._as(temp)); temp.id = clipId; temp0 = t6.createElementNS("http://www.w3.org/2000/svg", "path"); temp0 = t4._as(t3._as(temp0)); t6 = path.rawSkiaObject; t6 = J.toSVGString$0$x(t6 == null ? path._doResurrect$0() : t6); t6.toString; temp0.setAttribute("d", t6); temp.appendChild(temp0); t7.appendChild(temp); J.add$1$ax(t1.putIfAbsent$2(0, viewId, new A.HtmlViewEmbedder__applyMutators_closure()), clipId); t7 = clipView.style; t7.toString; t6 = B.CssStyleDeclaration_methods._browserPropertyName$1(t7, _s9_0); t7.setProperty(t6, "url(#" + clipId + ")", ""); } else { t6 = t6.path; if (t6 != null) { _this._ensureSvgPathDefs$0(); t7 = _this._svgPathDefs.querySelector(_s13_); t7.toString; clipId = "svgClip" + ++_this._clipPathCount; t8 = document; temp = t8.createElementNS("http://www.w3.org/2000/svg", "clipPath"); temp = t5._as(t3._as(temp)); temp.id = clipId; temp0 = t8.createElementNS("http://www.w3.org/2000/svg", "path"); temp0 = t4._as(t3._as(temp0)); t8 = t6.rawSkiaObject; t6 = J.toSVGString$0$x(t8 == null ? t6._doResurrect$0() : t8); t6.toString; temp0.setAttribute("d", t6); temp.appendChild(temp0); t7.appendChild(temp); J.add$1$ax(t1.putIfAbsent$2(0, viewId, new A.HtmlViewEmbedder__applyMutators_closure0()), clipId); t7 = clipView.style; t7.toString; t6 = B.CssStyleDeclaration_methods._browserPropertyName$1(t7, _s9_0); t7.setProperty(t6, "url(#" + clipId + ")", ""); } } } t6 = clipView.style; t6.toString; t7 = B.CssStyleDeclaration_methods._browserPropertyName$1(t6, _s16_); t6.setProperty(t7, "0 0 0", ""); t6 = clipView.style; t6.position = _s8_; head = clipView; break; case 4: t6 = t6.alpha; t6.toString; embeddedOpacity *= t6 / 255; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } t1 = embeddedView.style; t2 = B.JSNumber_methods.toString$0(embeddedOpacity); t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "opacity"), t2, ""); scale = $.$get$window()._debugDevicePixelRatio; inverseScale = 1 / (scale == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : scale); t1 = new Float32Array(16); t1[15] = 1; t1[10] = 1; t1[5] = inverseScale; t1[0] = inverseScale; headTransform = new A.Matrix40(t1).multiplied$1(headTransform); t1 = head.style; t2 = A.float64ListToCssTransform(headTransform.__engine$_m4storage); t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s9_), t2, ""); }, _ensureSvgPathDefs$0() { var t1, t2; if (this._svgPathDefs != null) return; t1 = type$.SvgSvgElement._as($.$get$kSvgResourceHeader().cloneNode(false)); this._svgPathDefs = t1; t1.toString; t2 = type$.DefsElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "defs"))); t2.id = "sk_path_defs"; t1.appendChild(t2); t2 = $.skiaSceneHost; t2.toString; t1 = this._svgPathDefs; t1.toString; t2.appendChild(t1); }, submitFrame$0(_) { var t2, diffResult, t3, t4, insertBeforeMap, t5, t6, _didPaintBackupSurface, i, viewId, t7, viewType, t8, t9, t10, t11, backupFrame, frame, unusedViews, elementToInsertBefore, _i, platformViewRoot, overlay, _this = this, _null = null, _s20_ = "flt-canvas-container", t1 = _this._activeCompositionOrder; if (t1.length !== 0) if (_this._compositionOrder.length !== 0) { t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t2 = t2.get$canvasKitMaximumSurfaces(t2) <= 1; } else t2 = true; else t2 = true; if (t2) diffResult = _null; else { t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); t3 = _this._compositionOrder; t4 = A._arrayInstanceType(t3)._eval$1("WhereIterable<1>"); diffResult = A.diffViewList(A.List_List$of(new A.WhereIterable(t1, new A.HtmlViewEmbedder_submitFrame_closure(), t2), true, t2._eval$1("Iterable.E")), A.List_List$of(new A.WhereIterable(t3, new A.HtmlViewEmbedder_submitFrame_closure0(), t4), true, t4._eval$1("Iterable.E"))); } insertBeforeMap = _this._updateOverlays$1(diffResult); t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t2 = t2.get$canvasKitMaximumSurfaces(t2) <= 1; if (!t2) for (t2 = _this._compositionOrder, t3 = _this._overlays, t4 = _this._pictureRecorders, t5 = _this._viewsUsingBackupSurface, t6 = type$.JSArray_Surface, _didPaintBackupSurface = false, i = 0; i < t2.length; ++i) { viewId = t2[i]; t7 = $.$get$platformViewManager(); viewType = t7._viewIdToType.$index(0, viewId); if (viewType != null && t7._invisibleViews.contains$1(0, viewType)) continue; if (t5.contains$1(0, viewId)) { if (!_didPaintBackupSurface) { t7 = $.SurfaceFactory__instance; if (t7 == null) { t7 = $._configuration; t7 = (t7 == null ? $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration) : t7)._js; t7 = t7 == null ? _null : J.get$canvasKitMaximumSurfaces$x(t7); if (t7 == null) t7 = 8; t8 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t9 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t10 = A._setArrayType([], t6); t11 = A._setArrayType([], t6); t7 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t8), new A.Surface(t9), t7, t10, t11); } backupFrame = t7.backupSurface.acquireFrame$1(_this._frameSize); t7 = J.getCanvas$0$x(backupFrame.skiaSurface.surface); t8 = _this._backupPictureRecorder.endRecording$0(); t9 = t8.rawSkiaObject; J.drawPicture$1$x(t7, t9 == null ? t8._doResurrect$0() : t9); _this._backupPictureRecorder = null; backupFrame.submit$0(0); _didPaintBackupSurface = true; } } else { frame = t3.$index(0, viewId).acquireFrame$1(_this._frameSize); t7 = J.getCanvas$0$x(frame.skiaSurface.surface); t8 = t4.$index(0, viewId).endRecording$0(); t9 = t8.rawSkiaObject; J.drawPicture$1$x(t7, t9 == null ? t8._doResurrect$0() : t9); frame.submit$0(0); } } else _didPaintBackupSurface = false; B.JSArray_methods.set$length(_this._pictureRecordersCreatedDuringPreroll, 0); t2 = _this._pictureRecorders; t2.clear$0(0); _this._viewsUsingBackupSurface.clear$0(0); t3 = _this._compositionOrder; if (A.listEquals(t3, t1)) { B.JSArray_methods.set$length(t3, 0); _this._visibleViewCount = 0; return; } unusedViews = A.LinkedHashSet_LinkedHashSet$from(t1, type$.int); B.JSArray_methods.set$length(t1, 0); if (diffResult != null) { t4 = diffResult.viewsToRemove; _this.disposeViews$1(A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1)); B.JSArray_methods.addAll$1(t1, t3); unusedViews.removeAll$1(t3); t1 = diffResult.addToBeginning; if (t1) { t4 = diffResult.viewToInsertBefore; t4.toString; elementToInsertBefore = _this._viewClipChains.$index(0, t4).__engine$_root; } else elementToInsertBefore = _null; for (t4 = diffResult.viewsToAdd, t5 = t4.length, t6 = _this._viewClipChains, t7 = _this._overlays, _i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { viewId = t4[_i]; if (t1) { platformViewRoot = t6.$index(0, viewId).__engine$_root; $.skiaSceneHost.insertBefore(platformViewRoot, elementToInsertBefore); overlay = t7.$index(0, viewId); if (overlay != null) $.skiaSceneHost.insertBefore(overlay.htmlElement, elementToInsertBefore); } else { platformViewRoot = t6.$index(0, viewId).__engine$_root; $.skiaSceneHost.appendChild(platformViewRoot); overlay = t7.$index(0, viewId); if (overlay != null) $.skiaSceneHost.appendChild(overlay.htmlElement); } } if (insertBeforeMap != null) insertBeforeMap.forEach$1(0, new A.HtmlViewEmbedder_submitFrame_closure1(_this)); if (_didPaintBackupSurface) { t1 = $.skiaSceneHost; t1.toString; t1.appendChild(A.SurfaceFactory_instance().backupSurface.htmlElement); } } else { t4 = A.SurfaceFactory_instance(); B.JSArray_methods.forEach$1(t4.__engine$_cache, t4.get$_removeFromDom()); J.remove$0$ax(t4.backupSurface.htmlElement); for (t4 = _this._viewClipChains, t5 = _this._overlays, i = 0; i < t3.length; ++i) { viewId = t3[i]; platformViewRoot = t4.$index(0, viewId).__engine$_root; overlay = t5.$index(0, viewId); $.skiaSceneHost.appendChild(platformViewRoot); if (overlay != null) $.skiaSceneHost.appendChild(overlay.htmlElement); t1.push(viewId); unusedViews.remove$1(0, viewId); } if (_didPaintBackupSurface) { t1 = $.skiaSceneHost; t1.toString; t1.appendChild(A.SurfaceFactory_instance().backupSurface.htmlElement); } } B.JSArray_methods.set$length(t3, 0); _this._visibleViewCount = 0; _this.disposeViews$1(unusedViews); t2.clear$0(0); }, disposeViews$1(viewsToDispose) { var t1, t2, t3, t4, t5, t6, clipChain, t7, t8, _this = this; for (t1 = A._LinkedHashSetIterator$(viewsToDispose, viewsToDispose._collection$_modifications, A._instanceType(viewsToDispose)._precomputed1), t2 = _this._currentCompositionParams, t3 = _this._viewsToRecomposite, t4 = _this._svgClipDefs, t5 = _this._viewClipChains; t1.moveNext$0();) { t6 = t1._collection$_current; clipChain = t5.remove$1(0, t6); if (clipChain != null) { t7 = clipChain.__engine$_root; t8 = t7.parentNode; if (t8 != null) t8.removeChild(t7); } t2.remove$1(0, t6); t3.remove$1(0, t6); _this._cleanUpClipDefs$1(t6); t4.remove$1(0, t6); } }, _releaseOverlay$1(viewId) { var t2, t1 = this._overlays; if (t1.$index(0, viewId) != null) { t2 = t1.$index(0, viewId); t2.toString; A.SurfaceFactory_instance().releaseSurface$1(t2); t1.remove$1(0, viewId); } }, _updateOverlays$1(diffResult) { var t1, t2, t3, viewsNeedingOverlays, numOverlays, i, viewId, t4, t5, t6, t7, overlay, availableOverlays, viewsToDispose, index, index0, t8, t9, t10, t11, overlaysToAssign, lastOriginalIndex, insertBeforeMap, viewType, _this = this, _null = null, _s20_ = "flt-canvas-container"; if (_this._viewsUsingBackupSurface._collection$_length === 0) A.SurfaceFactory_instance().releaseSurface$1(A.SurfaceFactory_instance().backupSurface); t1 = diffResult == null; if (!t1 && diffResult.viewsToAdd.length === 0 && diffResult.viewsToRemove.length === 0) return _null; if (t1) { t1 = A.SurfaceFactory_instance(); t2 = t1._liveSurfaces; B.JSArray_methods.addAll$1(t1.__engine$_cache, t2); B.JSArray_methods.set$length(t2, 0); t2 = _this._overlays; t2.clear$0(0); t1 = _this._compositionOrder; t3 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); viewsNeedingOverlays = A.List_List$of(new A.WhereIterable(t1, new A.HtmlViewEmbedder__updateOverlays_closure(), t3), true, t3._eval$1("Iterable.E")); numOverlays = Math.min(A.SurfaceFactory_instance().maximumSurfaces - 2, viewsNeedingOverlays.length); for (t1 = type$.JSArray_Surface, i = 0; i < numOverlays; ++i) { viewId = viewsNeedingOverlays[i]; t3 = $.SurfaceFactory__instance; if (t3 == null) { t3 = $._configuration; t3 = (t3 == null ? $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration) : t3)._js; t3 = t3 == null ? _null : J.get$canvasKitMaximumSurfaces$x(t3); if (t3 == null) t3 = 8; t4 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t5 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t6 = A._setArrayType([], t1); t7 = A._setArrayType([], t1); t3 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t4), new A.Surface(t5), t3, t6, t7); } overlay = t3.getOverlay$0(); overlay.createOrUpdateSurface$1(_this._frameSize); t2.$indexSet(0, viewId, overlay); } _this._assertOverlaysInitialized$0(); return _null; } else { t1 = diffResult.viewsToRemove; B.JSArray_methods.forEach$1(t1, _this.get$_releaseOverlay()); t2 = A.SurfaceFactory_instance(); availableOverlays = t2.maximumSurfaces - 2 - t2._liveSurfaces.length; if (diffResult.addToBeginning) { t1 = diffResult.viewsToAdd; if (t1.length > availableOverlays) { viewsToDispose = Math.min(A.SurfaceFactory_instance().maximumSurfaces - 2, t1.length - availableOverlays); index = A.SurfaceFactory_instance().maximumSurfaces - 2 - t1.length; for (t2 = _this._overlays, t3 = _this._activeCompositionOrder, t4 = type$.JSArray_Surface; viewsToDispose > 0; index = index0) { index0 = index + 1; t5 = t3[index]; if (t2.$index(0, t5) != null) { t6 = t2.$index(0, t5); t6.toString; t7 = $.SurfaceFactory__instance; if (t7 == null) { t7 = $._configuration; t7 = (t7 == null ? $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration) : t7)._js; t7 = t7 == null ? _null : J.get$canvasKitMaximumSurfaces$x(t7); if (t7 == null) t7 = 8; t8 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t9 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t10 = A._setArrayType([], t4); t11 = A._setArrayType([], t4); t7 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t8), new A.Surface(t9), t7, t10, t11); } t7.releaseSurface$1(t6); t2.remove$1(0, t5); } --viewsToDispose; } } t2 = t1.length; t3 = A.SurfaceFactory_instance(); overlaysToAssign = Math.min(t2, t3.maximumSurfaces - 2 - t3._liveSurfaces.length); for (t2 = _this._overlays, t3 = type$.JSArray_Surface, i = 0; i < overlaysToAssign; ++i) { t4 = t1[i]; t5 = $.SurfaceFactory__instance; if (t5 == null) { t5 = $._configuration; t5 = (t5 == null ? $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration) : t5)._js; t5 = t5 == null ? _null : J.get$canvasKitMaximumSurfaces$x(t5); if (t5 == null) t5 = 8; t6 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t7 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t8 = A._setArrayType([], t3); t9 = A._setArrayType([], t3); t5 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t6), new A.Surface(t7), t5, t8, t9); } overlay = t5.getOverlay$0(); overlay.createOrUpdateSurface$1(_this._frameSize); t2.$indexSet(0, t4, overlay); } _this._assertOverlaysInitialized$0(); return _null; } else { t2 = _this._compositionOrder; overlaysToAssign = Math.min(t2.length, availableOverlays); lastOriginalIndex = _this._activeCompositionOrder.length - t1.length; t1 = type$.int; insertBeforeMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); t1 = _this._overlays; t3 = type$.JSArray_Surface; index = 0; while (true) { if (!(overlaysToAssign > 0 && index < t2.length)) break; viewId = t2[index]; if (!t1.containsKey$1(0, viewId)) { t4 = $.$get$platformViewManager(); viewType = t4._viewIdToType.$index(0, viewId); t4 = !(viewType != null && t4._invisibleViews.contains$1(0, viewType)); } else t4 = false; if (t4) { t4 = $.SurfaceFactory__instance; if (t4 == null) { t4 = $._configuration; t4 = (t4 == null ? $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration) : t4)._js; t4 = t4 == null ? _null : J.get$canvasKitMaximumSurfaces$x(t4); if (t4 == null) t4 = 8; t5 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t6 = A._ElementFactoryProvider_createElement_tag(_s20_, _null); t7 = A._setArrayType([], t3); t8 = A._setArrayType([], t3); t4 = $.SurfaceFactory__instance = new A.SurfaceFactory(new A.Surface(t5), new A.Surface(t6), t4, t7, t8); } overlay = t4.getOverlay$0(); overlay.createOrUpdateSurface$1(_this._frameSize); t1.$indexSet(0, viewId, overlay); --overlaysToAssign; if (index < lastOriginalIndex) { t4 = index + 1; if (t4 < t2.length) insertBeforeMap.$indexSet(0, viewId, t2[t4]); else insertBeforeMap.$indexSet(0, viewId, -1); } } ++index; } _this._assertOverlaysInitialized$0(); return insertBeforeMap; } } }, _assertOverlaysInitialized$0() { } }; A.HtmlViewEmbedder_getOverlayCanvases_closure.prototype = { call$1(r) { var t1 = r._recordingCanvas; t1.toString; return t1; }, $signature: 2105 }; A.HtmlViewEmbedder__compositeWithParams_closure.prototype = { call$0() { var t1 = A.createPlatformViewSlot(this.viewId); return new A.ViewClipChain(t1, t1); }, $signature: 2165 }; A.HtmlViewEmbedder__applyMutators_closure.prototype = { call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 423 }; A.HtmlViewEmbedder__applyMutators_closure0.prototype = { call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 423 }; A.HtmlViewEmbedder_submitFrame_closure.prototype = { call$1(viewId) { return !$.$get$platformViewManager().isInvisible$1(viewId); }, $signature: 178 }; A.HtmlViewEmbedder_submitFrame_closure0.prototype = { call$1(viewId) { return !$.$get$platformViewManager().isInvisible$1(viewId); }, $signature: 178 }; A.HtmlViewEmbedder_submitFrame_closure1.prototype = { call$2(viewId, viewIdToInsertBefore) { var nextSibling, t1 = this.$this, overlay = t1._overlays.$index(0, viewId).htmlElement; if (viewIdToInsertBefore !== -1) { nextSibling = t1._viewClipChains.$index(0, viewIdToInsertBefore).__engine$_root; $.skiaSceneHost.insertBefore(overlay, nextSibling); } else $.skiaSceneHost.appendChild(overlay); }, $signature: 325 }; A.HtmlViewEmbedder__updateOverlays_closure.prototype = { call$1(viewId) { return !$.$get$platformViewManager().isInvisible$1(viewId); }, $signature: 178 }; A.ViewClipChain.prototype = {}; A.EmbeddedViewParams.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof A.EmbeddedViewParams && other.offset.$eq(0, _this.offset) && other.size.$eq(0, _this.size) && other.mutators.$eq(0, _this.mutators); }, get$hashCode(_) { return A.hashValues(this.offset, this.size, this.mutators, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.MutatorType.prototype = { toString$0(_) { return "MutatorType." + this._core$_name; } }; A.Mutator.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.Mutator)) return false; t1 = _this.type; if (t1 !== other.type) return false; switch (t1.index) { case 0: return J.$eq$(_this.rect, other.rect); case 1: return J.$eq$(_this.rrect, other.rrect); case 2: return _this.path == other.path; case 3: return _this.matrix == other.matrix; case 4: return _this.alpha == other.alpha; default: return false; } }, get$hashCode(_) { var _this = this; return A.hashValues(_this.type, _this.rect, _this.rrect, _this.path, _this.matrix, _this.alpha, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.MutatorsStack.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.MutatorsStack && A.listEquals(other._mutators, this._mutators); }, get$hashCode(_) { return A.hashList(this._mutators); }, get$iterator(_) { var t1 = this._mutators, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); t1 = new A.ReversedListIterable(t1, t2); return new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); } }; A.ViewListDiffResult.prototype = {}; A.FontFallbackData.prototype = { ensureFontsSupportText$2(text, fontFamilies) { var isAscii, runesToCheck, t2, t3, rune, codeUnits, fonts, _i, font, typefacesForFamily, codeUnitsSupported, testString, glyphs, t4, t5, missingCodeUnits, _this = this, t1 = text.length, i = 0; while (true) { if (!(i < t1)) { isAscii = true; break; } if (B.JSString_methods._codeUnitAt$1(text, i) >= 160) { isAscii = false; break; } ++i; } if (isAscii) return; runesToCheck = A.LinkedHashSet_LinkedHashSet$_empty(type$.int); for (t1 = new A.RuneIterator(text), t2 = _this.knownCoveredCodeUnits, t3 = _this.codeUnitsWithNoKnownFont; t1.moveNext$0();) { rune = t1._currentCodePoint; if (!(rune < 160 || t2.contains$1(0, rune) || t3.contains$1(0, rune))) runesToCheck.add$1(0, rune); } if (runesToCheck._collection$_length === 0) return; codeUnits = A.List_List$of(runesToCheck, true, runesToCheck.$ti._eval$1("SetMixin.E")); fonts = A._setArrayType([], type$.JSArray_SkFont); for (t1 = fontFamilies.length, _i = 0; _i < fontFamilies.length; fontFamilies.length === t1 || (0, A.throwConcurrentModificationError)(fontFamilies), ++_i) { font = fontFamilies[_i]; typefacesForFamily = $._skiaFontCollection.familyToFontMap.$index(0, font); if (typefacesForFamily != null) B.JSArray_methods.addAll$1(fonts, typefacesForFamily); } t1 = codeUnits.length; codeUnitsSupported = A.List_List$filled(t1, false, false, type$.bool); testString = A.String_String$fromCharCodes(codeUnits, 0, null); for (t2 = fonts.length, _i = 0; _i < fonts.length; fonts.length === t2 || (0, A.throwConcurrentModificationError)(fonts), ++_i) { glyphs = J.getGlyphIDs$1$x(fonts[_i], testString); for (t3 = J.getInterceptor$asx(glyphs), i = 0; i < t3.get$length(glyphs); ++i) { t4 = codeUnitsSupported[i]; if (t3.$index(glyphs, i) === 0) { t5 = codeUnits[i]; if (!(t5 < 32)) t5 = t5 > 127 && t5 < 160; else t5 = true; } else t5 = true; codeUnitsSupported[i] = B.JSBool_methods.$or(t4, t5); } } if (B.JSArray_methods.any$1(codeUnitsSupported, new A.FontFallbackData_ensureFontsSupportText_closure())) { missingCodeUnits = A._setArrayType([], type$.JSArray_int); for (i = 0; i < t1; ++i) if (!codeUnitsSupported[i]) missingCodeUnits.push(codeUnits[i]); _this._codeUnitsToCheckAgainstFallbackFonts.addAll$1(0, missingCodeUnits); if (!_this._scheduledCodeUnitCheck) { _this._scheduledCodeUnitCheck = true; $.$get$EnginePlatformDispatcher__instance().get$rasterizer()._postFrameCallbacks.push(_this.get$_ensureFallbackFonts()); } } }, _ensureFallbackFonts$0() { var t1, codeUnits, codeUnitsSupported, testString, t2, t3, t4, _i, font, fontsForFamily, t5, glyphs, t6, i, t7, t8, keepGoing, _i0, _this = this; _this._scheduledCodeUnitCheck = false; t1 = _this._codeUnitsToCheckAgainstFallbackFonts; codeUnits = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); t1.clear$0(0); t1 = codeUnits.length; codeUnitsSupported = A.List_List$filled(t1, false, false, type$.bool); testString = A.String_String$fromCharCodes(codeUnits, 0, null); for (t2 = _this.globalFontFallbacks, t3 = t2.length, t4 = _this.knownCoveredCodeUnits, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; fontsForFamily = $._skiaFontCollection.familyToFontMap.$index(0, font); if (fontsForFamily == null) { $.$get$printWarning().call$1("A fallback font was registered but we cannot retrieve the typeface for it."); continue; } for (t5 = J.get$iterator$ax(fontsForFamily); t5.moveNext$0();) { glyphs = J.getGlyphIDs$1$x(t5.get$current(t5), testString); for (t6 = J.getInterceptor$asx(glyphs), i = 0; i < t6.get$length(glyphs); ++i) { t7 = t6.$index(glyphs, i) === 0; if (!t7) t4.add$1(0, codeUnits[i]); t8 = codeUnitsSupported[i]; if (t7) { t7 = codeUnits[i]; if (!(t7 < 32)) t7 = t7 > 127 && t7 < 160; else t7 = true; } else t7 = true; codeUnitsSupported[i] = B.JSBool_methods.$or(t8, t7); } } _i0 = 0; while (true) { if (!(_i0 < t1)) { keepGoing = false; break; } if (!codeUnitsSupported[_i0]) { keepGoing = true; break; } ++_i0; } if (!keepGoing) return; } for (i = codeUnits.length - 1; i >= 0; --i) if (codeUnitsSupported[i]) B.JSArray_methods.removeAt$1(codeUnits, i); A.findFontsForMissingCodeunits(codeUnits); }, registerFallbackFont$2(family, bytes) { var t1, t2, t3, countedFamily, _this = this, typeface = J.MakeFreeTypeFaceFromData$1$x(J.get$Typeface$x($.__canvasKit._readField$0()), J.get$buffer$x(bytes)); if (typeface == null) { $.$get$printWarning().call$1("Failed to parse fallback font " + family + " as a font."); return; } t1 = _this.fontFallbackCounts; t1.putIfAbsent$2(0, family, new A.FontFallbackData_registerFallbackFont_closure()); t2 = t1.$index(0, family); t2.toString; t3 = t1.$index(0, family); t3.toString; t1.$indexSet(0, family, t3 + 1); countedFamily = family + " " + A.S(t2); _this.registeredFallbackFonts.push(A.RegisteredFont$(bytes, countedFamily, typeface)); if (family === "Noto Color Emoji Compat") { t1 = _this.globalFontFallbacks; if (B.JSArray_methods.get$first(t1) === "Roboto") B.JSArray_methods.insert$2(t1, 1, countedFamily); else B.JSArray_methods.insert$2(t1, 0, countedFamily); } else _this.globalFontFallbacks.push(countedFamily); } }; A.FontFallbackData_createNotoFontTree_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_CodeunitRange); }, $signature: 573 }; A.FontFallbackData_ensureFontsSupportText_closure.prototype = { call$1(x) { return !x; }, $signature: 2938 }; A.FontFallbackData_registerFallbackFont_closure.prototype = { call$0() { return 0; }, $signature: 160 }; A._makeResolvedNotoFontFromCss_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_CodeunitRange); }, $signature: 573 }; A._registerSymbolsAndEmoji_extractUrlFromCss.prototype = { call$1(css) { var t1, t2, urlStart; for (t1 = A.LineSplitter_split(css), t1 = new A._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) { t2 = t1.get$current(t1); if (J.startsWith$1$s(t2, " src:")) { urlStart = B.JSString_methods.indexOf$1(t2, "url("); if (urlStart === -1) { $.$get$printWarning().call$1("Unable to resolve Noto font URL: " + t2); return null; } return B.JSString_methods.substring$2(t2, urlStart + 4, B.JSString_methods.indexOf$1(t2, ")")); } } $.$get$printWarning().call$1("Unable to determine URL for Noto font"); return null; }, $signature: 2907 }; A.findMinimumFontsForCodeUnits_closure.prototype = { call$1(font) { return B.JSArray_methods.contains$1($.$get$_cjkFonts(), font); }, $signature: 2884 }; A.findMinimumFontsForCodeUnits_closure0.prototype = { call$1(codeUnit) { return this._box_0.bestFont.resolvedFont.tree.root.containsDeep$1(codeUnit); }, $signature: 178 }; A.NotoFont.prototype = { ensureResolved$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, $async$temp1; var $async$ensureResolved$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.resolvedFont == null ? 2 : 3; break; case 2: // then t1 = $async$self._decodingCompleter; $async$goto = t1 == null ? 4 : 6; break; case 4: // then $async$self._decodingCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t1 = $.$get$notoDownloadQueue().downloader; t2 = $async$self.name; $async$temp1 = A; $async$goto = 7; return A._asyncAwait(t1.downloadAsString$1("https://fonts.googleapis.com/css2?family=" + A.stringReplaceAllUnchecked(t2, " ", "+")), $async$ensureResolved$0); case 7: // returning from await. $async$self.resolvedFont = $async$temp1._makeResolvedNotoFontFromCss($async$result, t2); $async$self._decodingCompleter.complete$0(0); // goto join $async$goto = 5; break; case 6: // else $async$goto = 8; return A._asyncAwait(t1.future, $async$ensureResolved$0); case 8: // returning from await. case 5: // join case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$ensureResolved$0, $async$completer); }, get$name(receiver) { return this.name; } }; A.CodeunitRange.prototype = { $eq(_, other) { if (other == null) return false; if (!(other instanceof A.CodeunitRange)) return false; return other.start === this.start && other.end === this.end; }, get$hashCode(_) { return A.hashValues(this.start, this.end, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "[" + this.start + ", " + this.end + "]"; } }; A._ResolvedNotoFont.prototype = { get$name(receiver) { return this.name; } }; A._ResolvedNotoSubset.prototype = { toString$0(_) { return "_ResolvedNotoSubset(" + this.family + ", " + this.url + ")"; } }; A.FallbackFontDownloadQueue.prototype = { add$1(_, subset) { var t1, t2, _this = this; if (_this.downloadedSubsets.contains$1(0, subset) || _this.pendingSubsets.containsKey$1(0, subset.url)) return; t1 = _this.pendingSubsets; t2 = t1._length; t1.$indexSet(0, subset.url, subset); if (t2 === 0) A.Timer_Timer(B.Duration_0, _this.get$startDownloads()); }, startDownloads$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, t2, t3, t4, downloadOrder, _i, url, t1, downloads, downloadedData; var $async$startDownloads$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; downloads = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_void); downloadedData = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Uint8List); for (t1 = $async$self.pendingSubsets, t2 = t1.get$values(t1), t3 = A._instanceType(t2), t3 = new A.MappedIterator(J.get$iterator$ax(t2.__internal$_iterable), t2._f, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MappedIterator<1,2>")), t2 = type$.void; t3.moveNext$0();) { t4 = t3.__internal$_current; downloads.$indexSet(0, t4.url, A.Future_Future(new A.FallbackFontDownloadQueue_startDownloads_closure($async$self, t4, downloadedData), t2)); } $async$goto = 2; return A._asyncAwait(A.Future_wait(downloads.get$values(downloads), t2), $async$startDownloads$0); case 2: // returning from await. t2 = downloadedData.$ti._eval$1("LinkedHashMapKeyIterable<1>"); t2 = A.List_List$of(new A.LinkedHashMapKeyIterable(downloadedData, t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$0(t2); t3 = A._arrayInstanceType(t2)._eval$1("ReversedListIterable<1>"); downloadOrder = A.List_List$of(new A.ReversedListIterable(t2, t3), true, t3._eval$1("ListIterable.E")); t2 = downloadOrder.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } url = downloadOrder[_i]; t3 = t1.remove$1(0, url); t3.toString; t4 = downloadedData.$index(0, url); t4.toString; $.$get$FontFallbackData__instance().registerFallbackFont$2(t3.family, t4); $async$goto = t1._length === 0 ? 6 : 7; break; case 6: // then t3 = $._skiaFontCollection.ensureFontsLoaded$0(); $async$self._fontsLoading = t3; $async$handler = 8; $async$goto = 11; return A._asyncAwait(t3, $async$startDownloads$0); case 11: // returning from await. $async$next.push(10); // goto finally $async$goto = 9; break; case 8: // uncaught $async$next = [1]; case 9: // finally $async$handler = 1; $async$self._fontsLoading = null; // goto the next finally handler $async$goto = $async$next.pop(); break; case 10: // after finally A.sendFontChangeMessage(); case 7: // join case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$goto = t1._length !== 0 ? 12 : 13; break; case 12: // then $async$goto = 14; return A._asyncAwait($async$self.startDownloads$0(), $async$startDownloads$0); case 14: // returning from await. case 13: // join // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$startDownloads$0, $async$completer); } }; A.FallbackFontDownloadQueue_startDownloads_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, t1, exception, t2, buffer, $async$exception; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start buffer = null; $async$handler = 4; t1 = $async$self.subset; $async$goto = 7; return A._asyncAwait($async$self.$this.downloader.downloadAsBytes$2$debugDescription(t1.url, t1.family), $async$call$0); case 7: // returning from await. buffer = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); t1 = $async$self.subset; t2 = t1.url; $async$self.$this.pendingSubsets.remove$1(0, t2); $.$get$printWarning().call$1("Failed to load font " + t1.family + " at " + t2); $.$get$printWarning().call$1(J.toString$0$(e)); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = $async$self.subset; $async$self.$this.downloadedSubsets.add$1(0, t1); $async$self.downloadedData.$indexSet(0, t1.url, J.asUint8List$0$x(buffer)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 100 }; A.NotoDownloader.prototype = { downloadAsBytes$2$debugDescription(url, debugDescription) { var result = A.httpFetch(url).then$1$1(0, new A.NotoDownloader_downloadAsBytes_closure(), type$.ByteBuffer); return result; }, downloadAsString$1(url) { var result = A.httpFetch(url).then$1$1(0, new A.NotoDownloader_downloadAsString_closure(), type$.String); return result; } }; A.NotoDownloader_downloadAsBytes_closure.prototype = { call$1(fetchResult) { return A.promiseToFuture(fetchResult.arrayBuffer(), type$.dynamic).then$1$1(0, new A.NotoDownloader_downloadAsBytes__closure(), type$.ByteBuffer); }, $signature: 555 }; A.NotoDownloader_downloadAsBytes__closure.prototype = { call$1(x) { return type$.ByteBuffer._as(x); }, $signature: 562 }; A.NotoDownloader_downloadAsString_closure.prototype = { call$1(response) { var t1 = type$.String; return A.promiseToFuture(response.text(), t1).then$1$1(0, new A.NotoDownloader_downloadAsString__closure(), t1); }, $signature: 2681 }; A.NotoDownloader_downloadAsString__closure.prototype = { call$1(x) { return A._asStringS(x); }, $signature: 566 }; A.SkiaFontCollection.prototype = { ensureFontsLoaded$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3, _i, font, t4, t5; var $async$ensureFontsLoaded$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self._loadFonts$0(), $async$ensureFontsLoaded$0); case 2: // returning from await. t1 = $async$self.fontProvider; if (t1 != null) { J.delete$0$x(t1); $async$self.fontProvider = null; } $async$self.fontProvider = J.Make$0$x(J.get$TypefaceFontProvider$x($.__canvasKit._readField$0())); t1 = $async$self.familyToFontMap; t1.clear$0(0); for (t2 = $async$self._downloadedFonts, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; t4 = $async$self.fontProvider; t4.toString; t5 = font.family; J.registerFont$2$x(t4, font.bytes, t5); J.add$1$ax(t1.putIfAbsent$2(0, t5, new A.SkiaFontCollection_ensureFontsLoaded_closure()), new self.window.flutterCanvasKit.Font(font.typeface)); } for (t2 = $.$get$FontFallbackData__instance().registeredFallbackFonts, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; t4 = $async$self.fontProvider; t4.toString; t5 = font.family; J.registerFont$2$x(t4, font.bytes, t5); J.add$1$ax(t1.putIfAbsent$2(0, t5, new A.SkiaFontCollection_ensureFontsLoaded_closure0()), new self.window.flutterCanvasKit.Font(font.typeface)); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$ensureFontsLoaded$0, $async$completer); }, _loadFonts$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t2, t3, t4, t1, $async$temp1; var $async$_loadFonts$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._pendingFonts; if (t1.length === 0) { // goto return $async$goto = 1; break; } $async$temp1 = J; $async$goto = 3; return A._asyncAwait(A.Future_wait(t1, type$.nullable_RegisteredFont), $async$_loadFonts$0); case 3: // returning from await. t2 = $async$temp1.get$iterator$ax($async$result), t3 = $async$self._downloadedFonts; case 4: // for condition if (!t2.moveNext$0()) { // goto after for $async$goto = 5; break; } t4 = t2.get$current(t2); if (t4 != null) t3.push(t4); // goto for condition $async$goto = 4; break; case 5: // after for B.JSArray_methods.set$length(t1, 0); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_loadFonts$0, $async$completer); }, registerFonts$1(assetManager) { return this.registerFonts$body$SkiaFontCollection(assetManager); }, registerFonts$body$SkiaFontCollection(assetManager) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, t1, fontManifest, t2, t3, t4, t5, family, byteData, $async$exception; var $async$registerFonts$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start byteData = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait(assetManager.load$1(0, "FontManifest.json"), $async$registerFonts$1); case 7: // returning from await. byteData = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (t1 instanceof A.AssetManagerException) { e = t1; if (e.httpStatus === 404) { $.$get$printWarning().call$1("Font manifest does not exist at `" + A.S(e.url) + "` \u2013 ignoring."); // goto return $async$goto = 1; break; } else throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally fontManifest = type$.nullable_List_dynamic._as(B.C_JsonCodec.decode$1(0, B.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(byteData))))); if (fontManifest == null) throw A.wrapException(A.AssertionError$(string$.There_w)); for (t1 = type$.Map_String_dynamic, t2 = J.cast$1$0$ax(fontManifest, t1), t2 = t2.get$iterator(t2), t3 = type$.List_dynamic; t2.moveNext$0();) { t4 = t2.get$current(t2); t5 = J.getInterceptor$asx(t4); family = A._asStringS(t5.$index(t4, "family")); for (t4 = J.get$iterator$ax(t3._as(t5.$index(t4, "fonts"))); t4.moveNext$0();) $async$self._registerFont$2(assetManager.getAssetUrl$1(A._asStringS(J.$index$asx(t1._as(t4.get$current(t4)), "asset"))), family); } if (!$async$self._registeredFontFamilies.contains$1(0, "Roboto")) $async$self._registerFont$2("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", "Roboto"); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$registerFonts$1, $async$completer); }, _registerFont$2(url, family) { this._registeredFontFamilies.add$1(0, family); this._pendingFonts.push(new A.SkiaFontCollection__registerFont__downloadFont(this, url, family).call$0()); }, _getArrayBuffer$1(fetchResult) { return A.promiseToFuture(fetchResult.arrayBuffer(), type$.dynamic).then$1$1(0, new A.SkiaFontCollection__getArrayBuffer_closure(), type$.ByteBuffer); } }; A.SkiaFontCollection_ensureFontsLoaded_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_SkFont); }, $signature: 571 }; A.SkiaFontCollection_ensureFontsLoaded_closure0.prototype = { call$0() { return A._setArrayType([], type$.JSArray_SkFont); }, $signature: 571 }; A.SkiaFontCollection__registerFont__downloadFont.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_RegisteredFont), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, bytes, typeface, t1, t2, buffer, $async$exception; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start buffer = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait(A.httpFetch($async$self.url).then$1$1(0, $async$self.$this.get$_getArrayBuffer(), type$.ByteBuffer), $async$call$0); case 7: // returning from await. buffer = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); $.$get$printWarning().call$1("Failed to load font " + A.S($async$self.family) + " at " + A.S($async$self.url)); $.$get$printWarning().call$1(J.toString$0$(e)); $async$returnValue = null; // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally bytes = J.asUint8List$0$x(buffer); typeface = J.MakeFreeTypeFaceFromData$1$x(J.get$Typeface$x($.__canvasKit._readField$0()), J.get$buffer$x(bytes)); t1 = $async$self.family; if (typeface != null) { $async$returnValue = A.RegisteredFont$(bytes, t1, typeface); // goto return $async$goto = 1; break; } else { t2 = A.S($async$self.url); $.$get$printWarning().call$1("Failed to load font " + A.S(t1) + " at " + t2); $.$get$printWarning().call$1("Verify that " + t2 + " contains a valid font."); $async$returnValue = null; // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 2624 }; A.SkiaFontCollection__getArrayBuffer_closure.prototype = { call$1(x) { return type$.ByteBuffer._as(x); }, $signature: 562 }; A.RegisteredFont.prototype = {}; A.skiaDecodeImageFromPixels_closure.prototype = { call$0() { var skImage, _this = this, t1 = $.__canvasKit._readField$0(), t2 = _this.width, t3 = _this.format === B.PixelFormat_0 ? J.get$RGBA_8888$x(J.get$ColorType$x($.__canvasKit._readField$0())) : J.get$BGRA_8888$x(J.get$ColorType$x($.__canvasKit._readField$0())); t3 = {width: t2, height: _this.height, colorType: t3, alphaType: J.get$Premul$x(J.get$AlphaType$x($.__canvasKit._readField$0())), colorSpace: self.window.flutterCanvasKit.ColorSpace.SRGB}; skImage = J.MakeImage$3$x(t1, t3, _this.pixels, 4 * t2); if (skImage == null) { window; if (typeof console != "undefined") window.console.warn("Failed to create image from pixels."); return; } return _this.callback.call$1(A.CkImage$(skImage, null)); }, $signature: 0 }; A.ImageCodecException.prototype = { toString$0(_) { return "ImageCodecException: " + this.__engine$_message; }, $isException: 1 }; A.httpRequestFactory_closure.prototype = { call$0() { return new XMLHttpRequest(); }, $signature: 2444 }; A.fetchImage_closure.prototype = { call$1($event) { var t2, t1 = $event.loaded; t1.toString; t2 = $event.total; t2.toString; this.chunkCallback.call$2(t1, t2); }, $signature: 177 }; A.fetchImage_closure0.prototype = { call$1($event) { this.completer.completeError$1(new A.ImageCodecException(string$.Failed + this.url + "\nTrying to load an image from another domain? Find answers at:\nhttps://flutter.dev/docs/development/platform-integration/web-images")); }, $signature: 177 }; A.fetchImage_closure1.prototype = { call$1($event) { var accepted, unknownRedirect, _this = this, t1 = _this.request, t2 = t1.status; t2.toString; accepted = t2 >= 200 && t2 < 300; unknownRedirect = t2 > 307 && t2 < 400; if (!(accepted || t2 === 0 || t2 === 304 || unknownRedirect)) { _this.completer.completeError$1(new A.ImageCodecException(string$.Failed + _this.url + "\nServer response code: " + t2)); return; } _this.completer.complete$1(0, J.asUint8List$2$x(type$.ByteBuffer._as(A._convertNativeToDart_XHR_Response(t1.response)), 0, null)); }, $signature: 177 }; A.CkImage.prototype = { CkImage$2$videoFrame(skImage, videoFrame) { var t1, t2, t3, originalBytes, _this = this; if ($.$get$browserSupportsFinalizationRegistry()) { t1 = new A.SkiaObjectBox(A.LinkedHashSet_LinkedHashSet$_empty(type$.CkImage), null, type$.SkiaObjectBox_CkImage_SkImage); t1.__engine$_initialize$2(_this, skImage); t2 = $.$get$Collector__instance(); t3 = t1._skDeletable; t3.toString; t2.register$2(0, t1, t3); A._lateWriteOnceCheck(_this.__CkImage_box, "box"); _this.__CkImage_box = t1; } else { t1 = J.get$Premul$x(J.get$AlphaType$x($.__canvasKit._readField$0())); t2 = J.get$RGBA_8888$x(J.get$ColorType$x($.__canvasKit._readField$0())); originalBytes = A.CkImage__encodeImage(t1, self.window.flutterCanvasKit.ColorSpace.SRGB, t2, B.ImageByteFormat_0, skImage); if (originalBytes == null) { $.$get$printWarning().call$1("Unable to encode image to bytes. We will not be able to resurrect it once it has been garbage collected."); return; } t1 = J.getInterceptor$x(skImage); t1 = new A.SkiaObjectBox(A.LinkedHashSet_LinkedHashSet$_empty(type$.CkImage), new A.CkImage_closure(t1.width$0(skImage), t1.height$0(skImage), originalBytes), type$.SkiaObjectBox_CkImage_SkImage); t1.__engine$_initialize$2(_this, skImage); A.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, t1); A._lateWriteOnceCheck(_this.__CkImage_box, "box"); _this.__CkImage_box = t1; } }, dispose$0(_) { var t1, t2; this._disposed = true; t1 = A._lateReadCheck(this.__CkImage_box, "box"); if (--t1._refCount === 0) { t2 = t1._skDeletable; if (t2 != null) if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().collect$1(t2); else { t1.delete$0(0); t1.didDelete$0(); } t1._resurrector = t1._skDeletable = t1.rawSkiaObject = null; t1._isDeletedPermanently = true; } }, clone$0(_) { var t1 = A._lateReadCheck(this.__CkImage_box, "box"); ++A._lateReadCheck(t1, "box")._refCount; return new A.CkImage(t1, null); }, isCloneOf$1(other) { return other instanceof A.CkImage && J.isAliasOf$1$x(A._lateReadCheck(other.__CkImage_box, "box").get$skiaObject(), A._lateReadCheck(this.__CkImage_box, "box").get$skiaObject()); }, get$width(_) { return J.width$0$x(A._lateReadCheck(this.__CkImage_box, "box").get$skiaObject()); }, get$height(_) { return J.height$0$x(A._lateReadCheck(this.__CkImage_box, "box").get$skiaObject()); }, toString$0(_) { return "[" + A.S(J.width$0$x(A._lateReadCheck(this.__CkImage_box, "box").get$skiaObject())) + "\xd7" + A.S(J.height$0$x(A._lateReadCheck(this.__CkImage_box, "box").get$skiaObject())) + "]"; }, $isImage1: 1 }; A.CkImage_closure.prototype = { call$0() { var t1 = $.__canvasKit._readField$0(), t2 = J.get$Premul$x(J.get$AlphaType$x($.__canvasKit._readField$0())), t3 = this.originalWidth, skImage = J.MakeImage$3$x(t1, {width: t3, height: this.originalHeight, colorType: J.get$RGBA_8888$x(J.get$ColorType$x($.__canvasKit._readField$0())), alphaType: t2, colorSpace: self.window.flutterCanvasKit.ColorSpace.SRGB}, J.asUint8List$0$x(J.get$buffer$x(this.originalBytes)), 4 * t3); if (skImage == null) throw A.wrapException(A.ImageCodecException$("Failed to resurrect image from pixels.")); return skImage; }, $signature: 2161 }; A.AnimatedImageFrameInfo.prototype = { get$duration(_) { return this.__engine$_duration; }, get$image(_) { return this.__engine$_image; }, $isFrameInfo: 1 }; A.CkImageFilter.prototype = { createDefault$0() { return this._initSkiaObject$0(); }, resurrect$0() { return this._initSkiaObject$0(); }, delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, $isCkManagedSkImageFilterConvertible: 1 }; A._CkMatrixImageFilter.prototype = { _initSkiaObject$0() { var t1 = J.get$ImageFilter$x($.__canvasKit._readField$0()), t2 = A.toSkMatrixFromFloat64(this.matrix), t3 = $.$get$_filterOptions().$index(0, this.filterQuality); t3.toString; return J.MakeMatrixTransform$3$x(t1, t2, t3, null); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._CkMatrixImageFilter && other.filterQuality == this.filterQuality && A.listEquals(other.matrix, this.matrix); }, get$hashCode(_) { return A.hashValues(this.filterQuality, A.hashList(this.matrix), B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "ImageFilter.matrix(" + A.S(this.matrix) + ", " + A.S(this.filterQuality) + ")"; } }; A.CkAnimatedImage.prototype = { createDefault$0() { var t1, i, _this = this, animatedImage = J.MakeAnimatedImageFromEncoded$1$x($.__canvasKit._readField$0(), _this._bytes); if (animatedImage == null) throw A.wrapException(A.ImageCodecException$("Failed to decode image data.\nImage source: " + _this.src)); t1 = J.getInterceptor$x(animatedImage); _this._frameCount = t1.getFrameCount$0(animatedImage); _this._repetitionCount = t1.getRepetitionCount$0(animatedImage); for (i = 0; i < _this._currentFrameIndex; ++i) t1.decodeNextFrame$0(animatedImage); return animatedImage; }, resurrect$0() { return this.createDefault$0(); }, get$isResurrectionExpensive() { return true; }, delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, dispose$0(_) { this._disposed = true; this.delete$0(0); }, get$frameCount(_) { return this._frameCount; }, get$repetitionCount(_) { return this._repetitionCount; }, getNextFrame$0() { var _this = this, animatedImage = _this.get$skiaObject(), t1 = J.getInterceptor$x(animatedImage), t2 = A.Duration$(0, 0, 0, t1.currentFrameDuration$0(animatedImage), 0, 0), t3 = A.CkImage$(t1.makeImageAtCurrentFrame$0(animatedImage), null); t1.decodeNextFrame$0(animatedImage); _this._currentFrameIndex = B.JSInt_methods.$mod(_this._currentFrameIndex + 1, _this._frameCount); return A.Future_Future$value(new A.AnimatedImageFrameInfo(t2, t3), type$.FrameInfo); }, $isCodec: 1 }; A.CkBrowserImageDecoder.prototype = { get$frameCount(_) { return A._lateReadCheck(this.__CkBrowserImageDecoder_frameCount, "frameCount"); }, get$repetitionCount(_) { return A._lateReadCheck(this.__CkBrowserImageDecoder_repetitionCount, "repetitionCount"); }, dispose$0(_) { var t1; this._isDisposed = true; t1 = this._cachedWebDecoder; if (t1 != null) J.close$0$x(t1); this._cachedWebDecoder = null; }, _getOrCreateWebDecoder$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.ImageDecoder), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, webDecoder, error, t1, t2, exception, $async$exception; var $async$_getOrCreateWebDecoder$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start if ($async$self._cachedWebDecoder != null) { $async$self._cacheExpirationClock.set$datetime(new A.DateTime(Date.now(), false).add$1(0, $._kWebDecoderExpireDuration)); t1 = $async$self._cachedWebDecoder; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; } t1 = $async$self._cacheExpirationClock; t1.callback = null; $async$handler = 4; webDecoder = new self.window.ImageDecoder({type: $async$self.contentType, data: $async$self.data, premultiplyAlpha: "premultiply", desiredWidth: $async$self.targetWidth, desiredHeight: $async$self.targetHeight, colorSpaceConversion: "default", preferAnimation: true}); t2 = type$.void; $async$goto = 7; return A._asyncAwait(A.promiseToFuture(J.get$ready$x(webDecoder.tracks), t2), $async$_getOrCreateWebDecoder$0); case 7: // returning from await. $async$goto = 8; return A._asyncAwait(A.promiseToFuture(webDecoder.completed, t2), $async$_getOrCreateWebDecoder$0); case 8: // returning from await. t2 = J.get$selectedTrack$x(webDecoder.tracks); t2.toString; $async$self.__CkBrowserImageDecoder_frameCount = J.get$frameCount$x(t2); t2 = J.get$selectedTrack$x(webDecoder.tracks); t2.toString; $async$self.__CkBrowserImageDecoder_repetitionCount = J.get$repetitionCount$x(t2); $async$self._cachedWebDecoder = webDecoder; t1.callback = new A.CkBrowserImageDecoder__getOrCreateWebDecoder_closure($async$self); t1.set$datetime(new A.DateTime(Date.now(), false).add$1(0, $._kWebDecoderExpireDuration)); $async$returnValue = webDecoder; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; error = A.unwrapException($async$exception); if (type$.DomException._is(error)) if (J.get$name$x(error) === "NotSupportedError") throw A.wrapException(A.ImageCodecException$("Image file format (" + $async$self.contentType + ") is not supported by this browser's ImageDecoder API.\nImage source: " + $async$self.debugSource)); throw A.wrapException(A.ImageCodecException$("Failed to decode image using the browser's ImageDecoder API.\nImage source: " + $async$self.debugSource + "\nOriginal browser error: " + A.S(error))); // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_getOrCreateWebDecoder$0, $async$completer); }, getNextFrame$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.FrameInfo), $async$returnValue, $async$self = this, t1, t2, t3, t4, t5, skImage, duration, frame, $async$temp1, $async$temp2, $async$temp3; var $async$getNextFrame$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = J; $async$temp2 = A; $async$temp3 = J; $async$goto = 4; return A._asyncAwait($async$self._getOrCreateWebDecoder$0(), $async$getNextFrame$0); case 4: // returning from await. $async$goto = 3; return A._asyncAwait($async$temp2.promiseToFuture($async$temp3.decode$1$x($async$result, {frameIndex: $async$self._nextFrameIndex}), type$.DecodeResult), $async$getNextFrame$0); case 3: // returning from await. frame = $async$temp1.get$image$x($async$result); $async$self._nextFrameIndex = B.JSInt_methods.$mod($async$self._nextFrameIndex + 1, A._lateReadCheck($async$self.__CkBrowserImageDecoder_frameCount, "frameCount")); t1 = $.__canvasKit._readField$0(); t2 = J.get$Premul$x(J.get$AlphaType$x($.__canvasKit._readField$0())); t3 = J.get$RGBA_8888$x(J.get$ColorType$x($.__canvasKit._readField$0())); t4 = self.window.flutterCanvasKit.ColorSpace.SRGB; t5 = J.getInterceptor$x(frame); skImage = J.MakeLazyImageFromTextureSource$2$x(t1, frame, {width: t5.get$displayWidth(frame), height: t5.get$displayHeight(frame), colorType: t3, alphaType: t2, colorSpace: t4}); t5 = t5.get$duration(frame); duration = A.Duration$(0, 0, t5 == null ? 0 : t5, 0, 0, 0); if (skImage == null) throw A.wrapException(A.ImageCodecException$("Failed to create image from pixel data decoded using the browser's ImageDecoder.")); $async$returnValue = A.Future_Future$value(new A.AnimatedImageFrameInfo(duration, A.CkImage$(skImage, frame)), type$.FrameInfo); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getNextFrame$0, $async$completer); }, $isCodec: 1 }; A.CkBrowserImageDecoder__cacheExpirationClock_closure.prototype = { call$0() { return new A.DateTime(Date.now(), false); }, $signature: 319 }; A.CkBrowserImageDecoder__getOrCreateWebDecoder_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._cachedWebDecoder; if (t2 != null) J.close$0$x(t2); t1._cachedWebDecoder = null; t1._cacheExpirationClock.callback = null; }, $signature: 0 }; A.ImageFileFormat.prototype = {}; A.downloadCanvasKit_closure.prototype = { call$2(file, unusedBase) { var t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t1 = t1.get$canvasKitBaseUrl(t1) + "profiling/"; return B.JSString_methods.$add(t1, file); }, $signature: 596 }; A.downloadCanvasKit_closure0.prototype = { call$1(ck) { this.canvasKitInitCompleter.complete$1(0, ck); }, $signature: 1233 }; A._downloadCanvasKitJs_closure.prototype = { call$1(_) { J.cancel$0$z(this.loadSubscription._readLocal$0()); this.canvasKitLoadCompleter.complete$0(0); }, $signature: 69 }; A.IntervalTree.prototype = {}; A.IntervalTree_IntervalTree$createFromRanges_closure.prototype = { call$2(key, rangeList) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(rangeList), t2 = this.intervals, t3 = this.T._eval$1("IntervalTreeNode<0>"); t1.moveNext$0();) { t4 = t1.get$current(t1); t5 = t4.start; t4 = t4.end; t2.push(new A.IntervalTreeNode(key, t5, t4, t4, t3)); } }, $signature() { return this.T._eval$1("~(0,List)"); } }; A.IntervalTree_IntervalTree$createFromRanges_closure0.prototype = { call$2(a, b) { return a.low - b.low; }, $signature() { return this.T._eval$1("int(IntervalTreeNode<0>,IntervalTreeNode<0>)"); } }; A.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree.prototype = { call$1(nodes) { var mid, root, t1 = nodes.length; if (t1 === 0) return null; if (t1 === 1) return B.JSArray_methods.get$single(nodes); mid = t1 / 2 | 0; root = nodes[mid]; root.left = this.call$1(B.JSArray_methods.sublist$2(nodes, 0, mid)); root.right = this.call$1(B.JSArray_methods.sublist$1(nodes, mid + 1)); return root; }, $signature() { return this.T._eval$1("IntervalTreeNode<0>?(List>)"); } }; A.IntervalTree_IntervalTree$createFromRanges__computeHigh.prototype = { call$1(root) { var t3, _this = this, t1 = root.left, t2 = t1 == null; if (t2 && root.right == null) root.computedHigh = root.high; else if (t2) { t1 = root.right; t1.toString; _this.call$1(t1); root.computedHigh = Math.max(root.high, root.right.computedHigh); } else { t2 = root.right; t3 = root.high; if (t2 == null) { _this.call$1(t1); root.computedHigh = Math.max(t3, root.left.computedHigh); } else { _this.call$1(t2); t1 = root.left; t1.toString; _this.call$1(t1); root.computedHigh = Math.max(t3, Math.max(root.left.computedHigh, root.right.computedHigh)); } } }, $signature() { return this.T._eval$1("~(IntervalTreeNode<0>)"); } }; A.IntervalTreeNode.prototype = { containsShallow$1(x) { return this.low <= x && x <= this.high; }, containsDeep$1(x) { var t1, _this = this; if (x > _this.computedHigh) return false; if (_this.containsShallow$1(x)) return true; t1 = _this.left; if ((t1 == null ? null : t1.containsDeep$1(x)) === true) return true; if (x < _this.low) return false; t1 = _this.right; return (t1 == null ? null : t1.containsDeep$1(x)) === true; }, searchForPoint$2(x, result) { var t1, _this = this; if (x > _this.computedHigh) return; t1 = _this.left; if (t1 != null) t1.searchForPoint$2(x, result); if (_this.containsShallow$1(x)) result.push(_this.value); if (x < _this.low) return; t1 = _this.right; if (t1 != null) t1.searchForPoint$2(x, result); }, get$value(receiver) { return this.value; } }; A.Layer.prototype = { dispose$0(_) { } }; A.PrerollContext.prototype = { get$cullRect() { var t1, t2, cullRect, clipRect, t3; for (t1 = this.mutatorsStack._mutators, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), cullRect = B.Rect_aha; t2.moveNext$0();) { t1 = t2.__internal$_current; switch (t1.type.index) { case 0: t1 = t1.rect; t1.toString; clipRect = t1; break; case 1: t1 = t1.rrect; clipRect = new A.Rect(t1.left, t1.top, t1.right, t1.bottom); break; case 2: t1 = t1.path; t3 = t1.rawSkiaObject; t1 = J.getBounds$0$x(t3 == null ? t1._doResurrect$0() : t3); t3 = J.getInterceptor$asx(t1); clipRect = new A.Rect(t3.$index(t1, 0), t3.$index(t1, 1), t3.$index(t1, 2), t3.$index(t1, 3)); break; default: continue; } cullRect = cullRect.intersect$1(clipRect); } return cullRect; } }; A.PaintContext.prototype = {}; A.ContainerLayer.prototype = { preroll$2(prerollContext, matrix) { this.paintBounds = this.prerollChildren$2(prerollContext, matrix); }, prerollChildren$2(context, childMatrix) { var t1, t2, childPaintBounds, _i, layer, t3; for (t1 = this._layers, t2 = t1.length, childPaintBounds = B.Rect_0_0_0_0, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { layer = t1[_i]; layer.preroll$2(context, childMatrix); if (childPaintBounds.left >= childPaintBounds.right || childPaintBounds.top >= childPaintBounds.bottom) childPaintBounds = layer.paintBounds; else { t3 = layer.paintBounds; if (!(t3.left >= t3.right || t3.top >= t3.bottom)) childPaintBounds = childPaintBounds.expandToInclude$1(t3); } } return childPaintBounds; }, paintChildren$1(context) { var t1, t2, _i, layer, t3; for (t1 = this._layers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { layer = t1[_i]; t3 = layer.paintBounds; if (!(t3.left >= t3.right || t3.top >= t3.bottom)) layer.paint$1(context); } } }; A.RootLayer.prototype = { paint$1(paintContext) { this.paintChildren$1(paintContext); } }; A.BackdropFilterEngineLayer.prototype = { preroll$2(prerollContext, matrix) { this.paintBounds = this.prerollChildren$2(prerollContext, matrix).expandToInclude$1(prerollContext.get$cullRect()); }, paint$1(paintContext) { var t1, _this = this, paint = A.CkPaint$(); paint.set$blendMode(_this._blendMode); t1 = paintContext.internalNodesCanvas; t1.saveLayerWithFilter$3(_this.paintBounds, _this.__engine$_filter, paint); _this.paintChildren$1(paintContext); t1.restore$0(0); }, $isBackdropFilterEngineLayer0: 1 }; A.ClipPathEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var childPaintBounds, clipBounds, _null = null, t1 = this.__engine$_clipPath, t2 = prerollContext.mutatorsStack._mutators; t2.push(new A.Mutator(B.MutatorType_2, _null, _null, t1, _null, _null)); childPaintBounds = this.prerollChildren$2(prerollContext, matrix); clipBounds = A.fromSkRect(J.getBounds$0$x(t1.get$skiaObject())); if (childPaintBounds.overlaps$1(clipBounds)) this.paintBounds = childPaintBounds.intersect$1(clipBounds); t2.pop(); }, paint$1(paintContext) { var t2, _this = this, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_clipBehavior; t1.clipPath$2(0, _this.__engine$_clipPath, t2 !== B.Clip_1); t2 = t2 === B.Clip_3; if (t2) t1.saveLayer$2(0, _this.paintBounds, null); _this.paintChildren$1(paintContext); if (t2) t1.restore$0(0); t1.restore$0(0); }, $isClipPathEngineLayer0: 1 }; A.ClipRectEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var childPaintBounds, _null = null, t1 = this.__engine$_clipRect, t2 = prerollContext.mutatorsStack._mutators; t2.push(new A.Mutator(B.MutatorType_0, t1, _null, _null, _null, _null)); childPaintBounds = this.prerollChildren$2(prerollContext, matrix); if (childPaintBounds.overlaps$1(t1)) this.paintBounds = childPaintBounds.intersect$1(t1); t2.pop(); }, paint$1(paintContext) { var t2, t3, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = this.__engine$_clipRect; t3 = this.__engine$_clipBehavior; t1.clipRect$3(0, t2, B.ClipOp_1, t3 !== B.Clip_1); t3 = t3 === B.Clip_3; if (t3) t1.saveLayer$2(0, t2, null); this.paintChildren$1(paintContext); if (t3) t1.restore$0(0); t1.restore$0(0); }, $isClipRectEngineLayer0: 1 }; A.ClipRRectEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var childPaintBounds, t3, t4, t5, _null = null, t1 = this.__engine$_clipRRect, t2 = prerollContext.mutatorsStack._mutators; t2.push(new A.Mutator(B.MutatorType_1, _null, t1, _null, _null, _null)); childPaintBounds = this.prerollChildren$2(prerollContext, matrix); t3 = t1.left; t4 = t1.top; t5 = t1.right; t1 = t1.bottom; if (childPaintBounds.overlaps$1(new A.Rect(t3, t4, t5, t1))) this.paintBounds = childPaintBounds.intersect$1(new A.Rect(t3, t4, t5, t1)); t2.pop(); }, paint$1(paintContext) { var t2, _this = this, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_clipBehavior; t1.clipRRect$2(0, _this.__engine$_clipRRect, t2 !== B.Clip_1); t2 = t2 === B.Clip_3; if (t2) t1.saveLayer$2(0, _this.paintBounds, null); _this.paintChildren$1(paintContext); if (t2) t1.restore$0(0); t1.restore$0(0); }, $isClipRRectEngineLayer0: 1 }; A.OpacityEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var t1, t2, t3, t4, _this = this, _null = null, childMatrix = new A.Matrix40(new Float32Array(16)); childMatrix.setFrom$1(matrix); t1 = _this.__engine$_offset; t2 = t1._dx; t1 = t1._dy; childMatrix.translate$2(0, t2, t1); t3 = A.Matrix4$identity(); t3.setTranslationRaw$3(t2, t1, 0); t4 = prerollContext.mutatorsStack._mutators; t4.push(A.Mutator$transform(t3)); t4.push(new A.Mutator(B.MutatorType_4, _null, _null, _null, _null, _this.__engine$_alpha)); _this.super$ContainerLayer$preroll(prerollContext, childMatrix); t4.pop(); t4.pop(); _this.paintBounds = _this.paintBounds.translate$2(0, t2, t1); }, paint$1(paintContext) { var t1, t2, t3, _this = this, paint = A.CkPaint$(); paint.set$color(0, A.Color$fromARGB(_this.__engine$_alpha, 0, 0, 0)); t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_offset; t3 = t2._dx; t2 = t2._dy; t1.translate$2(0, t3, t2); t1.saveLayer$2(0, _this.paintBounds.shift$1(new A.Offset(-t3, -t2)), paint); _this.paintChildren$1(paintContext); t1.restore$0(0); t1.restore$0(0); }, $isOpacityEngineLayer0: 1 }; A.TransformEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var t1 = this.__engine$_transform, childMatrix = matrix.multiplied$1(t1), t2 = prerollContext.mutatorsStack._mutators; t2.push(A.Mutator$transform(t1)); this.paintBounds = A.transformRect(t1, this.prerollChildren$2(prerollContext, childMatrix)); t2.pop(); }, paint$1(paintContext) { var t1 = paintContext.internalNodesCanvas; t1.save$0(0); t1.transform$1(0, this.__engine$_transform.__engine$_m4storage); this.paintChildren$1(paintContext); t1.restore$0(0); }, $isTransformEngineLayer0: 1 }; A.OffsetEngineLayer.prototype = {$isOffsetEngineLayer0: 1}; A.PictureLayer0.prototype = { preroll$2(prerollContext, matrix) { this.paintBounds = this.picture.cullRect.shift$1(this.offset); }, paint$1(paintContext) { var t1; paintContext.leafNodesCanvas.save$0(0); t1 = this.offset; paintContext.leafNodesCanvas.translate$2(0, t1._dx, t1._dy); paintContext.leafNodesCanvas.drawPicture$1(0, this.picture); paintContext.leafNodesCanvas.restore$0(0); } }; A.PhysicalShapeEngineLayer.prototype = { preroll$2(prerollContext, matrix) { var t1, _this = this; _this.prerollChildren$2(prerollContext, matrix); t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); _this.paintBounds = A.computeSkShadowBounds(_this.__engine$_path, _this.__engine$_elevation, t1, matrix); }, paint$1(paintContext) { var t2, t3, t4, paint, saveCount, _this = this, t1 = _this.__engine$_elevation; if (t1 !== 0) { t2 = paintContext.leafNodesCanvas; t3 = _this.__engine$_shadowColor; t3.toString; t4 = _this.__engine$_color; t2.drawShadow$4(0, _this.__engine$_path, t3, t1, (t4.get$value(t4) >>> 24 & 255) !== 255); } paint = A.CkPaint$(); paint.set$color(0, _this.__engine$_color); t1 = _this.__engine$_clipBehavior; t2 = t1 === B.Clip_3; if (!t2) paintContext.leafNodesCanvas.drawPath$2(0, _this.__engine$_path, paint); t3 = paintContext.internalNodesCanvas; saveCount = t3.save$0(0); switch (t1) { case B.Clip_1: t3.clipPath$2(0, _this.__engine$_path, false); break; case B.Clip_2: t3.clipPath$2(0, _this.__engine$_path, true); break; case B.Clip_3: t3.clipPath$2(0, _this.__engine$_path, true); t3.saveLayer$2(0, _this.paintBounds, null); break; case B.Clip_0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (t2) paintContext.leafNodesCanvas.drawPaint$1(0, paint); _this.paintChildren$1(paintContext); t3.restoreToCount$1(0, saveCount); }, $isPhysicalShapeEngineLayer0: 1 }; A.PlatformViewLayer0.prototype = { preroll$2(prerollContext, matrix) { var _this = this, t1 = _this.offset, t2 = t1._dx, t3 = t1._dy, t4 = _this.width, t5 = _this.height; _this.paintBounds = new A.Rect(t2, t3, t2 + t4, t3 + t5); t3 = prerollContext.viewEmbedder; t3.toString; t3.prerollCompositeEmbeddedView$2(_this.viewId, new A.EmbeddedViewParams(t1, new A.Size(t4, t5), new A.MutatorsStack(A.List_List$from(prerollContext.mutatorsStack._mutators, true, type$.Mutator)))); }, paint$1(paintContext) { var canvas = paintContext.viewEmbedder.compositeEmbeddedView$1(this.viewId); if (canvas != null) paintContext.leafNodesCanvas = canvas; } }; A.LayerScene.prototype = { dispose$0(_) { } }; A.LayerSceneBuilder.prototype = { addPerformanceOverlay$2(enabledOptions, bounds) { throw A.wrapException(A.UnimplementedError$(null)); }, addPicture$4$isComplexHint$willChangeHint(offset, picture, isComplexHint, willChangeHint) { var t1 = A._lateReadCheck(this.__LayerSceneBuilder_currentLayer, "currentLayer"), t2 = new A.PictureLayer0(type$.CkPicture._as(picture), offset, B.Rect_0_0_0_0); t1.toString; t2.parent = t1; t1._layers.push(t2); }, addRetained$1(retainedLayer) { var t1 = A._lateReadCheck(this.__LayerSceneBuilder_currentLayer, "currentLayer"); type$.Layer._as(retainedLayer); t1.toString; retainedLayer.parent = t1; t1._layers.push(retainedLayer); }, addPlatformView$4$height$offset$width(viewId, height, offset, width) { var t1 = A._lateReadCheck(this.__LayerSceneBuilder_currentLayer, "currentLayer"), t2 = new A.PlatformViewLayer0(viewId, offset, width, height, B.Rect_0_0_0_0); t1.toString; t2.parent = t1; t1._layers.push(t2); }, build$0(_) { return new A.LayerScene(new A.LayerTree(this.rootLayer, $.$get$window().get$physicalSize())); }, pop$0(_) { var t1, _this = this, _s12_ = "currentLayer"; if (A._lateReadCheck(_this.__LayerSceneBuilder_currentLayer, _s12_) === _this.rootLayer) return; t1 = A._lateReadCheck(_this.__LayerSceneBuilder_currentLayer, _s12_).parent; t1.toString; _this.__LayerSceneBuilder_currentLayer = t1; }, pushBackdropFilter$3$blendMode$oldLayer(filter, blendMode, oldLayer) { return this.pushLayer$1(new A.BackdropFilterEngineLayer(filter, blendMode, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushClipPath$3$clipBehavior$oldLayer(path, clipBehavior, oldLayer) { return this.pushLayer$1(new A.ClipPathEngineLayer(type$.CkPath._as(path), clipBehavior, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushClipRRect$3$clipBehavior$oldLayer(rrect, clipBehavior, oldLayer) { return this.pushLayer$1(new A.ClipRRectEngineLayer(rrect, clipBehavior, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushClipRect$3$clipBehavior$oldLayer(rect, clipBehavior, oldLayer) { return this.pushLayer$1(new A.ClipRectEngineLayer(rect, clipBehavior, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushOffset$3$oldLayer(dx, dy, oldLayer) { var t1 = A.Matrix4$identity(); t1.setTranslationRaw$3(dx, dy, 0); return this.pushLayer$1(new A.OffsetEngineLayer(t1, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushOpacity$3$offset$oldLayer(alpha, offset, oldLayer) { return this.pushLayer$1(new A.OpacityEngineLayer(alpha, offset, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor(clipBehavior, color, elevation, oldLayer, path, shadowColor) { return this.pushLayer$1(new A.PhysicalShapeEngineLayer(elevation, color, shadowColor, type$.CkPath._as(path), clipBehavior, A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, pushTransform$2$oldLayer(matrix4, oldLayer) { return this.pushLayer$1(new A.TransformEngineLayer(new A.Matrix40(A.toMatrix32(matrix4)), A._setArrayType([], type$.JSArray_Layer), B.Rect_0_0_0_0)); }, setCheckerboardOffscreenLayers$1(checkerboard) { }, setCheckerboardRasterCacheImages$1(checkerboard) { }, setRasterizerTracingThreshold$1(frameInterval) { }, pushLayer$1$1(layer) { var t1 = A._lateReadCheck(this.__LayerSceneBuilder_currentLayer, "currentLayer"); t1.toString; layer.parent = t1; t1._layers.push(layer); return this.__LayerSceneBuilder_currentLayer = layer; }, pushLayer$1(layer) { return this.pushLayer$1$1(layer, type$.ContainerLayer); } }; A.LayerTree.prototype = { paint$2$ignoreRasterCache(frame, ignoreRasterCache) { var t3, overlayCanvases, i, t4, t1 = A._setArrayType([], type$.JSArray_CkCanvas), internalNodesCanvas = new A.CkNWayCanvas(t1), t2 = frame.canvas; t1.push(t2); t3 = frame.viewEmbedder; overlayCanvases = t3.getOverlayCanvases$0(); for (i = 0; i < overlayCanvases.length; ++i) t1.push(overlayCanvases[i]); internalNodesCanvas.clear$1(0, B.Color_0); t1 = this.rootLayer; t4 = t1.paintBounds; if (!t4.get$isEmpty(t4)) t1.paintChildren$1(new A.PaintContext(internalNodesCanvas, t2, t3)); } }; A.Frame.prototype = { raster$2$ignoreRasterCache(layerTree, ignoreRasterCache) { A.timeAction("preroll_frame", new A.Frame_raster_closure(this, layerTree, true)); A.timeAction("apply_frame", new A.Frame_raster_closure0(this, layerTree, true)); return true; } }; A.Frame_raster_closure.prototype = { call$0() { var t1 = this.layerTree.rootLayer; t1.paintBounds = t1.prerollChildren$2(new A.PrerollContext(this.$this.viewEmbedder, new A.MutatorsStack(A._setArrayType([], type$.JSArray_Mutator))), A.Matrix4$identity()); }, $signature: 0 }; A.Frame_raster_closure0.prototype = { call$0() { this.layerTree.paint$2$ignoreRasterCache(this.$this, this.ignoreRasterCache); }, $signature: 0 }; A.CompositorContext.prototype = {}; A.CkMaskFilter.prototype = { createDefault$0() { return this._initSkiaObject$0(); }, resurrect$0() { return this._initSkiaObject$0(); }, _initSkiaObject$0() { var t1 = J.MakeBlur$3$x(J.get$MaskFilter$x($.__canvasKit._readField$0()), $.$get$_skBlurStyles()[this._blurStyle.index], this.__engine$_sigma, true); t1.toString; return t1; }, delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } }; A.CkNWayCanvas.prototype = { save$0(_) { var t1, saveCount, i; for (t1 = this._canvases, saveCount = 0, i = 0; i < t1.length; ++i) saveCount = t1[i].save$0(0); return saveCount; }, saveLayer$2(_, bounds, paint) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].saveLayer$2(0, bounds, paint); }, saveLayerWithFilter$3(bounds, filter, paint) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].saveLayerWithFilter$3(bounds, filter, paint); }, restore$0(_) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].restore$0(0); }, restoreToCount$1(_, count) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].restoreToCount$1(0, count); }, translate$2(_, dx, dy) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].translate$2(0, dx, dy); }, transform$1(_, matrix) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].transform$1(0, matrix); }, clear$1(_, color) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clear$1(0, color); }, clipPath$2(_, path, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipPath$2(0, path, doAntiAlias); }, clipRect$3(_, rect, clipOp, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipRect$3(0, rect, clipOp, doAntiAlias); }, clipRRect$2(_, rrect, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipRRect$2(0, rrect, doAntiAlias); } }; A.CkPaint.prototype = { set$blendMode(value) { if (this._blendMode == value) return; this._blendMode = value; J.setBlendMode$1$x(this.get$skiaObject(), $.$get$_skBlendModes()[value.index]); }, get$style(_) { return this._style; }, set$style(_, value) { if (this._style === value) return; this._style = value; J.setStyle$1$x(this.get$skiaObject(), $.$get$_skPaintStyles()[value.index]); }, get$strokeWidth() { return this._strokeWidth; }, set$strokeWidth(value) { if (this._strokeWidth == value) return; this._strokeWidth = value; J.setStrokeWidth$1$x(this.get$skiaObject(), value); }, set$strokeCap(value) { if (this._strokeCap === value) return; this._strokeCap = value; J.setStrokeCap$1$x(this.get$skiaObject(), $.$get$_skStrokeCaps()[value.index]); }, set$strokeJoin(value) { if (this._strokeJoin === value) return; this._strokeJoin = value; J.setStrokeJoin$1$x(this.get$skiaObject(), $.$get$_skStrokeJoins()[value.index]); }, set$isAntiAlias(value) { if (this._isAntiAlias === value) return; this._isAntiAlias = value; J.setAntiAlias$1$x(this.get$skiaObject(), value); }, get$color(_) { return this.__engine$_color; }, set$color(_, value) { if (J.$eq$(this.__engine$_color, value)) return; this.__engine$_color = value; J.setColorInt$1$x(this.get$skiaObject(), value.get$value(value)); }, set$invertColors(value) { var t1, t2, _this = this; if (value === _this.__engine$_invertColors) return; if (!value) { _this._effectiveColorFilter = _this._originalColorFilter; _this._originalColorFilter = null; } else { t1 = _this._originalColorFilter = _this._effectiveColorFilter; if (t1 == null) _this._effectiveColorFilter = $.$get$_invertColorFilter(); else _this._effectiveColorFilter = A.ManagedSkColorFilter$(new A.CkComposeColorFilter($.$get$_invertColorFilter(), t1)); } t1 = _this.get$skiaObject(); t2 = _this._effectiveColorFilter; J.setColorFilter$1$x(t1, t2 == null ? null : t2.get$skiaObject()); _this.__engine$_invertColors = value; }, set$shader(value) { var t1, t2, _this = this; if (_this._shader == value) return; _this._shader = type$.nullable_CkShader._as(value); t1 = _this.get$skiaObject(); t2 = _this._shader; J.setShader$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, set$maskFilter(value) { var t1, t2, _this = this; if (value.$eq(0, _this._maskFilter)) return; _this._maskFilter = value; t1 = value._sigma; if (!(isFinite(t1) && t1 > 0)) _this._ckMaskFilter = null; else { t1 = new A.CkMaskFilter(value._ui$_style, t1); t1.ManagedSkiaObject$1(null); _this._ckMaskFilter = t1; } t1 = _this.get$skiaObject(); t2 = _this._ckMaskFilter; J.setMaskFilter$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, set$filterQuality(value) { var t1, t2, _this = this; if (_this.__engine$_filterQuality === value) return; _this.__engine$_filterQuality = value; t1 = _this.get$skiaObject(); t2 = _this._shader; J.setShader$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, set$colorFilter(value) { var t2, _this = this, t1 = _this._effectiveColorFilter; if (J.$eq$(t1 == null ? null : t1.colorFilter, value)) return; _this._originalColorFilter = null; t1 = _this._effectiveColorFilter = A.ManagedSkColorFilter$(value); if (_this.__engine$_invertColors) { _this._originalColorFilter = t1; _this._effectiveColorFilter = A.ManagedSkColorFilter$(new A.CkComposeColorFilter($.$get$_invertColorFilter(), t1)); } t1 = _this.get$skiaObject(); t2 = _this._effectiveColorFilter; J.setColorFilter$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, createDefault$0() { var t2, paint = new self.window.flutterCanvasKit.Paint(), t1 = J.getInterceptor$x(paint); t1.setAntiAlias$1(paint, this._isAntiAlias); t2 = this.__engine$_color; t1.setColorInt$1(paint, t2.get$value(t2)); return paint; }, resurrect$0() { var _this = this, _null = null, paint = new self.window.flutterCanvasKit.Paint(), t1 = _this._blendMode, t2 = J.getInterceptor$x(paint); t2.setBlendMode$1(paint, $.$get$_skBlendModes()[t1.index]); t1 = _this._style; t2.setStyle$1(paint, $.$get$_skPaintStyles()[t1.index]); t2.setStrokeWidth$1(paint, _this._strokeWidth); t2.setAntiAlias$1(paint, _this._isAntiAlias); t1 = _this.__engine$_color; t2.setColorInt$1(paint, t1.get$value(t1)); t1 = _this._shader; t2.setShader$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._ckMaskFilter; t2.setMaskFilter$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._effectiveColorFilter; t2.setColorFilter$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._managedImageFilter; t2.setImageFilter$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._strokeCap; t2.setStrokeCap$1(paint, $.$get$_skStrokeCaps()[t1.index]); t1 = _this._strokeJoin; t2.setStrokeJoin$1(paint, $.$get$_skStrokeJoins()[t1.index]); t2.setStrokeMiter$1(paint, 0); return paint; }, delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, $isPaint: 1 }; A.CkPath.prototype = { set$fillType(newFillType) { if (this._fillType === newFillType) return; this._fillType = newFillType; J.setFillType$1$x(this.get$skiaObject(), $.$get$_skFillTypes()[newFillType.index]); }, addArc$3(_, oval, startAngle, sweepAngle) { J.addArc$3$x(this.get$skiaObject(), A.toSkRect(oval), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232); }, addOval$1(_, oval) { J.addOval$3$x(this.get$skiaObject(), A.toSkRect(oval), false, 1); }, addPolygon$2(points, $close) { var encodedPoints = A.toMallocedSkPoints(points); J.addPoly$2$x(this.get$skiaObject(), J.toTypedArray$0$x(encodedPoints), $close); self.window.flutterCanvasKit.Free(encodedPoints); }, addRRect$1(_, rrect) { J.addRRect$2$x(this.get$skiaObject(), A.toSkRRect(rrect), false); }, addRect$1(_, rect) { J.addRect$1$x(this.get$skiaObject(), A.toSkRect(rect)); }, arcTo$4(_, rect, startAngle, sweepAngle, forceMoveTo) { J.arcToOval$4$x(this.get$skiaObject(), A.toSkRect(rect), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232, forceMoveTo); }, arcToPoint$3$clockwise$radius(arcEnd, clockwise, radius) { J.arcToRotated$7$x(this.get$skiaObject(), radius.x, radius.y, 0, true, true, arcEnd._dx, arcEnd._dy); }, close$0(_) { J.close$0$x(this.get$skiaObject()); }, contains$1(_, point) { return J.contains$2$asx(this.get$skiaObject(), point._dx, point._dy); }, cubicTo$6(_, x1, y1, x2, y2, x3, y3) { J.cubicTo$6$x(this.get$skiaObject(), x1, y1, x2, y2, x3, y3); }, getBounds$0(_) { var t1 = J.getBounds$0$x(this.get$skiaObject()), t2 = J.getInterceptor$asx(t1); return new A.Rect(t2.$index(t1, 0), t2.$index(t1, 1), t2.$index(t1, 2), t2.$index(t1, 3)); }, lineTo$2(_, x, y) { J.lineTo$2$x(this.get$skiaObject(), x, y); }, moveTo$2(_, x, y) { J.moveTo$2$x(this.get$skiaObject(), x, y); }, quadraticBezierTo$4(x1, y1, x2, y2) { J.quadTo$4$x(this.get$skiaObject(), x1, y1, x2, y2); }, reset$0(_) { this._fillType = B.PathFillType_0; J.reset$0$x(this.get$skiaObject()); }, shift$1(offset) { var shiftedPath = J.copy$0$x(this.get$skiaObject()); J.transform$9$x(shiftedPath, 1, 0, offset._dx, 0, 1, offset._dy, 0, 0, 1); return A.CkPath$fromSkPath(shiftedPath, this._fillType); }, get$isEmpty(_) { return J.isEmpty$0$asx(this.get$skiaObject()); }, get$isResurrectionExpensive() { return true; }, createDefault$0() { var path = new self.window.flutterCanvasKit.Path(), t1 = this._fillType; J.setFillType$1$x(path, $.$get$_skFillTypes()[t1.index]); return path; }, delete$0(_) { var t1; this._cachedCommands = J.toCmds$0$x(this.get$skiaObject()); t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, resurrect$0() { var path, t1 = J.get$Path$x($.__canvasKit._readField$0()), t2 = this._cachedCommands; t2.toString; path = J.MakeFromCmds$1$x(t1, t2); t2 = this._fillType; J.setFillType$1$x(path, $.$get$_skFillTypes()[t2.index]); return path; }, $isPath: 1 }; A.CkPicture.prototype = { dispose$0(_) { var t1, _this = this; _this._isDisposed = true; t1 = _this._snapshot; if (t1 != null) t1.dispose$0(0); t1 = _this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); _this.rawSkiaObject = null; }, get$isResurrectionExpensive() { return true; }, createDefault$0() { throw A.wrapException(A.StateError$("Unreachable code")); }, resurrect$0() { return this._snapshot.toPicture$0(); }, delete$0(_) { var t1; if (!this._isDisposed) { t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } } }; A.CkPictureRecorder.prototype = { beginRecording$1(_, bounds) { var recorder, skCanvas; this._cullRect = bounds; recorder = new self.window.flutterCanvasKit.PictureRecorder(); this._skRecorder = recorder; skCanvas = J.beginRecording$1$x(recorder, A.toSkRect(bounds)); return this._recordingCanvas = $.$get$browserSupportsFinalizationRegistry() ? new A.CkCanvas(skCanvas) : new A.RecordingCkCanvas(new A.CkPictureSnapshot(bounds, A._setArrayType([], type$.JSArray_CkPaintCommand)), skCanvas); }, endRecording$0() { var t1, skPicture, _this = this, recorder = _this._skRecorder; if (recorder == null) throw A.wrapException(A.StateError$("PictureRecorder is not recording")); t1 = J.getInterceptor$x(recorder); skPicture = t1.finishRecordingAsPicture$0(recorder); t1.delete$0(recorder); _this._skRecorder = null; t1 = new A.CkPicture(_this._cullRect, _this._recordingCanvas.get$pictureSnapshot()); t1.ManagedSkiaObject$1(skPicture); return t1; }, get$isRecording() { return this._skRecorder != null; } }; A.Rasterizer.prototype = { draw$1(layerTree) { var frame, canvas, compositorFrame, t1, t2; try { t1 = layerTree.frameSize; if (t1.get$isEmpty(t1)) return; frame = A.SurfaceFactory_instance().baseSurface.acquireFrame$1(t1); $.$get$HtmlViewEmbedder_instance()._frameSize = t1; canvas = new A.CkCanvas(J.getCanvas$0$x(frame.skiaSurface.surface)); compositorFrame = new A.Frame(canvas, null, $.$get$HtmlViewEmbedder_instance()); compositorFrame.raster$2$ignoreRasterCache(layerTree, true); t1 = A.SurfaceFactory_instance().baseSurface; if (!t1._addedToScene) { t2 = $.skiaSceneHost; t2.toString; J.get$children$x(t2).insert$2(0, 0, t1.htmlElement); } t1._addedToScene = true; J.submit$0$z(frame); $.$get$HtmlViewEmbedder_instance().submitFrame$0(0); } finally { this._runPostFrameCallbacks$0(); } }, _runPostFrameCallbacks$0() { var t1, i; for (t1 = this._postFrameCallbacks, i = 0; i < t1.length; ++i) t1[i].call$0(); for (t1 = $.frameReferences, i = 0; i < t1.length; ++i) t1[i].value = null; B.JSArray_methods.set$length(t1, 0); } }; A.CkShader.prototype = { delete$0(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } }; A.CkGradientLinear.prototype = { createDefault$0() { var _this = this, t1 = J.get$Shader$x($.__canvasKit._readField$0()), t2 = A.toSkPoint(_this.from), t3 = A.toSkPoint(_this.to), t4 = A.toFlatColors(_this.colors), t5 = A.toSkColorStops(_this.colorStops), t6 = $.$get$_skTileModes()[_this.tileMode.index], t7 = _this.matrix4; return J.MakeLinearGradient$6$x(t1, t2, t3, t4, t5, t6, t7 != null ? A.toSkMatrixFromFloat32(t7) : null); }, resurrect$0() { return this.createDefault$0(); } }; A.SkiaObjectCache.prototype = { get$length(_) { return this._itemQueue._elementCount; }, add$1(_, object) { var t2, _this = this, t1 = _this._itemQueue; t1.addFirst$1(object); t2 = t1._sentinel._nextLink._asNonSentinelEntry$0(); t2.toString; _this._itemMap.$indexSet(0, object, t2); if (t1._elementCount > _this.maximumSize) A.SkiaObjects_markCacheForResize(_this); }, resize$0(_) { var t1, t2, t3, i, result, itemsToDelete = this.maximumSize / 2 | 0; for (t1 = this._itemQueue, t2 = t1._sentinel, t3 = this._itemMap, i = 0; i < itemsToDelete; ++i) { result = t2._previousLink._remove$0(0); --t1._elementCount; t3.remove$1(0, result); result.delete$0(0); result.didDelete$0(); } } }; A.SynchronousSkiaObjectCache.prototype = { get$length(_) { return this._itemQueue._elementCount; }, add$1(_, object) { var t1 = this._itemQueue; t1.addFirst$1(object); t1 = t1._sentinel._nextLink._asNonSentinelEntry$0(); t1.toString; this._itemMap.$indexSet(0, object, t1); this._enforceCacheLimit$0(); }, markUsed$1(object) { var t2, t1 = this._itemMap, item = t1.$index(0, object); if (item == null) return false; item.remove$0(0); t2 = this._itemQueue; t2.addFirst$1(object); t2 = t2._sentinel._nextLink._asNonSentinelEntry$0(); t2.toString; t1.$indexSet(0, object, t2); return true; }, _enforceCacheLimit$0() { var t1, t2, t3, t4, result; for (t1 = this._itemQueue, t2 = this.maximumSize, t3 = t1._sentinel, t4 = this._itemMap; t1._elementCount > t2;) { result = t3._previousLink._remove$0(0); --t1._elementCount; t4.remove$1(0, result); result.delete$0(0); result.didDelete$0(); } } }; A.SkiaObject.prototype = {}; A.ManagedSkiaObject.prototype = { ManagedSkiaObject$1(instance) { var _this = this, defaultObject = instance == null ? _this.createDefault$0() : instance; _this.rawSkiaObject = defaultObject; if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().register$2(0, _this, defaultObject); else if (_this.get$isResurrectionExpensive()) { A.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { A.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } }, get$skiaObject() { var skiaObject, _this = this, t1 = _this.rawSkiaObject; if (t1 == null) { skiaObject = _this.resurrect$0(); _this.rawSkiaObject = skiaObject; if (_this.get$isResurrectionExpensive()) { A.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { A.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } t1 = skiaObject; } return t1; }, _doResurrect$0() { var _this = this, skiaObject = _this.resurrect$0(); _this.rawSkiaObject = skiaObject; if (_this.get$isResurrectionExpensive()) { A.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { A.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } return skiaObject; }, didDelete$0() { if (this.rawSkiaObject == null) return; this.rawSkiaObject = null; }, get$isResurrectionExpensive() { return false; } }; A.SkiaObjectBox.prototype = { __engine$_initialize$2(debugReferrer, initialValue) { this._skDeletable = this.rawSkiaObject = initialValue; }, get$skiaObject() { var _this = this, t1 = _this.rawSkiaObject; if (t1 == null) { t1 = _this._resurrector.call$0(); _this.rawSkiaObject = t1; _this._skDeletable = type$.nullable_SkDeletable._as(t1); A.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); t1 = _this.get$skiaObject(); } return t1; }, delete$0(_) { var t1 = this._skDeletable; if (t1 != null) J.delete$0$x(t1); }, didDelete$0() { this._skDeletable = this.rawSkiaObject = null; }, unref$1(debugReferrer) { var t1, _this = this; if (--_this._refCount === 0) { t1 = _this._skDeletable; if (t1 != null) if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().collect$1(t1); else { _this.delete$0(0); _this.didDelete$0(); } _this._resurrector = _this._skDeletable = _this.rawSkiaObject = null; _this._isDeletedPermanently = true; } } }; A.SurfaceFrame.prototype = { submit$0(_) { return this.submitCallback.call$2(this, new A.CkCanvas(J.getCanvas$0$x(this.skiaSurface.surface))); } }; A.Surface.prototype = { _syncCacheBytes$0() { var t2, t1 = this._skiaCacheBytes; if (t1 != null) { t2 = this._grContext; if (t2 != null) J.setResourceCacheLimitBytes$1$x(t2, t1); } }, acquireFrame$1(size) { return new A.SurfaceFrame(this.createOrUpdateSurface$1(size), new A.Surface_acquireFrame_closure(this)); }, createOrUpdateSurface$1(size) { var t1, previousSurfaceSize, t2, previousCanvasSize, newSize, htmlCanvas, t3, glContext, surfaceHeight, _this = this, _s20_ = "webglcontextrestored", _s16_ = "webglcontextlost"; if ($.$get$useH5vccCanvasKit()) { t1 = _this.__engine$_surface; return t1 == null ? _this.__engine$_surface = new A.CkSurface(J.getH5vccSkSurface$0$x($.__canvasKit._readField$0()), null) : t1; } if (size.get$isEmpty(size)) throw A.wrapException(A.CanvasKitError$("Cannot create surfaces of empty size.")); previousSurfaceSize = _this._currentSurfaceSize; if (!_this._forceNewContext && previousSurfaceSize != null && size._dx == previousSurfaceSize._dx && size._dy == previousSurfaceSize._dy) { t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); if (t1 !== _this._currentDevicePixelRatio) _this._updateLogicalHtmlCanvasSize$0(); t1 = _this.__engine$_surface; t1.toString; return t1; } t1 = $.$get$window(); t2 = t1._debugDevicePixelRatio; _this._currentDevicePixelRatio = t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2; previousCanvasSize = _this._currentCanvasPhysicalSize; if (_this._forceNewContext || previousCanvasSize == null || size._dx > previousCanvasSize._dx || size._dy > previousCanvasSize._dy) { newSize = previousCanvasSize == null ? size : size.$mul(0, 1.4); t2 = _this.__engine$_surface; if (t2 != null) t2.dispose$0(0); _this.__engine$_surface = null; _this._addedToScene = false; t2 = _this._grContext; if (t2 != null) J.releaseResourcesAndAbandonContext$0$x(t2); t2 = _this._grContext; if (t2 != null) J.delete$0$x(t2); _this._grContext = null; t2 = _this.htmlCanvas; if (t2 != null) { B.CanvasElement_methods.removeEventListener$3(t2, _s20_, _this._cachedContextRestoredListener, false); t2 = _this.htmlCanvas; t2.toString; B.CanvasElement_methods.removeEventListener$3(t2, _s16_, _this._cachedContextLostListener, false); t2 = _this.htmlCanvas; t2.toString; B.CanvasElement_methods.remove$0(t2); _this._cachedContextLostListener = _this._cachedContextRestoredListener = null; } _this._pixelWidth = J.ceil$0$n(newSize._dx); t2 = J.ceil$0$n(newSize._dy); _this._pixelHeight = t2; htmlCanvas = _this.htmlCanvas = A.CanvasElement_CanvasElement(t2, _this._pixelWidth); t2 = htmlCanvas.style; t2.position = "absolute"; _this._updateLogicalHtmlCanvasSize$0(); _this._cachedContextRestoredListener = _this.get$_contextRestoredListener(); t2 = _this.get$_contextLostListener(); _this._cachedContextLostListener = t2; B.CanvasElement_methods.addEventListener$3(htmlCanvas, _s16_, t2, false); B.CanvasElement_methods.addEventListener$3(htmlCanvas, _s20_, _this._cachedContextRestoredListener, false); t2 = _this._contextLost = _this._forceNewContext = false; t3 = $._cachedWebGLVersion; if ((t3 == null ? $._cachedWebGLVersion = A._detectWebGLVersion() : t3) !== -1) { t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t2 = !t2.get$canvasKitForceCpuOnly(t2); } if (t2) { t2 = $.__canvasKit._readField$0(); t3 = $._cachedWebGLVersion; if (t3 == null) t3 = $._cachedWebGLVersion = A._detectWebGLVersion(); glContext = _this._glContext = J.GetWebGLContext$2$x(t2, htmlCanvas, {antialias: 0, majorVersion: t3}); if (glContext !== 0) { t2 = J.MakeGrContext$1$x($.__canvasKit._readField$0(), glContext); _this._grContext = t2; if (t2 == null) A.throwExpression(A.CanvasKitError$("Failed to initialize CanvasKit. CanvasKit.MakeGrContext returned null.")); _this._syncCacheBytes$0(); } } _this.htmlElement.appendChild(htmlCanvas); _this._currentCanvasPhysicalSize = newSize; } _this._currentSurfaceSize = size; surfaceHeight = J.ceil$0$n(size._dy); t2 = _this._pixelHeight; t1 = t1._debugDevicePixelRatio; if (t1 == null) t1 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t3 = _this.htmlCanvas.style; t3.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t3, B.CssStyleDeclaration_methods._browserPropertyName$1(t3, "transform"), "translate(0, -" + A.S((t2 - surfaceHeight) / t1) + "px)", ""); return _this.__engine$_surface = _this._createNewSurface$1(size); }, _updateLogicalHtmlCanvasSize$0() { var t4, t5, t1 = this._pixelWidth, t2 = $.$get$window(), t3 = t2._debugDevicePixelRatio; if (t3 == null) t3 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t4 = this._pixelHeight; t2 = t2._debugDevicePixelRatio; if (t2 == null) t2 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t5 = this.htmlCanvas.style; t5.width = A.S(t1 / t3) + "px"; t5.height = A.S(t4 / t2) + "px"; }, _contextRestoredListener$1($event) { this._contextLost = false; $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); $event.stopPropagation(); $event.preventDefault(); }, _contextLostListener$1($event) { var _this = this, factory = A.SurfaceFactory_instance(); _this._contextLost = true; if (factory.isLive$1(_this)) { _this._forceNewContext = true; $event.preventDefault(); } else _this.dispose$0(0); }, _createNewSurface$1(size) { var t2, skSurface, _this = this, t1 = $._cachedWebGLVersion; if ((t1 == null ? $._cachedWebGLVersion = A._detectWebGLVersion() : t1) === -1) { t1 = _this.htmlCanvas; t1.toString; return _this._makeSoftwareCanvasSurface$2(t1, "WebGL support not detected"); } else { t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); if (t1.get$canvasKitForceCpuOnly(t1)) { t1 = _this.htmlCanvas; t1.toString; return _this._makeSoftwareCanvasSurface$2(t1, "CPU rendering forced by application"); } else if (_this._glContext === 0) { t1 = _this.htmlCanvas; t1.toString; return _this._makeSoftwareCanvasSurface$2(t1, "Failed to initialize WebGL context"); } else { t1 = $.__canvasKit._readField$0(); t2 = _this._grContext; t2.toString; skSurface = J.MakeOnScreenGLSurface$4$x(t1, t2, J.ceil$0$n(size._dx), J.ceil$0$n(size._dy), self.window.flutterCanvasKit.ColorSpace.SRGB); if (skSurface == null) { t1 = _this.htmlCanvas; t1.toString; return _this._makeSoftwareCanvasSurface$2(t1, "Failed to initialize WebGL surface"); } return new A.CkSurface(skSurface, _this._glContext); } } }, _makeSoftwareCanvasSurface$2(htmlCanvas, reason) { if (!$.Surface__didWarnAboutWebGlInitializationFailure) { $.$get$printWarning().call$1("WARNING: Falling back to CPU-only rendering. " + reason + "."); $.Surface__didWarnAboutWebGlInitializationFailure = true; } return new A.CkSurface(J.MakeSWCanvasSurface$1$x($.__canvasKit._readField$0(), htmlCanvas), null); }, dispose$0(_) { var _this = this, t1 = _this.htmlCanvas; if (t1 != null) B.CanvasElement_methods.removeEventListener$3(t1, "webglcontextlost", _this._cachedContextLostListener, false); t1 = _this.htmlCanvas; if (t1 != null) B.CanvasElement_methods.removeEventListener$3(t1, "webglcontextrestored", _this._cachedContextRestoredListener, false); _this._cachedContextRestoredListener = _this._cachedContextLostListener = null; J.remove$0$ax(_this.htmlElement); t1 = _this.__engine$_surface; if (t1 != null) t1.dispose$0(0); } }; A.Surface_acquireFrame_closure.prototype = { call$2(surfaceFrame, canvas) { J.flush$0$x(this.$this.__engine$_surface.surface); return true; }, $signature: 1151 }; A.CkSurface.prototype = { dispose$0(_) { if (this._isDisposed) return; J.dispose$0$x(this.surface); this._isDisposed = true; } }; A.SurfaceFactory.prototype = { getOverlay$0() { var surface, _this = this, t1 = _this.__engine$_cache, t2 = t1.length; if (t2 !== 0) { surface = t1.pop(); _this._liveSurfaces.push(surface); return surface; } else { t1 = _this._liveSurfaces; if (t1.length + t2 + 2 < _this.maximumSurfaces) { surface = new A.Surface(A._ElementFactoryProvider_createElement_tag("flt-canvas-container", null)); t1.push(surface); return surface; } else return null; } }, _removeFromDom$1(surface) { J.remove$0$ax(surface.htmlElement); }, releaseSurface$1(surface) { if (surface === this.backupSurface) { J.remove$0$ax(surface.htmlElement); return; } J.remove$0$ax(surface.htmlElement); B.JSArray_methods.remove$1(this._liveSurfaces, surface); this.__engine$_cache.push(surface); }, isLive$1(surface) { if (surface === this.baseSurface || surface === this.backupSurface || B.JSArray_methods.contains$1(this._liveSurfaces, surface)) return true; return false; } }; A.CkParagraphStyle.prototype = {}; A.CkTextStyle.prototype = { get$skTextStyle() { var result, _this = this, value = _this.__CkTextStyle_skTextStyle; if (value === $) { result = new A.CkTextStyle_skTextStyle_closure(_this).call$0(); A._lateInitializeOnceCheck(_this.__CkTextStyle_skTextStyle, "skTextStyle"); _this.__CkTextStyle_skTextStyle = result; value = result; } return value; } }; A.CkTextStyle_skTextStyle_closure.prototype = { call$0() { var decorationValue, t2, value, result, ckShadows, _i, shadow, ckShadow, t3, point, skFontFeatures, skFontFeature, t1 = this.$this, color = t1.color, decoration = t1.decoration, decorationColor = t1.decorationColor, decorationStyle = t1.decorationStyle, decorationThickness = t1.decorationThickness, fontWeight = t1.fontWeight, fontStyle = t1.fontStyle, textBaseline = t1.textBaseline, fontSize = t1.fontSize, letterSpacing = t1.letterSpacing, wordSpacing = t1.wordSpacing, height = t1.height, background = t1.background, foreground = t1.foreground, shadows = t1.shadows, properties = A.SkTextStyleProperties$(null); if (background != null) properties.backgroundColor = A.makeFreshSkColor(background.__engine$_color); if (color != null) properties.color = A.makeFreshSkColor(color); if (decoration != null) { decorationValue = J.get$NoDecoration$x($.__canvasKit._readField$0()); t2 = decoration._mask; if ((t2 | 1) === t2) decorationValue = (decorationValue | J.get$UnderlineDecoration$x($.__canvasKit._readField$0())) >>> 0; if ((t2 | 2) === t2) decorationValue = (decorationValue | J.get$OverlineDecoration$x($.__canvasKit._readField$0())) >>> 0; properties.decoration = (t2 | 4) === t2 ? (decorationValue | J.get$LineThroughDecoration$x($.__canvasKit._readField$0())) >>> 0 : decorationValue; } if (decorationThickness != null) properties.decorationThickness = decorationThickness; if (decorationColor != null) properties.decorationColor = A.makeFreshSkColor(decorationColor); if (decorationStyle != null) properties.decorationStyle = $.$get$_skTextDecorationStyles()[decorationStyle.index]; if (textBaseline != null) properties.textBaseline = $.$get$_skTextBaselines()[textBaseline.index]; if (fontSize != null) properties.fontSize = fontSize; if (letterSpacing != null) properties.letterSpacing = letterSpacing; if (wordSpacing != null) properties.wordSpacing = wordSpacing; if (height != null) properties.heightMultiplier = height; switch (t1.leadingDistribution) { case null: break; case B.TextLeadingDistribution_1: properties.halfLeading = true; break; case B.TextLeadingDistribution_0: properties.halfLeading = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } value = t1.__CkTextStyle_effectiveFontFamilies; if (value === $) { result = A._getEffectiveFontFamilies(t1.fontFamily, t1.fontFamilyFallback); A._lateInitializeOnceCheck(t1.__CkTextStyle_effectiveFontFamilies, "effectiveFontFamilies"); t1.__CkTextStyle_effectiveFontFamilies = result; value = result; } properties.fontFamilies = value; if (fontWeight != null || fontStyle != null) properties.fontStyle = A.toSkFontStyle(fontWeight, fontStyle); if (foreground != null) properties.foregroundColor = A.makeFreshSkColor(foreground.__engine$_color); if (shadows != null) { ckShadows = A._setArrayType([], type$.JSArray_SkTextShadow); for (t2 = shadows.length, _i = 0; _i < shadows.length; shadows.length === t2 || (0, A.throwConcurrentModificationError)(shadows), ++_i) { shadow = shadows[_i]; ckShadow = A.SkTextShadow$(null); ckShadow.color = A.makeFreshSkColor(shadow.color); t3 = shadow.offset; point = new Float32Array(2); point[0] = t3._dx; point[1] = t3._dy; ckShadow.offset = point; ckShadow.blurRadius = shadow.blurRadius; ckShadows.push(ckShadow); } properties.shadows = ckShadows; } if (t1.fontFeatures != null) { skFontFeatures = A._setArrayType([], type$.JSArray_SkFontFeature); for (_i = 0; _i < 1; ++_i) { skFontFeature = A.SkFontFeature$(null); skFontFeature.name = "tnum"; skFontFeature.value = 1; skFontFeatures.push(skFontFeature); } properties.fontFeatures = skFontFeatures; } return J.TextStyle$1$x($.__canvasKit._readField$0(), properties); }, $signature: 1148 }; A.CkStrutStyle.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.CkStrutStyle) if (other._fontFamily == _this._fontFamily) if (other.__engine$_fontSize == _this.__engine$_fontSize) if (other.__engine$_height == _this.__engine$_height) t1 = other._fontWeight == _this._fontWeight && other._fontStyle == _this._fontStyle && other._forceStrutHeight == _this._forceStrutHeight && A.listEquals(other._fontFamilyFallback, _this._fontFamilyFallback); else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.hashValues(_this._fontFamily, _this._fontFamilyFallback, _this.__engine$_fontSize, _this.__engine$_height, _this._leading, _this._leadingDistribution, _this._fontWeight, _this._fontStyle, _this._forceStrutHeight, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.CkParagraph.prototype = { _ensureInitialized$1(constraints) { var e, builder, t1, t2, t3, t4, t5, _i, command, t6, didRebuildSkiaObject, constraintsChanged, exception, _this = this, paragraph = _this._skParagraph; if (paragraph == null) { builder = A.CkParagraphBuilder$(_this._paragraphStyle); for (t1 = _this._paragraphCommands, t2 = t1.length, t3 = builder._commands, t4 = builder._paragraphBuilder, t5 = J.getInterceptor$x(t4), _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { command = t1[_i]; switch (command.type.index) { case 0: t6 = command.text; t6.toString; builder.addText$1(0, t6); break; case 1: builder.pop$0(0); break; case 2: t6 = command.style; t6.toString; builder.pushStyle$1(0, t6); break; case 3: t6 = command.placeholderStyle; t6.toString; t3.push(new A._ParagraphCommand(B._ParagraphCommandType_3, null, null, t6)); t5.addPlaceholder$5(t4, t6.width, t6.height, t6.alignment, t6.baseline, t6.offset); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } paragraph = builder._buildSkParagraph$0(); _this._skParagraph = paragraph; didRebuildSkiaObject = true; } else didRebuildSkiaObject = false; constraintsChanged = !J.$eq$(_this._lastLayoutConstraints, constraints); if (didRebuildSkiaObject || constraintsChanged) { _this._lastLayoutConstraints = constraints; try { J.layout$1$x(paragraph, constraints.width); _this._alphabeticBaseline = J.getAlphabeticBaseline$0$x(paragraph); _this._didExceedMaxLines = J.didExceedMaxLines$0$x(paragraph); _this.__engine$_height = J.getHeight$0$x(paragraph); _this._ideographicBaseline = J.getIdeographicBaseline$0$x(paragraph); _this._longestLine = J.getLongestLine$0$x(paragraph); _this._maxIntrinsicWidth = J.getMaxIntrinsicWidth$0$x(paragraph); _this._minIntrinsicWidth = J.getMinIntrinsicWidth$0$x(paragraph); _this.__engine$_width = J.getMaxWidth$0$x(paragraph); _this._boxesForPlaceholders = _this.skRectsToTextBoxes$1(J.getRectsForPlaceholders$0$x(paragraph)); } catch (exception) { e = A.unwrapException(exception); $.$get$printWarning().call$1('CanvasKit threw an exception while laying out the paragraph. The font was "' + A.S(_this._paragraphStyle._fontFamily) + '". Exception:\n' + A.S(e)); throw exception; } } return paragraph; }, delete$0(_) { var t1 = this._skParagraph; t1.toString; J.delete$0$x(t1); }, didDelete$0() { this._skParagraph = null; }, get$alphabeticBaseline(_) { return this._alphabeticBaseline; }, get$didExceedMaxLines(_) { return this._didExceedMaxLines; }, get$height(_) { return this.__engine$_height; }, get$ideographicBaseline(_) { return this._ideographicBaseline; }, get$longestLine() { return this._longestLine; }, get$maxIntrinsicWidth() { return this._maxIntrinsicWidth; }, get$minIntrinsicWidth() { return this._minIntrinsicWidth; }, get$width(_) { return this.__engine$_width; }, getBoxesForPlaceholders$0() { var t1 = this._boxesForPlaceholders; t1.toString; return t1; }, getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, boxWidthStyle) { var t1, paragraph, index, t2; if (start < 0 || end < 0) return B.List_empty8; t1 = this._lastLayoutConstraints; t1.toString; paragraph = this._ensureInitialized$1(t1); t1 = $.$get$_skRectHeightStyles()[boxHeightStyle.index]; index = boxWidthStyle.index; t2 = $.$get$_skRectWidthStyles(); return this.skRectsToTextBoxes$1(J.getRectsForRange$4$x(paragraph, start, end, t1, t2[index < 2 ? index : 0])); }, getBoxesForRange$3$boxHeightStyle(start, end, boxHeightStyle) { return this.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, B.BoxWidthStyle_0); }, skRectsToTextBoxes$1(skRects) { var t1, t2, t3, i, rect, t4, result = A._setArrayType([], type$.JSArray_TextBox); for (t1 = J.getInterceptor$asx(skRects), t2 = type$.List_double, t3 = this._paragraphStyle, i = 0; i < t1.get$length(skRects); ++i) { rect = t2._as(t1.$index(skRects, i)); t4 = J.getInterceptor$asx(rect); result.push(new A.TextBox(t4.$index(rect, 0), t4.$index(rect, 1), t4.$index(rect, 2), t4.$index(rect, 3), t3.__engine$_textDirection)); } return result; }, getPositionForOffset$1(offset) { var positionWithAffinity, affinity, t1 = this._lastLayoutConstraints; t1.toString; positionWithAffinity = J.getGlyphPositionAtCoordinate$2$x(this._ensureInitialized$1(t1), offset._dx, offset._dy); t1 = J.getInterceptor$x(positionWithAffinity); affinity = B.List_TextAffinity_0_TextAffinity_1[J.get$value$x(t1.get$affinity(positionWithAffinity))]; return new A.TextPosition(t1.get$pos(positionWithAffinity), affinity); }, getWordBoundary$1(_, position) { var skRange, t1 = this._lastLayoutConstraints; t1.toString; skRange = J.getWordBoundary$1$x(this._ensureInitialized$1(t1), position.offset); t1 = J.getInterceptor$x(skRange); return new A.TextRange(t1.get$start(skRange), t1.get$end(skRange)); }, layout$1(_, constraints) { var _this = this; if (J.$eq$(_this._lastLayoutConstraints, constraints)) return; _this._ensureInitialized$1(constraints); if (!$.$get$CkParagraph__paragraphCache().markUsed$1(_this)) $.$get$CkParagraph__paragraphCache().add$1(0, _this); }, getLineBoundary$1(position) { var offset, t2, t3, t1 = this._lastLayoutConstraints; t1.toString; offset = position.offset; for (t1 = J.get$iterator$ax(J.getLineMetrics$0$x(this._ensureInitialized$1(t1))); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = J.getInterceptor$x(t2); if (offset >= t3.get$startIndex(t2) && offset <= t3.get$endIndex(t2)) return new A.TextRange(t3.get$startIndex(t2), t3.get$endIndex(t2)); } return B.TextRange_m1_m1; }, computeLineMetrics$0() { var skLineMetrics, result, t1 = this._lastLayoutConstraints; t1.toString; skLineMetrics = J.getLineMetrics$0$x(this._ensureInitialized$1(t1)); result = A._setArrayType([], type$.JSArray_LineMetrics); for (t1 = J.get$iterator$ax(skLineMetrics); t1.moveNext$0();) result.push(new A.CkLineMetrics(t1.get$current(t1))); return result; } }; A.CkLineMetrics.prototype = { get$descent(_) { return J.get$descent$x(this.skLineMetrics); }, get$baseline(_) { return J.get$baseline$x(this.skLineMetrics); }, get$lineNumber(_) { return J.get$lineNumber$x(this.skLineMetrics); }, $isLineMetrics: 1 }; A.CkParagraphBuilder.prototype = { addPlaceholder$6$baseline$baselineOffset$scale(_, width, height, alignment, baseline, baselineOffset, scale) { var t1; ++this._placeholderCount; this._placeholderScales.push(scale); t1 = baselineOffset == null ? height : baselineOffset; this._addPlaceholder$1(new A._CkParagraphPlaceholder(width * scale, height * scale, $.$get$_skPlaceholderAlignments()[alignment.index], $.$get$_skTextBaselines()[0], t1 * scale)); }, addPlaceholder$4$scale($receiver, width, height, alignment, scale) { return this.addPlaceholder$6$baseline$baselineOffset$scale($receiver, width, height, alignment, null, null, scale); }, _addPlaceholder$1(placeholderStyle) { this._commands.push(new A._ParagraphCommand(B._ParagraphCommandType_3, null, null, placeholderStyle)); J.addPlaceholder$5$x(this._paragraphBuilder, placeholderStyle.width, placeholderStyle.height, placeholderStyle.alignment, placeholderStyle.baseline, placeholderStyle.offset); }, addText$1(_, text) { var fontFamilies = A._setArrayType([], type$.JSArray_String), style = B.JSArray_methods.get$last(this._styleStack), t1 = style.fontFamily; if (t1 != null) fontFamilies.push(t1); t1 = style.fontFamilyFallback; if (t1 != null) B.JSArray_methods.addAll$1(fontFamilies, t1); $.$get$FontFallbackData__instance().ensureFontsSupportText$2(text, fontFamilies); this._commands.push(new A._ParagraphCommand(B._ParagraphCommandType_0, text, null, null)); J.addText$1$x(this._paragraphBuilder, text); }, build$0(_) { return new A.CkParagraph(this._buildSkParagraph$0(), this._style, this._commands); }, _buildSkParagraph$0() { var t1 = this._paragraphBuilder, t2 = J.getInterceptor$x(t1), result = t2.build$0(t1); t2.delete$0(t1); return result; }, get$placeholderCount() { return this._placeholderCount; }, get$placeholderScales() { return this._placeholderScales; }, pop$0(_) { var t1 = this._styleStack; if (t1.length <= 1) return; this._commands.push(B._ParagraphCommand_6TA); t1.pop(); J.pop$0$x(this._paragraphBuilder); }, pushStyle$1(_, style) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, skStyle, foreground, background, _this = this, _null = null, t1 = _this._styleStack, baseStyle = B.JSArray_methods.get$last(t1); type$.CkTextStyle._as(style); t2 = style.color; if (t2 == null) t2 = baseStyle.color; t3 = style.decoration; if (t3 == null) t3 = baseStyle.decoration; t4 = style.decorationColor; if (t4 == null) t4 = baseStyle.decorationColor; t5 = style.decorationStyle; if (t5 == null) t5 = baseStyle.decorationStyle; t6 = style.decorationThickness; if (t6 == null) t6 = baseStyle.decorationThickness; t7 = style.fontWeight; if (t7 == null) t7 = baseStyle.fontWeight; t8 = style.fontStyle; if (t8 == null) t8 = baseStyle.fontStyle; t9 = style.textBaseline; if (t9 == null) t9 = baseStyle.textBaseline; t10 = style.fontFamily; if (t10 == null) t10 = baseStyle.fontFamily; t11 = style.fontFamilyFallback; if (t11 == null) t11 = baseStyle.fontFamilyFallback; t12 = style.fontSize; if (t12 == null) t12 = baseStyle.fontSize; t13 = style.letterSpacing; if (t13 == null) t13 = baseStyle.letterSpacing; t14 = style.wordSpacing; if (t14 == null) t14 = baseStyle.wordSpacing; t15 = style.height; if (t15 == null) t15 = baseStyle.height; t16 = style.leadingDistribution; if (t16 == null) t16 = baseStyle.leadingDistribution; t17 = style.background; if (t17 == null) t17 = baseStyle.background; t18 = style.foreground; if (t18 == null) t18 = baseStyle.foreground; t19 = style.shadows; if (t19 == null) t19 = baseStyle.shadows; t20 = style.fontFeatures; if (t20 == null) t20 = baseStyle.fontFeatures; skStyle = A.CkTextStyle_CkTextStyle(t17, t2, t3, t4, t5, t6, t10, t11, t20, t12, t8, t7, t18, t15, t16, t13, baseStyle.locale, t19, t9, t14); t1.push(skStyle); _this._commands.push(new A._ParagraphCommand(B._ParagraphCommandType_2, _null, style, _null)); t1 = skStyle.foreground; t2 = t1 == null; if (!t2 || skStyle.background != null) { foreground = t2 ? _null : t1.get$skiaObject(); if (foreground == null) { foreground = $.$get$CkParagraphBuilder__defaultTextForeground(); t1 = skStyle.color; t1 = t1 == null ? _null : t1.get$value(t1); J.setColorInt$1$x(foreground, t1 == null ? 4278190080 : t1); } t1 = skStyle.background; background = t1 == null ? _null : t1.get$skiaObject(); if (background == null) background = $.$get$CkParagraphBuilder__defaultTextBackground(); J.pushPaintStyle$3$x(_this._paragraphBuilder, skStyle.get$skTextStyle(), foreground, background); } else J.pushStyle$1$x(_this._paragraphBuilder, skStyle.get$skTextStyle()); } }; A._CkParagraphPlaceholder.prototype = {}; A._ParagraphCommand.prototype = {}; A._ParagraphCommandType.prototype = { toString$0(_) { return "_ParagraphCommandType." + this._core$_name; } }; A._getEffectiveFontFamilies_closure.prototype = { call$1(font) { return this.fontFamily == font; }, $signature: 52 }; A.CanvasKitError.prototype = { toString$0(_) { return "CanvasKitError: " + this.message; }, get$message(receiver) { return this.message; } }; A.ClipboardMessageHandler.prototype = { setDataMethodCall$2(methodCall, callback) { var t1 = {}; t1.errorEnvelopeEncoded = false; this._copyToClipboardStrategy.setData$1(0, A._asStringQ(J.$index$asx(methodCall.$arguments, "text"))).then$1$1(0, new A.ClipboardMessageHandler_setDataMethodCall_closure(t1, callback), type$.Null).catchError$1(new A.ClipboardMessageHandler_setDataMethodCall_closure0(t1, callback)); }, getDataMethodCall$1(callback) { this._pasteFromClipboardStrategy.getData$0(0).then$1$1(0, new A.ClipboardMessageHandler_getDataMethodCall_closure(callback), type$.Null).catchError$1(new A.ClipboardMessageHandler_getDataMethodCall_closure0(this, callback)); } }; A.ClipboardMessageHandler_setDataMethodCall_closure.prototype = { call$1(success) { var t1 = this.callback; if (success) { t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1([true])); } else { t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1(["copy_fail", "Clipboard.setData failed", null])); this._box_0.errorEnvelopeEncoded = true; } }, $signature: 454 }; A.ClipboardMessageHandler_setDataMethodCall_closure0.prototype = { call$1(_) { var t1; if (!this._box_0.errorEnvelopeEncoded) { t1 = this.callback; t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1(["copy_fail", "Clipboard.setData failed", null])); } }, $signature: 7 }; A.ClipboardMessageHandler_getDataMethodCall_closure.prototype = { call$1(data) { var map = A.LinkedHashMap_LinkedHashMap$_literal(["text", data], type$.String, type$.dynamic), t1 = this.callback; t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1([map])); }, $signature: 1138 }; A.ClipboardMessageHandler_getDataMethodCall_closure0.prototype = { call$1(error) { var t1; if (error instanceof A.UnimplementedError) { A.Future_Future$delayed(B.Duration_0, null, type$.void).then$1$1(0, new A.ClipboardMessageHandler_getDataMethodCall__closure(this.callback), type$.Null); return; } t1 = this.callback; A.print("Could not get text from clipboard: " + A.S(error)); t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1(["paste_fail", "Clipboard.getData failed", null])); }, $signature: 7 }; A.ClipboardMessageHandler_getDataMethodCall__closure.prototype = { call$1(_) { var t1 = this.callback; if (t1 != null) t1.call$1(null); }, $signature: 86 }; A.ClipboardAPICopyStrategy.prototype = { setData$1(_, text) { return this.setData$body$ClipboardAPICopyStrategy(0, text); }, setData$body$ClipboardAPICopyStrategy(_, text) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], error, t1, exception, $async$exception; var $async$setData$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; t1 = window.navigator.clipboard; t1.toString; text.toString; $async$goto = 7; return A._asyncAwait(A.promiseToFuture(t1.writeText(text), type$.dynamic), $async$setData$1); case 7: // returning from await. $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; error = A.unwrapException($async$exception); A.print("copy is not successful " + A.S(error)); t1 = A.Future_Future$value(false, type$.bool); $async$returnValue = t1; // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally $async$returnValue = A.Future_Future$value(true, type$.bool); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$setData$1, $async$completer); } }; A.ClipboardAPIPasteStrategy.prototype = { getData$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue; var $async$getData$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = A.promiseToFuture(window.navigator.clipboard.readText(), type$.String); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getData$0, $async$completer); } }; A.ExecCommandCopyStrategy.prototype = { setData$1(_, text) { return A.Future_Future$value(this._setDataSync$1(text), type$.bool); }, _setDataSync$1(text) { var tempTextArea, result, error, exception, _s8_ = "-99999px", _s11_ = "transparent", t1 = document, tempElement = t1.createElement("textarea"), elementStyle = tempElement.style; elementStyle.position = "absolute"; elementStyle.top = _s8_; elementStyle.left = _s8_; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "0", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; t1.body.appendChild(tempElement); tempTextArea = tempElement; tempTextArea.value = text; J.focus$0$x(tempTextArea); J.select$0$x(tempTextArea); result = false; try { result = t1.execCommand("copy"); if (!result) A.print("copy is not successful"); } catch (exception) { error = A.unwrapException(exception); A.print("copy is not successful " + A.S(error)); } finally { J.remove$0$ax(tempTextArea); } return result; } }; A.ExecCommandPasteStrategy.prototype = { getData$0(_) { return A.Future_Future$error(new A.UnimplementedError("Paste is not implemented for this browser."), null, type$.String); } }; A.FlutterConfiguration.prototype = { get$canvasKitBaseUrl(_) { var t1 = this._js; t1 = t1 == null ? null : J.get$canvasKitBaseUrl$x(t1); return t1 == null ? "https://unpkg.com/canvaskit-wasm@0.33.0/bin/" : t1; }, get$canvasKitForceCpuOnly(_) { var t1 = this._js; t1 = t1 == null ? null : J.get$canvasKitForceCpuOnly$x(t1); return t1 == null ? false : t1; }, get$canvasKitMaximumSurfaces(_) { var t1 = this._js; t1 = t1 == null ? null : J.get$canvasKitMaximumSurfaces$x(t1); return t1 == null ? 8 : t1; }, get$debugShowSemanticsNodes(_) { var t1 = this._js; t1 = t1 == null ? null : J.get$debugShowSemanticsNodes$x(t1); return t1 == null ? false : t1; } }; A.JsFlutterConfiguration.prototype = {}; A.FlutterViewEmbedder.prototype = { renderScene$1(sceneElement) { var t1 = this._sceneElement; if (sceneElement == null ? t1 != null : sceneElement !== t1) { if (t1 != null) J.remove$0$ax(t1); this._sceneElement = sceneElement; t1 = this._sceneHostElement; t1.toString; sceneElement.toString; t1.appendChild(sceneElement); } }, reset$0(_) { var t3, t4, t5, glassPaneElement, glassPaneElementHostNode, semanticsHostElement, _accessibilityPlaceholder, _this = this, _s1_ = "0", _s4_ = "none", _s8_ = "absolute", _box_0 = {}, t1 = $.$get$_browserEngine(), isWebKit = t1 === B.BrowserEngine_1, t2 = _this._styleElement; if (t2 != null) B.StyleElement_methods.remove$0(t2); t2 = document; t3 = t2.createElement("style"); _this._styleElement = t3; _this._resourcesHost = null; t2.head.appendChild(t3); t3 = _this._styleElement.sheet; t3.toString; type$.CssStyleSheet._as(t3); if (t1 !== B.BrowserEngine_0) if (t1 !== B.BrowserEngine_5) t4 = isWebKit; else t4 = true; else t4 = true; A.applyGlobalCssRulesToSheet(t3, t1, t4); t4 = t2.body; t4.toString; t4.setAttribute("flt-renderer", ($.$get$useCanvasKit() ? "canvaskit" : "html") + " (auto-selected)"); t4.setAttribute("flt-build-mode", "profile"); A.setElementStyle(t4, "position", "fixed"); A.setElementStyle(t4, "top", _s1_); A.setElementStyle(t4, "right", _s1_); A.setElementStyle(t4, "bottom", _s1_); A.setElementStyle(t4, "left", _s1_); A.setElementStyle(t4, "overflow", "hidden"); A.setElementStyle(t4, "padding", _s1_); A.setElementStyle(t4, "margin", _s1_); A.setElementStyle(t4, "user-select", _s4_); A.setElementStyle(t4, "-webkit-user-select", _s4_); A.setElementStyle(t4, "-ms-user-select", _s4_); A.setElementStyle(t4, "-moz-user-select", _s4_); A.setElementStyle(t4, "touch-action", _s4_); A.setElementStyle(t4, "font", "normal normal 14px sans-serif"); A.setElementStyle(t4, "color", "red"); t4.spellcheck = false; for (t1 = type$._FrozenElementList_Element, t3 = new A._FrozenElementList(t2.head.querySelectorAll('meta[name="viewport"]'), t1), t1 = new A.ListIterator(t3, t3.get$length(t3), t1._eval$1("ListIterator")); t1.moveNext$0();) { t3 = t1.__internal$_current; t5 = t3.parentNode; if (t5 != null) t5.removeChild(t3); } t1 = _this._viewportMeta; if (t1 != null) B.MetaElement_methods.remove$0(t1); t1 = t2.createElement("meta"); t1.setAttribute("flt-viewport", ""); t1.name = "viewport"; t1.content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"; _this._viewportMeta = t1; t2.head.appendChild(t1); t1 = _this._glassPaneElement; if (t1 != null) J.remove$0$ax(t1); glassPaneElement = t2.createElement("flt-glass-pane"); _this._glassPaneElement = glassPaneElement; t1 = glassPaneElement.style; t1.position = _s8_; t1.top = _s1_; t1.right = _s1_; t1.bottom = _s1_; t1.left = _s1_; t4.appendChild(glassPaneElement); glassPaneElementHostNode = _this._glassPaneShadow = _this._createHostNode$1(glassPaneElement); t1 = t2.createElement("flt-scene-host"); t3 = t1.style; t3.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t3, B.CssStyleDeclaration_methods._browserPropertyName$1(t3, "pointer-events"), _s4_, ""); _this._sceneHostElement = t1; semanticsHostElement = t2.createElement("flt-semantics-host"); t1 = semanticsHostElement.style; t1.position = _s8_; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); _this._semanticsHostElement = semanticsHostElement; _this.updateSemanticsScreenProperties$0(); t1 = $.EngineSemanticsOwner__instance; _accessibilityPlaceholder = (t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).semanticsHelper._semanticsEnabler.prepareAccessibilityPlaceholder$0(); t1 = glassPaneElementHostNode.get$nodes(glassPaneElementHostNode); t2 = _this._sceneHostElement; t2.toString; t1.addAll$1(0, A._setArrayType([semanticsHostElement, _accessibilityPlaceholder, t2], type$.JSArray_Node)); t1 = $._configuration; if (t1 == null) t1 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); if (t1.get$debugShowSemanticsNodes(t1)) { t1 = _this._sceneHostElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "opacity"), "0.3", ""); } if ($.PointerBinding__instance == null) { t1 = new A.PointerBinding(glassPaneElement, new A.PointerDataConverter(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._PointerState))); t1.__PointerBinding__adapter = t1._createAdapter$0(); $.PointerBinding__instance = t1; } if ($.KeyboardBinding__instance == null) { t1 = new A.KeyboardBinding(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event)); t1._setup$0(); $.KeyboardBinding__instance = t1; } _this._sceneHostElement.setAttribute("aria-hidden", "true"); if (window.visualViewport == null && isWebKit) { t1 = window.innerWidth; t1.toString; _box_0.checkCount = 0; A.Timer_Timer$periodic(B.Duration_100000, new A.FlutterViewEmbedder_reset_closure(_box_0, _this, t1)); } t1 = _this.get$_metricsDidChange(); t2 = type$.legacy_Event; if (window.visualViewport != null) { t3 = window.visualViewport; t3.toString; _this._resizeSubscription = A._EventStreamSubscription$(t3, "resize", t1, false, t2); } else _this._resizeSubscription = A._EventStreamSubscription$(window, "resize", t1, false, t2); _this._localeSubscription = A._EventStreamSubscription$(window, "languagechange", _this.get$_languageDidChange(), false, t2); t1 = $.$get$EnginePlatformDispatcher__instance(); t1._configuration = t1._configuration.copyWith$1$locales(A.EnginePlatformDispatcher_parseBrowserLanguages()); }, _createHostNode$1(root) { var t1, t2, shadowRootStyleElement, t3, t4; if (root.attachShadow != null) { t1 = new A.ShadowDomHostNode(); t2 = root.attachShadow(A.convertDartToNative_Dictionary(A.LinkedHashMap_LinkedHashMap$_literal(["mode", "open", "delegatesFocus", false], type$.String, type$.dynamic))); t1.__ShadowDomHostNode__shadow = t2; shadowRootStyleElement = document.createElement("style"); A._lateReadCheck(t2, "_shadow").appendChild(shadowRootStyleElement); t2 = shadowRootStyleElement.sheet; t2.toString; type$.CssStyleSheet._as(t2); t3 = $.$get$_browserEngine(); if (t3 !== B.BrowserEngine_0) if (t3 !== B.BrowserEngine_5) t4 = t3 === B.BrowserEngine_1; else t4 = true; else t4 = true; A.applyGlobalCssRulesToSheet(t2, t3, t4); return t1; } else { t1 = new A.ElementHostNode(); t2 = document.createElement("flt-element-host-node"); t1.__ElementHostNode__element = t2; root.appendChild(A._lateReadCheck(t2, "_element")); return t1; } }, updateSemanticsScreenProperties$0() { var t1 = this._semanticsHostElement.style, t2 = window.devicePixelRatio; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "scale(" + A.S(1 / t2) + ")", ""); }, _metricsDidChange$1($event) { var t1; this.updateSemanticsScreenProperties$0(); t1 = $.$get$_operatingSystem(); if (!J.containsKey$1$x(B.Set_69tl2._collection$_map, t1) && !$.$get$window().isRotation$0() && $.$get$textEditing().isEditing) { $.$get$window().computeOnScreenKeyboardInsets$1(true); $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); } else { t1 = $.$get$window(); t1.computePhysicalSize$0(); t1.computeOnScreenKeyboardInsets$1(false); $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); } }, _languageDidChange$1($event) { var t1 = $.$get$EnginePlatformDispatcher__instance(); t1._configuration = t1._configuration.copyWith$1$locales(A.EnginePlatformDispatcher_parseBrowserLanguages()); t1 = $.$get$window().platformDispatcher._onLocaleChanged; if (t1 != null) t1.call$0(); }, setPreferredOrientation$1(orientations) { var lockType, completer, t1, exception, screenOrientation = window.screen.orientation; if (screenOrientation != null) { t1 = J.getInterceptor$asx(orientations); if (t1.get$isEmpty(orientations)) { t1 = screenOrientation; t1.toString; J.unlock$0$x(t1); return A.Future_Future$value(true, type$.bool); } else { lockType = A.FlutterViewEmbedder__deviceOrientationToLockType(A._asStringQ(t1.get$first(orientations))); if (lockType != null) { completer = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_bool), type$._AsyncCompleter_bool); try { A.promiseToFuture(screenOrientation.lock(lockType), type$.dynamic).then$1$1(0, new A.FlutterViewEmbedder_setPreferredOrientation_closure(completer), type$.Null).catchError$1(new A.FlutterViewEmbedder_setPreferredOrientation_closure0(completer)); } catch (exception) { t1 = A.Future_Future$value(false, type$.bool); return t1; } return completer.future; } } } return A.Future_Future$value(false, type$.bool); } }; A.FlutterViewEmbedder_reset_closure.prototype = { call$1(t) { var t1 = ++this._box_0.checkCount; if (this.initialInnerWidth != window.innerWidth) { t.cancel$0(0); this.$this._metricsDidChange$1(null); } else if (t1 > 5) t.cancel$0(0); }, $signature: 505 }; A.FlutterViewEmbedder_setPreferredOrientation_closure.prototype = { call$1(_) { this.completer.complete$1(0, true); }, $signature: 7 }; A.FlutterViewEmbedder_setPreferredOrientation_closure0.prototype = { call$1(error) { this.completer.complete$1(0, false); }, $signature: 7 }; A.EngineCanvas.prototype = { dispose$0(_) { this.clear$0(0); } }; A.SaveStackEntry.prototype = {}; A.SaveClipEntry.prototype = {}; A._SaveElementStackEntry.prototype = {}; A.SaveElementStackTracking.prototype = { clear$0(_) { B.JSArray_methods.set$length(this.SaveElementStackTracking__saveStack, 0); B.JSArray_methods.set$length(this.SaveElementStackTracking__elementStack, 0); this.SaveElementStackTracking__currentTransform = A.Matrix4$identity(); }, save$0(_) { var t2, t3, _this = this, t1 = _this.SaveElementStackTracking__elementStack; t1 = t1.length === 0 ? _this.rootElement : B.JSArray_methods.get$last(t1); t2 = _this.SaveElementStackTracking__currentTransform; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); _this.SaveElementStackTracking__saveStack.push(new A._SaveElementStackEntry(t1, t3)); }, restore$0(_) { var entry, t2, t3, _this = this, t1 = _this.SaveElementStackTracking__saveStack; if (t1.length === 0) return; entry = t1.pop(); _this.SaveElementStackTracking__currentTransform = entry.transform; t1 = _this.SaveElementStackTracking__elementStack; t2 = entry.savedElement; t3 = _this.rootElement; while (true) { if (!((t1.length === 0 ? t3 : B.JSArray_methods.get$last(t1)) == null ? t2 != null : (t1.length === 0 ? t3 : B.JSArray_methods.get$last(t1)) !== t2)) break; t1.pop(); } }, translate$2(_, dx, dy) { this.SaveElementStackTracking__currentTransform.translate$2(0, dx, dy); }, scale$2(_, sx, sy) { this.SaveElementStackTracking__currentTransform.scale$2(0, sx, sy); }, rotate$1(_, radians) { this.SaveElementStackTracking__currentTransform.rotate$2(0, $.$get$SaveElementStackTracking__unitZ(), radians); }, transform$1(_, matrix4) { this.SaveElementStackTracking__currentTransform.multiply$1(0, new A.Matrix40(matrix4)); } }; A.sendFontChangeMessage_closure.prototype = { call$1(_) { $._fontChangeScheduled = false; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/system", $.$get$_fontChangeMessage(), new A.sendFontChangeMessage__closure()); }, $signature: 800 }; A.sendFontChangeMessage__closure.prototype = { call$1(_) { }, $signature: 135 }; A.FrameReference.prototype = { get$value(receiver) { return this.value; } }; A.CrossFrameCache.prototype = { commitFrame$0() { var t2, t3, _this = this, t1 = _this._reusablePool; if (t1 != null) for (t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) for (t1 = J.get$iterator$ax(t2.__internal$_current); t1.moveNext$0();) { t3 = t1.get$current(t1); t3.evictCallback.call$1(t3.value); } _this._reusablePool = _this.__engine$_cache; _this.__engine$_cache = null; }, _addToCache$2(key, item) { var t2, _this = this, t1 = _this.__engine$_cache; if (t1 == null) t1 = _this.__engine$_cache = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, _this.$ti._eval$1("List<_CrossFrameCacheItem<1>>")); t2 = t1.$index(0, key); if (t2 == null) { t2 = A._setArrayType([], _this.$ti._eval$1("JSArray<_CrossFrameCacheItem<1>>")); t1.$indexSet(0, key, t2); t1 = t2; } else t1 = t2; t1.push(item); }, reuse$1(key) { var items, item, t1 = this._reusablePool; if (t1 == null) return null; items = t1.$index(0, key); if (items == null || items.length === 0) return null; item = (items && B.JSArray_methods).removeAt$1(items, 0); this._addToCache$2(key, item); return item.value; } }; A._CrossFrameCacheItem.prototype = { get$value(receiver) { return this.value; } }; A.ShadowDomHostNode.prototype = { append$1(_, node) { return A._lateReadCheck(this.__ShadowDomHostNode__shadow, "_shadow").appendChild(node); }, get$node() { return A._lateReadCheck(this.__ShadowDomHostNode__shadow, "_shadow"); }, get$nodes(_) { var t1 = A._lateReadCheck(this.__ShadowDomHostNode__shadow, "_shadow"); t1.toString; return new A._ChildNodeListLazy(t1); } }; A.ElementHostNode.prototype = { append$1(_, node) { return A._lateReadCheck(this.__ElementHostNode__element, "_element").appendChild(node); }, get$node() { return A._lateReadCheck(this.__ElementHostNode__element, "_element"); }, get$nodes(_) { var t1 = A._lateReadCheck(this.__ElementHostNode__element, "_element"); t1.toString; return new A._ChildNodeListLazy(t1); } }; A.PersistedBackdropFilter.prototype = { get$childContainer() { return this._childContainer; }, adoptElements$1(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._childContainer = oldSurface._childContainer; this._filterElement = oldSurface._filterElement; oldSurface._childContainer = null; }, createElement$0(_) { var _this = this, _s16_ = "transform-origin", element = _this.defaultCreateElement$1("flt-backdrop"), t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s16_), "0 0 0", ""); t1 = A._ElementFactoryProvider_createElement_tag("flt-backdrop-interior", null); _this._childContainer = t1; t1 = t1.style; t1.position = "absolute"; t1 = _this.defaultCreateElement$1("flt-backdrop-filter"); _this._filterElement = t1; t1 = t1.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s16_), "0 0 0", ""); t1 = _this._filterElement; t1.toString; element.appendChild(t1); t1 = _this._childContainer; t1.toString; element.appendChild(t1); return element; }, discard$0() { this.super$PersistedContainerSurface$discard(); this._filterElement = this._childContainer = null; }, apply$0() { var r, dpr, rect, left, $top, width, height, parentSurface, activeClipBounds, filterElementStyle, _this = this, t1 = _this._previousTransform, t2 = _this.transform; if (t1 != t2) { t2.toString; r = new A.Matrix40(new Float32Array(16)); if (r.copyInverse$1(t2) === 0) A.throwExpression(A.ArgumentError$value(t2, "other", "Matrix cannot be inverted")); _this.__PersistedBackdropFilter__invertedTransform = r; _this._previousTransform = _this.transform; } t1 = $.$get$window(); dpr = t1._debugDevicePixelRatio; if (dpr == null) dpr = A.EnginePlatformDispatcher_browserDevicePixelRatio(); rect = A.transformRect(A._lateReadCheck(_this.__PersistedBackdropFilter__invertedTransform, "_invertedTransform"), new A.Rect(0, 0, t1.get$physicalSize()._dx * dpr, t1.get$physicalSize()._dy * dpr)); left = rect.left; $top = rect.top; width = rect.right - left; height = rect.bottom - $top; parentSurface = _this.parent; for (; parentSurface != null;) { if (parentSurface.get$isClipping()) { activeClipBounds = _this._activeClipBounds = parentSurface.localClipBounds; left = activeClipBounds.left; $top = activeClipBounds.top; width = activeClipBounds.right - left; height = activeClipBounds.bottom - $top; break; } parentSurface = parentSurface.parent; } filterElementStyle = _this._filterElement.style; filterElementStyle.position = "absolute"; filterElementStyle.left = A.S(left) + "px"; filterElementStyle.top = A.S($top) + "px"; filterElementStyle.width = A.S(width) + "px"; filterElementStyle.height = A.S(height) + "px"; t1 = $.$get$_browserEngine(); if (t1 === B.BrowserEngine_2) { filterElementStyle.backgroundColor = "#000"; B.CssStyleDeclaration_methods._setPropertyHelper$3(filterElementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(filterElementStyle, "opacity"), "0.2", ""); } else { if (t1 === B.BrowserEngine_1) { t1 = _this._filterElement; t1.toString; _this.filter.toString; A.setElementStyle(t1, "-webkit-backdrop-filter", ""); } t1 = _this._filterElement; t1.toString; _this.filter.toString; A.setElementStyle(t1, "backdrop-filter", ""); } }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (!J.$eq$(_this.filter, oldSurface.filter)) _this.apply$0(); else _this._checkForUpdatedAncestorClipElement$0(); }, _checkForUpdatedAncestorClipElement$0() { var parentSurface = this.parent; for (; parentSurface != null;) { if (parentSurface.get$isClipping()) { if (!J.$eq$(parentSurface.localClipBounds, this._activeClipBounds)) this.apply$0(); break; } parentSurface = parentSurface.parent; } }, retain$0() { this.super$PersistedContainerSurface$retain(); this._checkForUpdatedAncestorClipElement$0(); }, $isBackdropFilterEngineLayer0: 1 }; A.BitmapCanvas.prototype = { set$bounds(_, newValue) { var newCanvasPositionX, newCanvasPositionY, _this = this; _this._bounds = newValue; newCanvasPositionX = J.floor$0$n(newValue.left) - 1; newCanvasPositionY = J.floor$0$n(_this._bounds.top) - 1; if (_this._canvasPositionX !== newCanvasPositionX || _this._canvasPositionY !== newCanvasPositionY) { _this._canvasPositionX = newCanvasPositionX; _this._canvasPositionY = newCanvasPositionY; _this._updateRootElementTransform$0(); } }, _updateRootElementTransform$0() { var t1 = this.rootElement.style, t2 = this._canvasPositionX, t3 = this._canvasPositionY; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(" + t2 + "px, " + t3 + "px)", ""); }, _setupInitialTransform$0() { var _this = this, t1 = _this._bounds, t2 = t1.left, t3 = _this._canvasPositionX; t1 = t1.top; _this._canvasPool.translate$2(0, -t2 + (t2 - 1 - t3) + 1, -t1 + (t1 - 1 - _this._canvasPositionY) + 1); }, doesFitBounds$2(newBounds, newDensity) { return this.widthInBitmapPixels >= A.BitmapCanvas_widthToPhysical(newBounds.right - newBounds.left) && this.heightInBitmapPixels >= A.BitmapCanvas_heightToPhysical(newBounds.bottom - newBounds.top) && this._density === newDensity; }, dispose$0(_) { this._canvasPool.dispose$0(0); }, clear$0(_) { var t1, len, t2, i, child, t3, _this = this; _this._contains3dTransform = false; _this._canvasPool.clear$0(0); t1 = _this.__engine$_children; len = t1.length; for (t2 = _this.rootElement, i = 0; i < len; ++i) { child = t1[i]; if (child.parentElement === t2) { t3 = child.parentNode; if (t3 != null) t3.removeChild(child); } } B.JSArray_methods.set$length(t1, 0); _this._childOverdraw = false; _this._cachedLastCssFont = null; _this._setupInitialTransform$0(); }, save$0(_) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$save(0); if (t1.__engine$_canvas != null) { t1.get$context(t1).save(); ++t1._saveContextCount; } return this._saveCount++; }, restore$0(_) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$restore(0); if (t1.__engine$_canvas != null) { t1.get$context(t1).restore(); t1.get$contextHandle().reset$0(0); --t1._saveContextCount; } --this._saveCount; this._cachedLastCssFont = null; }, translate$2(_, dx, dy) { this._canvasPool.translate$2(0, dx, dy); }, scale$2(_, sx, sy) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$scale(0, sx, sy); if (t1.__engine$_canvas != null) t1.get$context(t1).scale(sx, sy); }, rotate$1(_, radians) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$rotate(0, radians); if (t1.__engine$_canvas != null) t1.get$context(t1).rotate(radians); }, transform$1(_, matrix4) { var t1; if (A.transformKindOf(matrix4) === B.TransformKind_2) this._contains3dTransform = true; t1 = this._canvasPool; t1.super$_SaveStackTracking$transform(0, matrix4); if (t1.__engine$_canvas != null) t1.get$context(t1).transform(matrix4[0], matrix4[1], matrix4[4], matrix4[5], matrix4[12], matrix4[13]); }, clipRect$2(_, rect, clipOp) { var path, t2, t1 = this._canvasPool; if (clipOp === B.ClipOp_0) { path = A.SurfacePath$(); path._fillType = B.PathFillType_1; t2 = this._bounds; path.addRectWithDirection$3(new A.Rect(0, 0, 0 + (t2.right - t2.left), 0 + (t2.bottom - t2.top)), 0, 0); path.addRectWithDirection$3(rect, 0, 0); t1.clipPath$1(0, path); } else { t1.super$_SaveStackTracking$clipRect(0, rect); if (t1.__engine$_canvas != null) t1.__engine$_clipRect$2(t1.get$context(t1), rect); } }, clipRRect$1(_, rrect) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$clipRRect(0, rrect); if (t1.__engine$_canvas != null) t1.__engine$_clipRRect$2(t1.get$context(t1), rrect); }, clipPath$1(_, path) { this._canvasPool.clipPath$1(0, path); }, _useDomForRenderingFill$1(paint) { var t1, _this = this; if (!_this._renderStrategy.isInsideSvgFilterTree) if (!(!_this._preserveImageData && _this._contains3dTransform)) t1 = _this._childOverdraw && _this._canvasPool.__engine$_canvas == null && paint.maskFilter == null && paint.shader == null && paint.style !== B.PaintingStyle_1; else t1 = true; else t1 = true; return t1; }, _useDomForRenderingFillAndStroke$1(paint) { var _this = this, t1 = _this._renderStrategy; if (!t1.isInsideSvgFilterTree) if (!(!_this._preserveImageData && _this._contains3dTransform)) t1 = (_this._childOverdraw || t1.hasImageElements || t1.hasParagraphs) && _this._canvasPool.__engine$_canvas == null && paint.maskFilter == null && paint.shader == null; else t1 = true; else t1 = true; return t1; }, drawLine$3(_, p1, p2, paint) { var path, shaderBounds, t1, ctx, t2, t3, t4, t5, t6, t7; if (this._useDomForRenderingFill$1(paint)) { path = A.SurfacePath$(); path.moveTo$2(0, p1._dx, p1._dy); path.lineTo$2(0, p2._dx, p2._dy); this.drawPath$2(0, path, paint); } else { shaderBounds = paint.shader != null ? A.Rect$fromPoints(p1, p2) : null; t1 = this._canvasPool; t1.get$contextHandle().setUpPaint$2(paint, shaderBounds); ctx = t1.get$context(t1); ctx.beginPath(); shaderBounds = t1.get$contextHandle()._shaderBounds; t2 = p1._dx; t3 = p1._dy; t4 = p2._dx; t5 = p2._dy; if (shaderBounds == null) { ctx.moveTo(t2, t3); ctx.lineTo(t4, t5); } else { t6 = shaderBounds.left; t7 = shaderBounds.top; ctx.moveTo(t2 - t6, t3 - t7); ctx.lineTo(t4 - t6, t5 - t7); } ctx.stroke(); t1.get$contextHandle().tearDownPaint$0(); } }, drawRect$2(_, rect, paint) { var element, t2, t3, shaderBounds, t4, t5, t6, t1 = this._canvasPool; if (this._useDomForRenderingFillAndStroke$1(paint)) { element = A.buildDrawRectElement(rect, paint, "draw-rect", t1._currentTransform); t1 = rect.left; t2 = rect.right; t2 = Math.min(A.checkNum(t1), A.checkNum(t2)); t1 = rect.top; t3 = rect.bottom; this._drawElement$3(element, new A.Offset(t2, Math.min(A.checkNum(t1), A.checkNum(t3))), paint); } else { t1.get$contextHandle().setUpPaint$2(paint, rect); t2 = paint.style; t1.get$context(t1).beginPath(); shaderBounds = t1.get$contextHandle()._shaderBounds; if (shaderBounds == null) { t3 = t1.get$context(t1); t4 = rect.left; t5 = rect.top; t3.rect(t4, t5, rect.right - t4, rect.bottom - t5); } else { t3 = t1.get$context(t1); t4 = rect.left; t5 = shaderBounds.left; t6 = rect.top; t3.rect(t4 - t5, t6 - shaderBounds.top, rect.right - t4, rect.bottom - t6); } t1.get$contextHandle().paint$1(t2); t1.get$contextHandle().tearDownPaint$0(); } }, _drawElement$3(element, offset, paint) { var clipElements, t3, _i, clipElement, blendMode, _this = this, t1 = _this._canvasPool, t2 = t1.clipStack; if (t2 != null) { clipElements = A._clipContent(t2, element, B.Offset_0_0, A.transformWithOffset(t1._currentTransform, offset)); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, A.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { _this.rootElement.appendChild(element); _this.__engine$_children.push(element); } blendMode = paint.blendMode; if (blendMode != null) { t1 = element.style; t2 = A.blendModeToCssMixBlendMode(blendMode); if (t2 == null) t2 = ""; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "mix-blend-mode"), t2, ""); } _this._closeCurrentCanvas$0(); }, drawRRect$2(_, rrect, paint) { var element, shaderBounds, left, right, $top, bottom, t0, trRadiusX, tlRadiusX, trRadiusY, tlRadiusY, blRadiusX, brRadiusX, blRadiusY, brRadiusY, t1 = rrect.left, t2 = rrect.top, t3 = rrect.right, t4 = rrect.bottom, t5 = this._canvasPool; if (this._useDomForRenderingFillAndStroke$1(paint)) { element = A.buildDrawRectElement(new A.Rect(t1, t2, t3, t4), paint, "draw-rrect", t5._currentTransform); A.applyRRectBorderRadius(element.style, rrect); this._drawElement$3(element, new A.Offset(Math.min(A.checkNum(t1), A.checkNum(t3)), Math.min(A.checkNum(t2), A.checkNum(t4))), paint); } else { t5.get$contextHandle().setUpPaint$2(paint, new A.Rect(t1, t2, t3, t4)); t1 = paint.style; shaderBounds = t5.get$contextHandle()._shaderBounds; t2 = t5.get$context(t5); rrect = (shaderBounds == null ? rrect : rrect.shift$1(new A.Offset(-shaderBounds.left, -shaderBounds.top))).scaleRadii$0(); left = rrect.left; right = rrect.right; $top = rrect.top; bottom = rrect.bottom; if (left > right) { t0 = right; right = left; left = t0; } if ($top > bottom) { t0 = bottom; bottom = $top; $top = t0; } trRadiusX = Math.abs(rrect.trRadiusX); tlRadiusX = Math.abs(rrect.tlRadiusX); trRadiusY = Math.abs(rrect.trRadiusY); tlRadiusY = Math.abs(rrect.tlRadiusY); blRadiusX = Math.abs(rrect.blRadiusX); brRadiusX = Math.abs(rrect.brRadiusX); blRadiusY = Math.abs(rrect.blRadiusY); brRadiusY = Math.abs(rrect.brRadiusY); t2.beginPath(); t2.moveTo(left + trRadiusX, $top); t3 = right - trRadiusX; t2.lineTo(t3, $top); A.drawEllipse(t2, t3, $top + trRadiusY, trRadiusX, trRadiusY, 0, 4.71238898038469, 6.283185307179586, false); t3 = bottom - brRadiusY; t2.lineTo(right, t3); A.drawEllipse(t2, right - brRadiusX, t3, brRadiusX, brRadiusY, 0, 0, 1.5707963267948966, false); t3 = left + blRadiusX; t2.lineTo(t3, bottom); A.drawEllipse(t2, t3, bottom - blRadiusY, blRadiusX, blRadiusY, 0, 1.5707963267948966, 3.141592653589793, false); t3 = $top + tlRadiusY; t2.lineTo(left, t3); A.drawEllipse(t2, left + tlRadiusX, t3, tlRadiusX, tlRadiusY, 0, 3.141592653589793, 4.71238898038469, false); t5.get$contextHandle().paint$1(t1); t5.get$contextHandle().tearDownPaint$0(); } }, drawCircle$3(_, c, radius, paint) { var element, t1, t2, shaderBounds, t3, cx, cy, _this = this, rect = A.Rect$fromCircle(c, radius); if (_this._useDomForRenderingFillAndStroke$1(paint)) { element = A.buildDrawRectElement(rect, paint, "draw-circle", _this._canvasPool._currentTransform); _this._drawElement$3(element, new A.Offset(Math.min(A.checkNum(rect.left), A.checkNum(rect.right)), Math.min(A.checkNum(rect.top), A.checkNum(rect.bottom))), paint); t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "border-radius"), "50%", ""); } else { t1 = paint.shader != null ? A.Rect$fromCircle(c, radius) : null; t2 = _this._canvasPool; t2.get$contextHandle().setUpPaint$2(paint, t1); t1 = paint.style; t2.get$context(t2).beginPath(); shaderBounds = t2.get$contextHandle()._shaderBounds; t3 = shaderBounds == null; cx = t3 ? c._dx : c._dx - shaderBounds.left; cy = t3 ? c._dy : c._dy - shaderBounds.top; A.drawEllipse(t2.get$context(t2), cx, cy, radius, radius, 0, 0, 6.283185307179586, false); t2.get$contextHandle().paint$1(t1); t2.get$contextHandle().tearDownPaint$0(); } }, drawPath$2(_, path, paint) { var t1, transform, pathAsLine, t2, t3, t4, rect, pathAsRect, pathAsRRect, pathBounds, svgElm, style, cssColor, sigma, _this = this; if (_this._useDomForRenderingFill$1(paint)) { t1 = _this._canvasPool; transform = t1._currentTransform; type$.SurfacePath._as(path); pathAsLine = path.pathRef.getStraightLine$0(); if (pathAsLine != null) { t2 = pathAsLine.top; t3 = pathAsLine.bottom; t4 = pathAsLine.left; rect = t2 == t3 ? new A.Rect(t4, t2, t4 + (pathAsLine.right - t4), t2 + 1) : new A.Rect(t4, t2, t4 + 1, t2 + (t3 - t2)); _this._drawElement$3(A.buildDrawRectElement(rect, paint, "draw-rect", t1._currentTransform), new A.Offset(Math.min(A.checkNum(rect.left), A.checkNum(rect.right)), Math.min(A.checkNum(rect.top), A.checkNum(rect.bottom))), paint); return; } pathAsRect = path.pathRef.getRect$0(); if (pathAsRect != null) { _this.drawRect$2(0, pathAsRect, paint); return; } t2 = path.pathRef; pathAsRRect = t2.fIsRRect ? t2._getRRect$0() : null; if (pathAsRRect != null) { _this.drawRRect$2(0, pathAsRRect, paint); return; } pathBounds = path.getBounds$0(0); svgElm = A.pathToSvgElement(path, paint, A.S(pathBounds.right), A.S(pathBounds.bottom)); if (t1.clipStack == null) { style = svgElm.style; style.position = "absolute"; if (!transform.isIdentity$0(0)) { t1 = A.float64ListToCssTransform(transform.__engine$_m4storage); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform"), t1, ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform-origin"), "0 0 0", ""); } } if (paint.maskFilter != null) { t1 = paint.style; t2 = paint.color; if (t2 == null) cssColor = "#000000"; else { t2 = A.colorToCssString(t2); t2.toString; cssColor = t2; } sigma = paint.maskFilter._sigma; t2 = $.$get$_browserEngine(); if (t2 === B.BrowserEngine_1 && t1 !== B.PaintingStyle_1) { t1 = svgElm.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "box-shadow"), "0px 0px " + A.S(sigma * 2) + "px " + cssColor, ""); } else { t1 = svgElm.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "filter"), "blur(" + A.S(sigma) + "px)", ""); } } _this._drawElement$3(svgElm, B.Offset_0_0, paint); } else { t1 = paint.shader != null ? path.getBounds$0(0) : null; t2 = _this._canvasPool; t2.get$contextHandle().setUpPaint$2(paint, t1); t1 = paint.style; if (t1 == null && paint.strokeWidth != null) t2.drawPath$2(0, path, B.PaintingStyle_1); else t2.drawPath$2(0, path, t1); t2.get$contextHandle().tearDownPaint$0(); } }, drawShadow$4(_, path, color, elevation, transparentOccluder) { var t2, solidColor, t3, t4, t5, t1 = this._canvasPool, shadow = A.computeShadow(path.getBounds$0(0), elevation); if (shadow != null) { t2 = A.toShadowColor(color).value; solidColor = A.colorComponentsToCssString(t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255, 255); t1.get$context(t1).save(); t1.get$context(t1).globalAlpha = (t2 >>> 24 & 255) / 255; t2 = $.$get$_browserEngine(); t2 = t2 !== B.BrowserEngine_1; t3 = shadow.offset; t4 = shadow.blurWidth; t5 = t3._dx; t3 = t3._dy; if (t2) { t1.get$context(t1).translate(t5, t3); t1.get$context(t1).filter = A.maskFilterToCanvasFilter(new A.MaskFilter(B.BlurStyle_0, t4)); t1.get$context(t1).strokeStyle = ""; t1.get$context(t1).fillStyle = solidColor; } else { t1.get$context(t1).filter = "none"; t1.get$context(t1).strokeStyle = ""; t1.get$context(t1).fillStyle = solidColor; t1.get$context(t1).shadowBlur = t4; t1.get$context(t1).shadowColor = solidColor; t1.get$context(t1).shadowOffsetX = t5; t1.get$context(t1).shadowOffsetY = t3; } t1._runPath$2(t1.get$context(t1), path); t1.get$context(t1).fill(); t1.get$context(t1).restore(); } }, _reuseOrCreateImage$1(htmlImage) { var t2, imageElement, newImageElement, t1 = htmlImage.imgElement.src; t1.toString; t2 = this._elementCache; if (t2 != null) { imageElement = t2.reuse$1(t1); if (imageElement != null) return imageElement; } newImageElement = htmlImage.cloneImageElement$0(); t2 = this._elementCache; if (t2 != null) t2._addToCache$2(t1, new A._CrossFrameCacheItem(newImageElement, A._engine_BitmapCanvas__onEvictElement$closure(), t2.$ti._eval$1("_CrossFrameCacheItem<1>"))); return newImageElement; }, _drawImage$3(image, p, paint) { var blendMode, colorFilter, imgElement, t1, t2, clipElements, t3, _i, clipElement, cssTransform, _this = this; type$.HtmlImage._as(image); blendMode = paint.blendMode; colorFilter = paint.colorFilter; if (colorFilter instanceof A.CkBlendModeColorFilter) imgElement = _this._createImageElementWithBlend$4(image, colorFilter.color, colorFilter.blendMode, paint); else imgElement = _this._reuseOrCreateImage$1(image); t1 = imgElement.style; t2 = A.blendModeToCssMixBlendMode(blendMode); if (t2 == null) t2 = ""; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "mix-blend-mode"), t2, ""); t1 = _this._canvasPool; if (t1.clipStack != null) { t2 = imgElement.style; t2.removeProperty("width"); t2.removeProperty("height"); t2 = t1.clipStack; t2.toString; clipElements = A._clipContent(t2, imgElement, p, t1._currentTransform); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, A.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { cssTransform = A.float64ListToCssTransform(A.transformWithOffset(t1._currentTransform, p).__engine$_m4storage); t1 = imgElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), cssTransform, ""); t1.removeProperty("width"); t1.removeProperty("height"); _this.rootElement.appendChild(imgElement); _this.__engine$_children.push(imgElement); } return imgElement; }, _createImageElementWithBlend$4(image, color, blendMode, paint) { var builder, svgFilter, r, b, g, imgElement, t2, style, _s9_ = "destalpha", _s5_ = "flood", _s4_ = "comp", _s13_ = "SourceGraphic", _s8_ = "absolute", t1 = blendMode.index; switch (t1) { case 19: case 18: case 25: case 13: case 15: case 12: case 5: case 9: case 7: case 26: case 27: case 28: case 11: case 10: switch (t1) { case 5: case 9: builder = A.SvgFilterBuilder$(); builder.filter.setAttribute("color-interpolation-filters", "sRGB"); builder.setFeColorMatrix$2$result(B.List_ek3, _s9_); t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); builder.setFeComposite$8$in1$in2$k1$k2$k3$k4$operator$result(_s5_, _s9_, 1, 0, 0, 0, 6, _s4_); svgFilter = builder.build$0(0); break; case 7: builder = A.SvgFilterBuilder$(); t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); builder.setFeComposite$4$in1$in2$operator$result(_s5_, _s13_, 3, _s4_); svgFilter = builder.build$0(0); break; case 10: builder = A.SvgFilterBuilder$(); t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); builder.setFeComposite$4$in1$in2$operator$result(_s13_, _s5_, 4, _s4_); svgFilter = builder.build$0(0); break; case 11: builder = A.SvgFilterBuilder$(); t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); builder.setFeComposite$4$in1$in2$operator$result(_s5_, _s13_, 5, _s4_); svgFilter = builder.build$0(0); break; case 12: builder = A.SvgFilterBuilder$(); t1 = A.colorToCssString(color); builder.setFeFlood$3$floodColor$floodOpacity$result(t1 == null ? "" : t1, "1", _s5_); builder.setFeComposite$8$in1$in2$k1$k2$k3$k4$operator$result(_s5_, _s13_, 0, 1, 1, 0, 6, _s4_); svgFilter = builder.build$0(0); break; case 13: r = color.get$red().$div(0, 255); b = color.get$blue().$div(0, 255); g = color.get$green().$div(0, 255); builder = A.SvgFilterBuilder$(); builder.setFeColorMatrix$2$result(A._setArrayType([0, 0, 0, 0, r, 0, 0, 0, 0, g, 0, 0, 0, 0, b, 0, 0, 0, 1, 0], type$.JSArray_double), "recolor"); builder.setFeComposite$8$in1$in2$k1$k2$k3$k4$operator$result("recolor", _s13_, 1, 0, 0, 0, 6, _s4_); svgFilter = builder.build$0(0); break; case 15: t1 = A.blendModeToSvgEnum(B.BlendMode_20); t1.toString; svgFilter = A._blendColorFilterToSvg(color, t1, true); break; case 26: case 18: case 19: case 25: case 27: case 28: case 24: case 14: case 16: case 17: case 20: case 21: case 22: case 23: t1 = A.blendModeToSvgEnum(blendMode); t1.toString; svgFilter = A._blendColorFilterToSvg(color, t1, false); break; case 1: case 2: case 6: case 8: case 4: case 0: case 3: A.throwExpression(A.UnimplementedError$("Blend mode not supported in HTML renderer: " + blendMode.toString$0(0))); svgFilter = null; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); svgFilter = null; } t1 = svgFilter.element; this.rootElement.appendChild(t1); this.__engine$_children.push(t1); imgElement = this._reuseOrCreateImage$1(image); t1 = imgElement.style; t2 = svgFilter.id; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "filter"), "url(#" + t2 + ")", ""); if (blendMode === B.BlendMode_26) { t1 = imgElement.style; t2 = A.colorToCssString(color); t1.toString; t1.backgroundColor = t2 == null ? "" : t2; } return imgElement; default: imgElement = document.createElement("div"); style = imgElement.style; switch (t1) { case 0: case 8: style.position = _s8_; break; case 1: case 3: style.position = _s8_; t1 = A.colorToCssString(color); style.backgroundColor = t1 == null ? "" : t1; break; case 2: case 6: style.position = _s8_; t1 = image.imgElement.src; style.backgroundImage = "url('" + A.S(t1) + "')"; break; default: style.position = _s8_; t1 = image.imgElement.src; style.backgroundImage = "url('" + A.S(t1) + "')"; t1 = A.blendModeToCssMixBlendMode(blendMode); if (t1 == null) t1 = ""; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "background-blend-mode"), t1, ""); t1 = A.colorToCssString(color); style.backgroundColor = t1 == null ? "" : t1; break; } return imgElement; } }, drawImageRect$4(image, src, dst, paint) { var t2, requiresClipping, targetLeft, targetWidth, targetTop, t3, targetTop0, imgElement, targetHeight, imageStyle, widthPx, heightPx, _this = this, t1 = src.left; if (t1 === 0) { t2 = src.top; requiresClipping = t2 !== 0 || src.right - t1 !== image.get$width(image) || src.bottom - t2 !== image.get$height(image); } else requiresClipping = true; t2 = dst.right; targetLeft = dst.left; targetWidth = t2 - targetLeft; if (targetWidth === image.get$width(image) && dst.bottom - dst.top === image.get$height(image) && !requiresClipping && paint.colorFilter == null) _this._drawImage$3(image, new A.Offset(targetLeft, dst.top), paint); else { if (requiresClipping) { _this.save$0(0); _this.clipRect$2(0, dst, B.ClipOp_1); } targetTop = dst.top; if (requiresClipping) { t2 = src.right - t1; if (t2 !== image.get$width(image)) targetLeft += -t1 * (targetWidth / t2); t2 = src.top; t3 = src.bottom - t2; targetTop0 = t3 !== image.get$height(image) ? targetTop + -t2 * ((dst.bottom - targetTop) / t3) : targetTop; } else targetTop0 = targetTop; imgElement = _this._drawImage$3(image, new A.Offset(targetLeft, targetTop0), paint); targetHeight = dst.bottom - targetTop; if (requiresClipping) { targetWidth *= image.get$width(image) / (src.right - t1); targetHeight *= image.get$height(image) / (src.bottom - src.top); } imageStyle = imgElement.style; widthPx = B.JSNumber_methods.toStringAsFixed$1(targetWidth, 2) + "px"; heightPx = B.JSNumber_methods.toStringAsFixed$1(targetHeight, 2) + "px"; imageStyle.left = "0px"; imageStyle.top = "0px"; imageStyle.width = widthPx; imageStyle.height = heightPx; if (!type$.ImageElement._is(imgElement)) { t1 = imgElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "background-size"), widthPx + " " + heightPx, ""); } if (requiresClipping) _this.restore$0(0); } _this._closeCurrentCanvas$0(); }, _closeCurrentCanvas$0() { var t2, t3, t1 = this._canvasPool; if (t1.__engine$_canvas != null) { t1._restoreContextSave$0(); t1._contextHandle.reset$0(0); t2 = t1._activeCanvasList; if (t2 == null) t2 = t1._activeCanvasList = A._setArrayType([], type$.JSArray_CanvasElement); t3 = t1.__engine$_canvas; t3.toString; t2.push(t3); t1._contextHandle = t1.__engine$_context = t1.__engine$_canvas = null; } this._childOverdraw = true; this._cachedLastCssFont = null; }, drawText$5$shadows$style(text, x, y, shadows, style) { var t2, _i, shadow, t3, t1 = this._canvasPool, ctx = t1.get$context(t1); if (shadows != null) { ctx.save(); for (t1 = shadows.length, t2 = style === B.PaintingStyle_1, _i = 0; _i < shadows.length; shadows.length === t1 || (0, A.throwConcurrentModificationError)(shadows), ++_i) { shadow = shadows[_i]; t3 = A.colorToCssString(shadow.color); t3.toString; ctx.shadowColor = t3; ctx.shadowBlur = shadow.blurRadius; t3 = shadow.offset; ctx.shadowOffsetX = t3._dx; ctx.shadowOffsetY = t3._dy; if (t2) ctx.strokeText(text, x, y); else ctx.fillText(text, x, y); } ctx.restore(); } if (style === B.PaintingStyle_1) ctx.strokeText(text, x, y); else (ctx && B.CanvasRenderingContext2D_methods).fillText$3(ctx, text, x, y); }, drawText$4$style(text, x, y, style) { return this.drawText$5$shadows$style(text, x, y, null, style); }, drawParagraph$2(_, paragraph, offset) { var value, paragraphElement, t1, t2, clipElements, t3, _i, clipElement, _this = this; if (paragraph.drawOnCanvas && !_this._childOverdraw && !_this._renderStrategy.isInsideSvgFilterTree) { value = paragraph.__CanvasParagraph__paintService; if (value === $) { A._lateInitializeOnceCheck(value, "_paintService"); value = paragraph.__CanvasParagraph__paintService = new A.TextPaintService(paragraph); } value.paint$2(_this, offset); return; } paragraphElement = A.drawParagraphElement(paragraph, offset, null); t1 = _this._canvasPool; t2 = t1.clipStack; t1 = t1._currentTransform; if (t2 != null) { clipElements = A._clipContent(t2, paragraphElement, offset, t1); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, A.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { A.setElementTransform(paragraphElement, A.transformWithOffset(t1, offset).__engine$_m4storage); _this.rootElement.appendChild(paragraphElement); } _this.__engine$_children.push(paragraphElement); t1 = paragraphElement.style; t1.left = "0px"; t1.top = "0px"; _this._closeCurrentCanvas$0(); }, endOfPaint$0() { var t1, t2, t3, t4, paintOrderElement, t5, t6, firstChild, _this = this; _this._canvasPool.endOfPaint$0(); t1 = _this._elementCache; if (t1 != null) t1.commitFrame$0(); if (_this._contains3dTransform) { t1 = $.$get$_browserEngine(); t1 = t1 === B.BrowserEngine_1; } else t1 = false; if (t1) for (t1 = _this.rootElement, t2 = J.get$children$x(t1), t2 = t2.get$iterator(t2), t3 = _this.__engine$_children; t2.moveNext$0();) { t4 = t2.__interceptors$_current; paintOrderElement = document.createElement("div"); t5 = paintOrderElement.style; t5.toString; t6 = B.CssStyleDeclaration_methods._browserPropertyName$1(t5, "transform"); t5.setProperty(t6, "translate3d(0,0,0)", ""); paintOrderElement.appendChild(t4); t1.appendChild(paintOrderElement); t3.push(paintOrderElement); } firstChild = _this.rootElement.firstChild; if (firstChild != null && type$.HtmlElement._is(firstChild) && firstChild.tagName.toLowerCase() === "canvas") { t1 = firstChild.style; t1.zIndex = "-1"; } } }; A.SvgBlendMode.prototype = {}; A.SurfaceCanvas.prototype = { save$0(_) { var t1 = this.__engine$_canvas; t1._paintBounds.saveTransformsAndClip$0(); t1._commands.push(B.C_PaintSave); ++t1._saveCount; }, saveLayer$2(_, bounds, paint) { var t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(B.C_PaintSave); t1._paintBounds.saveTransformsAndClip$0(); ++t1._saveCount; }, restore$0(_) { var t2, clipRect, t1 = this.__engine$_canvas; if (!t1._recordingEnded && t1._saveCount > 1) { t2 = t1._paintBounds; t2._currentMatrix = t2.__engine$_transforms.pop(); clipRect = t2._clipStack.pop(); if (clipRect != null) { t2._currentClipLeft = clipRect.left; t2._currentClipTop = clipRect.top; t2._currentClipRight = clipRect.right; t2._currentClipBottom = clipRect.bottom; t2._clipRectInitialized = true; } else if (t2._clipRectInitialized) t2._clipRectInitialized = false; } t2 = t1._commands; if (t2.length !== 0 && B.JSArray_methods.get$last(t2) instanceof A.PaintSave) t2.pop(); else t2.push(B.C_PaintRestore); --t1._saveCount; }, translate$2(_, dx, dy) { var t1 = this.__engine$_canvas, t2 = t1._paintBounds; if (dx !== 0 || dy !== 0) t2._currentMatrixIsIdentity = false; t2._currentMatrix.translate$2(0, dx, dy); t1._commands.push(new A.PaintTranslate(dx, dy)); }, scale$2(_, sx, sy) { var t1 = sy == null ? sx : sy, t2 = this.__engine$_canvas, t3 = t2._paintBounds; if (sx !== 1 || t1 !== 1) t3._currentMatrixIsIdentity = false; t3._currentMatrix.scale$2(0, sx, t1); t2._commands.push(new A.PaintScale(sx, t1)); return null; }, rotate$1(_, radians) { var cosAngle, sinAngle, t3, t4, t5, t6, t7, t8, t9, t10, t11, t1 = this.__engine$_canvas, t2 = t1._paintBounds; if (radians !== 0) t2._currentMatrixIsIdentity = false; t2 = t2._currentMatrix; cosAngle = Math.cos(radians); sinAngle = Math.sin(radians); t2 = t2.__engine$_m4storage; t3 = t2[0]; t4 = t2[4]; t5 = t2[1]; t6 = t2[5]; t7 = t2[2]; t8 = t2[6]; t9 = t2[3]; t10 = t2[7]; t11 = -sinAngle; t2[0] = t3 * cosAngle + t4 * sinAngle; t2[1] = t5 * cosAngle + t6 * sinAngle; t2[2] = t7 * cosAngle + t8 * sinAngle; t2[3] = t9 * cosAngle + t10 * sinAngle; t2[4] = t3 * t11 + t4 * cosAngle; t2[5] = t5 * t11 + t6 * cosAngle; t2[6] = t7 * t11 + t8 * cosAngle; t2[7] = t9 * t11 + t10 * cosAngle; t1._commands.push(new A.PaintRotate(radians)); }, transform$1(_, matrix4) { var t1 = A.toMatrix32(matrix4), t2 = this.__engine$_canvas, t3 = t2._paintBounds; t3._currentMatrix.multiply$1(0, new A.Matrix40(t1)); t3._currentMatrixIsIdentity = t3._currentMatrix.isIdentity$0(0); t2._commands.push(new A.PaintTransform(t1)); }, clipRect$3$clipOp$doAntiAlias(_, rect, clipOp, doAntiAlias) { var t1 = this.__engine$_canvas, command = new A.PaintClipRect(rect, clipOp, -1 / 0, -1 / 0, 1 / 0, 1 / 0); switch (clipOp.index) { case 1: t1._paintBounds.clipRect$2(0, rect, command); break; case 0: break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipRect$2$doAntiAlias($receiver, rect, doAntiAlias) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, B.ClipOp_1, doAntiAlias); }, clipRect$1($receiver, rect) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, B.ClipOp_1, true); }, clipRRect$2$doAntiAlias(_, rrect, doAntiAlias) { var t1 = this.__engine$_canvas, command = new A.PaintClipRRect(rrect, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.clipRect$2(0, new A.Rect(rrect.left, rrect.top, rrect.right, rrect.bottom), command); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipRRect$1($receiver, rrect) { return this.clipRRect$2$doAntiAlias($receiver, rrect, true); }, clipPath$2$doAntiAlias(_, path, doAntiAlias) { var command, t1 = this.__engine$_canvas; type$.SurfacePath._as(path); command = new A.PaintClipPath(path, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.clipRect$2(0, path.getBounds$0(0), command); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipPath$1($receiver, path) { return this.clipPath$2$doAntiAlias($receiver, path, true); }, drawLine$3(_, p1, p2, paint) { var paintSpread, command, t2, t3, t4, t5, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); paintSpread = Math.max(A._getPaintSpread(paint), 1); paint._frozen = true; command = new A.PaintDrawLine(p1, p2, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t2 = p1._dx; t3 = p2._dx; t4 = p1._dy; t5 = p2._dy; t1._paintBounds.growLTRB$5(Math.min(A.checkNum(t2), A.checkNum(t3)) - paintSpread, Math.min(A.checkNum(t4), A.checkNum(t5)) - paintSpread, Math.max(A.checkNum(t2), A.checkNum(t3)) + paintSpread, Math.max(A.checkNum(t4), A.checkNum(t5)) + paintSpread, command); t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, drawRect$2(_, rect, paint) { this.__engine$_canvas.drawRect$2(0, rect, type$.SurfacePaint._as(paint)); }, drawRRect$2(_, rrect, paint) { this.__engine$_canvas.drawRRect$2(0, rrect, type$.SurfacePaint._as(paint)); }, drawDRRect$3(_, outer, inner, paint) { this.__engine$_canvas.drawDRRect$3(0, outer, inner, type$.SurfacePaint._as(paint)); }, drawCircle$3(_, c, radius, paint) { var paintSpread, command, distance, t2, t3, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; paintSpread = A._getPaintSpread(paint); paint._frozen = true; command = new A.PaintDrawCircle(c, radius, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); distance = radius + paintSpread; t2 = c._dx; t3 = c._dy; t1._paintBounds.growLTRB$5(t2 - distance, t3 - distance, t2 + distance, t3 + distance, command); t1._commands.push(command); }, drawArc$5(_, rect, startAngle, sweepAngle, useCenter, paint) { var forceMoveTo, path = A.Path_Path(); if (sweepAngle <= -6.283185307179586) { path.arcTo$4(0, rect, startAngle, -3.141592653589793, true); startAngle -= 3.141592653589793; path.arcTo$4(0, rect, startAngle, -3.141592653589793, false); startAngle -= 3.141592653589793; sweepAngle += 6.283185307179586; forceMoveTo = false; } else forceMoveTo = true; for (; sweepAngle >= 6.283185307179586; forceMoveTo = false) { path.arcTo$4(0, rect, startAngle, 3.141592653589793, forceMoveTo); startAngle += 3.141592653589793; path.arcTo$4(0, rect, startAngle, 3.141592653589793, false); startAngle += 3.141592653589793; sweepAngle -= 6.283185307179586; } path.arcTo$4(0, rect, startAngle, sweepAngle, forceMoveTo); this.__engine$_canvas.drawPath$2(0, path, type$.SurfacePaint._as(paint)); }, drawPath$2(_, path, paint) { this.__engine$_canvas.drawPath$2(0, path, type$.SurfacePaint._as(paint)); }, drawImageRect$4(image, src, dst, paint) { var t2, command, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t2 = t1.renderStrategy; paint._frozen = t1._didDraw = t2.hasImageElements = t2.hasArbitraryPaint = true; command = new A.PaintDrawImageRect(image, src, dst, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.grow$2(dst, command); t1._commands.push(command); }, drawParagraph$2(_, paragraph, offset) { this.__engine$_canvas.drawParagraph$2(0, paragraph, offset); }, drawShadow$4(_, path, color, elevation, transparentOccluder) { var shadowRect, command, t1 = this.__engine$_canvas; t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; shadowRect = A.computePenumbraBounds(path.getBounds$0(0), elevation); command = new A.PaintDrawShadow(type$.SurfacePath._as(path), color, elevation, true, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.grow$2(shadowRect, command); t1._commands.push(command); } }; A._DomClip.prototype = { get$childContainer() { return this._DomClip__childContainer; }, createElement$0(_) { var element = this.defaultCreateElement$1("flt-clip"), t1 = A._ElementFactoryProvider_createElement_tag("flt-clip-interior", null); this._DomClip__childContainer = t1; t1 = t1.style; t1.position = "absolute"; t1 = this._DomClip__childContainer; t1.toString; element.appendChild(t1); return element; }, applyOverflow$2(element, clipBehaviour) { var t1; if (clipBehaviour !== B.Clip_0) { t1 = element.style; t1.overflow = "hidden"; t1.zIndex = "0"; } } }; A.PersistedClipRect.prototype = { recomputeTransformAndClip$0() { var _this = this; _this.transform = _this.parent.transform; if (_this.clipBehavior !== B.Clip_0) _this.localClipBounds = _this.rect; else _this.localClipBounds = null; _this.projectedClip = null; }, createElement$0(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "rect"); return t1; }, apply$0() { var t4, t5, _this = this, t1 = _this.rootElement.style, t2 = _this.rect, t3 = t2.left; t1.left = A.S(t3) + "px"; t4 = t2.top; t1.top = A.S(t4) + "px"; t5 = t2.right; t1.width = A.S(t5 - t3) + "px"; t2 = t2.bottom; t1.height = A.S(t2 - t4) + "px"; t1 = _this.rootElement; t1.toString; _this.applyOverflow$2(t1, _this.clipBehavior); t1 = _this._DomClip__childContainer.style; t1.left = A.S(-t3) + "px"; t1.top = A.S(-t4) + "px"; }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (!J.$eq$(_this.rect, oldSurface.rect) || _this.clipBehavior != oldSurface.clipBehavior) { _this.localClipBounds = null; _this.apply$0(); } }, get$isClipping() { return true; }, $isClipRectEngineLayer0: 1 }; A.PersistedClipRRect.prototype = { recomputeTransformAndClip$0() { var t1, _this = this; _this.transform = _this.parent.transform; if (_this.clipBehavior !== B.Clip_0) { t1 = _this.rrect; _this.localClipBounds = new A.Rect(t1.left, t1.top, t1.right, t1.bottom); } else _this.localClipBounds = null; _this.projectedClip = null; }, createElement$0(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "rrect"); return t1; }, apply$0() { var t3, t4, _this = this, style = _this.rootElement.style, t1 = _this.rrect, t2 = t1.left; style.left = A.S(t2) + "px"; t3 = t1.top; style.top = A.S(t3) + "px"; t4 = t1.right; style.width = A.S(t4 - t2) + "px"; t4 = t1.bottom; style.height = A.S(t4 - t3) + "px"; t4 = t1.tlRadiusX; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-left-radius"), A.S(t4) + "px", ""); t4 = t1.trRadiusX; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-right-radius"), A.S(t4) + "px", ""); t4 = t1.brRadiusX; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-right-radius"), A.S(t4) + "px", ""); t1 = t1.blRadiusX; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-left-radius"), A.S(t1) + "px", ""); t1 = _this.rootElement; t1.toString; _this.applyOverflow$2(t1, _this.clipBehavior); t1 = _this._DomClip__childContainer.style; t1.left = A.S(-t2) + "px"; t1.top = A.S(-t3) + "px"; }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (!J.$eq$(_this.rrect, oldSurface.rrect) || _this.clipBehavior != oldSurface.clipBehavior) { _this.localClipBounds = null; _this.apply$0(); } }, get$isClipping() { return true; }, $isClipRRectEngineLayer0: 1 }; A.PersistedPhysicalShape.prototype = { recomputeTransformAndClip$0() { var t1, t2, roundRect, rect, _this = this; _this.transform = _this.parent.transform; if (_this.clipBehavior !== B.Clip_0) { t1 = _this.path; t2 = t1.pathRef; roundRect = t2.fIsRRect ? t2._getRRect$0() : null; if (roundRect != null) _this.localClipBounds = new A.Rect(roundRect.left, roundRect.top, roundRect.right, roundRect.bottom); else { rect = t1.pathRef.getRect$0(); if (rect != null) _this.localClipBounds = rect; else _this.localClipBounds = null; } } else _this.localClipBounds = null; _this.projectedClip = null; }, createElement$0(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "physical-shape"); return t1; }, discard$0() { var t1, _this = this; _this.super$_PersistedPhysicalShape_PersistedContainerSurface__DomClip$discard(); t1 = _this._clipElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); _this._clipElement = null; t1 = _this._svgElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); _this._svgElement = null; }, apply$0() { this._applyShape$0(); }, _applyShape$0() { var roundRect, t4, style, t5, t6, t7, rect, ovalRect, rx, ry, borderRadius, t8, t9, svgClipPath, rootElementStyle, t10, pathBounds2, boxShadowColor, _this = this, _s13_ = "border-radius", _s6_ = "hidden", t1 = _this.rootElement.style, t2 = _this.color, t3 = A.colorToCssString(t2); t1.toString; t1.backgroundColor = t3 == null ? "" : t3; t1 = _this.path; t3 = t1.pathRef; roundRect = t3.fIsRRect ? t3._getRRect$0() : null; if (roundRect != null) { t1 = roundRect.tlRadiusX; t2 = roundRect.trRadiusX; t3 = roundRect.brRadiusX; t4 = roundRect.blRadiusX; style = _this.rootElement.style; t5 = roundRect.left; style.left = A.S(t5) + "px"; t6 = roundRect.top; style.top = A.S(t6) + "px"; t7 = roundRect.right; style.width = A.S(t7 - t5) + "px"; t7 = roundRect.bottom; style.height = A.S(t7 - t6) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), A.S(t1) + "px " + A.S(t2) + "px " + A.S(t3) + "px " + A.S(t4) + "px", ""); t1 = _this._DomClip__childContainer.style; t1.left = A.S(-t5) + "px"; t1.top = A.S(-t6) + "px"; if (_this.clipBehavior !== B.Clip_0) style.overflow = _s6_; A.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } else { rect = t1.pathRef.getRect$0(); if (rect != null) { style = _this.rootElement.style; t1 = rect.left; style.left = A.S(t1) + "px"; t2 = rect.top; style.top = A.S(t2) + "px"; t3 = rect.right; style.width = A.S(t3 - t1) + "px"; t3 = rect.bottom; style.height = A.S(t3 - t2) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), "", ""); t3 = _this._DomClip__childContainer.style; t3.left = A.S(-t1) + "px"; t3.top = A.S(-t2) + "px"; if (_this.clipBehavior !== B.Clip_0) style.overflow = _s6_; A.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } else { t3 = t1.pathRef; ovalRect = (t3.fIsOval ? t3.fRRectOrOvalStartIdx : -1) === -1 ? null : t3.getBounds$0(0); if (ovalRect != null) { t1 = ovalRect.right; t2 = ovalRect.left; rx = (t1 - t2) / 2; t1 = ovalRect.bottom; t3 = ovalRect.top; ry = (t1 - t3) / 2; borderRadius = A.S(rx) + "px "; borderRadius = rx === ry ? borderRadius : borderRadius + A.S(ry) + "px "; style = _this.rootElement.style; style.left = A.S(t2) + "px"; style.top = A.S(t3) + "px"; style.width = A.S(rx * 2) + "px"; style.height = A.S(ry * 2) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(style, B.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), borderRadius, ""); t1 = _this._DomClip__childContainer.style; t1.left = A.S(-t2) + "px"; t1.top = A.S(-t3) + "px"; if (_this.clipBehavior !== B.Clip_0) style.overflow = _s6_; A.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } } } t3 = _this.elevation; t4 = t3 === 0; t5 = _this.pathBounds; if (t4) { t6 = t5.left; t7 = t5.top; t8 = t5.right; t9 = t5.bottom; svgClipPath = A.pathToSvgClipPath(t1, -t6, -t7, 1 / (t8 - t6), 1 / (t9 - t7)); t7 = t9; t6 = t8; } else { t6 = t5.right; t7 = t5.bottom; svgClipPath = A.pathToSvgClipPath(t1, 0, 0, 1 / t6, 1 / t7); } t8 = _this._clipElement; if (t8 != null) B.SvgSvgElement_methods.remove$0(t8); t8 = _this._svgElement; if (t8 != null) B.SvgSvgElement_methods.remove$0(t8); _this._clipElement = svgClipPath; _this.rootElement.appendChild(svgClipPath); if (t4) { t1 = _this.rootElement; t1.toString; A.setClipPath(t1, "url(#svgClip" + $._clipIdCounter + ")"); rootElementStyle = _this.rootElement.style; rootElementStyle.overflow = ""; t1 = t5.left; t2 = A.S(t1); rootElementStyle.left = t2 + "px"; t3 = t5.top; t4 = A.S(t3); rootElementStyle.top = t4 + "px"; rootElementStyle.width = A.S(t6 - t1) + "px"; rootElementStyle.height = A.S(t7 - t3) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(rootElementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(rootElementStyle, _s13_), "", ""); t1 = _this._DomClip__childContainer.style; t1.left = "-" + t2 + "px"; t1.top = "-" + t4 + "px"; return; } t4 = _this._DomClip__childContainer; t4.toString; A.setClipPath(t4, "url(#svgClip" + $._clipIdCounter + ")"); rootElementStyle = _this.rootElement.style; rootElementStyle.overflow = ""; t4 = t5.left; t8 = A.S(t4); rootElementStyle.left = t8 + "px"; t9 = t5.top; t10 = A.S(t9); rootElementStyle.top = t10 + "px"; rootElementStyle.width = A.S(t6 - t4) + "px"; rootElementStyle.height = A.S(t7 - t9) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(rootElementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(rootElementStyle, _s13_), "", ""); t4 = _this._DomClip__childContainer.style; t4.left = "-" + t8 + "px"; t4.top = "-" + t10 + "px"; t4.width = A.S(t6) + "px"; t4.height = A.S(t7) + "px"; pathBounds2 = t1.getBounds$0(0); t4 = new A.SurfacePaintData(); t4.style = B.PaintingStyle_0; t4.color = t2; t4 = A.pathToSvgElement(t1, t4, A.S(pathBounds2.right), A.S(pathBounds2.bottom)); _this._svgElement = t4; _this.rootElement.insertBefore(t4, _this._DomClip__childContainer); t3 = A.computeShadow(t5, t3); t3.toString; boxShadowColor = A.toShadowColor(_this.shadowColor); t5 = _this._svgElement.style; t4 = t3.offset; t1 = boxShadowColor.value; t5.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t5, B.CssStyleDeclaration_methods._browserPropertyName$1(t5, "filter"), "drop-shadow(" + A.S(t4._dx) + "px " + A.S(t4._dy) + "px " + A.S(t3.blurWidth) + "px rgba(" + (t1 >>> 16 & 255) + ", " + (t1 >>> 8 & 255) + ", " + (t1 & 255) + ", " + A.S((t1 >>> 24 & 255) / 255) + "))", ""); t1 = pathBounds2.left; t3 = pathBounds2.top; B.CssStyleDeclaration_methods._setPropertyHelper$3(t5, B.CssStyleDeclaration_methods._browserPropertyName$1(t5, "transform"), "translate(-" + A.S(t1) + "px, -" + A.S(t3) + "px)", ""); t3 = _this.rootElement.style; t3.backgroundColor = ""; }, update$1(_, oldSurface) { var t1, t2, _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); t1 = oldSurface.path == _this.path; if (!t1) _this.localClipBounds = null; t1 = !t1 || oldSurface.elevation != _this.elevation || !oldSurface.shadowColor.$eq(0, _this.shadowColor) || !oldSurface.color.$eq(0, _this.color); t2 = oldSurface._clipElement; if (t1) { if (t2 != null) B.SvgSvgElement_methods.remove$0(t2); oldSurface._clipElement = null; t1 = oldSurface._svgElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); oldSurface._svgElement = null; t1 = _this._clipElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); _this._clipElement = null; t1 = _this._svgElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); _this._svgElement = null; t1 = _this.rootElement; t1.toString; A.setClipPath(t1, ""); _this._applyShape$0(); } else { _this._clipElement = t2; if (t2 != null) _this.rootElement.appendChild(t2); oldSurface._clipElement = null; t1 = _this._svgElement = oldSurface._svgElement; if (t1 != null) _this.rootElement.insertBefore(t1, _this._DomClip__childContainer); oldSurface._svgElement = null; } }, $isPhysicalShapeEngineLayer0: 1 }; A.PersistedClipPath.prototype = { createElement$0(_) { return this.defaultCreateElement$1("flt-clippath"); }, recomputeTransformAndClip$0() { var _this = this; _this.super$PersistedContainerSurface$recomputeTransformAndClip(); if (_this.clipBehavior !== B.Clip_0) { if (_this.localClipBounds == null) _this.localClipBounds = _this.clipPath.getBounds$0(0); } else _this.localClipBounds = null; }, apply$0() { var _this = this, t1 = _this._clipElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); t1 = _this.rootElement; t1.toString; t1 = A.createSvgClipDef(type$.HtmlElement._as(t1), _this.clipPath); _this._clipElement = t1; _this.rootElement.appendChild(t1); }, update$1(_, oldSurface) { var t1, _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (oldSurface.clipPath != _this.clipPath) { _this.localClipBounds = null; t1 = oldSurface._clipElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); _this.apply$0(); } else _this._clipElement = oldSurface._clipElement; oldSurface._clipElement = null; }, discard$0() { var t1 = this._clipElement; if (t1 != null) B.SvgSvgElement_methods.remove$0(t1); this._clipElement = null; this.super$PersistedContainerSurface$discard(); }, get$isClipping() { return true; }, $isClipPathEngineLayer0: 1 }; A.SvgFilterBuilder.prototype = { setFeColorMatrix$2$result(matrix, result) { var t1, t2, i, t3, element = type$.FEColorMatrixElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "feColorMatrix"))); element.type.baseVal = 1; element.result.baseVal = result; t1 = element.values.baseVal; t1.toString; for (t2 = this.root, i = 0; i < 20; ++i) { t3 = t2.createSVGNumber(); t3.value = matrix[i]; t1.appendItem(t3); } this.filter.appendChild(element); }, setFeFlood$3$floodColor$floodOpacity$result(floodColor, floodOpacity, result) { var element = type$.FEFloodElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "feFlood"))); element.setAttribute("flood-color", floodColor); element.setAttribute("flood-opacity", floodOpacity); element.result.baseVal = result; this.filter.appendChild(element); }, setFeBlend$3$in1$in2$mode(in1, in2, mode) { var element = type$.FEBlendElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "feBlend"))); element.in1.baseVal = in1; element.in2.baseVal = in2; element.mode.baseVal = mode; this.filter.appendChild(element); }, setFeComposite$8$in1$in2$k1$k2$k3$k4$operator$result(in1, in2, k1, k2, k3, k4, operator, result) { var element = type$.FECompositeElement._as(type$.SvgElement._as(B.HtmlDocument_methods.createElementNS$2(document, "http://www.w3.org/2000/svg", "feComposite"))); element.in1.baseVal = in1; element.in2.baseVal = in2; element.operator.baseVal = operator; if (k1 != null) element.k1.baseVal = k1; if (k2 != null) element.k2.baseVal = k2; if (k3 != null) element.k3.baseVal = k3; if (k4 != null) element.k4.baseVal = k4; element.result.baseVal = result; this.filter.appendChild(element); }, setFeComposite$4$in1$in2$operator$result(in1, in2, operator, result) { return this.setFeComposite$8$in1$in2$k1$k2$k3$k4$operator$result(in1, in2, null, null, null, null, operator, result); }, build$0(_) { var t1 = this.root; t1.appendChild(this.filter); return new A.SvgFilter(this.id, t1); }, get$id(receiver) { return this.id; } }; A.SvgFilter.prototype = { get$id(receiver) { return this.id; } }; A.DomCanvas.prototype = { clear$0(_) { this.super$SaveElementStackTracking$clear(0); A.removeAllChildren(this.rootElement); }, clipRect$2(_, rect, clipOp) { throw A.wrapException(A.UnimplementedError$(null)); }, clipRRect$1(_, rrect) { throw A.wrapException(A.UnimplementedError$(null)); }, clipPath$1(_, path) { throw A.wrapException(A.UnimplementedError$(null)); }, drawLine$3(_, p1, p2, paint) { throw A.wrapException(A.UnimplementedError$(null)); }, drawRect$2(_, rect, paint) { var t1 = this.SaveElementStackTracking__elementStack; t1 = t1.length === 0 ? this.rootElement : B.JSArray_methods.get$last(t1); t1.appendChild(A.buildDrawRectElement(rect, paint, "draw-rect", this.SaveElementStackTracking__currentTransform)); }, drawRRect$2(_, rrect, paint) { var t1, element = A.buildDrawRectElement(new A.Rect(rrect.left, rrect.top, rrect.right, rrect.bottom), paint, "draw-rrect", this.SaveElementStackTracking__currentTransform); A.applyRRectBorderRadius(element.style, rrect); t1 = this.SaveElementStackTracking__elementStack; (t1.length === 0 ? this.rootElement : B.JSArray_methods.get$last(t1)).appendChild(element); }, drawCircle$3(_, c, radius, paint) { throw A.wrapException(A.UnimplementedError$(null)); }, drawPath$2(_, path, paint) { throw A.wrapException(A.UnimplementedError$(null)); }, drawShadow$4(_, path, color, elevation, transparentOccluder) { throw A.wrapException(A.UnimplementedError$(null)); }, drawImageRect$4(image, src, dst, paint) { throw A.wrapException(A.UnimplementedError$(null)); }, drawParagraph$2(_, paragraph, offset) { var paragraphElement = A.drawParagraphElement(paragraph, offset, this.SaveElementStackTracking__currentTransform), t1 = this.SaveElementStackTracking__elementStack; (t1.length === 0 ? this.rootElement : B.JSArray_methods.get$last(t1)).appendChild(paragraphElement); }, endOfPaint$0() { } }; A.PersistedOffset.prototype = { recomputeTransformAndClip$0() { var t2, t3, _this = this, t1 = _this.parent.transform; _this.transform = t1; t2 = _this.dx; if (t2 !== 0 || _this.dy !== 0) { t1.toString; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t1); _this.transform = t3; t3.translate$2(0, t2, _this.dy); } _this.projectedClip = null; }, get$localTransformInverse() { var _this = this, t1 = _this._localTransformInverse; if (t1 == null) { t1 = A.Matrix4$identity(); t1.setTranslationRaw$3(-_this.dx, -_this.dy, 0); _this._localTransformInverse = t1; } return t1; }, createElement$0(_) { var element = document.createElement("flt-offset"); A.setElementStyle(element, "position", "absolute"); A.setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0() { var t1 = this.rootElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(" + A.S(this.dx) + "px, " + A.S(this.dy) + "px)", ""); }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (oldSurface.dx != _this.dx || oldSurface.dy != _this.dy) _this.apply$0(); }, $isOffsetEngineLayer0: 1 }; A.PersistedOpacity.prototype = { recomputeTransformAndClip$0() { var t2, dx, dy, _this = this, t1 = _this.parent.transform; _this.transform = t1; t2 = _this.offset; dx = t2._dx; dy = t2._dy; if (dx !== 0 || dy !== 0) { t1.toString; t2 = new A.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); _this.transform = t2; t2.translate$2(0, dx, dy); } _this.projectedClip = null; }, get$localTransformInverse() { var t2, t1 = this._localTransformInverse; if (t1 == null) { t1 = this.offset; t2 = A.Matrix4$identity(); t2.setTranslationRaw$3(-t1._dx, -t1._dy, 0); this._localTransformInverse = t2; t1 = t2; } return t1; }, createElement$0(_) { var element = document.createElement("flt-opacity"); A.setElementStyle(element, "position", "absolute"); A.setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0() { var t2, t1 = this.rootElement; t1.toString; A.setElementStyle(t1, "opacity", A.S(this.alpha / 255)); t1 = t1.style; t2 = this.offset; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(" + A.S(t2._dx) + "px, " + A.S(t2._dy) + "px)", ""); }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (_this.alpha !== oldSurface.alpha || !_this.offset.$eq(0, oldSurface.offset)) _this.apply$0(); }, $isOpacityEngineLayer0: 1 }; A.SurfacePaint.prototype = { set$blendMode(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.blendMode = value; }, get$style(_) { var t1 = this._paintData.style; return t1 == null ? B.PaintingStyle_0 : t1; }, set$style(_, value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.style = value; }, get$strokeWidth() { var t1 = this._paintData.strokeWidth; return t1 == null ? 0 : t1; }, set$strokeWidth(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeWidth = value; }, set$strokeCap(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeCap = value; }, set$strokeJoin(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeJoin = value; }, set$isAntiAlias(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.isAntiAlias = value; }, get$color(_) { var t1 = this._paintData.color; return t1 == null ? B.Color_4278190080 : t1; }, set$color(_, value) { var t1, _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } t1 = _this._paintData; t1.color = J.get$runtimeType$(value) === B.Type_Color_MG2 ? value : new A.Color(value.get$value(value)); }, set$invertColors(value) { }, set$shader(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.shader = value; }, set$maskFilter(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.maskFilter = value; }, set$filterQuality(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.filterQuality = value; }, set$colorFilter(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.colorFilter = value; }, toString$0(_) { var t3, t4, semicolon, _this = this, t1 = _this._paintData.style, t2 = t1 == null; if ((t2 ? B.PaintingStyle_0 : t1) === B.PaintingStyle_1) { t1 = "Paint(" + (t2 ? B.PaintingStyle_0 : t1).toString$0(0); t2 = _this._paintData; t3 = t2.strokeWidth; t4 = t3 == null; if ((t4 ? 0 : t3) !== 0) t1 += " " + A.S(t4 ? 0 : t3); else t1 += " hairline"; t2 = t2.strokeCap; t3 = t2 == null; if ((t3 ? B.StrokeCap_0 : t2) !== B.StrokeCap_0) t1 += " " + (t3 ? B.StrokeCap_0 : t2).toString$0(0); semicolon = "; "; } else { semicolon = ""; t1 = "Paint("; } t2 = _this._paintData; if (!t2.isAntiAlias) { t1 += semicolon + "antialias off"; semicolon = "; "; } t2 = t2.color; if (!(t2 == null ? B.Color_4278190080 : t2).$eq(0, B.Color_4278190080)) { t2 = _this._paintData.color; t1 += semicolon + (t2 == null ? B.Color_4278190080 : t2).toString$0(0); } t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isPaint: 1 }; A.SurfacePaintData.prototype = { clone$0(_) { var _this = this, t1 = new A.SurfacePaintData(); t1.blendMode = _this.blendMode; t1.filterQuality = _this.filterQuality; t1.maskFilter = _this.maskFilter; t1.shader = _this.shader; t1.isAntiAlias = _this.isAntiAlias; t1.color = _this.color; t1.colorFilter = _this.colorFilter; t1.strokeWidth = _this.strokeWidth; t1.style = _this.style; t1.strokeJoin = _this.strokeJoin; t1.strokeCap = _this.strokeCap; return t1; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.Conic.prototype = { toQuads$0() { var dst, t1, t2, t3, controlPointOffset, skipSubdivide, pointCount, hasNonFinitePoints, p, _this = this, pointList = A._setArrayType([], type$.JSArray_Offset), subdivideCount = _this._computeSubdivisionCount$1(0.25), quadCount = B.JSInt_methods._shlPositive$1(1, subdivideCount); pointList.push(new A.Offset(_this.p0x, _this.p0y)); if (subdivideCount === 5) { dst = new A._ConicPair(); _this._chop$1(dst); t1 = dst.first; t1.toString; t2 = dst.second; t2.toString; t3 = t1.p1x; if (t3 == t1.p2x && t1.p1y == t1.p2y && t2.p0x == t2.p1x && t2.p0y == t2.p1y) { controlPointOffset = new A.Offset(t3, t1.p1y); pointList.push(controlPointOffset); pointList.push(controlPointOffset); pointList.push(controlPointOffset); pointList.push(new A.Offset(t2.p2x, t2.p2y)); quadCount = 2; skipSubdivide = true; } else skipSubdivide = false; } else skipSubdivide = false; if (!skipSubdivide) A.Conic__subdivide(_this, subdivideCount, pointList); pointCount = 2 * quadCount + 1; p = 0; while (true) { if (!(p < pointCount)) { hasNonFinitePoints = false; break; } t1 = pointList[p]; t2 = t1._dx; t2.toString; if (!isNaN(t2)) { t1 = t1._dy; t1.toString; t1 = isNaN(t1); } else t1 = true; if (t1) { hasNonFinitePoints = true; break; } ++p; } if (hasNonFinitePoints) for (t1 = pointCount - 1, t2 = _this.p1x, t3 = _this.p1y, p = 1; p < t1; ++p) pointList[p] = new A.Offset(t2, t3); return pointList; }, _chop$1(pair) { var w2, scaleHalf, _this = this, t1 = _this.fW, scale = 1 / (1 + t1), newW = Math.sqrt(0.5 + t1 * 0.5), t2 = _this.p1x, t3 = t1 * t2, t4 = _this.p1y, t5 = t1 * t4, t6 = _this.p0x, t7 = _this.p2x, t8 = (t6 + 2 * t3 + t7) * scale * 0.5, t9 = _this.p0y, t10 = _this.p2y, t11 = (t9 + 2 * t5 + t10) * scale * 0.5, m = new A.Offset(t8, t11); if (isNaN(t8) || isNaN(t11)) { w2 = t1 * 2; scaleHalf = scale * 0.5; m = new A.Offset((t6 + w2 * t2 + t7) * scaleHalf, (t9 + w2 * t4 + t10) * scaleHalf); } t1 = m._dx; t2 = m._dy; pair.first = new A.Conic(t6, t9, (t6 + t3) * scale, (t9 + t5) * scale, t1, t2, newW); pair.second = new A.Conic(t1, t2, (t7 + t3) * scale, (t10 + t5) * scale, t7, t10, newW); }, chopAtYExtrema$1(dst) { var _this = this, t = _this._findYExtrema$0(); if (t == null) { dst.push(_this); return; } if (!_this._chopAt$3$cleanupMiddle(t, dst, true)) { dst.push(_this); return; } }, _findYExtrema$0() { var wP10, quadRoots, _this = this, t1 = _this.p2y, t2 = _this.p0y, p20 = t1 - t2; t1 = _this.fW; wP10 = t1 * (_this.p1y - t2); quadRoots = new A.QuadRoots(); if (quadRoots.findRoots$3(t1 * p20 - p20, p20 - 2 * wP10, wP10) === 1) return quadRoots.root0; return null; }, _chopAt$3$cleanupMiddle(t, dst, cleanupMiddle) { var chopPointX, chopPointY, t2, t3, t4, _this = this, tx0 = _this.p0x, ty0 = _this.p0y, t1 = _this.fW, tx1 = _this.p1x * t1, ty1 = _this.p1y * t1, ty2 = _this.p2y, dx0 = tx0 + (tx1 - tx0) * t, dx2 = tx1 + (_this.p2x - tx1) * t, dy0 = ty0 + (ty1 - ty0) * t, dz0 = 1 + (t1 - 1) * t, dz2 = t1 + (1 - t1) * t, dz1 = dz0 + (dz2 - dz0) * t, root = Math.sqrt(dz1); if (Math.abs(root - 0) < 0.000244140625) return false; if (Math.abs(dz0 - 0) < 0.000244140625 || Math.abs(dz1 - 0) < 0.000244140625 || Math.abs(dz2 - 0) < 0.000244140625) return false; chopPointX = (dx0 + (dx2 - dx0) * t) / dz1; chopPointY = (dy0 + (ty1 + (ty2 - ty1) * t - dy0) * t) / dz1; t1 = _this.p0x; t2 = _this.p0y; t3 = _this.p2x; t4 = _this.p2y; dst.push(new A.Conic(t1, t2, dx0 / dz0, chopPointY, chopPointX, chopPointY, dz0 / root)); dst.push(new A.Conic(chopPointX, chopPointY, dx2 / dz2, chopPointY, t3, t4, dz2 / root)); return true; }, _computeSubdivisionCount$1(tolerance) { var a, k, x, y, error, pow2, _this = this; if (tolerance < 0) return 0; a = _this.fW - 1; k = a / (4 * (2 + a)); x = k * (_this.p0x - 2 * _this.p1x + _this.p2x); y = k * (_this.p0y - 2 * _this.p1y + _this.p2y); error = Math.sqrt(x * x + y * y); for (pow2 = 0; pow2 < 5; ++pow2) { if (error <= tolerance) break; error *= 0.25; } return pow2; }, evalTangentAt$1(t) { var t1, t2, p20x, t3, p20y, cx, cy, quadC, _this = this; if (!(t === 0 && _this.p0x == _this.p1x && _this.p0y == _this.p1y)) t1 = t === 1 && _this.p1x == _this.p2x && _this.p1y == _this.p2y; else t1 = true; if (t1) return new A.Offset(_this.p2x - _this.p0x, _this.p2y - _this.p0y); t1 = _this.p2x; t2 = _this.p0x; p20x = t1 - t2; t1 = _this.p2y; t3 = _this.p0y; p20y = t1 - t3; t1 = _this.fW; cx = t1 * (_this.p1x - t2); cy = t1 * (_this.p1y - t3); quadC = A.SkQuadCoefficients$(t1 * p20x - p20x, t1 * p20y - p20y, p20x - cx - cx, p20y - cy - cy, cx, cy); return new A.Offset(quadC.evalX$1(t), quadC.evalY$1(t)); } }; A.QuadBounds.prototype = {}; A.ConicBounds.prototype = {}; A._ConicPair.prototype = {}; A.CubicBounds.prototype = {}; A.SurfacePath.prototype = { _resetFields$0() { var _this = this; _this.fLastMoveToIndex = 0; _this._fillType = B.PathFillType_0; _this._firstDirection = _this._convexityType = -1; }, _copyFields$1(source) { var _this = this; _this._fillType = source._fillType; _this.fLastMoveToIndex = source.fLastMoveToIndex; _this._convexityType = source._convexityType; _this._firstDirection = source._firstDirection; }, set$fillType(value) { this._fillType = value; }, reset$0(_) { if (this.pathRef._fVerbsLength !== 0) { this.pathRef = A.PathRef$(); this._resetFields$0(); } }, moveTo$2(_, x, y) { var _this = this, pointIndex = _this.pathRef.growForVerb$2(0, 0); _this.fLastMoveToIndex = pointIndex + 1; _this.pathRef.setPoint$3(pointIndex, x, y); _this._firstDirection = _this._convexityType = -1; }, _injectMoveToIfNeeded$0() { var t2, x, y, pointIndex, t1 = this.fLastMoveToIndex; if (t1 <= 0) { t2 = this.pathRef; if (t2._fPointsLength === 0) { x = 0; y = 0; } else { pointIndex = 2 * (-t1 - 1); t1 = t2.fPoints; x = t1[pointIndex]; y = t1[pointIndex + 1]; } this.moveTo$2(0, x, y); } }, lineTo$2(_, x, y) { var pointIndex, _this = this; if (_this.fLastMoveToIndex <= 0) _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(1, 0); _this.pathRef.setPoint$3(pointIndex, x, y); _this._firstDirection = _this._convexityType = -1; }, quadraticBezierTo$4(x1, y1, x2, y2) { var pointIndex, _this = this; _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(2, 0); _this.pathRef.setPoint$3(pointIndex, x1, y1); _this.pathRef.setPoint$3(pointIndex + 1, x2, y2); _this._firstDirection = _this._convexityType = -1; }, conicTo$5(_, x1, y1, x2, y2, w) { var pointIndex, _this = this; _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(3, w); _this.pathRef.setPoint$3(pointIndex, x1, y1); _this.pathRef.setPoint$3(pointIndex + 1, x2, y2); _this._firstDirection = _this._convexityType = -1; }, cubicTo$6(_, x1, y1, x2, y2, x3, y3) { var pointIndex, _this = this; _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(4, 0); _this.pathRef.setPoint$3(pointIndex, x1, y1); _this.pathRef.setPoint$3(pointIndex + 1, x2, y2); _this.pathRef.setPoint$3(pointIndex + 2, x3, y3); _this._firstDirection = _this._convexityType = -1; }, close$0(_) { var _this = this, t1 = _this.pathRef, verbCount = t1._fVerbsLength; if (verbCount !== 0 && t1._fVerbs[verbCount - 1] !== 5) t1.growForVerb$2(5, 0); t1 = _this.fLastMoveToIndex; if (t1 >= 0) _this.fLastMoveToIndex = -t1; _this._firstDirection = _this._convexityType = -1; }, addRect$1(_, rect) { this.addRectWithDirection$3(rect, 0, 0); }, _hasOnlyMoveTos$0() { var i, t1 = this.pathRef, verbCount = t1._fVerbsLength; for (t1 = t1._fVerbs, i = 0; i < verbCount; ++i) switch (t1[i]) { case 1: case 2: case 3: case 4: return false; } return true; }, addRectWithDirection$3(rect, direction, startIndex) { var pointIndex1, pointIndex2, pointIndex3, t1, t2, t3, t4, _this = this, isRect = _this._hasOnlyMoveTos$0(), finalDirection = _this._hasOnlyMoveTos$0() ? direction : -1, pointIndex0 = _this.pathRef.growForVerb$2(0, 0); _this.fLastMoveToIndex = pointIndex0 + 1; pointIndex1 = _this.pathRef.growForVerb$2(1, 0); pointIndex2 = _this.pathRef.growForVerb$2(1, 0); pointIndex3 = _this.pathRef.growForVerb$2(1, 0); _this.pathRef.growForVerb$2(5, 0); t1 = _this.pathRef; if (direction === 0) { t2 = rect.left; t3 = rect.top; t1.setPoint$3(pointIndex0, t2, t3); t1 = _this.pathRef; t4 = rect.right; t1.setPoint$3(pointIndex1, t4, t3); t3 = _this.pathRef; t1 = rect.bottom; t3.setPoint$3(pointIndex2, t4, t1); _this.pathRef.setPoint$3(pointIndex3, t2, t1); } else { t2 = rect.left; t3 = rect.bottom; t1.setPoint$3(pointIndex3, t2, t3); t1 = _this.pathRef; t4 = rect.right; t1.setPoint$3(pointIndex2, t4, t3); t3 = _this.pathRef; t1 = rect.top; t3.setPoint$3(pointIndex1, t4, t1); _this.pathRef.setPoint$3(pointIndex0, t2, t1); } t1 = _this.pathRef; t1.fIsRect = isRect; t1.fRRectOrOvalIsCCW = direction === 1; t1.fRRectOrOvalStartIdx = 0; _this._firstDirection = _this._convexityType = -1; _this._firstDirection = finalDirection; }, arcTo$4(_, rect, startAngle, sweepAngle, forceMoveTo) { var lonePoint, t2, t3, stopAngle, cosStart, sinStart, cosStop, sinStop, sweep, deltaRad, stopAngle0, dir, radiusX, radiusY, px, py, x, y, quadrant, conics, i, quadPointIndex, p0, p1, p2, lastQuadrantPoint, dot, offCurveX, offCurveY, cosThetaOver2, t4, conicCount, centerX, centerY, _i, conic, firstConicPx, firstConicPy, _this = this, t1 = rect.right - rect.left; if (t1 === 0 && rect.bottom - rect.top === 0) return; if (_this.pathRef._fPointsLength === 0) forceMoveTo = true; lonePoint = A._arcIsLonePoint(rect, startAngle, sweepAngle); if (lonePoint != null) { t2 = lonePoint._dx; t3 = lonePoint._dy; if (forceMoveTo) _this.moveTo$2(0, t2, t3); else _this.lineTo$2(0, t2, t3); } stopAngle = startAngle + sweepAngle; cosStart = Math.cos(startAngle); sinStart = Math.sin(startAngle); cosStop = Math.cos(stopAngle); sinStop = Math.sin(stopAngle); if (Math.abs(cosStart - cosStop) < 0.000244140625 && Math.abs(sinStart - sinStop) < 0.000244140625) { sweep = Math.abs(sweepAngle) * 180 / 3.141592653589793; if (sweep <= 360 && sweep > 359) { deltaRad = sweepAngle < 0 ? -0.001953125 : 0.001953125; stopAngle0 = stopAngle; do { stopAngle0 -= deltaRad; cosStop = Math.cos(stopAngle0); sinStop = Math.sin(stopAngle0); } while (cosStart === cosStop && sinStart === sinStop); } } dir = sweepAngle > 0 ? 0 : 1; radiusX = t1 / 2; radiusY = (rect.bottom - rect.top) / 2; px = rect.get$center()._dx + radiusX * Math.cos(stopAngle); py = rect.get$center()._dy + radiusY * Math.sin(stopAngle); if (cosStart === cosStop && sinStart === sinStop) { if (forceMoveTo) _this.moveTo$2(0, px, py); else _this._lineToIfNotTooCloseToLastPoint$2(px, py); return; } x = cosStart * cosStop + sinStart * sinStop; y = cosStart * sinStop - sinStart * cosStop; if (Math.abs(y) <= 0.000244140625) if (x > 0) if (!(y >= 0 && dir === 0)) t1 = y <= 0 && dir === 1; else t1 = true; else t1 = false; else t1 = false; if (t1) { if (forceMoveTo) _this.moveTo$2(0, px, py); else _this._lineToIfNotTooCloseToLastPoint$2(px, py); return; } t1 = dir === 1; if (t1) y = -y; if (0 === y) quadrant = 2; else if (0 === x) quadrant = y > 0 ? 1 : 3; else { t2 = y < 0; quadrant = t2 ? 2 : 0; if (x < 0 !== t2) ++quadrant; } conics = A._setArrayType([], type$.JSArray_Conic); for (i = 0; i < quadrant; ++i) { quadPointIndex = i * 2; p0 = B.List_SbI[quadPointIndex]; p1 = B.List_SbI[quadPointIndex + 1]; p2 = B.List_SbI[quadPointIndex + 2]; conics.push(new A.Conic(p0._dx, p0._dy, p1._dx, p1._dy, p2._dx, p2._dy, 0.707106781)); } lastQuadrantPoint = B.List_SbI[quadrant * 2]; t2 = lastQuadrantPoint._dx; t3 = lastQuadrantPoint._dy; dot = x * t2 + y * t3; if (dot < 1) { offCurveX = t2 + x; offCurveY = t3 + y; cosThetaOver2 = Math.sqrt((1 + dot) / 2); t4 = cosThetaOver2 * Math.sqrt(offCurveX * offCurveX + offCurveY * offCurveY); offCurveX /= t4; offCurveY /= t4; if (!(Math.abs(offCurveX - t2) < 0.000244140625) || !(Math.abs(offCurveY - t3) < 0.000244140625)) { conics.push(new A.Conic(t2, t3, offCurveX, offCurveY, x, y, cosThetaOver2)); conicCount = quadrant + 1; } else conicCount = quadrant; } else conicCount = quadrant; centerX = rect.get$center()._dx; centerY = rect.get$center()._dy; for (t2 = conics.length, _i = 0; _i < t2; ++_i) { conic = conics[_i]; x = conic.p0x; y = conic.p0y; if (t1) y = -y; conic.p0x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p0y = (cosStart * y + sinStart * x) * radiusY + centerY; x = conic.p1x; y = conic.p1y; if (t1) y = -y; conic.p1x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p1y = (cosStart * y + sinStart * x) * radiusY + centerY; x = conic.p2x; y = conic.p2y; if (t1) y = -y; conic.p2x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p2y = (cosStart * y + sinStart * x) * radiusY + centerY; } t1 = conics[0]; firstConicPx = t1.p0x; firstConicPy = t1.p0y; if (forceMoveTo) _this.moveTo$2(0, firstConicPx, firstConicPy); else _this._lineToIfNotTooCloseToLastPoint$2(firstConicPx, firstConicPy); for (i = 0; i < conicCount; ++i) { conic = conics[i]; _this.conicTo$5(0, conic.p1x, conic.p1y, conic.p2x, conic.p2y, conic.fW); } _this._firstDirection = _this._convexityType = -1; }, _lineToIfNotTooCloseToLastPoint$2(px, py) { var lastPoint, t1 = this.pathRef, pointCount = t1._fPointsLength; if (pointCount !== 0) { lastPoint = t1.atPoint$1(pointCount - 1); if (!(Math.abs(px - lastPoint._dx) < 0.000244140625) || !(Math.abs(py - lastPoint._dy) < 0.000244140625)) this.lineTo$2(0, px, py); } }, arcToPoint$3$clockwise$radius(arcEnd, clockwise, radius) { var t1, pointCount, lastPointX, lastPointY, pointIndex, x, y, rx, ry, midPointX, midPointY, cosXAxisRotation, sinXAxisRotation, xPrime, yPrime, radiiScale, unitPts0x, unitPts0y, unitPts1x, unitPts1y, deltaX, deltaY, scaleFactor, centerPointX, centerPointY, theta1, thetaArc, segments, thetaWidth, t, w, expectIntegers, startTheta, i, endTheta, sinEndTheta, cosEndTheta, xStart, yStart, xEnd, yEnd, _this = this; _this._injectMoveToIfNeeded$0(); t1 = _this.pathRef; pointCount = t1._fPointsLength; if (pointCount === 0) { lastPointX = 0; lastPointY = 0; } else { pointIndex = (pointCount - 1) * 2; t1 = t1.fPoints; lastPointX = t1[pointIndex]; lastPointY = t1[pointIndex + 1]; } x = arcEnd._dx; y = arcEnd._dy; rx = Math.abs(radius.x); ry = Math.abs(radius.y); if (lastPointX === x && lastPointY === y || B.JSNumber_methods.toInt$0(rx) === 0 || B.JSNumber_methods.toInt$0(ry) === 0) if (rx === 0 || ry === 0) { _this.lineTo$2(0, x, y); return; } midPointX = (lastPointX - x) / 2; midPointY = (lastPointY - y) / 2; cosXAxisRotation = Math.cos(0); sinXAxisRotation = Math.sin(0); xPrime = cosXAxisRotation * midPointX + sinXAxisRotation * midPointY; yPrime = -sinXAxisRotation * midPointX + cosXAxisRotation * midPointY; radiiScale = xPrime * xPrime / (rx * rx) + yPrime * yPrime / (ry * ry); if (radiiScale > 1) { radiiScale = Math.sqrt(radiiScale); rx *= radiiScale; ry *= radiiScale; } unitPts0x = (lastPointX * cosXAxisRotation + lastPointY * sinXAxisRotation) / rx; unitPts0y = (lastPointY * cosXAxisRotation - lastPointX * sinXAxisRotation) / ry; unitPts1x = (x * cosXAxisRotation + y * sinXAxisRotation) / rx; unitPts1y = (y * cosXAxisRotation - x * sinXAxisRotation) / ry; deltaX = unitPts1x - unitPts0x; deltaY = unitPts1y - unitPts0y; scaleFactor = -Math.sqrt(Math.max(1 / (deltaX * deltaX + deltaY * deltaY) - 0.25, 0)); centerPointX = (unitPts0x + unitPts1x) / 2 - deltaY * scaleFactor; centerPointY = (unitPts0y + unitPts1y) / 2 + deltaX * scaleFactor; theta1 = Math.atan2(unitPts0y - centerPointY, unitPts0x - centerPointX); thetaArc = Math.atan2(unitPts1y - centerPointY, unitPts1x - centerPointX) - theta1; if (thetaArc > 0) thetaArc -= 6.283185307179586; if (Math.abs(thetaArc) < 0.0000031415926535897933) { _this.lineTo$2(0, x, y); return; } segments = B.JSInt_methods.toInt$0(B.JSNumber_methods.ceil$0(Math.abs(thetaArc / 2.0943951023931953))); thetaWidth = thetaArc / segments; t = Math.tan(thetaWidth / 2); if (!isFinite(t)) return; w = Math.sqrt(0.5 + Math.cos(thetaWidth) * 0.5); expectIntegers = Math.abs(1.5707963267948966 - Math.abs(thetaWidth) - 0) < 0.000244140625 && B.JSNumber_methods.floor$0(rx) === rx && B.JSNumber_methods.floor$0(ry) === ry && B.JSNumber_methods.floor$0(x) === x && B.JSNumber_methods.floor$0(y) === y; for (startTheta = theta1, i = 0; i < segments; ++i, startTheta = endTheta) { endTheta = startTheta + thetaWidth; sinEndTheta = Math.sin(endTheta); if (Math.abs(sinEndTheta - 0) < 0.000244140625) sinEndTheta = 0; cosEndTheta = Math.cos(endTheta); if (Math.abs(cosEndTheta - 0) < 0.000244140625) cosEndTheta = 0; unitPts1x = cosEndTheta + centerPointX; unitPts1y = sinEndTheta + centerPointY; unitPts0x = (unitPts1x + t * sinEndTheta) * rx; unitPts0y = (unitPts1y - t * cosEndTheta) * ry; unitPts1x *= rx; unitPts1y *= ry; xStart = unitPts0x * cosXAxisRotation - unitPts0y * sinXAxisRotation; yStart = unitPts0y * cosXAxisRotation + unitPts0x * sinXAxisRotation; xEnd = unitPts1x * cosXAxisRotation - unitPts1y * sinXAxisRotation; yEnd = unitPts1y * cosXAxisRotation + unitPts1x * sinXAxisRotation; if (expectIntegers) { xStart = Math.floor(xStart + 0.5); yStart = Math.floor(yStart + 0.5); xEnd = Math.floor(xEnd + 0.5); yEnd = Math.floor(yEnd + 0.5); } _this.conicTo$5(0, xStart, yStart, xEnd, yEnd, w); } }, addOval$1(_, oval) { this._addOval$3(oval, 0, 0); }, _addOval$3(oval, direction, startIndex) { var t1, _this = this, isOval = _this._hasOnlyMoveTos$0(), left = oval.left, right = oval.right, centerX = (left + right) / 2, $top = oval.top, bottom = oval.bottom, centerY = ($top + bottom) / 2; if (direction === 0) { _this.moveTo$2(0, right, centerY); _this.conicTo$5(0, right, bottom, centerX, bottom, 0.707106781); _this.conicTo$5(0, left, bottom, left, centerY, 0.707106781); _this.conicTo$5(0, left, $top, centerX, $top, 0.707106781); _this.conicTo$5(0, right, $top, right, centerY, 0.707106781); } else { _this.moveTo$2(0, right, centerY); _this.conicTo$5(0, right, $top, centerX, $top, 0.707106781); _this.conicTo$5(0, left, $top, left, centerY, 0.707106781); _this.conicTo$5(0, left, bottom, centerX, bottom, 0.707106781); _this.conicTo$5(0, right, bottom, right, centerY, 0.707106781); } _this.close$0(0); t1 = _this.pathRef; t1.fIsOval = isOval; t1.fRRectOrOvalIsCCW = direction === 1; t1.fRRectOrOvalStartIdx = 0; _this._firstDirection = _this._convexityType = -1; if (isOval) _this._firstDirection = direction; }, addArc$3(_, oval, startAngle, sweepAngle) { var startOver90, startOver90I, startIndex, t1; if (0 === sweepAngle) return; if (sweepAngle >= 6.283185307179586 || sweepAngle <= -6.283185307179586) { startOver90 = startAngle / 1.5707963267948966; startOver90I = Math.floor(startOver90 + 0.5); if (Math.abs(startOver90 - startOver90I - 0) < 0.000244140625) { startIndex = startOver90I + 1; if (startIndex < 0) startIndex += 4; t1 = sweepAngle > 0 ? 0 : 1; this._addOval$3(oval, t1, B.JSNumber_methods.toInt$0(startIndex)); return; } } this.arcTo$4(0, oval, startAngle, sweepAngle, true); }, addPolygon$2(points, $close) { var pointIndex, t1, t2, i, index, _this = this, pointCount = points.length; if (pointCount <= 0) return; pointIndex = _this.pathRef.growForVerb$2(0, 0); _this.fLastMoveToIndex = pointIndex + 1; t1 = _this.pathRef; t2 = points[0]; t1.setPoint$3(pointIndex, t2._dx, t2._dy); _this.pathRef.growForRepeatedVerb$2(1, pointCount - 1); for (t1 = _this.pathRef.fPoints, i = 1; i < pointCount; ++i) { t2 = points[i]; index = (pointIndex + i) * 2; t1[index] = t2._dx; t1[index + 1] = t2._dy; } if ($close) _this.close$0(0); _this._firstDirection = _this._convexityType = -1; }, addRRect$1(_, rrect) { var t6, width, height, tlRadiusX, trRadiusX, blRadiusX, brRadiusX, tlRadiusY, trRadiusY, blRadiusY, brRadiusY, scale, _this = this, isRRect = _this._hasOnlyMoveTos$0(), t1 = rrect.left, t2 = rrect.top, t3 = rrect.right, t4 = rrect.bottom, bounds = new A.Rect(t1, t2, t3, t4), t5 = rrect.tlRadiusX; if (t5 === 0 || rrect.tlRadiusY === 0) if (rrect.trRadiusX === 0 || rrect.trRadiusY === 0) if (rrect.blRadiusX === 0 || rrect.blRadiusY === 0) t6 = rrect.brRadiusX === 0 || rrect.brRadiusY === 0; else t6 = false; else t6 = false; else t6 = false; if (t6 || rrect.get$isEmpty(rrect)) _this.addRectWithDirection$3(bounds, 0, 3); else if (A.isRRectOval(rrect)) _this._addOval$3(bounds, 0, 3); else { width = t3 - t1; height = t4 - t2; tlRadiusX = Math.max(0, t5); trRadiusX = Math.max(0, rrect.trRadiusX); blRadiusX = Math.max(0, rrect.blRadiusX); brRadiusX = Math.max(0, rrect.brRadiusX); tlRadiusY = Math.max(0, rrect.tlRadiusY); trRadiusY = Math.max(0, rrect.trRadiusY); blRadiusY = Math.max(0, rrect.blRadiusY); brRadiusY = Math.max(0, rrect.brRadiusY); scale = A._computeMinScale(blRadiusY, brRadiusY, height, A._computeMinScale(tlRadiusY, trRadiusY, height, A._computeMinScale(blRadiusX, brRadiusX, width, A._computeMinScale(tlRadiusX, trRadiusX, width, 1)))); t5 = t4 - scale * blRadiusY; _this.moveTo$2(0, t1, t5); _this.lineTo$2(0, t1, t2 + scale * tlRadiusY); _this.conicTo$5(0, t1, t2, t1 + scale * tlRadiusX, t2, 0.707106781); _this.lineTo$2(0, t3 - scale * trRadiusX, t2); _this.conicTo$5(0, t3, t2, t3, t2 + scale * trRadiusY, 0.707106781); _this.lineTo$2(0, t3, t4 - scale * brRadiusY); _this.conicTo$5(0, t3, t4, t3 - scale * brRadiusX, t4, 0.707106781); _this.lineTo$2(0, t1 + scale * blRadiusX, t4); _this.conicTo$5(0, t1, t4, t1, t5, 0.707106781); _this.close$0(0); _this._firstDirection = isRRect ? 0 : -1; t1 = _this.pathRef; t1.fIsRRect = isRRect; t1.fRRectOrOvalIsCCW = false; t1.fRRectOrOvalStartIdx = 6; } }, contains$1(_, point) { var bounds, x, y, t1, windings, evenOddFill, w, onCurveCount, iter, _buffer, tangents, done, oldCount, t2, last, tangent, dx, dy, index, test, t3, offset, _this = this; if (_this.pathRef._fVerbsLength === 0) return false; bounds = _this.getBounds$0(0); x = point._dx; y = point._dy; if (x < bounds.left || y < bounds.top || x > bounds.right || y > bounds.bottom) return false; t1 = _this.pathRef; windings = new A.PathWinding(t1, x, y, new Float32Array(18)); windings._walkPath$0(); evenOddFill = B.PathFillType_1 === _this._fillType; w = windings._w; if ((evenOddFill ? w & 1 : w) !== 0) return true; onCurveCount = windings._onCurveCount; if (onCurveCount <= 1) return B.JSBool_methods.$xor(onCurveCount !== 0, false); t1 = onCurveCount & 1; if (t1 !== 0 || evenOddFill) return t1 !== 0; iter = A.PathIterator$(_this.pathRef, true); _buffer = new Float32Array(18); tangents = A._setArrayType([], type$.JSArray_Offset); t1 = iter.pathRef; done = false; do { oldCount = tangents.length; switch (iter.next$1(0, _buffer)) { case 0: case 5: break; case 1: A.tangentLine(_buffer, x, y, tangents); break; case 2: A.tangentQuad(_buffer, x, y, tangents); break; case 3: t2 = iter._conicWeightIndex; A.tangentConic(_buffer, x, y, t1._conicWeights[t2], tangents); break; case 4: A.tangentCubic(_buffer, x, y, tangents); break; case 6: done = true; break; } t2 = tangents.length; if (t2 > oldCount) { last = t2 - 1; tangent = tangents[last]; dx = tangent._dx; dy = tangent._dy; if (Math.abs(dx * dx + dy * dy - 0) < 0.000244140625) B.JSArray_methods.removeAt$1(tangents, last); else for (index = 0; index < last; ++index) { test = tangents[index]; t2 = test._dx; t3 = test._dy; if (Math.abs(t2 * dy - t3 * dx - 0) < 0.000244140625) { t2 = dx * t2; if (t2 < 0) t2 = -1; else t2 = t2 > 0 ? 1 : 0; if (t2 <= 0) { t2 = dy * t3; if (t2 < 0) t2 = -1; else t2 = t2 > 0 ? 1 : 0; t2 = t2 <= 0; } else t2 = false; } else t2 = false; if (t2) { offset = B.JSArray_methods.removeAt$1(tangents, last); if (index !== tangents.length) tangents[index] = offset; break; } } } } while (!done); return tangents.length !== 0 || false; }, shift$1(offset) { var t6, t1 = offset._dx, t2 = offset._dy, t3 = this.pathRef, t4 = A.PathRef__fPointsFromSource(t3, t1, t2), t5 = t3._fVerbsCapacity, verbs = new Uint8Array(t5); B.NativeUint8List_methods.setAll$2(verbs, 0, t3._fVerbs); t4 = new A.PathRef(t4, verbs); t5 = t3._conicWeightsCapacity; t4._conicWeightsCapacity = t5; t4._conicWeightsLength = t3._conicWeightsLength; t6 = t3._conicWeights; if (t6 != null) { t5 = new Float32Array(t5); t4._conicWeights = t5; B.NativeFloat32List_methods.setAll$2(t5, 0, t6); } t4._fVerbsCapacity = t3._fVerbsCapacity; t4._fVerbsLength = t3._fVerbsLength; t4._fPointsCapacity = t3._fPointsCapacity; t4._fPointsLength = t3._fPointsLength; t5 = t3.fBoundsIsDirty; t4.fBoundsIsDirty = t5; if (!t5) { t4.fBounds = t3.fBounds.translate$2(0, t1, t2); t5 = t3.cachedBounds; t4.cachedBounds = t5 == null ? null : t5.translate$2(0, t1, t2); t4.fIsFinite = t3.fIsFinite; } t4.fSegmentMask = t3.fSegmentMask; t4.fIsOval = t3.fIsOval; t4.fIsRRect = t3.fIsRRect; t4.fIsRect = t3.fIsRect; t4.fRRectOrOvalIsCCW = t3.fRRectOrOvalIsCCW; t4.fRRectOrOvalStartIdx = t3.fRRectOrOvalStartIdx; t1 = new A.SurfacePath(t4, B.PathFillType_0); t1._copyFields$1(this); return t1; }, getBounds$0(_) { var t2, iter, points, ltrbInitialized, left, $top, right, bottom, minX, maxX, minY, maxY, cubicBounds, quadBounds, conicBounds, verb, pIndex, pointIndex, x1, pointIndex0, y1, cpX, cpY, x2, y2, t3, t4, t5, denom, t10, tprime, t6, t7, extremaX, extremaY, t20, tprime2, extrema2X, extrema2Y, roots, p20x, wP10x, $B, src2w, p20y, wP10y, startX, startY, cpX1, cpY1, cpX2, cpY2, endX, endY, a, b, s, t, newBounds, _this = this, t1 = _this.pathRef; if ((t1.fIsRRect ? t1.fRRectOrOvalStartIdx : -1) === -1) t2 = (t1.fIsOval ? t1.fRRectOrOvalStartIdx : -1) !== -1; else t2 = true; if (t2) return t1.getBounds$0(0); if (!t1.fBoundsIsDirty && t1.cachedBounds != null) { t1 = t1.cachedBounds; t1.toString; return t1; } iter = new A.PathRefIterator(t1); iter.PathRefIterator$1(t1); points = _this.pathRef.fPoints; for (ltrbInitialized = false, left = 0, $top = 0, right = 0, bottom = 0, minX = 0, maxX = 0, minY = 0, maxY = 0, cubicBounds = null, quadBounds = null, conicBounds = null; verb = iter.nextIndex$0(), verb !== 6;) { pIndex = iter.iterIndex; switch (verb) { case 0: maxX = points[pIndex]; maxY = points[pIndex + 1]; minY = maxY; minX = maxX; break; case 1: maxX = points[pIndex + 2]; maxY = points[pIndex + 3]; minY = maxY; minX = maxX; break; case 2: if (quadBounds == null) quadBounds = new A.QuadBounds(); pointIndex = pIndex + 1; x1 = points[pIndex]; pointIndex0 = pointIndex + 1; y1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY = points[pointIndex]; x2 = points[pointIndex0]; y2 = points[pointIndex0 + 1]; t2 = quadBounds.minX = Math.min(x1, x2); t3 = quadBounds.minY = Math.min(y1, y2); t4 = quadBounds.maxX = Math.max(x1, x2); t5 = quadBounds.maxY = Math.max(y1, y2); denom = x1 - 2 * cpX + x2; if (Math.abs(denom) > 0.000244140625) { t10 = (x1 - cpX) / denom; if (t10 >= 0 && t10 <= 1) { tprime = 1 - t10; t6 = tprime * tprime; t7 = 2 * t10 * tprime; t10 *= t10; extremaX = t6 * x1 + t7 * cpX + t10 * x2; extremaY = t6 * y1 + t7 * cpY + t10 * y2; t2 = Math.min(t2, extremaX); quadBounds.minX = t2; t4 = Math.max(t4, extremaX); quadBounds.maxX = t4; t3 = Math.min(t3, extremaY); quadBounds.minY = t3; t5 = Math.max(t5, extremaY); quadBounds.maxY = t5; } } denom = y1 - 2 * cpY + y2; if (Math.abs(denom) > 0.000244140625) { t20 = (y1 - cpY) / denom; if (t20 >= 0 && t20 <= 1) { tprime2 = 1 - t20; t6 = tprime2 * tprime2; t7 = 2 * t20 * tprime2; t20 *= t20; extrema2X = t6 * x1 + t7 * cpX + t20 * x2; extrema2Y = t6 * y1 + t7 * cpY + t20 * y2; t2 = Math.min(t2, extrema2X); quadBounds.minX = t2; t4 = Math.max(t4, extrema2X); quadBounds.maxX = t4; t3 = Math.min(t3, extrema2Y); quadBounds.minY = t3; t5 = Math.max(t5, extrema2Y); quadBounds.maxY = t5; } maxY = t5; maxX = t4; minY = t3; minX = t2; } else { maxY = t5; maxX = t4; minY = t3; minX = t2; } break; case 3: if (conicBounds == null) conicBounds = new A.ConicBounds(); t2 = t1._conicWeights[iter._conicWeightIndex]; pointIndex = pIndex + 1; x1 = points[pIndex]; pointIndex0 = pointIndex + 1; y1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY = points[pointIndex]; x2 = points[pointIndex0]; y2 = points[pointIndex0 + 1]; conicBounds.minX = Math.min(x1, x2); conicBounds.minY = Math.min(y1, y2); conicBounds.maxX = Math.max(x1, x2); conicBounds.maxY = Math.max(y1, y2); roots = new A.QuadRoots(); p20x = x2 - x1; wP10x = t2 * (cpX - x1); if (roots.findRoots$3(t2 * p20x - p20x, p20x - 2 * wP10x, wP10x) !== 0) { t3 = roots.root0; t3.toString; if (t3 >= 0 && t3 <= 1) { $B = 2 * (t2 - 1); denom = (-$B * t3 + $B) * t3 + 1; src2w = cpX * t2; extremaX = (((x2 - 2 * src2w + x1) * t3 + 2 * (src2w - x1)) * t3 + x1) / denom; src2w = cpY * t2; extremaY = (((y2 - 2 * src2w + y1) * t3 + 2 * (src2w - y1)) * t3 + y1) / denom; conicBounds.minX = Math.min(conicBounds.minX, extremaX); conicBounds.maxX = Math.max(conicBounds.maxX, extremaX); conicBounds.minY = Math.min(conicBounds.minY, extremaY); conicBounds.maxY = Math.max(conicBounds.maxY, extremaY); } } p20y = y2 - y1; wP10y = t2 * (cpY - y1); if (roots.findRoots$3(t2 * p20y - p20y, p20y - 2 * wP10y, wP10y) !== 0) { t3 = roots.root0; t3.toString; if (t3 >= 0 && t3 <= 1) { $B = 2 * (t2 - 1); denom = (-$B * t3 + $B) * t3 + 1; src2w = cpX * t2; extrema2X = (((x2 - 2 * src2w + x1) * t3 + 2 * (src2w - x1)) * t3 + x1) / denom; src2w = cpY * t2; extrema2Y = (((y2 - 2 * src2w + y1) * t3 + 2 * (src2w - y1)) * t3 + y1) / denom; conicBounds.minX = Math.min(conicBounds.minX, extrema2X); conicBounds.maxX = Math.max(conicBounds.maxX, extrema2X); conicBounds.minY = Math.min(conicBounds.minY, extrema2Y); conicBounds.maxY = Math.max(conicBounds.maxY, extrema2Y); } } minX = conicBounds.minX; minY = conicBounds.minY; maxX = conicBounds.maxX; maxY = conicBounds.maxY; break; case 4: if (cubicBounds == null) cubicBounds = new A.CubicBounds(); pointIndex = pIndex + 1; startX = points[pIndex]; pointIndex0 = pointIndex + 1; startY = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX1 = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX2 = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY2 = points[pointIndex]; endX = points[pointIndex0]; endY = points[pointIndex0 + 1]; t2 = Math.min(startX, endX); cubicBounds.minX = t2; cubicBounds.minY = Math.min(startY, endY); t3 = Math.max(startX, endX); cubicBounds.maxX = t3; cubicBounds.maxY = Math.max(startY, endY); if (!(startX < cpX1 && cpX1 < cpX2 && cpX2 < endX)) t4 = startX > cpX1 && cpX1 > cpX2 && cpX2 > endX; else t4 = true; if (!t4) { t4 = -startX; a = t4 + 3 * (cpX1 - cpX2) + endX; b = 2 * (startX - 2 * cpX1 + cpX2); s = b * b - 4 * a * (t4 + cpX1); if (s >= 0 && Math.abs(a) > 0.000244140625) { t4 = -b; t5 = 2 * a; if (s === 0) { t = t4 / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t4 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t4 * tprime * t * cpX1 + t4 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, t2); cubicBounds.maxX = Math.max(extremaX, t3); } } else { s = Math.sqrt(s); t = (t4 - s) / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t2 * tprime * t * cpX1 + t2 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, cubicBounds.minX); cubicBounds.maxX = Math.max(extremaX, cubicBounds.maxX); } t = (t4 + s) / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t2 * tprime * t * cpX1 + t2 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, cubicBounds.minX); cubicBounds.maxX = Math.max(extremaX, cubicBounds.maxX); } } } } if (!(startY < cpY1 && cpY1 < cpY2 && cpY2 < endY)) t2 = startY > cpY1 && cpY1 > cpY2 && cpY2 > endY; else t2 = true; if (!t2) { t2 = -startY; a = t2 + 3 * (cpY1 - cpY2) + endY; b = 2 * (startY - 2 * cpY1 + cpY2); s = b * b - 4 * a * (t2 + cpY1); if (s >= 0 && Math.abs(a) > 0.000244140625) { t2 = -b; t3 = 2 * a; if (s === 0) { t = t2 / t3; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaY = tprime * tprime * tprime * startY + t2 * tprime * t * cpY1 + t2 * t * t * cpY2 + t * t * t * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } } else { s = Math.sqrt(s); t = (t2 - s) / t3; tprime = 1 - t; if (t >= 0 && t <= 1) { t4 = 3 * tprime; extremaY = tprime * tprime * tprime * startY + t4 * tprime * t * cpY1 + t4 * t * t * cpY2 + t * t * t * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } t2 = (t2 + s) / t3; tprime2 = 1 - t2; if (t2 >= 0 && t2 <= 1) { t3 = 3 * tprime2; extremaY = tprime2 * tprime2 * tprime2 * startY + t3 * tprime2 * t2 * cpY1 + t3 * t2 * t2 * cpY2 + t2 * t2 * t2 * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } } } } minX = cubicBounds.minX; minY = cubicBounds.minY; maxX = cubicBounds.maxX; maxY = cubicBounds.maxY; break; } if (!ltrbInitialized) { bottom = maxY; right = maxX; $top = minY; left = minX; ltrbInitialized = true; } else { left = Math.min(left, minX); right = Math.max(right, maxX); $top = Math.min($top, minY); bottom = Math.max(bottom, maxY); } } newBounds = ltrbInitialized ? new A.Rect(left, $top, right, bottom) : B.Rect_0_0_0_0; _this.pathRef.getBounds$0(0); return _this.pathRef.cachedBounds = newBounds; }, get$isEmpty(_) { return 0 === this.pathRef._fVerbsLength; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; }, $isPath: 1 }; A.PathIterator.prototype = { _autoClose$1(outPts) { var _this = this, t1 = _this._lastPointX, t2 = _this._moveToX; if (t1 !== t2 || _this._lastPointY !== _this._moveToY) { if (isNaN(t1) || isNaN(_this._lastPointY) || isNaN(t2) || isNaN(_this._moveToY)) return 5; outPts[0] = t1; outPts[1] = _this._lastPointY; outPts[2] = t2; t1 = _this._moveToY; outPts[3] = t1; _this._lastPointX = t2; _this._lastPointY = t1; return 1; } else { outPts[0] = t2; outPts[1] = _this._moveToY; return 5; } }, _constructMoveTo$0() { var t1, t2, _this = this; if (_this._segmentState === 1) { _this._segmentState = 2; return new A.Offset(_this._moveToX, _this._moveToY); } t1 = _this.pathRef.fPoints; t2 = _this._pointIndex; return new A.Offset(t1[t2 - 2], t1[t2 - 1]); }, next$1(_, outPts) { var t3, verb, autoVerb, offsetX, offsetY, start, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) { if (_this._needClose && _this._segmentState === 2) { if (1 === _this._autoClose$1(outPts)) return 1; _this._needClose = false; return 5; } return 6; } t3 = _this._verbIndex = t1 + 1; verb = t2._fVerbs[t1]; switch (verb) { case 0: if (_this._needClose) { _this._verbIndex = t3 - 1; autoVerb = _this._autoClose$1(outPts); if (autoVerb === 5) _this._needClose = false; return autoVerb; } if (t3 === _this._verbCount) return 6; t1 = t2.fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; offsetX = t1[t2]; _this._pointIndex = t3 + 1; offsetY = t1[t3]; _this._moveToX = offsetX; _this._moveToY = offsetY; outPts[0] = offsetX; outPts[1] = offsetY; _this._segmentState = 1; _this._lastPointX = offsetX; _this._lastPointY = offsetY; _this._needClose = true; break; case 1: start = _this._constructMoveTo$0(); t1 = t2.fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; offsetX = t1[t2]; _this._pointIndex = t3 + 1; offsetY = t1[t3]; outPts[0] = start._dx; outPts[1] = start._dy; outPts[2] = offsetX; outPts[3] = offsetY; _this._lastPointX = offsetX; _this._lastPointY = offsetY; break; case 3: ++_this._conicWeightIndex; start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2.fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[4] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[5] = t3; _this._lastPointY = t3; break; case 2: start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2.fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[4] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[5] = t3; _this._lastPointY = t3; break; case 4: start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2.fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; outPts[4] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[5] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[6] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[7] = t3; _this._lastPointY = t3; break; case 5: verb = _this._autoClose$1(outPts); if (verb === 1) --_this._verbIndex; else { _this._needClose = false; _this._segmentState = 0; } _this._lastPointX = _this._moveToX; _this._lastPointY = _this._moveToY; break; case 6: break; default: throw A.wrapException(A.FormatException$("Unsupport Path verb " + verb, null, null)); } return verb; } }; A.PathRef.prototype = { setPoint$3(pointIndex, x, y) { var index = pointIndex * 2, t1 = this.fPoints; t1[index] = x; t1[index + 1] = y; }, atPoint$1(index) { var t1 = this.fPoints, t2 = index * 2; return new A.Offset(t1[t2], t1[t2 + 1]); }, getRect$0() { var _this = this; if (_this.fIsRect) return new A.Rect(_this.atPoint$1(0)._dx, _this.atPoint$1(0)._dy, _this.atPoint$1(1)._dx, _this.atPoint$1(2)._dy); else return _this._fVerbsLength === 4 ? _this._detectRect$0() : null; }, getBounds$0(_) { var t1; if (this.fBoundsIsDirty) this._computeBounds$0(); t1 = this.fBounds; t1.toString; return t1; }, _detectRect$0() { var width, x2, y2, height, t1, y3, _this = this, _null = null, x0 = _this.atPoint$1(0)._dx, y0 = _this.atPoint$1(0)._dy, x1 = _this.atPoint$1(1)._dx, y1 = _this.atPoint$1(1)._dy; if (_this._fVerbs[1] !== 1 || y1 != y0) return _null; width = x1 - x0; x2 = _this.atPoint$1(2)._dx; y2 = _this.atPoint$1(2)._dy; if (_this._fVerbs[2] !== 1 || x2 !== x1) return _null; height = y2 - y1; t1 = _this.atPoint$1(3); y3 = _this.atPoint$1(3)._dy; if (_this._fVerbs[3] !== 1 || y3 !== y2) return _null; if (x2 - t1._dx !== width || y3 - y0 !== height) return _null; return new A.Rect(x0, y0, x0 + width, y0 + height); }, getStraightLine$0() { var t1, x0, y0, x1, y1; if (this._fVerbsLength === 2) { t1 = this._fVerbs; t1 = t1[0] !== 0 || t1[1] !== 1; } else t1 = true; if (t1) return null; t1 = this.fPoints; x0 = t1[0]; y0 = t1[1]; x1 = t1[2]; y1 = t1[3]; if (y0 === y1 || x0 === x1) return new A.Rect(x0, y0, x1, y1); return null; }, _getRRect$0() { var pts, cornerIndex, verb, controlPx, controlPy, vector1_0x, vector1_0y, t1, t2, dx, dy, t3, bounds = this.getBounds$0(0), radii = A._setArrayType([], type$.JSArray_Radius), iter = new A.PathRefIterator(this); iter.PathRefIterator$1(this); pts = new Float32Array(8); iter.next$1(0, pts); for (cornerIndex = 0; verb = iter.next$1(0, pts), verb !== 6;) if (3 === verb) { controlPx = pts[2]; controlPy = pts[3]; vector1_0x = controlPx - pts[0]; vector1_0y = controlPy - pts[1]; t1 = pts[4]; t2 = pts[5]; if (vector1_0x !== 0) { dx = Math.abs(vector1_0x); dy = Math.abs(t2 - controlPy); } else { dy = Math.abs(vector1_0y); dx = vector1_0y !== 0 ? Math.abs(t1 - controlPx) : Math.abs(vector1_0x); } radii.push(new A.Radius(dx, dy)); ++cornerIndex; } t1 = radii[0]; t2 = radii[1]; t3 = radii[2]; return A.RRect$fromRectAndCorners(bounds, radii[3], t3, t1, t2); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.PathRef && this.equals$1(other); }, get$hashCode(_) { var _this = this; return A.hashValues(_this.fSegmentMask, _this.fPoints, _this._conicWeights, _this._fVerbs, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, equals$1(ref) { var pointCount, len, t1, t2, i, weightCount, verbCount, _this = this; if (_this.fSegmentMask !== ref.fSegmentMask) return false; pointCount = _this._fPointsLength; if (pointCount !== ref._fPointsLength) return false; len = pointCount * 2; for (t1 = _this.fPoints, t2 = ref.fPoints, i = 0; i < len; ++i) if (t1[i] !== t2[i]) return false; t1 = _this._conicWeights; if (t1 == null) { if (ref._conicWeights != null) return false; } else { t2 = ref._conicWeights; if (t2 == null) return false; weightCount = t1.length; if (t2.length !== weightCount) return false; for (i = 0; i < weightCount; ++i) if (t1[i] !== t2[i]) return false; } verbCount = _this._fVerbsLength; if (verbCount !== ref._fVerbsLength) return false; for (t1 = _this._fVerbs, t2 = ref._fVerbs, i = 0; i < verbCount; ++i) if (t1[i] !== t2[i]) return false; return true; }, _resizePoints$1(newLength) { var t1, newPoints, _this = this; if (newLength > _this._fPointsCapacity) { t1 = newLength + 10; _this._fPointsCapacity = t1; newPoints = new Float32Array(t1 * 2); B.NativeFloat32List_methods.setAll$2(newPoints, 0, _this.fPoints); _this.fPoints = newPoints; } _this._fPointsLength = newLength; }, _resizeVerbs$1(newLength) { var t1, newVerbs, _this = this; if (newLength > _this._fVerbsCapacity) { t1 = newLength + 8; _this._fVerbsCapacity = t1; newVerbs = new Uint8Array(t1); B.NativeUint8List_methods.setAll$2(newVerbs, 0, _this._fVerbs); _this._fVerbs = newVerbs; } _this._fVerbsLength = newLength; }, _resizeConicWeights$1(newLength) { var t1, newWeights, _this = this; if (newLength > _this._conicWeightsCapacity) { t1 = newLength + 4; _this._conicWeightsCapacity = t1; newWeights = new Float32Array(t1); t1 = _this._conicWeights; if (t1 != null) B.NativeFloat32List_methods.setAll$2(newWeights, 0, t1); _this._conicWeights = newWeights; } _this._conicWeightsLength = newLength; }, _computeBounds$0() { var t1, maxX, maxY, accum, len, minY, minX, i, x, y, _this = this, pointCount = _this._fPointsLength; _this.fBoundsIsDirty = false; _this.cachedBounds = null; if (pointCount === 0) { _this.fBounds = B.Rect_0_0_0_0; _this.fIsFinite = true; } else { t1 = _this.fPoints; maxX = t1[0]; maxY = t1[1]; accum = 0 * maxX * maxY; len = 2 * pointCount; for (minY = maxY, minX = maxX, i = 2; i < len; i += 2) { x = t1[i]; y = t1[i + 1]; accum = accum * x * y; minX = Math.min(minX, x); minY = Math.min(minY, y); maxX = Math.max(maxX, x); maxY = Math.max(maxY, y); } if (accum * 0 === 0) { _this.fBounds = new A.Rect(minX, minY, maxX, maxY); _this.fIsFinite = true; } else { _this.fBounds = B.Rect_0_0_0_0; _this.fIsFinite = false; } } }, growForVerb$2(verb, weight) { var pCnt, mask, verbCount, weightCount, ptsIndex, _this = this; switch (verb) { case 0: pCnt = 1; mask = 0; break; case 1: pCnt = 1; mask = 1; break; case 2: pCnt = 2; mask = 2; break; case 3: pCnt = 2; mask = 4; break; case 4: pCnt = 3; mask = 8; break; case 5: pCnt = 0; mask = 0; break; case 6: pCnt = 0; mask = 0; break; default: pCnt = 0; mask = 0; break; } _this.fSegmentMask |= mask; _this.fBoundsIsDirty = true; _this.startEdit$0(); verbCount = _this._fVerbsLength; _this._resizeVerbs$1(verbCount + 1); _this._fVerbs[verbCount] = verb; if (3 === verb) { weightCount = _this._conicWeightsLength; _this._resizeConicWeights$1(weightCount + 1); _this._conicWeights[weightCount] = weight; } ptsIndex = _this._fPointsLength; _this._resizePoints$1(ptsIndex + pCnt); return ptsIndex; }, growForRepeatedVerb$2(verb, numVbs) { var pCnt, mask, verbCount, t1, i, ptsIndex, _this = this; _this.startEdit$0(); switch (verb) { case 0: pCnt = numVbs; mask = 0; break; case 1: pCnt = numVbs; mask = 1; break; case 2: pCnt = 2 * numVbs; mask = 2; break; case 3: pCnt = 2 * numVbs; mask = 4; break; case 4: pCnt = 3 * numVbs; mask = 8; break; case 5: pCnt = 0; mask = 0; break; case 6: pCnt = 0; mask = 0; break; default: pCnt = 0; mask = 0; break; } _this.fSegmentMask |= mask; _this.fBoundsIsDirty = true; _this.startEdit$0(); if (3 === verb) _this._resizeConicWeights$1(_this._conicWeightsLength + numVbs); verbCount = _this._fVerbsLength; _this._resizeVerbs$1(verbCount + numVbs); for (t1 = _this._fVerbs, i = 0; i < numVbs; ++i) t1[verbCount + i] = verb; ptsIndex = _this._fPointsLength; _this._resizePoints$1(ptsIndex + pCnt); return ptsIndex; }, startEdit$0() { var _this = this; _this.fIsRect = _this.fIsRRect = _this.fIsOval = false; _this.cachedBounds = null; _this.fBoundsIsDirty = true; }, get$isEmpty(_) { return this._fVerbsLength === 0; } }; A.PathRefIterator.prototype = { PathRefIterator$1(pathRef) { var t1; this._pointIndex = 0; t1 = this.pathRef; if (t1.fBoundsIsDirty) t1._computeBounds$0(); if (!t1.fIsFinite) this._verbIndex = t1._fVerbsLength; }, nextIndex$0() { var verb, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) return 6; t2 = t2._fVerbs; _this._verbIndex = t1 + 1; verb = t2[t1]; switch (verb) { case 0: t1 = _this._pointIndex; _this.iterIndex = t1; _this._pointIndex = t1 + 2; break; case 1: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 2; break; case 3: ++_this._conicWeightIndex; t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 4; break; case 2: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 4; break; case 4: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 6; break; case 5: break; case 6: break; default: throw A.wrapException(A.FormatException$("Unsupport Path verb " + verb, null, null)); } return verb; }, next$1(_, outPts) { var t3, verb, points, pointIndex, pointIndex0, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) return 6; t3 = t2._fVerbs; _this._verbIndex = t1 + 1; verb = t3[t1]; points = t2.fPoints; pointIndex = _this._pointIndex; switch (verb) { case 0: pointIndex0 = pointIndex + 1; outPts[0] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[1] = points[pointIndex0]; break; case 1: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; break; case 3: ++_this._conicWeightIndex; outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; break; case 2: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; break; case 4: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[6] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[7] = points[pointIndex0]; break; case 5: break; case 6: break; default: throw A.wrapException(A.FormatException$("Unsupport Path verb " + verb, null, null)); } _this._pointIndex = pointIndex; return verb; } }; A.QuadRoots.prototype = { findRoots$3(a, b, c) { var t1, dr, q, res, rootCount, rootCount0, t2, _this = this; if (a === 0) { t1 = A.validUnitDivide(-c, b); _this.root0 = t1; return t1 == null ? 0 : 1; } dr = b * b - 4 * a * c; if (dr < 0) return 0; dr = Math.sqrt(dr); if (!isFinite(dr)) return 0; q = b < 0 ? -(b - dr) / 2 : -(b + dr) / 2; res = A.validUnitDivide(q, a); if (res != null) { _this.root0 = res; rootCount = 1; } else rootCount = 0; res = A.validUnitDivide(c, q); if (res != null) { rootCount0 = rootCount + 1; if (rootCount === 0) _this.root0 = res; else _this.root1 = res; rootCount = rootCount0; } if (rootCount === 2) { t1 = _this.root0; t1.toString; t2 = _this.root1; t2.toString; if (t1 > t2) { _this.root0 = t2; _this.root1 = t1; } else if (t1 === t2) return 1; } return rootCount; } }; A.SkQuadCoefficients.prototype = { evalX$1(t) { return (this.ax * t + this.bx) * t + this.cx; }, evalY$1(t) { return (this.ay * t + this.by) * t + this.cy; } }; A.PathWinding.prototype = { _walkPath$0() { var t2, t3, verb, n, winding, t4, t5, t6, t7, t8, t9, t10, isMono, conics, _this = this, t1 = _this.pathRef, iter = A.PathIterator$(t1, true); for (t2 = _this.__engine$_buffer, t3 = type$.JSArray_Conic; verb = iter.next$1(0, t2), verb !== 6;) switch (verb) { case 0: case 5: break; case 1: _this._computeLineWinding$0(); break; case 2: n = !A.PathWinding__isQuadMonotonic(t2) ? A.PathWinding__chopQuadAtExtrema(t2) : 0; winding = _this._computeMonoQuadWinding$6(t2[0], t2[1], t2[2], t2[3], t2[4], t2[5]); _this._w += n > 0 ? winding + _this._computeMonoQuadWinding$6(t2[4], t2[5], t2[6], t2[7], t2[8], t2[9]) : winding; break; case 3: t4 = t1._conicWeights[iter._conicWeightIndex]; t5 = t2[0]; t6 = t2[1]; t7 = t2[2]; t8 = t2[3]; t9 = t2[4]; t10 = t2[5]; isMono = A.PathWinding__isQuadMonotonic(t2); conics = A._setArrayType([], t3); new A.Conic(t5, t6, t7, t8, t9, t10, t4).chopAtYExtrema$1(conics); _this._computeMonoConicWinding$1(conics[0]); if (!isMono && conics.length === 2) _this._computeMonoConicWinding$1(conics[1]); break; case 4: _this._computeCubicWinding$0(); break; } }, _computeLineWinding$0() { var y1, y0, dir, t2, crossProduct, _this = this, t1 = _this.__engine$_buffer, x0 = t1[0], startY = t1[1], x1 = t1[2], endY = t1[3]; if (startY > endY) { y1 = startY; y0 = endY; dir = -1; } else { y1 = endY; y0 = startY; dir = 1; } t1 = _this.y; if (t1 < y0 || t1 > y1) return; t2 = _this.x; if (A.PathWinding__checkOnCurve(t2, t1, x0, startY, x1, endY)) { ++_this._onCurveCount; return; } if (t1 === y1) return; crossProduct = (x1 - x0) * (t1 - startY) - (endY - startY) * (t2 - x0); if (crossProduct === 0) { if (t2 !== x1 || t1 !== endY) ++_this._onCurveCount; dir = 0; } else if (A.SPath_scalarSignedAsInt(crossProduct) === dir) dir = 0; _this._w += dir; }, _computeMonoQuadWinding$6(x0, y0, x1, y1, x2, y2) { var y20, y00, dir, t1, t2, quadRoots, xt, t3, _this = this; if (y0 > y2) { y20 = y0; y00 = y2; dir = -1; } else { y20 = y2; y00 = y0; dir = 1; } t1 = _this.y; if (t1 < y00 || t1 > y20) return 0; t2 = _this.x; if (A.PathWinding__checkOnCurve(t2, t1, x0, y0, x2, y2)) { ++_this._onCurveCount; return 0; } if (t1 === y20) return 0; quadRoots = new A.QuadRoots(); if (0 === quadRoots.findRoots$3(y0 - 2 * y1 + y2, 2 * (y1 - y0), y0 - t1)) xt = dir === 1 ? x0 : x2; else { t3 = quadRoots.root0; t3.toString; xt = ((x2 - 2 * x1 + x0) * t3 + 2 * (x1 - x0)) * t3 + x0; } if (Math.abs(xt - t2) < 0.000244140625) if (t2 !== x2 || t1 !== y2) { ++_this._onCurveCount; return 0; } return xt < t2 ? dir : 0; }, _computeMonoConicWinding$1(conic) { var y20, y00, dir, t1, t2, t3, $B, quadRoots, xt, t4, _this = this, y0 = conic.p0y, y2 = conic.p2y; if (y0 > y2) { y20 = y0; y00 = y2; dir = -1; } else { y20 = y2; y00 = y0; dir = 1; } t1 = _this.y; if (t1 < y00 || t1 > y20) return; t2 = _this.x; if (A.PathWinding__checkOnCurve(t2, t1, conic.p0x, y0, conic.p2x, y2)) { ++_this._onCurveCount; return; } if (t1 === y20) return; t3 = conic.fW; $B = conic.p1y * t3 - t1 * t3 + t1; quadRoots = new A.QuadRoots(); if (0 === quadRoots.findRoots$3(y2 + (y0 - 2 * $B), 2 * ($B - y0), y0 - t1)) xt = dir === 1 ? conic.p0x : conic.p2x; else { t4 = quadRoots.root0; t4.toString; xt = A.Conic_evalNumerator(conic.p0x, conic.p1x, conic.p2x, t3, t4) / A.Conic_evalDenominator(t3, t4); } if (Math.abs(xt - t2) < 0.000244140625) if (t2 !== conic.p2x || t1 !== conic.p2y) { ++_this._onCurveCount; return; } t1 = _this._w; _this._w = t1 + (xt < t2 ? dir : 0); }, _computeCubicWinding$0() { var i, t1 = this.__engine$_buffer, n = A.chopCubicAtYExtrema(t1, t1); for (i = 0; i <= n; ++i) this._windingMonoCubic$1(i * 3 * 2); }, _windingMonoCubic$1(bufferIndex) { var px2, px3, py3, y3, y0, dir, t2, t3, min, max, t, xt, _this = this, t1 = _this.__engine$_buffer, bufferIndex0 = bufferIndex + 1, px0 = t1[bufferIndex], bufferIndex1 = bufferIndex0 + 1, py0 = t1[bufferIndex0], px1 = t1[bufferIndex1]; bufferIndex0 = bufferIndex1 + 1 + 1; px2 = t1[bufferIndex0]; bufferIndex0 = bufferIndex0 + 1 + 1; px3 = t1[bufferIndex0]; py3 = t1[bufferIndex0 + 1]; if (py0 > py3) { y3 = py0; y0 = py3; dir = -1; } else { y3 = py3; y0 = py0; dir = 1; } t2 = _this.y; if (t2 < y0 || t2 > y3) return; t3 = _this.x; if (A.PathWinding__checkOnCurve(t3, t2, px0, py0, px3, py3)) { ++_this._onCurveCount; return; } if (t2 === y3) return; min = Math.min(px0, Math.min(px1, Math.min(px2, px3))); max = Math.max(px0, Math.max(px1, Math.max(px2, px3))); if (t3 < min) return; if (t3 > max) { _this._w += dir; return; } t = A.chopMonoAtY(t1, bufferIndex, t2); if (t == null) return; xt = A.evalCubicPts(px0, px1, px2, px3, t); if (Math.abs(xt - t3) < 0.000244140625) if (t3 !== px3 || t2 !== py3) { ++_this._onCurveCount; return; } t1 = _this._w; _this._w = t1 + (xt < t3 ? dir : 0); } }; A.PaintRequest.prototype = { paintCallback$0() { return this.paintCallback.call$0(); } }; A.PersistedPicture.prototype = { createElement$0(_) { return this.defaultCreateElement$1("flt-picture"); }, preroll$1(prerollContext) { this.super$PersistedSurface$preroll(prerollContext); }, recomputeTransformAndClip$0() { var t2, t3, paintWidth, paintHeight, newDensity, _this = this, t1 = _this.parent.transform; _this.transform = t1; t2 = _this.dx; if (t2 !== 0 || _this.dy !== 0) { t1.toString; t3 = new A.Matrix40(new Float32Array(16)); t3.setFrom$1(t1); _this.transform = t3; t3.translate$2(0, t2, _this.dy); } t1 = _this.localPaintBounds; paintWidth = t1.right - t1.left; paintHeight = t1.bottom - t1.top; t1 = paintWidth === 0 || paintHeight === 0; newDensity = t1 ? 1 : A._computePixelDensity(_this.transform, paintWidth, paintHeight); if (newDensity !== _this._density) { _this._density = newDensity; _this._requiresRepaint = true; } _this._computeExactCullRects$0(); }, _computeExactCullRects$0() { var clipTransform, bounds, localClipBounds, localInverse, t1, t2, _this = this, parentSurface = _this.parent; if (parentSurface.projectedClip == null) { clipTransform = A.Matrix4$identity(); for (bounds = null; parentSurface != null;) { localClipBounds = parentSurface.localClipBounds; if (localClipBounds != null) bounds = bounds == null ? A.transformRect(clipTransform, localClipBounds) : bounds.intersect$1(A.transformRect(clipTransform, localClipBounds)); localInverse = parentSurface.get$localTransformInverse(); if (localInverse != null && !localInverse.isIdentity$0(0)) clipTransform.multiply$1(0, localInverse); parentSurface = parentSurface.parent; } if (bounds != null) t1 = bounds.right - bounds.left <= 0 || bounds.bottom - bounds.top <= 0; else t1 = false; if (t1) bounds = B.Rect_0_0_0_0; t1 = _this.parent; t1.projectedClip = bounds; } else t1 = parentSurface; t1 = t1.projectedClip; t2 = _this.localPaintBounds; if (t1 == null) { _this._exactLocalCullRect = t2; t1 = t2; } else t1 = _this._exactLocalCullRect = t2.intersect$1(t1); if (t1.right - t1.left <= 0 || t1.bottom - t1.top <= 0) _this._exactGlobalCullRect = _this._exactLocalCullRect = B.Rect_0_0_0_0; }, _computeOptimalCullRect$1(oldSurface) { var oldOptimalLocalCullRect, t1, t2, t3, t4, t5, t6, t7, t8, t9, newLocalCullRect, _this = this; if (oldSurface == null || !oldSurface.picture.recordingCanvas._didDraw) { _this._optimalLocalCullRect = _this._exactLocalCullRect; _this._requiresRepaint = true; return; } oldOptimalLocalCullRect = oldSurface === _this ? _this._optimalLocalCullRect : oldSurface._optimalLocalCullRect; if (J.$eq$(_this._exactLocalCullRect, B.Rect_0_0_0_0)) { _this._optimalLocalCullRect = B.Rect_0_0_0_0; if (!J.$eq$(oldOptimalLocalCullRect, B.Rect_0_0_0_0)) _this._requiresRepaint = true; return; } oldOptimalLocalCullRect.toString; t1 = _this._exactLocalCullRect; t1.toString; if (A.rectContainsOther(oldOptimalLocalCullRect, t1)) { _this._optimalLocalCullRect = oldOptimalLocalCullRect; return; } t2 = t1.left; t3 = t1.top; t4 = t1.right; t1 = t1.bottom; t5 = t4 - t2; t6 = A.PersistedPicture__predictTrend(oldOptimalLocalCullRect.left - t2, t5); t7 = t1 - t3; t8 = A.PersistedPicture__predictTrend(oldOptimalLocalCullRect.top - t3, t7); t5 = A.PersistedPicture__predictTrend(t4 - oldOptimalLocalCullRect.right, t5); t7 = A.PersistedPicture__predictTrend(t1 - oldOptimalLocalCullRect.bottom, t7); t9 = _this.localPaintBounds; t9.toString; newLocalCullRect = new A.Rect(t2 - t6, t3 - t8, t4 + t5, t1 + t7).intersect$1(t9); _this._requiresRepaint = !J.$eq$(_this._optimalLocalCullRect, newLocalCullRect); _this._optimalLocalCullRect = newLocalCullRect; }, _applyPaint$1(oldSurface) { var t2, t3, domCanvas, _this = this, t1 = oldSurface == null, oldCanvas = t1 ? null : oldSurface.__engine$_canvas; _this._requiresRepaint = false; t2 = _this.picture.recordingCanvas; if (t2._didDraw) { t3 = _this._optimalLocalCullRect; t3 = t3.get$isEmpty(t3); } else t3 = true; if (t3) { A._recycleCanvas(oldCanvas); if (!t1) oldSurface.__engine$_canvas = null; t1 = _this.rootElement; if (t1 != null) A.removeAllChildren(t1); t1 = _this.__engine$_canvas; if (t1 != null && t1 !== oldCanvas) A._recycleCanvas(t1); _this.__engine$_canvas = null; return; } if (t2.renderStrategy.hasArbitraryPaint) _this._applyBitmapPaint$1(oldCanvas); else { A._recycleCanvas(_this.__engine$_canvas); t1 = _this.rootElement; t1.toString; domCanvas = _this.__engine$_canvas = new A.DomCanvas(t1, A._setArrayType([], type$.JSArray__SaveElementStackEntry), A._setArrayType([], type$.JSArray_Element), A.Matrix4$identity()); t1 = _this.rootElement; t1.toString; A.removeAllChildren(t1); t1 = _this._optimalLocalCullRect; t1.toString; t2.applyCommands$2(domCanvas, t1); domCanvas.endOfPaint$0(); } }, matchForUpdate$1(existingSurface) { var didRequireBitmap, requiresBitmap, oldCanvas, oldPixelCount, _this = this, t1 = existingSurface.picture, t2 = _this.picture; if (t1 == t2) return 0; t1 = t1.recordingCanvas; if (!t1._didDraw) return 1; didRequireBitmap = t1.renderStrategy.hasArbitraryPaint; requiresBitmap = t2.recordingCanvas.renderStrategy.hasArbitraryPaint; if (didRequireBitmap !== requiresBitmap) return 1; else if (!requiresBitmap) return 1; else { oldCanvas = type$.nullable_BitmapCanvas._as(existingSurface.__engine$_canvas); if (oldCanvas == null) return 1; else { t1 = _this._exactLocalCullRect; t1.toString; if (!oldCanvas.doesFitBounds$2(t1, _this._density)) return 1; else { t1 = _this._exactLocalCullRect; t1 = A.BitmapCanvas_widthToPhysical(t1.right - t1.left); t2 = _this._exactLocalCullRect; t2 = A.BitmapCanvas_heightToPhysical(t2.bottom - t2.top); oldPixelCount = oldCanvas.widthInBitmapPixels * oldCanvas.heightInBitmapPixels; if (oldPixelCount === 0) return 1; return 1 - t1 * t2 / oldPixelCount; } } } }, _applyBitmapPaint$1(oldCanvas) { var t1, t2, _this = this; if (oldCanvas instanceof A.BitmapCanvas) { t1 = _this._optimalLocalCullRect; t1.toString; t1 = oldCanvas.doesFitBounds$2(t1, _this._density) && oldCanvas.__engine$_devicePixelRatio === A.EnginePlatformDispatcher_browserDevicePixelRatio(); } else t1 = false; if (t1) { t1 = _this._optimalLocalCullRect; t1.toString; oldCanvas.set$bounds(0, t1); _this.__engine$_canvas = oldCanvas; oldCanvas._elementCache = _this._elementCache; oldCanvas.clear$0(0); t1 = _this.picture.recordingCanvas; t1.toString; t2 = _this._optimalLocalCullRect; t2.toString; t1.applyCommands$2(oldCanvas, t2); oldCanvas.endOfPaint$0(); } else { A._recycleCanvas(oldCanvas); t1 = _this.__engine$_canvas; if (t1 instanceof A.BitmapCanvas) t1._elementCache = null; _this.__engine$_canvas = null; t1 = $.paintQueue; t2 = _this._optimalLocalCullRect; t1.push(new A.PaintRequest(new A.Size(t2.right - t2.left, t2.bottom - t2.top), new A.PersistedPicture__applyBitmapPaint_closure(_this))); } }, _findOrCreateCanvas$1(bounds) { var boundsWidth, boundsHeight, requestedPixelCount, t3, bestRecycledCanvas, lastPixelCount, i, candidate, ratio, t4, t5, candidatePixelCount, t6, fits, isSmaller, canvas, _this = this, t1 = bounds.right - bounds.left, t2 = bounds.bottom - bounds.top; for (boundsWidth = t1 + 1, boundsHeight = t2 + 1, requestedPixelCount = t1 * t2, t3 = requestedPixelCount > 1, bestRecycledCanvas = null, lastPixelCount = 1 / 0, i = 0; i < $._recycledCanvases.length; ++i) { candidate = $._recycledCanvases[i]; ratio = window.devicePixelRatio; t4 = ratio == null || ratio === 0 ? 1 : ratio; if (candidate.__engine$_devicePixelRatio !== t4) continue; t4 = candidate._bounds; t5 = t4.right - t4.left; t4 = t4.bottom - t4.top; candidatePixelCount = t5 * t4; t6 = _this._density; ratio = window.devicePixelRatio; if (candidate.widthInBitmapPixels >= B.JSNumber_methods.ceil$0(boundsWidth * (ratio == null || ratio === 0 ? 1 : ratio)) + 2) { ratio = window.devicePixelRatio; fits = candidate.heightInBitmapPixels >= B.JSNumber_methods.ceil$0(boundsHeight * (ratio == null || ratio === 0 ? 1 : ratio)) + 2 && candidate._density === t6; } else fits = false; isSmaller = candidatePixelCount < lastPixelCount; if (fits && isSmaller) if (!(isSmaller && t3 && candidatePixelCount / requestedPixelCount > 4)) { if (t5 === t1 && t4 === t2) { bestRecycledCanvas = candidate; break; } lastPixelCount = candidatePixelCount; bestRecycledCanvas = candidate; } } if (bestRecycledCanvas != null) { B.JSArray_methods.remove$1($._recycledCanvases, bestRecycledCanvas); bestRecycledCanvas.set$bounds(0, bounds); bestRecycledCanvas._elementCache = _this._elementCache; return bestRecycledCanvas; } canvas = A.BitmapCanvas$(bounds, _this.picture.recordingCanvas.renderStrategy, _this._density); canvas._elementCache = _this._elementCache; return canvas; }, _applyTranslate$0() { var t1 = this.rootElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(" + A.S(this.dx) + "px, " + A.S(this.dy) + "px)", ""); }, apply$0() { this._applyTranslate$0(); this._applyPaint$1(null); }, build$0(_) { this._computeOptimalCullRect$1(null); this._requiresRepaint = true; this.super$PersistedSurface$build(0); }, update$1(_, oldSurface) { var t1, densityChanged, _this = this; _this.super$PersistedSurface$update(0, oldSurface); _this._elementCache = oldSurface._elementCache; if (oldSurface !== _this) oldSurface._elementCache = null; if (_this.dx != oldSurface.dx || _this.dy != oldSurface.dy) _this._applyTranslate$0(); _this._computeOptimalCullRect$1(oldSurface); if (_this.picture == oldSurface.picture) { t1 = _this.__engine$_canvas; densityChanged = t1 instanceof A.BitmapCanvas && _this._density !== t1._density; if (_this._requiresRepaint || densityChanged) _this._applyPaint$1(oldSurface); else _this.__engine$_canvas = oldSurface.__engine$_canvas; } else _this._applyPaint$1(oldSurface); }, retain$0() { var _this = this; _this.super$PersistedSurface$retain(); _this._computeOptimalCullRect$1(_this); if (_this._requiresRepaint) _this._applyPaint$1(_this); }, discard$0() { A._recycleCanvas(this.__engine$_canvas); this.__engine$_canvas = null; this.super$PersistedSurface$discard(); } }; A.PersistedPicture__applyBitmapPaint_closure.prototype = { call$0() { var bitmapCanvas, t1 = this.$this, t2 = t1._optimalLocalCullRect; t2.toString; bitmapCanvas = t1.__engine$_canvas = t1._findOrCreateCanvas$1(t2); bitmapCanvas._elementCache = t1._elementCache; t2 = t1.rootElement; t2.toString; A.removeAllChildren(t2); t1.rootElement.appendChild(bitmapCanvas.rootElement); bitmapCanvas.clear$0(0); t2 = t1.picture.recordingCanvas; t2.toString; t1 = t1._optimalLocalCullRect; t1.toString; t2.applyCommands$2(bitmapCanvas, t1); bitmapCanvas.endOfPaint$0(); }, $signature: 0 }; A.PersistedPlatformView.prototype = { createElement$0(_) { return A.createPlatformViewSlot(this.viewId); }, apply$0() { var _this = this, t1 = _this.rootElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(" + A.S(_this.dx) + "px, " + A.S(_this.dy) + "px)", ""); t1.width = A.S(_this.width) + "px"; t1.height = A.S(_this.height) + "px"; t1.position = "absolute"; }, canUpdateAsMatch$1(oldSurface) { if (this.super$PersistedSurface$canUpdateAsMatch(oldSurface)) return this.viewId == type$.PersistedPlatformView._as(oldSurface).viewId; return false; }, matchForUpdate$1(existingSurface) { return existingSurface.viewId == this.viewId ? 0 : 1; }, update$1(_, oldSurface) { var _this = this; _this.super$PersistedSurface$update(0, oldSurface); if (_this.dx != oldSurface.dx || _this.dy != oldSurface.dy || _this.width !== oldSurface.width || _this.height !== oldSurface.height) _this.apply$0(); } }; A.RecordingCanvas.prototype = { applyCommands$2(engineCanvas, clipRect) { var len, i, len0, i0, command, e, t1, t2, len1, exception; try { t1 = this._pictureBounds; t1.toString; t1 = A.rectContainsOther(clipRect, t1); t2 = this._commands; len1 = t2.length; if (t1) { len = len1; for (i = 0; i < len; ++i) t2[i].apply$1(engineCanvas); } else { len0 = len1; for (i0 = 0; i0 < len0; ++i0) { command = t2[i0]; if (command instanceof A.DrawCommand) if (command.isInvisible$1(clipRect)) continue; command.apply$1(engineCanvas); } } } catch (exception) { e = A.unwrapException(exception); if (!J.$eq$(e.name, "NS_ERROR_FAILURE")) throw exception; } }, drawRect$2(_, rect, paint) { var paintSpread, command, _this = this, t1 = paint._paintData; if (t1.shader != null) _this.renderStrategy.hasArbitraryPaint = true; _this._didDraw = true; paintSpread = A._getPaintSpread(paint); paint._frozen = true; command = new A.PaintDrawRect(rect, t1, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1 = _this._paintBounds; if (paintSpread !== 0) t1.grow$2(rect.inflate$1(paintSpread), command); else t1.grow$2(rect, command); _this._commands.push(command); }, drawRRect$2(_, rrect, paint) { var paintSpread, t2, t3, t4, t5, t6, t7, command, _this = this, t1 = paint._paintData; if (t1.shader != null || !rrect.webOnlyUniformRadii) _this.renderStrategy.hasArbitraryPaint = true; _this._didDraw = true; paintSpread = A._getPaintSpread(paint); t2 = rrect.left; t3 = rrect.right; t4 = Math.min(A.checkNum(t2), A.checkNum(t3)); t5 = rrect.top; t6 = rrect.bottom; t7 = Math.min(A.checkNum(t5), A.checkNum(t6)); t3 = Math.max(A.checkNum(t2), A.checkNum(t3)); t6 = Math.max(A.checkNum(t5), A.checkNum(t6)); paint._frozen = true; command = new A.PaintDrawRRect(rrect, t1, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.growLTRB$5(t4 - paintSpread, t7 - paintSpread, t3 + paintSpread, t6 + paintSpread, command); _this._commands.push(command); }, drawDRRect$3(_, outer, inner, paint) { var scaledOuter, scaledInner, outerTl, outerTr, outerBl, outerBr, innerTl, innerTr, innerBl, innerBr, paintSpread, command, t5, left, right, _this = this, innerRect = new A.Rect(inner.left, inner.top, inner.right, inner.bottom), t1 = outer.left, t2 = outer.top, t3 = outer.right, t4 = outer.bottom, outerRect = new A.Rect(t1, t2, t3, t4); if (outerRect.$eq(0, innerRect) || !outerRect.intersect$1(innerRect).$eq(0, innerRect)) return; scaledOuter = outer.scaleRadii$0(); scaledInner = inner.scaleRadii$0(); outerTl = A._measureBorderRadius(scaledOuter.tlRadiusX, scaledOuter.tlRadiusY); outerTr = A._measureBorderRadius(scaledOuter.trRadiusX, scaledOuter.trRadiusY); outerBl = A._measureBorderRadius(scaledOuter.blRadiusX, scaledOuter.blRadiusY); outerBr = A._measureBorderRadius(scaledOuter.brRadiusX, scaledOuter.brRadiusY); innerTl = A._measureBorderRadius(scaledInner.tlRadiusX, scaledInner.tlRadiusY); innerTr = A._measureBorderRadius(scaledInner.trRadiusX, scaledInner.trRadiusY); innerBl = A._measureBorderRadius(scaledInner.blRadiusX, scaledInner.blRadiusY); innerBr = A._measureBorderRadius(scaledInner.brRadiusX, scaledInner.brRadiusY); if (innerTl > outerTl || innerTr > outerTr || innerBl > outerBl || innerBr > outerBr) return; _this._didDraw = _this.renderStrategy.hasArbitraryPaint = true; paintSpread = A._getPaintSpread(paint); paint._frozen = true; command = new A.PaintDrawDRRect(outer, inner, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t5 = A.Path_Path(); t5.set$fillType(B.PathFillType_1); t5.addRRect$1(0, outer); t5.addRRect$1(0, inner); t5.close$0(0); command.path = t5; left = Math.min(A.checkNum(t1), A.checkNum(t3)); right = Math.max(A.checkNum(t1), A.checkNum(t3)); _this._paintBounds.growLTRB$5(left - paintSpread, Math.min(A.checkNum(t2), A.checkNum(t4)) - paintSpread, right + paintSpread, Math.max(A.checkNum(t2), A.checkNum(t4)) + paintSpread, command); _this._commands.push(command); }, drawPath$2(_, path, paint) { var rect, t1, rrect, pathBounds, paintSpread, t2, t3, clone, command, _this = this; if (paint._paintData.shader == null) { type$.SurfacePath._as(path); rect = path.pathRef.getRect$0(); if (rect != null) { _this.drawRect$2(0, rect, paint); return; } t1 = path.pathRef; rrect = t1.fIsRRect ? t1._getRRect$0() : null; if (rrect != null) { _this.drawRRect$2(0, rrect, paint); return; } } type$.SurfacePath._as(path); if (path.pathRef._fVerbsLength !== 0) { _this._didDraw = _this.renderStrategy.hasArbitraryPaint = true; pathBounds = path.getBounds$0(0); paintSpread = A._getPaintSpread(paint); if (paintSpread !== 0) pathBounds = pathBounds.inflate$1(paintSpread); t1 = path.pathRef; t2 = new A.PathRef(t1.fPoints, t1._fVerbs); t2._fVerbsCapacity = t1._fVerbsCapacity; t2._fVerbsLength = t1._fVerbsLength; t2._fPointsCapacity = t1._fPointsCapacity; t2._fPointsLength = t1._fPointsLength; t2._conicWeightsCapacity = t1._conicWeightsCapacity; t2._conicWeightsLength = t1._conicWeightsLength; t2._conicWeights = t1._conicWeights; t3 = t1.fBoundsIsDirty; t2.fBoundsIsDirty = t3; if (!t3) { t2.fBounds = t1.fBounds; t2.cachedBounds = t1.cachedBounds; t2.fIsFinite = t1.fIsFinite; } t2.fSegmentMask = t1.fSegmentMask; t2.fIsOval = t1.fIsOval; t2.fIsRRect = t1.fIsRRect; t2.fIsRect = t1.fIsRect; t2.fRRectOrOvalIsCCW = t1.fRRectOrOvalIsCCW; t2.fRRectOrOvalStartIdx = t1.fRRectOrOvalStartIdx; clone = new A.SurfacePath(t2, B.PathFillType_0); clone._copyFields$1(path); paint._frozen = true; command = new A.PaintDrawPath(clone, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.grow$2(pathBounds, command); clone._fillType = path._fillType; _this._commands.push(command); } }, drawParagraph$2(_, paragraph, offset) { var t1, left, $top, command, _this = this; type$.CanvasParagraph._as(paragraph); if (!paragraph.isLaidOut) return; _this._didDraw = true; t1 = _this.renderStrategy; t1.hasArbitraryPaint = true; t1.hasParagraphs = true; left = offset._dx; $top = offset._dy; command = new A.PaintDrawParagraph(paragraph, offset, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.growLTRB$5(left, $top, left + paragraph.get$_layoutService().width, $top + paragraph.get$_layoutService().height, command); _this._commands.push(command); } }; A.PaintCommand.prototype = {}; A.DrawCommand.prototype = { isInvisible$1(clipRect) { var _this = this; if (_this.isClippedOut) return true; return _this.bottomBound < clipRect.top || _this.topBound > clipRect.bottom || _this.rightBound < clipRect.left || _this.leftBound > clipRect.right; } }; A.PaintSave.prototype = { apply$1(canvas) { canvas.save$0(0); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintRestore.prototype = { apply$1(canvas) { canvas.restore$0(0); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintTranslate.prototype = { apply$1(canvas) { canvas.translate$2(0, this.dx, this.dy); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintScale.prototype = { apply$1(canvas) { canvas.scale$2(0, this.sx, this.sy); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintRotate.prototype = { apply$1(canvas) { canvas.rotate$1(0, this.radians); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintTransform.prototype = { apply$1(canvas) { canvas.transform$1(0, this.matrix4); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintClipRect.prototype = { apply$1(canvas) { canvas.clipRect$2(0, this.rect, this.clipOp); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintClipRRect.prototype = { apply$1(canvas) { canvas.clipRRect$1(0, this.rrect); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintClipPath.prototype = { apply$1(canvas) { canvas.clipPath$1(0, this.path); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawLine.prototype = { apply$1(canvas) { canvas.drawLine$3(0, this.p1, this.p2, this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawRect.prototype = { apply$1(canvas) { canvas.drawRect$2(0, this.rect, this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawRRect.prototype = { apply$1(canvas) { canvas.drawRRect$2(0, this.rrect, this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawDRRect.prototype = { apply$1(canvas) { var t1 = this.paint; if (t1.style == null) t1.style = B.PaintingStyle_0; canvas.drawPath$2(0, this.path, t1); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawCircle.prototype = { apply$1(canvas) { canvas.drawCircle$3(0, this.c, this.radius, this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawPath.prototype = { apply$1(canvas) { canvas.drawPath$2(0, this.path, this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawShadow.prototype = { apply$1(canvas) { canvas.drawShadow$4(0, this.path, this.color, this.elevation, true); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawImageRect.prototype = { apply$1(canvas) { var _this = this; canvas.drawImageRect$4(_this.image, _this.src, _this.dst, _this.paint); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PaintDrawParagraph.prototype = { apply$1(canvas) { canvas.drawParagraph$2(0, this.paragraph, this.offset); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A._PaintBounds.prototype = { clipRect$2(_, rect, command) { var t1, t4, t3, t2, _this = this, left = rect.left, $top = rect.top, right = rect.right, bottom = rect.bottom; if (!_this._currentMatrixIsIdentity) { t1 = $.$get$_PaintBounds__tempRectData(); t1[0] = left; t1[1] = $top; t1[2] = right; t1[3] = bottom; A.transformLTRB(_this._currentMatrix, t1); left = t1[0]; $top = t1[1]; right = t1[2]; bottom = t1[3]; } if (!_this._clipRectInitialized) { _this._currentClipLeft = left; _this._currentClipTop = $top; _this._currentClipRight = right; _this._currentClipBottom = bottom; _this._clipRectInitialized = true; t4 = bottom; t3 = right; t2 = $top; t1 = left; } else { t1 = _this._currentClipLeft; if (left > t1) { _this._currentClipLeft = left; t1 = left; } t2 = _this._currentClipTop; if ($top > t2) { _this._currentClipTop = $top; t2 = $top; } t3 = _this._currentClipRight; if (right < t3) { _this._currentClipRight = right; t3 = right; } t4 = _this._currentClipBottom; if (bottom < t4) { _this._currentClipBottom = bottom; t4 = bottom; } } if (t1 >= t3 || t2 >= t4) command.isClippedOut = true; else { command.leftBound = t1; command.topBound = t2; command.rightBound = t3; command.bottomBound = t4; } }, grow$2(r, command) { this.growLTRB$5(r.left, r.top, r.right, r.bottom, command); }, growLTRB$5(left, $top, right, bottom, command) { var t1, transformedPointLeft, transformedPointTop, transformedPointRight, transformedPointBottom, transformedPointRight0, transformedPointLeft0, transformedPointBottom0, transformedPointTop0, _this = this; if (left == right || $top == bottom) { command.isClippedOut = true; return; } if (!_this._currentMatrixIsIdentity) { t1 = $.$get$_PaintBounds__tempRectData(); t1[0] = left; t1[1] = $top; t1[2] = right; t1[3] = bottom; A.transformLTRB(_this._currentMatrix, t1); transformedPointLeft = t1[0]; transformedPointTop = t1[1]; transformedPointRight = t1[2]; transformedPointBottom = t1[3]; } else { transformedPointBottom = bottom; transformedPointRight = right; transformedPointTop = $top; transformedPointLeft = left; } if (_this._clipRectInitialized) { transformedPointRight0 = _this._currentClipRight; if (transformedPointLeft >= transformedPointRight0) { command.isClippedOut = true; return; } transformedPointLeft0 = _this._currentClipLeft; if (transformedPointRight <= transformedPointLeft0) { command.isClippedOut = true; return; } transformedPointBottom0 = _this._currentClipBottom; if (transformedPointTop >= transformedPointBottom0) { command.isClippedOut = true; return; } transformedPointTop0 = _this._currentClipTop; if (transformedPointBottom <= transformedPointTop0) { command.isClippedOut = true; return; } if (transformedPointLeft < transformedPointLeft0) transformedPointLeft = transformedPointLeft0; if (transformedPointRight > transformedPointRight0) transformedPointRight = transformedPointRight0; if (transformedPointTop < transformedPointTop0) transformedPointTop = transformedPointTop0; if (transformedPointBottom > transformedPointBottom0) transformedPointBottom = transformedPointBottom0; } command.leftBound = transformedPointLeft; command.topBound = transformedPointTop; command.rightBound = transformedPointRight; command.bottomBound = transformedPointBottom; if (_this._didPaintInsideClipArea) { _this.__engine$_left = Math.min(Math.min(_this.__engine$_left, A.checkNum(transformedPointLeft)), A.checkNum(transformedPointRight)); _this.__engine$_right = Math.max(Math.max(_this.__engine$_right, A.checkNum(transformedPointLeft)), A.checkNum(transformedPointRight)); _this.__engine$_top = Math.min(Math.min(_this.__engine$_top, A.checkNum(transformedPointTop)), A.checkNum(transformedPointBottom)); _this.__engine$_bottom = Math.max(Math.max(_this.__engine$_bottom, A.checkNum(transformedPointTop)), A.checkNum(transformedPointBottom)); } else { _this.__engine$_left = Math.min(A.checkNum(transformedPointLeft), A.checkNum(transformedPointRight)); _this.__engine$_right = Math.max(A.checkNum(transformedPointLeft), A.checkNum(transformedPointRight)); _this.__engine$_top = Math.min(A.checkNum(transformedPointTop), A.checkNum(transformedPointBottom)); _this.__engine$_bottom = Math.max(A.checkNum(transformedPointTop), A.checkNum(transformedPointBottom)); } _this._didPaintInsideClipArea = true; }, saveTransformsAndClip$0() { var _this = this, t1 = _this._currentMatrix, t2 = new A.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); _this.__engine$_transforms.push(t2); t1 = _this._clipRectInitialized ? new A.Rect(_this._currentClipLeft, _this._currentClipTop, _this._currentClipRight, _this._currentClipBottom) : null; _this._clipStack.push(t1); }, computeBounds$0() { var t1, t2, maxLeft, maxRight, maxTop, maxBottom, left, right, $top, bottom, _this = this; if (!_this._didPaintInsideClipArea) return B.Rect_0_0_0_0; t1 = _this.maxPaintBounds; t2 = t1.left; t2.toString; if (isNaN(t2)) maxLeft = -1 / 0; else maxLeft = t2; t2 = t1.right; t2.toString; if (isNaN(t2)) maxRight = 1 / 0; else maxRight = t2; t2 = t1.top; t2.toString; if (isNaN(t2)) maxTop = -1 / 0; else maxTop = t2; t1 = t1.bottom; t1.toString; if (isNaN(t1)) maxBottom = 1 / 0; else maxBottom = t1; t1 = _this.__engine$_left; t2 = _this.__engine$_right; left = Math.min(t1, t2); right = Math.max(t1, t2); t2 = _this.__engine$_top; t1 = _this.__engine$_bottom; $top = Math.min(t2, t1); bottom = Math.max(t2, t1); if (right < maxLeft || bottom < maxTop) return B.Rect_0_0_0_0; return new A.Rect(Math.max(left, maxLeft), Math.max($top, maxTop), Math.min(right, maxRight), Math.min(bottom, maxBottom)); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.RenderStrategy.prototype = {}; A._WebGlRenderer.prototype = { drawRectToGl$6(targetRect, gl, glProgram, gradient, widthInPixels, heightInPixels) { var t1, t2, t3, colorsBuffer, colors, indexBuffer, t4, _s9_ = "uniform4f", _s10_ = "bindBuffer", _s10_0 = "bufferData", _s19_ = "vertexAttribPointer", _s23_ = "enableVertexAttribArray", left = targetRect.left, $top = targetRect.top, right = targetRect.right, bottom = targetRect.bottom, vertices = new Float32Array(8); vertices[0] = left; vertices[1] = $top; vertices[2] = right; vertices[3] = $top; vertices[4] = right; vertices[5] = bottom; vertices[6] = left; vertices[7] = bottom; t1 = glProgram.program; t2 = gl.glContext; A.callMethod(t2, "uniformMatrix4fv", [gl.getUniformLocation$2(0, t1, "u_ctransform"), false, A.Matrix4$identity().__engine$_m4storage]); A.callMethod(t2, _s9_, [gl.getUniformLocation$2(0, t1, "u_scale"), 2 / widthInPixels, -2 / heightInPixels, 1, 1]); A.callMethod(t2, _s9_, [gl.getUniformLocation$2(0, t1, "u_shift"), -1, 1, 0, 0]); t3 = t2.createBuffer(); t3.toString; A.callMethod(t2, _s10_, [gl.get$kArrayBuffer(), t3]); t3 = gl.get$kStaticDraw(); A.callMethod(t2, _s10_0, [gl.get$kArrayBuffer(), vertices, t3]); t3 = gl._kFloat; A.callMethod(t2, _s19_, [0, 2, t3 == null ? gl._kFloat = t2.FLOAT : t3, false, 0, 0]); A.callMethod(t2, _s23_, [0]); colorsBuffer = t2.createBuffer(); A.callMethod(t2, _s10_, [gl.get$kArrayBuffer(), colorsBuffer]); colors = new Int32Array(A._ensureNativeList(A._setArrayType([4278255360, 4278190335, 4294967040, 4278255615], type$.JSArray_int))); t3 = gl.get$kStaticDraw(); A.callMethod(t2, _s10_0, [gl.get$kArrayBuffer(), colors, t3]); t3 = gl._kUnsignedByte; A.callMethod(t2, _s19_, [1, 4, t3 == null ? gl._kUnsignedByte = t2.UNSIGNED_BYTE : t3, true, 0, 0]); A.callMethod(t2, _s23_, [1]); indexBuffer = t2.createBuffer(); A.callMethod(t2, _s10_, [gl.get$kElementArrayBuffer(), indexBuffer]); t3 = $.$get$VertexShaders_vertexIndicesForRect(); t4 = gl.get$kStaticDraw(); A.callMethod(t2, _s10_0, [gl.get$kElementArrayBuffer(), t3, t4]); if (A.callMethod(t2, "getUniformLocation", [t1, "u_resolution"]) != null) A.callMethod(t2, "uniform2f", [gl.getUniformLocation$2(0, t1, "u_resolution"), widthInPixels, heightInPixels]); t1 = gl._kColorBufferBit; A.callMethod(t2, "clear", [t1 == null ? gl._kColorBufferBit = t2.COLOR_BUFFER_BIT : t1]); t2.viewport(0, 0, widthInPixels, heightInPixels); t1 = gl._kTriangles; if (t1 == null) t1 = gl._kTriangles = t2.TRIANGLES; t3 = t3.length; t4 = gl._kUnsignedShort; A.callMethod(t2, "drawElements", [t1, t3, t4 == null ? gl._kUnsignedShort = t2.UNSIGNED_SHORT : t4, 0]); } }; A.SurfaceScene.prototype = { dispose$0(_) { } }; A.PersistedScene.prototype = { recomputeTransformAndClip$0() { var t2, t1 = window.innerWidth; t1.toString; t2 = window.innerHeight; t2.toString; this.localClipBounds = new A.Rect(0, 0, t1, t2); this.projectedClip = null; }, get$localTransformInverse() { var t1 = this._localTransformInverse; return t1 == null ? this._localTransformInverse = A.Matrix4$identity() : t1; }, createElement$0(_) { return this.defaultCreateElement$1("flt-scene"); }, apply$0() { } }; A.SurfaceSceneBuilder.prototype = { _pushSurface$1$1(surface) { var t2, t1 = surface._oldLayer.value; if (t1 != null) t1.__engine$_state = B.PersistedSurfaceState_3; t1 = this._surfaceStack; t2 = B.JSArray_methods.get$last(t1); t2.__engine$_children.push(surface); surface.parent = t2; t1.push(surface); return surface; }, _pushSurface$1(surface) { return this._pushSurface$1$1(surface, type$.PersistedContainerSurface); }, pushOffset$3$oldLayer(dx, dy, oldLayer) { var t1, t2; type$.nullable_PersistedOffset._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedOffset(dx, dy, t1, t2, B.PersistedSurfaceState_0)); }, pushTransform$2$oldLayer(matrix4, oldLayer) { var matrix, t1, t2; if (this._surfaceStack.length === 1) matrix = A.Matrix4$identity().__engine$_m4storage; else matrix = A.toMatrix32(matrix4); type$.nullable_PersistedTransform._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedTransform(matrix, t1, t2, B.PersistedSurfaceState_0)); }, pushClipRect$3$clipBehavior$oldLayer(rect, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedClipRect._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedClipRect(clipBehavior, rect, null, t1, t2, B.PersistedSurfaceState_0)); }, pushClipRRect$3$clipBehavior$oldLayer(rrect, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedSurface._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedClipRRect(rrect, clipBehavior, null, t1, t2, B.PersistedSurfaceState_0)); }, pushClipPath$3$clipBehavior$oldLayer(path, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedClipPath._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedClipPath(path, clipBehavior, t1, t2, B.PersistedSurfaceState_0)); }, pushOpacity$3$offset$oldLayer(alpha, offset, oldLayer) { var t1, t2; type$.nullable_PersistedOpacity._as(oldLayer); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedOpacity(alpha, offset, t1, t2, B.PersistedSurfaceState_0)); }, pushBackdropFilter$3$blendMode$oldLayer(filter, blendMode, oldLayer) { var t1, t2; type$.nullable_PersistedBackdropFilter._as(oldLayer); type$.EngineImageFilter._as(filter); t1 = A._setArrayType([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t2 = new A.FrameReference(t2, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); return this._pushSurface$1(new A.PersistedBackdropFilter(filter, t1, t2, B.PersistedSurfaceState_0)); }, pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor(clipBehavior, color, elevation, oldLayer, path, shadowColor) { var t1, t2, t3, t4, t5; type$.nullable_PersistedPhysicalShape._as(oldLayer); type$.SurfacePath._as(path); t1 = color.get$value(color); t2 = shadowColor == null ? null : shadowColor.get$value(shadowColor); if (t2 == null) t2 = 4278190080; t3 = path.getBounds$0(0); t4 = A._setArrayType([], type$.JSArray_PersistedSurface); t5 = oldLayer != null && oldLayer.__engine$_state === B.PersistedSurfaceState_1 ? oldLayer : null; t5 = new A.FrameReference(t5, type$.FrameReference_PersistedSurface); $.frameReferences.push(t5); return this._pushSurface$1(new A.PersistedPhysicalShape(path, t3, elevation, new A.Color(t1), new A.Color(t2), clipBehavior, null, t4, t5, B.PersistedSurfaceState_0)); }, addRetained$1(retainedLayer) { var t1; type$.PersistedContainerSurface._as(retainedLayer); if (retainedLayer.__engine$_state === B.PersistedSurfaceState_1) retainedLayer.__engine$_state = B.PersistedSurfaceState_2; else retainedLayer.revive$0(); t1 = B.JSArray_methods.get$last(this._surfaceStack); t1.__engine$_children.push(retainedLayer); retainedLayer.parent = t1; }, pop$0(_) { this._surfaceStack.pop(); }, addPerformanceOverlay$2(enabledOptions, bounds) { if (!$.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay) { $.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay = true; $.$get$printWarning().call$1("The performance overlay isn't supported on the web"); } }, addPicture$4$isComplexHint$willChangeHint(offset, picture, isComplexHint, willChangeHint) { var t1, t2; type$.EnginePicture._as(picture); t1 = picture.recordingCanvas._pictureBounds; t2 = new A.FrameReference(null, type$.FrameReference_PersistedSurface); $.frameReferences.push(t2); t2 = new A.PersistedPicture(offset._dx, offset._dy, picture, t1, new A.CrossFrameCache(type$.CrossFrameCache_HtmlElement), t2, B.PersistedSurfaceState_0); t1 = B.JSArray_methods.get$last(this._surfaceStack); t1.__engine$_children.push(t2); t2.parent = t1; }, addPlatformView$4$height$offset$width(viewId, height, offset, width) { var t2, t1 = new A.FrameReference(null, type$.FrameReference_PersistedSurface); $.frameReferences.push(t1); t1 = new A.PersistedPlatformView(viewId, offset._dx, offset._dy, width, height, t1, B.PersistedSurfaceState_0); t2 = B.JSArray_methods.get$last(this._surfaceStack); t2.__engine$_children.push(t1); t1.parent = t2; }, setRasterizerTracingThreshold$1(frameInterval) { }, setCheckerboardRasterCacheImages$1(checkerboard) { }, setCheckerboardOffscreenLayers$1(checkerboard) { }, build$0(_) { A.frameTimingsOnBuildFinish(); A.frameTimingsOnRasterStart(); A.timeAction("preroll_frame", new A.SurfaceSceneBuilder_build_closure(this)); return A.timeAction("apply_frame", new A.SurfaceSceneBuilder_build_closure0(this)); } }; A.SurfaceSceneBuilder_build_closure.prototype = { call$0() { for (var t1 = this.$this._surfaceStack; t1.length > 1;) t1.pop(); type$.PersistedScene._as(B.JSArray_methods.get$first(t1)).preroll$1(new A.PrerollSurfaceContext()); }, $signature: 0 }; A.SurfaceSceneBuilder_build_closure0.prototype = { call$0() { var t3, t4, t1 = type$.PersistedScene, t2 = this.$this._surfaceStack; if ($.SurfaceSceneBuilder__lastFrameScene == null) t1._as(B.JSArray_methods.get$first(t2)).build$0(0); else { t3 = t1._as(B.JSArray_methods.get$first(t2)); t4 = $.SurfaceSceneBuilder__lastFrameScene; t4.toString; t3.update$1(0, t4); } A.commitScene(t1._as(B.JSArray_methods.get$first(t2))); $.SurfaceSceneBuilder__lastFrameScene = t1._as(B.JSArray_methods.get$first(t2)); return new A.SurfaceScene(t1._as(B.JSArray_methods.get$first(t2)).rootElement); }, $signature: 814 }; A.NormalizedGradient.prototype = { setupUniforms$2(gl, glProgram) { var t1, t2, t3, t4, t5, i, t6, t7, res, result, t8, t9, t10, _this = this; for (t1 = _this.thresholdCount, t2 = _this.__engine$_scale, t3 = gl.glContext, t4 = _this._bias, t5 = glProgram.program, i = 0; i < t1; ++i) { t6 = "" + i; t7 = "bias_" + t6; res = t3.getUniformLocation.apply(t3, [t5, t7]); if (res == null) { A.throwExpression(A.Exception_Exception(t7 + " not found")); result = null; } else result = res; t7 = i * 4; t8 = t7 + 1; t9 = t7 + 2; t10 = t7 + 3; t3.uniform4f.apply(t3, [result, t4[t7], t4[t8], t4[t9], t4[t10]]); t6 = "scale_" + t6; res = t3.getUniformLocation.apply(t3, [t5, t6]); if (res == null) { A.throwExpression(A.Exception_Exception(t6 + " not found")); result = null; } else result = res; t3.uniform4f.apply(t3, [result, t2[t7], t2[t8], t2[t9], t2[t10]]); } for (t1 = _this._thresholds, t2 = t1.length, i = 0; i < t2; i += 4) { t4 = "threshold_" + B.JSInt_methods._tdivFast$1(i, 4); res = t3.getUniformLocation.apply(t3, [t5, t4]); if (res == null) { A.throwExpression(A.Exception_Exception(t4 + " not found")); result = null; } else result = res; t3.uniform4f.apply(t3, [result, t1[i], t1[i + 1], t1[i + 2], t1[i + 3]]); } } }; A.NormalizedGradient_NormalizedGradient_closure.prototype = { call$1(c) { return (c.get$value(c) >>> 24 & 255) < 1; }, $signature: 812 }; A.EngineGradient.prototype = {}; A.GradientLinear.prototype = { createPaintStyle$3(ctx, shaderBounds, density) { var matrix4, offsetX, offsetY, t2, t3, t4, t5, centerX, centerY, gradient, _this = this, t1 = _this.tileMode; if (t1 === B.TileMode_0 || t1 === B.TileMode_3) { matrix4 = _this.matrix4; offsetX = shaderBounds.left; offsetY = shaderBounds.top; t2 = _this.from; t3 = _this.to; t4 = t2._dx; t5 = t3._dx; t2 = t2._dy; t3 = t3._dy; if (matrix4 != null) { centerX = (t4 + t5) / 2 - offsetX; centerY = (t2 + t3) / 2 - offsetY; matrix4.transform$2(0, t4 - centerX, t2 - centerY); t2 = matrix4.transformedX; t4 = matrix4.transformedY; matrix4.transform$2(0, t5 - centerX, t3 - centerY); gradient = ctx.createLinearGradient(t2 + centerX - offsetX, t4 + centerY - offsetY, matrix4.transformedX + centerX - offsetX, matrix4.transformedY + centerY - offsetY); } else { ctx.toString; gradient = ctx.createLinearGradient(t4 - offsetX, t2 - offsetY, t5 - offsetX, t3 - offsetY); } A._addColorStopsToCanvasGradient(gradient, _this.colors, _this.colorStops, t1 === B.TileMode_3); return gradient; } else { t1 = ctx.createPattern(_this.createImageBitmap$3(shaderBounds, density, false), "no-repeat"); t1.toString; return t1; } }, createImageBitmap$3(shaderBounds, density, createDataUrl) { var widthInPixels, t3, t4, heightInPixels, t5, t6, t7, t8, gl, normalizedGradient, builder, method, t9, t10, fragColor, shader, cacheKey, cachedProgram, vertexShader, fragmentShader, program, fromX, fromY, toX, toY, dx, dy, $length, sinVal, cosVal, isRepeated, originX, originY, originTranslation, rotationZ, storage, gradientTransform, canvas, dataUrl, image, _this = this, _s18_ = "premultipliedAlpha", _s12_ = "u_resolution", _s10_ = "m_gradient", _s12_0 = "attachShader", _s10_0 = "bindBuffer", t1 = shaderBounds.right, t2 = shaderBounds.left; t1 -= t2; widthInPixels = B.JSNumber_methods.ceil$0(t1); t3 = shaderBounds.bottom; t4 = shaderBounds.top; t3 -= t4; heightInPixels = B.JSNumber_methods.ceil$0(t3); if ($.glRenderer == null) $.glRenderer = new A._WebGlRenderer(); t5 = $.OffScreenCanvas__supported; if (t5 == null ? $.OffScreenCanvas__supported = "OffscreenCanvas" in window : t5) { t5 = new OffscreenCanvas(widthInPixels, heightInPixels); t6 = null; } else { t5 = A.CanvasElement_CanvasElement(heightInPixels, widthInPixels); t5.className = "gl-canvas"; t6 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t7 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t8 = t5.style; t8.position = "absolute"; t8.width = A.S(widthInPixels / t6) + "px"; t8.height = A.S(heightInPixels / t7) + "px"; t6 = t5; t5 = null; } t7 = $.OffScreenCanvas__supported; if (t7 == null ? $.OffScreenCanvas__supported = "OffscreenCanvas" in window : t7) { t5.toString; t6 = type$.String; t7 = B.OffscreenCanvas_methods.getContext$2(t5, "webgl2", A.LinkedHashMap_LinkedHashMap$_literal([_s18_, false], t6, type$.dynamic)); t7.toString; gl = new A.GlContext(t7); $.GlContext____programCache.__late_helper$_value = A.LinkedHashMap_LinkedHashMap$_empty(t6, type$.nullable_GlProgram); gl.__engine$_canvas = t5; t5 = $.GlContext____programCache; } else { t6.toString; t5 = $._cachedWebGLVersion; t5 = (t5 == null ? $._cachedWebGLVersion = A._detectWebGLVersion() : t5) === 1 ? "webgl" : "webgl2"; t7 = type$.String; t5 = B.CanvasElement_methods.getContext$2(t6, t5, A.LinkedHashMap_LinkedHashMap$_literal([_s18_, false], t7, type$.dynamic)); t5.toString; gl = new A.GlContext(t5); $.GlContext____programCache.__late_helper$_value = A.LinkedHashMap_LinkedHashMap$_empty(t7, type$.nullable_GlProgram); gl.__engine$_canvas = t6; t5 = $.GlContext____programCache; } gl._widthInPixels = widthInPixels; gl._heightInPixels = heightInPixels; normalizedGradient = A.NormalizedGradient_NormalizedGradient(_this.colors, _this.colorStops); t6 = $.VertexShaders__baseVertexShader; if (t6 == null) { t6 = $._cachedWebGLVersion; if (t6 == null) t6 = $._cachedWebGLVersion = A._detectWebGLVersion(); t7 = A._setArrayType([], type$.JSArray_ShaderDeclaration); t8 = A._setArrayType([], type$.JSArray_ShaderMethod); builder = new A.ShaderBuilder(t7, t8, t6 === 2, false, new A.StringBuffer("")); builder.addIn$2$name(11, "position"); builder.addIn$2$name(11, "color"); builder.addUniform$2$name(14, "u_ctransform"); builder.addUniform$2$name(11, "u_scale"); builder.addUniform$2$name(11, "u_shift"); t7.push(new A.ShaderDeclaration("v_color", 11, 3)); method = new A.ShaderMethod("main", A._setArrayType([], type$.JSArray_String)); t8.push(method); method.addStatement$1("gl_Position = ((u_ctransform * position) * u_scale) + u_shift;"); method.addStatement$1("v_color = color.zyxw;"); t6 = $.VertexShaders__baseVertexShader = builder.build$0(0); } t7 = _this.tileMode; t8 = $._cachedWebGLVersion; if (t8 == null) t8 = $._cachedWebGLVersion = A._detectWebGLVersion(); t9 = A._setArrayType([], type$.JSArray_ShaderDeclaration); t10 = A._setArrayType([], type$.JSArray_ShaderMethod); t8 = t8 === 2; builder = new A.ShaderBuilder(t9, t10, t8, true, new A.StringBuffer("")); builder.floatPrecision = 1; builder.addIn$2$name(11, "v_color"); builder.addUniform$2$name(9, _s12_); builder.addUniform$2$name(14, _s10_); fragColor = builder._fragmentColorDeclaration; if (fragColor == null) fragColor = builder._fragmentColorDeclaration = new A.ShaderDeclaration(t8 ? "gFragColor" : "gl_FragColor", 11, 3); method = new A.ShaderMethod("main", A._setArrayType([], type$.JSArray_String)); t10.push(method); method.addStatement$1("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);"); method.addStatement$1("float st = localCoord.x;"); method.addStatement$1(fragColor.name + " = " + A._writeSharedGradientShader(builder, method, normalizedGradient, t7) + " * scale + bias;"); shader = builder.build$0(0); cacheKey = t6 + "||" + shader; cachedProgram = J.$index$asx(t5._readField$0(), cacheKey); if (cachedProgram == null) { vertexShader = gl.compileShader$2(0, "VERTEX_SHADER", t6); fragmentShader = gl.compileShader$2(0, "FRAGMENT_SHADER", shader); t6 = gl.glContext; program = t6.createProgram(); A.callMethod(t6, _s12_0, [program, vertexShader]); A.callMethod(t6, _s12_0, [program, fragmentShader]); A.callMethod(t6, "linkProgram", [program]); t8 = gl._kLinkStatus; if (!A.callMethod(t6, "getProgramParameter", [program, t8 == null ? gl._kLinkStatus = t6.LINK_STATUS : t8])) A.throwExpression(A.Exception_Exception(A.callMethod(t6, "getProgramInfoLog", [program]))); cachedProgram = new A.GlProgram(program); J.$indexSet$ax(t5._readField$0(), cacheKey, cachedProgram); } t5 = gl.glContext; t6 = cachedProgram.program; A.callMethod(t5, "useProgram", [t6]); t8 = _this.from; fromX = t8._dx; fromY = t8._dy; t8 = _this.to; toX = t8._dx; toY = t8._dy; dx = toX - fromX; dy = toY - fromY; $length = Math.sqrt(dx * dx + dy * dy); t8 = $length < 11920929e-14; sinVal = t8 ? 0 : -dy / $length; cosVal = t8 ? 1 : dx / $length; isRepeated = t7 !== B.TileMode_0; originX = isRepeated ? t1 / 2 : (fromX + toX) / 2 - t2; originY = isRepeated ? t3 / 2 : (fromY + toY) / 2 - t4; originTranslation = A.Matrix4$identity(); originTranslation.setTranslationRaw$3(-originX, -originY, 0); rotationZ = A.Matrix4$identity(); storage = rotationZ.__engine$_m4storage; storage[0] = cosVal; storage[1] = sinVal; storage[4] = -sinVal; storage[5] = cosVal; gradientTransform = A.Matrix4$identity(); gradientTransform.translate$2(0, 0.5, 0); if ($length > 11920929e-14) gradientTransform.scale$1(0, 1 / $length); t2 = _this.matrix4; if (t2 != null) { t2 = t2.matrix; gradientTransform.scale$2(0, 1, -1); gradientTransform.translate$2(0, -shaderBounds.get$center()._dx, -shaderBounds.get$center()._dy); gradientTransform.multiply$1(0, new A.Matrix40(t2)); gradientTransform.translate$2(0, shaderBounds.get$center()._dx, shaderBounds.get$center()._dy); gradientTransform.scale$2(0, 1, -1); } gradientTransform.multiply$1(0, rotationZ); gradientTransform.multiply$1(0, originTranslation); normalizedGradient.setupUniforms$2(gl, cachedProgram); A.callMethod(t5, "uniformMatrix4fv", [gl.getUniformLocation$2(0, t6, _s10_), false, gradientTransform.__engine$_m4storage]); A.callMethod(t5, "uniform2f", [gl.getUniformLocation$2(0, t6, _s12_), widthInPixels, heightInPixels]); t2 = $.glRenderer; t1 = 0 + t1; t3 = 0 + t3; if (createDataUrl) { t2.drawRectToGl$6(new A.Rect(0, 0, t1, t3), gl, cachedProgram, normalizedGradient, widthInPixels, heightInPixels); t1 = gl._widthInPixels; canvas = A.CanvasElement_CanvasElement(gl._heightInPixels, t1); gl.drawImage$3(0, canvas.getContext("2d"), 0, 0); dataUrl = canvas.toDataURL("image/png", null); canvas.width = 0; canvas.height = 0; A.callMethod(t5, _s10_0, [gl.get$kArrayBuffer(), null]); A.callMethod(t5, _s10_0, [gl.get$kElementArrayBuffer(), null]); return dataUrl; } else { t2.drawRectToGl$6(new A.Rect(0, 0, t1, t3), gl, cachedProgram, normalizedGradient, widthInPixels, heightInPixels); image = gl.readPatternData$1(normalizedGradient.isOpaque); A.callMethod(t5, _s10_0, [gl.get$kArrayBuffer(), null]); A.callMethod(t5, _s10_0, [gl.get$kElementArrayBuffer(), null]); image.toString; return image; } } }; A.EngineImageFilter.prototype = {}; A._MatrixEngineImageFilter.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._MatrixEngineImageFilter && other.filterQuality == this.filterQuality && A.listEquals(other.webMatrix, this.webMatrix); }, get$hashCode(_) { return A.hashValues(A.hashList(this.webMatrix), this.filterQuality, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "ImageFilter.matrix(" + A.S(this.webMatrix) + ", " + A.S(this.filterQuality) + ")"; } }; A.ShaderBuilder.prototype = { addIn$2$name(dataType, $name) { var attrib = new A.ShaderDeclaration($name, dataType, 1); this.declarations.push(attrib); return attrib; }, addUniform$2$name(dataType, $name) { var uniform = new A.ShaderDeclaration($name, dataType, 2); this.declarations.push(uniform); return uniform; }, _writeVariableDeclaration$2(sb, variable) { var t2, t3, _this = this, _s8_ = "varying ", t1 = variable.storage; switch (t1) { case 0: _this.__engine$_buffer._contents += "const "; break; case 1: if (_this.isWebGl2) t2 = "in "; else t2 = _this._isFragmentShader ? _s8_ : "attribute "; _this.__engine$_buffer._contents += t2; break; case 2: _this.__engine$_buffer._contents += "uniform "; break; case 3: t2 = _this.isWebGl2 ? "out " : _s8_; _this.__engine$_buffer._contents += t2; break; } t2 = _this.__engine$_buffer; t3 = t2._contents += A.ShaderBuilder_typeToString(variable.dataType) + " " + variable.name; if (t1 === 0) t1 = t2._contents = t3 + " = "; else t1 = t3; t2._contents = t1 + ";\n"; }, build$0(_) { var t2, t3, _i, t4, method, _this = this, t1 = _this.isWebGl2; if (t1) _this.__engine$_buffer._contents += "#version 300 es\n"; t2 = _this.floatPrecision; if (t2 != null) { if (t2 === 0) t2 = "lowp"; else t2 = t2 === 1 ? "mediump" : "highp"; _this.__engine$_buffer._contents += "precision " + t2 + " float;\n"; } if (t1 && _this._fragmentColorDeclaration != null) { t1 = _this._fragmentColorDeclaration; t1.toString; _this._writeVariableDeclaration$2(_this.__engine$_buffer, t1); } for (t1 = _this.declarations, t2 = t1.length, t3 = _this.__engine$_buffer, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) _this._writeVariableDeclaration$2(t3, t1[_i]); for (t1 = _this._methods, t2 = t1.length, t4 = t3.get$writeln(), _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { method = t1[_i]; t3._contents += "void " + method.name + "() {\n"; B.JSArray_methods.forEach$1(method._statements, t4); t3._contents += "}\n"; } t1 = t3._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.ShaderMethod.prototype = { addStatement$1(statement) { this._statements.push(statement); }, get$name(receiver) { return this.name; } }; A.ShaderDeclaration.prototype = { get$name(receiver) { return this.name; } }; A.commitScene_closure.prototype = { call$2(a, b) { var bSize, t1 = a.canvasSize, aSize = t1._dy * t1._dx; t1 = b.canvasSize; bSize = t1._dy * t1._dx; return J.compareTo$1$ns(bSize, aSize); }, $signature: 928 }; A.PersistedSurfaceState.prototype = { toString$0(_) { return "PersistedSurfaceState." + this._core$_name; } }; A.PersistedSurface.prototype = { revive$0() { this.__engine$_state = B.PersistedSurfaceState_0; }, canUpdateAsMatch$1(oldSurface) { return oldSurface.__engine$_state === B.PersistedSurfaceState_1 && A.getRuntimeType(this) === A.getRuntimeType(oldSurface); }, get$childContainer() { return this.rootElement; }, build$0(_) { var t2, _this = this, t1 = _this.createElement$0(0); _this.rootElement = t1; t2 = $.$get$_browserEngine(); if (t2 === B.BrowserEngine_1) { t1 = t1.style; t1.zIndex = "0"; } _this.apply$0(); _this.__engine$_state = B.PersistedSurfaceState_1; }, adoptElements$1(oldSurface) { this.rootElement = oldSurface.rootElement; oldSurface.rootElement = null; oldSurface.__engine$_state = B.PersistedSurfaceState_4; }, update$1(_, oldSurface) { this.adoptElements$1(oldSurface); this.__engine$_state = B.PersistedSurfaceState_1; }, retain$0() { if (this.__engine$_state === B.PersistedSurfaceState_2) $.retainedSurfaces.push(this); }, discard$0() { var t1 = this.rootElement; t1.toString; J.remove$0$ax(t1); this.rootElement = null; this.__engine$_state = B.PersistedSurfaceState_4; }, dispose$0(_) { }, defaultCreateElement$1(tagName) { var t1 = A._ElementFactoryProvider_createElement_tag(tagName, null), t2 = t1.style; t2.position = "absolute"; return t1; }, get$localTransformInverse() { return null; }, recomputeTransformAndClip$0() { var _this = this; _this.transform = _this.parent.transform; _this.projectedClip = _this.localClipBounds = null; }, preroll$1(prerollContext) { this.recomputeTransformAndClip$0(); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PersistedLeafSurface.prototype = {}; A.PersistedContainerSurface.prototype = { preroll$1(prerollContext) { var t1, $length, i; this.super$PersistedSurface$preroll(prerollContext); t1 = this.__engine$_children; $length = t1.length; for (i = 0; i < $length; ++i) t1[i].preroll$1(prerollContext); }, recomputeTransformAndClip$0() { var _this = this; _this.transform = _this.parent.transform; _this.projectedClip = _this.localClipBounds = null; }, build$0(_) { var t1, len, containerElement, i, child, t2; this.super$PersistedSurface$build(0); t1 = this.__engine$_children; len = t1.length; containerElement = this.get$childContainer(); for (i = 0; i < len; ++i) { child = t1[i]; if (child.__engine$_state === B.PersistedSurfaceState_2) child.retain$0(); else if (child instanceof A.PersistedContainerSurface && child._oldLayer.value != null) { t2 = child._oldLayer.value; t2.toString; child.update$1(0, t2); } else child.build$0(0); containerElement.toString; t2 = child.rootElement; t2.toString; containerElement.appendChild(t2); child.__engine$_index = i; } }, matchForUpdate$1(existingSurface) { return 1; }, update$1(_, oldSurface) { var t1, _this = this; _this.super$PersistedSurface$update(0, oldSurface); if (oldSurface.__engine$_children.length === 0) _this._updateZeroToMany$1(oldSurface); else { t1 = _this.__engine$_children.length; if (t1 === 1) _this._updateManyToOne$1(oldSurface); else if (t1 === 0) A.PersistedContainerSurface__discardActiveChildren(oldSurface); else _this._updateManyToMany$1(oldSurface); } }, get$isClipping() { return false; }, _updateZeroToMany$1(oldSurface) { var i, newChild, t2, containerElement = this.get$childContainer(), t1 = this.__engine$_children, $length = t1.length; for (i = 0; i < $length; ++i) { newChild = t1[i]; if (newChild.__engine$_state === B.PersistedSurfaceState_2) newChild.retain$0(); else if (newChild instanceof A.PersistedContainerSurface && newChild._oldLayer.value != null) { t2 = newChild._oldLayer.value; t2.toString; newChild.update$1(0, t2); } else newChild.build$0(0); newChild.__engine$_index = i; containerElement.toString; t2 = newChild.rootElement; t2.toString; containerElement.appendChild(t2); } }, _updateManyToOne$1(oldSurface) { var t1, t2, oldLayer, bestMatch, bestScore, i, candidate, score, t3, oldChild, _this = this, newChild = _this.__engine$_children[0]; newChild.__engine$_index = 0; if (newChild.__engine$_state === B.PersistedSurfaceState_2) { t1 = newChild.rootElement.parentElement; t2 = _this.get$childContainer(); if (t1 == null ? t2 != null : t1 !== t2) { t1 = _this.get$childContainer(); t1.toString; t2 = newChild.rootElement; t2.toString; t1.appendChild(t2); } newChild.retain$0(); A.PersistedContainerSurface__discardActiveChildren(oldSurface); return; } if (newChild instanceof A.PersistedContainerSurface && newChild._oldLayer.value != null) { oldLayer = newChild._oldLayer.value; t1 = oldLayer.rootElement.parentElement; t2 = _this.get$childContainer(); if (t1 == null ? t2 != null : t1 !== t2) { t1 = _this.get$childContainer(); t1.toString; t2 = oldLayer.rootElement; t2.toString; t1.appendChild(t2); } newChild.update$1(0, oldLayer); A.PersistedContainerSurface__discardActiveChildren(oldSurface); return; } for (t1 = oldSurface.__engine$_children, bestMatch = null, bestScore = 2, i = 0; i < t1.length; ++i) { candidate = t1[i]; if (!newChild.canUpdateAsMatch$1(candidate)) continue; score = newChild.matchForUpdate$1(candidate); if (score < bestScore) { bestScore = score; bestMatch = candidate; } } if (bestMatch != null) { newChild.update$1(0, bestMatch); t2 = newChild.rootElement.parentElement; t3 = _this.get$childContainer(); if (t2 == null ? t3 != null : t2 !== t3) { t2 = _this.get$childContainer(); t2.toString; t3 = newChild.rootElement; t3.toString; t2.appendChild(t3); } } else { newChild.build$0(0); t2 = _this.get$childContainer(); t2.toString; t3 = newChild.rootElement; t3.toString; t2.appendChild(t3); } for (i = 0; i < t1.length; ++i) { oldChild = t1[i]; if (oldChild != bestMatch && oldChild.__engine$_state === B.PersistedSurfaceState_1) oldChild.discard$0(); } }, _updateManyToMany$1(oldSurface) { var t1, t2, indexMapNew, indexMapOld, requiresDomInserts, topInNew, newChild, t3, isReparenting, matchedOldChild, oldLayer, indexInOld, backfill, _this = this, containerElement = _this.get$childContainer(), matches = _this._matchChildren$1(oldSurface); for (t1 = _this.__engine$_children, t2 = type$.JSArray_int, indexMapNew = null, indexMapOld = null, requiresDomInserts = false, topInNew = 0; topInNew < t1.length; ++topInNew) { newChild = t1[topInNew]; if (newChild.__engine$_state === B.PersistedSurfaceState_2) { t3 = newChild.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.retain$0(); matchedOldChild = newChild; } else if (newChild instanceof A.PersistedContainerSurface && newChild._oldLayer.value != null) { oldLayer = newChild._oldLayer.value; t3 = oldLayer.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.update$1(0, oldLayer); matchedOldChild = oldLayer; } else { matchedOldChild = matches.$index(0, newChild); if (matchedOldChild != null) { t3 = matchedOldChild.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.update$1(0, matchedOldChild); } else { newChild.build$0(0); isReparenting = true; } } indexInOld = matchedOldChild != null && !isReparenting ? matchedOldChild.__engine$_index : -1; if (!requiresDomInserts && indexInOld !== topInNew) { indexMapNew = A._setArrayType([], t2); indexMapOld = A._setArrayType([], t2); for (backfill = 0; backfill < topInNew; ++backfill) { indexMapNew.push(backfill); indexMapOld.push(backfill); } requiresDomInserts = true; } if (requiresDomInserts && indexInOld !== -1) { indexMapNew.push(topInNew); indexMapOld.push(indexInOld); } newChild.__engine$_index = topInNew; } if (requiresDomInserts) { indexMapOld.toString; _this._insertChildDomNodes$2(indexMapNew, indexMapOld); } A.PersistedContainerSurface__discardActiveChildren(oldSurface); }, _insertChildDomNodes$2(indexMapNew, indexMapOld) { var t1, i, containerElement, t2, refNode, isStationary, t3, stationaryIndices = A.longestIncreasingSubsequence(indexMapOld); for (t1 = stationaryIndices.length, i = 0; i < t1; ++i) stationaryIndices[i] = indexMapNew[stationaryIndices[i]]; containerElement = this.get$childContainer(); for (t1 = this.__engine$_children, i = t1.length - 1, t2 = type$.HtmlElement, refNode = null; i >= 0; --i, refNode = t3) { indexMapNew.toString; isStationary = B.JSArray_methods.indexOf$1(indexMapNew, i) !== -1 && B.JSArray_methods.contains$1(stationaryIndices, i); t3 = t1[i].rootElement; t3.toString; t2._as(t3); if (!isStationary) if (refNode == null) containerElement.appendChild(t3); else containerElement.insertBefore(t3, refNode); } }, _matchChildren$1(oldSurface) { var i, child, oldChildren, newChildCount, oldChildCount, allMatches, indexInNew, newChild, indexInOld, oldChild, result, match, matchedChild, newChildNeedsMatch, t1 = this.__engine$_children, newUnfilteredChildCount = t1.length, t2 = oldSurface.__engine$_children, oldUnfilteredChildCount = t2.length, newChildren = A._setArrayType([], type$.JSArray_PersistedSurface); for (i = 0; i < newUnfilteredChildCount; ++i) { child = t1[i]; if (child.__engine$_state === B.PersistedSurfaceState_0 && child._oldLayer.value == null) newChildren.push(child); } oldChildren = A._setArrayType([], type$.JSArray_nullable_PersistedSurface); for (i = 0; i < oldUnfilteredChildCount; ++i) { child = t2[i]; if (child.__engine$_state === B.PersistedSurfaceState_1) oldChildren.push(child); } newChildCount = newChildren.length; oldChildCount = oldChildren.length; if (newChildCount === 0 || oldChildCount === 0) return B.Map_empty8; allMatches = A._setArrayType([], type$.JSArray__PersistedSurfaceMatch); for (indexInNew = 0; indexInNew < newChildCount; ++indexInNew) { newChild = newChildren[indexInNew]; for (indexInOld = 0; indexInOld < oldChildCount; ++indexInOld) { oldChild = oldChildren[indexInOld]; if (oldChild == null || !newChild.canUpdateAsMatch$1(oldChild)) continue; allMatches.push(new A._PersistedSurfaceMatch(newChild, indexInOld, newChild.matchForUpdate$1(oldChild))); } } B.JSArray_methods.sort$1(allMatches, new A.PersistedContainerSurface__matchChildren_closure()); result = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_PersistedSurface, type$.PersistedSurface); for (i = 0; i < allMatches.length; ++i) { match = allMatches[i]; t1 = match.oldChildIndex; matchedChild = oldChildren[t1]; t2 = match.newChild; newChildNeedsMatch = result.$index(0, t2) == null; if (matchedChild != null && newChildNeedsMatch) { oldChildren[t1] = null; result.$indexSet(0, t2, matchedChild); } } return result; }, retain$0() { var t1, len, i; this.super$PersistedSurface$retain(); t1 = this.__engine$_children; len = t1.length; for (i = 0; i < len; ++i) t1[i].retain$0(); }, revive$0() { var t1, len, i; this.super$PersistedSurface$revive(); t1 = this.__engine$_children; len = t1.length; for (i = 0; i < len; ++i) t1[i].revive$0(); }, discard$0() { this.super$PersistedSurface$discard(); A.PersistedContainerSurface__discardActiveChildren(this); } }; A.PersistedContainerSurface__matchChildren_closure.prototype = { call$2(m1, m2) { return B.JSNumber_methods.compareTo$1(m1.matchQuality, m2.matchQuality); }, $signature: 931 }; A._PersistedSurfaceMatch.prototype = { toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.PrerollSurfaceContext.prototype = {}; A.PersistedTransform.prototype = { get$matrix4() { var t1 = this._matrix4; return t1 == null ? this._matrix4 = new A.Matrix40(this._matrixStorage) : t1; }, recomputeTransformAndClip$0() { var _this = this, t1 = _this.parent.transform; t1.toString; _this.transform = t1.multiplied$1(_this.get$matrix4()); _this.projectedClip = null; }, get$localTransformInverse() { var t1 = this._localTransformInverse; return t1 == null ? this._localTransformInverse = A.Matrix4_tryInvert0(this.get$matrix4()) : t1; }, createElement$0(_) { var element = document.createElement("flt-transform"); A.setElementStyle(element, "position", "absolute"); A.setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0() { var t1 = this.rootElement.style, t2 = A.float64ListToCssTransform(this._matrixStorage); t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, update$1(_, oldSurface) { var t1, t2, i, matrixChanged, _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); t1 = oldSurface._matrixStorage; t2 = _this._matrixStorage; if (t1 == null ? t2 == null : t1 === t2) { _this._matrix4 = oldSurface._matrix4; _this._localTransformInverse = oldSurface._localTransformInverse; return; } t2.toString; i = 0; while (true) { if (!(i < 16)) { matrixChanged = false; break; } if (t2[i] !== t1[i]) { matrixChanged = true; break; } ++i; } if (matrixChanged) { t1 = _this.rootElement.style; t2 = A.float64ListToCssTransform(t2); t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); } else { _this._matrix4 = oldSurface._matrix4; _this._localTransformInverse = oldSurface._localTransformInverse; } }, $isTransformEngineLayer0: 1 }; A.HtmlCodec.prototype = { get$frameCount(_) { return 1; }, get$repetitionCount(_) { return 0; }, getNextFrame$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.FrameInfo), $async$returnValue, $async$self = this, imgElement, t1, completer, t2; var $async$getNextFrame$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = new A._Future($.Zone__current, type$._Future_FrameInfo); completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_FrameInfo); t2 = $async$self.chunkCallback; if (t2 != null) t2.call$2(0, 100); if ($.$get$_supportsDecode()) { imgElement = A.ImageElement_ImageElement(); imgElement.src = $async$self.src; imgElement.decoding = "async"; A.promiseToFuture(imgElement.decode(), type$.dynamic).then$1$1(0, new A.HtmlCodec_getNextFrame_closure($async$self, imgElement, completer), type$.Null).catchError$1(new A.HtmlCodec_getNextFrame_closure0($async$self, completer)); } else $async$self._decodeUsingOnLoad$1(completer); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getNextFrame$0, $async$completer); }, _decodeUsingOnLoad$1(completer) { var errorSubscription, imgElement, t2, t1 = {}; t1.loadSubscription = null; errorSubscription = A._Cell$named("errorSubscription"); imgElement = A.ImageElement_ImageElement(); t2 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; errorSubscription.__late_helper$_value = A._EventStreamSubscription$(imgElement, "error", new A.HtmlCodec__decodeUsingOnLoad_closure(t1, errorSubscription, completer), false, t2); t1.loadSubscription = A._EventStreamSubscription$(imgElement, "load", new A.HtmlCodec__decodeUsingOnLoad_closure0(t1, this, errorSubscription, imgElement, completer), false, t2); imgElement.src = this.src; }, dispose$0(_) { }, $isCodec: 1 }; A.HtmlCodec_getNextFrame_closure.prototype = { call$1(_) { var naturalWidth, naturalHeight, t2, t1 = this.$this.chunkCallback; if (t1 != null) t1.call$2(100, 100); t1 = this.imgElement; naturalWidth = t1.naturalWidth; naturalHeight = t1.naturalHeight; if (naturalWidth === 0) if (naturalHeight === 0) { t2 = $.$get$_browserEngine(); if (t2 !== B.BrowserEngine_2) t2 = t2 === B.BrowserEngine_4; else t2 = true; } else t2 = false; else t2 = false; if (t2) { naturalWidth = 300; naturalHeight = 300; } this.completer.complete$1(0, new A.SingleFrameInfo(new A.HtmlImage(t1, naturalWidth, naturalHeight))); }, $signature: 7 }; A.HtmlCodec_getNextFrame_closure0.prototype = { call$1(e) { this.$this._decodeUsingOnLoad$1(this.completer); }, $signature: 7 }; A.HtmlCodec__decodeUsingOnLoad_closure.prototype = { call$1($event) { var t1 = this._box_0.loadSubscription; if (t1 != null) t1.cancel$0(0); J.cancel$0$z(this.errorSubscription._readLocal$0()); this.completer.completeError$1($event); }, $signature: 69 }; A.HtmlCodec__decodeUsingOnLoad_closure0.prototype = { call$1($event) { var _this = this, t1 = _this.$this.chunkCallback; if (t1 != null) t1.call$2(100, 100); _this._box_0.loadSubscription.cancel$0(0); J.cancel$0$z(_this.errorSubscription._readLocal$0()); t1 = _this.imgElement; _this.completer.complete$1(0, new A.SingleFrameInfo(new A.HtmlImage(t1, t1.naturalWidth, t1.naturalHeight))); }, $signature: 69 }; A.HtmlBlobCodec.prototype = { dispose$0(_) { (self.URL || self.webkitURL).revokeObjectURL(this.src); } }; A.SingleFrameInfo.prototype = { get$duration(_) { return B.Duration_0; }, $isFrameInfo: 1, get$image(receiver) { return this.image; } }; A.HtmlImage.prototype = { dispose$0(_) { }, clone$0(_) { return this; }, isCloneOf$1(other) { return other === this; }, cloneImageElement$0() { var t2, t1 = this.imgElement; if (this._requiresClone) return type$.ImageElement._as(t1.cloneNode(true)); else { this._requiresClone = true; t2 = t1.style; t2.position = "absolute"; return t1; } }, toString$0(_) { return "[" + A.S(this.width) + "\xd7" + A.S(this.height) + "]"; }, $isImage1: 1, get$width(receiver) { return this.width; }, get$height(receiver) { return this.height; } }; A.DebugEngineInitializationState.prototype = { toString$0(_) { return "DebugEngineInitializationState." + this._core$_name; } }; A.initializeEngineServices_closure.prototype = { call$0() { A.ensureLineLookupInitialized(); }, $signature: 0 }; A.initializeEngineServices_closure0.prototype = { call$2(_, __) { var t1, _i; for (t1 = $._hotRestartListeners.length, _i = 0; _i < $._hotRestartListeners.length; $._hotRestartListeners.length === t1 || (0, A.throwConcurrentModificationError)($._hotRestartListeners), ++_i) $._hotRestartListeners[_i].call$0(); return A.Future_Future$value(A.ServiceExtensionResponse$result("OK"), type$.ServiceExtensionResponse); }, $signature: 791 }; A.initializeEngineServices_closure1.prototype = { call$0() { var t1 = this._box_0; if (!t1.waitingForAnimation) { t1.waitingForAnimation = true; B.Window_methods.requestAnimationFrame$1(window, new A.initializeEngineServices__closure(t1)); } }, $signature: 0 }; A.initializeEngineServices__closure.prototype = { call$1(highResTime) { var highResTimeMicroseconds, t1, t2, t3; A.frameTimingsOnVsync(); this._box_0.waitingForAnimation = false; highResTimeMicroseconds = B.JSNumber_methods.toInt$0(1000 * highResTime); A.frameTimingsOnBuildStart(); t1 = $.$get$EnginePlatformDispatcher__instance(); t2 = t1._onBeginFrame; if (t2 != null) { t3 = A.Duration$(0, 0, highResTimeMicroseconds, 0, 0, 0); A.invoke1(t2, t1._onBeginFrameZone, t3, type$.Duration); } t2 = t1._onDrawFrame; if (t2 != null) A.invoke(t2, t1._onDrawFrameZone); }, $signature: 800 }; A._addUrlStrategyListener_closure.prototype = { call$1(jsStrategy) { var t1 = jsStrategy == null ? null : new A.CustomUrlStrategy(jsStrategy); $._isUrlStrategySet = true; $._customUrlStrategy = t1; }, $signature: 933 }; A._addUrlStrategyListener_closure0.prototype = { call$0() { self._flutter_web_set_location_strategy = null; }, $signature: 0 }; A.FlutterEngineInitializer.prototype = {}; A.InitializeEngineFnParameters.prototype = {}; A.FlutterAppRunner.prototype = {}; A.RunAppFnParameters.prototype = {}; A.FlutterApp.prototype = {}; A.Promise.prototype = {}; A.Keyboard.prototype = { Keyboard$_$1(_onMacOs) { var _this = this, t1 = new A.Keyboard$__closure(_this); _this._keydownListener = t1; B.Window_methods.addEventListener$2(window, "keydown", t1); t1 = new A.Keyboard$__closure0(_this); _this._keyupListener = t1; B.Window_methods.addEventListener$2(window, "keyup", t1); $._hotRestartListeners.push(new A.Keyboard$__closure1(_this)); }, dispose$0(_) { var t1, t2, _this = this; B.Window_methods.removeEventListener$2(window, "keydown", _this._keydownListener); B.Window_methods.removeEventListener$2(window, "keyup", _this._keyupListener); for (t1 = _this._keydownTimers, t2 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t2.moveNext$0();) t1.$index(0, t2.__js_helper$_current).cancel$0(0); t1.clear$0(0); $.Keyboard__instance = _this._keyupListener = _this._keydownListener = null; }, _handleHtmlEvent$1($event) { var t1, t2, t3, metaState, eventData, _this = this; if (!type$.KeyboardEvent._is($event)) return; t1 = $event.code; t1.toString; t2 = $event.key; t2.toString; if (!(t2 === "Meta" || t2 === "Shift" || t2 === "Alt" || t2 === "Control") && _this._onMacOs) { t2 = _this._keydownTimers; t3 = t2.$index(0, t1); if (t3 != null) t3.cancel$0(0); if ($event.type === "keydown") t3 = $event.ctrlKey || $event.shiftKey || $event.altKey || $event.metaKey; else t3 = false; if (t3) t2.$indexSet(0, t1, A.Timer_Timer(B.Duration_2000000, new A.Keyboard__handleHtmlEvent_closure(_this, t1, $event))); else t2.remove$1(0, t1); } metaState = $event.getModifierState("Shift") ? 1 : 0; if ($event.getModifierState("Alt") || $event.getModifierState("AltGraph")) metaState |= 2; if ($event.getModifierState("Control")) metaState |= 4; if ($event.getModifierState("Meta")) metaState |= 8; _this._lastMetaState = metaState; if ($event.type === "keydown") { t1 = $event.key; if (t1 === "CapsLock") { t1 = metaState | 32; _this._lastMetaState = t1; } else if ($event.code === "NumLock") { t1 = metaState | 16; _this._lastMetaState = t1; } else if (t1 === "ScrollLock") { t1 = metaState | 64; _this._lastMetaState = t1; } else t1 = metaState; } else t1 = metaState; eventData = A.LinkedHashMap_LinkedHashMap$_literal(["type", $event.type, "keymap", "web", "code", $event.code, "key", $event.key, "location", $event.location, "metaState", t1, "keyCode", $event.keyCode], type$.String, type$.dynamic); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/keyevent", B.C_JSONMessageCodec.encodeMessage$1(eventData), new A.Keyboard__handleHtmlEvent_closure0($event)); } }; A.Keyboard$__closure.prototype = { call$1($event) { this.$this._handleHtmlEvent$1($event); }, $signature: 80 }; A.Keyboard$__closure0.prototype = { call$1($event) { this.$this._handleHtmlEvent$1($event); }, $signature: 80 }; A.Keyboard$__closure1.prototype = { call$0() { this.$this.dispose$0(0); }, $signature: 0 }; A.Keyboard__handleHtmlEvent_closure.prototype = { call$0() { var t2, eventData, t1 = this.$this; t1._keydownTimers.remove$1(0, this.timerKey); t2 = this.event; eventData = A.LinkedHashMap_LinkedHashMap$_literal(["type", "keyup", "keymap", "web", "code", t2.code, "key", t2.key, "location", t2.location, "metaState", t1._lastMetaState, "keyCode", t2.keyCode], type$.String, type$.dynamic); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/keyevent", B.C_JSONMessageCodec.encodeMessage$1(eventData), A._engine___noopCallback$closure()); }, $signature: 0 }; A.Keyboard__handleHtmlEvent_closure0.prototype = { call$1(data) { if (data == null) return; if (A._asBoolS(J.$index$asx(type$.Map_String_dynamic._as(B.C_JSONMessageCodec.decodeMessage$1(data)), "handled"))) this.event.preventDefault(); }, $signature: 135 }; A._kLogicalKeyToModifierGetter_closure.prototype = { call$1($event) { return $event._event.altKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure0.prototype = { call$1($event) { return $event._event.altKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure1.prototype = { call$1($event) { return $event._event.ctrlKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure2.prototype = { call$1($event) { return $event._event.ctrlKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure3.prototype = { call$1($event) { return $event._event.shiftKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure4.prototype = { call$1($event) { return $event._event.shiftKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure5.prototype = { call$1($event) { return $event._event.metaKey; }, $signature: 174 }; A._kLogicalKeyToModifierGetter_closure6.prototype = { call$1($event) { return $event._event.metaKey; }, $signature: 174 }; A.KeyboardBinding.prototype = { __engine$_addEventListener$2(_, eventName, handler) { var t1 = new A.KeyboardBinding__addEventListener_loggedHandler(handler); this._listeners.$indexSet(0, eventName, t1); B.Window_methods.addEventListener$3(window, eventName, t1, true); }, _onKeyData$1(data) { var t1 = {}; t1.result = null; $.$get$EnginePlatformDispatcher__instance().invokeOnKeyData$2(data, new A.KeyboardBinding__onKeyData_closure(t1)); t1 = t1.result; t1.toString; return t1; }, _setup$0() { var t1, t2, _this = this; _this.__engine$_addEventListener$2(0, "keydown", new A.KeyboardBinding__setup_closure(_this)); _this.__engine$_addEventListener$2(0, "keyup", new A.KeyboardBinding__setup_closure0(_this)); t1 = $.$get$_operatingSystem(); t2 = type$.int; _this.__KeyboardBinding__converter = new A.KeyboardConverter(_this.get$_onKeyData(), t1 === B.OperatingSystem_4, A.LinkedHashMap_LinkedHashMap$_empty(t2, t2), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.void_Function)); } }; A.KeyboardBinding__addEventListener_loggedHandler.prototype = { call$1($event) { var t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) return this.handler.call$1($event); return null; }, $signature: 203 }; A.KeyboardBinding__onKeyData_closure.prototype = { call$1(handled) { this._box_0.result = handled; }, $signature: 74 }; A.KeyboardBinding__setup_closure.prototype = { call$1($event) { return A._lateReadCheck(this.$this.__KeyboardBinding__converter, "_converter").handleEvent$1(new A.FlutterHtmlKeyboardEvent(type$.KeyboardEvent._as($event))); }, $signature: 69 }; A.KeyboardBinding__setup_closure0.prototype = { call$1($event) { return A._lateReadCheck(this.$this.__KeyboardBinding__converter, "_converter").handleEvent$1(new A.FlutterHtmlKeyboardEvent(type$.KeyboardEvent._as($event))); }, $signature: 69 }; A.FlutterHtmlKeyboardEvent.prototype = {}; A.KeyboardConverter.prototype = { dispose$0(_) { this._disposed = true; }, _scheduleAsyncEvent$3(duration, getData, callback) { var t2, t1 = {}; t1.canceled = false; t2 = type$.void; A.Future_Future$delayed(duration, null, t2).then$1$1(0, new A.KeyboardConverter__scheduleAsyncEvent_closure(t1, this, callback, getData), t2); return new A.KeyboardConverter__scheduleAsyncEvent_closure0(t1); }, _startGuardingKey$3(physicalKey, logicalKey, currentTimeStamp) { var cancelingCallback, t1, t2, _this = this; if (!_this.onMacOs) return; cancelingCallback = _this._scheduleAsyncEvent$3(B.Duration_2000000, new A.KeyboardConverter__startGuardingKey_closure(currentTimeStamp, physicalKey, logicalKey), new A.KeyboardConverter__startGuardingKey_closure0(_this, physicalKey)); t1 = _this._keyGuards; t2 = t1.remove$1(0, physicalKey); if (t2 != null) t2.call$0(); t1.$indexSet(0, physicalKey, cancelingCallback); }, _handleEvent$1($event) { var ms, timeStamp, t3, physicalKey, logicalKeyIsCharacter, character, logicalKey, isPhysicalDown, type, lastLogicalRecord, nextLogicalRecord, _this = this, _null = null, t1 = $event._event, t2 = t1.timeStamp; t2.toString; ms = B.JSNumber_methods.toInt$0(t2); timeStamp = A.Duration$(0, 0, B.JSNumber_methods.toInt$0((t2 - ms) * 1000), ms, 0, 0); t2 = t1.key; t2.toString; t3 = t1.code; t3.toString; physicalKey = B.Map_KP6BJ.$index(0, t3); if (physicalKey == null) physicalKey = B.JSString_methods.get$hashCode(t3) + 98784247808; t3 = B.JSString_methods._codeUnitAt$1(t2, 0); if (!(t3 >= 97 && t3 <= 122)) t3 = t3 >= 65 && t3 <= 90; else t3 = true; logicalKeyIsCharacter = !(t3 && t2.length > 1); if (logicalKeyIsCharacter) character = t2; else character = _null; logicalKey = new A.KeyboardConverter__handleEvent_closure($event, character, t2, physicalKey).call$0(); if (t1.type !== "keydown") if (_this.onMacOs) { t2 = t1.code; t2.toString; t2 = t2 === "CapsLock"; isPhysicalDown = t2; } else isPhysicalDown = false; else isPhysicalDown = true; if (_this.onMacOs) { t2 = t1.code; t2.toString; t2 = t2 === "CapsLock"; } else t2 = false; if (t2) { _this._scheduleAsyncEvent$3(B.Duration_0, new A.KeyboardConverter__handleEvent_closure0(timeStamp, physicalKey, logicalKey), new A.KeyboardConverter__handleEvent_closure1(_this, physicalKey)); type = B.KeyEventType_0; } else if (isPhysicalDown) { t2 = _this._pressingRecords; if (t2.$index(0, physicalKey) != null) { t3 = t1.repeat; if (t3 === true) type = B.KeyEventType_2; else { _this._dispatchKeyData.call$1(new A.KeyData(timeStamp, B.KeyEventType_1, physicalKey, logicalKey, _null, true)); t2.remove$1(0, physicalKey); type = B.KeyEventType_0; } } else type = B.KeyEventType_0; } else { if (_this._pressingRecords.$index(0, physicalKey) == null) { t1.preventDefault(); return; } type = B.KeyEventType_1; } t2 = _this._pressingRecords; lastLogicalRecord = t2.$index(0, physicalKey); switch (type.index) { case 0: nextLogicalRecord = logicalKey; break; case 1: nextLogicalRecord = _null; break; case 2: nextLogicalRecord = lastLogicalRecord; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t3 = nextLogicalRecord == null; if (t3) t2.remove$1(0, physicalKey); else t2.$indexSet(0, physicalKey, nextLogicalRecord); $.$get$_kLogicalKeyToModifierGetter().forEach$1(0, new A.KeyboardConverter__handleEvent_closure2(_this, logicalKey, $event, timeStamp)); if (logicalKeyIsCharacter) if (!t3) _this._startGuardingKey$3(physicalKey, logicalKey, timeStamp); else { t2 = _this._keyGuards.remove$1(0, physicalKey); if (t2 != null) t2.call$0(); } t2 = lastLogicalRecord == null ? logicalKey : lastLogicalRecord; t3 = type === B.KeyEventType_1 ? _null : character; if (_this._dispatchKeyData.call$1(new A.KeyData(timeStamp, type, physicalKey, t2, t3, false))) t1.preventDefault(); }, handleEvent$1($event) { var _this = this, t1 = {}; t1.sentAnyEvents = false; _this._dispatchKeyData = new A.KeyboardConverter_handleEvent_closure(t1, _this); try { _this._handleEvent$1($event); } finally { if (!t1.sentAnyEvents) _this._dispatchKeyData.call$1(B.KeyData_cgD); _this._dispatchKeyData = null; } } }; A.KeyboardConverter__scheduleAsyncEvent_closure.prototype = { call$1(_) { var _this = this; if (!_this._box_0.canceled && !_this.$this._disposed) { _this.callback.call$0(); _this.$this.performDispatchKeyData.call$1(_this.getData.call$0()); } }, $signature: 86 }; A.KeyboardConverter__scheduleAsyncEvent_closure0.prototype = { call$0() { this._box_0.canceled = true; }, $signature: 0 }; A.KeyboardConverter__startGuardingKey_closure.prototype = { call$0() { return new A.KeyData(new A.Duration(this.currentTimeStamp._duration + 2000000), B.KeyEventType_1, this.physicalKey, this.logicalKey, null, true); }, $signature: 770 }; A.KeyboardConverter__startGuardingKey_closure0.prototype = { call$0() { this.$this._pressingRecords.remove$1(0, this.physicalKey); }, $signature: 0 }; A.KeyboardConverter__handleEvent_closure.prototype = { call$0() { var result, altDown, ctrlDown, shiftDown, metaDown, t3, t4, _this = this, t1 = _this.event._event, t2 = t1.key; t2.toString; if (B.Map_8T4QF.containsKey$1(0, t2)) { t2 = t1.key; t2.toString; t2 = B.Map_8T4QF.$index(0, t2); if (t2 == null) result = null; else { t1 = t1.location; t1.toString; result = t2[t1]; } result.toString; return result; } t2 = _this.character; if (t2 != null) { result = B.JSString_methods._codeUnitAt$1(t2, 0) & 65535; if (t2.length === 2) result += B.JSString_methods._codeUnitAt$1(t2, 1) << 16 >>> 0; return result >= 65 && result <= 90 ? result + 97 - 65 : result; } t2 = _this.eventKey; if (t2 === "Dead") { altDown = t1.altKey; ctrlDown = t1.ctrlKey; shiftDown = t1.shiftKey; metaDown = t1.metaKey; t1 = altDown ? 1073741824 : 0; t2 = ctrlDown ? 268435456 : 0; t3 = shiftDown ? 536870912 : 0; t4 = metaDown ? 2147483648 : 0; return _this.physicalKey + (t1 + t2 + t3 + t4) + 98784247808; } t1 = B.Map_0mogo.$index(0, t2); return t1 == null ? J.get$hashCode$(t2) + 98784247808 : t1; }, $signature: 160 }; A.KeyboardConverter__handleEvent_closure0.prototype = { call$0() { return new A.KeyData(this.timeStamp, B.KeyEventType_1, this.physicalKey, this.logicalKey, null, true); }, $signature: 770 }; A.KeyboardConverter__handleEvent_closure1.prototype = { call$0() { this.$this._pressingRecords.remove$1(0, this.physicalKey); }, $signature: 0 }; A.KeyboardConverter__handleEvent_closure2.prototype = { call$2(testeeLogicalKey, getModifier) { var t1, t2, _this = this; if (_this.logicalKey == testeeLogicalKey) return; t1 = _this.$this; t2 = t1._pressingRecords; if (t2.containsValue$1(0, testeeLogicalKey) && !getModifier.call$1(_this.event)) t2.removeWhere$1(t2, new A.KeyboardConverter__handleEvent__closure(t1, testeeLogicalKey, _this.timeStamp)); }, $signature: 996 }; A.KeyboardConverter__handleEvent__closure.prototype = { call$2(physicalKey, logicalRecord) { var t1 = this.testeeLogicalKey; if (logicalRecord != t1) return false; this.$this._dispatchKeyData.call$1(new A.KeyData(this.timeStamp, B.KeyEventType_1, physicalKey, t1, null, true)); return true; }, $signature: 1000 }; A.KeyboardConverter_handleEvent_closure.prototype = { call$1(data) { this._box_0.sentAnyEvents = true; return this.$this.performDispatchKeyData.call$1(data); }, $signature: 497 }; A.MouseCursor.prototype = {}; A.BrowserHistory.prototype = { get$_unsubscribe() { return A._lateReadCheck(this.__BrowserHistory__unsubscribe, "_unsubscribe"); }, _setupStrategy$1(strategy) { this.__BrowserHistory__unsubscribe = strategy.addPopStateListener$1(0, type$.dynamic_Function_Event._as(this.get$onPopState(this))); }, dispose$0(_) { var _this = this; if (_this._isDisposed || _this.get$urlStrategy() == null) return; _this._isDisposed = true; _this._unsubscribe$0(); }, exit$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$exit$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.get$urlStrategy() != null ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($async$self.tearDown$0(), $async$exit$0); case 4: // returning from await. $async$goto = 5; return A._asyncAwait($async$self.get$urlStrategy().go$1(0, -1), $async$exit$0); case 5: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$exit$0, $async$completer); }, get$currentPath() { var t1 = this.get$urlStrategy(); t1 = t1 == null ? null : t1.getPath$0(0); return t1 == null ? "/" : t1; }, get$currentState() { var t1 = this.get$urlStrategy(); return t1 == null ? null : t1.getState$0(0); }, _unsubscribe$0() { return this.get$_unsubscribe().call$0(); } }; A.MultiEntriesBrowserHistory.prototype = { MultiEntriesBrowserHistory$1$urlStrategy(urlStrategy) { var t1, _this = this, strategy = _this.urlStrategy; if (strategy == null) return; _this._setupStrategy$1(strategy); if (!_this._hasSerialCount$1(_this.get$currentState())) { t1 = type$.dynamic; strategy.replaceState$3(0, A.LinkedHashMap_LinkedHashMap$_literal(["serialCount", 0, "state", _this.get$currentState()], t1, t1), "flutter", _this.get$currentPath()); } _this.__MultiEntriesBrowserHistory__lastSeenSerialCount = _this.get$_currentSerialCount(); }, get$_currentSerialCount() { if (this._hasSerialCount$1(this.get$currentState())) { var t1 = this.get$currentState(); t1.toString; return A._asIntS(J.$index$asx(type$.Map_dynamic_dynamic._as(t1), "serialCount")); } return 0; }, _hasSerialCount$1(state) { return type$.Map_dynamic_dynamic._is(state) && J.$index$asx(state, "serialCount") != null; }, setRouteName$3$replace$state(routeName, replace, state) { var t2, t3, _s20_ = "_lastSeenSerialCount", t1 = this.urlStrategy; if (t1 != null) { t2 = type$.dynamic; t3 = this.__MultiEntriesBrowserHistory__lastSeenSerialCount; if (replace) { t2 = A.LinkedHashMap_LinkedHashMap$_literal(["serialCount", A._lateReadCheck(t3, _s20_), "state", state], t2, t2); routeName.toString; t1.replaceState$3(0, t2, "flutter", routeName); } else { t3 = A._lateReadCheck(t3, _s20_) + 1; this.__MultiEntriesBrowserHistory__lastSeenSerialCount = t3; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["serialCount", A._lateReadCheck(t3, _s20_), "state", state], t2, t2); routeName.toString; t1.pushState$3(0, t2, "flutter", routeName); } } }, setRouteName$1(routeName) { return this.setRouteName$3$replace$state(routeName, false, null); }, onPopState$1(_, $event) { var t1, t2, t3, t4, _this = this; if (!_this._hasSerialCount$1(new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true))) { t1 = _this.urlStrategy; t1.toString; t2 = new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true); t3 = type$.dynamic; t1.replaceState$3(0, A.LinkedHashMap_LinkedHashMap$_literal(["serialCount", A._lateReadCheck(_this.__MultiEntriesBrowserHistory__lastSeenSerialCount, "_lastSeenSerialCount") + 1, "state", t2], t3, t3), "flutter", _this.get$currentPath()); } _this.__MultiEntriesBrowserHistory__lastSeenSerialCount = _this.get$_currentSerialCount(); t1 = $.$get$EnginePlatformDispatcher__instance(); t2 = _this.get$currentPath(); t3 = new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true); t3 = t3 == null ? null : J.$index$asx(t3, "state"); t4 = type$.dynamic; t1.invokeOnPlatformMessage$3("flutter/navigation", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("pushRouteInformation", A.LinkedHashMap_LinkedHashMap$_literal(["location", t2, "state", t3], t4, t4))), new A.MultiEntriesBrowserHistory_onPopState_closure()); }, tearDown$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, backCount, t1, t2; var $async$tearDown$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.dispose$0(0); if ($async$self._isTornDown || $async$self.urlStrategy == null) { // goto return $async$goto = 1; break; } $async$self._isTornDown = true; backCount = $async$self.get$_currentSerialCount(); $async$goto = backCount > 0 ? 3 : 4; break; case 3: // then $async$goto = 5; return A._asyncAwait($async$self.urlStrategy.go$1(0, -backCount), $async$tearDown$0); case 5: // returning from await. case 4: // join t1 = $async$self.get$currentState(); t1.toString; type$.Map_dynamic_dynamic._as(t1); t2 = $async$self.urlStrategy; t2.toString; t2.replaceState$3(0, J.$index$asx(t1, "state"), "flutter", $async$self.get$currentPath()); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$tearDown$0, $async$completer); }, get$urlStrategy() { return this.urlStrategy; } }; A.MultiEntriesBrowserHistory_onPopState_closure.prototype = { call$1(_) { }, $signature: 135 }; A.SingleEntryBrowserHistory.prototype = { SingleEntryBrowserHistory$1$urlStrategy(urlStrategy) { var path, _this = this, strategy = _this.urlStrategy; if (strategy == null) return; _this._setupStrategy$1(strategy); path = _this.get$currentPath(); if (!A.SingleEntryBrowserHistory__isFlutterEntry(new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(window.history.state, true))) { strategy.replaceState$3(0, A.LinkedHashMap_LinkedHashMap$_literal(["origin", true, "state", _this.get$currentState()], type$.String, type$.dynamic), "origin", ""); _this._setupFlutterEntry$3$path$replace(strategy, path, false); } }, setRouteName$3$replace$state(routeName, replace, state) { var t1 = this.urlStrategy; if (t1 != null) this._setupFlutterEntry$3$path$replace(t1, routeName, true); }, setRouteName$1(routeName) { return this.setRouteName$3$replace$state(routeName, false, null); }, onPopState$1(_, $event) { var t1, _this = this, _s18_ = "flutter/navigation"; if (A.SingleEntryBrowserHistory__isOriginEntry(new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true))) { t1 = _this.urlStrategy; t1.toString; _this._setupFlutterEntry$1(t1); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s18_, B.C_JSONMethodCodec.encodeMethodCall$1(B.MethodCall_popRoute_null), new A.SingleEntryBrowserHistory_onPopState_closure()); } else if (A.SingleEntryBrowserHistory__isFlutterEntry(new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true))) { t1 = _this._userProvidedRouteName; t1.toString; _this._userProvidedRouteName = null; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s18_, B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("pushRoute", t1)), new A.SingleEntryBrowserHistory_onPopState_closure0()); } else { _this._userProvidedRouteName = _this.get$currentPath(); _this.urlStrategy.go$1(0, -1); } }, _setupFlutterEntry$3$path$replace(strategy, path, replace) { var t1; if (path == null) path = this.get$currentPath(); t1 = this._flutterState; if (replace) strategy.replaceState$3(0, t1, "flutter", path); else strategy.pushState$3(0, t1, "flutter", path); }, _setupFlutterEntry$1(strategy) { return this._setupFlutterEntry$3$path$replace(strategy, null, false); }, tearDown$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2; var $async$tearDown$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.dispose$0(0); if ($async$self._isTornDown || $async$self.urlStrategy == null) { // goto return $async$goto = 1; break; } $async$self._isTornDown = true; t1 = $async$self.urlStrategy; $async$goto = 3; return A._asyncAwait(t1.go$1(0, -1), $async$tearDown$0); case 3: // returning from await. t2 = $async$self.get$currentState(); t2.toString; t1.replaceState$3(0, J.$index$asx(type$.Map_dynamic_dynamic._as(t2), "state"), "flutter", $async$self.get$currentPath()); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$tearDown$0, $async$completer); }, get$urlStrategy() { return this.urlStrategy; } }; A.SingleEntryBrowserHistory_onPopState_closure.prototype = { call$1(_) { }, $signature: 135 }; A.SingleEntryBrowserHistory_onPopState_closure0.prototype = { call$1(_) { }, $signature: 135 }; A.JsUrlStrategy.prototype = {}; A.UrlStrategy.prototype = {}; A.HashUrlStrategy.prototype = { addPopStateListener$1(_, fn) { B.Window_methods.addEventListener$2(window, "popstate", fn); return new A.HashUrlStrategy_addPopStateListener_closure(this, fn); }, getPath$0(_) { var path = window.location.hash; if (path == null) path = ""; if (path.length === 0 || path === "#") return "/"; return B.JSString_methods.substring$1(path, 1); }, getState$0(_) { return new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(window.history.state, true); }, prepareExternalUrl$1(_, internalUrl) { var t1, t2; if (internalUrl.length === 0) { t1 = window.location.pathname; t1.toString; t2 = window.location.search; t2.toString; t2 = t1 + t2; t1 = t2; } else t1 = "#" + internalUrl; return t1; }, pushState$3(_, state, title, url) { var t1 = this.prepareExternalUrl$1(0, url), t2 = window.history; t2.toString; t2.pushState(new A._StructuredCloneDart2Js([], []).walk$1(state), title, t1); }, replaceState$3(_, state, title, url) { var t1 = this.prepareExternalUrl$1(0, url), t2 = window.history; t2.toString; t2.replaceState(new A._StructuredCloneDart2Js([], []).walk$1(state), title, t1); }, go$1(_, count) { window.history.go(count); return this._waitForPopState$0(); }, _waitForPopState$0() { var t1 = new A._Future($.Zone__current, type$._Future_void), unsubscribe = A._Cell$named("unsubscribe"); unsubscribe.__late_helper$_value = this.addPopStateListener$1(0, new A.HashUrlStrategy__waitForPopState_closure(unsubscribe, new A._AsyncCompleter(t1, type$._AsyncCompleter_void))); return t1; } }; A.HashUrlStrategy_addPopStateListener_closure.prototype = { call$0() { B.Window_methods.removeEventListener$2(window, "popstate", this.fn); return null; }, $signature: 0 }; A.HashUrlStrategy__waitForPopState_closure.prototype = { call$1(_) { this.unsubscribe._readLocal$0().call$0(); this.completer.complete$0(0); }, $signature: 80 }; A.CustomUrlStrategy.prototype = { addPopStateListener$1(_, fn) { return J.addPopStateListener$1$x(this.delegate, fn); }, getPath$0(_) { return J.getPath$0$x(this.delegate); }, getState$0(_) { return J.getState$0$x(this.delegate); }, pushState$3(_, state, title, url) { return J.pushState$3$x(this.delegate, state, title, url); }, replaceState$3(_, state, title, url) { return J.replaceState$3$x(this.delegate, state, title, url); }, go$1(_, count) { return J.go$1$x(this.delegate, count); } }; A.PlatformLocation.prototype = {}; A.BrowserPlatformLocation.prototype = {}; A.EnginePictureRecorder.prototype = { beginRecording$1(_, bounds) { var t1, t2; this.__EnginePictureRecorder_cullRect = bounds; this._isRecording = true; t1 = A._lateReadCheck(bounds, "cullRect"); t2 = A._setArrayType([], type$.JSArray_PaintCommand); if (t1 == null) t1 = B.Rect_aha; return this.__engine$_canvas = new A.RecordingCanvas(new A._PaintBounds(t1, A._setArrayType([], type$.JSArray_Matrix4), A._setArrayType([], type$.JSArray_nullable_Rect), A.Matrix4$identity()), t2, new A.RenderStrategy()); }, get$isRecording() { return this._isRecording; }, endRecording$0() { var t1, _this = this; if (!_this._isRecording) _this.beginRecording$1(0, B.Rect_aha); _this._isRecording = false; t1 = _this.__engine$_canvas; t1._pictureBounds = t1._paintBounds.computeBounds$0(); t1._recordingEnded = true; t1 = _this.__engine$_canvas; A._lateReadCheck(_this.__EnginePictureRecorder_cullRect, "cullRect"); return new A.EnginePicture(t1); } }; A.EnginePicture.prototype = { dispose$0(_) { this._disposed = true; } }; A.EnginePlatformDispatcher.prototype = { invokeOnMetricsChanged$0() { var t1 = this._onMetricsChanged; if (t1 != null) A.invoke(t1, this._onMetricsChangedZone); }, invokeOnKeyData$2(data, callback) { var onKeyData = this._onKeyData; if (onKeyData != null) A.invoke(new A.EnginePlatformDispatcher_invokeOnKeyData_closure(callback, onKeyData, data), this._onKeyDataZone); else callback.call$1(false); }, invokeOnPlatformMessage$3($name, data, callback) { var t1, bytes, methodNameLength, t2, methodName, index, channelNameLength, channelName, parts, _s143_ = "Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)", _s143_0 = "Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)"; if ($name === "dev.flutter/channel-buffers") try { t1 = $.$get$channelBuffers(); data.toString; t1.toString; bytes = A.NativeUint8List_NativeUint8List$view(data.buffer, data.byteOffset, data.byteLength); if (bytes[0] === 7) { methodNameLength = bytes[1]; if (methodNameLength >= 254) A.throwExpression(A.Exception_Exception("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")); t2 = 2 + methodNameLength; methodName = B.C_Utf8Codec.decode$1(0, B.NativeUint8List_methods.sublist$2(bytes, 2, t2)); switch (methodName) { case "resize": if (bytes[t2] !== 12) A.throwExpression(A.Exception_Exception(_s143_)); index = t2 + 1; if (bytes[index] < 2) A.throwExpression(A.Exception_Exception(_s143_)); ++index; if (bytes[index] !== 7) A.throwExpression(A.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)")); ++index; channelNameLength = bytes[index]; if (channelNameLength >= 254) A.throwExpression(A.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)")); ++index; t2 = index + channelNameLength; channelName = B.C_Utf8Codec.decode$1(0, B.NativeUint8List_methods.sublist$2(bytes, index, t2)); if (bytes[t2] !== 3) A.throwExpression(A.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")); t1.resize$2(0, channelName, data.getUint32(t2 + 1, B.C_Endian === $.$get$Endian_host())); break; case "overflow": if (bytes[t2] !== 12) A.throwExpression(A.Exception_Exception(_s143_0)); index = t2 + 1; if (bytes[index] < 2) A.throwExpression(A.Exception_Exception(_s143_0)); ++index; if (bytes[index] !== 7) A.throwExpression(A.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)")); ++index; channelNameLength = bytes[index]; if (channelNameLength >= 254) A.throwExpression(A.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)")); ++index; t1 = index + channelNameLength; B.C_Utf8Codec.decode$1(0, B.NativeUint8List_methods.sublist$2(bytes, index, t1)); t1 = bytes[t1]; if (t1 !== 1 && t1 !== 2) A.throwExpression(A.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")); break; default: A.throwExpression(A.Exception_Exception("Unrecognized method '" + methodName + "' sent to dev.flutter/channel-buffers")); } } else { parts = A._setArrayType(B.C_Utf8Codec.decode$1(0, bytes).split("\r"), type$.JSArray_String); if (parts.length === 3 && J.$eq$(parts[0], "resize")) t1.resize$2(0, parts[1], A.int_parse(parts[2], null)); else A.throwExpression(A.Exception_Exception("Unrecognized message " + A.S(parts) + " sent to dev.flutter/channel-buffers.")); } } finally { callback.call$1(null); } else $.$get$channelBuffers().push$3($name, data, callback); }, _sendPlatformMessage$3($name, data, callback) { var decoded, cacheSizeInBytes, t1, url, $navigator, $arguments, label, primaryColor, theme, e, t2, _this = this; switch ($name) { case "flutter/skia": decoded = B.C_JSONMethodCodec.decodeMethodCall$1(data); switch (decoded.method) { case "Skia.setResourceCacheMaxBytes": if ($.$get$useCanvasKit()) { cacheSizeInBytes = A._asIntS(decoded.$arguments); _this.get$rasterizer().toString; t1 = A.SurfaceFactory_instance().baseSurface; t1._skiaCacheBytes = cacheSizeInBytes; t1._syncCacheBytes$0(); } _this.replyToPlatformMessage$2(callback, B.C_JSONMessageCodec.encodeMessage$1([A._setArrayType([true], type$.JSArray_bool)])); break; } return; case "flutter/assets": url = B.C_Utf8Codec.decode$1(0, A.NativeUint8List_NativeUint8List$view(data.buffer, 0, null)); $._assetManager.load$1(0, url).then$1$2$onError(0, new A.EnginePlatformDispatcher__sendPlatformMessage_closure(_this, callback), new A.EnginePlatformDispatcher__sendPlatformMessage_closure0(_this, callback), type$.Null); return; case "flutter/platform": decoded = B.C_JSONMethodCodec.decodeMethodCall$1(data); switch (decoded.method) { case "SystemNavigator.pop": _this._windows.$index(0, 0).get$browserHistory().exit$0().then$1$1(0, new A.EnginePlatformDispatcher__sendPlatformMessage_closure1(_this, callback), type$.Null); return; case "HapticFeedback.vibrate": t1 = _this._getHapticFeedbackDuration$1(A._asStringQ(decoded.$arguments)); $navigator = window.navigator; if ("vibrate" in $navigator) $navigator.vibrate(t1); _this.replyToPlatformMessage$2(callback, B.C_JSONMessageCodec.encodeMessage$1([true])); return; case string$.System: $arguments = type$.Map_String_dynamic._as(decoded.$arguments); t1 = J.getInterceptor$asx($arguments); label = A._asStringQ(t1.$index($arguments, "label")); if (label == null) label = ""; primaryColor = A._asIntQ(t1.$index($arguments, "primaryColor")); if (primaryColor == null) primaryColor = 4278190080; t1 = document; t1.title = label; theme = type$.nullable_MetaElement._as(t1.querySelector("#flutterweb-theme")); if (theme == null) { theme = t1.createElement("meta"); theme.id = "flutterweb-theme"; theme.name = "theme-color"; t1.head.appendChild(theme); } t1 = A.colorToCssString(new A.Color(primaryColor >>> 0)); t1.toString; theme.content = t1; _this.replyToPlatformMessage$2(callback, B.C_JSONMessageCodec.encodeMessage$1([true])); return; case "SystemChrome.setPreferredOrientations": $arguments = type$.List_dynamic._as(decoded.$arguments); $._flutterViewEmbedder.setPreferredOrientation$1($arguments).then$1$1(0, new A.EnginePlatformDispatcher__sendPlatformMessage_closure2(_this, callback), type$.Null); return; case "SystemSound.play": _this.replyToPlatformMessage$2(callback, B.C_JSONMessageCodec.encodeMessage$1([true])); return; case "Clipboard.setData": t1 = window.navigator.clipboard != null ? new A.ClipboardAPICopyStrategy() : new A.ExecCommandCopyStrategy(); new A.ClipboardMessageHandler(t1, A.PasteFromClipboardStrategy_PasteFromClipboardStrategy()).setDataMethodCall$2(decoded, callback); return; case "Clipboard.getData": t1 = window.navigator.clipboard != null ? new A.ClipboardAPICopyStrategy() : new A.ExecCommandCopyStrategy(); new A.ClipboardMessageHandler(t1, A.PasteFromClipboardStrategy_PasteFromClipboardStrategy()).getDataMethodCall$1(callback); return; } break; case "flutter/service_worker": t1 = window; e = document.createEvent("Event"); e.initEvent("flutter-first-frame", true, true); t1.dispatchEvent(e); return; case "flutter/textinput": t1 = $.$get$textEditing(); t1.get$channel(t1).handleTextInput$2(data, callback); return; case "flutter/mousecursor": decoded = B.C_StandardMethodCodec0.decodeMethodCall$1(data); $arguments = type$.Map_dynamic_dynamic._as(decoded.$arguments); switch (decoded.method) { case "activateSystemCursor": $.MouseCursor__instance.toString; t1 = A._asStringQ(J.$index$asx($arguments, "kind")); t2 = $._flutterViewEmbedder._glassPaneElement; t2.toString; t1 = B.Map_gFKQ1.$index(0, t1); A.setElementStyle(t2, "cursor", t1 == null ? "default" : t1); break; } return; case "flutter/web_test_e2e": _this.replyToPlatformMessage$2(callback, B.C_JSONMessageCodec.encodeMessage$1([A._handleWebTestEnd2EndMessage(B.C_JSONMethodCodec, data)])); return; case "flutter/platform_views": t1 = _this._platformViewMessageHandler; if (t1 == null) t1 = _this._platformViewMessageHandler = new A.PlatformViewMessageHandler($.$get$platformViewManager(), new A.EnginePlatformDispatcher__sendPlatformMessage_closure3()); callback.toString; t1.handlePlatformViewCall$2(data, callback); return; case "flutter/accessibility": $.$get$accessibilityAnnouncements().handleMessage$2(B.C_StandardMessageCodec0, data); _this.replyToPlatformMessage$2(callback, B.C_StandardMessageCodec0.encodeMessage$1(true)); return; case "flutter/navigation": _this._windows.$index(0, 0).handleNavigationMessage$1(data).then$1$1(0, new A.EnginePlatformDispatcher__sendPlatformMessage_closure4(_this, callback), type$.Null); _this._defaultRouteName = "/"; return; } t1 = $.pluginMessageCallHandler; if (t1 != null) { t1.call$3($name, data, callback); return; } _this.replyToPlatformMessage$2(callback, null); }, _getHapticFeedbackDuration$1(type) { switch (type) { case "HapticFeedbackType.lightImpact": return 10; case "HapticFeedbackType.mediumImpact": return 20; case "HapticFeedbackType.heavyImpact": return 30; case "HapticFeedbackType.selectionClick": return 10; default: return 50; } }, scheduleFrame$0() { var t1 = $.scheduleFrameCallback; if (t1 == null) throw A.wrapException(A.Exception_Exception("scheduleFrameCallback must be initialized first.")); t1.call$0(); }, render$2(_, scene, view) { var t1, embedder; if ($.$get$useCanvasKit()) { A.frameTimingsOnBuildFinish(); A.frameTimingsOnRasterStart(); type$.LayerScene._as(scene); t1 = this.get$rasterizer(); t1.toString; t1.draw$1(scene.layerTree); } else { type$.SurfaceScene._as(scene); embedder = $._flutterViewEmbedder; embedder.toString; embedder.renderScene$1(scene.webOnlyRootElement); } A.frameTimingsOnRasterFinish(); }, _addFontSizeObserver$0() { var t2, t1 = new (window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver)(A.convertDartClosureToJS(A._wrapBinaryZone(new A.EnginePlatformDispatcher__addFontSizeObserver_closure(this), type$.List_dynamic, type$.MutationObserver), 2)); this._fontSizeObserver = t1; t2 = document.documentElement; t2.toString; B.MutationObserver_methods.observe$3$attributeFilter$attributes(t1, t2, A._setArrayType(["style"], type$.JSArray_String), true); $._hotRestartListeners.push(new A.EnginePlatformDispatcher__addFontSizeObserver_closure0(this)); }, _updatePlatformBrightness$1(value) { var _this = this, t1 = _this._configuration; if (t1.platformBrightness !== value) { _this._configuration = t1.copyWith$1$platformBrightness(value); A.invoke(null, null); A.invoke(_this._onPlatformBrightnessChanged, _this._onPlatformBrightnessChangedZone); } }, _addBrightnessMediaQueryListener$0() { var t2, _this = this, t1 = _this._brightnessMediaQuery; _this._updatePlatformBrightness$1(t1.matches ? B.Brightness_0 : B.Brightness_1); t2 = new A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure(_this); _this._brightnessMediaQueryListener = t2; B.MediaQueryList_methods.addListener$1(t1, t2); $._hotRestartListeners.push(new A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0(_this)); }, get$defaultRouteName() { var t1 = this._defaultRouteName; return t1 == null ? this._defaultRouteName = this._windows.$index(0, 0).get$browserHistory().get$currentPath() : t1; }, get$rasterizer() { var value = this.__EnginePlatformDispatcher_rasterizer; if (value === $) value = this.__EnginePlatformDispatcher_rasterizer = $.$get$useCanvasKit() ? new A.Rasterizer(new A.CompositorContext(), A._setArrayType([], type$.JSArray_of_void_Function)) : null; return value; }, replyToPlatformMessage$2(callback, data) { A.Future_Future$delayed(B.Duration_0, null, type$.void).then$1$1(0, new A.EnginePlatformDispatcher_replyToPlatformMessage_closure(callback, data), type$.Null); } }; A.EnginePlatformDispatcher_invokeOnKeyData_closure.prototype = { call$0() { return this.callback.call$1(this.onKeyData.call$1(this.data)); }, $signature: 0 }; A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure.prototype = { call$1(data) { this.registrationZone.runUnaryGuarded$1$2(this.callback, data, type$.nullable_ByteData); }, $signature: 135 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure.prototype = { call$1(assetData) { this.$this.replyToPlatformMessage$2(this.callback, assetData); }, $signature: 1010 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure0.prototype = { call$1(error) { $.$get$printWarning().call$1("Error while trying to load an asset: " + A.S(error)); this.$this.replyToPlatformMessage$2(this.callback, null); }, $signature: 7 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure1.prototype = { call$1(_) { this.$this.replyToPlatformMessage$2(this.callback, B.C_JSONMessageCodec.encodeMessage$1([true])); }, $signature: 86 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure2.prototype = { call$1(success) { this.$this.replyToPlatformMessage$2(this.callback, B.C_JSONMessageCodec.encodeMessage$1([success])); }, $signature: 454 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure3.prototype = { call$1($content) { $._flutterViewEmbedder._glassPaneElement.appendChild($content); }, $signature: 1025 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure4.prototype = { call$1(handled) { var t1 = this.callback; if (handled) this.$this.replyToPlatformMessage$2(t1, B.C_JSONMessageCodec.encodeMessage$1([true])); else if (t1 != null) t1.call$1(null); }, $signature: 454 }; A.EnginePlatformDispatcher__addFontSizeObserver_closure.prototype = { call$2(mutations, _) { var t1, t2, t3, record, t4, fontSize, newTextScaleFactor; for (t1 = J.get$iterator$ax(mutations), t2 = type$.MutationRecord, t3 = this.$this; t1.moveNext$0();) { record = t2._as(t1.get$current(t1)); if (record.type === "attributes" && record.attributeName === "style") { t4 = document.documentElement; t4.toString; fontSize = A.parseFontSize(t4); newTextScaleFactor = (fontSize == null ? 16 : fontSize) / 16; t4 = t3._configuration; if (t4.textScaleFactor !== newTextScaleFactor) { t3._configuration = t4.copyWith$1$textScaleFactor(newTextScaleFactor); A.invoke(null, null); A.invoke(t3._onTextScaleFactorChanged, t3._onTextScaleFactorChangedZone); } } } }, $signature: 1029 }; A.EnginePlatformDispatcher__addFontSizeObserver_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._fontSizeObserver; if (t2 != null) t2.disconnect(); t1._fontSizeObserver = null; }, $signature: 0 }; A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure.prototype = { call$1($event) { var t1 = type$.MediaQueryListEvent._as($event).matches; t1.toString; t1 = t1 ? B.Brightness_0 : B.Brightness_1; this.$this._updatePlatformBrightness$1(t1); }, $signature: 80 }; A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._brightnessMediaQuery; (t2 && B.MediaQueryList_methods).removeListener$1(t2, t1._brightnessMediaQueryListener); t1._brightnessMediaQueryListener = null; }, $signature: 0 }; A.EnginePlatformDispatcher_replyToPlatformMessage_closure.prototype = { call$1(_) { var t1 = this.callback; if (t1 != null) t1.call$1(this.data); }, $signature: 86 }; A.invoke2_closure.prototype = { call$0() { this.callback.call$2(this.arg1, this.arg2); }, $signature: 0 }; A.invoke3_closure.prototype = { call$0() { var _this = this; _this.callback.call$3(_this.arg1, _this.arg2, _this.arg3); }, $signature: 0 }; A.PlatformViewManager.prototype = { registerFactory$3$isVisible(viewType, factoryFunction, isVisible) { var t1 = this._factories; if (t1.containsKey$1(0, viewType)) return false; t1.$indexSet(0, viewType, factoryFunction); if (!isVisible) this._invisibleViews.add$1(0, viewType); return true; }, renderContent$3(viewType, viewId, params) { this._viewIdToType.$indexSet(0, viewId, viewType); return this.__engine$_contents.putIfAbsent$2(0, viewId, new A.PlatformViewManager_renderContent_closure(this, "flt-pv-slot-" + A.S(viewId), viewType, viewId, params)); }, _safelyRemoveSlottedElement$1(element) { var t1, tombstoneName, slot; if (element == null) return; t1 = $.$get$_browserEngine(); if (t1 !== B.BrowserEngine_1) { J.remove$0$ax(element); return; } tombstoneName = "tombstone-" + A.S(element.getAttribute("slot")); slot = document.createElement("slot"); t1 = slot.style; t1.display = "none"; slot.setAttribute("name", tombstoneName); $._flutterViewEmbedder._glassPaneShadow.append$1(0, slot); element.setAttribute("slot", tombstoneName); J.remove$0$ax(element); J.remove$0$ax(slot); }, isInvisible$1(viewId) { var viewType = this._viewIdToType.$index(0, viewId); return viewType != null && this._invisibleViews.contains$1(0, viewType); } }; A.PlatformViewManager_renderContent_closure.prototype = { call$0() { var t1, t2, $content, t3, _this = this, wrapper = document.createElement("flt-platform-view"); wrapper.setAttribute("slot", _this.slotName); t1 = _this.viewType; t2 = _this.$this._factories.$index(0, t1); t2.toString; $content = A._Cell$named("content"); t3 = _this.viewId; if (type$.Element_Function_int_$named_params_nullable_Object._is(t2)) $content.__late_helper$_value = t2.call$2$params(t3, _this.params); else $content.__late_helper$_value = type$.Element_Function_int._as(t2).call$1(t3); t2 = $content._readLocal$0(); if (t2.style.height.length === 0) { $.$get$printWarning().call$1("Height of Platform View type: [" + A.S(t1) + "] may not be set. Defaulting to `height: 100%`.\nSet `style.height` to any appropriate value to stop this message."); t3 = t2.style; t3.height = "100%"; } if (t2.style.width.length === 0) { $.$get$printWarning().call$1("Width of Platform View type: [" + A.S(t1) + "] may not be set. Defaulting to `width: 100%`.\nSet `style.width` to any appropriate value to stop this message."); t1 = t2.style; t1.width = "100%"; } wrapper.appendChild($content._readLocal$0()); return wrapper; }, $signature: 1034 }; A.PlatformViewMessageHandler.prototype = { _createPlatformView$2(methodCall, callback) { var args = type$.Map_dynamic_dynamic._as(methodCall.$arguments), t1 = J.getInterceptor$asx(args), viewId = A._asIntS(t1.$index(args, "id")), viewType = A._asStringS(t1.$index(args, "viewType")); t1 = this._contentManager; if (!t1._factories.containsKey$1(0, viewType)) { callback.call$1(B.C_StandardMethodCodec0.encodeErrorEnvelope$3$code$details$message("unregistered_view_type", "unregistered view type: " + A.S(viewType), "trying to create a view with an unregistered type")); return; } if (t1.__engine$_contents.containsKey$1(0, viewId)) { callback.call$1(B.C_StandardMethodCodec0.encodeErrorEnvelope$3$code$details$message("recreating_view", "view id: " + A.S(viewId), "trying to create an already created view")); return; } this._contentHandler.call$1(t1.renderContent$3(viewType, viewId, args)); callback.call$1(B.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); }, handlePlatformViewCall$2(data, callback) { var viewId, t1, decoded = B.C_StandardMethodCodec0.decodeMethodCall$1(data); switch (decoded.method) { case "create": this._createPlatformView$2(decoded, callback); return; case "dispose": viewId = A._asIntS(decoded.$arguments); t1 = this._contentManager; t1._safelyRemoveSlottedElement$1(t1.__engine$_contents.remove$1(0, viewId)); callback.call$1(B.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); return; } callback.call$1(null); } }; A.PointerBinding.prototype = { _createAdapter$0() { var t1, _this = this; if ("PointerEvent" in window) { t1 = new A._PointerAdapter(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._ButtonSanitizer), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } if ("TouchEvent" in window) { t1 = new A._TouchAdapter(A.LinkedHashSet_LinkedHashSet$_empty(type$.int), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } if ("MouseEvent" in window) { t1 = new A._MouseAdapter(new A._ButtonSanitizer(), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } throw A.wrapException(A.UnsupportedError$("This browser does not support pointer, touch, or mouse events.")); }, _onPointerData$1(data) { var t1 = A._setArrayType(data.slice(0), A._arrayInstanceType(data)), t2 = $.$get$EnginePlatformDispatcher__instance(); A.invoke1(t2._onPointerDataPacket, t2._onPointerDataPacketZone, new A.PointerDataPacket(t1), type$.PointerDataPacket); } }; A.PointerSupportDetector.prototype = { toString$0(_) { return "pointers:" + ("PointerEvent" in window) + ", touch:" + ("TouchEvent" in window) + ", mouse:" + ("MouseEvent" in window); } }; A._BaseAdapter.prototype = { addEventListener$3$acceptOutsideGlasspane(_, eventName, handler, acceptOutsideGlasspane) { var t1 = new A._BaseAdapter_addEventListener_loggedHandler(this, acceptOutsideGlasspane, handler); $._BaseAdapter__listeners.$indexSet(0, eventName, t1); B.Window_methods.addEventListener$3(window, eventName, t1, true); }, addEventListener$2($receiver, eventName, handler) { return this.addEventListener$3$acceptOutsideGlasspane($receiver, eventName, handler, false); } }; A._BaseAdapter_addEventListener_loggedHandler.prototype = { call$1($event) { var t1; if (!this.acceptOutsideGlasspane && !this.$this.glassPaneElement.contains(type$.nullable_Node._as(J.get$target$x($event)))) return null; t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) this.handler.call$1($event); }, $signature: 203 }; A._WheelEventListenerMixin.prototype = { _addWheelEventListener$1(handler) { var eventOptions = A.createPlainJsObject(A.LinkedHashMap_LinkedHashMap$_literal(["passive", false], type$.String, type$.nullable_Object)), jsHandler = A.allowInterop(new A._WheelEventListenerMixin__addWheelEventListener_closure(handler)); $._BaseAdapter__nativeListeners.$indexSet(0, "wheel", jsHandler); A.callMethod(this.glassPaneElement, "addEventListener", ["wheel", jsHandler, eventOptions]); }, _handleWheelEvent$1(e) { var deltaX, deltaY, t1, probe, t2, fontSize, res, data, t3, t4, t5, t6; type$.WheelEvent._as(e); deltaX = (e && B.WheelEvent_methods).get$deltaX(e); deltaY = B.WheelEvent_methods.get$deltaY(e); switch (B.WheelEvent_methods.get$deltaMode(e)) { case 1: t1 = $._WheelEventListenerMixin__defaultScrollLineHeight; if (t1 == null) { t1 = document; probe = t1.createElement("div"); t2 = probe.style; t2.fontSize = "initial"; t2.display = "none"; t1.body.appendChild(probe); fontSize = B.DivElement_methods.getComputedStyle$0(probe).fontSize; if (B.JSString_methods.contains$1(fontSize, "px")) res = A.Primitives_parseDouble(A.stringReplaceAllUnchecked(fontSize, "px", "")); else res = null; B.DivElement_methods.remove$0(probe); t1 = $._WheelEventListenerMixin__defaultScrollLineHeight = res == null ? 16 : res / 4; } deltaX *= t1; deltaY *= t1; break; case 2: t1 = $.$get$window(); deltaX *= t1.get$physicalSize()._dx; deltaY *= t1.get$physicalSize()._dy; break; case 0: default: break; } data = A._setArrayType([], type$.JSArray_PointerData); t1 = e.timeStamp; t1.toString; t1 = A._BaseAdapter__eventTimeStampToDuration(t1); t2 = e.clientX; e.clientY; t2.toString; t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); e.clientX; t5 = e.clientY; t5.toString; t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t6 = e.buttons; t6.toString; this._pointerDataConverter.convert$14$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$timeStamp(data, t6, B.PointerChange_3, -1, B.PointerDeviceKind_1, t2 * t4, t5 * t3, 1, 1, 0, deltaX, deltaY, B.PointerSignalKind_1, t1); this.__engine$_callback.call$1(data); if (e.getModifierState("Control")) { t1 = $.$get$_operatingSystem(); if (t1 !== B.OperatingSystem_4) t1 = t1 !== B.OperatingSystem_0; else t1 = false; } else t1 = false; if (t1) return; e.preventDefault(); } }; A._WheelEventListenerMixin__addWheelEventListener_closure.prototype = { call$1($event) { return this.handler.call$1($event); }, $signature: 203 }; A._SanitizedDetails.prototype = { toString$0(_) { return A.getRuntimeType(this).toString$0(0) + "(change: " + this.change.toString$0(0) + ", buttons: " + this.buttons + ")"; } }; A._ButtonSanitizer.prototype = { sanitizeDownEvent$2$button$buttons(button, buttons) { var t1; if (this._pressedButtons !== 0) return this.sanitizeMoveEvent$1$buttons(buttons); t1 = (buttons === 0 && button > -1 ? A.convertButtonToButtons(button) : buttons) & 1073741823; this._pressedButtons = t1; return new A._SanitizedDetails(B.PointerChange_4, t1); }, sanitizeMoveEvent$1$buttons(buttons) { var newPressedButtons = buttons & 1073741823, t1 = this._pressedButtons; if (t1 === 0 && newPressedButtons !== 0) return new A._SanitizedDetails(B.PointerChange_3, t1); this._pressedButtons = newPressedButtons; return new A._SanitizedDetails(newPressedButtons === 0 ? B.PointerChange_3 : B.PointerChange_5, newPressedButtons); }, sanitizeMissingRightClickUp$1$buttons(buttons) { if (this._pressedButtons !== 0 && (buttons & 1073741823) === 0) { this._pressedButtons = 0; return new A._SanitizedDetails(B.PointerChange_6, 0); } return null; }, sanitizeUpEvent$1$buttons(buttons) { var t1; if (this._pressedButtons === 0) return null; t1 = this._pressedButtons = (buttons == null ? 0 : buttons) & 1073741823; if (t1 === 0) return new A._SanitizedDetails(B.PointerChange_6, t1); else return new A._SanitizedDetails(B.PointerChange_5, t1); } }; A._PointerAdapter.prototype = { _ensureSanitizer$1(device) { return this._sanitizers.putIfAbsent$2(0, device, new A._PointerAdapter__ensureSanitizer_closure()); }, _removePointerIfUnhoverable$1($event) { if ($event.pointerType === "touch") this._sanitizers.remove$1(0, $event.pointerId); }, _addPointerEventListener$3$acceptOutsideGlasspane(eventName, handler, acceptOutsideGlasspane) { this.addEventListener$3$acceptOutsideGlasspane(0, eventName, new A._PointerAdapter__addPointerEventListener_closure(handler), acceptOutsideGlasspane); }, _addPointerEventListener$2(eventName, handler) { return this._addPointerEventListener$3$acceptOutsideGlasspane(eventName, handler, false); }, setup$0() { var _this = this; _this._addPointerEventListener$2("pointerdown", new A._PointerAdapter_setup_closure(_this)); _this._addPointerEventListener$3$acceptOutsideGlasspane("pointermove", new A._PointerAdapter_setup_closure0(_this), true); _this._addPointerEventListener$3$acceptOutsideGlasspane("pointerup", new A._PointerAdapter_setup_closure1(_this), true); _this._addPointerEventListener$2("pointercancel", new A._PointerAdapter_setup_closure2(_this)); _this._addWheelEventListener$1(new A._PointerAdapter_setup_closure3(_this)); }, _convertEventsToPointerData$3$data$details$event(data, details, $event) { var kind, t2, timeStamp, pressure, t3, t4, t5, t6, t7, t1 = $event.pointerType; t1.toString; kind = this._pointerTypeToDeviceKind$1(t1); t1 = $event.tiltX; t1.toString; t2 = $event.tiltY; t2.toString; if (!(Math.abs(t1) > Math.abs(t2))) t1 = t2; t2 = $event.timeStamp; t2.toString; timeStamp = A._BaseAdapter__eventTimeStampToDuration(t2); pressure = $event.pressure; t2 = this._getPointerId$1($event); t3 = $event.clientX; $event.clientY; t3.toString; t4 = $.$get$window(); t5 = t4._debugDevicePixelRatio; if (t5 == null) t5 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); $event.clientX; t6 = $event.clientY; t6.toString; t4 = t4._debugDevicePixelRatio; if (t4 == null) t4 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t7 = pressure == null ? 0 : pressure; this._pointerDataConverter.convert$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$tilt$timeStamp(data, details.buttons, details.change, t2, kind, t3 * t5, t6 * t4, t7, 1, 0, B.PointerSignalKind_0, t1 / 180 * 3.141592653589793, timeStamp); }, _expandEvents$1($event) { var coalescedEvents; if ("getCoalescedEvents" in $event) { coalescedEvents = J.cast$1$0$ax($event.getCoalescedEvents(), type$.PointerEvent); if (coalescedEvents.get$isNotEmpty(coalescedEvents)) return coalescedEvents; } return A._setArrayType([$event], type$.JSArray_PointerEvent); }, _pointerTypeToDeviceKind$1(pointerType) { switch (pointerType) { case "mouse": return B.PointerDeviceKind_1; case "pen": return B.PointerDeviceKind_2; case "touch": return B.PointerDeviceKind_0; default: return B.PointerDeviceKind_5; } }, _getPointerId$1($event) { var t1 = $event.pointerType; t1.toString; if (this._pointerTypeToDeviceKind$1(t1) === B.PointerDeviceKind_1) t1 = -1; else { t1 = $event.pointerId; t1.toString; } return t1; } }; A._PointerAdapter__ensureSanitizer_closure.prototype = { call$0() { return new A._ButtonSanitizer(); }, $signature: 1056 }; A._PointerAdapter__addPointerEventListener_closure.prototype = { call$1($event) { return this.handler.call$1(type$.PointerEvent._as($event)); }, $signature: 203 }; A._PointerAdapter_setup_closure.prototype = { call$1($event) { var up, t3, t1 = this.$this, device = t1._getPointerId$1($event), pointerData = A._setArrayType([], type$.JSArray_PointerData), sanitizer = t1._ensureSanitizer$1(device), t2 = $event.buttons; t2.toString; up = sanitizer.sanitizeMissingRightClickUp$1$buttons(t2); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t2 = $event.button; t3 = $event.buttons; t3.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizer.sanitizeDownEvent$2$button$buttons(t2, t3), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 314 }; A._PointerAdapter_setup_closure0.prototype = { call$1($event) { var t2, t3, t4, up, t1 = this.$this, sanitizer = t1._ensureSanitizer$1(t1._getPointerId$1($event)), pointerData = A._setArrayType([], type$.JSArray_PointerData); for (t2 = J.get$iterator$ax(t1._expandEvents$1($event)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t3.buttons; t4.toString; up = sanitizer.sanitizeMissingRightClickUp$1$buttons(t4); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, t3); t4 = t3.buttons; t4.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizer.sanitizeMoveEvent$1$buttons(t4), t3); } t1.__engine$_callback.call$1(pointerData); }, $signature: 314 }; A._PointerAdapter_setup_closure1.prototype = { call$1($event) { var details, t1 = this.$this, device = t1._getPointerId$1($event), pointerData = A._setArrayType([], type$.JSArray_PointerData), t2 = t1._sanitizers.$index(0, device); t2.toString; details = t2.sanitizeUpEvent$1$buttons($event.buttons); t1._removePointerIfUnhoverable$1($event); if (details != null) { t1._convertEventsToPointerData$3$data$details$event(pointerData, details, $event); t1.__engine$_callback.call$1(pointerData); } }, $signature: 314 }; A._PointerAdapter_setup_closure2.prototype = { call$1($event) { var t1 = this.$this, device = t1._getPointerId$1($event), pointerData = A._setArrayType([], type$.JSArray_PointerData), t2 = t1._sanitizers.$index(0, device); t2.toString; t2._pressedButtons = 0; t1._removePointerIfUnhoverable$1($event); t1._convertEventsToPointerData$3$data$details$event(pointerData, new A._SanitizedDetails(B.PointerChange_0, 0), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 314 }; A._PointerAdapter_setup_closure3.prototype = { call$1($event) { this.$this._handleWheelEvent$1($event); }, $signature: 80 }; A._TouchAdapter.prototype = { _addTouchEventListener$2(eventName, handler) { this.addEventListener$2(0, eventName, new A._TouchAdapter__addTouchEventListener_closure(handler)); }, setup$0() { var _this = this; _this._addTouchEventListener$2("touchstart", new A._TouchAdapter_setup_closure(_this)); _this._addTouchEventListener$2("touchmove", new A._TouchAdapter_setup_closure0(_this)); _this._addTouchEventListener$2("touchend", new A._TouchAdapter_setup_closure1(_this)); _this._addTouchEventListener$2("touchcancel", new A._TouchAdapter_setup_closure2(_this)); }, _convertEventToPointerData$5$change$data$pressed$timeStamp$touch(change, data, pressed, timeStamp, touch) { var t2, t3, t4, t5, t6, t1 = touch.identifier; t1.toString; t2 = B.JSNumber_methods.round$0(touch.clientX); B.JSNumber_methods.round$0(touch.clientY); t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); B.JSNumber_methods.round$0(touch.clientX); t5 = B.JSNumber_methods.round$0(touch.clientY); t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); t6 = pressed ? 1 : 0; this._pointerDataConverter.convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp(data, t6, change, t1, B.PointerDeviceKind_0, t2 * t4, t5 * t3, 1, 1, 0, B.PointerSignalKind_0, timeStamp); } }; A._TouchAdapter__addTouchEventListener_closure.prototype = { call$1($event) { return this.handler.call$1(type$.TouchEvent._as($event)); }, $signature: 203 }; A._TouchAdapter_setup_closure.prototype = { call$1($event) { var timeStamp, pointerData, t2, t3, t4, _i, touch, t5, t1 = $event.timeStamp; t1.toString; timeStamp = A._BaseAdapter__eventTimeStampToDuration(t1); pointerData = A._setArrayType([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (!t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.add$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(B.PointerChange_4, pointerData, true, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 339 }; A._TouchAdapter_setup_closure0.prototype = { call$1($event) { var t1, timeStamp, pointerData, t2, t3, t4, _i, touch, t5; $event.preventDefault(); t1 = $event.timeStamp; t1.toString; timeStamp = A._BaseAdapter__eventTimeStampToDuration(t1); pointerData = A._setArrayType([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(B.PointerChange_5, pointerData, true, timeStamp, touch); } t3.__engine$_callback.call$1(pointerData); }, $signature: 339 }; A._TouchAdapter_setup_closure1.prototype = { call$1($event) { var t1, timeStamp, pointerData, t2, t3, t4, _i, touch, t5; $event.preventDefault(); t1 = $event.timeStamp; t1.toString; timeStamp = A._BaseAdapter__eventTimeStampToDuration(t1); pointerData = A._setArrayType([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.remove$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(B.PointerChange_6, pointerData, false, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 339 }; A._TouchAdapter_setup_closure2.prototype = { call$1($event) { var timeStamp, pointerData, t2, t3, t4, _i, touch, t5, t1 = $event.timeStamp; t1.toString; timeStamp = A._BaseAdapter__eventTimeStampToDuration(t1); pointerData = A._setArrayType([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.remove$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(B.PointerChange_0, pointerData, false, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 339 }; A._MouseAdapter.prototype = { _addMouseEventListener$3$acceptOutsideGlasspane(eventName, handler, acceptOutsideGlasspane) { this.addEventListener$3$acceptOutsideGlasspane(0, eventName, new A._MouseAdapter__addMouseEventListener_closure(handler), acceptOutsideGlasspane); }, _addMouseEventListener$2(eventName, handler) { return this._addMouseEventListener$3$acceptOutsideGlasspane(eventName, handler, false); }, setup$0() { var _this = this; _this._addMouseEventListener$2("mousedown", new A._MouseAdapter_setup_closure(_this)); _this._addMouseEventListener$3$acceptOutsideGlasspane("mousemove", new A._MouseAdapter_setup_closure0(_this), true); _this._addMouseEventListener$3$acceptOutsideGlasspane("mouseup", new A._MouseAdapter_setup_closure1(_this), true); _this._addWheelEventListener$1(new A._MouseAdapter_setup_closure2(_this)); }, _convertEventsToPointerData$3$data$details$event(data, details, $event) { var t2, t3, t4, t5, t1 = $event.timeStamp; t1.toString; t1 = A._BaseAdapter__eventTimeStampToDuration(t1); t2 = $event.clientX; $event.clientY; t2.toString; t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); $event.clientX; t5 = $event.clientY; t5.toString; t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = A.EnginePlatformDispatcher_browserDevicePixelRatio(); this._pointerDataConverter.convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp(data, details.buttons, details.change, -1, B.PointerDeviceKind_1, t2 * t4, t5 * t3, 1, 1, 0, B.PointerSignalKind_0, t1); } }; A._MouseAdapter__addMouseEventListener_closure.prototype = { call$1($event) { return this.handler.call$1(type$.MouseEvent._as($event)); }, $signature: 203 }; A._MouseAdapter_setup_closure.prototype = { call$1($event) { var up, t4, pointerData = A._setArrayType([], type$.JSArray_PointerData), t1 = this.$this, t2 = t1._sanitizer, t3 = $event.buttons; t3.toString; up = t2.sanitizeMissingRightClickUp$1$buttons(t3); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t3 = $event.button; t4 = $event.buttons; t4.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeDownEvent$2$button$buttons(t3, t4), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 457 }; A._MouseAdapter_setup_closure0.prototype = { call$1($event) { var up, pointerData = A._setArrayType([], type$.JSArray_PointerData), t1 = this.$this, t2 = t1._sanitizer, t3 = $event.buttons; t3.toString; up = t2.sanitizeMissingRightClickUp$1$buttons(t3); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t3 = $event.buttons; t3.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeMoveEvent$1$buttons(t3), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 457 }; A._MouseAdapter_setup_closure1.prototype = { call$1($event) { var pointerData = A._setArrayType([], type$.JSArray_PointerData), t1 = this.$this, sanitizedDetails = t1._sanitizer.sanitizeUpEvent$1$buttons($event.buttons); if (sanitizedDetails != null) { t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizedDetails, $event); t1.__engine$_callback.call$1(pointerData); } }, $signature: 457 }; A._MouseAdapter_setup_closure2.prototype = { call$1($event) { this.$this._handleWheelEvent$1($event); }, $signature: 80 }; A._PointerState.prototype = {}; A.PointerDataConverter.prototype = { _ensureStateForPointer$3(device, x, y) { return this._pointers.putIfAbsent$2(0, device, new A.PointerDataConverter__ensureStateForPointer_closure(x, y)); }, _generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalX, physicalY, platformData, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, tilt, timeStamp) { var t2, t3, t1 = this._pointers.$index(0, device); t1.toString; t2 = t1.x; t3 = t1.y; t1.x = physicalX; t1.y = physicalY; t1 = t1._pointer; if (t1 == null) t1 = 0; return A.PointerData$(buttons, change, device, distance, distanceMax, kind, false, orientation, physicalX - t2, physicalY - t3, physicalX, physicalY, platformData, t1, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, false, tilt, timeStamp); }, _locationHasChanged$3(device, physicalX, physicalY) { var t1 = this._pointers.$index(0, device); t1.toString; return t1.x !== physicalX || t1.y !== physicalY; }, _synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalX, physicalY, platformData, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, size, tilt, timeStamp) { var t2, t3, t1 = this._pointers.$index(0, device); t1.toString; t2 = t1.x; t3 = t1.y; t1.x = physicalX; t1.y = physicalY; t1 = t1._pointer; if (t1 == null) t1 = 0; return A.PointerData$(buttons, change, device, distance, distanceMax, kind, false, orientation, physicalX - t2, physicalY - t3, physicalX, physicalY, platformData, t1, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, B.PointerSignalKind_0, size, true, tilt, timeStamp); }, convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, tilt, timeStamp) { var alreadyAdded, state, t1, t2, _this = this, _s80_ = string$.x60null_c; if (signalKind === B.PointerSignalKind_0) switch (change.index) { case 1: _this._ensureStateForPointer$3(device, physicalX, physicalY); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); break; case 3: alreadyAdded = _this._pointers.containsKey$1(0, device); _this._ensureStateForPointer$3(device, physicalX, physicalY); if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, B.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case 4: alreadyAdded = _this._pointers.containsKey$1(0, device); state = _this._ensureStateForPointer$3(device, physicalX, physicalY); state.toString; state._pointer = $._PointerState__pointerCount = $._PointerState__pointerCount + 1; if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, B.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); if (_this._locationHasChanged$3(device, physicalX, physicalY)) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(0, B.PointerChange_3, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, 0, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case 5: result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case 6: case 0: t1 = _this._pointers; t2 = t1.$index(0, device); t2.toString; if (change === B.PointerChange_0) { physicalX = t2.x; physicalY = t2.y; } if (_this._locationHasChanged$3(device, physicalX, physicalY)) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(_this._activeButtons, B.PointerChange_5, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); if (kind === B.PointerDeviceKind_0) { result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(0, B.PointerChange_2, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, 0, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); t1.remove$1(0, device); } break; case 2: t1 = _this._pointers; t2 = t1.$index(0, device); t2.toString; result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, t2.x, t2.y, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); t1.remove$1(0, device); break; case 7: case 8: case 9: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else switch (signalKind.index) { case 1: alreadyAdded = _this._pointers.containsKey$1(0, device); _this._ensureStateForPointer$3(device, physicalX, physicalY); if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, B.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); if (_this._locationHasChanged$3(device, physicalX, physicalY)) if (buttons !== 0) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, B.PointerChange_5, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); else result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, B.PointerChange_3, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); break; case 0: break; case 2: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, convert$14$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, 0, timeStamp); }, convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, signalKind, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, 0, 0, signalKind, 0, timeStamp); }, convert$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, signalKind, tilt, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, 0, 0, signalKind, tilt, timeStamp); } }; A.PointerDataConverter__ensureStateForPointer_closure.prototype = { call$0() { return new A._PointerState(this.x, this.y); }, $signature: 1145 }; A.Profiler.prototype = {}; A.JsPromise.prototype = {}; A.ImageDecoder.prototype = {}; A.ImageDecoderOptions.prototype = {}; A.DecodeResult.prototype = {}; A.DecodeOptions.prototype = {}; A.VideoFrame.prototype = {}; A.ImageTrackList.prototype = {}; A.ImageTrack.prototype = {}; A.GlProgram.prototype = {}; A.GlContext.prototype = { drawImage$3(_, context, left, $top) { var t1 = this.__engine$_canvas, t2 = this._widthInPixels, t3 = this._heightInPixels; A.callMethod(context, "drawImage", [t1, 0, 0, t2, t3, left, $top, t2, t3]); }, compileShader$2(_, shaderType, source) { var t2, t1 = this.glContext, shader = t1.createShader(t1[shaderType]); if (shader == null) throw A.wrapException(A.Exception_Exception(A._callMethodUnchecked0(t1, "getError"))); A.callMethod(t1, "shaderSource", [shader, source]); A.callMethod(t1, "compileShader", [shader]); t2 = this._kCompileStatus; if (!A.callMethod(t1, "getShaderParameter", [shader, t2 == null ? this._kCompileStatus = t1.COMPILE_STATUS : t2])) throw A.wrapException(A.Exception_Exception("Shader compilation failed: " + A.S(A.callMethod(t1, "getShaderInfoLog", [shader])))); return shader; }, dispose$0(_) { var loseContextExtension = this.glContext.getExtension("WEBGL_lose_context"); if (loseContextExtension != null) loseContextExtension.loseContext(); }, get$kArrayBuffer() { var t1 = this._kArrayBuffer; return t1 == null ? this._kArrayBuffer = this.glContext.ARRAY_BUFFER : t1; }, get$kElementArrayBuffer() { var t1 = this._kElementArrayBuffer; return t1 == null ? this._kElementArrayBuffer = this.glContext.ELEMENT_ARRAY_BUFFER : t1; }, get$kStaticDraw() { var t1 = this._kStaticDraw; return t1 == null ? this._kStaticDraw = this.glContext.STATIC_DRAW : t1; }, getUniformLocation$2(_, program, uniformName) { var res = A.callMethod(this.glContext, "getUniformLocation", [program, uniformName]); if (res == null) throw A.wrapException(A.Exception_Exception(uniformName + " not found")); else return res; }, readPatternData$1(isOpaque) { var canvas, _this = this, t1 = "transferToImageBitmap" in _this.__engine$_canvas && isOpaque; if (t1) { _this.__engine$_canvas.getContext("webgl2"); return _this.__engine$_canvas.transferToImageBitmap(); } else { t1 = _this._widthInPixels; canvas = A.CanvasElement_CanvasElement(_this._heightInPixels, t1); _this.drawImage$3(0, canvas.getContext("2d"), 0, 0); return canvas; } } }; A.OffScreenCanvas.prototype = { dispose$0(_) { this.canvasElement = this.offScreenCanvas = null; } }; A.AccessibilityAnnouncements.prototype = { AccessibilityAnnouncements$_$0() { $._hotRestartListeners.push(new A.AccessibilityAnnouncements$__closure(this)); }, get$_domElement() { var liveRegion, t1 = this.__engine$_element; if (t1 == null) { liveRegion = document.createElement("label"); liveRegion.setAttribute("id", "accessibility-element"); t1 = liveRegion.style; t1.position = "fixed"; t1.overflow = "hidden"; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(-99999px, -99999px)", ""); t1.width = "1px"; t1.height = "1px"; this.__engine$_element = liveRegion; t1 = liveRegion; } return t1; }, handleMessage$2(codec, data) { var _this = this, t1 = type$.Map_dynamic_dynamic, message = A._asStringQ(J.$index$asx(t1._as(J.$index$asx(t1._as(codec.decodeMessage$1(data)), "data")), "message")); if (message != null && message.length !== 0) { _this.get$_domElement().setAttribute("aria-live", "polite"); _this.get$_domElement().textContent = message; t1 = document.body; t1.toString; t1.appendChild(_this.get$_domElement()); _this._removeElementTimer = A.Timer_Timer(B.Duration_5000000, new A.AccessibilityAnnouncements_handleMessage_closure(_this)); } } }; A.AccessibilityAnnouncements$__closure.prototype = { call$0() { var t1 = this.$this._removeElementTimer; if (t1 != null) t1.cancel$0(0); }, $signature: 0 }; A.AccessibilityAnnouncements_handleMessage_closure.prototype = { call$0() { var t1 = this.$this.__engine$_element; t1.toString; B.LabelElement_methods.remove$0(t1); }, $signature: 0 }; A._CheckableKind.prototype = { toString$0(_) { return "_CheckableKind." + this._core$_name; } }; A.Checkable.prototype = { update$0(_) { var element, t2, _s4_ = "true", t1 = this.semanticsObject; if ((t1._dirtyFields & 1) !== 0) { switch (this.__engine$_kind.index) { case 0: t1.setAriaRole$2("checkbox", true); break; case 1: t1.setAriaRole$2("radio", true); break; case 2: t1.setAriaRole$2("switch", true); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (t1.enabledState$0() === B.EnabledState_2) { element = t1.element; element.setAttribute("aria-disabled", _s4_); element.setAttribute("disabled", _s4_); } else this._removeDisabledAttribute$0(); t2 = t1.__engine$_flags; t2 = (t2 & 2) !== 0 || (t2 & 131072) !== 0 ? _s4_ : "false"; t1.element.setAttribute("aria-checked", t2); } }, dispose$0(_) { var _this = this; switch (_this.__engine$_kind.index) { case 0: _this.semanticsObject.setAriaRole$2("checkbox", false); break; case 1: _this.semanticsObject.setAriaRole$2("radio", false); break; case 2: _this.semanticsObject.setAriaRole$2("switch", false); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._removeDisabledAttribute$0(); }, _removeDisabledAttribute$0() { var element = this.semanticsObject.element; element.removeAttribute("aria-disabled"); element.removeAttribute("disabled"); } }; A.ImageRoleManager.prototype = { update$0(_) { var t2, t3, t4, _this = this, t1 = _this.semanticsObject; if (t1.get$isVisualOnly()) { t2 = t1.__engine$_childrenInTraversalOrder; t2 = t2 != null && !B.NativeInt32List_methods.get$isEmpty(t2); } else t2 = false; if (t2) { if (_this._auxiliaryImageElement == null) { _this._auxiliaryImageElement = A._ElementFactoryProvider_createElement_tag("flt-semantics-img", null); t2 = t1.__engine$_childrenInTraversalOrder; if (t2 != null && !B.NativeInt32List_methods.get$isEmpty(t2)) { t2 = _this._auxiliaryImageElement.style; t2.position = "absolute"; t2.top = "0"; t2.left = "0"; t3 = t1.__engine$_rect; t4 = t3.right; t3 = t3.left; t2.width = A.S(t4 - t3) + "px"; t3 = t1.__engine$_rect; t4 = t3.bottom; t3 = t3.top; t2.height = A.S(t4 - t3) + "px"; } t2 = _this._auxiliaryImageElement.style; t2.fontSize = "6px"; t2 = _this._auxiliaryImageElement; t2.toString; t1.element.appendChild(t2); } _this._auxiliaryImageElement.setAttribute("role", "img"); _this._setLabel$1(_this._auxiliaryImageElement); } else if (t1.get$isVisualOnly()) { t1.setAriaRole$2("img", true); _this._setLabel$1(t1.element); _this._cleanUpAuxiliaryElement$0(); } else { _this._cleanUpAuxiliaryElement$0(); _this._cleanupElement$0(); } }, _setLabel$1(element) { var t1 = this.semanticsObject.__engine$_label; if (t1 != null && t1.length !== 0) { element.toString; t1.toString; element.setAttribute("aria-label", t1); } }, _cleanUpAuxiliaryElement$0() { var t1 = this._auxiliaryImageElement; if (t1 != null) { J.remove$0$ax(t1); this._auxiliaryImageElement = null; } }, _cleanupElement$0() { var t1 = this.semanticsObject; t1.setAriaRole$2("img", false); t1.element.removeAttribute("aria-label"); }, dispose$0(_) { this._cleanUpAuxiliaryElement$0(); this._cleanupElement$0(); } }; A.Incrementable.prototype = { Incrementable$1(semanticsObject) { var _this = this, t1 = _this.__engine$_element; semanticsObject.element.appendChild(t1); t1.type = "range"; t1.setAttribute("role", "slider"); B.InputElement_methods.addEventListener$2(t1, "change", new A.Incrementable_closure(_this, semanticsObject)); t1 = new A.Incrementable_closure0(_this); _this._gestureModeListener = t1; semanticsObject.owner._gestureModeListeners.push(t1); }, update$0(_) { var _this = this; switch (_this.semanticsObject.owner._gestureMode.index) { case 1: _this._enableBrowserGestureHandling$0(); _this._updateInputValues$0(); break; case 0: _this._disableBrowserGestureHandling$0(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _enableBrowserGestureHandling$0() { var t1 = this.__engine$_element, t2 = t1.disabled; t2.toString; if (!t2) return; t1.disabled = false; }, _updateInputValues$0() { var t1, updateNeeded, surrogateTextValue, t2, t3, surrogateMaxTextValue, surrogateMinTextValue, _this = this; if (!_this._pendingResync) { t1 = _this.semanticsObject._dirtyFields; updateNeeded = (t1 & 4096) !== 0 || (t1 & 8192) !== 0 || (t1 & 16384) !== 0; } else updateNeeded = true; if (!updateNeeded) return; _this._pendingResync = false; surrogateTextValue = "" + _this._currentSurrogateValue; t1 = _this.__engine$_element; t1.value = surrogateTextValue; t1.setAttribute("aria-valuenow", surrogateTextValue); t2 = _this.semanticsObject; t3 = t2.__engine$_value; t3.toString; t1.setAttribute("aria-valuetext", t3); surrogateMaxTextValue = t2._increasedValue.length !== 0 ? "" + (_this._currentSurrogateValue + 1) : surrogateTextValue; t1.max = surrogateMaxTextValue; t1.setAttribute("aria-valuemax", surrogateMaxTextValue); surrogateMinTextValue = t2._decreasedValue.length !== 0 ? "" + (_this._currentSurrogateValue - 1) : surrogateTextValue; t1.min = surrogateMinTextValue; t1.setAttribute("aria-valuemin", surrogateMinTextValue); }, _disableBrowserGestureHandling$0() { var t1 = this.__engine$_element, t2 = t1.disabled; t2.toString; if (t2) return; t1.disabled = true; }, dispose$0(_) { var t1, _this = this; B.JSArray_methods.remove$1(_this.semanticsObject.owner._gestureModeListeners, _this._gestureModeListener); _this._gestureModeListener = null; _this._disableBrowserGestureHandling$0(); t1 = _this.__engine$_element; (t1 && B.InputElement_methods).remove$0(t1); } }; A.Incrementable_closure.prototype = { call$1(_) { var newInputValue, t1 = this.$this, t2 = t1.__engine$_element, t3 = t2.disabled; t3.toString; if (t3) return; t1._pendingResync = true; t2 = t2.value; t2.toString; newInputValue = A.int_parse(t2, null); t2 = t1._currentSurrogateValue; if (newInputValue > t2) { t1._currentSurrogateValue = t2 + 1; t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, this.semanticsObject.id, B.SemanticsAction_64, null); } else if (newInputValue < t2) { t1._currentSurrogateValue = t2 - 1; t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, this.semanticsObject.id, B.SemanticsAction_128, null); } }, $signature: 80 }; A.Incrementable_closure0.prototype = { call$1(mode) { this.$this.update$0(0); }, $signature: 680 }; A.LabelAndValue.prototype = { update$0(_) { var t4, shouldDisplayValue, t5, t6, _this = this, t1 = _this.semanticsObject, t2 = t1.__engine$_value, hasValue = t2 != null && t2.length !== 0, t3 = t1.__engine$_label, hasLabel = t3 != null && t3.length !== 0; if (hasValue) { t4 = t1.__engine$_actions; t4.toString; shouldDisplayValue = !((t4 & 64) !== 0 || (t4 & 128) !== 0); } else shouldDisplayValue = false; if (!hasLabel && !shouldDisplayValue && true) { _this._cleanUpDom$0(); return; } if (hasLabel) { t3 = A.S(t3); if (shouldDisplayValue) t3 += " "; } else t3 = ""; t2 = shouldDisplayValue ? t3 + A.S(t2) : t3; t3 = t1.element; t2 = t2.charCodeAt(0) == 0 ? t2 : t2; t3.setAttribute("aria-label", t2); if ((t1.__engine$_flags & 512) !== 0) t1.setAriaRole$2("heading", true); if (_this._auxiliaryValueElement == null) { _this._auxiliaryValueElement = A._ElementFactoryProvider_createElement_tag("flt-semantics-value", null); t4 = t1.__engine$_childrenInTraversalOrder; if (t4 != null && !B.NativeInt32List_methods.get$isEmpty(t4)) { t4 = _this._auxiliaryValueElement.style; t4.position = "absolute"; t4.top = "0"; t4.left = "0"; t5 = t1.__engine$_rect; t6 = t5.right; t5 = t5.left; t4.width = A.S(t6 - t5) + "px"; t1 = t1.__engine$_rect; t5 = t1.bottom; t1 = t1.top; t4.height = A.S(t5 - t1) + "px"; } t1 = _this._auxiliaryValueElement.style; t4 = $._configuration; if (t4 == null) t4 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t4 = t4.get$debugShowSemanticsNodes(t4) ? "12px" : "6px"; t1.fontSize = t4; t1 = _this._auxiliaryValueElement; t1.toString; t3.appendChild(t1); } _this._auxiliaryValueElement.textContent = t2; }, _cleanUpDom$0() { var t1 = this._auxiliaryValueElement; if (t1 != null) { J.remove$0$ax(t1); this._auxiliaryValueElement = null; } t1 = this.semanticsObject; t1.element.removeAttribute("aria-label"); t1.setAriaRole$2("heading", false); }, dispose$0(_) { this._cleanUpDom$0(); } }; A.LiveRegion.prototype = { update$0(_) { var t1 = this.semanticsObject, t2 = t1.__engine$_label; t2 = t2 != null && t2.length !== 0; t1 = t1.element; if (t2) t1.setAttribute("aria-live", "polite"); else t1.removeAttribute("aria-live"); }, dispose$0(_) { this.semanticsObject.element.removeAttribute("aria-live"); } }; A.Scrollable0.prototype = { _recomputeScrollPosition$0() { var t1, t2, t3, semanticsId, _this = this, _null = null; if (_this.get$_domScrollPosition() !== _this._effectiveNeutralScrollPosition) { t1 = _this.semanticsObject; if (!t1.owner.shouldAcceptBrowserGesture$1("scroll")) return; t2 = _this.get$_domScrollPosition(); t3 = _this._effectiveNeutralScrollPosition; _this._neutralizeDomScrollPosition$0(); t1.recomputePositionAndSize$0(); semanticsId = t1.id; if (t2 > t3) { t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, B.SemanticsAction_16, _null); } else { t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, B.SemanticsAction_4, _null); } } else { t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, B.SemanticsAction_32, _null); } else { t1 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, B.SemanticsAction_8, _null); } } } }, update$0(_) { var t1, t2, t3, _this = this; if (_this._scrollListener == null) { t1 = _this.semanticsObject; t2 = t1.element; t3 = t2.style; t3.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t3, B.CssStyleDeclaration_methods._browserPropertyName$1(t3, "touch-action"), "none", ""); _this._gestureModeDidChange$0(); t1 = t1.owner; t1._oneTimePostUpdateCallbacks.push(new A.Scrollable_update_closure(_this)); t3 = new A.Scrollable_update_closure0(_this); _this._gestureModeListener = t3; t1._gestureModeListeners.push(t3); t3 = new A.Scrollable_update_closure1(_this); _this._scrollListener = t3; J.addEventListener$2$x(t2, "scroll", t3); } }, get$_domScrollPosition() { var t1 = this.semanticsObject, t2 = t1.__engine$_actions; t2.toString; t2 = (t2 & 32) !== 0 || (t2 & 16) !== 0; t1 = t1.element; if (t2) return B.JSNumber_methods.round$0(t1.scrollTop); else return B.JSNumber_methods.round$0(t1.scrollLeft); }, _neutralizeDomScrollPosition$0() { var t1 = this.semanticsObject, element = t1.element, t2 = t1.__engine$_actions; t2.toString; if ((t2 & 32) !== 0 || (t2 & 16) !== 0) { element.scrollTop = 10; t1.verticalContainerAdjustment = this._effectiveNeutralScrollPosition = B.JSNumber_methods.round$0(element.scrollTop); t1.horizontalContainerAdjustment = 0; } else { element.scrollLeft = 10; t2 = B.JSNumber_methods.round$0(element.scrollLeft); this._effectiveNeutralScrollPosition = t2; t1.verticalContainerAdjustment = 0; t1.horizontalContainerAdjustment = t2; } }, _gestureModeDidChange$0() { var _s10_ = "overflow-y", _s10_0 = "overflow-x", t1 = this.semanticsObject, element = t1.element; switch (t1.owner._gestureMode.index) { case 1: t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "scroll", ""); } else { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_0), "scroll", ""); } break; case 0: t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "hidden", ""); } else { t1 = element.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_0), "hidden", ""); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, dispose$0(_) { var t3, _this = this, t1 = _this.semanticsObject, t2 = t1.element, style = t2.style; style.removeProperty("overflowY"); style.removeProperty("overflowX"); style.removeProperty("touch-action"); t3 = _this._scrollListener; if (t3 != null) J.removeEventListener$2$x(t2, "scroll", t3); B.JSArray_methods.remove$1(t1.owner._gestureModeListeners, _this._gestureModeListener); _this._gestureModeListener = null; } }; A.Scrollable_update_closure.prototype = { call$0() { this.$this._neutralizeDomScrollPosition$0(); }, $signature: 0 }; A.Scrollable_update_closure0.prototype = { call$1(_) { this.$this._gestureModeDidChange$0(); }, $signature: 680 }; A.Scrollable_update_closure1.prototype = { call$1(_) { this.$this._recomputeScrollPosition$0(); }, $signature: 80 }; A.SemanticsUpdate.prototype = { dispose$0(_) { } }; A.SemanticsNodeUpdate.prototype = { get$id(receiver) { return this.id; }, get$value(receiver) { return this.value; } }; A.Role.prototype = { toString$0(_) { return "Role." + this._core$_name; } }; A._roleFactories_closure.prototype = { call$1(object) { return A.Incrementable$(object); }, $signature: 1152 }; A._roleFactories_closure0.prototype = { call$1(object) { return new A.Scrollable0(object); }, $signature: 1165 }; A._roleFactories_closure1.prototype = { call$1(object) { return new A.LabelAndValue(object); }, $signature: 1192 }; A._roleFactories_closure2.prototype = { call$1(object) { return new A.Tappable(object); }, $signature: 1210 }; A._roleFactories_closure3.prototype = { call$1(object) { var t3, t4, t5, _s15_ = "editableElement", t1 = new A.TextField0(object), t2 = (object.__engine$_flags & 524288) !== 0 ? document.createElement("textarea") : A.InputElement_InputElement(null); A._lateWriteOnceCheck($, _s15_); t1.__TextField_editableElement = t2; t3 = A._lateReadCheck(t2, _s15_); t3.spellcheck = false; t3.setAttribute("autocorrect", "off"); t3.setAttribute("autocomplete", "off"); t3.setAttribute("data-semantics-role", "text-field"); t3 = A._lateReadCheck(t2, _s15_).style; t3.position = "absolute"; t3.top = "0"; t3.left = "0"; t4 = object.__engine$_rect; t5 = t4.right; t4 = t4.left; t3.width = A.S(t5 - t4) + "px"; t4 = object.__engine$_rect; t5 = t4.bottom; t4 = t4.top; t3.height = A.S(t5 - t4) + "px"; object.element.appendChild(A._lateReadCheck(t2, _s15_)); t2 = $.$get$_browserEngine(); switch (t2) { case B.BrowserEngine_0: case B.BrowserEngine_5: case B.BrowserEngine_3: case B.BrowserEngine_4: case B.BrowserEngine_2: case B.BrowserEngine_6: t1._initializeForBlink$0(); break; case B.BrowserEngine_1: t1._initializeForWebkit$0(); break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } return t1; }, $signature: 1663 }; A._roleFactories_closure4.prototype = { call$1(object) { return new A.Checkable(A._checkableKindFromSemanticsFlag(object), object); }, $signature: 1726 }; A._roleFactories_closure5.prototype = { call$1(object) { return new A.ImageRoleManager(object); }, $signature: 1888 }; A._roleFactories_closure6.prototype = { call$1(object) { return new A.LiveRegion(object); }, $signature: 2011 }; A.RoleManager.prototype = {}; A.SemanticsObject.prototype = { SemanticsObject$2(id, owner) { var t1 = this.element, t2 = t1.style; t2.position = "absolute"; if (this.id === 0) { t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); t2 = !t2.get$debugShowSemanticsNodes(t2); } else t2 = false; if (t2) { t2 = t1.style; t2.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t2, B.CssStyleDeclaration_methods._browserPropertyName$1(t2, "filter"), "opacity(0%)", ""); t2 = t1.style; t2.color = "rgba(0,0,0,0)"; } t2 = $._configuration; if (t2 == null) t2 = $._configuration = new A.FlutterConfiguration(self.window.flutterConfiguration); if (t2.get$debugShowSemanticsNodes(t2)) { t1 = t1.style; t1.outline = "1px solid green"; } }, get$value(_) { return this.__engine$_value; }, getOrCreateChildContainer$0() { var t1, _this = this; if (_this._childContainerElement == null) { t1 = A._ElementFactoryProvider_createElement_tag("flt-semantics-container", null); _this._childContainerElement = t1; t1 = t1.style; t1.position = "absolute"; t1 = _this._childContainerElement; t1.toString; _this.element.appendChild(t1); } return _this._childContainerElement; }, get$isVisualOnly() { var t2, t1 = this.__engine$_flags; if ((t1 & 16384) !== 0) { t2 = this.__engine$_actions; t2.toString; t1 = (t2 & 1) === 0 && (t1 & 8) === 0; } else t1 = false; return t1; }, enabledState$0() { var t1 = this.__engine$_flags; if ((t1 & 64) !== 0) if ((t1 & 128) !== 0) return B.EnabledState_1; else return B.EnabledState_2; else return B.EnabledState_0; }, setAriaRole$2(ariaRoleName, condition) { var t1; if (condition) this.element.setAttribute("role", ariaRoleName); else { t1 = this.element; if (t1.getAttribute("role") === ariaRoleName) t1.removeAttribute("role"); } }, _updateRole$2(role, enabled) { var t1 = this._roleManagers, manager = t1.$index(0, role); if (enabled) { if (manager == null) { manager = $.$get$_roleFactories().$index(0, role).call$1(this); t1.$indexSet(0, role, manager); } manager.update$0(0); } else if (manager != null) { manager.dispose$0(0); t1.remove$1(0, role); } }, recomputePositionAndSize$0() { var containerElement, hasZeroRectOffset, transform, hasIdentityTransform, effectiveTransform, left, $top, effectiveTransformIsIdentity, t5, _this = this, t1 = _this.element, t2 = t1.style, t3 = _this.__engine$_rect, t4 = t3.right; t3 = t3.left; t2.width = A.S(t4 - t3) + "px"; t3 = _this.__engine$_rect; t4 = t3.bottom; t3 = t3.top; t2.height = A.S(t4 - t3) + "px"; t2 = _this.__engine$_childrenInTraversalOrder; containerElement = t2 != null && !B.NativeInt32List_methods.get$isEmpty(t2) ? _this.getOrCreateChildContainer$0() : null; t2 = _this.__engine$_rect; hasZeroRectOffset = t2.top === 0 && t2.left === 0; transform = _this.__engine$_transform; t2 = transform == null; hasIdentityTransform = t2 || A.transformKindOf(transform) === B.TransformKind_0; if (hasZeroRectOffset && hasIdentityTransform && _this.verticalContainerAdjustment === 0 && _this.horizontalContainerAdjustment === 0) { A.SemanticsObject__clearSemanticElementTransform(t1); if (containerElement != null) A.SemanticsObject__clearSemanticElementTransform(containerElement); return; } effectiveTransform = A._Cell$named("effectiveTransform"); if (!hasZeroRectOffset) if (t2) { t2 = _this.__engine$_rect; left = t2.left; $top = t2.top; t2 = A.Matrix4$identity(); t2.setTranslationRaw$3(left, $top, 0); effectiveTransform.__late_helper$_value = t2; effectiveTransformIsIdentity = left === 0 && $top === 0; } else { t2 = new A.Matrix40(new Float32Array(16)); t2.setFrom$1(new A.Matrix40(transform)); t3 = _this.__engine$_rect; t2.translate$3(0, t3.left, t3.top, 0); effectiveTransform.__late_helper$_value = t2; effectiveTransformIsIdentity = J.isIdentity$0$z(effectiveTransform._readLocal$0()); } else if (!hasIdentityTransform) { effectiveTransform.__late_helper$_value = new A.Matrix40(transform); effectiveTransformIsIdentity = false; } else effectiveTransformIsIdentity = true; if (!effectiveTransformIsIdentity) { t1 = t1.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); t2 = A.float64ListToCssTransform(effectiveTransform._readLocal$0().__engine$_m4storage); B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); } else A.SemanticsObject__clearSemanticElementTransform(t1); if (containerElement != null) if (!hasZeroRectOffset || _this.verticalContainerAdjustment !== 0 || _this.horizontalContainerAdjustment !== 0) { t1 = _this.__engine$_rect; t2 = t1.left; t3 = _this.horizontalContainerAdjustment; t1 = t1.top; t4 = _this.verticalContainerAdjustment; t5 = containerElement.style; t5.top = A.S(-t1 + t4) + "px"; t5.left = A.S(-t2 + t3) + "px"; } else A.SemanticsObject__clearSemanticElementTransform(containerElement); }, _updateChildrenInTraversalOrder$0() { var t2, len, i, object, containerElement, t3, t4, t5, t6, _i, id, intersectionIndicesNew, intersectionIndicesOld, minLength, newIndex, oldIndex, longestSequence, stationaryIds, refNode, childId, _this = this, _s13_ = "flt-semantics", t1 = _this.__engine$_childrenInTraversalOrder; if (t1 == null || t1.length === 0) { t2 = _this._previousChildrenInTraversalOrder; if (t2 == null || t2.length === 0) { _this._previousChildrenInTraversalOrder = t1; return; } len = t2.length; for (t1 = _this.owner, t2 = t1._semanticsTree, i = 0; i < len; ++i) { object = t2.$index(0, _this._previousChildrenInTraversalOrder[i]); t1._detachments.push(object); } _this._previousChildrenInTraversalOrder = null; t1 = _this._childContainerElement; t1.toString; J.remove$0$ax(t1); _this._childContainerElement = null; _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; return; } containerElement = _this.getOrCreateChildContainer$0(); t1 = _this._previousChildrenInTraversalOrder; if (t1 == null || t1.length === 0) { t1 = _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; for (t2 = t1.length, t3 = _this.owner, t4 = t3._semanticsTree, t5 = type$.Role, t6 = type$.nullable_RoleManager, _i = 0; _i < t2; ++_i) { id = t1[_i]; object = t4.$index(0, id); if (object == null) { object = new A.SemanticsObject(id, t3, A._ElementFactoryProvider_createElement_tag(_s13_, null), A.LinkedHashMap_LinkedHashMap$_empty(t5, t6)); object.SemanticsObject$2(id, t3); t4.$indexSet(0, id, object); } containerElement.appendChild(object.element); object.__engine$_parent = _this; t3._attachments.$indexSet(0, object.id, _this); } _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; return; } t1 = type$.JSArray_int; intersectionIndicesNew = A._setArrayType([], t1); intersectionIndicesOld = A._setArrayType([], t1); minLength = Math.min(_this._previousChildrenInTraversalOrder.length, _this.__engine$_childrenInTraversalOrder.length); newIndex = 0; while (true) { if (!(newIndex < minLength && _this._previousChildrenInTraversalOrder[newIndex] === _this.__engine$_childrenInTraversalOrder[newIndex])) break; intersectionIndicesNew.push(newIndex); intersectionIndicesOld.push(newIndex); ++newIndex; } t2 = _this._previousChildrenInTraversalOrder.length; t3 = _this.__engine$_childrenInTraversalOrder.length; if (t2 === t3 && newIndex === t3) return; for (; t2 = _this.__engine$_childrenInTraversalOrder, newIndex < t2.length;) { for (t3 = _this._previousChildrenInTraversalOrder, t4 = t3.length, oldIndex = 0; oldIndex < t4; ++oldIndex) if (t3[oldIndex] === t2[newIndex]) { intersectionIndicesNew.push(newIndex); intersectionIndicesOld.push(oldIndex); break; } ++newIndex; } longestSequence = A.longestIncreasingSubsequence(intersectionIndicesOld); stationaryIds = A._setArrayType([], t1); for (t1 = longestSequence.length, i = 0; i < t1; ++i) stationaryIds.push(_this._previousChildrenInTraversalOrder[intersectionIndicesOld[longestSequence[i]]]); for (t1 = _this.owner, t2 = t1._semanticsTree, i = 0; i < _this._previousChildrenInTraversalOrder.length; ++i) if (!B.JSArray_methods.contains$1(intersectionIndicesOld, i)) { object = t2.$index(0, _this._previousChildrenInTraversalOrder[i]); t1._detachments.push(object); } for (i = _this.__engine$_childrenInTraversalOrder.length - 1, t3 = type$.Role, t4 = type$.nullable_RoleManager, refNode = null; i >= 0; --i) { childId = _this.__engine$_childrenInTraversalOrder[i]; object = t2.$index(0, childId); if (object == null) { object = new A.SemanticsObject(childId, t1, A._ElementFactoryProvider_createElement_tag(_s13_, null), A.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); object.SemanticsObject$2(childId, t1); t2.$indexSet(0, childId, object); } if (!B.JSArray_methods.contains$1(stationaryIds, childId)) { t5 = object.element; if (refNode == null) containerElement.appendChild(t5); else containerElement.insertBefore(t5, refNode); object.__engine$_parent = _this; t1._attachments.$indexSet(0, object.id, _this); } refNode = object.element; } _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; }, get$id(receiver) { return this.id; } }; A.AccessibilityMode.prototype = { toString$0(_) { return "AccessibilityMode." + this._core$_name; } }; A.GestureMode.prototype = { toString$0(_) { return "GestureMode." + this._core$_name; } }; A.EngineSemanticsOwner.prototype = { EngineSemanticsOwner$_$0() { $._hotRestartListeners.push(new A.EngineSemanticsOwner$__closure(this)); }, _finalizeTree$0() { var t1, t2, t3, _i, object, t4, t5, _this = this; for (t1 = _this._detachments, t2 = t1.length, t3 = _this._semanticsTree, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { object = t1[_i]; t4 = _this._attachments; t5 = object.id; if (t4.$index(0, t5) == null) { t3.remove$1(0, t5); object.__engine$_parent = null; t4 = object.element; t5 = t4.parentNode; if (t5 != null) t5.removeChild(t4); } } _this._detachments = A._setArrayType([], type$.JSArray_nullable_SemanticsObject); _this._attachments = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_int, type$.SemanticsObject); t1 = _this._oneTimePostUpdateCallbacks; t2 = t1.length; if (t2 !== 0) { for (_i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].call$0(); _this._oneTimePostUpdateCallbacks = A._setArrayType([], type$.JSArray_of_void_Function); } }, set$semanticsEnabled(value) { var t1, t2, t3; if (this._semanticsEnabled) return; this._semanticsEnabled = true; t1 = $.$get$EnginePlatformDispatcher__instance(); t2 = this._semanticsEnabled; t3 = t1._configuration; if (t2 !== t3.semanticsEnabled) { t1._configuration = t3.copyWith$1$semanticsEnabled(t2); t2 = t1._onSemanticsEnabledChanged; if (t2 != null) A.invoke(t2, t1._onSemanticsEnabledChangedZone); } }, _getGestureModeClock$0() { var _this = this, t1 = _this._gestureModeClock; if (t1 == null) { t1 = _this._gestureModeClock = new A.AlarmClock(_this._now); t1.callback = new A.EngineSemanticsOwner__getGestureModeClock_closure(_this); } return t1; }, receiveGlobalEvent$1($event) { var t1, _this = this; if (B.JSArray_methods.contains$1(B.List_Cg9, $event.type)) { t1 = _this._getGestureModeClock$0(); t1.toString; t1.set$datetime(J.add$1$ax(_this._now.call$0(), B.Duration_500000)); if (_this._gestureMode !== B.GestureMode_0) { _this._gestureMode = B.GestureMode_0; _this._notifyGestureModeListeners$0(); } } return _this.semanticsHelper._semanticsEnabler.shouldEnableSemantics$1($event); }, _notifyGestureModeListeners$0() { var t1, i; for (t1 = this._gestureModeListeners, i = 0; i < t1.length; ++i) t1[i].call$1(this._gestureMode); }, shouldAcceptBrowserGesture$1(eventType) { if (B.JSArray_methods.contains$1(B.List_click_scroll, eventType)) return this._gestureMode === B.GestureMode_1; return false; }, updateSemantics$1(uiUpdate) { var t1, t2, t3, t4, t5, _i, nodeUpdate, t6, object, t7, t8, _this = this; if (!_this._semanticsEnabled) { _this.semanticsHelper._semanticsEnabler.dispose$0(0); _this.set$semanticsEnabled(true); } for (t1 = uiUpdate.__engine$_nodeUpdates, t2 = t1.length, t3 = _this._semanticsTree, t4 = type$.Role, t5 = type$.nullable_RoleManager, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { nodeUpdate = t1[_i]; t6 = nodeUpdate.id; object = t3.$index(0, t6); if (object == null) { object = new A.SemanticsObject(t6, _this, A._ElementFactoryProvider_createElement_tag("flt-semantics", null), A.LinkedHashMap_LinkedHashMap$_empty(t4, t5)); object.SemanticsObject$2(t6, _this); t3.$indexSet(0, t6, object); } t6 = nodeUpdate.flags; if (object.__engine$_flags !== t6) { object.__engine$_flags = t6; object._dirtyFields = (object._dirtyFields | 1) >>> 0; } t6 = nodeUpdate.value; if (object.__engine$_value != t6) { object.__engine$_value = t6; object._dirtyFields = (object._dirtyFields | 4096) >>> 0; } t6 = nodeUpdate.valueAttributes; if (object._valueAttributes !== t6) { object._valueAttributes = t6; object._dirtyFields = (object._dirtyFields | 4096) >>> 0; } t6 = nodeUpdate.label; if (object.__engine$_label != t6) { object.__engine$_label = t6; object._dirtyFields = (object._dirtyFields | 1024) >>> 0; } t6 = nodeUpdate.labelAttributes; if (object._labelAttributes !== t6) { object._labelAttributes = t6; object._dirtyFields = (object._dirtyFields | 1024) >>> 0; } t6 = nodeUpdate.rect; if (!J.$eq$(object.__engine$_rect, t6)) { object.__engine$_rect = t6; object._dirtyFields = (object._dirtyFields | 512) >>> 0; } t6 = nodeUpdate.transform; if (object.__engine$_transform !== t6) { object.__engine$_transform = t6; object._dirtyFields = (object._dirtyFields | 65536) >>> 0; } t6 = nodeUpdate.scrollPosition; if (object.__engine$_scrollPosition !== t6) { object.__engine$_scrollPosition = t6; object._dirtyFields = (object._dirtyFields | 64) >>> 0; } t6 = object.__engine$_actions; t7 = nodeUpdate.actions; if (t6 !== t7) { object.__engine$_actions = t7; object._dirtyFields = (object._dirtyFields | 2) >>> 0; t6 = t7; } t7 = nodeUpdate.textSelectionBase; if (object._textSelectionBase != t7) { object._textSelectionBase = t7; object._dirtyFields = (object._dirtyFields | 4) >>> 0; } t7 = nodeUpdate.textSelectionExtent; if (object._textSelectionExtent != t7) { object._textSelectionExtent = t7; object._dirtyFields = (object._dirtyFields | 8) >>> 0; } t7 = nodeUpdate.scrollChildren; if (object._scrollChildren !== t7) { object._scrollChildren = t7; object._dirtyFields = (object._dirtyFields | 16) >>> 0; } t7 = nodeUpdate.scrollIndex; if (object.__engine$_scrollIndex !== t7) { object.__engine$_scrollIndex = t7; object._dirtyFields = (object._dirtyFields | 32) >>> 0; } t7 = nodeUpdate.scrollExtentMax; if (object.__engine$_scrollExtentMax !== t7) { object.__engine$_scrollExtentMax = t7; object._dirtyFields = (object._dirtyFields | 128) >>> 0; } t7 = nodeUpdate.scrollExtentMin; if (object.__engine$_scrollExtentMin !== t7) { object.__engine$_scrollExtentMin = t7; object._dirtyFields = (object._dirtyFields | 256) >>> 0; } t7 = nodeUpdate.hint; if (object._hint != t7) { object._hint = t7; object._dirtyFields = (object._dirtyFields | 2048) >>> 0; } t7 = nodeUpdate.hintAttributes; if (object._hintAttributes !== t7) { object._hintAttributes = t7; object._dirtyFields = (object._dirtyFields | 2048) >>> 0; } t7 = nodeUpdate.increasedValue; if (object._increasedValue != t7) { object._increasedValue = t7; object._dirtyFields = (object._dirtyFields | 8192) >>> 0; } t7 = nodeUpdate.increasedValueAttributes; if (object._increasedValueAttributes !== t7) { object._increasedValueAttributes = t7; object._dirtyFields = (object._dirtyFields | 8192) >>> 0; } t7 = nodeUpdate.decreasedValue; if (object._decreasedValue != t7) { object._decreasedValue = t7; object._dirtyFields = (object._dirtyFields | 16384) >>> 0; } t7 = nodeUpdate.decreasedValueAttributes; if (object._decreasedValueAttributes !== t7) { object._decreasedValueAttributes = t7; object._dirtyFields = (object._dirtyFields | 16384) >>> 0; } t7 = nodeUpdate.textDirection; if (object.__engine$_textDirection != t7) { object.__engine$_textDirection = t7; object._dirtyFields = (object._dirtyFields | 32768) >>> 0; } t7 = object._childrenInHitTestOrder; t8 = nodeUpdate.childrenInHitTestOrder; if (t7 == null ? t8 != null : t7 !== t8) { object._childrenInHitTestOrder = t8; object._dirtyFields = (object._dirtyFields | 1048576) >>> 0; } t7 = object.__engine$_childrenInTraversalOrder; t8 = nodeUpdate.childrenInTraversalOrder; if (t7 == null ? t8 != null : t7 !== t8) { object.__engine$_childrenInTraversalOrder = t8; object._dirtyFields = (object._dirtyFields | 524288) >>> 0; } t7 = object._additionalActions; t8 = nodeUpdate.additionalActions; if (t7 == null ? t8 != null : t7 !== t8) { object._additionalActions = t8; object._dirtyFields = (object._dirtyFields | 2097152) >>> 0; } t7 = object.__engine$_label; if (!(t7 != null && t7.length !== 0)) { t7 = object.__engine$_value; if (!(t7 != null && t7.length !== 0)) t7 = false; else t7 = true; } else t7 = true; if (t7) { t7 = object.__engine$_flags; if ((t7 & 16) === 0) { if ((t7 & 16384) !== 0) { t6.toString; t6 = (t6 & 1) === 0 && (t7 & 8) === 0; } else t6 = false; t6 = !t6; } else t6 = false; } else t6 = false; object._updateRole$2(B.Role_2, t6); object._updateRole$2(B.Role_4, (object.__engine$_flags & 16) !== 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(B.Role_3, ((t6 & 1) !== 0 || (object.__engine$_flags & 8) !== 0) && (object.__engine$_flags & 16) === 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(B.Role_0, (t6 & 64) !== 0 || (t6 & 128) !== 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(B.Role_1, (t6 & 32) !== 0 || (t6 & 16) !== 0 || (t6 & 4) !== 0 || (t6 & 8) !== 0); t6 = object.__engine$_flags; object._updateRole$2(B.Role_5, (t6 & 1) !== 0 || (t6 & 65536) !== 0); t6 = object.__engine$_flags; if ((t6 & 16384) !== 0) { t7 = object.__engine$_actions; t7.toString; t6 = (t7 & 1) === 0 && (t6 & 8) === 0; } else t6 = false; object._updateRole$2(B.Role_6, t6); t6 = object.__engine$_flags; object._updateRole$2(B.Role_7, (t6 & 32768) !== 0 && (t6 & 8192) === 0); object._updateChildrenInTraversalOrder$0(); t6 = object._dirtyFields; if ((t6 & 512) !== 0 || (t6 & 65536) !== 0 || (t6 & 64) !== 0) object.recomputePositionAndSize$0(); object._dirtyFields = 0; } if (_this._rootSemanticsElement == null) { t1 = t3.$index(0, 0).element; _this._rootSemanticsElement = t1; $._flutterViewEmbedder._semanticsHostElement.appendChild(t1); } _this._finalizeTree$0(); } }; A.EngineSemanticsOwner$__closure.prototype = { call$0() { var t1 = this.$this._rootSemanticsElement; if (t1 != null) J.remove$0$ax(t1); }, $signature: 0 }; A.EngineSemanticsOwner__now_closure.prototype = { call$0() { return new A.DateTime(Date.now(), false); }, $signature: 319 }; A.EngineSemanticsOwner__getGestureModeClock_closure.prototype = { call$0() { var t1 = this.$this; if (t1._gestureMode === B.GestureMode_1) return; t1._gestureMode = B.GestureMode_1; t1._notifyGestureModeListeners$0(); }, $signature: 0 }; A.EnabledState.prototype = { toString$0(_) { return "EnabledState." + this._core$_name; } }; A.SemanticsHelper.prototype = { dispose$0(_) { this._semanticsEnabler.dispose$0(0); } }; A.SemanticsEnabler.prototype = { shouldEnableSemantics$1($event) { if (!this.get$isWaitingToEnableSemantics()) return true; else return this.tryEnableSemantics$1($event); } }; A.DesktopSemanticsEnabler.prototype = { get$isWaitingToEnableSemantics() { return this._semanticsPlaceholder != null; }, tryEnableSemantics$1($event) { var t1, t2; if (this._semanticsPlaceholder == null) return true; t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1)._semanticsEnabled) return true; if (!J.containsKey$1$x(B.Set_Yabt3._collection$_map, $event.type)) return true; t1 = J.get$target$x($event); t2 = this._semanticsPlaceholder; if (t1 == null ? t2 != null : t1 !== t2) return true; t1 = $.EngineSemanticsOwner__instance; (t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).set$semanticsEnabled(true); this.dispose$0(0); return false; }, prepareAccessibilityPlaceholder$0() { var t2, t1 = this._semanticsPlaceholder = A._ElementFactoryProvider_createElement_tag("flt-semantics-placeholder", null); J.addEventListener$3$x(t1, "click", new A.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure(this), true); t1.setAttribute("role", "button"); t1.setAttribute("aria-live", "polite"); t1.setAttribute("tabindex", "0"); t1.setAttribute("aria-label", "Enable accessibility"); t2 = t1.style; t2.position = "absolute"; t2.left = "-1px"; t2.top = "-1px"; t2.width = "1px"; t2.height = "1px"; return t1; }, dispose$0(_) { var t1 = this._semanticsPlaceholder; if (t1 != null) J.remove$0$ax(t1); this._semanticsPlaceholder = null; } }; A.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure.prototype = { call$1($event) { this.$this.tryEnableSemantics$1($event); }, $signature: 80 }; A.MobileSemanticsEnabler.prototype = { get$isWaitingToEnableSemantics() { return this._semanticsPlaceholder != null; }, tryEnableSemantics$1($event) { var t1, removeNow, activationPoint, activatingElementRect, t2, t3, t4, t5, deltaX, deltaY, _this = this; if (_this._semanticsPlaceholder == null) return true; if (_this._schedulePlaceholderRemoval) { t1 = $.$get$_browserEngine(); if (t1 === B.BrowserEngine_1) { t1 = $event.type; removeNow = t1 === "touchend" || t1 === "pointerup" || t1 === "click"; } else removeNow = true; if (removeNow) _this.dispose$0(0); return true; } t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1)._semanticsEnabled) return true; if (++_this.semanticsActivationAttempts >= 20) return _this._schedulePlaceholderRemoval = true; if (!J.containsKey$1$x(B.Set_2No4._collection$_map, $event.type)) return true; if (_this.semanticsActivationTimer != null) return false; switch ($event.type) { case "click": activationPoint = J.get$offset$x(type$.MouseEvent._as($event)); break; case "touchstart": case "touchend": t1 = type$.TouchEvent._as($event).changedTouches; t1.toString; t1 = B.TouchList_methods.get$first(t1); activationPoint = new A.Point(B.JSNumber_methods.round$0(t1.clientX), B.JSNumber_methods.round$0(t1.clientY), type$.Point_num); break; case "pointerdown": case "pointerup": type$.PointerEvent._as($event); activationPoint = new A.Point($event.clientX, $event.clientY, type$.Point_num); break; default: return true; } activatingElementRect = _this._semanticsPlaceholder.getBoundingClientRect(); t1 = activatingElementRect.left; t1.toString; t2 = activatingElementRect.right; t2.toString; t3 = activatingElementRect.top; t3.toString; t4 = activatingElementRect.bottom; t4.toString; t5 = activationPoint.x; t5.toString; deltaX = t5 - (t1 + (t2 - t1) / 2); t1 = activationPoint.y; t1.toString; deltaY = t1 - (t3 + (t4 - t3) / 2); if (deltaX * deltaX + deltaY * deltaY < 1 && true) { _this._schedulePlaceholderRemoval = true; _this.semanticsActivationTimer = A.Timer_Timer(B.Duration_300000, new A.MobileSemanticsEnabler_tryEnableSemantics_closure(_this)); return false; } return true; }, prepareAccessibilityPlaceholder$0() { var t2, t1 = this._semanticsPlaceholder = A._ElementFactoryProvider_createElement_tag("flt-semantics-placeholder", null); J.addEventListener$3$x(t1, "click", new A.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure(this), true); t1.setAttribute("role", "button"); t1.setAttribute("aria-label", "Enable accessibility"); t2 = t1.style; t2.position = "absolute"; t2.left = "0"; t2.top = "0"; t2.right = "0"; t2.bottom = "0"; return t1; }, dispose$0(_) { var t1 = this._semanticsPlaceholder; if (t1 != null) J.remove$0$ax(t1); this.semanticsActivationTimer = this._semanticsPlaceholder = null; } }; A.MobileSemanticsEnabler_tryEnableSemantics_closure.prototype = { call$0() { this.$this.dispose$0(0); var t1 = $.EngineSemanticsOwner__instance; (t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).set$semanticsEnabled(true); }, $signature: 0 }; A.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure.prototype = { call$1($event) { this.$this.tryEnableSemantics$1($event); }, $signature: 80 }; A.Tappable.prototype = { update$0(_) { var t2, _this = this, t1 = _this.semanticsObject, element = t1.element; element.tabIndex = 0; t1.setAriaRole$2("button", (t1.__engine$_flags & 8) !== 0); if (t1.enabledState$0() === B.EnabledState_2 && (t1.__engine$_flags & 8) !== 0) { element.setAttribute("aria-disabled", "true"); _this._stopListening$0(); } else { t2 = t1.__engine$_actions; t2.toString; if ((t2 & 1) !== 0 && (t1.__engine$_flags & 16) === 0) { if (_this._clickListener == null) { t2 = new A.Tappable_update_closure(_this); _this._clickListener = t2; J.addEventListener$2$x(element, "click", t2); } } else _this._stopListening$0(); } if ((t1._dirtyFields & 1) !== 0 && (t1.__engine$_flags & 32) !== 0) J.focus$0$x(element); }, _stopListening$0() { var t1 = this._clickListener; if (t1 == null) return; J.removeEventListener$2$x(this.semanticsObject.element, "click", t1); this._clickListener = null; }, dispose$0(_) { this._stopListening$0(); this.semanticsObject.setAriaRole$2("button", false); } }; A.Tappable_update_closure.prototype = { call$1(_) { var t2, t1 = this.$this.semanticsObject; if (t1.owner._gestureMode !== B.GestureMode_1) return; t2 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, t1.id, B.SemanticsAction_1, null); }, $signature: 80 }; A.SemanticsTextEditingStrategy.prototype = { enable$3$onAction$onChange(_, inputConfig, onAction, onChange) { this.inputConfig = inputConfig; this.onChange = onChange; this.onAction = onAction; }, activate$1(textField) { var t2, t3, _this = this, t1 = _this.activeTextField; if (t1 === textField) return; else if (t1 != null) _this.disable$0(0); _this.activeTextField = textField; _this.domElement = A._lateReadCheck(textField.__TextField_editableElement, "editableElement"); _this._syncStyle$0(); t1 = _this.inputConfig; t1.toString; t2 = _this.onChange; t2.toString; t3 = _this.onAction; t3.toString; _this.super$DefaultTextEditingStrategy$enable(0, t1, t3, t2); }, disable$0(_) { var t1, i, _this = this; if (!_this.isEnabled) return; _this.isEnabled = false; _this.geometry = _this.style = null; for (t1 = _this.subscriptions, i = 0; i < t1.length; ++i) J.cancel$0$z(t1[i]); B.JSArray_methods.set$length(t1, 0); _this.lastEditingState = null; t1 = _this.domElement; if (t1 != null) t1.blur(); _this._queuedStyle = _this.activeTextField = _this.domElement = null; }, addEventHandlers$0() { var t1, t2, t3, _this = this, _s18_ = "inputConfiguration"; if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup != null) B.JSArray_methods.addAll$1(_this.subscriptions, A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup.addInputEventListeners$0()); t1 = _this.subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$handleChange(); t1.push(A._EventStreamSubscription$(t2, "input", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "keydown", _this.get$maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(A._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); _this.preventDefaultForMouseEvents$0(); }, initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { this.isEnabled = true; this.__DefaultTextEditingStrategy_inputConfiguration = inputConfig; this.applyConfiguration$1(inputConfig); }, placeElement$0() { A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").toString; this.domElement.focus(); }, initializeElementPlacement$0() { }, updateElementPlacement$1(textGeometry) { }, updateElementStyle$1(textStyle) { this._queuedStyle = textStyle; this._syncStyle$0(); }, _syncStyle$0() { var t1 = this._queuedStyle; if (t1 == null || this.domElement == null) return; t1.toString; this.super$DefaultTextEditingStrategy$updateElementStyle(t1); } }; A.TextField0.prototype = { _initializeForBlink$0() { J.addEventListener$2$x(A._lateReadCheck(this.__TextField_editableElement, "editableElement"), "focus", new A.TextField__initializeForBlink_closure(this)); }, _initializeForWebkit$0() { var _this = this, _s15_ = "editableElement", t1 = {}, t2 = $.$get$_operatingSystem(); if (t2 === B.OperatingSystem_4) { _this._initializeForBlink$0(); return; } t1.lastTouchStartOffsetY = t1.lastTouchStartOffsetX = null; J.addEventListener$3$x(A._lateReadCheck(_this.__TextField_editableElement, _s15_), "touchstart", new A.TextField__initializeForWebkit_closure(t1), true); J.addEventListener$3$x(A._lateReadCheck(_this.__TextField_editableElement, _s15_), "touchend", new A.TextField__initializeForWebkit_closure0(t1, _this), true); }, update$0(_) { var t3, t4, editingState, needsDomFocusRequest, _this = this, _s15_ = "editableElement", _s10_ = "aria-label", t1 = _this.semanticsObject, t2 = t1.__engine$_label; t2 = t2 != null && t2.length !== 0; t3 = _this.__TextField_editableElement; if (t2) { t2 = A._lateReadCheck(t3, _s15_); t3 = t1.__engine$_label; t3.toString; t2.setAttribute(_s10_, t3); } else A._lateReadCheck(t3, _s15_).removeAttribute(_s10_); t2 = A._lateReadCheck(_this.__TextField_editableElement, _s15_).style; t3 = t1.__engine$_rect; t4 = t3.right; t3 = t3.left; t2.width = A.S(t4 - t3) + "px"; t3 = t1.__engine$_rect; t4 = t3.bottom; t3 = t3.top; t2.height = A.S(t4 - t3) + "px"; t2 = t1.__engine$_value; editingState = A.EditingState$(t1._textSelectionBase, t1._textSelectionExtent, t2); if ((t1.__engine$_flags & 32) !== 0) { if (!_this._hasFocused) { _this._hasFocused = true; $.SemanticsTextEditingStrategy__instance.activate$1(_this); needsDomFocusRequest = true; } else needsDomFocusRequest = false; t2 = document.activeElement; t3 = A._lateReadCheck(_this.__TextField_editableElement, _s15_); if (t2 == null ? t3 != null : t2 !== t3) needsDomFocusRequest = true; $.SemanticsTextEditingStrategy__instance.setEditingState$1(editingState); } else { if (_this._hasFocused) { t2 = $.SemanticsTextEditingStrategy__instance; if (t2.activeTextField === _this) t2.disable$0(0); t2 = A._lateReadCheck(_this.__TextField_editableElement, _s15_); if (type$.InputElement._is(t2)) t2.value = editingState.text; else if (type$.TextAreaElement._is(t2)) t2.value = editingState.text; else A.throwExpression(A.UnsupportedError$("Unsupported DOM element type")); if (_this._hasFocused) { t2 = document.activeElement; t3 = A._lateReadCheck(_this.__TextField_editableElement, _s15_); t3 = t2 == null ? t3 == null : t2 === t3; t2 = t3; } else t2 = false; if (t2) A._lateReadCheck(_this.__TextField_editableElement, _s15_).blur(); _this._hasFocused = false; } needsDomFocusRequest = false; } if (needsDomFocusRequest) t1.owner._oneTimePostUpdateCallbacks.push(new A.TextField_update_closure(_this)); }, dispose$0(_) { var t1; J.remove$0$ax(A._lateReadCheck(this.__TextField_editableElement, "editableElement")); t1 = $.SemanticsTextEditingStrategy__instance; if (t1.activeTextField === this) t1.disable$0(0); } }; A.TextField__initializeForBlink_closure.prototype = { call$1($event) { var t2, t1 = this.$this.semanticsObject; if (t1.owner._gestureMode !== B.GestureMode_1) return; t2 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, t1.id, B.SemanticsAction_1, null); }, $signature: 80 }; A.TextField__initializeForWebkit_closure.prototype = { call$1($event) { var t1, t2; type$.TouchEvent._as($event); t1 = $event.changedTouches; t1.toString; t1 = B.TouchList_methods.get$last(t1); t2 = B.JSNumber_methods.round$0(t1.clientX); B.JSNumber_methods.round$0(t1.clientY); t1 = this._box_0; t1.lastTouchStartOffsetX = t2; t2 = $event.changedTouches; t2.toString; t2 = B.TouchList_methods.get$last(t2); B.JSNumber_methods.round$0(t2.clientX); t1.lastTouchStartOffsetY = B.JSNumber_methods.round$0(t2.clientY); }, $signature: 80 }; A.TextField__initializeForWebkit_closure0.prototype = { call$1($event) { var t1, t2, offsetX, offsetY; type$.TouchEvent._as($event); t1 = this._box_0; if (t1.lastTouchStartOffsetX != null) { t2 = $event.changedTouches; t2.toString; t2 = B.TouchList_methods.get$last(t2); offsetX = B.JSNumber_methods.round$0(t2.clientX); B.JSNumber_methods.round$0(t2.clientY); t2 = $event.changedTouches; t2.toString; t2 = B.TouchList_methods.get$last(t2); B.JSNumber_methods.round$0(t2.clientX); offsetY = B.JSNumber_methods.round$0(t2.clientY); if (offsetX * offsetX + offsetY * offsetY < 324) { t2 = $.$get$EnginePlatformDispatcher__instance(); A.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, this.$this.semanticsObject.id, B.SemanticsAction_1, null); } } t1.lastTouchStartOffsetY = t1.lastTouchStartOffsetX = null; }, $signature: 80 }; A.TextField_update_closure.prototype = { call$0() { var _s15_ = "editableElement", t1 = document.activeElement, t2 = this.$this, t3 = A._lateReadCheck(t2.__TextField_editableElement, _s15_); if (t1 == null ? t3 != null : t1 !== t3) A._lateReadCheck(t2.__TextField_editableElement, _s15_).focus(); }, $signature: 0 }; A._TypedDataBuffer.prototype = { get$length(_) { return this.__engine$_length; }, $index(_, index) { if (index >= this.__engine$_length) throw A.wrapException(A.IndexError$(index, this, null, null, null)); return this.__engine$_buffer[index]; }, $indexSet(_, index, value) { if (index >= this.__engine$_length) throw A.wrapException(A.IndexError$(index, this, null, null, null)); this.__engine$_buffer[index] = value; }, set$length(_, newLength) { var t2, i, newBuffer, _this = this, t1 = _this.__engine$_length; if (newLength < t1) for (t2 = _this.__engine$_buffer, i = newLength; i < t1; ++i) t2[i] = 0; else { t1 = _this.__engine$_buffer.length; if (newLength > t1) { if (t1 === 0) newBuffer = new Uint8Array(newLength); else newBuffer = _this._createBiggerBuffer$1(newLength); B.NativeUint8List_methods.setRange$3(newBuffer, 0, _this.__engine$_length, _this.__engine$_buffer); _this.__engine$_buffer = newBuffer; } } _this.__engine$_length = newLength; }, __engine$_add$1(_, value) { var _this = this, t1 = _this.__engine$_length; if (t1 === _this.__engine$_buffer.length) _this.__engine$_grow$1(t1); _this.__engine$_buffer[_this.__engine$_length++] = value; }, add$1(_, value) { var _this = this, t1 = _this.__engine$_length; if (t1 === _this.__engine$_buffer.length) _this.__engine$_grow$1(t1); _this.__engine$_buffer[_this.__engine$_length++] = value; }, addAll$3(_, values, start, end) { A.RangeError_checkNotNegative(start, "start"); if (end != null && start > end) throw A.wrapException(A.RangeError$range(end, start, null, "end", null)); this.__engine$_addAll$3(values, start, end); }, addAll$1($receiver, values) { return this.addAll$3($receiver, values, 0, null); }, insertAll$2(_, index, values) { var end, writeIndex, t1, skipCount, value, t2, writeIndex0, _this = this, _null = null; A.RangeError_checkValidIndex(index, _this, "index", _this.__engine$_length + 1); A.RangeError_checkNotNegative(0, "start"); if (index === _this.__engine$_length) { _this.__engine$_addAll$3(values, 0, _null); return; } end = type$.List_dynamic._is(values) ? J.get$length$asx(values) : _null; if (end != null) { _this._insertKnownLength$4(index, values, 0, end); return; } writeIndex = _this.__engine$_length; for (t1 = J.get$iterator$ax(values), skipCount = 0; t1.moveNext$0();) { value = t1.get$current(t1); t2 = _this.__engine$_buffer; if (writeIndex === t2.length) { t2 = _this._createBiggerBuffer$1(_null); B.NativeUint8List_methods.setRange$3(t2, 0, writeIndex, _this.__engine$_buffer); _this.__engine$_buffer = t2; } writeIndex0 = writeIndex + 1; t2[writeIndex] = value; writeIndex = writeIndex0; } A._TypedDataBuffer__reverse(_this.__engine$_buffer, index, _this.__engine$_length); A._TypedDataBuffer__reverse(_this.__engine$_buffer, _this.__engine$_length, writeIndex); A._TypedDataBuffer__reverse(_this.__engine$_buffer, index, writeIndex); _this.__engine$_length = writeIndex; return; }, __engine$_addAll$3(values, start, end) { var t1, i, value, _this = this; if (A._instanceType(_this)._eval$1("List<_TypedDataBuffer.E>")._is(values)) end = end == null ? J.get$length$asx(values) : end; if (end != null) { _this._insertKnownLength$4(_this.__engine$_length, values, start, end); return; } for (t1 = J.get$iterator$ax(values), i = 0; t1.moveNext$0();) { value = t1.get$current(t1); if (i >= start) _this.__engine$_add$1(0, value); ++i; } if (i < start) throw A.wrapException(A.StateError$("Too few elements")); }, _insertKnownLength$4(index, values, start, end) { var valuesLength, newLength, t2, _this = this, t1 = J.getInterceptor$asx(values); if (start > t1.get$length(values) || end > t1.get$length(values)) throw A.wrapException(A.StateError$("Too few elements")); valuesLength = end - start; newLength = _this.__engine$_length + valuesLength; _this._ensureCapacity$1(newLength); t1 = _this.__engine$_buffer; t2 = index + valuesLength; B.NativeUint8List_methods.setRange$4(t1, t2, _this.__engine$_length + valuesLength, t1, index); B.NativeUint8List_methods.setRange$4(_this.__engine$_buffer, index, t2, values, start); _this.__engine$_length = newLength; }, insert$2(_, index, element) { var t1, t2, newBuffer, _this = this; if (index < 0 || index > _this.__engine$_length) throw A.wrapException(A.RangeError$range(index, 0, _this.__engine$_length, null, null)); t1 = _this.__engine$_length; t2 = _this.__engine$_buffer; if (t1 < t2.length) { B.NativeUint8List_methods.setRange$4(t2, index + 1, t1 + 1, t2, index); _this.__engine$_buffer[index] = element; ++_this.__engine$_length; return; } newBuffer = _this._createBiggerBuffer$1(null); B.NativeUint8List_methods.setRange$3(newBuffer, 0, index, _this.__engine$_buffer); B.NativeUint8List_methods.setRange$4(newBuffer, index + 1, _this.__engine$_length + 1, _this.__engine$_buffer, index); newBuffer[index] = element; ++_this.__engine$_length; _this.__engine$_buffer = newBuffer; }, _ensureCapacity$1(requiredCapacity) { var newBuffer, _this = this; if (requiredCapacity <= _this.__engine$_buffer.length) return; newBuffer = _this._createBiggerBuffer$1(requiredCapacity); B.NativeUint8List_methods.setRange$3(newBuffer, 0, _this.__engine$_length, _this.__engine$_buffer); _this.__engine$_buffer = newBuffer; }, _createBiggerBuffer$1(requiredCapacity) { var newLength = this.__engine$_buffer.length * 2; if (requiredCapacity != null && newLength < requiredCapacity) newLength = requiredCapacity; else if (newLength < 8) newLength = 8; if (!A._isInt(newLength)) A.throwExpression(A.ArgumentError$("Invalid length " + A.S(newLength), null)); return new Uint8Array(newLength); }, __engine$_grow$1($length) { var t1 = this._createBiggerBuffer$1(null); B.NativeUint8List_methods.setRange$3(t1, 0, $length, this.__engine$_buffer); this.__engine$_buffer = t1; }, setRange$4(_, start, end, source, skipCount) { var t1 = this.__engine$_length; if (end > t1) throw A.wrapException(A.RangeError$range(end, 0, t1, null, null)); t1 = this.__engine$_buffer; if (A._instanceType(this)._eval$1("_TypedDataBuffer<_TypedDataBuffer.E>")._is(source)) B.NativeUint8List_methods.setRange$4(t1, start, end, source.__engine$_buffer, skipCount); else B.NativeUint8List_methods.setRange$4(t1, start, end, source, skipCount); }, setRange$3($receiver, start, end, source) { return this.setRange$4($receiver, start, end, source, 0); } }; A._IntBuffer.prototype = {}; A.Uint8Buffer.prototype = {}; A.MethodCall.prototype = { toString$0(_) { return A.getRuntimeType(this).toString$0(0) + "(" + this.method + ", " + A.S(this.$arguments) + ")"; } }; A.JSONMessageCodec.prototype = { encodeMessage$1(message) { return A.NativeByteData_NativeByteData$view(B.C_Utf8Encoder.convert$1(B.C_JsonCodec.encode$1(message)).buffer, 0, null); }, decodeMessage$1(message) { if (message == null) return message; return B.C_JsonCodec.decode$1(0, B.Utf8Decoder_false.convert$1(J.asUint8List$0$x(J.get$buffer$x(message)))); } }; A.JSONMethodCodec.prototype = { encodeMethodCall$1($call) { return B.C_JSONMessageCodec.encodeMessage$1(A.LinkedHashMap_LinkedHashMap$_literal(["method", $call.method, "args", $call.$arguments], type$.String, type$.dynamic)); }, decodeMethodCall$1(methodCall) { var t1, method, $arguments, _null = null, decoded = B.C_JSONMessageCodec.decodeMessage$1(methodCall); if (!type$.Map_dynamic_dynamic._is(decoded)) throw A.wrapException(A.FormatException$("Expected method call Map, got " + A.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); method = t1.$index(decoded, "method"); $arguments = t1.$index(decoded, "args"); if (typeof method == "string") return new A.MethodCall(method, $arguments); throw A.wrapException(A.FormatException$("Invalid method call: " + A.S(decoded), _null, _null)); } }; A.StandardMessageCodec.prototype = { encodeMessage$1(message) { var buffer = A.WriteBuffer_WriteBuffer0(); this.writeValue$2(0, buffer, true); return buffer.done$0(); }, decodeMessage$1(message) { var buffer, result; if (message == null) return null; buffer = new A.ReadBuffer0(message); result = this.readValue$1(0, buffer); if (buffer.__engine$_position < message.byteLength) throw A.wrapException(B.FormatException_oCg); return result; }, writeValue$2(_, buffer, value) { var t1, t2, t3, bytes, _this = this; if (value == null) buffer.__engine$_buffer.__engine$_add$1(0, 0); else if (A._isBool(value)) { t1 = value ? 1 : 2; buffer.__engine$_buffer.__engine$_add$1(0, t1); } else if (typeof value == "number") { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 6); buffer.__engine$_alignTo$1(8); buffer.__engine$_eightBytes.setFloat64(0, value, B.C_Endian === $.$get$Endian_host()); t1.addAll$1(0, buffer.__engine$_eightBytesAsList); } else if (A._isInt(value)) { t1 = -2147483648 <= value && value <= 2147483647; t2 = buffer.__engine$_buffer; t3 = buffer.__engine$_eightBytes; if (t1) { t2.__engine$_add$1(0, 3); t3.setInt32(0, value, B.C_Endian === $.$get$Endian_host()); t2.addAll$3(0, buffer.__engine$_eightBytesAsList, 0, 4); } else { t2.__engine$_add$1(0, 4); B.NativeByteData_methods.setInt64$3(t3, 0, value, $.$get$Endian_host()); } } else if (typeof value == "string") { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 7); bytes = B.C_Utf8Encoder.convert$1(value); _this.writeSize$2(buffer, bytes.length); t1.addAll$1(0, bytes); } else if (type$.Uint8List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 8); _this.writeSize$2(buffer, J.get$length$asx(value)); t1.addAll$1(0, value); } else if (type$.Int32List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 9); t2 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t2.get$length(value)); buffer.__engine$_alignTo$1(4); t1.addAll$1(0, J.asUint8List$2$x(t2.get$buffer(value), t2.get$offsetInBytes(value), 4 * t2.get$length(value))); } else if (type$.Int64List._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 10); _this.writeSize$2(buffer, value.get$length(value)); } else if (type$.Float64List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 11); t2 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t2.get$length(value)); buffer.__engine$_alignTo$1(8); t1.addAll$1(0, J.asUint8List$2$x(t2.get$buffer(value), t2.get$offsetInBytes(value), 8 * t2.get$length(value))); } else if (type$.List_dynamic._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 12); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); for (t1 = t1.get$iterator(value); t1.moveNext$0();) _this.writeValue$2(0, buffer, t1.get$current(t1)); } else if (type$.Map_dynamic_dynamic._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 13); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); t1.forEach$1(value, new A.StandardMessageCodec_writeValue_closure0(_this, buffer)); } else throw A.wrapException(A.ArgumentError$value(value, null, null)); }, readValue$1(_, buffer) { if (!(buffer.__engine$_position < buffer.data.byteLength)) throw A.wrapException(B.FormatException_oCg); return this.readValueOfType$2(buffer.getUint8$0(0), buffer); }, readValueOfType$2(type, buffer) { var result, value, $length, t1, list, i, t2, t3, _this = this; switch (type) { case 0: result = null; break; case 1: result = true; break; case 2: result = false; break; case 3: value = buffer.data.getInt32(buffer.__engine$_position, B.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 4; result = value; break; case 4: result = buffer.getInt64$0(0); break; case 5: $length = _this.readSize$1(buffer); result = A.int_parse(B.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)), 16); break; case 6: buffer.__engine$_alignTo$1(8); value = buffer.data.getFloat64(buffer.__engine$_position, B.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 8; result = value; break; case 7: $length = _this.readSize$1(buffer); result = B.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)); break; case 8: result = buffer.getUint8List$1(_this.readSize$1(buffer)); break; case 9: $length = _this.readSize$1(buffer); buffer.__engine$_alignTo$1(4); t1 = buffer.data; list = A.NativeInt32List_NativeInt32List$view(t1.buffer, t1.byteOffset + buffer.__engine$_position, $length); buffer.__engine$_position = buffer.__engine$_position + 4 * $length; result = list; break; case 10: result = buffer.getInt64List$1(_this.readSize$1(buffer)); break; case 11: $length = _this.readSize$1(buffer); buffer.__engine$_alignTo$1(8); t1 = buffer.data; list = A.NativeFloat64List_NativeFloat64List$view(t1.buffer, t1.byteOffset + buffer.__engine$_position, $length); buffer.__engine$_position = buffer.__engine$_position + 8 * $length; result = list; break; case 12: $length = _this.readSize$1(buffer); result = []; for (t1 = buffer.data, i = 0; i < $length; ++i) { t2 = buffer.__engine$_position; if (!(t2 < t1.byteLength)) A.throwExpression(B.FormatException_oCg); buffer.__engine$_position = t2 + 1; result.push(_this.readValueOfType$2(t1.getUint8(t2), buffer)); } break; case 13: $length = _this.readSize$1(buffer); t1 = type$.dynamic; result = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = buffer.data, i = 0; i < $length; ++i) { t2 = buffer.__engine$_position; if (!(t2 < t1.byteLength)) A.throwExpression(B.FormatException_oCg); buffer.__engine$_position = t2 + 1; t2 = _this.readValueOfType$2(t1.getUint8(t2), buffer); t3 = buffer.__engine$_position; if (!(t3 < t1.byteLength)) A.throwExpression(B.FormatException_oCg); buffer.__engine$_position = t3 + 1; result.$indexSet(0, t2, _this.readValueOfType$2(t1.getUint8(t3), buffer)); } break; default: throw A.wrapException(B.FormatException_oCg); } return result; }, writeSize$2(buffer, value) { var t1, t2, t3; if (value < 254) buffer.__engine$_buffer.__engine$_add$1(0, value); else { t1 = buffer.__engine$_buffer; t2 = buffer.__engine$_eightBytes; t3 = buffer.__engine$_eightBytesAsList; if (value <= 65535) { t1.__engine$_add$1(0, 254); t2.setUint16(0, value, B.C_Endian === $.$get$Endian_host()); t1.addAll$3(0, t3, 0, 2); } else { t1.__engine$_add$1(0, 255); t2.setUint32(0, value, B.C_Endian === $.$get$Endian_host()); t1.addAll$3(0, t3, 0, 4); } } }, readSize$1(buffer) { var value = buffer.getUint8$0(0); switch (value) { case 254: value = buffer.data.getUint16(buffer.__engine$_position, B.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 2; return value; case 255: value = buffer.data.getUint32(buffer.__engine$_position, B.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 4; return value; default: return value; } } }; A.StandardMessageCodec_writeValue_closure0.prototype = { call$2(key, value) { var t1 = this.$this, t2 = this.buffer; t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, $signature: 123 }; A.StandardMethodCodec.prototype = { decodeMethodCall$1(methodCall) { var buffer, method, $arguments; methodCall.toString; buffer = new A.ReadBuffer0(methodCall); method = B.C_StandardMessageCodec0.readValue$1(0, buffer); $arguments = B.C_StandardMessageCodec0.readValue$1(0, buffer); if (typeof method == "string" && !(buffer.__engine$_position < methodCall.byteLength)) return new A.MethodCall(method, $arguments); else throw A.wrapException(B.FormatException_Qi2); }, encodeSuccessEnvelope$1(result) { var buffer = A.WriteBuffer_WriteBuffer0(); buffer.__engine$_buffer.__engine$_add$1(0, 0); B.C_StandardMessageCodec0.writeValue$2(0, buffer, result); return buffer.done$0(); }, encodeErrorEnvelope$3$code$details$message(code, details, message) { var buffer = A.WriteBuffer_WriteBuffer0(); buffer.__engine$_buffer.__engine$_add$1(0, 1); B.C_StandardMessageCodec0.writeValue$2(0, buffer, code); B.C_StandardMessageCodec0.writeValue$2(0, buffer, message); B.C_StandardMessageCodec0.writeValue$2(0, buffer, details); return buffer.done$0(); } }; A.WriteBuffer0.prototype = { __engine$_alignTo$1(alignment) { var t2, i, t1 = this.__engine$_buffer, mod = B.JSInt_methods.$mod(t1.__engine$_length, alignment); if (mod !== 0) for (t2 = alignment - mod, i = 0; i < t2; ++i) t1.__engine$_add$1(0, 0); }, done$0() { var t1, t2; this._debugFinalized = true; t1 = this.__engine$_buffer; t2 = t1.__engine$_buffer; return A.NativeByteData_NativeByteData$view(t2.buffer, 0, t1.__engine$_length * t2.BYTES_PER_ELEMENT); } }; A.ReadBuffer0.prototype = { getUint8$0(_) { return this.data.getUint8(this.__engine$_position++); }, getInt64$0(_) { var t1 = this.data; (t1 && B.NativeByteData_methods).getInt64$2(t1, this.__engine$_position, $.$get$Endian_host()); }, getUint8List$1($length) { var _this = this, t1 = _this.data, list = A.NativeUint8List_NativeUint8List$view(t1.buffer, t1.byteOffset + _this.__engine$_position, $length); _this.__engine$_position = _this.__engine$_position + $length; return list; }, getInt64List$1($length) { var t1; this.__engine$_alignTo$1(8); t1 = this.data; B.NativeByteBuffer_methods.asInt64List$2(t1.buffer, t1.byteOffset + this.__engine$_position, $length); }, __engine$_alignTo$1(alignment) { var t1 = this.__engine$_position, mod = B.JSInt_methods.$mod(t1, alignment); if (mod !== 0) this.__engine$_position = t1 + (alignment - mod); } }; A.SurfaceShadowData.prototype = {}; A.CanvasParagraph.prototype = { get$width(_) { return this.get$_layoutService().width; }, get$height(_) { return this.get$_layoutService().height; }, get$longestLine() { var t1 = this.get$_layoutService().longestLine; t1 = t1 == null ? null : t1.width; return t1 == null ? 0 : t1; }, get$minIntrinsicWidth() { return this.get$_layoutService().minIntrinsicWidth; }, get$maxIntrinsicWidth() { return this.get$_layoutService().maxIntrinsicWidth; }, get$alphabeticBaseline(_) { return this.get$_layoutService().alphabeticBaseline; }, get$ideographicBaseline(_) { return this.get$_layoutService().ideographicBaseline; }, get$didExceedMaxLines(_) { this.get$_layoutService(); return false; }, get$_layoutService() { var t1, t2, _this = this, value = _this.__CanvasParagraph__layoutService; if (value === $) { t1 = A.CanvasElement_CanvasElement(null, null).getContext("2d"); t2 = A._setArrayType([], type$.JSArray_EngineLineMetrics); A._lateInitializeOnceCheck(_this.__CanvasParagraph__layoutService, "_layoutService"); value = _this.__CanvasParagraph__layoutService = new A.TextLayoutService(_this, t1, t2); } return value; }, layout$1(_, constraints) { var _this = this, t1 = constraints.width; t1.toString; constraints = new A.ParagraphConstraints(Math.floor(t1)); if (constraints.$eq(0, _this._lastUsedConstraints)) return; A._Cell$named("stopwatch"); _this.get$_layoutService().performLayout$1(constraints); _this.isLaidOut = true; _this._lastUsedConstraints = constraints; _this._cachedDomElement = null; }, toDomElement$0() { var t1, domElement = this._cachedDomElement; if (domElement == null) { t1 = this._createDomElement$0(); this._cachedDomElement = t1; return t1; } return type$.HtmlElement._as(domElement.cloneNode(true)); }, _createDomElement$0() { var cssStyle, lines, lastSpanElement, i, line, boxes, buffer, j, j0, box, t4, t5, t6, t7, color, strokeWidth, adaptedWidth, ratio, background, fontSize, updateDecoration, shadows, value, t8, textDecoration, decorationColor, fontFeatures, t9, t10, ellipsis, _null = null, _s8_ = "absolute", t1 = document, t2 = t1.createElement("flt-paragraph"), t3 = type$.HtmlElement; t3._as(t2); cssStyle = t2.style; cssStyle.position = _s8_; cssStyle.whiteSpace = "pre"; lines = this.get$_layoutService().lines; for (lastSpanElement = _null, i = 0; i < lines.length; ++i) { line = lines[i]; boxes = line.boxes; buffer = new A.StringBuffer(""); for (j = 0; j < boxes.length; j = j0) { j0 = j + 1; box = boxes[j]; if (box instanceof A.SpanBox) { t4 = t1.createElement("flt-span"); t3._as(t4); t5 = box.span.style; cssStyle = t4.style; t6 = t5.foreground; t7 = t6 == null; color = t7 ? _null : t6.get$color(t6); if (color == null) color = t5.color; if ((t7 ? _null : t6.get$style(t6)) === B.PaintingStyle_1) { cssStyle.color = "transparent"; strokeWidth = t7 ? _null : t6.get$strokeWidth(); if (strokeWidth != null && strokeWidth > 0) adaptedWidth = strokeWidth; else { t6 = $.$get$window()._debugDevicePixelRatio; if (t6 == null) { ratio = window.devicePixelRatio; t6 = ratio == null || ratio === 0 ? 1 : ratio; } adaptedWidth = 1 / t6; } t6 = A.colorToCssString(color); t7 = B.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "text-stroke"); cssStyle.setProperty(t7, A.S(adaptedWidth) + "px " + A.S(t6), ""); } else if (color != null) { t6 = A.colorToCssString(color); cssStyle.toString; cssStyle.color = t6 == null ? "" : t6; } t6 = t5.background; background = t6 == null ? _null : t6.get$color(t6); if (background != null) { t6 = A.colorToCssString(background); cssStyle.toString; cssStyle.backgroundColor = t6 == null ? "" : t6; } fontSize = t5.fontSize; if (fontSize != null) { t6 = B.JSNumber_methods.floor$0(fontSize); cssStyle.fontSize = "" + t6 + "px"; } t6 = t5.fontWeight; if (t6 != null) { t6 = A.fontWeightToCss(t6); cssStyle.toString; cssStyle.fontWeight = t6 == null ? "" : t6; } t6 = t5.fontStyle; if (t6 != null) { t6 = t6 === B.FontStyle_0 ? "normal" : "italic"; cssStyle.fontStyle = t6; } t6 = A.canonicalizeFontFamily(t5.fontFamily); cssStyle.toString; cssStyle.fontFamily = t6 == null ? "" : t6; t6 = t5.letterSpacing; if (t6 != null) cssStyle.letterSpacing = A.S(t6) + "px"; t6 = t5.wordSpacing; if (t6 != null) cssStyle.wordSpacing = A.S(t6) + "px"; t6 = t5.decoration; t7 = t6 != null; updateDecoration = t7 && true; shadows = t5.shadows; if (shadows != null) { value = A._shadowListToCss(shadows); t8 = B.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "text-shadow"); cssStyle.setProperty(t8, value, ""); } if (updateDecoration) if (t7) { t7 = t5.decorationStyle; t6 = t6._mask; t8 = (t6 | 1) === t6 ? "underline " : ""; if ((t6 | 2) === t6) t8 += "overline "; t6 = (t6 | 4) === t6 ? t8 + "line-through " : t8; if (t7 != null) t6 += A.S(A._decorationStyleToCssString(t7)); textDecoration = t6.length === 0 ? _null : t6.charCodeAt(0) == 0 ? t6 : t6; if (textDecoration != null) { t6 = $.$get$_browserEngine(); if (t6 === B.BrowserEngine_1) { t6 = t4.style; t6.toString; t7 = B.CssStyleDeclaration_methods._browserPropertyName$1(t6, "-webkit-text-decoration"); t6.setProperty(t7, textDecoration, ""); } else cssStyle.textDecoration = textDecoration; decorationColor = t5.decorationColor; if (decorationColor != null) { t6 = A.colorToCssString(decorationColor); t6.toString; t7 = B.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "text-decoration-color"); cssStyle.setProperty(t7, t6, ""); } } } fontFeatures = t5.fontFeatures; if (fontFeatures != null && true) { value = A._fontFeatureListToCss(fontFeatures); t5 = B.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "font-feature-settings"); cssStyle.setProperty(t5, value, ""); } t5 = box.start.index; t6 = box.end; t7 = box.intersect$4$forPainting(line, t5, t6.index, true); t8 = t7.left; t9 = t7.top; t10 = t4.style; t10.position = _s8_; t10.top = A.S(t9) + "px"; t10.left = A.S(t8) + "px"; t10.width = A.S(t7.right - t8) + "px"; t10.lineHeight = A.S(t7.bottom - t9) + "px"; t5 = B.JSString_methods.substring$2(box.spanometer.paragraph.plainText, t5, t6.indexWithoutTrailingNewlines); t4.appendChild(t1.createTextNode(t5)); t2.appendChild(t4); buffer._contents += t5; lastSpanElement = t4; } else { if (!(box instanceof A.PlaceholderBox)) throw A.wrapException(A.UnimplementedError$("Unknown box type: " + A.getRuntimeType(box).toString$0(0))); lastSpanElement = _null; } } ellipsis = line.ellipsis; if (ellipsis != null) { t4 = lastSpanElement == null ? t2 : lastSpanElement; t4.appendChild(t1.createTextNode(ellipsis)); } } return t2; }, getBoxesForPlaceholders$0() { return this.get$_layoutService().getBoxesForPlaceholders$0(); }, getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, boxWidthStyle) { return this.get$_layoutService().getBoxesForRange$4(start, end, boxHeightStyle, boxWidthStyle); }, getBoxesForRange$3$boxHeightStyle(start, end, boxHeightStyle) { return this.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, B.BoxWidthStyle_0); }, getPositionForOffset$1(offset) { return this.get$_layoutService().getPositionForOffset$1(offset); }, getWordBoundary$1(_, position) { var text = this.plainText, t1 = position.offset; return new A.TextRange(A.WordBreaker__findBreakIndex(B._FindBreakDirection_m1, text, t1 + 1), A.WordBreaker__findBreakIndex(B._FindBreakDirection_1, text, t1)); }, getLineBoundary$1(position) { var t1, i, line, index = position.offset, lines = this.get$_layoutService().lines; for (t1 = lines.length - 1, i = 0; i < t1; ++i) { line = lines[i]; if (index >= line.startIndex && index < line.endIndex) break; } line = lines[i]; return new A.TextRange(line.startIndex, line.endIndex); }, computeLineMetrics$0() { return this.get$_layoutService().lines; } }; A.FlatTextSpan.prototype = {$isParagraphSpan: 1, get$end(receiver) { return this.end; } }; A.PlaceholderSpan0.prototype = {$isParagraphSpan: 1, get$end(receiver) { return this.end; } }; A.StyleNode.prototype = { resolveStyle$0() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, style = _this._cachedStyle; if (style == null) { t1 = _this.get$__engine$_color(_this); t2 = _this.get$_decoration(); t3 = _this.get$_decorationColor(); t4 = _this.get$_decorationStyle(); t5 = _this.get$_decorationThickness(); t6 = _this.get$_fontWeight(_this); t7 = _this.get$_fontStyle(_this); t8 = _this.get$_textBaseline(); t9 = _this.get$_fontFamily(_this); t10 = _this.get$_fontFamilyFallback(); t11 = _this.get$_fontFeatures(); t12 = _this.get$_fontVariations(); t13 = _this.get$__engine$_fontSize(_this); t14 = _this.get$_letterSpacing(_this); t15 = _this.get$_wordSpacing(_this); t16 = _this.get$__engine$_height(_this); t17 = _this.get$_locale(); t15 = A.EngineTextStyle$only(_this.get$_background(_this), t1, t2, t3, t4, t5, t9, t10, t11, t13, t7, t12, t6, _this.get$_foreground(), t16, t14, t17, _this.get$_shadows(), t8, t15); _this._cachedStyle = t15; return t15; } return style; } }; A.ChildStyleNode.prototype = { get$__engine$_color(_) { var t1 = this.style.color; if (t1 == null) if (this.get$_foreground() == null) { t1 = this.parent; t1 = t1.get$__engine$_color(t1); } else t1 = null; return t1; }, get$_decoration() { var t1 = this.style.decoration; return t1 == null ? this.parent.get$_decoration() : t1; }, get$_decorationColor() { var t1 = this.style.decorationColor; return t1 == null ? this.parent.get$_decorationColor() : t1; }, get$_decorationStyle() { var t1 = this.style.decorationStyle; return t1 == null ? this.parent.get$_decorationStyle() : t1; }, get$_decorationThickness() { var t1 = this.style.decorationThickness; return t1 == null ? this.parent.get$_decorationThickness() : t1; }, get$_fontWeight(_) { var t1 = this.style.fontWeight; if (t1 == null) { t1 = this.parent; t1 = t1.get$_fontWeight(t1); } return t1; }, get$_fontStyle(_) { var t1 = this.style.fontStyle; if (t1 == null) { t1 = this.parent; t1 = t1.get$_fontStyle(t1); } return t1; }, get$_textBaseline() { var t1 = this.style.textBaseline; return t1 == null ? this.parent.get$_textBaseline() : t1; }, get$_fontFamilyFallback() { var t1 = this.style.fontFamilyFallback; return t1 == null ? this.parent.get$_fontFamilyFallback() : t1; }, get$_fontFeatures() { var t1 = this.style.fontFeatures; return t1 == null ? this.parent.get$_fontFeatures() : t1; }, get$_fontVariations() { this.style.toString; var t1 = this.parent.get$_fontVariations(); return t1; }, get$__engine$_fontSize(_) { var t1 = this.style.fontSize; if (t1 == null) { t1 = this.parent; t1 = t1.get$__engine$_fontSize(t1); } return t1; }, get$_letterSpacing(_) { var t1 = this.style.letterSpacing; if (t1 == null) { t1 = this.parent; t1 = t1.get$_letterSpacing(t1); } return t1; }, get$_wordSpacing(_) { var t1 = this.style.wordSpacing; if (t1 == null) { t1 = this.parent; t1 = t1.get$_wordSpacing(t1); } return t1; }, get$__engine$_height(_) { var t1 = this.style.height; if (t1 == null) { t1 = this.parent; t1 = t1.get$__engine$_height(t1); } return t1; }, get$_locale() { var t1 = this.style.locale; return t1 == null ? this.parent.get$_locale() : t1; }, get$_background(_) { var t1 = this.style.background; if (t1 == null) { t1 = this.parent; t1 = t1.get$_background(t1); } return t1; }, get$_foreground() { var t1 = this.style.foreground; return t1 == null ? this.parent.get$_foreground() : t1; }, get$_shadows() { var t1 = this.style.shadows; return t1 == null ? this.parent.get$_shadows() : t1; }, get$_fontFamily(_) { var t1 = this.style; if (t1.isFontFamilyProvided) t1 = t1.fontFamily; else { t1 = this.parent; t1 = t1.get$_fontFamily(t1); } return t1; } }; A.RootStyleNode.prototype = { get$_decoration() { return null; }, get$_decorationColor() { return null; }, get$_decorationStyle() { return null; }, get$_decorationThickness() { return null; }, get$_fontWeight(_) { return this.paragraphStyle.fontWeight; }, get$_fontStyle(_) { return this.paragraphStyle.fontStyle; }, get$_textBaseline() { return null; }, get$_fontFamily(_) { var t1 = this.paragraphStyle.fontFamily; return t1 == null ? "sans-serif" : t1; }, get$_fontFamilyFallback() { return null; }, get$_fontFeatures() { return null; }, get$_fontVariations() { return null; }, get$__engine$_fontSize(_) { var t1 = this.paragraphStyle.fontSize; return t1 == null ? 14 : t1; }, get$_letterSpacing(_) { return null; }, get$_wordSpacing(_) { return null; }, get$__engine$_height(_) { return this.paragraphStyle.height; }, get$_locale() { return this.paragraphStyle.locale; }, get$_background(_) { return null; }, get$_foreground() { return null; }, get$_shadows() { return null; }, get$__engine$_color() { return B.Color_4294901760; } }; A.CanvasParagraphBuilder.prototype = { get$_currentStyleNode() { var t1 = this._styleStack, t2 = t1.length; return t2 === 0 ? this._rootStyleNode : t1[t2 - 1]; }, get$placeholderCount() { return this._placeholderCount; }, get$placeholderScales() { return this._placeholderScales; }, addPlaceholder$6$baseline$baselineOffset$scale(_, width, height, alignment, baseline, baselineOffset, scale) { var t1, t2, _this = this; ++_this._placeholderCount; _this._placeholderScales.push(scale); t1 = _this._plainTextBuffer._contents; t2 = baselineOffset == null ? height : baselineOffset; _this._spans.push(new A.PlaceholderSpan0(t1.length, width * scale, height * scale, alignment, t2 * scale)); }, addPlaceholder$4$scale($receiver, width, height, alignment, scale) { return this.addPlaceholder$6$baseline$baselineOffset$scale($receiver, width, height, alignment, null, null, scale); }, pushStyle$1(_, style) { this._styleStack.push(new A.ChildStyleNode(this.get$_currentStyleNode(), type$.EngineTextStyle._as(style))); }, pop$0(_) { var t1 = this._styleStack; if (t1.length !== 0) t1.pop(); }, addText$1(_, text) { var decoration, _this = this, style = _this.get$_currentStyleNode().resolveStyle$0(), t1 = _this._plainTextBuffer, t2 = t1._contents, t3 = t2 + A.S(text); t1._contents = t3; t1 = _this._drawOnCanvas; if (t1) { decoration = style.decoration; if (decoration != null) { t1 = decoration._mask; t1 = 0 !== t1; } else t1 = false; if (t1) { _this._drawOnCanvas = false; t1 = false; } else t1 = true; } if (t1) if (style.fontFeatures != null && true) { _this._drawOnCanvas = false; t1 = false; } else t1 = true; t1; _this._spans.push(new A.FlatTextSpan(style, t2.length, t3.length)); }, build$0(_) { var _this = this, t1 = _this._plainTextBuffer._contents; return new A.CanvasParagraph(_this._spans, _this._paragraphStyle, t1.charCodeAt(0) == 0 ? t1 : t1, _this._drawOnCanvas); } }; A.FontCollection.prototype = { registerFonts$1(assetManager) { return this.registerFonts$body$FontCollection(assetManager); }, registerFonts$body$FontCollection(assetManager) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, t1, fontManifest, t2, t3, t4, t5, t6, family, t7, asset, descriptors, t8, t9, byteData, $async$exception; var $async$registerFonts$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start byteData = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait(assetManager.load$1(0, "FontManifest.json"), $async$registerFonts$1); case 7: // returning from await. byteData = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (t1 instanceof A.AssetManagerException) { e = t1; if (e.httpStatus === 404) { $.$get$printWarning().call$1("Font manifest does not exist at `" + A.S(e.url) + "` \u2013 ignoring."); // goto return $async$goto = 1; break; } else throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally fontManifest = type$.nullable_List_dynamic._as(B.C_JsonCodec.decode$1(0, B.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(byteData))))); if (fontManifest == null) throw A.wrapException(A.AssertionError$(string$.There_w)); if ($.$get$supportsFontLoadingApi()) $async$self._assetFontManager = A.FontManager_FontManager(); else $async$self._assetFontManager = new A._PolyfillFontManager(A._setArrayType([], type$.JSArray_Future_void)); for (t1 = type$.Map_String_dynamic, t2 = J.cast$1$0$ax(fontManifest, t1), t2 = t2.get$iterator(t2), t3 = type$.String, t4 = type$.List_dynamic; t2.moveNext$0();) { t5 = t2.get$current(t2); t6 = J.getInterceptor$asx(t5); family = A._asStringQ(t6.$index(t5, "family")); t5 = J.cast$1$0$ax(t4._as(t6.$index(t5, "fonts")), t1); for (t5 = t5.get$iterator(t5); t5.moveNext$0();) { t6 = t5.get$current(t5); t7 = J.getInterceptor$asx(t6); asset = A._asStringS(t7.$index(t6, "asset")); descriptors = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); for (t8 = J.get$iterator$ax(t7.get$keys(t6)); t8.moveNext$0();) { t9 = t8.get$current(t8); if (t9 !== "asset") descriptors.$indexSet(0, t9, A.S(t7.$index(t6, t9))); } t6 = $async$self._assetFontManager; t6.toString; family.toString; t6.registerAsset$3(family, "url(" + A.S(assetManager.getAssetUrl$1(asset)) + ")", descriptors); } } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$registerFonts$1, $async$completer); }, ensureFontsLoaded$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$ensureFontsLoaded$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._assetFontManager; $async$goto = 2; return A._asyncAwait(t1 == null ? null : A.Future_wait(t1._fontLoadingFutures, type$.void), $async$ensureFontsLoaded$0); case 2: // returning from await. t1 = $async$self._testFontManager; $async$goto = 3; return A._asyncAwait(t1 == null ? null : A.Future_wait(t1._fontLoadingFutures, type$.void), $async$ensureFontsLoaded$0); case 3: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$ensureFontsLoaded$0, $async$completer); } }; A.FontManager.prototype = { registerAsset$3(family, asset, descriptors) { var t1 = $.$get$FontManager_startWithDigit()._nativeRegExp; if (typeof family != "string") A.throwExpression(A.argumentErrorValue(family)); if (t1.test(family) || $.$get$FontManager_notPunctuation().stringMatch$1(family) != family) this._loadFontFace$3("'" + A.S(family) + "'", asset, descriptors); this._loadFontFace$3(family, asset, descriptors); }, _loadFontFace$3(family, asset, descriptors) { var fontFace, e, exception; try { fontFace = A.FontFace_FontFace(family, asset, descriptors); this._fontLoadingFutures.push(A.promiseToFuture(fontFace.load(), type$.FontFace).then$1$2$onError(0, new A.FontManager__loadFontFace_closure(fontFace), new A.FontManager__loadFontFace_closure0(family), type$.void)); } catch (exception) { e = A.unwrapException(exception); $.$get$printWarning().call$1('Error while loading font family "' + A.S(family) + '":\n' + A.S(e)); } } }; A.FontManager__loadFontFace_closure.prototype = { call$1(_) { document.fonts.add(this.fontFace); }, $signature: 2103 }; A.FontManager__loadFontFace_closure0.prototype = { call$1(e) { $.$get$printWarning().call$1('Error while trying to load font family "' + A.S(this.family) + '":\n' + A.S(e)); }, $signature: 7 }; A._PolyfillFontManager.prototype = { registerAsset$3(family, asset, descriptors) { var fallbackFontName, t3, sansSerifWidth, _fontLoadStart, t4, fontStyleMap, fontFaceDeclaration, fontLoadStyle, _s5_ = "style", _s6_ = "weight", t1 = document, paragraph = t1.createElement("p"), t2 = paragraph.style; t2.position = "absolute"; t2 = paragraph.style; t2.visibility = "hidden"; t2 = paragraph.style; t2.fontSize = "72px"; t2 = $.$get$_browserEngine(); fallbackFontName = t2 === B.BrowserEngine_4 ? "Times New Roman" : "sans-serif"; t2 = paragraph.style; t2.fontFamily = fallbackFontName; if (descriptors.$index(0, _s5_) != null) { t2 = paragraph.style; t3 = descriptors.$index(0, _s5_); t2.toString; t2.fontStyle = t3 == null ? "" : t3; } if (descriptors.$index(0, _s6_) != null) { t2 = paragraph.style; t3 = descriptors.$index(0, _s6_); t2.toString; t2.fontWeight = t3 == null ? "" : t3; } paragraph.textContent = "giItT1WQy@!-/#"; t1.body.appendChild(paragraph); sansSerifWidth = B.JSNumber_methods.round$0(paragraph.offsetWidth); t2 = paragraph.style; t3 = "'" + A.S(family); t2.fontFamily = t3 + "', " + fallbackFontName; t2 = new A._Future($.Zone__current, type$._Future_void); _fontLoadStart = A._Cell$named("_fontLoadStart"); t4 = type$.String; fontStyleMap = A.LinkedHashMap_LinkedHashMap$_empty(t4, type$.nullable_String); fontStyleMap.$indexSet(0, "font-family", t3 + "'"); fontStyleMap.$indexSet(0, "src", asset); if (descriptors.$index(0, _s5_) != null) fontStyleMap.$indexSet(0, "font-style", descriptors.$index(0, _s5_)); if (descriptors.$index(0, _s6_) != null) fontStyleMap.$indexSet(0, "font-weight", descriptors.$index(0, _s6_)); t3 = fontStyleMap.$ti._eval$1("LinkedHashMapKeyIterable<1>"); fontFaceDeclaration = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(fontStyleMap, t3), new A._PolyfillFontManager_registerAsset_closure(fontStyleMap), t3._eval$1("Iterable.E"), t4).join$1(0, " "); fontLoadStyle = t1.createElement("style"); fontLoadStyle.type = "text/css"; B.StyleElement_methods.setInnerHtml$1(fontLoadStyle, "@font-face { " + fontFaceDeclaration + " }"); t1.head.appendChild(fontLoadStyle); if (B.JSString_methods.contains$1(family.toLowerCase(), "icon")) { B.ParagraphElement_methods.remove$0(paragraph); return; } _fontLoadStart.__late_helper$_value = new A.DateTime(Date.now(), false); new A._PolyfillFontManager_registerAsset__watchWidth(paragraph, sansSerifWidth, new A._AsyncCompleter(t2, type$._AsyncCompleter_void), _fontLoadStart, family).call$0(); this._fontLoadingFutures.push(t2); } }; A._PolyfillFontManager_registerAsset__watchWidth.prototype = { call$0() { var _this = this, t1 = _this.paragraph; if (B.JSNumber_methods.round$0(t1.offsetWidth) !== _this.sansSerifWidth) { B.ParagraphElement_methods.remove$0(t1); _this.completer.complete$0(0); } else if (A.Duration$(0, 0, 0, Date.now() - _this._fontLoadStart._readLocal$0()._value, 0, 0)._duration > 2000000) { _this.completer.complete$0(0); throw A.wrapException(A.Exception_Exception("Timed out trying to load font: " + A.S(_this.family))); } else A.Timer_Timer(B.Duration_50000, _this); }, $signature: 0 }; A._PolyfillFontManager_registerAsset_closure.prototype = { call$1($name) { return A.S($name) + ": " + A.S(this.fontStyleMap.$index(0, $name)) + ";"; }, $signature: 108 }; A.TextLayoutService.prototype = { performLayout$1(constraints) { var t4, spanometer, currentLine, t5, spanIndex, span, nextBreak, t6, additionalWidth, t7, revertedToSpan, _i, line, longestLineWidth, lastLine, shouldJustifyParagraph, breakToNextLine, widthOfLastSegment, _this = this, t1 = _this.paragraph, t2 = t1.spans, spanCount = t2.length, t3 = _this.width = constraints.width; _this.height = 0; _this.longestLine = null; _this.maxIntrinsicWidth = _this.minIntrinsicWidth = 0; _this.didExceedMaxLines = false; t4 = _this.lines; B.JSArray_methods.set$length(t4, 0); if (spanCount === 0) return; spanometer = new A.Spanometer(t1, _this.context); currentLine = A.LineBuilder$_(t1, spanometer, 0, 0, t3, B.LineBreakResult_vhn); for (t5 = t1.paragraphStyle, spanIndex = 0; true;) { if (spanIndex === spanCount) { if (currentLine._segments.length !== 0 || currentLine.__engine$_end.type !== B.LineBreakType_3) { currentLine.extendToEndOfText$0(); t4.push(currentLine.build$0(0)); } break; } span = t2[spanIndex]; if (span instanceof A.PlaceholderSpan0) { if (currentLine.widthIncludingSpace + span.width <= t3) currentLine.addPlaceholder$1(0, span); else { if (currentLine._segments.length !== 0) { t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } currentLine.addPlaceholder$1(0, span); } ++spanIndex; } else if (span instanceof A.FlatTextSpan) { spanometer.set$currentSpan(span); nextBreak = currentLine.findNextBreak$0(); t6 = nextBreak.lineBreak; additionalWidth = currentLine.getAdditionalWidthTo$1(t6); if (currentLine.width + additionalWidth <= t3) { currentLine.extendTo$1(nextBreak); if (t6.type === B.LineBreakType_2) { t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } } else { t6 = t5.ellipsis; t7 = t6 != null; if ((t7 && t5.maxLines == null || t4.length + 1 === t5.maxLines) && t7) { currentLine.forceBreak$3$allowEmpty$ellipsis(nextBreak, true, t6); t4.push(currentLine.build$1$ellipsis(0, t6)); break; } else if (!currentLine.isBreakable) { currentLine.forceBreak$2$allowEmpty(nextBreak, false); t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } else { currentLine.revertToLastBreakOpportunity$0(); revertedToSpan = B.JSArray_methods.get$last(currentLine._segments).span; for (; span !== revertedToSpan;) { --spanIndex; span = t2[spanIndex]; } t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } } if (currentLine.__engine$_end.index >= span.get$end(span)) { currentLine.createBox$0(); ++spanIndex; } } else throw A.wrapException(A.UnimplementedError$("Unknown span type: " + A.getRuntimeType(span).toString$0(0))); if (t4.length === t5.maxLines) break; } for (t6 = t4.length, _i = 0; _i < t6; ++_i) { line = t4[_i]; _this.height = _this.height + line.height; if (_this.alphabeticBaseline === -1) { t7 = line.baseline; _this.alphabeticBaseline = t7; _this.ideographicBaseline = t7 * 1.1662499904632568; } t7 = _this.longestLine; longestLineWidth = t7 == null ? null : t7.width; if (longestLineWidth == null) longestLineWidth = 0; if (longestLineWidth < line.width) _this.longestLine = line; } if (t6 !== 0) { lastLine = B.JSArray_methods.get$last(t4); t6 = _this.width; t6.toString; shouldJustifyParagraph = isFinite(t6) && t5.textAlign === B.TextAlign_3; for (t5 = t4.length, _i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { line = t4[_i]; _this._positionLineBoxes$2$withJustification(line, shouldJustifyParagraph && !line.$eq(0, lastLine)); } } currentLine = A.LineBuilder$_(t1, spanometer, 0, 0, t3, B.LineBreakResult_vhn); for (spanIndex = 0; spanIndex < spanCount;) { span = t2[spanIndex]; if (span instanceof A.PlaceholderSpan0) { currentLine.addPlaceholder$1(0, span); ++spanIndex; breakToNextLine = false; } else if (span instanceof A.FlatTextSpan) { spanometer.set$currentSpan(span); nextBreak = currentLine.findNextBreak$0(); currentLine.extendTo$1(nextBreak); breakToNextLine = nextBreak.lineBreak.type === B.LineBreakType_2 && true; if (currentLine.__engine$_end.index >= span.end) ++spanIndex; } else breakToNextLine = false; widthOfLastSegment = B.JSArray_methods.get$last(currentLine._segments).width; if (_this.minIntrinsicWidth < widthOfLastSegment) _this.minIntrinsicWidth = widthOfLastSegment; t1 = _this.maxIntrinsicWidth; t3 = currentLine.widthIncludingSpace; if (t1 < t3) _this.maxIntrinsicWidth = t3; if (breakToNextLine) currentLine = currentLine.nextLine$0(); } }, _positionLineBoxes$2$withJustification(line, withJustification) { var t1, t2, i, cumulativeWidth, t3, box, t4, t5, t6, i0, lastNonSpaceBox, t7, boxes = line.boxes, justifyPerSpaceBox = withJustification ? this._calculateJustifyPerSpaceBox$1(line) : 0; for (t1 = this.paragraph.paragraphStyle, t2 = line.width, i = 0, cumulativeWidth = 0; t3 = boxes.length, i < t3;) { box = boxes[i]; t4 = t1.textDirection; t5 = t4 == null; t6 = t5 ? B.TextDirection_1 : t4; if (box.boxDirection === t6) { A._lateWriteOnceCheck(box.__RangeBox_startOffset, "startOffset"); box.__RangeBox_startOffset = cumulativeWidth; A._lateWriteOnceCheck(box.__RangeBox_lineWidth, "lineWidth"); box.__RangeBox_lineWidth = t2; if (box instanceof A.SpanBox && box.isSpaceOnly && !box._isTrailingSpace) box.__engine$_width += justifyPerSpaceBox; cumulativeWidth += box.get$width(box); ++i; continue; } i0 = i + 1; lastNonSpaceBox = i; while (true) { if (i0 < t3) { t6 = boxes[i0]; t7 = t5 ? B.TextDirection_1 : t4; t7 = t6.boxDirection !== t7; t6 = t7; } else t6 = false; if (!t6) break; box = boxes[i0]; lastNonSpaceBox = box instanceof A.SpanBox && box.isSpaceOnly ? lastNonSpaceBox : i0; ++i0; } i0 = lastNonSpaceBox + 1; cumulativeWidth += this._positionLineBoxesInReverse$5$justifyPerSpaceBox$startOffset(line, i, lastNonSpaceBox, justifyPerSpaceBox, cumulativeWidth); i = i0; } }, _positionLineBoxesInReverse$5$justifyPerSpaceBox$startOffset(line, first, last, justifyPerSpaceBox, startOffset) { var t1, i, cumulativeWidth, box, boxes = line.boxes; for (t1 = line.width, i = last, cumulativeWidth = 0; i >= first; --i) { box = boxes[i]; A._lateWriteOnceCheck(box.__RangeBox_startOffset, "startOffset"); box.__RangeBox_startOffset = startOffset + cumulativeWidth; A._lateWriteOnceCheck(box.__RangeBox_lineWidth, "lineWidth"); box.__RangeBox_lineWidth = t1; if (box instanceof A.SpanBox && box.isSpaceOnly && !box._isTrailingSpace) box.__engine$_width += justifyPerSpaceBox; cumulativeWidth += box.get$width(box); } return cumulativeWidth; }, _calculateJustifyPerSpaceBox$1(line) { var t1 = this.width, spaceBoxesToJustify = line.spaceBoxCount - line.trailingSpaceBoxCount; if (spaceBoxesToJustify > 0) return (t1 - line.width) / spaceBoxesToJustify; return 0; }, getBoxesForPlaceholders$0() { var t1, t2, _i, line, t3, t4, $top, lineTop, t5, t6, t7, _i0, box, t8, t9, t10, t11, top0, _s11_ = "startOffset", _s9_ = "lineWidth", boxes = A._setArrayType([], type$.JSArray_TextBox); for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { line = t1[_i]; for (t3 = line.boxes, t4 = t3.length, $top = line.baseline, lineTop = $top - line.ascent, t5 = line.left, t6 = line.height, t7 = lineTop + t6, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { box = t3[_i0]; if (box instanceof A.PlaceholderBox) { t8 = box.paragraphDirection; t9 = t8 === B.TextDirection_1; t10 = t9 ? A._lateReadCheck(box.__RangeBox_startOffset, _s11_) : A._lateReadCheck(box.__RangeBox_lineWidth, _s9_) - (A._lateReadCheck(box.__RangeBox_startOffset, _s11_) + box.get$width(box)); t9 = t9 ? A._lateReadCheck(box.__RangeBox_startOffset, _s11_) + box.get$width(box) : A._lateReadCheck(box.__RangeBox_lineWidth, _s9_) - A._lateReadCheck(box.__RangeBox_startOffset, _s11_); t11 = box.placeholder; switch (t11.alignment.index) { case 3: top0 = lineTop; break; case 5: top0 = lineTop + (t6 - t11.height) / 2; break; case 4: top0 = t7 - t11.height; break; case 1: top0 = $top - t11.height; break; case 2: top0 = $top; break; case 0: top0 = $top - t11.baselineOffset; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); top0 = null; } boxes.push(new A.TextBox(t5 + t10, top0, t5 + t9, top0 + t11.height, t8)); } } } return boxes; }, getBoxesForRange$4(start, end, boxHeightStyle, boxWidthStyle) { var $length, boxes, t1, t2, _i, line, t3, t4, _i0, box; if (start >= end || start < 0 || end < 0) return A._setArrayType([], type$.JSArray_TextBox); $length = this.paragraph.plainText.length; if (start > $length || end > $length) return A._setArrayType([], type$.JSArray_TextBox); boxes = A._setArrayType([], type$.JSArray_TextBox); for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { line = t1[_i]; if (start < line.endIndex && line.startIndex < end) for (t3 = line.boxes, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { box = t3[_i0]; if (box instanceof A.SpanBox && start < box.end.index && box.start.index < end) boxes.push(box.intersect$4$forPainting(line, start, end, false)); } } return boxes; }, getPositionForOffset$1(offset) { var dx, _i, box, t3, t4, _s11_ = "startOffset", _s9_ = "lineWidth", line = this._findLineForY$1(offset._dy), t1 = offset._dx, t2 = line.left; if (t1 <= t2) return new A.TextPosition(line.startIndex, B.TextAffinity_1); if (t1 >= t2 + line.widthWithTrailingSpaces) return new A.TextPosition(line.endIndexWithoutNewlines, B.TextAffinity_0); dx = t1 - t2; for (t1 = line.boxes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { box = t1[_i]; t3 = box.paragraphDirection === B.TextDirection_1; if ((t3 ? A._lateReadCheck(box.__RangeBox_startOffset, _s11_) : A._lateReadCheck(box.__RangeBox_lineWidth, _s9_) - (A._lateReadCheck(box.__RangeBox_startOffset, _s11_) + box.get$width(box))) <= dx) { t4 = dx <= (t3 ? A._lateReadCheck(box.__RangeBox_startOffset, _s11_) + box.get$width(box) : A._lateReadCheck(box.__RangeBox_lineWidth, _s9_) - A._lateReadCheck(box.__RangeBox_startOffset, _s11_)); t3 = t4; } else t3 = false; if (t3) return box.getPositionForX$1(dx); } return new A.TextPosition(line.startIndex, B.TextAffinity_1); }, _findLineForY$1(y) { var t1, t2, _i, line, t3; for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t2; ++_i) { line = t1[_i]; t3 = line.height; if (y <= t3) return line; y -= t3; } return B.JSArray_methods.get$last(t1); } }; A.RangeBox.prototype = { get$left(_) { var _this = this, _s11_ = "startOffset"; return _this.paragraphDirection === B.TextDirection_1 ? A._lateReadCheck(_this.__RangeBox_startOffset, _s11_) : A._lateReadCheck(_this.__RangeBox_lineWidth, "lineWidth") - (A._lateReadCheck(_this.__RangeBox_startOffset, _s11_) + _this.get$width(_this)); }, get$right(_) { var _this = this, _s11_ = "startOffset"; return _this.paragraphDirection === B.TextDirection_1 ? A._lateReadCheck(_this.__RangeBox_startOffset, _s11_) + _this.get$width(_this) : A._lateReadCheck(_this.__RangeBox_lineWidth, "lineWidth") - A._lateReadCheck(_this.__RangeBox_startOffset, _s11_); } }; A.PlaceholderBox.prototype = { get$width(_) { return this.placeholder.width; }, getPositionForX$1(x) { var _this = this, t1 = x - _this.get$left(_this) < _this.get$right(_this) - x ? B.TextAffinity_0 : B.TextAffinity_1; return new A.TextPosition(_this.start.index, t1); } }; A.SpanBox.prototype = { get$width(_) { return this.__engine$_width; }, intersect$4$forPainting(line, start, end, forPainting) { var before, t2, after, left, right, _this = this, $top = line.baseline - _this.baseline, t1 = _this.start.index; if (start <= t1) before = 0; else { t2 = _this.spanometer; t2.set$currentSpan(_this.span); before = t2._measure$2(t1, start); } t1 = _this.end.indexWithoutTrailingNewlines; if (end >= t1) after = 0; else { t2 = _this.spanometer; t2.set$currentSpan(_this.span); after = t2._measure$2(end, t1); } t1 = _this.contentDirection; if (t1 === B.TextDirection_1) { left = _this.get$left(_this) + before; right = _this.get$right(_this) - after; } else { left = _this.get$left(_this) + after; right = _this.get$right(_this) - before; } if (forPainting && _this._isTrailingSpace) if (_this.paragraphDirection === B.TextDirection_1) right = left; else left = right; t2 = line.left; return new A.TextBox(t2 + left, $top, t2 + right, $top + _this.height, t1); }, getPositionForX$1(x) { var startIndex, endIndex, cutoff, t2, _this = this, t1 = _this.spanometer; t1.set$currentSpan(_this.span); x = _this.contentDirection !== B.TextDirection_1 ? _this.get$right(_this) - x : x - _this.get$left(_this); startIndex = _this.start.index; endIndex = _this.end.indexWithoutTrailingNewlines; cutoff = t1.forceBreak$4$allowEmpty$availableWidth(startIndex, endIndex, true, x); if (cutoff === endIndex) return new A.TextPosition(cutoff, B.TextAffinity_0); t2 = cutoff + 1; if (x - t1._measure$2(startIndex, cutoff) < t1._measure$2(startIndex, t2) - x) return new A.TextPosition(cutoff, B.TextAffinity_1); else return new A.TextPosition(t2, B.TextAffinity_0); } }; A.LineSegment.prototype = {}; A.LineBuilder.prototype = { set$end(_, value) { if (value.type !== B.LineBreakType_1) this.isBreakable = true; this.__engine$_end = value; }, get$isEmpty(_) { return this._segments.length === 0; }, get$alignOffset() { var emptySpace = this.maxWidth - this.width, t1 = this.paragraph.paragraphStyle, textAlign = t1.textAlign; switch (textAlign.index) { case 2: return emptySpace / 2; case 1: return emptySpace; case 4: t1 = t1.textDirection; return (t1 == null ? B.TextDirection_1 : t1) === B.TextDirection_0 ? emptySpace : 0; case 5: t1 = t1.textDirection; return (t1 == null ? B.TextDirection_1 : t1) === B.TextDirection_0 ? 0 : emptySpace; default: return 0; } }, getAdditionalWidthTo$1(newEnd) { var _this = this, t1 = _this.__engine$_end.index, t2 = newEnd.indexWithoutTrailingSpaces; if (t1 === t2) return 0; return _this.widthIncludingSpace - _this.width + _this.spanometer._measure$2(t1, t2); }, get$_isLastBoxAPlaceholder() { var t1 = this._boxes; if (t1.length === 0) return false; return B.JSArray_methods.get$last(t1) instanceof A.PlaceholderBox; }, get$_currentBoxDirection() { var value = this.__LineBuilder__currentBoxDirection; if (value === $) { value = this.paragraph.paragraphStyle.textDirection; value = this.__LineBuilder__currentBoxDirection = value == null ? B.TextDirection_1 : value; } return value; }, get$_currentContentDirection() { var value = this.__LineBuilder__currentContentDirection; if (value === $) { value = this.paragraph.paragraphStyle.textDirection; value = this.__LineBuilder__currentContentDirection = value == null ? B.TextDirection_1 : value; } return value; }, extendTo$1(newEnd) { var _this = this, t1 = _this.ascent, t2 = _this.spanometer, t3 = t2._currentRuler; _this.ascent = Math.max(t1, t3.get$alphabeticBaseline(t3)); t3 = _this.descent; t1 = t2._currentRuler; t1 = t1.get$height(t1); t2 = t2._currentRuler; _this.descent = Math.max(t3, t1 - t2.get$alphabeticBaseline(t2)); t1 = newEnd.isSpaceOnly; if (!t1) { t2 = newEnd.textDirection; t2 = _this.get$_currentBoxDirection() !== t2 || _this.get$_currentContentDirection() !== t2; } else t2 = true; if (t2) _this.createBox$0(); t2 = newEnd.textDirection; t3 = t2 == null; _this.__LineBuilder__currentBoxDirection = t3 ? _this.get$_currentBoxDirection() : t2; _this.__LineBuilder__currentContentDirection = t3 ? B.TextDirection_1 : t2; _this._addSegment$1(_this._createSegment$1(newEnd.lineBreak)); if (t1) _this.createBox$1$isSpaceOnly(true); }, extendToEndOfText$0() { var t1, endOfText, t2, t3, _this = this; if (_this.__engine$_end.type === B.LineBreakType_3) return; t1 = _this.paragraph.plainText.length; endOfText = new A.LineBreakResult(t1, t1, t1, B.LineBreakType_3); t1 = _this.spanometer; if (t1._currentSpan != null) { t2 = _this.ascent; t3 = t1._currentRuler; _this.ascent = Math.max(t2, t3.get$alphabeticBaseline(t3)); t3 = _this.descent; t2 = t1._currentRuler; t2 = t2.get$height(t2); t1 = t1._currentRuler; _this.descent = Math.max(t3, t2 - t1.get$alphabeticBaseline(t1)); _this._addSegment$1(_this._createSegment$1(endOfText)); } else _this.set$end(0, endOfText); }, addPlaceholder$1(_, placeholder) { var ascent, descent, t1, t2, diff, _this = this; switch (placeholder.alignment.index) { case 3: ascent = _this.ascent; descent = placeholder.height - ascent; break; case 4: descent = _this.descent; ascent = placeholder.height - descent; break; case 5: t1 = _this.ascent; t2 = _this.descent; diff = placeholder.height / 2 - (t1 + t2) / 2; ascent = t1 + diff; descent = t2 + diff; break; case 1: ascent = placeholder.height; descent = 0; break; case 2: descent = placeholder.height; ascent = 0; break; case 0: ascent = placeholder.baselineOffset; descent = placeholder.height - ascent; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.ascent = Math.max(_this.ascent, ascent); _this.descent = Math.max(_this.descent, descent); t1 = _this.__engine$_end; t2 = placeholder.width; _this._addSegment$1(new A.LineSegment(placeholder, t1, t1, t2, t2)); t2 = _this.get$_currentBoxStart(); t1 = _this.paragraph.paragraphStyle.textDirection; if (t1 == null) t1 = B.TextDirection_1; _this._boxes.push(new A.PlaceholderBox(placeholder, t2, t2, t1, _this.get$_currentBoxDirection())); _this._currentBoxStartOffset = _this.widthIncludingSpace; _this.isBreakable = true; }, _createSegment$1(segmentEnd) { var t3, segmentStart = this.__engine$_end, t1 = this.spanometer, t2 = t1._currentSpan; t2.toString; t3 = segmentStart.index; return new A.LineSegment(t2, segmentStart, segmentEnd, t1._measure$2(t3, segmentEnd.indexWithoutTrailingSpaces), t1._measure$2(t3, segmentEnd.indexWithoutTrailingNewlines)); }, _addSegment$1(segment) { var t1, t2, _this = this; _this._segments.push(segment); t1 = segment.width; if (t1 !== 0) { t2 = _this.width; _this.width = t2 + (_this.widthIncludingSpace - t2 + t1); } _this.widthIncludingSpace = _this.widthIncludingSpace + segment.widthIncludingSpace; _this.set$end(0, segment.end); }, _popSegment$0() { var t2, i, widthOfTrailingSpace, poppedBox, _this = this, t1 = _this._segments, poppedSegment = t1.pop(); if (t1.length === 0) { _this.widthIncludingSpace = _this.width = 0; _this.set$end(0, _this.start); } else { _this.widthIncludingSpace = _this.widthIncludingSpace - poppedSegment.widthIncludingSpace; _this.set$end(0, B.JSArray_methods.get$last(t1).end); t2 = poppedSegment.width; if (t2 !== 0) { _this.width -= t2; i = t1.length - 1; widthOfTrailingSpace = 0; while (true) { t2 = i >= 0; if (!(t2 && t1[i].width === 0)) break; widthOfTrailingSpace += t1[i].widthIncludingSpace; --i; } if (t2) { t1 = t1[i]; widthOfTrailingSpace += t1.widthIncludingSpace - t1.width; } _this.width -= widthOfTrailingSpace; } } if (_this.get$_currentBoxStart().index > poppedSegment.start.index) { poppedBox = _this._boxes.pop(); _this._currentBoxStartOffset = _this._currentBoxStartOffset - poppedBox.get$width(poppedBox); if (poppedBox instanceof A.SpanBox && poppedBox.isSpaceOnly) --_this._spaceBoxCount; } return poppedSegment; }, forceBreak$3$allowEmpty$ellipsis(nextBreak, allowEmpty, ellipsis) { var t1, t2, breakingPoint, availableWidth, segmentToBreak, _this = this; if (ellipsis == null) { t1 = _this.widthIncludingSpace; t2 = nextBreak.lineBreak.indexWithoutTrailingSpaces; breakingPoint = _this.spanometer.forceBreak$4$allowEmpty$availableWidth(_this.__engine$_end.index, t2, allowEmpty, _this.maxWidth - t1); if (breakingPoint === t2) _this.extendTo$1(nextBreak); else _this.extendTo$1(new A.DirectionalPosition(new A.LineBreakResult(breakingPoint, breakingPoint, breakingPoint, B.LineBreakType_1), nextBreak.textDirection, nextBreak.isSpaceOnly)); return; } t1 = _this.spanometer; availableWidth = _this.maxWidth - A.measureSubstring(t1.context, ellipsis, 0, ellipsis.length, null); segmentToBreak = _this._createSegment$1(nextBreak.lineBreak); t2 = _this._segments; while (true) { if (!(t2.length !== 0 && _this.widthIncludingSpace > availableWidth)) break; segmentToBreak = _this._popSegment$0(); } t1.set$currentSpan(type$.FlatTextSpan._as(segmentToBreak.span)); breakingPoint = t1.forceBreak$4$allowEmpty$availableWidth(segmentToBreak.start.index, segmentToBreak.end.index, allowEmpty, availableWidth - _this.widthIncludingSpace); t1 = _this._boxes; while (true) { if (!(t1.length !== 0 && B.JSArray_methods.get$last(t1).end.index > breakingPoint)) break; t1.pop(); } _this._currentBoxStartOffset = _this.widthIncludingSpace; _this.extendTo$1(new A.DirectionalPosition(new A.LineBreakResult(breakingPoint, breakingPoint, breakingPoint, B.LineBreakType_1), nextBreak.textDirection, nextBreak.isSpaceOnly)); }, forceBreak$2$allowEmpty(nextBreak, allowEmpty) { return this.forceBreak$3$allowEmpty$ellipsis(nextBreak, allowEmpty, null); }, revertToLastBreakOpportunity$0() { for (; this.__engine$_end.type === B.LineBreakType_1;) this._popSegment$0(); }, get$_currentBoxStart() { var t1 = this._boxes; if (t1.length === 0) return this.start; return B.JSArray_methods.get$last(t1).end; }, createBox$1$isSpaceOnly(isSpaceOnly) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, _this = this, boxStart = _this.get$_currentBoxStart(), boxEnd = _this.__engine$_end; if (boxStart.index === boxEnd.index) return; t1 = _this.spanometer; t2 = _this.widthIncludingSpace; t3 = _this._currentBoxStartOffset; t4 = _this.paragraph.paragraphStyle.textDirection; if (t4 == null) t4 = B.TextDirection_1; t5 = _this.get$_currentBoxDirection(); t6 = _this.get$_currentContentDirection(); t7 = t1._currentSpan; t7.toString; t8 = t1._currentRuler; t8 = t8.get$height(t8); t9 = t1._currentRuler; _this._boxes.push(new A.SpanBox(t1, t7, t6, isSpaceOnly, t2 - t3, t8, t9.get$alphabeticBaseline(t9), boxStart, boxEnd, t4, t5)); if (isSpaceOnly) ++_this._spaceBoxCount; _this._currentBoxStartOffset = _this.widthIncludingSpace; }, createBox$0() { return this.createBox$1$isSpaceOnly(false); }, build$1$ellipsis(_, ellipsis) { var ellipsisWidth, t1, t2, endIndexWithoutNewlines, hardBreak, t3, t4, t5, t6, t7, _this = this; _this.createBox$0(); ellipsisWidth = ellipsis == null ? 0 : A.measureSubstring(_this.spanometer.context, ellipsis, 0, ellipsis.length, null); t1 = _this.start.index; t2 = _this.__engine$_end; endIndexWithoutNewlines = Math.max(t1, t2.indexWithoutTrailingNewlines); if (t2.type !== B.LineBreakType_3 && _this.get$_isLastBoxAPlaceholder()) hardBreak = false; else { t2 = _this.__engine$_end.type; hardBreak = t2 === B.LineBreakType_2 || t2 === B.LineBreakType_3; } _this._processTrailingSpaces$0(); t2 = _this.__engine$_end; t3 = _this.width; t4 = _this.widthIncludingSpace; t5 = _this.get$alignOffset(); t6 = _this.ascent; t7 = _this.descent; return new A.EngineLineMetrics(ellipsis, t1, t2.index, endIndexWithoutNewlines, _this._boxes, _this._spaceBoxCount, _this._trailingSpaceBoxCount, hardBreak, t6, t7, t6 + t7, t3 + ellipsisWidth, t4 + ellipsisWidth, t5, _this.accumulatedHeight + t6, _this.lineNumber); }, build$0($receiver) { return this.build$1$ellipsis($receiver, null); }, _processTrailingSpaces$0() { var t1, i, t2, box; this._trailingSpaceBoxCount = 0; for (t1 = this._boxes, i = t1.length - 1, t2 = 0; i >= 0; --i) { box = t1[i]; if (!(box instanceof A.SpanBox && box.isSpaceOnly)) break; box._isTrailingSpace = true; ++t2; this._trailingSpaceBoxCount = t2; } }, findNextBreak$0() { var maxEnd, _this = this, nextBreak = _this._cachedNextBreak, text = _this.paragraph.plainText; if (nextBreak == null || _this.__engine$_end.index >= nextBreak.index) { maxEnd = _this.spanometer._currentSpan.end; nextBreak = _this._cachedNextBreak = A.nextLineBreak(text, _this.__engine$_end.index, maxEnd); } return A.getDirectionalBlockEnd(text, _this.__engine$_end, nextBreak); }, nextLine$0() { var _this = this, t1 = _this.__engine$_end; return A.LineBuilder$_(_this.paragraph, _this.spanometer, _this.accumulatedHeight + (_this.ascent + _this.descent), _this.lineNumber + 1, _this.maxWidth, t1); } }; A.Spanometer.prototype = { set$currentSpan(span) { var t1, value, t2, t3, ruler, cssFontString, _this = this; if (span == _this._currentSpan) return; _this._currentSpan = span; if (span == null) { _this._currentRuler = null; return; } t1 = span.style; value = t1.__EngineTextStyle_heightStyle; if (value === $) { t2 = t1.get$effectiveFontFamily(); t3 = t1.fontSize; if (t3 == null) t3 = 14; A._lateInitializeOnceCheck(t1.__EngineTextStyle_heightStyle, "heightStyle"); value = t1.__EngineTextStyle_heightStyle = new A.TextHeightStyle(t2, t3, t1.height, null, null); } ruler = $.Spanometer__rulers.$index(0, value); if (ruler == null) { t2 = $.$get$Spanometer__rulerHost(); t3 = document.createElement("flt-paragraph"); ruler = new A.TextHeightRuler(value, t2, new A.TextDimensions(t3)); $.Spanometer__rulers.$indexSet(0, value, ruler); } _this._currentRuler = ruler; cssFontString = t1.get$cssFontString(); if (_this._cssFontString !== cssFontString) { _this._cssFontString = cssFontString; _this.context.font = cssFontString; } }, forceBreak$4$allowEmpty$availableWidth(start, end, allowEmpty, availableWidth) { var high, low, mid, width; this._currentSpan.toString; if (availableWidth <= 0) return allowEmpty ? start : start + 1; high = end; low = start; do { mid = B.JSInt_methods._tdivFast$1(low + high, 2); width = this._measure$2(start, mid); if (width < availableWidth) low = mid; else { low = width > availableWidth ? low : mid; high = mid; } } while (high - low > 1); return low === start && !allowEmpty ? low + 1 : low; }, _measure$2(start, end) { return A.measureSubstring(this.context, this.paragraph.plainText, start, end, this._currentSpan.style.letterSpacing); } }; A.LineCharProperty.prototype = { toString$0(_) { return "LineCharProperty." + this._core$_name; } }; A.LineBreakType.prototype = { toString$0(_) { return "LineBreakType." + this._core$_name; } }; A.LineBreakResult.prototype = { get$hashCode(_) { var _this = this; return A.hashValues(_this.index, _this.indexWithoutTrailingNewlines, _this.indexWithoutTrailingSpaces, _this.type, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.LineBreakResult && other.index === _this.index && other.indexWithoutTrailingNewlines === _this.indexWithoutTrailingNewlines && other.indexWithoutTrailingSpaces === _this.indexWithoutTrailingSpaces && other.type === _this.type; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.RulerHost.prototype = { dispose$0(_) { J.remove$0$ax(this._rulerHost); } }; A.TextPaintService.prototype = { paint$2(canvas, offset) { var t2, _i, line, t3, lastBox, t4, _i0, box, background, t5, rect, lines = this.paragraph.get$_layoutService().lines, t1 = lines.length; if (t1 === 0) return; for (t2 = type$.nullable_SurfacePaint, _i = 0; _i < lines.length; lines.length === t1 || (0, A.throwConcurrentModificationError)(lines), ++_i) { line = lines[_i]; t3 = line.boxes; if (t3.length === 0) continue; lastBox = B.JSArray_methods.get$last(t3); for (t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i0) { box = t3[_i0]; if (!(box === lastBox && box instanceof A.SpanBox && box.isSpaceOnly)) if (box instanceof A.SpanBox) { background = t2._as(box.span.style.background); if (background != null) { t5 = box.intersect$4$forPainting(line, box.start.index, box.end.index, true); rect = new A.Rect(t5.left, t5.top, t5.right, t5.bottom).shift$1(offset); background._frozen = true; canvas.drawRect$2(0, rect, background._paintData); } } this._paintText$4(canvas, offset, line, box); } } }, _paintText$4(canvas, offset, line, box) { var t1, foreground, t2, paint, t3, t4, t5, x, y, text, letterSpacing, len, charX, i, char, ctx, ellipsis, _null = null; if (box instanceof A.SpanBox) { t1 = box.span.style; foreground = t1.foreground; t2 = foreground == null; if (!t2) { type$.SurfacePaint._as(foreground); paint = foreground; } else { t3 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t4 = t1.color; t4.toString; t3.set$color(0, t4); type$.SurfacePaint._as(t3); paint = t3; } t3 = t1.get$cssFontString(); if (t3 !== canvas._cachedLastCssFont) { t4 = canvas._canvasPool; t4.get$context(t4).font = t3; canvas._cachedLastCssFont = t3; } t3 = paint._frozen = true; t4 = paint._paintData; t5 = canvas._canvasPool; t5.get$contextHandle().setUpPaint$2(t4, _null); t4 = offset._dx + line.left; x = t4 + box.get$left(box); y = offset._dy + line.baseline; if (!box.isSpaceOnly) { text = B.JSString_methods.substring$2(this.paragraph.plainText, box.start.index, box.end.indexWithoutTrailingNewlines); letterSpacing = t1.letterSpacing; if (letterSpacing != null ? letterSpacing === 0 : t3) { t3 = t2 ? _null : foreground.get$style(foreground); canvas.drawText$5$shadows$style(text, x, y, t1.shadows, t3); } else { len = text.length; for (t1 = t1.shadows, charX = x, i = 0; i < len; ++i) { char = text[i]; t3 = B.JSNumber_methods.roundToDouble$0(charX); canvas.drawText$5$shadows$style(char, t3, y, t1, t2 ? _null : foreground.get$style(foreground)); ctx = t5.__engine$_context; if (ctx == null) { t5._createCanvas$0(); t3 = t5.__engine$_context; t3.toString; ctx = t3; } t3 = ctx.measureText(char).width; t3.toString; charX += letterSpacing + t3; } } } ellipsis = line.ellipsis; if (ellipsis != null && box === B.JSArray_methods.get$last(line.boxes)) { t1 = box.get$right(box); t2 = t2 ? _null : foreground.get$style(foreground); canvas.drawText$4$style(ellipsis, t4 + t1, y, t2); } t5.get$contextHandle().tearDownPaint$0(); } } }; A.EngineLineMetrics.prototype = { get$hashCode(_) { var _this = this; return A.hashValues(null, _this.startIndex, _this.endIndex, _this.hardBreak, _this.ascent, _this.descent, 1 / 0, _this.height, _this.width, _this.left, _this.baseline, _this.lineNumber, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.EngineLineMetrics) if (other.startIndex === _this.startIndex) if (other.endIndex === _this.endIndex) if (other.hardBreak === _this.hardBreak) if (other.ascent === _this.ascent) if (other.descent === _this.descent) t1 = other.height === _this.height && other.width === _this.width && other.left === _this.left && other.baseline === _this.baseline && other.lineNumber === _this.lineNumber; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; }, $isLineMetrics: 1, get$descent(receiver) { return this.descent; }, get$baseline(receiver) { return this.baseline; }, get$lineNumber(receiver) { return this.lineNumber; } }; A.EngineParagraphStyle.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.EngineParagraphStyle && other.textAlign === _this.textAlign && other.textDirection == _this.textDirection && other.fontWeight == _this.fontWeight && other.fontStyle == _this.fontStyle && other.maxLines == _this.maxLines && other.fontFamily == _this.fontFamily && other.fontSize == _this.fontSize && other.height == _this.height && J.$eq$(other._textHeightBehavior, _this._textHeightBehavior) && other.ellipsis == _this.ellipsis && J.$eq$(other.locale, _this.locale); }, get$hashCode(_) { var _this = this; return A.hashValues(_this.textAlign, _this.textDirection, _this.fontWeight, _this.fontStyle, _this.maxLines, _this.fontFamily, _this.fontSize, _this.height, _this._textHeightBehavior, _this.ellipsis, _this.locale, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.EngineTextStyle.prototype = { get$effectiveFontFamily() { var t1 = this.fontFamily; if (t1.length === 0) return "sans-serif"; return t1; }, get$cssFontString() { var t2, t3, t4, _this = this, t1 = _this._cssFontString; if (t1 == null) { t1 = _this.fontStyle; t2 = _this.fontWeight; t3 = _this.fontSize; t4 = _this.get$effectiveFontFamily(); if (t1 != null) t1 = t1 === B.FontStyle_0 ? "normal" : "italic"; else t1 = "normal"; t1 += " "; t1 = (t2 != null ? t1 + A.S(A.fontWeightToCss(t2)) : t1 + "normal") + " "; t1 = t3 != null ? t1 + B.JSNumber_methods.floor$0(t3) : t1 + "14"; t4 = t1 + "px " + A.S(A.canonicalizeFontFamily(t4)); t4 = _this._cssFontString = t4.charCodeAt(0) == 0 ? t4 : t4; t1 = t4; } return t1; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.EngineTextStyle && J.$eq$(other.color, _this.color) && J.$eq$(other.decoration, _this.decoration) && J.$eq$(other.decorationColor, _this.decorationColor) && other.decorationStyle == _this.decorationStyle && other.fontWeight == _this.fontWeight && other.fontStyle == _this.fontStyle && other.textBaseline == _this.textBaseline && other.fontFamily === _this.fontFamily && other.fontSize == _this.fontSize && other.letterSpacing == _this.letterSpacing && other.wordSpacing == _this.wordSpacing && other.height == _this.height && J.$eq$(other.locale, _this.locale) && other.background == _this.background && other.foreground == _this.foreground && A.listEquals(other.shadows, _this.shadows) && A.listEquals(other.fontFamilyFallback, _this.fontFamilyFallback); }, get$hashCode(_) { var _this = this; return A.hashValues(_this.color, _this.decoration, _this.decorationColor, _this.decorationStyle, _this.decorationThickness, _this.fontWeight, _this.fontStyle, _this.textBaseline, _this.fontFamily, _this.fontFamilyFallback, _this.fontSize, _this.letterSpacing, _this.wordSpacing, _this.height, _this.locale, _this.background, _this.foreground, _this.shadows); }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.EngineStrutStyle.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.EngineStrutStyle) if (other._fontFamily == _this._fontFamily) if (other.__engine$_fontSize == _this.__engine$_fontSize) if (other.__engine$_height == _this.__engine$_height) t1 = other._fontWeight == _this._fontWeight && other._fontStyle == _this._fontStyle && other._forceStrutHeight == _this._forceStrutHeight && A.listEquals(other._fontFamilyFallback, _this._fontFamilyFallback); else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.hashValues(_this._fontFamily, _this._fontFamilyFallback, _this.__engine$_fontSize, _this.__engine$_height, _this._leading, _this._leadingDistribution, _this._fontWeight, _this._fontStyle, _this._forceStrutHeight, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.ParagraphPlaceholder.prototype = {}; A.TextHeightStyle.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.TextHeightStyle && other.get$hashCode(other) === this.get$hashCode(this); }, get$hashCode(_) { var result, _this = this, value = _this.__TextHeightStyle_hashCode; if (value === $) { result = A.hashValues(_this.fontFamily, _this.fontSize, _this.height, A.hashList(_this.fontFeatures), A.hashList(_this.fontVariations), B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); A._lateInitializeOnceCheck(_this.__TextHeightStyle_hashCode, "hashCode"); _this.__TextHeightStyle_hashCode = result; value = result; } return value; } }; A.TextDimensions.prototype = {}; A.TextHeightRuler.prototype = { get$__engine$_host() { var host, t1, t2, t3, style, t4, height, _this = this, value = _this.__TextHeightRuler__host; if (value === $) { host = document.createElement("div"); t1 = host.style; t1.visibility = "hidden"; t1.position = "absolute"; t1.top = "0"; t1.left = "0"; t1.display = "flex"; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "flex-direction"), "row", ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "align-items"), "baseline", ""); t1.margin = "0"; t1.border = "0"; t1.padding = "0"; t1 = _this._dimensions; t2 = _this.textHeightStyle; t3 = t1.__engine$_element; style = t3.style; t4 = B.JSNumber_methods.floor$0(t2.fontSize); style.fontSize = "" + t4 + "px"; t4 = A.canonicalizeFontFamily(t2.fontFamily); style.fontFamily = t4 == null ? "" : t4; height = t2.height; if (height != null) { t2 = B.JSNumber_methods.toString$0(height); style.lineHeight = t2; } t1._cachedBoundingClientRect = null; t2 = t3.style; t2.whiteSpace = "pre"; t1._cachedBoundingClientRect = null; t3.textContent = " "; host.appendChild(t3); t1._cachedBoundingClientRect = null; _this.rulerHost._rulerHost.appendChild(host); A._lateInitializeOnceCheck(_this.__TextHeightRuler__host, "_host"); _this.__TextHeightRuler__host = host; value = host; } return value; }, get$alphabeticBaseline(_) { var probe, t1, _this = this, value = _this.__TextHeightRuler_alphabeticBaseline; if (value === $) { value = _this.__TextHeightRuler__probe; if (value === $) { probe = document.createElement("div"); _this.get$__engine$_host().appendChild(probe); A._lateInitializeOnceCheck(_this.__TextHeightRuler__probe, "_probe"); _this.__TextHeightRuler__probe = probe; value = probe; } t1 = value.getBoundingClientRect().bottom; t1.toString; A._lateInitializeOnceCheck(_this.__TextHeightRuler_alphabeticBaseline, "alphabeticBaseline"); _this.__TextHeightRuler_alphabeticBaseline = t1; value = t1; } return value; }, get$height(_) { var t1, t2, cachedHeight, _this = this, value = _this.__TextHeightRuler_height; if (value === $) { t1 = _this._dimensions; t2 = t1._cachedBoundingClientRect; t1 = (t2 == null ? t1._cachedBoundingClientRect = t1.__engine$_element.getBoundingClientRect() : t2).height; t1.toString; t2 = $.$get$_browserEngine(); if (t2 === B.BrowserEngine_2 && true) cachedHeight = t1 + 1; else cachedHeight = t1; A._lateInitializeOnceCheck(_this.__TextHeightRuler_height, "height"); value = _this.__TextHeightRuler_height = cachedHeight; } return value; }, dispose$0(_) { B.DivElement_methods.remove$0(this.get$__engine$_host()); } }; A.DirectionalPosition.prototype = {}; A._ComparisonResult.prototype = { toString$0(_) { return "_ComparisonResult." + this._core$_name; } }; A.UnicodeRange.prototype = { compare$1(value) { if (value < this.start) return B._ComparisonResult_2; if (value > this.end) return B._ComparisonResult_1; return B._ComparisonResult_0; } }; A.UnicodePropertyLookup.prototype = { find$2(_, text, index) { var codePoint = A.getCodePoint(text, index); return codePoint == null ? this.defaultProperty : this.findForChar$1(codePoint); }, findForChar$1(char) { var t1, cacheHit, rangeIndex, result, _this = this; if (char == null) return _this.defaultProperty; t1 = _this.__engine$_cache; cacheHit = t1.$index(0, char); if (cacheHit != null) return cacheHit; rangeIndex = _this._binarySearch$1(char); result = rangeIndex === -1 ? _this.defaultProperty : _this.ranges[rangeIndex].property; t1.$indexSet(0, char, result); return result; }, _binarySearch$1(value) { var min, mid, t1 = this.ranges, max = t1.length; for (min = 0; min < max;) { mid = min + B.JSInt_methods._shrOtherPositive$1(max - min, 1); switch (t1[mid].compare$1(value).index) { case 1: min = mid + 1; break; case 2: max = mid; break; case 0: return mid; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } return -1; } }; A.WordCharProperty.prototype = { toString$0(_) { return "WordCharProperty." + this._core$_name; } }; A._FindBreakDirection.prototype = {}; A.BrowserAutofillHints.prototype = {}; A.EngineInputType.prototype = { get$submitActionOnEnter() { return true; }, createDomElement$0() { return A.InputElement_InputElement(null); }, configureInputMode$1(domElement) { var t1; if (this.get$inputmodeAttribute() == null) return; t1 = $.$get$_operatingSystem(); if (t1 !== B.OperatingSystem_0) t1 = t1 === B.OperatingSystem_1 || this.get$inputmodeAttribute() === "none"; else t1 = true; if (t1) { t1 = this.get$inputmodeAttribute(); t1.toString; domElement.setAttribute("inputmode", t1); } } }; A.NoTextInputType.prototype = { get$inputmodeAttribute() { return "none"; } }; A.TextInputType0.prototype = { get$inputmodeAttribute() { return "text"; } }; A.NumberInputType.prototype = { get$inputmodeAttribute() { return "numeric"; } }; A.DecimalInputType.prototype = { get$inputmodeAttribute() { return "decimal"; } }; A.PhoneInputType.prototype = { get$inputmodeAttribute() { return "tel"; } }; A.EmailInputType.prototype = { get$inputmodeAttribute() { return "email"; } }; A.UrlInputType.prototype = { get$inputmodeAttribute() { return "url"; } }; A.MultilineInputType.prototype = { get$inputmodeAttribute() { return null; }, get$submitActionOnEnter() { return false; }, createDomElement$0() { return document.createElement("textarea"); } }; A.TextCapitalization.prototype = { toString$0(_) { return "TextCapitalization." + this._core$_name; } }; A.TextCapitalizationConfig.prototype = { setAutocapitalizeAttribute$1(domElement) { var t1, autocapitalize, _s9_ = "sentences", _s14_ = "autocapitalize"; switch (this.textCapitalization.index) { case 0: t1 = $.$get$_browserEngine(); autocapitalize = t1 === B.BrowserEngine_1 ? _s9_ : "words"; break; case 2: autocapitalize = "characters"; break; case 1: autocapitalize = _s9_; break; case 3: default: autocapitalize = "off"; break; } if (type$.InputElement._is(domElement)) domElement.setAttribute(_s14_, autocapitalize); else if (type$.TextAreaElement._is(domElement)) domElement.setAttribute(_s14_, autocapitalize); } }; A.EngineAutofillForm.prototype = { addInputEventListeners$0() { var t1 = this.elements, subscriptions = A._setArrayType([], type$.JSArray_StreamSubscription_Event); new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, new A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey(this, subscriptions)); return subscriptions; } }; A.EngineAutofillForm_fromFrameworkMessage_closure.prototype = { call$1(e) { e.preventDefault(); }, $signature: 80 }; A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey.prototype = { call$1(key) { var t1 = this.$this, t2 = t1.elements.$index(0, key); t2.toString; this.subscriptions.push(A._EventStreamSubscription$(t2, "input", new A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure(t1, key, t2), false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); }, $signature: 117 }; A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure.prototype = { call$1(e) { var newEditingState, t1 = this.$this.items, t2 = this.key; if (t1.$index(0, t2) == null) throw A.wrapException(A.StateError$("AutofillInfo must have a valid uniqueIdentifier.")); else { t1 = t1.$index(0, t2); t1.toString; newEditingState = A.EditingState_EditingState$fromDomElement(this.element); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall(string$.TextInT, [0, A.LinkedHashMap_LinkedHashMap$_literal([t1.uniqueIdentifier, newEditingState.toFlutter$0()], type$.nullable_String, type$.dynamic)])), A._engine___emptyCallback$closure()); } }, $signature: 69 }; A.AutofillInfo.prototype = { applyToDomElement$2$focusedElement(domElement, focusedElement) { var t1, _s8_ = "password", autofillHint = this.autofillHint, placeholder = this.placeholder; if (type$.InputElement._is(domElement)) { if (placeholder != null) domElement.placeholder = placeholder; t1 = autofillHint == null; if (!t1) { domElement.name = autofillHint; domElement.id = autofillHint; if (B.JSString_methods.contains$1(autofillHint, _s8_)) domElement.type = _s8_; else domElement.type = "text"; } domElement.autocomplete = t1 ? "on" : autofillHint; } else if (type$.TextAreaElement._is(domElement)) { if (placeholder != null) domElement.placeholder = placeholder; t1 = autofillHint == null; if (!t1) { domElement.name = autofillHint; domElement.id = autofillHint; } domElement.setAttribute("autocomplete", t1 ? "on" : autofillHint); } }, applyToDomElement$1(domElement) { return this.applyToDomElement$2$focusedElement(domElement, false); } }; A.TextEditingDeltaState.prototype = {}; A.EditingState.prototype = { toFlutter$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["text", this.text, "selectionBase", this.baseOffset, "selectionExtent", this.extentOffset], type$.String, type$.dynamic); }, get$hashCode(_) { return A.hashValues(this.text, this.baseOffset, this.extentOffset, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (A.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof A.EditingState && other.text == _this.text && other.baseOffset === _this.baseOffset && other.extentOffset === _this.extentOffset; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; }, applyToDomElement$1(domElement) { var t1, _this = this; if (type$.InputElement._is(domElement)) { domElement.value = _this.text; domElement.setSelectionRange(_this.baseOffset, _this.extentOffset); } else if (type$.TextAreaElement._is(domElement)) { domElement.value = _this.text; domElement.setSelectionRange(_this.baseOffset, _this.extentOffset); } else { t1 = domElement == null ? null : domElement.tagName; throw A.wrapException(A.UnsupportedError$("Unsupported DOM element type: <" + A.S(t1) + "> (" + J.get$runtimeType$(domElement).toString$0(0) + ")")); } } }; A.InputConfiguration.prototype = {}; A.GloballyPositionedTextEditingStrategy.prototype = { placeElement$0() { var t2, _this = this, t1 = _this.geometry; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup != null) { _this.placeForm$0(); t1 = _this.lastEditingState; if (t1 != null) t1.applyToDomElement$1(_this.domElement); _this.get$focusedFormElement().focus(); _this.domElement.focus(); } } }; A.SafariDesktopTextEditingStrategy.prototype = { placeElement$0() { var t2, _this = this, t1 = _this.geometry; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup != null) { _this.placeForm$0(); _this.get$focusedFormElement().focus(); _this.domElement.focus(); t1 = _this.lastEditingState; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }, initializeElementPlacement$0() { if (this.geometry != null) this.placeElement$0(); this.domElement.focus(); } }; A.DefaultTextEditingStrategy.prototype = { get$editingDeltaState() { var _null = null, t1 = this._editingDeltaState; if (t1 == null) { t1 = this.lastEditingState.text; t1.toString; t1 = this._editingDeltaState = new A.TextEditingDeltaState(t1, "", -1, -1, _null, _null, _null, _null); } return t1; }, get$focusedFormElement() { var t1 = A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup; return t1 == null ? null : t1.formElement; }, initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { var t1, elementStyle, t2, _this = this, _s11_ = "transparent", _s4_ = "none"; _this.domElement = inputConfig.inputType.createDomElement$0(); _this.applyConfiguration$1(inputConfig); t1 = _this.domElement; t1.classList.add("flt-text-editing"); elementStyle = t1.style; elementStyle.whiteSpace = "pre-wrap"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "align-content"), "center", ""); elementStyle.position = "absolute"; elementStyle.top = "0"; elementStyle.left = "0"; elementStyle.padding = "0"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "1", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; elementStyle.outline = _s4_; elementStyle.border = _s4_; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "resize"), _s4_, ""); B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "text-shadow"), _s11_, ""); elementStyle.overflow = "hidden"; B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "transform-origin"), "0 0 0", ""); t2 = $.$get$_browserEngine(); if (t2 !== B.BrowserEngine_0) if (t2 !== B.BrowserEngine_5) t2 = t2 === B.BrowserEngine_1; else t2 = true; else t2 = true; if (t2) t1.classList.add("transparentTextEditing"); B.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, B.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "caret-color"), _s11_, null); t1 = _this.style; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup == null) { t1 = $._flutterViewEmbedder._glassPaneShadow; t1.toString; t2 = _this.domElement; t2.toString; t1.append$1(0, t2); _this._appendedToForm = false; } _this.initializeElementPlacement$0(); _this.isEnabled = true; _this.onChange = onChange; _this.onAction = onAction; }, applyConfiguration$1(config) { var t1, t2, autofill, autocorrectValue, _this = this, _s8_ = "readonly"; _this.__DefaultTextEditingStrategy_inputConfiguration = config; t1 = config.readOnly; t2 = _this.domElement; if (t1) t2.setAttribute(_s8_, _s8_); else t2.removeAttribute(_s8_); if (config.obscureText) _this.domElement.setAttribute("type", "password"); if (config.inputType === B.C_NoTextInputType) _this.domElement.setAttribute("inputmode", "none"); autofill = config.autofill; t1 = _this.domElement; if (autofill != null) { t1.toString; autofill.applyToDomElement$2$focusedElement(t1, true); } else t1.setAttribute("autocomplete", "off"); autocorrectValue = config.autocorrect ? "on" : "off"; _this.domElement.setAttribute("autocorrect", autocorrectValue); }, initializeElementPlacement$0() { this.placeElement$0(); }, addEventHandlers$0() { var t1, t2, t3, t4, _this = this, _s18_ = "inputConfiguration"; if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup != null) B.JSArray_methods.addAll$1(_this.subscriptions, A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup.addInputEventListeners$0()); t1 = _this.subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$handleChange(); t4 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; t1.push(A._EventStreamSubscription$(t2, "input", t3, false, t4)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "keydown", _this.get$maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(A._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "beforeinput", _this.get$handleBeforeInput()); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "compositionupdate", _this.get$handleCompositionUpdate()); t3 = _this.domElement; t3.toString; t1.push(A._EventStreamSubscription$(t3, "blur", new A.DefaultTextEditingStrategy_addEventHandlers_closure(_this), false, t4)); _this.preventDefaultForMouseEvents$0(); }, updateElementPlacement$1(textGeometry) { this.geometry = textGeometry; if (this.isEnabled) this.placeElement$0(); }, updateElementStyle$1(textStyle) { var t1; this.style = textStyle; if (this.isEnabled) { t1 = this.domElement; t1.toString; textStyle.applyToDomElement$1(t1); } }, disable$0(_) { var t2, i, _this = this, _s18_ = "inputConfiguration", t1 = _this.isEnabled = false; _this.geometry = _this.style = _this._editingDeltaState = _this.lastEditingState = null; for (t2 = _this.subscriptions, i = 0; i < t2.length; ++i) J.cancel$0$z(t2[i]); B.JSArray_methods.set$length(t2, 0); if (_this._appendedToForm) { t1 = A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup; t1 = (t1 == null ? null : t1.formElement) != null; } t2 = _this.domElement; if (t1) { t2.blur(); t1 = _this.domElement; t1.toString; A._hideAutofillElements(t1, true); t1 = A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup; if (t1 != null) { t2 = t1.formIdentifier; t1 = t1.formElement; $.formsOnTheDom.$indexSet(0, t2, t1); A._hideAutofillElements(t1, true); } } else { t2.toString; J.remove$0$ax(t2); } _this.domElement = null; }, setEditingState$1(editingState) { var t1; this.lastEditingState = editingState; if (this.isEnabled) t1 = !(editingState.baseOffset >= 0 && editingState.extentOffset >= 0); else t1 = true; if (t1) return; editingState.applyToDomElement$1(this.domElement); }, placeElement$0() { this.domElement.focus(); }, placeForm$0() { var t2, t1 = A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup; t1.toString; t2 = this.domElement; t2.toString; t1 = t1.formElement; t1.appendChild(t2); $._flutterViewEmbedder._glassPaneShadow.append$1(0, t1); this._appendedToForm = true; }, handleChange$1($event) { var newEditingState, newTextEditingDeltaState, _this = this, t1 = _this.domElement; t1.toString; newEditingState = A.EditingState_EditingState$fromDomElement(t1); newTextEditingDeltaState = A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").enableDeltaModel ? A.TextEditingDeltaState_inferDeltaState(newEditingState, _this.lastEditingState, _this.get$editingDeltaState()) : null; if (!newEditingState.$eq(0, _this.lastEditingState)) { _this.lastEditingState = newEditingState; _this._editingDeltaState = newTextEditingDeltaState; _this.onChange.call$2(newEditingState, newTextEditingDeltaState); _this._editingDeltaState = null; } }, handleBeforeInput$1($event) { var _this = this, eventData = A._asStringQ($event.data), inputType = A._asStringQ($event.inputType); if (inputType != null) if (B.JSString_methods.contains$1(inputType, "delete")) { _this.get$editingDeltaState().deltaText = ""; _this.get$editingDeltaState().deltaEnd = _this.lastEditingState.extentOffset; } else if (inputType === "insertLineBreak") { _this.get$editingDeltaState().deltaText = "\n"; _this.get$editingDeltaState().deltaStart = _this.lastEditingState.extentOffset; _this.get$editingDeltaState().deltaEnd = _this.lastEditingState.extentOffset; } else if (eventData != null) { _this.get$editingDeltaState().deltaText = eventData; _this.get$editingDeltaState().deltaStart = _this.lastEditingState.extentOffset; _this.get$editingDeltaState().deltaEnd = _this.lastEditingState.extentOffset; } }, handleCompositionUpdate$1($event) { var newEditingState, t1 = this.domElement; t1.toString; newEditingState = A.EditingState_EditingState$fromDomElement(t1); this.get$editingDeltaState().composingOffset = newEditingState.baseOffset; this.get$editingDeltaState().composingExtent = newEditingState.extentOffset; }, maybeSendAction$1($event) { var t1, _s18_ = "inputConfiguration"; if (type$.KeyboardEvent._is($event)) if (A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).inputType.get$submitActionOnEnter() && $event.keyCode === 13) { $event.preventDefault(); t1 = this.onAction; t1.toString; t1.call$1(A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).inputAction); } }, enable$3$onAction$onChange(_, inputConfig, onAction, onChange) { var t1, _this = this; _this.initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange); _this.addEventHandlers$0(); t1 = _this.lastEditingState; if (t1 != null) _this.setEditingState$1(t1); _this.domElement.focus(); }, preventDefaultForMouseEvents$0() { var t3, _this = this, t1 = _this.subscriptions, t2 = _this.domElement; t2.toString; t3 = type$._ElementEventStreamImpl_legacy_MouseEvent._precomputed1; t1.push(A._EventStreamSubscription$(t2, "mousedown", new A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure(), false, t3)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "mouseup", new A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0(), false, t3)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "mousemove", new A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1(), false, t3)); } }; A.DefaultTextEditingStrategy_addEventHandlers_closure.prototype = { call$1(_) { this.$this.domElement.focus(); }, $signature: 69 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure.prototype = { call$1(_) { _.preventDefault(); }, $signature: 302 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0.prototype = { call$1(_) { _.preventDefault(); }, $signature: 302 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1.prototype = { call$1(_) { _.preventDefault(); }, $signature: 302 }; A.IOSTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { var t1, t2, _this = this; _this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); t1 = inputConfig.inputType; t2 = _this.domElement; t2.toString; t1.configureInputMode$1(t2); if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup != null) _this.placeForm$0(); t1 = inputConfig.textCapitalization; t2 = _this.domElement; t2.toString; t1.setAutocapitalizeAttribute$1(t2); }, initializeElementPlacement$0() { var t1 = this.domElement.style; t1.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(-9999px, -9999px)", ""); this._canPosition = false; }, addEventHandlers$0() { var t1, t2, t3, t4, blurWatch, _this = this, _s18_ = "inputConfiguration"; if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup != null) B.JSArray_methods.addAll$1(_this.subscriptions, A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup.addInputEventListeners$0()); t1 = _this.subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$handleChange(); t4 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; t1.push(A._EventStreamSubscription$(t2, "input", t3, false, t4)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "keydown", _this.get$maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(A._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "beforeinput", _this.get$handleBeforeInput()); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "compositionupdate", _this.get$handleCompositionUpdate()); t3 = _this.domElement; t3.toString; t1.push(A._EventStreamSubscription$(t3, "focus", new A.IOSTextEditingStrategy_addEventHandlers_closure(_this), false, t4)); _this._addTapListener$0(); blurWatch = new A.Stopwatch(); $.$get$Stopwatch__frequency(); blurWatch.start$0(0); t3 = _this.domElement; t3.toString; t1.push(A._EventStreamSubscription$(t3, "blur", new A.IOSTextEditingStrategy_addEventHandlers_closure0(_this, blurWatch), false, t4)); }, updateElementPlacement$1(textGeometry) { var _this = this; _this.geometry = textGeometry; if (_this.isEnabled && _this._canPosition) _this.placeElement$0(); }, disable$0(_) { var t1; this.super$DefaultTextEditingStrategy$disable(0); t1 = this._positionInputElementTimer; if (t1 != null) t1.cancel$0(0); this._positionInputElementTimer = null; }, _addTapListener$0() { var t1 = this.domElement; t1.toString; this.subscriptions.push(A._EventStreamSubscription$(t1, "click", new A.IOSTextEditingStrategy__addTapListener_closure(this), false, type$._ElementEventStreamImpl_legacy_MouseEvent._precomputed1)); }, _schedulePlacement$0() { var t1 = this._positionInputElementTimer; if (t1 != null) t1.cancel$0(0); this._positionInputElementTimer = A.Timer_Timer(B.Duration_100000, new A.IOSTextEditingStrategy__schedulePlacement_closure(this)); }, placeElement$0() { var t1, t2; this.domElement.focus(); t1 = this.geometry; if (t1 != null) { t2 = this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; A.IOSTextEditingStrategy_addEventHandlers_closure.prototype = { call$1(_) { this.$this._schedulePlacement$0(); }, $signature: 69 }; A.IOSTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1(_) { var isFastCallback = A.Duration$(0, 0, this.blurWatch.get$elapsedMicroseconds(), 0, 0, 0)._duration < 200000, t1 = document.hasFocus() && isFastCallback, t2 = this.$this; if (t1) t2.domElement.focus(); else t2.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, $signature: 69 }; A.IOSTextEditingStrategy__addTapListener_closure.prototype = { call$1(_) { var t2, t1 = this.$this; if (t1._canPosition) { t2 = t1.domElement.style; t2.toString; B.CssStyleDeclaration_methods._setPropertyHelper$3(t2, B.CssStyleDeclaration_methods._browserPropertyName$1(t2, "transform"), "translate(-9999px, -9999px)", ""); t1._canPosition = false; t1._schedulePlacement$0(); } }, $signature: 302 }; A.IOSTextEditingStrategy__schedulePlacement_closure.prototype = { call$0() { var t1 = this.$this; t1._canPosition = true; t1.placeElement$0(); }, $signature: 0 }; A.AndroidTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { var t1, t2, _this = this; _this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); t1 = inputConfig.inputType; t2 = _this.domElement; t2.toString; t1.configureInputMode$1(t2); if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup != null) _this.placeForm$0(); else { t1 = $._flutterViewEmbedder._glassPaneShadow; t1.toString; t2 = _this.domElement; t2.toString; t1.append$1(0, t2); } t1 = inputConfig.textCapitalization; t2 = _this.domElement; t2.toString; t1.setAutocapitalizeAttribute$1(t2); }, addEventHandlers$0() { var t1, t2, t3, t4, _this = this, _s18_ = "inputConfiguration"; if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup != null) B.JSArray_methods.addAll$1(_this.subscriptions, A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup.addInputEventListeners$0()); t1 = _this.subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$handleChange(); t4 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; t1.push(A._EventStreamSubscription$(t2, "input", t3, false, t4)); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "keydown", _this.get$maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(A._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "beforeinput", _this.get$handleBeforeInput()); t3 = _this.domElement; t3.toString; J.addEventListener$2$x(t3, "compositionupdate", _this.get$handleCompositionUpdate()); t3 = _this.domElement; t3.toString; t1.push(A._EventStreamSubscription$(t3, "blur", new A.AndroidTextEditingStrategy_addEventHandlers_closure(_this), false, t4)); }, placeElement$0() { var t1, t2; this.domElement.focus(); t1 = this.geometry; if (t1 != null) { t2 = this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; A.AndroidTextEditingStrategy_addEventHandlers_closure.prototype = { call$1(_) { var t1 = this.$this; if (document.hasFocus()) t1.domElement.focus(); else t1.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, $signature: 69 }; A.FirefoxTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); if (A._lateReadCheck(this.__DefaultTextEditingStrategy_inputConfiguration, "inputConfiguration").autofillGroup != null) this.placeForm$0(); }, addEventHandlers$0() { var t1, t2, t3, t4, t5, _this = this, _s18_ = "inputConfiguration"; if (A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup != null) B.JSArray_methods.addAll$1(_this.subscriptions, A._lateReadCheck(_this.__DefaultTextEditingStrategy_inputConfiguration, _s18_).autofillGroup.addInputEventListeners$0()); t1 = _this.subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$handleChange(); t4 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; t1.push(A._EventStreamSubscription$(t2, "input", t3, false, t4)); t2 = _this.domElement; t2.toString; t5 = type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1; t1.push(A._EventStreamSubscription$(t2, "keydown", _this.get$maybeSendAction(), false, t5)); t2 = _this.domElement; t2.toString; J.addEventListener$2$x(t2, "beforeinput", _this.get$handleBeforeInput()); t2 = _this.domElement; t2.toString; J.addEventListener$2$x(t2, "compositionupdate", _this.get$handleCompositionUpdate()); t2 = _this.domElement; t2.toString; t1.push(A._EventStreamSubscription$(t2, "keyup", new A.FirefoxTextEditingStrategy_addEventHandlers_closure(_this), false, t5)); t5 = _this.domElement; t5.toString; t1.push(A._EventStreamSubscription$(t5, "select", t3, false, t4)); t3 = _this.domElement; t3.toString; t1.push(A._EventStreamSubscription$(t3, "blur", new A.FirefoxTextEditingStrategy_addEventHandlers_closure0(_this), false, t4)); _this.preventDefaultForMouseEvents$0(); }, _postponeFocus$0() { A.Timer_Timer(B.Duration_0, new A.FirefoxTextEditingStrategy__postponeFocus_closure(this)); }, placeElement$0() { var t1, t2, _this = this; _this.domElement.focus(); t1 = _this.geometry; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } t1 = _this.lastEditingState; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; A.FirefoxTextEditingStrategy_addEventHandlers_closure.prototype = { call$1($event) { this.$this.handleChange$1($event); }, $signature: 2118 }; A.FirefoxTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1(_) { this.$this._postponeFocus$0(); }, $signature: 69 }; A.FirefoxTextEditingStrategy__postponeFocus_closure.prototype = { call$0() { this.$this.domElement.focus(); }, $signature: 0 }; A.TextInputCommand.prototype = {}; A.TextInputSetClient.prototype = { run$1(textEditing) { var t1 = textEditing.__engine$_clientId; if (t1 != null && t1 !== this.clientId && textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } textEditing.__engine$_clientId = this.clientId; textEditing.configuration = this.configuration; } }; A.TextInputUpdateConfig.prototype = { run$1(textEditing) { var t1 = textEditing.get$strategy(), t2 = textEditing.configuration; t2.toString; t1.applyConfiguration$1(t2); } }; A.TextInputSetEditingState.prototype = { run$1(textEditing) { textEditing.get$strategy().setEditingState$1(this.state); } }; A.TextInputShow.prototype = { run$1(textEditing) { if (!textEditing.isEditing) textEditing._startEditing$0(); } }; A.TextInputSetEditableSizeAndTransform.prototype = { run$1(textEditing) { textEditing.get$strategy().updateElementPlacement$1(this.geometry); } }; A.TextInputSetStyle.prototype = { run$1(textEditing) { textEditing.get$strategy().updateElementStyle$1(this.style); } }; A.TextInputClearClient.prototype = { run$1(textEditing) { if (textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } } }; A.TextInputHide.prototype = { run$1(textEditing) { if (textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } } }; A.TextInputSetMarkedTextRect.prototype = { run$1(textEditing) { } }; A.TextInputSetCaretRect.prototype = { run$1(textEditing) { } }; A.TextInputRequestAutofill.prototype = { run$1(textEditing) { } }; A.TextInputFinishAutofillContext.prototype = { run$1(textEditing) { textEditing.sendTextConnectionClosedToFrameworkIfAny$0(); if (this.saveForm) A.saveForms(); A.cleanForms(); } }; A.saveForms_closure.prototype = { call$2(identifier, form) { type$.InputElement._as(J.get$first$ax(form.getElementsByClassName("submitBtn"))).click(); }, $signature: 2122 }; A.TextEditingChannel.prototype = { handleTextInput$2(data, callback) { var t1, t2, command, transformList, textAlignIndex, textDirectionIndex, fontWeightIndex, fontWeight, $call = B.C_JSONMethodCodec.decodeMethodCall$1(data); switch ($call.method) { case "TextInput.setClient": t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); command = new A.TextInputSetClient(A._asIntS(t2.$index(t1, 0)), A.InputConfiguration$fromFrameworkMessage(type$.Map_String_dynamic._as(t2.$index(t1, 1)))); break; case "TextInput.updateConfig": this.implementation.configuration = A.InputConfiguration$fromFrameworkMessage(type$.Map_String_dynamic._as($call.$arguments)); command = B.C_TextInputUpdateConfig; break; case "TextInput.setEditingState": command = new A.TextInputSetEditingState(A.EditingState_EditingState$fromFrameworkMessage(type$.Map_String_dynamic._as($call.$arguments))); break; case "TextInput.show": command = B.C_TextInputShow; break; case "TextInput.setEditableSizeAndTransform": t1 = type$.Map_String_dynamic._as($call.$arguments); t2 = J.getInterceptor$asx(t1); transformList = A.List_List$from(type$.List_dynamic._as(t2.$index(t1, "transform")), true, type$.double); command = new A.TextInputSetEditableSizeAndTransform(new A.EditableTextGeometry(A._asDoubleS(t2.$index(t1, "width")), A._asDoubleS(t2.$index(t1, "height")), new Float32Array(A._ensureNativeList(transformList)))); break; case "TextInput.setStyle": t1 = type$.Map_String_dynamic._as($call.$arguments); t2 = J.getInterceptor$asx(t1); textAlignIndex = A._asIntS(t2.$index(t1, "textAlignIndex")); textDirectionIndex = A._asIntS(t2.$index(t1, "textDirectionIndex")); fontWeightIndex = A._asIntQ(t2.$index(t1, "fontWeightIndex")); fontWeight = fontWeightIndex != null ? A.fontWeightIndexToCss(fontWeightIndex) : "normal"; command = new A.TextInputSetStyle(new A.EditableTextStyle(A._asDoubleQ(t2.$index(t1, "fontSize")), fontWeight, A._asStringQ(t2.$index(t1, "fontFamily")), B.List_s2p[textAlignIndex], B.List_TextDirection_0_TextDirection_1[textDirectionIndex])); break; case "TextInput.clearClient": command = B.C_TextInputClearClient; break; case "TextInput.hide": command = B.C_TextInputHide; break; case "TextInput.requestAutofill": command = B.C_TextInputRequestAutofill; break; case "TextInput.finishAutofillContext": command = new A.TextInputFinishAutofillContext(A._asBoolS($call.$arguments)); break; case "TextInput.setMarkedTextRect": command = B.C_TextInputSetMarkedTextRect; break; case "TextInput.setCaretRect": command = B.C_TextInputSetCaretRect; break; default: $.$get$EnginePlatformDispatcher__instance().replyToPlatformMessage$2(callback, null); return; } command.run$1(this.implementation); new A.TextEditingChannel_handleTextInput_closure(callback).call$0(); } }; A.TextEditingChannel_handleTextInput_closure.prototype = { call$0() { $.$get$EnginePlatformDispatcher__instance().replyToPlatformMessage$2(this.callback, B.C_JSONMessageCodec.encodeMessage$1([true])); }, $signature: 0 }; A.HybridTextEditing.prototype = { get$channel(_) { var value = this.__HybridTextEditing_channel; if (value === $) { A._lateInitializeOnceCheck(value, "channel"); value = this.__HybridTextEditing_channel = new A.TextEditingChannel(this); } return value; }, get$strategy() { var t1, result, t2, t3, strategy, _this = this, value = _this.__HybridTextEditing_strategy; if (value === $) { t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1)._semanticsEnabled) { t1 = A.SemanticsTextEditingStrategy_ensureInitialized(_this); result = t1; } else { t1 = $.$get$_browserEngine(); t2 = t1 === B.BrowserEngine_1; if (t2) { t3 = $.$get$_operatingSystem(); t3 = t3 === B.OperatingSystem_0; } else t3 = false; if (t3) strategy = new A.IOSTextEditingStrategy(_this, A._setArrayType([], type$.JSArray_StreamSubscription_Event)); else if (t2) strategy = new A.SafariDesktopTextEditingStrategy(_this, A._setArrayType([], type$.JSArray_StreamSubscription_Event)); else { if (t1 === B.BrowserEngine_0) { t2 = $.$get$_operatingSystem(); t2 = t2 === B.OperatingSystem_1; } else t2 = false; if (t2) strategy = new A.AndroidTextEditingStrategy(_this, A._setArrayType([], type$.JSArray_StreamSubscription_Event)); else { t2 = type$.JSArray_StreamSubscription_Event; strategy = t1 === B.BrowserEngine_2 ? new A.FirefoxTextEditingStrategy(_this, A._setArrayType([], t2)) : new A.GloballyPositionedTextEditingStrategy(_this, A._setArrayType([], t2)); } } result = strategy; } A._lateInitializeOnceCheck(_this.__HybridTextEditing_strategy, "strategy"); value = _this.__HybridTextEditing_strategy = result; } return value; }, _startEditing$0() { var t1, t2, _this = this; _this.isEditing = true; t1 = _this.get$strategy(); t2 = _this.configuration; t2.toString; t1.enable$3$onAction$onChange(0, t2, new A.HybridTextEditing__startEditing_closure(_this), new A.HybridTextEditing__startEditing_closure0(_this)); }, sendTextConnectionClosedToFrameworkIfAny$0() { var t1, _this = this; if (_this.isEditing) { _this.isEditing = false; _this.get$strategy().disable$0(0); _this.get$channel(_this); t1 = _this.__engine$_clientId; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("TextInputClient.onConnectionClosed", [t1])), A._engine___emptyCallback$closure()); } } }; A.HybridTextEditing__startEditing_closure0.prototype = { call$2(editingState, editingDeltaState) { var t2, t3, _s17_ = "flutter/textinput", t1 = this.$this; if (t1.configuration.enableDeltaModel) { t1.get$channel(t1); t1 = t1.__engine$_clientId; t2 = type$.String; t3 = type$.dynamic; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s17_, B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall(string$.TextInD, [t1, A.LinkedHashMap_LinkedHashMap$_literal(["deltas", A._setArrayType([A.LinkedHashMap_LinkedHashMap$_literal(["oldText", editingDeltaState.oldText, "deltaText", editingDeltaState.deltaText, "deltaStart", editingDeltaState.deltaStart, "deltaEnd", editingDeltaState.deltaEnd, "selectionBase", editingDeltaState.baseOffset, "selectionExtent", editingDeltaState.extentOffset], t2, t3)], type$.JSArray_Map_String_dynamic)], t2, t3)])), A._engine___emptyCallback$closure()); } else { t1.get$channel(t1); t1 = t1.__engine$_clientId; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s17_, B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("TextInputClient.updateEditingState", [t1, editingState.toFlutter$0()])), A._engine___emptyCallback$closure()); } }, $signature: 2133 }; A.HybridTextEditing__startEditing_closure.prototype = { call$1(inputAction) { var t1 = this.$this; t1.get$channel(t1); t1 = t1.__engine$_clientId; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("TextInputClient.performAction", [t1, inputAction])), A._engine___emptyCallback$closure()); }, $signature: 239 }; A.EditableTextStyle.prototype = { applyToDomElement$1(domElement) { var _this = this, t1 = domElement.style, t2 = A.textAlignToCssValue(_this.textAlign, _this.textDirection); t1.textAlign = t2; t2 = A.canonicalizeFontFamily(_this.fontFamily); t1.font = _this.fontWeight + " " + A.S(_this.fontSize) + "px " + A.S(t2); } }; A.EditableTextGeometry.prototype = { applyToDomElement$1(domElement) { var cssTransform = A.float64ListToCssTransform(this.globalTransform), t1 = domElement.style; t1.width = A.S(this.width) + "px"; t1.height = A.S(this.height) + "px"; B.CssStyleDeclaration_methods._setPropertyHelper$3(t1, B.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), cssTransform, ""); } }; A.futurize_closure.prototype = { call$1(t) { var _s16_ = "operation failed"; if (t == null) if (this._box_0.sync) throw A.wrapException(A.Exception_Exception(_s16_)); else this.completer.completeError$1(new A._Exception(_s16_)); else this.completer.complete$1(0, t); }, $signature() { return this.T._eval$1("~(0?)"); } }; A.TransformKind.prototype = { toString$0(_) { return "TransformKind." + this._core$_name; } }; A.bytesToHexString_closure.prototype = { call$1(byte) { return "0x" + B.JSString_methods.padLeft$2(J.toRadixString$1$n(byte, 16), 2, "0"); }, $signature: 284 }; A.Matrix40.prototype = { Matrix4$identity$0() { var t1 = this.__engine$_m4storage; t1[15] = 1; t1[0] = 1; t1[5] = 1; t1[10] = 1; }, setFrom$1(arg) { var argStorage = arg.__engine$_m4storage, t1 = this.__engine$_m4storage; t1[15] = argStorage[15]; t1[14] = argStorage[14]; t1[13] = argStorage[13]; t1[12] = argStorage[12]; t1[11] = argStorage[11]; t1[10] = argStorage[10]; t1[9] = argStorage[9]; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, $index(_, i) { return this.__engine$_m4storage[i]; }, $indexSet(_, i, v) { this.__engine$_m4storage[i] = v; }, translate$3(_, x, y, z) { var t1 = this.__engine$_m4storage, t2 = t1[0], t3 = t1[4], t4 = t1[8], t5 = t1[12], t6 = t1[1], t7 = t1[5], t8 = t1[9], t9 = t1[13], t10 = t1[2], t11 = t1[6], t12 = t1[10], t13 = t1[14], t14 = t1[3], t15 = t1[7], t16 = t1[11], t17 = t1[15]; t1[12] = t2 * x + t3 * y + t4 * z + t5; t1[13] = t6 * x + t7 * y + t8 * z + t9; t1[14] = t10 * x + t11 * y + t12 * z + t13; t1[15] = t14 * x + t15 * y + t16 * z + t17; }, translate$2($receiver, x, y) { return this.translate$3($receiver, x, y, 0); }, scale$2(_, x, y) { var sy = y == null ? x : y, t1 = this.__engine$_m4storage; t1[15] = t1[15]; t1[0] = t1[0] * x; t1[1] = t1[1] * x; t1[2] = t1[2] * x; t1[3] = t1[3] * x; t1[4] = t1[4] * sy; t1[5] = t1[5] * sy; t1[6] = t1[6] * sy; t1[7] = t1[7] * sy; t1[8] = t1[8] * x; t1[9] = t1[9] * x; t1[10] = t1[10] * x; t1[11] = t1[11] * x; t1[12] = t1[12]; t1[13] = t1[13]; t1[14] = t1[14]; }, scale$1($receiver, x) { return this.scale$2($receiver, x, null); }, isIdentity$0(_) { var t1 = this.__engine$_m4storage; return t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 1; }, isIdentityOrTranslation$0() { var t1 = this.__engine$_m4storage; return t1[15] === 1 && t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0; }, rotate$2(_, axis, angle) { var m23, m31, m32, m33, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, len = Math.sqrt(axis.get$length2()), axisStorage = axis.__engine$_v3storage, x = axisStorage[0] / len, y = axisStorage[1] / len, z = axisStorage[2] / len, c = Math.cos(angle), s = Math.sin(angle), $C = 1 - c, m11 = x * x * $C + c, t1 = z * s, m12 = x * y * $C - t1, t2 = y * s, m13 = x * z * $C + t2, m21 = y * x * $C + t1, m22 = y * y * $C + c; t1 = x * s; m23 = y * z * $C - t1; m31 = z * x * $C - t2; m32 = z * y * $C + t1; m33 = z * z * $C + c; t1 = this.__engine$_m4storage; t2 = t1[0]; t3 = t1[4]; t4 = t1[8]; t5 = t1[1]; t6 = t1[5]; t7 = t1[9]; t8 = t1[2]; t9 = t1[6]; t10 = t1[10]; t11 = t1[3]; t12 = t1[7]; t13 = t1[11]; t1[0] = t2 * m11 + t3 * m21 + t4 * m31; t1[1] = t5 * m11 + t6 * m21 + t7 * m31; t1[2] = t8 * m11 + t9 * m21 + t10 * m31; t1[3] = t11 * m11 + t12 * m21 + t13 * m31; t1[4] = t2 * m12 + t3 * m22 + t4 * m32; t1[5] = t5 * m12 + t6 * m22 + t7 * m32; t1[6] = t8 * m12 + t9 * m22 + t10 * m32; t1[7] = t11 * m12 + t12 * m22 + t13 * m32; t1[8] = t2 * m13 + t3 * m23 + t4 * m33; t1[9] = t5 * m13 + t6 * m23 + t7 * m33; t1[10] = t8 * m13 + t9 * m23 + t10 * m33; t1[11] = t11 * m13 + t12 * m23 + t13 * m33; }, setTranslationRaw$3(x, y, z) { var t1 = this.__engine$_m4storage; t1[14] = z; t1[13] = y; t1[12] = x; }, copyInverse$1(arg) { var invDet, t1, t2, t3, argStorage = arg.__engine$_m4storage, a00 = argStorage[0], a01 = argStorage[1], a02 = argStorage[2], a03 = argStorage[3], a10 = argStorage[4], a11 = argStorage[5], a12 = argStorage[6], a13 = argStorage[7], a20 = argStorage[8], a21 = argStorage[9], a22 = argStorage[10], a23 = argStorage[11], a30 = argStorage[12], a31 = argStorage[13], a32 = argStorage[14], a33 = argStorage[15], b00 = a00 * a11 - a01 * a10, b01 = a00 * a12 - a02 * a10, b02 = a00 * a13 - a03 * a10, b03 = a01 * a12 - a02 * a11, b04 = a01 * a13 - a03 * a11, b05 = a02 * a13 - a03 * a12, b06 = a20 * a31 - a21 * a30, b07 = a20 * a32 - a22 * a30, b08 = a20 * a33 - a23 * a30, b09 = a21 * a32 - a22 * a31, b10 = a21 * a33 - a23 * a31, b11 = a22 * a33 - a23 * a32, det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; if (det === 0) { this.setFrom$1(arg); return 0; } invDet = 1 / det; t1 = this.__engine$_m4storage; t1[0] = (a11 * b11 - a12 * b10 + a13 * b09) * invDet; t1[1] = (-a01 * b11 + a02 * b10 - a03 * b09) * invDet; t1[2] = (a31 * b05 - a32 * b04 + a33 * b03) * invDet; t1[3] = (-a21 * b05 + a22 * b04 - a23 * b03) * invDet; t2 = -a10; t1[4] = (t2 * b11 + a12 * b08 - a13 * b07) * invDet; t1[5] = (a00 * b11 - a02 * b08 + a03 * b07) * invDet; t3 = -a30; t1[6] = (t3 * b05 + a32 * b02 - a33 * b01) * invDet; t1[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet; t1[8] = (a10 * b10 - a11 * b08 + a13 * b06) * invDet; t1[9] = (-a00 * b10 + a01 * b08 - a03 * b06) * invDet; t1[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet; t1[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet; t1[12] = (t2 * b09 + a11 * b07 - a12 * b06) * invDet; t1[13] = (a00 * b09 - a01 * b07 + a02 * b06) * invDet; t1[14] = (t3 * b03 + a31 * b01 - a32 * b00) * invDet; t1[15] = (a20 * b03 - a21 * b01 + a22 * b00) * invDet; return det; }, multiply$1(_, arg) { var t1 = this.__engine$_m4storage, m33 = t1[15], m00 = t1[0], m01 = t1[4], m02 = t1[8], m03 = t1[12], m10 = t1[1], m11 = t1[5], m12 = t1[9], m13 = t1[13], m20 = t1[2], m21 = t1[6], m22 = t1[10], m23 = t1[14], m30 = t1[3], m31 = t1[7], m32 = t1[11], argStorage = arg.__engine$_m4storage, n33 = argStorage[15], n00 = argStorage[0], n01 = argStorage[4], n02 = argStorage[8], n03 = argStorage[12], n10 = argStorage[1], n11 = argStorage[5], n12 = argStorage[9], n13 = argStorage[13], n20 = argStorage[2], n21 = argStorage[6], n22 = argStorage[10], n23 = argStorage[14], n30 = argStorage[3], n31 = argStorage[7], n32 = argStorage[11]; t1[0] = m00 * n00 + m01 * n10 + m02 * n20 + m03 * n30; t1[4] = m00 * n01 + m01 * n11 + m02 * n21 + m03 * n31; t1[8] = m00 * n02 + m01 * n12 + m02 * n22 + m03 * n32; t1[12] = m00 * n03 + m01 * n13 + m02 * n23 + m03 * n33; t1[1] = m10 * n00 + m11 * n10 + m12 * n20 + m13 * n30; t1[5] = m10 * n01 + m11 * n11 + m12 * n21 + m13 * n31; t1[9] = m10 * n02 + m11 * n12 + m12 * n22 + m13 * n32; t1[13] = m10 * n03 + m11 * n13 + m12 * n23 + m13 * n33; t1[2] = m20 * n00 + m21 * n10 + m22 * n20 + m23 * n30; t1[6] = m20 * n01 + m21 * n11 + m22 * n21 + m23 * n31; t1[10] = m20 * n02 + m21 * n12 + m22 * n22 + m23 * n32; t1[14] = m20 * n03 + m21 * n13 + m22 * n23 + m23 * n33; t1[3] = m30 * n00 + m31 * n10 + m32 * n20 + m33 * n30; t1[7] = m30 * n01 + m31 * n11 + m32 * n21 + m33 * n31; t1[11] = m30 * n02 + m31 * n12 + m32 * n22 + m33 * n32; t1[15] = m30 * n03 + m31 * n13 + m32 * n23 + m33 * n33; }, multiplied$1(arg) { var t1 = new A.Matrix40(new Float32Array(16)); t1.setFrom$1(this); t1.multiply$1(0, arg); return t1; }, transform2$1(vector) { var x = vector[0], y = vector[1], t1 = this.__engine$_m4storage; vector[0] = t1[0] * x + t1[4] * y + t1[12]; vector[1] = t1[1] * x + t1[5] * y + t1[13]; }, toString$0(_) { var t1 = this.super$Object$toString(0); return t1; } }; A.Vector30.prototype = { $index(_, i) { return this.__engine$_v3storage[i]; }, $indexSet(_, i, v) { this.__engine$_v3storage[i] = v; }, get$length(_) { var t1 = this.__engine$_v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return Math.sqrt(t2 * t2 + t3 * t3 + t1 * t1); }, get$length2() { var t1 = this.__engine$_v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return t2 * t2 + t3 * t3 + t1 * t1; } }; A.EngineFlutterWindow.prototype = { EngineFlutterWindow$2(_windowId, platformDispatcher) { var _this = this, engineDispatcher = _this.platformDispatcher, t1 = _this._windowId; engineDispatcher._windows.$indexSet(0, t1, _this); engineDispatcher._windowConfigurations.$indexSet(0, t1, B.C_ViewConfiguration); if ($._isUrlStrategySet) _this._browserHistory = A.createHistoryForExistingState($._customUrlStrategy); $._hotRestartListeners.push(new A.EngineFlutterWindow_closure(_this)); }, get$browserHistory() { var urlStrategy, t1 = this._browserHistory; if (t1 == null) { if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = B.C_HashUrlStrategy; $._isUrlStrategySet = true; t1 = this._browserHistory = A.createHistoryForExistingState(urlStrategy); } return t1; }, _useSingleEntryBrowserHistory$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, urlStrategy, strategy, t1; var $async$_useSingleEntryBrowserHistory$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserHistory; if (t1 == null) { if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = B.C_HashUrlStrategy; $._isUrlStrategySet = true; t1 = $async$self._browserHistory = A.createHistoryForExistingState(urlStrategy); } if (t1 instanceof A.SingleEntryBrowserHistory) { // goto return $async$goto = 1; break; } strategy = t1.get$urlStrategy(); t1 = $async$self._browserHistory; $async$goto = 3; return A._asyncAwait(t1 == null ? null : t1.tearDown$0(), $async$_useSingleEntryBrowserHistory$0); case 3: // returning from await. $async$self._browserHistory = A.SingleEntryBrowserHistory$(strategy); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_useSingleEntryBrowserHistory$0, $async$completer); }, _useMultiEntryBrowserHistory$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, urlStrategy, strategy, t1; var $async$_useMultiEntryBrowserHistory$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserHistory; if (t1 == null) { if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = B.C_HashUrlStrategy; $._isUrlStrategySet = true; t1 = $async$self._browserHistory = A.createHistoryForExistingState(urlStrategy); } if (t1 instanceof A.MultiEntriesBrowserHistory) { // goto return $async$goto = 1; break; } strategy = t1.get$urlStrategy(); t1 = $async$self._browserHistory; $async$goto = 3; return A._asyncAwait(t1 == null ? null : t1.tearDown$0(), $async$_useMultiEntryBrowserHistory$0); case 3: // returning from await. $async$self._browserHistory = A.MultiEntriesBrowserHistory$(strategy); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_useMultiEntryBrowserHistory$0, $async$completer); }, _waitInTheLine$1(callback) { return this._waitInTheLine$body$EngineFlutterWindow(callback); }, _waitInTheLine$body$EngineFlutterWindow(callback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, result, currentPosition, completer; var $async$_waitInTheLine$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start currentPosition = $async$self._endOfTheLine; completer = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); $async$self._endOfTheLine = completer.future; $async$goto = 3; return A._asyncAwait(currentPosition, $async$_waitInTheLine$1); case 3: // returning from await. result = false; $async$handler = 4; $async$goto = 7; return A._asyncAwait(callback.call$0(), $async$_waitInTheLine$1); case 7: // returning from await. result = $async$result; $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; J.complete$0$z(completer); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally $async$returnValue = result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_waitInTheLine$1, $async$completer); }, handleNavigationMessage$1(data) { return this.handleNavigationMessage$body$EngineFlutterWindow(data); }, handleNavigationMessage$body$EngineFlutterWindow(data) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$handleNavigationMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self._waitInTheLine$1(new A.EngineFlutterWindow_handleNavigationMessage_closure($async$self, data)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleNavigationMessage$1, $async$completer); }, get$viewConfiguration() { var t1 = this.platformDispatcher._windowConfigurations.$index(0, this._windowId); return t1 == null ? B.C_ViewConfiguration : t1; }, get$physicalSize() { if (this._physicalSize == null) this.computePhysicalSize$0(); var t1 = this._physicalSize; t1.toString; return t1; }, computePhysicalSize$0() { var t1, t2, t3, windowInnerWidth, windowInnerHeight, _this = this, viewport = window.visualViewport; if (viewport != null) { t1 = $.$get$_operatingSystem(); t2 = _this._debugDevicePixelRatio; if (t1 === B.OperatingSystem_0) { t1 = document.documentElement; t3 = t1.clientWidth; t3.toString; t1 = t1.clientHeight; t1.toString; windowInnerWidth = t3 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } else { t1 = viewport.width; t1.toString; windowInnerWidth = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = viewport.height; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } } else { t1 = window.innerWidth; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerWidth = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = window.innerHeight; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } _this._physicalSize = new A.Size(windowInnerWidth, windowInnerHeight); }, computeOnScreenKeyboardInsets$1(isEditingOnMobile) { var t1, t2, windowInnerHeight, _this = this, viewport = window.visualViewport; if (viewport != null) { t1 = $.$get$_operatingSystem(); t1 = t1 === B.OperatingSystem_0 && !isEditingOnMobile; t2 = _this._debugDevicePixelRatio; if (t1) { t1 = document.documentElement.clientHeight; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } else { t1 = viewport.height; t1.toString; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } } else { t1 = window.innerHeight; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } _this._viewInsets = new A.WindowPadding(0, 0, 0, _this._physicalSize._dy - windowInnerHeight); }, isRotation$0() { var height, width, _this = this, t1 = window.visualViewport, t2 = _this._debugDevicePixelRatio; if (t1 != null) { t1 = window.visualViewport.height; t1.toString; height = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = window.visualViewport.width; t1.toString; t2 = _this._debugDevicePixelRatio; width = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } else { t1 = window.innerHeight; t1.toString; height = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = window.innerWidth; t1.toString; t2 = _this._debugDevicePixelRatio; width = t1 * (t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } t1 = _this._physicalSize; if (t1 != null) { t2 = t1._dy; if (t2 !== height && t1._dx !== width) { t1 = t1._dx; if (!(t2 > t1 && height < width)) t1 = t1 > t2 && width < height; else t1 = true; if (t1) return true; } } return false; } }; A.EngineFlutterWindow_closure.prototype = { call$0() { var t1 = this.$this._browserHistory; if (t1 != null) t1.dispose$0(0); }, $signature: 0 }; A.EngineFlutterWindow_handleNavigationMessage_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, t2, t3, t4, decoded, $arguments; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start decoded = B.C_JSONMethodCodec.decodeMethodCall$1($async$self.data); $arguments = type$.nullable_Map_String_dynamic._as(decoded.$arguments); case 3: // switch switch (decoded.method) { case "selectMultiEntryHistory": // goto case $async$goto = 5; break; case "selectSingleEntryHistory": // goto case $async$goto = 6; break; case "routeUpdated": // goto case $async$goto = 7; break; case "routeInformationUpdated": // goto case $async$goto = 8; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case $async$goto = 9; return A._asyncAwait($async$self.$this._useMultiEntryBrowserHistory$0(), $async$call$0); case 9: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 6: // case $async$goto = 10; return A._asyncAwait($async$self.$this._useSingleEntryBrowserHistory$0(), $async$call$0); case 10: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 7: // case t1 = $async$self.$this; $async$goto = 11; return A._asyncAwait(t1._useSingleEntryBrowserHistory$0(), $async$call$0); case 11: // returning from await. t1 = t1.get$browserHistory(); $arguments.toString; t1.setRouteName$1(A._asStringQ(J.$index$asx($arguments, "routeName"))); $async$returnValue = true; // goto return $async$goto = 1; break; case 8: // case t1 = $async$self.$this.get$browserHistory(); $arguments.toString; t2 = J.getInterceptor$asx($arguments); t3 = A._asStringQ(t2.$index($arguments, "location")); t4 = t2.$index($arguments, "state"); t2 = A._asBoolQ(t2.$index($arguments, "replace")); t1.setRouteName$3$replace$state(t3, t2 === true, t4); $async$returnValue = true; // goto return $async$goto = 1; break; case 4: // after switch $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A.EngineSingletonFlutterWindow.prototype = { get$devicePixelRatio(_) { var t1 = this._debugDevicePixelRatio; return t1 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t1; } }; A.WindowPadding.prototype = {}; A._DomCanvas_EngineCanvas_SaveElementStackTracking.prototype = {}; A._PersistedClipRRect_PersistedContainerSurface__DomClip.prototype = { adoptElements$1(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; A._PersistedClipRect_PersistedContainerSurface__DomClip.prototype = { adoptElements$1(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; A._PersistedPhysicalShape_PersistedContainerSurface__DomClip.prototype = { adoptElements$1(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; A.__MouseAdapter__BaseAdapter__WheelEventListenerMixin.prototype = {}; A.__PointerAdapter__BaseAdapter__WheelEventListenerMixin.prototype = {}; A.JS_CONST.prototype = {}; A.HttpException.prototype = { toString$0(_) { var t1 = "HttpException: " + this.message, uri = this.uri; if (uri != null) t1 += ", uri = " + uri.toString$0(0); return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1, get$message(receiver) { return this.message; } }; A._HeaderValue.prototype = { _HeaderValue$2(_value, parameters) { var t1 = parameters.get$isNotEmpty(parameters); if (t1) this._parameters = A.HashMap_HashMap$from(parameters, type$.String, type$.nullable_String); }, get$value(_) { return this.__http$_value; }, toString$0(_) { var parameters, t1, sb = new A.StringBuffer(""); sb._contents = this.__http$_value; parameters = this._parameters; if (parameters != null && parameters.get$isNotEmpty(parameters)) parameters.forEach$1(0, new A._HeaderValue_toString_closure(sb)); t1 = sb._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, __http$_parse$4(s, parameterSeparator, valueSeparator, preserveBackslash) { var t2, t3, t4, t5, t1 = {}; t1.index = 0; t2 = new A._HeaderValue__parse_done(t1, s); t3 = new A._HeaderValue__parse_skipWS(t1, t2, s); t4 = new A._HeaderValue__parse_parseValue(t1, t2, s, valueSeparator, parameterSeparator); t5 = new A._HeaderValue__parse_maybeExpect(t1, t2, s); t3.call$0(); this.__http$_value = t4.call$0(); t3.call$0(); if (t2.call$0()) return; t5.call$1(parameterSeparator); new A._HeaderValue__parse_parseParameters(t1, this, t2, s, parameterSeparator, valueSeparator, false, t4, t3, t5, new A._HeaderValue__parse_expect(t1, t2, s)).call$0(); } }; A._HeaderValue_toString_closure.prototype = { call$2($name, value) { var t3, start, i, codeUnit, t1 = this.sb, t2 = t1._contents += "; "; t2 += A.S($name); t1._contents = t2; if (value != null) { t1._contents = t2 + "="; t2 = A._HeaderValue__isToken(value); t3 = t1._contents; if (t2) t1._contents = t3 + value; else { t1._contents = t3 + '"'; for (t2 = value.length, start = 0, i = 0; i < t2; ++i) { codeUnit = B.JSString_methods._codeUnitAt$1(value, i); if (codeUnit === 92 || codeUnit === 34) { t3 = t1._contents += B.JSString_methods.substring$2(value, start, i); t1._contents = t3 + "\\"; start = i; } } t2 = t1._contents += B.JSString_methods.substring$1(value, start); t1._contents = t2 + '"'; } } }, $signature: 661 }; A._HeaderValue__parse_done.prototype = { call$0() { return this._box_0.index === this.s.length; }, $signature: 18 }; A._HeaderValue__parse_skipWS.prototype = { call$0() { var t1, t2, t3, t4, t5; for (t1 = this.done, t2 = this._box_0, t3 = this.s; !t1.call$0();) { t4 = t2.index; t5 = t3[t4]; if (t5 !== " " && t5 !== "\t") return; t2.index = t4 + 1; } }, $signature: 0 }; A._HeaderValue__parse_parseValue.prototype = { call$0() { var t2, t3, t4, t5, char, t6, _this = this, t1 = _this._box_0, start = t1.index; for (t2 = _this.done, t3 = _this.s, t4 = _this.parameterSeparator; !t2.call$0();) { t5 = t1.index; char = t3[t5]; if (char !== " ") if (char !== "\t") t6 = char === t4; else t6 = true; else t6 = true; if (t6) break; t1.index = t5 + 1; } return B.JSString_methods.substring$2(t3, start, t1.index); }, $signature: 65 }; A._HeaderValue__parse_expect.prototype = { call$1(expected) { var _this = this; if (_this.done.call$0() || _this.s[_this._box_0.index] !== expected) throw A.wrapException(A.HttpException$("Failed to parse header value", null)); ++_this._box_0.index; }, $signature: 117 }; A._HeaderValue__parse_maybeExpect.prototype = { call$1(expected) { var _this = this; if (_this.done.call$0() || !B.JSString_methods.startsWith$2(_this.s, expected, _this._box_0.index)) return false; ++_this._box_0.index; return true; }, $signature: 52 }; A._HeaderValue__parse_parseParameters.prototype = { call$0() { var t2, t3, t4, parseParameterName, parseParameterValue, t5, $name, value, _this = this, t1 = _this.$this, parameters = t1._parameters; if (parameters == null) parameters = t1._parameters = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.nullable_String); t1 = _this._box_0; t2 = _this.done; t3 = _this.s; t4 = _this.parameterSeparator; parseParameterName = new A._HeaderValue__parse_parseParameters_parseParameterName(t1, t2, t3, t4, _this.valueSeparator); parseParameterValue = new A._HeaderValue__parse_parseParameters_parseParameterValue(t1, t2, t3, _this.preserveBackslash, _this.parseValue); for (t1 = _this.expect, t3 = _this.maybeExpect, t5 = _this.skipWS; !t2.call$0();) { t5.call$0(); if (t2.call$0()) return; $name = parseParameterName.call$0(); t5.call$0(); if (t3.call$1("=")) { t5.call$0(); value = parseParameterValue.call$0(); parameters.$indexSet(0, $name, $name === "charset" && true ? value.toLowerCase() : value); t5.call$0(); } else if ($name.length !== 0) parameters.$indexSet(0, $name, null); if (t2.call$0()) return; t1.call$1(t4); } }, $signature: 0 }; A._HeaderValue__parse_parseParameters_parseParameterName.prototype = { call$0() { var t2, t3, t4, t5, char, _this = this, t1 = _this._box_0, start = t1.index; for (t2 = _this.done, t3 = _this.s, t4 = _this.parameterSeparator; !t2.call$0();) { t5 = t1.index; char = t3[t5]; if (char === " " || char === "\t" || char === "=" || char === t4 || false) break; t1.index = t5 + 1; } return B.JSString_methods.substring$2(t3, start, t1.index).toLowerCase(); }, $signature: 65 }; A._HeaderValue__parse_parseParameters_parseParameterValue.prototype = { call$0() { var t2, t3, t4, t5, t6, char, _this = this, _s28_ = "Failed to parse header value", t1 = _this.done; if (!t1.call$0() && _this.s[_this._box_0.index] === '"') { t2 = _this._box_0; ++t2.index; for (t3 = _this.s, t4 = t3.length, t5 = ""; !t1.call$0();) { t6 = t2.index; char = t3[t6]; if (char === "\\") { ++t6; if (t6 === t4) throw A.wrapException(A.HttpException$(_s28_, null)); t2.index = t6; } else if (char === '"') { t2.index = t6 + 1; return t5.charCodeAt(0) == 0 ? t5 : t5; } t5 += t3[t6]; t2.index = t6 + 1; } throw A.wrapException(A.HttpException$(_s28_, null)); } else return _this.parseValue.call$0(); }, $signature: 65 }; A._ContentType.prototype = {}; J.Interceptor.prototype = { $eq(receiver, other) { return receiver === other; }, get$hashCode(receiver) { return A.Primitives_objectHashCode(receiver); }, toString$0(receiver) { return "Instance of '" + A.S(A.Primitives_objectTypeName(receiver)) + "'"; }, noSuchMethod$1(receiver, invocation) { throw A.wrapException(A.NoSuchMethodError$(receiver, invocation.get$memberName(), invocation.get$positionalArguments(), invocation.get$namedArguments())); }, get$runtimeType(receiver) { return A.getRuntimeType(receiver); } }; J.JSBool.prototype = { toString$0(receiver) { return String(receiver); }, $and(receiver, other) { return false && receiver; }, $or(receiver, other) { if (!A._isBool(other)) A.throwExpression(A.argumentErrorValue(other)); return other || receiver; }, $xor(receiver, other) { return receiver; }, get$hashCode(receiver) { return receiver ? 519018 : 218159; }, get$runtimeType(receiver) { return B.Type_bool_lhE; }, $isbool: 1 }; J.JSNull.prototype = { $eq(receiver, other) { return null == other; }, toString$0(receiver) { return "null"; }, get$hashCode(receiver) { return 0; }, get$runtimeType(receiver) { return B.Type_Null_Yyn; }, noSuchMethod$1(receiver, invocation) { return this.super$Interceptor$noSuchMethod(receiver, invocation); }, $isNull: 1 }; J.JavaScriptObject.prototype = {}; J.LegacyJavaScriptObject.prototype = { get$hashCode(receiver) { return 0; }, get$runtimeType(receiver) { return B.Type_JSObject_8k0; }, toString$0(receiver) { return String(receiver); }, $isJSObject: 1, $isCanvasKit: 1, $isSkFontSlant: 1, $isSkFontWeight: 1, $isSkTextDirection: 1, $isSkTextAlign: 1, $isSkTextHeightBehavior: 1, $isSkRectHeightStyle: 1, $isSkRectWidthStyle: 1, $isSkClipOp: 1, $isSkFillType: 1, $isSkBlurStyle: 1, $isSkStrokeCap: 1, $isSkPaintStyle: 1, $isSkBlendMode: 1, $isSkStrokeJoin: 1, $isSkTileMode: 1, $isSkAnimatedImage: 1, $isSkImage: 1, $isSkShader: 1, $isSkPaint: 1, $isCkFilterOptions: 1, $isSkMaskFilter: 1, $isSkColorFilter: 1, $isSkImageFilter: 1, $isSkPath: 1, $isSkPicture: 1, $isSkTextStyle: 1, $isSkTextDecorationStyle: 1, $isSkTextBaseline: 1, $isSkPlaceholderAlignment: 1, $isSkTextShadow: 1, $isSkFontFeature: 1, $isSkFont: 1, $isSkParagraph: 1, $isSkDeletable: 1, $isInitializeEngineFnParameters: 1, $isFlutterAppRunner: 1, $isRunAppFnParameters: 1, $isFlutterApp: 1, $isPromise: 1, $isJsUrlStrategy: 1, $isImageDecoder: 1, $isDecodeResult: 1, $isGoogleAuthInitFailureError: 1, $isGoogleAuthSignInError: 1, $isGoogleAuth: 1, $isGoogleUser: 1, $isAuthenticationResult0: 1, $isJsError: 1, $isPdfJsDoc: 1, $isPdfJsPage: 1, $isSignInResponseI: 1, get$canvasKit(obj) { return obj.canvasKit; }, get$BlendMode(obj) { return obj.BlendMode; }, get$PaintStyle(obj) { return obj.PaintStyle; }, get$StrokeCap(obj) { return obj.StrokeCap; }, get$StrokeJoin(obj) { return obj.StrokeJoin; }, get$BlurStyle(obj) { return obj.BlurStyle; }, get$TileMode(obj) { return obj.TileMode; }, get$FilterMode(obj) { return obj.FilterMode; }, get$MipmapMode(obj) { return obj.MipmapMode; }, get$FillType(obj) { return obj.FillType; }, get$AlphaType(obj) { return obj.AlphaType; }, get$ColorType(obj) { return obj.ColorType; }, get$ClipOp(obj) { return obj.ClipOp; }, get$RectHeightStyle(obj) { return obj.RectHeightStyle; }, get$RectWidthStyle(obj) { return obj.RectWidthStyle; }, get$TextAlign(obj) { return obj.TextAlign; }, get$TextHeightBehavior(obj) { return obj.TextHeightBehavior; }, get$TextDirection(obj) { return obj.TextDirection; }, get$FontWeight(obj) { return obj.FontWeight; }, get$FontSlant(obj) { return obj.FontSlant; }, MakeAnimatedImageFromEncoded$1(receiver, p0) { return receiver.MakeAnimatedImageFromEncoded(p0); }, get$Shader(obj) { return obj.Shader; }, get$MaskFilter(obj) { return obj.MaskFilter; }, get$ColorFilter(obj) { return obj.ColorFilter; }, get$ImageFilter(obj) { return obj.ImageFilter; }, get$Path(obj) { return obj.Path; }, computeTonalColors$1(receiver, p0) { return receiver.computeTonalColors(p0); }, get$ParagraphBuilder(obj) { return obj.ParagraphBuilder; }, ParagraphStyle$1(receiver, p0) { return receiver.ParagraphStyle(p0); }, TextStyle$1(receiver, p0) { return receiver.TextStyle(p0); }, get$NoDecoration(obj) { return obj.NoDecoration; }, get$UnderlineDecoration(obj) { return obj.UnderlineDecoration; }, get$OverlineDecoration(obj) { return obj.OverlineDecoration; }, get$LineThroughDecoration(obj) { return obj.LineThroughDecoration; }, get$DecorationStyle(obj) { return obj.DecorationStyle; }, get$TextBaseline(obj) { return obj.TextBaseline; }, get$PlaceholderAlignment(obj) { return obj.PlaceholderAlignment; }, get$TypefaceFontProvider(obj) { return obj.TypefaceFontProvider; }, get$Typeface(obj) { return obj.Typeface; }, GetWebGLContext$2(receiver, p0, p1) { return receiver.GetWebGLContext(p0, p1); }, MakeGrContext$1(receiver, p0) { return receiver.MakeGrContext(p0); }, MakeOnScreenGLSurface$4(receiver, p0, p1, p2, p3) { return receiver.MakeOnScreenGLSurface(p0, p1, p2, p3); }, MakeSWCanvasSurface$1(receiver, p0) { return receiver.MakeSWCanvasSurface(p0); }, MakeImage$3(receiver, p0, p1, p2) { return receiver.MakeImage(p0, p1, p2); }, MakeLazyImageFromTextureSource$2(receiver, p0, p1) { return receiver.MakeLazyImageFromTextureSource(p0, p1); }, getH5vccSkSurface$0(receiver) { return receiver.getH5vccSkSurface(); }, then$1$1(receiver, p0) { return receiver.then(p0); }, then$1(receiver, p0) { return receiver.then(p0); }, getCanvas$0(receiver) { return receiver.getCanvas(); }, flush$0(receiver) { return receiver.flush(); }, get$width(obj) { return obj.width; }, width$0(receiver) { return receiver.width(); }, get$height(obj) { return obj.height; }, height$0(receiver) { return receiver.height(); }, get$dispose(obj) { return obj.dispose; }, dispose$0(receiver) { return receiver.dispose(); }, setResourceCacheLimitBytes$1(receiver, p0) { return receiver.setResourceCacheLimitBytes(p0); }, releaseResourcesAndAbandonContext$0(receiver) { return receiver.releaseResourcesAndAbandonContext(); }, delete$0(receiver) { return receiver.delete(); }, get$Upright(obj) { return obj.Upright; }, get$Italic(obj) { return obj.Italic; }, get$value(obj) { return obj.value; }, value$0(receiver) { return receiver.value(); }, get$Thin(obj) { return obj.Thin; }, get$ExtraLight(obj) { return obj.ExtraLight; }, get$Light(obj) { return obj.Light; }, get$Normal(obj) { return obj.Normal; }, get$Medium(obj) { return obj.Medium; }, get$SemiBold(obj) { return obj.SemiBold; }, get$Bold(obj) { return obj.Bold; }, get$ExtraBold(obj) { return obj.ExtraBold; }, get$ExtraBlack(obj) { return obj.ExtraBlack; }, get$RTL(obj) { return obj.RTL; }, get$LTR(obj) { return obj.LTR; }, get$Left(obj) { return obj.Left; }, get$Right(obj) { return obj.Right; }, get$Center(obj) { return obj.Center; }, get$Justify(obj) { return obj.Justify; }, get$Start(obj) { return obj.Start; }, get$End(obj) { return obj.End; }, get$All(obj) { return obj.All; }, get$DisableFirstAscent(obj) { return obj.DisableFirstAscent; }, get$DisableLastDescent(obj) { return obj.DisableLastDescent; }, get$DisableAll(obj) { return obj.DisableAll; }, get$Tight(obj) { return obj.Tight; }, get$Max(obj) { return obj.Max; }, get$IncludeLineSpacingMiddle(obj) { return obj.IncludeLineSpacingMiddle; }, get$IncludeLineSpacingTop(obj) { return obj.IncludeLineSpacingTop; }, get$IncludeLineSpacingBottom(obj) { return obj.IncludeLineSpacingBottom; }, get$Strut(obj) { return obj.Strut; }, get$Difference(obj) { return obj.Difference; }, get$Intersect(obj) { return obj.Intersect; }, get$Winding(obj) { return obj.Winding; }, get$EvenOdd(obj) { return obj.EvenOdd; }, get$Solid(obj) { return obj.Solid; }, get$Outer(obj) { return obj.Outer; }, get$Inner(obj) { return obj.Inner; }, get$Butt(obj) { return obj.Butt; }, get$Round(obj) { return obj.Round; }, get$Square(obj) { return obj.Square; }, get$Stroke(obj) { return obj.Stroke; }, get$Fill(obj) { return obj.Fill; }, get$Clear(obj) { return obj.Clear; }, get$Src(obj) { return obj.Src; }, get$Dst(obj) { return obj.Dst; }, get$SrcOver(obj) { return obj.SrcOver; }, get$DstOver(obj) { return obj.DstOver; }, get$SrcIn(obj) { return obj.SrcIn; }, get$DstIn(obj) { return obj.DstIn; }, get$SrcOut(obj) { return obj.SrcOut; }, get$DstOut(obj) { return obj.DstOut; }, get$SrcATop(obj) { return obj.SrcATop; }, get$DstATop(obj) { return obj.DstATop; }, get$Xor(obj) { return obj.Xor; }, get$Plus(obj) { return obj.Plus; }, get$Modulate(obj) { return obj.Modulate; }, get$Screen(obj) { return obj.Screen; }, get$Overlay(obj) { return obj.Overlay; }, get$Darken(obj) { return obj.Darken; }, get$Lighten(obj) { return obj.Lighten; }, get$ColorDodge(obj) { return obj.ColorDodge; }, get$ColorBurn(obj) { return obj.ColorBurn; }, get$HardLight(obj) { return obj.HardLight; }, get$SoftLight(obj) { return obj.SoftLight; }, get$Exclusion(obj) { return obj.Exclusion; }, get$Multiply(obj) { return obj.Multiply; }, get$Hue(obj) { return obj.Hue; }, get$Saturation(obj) { return obj.Saturation; }, get$Color(obj) { return obj.Color; }, get$Luminosity(obj) { return obj.Luminosity; }, get$Miter(obj) { return obj.Miter; }, get$Bevel(obj) { return obj.Bevel; }, get$Clamp(obj) { return obj.Clamp; }, get$Repeat(obj) { return obj.Repeat; }, get$Mirror(obj) { return obj.Mirror; }, get$Decal(obj) { return obj.Decal; }, get$Nearest(obj) { return obj.Nearest; }, get$Linear(obj) { return obj.Linear; }, get$None(obj) { return obj.None; }, get$Premul(obj) { return obj.Premul; }, get$RGBA_8888(obj) { return obj.RGBA_8888; }, get$BGRA_8888(obj) { return obj.BGRA_8888; }, getFrameCount$0(receiver) { return receiver.getFrameCount(); }, getRepetitionCount$0(receiver) { return receiver.getRepetitionCount(); }, currentFrameDuration$0(receiver) { return receiver.currentFrameDuration(); }, decodeNextFrame$0(receiver) { return receiver.decodeNextFrame(); }, makeImageAtCurrentFrame$0(receiver) { return receiver.makeImageAtCurrentFrame(); }, get$isDeleted(obj) { return obj.isDeleted; }, isDeleted$0(receiver) { return receiver.isDeleted(); }, readPixels$3(receiver, p0, p1, p2) { return receiver.readPixels(p0, p1, p2); }, encodeToBytes$0(receiver) { return receiver.encodeToBytes(); }, isAliasOf$1(receiver, p0) { return receiver.isAliasOf(p0); }, MakeLinearGradient$6(receiver, p0, p1, p2, p3, p4, p5) { return receiver.MakeLinearGradient(p0, p1, p2, p3, p4, p5); }, MakeBlur$3(receiver, p0, p1, p2) { return receiver.MakeBlur(p0, p1, p2); }, setBlendMode$1(receiver, p0) { return receiver.setBlendMode(p0); }, setStyle$1(receiver, p0) { return receiver.setStyle(p0); }, setStrokeWidth$1(receiver, p0) { return receiver.setStrokeWidth(p0); }, setStrokeCap$1(receiver, p0) { return receiver.setStrokeCap(p0); }, setStrokeJoin$1(receiver, p0) { return receiver.setStrokeJoin(p0); }, setAntiAlias$1(receiver, p0) { return receiver.setAntiAlias(p0); }, setColorInt$1(receiver, p0) { return receiver.setColorInt(p0); }, setShader$1(receiver, p0) { return receiver.setShader(p0); }, setMaskFilter$1(receiver, p0) { return receiver.setMaskFilter(p0); }, setColorFilter$1(receiver, p0) { return receiver.setColorFilter(p0); }, setStrokeMiter$1(receiver, p0) { return receiver.setStrokeMiter(p0); }, setImageFilter$1(receiver, p0) { return receiver.setImageFilter(p0); }, MakeMatrix$1(receiver, p0) { return receiver.MakeMatrix(p0); }, MakeCompose$2(receiver, p0, p1) { return receiver.MakeCompose(p0, p1); }, MakeMatrixTransform$3(receiver, p0, p1, p2) { return receiver.MakeMatrixTransform(p0, p1, p2); }, MakeFromCmds$1(receiver, p0) { return receiver.MakeFromCmds(p0); }, toTypedArray$0(receiver) { return receiver.toTypedArray(); }, setFillType$1(receiver, p0) { return receiver.setFillType(p0); }, addArc$3(receiver, p0, p1, p2) { return receiver.addArc(p0, p1, p2); }, addOval$3(receiver, p0, p1, p2) { return receiver.addOval(p0, p1, p2); }, addPoly$2(receiver, p0, p1) { return receiver.addPoly(p0, p1); }, addRRect$2(receiver, p0, p1) { return receiver.addRRect(p0, p1); }, addRect$1(receiver, p0) { return receiver.addRect(p0); }, arcToOval$4(receiver, p0, p1, p2, p3) { return receiver.arcToOval(p0, p1, p2, p3); }, arcToRotated$7(receiver, p0, p1, p2, p3, p4, p5, p6) { return receiver.arcToRotated(p0, p1, p2, p3, p4, p5, p6); }, get$close(obj) { return obj.close; }, close$0(receiver) { return receiver.close(); }, get$contains(obj) { return obj.contains; }, contains$2(receiver, p0, p1) { return receiver.contains(p0, p1); }, cubicTo$6(receiver, p0, p1, p2, p3, p4, p5) { return receiver.cubicTo(p0, p1, p2, p3, p4, p5); }, getBounds$0(receiver) { return receiver.getBounds(); }, lineTo$2(receiver, p0, p1) { return receiver.lineTo(p0, p1); }, moveTo$2(receiver, p0, p1) { return receiver.moveTo(p0, p1); }, quadTo$4(receiver, p0, p1, p2, p3) { return receiver.quadTo(p0, p1, p2, p3); }, reset$0(receiver) { return receiver.reset(); }, toSVGString$0(receiver) { return receiver.toSVGString(); }, get$isEmpty(obj) { return obj.isEmpty; }, isEmpty$0(receiver) { return receiver.isEmpty(); }, copy$0(receiver) { return receiver.copy(); }, get$transform(obj) { return obj.transform; }, transform$9(receiver, p0, p1, p2, p3, p4, p5, p6, p7, p8) { return receiver.transform(p0, p1, p2, p3, p4, p5, p6, p7, p8); }, toCmds$0(receiver) { return receiver.toCmds(); }, get$length(obj) { return obj.length; }, length$0(receiver) { return receiver.length(); }, beginRecording$1(receiver, p0) { return receiver.beginRecording(p0); }, finishRecordingAsPicture$0(receiver) { return receiver.finishRecordingAsPicture(); }, clear$1(receiver, p0) { return receiver.clear(p0); }, clipPath$3(receiver, p0, p1, p2) { return receiver.clipPath(p0, p1, p2); }, clipRRect$3(receiver, p0, p1, p2) { return receiver.clipRRect(p0, p1, p2); }, clipRect$3(receiver, p0, p1, p2) { return receiver.clipRect(p0, p1, p2); }, drawArc$5(receiver, p0, p1, p2, p3, p4) { return receiver.drawArc(p0, p1, p2, p3, p4); }, drawCircle$4(receiver, p0, p1, p2, p3) { return receiver.drawCircle(p0, p1, p2, p3); }, drawDRRect$3(receiver, p0, p1, p2) { return receiver.drawDRRect(p0, p1, p2); }, drawImageRectCubic$6(receiver, p0, p1, p2, p3, p4, p5) { return receiver.drawImageRectCubic(p0, p1, p2, p3, p4, p5); }, drawImageRectOptions$6(receiver, p0, p1, p2, p3, p4, p5) { return receiver.drawImageRectOptions(p0, p1, p2, p3, p4, p5); }, drawLine$5(receiver, p0, p1, p2, p3, p4) { return receiver.drawLine(p0, p1, p2, p3, p4); }, drawPaint$1(receiver, p0) { return receiver.drawPaint(p0); }, drawPath$2(receiver, p0, p1) { return receiver.drawPath(p0, p1); }, drawRRect$2(receiver, p0, p1) { return receiver.drawRRect(p0, p1); }, drawRect$2(receiver, p0, p1) { return receiver.drawRect(p0, p1); }, drawShadow$7(receiver, p0, p1, p2, p3, p4, p5, p6) { return receiver.drawShadow(p0, p1, p2, p3, p4, p5, p6); }, save$0(receiver) { return receiver.save(); }, saveLayer$4(receiver, p0, p1, p2, p3) { return receiver.saveLayer(p0, p1, p2, p3); }, restore$0(receiver) { return receiver.restore(); }, restoreToCount$1(receiver, p0) { return receiver.restoreToCount(p0); }, rotate$3(receiver, p0, p1, p2) { return receiver.rotate(p0, p1, p2); }, scale$2(receiver, p0, p1) { return receiver.scale(p0, p1); }, concat$1(receiver, p0) { return receiver.concat(p0); }, translate$2(receiver, p0, p1) { return receiver.translate(p0, p1); }, drawPicture$1(receiver, p0) { return receiver.drawPicture(p0); }, drawParagraph$3(receiver, p0, p1, p2) { return receiver.drawParagraph(p0, p1, p2); }, MakeFromFontProvider$2(receiver, p0, p1) { return receiver.MakeFromFontProvider(p0, p1); }, addText$1(receiver, p0) { return receiver.addText(p0); }, pushStyle$1(receiver, p0) { return receiver.pushStyle(p0); }, pushPaintStyle$3(receiver, p0, p1, p2) { return receiver.pushPaintStyle(p0, p1, p2); }, pop$0(receiver) { return receiver.pop(); }, addPlaceholder$5(receiver, p0, p1, p2, p3, p4) { return receiver.addPlaceholder(p0, p1, p2, p3, p4); }, get$build(obj) { return obj.build; }, build$0(receiver) { return receiver.build(); }, set$textAlign(obj, v) { return obj.textAlign = v; }, set$textDirection(obj, v) { return obj.textDirection = v; }, set$textHeightBehavior(obj, v) { return obj.textHeightBehavior = v; }, set$maxLines(obj, v) { return obj.maxLines = v; }, set$ellipsis(obj, v) { return obj.ellipsis = v; }, set$textStyle(obj, v) { return obj.textStyle = v; }, set$strutStyle(obj, v) { return obj.strutStyle = v; }, get$Double(obj) { return obj.Double; }, get$Dotted(obj) { return obj.Dotted; }, get$Dashed(obj) { return obj.Dashed; }, get$Wavy(obj) { return obj.Wavy; }, get$Alphabetic(obj) { return obj.Alphabetic; }, get$Ideographic(obj) { return obj.Ideographic; }, get$Baseline(obj) { return obj.Baseline; }, get$AboveBaseline(obj) { return obj.AboveBaseline; }, get$BelowBaseline(obj) { return obj.BelowBaseline; }, get$Top(obj) { return obj.Top; }, get$Bottom(obj) { return obj.Bottom; }, get$Middle(obj) { return obj.Middle; }, set$color(obj, v) { return obj.color = v; }, set$decoration(obj, v) { return obj.decoration = v; }, set$textBaseline(obj, v) { return obj.textBaseline = v; }, set$locale(obj, v) { return obj.locale = v; }, set$offset(obj, v) { return obj.offset = v; }, set$value(obj, v) { return obj.value = v; }, getGlyphIDs$1(receiver, p0) { return receiver.getGlyphIDs(p0); }, getGlyphBounds$3(receiver, p0, p1, p2) { return receiver.getGlyphBounds(p0, p1, p2); }, registerFont$2(receiver, p0, p1) { return receiver.registerFont(p0, p1); }, get$startIndex(obj) { return obj.startIndex; }, get$endIndex(obj) { return obj.endIndex; }, get$descent(obj) { return obj.descent; }, get$baseline(obj) { return obj.baseline; }, get$lineNumber(obj) { return obj.lineNumber; }, getAlphabeticBaseline$0(receiver) { return receiver.getAlphabeticBaseline(); }, get$didExceedMaxLines(obj) { return obj.didExceedMaxLines; }, didExceedMaxLines$0(receiver) { return receiver.didExceedMaxLines(); }, getHeight$0(receiver) { return receiver.getHeight(); }, getIdeographicBaseline$0(receiver) { return receiver.getIdeographicBaseline(); }, getLineMetrics$0(receiver) { return receiver.getLineMetrics(); }, getLongestLine$0(receiver) { return receiver.getLongestLine(); }, getMaxIntrinsicWidth$0(receiver) { return receiver.getMaxIntrinsicWidth(); }, getMinIntrinsicWidth$0(receiver) { return receiver.getMinIntrinsicWidth(); }, getMaxWidth$0(receiver) { return receiver.getMaxWidth(); }, getRectsForRange$4(receiver, p0, p1, p2, p3) { return receiver.getRectsForRange(p0, p1, p2, p3); }, getRectsForPlaceholders$0(receiver) { return receiver.getRectsForPlaceholders(); }, getGlyphPositionAtCoordinate$2(receiver, p0, p1) { return receiver.getGlyphPositionAtCoordinate(p0, p1); }, getWordBoundary$1(receiver, p0) { return receiver.getWordBoundary(p0); }, layout$1(receiver, p0) { return receiver.layout(p0); }, get$affinity(obj) { return obj.affinity; }, get$pos(obj) { return obj.pos; }, get$start(obj) { return obj.start; }, start$1(receiver, p0) { return receiver.start(p0); }, get$end(obj) { return obj.end; }, end$1(receiver, p0) { return receiver.end(p0); }, get$ambient(obj) { return obj.ambient; }, get$spot(obj) { return obj.spot; }, Make$0(receiver) { return receiver.Make(); }, MakeFreeTypeFaceFromData$1(receiver, p0) { return receiver.MakeFreeTypeFaceFromData(p0); }, constructor$0(receiver) { return receiver.constructor(); }, get$name(obj) { return obj.name; }, register$2(receiver, p0, p1) { return receiver.register(p0, p1); }, get$size(obj) { return obj.size; }, get$canvasKitBaseUrl(obj) { return obj.canvasKitBaseUrl; }, get$canvasKitForceCpuOnly(obj) { return obj.canvasKitForceCpuOnly; }, get$debugShowSemanticsNodes(obj) { return obj.debugShowSemanticsNodes; }, get$canvasKitMaximumSurfaces(obj) { return obj.canvasKitMaximumSurfaces; }, addPopStateListener$1(receiver, p0) { return receiver.addPopStateListener(p0); }, getPath$0(receiver) { return receiver.getPath(); }, getState$0(receiver) { return receiver.getState(); }, pushState$3(receiver, p0, p1, p2) { return receiver.pushState(p0, p1, p2); }, replaceState$3(receiver, p0, p1, p2) { return receiver.replaceState(p0, p1, p2); }, go$1(receiver, p0) { return receiver.go(p0); }, decode$1(receiver, p0) { return receiver.decode(p0); }, get$image(obj) { return obj.image; }, format$1(receiver, p0) { return receiver.format(p0); }, get$displayWidth(obj) { return obj.displayWidth; }, get$displayHeight(obj) { return obj.displayHeight; }, get$duration(obj) { return obj.duration; }, get$ready(obj) { return obj.ready; }, get$selectedTrack(obj) { return obj.selectedTrack; }, get$repetitionCount(obj) { return obj.repetitionCount; }, get$frameCount(obj) { return obj.frameCount; }, get$error(obj) { return obj.error; }, get$details(obj) { return obj.details; }, get$code(obj) { return obj.code; }, isSignedIn$0(receiver) { return receiver.isSignedIn(); }, get$currentUser(obj) { return obj.currentUser; }, then$2(receiver, p0, p1) { return receiver.then(p0, p1); }, get$signOut(obj) { return obj.signOut; }, signOut$0(receiver) { return receiver.signOut(); }, get$disconnect(obj) { return obj.disconnect; }, disconnect$0(receiver) { return receiver.disconnect(); }, get$signIn(obj) { return obj.signIn; }, signIn$1(receiver, p0) { return receiver.signIn(p0); }, $get$0(receiver) { return receiver.get(); }, getId$0(receiver) { return receiver.getId(); }, getName$0(receiver) { return receiver.getName(); }, getImageUrl$0(receiver) { return receiver.getImageUrl(); }, getEmail$0(receiver) { return receiver.getEmail(); }, get$access_token(obj) { return obj.access_token; }, get$id_token(obj) { return obj.id_token; }, getBasicProfile$0(receiver) { return receiver.getBasicProfile(); }, getAuthResponse$0(receiver) { return receiver.getAuthResponse(); }, rotate$1(receiver, p0) { return receiver.rotate(p0); }, get$idToken(obj) { return obj.idToken; }, get$accessToken(obj) { return obj.accessToken; }, get$state(obj) { return obj.state; }, state$0(receiver) { return receiver.state(); }, set$auth(obj, v) { return obj.auth = v; }, get$body(obj) { return obj.body; }, loginPopup$1(receiver, p0) { return receiver.loginPopup(p0); }, logoutPopup$1(receiver, p0) { return receiver.logoutPopup(p0); }, get$message(obj) { return obj.message; }, set$scale(obj, v) { return obj.scale = v; }, get$promise(obj) { return obj.promise; }, getPage$1(receiver, p0) { return receiver.getPage(p0); }, get$numPages(obj) { return obj.numPages; }, getViewport$1(receiver, p0) { return receiver.getViewport(p0); }, render$1(receiver, p0) { return receiver.render(p0); }, get$authorization(obj) { return obj.authorization; }, get$user(obj) { return obj.user; }, get$email(obj) { return obj.email; }, get$firstName(obj) { return obj.firstName; }, get$lastName(obj) { return obj.lastName; } }; J.PlainJavaScriptObject.prototype = {}; J.UnknownJavaScriptObject.prototype = {}; J.JavaScriptFunction.prototype = { toString$0(receiver) { var dartClosure = receiver[$.$get$DART_CLOSURE_PROPERTY_NAME()]; if (dartClosure == null) return this.super$LegacyJavaScriptObject$toString(receiver); return "JavaScript function for " + A.S(J.toString$0$(dartClosure)); }, $isFunction: 1 }; J.JSArray.prototype = { cast$1$0(receiver, $R) { return new A.CastList(receiver, A._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($R)._eval$1("CastList<1,2>")); }, add$1(receiver, value) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("add")); receiver.push(value); }, removeAt$1(receiver, index) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("removeAt")); if (!A._isInt(index)) throw A.wrapException(A.argumentErrorValue(index)); if (index < 0 || index >= receiver.length) throw A.wrapException(A.RangeError$value(index, null)); return receiver.splice(index, 1)[0]; }, insert$2(receiver, index, value) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("insert")); if (!A._isInt(index)) throw A.wrapException(A.argumentErrorValue(index)); if (index < 0 || index > receiver.length) throw A.wrapException(A.RangeError$value(index, null)); receiver.splice(index, 0, value); }, insertAll$2(receiver, index, iterable) { var insertionLength, end; if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("insertAll")); A.RangeError_checkValueInInterval(index, 0, receiver.length, "index"); if (!type$.EfficientLengthIterable_dynamic._is(iterable)) iterable = J.toList$0$ax(iterable); insertionLength = J.get$length$asx(iterable); receiver.length = receiver.length + insertionLength; end = index + insertionLength; this.setRange$4(receiver, end, receiver.length, receiver, index); this.setRange$3(receiver, index, end, iterable); }, setAll$2(receiver, index, iterable) { var t1, t2, index0; if (!!receiver.immutable$list) A.throwExpression(A.UnsupportedError$("setAll")); A.RangeError_checkValueInInterval(index, 0, receiver.length, "index"); for (t1 = J.get$iterator$ax(iterable._source), t2 = A._instanceType(iterable), t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1])._rest[1]; t1.moveNext$0(); index = index0) { index0 = index + 1; this.$indexSet(receiver, index, t2._as(t1.get$current(t1))); } }, removeLast$0(receiver) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("removeLast")); if (receiver.length === 0) throw A.wrapException(A.diagnoseIndexError(receiver, -1)); return receiver.pop(); }, remove$1(receiver, element) { var i; if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("remove")); for (i = 0; i < receiver.length; ++i) if (J.$eq$(receiver[i], element)) { receiver.splice(i, 1); return true; } return false; }, removeWhere$1(receiver, test) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); this._removeWhere$2(receiver, test, true); }, retainWhere$1(receiver, test) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("retainWhere")); this._removeWhere$2(receiver, test, false); }, _removeWhere$2(receiver, test, removeMatching) { var i, element, t1, retained = [], end = receiver.length; for (i = 0; i < end; ++i) { element = receiver[i]; if (!test.call$1(element) === removeMatching) retained.push(element); if (receiver.length !== end) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } t1 = retained.length; if (t1 === end) return; this.set$length(receiver, t1); for (i = 0; i < retained.length; ++i) receiver[i] = retained[i]; }, where$1(receiver, f) { return new A.WhereIterable(receiver, f, A._arrayInstanceType(receiver)._eval$1("WhereIterable<1>")); }, addAll$1(receiver, collection) { var t1; if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("addAll")); if (Array.isArray(collection)) { this._addAllFromArray$1(receiver, collection); return; } for (t1 = J.get$iterator$ax(collection); t1.moveNext$0();) receiver.push(t1.get$current(t1)); }, _addAllFromArray$1(receiver, array) { var i, len = array.length; if (len === 0) return; if (receiver === array) throw A.wrapException(A.ConcurrentModificationError$(receiver)); for (i = 0; i < len; ++i) receiver.push(array[i]); }, forEach$1(receiver, f) { var i, end = receiver.length; for (i = 0; i < end; ++i) { f.call$1(receiver[i]); if (receiver.length !== end) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } }, map$1$1(receiver, f, $T) { return new A.MappedListIterable(receiver, f, A._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, join$1(receiver, separator) { var i, list = A.List_List$filled(receiver.length, "", false, type$.String); for (i = 0; i < receiver.length; ++i) list[i] = A.S(receiver[i]); return list.join(separator); }, join$0($receiver) { return this.join$1($receiver, ""); }, take$1(receiver, n) { return A.SubListIterable$(receiver, 0, A.checkNotNullable(n, "count", type$.int), A._arrayInstanceType(receiver)._precomputed1); }, skip$1(receiver, n) { return A.SubListIterable$(receiver, n, null, A._arrayInstanceType(receiver)._precomputed1); }, reduce$1(receiver, combine) { var value, i, $length = receiver.length; if ($length === 0) throw A.wrapException(A.IterableElementError_noElement()); value = receiver[0]; for (i = 1; i < $length; ++i) { value = combine.call$2(value, receiver[i]); if ($length !== receiver.length) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return value; }, fold$1$2(receiver, initialValue, combine) { var value, i, $length = receiver.length; for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, receiver[i]); if (receiver.length !== $length) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return value; }, firstWhere$2$orElse(receiver, test, orElse) { var i, element, end = receiver.length; for (i = 0; i < end; ++i) { element = receiver[i]; if (test.call$1(element)) return element; if (receiver.length !== end) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw A.wrapException(A.IterableElementError_noElement()); }, firstWhere$1($receiver, test) { return this.firstWhere$2$orElse($receiver, test, null); }, lastWhere$2$orElse(receiver, test, orElse) { var i, element, $length = receiver.length; for (i = $length - 1; i >= 0; --i) { element = receiver[i]; if (test.call$1(element)) return element; if ($length !== receiver.length) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw A.wrapException(A.IterableElementError_noElement()); }, lastWhere$1($receiver, test) { return this.lastWhere$2$orElse($receiver, test, null); }, singleWhere$2$orElse(receiver, test, orElse) { var match, matchFound, i, element, $length = receiver.length; for (match = null, matchFound = false, i = 0; i < $length; ++i) { element = receiver[i]; if (test.call$1(element)) { if (matchFound) throw A.wrapException(A.IterableElementError_tooMany()); match = element; matchFound = true; } if ($length !== receiver.length) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } if (matchFound) return match; if (orElse != null) return orElse.call$0(); throw A.wrapException(A.IterableElementError_noElement()); }, elementAt$1(receiver, index) { return receiver[index]; }, sublist$2(receiver, start, end) { if (start == null) A.throwExpression(A.argumentErrorValue(start)); if (!A._isInt(start)) throw A.wrapException(A.argumentErrorValue(start)); if (start < 0 || start > receiver.length) throw A.wrapException(A.RangeError$range(start, 0, receiver.length, "start", null)); if (end == null) end = receiver.length; else if (end < start || end > receiver.length) throw A.wrapException(A.RangeError$range(end, start, receiver.length, "end", null)); if (start === end) return A._setArrayType([], A._arrayInstanceType(receiver)); return A._setArrayType(receiver.slice(start, end), A._arrayInstanceType(receiver)); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, getRange$2(receiver, start, end) { A.RangeError_checkValidRange(start, end, receiver.length, null, null); return A.SubListIterable$(receiver, start, end, A._arrayInstanceType(receiver)._precomputed1); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.IterableElementError_noElement()); }, get$last(receiver) { var t1 = receiver.length; if (t1 > 0) return receiver[t1 - 1]; throw A.wrapException(A.IterableElementError_noElement()); }, get$single(receiver) { var t1 = receiver.length; if (t1 === 1) return receiver[0]; if (t1 === 0) throw A.wrapException(A.IterableElementError_noElement()); throw A.wrapException(A.IterableElementError_tooMany()); }, removeRange$2(receiver, start, end) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("removeRange")); A.RangeError_checkValidRange(start, end, receiver.length, null, null); receiver.splice(start, end - start); }, setRange$4(receiver, start, end, iterable, skipCount) { var $length, otherList, otherStart, t1, i; if (!!receiver.immutable$list) A.throwExpression(A.UnsupportedError$("setRange")); A.RangeError_checkValidRange(start, end, receiver.length, null, null); $length = end - start; if ($length === 0) return; A.RangeError_checkNotNegative(skipCount, "skipCount"); if (type$.List_dynamic._is(iterable)) { otherList = iterable; otherStart = skipCount; } else { otherList = J.skip$1$ax(iterable, skipCount).toList$1$growable(0, false); otherStart = 0; } t1 = J.getInterceptor$asx(otherList); if (otherStart + $length > t1.get$length(otherList)) throw A.wrapException(A.IterableElementError_tooFew()); if (otherStart < start) for (i = $length - 1; i >= 0; --i) receiver[start + i] = t1.$index(otherList, otherStart + i); else for (i = 0; i < $length; ++i) receiver[start + i] = t1.$index(otherList, otherStart + i); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, replaceRange$3(receiver, start, end, replacement) { var removeLength, insertLength, t1, insertEnd, delta, newLength, _this = this; if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("replaceRange")); A.RangeError_checkValidRange(start, end, receiver.length, null, null); if (!type$.EfficientLengthIterable_dynamic._is(replacement)) replacement = J.toList$0$ax(replacement); removeLength = end - start; insertLength = J.get$length$asx(replacement); t1 = receiver.length; insertEnd = start + insertLength; if (removeLength >= insertLength) { delta = removeLength - insertLength; newLength = t1 - delta; _this.setRange$3(receiver, start, insertEnd, replacement); if (delta !== 0) { _this.setRange$4(receiver, insertEnd, newLength, receiver, end); _this.set$length(receiver, newLength); } } else { newLength = t1 + (insertLength - removeLength); receiver.length = newLength; _this.setRange$4(receiver, insertEnd, newLength, receiver, end); _this.setRange$3(receiver, start, insertEnd, replacement); } }, any$1(receiver, test) { var i, end = receiver.length; for (i = 0; i < end; ++i) { if (test.call$1(receiver[i])) return true; if (receiver.length !== end) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return false; }, every$1(receiver, test) { var i, end = receiver.length; for (i = 0; i < end; ++i) { if (!test.call$1(receiver[i])) return false; if (receiver.length !== end) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return true; }, get$reversed(receiver) { return new A.ReversedListIterable(receiver, A._arrayInstanceType(receiver)._eval$1("ReversedListIterable<1>")); }, sort$1(receiver, compare) { if (!!receiver.immutable$list) A.throwExpression(A.UnsupportedError$("sort")); A.Sort_sort(receiver, compare == null ? J._interceptors_JSArray__compareAny$closure() : compare); }, sort$0($receiver) { return this.sort$1($receiver, null); }, indexOf$2(receiver, element, start) { var i, $length = receiver.length; if (start >= $length) return -1; for (i = start; i < $length; ++i) if (J.$eq$(receiver[i], element)) return i; return -1; }, indexOf$1($receiver, element) { return this.indexOf$2($receiver, element, 0); }, lastIndexOf$2(receiver, element, startIndex) { var t1, i, start = startIndex == null ? receiver.length - 1 : startIndex; if (start < 0) return -1; t1 = receiver.length; if (start >= t1) start = t1 - 1; for (i = start; i >= 0; --i) if (J.$eq$(receiver[i], element)) return i; return -1; }, lastIndexOf$1($receiver, element) { return this.lastIndexOf$2($receiver, element, null); }, contains$1(receiver, other) { var i; for (i = 0; i < receiver.length; ++i) if (J.$eq$(receiver[i], other)) return true; return false; }, get$isEmpty(receiver) { return receiver.length === 0; }, get$isNotEmpty(receiver) { return receiver.length !== 0; }, toString$0(receiver) { return A.IterableBase_iterableToFullString(receiver, "[", "]"); }, toList$1$growable(receiver, growable) { var t1 = A._arrayInstanceType(receiver); return growable ? A._setArrayType(receiver.slice(0), t1) : J.JSArray_JSArray$markFixed(receiver.slice(0), t1._precomputed1); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(receiver) { return A.LinkedHashSet_LinkedHashSet$from(receiver, A._arrayInstanceType(receiver)._precomputed1); }, get$iterator(receiver) { return new J.ArrayIterator(receiver, receiver.length, A._arrayInstanceType(receiver)._eval$1("ArrayIterator<1>")); }, get$hashCode(receiver) { return A.Primitives_objectHashCode(receiver); }, get$length(receiver) { return receiver.length; }, set$length(receiver, newLength) { if (!!receiver.fixed$length) A.throwExpression(A.UnsupportedError$("set length")); if (newLength < 0) throw A.wrapException(A.RangeError$range(newLength, 0, null, "newLength", null)); receiver.length = newLength; }, $index(receiver, index) { if (!A._isInt(index)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); if (!(index >= 0 && index < receiver.length)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); return receiver[index]; }, $indexSet(receiver, index, value) { if (!!receiver.immutable$list) A.throwExpression(A.UnsupportedError$("indexed set")); if (!A._isInt(index)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); if (!(index >= 0 && index < receiver.length)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); receiver[index] = value; }, asMap$0(receiver) { return new A.ListMapView(receiver, A._arrayInstanceType(receiver)._eval$1("ListMapView<1>")); }, $add(receiver, other) { var t1 = A.List_List$of(receiver, true, A._arrayInstanceType(receiver)._precomputed1); this.addAll$1(t1, other); return t1; }, indexWhere$2(receiver, test, start) { var i; if (start >= receiver.length) return -1; for (i = start; i < receiver.length; ++i) if (test.call$1(receiver[i])) return i; return -1; }, indexWhere$1($receiver, test) { return this.indexWhere$2($receiver, test, 0); }, lastIndexWhere$2(receiver, test, start) { var i; if (start == null) start = receiver.length - 1; if (start < 0) return -1; for (i = start; i >= 0; --i) if (test.call$1(receiver[i])) return i; return -1; }, lastIndexWhere$1($receiver, test) { return this.lastIndexWhere$2($receiver, test, null); }, set$last(receiver, element) { var t1 = receiver.length; if (t1 === 0) throw A.wrapException(A.IterableElementError_noElement()); this.$indexSet(receiver, t1 - 1, element); }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; J.JSUnmodifiableArray.prototype = {}; J.ArrayIterator.prototype = { get$current(_) { return this.__interceptors$_current; }, moveNext$0() { var t2, _this = this, t1 = _this._iterable, $length = t1.length; if (_this.__interceptors$_length !== $length) throw A.wrapException(A.throwConcurrentModificationError(t1)); t2 = _this._index; if (t2 >= $length) { _this.__interceptors$_current = null; return false; } _this.__interceptors$_current = t1[t2]; _this._index = t2 + 1; return true; } }; J.JSNumber.prototype = { compareTo$1(receiver, b) { var bIsNegative; if (typeof b != "number") throw A.wrapException(A.argumentErrorValue(b)); if (receiver < b) return -1; else if (receiver > b) return 1; else if (receiver === b) { if (receiver === 0) { bIsNegative = this.get$isNegative(b); if (this.get$isNegative(receiver) === bIsNegative) return 0; if (this.get$isNegative(receiver)) return -1; return 1; } return 0; } else if (isNaN(receiver)) { if (isNaN(b)) return 0; return 1; } else return -1; }, get$isNegative(receiver) { return receiver === 0 ? 1 / receiver < 0 : receiver < 0; }, remainder$1(receiver, b) { return receiver % b; }, abs$0(receiver) { return Math.abs(receiver); }, get$sign(receiver) { var t1; if (receiver > 0) t1 = 1; else t1 = receiver < 0 ? -1 : receiver; return t1; }, toInt$0(receiver) { var t1; if (receiver >= -2147483648 && receiver <= 2147483647) return receiver | 0; if (isFinite(receiver)) { t1 = receiver < 0 ? Math.ceil(receiver) : Math.floor(receiver); return t1 + 0; } throw A.wrapException(A.UnsupportedError$("" + receiver + ".toInt()")); }, ceil$0(receiver) { var truncated, d; if (receiver >= 0) { if (receiver <= 2147483647) { truncated = receiver | 0; return receiver === truncated ? truncated : truncated + 1; } } else if (receiver >= -2147483648) return receiver | 0; d = Math.ceil(receiver); if (isFinite(d)) return d; throw A.wrapException(A.UnsupportedError$("" + receiver + ".ceil()")); }, floor$0(receiver) { var truncated, d; if (receiver >= 0) { if (receiver <= 2147483647) return receiver | 0; } else if (receiver >= -2147483648) { truncated = receiver | 0; return receiver === truncated ? truncated : truncated - 1; } d = Math.floor(receiver); if (isFinite(d)) return d; throw A.wrapException(A.UnsupportedError$("" + receiver + ".floor()")); }, round$0(receiver) { if (receiver > 0) { if (receiver !== 1 / 0) return Math.round(receiver); } else if (receiver > -1 / 0) return 0 - Math.round(0 - receiver); throw A.wrapException(A.UnsupportedError$("" + receiver + ".round()")); }, roundToDouble$0(receiver) { if (receiver < 0) return -Math.round(-receiver); else return Math.round(receiver); }, clamp$2(receiver, lowerLimit, upperLimit) { if (typeof lowerLimit != "number") throw A.wrapException(A.argumentErrorValue(lowerLimit)); if (typeof upperLimit != "number") throw A.wrapException(A.argumentErrorValue(upperLimit)); if (this.compareTo$1(lowerLimit, upperLimit) > 0) throw A.wrapException(A.argumentErrorValue(lowerLimit)); if (this.compareTo$1(receiver, lowerLimit) < 0) return lowerLimit; if (this.compareTo$1(receiver, upperLimit) > 0) return upperLimit; return receiver; }, toDouble$0(receiver) { return receiver; }, toStringAsFixed$1(receiver, fractionDigits) { var result; if (!A._isInt(fractionDigits)) A.throwExpression(A.argumentErrorValue(fractionDigits)); if (fractionDigits > 20) throw A.wrapException(A.RangeError$range(fractionDigits, 0, 20, "fractionDigits", null)); result = receiver.toFixed(fractionDigits); if (receiver === 0 && this.get$isNegative(receiver)) return "-" + result; return result; }, toRadixString$1(receiver, radix) { var result, match, exponent, t1; if (radix < 2 || radix > 36) throw A.wrapException(A.RangeError$range(radix, 2, 36, "radix", null)); result = receiver.toString(radix); if (B.JSString_methods.codeUnitAt$1(result, result.length - 1) !== 41) return result; match = /^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(result); if (match == null) A.throwExpression(A.UnsupportedError$("Unexpected toString result: " + result)); result = match[1]; exponent = +match[3]; t1 = match[2]; if (t1 != null) { result += t1; exponent -= t1.length; } return result + B.JSString_methods.$mul("0", exponent); }, toString$0(receiver) { if (receiver === 0 && 1 / receiver < 0) return "-0.0"; else return "" + receiver; }, get$hashCode(receiver) { var absolute, floorLog2, factor, scaled, intValue = receiver | 0; if (receiver === intValue) return intValue & 536870911; absolute = Math.abs(receiver); floorLog2 = Math.log(absolute) / 0.6931471805599453 | 0; factor = Math.pow(2, floorLog2); scaled = absolute < 1 ? absolute / factor : factor / absolute; return ((scaled * 9007199254740992 | 0) + (scaled * 3542243181176521 | 0)) * 599197 + floorLog2 * 1259 & 536870911; }, $add(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver + other; }, $sub(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver - other; }, $div(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver / other; }, $mul(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver * other; }, $mod(receiver, other) { var result; if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); result = receiver % other; if (result === 0) return 0; if (result > 0) return result; if (other < 0) return result - other; else return result + other; }, $tdiv(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); if ((receiver | 0) === receiver) if (other >= 1 || other < -1) return receiver / other | 0; return this._tdivSlow$1(receiver, other); }, _tdivFast$1(receiver, other) { return (receiver | 0) === receiver ? receiver / other | 0 : this._tdivSlow$1(receiver, other); }, _tdivSlow$1(receiver, other) { var quotient = receiver / other; if (quotient >= -2147483648 && quotient <= 2147483647) return quotient | 0; if (quotient > 0) { if (quotient !== 1 / 0) return Math.floor(quotient); } else if (quotient > -1 / 0) return Math.ceil(quotient); throw A.wrapException(A.UnsupportedError$("Result of truncating division is " + A.S(quotient) + ": " + A.S(receiver) + " ~/ " + A.S(other))); }, $shl(receiver, other) { if (other < 0) throw A.wrapException(A.argumentErrorValue(other)); return other > 31 ? 0 : receiver << other >>> 0; }, _shlPositive$1(receiver, other) { return other > 31 ? 0 : receiver << other >>> 0; }, $shr(receiver, other) { var t1; if (other < 0) throw A.wrapException(A.argumentErrorValue(other)); if (receiver > 0) t1 = this._shrBothPositive$1(receiver, other); else { t1 = other > 31 ? 31 : other; t1 = receiver >> t1 >>> 0; } return t1; }, _shrOtherPositive$1(receiver, other) { var t1; if (receiver > 0) t1 = this._shrBothPositive$1(receiver, other); else { t1 = other > 31 ? 31 : other; t1 = receiver >> t1 >>> 0; } return t1; }, _shrReceiverPositive$1(receiver, other) { if (0 > other) throw A.wrapException(A.argumentErrorValue(other)); return this._shrBothPositive$1(receiver, other); }, _shrBothPositive$1(receiver, other) { return other > 31 ? 0 : receiver >>> other; }, $lt(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver < other; }, $gt(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver > other; }, $ge(receiver, other) { if (typeof other != "number") throw A.wrapException(A.argumentErrorValue(other)); return receiver >= other; }, get$runtimeType(receiver) { return B.Type_num_cv7; }, $isComparable: 1, $isdouble: 1, $isnum: 1 }; J.JSInt.prototype = { abs$0(receiver) { return Math.abs(receiver); }, get$sign(receiver) { var t1; if (receiver > 0) t1 = 1; else t1 = receiver < 0 ? -1 : receiver; return t1; }, get$bitLength(receiver) { var wordBits, i, t1 = receiver < 0 ? -receiver - 1 : receiver, nonneg = t1; for (wordBits = 32; nonneg >= 4294967296;) { nonneg = this._tdivFast$1(nonneg, 4294967296); wordBits += 32; } i = nonneg | nonneg >> 1; i |= i >> 2; i |= i >> 4; i |= i >> 8; i = (i | i >> 16) >>> 0; i = (i >>> 0) - (i >>> 1 & 1431655765); i = (i & 858993459) + (i >>> 2 & 858993459); i = i + (i >>> 4) & 252645135; i += i >>> 8; return wordBits - (32 - (i + (i >>> 16) & 63)); }, get$runtimeType(receiver) { return B.Type_int_tHn; }, $isint: 1 }; J.JSNumNotInt.prototype = { get$runtimeType(receiver) { return B.Type_double_K1J; } }; J.JSString.prototype = { codeUnitAt$1(receiver, index) { if (!A._isInt(index)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); if (index < 0) throw A.wrapException(A.diagnoseIndexError(receiver, index)); if (index >= receiver.length) A.throwExpression(A.diagnoseIndexError(receiver, index)); return receiver.charCodeAt(index); }, _codeUnitAt$1(receiver, index) { if (index >= receiver.length) throw A.wrapException(A.diagnoseIndexError(receiver, index)); return receiver.charCodeAt(index); }, allMatches$2(receiver, string, start) { var t1; if (typeof string != "string") A.throwExpression(A.argumentErrorValue(string)); t1 = string.length; if (start > t1) throw A.wrapException(A.RangeError$range(start, 0, t1, null, null)); return new A._StringAllMatchesIterable(string, receiver, start); }, allMatches$1($receiver, string) { return this.allMatches$2($receiver, string, 0); }, matchAsPrefix$2(receiver, string, start) { var t1, i, _null = null; if (start < 0 || start > string.length) throw A.wrapException(A.RangeError$range(start, 0, string.length, _null, _null)); t1 = receiver.length; if (start + t1 > string.length) return _null; for (i = 0; i < t1; ++i) if (this.codeUnitAt$1(string, start + i) !== this._codeUnitAt$1(receiver, i)) return _null; return new A.StringMatch(start, string, receiver); }, $add(receiver, other) { if (typeof other != "string") throw A.wrapException(A.ArgumentError$value(other, null, null)); return receiver + other; }, endsWith$1(receiver, other) { var otherLength, t1; if (typeof other != "string") A.throwExpression(A.argumentErrorValue(other)); otherLength = other.length; t1 = receiver.length; if (otherLength > t1) return false; return other === this.substring$1(receiver, t1 - otherLength); }, replaceFirst$2(receiver, from, to) { if (typeof to != "string") A.throwExpression(A.argumentErrorValue(to)); A.RangeError_checkValueInInterval(0, 0, receiver.length, "startIndex"); return A.stringReplaceFirstUnchecked(receiver, from, to, 0); }, split$1(receiver, pattern) { if (pattern == null) A.throwExpression(A.argumentErrorValue(pattern)); if (typeof pattern == "string") return A._setArrayType(receiver.split(pattern), type$.JSArray_String); else if (pattern instanceof A.JSSyntaxRegExp && pattern.get$_nativeAnchoredVersion().exec("").length - 2 === 0) return A._setArrayType(receiver.split(pattern._nativeRegExp), type$.JSArray_String); else return this._defaultSplit$1(receiver, pattern); }, replaceRange$3(receiver, start, end, replacement) { var e; if (typeof replacement != "string") A.throwExpression(A.argumentErrorValue(replacement)); if (!A._isInt(start)) A.throwExpression(A.argumentErrorValue(start)); e = A.RangeError_checkValidRange(start, end, receiver.length, null, null); if (!A._isInt(e)) A.throwExpression(A.argumentErrorValue(e)); return A.stringReplaceRangeUnchecked(receiver, start, e, replacement); }, _defaultSplit$1(receiver, pattern) { var t1, start, $length, match, matchStart, matchEnd, result = A._setArrayType([], type$.JSArray_String); for (t1 = J.allMatches$1$s(pattern, receiver), t1 = t1.get$iterator(t1), start = 0, $length = 1; t1.moveNext$0();) { match = t1.get$current(t1); matchStart = match.get$start(match); matchEnd = match.get$end(match); $length = matchEnd - matchStart; if ($length === 0 && start === matchStart) continue; result.push(this.substring$2(receiver, start, matchStart)); start = matchEnd; } if (start < receiver.length || $length > 0) result.push(this.substring$1(receiver, start)); return result; }, startsWith$2(receiver, pattern, index) { var endIndex; if (index < 0 || index > receiver.length) throw A.wrapException(A.RangeError$range(index, 0, receiver.length, null, null)); if (typeof pattern == "string") { endIndex = index + pattern.length; if (endIndex > receiver.length) return false; return pattern === receiver.substring(index, endIndex); } return J.matchAsPrefix$2$s(pattern, receiver, index) != null; }, startsWith$1($receiver, pattern) { return this.startsWith$2($receiver, pattern, 0); }, substring$2(receiver, start, end) { if (!A._isInt(start)) A.throwExpression(A.argumentErrorValue(start)); return receiver.substring(start, A.RangeError_checkValidRange(start, end, receiver.length, null, null)); }, substring$1($receiver, start) { return this.substring$2($receiver, start, null); }, toLowerCase$0(receiver) { return receiver.toLowerCase(); }, trim$0(receiver) { var startIndex, t1, endIndex0, result = receiver.trim(), endIndex = result.length; if (endIndex === 0) return result; if (this._codeUnitAt$1(result, 0) === 133) { startIndex = J.JSString__skipLeadingWhitespace(result, 1); if (startIndex === endIndex) return ""; } else startIndex = 0; t1 = endIndex - 1; endIndex0 = this.codeUnitAt$1(result, t1) === 133 ? J.JSString__skipTrailingWhitespace(result, t1) : endIndex; if (startIndex === 0 && endIndex0 === endIndex) return result; return result.substring(startIndex, endIndex0); }, trimLeft$0(receiver) { var result, startIndex; if (typeof receiver.trimLeft != "undefined") { result = receiver.trimLeft(); if (result.length === 0) return result; startIndex = this._codeUnitAt$1(result, 0) === 133 ? J.JSString__skipLeadingWhitespace(result, 1) : 0; } else { startIndex = J.JSString__skipLeadingWhitespace(receiver, 0); result = receiver; } if (startIndex === 0) return result; if (startIndex === result.length) return ""; return result.substring(startIndex); }, trimRight$0(receiver) { var result, endIndex, t1; if (typeof receiver.trimRight != "undefined") { result = receiver.trimRight(); endIndex = result.length; if (endIndex === 0) return result; t1 = endIndex - 1; if (this.codeUnitAt$1(result, t1) === 133) endIndex = J.JSString__skipTrailingWhitespace(result, t1); } else { endIndex = J.JSString__skipTrailingWhitespace(receiver, receiver.length); result = receiver; } if (endIndex === result.length) return result; if (endIndex === 0) return ""; return result.substring(0, endIndex); }, $mul(receiver, times) { var s, result; if (0 >= times) return ""; if (times === 1 || receiver.length === 0) return receiver; if (times !== times >>> 0) throw A.wrapException(B.C_OutOfMemoryError); for (s = receiver, result = ""; true;) { if ((times & 1) === 1) result = s + result; times = times >>> 1; if (times === 0) break; s += s; } return result; }, padLeft$2(receiver, width, padding) { var delta = width - receiver.length; if (delta <= 0) return receiver; return this.$mul(padding, delta) + receiver; }, padRight$1(receiver, width) { var delta = width - receiver.length; if (delta <= 0) return receiver; return receiver + this.$mul(" ", delta); }, indexOf$2(receiver, pattern, start) { var match, t1, t2, i; if (start < 0 || start > receiver.length) throw A.wrapException(A.RangeError$range(start, 0, receiver.length, null, null)); if (typeof pattern == "string") return receiver.indexOf(pattern, start); if (pattern instanceof A.JSSyntaxRegExp) { match = pattern._execGlobal$2(receiver, start); return match == null ? -1 : match._match.index; } for (t1 = receiver.length, t2 = J.getInterceptor$s(pattern), i = start; i <= t1; ++i) if (t2.matchAsPrefix$2(pattern, receiver, i) != null) return i; return -1; }, indexOf$1($receiver, pattern) { return this.indexOf$2($receiver, pattern, 0); }, lastIndexOf$2(receiver, pattern, start) { var t1, t2, i; if (start == null) start = receiver.length; else if (start < 0 || start > receiver.length) throw A.wrapException(A.RangeError$range(start, 0, receiver.length, null, null)); if (typeof pattern == "string") { t1 = pattern.length; t2 = receiver.length; if (start + t1 > t2) start = t2 - t1; return receiver.lastIndexOf(pattern, start); } for (t1 = J.getInterceptor$s(pattern), i = start; i >= 0; --i) if (t1.matchAsPrefix$2(pattern, receiver, i) != null) return i; return -1; }, lastIndexOf$1($receiver, pattern) { return this.lastIndexOf$2($receiver, pattern, null); }, contains$2(receiver, other, startIndex) { var t1; if (other == null) A.throwExpression(A.argumentErrorValue(other)); t1 = receiver.length; if (startIndex > t1) throw A.wrapException(A.RangeError$range(startIndex, 0, t1, null, null)); return A.stringContainsUnchecked(receiver, other, startIndex); }, contains$1($receiver, other) { return this.contains$2($receiver, other, 0); }, get$isEmpty(receiver) { return receiver.length === 0; }, compareTo$1(receiver, other) { var t1; if (typeof other != "string") throw A.wrapException(A.argumentErrorValue(other)); if (receiver === other) t1 = 0; else t1 = receiver < other ? -1 : 1; return t1; }, toString$0(receiver) { return receiver; }, get$hashCode(receiver) { var t1, hash, i; for (t1 = receiver.length, hash = 0, i = 0; i < t1; ++i) { hash = hash + receiver.charCodeAt(i) & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; hash ^= hash >> 6; } hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >> 11; return hash + ((hash & 16383) << 15) & 536870911; }, get$runtimeType(receiver) { return B.Type_String_k8F; }, get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (!A._isInt(index)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); if (!(index >= 0 && index < receiver.length)) throw A.wrapException(A.diagnoseIndexError(receiver, index)); return receiver[index]; }, $isJSIndexable: 1, $isComparable: 1, $isPattern: 1, $isString: 1 }; A._CopyingBytesBuilder.prototype = { add$1(_, bytes) { var required, t2, t3, newSize, x, newBuffer, i, _this = this, t1 = J.getInterceptor$asx(bytes), byteCount = t1.get$length(bytes); if (byteCount === 0) return; required = _this.__internal$_length + byteCount; t2 = _this.__internal$_buffer; t3 = t2.length; if (t3 < required) { newSize = required * 2; if (newSize < 1024) newSize = 1024; else { x = newSize - 1; x |= B.JSInt_methods._shrOtherPositive$1(x, 1); x |= x >>> 2; x |= x >>> 4; x |= x >>> 8; newSize = ((x | x >>> 16) >>> 0) + 1; } newBuffer = new Uint8Array(newSize); B.NativeUint8List_methods.setRange$3(newBuffer, 0, t3, t2); _this.__internal$_buffer = newBuffer; t2 = newBuffer; } if (type$.Uint8List._is(bytes)) B.NativeUint8List_methods.setRange$3(t2, _this.__internal$_length, required, bytes); else for (i = 0; i < byteCount; ++i) _this.__internal$_buffer[_this.__internal$_length + i] = t1.$index(bytes, i); _this.__internal$_length = required; }, takeBytes$0() { var t2, buffer, _this = this, t1 = _this.__internal$_length; if (t1 === 0) return $.$get$_CopyingBytesBuilder__emptyList(); t2 = _this.__internal$_buffer; buffer = B.NativeByteBuffer_methods.asUint8List$2(t2.buffer, t2.byteOffset, t1); _this.__internal$_length = 0; _this.__internal$_buffer = $.$get$_CopyingBytesBuilder__emptyList(); return buffer; }, toBytes$0() { var t2, t1 = this.__internal$_length; if (t1 === 0) return $.$get$_CopyingBytesBuilder__emptyList(); t2 = this.__internal$_buffer; return new Uint8Array(A._ensureNativeList(B.NativeByteBuffer_methods.asUint8List$2(t2.buffer, t2.byteOffset, t1))); }, get$length(_) { return this.__internal$_length; }, get$isEmpty(_) { return this.__internal$_length === 0; } }; A._BytesBuilder.prototype = { add$1(_, bytes) { var typedBytes = type$.Uint8List._is(bytes) ? bytes : new Uint8Array(A._ensureNativeList(bytes)); this._chunks.push(typedBytes); this.__internal$_length = this.__internal$_length + J.get$length$asx(typedBytes); }, takeBytes$0() { var t2, t3, buffer, offset, _i, chunk, _this = this, t1 = _this.__internal$_length; if (t1 === 0) return $.$get$_CopyingBytesBuilder__emptyList(); t2 = _this._chunks; t3 = t2.length; if (t3 === 1) { buffer = t2[0]; _this.__internal$_length = 0; B.JSArray_methods.set$length(t2, 0); return buffer; } buffer = new Uint8Array(t1); for (offset = 0, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { chunk = t2[_i]; t1 = J.getInterceptor$asx(chunk); B.NativeUint8List_methods.setRange$3(buffer, offset, offset + t1.get$length(chunk), chunk); offset += t1.get$length(chunk); } _this.__internal$_length = 0; B.JSArray_methods.set$length(t2, 0); return buffer; }, get$length(_) { return this.__internal$_length; }, get$isEmpty(_) { return this.__internal$_length === 0; } }; A._CastIterableBase.prototype = { get$iterator(_) { var t1 = A._instanceType(this); return new A.CastIterator(J.get$iterator$ax(this.get$_source()), t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("CastIterator<1,2>")); }, get$length(_) { return J.get$length$asx(this.get$_source()); }, get$isEmpty(_) { return J.get$isEmpty$asx(this.get$_source()); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this.get$_source()); }, skip$1(_, count) { var t1 = A._instanceType(this); return A.CastIterable_CastIterable(J.skip$1$ax(this.get$_source(), count), t1._precomputed1, t1._rest[1]); }, take$1(_, count) { var t1 = A._instanceType(this); return A.CastIterable_CastIterable(J.take$1$ax(this.get$_source(), count), t1._precomputed1, t1._rest[1]); }, elementAt$1(_, index) { return A._instanceType(this)._rest[1]._as(J.elementAt$1$ax(this.get$_source(), index)); }, get$first(_) { return A._instanceType(this)._rest[1]._as(J.get$first$ax(this.get$_source())); }, get$last(_) { return A._instanceType(this)._rest[1]._as(J.get$last$ax(this.get$_source())); }, contains$1(_, other) { return J.contains$1$asx(this.get$_source(), other); }, toString$0(_) { return J.toString$0$(this.get$_source()); } }; A.CastIterator.prototype = { moveNext$0() { return this._source.moveNext$0(); }, get$current(_) { var t1 = this._source; return this.$ti._rest[1]._as(t1.get$current(t1)); } }; A.CastIterable.prototype = { cast$1$0(_, $R) { return A.CastIterable_CastIterable(this._source, A._instanceType(this)._precomputed1, $R); }, get$_source() { return this._source; } }; A._EfficientLengthCastIterable.prototype = {$isEfficientLengthIterable: 1}; A._CastListBase.prototype = { $index(_, index) { return this.$ti._rest[1]._as(J.$index$asx(this._source, index)); }, $indexSet(_, index, value) { J.$indexSet$ax(this._source, index, this.$ti._precomputed1._as(value)); }, set$length(_, $length) { J.set$length$asx(this._source, $length); }, add$1(_, value) { J.add$1$ax(this._source, this.$ti._precomputed1._as(value)); }, addAll$1(_, values) { var t1 = this.$ti; J.addAll$1$ax(this._source, A.CastIterable_CastIterable(values, t1._rest[1], t1._precomputed1)); }, sort$1(_, compare) { var t1 = compare == null ? null : new A._CastListBase_sort_closure(this, compare); J.sort$1$ax(this._source, t1); }, insert$2(_, index, element) { J.insert$2$ax(this._source, index, this.$ti._precomputed1._as(element)); }, insertAll$2(_, index, elements) { var t1 = this.$ti; J.insertAll$2$ax(this._source, index, A.CastIterable_CastIterable(elements, t1._rest[1], t1._precomputed1)); }, setAll$2(_, index, elements) { var t1 = this.$ti; J.setAll$2$ax(this._source, index, A.CastIterable_CastIterable(elements, t1._rest[1], t1._precomputed1)); }, remove$1(_, value) { return J.remove$1$ax(this._source, value); }, removeAt$1(_, index) { return this.$ti._rest[1]._as(J.removeAt$1$ax(this._source, index)); }, removeLast$0(_) { return this.$ti._rest[1]._as(J.removeLast$0$ax(this._source)); }, removeWhere$1(_, test) { J.removeWhere$1$ax(this._source, new A._CastListBase_removeWhere_closure(this, test)); }, retainWhere$1(_, test) { J.retainWhere$1$ax(this._source, new A._CastListBase_retainWhere_closure(this, test)); }, getRange$2(_, start, end) { var t1 = this.$ti; return A.CastIterable_CastIterable(J.getRange$2$ax(this._source, start, end), t1._precomputed1, t1._rest[1]); }, setRange$4(_, start, end, iterable, skipCount) { var t1 = this.$ti; J.setRange$4$ax(this._source, start, end, A.CastIterable_CastIterable(iterable, t1._rest[1], t1._precomputed1), skipCount); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(_, start, end) { J.removeRange$2$ax(this._source, start, end); }, $isEfficientLengthIterable: 1, $isList: 1 }; A._CastListBase_sort_closure.prototype = { call$2(v1, v2) { var t1 = this.$this.$ti._rest[1]; return this.compare.call$2(t1._as(v1), t1._as(v2)); }, $signature() { return this.$this.$ti._eval$1("int(1,1)"); } }; A._CastListBase_removeWhere_closure.prototype = { call$1(element) { return this.test.call$1(this.$this.$ti._rest[1]._as(element)); }, $signature() { return this.$this.$ti._eval$1("bool(1)"); } }; A._CastListBase_retainWhere_closure.prototype = { call$1(element) { return this.test.call$1(this.$this.$ti._rest[1]._as(element)); }, $signature() { return this.$this.$ti._eval$1("bool(1)"); } }; A.CastList.prototype = { cast$1$0(_, $R) { return new A.CastList(this._source, this.$ti._eval$1("@<1>")._bind$1($R)._eval$1("CastList<1,2>")); }, get$_source() { return this._source; } }; A.CastMap.prototype = { cast$2$0(_, RK, RV) { var t1 = this.$ti; return new A.CastMap(this._source, t1._eval$1("@<1>")._bind$1(t1._rest[1])._bind$1(RK)._bind$1(RV)._eval$1("CastMap<1,2,3,4>")); }, containsKey$1(_, key) { return J.containsKey$1$x(this._source, key); }, $index(_, key) { return this.$ti._eval$1("4?")._as(J.$index$asx(this._source, key)); }, $indexSet(_, key, value) { var t1 = this.$ti; J.$indexSet$ax(this._source, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, putIfAbsent$2(_, key, ifAbsent) { var t1 = this.$ti; return t1._rest[3]._as(J.putIfAbsent$2$x(this._source, t1._precomputed1._as(key), new A.CastMap_putIfAbsent_closure(this, ifAbsent))); }, remove$1(_, key) { return this.$ti._eval$1("4?")._as(J.remove$1$ax(this._source, key)); }, forEach$1(_, f) { J.forEach$1$ax(this._source, new A.CastMap_forEach_closure(this, f)); }, get$keys(_) { var t1 = this.$ti; return A.CastIterable_CastIterable(J.get$keys$x(this._source), t1._precomputed1, t1._rest[2]); }, get$values(_) { var t1 = this.$ti; return A.CastIterable_CastIterable(J.get$values$x(this._source), t1._rest[1], t1._rest[3]); }, get$length(_) { return J.get$length$asx(this._source); }, get$isEmpty(_) { return J.get$isEmpty$asx(this._source); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this._source); }, get$entries(_) { var t1 = J.get$entries$x(this._source); return t1.map$1$1(t1, new A.CastMap_entries_closure(this), this.$ti._eval$1("MapEntry<3,4>")); } }; A.CastMap_putIfAbsent_closure.prototype = { call$0() { return this.$this.$ti._rest[1]._as(this.ifAbsent.call$0()); }, $signature() { return this.$this.$ti._eval$1("2()"); } }; A.CastMap_forEach_closure.prototype = { call$2(key, value) { var t1 = this.$this.$ti; this.f.call$2(t1._rest[2]._as(key), t1._rest[3]._as(value)); }, $signature() { return this.$this.$ti._eval$1("~(1,2)"); } }; A.CastMap_entries_closure.prototype = { call$1(e) { var t1 = this.$this.$ti, t2 = t1._rest[3]; return new A.MapEntry(t1._rest[2]._as(e.get$key(e)), t2._as(e.get$value(e)), t1._eval$1("@<3>")._bind$1(t2)._eval$1("MapEntry<1,2>")); }, $signature() { return this.$this.$ti._eval$1("MapEntry<3,4>(MapEntry<1,2>)"); } }; A.LateError.prototype = { toString$0(_) { return "LateInitializationError: " + this.__internal$_message; } }; A.ReachabilityError.prototype = { toString$0(_) { return "ReachabilityError: " + this.__internal$_message; } }; A.CodeUnits.prototype = { get$length(_) { return this._string.length; }, $index(_, i) { return B.JSString_methods.codeUnitAt$1(this._string, i); } }; A.nullFuture_closure.prototype = { call$0() { return A.Future_Future$value(null, type$.Null); }, $signature: 428 }; A.SentinelValue.prototype = { get$id() { return 0; } }; A.NotNullableError.prototype = { toString$0(_) { return "Null is not a valid value for '" + this._name + "' of type '" + A.createRuntimeType(this.$ti._precomputed1).toString$0(0) + "'"; }, $isTypeError: 1 }; A.EfficientLengthIterable.prototype = {}; A.ListIterable.prototype = { get$iterator(_) { var _this = this; return new A.ListIterator(_this, _this.get$length(_this), A._instanceType(_this)._eval$1("ListIterator")); }, forEach$1(_, action) { var i, _this = this, $length = _this.get$length(_this); for (i = 0; i < $length; ++i) { action.call$1(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } }, get$isEmpty(_) { return this.get$length(this) === 0; }, get$first(_) { if (this.get$length(this) === 0) throw A.wrapException(A.IterableElementError_noElement()); return this.elementAt$1(0, 0); }, get$last(_) { var _this = this; if (_this.get$length(_this) === 0) throw A.wrapException(A.IterableElementError_noElement()); return _this.elementAt$1(0, _this.get$length(_this) - 1); }, contains$1(_, element) { var i, _this = this, $length = _this.get$length(_this); for (i = 0; i < $length; ++i) { if (J.$eq$(_this.elementAt$1(0, i), element)) return true; if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return false; }, firstWhere$2$orElse(_, test, orElse) { var i, element, _this = this, $length = _this.get$length(_this); for (i = 0; i < $length; ++i) { element = _this.elementAt$1(0, i); if (test.call$1(element)) return element; if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } throw A.wrapException(A.IterableElementError_noElement()); }, firstWhere$1($receiver, test) { return this.firstWhere$2$orElse($receiver, test, null); }, join$1(_, separator) { var first, t1, i, _this = this, $length = _this.get$length(_this); if (separator.length !== 0) { if ($length === 0) return ""; first = A.S(_this.elementAt$1(0, 0)); if ($length != _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); for (t1 = first, i = 1; i < $length; ++i) { t1 = t1 + separator + A.S(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return t1.charCodeAt(0) == 0 ? t1 : t1; } else { for (i = 0, t1 = ""; i < $length; ++i) { t1 += A.S(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return t1.charCodeAt(0) == 0 ? t1 : t1; } }, join$0($receiver) { return this.join$1($receiver, ""); }, where$1(_, test) { return this.super$Iterable$where(0, test); }, map$1$1(_, toElement, $T) { return new A.MappedListIterable(this, toElement, A._instanceType(this)._eval$1("@")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1($receiver, toElement) { return this.map$1$1($receiver, toElement, type$.dynamic); }, reduce$1(_, combine) { var value, i, _this = this, $length = _this.get$length(_this); if ($length === 0) throw A.wrapException(A.IterableElementError_noElement()); value = _this.elementAt$1(0, 0); for (i = 1; i < $length; ++i) { value = combine.call$2(value, _this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return value; }, fold$1$2(_, initialValue, combine) { var value, i, _this = this, $length = _this.get$length(_this); for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, _this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return value; }, skip$1(_, count) { return A.SubListIterable$(this, count, null, A._instanceType(this)._eval$1("ListIterable.E")); }, take$1(_, count) { return A.SubListIterable$(this, 0, A.checkNotNullable(count, "count", type$.int), A._instanceType(this)._eval$1("ListIterable.E")); }, toList$1$growable(_, growable) { return A.List_List$of(this, growable, A._instanceType(this)._eval$1("ListIterable.E")); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { var i, _this = this, result = A.LinkedHashSet_LinkedHashSet(A._instanceType(_this)._eval$1("ListIterable.E")); for (i = 0; i < _this.get$length(_this); ++i) result.add$1(0, _this.elementAt$1(0, i)); return result; } }; A.SubListIterable.prototype = { SubListIterable$3(_iterable, _start, _endOrLength, $E) { var endOrLength, t1 = this._start; A.RangeError_checkNotNegative(t1, "start"); endOrLength = this._endOrLength; if (endOrLength != null) { A.RangeError_checkNotNegative(endOrLength, "end"); if (t1 > endOrLength) throw A.wrapException(A.RangeError$range(t1, 0, endOrLength, "start", null)); } }, get$_endIndex() { var $length = J.get$length$asx(this.__internal$_iterable), endOrLength = this._endOrLength; if (endOrLength == null || endOrLength > $length) return $length; return endOrLength; }, get$_startIndex() { var $length = J.get$length$asx(this.__internal$_iterable), t1 = this._start; if (t1 > $length) return $length; return t1; }, get$length(_) { var endOrLength, $length = J.get$length$asx(this.__internal$_iterable), t1 = this._start; if (t1 >= $length) return 0; endOrLength = this._endOrLength; if (endOrLength == null || endOrLength >= $length) return $length - t1; return endOrLength - t1; }, elementAt$1(_, index) { var _this = this, realIndex = _this.get$_startIndex() + index; if (index < 0 || realIndex >= _this.get$_endIndex()) throw A.wrapException(A.IndexError$(index, _this, "index", null, null)); return J.elementAt$1$ax(_this.__internal$_iterable, realIndex); }, skip$1(_, count) { var newStart, endOrLength, _this = this; A.RangeError_checkNotNegative(count, "count"); newStart = _this._start + count; endOrLength = _this._endOrLength; if (endOrLength != null && newStart >= endOrLength) return new A.EmptyIterable(_this.$ti._eval$1("EmptyIterable<1>")); return A.SubListIterable$(_this.__internal$_iterable, newStart, endOrLength, _this.$ti._precomputed1); }, take$1(_, count) { var endOrLength, t1, newEnd, _this = this; A.RangeError_checkNotNegative(count, "count"); endOrLength = _this._endOrLength; t1 = _this._start; if (endOrLength == null) return A.SubListIterable$(_this.__internal$_iterable, t1, t1 + count, _this.$ti._precomputed1); else { newEnd = t1 + count; if (endOrLength < newEnd) return _this; return A.SubListIterable$(_this.__internal$_iterable, t1, newEnd, _this.$ti._precomputed1); } }, toList$1$growable(_, growable) { var $length, result, i, _this = this, start = _this._start, t1 = _this.__internal$_iterable, t2 = J.getInterceptor$asx(t1), end = t2.get$length(t1), endOrLength = _this._endOrLength; if (endOrLength != null && endOrLength < end) end = endOrLength; $length = end - start; if ($length <= 0) { t1 = _this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } result = A.List_List$filled($length, t2.elementAt$1(t1, start), growable, _this.$ti._precomputed1); for (i = 1; i < $length; ++i) { result[i] = t2.elementAt$1(t1, start + i); if (t2.get$length(t1) < end) throw A.wrapException(A.ConcurrentModificationError$(_this)); } return result; }, toList$0($receiver) { return this.toList$1$growable($receiver, true); } }; A.ListIterator.prototype = { get$current(_) { return this.__internal$_current; }, moveNext$0() { var t3, _this = this, t1 = _this.__internal$_iterable, t2 = J.getInterceptor$asx(t1), $length = t2.get$length(t1); if (_this.__internal$_length != $length) throw A.wrapException(A.ConcurrentModificationError$(t1)); t3 = _this.__internal$_index; if (t3 >= $length) { _this.__internal$_current = null; return false; } _this.__internal$_current = t2.elementAt$1(t1, t3); ++_this.__internal$_index; return true; } }; A.MappedIterable.prototype = { get$iterator(_) { var t1 = A._instanceType(this); return new A.MappedIterator(J.get$iterator$ax(this.__internal$_iterable), this._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); }, get$length(_) { return J.get$length$asx(this.__internal$_iterable); }, get$isEmpty(_) { return J.get$isEmpty$asx(this.__internal$_iterable); }, get$first(_) { return this._f.call$1(J.get$first$ax(this.__internal$_iterable)); }, get$last(_) { return this._f.call$1(J.get$last$ax(this.__internal$_iterable)); }, elementAt$1(_, index) { return this._f.call$1(J.elementAt$1$ax(this.__internal$_iterable, index)); } }; A.EfficientLengthMappedIterable.prototype = {$isEfficientLengthIterable: 1}; A.MappedIterator.prototype = { moveNext$0() { var _this = this, t1 = _this._iterator; if (t1.moveNext$0()) { _this.__internal$_current = _this._f.call$1(t1.get$current(t1)); return true; } _this.__internal$_current = null; return false; }, get$current(_) { return this.__internal$_current; } }; A.MappedListIterable.prototype = { get$length(_) { return J.get$length$asx(this._source); }, elementAt$1(_, index) { return this._f.call$1(J.elementAt$1$ax(this._source, index)); } }; A.WhereIterable.prototype = { get$iterator(_) { return new A.WhereIterator(J.get$iterator$ax(this.__internal$_iterable), this._f, this.$ti._eval$1("WhereIterator<1>")); }, map$1$1(_, toElement, $T) { return new A.MappedIterable(this, toElement, this.$ti._eval$1("@<1>")._bind$1($T)._eval$1("MappedIterable<1,2>")); }, map$1($receiver, toElement) { return this.map$1$1($receiver, toElement, type$.dynamic); } }; A.WhereIterator.prototype = { moveNext$0() { var t1, t2; for (t1 = this._iterator, t2 = this._f; t1.moveNext$0();) if (t2.call$1(t1.get$current(t1))) return true; return false; }, get$current(_) { var t1 = this._iterator; return t1.get$current(t1); } }; A.ExpandIterable.prototype = { get$iterator(_) { var t1 = this.$ti; return new A.ExpandIterator(J.get$iterator$ax(this.__internal$_iterable), this._f, B.C_EmptyIterator, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("ExpandIterator<1,2>")); } }; A.ExpandIterator.prototype = { get$current(_) { return this.__internal$_current; }, moveNext$0() { var t2, t3, _this = this, t1 = _this._currentExpansion; if (t1 == null) return false; for (t2 = _this._iterator, t3 = _this._f; !t1.moveNext$0();) { _this.__internal$_current = null; if (t2.moveNext$0()) { _this._currentExpansion = null; t1 = J.get$iterator$ax(t3.call$1(t2.get$current(t2))); _this._currentExpansion = t1; } else return false; } t1 = _this._currentExpansion; _this.__internal$_current = t1.get$current(t1); return true; } }; A.TakeIterable.prototype = { get$iterator(_) { return new A.TakeIterator(J.get$iterator$ax(this.__internal$_iterable), this._takeCount, A._instanceType(this)._eval$1("TakeIterator<1>")); } }; A.EfficientLengthTakeIterable.prototype = { get$length(_) { var iterableLength = J.get$length$asx(this.__internal$_iterable), t1 = this._takeCount; if (iterableLength > t1) return t1; return iterableLength; }, $isEfficientLengthIterable: 1 }; A.TakeIterator.prototype = { moveNext$0() { if (--this._remaining >= 0) return this._iterator.moveNext$0(); this._remaining = -1; return false; }, get$current(_) { var t1; if (this._remaining < 0) return null; t1 = this._iterator; return t1.get$current(t1); } }; A.SkipIterable.prototype = { skip$1(_, count) { A.ArgumentError_checkNotNull(count, "count"); A.RangeError_checkNotNegative(count, "count"); return new A.SkipIterable(this.__internal$_iterable, this._skipCount + count, A._instanceType(this)._eval$1("SkipIterable<1>")); }, get$iterator(_) { return new A.SkipIterator(J.get$iterator$ax(this.__internal$_iterable), this._skipCount, A._instanceType(this)._eval$1("SkipIterator<1>")); } }; A.EfficientLengthSkipIterable.prototype = { get$length(_) { var $length = J.get$length$asx(this.__internal$_iterable) - this._skipCount; if ($length >= 0) return $length; return 0; }, skip$1(_, count) { A.ArgumentError_checkNotNull(count, "count"); A.RangeError_checkNotNegative(count, "count"); return new A.EfficientLengthSkipIterable(this.__internal$_iterable, this._skipCount + count, this.$ti); }, $isEfficientLengthIterable: 1 }; A.SkipIterator.prototype = { moveNext$0() { var t1, i; for (t1 = this._iterator, i = 0; i < this._skipCount; ++i) t1.moveNext$0(); this._skipCount = 0; return t1.moveNext$0(); }, get$current(_) { var t1 = this._iterator; return t1.get$current(t1); } }; A.SkipWhileIterable.prototype = { get$iterator(_) { return new A.SkipWhileIterator(J.get$iterator$ax(this.__internal$_iterable), this._f, this.$ti._eval$1("SkipWhileIterator<1>")); } }; A.SkipWhileIterator.prototype = { moveNext$0() { var t1, t2, _this = this; if (!_this._hasSkipped) { _this._hasSkipped = true; for (t1 = _this._iterator, t2 = _this._f; t1.moveNext$0();) if (!t2.call$1(t1.get$current(t1))) return true; } return _this._iterator.moveNext$0(); }, get$current(_) { var t1 = this._iterator; return t1.get$current(t1); } }; A.EmptyIterable.prototype = { get$iterator(_) { return B.C_EmptyIterator; }, forEach$1(_, action) { }, get$isEmpty(_) { return true; }, get$length(_) { return 0; }, get$first(_) { throw A.wrapException(A.IterableElementError_noElement()); }, get$last(_) { throw A.wrapException(A.IterableElementError_noElement()); }, elementAt$1(_, index) { throw A.wrapException(A.RangeError$range(index, 0, 0, "index", null)); }, contains$1(_, element) { return false; }, firstWhere$2$orElse(_, test, orElse) { throw A.wrapException(A.IterableElementError_noElement()); }, firstWhere$1($receiver, test) { return this.firstWhere$2$orElse($receiver, test, null); }, where$1(_, test) { return this; }, map$1$1(_, toElement, $T) { return new A.EmptyIterable($T._eval$1("EmptyIterable<0>")); }, map$1($receiver, toElement) { return this.map$1$1($receiver, toElement, type$.dynamic); }, skip$1(_, count) { A.RangeError_checkNotNegative(count, "count"); return this; }, take$1(_, count) { A.RangeError_checkNotNegative(count, "count"); return this; }, toList$1$growable(_, growable) { var t1 = this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return A.LinkedHashSet_LinkedHashSet(this.$ti._precomputed1); } }; A.EmptyIterator.prototype = { moveNext$0() { return false; }, get$current(_) { throw A.wrapException(A.IterableElementError_noElement()); } }; A.FollowedByIterable.prototype = { get$iterator(_) { return new A.FollowedByIterator(J.get$iterator$ax(this.__internal$_first), this._second, A._instanceType(this)._eval$1("FollowedByIterator<1>")); }, get$length(_) { var t1 = this._second; return J.get$length$asx(this.__internal$_first) + t1.get$length(t1); }, get$isEmpty(_) { var t1; if (J.get$isEmpty$asx(this.__internal$_first)) { t1 = this._second; t1 = !t1.get$iterator(t1).moveNext$0(); } else t1 = false; return t1; }, get$isNotEmpty(_) { var t1; if (!J.get$isNotEmpty$asx(this.__internal$_first)) { t1 = this._second; t1 = !t1.get$isEmpty(t1); } else t1 = true; return t1; }, contains$1(_, value) { return J.contains$1$asx(this.__internal$_first, value) || this._second.contains$1(0, value); }, get$first(_) { var t1, iterator = J.get$iterator$ax(this.__internal$_first); if (iterator.moveNext$0()) return iterator.get$current(iterator); t1 = this._second; return t1.get$first(t1); }, get$last(_) { var last, t1 = this._second, t2 = t1.$ti, iterator = new A.ExpandIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, B.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("ExpandIterator<1,2>")); if (iterator.moveNext$0()) { last = iterator.__internal$_current; for (; iterator.moveNext$0();) last = iterator.__internal$_current; return last; } return J.get$last$ax(this.__internal$_first); } }; A.FollowedByIterator.prototype = { moveNext$0() { var t1, t2, _this = this; if (_this._currentIterator.moveNext$0()) return true; t1 = _this._nextIterable; if (t1 != null) { t2 = t1.$ti; t2 = new A.ExpandIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, B.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("ExpandIterator<1,2>")); _this._currentIterator = t2; _this._nextIterable = null; return t2.moveNext$0(); } return false; }, get$current(_) { var t1 = this._currentIterator; return t1.get$current(t1); } }; A.WhereTypeIterable.prototype = { get$iterator(_) { return new A.WhereTypeIterator(J.get$iterator$ax(this._source), this.$ti._eval$1("WhereTypeIterator<1>")); } }; A.WhereTypeIterator.prototype = { moveNext$0() { var t1, t2; for (t1 = this._source, t2 = this.$ti._precomputed1; t1.moveNext$0();) if (t2._is(t1.get$current(t1))) return true; return false; }, get$current(_) { var t1 = this._source; return this.$ti._precomputed1._as(t1.get$current(t1)); } }; A.FixedLengthListMixin.prototype = { set$length(receiver, newLength) { throw A.wrapException(A.UnsupportedError$("Cannot change the length of a fixed-length list")); }, add$1(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot add to a fixed-length list")); }, insert$2(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot add to a fixed-length list")); }, insertAll$2(receiver, at, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to a fixed-length list")); }, addAll$1(receiver, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to a fixed-length list")); }, remove$1(receiver, element) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeWhere$1(receiver, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); }, retainWhere$1(receiver, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeAt$1(receiver, index) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeLast$0(receiver) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeRange$2(receiver, start, end) { throw A.wrapException(A.UnsupportedError$("Cannot remove from a fixed-length list")); } }; A.UnmodifiableListMixin.prototype = { $indexSet(_, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot modify an unmodifiable list")); }, set$length(_, newLength) { throw A.wrapException(A.UnsupportedError$("Cannot change the length of an unmodifiable list")); }, setAll$2(_, at, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot modify an unmodifiable list")); }, add$1(_, value) { throw A.wrapException(A.UnsupportedError$("Cannot add to an unmodifiable list")); }, insert$2(_, index, element) { throw A.wrapException(A.UnsupportedError$("Cannot add to an unmodifiable list")); }, insertAll$2(_, at, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to an unmodifiable list")); }, addAll$1(_, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to an unmodifiable list")); }, remove$1(_, element) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); }, removeWhere$1(_, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); }, retainWhere$1(_, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("Cannot modify an unmodifiable list")); }, removeAt$1(_, index) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); }, removeLast$0(_) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); }, setRange$4(_, start, end, iterable, skipCount) { throw A.wrapException(A.UnsupportedError$("Cannot modify an unmodifiable list")); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(_, start, end) { throw A.wrapException(A.UnsupportedError$("Cannot remove from an unmodifiable list")); } }; A.UnmodifiableListBase.prototype = {}; A._ListIndicesIterable.prototype = { get$length(_) { return J.get$length$asx(this._backedList); }, elementAt$1(_, index) { A.RangeError_checkValidIndex(index, this, null, null); return index; } }; A.ListMapView.prototype = { $index(_, key) { return this.containsKey$1(0, key) ? J.$index$asx(this._values, A._asIntS(key)) : null; }, get$length(_) { return J.get$length$asx(this._values); }, get$values(_) { return A.SubListIterable$(this._values, 0, null, this.$ti._precomputed1); }, get$keys(_) { return new A._ListIndicesIterable(this._values); }, get$isEmpty(_) { return J.get$isEmpty$asx(this._values); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this._values); }, containsKey$1(_, key) { return A._isInt(key) && key >= 0 && key < J.get$length$asx(this._values); }, forEach$1(_, f) { var i, t1 = this._values, t2 = J.getInterceptor$asx(t1), $length = t2.get$length(t1); for (i = 0; i < $length; ++i) { f.call$2(i, t2.$index(t1, i)); if ($length !== t2.get$length(t1)) throw A.wrapException(A.ConcurrentModificationError$(t1)); } } }; A.ReversedListIterable.prototype = { get$length(_) { return J.get$length$asx(this._source); }, elementAt$1(_, index) { var t1 = this._source, t2 = J.getInterceptor$asx(t1); return t2.elementAt$1(t1, t2.get$length(t1) - 1 - index); } }; A.Symbol.prototype = { get$hashCode(_) { var hash = this._hashCode; if (hash != null) return hash; hash = 664597 * J.get$hashCode$(this._name) & 536870911; this._hashCode = hash; return hash; }, toString$0(_) { return 'Symbol("' + A.S(this._name) + '")'; }, $eq(_, other) { if (other == null) return false; return other instanceof A.Symbol && this._name == other._name; }, $isSymbol0: 1 }; A.__CastListBase__CastIterableBase_ListMixin.prototype = {}; A.ConstantMapView.prototype = {}; A.ConstantMap.prototype = { cast$2$0(_, RK, RV) { var t1 = A._instanceType(this); return A.Map_castFrom(this, t1._precomputed1, t1._rest[1], RK, RV); }, get$isEmpty(_) { return this.get$length(this) === 0; }, get$isNotEmpty(_) { return this.get$length(this) !== 0; }, toString$0(_) { return A.MapBase_mapToString(this); }, $indexSet(_, key, val) { A.ConstantMap__throwUnmodifiable(); A.ReachabilityError$(string$.x60null_t); }, putIfAbsent$2(_, key, ifAbsent) { A.ConstantMap__throwUnmodifiable(); A.ReachabilityError$(string$.x60null_t); }, remove$1(_, key) { A.ConstantMap__throwUnmodifiable(); A.ReachabilityError$(string$.x60null_t); }, get$entries(_) { return this.entries$body$ConstantMap(0, A._instanceType(this)._eval$1("MapEntry<1,2>")); }, entries$body$ConstantMap($async$_, $async$type) { var $async$self = this; return A._makeSyncStarIterable(function() { var _ = $async$_; var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, key; return function $async$get$entries($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.get$keys($async$self), t1 = t1.get$iterator(t1), t2 = A._instanceType($async$self), t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapEntry<1,2>"); case 2: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 3; break; } key = t1.get$current(t1); $async$goto = 4; return new A.MapEntry(key, $async$self.$index(0, key), t2); case 4: // after yield // goto for condition $async$goto = 2; break; case 3: // after for // implicit return return A._IterationMarker_endOfIteration(); case 1: // rethrow return A._IterationMarker_uncaughtError($async$currentError); } }; }, $async$type); }, map$2$1(_, transform, K2, V2) { var result = A.LinkedHashMap_LinkedHashMap$_empty(K2, V2); this.forEach$1(0, new A.ConstantMap_map_closure(this, transform, result)); return result; }, map$1($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, $isMap: 1 }; A.ConstantMap_map_closure.prototype = { call$2(key, value) { var entry = this.transform.call$2(key, value); this.result.$indexSet(0, entry.get$key(entry), entry.get$value(entry)); }, $signature() { return A._instanceType(this.$this)._eval$1("~(1,2)"); } }; A.ConstantStringMap.prototype = { get$length(_) { return this._length; }, containsKey$1(_, key) { if (typeof key != "string") return false; if ("__proto__" === key) return false; return this._jsObject.hasOwnProperty(key); }, $index(_, key) { if (!this.containsKey$1(0, key)) return null; return this._jsObject[key]; }, forEach$1(_, f) { var t1, t2, i, key, keys = this._keys; for (t1 = keys.length, t2 = this._jsObject, i = 0; i < t1; ++i) { key = keys[i]; f.call$2(key, t2[key]); } }, get$keys(_) { return new A._ConstantMapKeyIterable(this, this.$ti._eval$1("_ConstantMapKeyIterable<1>")); }, get$values(_) { var t1 = this.$ti; return A.MappedIterable_MappedIterable(this._keys, new A.ConstantStringMap_values_closure(this), t1._precomputed1, t1._rest[1]); } }; A.ConstantStringMap_values_closure.prototype = { call$1(key) { return this.$this._jsObject[key]; }, $signature() { return this.$this.$ti._eval$1("2(1)"); } }; A._ConstantMapKeyIterable.prototype = { get$iterator(_) { var t1 = this._map._keys; return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, get$length(_) { return this._map._keys.length; } }; A.GeneralConstantMap.prototype = { _getMap$0() { var t1, t2, _this = this, backingMap = _this.$map; if (backingMap == null) { t1 = _this.$ti; t2 = A.GeneralConstantMap__typeTest(t1._eval$1("1?")); backingMap = A.LinkedHashMap_LinkedHashMap(null, A._js_helper_GeneralConstantMap__constantMapHashCode$closure(), t2, t1._precomputed1, t1._rest[1]); A.fillLiteralMap(_this._jsData, backingMap); _this.$map = backingMap; } return backingMap; }, containsKey$1(_, key) { return this._getMap$0().containsKey$1(0, key); }, $index(_, key) { return this._getMap$0().$index(0, key); }, forEach$1(_, f) { this._getMap$0().forEach$1(0, f); }, get$keys(_) { var t1 = this._getMap$0(); return new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); }, get$values(_) { var t1 = this._getMap$0(); return t1.get$values(t1); }, get$length(_) { return this._getMap$0()._length; } }; A.GeneralConstantMap__typeTest_closure.prototype = { call$1(o) { return this.T._is(o); }, $signature: 107 }; A.Instantiation.prototype = { Instantiation$1(_genericClosure) { if (false) A.instantiatedGenericFunctionType(0, 0); }, $eq(_, other) { if (other == null) return false; return other instanceof A.Instantiation && J.$eq$(this._genericClosure, other._genericClosure) && A.getRuntimeType(this) === A.getRuntimeType(other); }, get$hashCode(_) { return A.Object_hash(this._genericClosure, A.getRuntimeType(this), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var t1 = B.JSArray_methods.join$1([A.createRuntimeType(this.$ti._precomputed1)], ", "); return A.S(this._genericClosure) + " with " + ("<" + t1 + ">"); } }; A.Instantiation1.prototype = { call$1(a0) { return this._genericClosure.call$1$1(a0, this.$ti._rest[0]); }, call$2(a0, a1) { return this._genericClosure.call$1$2(a0, a1, this.$ti._rest[0]); }, $signature() { return A.instantiatedGenericFunctionType(A.closureFunctionType(this._genericClosure), this.$ti); } }; A.JSInvocationMirror.prototype = { get$memberName() { var t1 = this.__js_helper$_memberName; return t1; }, get$positionalArguments() { var t1, argumentCount, list, index, _this = this; if (_this.__js_helper$_kind === 1) return B.List_empty; t1 = _this._arguments; argumentCount = t1.length - _this._namedArgumentNames.length - _this._typeArgumentCount; if (argumentCount === 0) return B.List_empty; list = []; for (index = 0; index < argumentCount; ++index) list.push(t1[index]); return J.JSArray_markUnmodifiableList(list); }, get$namedArguments() { var t1, namedArgumentCount, t2, namedArgumentsStartIndex, map, i, _this = this; if (_this.__js_helper$_kind !== 0) return B.Map_empty; t1 = _this._namedArgumentNames; namedArgumentCount = t1.length; t2 = _this._arguments; namedArgumentsStartIndex = t2.length - namedArgumentCount - _this._typeArgumentCount; if (namedArgumentCount === 0) return B.Map_empty; map = new A.JsLinkedHashMap(type$.JsLinkedHashMap_Symbol_dynamic); for (i = 0; i < namedArgumentCount; ++i) map.$indexSet(0, new A.Symbol(t1[i]), t2[namedArgumentsStartIndex + i]); return new A.ConstantMapView(map, type$.ConstantMapView_Symbol_dynamic); } }; A.Primitives_initTicker_closure.prototype = { call$0() { return B.JSNumber_methods.floor$0(1000 * this.performance.now()); }, $signature: 160 }; A.Primitives_functionNoSuchMethod_closure.prototype = { call$2($name, argument) { var t1 = this._box_0; t1.names = t1.names + "$" + A.S($name); this.namedArgumentList.push($name); this.$arguments.push(argument); ++t1.argumentCount; }, $signature: 142 }; A.TypeErrorDecoder.prototype = { matchTypeError$1(message) { var result, t1, _this = this, match = new RegExp(_this._pattern).exec(message); if (match == null) return null; result = Object.create(null); t1 = _this._arguments; if (t1 !== -1) result.arguments = match[t1 + 1]; t1 = _this._argumentsExpr; if (t1 !== -1) result.argumentsExpr = match[t1 + 1]; t1 = _this._expr; if (t1 !== -1) result.expr = match[t1 + 1]; t1 = _this._method; if (t1 !== -1) result.method = match[t1 + 1]; t1 = _this._receiver; if (t1 !== -1) result.receiver = match[t1 + 1]; return result; } }; A.NullError.prototype = { toString$0(_) { var t1 = this._method; if (t1 == null) return "NoSuchMethodError: " + A.S(this.__js_helper$_message); return "NoSuchMethodError: method not found: '" + t1 + "' on null"; }, $isNoSuchMethodError: 1 }; A.JsNoSuchMethodError.prototype = { toString$0(_) { var t2, _this = this, _s38_ = "NoSuchMethodError: method not found: '", t1 = _this._method; if (t1 == null) return "NoSuchMethodError: " + A.S(_this.__js_helper$_message); t2 = _this._receiver; if (t2 == null) return _s38_ + t1 + "' (" + A.S(_this.__js_helper$_message) + ")"; return _s38_ + t1 + "' on '" + t2 + "' (" + A.S(_this.__js_helper$_message) + ")"; }, $isNoSuchMethodError: 1 }; A.UnknownJsTypeError.prototype = { toString$0(_) { var t1 = this.__js_helper$_message; return t1.length === 0 ? "Error" : "Error: " + t1; } }; A.NullThrownFromJavaScriptException.prototype = { toString$0(_) { return "Throw of null ('" + (this._irritant === null ? "null" : "undefined") + "' from JavaScript)"; }, $isException: 1 }; A.ExceptionAndStackTrace.prototype = {}; A._StackTrace.prototype = { toString$0(_) { var trace, t1 = this._trace; if (t1 != null) return t1; t1 = this._exception; trace = t1 !== null && typeof t1 === "object" ? t1.stack : null; return this._trace = trace == null ? "" : trace; }, $isStackTrace: 1 }; A.Closure.prototype = { toString$0(_) { var $constructor = this.constructor, $name = $constructor == null ? null : $constructor.name; return "Closure '" + A.unminifyOrTag($name == null ? "unknown" : $name) + "'"; }, $isFunction: 1, get$$call() { return this; }, "call*": "call$1", $requiredArgCount: 1, $defaultValues: null }; A.Closure0Args.prototype = {"call*": "call$0", $requiredArgCount: 0}; A.Closure2Args.prototype = {"call*": "call$2", $requiredArgCount: 2}; A.TearOffClosure.prototype = {}; A.StaticClosure.prototype = { toString$0(_) { var $name = this.$static_name; if ($name == null) return "Closure of unknown static method"; return "Closure '" + A.unminifyOrTag($name) + "'"; } }; A.BoundClosure.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; if (!(other instanceof A.BoundClosure)) return false; return this.$_target === other.$_target && this._receiver === other._receiver; }, get$hashCode(_) { return (A.objectHashCode(this._receiver) ^ A.Primitives_objectHashCode(this.$_target)) >>> 0; }, toString$0(_) { return "Closure '" + A.S(this.$_name) + "' of " + ("Instance of '" + A.S(A.Primitives_objectTypeName(this._receiver)) + "'"); } }; A.RuntimeError.prototype = { toString$0(_) { return "RuntimeError: " + this.message; }, get$message(receiver) { return this.message; } }; A._Required.prototype = {}; A.JsLinkedHashMap.prototype = { get$length(_) { return this._length; }, get$isEmpty(_) { return this._length === 0; }, get$isNotEmpty(_) { return this._length !== 0; }, get$keys(_) { return new A.LinkedHashMapKeyIterable(this, A._instanceType(this)._eval$1("LinkedHashMapKeyIterable<1>")); }, get$values(_) { var t1 = A._instanceType(this); return A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(this, t1._eval$1("LinkedHashMapKeyIterable<1>")), new A.JsLinkedHashMap_values_closure(this), t1._precomputed1, t1._rest[1]); }, containsKey$1(_, key) { var strings, nums; if (typeof key == "string") { strings = this._strings; if (strings == null) return false; return strings[key] != null; } else if (typeof key == "number" && (key & 0x3fffffff) === key) { nums = this._nums; if (nums == null) return false; return nums[key] != null; } else return this.internalContainsKey$1(key); }, internalContainsKey$1(key) { var rest = this.__js_helper$_rest; if (rest == null) return false; return this.internalFindBucketIndex$2(rest[this.internalComputeHashCode$1(key)], key) >= 0; }, containsValue$1(_, value) { return new A.LinkedHashMapKeyIterable(this, A._instanceType(this)._eval$1("LinkedHashMapKeyIterable<1>")).any$1(0, new A.JsLinkedHashMap_containsValue_closure(this, value)); }, addAll$1(_, other) { J.forEach$1$ax(other, new A.JsLinkedHashMap_addAll_closure(this)); }, $index(_, key) { var strings, cell, t1, nums, _null = null; if (typeof key == "string") { strings = this._strings; if (strings == null) return _null; cell = strings[key]; t1 = cell == null ? _null : cell.hashMapCellValue; return t1; } else if (typeof key == "number" && (key & 0x3fffffff) === key) { nums = this._nums; if (nums == null) return _null; cell = nums[key]; t1 = cell == null ? _null : cell.hashMapCellValue; return t1; } else return this.internalGet$1(key); }, internalGet$1(key) { var bucket, index, rest = this.__js_helper$_rest; if (rest == null) return null; bucket = rest[this.internalComputeHashCode$1(key)]; index = this.internalFindBucketIndex$2(bucket, key); if (index < 0) return null; return bucket[index].hashMapCellValue; }, $indexSet(_, key, value) { var strings, nums, _this = this; if (typeof key == "string") { strings = _this._strings; _this._addHashTableEntry$3(strings == null ? _this._strings = _this._newHashTable$0() : strings, key, value); } else if (typeof key == "number" && (key & 0x3fffffff) === key) { nums = _this._nums; _this._addHashTableEntry$3(nums == null ? _this._nums = _this._newHashTable$0() : nums, key, value); } else _this.internalSet$2(key, value); }, internalSet$2(key, value) { var hash, bucket, index, _this = this, rest = _this.__js_helper$_rest; if (rest == null) rest = _this.__js_helper$_rest = _this._newHashTable$0(); hash = _this.internalComputeHashCode$1(key); bucket = rest[hash]; if (bucket == null) rest[hash] = [_this._newLinkedCell$2(key, value)]; else { index = _this.internalFindBucketIndex$2(bucket, key); if (index >= 0) bucket[index].hashMapCellValue = value; else bucket.push(_this._newLinkedCell$2(key, value)); } }, putIfAbsent$2(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1(_, key) { var _this = this; if (typeof key == "string") return _this._removeHashTableEntry$2(_this._strings, key); else if (typeof key == "number" && (key & 0x3fffffff) === key) return _this._removeHashTableEntry$2(_this._nums, key); else return _this.internalRemove$1(key); }, internalRemove$1(key) { var hash, bucket, index, cell, _this = this, rest = _this.__js_helper$_rest; if (rest == null) return null; hash = _this.internalComputeHashCode$1(key); bucket = rest[hash]; index = _this.internalFindBucketIndex$2(bucket, key); if (index < 0) return null; cell = bucket.splice(index, 1)[0]; _this._unlinkCell$1(cell); if (bucket.length === 0) delete rest[hash]; return cell.hashMapCellValue; }, clear$0(_) { var _this = this; if (_this._length > 0) { _this._strings = _this._nums = _this.__js_helper$_rest = _this._first = _this._last = null; _this._length = 0; _this._modified$0(); } }, forEach$1(_, action) { var _this = this, cell = _this._first, modifications = _this._modifications; for (; cell != null;) { action.call$2(cell.hashMapCellKey, cell.hashMapCellValue); if (modifications !== _this._modifications) throw A.wrapException(A.ConcurrentModificationError$(_this)); cell = cell._next; } }, _addHashTableEntry$3(table, key, value) { var cell = table[key]; if (cell == null) table[key] = this._newLinkedCell$2(key, value); else cell.hashMapCellValue = value; }, _removeHashTableEntry$2(table, key) { var cell; if (table == null) return null; cell = table[key]; if (cell == null) return null; this._unlinkCell$1(cell); delete table[key]; return cell.hashMapCellValue; }, _modified$0() { this._modifications = this._modifications + 1 & 1073741823; }, _newLinkedCell$2(key, value) { var t1, _this = this, cell = new A.LinkedHashMapCell(key, value); if (_this._first == null) _this._first = _this._last = cell; else { t1 = _this._last; t1.toString; cell._previous = t1; _this._last = t1._next = cell; } ++_this._length; _this._modified$0(); return cell; }, _unlinkCell$1(cell) { var _this = this, previous = cell._previous, next = cell._next; if (previous == null) _this._first = next; else previous._next = next; if (next == null) _this._last = previous; else next._previous = previous; --_this._length; _this._modified$0(); }, internalComputeHashCode$1(key) { return J.get$hashCode$(key) & 0x3fffffff; }, internalFindBucketIndex$2(bucket, key) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i].hashMapCellKey, key)) return i; return -1; }, toString$0(_) { return A.MapBase_mapToString(this); }, _newHashTable$0() { var table = Object.create(null); table[""] = table; delete table[""]; return table; } }; A.JsLinkedHashMap_values_closure.prototype = { call$1(each) { return this.$this.$index(0, each); }, $signature() { return A._instanceType(this.$this)._eval$1("2(1)"); } }; A.JsLinkedHashMap_containsValue_closure.prototype = { call$1(each) { return J.$eq$(this.$this.$index(0, each), this.value); }, $signature() { return A._instanceType(this.$this)._eval$1("bool(1)"); } }; A.JsLinkedHashMap_addAll_closure.prototype = { call$2(key, value) { this.$this.$indexSet(0, key, value); }, $signature() { return A._instanceType(this.$this)._eval$1("~(1,2)"); } }; A.LinkedHashMapCell.prototype = {}; A.LinkedHashMapKeyIterable.prototype = { get$length(_) { return this._map._length; }, get$isEmpty(_) { return this._map._length === 0; }, get$iterator(_) { var t1 = this._map, t2 = new A.LinkedHashMapKeyIterator(t1, t1._modifications, this.$ti._eval$1("LinkedHashMapKeyIterator<1>")); t2._cell = t1._first; return t2; }, contains$1(_, element) { return this._map.containsKey$1(0, element); }, forEach$1(_, f) { var t1 = this._map, cell = t1._first, modifications = t1._modifications; for (; cell != null;) { f.call$1(cell.hashMapCellKey); if (modifications !== t1._modifications) throw A.wrapException(A.ConcurrentModificationError$(t1)); cell = cell._next; } } }; A.LinkedHashMapKeyIterator.prototype = { get$current(_) { return this.__js_helper$_current; }, moveNext$0() { var cell, _this = this, t1 = _this._map; if (_this._modifications !== t1._modifications) throw A.wrapException(A.ConcurrentModificationError$(t1)); cell = _this._cell; if (cell == null) { _this.__js_helper$_current = null; return false; } else { _this.__js_helper$_current = cell.hashMapCellKey; _this._cell = cell._next; return true; } } }; A.initHooks_closure.prototype = { call$1(o) { return this.getTag(o); }, $signature: 12 }; A.initHooks_closure0.prototype = { call$2(o, tag) { return this.getUnknownTag(o, tag); }, $signature: 2238 }; A.initHooks_closure1.prototype = { call$1(tag) { return this.prototypeForTag(tag); }, $signature: 2251 }; A.JSSyntaxRegExp.prototype = { toString$0(_) { return "RegExp/" + this.pattern + "/" + this._nativeRegExp.flags; }, get$_nativeGlobalVersion() { var _this = this, t1 = _this._nativeGlobalRegExp; if (t1 != null) return t1; t1 = _this._nativeRegExp; return _this._nativeGlobalRegExp = A.JSSyntaxRegExp_makeNative(_this.pattern, t1.multiline, !t1.ignoreCase, t1.unicode, t1.dotAll, true); }, get$_nativeAnchoredVersion() { var _this = this, t1 = _this._nativeAnchoredRegExp; if (t1 != null) return t1; t1 = _this._nativeRegExp; return _this._nativeAnchoredRegExp = A.JSSyntaxRegExp_makeNative(_this.pattern + "|()", t1.multiline, !t1.ignoreCase, t1.unicode, t1.dotAll, true); }, firstMatch$1(string) { var m; if (typeof string != "string") A.throwExpression(A.argumentErrorValue(string)); m = this._nativeRegExp.exec(string); if (m == null) return null; return new A._MatchImplementation(m); }, stringMatch$1(string) { var match = this.firstMatch$1(string); if (match != null) return match._match[0]; return null; }, allMatches$2(_, string, start) { var t1; if (typeof string != "string") A.throwExpression(A.argumentErrorValue(string)); t1 = string.length; if (start > t1) throw A.wrapException(A.RangeError$range(start, 0, t1, null, null)); return new A._AllMatchesIterable(this, string, start); }, allMatches$1($receiver, string) { return this.allMatches$2($receiver, string, 0); }, _execGlobal$2(string, start) { var match, regexp = this.get$_nativeGlobalVersion(); regexp.lastIndex = start; match = regexp.exec(string); if (match == null) return null; return new A._MatchImplementation(match); }, _execAnchored$2(string, start) { var match, regexp = this.get$_nativeAnchoredVersion(); regexp.lastIndex = start; match = regexp.exec(string); if (match == null) return null; if (match.pop() != null) return null; return new A._MatchImplementation(match); }, matchAsPrefix$2(_, string, start) { if (start < 0 || start > string.length) throw A.wrapException(A.RangeError$range(start, 0, string.length, null, null)); return this._execAnchored$2(string, start); }, $isPattern: 1, $isRegExp: 1 }; A._MatchImplementation.prototype = { get$start(_) { return this._match.index; }, get$end(_) { var t1 = this._match; return t1.index + t1[0].length; }, group$1(index) { return this._match[index]; }, $index(_, index) { return this._match[index]; }, $isMatch: 1, $isRegExpMatch: 1 }; A._AllMatchesIterable.prototype = { get$iterator(_) { return new A._AllMatchesIterator(this._re, this.__js_helper$_string, this.__js_helper$_start); } }; A._AllMatchesIterator.prototype = { get$current(_) { return this.__js_helper$_current; }, moveNext$0() { var t1, t2, t3, match, nextIndex, _this = this, string = _this.__js_helper$_string; if (string == null) return false; t1 = _this._nextIndex; t2 = string.length; if (t1 <= t2) { t3 = _this._regExp; match = t3._execGlobal$2(string, t1); if (match != null) { _this.__js_helper$_current = match; nextIndex = match.get$end(match); if (match._match.index === nextIndex) { if (t3._nativeRegExp.unicode) { t1 = _this._nextIndex; t3 = t1 + 1; if (t3 < t2) { t1 = B.JSString_methods.codeUnitAt$1(string, t1); if (t1 >= 55296 && t1 <= 56319) { t1 = B.JSString_methods.codeUnitAt$1(string, t3); t1 = t1 >= 56320 && t1 <= 57343; } else t1 = false; } else t1 = false; } else t1 = false; nextIndex = (t1 ? nextIndex + 1 : nextIndex) + 1; } _this._nextIndex = nextIndex; return true; } } _this.__js_helper$_string = _this.__js_helper$_current = null; return false; } }; A.StringMatch.prototype = { get$end(_) { return this.start + this.pattern.length; }, $index(_, g) { if (g !== 0) A.throwExpression(A.RangeError$value(g, null)); return this.pattern; }, group$1(group_) { if (group_ !== 0) throw A.wrapException(A.RangeError$value(group_, null)); return this.pattern; }, $isMatch: 1, get$start(receiver) { return this.start; } }; A._StringAllMatchesIterable.prototype = { get$iterator(_) { return new A._StringAllMatchesIterator(this._input, this._pattern, this.__js_helper$_index); }, get$first(_) { var t1 = this._input, t2 = this._pattern, index = t1.indexOf(t2, this.__js_helper$_index); if (index >= 0) return new A.StringMatch(index, t1, t2); throw A.wrapException(A.IterableElementError_noElement()); } }; A._StringAllMatchesIterator.prototype = { moveNext$0() { var index, end, _this = this, t1 = _this.__js_helper$_index, t2 = _this._pattern, t3 = t2.length, t4 = _this._input, t5 = t4.length; if (t1 + t3 > t5) { _this.__js_helper$_current = null; return false; } index = t4.indexOf(t2, t1); if (index < 0) { _this.__js_helper$_index = t5 + 1; _this.__js_helper$_current = null; return false; } end = index + t3; _this.__js_helper$_current = new A.StringMatch(index, t4, t2); _this.__js_helper$_index = end === _this.__js_helper$_index ? end + 1 : end; return true; }, get$current(_) { var t1 = this.__js_helper$_current; t1.toString; return t1; } }; A._Cell.prototype = { readLocal$1$0() { var t1 = this.__late_helper$_value; if (t1 === this) A.throwExpression(new A.LateError("Local '" + this.__late_helper$_name + "' has not been initialized.")); return t1; }, readLocal$0() { return this.readLocal$1$0(type$.dynamic); }, _readLocal$0() { var t1 = this.__late_helper$_value; if (t1 === this) throw A.wrapException(new A.LateError("Local '" + this.__late_helper$_name + "' has not been initialized.")); return t1; }, _readField$0() { var t1 = this.__late_helper$_value; if (t1 === this) throw A.wrapException(A.LateError$fieldNI(this.__late_helper$_name)); return t1; }, set$finalLocalValue(v) { var _this = this; if (_this.__late_helper$_value !== _this) throw A.wrapException(new A.LateError("Local '" + _this.__late_helper$_name + "' has already been initialized.")); _this.__late_helper$_value = v; } }; A._InitializedCell.prototype = { _read$0() { var _this = this, t1 = _this.__late_helper$_value; return t1 === _this ? _this.__late_helper$_value = _this.__late_helper$_initializer.call$0() : t1; }, _readFinal$0() { var result, _this = this, t1 = _this.__late_helper$_value; if (t1 === _this) { result = _this.__late_helper$_initializer.call$0(); if (_this.__late_helper$_value !== _this) throw A.wrapException(new A.LateError("Local '" + _this.__late_helper$_name + string$.x27_has_)); _this.__late_helper$_value = result; t1 = result; } return t1; } }; A.NativeByteBuffer.prototype = { get$runtimeType(receiver) { return B.Type_ByteBuffer_RkP; }, asUint8List$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); return $length == null ? new Uint8Array(receiver, offsetInBytes) : new Uint8Array(receiver, offsetInBytes, $length); }, asUint8List$0($receiver) { return this.asUint8List$2($receiver, 0, null); }, asUint32List$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); return new Uint32Array(receiver, offsetInBytes, $length); }, asInt32List$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); if ($length == null) $length = B.JSInt_methods._tdivFast$1(receiver.byteLength - offsetInBytes, 4); return new Int32Array(receiver, offsetInBytes, $length); }, asInt64List$2(receiver, offsetInBytes, $length) { throw A.wrapException(A.UnsupportedError$("Int64List not supported by dart2js.")); }, asFloat32List$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); if ($length == null) $length = B.JSInt_methods._tdivFast$1(receiver.byteLength - offsetInBytes, 4); return new Float32Array(receiver, offsetInBytes, $length); }, asFloat64List$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); if ($length == null) $length = B.JSInt_methods._tdivFast$1(receiver.byteLength - offsetInBytes, 8); return new Float64Array(receiver, offsetInBytes, $length); }, asByteData$2(receiver, offsetInBytes, $length) { A._checkViewArguments(receiver, offsetInBytes, $length); return $length == null ? new DataView(receiver, offsetInBytes) : new DataView(receiver, offsetInBytes, $length); }, asByteData$0($receiver) { return this.asByteData$2($receiver, 0, null); }, $isNativeByteBuffer: 1, $isByteBuffer: 1 }; A.NativeTypedData.prototype = { get$buffer(receiver) { return receiver.buffer; }, get$lengthInBytes(receiver) { return receiver.byteLength; }, get$offsetInBytes(receiver) { return receiver.byteOffset; }, get$elementSizeInBytes(receiver) { return receiver.BYTES_PER_ELEMENT; }, _invalidPosition$3(receiver, position, $length, $name) { var t1 = A.RangeError$range(position, 0, $length, $name, null); throw A.wrapException(t1); }, _checkPosition$3(receiver, position, $length, $name) { if (position >>> 0 !== position || position > $length) this._invalidPosition$3(receiver, position, $length, $name); }, $isNativeTypedData: 1, $isTypedData: 1 }; A.NativeByteData.prototype = { get$runtimeType(receiver) { return B.Type_ByteData_zNC; }, getFloat64$2(receiver, byteOffset, endian) { return receiver.getFloat64(byteOffset, B.C_Endian === endian); }, getInt32$2(receiver, byteOffset, endian) { return receiver.getInt32(byteOffset, B.C_Endian === endian); }, getInt64$2(receiver, byteOffset, endian) { throw A.wrapException(A.UnsupportedError$("Int64 accessor not supported by dart2js.")); }, getUint16$2(receiver, byteOffset, endian) { return receiver.getUint16(byteOffset, B.C_Endian === endian); }, getUint32$2(receiver, byteOffset, endian) { return receiver.getUint32(byteOffset, B.C_Endian === endian); }, getUint8$1(receiver, byteOffset) { return receiver.getUint8(byteOffset); }, setInt64$3(receiver, byteOffset, value, endian) { throw A.wrapException(A.UnsupportedError$("Int64 accessor not supported by dart2js.")); }, $isByteData: 1 }; A.NativeTypedArray.prototype = { get$length(receiver) { return receiver.length; }, _setRangeFast$4(receiver, start, end, source, skipCount) { var count, sourceLength, targetLength = receiver.length; this._checkPosition$3(receiver, start, targetLength, "start"); this._checkPosition$3(receiver, end, targetLength, "end"); if (start > end) throw A.wrapException(A.RangeError$range(start, 0, end, null, null)); count = end - start; if (skipCount < 0) throw A.wrapException(A.ArgumentError$(skipCount, null)); sourceLength = source.length; if (sourceLength - skipCount < count) throw A.wrapException(A.StateError$("Not enough elements")); if (skipCount !== 0 || sourceLength !== count) source = source.subarray(skipCount, skipCount + count); receiver.set(source, start); }, $isJSIndexable: 1, $isJavaScriptIndexingBehavior: 1 }; A.NativeTypedArrayOfDouble.prototype = { $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, $indexSet(receiver, index, value) { A._checkValidIndex(index, receiver, receiver.length); receiver[index] = value; }, setRange$4(receiver, start, end, iterable, skipCount) { if (type$.NativeTypedArrayOfDouble._is(iterable)) { this._setRangeFast$4(receiver, start, end, iterable, skipCount); return; } this.super$ListMixin$setRange(receiver, start, end, iterable, skipCount); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.NativeTypedArrayOfInt.prototype = { $indexSet(receiver, index, value) { A._checkValidIndex(index, receiver, receiver.length); receiver[index] = value; }, setRange$4(receiver, start, end, iterable, skipCount) { if (type$.NativeTypedArrayOfInt._is(iterable)) { this._setRangeFast$4(receiver, start, end, iterable, skipCount); return; } this.super$ListMixin$setRange(receiver, start, end, iterable, skipCount); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.NativeFloat32List.prototype = { get$runtimeType(receiver) { return B.Type_Float32List_LB7; }, sublist$2(receiver, start, end) { return new Float32Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, $isFloat32List: 1 }; A.NativeFloat64List.prototype = { get$runtimeType(receiver) { return B.Type_Float64List_LB7; }, sublist$2(receiver, start, end) { return new Float64Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, $isFloat64List: 1 }; A.NativeInt16List.prototype = { get$runtimeType(receiver) { return B.Type_Int16List_uXf; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Int16Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); } }; A.NativeInt32List.prototype = { get$runtimeType(receiver) { return B.Type_Int32List_O50; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Int32Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, $isInt32List: 1 }; A.NativeInt8List.prototype = { get$runtimeType(receiver) { return B.Type_Int8List_ekJ; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Int8Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); } }; A.NativeUint16List.prototype = { get$runtimeType(receiver) { return B.Type_Uint16List_2bx; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Uint16Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); } }; A.NativeUint32List.prototype = { get$runtimeType(receiver) { return B.Type_Uint32List_2bx; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Uint32Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); } }; A.NativeUint8ClampedList.prototype = { get$runtimeType(receiver) { return B.Type_Uint8ClampedList_Jik; }, get$length(receiver) { return receiver.length; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Uint8ClampedArray(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); } }; A.NativeUint8List.prototype = { get$runtimeType(receiver) { return B.Type_Uint8List_WLA; }, get$length(receiver) { return receiver.length; }, $index(receiver, index) { A._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2(receiver, start, end) { return new Uint8Array(receiver.subarray(start, A._checkValidRange(start, end, receiver.length))); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, $isNativeUint8List: 1, $isUint8List: 1 }; A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin.prototype = {}; A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin.prototype = {}; A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin.prototype = {}; A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin.prototype = {}; A.Rti.prototype = { _eval$1(recipe) { return A._Universe_evalInEnvironment(init.typeUniverse, this, recipe); }, _bind$1(typeOrTuple) { return A._Universe_bind(init.typeUniverse, this, typeOrTuple); } }; A._FunctionParameters.prototype = {}; A._Type.prototype = { toString$0(_) { return A._rtiToString(this._rti, null); }, $isType: 1 }; A._Error.prototype = { toString$0(_) { return this._message; } }; A._TypeError.prototype = { get$message(_) { return this._message; }, $isTypeError: 1 }; A._AsyncRun__initializeScheduleImmediate_internalCallback.prototype = { call$1(_) { var t1 = this._box_0, f = t1.storedCallback; t1.storedCallback = null; f.call$0(); }, $signature: 7 }; A._AsyncRun__initializeScheduleImmediate_closure.prototype = { call$1(callback) { var t1, t2; this._box_0.storedCallback = callback; t1 = this.div; t2 = this.span; t1.firstChild ? t1.removeChild(t2) : t1.appendChild(t2); }, $signature: 2270 }; A._AsyncRun__scheduleImmediateJsOverride_internalCallback.prototype = { call$0() { this.callback.call$0(); }, $signature: 1 }; A._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback.prototype = { call$0() { this.callback.call$0(); }, $signature: 1 }; A._TimerImpl.prototype = { _TimerImpl$2(milliseconds, callback) { if (self.setTimeout != null) this._handle = self.setTimeout(A.convertDartClosureToJS(new A._TimerImpl_internalCallback(this, callback), 0), milliseconds); else throw A.wrapException(A.UnsupportedError$("`setTimeout()` not found.")); }, _TimerImpl$periodic$2(milliseconds, callback) { if (self.setTimeout != null) this._handle = self.setInterval(A.convertDartClosureToJS(new A._TimerImpl$periodic_closure(this, milliseconds, Date.now(), callback), 0), milliseconds); else throw A.wrapException(A.UnsupportedError$("Periodic timer.")); }, cancel$0(_) { var t1; if (self.setTimeout != null) { t1 = this._handle; if (t1 == null) return; if (this._once) self.clearTimeout(t1); else self.clearInterval(t1); this._handle = null; } else throw A.wrapException(A.UnsupportedError$("Canceling a timer.")); }, $isTimer: 1 }; A._TimerImpl_internalCallback.prototype = { call$0() { var t1 = this.$this; t1._handle = null; t1._tick = 1; this.callback.call$0(); }, $signature: 0 }; A._TimerImpl$periodic_closure.prototype = { call$0() { var duration, _this = this, t1 = _this.$this, tick = t1._tick + 1, t2 = _this.milliseconds; if (t2 > 0) { duration = Date.now() - _this.start; if (duration > (tick + 1) * t2) tick = B.JSInt_methods.$tdiv(duration, t2); } t1._tick = tick; _this.callback.call$1(t1); }, $signature: 1 }; A._AsyncAwaitCompleter.prototype = { complete$1(_, value) { var t1, _this = this; if (!_this.isSync) _this._future._asyncComplete$1(value); else { t1 = _this._future; if (_this.$ti._eval$1("Future<1>")._is(value)) t1._chainFuture$1(value); else t1._completeWithValue$1(value); } }, complete$0($receiver) { return this.complete$1($receiver, null); }, completeError$2(e, st) { var t1; if (st == null) st = A.AsyncError_defaultStackTrace(e); t1 = this._future; if (this.isSync) t1._completeError$2(e, st); else t1._asyncCompleteError$2(e, st); }, get$future() { return this._future; }, $isCompleter: 1 }; A._awaitOnObject_closure.prototype = { call$1(result) { return this.bodyFunction.call$2(0, result); }, $signature: 83 }; A._awaitOnObject_closure0.prototype = { call$2(error, stackTrace) { this.bodyFunction.call$2(1, new A.ExceptionAndStackTrace(error, stackTrace)); }, $signature: 434 }; A._wrapJsFunctionForAsync_closure.prototype = { call$2(errorCode, result) { this.$protected(errorCode, result); }, $signature: 2284 }; A._asyncStarHelper_closure.prototype = { call$0() { var t1 = this.controller, t2 = A._lateReadCheck(t1.___AsyncStarStreamController_controller, "controller"), t3 = t2._state; if ((t3 & 1) !== 0 ? (t2.get$_async$_subscription()._state & 4) !== 0 : (t3 & 2) === 0) { t1.isSuspended = true; return; } this.bodyFunction.call$2(0, null); }, $signature: 0 }; A._asyncStarHelper_closure0.prototype = { call$1(_) { var errorCode = this.controller.cancelationFuture != null ? 2 : 0; this.bodyFunction.call$2(errorCode, null); }, $signature: 7 }; A._AsyncStarStreamController.prototype = { _AsyncStarStreamController$1(body, $T) { var t1 = new A._AsyncStarStreamController__resumeBody(body); this.___AsyncStarStreamController_controller = A.StreamController_StreamController(new A._AsyncStarStreamController_closure(this, body), new A._AsyncStarStreamController_closure0(t1), new A._AsyncStarStreamController_closure1(this, t1), false, $T); } }; A._AsyncStarStreamController__resumeBody.prototype = { call$0() { A.scheduleMicrotask(new A._AsyncStarStreamController__resumeBody_closure(this.body)); }, $signature: 1 }; A._AsyncStarStreamController__resumeBody_closure.prototype = { call$0() { this.body.call$2(0, null); }, $signature: 0 }; A._AsyncStarStreamController_closure0.prototype = { call$0() { this._resumeBody.call$0(); }, $signature: 0 }; A._AsyncStarStreamController_closure1.prototype = { call$0() { var t1 = this.$this; if (t1.isSuspended) { t1.isSuspended = false; this._resumeBody.call$0(); } }, $signature: 0 }; A._AsyncStarStreamController_closure.prototype = { call$0() { var t1 = this.$this; if ((A._lateReadCheck(t1.___AsyncStarStreamController_controller, "controller")._state & 4) === 0) { t1.cancelationFuture = new A._Future($.Zone__current, type$._Future_dynamic); if (t1.isSuspended) { t1.isSuspended = false; A.scheduleMicrotask(new A._AsyncStarStreamController__closure(this.body)); } return t1.cancelationFuture; } }, $signature: 2290 }; A._AsyncStarStreamController__closure.prototype = { call$0() { this.body.call$2(2, null); }, $signature: 0 }; A._IterationMarker.prototype = { toString$0(_) { return "IterationMarker(" + this.state + ", " + A.S(this.value) + ")"; }, get$value(receiver) { return this.value; } }; A._SyncStarIterator.prototype = { get$current(_) { var nested = this._nestedIterator; if (nested == null) return this._async$_current; return nested.get$current(nested); }, moveNext$0() { var t1, value, state, suspendedBodies, inner, _this = this; for (; true;) { t1 = _this._nestedIterator; if (t1 != null) if (t1.moveNext$0()) return true; else _this._nestedIterator = null; value = function(body, SUCCESS, ERROR) { var errorValue, errorCode = SUCCESS; while (true) try { return body(errorCode, errorValue); } catch (error) { errorValue = error; errorCode = ERROR; } }(_this._body, 0, 1); if (value instanceof A._IterationMarker) { state = value.state; if (state === 2) { suspendedBodies = _this._suspendedBodies; if (suspendedBodies == null || suspendedBodies.length === 0) { _this._async$_current = null; return false; } _this._body = suspendedBodies.pop(); continue; } else { t1 = value.value; if (state === 3) throw t1; else { inner = J.get$iterator$ax(t1); if (inner instanceof A._SyncStarIterator) { t1 = _this._suspendedBodies; if (t1 == null) t1 = _this._suspendedBodies = []; t1.push(_this._body); _this._body = inner._body; continue; } else { _this._nestedIterator = inner; continue; } } } } else { _this._async$_current = value; return true; } } return false; } }; A._SyncStarIterable.prototype = { get$iterator(_) { return new A._SyncStarIterator(this._outerHelper(), this.$ti._eval$1("_SyncStarIterator<1>")); } }; A.AsyncError.prototype = { toString$0(_) { return A.S(this.error); }, $isError: 1, get$stackTrace() { return this.stackTrace; } }; A._BroadcastStream.prototype = { get$isBroadcast() { return true; } }; A._BroadcastSubscription.prototype = { _onPause$0() { }, _onResume$0() { } }; A._BroadcastStreamController.prototype = { set$onPause(_, onPauseHandler) { throw A.wrapException(A.UnsupportedError$(string$.Broadc)); }, set$onResume(_, onResumeHandler) { throw A.wrapException(A.UnsupportedError$(string$.Broadc)); }, get$stream(_) { return new A._BroadcastStream(this, A._instanceType(this)._eval$1("_BroadcastStream<1>")); }, get$_mayAddEvent() { return this._state < 4; }, _removeListener$1(subscription) { var previous = subscription._async$_previous, next = subscription._async$_next; if (previous == null) this._firstSubscription = next; else previous._async$_next = next; if (next == null) this._lastSubscription = previous; else next._async$_previous = previous; subscription._async$_previous = subscription; subscription._async$_next = subscription; }, _async$_subscribe$4(onData, onError, onDone, cancelOnError) { var t1, t2, t3, subscription, oldLast, _this = this; if ((_this._state & 4) !== 0) return A._DoneStreamSubscription$(onDone, A._instanceType(_this)._precomputed1); t1 = A._instanceType(_this); t2 = $.Zone__current; t3 = cancelOnError ? 1 : 0; subscription = new A._BroadcastSubscription(_this, A._BufferingStreamSubscription__registerDataHandler(t2, onData, t1._precomputed1), A._BufferingStreamSubscription__registerErrorHandler(t2, onError), A._BufferingStreamSubscription__registerDoneHandler(t2, onDone), t2, t3, t1._eval$1("_BroadcastSubscription<1>")); subscription._async$_previous = subscription; subscription._async$_next = subscription; subscription._eventState = _this._state & 1; oldLast = _this._lastSubscription; _this._lastSubscription = subscription; subscription._async$_next = null; subscription._async$_previous = oldLast; if (oldLast == null) _this._firstSubscription = subscription; else oldLast._async$_next = subscription; if (_this._firstSubscription === subscription) A._runGuarded(_this.onListen); return subscription; }, _recordCancel$1(sub) { var t1, _this = this; A._instanceType(_this)._eval$1("_BroadcastSubscription<1>")._as(sub); if (sub._async$_next === sub) return null; t1 = sub._eventState; if ((t1 & 2) !== 0) sub._eventState = t1 | 4; else { _this._removeListener$1(sub); if ((_this._state & 2) === 0 && _this._firstSubscription == null) _this._callOnCancel$0(); } return null; }, _recordPause$1(subscription) { }, _recordResume$1(subscription) { }, _addEventError$0() { if ((this._state & 4) !== 0) return new A.StateError("Cannot add new events after calling close"); return new A.StateError("Cannot add new events while doing an addStream"); }, add$1(_, data) { if (!this.get$_mayAddEvent()) throw A.wrapException(this._addEventError$0()); this._sendData$1(data); }, addError$2(error, stackTrace) { var replacement; A.checkNotNullable(error, "error", type$.Object); if (!this.get$_mayAddEvent()) throw A.wrapException(this._addEventError$0()); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); this._sendError$2(error, stackTrace); }, close$0(_) { var t1, doneFuture, _this = this; if ((_this._state & 4) !== 0) { t1 = _this._doneFuture; t1.toString; return t1; } if (!_this.get$_mayAddEvent()) throw A.wrapException(_this._addEventError$0()); _this._state |= 4; doneFuture = _this._doneFuture; if (doneFuture == null) doneFuture = _this._doneFuture = new A._Future($.Zone__current, type$._Future_void); _this._sendDone$0(); return doneFuture; }, addStream$2$cancelOnError(_, stream, cancelOnError) { var addStreamState, _this = this; if (!_this.get$_mayAddEvent()) throw A.wrapException(_this._addEventError$0()); _this._state |= 8; addStreamState = A._AddStreamState$(_this, stream, false, A._instanceType(_this)._precomputed1); _this._addStreamState = addStreamState; return addStreamState.addStreamFuture; }, addStream$1($receiver, stream) { return this.addStream$2$cancelOnError($receiver, stream, null); }, _async$_add$1(_, data) { this._sendData$1(data); }, _addError$2(error, stackTrace) { this._sendError$2(error, stackTrace); }, _async$_close$0() { var t1 = this._addStreamState; t1.toString; this._addStreamState = null; this._state &= 4294967287; t1.addStreamFuture._asyncComplete$1(null); }, _forEachListener$1(action) { var subscription, id, next, _this = this, t1 = _this._state; if ((t1 & 2) !== 0) throw A.wrapException(A.StateError$(string$.Cannotf)); subscription = _this._firstSubscription; if (subscription == null) return; id = t1 & 1; _this._state = t1 ^ 3; for (; subscription != null;) { t1 = subscription._eventState; if ((t1 & 1) === id) { subscription._eventState = t1 | 2; action.call$1(subscription); t1 = subscription._eventState ^= 1; next = subscription._async$_next; if ((t1 & 4) !== 0) _this._removeListener$1(subscription); subscription._eventState &= 4294967293; subscription = next; } else subscription = subscription._async$_next; } _this._state &= 4294967293; if (_this._firstSubscription == null) _this._callOnCancel$0(); }, _callOnCancel$0() { if ((this._state & 4) !== 0) { var doneFuture = this._doneFuture; if ((doneFuture._state & 30) === 0) doneFuture._asyncComplete$1(null); } A._runGuarded(this.onCancel); }, $isEventSink: 1, set$onListen(val) { return this.onListen = val; }, set$onCancel(receiver, val) { return this.onCancel = val; } }; A._SyncBroadcastStreamController.prototype = { get$_mayAddEvent() { return A._BroadcastStreamController.prototype.get$_mayAddEvent.call(this) && (this._state & 2) === 0; }, _addEventError$0() { if ((this._state & 2) !== 0) return new A.StateError(string$.Cannotf); return this.super$_BroadcastStreamController$_addEventError(); }, _sendData$1(data) { var _this = this, t1 = _this._firstSubscription; if (t1 == null) return; if (t1 === _this._lastSubscription) { _this._state |= 2; t1._async$_add$1(0, data); _this._state &= 4294967293; if (_this._firstSubscription == null) _this._callOnCancel$0(); return; } _this._forEachListener$1(new A._SyncBroadcastStreamController__sendData_closure(_this, data)); }, _sendError$2(error, stackTrace) { if (this._firstSubscription == null) return; this._forEachListener$1(new A._SyncBroadcastStreamController__sendError_closure(this, error, stackTrace)); }, _sendDone$0() { var _this = this; if (_this._firstSubscription != null) _this._forEachListener$1(new A._SyncBroadcastStreamController__sendDone_closure(_this)); else _this._doneFuture._asyncComplete$1(null); } }; A._SyncBroadcastStreamController__sendData_closure.prototype = { call$1(subscription) { subscription._async$_add$1(0, this.data); }, $signature() { return this.$this.$ti._eval$1("~(_BufferingStreamSubscription<1>)"); } }; A._SyncBroadcastStreamController__sendError_closure.prototype = { call$1(subscription) { subscription._addError$2(this.error, this.stackTrace); }, $signature() { return this.$this.$ti._eval$1("~(_BufferingStreamSubscription<1>)"); } }; A._SyncBroadcastStreamController__sendDone_closure.prototype = { call$1(subscription) { subscription._async$_close$0(); }, $signature() { return this.$this.$ti._eval$1("~(_BufferingStreamSubscription<1>)"); } }; A._AsyncBroadcastStreamController.prototype = { _sendData$1(data) { var subscription, t1; for (subscription = this._firstSubscription, t1 = this.$ti._eval$1("_DelayedData<1>"); subscription != null; subscription = subscription._async$_next) subscription._addPending$1(new A._DelayedData(data, t1)); }, _sendError$2(error, stackTrace) { var subscription; for (subscription = this._firstSubscription; subscription != null; subscription = subscription._async$_next) subscription._addPending$1(new A._DelayedError(error, stackTrace)); }, _sendDone$0() { var subscription = this._firstSubscription; if (subscription != null) for (; subscription != null; subscription = subscription._async$_next) subscription._addPending$1(B.C__DelayedDone); else this._doneFuture._asyncComplete$1(null); } }; A.Future_Future_closure.prototype = { call$0() { var e, s, exception; try { this.result._complete$1(this.computation.call$0()); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._completeWithErrorCallback(this.result, e, s); } }, $signature: 0 }; A.Future_Future$microtask_closure.prototype = { call$0() { var e, s, exception; try { this.result._complete$1(this.computation.call$0()); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._completeWithErrorCallback(this.result, e, s); } }, $signature: 0 }; A.Future_Future$delayed_closure.prototype = { call$0() { var e, s, exception, _this = this, t1 = _this.computation; if (t1 == null) _this.result._complete$1(null); else try { _this.result._complete$1(t1.call$0()); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._completeWithErrorCallback(_this.result, e, s); } }, $signature: 0 }; A.Future_wait_handleError.prototype = { call$2(theError, theStackTrace) { var _this = this, t1 = _this._box_0, t2 = --t1.remaining; if (t1.values != null) { t1.values = null; if (t1.remaining === 0 || _this.eagerError) _this._future._completeError$2(theError, theStackTrace); else { _this.error.__late_helper$_value = theError; _this.stackTrace.__late_helper$_value = theStackTrace; } } else if (t2 === 0 && !_this.eagerError) _this._future._completeError$2(_this.error._readLocal$0(), _this.stackTrace._readLocal$0()); }, $signature: 129 }; A.Future_wait_closure.prototype = { call$1(value) { var valueList, _this = this, t1 = _this._box_0; --t1.remaining; valueList = t1.values; if (valueList != null) { J.$indexSet$ax(valueList, _this.pos, value); if (t1.remaining === 0) _this._future._completeWithValue$1(A.List_List$from(valueList, true, _this.T)); } else if (t1.remaining === 0 && !_this.eagerError) _this._future._completeError$2(_this.error._readLocal$0(), _this.stackTrace._readLocal$0()); }, $signature() { return this.T._eval$1("Null(0)"); } }; A.TimeoutException.prototype = { toString$0(_) { var t1 = this.duration.toString$0(0); return "TimeoutException after " + t1 + ": " + this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A._Completer.prototype = { completeError$2(error, stackTrace) { var replacement; A.checkNotNullable(error, "error", type$.Object); if ((this.future._state & 30) !== 0) throw A.wrapException(A.StateError$("Future already completed")); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); this._completeError$2(error, stackTrace); }, completeError$1(error) { return this.completeError$2(error, null); }, $isCompleter: 1, get$future() { return this.future; } }; A._AsyncCompleter.prototype = { complete$1(_, value) { var t1 = this.future; if ((t1._state & 30) !== 0) throw A.wrapException(A.StateError$("Future already completed")); t1._asyncComplete$1(value); }, complete$0($receiver) { return this.complete$1($receiver, null); }, _completeError$2(error, stackTrace) { this.future._asyncCompleteError$2(error, stackTrace); } }; A._SyncCompleter.prototype = { complete$1(_, value) { var t1 = this.future; if ((t1._state & 30) !== 0) throw A.wrapException(A.StateError$("Future already completed")); t1._complete$1(value); }, complete$0($receiver) { return this.complete$1($receiver, null); }, _completeError$2(error, stackTrace) { this.future._completeError$2(error, stackTrace); } }; A._FutureListener.prototype = { matchesErrorTest$1(asyncError) { if ((this.state & 15) !== 6) return true; return this.result._zone.runUnary$2$2(this.callback, asyncError.error, type$.bool, type$.Object); }, handleError$1(asyncError) { var exception, errorCallback = this.errorCallback, result = null, t1 = type$.dynamic, t2 = type$.Object, t3 = this.result._zone; if (type$.dynamic_Function_Object_StackTrace._is(errorCallback)) result = t3.runBinary$3$3(errorCallback, asyncError.error, asyncError.stackTrace, t1, t2, type$.StackTrace); else result = t3.runUnary$2$2(errorCallback, asyncError.error, t1, t2); try { t1 = result; return t1; } catch (exception) { if (type$.TypeError._is(A.unwrapException(exception))) { if ((this.state & 1) !== 0) throw A.wrapException(A.ArgumentError$("The error handler of Future.then must return a value of the returned future's type", "onError")); throw A.wrapException(A.ArgumentError$("The error handler of Future.catchError must return a value of the future's type", "onError")); } else throw exception; } } }; A._Future.prototype = { then$1$2$onError(_, f, onError, $R) { var result, t1, currentZone = $.Zone__current; if (currentZone === B.C__RootZone) { if (onError != null && !type$.dynamic_Function_Object_StackTrace._is(onError) && !type$.dynamic_Function_Object._is(onError)) throw A.wrapException(A.ArgumentError$value(onError, "onError", string$.Error_)); } else { f = currentZone.registerUnaryCallback$2$1(f, $R._eval$1("0/"), this.$ti._precomputed1); if (onError != null) onError = A._registerErrorHandler(onError, currentZone); } result = new A._Future($.Zone__current, $R._eval$1("_Future<0>")); t1 = onError == null ? 1 : 3; this._addListener$1(new A._FutureListener(result, t1, f, onError, this.$ti._eval$1("@<1>")._bind$1($R)._eval$1("_FutureListener<1,2>"))); return result; }, then$1$1($receiver, f, $R) { return this.then$1$2$onError($receiver, f, null, $R); }, _thenAwait$1$2(f, onError, $E) { var result = new A._Future($.Zone__current, $E._eval$1("_Future<0>")); this._addListener$1(new A._FutureListener(result, 3, f, onError, this.$ti._eval$1("@<1>")._bind$1($E)._eval$1("_FutureListener<1,2>"))); return result; }, catchError$2$test(onError, test) { var t1 = this.$ti, t2 = $.Zone__current, result = new A._Future(t2, t1); if (t2 !== B.C__RootZone) { onError = A._registerErrorHandler(onError, t2); if (test != null) test = t2.registerUnaryCallback$2$1(test, type$.bool, type$.Object); } t2 = test == null ? 2 : 6; this._addListener$1(new A._FutureListener(result, t2, test, onError, t1._eval$1("@<1>")._bind$1(t1._precomputed1)._eval$1("_FutureListener<1,2>"))); return result; }, catchError$1(onError) { return this.catchError$2$test(onError, null); }, whenComplete$1(action) { var t1 = this.$ti, t2 = $.Zone__current, result = new A._Future(t2, t1); if (t2 !== B.C__RootZone) action = t2.registerCallback$1$1(action, type$.dynamic); this._addListener$1(new A._FutureListener(result, 8, action, null, t1._eval$1("@<1>")._bind$1(t1._precomputed1)._eval$1("_FutureListener<1,2>"))); return result; }, asStream$0() { return A.Stream_Stream$fromFuture(this, this.$ti._precomputed1); }, _setErrorObject$1(error) { this._state = this._state & 1 | 16; this._resultOrListeners = error; }, _cloneResult$1(source) { this._state = source._state & 30 | this._state & 1; this._resultOrListeners = source._resultOrListeners; }, _addListener$1(listener) { var _this = this, t1 = _this._state; if (t1 <= 3) { listener._nextListener = _this._resultOrListeners; _this._resultOrListeners = listener; } else { if ((t1 & 4) !== 0) { t1 = _this._resultOrListeners; if ((t1._state & 24) === 0) { t1._addListener$1(listener); return; } _this._cloneResult$1(t1); } _this._zone.scheduleMicrotask$1(new A._Future__addListener_closure(_this, listener)); } }, _prependListeners$1(listeners) { var t1, existingListeners, next, cursor, next0, _this = this, _box_0 = {}; _box_0.listeners = listeners; if (listeners == null) return; t1 = _this._state; if (t1 <= 3) { existingListeners = _this._resultOrListeners; _this._resultOrListeners = listeners; if (existingListeners != null) { next = listeners._nextListener; for (cursor = listeners; next != null; cursor = next, next = next0) next0 = next._nextListener; cursor._nextListener = existingListeners; } } else { if ((t1 & 4) !== 0) { t1 = _this._resultOrListeners; if ((t1._state & 24) === 0) { t1._prependListeners$1(listeners); return; } _this._cloneResult$1(t1); } _box_0.listeners = _this._reverseListeners$1(listeners); _this._zone.scheduleMicrotask$1(new A._Future__prependListeners_closure(_box_0, _this)); } }, _removeListeners$0() { var current = this._resultOrListeners; this._resultOrListeners = null; return this._reverseListeners$1(current); }, _reverseListeners$1(listeners) { var current, prev, next; for (current = listeners, prev = null; current != null; prev = current, current = next) { next = current._nextListener; current._nextListener = prev; } return prev; }, _chainForeignFuture$1(source) { var e, s, exception, _this = this; _this._state ^= 2; try { source.then$1$2$onError(0, new A._Future__chainForeignFuture_closure(_this), new A._Future__chainForeignFuture_closure0(_this), type$.Null); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A.scheduleMicrotask(new A._Future__chainForeignFuture_closure1(_this, e, s)); } }, _complete$1(value) { var listeners, _this = this, t1 = _this.$ti; if (t1._eval$1("Future<1>")._is(value)) if (t1._is(value)) A._Future__chainCoreFuture(value, _this); else _this._chainForeignFuture$1(value); else { listeners = _this._removeListeners$0(); _this._state = 8; _this._resultOrListeners = value; A._Future__propagateToListeners(_this, listeners); } }, _completeWithValue$1(value) { var _this = this, listeners = _this._removeListeners$0(); _this._state = 8; _this._resultOrListeners = value; A._Future__propagateToListeners(_this, listeners); }, _completeError$2(error, stackTrace) { var listeners = this._removeListeners$0(); this._setErrorObject$1(A.AsyncError$(error, stackTrace)); A._Future__propagateToListeners(this, listeners); }, _asyncComplete$1(value) { if (this.$ti._eval$1("Future<1>")._is(value)) { this._chainFuture$1(value); return; } this._asyncCompleteWithValue$1(value); }, _asyncCompleteWithValue$1(value) { this._state ^= 2; this._zone.scheduleMicrotask$1(new A._Future__asyncCompleteWithValue_closure(this, value)); }, _chainFuture$1(value) { var _this = this; if (_this.$ti._is(value)) { if ((value._state & 16) !== 0) { _this._state ^= 2; _this._zone.scheduleMicrotask$1(new A._Future__chainFuture_closure(_this, value)); } else A._Future__chainCoreFuture(value, _this); return; } _this._chainForeignFuture$1(value); }, _asyncCompleteError$2(error, stackTrace) { this._state ^= 2; this._zone.scheduleMicrotask$1(new A._Future__asyncCompleteError_closure(this, error, stackTrace)); }, timeout$2$onTimeout(_, timeLimit, onTimeout) { var _future, _this = this, t1 = {}; if ((_this._state & 24) !== 0) { t1 = new A._Future($.Zone__current, _this.$ti); t1._asyncComplete$1(_this); return t1; } _future = new A._Future($.Zone__current, _this.$ti); t1.timer = null; t1.timer = A.Timer_Timer(timeLimit, new A._Future_timeout_closure(_future, timeLimit)); _this.then$1$2$onError(0, new A._Future_timeout_closure0(t1, _this, _future), new A._Future_timeout_closure1(t1, _future), type$.Null); return _future; }, timeout$1($receiver, timeLimit) { return this.timeout$2$onTimeout($receiver, timeLimit, null); }, $isFuture: 1 }; A._Future__addListener_closure.prototype = { call$0() { A._Future__propagateToListeners(this.$this, this.listener); }, $signature: 0 }; A._Future__prependListeners_closure.prototype = { call$0() { A._Future__propagateToListeners(this.$this, this._box_0.listeners); }, $signature: 0 }; A._Future__chainForeignFuture_closure.prototype = { call$1(value) { var error, stackTrace, exception, t1 = this.$this; t1._state ^= 2; try { t1._completeWithValue$1(t1.$ti._precomputed1._as(value)); } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); t1._completeError$2(error, stackTrace); } }, $signature: 7 }; A._Future__chainForeignFuture_closure0.prototype = { call$2(error, stackTrace) { this.$this._completeError$2(error, stackTrace); }, $signature: 120 }; A._Future__chainForeignFuture_closure1.prototype = { call$0() { this.$this._completeError$2(this.e, this.s); }, $signature: 0 }; A._Future__asyncCompleteWithValue_closure.prototype = { call$0() { this.$this._completeWithValue$1(this.value); }, $signature: 0 }; A._Future__chainFuture_closure.prototype = { call$0() { A._Future__chainCoreFuture(this.value, this.$this); }, $signature: 0 }; A._Future__asyncCompleteError_closure.prototype = { call$0() { this.$this._completeError$2(this.error, this.stackTrace); }, $signature: 0 }; A._Future__propagateToListeners_handleWhenCompleteCallback.prototype = { call$0() { var e, s, t1, exception, t2, originalSource, _this = this, completeResult = null; try { t1 = _this._box_0.listener; completeResult = t1.result._zone.run$1$1(t1.callback, type$.dynamic); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); if (_this.hasError) { t1 = _this._box_1.source._resultOrListeners.error; t2 = e; t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; t2 = _this._box_0; if (t1) t2.listenerValueOrError = _this._box_1.source._resultOrListeners; else t2.listenerValueOrError = A.AsyncError$(e, s); t2.listenerHasError = true; return; } if (completeResult instanceof A._Future && (completeResult._state & 24) !== 0) { if ((completeResult._state & 16) !== 0) { t1 = _this._box_0; t1.listenerValueOrError = completeResult._resultOrListeners; t1.listenerHasError = true; } return; } if (type$.Future_dynamic._is(completeResult)) { originalSource = _this._box_1.source; t1 = _this._box_0; t1.listenerValueOrError = J.then$1$1$x(completeResult, new A._Future__propagateToListeners_handleWhenCompleteCallback_closure(originalSource), type$.dynamic); t1.listenerHasError = false; } }, $signature: 0 }; A._Future__propagateToListeners_handleWhenCompleteCallback_closure.prototype = { call$1(_) { return this.originalSource; }, $signature: 2558 }; A._Future__propagateToListeners_handleValueCallback.prototype = { call$0() { var e, s, t1, t2, t3, exception; try { t1 = this._box_0; t2 = t1.listener; t3 = t2.$ti; t1.listenerValueOrError = t2.result._zone.runUnary$2$2(t2.callback, this.sourceResult, t3._eval$1("2/"), t3._precomputed1); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); t1 = this._box_0; t1.listenerValueOrError = A.AsyncError$(e, s); t1.listenerHasError = true; } }, $signature: 0 }; A._Future__propagateToListeners_handleError.prototype = { call$0() { var asyncError, e, s, t1, exception, t2, t3, t4, _this = this; try { asyncError = _this._box_1.source._resultOrListeners; t1 = _this._box_0; if (t1.listener.matchesErrorTest$1(asyncError) && t1.listener.errorCallback != null) { t1.listenerValueOrError = t1.listener.handleError$1(asyncError); t1.listenerHasError = false; } } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); t1 = _this._box_1.source._resultOrListeners; t2 = t1.error; t3 = e; t4 = _this._box_0; if (t2 == null ? t3 == null : t2 === t3) t4.listenerValueOrError = t1; else t4.listenerValueOrError = A.AsyncError$(e, s); t4.listenerHasError = true; } }, $signature: 0 }; A._Future_timeout_closure.prototype = { call$0() { this._future._completeError$2(new A.TimeoutException("Future not completed", this.timeLimit), B._StringStackTrace_3uE); }, $signature: 0 }; A._Future_timeout_closure0.prototype = { call$1(v) { var t1 = this._box_0.timer; if (t1._handle != null) { t1.cancel$0(0); this._future._completeWithValue$1(v); } }, $signature() { return this.$this.$ti._eval$1("Null(1)"); } }; A._Future_timeout_closure1.prototype = { call$2(e, s) { var t1 = this._box_0.timer; if (t1._handle != null) { t1.cancel$0(0); this._future._completeError$2(e, s); } }, $signature: 120 }; A._AsyncCallbackEntry.prototype = {}; A.Stream.prototype = { get$isBroadcast() { return false; }, map$1$1(_, convert, $S) { return new A._MapStream(convert, this, A._instanceType(this)._eval$1("@")._bind$1($S)._eval$1("_MapStream<1,2>")); }, map$1($receiver, convert) { return this.map$1$1($receiver, convert, type$.dynamic); }, pipe$1(streamConsumer) { return streamConsumer.addStream$1(0, this).then$1$1(0, new A.Stream_pipe_closure(streamConsumer), type$.dynamic); }, fold$1$2(_, initialValue, combine, $S) { var subscription, t1 = {}, result = new A._Future($.Zone__current, $S._eval$1("_Future<0>")); t1.value = initialValue; subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new A.Stream_fold_closure(t1, result), result.get$_completeError()); subscription.onData$1(new A.Stream_fold_closure0(t1, this, combine, subscription, result, $S)); return result; }, forEach$1(_, action) { var future = new A._Future($.Zone__current, type$._Future_dynamic), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new A.Stream_forEach_closure(future), future.get$_completeError()); subscription.onData$1(new A.Stream_forEach_closure0(this, action, subscription, future)); return future; }, get$length(_) { var t1 = {}, future = new A._Future($.Zone__current, type$._Future_int); t1.count = 0; this.listen$4$cancelOnError$onDone$onError(0, new A.Stream_length_closure(t1, this), true, new A.Stream_length_closure0(t1, future), future.get$_completeError()); return future; }, get$isEmpty(_) { var future = new A._Future($.Zone__current, type$._Future_bool), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new A.Stream_isEmpty_closure(future), future.get$_completeError()); subscription.onData$1(new A.Stream_isEmpty_closure0(this, subscription, future)); return future; }, toList$0(_) { var t1 = A._instanceType(this), result = A._setArrayType([], t1._eval$1("JSArray")), future = new A._Future($.Zone__current, t1._eval$1("_Future>")); this.listen$4$cancelOnError$onDone$onError(0, new A.Stream_toList_closure(this, result), true, new A.Stream_toList_closure0(future, result), future.get$_completeError()); return future; }, get$first(_) { var future = new A._Future($.Zone__current, A._instanceType(this)._eval$1("_Future")), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new A.Stream_first_closure(future), future.get$_completeError()); subscription.onData$1(new A.Stream_first_closure0(this, subscription, future)); return future; } }; A.Stream_Stream$fromFuture_closure.prototype = { call$1(value) { var t1 = this.controller; t1._async$_add$1(0, value); t1._closeUnchecked$0(); }, $signature() { return this.T._eval$1("Null(0)"); } }; A.Stream_Stream$fromFuture_closure0.prototype = { call$2(error, stackTrace) { var t1 = this.controller; t1._addError$2(error, stackTrace); t1._closeUnchecked$0(); }, $signature: 193 }; A.Stream_pipe_closure.prototype = { call$1(_) { return this.streamConsumer.close$0(0); }, $signature: 3566 }; A.Stream_fold_closure.prototype = { call$0() { this.result._complete$1(this._box_0.value); }, $signature: 0 }; A.Stream_fold_closure0.prototype = { call$1(element) { var _this = this, t1 = _this._box_0, t2 = _this.S; A._runUserCode(new A.Stream_fold__closure(t1, _this.combine, element, t2), new A.Stream_fold__closure0(t1, t2), A._cancelAndErrorClosure(_this.subscription, _this.result)); }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.Stream_fold__closure.prototype = { call$0() { return this.combine.call$2(this._box_0.value, this.element); }, $signature() { return this.S._eval$1("0()"); } }; A.Stream_fold__closure0.prototype = { call$1(newValue) { this._box_0.value = newValue; }, $signature() { return this.S._eval$1("Null(0)"); } }; A.Stream_forEach_closure.prototype = { call$0() { this.future._complete$1(null); }, $signature: 0 }; A.Stream_forEach_closure0.prototype = { call$1(element) { A._runUserCode(new A.Stream_forEach__closure(this.action, element), new A.Stream_forEach__closure0(), A._cancelAndErrorClosure(this.subscription, this.future)); }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.Stream_forEach__closure.prototype = { call$0() { return this.action.call$1(this.element); }, $signature: 0 }; A.Stream_forEach__closure0.prototype = { call$1(_) { }, $signature: 86 }; A.Stream_length_closure.prototype = { call$1(_) { ++this._box_0.count; }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.Stream_length_closure0.prototype = { call$0() { this.future._complete$1(this._box_0.count); }, $signature: 0 }; A.Stream_isEmpty_closure.prototype = { call$0() { this.future._complete$1(true); }, $signature: 0 }; A.Stream_isEmpty_closure0.prototype = { call$1(_) { A._cancelAndValue(this.subscription, this.future, false); }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.Stream_toList_closure.prototype = { call$1(data) { this.result.push(data); }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.Stream_toList_closure0.prototype = { call$0() { this.future._complete$1(this.result); }, $signature: 0 }; A.Stream_first_closure.prototype = { call$0() { var e, s, t1, exception; try { t1 = A.IterableElementError_noElement(); throw A.wrapException(t1); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._completeWithErrorCallback(this.future, e, s); } }, $signature: 0 }; A.Stream_first_closure0.prototype = { call$1(value) { A._cancelAndValue(this.subscription, this.future, value); }, $signature() { return A._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; A.StreamSubscription.prototype = {}; A.StreamView.prototype = { get$isBroadcast() { return this._stream.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { return this._stream.listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, listen$1($receiver, onData) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, null); } }; A.StreamTransformerBase.prototype = {}; A._StreamController.prototype = { get$stream(_) { return new A._ControllerStream(this, A._instanceType(this)._eval$1("_ControllerStream<1>")); }, get$_pendingEvents() { if ((this._state & 8) === 0) return this._varData; return this._varData.varData; }, _ensurePendingEvents$0() { var events, state, _this = this; if ((_this._state & 8) === 0) { events = _this._varData; return events == null ? _this._varData = new A._StreamImplEvents(A._instanceType(_this)._eval$1("_StreamImplEvents<1>")) : events; } state = _this._varData; events = state.varData; return events == null ? state.varData = new A._StreamImplEvents(A._instanceType(_this)._eval$1("_StreamImplEvents<1>")) : events; }, get$_async$_subscription() { var varData = this._varData; return (this._state & 8) !== 0 ? varData.varData : varData; }, _badEventState$0() { if ((this._state & 4) !== 0) return new A.StateError("Cannot add event after closing"); return new A.StateError("Cannot add event while adding a stream"); }, addStream$2$cancelOnError(_, source, cancelOnError) { var t2, t3, t4, _this = this, t1 = _this._state; if (t1 >= 4) throw A.wrapException(_this._badEventState$0()); if ((t1 & 2) !== 0) { t1 = new A._Future($.Zone__current, type$._Future_dynamic); t1._asyncComplete$1(null); return t1; } t1 = _this._varData; t2 = cancelOnError === true; t3 = new A._Future($.Zone__current, type$._Future_dynamic); t4 = t2 ? A._AddStreamState_makeErrorHandler(_this) : _this.get$_addError(); t4 = source.listen$4$cancelOnError$onDone$onError(0, _this.get$_async$_add(_this), t2, _this.get$_async$_close(), t4); t2 = _this._state; if ((t2 & 1) !== 0 ? (_this.get$_async$_subscription()._state & 4) !== 0 : (t2 & 2) === 0) t4.pause$0(0); _this._varData = new A._StreamControllerAddStreamState(t1, t3, t4, A._instanceType(_this)._eval$1("_StreamControllerAddStreamState<1>")); _this._state |= 8; return t3; }, addStream$1($receiver, source) { return this.addStream$2$cancelOnError($receiver, source, null); }, _ensureDoneFuture$0() { var t1 = this._doneFuture; if (t1 == null) t1 = this._doneFuture = (this._state & 2) !== 0 ? $.$get$Future__nullFuture() : new A._Future($.Zone__current, type$._Future_void); return t1; }, add$1(_, value) { if (this._state >= 4) throw A.wrapException(this._badEventState$0()); this._async$_add$1(0, value); }, addError$2(error, stackTrace) { var replacement; A.checkNotNullable(error, "error", type$.Object); if (this._state >= 4) throw A.wrapException(this._badEventState$0()); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); this._addError$2(error, stackTrace); }, addError$1(error) { return this.addError$2(error, null); }, close$0(_) { var _this = this, t1 = _this._state; if ((t1 & 4) !== 0) return _this._ensureDoneFuture$0(); if (t1 >= 4) throw A.wrapException(_this._badEventState$0()); _this._closeUnchecked$0(); return _this._ensureDoneFuture$0(); }, _closeUnchecked$0() { var t1 = this._state |= 4; if ((t1 & 1) !== 0) this._sendDone$0(); else if ((t1 & 3) === 0) this._ensurePendingEvents$0().add$1(0, B.C__DelayedDone); }, _async$_add$1(_, value) { var _this = this, t1 = _this._state; if ((t1 & 1) !== 0) _this._sendData$1(value); else if ((t1 & 3) === 0) _this._ensurePendingEvents$0().add$1(0, new A._DelayedData(value, A._instanceType(_this)._eval$1("_DelayedData<1>"))); }, _addError$2(error, stackTrace) { var t1 = this._state; if ((t1 & 1) !== 0) this._sendError$2(error, stackTrace); else if ((t1 & 3) === 0) this._ensurePendingEvents$0().add$1(0, new A._DelayedError(error, stackTrace)); }, _async$_close$0() { var addState = this._varData; this._varData = addState.varData; this._state &= 4294967287; addState.addStreamFuture._asyncComplete$1(null); }, _async$_subscribe$4(onData, onError, onDone, cancelOnError) { var subscription, pendingEvents, t1, addState, _this = this; if ((_this._state & 3) !== 0) throw A.wrapException(A.StateError$("Stream has already been listened to.")); subscription = A._ControllerSubscription$(_this, onData, onError, onDone, cancelOnError, A._instanceType(_this)._precomputed1); pendingEvents = _this.get$_pendingEvents(); t1 = _this._state |= 1; if ((t1 & 8) !== 0) { addState = _this._varData; addState.varData = subscription; addState.addSubscription.resume$0(0); } else _this._varData = subscription; subscription._setPendingEvents$1(pendingEvents); subscription._guardCallback$1(new A._StreamController__subscribe_closure(_this)); return subscription; }, _recordCancel$1(subscription) { var onCancel, cancelResult, e, s, exception, result0, t1, _this = this, result = null; if ((_this._state & 8) !== 0) result = _this._varData.cancel$0(0); _this._varData = null; _this._state = _this._state & 4294967286 | 2; onCancel = _this.onCancel; if (onCancel != null) if (result == null) try { cancelResult = onCancel.call$0(); if (type$.Future_void._is(cancelResult)) result = cancelResult; } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); result0 = new A._Future($.Zone__current, type$._Future_void); result0._asyncCompleteError$2(e, s); result = result0; } else result = result.whenComplete$1(onCancel); t1 = new A._StreamController__recordCancel_complete(_this); if (result != null) result = result.whenComplete$1(t1); else t1.call$0(); return result; }, _recordPause$1(subscription) { if ((this._state & 8) !== 0) this._varData.addSubscription.pause$0(0); A._runGuarded(this.onPause); }, _recordResume$1(subscription) { if ((this._state & 8) !== 0) this._varData.addSubscription.resume$0(0); A._runGuarded(this.onResume); }, $isEventSink: 1, set$onListen(val) { return this.onListen = val; }, set$onPause(receiver, val) { return this.onPause = val; }, set$onResume(receiver, val) { return this.onResume = val; }, set$onCancel(receiver, val) { return this.onCancel = val; } }; A._StreamController__subscribe_closure.prototype = { call$0() { A._runGuarded(this.$this.onListen); }, $signature: 0 }; A._StreamController__recordCancel_complete.prototype = { call$0() { var doneFuture = this.$this._doneFuture; if (doneFuture != null && (doneFuture._state & 30) === 0) doneFuture._asyncComplete$1(null); }, $signature: 0 }; A._SyncStreamControllerDispatch.prototype = { _sendData$1(data) { this.get$_async$_subscription()._async$_add$1(0, data); }, _sendError$2(error, stackTrace) { this.get$_async$_subscription()._addError$2(error, stackTrace); }, _sendDone$0() { this.get$_async$_subscription()._async$_close$0(); } }; A._AsyncStreamControllerDispatch.prototype = { _sendData$1(data) { this.get$_async$_subscription()._addPending$1(new A._DelayedData(data, A._instanceType(this)._eval$1("_DelayedData<1>"))); }, _sendError$2(error, stackTrace) { this.get$_async$_subscription()._addPending$1(new A._DelayedError(error, stackTrace)); }, _sendDone$0() { this.get$_async$_subscription()._addPending$1(B.C__DelayedDone); } }; A._AsyncStreamController.prototype = {}; A._SyncStreamController.prototype = {}; A._ControllerStream.prototype = { _createSubscription$4(onData, onError, onDone, cancelOnError) { return this._async$_controller._async$_subscribe$4(onData, onError, onDone, cancelOnError); }, get$hashCode(_) { return (A.Primitives_objectHashCode(this._async$_controller) ^ 892482866) >>> 0; }, $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A._ControllerStream && other._async$_controller === this._async$_controller; } }; A._ControllerSubscription.prototype = { _onCancel$0() { return this._async$_controller._recordCancel$1(this); }, _onPause$0() { this._async$_controller._recordPause$1(this); }, _onResume$0() { this._async$_controller._recordResume$1(this); } }; A._AddStreamState.prototype = { cancel$0(_) { var cancel = this.addSubscription.cancel$0(0); if (cancel == null) { this.addStreamFuture._asyncComplete$1(null); return $.$get$Future__nullFuture(); } return cancel.whenComplete$1(new A._AddStreamState_cancel_closure(this)); } }; A._AddStreamState_makeErrorHandler_closure.prototype = { call$2(e, s) { var t1 = this.controller; t1._addError$2(e, s); t1._async$_close$0(); }, $signature: 120 }; A._AddStreamState_cancel_closure.prototype = { call$0() { this.$this.addStreamFuture._asyncComplete$1(null); }, $signature: 1 }; A._StreamControllerAddStreamState.prototype = {}; A._BufferingStreamSubscription.prototype = { _setPendingEvents$1(pendingEvents) { var _this = this; if (pendingEvents == null) return; _this._pending = pendingEvents; if (!pendingEvents.get$isEmpty(pendingEvents)) { _this._state = (_this._state | 64) >>> 0; pendingEvents.schedule$1(_this); } }, onData$1(handleData) { this._async$_onData = A._BufferingStreamSubscription__registerDataHandler(this._zone, handleData, A._instanceType(this)._eval$1("_BufferingStreamSubscription.T")); }, pause$0(_) { var t2, t3, _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; t2 = (t1 + 128 | 4) >>> 0; _this._state = t2; if (t1 < 128) { t3 = _this._pending; if (t3 != null) if (t3._state === 1) t3._state = 3; } if ((t1 & 4) === 0 && (t2 & 32) === 0) _this._guardCallback$1(_this.get$_onPause()); }, resume$0(_) { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; if (t1 >= 128) { t1 = _this._state = t1 - 128; if (t1 < 128) { if ((t1 & 64) !== 0) { t1 = _this._pending; t1 = !t1.get$isEmpty(t1); } else t1 = false; if (t1) _this._pending.schedule$1(_this); else { t1 = (_this._state & 4294967291) >>> 0; _this._state = t1; if ((t1 & 32) === 0) _this._guardCallback$1(_this.get$_onResume()); } } } }, cancel$0(_) { var _this = this, t1 = (_this._state & 4294967279) >>> 0; _this._state = t1; if ((t1 & 8) === 0) _this._async$_cancel$0(); t1 = _this._cancelFuture; return t1 == null ? $.$get$Future__nullFuture() : t1; }, _async$_cancel$0() { var t2, _this = this, t1 = _this._state = (_this._state | 8) >>> 0; if ((t1 & 64) !== 0) { t2 = _this._pending; if (t2._state === 1) t2._state = 3; } if ((t1 & 32) === 0) _this._pending = null; _this._cancelFuture = _this._onCancel$0(); }, _async$_add$1(_, data) { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; if (t1 < 32) _this._sendData$1(data); else _this._addPending$1(new A._DelayedData(data, A._instanceType(_this)._eval$1("_DelayedData<_BufferingStreamSubscription.T>"))); }, _addError$2(error, stackTrace) { var t1 = this._state; if ((t1 & 8) !== 0) return; if (t1 < 32) this._sendError$2(error, stackTrace); else this._addPending$1(new A._DelayedError(error, stackTrace)); }, _async$_close$0() { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; t1 = (t1 | 2) >>> 0; _this._state = t1; if (t1 < 32) _this._sendDone$0(); else _this._addPending$1(B.C__DelayedDone); }, _onPause$0() { }, _onResume$0() { }, _onCancel$0() { return null; }, _addPending$1($event) { var t1, _this = this, pending = _this._pending; if (pending == null) pending = new A._StreamImplEvents(A._instanceType(_this)._eval$1("_StreamImplEvents<_BufferingStreamSubscription.T>")); _this._pending = pending; pending.add$1(0, $event); t1 = _this._state; if ((t1 & 64) === 0) { t1 = (t1 | 64) >>> 0; _this._state = t1; if (t1 < 128) pending.schedule$1(_this); } }, _sendData$1(data) { var _this = this, t1 = _this._state; _this._state = (t1 | 32) >>> 0; _this._zone.runUnaryGuarded$1$2(_this._async$_onData, data, A._instanceType(_this)._eval$1("_BufferingStreamSubscription.T")); _this._state = (_this._state & 4294967263) >>> 0; _this._checkState$1((t1 & 4) !== 0); }, _sendError$2(error, stackTrace) { var cancelFuture, _this = this, t1 = _this._state, t2 = new A._BufferingStreamSubscription__sendError_sendError(_this, error, stackTrace); if ((t1 & 1) !== 0) { _this._state = (t1 | 16) >>> 0; _this._async$_cancel$0(); cancelFuture = _this._cancelFuture; if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(t2); else t2.call$0(); } else { t2.call$0(); _this._checkState$1((t1 & 4) !== 0); } }, _sendDone$0() { var cancelFuture, _this = this, t1 = new A._BufferingStreamSubscription__sendDone_sendDone(_this); _this._async$_cancel$0(); _this._state = (_this._state | 16) >>> 0; cancelFuture = _this._cancelFuture; if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(t1); else t1.call$0(); }, _guardCallback$1(callback) { var _this = this, t1 = _this._state; _this._state = (t1 | 32) >>> 0; callback.call$0(); _this._state = (_this._state & 4294967263) >>> 0; _this._checkState$1((t1 & 4) !== 0); }, _checkState$1(wasInputPaused) { var t1, isInputPaused, _this = this; if ((_this._state & 64) !== 0) { t1 = _this._pending; t1 = t1.get$isEmpty(t1); } else t1 = false; if (t1) { t1 = _this._state = (_this._state & 4294967231) >>> 0; if ((t1 & 4) !== 0) if (t1 < 128) { t1 = _this._pending; t1 = t1 == null ? null : t1.get$isEmpty(t1); t1 = t1 !== false; } else t1 = false; else t1 = false; if (t1) _this._state = (_this._state & 4294967291) >>> 0; } for (; true; wasInputPaused = isInputPaused) { t1 = _this._state; if ((t1 & 8) !== 0) { _this._pending = null; return; } isInputPaused = (t1 & 4) !== 0; if (wasInputPaused === isInputPaused) break; _this._state = (t1 ^ 32) >>> 0; if (isInputPaused) _this._onPause$0(); else _this._onResume$0(); _this._state = (_this._state & 4294967263) >>> 0; } t1 = _this._state; if ((t1 & 64) !== 0 && t1 < 128) _this._pending.schedule$1(_this); }, $isStreamSubscription: 1 }; A._BufferingStreamSubscription__sendError_sendError.prototype = { call$0() { var onError, t3, t4, t1 = this.$this, t2 = t1._state; if ((t2 & 8) !== 0 && (t2 & 16) === 0) return; t1._state = (t2 | 32) >>> 0; onError = t1._onError; t2 = this.error; t3 = type$.Object; t4 = t1._zone; if (type$.void_Function_Object_StackTrace._is(onError)) t4.runBinaryGuarded$2$3(onError, t2, this.stackTrace, t3, type$.StackTrace); else t4.runUnaryGuarded$1$2(onError, t2, t3); t1._state = (t1._state & 4294967263) >>> 0; }, $signature: 0 }; A._BufferingStreamSubscription__sendDone_sendDone.prototype = { call$0() { var t1 = this.$this, t2 = t1._state; if ((t2 & 16) === 0) return; t1._state = (t2 | 42) >>> 0; t1._zone.runGuarded$1(t1._onDone); t1._state = (t1._state & 4294967263) >>> 0; }, $signature: 0 }; A._StreamImpl.prototype = { listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { return this._createSubscription$4(onData, onError, onDone, cancelOnError === true); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, listen$2$onError($receiver, onData, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, onError); }, _createSubscription$4(onData, onError, onDone, cancelOnError) { return A._BufferingStreamSubscription$(onData, onError, onDone, cancelOnError, A._instanceType(this)._precomputed1); } }; A._DelayedEvent.prototype = { get$next(receiver) { return this.next; }, set$next(receiver, val) { return this.next = val; } }; A._DelayedData.prototype = { perform$1(dispatch) { dispatch._sendData$1(this.value); }, get$value(receiver) { return this.value; } }; A._DelayedError.prototype = { perform$1(dispatch) { dispatch._sendError$2(this.error, this.stackTrace); } }; A._DelayedDone.prototype = { perform$1(dispatch) { dispatch._sendDone$0(); }, get$next(_) { return null; }, set$next(_, _0) { throw A.wrapException(A.StateError$("No events after a done.")); } }; A._PendingEvents.prototype = { schedule$1(dispatch) { var _this = this, t1 = _this._state; if (t1 === 1) return; if (t1 >= 1) { _this._state = 1; return; } A.scheduleMicrotask(new A._PendingEvents_schedule_closure(_this, dispatch)); _this._state = 1; } }; A._PendingEvents_schedule_closure.prototype = { call$0() { var t1 = this.$this, oldState = t1._state; t1._state = 0; if (oldState === 3) return; t1.handleNext$1(this.dispatch); }, $signature: 0 }; A._StreamImplEvents.prototype = { get$isEmpty(_) { return this.lastPendingEvent == null; }, add$1(_, $event) { var _this = this, lastEvent = _this.lastPendingEvent; if (lastEvent == null) _this.firstPendingEvent = _this.lastPendingEvent = $event; else { lastEvent.set$next(0, $event); _this.lastPendingEvent = $event; } }, handleNext$1(dispatch) { var $event = this.firstPendingEvent, nextEvent = $event.get$next($event); this.firstPendingEvent = nextEvent; if (nextEvent == null) this.lastPendingEvent = null; $event.perform$1(dispatch); } }; A._DoneStreamSubscription.prototype = { _schedule$0() { var _this = this; if ((_this._state & 2) !== 0) return; _this._zone.scheduleMicrotask$1(_this.get$_sendDone()); _this._state = (_this._state | 2) >>> 0; }, onData$1(handleData) { }, pause$0(_) { this._state += 4; }, resume$0(_) { var t1 = this._state; if (t1 >= 4) { t1 = this._state = t1 - 4; if (t1 < 4 && (t1 & 1) === 0) this._schedule$0(); } }, cancel$0(_) { return $.$get$Future__nullFuture(); }, _sendDone$0() { var doneHandler, _this = this, t1 = _this._state = (_this._state & 4294967293) >>> 0; if (t1 >= 4) return; _this._state = (t1 | 1) >>> 0; doneHandler = _this._onDone; if (doneHandler != null) _this._zone.runGuarded$1(doneHandler); }, $isStreamSubscription: 1 }; A._StreamIterator.prototype = { get$current(_) { if (this._async$_hasValue) return this._stateData; return null; }, moveNext$0() { var future, _this = this, subscription = _this._async$_subscription; if (subscription != null) { if (_this._async$_hasValue) { future = new A._Future($.Zone__current, type$._Future_bool); _this._stateData = future; _this._async$_hasValue = false; subscription.resume$0(0); return future; } throw A.wrapException(A.StateError$("Already waiting for next.")); } return _this._initializeOrDone$0(); }, _initializeOrDone$0() { var future, subscription, _this = this, stateData = _this._stateData; if (stateData != null) { future = new A._Future($.Zone__current, type$._Future_bool); _this._stateData = future; subscription = stateData.listen$4$cancelOnError$onDone$onError(0, _this.get$_async$_onData(), true, _this.get$_onDone(), _this.get$_onError()); if (_this._stateData != null) _this._async$_subscription = subscription; return future; } return $.$get$Future__falseFuture(); }, cancel$0(_) { var _this = this, subscription = _this._async$_subscription, stateData = _this._stateData; _this._stateData = null; if (subscription != null) { _this._async$_subscription = null; if (!_this._async$_hasValue) stateData._asyncComplete$1(false); else _this._async$_hasValue = false; return subscription.cancel$0(0); } return $.$get$Future__nullFuture(); }, _async$_onData$1(data) { var moveNextFuture, t1, _this = this; if (_this._async$_subscription == null) return; moveNextFuture = _this._stateData; _this._stateData = data; _this._async$_hasValue = true; moveNextFuture._complete$1(true); if (_this._async$_hasValue) { t1 = _this._async$_subscription; if (t1 != null) t1.pause$0(0); } }, _onError$2(error, stackTrace) { var _this = this, subscription = _this._async$_subscription, moveNextFuture = _this._stateData; _this._stateData = _this._async$_subscription = null; if (subscription != null) moveNextFuture._completeError$2(error, stackTrace); else moveNextFuture._asyncCompleteError$2(error, stackTrace); }, _onDone$0() { var _this = this, subscription = _this._async$_subscription, moveNextFuture = _this._stateData; _this._stateData = _this._async$_subscription = null; if (subscription != null) moveNextFuture._completeWithValue$1(false); else moveNextFuture._asyncCompleteWithValue$1(false); } }; A._EmptyStream.prototype = { get$isBroadcast() { return true; }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { return A._DoneStreamSubscription$(onDone, this.$ti._precomputed1); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; A._MultiStream.prototype = { listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { var _null = null, controller = new A._MultiStreamController(_null, _null, _null, _null, this.$ti._eval$1("_MultiStreamController<1>")); controller.onListen = new A._MultiStream_listen_closure(this, controller); return controller._async$_subscribe$4(onData, onError, onDone, cancelOnError === true); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, get$isBroadcast() { return this.isBroadcast; } }; A._MultiStream_listen_closure.prototype = { call$0() { this.$this._onListen.call$1(this.controller); }, $signature: 0 }; A._MultiStreamController.prototype = { closeSync$0() { var _this = this, t1 = _this._state; if ((t1 & 4) !== 0) return; if (t1 >= 4) throw A.wrapException(_this._badEventState$0()); t1 |= 4; _this._state = t1; if ((t1 & 1) !== 0) _this.get$_async$_subscription()._async$_close$0(); }, get$stream(_) { throw A.wrapException(A.UnsupportedError$("Not available")); }, $isMultiStreamController: 1 }; A._cancelAndError_closure.prototype = { call$0() { return this.future._completeError$2(this.error, this.stackTrace); }, $signature: 0 }; A._cancelAndErrorClosure_closure.prototype = { call$2(error, stackTrace) { A._cancelAndError(this.subscription, this.future, error, stackTrace); }, $signature: 129 }; A._cancelAndValue_closure.prototype = { call$0() { return this.future._complete$1(this.value); }, $signature: 0 }; A._ForwardingStream.prototype = { get$isBroadcast() { return this._async$_source.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { var t1 = A._instanceType(this), t2 = t1._eval$1("_ForwardingStream.T"), t3 = $.Zone__current, t4 = cancelOnError === true ? 1 : 0; t2 = new A._ForwardingStreamSubscription(this, A._BufferingStreamSubscription__registerDataHandler(t3, onData, t2), A._BufferingStreamSubscription__registerErrorHandler(t3, onError), A._BufferingStreamSubscription__registerDoneHandler(t3, onDone), t3, t4, t1._eval$1("@<_ForwardingStream.S>")._bind$1(t2)._eval$1("_ForwardingStreamSubscription<1,2>")); t2._async$_subscription = this._async$_source.listen$3$onDone$onError(0, t2.get$_handleData(), t2.get$_handleDone(), t2.get$_async$_handleError()); return t2; }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; A._ForwardingStreamSubscription.prototype = { _async$_add$1(_, data) { if ((this._state & 2) !== 0) return; this.super$_BufferingStreamSubscription$_add(0, data); }, _addError$2(error, stackTrace) { if ((this._state & 2) !== 0) return; this.super$_BufferingStreamSubscription$_addError(error, stackTrace); }, _onPause$0() { var t1 = this._async$_subscription; if (t1 != null) t1.pause$0(0); }, _onResume$0() { var t1 = this._async$_subscription; if (t1 != null) t1.resume$0(0); }, _onCancel$0() { var subscription = this._async$_subscription; if (subscription != null) { this._async$_subscription = null; return subscription.cancel$0(0); } return null; }, _handleData$1(data) { this._stream._handleData$2(data, this); }, _async$_handleError$2(error, stackTrace) { this._addError$2(error, stackTrace); }, _handleDone$0() { this._async$_close$0(); } }; A._WhereStream.prototype = { _handleData$2(inputEvent, sink) { var e, s, exception, satisfies = null; try { satisfies = this._test.call$1(inputEvent); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._addErrorWithReplacement(sink, e, s); return; } if (satisfies) sink._async$_add$1(0, inputEvent); } }; A._MapStream.prototype = { _handleData$2(inputEvent, sink) { var e, s, exception, outputEvent = null; try { outputEvent = this._async$_transform.call$1(inputEvent); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._addErrorWithReplacement(sink, e, s); return; } sink._async$_add$1(0, outputEvent); } }; A._EventSinkWrapper.prototype = { add$1(_, data) { var t1 = this._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, data); }, addError$2(error, stackTrace) { var t1 = this._async$_sink, t2 = stackTrace == null ? A.AsyncError_defaultStackTrace(error) : stackTrace; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_addError(error, t2); }, close$0(_) { var t1 = this._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); }, $isEventSink: 1 }; A._SinkTransformerStreamSubscription.prototype = { _onPause$0() { var t1 = this._async$_subscription; if (t1 != null) t1.pause$0(0); }, _onResume$0() { var t1 = this._async$_subscription; if (t1 != null) t1.resume$0(0); }, _onCancel$0() { var subscription = this._async$_subscription; if (subscription != null) { this._async$_subscription = null; return subscription.cancel$0(0); } return null; }, _handleData$1(data) { var e, s, exception; try { A._lateReadCheck(this.___SinkTransformerStreamSubscription__transformerSink, "_transformerSink").add$1(0, data); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); if ((this._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); this.super$_BufferingStreamSubscription$_addError(e, s); } }, _async$_handleError$2(error, stackTrace) { var e, s, exception, t1, _this = this, _s24_ = "Stream is already closed"; try { A._lateReadCheck(_this.___SinkTransformerStreamSubscription__transformerSink, "_transformerSink").addError$2(error, stackTrace); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); t1 = e; if (t1 == null ? error == null : t1 === error) { if ((_this._state & 2) !== 0) A.throwExpression(A.StateError$(_s24_)); _this.super$_BufferingStreamSubscription$_addError(error, stackTrace); } else { if ((_this._state & 2) !== 0) A.throwExpression(A.StateError$(_s24_)); _this.super$_BufferingStreamSubscription$_addError(e, s); } } }, _handleDone$0() { var e, s, exception, _this = this; try { _this._async$_subscription = null; A._lateReadCheck(_this.___SinkTransformerStreamSubscription__transformerSink, "_transformerSink").close$0(0); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); if ((_this._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); _this.super$_BufferingStreamSubscription$_addError(e, s); } } }; A._StreamSinkTransformer.prototype = { bind$1(_, stream) { var t1 = this.$ti; return new A._BoundSinkStream(this._sinkMapper, stream, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BoundSinkStream<1,2>")); } }; A._BoundSinkStream.prototype = { get$isBroadcast() { return this._stream.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { var t1 = this.$ti, t2 = t1._rest[1], t3 = $.Zone__current, t4 = cancelOnError === true ? 1 : 0, subscription = new A._SinkTransformerStreamSubscription(A._BufferingStreamSubscription__registerDataHandler(t3, onData, t2), A._BufferingStreamSubscription__registerErrorHandler(t3, onError), A._BufferingStreamSubscription__registerDoneHandler(t3, onDone), t3, t4, t1._eval$1("@<1>")._bind$1(t2)._eval$1("_SinkTransformerStreamSubscription<1,2>")); subscription.___SinkTransformerStreamSubscription__transformerSink = this._sinkMapper.call$1(new A._EventSinkWrapper(subscription, t1._eval$1("_EventSinkWrapper<2>"))); subscription._async$_subscription = this._stream.listen$3$onDone$onError(0, subscription.get$_handleData(), subscription.get$_handleDone(), subscription.get$_async$_handleError()); return subscription; }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; A._HandlerEventSink.prototype = { add$1(_, data) { var handleData, t1, sink = this._async$_sink; if (sink == null) throw A.wrapException(A.StateError$("Sink is closed")); handleData = this._handleData; if (handleData != null) handleData.call$2(data, sink); else { this.$ti._rest[1]._as(data); t1 = sink._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, data); } }, addError$2(error, stackTrace) { var sink, handleError; A.checkNotNullable(error, "error", type$.Object); sink = this._async$_sink; if (sink == null) throw A.wrapException(A.StateError$("Sink is closed")); handleError = this._async$_handleError; if (stackTrace == null) stackTrace = A.AsyncError_defaultStackTrace(error); if (handleError != null) handleError.call$3(error, stackTrace, sink); else sink.addError$2(error, stackTrace); }, close$0(_) { var handleDone, t1, sink = this._async$_sink; if (sink == null) return; this._async$_sink = null; handleDone = this._handleDone; if (handleDone != null) handleDone.call$1(sink); else { t1 = sink._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); } }, $isEventSink: 1 }; A._StreamHandlerTransformer.prototype = { bind$1(_, stream) { return this.super$_StreamSinkTransformer$bind(0, stream); } }; A._StreamHandlerTransformer_closure.prototype = { call$1(outputSink) { var _this = this; return new A._HandlerEventSink(_this.handleData, _this.handleError, _this.handleDone, outputSink, _this.S._eval$1("@<0>")._bind$1(_this.T)._eval$1("_HandlerEventSink<1,2>")); }, $signature() { return this.S._eval$1("@<0>")._bind$1(this.T)._eval$1("_HandlerEventSink<1,2>(EventSink<2>)"); } }; A._ZoneFunction.prototype = {}; A._Zone.prototype = {$isZone: 1}; A._rootHandleError_closure.prototype = { call$0() { A.Error_throwWithStackTrace(this.error, this.stackTrace); A.ReachabilityError$(string$.x60null_t); }, $signature: 0 }; A._RootZone.prototype = { get$_scheduleMicrotask() { return B._ZoneFunction__RootZone__rootScheduleMicrotask; }, get$errorZone() { return this; }, runGuarded$1(f) { var e, s, exception; try { if (B.C__RootZone === $.Zone__current) { f.call$0(); return; } A._rootRun(null, null, this, f); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._rootHandleError(e, s); } }, runUnaryGuarded$1$2(f, arg) { var e, s, exception; try { if (B.C__RootZone === $.Zone__current) { f.call$1(arg); return; } A._rootRunUnary(null, null, this, f, arg); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._rootHandleError(e, s); } }, runBinaryGuarded$2$3(f, arg1, arg2) { var e, s, exception; try { if (B.C__RootZone === $.Zone__current) { f.call$2(arg1, arg2); return; } A._rootRunBinary(null, null, this, f, arg1, arg2); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); A._rootHandleError(e, s); } }, bindCallback$1$1(f, $R) { return new A._RootZone_bindCallback_closure(this, f, $R); }, bindCallbackGuarded$1(f) { return new A._RootZone_bindCallbackGuarded_closure(this, f); }, bindUnaryCallbackGuarded$1$1(f, $T) { return new A._RootZone_bindUnaryCallbackGuarded_closure(this, f, $T); }, bindBinaryCallbackGuarded$2$1(f, T1, T2) { return new A._RootZone_bindBinaryCallbackGuarded_closure(this, f, T1, T2); }, $index(_, key) { return null; }, handleUncaughtError$2(error, stackTrace) { A._rootHandleError(error, stackTrace); }, run$1$1(f) { if ($.Zone__current === B.C__RootZone) return f.call$0(); return A._rootRun(null, null, this, f); }, runUnary$2$2(f, arg) { if ($.Zone__current === B.C__RootZone) return f.call$1(arg); return A._rootRunUnary(null, null, this, f, arg); }, runBinary$3$3(f, arg1, arg2) { if ($.Zone__current === B.C__RootZone) return f.call$2(arg1, arg2); return A._rootRunBinary(null, null, this, f, arg1, arg2); }, registerCallback$1$1(f) { return f; }, registerUnaryCallback$2$1(f) { return f; }, registerBinaryCallback$3$1(f) { return f; }, errorCallback$2(error, stackTrace) { return null; }, scheduleMicrotask$1(f) { A._rootScheduleMicrotask(null, null, this, f); }, createTimer$2(duration, f) { return A.Timer__createTimer(duration, f); }, createPeriodicTimer$2(duration, f) { return A.Timer__createPeriodicTimer(duration, f); } }; A._RootZone_bindCallback_closure.prototype = { call$0() { return this.$this.run$1$1(this.f, this.R); }, $signature() { return this.R._eval$1("0()"); } }; A._RootZone_bindCallbackGuarded_closure.prototype = { call$0() { return this.$this.runGuarded$1(this.f); }, $signature: 0 }; A._RootZone_bindUnaryCallbackGuarded_closure.prototype = { call$1(arg) { return this.$this.runUnaryGuarded$1$2(this.f, arg, this.T); }, $signature() { return this.T._eval$1("~(0)"); } }; A._RootZone_bindBinaryCallbackGuarded_closure.prototype = { call$2(arg1, arg2) { var _this = this; return _this.$this.runBinaryGuarded$2$3(_this.f, arg1, arg2, _this.T1, _this.T2); }, $signature() { return this.T1._eval$1("@<0>")._bind$1(this.T2)._eval$1("~(1,2)"); } }; A._HashMap.prototype = { get$length(_) { return this._collection$_length; }, get$isEmpty(_) { return this._collection$_length === 0; }, get$isNotEmpty(_) { return this._collection$_length !== 0; }, get$keys(_) { return new A._HashMapKeyIterable(this, A._instanceType(this)._eval$1("_HashMapKeyIterable<1>")); }, get$values(_) { var t1 = A._instanceType(this); return A.MappedIterable_MappedIterable(new A._HashMapKeyIterable(this, t1._eval$1("_HashMapKeyIterable<1>")), new A._HashMap_values_closure(this), t1._precomputed1, t1._rest[1]); }, containsKey$1(_, key) { var strings, nums; if (typeof key == "string" && key !== "__proto__") { strings = this._collection$_strings; return strings == null ? false : strings[key] != null; } else if (typeof key == "number" && (key & 1073741823) === key) { nums = this._collection$_nums; return nums == null ? false : nums[key] != null; } else return this._containsKey$1(key); }, _containsKey$1(key) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(this._getBucket$2(rest, key), key) >= 0; }, addAll$1(_, other) { other.forEach$1(0, new A._HashMap_addAll_closure(this)); }, $index(_, key) { var strings, t1, nums; if (typeof key == "string" && key !== "__proto__") { strings = this._collection$_strings; t1 = strings == null ? null : A._HashMap__getTableEntry(strings, key); return t1; } else if (typeof key == "number" && (key & 1073741823) === key) { nums = this._collection$_nums; t1 = nums == null ? null : A._HashMap__getTableEntry(nums, key); return t1; } else return this._get$1(0, key); }, _get$1(_, key) { var bucket, index, rest = this._collection$_rest; if (rest == null) return null; bucket = this._getBucket$2(rest, key); index = this._findBucketIndex$2(bucket, key); return index < 0 ? null : bucket[index + 1]; }, $indexSet(_, key, value) { var strings, nums, _this = this; if (typeof key == "string" && key !== "__proto__") { strings = _this._collection$_strings; _this._collection$_addHashTableEntry$3(strings == null ? _this._collection$_strings = A._HashMap__newHashTable() : strings, key, value); } else if (typeof key == "number" && (key & 1073741823) === key) { nums = _this._collection$_nums; _this._collection$_addHashTableEntry$3(nums == null ? _this._collection$_nums = A._HashMap__newHashTable() : nums, key, value); } else _this._set$2(key, value); }, _set$2(key, value) { var hash, bucket, index, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = A._HashMap__newHashTable(); hash = _this._computeHashCode$1(key); bucket = rest[hash]; if (bucket == null) { A._HashMap__setTableEntry(rest, hash, [key, value]); ++_this._collection$_length; _this._collection$_keys = null; } else { index = _this._findBucketIndex$2(bucket, key); if (index >= 0) bucket[index + 1] = value; else { bucket.push(key, value); ++_this._collection$_length; _this._collection$_keys = null; } } }, putIfAbsent$2(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1(_, key) { var _this = this; if (typeof key == "string" && key !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, key); else if (typeof key == "number" && (key & 1073741823) === key) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, key); else return _this._remove$1(0, key); }, _remove$1(_, key) { var hash, bucket, index, result, _this = this, rest = _this._collection$_rest; if (rest == null) return null; hash = _this._computeHashCode$1(key); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, key); if (index < 0) return null; --_this._collection$_length; _this._collection$_keys = null; result = bucket.splice(index, 2)[1]; if (0 === bucket.length) delete rest[hash]; return result; }, clear$0(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._collection$_keys = null; _this._collection$_length = 0; } }, forEach$1(_, action) { var $length, i, key, _this = this, keys = _this._computeKeys$0(); for ($length = keys.length, i = 0; i < $length; ++i) { key = keys[i]; action.call$2(key, _this.$index(0, key)); if (keys !== _this._collection$_keys) throw A.wrapException(A.ConcurrentModificationError$(_this)); } }, _computeKeys$0() { var strings, names, entries, index, i, nums, rest, bucket, $length, i0, _this = this, result = _this._collection$_keys; if (result != null) return result; result = A.List_List$filled(_this._collection$_length, null, false, type$.dynamic); strings = _this._collection$_strings; if (strings != null) { names = Object.getOwnPropertyNames(strings); entries = names.length; for (index = 0, i = 0; i < entries; ++i) { result[index] = names[i]; ++index; } } else index = 0; nums = _this._collection$_nums; if (nums != null) { names = Object.getOwnPropertyNames(nums); entries = names.length; for (i = 0; i < entries; ++i) { result[index] = +names[i]; ++index; } } rest = _this._collection$_rest; if (rest != null) { names = Object.getOwnPropertyNames(rest); entries = names.length; for (i = 0; i < entries; ++i) { bucket = rest[names[i]]; $length = bucket.length; for (i0 = 0; i0 < $length; i0 += 2) { result[index] = bucket[i0]; ++index; } } } return _this._collection$_keys = result; }, _collection$_addHashTableEntry$3(table, key, value) { if (table[key] == null) { ++this._collection$_length; this._collection$_keys = null; } A._HashMap__setTableEntry(table, key, value); }, _collection$_removeHashTableEntry$2(table, key) { var value; if (table != null && table[key] != null) { value = A._HashMap__getTableEntry(table, key); delete table[key]; --this._collection$_length; this._collection$_keys = null; return value; } else return null; }, _computeHashCode$1(key) { return J.get$hashCode$(key) & 1073741823; }, _getBucket$2(table, key) { return table[this._computeHashCode$1(key)]; }, _findBucketIndex$2(bucket, key) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; i += 2) if (J.$eq$(bucket[i], key)) return i; return -1; } }; A._HashMap_values_closure.prototype = { call$1(each) { return this.$this.$index(0, each); }, $signature() { return A._instanceType(this.$this)._eval$1("2(1)"); } }; A._HashMap_addAll_closure.prototype = { call$2(key, value) { this.$this.$indexSet(0, key, value); }, $signature() { return A._instanceType(this.$this)._eval$1("~(1,2)"); } }; A._IdentityHashMap.prototype = { _computeHashCode$1(key) { return A.objectHashCode(key) & 1073741823; }, _findBucketIndex$2(bucket, key) { var $length, i, t1; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; i += 2) { t1 = bucket[i]; if (t1 == null ? key == null : t1 === key) return i; } return -1; } }; A._CustomHashMap.prototype = { $index(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$_HashMap$_get(0, key); }, $indexSet(_, key, value) { this.super$_HashMap$_set(key, value); }, containsKey$1(_, key) { if (!this._validKey.call$1(key)) return false; return this.super$_HashMap$_containsKey(key); }, remove$1(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$_HashMap$_remove(0, key); }, _computeHashCode$1(key) { return this._hashCode.call$1(key) & 1073741823; }, _findBucketIndex$2(bucket, key) { var $length, t1, i; if (bucket == null) return -1; $length = bucket.length; for (t1 = this._equals, i = 0; i < $length; i += 2) if (t1.call$2(bucket[i], key)) return i; return -1; } }; A._CustomHashMap_closure.prototype = { call$1(v) { return this.K._is(v); }, $signature: 125 }; A._HashMapKeyIterable.prototype = { get$length(_) { return this._collection$_map._collection$_length; }, get$isEmpty(_) { return this._collection$_map._collection$_length === 0; }, get$iterator(_) { var t1 = this._collection$_map; return new A._HashMapKeyIterator(t1, t1._computeKeys$0(), this.$ti._eval$1("_HashMapKeyIterator<1>")); }, contains$1(_, element) { return this._collection$_map.containsKey$1(0, element); }, forEach$1(_, f) { var $length, i, t1 = this._collection$_map, keys = t1._computeKeys$0(); for ($length = keys.length, i = 0; i < $length; ++i) { f.call$1(keys[i]); if (keys !== t1._collection$_keys) throw A.wrapException(A.ConcurrentModificationError$(t1)); } } }; A._HashMapKeyIterator.prototype = { get$current(_) { return this._collection$_current; }, moveNext$0() { var _this = this, keys = _this._collection$_keys, offset = _this._offset, t1 = _this._collection$_map; if (keys !== t1._collection$_keys) throw A.wrapException(A.ConcurrentModificationError$(t1)); else if (offset >= keys.length) { _this._collection$_current = null; return false; } else { _this._collection$_current = keys[offset]; _this._offset = offset + 1; return true; } } }; A._LinkedIdentityHashMap.prototype = { internalComputeHashCode$1(key) { return A.objectHashCode(key) & 1073741823; }, internalFindBucketIndex$2(bucket, key) { var $length, i, t1; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) { t1 = bucket[i].hashMapCellKey; if (t1 == null ? key == null : t1 === key) return i; } return -1; } }; A._LinkedCustomHashMap.prototype = { $index(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$JsLinkedHashMap$internalGet(key); }, $indexSet(_, key, value) { this.super$JsLinkedHashMap$internalSet(key, value); }, containsKey$1(_, key) { if (!this._validKey.call$1(key)) return false; return this.super$JsLinkedHashMap$internalContainsKey(key); }, remove$1(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$JsLinkedHashMap$internalRemove(key); }, internalComputeHashCode$1(key) { return this._hashCode.call$1(key) & 1073741823; }, internalFindBucketIndex$2(bucket, key) { var $length, t1, i; if (bucket == null) return -1; $length = bucket.length; for (t1 = this._equals, i = 0; i < $length; ++i) if (t1.call$2(bucket[i].hashMapCellKey, key)) return i; return -1; } }; A._LinkedCustomHashMap_closure.prototype = { call$1(v) { return this.K._is(v); }, $signature: 125 }; A._HashSet.prototype = { _newSet$0() { return new A._HashSet(A._instanceType(this)._eval$1("_HashSet<1>")); }, get$iterator(_) { return new A._HashSetIterator(this, this._computeElements$0(), A._instanceType(this)._eval$1("_HashSetIterator<1>")); }, get$length(_) { return this._collection$_length; }, get$isEmpty(_) { return this._collection$_length === 0; }, get$isNotEmpty(_) { return this._collection$_length !== 0; }, contains$1(_, object) { var strings, nums; if (typeof object == "string" && object !== "__proto__") { strings = this._collection$_strings; return strings == null ? false : strings[object] != null; } else if (typeof object == "number" && (object & 1073741823) === object) { nums = this._collection$_nums; return nums == null ? false : nums[object] != null; } else return this._contains$1(object); }, _contains$1(object) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(rest[this._computeHashCode$1(object)], object) >= 0; }, add$1(_, element) { var strings, nums, _this = this; if (typeof element == "string" && element !== "__proto__") { strings = _this._collection$_strings; return _this._collection$_addHashTableEntry$2(strings == null ? _this._collection$_strings = A._HashSet__newHashTable() : strings, element); } else if (typeof element == "number" && (element & 1073741823) === element) { nums = _this._collection$_nums; return _this._collection$_addHashTableEntry$2(nums == null ? _this._collection$_nums = A._HashSet__newHashTable() : nums, element); } else return _this._add$1(0, element); }, _add$1(_, element) { var hash, bucket, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = A._HashSet__newHashTable(); hash = _this._computeHashCode$1(element); bucket = rest[hash]; if (bucket == null) rest[hash] = [element]; else { if (_this._findBucketIndex$2(bucket, element) >= 0) return false; bucket.push(element); } ++_this._collection$_length; _this._elements = null; return true; }, addAll$1(_, objects) { var t1; for (t1 = J.get$iterator$ax(objects); t1.moveNext$0();) this.add$1(0, t1.get$current(t1)); }, remove$1(_, object) { var _this = this; if (typeof object == "string" && object !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, object); else if (typeof object == "number" && (object & 1073741823) === object) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, object); else return _this._remove$1(0, object); }, _remove$1(_, object) { var hash, bucket, index, _this = this, rest = _this._collection$_rest; if (rest == null) return false; hash = _this._computeHashCode$1(object); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, object); if (index < 0) return false; --_this._collection$_length; _this._elements = null; bucket.splice(index, 1); if (0 === bucket.length) delete rest[hash]; return true; }, clear$0(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._elements = null; _this._collection$_length = 0; } }, _computeElements$0() { var strings, names, entries, index, i, nums, rest, bucket, $length, i0, _this = this, result = _this._elements; if (result != null) return result; result = A.List_List$filled(_this._collection$_length, null, false, type$.dynamic); strings = _this._collection$_strings; if (strings != null) { names = Object.getOwnPropertyNames(strings); entries = names.length; for (index = 0, i = 0; i < entries; ++i) { result[index] = names[i]; ++index; } } else index = 0; nums = _this._collection$_nums; if (nums != null) { names = Object.getOwnPropertyNames(nums); entries = names.length; for (i = 0; i < entries; ++i) { result[index] = +names[i]; ++index; } } rest = _this._collection$_rest; if (rest != null) { names = Object.getOwnPropertyNames(rest); entries = names.length; for (i = 0; i < entries; ++i) { bucket = rest[names[i]]; $length = bucket.length; for (i0 = 0; i0 < $length; ++i0) { result[index] = bucket[i0]; ++index; } } } return _this._elements = result; }, _collection$_addHashTableEntry$2(table, element) { if (table[element] != null) return false; table[element] = 0; ++this._collection$_length; this._elements = null; return true; }, _collection$_removeHashTableEntry$2(table, element) { if (table != null && table[element] != null) { delete table[element]; --this._collection$_length; this._elements = null; return true; } else return false; }, _computeHashCode$1(element) { return J.get$hashCode$(element) & 1073741823; }, _findBucketIndex$2(bucket, element) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i], element)) return i; return -1; } }; A._HashSetIterator.prototype = { get$current(_) { return this._collection$_current; }, moveNext$0() { var _this = this, elements = _this._elements, offset = _this._offset, t1 = _this._set; if (elements !== t1._elements) throw A.wrapException(A.ConcurrentModificationError$(t1)); else if (offset >= elements.length) { _this._collection$_current = null; return false; } else { _this._collection$_current = elements[offset]; _this._offset = offset + 1; return true; } } }; A._LinkedHashSet.prototype = { _newSet$0() { return new A._LinkedHashSet(A._instanceType(this)._eval$1("_LinkedHashSet<1>")); }, get$iterator(_) { var _this = this, t1 = new A._LinkedHashSetIterator(_this, _this._collection$_modifications, A._instanceType(_this)._eval$1("_LinkedHashSetIterator<1>")); t1._collection$_cell = _this._collection$_first; return t1; }, get$length(_) { return this._collection$_length; }, get$isEmpty(_) { return this._collection$_length === 0; }, get$isNotEmpty(_) { return this._collection$_length !== 0; }, contains$1(_, object) { var strings, nums; if (typeof object == "string" && object !== "__proto__") { strings = this._collection$_strings; if (strings == null) return false; return strings[object] != null; } else if (typeof object == "number" && (object & 1073741823) === object) { nums = this._collection$_nums; if (nums == null) return false; return nums[object] != null; } else return this._contains$1(object); }, _contains$1(object) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(rest[this._computeHashCode$1(object)], object) >= 0; }, forEach$1(_, action) { var _this = this, cell = _this._collection$_first, modifications = _this._collection$_modifications; for (; cell != null;) { action.call$1(cell._element); if (modifications !== _this._collection$_modifications) throw A.wrapException(A.ConcurrentModificationError$(_this)); cell = cell._collection$_next; } }, get$first(_) { var first = this._collection$_first; if (first == null) throw A.wrapException(A.StateError$("No elements")); return first._element; }, get$last(_) { var last = this._collection$_last; if (last == null) throw A.wrapException(A.StateError$("No elements")); return last._element; }, add$1(_, element) { var strings, nums, _this = this; if (typeof element == "string" && element !== "__proto__") { strings = _this._collection$_strings; return _this._collection$_addHashTableEntry$2(strings == null ? _this._collection$_strings = A._LinkedHashSet__newHashTable() : strings, element); } else if (typeof element == "number" && (element & 1073741823) === element) { nums = _this._collection$_nums; return _this._collection$_addHashTableEntry$2(nums == null ? _this._collection$_nums = A._LinkedHashSet__newHashTable() : nums, element); } else return _this._add$1(0, element); }, _add$1(_, element) { var hash, bucket, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = A._LinkedHashSet__newHashTable(); hash = _this._computeHashCode$1(element); bucket = rest[hash]; if (bucket == null) rest[hash] = [_this._collection$_newLinkedCell$1(element)]; else { if (_this._findBucketIndex$2(bucket, element) >= 0) return false; bucket.push(_this._collection$_newLinkedCell$1(element)); } return true; }, remove$1(_, object) { var _this = this; if (typeof object == "string" && object !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, object); else if (typeof object == "number" && (object & 1073741823) === object) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, object); else return _this._remove$1(0, object); }, _remove$1(_, object) { var hash, bucket, index, cell, _this = this, rest = _this._collection$_rest; if (rest == null) return false; hash = _this._computeHashCode$1(object); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, object); if (index < 0) return false; cell = bucket.splice(index, 1)[0]; if (0 === bucket.length) delete rest[hash]; _this._collection$_unlinkCell$1(cell); return true; }, removeWhere$1(_, test) { this._filterWhere$2(test, true); }, _filterWhere$2(test, removeMatching) { var element, next, modifications, t1, _this = this, cell = _this._collection$_first; for (; cell != null; cell = next) { element = cell._element; next = cell._collection$_next; modifications = _this._collection$_modifications; t1 = test.call$1(element); if (modifications !== _this._collection$_modifications) throw A.wrapException(A.ConcurrentModificationError$(_this)); if (true === t1) _this.remove$1(0, element); } }, clear$0(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._collection$_first = _this._collection$_last = null; _this._collection$_length = 0; _this._collection$_modified$0(); } }, _collection$_addHashTableEntry$2(table, element) { if (table[element] != null) return false; table[element] = this._collection$_newLinkedCell$1(element); return true; }, _collection$_removeHashTableEntry$2(table, element) { var cell; if (table == null) return false; cell = table[element]; if (cell == null) return false; this._collection$_unlinkCell$1(cell); delete table[element]; return true; }, _collection$_modified$0() { this._collection$_modifications = this._collection$_modifications + 1 & 1073741823; }, _collection$_newLinkedCell$1(element) { var t1, _this = this, cell = new A._LinkedHashSetCell(element); if (_this._collection$_first == null) _this._collection$_first = _this._collection$_last = cell; else { t1 = _this._collection$_last; t1.toString; cell._collection$_previous = t1; _this._collection$_last = t1._collection$_next = cell; } ++_this._collection$_length; _this._collection$_modified$0(); return cell; }, _collection$_unlinkCell$1(cell) { var _this = this, previous = cell._collection$_previous, next = cell._collection$_next; if (previous == null) _this._collection$_first = next; else previous._collection$_next = next; if (next == null) _this._collection$_last = previous; else next._collection$_previous = previous; --_this._collection$_length; _this._collection$_modified$0(); }, _computeHashCode$1(element) { return J.get$hashCode$(element) & 1073741823; }, _findBucketIndex$2(bucket, element) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i]._element, element)) return i; return -1; } }; A._LinkedHashSetCell.prototype = {}; A._LinkedHashSetIterator.prototype = { get$current(_) { return this._collection$_current; }, moveNext$0() { var _this = this, cell = _this._collection$_cell, t1 = _this._set; if (_this._collection$_modifications !== t1._collection$_modifications) throw A.wrapException(A.ConcurrentModificationError$(t1)); else if (cell == null) { _this._collection$_current = null; return false; } else { _this._collection$_current = cell._element; _this._collection$_cell = cell._collection$_next; return true; } } }; A.UnmodifiableListView.prototype = { cast$1$0(_, $R) { return new A.UnmodifiableListView(J.cast$1$0$ax(this._collection$_source, $R), $R._eval$1("UnmodifiableListView<0>")); }, get$length(_) { return J.get$length$asx(this._collection$_source); }, $index(_, index) { return J.elementAt$1$ax(this._collection$_source, index); } }; A.HashMap_HashMap$from_closure.prototype = { call$2(k, v) { this.result.$indexSet(0, this.K._as(k), this.V._as(v)); }, $signature: 123 }; A.IterableMixin.prototype = { map$1$1(_, toElement, $T) { return A.MappedIterable_MappedIterable(this, toElement, this.$ti._precomputed1, $T); }, map$1($receiver, toElement) { return this.map$1$1($receiver, toElement, type$.dynamic); }, where$1(_, test) { return new A.WhereIterable(this, test, this.$ti._eval$1("WhereIterable<1>")); }, contains$1(_, element) { var t1; for (t1 = this.$ti, t1 = new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) if (J.$eq$(t1.get$current(t1), element)) return true; return false; }, forEach$1(_, action) { var t1; for (t1 = this.$ti, t1 = new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) action.call$1(t1.get$current(t1)); }, toList$1$growable(_, growable) { return A.List_List$from(this, true, this.$ti._precomputed1); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return A.LinkedHashSet_LinkedHashSet$from(this, this.$ti._precomputed1); }, get$length(_) { var count, t1 = this.$ti, it = new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); for (count = 0; it.moveNext$0();) ++count; return count; }, get$isEmpty(_) { var t1 = this.$ti; return !new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")).moveNext$0(); }, get$isNotEmpty(_) { return this._root != null; }, take$1(_, count) { return A.TakeIterable_TakeIterable(this, count, this.$ti._precomputed1); }, skip$1(_, count) { return A.SkipIterable_SkipIterable(this, count, this.$ti._precomputed1); }, get$first(_) { var t1 = this.$ti, it = new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); return it.get$current(it); }, get$last(_) { var result, t1 = this.$ti, it = new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, elementAt$1(_, index) { var t1, elementIndex, element, _this = this, _s5_ = "index"; A.checkNotNullable(index, _s5_, type$.int); A.RangeError_checkNotNegative(index, _s5_); for (t1 = _this.$ti, t1 = new A._SplayTreeKeyIterator(_this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), _this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw A.wrapException(A.IndexError$(index, _this, _s5_, null, elementIndex)); }, toString$0(_) { return A.IterableBase_iterableToShortString(this, "(", ")"); } }; A.IterableBase.prototype = {}; A.LinkedHashMap_LinkedHashMap$from_closure.prototype = { call$2(k, v) { this.result.$indexSet(0, this.K._as(k), this.V._as(v)); }, $signature: 123 }; A.LinkedList.prototype = { contains$1(_, entry) { return entry instanceof A.LinkedListEntry && this === entry._collection$_list; }, get$iterator(_) { var _this = this; return new A._LinkedListIterator(_this, _this._modificationCount, _this._collection$_first, _this.$ti._eval$1("_LinkedListIterator<1>")); }, get$length(_) { return this._collection$_length; }, get$first(_) { var t1; if (this._collection$_length === 0) throw A.wrapException(A.StateError$("No such element")); t1 = this._collection$_first; t1.toString; return t1; }, get$last(_) { var t1; if (this._collection$_length === 0) throw A.wrapException(A.StateError$("No such element")); t1 = this._collection$_first._collection$_previous; t1.toString; return t1; }, forEach$1(_, action) { var t1, current, _this = this, modificationCount = _this._modificationCount; if (_this._collection$_length === 0) return; t1 = _this._collection$_first; t1.toString; current = t1; do { action.call$1(current); if (modificationCount !== _this._modificationCount) throw A.wrapException(A.ConcurrentModificationError$(_this)); t1 = current._collection$_next; t1.toString; if (t1 !== _this._collection$_first) { current = t1; continue; } else break; } while (true); }, get$isEmpty(_) { return this._collection$_length === 0; }, _insertBefore$3$updateFirst(entry, newEntry, updateFirst) { var t1, t2, _this = this; if (newEntry._collection$_list != null) throw A.wrapException(A.StateError$("LinkedListEntry is already in a LinkedList")); ++_this._modificationCount; newEntry._collection$_list = _this; t1 = _this._collection$_length; if (t1 === 0) { newEntry._collection$_next = newEntry; _this._collection$_first = newEntry._collection$_previous = newEntry; _this._collection$_length = t1 + 1; return; } t2 = entry._collection$_previous; t2.toString; newEntry._collection$_previous = t2; newEntry._collection$_next = entry; entry._collection$_previous = t2._collection$_next = newEntry; _this._collection$_length = t1 + 1; } }; A._LinkedListIterator.prototype = { get$current(_) { return this._collection$_current; }, moveNext$0() { var _this = this, t1 = _this._collection$_list; if (_this._modificationCount !== t1._modificationCount) throw A.wrapException(A.ConcurrentModificationError$(_this)); if (t1._collection$_length !== 0) t1 = _this._visitedFirst && _this._collection$_next == t1.get$first(t1); else t1 = true; if (t1) { _this._collection$_current = null; return false; } _this._visitedFirst = true; t1 = _this._collection$_next; _this._collection$_current = t1; _this._collection$_next = t1._collection$_next; return true; } }; A.LinkedListEntry.prototype = {}; A.ListBase.prototype = {$isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1}; A.ListMixin.prototype = { get$iterator(receiver) { return new A.ListIterator(receiver, this.get$length(receiver), A.instanceType(receiver)._eval$1("ListIterator")); }, elementAt$1(receiver, index) { return this.$index(receiver, index); }, forEach$1(receiver, action) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { action.call$1(this.$index(receiver, i)); if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } }, get$isEmpty(receiver) { return this.get$length(receiver) === 0; }, get$isNotEmpty(receiver) { return !this.get$isEmpty(receiver); }, get$first(receiver) { if (this.get$length(receiver) === 0) throw A.wrapException(A.IterableElementError_noElement()); return this.$index(receiver, 0); }, get$last(receiver) { if (this.get$length(receiver) === 0) throw A.wrapException(A.IterableElementError_noElement()); return this.$index(receiver, this.get$length(receiver) - 1); }, contains$1(receiver, element) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { if (J.$eq$(this.$index(receiver, i), element)) return true; if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return false; }, any$1(receiver, test) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { if (test.call$1(this.$index(receiver, i))) return true; if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return false; }, firstWhere$2$orElse(receiver, test, orElse) { var i, element, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { element = this.$index(receiver, i); if (test.call$1(element)) return element; if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return orElse.call$0(); }, lastWhere$2$orElse(receiver, test, orElse) { var i, element, $length = this.get$length(receiver); for (i = $length - 1; i >= 0; --i) { element = this.$index(receiver, i); if (test.call$1(element)) return element; if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw A.wrapException(A.IterableElementError_noElement()); }, join$1(receiver, separator) { var t1; if (this.get$length(receiver) === 0) return ""; t1 = A.StringBuffer__writeAll("", receiver, separator); return t1.charCodeAt(0) == 0 ? t1 : t1; }, join$0($receiver) { return this.join$1($receiver, ""); }, where$1(receiver, test) { return new A.WhereIterable(receiver, test, A.instanceType(receiver)._eval$1("WhereIterable")); }, map$1$1(receiver, f, $T) { return new A.MappedListIterable(receiver, f, A.instanceType(receiver)._eval$1("@")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, fold$1$2(receiver, initialValue, combine) { var value, i, $length = this.get$length(receiver); for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, this.$index(receiver, i)); if ($length !== this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } return value; }, skip$1(receiver, count) { return A.SubListIterable$(receiver, count, null, A.instanceType(receiver)._eval$1("ListMixin.E")); }, take$1(receiver, count) { return A.SubListIterable$(receiver, 0, A.checkNotNullable(count, "count", type$.int), A.instanceType(receiver)._eval$1("ListMixin.E")); }, toList$1$growable(receiver, growable) { var t1, first, result, i, _this = this; if (_this.get$isEmpty(receiver)) { t1 = A.instanceType(receiver)._eval$1("ListMixin.E"); return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } first = _this.$index(receiver, 0); result = A.List_List$filled(_this.get$length(receiver), first, growable, A.instanceType(receiver)._eval$1("ListMixin.E")); for (i = 1; i < _this.get$length(receiver); ++i) result[i] = _this.$index(receiver, i); return result; }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(receiver) { var i, result = A.LinkedHashSet_LinkedHashSet(A.instanceType(receiver)._eval$1("ListMixin.E")); for (i = 0; i < this.get$length(receiver); ++i) result.add$1(0, this.$index(receiver, i)); return result; }, add$1(receiver, element) { var t1 = this.get$length(receiver); this.set$length(receiver, t1 + 1); this.$indexSet(receiver, t1, element); }, addAll$1(receiver, iterable) { var t1, i = this.get$length(receiver); for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0();) { this.add$1(receiver, t1.get$current(t1)); ++i; } }, remove$1(receiver, element) { var i; for (i = 0; i < this.get$length(receiver); ++i) if (J.$eq$(this.$index(receiver, i), element)) { this._closeGap$2(receiver, i, i + 1); return true; } return false; }, _closeGap$2(receiver, start, end) { var i, _this = this, $length = _this.get$length(receiver), size = end - start; for (i = end; i < $length; ++i) _this.$indexSet(receiver, i - size, _this.$index(receiver, i)); _this.set$length(receiver, $length - size); }, removeWhere$1(receiver, test) { this._collection$_filter$2(receiver, test, false); }, retainWhere$1(receiver, test) { this._collection$_filter$2(receiver, test, true); }, _collection$_filter$2(receiver, test, retainMatching) { var i, element, _this = this, retained = A._setArrayType([], A.instanceType(receiver)._eval$1("JSArray")), $length = _this.get$length(receiver); for (i = 0; i < $length; ++i) { element = _this.$index(receiver, i); if (J.$eq$(test.call$1(element), retainMatching)) retained.push(element); if ($length !== _this.get$length(receiver)) throw A.wrapException(A.ConcurrentModificationError$(receiver)); } if (retained.length !== _this.get$length(receiver)) { _this.setRange$3(receiver, 0, retained.length, retained); _this.set$length(receiver, retained.length); } }, clear$0(receiver) { this.set$length(receiver, 0); }, cast$1$0(receiver, $R) { return new A.CastList(receiver, A.instanceType(receiver)._eval$1("@")._bind$1($R)._eval$1("CastList<1,2>")); }, removeLast$0(receiver) { var result, _this = this; if (_this.get$length(receiver) === 0) throw A.wrapException(A.IterableElementError_noElement()); result = _this.$index(receiver, _this.get$length(receiver) - 1); _this.set$length(receiver, _this.get$length(receiver) - 1); return result; }, sort$1(receiver, compare) { A.Sort_sort(receiver, compare == null ? A.collection_ListMixin__compareAny$closure() : compare); }, asMap$0(receiver) { return new A.ListMapView(receiver, A.instanceType(receiver)._eval$1("ListMapView")); }, $add(receiver, other) { var t1 = A.List_List$of(receiver, true, A.instanceType(receiver)._eval$1("ListMixin.E")); B.JSArray_methods.addAll$1(t1, other); return t1; }, sublist$2(receiver, start, end) { var listLength = this.get$length(receiver); if (end == null) end = listLength; if (end == null) throw A.wrapException("!"); A.RangeError_checkValidRange(start, end, listLength, null, null); return A.List_List$from(this.getRange$2(receiver, start, end), true, A.instanceType(receiver)._eval$1("ListMixin.E")); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, getRange$2(receiver, start, end) { A.RangeError_checkValidRange(start, end, this.get$length(receiver), null, null); return A.SubListIterable$(receiver, start, end, A.instanceType(receiver)._eval$1("ListMixin.E")); }, removeRange$2(receiver, start, end) { A.RangeError_checkValidRange(start, end, this.get$length(receiver), null, null); if (end > start) this._closeGap$2(receiver, start, end); }, fillRange$3(receiver, start, end, fill) { var i; A.RangeError_checkValidRange(start, end, this.get$length(receiver), null, null); for (i = start; i < end; ++i) this.$indexSet(receiver, i, fill); }, setRange$4(receiver, start, end, iterable, skipCount) { var $length, otherStart, otherList, t1, i; A.RangeError_checkValidRange(start, end, this.get$length(receiver), null, null); $length = end - start; if ($length === 0) return; A.RangeError_checkNotNegative(skipCount, "skipCount"); if (A.instanceType(receiver)._eval$1("List")._is(iterable)) { otherStart = skipCount; otherList = iterable; } else { t1 = J.skip$1$ax(iterable, skipCount); otherList = t1.toList$1$growable(t1, false); otherStart = 0; } t1 = J.getInterceptor$asx(otherList); if (otherStart + $length > t1.get$length(otherList)) throw A.wrapException(A.IterableElementError_tooFew()); if (otherStart < start) for (i = $length - 1; i >= 0; --i) this.$indexSet(receiver, start + i, t1.$index(otherList, otherStart + i)); else for (i = 0; i < $length; ++i) this.$indexSet(receiver, start + i, t1.$index(otherList, otherStart + i)); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, indexOf$2(receiver, element, start) { var i; for (i = start; i < this.get$length(receiver); ++i) if (J.$eq$(this.$index(receiver, i), element)) return i; return -1; }, indexOf$1($receiver, element) { return this.indexOf$2($receiver, element, 0); }, insert$2(receiver, index, element) { var $length, _this = this; A.checkNotNullable(index, "index", type$.int); $length = _this.get$length(receiver); A.RangeError_checkValueInInterval(index, 0, $length, "index"); _this.add$1(receiver, element); if (index != $length) { _this.setRange$4(receiver, index + 1, $length + 1, receiver, index); _this.$indexSet(receiver, index, element); } }, removeAt$1(receiver, index) { var result = this.$index(receiver, index); this._closeGap$2(receiver, index, index + 1); return result; }, insertAll$2(receiver, index, iterable) { var t1, insertionLength, oldLength, i, oldCopyStart, _this = this; A.RangeError_checkValueInInterval(index, 0, _this.get$length(receiver), "index"); if (index === _this.get$length(receiver)) { _this.addAll$1(receiver, iterable); return; } if (!type$.EfficientLengthIterable_dynamic._is(iterable) || iterable === receiver) iterable = J.toList$0$ax(iterable); t1 = J.getInterceptor$asx(iterable); insertionLength = t1.get$length(iterable); if (insertionLength === 0) return; oldLength = _this.get$length(receiver); for (i = oldLength - insertionLength; i < oldLength; ++i) _this.add$1(receiver, _this.$index(receiver, i > 0 ? i : 0)); if (t1.get$length(iterable) !== insertionLength) { _this.set$length(receiver, _this.get$length(receiver) - insertionLength); throw A.wrapException(A.ConcurrentModificationError$(iterable)); } oldCopyStart = index + insertionLength; if (oldCopyStart < oldLength) _this.setRange$4(receiver, oldCopyStart, oldLength, receiver, index); _this.setAll$2(receiver, index, iterable); }, setAll$2(receiver, index, iterable) { var t1, index0; if (type$.List_dynamic._is(iterable)) this.setRange$3(receiver, index, index + J.get$length$asx(iterable), iterable); else for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0(); index = index0) { index0 = index + 1; this.$indexSet(receiver, index, t1.get$current(t1)); } }, get$reversed(receiver) { return new A.ReversedListIterable(receiver, A.instanceType(receiver)._eval$1("ReversedListIterable")); }, toString$0(receiver) { return A.IterableBase_iterableToFullString(receiver, "[", "]"); } }; A.MapBase.prototype = {}; A.MapBase_mapToString_closure.prototype = { call$2(k, v) { var t2, t1 = this._box_0; if (!t1.first) this.result._contents += ", "; t1.first = false; t1 = this.result; t2 = t1._contents += A.S(k); t1._contents = t2 + ": "; t1._contents += A.S(v); }, $signature: 262 }; A.MapMixin.prototype = { cast$2$0(receiver, RK, RV) { var t1 = A.instanceType(receiver); return A.Map_castFrom(receiver, t1._eval$1("MapMixin.K"), t1._eval$1("MapMixin.V"), RK, RV); }, forEach$1(receiver, action) { var t1, key; for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); action.call$2(key, this.$index(receiver, key)); } }, putIfAbsent$2(receiver, key, ifAbsent) { var t1; if (this.containsKey$1(receiver, key)) return this.$index(receiver, key); t1 = ifAbsent.call$0(); this.$indexSet(receiver, key, t1); return t1; }, update$3$ifAbsent(receiver, key, update, ifAbsent) { var t1, _this = this; if (_this.containsKey$1(receiver, key)) { t1 = update.call$1(_this.$index(receiver, key)); _this.$indexSet(receiver, key, t1); return t1; } if (ifAbsent != null) { t1 = ifAbsent.call$0(); _this.$indexSet(receiver, key, t1); return t1; } throw A.wrapException(A.ArgumentError$value(key, "key", "Key not in map.")); }, update$2($receiver, key, update) { return this.update$3$ifAbsent($receiver, key, update, null); }, get$entries(receiver) { return J.map$1$1$ax(this.get$keys(receiver), new A.MapMixin_entries_closure(receiver), A.instanceType(receiver)._eval$1("MapEntry")); }, map$2$1(receiver, transform, K2, V2) { var t1, key, entry, result = A.LinkedHashMap_LinkedHashMap$_empty(K2, V2); for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); entry = transform.call$2(key, this.$index(receiver, key)); result.$indexSet(0, entry.get$key(entry), entry.get$value(entry)); } return result; }, map$1($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, addEntries$1(receiver, newEntries) { var t1, t2; for (t1 = J.get$iterator$ax(newEntries); t1.moveNext$0();) { t2 = t1.get$current(t1); this.$indexSet(receiver, t2.get$key(t2), t2.get$value(t2)); } }, removeWhere$1(receiver, test) { var t1, key, _i, keysToRemove = A._setArrayType([], A.instanceType(receiver)._eval$1("JSArray")); for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); if (test.call$2(key, this.$index(receiver, key))) keysToRemove.push(key); } for (t1 = keysToRemove.length, _i = 0; _i < keysToRemove.length; keysToRemove.length === t1 || (0, A.throwConcurrentModificationError)(keysToRemove), ++_i) this.remove$1(receiver, keysToRemove[_i]); }, containsKey$1(receiver, key) { return J.contains$1$asx(this.get$keys(receiver), key); }, get$length(receiver) { return J.get$length$asx(this.get$keys(receiver)); }, get$isEmpty(receiver) { return J.get$isEmpty$asx(this.get$keys(receiver)); }, get$isNotEmpty(receiver) { return J.get$isNotEmpty$asx(this.get$keys(receiver)); }, get$values(receiver) { var t1 = A.instanceType(receiver); return new A._MapBaseValueIterable(receiver, t1._eval$1("@")._bind$1(t1._eval$1("MapMixin.V"))._eval$1("_MapBaseValueIterable<1,2>")); }, toString$0(receiver) { return A.MapBase_mapToString(receiver); }, $isMap: 1 }; A.MapMixin_entries_closure.prototype = { call$1(key) { var t1 = this.$this, t2 = A.instanceType(t1); return new A.MapEntry(key, J.$index$asx(t1, key), t2._eval$1("@")._bind$1(t2._eval$1("MapMixin.V"))._eval$1("MapEntry<1,2>")); }, $signature() { return A.instanceType(this.$this)._eval$1("MapEntry(MapMixin.K)"); } }; A.UnmodifiableMapBase.prototype = {}; A._MapBaseValueIterable.prototype = { get$length(_) { return J.get$length$asx(this._collection$_map); }, get$isEmpty(_) { return J.get$isEmpty$asx(this._collection$_map); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this._collection$_map); }, get$first(_) { var t1 = this._collection$_map, t2 = J.getInterceptor$x(t1); return t2.$index(t1, J.get$first$ax(t2.get$keys(t1))); }, get$last(_) { var t1 = this._collection$_map, t2 = J.getInterceptor$x(t1); return t2.$index(t1, J.get$last$ax(t2.get$keys(t1))); }, get$iterator(_) { var t1 = this._collection$_map, t2 = this.$ti; return new A._MapBaseValueIterator(J.get$iterator$ax(J.get$keys$x(t1)), t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_MapBaseValueIterator<1,2>")); } }; A._MapBaseValueIterator.prototype = { moveNext$0() { var _this = this, t1 = _this._collection$_keys; if (t1.moveNext$0()) { _this._collection$_current = J.$index$asx(_this._collection$_map, t1.get$current(t1)); return true; } _this._collection$_current = null; return false; }, get$current(_) { return this._collection$_current; } }; A._UnmodifiableMapMixin.prototype = { $indexSet(_, key, value) { throw A.wrapException(A.UnsupportedError$("Cannot modify unmodifiable map")); }, remove$1(_, key) { throw A.wrapException(A.UnsupportedError$("Cannot modify unmodifiable map")); }, putIfAbsent$2(_, key, ifAbsent) { throw A.wrapException(A.UnsupportedError$("Cannot modify unmodifiable map")); } }; A.MapView.prototype = { cast$2$0(_, RK, RV) { return J.cast$2$0$ax(this._collection$_map, RK, RV); }, $index(_, key) { return J.$index$asx(this._collection$_map, key); }, $indexSet(_, key, value) { J.$indexSet$ax(this._collection$_map, key, value); }, putIfAbsent$2(_, key, ifAbsent) { return J.putIfAbsent$2$x(this._collection$_map, key, ifAbsent); }, containsKey$1(_, key) { return J.containsKey$1$x(this._collection$_map, key); }, forEach$1(_, action) { J.forEach$1$ax(this._collection$_map, action); }, get$isEmpty(_) { return J.get$isEmpty$asx(this._collection$_map); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this._collection$_map); }, get$length(_) { return J.get$length$asx(this._collection$_map); }, get$keys(_) { return J.get$keys$x(this._collection$_map); }, remove$1(_, key) { return J.remove$1$ax(this._collection$_map, key); }, toString$0(_) { return J.toString$0$(this._collection$_map); }, get$values(_) { return J.get$values$x(this._collection$_map); }, get$entries(_) { return J.get$entries$x(this._collection$_map); }, map$2$1(_, transform, K2, V2) { return J.map$2$1$ax(this._collection$_map, transform, K2, V2); }, map$1($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, $isMap: 1 }; A.UnmodifiableMapView.prototype = { cast$2$0(_, RK, RV) { return new A.UnmodifiableMapView(J.cast$2$0$ax(this._collection$_map, RK, RV), RK._eval$1("@<0>")._bind$1(RV)._eval$1("UnmodifiableMapView<1,2>")); } }; A._DoubleLinkedQueueEntry.prototype = { _collection$_link$2(previous, next) { var _this = this; _this._nextLink = next; _this._previousLink = previous; if (previous != null) previous._nextLink = _this; if (next != null) next._previousLink = _this; }, _unlink$0() { var t2, _this = this, t1 = _this._previousLink; if (t1 != null) t1._nextLink = _this._nextLink; t2 = _this._nextLink; if (t2 != null) t2._previousLink = t1; _this._previousLink = _this._nextLink = null; } }; A._DoubleLinkedQueueElement.prototype = { _remove$0(_) { var t1, t2, _this = this; _this._collection$_queue = null; t1 = _this._previousLink; if (t1 != null) t1._nextLink = _this._nextLink; t2 = _this._nextLink; if (t2 != null) t2._previousLink = t1; _this._previousLink = _this._nextLink = null; return _this.element; }, remove$0(_) { var _this = this, t1 = _this._collection$_queue; if (t1 != null) --t1._elementCount; _this._collection$_queue = null; _this._unlink$0(); return _this.element; }, _asNonSentinelEntry$0() { return this; }, $isDoubleLinkedQueueEntry: 1, get$element() { return this.element; } }; A._DoubleLinkedQueueSentinel.prototype = { _asNonSentinelEntry$0() { return null; }, _remove$0(_) { throw A.wrapException(A.IterableElementError_noElement()); }, get$element() { throw A.wrapException(A.IterableElementError_noElement()); } }; A.DoubleLinkedQueue.prototype = { get$length(_) { return this._elementCount; }, addFirst$1(value) { var t1 = this._sentinel; new A._DoubleLinkedQueueElement(this, value, t1.$ti._eval$1("_DoubleLinkedQueueElement<1>"))._collection$_link$2(t1, t1._nextLink); ++this._elementCount; }, get$first(_) { return this._sentinel._nextLink.get$element(); }, get$last(_) { return this._sentinel._previousLink.get$element(); }, get$isEmpty(_) { var t1 = this._sentinel; return t1._nextLink === t1; }, get$iterator(_) { return new A._DoubleLinkedQueueIterator(this, this._sentinel._nextLink, this.$ti._eval$1("_DoubleLinkedQueueIterator<1>")); }, toString$0(_) { return A.IterableBase_iterableToFullString(this, "{", "}"); }, $isEfficientLengthIterable: 1 }; A._DoubleLinkedQueueIterator.prototype = { moveNext$0() { var _this = this, t1 = _this._nextEntry, nextElement = t1 == null ? null : t1._asNonSentinelEntry$0(); if (nextElement == null) { _this._collection$_queue = _this._nextEntry = _this._collection$_current = null; return false; } t1 = _this._collection$_queue; if (t1 != nextElement._collection$_queue) throw A.wrapException(A.ConcurrentModificationError$(t1)); _this._collection$_current = nextElement.element; _this._nextEntry = nextElement._nextLink; return true; }, get$current(_) { return this._collection$_current; } }; A.ListQueue.prototype = { get$iterator(_) { var _this = this; return new A._ListQueueIterator(_this, _this._tail, _this._modificationCount, _this._head, _this.$ti._eval$1("_ListQueueIterator<1>")); }, forEach$1(_, f) { var i, _this = this, modificationCount = _this._modificationCount; for (i = _this._head; i !== _this._tail; i = (i + 1 & _this._table.length - 1) >>> 0) { f.call$1(_this._table[i]); if (modificationCount !== _this._modificationCount) A.throwExpression(A.ConcurrentModificationError$(_this)); } }, get$isEmpty(_) { return this._head === this._tail; }, get$length(_) { return (this._tail - this._head & this._table.length - 1) >>> 0; }, get$first(_) { var t1 = this._head; if (t1 === this._tail) throw A.wrapException(A.IterableElementError_noElement()); return this._table[t1]; }, get$last(_) { var t1 = this._head, t2 = this._tail; if (t1 === t2) throw A.wrapException(A.IterableElementError_noElement()); t1 = this._table; return t1[(t2 - 1 & t1.length - 1) >>> 0]; }, elementAt$1(_, index) { var t1; A.RangeError_checkValidIndex(index, this, null, null); t1 = this._table; return t1[(this._head + index & t1.length - 1) >>> 0]; }, toList$1$growable(_, growable) { var t1, list, t2, i, _this = this, mask = _this._table.length - 1, $length = (_this._tail - _this._head & mask) >>> 0; if ($length === 0) { t1 = _this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } list = A.List_List$filled($length, _this.get$first(_this), growable, _this.$ti._precomputed1); for (t1 = _this._table, t2 = _this._head, i = 0; i < $length; ++i) list[i] = t1[(t2 + i & mask) >>> 0]; return list; }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, addAll$1(_, elements) { var addCount, $length, t2, t3, t4, newTable, endSpace, preSpace, _this = this, t1 = _this.$ti; if (t1._eval$1("List<1>")._is(elements)) { addCount = elements.length; $length = _this.get$length(_this); t2 = $length + addCount; t3 = _this._table; t4 = t3.length; if (t2 >= t4) { newTable = A.List_List$filled(A.ListQueue__nextPowerOf2(t2 + (t2 >>> 1)), null, false, t1._eval$1("1?")); _this._tail = _this._writeToList$1(newTable); _this._table = newTable; _this._head = 0; B.JSArray_methods.setRange$4(newTable, $length, t2, elements, 0); _this._tail += addCount; } else { t1 = _this._tail; endSpace = t4 - t1; if (addCount < endSpace) { B.JSArray_methods.setRange$4(t3, t1, t1 + addCount, elements, 0); _this._tail += addCount; } else { preSpace = addCount - endSpace; B.JSArray_methods.setRange$4(t3, t1, t1 + endSpace, elements, 0); B.JSArray_methods.setRange$4(_this._table, 0, preSpace, elements, endSpace); _this._tail = preSpace; } } ++_this._modificationCount; } else for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) _this._add$1(0, t1.get$current(t1)); }, clear$0(_) { var t2, t3, _this = this, i = _this._head, t1 = _this._tail; if (i !== t1) { for (t2 = _this._table, t3 = t2.length - 1; i !== t1; i = (i + 1 & t3) >>> 0) t2[i] = null; _this._head = _this._tail = 0; ++_this._modificationCount; } }, toString$0(_) { return A.IterableBase_iterableToFullString(this, "{", "}"); }, addFirst$1(value) { var _this = this, t1 = _this._head, t2 = _this._table; t1 = _this._head = (t1 - 1 & t2.length - 1) >>> 0; t2[t1] = value; if (t1 === _this._tail) _this._grow$0(); ++_this._modificationCount; }, removeFirst$0() { var t2, result, _this = this, t1 = _this._head; if (t1 === _this._tail) throw A.wrapException(A.IterableElementError_noElement()); ++_this._modificationCount; t2 = _this._table; result = t2[t1]; t2[t1] = null; _this._head = (t1 + 1 & t2.length - 1) >>> 0; return result; }, removeLast$0(_) { var result, _this = this, t1 = _this._head, t2 = _this._tail; if (t1 === t2) throw A.wrapException(A.IterableElementError_noElement()); ++_this._modificationCount; t1 = _this._table; t2 = _this._tail = (t2 - 1 & t1.length - 1) >>> 0; result = t1[t2]; t1[t2] = null; return result; }, _add$1(_, element) { var _this = this, t1 = _this._table, t2 = _this._tail; t1[t2] = element; t1 = (t2 + 1 & t1.length - 1) >>> 0; _this._tail = t1; if (_this._head === t1) _this._grow$0(); ++_this._modificationCount; }, _grow$0() { var _this = this, newTable = A.List_List$filled(_this._table.length * 2, null, false, _this.$ti._eval$1("1?")), t1 = _this._table, t2 = _this._head, split = t1.length - t2; B.JSArray_methods.setRange$4(newTable, 0, split, t1, t2); B.JSArray_methods.setRange$4(newTable, split, split + _this._head, _this._table, 0); _this._head = 0; _this._tail = _this._table.length; _this._table = newTable; }, _writeToList$1(target) { var $length, firstPartSize, _this = this, t1 = _this._head, t2 = _this._tail, t3 = _this._table; if (t1 <= t2) { $length = t2 - t1; B.JSArray_methods.setRange$4(target, 0, $length, t3, t1); return $length; } else { firstPartSize = t3.length - t1; B.JSArray_methods.setRange$4(target, 0, firstPartSize, t3, t1); B.JSArray_methods.setRange$4(target, firstPartSize, firstPartSize + _this._tail, _this._table, 0); return _this._tail + firstPartSize; } } }; A._ListQueueIterator.prototype = { get$current(_) { return this._collection$_current; }, moveNext$0() { var t2, _this = this, t1 = _this._collection$_queue; if (_this._modificationCount !== t1._modificationCount) A.throwExpression(A.ConcurrentModificationError$(t1)); t2 = _this._collection$_position; if (t2 === _this._end) { _this._collection$_current = null; return false; } t1 = t1._table; _this._collection$_current = t1[t2]; _this._collection$_position = (t2 + 1 & t1.length - 1) >>> 0; return true; } }; A.SetMixin.prototype = { get$isEmpty(_) { return this.get$length(this) === 0; }, get$isNotEmpty(_) { return this.get$length(this) !== 0; }, clear$0(_) { this.removeAll$1(this.toList$0(0)); }, addAll$1(_, elements) { var t1; for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) this.add$1(0, t1.get$current(t1)); }, removeAll$1(elements) { var t1, _i; for (t1 = elements.length, _i = 0; _i < elements.length; elements.length === t1 || (0, A.throwConcurrentModificationError)(elements), ++_i) this.remove$1(0, elements[_i]); }, removeWhere$1(_, test) { var t1, element, toRemove = []; for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) toRemove.push(element); } this.removeAll$1(toRemove); }, containsAll$1(other) { var t1; for (t1 = other.get$iterator(other); t1.moveNext$0();) if (!this.contains$1(0, t1.get$current(t1))) return false; return true; }, union$1(other) { var t1 = this.toSet$0(0); t1.addAll$1(0, other); return t1; }, intersection$1(_, other) { var t1, element, result = this.toSet$0(0); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (!other.contains$1(0, element)) result.remove$1(0, element); } return result; }, toList$1$growable(_, growable) { return A.List_List$of(this, growable, A._instanceType(this)._eval$1("SetMixin.E")); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, map$1$1(_, f, $T) { return new A.EfficientLengthMappedIterable(this, f, A._instanceType(this)._eval$1("@")._bind$1($T)._eval$1("EfficientLengthMappedIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, toString$0(_) { return A.IterableBase_iterableToFullString(this, "{", "}"); }, where$1(_, f) { return new A.WhereIterable(this, f, A._instanceType(this)._eval$1("WhereIterable")); }, forEach$1(_, f) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) f.call$1(t1.get$current(t1)); }, join$1(_, separator) { var t1, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) return ""; if (separator === "") { t1 = ""; do t1 += A.S(iterator.get$current(iterator)); while (iterator.moveNext$0()); } else { t1 = A.S(iterator.get$current(iterator)); for (; iterator.moveNext$0();) t1 = t1 + separator + A.S(iterator.get$current(iterator)); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, any$1(_, test) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (test.call$1(t1.get$current(t1))) return true; return false; }, take$1(_, n) { return A.TakeIterable_TakeIterable(this, n, A._instanceType(this)._eval$1("SetMixin.E")); }, skip$1(_, n) { return A.SkipIterable_SkipIterable(this, n, A._instanceType(this)._eval$1("SetMixin.E")); }, get$first(_) { var it = this.get$iterator(this); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); return it.get$current(it); }, get$last(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, elementAt$1(_, index) { var t1, elementIndex, element, _s5_ = "index"; A.checkNotNullable(index, _s5_, type$.int); A.RangeError_checkNotNegative(index, _s5_); for (t1 = this.get$iterator(this), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw A.wrapException(A.IndexError$(index, this, _s5_, null, elementIndex)); } }; A.SetBase.prototype = {$isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1}; A._SetBase.prototype = { difference$1(other) { var t1, element, result = this._newSet$0(); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (!other.contains$1(0, element)) result.add$1(0, element); } return result; }, intersection$1(_, other) { var t1, element, result = this._newSet$0(); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (other.contains$1(0, element)) result.add$1(0, element); } return result; }, toSet$0(_) { var t1 = this._newSet$0(); t1.addAll$1(0, this); return t1; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1 }; A._UnmodifiableSetMixin.prototype = { add$1(_, value) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); }, clear$0(_) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); }, addAll$1(_, elements) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); }, removeAll$1(elements) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); }, removeWhere$1(_, test) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); }, remove$1(_, value) { A._UnmodifiableSetMixin__throwUnmodifiable(); return A.ReachabilityError$(string$.x60null_t); } }; A._UnmodifiableSet.prototype = { _newSet$0() { return A.LinkedHashSet_LinkedHashSet(this.$ti._precomputed1); }, contains$1(_, element) { return J.containsKey$1$x(this._collection$_map, element); }, get$iterator(_) { return J.get$iterator$ax(J.get$keys$x(this._collection$_map)); }, get$length(_) { return J.get$length$asx(this._collection$_map); } }; A._SplayTreeNode.prototype = { get$key(receiver) { return this.key; } }; A._SplayTreeSetNode.prototype = {}; A._SplayTreeMapNode.prototype = { _replaceValue$1(value) { var _this = this, t1 = _this.$ti; t1 = new A._SplayTreeMapNode(value, _this.key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")); t1._collection$_left = _this._collection$_left; t1._collection$_right = _this._collection$_right; return t1; }, toString$0(_) { return "MapEntry(" + A.S(this.key) + ": " + A.S(this.value) + ")"; }, $isMapEntry: 1, get$value(receiver) { return this.value; } }; A._SplayTree.prototype = { _splay$1(key) { var compare, comp, current, newTreeLeft, left, newTreeRight, right, currentLeft, currentLeft0, currentRight, currentRight0, _this = this, _null = null, root = _this.get$_root(); if (root == null) { _this._compare$2(key, key); return -1; } compare = _this.get$_compare(); for (comp = _null, current = root, newTreeLeft = comp, left = newTreeLeft, newTreeRight = left, right = newTreeRight; true;) { comp = compare.call$2(current.key, key); if (comp > 0) { currentLeft = current._collection$_left; if (currentLeft == null) break; comp = compare.call$2(currentLeft.key, key); if (comp > 0) { current._collection$_left = currentLeft._collection$_right; currentLeft._collection$_right = current; currentLeft0 = currentLeft._collection$_left; if (currentLeft0 == null) { current = currentLeft; break; } current = currentLeft; currentLeft = currentLeft0; } if (right == null) newTreeRight = current; else right._collection$_left = current; right = current; current = currentLeft; } else { if (comp < 0) { currentRight = current._collection$_right; if (currentRight == null) break; comp = compare.call$2(currentRight.key, key); if (comp < 0) { current._collection$_right = currentRight._collection$_left; currentRight._collection$_left = current; currentRight0 = currentRight._collection$_right; if (currentRight0 == null) { current = currentRight; break; } current = currentRight; currentRight = currentRight0; } if (left == null) newTreeLeft = current; else left._collection$_right = current; } else break; left = current; current = currentRight; } } if (left != null) { left._collection$_right = current._collection$_left; current._collection$_left = newTreeLeft; } if (right != null) { right._collection$_left = current._collection$_right; current._collection$_right = newTreeRight; } if (_this.get$_root() !== current) { _this.set$_root(current); ++_this._splayCount; } return comp; }, _splayMin$1(node) { var current, nextLeft0, nextLeft = node._collection$_left; for (current = node; nextLeft != null; current = nextLeft, nextLeft = nextLeft0) { current._collection$_left = nextLeft._collection$_right; nextLeft._collection$_right = current; nextLeft0 = nextLeft._collection$_left; } return current; }, _splayMax$1(node) { var current, nextRight0, nextRight = node._collection$_right; for (current = node; nextRight != null; current = nextRight, nextRight = nextRight0) { current._collection$_right = nextRight._collection$_left; nextRight._collection$_left = current; nextRight0 = nextRight._collection$_right; } return current; }, _remove$1(_, key) { var root, left, t1, root0, _this = this; if (_this.get$_root() == null) return null; if (_this._splay$1(key) !== 0) return null; root = _this.get$_root(); left = root._collection$_left; --_this._count; t1 = root._collection$_right; if (left == null) _this.set$_root(t1); else { root0 = _this._splayMax$1(left); root0._collection$_right = t1; _this.set$_root(root0); } ++_this._modificationCount; return root; }, _addNewRoot$2(node, comp) { var root, _this = this; ++_this._count; ++_this._modificationCount; root = _this.get$_root(); if (root == null) { _this.set$_root(node); return; } if (comp < 0) { node._collection$_left = root; node._collection$_right = root._collection$_right; root._collection$_right = null; } else { node._collection$_right = root; node._collection$_left = root._collection$_left; root._collection$_left = null; } _this.set$_root(node); }, get$_collection$_first() { var _this = this, root = _this.get$_root(); if (root == null) return null; _this.set$_root(_this._splayMin$1(root)); return _this.get$_root(); }, get$_collection$_last() { var _this = this, root = _this.get$_root(); if (root == null) return null; _this.set$_root(_this._splayMax$1(root)); return _this.get$_root(); }, _clear$0(_) { this.set$_root(null); this._count = 0; ++this._modificationCount; }, _containsKey$1(key) { return this._validKey$1(key) && this._splay$1(key) === 0; }, _compare$2(arg0, arg1) { return this.get$_compare().call$2(arg0, arg1); }, _validKey$1(arg0) { return this.get$_validKey().call$1(arg0); } }; A.SplayTreeMap.prototype = { $index(_, key) { var _this = this; if (!_this._validKey.call$1(key)) return null; if (_this._root != null) if (_this._splay$1(key) === 0) return _this._root.value; return null; }, remove$1(_, key) { var mapRoot; if (!this._validKey.call$1(key)) return null; mapRoot = this._remove$1(0, key); if (mapRoot != null) return mapRoot.value; return null; }, $indexSet(_, key, value) { var t1, _this = this, comp = _this._splay$1(key); if (comp === 0) { _this._root = _this._root._replaceValue$1(value); ++_this._splayCount; return; } t1 = _this.$ti; _this._addNewRoot$2(new A._SplayTreeMapNode(value, key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")), comp); }, putIfAbsent$2(_, key, ifAbsent) { var modificationCount, splayCount, value, t1, _this = this, comp = _this._splay$1(key); if (comp === 0) return _this._root.value; modificationCount = _this._modificationCount; splayCount = _this._splayCount; value = ifAbsent.call$0(); if (modificationCount !== _this._modificationCount) throw A.wrapException(A.ConcurrentModificationError$(_this)); if (splayCount !== _this._splayCount) comp = _this._splay$1(key); t1 = _this.$ti; _this._addNewRoot$2(new A._SplayTreeMapNode(value, key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")), comp); return value; }, get$isEmpty(_) { return this._root == null; }, get$isNotEmpty(_) { return this._root != null; }, forEach$1(_, f) { var nodes, node, t1 = this.$ti; t1 = t1._eval$1("@<1>")._bind$1(t1._rest[1]); nodes = new A._SplayTreeMapEntryIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), this._splayCount, t1._eval$1("_SplayTreeMapEntryIterator<1,2>")); for (; nodes.moveNext$0();) { node = nodes.get$current(nodes); f.call$2(node.get$key(node), node.get$value(node)); } }, get$length(_) { return this._count; }, containsKey$1(_, key) { return this._containsKey$1(key); }, get$keys(_) { var t1 = this.$ti; return new A._SplayTreeKeyIterable(this, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>")); }, get$values(_) { var t1 = this.$ti; return new A._SplayTreeValueIterable(this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeValueIterable<1,2>")); }, get$entries(_) { var t1 = this.$ti; return new A._SplayTreeMapEntryIterable(this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapEntryIterable<1,2>")); }, firstKey$0() { if (this._root == null) return null; return this.get$_collection$_first().key; }, lastKey$0() { if (this._root == null) return null; return this.get$_collection$_last().key; }, lastKeyBefore$1(key) { var node, nodeRight, nodeRight0, _this = this; if (key == null) throw A.wrapException(A.ArgumentError$(key, null)); if (_this._root == null) return null; if (_this._splay$1(key) < 0) return _this._root.key; node = _this._root._collection$_left; if (node == null) return null; nodeRight = node._collection$_right; for (; nodeRight != null; node = nodeRight, nodeRight = nodeRight0) nodeRight0 = nodeRight._collection$_right; return node.key; }, firstKeyAfter$1(key) { var node, nodeLeft, nodeLeft0, _this = this; if (key == null) throw A.wrapException(A.ArgumentError$(key, null)); if (_this._root == null) return null; if (_this._splay$1(key) > 0) return _this._root.key; node = _this._root._collection$_right; if (node == null) return null; nodeLeft = node._collection$_left; for (; nodeLeft != null; node = nodeLeft, nodeLeft = nodeLeft0) nodeLeft0 = nodeLeft._collection$_left; return node.key; }, $isMap: 1, _compare$2(arg0, arg1) { return this._compare.call$2(arg0, arg1); }, _validKey$1(arg0) { return this._validKey.call$1(arg0); }, get$_root() { return this._root; }, get$_compare() { return this._compare; }, set$_root(val) { return this._root = val; } }; A.SplayTreeMap_closure.prototype = { call$1(a) { return this.K._is(a); }, $signature: 125 }; A._SplayTreeIterator.prototype = { get$current(_) { var t1 = this._collection$_path; if (t1.length === 0) return null; return this._getValue$1(B.JSArray_methods.get$last(t1)); }, moveNext$0() { var node, next, _this = this, t1 = _this._modificationCount, t2 = _this._tree, t3 = t2._modificationCount; if (t1 !== t3) { if (t1 == null) { _this._modificationCount = t3; node = t2.get$_root(); for (t1 = _this._collection$_path; node != null;) { t1.push(node); node = node._collection$_left; } return t1.length !== 0; } throw A.wrapException(A.ConcurrentModificationError$(t2)); } t1 = _this._collection$_path; if (t1.length === 0) return false; if (_this._splayCount !== t2._splayCount) { t3 = B.JSArray_methods.get$last(t1).key; B.JSArray_methods.set$length(t1, 0); t2._splay$1(t3); t3 = t2.get$_root(); t3.toString; t1.push(t3); _this._splayCount = t2._splayCount; } node = B.JSArray_methods.get$last(t1); next = node._collection$_right; if (next != null) { for (; next != null;) { t1.push(next); next = next._collection$_left; } return true; } t1.pop(); while (true) { if (!(t1.length !== 0 && B.JSArray_methods.get$last(t1)._collection$_right == node)) break; node = t1.pop(); } return t1.length !== 0; } }; A._SplayTreeKeyIterable.prototype = { get$length(_) { return this._tree._count; }, get$isEmpty(_) { return this._tree._count === 0; }, get$iterator(_) { var t1 = this._tree, t2 = this.$ti; return new A._SplayTreeKeyIterator(t1, A._setArrayType([], t2._eval$1("JSArray<2>")), t1._splayCount, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_SplayTreeKeyIterator<1,2>")); }, contains$1(_, o) { return this._tree._containsKey$1(o); }, toSet$0(_) { var t1 = this._tree, t2 = this.$ti, set = A.SplayTreeSet$(t1._compare, t1._validKey, t2._precomputed1); set._count = t1._count; set._root = set._copyNode$1$1(t1._root, t2._rest[1]); return set; } }; A._SplayTreeValueIterable.prototype = { get$length(_) { return this._collection$_map._count; }, get$isEmpty(_) { return this._collection$_map._count === 0; }, get$iterator(_) { var t1 = this._collection$_map, t2 = this.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1]); return new A._SplayTreeValueIterator(t1, A._setArrayType([], t2._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), t1._splayCount, t2._eval$1("_SplayTreeValueIterator<1,2>")); } }; A._SplayTreeMapEntryIterable.prototype = { get$length(_) { return this._collection$_map._count; }, get$isEmpty(_) { return this._collection$_map._count === 0; }, get$iterator(_) { var t1 = this._collection$_map, t2 = this.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1]); return new A._SplayTreeMapEntryIterator(t1, A._setArrayType([], t2._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), t1._splayCount, t2._eval$1("_SplayTreeMapEntryIterator<1,2>")); } }; A._SplayTreeKeyIterator.prototype = { _getValue$1(node) { return node.key; } }; A._SplayTreeValueIterator.prototype = { _getValue$1(node) { return node.value; } }; A._SplayTreeMapEntryIterator.prototype = { _getValue$1(node) { return node; } }; A.SplayTreeSet.prototype = { get$iterator(_) { var t1 = this.$ti; return new A._SplayTreeKeyIterator(this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); }, get$length(_) { return this._count; }, get$isEmpty(_) { return this._root == null; }, get$isNotEmpty(_) { return this._root != null; }, get$first(_) { if (this._count === 0) throw A.wrapException(A.IterableElementError_noElement()); return this.get$_collection$_first().key; }, get$last(_) { if (this._count === 0) throw A.wrapException(A.IterableElementError_noElement()); return this.get$_collection$_last().key; }, contains$1(_, element) { return this._validKey.call$1(element) && this._splay$1(this.$ti._precomputed1._as(element)) === 0; }, add$1(_, element) { return this._add$1(0, element); }, _add$1(_, element) { var compare = this._splay$1(element); if (compare === 0) return false; this._addNewRoot$2(new A._SplayTreeSetNode(element, this.$ti._eval$1("_SplayTreeSetNode<1>")), compare); return true; }, remove$1(_, object) { if (!this._validKey.call$1(object)) return false; return this._remove$1(0, this.$ti._precomputed1._as(object)) != null; }, addAll$1(_, elements) { var t1; for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) this._add$1(0, t1.get$current(t1)); }, removeAll$1(elements) { var t1, t2, _i, element; for (t1 = elements.length, t2 = this.$ti._precomputed1, _i = 0; _i < elements.length; elements.length === t1 || (0, A.throwConcurrentModificationError)(elements), ++_i) { element = elements[_i]; if (this._validKey.call$1(element)) this._remove$1(0, t2._as(element)); } }, intersection$1(_, other) { var element, _this = this, t1 = _this.$ti, result = A.SplayTreeSet$(_this._compare, _this._validKey, t1._precomputed1); for (t1 = new A._SplayTreeKeyIterator(_this, A._setArrayType([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), _this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) { element = t1.get$current(t1); if (other.contains$1(0, element)) result._add$1(0, element); } return result; }, _clone$0() { var _this = this, t1 = _this.$ti, set = A.SplayTreeSet$(_this._compare, _this._validKey, t1._precomputed1); set._count = _this._count; set._root = _this._copyNode$1$1(_this._root, t1._eval$1("_SplayTreeSetNode<1>")); return set; }, _copyNode$1$1(node, $Node) { var result; if (node == null) return null; result = new A._SplayTreeSetNode(node.key, this.$ti._eval$1("_SplayTreeSetNode<1>")); new A.SplayTreeSet__copyNode_copyChildren(this, $Node).call$2(node, result); return result; }, clear$0(_) { this._clear$0(0); }, toSet$0(_) { return this._clone$0(); }, toString$0(_) { return A.IterableBase_iterableToFullString(this, "{", "}"); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1, _compare$2(arg0, arg1) { return this._compare.call$2(arg0, arg1); }, _validKey$1(arg0) { return this._validKey.call$1(arg0); }, get$_root() { return this._root; }, get$_compare() { return this._compare; }, set$_root(val) { return this._root = val; } }; A.SplayTreeSet_closure.prototype = { call$1(v) { return this.E._is(v); }, $signature: 125 }; A.SplayTreeSet__copyNode_copyChildren.prototype = { call$2(node, dest) { var left, right, newLeft, t2, newRight, t1 = this.$this.$ti._eval$1("_SplayTreeSetNode<1>"); do { left = node._collection$_left; right = node._collection$_right; if (left != null) { newLeft = new A._SplayTreeSetNode(left.key, t1); dest._collection$_left = newLeft; this.call$2(left, newLeft); } t2 = right != null; if (t2) { newRight = new A._SplayTreeSetNode(right.key, t1); dest._collection$_right = newRight; dest = newRight; node = right; } } while (t2); }, $signature() { return this.$this.$ti._bind$1(this.Node)._eval$1("~(1,_SplayTreeSetNode<2>)"); } }; A._ListBase_Object_ListMixin.prototype = {}; A._SetBase_Object_SetMixin.prototype = {}; A._SplayTreeMap__SplayTree_MapMixin.prototype = {}; A._SplayTreeSet__SplayTree_IterableMixin.prototype = {}; A._SplayTreeSet__SplayTree_IterableMixin_SetMixin.prototype = {}; A._UnmodifiableMapView_MapView__UnmodifiableMapMixin.prototype = {}; A.__SetBase_Object_SetMixin.prototype = {}; A.__UnmodifiableSet__SetBase__UnmodifiableSetMixin.prototype = {}; A._JsonMap.prototype = { $index(_, key) { var result, t1 = this._processed; if (t1 == null) return this._data.$index(0, key); else if (typeof key != "string") return null; else { result = t1[key]; return typeof result == "undefined" ? this._process$1(key) : result; } }, get$length(_) { return this._processed == null ? this._data._length : this._convert$_computeKeys$0().length; }, get$isEmpty(_) { return this.get$length(this) === 0; }, get$isNotEmpty(_) { return this.get$length(this) > 0; }, get$keys(_) { var t1; if (this._processed == null) { t1 = this._data; return new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); } return new A._JsonMapKeyIterable(this); }, get$values(_) { var t1, _this = this; if (_this._processed == null) { t1 = _this._data; return t1.get$values(t1); } return A.MappedIterable_MappedIterable(_this._convert$_computeKeys$0(), new A._JsonMap_values_closure(_this), type$.String, type$.dynamic); }, $indexSet(_, key, value) { var processed, original, _this = this; if (_this._processed == null) _this._data.$indexSet(0, key, value); else if (_this.containsKey$1(0, key)) { processed = _this._processed; processed[key] = value; original = _this._original; if (original == null ? processed != null : original !== processed) original[key] = null; } else _this._upgrade$0().$indexSet(0, key, value); }, containsKey$1(_, key) { if (this._processed == null) return this._data.containsKey$1(0, key); if (typeof key != "string") return false; return Object.prototype.hasOwnProperty.call(this._original, key); }, putIfAbsent$2(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1(_, key) { if (this._processed != null && !this.containsKey$1(0, key)) return null; return this._upgrade$0().remove$1(0, key); }, forEach$1(_, f) { var keys, i, key, value, _this = this; if (_this._processed == null) return _this._data.forEach$1(0, f); keys = _this._convert$_computeKeys$0(); for (i = 0; i < keys.length; ++i) { key = keys[i]; value = _this._processed[key]; if (typeof value == "undefined") { value = A._convertJsonToDartLazy(_this._original[key]); _this._processed[key] = value; } f.call$2(key, value); if (keys !== _this._data) throw A.wrapException(A.ConcurrentModificationError$(_this)); } }, _convert$_computeKeys$0() { var keys = this._data; if (keys == null) keys = this._data = A._setArrayType(Object.keys(this._original), type$.JSArray_String); return keys; }, _upgrade$0() { var result, keys, i, t1, key, _this = this; if (_this._processed == null) return _this._data; result = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); keys = _this._convert$_computeKeys$0(); for (i = 0; t1 = keys.length, i < t1; ++i) { key = keys[i]; result.$indexSet(0, key, _this.$index(0, key)); } if (t1 === 0) keys.push(""); else B.JSArray_methods.set$length(keys, 0); _this._original = _this._processed = null; return _this._data = result; }, _process$1(key) { var result; if (!Object.prototype.hasOwnProperty.call(this._original, key)) return null; result = A._convertJsonToDartLazy(this._original[key]); return this._processed[key] = result; } }; A._JsonMap_values_closure.prototype = { call$1(each) { return this.$this.$index(0, each); }, $signature: 548 }; A._JsonMapKeyIterable.prototype = { get$length(_) { var t1 = this._parent; return t1.get$length(t1); }, elementAt$1(_, index) { var t1 = this._parent; return t1._processed == null ? t1.get$keys(t1).elementAt$1(0, index) : t1._convert$_computeKeys$0()[index]; }, get$iterator(_) { var t1 = this._parent; if (t1._processed == null) { t1 = t1.get$keys(t1); t1 = t1.get$iterator(t1); } else { t1 = t1._convert$_computeKeys$0(); t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); } return t1; }, contains$1(_, key) { return this._parent.containsKey$1(0, key); } }; A.Utf8Decoder__decoder_closure.prototype = { call$0() { var t1, exception; try { t1 = new TextDecoder("utf-8", {fatal: true}); return t1; } catch (exception) { } return null; }, $signature: 9 }; A.Utf8Decoder__decoderNonfatal_closure.prototype = { call$0() { var t1, exception; try { t1 = new TextDecoder("utf-8", {fatal: false}); return t1; } catch (exception) { } return null; }, $signature: 9 }; A.AsciiCodec.prototype = { get$name(_) { return "us-ascii"; }, encode$1(source) { return B.AsciiEncoder_127.convert$1(source); }, decode$1(_, bytes) { var t1 = B.AsciiDecoder_false_127.convert$1(bytes); return t1; }, get$encoder() { return B.AsciiEncoder_127; } }; A._UnicodeSubsetEncoder.prototype = { convert$1(string) { var t1, i, codeUnit, $length = A.RangeError_checkValidRange(0, null, string.length, null, null) - 0, result = new Uint8Array($length); for (t1 = ~this._subsetMask, i = 0; i < $length; ++i) { codeUnit = B.JSString_methods._codeUnitAt$1(string, i); if ((codeUnit & t1) !== 0) throw A.wrapException(A.ArgumentError$value(string, "string", "Contains invalid characters.")); result[i] = codeUnit; } return result; } }; A.AsciiEncoder.prototype = {}; A._UnicodeSubsetDecoder.prototype = { convert$1(bytes) { var t2, i, byte, _null = null, t1 = J.getInterceptor$asx(bytes), end = A.RangeError_checkValidRange(0, _null, t1.get$length(bytes), _null, _null); for (t2 = ~this._subsetMask, i = 0; i < end; ++i) { byte = t1.$index(bytes, i); if ((byte & t2) >>> 0 !== 0) { if (!this._allowInvalid) throw A.wrapException(A.FormatException$("Invalid value in input: " + A.S(byte), _null, _null)); return this._convertInvalid$3(bytes, 0, end); } } return A.String_String$fromCharCodes(bytes, 0, end); }, _convertInvalid$3(bytes, start, end) { var t1, t2, i, t3, value; for (t1 = ~this._subsetMask, t2 = J.getInterceptor$asx(bytes), i = start, t3 = ""; i < end; ++i) { value = t2.$index(bytes, i); t3 += A.Primitives_stringFromCharCode((value & t1) >>> 0 !== 0 ? 65533 : value); } return t3.charCodeAt(0) == 0 ? t3 : t3; } }; A.AsciiDecoder.prototype = {}; A.Base64Codec.prototype = { get$encoder() { return B.C_Base64Encoder; }, normalize$3(_, source, start, end) { var inverseAlphabet, i, sliceStart, buffer, firstPadding, firstPaddingSourceIndex, paddingCount, i0, char, i1, char0, value, t1, t2, endLength, $length, _null = null, _s31_ = "Invalid base64 encoding length "; end = A.RangeError_checkValidRange(start, end, source.length, _null, _null); inverseAlphabet = $.$get$_Base64Decoder__inverseAlphabet(); for (i = start, sliceStart = i, buffer = _null, firstPadding = -1, firstPaddingSourceIndex = -1, paddingCount = 0; i < end; i = i0) { i0 = i + 1; char = B.JSString_methods._codeUnitAt$1(source, i); if (char === 37) { i1 = i0 + 2; if (i1 <= end) { char0 = A.parseHexByte(source, i0); if (char0 === 37) char0 = -1; i0 = i1; } else char0 = -1; } else char0 = char; if (0 <= char0 && char0 <= 127) { value = inverseAlphabet[char0]; if (value >= 0) { char0 = B.JSString_methods.codeUnitAt$1(string$.ABCDEF, value); if (char0 === char) continue; char = char0; } else { if (value === -1) { if (firstPadding < 0) { t1 = buffer == null ? _null : buffer._contents.length; if (t1 == null) t1 = 0; firstPadding = t1 + (i - sliceStart); firstPaddingSourceIndex = i; } ++paddingCount; if (char === 61) continue; } char = char0; } if (value !== -2) { if (buffer == null) { buffer = new A.StringBuffer(""); t1 = buffer; } else t1 = buffer; t2 = t1._contents += B.JSString_methods.substring$2(source, sliceStart, i); t1._contents = t2 + A.Primitives_stringFromCharCode(char); sliceStart = i0; continue; } } throw A.wrapException(A.FormatException$("Invalid base64 data", source, i)); } if (buffer != null) { t1 = buffer._contents += B.JSString_methods.substring$2(source, sliceStart, end); t2 = t1.length; if (firstPadding >= 0) A.Base64Codec__checkPadding(source, firstPaddingSourceIndex, end, firstPadding, paddingCount, t2); else { endLength = B.JSInt_methods.$mod(t2 - 1, 4) + 1; if (endLength === 1) throw A.wrapException(A.FormatException$(_s31_, source, end)); for (; endLength < 4;) { t1 += "="; buffer._contents = t1; ++endLength; } } t1 = buffer._contents; return B.JSString_methods.replaceRange$3(source, start, end, t1.charCodeAt(0) == 0 ? t1 : t1); } $length = end - start; if (firstPadding >= 0) A.Base64Codec__checkPadding(source, firstPaddingSourceIndex, end, firstPadding, paddingCount, $length); else { endLength = B.JSInt_methods.$mod($length, 4); if (endLength === 1) throw A.wrapException(A.FormatException$(_s31_, source, end)); if (endLength > 1) source = B.JSString_methods.replaceRange$3(source, end, end, endLength === 2 ? "==" : "="); } return source; } }; A.Base64Encoder.prototype = { convert$1(input) { var t1 = J.getInterceptor$asx(input); if (t1.get$isEmpty(input)) return ""; t1 = new A._Base64Encoder(string$.ABCDEF).encode$4(input, 0, t1.get$length(input), true); t1.toString; return A.String_String$fromCharCodes(t1, 0, null); } }; A._Base64Encoder.prototype = { createBuffer$1(_, bufferLength) { return new Uint8Array(bufferLength); }, encode$4(bytes, start, end, isLast) { var output, _this = this, byteCount = (_this._convert$_state & 3) + (end - start), fullChunks = B.JSInt_methods._tdivFast$1(byteCount, 3), bufferLength = fullChunks * 4; if (isLast && byteCount - fullChunks * 3 > 0) bufferLength += 4; output = _this.createBuffer$1(0, bufferLength); _this._convert$_state = A._Base64Encoder_encodeChunk(_this._alphabet, bytes, start, end, isLast, output, 0, _this._convert$_state); if (bufferLength > 0) return output; return null; } }; A.Base64Decoder.prototype = { convert$2(input, start) { var decoder, t1, end = A.RangeError_checkValidRange(start, null, input.length, null, null); if (start === end) return new Uint8Array(0); decoder = new A._Base64Decoder(); t1 = decoder.decode$3(0, input, start, end); t1.toString; decoder.close$2(0, input, end); return t1; }, convert$1(input) { return this.convert$2(input, 0); } }; A._Base64Decoder.prototype = { decode$3(_, input, start, end) { var buffer, _this = this, t1 = _this._convert$_state; if (t1 < 0) { _this._convert$_state = A._Base64Decoder__checkPadding(input, start, end, t1); return null; } if (start === end) return new Uint8Array(0); buffer = A._Base64Decoder__allocateBuffer(input, start, end, t1); _this._convert$_state = A._Base64Decoder_decodeChunk(input, start, end, buffer, 0, _this._convert$_state); return buffer; }, close$2(_, input, end) { var t1 = this._convert$_state; if (t1 < -1) throw A.wrapException(A.FormatException$("Missing padding character", input, end)); if (t1 > 0) throw A.wrapException(A.FormatException$("Invalid length, must be multiple of four", input, end)); this._convert$_state = -1; } }; A.ByteConversionSink.prototype = {}; A.ByteConversionSinkBase.prototype = {}; A._ByteCallbackSink.prototype = { add$1(_, chunk) { var v, grown, _this = this, t1 = _this._buffer, t2 = _this._bufferIndex, t3 = J.getInterceptor$asx(chunk); if (t3.get$length(chunk) > t1.length - t2) { t1 = _this._buffer; v = t3.get$length(chunk) + t1.length - 1; v |= B.JSInt_methods._shrOtherPositive$1(v, 1); v |= v >>> 2; v |= v >>> 4; v |= v >>> 8; grown = new Uint8Array((((v | v >>> 16) >>> 0) + 1) * 2); t1 = _this._buffer; B.NativeUint8List_methods.setRange$3(grown, 0, t1.length, t1); _this._buffer = grown; } t1 = _this._buffer; t2 = _this._bufferIndex; B.NativeUint8List_methods.setRange$3(t1, t2, t2 + t3.get$length(chunk), chunk); _this._bufferIndex = _this._bufferIndex + t3.get$length(chunk); }, close$0(_) { this._convert$_callback.call$1(B.NativeUint8List_methods.sublist$2(this._buffer, 0, this._bufferIndex)); } }; A.ChunkedConversionSink.prototype = {}; A.Codec0.prototype = { encode$1(input) { return this.get$encoder().convert$1(input); } }; A.Converter.prototype = {}; A.Encoding.prototype = {}; A.HtmlEscapeMode.prototype = { toString$0(_) { return this._convert$_name; } }; A.HtmlEscape.prototype = { convert$1(text) { var val = this._convert$_convert$3(text, 0, text.length); return val == null ? text : val; }, _convert$_convert$3(text, start, end) { var t1, i, result, replacement, _null = null; for (t1 = this.mode.escapeQuot, i = start, result = _null; i < end; ++i) { switch (text[i]) { case "&": replacement = "&"; break; case '"': replacement = t1 ? """ : _null; break; case "'": replacement = _null; break; case "<": replacement = "<"; break; case ">": replacement = ">"; break; case "/": replacement = _null; break; default: replacement = _null; } if (replacement != null) { if (result == null) result = new A.StringBuffer(""); if (i > start) result._contents += B.JSString_methods.substring$2(text, start, i); result._contents += replacement; start = i + 1; } } if (result == null) return _null; if (end > start) result._contents += J.substring$2$s(text, start, end); t1 = result._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.JsonUnsupportedObjectError.prototype = { toString$0(_) { var safeString = A.Error_safeToString(this.unsupportedObject); return (this.cause != null ? "Converting object to an encodable object failed:" : "Converting object did not return an encodable object:") + " " + safeString; } }; A.JsonCyclicError.prototype = { toString$0(_) { return "Cyclic error in JSON stringify"; } }; A.JsonCodec.prototype = { decode$2$reviver(_, source, reviver) { var t1 = A._parseJson(source, this.get$decoder()._reviver); return t1; }, decode$1($receiver, source) { return this.decode$2$reviver($receiver, source, null); }, encode$2$toEncodable(value, toEncodable) { var t1; if (toEncodable == null) toEncodable = null; if (toEncodable == null) { t1 = this.get$encoder(); return A._JsonStringStringifier_stringify(value, t1._toEncodable, t1.indent); } return A._JsonStringStringifier_stringify(value, toEncodable, null); }, encode$1(value) { return this.encode$2$toEncodable(value, null); }, get$encoder() { return B.JsonEncoder_null_null; }, get$decoder() { return B.JsonDecoder_null; } }; A.JsonEncoder.prototype = { convert$1(object) { var t1, output = new A.StringBuffer(""); A._JsonStringStringifier_printOn(object, output, this._toEncodable, this.indent); t1 = output._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.JsonDecoder.prototype = { convert$1(input) { return A._parseJson(input, this._reviver); } }; A._JsonStringifier.prototype = { writeStringContent$1(s) { var offset, i, charCode, t1, t2, _this = this, $length = s.length; for (offset = 0, i = 0; i < $length; ++i) { charCode = B.JSString_methods._codeUnitAt$1(s, i); if (charCode > 92) { if (charCode >= 55296) { t1 = charCode & 64512; if (t1 === 55296) { t2 = i + 1; t2 = !(t2 < $length && (B.JSString_methods._codeUnitAt$1(s, t2) & 64512) === 56320); } else t2 = false; if (!t2) if (t1 === 56320) { t1 = i - 1; t1 = !(t1 >= 0 && (B.JSString_methods.codeUnitAt$1(s, t1) & 64512) === 55296); } else t1 = false; else t1 = true; if (t1) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); _this.writeCharCode$1(117); _this.writeCharCode$1(100); t1 = charCode >>> 8 & 15; _this.writeCharCode$1(t1 < 10 ? 48 + t1 : 87 + t1); t1 = charCode >>> 4 & 15; _this.writeCharCode$1(t1 < 10 ? 48 + t1 : 87 + t1); t1 = charCode & 15; _this.writeCharCode$1(t1 < 10 ? 48 + t1 : 87 + t1); } } continue; } if (charCode < 32) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); switch (charCode) { case 8: _this.writeCharCode$1(98); break; case 9: _this.writeCharCode$1(116); break; case 10: _this.writeCharCode$1(110); break; case 12: _this.writeCharCode$1(102); break; case 13: _this.writeCharCode$1(114); break; default: _this.writeCharCode$1(117); _this.writeCharCode$1(48); _this.writeCharCode$1(48); t1 = charCode >>> 4 & 15; _this.writeCharCode$1(t1 < 10 ? 48 + t1 : 87 + t1); t1 = charCode & 15; _this.writeCharCode$1(t1 < 10 ? 48 + t1 : 87 + t1); break; } } else if (charCode === 34 || charCode === 92) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); _this.writeCharCode$1(charCode); } } if (offset === 0) _this.writeString$1(s); else if (offset < $length) _this.writeStringSlice$3(s, offset, $length); }, _checkCycle$1(object) { var t1, t2, i, t3; for (t1 = this._seen, t2 = t1.length, i = 0; i < t2; ++i) { t3 = t1[i]; if (object == null ? t3 == null : object === t3) throw A.wrapException(new A.JsonCyclicError(object, null)); } t1.push(object); }, writeObject$1(object) { var customJson, e, t1, exception, _this = this; if (_this.writeJsonValue$1(object)) return; _this._checkCycle$1(object); try { customJson = _this._toEncodable.call$1(object); if (!_this.writeJsonValue$1(customJson)) { t1 = A.JsonUnsupportedObjectError$(object, null, _this.get$_partialResult()); throw A.wrapException(t1); } _this._seen.pop(); } catch (exception) { e = A.unwrapException(exception); t1 = A.JsonUnsupportedObjectError$(object, e, _this.get$_partialResult()); throw A.wrapException(t1); } }, writeJsonValue$1(object) { var success, _this = this; if (typeof object == "number") { if (!isFinite(object)) return false; _this.writeNumber$1(object); return true; } else if (object === true) { _this.writeString$1("true"); return true; } else if (object === false) { _this.writeString$1("false"); return true; } else if (object == null) { _this.writeString$1("null"); return true; } else if (typeof object == "string") { _this.writeString$1('"'); _this.writeStringContent$1(object); _this.writeString$1('"'); return true; } else if (type$.List_dynamic._is(object)) { _this._checkCycle$1(object); _this.writeList$1(object); _this._seen.pop(); return true; } else if (type$.Map_dynamic_dynamic._is(object)) { _this._checkCycle$1(object); success = _this.writeMap$1(object); _this._seen.pop(); return success; } else return false; }, writeList$1(list) { var t1, i, _this = this; _this.writeString$1("["); t1 = J.getInterceptor$asx(list); if (t1.get$isNotEmpty(list)) { _this.writeObject$1(t1.$index(list, 0)); for (i = 1; i < t1.get$length(list); ++i) { _this.writeString$1(","); _this.writeObject$1(t1.$index(list, i)); } } _this.writeString$1("]"); }, writeMap$1(map) { var t2, keyValueList, i, separator, _this = this, _box_0 = {}, t1 = J.getInterceptor$asx(map); if (t1.get$isEmpty(map)) { _this.writeString$1("{}"); return true; } t2 = t1.get$length(map) * 2; keyValueList = A.List_List$filled(t2, null, false, type$.nullable_Object); i = _box_0.i = 0; _box_0.allStringKeys = true; t1.forEach$1(map, new A._JsonStringifier_writeMap_closure(_box_0, keyValueList)); if (!_box_0.allStringKeys) return false; _this.writeString$1("{"); for (separator = '"'; i < t2; i += 2, separator = ',"') { _this.writeString$1(separator); _this.writeStringContent$1(A._asStringS(keyValueList[i])); _this.writeString$1('":'); _this.writeObject$1(keyValueList[i + 1]); } _this.writeString$1("}"); return true; } }; A._JsonStringifier_writeMap_closure.prototype = { call$2(key, value) { var t1, t2, t3, i; if (typeof key != "string") this._box_0.allStringKeys = false; t1 = this.keyValueList; t2 = this._box_0; t3 = t2.i; i = t2.i = t3 + 1; t1[t3] = key; t2.i = i + 1; t1[i] = value; }, $signature: 262 }; A._JsonPrettyPrintMixin.prototype = { writeList$1(list) { var i, _this = this, t1 = J.getInterceptor$asx(list); if (t1.get$isEmpty(list)) _this.writeString$1("[]"); else { _this.writeString$1("[\n"); _this.writeIndentation$1(++_this._JsonPrettyPrintMixin__indentLevel); _this.writeObject$1(t1.$index(list, 0)); for (i = 1; i < t1.get$length(list); ++i) { _this.writeString$1(",\n"); _this.writeIndentation$1(_this._JsonPrettyPrintMixin__indentLevel); _this.writeObject$1(t1.$index(list, i)); } _this.writeString$1("\n"); _this.writeIndentation$1(--_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1("]"); } }, writeMap$1(map) { var t2, keyValueList, i, separator, _this = this, _box_0 = {}, t1 = J.getInterceptor$asx(map); if (t1.get$isEmpty(map)) { _this.writeString$1("{}"); return true; } t2 = t1.get$length(map) * 2; keyValueList = A.List_List$filled(t2, null, false, type$.nullable_Object); i = _box_0.i = 0; _box_0.allStringKeys = true; t1.forEach$1(map, new A._JsonPrettyPrintMixin_writeMap_closure(_box_0, keyValueList)); if (!_box_0.allStringKeys) return false; _this.writeString$1("{\n"); ++_this._JsonPrettyPrintMixin__indentLevel; for (separator = ""; i < t2; i += 2, separator = ",\n") { _this.writeString$1(separator); _this.writeIndentation$1(_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1('"'); _this.writeStringContent$1(A._asStringS(keyValueList[i])); _this.writeString$1('": '); _this.writeObject$1(keyValueList[i + 1]); } _this.writeString$1("\n"); _this.writeIndentation$1(--_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1("}"); return true; } }; A._JsonPrettyPrintMixin_writeMap_closure.prototype = { call$2(key, value) { var t1, t2, t3, i; if (typeof key != "string") this._box_0.allStringKeys = false; t1 = this.keyValueList; t2 = this._box_0; t3 = t2.i; i = t2.i = t3 + 1; t1[t3] = key; t2.i = i + 1; t1[i] = value; }, $signature: 262 }; A._JsonStringStringifier.prototype = { get$_partialResult() { var t1 = this._sink; return t1 instanceof A.StringBuffer ? t1.toString$0(0) : null; }, writeNumber$1(number) { this._sink.write$1(0, B.JSNumber_methods.toString$0(number)); }, writeString$1(string) { this._sink.write$1(0, string); }, writeStringSlice$3(string, start, end) { this._sink.write$1(0, B.JSString_methods.substring$2(string, start, end)); }, writeCharCode$1(charCode) { this._sink.writeCharCode$1(charCode); } }; A._JsonStringStringifierPretty.prototype = { writeIndentation$1(count) { var t1, t2, i; for (t1 = this._indent, t2 = this._sink, i = 0; i < count; ++i) t2.write$1(0, t1); } }; A.Latin1Codec.prototype = { get$name(_) { return "iso-8859-1"; }, encode$1(source) { return B.Latin1Encoder_255.convert$1(source); }, decode$1(_, bytes) { var t1 = B.Latin1Decoder_false_255.convert$1(bytes); return t1; }, get$encoder() { return B.Latin1Encoder_255; } }; A.Latin1Encoder.prototype = {}; A.Latin1Decoder.prototype = {}; A.LineSplitter.prototype = { convert$1(data) { var sliceStart, char, i, char0, lines = A._setArrayType([], type$.JSArray_String), end = data.length; for (sliceStart = 0, char = 0, i = 0; i < end; ++i, char = char0) { char0 = B.JSString_methods._codeUnitAt$1(data, i); if (char0 !== 13) { if (char0 !== 10) continue; if (char === 13) { sliceStart = i + 1; continue; } } lines.push(B.JSString_methods.substring$2(data, sliceStart, i)); sliceStart = i + 1; } if (sliceStart < end) lines.push(B.JSString_methods.substring$2(data, sliceStart, end)); return lines; } }; A.Utf8Codec.prototype = { get$name(_) { return "utf-8"; }, decode$2$allowMalformed(_, codeUnits, allowMalformed) { return (allowMalformed === true ? B.Utf8Decoder_true : B.Utf8Decoder_false).convert$1(codeUnits); }, decode$1($receiver, codeUnits) { return this.decode$2$allowMalformed($receiver, codeUnits, null); }, get$encoder() { return B.C_Utf8Encoder; } }; A.Utf8Encoder.prototype = { convert$1(string) { var t1, encoder, end = A.RangeError_checkValidRange(0, null, string.length, null, null), $length = end - 0; if ($length === 0) return new Uint8Array(0); t1 = new Uint8Array($length * 3); encoder = new A._Utf8Encoder(t1); if (encoder._fillBuffer$3(string, 0, end) !== end) { B.JSString_methods.codeUnitAt$1(string, end - 1); encoder._writeReplacementCharacter$0(); } return B.NativeUint8List_methods.sublist$2(t1, 0, encoder._bufferIndex); } }; A._Utf8Encoder.prototype = { _writeReplacementCharacter$0() { var _this = this, t1 = _this._buffer, t2 = _this._bufferIndex, t3 = _this._bufferIndex = t2 + 1; t1[t2] = 239; t2 = _this._bufferIndex = t3 + 1; t1[t3] = 191; _this._bufferIndex = t2 + 1; t1[t2] = 189; }, _writeSurrogate$2(leadingSurrogate, nextCodeUnit) { var rune, t1, t2, t3, _this = this; if ((nextCodeUnit & 64512) === 56320) { rune = 65536 + ((leadingSurrogate & 1023) << 10) | nextCodeUnit & 1023; t1 = _this._buffer; t2 = _this._bufferIndex; t3 = _this._bufferIndex = t2 + 1; t1[t2] = rune >>> 18 | 240; t2 = _this._bufferIndex = t3 + 1; t1[t3] = rune >>> 12 & 63 | 128; t3 = _this._bufferIndex = t2 + 1; t1[t2] = rune >>> 6 & 63 | 128; _this._bufferIndex = t3 + 1; t1[t3] = rune & 63 | 128; return true; } else { _this._writeReplacementCharacter$0(); return false; } }, _fillBuffer$3(str, start, end) { var t1, t2, t3, stringIndex, codeUnit, t4, stringIndex0, t5, _this = this; if (start !== end && (J.codeUnitAt$1$s(str, end - 1) & 64512) === 55296) --end; for (t1 = _this._buffer, t2 = t1.length, t3 = J.getInterceptor$s(str), stringIndex = start; stringIndex < end; ++stringIndex) { codeUnit = t3._codeUnitAt$1(str, stringIndex); if (codeUnit <= 127) { t4 = _this._bufferIndex; if (t4 >= t2) break; _this._bufferIndex = t4 + 1; t1[t4] = codeUnit; } else { t4 = codeUnit & 64512; if (t4 === 55296) { if (_this._bufferIndex + 4 > t2) break; stringIndex0 = stringIndex + 1; if (_this._writeSurrogate$2(codeUnit, B.JSString_methods._codeUnitAt$1(str, stringIndex0))) stringIndex = stringIndex0; } else if (t4 === 56320) { if (_this._bufferIndex + 3 > t2) break; _this._writeReplacementCharacter$0(); } else if (codeUnit <= 2047) { t4 = _this._bufferIndex; t5 = t4 + 1; if (t5 >= t2) break; _this._bufferIndex = t5; t1[t4] = codeUnit >>> 6 | 192; _this._bufferIndex = t5 + 1; t1[t5] = codeUnit & 63 | 128; } else { t4 = _this._bufferIndex; if (t4 + 2 >= t2) break; t5 = _this._bufferIndex = t4 + 1; t1[t4] = codeUnit >>> 12 | 224; t4 = _this._bufferIndex = t5 + 1; t1[t5] = codeUnit >>> 6 & 63 | 128; _this._bufferIndex = t4 + 1; t1[t4] = codeUnit & 63 | 128; } } } return stringIndex; } }; A.Utf8Decoder.prototype = { convert$1(codeUnits) { var t1 = this._allowMalformed, result = A.Utf8Decoder__convertIntercepted(t1, codeUnits, 0, null); if (result != null) return result; return new A._Utf8Decoder(t1).convertGeneral$4(codeUnits, 0, null, true); } }; A._Utf8Decoder.prototype = { convertGeneral$4(codeUnits, start, maybeEnd, single) { var bytes, errorOffset, result, t1, message, _this = this, end = A.RangeError_checkValidRange(start, maybeEnd, J.get$length$asx(codeUnits), null, null); if (start === end) return ""; if (type$.Uint8List._is(codeUnits)) { bytes = codeUnits; errorOffset = 0; } else { bytes = A._Utf8Decoder__makeUint8List(codeUnits, start, end); end -= start; errorOffset = start; start = 0; } result = _this._convertRecursive$4(bytes, start, end, single); t1 = _this._convert$_state; if ((t1 & 1) !== 0) { message = A._Utf8Decoder_errorDescription(t1); _this._convert$_state = 0; throw A.wrapException(A.FormatException$(message, codeUnits, errorOffset + _this._charOrIndex)); } return result; }, _convertRecursive$4(bytes, start, end, single) { var mid, s1, _this = this; if (end - start > 1000) { mid = B.JSInt_methods._tdivFast$1(start + end, 2); s1 = _this._convertRecursive$4(bytes, start, mid, false); if ((_this._convert$_state & 1) !== 0) return s1; return s1 + _this._convertRecursive$4(bytes, mid, end, single); } return _this.decodeGeneral$4(bytes, start, end, single); }, decodeGeneral$4(bytes, start, end, single) { var t2, type, t3, i0, markEnd, i1, m, _this = this, _65533 = 65533, state = _this._convert$_state, char = _this._charOrIndex, buffer = new A.StringBuffer(""), i = start + 1, t1 = J.getInterceptor$asx(bytes), byte = t1.$index(bytes, start); $label0$0: for (t2 = _this.allowMalformed; true;) { for (; true; i = i0) { type = B.JSString_methods._codeUnitAt$1("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE", byte) & 31; char = state <= 32 ? byte & 61694 >>> type : (byte & 63 | char << 6) >>> 0; state = B.JSString_methods._codeUnitAt$1(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA", state + type); if (state === 0) { buffer._contents += A.Primitives_stringFromCharCode(char); if (i === end) break $label0$0; break; } else if ((state & 1) !== 0) { if (t2) switch (state) { case 69: case 67: buffer._contents += A.Primitives_stringFromCharCode(_65533); break; case 65: buffer._contents += A.Primitives_stringFromCharCode(_65533); --i; break; default: t3 = buffer._contents += A.Primitives_stringFromCharCode(_65533); buffer._contents = t3 + A.Primitives_stringFromCharCode(_65533); break; } else { _this._convert$_state = state; _this._charOrIndex = i - 1; return ""; } state = 0; } if (i === end) break $label0$0; i0 = i + 1; byte = t1.$index(bytes, i); } i0 = i + 1; byte = t1.$index(bytes, i); if (byte < 128) { while (true) { if (!(i0 < end)) { markEnd = end; break; } i1 = i0 + 1; byte = t1.$index(bytes, i0); if (byte >= 128) { markEnd = i1 - 1; i0 = i1; break; } i0 = i1; } if (markEnd - i < 20) for (m = i; m < markEnd; ++m) buffer._contents += A.Primitives_stringFromCharCode(t1.$index(bytes, m)); else buffer._contents += A.String_String$fromCharCodes(bytes, i, markEnd); if (markEnd === end) break $label0$0; i = i0; } else i = i0; } if (single && state > 32) if (t2) buffer._contents += A.Primitives_stringFromCharCode(_65533); else { _this._convert$_state = 77; _this._charOrIndex = end; return ""; } _this._convert$_state = state; _this._charOrIndex = char; t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin.prototype = {}; A._symbolMapToStringMap_closure.prototype = { call$2(key, value) { this.result.$indexSet(0, key._name, value); }, $signature: 662 }; A.NoSuchMethodError_toString_closure.prototype = { call$2(key, value) { var t1 = this.sb, t2 = this._box_0, t3 = t1._contents += t2.comma; t3 += A.S(key._name); t1._contents = t3; t1._contents = t3 + ": "; t1._contents += A.Error_safeToString(value); t2.comma = ", "; }, $signature: 662 }; A._BigIntImpl.prototype = { $negate(_) { var t2, t3, _this = this, t1 = _this._used; if (t1 === 0) return _this; t2 = !_this._isNegative; t3 = _this._digits; t1 = A._BigIntImpl__normalize(t1, t3); return new A._BigIntImpl(t1 === 0 ? false : t2, t3, t1); }, abs$0(_) { return this._isNegative ? this.$negate(0) : this; }, _drShift$1(n) { var resultUsed, digits, resultDigits, i, t1, t2, result, _this = this, used = _this._used; if (used === 0) return $.$get$_BigIntImpl_zero(); resultUsed = used - n; if (resultUsed <= 0) return _this._isNegative ? $.$get$_BigIntImpl__minusOne() : $.$get$_BigIntImpl_zero(); digits = _this._digits; resultDigits = new Uint16Array(resultUsed); for (i = n; i < used; ++i) resultDigits[i - n] = digits[i]; t1 = _this._isNegative; t2 = A._BigIntImpl__normalize(resultUsed, resultDigits); result = new A._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); if (t1) for (i = 0; i < n; ++i) if (digits[i] !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); return result; }, $shr(_, shiftAmount) { var t1, digitShift, bitShift, resultUsed, digits, resultDigits, t2, result, i, _this = this; if (shiftAmount < 0) throw A.wrapException(A.ArgumentError$("shift-amount must be posititve " + A.S(shiftAmount), null)); t1 = _this._used; if (t1 === 0) return _this; digitShift = B.JSInt_methods._tdivFast$1(shiftAmount, 16); bitShift = B.JSInt_methods.$mod(shiftAmount, 16); if (bitShift === 0) return _this._drShift$1(digitShift); resultUsed = t1 - digitShift; if (resultUsed <= 0) return _this._isNegative ? $.$get$_BigIntImpl__minusOne() : $.$get$_BigIntImpl_zero(); digits = _this._digits; resultDigits = new Uint16Array(resultUsed); A._BigIntImpl__rsh(digits, t1, shiftAmount, resultDigits); t1 = _this._isNegative; t2 = A._BigIntImpl__normalize(resultUsed, resultDigits); result = new A._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); if (t1) { if ((digits[digitShift] & B.JSInt_methods.$shl(1, bitShift) - 1) >>> 0 !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); for (i = 0; i < digitShift; ++i) if (digits[i] !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); } return result; }, compareTo$1(_, other) { var result, t1 = this._isNegative; if (t1 === other._isNegative) { result = A._BigIntImpl__compareDigits(this._digits, this._used, other._digits, other._used); return t1 ? 0 - result : result; } return t1 ? -1 : 1; }, _absAddSetSign$2(other, isNegative) { var resultUsed, resultDigits, t1, _this = this, used = _this._used, otherUsed = other._used; if (used < otherUsed) return other._absAddSetSign$2(_this, isNegative); if (used === 0) return $.$get$_BigIntImpl_zero(); if (otherUsed === 0) return _this._isNegative === isNegative ? _this : _this.$negate(0); resultUsed = used + 1; resultDigits = new Uint16Array(resultUsed); A._BigIntImpl__absAdd(_this._digits, used, other._digits, otherUsed, resultDigits); t1 = A._BigIntImpl__normalize(resultUsed, resultDigits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, resultDigits, t1); }, _absSubSetSign$2(other, isNegative) { var otherUsed, resultDigits, t1, _this = this, used = _this._used; if (used === 0) return $.$get$_BigIntImpl_zero(); otherUsed = other._used; if (otherUsed === 0) return _this._isNegative === isNegative ? _this : _this.$negate(0); resultDigits = new Uint16Array(used); A._BigIntImpl__absSub(_this._digits, used, other._digits, otherUsed, resultDigits); t1 = A._BigIntImpl__normalize(used, resultDigits); return new A._BigIntImpl(t1 === 0 ? false : isNegative, resultDigits, t1); }, $add(_, other) { var t2, isNegative, _this = this, t1 = _this._used; if (t1 === 0) return other; t2 = other._used; if (t2 === 0) return _this; isNegative = _this._isNegative; if (isNegative === other._isNegative) return _this._absAddSetSign$2(other, isNegative); if (A._BigIntImpl__compareDigits(_this._digits, t1, other._digits, t2) >= 0) return _this._absSubSetSign$2(other, isNegative); return other._absSubSetSign$2(_this, !isNegative); }, $sub(_, other) { var t2, isNegative, _this = this, t1 = _this._used; if (t1 === 0) return other.$negate(0); t2 = other._used; if (t2 === 0) return _this; isNegative = _this._isNegative; if (isNegative !== other._isNegative) return _this._absAddSetSign$2(other, isNegative); if (A._BigIntImpl__compareDigits(_this._digits, t1, other._digits, t2) >= 0) return _this._absSubSetSign$2(other, isNegative); return other._absSubSetSign$2(_this, !isNegative); }, $mul(_, other) { var resultUsed, digits, otherDigits, resultDigits, i, t1, t2, used = this._used, otherUsed = other._used; if (used === 0 || otherUsed === 0) return $.$get$_BigIntImpl_zero(); resultUsed = used + otherUsed; digits = this._digits; otherDigits = other._digits; resultDigits = new Uint16Array(resultUsed); for (i = 0; i < otherUsed;) { A._BigIntImpl__mulAdd(otherDigits[i], digits, 0, resultDigits, i, used); ++i; } t1 = this._isNegative !== other._isNegative; t2 = A._BigIntImpl__normalize(resultUsed, resultDigits); return new A._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); }, _div$1(other) { var lastQuo_used, quo_digits, t1, quo; if (this._used < other._used) return $.$get$_BigIntImpl_zero(); this._divRem$1(other); lastQuo_used = $._BigIntImpl____lastQuoRemUsed._readField$0() - $._BigIntImpl____lastRemUsed._readField$0(); quo_digits = A._BigIntImpl__cloneDigits($._BigIntImpl____lastQuoRemDigits._readField$0(), $._BigIntImpl____lastRemUsed._readField$0(), $._BigIntImpl____lastQuoRemUsed._readField$0(), lastQuo_used); t1 = A._BigIntImpl__normalize(lastQuo_used, quo_digits); quo = new A._BigIntImpl(false, quo_digits, t1); return this._isNegative !== other._isNegative && t1 > 0 ? quo.$negate(0) : quo; }, _rem$1(other) { var remDigits, t1, rem, _this = this; if (_this._used < other._used) return _this; _this._divRem$1(other); remDigits = A._BigIntImpl__cloneDigits($._BigIntImpl____lastQuoRemDigits._readField$0(), 0, $._BigIntImpl____lastRemUsed._readField$0(), $._BigIntImpl____lastRemUsed._readField$0()); t1 = A._BigIntImpl__normalize($._BigIntImpl____lastRemUsed._readField$0(), remDigits); rem = new A._BigIntImpl(false, remDigits, t1); if ($._BigIntImpl____lastRem_nsh._readField$0() > 0) rem = rem.$shr(0, $._BigIntImpl____lastRem_nsh._readField$0()); return _this._isNegative && rem._used > 0 ? rem.$negate(0) : rem; }, _divRem$1(other) { var yDigits, yUsed, nsh, yDigits0, yUsed0, resultDigits, resultUsed0, topDigitDivisor, j, tmpDigits, tmpUsed, resultUsed1, nyDigits, i, estimatedQuotientDigit, _this = this, resultUsed = _this._used; if (resultUsed === $._BigIntImpl__lastDividendUsed && other._used === $._BigIntImpl__lastDivisorUsed && _this._digits === $._BigIntImpl__lastDividendDigits && other._digits === $._BigIntImpl__lastDivisorDigits) return; yDigits = other._digits; yUsed = other._used; nsh = 16 - B.JSInt_methods.get$bitLength(yDigits[yUsed - 1]); if (nsh > 0) { yDigits0 = new Uint16Array(yUsed + 5); yUsed0 = A._BigIntImpl__lShiftDigits(yDigits, yUsed, nsh, yDigits0); resultDigits = new Uint16Array(resultUsed + 5); resultUsed0 = A._BigIntImpl__lShiftDigits(_this._digits, resultUsed, nsh, resultDigits); } else { resultDigits = A._BigIntImpl__cloneDigits(_this._digits, 0, resultUsed, resultUsed + 2); yUsed0 = yUsed; yDigits0 = yDigits; resultUsed0 = resultUsed; } topDigitDivisor = yDigits0[yUsed0 - 1]; j = resultUsed0 - yUsed0; tmpDigits = new Uint16Array(resultUsed0); tmpUsed = A._BigIntImpl__dlShiftDigits(yDigits0, yUsed0, j, tmpDigits); resultUsed1 = resultUsed0 + 1; if (A._BigIntImpl__compareDigits(resultDigits, resultUsed0, tmpDigits, tmpUsed) >= 0) { resultDigits[resultUsed0] = 1; A._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); } else resultDigits[resultUsed0] = 0; nyDigits = new Uint16Array(yUsed0 + 2); nyDigits[yUsed0] = 1; A._BigIntImpl__absSub(nyDigits, yUsed0 + 1, yDigits0, yUsed0, nyDigits); i = resultUsed0 - 1; for (; j > 0;) { estimatedQuotientDigit = A._BigIntImpl__estimateQuotientDigit(topDigitDivisor, resultDigits, i); --j; A._BigIntImpl__mulAdd(estimatedQuotientDigit, nyDigits, 0, resultDigits, j, yUsed0); if (resultDigits[i] < estimatedQuotientDigit) { tmpUsed = A._BigIntImpl__dlShiftDigits(nyDigits, yUsed0, j, tmpDigits); A._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); for (; --estimatedQuotientDigit, resultDigits[i] < estimatedQuotientDigit;) A._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); } --i; } $._BigIntImpl__lastDividendDigits = _this._digits; $._BigIntImpl__lastDividendUsed = resultUsed; $._BigIntImpl__lastDivisorDigits = yDigits; $._BigIntImpl__lastDivisorUsed = yUsed; $._BigIntImpl____lastQuoRemDigits.__late_helper$_value = resultDigits; $._BigIntImpl____lastQuoRemUsed.__late_helper$_value = resultUsed1; $._BigIntImpl____lastRemUsed.__late_helper$_value = yUsed0; $._BigIntImpl____lastRem_nsh.__late_helper$_value = nsh; }, get$hashCode(_) { var hash, t2, i, combine = new A._BigIntImpl_hashCode_combine(), t1 = this._used; if (t1 === 0) return 6707; hash = this._isNegative ? 83585 : 429689; for (t2 = this._digits, i = 0; i < t1; ++i) hash = combine.call$2(hash, t2[i]); return new A._BigIntImpl_hashCode_finish().call$1(hash); }, $eq(_, other) { if (other == null) return false; return other instanceof A._BigIntImpl && this.compareTo$1(0, other) === 0; }, $tdiv(_, other) { if (other._used === 0) throw A.wrapException(B.C_IntegerDivisionByZeroException); return this._div$1(other); }, remainder$1(_, other) { if (other._used === 0) throw A.wrapException(B.C_IntegerDivisionByZeroException); return this._rem$1(other); }, $div(_, other) { return B.JSNumber_methods.$div(this.toDouble$0(0), other.toDouble$0(0)); }, $lt(_, other) { return this.compareTo$1(0, other) < 0; }, $gt(_, other) { return this.compareTo$1(0, other) > 0; }, $ge(_, other) { return this.compareTo$1(0, other) >= 0; }, get$isNegative(_) { return this._isNegative; }, toInt$0(_) { var i, t1, result; for (i = this._used - 1, t1 = this._digits, result = 0; i >= 0; --i) result = result * 65536 + t1[i]; return this._isNegative ? -result : result; }, toDouble$0(_) { var resultBits, t2, $length, biasedExponent, readBits, i, roundUp, _this = this, _box_0 = {}, t1 = _this._used; if (t1 === 0) return 0; resultBits = new Uint8Array(8); --t1; t2 = _this._digits; $length = 16 * t1 + B.JSInt_methods.get$bitLength(t2[t1]); if ($length > 1024) return _this._isNegative ? -1 / 0 : 1 / 0; if (_this._isNegative) resultBits[7] = 128; biasedExponent = $length - 53 + 1075; resultBits[6] = (biasedExponent & 15) << 4; resultBits[7] = (resultBits[7] | B.JSInt_methods._shrOtherPositive$1(biasedExponent, 4)) >>> 0; _box_0.cachedBitsLength = _box_0.cachedBits = 0; _box_0.digitIndex = t1; readBits = new A._BigIntImpl_toDouble_readBits(_box_0, _this); t1 = readBits.call$1(5); resultBits[6] = (resultBits[6] | t1 & 15) >>> 0; for (i = 5; i >= 0; --i) resultBits[i] = readBits.call$1(8); roundUp = new A._BigIntImpl_toDouble_roundUp(resultBits); if (J.$eq$(readBits.call$1(1), 1)) if ((resultBits[0] & 1) === 1) roundUp.call$0(); else if (_box_0.cachedBits !== 0) roundUp.call$0(); else for (i = _box_0.digitIndex; i >= 0; --i) if (t2[i] !== 0) { roundUp.call$0(); break; } return A.NativeByteData_NativeByteData$view(resultBits.buffer, 0, null).getFloat64(0, true); }, toString$0(_) { var decimalDigitChunks, rest, t2, digits4, t3, _this = this, t1 = _this._used; if (t1 === 0) return "0"; if (t1 === 1) { if (_this._isNegative) return B.JSInt_methods.toString$0(-_this._digits[0]); return B.JSInt_methods.toString$0(_this._digits[0]); } decimalDigitChunks = A._setArrayType([], type$.JSArray_String); t1 = _this._isNegative; rest = t1 ? _this.$negate(0) : _this; for (; rest._used > 1;) { t2 = $.$get$_BigIntImpl__bigInt10000(); if (t2._used === 0) A.throwExpression(B.C_IntegerDivisionByZeroException); digits4 = J.toString$0$(rest._rem$1(t2)); decimalDigitChunks.push(digits4); t3 = digits4.length; if (t3 === 1) decimalDigitChunks.push("000"); if (t3 === 2) decimalDigitChunks.push("00"); if (t3 === 3) decimalDigitChunks.push("0"); rest = rest._div$1(t2); } decimalDigitChunks.push(B.JSInt_methods.toString$0(rest._digits[0])); if (t1) decimalDigitChunks.push("-"); return new A.ReversedListIterable(decimalDigitChunks, type$.ReversedListIterable_String).join$0(0); }, $isComparable: 1 }; A._BigIntImpl_hashCode_combine.prototype = { call$2(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, $signature: 507 }; A._BigIntImpl_hashCode_finish.prototype = { call$1(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, $signature: 121 }; A._BigIntImpl_toDouble_readBits.prototype = { call$1(n) { var t1, t2, t3, t4, nextDigit, nextDigitLength, result; for (t1 = this._box_0, t2 = this.$this, t3 = t2._used - 1, t2 = t2._digits; t4 = t1.cachedBitsLength, t4 < n;) { t4 = t1.digitIndex; if (t4 < 0) { t1.digitIndex = t4 - 1; nextDigit = 0; nextDigitLength = 16; } else { nextDigit = t2[t4]; nextDigitLength = t4 === t3 ? B.JSInt_methods.get$bitLength(nextDigit) : 16; --t1.digitIndex; } t1.cachedBits = B.JSInt_methods.$shl(t1.cachedBits, nextDigitLength) + nextDigit; t1.cachedBitsLength += nextDigitLength; } t2 = t1.cachedBits; t4 -= n; result = B.JSInt_methods.$shr(t2, t4); t1.cachedBits = t2 - B.JSInt_methods.$shl(result, t4); t1.cachedBitsLength = t4; return result; }, $signature: 121 }; A._BigIntImpl_toDouble_roundUp.prototype = { call$0() { var t1, carry, i, sum; for (t1 = this.resultBits, carry = 1, i = 0; i < 8; ++i) { if (carry === 0) break; sum = t1[i] + carry; t1[i] = sum & 255; carry = sum >>> 8; } }, $signature: 0 }; A.Comparable.prototype = {}; A.DateTime.prototype = { get$timeZoneOffset() { if (this.isUtc) return A.Duration$(0, 0, 0, 0, 0, 0); return A.Duration$(0, 0, 0, 0, 0 - A.Primitives_lazyAsJsDate(this).getTimezoneOffset(), 0); }, add$1(_, duration) { return A.DateTime$_withValue(this._value + B.JSInt_methods._tdivFast$1(duration._duration, 1000), this.isUtc); }, subtract$1(duration) { return A.DateTime$_withValue(this._value - B.JSInt_methods._tdivFast$1(duration._duration, 1000), this.isUtc); }, $eq(_, other) { if (other == null) return false; return other instanceof A.DateTime && this._value === other._value && this.isUtc === other.isUtc; }, compareTo$1(_, other) { return B.JSInt_methods.compareTo$1(this._value, other._value); }, DateTime$_withValue$2$isUtc(_value, isUtc) { var t2, t1 = this._value; if (Math.abs(t1) <= 864e13) t2 = false; else t2 = true; if (t2) throw A.wrapException(A.ArgumentError$("DateTime is outside valid range: " + t1, null)); A.checkNotNullable(this.isUtc, "isUtc", type$.bool); }, get$hashCode(_) { var t1 = this._value; return (t1 ^ B.JSInt_methods._shrOtherPositive$1(t1, 30)) & 1073741823; }, toLocal$0() { if (this.isUtc) return A.DateTime$_withValue(this._value, false); return this; }, toUtc$0() { if (this.isUtc) return this; return A.DateTime$_withValue(this._value, true); }, toString$0(_) { var _this = this, y = A.DateTime__fourDigits(A.Primitives_getYear(_this)), m = A.DateTime__twoDigits(A.Primitives_getMonth(_this)), d = A.DateTime__twoDigits(A.Primitives_getDay(_this)), h = A.DateTime__twoDigits(A.Primitives_getHours(_this)), min = A.DateTime__twoDigits(A.Primitives_getMinutes(_this)), sec = A.DateTime__twoDigits(A.Primitives_getSeconds(_this)), ms = A.DateTime__threeDigits(A.Primitives_getMilliseconds(_this)), t1 = y + "-" + m; if (_this.isUtc) return t1 + "-" + d + " " + h + ":" + min + ":" + sec + "." + ms + "Z"; else return t1 + "-" + d + " " + h + ":" + min + ":" + sec + "." + ms; }, toIso8601String$0() { var _this = this, y = A.Primitives_getYear(_this) >= -9999 && A.Primitives_getYear(_this) <= 9999 ? A.DateTime__fourDigits(A.Primitives_getYear(_this)) : A.DateTime__sixDigits(A.Primitives_getYear(_this)), m = A.DateTime__twoDigits(A.Primitives_getMonth(_this)), d = A.DateTime__twoDigits(A.Primitives_getDay(_this)), h = A.DateTime__twoDigits(A.Primitives_getHours(_this)), min = A.DateTime__twoDigits(A.Primitives_getMinutes(_this)), sec = A.DateTime__twoDigits(A.Primitives_getSeconds(_this)), ms = A.DateTime__threeDigits(A.Primitives_getMilliseconds(_this)), t1 = y + "-" + m; if (_this.isUtc) return t1 + "-" + d + "T" + h + ":" + min + ":" + sec + "." + ms + "Z"; else return t1 + "-" + d + "T" + h + ":" + min + ":" + sec + "." + ms; }, $isComparable: 1 }; A.DateTime_parse_parseIntOrZero.prototype = { call$1(matched) { if (matched == null) return 0; return A.int_parse(matched, null); }, $signature: 682 }; A.DateTime_parse_parseMilliAndMicroseconds.prototype = { call$1(matched) { var t1, result, i; if (matched == null) return 0; for (t1 = matched.length, result = 0, i = 0; i < 6; ++i) { result *= 10; if (i < t1) result += B.JSString_methods._codeUnitAt$1(matched, i) ^ 48; } return result; }, $signature: 682 }; A.Duration.prototype = { $add(_, other) { return new A.Duration(this._duration + other._duration); }, $sub(_, other) { return new A.Duration(this._duration - other._duration); }, $mul(_, factor) { return new A.Duration(B.JSNumber_methods.round$0(this._duration * factor)); }, $tdiv(_, quotient) { if (quotient === 0) throw A.wrapException(new A.IntegerDivisionByZeroException()); return new A.Duration(B.JSInt_methods.$tdiv(this._duration, quotient)); }, $lt(_, other) { return this._duration < other._duration; }, $gt(_, other) { return this._duration > other._duration; }, $ge(_, other) { return this._duration >= other._duration; }, $eq(_, other) { if (other == null) return false; return other instanceof A.Duration && this._duration === other._duration; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(this._duration); }, compareTo$1(_, other) { return B.JSInt_methods.compareTo$1(this._duration, other._duration); }, toString$0(_) { var minutes, minutesPadding, seconds, secondsPadding, microseconds = this._duration, hours = B.JSInt_methods._tdivFast$1(microseconds, 3600000000); microseconds %= 3600000000; if (microseconds < 0) microseconds = -microseconds; minutes = B.JSInt_methods._tdivFast$1(microseconds, 60000000); microseconds %= 60000000; minutesPadding = minutes < 10 ? "0" : ""; seconds = B.JSInt_methods._tdivFast$1(microseconds, 1000000); secondsPadding = seconds < 10 ? "0" : ""; return "" + hours + ":" + minutesPadding + minutes + ":" + secondsPadding + seconds + "." + B.JSString_methods.padLeft$2(B.JSInt_methods.toString$0(microseconds % 1000000), 6, "0"); }, get$isNegative(_) { return this._duration < 0; }, abs$0(_) { return new A.Duration(Math.abs(this._duration)); }, $isComparable: 1 }; A._Enum.prototype = {$isEnum: 1}; A.Error.prototype = { get$stackTrace() { return A.getTraceFromException(this.$thrownJsError); } }; A.AssertionError.prototype = { toString$0(_) { var t1 = this.message; if (t1 != null) return "Assertion failed: " + A.Error_safeToString(t1); return "Assertion failed"; }, get$message(receiver) { return this.message; } }; A.TypeError.prototype = {}; A.NullThrownError.prototype = { toString$0(_) { return "Throw of null."; } }; A.ArgumentError.prototype = { get$_errorName() { return "Invalid argument" + (!this._hasValue ? "(s)" : ""); }, get$_errorExplanation() { return ""; }, toString$0(_) { var _this = this, $name = _this.name, nameString = $name == null ? "" : " (" + $name + ")", message = _this.message, messageString = message == null ? "" : ": " + A.S(message), prefix = _this.get$_errorName() + nameString + messageString; if (!_this._hasValue) return prefix; return prefix + _this.get$_errorExplanation() + ": " + A.Error_safeToString(_this.invalidValue); }, get$name(receiver) { return this.name; }, get$message(receiver) { return this.message; } }; A.RangeError.prototype = { get$_errorName() { return "RangeError"; }, get$_errorExplanation() { var explanation, start = this.start, end = this.end; if (start == null) explanation = end != null ? ": Not less than or equal to " + A.S(end) : ""; else if (end == null) explanation = ": Not greater than or equal to " + A.S(start); else if (end > start) explanation = ": Not in inclusive range " + A.S(start) + ".." + A.S(end); else explanation = end < start ? ": Valid value range is empty" : ": Only valid value is " + A.S(start); return explanation; } }; A.IndexError.prototype = { get$_errorName() { return "RangeError"; }, get$_errorExplanation() { if (B.JSInt_methods.$lt(this.invalidValue, 0)) return ": index must not be negative"; var t1 = this.length; if (t1 === 0) return ": no indices are valid"; return ": index should be less than " + A.S(t1); }, get$length(receiver) { return this.length; } }; A.NoSuchMethodError.prototype = { toString$0(_) { var $arguments, t1, _i, t2, t3, argument, receiverText, actualParameters, _this = this, _box_0 = {}, sb = new A.StringBuffer(""); _box_0.comma = ""; $arguments = _this._core$_arguments; for (t1 = $arguments.length, _i = 0, t2 = "", t3 = ""; _i < t1; ++_i, t3 = ", ") { argument = $arguments[_i]; sb._contents = t2 + t3; t2 = sb._contents += A.Error_safeToString(argument); _box_0.comma = ", "; } _this._namedArguments.forEach$1(0, new A.NoSuchMethodError_toString_closure(_box_0, sb)); receiverText = A.Error_safeToString(_this._core$_receiver); actualParameters = sb.toString$0(0); return "NoSuchMethodError: method not found: '" + A.S(_this._memberName._name) + "'\nReceiver: " + receiverText + "\nArguments: [" + actualParameters + "]"; } }; A.UnsupportedError.prototype = { toString$0(_) { return "Unsupported operation: " + this.message; }, get$message(receiver) { return this.message; } }; A.UnimplementedError.prototype = { toString$0(_) { var message = this.message; return message != null ? "UnimplementedError: " + message : "UnimplementedError"; }, get$message(receiver) { return this.message; } }; A.StateError.prototype = { toString$0(_) { return "Bad state: " + this.message; }, get$message(receiver) { return this.message; } }; A.ConcurrentModificationError.prototype = { toString$0(_) { var t1 = this.modifiedObject; if (t1 == null) return "Concurrent modification during iteration."; return "Concurrent modification during iteration: " + A.Error_safeToString(t1) + "."; } }; A.OutOfMemoryError.prototype = { toString$0(_) { return "Out of Memory"; }, get$stackTrace() { return null; }, $isError: 1 }; A.StackOverflowError.prototype = { toString$0(_) { return "Stack Overflow"; }, get$stackTrace() { return null; }, $isError: 1 }; A.CyclicInitializationError.prototype = { toString$0(_) { var variableName = this.variableName; return variableName == null ? "Reading static variable during its initialization" : "Reading static variable '" + variableName + "' during its initialization"; } }; A._Exception.prototype = { toString$0(_) { var message = this.message; if (message == null) return "Exception"; return "Exception: " + A.S(message); }, $isException: 1, get$message(receiver) { return this.message; } }; A.FormatException.prototype = { toString$0(_) { var t1, lineNum, lineStart, previousCharWasCR, i, char, lineEnd, end, start, prefix, postfix, message = this.message, report = message != null && "" !== message ? "FormatException: " + A.S(message) : "FormatException", offset = this.offset, source = this.source; if (typeof source == "string") { if (offset != null) t1 = offset < 0 || offset > source.length; else t1 = false; if (t1) offset = null; if (offset == null) { if (source.length > 78) source = B.JSString_methods.substring$2(source, 0, 75) + "..."; return report + "\n" + source; } for (lineNum = 1, lineStart = 0, previousCharWasCR = false, i = 0; i < offset; ++i) { char = B.JSString_methods._codeUnitAt$1(source, i); if (char === 10) { if (lineStart !== i || !previousCharWasCR) ++lineNum; lineStart = i + 1; previousCharWasCR = false; } else if (char === 13) { ++lineNum; lineStart = i + 1; previousCharWasCR = true; } } report = lineNum > 1 ? report + (" (at line " + lineNum + ", character " + (offset - lineStart + 1) + ")\n") : report + (" (at character " + (offset + 1) + ")\n"); lineEnd = source.length; for (i = offset; i < lineEnd; ++i) { char = B.JSString_methods.codeUnitAt$1(source, i); if (char === 10 || char === 13) { lineEnd = i; break; } } if (lineEnd - lineStart > 78) if (offset - lineStart < 75) { end = lineStart + 75; start = lineStart; prefix = ""; postfix = "..."; } else { if (lineEnd - offset < 75) { start = lineEnd - 75; end = lineEnd; postfix = ""; } else { start = offset - 36; end = offset + 36; postfix = "..."; } prefix = "..."; } else { end = lineEnd; start = lineStart; prefix = ""; postfix = ""; } return report + prefix + B.JSString_methods.substring$2(source, start, end) + postfix + "\n" + B.JSString_methods.$mul(" ", offset - start + prefix.length) + "^\n"; } else return offset != null ? report + (" (at offset " + A.S(offset) + ")") : report; }, $isException: 1, get$message(receiver) { return this.message; }, get$source(receiver) { return this.source; }, get$offset(receiver) { return this.offset; } }; A.IntegerDivisionByZeroException.prototype = { get$message(_) { return "Division resulted in non-finite value"; }, get$stackTrace() { return null; }, toString$0(_) { return "IntegerDivisionByZeroException"; }, $isError: 1, $isException: 1 }; A.Iterable.prototype = { cast$1$0(_, $R) { return A.CastIterable_CastIterable(this, A._instanceType(this)._eval$1("Iterable.E"), $R); }, followedBy$1(_, other) { var _this = this, t1 = A._instanceType(_this); if (t1._eval$1("EfficientLengthIterable")._is(_this)) return A.FollowedByIterable_FollowedByIterable$firstEfficient(_this, other, t1._eval$1("Iterable.E")); return new A.FollowedByIterable(_this, other, t1._eval$1("FollowedByIterable")); }, map$1$1(_, toElement, $T) { return A.MappedIterable_MappedIterable(this, toElement, A._instanceType(this)._eval$1("Iterable.E"), $T); }, map$1($receiver, toElement) { return this.map$1$1($receiver, toElement, type$.dynamic); }, where$1(_, test) { return new A.WhereIterable(this, test, A._instanceType(this)._eval$1("WhereIterable")); }, contains$1(_, element) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (J.$eq$(t1.get$current(t1), element)) return true; return false; }, forEach$1(_, action) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) action.call$1(t1.get$current(t1)); }, reduce$1(_, combine) { var value, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); value = iterator.get$current(iterator); for (; iterator.moveNext$0();) value = combine.call$2(value, iterator.get$current(iterator)); return value; }, fold$1$2(_, initialValue, combine) { var t1, value; for (t1 = this.get$iterator(this), value = initialValue; t1.moveNext$0();) value = combine.call$2(value, t1.get$current(t1)); return value; }, join$1(_, separator) { var t1, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) return ""; if (separator === "") { t1 = ""; do t1 += A.S(J.toString$0$(iterator.get$current(iterator))); while (iterator.moveNext$0()); } else { t1 = A.S(J.toString$0$(iterator.get$current(iterator))); for (; iterator.moveNext$0();) t1 = t1 + separator + A.S(J.toString$0$(iterator.get$current(iterator))); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, join$0($receiver) { return this.join$1($receiver, ""); }, any$1(_, test) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (test.call$1(t1.get$current(t1))) return true; return false; }, toList$1$growable(_, growable) { return A.List_List$of(this, growable, A._instanceType(this)._eval$1("Iterable.E")); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return A.LinkedHashSet_LinkedHashSet$of(this, A._instanceType(this)._eval$1("Iterable.E")); }, get$length(_) { var count, it = this.get$iterator(this); for (count = 0; it.moveNext$0();) ++count; return count; }, get$isEmpty(_) { return !this.get$iterator(this).moveNext$0(); }, get$isNotEmpty(_) { return !this.get$isEmpty(this); }, take$1(_, count) { return A.TakeIterable_TakeIterable(this, count, A._instanceType(this)._eval$1("Iterable.E")); }, skip$1(_, count) { return A.SkipIterable_SkipIterable(this, count, A._instanceType(this)._eval$1("Iterable.E")); }, get$first(_) { var it = this.get$iterator(this); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); return it.get$current(it); }, get$last(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, get$single(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw A.wrapException(A.IterableElementError_noElement()); result = it.get$current(it); if (it.moveNext$0()) throw A.wrapException(A.IterableElementError_tooMany()); return result; }, firstWhere$2$orElse(_, test, orElse) { var t1, element; for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) return element; } if (orElse != null) return orElse.call$0(); throw A.wrapException(A.IterableElementError_noElement()); }, firstWhere$1($receiver, test) { return this.firstWhere$2$orElse($receiver, test, null); }, elementAt$1(_, index) { var t1, elementIndex, element; A.RangeError_checkNotNegative(index, "index"); for (t1 = this.get$iterator(this), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw A.wrapException(A.IndexError$(index, this, "index", null, elementIndex)); }, toString$0(_) { return A.IterableBase_iterableToShortString(this, "(", ")"); } }; A._GeneratorIterable.prototype = { elementAt$1(_, index) { A.RangeError_checkValidIndex(index, this, null, null); return this._generator.call$1(index); }, get$length(receiver) { return this.length; } }; A.BidirectionalIterator.prototype = {}; A.Iterator.prototype = {}; A.MapEntry.prototype = { toString$0(_) { return "MapEntry(" + A.S(this.key) + ": " + A.S(this.value) + ")"; }, get$key(receiver) { return this.key; }, get$value(receiver) { return this.value; } }; A.Null.prototype = { get$hashCode(_) { return A.Object.prototype.get$hashCode.call(this, this); }, toString$0(_) { return "null"; } }; A.Object.prototype = {$isObject: 1, $eq(_, other) { return this === other; }, get$hashCode(_) { return A.Primitives_objectHashCode(this); }, toString$0(_) { return "Instance of '" + A.S(A.Primitives_objectTypeName(this)) + "'"; }, noSuchMethod$1(_, invocation) { throw A.wrapException(A.NoSuchMethodError$(this, invocation.get$memberName(), invocation.get$positionalArguments(), invocation.get$namedArguments())); }, get$runtimeType(_) { return A.getRuntimeType(this); }, toString() { return this.toString$0(this); } }; A._StringStackTrace.prototype = { toString$0(_) { return this._stackTrace; }, $isStackTrace: 1 }; A.Stopwatch.prototype = { get$elapsedMicroseconds() { var ticks = this.get$elapsedTicks(); if ($.$get$Stopwatch__frequency() === 1000000) return ticks; return ticks * 1000; }, get$elapsedMilliseconds() { var ticks = this.get$elapsedTicks(); if ($.$get$Stopwatch__frequency() === 1000) return ticks; return B.JSInt_methods._tdivFast$1(ticks, 1000); }, start$0(_) { var _this = this, $stop = _this._stop; if ($stop != null) { _this._core$_start = _this._core$_start + ($.Primitives_timerTicks.call$0() - $stop); _this._stop = null; } }, reset$0(_) { var t1 = this._stop; this._core$_start = t1 == null ? $.Primitives_timerTicks.call$0() : t1; }, get$elapsedTicks() { var t1 = this._stop; if (t1 == null) t1 = $.Primitives_timerTicks.call$0(); return t1 - this._core$_start; } }; A.Runes.prototype = { get$iterator(_) { return new A.RuneIterator(this.string); }, get$last(_) { var code, previousCode, t1 = this.string, t2 = t1.length; if (t2 === 0) throw A.wrapException(A.StateError$("No elements.")); code = B.JSString_methods.codeUnitAt$1(t1, t2 - 1); if ((code & 64512) === 56320 && t2 > 1) { previousCode = B.JSString_methods.codeUnitAt$1(t1, t2 - 2); if ((previousCode & 64512) === 55296) return A._combineSurrogatePair(previousCode, code); } return code; } }; A.RuneIterator.prototype = { get$current(_) { return this._currentCodePoint; }, moveNext$0() { var codeUnit, nextPosition, nextCodeUnit, _this = this, t1 = _this._core$_position = _this._nextPosition, t2 = _this.string, t3 = t2.length; if (t1 === t3) { _this._currentCodePoint = -1; return false; } codeUnit = B.JSString_methods._codeUnitAt$1(t2, t1); nextPosition = t1 + 1; if ((codeUnit & 64512) === 55296 && nextPosition < t3) { nextCodeUnit = B.JSString_methods._codeUnitAt$1(t2, nextPosition); if ((nextCodeUnit & 64512) === 56320) { _this._nextPosition = nextPosition + 1; _this._currentCodePoint = A._combineSurrogatePair(codeUnit, nextCodeUnit); return true; } } _this._nextPosition = nextPosition; _this._currentCodePoint = codeUnit; return true; } }; A.StringBuffer.prototype = { get$length(_) { return this._contents.length; }, write$1(_, obj) { this._contents += A.S(obj); }, writeCharCode$1(charCode) { this._contents += A.Primitives_stringFromCharCode(charCode); }, writeln$1(obj) { this._contents += A.S(obj) + "\n"; }, writeln$0() { return this.writeln$1(""); }, toString$0(_) { var t1 = this._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, get$isEmpty(_) { return this._contents.length === 0; } }; A.Uri_splitQueryString_closure.prototype = { call$2(map, element) { var key, value, t1, index = J.indexOf$1$asx(element, "="); if (index === -1) { if (element !== "") J.$indexSet$ax(map, A._Uri__uriDecode(element, 0, element.length, this.encoding, true), ""); } else if (index !== 0) { key = B.JSString_methods.substring$2(element, 0, index); value = B.JSString_methods.substring$1(element, index + 1); t1 = this.encoding; J.$indexSet$ax(map, A._Uri__uriDecode(key, 0, key.length, t1, true), A._Uri__uriDecode(value, 0, value.length, t1, true)); } return map; }, $signature: 3463 }; A.Uri__parseIPv4Address_error.prototype = { call$2(msg, position) { throw A.wrapException(A.FormatException$("Illegal IPv4 address, " + msg, this.host, position)); }, $signature: 3439 }; A.Uri_parseIPv6Address_error.prototype = { call$2(msg, position) { throw A.wrapException(A.FormatException$("Illegal IPv6 address, " + msg, this.host, position)); }, $signature: 3413 }; A.Uri_parseIPv6Address_parseHex.prototype = { call$2(start, end) { var value; if (end - start > 4) this.error.call$2("an IPv6 part can only contain a maximum of 4 hex digits", start); value = A.int_parse(B.JSString_methods.substring$2(this.host, start, end), 16); if (value < 0 || value > 65535) this.error.call$2("each part must be in the range of `0x0..0xFFFF`", start); return value; }, $signature: 507 }; A._Uri.prototype = { get$_text() { var t1, t2, t3, t4, _this = this, value = _this.___Uri__text; if (value === $) { t1 = _this.scheme; t2 = t1.length !== 0 ? t1 + ":" : ""; t3 = _this._host; t4 = t3 == null; if (!t4 || t1 === "file") { t1 = t2 + "//"; t2 = _this._userInfo; if (t2.length !== 0) t1 = t1 + t2 + "@"; if (!t4) t1 += t3; t2 = _this._port; if (t2 != null) t1 = t1 + ":" + A.S(t2); } else t1 = t2; t1 += _this.path; t2 = _this._query; if (t2 != null) t1 = t1 + "?" + t2; t2 = _this._fragment; if (t2 != null) t1 = t1 + "#" + t2; A._lateInitializeOnceCheck(value, "_text"); value = _this.___Uri__text = t1.charCodeAt(0) == 0 ? t1 : t1; } return value; }, get$pathSegments() { var pathToSplit, result, _this = this, value = _this.___Uri_pathSegments; if (value === $) { pathToSplit = _this.path; if (pathToSplit.length !== 0 && B.JSString_methods._codeUnitAt$1(pathToSplit, 0) === 47) pathToSplit = B.JSString_methods.substring$1(pathToSplit, 1); result = pathToSplit.length === 0 ? B.List_empty0 : A.List_List$unmodifiable(new A.MappedListIterable(A._setArrayType(pathToSplit.split("/"), type$.JSArray_String), A.core_Uri_decodeComponent$closure(), type$.MappedListIterable_String_dynamic), type$.String); A._lateInitializeOnceCheck(_this.___Uri_pathSegments, "pathSegments"); value = _this.___Uri_pathSegments = result; } return value; }, get$hashCode(_) { var result, _this = this, value = _this.___Uri_hashCode; if (value === $) { result = B.JSString_methods.get$hashCode(_this.get$_text()); A._lateInitializeOnceCheck(_this.___Uri_hashCode, "hashCode"); _this.___Uri_hashCode = result; value = result; } return value; }, get$queryParameters() { var t1, _this = this, value = _this.___Uri_queryParameters; if (value === $) { t1 = _this._query; t1 = A.Uri_splitQueryString(t1 == null ? "" : t1); A._lateInitializeOnceCheck(_this.___Uri_queryParameters, "queryParameters"); value = _this.___Uri_queryParameters = new A.UnmodifiableMapView(t1, type$.UnmodifiableMapView_String_String); } return value; }, get$userInfo() { return this._userInfo; }, get$host(_) { var host = this._host; if (host == null) return ""; if (B.JSString_methods.startsWith$1(host, "[")) return B.JSString_methods.substring$2(host, 1, host.length - 1); return host; }, get$port(_) { var t1 = this._port; return t1 == null ? A._Uri__defaultPort(this.scheme) : t1; }, get$query(_) { var t1 = this._query; return t1 == null ? "" : t1; }, get$fragment() { var t1 = this._fragment; return t1 == null ? "" : t1; }, isScheme$1(scheme) { var thisScheme = this.scheme; if (scheme.length !== thisScheme.length) return false; return A._caseInsensitiveCompareStart(scheme, thisScheme, 0) >= 0; }, _mergePaths$2(base, reference) { var backCount, refStart, baseEnd, newEnd, delta, t1; for (backCount = 0, refStart = 0; B.JSString_methods.startsWith$2(reference, "../", refStart);) { refStart += 3; ++backCount; } baseEnd = B.JSString_methods.lastIndexOf$1(base, "/"); while (true) { if (!(baseEnd > 0 && backCount > 0)) break; newEnd = B.JSString_methods.lastIndexOf$2(base, "/", baseEnd - 1); if (newEnd < 0) break; delta = baseEnd - newEnd; t1 = delta !== 2; if (!t1 || delta === 3) if (B.JSString_methods.codeUnitAt$1(base, newEnd + 1) === 46) t1 = !t1 || B.JSString_methods.codeUnitAt$1(base, newEnd + 2) === 46; else t1 = false; else t1 = false; if (t1) break; --backCount; baseEnd = newEnd; } return B.JSString_methods.replaceRange$3(base, baseEnd + 1, null, B.JSString_methods.substring$1(reference, refStart - 3 * backCount)); }, resolve$1(_, reference) { return this.resolveUri$1(A.Uri_parse(reference, 0, null)); }, resolveUri$1(reference) { var targetScheme, targetUserInfo, targetHost, targetPort, targetPath, targetQuery, packageNameEnd, packageName, mergedPath, t1, _this = this, _null = null; if (reference.get$scheme().length !== 0) { targetScheme = reference.get$scheme(); if (reference.get$hasAuthority()) { targetUserInfo = reference.get$userInfo(); targetHost = reference.get$host(reference); targetPort = reference.get$hasPort() ? reference.get$port(reference) : _null; } else { targetPort = _null; targetHost = targetPort; targetUserInfo = ""; } targetPath = A._Uri__removeDotSegments(reference.get$path(reference)); targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } else { targetScheme = _this.scheme; if (reference.get$hasAuthority()) { targetUserInfo = reference.get$userInfo(); targetHost = reference.get$host(reference); targetPort = A._Uri__makePort(reference.get$hasPort() ? reference.get$port(reference) : _null, targetScheme); targetPath = A._Uri__removeDotSegments(reference.get$path(reference)); targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } else { targetUserInfo = _this._userInfo; targetHost = _this._host; targetPort = _this._port; targetPath = _this.path; if (reference.get$path(reference) === "") targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _this._query; else { packageNameEnd = A._Uri__packageNameEnd(_this, targetPath); if (packageNameEnd > 0) { packageName = B.JSString_methods.substring$2(targetPath, 0, packageNameEnd); targetPath = reference.get$hasAbsolutePath() ? packageName + A._Uri__removeDotSegments(reference.get$path(reference)) : packageName + A._Uri__removeDotSegments(_this._mergePaths$2(B.JSString_methods.substring$1(targetPath, packageName.length), reference.get$path(reference))); } else if (reference.get$hasAbsolutePath()) targetPath = A._Uri__removeDotSegments(reference.get$path(reference)); else if (targetPath.length === 0) if (targetHost == null) targetPath = targetScheme.length === 0 ? reference.get$path(reference) : A._Uri__removeDotSegments(reference.get$path(reference)); else targetPath = A._Uri__removeDotSegments("/" + reference.get$path(reference)); else { mergedPath = _this._mergePaths$2(targetPath, reference.get$path(reference)); t1 = targetScheme.length === 0; if (!t1 || targetHost != null || B.JSString_methods.startsWith$1(targetPath, "/")) targetPath = A._Uri__removeDotSegments(mergedPath); else targetPath = A._Uri__normalizeRelativePath(mergedPath, !t1 || targetHost != null); } targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } } } return A._Uri$_internal(targetScheme, targetUserInfo, targetHost, targetPort, targetPath, targetQuery, reference.get$hasFragment() ? reference.get$fragment() : _null); }, get$hasScheme() { return this.scheme.length !== 0; }, get$hasAuthority() { return this._host != null; }, get$hasPort() { return this._port != null; }, get$hasQuery() { return this._query != null; }, get$hasFragment() { return this._fragment != null; }, get$hasAbsolutePath() { return B.JSString_methods.startsWith$1(this.path, "/"); }, toFilePath$0() { var pathSegments, _this = this, t1 = _this.scheme; if (t1 !== "" && t1 !== "file") throw A.wrapException(A.UnsupportedError$("Cannot extract a file path from a " + t1 + " URI")); t1 = _this._query; if ((t1 == null ? "" : t1) !== "") throw A.wrapException(A.UnsupportedError$(string$.Cannotefq)); t1 = _this._fragment; if ((t1 == null ? "" : t1) !== "") throw A.wrapException(A.UnsupportedError$(string$.Cannoteff)); t1 = $.$get$_Uri__isWindowsCached(); if (t1) t1 = A._Uri__toWindowsFilePath(_this); else { if (_this._host != null && _this.get$host(_this) !== "") A.throwExpression(A.UnsupportedError$(string$.Cannoten)); pathSegments = _this.get$pathSegments(); A._Uri__checkNonWindowsPathReservedCharacters(pathSegments, false); t1 = A.StringBuffer__writeAll(B.JSString_methods.startsWith$1(_this.path, "/") ? "/" : "", pathSegments, "/"); t1 = t1.charCodeAt(0) == 0 ? t1 : t1; } return t1; }, toString$0(_) { return this.get$_text(); }, $eq(_, other) { var t1, t2, _this = this; if (other == null) return false; if (_this === other) return true; if (type$.Uri._is(other)) if (_this.scheme === other.get$scheme()) if (_this._host != null === other.get$hasAuthority()) if (_this._userInfo === other.get$userInfo()) if (_this.get$host(_this) === other.get$host(other)) if (_this.get$port(_this) === other.get$port(other)) if (_this.path === other.get$path(other)) { t1 = _this._query; t2 = t1 == null; if (!t2 === other.get$hasQuery()) { if (t2) t1 = ""; if (t1 === other.get$query(other)) { t1 = _this._fragment; t2 = t1 == null; if (!t2 === other.get$hasFragment()) { if (t2) t1 = ""; t1 = t1 === other.get$fragment(); } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, $isUri: 1, get$scheme() { return this.scheme; }, get$path(receiver) { return this.path; } }; A._Uri__makePath_closure.prototype = { call$1(s) { return A._Uri__uriEncode(B.List_qg40, s, B.C_Utf8Codec, false); }, $signature: 108 }; A._Uri__makeQuery_writeParameter.prototype = { call$2(key, value) { var t1 = this.result, t2 = this._box_0; t1._contents += t2.separator; t2.separator = "&"; t2 = t1._contents += A.S(A._Uri__uriEncode(B.List_nxB, key, B.C_Utf8Codec, true)); if (value != null && value.length !== 0) { t1._contents = t2 + "="; t1._contents += A.S(A._Uri__uriEncode(B.List_nxB, value, B.C_Utf8Codec, true)); } }, $signature: 661 }; A._Uri__makeQuery_closure.prototype = { call$2(key, value) { var t1, t2; if (value == null || typeof value == "string") this.writeParameter.call$2(key, value); else for (t1 = J.get$iterator$ax(value), t2 = this.writeParameter; t1.moveNext$0();) t2.call$2(key, t1.get$current(t1)); }, $signature: 142 }; A.UriData.prototype = { get$uri() { var t2, queryIndex, end, query, _this = this, _null = null, t1 = _this._uriCache; if (t1 == null) { t1 = _this._text; t2 = _this._separatorIndices[0] + 1; queryIndex = B.JSString_methods.indexOf$2(t1, "?", t2); end = t1.length; if (queryIndex >= 0) { query = A._Uri__normalizeOrSubstring(t1, queryIndex + 1, end, B.List_CVk, false); end = queryIndex; } else query = _null; t1 = _this._uriCache = new A._DataUri("data", "", _null, _null, A._Uri__normalizeOrSubstring(t1, t2, end, B.List_qg4, false), query, _null); } return t1; }, toString$0(_) { var t1 = this._text; return this._separatorIndices[0] === -1 ? "data:" + t1 : t1; } }; A._createTables_build.prototype = { call$2(state, defaultTransition) { var t1 = this.tables[state]; B.NativeUint8List_methods.fillRange$3(t1, 0, 96, defaultTransition); return t1; }, $signature: 3394 }; A._createTables_setChars.prototype = { call$3(target, chars, transition) { var t1, i; for (t1 = chars.length, i = 0; i < t1; ++i) target[B.JSString_methods._codeUnitAt$1(chars, i) ^ 96] = transition; }, $signature: 766 }; A._createTables_setRange.prototype = { call$3(target, range, transition) { var i, n; for (i = B.JSString_methods._codeUnitAt$1(range, 0), n = B.JSString_methods._codeUnitAt$1(range, 1); i <= n; ++i) target[(i ^ 96) >>> 0] = transition; }, $signature: 766 }; A._SimpleUri.prototype = { get$hasScheme() { return this._schemeEnd > 0; }, get$hasAuthority() { return this._hostStart > 0; }, get$hasPort() { return this._hostStart > 0 && this._portStart + 1 < this._pathStart; }, get$hasQuery() { return this._queryStart < this._fragmentStart; }, get$hasFragment() { return this._fragmentStart < this._uri.length; }, get$hasAbsolutePath() { return B.JSString_methods.startsWith$2(this._uri, "/", this._pathStart); }, get$scheme() { var t1 = this._schemeCache; return t1 == null ? this._schemeCache = this._computeScheme$0() : t1; }, _computeScheme$0() { var t2, _this = this, t1 = _this._schemeEnd; if (t1 <= 0) return ""; t2 = t1 === 4; if (t2 && B.JSString_methods.startsWith$1(_this._uri, "http")) return "http"; if (t1 === 5 && B.JSString_methods.startsWith$1(_this._uri, "https")) return "https"; if (t2 && B.JSString_methods.startsWith$1(_this._uri, "file")) return "file"; if (t1 === 7 && B.JSString_methods.startsWith$1(_this._uri, "package")) return "package"; return B.JSString_methods.substring$2(_this._uri, 0, t1); }, get$userInfo() { var t1 = this._hostStart, t2 = this._schemeEnd + 3; return t1 > t2 ? B.JSString_methods.substring$2(this._uri, t2, t1 - 1) : ""; }, get$host(_) { var t1 = this._hostStart; return t1 > 0 ? B.JSString_methods.substring$2(this._uri, t1, this._portStart) : ""; }, get$port(_) { var t1, _this = this; if (_this.get$hasPort()) return A.int_parse(B.JSString_methods.substring$2(_this._uri, _this._portStart + 1, _this._pathStart), null); t1 = _this._schemeEnd; if (t1 === 4 && B.JSString_methods.startsWith$1(_this._uri, "http")) return 80; if (t1 === 5 && B.JSString_methods.startsWith$1(_this._uri, "https")) return 443; return 0; }, get$path(_) { return B.JSString_methods.substring$2(this._uri, this._pathStart, this._queryStart); }, get$query(_) { var t1 = this._queryStart, t2 = this._fragmentStart; return t1 < t2 ? B.JSString_methods.substring$2(this._uri, t1 + 1, t2) : ""; }, get$fragment() { var t1 = this._fragmentStart, t2 = this._uri; return t1 < t2.length ? B.JSString_methods.substring$1(t2, t1 + 1) : ""; }, get$pathSegments() { var parts, i, start = this._pathStart, end = this._queryStart, t1 = this._uri; if (B.JSString_methods.startsWith$2(t1, "/", start)) ++start; if (start === end) return B.List_empty0; parts = A._setArrayType([], type$.JSArray_String); for (i = start; i < end; ++i) if (B.JSString_methods.codeUnitAt$1(t1, i) === 47) { parts.push(B.JSString_methods.substring$2(t1, start, i)); start = i + 1; } parts.push(B.JSString_methods.substring$2(t1, start, end)); return A.List_List$unmodifiable(parts, type$.String); }, get$queryParameters() { var _this = this; if (_this._queryStart >= _this._fragmentStart) return B.Map_empty6; return new A.UnmodifiableMapView(A.Uri_splitQueryString(_this.get$query(_this)), type$.UnmodifiableMapView_String_String); }, _isPort$1(port) { var portDigitStart = this._portStart + 1; return portDigitStart + port.length === this._pathStart && B.JSString_methods.startsWith$2(this._uri, port, portDigitStart); }, removeFragment$0() { var _this = this, t1 = _this._fragmentStart, t2 = _this._uri; if (t1 >= t2.length) return _this; return new A._SimpleUri(B.JSString_methods.substring$2(t2, 0, t1), _this._schemeEnd, _this._hostStart, _this._portStart, _this._pathStart, _this._queryStart, t1, _this._schemeCache); }, resolve$1(_, reference) { return this.resolveUri$1(A.Uri_parse(reference, 0, null)); }, resolveUri$1(reference) { if (reference instanceof A._SimpleUri) return this._simpleMerge$2(this, reference); return this._toNonSimple$0().resolveUri$1(reference); }, _simpleMerge$2(base, ref) { var t2, t3, t4, isSimple, delta, refStart, basePathStart, packageNameEnd, basePathStart0, baseStart, baseEnd, baseUri, baseStart0, backCount, refStart0, insert, t1 = ref._schemeEnd; if (t1 > 0) return ref; t2 = ref._hostStart; if (t2 > 0) { t3 = base._schemeEnd; if (t3 <= 0) return ref; t4 = t3 === 4; if (t4 && B.JSString_methods.startsWith$1(base._uri, "file")) isSimple = ref._pathStart !== ref._queryStart; else if (t4 && B.JSString_methods.startsWith$1(base._uri, "http")) isSimple = !ref._isPort$1("80"); else isSimple = !(t3 === 5 && B.JSString_methods.startsWith$1(base._uri, "https")) || !ref._isPort$1("443"); if (isSimple) { delta = t3 + 1; return new A._SimpleUri(B.JSString_methods.substring$2(base._uri, 0, delta) + B.JSString_methods.substring$1(ref._uri, t1 + 1), t3, t2 + delta, ref._portStart + delta, ref._pathStart + delta, ref._queryStart + delta, ref._fragmentStart + delta, base._schemeCache); } else return this._toNonSimple$0().resolveUri$1(ref); } refStart = ref._pathStart; t1 = ref._queryStart; if (refStart === t1) { t2 = ref._fragmentStart; if (t1 < t2) { t3 = base._queryStart; delta = t3 - t1; return new A._SimpleUri(B.JSString_methods.substring$2(base._uri, 0, t3) + B.JSString_methods.substring$1(ref._uri, t1), base._schemeEnd, base._hostStart, base._portStart, base._pathStart, t1 + delta, t2 + delta, base._schemeCache); } t1 = ref._uri; if (t2 < t1.length) { t3 = base._fragmentStart; return new A._SimpleUri(B.JSString_methods.substring$2(base._uri, 0, t3) + B.JSString_methods.substring$1(t1, t2), base._schemeEnd, base._hostStart, base._portStart, base._pathStart, base._queryStart, t2 + (t3 - t2), base._schemeCache); } return base.removeFragment$0(); } t2 = ref._uri; if (B.JSString_methods.startsWith$2(t2, "/", refStart)) { basePathStart = base._pathStart; packageNameEnd = A._SimpleUri__packageNameEnd(this); basePathStart0 = packageNameEnd > 0 ? packageNameEnd : basePathStart; delta = basePathStart0 - refStart; return new A._SimpleUri(B.JSString_methods.substring$2(base._uri, 0, basePathStart0) + B.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, basePathStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); } baseStart = base._pathStart; baseEnd = base._queryStart; if (baseStart === baseEnd && base._hostStart > 0) { for (; B.JSString_methods.startsWith$2(t2, "../", refStart);) refStart += 3; delta = baseStart - refStart + 1; return new A._SimpleUri(B.JSString_methods.substring$2(base._uri, 0, baseStart) + "/" + B.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, baseStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); } baseUri = base._uri; packageNameEnd = A._SimpleUri__packageNameEnd(this); if (packageNameEnd >= 0) baseStart0 = packageNameEnd; else for (baseStart0 = baseStart; B.JSString_methods.startsWith$2(baseUri, "../", baseStart0);) baseStart0 += 3; backCount = 0; while (true) { refStart0 = refStart + 3; if (!(refStart0 <= t1 && B.JSString_methods.startsWith$2(t2, "../", refStart))) break; ++backCount; refStart = refStart0; } for (insert = ""; baseEnd > baseStart0;) { --baseEnd; if (B.JSString_methods.codeUnitAt$1(baseUri, baseEnd) === 47) { if (backCount === 0) { insert = "/"; break; } --backCount; insert = "/"; } } if (baseEnd === baseStart0 && base._schemeEnd <= 0 && !B.JSString_methods.startsWith$2(baseUri, "/", baseStart)) { refStart -= backCount * 3; insert = ""; } delta = baseEnd - refStart + insert.length; return new A._SimpleUri(B.JSString_methods.substring$2(baseUri, 0, baseEnd) + insert + B.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, baseStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); }, toFilePath$0() { var t2, t3, _this = this, t1 = _this._schemeEnd; if (t1 >= 0) { t2 = !(t1 === 4 && B.JSString_methods.startsWith$1(_this._uri, "file")); t1 = t2; } else t1 = false; if (t1) throw A.wrapException(A.UnsupportedError$("Cannot extract a file path from a " + _this.get$scheme() + " URI")); t1 = _this._queryStart; t2 = _this._uri; if (t1 < t2.length) { if (t1 < _this._fragmentStart) throw A.wrapException(A.UnsupportedError$(string$.Cannotefq)); throw A.wrapException(A.UnsupportedError$(string$.Cannoteff)); } t3 = $.$get$_Uri__isWindowsCached(); if (t3) t1 = A._Uri__toWindowsFilePath(_this); else { if (_this._hostStart < _this._portStart) A.throwExpression(A.UnsupportedError$(string$.Cannoten)); t1 = B.JSString_methods.substring$2(t2, _this._pathStart, t1); } return t1; }, get$hashCode(_) { var t1 = this._hashCodeCache; return t1 == null ? this._hashCodeCache = B.JSString_methods.get$hashCode(this._uri) : t1; }, $eq(_, other) { if (other == null) return false; if (this === other) return true; return type$.Uri._is(other) && this._uri === other.toString$0(0); }, _toNonSimple$0() { var _this = this, _null = null, t1 = _this.get$scheme(), t2 = _this.get$userInfo(), t3 = _this._hostStart > 0 ? _this.get$host(_this) : _null, t4 = _this.get$hasPort() ? _this.get$port(_this) : _null, t5 = _this._uri, t6 = _this._queryStart, t7 = B.JSString_methods.substring$2(t5, _this._pathStart, t6), t8 = _this._fragmentStart; t6 = t6 < t8 ? _this.get$query(_this) : _null; return A._Uri$_internal(t1, t2, t3, t4, t7, t6, t8 < t5.length ? _this.get$fragment() : _null); }, toString$0(_) { return this._uri; }, $isUri: 1 }; A._DataUri.prototype = {}; A.Expando.prototype = { $index(_, object) { if (object == null || A._isBool(object) || typeof object == "number" || typeof object == "string") A.throwExpression(A.ArgumentError$value(object, string$.Expand, null)); return this._jsWeakMap.get(object); }, $indexSet(_, object, value) { this._jsWeakMap.set(object, value); }, toString$0(_) { return "Expando:null"; }, get$name() { return null; } }; A._FakeUserTag.prototype = {}; A.ServiceExtensionResponse.prototype = {}; A.TimelineTask.prototype = { start$2$arguments(_, $name, $arguments) { A.ArgumentError_checkNotNull($name, "name"); this._stack.push(null); return; }, start$1($receiver, $name) { return this.start$2$arguments($receiver, $name, null); }, finish$1$arguments(_, $arguments) { var t1 = this._stack; if (t1.length === 0) throw A.wrapException(A.StateError$("Uneven calls to start and finish")); if (t1.pop() == null) return; A._argumentsAsJson($arguments); }, finish$0($receiver) { return this.finish$1$arguments($receiver, null); } }; A.HtmlElement.prototype = {$isHtmlElement: 1}; A.AccessibleNodeList.prototype = { get$length(receiver) { return receiver.length; } }; A.AnchorElement.prototype = { toString$0(receiver) { return String(receiver); } }; A.Animation.prototype = { get$id(receiver) { return receiver.id; } }; A.ApplicationCacheErrorEvent.prototype = { get$message(receiver) { return receiver.message; } }; A.AreaElement.prototype = { toString$0(receiver) { return String(receiver); } }; A.BackgroundFetchEvent.prototype = { get$id(receiver) { return receiver.id; } }; A.BackgroundFetchRegistration.prototype = { get$id(receiver) { return receiver.id; } }; A.BaseElement.prototype = {$isBaseElement: 1}; A.BeforeUnloadEvent.prototype = {$isBeforeUnloadEvent: 1}; A.Blob.prototype = {$isBlob: 1}; A.BluetoothRemoteGattDescriptor.prototype = { get$value(receiver) { return receiver.value; } }; A.Body.prototype = {$isBody: 1}; A.BodyElement.prototype = {$isBodyElement: 1}; A.BroadcastChannel.prototype = { get$name(receiver) { return receiver.name; } }; A.ButtonElement.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; } }; A.CanvasElement.prototype = { getContext$2(receiver, contextId, attributes) { if (attributes != null) return receiver.getContext(contextId, A.convertDartToNative_Dictionary(attributes)); return receiver.getContext(contextId); }, getContext$1($receiver, contextId) { return this.getContext$2($receiver, contextId, null); }, _toBlob$3(receiver, callback, type, $arguments) { return receiver.toBlob(A.convertDartClosureToJS(callback, 1), type, $arguments); }, toBlob$2(receiver, type, $arguments) { var t1 = new A._Future($.Zone__current, type$._Future_Blob); this._toBlob$3(receiver, new A.CanvasElement_toBlob_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_Blob)), type, $arguments); return t1; }, toBlob$0($receiver) { return this.toBlob$2($receiver, null, null); }, $isCanvasElement: 1 }; A.CanvasElement_toBlob_closure.prototype = { call$1(value) { this.completer.complete$1(0, value); }, $signature: 3377 }; A.CanvasRenderingContext2D.prototype = { fillText$3(receiver, text, x, y) { receiver.fillText(text, x, y); }, $isCanvasRenderingContext2D: 1 }; A.CharacterData.prototype = { get$length(receiver) { return receiver.length; } }; A.Client.prototype = { get$id(receiver) { return receiver.id; } }; A.Credential.prototype = { get$id(receiver) { return receiver.id; } }; A.CredentialUserData.prototype = { get$name(receiver) { return receiver.name; } }; A.CssKeyframesRule.prototype = { get$name(receiver) { return receiver.name; } }; A.CssKeywordValue.prototype = { get$value(receiver) { return receiver.value; } }; A.CssNumericValue.prototype = {}; A.CssPerspective.prototype = { get$length(receiver) { return receiver.length; } }; A.CssRule.prototype = {$isCssRule: 1}; A.CssStyleDeclaration.prototype = { _browserPropertyName$1(receiver, propertyName) { var t1 = $.$get$CssStyleDeclaration__propertyCache(), $name = t1[propertyName]; if (typeof $name == "string") return $name; $name = this._supportedBrowserPropertyName$1(receiver, propertyName); t1[propertyName] = $name; return $name; }, _supportedBrowserPropertyName$1(receiver, propertyName) { var prefixed; if (propertyName.replace(/^-ms-/, "ms-").replace(/-([\da-z])/ig, function(_, letter) { return letter.toUpperCase(); }) in receiver) return propertyName; prefixed = $.$get$Device_cssPrefix() + propertyName; if (prefixed in receiver) return prefixed; return propertyName; }, _setPropertyHelper$3(receiver, propertyName, value, priority) { if (value == null) value = ""; if (priority == null) priority = ""; receiver.setProperty(propertyName, value, priority); }, get$length(receiver) { return receiver.length; }, set$height(receiver, value) { receiver.height = value; }, set$left(receiver, value) { receiver.left = value; }, set$overflow(receiver, value) { receiver.overflow = value; }, set$position(receiver, value) { receiver.position = value; }, set$top(receiver, value) { receiver.top = value; }, set$visibility(receiver, value) { receiver.visibility = value; }, set$width(receiver, value) { receiver.width = value; } }; A.CssStyleDeclarationBase.prototype = {}; A.CssStyleSheet.prototype = {$isCssStyleSheet: 1}; A.CssStyleValue.prototype = {}; A.CssTransformComponent.prototype = {}; A.CssTransformValue.prototype = { get$length(receiver) { return receiver.length; } }; A.CssUnitValue.prototype = { get$value(receiver) { return receiver.value; } }; A.CssUnparsedValue.prototype = { get$length(receiver) { return receiver.length; } }; A.DataElement.prototype = { get$value(receiver) { return receiver.value; } }; A.DataTransferItemList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { return receiver[index]; } }; A.DeprecationReport.prototype = { get$message(receiver) { return receiver.message; } }; A.DivElement.prototype = {}; A.Document1.prototype = { createElement$1(receiver, tagName) { var t1 = receiver.createElement(tagName); return t1; }, createElementNS$2(receiver, namespaceURI, qualifiedName) { var t1 = receiver.createElementNS(namespaceURI, qualifiedName); return t1; }, $isDocument1: 1 }; A.DomError.prototype = { get$message(receiver) { return receiver.message; }, get$name(receiver) { return receiver.name; } }; A.DomException.prototype = { get$name(receiver) { var errorName = receiver.name, t1 = $.$get$Device_isWebKit(); if (t1 && errorName === "SECURITY_ERR") return "SecurityError"; if (t1 && errorName === "SYNTAX_ERR") return "SyntaxError"; return errorName; }, get$message(receiver) { return receiver.message; }, toString$0(receiver) { return String(receiver); }, $isDomException: 1 }; A.DomRectList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.DomRectReadOnly.prototype = { toString$0(receiver) { var t2, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; return "Rectangle (" + A.S(t1) + ", " + A.S(t2) + ") " + A.S(this.get$width(receiver)) + " x " + A.S(this.get$height(receiver)); }, $eq(receiver, other) { var t1, t2; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = receiver.left; t1.toString; t2 = J.getInterceptor$x(other); if (t1 === t2.get$left(other)) { t1 = receiver.top; t1.toString; t1 = t1 === t2.get$top(other) && this.get$width(receiver) == t2.get$width(other) && this.get$height(receiver) == t2.get$height(other); } else t1 = false; } else t1 = false; return t1; }, get$hashCode(receiver) { var t2, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; return A.Object_hash(t1, t2, this.get$width(receiver), this.get$height(receiver), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, get$bottom(receiver) { var t1 = receiver.bottom; t1.toString; return t1; }, get$_height(receiver) { return receiver.height; }, get$height(receiver) { var t1 = this.get$_height(receiver); t1.toString; return t1; }, get$left(receiver) { var t1 = receiver.left; t1.toString; return t1; }, get$right(receiver) { var t1 = receiver.right; t1.toString; return t1; }, get$top(receiver) { var t1 = receiver.top; t1.toString; return t1; }, get$_width(receiver) { return receiver.width; }, get$width(receiver) { var t1 = this.get$_width(receiver); t1.toString; return t1; }, $isRectangle: 1 }; A.DomStringList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.DomTokenList.prototype = { get$length(receiver) { return receiver.length; }, get$value(receiver) { return receiver.value; } }; A._ChildrenElementList.prototype = { contains$1(_, element) { return J.contains$1$asx(this._html$_childElements, element); }, get$isEmpty(_) { return this._html$_element.firstElementChild == null; }, get$length(_) { return this._html$_childElements.length; }, $index(_, index) { return type$.Element._as(this._html$_childElements[index]); }, $indexSet(_, index, value) { this._html$_element.replaceChild(value, this._html$_childElements[index]); }, set$length(_, newLength) { throw A.wrapException(A.UnsupportedError$("Cannot resize element lists")); }, add$1(_, value) { this._html$_element.appendChild(value); return value; }, get$iterator(_) { var t1 = this.toList$0(this); return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, addAll$1(_, iterable) { A._ChildrenElementList__addAll(this._html$_element, iterable); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("Cannot sort element lists")); }, removeWhere$1(_, test) { this._html$_filter$2(0, test, false); }, retainWhere$1(_, test) { this._html$_filter$2(0, test, true); }, _html$_filter$2(_, test, retainMatching) { var removed, t1 = this._html$_element, t2 = J.getInterceptor$x(t1); if (retainMatching) { t1 = t2.get$children(t1); removed = new A.WhereIterable(t1, new A._ChildrenElementList__filter_closure(test), A._instanceType(t1)._eval$1("WhereIterable")); } else { t1 = t2.get$children(t1); removed = new A.WhereIterable(t1, test, A._instanceType(t1)._eval$1("WhereIterable")); } for (t1 = J.get$iterator$ax(removed.__internal$_iterable), t2 = new A.WhereIterator(t1, removed._f, removed.$ti._eval$1("WhereIterator<1>")); t2.moveNext$0();) J.remove$0$ax(t1.get$current(t1)); }, removeRange$2(_, start, end) { throw A.wrapException(A.UnimplementedError$(null)); }, setRange$4(_, start, end, iterable, skipCount) { throw A.wrapException(A.UnimplementedError$(null)); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, remove$1(_, object) { return A._ChildrenElementList__remove(this._html$_element, object); }, insert$2(_, index, element) { var t1, t2, _this = this; if (index < 0 || index > _this._html$_childElements.length) throw A.wrapException(A.RangeError$range(index, 0, _this.get$length(_this), null, null)); t1 = _this._html$_childElements; t2 = _this._html$_element; if (index === t1.length) t2.appendChild(element); else t2.insertBefore(element, type$.Element._as(t1[index])); }, insertAll$2(_, index, iterable) { throw A.wrapException(A.UnimplementedError$(null)); }, setAll$2(_, index, iterable) { throw A.wrapException(A.UnimplementedError$(null)); }, clear$0(_) { J._clearChildren$0$x(this._html$_element); }, removeAt$1(_, index) { var result = type$.Element._as(this._html$_childElements[index]); this._html$_element.removeChild(result); return result; }, removeLast$0(_) { var result = this.get$last(this); this._html$_element.removeChild(result); return result; }, get$first(_) { return A._ChildrenElementList__first(this._html$_element); }, get$last(_) { var result = this._html$_element.lastElementChild; if (result == null) throw A.wrapException(A.StateError$("No elements")); return result; } }; A._ChildrenElementList__filter_closure.prototype = { call$1(e) { return !this.test.call$1(e); }, $signature: 3357 }; A._FrozenElementList.prototype = { get$length(_) { return this._nodeList.length; }, $index(_, index) { return this.$ti._precomputed1._as(this._nodeList[index]); }, $indexSet(_, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot modify list")); }, set$length(_, newLength) { throw A.wrapException(A.UnsupportedError$("Cannot modify list")); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("Cannot sort list")); }, get$first(_) { return this.$ti._precomputed1._as(B.NodeList_methods.get$first(this._nodeList)); }, get$last(_) { return this.$ti._precomputed1._as(B.NodeList_methods.get$last(this._nodeList)); } }; A.Element2.prototype = { get$attributes(receiver) { return new A._ElementAttributeMap(receiver); }, get$children(receiver) { return new A._ChildrenElementList(receiver, receiver.children); }, getComputedStyle$0(receiver) { return window.getComputedStyle(receiver, ""); }, toString$0(receiver) { return receiver.localName; }, createFragment$3$treeSanitizer$validator(receiver, html, treeSanitizer, validator) { var t1, t2, contextElement, fragment; if (treeSanitizer == null) { t1 = $.Element__defaultValidator; if (t1 == null) { t1 = A._setArrayType([], type$.JSArray_NodeValidator); t2 = new A.NodeValidatorBuilder(t1); t1.push(A._Html5NodeValidator$(null)); t1.push(A._TemplatingNodeValidator$()); $.Element__defaultValidator = t2; validator = t2; } else validator = t1; t1 = $.Element__defaultSanitizer; if (t1 == null) { t1 = new A._ValidatingTreeSanitizer(validator); $.Element__defaultSanitizer = t1; treeSanitizer = t1; } else { t1.validator = validator; treeSanitizer = t1; } } if ($.Element__parseDocument == null) { t1 = document; t2 = t1.implementation.createHTMLDocument(""); $.Element__parseDocument = t2; $.Element__parseRange = t2.createRange(); t2 = $.Element__parseDocument.createElement("base"); type$.BaseElement._as(t2); t1 = t1.baseURI; t1.toString; t2.href = t1; $.Element__parseDocument.head.appendChild(t2); } t1 = $.Element__parseDocument; if (t1.body == null) { t2 = t1.createElement("body"); t1.body = type$.BodyElement._as(t2); } t1 = $.Element__parseDocument; if (type$.BodyElement._is(receiver)) { t1 = t1.body; t1.toString; contextElement = t1; } else { t1.toString; contextElement = t1.createElement(receiver.tagName); $.Element__parseDocument.body.appendChild(contextElement); } if ("createContextualFragment" in window.Range.prototype && !B.JSArray_methods.contains$1(B.List_ego, receiver.tagName)) { $.Element__parseRange.selectNodeContents(contextElement); t1 = $.Element__parseRange; fragment = t1.createContextualFragment(html); } else { contextElement.innerHTML = html; fragment = $.Element__parseDocument.createDocumentFragment(); for (; t1 = contextElement.firstChild, t1 != null;) fragment.appendChild(t1); } if (contextElement !== $.Element__parseDocument.body) J.remove$0$ax(contextElement); treeSanitizer.sanitizeTree$1(fragment); document.adoptNode(fragment); return fragment; }, createFragment$2$treeSanitizer($receiver, html, treeSanitizer) { return this.createFragment$3$treeSanitizer$validator($receiver, html, treeSanitizer, null); }, setInnerHtml$1(receiver, html) { receiver.textContent = null; receiver.appendChild(this.createFragment$3$treeSanitizer$validator(receiver, html, null, null)); }, focus$0(receiver) { return receiver.focus(); }, get$id(receiver) { return receiver.id; }, get$tagName(receiver) { return receiver.tagName; }, $isElement2: 1 }; A.Element_Element$html_closure.prototype = { call$1(e) { return type$.Element._is(e); }, $signature: 538 }; A.EmbedElement.prototype = { get$name(receiver) { return receiver.name; } }; A.Entry.prototype = { get$name(receiver) { return receiver.name; }, _html$_remove$2(receiver, successCallback, errorCallback) { return receiver.remove(A.convertDartClosureToJS(successCallback, 0), A.convertDartClosureToJS(errorCallback, 1)); }, remove$0(receiver) { var t1 = new A._Future($.Zone__current, type$._Future_dynamic), completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_dynamic); this._html$_remove$2(receiver, new A.Entry_remove_closure(completer), new A.Entry_remove_closure0(completer)); return t1; } }; A.Entry_remove_closure.prototype = { call$0() { this.completer.complete$0(0); }, $signature: 0 }; A.Entry_remove_closure0.prototype = { call$1(error) { this.completer.completeError$1(error); }, $signature: 3331 }; A.ErrorEvent.prototype = { get$message(receiver) { return receiver.message; } }; A.Event.prototype = { get$target(receiver) { return A._convertNativeToDart_EventTarget(receiver.target); }, $isEvent: 1 }; A.EventTarget.prototype = { addEventListener$3(receiver, type, listener, useCapture) { if (listener != null) this._addEventListener$3(receiver, type, listener, useCapture); }, addEventListener$2($receiver, type, listener) { return this.addEventListener$3($receiver, type, listener, null); }, removeEventListener$3(receiver, type, listener, useCapture) { if (listener != null) this._removeEventListener$3(receiver, type, listener, useCapture); }, removeEventListener$2($receiver, type, listener) { return this.removeEventListener$3($receiver, type, listener, null); }, _addEventListener$3(receiver, type, listener, options) { return receiver.addEventListener(type, A.convertDartClosureToJS(listener, 1), options); }, _removeEventListener$3(receiver, type, listener, options) { return receiver.removeEventListener(type, A.convertDartClosureToJS(listener, 1), options); }, $isEventTarget: 1 }; A.ExtendableEvent.prototype = {}; A.FederatedCredential.prototype = { get$name(receiver) { return receiver.name; } }; A.FieldSetElement.prototype = { get$name(receiver) { return receiver.name; } }; A.File.prototype = { get$name(receiver) { return receiver.name; }, $isFile: 1 }; A.FileList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1, $isFileList: 1 }; A.FileReader.prototype = { get$result(receiver) { var res = receiver.result; if (type$.ByteBuffer._is(res)) return B.NativeByteBuffer_methods.asUint8List$2(res, 0, null); return res; } }; A.FileSystem.prototype = { get$name(receiver) { return receiver.name; } }; A.FileWriter.prototype = { get$length(receiver) { return receiver.length; } }; A.FontFace.prototype = {$isFontFace: 1}; A.FontFaceSet.prototype = { forEach$1(receiver, callback) { return receiver.forEach(A.convertDartClosureToJS(callback, 3)); } }; A.FormElement.prototype = { get$length(receiver) { return receiver.length; }, get$name(receiver) { return receiver.name; }, $isFormElement: 1 }; A.Gamepad.prototype = { get$id(receiver) { return receiver.id; }, $isGamepad: 1 }; A.GamepadButton.prototype = { get$value(receiver) { return receiver.value; } }; A.History.prototype = { get$length(receiver) { return receiver.length; } }; A.HtmlCollection.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.HtmlDocument.prototype = { get$body(receiver) { return receiver.body; } }; A.HttpRequest.prototype = { get$responseHeaders(receiver) { var headersList, _i, header, t2, splitIdx, key, value, t1 = type$.String, headers = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1), headersString = receiver.getAllResponseHeaders(); if (headersString == null) return headers; headersList = headersString.split("\r\n"); for (t1 = headersList.length, _i = 0; _i < t1; ++_i) { header = headersList[_i]; header.toString; t2 = J.getInterceptor$asx(header); if (t2.get$length(header) === 0) continue; splitIdx = t2.indexOf$1(header, ": "); if (splitIdx === -1) continue; key = t2.substring$2(header, 0, splitIdx).toLowerCase(); value = t2.substring$1(header, splitIdx + 2); if (headers.containsKey$1(0, key)) headers.$indexSet(0, key, A.S(headers.$index(0, key)) + ", " + value); else headers.$indexSet(0, key, value); } return headers; }, open$3$async(receiver, method, url, async) { return receiver.open(method, url, true); }, send$1(receiver, body_OR_data) { return receiver.send(body_OR_data); }, setRequestHeader$2(receiver, $name, value) { return receiver.setRequestHeader($name, value); }, $isHttpRequest: 1 }; A.HttpRequest_request_closure.prototype = { call$1(e) { var accepted, unknownRedirect, t3, t1 = this.xhr, t2 = t1.status; t2.toString; accepted = t2 >= 200 && t2 < 300; unknownRedirect = t2 > 307 && t2 < 400; t2 = accepted || t2 === 0 || t2 === 304 || unknownRedirect; t3 = this.completer; if (t2) t3.complete$1(0, t1); else t3.completeError$1(e); }, $signature: 177 }; A.HttpRequestEventTarget.prototype = {}; A.IFrameElement.prototype = { get$name(receiver) { return receiver.name; }, $isIFrameElement: 1 }; A.ImageData.prototype = {$isImageData: 1}; A.ImageElement.prototype = {$isImageElement: 1}; A.InputElement.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; }, $isInputElement: 1, $isFileUploadInputElement: 1 }; A.InterventionReport.prototype = { get$message(receiver) { return receiver.message; } }; A.KeyboardEvent.prototype = {$isKeyboardEvent: 1}; A.LIElement.prototype = { get$value(receiver) { return receiver.value; } }; A.LabelElement.prototype = {}; A.Location.prototype = { toString$0(receiver) { return String(receiver); } }; A.MapElement.prototype = { get$name(receiver) { return receiver.name; } }; A.MediaError.prototype = { get$message(receiver) { return receiver.message; } }; A.MediaKeyMessageEvent.prototype = { get$message(receiver) { return receiver.message; } }; A.MediaKeySession.prototype = { remove$0(receiver) { return A.promiseToFuture(receiver.remove(), type$.dynamic); } }; A.MediaList.prototype = { get$length(receiver) { return receiver.length; } }; A.MediaQueryList.prototype = { addListener$1(receiver, listener) { return receiver.addListener(A.convertDartClosureToJS(listener, 1)); }, removeListener$1(receiver, listener) { return receiver.removeListener(A.convertDartClosureToJS(listener, 1)); } }; A.MediaQueryListEvent.prototype = {$isMediaQueryListEvent: 1}; A.MediaStream.prototype = { get$id(receiver) { return receiver.id; } }; A.MediaStreamTrack.prototype = { get$id(receiver) { return receiver.id; } }; A.MessagePort.prototype = { addEventListener$3(receiver, type, listener, useCapture) { if (type === "message") receiver.start(); this.super$EventTarget$addEventListener(receiver, type, listener, false); }, $isMessagePort: 1 }; A.MetaElement.prototype = { get$name(receiver) { return receiver.name; }, $isMetaElement: 1 }; A.MeterElement.prototype = { get$value(receiver) { return receiver.value; } }; A.MidiInputMap.prototype = { containsKey$1(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], A.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys(receiver) { var keys = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.MidiInputMap_keys_closure(keys)); return keys; }, get$values(receiver) { var values = A._setArrayType([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new A.MidiInputMap_values_closure(values)); return values; }, get$length(receiver) { return receiver.size; }, get$isEmpty(receiver) { return receiver.size === 0; }, get$isNotEmpty(receiver) { return receiver.size !== 0; }, $indexSet(receiver, key, value) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, putIfAbsent$2(receiver, key, ifAbsent) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, remove$1(receiver, key) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, $isMap: 1 }; A.MidiInputMap_keys_closure.prototype = { call$2(k, v) { return this.keys.push(k); }, $signature: 142 }; A.MidiInputMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, $signature: 142 }; A.MidiOutputMap.prototype = { containsKey$1(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], A.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys(receiver) { var keys = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.MidiOutputMap_keys_closure(keys)); return keys; }, get$values(receiver) { var values = A._setArrayType([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new A.MidiOutputMap_values_closure(values)); return values; }, get$length(receiver) { return receiver.size; }, get$isEmpty(receiver) { return receiver.size === 0; }, get$isNotEmpty(receiver) { return receiver.size !== 0; }, $indexSet(receiver, key, value) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, putIfAbsent$2(receiver, key, ifAbsent) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, remove$1(receiver, key) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, $isMap: 1 }; A.MidiOutputMap_keys_closure.prototype = { call$2(k, v) { return this.keys.push(k); }, $signature: 142 }; A.MidiOutputMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, $signature: 142 }; A.MidiPort.prototype = { get$id(receiver) { return receiver.id; }, get$name(receiver) { return receiver.name; } }; A.MimeType.prototype = {$isMimeType: 1}; A.MimeTypeArray.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.MouseEvent.prototype = { get$offset(receiver) { var t1, t2, target, t3, t4, t5, point; if (!!receiver.offsetX) return new A.Point(receiver.offsetX, receiver.offsetY, type$.Point_num); else { t1 = receiver.target; t2 = type$.Element; if (!t2._is(A._convertNativeToDart_EventTarget(t1))) throw A.wrapException(A.UnsupportedError$("offsetX is only supported on elements")); target = t2._as(A._convertNativeToDart_EventTarget(t1)); t1 = receiver.clientX; t2 = receiver.clientY; t3 = type$.Point_num; t4 = target.getBoundingClientRect(); t5 = t4.left; t5.toString; t4 = t4.top; t4.toString; point = new A.Point(t1, t2, t3).$sub(0, new A.Point(t5, t4, t3)); return new A.Point(J.toInt$0$n(point.x), J.toInt$0$n(point.y), t3); } }, $isMouseEvent: 1 }; A.MutationObserver.prototype = { observe$3$attributeFilter$attributes(receiver, target, attributeFilter, attributes) { var _null = null, parsedOptions = {}, t1 = new A.MutationObserver_observe_override(parsedOptions); t1.call$2("childList", _null); t1.call$2("attributes", true); t1.call$2("characterData", _null); t1.call$2("subtree", _null); t1.call$2("attributeOldValue", _null); t1.call$2("characterDataOldValue", _null); t1.call$2("attributeFilter", attributeFilter); receiver.observe(target, parsedOptions); }, $isMutationObserver: 1 }; A.MutationObserver_observe_override.prototype = { call$2(key, value) { if (value != null) this.parsedOptions[key] = value; }, $signature: 193 }; A.MutationRecord.prototype = {$isMutationRecord: 1}; A.Navigator0.prototype = { get$vendor(receiver) { return receiver.vendor; }, get$product(receiver) { return receiver.product; } }; A.NavigatorConcurrentHardware.prototype = {}; A.NavigatorUserMediaError.prototype = { get$message(receiver) { return receiver.message; }, get$name(receiver) { return receiver.name; } }; A._ChildNodeListLazy.prototype = { get$first(_) { var result = this._this.firstChild; if (result == null) throw A.wrapException(A.StateError$("No elements")); return result; }, get$last(_) { var result = this._this.lastChild; if (result == null) throw A.wrapException(A.StateError$("No elements")); return result; }, get$single(_) { var t1 = this._this, l = t1.childNodes.length; if (l === 0) throw A.wrapException(A.StateError$("No elements")); if (l > 1) throw A.wrapException(A.StateError$("More than one element")); t1 = t1.firstChild; t1.toString; return t1; }, add$1(_, value) { this._this.appendChild(value); }, addAll$1(_, iterable) { var t1, t2, len, i, t3; if (iterable instanceof A._ChildNodeListLazy) { t1 = iterable._this; t2 = this._this; if (t1 !== t2) for (len = t1.childNodes.length, i = 0; i < len; ++i) { t3 = t1.firstChild; t3.toString; t2.appendChild(t3); } return; } for (t1 = J.get$iterator$ax(iterable), t2 = this._this; t1.moveNext$0();) t2.appendChild(t1.get$current(t1)); }, insert$2(_, index, node) { var t1, t2, _this = this; if (index < 0 || index > _this._this.childNodes.length) throw A.wrapException(A.RangeError$range(index, 0, _this.get$length(_this), null, null)); t1 = _this._this; t2 = t1.childNodes; if (index === t2.length) t1.appendChild(node); else t1.insertBefore(node, t2[index]); }, insertAll$2(_, index, iterable) { var t1 = this._this, t2 = t1.childNodes; if (index === t2.length) this.addAll$1(0, iterable); else J.insertAllBefore$2$x(t1, iterable, t2[index]); }, setAll$2(_, index, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot setAll on Node list")); }, removeLast$0(_) { var result = this.get$last(this); this._this.removeChild(result); return result; }, removeAt$1(_, index) { var t1 = this._this, result = t1.childNodes[index]; t1.removeChild(result); return result; }, remove$1(_, object) { var t1; if (!type$.Node._is(object)) return false; t1 = this._this; if (t1 !== object.parentNode) return false; t1.removeChild(object); return true; }, _html$_filter$2(_, test, removeMatching) { var nextChild, t1 = this._this, child = t1.firstChild; for (; child != null; child = nextChild) { nextChild = child.nextSibling; if (J.$eq$(test.call$1(child), removeMatching)) t1.removeChild(child); } }, removeWhere$1(_, test) { this._html$_filter$2(0, test, true); }, retainWhere$1(_, test) { this._html$_filter$2(0, test, false); }, $indexSet(_, index, value) { var t1 = this._this; t1.replaceChild(value, t1.childNodes[index]); }, get$iterator(_) { var t1 = this._this.childNodes; return new A.FixedSizeListIterator(t1, t1.length, A.instanceType(t1)._eval$1("FixedSizeListIterator")); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("Cannot sort Node list")); }, setRange$4(_, start, end, iterable, skipCount) { throw A.wrapException(A.UnsupportedError$("Cannot setRange on Node list")); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(_, start, end) { throw A.wrapException(A.UnsupportedError$("Cannot removeRange on Node list")); }, get$length(_) { return this._this.childNodes.length; }, set$length(_, value) { throw A.wrapException(A.UnsupportedError$("Cannot set length on immutable List.")); }, $index(_, index) { return this._this.childNodes[index]; } }; A.Node1.prototype = { remove$0(receiver) { var t1 = receiver.parentNode; if (t1 != null) t1.removeChild(receiver); }, replaceWith$1(receiver, otherNode) { var $parent, t1, exception; try { t1 = receiver.parentNode; t1.toString; $parent = t1; J._replaceChild$2$x($parent, otherNode, receiver); } catch (exception) { } return receiver; }, insertAllBefore$2(receiver, newNodes, child) { var t1, len, i, t2; if (newNodes instanceof A._ChildNodeListLazy) { t1 = newNodes._this; if (t1 === receiver) throw A.wrapException(A.ArgumentError$(newNodes, null)); for (len = t1.childNodes.length, i = 0; i < len; ++i) { t2 = t1.firstChild; t2.toString; receiver.insertBefore(t2, child); } } else for (t1 = J.get$iterator$ax(newNodes); t1.moveNext$0();) receiver.insertBefore(t1.get$current(t1), child); }, _clearChildren$0(receiver) { var t1; for (; t1 = receiver.firstChild, t1 != null;) receiver.removeChild(t1); }, toString$0(receiver) { var value = receiver.nodeValue; return value == null ? this.super$Interceptor$toString(receiver) : value; }, _replaceChild$2(receiver, node, child) { return receiver.replaceChild(node, child); }, $isNode1: 1 }; A.NodeList0.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.Notification.prototype = { get$body(receiver) { return receiver.body; } }; A.ObjectElement.prototype = { get$name(receiver) { return receiver.name; } }; A.OffscreenCanvas.prototype = { getContext$2(receiver, contextType, attributes) { var t1 = receiver.getContext(contextType, A.convertDartToNative_Dictionary(attributes)); return t1; } }; A.OptionElement.prototype = { get$value(receiver) { return receiver.value; } }; A.OutputElement.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; } }; A.OverconstrainedError.prototype = { get$message(receiver) { return receiver.message; }, get$name(receiver) { return receiver.name; } }; A.ParagraphElement.prototype = {}; A.ParamElement.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; } }; A.PasswordCredential.prototype = { get$name(receiver) { return receiver.name; } }; A.PaymentRequest.prototype = { get$id(receiver) { return receiver.id; } }; A.Performance.prototype = { mark$1(receiver, markName) { return receiver.mark(markName); }, measure$3(receiver, measureName, measureOptions_OR_startMark, endMark) { var t1 = receiver.measure(measureName, measureOptions_OR_startMark, endMark); return t1; } }; A.PerformanceEntry.prototype = { get$name(receiver) { return receiver.name; } }; A.PerformanceServerTiming.prototype = { get$name(receiver) { return receiver.name; } }; A.Plugin.prototype = { get$length(receiver) { return receiver.length; }, get$name(receiver) { return receiver.name; }, $isPlugin: 1 }; A.PluginArray.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.PointerEvent0.prototype = {$isPointerEvent0: 1}; A.PositionError.prototype = { get$message(receiver) { return receiver.message; } }; A.PresentationAvailability.prototype = { get$value(receiver) { return receiver.value; } }; A.PresentationConnection.prototype = { get$id(receiver) { return receiver.id; } }; A.PresentationConnectionCloseEvent.prototype = { get$message(receiver) { return receiver.message; } }; A.ProgressElement.prototype = { get$value(receiver) { return receiver.value; } }; A.ProgressEvent.prototype = {$isProgressEvent: 1}; A.RelatedApplication.prototype = { get$id(receiver) { return receiver.id; } }; A.ReportBody.prototype = {}; A.RtcDataChannel.prototype = { get$id(receiver) { return receiver.id; } }; A.RtcLegacyStatsReport.prototype = { get$id(receiver) { return receiver.id; } }; A.RtcStatsReport.prototype = { containsKey$1(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], A.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys(receiver) { var keys = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.RtcStatsReport_keys_closure(keys)); return keys; }, get$values(receiver) { var values = A._setArrayType([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new A.RtcStatsReport_values_closure(values)); return values; }, get$length(receiver) { return receiver.size; }, get$isEmpty(receiver) { return receiver.size === 0; }, get$isNotEmpty(receiver) { return receiver.size !== 0; }, $indexSet(receiver, key, value) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, putIfAbsent$2(receiver, key, ifAbsent) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, remove$1(receiver, key) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, $isMap: 1 }; A.RtcStatsReport_keys_closure.prototype = { call$2(k, v) { return this.keys.push(k); }, $signature: 142 }; A.RtcStatsReport_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, $signature: 142 }; A.ScreenOrientation.prototype = { unlock$0(receiver) { return receiver.unlock(); } }; A.SelectElement.prototype = { get$length(receiver) { return receiver.length; }, get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; } }; A.SharedWorkerGlobalScope.prototype = { get$name(receiver) { return receiver.name; } }; A.SlotElement.prototype = { get$name(receiver) { return receiver.name; } }; A.SourceBuffer.prototype = {$isSourceBuffer: 1}; A.SourceBufferList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.SpeechGrammar.prototype = {$isSpeechGrammar: 1}; A.SpeechGrammarList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.SpeechRecognitionError.prototype = { get$message(receiver) { return receiver.message; } }; A.SpeechRecognitionResult.prototype = { get$length(receiver) { return receiver.length; }, $isSpeechRecognitionResult: 1 }; A.SpeechSynthesisEvent.prototype = { get$name(receiver) { return receiver.name; } }; A.SpeechSynthesisVoice.prototype = { get$name(receiver) { return receiver.name; } }; A.Storage.prototype = { containsKey$1(receiver, key) { return receiver.getItem(A._asStringS(key)) != null; }, $index(receiver, key) { return receiver.getItem(A._asStringS(key)); }, $indexSet(receiver, key, value) { receiver.setItem(key, value); }, putIfAbsent$2(receiver, key, ifAbsent) { if (receiver.getItem(key) == null) receiver.setItem(key, ifAbsent.call$0()); return receiver.getItem(key); }, remove$1(receiver, key) { var value; A._asStringS(key); value = receiver.getItem(key); receiver.removeItem(key); return value; }, forEach$1(receiver, f) { var i, key, t1; for (i = 0; true; ++i) { key = receiver.key(i); if (key == null) return; t1 = receiver.getItem(key); t1.toString; f.call$2(key, t1); } }, get$keys(receiver) { var keys = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.Storage_keys_closure(keys)); return keys; }, get$values(receiver) { var values = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.Storage_values_closure(values)); return values; }, get$length(receiver) { return receiver.length; }, get$isEmpty(receiver) { return receiver.key(0) == null; }, get$isNotEmpty(receiver) { return receiver.key(0) != null; }, $isMap: 1 }; A.Storage_keys_closure.prototype = { call$2(k, v) { return this.keys.push(k); }, $signature: 173 }; A.Storage_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, $signature: 173 }; A.StyleElement.prototype = {}; A.StyleSheet.prototype = {$isStyleSheet: 1}; A.TableElement.prototype = { createFragment$3$treeSanitizer$validator(receiver, html, treeSanitizer, validator) { var table, fragment; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); table = A.Element_Element$html("" + html + "
", treeSanitizer, validator); fragment = document.createDocumentFragment(); fragment.toString; table.toString; new A._ChildNodeListLazy(fragment).addAll$1(0, new A._ChildNodeListLazy(table)); return fragment; } }; A.TableRowElement.prototype = { createFragment$3$treeSanitizer$validator(receiver, html, treeSanitizer, validator) { var t1, fragment, section, row; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); t1 = document; fragment = t1.createDocumentFragment(); t1 = B.TableElement_methods.createFragment$3$treeSanitizer$validator(t1.createElement("table"), html, treeSanitizer, validator); t1.toString; t1 = new A._ChildNodeListLazy(t1); section = t1.get$single(t1); section.toString; t1 = new A._ChildNodeListLazy(section); row = t1.get$single(t1); fragment.toString; row.toString; new A._ChildNodeListLazy(fragment).addAll$1(0, new A._ChildNodeListLazy(row)); return fragment; } }; A.TableSectionElement.prototype = { createFragment$3$treeSanitizer$validator(receiver, html, treeSanitizer, validator) { var t1, fragment, section; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); t1 = document; fragment = t1.createDocumentFragment(); t1 = B.TableElement_methods.createFragment$3$treeSanitizer$validator(t1.createElement("table"), html, treeSanitizer, validator); t1.toString; t1 = new A._ChildNodeListLazy(t1); section = t1.get$single(t1); fragment.toString; section.toString; new A._ChildNodeListLazy(fragment).addAll$1(0, new A._ChildNodeListLazy(section)); return fragment; } }; A.TemplateElement.prototype = {$isTemplateElement: 1}; A.TextAreaElement.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; }, select$0(receiver) { return receiver.select(); }, $isTextAreaElement: 1 }; A.TextTrack.prototype = { get$id(receiver) { return receiver.id; }, $isTextTrack: 1 }; A.TextTrackCue.prototype = { get$id(receiver) { return receiver.id; }, $isTextTrackCue: 1 }; A.TextTrackCueList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.TextTrackList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.TimeRanges.prototype = { get$length(receiver) { return receiver.length; } }; A.Touch.prototype = {$isTouch: 1}; A.TouchEvent.prototype = {$isTouchEvent: 1}; A.TouchList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A.TrackDefaultList.prototype = { get$length(receiver) { return receiver.length; } }; A.UIEvent.prototype = {}; A.Url.prototype = { toString$0(receiver) { return String(receiver); } }; A.VideoTrack.prototype = { get$id(receiver) { return receiver.id; } }; A.VideoTrackList.prototype = { get$length(receiver) { return receiver.length; } }; A.VttRegion.prototype = { get$id(receiver) { return receiver.id; } }; A.WheelEvent.prototype = { get$deltaY(receiver) { var value = receiver.deltaY; if (value != null) return value; throw A.wrapException(A.UnsupportedError$("deltaY is not supported")); }, get$deltaX(receiver) { var value = receiver.deltaX; if (value != null) return value; throw A.wrapException(A.UnsupportedError$("deltaX is not supported")); }, get$deltaMode(receiver) { if (!!receiver.deltaMode) return receiver.deltaMode; return 0; }, $isWheelEvent: 1 }; A.Window.prototype = { get$document(receiver) { return receiver.document; }, open$2(receiver, url, $name) { var t1 = A._DOMWindowCrossFrame__createSafe(receiver.open(url, $name)); return t1; }, requestAnimationFrame$1(receiver, callback) { var t1; this._ensureRequestAnimationFrame$0(receiver); t1 = A._wrapZone(callback, type$.num); t1.toString; return this._requestAnimationFrame$1(receiver, t1); }, _requestAnimationFrame$1(receiver, callback) { return receiver.requestAnimationFrame(A.convertDartClosureToJS(callback, 1)); }, _ensureRequestAnimationFrame$0(receiver) { if (!!(receiver.requestAnimationFrame && receiver.cancelAnimationFrame)) return; (function($this) { var vendors = ["ms", "moz", "webkit", "o"]; for (var i = 0; i < vendors.length && !$this.requestAnimationFrame; ++i) { $this.requestAnimationFrame = $this[vendors[i] + "RequestAnimationFrame"]; $this.cancelAnimationFrame = $this[vendors[i] + "CancelAnimationFrame"] || $this[vendors[i] + "CancelRequestAnimationFrame"]; } if ($this.requestAnimationFrame && $this.cancelAnimationFrame) return; $this.requestAnimationFrame = function(callback) { return window.setTimeout(function() { callback(Date.now()); }, 16); }; $this.cancelAnimationFrame = function(id) { clearTimeout(id); }; })(receiver); }, get$name(receiver) { return receiver.name; }, $isWindow: 1 }; A.WorkerGlobalScope.prototype = {$isWorkerGlobalScope: 1}; A._Attr.prototype = { get$name(receiver) { return receiver.name; }, get$value(receiver) { return receiver.value; }, $is_Attr: 1 }; A._CssRuleList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A._DomRect.prototype = { toString$0(receiver) { var t2, t3, t4, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; t3 = receiver.width; t3.toString; t4 = receiver.height; t4.toString; return "Rectangle (" + A.S(t1) + ", " + A.S(t2) + ") " + A.S(t3) + " x " + A.S(t4); }, $eq(receiver, other) { var t1, t2; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = receiver.left; t1.toString; t2 = J.getInterceptor$x(other); if (t1 === t2.get$left(other)) { t1 = receiver.top; t1.toString; if (t1 === t2.get$top(other)) { t1 = receiver.width; t1.toString; if (t1 === t2.get$width(other)) { t1 = receiver.height; t1.toString; t2 = t1 === t2.get$height(other); t1 = t2; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$hashCode(receiver) { var t2, t3, t4, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; t3 = receiver.width; t3.toString; t4 = receiver.height; t4.toString; return A.Object_hash(t1, t2, t3, t4, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, get$_height(receiver) { return receiver.height; }, get$height(receiver) { var t1 = receiver.height; t1.toString; return t1; }, get$_width(receiver) { return receiver.width; }, get$width(receiver) { var t1 = receiver.width; t1.toString; return t1; } }; A._GamepadList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A._NamedNodeMap.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A._Report.prototype = { get$body(receiver) { return receiver.body; } }; A._SpeechRecognitionResultList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A._StyleSheetList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; A._AttributeMap.prototype = { cast$2$0(_, $K, $V) { var t1 = type$.String; return A.Map_castFrom(this, t1, t1, $K, $V); }, putIfAbsent$2(_, key, ifAbsent) { var t1 = this._html$_element, t2 = t1.hasAttribute(key); if (!t2) t1.setAttribute(key, ifAbsent.call$0()); return t1.getAttribute(key); }, forEach$1(_, f) { var t1, t2, t3, _i, t4; for (t1 = this.get$keys(this), t2 = t1.length, t3 = this._html$_element, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { t4 = A._asStringS(t1[_i]); f.call$2(t4, t3.getAttribute(t4)); } }, get$keys(_) { var keys, len, t2, i, attr, t3, t1 = this._html$_element.attributes; t1.toString; keys = A._setArrayType([], type$.JSArray_String); for (len = t1.length, t2 = type$._Attr, i = 0; i < len; ++i) { attr = t2._as(t1[i]); if (attr.namespaceURI == null) { t3 = attr.name; t3.toString; keys.push(t3); } } return keys; }, get$values(_) { var values, len, t2, i, attr, t3, t1 = this._html$_element.attributes; t1.toString; values = A._setArrayType([], type$.JSArray_String); for (len = t1.length, t2 = type$._Attr, i = 0; i < len; ++i) { attr = t2._as(t1[i]); if (attr.namespaceURI == null) { t3 = attr.value; t3.toString; values.push(t3); } } return values; }, get$isEmpty(_) { return this.get$keys(this).length === 0; }, get$isNotEmpty(_) { return this.get$keys(this).length !== 0; } }; A._ElementAttributeMap.prototype = { containsKey$1(_, key) { return typeof key == "string" && this._html$_element.hasAttribute(key); }, $index(_, key) { return this._html$_element.getAttribute(A._asStringS(key)); }, $indexSet(_, key, value) { this._html$_element.setAttribute(key, value); }, remove$1(_, key) { var t1, value; if (typeof key == "string") { t1 = this._html$_element; value = t1.getAttribute(key); t1.removeAttribute(key); t1 = value; } else t1 = null; return t1; }, get$length(_) { return this.get$keys(this).length; } }; A._DataAttributeMap.prototype = { cast$2$0(_, $K, $V) { var t1 = type$.String; return A.Map_castFrom(this, t1, t1, $K, $V); }, containsKey$1(_, key) { var t1 = this._html$_attributes._html$_element.hasAttribute("data-" + this._toHyphenedName$1(A._asStringS(key))); return t1; }, $index(_, key) { return this._html$_attributes._html$_element.getAttribute("data-" + this._toHyphenedName$1(A._asStringS(key))); }, $indexSet(_, key, value) { this._html$_attributes._html$_element.setAttribute("data-" + this._toHyphenedName$1(key), value); }, putIfAbsent$2(_, key, ifAbsent) { return this._html$_attributes.putIfAbsent$2(0, "data-" + this._toHyphenedName$1(key), ifAbsent); }, remove$1(_, key) { var t1 = "data-" + this._toHyphenedName$1(A._asStringS(key)), t2 = this._html$_attributes._html$_element, value = t2.getAttribute(t1); t2.removeAttribute(t1); return value; }, forEach$1(_, f) { this._html$_attributes.forEach$1(0, new A._DataAttributeMap_forEach_closure(this, f)); }, get$keys(_) { var keys = A._setArrayType([], type$.JSArray_String); this._html$_attributes.forEach$1(0, new A._DataAttributeMap_keys_closure(this, keys)); return keys; }, get$values(_) { var values = A._setArrayType([], type$.JSArray_String); this._html$_attributes.forEach$1(0, new A._DataAttributeMap_values_closure(this, values)); return values; }, get$length(_) { return this.get$keys(this).length; }, get$isEmpty(_) { return this.get$keys(this).length === 0; }, get$isNotEmpty(_) { return this.get$keys(this).length !== 0; }, _toCamelCase$1(hyphenedName) { var t1, i, segment, segments = A._setArrayType(hyphenedName.split("-"), type$.JSArray_String); for (t1 = segments.length, i = 1; i < t1; ++i) { segment = segments[i]; if (segment.length > 0) segments[i] = segment[0].toUpperCase() + B.JSString_methods.substring$1(segment, 1); } return B.JSArray_methods.join$1(segments, ""); }, _toHyphenedName$1(word) { var t1, i, t2, t3, lower; for (t1 = word.length, i = 0, t2 = ""; i < t1; ++i) { t3 = word[i]; lower = t3.toLowerCase(); t2 = (t3 !== lower && i > 0 ? t2 + "-" : t2) + lower; } return t2.charCodeAt(0) == 0 ? t2 : t2; } }; A._DataAttributeMap_forEach_closure.prototype = { call$2(key, value) { if (J.startsWith$1$s(key, "data-")) this.f.call$2(this.$this._toCamelCase$1(B.JSString_methods.substring$1(key, 5)), value); }, $signature: 173 }; A._DataAttributeMap_keys_closure.prototype = { call$2(key, value) { if (J.startsWith$1$s(key, "data-")) this.keys.push(this.$this._toCamelCase$1(B.JSString_methods.substring$1(key, 5))); }, $signature: 173 }; A._DataAttributeMap_values_closure.prototype = { call$2(key, value) { if (J.startsWith$1$s(key, "data-")) this.values.push(value); }, $signature: 173 }; A.EventStreamProvider.prototype = {}; A._EventStream.prototype = { get$isBroadcast() { return true; }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { return A._EventStreamSubscription$(this._target, this._eventType, onData, false, A._instanceType(this)._precomputed1); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; A._ElementEventStreamImpl.prototype = {}; A._EventStreamSubscription.prototype = { cancel$0(_) { var _this = this; if (_this._target == null) return $.$get$nullFuture(); _this._unlisten$0(); _this._onData = _this._target = null; return $.$get$nullFuture(); }, onData$1(handleData) { var t1, _this = this; if (_this._target == null) throw A.wrapException(A.StateError$("Subscription has been canceled.")); _this._unlisten$0(); t1 = A._wrapZone(new A._EventStreamSubscription_onData_closure(handleData), type$.Event); _this._onData = t1; _this._tryResume$0(); }, pause$0(_) { if (this._target == null) return; ++this._pauseCount; this._unlisten$0(); }, resume$0(_) { var _this = this; if (_this._target == null || _this._pauseCount <= 0) return; --_this._pauseCount; _this._tryResume$0(); }, _tryResume$0() { var t2, _this = this, t1 = _this._onData; if (t1 != null && _this._pauseCount <= 0) { t2 = _this._target; t2.toString; J.addEventListener$3$x(t2, _this._eventType, t1, false); } }, _unlisten$0() { var t2, t1 = this._onData; if (t1 != null) { t2 = this._target; t2.toString; J.removeEventListener$3$x(t2, this._eventType, t1, false); } } }; A._EventStreamSubscription_closure.prototype = { call$1(e) { return this.onData.call$1(e); }, $signature: 69 }; A._EventStreamSubscription_onData_closure.prototype = { call$1(e) { return this.handleData.call$1(e); }, $signature: 69 }; A._Html5NodeValidator.prototype = { _Html5NodeValidator$1$uriPolicy(uriPolicy) { var _i; if ($._Html5NodeValidator__attributeValidators._length === 0) { for (_i = 0; _i < 262; ++_i) $._Html5NodeValidator__attributeValidators.$indexSet(0, B.List_2Zi[_i], A.html__Html5NodeValidator__standardAttributeValidator$closure()); for (_i = 0; _i < 12; ++_i) $._Html5NodeValidator__attributeValidators.$indexSet(0, B.List_yrN[_i], A.html__Html5NodeValidator__uriAttributeValidator$closure()); } }, allowsElement$1(element) { return $.$get$_Html5NodeValidator__allowedElements().contains$1(0, A.Element__safeTagName(element)); }, allowsAttribute$3(element, attributeName, value) { var validator = $._Html5NodeValidator__attributeValidators.$index(0, A.S(A.Element__safeTagName(element)) + "::" + attributeName); if (validator == null) validator = $._Html5NodeValidator__attributeValidators.$index(0, "*::" + attributeName); if (validator == null) return false; return validator.call$4(element, attributeName, value, this); }, $isNodeValidator: 1 }; A.ImmutableListMixin.prototype = { get$iterator(receiver) { return new A.FixedSizeListIterator(receiver, this.get$length(receiver), A.instanceType(receiver)._eval$1("FixedSizeListIterator")); }, add$1(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot add to immutable List.")); }, addAll$1(receiver, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to immutable List.")); }, sort$1(receiver, compare) { throw A.wrapException(A.UnsupportedError$("Cannot sort immutable List.")); }, insert$2(receiver, index, element) { throw A.wrapException(A.UnsupportedError$("Cannot add to immutable List.")); }, insertAll$2(receiver, index, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot add to immutable List.")); }, setAll$2(receiver, index, iterable) { throw A.wrapException(A.UnsupportedError$("Cannot modify an immutable List.")); }, removeAt$1(receiver, pos) { throw A.wrapException(A.UnsupportedError$("Cannot remove from immutable List.")); }, removeLast$0(receiver) { throw A.wrapException(A.UnsupportedError$("Cannot remove from immutable List.")); }, remove$1(receiver, object) { throw A.wrapException(A.UnsupportedError$("Cannot remove from immutable List.")); }, removeWhere$1(receiver, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from immutable List.")); }, retainWhere$1(receiver, test) { throw A.wrapException(A.UnsupportedError$("Cannot remove from immutable List.")); }, setRange$4(receiver, start, end, iterable, skipCount) { throw A.wrapException(A.UnsupportedError$("Cannot setRange on immutable List.")); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(receiver, start, end) { throw A.wrapException(A.UnsupportedError$("Cannot removeRange on immutable List.")); } }; A.NodeValidatorBuilder.prototype = { allowsElement$1(element) { return B.JSArray_methods.any$1(this._validators, new A.NodeValidatorBuilder_allowsElement_closure(element)); }, allowsAttribute$3(element, attributeName, value) { return B.JSArray_methods.any$1(this._validators, new A.NodeValidatorBuilder_allowsAttribute_closure(element, attributeName, value)); }, $isNodeValidator: 1 }; A.NodeValidatorBuilder_allowsElement_closure.prototype = { call$1(v) { return v.allowsElement$1(this.element); }, $signature: 575 }; A.NodeValidatorBuilder_allowsAttribute_closure.prototype = { call$1(v) { return v.allowsAttribute$3(this.element, this.attributeName, this.value); }, $signature: 575 }; A._SimpleNodeValidator.prototype = { _SimpleNodeValidator$4$allowedAttributes$allowedElements$allowedUriAttributes(uriPolicy, allowedAttributes, allowedElements, allowedUriAttributes) { var legalAttributes, extraUriAttributes, t1; this.allowedElements.addAll$1(0, allowedElements); legalAttributes = allowedAttributes.where$1(0, new A._SimpleNodeValidator_closure()); extraUriAttributes = allowedAttributes.where$1(0, new A._SimpleNodeValidator_closure0()); this.allowedAttributes.addAll$1(0, legalAttributes); t1 = this.allowedUriAttributes; t1.addAll$1(0, B.List_empty0); t1.addAll$1(0, extraUriAttributes); }, allowsElement$1(element) { return this.allowedElements.contains$1(0, A.Element__safeTagName(element)); }, allowsAttribute$3(element, attributeName, value) { var t4, _this = this, t1 = _this.allowedUriAttributes, t2 = A.S(A.Element__safeTagName(element)), t3 = t2 + "::" + attributeName; if (t1.contains$1(0, t3)) return _this.uriPolicy.allowsUri$1(value); else { t4 = "*::" + attributeName; if (t1.contains$1(0, t4)) return _this.uriPolicy.allowsUri$1(value); else { t1 = _this.allowedAttributes; if (t1.contains$1(0, t3)) return true; else if (t1.contains$1(0, t4)) return true; else if (t1.contains$1(0, t2 + "::*")) return true; else if (t1.contains$1(0, "*::*")) return true; } } return false; }, $isNodeValidator: 1 }; A._SimpleNodeValidator_closure.prototype = { call$1(x) { return !B.JSArray_methods.contains$1(B.List_yrN, x); }, $signature: 52 }; A._SimpleNodeValidator_closure0.prototype = { call$1(x) { return B.JSArray_methods.contains$1(B.List_yrN, x); }, $signature: 52 }; A._TemplatingNodeValidator.prototype = { allowsAttribute$3(element, attributeName, value) { if (this.super$_SimpleNodeValidator$allowsAttribute(element, attributeName, value)) return true; if (attributeName === "template" && value === "") return true; if (element.getAttribute("template") === "") return this._templateAttrs.contains$1(0, attributeName); return false; } }; A._TemplatingNodeValidator_closure.prototype = { call$1(attr) { return "TEMPLATE::" + A.S(attr); }, $signature: 108 }; A._SvgNodeValidator.prototype = { allowsElement$1(element) { var t1; if (type$.ScriptElement._is(element)) return false; t1 = type$.SvgElement._is(element); if (t1 && A.Element__safeTagName(element) === "foreignObject") return false; if (t1) return true; return false; }, allowsAttribute$3(element, attributeName, value) { if (attributeName === "is" || B.JSString_methods.startsWith$1(attributeName, "on")) return false; return this.allowsElement$1(element); }, $isNodeValidator: 1 }; A.FixedSizeListIterator.prototype = { moveNext$0() { var _this = this, nextPosition = _this._position + 1, t1 = _this._html$_length; if (nextPosition < t1) { _this._current = J.$index$asx(_this._array, nextPosition); _this._position = nextPosition; return true; } _this._current = null; _this._position = t1; return false; }, get$current(_) { return this._current; } }; A.Console.prototype = { group$1(arg) { return typeof console != "undefined" ? window.console.group(arg) : null; }, warn$1(arg) { return typeof console != "undefined" ? window.console.warn(arg) : null; } }; A._DOMWindowCrossFrame.prototype = {$isEventTarget: 1}; A._SameOriginUriPolicy.prototype = {}; A._ValidatingTreeSanitizer.prototype = { sanitizeTree$1(node) { var previousTreeModifications, walk = new A._ValidatingTreeSanitizer_sanitizeTree_walk(this); do { previousTreeModifications = this.numTreeModifications; walk.call$2(node, null); } while (previousTreeModifications !== this.numTreeModifications); }, _removeNode$2(node, $parent) { ++this.numTreeModifications; if ($parent == null || $parent !== node.parentNode) J.remove$0$ax(node); else $parent.removeChild(node); }, _sanitizeUntrustedElement$2(element, $parent) { var corruptedTest1, elementText, elementTagName, exception, t1, corrupted = true, attrs = null, isAttr = null; try { attrs = J.get$attributes$x(element); isAttr = attrs._html$_element.getAttribute("is"); corruptedTest1 = function(element) { if (!(element.attributes instanceof NamedNodeMap)) return true; if (element.id == "lastChild" || element.name == "lastChild" || element.id == "previousSibling" || element.name == "previousSibling" || element.id == "children" || element.name == "children") return true; var childNodes = element.childNodes; if (element.lastChild && element.lastChild !== childNodes[childNodes.length - 1]) return true; if (element.children) if (!(element.children instanceof HTMLCollection || element.children instanceof NodeList)) return true; var length = 0; if (element.children) length = element.children.length; for (var i = 0; i < length; i++) { var child = element.children[i]; if (child.id == "attributes" || child.name == "attributes" || child.id == "lastChild" || child.name == "lastChild" || child.id == "previousSibling" || child.name == "previousSibling" || child.id == "children" || child.name == "children") return true; } return false; }(element); corrupted = corruptedTest1 ? true : !(element.attributes instanceof NamedNodeMap); } catch (exception) { } elementText = "element unprintable"; try { elementText = J.toString$0$(element); } catch (exception) { } try { elementTagName = A.Element__safeTagName(element); this._sanitizeElement$7(element, $parent, corrupted, elementText, elementTagName, attrs, isAttr); } catch (exception) { if (A.unwrapException(exception) instanceof A.ArgumentError) throw exception; else { this._removeNode$2(element, $parent); window; t1 = A.S(elementText); if (typeof console != "undefined") window.console.warn("Removing corrupted element " + t1); } } }, _sanitizeElement$7(element, $parent, corrupted, text, tag, attrs, isAttr) { var t1, keys, i, t2, $name, t3, t4, _this = this; if (corrupted) { _this._removeNode$2(element, $parent); window; if (typeof console != "undefined") window.console.warn("Removing element due to corrupted attributes on <" + text + ">"); return; } if (!_this.validator.allowsElement$1(element)) { _this._removeNode$2(element, $parent); window; t1 = A.S($parent); if (typeof console != "undefined") window.console.warn("Removing disallowed element <" + A.S(tag) + "> from " + t1); return; } if (isAttr != null) if (!_this.validator.allowsAttribute$3(element, "is", isAttr)) { _this._removeNode$2(element, $parent); window; if (typeof console != "undefined") window.console.warn("Removing disallowed type extension <" + A.S(tag) + ' is="' + isAttr + '">'); return; } t1 = attrs.get$keys(attrs); keys = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); for (i = attrs.get$keys(attrs).length - 1, t1 = attrs._html$_element, t2 = "Removing disallowed attribute <" + A.S(tag) + " "; i >= 0; --i) { $name = keys[i]; t3 = _this.validator; t4 = J.toLowerCase$0$s($name); A._asStringS($name); if (!t3.allowsAttribute$3(element, t4, t1.getAttribute($name))) { window; t3 = t1.getAttribute($name); if (typeof console != "undefined") window.console.warn(t2 + $name + '="' + A.S(t3) + '">'); t1.removeAttribute($name); } } if (type$.TemplateElement._is(element)) { t1 = element.content; t1.toString; _this.sanitizeTree$1(t1); } } }; A._ValidatingTreeSanitizer_sanitizeTree_walk.prototype = { call$2(node, $parent) { var child, nextChild, t2, t3, exception, t1 = this.$this; switch (node.nodeType) { case 1: t1._sanitizeUntrustedElement$2(node, $parent); break; case 8: case 11: case 3: case 4: break; default: t1._removeNode$2(node, $parent); } child = node.lastChild; for (; child != null;) { nextChild = null; try { nextChild = child.previousSibling; if (nextChild != null) { t2 = nextChild.nextSibling; t3 = child; t3 = t2 == null ? t3 != null : t2 !== t3; t2 = t3; } else t2 = false; if (t2) { t2 = A.StateError$("Corrupt HTML"); throw A.wrapException(t2); } } catch (exception) { t2 = child; ++t1.numTreeModifications; t3 = t2.parentNode; if (node == null ? t3 != null : node !== t3) { if (t3 != null) t3.removeChild(t2); } else node.removeChild(t2); child = null; nextChild = node.lastChild; } if (child != null) this.call$2(child, node); child = nextChild; } }, $signature: 3313 }; A._CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase.prototype = {}; A._DomRectList_JavaScriptObject_ListMixin.prototype = {}; A._DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._DomStringList_JavaScriptObject_ListMixin.prototype = {}; A._DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._FileList_JavaScriptObject_ListMixin.prototype = {}; A._FileList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._HtmlCollection_JavaScriptObject_ListMixin.prototype = {}; A._HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._MidiInputMap_JavaScriptObject_MapMixin.prototype = {}; A._MidiOutputMap_JavaScriptObject_MapMixin.prototype = {}; A._MimeTypeArray_JavaScriptObject_ListMixin.prototype = {}; A._MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._NodeList_JavaScriptObject_ListMixin.prototype = {}; A._NodeList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._PluginArray_JavaScriptObject_ListMixin.prototype = {}; A._PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._RtcStatsReport_JavaScriptObject_MapMixin.prototype = {}; A._SourceBufferList_EventTarget_ListMixin.prototype = {}; A._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin.prototype = {}; A._SpeechGrammarList_JavaScriptObject_ListMixin.prototype = {}; A._SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._Storage_JavaScriptObject_MapMixin.prototype = {}; A._TextTrackCueList_JavaScriptObject_ListMixin.prototype = {}; A._TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._TextTrackList_EventTarget_ListMixin.prototype = {}; A._TextTrackList_EventTarget_ListMixin_ImmutableListMixin.prototype = {}; A._TouchList_JavaScriptObject_ListMixin.prototype = {}; A._TouchList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.__CssRuleList_JavaScriptObject_ListMixin.prototype = {}; A.__CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.__GamepadList_JavaScriptObject_ListMixin.prototype = {}; A.__GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.__NamedNodeMap_JavaScriptObject_ListMixin.prototype = {}; A.__NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin.prototype = {}; A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.__StyleSheetList_JavaScriptObject_ListMixin.prototype = {}; A.__StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._StructuredClone.prototype = { findSlot$1(value) { var i, t1 = this.values, $length = t1.length; for (i = 0; i < $length; ++i) if (t1[i] === value) return i; t1.push(value); this.copies.push(null); return $length; }, walk$1(e) { var slot, t2, copy, _this = this, t1 = {}; if (e == null) return e; if (A._isBool(e)) return e; if (typeof e == "number") return e; if (typeof e == "string") return e; if (e instanceof A.DateTime) return new Date(e._value); if (type$.RegExp._is(e)) throw A.wrapException(A.UnimplementedError$("structured clone of RegExp")); if (type$.File._is(e)) return e; if (type$.Blob._is(e)) return e; if (type$.FileList._is(e)) return e; if (type$.ImageData._is(e)) return e; if (type$.NativeByteBuffer._is(e) || type$.NativeTypedData._is(e) || type$.MessagePort._is(e)) return e; if (type$.Map_dynamic_dynamic._is(e)) { slot = _this.findSlot$1(e); t2 = _this.copies; copy = t1.copy = t2[slot]; if (copy != null) return copy; copy = {}; t1.copy = copy; t2[slot] = copy; J.forEach$1$ax(e, new A._StructuredClone_walk_closure(t1, _this)); return t1.copy; } if (type$.List_dynamic._is(e)) { slot = _this.findSlot$1(e); copy = _this.copies[slot]; if (copy != null) return copy; return _this.copyList$2(e, slot); } if (type$.JSObject._is(e)) { slot = _this.findSlot$1(e); t2 = _this.copies; copy = t1.copy = t2[slot]; if (copy != null) return copy; copy = {}; t1.copy = copy; t2[slot] = copy; _this.forEachObjectKey$2(e, new A._StructuredClone_walk_closure0(t1, _this)); return t1.copy; } throw A.wrapException(A.UnimplementedError$("structured clone of other type")); }, copyList$2(e, slot) { var i, t1 = J.getInterceptor$asx(e), $length = t1.get$length(e), copy = new Array($length); this.copies[slot] = copy; for (i = 0; i < $length; ++i) copy[i] = this.walk$1(t1.$index(e, i)); return copy; } }; A._StructuredClone_walk_closure.prototype = { call$2(key, value) { this._box_0.copy[key] = this.$this.walk$1(value); }, $signature: 123 }; A._StructuredClone_walk_closure0.prototype = { call$2(key, value) { this._box_0.copy[key] = this.$this.walk$1(value); }, $signature: 193 }; A._AcceptStructuredClone.prototype = { findSlot$1(value) { var i, t1 = this.values, $length = t1.length; for (i = 0; i < $length; ++i) if (t1[i] === value) return i; t1.push(value); this.copies.push(null); return $length; }, walk$1(e) { var slot, t1, copy, t2, l, $length, i, _this = this, _box_0 = {}; if (e == null) return e; if (A._isBool(e)) return e; if (typeof e == "number") return e; if (typeof e == "string") return e; if (e instanceof Date) return A.DateTime$fromMillisecondsSinceEpoch(e.getTime(), true); if (e instanceof RegExp) throw A.wrapException(A.UnimplementedError$("structured clone of RegExp")); if (typeof Promise != "undefined" && e instanceof Promise) return A.promiseToFuture(e, type$.dynamic); if (A.isJavaScriptSimpleObject(e)) { slot = _this.findSlot$1(e); t1 = _this.copies; copy = _box_0.copy = t1[slot]; if (copy != null) return copy; t2 = type$.dynamic; copy = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); _box_0.copy = copy; t1[slot] = copy; _this.forEachJsField$2(e, new A._AcceptStructuredClone_walk_closure(_box_0, _this)); return _box_0.copy; } if (e instanceof Array) { l = e; slot = _this.findSlot$1(l); t1 = _this.copies; copy = t1[slot]; if (copy != null) return copy; t2 = J.getInterceptor$asx(l); $length = t2.get$length(l); copy = _this.mustCopy ? new Array($length) : l; t1[slot] = copy; for (t1 = J.getInterceptor$ax(copy), i = 0; i < $length; ++i) t1.$indexSet(copy, i, _this.walk$1(t2.$index(l, i))); return copy; } return e; }, convertNativeToDart_AcceptStructuredClone$2$mustCopy(object, mustCopy) { this.mustCopy = mustCopy; return this.walk$1(object); } }; A._AcceptStructuredClone_walk_closure.prototype = { call$2(key, value) { var t1 = this._box_0.copy, t2 = this.$this.walk$1(value); J.$indexSet$ax(t1, key, t2); return t2; }, $signature: 3195 }; A._convertDartToNative_Value_closure.prototype = { call$1(element) { this.array.push(A._convertDartToNative_Value(element)); }, $signature: 83 }; A.convertDartToNative_Dictionary_closure.prototype = { call$2(key, value) { this.object[key] = A._convertDartToNative_Value(value); }, $signature: 123 }; A._StructuredCloneDart2Js.prototype = { forEachObjectKey$2(object, action) { var t1, t2, _i, key; for (t1 = Object.keys(object), t2 = t1.length, _i = 0; _i < t2; ++_i) { key = t1[_i]; action.call$2(key, object[key]); } } }; A._AcceptStructuredCloneDart2Js.prototype = { forEachJsField$2(object, action) { var t1, t2, _i, key; for (t1 = Object.keys(object), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { key = t1[_i]; action.call$2(key, object[key]); } } }; A.FilteredElementList0.prototype = { get$_html_common$_iterable() { var t1 = this._html_common$_childNodes, t2 = A._instanceType(t1); return new A.MappedIterable(new A.WhereIterable(t1, new A.FilteredElementList__iterable_closure(), t2._eval$1("WhereIterable")), new A.FilteredElementList__iterable_closure0(), t2._eval$1("MappedIterable")); }, forEach$1(_, f) { B.JSArray_methods.forEach$1(A.List_List$from(this.get$_html_common$_iterable(), false, type$.Element), f); }, $indexSet(_, index, value) { var t1 = this.get$_html_common$_iterable(); J.replaceWith$1$x(t1._f.call$1(J.elementAt$1$ax(t1.__internal$_iterable, index)), value); }, set$length(_, newLength) { var len = J.get$length$asx(this.get$_html_common$_iterable().__internal$_iterable); if (newLength >= len) return; else if (newLength < 0) throw A.wrapException(A.ArgumentError$("Invalid list length", null)); this.removeRange$2(0, newLength, len); }, add$1(_, value) { this._html_common$_childNodes._this.appendChild(value); }, addAll$1(_, iterable) { var t1, t2; for (t1 = J.get$iterator$ax(iterable), t2 = this._html_common$_childNodes._this; t1.moveNext$0();) t2.appendChild(t1.get$current(t1)); }, contains$1(_, needle) { if (!type$.Element._is(needle)) return false; return needle.parentNode === this._html_common$_node; }, get$reversed(_) { var t1 = A.List_List$from(this.get$_html_common$_iterable(), false, type$.Element); return new A.ReversedListIterable(t1, A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("Cannot sort filtered list")); }, setRange$4(_, start, end, iterable, skipCount) { throw A.wrapException(A.UnsupportedError$("Cannot setRange on filtered list")); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(_, start, end) { var t1 = this.get$_html_common$_iterable(); t1 = A.SkipIterable_SkipIterable(t1, start, t1.$ti._eval$1("Iterable.E")); B.JSArray_methods.forEach$1(A.List_List$from(A.TakeIterable_TakeIterable(t1, end - start, A._instanceType(t1)._eval$1("Iterable.E")), true, type$.dynamic), new A.FilteredElementList_removeRange_closure0()); }, clear$0(_) { J._clearChildren$0$x(this._html_common$_childNodes._this); }, removeLast$0(_) { var t1 = this.get$_html_common$_iterable(), result = t1._f.call$1(J.get$last$ax(t1.__internal$_iterable)); if (result != null) J.remove$0$ax(result); return result; }, insert$2(_, index, value) { var t1, element; if (index == J.get$length$asx(this.get$_html_common$_iterable().__internal$_iterable)) this._html_common$_childNodes._this.appendChild(value); else { t1 = this.get$_html_common$_iterable(); element = t1._f.call$1(J.elementAt$1$ax(t1.__internal$_iterable, index)); element.parentNode.insertBefore(value, element); } }, insertAll$2(_, index, iterable) { var t1, element; if (index === J.get$length$asx(this.get$_html_common$_iterable().__internal$_iterable)) this.addAll$1(0, iterable); else { t1 = this.get$_html_common$_iterable(); element = t1._f.call$1(J.elementAt$1$ax(t1.__internal$_iterable, index)); t1 = element.parentNode; t1.toString; J.insertAllBefore$2$x(t1, iterable, element); } }, removeAt$1(_, index) { var t1 = this.get$_html_common$_iterable(); t1 = t1._f.call$1(J.elementAt$1$ax(t1.__internal$_iterable, index)); J.remove$0$ax(t1); return t1; }, remove$1(_, element) { if (!type$.Element._is(element)) return false; if (this.contains$1(0, element)) { J.remove$0$ax(element); return true; } else return false; }, get$length(_) { return J.get$length$asx(this.get$_html_common$_iterable().__internal$_iterable); }, $index(_, index) { var t1 = this.get$_html_common$_iterable(); return t1._f.call$1(J.elementAt$1$ax(t1.__internal$_iterable, index)); }, get$iterator(_) { var t1 = A.List_List$from(this.get$_html_common$_iterable(), false, type$.Element); return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); } }; A.FilteredElementList__iterable_closure.prototype = { call$1(n) { return type$.Element._is(n); }, $signature: 538 }; A.FilteredElementList__iterable_closure0.prototype = { call$1(n) { return type$.Element._as(n); }, $signature: 3174 }; A.FilteredElementList_removeRange_closure0.prototype = { call$1(el) { return J.remove$0$ax(el); }, $signature: 83 }; A.Cursor.prototype = {}; A.CursorWithValue.prototype = { get$value(receiver) { return new A._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(receiver.value, false); } }; A.Database.prototype = { get$name(receiver) { return receiver.name; } }; A.Index.prototype = { get$name(receiver) { return receiver.name; } }; A.KeyRange.prototype = {$isKeyRange: 1}; A.ObjectStore.prototype = { get$name(receiver) { return receiver.name; } }; A.Observation.prototype = { get$value(receiver) { return receiver.value; } }; A.VersionChangeEvent.prototype = { get$target(receiver) { return receiver.target; } }; A.OSError.prototype = { toString$0(_) { var t2, t1 = this.message; if (t1.length !== 0) { t1 = "OS Error: " + t1; t2 = this.errorCode; if (t2 !== -1) t1 = t1 + ", errno = " + J.toString$0$(t2); } else { t1 = this.errorCode; t1 = t1 !== -1 ? "OS Error: errno = " + J.toString$0$(t1) : "OS Error"; } return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1, get$message(receiver) { return this.message; } }; A._Directory.prototype = { toString$0(_) { return "Directory: '" + A.S(this._path) + "'"; }, $isDirectory: 1 }; A.FileMode.prototype = {}; A.FileSystemException.prototype = { toString$0(_) { var t2, _this = this, _s19_ = "FileSystemException", t1 = _this.message; if (t1.length !== 0) { t1 = _s19_ + (": " + t1); t2 = _this.path; if (t2 != null) t1 += ", path = '" + t2 + "'"; t2 = _this.osError; if (t2 != null) t1 += " (" + t2.toString$0(0) + ")"; } else { t1 = _this.osError; if (t1 != null) { t1 = _s19_ + (": " + t1.toString$0(0)); t2 = _this.path; if (t2 != null) t1 += ", path = '" + t2 + "'"; } else { t1 = _this.path; t1 = t1 != null ? _s19_ + (": " + t1) : _s19_; } } return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1, get$message(receiver) { return this.message; } }; A._FileStream.prototype = { listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { var _this = this, t1 = A.StreamController_StreamController(new A._FileStream_listen_closure(_this), _this.get$_io$_start(_this), _this.get$_readBlock(), true, type$.Uint8List); _this.___FileStream__controller = t1; t1 = A._lateReadCheck(t1, "_controller"); return new A._ControllerStream(t1, A._instanceType(t1)._eval$1("_ControllerStream<1>")).listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, _closeFile$0() { var _this = this; if (_this._readInProgress || _this._closed) return _this._closeCompleter.future; _this._closed = true; A._lateReadCheck(_this.___FileStream__openedFile, "_openedFile").close$0(0).catchError$1(A._lateReadCheck(_this.___FileStream__controller, "_controller").get$addError()).whenComplete$1(new A._FileStream__closeFile_done(_this)); return _this._closeCompleter.future; }, _readBlock$0() { var _this = this, t1 = {}; if (_this._readInProgress) return; if (_this._atEnd) { _this._closeFile$0(); return; } _this._readInProgress = true; t1.readBytes = 65536; A._lateReadCheck(_this.___FileStream__openedFile, "_openedFile").read$1(0, 65536).then$1$1(0, new A._FileStream__readBlock_closure(t1, _this), type$.Null).catchError$1(new A._FileStream__readBlock_closure0(_this)); }, _io$_start$0(_) { var e, s, exception, _this = this, onOpenFile = new A._FileStream__start_onOpenFile(_this, new A._FileStream__start_onReady(_this)), openFailed = new A._FileStream__start_openFailed(_this), path = _this._path; if (path != null) A.File_File(path).open$1$mode(0, B.FileMode_0).then$1$2$onError(0, onOpenFile, openFailed, type$.void); else try { A._File__openStdio(0); onOpenFile.call$1(null); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); openFailed.call$2(e, s); } } }; A._FileStream_listen_closure.prototype = { call$0() { var t1 = this.$this; t1._unsubscribed = true; return t1._closeFile$0(); }, $signature: 3155 }; A._FileStream__closeFile_done.prototype = { call$0() { var t1 = this.$this; t1._closeCompleter.complete$0(0); A._lateReadCheck(t1.___FileStream__controller, "_controller").close$0(0); }, $signature: 0 }; A._FileStream__readBlock_closure.prototype = { call$1(block) { var t2, t3, _s11_ = "_controller", t1 = this.$this; t1._readInProgress = false; if (t1._unsubscribed) { t1._closeFile$0(); return; } t2 = J.getInterceptor$asx(block); t1._io$_position = t1._io$_position + t2.get$length(block); if (t2.get$length(block) >= this._box_0.readBytes) t2 = false; else t2 = true; if (t2) t1._atEnd = true; if (!t1._atEnd) { t2 = A._lateReadCheck(t1.___FileStream__controller, _s11_); t3 = t2._state; t2 = !((t3 & 1) !== 0 ? (t2.get$_async$_subscription()._state & 4) !== 0 : (t3 & 2) === 0); } else t2 = false; if (t2) t1._readBlock$0(); A._lateReadCheck(t1.___FileStream__controller, _s11_).add$1(0, block); if (t1._atEnd) t1._closeFile$0(); }, $signature: 618 }; A._FileStream__readBlock_closure0.prototype = { call$2(e, s) { var t1 = this.$this; if (!t1._unsubscribed) { A._lateReadCheck(t1.___FileStream__controller, "_controller").addError$2(e, s); t1._closeFile$0(); t1._unsubscribed = true; } }, $signature: 193 }; A._FileStream__start_onReady.prototype = { call$1(file) { var t1 = this.$this; t1.___FileStream__openedFile = file; t1._readInProgress = false; t1._readBlock$0(); }, $signature: 656 }; A._FileStream__start_onOpenFile.prototype = { call$1(file) { var t1 = this.$this, t2 = t1._io$_position, t3 = this.onReady; if (t2 > 0) file.setPosition$1(0, t2).then$1$2$onError(0, t3, new A._FileStream__start_onOpenFile_closure(t1), type$.void); else t3.call$1(file); }, $signature: 656 }; A._FileStream__start_onOpenFile_closure.prototype = { call$2(e, s) { var t1 = this.$this; A._lateReadCheck(t1.___FileStream__controller, "_controller").addError$2(e, s); t1._readInProgress = false; t1._closeFile$0(); }, $signature: 193 }; A._FileStream__start_openFailed.prototype = { call$2(error, stackTrace) { var _s11_ = "_controller", t1 = this.$this; A._lateReadCheck(t1.___FileStream__controller, _s11_).addError$2(error, stackTrace); A._lateReadCheck(t1.___FileStream__controller, _s11_).close$0(0); t1._closeCompleter.complete$0(0); }, $signature: 123 }; A._File.prototype = { existsSync$0() { A._File__exists(A._Namespace__namespace(), this._rawPath); }, open$1$mode(_, mode) { if (mode !== B.FileMode_0 && mode !== B.FileMode_1 && mode !== B.FileMode_2 && mode !== B.FileMode_3 && mode !== B.FileMode_4) return A.Future_Future$error(new A.ArgumentError(false, null, null, "Invalid file mode for this operation"), null, type$.RandomAccessFile); return A._File__dispatchWithNamespace(5, [null, this._rawPath, mode._io$_mode]).then$1$1(0, new A._File_open_closure(this), type$.RandomAccessFile); }, open$0($receiver) { return this.open$1$mode($receiver, B.FileMode_0); }, length$0(_) { return A._File__dispatchWithNamespace(12, [null, this._rawPath]).then$1$1(0, new A._File_length_closure(this), type$.int); }, lengthSync$0() { A._File__lengthFromPath(A._Namespace__namespace(), this._rawPath); }, readAsBytes$0() { return this.open$0(0).then$1$1(0, new A._File_readAsBytes_closure(new A._File_readAsBytes_readDataChunked()), type$.Uint8List); }, toString$0(_) { return "File: '" + A.S(this._path) + "'"; }, $isFile0: 1 }; A._File_open_closure.prototype = { call$1(response) { var t1; response.$index(0, 0); t1 = A._exceptionFromResponse(response, "Cannot open file", this.$this._path); throw A.wrapException(t1); }, $signature: 3134 }; A._File_length_closure.prototype = { call$1(response) { var t1; response.$index(0, 0); t1 = A._exceptionFromResponse(response, "Cannot retrieve length of file", this.$this._path); throw A.wrapException(t1); }, $signature: 3092 }; A._File_readAsBytes_readDataChunked.prototype = { call$1(file) { var t1 = A._setArrayType([], type$.JSArray_Uint8List), t2 = new A._Future($.Zone__current, type$._Future_Uint8List); new A._File_readAsBytes_readDataChunked_read(file, new A._BytesBuilder(t1), new A._AsyncCompleter(t2, type$._AsyncCompleter_Uint8List)).call$0(); return t2; }, $signature: 670 }; A._File_readAsBytes_readDataChunked_read.prototype = { call$0() { var _this = this, t1 = _this.completer; _this.file.read$1(0, 65536).then$1$2$onError(0, new A._File_readAsBytes_readDataChunked_read_closure(_this.builder, _this, t1), t1.get$completeError(), type$.Null); }, $signature: 0 }; A._File_readAsBytes_readDataChunked_read_closure.prototype = { call$1(data) { var t1 = this.builder; if (J.get$length$asx(data) > 0) { t1.add$1(0, data); this.read.call$0(); } else this.completer.complete$1(0, t1.takeBytes$0()); }, $signature: 618 }; A._File_readAsBytes_closure.prototype = { call$1(file) { return file.length$0(0).then$1$1(0, new A._File_readAsBytes__closure(this.readDataChunked, file), type$.Uint8List).whenComplete$1(file.get$close(file)); }, $signature: 670 }; A._File_readAsBytes__closure.prototype = { call$1($length) { if ($length === 0) return this.readDataChunked.call$1(this.file); return this.file.read$1(0, $length); }, $signature: 3074 }; A.FileSystemEntityType.prototype = { toString$0(_) { return B.List_file_directory_link_notFound[this._io$_type]; } }; A.FileSystemEntity.prototype = {}; A.SystemEncoding.prototype = { get$name(_) { return "system"; }, get$encoder() { $.$get$Platform__operatingSystem(); return B.C_Utf8Encoder; } }; A.JsObject__convertDataTree__convert.prototype = { call$1(o) { var convertedMap, t2, key, convertedList, t1 = this._convertedObjects; if (t1.containsKey$1(0, o)) return t1.$index(0, o); if (type$.Map_dynamic_dynamic._is(o)) { convertedMap = {}; t1.$indexSet(0, o, convertedMap); for (t1 = J.getInterceptor$x(o), t2 = J.get$iterator$ax(t1.get$keys(o)); t2.moveNext$0();) { key = t2.get$current(t2); convertedMap[key] = this.call$1(t1.$index(o, key)); } return convertedMap; } else if (type$.Iterable_dynamic._is(o)) { convertedList = []; t1.$indexSet(0, o, convertedList); B.JSArray_methods.addAll$1(convertedList, J.map$1$1$ax(o, this, type$.dynamic)); return convertedList; } else return A._convertToJS(o); }, $signature: 548 }; A._convertToJS_closure.prototype = { call$1(o) { var jsFunction = function(_call, f, captureThis) { return function() { return _call(f, captureThis, this, Array.prototype.slice.apply(arguments)); }; }(A._callDartFunction, o, false); A._defineProperty(jsFunction, $.$get$DART_CLOSURE_PROPERTY_NAME(), o); return jsFunction; }, $signature: 12 }; A._convertToJS_closure0.prototype = { call$1(o) { return new this.ctor(o); }, $signature: 12 }; A._wrapToDart_closure.prototype = { call$1(o) { return new A.JsFunction(o); }, $signature: 3052 }; A._wrapToDart_closure0.prototype = { call$1(o) { return new A.JsArray(o, type$.JsArray_dynamic); }, $signature: 3016 }; A._wrapToDart_closure1.prototype = { call$1(o) { return new A.JsObject(o); }, $signature: 2993 }; A.JsObject.prototype = { $index(_, property) { if (typeof property != "string" && typeof property != "number") throw A.wrapException(A.ArgumentError$("property is not a String or num", null)); return A._convertToDart(this._js$_jsObject[property]); }, $indexSet(_, property, value) { if (typeof property != "string" && typeof property != "number") throw A.wrapException(A.ArgumentError$("property is not a String or num", null)); this._js$_jsObject[property] = A._convertToJS(value); }, $eq(_, other) { if (other == null) return false; return other instanceof A.JsObject && this._js$_jsObject === other._js$_jsObject; }, toString$0(_) { var t1, exception; try { t1 = String(this._js$_jsObject); return t1; } catch (exception) { t1 = this.super$Object$toString(0); return t1; } }, callMethod$2(method, args) { var t1 = this._js$_jsObject, t2 = args == null ? null : A.List_List$from(new A.MappedListIterable(args, A.js___convertToJS$closure(), A._arrayInstanceType(args)._eval$1("MappedListIterable<1,@>")), true, type$.dynamic); return A._convertToDart(t1[method].apply(t1, t2)); }, callMethod$1(method) { return this.callMethod$2(method, null); }, get$hashCode(_) { return 0; } }; A.JsFunction.prototype = {}; A.JsArray.prototype = { _checkIndex$1(index) { var t1, _this = this; if (A._isInt(index)) t1 = index < 0 || index >= _this.get$length(_this); else t1 = false; if (t1) throw A.wrapException(A.RangeError$range(index, 0, _this.get$length(_this), null, null)); }, $index(_, index) { if (A._isInt(index)) this._checkIndex$1(index); return this.super$JsObject$$index(0, index); }, $indexSet(_, index, value) { if (A._isInt(index)) this._checkIndex$1(index); this.super$_JsArray_JsObject_ListMixin$$indexSet(0, index, value); }, get$length(_) { var len = this._js$_jsObject.length; if (typeof len === "number" && len >>> 0 === len) return len; throw A.wrapException(A.StateError$("Bad JsArray length")); }, set$length(_, $length) { this.super$_JsArray_JsObject_ListMixin$$indexSet(0, "length", $length); }, add$1(_, value) { this.callMethod$2("push", [value]); }, addAll$1(_, iterable) { this.callMethod$2("push", iterable instanceof Array ? iterable : A.List_List$from(iterable, true, type$.dynamic)); }, insert$2(_, index, element) { var t1, _this = this; if (A._isInt(index)) t1 = index < 0 || index >= _this.get$length(_this) + 1; else t1 = false; if (t1) A.throwExpression(A.RangeError$range(index, 0, _this.get$length(_this), null, null)); _this.callMethod$2("splice", [index, 0, element]); }, removeAt$1(_, index) { this._checkIndex$1(index); return J.$index$asx(this.callMethod$2("splice", [index, 1]), 0); }, removeLast$0(_) { if (this.get$length(this) === 0) throw A.wrapException(A.RangeError$(-1)); return this.callMethod$1("pop"); }, removeRange$2(_, start, end) { A.JsArray__checkRange(start, end, this.get$length(this)); this.callMethod$2("splice", [start, end - start]); }, setRange$4(_, start, end, iterable, skipCount) { var $length, args; A.JsArray__checkRange(start, end, this.get$length(this)); $length = end - start; if ($length === 0) return; if (skipCount < 0) throw A.wrapException(A.ArgumentError$(skipCount, null)); args = [start, $length]; B.JSArray_methods.addAll$1(args, J.skip$1$ax(iterable, skipCount).take$1(0, $length)); this.callMethod$2("splice", args); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, sort$1(_, compare) { this.callMethod$2("sort", compare == null ? [] : [compare]); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A._JsArray_JsObject_ListMixin.prototype = { $indexSet(_, property, value) { return this.super$JsObject$$indexSet(0, property, value); } }; A._convertDataTree__convert.prototype = { call$1(o) { var convertedMap, t2, key, convertedList, t1 = this._convertedObjects; if (t1.containsKey$1(0, o)) return t1.$index(0, o); if (type$.Map_dynamic_dynamic._is(o)) { convertedMap = {}; t1.$indexSet(0, o, convertedMap); for (t1 = J.getInterceptor$x(o), t2 = J.get$iterator$ax(t1.get$keys(o)); t2.moveNext$0();) { key = t2.get$current(t2); convertedMap[key] = this.call$1(t1.$index(o, key)); } return convertedMap; } else if (type$.Iterable_dynamic._is(o)) { convertedList = []; t1.$indexSet(0, o, convertedList); B.JSArray_methods.addAll$1(convertedList, J.map$1$1$ax(o, this, type$.dynamic)); return convertedList; } else return o; }, $signature: 506 }; A.NullRejectionException.prototype = { toString$0(_) { return "Promise was rejected with a value of `" + (this.isUndefined ? "undefined" : "null") + "`."; }, $isException: 1 }; A.promiseToFuture_closure.prototype = { call$1(r) { return this.completer.complete$1(0, r); }, $signature: 83 }; A.promiseToFuture_closure0.prototype = { call$1(e) { if (e == null) return this.completer.completeError$1(new A.NullRejectionException(e === undefined)); return this.completer.completeError$1(e); }, $signature: 83 }; A._JSRandom.prototype = { nextInt$1(max) { if (max <= 0 || max > 4294967296) throw A.wrapException(A.RangeError$(string$.max_mu + max)); return Math.random() * max >>> 0; } }; A._Random.prototype = { _Random$1(seed) { var low, high, tmplow, low0, t1, t2, t3, _this = this, _4294967296 = 4294967296, empty_seed = seed < 0 ? -1 : 0; do { low = seed >>> 0; seed = B.JSInt_methods._tdivFast$1(seed - low, _4294967296); high = seed >>> 0; seed = B.JSInt_methods._tdivFast$1(seed - high, _4294967296); tmplow = (~low >>> 0) + (low << 21 >>> 0); low0 = tmplow >>> 0; high = (~high >>> 0) + ((high << 21 | low >>> 11) >>> 0) + B.JSInt_methods._tdivFast$1(tmplow - low0, _4294967296) >>> 0; tmplow = ((low0 ^ (low0 >>> 24 | high << 8)) >>> 0) * 265; low = tmplow >>> 0; high = ((high ^ high >>> 24) >>> 0) * 265 + B.JSInt_methods._tdivFast$1(tmplow - low, _4294967296) >>> 0; tmplow = ((low ^ (low >>> 14 | high << 18)) >>> 0) * 21; low = tmplow >>> 0; high = ((high ^ high >>> 14) >>> 0) * 21 + B.JSInt_methods._tdivFast$1(tmplow - low, _4294967296) >>> 0; low = (low ^ (low >>> 28 | high << 4)) >>> 0; high = (high ^ high >>> 28) >>> 0; tmplow = (low << 31 >>> 0) + low; low0 = tmplow >>> 0; t1 = B.JSInt_methods._tdivFast$1(tmplow - low0, _4294967296); tmplow = _this._lo * 1037; t2 = _this._lo = tmplow >>> 0; t3 = _this._hi * 1037 + B.JSInt_methods._tdivFast$1(tmplow - t2, _4294967296) >>> 0; _this._hi = t3; t2 = (t2 ^ low0) >>> 0; _this._lo = t2; t1 = (t3 ^ high + ((high << 31 | low >>> 1) >>> 0) + t1 >>> 0) >>> 0; _this._hi = t1; } while (seed !== empty_seed); if (t1 === 0 && t2 === 0) _this._lo = 23063; _this._nextState$0(); _this._nextState$0(); _this._nextState$0(); _this._nextState$0(); }, _nextState$0() { var _this = this, t1 = _this._lo, tmpHi = 4294901760 * t1, tmpHiLo = tmpHi >>> 0, tmpLo = 55905 * t1, tmpLoLo = tmpLo >>> 0, newLo = tmpLoLo + tmpHiLo + _this._hi; t1 = newLo >>> 0; _this._lo = t1; _this._hi = B.JSInt_methods._tdivFast$1(tmpLo - tmpLoLo + (tmpHi - tmpHiLo) + (newLo - t1), 4294967296) >>> 0; }, nextInt$1(max) { var t1, rnd32, result, _this = this; if (max <= 0 || max > 4294967296) throw A.wrapException(A.RangeError$(string$.max_mu + max)); t1 = max - 1; if ((max & t1) >>> 0 === 0) { _this._nextState$0(); return (_this._lo & t1) >>> 0; } do { _this._nextState$0(); rnd32 = _this._lo; result = rnd32 % max; } while (rnd32 - result + max >= 4294967296); return result; } }; A.Point.prototype = { toString$0(_) { return "Point(" + A.S(this.x) + ", " + A.S(this.y) + ")"; }, $eq(_, other) { if (other == null) return false; return other instanceof A.Point && this.x == other.x && this.y == other.y; }, get$hashCode(_) { return A.SystemHash_hash2(J.get$hashCode$(this.x), J.get$hashCode$(this.y), 0); }, $add(_, other) { var t1 = this.$ti, t2 = t1._precomputed1; return new A.Point(t2._as(this.x + other.x), t2._as(this.y + other.y), t1); }, $sub(_, other) { var t1 = this.$ti, t2 = t1._precomputed1; return new A.Point(t2._as(this.x - other.x), t2._as(this.y - other.y), t1); }, $mul(_, factor) { var t1 = this.$ti, t2 = t1._precomputed1; return new A.Point(t2._as(this.x * factor), t2._as(this.y * factor), t1); }, distanceTo$1(other) { var dx = this.x - other.x, dy = this.y - other.y; return Math.sqrt(dx * dx + dy * dy); } }; A._RectangleBase.prototype = { get$right(_) { return this.$ti._precomputed1._as(this.left + this.width); }, get$bottom(_) { return this.$ti._precomputed1._as(this.top + this.height); }, toString$0(_) { var _this = this; return "Rectangle (" + A.S(_this.left) + ", " + A.S(_this.top) + ") " + A.S(_this.width) + " x " + A.S(_this.height); }, $eq(_, other) { var t1, t2, t3, t4, _this = this; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = _this.left; t2 = J.getInterceptor$x(other); if (t1 == t2.get$left(other)) { t3 = _this.top; if (t3 == t2.get$top(other)) { t4 = _this.$ti._precomputed1; t1 = t4._as(t1 + _this.width) === t2.get$right(other) && t4._as(t3 + _this.height) === t2.get$bottom(other); } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.left, t2 = _this.top, t3 = _this.$ti._precomputed1; return A.SystemHash_hash4(J.get$hashCode$(t1), J.get$hashCode$(t2), B.JSNumber_methods.get$hashCode(t3._as(t1 + _this.width)), B.JSNumber_methods.get$hashCode(t3._as(t2 + _this.height)), 0); }, containsPoint$1(_, another) { var _this = this, t1 = another.x, t2 = _this.left; if (t1 >= t2) if (t1 <= t2 + _this.width) { t1 = another.y; t2 = _this.top; t1 = t1 >= t2 && t1 <= t2 + _this.height; } else t1 = false; else t1 = false; return t1; }, get$topRight(_) { var _this = this, t1 = _this.$ti; return new A.Point(t1._precomputed1._as(_this.left + _this.width), _this.top, t1._eval$1("Point<1>")); }, get$bottomRight(_) { var _this = this, t1 = _this.$ti, t2 = t1._precomputed1; return new A.Point(t2._as(_this.left + _this.width), t2._as(_this.top + _this.height), t1._eval$1("Point<1>")); }, get$bottomLeft(_) { var _this = this, t1 = _this.$ti; return new A.Point(_this.left, t1._precomputed1._as(_this.top + _this.height), t1._eval$1("Point<1>")); } }; A.Rectangle.prototype = { get$left(receiver) { return this.left; }, get$top(receiver) { return this.top; }, get$width(receiver) { return this.width; }, get$height(receiver) { return this.height; } }; A.Angle.prototype = { get$value(receiver) { return receiver.value; } }; A.ClipPathElement.prototype = {$isClipPathElement: 1}; A.DefsElement.prototype = {$isDefsElement: 1}; A.FEBlendElement.prototype = {$isFEBlendElement: 1}; A.FEColorMatrixElement.prototype = {$isFEColorMatrixElement: 1}; A.FECompositeElement.prototype = {$isFECompositeElement: 1}; A.FEFloodElement.prototype = {$isFEFloodElement: 1}; A.FilterElement.prototype = {$isFilterElement: 1}; A.GeometryElement.prototype = {}; A.GraphicsElement.prototype = {}; A.Length.prototype = { get$value(receiver) { return receiver.value; }, $isLength: 1 }; A.LengthList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return this.$index(receiver, index); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.Number.prototype = { get$value(receiver) { return receiver.value; }, $isNumber: 1 }; A.NumberList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return this.$index(receiver, index); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.PathElement.prototype = {$isPathElement: 1}; A.PointList.prototype = { get$length(receiver) { return receiver.length; } }; A.ScriptElement0.prototype = {$isScriptElement0: 1}; A.StringList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return this.$index(receiver, index); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.SvgElement.prototype = { get$children(receiver) { return new A.FilteredElementList0(receiver, new A._ChildNodeListLazy(receiver)); }, createFragment$3$treeSanitizer$validator(receiver, svg, treeSanitizer, validator) { var t2, fragment, svgFragment, root, t1 = A._setArrayType([], type$.JSArray_NodeValidator); t1.push(A._Html5NodeValidator$(null)); t1.push(A._TemplatingNodeValidator$()); t1.push(new A._SvgNodeValidator()); treeSanitizer = new A._ValidatingTreeSanitizer(new A.NodeValidatorBuilder(t1)); t1 = document; t2 = t1.body; t2.toString; fragment = B.BodyElement_methods.createFragment$2$treeSanitizer(t2, '' + svg + "", treeSanitizer); svgFragment = t1.createDocumentFragment(); fragment.toString; t1 = new A._ChildNodeListLazy(fragment); root = t1.get$single(t1); for (; t1 = root.firstChild, t1 != null;) svgFragment.appendChild(t1); return svgFragment; }, focus$0(receiver) { return receiver.focus(); }, $isSvgElement: 1 }; A.SvgSvgElement.prototype = {$isSvgSvgElement: 1}; A.Transform0.prototype = {$isTransform0: 1}; A.TransformList.prototype = { get$length(receiver) { return receiver.length; }, $index(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw A.wrapException(A.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet(receiver, index, value) { throw A.wrapException(A.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length(receiver, value) { throw A.wrapException(A.UnsupportedError$("Cannot resize immutable List.")); }, get$first(receiver) { if (receiver.length > 0) return receiver[0]; throw A.wrapException(A.StateError$("No elements")); }, get$last(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw A.wrapException(A.StateError$("No elements")); }, elementAt$1(receiver, index) { return this.$index(receiver, index); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A._LengthList_JavaScriptObject_ListMixin.prototype = {}; A._LengthList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._NumberList_JavaScriptObject_ListMixin.prototype = {}; A._NumberList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._StringList_JavaScriptObject_ListMixin.prototype = {}; A._StringList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A._TransformList_JavaScriptObject_ListMixin.prototype = {}; A._TransformList_JavaScriptObject_ListMixin_ImmutableListMixin.prototype = {}; A.Endian.prototype = {}; A.ClipOp.prototype = { toString$0(_) { return "ClipOp." + this._core$_name; } }; A.PathFillType.prototype = { toString$0(_) { return "PathFillType." + this._core$_name; } }; A._ChannelCallbackRecord.prototype = { invoke$2(dataArg, callbackArg) { A.invoke2(this._callback, this._ui$_zone, dataArg, callbackArg); } }; A._StoredMessage.prototype = { invoke$1(dataArg) { A.invoke1(this._callback, this._ui$_zone, dataArg, type$.nullable_ByteData); } }; A._Channel.prototype = { get$length(_) { var t1 = this._queue; return t1.get$length(t1); }, push$1(message) { var t1, result, _this = this; if (!_this._draining && _this._channelCallbackRecord != null) { _this._channelCallbackRecord.invoke$2(message.data, message.get$invoke()); return false; } t1 = _this._capacity; if (t1 <= 0) return true; result = _this._dropOverflowMessages$1(t1 - 1); _this._queue._add$1(0, message); return result; }, _dropOverflowMessages$1(lengthLimit) { var t1, t2, result, message; for (t1 = this._queue, t2 = type$.nullable_ByteData, result = false; (t1._tail - t1._head & t1._table.length - 1) >>> 0 > lengthLimit; result = true) { message = t1.removeFirst$0(); A.invoke1(message._callback, message._ui$_zone, null, t2); } return result; }, _drainStep$0() { var t2, _this = this, t1 = _this._queue; if (!t1.get$isEmpty(t1) && _this._channelCallbackRecord != null) { t1 = t1.removeFirst$0(); t2 = _this._channelCallbackRecord; t2.toString; t2.invoke$2(t1.data, t1.get$invoke()); A.scheduleMicrotask(_this.get$_drainStep()); } else _this._draining = false; } }; A.ChannelBuffers.prototype = { push$3($name, data, callback) { this._channels.putIfAbsent$2(0, $name, new A.ChannelBuffers_push_closure()).push$1(new A._StoredMessage(data, callback, $.Zone__current)); }, setListener$2($name, callback) { var channel = this._channels.putIfAbsent$2(0, $name, new A.ChannelBuffers_setListener_closure()), t1 = channel._channelCallbackRecord; channel._channelCallbackRecord = new A._ChannelCallbackRecord(callback, $.Zone__current); if (t1 == null && !channel._draining) { channel._draining = true; A.scheduleMicrotask(channel.get$_drainStep()); } }, resize$2(_, $name, newSize) { var t1 = this._channels, channel = t1.$index(0, $name); if (channel == null) t1.$indexSet(0, $name, new A._Channel(A.ListQueue$(newSize, type$._StoredMessage), newSize)); else { channel._capacity = newSize; channel._dropOverflowMessages$1(newSize); } } }; A.ChannelBuffers_push_closure.prototype = { call$0() { return new A._Channel(A.ListQueue$(1, type$._StoredMessage), 1); }, $signature: 694 }; A.ChannelBuffers_setListener_closure.prototype = { call$0() { return new A._Channel(A.ListQueue$(1, type$._StoredMessage), 1); }, $signature: 694 }; A.OffsetBase.prototype = { $lt(_, other) { return B.JSNumber_methods.$lt(this._dx, other.get$_dx()) && B.JSNumber_methods.$lt(this._dy, other.get$_dy()); }, $gt(_, other) { return this._dx > other._dx && this._dy > other._dy; }, $ge(_, other) { return this._dx >= other._dx && this._dy >= other._dy; }, $eq(_, other) { if (other == null) return false; return other instanceof A.OffsetBase && other._dx == this._dx && other._dy == this._dy; }, get$hashCode(_) { return A.hashValues(this._dx, this._dy, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "OffsetBase(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; A.Offset.prototype = { get$dx(_) { return this._dx; }, get$dy(_) { return this._dy; }, get$distance() { var t1 = this._dx, t2 = this._dy; return Math.sqrt(t1 * t1 + t2 * t2); }, get$distanceSquared() { var t1 = this._dx, t2 = this._dy; return t1 * t1 + t2 * t2; }, $sub(_, other) { return new A.Offset(this._dx - other._dx, this._dy - other._dy); }, $add(_, other) { return new A.Offset(this._dx + other._dx, this._dy + other._dy); }, $mul(_, operand) { return new A.Offset(this._dx * operand, this._dy * operand); }, $div(_, operand) { return new A.Offset(this._dx / operand, this._dy / operand); }, $eq(_, other) { if (other == null) return false; return other instanceof A.Offset && other._dx == this._dx && other._dy == this._dy; }, get$hashCode(_) { return A.hashValues(this._dx, this._dy, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "Offset(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; A.Size.prototype = { get$isEmpty(_) { return this._dx <= 0 || this._dy <= 0; }, $sub(_, other) { var _this = this; if (other instanceof A.Size) return new A.Offset(_this._dx - other._dx, _this._dy - other._dy); if (other instanceof A.Offset) return new A.Size(_this._dx - other._dx, _this._dy - other._dy); throw A.wrapException(A.ArgumentError$(other, null)); }, $add(_, other) { return new A.Size(this._dx + other._dx, this._dy + other._dy); }, $mul(_, operand) { return new A.Size(this._dx * operand, this._dy * operand); }, $div(_, operand) { return new A.Size(this._dx / operand, this._dy / operand); }, get$shortestSide() { return Math.min(Math.abs(this._dx), Math.abs(this._dy)); }, get$longestSide() { return Math.max(Math.abs(this._dx), Math.abs(this._dy)); }, center$1(origin) { return new A.Offset(origin._dx + this._dx / 2, origin._dy + this._dy / 2); }, bottomRight$1(_, origin) { return new A.Offset(origin._dx + this._dx, origin._dy + this._dy); }, contains$1(_, offset) { var t1 = offset._dx; if (t1 >= 0) if (t1 < this._dx) { t1 = offset._dy; t1 = t1 >= 0 && t1 < this._dy; } else t1 = false; else t1 = false; return t1; }, $eq(_, other) { if (other == null) return false; return other instanceof A.Size && other._dx == this._dx && other._dy == this._dy; }, get$hashCode(_) { return A.hashValues(this._dx, this._dy, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "Size(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; A.Rect.prototype = { get$size(_) { var _this = this; return new A.Size(_this.right - _this.left, _this.bottom - _this.top); }, get$isInfinite(_) { var _this = this; return _this.left >= 1 / 0 || _this.top >= 1 / 0 || _this.right >= 1 / 0 || _this.bottom >= 1 / 0; }, get$isFinite(_) { var _this = this, t1 = _this.left; t1.toString; if (isFinite(t1)) { t1 = _this.top; t1.toString; if (isFinite(t1)) { t1 = _this.right; t1.toString; if (isFinite(t1)) { t1 = _this.bottom; t1.toString; t1 = isFinite(t1); } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$isEmpty(_) { var _this = this; return _this.left >= _this.right || _this.top >= _this.bottom; }, shift$1(offset) { var _this = this, t1 = offset._dx, t2 = offset._dy; return new A.Rect(_this.left + t1, _this.top + t2, _this.right + t1, _this.bottom + t2); }, translate$2(_, translateX, translateY) { var _this = this; return new A.Rect(_this.left + translateX, _this.top + translateY, _this.right + translateX, _this.bottom + translateY); }, inflate$1(delta) { var _this = this; return new A.Rect(_this.left - delta, _this.top - delta, _this.right + delta, _this.bottom + delta); }, intersect$1(other) { var t2, t3, t4, _this = this, t1 = other.left; t1 = Math.max(A.checkNum(_this.left), A.checkNum(t1)); t2 = other.top; t2 = Math.max(A.checkNum(_this.top), A.checkNum(t2)); t3 = other.right; t3 = Math.min(A.checkNum(_this.right), A.checkNum(t3)); t4 = other.bottom; return new A.Rect(t1, t2, t3, Math.min(A.checkNum(_this.bottom), A.checkNum(t4))); }, expandToInclude$1(other) { var t2, t3, t4, _this = this, t1 = other.left; t1 = Math.min(A.checkNum(_this.left), A.checkNum(t1)); t2 = other.top; t2 = Math.min(A.checkNum(_this.top), A.checkNum(t2)); t3 = other.right; t3 = Math.max(A.checkNum(_this.right), A.checkNum(t3)); t4 = other.bottom; return new A.Rect(t1, t2, t3, Math.max(A.checkNum(_this.bottom), A.checkNum(t4))); }, overlaps$1(other) { var _this = this; if (_this.right <= other.left || other.right <= _this.left) return false; if (_this.bottom <= other.top || other.bottom <= _this.top) return false; return true; }, get$shortestSide() { var _this = this; return Math.min(Math.abs(_this.right - _this.left), Math.abs(_this.bottom - _this.top)); }, get$topCenter() { var t1 = this.left; return new A.Offset(t1 + (this.right - t1) / 2, this.top); }, get$centerLeft() { var t1 = this.top; return new A.Offset(this.left, t1 + (this.bottom - t1) / 2); }, get$center() { var _this = this, t1 = _this.left, t2 = _this.top; return new A.Offset(t1 + (_this.right - t1) / 2, t2 + (_this.bottom - t2) / 2); }, get$bottomCenter() { var t1 = this.left; return new A.Offset(t1 + (this.right - t1) / 2, this.bottom); }, contains$1(_, offset) { var _this = this, t1 = offset._dx; if (t1 >= _this.left) if (t1 < _this.right) { t1 = offset._dy; t1 = t1 >= _this.top && t1 < _this.bottom; } else t1 = false; else t1 = false; return t1; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (A.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof A.Rect && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.left, _this.top, _this.right, _this.bottom, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var _this = this; return "Rect.fromLTRB(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1) + ")"; } }; A.Radius.prototype = { $sub(_, other) { return new A.Radius(this.x - other.x, this.y - other.y); }, $add(_, other) { return new A.Radius(this.x + other.x, this.y + other.y); }, $mul(_, operand) { return new A.Radius(this.x * operand, this.y * operand); }, $div(_, operand) { return new A.Radius(this.x / operand, this.y / operand); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (A.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof A.Radius && other.x === _this.x && other.y === _this.y; }, get$hashCode(_) { return A.hashValues(this.x, this.y, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var t1 = this.x, t2 = this.y; return t1 === t2 ? "Radius.circular(" + B.JSNumber_methods.toStringAsFixed$1(t1, 1) + ")" : "Radius.elliptical(" + B.JSNumber_methods.toStringAsFixed$1(t1, 1) + ", " + B.JSNumber_methods.toStringAsFixed$1(t2, 1) + ")"; } }; A.RRect.prototype = { shift$1(offset) { var _this = this, t1 = offset._dx, t2 = offset._dy; return new A.RRect(_this.left + t1, _this.top + t2, _this.right + t1, _this.bottom + t2, _this.tlRadiusX, _this.tlRadiusY, _this.trRadiusX, _this.trRadiusY, _this.brRadiusX, _this.brRadiusY, _this.blRadiusX, _this.blRadiusY, false); }, inflate$1(delta) { var _this = this; return new A.RRect(_this.left - delta, _this.top - delta, _this.right + delta, _this.bottom + delta, _this.tlRadiusX + delta, _this.tlRadiusY + delta, _this.trRadiusX + delta, _this.trRadiusY + delta, _this.brRadiusX + delta, _this.brRadiusY + delta, _this.blRadiusX + delta, _this.blRadiusY + delta, false); }, get$isEmpty(_) { var _this = this; return _this.left >= _this.right || _this.top >= _this.bottom; }, _getMin$4(min, radius1, radius2, limit) { var sum = radius1 + radius2; if (sum > limit && sum !== 0) return Math.min(min, limit / sum); return min; }, scaleRadii$0() { var _this = this, t1 = _this.right, t2 = _this.left, absWidth = Math.abs(t1 - t2), t3 = _this.bottom, t4 = _this.top, absHeight = Math.abs(t3 - t4), t5 = _this.blRadiusY, t6 = _this.tlRadiusY, t7 = _this.tlRadiusX, t8 = _this.trRadiusX, t9 = _this.trRadiusY, t10 = _this.brRadiusY, t11 = _this.brRadiusX, t12 = _this.blRadiusX, scale = _this._getMin$4(_this._getMin$4(_this._getMin$4(_this._getMin$4(1, t5, t6, absHeight), t7, t8, absWidth), t9, t10, absHeight), t11, t12, absWidth); if (scale < 1) return new A.RRect(t2, t4, t1, t3, t7 * scale, t6 * scale, t8 * scale, t9 * scale, t11 * scale, t10 * scale, t12 * scale, t5 * scale, false); return new A.RRect(t2, t4, t1, t3, t7, t6, t8, t9, t11, t10, t12, t5, false); }, contains$1(_, point) { var t3, scaled, radiusX, x, radiusY, y, _this = this, t1 = point._dx, t2 = _this.left; if (!(t1 < t2)) if (!(t1 >= _this.right)) { t3 = point._dy; t3 = t3 < _this.top || t3 >= _this.bottom; } else t3 = true; else t3 = true; if (t3) return false; scaled = _this.scaleRadii$0(); radiusX = scaled.tlRadiusX; if (t1 < t2 + radiusX && point._dy < _this.top + scaled.tlRadiusY) { x = t1 - t2 - radiusX; radiusY = scaled.tlRadiusY; y = point._dy - _this.top - radiusY; } else { t3 = _this.right; radiusX = scaled.trRadiusX; if (t1 > t3 - radiusX && point._dy < _this.top + scaled.trRadiusY) { x = t1 - t3 + radiusX; radiusY = scaled.trRadiusY; y = point._dy - _this.top - radiusY; } else { radiusX = scaled.brRadiusX; if (t1 > t3 - radiusX && point._dy > _this.bottom - scaled.brRadiusY) { x = t1 - t3 + radiusX; radiusY = scaled.brRadiusY; y = point._dy - _this.bottom + radiusY; } else { radiusX = scaled.blRadiusX; if (t1 < t2 + radiusX && point._dy > _this.bottom - scaled.blRadiusY) { x = t1 - t2 - radiusX; radiusY = scaled.blRadiusY; y = point._dy - _this.bottom + radiusY; } else return true; } } } x /= radiusX; y /= radiusY; if (x * x + y * y > 1) return false; return true; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (A.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof A.RRect && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom && other.tlRadiusX === _this.tlRadiusX && other.tlRadiusY === _this.tlRadiusY && other.trRadiusX === _this.trRadiusX && other.trRadiusY === _this.trRadiusY && other.blRadiusX === _this.blRadiusX && other.blRadiusY === _this.blRadiusY && other.brRadiusX === _this.brRadiusX && other.brRadiusY === _this.brRadiusY; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.left, _this.top, _this.right, _this.bottom, _this.tlRadiusX, _this.tlRadiusY, _this.trRadiusX, _this.trRadiusY, _this.blRadiusX, _this.blRadiusY, _this.brRadiusX, _this.brRadiusY, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var t5, t6, _this = this, rect = J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1), t1 = _this.tlRadiusX, t2 = _this.tlRadiusY, t3 = _this.trRadiusX, t4 = _this.trRadiusY; if (new A.Radius(t1, t2).$eq(0, new A.Radius(t3, t4))) { t5 = _this.brRadiusX; t6 = _this.brRadiusY; t5 = new A.Radius(t3, t4).$eq(0, new A.Radius(t5, t6)) && new A.Radius(t5, t6).$eq(0, new A.Radius(_this.blRadiusX, _this.blRadiusY)); } else t5 = false; if (t5) { if (t1 === t2) return "RRect.fromLTRBR(" + rect + ", " + B.JSNumber_methods.toStringAsFixed$1(t1, 1) + ")"; return "RRect.fromLTRBXY(" + rect + ", " + B.JSNumber_methods.toStringAsFixed$1(t1, 1) + ", " + B.JSNumber_methods.toStringAsFixed$1(t2, 1) + ")"; } return "RRect.fromLTRBAndCorners(" + rect + ", topLeft: " + new A.Radius(t1, t2).toString$0(0) + ", topRight: " + new A.Radius(t3, t4).toString$0(0) + ", bottomRight: " + new A.Radius(_this.brRadiusX, _this.brRadiusY).toString$0(0) + ", bottomLeft: " + new A.Radius(_this.blRadiusX, _this.blRadiusY).toString$0(0) + ")"; } }; A._HashEnd.prototype = {}; A.webOnlyWarmupEngine_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.initializeEngineServices(), $async$call$0); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 428 }; A.webOnlyWarmupEngine_closure0.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.registerPlugins.call$0(); $async$goto = 2; return A._asyncAwait(A.initializeEngineUi(), $async$call$0); case 2: // returning from await. $async$self.runApp.call$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 428 }; A.PlatformViewRegistry.prototype = {}; A.KeyEventType.prototype = { toString$0(_) { return "KeyEventType." + this._core$_name; } }; A.KeyData.prototype = { _logicalToString$0() { var t1 = this.logical; return "0x" + J.toRadixString$1$n(t1, 16) + A.S(new A.KeyData__logicalToString_closure(B.JSNumber_methods.floor$0(t1 / 4294967296)).call$0()); }, _escapeCharacter$0() { var t1 = this.character; if (t1 == null) return ""; switch (t1) { case "\n": return '"\\n"'; case "\t": return '"\\t"'; case "\r": return '"\\r"'; case "\b": return '"\\b"'; case "\f": return '"\\f"'; default: return '"' + t1 + '"'; } }, _quotedCharCode$0() { var t1 = this.character; if (t1 == null) return ""; return " (0x" + new A.MappedListIterable(new A.CodeUnits(t1), new A.KeyData__quotedCharCode_closure(), type$.CodeUnits._eval$1("MappedListIterable")).join$1(0, " ") + ")"; }, toString$0(_) { var _this = this, t1 = A.KeyData__typeToString(_this.type), t2 = J.toRadixString$1$n(_this.physical, 16), t3 = _this._logicalToString$0(), t4 = _this._escapeCharacter$0(), t5 = _this._quotedCharCode$0(), t6 = _this.synthesized ? ", synthesized" : ""; return "KeyData(type: " + t1 + ", physical: 0x" + t2 + ", logical: " + t3 + ", character: " + t4 + t5 + t6 + ")"; } }; A.KeyData__logicalToString_closure.prototype = { call$0() { switch (this.planeNum) { case 0: return " (Unicode)"; case 1: return " (Unprintable)"; case 2: return " (Flutter)"; case 23: return " (Web)"; } return ""; }, $signature: 65 }; A.KeyData__quotedCharCode_closure.prototype = { call$1(code) { return B.JSString_methods.padLeft$2(J.toRadixString$1$n(code, 16), 2, "0"); }, $signature: 284 }; A.Color.prototype = { get$red() { return this.get$value(this) >>> 16 & 255; }, get$green() { return this.get$value(this) >>> 8 & 255; }, get$blue() { return this.get$value(this) & 255; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.Color && other.get$value(other) === _this.get$value(_this); }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(this.get$value(this)); }, toString$0(_) { return "Color(0x" + B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(this.get$value(this), 16), 8, "0") + ")"; }, get$value(receiver) { return this.value; } }; A.StrokeCap.prototype = { toString$0(_) { return "StrokeCap." + this._core$_name; } }; A.StrokeJoin.prototype = { toString$0(_) { return "StrokeJoin." + this._core$_name; } }; A.PaintingStyle.prototype = { toString$0(_) { return "PaintingStyle." + this._core$_name; } }; A.BlendMode.prototype = { toString$0(_) { return "BlendMode." + this._core$_name; } }; A.Clip.prototype = { toString$0(_) { return "Clip." + this._core$_name; } }; A.BlurStyle.prototype = { toString$0(_) { return "BlurStyle." + this._core$_name; } }; A.MaskFilter.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.MaskFilter && other._ui$_style === this._ui$_style && other._sigma === this._sigma; }, get$hashCode(_) { return A.hashValues(this._ui$_style, this._sigma, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "MaskFilter.blur(" + this._ui$_style.toString$0(0) + ", " + B.JSNumber_methods.toStringAsFixed$1(this._sigma, 1) + ")"; } }; A.FilterQuality.prototype = { toString$0(_) { return "FilterQuality." + this._core$_name; } }; A.ImageFilter.prototype = {}; A.ImageByteFormat.prototype = { toString$0(_) { return "ImageByteFormat." + this._core$_name; } }; A.PixelFormat.prototype = { toString$0(_) { return "PixelFormat." + this._core$_name; } }; A.webOnlyInstantiateImageCodecFromUrl_closure.prototype = { call$1(callback) { callback.call$1(new A.HtmlCodec(this.uri.toString$0(0), this.chunkCallback)); return null; }, $signature: 2975 }; A.decodeImageFromPixels_executeCallback.prototype = { call$1(codec) { codec.getNextFrame$0().then$1$1(0, new A.decodeImageFromPixels_executeCallback_closure(this.callback), type$.Null); }, $signature: 504 }; A.decodeImageFromPixels_executeCallback_closure.prototype = { call$1(frameInfo) { this.callback.call$1(frameInfo.get$image(frameInfo)); }, $signature: 2940 }; A.Shadow.prototype = { scale$1(_, factor) { return new A.Shadow(this.color, this.offset.$mul(0, factor), this.blurRadius * factor); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof A.Shadow && J.$eq$(other.color, _this.color) && J.$eq$(other.offset, _this.offset) && other.blurRadius == _this.blurRadius; }, get$hashCode(_) { return A.hashValues(this.color, this.offset, this.blurRadius, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "TextShadow(" + A.S(this.color) + ", " + A.S(this.offset) + ", " + A.S(this.blurRadius) + ")"; } }; A.PlatformDispatcher.prototype = {}; A.PlatformConfiguration.prototype = { copyWith$4$locales$platformBrightness$semanticsEnabled$textScaleFactor(locales, platformBrightness, semanticsEnabled, textScaleFactor) { var _this = this, t1 = semanticsEnabled == null ? _this.semanticsEnabled : semanticsEnabled, t2 = platformBrightness == null ? _this.platformBrightness : platformBrightness, t3 = textScaleFactor == null ? _this.textScaleFactor : textScaleFactor, t4 = locales == null ? _this.locales : locales; return new A.PlatformConfiguration(_this.accessibilityFeatures, false, t1, t2, t3, t4, _this.defaultRouteName, _this.systemFontFamily); }, copyWith$1$locales(locales) { return this.copyWith$4$locales$platformBrightness$semanticsEnabled$textScaleFactor(locales, null, null, null); }, copyWith$1$textScaleFactor(textScaleFactor) { return this.copyWith$4$locales$platformBrightness$semanticsEnabled$textScaleFactor(null, null, null, textScaleFactor); }, copyWith$1$platformBrightness(platformBrightness) { return this.copyWith$4$locales$platformBrightness$semanticsEnabled$textScaleFactor(null, platformBrightness, null, null); }, copyWith$1$semanticsEnabled(semanticsEnabled) { return this.copyWith$4$locales$platformBrightness$semanticsEnabled$textScaleFactor(null, null, semanticsEnabled, null); } }; A.ViewConfiguration0.prototype = { toString$0(_) { return A.getRuntimeType(this).toString$0(0) + "[window: null, geometry: " + B.Rect_0_0_0_0.toString$0(0) + "]"; } }; A.FrameTiming.prototype = { toString$0(_) { var t9, t1 = A.getRuntimeType(this).toString$0(0), t2 = this._ui$_data, t3 = A.Duration$(0, 0, t2[2], 0, 0, 0), t4 = t2[1], t5 = A.Duration$(0, 0, t4, 0, 0, 0), t6 = t2[4], t7 = A.Duration$(0, 0, t6, 0, 0, 0), t8 = A.Duration$(0, 0, t2[3], 0, 0, 0); t4 = A.Duration$(0, 0, t4, 0, 0, 0); t9 = t2[0]; return t1 + "(buildDuration: " + (A.S((t3._duration - t5._duration) * 0.001) + "ms") + ", rasterDuration: " + (A.S((t7._duration - t8._duration) * 0.001) + "ms") + ", vsyncOverhead: " + (A.S((t4._duration - A.Duration$(0, 0, t9, 0, 0, 0)._duration) * 0.001) + "ms") + ", totalSpan: " + (A.S((A.Duration$(0, 0, t6, 0, 0, 0)._duration - A.Duration$(0, 0, t9, 0, 0, 0)._duration) * 0.001) + "ms") + ", layerCacheCount: " + t2[6] + ", layerCacheBytes: " + t2[7] + ", pictureCacheCount: " + t2[8] + ", pictureCacheBytes: " + t2[9] + ", frameNumber: " + B.JSArray_methods.get$last(t2) + ")"; } }; A.AppLifecycleState.prototype = { toString$0(_) { return "AppLifecycleState." + this._core$_name; } }; A.Locale.prototype = { get$languageCode(_) { var t1 = this._languageCode, t2 = B.Map_YCOho.$index(0, t1); return t2 == null ? t1 : t2; }, get$countryCode() { var t1 = this._countryCode, t2 = B.Map_0Agg9.$index(0, t1); return t2 == null ? t1 : t2; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (other instanceof A.Locale) if (other.get$languageCode(other) == _this.get$languageCode(_this)) t1 = other.get$countryCode() == _this.get$countryCode(); else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { return A.hashValues(this.get$languageCode(this), null, this.get$countryCode(), B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return this._rawToString$1("_"); }, _rawToString$1(separator) { var _this = this, t1 = A.S(_this.get$languageCode(_this)); if (_this._countryCode != null) t1 += separator + A.S(_this.get$countryCode()); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.PointerChange.prototype = { toString$0(_) { return "PointerChange." + this._core$_name; } }; A.PointerDeviceKind.prototype = { toString$0(_) { return "PointerDeviceKind." + this._core$_name; } }; A.PointerSignalKind.prototype = { toString$0(_) { return "PointerSignalKind." + this._core$_name; } }; A.PointerData.prototype = { toString$0(_) { return "PointerData(x: " + A.S(this.physicalX) + ", y: " + A.S(this.physicalY) + ")"; } }; A.PointerDataPacket.prototype = {}; A.SemanticsAction.prototype = { toString$0(_) { switch (this.index) { case 1: return "SemanticsAction.tap"; case 2: return "SemanticsAction.longPress"; case 4: return "SemanticsAction.scrollLeft"; case 8: return "SemanticsAction.scrollRight"; case 16: return "SemanticsAction.scrollUp"; case 32: return "SemanticsAction.scrollDown"; case 64: return "SemanticsAction.increase"; case 128: return "SemanticsAction.decrease"; case 256: return "SemanticsAction.showOnScreen"; case 512: return "SemanticsAction.moveCursorForwardByCharacter"; case 1024: return "SemanticsAction.moveCursorBackwardByCharacter"; case 2048: return "SemanticsAction.setSelection"; case 4096: return "SemanticsAction.copy"; case 8192: return "SemanticsAction.cut"; case 16384: return "SemanticsAction.paste"; case 32768: return "SemanticsAction.didGainAccessibilityFocus"; case 65536: return "SemanticsAction.didLoseAccessibilityFocus"; case 131072: return "SemanticsAction.customAction"; case 262144: return "SemanticsAction.dismiss"; case 524288: return "SemanticsAction.moveCursorForwardByWord"; case 1048576: return "SemanticsAction.moveCursorBackwardByWord"; case 2097152: return "SemanticsAction.setText"; } return ""; } }; A.SemanticsFlag.prototype = { toString$0(_) { switch (this.index) { case 1: return "SemanticsFlag.hasCheckedState"; case 2: return "SemanticsFlag.isChecked"; case 4: return "SemanticsFlag.isSelected"; case 8: return "SemanticsFlag.isButton"; case 16: return "SemanticsFlag.isTextField"; case 32: return "SemanticsFlag.isFocused"; case 64: return "SemanticsFlag.hasEnabledState"; case 128: return "SemanticsFlag.isEnabled"; case 256: return "SemanticsFlag.isInMutuallyExclusiveGroup"; case 512: return "SemanticsFlag.isHeader"; case 1024: return "SemanticsFlag.isObscured"; case 2048: return "SemanticsFlag.scopesRoute"; case 4096: return "SemanticsFlag.namesRoute"; case 8192: return "SemanticsFlag.isHidden"; case 16384: return "SemanticsFlag.isImage"; case 32768: return "SemanticsFlag.isLiveRegion"; case 65536: return "SemanticsFlag.hasToggledState"; case 131072: return "SemanticsFlag.isToggled"; case 262144: return "SemanticsFlag.hasImplicitScrolling"; case 524288: return "SemanticsFlag.isMultiline"; case 1048576: return "SemanticsFlag.isReadOnly"; case 2097152: return "SemanticsFlag.isFocusable"; case 4194304: return "SemanticsFlag.isLink"; case 8388608: return "SemanticsFlag.isSlider"; case 16777216: return "SemanticsFlag.isKeyboardKey"; } return ""; } }; A.SemanticsUpdateBuilder.prototype = {}; A.FontStyle.prototype = { toString$0(_) { return "FontStyle." + this._core$_name; } }; A.PlaceholderAlignment.prototype = { toString$0(_) { return "PlaceholderAlignment." + this._core$_name; } }; A.FontWeight.prototype = { toString$0(_) { var t1 = B.Map_yXAeS.$index(0, this.index); t1.toString; return t1; } }; A.FontFeature.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A.FontFeature) t1 = true; else t1 = false; return t1; }, get$hashCode(_) { return A.hashValues("tnum", 1, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "FontFeature('tnum', 1)"; }, get$value() { return 1; } }; A.TextAlign.prototype = { toString$0(_) { return "TextAlign." + this._core$_name; } }; A.TextBaseline.prototype = { toString$0(_) { return "TextBaseline." + this._core$_name; } }; A.TextDecoration.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.TextDecoration && other._mask === this._mask; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(this._mask); }, toString$0(_) { var values, t1 = this._mask; if (t1 === 0) return "TextDecoration.none"; values = A._setArrayType([], type$.JSArray_String); if ((t1 & 1) !== 0) values.push("underline"); if ((t1 & 2) !== 0) values.push("overline"); if ((t1 & 4) !== 0) values.push("lineThrough"); if (values.length === 1) return "TextDecoration." + values[0]; return "TextDecoration.combine([" + B.JSArray_methods.join$1(values, ", ") + "])"; } }; A.TextDecorationStyle.prototype = { toString$0(_) { return "TextDecorationStyle." + this._core$_name; } }; A.TextLeadingDistribution.prototype = { toString$0(_) { return "TextLeadingDistribution." + this._core$_name; } }; A.TextHeightBehavior.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A.TextHeightBehavior) t1 = other.leadingDistribution === this.leadingDistribution; else t1 = false; return t1; }, get$hashCode(_) { return A.hashValues(true, true, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: " + this.leadingDistribution.toString$0(0) + ")"; } }; A.TextDirection.prototype = { toString$0(_) { return "TextDirection." + this._core$_name; } }; A.TextBox.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.TextBox && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom && other.direction === _this.direction; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.left, _this.top, _this.right, _this.bottom, _this.direction, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var _this = this; return "TextBox.fromLTRBD(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1) + ", " + _this.direction.toString$0(0) + ")"; } }; A.TextAffinity.prototype = { toString$0(_) { return "TextAffinity." + this._core$_name; } }; A.TextPosition.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.TextPosition && other.offset == this.offset && other.affinity === this.affinity; }, get$hashCode(_) { return A.hashValues(this.offset, this.affinity, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return A.getRuntimeType(this).toString$0(0) + "(offset: " + A.S(this.offset) + ", affinity: " + this.affinity.toString$0(0) + ")"; } }; A.TextRange.prototype = { get$isValid() { return this.start >= 0 && this.end >= 0; }, $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.TextRange && other.start == this.start && other.end == this.end; }, get$hashCode(_) { return A.hashValues(J.get$hashCode$(this.start), J.get$hashCode$(this.end), B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "TextRange(start: " + A.S(this.start) + ", end: " + A.S(this.end) + ")"; } }; A.ParagraphConstraints.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.ParagraphConstraints && other.width == this.width; }, get$hashCode(_) { return J.get$hashCode$(this.width); }, toString$0(_) { return A.getRuntimeType(this).toString$0(0) + "(width: " + A.S(this.width) + ")"; } }; A.BoxHeightStyle.prototype = { toString$0(_) { return "BoxHeightStyle." + this._core$_name; } }; A.BoxWidthStyle.prototype = { toString$0(_) { return "BoxWidthStyle." + this._core$_name; } }; A.TileMode.prototype = { toString$0(_) { return "TileMode." + this._core$_name; } }; A.FlutterView.prototype = {}; A.FlutterWindow.prototype = {}; A.SingletonFlutterWindow.prototype = {}; A.AccessibilityFeatures.prototype = { toString$0(_) { var features = A._setArrayType([], type$.JSArray_String); return "AccessibilityFeatures" + A.S(features); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.AccessibilityFeatures && true; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(0); } }; A.Brightness.prototype = { toString$0(_) { return "Brightness." + this._core$_name; } }; A.CallbackHandle.prototype = { $eq(_, other) { if (other == null) return false; return this === other; }, get$hashCode(_) { return A.Object.prototype.get$hashCode.call(this, this); } }; A.GestureSettings.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A.GestureSettings) t1 = true; else t1 = false; return t1; }, get$hashCode(_) { return A.hashValues(null, null, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return "GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"; } }; A.AudioBuffer.prototype = { get$length(receiver) { return receiver.length; } }; A.AudioParam.prototype = { get$value(receiver) { return receiver.value; } }; A.AudioParamMap.prototype = { containsKey$1(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index(receiver, key) { return A.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], A.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys(receiver) { var keys = A._setArrayType([], type$.JSArray_String); this.forEach$1(receiver, new A.AudioParamMap_keys_closure(keys)); return keys; }, get$values(receiver) { var values = A._setArrayType([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new A.AudioParamMap_values_closure(values)); return values; }, get$length(receiver) { return receiver.size; }, get$isEmpty(receiver) { return receiver.size === 0; }, get$isNotEmpty(receiver) { return receiver.size !== 0; }, $indexSet(receiver, key, value) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, putIfAbsent$2(receiver, key, ifAbsent) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, remove$1(receiver, key) { throw A.wrapException(A.UnsupportedError$("Not supported")); }, $isMap: 1 }; A.AudioParamMap_keys_closure.prototype = { call$2(k, v) { return this.keys.push(k); }, $signature: 142 }; A.AudioParamMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, $signature: 142 }; A.AudioTrack.prototype = { get$id(receiver) { return receiver.id; } }; A.AudioTrackList.prototype = { get$length(receiver) { return receiver.length; } }; A.BaseAudioContext.prototype = {}; A.OfflineAudioContext.prototype = { get$length(receiver) { return receiver.length; } }; A._AudioParamMap_JavaScriptObject_MapMixin.prototype = {}; A.ActiveInfo.prototype = { get$name(receiver) { return receiver.name; } }; A.GZipEncoder.prototype = { encode$1(data) { var fileModTime, t1, t2, t3, t4, t5, t6, t7, deflate, _null = null, output_stream = A.OutputStream$(32768); output_stream.writeUint16$1(35615); output_stream.writeByte$1(8); fileModTime = B.JSInt_methods._tdivFast$1(Date.now(), 1000); output_stream.writeByte$1(0); output_stream.writeUint32$1(fileModTime); output_stream.writeByte$1(0); output_stream.writeByte$1(255); if (type$.List_int._is(data)) { t1 = A._HuffmanTree$(); t2 = A._HuffmanTree$(); t3 = A._HuffmanTree$(); t4 = new Uint16Array(16); t5 = new Uint32Array(573); t6 = new Uint8Array(573); t7 = A.InputStream$(data, 0, _null, 0); deflate = new A.Deflate(t7, output_stream, t1, t2, t3, t4, t5, t6); deflate._init$1(_null); deflate._deflate$1(4); } else { type$.InputStreamBase._as(data); t1 = A._HuffmanTree$(); t2 = A._HuffmanTree$(); t3 = A._HuffmanTree$(); t4 = new Uint16Array(16); t5 = new Uint32Array(573); t6 = new Uint8Array(573); deflate = new A.Deflate(data, output_stream, t1, t2, t3, t4, t5, t6); deflate._init$1(_null); deflate._deflate$1(4); } output_stream.writeUint32$1(deflate.crc32); output_stream.writeUint32$1(J.get$length$asx(data)); t1 = B.NativeByteBuffer_methods.asUint8List$2(output_stream._output_stream$_buffer.buffer, 0, output_stream.length); return t1; } }; A.ArchiveException.prototype = {}; A.InputStreamBase.prototype = {}; A.InputStream.prototype = { get$length(_) { return A._lateReadCheck(this.__InputStream__length, "_length") - (this.offset - this.start); }, get$isEOS() { return this.offset >= this.start + A._lateReadCheck(this.__InputStream__length, "_length"); }, $index(_, index) { return J.$index$asx(this.buffer, this.offset + index); }, readByte$0() { return J.$index$asx(this.buffer, this.offset++); }, readBytes$1(count) { var _this = this, t1 = _this.start, position = _this.offset - t1 + t1, $length = count < 0 ? A._lateReadCheck(_this.__InputStream__length, "_length") - (position - t1) : count, bytes = A.InputStream$(_this.buffer, _this.byteOrder, $length, position); _this.offset = _this.offset + bytes.get$length(bytes); return bytes; }, readString$0() { var t1, t2, t3, t4, _this = this, utf8 = true, codes = A._setArrayType([], type$.JSArray_int); if (_this.get$isEOS()) return ""; for (t1 = _this.start, t2 = _this.buffer, t3 = J.getInterceptor$asx(t2); _this.offset < t1 + A._lateReadCheck(_this.__InputStream__length, "_length");) { t4 = t3.$index(t2, _this.offset++); if (t4 === 0) break; codes.push(t4); } return utf8 ? new A.Utf8Decoder(false).convert$1(codes) : A.String_String$fromCharCodes(codes, 0, null); }, readUint16$0() { var _this = this, t1 = _this.buffer, t2 = J.getInterceptor$asx(t1), b1 = t2.$index(t1, _this.offset++) & 255, b2 = t2.$index(t1, _this.offset++) & 255; if (_this.byteOrder === 1) return b1 << 8 | b2; return b2 << 8 | b1; }, readUint32$0() { var _this = this, t1 = _this.buffer, t2 = J.getInterceptor$asx(t1), b1 = t2.$index(t1, _this.offset++) & 255, b2 = t2.$index(t1, _this.offset++) & 255, b3 = t2.$index(t1, _this.offset++) & 255, b4 = t2.$index(t1, _this.offset++) & 255; if (_this.byteOrder === 1) return (b1 << 24 | b2 << 16 | b3 << 8 | b4) >>> 0; return (b4 << 24 | b3 << 16 | b2 << 8 | b1) >>> 0; }, toUint8List$0() { var t2, end, _this = this, len = _this.get$length(_this), t1 = _this.buffer; if (type$.Uint8List._is(t1)) { t2 = J.getInterceptor$asx(t1); if (_this.offset + len > t2.get$length(t1)) len = t2.get$length(t1) - _this.offset; return J.asUint8List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + _this.offset, len); } end = _this.offset + len; t2 = J.getInterceptor$asx(t1); if (end > t2.get$length(t1)) end = t2.get$length(t1); return new Uint8Array(A._ensureNativeList(t2.sublist$2(t1, _this.offset, end))); } }; A.OutputStreamBase.prototype = {}; A.OutputStream.prototype = { writeByte$1(value) { var _this = this; if (_this.length === _this._output_stream$_buffer.length) _this._expandBuffer$0(); _this._output_stream$_buffer[_this.length++] = value & 255; }, writeBytes$2(bytes, len) { var t1, t2, t3, t4, _this = this; if (len == null) len = J.get$length$asx(bytes); for (; t1 = _this.length, t2 = t1 + len, t3 = _this._output_stream$_buffer, t4 = t3.length, t2 > t4;) _this._expandBuffer$1(t2 - t4); B.NativeUint8List_methods.setRange$3(t3, t1, t2, bytes); _this.length += len; }, writeBytes$1(bytes) { return this.writeBytes$2(bytes, null); }, writeInputStream$1(stream) { var t1, t2, t3, t4, t5, _this = this; for (t1 = stream.start; t2 = _this.length, t3 = A._lateReadCheck(stream.__InputStream__length, "_length"), t4 = stream.offset, t5 = _this._output_stream$_buffer, t2 + (t3 - (t4 - t1)) > t5.length;) _this._expandBuffer$1(_this.length + (A._lateReadCheck(stream.__InputStream__length, "_length") - (stream.offset - t1)) - _this._output_stream$_buffer.length); t1 = _this.length; B.NativeUint8List_methods.setRange$4(t5, t1, t1 + stream.get$length(stream), stream.buffer, stream.offset); _this.length = _this.length + stream.get$length(stream); }, writeUint16$1(value) { this.writeByte$1(value & 255); this.writeByte$1(value >>> 8 & 255); }, writeUint32$1(value) { var _this = this; _this.writeByte$1(value & 255); _this.writeByte$1(B.JSInt_methods._shrOtherPositive$1(value, 8) & 255); _this.writeByte$1(B.JSInt_methods._shrOtherPositive$1(value, 16) & 255); _this.writeByte$1(B.JSInt_methods._shrOtherPositive$1(value, 24) & 255); }, subset$2(start, end) { var _this = this; if (start < 0) start = _this.length + start; if (end == null) end = _this.length; else if (end < 0) end = _this.length + end; return B.NativeByteBuffer_methods.asUint8List$2(_this._output_stream$_buffer.buffer, start, end - start); }, subset$1(start) { return this.subset$2(start, null); }, _expandBuffer$1(required) { var blockSize = required != null ? required > 32768 ? required : 32768 : 32768, t1 = this._output_stream$_buffer, t2 = t1.length, newBuffer = new Uint8Array((t2 + blockSize) * 2); B.NativeUint8List_methods.setRange$3(newBuffer, 0, t2, t1); this._output_stream$_buffer = newBuffer; }, _expandBuffer$0() { return this._expandBuffer$1(null); }, get$length(receiver) { return this.length; } }; A.Deflate.prototype = { _init$1(level) { var _this = this, _s11_ = "_windowSize", _s9_ = "_hashBits", _s9_0 = "_hashSize", _s14_ = "_litBufferSize", t1 = false; if (t1) throw A.wrapException(A.ArchiveException$("Invalid Deflate parameter")); $.Deflate____config.__late_helper$_value = _this._getConfig$1(6); _this.__Deflate__dynamicLengthTree = new Uint16Array(1146); _this.__Deflate__dynamicDistTree = new Uint16Array(122); _this.__Deflate__bitLengthTree = new Uint16Array(78); _this.__Deflate__windowBits = 15; t1 = B.JSInt_methods.$shl(1, A._lateReadCheck(15, "_windowBits")); _this.__Deflate__windowSize = t1; _this.__Deflate__windowMask = A._lateReadCheck(t1, _s11_) - 1; _this.__Deflate__hashBits = 15; t1 = B.JSInt_methods.$shl(1, A._lateReadCheck(15, _s9_)); _this.__Deflate__hashSize = t1; _this.__Deflate__hashMask = A._lateReadCheck(t1, _s9_0) - 1; _this.__Deflate__hashShift = B.JSInt_methods._tdivFast$1(A._lateReadCheck(_this.__Deflate__hashBits, _s9_) + 3 - 1, 3); t1 = A._lateReadCheck(_this.__Deflate__windowSize, _s11_); _this.__Deflate__window = new Uint8Array(t1 * 2); t1 = A._lateReadCheck(_this.__Deflate__windowSize, _s11_); if (!A._isInt(t1)) A.throwExpression(A.ArgumentError$("Invalid length " + A.S(t1), null)); _this.__Deflate__prev = new Uint16Array(t1); t1 = A._lateReadCheck(_this.__Deflate__hashSize, _s9_0); if (!A._isInt(t1)) A.throwExpression(A.ArgumentError$("Invalid length " + A.S(t1), null)); _this.__Deflate__head = new Uint16Array(t1); _this.__Deflate__litBufferSize = 16384; t1 = A._lateReadCheck(16384, _s14_); _this.__Deflate__pendingBuffer = new Uint8Array(t1 * 4); _this.__Deflate__pendingBufferSize = A._lateReadCheck(_this.__Deflate__litBufferSize, _s14_) * 4; _this.__Deflate__dbuf = A._lateReadCheck(_this.__Deflate__litBufferSize, _s14_); _this.__Deflate__lbuf = 3 * A._lateReadCheck(_this.__Deflate__litBufferSize, _s14_); _this.__Deflate__level = 6; _this.__Deflate__pendingOut = _this.__Deflate__pending = _this.__Deflate__strategy = 0; _this._deflate$_status = 113; _this.crc32 = 0; t1 = _this._lDesc; t1.___HuffmanTree_dynamicTree = A._lateReadCheck(_this.__Deflate__dynamicLengthTree, "_dynamicLengthTree"); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticLDesc(); t1 = _this._dDesc; t1.___HuffmanTree_dynamicTree = A._lateReadCheck(_this.__Deflate__dynamicDistTree, "_dynamicDistTree"); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticDDesc(); t1 = _this._blDesc; t1.___HuffmanTree_dynamicTree = A._lateReadCheck(_this.__Deflate__bitLengthTree, "_bitLengthTree"); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticBlDesc(); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; _this.__Deflate__lastEOBLen = 8; _this._initBlock$0(); _this._lmInit$0(); }, _deflate$1(flush) { var t1, bstate, i, _this = this; if (flush > 4 || false) throw A.wrapException(A.ArchiveException$("Invalid Deflate Parameter")); if (A._lateReadCheck(_this.__Deflate__pending, "_pending") !== 0) _this._flushPending$0(); if (_this._deflate$_input.get$isEOS()) if (A._lateReadCheck(_this.__Deflate__lookAhead, "_lookAhead") === 0) t1 = flush !== 0 && _this._deflate$_status !== 666; else t1 = true; else t1 = true; if (t1) { switch ($.Deflate____config._readField$0().$function) { case 0: bstate = _this._deflateStored$1(flush); break; case 1: bstate = _this._deflateFast$1(flush); break; case 2: bstate = _this._deflateSlow$1(flush); break; default: bstate = -1; break; } t1 = bstate === 2; if (t1 || bstate === 3) _this._deflate$_status = 666; if (bstate === 0 || t1) return 0; if (bstate === 1) { if (flush === 1) { _this._sendBits$2(2, 3); _this._deflate$_sendCode$2(256, B.List_Xg4); _this.biFlush$0(); if (1 + A._lateReadCheck(_this.__Deflate__lastEOBLen, "_lastEOBLen") + 10 - A._lateReadCheck(_this.__Deflate__numValidBits, "_numValidBits") < 9) { _this._sendBits$2(2, 3); _this._deflate$_sendCode$2(256, B.List_Xg4); _this.biFlush$0(); } _this.__Deflate__lastEOBLen = 7; } else { _this._trStoredBlock$3(0, 0, false); if (flush === 3) for (i = 0; i < A._lateReadCheck(_this.__Deflate__hashSize, "_hashSize"); ++i) A._lateReadCheck(_this.__Deflate__head, "_head")[i] = 0; } _this._flushPending$0(); } } if (flush !== 4) return 0; return 1; }, _lmInit$0() { var i, _this = this, _s9_ = "_hashSize"; _this.__Deflate__actualWindowSize = 2 * A._lateReadCheck(_this.__Deflate__windowSize, "_windowSize"); A._lateReadCheck(_this.__Deflate__head, "_head")[A._lateReadCheck(_this.__Deflate__hashSize, _s9_) - 1] = 0; for (i = 0; i < A._lateReadCheck(_this.__Deflate__hashSize, _s9_) - 1; ++i) A._lateReadCheck(_this.__Deflate__head, "_head")[i] = 0; _this.__Deflate__lookAhead = _this.__Deflate__blockStart = _this.__Deflate__strStart = 0; _this.__Deflate__matchLength = _this.__Deflate__prevLength = 2; _this.__Deflate__insertHash = _this.__Deflate__matchAvailable = 0; }, _initBlock$0() { var i, _this = this, _s18_ = "_dynamicLengthTree"; for (i = 0; i < 286; ++i) A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_)[i * 2] = 0; for (i = 0; i < 30; ++i) A._lateReadCheck(_this.__Deflate__dynamicDistTree, "_dynamicDistTree")[i * 2] = 0; for (i = 0; i < 19; ++i) A._lateReadCheck(_this.__Deflate__bitLengthTree, "_bitLengthTree")[i * 2] = 0; A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_)[512] = 1; _this.__Deflate__lastLit = _this.__Deflate__matches = _this.__Deflate__optimalLen = _this.__Deflate__staticLen = 0; }, _pqdownheap$2(tree, k) { var t2, j0, _this = this, _s8_ = "_heapLen", t1 = _this._heap, v = t1[k], j = k << 1 >>> 0; for (t2 = _this._deflate$_depth; j <= A._lateReadCheck(_this.__Deflate__heapLen, _s8_); k = j, j = j0) { if (j < A._lateReadCheck(_this.__Deflate__heapLen, _s8_) && A.Deflate__smaller(tree, t1[j + 1], t1[j], t2)) ++j; if (A.Deflate__smaller(tree, v, t1[j], t2)) break; t1[k] = t1[j]; j0 = j << 1 >>> 0; } t1[k] = v; }, _scanTree$2(tree, max_code) { var max_count, min_count, n, prevlen, count, nextlen0, t1, t2, _this = this, _s14_ = "_bitLengthTree", nextlen = tree[1]; if (nextlen === 0) { max_count = 138; min_count = 3; } else { max_count = 7; min_count = 4; } tree[(max_code + 1) * 2 + 1] = 65535; for (n = 0, prevlen = -1, count = 0; n <= max_code; nextlen = nextlen0) { ++n; nextlen0 = tree[n * 2 + 1]; ++count; if (count < max_count && nextlen === nextlen0) continue; else if (count < min_count) { t1 = nextlen * 2; A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_)[t1] = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_)[t1] + count; } else if (nextlen !== 0) { if (nextlen !== prevlen) { t1 = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_); t2 = nextlen * 2; t1[t2] = t1[t2] + 1; } t1 = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_); t1[32] = t1[32] + 1; } else { t1 = _this.__Deflate__bitLengthTree; if (count <= 10) { t1 = A._lateReadCheck(t1, _s14_); t1[34] = t1[34] + 1; } else { t1 = A._lateReadCheck(t1, _s14_); t1[36] = t1[36] + 1; } } if (nextlen0 === 0) { max_count = 138; min_count = 3; } else if (nextlen === nextlen0) { max_count = 6; min_count = 3; } else { max_count = 7; min_count = 4; } prevlen = nextlen; count = 0; } }, _buildBitLengthTree$0() { var max_blindex, _this = this; _this._scanTree$2(A._lateReadCheck(_this.__Deflate__dynamicLengthTree, "_dynamicLengthTree"), A._lateReadCheck(_this._lDesc.___HuffmanTree_maxCode, "maxCode")); _this._scanTree$2(A._lateReadCheck(_this.__Deflate__dynamicDistTree, "_dynamicDistTree"), A._lateReadCheck(_this._dDesc.___HuffmanTree_maxCode, "maxCode")); _this._blDesc._buildTree$1(_this); for (max_blindex = 18; max_blindex >= 3; --max_blindex) if (A._lateReadCheck(_this.__Deflate__bitLengthTree, "_bitLengthTree")[B.List_uSC[max_blindex] * 2 + 1] !== 0) break; _this.__Deflate__optimalLen = A._lateReadCheck(_this.__Deflate__optimalLen, "_optimalLen") + (3 * (max_blindex + 1) + 5 + 5 + 4); return max_blindex; }, _sendAllTrees$3(lcodes, dcodes, blcodes) { var t1, rank, _this = this; _this._sendBits$2(lcodes - 257, 5); t1 = dcodes - 1; _this._sendBits$2(t1, 5); _this._sendBits$2(blcodes - 4, 4); for (rank = 0; rank < blcodes; ++rank) _this._sendBits$2(A._lateReadCheck(_this.__Deflate__bitLengthTree, "_bitLengthTree")[B.List_uSC[rank] * 2 + 1], 3); _this._sendTree$2(A._lateReadCheck(_this.__Deflate__dynamicLengthTree, "_dynamicLengthTree"), lcodes - 1); _this._sendTree$2(A._lateReadCheck(_this.__Deflate__dynamicDistTree, "_dynamicDistTree"), t1); }, _sendTree$2(tree, max_code) { var max_count, min_count, n, prevlen, count, nextlen0, t1, t2, t3, _this = this, _s14_ = "_bitLengthTree", nextlen = tree[1]; if (nextlen === 0) { max_count = 138; min_count = 3; } else { max_count = 7; min_count = 4; } for (n = 0, prevlen = -1, count = 0; n <= max_code; nextlen = nextlen0) { ++n; nextlen0 = tree[n * 2 + 1]; ++count; if (count < max_count && nextlen === nextlen0) continue; else if (count < min_count) { t1 = nextlen * 2; t2 = t1 + 1; do { t3 = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_); _this._sendBits$2(t3[t1] & 65535, t3[t2] & 65535); } while (--count, count !== 0); } else if (nextlen !== 0) { if (nextlen !== prevlen) { t1 = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_); t2 = nextlen * 2; _this._sendBits$2(t1[t2] & 65535, t1[t2 + 1] & 65535); --count; } t1 = A._lateReadCheck(_this.__Deflate__bitLengthTree, _s14_); _this._sendBits$2(t1[32] & 65535, t1[33] & 65535); _this._sendBits$2(count - 3, 2); } else { t1 = _this.__Deflate__bitLengthTree; if (count <= 10) { t1 = A._lateReadCheck(t1, _s14_); _this._sendBits$2(t1[34] & 65535, t1[35] & 65535); _this._sendBits$2(count - 3, 3); } else { t1 = A._lateReadCheck(t1, _s14_); _this._sendBits$2(t1[36] & 65535, t1[37] & 65535); _this._sendBits$2(count - 11, 7); } } if (nextlen0 === 0) { max_count = 138; min_count = 3; } else if (nextlen === nextlen0) { max_count = 6; min_count = 3; } else { max_count = 7; min_count = 4; } prevlen = nextlen; count = 0; } }, _putBytes$3(p, start, len) { var _this = this, _s8_ = "_pending"; if (len === 0) return; J.setRange$4$ax(A._lateReadCheck(_this.__Deflate__pendingBuffer, "_pendingBuffer"), A._lateReadCheck(_this.__Deflate__pending, _s8_), A._lateReadCheck(_this.__Deflate__pending, _s8_) + len, p, start); _this.__Deflate__pending = A._lateReadCheck(_this.__Deflate__pending, _s8_) + len; }, _putByte$1(c) { var t1 = A._lateReadCheck(this.__Deflate__pendingBuffer, "_pendingBuffer"), t2 = A._lateReadCheck(this.__Deflate__pending, "_pending"); this.__Deflate__pending = t2 + 1; J.$indexSet$ax(t1, t2, c); }, _deflate$_sendCode$2(c, tree) { var t1 = c * 2; this._sendBits$2(tree[t1] & 65535, tree[t1 + 1] & 65535); }, _sendBits$2(value_Renamed, $length) { var _this = this, _s13_ = "_numValidBits", _s10_ = "_bitBuffer", t1 = A._lateReadCheck(_this.__Deflate__numValidBits, _s13_), t2 = _this.__Deflate__bitBuffer; if (t1 > 16 - $length) { t1 = (A._lateReadCheck(t2, _s10_) | B.JSInt_methods.$shl(value_Renamed, A._lateReadCheck(_this.__Deflate__numValidBits, _s13_)) & 65535) >>> 0; _this.__Deflate__bitBuffer = t1; t1 = A._lateReadCheck(t1, _s10_); _this._putByte$1(t1); _this._putByte$1(A._rshift(t1, 8)); _this.__Deflate__bitBuffer = A._rshift(value_Renamed, 16 - A._lateReadCheck(_this.__Deflate__numValidBits, _s13_)); _this.__Deflate__numValidBits = A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) + ($length - 16); } else { _this.__Deflate__bitBuffer = (A._lateReadCheck(t2, _s10_) | B.JSInt_methods.$shl(value_Renamed, A._lateReadCheck(_this.__Deflate__numValidBits, _s13_)) & 65535) >>> 0; _this.__Deflate__numValidBits = A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) + $length; } }, _trTally$2(dist, lc) { var t1, t2, out_length, dcode, _this = this, _s14_ = "_pendingBuffer", _s8_ = "_lastLit", _s18_ = "_dynamicLengthTree", _s8_0 = "_matches", _s16_ = "_dynamicDistTree"; J.$indexSet$ax(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__dbuf, "_dbuf") + A._lateReadCheck(_this.__Deflate__lastLit, _s8_) * 2, A._rshift(dist, 8)); J.$indexSet$ax(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__dbuf, "_dbuf") + A._lateReadCheck(_this.__Deflate__lastLit, _s8_) * 2 + 1, dist); J.$indexSet$ax(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__lbuf, "_lbuf") + A._lateReadCheck(_this.__Deflate__lastLit, _s8_), lc); _this.__Deflate__lastLit = A._lateReadCheck(_this.__Deflate__lastLit, _s8_) + 1; if (dist === 0) { t1 = A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_); t2 = lc * 2; t1[t2] = t1[t2] + 1; } else { _this.__Deflate__matches = A._lateReadCheck(_this.__Deflate__matches, _s8_0) + 1; t1 = A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_); t2 = (B.List_NUU[lc] + 256 + 1) * 2; t1[t2] = t1[t2] + 1; t2 = A._lateReadCheck(_this.__Deflate__dynamicDistTree, _s16_); t1 = A._HuffmanTree__dCode(dist - 1) * 2; t2[t1] = t2[t1] + 1; } if ((A._lateReadCheck(_this.__Deflate__lastLit, _s8_) & 8191) === 0 && A._lateReadCheck(_this.__Deflate__level, "_level") > 2) { out_length = A._lateReadCheck(_this.__Deflate__lastLit, _s8_) * 8; t1 = A._lateReadCheck(_this.__Deflate__strStart, "_strStart"); t2 = A._lateReadCheck(_this.__Deflate__blockStart, "_blockStart"); for (dcode = 0; dcode < 30; ++dcode) out_length += A._lateReadCheck(_this.__Deflate__dynamicDistTree, _s16_)[dcode * 2] * (5 + B.List_X3d[dcode]); out_length = A._rshift(out_length, 3); if (A._lateReadCheck(_this.__Deflate__matches, _s8_0) < A._lateReadCheck(_this.__Deflate__lastLit, _s8_) / 2 && out_length < (t1 - t2) / 2) return true; } return A._lateReadCheck(_this.__Deflate__lastLit, _s8_) === A._lateReadCheck(_this.__Deflate__litBufferSize, "_litBufferSize") - 1; }, _compressBlock$2(ltree, dtree) { var lx, t1, dist, lc, code, extra, _this = this, _s8_ = "_lastLit", _s14_ = "_pendingBuffer"; if (A._lateReadCheck(_this.__Deflate__lastLit, _s8_) !== 0) { lx = 0; do { t1 = lx * 2; dist = J.$index$asx(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__dbuf, "_dbuf") + t1) << 8 & 65280 | J.$index$asx(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__dbuf, "_dbuf") + t1 + 1) & 255; lc = J.$index$asx(A._lateReadCheck(_this.__Deflate__pendingBuffer, _s14_), A._lateReadCheck(_this.__Deflate__lbuf, "_lbuf") + lx) & 255; ++lx; if (dist === 0) _this._deflate$_sendCode$2(lc, ltree); else { code = B.List_NUU[lc]; _this._deflate$_sendCode$2(code + 256 + 1, ltree); extra = B.List_qQn[code]; if (extra !== 0) _this._sendBits$2(lc - B.List_qQn0[code], extra); --dist; code = A._HuffmanTree__dCode(dist); _this._deflate$_sendCode$2(code, dtree); extra = B.List_X3d[code]; if (extra !== 0) _this._sendBits$2(dist - B.List_X3d0[code], extra); } } while (lx < A._lateReadCheck(_this.__Deflate__lastLit, _s8_)); } _this._deflate$_sendCode$2(256, ltree); _this.__Deflate__lastEOBLen = ltree[513]; }, setDataType$0() { var n, bin_freq, ascii_freq, _this = this, _s18_ = "_dynamicLengthTree"; for (n = 0, bin_freq = 0; n < 7;) { bin_freq += A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_)[n * 2]; ++n; } for (ascii_freq = 0; n < 128;) { ascii_freq += A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_)[n * 2]; ++n; } for (; n < 256;) { bin_freq += A._lateReadCheck(_this.__Deflate__dynamicLengthTree, _s18_)[n * 2]; ++n; } _this._dataType = bin_freq > A._rshift(ascii_freq, 2) ? 0 : 1; }, biFlush$0() { var t1, _this = this, _s13_ = "_numValidBits", _s10_ = "_bitBuffer"; if (A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) === 16) { t1 = A._lateReadCheck(_this.__Deflate__bitBuffer, _s10_); _this._putByte$1(t1); _this._putByte$1(A._rshift(t1, 8)); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; } else if (A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) >= 8) { _this._putByte$1(A._lateReadCheck(_this.__Deflate__bitBuffer, _s10_)); _this.__Deflate__bitBuffer = A._rshift(A._lateReadCheck(_this.__Deflate__bitBuffer, _s10_), 8); _this.__Deflate__numValidBits = A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) - 8; } }, _biWindup$0() { var t1, _this = this, _s13_ = "_numValidBits", _s10_ = "_bitBuffer"; if (A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) > 8) { t1 = A._lateReadCheck(_this.__Deflate__bitBuffer, _s10_); _this._putByte$1(t1); _this._putByte$1(A._rshift(t1, 8)); } else if (A._lateReadCheck(_this.__Deflate__numValidBits, _s13_) > 0) _this._putByte$1(A._lateReadCheck(_this.__Deflate__bitBuffer, _s10_)); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; }, _flushBlockOnly$1(eof) { var max_blindex, optLenb, staticLenb, _this = this, _s11_ = "_blockStart", _s9_ = "_strStart", t1 = A._lateReadCheck(_this.__Deflate__blockStart, _s11_) >= 0 ? A._lateReadCheck(_this.__Deflate__blockStart, _s11_) : -1, t2 = A._lateReadCheck(_this.__Deflate__strStart, _s9_) - A._lateReadCheck(_this.__Deflate__blockStart, _s11_); if (A._lateReadCheck(_this.__Deflate__level, "_level") > 0) { if (_this._dataType === 2) _this.setDataType$0(); _this._lDesc._buildTree$1(_this); _this._dDesc._buildTree$1(_this); max_blindex = _this._buildBitLengthTree$0(); optLenb = A._rshift(A._lateReadCheck(_this.__Deflate__optimalLen, "_optimalLen") + 3 + 7, 3); staticLenb = A._rshift(A._lateReadCheck(_this.__Deflate__staticLen, "_staticLen") + 3 + 7, 3); if (staticLenb <= optLenb) optLenb = staticLenb; } else { staticLenb = t2 + 5; optLenb = staticLenb; max_blindex = 0; } if (t2 + 4 <= optLenb && t1 !== -1) _this._trStoredBlock$3(t1, t2, eof); else if (staticLenb === optLenb) { _this._sendBits$2(2 + (eof ? 1 : 0), 3); _this._compressBlock$2(B.List_Xg4, B.List_iYO); } else { _this._sendBits$2(4 + (eof ? 1 : 0), 3); _this._sendAllTrees$3(A._lateReadCheck(_this._lDesc.___HuffmanTree_maxCode, "maxCode") + 1, A._lateReadCheck(_this._dDesc.___HuffmanTree_maxCode, "maxCode") + 1, max_blindex + 1); _this._compressBlock$2(A._lateReadCheck(_this.__Deflate__dynamicLengthTree, "_dynamicLengthTree"), A._lateReadCheck(_this.__Deflate__dynamicDistTree, "_dynamicDistTree")); } _this._initBlock$0(); if (eof) _this._biWindup$0(); _this.__Deflate__blockStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_); _this._flushPending$0(); }, _deflateStored$1(flush) { var t1, maxStart, _this = this, _s18_ = "_pendingBufferSize", _s10_ = "_lookAhead", _s9_ = "_strStart", _s11_ = "_blockStart", maxBlockSize = 65535 > A._lateReadCheck(_this.__Deflate__pendingBufferSize, _s18_) - 5 ? A._lateReadCheck(_this.__Deflate__pendingBufferSize, _s18_) - 5 : 65535; for (t1 = flush === 0; true;) { if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) <= 1) { _this._fillWindow$0(); if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) === 0 && t1) return 0; if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) === 0) break; } _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + A._lateReadCheck(_this.__Deflate__lookAhead, _s10_); _this.__Deflate__lookAhead = 0; maxStart = A._lateReadCheck(_this.__Deflate__blockStart, _s11_) + maxBlockSize; if (A._lateReadCheck(_this.__Deflate__strStart, _s9_) >= maxStart) { _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__strStart, _s9_) - maxStart; _this.__Deflate__strStart = maxStart; _this._flushBlockOnly$1(false); } if (A._lateReadCheck(_this.__Deflate__strStart, _s9_) - A._lateReadCheck(_this.__Deflate__blockStart, _s11_) >= A._lateReadCheck(_this.__Deflate__windowSize, "_windowSize") - 262) _this._flushBlockOnly$1(false); } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _trStoredBlock$3(buf, storedLen, eof) { var t1, _this = this; _this._sendBits$2(eof ? 1 : 0, 3); _this._biWindup$0(); _this.__Deflate__lastEOBLen = 8; _this._putByte$1(storedLen); _this._putByte$1(A._rshift(storedLen, 8)); t1 = (~storedLen >>> 0) + 65536 & 65535; _this._putByte$1(t1); _this._putByte$1(A._rshift(t1, 8)); _this._putBytes$3(A._lateReadCheck(_this.__Deflate__window, "_window"), buf, storedLen); }, _fillWindow$0() { var more, p, n, m, t2, _this = this, _s10_ = "_lookAhead", _s9_ = "_strStart", _s11_ = "_windowSize", _s7_ = "_window", t1 = _this._deflate$_input; do { more = A._lateReadCheck(_this.__Deflate__actualWindowSize, "_actualWindowSize") - A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - A._lateReadCheck(_this.__Deflate__strStart, _s9_); if (more === 0 && A._lateReadCheck(_this.__Deflate__strStart, _s9_) === 0 && A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) === 0) more = A._lateReadCheck(_this.__Deflate__windowSize, _s11_); else if (A._lateReadCheck(_this.__Deflate__strStart, _s9_) >= A._lateReadCheck(_this.__Deflate__windowSize, _s11_) + A._lateReadCheck(_this.__Deflate__windowSize, _s11_) - 262) { J.setRange$4$ax(A._lateReadCheck(_this.__Deflate__window, _s7_), 0, A._lateReadCheck(_this.__Deflate__windowSize, _s11_), A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__windowSize, _s11_)); _this._matchStart = _this._matchStart - A._lateReadCheck(_this.__Deflate__windowSize, _s11_); _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) - A._lateReadCheck(_this.__Deflate__windowSize, _s11_); _this.__Deflate__blockStart = A._lateReadCheck(_this.__Deflate__blockStart, "_blockStart") - A._lateReadCheck(_this.__Deflate__windowSize, _s11_); p = A._lateReadCheck(_this.__Deflate__hashSize, "_hashSize"); n = p; do { --p; m = A._lateReadCheck(_this.__Deflate__head, "_head")[p] & 65535; t2 = A._lateReadCheck(_this.__Deflate__head, "_head"); t2[p] = m >= A._lateReadCheck(_this.__Deflate__windowSize, _s11_) ? m - A._lateReadCheck(_this.__Deflate__windowSize, _s11_) : 0; } while (--n, n !== 0); p = A._lateReadCheck(_this.__Deflate__windowSize, _s11_); n = p; do { --p; m = A._lateReadCheck(_this.__Deflate__prev, "_prev")[p] & 65535; t2 = A._lateReadCheck(_this.__Deflate__prev, "_prev"); t2[p] = m >= A._lateReadCheck(_this.__Deflate__windowSize, _s11_) ? m - A._lateReadCheck(_this.__Deflate__windowSize, _s11_) : 0; } while (--n, n !== 0); more += A._lateReadCheck(_this.__Deflate__windowSize, _s11_); } if (t1.get$isEOS()) return; n = _this._readBuf$3(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + A._lateReadCheck(_this.__Deflate__lookAhead, _s10_), more); t2 = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) + n; _this.__Deflate__lookAhead = t2; if (A._lateReadCheck(t2, _s10_) >= 3) { t2 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_)) & 255; _this.__Deflate__insertHash = t2; _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(t2, "_insertHash"), A._lateReadCheck(_this.__Deflate__hashShift, "_hashShift")) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, "_hashMask")) >>> 0; } } while (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) < 262 && !t1.get$isEOS()); }, _deflateFast$1(flush) { var t1, hash_head, bflush, t2, t3, _this = this, _s10_ = "_lookAhead", _s11_ = "_insertHash", _s10_0 = "_hashShift", _s7_ = "_window", _s9_ = "_strStart", _s9_0 = "_hashMask", _s5_ = "_head", _s11_0 = "_windowMask", _s12_ = "_matchLength"; for (t1 = flush === 0, hash_head = 0; true;) { if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) < 262) { _this._fillWindow$0(); if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) < 262 && t1) return 0; if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) === 0) break; } if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) >= 3) { _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(_this.__Deflate__insertHash, _s11_), A._lateReadCheck(_this.__Deflate__hashShift, _s10_0)) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 2) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, _s9_0)) >>> 0; hash_head = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] & 65535; A._lateReadCheck(_this.__Deflate__prev, "_prev")[(A._lateReadCheck(_this.__Deflate__strStart, _s9_) & A._lateReadCheck(_this.__Deflate__windowMask, _s11_0)) >>> 0] = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)]; A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] = A._lateReadCheck(_this.__Deflate__strStart, _s9_); } if (hash_head !== 0 && (A._lateReadCheck(_this.__Deflate__strStart, _s9_) - hash_head & 65535) <= A._lateReadCheck(_this.__Deflate__windowSize, "_windowSize") - 262) if (A._lateReadCheck(_this.__Deflate__strategy, "_strategy") !== 2) _this.__Deflate__matchLength = _this._longestMatch$1(hash_head); if (A._lateReadCheck(_this.__Deflate__matchLength, _s12_) >= 3) { bflush = _this._trTally$2(A._lateReadCheck(_this.__Deflate__strStart, _s9_) - _this._matchStart, A._lateReadCheck(_this.__Deflate__matchLength, _s12_) - 3); _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - A._lateReadCheck(_this.__Deflate__matchLength, _s12_); t2 = A._lateReadCheck(_this.__Deflate__matchLength, _s12_); t3 = $.Deflate____config.__late_helper$_value; if (t3 == null ? $.Deflate____config == null : t3 === $.Deflate____config) A.throwExpression(A.LateError$fieldNI($.Deflate____config.__late_helper$_name)); if (t2 <= t3.maxLazy && A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) >= 3) { _this.__Deflate__matchLength = A._lateReadCheck(_this.__Deflate__matchLength, _s12_) - 1; do { _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(_this.__Deflate__insertHash, _s11_), A._lateReadCheck(_this.__Deflate__hashShift, _s10_0)) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 2) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, _s9_0)) >>> 0; hash_head = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] & 65535; A._lateReadCheck(_this.__Deflate__prev, "_prev")[(A._lateReadCheck(_this.__Deflate__strStart, _s9_) & A._lateReadCheck(_this.__Deflate__windowMask, _s11_0)) >>> 0] = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)]; A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] = A._lateReadCheck(_this.__Deflate__strStart, _s9_); } while (t2 = A._lateReadCheck(_this.__Deflate__matchLength, _s12_) - 1, _this.__Deflate__matchLength = t2, t2 !== 0); _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; } else { _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + A._lateReadCheck(_this.__Deflate__matchLength, _s12_); _this.__Deflate__matchLength = 0; t2 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_)) & 255; _this.__Deflate__insertHash = t2; _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(t2, _s11_), A._lateReadCheck(_this.__Deflate__hashShift, _s10_0)) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, _s9_0)) >>> 0; } } else { bflush = _this._trTally$2(0, J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_)) & 255); _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - 1; _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; } if (bflush) _this._flushBlockOnly$1(false); } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _deflateSlow$1(flush) { var t1, hash_head, t2, t3, max_insert, bflush, _this = this, _s10_ = "_lookAhead", _s11_ = "_insertHash", _s10_0 = "_hashShift", _s7_ = "_window", _s9_ = "_strStart", _s9_0 = "_hashMask", _s5_ = "_head", _s11_0 = "_windowMask", _s12_ = "_matchLength", _s11_1 = "_prevLength", _s9_1 = "_strategy", _s15_ = "_matchAvailable"; for (t1 = flush === 0, hash_head = 0; true;) { if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) < 262) { _this._fillWindow$0(); if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) < 262 && t1) return 0; if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) === 0) break; } if (A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) >= 3) { _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(_this.__Deflate__insertHash, _s11_), A._lateReadCheck(_this.__Deflate__hashShift, _s10_0)) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 2) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, _s9_0)) >>> 0; hash_head = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] & 65535; A._lateReadCheck(_this.__Deflate__prev, "_prev")[(A._lateReadCheck(_this.__Deflate__strStart, _s9_) & A._lateReadCheck(_this.__Deflate__windowMask, _s11_0)) >>> 0] = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)]; A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] = A._lateReadCheck(_this.__Deflate__strStart, _s9_); } t2 = A._lateReadCheck(_this.__Deflate__matchLength, _s12_); _this.__Deflate__prevLength = t2; _this.__Deflate__prevMatch = _this._matchStart; _this.__Deflate__matchLength = 2; if (hash_head !== 0) { t2 = A._lateReadCheck(t2, _s11_1); t3 = $.Deflate____config.__late_helper$_value; if (t3 == null ? $.Deflate____config == null : t3 === $.Deflate____config) A.throwExpression(A.LateError$fieldNI($.Deflate____config.__late_helper$_name)); t2 = t2 < t3.maxLazy && (A._lateReadCheck(_this.__Deflate__strStart, _s9_) - hash_head & 65535) <= A._lateReadCheck(_this.__Deflate__windowSize, "_windowSize") - 262; } else t2 = false; if (t2) { if (A._lateReadCheck(_this.__Deflate__strategy, _s9_1) !== 2) _this.__Deflate__matchLength = _this._longestMatch$1(hash_head); if (A._lateReadCheck(_this.__Deflate__matchLength, _s12_) <= 5) if (A._lateReadCheck(_this.__Deflate__strategy, _s9_1) !== 1) t2 = A._lateReadCheck(_this.__Deflate__matchLength, _s12_) === 3 && A._lateReadCheck(_this.__Deflate__strStart, _s9_) - _this._matchStart > 4096; else t2 = true; else t2 = false; if (t2) _this.__Deflate__matchLength = 2; } if (A._lateReadCheck(_this.__Deflate__prevLength, _s11_1) >= 3 && A._lateReadCheck(_this.__Deflate__matchLength, _s12_) <= A._lateReadCheck(_this.__Deflate__prevLength, _s11_1)) { max_insert = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - 3; bflush = _this._trTally$2(A._lateReadCheck(_this.__Deflate__strStart, _s9_) - 1 - A._lateReadCheck(_this.__Deflate__prevMatch, "_prevMatch"), A._lateReadCheck(_this.__Deflate__prevLength, _s11_1) - 3); _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - (A._lateReadCheck(_this.__Deflate__prevLength, _s11_1) - 1); _this.__Deflate__prevLength = A._lateReadCheck(_this.__Deflate__prevLength, _s11_1) - 2; do { t2 = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; _this.__Deflate__strStart = t2; if (t2 <= max_insert) { _this.__Deflate__insertHash = ((B.JSInt_methods.$shl(A._lateReadCheck(_this.__Deflate__insertHash, _s11_), A._lateReadCheck(_this.__Deflate__hashShift, _s10_0)) ^ J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 2) & 255) & A._lateReadCheck(_this.__Deflate__hashMask, _s9_0)) >>> 0; hash_head = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] & 65535; A._lateReadCheck(_this.__Deflate__prev, "_prev")[(A._lateReadCheck(_this.__Deflate__strStart, _s9_) & A._lateReadCheck(_this.__Deflate__windowMask, _s11_0)) >>> 0] = A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)]; A._lateReadCheck(_this.__Deflate__head, _s5_)[A._lateReadCheck(_this.__Deflate__insertHash, _s11_)] = A._lateReadCheck(_this.__Deflate__strStart, _s9_); } } while (t2 = A._lateReadCheck(_this.__Deflate__prevLength, _s11_1) - 1, _this.__Deflate__prevLength = t2, t2 !== 0); _this.__Deflate__matchAvailable = 0; _this.__Deflate__matchLength = 2; _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; if (bflush) _this._flushBlockOnly$1(false); } else if (A._lateReadCheck(_this.__Deflate__matchAvailable, _s15_) !== 0) { if (_this._trTally$2(0, J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) - 1) & 255)) _this._flushBlockOnly$1(false); _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - 1; } else { _this.__Deflate__matchAvailable = 1; _this.__Deflate__strStart = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 1; _this.__Deflate__lookAhead = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_) - 1; } } if (A._lateReadCheck(_this.__Deflate__matchAvailable, _s15_) !== 0) { _this._trTally$2(0, J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), A._lateReadCheck(_this.__Deflate__strStart, _s9_) - 1) & 255); _this.__Deflate__matchAvailable = 0; } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _longestMatch$1(cur_match) { var scan0, match, len, _this = this, _s9_ = "_strStart", _s11_ = "_prevLength", _s11_0 = "_windowSize", _s7_ = "_window", _s10_ = "_lookAhead", chain_length = $.Deflate____config._readField$0().maxChain, scan = A._lateReadCheck(_this.__Deflate__strStart, _s9_), best_len = A._lateReadCheck(_this.__Deflate__prevLength, _s11_), limit = A._lateReadCheck(_this.__Deflate__strStart, _s9_) > A._lateReadCheck(_this.__Deflate__windowSize, _s11_0) - 262 ? A._lateReadCheck(_this.__Deflate__strStart, _s9_) - (A._lateReadCheck(_this.__Deflate__windowSize, _s11_0) - 262) : 0, nice_match = $.Deflate____config._readField$0().niceLength, t1 = A._lateReadCheck(_this.__Deflate__windowMask, "_windowMask"), strend = A._lateReadCheck(_this.__Deflate__strStart, _s9_) + 258, t2 = scan + best_len, scan_end1 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2 - 1), scan_end = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2); if (A._lateReadCheck(_this.__Deflate__prevLength, _s11_) >= $.Deflate____config._readField$0().goodLength) chain_length = chain_length >>> 2; if (nice_match > A._lateReadCheck(_this.__Deflate__lookAhead, _s10_)) nice_match = A._lateReadCheck(_this.__Deflate__lookAhead, _s10_); scan0 = strend - 258; do { c$0: { t2 = cur_match + best_len; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2) === scan_end) if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2 - 1) === scan_end1) if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), cur_match) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan)) { match = cur_match + 1; t2 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match) !== J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan + 1); } else { match = cur_match; t2 = true; } else { match = cur_match; t2 = true; } else { match = cur_match; t2 = true; } if (t2) break c$0; scan += 2; ++match; do { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; if (J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match)) { ++scan; ++match; t2 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), scan) === J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), match) && scan < strend; } else t2 = false; } else t2 = false; } else t2 = false; } else t2 = false; } else t2 = false; } else t2 = false; } else t2 = false; } while (t2); len = 258 - (strend - scan); if (len > best_len) { _this._matchStart = cur_match; if (len >= nice_match) { best_len = len; break; } t2 = scan0 + len; scan_end1 = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2 - 1); scan_end = J.$index$asx(A._lateReadCheck(_this.__Deflate__window, _s7_), t2); best_len = len; } scan = scan0; } cur_match = A._lateReadCheck(_this.__Deflate__prev, "_prev")[cur_match & t1] & 65535; if (cur_match > limit) { --chain_length; t2 = chain_length !== 0; } else t2 = false; } while (t2); if (best_len <= A._lateReadCheck(_this.__Deflate__lookAhead, _s10_)) return best_len; return A._lateReadCheck(_this.__Deflate__lookAhead, _s10_); }, _readBuf$3(buf, start, size) { var data, len, bytes, t1, _this = this; if (size === 0 || _this._deflate$_input.get$isEOS()) return 0; data = _this._deflate$_input.readBytes$1(size); len = data.get$length(data); if (len === 0) return 0; bytes = data.toUint8List$0(); t1 = J.getInterceptor$asx(bytes); if (len > t1.get$length(bytes)) len = t1.get$length(bytes); B.NativeUint8List_methods.setRange$3(buf, start, start + len, bytes); _this.total += len; _this.crc32 = A.getCrc32(bytes, _this.crc32); return len; }, _flushPending$0() { var _this = this, _s8_ = "_pending", t1 = A._lateReadCheck(_this.__Deflate__pending, _s8_); _this._output.writeBytes$2(A._lateReadCheck(_this.__Deflate__pendingBuffer, "_pendingBuffer"), t1); _this.__Deflate__pendingOut = A._lateReadCheck(_this.__Deflate__pendingOut, "_pendingOut") + t1; t1 = A._lateReadCheck(_this.__Deflate__pending, _s8_) - t1; _this.__Deflate__pending = t1; if (A._lateReadCheck(t1, _s8_) === 0) _this.__Deflate__pendingOut = 0; }, _getConfig$1(level) { switch (level) { case 0: return new A._DeflaterConfig(0, 0, 0, 0, 0); case 1: return new A._DeflaterConfig(4, 4, 8, 4, 1); case 2: return new A._DeflaterConfig(4, 5, 16, 8, 1); case 3: return new A._DeflaterConfig(4, 6, 32, 32, 1); case 4: return new A._DeflaterConfig(4, 4, 16, 16, 2); case 5: return new A._DeflaterConfig(8, 16, 32, 32, 2); case 6: return new A._DeflaterConfig(8, 16, 128, 128, 2); case 7: return new A._DeflaterConfig(8, 32, 128, 256, 2); case 8: return new A._DeflaterConfig(32, 128, 258, 1024, 2); case 9: return new A._DeflaterConfig(32, 258, 258, 4096, 2); } throw A.wrapException(A.ArchiveException$("Invalid Deflate parameter")); } }; A._DeflaterConfig.prototype = {}; A._HuffmanTree.prototype = { _genBitlen$1(s) { var t2, bits, t3, h, t4, overflow, n, t5, t6, xbits, f, bits0, m, _this = this, _s10_ = "staticDesc", _s8_ = "_heapMax", _s11_ = "_optimalLen", t1 = A._lateReadCheck(_this.___HuffmanTree_dynamicTree, "dynamicTree"), stree = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).staticTree, extra = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).extraBits, base_Renamed = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).extraBase, max_length = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).maxLength; for (t2 = s._bitLengthCount, bits = 0; bits <= 15; ++bits) t2[bits] = 0; t3 = s._heap; t1[t3[A._lateReadCheck(s.__Deflate__heapMax, _s8_)] * 2 + 1] = 0; for (h = A._lateReadCheck(s.__Deflate__heapMax, _s8_) + 1, t4 = stree != null, overflow = 0; h < 573; ++h) { n = t3[h]; t5 = n * 2; t6 = t5 + 1; bits = t1[t1[t6] * 2 + 1] + 1; if (bits > max_length) { ++overflow; bits = max_length; } t1[t6] = bits; if (n > A._lateReadCheck(_this.___HuffmanTree_maxCode, "maxCode")) continue; t2[bits] = t2[bits] + 1; xbits = n >= base_Renamed ? extra[n - base_Renamed] : 0; f = t1[t5]; s.__Deflate__optimalLen = A._lateReadCheck(s.__Deflate__optimalLen, _s11_) + f * (bits + xbits); if (t4) s.__Deflate__staticLen = A._lateReadCheck(s.__Deflate__staticLen, "_staticLen") + f * (stree[t6] + xbits); } if (overflow === 0) return; bits = max_length - 1; do { for (bits0 = bits; t4 = t2[bits0], t4 === 0;) --bits0; t2[bits0] = t4 - 1; t4 = bits0 + 1; t2[t4] = t2[t4] + 2; t2[max_length] = t2[max_length] - 1; overflow -= 2; } while (overflow > 0); for (bits = max_length; bits !== 0; --bits) { n = t2[bits]; for (; n !== 0;) { --h; m = t3[h]; if (m > A._lateReadCheck(_this.___HuffmanTree_maxCode, "maxCode")) continue; t4 = m * 2; t5 = t4 + 1; if (t1[t5] !== bits) { s.__Deflate__optimalLen = A._lateReadCheck(s.__Deflate__optimalLen, _s11_) + (bits - t1[t5]) * t1[t4]; t1[t5] = bits; } --n; } } }, _buildTree$1(s) { var t2, t3, n, max_code, t4, t5, node, m, t6, t7, node0, _this = this, _s10_ = "staticDesc", _s8_ = "_heapLen", _s8_0 = "_heapMax", t1 = A._lateReadCheck(_this.___HuffmanTree_dynamicTree, "dynamicTree"), stree = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).staticTree, elems = A._lateReadCheck(_this.___HuffmanTree_staticDesc, _s10_).numElements; s.__Deflate__heapLen = 0; s.__Deflate__heapMax = 573; for (t2 = s._heap, t3 = s._deflate$_depth, n = 0, max_code = -1; n < elems; ++n) { t4 = n * 2; if (t1[t4] !== 0) { t4 = A._lateReadCheck(s.__Deflate__heapLen, _s8_) + 1; s.__Deflate__heapLen = t4; t2[t4] = n; t3[n] = 0; max_code = n; } else t1[t4 + 1] = 0; } for (t4 = stree != null; A._lateReadCheck(s.__Deflate__heapLen, _s8_) < 2;) { t5 = A._lateReadCheck(s.__Deflate__heapLen, _s8_) + 1; s.__Deflate__heapLen = t5; if (max_code < 2) { ++max_code; node = max_code; } else node = 0; t2[t5] = node; t5 = node * 2; t1[t5] = 1; t3[node] = 0; s.__Deflate__optimalLen = A._lateReadCheck(s.__Deflate__optimalLen, "_optimalLen") - 1; if (t4) s.__Deflate__staticLen = A._lateReadCheck(s.__Deflate__staticLen, "_staticLen") - stree[t5 + 1]; } _this.___HuffmanTree_maxCode = max_code; for (n = B.JSInt_methods._tdivFast$1(A._lateReadCheck(s.__Deflate__heapLen, _s8_), 2); n >= 1; --n) s._pqdownheap$2(t1, n); node = elems; do { n = t2[1]; t4 = A._lateReadCheck(s.__Deflate__heapLen, _s8_); s.__Deflate__heapLen = t4 - 1; t2[1] = t2[t4]; s._pqdownheap$2(t1, 1); m = t2[1]; t4 = s.__Deflate__heapMax = A._lateReadCheck(s.__Deflate__heapMax, _s8_0) - 1; t2[t4] = n; t4 = A._lateReadCheck(t4, _s8_0) - 1; s.__Deflate__heapMax = t4; t2[t4] = m; t4 = n * 2; t5 = m * 2; t1[node * 2] = t1[t4] + t1[t5]; t6 = t3[n]; t7 = t3[m]; t3[node] = (t6 > t7 ? t6 : t7) + 1; t1[t5 + 1] = node; t1[t4 + 1] = node; node0 = node + 1; t2[1] = node; s._pqdownheap$2(t1, 1); if (A._lateReadCheck(s.__Deflate__heapLen, _s8_) >= 2) { node = node0; continue; } else break; } while (true); t3 = A._lateReadCheck(s.__Deflate__heapMax, _s8_0) - 1; s.__Deflate__heapMax = t3; t2[t3] = t2[1]; _this._genBitlen$1(s); A._HuffmanTree__genCodes(t1, max_code, s._bitLengthCount); } }; A._StaticTree.prototype = {}; A.HuffmanTable.prototype = { HuffmanTable$1(lengths) { var i, t1, size, bitLength, code, skip, rtemp, reversed, j, t2, _this = this, listSize = lengths.length; for (i = 0; i < listSize; ++i) { t1 = lengths[i]; if (t1 > _this.maxCodeLength) _this.maxCodeLength = t1; if (t1 < _this.minCodeLength) _this.minCodeLength = t1; } size = B.JSInt_methods._shlPositive$1(1, _this.maxCodeLength); _this.__HuffmanTable_table = new Uint32Array(size); for (bitLength = 1, code = 0, skip = 2; bitLength <= _this.maxCodeLength;) { for (t1 = bitLength << 16, i = 0; i < listSize; ++i) if (lengths[i] === bitLength) { for (rtemp = code, reversed = 0, j = 0; j < bitLength; ++j) { reversed = (reversed << 1 | rtemp & 1) >>> 0; rtemp = rtemp >>> 1; } for (t2 = (t1 | i) >>> 0, j = reversed; j < size; j += skip) J.$indexSet$ax(A._lateReadCheck(_this.__HuffmanTable_table, "table"), j, t2); ++code; } ++bitLength; code = code << 1 >>> 0; skip = skip << 1 >>> 0; } } }; A.Inflate.prototype = { _inflate$0() { var t1, t2, _this = this; _this._bitBufferLen = _this._bitBuffer = 0; if (!_this.inputSet) return; for (t1 = _this.__Inflate_input; t2 = A._lateReadCheck(t1, "input"), t2.offset < t2.start + A._lateReadCheck(t2.__InputStream__length, "_length");) if (!_this._parseBlock$0()) break; }, _parseBlock$0() { var hdr, btype, len, t2, _this = this, _s5_ = "input", t1 = _this.__Inflate_input; if (A._lateReadCheck(t1, _s5_).get$isEOS()) return false; hdr = _this._readBits$1(3); btype = hdr >>> 1; switch (btype) { case 0: _this._bitBufferLen = _this._bitBuffer = 0; len = _this._readBits$1(16); t2 = _this._readBits$1(16); if (len !== 0 && len !== (t2 ^ 65535) >>> 0) A.throwExpression(A.ArchiveException$("Invalid uncompressed block header")); t2 = A._lateReadCheck(t1, _s5_); if (len > t2.get$length(t2)) A.throwExpression(A.ArchiveException$("Input buffer is broken")); _this.output.writeInputStream$1(A._lateReadCheck(t1, _s5_).readBytes$1(len)); break; case 1: _this._decodeHuffman$2(_this._fixedLiteralLengthTable, _this._fixedDistanceTable); break; case 2: _this._parseDynamicHuffmanBlock$0(); break; default: throw A.wrapException(A.ArchiveException$("unknown BTYPE: " + btype)); } return (hdr & 1) === 0; }, _readBits$1($length) { var t1, t2, t3, t4, _this = this; if ($length === 0) return 0; for (t1 = _this.__Inflate_input; t2 = _this._bitBufferLen, t2 < $length;) { t2 = A._lateReadCheck(t1, "input"); if (t2.offset >= t2.start + A._lateReadCheck(t2.__InputStream__length, "_length")) throw A.wrapException(A.ArchiveException$("input buffer is broken")); t2 = A._lateReadCheck(t1, "input"); t2 = J.$index$asx(t2.buffer, t2.offset++); t3 = _this._bitBuffer; t4 = _this._bitBufferLen; _this._bitBuffer = (t3 | B.JSInt_methods.$shl(t2, t4)) >>> 0; _this._bitBufferLen = t4 + 8; } t1 = _this._bitBuffer; t3 = B.JSInt_methods._shlPositive$1(1, $length); _this._bitBuffer = B.JSInt_methods._shrBothPositive$1(t1, $length); _this._bitBufferLen = t2 - $length; return (t1 & t3 - 1) >>> 0; }, _readCodeByTable$1(table) { var t2, t3, t4, t5, codeWithLength, codeLength, _this = this, t1 = A._lateReadCheck(table.__HuffmanTable_table, "table"), maxCodeLength = table.maxCodeLength; for (t2 = _this.__Inflate_input; _this._bitBufferLen < maxCodeLength;) { t3 = A._lateReadCheck(t2, "input"); if (t3.offset >= t3.start + A._lateReadCheck(t3.__InputStream__length, "_length")) break; t3 = A._lateReadCheck(t2, "input"); t3 = J.$index$asx(t3.buffer, t3.offset++); t4 = _this._bitBuffer; t5 = _this._bitBufferLen; _this._bitBuffer = (t4 | B.JSInt_methods.$shl(t3, t5)) >>> 0; _this._bitBufferLen = t5 + 8; } codeWithLength = J.$index$asx(t1, (_this._bitBuffer & B.JSInt_methods._shlPositive$1(1, maxCodeLength) - 1) >>> 0); codeLength = codeWithLength >>> 16; _this._bitBuffer = B.JSInt_methods._shrBothPositive$1(_this._bitBuffer, codeLength); _this._bitBufferLen -= codeLength; return codeWithLength & 65535; }, _parseDynamicHuffmanBlock$0() { var i, codeLengthsTable, litlenLengths, distLengths, litlen, dist, _this = this, numLitLengthCodes = _this._readBits$1(5) + 257, numDistanceCodes = _this._readBits$1(5) + 1, numCodeLengths = _this._readBits$1(4) + 4, codeLengths = new Uint8Array(19); for (i = 0; i < numCodeLengths; ++i) codeLengths[B.List_uSC[i]] = _this._readBits$1(3); codeLengthsTable = A.HuffmanTable$(codeLengths); litlenLengths = new Uint8Array(numLitLengthCodes); distLengths = new Uint8Array(numDistanceCodes); litlen = _this._decode$3(numLitLengthCodes, codeLengthsTable, litlenLengths); dist = _this._decode$3(numDistanceCodes, codeLengthsTable, distLengths); _this._decodeHuffman$2(A.HuffmanTable$(litlen), A.HuffmanTable$(dist)); }, _decodeHuffman$2(litlen, dist) { var t1, code, ti, codeLength, distCode, distance, t2, _this = this; for (t1 = _this.output; true;) { code = _this._readCodeByTable$1(litlen); if (code > 285) throw A.wrapException(A.ArchiveException$("Invalid Huffman Code " + code)); if (code === 256) break; if (code < 256) { t1.writeByte$1(code & 255); continue; } ti = code - 257; codeLength = B.List_qQn1[ti] + _this._readBits$1(B.List_eea[ti]); distCode = _this._readCodeByTable$1(dist); if (distCode <= 29) { distance = B.List_i3t[distCode] + _this._readBits$1(B.List_X3d[distCode]); for (t2 = -distance; codeLength > distance;) { t1.writeBytes$1(t1.subset$1(t2)); codeLength -= distance; } if (codeLength === distance) t1.writeBytes$1(t1.subset$1(t2)); else t1.writeBytes$1(t1.subset$2(t2, codeLength - distance)); } else throw A.wrapException(A.ArchiveException$("Illegal unused distance symbol")); } for (t1 = _this.__Inflate_input; t2 = _this._bitBufferLen, t2 >= 8;) { _this._bitBufferLen = t2 - 8; t2 = A._lateReadCheck(t1, "input"); if (--t2.offset < 0) t2.offset = 0; } }, _decode$3(num, table, lengths) { var prev, i, code, repeat, repeat0, i0, _this = this; for (prev = 0, i = 0; i < num;) { code = _this._readCodeByTable$1(table); switch (code) { case 16: repeat = 3 + _this._readBits$1(2); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = prev; } break; case 17: repeat = 3 + _this._readBits$1(3); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = 0; } prev = 0; break; case 18: repeat = 11 + _this._readBits$1(7); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = 0; } prev = 0; break; default: if (code > 15) throw A.wrapException(A.ArchiveException$("Invalid Huffman Code: " + code)); i0 = i + 1; lengths[i] = code; i = i0; prev = code; break; } } return lengths; } }; A.AttributedSpans.prototype = { hasAttributionsWithin$3$attributions$end$start(attributions, end, start) { var t1, i, t2, attribution, attributionsToFind = A.LinkedHashSet_LinkedHashSet$from(attributions, type$.dynamic); for (t1 = A._instanceType(attributionsToFind)._eval$1("_LinkedHashSetIterator<1>"), i = start; i <= end; ++i) for (t2 = new A._LinkedHashSetIterator(attributionsToFind, attributionsToFind._collection$_modifications, t1), t2._collection$_cell = attributionsToFind._collection$_first; t2.moveNext$0();) { attribution = t2._collection$_current; if (this.hasAttributionAt$2$attribution(i, attribution)) attributionsToFind.remove$1(0, attribution); if (attributionsToFind._collection$_length === 0) return true; } return false; }, getMatchingAttributionsWithin$3$attributions$end$start(attributions, end, start) { var t1, i, t2, t3, otherAttributions, t4, t5, matchingAttributions = A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution); for (t1 = A._instanceType(attributions)._eval$1("_LinkedHashSetIterator<1>"), i = start; i <= end; ++i) for (t2 = new A._LinkedHashSetIterator(attributions, attributions._collection$_modifications, t1), t2._collection$_cell = attributions._collection$_first; t2.moveNext$0();) { t3 = t2._collection$_current; otherAttributions = this.getAllAttributionsAt$1(start); for (t4 = new A._LinkedHashSetIterator(otherAttributions, otherAttributions._collection$_modifications, A._instanceType(otherAttributions)._eval$1("_LinkedHashSetIterator<1>")), t4._collection$_cell = otherAttributions._collection$_first; t4.moveNext$0();) { t5 = t4._collection$_current; if (t5.get$id(t5) === t3.get$id(t3)) matchingAttributions.add$1(0, t5); } } return matchingAttributions; }, hasAttributionAt$2$attribution(offset, attribution) { var t1, markerAfter, markerBefore = this._getStartingMarkerAtOrBefore$2$attribution(offset, attribution); if (markerBefore == null) return false; t1 = markerBefore.offset; markerAfter = this._getEndingMarkerAtOrAfter$2$attribution(t1, attribution); if (markerAfter == null) throw A.wrapException(A.Exception_Exception("Found an open-ended attribution. It starts with: " + markerBefore.toString$0(0))); return t1 <= offset && offset <= markerAfter.offset; }, getAllAttributionsAt$1(offset) { var t2, t3, _i, attributionsAtOffset, t1 = type$.Attribution, allAttributions = A.LinkedHashSet_LinkedHashSet$_empty(t1); for (t2 = this.markers, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) allAttributions.add$1(0, t2[_i].attribution); attributionsAtOffset = A.LinkedHashSet_LinkedHashSet$_empty(t1); for (t1 = A._LinkedHashSetIterator$(allAttributions, allAttributions._collection$_modifications, allAttributions.$ti._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current; if (this.hasAttributionAt$2$attribution(offset, t2)) attributionsAtOffset.add$1(0, t2); } return attributionsAtOffset; }, getAttributionSpansInRange$4$attributionFilter$end$resizeSpansToFitInRange$start(attributionFilter, end, resizeSpansToFitInRange, start) { var i, attributionsAtOffset, t1, t2, t3, t4, t5, _this = this, matchingAttributionSpans = A.LinkedHashSet_LinkedHashSet$_empty(type$.AttributionSpan); for (i = start; i <= end; ++i) { attributionsAtOffset = _this.getAllAttributionsAt$1(i); for (t1 = new A._LinkedHashSetIterator(attributionsAtOffset, attributionsAtOffset._collection$_modifications, A._instanceType(attributionsAtOffset)._eval$1("_LinkedHashSetIterator<1>")), t1._collection$_cell = attributionsAtOffset._collection$_first, t2 = A.S(i); t1.moveNext$0();) { t3 = t1._collection$_current; if (attributionFilter.call$1(t3)) { if (!_this.hasAttributionAt$2$attribution(i, t3)) A.throwExpression(A.Exception_Exception("Tried to expand attribution (" + A.S(t3) + ') at offset "' + t2 + '" but the given attribution does not exist at that offset.')); t4 = _this._getStartingMarkerAtOrBefore$2$attribution(i, t3).offset; t5 = _this._getEndingMarkerAtOrAfter$2$attribution(t4, t3).offset; matchingAttributionSpans.add$1(0, new A.AttributionSpan(t3, t4, t5)); } } } return matchingAttributionSpans; }, _getStartingMarkerAtOrBefore$2$attribution(offset, attribution) { var t1 = this.markers; return A.IterableExtension_firstWhereOrNull(new A.ReversedListIterable(t1, A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")).super$Iterable$where(0, new A.AttributedSpans__getStartingMarkerAtOrBefore_closure(attribution)), new A.AttributedSpans__getStartingMarkerAtOrBefore_closure0(offset)); }, _getEndingMarkerAtOrAfter$2$attribution(offset, attribution) { var t1 = this.markers; return A.IterableExtension_firstWhereOrNull(new A.WhereIterable(t1, new A.AttributedSpans__getEndingMarkerAtOrAfter_closure(attribution), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")), new A.AttributedSpans__getEndingMarkerAtOrAfter_closure0(offset)); }, addAttribution$3$end$newAttribution$start(end, newAttribution, start) { var t1, t2, t3, t4, matchingAttributions, t5, conflictStart, i, endMarkerJustBefore, endMarkerAtNewStart, t6, markersToDelete, lastDeletedMarker, _this = this, _null = null; if (start < 0 || start > end) { $.$get$_log1().log$4(B.Level_WARNING_900, "Tried to add an attribution (" + A.S(newAttribution) + ") at an invalid start/end: " + A.S(start) + " -> " + end, _null, _null); return; } t1 = $.$get$_log1(); t2 = A.S(start); t3 = "" + end; t1.log$4(B.Level_INFO_800, "Adding attribution (" + A.S(newAttribution) + ") from " + t2 + " to " + t3, _null, _null); t4 = _this.markers; t1.log$4(B.Level_FINER_400, "Has " + t4.length + " markers before addition", _null, _null); matchingAttributions = _this.getMatchingAttributionsWithin$3$attributions$end$start(A.LinkedHashSet_LinkedHashSet$_literal([newAttribution], type$.Attribution), end, start); if (matchingAttributions._collection$_length !== 0) for (t1 = A._LinkedHashSetIterator$(matchingAttributions, matchingAttributions._collection$_modifications, A._instanceType(matchingAttributions)._precomputed1); t1.moveNext$0();) { t5 = t1._collection$_current; if (!newAttribution.canMergeWith$1(t5)) { conflictStart = A._Cell$named("conflictStart"); for (i = start; i <= end; ++i) if (_this.hasAttributionAt$2$attribution(i, t5)) { conflictStart.__late_helper$_value = i; break; } throw A.wrapException(new A.IncompatibleOverlappingAttributionsException(t5, newAttribution, conflictStart.readLocal$0())); } } endMarkerJustBefore = new A.SpanMarker(newAttribution, start - 1, B.SpanMarkerType_1); endMarkerAtNewStart = new A.SpanMarker(newAttribution, start, B.SpanMarkerType_1); if (B.JSArray_methods.contains$1(t4, endMarkerJustBefore)) { $.$get$_log1().log$4(B.Level_FINE_500, "A compatible span already exists immediately before the new span range. Combining the spans.", _null, _null); B.JSArray_methods.remove$1(t4, endMarkerJustBefore); } else if (!_this.hasAttributionAt$2$attribution(start, newAttribution)) { $.$get$_log1().log$4(B.Level_FINE_500, "Adding start marker for new span at: " + t2, _null, _null); _this._insertMarker$1(new A.SpanMarker(newAttribution, start, B.SpanMarkerType_0)); } else if (B.JSArray_methods.contains$1(t4, endMarkerAtNewStart)) { $.$get$_log1().log$4(B.Level_FINE_500, "Removing existing end marker at " + t2 + " because the new span should merge with an existing span", _null, _null); B.JSArray_methods.remove$1(t4, endMarkerAtNewStart); } t1 = A._arrayInstanceType(t4)._eval$1("WhereIterable<1>"); t5 = t1._eval$1("WhereIterable"); t6 = t5._eval$1("WhereIterable"); markersToDelete = A.List_List$of(new A.WhereIterable(new A.WhereIterable(new A.WhereIterable(t4, new A.AttributedSpans_addAttribution_closure(newAttribution), t1), new A.AttributedSpans_addAttribution_closure0(start), t5), new A.AttributedSpans_addAttribution_closure1(end), t6), true, t6._eval$1("Iterable.E")); t6 = $.$get$_log1(); t6.log$4(B.Level_FINE_500, "Removing " + markersToDelete.length + " markers between " + t2 + " and " + t3, _null, _null); if (!!t4.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(t4, new A.AttributedSpans_addAttribution_closure2(markersToDelete), true); lastDeletedMarker = markersToDelete.length !== 0 ? B.JSArray_methods.get$last(markersToDelete) : _null; if (lastDeletedMarker == null || lastDeletedMarker.markerType === B.SpanMarkerType_1) { t6.log$4(B.Level_FINE_500, "Inserting ending marker at: " + t3, _null, _null); _this._insertMarker$1(new A.SpanMarker(newAttribution, end, B.SpanMarkerType_1)); } }, removeAttribution$3$attributionToRemove$end$start(attributionToRemove, end, start) { var endCapMarkersToInsert, t4, t5, t6, t7, markersToDelete, _this = this, _null = null, t1 = $.$get$_log1(), t2 = A.S(start), t3 = "" + end; t1.log$4(B.Level_INFO_800, "Removing attribution " + A.S(attributionToRemove) + " from " + t2 + " to " + t3, _null, _null); if (start < 0 || start > end) throw A.wrapException(A.Exception_Exception("removeAttribution() did not satisfy start < 0 and start > end, start: " + t2 + ", end: " + t3)); if (!_this.hasAttributionsWithin$3$attributions$end$start(A.LinkedHashSet_LinkedHashSet$_literal([attributionToRemove], type$.Attribution), end, start)) { t1.log$4(B.Level_FINE_500, "No such attribution exists in the given span range", _null, _null); return; } endCapMarkersToInsert = A.LinkedHashSet_LinkedHashSet$_empty(type$.SpanMarker); t4 = start - 1; if (_this.hasAttributionAt$2$attribution(t4, attributionToRemove)) if (_this._getMarkerAt$3(attributionToRemove, t4, B.SpanMarkerType_1)._collection$_length === 0) { t1.log$4(B.Level_FINER_400, 'Creating a new "end" marker to appear before the removal range at ' + t4, _null, _null); endCapMarkersToInsert.add$1(0, new A.SpanMarker(attributionToRemove, t4, B.SpanMarkerType_1)); } t4 = end + 1; if (_this.hasAttributionAt$2$attribution(t4, attributionToRemove)) if (_this._getMarkerAt$3(attributionToRemove, t4, B.SpanMarkerType_0)._collection$_length === 0) { t1.log$4(B.Level_FINER_400, 'Creating a new "start" marker to appear after the removal range at ' + t4, _null, _null); endCapMarkersToInsert.add$1(0, new A.SpanMarker(attributionToRemove, t4, B.SpanMarkerType_0)); } for (t4 = A._LinkedHashSetIterator$(endCapMarkersToInsert, endCapMarkersToInsert._collection$_modifications, endCapMarkersToInsert.$ti._precomputed1); t4.moveNext$0();) { t5 = t4._collection$_current; t1.log$4(B.Level_FINER_400, "Inserting new cap marker: " + A.S(t5), _null, _null); _this._insertMarker$1(t5); } t4 = _this.markers; t5 = A._arrayInstanceType(t4)._eval$1("WhereIterable<1>"); t6 = t5._eval$1("WhereIterable"); t7 = t6._eval$1("WhereIterable"); markersToDelete = A.List_List$of(new A.WhereIterable(new A.WhereIterable(new A.WhereIterable(t4, new A.AttributedSpans_removeAttribution_closure(attributionToRemove), t5), new A.AttributedSpans_removeAttribution_closure0(start), t6), new A.AttributedSpans_removeAttribution_closure1(end), t7), true, t7._eval$1("Iterable.E")); t1.log$4(B.Level_FINER_400, "removing " + markersToDelete.length + " markers between " + t2 + " and " + t3, _null, _null); if (!!t4.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(t4, new A.AttributedSpans_removeAttribution_closure2(markersToDelete), true); t1.log$4(B.Level_FINER_400, "all attributions after:", _null, _null); new A.WhereIterable(t4, new A.AttributedSpans_removeAttribution_closure3(attributionToRemove), t5).forEach$1(0, new A.AttributedSpans_removeAttribution_closure4()); }, _isContinuousAttribution$3$attribution$end$start(attribution, end, start) { var markerBefore, t2, nextMarker, _this = this, _null = null, _s83_ = "Inconsistent attributions state. Found a `start` marker following a `start` marker.", t1 = $.$get$_log1(); t1.log$4(B.Level_FINE_500, 'attribution: "' + A.S(attribution) + '", range: ' + A.S(start) + " -> " + end, _null, _null); markerBefore = _this._getNearestMarkerAtOrBefore$3$attribution$type(start, attribution, B.SpanMarkerType_0); t1.log$4(B.Level_FINE_500, "marker before: " + A.S(markerBefore), _null, _null); if (markerBefore == null) return false; t2 = _this.markers; nextMarker = A.IterableExtension_firstWhereOrNull(B.JSArray_methods.sublist$1(t2, B.JSArray_methods.indexOf$1(t2, markerBefore)), new A.AttributedSpans__isContinuousAttribution_closure(markerBefore, attribution)); t1.log$4(B.Level_FINE_500, "next marker: " + A.S(nextMarker), _null, _null); if (nextMarker == null) { t1.log$4(B.Level_WARNING_900, "Inconsistent attribution markers. Found a `start` marker with no matching `end`.", _null, _null); t1.log$4(B.Level_WARNING_900, _this, _null, _null); throw A.wrapException(A.Exception_Exception("Inconsistent attributions state. Found a `start` marker with no matching `end`.")); } if (nextMarker.markerType === B.SpanMarkerType_0) { t1.log$4(B.Level_WARNING_900, _s83_, _null, _null); t1.log$4(B.Level_WARNING_900, _this, _null, _null); throw A.wrapException(A.Exception_Exception(_s83_)); } return nextMarker.offset >= end; }, _getNearestMarkerAtOrBefore$3$attribution$type(offset, attribution, type) { var markerBefore, markerBefore0, t3, t1 = this.markers, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); t1 = new A.WhereIterable(t1, new A.AttributedSpans__getNearestMarkerAtOrBefore_closure(attribution), t2); for (t1 = t1.get$iterator(t1), t2 = new A.WhereIterator(t1, new A.AttributedSpans__getNearestMarkerAtOrBefore_closure0(type), t2._eval$1("WhereIterator")), markerBefore = null; t2.moveNext$0();) { markerBefore0 = t1.get$current(t1); t3 = markerBefore0.offset; if (t3 <= offset) markerBefore = markerBefore0; if (t3 > offset) break; } return markerBefore; }, _getMarkerAt$3(attribution, offset, type) { var t1 = this.markers, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), t3 = t2._eval$1("WhereIterable"), t4 = t3._eval$1("WhereIterable"); return A.LinkedHashSet_LinkedHashSet$of(new A.WhereIterable(new A.WhereIterable(new A.WhereIterable(t1, new A.AttributedSpans__getMarkerAt_closure(attribution), t2), new A.AttributedSpans__getMarkerAt_closure0(offset), t3), new A.AttributedSpans__getMarkerAt_closure1(type), t4), t4._eval$1("Iterable.E")); }, _insertMarker$1(newMarker) { var t1 = this.markers, indexOfFirstMarkerAfterInsertionPoint = B.JSArray_methods.indexWhere$1(t1, new A.AttributedSpans__insertMarker_closure(newMarker)); if (indexOfFirstMarkerAfterInsertionPoint >= 0) B.JSArray_methods.insert$2(t1, indexOfFirstMarkerAfterInsertionPoint, newMarker); else t1.push(newMarker); }, addAt$2$index$other(index, other) { var t2, t3, pushedSpans, combinedAttributions, _i, _null = null, t1 = this.markers; if (t1.length !== 0 && B.JSArray_methods.get$last(t1).offset >= index) throw A.wrapException(A.Exception_Exception("Another AttributedSpans can only be appended after the final marker in this AttributedSpans. Final marker: " + A.S(B.JSArray_methods.get$last(t1)))); t2 = $.$get$_log1(); t2.log$4(B.Level_FINE_500, "attributions before pushing them:", _null, _null); t2.log$4(B.Level_FINE_500, this.toString$0(0), _null, _null); t2.log$4(B.Level_FINE_500, "pushing `other` markers by: " + index, _null, _null); t2.log$4(B.Level_FINE_500, "`other` attributions before pushing them:", _null, _null); t2.log$4(B.Level_FINE_500, other.toString$0(0), _null, _null); t3 = type$.SpanMarker; pushedSpans = A.AttributedSpans$(A.List_List$from(other.markers, true, t3)); pushedSpans.pushAttributionsBack$1(index); combinedAttributions = A.List_List$from(t1, true, t3); B.JSArray_methods.addAll$1(combinedAttributions, pushedSpans.markers); t2.log$4(B.Level_FINE_500, "combined attributions before merge:", _null, _null); for (t3 = combinedAttributions.length, _i = 0; _i < combinedAttributions.length; combinedAttributions.length === t3 || (0, A.throwConcurrentModificationError)(combinedAttributions), ++_i) t2.log$4(B.Level_FINE_500, " - " + A.S(combinedAttributions[_i]), _null, _null); this._mergeBackToBackAttributions$2(combinedAttributions, index); t2.log$4(B.Level_FINE_500, "combined attributions after merge:", _null, _null); for (t3 = combinedAttributions.length, _i = 0; _i < combinedAttributions.length; combinedAttributions.length === t3 || (0, A.throwConcurrentModificationError)(combinedAttributions), ++_i) t2.log$4(B.Level_FINE_500, " - " + A.S(combinedAttributions[_i]), _null, _null); B.JSArray_methods.set$length(t1, 0); B.JSArray_methods.addAll$1(t1, combinedAttributions); }, _mergeBackToBackAttributions$2(attributions, mergePoint) { var t3, t4, endAtMergePointMarkers, startAtMergePointMarkers, _i, startMarker, endMarker, _null = null, t1 = $.$get$_log1(), t2 = "" + mergePoint; t1.log$4(B.Level_FINE_500, "merging attributions at " + t2, _null, _null); t3 = A._arrayInstanceType(attributions)._eval$1("WhereIterable<1>"); t4 = t3._eval$1("Iterable.E"); endAtMergePointMarkers = A.List_List$of(new A.WhereIterable(attributions, new A.AttributedSpans__mergeBackToBackAttributions_closure(mergePoint), t3), true, t4); startAtMergePointMarkers = A.List_List$of(new A.WhereIterable(attributions, new A.AttributedSpans__mergeBackToBackAttributions_closure0(mergePoint), t3), true, t4); for (t3 = startAtMergePointMarkers.length, t2 = "combining left/right spans at edge at index " + t2, _i = 0; _i < t3; ++_i) { startMarker = startAtMergePointMarkers[_i]; t1.log$4(B.Level_FINE_500, "marker on right side: " + A.S(startMarker), _null, _null); endMarker = A.IterableExtension_firstWhereOrNull(endAtMergePointMarkers, new A.AttributedSpans__mergeBackToBackAttributions_closure1(startMarker)); t1.log$4(B.Level_FINE_500, "matching marker on left side? " + A.S(endMarker), _null, _null); if (endMarker != null) { t1.log$4(B.Level_FINE_500, t2, _null, _null); t1.log$4(B.Level_FINE_500, "Removing markers:", _null, _null); t1.log$4(B.Level_FINE_500, " - " + A.S(startMarker), _null, _null); t1.log$4(B.Level_FINE_500, " - " + endMarker.toString$0(0), _null, _null); B.JSArray_methods.remove$1(attributions, startMarker); B.JSArray_methods.remove$1(attributions, endMarker); } } }, copyAttributionRegion$2(startOffset, endOffset) { var t1, cutAttributions, t2, t3, foundStartMarkers, foundEndMarkers, t4, _i, _null = null, _box_0 = {}; endOffset = _box_0.endOffset = endOffset; _box_0.endOffset = endOffset; t1 = $.$get$_log1(); t1.log$4(B.Level_FINE_500, "start: " + startOffset + ", end: " + endOffset, _null, _null); cutAttributions = A._setArrayType([], type$.JSArray_SpanMarker); t1.log$4(B.Level_FINE_500, "inspecting existing markers in full AttributedSpans", _null, _null); t2 = type$.Attribution; t3 = type$.int; foundStartMarkers = A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); foundEndMarkers = A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); t3 = this.markers; t2 = A._arrayInstanceType(t3); t4 = t2._eval$1("WhereIterable<1>"); new A.WhereIterable(t3, new A.AttributedSpans_copyAttributionRegion_closure(startOffset), t4).forEach$1(0, new A.AttributedSpans_copyAttributionRegion_closure0(foundStartMarkers)); foundStartMarkers.forEach$1(0, new A.AttributedSpans_copyAttributionRegion_closure1(this, cutAttributions, startOffset)); new A.WhereIterable(t3, new A.AttributedSpans_copyAttributionRegion_closure2(_box_0, startOffset), t4).forEach$1(0, new A.AttributedSpans_copyAttributionRegion_closure3(cutAttributions, startOffset)); new A.ReversedListIterable(t3, t2._eval$1("ReversedListIterable<1>")).super$Iterable$where(0, new A.AttributedSpans_copyAttributionRegion_closure4(_box_0)).forEach$1(0, new A.AttributedSpans_copyAttributionRegion_closure5(foundEndMarkers)); foundEndMarkers.forEach$1(0, new A.AttributedSpans_copyAttributionRegion_closure6(_box_0, this, cutAttributions, startOffset)); t1.log$4(B.Level_FINE_500, "copied attributions:", _null, _null); for (t2 = cutAttributions.length, _i = 0; _i < cutAttributions.length; cutAttributions.length === t2 || (0, A.throwConcurrentModificationError)(cutAttributions), ++_i) t1.log$4(B.Level_FINE_500, " - " + cutAttributions[_i].toString$0(0), _null, _null); return A.AttributedSpans$(cutAttributions); }, pushAttributionsBack$1(offset) { var t1 = this.markers, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SpanMarker>"), pushedAttributions = A.List_List$of(new A.MappedListIterable(t1, new A.AttributedSpans_pushAttributionsBack_closure(offset), t2), true, t2._eval$1("ListIterable.E")); B.JSArray_methods.set$length(t1, 0); B.JSArray_methods.addAll$1(t1, pushedAttributions); }, contractAttributions$2$count$startOffset(count, startOffset) { var t4, t5, t6, needToEndAttributions, needToStartAttributions, attribution, offset, offset0, _null = null, contractedAttributions = A._setArrayType([], type$.JSArray_SpanMarker), t1 = this.markers, t2 = A._arrayInstanceType(t1), t3 = t2._eval$1("WhereIterable<1>"); B.JSArray_methods.addAll$1(contractedAttributions, new A.WhereIterable(t1, new A.AttributedSpans_contractAttributions_closure(startOffset), t3)); t4 = $.$get$_log1(); t5 = "" + startOffset; t4.log$4(B.Level_FINE_500, "removing " + count + " characters starting at " + t5, _null, _null); t6 = type$.dynamic; needToEndAttributions = A.LinkedHashSet_LinkedHashSet$_empty(t6); needToStartAttributions = A.LinkedHashSet_LinkedHashSet$_empty(t6); new A.WhereIterable(t1, new A.AttributedSpans_contractAttributions_closure0(startOffset, count), t3).forEach$1(0, new A.AttributedSpans_contractAttributions_closure1(needToEndAttributions, needToStartAttributions)); for (t6 = A._LinkedHashSetIterator$(needToStartAttributions, needToStartAttributions._collection$_modifications, needToStartAttributions.$ti._precomputed1), t5 = "adding back a start marker at " + t5; t6.moveNext$0();) { attribution = t6._collection$_current; t4.log$4(B.Level_FINE_500, t5, _null, _null); contractedAttributions.push(new A.SpanMarker(attribution, startOffset, B.SpanMarkerType_0)); } for (t5 = A._LinkedHashSetIterator$(needToEndAttributions, needToEndAttributions._collection$_modifications, needToEndAttributions.$ti._precomputed1), t6 = startOffset > 0, offset = startOffset - 1; t5.moveNext$0();) { attribution = t5._collection$_current; offset0 = t6 ? offset : 0; t4.log$4(B.Level_FINE_500, "adding back an end marker at " + offset0, _null, _null); contractedAttributions.push(new A.SpanMarker(attribution, offset0, B.SpanMarkerType_1)); } B.JSArray_methods.addAll$1(contractedAttributions, new A.MappedIterable(new A.WhereIterable(t1, new A.AttributedSpans_contractAttributions_closure2(startOffset, count), t3), new A.AttributedSpans_contractAttributions_closure3(count), t2._eval$1("MappedIterable<1,SpanMarker>"))); B.JSArray_methods.set$length(t1, 0); B.JSArray_methods.addAll$1(t1, contractedAttributions); }, collapseSpans$1$contentLength(contentLength) { var t3, t4, _i, t5, collapsedSpans, currentSpan, marker, nextStart, t6, t7, _null = null, _s22_ = ", current span is now ", t1 = $.$get$_log1(), t2 = "" + contentLength; t1.log$4(B.Level_FINE_500, "content length: " + t2, _null, _null); t1.log$4(B.Level_FINE_500, "attributions used to compute spans:", _null, _null); for (t3 = this.markers, t4 = t3.length, _i = 0; t5 = t3.length, _i < t5; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) t1.log$4(B.Level_FINE_500, " - " + A.S(t3[_i]), _null, _null); if (contentLength === 0) { t1.log$4(B.Level_FINE_500, "content is empty. Returning empty span list.", _null, _null); return A._setArrayType([], type$.JSArray_MultiAttributionSpan); } if (t5 === 0 || B.JSArray_methods.get$first(t3).offset > contentLength - 1) return A._setArrayType([new A.MultiAttributionSpan(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution), 0, contentLength - 1)], type$.JSArray_MultiAttributionSpan); collapsedSpans = A._setArrayType([], type$.JSArray_MultiAttributionSpan); t4 = contentLength - 1; currentSpan = new A.MultiAttributionSpan(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution), 0, t4); t1.log$4(B.Level_FINE_500, "walking list of markers to determine collapsed spans.", _null, _null); for (t1 = t3.length, _i = 0; _i < t3.length; t3.length === t1 || (0, A.throwConcurrentModificationError)(t3), ++_i) { marker = t3[_i]; nextStart = marker.offset; if (nextStart > contentLength) { $.$get$_log1().log$4(B.Level_FINE_500, "ran out of markers within the requested contentLength, breaking early.", _null, _null); break; } t5 = marker.markerType; t6 = t5 === B.SpanMarkerType_0; if (!(t6 && nextStart > currentSpan.start)) t7 = t5 === B.SpanMarkerType_1 && nextStart >= currentSpan.start; else t7 = true; if (t7) { t7 = $.$get$_log1(); t7.log$4(B.Level_FINE_500, "encountered a span boundary with " + (t6 ? "a start" : "an end") + " marker at offset " + nextStart + ".", _null, _null); collapsedSpans.push(currentSpan.copyWith$1$end(t5 === B.SpanMarkerType_1 ? nextStart : nextStart - 1)); t7.log$4(B.Level_FINE_500, "committed span " + B.JSArray_methods.get$last(collapsedSpans).toString$0(0), _null, _null); currentSpan = currentSpan.copyWith$1$start(t6 ? nextStart : nextStart + 1); t7.log$4(B.Level_FINE_500, "new current span is " + currentSpan.toString$0(0), _null, _null); } if (t6) { t5 = marker.attribution; currentSpan.attributions.add$1(0, t5); $.$get$_log1().log$4(B.Level_FINE_500, "merging " + A.S(t5) + _s22_ + currentSpan.toString$0(0) + ".", _null, _null); } else if (t5 === B.SpanMarkerType_1) { t5 = marker.attribution; currentSpan.attributions.remove$1(0, t5); $.$get$_log1().log$4(B.Level_FINE_500, "removing attribution " + A.S(t5) + _s22_ + currentSpan.toString$0(0) + ".", _null, _null); } } if (B.JSArray_methods.get$last(collapsedSpans).end < t4) { collapsedSpans.push(currentSpan); $.$get$_log1().log$4(B.Level_FINE_500, "committing last span to cover requested content length of " + t2 + ": " + B.JSArray_methods.get$last(collapsedSpans).toString$0(0), _null, _null); } $.$get$_log1().log$4(B.Level_FINE_500, "returning collapsed spans: " + A.S(collapsedSpans), _null, _null); return collapsedSpans; }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.AttributedSpans && A.getRuntimeType(this) === A.getRuntimeType(other) && B.DeepCollectionEquality_true.equals$2(this.markers, other.markers); else t1 = true; return t1; }, get$hashCode(_) { return A.Primitives_objectHashCode(this.markers); }, toString$0(_) { var _i, t1 = this.markers, t2 = t1.length, t3 = "[AttributedSpans] (" + B.JSNumber_methods.round$0(t2 / 2) + " spans):"; for (_i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t3 += "\n - " + A.S(t1[_i]); return t3.charCodeAt(0) == 0 ? t3 : t3; } }; A.AttributedSpans__getStartingMarkerAtOrBefore_closure.prototype = { call$1(marker) { var t2, t1 = this.attribution; if (t1 != null) { t2 = marker.attribution; t1 = t2.get$id(t2) === t1.get$id(t1) && t2.canMergeWith$1(t1); } else t1 = true; return t1; }, $signature: 46 }; A.AttributedSpans__getStartingMarkerAtOrBefore_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_0 && marker.offset <= this.offset; }, $signature: 46 }; A.AttributedSpans__getEndingMarkerAtOrAfter_closure.prototype = { call$1(marker) { var t2, t1 = this.attribution; if (t1 != null) { t2 = marker.attribution; t1 = t2.get$id(t2) === t1.get$id(t1) && t2.canMergeWith$1(t1); } else t1 = true; return t1; }, $signature: 46 }; A.AttributedSpans__getEndingMarkerAtOrAfter_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_1 && marker.offset >= this.offset; }, $signature: 46 }; A.AttributedSpans_addAttribution_closure.prototype = { call$1(attribution) { return J.$eq$(attribution.attribution, this.newAttribution); }, $signature: 46 }; A.AttributedSpans_addAttribution_closure0.prototype = { call$1(attribution) { return attribution.offset > this.start; }, $signature: 46 }; A.AttributedSpans_addAttribution_closure1.prototype = { call$1(attribution) { return attribution.offset <= this.end; }, $signature: 46 }; A.AttributedSpans_addAttribution_closure2.prototype = { call$1(element) { return B.JSArray_methods.contains$1(this.markersToDelete, element); }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure.prototype = { call$1(attribution) { return J.$eq$(attribution.attribution, this.attributionToRemove); }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure0.prototype = { call$1(attribution) { return attribution.offset >= this.start; }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure1.prototype = { call$1(attribution) { return attribution.offset <= this.end; }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure2.prototype = { call$1(element) { return B.JSArray_methods.contains$1(this.markersToDelete, element); }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure3.prototype = { call$1(element) { return J.$eq$(element.attribution, this.attributionToRemove); }, $signature: 46 }; A.AttributedSpans_removeAttribution_closure4.prototype = { call$1(element) { $.$get$_log1().log$4(B.Level_FINER_400, " - " + A.S(element), null, null); }, $signature: 274 }; A.AttributedSpans__isContinuousAttribution_closure.prototype = { call$1(marker) { var t1 = this.markerBefore; $.$get$_log1().log$4(B.Level_FINEST_300, "Comparing start marker " + t1.toString$0(0) + " to another marker " + A.S(marker), null, null); return J.$eq$(marker.attribution, this.attribution) && marker.offset >= t1.offset && !marker.$eq(0, t1); }, $signature: 46 }; A.AttributedSpans__getNearestMarkerAtOrBefore_closure.prototype = { call$1(marker) { var t1 = this.attribution; return t1 == null || J.$eq$(marker.attribution, t1); }, $signature: 46 }; A.AttributedSpans__getNearestMarkerAtOrBefore_closure0.prototype = { call$1(marker) { var t1 = marker.markerType; return t1 === this.type; }, $signature: 46 }; A.AttributedSpans__getMarkerAt_closure.prototype = { call$1(marker) { return J.$eq$(marker.attribution, this.attribution); }, $signature: 46 }; A.AttributedSpans__getMarkerAt_closure0.prototype = { call$1(marker) { return marker.offset === this.offset; }, $signature: 46 }; A.AttributedSpans__getMarkerAt_closure1.prototype = { call$1(marker) { var t1 = marker.markerType; return t1 === this.type; }, $signature: 46 }; A.AttributedSpans__insertMarker_closure.prototype = { call$1(existingMarker) { return existingMarker.compareTo$1(0, this.newMarker) > 0; }, $signature: 46 }; A.AttributedSpans__mergeBackToBackAttributions_closure.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_1 && marker.offset === this.mergePoint - 1; }, $signature: 46 }; A.AttributedSpans__mergeBackToBackAttributions_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_0 && marker.offset === this.mergePoint; }, $signature: 46 }; A.AttributedSpans__mergeBackToBackAttributions_closure1.prototype = { call$1(marker) { return J.$eq$(marker.attribution, this.startMarker.attribution); }, $signature: 46 }; A.AttributedSpans_copyAttributionRegion_closure.prototype = { call$1(marker) { return marker.offset < this.startOffset; }, $signature: 46 }; A.AttributedSpans_copyAttributionRegion_closure0.prototype = { call$1(marker) { var t2, t3, t4, _null = null, t1 = $.$get$_log1(); t1.log$4(B.Level_FINE_500, "marker before the copy region: " + A.S(marker), _null, _null); t2 = marker.markerType; t3 = this.foundStartMarkers; t4 = marker.attribution; if (t2 === B.SpanMarkerType_0) { t1.log$4(B.Level_FINE_500, string$.rememb, _null, _null); t3.putIfAbsent$2(0, t4, new A.AttributedSpans_copyAttributionRegion__closure1()); t1 = t3.$index(0, t4); t1.toString; t3.$indexSet(0, t4, t1 + 1); } else { t1.log$4(B.Level_FINE_500, string$.this_m, _null, _null); t3.putIfAbsent$2(0, t4, new A.AttributedSpans_copyAttributionRegion__closure2()); t1 = t3.$index(0, t4); t1.toString; t3.$indexSet(0, t4, t1 - 1); } }, $signature: 274 }; A.AttributedSpans_copyAttributionRegion__closure1.prototype = { call$0() { return 0; }, $signature: 160 }; A.AttributedSpans_copyAttributionRegion__closure2.prototype = { call$0() { return 0; }, $signature: 160 }; A.AttributedSpans_copyAttributionRegion_closure1.prototype = { call$2(markerAttribution, count) { if (count === 1) { $.$get$_log1().log$4(B.Level_FINE_500, 'inserting "' + A.S(markerAttribution) + '" marker at start of copy region to maintain symmetry.', null, null); this.cutAttributions.push(new A.SpanMarker(markerAttribution, 0, B.SpanMarkerType_0)); } else if (count < 0 || count > 1) throw A.wrapException(A.Exception_Exception("Found an unbalanced number of `start` and `end` markers before offset: " + this.startOffset + " - " + A.S(this.$this.markers))); }, $signature: 514 }; A.AttributedSpans_copyAttributionRegion_closure2.prototype = { call$1(marker) { var t1 = marker.offset; return this.startOffset <= t1 && t1 <= this._box_0.endOffset; }, $signature: 46 }; A.AttributedSpans_copyAttributionRegion_closure3.prototype = { call$1(marker) { var t1 = $.$get$_log1(), t2 = A.S(marker.attribution), t3 = marker.offset; t1.log$4(B.Level_FINE_500, 'copying "' + t2 + '" at ' + t3 + " from original AttributionSpans to copy region.", null, null); this.cutAttributions.push(marker.copyWith$1$offset(t3 - this.startOffset)); }, $signature: 274 }; A.AttributedSpans_copyAttributionRegion_closure4.prototype = { call$1(marker) { return marker.offset > this._box_0.endOffset; }, $signature: 46 }; A.AttributedSpans_copyAttributionRegion_closure5.prototype = { call$1(marker) { var t2, t3, t4, _null = null, t1 = $.$get$_log1(); t1.log$4(B.Level_FINE_500, "marker after the copy region: " + A.S(marker), _null, _null); t2 = marker.markerType; t3 = this.foundEndMarkers; t4 = marker.attribution; if (t2 === B.SpanMarkerType_1) { t1.log$4(B.Level_FINE_500, string$.rememb, _null, _null); t3.putIfAbsent$2(0, t4, new A.AttributedSpans_copyAttributionRegion__closure()); t1 = t3.$index(0, t4); t1.toString; t3.$indexSet(0, t4, t1 + 1); } else { t1.log$4(B.Level_FINE_500, string$.this_m, _null, _null); t3.putIfAbsent$2(0, t4, new A.AttributedSpans_copyAttributionRegion__closure0()); t1 = t3.$index(0, t4); t1.toString; t3.$indexSet(0, t4, t1 - 1); } }, $signature: 274 }; A.AttributedSpans_copyAttributionRegion__closure.prototype = { call$0() { return 0; }, $signature: 160 }; A.AttributedSpans_copyAttributionRegion__closure0.prototype = { call$0() { return 0; }, $signature: 160 }; A.AttributedSpans_copyAttributionRegion_closure6.prototype = { call$2(markerAttribution, count) { var _this = this; if (count === 1) { $.$get$_log1().log$4(B.Level_FINE_500, 'inserting "' + A.S(markerAttribution) + '" marker at end of copy region to maintain symmetry.', null, null); _this.cutAttributions.push(new A.SpanMarker(markerAttribution, _this._box_0.endOffset - _this.startOffset, B.SpanMarkerType_1)); } else if (count < 0 || count > 1) throw A.wrapException(A.Exception_Exception("Found an unbalanced number of `start` and `end` markers after offset: " + _this._box_0.endOffset + " - " + A.S(_this.$this.markers))); }, $signature: 514 }; A.AttributedSpans_pushAttributionsBack_closure.prototype = { call$1(marker) { return marker.copyWith$1$offset(marker.offset + this.offset); }, $signature: 523 }; A.AttributedSpans_contractAttributions_closure.prototype = { call$1(marker) { return marker.offset < this.startOffset; }, $signature: 46 }; A.AttributedSpans_contractAttributions_closure0.prototype = { call$1(marker) { var t1 = this.startOffset, t2 = marker.offset; return t1 <= t2 && t2 < t1 + this.count; }, $signature: 46 }; A.AttributedSpans_contractAttributions_closure1.prototype = { call$1(marker) { var _this = this, t1 = $.$get$_log1(), t2 = marker.markerType; t1.log$4(B.Level_FINE_500, "removing " + t2.toString$0(0) + " at " + marker.offset, null, null); if (t2 === B.SpanMarkerType_0) { t1 = _this.needToEndAttributions; t2 = marker.attribution; if (t1.contains$1(0, t2)) t1.remove$1(0, t2); else _this.needToStartAttributions.add$1(0, t2); } else { t1 = _this.needToStartAttributions; t2 = marker.attribution; if (t1.contains$1(0, t2)) t1.remove$1(0, t2); else _this.needToEndAttributions.add$1(0, t2); } }, $signature: 274 }; A.AttributedSpans_contractAttributions_closure2.prototype = { call$1(marker) { return marker.offset >= this.startOffset + this.count; }, $signature: 46 }; A.AttributedSpans_contractAttributions_closure3.prototype = { call$1(marker) { return marker.copyWith$1$offset(marker.offset - this.count); }, $signature: 523 }; A.SpanMarker.prototype = { copyWith$1$offset(offset) { return new A.SpanMarker(this.attribution, offset, this.markerType); }, toString$0(_) { return "[SpanMarker] - attribution: " + A.S(this.attribution) + ", offset: " + this.offset + ", type: " + this.markerType.toString$0(0); }, compareTo$1(_, other) { var t1, offsetDiff = this.offset - other.offset; if (offsetDiff !== 0) return offsetDiff; t1 = this.markerType; if (t1 !== other.markerType) return t1 === B.SpanMarkerType_0 ? -1 : 1; return 0; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.SpanMarker && J.$eq$(_this.attribution, other.attribution) && _this.offset === other.offset && _this.markerType === other.markerType; else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.attribution) ^ B.JSInt_methods.get$hashCode(this.offset) ^ A.Primitives_objectHashCode(this.markerType)) >>> 0; }, $isComparable: 1 }; A.SpanMarkerType.prototype = { toString$0(_) { return "SpanMarkerType." + this._core$_name; } }; A.AttributionSpan.prototype = { toString$0(_) { return "[AttributionSpan] - " + A.S(this.attribution) + ", " + this.start + " -> " + this.end; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.AttributionSpan && A.getRuntimeType(_this) === A.getRuntimeType(other) && J.$eq$(_this.attribution, other.attribution) && _this.start === other.start && _this.end === other.end; else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.attribution) ^ B.JSInt_methods.get$hashCode(this.start) ^ B.JSInt_methods.get$hashCode(this.end)) >>> 0; } }; A.MultiAttributionSpan.prototype = { copyWith$2$end$start(end, start) { var t2, t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution); for (t2 = this.attributions, t2 = A._LinkedHashSetIterator$(t2, t2._collection$_modifications, A._instanceType(t2)._precomputed1); t2.moveNext$0();) t1.add$1(0, t2._collection$_current); t2 = start == null ? this.start : start; return new A.MultiAttributionSpan(t1, t2, end == null ? this.end : end); }, copyWith$1$end(end) { return this.copyWith$2$end$start(end, null); }, copyWith$1$start(start) { return this.copyWith$2$end$start(null, start); }, toString$0(_) { return "[MultiAttributionSpan] - attributions: " + this.attributions.toString$0(0) + ", start: " + this.start + ", end: " + this.end; } }; A.IncompatibleOverlappingAttributionsException.prototype = { toString$0(_) { return "Tried to insert attribution (" + this.newAttribution.toString$0(0) + ") over a conflicting existing attribution (" + A.S(this.existingAttribution) + "). The overlap began at index " + A.S(this.conflictStart); }, $isException: 1 }; A.AttributedText.prototype = { dispose$0(_) { this._attributed_text$_listeners.clear$0(0); }, addListener$1(_, listener) { this._attributed_text$_listeners.add$1(0, listener); }, removeListener$1(_, listener) { this._attributed_text$_listeners.remove$1(0, listener); }, _notifyListeners$0() { for (var t1 = this._attributed_text$_listeners, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.call$0(); }, getAttributionSpansInRange$2$attributionFilter$range(attributionFilter, range) { return this.spans.getAttributionSpansInRange$4$attributionFilter$end$resizeSpansToFitInRange$start(attributionFilter, range.end, false, range.start); }, addAttribution$2(attribution, range) { this.spans.addAttribution$3$end$newAttribution$start(range.end, attribution, range.start); this._notifyListeners$0(); }, removeAttribution$2(attribution, range) { this.spans.removeAttribution$3$attributionToRemove$end$start(attribution, range.end, range.start); this._notifyListeners$0(); }, copyText$2(startOffset, endOffset) { var t2, t3, startCopyOffset, endCopyOffset, _null = null, t1 = $.$get$_log0(); t1.log$4(B.Level_FINE_500, "start: " + A.S(startOffset) + ", end: " + A.S(endOffset), _null, _null); t2 = this.text; t3 = t2.length; startCopyOffset = startOffset < t3 ? startOffset : t3 - 1; if (endOffset === startOffset) endCopyOffset = startCopyOffset; else endCopyOffset = endOffset != null ? endOffset - 1 : t3 - 1; t1.log$4(B.Level_FINE_500, "offsets, start: " + startCopyOffset + ", end: " + endCopyOffset, _null, _null); t1 = B.JSString_methods.substring$2(t2, startOffset, endOffset); return A.AttributedText$(this.spans.copyAttributionRegion$2(startCopyOffset, endCopyOffset), t1); }, copyText$1(startOffset) { return this.copyText$2(startOffset, null); }, copyAndAppend$1(other) { var t2, t3, t4, t5, newSpans, _null = null, t1 = $.$get$_log0(); t1.log$4(B.Level_FINE_500, "our attributions before pushing them:", _null, _null); t2 = this.spans; t1.log$4(B.Level_FINE_500, t2.toString$0(0), _null, _null); t3 = other.text; if (t3.length === 0) { t1.log$4(B.Level_FINE_500, "`other` has no text. Returning a direct copy of ourselves.", _null, _null); return A.AttributedText$(A.AttributedSpans$(A.List_List$from(t2.markers, true, type$.SpanMarker)), this.text); } t4 = this.text; t5 = t4.length; if (t5 === 0) { t1.log$4(B.Level_FINE_500, "our `text` is empty. Returning a direct copy of the `other` text.", _null, _null); return A.AttributedText$(A.AttributedSpans$(A.List_List$from(other.spans.markers, true, type$.SpanMarker)), t3); } newSpans = A.AttributedSpans$(A.List_List$from(t2.markers, true, type$.SpanMarker)); newSpans.addAt$2$index$other(t5, other.spans); return A.AttributedText$(newSpans, t4 + t3); }, insertString$3$applyAttributions$startOffset$textToInsert(applyAttributions, startOffset, textToInsert) { var startText, endText, insertedText, t2, t3, _null = null, t1 = $.$get$_log0(); t1.log$4(B.Level_FINE_500, 'text: "' + A.S(textToInsert) + '", start: ' + A.S(startOffset) + ", attributions: " + applyAttributions.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "copying text to the left", _null, _null); startText = this.copyText$2(0, startOffset); t1.log$4(B.Level_FINE_500, "startText: " + startText.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "copying text to the right", _null, _null); endText = this.copyText$1(startOffset); t1.log$4(B.Level_FINE_500, "endText: " + endText.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "creating new attributed text for insertion", _null, _null); insertedText = A.AttributedText$(_null, textToInsert); t1 = textToInsert.length - 1; for (t2 = A._LinkedHashSetIterator$(applyAttributions, applyAttributions._collection$_modifications, A._instanceType(applyAttributions)._precomputed1), t3 = insertedText.spans; t2.moveNext$0();) { t3.addAttribution$3$end$newAttribution$start(t1, t2._collection$_current, 0); insertedText._notifyListeners$0(); } t1 = $.$get$_log0(); t1.log$4(B.Level_FINE_500, "insertedText: " + insertedText.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "combining left text, insertion text, and right text", _null, _null); return startText.copyAndAppend$1(insertedText).copyAndAppend$1(endText); }, removeRegion$2$endOffset$startOffset(endOffset, startOffset) { var t2, t3, t4, reducedText, contractedAttributions, _null = null, t1 = $.$get$_log0(); t1.log$4(B.Level_FINE_500, "Removing text region from " + A.S(startOffset) + " to " + A.S(endOffset), _null, _null); t1.log$4(B.Level_FINE_500, "initial attributions:", _null, _null); t2 = this.spans; t1.log$4(B.Level_FINE_500, t2.toString$0(0), _null, _null); t3 = startOffset > 0 ? J.substring$2$s(this.text, 0, startOffset) : ""; t4 = this.text; reducedText = t3 + (endOffset < t4.length ? B.JSString_methods.substring$1(t4, endOffset) : ""); contractedAttributions = A.AttributedSpans$(A.List_List$from(t2.markers, true, type$.SpanMarker)); contractedAttributions.contractAttributions$2$count$startOffset(endOffset - startOffset, startOffset); t1.log$4(B.Level_FINE_500, "reduced text length: " + reducedText.length, _null, _null); t1.log$4(B.Level_FINE_500, "remaining attributions:", _null, _null); t1.log$4(B.Level_FINE_500, contractedAttributions.toString$0(0), _null, _null); return A.AttributedText$(contractedAttributions, reducedText); }, visitAttributions$1(visitor) { var t1, _i, span, t2, _this = this, collapsedSpans = _this.spans.collapseSpans$1$contentLength(_this.text.length); for (t1 = collapsedSpans.length, _i = 0; _i < collapsedSpans.length; collapsedSpans.length === t1 || (0, A.throwConcurrentModificationError)(collapsedSpans), ++_i) { span = collapsedSpans[_i]; t2 = span.attributions; visitor.call$4(_this, span.start, t2, B.AttributionVisitEvent_0); visitor.call$4(_this, span.end, t2, B.AttributionVisitEvent_1); } }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.AttributedText && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.text == other.text && _this.spans.$eq(0, other.spans); else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.text) ^ A.Primitives_objectHashCode(this.spans.markers)) >>> 0; }, toString$0(_) { return '[AttributedText] - "' + A.S(this.text) + '"\n' + this.spans.toString$0(0); } }; A.AttributionVisitEvent.prototype = { toString$0(_) { return "AttributionVisitEvent." + this._core$_name; } }; A.NamedAttribution.prototype = { get$name(_) { return this.id; }, canMergeWith$1(other) { return this.$eq(0, other); }, toString$0(_) { return "[NamedAttribution]: " + this.id; }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.NamedAttribution && A.getRuntimeType(this) === A.getRuntimeType(other) && this.id === other.id; else t1 = true; return t1; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.id); }, $isAttribution: 1, get$id(receiver) { return this.id; } }; A.SpanRange.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.SpanRange && other.start == this.start && other.end === this.end; }, get$hashCode(_) { return J.get$hashCode$(this.start) ^ B.JSInt_methods.get$hashCode(this.end); }, toString$0(_) { return "TextRange(start: " + A.S(this.start) + ", end: " + this.end + ")"; } }; A.BoardItem.prototype = { createState$0() { return new A.BoardItemState(null, B._StateLifecycle_0); } }; A.BoardItemState.prototype = { get$wantKeepAlive() { return true; }, onDropItem$2(listIndex, itemIndex) { var t1 = this._widget, t2 = t1.onDropItem; t1 = t1.boardList._widget.boardView; t2.call$5(listIndex, itemIndex, t1.startListIndex, t1.startItemIndex, this); t1 = this._widget.boardList._widget.boardView; t1.draggedListIndex = t1.draggedItemIndex = null; t1 = t1.listStates; listIndex.toString; t1 = t1[listIndex]; if (t1._framework$_element != null) t1.setState$1(new A.BoardItemState_onDropItem_closure()); }, _board_item$_startDrag$2(item, context) { var t3, t4, _this = this, t1 = _this._widget.boardList, t2 = t1._widget.boardView; if (t2 != null) { t2.onDropItem = _this.get$onDropItem(); if (t1._framework$_element != null) t1.setState$1(new A.BoardItemState__startDrag_closure()); t1 = _this._widget; t2 = t1.boardList._widget.boardView; t2.toString; t2.draggedItemIndex = t1.index; t2.height = context.get$size(context)._dy; t2 = _this._widget; t1 = t2.boardList._widget; t3 = t1.boardView; t3.toString; t1 = t1.index; t3.startListIndex = t3.draggedListIndex = t1; t4 = t2.index; t3.startItemIndex = t4; t3.draggedItem = item; t2.onStartDragItem.call$3(t1, t4, _this); _this._widget.boardList._widget.boardView.run$0(); t1 = _this._widget.boardList._widget.boardView; if (t1._framework$_element != null) t1.setState$1(new A.BoardItemState__startDrag_closure0()); } }, afterFirstLayout$1(context) { var exception; try { this.__BoardItemState_height = context.get$size(context)._dy; context.get$size(context).toString; } catch (exception) { } }, build$1(_, context) { var t1, t2, t3, _this = this, _null = null; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.BoardItemState_build_closure(_this, context)); t1 = _this._widget; t2 = t1.boardList.itemStates; t3 = t2.length; t1 = t1.index; t1.toString; if (t3 > t1) B.JSArray_methods.removeAt$1(t2, t1); t1 = _this._widget; t2 = t1.boardList.itemStates; t1 = t1.index; t1.toString; B.JSArray_methods.insert$2(t2, t1, _this); return A.GestureDetector$(_null, _this._widget.item, B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new A.BoardItemState_build_closure0(_this, context), _null, _null, _null, _null, _null, _null, _null, _null, new A.BoardItemState_build_closure1(_this), new A.BoardItemState_build_closure2(), new A.BoardItemState_build_closure3(_this, context), _null, _null, _null, _null); } }; A.BoardItemState_onDropItem_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardItemState__startDrag_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardItemState__startDrag_closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardItemState_build_closure.prototype = { call$1(_) { return this.$this.afterFirstLayout$1(this.context); }, $signature: 22 }; A.BoardItemState_build_closure3.prototype = { call$1(otd) { var t2, object, pos, box, listPos, t3, t4, t5, t1 = this.$this; if (t1._widget.draggable) { t2 = type$.RenderBox; object = t2._as(this.context.get$renderObject()); pos = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0); box = t2._as(t1._widget.boardList._framework$_element.get$renderObject()); listPos = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), B.Offset_0_0); t1 = t1._widget.boardList._widget.boardView; t2 = listPos._dx; t1.leftListX = t2; t3 = listPos._dy; t1.topListY = t3; t4 = t1.topItemY = pos._dy; t1.bottomItemY = t4 + object._box$_size._dy; t5 = box._box$_size; t1.bottomListY = t3 + t5._dy; t1.rightListX = t2 + t5._dx; t1.initialX = pos._dx; t1.initialY = t4; } }, $signature: 84 }; A.BoardItemState_build_closure2.prototype = { call$0() { }, $signature: 0 }; A.BoardItemState_build_closure1.prototype = { call$0() { this.$this._widget.toString; }, $signature: 0 }; A.BoardItemState_build_closure0.prototype = { call$0() { var t3, t1 = this.$this, t2 = t1._widget; t2.boardList._widget.boardView._widget.toString; t3 = t2.draggable; if (t3) t1._board_item$_startDrag$2(t2, this.context); }, $signature: 0 }; A._BoardItemState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A.BoardList.prototype = { createState$0() { return new A.BoardListState(A._setArrayType([], type$.JSArray_BoardItemState), new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()), null, B._StateLifecycle_0); } }; A.BoardListState.prototype = { onDropList$1(listIndex) { var t1 = this._widget; t1.onDropList.call$2(listIndex, t1.boardView.startListIndex); t1 = this._widget.boardView; t1.draggedListIndex = null; if (t1._framework$_element != null) t1.setState$1(new A.BoardListState_onDropList_closure()); }, _board_list$_startDrag$2(item, context) { var _this = this, t1 = _this._widget, t2 = t1.boardView; if (t2 != null && t1.draggable) { t2.toString; t2.startListIndex = t1.index; t2.height = context.get$size(context)._dy; t1 = _this._widget; t2 = t1.boardView; t2.toString; t1 = t1.index; t1.toString; t2.draggedListIndex = t1; t2.draggedItemIndex = null; t2.draggedItem = item; t2.onDropList = _this.get$onDropList(); t2.run$0(); t1 = _this._widget.boardView; if (t1._framework$_element != null) t1.setState$1(new A.BoardListState__startDrag_closure()); } }, get$wantKeepAlive() { return true; }, build$1(_, context) { var backgroundColor, backgroundColor0, t2, t3, _this = this, _null = null, listWidgets = A._setArrayType([], type$.JSArray_Widget), t1 = _this._widget; t1.toString; A.Color$fromARGB(255, 255, 255, 255); listWidgets.push(A.GestureDetector$(_null, A.Container$(_null, A.Row$(t1.header, B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), B.Clip_0, t1.headerBackgroundColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new A.BoardListState_build_closure(_this, context), _null, _null, _null, _null, _null, _null, _null, _null, new A.BoardListState_build_closure0(_this), new A.BoardListState_build_closure1(), new A.BoardListState_build_closure2(_this, context), _null, _null, _null, _null)); listWidgets.push(A.Container$(_null, new A.Flexible(1, B.FlexFit_1, A.ListView$builder(_this.boardListController, new A.BoardListState_build_closure3(_this), _this._widget.items.length, _null, new A.ClampingScrollPhysics(_null), B.Axis_1, true), _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); listWidgets.push(_this._widget.footer); backgroundColor = A.Color$fromARGB(255, 255, 255, 255); t1 = _this._widget; backgroundColor0 = t1.backgroundColor; if (backgroundColor0 != null) backgroundColor = backgroundColor0; t2 = t1.boardView.listStates; t3 = t2.length; t1 = t1.index; t1.toString; if (t3 > t1) B.JSArray_methods.removeAt$1(t2, t1); t1 = _this._widget; t2 = t1.boardView.listStates; t1 = t1.index; t1.toString; B.JSArray_methods.insert$2(t2, t1, _this); return A.Container$(_null, A.Column$(listWidgets, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, _null, _null, new A.BoxDecoration(backgroundColor, _null, _null, _null, _null, _null, B.BoxShape_0), _null, _null, _null, new A.EdgeInsets(8, 8, 8, 8), _null, _null, _null, _null); } }; A.BoardListState_onDropList_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardListState__startDrag_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardListState_build_closure0.prototype = { call$0() { this.$this._widget.toString; }, $signature: 0 }; A.BoardListState_build_closure2.prototype = { call$1(otd) { var object, pos, t2, t1 = this.$this; if (t1._widget.draggable) { object = type$.RenderBox._as(this.context.get$renderObject()); pos = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0); t1 = t1._widget.boardView; t2 = t1.initialX = pos._dx; t1.initialY = pos._dy; t1.rightListX = t2 + object._box$_size._dx; t1.leftListX = t2; } }, $signature: 84 }; A.BoardListState_build_closure1.prototype = { call$0() { }, $signature: 0 }; A.BoardListState_build_closure.prototype = { call$0() { var t3, t1 = this.$this, t2 = t1._widget; t2.boardView._widget.toString; t3 = t2.draggable; if (t3) t1._board_list$_startDrag$2(t2, this.context); }, $signature: 0 }; A.BoardListState_build_closure3.prototype = { call$2(ctx, index) { var t6, t7, t8, t1 = this.$this, t2 = t1._widget, t3 = t2.items, t4 = t3[index], t5 = t4.boardList; if (t5 == null || t4.index != index || t5._widget.index != t2.index || t5 !== t1) { t5 = t4.item; t6 = t4.draggable; t7 = t4.onDropItem; t8 = t4.onTapItem; t8 = A.BoardItem$(t1, t6, index, t5, t4.onDragItem, t7, t4.onStartDragItem, t8); t3[index] = t8; t1 = t8; } else t1 = t4; t3 = t2.boardView; if (t3.draggedItemIndex == index && t3.draggedListIndex == t2.index) return A.Opacity$(t1, 0); else return t1; }, $signature: 159 }; A._BoardListState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A.BoardView.prototype = { createState$0() { return new A.BoardViewState(new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_BoardListState), new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, B._StateLifecycle_0); } }; A.BoardViewState.prototype = { get$wantKeepAlive() { return true; }, initState$0() { this.super$_BoardViewState_State_AutomaticKeepAliveClientMixin$initState(); this._widget.boardViewController.__BoardViewController_state = this; }, moveDown$0() { var t2, t3, item, itemState, t4, _this = this, t1 = _this.topItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; _this.topItemY = t1 + A._lateReadCheck(t2[t3 + 1].__BoardItemState_height, "height"); } t1 = _this.bottomItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; _this.bottomItemY = t1 + A._lateReadCheck(t2[t3 + 1].__BoardItemState_height, "height"); } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].items; t1 = _this.draggedItemIndex; t1.toString; item = t2[t1]; B.JSArray_methods.removeAt$1(t2, t1); t1 = _this.listStates; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; itemState = t2[t3]; B.JSArray_methods.removeAt$1(t2, t3); t2 = _this.draggedItemIndex; if (t2 != null) t2 = _this.draggedItemIndex = t2 + 1; t3 = _this._widget.lists; t4 = _this.draggedListIndex; t4.toString; t4 = t3[t4].items; t2.toString; B.JSArray_methods.insert$2(t4, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t4 = _this.draggedItemIndex; t4.toString; B.JSArray_methods.insert$2(t2, t4, itemState); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2]; if (t2._framework$_element != null) t2.setState$1(new A.BoardViewState_moveDown_closure()); }, moveUp$0() { var t2, t3, item, itemState, t4, _this = this, t1 = _this.topItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; _this.topItemY = t1 - A._lateReadCheck(t2[t3 - 1].__BoardItemState_height, "height"); } t1 = _this.bottomItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; _this.bottomItemY = t1 - A._lateReadCheck(t2[t3 - 1].__BoardItemState_height, "height"); } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].items; t1 = _this.draggedItemIndex; t1.toString; item = t2[t1]; B.JSArray_methods.removeAt$1(t2, t1); t1 = _this.listStates; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; itemState = t2[t3]; B.JSArray_methods.removeAt$1(t2, t3); t2 = _this.draggedItemIndex; if (t2 != null) t2 = _this.draggedItemIndex = t2 - 1; t3 = _this._widget.lists; t4 = _this.draggedListIndex; t4.toString; t4 = t3[t4].items; t2.toString; B.JSArray_methods.insert$2(t4, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t4 = _this.draggedItemIndex; t4.toString; B.JSArray_methods.insert$2(t2, t4, itemState); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2]; if (t2._framework$_element != null) t2.setState$1(new A.BoardViewState_moveUp_closure()); }, moveListRight$0() { var list, t3, listState, tempListIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; list = t1[t2]; t3 = _this.listStates; listState = t3[t2]; B.JSArray_methods.removeAt$1(t1, t2); t2 = _this.draggedListIndex; t2.toString; B.JSArray_methods.removeAt$1(t3, t2); t1 = _this.draggedListIndex; if (t1 != null) t1 = _this.draggedListIndex = t1 + 1; t2 = _this._widget.lists; t1.toString; B.JSArray_methods.insert$2(t2, t1, list); t1 = _this.draggedListIndex; t1.toString; B.JSArray_methods.insert$2(t3, t1, listState); _this.canDrag = false; t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, B.Cubic_JUR, A.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new A.BoardViewState_moveListRight_closure(_this, tempListIndex)); } if (_this._framework$_element != null) _this.setState$1(new A.BoardViewState_moveListRight_closure0()); }, moveRight$0() { var t3, item, t4, itemState, closestValue, i, box, pos, temp, tempListIndex, tempItemIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items; t3 = _this.draggedItemIndex; t3.toString; item = t1[t3]; t4 = _this.listStates; itemState = t4[t2].itemStates[t3]; B.JSArray_methods.removeAt$1(t1, t3); t3 = _this.draggedListIndex; t3.toString; t3 = t4[t3].itemStates; t1 = _this.draggedItemIndex; t1.toString; B.JSArray_methods.removeAt$1(t3, t1); t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_moveRight_closure()); t1 = _this.draggedListIndex; if (t1 != null) _this.draggedListIndex = t1 + 1; _this.draggedItemIndex = 0; t1 = type$.RenderBox; closestValue = 10000; i = 0; while (true) { t2 = _this.draggedListIndex; t2.toString; t3 = t4[t2].itemStates; if (!(i < t3.length)) break; t2 = t3[i]._framework$_element; if (t2 != null && true) { box = t1._as(t2.get$renderObject()); pos = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), B.Offset_0_0); t2 = _this.dy; t2.toString; temp = Math.abs(pos._dy - t2 + box._box$_size._dy / 2); if (temp < closestValue) { _this.draggedItemIndex = i; _this.dyInit = t2; closestValue = temp; } } ++i; } t1 = _this._widget.lists[t2].items; t2 = _this.draggedItemIndex; t2.toString; B.JSArray_methods.insert$2(t1, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t4[t2].itemStates; t1 = _this.draggedItemIndex; t1.toString; B.JSArray_methods.insert$2(t2, t1, itemState); _this.canDrag = false; t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_moveRight_closure0()); t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempItemIndex = _this.draggedItemIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, B.Cubic_JUR, A.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new A.BoardViewState_moveRight_closure1(_this, tempListIndex, tempItemIndex)); } if (_this._framework$_element != null) _this.setState$1(new A.BoardViewState_moveRight_closure2()); }, moveListLeft$0() { var list, t3, listState, tempListIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; list = t1[t2]; t3 = _this.listStates; listState = t3[t2]; B.JSArray_methods.removeAt$1(t1, t2); t2 = _this.draggedListIndex; t2.toString; B.JSArray_methods.removeAt$1(t3, t2); t1 = _this.draggedListIndex; if (t1 != null) t1 = _this.draggedListIndex = t1 - 1; t2 = _this._widget.lists; t1.toString; B.JSArray_methods.insert$2(t2, t1, list); t1 = _this.draggedListIndex; t1.toString; B.JSArray_methods.insert$2(t3, t1, listState); _this.canDrag = false; t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempListIndex.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, B.Cubic_JUR, A.Duration$(0, 0, 0, _this._widget.dragDelay, 0, 0)).whenComplete$1(new A.BoardViewState_moveListLeft_closure(_this, tempListIndex)); } if (_this._framework$_element != null) _this.setState$1(new A.BoardViewState_moveListLeft_closure0()); }, moveLeft$0() { var t3, item, t4, itemState, closestValue, i, box, pos, temp, tempListIndex, tempItemIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items; t3 = _this.draggedItemIndex; t3.toString; item = t1[t3]; t4 = _this.listStates; itemState = t4[t2].itemStates[t3]; B.JSArray_methods.removeAt$1(t1, t3); t3 = _this.draggedListIndex; t3.toString; t3 = t4[t3].itemStates; t1 = _this.draggedItemIndex; t1.toString; B.JSArray_methods.removeAt$1(t3, t1); t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_moveLeft_closure()); t1 = _this.draggedListIndex; if (t1 != null) _this.draggedListIndex = t1 - 1; _this.draggedItemIndex = 0; t1 = type$.RenderBox; closestValue = 10000; i = 0; while (true) { t2 = _this.draggedListIndex; t2.toString; t3 = t4[t2].itemStates; if (!(i < t3.length)) break; t2 = t3[i]._framework$_element; if (t2 != null && true) { box = t1._as(t2.get$renderObject()); pos = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), B.Offset_0_0); t2 = _this.dy; t2.toString; temp = Math.abs(pos._dy - t2 + box._box$_size._dy / 2); if (temp < closestValue) { _this.draggedItemIndex = i; _this.dyInit = t2; closestValue = temp; } } ++i; } t1 = _this._widget.lists[t2].items; t2 = _this.draggedItemIndex; t2.toString; B.JSArray_methods.insert$2(t1, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t4[t2].itemStates; t1 = _this.draggedItemIndex; t1.toString; B.JSArray_methods.insert$2(t2, t1, itemState); _this.canDrag = false; t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_moveLeft_closure0()); t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempItemIndex = _this.draggedItemIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, B.Cubic_JUR, A.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new A.BoardViewState_moveLeft_closure1(_this, tempListIndex, tempItemIndex)); } if (_this._framework$_element != null) _this.setState$1(new A.BoardViewState_moveLeft_closure2()); }, build$1(_, context) { var t2, t3, listWidget, stackWidgets, t4, t5, isInBottomWidget, object, tempBottom, t6, t7, t8, _this = this, _null = null, t1 = {}; A.print("dy:" + A.S(_this.dy)); A.print("topListY:" + A.S(_this.topListY)); A.print("bottomListY:" + A.S(_this.bottomListY)); t2 = _this.boardViewController; t3 = t2._positions; if (t3.length !== 0) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.BoardViewState_build_closure(_this)); listWidget = A.ListView$builder(t2, new A.BoardViewState_build_closure0(_this), _this._widget.lists.length, _null, new A.ClampingScrollPhysics(_null), B.Axis_0, false); stackWidgets = A._setArrayType([listWidget], type$.JSArray_Widget); if (_this.dy != null) { t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = _this.dy; t5.toString; isInBottomWidget = t4.size._dy - t5 < 80 && true; } else isInBottomWidget = false; _this._widget.toString; if (_this.initialX != null && _this.initialY != null && _this.offsetX != null && _this.offsetY != null && _this.dx != null && _this.dy != null && _this.height != null && true) { if (_this.canDrag && _this.dxInit != null && _this.dyInit != null && !isInBottomWidget) if (_this.draggedItemIndex != null && _this.draggedItem != null && _this.topItemY != null && _this.bottomItemY != null) { t4 = _this.draggedListIndex; t4.toString; if (0 <= t4 - 1) { t4 = _this.dx; t4.toString; t5 = _this.leftListX; t5.toString; t5 = t4 < t5 + 45; t4 = t5; } else t4 = false; if (t4) { t4 = t3.length; if (t4 !== 0) { t4 = B.JSArray_methods.get$single(t3)._pixels; t4.toString; t2.animateTo$3$curve$duration(t4 - 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)); t4 = _this.draggedListIndex; t4.toString; t4 = _this.listStates[t4]._framework$_element; if (t4 != null) { object = type$.RenderBox._as(t4.get$renderObject()); t4 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, _null), B.Offset_0_0)._dx; _this.leftListX = t4; _this.rightListX = t4 + object._box$_size._dx; } } } t4 = _this._widget.lists.length; t5 = _this.draggedListIndex; t5.toString; if (t4 > t5 + 1) { t4 = _this.dx; t4.toString; t5 = _this.rightListX; t5.toString; t5 = t4 > t5 - 45; t4 = t5; } else t4 = false; if (t4) { t4 = t3.length; if (t4 !== 0) { t3 = B.JSArray_methods.get$single(t3)._pixels; t3.toString; t2.animateTo$3$curve$duration(t3 + 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)); t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2]._framework$_element; if (t2 != null) { object = type$.RenderBox._as(t2.get$renderObject()); t2 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, _null), B.Offset_0_0)._dx; _this.leftListX = t2; _this.rightListX = t2 + object._box$_size._dx; } } } t2 = _this.draggedListIndex; t2.toString; if (0 <= t2 - 1) { t2 = _this.dx; t2.toString; t3 = _this.leftListX; t3.toString; t3 = t2 < t3; t2 = t3; } else t2 = false; if (t2) _this.moveLeft$0(); t2 = _this._widget.lists.length; t3 = _this.draggedListIndex; t3.toString; if (t2 > t3 + 1) { t2 = _this.dx; t2.toString; t3 = _this.rightListX; t3.toString; t3 = t2 > t3; t2 = t3; } else t2 = false; if (t2) _this.moveRight$0(); t2 = _this.dy; t2.toString; t3 = _this.topListY; t3.toString; if (t2 < t3 + 70) { t2 = _this.listStates; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3]; t4 = t3.boardListController._positions.length !== 0 && !_this.isScrolling; if (t4) { _this.isScrolling = true; t3 = B.JSArray_methods.get$single(t3.boardListController._positions)._pixels; t3.toString; t1.pos = t3; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController; t2 = B.JSArray_methods.get$single(t3._positions)._pixels; t2.toString; t3.animateTo$3$curve$duration(t2 - 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)).whenComplete$1(new A.BoardViewState_build_closure1(t1, _this)); } } t2 = _this.draggedItemIndex; t2.toString; --t2; if (0 <= t2) { t3 = _this.dy; t3.toString; t4 = _this.topItemY; t4.toString; t5 = _this.draggedListIndex; t5.toString; t2 = t3 < t4 - A._lateReadCheck(_this.listStates[t5].itemStates[t2].__BoardItemState_height, "height") / 2; } else t2 = false; if (t2) _this.moveUp$0(); tempBottom = _this.bottomListY; _this._widget.toString; t2 = _this.dy; t2.toString; tempBottom.toString; if (t2 > tempBottom - 70) { t2 = _this.listStates; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController._positions; t4 = t3.length; if (t4 !== 0) { _this.isScrolling = true; t3 = B.JSArray_methods.get$single(t3)._pixels; t3.toString; t1.pos = t3; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController; t2 = B.JSArray_methods.get$single(t3._positions)._pixels; t2.toString; t3.animateTo$3$curve$duration(t2 + 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)).whenComplete$1(new A.BoardViewState_build_closure2(t1, _this)); } } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items.length; t3 = _this.draggedItemIndex; t3.toString; ++t3; if (t1 > t3) { t1 = _this.dy; t1.toString; t4 = _this.bottomItemY; t4.toString; t3 = t1 > t4 + A._lateReadCheck(_this.listStates[t2].itemStates[t3].__BoardItemState_height, "height") / 2; t1 = t3; } else t1 = false; if (t1) _this.moveDown$0(); } else { t1 = _this.draggedListIndex; t1.toString; if (0 <= t1 - 1) { t1 = _this.dx; t1.toString; t4 = _this.leftListX; t4.toString; t4 = t1 < t4 + 45; t1 = t4; } else t1 = false; if (t1) { t1 = t3.length; if (t1 !== 0) { t1 = B.JSArray_methods.get$single(t3)._pixels; t1.toString; t2.animateTo$3$curve$duration(t1 - 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)); t1 = _this.leftListX; if (t1 != null) _this.leftListX = t1 + 5; t1 = _this.rightListX; if (t1 != null) _this.rightListX = t1 + 5; } } t1 = _this._widget.lists.length; t4 = _this.draggedListIndex; t4.toString; if (t1 > t4 + 1) { t1 = _this.dx; t1.toString; t4 = _this.rightListX; t4.toString; t4 = t1 > t4 - 45; t1 = t4; } else t1 = false; if (t1) { t1 = t3.length; if (t1 !== 0) { t1 = B.JSArray_methods.get$single(t3)._pixels; t1.toString; t2.animateTo$3$curve$duration(t1 + 5, B.Cubic_JUR, A.Duration$(0, 0, 0, 10, 0, 0)); t1 = _this.leftListX; if (t1 != null) _this.leftListX = t1 - 5; t1 = _this.rightListX; if (t1 != null) _this.rightListX = t1 - 5; } } t1 = _this._widget.lists.length; t2 = _this.draggedListIndex; t2.toString; if (t1 > t2 + 1) { t1 = _this.dx; t1.toString; t2 = _this.rightListX; t2.toString; t2 = t1 > t2; t1 = t2; } else t1 = false; if (t1) _this.moveListRight$0(); t1 = _this.draggedListIndex; t1.toString; if (0 <= t1 - 1) { t1 = _this.dx; t1.toString; t2 = _this.leftListX; t2.toString; t2 = t1 < t2; t1 = t2; } else t1 = false; if (t1) _this.moveListLeft$0(); } _this._widget.toString; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.BoardViewState_build_closure3(_this)); _this._widget.toString; t1 = _this.height; t2 = A.Opacity$(_this.draggedItem, 0.7); t3 = _this.dx; t3.toString; t4 = _this.offsetX; t4.toString; t5 = _this.initialX; t5.toString; t6 = _this.dy; t6.toString; t7 = _this.offsetY; t7.toString; t8 = _this.initialY; t8.toString; stackWidgets.push(A.Positioned$(_null, t2, t1, _null, t3 - t4 + t5, _null, t6 - t7 + t8, 280)); } return A.Container$(_null, A.Listener$(B.HitTestBehavior_0, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, stackWidgets, _null), _null, _null, new A.BoardViewState_build_closure4(_this, context), _null, new A.BoardViewState_build_closure5(_this), _null, new A.BoardViewState_build_closure6(_this, context)), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, run$0() { var _this = this, t1 = _this.pointer; if (t1 != null) { _this.dx = t1.get$position(t1)._dx; t1 = _this.pointer; _this.dy = t1.get$position(t1)._dy; if (_this._framework$_element != null) _this.setState$1(new A.BoardViewState_run_closure()); } } }; A.BoardViewState_moveDown_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveUp_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveListRight_closure.prototype = { call$0() { var object, t1 = this.$this, t2 = this.tempListIndex; t2.toString; object = type$.RenderBox._as(t1.listStates[t2]._framework$_element.get$renderObject()); t2 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0)._dx; t1.leftListX = t2; t1.rightListX = t2 + object._box$_size._dx; A.Future_Future$delayed(A.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new A.BoardViewState_moveListRight__closure(t1), type$.Null); }, $signature: 1 }; A.BoardViewState_moveListRight__closure.prototype = { call$0() { this.$this.canDrag = true; }, $signature: 1 }; A.BoardViewState_moveListRight_closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveRight_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveRight_closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveRight_closure1.prototype = { call$0() { var t4, object, t5, box, t1 = this.$this, t2 = t1.listStates, t3 = this.tempListIndex; t3.toString; t4 = type$.RenderBox; object = t4._as(t2[t3]._framework$_element.get$renderObject()); t5 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0)._dx; t1.leftListX = t5; t1.rightListX = t5 + object._box$_size._dx; t3 = t2[t3].itemStates; t2 = this.tempItemIndex; t2.toString; box = t4._as(t3[t2]._framework$_element.get$renderObject()); t2 = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), B.Offset_0_0)._dy; t1.topItemY = t2; t1.bottomItemY = t2 + box._box$_size._dy; A.Future_Future$delayed(A.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new A.BoardViewState_moveRight__closure(t1), type$.Null); }, $signature: 1 }; A.BoardViewState_moveRight__closure.prototype = { call$0() { this.$this.canDrag = true; }, $signature: 1 }; A.BoardViewState_moveRight_closure2.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveListLeft_closure.prototype = { call$0() { var object, t1 = this.$this, t2 = this.tempListIndex; t2.toString; object = type$.RenderBox._as(t1.listStates[t2]._framework$_element.get$renderObject()); t2 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0)._dx; t1.leftListX = t2; t1.rightListX = t2 + object._box$_size._dx; A.Future_Future$delayed(A.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new A.BoardViewState_moveListLeft__closure(t1), type$.Null); }, $signature: 1 }; A.BoardViewState_moveListLeft__closure.prototype = { call$0() { this.$this.canDrag = true; }, $signature: 1 }; A.BoardViewState_moveListLeft_closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveLeft_closure.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveLeft_closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_moveLeft_closure1.prototype = { call$0() { var t4, object, t5, box, t1 = this.$this, t2 = t1.listStates, t3 = this.tempListIndex; t3.toString; t4 = type$.RenderBox; object = t4._as(t2[t3]._framework$_element.get$renderObject()); t5 = A.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), B.Offset_0_0)._dx; t1.leftListX = t5; t1.rightListX = t5 + object._box$_size._dx; t3 = t2[t3].itemStates; t2 = this.tempItemIndex; t2.toString; box = t4._as(t3[t2]._framework$_element.get$renderObject()); t2 = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), B.Offset_0_0)._dy; t1.topItemY = t2; t1.bottomItemY = t2 + box._box$_size._dy; A.Future_Future$delayed(A.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new A.BoardViewState_moveLeft__closure(t1), type$.Null); }, $signature: 1 }; A.BoardViewState_moveLeft__closure.prototype = { call$0() { this.$this.canDrag = true; }, $signature: 1 }; A.BoardViewState_moveLeft_closure2.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure.prototype = { call$1(duration) { var exception, t1, t2, _shown; try { B.JSArray_methods.get$single(this.$this.boardViewController._positions).didUpdateScrollPositionBy$1(0); } catch (exception) { } t1 = this.$this; t2 = B.JSArray_methods.get$single(t1.boardViewController._positions)._maxScrollExtent; t2.toString; _shown = t2 !== 0; if (_shown !== t1.shown) t1.setState$1(new A.BoardViewState_build__closure5(t1, _shown)); }, $signature: 22 }; A.BoardViewState_build__closure5.prototype = { call$0() { this.$this.shown = this._shown; }, $signature: 0 }; A.BoardViewState_build_closure0.prototype = { call$2(context, index) { var t4, t5, t6, t7, t8, t9, t10, t11, temp, _null = null, t1 = this.$this, t2 = t1._widget.lists, t3 = t2[index]; if (t3.boardView == null) { t4 = t3.items; t5 = t3.headerBackgroundColor; t6 = t3.backgroundColor; t7 = t3.footer; t8 = t3.header; t9 = t3.draggable; t10 = t3.onDropList; t11 = t3.onTapList; t11 = A.BoardList$(t6, t1, t9, t7, t8, t5, _null, t4, t10, t3.onStartDragList, t11); t2[index] = t11; t3 = t11; } if (t3.index != index) { t3 = A.BoardList$(t3.backgroundColor, t1, t3.draggable, t3.footer, t3.header, t3.headerBackgroundColor, index, t3.items, t3.onDropList, t3.onStartDragList, t3.onTapList); t2[index] = t3; t2 = t3; } else t2 = t3; temp = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(t2, 1)], type$.JSArray_Widget), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(0, 0, 0, 0), _null, _null, 280); if (t1.draggedListIndex == index && t1.draggedItemIndex == null) return A.Opacity$(temp, 0); else return temp; }, $signature: 159 }; A.BoardViewState_build_closure1.prototype = { call$0() { var pos, t1 = this._box_0, t2 = t1.pos, t3 = this.$this, t4 = t3.draggedListIndex; t4.toString; t4 = B.JSArray_methods.get$single(t3.listStates[t4].boardListController._positions)._pixels; t4.toString; pos = t1.pos = t2 - t4; if (t3.initialY == null) t3.initialY = 0; t3.isScrolling = false; t1 = t3.topItemY; if (t1 != null) t3.topItemY = t1 + pos; t1 = t3.bottomItemY; if (t1 != null) t3.bottomItemY = t1 + pos; if (t3._framework$_element != null) t3.setState$1(new A.BoardViewState_build__closure4()); }, $signature: 1 }; A.BoardViewState_build__closure4.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure2.prototype = { call$0() { var pos, t1 = this._box_0, t2 = t1.pos, t3 = this.$this, t4 = t3.draggedListIndex; t4.toString; t4 = B.JSArray_methods.get$single(t3.listStates[t4].boardListController._positions)._pixels; t4.toString; pos = t1.pos = t2 - t4; if (t3.initialY == null) t3.initialY = 0; t3.isScrolling = false; t1 = t3.topItemY; if (t1 != null) t3.topItemY = t1 + pos; t1 = t3.bottomItemY; if (t1 != null) t3.bottomItemY = t1 + pos; if (t3._framework$_element != null) t3.setState$1(new A.BoardViewState_build__closure3()); }, $signature: 1 }; A.BoardViewState_build__closure3.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure3.prototype = { call$1(timeStamp) { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure2()); }, $signature: 22 }; A.BoardViewState_build__closure2.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure5.prototype = { call$1(opm) { var t1 = this.$this; if (t1.draggedItem != null) { if (t1.dxInit == null) t1.dxInit = opm.get$position(opm)._dx; if (t1.dyInit == null) t1.dyInit = opm.get$position(opm)._dy; t1.dx = opm.get$position(opm)._dx; t1.dy = opm.get$position(opm)._dy; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure0()); } }, $signature: 2904 }; A.BoardViewState_build__closure0.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure4.prototype = { call$1(opd) { var box = type$.RenderBox._as(this.context.get$renderObject()), t1 = opd.get$position(opd), pos = A.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), t1); t1 = this.$this; t1.offsetX = pos._dx; t1.offsetY = pos._dy; t1.pointer = opd; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure1()); }, $signature: 248 }; A.BoardViewState_build__closure1.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_build_closure6.prototype = { call$1(opu) { var tempDraggedItemIndex, tempDraggedListIndex, t1 = this.$this, t2 = t1.onDropItem; if (t2 != null) { tempDraggedItemIndex = t1.draggedItemIndex; tempDraggedListIndex = t1.draggedListIndex; if (t1._isInWidget) t1._widget.toString; t2.call$2(tempDraggedListIndex, tempDraggedItemIndex); } t2 = t1.onDropList; if (t2 != null) { tempDraggedListIndex = t1.draggedListIndex; if (t1._isInWidget) t1._widget.toString; t2.call$1(tempDraggedListIndex); } t1.startItemIndex = t1.startListIndex = t1.bottomItemY = t1.topItemY = t1.bottomListY = t1.topListY = t1.rightListX = t1.leftListX = t1.dyInit = t1.dxInit = t1.onDropList = t1.onDropItem = t1.draggedListIndex = t1.draggedItemIndex = t1.dy = t1.dx = t1.initialY = t1.initialX = t1.offsetY = t1.offsetX = t1.draggedItem = null; if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure()); }, $signature: 2903 }; A.BoardViewState_build__closure.prototype = { call$0() { }, $signature: 0 }; A.BoardViewState_run_closure.prototype = { call$0() { }, $signature: 0 }; A._BoardViewState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A.BoardViewController.prototype = {}; A.CopyOnWriteList.prototype = { get$length(_) { return J.get$length$asx(this._copy_on_write_list$_list); }, $index(_, index) { return J.$index$asx(this._copy_on_write_list$_list, index); }, $add(_, other) { return J.$add$ansx(this._copy_on_write_list$_list, other); }, any$1(_, test) { return J.any$1$ax(this._copy_on_write_list$_list, test); }, asMap$0(_) { return J.asMap$0$ax(this._copy_on_write_list$_list); }, cast$1$0(_, $T) { return new A.CopyOnWriteList(true, J.cast$1$0$ax(this._copy_on_write_list$_list, $T), $T._eval$1("CopyOnWriteList<0>")); }, contains$1(_, element) { return J.contains$1$asx(this._copy_on_write_list$_list, element); }, elementAt$1(_, index) { return J.elementAt$1$ax(this._copy_on_write_list$_list, index); }, get$first(_) { return J.get$first$ax(this._copy_on_write_list$_list); }, fold$1$2(_, initialValue, combine, $T) { return J.fold$1$2$ax(this._copy_on_write_list$_list, initialValue, combine, $T); }, forEach$1(_, f) { return J.forEach$1$ax(this._copy_on_write_list$_list, f); }, indexOf$2(_, element, start) { return J.indexOf$2$asx(this._copy_on_write_list$_list, element, start); }, indexOf$1($receiver, element) { return this.indexOf$2($receiver, element, 0); }, get$isEmpty(_) { return J.get$isEmpty$asx(this._copy_on_write_list$_list); }, get$isNotEmpty(_) { return J.get$isNotEmpty$asx(this._copy_on_write_list$_list); }, get$iterator(_) { return J.get$iterator$ax(this._copy_on_write_list$_list); }, join$1(_, separator) { return J.join$1$ax(this._copy_on_write_list$_list, separator); }, join$0($receiver) { return this.join$1($receiver, ""); }, get$last(_) { return J.get$last$ax(this._copy_on_write_list$_list); }, map$1$1(_, f, $T) { return J.map$1$1$ax(this._copy_on_write_list$_list, f, $T); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, get$reversed(_) { return J.get$reversed$ax(this._copy_on_write_list$_list); }, skip$1(_, count) { return J.skip$1$ax(this._copy_on_write_list$_list, count); }, sublist$2(_, start, end) { return J.sublist$2$ax(this._copy_on_write_list$_list, start, end); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, take$1(_, count) { return J.take$1$ax(this._copy_on_write_list$_list, count); }, toList$1$growable(_, growable) { return J.toList$1$growable$ax(this._copy_on_write_list$_list, true); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return J.toSet$0$ax(this._copy_on_write_list$_list); }, where$1(_, test) { return J.where$1$ax(this._copy_on_write_list$_list, test); }, $indexSet(_, index, element) { this._maybeCopyBeforeWrite$0(); J.$indexSet$ax(this._copy_on_write_list$_list, index, element); }, add$1(_, value) { this._maybeCopyBeforeWrite$0(); J.add$1$ax(this._copy_on_write_list$_list, value); }, sort$1(_, compare) { this._maybeCopyBeforeWrite$0(); J.sort$1$ax(this._copy_on_write_list$_list, compare); }, sort$0($receiver) { return this.sort$1($receiver, null); }, insert$2(_, index, element) { this._maybeCopyBeforeWrite$0(); J.insert$2$ax(this._copy_on_write_list$_list, index, element); }, insertAll$2(_, index, iterable) { this._maybeCopyBeforeWrite$0(); J.insertAll$2$ax(this._copy_on_write_list$_list, index, iterable); }, remove$1(_, value) { this._maybeCopyBeforeWrite$0(); return J.remove$1$ax(this._copy_on_write_list$_list, value); }, removeAt$1(_, index) { this._maybeCopyBeforeWrite$0(); return J.removeAt$1$ax(this._copy_on_write_list$_list, index); }, removeLast$0(_) { this._maybeCopyBeforeWrite$0(); return J.removeLast$0$ax(this._copy_on_write_list$_list); }, removeWhere$1(_, test) { this._maybeCopyBeforeWrite$0(); J.removeWhere$1$ax(this._copy_on_write_list$_list, test); }, retainWhere$1(_, test) { this._maybeCopyBeforeWrite$0(); J.retainWhere$1$ax(this._copy_on_write_list$_list, test); }, removeRange$2(_, start, end) { this._maybeCopyBeforeWrite$0(); J.removeRange$2$ax(this._copy_on_write_list$_list, start, end); }, toString$0(_) { return J.toString$0$(this._copy_on_write_list$_list); }, _maybeCopyBeforeWrite$0() { var _this = this; if (!_this._copyBeforeWrite) return; _this._copyBeforeWrite = false; _this._copy_on_write_list$_list = A.List_List$from(_this._copy_on_write_list$_list, true, _this.$ti._precomputed1); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.CopyOnWriteSet.prototype = { get$length(_) { var t1 = this._copy_on_write_set$_set; return t1.get$length(t1); }, intersection$1(_, other) { return this._copy_on_write_set$_set.intersection$1(0, other); }, contains$1(_, element) { return this._copy_on_write_set$_set.contains$1(0, element); }, elementAt$1(_, index) { return this._copy_on_write_set$_set.elementAt$1(0, index); }, get$first(_) { var t1 = this._copy_on_write_set$_set; return t1.get$first(t1); }, forEach$1(_, f) { return this._copy_on_write_set$_set.forEach$1(0, f); }, get$isEmpty(_) { var t1 = this._copy_on_write_set$_set; return t1.get$isEmpty(t1); }, get$isNotEmpty(_) { var t1 = this._copy_on_write_set$_set; return t1.get$isNotEmpty(t1); }, get$iterator(_) { var t1 = this._copy_on_write_set$_set; return t1.get$iterator(t1); }, get$last(_) { var t1 = this._copy_on_write_set$_set; return t1.get$last(t1); }, map$1$1(_, f, $T) { return this._copy_on_write_set$_set.map$1$1(0, f, $T); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, skip$1(_, count) { return this._copy_on_write_set$_set.skip$1(0, count); }, take$1(_, count) { return this._copy_on_write_set$_set.take$1(0, count); }, toList$1$growable(_, growable) { return this._copy_on_write_set$_set.toList$1$growable(0, true); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return this._copy_on_write_set$_set.toSet$0(0); }, where$1(_, test) { return this._copy_on_write_set$_set.where$1(0, test); }, add$1(_, value) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); return this._copy_on_write_set$_set.add$1(0, value); }, addAll$1(_, iterable) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.addAll$1(0, iterable); }, clear$0(_) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.clear$0(0); }, remove$1(_, value) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); return this._copy_on_write_set$_set.remove$1(0, value); }, removeWhere$1(_, test) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.removeWhere$1(0, test); }, toString$0(_) { return this._copy_on_write_set$_set.toString$0(0); }, _copy_on_write_set$_maybeCopyBeforeWrite$0() { var t1, _this = this; if (!_this._copy_on_write_set$_copyBeforeWrite) return; _this._copy_on_write_set$_copyBeforeWrite = false; t1 = A.LinkedHashSet_LinkedHashSet$from(_this._copy_on_write_set$_set, _this.$ti._precomputed1); _this._copy_on_write_set$_set = t1; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1 }; A.hashObjects_closure.prototype = { call$2(h, i) { return A._combine(h, J.get$hashCode$(i)); }, $signature: 569 }; A.BuiltList.prototype = { rebuild$1(updates) { var t1 = A.ListBuilder_ListBuilder(this, this.$ti._precomputed1); updates.call$1(t1); return t1.build$0(0); }, get$hashCode(_) { var t1 = this._list$_hashCode; return t1 == null ? this._list$_hashCode = A.hashObjects(this._list) : t1; }, $eq(_, other) { var t1, t2, i, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltList)) return false; t1 = other._list; t2 = _this._list; if (t1.length !== t2.length) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (i = 0; i !== t2.length; ++i) if (!J.$eq$(t1[i], t2[i])) return false; return true; }, toString$0(_) { return A.IterableBase_iterableToFullString(this._list, "[", "]"); }, $index(_, index) { return this._list[index]; }, $add(_, other) { return new A._BuiltList(B.JSArray_methods.$add(this._list, other._list), this.$ti._eval$1("_BuiltList<1>")); }, get$length(_) { return this._list.length; }, get$iterator(_) { var t1 = this._list; return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, map$1$1(_, f, $T) { var t1 = this._list; return new A.MappedListIterable(t1, f, A._arrayInstanceType(t1)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1(_, test) { var t1 = this._list; return new A.WhereIterable(t1, test, A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, contains$1(_, element) { return B.JSArray_methods.contains$1(this._list, element); }, forEach$1(_, f) { return B.JSArray_methods.forEach$1(this._list, f); }, toList$1$growable(_, growable) { return new A.CopyOnWriteList(true, this._list, this.$ti._eval$1("CopyOnWriteList<1>")); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { var t1 = this._list; return A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); }, get$isEmpty(_) { return this._list.length === 0; }, get$isNotEmpty(_) { return this._list.length !== 0; }, take$1(_, n) { var t1 = this._list; return A.SubListIterable$(t1, 0, A.checkNotNullable(n, "count", type$.int), A._arrayInstanceType(t1)._precomputed1); }, skip$1(_, n) { var t1 = this._list; return A.SubListIterable$(t1, n, null, A._arrayInstanceType(t1)._precomputed1); }, get$first(_) { return B.JSArray_methods.get$first(this._list); }, get$last(_) { return B.JSArray_methods.get$last(this._list); }, elementAt$1(_, index) { return this._list[index]; }, $isIterable: 1 }; A._BuiltList.prototype = { _maybeCheckForNull$0() { var t1, t2, _i; if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (t1 = this._list, t2 = t1.length, _i = 0; _i < t2; ++_i) if (t1[_i] == null) throw A.wrapException(A.ArgumentError$("iterable contained invalid element: null", null)); } }; A.ListBuilder.prototype = { build$0(_) { var _this = this, t1 = _this._listOwner; if (t1 == null) { t1 = A._lateReadCheck(_this.__ListBuilder__list, "_list"); _this.__ListBuilder__list = t1; t1 = _this._listOwner = new A._BuiltList(t1, _this.$ti._eval$1("_BuiltList<1>")); } return t1; }, replace$1(_, iterable) { var _this = this, t1 = _this.$ti; if (t1._eval$1("_BuiltList<1>")._is(iterable)) { _this.__ListBuilder__list = iterable._list; _this._listOwner = iterable; } else { _this.__ListBuilder__list = A.List_List$from(iterable, true, t1._precomputed1); _this._listOwner = null; } }, $index(_, index) { return J.$index$asx(A._lateReadCheck(this.__ListBuilder__list, "_list"), index); }, $indexSet(_, index, element) { if (!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null)) if (element == null) A.throwExpression(A.ArgumentError$("null element", null)); this.get$_safeList()[index] = element; }, get$length(_) { return J.get$length$asx(A._lateReadCheck(this.__ListBuilder__list, "_list")); }, get$isEmpty(_) { return J.get$length$asx(A._lateReadCheck(this.__ListBuilder__list, "_list")) === 0; }, add$1(_, value) { if (!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null)) if (value == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(this.get$_safeList(), value); }, addAll$1(_, iterable) { var i, exception, safeList = this.get$_safeList(), lengthBefore = J.get$length$asx(safeList); J.addAll$1$ax(safeList, iterable); if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; try { for (i = lengthBefore; !J.$eq$(i, J.get$length$asx(safeList)); ++i) if (J.$index$asx(safeList, i) == null) A.throwExpression(A.ArgumentError$("null element", null)); } catch (exception) { J.removeRange$2$ax(safeList, lengthBefore, J.get$length$asx(safeList)); throw exception; } }, map$1(_, f) { var _this = this, t1 = A._lateReadCheck(_this.__ListBuilder__list, "_list"), t2 = A.instanceType(t1)._eval$1("@<1>")._bind$1(_this.$ti._precomputed1)._eval$1("MappedListIterable<1,2>"), result = A.List_List$of(new A.MappedListIterable(t1, f, t2), true, t2._eval$1("ListIterable.E")); _this._maybeCheckElements$1(result); _this.__ListBuilder__list = result; _this._listOwner = null; }, get$_safeList() { var _this = this; if (_this._listOwner != null) { _this.__ListBuilder__list = A.List_List$from(A._lateReadCheck(_this.__ListBuilder__list, "_list"), true, _this.$ti._precomputed1); _this._listOwner = null; } return A._lateReadCheck(_this.__ListBuilder__list, "_list"); }, _maybeCheckElements$1(elements) { var t1, _i; if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (t1 = elements.length, _i = 0; _i < t1; ++_i) if (elements[_i] == null) A.throwExpression(A.ArgumentError$("null element", null)); } }; A.BuiltListMultimap.prototype = { get$hashCode(_) { var t2, _this = this, t1 = _this._list_multimap$_hashCode; if (t1 == null) { t1 = _this._list_multimap$_map; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t2 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t1, t2), new A.BuiltListMultimap_hashCode_closure(_this), t2._eval$1("Iterable.E"), type$.int); t2 = A.List_List$of(t2, false, A._instanceType(t2)._eval$1("Iterable.E")); B.JSArray_methods.sort$0(t2); t2 = _this._list_multimap$_hashCode = A.hashObjects(t2); t1 = t2; } return t1; }, $eq(_, other) { var t1, t2, t3, t4, t5, key, result, t6, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltListMultimap)) return false; t1 = other._list_multimap$_map; t2 = _this._list_multimap$_map; if (t1._length !== t2._length) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t3 = _this.get$keys(_this), t4 = t3._map, t3 = A.LinkedHashMapKeyIterator$(t4, t4._modifications, A._instanceType(t3)._precomputed1), t4 = other._emptyList, t5 = _this._emptyList; t3.moveNext$0();) { key = t3.__js_helper$_current; result = t1.$index(0, key); t6 = result == null ? t4 : result; result = t2.$index(0, key); if (!t6.$eq(0, result == null ? t5 : result)) return false; } return true; }, toString$0(_) { return A.MapBase_mapToString(this._list_multimap$_map); }, $index(_, key) { var result = this._list_multimap$_map.$index(0, key); return result == null ? this._emptyList : result; }, containsKey$1(_, key) { return this._list_multimap$_map.containsKey$1(0, key); }, forEach$1(_, f) { this._list_multimap$_map.forEach$1(0, new A.BuiltListMultimap_forEach_closure(this, f)); }, get$isEmpty(_) { return this._list_multimap$_map._length === 0; }, get$keys(_) { var t1 = this._list_multimap$_keys; if (t1 == null) { t1 = this._list_multimap$_map; t1 = this._list_multimap$_keys = new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); } return t1; }, get$length(_) { return this._list_multimap$_map._length; } }; A.BuiltListMultimap_BuiltListMultimap_closure.prototype = { call$1(k) { return this.multimap.$index(0, k); }, $signature: 12 }; A.BuiltListMultimap_hashCode_closure.prototype = { call$1(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(this.$this._list_multimap$_map.$index(0, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature() { return this.$this.$ti._eval$1("int(1)"); } }; A.BuiltListMultimap_forEach_closure.prototype = { call$2(key, values) { B.JSArray_methods.forEach$1(values._list, new A.BuiltListMultimap_forEach__closure(this.$this, this.f, key)); }, $signature() { return this.$this.$ti._eval$1("~(1,BuiltList<2>)"); } }; A.BuiltListMultimap_forEach__closure.prototype = { call$1(value) { this.f.call$2(this.key, value); }, $signature() { return this.$this.$ti._eval$1("~(2)"); } }; A._BuiltListMultimap.prototype = { _BuiltListMultimap$copy$2(keys, lookup, $K, $V) { var t1, t2, key; for (t1 = J.get$iterator$ax(keys), t2 = this._list_multimap$_map; t1.moveNext$0();) { key = t1.get$current(t1); if ($K._is(key)) t2.$indexSet(0, key, A.BuiltList_BuiltList$from(lookup.call$1(key), $V)); else throw A.wrapException(A.ArgumentError$("map contained invalid key: " + A.S(key), null)); } } }; A.ListMultimapBuilder.prototype = { build$0(_) { var key, t2, builtList, t3, _this = this, _s11_ = "_builderMap", _s9_ = "_builtMap", t1 = _this._list_multimap$_builtMapOwner; if (t1 == null) { for (t1 = A._lateReadCheck(_this.__ListMultimapBuilder__builderMap, _s11_), t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A.instanceType(t1)._precomputed1); t1.moveNext$0();) { key = t1.__js_helper$_current; t2 = J.$index$asx(A._lateReadCheck(_this.__ListMultimapBuilder__builderMap, _s11_), key); builtList = t2._listOwner; if (builtList == null) { t3 = A._lateReadCheck(t2.__ListBuilder__list, "_list"); t2.__ListBuilder__list = t3; builtList = t2._listOwner = new A._BuiltList(t3, A.instanceType(t2)._eval$1("_BuiltList<1>")); } t2 = builtList._list.length; t3 = _this.__ListMultimapBuilder__builtMap; if (t2 === 0) J.remove$1$ax(A._lateReadCheck(t3, _s9_), key); else J.$indexSet$ax(A._lateReadCheck(t3, _s9_), key, builtList); } t1 = _this.$ti; t2 = t1._rest[1]; t2 = _this._list_multimap$_builtMapOwner = new A._BuiltListMultimap(A._lateReadCheck(_this.__ListMultimapBuilder__builtMap, _s9_), A.BuiltList_BuiltList$from(B.List_empty, t2), t1._eval$1("@<1>")._bind$1(t2)._eval$1("_BuiltListMultimap<1,2>")); t1 = t2; } return t1; }, replace$1(_, multimap) { this._list_multimap$_setWithCopyAndCheck$2(multimap.get$keys(multimap), new A.ListMultimapBuilder_replace_closure(multimap)); }, $index(_, key) { var t1; this._makeWriteableCopy$0(); t1 = this.$ti; return t1._precomputed1._is(key) ? this._list_multimap$_getValuesBuilder$1(key) : A.ListBuilder_ListBuilder(B.List_empty, t1._rest[1]); }, _list_multimap$_getValuesBuilder$1(key) { var builtValues, _this = this, _s11_ = "_builderMap", result = J.$index$asx(A._lateReadCheck(_this.__ListMultimapBuilder__builderMap, _s11_), key); if (result == null) { builtValues = J.$index$asx(A._lateReadCheck(_this.__ListMultimapBuilder__builtMap, "_builtMap"), key); result = builtValues == null ? A.ListBuilder_ListBuilder(B.List_empty, _this.$ti._rest[1]) : A.ListBuilder_ListBuilder(builtValues, builtValues.$ti._precomputed1); J.$indexSet$ax(A._lateReadCheck(_this.__ListMultimapBuilder__builderMap, _s11_), key, result); } return result; }, _makeWriteableCopy$0() { var t1, _this = this; if (_this._list_multimap$_builtMapOwner != null) { t1 = _this.$ti; _this.__ListMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$from(A._lateReadCheck(_this.__ListMultimapBuilder__builtMap, "_builtMap"), t1._precomputed1, t1._eval$1("BuiltList<2>")); _this._list_multimap$_builtMapOwner = null; } }, _list_multimap$_setWithCopyAndCheck$2(keys, lookup) { var t1, t2, t3, t4, key, t5, value, t6, _this = this; _this._list_multimap$_builtMapOwner = null; t1 = _this.$ti; t2 = t1._precomputed1; t3 = t1._eval$1("BuiltList<2>"); _this.__ListMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); _this.__ListMultimapBuilder__builderMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t1._eval$1("ListBuilder<2>")); for (t4 = J.get$iterator$ax(keys), t1 = t1._rest[1]; t4.moveNext$0();) { key = t4.get$current(t4); if (t2._is(key)) for (t5 = J.get$iterator$ax(lookup.call$1(key)); t5.moveNext$0();) { value = t5.get$current(t5); if (t1._is(value)) { if (_this._list_multimap$_builtMapOwner != null) { _this.__ListMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$from(A._lateReadCheck(_this.__ListMultimapBuilder__builtMap, "_builtMap"), t2, t3); _this._list_multimap$_builtMapOwner = null; } _this._list_multimap$_checkKey$1(key); _this._list_multimap$_checkValue$1(value); t6 = _this._list_multimap$_getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t6.$ti._precomputed1._is(null)) if (value == null) A.throwExpression(A.ArgumentError$("null element", null)); if (t6._listOwner != null) { t6.__ListBuilder__list = A.List_List$from(A._lateReadCheck(t6.__ListBuilder__list, "_list"), true, t6.$ti._precomputed1); t6._listOwner = null; } J.add$1$ax(A._lateReadCheck(t6.__ListBuilder__list, "_list"), value); } else throw A.wrapException(A.ArgumentError$("map contained invalid value: " + A.S(value) + ", for key " + A.S(key), null)); } else throw A.wrapException(A.ArgumentError$("map contained invalid key: " + A.S(key), null)); } }, _list_multimap$_checkKey$1(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw A.wrapException(A.ArgumentError$("null key", null)); }, _list_multimap$_checkValue$1(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw A.wrapException(A.ArgumentError$("null value", null)); } }; A.ListMultimapBuilder_replace_closure.prototype = { call$1(k) { return this.multimap.$index(0, k); }, $signature: 12 }; A.BuiltMap.prototype = { rebuild$1(updates) { var t1 = this.$ti; t1._eval$1("_BuiltMap<1,2>")._as(this); t1 = new A.MapBuilder(this._mapFactory, this._map$_map, this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); updates.call$1(t1); return t1.build$0(0); }, get$hashCode(_) { var t2, _this = this, t1 = _this._map$_hashCode; if (t1 == null) { t1 = _this._map$_map; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t2 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t1, t2), new A.BuiltMap_hashCode_closure(_this), t2._eval$1("Iterable.E"), type$.int); t2 = A.List_List$of(t2, false, A._instanceType(t2)._eval$1("Iterable.E")); B.JSArray_methods.sort$0(t2); t2 = _this._map$_hashCode = A.hashObjects(t2); t1 = t2; } return t1; }, $eq(_, other) { var t1, t2, t3, t4, key, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltMap)) return false; t1 = other._map$_map; t2 = _this._map$_map; if (t1._length !== t2._length) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t3 = _this.get$keys(_this), t4 = t3._map, t3 = A.LinkedHashMapKeyIterator$(t4, t4._modifications, A._instanceType(t3)._precomputed1); t3.moveNext$0();) { key = t3.__js_helper$_current; if (!J.$eq$(t1.$index(0, key), t2.$index(0, key))) return false; } return true; }, toString$0(_) { return A.MapBase_mapToString(this._map$_map); }, $index(_, key) { return this._map$_map.$index(0, key); }, containsKey$1(_, key) { return this._map$_map.containsKey$1(0, key); }, forEach$1(_, f) { this._map$_map.forEach$1(0, f); }, get$isEmpty(_) { return this._map$_map._length === 0; }, get$keys(_) { var t1 = this._map$_keys; if (t1 == null) { t1 = this._map$_map; t1 = this._map$_keys = new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); } return t1; }, get$length(_) { return this._map$_map._length; }, map$1(_, f) { var t1 = type$.dynamic, t2 = this._map$_map; return new A._BuiltMap(null, t2.map$2$1(t2, f, t1, t1), type$._BuiltMap_dynamic_dynamic); } }; A.BuiltMap_BuiltMap_closure.prototype = { call$1(k) { return J.$index$asx(this.map, k); }, $signature: 12 }; A.BuiltMap_BuiltMap$from_closure.prototype = { call$1(k) { return this.map.$index(0, k); }, $signature: 12 }; A.BuiltMap_hashCode_closure.prototype = { call$1(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(this.$this._map$_map.$index(0, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature() { return this.$this.$ti._eval$1("int(1)"); } }; A._BuiltMap.prototype = { _BuiltMap$copyAndCheckTypes$2(keys, lookup, $K, $V) { var t1, t2, key, value; for (t1 = J.get$iterator$ax(keys), t2 = this._map$_map; t1.moveNext$0();) { key = t1.get$current(t1); if ($K._is(key)) { value = lookup.call$1(key); if ($V._is(value)) t2.$indexSet(0, key, value); else throw A.wrapException(A.ArgumentError$("map contained invalid value: " + A.S(value), null)); } else throw A.wrapException(A.ArgumentError$("map contained invalid key: " + A.S(key), null)); } } }; A.MapBuilder.prototype = { build$0(_) { var _this = this, t1 = _this._mapOwner; if (t1 == null) { t1 = _this.$ti; t1 = _this._mapOwner = new A._BuiltMap(_this._mapFactory, A._lateReadCheck(_this.__MapBuilder__map, "_map"), t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BuiltMap<1,2>")); } return t1; }, replace$1(_, map) { var replacement, _this = this; if (_this.$ti._eval$1("_BuiltMap<1,2>")._is(map) && true) { _this._mapOwner = map; _this.__MapBuilder__map = map._map$_map; } else if (map instanceof A.BuiltMap) { replacement = _this._createMap$0(); map._map$_map.forEach$1(0, new A.MapBuilder_replace_closure(_this, replacement)); _this._mapOwner = null; _this.__MapBuilder__map = replacement; } else if (type$.Map_dynamic_dynamic._is(map)) { replacement = _this._createMap$0(); J.forEach$1$ax(map, new A.MapBuilder_replace_closure0(_this, replacement)); _this._mapOwner = null; _this.__MapBuilder__map = replacement; } else throw A.wrapException(A.ArgumentError$("expected Map or BuiltMap, got " + J.get$runtimeType$(map).toString$0(0), null)); }, $index(_, key) { return J.$index$asx(A._lateReadCheck(this.__MapBuilder__map, "_map"), key); }, $indexSet(_, key, value) { this._checkKey$1(key); this._checkValue$1(value); this.get$_safeMap().$indexSet(0, key, value); }, get$length(_) { return A._lateReadCheck(this.__MapBuilder__map, "_map")._length; }, get$isEmpty(_) { return A._lateReadCheck(this.__MapBuilder__map, "_map")._length === 0; }, addAll$1(_, other) { this._checkKeys$1(new A.LinkedHashMapKeyIterable(other, A._instanceType(other)._eval$1("LinkedHashMapKeyIterable<1>"))); this._checkValues$1(other.get$values(other)); this.get$_safeMap().addAll$1(0, other); }, get$_safeMap() { var t1, _this = this; if (_this._mapOwner != null) { t1 = _this._createMap$0(); t1.addAll$1(0, A._lateReadCheck(_this.__MapBuilder__map, "_map")); _this.__MapBuilder__map = t1; _this._mapOwner = null; } return A._lateReadCheck(_this.__MapBuilder__map, "_map"); }, _createMap$0() { var t1 = this.$ti; return A.LinkedHashMap_LinkedHashMap$_empty(t1._precomputed1, t1._rest[1]); }, _checkKey$1(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw A.wrapException(A.ArgumentError$("null key", null)); }, _checkKeys$1(keys) { var t1; if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; for (t1 = keys._map, t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, keys.$ti._precomputed1); t1.moveNext$0();) this._checkKey$1(t1.__js_helper$_current); }, _checkValue$1(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw A.wrapException(A.ArgumentError$("null value", null)); }, _checkValues$1(values) { var t1; if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; for (t1 = A._instanceType(values), t1 = new A.MappedIterator(J.get$iterator$ax(values.__internal$_iterable), values._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); t1.moveNext$0();) this._checkValue$1(t1.__internal$_current); } }; A.MapBuilder_replace_closure.prototype = { call$2(key, value) { var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, $signature: 123 }; A.MapBuilder_replace_closure0.prototype = { call$2(key, value) { var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, $signature: 123 }; A.BuiltSet.prototype = { get$hashCode(_) { var t2, _this = this, t1 = _this._set$_hashCode; if (t1 == null) { t1 = _this._set$_set; t2 = A._instanceType(t1)._eval$1("EfficientLengthMappedIterable"); t2 = A.List_List$of(new A.EfficientLengthMappedIterable(t1, new A.BuiltSet_hashCode_closure(_this), t2), false, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$0(t2); t2 = _this._set$_hashCode = A.hashObjects(t2); t1 = t2; } return t1; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltSet)) return false; t1 = _this._set$_set; if (other._set$_set._collection$_length !== t1._collection$_length) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; return t1.containsAll$1(other); }, toString$0(_) { return A.IterableBase_iterableToFullString(this._set$_set, "{", "}"); }, get$length(_) { return this._set$_set._collection$_length; }, get$iterator(_) { var t1 = this._set$_set; return A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); }, map$1$1(_, f, $T) { var t1 = this._set$_set; return new A.EfficientLengthMappedIterable(t1, f, A._instanceType(t1)._eval$1("@")._bind$1($T)._eval$1("EfficientLengthMappedIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1(_, test) { var t1 = this._set$_set; return new A.WhereIterable(t1, test, A._instanceType(t1)._eval$1("WhereIterable")); }, contains$1(_, element) { return this._set$_set.contains$1(0, element); }, forEach$1(_, f) { return this._set$_set.forEach$1(0, f); }, toSet$0(_) { return new A.CopyOnWriteSet(this._setFactory, this._set$_set, this.$ti._eval$1("CopyOnWriteSet<1>")); }, toList$1$growable(_, growable) { var t1 = this._set$_set; return A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, get$isEmpty(_) { return this._set$_set._collection$_length === 0; }, get$isNotEmpty(_) { return this._set$_set._collection$_length !== 0; }, take$1(_, n) { var t1 = this._set$_set; return A.TakeIterable_TakeIterable(t1, n, A._instanceType(t1)._eval$1("SetMixin.E")); }, skip$1(_, n) { var t1 = this._set$_set; return A.SkipIterable_SkipIterable(t1, n, A._instanceType(t1)._eval$1("SetMixin.E")); }, get$first(_) { var t1 = this._set$_set; return t1.get$first(t1); }, get$last(_) { var t1 = this._set$_set; return t1.get$last(t1); }, elementAt$1(_, index) { return this._set$_set.elementAt$1(0, index); }, $isIterable: 1 }; A.BuiltSet_hashCode_closure.prototype = { call$1(e) { return J.get$hashCode$(e); }, $signature() { return this.$this.$ti._eval$1("int(1)"); } }; A._BuiltSet.prototype = { _set$_maybeCheckForNull$0() { if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (var t1 = this._set$_set, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) if (t1._collection$_current == null) throw A.wrapException(A.ArgumentError$("iterable contained invalid element: null", null)); } }; A.SetBuilder.prototype = { build$0(_) { var _this = this, t1 = _this._setOwner; return t1 == null ? _this._setOwner = new A._BuiltSet(_this._setFactory, A._lateReadCheck(_this.__SetBuilder__set, "_set"), _this.$ti._eval$1("_BuiltSet<1>")) : t1; }, replace$1(_, iterable) { var t1, t2, element, _this = this, set = _this._createSet$0(); for (t1 = J.get$iterator$ax(iterable), t2 = _this.$ti._precomputed1; t1.moveNext$0();) { element = t1.get$current(t1); if (t2._is(element)) set.add$1(0, element); else throw A.wrapException(A.ArgumentError$("iterable contained invalid element: " + A.S(element), null)); } _this._setOwner = null; _this.__SetBuilder__set = set; }, get$length(_) { return A._lateReadCheck(this.__SetBuilder__set, "_set")._collection$_length; }, get$isEmpty(_) { return A._lateReadCheck(this.__SetBuilder__set, "_set")._collection$_length === 0; }, map$1(_, f) { var _this = this, result = _this._createSet$0(), t1 = A._lateReadCheck(_this.__SetBuilder__set, "_set"); result.addAll$1(0, new A.EfficientLengthMappedIterable(t1, f, A._instanceType(t1)._eval$1("@")._bind$1(_this.$ti._precomputed1)._eval$1("EfficientLengthMappedIterable<1,2>"))); _this._set$_maybeCheckElements$1(result); _this._setOwner = null; _this.__SetBuilder__set = result; }, get$_safeSet() { var t1, _this = this; if (_this._setOwner != null) { t1 = _this._createSet$0(); t1.addAll$1(0, A._lateReadCheck(_this.__SetBuilder__set, "_set")); _this.__SetBuilder__set = t1; _this._setOwner = null; } return A._lateReadCheck(_this.__SetBuilder__set, "_set"); }, _createSet$0() { return A.LinkedHashSet_LinkedHashSet$_empty(this.$ti._precomputed1); }, _set$_maybeCheckElements$1(elements) { var t1; if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (t1 = A._LinkedHashSetIterator$(elements, elements._collection$_modifications, A._instanceType(elements)._precomputed1); t1.moveNext$0();) if (t1._collection$_current == null) A.throwExpression(A.ArgumentError$("null element", null)); } }; A.BuiltSetMultimap.prototype = { get$hashCode(_) { var t2, _this = this, t1 = _this._set_multimap$_hashCode; if (t1 == null) { t1 = _this._set_multimap$_map; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t2 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t1, t2), new A.BuiltSetMultimap_hashCode_closure(_this), t2._eval$1("Iterable.E"), type$.int); t2 = A.List_List$of(t2, false, A._instanceType(t2)._eval$1("Iterable.E")); B.JSArray_methods.sort$0(t2); t2 = _this._set_multimap$_hashCode = A.hashObjects(t2); t1 = t2; } return t1; }, $eq(_, other) { var t1, t2, t3, t4, t5, key, result, t6, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltSetMultimap)) return false; t1 = other._set_multimap$_map; t2 = _this._set_multimap$_map; if (t1._length !== t2._length) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t3 = _this.get$keys(_this), t4 = t3._map, t3 = A.LinkedHashMapKeyIterator$(t4, t4._modifications, A._instanceType(t3)._precomputed1), t4 = other._emptySet, t5 = _this._emptySet; t3.moveNext$0();) { key = t3.__js_helper$_current; result = t1.$index(0, key); t6 = result == null ? t4 : result; result = t2.$index(0, key); if (!t6.$eq(0, result == null ? t5 : result)) return false; } return true; }, toString$0(_) { return A.MapBase_mapToString(this._set_multimap$_map); }, $index(_, key) { var result = this._set_multimap$_map.$index(0, key); return result == null ? this._emptySet : result; }, containsKey$1(_, key) { return this._set_multimap$_map.containsKey$1(0, key); }, forEach$1(_, f) { this._set_multimap$_map.forEach$1(0, new A.BuiltSetMultimap_forEach_closure(this, f)); }, get$isEmpty(_) { return this._set_multimap$_map._length === 0; }, get$keys(_) { var t1 = this._set_multimap$_keys; if (t1 == null) { t1 = this._set_multimap$_map; t1 = this._set_multimap$_keys = new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); } return t1; }, get$length(_) { return this._set_multimap$_map._length; } }; A.BuiltSetMultimap_hashCode_closure.prototype = { call$1(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(this.$this._set_multimap$_map.$index(0, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature() { return this.$this.$ti._eval$1("int(1)"); } }; A.BuiltSetMultimap_forEach_closure.prototype = { call$2(key, values) { values._set$_set.forEach$1(0, new A.BuiltSetMultimap_forEach__closure(this.$this, this.f, key)); }, $signature() { return this.$this.$ti._eval$1("~(1,BuiltSet<2>)"); } }; A.BuiltSetMultimap_forEach__closure.prototype = { call$1(value) { this.f.call$2(this.key, value); }, $signature() { return this.$this.$ti._eval$1("~(2)"); } }; A._BuiltSetMultimap.prototype = {}; A.SetMultimapBuilder.prototype = { build$0(_) { var key, t2, builtSet, t3, _this = this, _s11_ = "_builderMap", _s9_ = "_builtMap", t1 = _this._builtMapOwner; if (t1 == null) { for (t1 = A._lateReadCheck(_this.__SetMultimapBuilder__builderMap, _s11_), t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A.instanceType(t1)._precomputed1); t1.moveNext$0();) { key = t1.__js_helper$_current; t2 = J.$index$asx(A._lateReadCheck(_this.__SetMultimapBuilder__builderMap, _s11_), key); builtSet = t2._setOwner; if (builtSet == null) builtSet = t2._setOwner = new A._BuiltSet(t2._setFactory, A._lateReadCheck(t2.__SetBuilder__set, "_set"), A.instanceType(t2)._eval$1("_BuiltSet<1>")); t2 = builtSet._set$_set._collection$_length; t3 = _this.__SetMultimapBuilder__builtMap; if (t2 === 0) J.remove$1$ax(A._lateReadCheck(t3, _s9_), key); else J.$indexSet$ax(A._lateReadCheck(t3, _s9_), key, builtSet); } t1 = _this.$ti; t2 = t1._rest[1]; t2 = _this._builtMapOwner = new A._BuiltSetMultimap(A._lateReadCheck(_this.__SetMultimapBuilder__builtMap, _s9_), A.BuiltSet_BuiltSet$from(B.List_empty, t2), t1._eval$1("@<1>")._bind$1(t2)._eval$1("_BuiltSetMultimap<1,2>")); t1 = t2; } return t1; }, replace$1(_, multimap) { this._setWithCopyAndCheck$2(multimap.get$keys(multimap), new A.SetMultimapBuilder_replace_closure(multimap)); }, _getValuesBuilder$1(key) { var builtValues, t1, _this = this, _s11_ = "_builderMap", result = J.$index$asx(A._lateReadCheck(_this.__SetMultimapBuilder__builderMap, _s11_), key); if (result == null) { builtValues = J.$index$asx(A._lateReadCheck(_this.__SetMultimapBuilder__builtMap, "_builtMap"), key); if (builtValues == null) result = A.SetBuilder_SetBuilder(_this.$ti._rest[1]); else { t1 = builtValues.$ti; t1._eval$1("_BuiltSet<1>")._as(builtValues); result = new A.SetBuilder(builtValues._setFactory, builtValues._set$_set, builtValues, t1._eval$1("SetBuilder<1>")); } J.$indexSet$ax(A._lateReadCheck(_this.__SetMultimapBuilder__builderMap, _s11_), key, result); } return result; }, _setWithCopyAndCheck$2(keys, lookup) { var t1, t2, t3, t4, key, t5, value, t6, _this = this; _this._builtMapOwner = null; t1 = _this.$ti; t2 = t1._precomputed1; t3 = t1._eval$1("BuiltSet<2>"); _this.__SetMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); _this.__SetMultimapBuilder__builderMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t1._eval$1("SetBuilder<2>")); for (t4 = J.get$iterator$ax(keys), t1 = t1._rest[1]; t4.moveNext$0();) { key = t4.get$current(t4); if (t2._is(key)) for (t5 = J.get$iterator$ax(lookup.call$1(key)); t5.moveNext$0();) { value = t5.get$current(t5); if (t1._is(value)) { if (_this._builtMapOwner != null) { _this.__SetMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$from(A._lateReadCheck(_this.__SetMultimapBuilder__builtMap, "_builtMap"), t2, t3); _this._builtMapOwner = null; } _this._set_multimap$_checkKey$1(key); _this._set_multimap$_checkValue$1(value); t6 = _this._getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t6.$ti._precomputed1._is(null)) if (value == null) A.throwExpression(A.ArgumentError$("null element", null)); t6.get$_safeSet().add$1(0, value); } else throw A.wrapException(A.ArgumentError$("map contained invalid value: " + A.S(value) + ", for key " + A.S(key), null)); } else throw A.wrapException(A.ArgumentError$("map contained invalid key: " + A.S(key), null)); } }, _set_multimap$_checkKey$1(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw A.wrapException(A.ArgumentError$("invalid key: " + A.S(key), null)); }, _set_multimap$_checkValue$1(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw A.wrapException(A.ArgumentError$("invalid value: " + A.S(value), null)); } }; A.SetMultimapBuilder_replace_closure.prototype = { call$1(k) { return this.multimap.$index(0, k); }, $signature: 12 }; A.EnumClass.prototype = { toString$0(_) { return this.name; }, get$name(receiver) { return this.name; } }; A.newBuiltValueToStringHelper_closure.prototype = { call$1(className) { var t1 = new A.StringBuffer(""), t2 = A.S(className); t1._contents = t2; t1._contents = t2 + " {\n"; $._indentingBuiltValueToStringHelperIndent = $._indentingBuiltValueToStringHelperIndent + 2; return new A.IndentingBuiltValueToStringHelper(t1); }, $signature: 2899 }; A.IndentingBuiltValueToStringHelper.prototype = { add$2(_, field, value) { var t1, t2; if (value != null) { t1 = this._result; t1.toString; t2 = t1._contents += B.JSString_methods.$mul(" ", $._indentingBuiltValueToStringHelperIndent); t2 += field; t1._contents = t2; t1._contents = t2 + "="; t2 = t1._contents += A.S(value); t1._contents = t2 + ",\n"; } }, toString$0(_) { var t2, stringResult, t1 = $._indentingBuiltValueToStringHelperIndent - 2; $._indentingBuiltValueToStringHelperIndent = t1; t2 = this._result; t2.toString; t1 = t2._contents += B.JSString_methods.$mul(" ", t1); t2._contents = t1 + "}"; stringResult = J.toString$0$(this._result); this._result = null; return stringResult; } }; A.BuiltValueNullFieldError.prototype = { toString$0(_) { var t1 = this.field; return 'Tried to construct class "' + this.type + '" with null field "' + t1 + '". This is forbidden; to allow it, mark "' + t1 + '" with @nullable.'; } }; A.BuiltValueNestedFieldError.prototype = { toString$0(_) { return 'Tried to build class "' + this.type + '" but nested builder for field "' + A.S(this.field) + '" threw: ' + A.S(this.error); } }; A.JsonObject.prototype = { toString$0(_) { return J.toString$0$(this.get$value(this)); } }; A.BoolJsonObject.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.BoolJsonObject)) return false; return this.value === other.value; }, get$hashCode(_) { return B.JSBool_methods.get$hashCode(this.value); }, get$value(receiver) { return this.value; } }; A.ListJsonObject.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.ListJsonObject)) return false; return B.DeepCollectionEquality_false.equals$2(this.value, other.value); }, get$hashCode(_) { return B.DeepCollectionEquality_false.hash$1(0, this.value); }, get$value(receiver) { return this.value; } }; A.MapJsonObject.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.MapJsonObject)) return false; return B.DeepCollectionEquality_false.equals$2(this.value, other.value); }, get$hashCode(_) { return B.DeepCollectionEquality_false.hash$1(0, this.value); }, get$value(receiver) { return this.value; } }; A.NumJsonObject.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.NumJsonObject)) return false; return this.value === other.value; }, get$hashCode(_) { return B.JSNumber_methods.get$hashCode(this.value); }, get$value(receiver) { return this.value; } }; A.StringJsonObject.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.StringJsonObject)) return false; return this.value === other.value; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.value); }, get$value(receiver) { return this.value; } }; A.Serializers_Serializers_closure.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.Object); }, $signature: 2898 }; A.Serializers_Serializers_closure0.prototype = { call$0() { var t1 = type$.Object; return A.ListMultimapBuilder_ListMultimapBuilder(t1, t1); }, $signature: 2894 }; A.Serializers_Serializers_closure1.prototype = { call$0() { var t1 = type$.Object; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 2893 }; A.Serializers_Serializers_closure2.prototype = { call$0() { return A.SetBuilder_SetBuilder(type$.Object); }, $signature: 2887 }; A.Serializers_Serializers_closure3.prototype = { call$0() { var t1 = type$.Object; return A.SetMultimapBuilder_SetMultimapBuilder(t1, t1); }, $signature: 2886 }; A.FullType.prototype = { $eq(_, other) { var t1, t2, t3, i, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.FullType)) return false; if (_this.root != other.root) return false; if (_this.nullable !== other.nullable) return false; t1 = _this.parameters; t2 = t1.length; t3 = other.parameters; if (t2 !== t3.length) return false; for (i = 0; i !== t2; ++i) if (!t1[i].$eq(0, t3[i])) return false; return true; }, get$hashCode(_) { var t1 = A.hashObjects(this.parameters); t1 = A._finish(A._combine(A._combine(0, J.get$hashCode$(this.root)), B.JSInt_methods.get$hashCode(t1))); return t1 ^ (this.nullable ? 1768878041 : 0); }, toString$0(_) { var t2, t1 = this.root; if (t1 == null) t1 = "unspecified"; else { t2 = this.parameters; t1 = t2.length === 0 ? A.FullType__getRawName(t1) : A.FullType__getRawName(t1) + "<" + B.JSArray_methods.join$1(t2, ", ") + ">"; t1 += this.nullable ? "?" : ""; } return t1; } }; A.DeserializationError.prototype = { toString$0(_) { return "Deserializing '" + this.json + "' to '" + this.type.toString$0(0) + "' failed due to: " + this.error.toString$0(0); } }; A.BigIntSerializer.prototype = { serialize$3$specifiedType(serializers, bigInt, specifiedType) { return bigInt.toString$0(0); }, serialize$2(serializers, bigInt) { return this.serialize$3$specifiedType(serializers, bigInt, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var result; A._asStringS(serialized); result = A._BigIntImpl__tryParse(serialized, null); if (result == null) A.throwExpression(A.FormatException$("Could not parse BigInt", serialized, null)); return result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "BigInt"; } }; A.BoolSerializer.prototype = { serialize$3$specifiedType(serializers, boolean, specifiedType) { return boolean; }, serialize$2(serializers, boolean) { return this.serialize$3$specifiedType(serializers, boolean, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._asBoolS(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "bool"; } }; A.BuiltJsonSerializers.prototype = { deserializeWith$1$2(serializer, serialized, $T) { return $T._eval$1("0?")._as(this.deserialize$2$specifiedType(serialized, new A.FullType(J.get$first$ax(serializer.get$types(serializer)), B.List_empty10, false))); }, serializeWith$1$2(serializer, object) { return this.serialize$2$specifiedType(object, new A.FullType(J.get$first$ax(serializer.get$types(serializer)), B.List_empty10, false)); }, serializeWith$2(serializer, object) { return this.serializeWith$1$2(serializer, object, type$.dynamic); }, serialize$2$specifiedType(object, specifiedType) { var t1, t2, t3, t4, result; for (t1 = this.serializerPlugins._list, t2 = A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>"), t3 = new J.ArrayIterator(t1, t1.length, t2), t4 = specifiedType.root; t3.moveNext$0();) { t3.__interceptors$_current.toString; if ($.$get$StandardJsonPlugin__unsupportedTypes()._set$_set.contains$1(0, t4)) A.throwExpression(A.ArgumentError$("Standard JSON cannot serialize type " + A.S(t4) + ".", null)); } result = this._built_json_serializers$_serialize$2(object, specifiedType); for (t1 = new J.ArrayIterator(t1, t1.length, t2); t1.moveNext$0();) result = t1.__interceptors$_current.afterSerialize$2(result, specifiedType); return result; }, serialize$1(object) { return this.serialize$2$specifiedType(object, B.FullType_null_List_empty_false); }, _built_json_serializers$_serialize$2(object, specifiedType) { var serializer, result, _this = this, _s62_ = string$.serial, t1 = specifiedType.root; if (t1 == null) { t1 = J.getInterceptor$(object); serializer = _this.serializerForType$1(t1.get$runtimeType(object)); if (serializer == null) throw A.wrapException(A.StateError$("No serializer for '" + t1.get$runtimeType(object).toString$0(0) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer)) { result = [serializer.get$wireName()]; B.JSArray_methods.addAll$1(result, serializer.serialize$2(_this, object)); return result; } else if (type$.PrimitiveSerializer_dynamic._is(serializer)) return object == null ? [serializer.get$wireName(), null] : A._setArrayType([serializer.get$wireName(), serializer.serialize$2(_this, object)], type$.JSArray_Object); else throw A.wrapException(A.StateError$(_s62_)); } else { serializer = _this.serializerForType$1(t1); if (serializer == null) return _this.serialize$1(object); if (type$.StructuredSerializer_dynamic._is(serializer)) return object == null ? null : J.toList$0$ax(serializer.serialize$3$specifiedType(_this, object, specifiedType)); else if (type$.PrimitiveSerializer_dynamic._is(serializer)) return object == null ? null : serializer.serialize$3$specifiedType(_this, object, specifiedType); else throw A.wrapException(A.StateError$(_s62_)); } }, deserialize$2$specifiedType(object, specifiedType) { var t1, t2, t3, transformedObject, result; for (t1 = this.serializerPlugins._list, t2 = A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>"), t3 = new J.ArrayIterator(t1, t1.length, t2), transformedObject = object; t3.moveNext$0();) transformedObject = t3.__interceptors$_current.beforeDeserialize$2(transformedObject, specifiedType); result = this._deserialize$3(object, transformedObject, specifiedType); for (t1 = new J.ArrayIterator(t1, t1.length, t2); t1.moveNext$0();) t1.__interceptors$_current.toString; return result; }, deserialize$1(object) { return this.deserialize$2$specifiedType(object, B.FullType_null_List_empty_false); }, _deserialize$3(objectBeforePlugins, object, specifiedType) { var serializer, error, primitive, error0, serializer0, error1, error2, wireName, exception, _this = this, _s19_ = "No serializer for '", _s62_ = string$.serial, t1 = specifiedType.root; if (t1 == null) { type$.List_nullable_Object._as(object); t1 = J.getInterceptor$ax(object); wireName = A._asStringS(t1.get$first(object)); serializer = _this._wireNameToSerializer._map$_map.$index(0, wireName); if (serializer == null) throw A.wrapException(A.StateError$(_s19_ + A.S(wireName) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer)) try { t1 = serializer.deserialize$2(_this, t1.sublist$1(object, 1)); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (type$.Error._is(t1)) { error = t1; throw A.wrapException(A.DeserializationError_DeserializationError(object, specifiedType, error)); } else throw exception; } else if (type$.PrimitiveSerializer_dynamic._is(serializer)) try { primitive = t1.$index(object, 1); t1 = primitive == null ? null : serializer.deserialize$2(_this, primitive); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (type$.Error._is(t1)) { error0 = t1; throw A.wrapException(A.DeserializationError_DeserializationError(object, specifiedType, error0)); } else throw exception; } else throw A.wrapException(A.StateError$(_s62_)); } else { serializer0 = _this.serializerForType$1(t1); if (serializer0 == null) if (type$.List_dynamic._is(object) && typeof J.get$first$ax(object) == "string") return _this.deserialize$1(objectBeforePlugins); else throw A.wrapException(A.StateError$(_s19_ + t1.toString$0(0) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer0)) try { t1 = object == null ? null : serializer0.deserialize$3$specifiedType(_this, type$.Iterable_nullable_Object._as(object), specifiedType); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (type$.Error._is(t1)) { error1 = t1; throw A.wrapException(A.DeserializationError_DeserializationError(object, specifiedType, error1)); } else throw exception; } else if (type$.PrimitiveSerializer_dynamic._is(serializer0)) try { t1 = object == null ? null : serializer0.deserialize$3$specifiedType(_this, object, specifiedType); return t1; } catch (exception) { t1 = A.unwrapException(exception); if (type$.Error._is(t1)) { error2 = t1; throw A.wrapException(A.DeserializationError_DeserializationError(object, specifiedType, error2)); } else throw exception; } else throw A.wrapException(A.StateError$(_s62_)); } }, serializerForType$1(type) { var t1 = this._typeToSerializer._map$_map.$index(0, type); if (t1 == null) { t1 = A._getRawName(type); t1 = this._typeNameToSerializer._map$_map.$index(0, t1); } return t1; }, newBuilder$1(fullType) { var builderFactory = this.builderFactories._map$_map.$index(0, fullType); if (builderFactory == null) { this._throwMissingBuilderFactory$1(fullType); A.ReachabilityError$(string$.x60null_t); } return builderFactory.call$0(); }, expectBuilder$1(fullType) { if (!this.builderFactories._map$_map.containsKey$1(0, fullType)) { this._throwMissingBuilderFactory$1(fullType); A.ReachabilityError$(string$.x60null_t); } }, _throwMissingBuilderFactory$1(fullType) { throw A.wrapException(A.StateError$("No builder factory for " + fullType.toString$0(0) + ". Fix by adding one, see SerializersBuilder.addBuilderFactory.")); }, toBuilder$0() { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, t1 = _this._typeToSerializer; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t3 = _this._wireNameToSerializer; t3.toString; t4 = t3.$ti; t4._eval$1("_BuiltMap<1,2>")._as(t3); t5 = _this._typeNameToSerializer; t5.toString; t6 = t5.$ti; t6._eval$1("_BuiltMap<1,2>")._as(t5); t7 = _this.builderFactories; t7.toString; t8 = t7.$ti; t8._eval$1("_BuiltMap<1,2>")._as(t7); t9 = _this.serializerPlugins; t9.toString; return new A.BuiltJsonSerializersBuilder(new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t3._mapFactory, t3._map$_map, t3, t4._eval$1("@<1>")._bind$1(t4._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t5._mapFactory, t5._map$_map, t5, t6._eval$1("@<1>")._bind$1(t6._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t7._mapFactory, t7._map$_map, t7, t8._eval$1("@<1>")._bind$1(t8._rest[1])._eval$1("MapBuilder<1,2>")), A.ListBuilder_ListBuilder(t9, t9.$ti._precomputed1)); } }; A.BuiltJsonSerializersBuilder.prototype = { add$1(_, serializer) { var t1, t2, t3, t4, $name, genericsStart; if (!type$.StructuredSerializer_dynamic._is(serializer) && !type$.PrimitiveSerializer_dynamic._is(serializer)) throw A.wrapException(A.ArgumentError$(string$.serial, null)); this._wireNameToSerializer.$indexSet(0, serializer.get$wireName(), serializer); for (t1 = J.get$iterator$ax(serializer.get$types(serializer)), t2 = this._typeToSerializer, t3 = this._typeNameToSerializer; t1.moveNext$0();) { t4 = t1.get$current(t1); t2._checkKey$1(t4); t2._checkValue$1(serializer); t2.get$_safeMap().$indexSet(0, t4, serializer); $name = J.toString$0$(t4); genericsStart = J.indexOf$1$asx($name, "<"); t4 = genericsStart === -1 ? $name : B.JSString_methods.substring$2($name, 0, genericsStart); t3._checkKey$1(t4); t3._checkValue$1(serializer); t3.get$_safeMap().$indexSet(0, t4, serializer); } }, addBuilderFactory$2(types, $function) { var t2, t3, t1 = this._builderFactories; t1.$indexSet(0, types, $function); t2 = types.root; t3 = types.parameters; t1.$indexSet(0, !types.nullable ? new A.FullType(t2, t3, true) : new A.FullType(t2, t3, false), $function); }, build$0(_) { var _this = this; return new A.BuiltJsonSerializers(_this._typeToSerializer.build$0(0), _this._wireNameToSerializer.build$0(0), _this._typeNameToSerializer.build$0(0), _this._builderFactories.build$0(0), _this._plugins.build$0(0)); } }; A.BuiltListMultimapSerializer.prototype = { serialize$3$specifiedType(serializers, builtListMultimap, specifiedType) { var t1, t2, keyType, valueType, result, t3, key, result0, t4, t5; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? B.FullType_null_List_empty_false : t1[0]; valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = builtListMultimap.get$keys(builtListMultimap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = builtListMultimap._list_multimap$_map, t3 = builtListMultimap._emptyList; t1.moveNext$0();) { key = t1.__js_helper$_current; result.push(serializers.serialize$2$specifiedType(key, keyType)); result0 = t2.$index(0, key); t4 = (result0 == null ? t3 : result0)._list; t5 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,Object?>"); result.push(A.List_List$of(new A.MappedListIterable(t4, new A.BuiltListMultimapSerializer_serialize_closure(serializers, valueType), t5), true, t5._eval$1("ListIterable.E"))); } return result; }, serialize$2(serializers, builtListMultimap) { return this.serialize$3$specifiedType(serializers, builtListMultimap, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var result, t3, i, key, values, t4, value, t5, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? B.FullType_null_List_empty_false : t1[0], valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = A.ListMultimapBuilder_ListMultimapBuilder(t1, t1); } else result = type$.ListMultimapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (B.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw A.wrapException(A.ArgumentError$("odd length", null)); for (t2 = type$.Iterable_nullable_Object, t3 = type$.nullable_Object, i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); values = J.map$1$1$ax(t2._as(t1.elementAt$1(serialized, i + 1)), new A.BuiltListMultimapSerializer_deserialize_closure(serializers, valueType), t3); for (t4 = values.get$iterator(values); t4.moveNext$0();) { value = t4.get$current(t4); if (result._list_multimap$_builtMapOwner != null) { t5 = A._instanceType(result); result.__ListMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$from(A._lateReadCheck(result.__ListMultimapBuilder__builtMap, "_builtMap"), t5._precomputed1, t5._eval$1("BuiltList<2>")); result._list_multimap$_builtMapOwner = null; } result._list_multimap$_checkKey$1(key); result._list_multimap$_checkValue$1(value); t5 = result._list_multimap$_getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t5.$ti._precomputed1._is(null)) if (value == null) A.throwExpression(A.ArgumentError$("null element", null)); if (t5._listOwner != null) { t5.__ListBuilder__list = A.List_List$from(A._lateReadCheck(t5.__ListBuilder__list, "_list"), true, t5.$ti._precomputed1); t5._listOwner = null; } J.add$1$ax(A._lateReadCheck(t5.__ListBuilder__list, "_list"), value); } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "listMultimap"; } }; A.BuiltListMultimapSerializer_serialize_closure.prototype = { call$1(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, $signature: 176 }; A.BuiltListMultimapSerializer_deserialize_closure.prototype = { call$1(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, $signature: 506 }; A.BuiltListSerializer.prototype = { serialize$3$specifiedType(serializers, builtList, specifiedType) { var t1, elementType; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; elementType = t1.length === 0 ? B.FullType_null_List_empty_false : t1[0]; t1 = builtList._list; return new A.MappedListIterable(t1, new A.BuiltListSerializer_serialize_closure(serializers, elementType), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Object?>")); }, serialize$2(serializers, builtList) { return this.serialize$3$specifiedType(serializers, builtList, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, elementType = t1.length === 0 ? B.FullType_null_List_empty_false : t1[0], result = isUnderspecified ? A.ListBuilder_ListBuilder(B.List_empty, type$.Object) : type$.ListBuilder_dynamic._as(serializers.newBuilder$1(specifiedType)); result.replace$1(0, J.map$1$1$ax(serialized, new A.BuiltListSerializer_deserialize_closure(serializers, elementType), type$.dynamic)); return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "list"; } }; A.BuiltListSerializer_serialize_closure.prototype = { call$1(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, $signature: 176 }; A.BuiltListSerializer_deserialize_closure.prototype = { call$1(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, $signature: 176 }; A.BuiltMapSerializer.prototype = { serialize$3$specifiedType(serializers, builtMap, specifiedType) { var t1, t2, keyType, valueType, result, key; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? B.FullType_null_List_empty_false : t1[0]; valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = builtMap.get$keys(builtMap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = builtMap._map$_map; t1.moveNext$0();) { key = t1.__js_helper$_current; result.push(serializers.serialize$2$specifiedType(key, keyType)); result.push(serializers.serialize$2$specifiedType(t2.$index(0, key), valueType)); } return result; }, serialize$2(serializers, builtMap) { return this.serialize$3$specifiedType(serializers, builtMap, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var result, i, key, value, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? B.FullType_null_List_empty_false : t1[0], valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = A.MapBuilder_MapBuilder(t1, t1); } else result = type$.MapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (B.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw A.wrapException(A.ArgumentError$("odd length", null)); for (i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); value = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i + 1), valueType); result._checkKey$1(key); result._checkValue$1(value); result.get$_safeMap().$indexSet(0, key, value); } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "map"; } }; A.BuiltSetMultimapSerializer.prototype = { serialize$3$specifiedType(serializers, builtSetMultimap, specifiedType) { var t1, t2, keyType, valueType, result, t3, key, result0, t4, t5; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? B.FullType_null_List_empty_false : t1[0]; valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = builtSetMultimap.get$keys(builtSetMultimap), t2 = t1._map, t1 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t1)._precomputed1), t2 = builtSetMultimap._set_multimap$_map, t3 = builtSetMultimap._emptySet; t1.moveNext$0();) { key = t1.__js_helper$_current; result.push(serializers.serialize$2$specifiedType(key, keyType)); result0 = t2.$index(0, key); t4 = (result0 == null ? t3 : result0)._set$_set; t5 = A._instanceType(t4)._eval$1("EfficientLengthMappedIterable"); result.push(A.List_List$of(new A.EfficientLengthMappedIterable(t4, new A.BuiltSetMultimapSerializer_serialize_closure(serializers, valueType), t5), true, t5._eval$1("Iterable.E"))); } return result; }, serialize$2(serializers, builtSetMultimap) { return this.serialize$3$specifiedType(serializers, builtSetMultimap, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var result, i, key, value, t3, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? B.FullType_null_List_empty_false : t1[0], valueType = t2 ? B.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = A.SetMultimapBuilder_SetMultimapBuilder(t1, t1); } else result = type$.SetMultimapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (B.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw A.wrapException(A.ArgumentError$("odd length", null)); for (i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); for (t2 = J.get$iterator$ax(J.map$1$ax(t1.elementAt$1(serialized, i + 1), new A.BuiltSetMultimapSerializer_deserialize_closure(serializers, valueType))); t2.moveNext$0();) { value = t2.get$current(t2); if (result._builtMapOwner != null) { t3 = A._instanceType(result); result.__SetMultimapBuilder__builtMap = A.LinkedHashMap_LinkedHashMap$from(A._lateReadCheck(result.__SetMultimapBuilder__builtMap, "_builtMap"), t3._precomputed1, t3._eval$1("BuiltSet<2>")); result._builtMapOwner = null; } result._set_multimap$_checkKey$1(key); result._set_multimap$_checkValue$1(value); t3 = result._getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t3.$ti._precomputed1._is(null)) if (value == null) A.throwExpression(A.ArgumentError$("null element", null)); t3.get$_safeSet().add$1(0, value); } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "setMultimap"; } }; A.BuiltSetMultimapSerializer_serialize_closure.prototype = { call$1(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, $signature: 176 }; A.BuiltSetMultimapSerializer_deserialize_closure.prototype = { call$1(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, $signature: 176 }; A.BuiltSetSerializer.prototype = { serialize$3$specifiedType(serializers, builtSet, specifiedType) { var t1, elementType; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; elementType = t1.length === 0 ? B.FullType_null_List_empty_false : t1[0]; t1 = builtSet._set$_set; return new A.EfficientLengthMappedIterable(t1, new A.BuiltSetSerializer_serialize_closure(serializers, elementType), A._instanceType(t1)._eval$1("EfficientLengthMappedIterable")); }, serialize$2(serializers, builtSet) { return this.serialize$3$specifiedType(serializers, builtSet, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, elementType = t1.length === 0 ? B.FullType_null_List_empty_false : t1[0], result = isUnderspecified ? A.SetBuilder_SetBuilder(type$.Object) : type$.SetBuilder_dynamic._as(serializers.newBuilder$1(specifiedType)); result.replace$1(0, J.map$1$1$ax(serialized, new A.BuiltSetSerializer_deserialize_closure(serializers, elementType), type$.dynamic)); return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "set"; } }; A.BuiltSetSerializer_serialize_closure.prototype = { call$1(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, $signature: 176 }; A.BuiltSetSerializer_deserialize_closure.prototype = { call$1(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, $signature: 176 }; A.DateTimeSerializer.prototype = { serialize$3$specifiedType(serializers, dateTime, specifiedType) { if (!dateTime.isUtc) throw A.wrapException(A.ArgumentError$value(dateTime, "dateTime", "Must be in utc for serialization.")); return 1000 * dateTime._value; }, serialize$2(serializers, dateTime) { return this.serialize$3$specifiedType(serializers, dateTime, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t2, t1 = B.JSNumber_methods.round$0(A._asIntS(serialized) / 1000); if (Math.abs(t1) <= 864e13) t2 = false; else t2 = true; if (t2) A.throwExpression(A.ArgumentError$("DateTime is outside valid range: " + t1, null)); A.checkNotNullable(true, "isUtc", type$.bool); return new A.DateTime(t1, true); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "DateTime"; } }; A.DoubleSerializer.prototype = { serialize$3$specifiedType(serializers, aDouble, specifiedType) { if (isNaN(aDouble)) return "NaN"; else if (aDouble == 1 / 0 || aDouble == -1 / 0) return B.JSNumber_methods.get$isNegative(aDouble) ? "-INF" : "INF"; else return aDouble; }, serialize$2(serializers, aDouble) { return this.serialize$3$specifiedType(serializers, aDouble, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1 = J.getInterceptor$(serialized); if (t1.$eq(serialized, "NaN")) return 0 / 0; else if (t1.$eq(serialized, "-INF")) return -1 / 0; else if (t1.$eq(serialized, "INF")) return 1 / 0; else return A._asNumS(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "double"; } }; A.DurationSerializer.prototype = { serialize$3$specifiedType(serializers, duration, specifiedType) { return duration._duration; }, serialize$2(serializers, duration) { return this.serialize$3$specifiedType(serializers, duration, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A.Duration$(0, 0, A._asIntS(serialized), 0, 0, 0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "Duration"; } }; A.Int64Serializer.prototype = { serialize$3$specifiedType(serializers, int64, specifiedType) { return int64._toRadixString$1(10); }, serialize$2(serializers, int64) { return this.serialize$3$specifiedType(serializers, int64, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A.Int64__parseRadix(A._asStringS(serialized), 10); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "Int64"; } }; A.IntSerializer.prototype = { serialize$3$specifiedType(serializers, integer, specifiedType) { return integer; }, serialize$2(serializers, integer) { return this.serialize$3$specifiedType(serializers, integer, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._asIntS(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "int"; } }; A.JsonObjectSerializer.prototype = { serialize$3$specifiedType(serializers, jsonObject, specifiedType) { return jsonObject.get$value(jsonObject); }, serialize$2(serializers, jsonObject) { return this.serialize$3$specifiedType(serializers, jsonObject, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A.JsonObject_JsonObject(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "JsonObject"; } }; A.NullSerializer.prototype = { serialize$3$specifiedType(serializers, value, specifiedType) { throw A.wrapException(A.UnimplementedError$(null)); }, serialize$2(serializers, value) { return this.serialize$3$specifiedType(serializers, value, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { throw A.wrapException(A.UnimplementedError$(null)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "Null"; } }; A.NumSerializer.prototype = { serialize$3$specifiedType(serializers, number, specifiedType) { if (isNaN(number)) return "NaN"; else if (number == 1 / 0 || number == -1 / 0) return B.JSNumber_methods.get$isNegative(number) ? "-INF" : "INF"; else return number; }, serialize$2(serializers, number) { return this.serialize$3$specifiedType(serializers, number, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1 = J.getInterceptor$(serialized); if (t1.$eq(serialized, "NaN")) return 0 / 0; else if (t1.$eq(serialized, "-INF")) return -1 / 0; else if (t1.$eq(serialized, "INF")) return 1 / 0; else return A._asNumS(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "num"; } }; A.RegExpSerializer.prototype = { serialize$3$specifiedType(serializers, value, specifiedType) { return value.pattern; }, serialize$2(serializers, value) { return this.serialize$3$specifiedType(serializers, value, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A.RegExp_RegExp(A._asStringS(serialized), true, false, false, false); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "RegExp"; } }; A.StringSerializer.prototype = { serialize$3$specifiedType(serializers, string, specifiedType) { return string; }, serialize$2(serializers, string) { return this.serialize$3$specifiedType(serializers, string, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._asStringS(serialized); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "String"; } }; A.UriSerializer.prototype = { serialize$3$specifiedType(serializers, uri, specifiedType) { return uri.toString$0(0); }, serialize$2(serializers, uri) { return this.serialize$3$specifiedType(serializers, uri, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A.Uri_parse(A._asStringS(serialized), 0, null); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types(receiver) { return this.types; }, get$wireName() { return "Uri"; } }; A.StandardJsonPlugin.prototype = { afterSerialize$2(object, specifiedType) { var t1; if (type$.List_dynamic._is(object)) { t1 = specifiedType.root; t1 = t1 !== B.Type_BuiltList_iTR && t1 !== B.Type_BuiltSet_fcN && t1 !== B.Type_JsonObject_gyf; } else t1 = false; if (t1) if (specifiedType.root == null) return this._toMapWithDiscriminator$1(object); else return this._standard_json_plugin$_toMap$2(object, this._needsEncodedKeys$1(specifiedType)); else return object; }, beforeDeserialize$2(object, specifiedType) { var t1; if (type$.Map_dynamic_dynamic._is(object) && specifiedType.root !== B.Type_JsonObject_gyf) { t1 = specifiedType.root; if (t1 == null) return this._toListUsingDiscriminator$1(object); else return this._toList$3$keepNulls(object, this._needsEncodedKeys$1(specifiedType), t1 === B.Type_BuiltMap_qd4); } else return object; }, _needsEncodedKeys$1(specifiedType) { return specifiedType.root === B.Type_BuiltMap_qd4 && specifiedType.parameters[0].root !== B.Type_String_k8F; }, _standard_json_plugin$_toMap$2(list, needsEncodedKeys) { var t1, i, t2, key, value, result = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.nullable_Object); for (t1 = J.getInterceptor$asx(list), i = 0; i !== B.JSInt_methods._tdivFast$1(t1.get$length(list), 2); ++i) { t2 = i * 2; key = t1.$index(list, t2); value = t1.$index(list, t2 + 1); result.$indexSet(0, needsEncodedKeys ? B.C_JsonCodec.encode$1(key) : A._asStringS(key), value); } return result; }, _toMapWithDiscriminator$1(list) { var needToEncodeKeys, i, result, t3, key, t1 = J.getInterceptor$asx(list), type = t1.$index(list, 0), t2 = J.getInterceptor$(type); if (t2.$eq(type, "list")) return A.LinkedHashMap_LinkedHashMap$_literal(["$", type, "", t1.sublist$1(list, 1)], type$.String, type$.Object); if (t1.get$length(list) === 2) return A.LinkedHashMap_LinkedHashMap$_literal(["$", type, "", t1.$index(list, 1)], type$.String, type$.nullable_Object); if (t2.$eq(type, "map")) { i = 0; while (true) { if (!(i !== B.JSInt_methods._tdivFast$1(t1.get$length(list) - 1, 2))) { needToEncodeKeys = false; break; } if (typeof t1.$index(list, i * 2 + 1) != "string") { type = "encoded_map"; needToEncodeKeys = true; break; } ++i; } } else needToEncodeKeys = false; result = A.LinkedHashMap_LinkedHashMap$_literal(["$", type], type$.String, type$.Object); for (i = 0; i !== B.JSInt_methods._tdivFast$1(t1.get$length(list) - 1, 2); ++i) { t2 = i * 2; t3 = t2 + 1; key = needToEncodeKeys ? B.C_JsonCodec.encode$1(t1.$index(list, t3)) : A._asStringS(t1.$index(list, t3)); result.$indexSet(0, key, t1.$index(list, t2 + 2)); } return result; }, _toList$3$keepNulls(map, hasEncodedKeys, keepNulls) { var nullValueCount, t2, result, t1 = {}; if (keepNulls) nullValueCount = 0; else { t2 = J.where$1$ax(J.get$values$x(map), new A.StandardJsonPlugin__toList_closure()); nullValueCount = t2.get$length(t2); } t2 = J.getInterceptor$asx(map); result = A.List_List$filled((t2.get$length(map) - nullValueCount) * 2, 0, false, type$.nullable_Object); t1.i = 0; t2.forEach$1(map, new A.StandardJsonPlugin__toList_closure0(t1, this, keepNulls, result, hasEncodedKeys)); return result; }, _toListUsingDiscriminator$1(map) { var t3, result, needToDecodeKeys, nullValueCount, t1 = {}, t2 = J.getInterceptor$asx(map), type = t2.$index(map, "$"); if (type == null) throw A.wrapException(A.ArgumentError$("Unknown type on deserialization. Need either specifiedType or discriminator field.", null)); t3 = J.getInterceptor$(type); if (t3.$eq(type, "list")) { t1 = [type]; B.JSArray_methods.addAll$1(t1, type$.Iterable_dynamic._as(t2.$index(map, ""))); return t1; } if (t2.containsKey$1(map, "")) { result = A.List_List$filled(2, 0, false, type$.nullable_Object); result[0] = type; result[1] = t2.$index(map, ""); return result; } needToDecodeKeys = t3.$eq(type, "encoded_map"); if (needToDecodeKeys) type = "map"; t3 = J.where$1$ax(t2.get$values(map), new A.StandardJsonPlugin__toListUsingDiscriminator_closure()); nullValueCount = t3.get$length(t3); result = A.List_List$filled((t2.get$length(map) - nullValueCount) * 2 - 1, 0, false, type$.Object); result[0] = type; t1.i = 1; t2.forEach$1(map, new A.StandardJsonPlugin__toListUsingDiscriminator_closure0(t1, this, result, needToDecodeKeys)); return result; }, $isSerializerPlugin: 1 }; A.StandardJsonPlugin__toList_closure.prototype = { call$1(value) { return value == null; }, $signature: 125 }; A.StandardJsonPlugin__toList_closure0.prototype = { call$2(key, value) { var t1, t2, t3, _this = this; if (!_this.keepNulls && value == null) return; t1 = _this.result; t2 = _this._box_0; t3 = t2.i; t1[t3] = _this.hasEncodedKeys ? B.C_JsonCodec.decode$1(0, A._asStringS(key)) : key; t3 = t2.i; t1[t3 + 1] = value; t2.i = t3 + 2; }, $signature: 123 }; A.StandardJsonPlugin__toListUsingDiscriminator_closure.prototype = { call$1(value) { return value == null; }, $signature: 125 }; A.StandardJsonPlugin__toListUsingDiscriminator_closure0.prototype = { call$2(key, value) { var t1, t2, t3; if (J.$eq$(key, "$")) return; if (value == null) return; t1 = this.result; t2 = this._box_0; t3 = t2.i; t1[t3] = this.needToDecodeKeys ? B.C_JsonCodec.decode$1(0, A._asStringS(key)) : key; t3 = t2.i; t1[t3 + 1] = value; t2.i = t3 + 2; }, $signature: 123 }; A.CachedNetworkImage.prototype = { build$1(_, context) { var _this = this, _null = null, octoPlaceholderBuilder = _this.get$_octoPlaceholderBuilder(), t1 = A.ResizeImage_resizeIfNeeded(_null, _null, _this._cached_image_widget$_image); return new A.OctoImage(t1, _null, octoPlaceholderBuilder, _null, _this.get$_octoErrorBuilder(), B.Duration_0, B.Duration_1000000, B.Cubic_xDo0, B.Duration_500000, B.Cubic_JUR0, _this.width, _this.height, _this.fit, B.Alignment_0_0, B.ImageRepeat_3, false, _null, _null, B.FilterQuality_1, false, _null); }, _octoPlaceholderBuilder$1(context) { return this.placeholder.call$2(context, this.imageUrl); }, _octoErrorBuilder$3(context, error, stackTrace) { return this.errorWidget.call$3(context, this.imageUrl, error); } }; A.CachedNetworkImageProvider.prototype = { obtainKey$1(configuration) { return new A.SynchronousFuture(this, type$.SynchronousFuture_CachedNetworkImageProvider); }, load$2(_, key, decode) { var _null = null, chunkEvents = A.StreamController_StreamController(_null, _null, _null, false, type$.ImageChunkEvent), t1 = this.__image_provider_web$_loadAsync$3(key, chunkEvents, decode); key.toString; return A.MultiImageStreamCompleter$(new A._ControllerStream(chunkEvents, A._instanceType(chunkEvents)._eval$1("_ControllerStream<1>")), t1, _null, 1); }, __image_provider_web$_loadAsync$3(key, chunkEvents, decode) { var t1; switch (this._imageRenderMethodForWeb.index) { case 1: return this._loadAsyncHttpGet$3(key, chunkEvents, decode); case 0: t1 = A.loadAsyncHtmlImage(key, chunkEvents, decode); return A.Stream_Stream$fromFuture(t1, t1.$ti._precomputed1); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _loadAsyncHttpGet$3(key, chunkEvents, decode) { return this._loadAsyncHttpGet$body$CachedNetworkImageProvider(key, chunkEvents, decode); }, _loadAsyncHttpGet$body$CachedNetworkImageProvider(key, chunkEvents, decode) { var $async$_loadAsyncHttpGet$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; mngr0 = $.$get$DefaultCacheManager__instance(); mngr = mngr0; t1 = mngr; key0 = key.url; t1.toString; streamController = A.StreamController_StreamController(null, null, null, false, type$.FileResponse); t1._pushFileToStream$5(streamController, key0, key0, $async$self.headers, true); t1 = new A._StreamIterator(A.checkNotNullable(new A._ControllerStream(streamController, A._instanceType(streamController)._eval$1("_ControllerStream<1>")), "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 7; t2 = A._instanceType(chunkEvents)._eval$1("_DelayedData<1>"); case 10: // for condition $async$goto = 12; return A._asyncStarHelper(t1.moveNext$0(), $async$_loadAsyncHttpGet$3, $async$controller); case 12: // returning from await. if (!$async$result) { // goto after for $async$goto = 11; break; } result = t1.get$current(t1); if (result instanceof A.DownloadProgress) { t3 = new A.ImageChunkEvent(result.downloaded, result.totalSize); t4 = chunkEvents._state; if (t4 >= 4) A.throwExpression(chunkEvents._badEventState$0()); if ((t4 & 1) !== 0) chunkEvents._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = chunkEvents._ensurePendingEvents$0(); t3 = new A._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } $async$goto = result instanceof A.FileInfo ? 13 : 14; break; case 13: // then file = result.file; $async$goto = 15; return A._asyncStarHelper(file.readAsBytes$0(), $async$_loadAsyncHttpGet$3, $async$controller); case 15: // returning from await. bytes = $async$result; $async$goto = 16; return A._asyncStarHelper(decode.call$1(bytes), $async$_loadAsyncHttpGet$3, $async$controller); case 16: // returning from await. decoded = $async$result; $async$goto = 17; $async$nextWhenCanceled = [1, 5, 8]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(decoded), $async$_loadAsyncHttpGet$3, $async$controller); case 17: // after yield case 14: // join // goto for condition $async$goto = 10; break; case 11: // after for $async$next.push(9); // goto finally $async$goto = 8; break; case 7: // uncaught $async$next = [4]; case 8: // finally $async$handler = 4; $async$goto = 18; return A._asyncStarHelper(t1.cancel$0(0), $async$_loadAsyncHttpGet$3, $async$controller); case 18: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 9: // after finally $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; A.scheduleMicrotask(new A.CachedNetworkImageProvider__loadAsyncHttpGet_closure(key)); throw $async$exception; $async$next.push(6); // goto finally $async$goto = 5; break; case 3: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; $async$goto = 19; return A._asyncStarHelper(chunkEvents.close$0(0), $async$_loadAsyncHttpGet$3, $async$controller); case 19: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return A._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return A._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = A._makeAsyncStarStreamController($async$_loadAsyncHttpGet$3, type$.Codec), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, mngr, result, file, bytes, decoded, mngr0, t1, key0, streamController, t2, t3, t4, lastEvent, exception, $async$exception; return A._streamOfController($async$controller); }, $eq(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A.CachedNetworkImageProvider) { t1 = other.url; return this.url == t1 && true; } else return false; }, get$hashCode(_) { return A.hashValues(this.url, 1, this.cacheKey, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { return A.getRuntimeType(this).toString$0(0) + '("' + A.S(this.url) + '", scale: 1)'; } }; A.CachedNetworkImageProvider__loadAsyncHttpGet_closure.prototype = { call$0() { var t1 = A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, "_imageCache"); if (t1 != null) t1.evict$1(this.key); }, $signature: 0 }; A.loadAsyncHtmlImage_closure.prototype = { call$2(bytes, total) { this.chunkEvents.add$1(0, new A.ImageChunkEvent(bytes, total)); }, $signature: 325 }; A.ImageRenderMethodForWeb.prototype = { toString$0(_) { return "ImageRenderMethodForWeb." + this._core$_name; } }; A.MultiImageStreamCompleter.prototype = { MultiImageStreamCompleter$4$chunkEvents$codec$informationCollector$scale(chunkEvents, codec, informationCollector, scale) { var _this = this; codec.listen$2$onError(0, new A.MultiImageStreamCompleter_closure(_this), new A.MultiImageStreamCompleter_closure0(_this, informationCollector)); chunkEvents.listen$2$onError(0, _this.get$reportImageChunkEvent(), new A.MultiImageStreamCompleter_closure1(_this, informationCollector)); }, _multi_image_stream_completer$_handleAppFrame$1(timestamp) { var t3, t4, completedCycles, _this = this, t1 = _this._multi_image_stream_completer$_frameCallbackScheduled = false, t2 = _this._image_stream$_listeners; if (t2.length === 0) return; t3 = _this._multi_image_stream_completer$_frameDuration; if (t3 != null) { t4 = _this._shownTimestamp; t4.toString; t4 = timestamp._duration - t4._duration >= t3._duration; } else t4 = true; if (t4) { t3 = _this._multi_image_stream_completer$_nextFrame; _this._multi_image_stream_completer$_emitFrame$1(new A.ImageInfo(t3.get$image(t3), _this._multi_image_stream_completer$_scale, null)); _this._shownTimestamp = timestamp; t3 = _this._multi_image_stream_completer$_nextFrame; _this._multi_image_stream_completer$_frameDuration = t3.get$duration(t3); _this._multi_image_stream_completer$_nextFrame = null; t3 = _this._multi_image_stream_completer$_framesEmitted; t4 = _this._multi_image_stream_completer$_codec; if (B.JSInt_methods.$mod(t3, t4.get$frameCount(t4)) === 0 ? _this._nextImageCodec != null : t1) { _this._multi_image_stream_completer$_framesEmitted = 0; _this._multi_image_stream_completer$_timer = null; t1 = _this._nextImageCodec; t1.toString; _this._multi_image_stream_completer$_codec = t1; if (t2.length !== 0) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); _this._nextImageCodec = null; } else { t1 = _this._multi_image_stream_completer$_framesEmitted; t2 = _this._multi_image_stream_completer$_codec; completedCycles = B.JSInt_methods.$tdiv(t1, t2.get$frameCount(t2)); t1 = _this._multi_image_stream_completer$_codec; if (t1.get$repetitionCount(t1) !== -1) { t1 = _this._multi_image_stream_completer$_codec; t1 = completedCycles <= t1.get$repetitionCount(t1); } else t1 = true; if (t1) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); } return; } t3.toString; t1 = _this._shownTimestamp; t1.toString; _this._multi_image_stream_completer$_timer = A.Timer_Timer(new A.Duration(B.JSInt_methods.round$0(t3._duration - (timestamp._duration - t1._duration))), _this.get$_multi_image_stream_completer$_scheduleAppFrame()); }, _multi_image_stream_completer$_decodeNextFrameAndSchedule$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, $async$exception0; var $async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; $async$goto = 7; return A._asyncAwait($async$self._multi_image_stream_completer$_codec.getNextFrame$0(), $async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0); case 7: // returning from await. $async$self._multi_image_stream_completer$_nextFrame = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); $async$self.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving an image frame"), exception, $async$self._multi_image_stream_completer$_informationCollector, true, stack); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = $async$self._multi_image_stream_completer$_codec; if (t1.get$frameCount(t1) === 1) { if ($async$self._image_stream$_listeners.length === 0) { // goto return $async$goto = 1; break; } t1 = $async$self._multi_image_stream_completer$_nextFrame; $async$self._multi_image_stream_completer$_emitFrame$1(new A.ImageInfo(t1.get$image(t1), $async$self._multi_image_stream_completer$_scale, null)); // goto return $async$goto = 1; break; } $async$self._multi_image_stream_completer$_scheduleAppFrame$0(); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0, $async$completer); }, _multi_image_stream_completer$_scheduleAppFrame$0() { if (this._multi_image_stream_completer$_frameCallbackScheduled) return; this._multi_image_stream_completer$_frameCallbackScheduled = true; $.SchedulerBinding__instance.scheduleFrameCallback$1(this.get$_multi_image_stream_completer$_handleAppFrame()); }, _multi_image_stream_completer$_emitFrame$1(imageInfo) { this.setImage$1(imageInfo); ++this._multi_image_stream_completer$_framesEmitted; }, addListener$1(_, listener) { var _this = this; if (_this._image_stream$_listeners.length === 0 && _this._multi_image_stream_completer$_codec != null) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); _this.super$ImageStreamCompleter$addListener(0, listener); }, removeListener$1(_, listener) { var t1, _this = this; _this.super$ImageStreamCompleter$removeListener(0, listener); if (_this._image_stream$_listeners.length === 0) { t1 = _this._multi_image_stream_completer$_timer; if (t1 != null) t1.cancel$0(0); _this._multi_image_stream_completer$_timer = null; } } }; A.MultiImageStreamCompleter_closure.prototype = { call$1($event) { var t1 = this.$this; if (t1._multi_image_stream_completer$_timer != null) t1._nextImageCodec = $event; else { t1._multi_image_stream_completer$_codec = $event; if (t1._image_stream$_listeners.length !== 0) t1._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); } }, $signature: 504 }; A.MultiImageStreamCompleter_closure0.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving an image codec"), error, this.informationCollector, true, stack); }, $signature: 434 }; A.MultiImageStreamCompleter_closure1.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("loading an image"), error, this.informationCollector, true, stack); }, $signature: 434 }; A.StringCharacters.prototype = { get$iterator(_) { return new A.StringCharacterRange(this.string, 0, 0); }, get$first(_) { var t1 = this.string, t2 = t1.length; return t2 === 0 ? A.throwExpression(A.StateError$("No element")) : B.JSString_methods.substring$2(t1, 0, new A.Breaks(t1, t2, 0, 176).nextBreak$0()); }, get$last(_) { var t1 = this.string, t2 = t1.length; return t2 === 0 ? A.throwExpression(A.StateError$("No element")) : B.JSString_methods.substring$1(t1, new A.BackBreaks(t1, 0, t2, 176).nextBreak$0()); }, get$isEmpty(_) { return this.string.length === 0; }, get$isNotEmpty(_) { return this.string.length !== 0; }, get$length(_) { var brk, $length, t1 = this.string, t2 = t1.length; if (t2 === 0) return 0; brk = new A.Breaks(t1, t2, 0, 176); for ($length = 0; brk.nextBreak$0() >= 0;) ++$length; return $length; }, elementAt$1(_, index) { var t1, t2, breaks, count, start, end; A.RangeError_checkNotNegative(index, "index"); t1 = this.string; t2 = t1.length; if (t2 !== 0) { breaks = new A.Breaks(t1, t2, 0, 176); for (count = 0, start = 0; end = breaks.nextBreak$0(), end >= 0; start = end) { if (count === index) return B.JSString_methods.substring$2(t1, start, end); ++count; } } else count = 0; throw A.wrapException(A.IndexError$(index, this, "index", null, count)); }, contains$1(_, singleCharacterString) { var t1; if (typeof singleCharacterString != "string") return false; t1 = singleCharacterString.length; if (t1 === 0) return false; if (new A.Breaks(singleCharacterString, t1, 0, 176).nextBreak$0() !== t1) return false; t1 = this.string; return A._indexOf(t1, singleCharacterString, 0, t1.length) >= 0; }, replaceFirst$2(_, pattern, replacement) { var t1 = this.string; t1 = new A.StringCharacterRange(t1, 0, t1.length).replaceFirst$2(0, pattern, replacement); if (t1 == null) t1 = null; else { t1 = t1._characters_impl$_string; t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); } return t1 == null ? this : t1; }, _skipIndices$3(count, cursor, breaks) { var t1, nextBreak; if (count === 0 || cursor === this.string.length) return cursor; if (breaks == null) { t1 = this.string; breaks = new A.Breaks(t1, t1.length, cursor, 176); } do { nextBreak = breaks.nextBreak$0(); if (nextBreak < 0) break; if (--count, count > 0) { cursor = nextBreak; continue; } else { cursor = nextBreak; break; } } while (true); return cursor; }, skip$1(_, count) { A.RangeError_checkNotNegative(count, "count"); return this._skip$1(count); }, _skip$1(count) { var start = this._skipIndices$3(count, 0, null), t1 = this.string; if (start === t1.length) return B.StringCharacters_ehH; return new A.StringCharacters(B.JSString_methods.substring$1(t1, start)); }, take$1(_, count) { A.RangeError_checkNotNegative(count, "count"); return this._take$1(count); }, _take$1(count) { var end = this._skipIndices$3(count, 0, null), t1 = this.string; if (end === t1.length) return this; return new A.StringCharacters(B.JSString_methods.substring$2(t1, 0, end)); }, getRange$2(_, start, end) { var t1, t2, breaks, startIndex, _this = this; A.RangeError_checkNotNegative(start, "start"); if (end < start) throw A.wrapException(A.RangeError$range(end, start, null, "end", null)); if (end === start) return B.StringCharacters_ehH; if (start === 0) return _this._take$1(end); t1 = _this.string; t2 = t1.length; if (t2 === 0) return _this; breaks = new A.Breaks(t1, t2, 0, 176); startIndex = _this._skipIndices$3(start, 0, breaks); if (startIndex === t2) return B.StringCharacters_ehH; return new A.StringCharacters(B.JSString_methods.substring$2(t1, startIndex, _this._skipIndices$3(end - start, start, breaks))); }, characterAt$1(position) { var start, end, _s10_ = "No element", t1 = this.string, t2 = t1.length, breaks = new A.Breaks(t1, t2, 0, 176); for (start = 0; position > 0;) { --position; start = breaks.nextBreak$0(); if (start < 0) throw A.wrapException(A.StateError$(_s10_)); } end = breaks.nextBreak$0(); if (end < 0) throw A.wrapException(A.StateError$(_s10_)); if (start === 0 && end === t2) return this; return new A.StringCharacters(B.JSString_methods.substring$2(t1, start, end)); }, where$1(_, test) { var string = this.super$Iterable$where(0, test).join$0(0); if (string.length === 0) return B.StringCharacters_ehH; return new A.StringCharacters(string); }, $add(_, characters) { return new A.StringCharacters(this.string + characters.string); }, toLowerCase$0(_) { return new A.StringCharacters(this.string.toLowerCase()); }, $eq(_, other) { if (other == null) return false; return type$.Characters._is(other) && this.string === other.string; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.string); }, toString$0(_) { return this.string; }, $isCharacters: 1 }; A.StringCharacterRange.prototype = { get$current(_) { var _this = this, t1 = _this._currentCache; return t1 == null ? _this._currentCache = J.substring$2$s(_this._characters_impl$_string, _this._characters_impl$_start, _this._characters_impl$_end) : t1; }, moveNext$0() { return this._advanceEnd$2(1, this._characters_impl$_end); }, _advanceEnd$2(count, newStart) { var index, t1, t2, state, char, nextIndex, category, nextChar, t3, _this = this; if (count > 0) { index = _this._characters_impl$_end; for (t1 = _this._characters_impl$_string, t2 = t1.length, state = 176; index < t2; index = nextIndex) { char = B.JSString_methods.codeUnitAt$1(t1, index); nextIndex = index + 1; if ((char & 64512) !== 55296) category = A.low(char); else if (nextIndex < t2) { nextChar = B.JSString_methods.codeUnitAt$1(t1, nextIndex); if ((nextChar & 64512) === 56320) { ++nextIndex; category = A.high(char, nextChar); } else category = 2; } else category = 2; state = B.JSString_methods._codeUnitAt$1(string$.x200_000, state & 240 | category); if ((state & 1) === 0) { --count; t3 = count === 0; } else t3 = false; if (t3) { _this._characters_impl$_start = newStart; _this._characters_impl$_end = index; _this._currentCache = null; return true; } } _this._characters_impl$_start = newStart; _this._characters_impl$_end = t2; _this._currentCache = null; return count === 1 && state !== 176; } else { _this._characters_impl$_start = newStart; _this._currentCache = null; return true; } }, dropLast$1(count) { var t1, breaks, nextBreak, _this = this; A.RangeError_checkNotNegative(count, "count"); t1 = _this._characters_impl$_end; breaks = new A.BackBreaks(_this._characters_impl$_string, _this._characters_impl$_start, t1, 176); for (; count > 0;) { nextBreak = breaks.nextBreak$0(); if (nextBreak >= 0) { _this._characters_impl$_end = nextBreak; _this._currentCache = null; --count; } else return false; } return true; }, dropLast$0() { return this.dropLast$1(1); }, dropBackWhile$1(test) { var t2, breaks, next, _this = this, t1 = _this._characters_impl$_start, cursor = _this._characters_impl$_end; if (t1 == cursor) return; t2 = _this._characters_impl$_string; breaks = new A.BackBreaks(t2, t1, cursor, 176); for (t1 = J.getInterceptor$s(t2); next = breaks.nextBreak$0(), next >= 0; cursor = next) if (!test.call$1(t1.substring$2(t2, next, cursor))) break; _this._characters_impl$_end = cursor; _this._currentCache = null; }, expandWhile$1(test) { var next, _this = this, t1 = _this._characters_impl$_string, cursor = _this._characters_impl$_end, breaks = new A.Breaks(t1, t1.length, cursor, 176); for (; next = breaks.nextBreak$0(), next >= 0; cursor = next) if (!test.call$1(B.JSString_methods.substring$2(t1, cursor, next))) break; _this._characters_impl$_end = cursor; _this._currentCache = null; }, get$isEmpty(_) { return this._characters_impl$_start == this._characters_impl$_end; }, replaceFirst$2(_, pattern, replacement) { var replaced, index, _this = this, patternString = pattern.get$string(), replacementString = replacement.string, t1 = patternString.get$isEmpty(patternString), t2 = _this._characters_impl$_string, t3 = _this._characters_impl$_start; if (t1) replaced = J.replaceRange$3$asx(t2, t3, t3, replacementString); else { index = A._indexOf(t2, patternString, t3, _this._characters_impl$_end); if (index >= 0) replaced = J.replaceRange$3$asx(t2, index, B.JSInt_methods.$add(index, patternString.get$length(patternString)), replacementString); else return null; } t1 = t2.length; t2 = _this._characters_impl$_end; return A.StringCharacterRange__expandRange(replaced, _this._characters_impl$_start, replaced.length - t1 + t2); } }; A.Breaks.prototype = { nextBreak$0() { var t1, t2, t3, t4, t5, char, nextChar, category, _this = this, _s192_ = string$.x200_000; for (t1 = _this.end, t2 = _this.base, t3 = J.getInterceptor$s(t2); t4 = _this.cursor, t4 < t1;) { t5 = _this.cursor = t4 + 1; char = t3.codeUnitAt$1(t2, t4); if ((char & 64512) !== 55296) { t5 = B.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | A.low(char)); _this.state = t5; if ((t5 & 1) === 0) return t4; continue; } if (t5 < t1) { nextChar = B.JSString_methods.codeUnitAt$1(t2, t5); if ((nextChar & 64512) === 56320) { category = A.high(char, nextChar); _this.cursor = _this.cursor + 1; } else category = 2; } else category = 2; t5 = B.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | category); _this.state = t5; if ((t5 & 1) === 0) return t4; } t1 = B.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | 15); _this.state = t1; if ((t1 & 1) === 0) return t4; return -1; } }; A.BackBreaks.prototype = { nextBreak$0() { var t1, t2, t3, t4, t5, char, prevChar, category, t6, _this = this, _s208_ = string$.x10__0__; for (t1 = _this.start, t2 = _this.base, t3 = J.getInterceptor$s(t2); t4 = _this.cursor, t4 > t1;) { t5 = _this.cursor = t4 - 1; char = t3.codeUnitAt$1(t2, t5); if ((char & 64512) !== 56320) { t5 = _this.state = B.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | A.low(char)); if (((t5 >= 208 ? _this.state = A.lookAhead(t2, t1, _this.cursor, t5) : t5) & 1) === 0) return t4; continue; } if (t5 >= t1) { prevChar = B.JSString_methods.codeUnitAt$1(t2, t5 - 1); if ((prevChar & 64512) === 55296) { category = A.high(prevChar, char); t5 = _this.cursor - 1; _this.cursor = t5; } else category = 2; } else category = 2; t6 = _this.state = B.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | category); if (((t6 >= 208 ? _this.state = A.lookAhead(t2, t1, t5, t6) : t6) & 1) === 0) return t4; } t3 = _this.state = B.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | 15); if (((t3 >= 208 ? _this.state = A.lookAhead(t2, t1, t4, t3) : t3) & 1) === 0) return _this.cursor; return -1; } }; A.BarChart0.prototype = { makeDefaultRenderer$0() { var t1 = A.BarRenderer_BarRenderer(null, null, type$.String); t1.rendererId = "default"; return t1; } }; A.BarRenderer.prototype = { configureSeries$1(seriesList) { this.assignMissingColors$2$emptyCategoryUsesSinglePalette(this.getOrderedSeriesList$1$1(seriesList, this.$ti._eval$1("MutableSeries<1>")), true); }, addPositionToDetailsForSeriesDatum$2(details, seriesDatum) { var previousBarGroupWeight, barGroupWeight, allBarGroupWeights, t4, t5, bounds, _this = this, t1 = details.series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = _this.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, B.AttributeKey_OBU))), measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, B.AttributeKey_kWM))); t2 = A._asIntQ(t1.$index(0, B.AttributeKey_2Sa)); t2.toString; previousBarGroupWeight = A._asDoubleQ(t1.$index(0, B.AttributeKey_YGG)); barGroupWeight = A._asDoubleQ(t1.$index(0, B.AttributeKey_esd)); allBarGroupWeights = type$.nullable_List_double._as(t1.$index(0, B.AttributeKey_Ubu)); t1 = A._asIntQ(t1.$index(0, B.AttributeKey_8Tg)); t1.toString; t4 = B.JSNumber_methods.round$0(domainAxis.scale.get$rangeBand()); t5 = details.measureOffset; t5.toString; bounds = _this._getBarBounds$12(details.domain, domainAxis, t4, _this.config.maxBarWidthPx, details.measure, t5, measureAxis, t2, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, t1); A._lateReadCheck(_this.__BaseCartesianRenderer_chart, "chart").toString; t1 = bounds.top; t1.toString; return A.DatumDetails_DatumDetails$from(details, bounds, new A.NullablePoint(bounds.left + bounds.width / 2, t1), null, null, null, t3._precomputed1); }, makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx(allBarGroupWeights, barGroupIndex, barGroupWeight, color, dashPattern, details, domainAxis, domainValue, domainWidth, fillColor, fillPattern, measureAxis, measureAxisPosition, measureIsNegative, measureIsNull, measureOffsetValue, measureValue, numBarGroups, previousBarGroupWeight, strokeWidthPx) { var t1 = new A.BarRendererElement(this.$ti._eval$1("BarRendererElement<1>")); t1.color = color; t1.dashPattern = dashPattern; t1.fillColor = fillColor; t1.fillPattern = fillPattern; t1.measureAxisPosition = measureAxisPosition; t1.roundPx = details.roundPx; t1.strokeWidthPx = strokeWidthPx; t1.measureIsNull = measureIsNull; t1.measureIsNegative = measureIsNegative; t1.bounds = this._getBarBounds$12(domainValue, domainAxis, domainWidth, this.config.maxBarWidthPx, measureValue, measureOffsetValue, measureAxis, barGroupIndex, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, numBarGroups); return t1; }, paintBar$3(canvas, animationPercent, barElements) { var unmodifiedBar, t1, t2, t3, maxBarWidth, measureIsNegative, _i, bar, bounds, t4, t5, t6, roundTopLeft, roundTopRight, roundBottomLeft, roundBottomRight, barStack, barOutsideBounds, left, t7, right, $top, bottom, clipBounds, _this = this, _s5_ = "chart", bars = A._setArrayType([], type$.JSArray_CanvasRect); A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; unmodifiedBar = B.JSArray_methods.get$first(barElements); for (t1 = barElements.length, t2 = _this._stackedBarPaddingPx, t3 = type$.int, maxBarWidth = 0, measureIsNegative = false, _i = 0; _i < barElements.length; barElements.length === t1 || (0, A.throwConcurrentModificationError)(barElements), ++_i) { bar = barElements[_i]; bounds = bar.bounds; if (!measureIsNegative) { t4 = bar.measureIsNegative; t4.toString; measureIsNegative = t4; } else measureIsNegative = true; if (!J.$eq$(bar, unmodifiedBar)) { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; t4 = bar.bounds; t5 = t4.left; t6 = t4.top; bounds = A.Rectangle$(t5, Math.max(0, t6 + (measureIsNegative ? t2 : 0)), t4.width, Math.max(0, t4.height - t2), t3); } bounds.toString; bars.push(new A.CanvasRect(bounds, bar.fillColor, bar.fillPattern, bar.color, bar.strokeWidthPx)); A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; maxBarWidth = Math.max(maxBarWidth, bounds.width); } if (measureIsNegative) { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; roundTopLeft = false; roundTopRight = false; roundBottomLeft = true; roundBottomRight = true; } else { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; roundTopRight = !A._lateReadCheck(A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).__BaseChart_context, "context").get$isRtl(); roundBottomLeft = A._lateReadCheck(A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).__BaseChart_context, "context").get$isRtl(); A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; roundTopLeft = true; roundBottomRight = false; } barStack = A.CanvasBarStack_CanvasBarStack(bars, 2, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight, t2); t1 = _this._drawAreaBounds; t1.toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; t2 = barStack.fullStackRect; t4 = t2.left; t5 = t1.left; barOutsideBounds = t4 < t5 || t2.$ti._precomputed1._as(t4 + t2.width) > t1.$ti._precomputed1._as(t5 + t1.width); if (barOutsideBounds) { t2 = barStack.fullStackRect; t4 = _this._drawAreaBounds; t4.toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; t5 = t4.left; t6 = t2.left; left = Math.max(A.checkNum(t5), A.checkNum(t6)); t7 = t2.$ti._precomputed1; right = Math.min(t4.$ti._precomputed1._as(t5 + t4.width), t7._as(t6 + t2.width)); $top = t2.top; bottom = t7._as($top + t2.height); clipBounds = A.Rectangle$(left, $top, right - left, bottom - $top, t3); if (clipBounds.width <= 0 || clipBounds.height <= 0) return; t2 = canvas.canvas; t2.save$0(0); t2.clipRect$1(0, canvas._getRect$1(clipBounds)); } canvas.drawBarStack$2$drawAreaBounds(barStack, t1); if (barOutsideBounds) canvas.canvas.restore$0(0); }, _getBarBounds$12(domainValue, domainAxis, domainWidth, maxBarWidthPx, measureValue, measureOffsetValue, measureAxis, barGroupIndex, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, numBarGroups) { var t1, t2, desiredWidth, barWidth, adjustedBarGroupIndex, previousAverageWidth, domainStart, measureEnd, measureStart, bounds; domainWidth = Math.abs(domainWidth); if (barGroupWeight == null) previousBarGroupWeight = barGroupIndex * (1 / numBarGroups); t1 = this._barGroupInnerPaddingPx; t2 = domainWidth - t1 * (numBarGroups - 1); desiredWidth = B.JSNumber_methods.round$0(t2 / numBarGroups); barWidth = allBarGroupWeights != null ? B.JSNumber_methods.round$0(desiredWidth * numBarGroups * J.$index$asx(allBarGroupWeights, barGroupIndex)) : desiredWidth; barWidth = Math.max(1, barWidth); adjustedBarGroupIndex = A._lateReadCheck(A._lateReadCheck(this.__BaseCartesianRenderer_chart, "chart").__BaseChart_context, "context").get$isRtl() ? numBarGroups - barGroupIndex - 1 : barGroupIndex; if (adjustedBarGroupIndex > 0) { previousBarGroupWeight.toString; previousAverageWidth = B.JSNumber_methods.round$0(t2 * (previousBarGroupWeight / adjustedBarGroupIndex)); } else previousAverageWidth = 0; t2 = domainAxis.getLocation$1(domainValue); t2.toString; domainStart = B.JSNumber_methods.round$0(t2 - domainWidth / 2 + (previousAverageWidth + t1) * adjustedBarGroupIndex); if (measureValue == null) measureValue = 0; if (measureValue < 0) { t1 = measureAxis.getLocation$1(measureOffsetValue); t1.toString; measureEnd = B.JSNumber_methods.round$0(t1); t1 = measureAxis.getLocation$1(measureValue + measureOffsetValue); t1.toString; measureStart = B.JSNumber_methods.round$0(t1); } else { t1 = measureAxis.getLocation$1(measureOffsetValue); t1.toString; measureStart = B.JSNumber_methods.round$0(t1); t1 = measureAxis.getLocation$1(measureValue + measureOffsetValue); t1.toString; measureEnd = B.JSNumber_methods.round$0(t1); } A._lateReadCheck(this.__BaseCartesianRenderer_chart, "chart").toString; bounds = A.Rectangle$(domainStart, measureEnd, domainStart + barWidth - domainStart, measureStart - measureEnd, type$.int); return bounds; } }; A.BarRendererElement.prototype = { BarRendererElement$clone$1(other, $D) { var _this = this; _this.series = other.series; _this.bounds = other.bounds; _this.roundPx = other.roundPx; _this.index = other.index; _this._datum = other._datum; } }; A.AnimatedBar.prototype = {}; A.BarRendererConfig.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.BarRendererConfig && other.cornerStrategy.$eq(0, this.cornerStrategy) && this.super$BaseBarRendererConfig$$eq(0, other); }, get$hashCode(_) { return A.BaseBarRendererConfig.prototype.get$hashCode.call(this, this) * 31 + B.JSInt_methods.get$hashCode(2); } }; A.ConstCornerStrategy.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.ConstCornerStrategy && true; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(2); } }; A.BaseBarRenderer.prototype = { preprocessSeries$1(seriesList) { var t2, t3, t4, categoryToIndexMap, numBarGroups, _this = this, t1 = {}; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, "chart").toString; A._lateReadCheck(_this.__BaseCartesianRenderer_chart, "chart").toString; _this._lastVertical = true; t1.barGroupIndex = 0; t2 = _this.$ti; t3 = t2._eval$1("BaseBarRenderer.D"); t4 = type$.Map_String_BaseBarRendererElement; categoryToIndexMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.int); t1.maxBarStackSize = 0; J.forEach$1$ax(_this.getOrderedSeriesList$1$1(seriesList, t2._eval$1("MutableSeries")), new A.BaseBarRenderer_preprocessSeries_closure(t1, _this, categoryToIndexMap, A.LinkedHashMap_LinkedHashMap$_empty(t3, t4), A.LinkedHashMap_LinkedHashMap$_empty(t3, t4))); t1.numBarGroups = 0; t2 = _this.config.groupingType; if (t2 === B.BarGroupingType_0 || t2 === B.BarGroupingType_1) t3 = t2 === B.BarGroupingType_2 || t2 === B.BarGroupingType_1; else t3 = false; if (t3) t2 = t1.numBarGroups = categoryToIndexMap._length; else if (t2 === B.BarGroupingType_2 || t2 === B.BarGroupingType_1) { t1.numBarGroups = 1; t2 = 1; } else { numBarGroups = J.get$length$asx(seriesList); t1.numBarGroups = numBarGroups; t2 = numBarGroups; } J.forEach$1$ax(seriesList, new A.BaseBarRenderer_preprocessSeries_closure0(t1, _this, _this._calculateBarWeights$1(t2))); }, _calculateBarWeights$1(numBarGroups) { var t1, i, weights = A._setArrayType([], type$.JSArray_double); for (t1 = 1 / numBarGroups, i = 0; i < numBarGroups; ++i) weights.push(t1); return weights; }, configureDomainAxes$1(seriesList) { var t1, t2; this.super$BaseCartesianRenderer$configureDomainAxes(seriesList); t1 = J.getInterceptor$asx(seriesList); if (t1.get$isNotEmpty(seriesList)) { t1 = type$.nullable_Axis_Object._as(t1.get$first(seriesList)._attrs._registry.$index(0, B.AttributeKey_OBU)); t1.toString; t2 = t1.scale.get$rangeBandConfig().type; if (t2 === B.RangeBandType_0) { $.$get$StyleFactory__styleFactory().toString; t1.scale.set$rangeBandConfig(new A.RangeBandConfig(B.RangeBandType_4, 0.65)); } } }, update$2(_, seriesList, isAnimatingThisDraw) { var _this = this; B.JSArray_methods.set$length(_this._currentKeys, 0); _this._currentGroupsStackKeys.clear$0(0); J.forEach$1$ax(_this.getOrderedSeriesList$1$1(seriesList, _this.$ti._eval$1("ImmutableSeries")), new A.BaseBarRenderer_update_closure(_this)); _this._barStackMap.forEach$1(0, new A.BaseBarRenderer_update_closure0(_this)); }, paint$2(canvas, animationPercent) { var keysToRemove, t1, t2, t3, t4, _this = this; if (animationPercent === 1) { keysToRemove = A.HashSet_HashSet(type$.String); t1 = _this._barStackMap; t1.forEach$1(0, new A.BaseBarRenderer_paint_closure(_this, keysToRemove)); for (t2 = new A._HashSetIterator(keysToRemove, keysToRemove._computeElements$0(), A._instanceType(keysToRemove)._eval$1("_HashSetIterator<1>")), t3 = _this._currentKeys; t2.moveNext$0();) { t4 = t2._collection$_current; t1.remove$1(0, t4); B.JSArray_methods.remove$1(t3, t4); } _this._currentGroupsStackKeys.forEach$1(0, new A.BaseBarRenderer_paint_closure0(_this, keysToRemove)); } _this._barStackMap.forEach$1(0, new A.BaseBarRenderer_paint_closure1(_this, animationPercent, canvas)); }, getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints(chartPoint, byDomain, boundsOverride, selectExactEventLocation, selectOverlappingPoints) { var t1, t2, domainValue, minMeasureDistance, minDomainDistance, _i, detail, t3, _this = this, _s5_ = "chart", _179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368 = 17976931348623157e292, _box_0 = {}, nearest = A._setArrayType([], _this.$ti._eval$1("JSArray>")); if (!_this.isPointWithinBounds$2(chartPoint, boundsOverride)) return nearest; t1 = _this._prevDomainAxis; if (t1 instanceof A.OrdinalAxis) { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; t2 = chartPoint.x; domainValue = t1.scale.reverse$1(0, t2); if (domainValue != null) { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; nearest = _this._getVerticalDetailsForDomainValue$2(domainValue, chartPoint); } } else { A._lateReadCheck(_this.__BaseCartesianRenderer_chart, _s5_).toString; nearest = _this._getVerticalDetailsForDomainValue$2(null, chartPoint); _box_0.nearestDomain = null; for (t1 = nearest.length, minMeasureDistance = _179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368, minDomainDistance = minMeasureDistance, _i = 0; _i < t1; ++_i) { detail = nearest[_i]; t2 = detail.domainDistance; t2.toString; if (!(t2 < minDomainDistance)) if (t2 === minDomainDistance) { t3 = detail.measureDistance; t3.toString; t3 = t3 < minMeasureDistance; } else t3 = false; else t3 = true; if (t3) { t3 = detail.measureDistance; t3.toString; _box_0.nearestDomain = detail.domain; minMeasureDistance = t3; minDomainDistance = t2; } } if (!!nearest.fixed$length) A.throwExpression(A.UnsupportedError$("retainWhere")); B.JSArray_methods._removeWhere$2(nearest, new A.BaseBarRenderer_getNearestDatumDetailPerSeries_closure(_box_0, _this), false); } return nearest; }, _getSegmentsForDomainValue$2$where(domainValue, where) { var matchingSegments = A._setArrayType([], this.$ti._eval$1("JSArray>")), t1 = this._currentGroupsStackKeys, stackKeys = domainValue != null ? t1.$index(0, domainValue) : t1.get$values(t1).reduce$1(0, new A.BaseBarRenderer__getSegmentsForDomainValue_closure()); if (stackKeys != null) stackKeys.forEach$1(0, new A.BaseBarRenderer__getSegmentsForDomainValue_closure0(this, where, matchingSegments)); return matchingSegments; }, _getVerticalDetailsForDomainValue$2(domainValue, chartPoint) { var _this = this, t1 = _this._getSegmentsForDomainValue$2$where(domainValue, new A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure(_this)), t2 = _this.$ti._eval$1("DatumDetails"); return A.List_List$from(new A.MappedListIterable(t1, new A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0(_this, chartPoint), A._arrayInstanceType(t1)._eval$1("@<1>")._bind$1(t2)._eval$1("MappedListIterable<1,2>")), true, t2); }, _getDistance$3(point, min, max) { if (max >= point && min <= point) return 0; return point > max ? point - max : min - point; }, getOrderedSeriesList$1$1(seriesList, $S) { var t1, t2; A._lateReadCheck(this.__BaseCartesianRenderer_chart, "chart").toString; t1 = this.config; t2 = t1.groupingType; t2 = t2 === B.BarGroupingType_2 || t2 === B.BarGroupingType_1; if (t2) { t1 = t1.groupingType; t1 = t1 === B.BarGroupingType_0 || t1 === B.BarGroupingType_1 ? new A._ReversedSeriesIterable(seriesList, $S._eval$1("_ReversedSeriesIterable<0>")) : J.get$reversed$ax(seriesList); } else t1 = seriesList; return t1; } }; A.BaseBarRenderer_preprocessSeries_closure.prototype = { call$1(series) { var t1, t2, t3, t4, t5, t6, barGroupIndex, t7, t8, t9, t10, domainToCategoryToDetailsMap, domainToCategoryToDetailsMap0, needsMeasureOffset, barIndex, details, t11, domain, measure, domainToCategoryToDetailsMap1, categoryToDetailsMap, t12, prevDetail, t13, t14, t15, measureOffset, _this = this, _s14_ = "__defaultKey__", elements = A._setArrayType([], type$.JSArray_BaseBarRendererElement), domainFn = series.domainFn, measureFn = series.measureFn, measureOffsetFn = series.measureOffsetFn, fillPatternFn = series.fillPatternFn, strokeWidthPxFn = series.strokeWidthPxFn; if (series.dashPatternFn == null) series.dashPatternFn = new A.BaseBarRenderer_preprocessSeries__closure0(_this.$this); t1 = _this.$this; t2 = t1.config; t3 = t2.groupingType; t4 = t3 !== B.BarGroupingType_0; if (!t4 || t3 === B.BarGroupingType_1) t5 = t3 === B.BarGroupingType_2 || t3 === B.BarGroupingType_1; else t5 = false; if (t5) { t5 = _this.categoryToIndexMap; t6 = _this._box_0; if (t5.containsKey$1(0, _s14_)) { t5 = t5.$index(0, _s14_); t5.toString; t6.barGroupIndex = t5; } else { barGroupIndex = t5._length; t6.barGroupIndex = barGroupIndex; t5.$indexSet(0, _s14_, barGroupIndex); } } for (t5 = series.data, t6 = _this._box_0, t7 = t2.strokeWidthPx, t8 = strokeWidthPxFn != null, t2 = t2.fillPattern, t9 = fillPatternFn != null, t1 = t1.$ti._eval$1("BarRendererElement<1>"), t10 = t3 === B.BarGroupingType_1, domainToCategoryToDetailsMap = _this.negDomainToStackKeyToDetailsMap, domainToCategoryToDetailsMap0 = _this.posDomainToStackKeyToDetailsMap, t3 = t3 !== B.BarGroupingType_2, needsMeasureOffset = false, barIndex = 0; barIndex < t5.length; ++barIndex) { details = new A.BarRendererElement(t1); details.barStackIndex = 0; details.measureOffset = measureOffsetFn.call$1(barIndex); if (t9) details.fillPattern = fillPatternFn.call$1(barIndex); else details.fillPattern = t2; if (t8) { t11 = strokeWidthPxFn.call$1(barIndex); details.strokeWidthPx = t11 == null ? null : t11; } else details.strokeWidthPx = t7; if (!t3 || t10) { domain = domainFn.call$1(barIndex); measure = measureFn.call$1(barIndex); t11 = measure == null; domainToCategoryToDetailsMap1 = t11 || measure >= 0 ? domainToCategoryToDetailsMap0 : domainToCategoryToDetailsMap; categoryToDetailsMap = domainToCategoryToDetailsMap1.putIfAbsent$2(0, domain, new A.BaseBarRenderer_preprocessSeries__closure1()); t12 = J.getInterceptor$asx(categoryToDetailsMap); prevDetail = t12.$index(categoryToDetailsMap, _s14_); t13 = prevDetail != null; if (t13) { t14 = prevDetail.barStackIndex; t14.toString; details.barStackIndex = t14 + 1; } t14 = t11 ? 0 : measure; details.cumulativeTotal = t14; t15 = measureOffsetFn.call$1(barIndex); t15.toString; if (t13) { t13 = prevDetail.measureOffsetPlusMeasure; t13.toString; measureOffset = t15 + t13; t13 = prevDetail.cumulativeTotal; t13.toString; details.cumulativeTotal = t14 + t13; } else measureOffset = t15; details.measureOffset = measureOffset; details.measureOffsetPlusMeasure = measureOffset + (t11 ? 0 : measure); t12.$indexSet(categoryToDetailsMap, _s14_, details); needsMeasureOffset = true; } t11 = t6.maxBarStackSize; t12 = details.barStackIndex; t12.toString; t6.maxBarStackSize = Math.max(t11, t12 + 1); elements.push(details); } if (needsMeasureOffset) series.measureOffsetFn = new A.BaseBarRenderer_preprocessSeries__closure2(elements); t1 = t6.barGroupIndex; t2 = series._attrs._registry; t2.$indexSet(0, B.AttributeKey_2Sa, t1); t2.$indexSet(0, B.AttributeKey_Db0, _s14_); t2.$indexSet(0, B.AttributeKey_vl2, elements); if (!t4 || t10) t6.barGroupIndex = t6.barGroupIndex + 1; }, $signature() { return this.$this.$ti._eval$1("~(MutableSeries)"); } }; A.BaseBarRenderer_preprocessSeries__closure0.prototype = { call$1(_) { return null; }, $signature: 641 }; A.BaseBarRenderer_preprocessSeries__closure1.prototype = { call$0() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BaseBarRendererElement); }, $signature: 2883 }; A.BaseBarRenderer_preprocessSeries__closure2.prototype = { call$1(index) { var t1; index.toString; t1 = this.elements[index].measureOffset; t1.toString; return t1; }, $signature: 2882 }; A.BaseBarRenderer_preprocessSeries_closure0.prototype = { call$1(series) { var t4, barWeight, t5, t6, t7, previousBarWeights, previousBarWeight, _null = null, t1 = this._box_0, t2 = t1.numBarGroups, t3 = series._attrs._registry; t3.$indexSet(0, B.AttributeKey_8Tg, t2); t2 = this.barWeights; if (t2.length !== 0) { t4 = A._asIntQ(t3.$index(0, B.AttributeKey_2Sa)); t4.toString; barWeight = t2[t4]; t5 = A._lateReadCheck(A._lateReadCheck(this.$this.__BaseCartesianRenderer_chart, "chart").__BaseChart_context, "context").get$isRtl(); t6 = t2.length; t7 = A._arrayInstanceType(t2)._precomputed1; if (t5) { ++t4; t1 = t1.numBarGroups; A.RangeError_checkValidRange(t4, t1, t6, _null, _null); previousBarWeights = A.SubListIterable$(t2, t4, t1, t7); } else { A.RangeError_checkValidRange(0, t4, t6, _null, _null); previousBarWeights = A.SubListIterable$(t2, 0, t4, t7); } previousBarWeight = !previousBarWeights.get$isEmpty(previousBarWeights) ? previousBarWeights.reduce$1(0, new A.BaseBarRenderer_preprocessSeries__closure()) : 0; t3.$indexSet(0, B.AttributeKey_esd, barWeight); t3.$indexSet(0, B.AttributeKey_YGG, previousBarWeight); t3.$indexSet(0, B.AttributeKey_Ubu, t2); } }, $signature() { return this.$this.$ti._eval$1("~(MutableSeries)"); } }; A.BaseBarRenderer_preprocessSeries__closure.prototype = { call$2(a, b) { return a + b; }, $signature: 356 }; A.BaseBarRenderer_update_closure.prototype = { call$1(series) { var t5, t6, t7, t8, t9, barIndex, datum, details, domainValue, measureValue, measureIsNull, t10, measureIsNegative, t11, t12, barStackMapKey, barKey, barStackList, animatingBar, t13, t14, t15, t16, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$this, t4 = t3.$ti, domainAxis = t4._eval$1("ImmutableAxis")._as(t2._as(t1.$index(0, B.AttributeKey_OBU))), domainFn = series.domainFn, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, B.AttributeKey_kWM))), measureFn = series.measureFn, colorFn = series.colorFn, dashPatternFn = series.dashPatternFn, fillColorFn = series.fillColorFn, seriesStackKey = A._asStringQ(t1.$index(0, B.AttributeKey_Db0)), barGroupCount = A._asIntQ(t1.$index(0, B.AttributeKey_8Tg)), barGroupIndex = A._asIntQ(t1.$index(0, B.AttributeKey_2Sa)), previousBarGroupWeight = A._asDoubleQ(t1.$index(0, B.AttributeKey_YGG)), barGroupWeight = A._asDoubleQ(t1.$index(0, B.AttributeKey_esd)), allBarGroupWeights = type$.nullable_List_double._as(t1.$index(0, B.AttributeKey_Ubu)), measureAxisPosition = measureAxis.getLocation$1(0), elementsList = type$.nullable_List_BaseBarRendererElement._as(t1.$index(0, B.AttributeKey_vl2)); t3._prevDomainAxis = domainAxis; for (t1 = series.data, t2 = t3._currentKeys, t5 = t3._currentGroupsStackKeys, t6 = t4._eval$1("BaseBarRenderer.R"), t7 = A.S(barGroupIndex), t8 = t3._barStackMap, t9 = A.S(seriesStackKey), t4 = t4._eval$1("AnimatedBar<1>"), barIndex = 0; barIndex < t1.length; ++barIndex) { datum = t1[barIndex]; elementsList.toString; details = J.$index$asx(elementsList, barIndex); domainValue = domainFn.call$1(barIndex); measureValue = measureFn.call$1(barIndex); measureIsNull = measureValue == null; t10 = !measureIsNull; measureIsNegative = t10 && measureValue < 0; t11 = A.S(domainValue); t12 = measureIsNegative ? "pos" : "neg"; barStackMapKey = t11 + "__" + t9 + "__" + t12 + "__" + t7; barKey = barStackMapKey + A.S(details.barStackIndex); barStackList = t8.putIfAbsent$2(0, barStackMapKey, new A.BaseBarRenderer_update__closure(t3)); animatingBar = A.IterableExtension_firstWhereOrNull(barStackList, new A.BaseBarRenderer_update__closure0(t3, barKey)); if (animatingBar == null) { if (t10) { barGroupIndex.toString; t10 = colorFn.call$1(barIndex); t11 = dashPatternFn.call$1(barIndex); t6._as(details); t12 = domainFn.call$1(barIndex); t13 = B.JSNumber_methods.round$0(domainAxis.scale.get$rangeBand()); t14 = fillColorFn.call$1(barIndex); t15 = details.fillPattern; barGroupCount.toString; animatingBar = new A.AnimatedBar(barKey, datum, series, t12, t4); animatingBar.setNewTarget$1(t3.makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx(allBarGroupWeights, barGroupIndex, barGroupWeight, t10, t11, details, domainAxis, t12, t13, t14, t15, measureAxis, measureAxisPosition, measureIsNegative, false, 0, 0, barGroupCount, previousBarGroupWeight, details.strokeWidthPx)); J.add$1$ax(barStackList, animatingBar); } } else { animatingBar.datum = datum; animatingBar.series = series; animatingBar.domainValue = domainValue; } if (animatingBar == null) continue; t2.push(barKey); J.add$1$ax(t5.putIfAbsent$2(0, domainValue, new A.BaseBarRenderer_update__closure1()), barStackMapKey); barGroupIndex.toString; t10 = colorFn.call$1(barIndex); t11 = dashPatternFn.call$1(barIndex); t6._as(details); t12 = domainFn.call$1(barIndex); t13 = B.JSNumber_methods.round$0(domainAxis.scale.get$rangeBand()); t14 = fillColorFn.call$1(barIndex); t15 = details.fillPattern; t16 = details.measureOffset; t16.toString; barGroupCount.toString; animatingBar.setNewTarget$1(t3.makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx(allBarGroupWeights, barGroupIndex, barGroupWeight, t10, t11, details, domainAxis, t12, t13, t14, t15, measureAxis, measureAxisPosition, measureIsNegative, measureIsNull, t16, measureValue, barGroupCount, previousBarGroupWeight, details.strokeWidthPx)); } }, $signature() { return this.$this.$ti._eval$1("~(ImmutableSeries)"); } }; A.BaseBarRenderer_update__closure.prototype = { call$0() { return A._setArrayType([], this.$this.$ti._eval$1("JSArray")); }, $signature() { return this.$this.$ti._eval$1("List()"); } }; A.BaseBarRenderer_update__closure0.prototype = { call$1(bar) { return bar.key === this.barKey; }, $signature() { return this.$this.$ti._eval$1("bool(BaseBarRenderer.B)"); } }; A.BaseBarRenderer_update__closure1.prototype = { call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 423 }; A.BaseBarRenderer_update_closure0.prototype = { call$2(key, barStackList) { var t1, t2, t3, barIndex, bar, t4, t5, t6, newTarget; for (t1 = J.getInterceptor$asx(barStackList), t2 = this.$this._currentKeys, t3 = type$.int, barIndex = 0; barIndex < t1.get$length(barStackList); ++barIndex) { bar = t1.$index(barStackList, barIndex); if (!B.JSArray_methods.contains$1(t2, bar.key)) { t4 = bar._currentBar; t4.toString; t5 = A.instanceType(bar); t6 = t5._eval$1("BarRendererElement<1>"); newTarget = new A.BarRendererElement(t6); newTarget.BaseBarRendererElement$clone$1(t4); newTarget.BarRendererElement$clone$1(t4, t5._precomputed1); t6._as(newTarget); t6 = newTarget.bounds; t5 = t6.left; t6 = B.JSNumber_methods.round$0(t6.width / 2); t4 = newTarget.measureAxisPosition; t4.toString; newTarget.bounds = A.Rectangle$(t5 + t6, B.JSNumber_methods.round$0(t4), 0, 0, t3); bar.setNewTarget$1(newTarget); bar.animatingOut = true; } } }, $signature() { return this.$this.$ti._eval$1("~(String,List)"); } }; A.BaseBarRenderer_paint_closure.prototype = { call$2(key, barStackList) { var t1 = J.getInterceptor$ax(barStackList); t1.retainWhere$1(barStackList, new A.BaseBarRenderer_paint__closure0(this.$this)); if (t1.get$isEmpty(barStackList)) this.keysToRemove.add$1(0, key); }, $signature() { return this.$this.$ti._eval$1("~(String,List)"); } }; A.BaseBarRenderer_paint__closure0.prototype = { call$1(bar) { var t1; if (!bar.animatingOut) { t1 = bar._targetBar.measureIsNull; t1.toString; t1 = !t1; } else t1 = false; return t1; }, $signature() { return this.$this.$ti._eval$1("bool(BaseBarRenderer.B)"); } }; A.BaseBarRenderer_paint_closure0.prototype = { call$2(domain, keys) { var t1 = this.keysToRemove; keys.removeWhere$1(0, t1.get$contains(t1)); }, $signature() { return this.$this.$ti._eval$1("~(BaseBarRenderer.D,Set)"); } }; A.BaseBarRenderer_paint_closure1.prototype = { call$2(stackKey, barStack) { var t1 = this.$this, t2 = this.animationPercent, barElements = J.map$1$1$ax(barStack, new A.BaseBarRenderer_paint__closure(t1, t2), t1.$ti._eval$1("BaseBarRenderer.R")).toList$0(0); if (barElements.length !== 0) t1.paintBar$3(this.canvas, t2, barElements); }, $signature() { return this.$this.$ti._eval$1("~(String,List)"); } }; A.BaseBarRenderer_paint__closure.prototype = { call$1(animatingBar) { var bar, t1, t2; animatingBar.toString; bar = animatingBar.super$BaseAnimatedBar$getCurrentBar(this.animationPercent); t1 = animatingBar.series; bar.series = t1; t2 = animatingBar.datum; bar._datum = t2; bar.toString; t1 = B.JSArray_methods.indexOf$1(t1.data, t2); bar.index = t1; return bar; }, $signature() { return this.$this.$ti._eval$1("BaseBarRenderer.R(BaseBarRenderer.B)"); } }; A.BaseBarRenderer_getNearestDatumDetailPerSeries_closure.prototype = { call$1(d) { return J.$eq$(d.domain, this._box_0.nearestDomain); }, $signature() { return this.$this.$ti._eval$1("bool(DatumDetails)"); } }; A.BaseBarRenderer__getSegmentsForDomainValue_closure.prototype = { call$2(allKeys, keys) { allKeys.addAll$1(0, keys); return allKeys; }, $signature: 2880 }; A.BaseBarRenderer__getSegmentsForDomainValue_closure0.prototype = { call$1(stackKey) { var t1 = this.$this._barStackMap.$index(0, stackKey); t1.toString; B.JSArray_methods.addAll$1(this.matchingSegments, J.where$1$ax(t1, this.where)); }, $signature: 117 }; A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure.prototype = { call$1(bar) { bar.toString; return true; }, $signature() { return this.$this.$ti._eval$1("bool(BaseAnimatedBar)"); } }; A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0.prototype = { call$1(bar) { var t2, t3, t4, t5, t6, t7, t8, segmentDomainDistance, t9, t10, segmentMeasureDistance, relativeDistance, _null = null, t1 = bar._currentBar.bounds; t1.toString; t2 = this.$this; t3 = this.chartPoint; t4 = t3.x; t5 = J.round$0$n(t4); t6 = t1.left; t7 = t1.$ti._precomputed1; t8 = t7._as(t6 + t1.width); segmentDomainDistance = t2._getDistance$3(t5, t6, t8); t5 = t3.y; t9 = J.round$0$n(t5); t10 = t1.top; t1 = t7._as(t10 + t1.height); segmentMeasureDistance = t2._getDistance$3(t9, t10, t1); relativeDistance = t3.distanceTo$1(new A.Point(Math.min(Math.max(t4, t6), t8), Math.min(Math.max(t5, t10), t1), type$.Point_double)); t1 = bar.series; return A.DatumDetails$(_null, _null, _null, _null, _null, _null, _null, bar.datum, bar.domainValue, segmentDomainDistance, _null, _null, _null, _null, _null, _null, _null, segmentMeasureDistance, _null, _null, _null, _null, _null, _null, _null, _null, relativeDistance, t1, _null, _null, t2.$ti._eval$1("BaseBarRenderer.D")); }, $signature() { return this.$this.$ti._eval$1("DatumDetails(BaseAnimatedBar)"); } }; A._ReversedSeriesIterable.prototype = { get$iterator(_) { return A._ReversedSeriesIterator$(this.seriesList, this.$ti._precomputed1); } }; A._ReversedSeriesIterator.prototype = { _ReversedSeriesIterator$1(list, $S) { var t1, i, categoryAndSeriesIndexMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, type$.List_int); for (t1 = J.getInterceptor$asx(list), i = 0; i < t1.get$length(list); ++i) J.add$1$ax(categoryAndSeriesIndexMap.putIfAbsent$2(0, t1.$index(list, i).seriesCategory, new A._ReversedSeriesIterator_closure()), i); categoryAndSeriesIndexMap.forEach$1(0, new A._ReversedSeriesIterator_closure0(this)); }, moveNext$0() { var t1 = this._base_bar_renderer$_current; t1 = t1 == null ? 0 : t1 + 1; this._base_bar_renderer$_current = t1; return t1 < J.get$length$asx(this._base_bar_renderer$_list); }, get$current(_) { var t1 = this._base_bar_renderer$_current; t1.toString; return J.$index$asx(this._base_bar_renderer$_list, this._visitIndex[t1]); } }; A._ReversedSeriesIterator_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_int); }, $signature: 665 }; A._ReversedSeriesIterator_closure0.prototype = { call$2(_, indices) { return B.JSArray_methods.addAll$1(this.$this._visitIndex, J.get$reversed$ax(indices)); }, $signature: 2879 }; A.BaseBarRendererConfig.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (other instanceof A.BaseBarRendererConfig) if (other.groupingType === _this.groupingType) if (other.minBarLengthPx === _this.minBarLengthPx) t1 = other.stackedBarPaddingPx === _this.stackedBarPaddingPx && other.strokeWidthPx === _this.strokeWidthPx && other.symbolRenderer.$eq(0, _this.symbolRenderer) && new A.ListEquality(B.C_DefaultEquality, type$.ListEquality_int).equals$2(other.weightPattern, _this.weightPattern); else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.symbolRenderer; return (((((((((31 + B.JSNull_methods.get$hashCode(_this.customRendererId)) * 31 + B.JSNull_methods.get$hashCode(null)) * 31 + B.JSNull_methods.get$hashCode(_this.fillPattern)) * 31 + A.Primitives_objectHashCode(_this.groupingType)) * 31 + B.JSInt_methods.get$hashCode(_this.minBarLengthPx)) * 31 + B.JSNull_methods.get$hashCode(_this.maxBarWidthPx)) * 31 + B.JSInt_methods.get$hashCode(_this.stackedBarPaddingPx)) * 31 + B.JSInt_methods.get$hashCode(_this.strokeWidthPx)) * 31 + t1.get$hashCode(t1)) * 31 + B.JSNull_methods.get$hashCode(_this.weightPattern); } }; A.BarGroupingType.prototype = { toString$0(_) { return "BarGroupingType." + this._core$_name; } }; A.BaseBarRendererElement.prototype = { BaseBarRendererElement$clone$1(other) { var t1, _this = this, _null = null; _this.barStackIndex = other.barStackIndex; t1 = other.color; _this.color = t1 != null ? A.Color$fromOther(t1, _null) : _null; _this.cumulativeTotal = other.cumulativeTotal; _this.dashPattern = other.dashPattern; t1 = other.fillColor; _this.fillColor = t1 != null ? A.Color$fromOther(t1, _null) : _null; _this.fillPattern = other.fillPattern; _this.measureAxisPosition = other.measureAxisPosition; _this.measureOffset = other.measureOffset; _this.measureOffsetPlusMeasure = other.measureOffsetPlusMeasure; _this.strokeWidthPx = other.strokeWidthPx; _this.measureIsNull = other.measureIsNull; _this.measureIsNegative = other.measureIsNegative; }, updateAnimationPercent$3(previous, target, animationPercent) { var t2, _this = this, t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = A.getAnimatedColor(t1, t2, animationPercent); t2 = previous.fillColor; t2.toString; t1 = target.fillColor; t1.toString; _this.fillColor = A.getAnimatedColor(t2, t1, animationPercent); _this.measureIsNull = target.measureIsNull; _this.measureIsNegative = target.measureIsNegative; } }; A.BaseAnimatedBar.prototype = { setNewTarget$1(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentBar; if (t1 == null) t1 = _this._currentBar = A.BarRendererElement$clone(newTarget, _this.$ti._precomputed1); _this._previousBar = A.BarRendererElement$clone(t1, _this.$ti._precomputed1); _this._targetBar = newTarget; }, getCurrentBar$1(animationPercent) { var t1, t2, t3, t4, targetBounds, t5, t6, $top, t7, t8, t9, t10, t11, t12, left, _this = this; if (animationPercent === 1 || _this._previousBar == null) { t1 = _this._targetBar; _this._previousBar = _this._currentBar = t1; t1.toString; return t1; } t1 = _this._currentBar; t1.toString; t2 = _this._previousBar; t2.toString; t3 = _this._targetBar; t3.toString; t4 = t1.$ti; t4._as(t2); t4._as(t3); t4 = t2.bounds; t4.toString; targetBounds = t3.bounds; t5 = targetBounds.top; t6 = t4.top; $top = (t5 - t6) * animationPercent + t6; t7 = targetBounds.left; t8 = A._instanceType(targetBounds)._precomputed1; t9 = t8._as(t7 + targetBounds.width); t10 = t4.left; t11 = t4.$ti._precomputed1; t12 = t11._as(t10 + t4.width); t5 = t8._as(t5 + targetBounds.height); t4 = t11._as(t6 + t4.height); left = (t7 - t10) * animationPercent + t10; t1.bounds = A.Rectangle$(B.JSNumber_methods.round$0(left), B.JSNumber_methods.round$0($top), B.JSNumber_methods.round$0((t9 - t12) * animationPercent + t12 - left), B.JSNumber_methods.round$0((t5 - t4) * animationPercent + t4 - $top), type$.int); t1.roundPx = t3.roundPx; t1.super$BaseBarRendererElement$updateAnimationPercent(t2, t3, animationPercent); t3 = _this._currentBar; t3.toString; return t3; } }; A.AxisOrientation.prototype = { toString$0(_) { return "AxisOrientation." + this._core$_name; } }; A.ImmutableAxis.prototype = {}; A.Axis.prototype = { addDomainValue$1(domain) { this.scale.addDomain$1(domain); }, resetDomains$0() { var scale, _this = this; _this._formatterValueCache.clear$0(0); scale = _this.scale; scale.resetDomain$0(); _this.reverseOutputRange = false; if (_this.autoViewport) scale.resetViewportSettings$0(); }, getLocation$1(domain) { var scale, t1, domainLocation, t2; if (domain != null) { scale = this.scale; t1 = scale.get$range(); t1.toString; domainLocation = scale.$index(0, domain); t2 = t1.start; t1 = t1.end; if (domainLocation > Math.max(A.checkNum(t2), A.checkNum(t1)) && domainLocation - 2e-10 < Math.max(A.checkNum(t2), A.checkNum(t1))) return domainLocation - 2e-10; else if (domainLocation < Math.min(A.checkNum(t2), A.checkNum(t1)) && domainLocation + 2e-10 > Math.min(A.checkNum(t2), A.checkNum(t1))) return domainLocation + 2e-10; return domainLocation; } return null; }, updateTicks$0() { var t1, _this = this; _this._updateProvidedTicks$0(); t1 = _this._componentBounds; if (t1 != null) _this._updateProvidedTickWidth$2(t1.width, t1.height); _this._updateAxisTicks$0(); }, _updateProvidedTicks$0() { var t4, t5, t6, _this = this, t1 = _this.tickProvider, t2 = _this.context, t3 = _this.graphicsFactory; t3.toString; t4 = _this.scale; t5 = _this._tickFormatter; t6 = _this.tickDrawStrategy; t6.toString; t6 = t1.getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(t2, t5, _this._formatterValueCache, t3, _this.axisOrientation, t4, t6, _this.autoViewport); _this._providedTicks = t6; _this.hasTickCollision = _this.tickDrawStrategy.collides$2(t6, _this.axisOrientation).ticksCollide; }, _updateProvidedTickWidth$2(maxWidth, maxHeight) { var t2, t3, _this = this, t1 = _this.axisOrientation; if (t1 != null) { t2 = _this.tickDrawStrategy; t2.toString; t3 = _this._providedTicks; t3.toString; t2.updateTickWidth$5$collision(t3, maxWidth, maxHeight, t1, _this.hasTickCollision); } }, _updateAxisTicks$0() { var providedTicks, scale, t2, _i, animatedTick, tick, t3, t4, newTarget, _this = this, t1 = _this._providedTicks; if (t1 == null) t1 = A._setArrayType([], A._instanceType(_this)._eval$1("JSArray>")); providedTicks = A.List_List$of(t1, true, A._instanceType(_this)._eval$1("Tick")); scale = _this.scale; for (t1 = _this._axisTicks, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { animatedTick = t1[_i]; tick = A.IterableExtension_firstWhereOrNull(providedTicks, new A.Axis__updateAxisTicks_closure(_this, animatedTick)); if (tick != null) { t3 = animatedTick.textElement; t4 = tick.textElement; if (!(J.$eq$(t3._text_element$_textStyle, t4._text_element$_textStyle) && t3._text_element$_maxWidth == t4._text_element$_maxWidth && t3._maxWidthStrategy == t4._maxWidthStrategy && t3.text == t4.text && t3._text_element$_textDirection === t4._text_element$_textDirection)) animatedTick.textElement = tick.textElement; newTarget = scale.$index(0, tick.value); if (scale.isRangeValueWithinViewport$1(newTarget)) { animatedTick._markedForRemoval = false; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = newTarget; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 1; } else { t3 = animatedTick.locationPx; animatedTick._markedForRemoval = true; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = t3; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 0; } B.JSArray_methods.remove$1(providedTicks, tick); } else { t3 = scale.$index(0, animatedTick.value); animatedTick._markedForRemoval = true; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = t3; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 0; } } B.JSArray_methods.forEach$1(providedTicks, new A.Axis__updateAxisTicks_closure0(_this, scale)); B.JSArray_methods.sort$0(t1); _this._previousScale = scale.copy$0(0); }, get$layoutConfig() { var position, t1 = this.layoutPaintOrder; switch (this.axisOrientation) { case B.AxisOrientation_0: position = B.LayoutPosition_2; break; case B.AxisOrientation_1: position = B.LayoutPosition_6; break; case B.AxisOrientation_2: position = B.LayoutPosition_0; break; case B.AxisOrientation_3: position = B.LayoutPosition_4; break; case null: position = null; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); position = null; } return A.LayoutViewConfig$(t1, position, 20); }, measure$2(_, maxWidth, maxHeight) { var t2, _this = this, t1 = _this.axisOrientation; t1 = t1 === B.AxisOrientation_3 || t1 === B.AxisOrientation_1; t2 = _this.scale; if (t1) { t2.set$range(new A.ScaleOutputExtent(maxHeight, 0)); _this._updateProvidedTicks$0(); t1 = _this.tickDrawStrategy; t1.toString; t2 = _this._providedTicks; t2.toString; t2 = t1.measureVerticallyDrawnTicks$4$collision(t2, maxWidth, maxHeight, _this.hasTickCollision); t1 = t2; } else { t2.set$range(new A.ScaleOutputExtent(0, maxWidth)); _this._updateProvidedTicks$0(); t1 = _this.tickDrawStrategy; t1.toString; t2 = _this._providedTicks; t2.toString; t2 = t1.measureHorizontallyDrawnTicks$4$collision(t2, maxWidth, maxHeight, _this.hasTickCollision); t1 = t2; } return t1; }, layout$2(_, componentBounds, drawAreaBounds) { var t1, t2, outputStart, outputEnd, outputRange, scale, _this = this; _this._componentBounds = componentBounds; _this._axis$_drawAreaBounds = drawAreaBounds; t1 = _this.axisOrientation; t2 = t1 !== B.AxisOrientation_3; outputStart = !t2 || t1 === B.AxisOrientation_1 ? componentBounds.$ti._precomputed1._as(componentBounds.top + componentBounds.height) : componentBounds.left; outputEnd = !t2 || t1 === B.AxisOrientation_1 ? componentBounds.top : componentBounds.$ti._precomputed1._as(componentBounds.left + componentBounds.width); outputRange = _this.reverseOutputRange ? new A.ScaleOutputExtent(outputEnd, outputStart) : new A.ScaleOutputExtent(outputStart, outputEnd); scale = _this.scale; if (!J.$eq$(scale.get$range(), outputRange)) scale.set$range(outputRange); _this._updateProvidedTicks$0(); t1 = _this._componentBounds; _this._updateProvidedTickWidth$2(t1.width, t1.height); _this._updateAxisTicks$0(); }, get$isSeriesRenderer() { return false; }, get$componentBounds() { return this._componentBounds; }, get$drawAxisLine() { return this.tickDrawStrategy instanceof A.SmallTickDrawStrategy; }, paint$2(canvas, animationPercent) { var t2, i, animatedTick, t3, t4, t5, t6, t7, _this = this, t1 = animationPercent === 1; if (t1) { t2 = _this._axisTicks; if (!!t2.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(t2, new A.Axis_paint_closure(_this), true); } for (t2 = _this._axisTicks, i = 0; i < t2.length; ++i) { animatedTick = t2[i]; t3 = _this.tickDrawStrategy; t3.toString; if (t1) { animatedTick._previousLocation = animatedTick._currentLocation = animatedTick._targetLocation; t4 = animatedTick._currentOpacity = animatedTick._markedForRemoval ? 0 : 1; } else { t4 = animatedTick._previousLocation; t5 = animatedTick._targetLocation; if (t4 == null) { animatedTick._currentLocation = t5; animatedTick._currentOpacity = 1; t4 = 1; } else { animatedTick._currentLocation = animatedTick._axis_tick$_lerpDouble$3(t4, t5, animationPercent); t4 = animatedTick._axis_tick$_lerpDouble$3(animatedTick._previousOpacity, animatedTick._targetOpacity, animationPercent); animatedTick._currentOpacity = t4; } } animatedTick.locationPx = animatedTick._currentLocation; t5 = animatedTick.textElement; if (t4 != t5._text_element$_opacity) { t5._painterReady = false; t5._text_element$_opacity = t4; } t4 = _this.axisOrientation; t4.toString; t5 = _this._componentBounds; t5.toString; t6 = _this.hasTickCollision; t7 = _this._axis$_drawAreaBounds; t7.toString; t3.draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, animatedTick, t5, t6, t7, i === 0, i === t2.length - 1, t4); } if (_this.get$drawAxisLine()) { t1 = _this.tickDrawStrategy; t1.toString; t2 = _this.axisOrientation; t2.toString; t3 = _this._componentBounds; t3.toString; t1.drawAxisLine$3(canvas, t2, t3); } }, $isLayoutView: 1, set$graphicsFactory(val) { return this.graphicsFactory = val; } }; A.Axis__updateAxisTicks_closure.prototype = { call$1(t) { return J.$eq$(t.value, this.animatedTick.value); }, $signature() { return A._instanceType(this.$this)._eval$1("bool(Tick)"); } }; A.Axis__updateAxisTicks_closure0.prototype = { call$1(tick) { var t1 = this.$this, animatedTick = A.AxisTicks$(tick, A._instanceType(t1)._eval$1("Axis.D")), t2 = animatedTick.locationPx; t2.toString; if (this.scale.isRangeValueWithinViewport$1(t2)) { t2 = t1._previousScale; if (t2 != null) { t2 = t2.$index(0, tick.value); animatedTick._markedForRemoval = false; animatedTick._previousLocation = t2; animatedTick._previousOpacity = 0; animatedTick._targetOpacity = 1; } t1._axisTicks.push(animatedTick); } }, $signature() { return A._instanceType(this.$this)._eval$1("~(Tick)"); } }; A.Axis_paint_closure.prototype = { call$1(t) { return t._markedForRemoval; }, $signature() { return A._instanceType(this.$this)._eval$1("bool(AxisTicks)"); } }; A.NumericAxis.prototype = {}; A.OrdinalAxis.prototype = { layout$2(_, componentBounds, drawAreaBounds) { this.super$Axis$layout(0, componentBounds, drawAreaBounds); type$.OrdinalScale._as(this.scale).setViewport$2(null, null); } }; A.AxisTicks.prototype = { _axis_tick$_lerpDouble$3(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) a = 0; return a + ((b == null ? 0 : b) - a) * t; }, compareTo$1(_, other) { var t2, t1 = this._targetLocation; t1.toString; t2 = other._targetLocation; t2.toString; return B.JSNumber_methods.compareTo$1(t1, t2); }, $isComparable: 1 }; A.CollisionReport.prototype = {}; A.BaseRenderSpec.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.BaseRenderSpec) if (J.$eq$(this.labelStyle, other.labelStyle)) if (this.labelRotation == other.labelRotation) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return (((((((((J.get$hashCode$(_this.labelStyle) * 37 + B.JSNull_methods.get$hashCode(_this.labelAnchor)) * 37 + B.JSNull_methods.get$hashCode(_this.labelJustification)) * 37 + B.JSNull_methods.get$hashCode(_this.labelOffsetFromTickPx)) * 37 + B.JSNull_methods.get$hashCode(_this.labelCollisionOffsetFromTickPx)) * 37 + B.JSNull_methods.get$hashCode(_this.labelOffsetFromAxisPx)) * 37 + B.JSNull_methods.get$hashCode(_this.labelCollisionOffsetFromAxisPx)) * 37 + B.JSNull_methods.get$hashCode(_this.minimumPaddingBetweenLabelsPx)) * 37 + J.get$hashCode$(_this.labelRotation)) * 37 + B.JSNull_methods.get$hashCode(_this.labelCollisionRotation)) * 37 + B.JSNull_methods.get$hashCode(_this.axisLineStyle); } }; A.BaseTickDrawStrategy.prototype = { BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx(chartContext, graphicsFactory, axisLineStyleSpec, labelAnchor, labelCollisionOffsetFromAxisPx, labelCollisionOffsetFromTickPx, labelCollisionRotation, labelJustification, labelOffsetFromAxisPx, labelOffsetFromTickPx, labelRotation, labelStyleSpec, minimumPaddingBetweenLabelsPx, $D) { var t4, _null = null, t1 = this.labelStyle, t2 = labelStyleSpec == null, t3 = t2 ? _null : labelStyleSpec.color; if (t3 == null) { $.$get$StyleFactory__styleFactory().toString; t3 = new A.Color0(66, 66, 66, 255, _null, _null); } t3 = t1.color = t3; t1.fontFamily = null; t2 = t2 ? _null : labelStyleSpec.fontSize; t1.fontSize = t2 == null ? 12 : t2; t1.lineHeight = null; t1.fontWeight = "400"; t2 = this.axisLineStyle; t4 = axisLineStyleSpec == null ? _null : axisLineStyleSpec.color; if (t4 == null) { t1.toString; t1 = t3; } else t1 = t4; t2.color = t1; t2.dashPattern = null; t2.strokeWidth = 1; }, decorateTicks$1(ticks) { var t1, t2, _i, textElement, t3; for (t1 = ticks.length, t2 = this.labelStyle, _i = 0; _i < ticks.length; ticks.length === t1 || (0, A.throwConcurrentModificationError)(ticks), ++_i) { textElement = ticks[_i].textElement; t3 = textElement._text_element$_textStyle; if (t3 == null) textElement.set$textStyle(0, t2); else { if (t3.color == null) t3.color = t2.color; if (t3.fontFamily == null) t3.fontFamily = t2.fontFamily; if (t3.fontSize == null) t3.fontSize = t2.fontSize; if (t3.fontWeight == null) t3.fontWeight = t2.fontWeight; t3.lineHeight = t2.lineHeight; } } }, updateTickWidth$5$collision(ticks, maxWidth, maxHeight, orientation, collision) { var t3, _this = this, isVertical = orientation != null && orientation === B.AxisOrientation_1 || orientation === B.AxisOrientation_3, rotationRelativeToAxis = collision && _this._rotateOnCollision ? _this._labelCollisionRotation : _this._labelDefaultRotation, rotationRads = Math.abs((rotationRelativeToAxis - (isVertical ? 90 : 0)) * 0.017453292519943295), t1 = isVertical ? maxWidth : maxHeight, t2 = collision && _this._rotateOnCollision ? _this._labelCollisionOffsetFromAxisPx : _this._labelDefaultOffsetFromAxisPx, maxTextWidth = Math.sin(rotationRads) === 0 ? null : B.JSNumber_methods.floor$0((t1 - t2) / Math.sin(rotationRads)); for (t1 = J.get$iterator$ax(ticks), t2 = maxTextWidth != null; t1.moveNext$0();) { t3 = t1.get$current(t1); if (t2) { t3.textElement.set$maxWidth(0, maxTextWidth); t3.textElement.set$maxWidthStrategy(B.MaxWidthStrategy_1); } else { t3.textElement.set$maxWidth(0, null); t3.textElement.set$maxWidthStrategy(null); } } }, collides$2(ticks, orientation) { var vertical, t1, t2, t3, t4, t5, t6, t7, previousEnd, _i, tick, t8, tickSize, t9, adjustedHeight, collides, halfHeight, textDirection, adjustedWidth, halfWidth, _this = this; if (ticks == null) return A.CollisionReport$(false, ticks, false, A._instanceType(_this)._precomputed1); vertical = orientation === B.AxisOrientation_3 || orientation === B.AxisOrientation_1; t1 = A._instanceType(_this); t2 = A._setArrayType([], t1._eval$1("JSArray>")); for (t3 = J.get$iterator$ax(ticks); t3.moveNext$0();) { t4 = t3.get$current(t3); if (t4.locationPx != null) t2.push(t4); } B.JSArray_methods.sort$1(t2, new A.BaseTickDrawStrategy_collides_closure(_this)); for (t3 = t2.length, t4 = _this.minimumPaddingBetweenLabelsPx, t5 = _this._defaultTickLabelAnchor, t6 = _this.chartContext, t7 = t5 === B.TickLabelAnchor_3, previousEnd = -1 / 0, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { tick = t2[_i]; t8 = tick.textElement; if (!t8._painterReady) t8._refreshPainter$0(); tickSize = A._lateReadCheck(t8.__TextElement__measurement, "_measurement"); t8 = tick.locationPx; t8.toString; if (vertical) { t9 = tickSize == null ? null : tickSize.verticalSliceWidth; adjustedHeight = (t9 == null ? 0 : t9) + t4; if (t7) if (tick === B.JSArray_methods.get$first(t2)) { previousEnd = t8 + adjustedHeight; collides = false; } else if (tick === B.JSArray_methods.get$last(t2)) { collides = previousEnd > t8 - adjustedHeight; previousEnd = t8; } else { halfHeight = adjustedHeight / 2; collides = previousEnd > t8 - halfHeight; previousEnd = t8 + halfHeight; } else { collides = previousEnd > t8; previousEnd = t8 + adjustedHeight; } } else { if (t6._chartContainerIsRtl) t9 = true; else t9 = false; textDirection = _this._normalizeHorizontalAnchor$4(t5, t9, tick === B.JSArray_methods.get$first(t2), tick === B.JSArray_methods.get$last(t2)); t9 = tickSize == null ? null : tickSize.horizontalSliceWidth; adjustedWidth = (t9 == null ? 0 : t9) + t4; switch (textDirection.index) { case 0: collides = previousEnd > t8; previousEnd = t8 + adjustedWidth; break; case 1: collides = previousEnd > t8 - adjustedWidth; previousEnd = t8; break; case 2: halfWidth = adjustedWidth / 2; collides = previousEnd > t8 - halfWidth; previousEnd = t8 + halfWidth; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } if (collides) return new A.CollisionReport(true, t2, false, t1._eval$1("CollisionReport<1>")); } return A.CollisionReport$(false, t2, false, t1._precomputed1); }, measureVerticallyDrawnTicks$4$collision(ticks, maxWidth, maxHeight, collision) { return A.ViewMeasuredSizes$(maxHeight, J.round$0$n(J.fold$1$2$ax(ticks, 0, new A.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure(this, collision), type$.double))); }, measureHorizontallyDrawnTicks$4$collision(ticks, maxWidth, maxHeight, collision) { var _this = this, maxVerticalSliceWidth = J.round$0$n(J.fold$1$2$ax(ticks, 0, new A.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure(_this, collision), type$.double)), t1 = collision && _this._rotateOnCollision ? _this._labelCollisionOffsetFromAxisPx : _this._labelDefaultOffsetFromAxisPx; return A.ViewMeasuredSizes$(Math.min(A.checkNum(maxHeight), maxVerticalSliceWidth + t1), maxWidth); }, drawAxisLine$3(canvas, orientation, axisBounds) { var start, end, t1, t2, t3, t4; switch (orientation) { case B.AxisOrientation_0: start = axisBounds.get$bottomLeft(axisBounds); end = axisBounds.get$bottomRight(axisBounds); break; case B.AxisOrientation_2: start = new A.Point(axisBounds.left, axisBounds.top, A._instanceType(axisBounds)._eval$1("Point<1>")); end = axisBounds.get$topRight(axisBounds); break; case B.AxisOrientation_1: start = new A.Point(axisBounds.left, axisBounds.top, A._instanceType(axisBounds)._eval$1("Point<1>")); end = axisBounds.get$bottomLeft(axisBounds); break; case B.AxisOrientation_3: start = axisBounds.get$topRight(axisBounds); end = axisBounds.get$bottomRight(axisBounds); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A._setArrayType([start, end], type$.JSArray_Point_num); t2 = this.axisLineStyle; t3 = t2.color; t4 = t2.strokeWidth; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t2.dashPattern, t3, t1, t3, t4); }, drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var isRtl, labelElements, labelHeight, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, multiLineLabelOffset, _i, line, t17, y, t18, t19, direction, x, offsetY, textDirection, offsetX, _this = this, _s12_ = "_measurement", _s12_0 = "_textPainter", locationPx = tick.locationPx; if (locationPx == null) locationPx = 0; isRtl = _this.chartContext.get$isRtl(); labelElements = _this.splitLabel$1(tick.textElement); labelHeight = _this.getLabelHeight$1(labelElements); for (t1 = labelElements.length, t2 = canvas.canvas, t3 = _this._labelDefaultRotation, t4 = locationPx - labelHeight / 2, t5 = _this._defaultTickLabelAnchor, t6 = _this.tickLabelJustification === B.TickLabelJustification_0, t7 = orientation === B.AxisOrientation_3, t8 = orientation === B.AxisOrientation_2, t9 = !t8, t10 = orientation === B.AxisOrientation_0, t11 = _this._labelDefaultOffsetFromAxisPx, t12 = _this._rotateOnCollision, t13 = _this._labelCollisionOffsetFromAxisPx, t14 = _this._labelDefaultOffsetFromTickPx, t15 = _this._labelCollisionOffsetFromTickPx, t16 = _this._labelCollisionRotation, multiLineLabelOffset = 0, _i = 0; _i < labelElements.length; labelElements.length === t1 || (0, A.throwConcurrentModificationError)(labelElements), ++_i) { line = labelElements[_i]; if (!t9 || t10) { if (t8) { t17 = axisBounds.top; y = t17 + (collision && t12 ? t13 : t11); } else { t17 = A._instanceType(axisBounds)._precomputed1._as(axisBounds.top + axisBounds.height); t18 = B.JSNumber_methods.toInt$0(labelHeight); t19 = collision && t12 ? t13 : t11; y = t17 - (t18 - multiLineLabelOffset) - t19; } direction = _this._normalizeHorizontalAnchor$4(collision && t12 ? B.TickLabelAnchor_2 : t5, isRtl, isFirst, isLast); J.set$textDirection$x(line, direction); switch (direction.index) { case 1: x = B.JSNumber_methods.toInt$0(locationPx + (collision && t12 ? t15 : t14) + 0); break; case 0: x = B.JSNumber_methods.toInt$0(locationPx - (collision && t12 ? t15 : t14) - 0); break; case 2: default: x = B.JSNumber_methods.toInt$0(locationPx - 0); break; } } else { if (t7) if (t6) { t17 = A._instanceType(axisBounds)._precomputed1._as(axisBounds.left + axisBounds.width); x = t17 - (collision && t12 ? t13 : t11); J.set$textDirection$x(line, B.TextDirection_10); } else { x = axisBounds.left; J.set$textDirection$x(line, B.TextDirection_00); } else if (t6) { t17 = axisBounds.left; x = t17 + (collision && t12 ? t13 : t11); J.set$textDirection$x(line, B.TextDirection_00); } else { x = A._instanceType(axisBounds)._precomputed1._as(axisBounds.left + axisBounds.width); J.set$textDirection$x(line, B.TextDirection_10); } switch (_this.normalizeVerticalAnchor$3(collision && t12 ? B.TickLabelAnchor_2 : t5, isFirst, isLast).index) { case 0: t17 = collision && t12 ? t15 : t14; y = B.JSNumber_methods.toInt$0(locationPx - (labelHeight - multiLineLabelOffset) - t17 - 0); break; case 2: y = B.JSNumber_methods.toInt$0(locationPx + (collision && t12 ? t15 : t14) + 0); break; case 1: default: y = B.JSNumber_methods.toInt$0(t4 + 0); break; } } offsetY = y + multiLineLabelOffset; t17 = (collision && t12 ? t16 : t3) * 0.017453292519943295; textDirection = line._text_element$_textDirection; if (!line._painterReady) line._refreshPainter$0(); t18 = A._lateReadCheck(line.__TextElement__measurement, _s12_); if (t17 !== 0) { if (textDirection === B.TextDirection_10) offsetY += B.JSNumber_methods.toInt$0(t18.horizontalSliceWidth); if (!line._painterReady) line._refreshPainter$0(); t18 = A._lateReadCheck(line.__TextElement__textPainter, _s12_0)._paragraph; t18 = t18.get$height(t18); t18.toString; t18 = B.JSNumber_methods.ceil$0(Math.ceil(t18) * 0.1); t2.save$0(0); t2.translate$2(0, x - t18, offsetY); t2.rotate$1(0, t17); if (!line._painterReady) line._refreshPainter$0(); A._lateReadCheck(line.__TextElement__textPainter, _s12_0).paint$2(t2, new A.Offset(0, 0)); t2.restore$0(0); } else { offsetX = textDirection === B.TextDirection_10 ? x - B.JSNumber_methods.toInt$0(t18.horizontalSliceWidth) : x; if (textDirection === B.TextDirection_2) offsetX -= B.JSNumber_methods.ceil$0(t18.horizontalSliceWidth / 2); if (!line._painterReady) line._refreshPainter$0(); t17 = A._lateReadCheck(line.__TextElement__textPainter, _s12_0)._paragraph; t17 = t17.get$height(t17); t17.toString; t17 = B.JSNumber_methods.ceil$0(Math.ceil(t17) * 0.1); if (!line._painterReady) line._refreshPainter$0(); t18 = A._lateReadCheck(line.__TextElement__textPainter, _s12_0); t18.toString; offsetX.toString; t18.paint$2(t2, new A.Offset(offsetX, offsetY - t17)); } if (!line._painterReady) line._refreshPainter$0(); multiLineLabelOffset += 2 + B.JSNumber_methods.round$0(A._lateReadCheck(line.__TextElement__measurement, _s12_).verticalSliceWidth); } }, _normalizeHorizontalAnchor$4(anchor, isRtl, isFirst, isLast) { switch (anchor.index) { case 0: return isRtl ? B.TextDirection_00 : B.TextDirection_10; case 2: return isRtl ? B.TextDirection_10 : B.TextDirection_00; case 3: if (isFirst) return B.TextDirection_00; if (isLast) return B.TextDirection_10; return B.TextDirection_2; case 1: default: return B.TextDirection_2; } }, normalizeVerticalAnchor$3(anchor, isFirst, isLast) { switch (anchor.index) { case 0: return B._PixelVerticalDirection_2; case 2: return B._PixelVerticalDirection_0; case 3: if (isFirst) return B._PixelVerticalDirection_0; if (isLast) return B._PixelVerticalDirection_2; return B._PixelVerticalDirection_1; case 1: default: return B._PixelVerticalDirection_1; } }, calculateWidthForRotatedLabel$3(rotation, labelHeight, labelLength) { var rotationRadian; if (rotation === 0) return labelLength; rotationRadian = rotation * 0.017453292519943295; return (labelLength + labelHeight / 2 * Math.tan(rotationRadian)) * Math.cos(rotationRadian); }, calculateHeightForRotatedLabel$3(rotation, labelHeight, labelLength) { var rotationRadian; if (rotation === 0) return labelHeight; rotationRadian = rotation * 0.017453292519943295; return Math.max(labelHeight, (labelLength + labelHeight / 2 * Math.tan(rotationRadian)) * Math.cos(1.5707963267948966 - Math.abs(rotationRadian))); }, splitLabel$1(wholeLabel) { var t1 = type$.MappedListIterable_String_TextElement; return A.List_List$of(new A.MappedListIterable(A._setArrayType(wholeLabel.text.split("\n"), type$.JSArray_String), new A.BaseTickDrawStrategy_splitLabel_closure(this, wholeLabel), t1), true, t1._eval$1("ListIterable.E")); }, getLabelWidth$1(labelElements) { return new A.MappedListIterable(labelElements, new A.BaseTickDrawStrategy_getLabelWidth_closure(), A._arrayInstanceType(labelElements)._eval$1("MappedListIterable<1,double>")).reduce$1(0, B.CONSTANT0); }, getLabelHeight$1(labelElements) { var t1, numLines; if (labelElements.length === 0) return 0; t1 = B.JSArray_methods.get$first(labelElements).get$measurement(); numLines = labelElements.length; return t1.verticalSliceWidth * numLines + 2 * (numLines - 1); } }; A.BaseTickDrawStrategy_collides_closure.prototype = { call$2(a, b) { var t2, t1 = a.locationPx; t1.toString; t2 = b.locationPx; t2.toString; return B.JSNumber_methods.compareTo$1(t1, t2); }, $signature() { return A._instanceType(this.$this)._eval$1("int(Tick<1>,Tick<1>)"); } }; A.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure.prototype = { call$2(prevMax, tick) { var t1 = this.$this, labelElements = t1.splitLabel$1(tick.textElement), t2 = this.collision, t3 = t2 && t1._rotateOnCollision ? t1._labelCollisionRotation : t1._labelDefaultRotation; t3 = t1.calculateWidthForRotatedLabel$3(t3, t1.getLabelHeight$1(labelElements), t1.getLabelWidth$1(labelElements)); t1 = t2 && t1._rotateOnCollision ? t1._labelCollisionOffsetFromAxisPx : t1._labelDefaultOffsetFromAxisPx; return Math.max(A.checkNum(prevMax), t3 + t1); }, $signature() { return A._instanceType(this.$this)._eval$1("double(double,Tick<1>)"); } }; A.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure.prototype = { call$2(prevMax, tick) { var t1 = this.$this, labelElements = t1.splitLabel$1(tick.textElement), t2 = this.collision && t1._rotateOnCollision ? t1._labelCollisionRotation : t1._labelDefaultRotation; t1 = t1.calculateHeightForRotatedLabel$3(t2, t1.getLabelHeight$1(labelElements), t1.getLabelWidth$1(labelElements)); return Math.max(A.checkNum(prevMax), t1); }, $signature() { return A._instanceType(this.$this)._eval$1("double(double,Tick<1>)"); } }; A.BaseTickDrawStrategy_splitLabel_closure.prototype = { call$1(line) { var t1 = this.$this.graphicsFactory.createTextElement$1(J.trim$0$s(line)); t1.set$textStyle(0, this.wholeLabel._text_element$_textStyle); return t1; }, $signature: 2873 }; A.BaseTickDrawStrategy_getLabelWidth_closure.prototype = { call$1(line) { return line.get$measurement().horizontalSliceWidth; }, $signature: 2872 }; A._PixelVerticalDirection.prototype = { toString$0(_) { return "_PixelVerticalDirection." + this._core$_name; } }; A.GridlineRendererSpec.prototype = { createDrawStrategy$2(context, graphicsFactory) { var t4, t5, t6, _this = this, t1 = _this.lineStyle, t2 = _this.labelRotation, t3 = _this.$ti; $.$get$StyleFactory__styleFactory().toString; graphicsFactory.toString; t4 = new A.LineStyle(); t5 = t1 == null ? null : t1.color; t4.color = t5 == null ? new A.Color0(224, 224, 224, 255, null, null) : t5; t4.strokeWidth = 1; t5 = graphicsFactory.createTextPaint$0(); t6 = t2 == null ? 0 : t2; t4 = new A.GridlineTickDrawStrategy(0, t4, context, graphicsFactory, new A.LineStyle(), t5, B.TickLabelJustification_0, B.TickLabelAnchor_1, 5, 5, 5, 5, t6, 0, false, 50, t3._eval$1("GridlineTickDrawStrategy<1>")); t4.BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx(context, graphicsFactory, t1, _this.labelAnchor, _this.labelCollisionOffsetFromAxisPx, _this.labelCollisionOffsetFromTickPx, _this.labelCollisionRotation, _this.labelJustification, _this.labelOffsetFromAxisPx, _this.labelOffsetFromTickPx, t2, _this.labelStyle, _this.minimumPaddingBetweenLabelsPx, t3._precomputed1); return t4; }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.GridlineRendererSpec && this.super$SmallTickRendererSpec$$eq(0, other); else t1 = true; return t1; } }; A.GridlineTickDrawStrategy.prototype = { draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var t2, lineStart, lineEnd, t3, t4, _this = this, t1 = tick.locationPx; t1.toString; switch (orientation) { case B.AxisOrientation_0: t2 = type$.Point_num; lineStart = new A.Point(t1, A._instanceType(axisBounds)._precomputed1._as(axisBounds.top + axisBounds.height) - _this.tickLength, t2); lineEnd = new A.Point(t1, A._instanceType(drawAreaBounds)._precomputed1._as(drawAreaBounds.top + drawAreaBounds.height), t2); break; case B.AxisOrientation_2: t2 = type$.Point_num; lineStart = new A.Point(t1, drawAreaBounds.top + _this.tickLength, t2); lineEnd = new A.Point(t1, axisBounds.top, t2); break; case B.AxisOrientation_1: if ((collision && _this._rotateOnCollision ? B.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) !== B.TickLabelAnchor_2) t2 = (collision && _this._rotateOnCollision ? B.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) === B.TickLabelAnchor_0; else t2 = true; t3 = type$.Point_num; lineStart = t2 ? new A.Point(A._instanceType(axisBounds)._precomputed1._as(axisBounds.left + axisBounds.width), t1, t3) : new A.Point(axisBounds.left + _this.tickLength, t1, t3); lineEnd = new A.Point(drawAreaBounds.left, t1, t3); break; case B.AxisOrientation_3: if ((collision && _this._rotateOnCollision ? B.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) !== B.TickLabelAnchor_2) t2 = (collision && _this._rotateOnCollision ? B.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) === B.TickLabelAnchor_0; else t2 = true; t3 = type$.Point_num; lineStart = t2 ? new A.Point(axisBounds.left, t1, t3) : new A.Point(A._instanceType(axisBounds)._precomputed1._as(axisBounds.left + axisBounds.width) - _this.tickLength, t1, t3); lineEnd = new A.Point(A._instanceType(drawAreaBounds)._precomputed1._as(drawAreaBounds.left + drawAreaBounds.width), t1, t3); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A._setArrayType([lineStart, lineEnd], type$.JSArray_Point_num); t2 = _this.lineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); _this.drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation); } }; A.NoneDrawStrategy.prototype = { updateTickWidth$5$collision(ticks, maxWidth, maxHeight, orientation, collision) { }, collides$2(ticks, orientation) { return A.CollisionReport$(null, ticks, false, this.$ti._precomputed1); }, decorateTicks$1(ticks) { B.JSArray_methods.forEach$1(ticks, new A.NoneDrawStrategy_decorateTicks_closure(this)); }, drawAxisLine$3(canvas, orientation, axisBounds) { var start, end, t1, t2, t3, t4; switch (orientation) { case B.AxisOrientation_0: start = axisBounds.get$bottomLeft(axisBounds); end = axisBounds.get$bottomRight(axisBounds); break; case B.AxisOrientation_2: start = new A.Point(axisBounds.left, axisBounds.top, A._instanceType(axisBounds)._eval$1("Point<1>")); end = axisBounds.get$topRight(axisBounds); break; case B.AxisOrientation_1: start = new A.Point(axisBounds.left, axisBounds.top, A._instanceType(axisBounds)._eval$1("Point<1>")); end = axisBounds.get$bottomLeft(axisBounds); break; case B.AxisOrientation_3: start = axisBounds.get$topRight(axisBounds); end = axisBounds.get$bottomRight(axisBounds); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A._setArrayType([start, end], type$.JSArray_Point_num); t2 = this.axisLineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); }, draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { }, measureHorizontallyDrawnTicks$4$collision(ticks, maxWidth, maxHeight, collision) { return A.ViewMeasuredSizes$(0, 0); }, measureVerticallyDrawnTicks$4$collision(ticks, maxWidth, maxHeight, collision) { return A.ViewMeasuredSizes$(0, 0); } }; A.NoneDrawStrategy_decorateTicks_closure.prototype = { call$1(tick) { var t1 = this.$this.noneTextStyle; tick.textElement.set$textStyle(0, t1); return t1; }, $signature() { return this.$this.$ti._eval$1("~(Tick<1>)"); } }; A.SmallTickRendererSpec.prototype = { createDrawStrategy$2(context, graphicsFactory) { var t4, t5, t6, _this = this, t1 = _this.lineStyle, t2 = _this.labelRotation, t3 = A._instanceType(_this); $.$get$StyleFactory__styleFactory().toString; graphicsFactory.toString; t4 = new A.LineStyle(); t5 = t1 == null ? null : t1.color; t4.color = t5 == null ? B.Color_ePM : t5; t4.strokeWidth = 1; t5 = graphicsFactory.createTextPaint$0(); t6 = t2 == null ? 0 : t2; t4 = new A.SmallTickDrawStrategy(3, t4, context, graphicsFactory, new A.LineStyle(), t5, B.TickLabelJustification_0, B.TickLabelAnchor_1, 5, 5, 5, 5, t6, 0, false, 50, t3._eval$1("SmallTickDrawStrategy<1>")); t4.BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx(context, graphicsFactory, t1, _this.labelAnchor, _this.labelCollisionOffsetFromAxisPx, _this.labelCollisionOffsetFromTickPx, _this.labelCollisionRotation, _this.labelJustification, _this.labelOffsetFromAxisPx, _this.labelOffsetFromTickPx, t2, _this.labelStyle, _this.minimumPaddingBetweenLabelsPx, t3._precomputed1); return t4; }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.SmallTickRendererSpec) if (J.$eq$(this.lineStyle, other.lineStyle)) t1 = this.super$BaseRenderSpec$$eq(0, other); else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return (J.get$hashCode$(_this.lineStyle) * 37 + B.JSNull_methods.get$hashCode(_this.tickLengthPx)) * 37 + A.BaseRenderSpec.prototype.get$hashCode.call(_this, _this); } }; A.SmallTickDrawStrategy.prototype = { draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var t2, t3, tickStart, tickEnd, tickPositions, t4, tickLength = this.tickLength, t1 = tick.locationPx; t1.toString; switch (orientation) { case B.AxisOrientation_0: t2 = A._instanceType(axisBounds)._precomputed1._as(axisBounds.top + axisBounds.height); t3 = type$.Point_num; tickStart = new A.Point(t1, t2 - tickLength, t3); tickEnd = new A.Point(t1, t2, t3); break; case B.AxisOrientation_2: t2 = axisBounds.top; t3 = type$.Point_num; tickStart = new A.Point(t1, t2, t3); tickEnd = new A.Point(t1, t2 + tickLength, t3); break; case B.AxisOrientation_1: t2 = axisBounds.left; t3 = type$.Point_num; tickStart = new A.Point(t2, t1, t3); tickEnd = new A.Point(t2 + tickLength, t1, t3); break; case B.AxisOrientation_3: t2 = A._instanceType(axisBounds)._precomputed1._as(axisBounds.left + axisBounds.width); t3 = type$.Point_num; tickStart = new A.Point(t2 - tickLength, t1, t3); tickEnd = new A.Point(t2, t1, t3); break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); tickStart = null; tickEnd = null; } tickPositions = [tickStart, tickEnd]; t1 = A._setArrayType([B.JSArray_methods.get$first(tickPositions), B.JSArray_methods.get$last(tickPositions)], type$.JSArray_Point_num); t2 = this.lineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); this.drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation); } }; A.LinearScale.prototype = { copy$0(_) { var t3, _this = this, t1 = _this._domainInfo, t2 = new A.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0); t2._dataDomainStart = t1._dataDomainStart; t2._dataDomainEnd = t1._dataDomainEnd; t2._previouslyAddedDomain = t1._previouslyAddedDomain; t2._minimumDetectedDomainStep = t1._minimumDetectedDomainStep; t1 = _this._viewportSettings; t3 = new A.LinearScaleViewportSettings(); t3.range = t1.range; t3.scalingFactor = t1.scalingFactor; t3.translatePx = t1.translatePx; t3._manualDomainExtent = t1._manualDomainExtent; t3._domainExtent = t1._domainExtent; return new A.LinearScale(t2, t3, new A.LinearScaleFunction(), _this.rangeBandConfig, _this.stepSizeConfig); }, addDomain$1(domainValue) { this._domainInfo.addDomainValue$1(domainValue); }, resetDomain$0() { this._scaleReady = false; var t1 = this._domainInfo; t1._previouslyAddedDomain = null; t1._dataDomainStart = 1 / 0; t1._dataDomainEnd = -1 / 0; t1._minimumDetectedDomainStep = 1 / 0; }, resetViewportSettings$0() { var t1 = this._viewportSettings; t1.scalingFactor = 1; t1.translatePx = 0; t1._domainExtent = null; t1._manualDomainExtent = false; }, compareDomainValueToViewport$1(domainValue) { var dataExtent = this._viewportSettings._domainExtent; return (dataExtent == null ? this._domainInfo.get$extent() : dataExtent).compareValue$1(domainValue); }, set$range(extent) { this._viewportSettings.range = extent; this._scaleReady = false; }, get$range() { return this._viewportSettings.range; }, $index(_, domainValue) { this._configureScale$0(); return this._scaleFunction.$index(0, domainValue); }, reverse$1(_, viewPixels) { var t1; this._configureScale$0(); t1 = this._scaleFunction; return (viewPixels - t1.rangeTranslate) / t1.scalingFactor - t1.domainTranslate; }, get$rangeBand() { this._configureScale$0(); return this._scaleFunction.rangeBandPixels; }, isRangeValueWithinViewport$1(rangeValue) { var t1 = this._viewportSettings.range, t2 = t1.start; t1 = t1.end; return A.withinBounds(rangeValue, Math.min(A.checkNum(t2), A.checkNum(t1)), Math.max(A.checkNum(t2), A.checkNum(t1))); }, _configureScale$0() { var t1, t2, t3, viewportDomainDiff, t4, t5, t6, reservedRangePixelShift, viewportStart, _this = this; if (_this._scaleReady) return; t1 = _this._viewportSettings; t2 = _this._domainInfo; if (t1._manualDomainExtent) { t3 = t1._domainExtent; viewportDomainDiff = t3 == null ? null : t3.max - t3.min; t3 = t2.get$extent(); if (t3.max - t3.min !== 0) { t3 = t2.get$extent(); viewportDomainDiff.toString; t1.scalingFactor = (t3.max - t3.min) / viewportDomainDiff; } else { t1.scalingFactor = 1; t3 = t1._domainExtent; t2.extendDomain$1(t3 == null ? null : t3.min); t3 = t1._domainExtent; t2.extendDomain$1(t3 == null ? null : t3.max); } } t3 = _this._scaleFunction; t4 = _this.rangeBandConfig; t5 = t1.range; t3._updateStepSizeAndScaleFactor$6(t1, t2, t5.end - t5.start, t3.getStepReservationPercent$2(t2.get$extent().min === t2._dataDomainStart, t2.get$extent().max === t2._dataDomainEnd), t4, _this.stepSizeConfig); t4 = t3.scalingFactor; if (t1._manualDomainExtent) t1.translatePx = -t4 * (t1._domainExtent.min - t2.get$extent().min); t4 = _this.rangeBandConfig; t5 = t2.get$extent(); if (t5.max - t5.min === 0) { t5 = t1.range; t6 = t5.start; t3.rangeTranslate = t6 + (t5.end - t6) / 2; } else { reservedRangePixelShift = t2.get$extent().min === t2._dataDomainStart ? t3.stepSizePixels / 2 : 0; t3.rangeTranslate = t1.range.start + t1.translatePx + reservedRangePixelShift; } t3.domainTranslate = -1 * t2.get$extent().min; t3.rangeBandPixels = t3._calculateRangeBandSize$1(t4); t3 = t3.scalingFactor; if (!t1._manualDomainExtent) { t4 = t2.get$extent(); t5 = t1.scalingFactor; viewportStart = -t1.translatePx / t3 + t2.get$extent().min; t1._domainExtent = new A.NumericExtents(viewportStart, viewportStart + (t4.max - t4.min) / t5); } _this._scaleReady = true; }, get$rangeBandConfig() { return this.rangeBandConfig; }, set$rangeBandConfig(val) { return this.rangeBandConfig = val; } }; A.LinearScaleDomainInfo.prototype = { reset$0(_) { var _this = this; _this._previouslyAddedDomain = null; _this._dataDomainStart = 1 / 0; _this._dataDomainEnd = -1 / 0; _this._minimumDetectedDomainStep = 1 / 0; }, addDomainValue$1(domainValue) { var t1, domainStep, _this = this; if (domainValue == null || !isFinite(domainValue)) return; _this.extendDomain$1(domainValue); t1 = _this._previouslyAddedDomain; if (t1 != null) { domainStep = Math.abs(domainValue - t1); if (domainStep !== 0 && domainStep < _this._minimumDetectedDomainStep) _this._minimumDetectedDomainStep = domainStep; } _this._previouslyAddedDomain = domainValue; }, extendDomain$1(domainValue) { var domainExtended, _this = this; if (domainValue == null || !isFinite(domainValue)) return false; if (domainValue < _this._dataDomainStart) { _this._dataDomainStart = domainValue; domainExtended = true; } else domainExtended = false; if (domainValue > _this._dataDomainEnd) { _this._dataDomainEnd = domainValue; domainExtended = true; } return domainExtended; }, get$extent() { var tmpDomainEnd, tmpDomainStart = this._dataDomainStart; tmpDomainStart = isFinite(tmpDomainStart) ? tmpDomainStart : 0; tmpDomainEnd = this._dataDomainEnd; tmpDomainEnd = isFinite(tmpDomainEnd) ? tmpDomainEnd : 1; return new A.NumericExtents(tmpDomainStart, tmpDomainEnd); } }; A.LinearScaleFunction.prototype = { $index(_, domainValue) { return (domainValue + this.domainTranslate) * this.scalingFactor + this.rangeTranslate; }, getStepReservationPercent$2(hasHalfStepAtStart, hasHalfStepAtEnd) { if (!hasHalfStepAtStart && !hasHalfStepAtEnd) return 0; if (hasHalfStepAtStart && hasHalfStepAtEnd) return 1; return 0.5; }, _calculateRangeBandSize$1(rangeBandConfig) { switch (rangeBandConfig.type.index) { case 2: return rangeBandConfig.size * this.scalingFactor; case 1: return rangeBandConfig.size; case 5: return this.stepSizePixels - rangeBandConfig.size; case 4: case 3: return this.stepSizePixels * rangeBandConfig.size; case 0: return 0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _updateStepSizeAndScaleFactor$6(viewportSettings, domainInfo, rangeDiff, reservedRangePercentOfStep, rangeBandConfig, stepSizeConfig) { var minimumDetectedDomainStep, _this = this, t1 = domainInfo.get$extent(), domainDiff = t1.max - t1.min; if (rangeBandConfig.type !== B.RangeBandType_0) switch (0) { case 0: minimumDetectedDomainStep = domainInfo._minimumDetectedDomainStep; if (isFinite(minimumDetectedDomainStep)) { t1 = viewportSettings.scalingFactor * (rangeDiff / (domainDiff + minimumDetectedDomainStep * reservedRangePercentOfStep)); _this.scalingFactor = t1; _this.stepSizePixels = minimumDetectedDomainStep * t1; } else { _this.stepSizePixels = Math.abs(rangeDiff); _this.scalingFactor = 1; } return; } _this.stepSizePixels = 0; _this.scalingFactor = domainDiff === 0 ? 1 : viewportSettings.scalingFactor * rangeDiff / domainDiff; } }; A.LinearScaleViewportSettings.prototype = { reset$0(_) { var _this = this; _this.scalingFactor = 1; _this.translatePx = 0; _this._domainExtent = null; _this._manualDomainExtent = false; } }; A.NumericExtents.prototype = { compareValue$1(value) { if (value < this.min) return -1; if (value > this.max) return 1; return 0; }, $eq(_, other) { if (other == null) return false; return other instanceof A.NumericExtents && this.min === other.min && this.max === other.max; }, get$hashCode(_) { return B.JSNumber_methods.get$hashCode(this.min) + B.JSNumber_methods.get$hashCode(this.max) * 31; }, toString$0(_) { return "Extent(" + A.S(this.min) + ", " + A.S(this.max) + ")"; } }; A.NumericTickProvider.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var t1, t2, t3, t4, t5, absoluteMinTicks, tmpMaxNumMajorTicks, mutableScale, ticks, t6, t7, tickCount, viewportDomain, selectedTicksRange, foundPreferredTicks, stepInfo, firstTick, tickCount0, lastTick, range, tickValues, preferredTicks, _this = this, _s4_ = "_low", _s5_ = "_high"; scale._configureScale$0(); t1 = scale._viewportSettings; t2 = t1._domainExtent; t3 = t2.min; _this.__NumericTickProvider__low = t3; _this.__NumericTickProvider__high = t2.max; _this.__NumericTickProvider__low = A._lateReadCheck(t3, _s4_) > 0 ? 0 : A._lateReadCheck(_this.__NumericTickProvider__low, _s4_); t2 = _this.__NumericTickProvider__high = A._lateReadCheck(_this.__NumericTickProvider__high, _s5_) < 0 ? 0 : A._lateReadCheck(_this.__NumericTickProvider__high, _s5_); if (A._lateReadCheck(t2, _s5_) == A._lateReadCheck(_this.__NumericTickProvider__low, _s4_)) if (A._lateReadCheck(_this.__NumericTickProvider__high, _s5_) === 0) _this.__NumericTickProvider__high = 1; else { t2 = A._lateReadCheck(_this.__NumericTickProvider__high, _s5_); t3 = _this.__NumericTickProvider__high; if (t2 > 0) { _this.__NumericTickProvider__high = A._lateReadCheck(t3, _s5_) * 1.05; _this.__NumericTickProvider__low = A._lateReadCheck(_this.__NumericTickProvider__low, _s4_) * 0.95; } else { _this.__NumericTickProvider__high = A._lateReadCheck(t3, _s5_) * 0.95; _this.__NumericTickProvider__low = A._lateReadCheck(_this.__NumericTickProvider__low, _s4_) * 1.05; } } scale._configureScale$0(); t2 = t1._domainExtent; t2.toString; t3 = A._lateReadCheck(_this.__NumericTickProvider__high, _s5_); t4 = A._lateReadCheck(_this.__NumericTickProvider__low, _s4_); t5 = t1.range; t5 = B.JSInt_methods.toInt$0(Math.abs(t5.end - t5.start)); absoluteMinTicks = t4 < 0 && 0 < t3 ? 3 : 2; tmpMaxNumMajorTicks = Math.max(absoluteMinTicks, B.JSNumber_methods.floor$0(t5 / 25)); if (tmpMaxNumMajorTicks !== _this._maxTickCount || absoluteMinTicks !== _this._minTickCount) { _this._maxTickCount = tmpMaxNumMajorTicks; _this._minTickCount = absoluteMinTicks; } mutableScale = viewportExtensionEnabled ? A.LinearScale$_copy(scale) : null; ticks = A._setArrayType([], type$.JSArray_Tick_num); t5 = _this._maxTickCount; t5.toString; t6 = mutableScale == null; t7 = !t6; tickCount = t5; viewportDomain = t2; selectedTicksRange = 17976931348623157e292; foundPreferredTicks = false; while (true) { t2 = _this._minTickCount; t2.toString; if (!(tickCount >= t2)) break; c$0: { stepInfo = _this._getStepsForTickCount$3(tickCount, t3, t4); firstTick = stepInfo.tickStart; t2 = stepInfo.stepSize; tickCount0 = tickCount - 1; lastTick = firstTick + t2 * tickCount0; range = lastTick - firstTick; if (range < selectedTicksRange || !foundPreferredTicks) { tickValues = _this._getTickValues$2(stepInfo, tickCount); if (t7) { mutableScale._scaleReady = false; t5 = mutableScale._viewportSettings; t5._domainExtent = new A.NumericExtents(firstTick, lastTick); t5._manualDomainExtent = true; } preferredTicks = _this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(tickValues, context, formatter, formatterValueCache, graphicsFactory, t6 ? scale : mutableScale, t2, tickDrawStrategy); if (tickDrawStrategy.collides$2(preferredTicks, orientation).ticksCollide) { t2 = _this._minTickCount; t2.toString; t2 = tickCount > t2; } else t2 = false; if (t2) break c$0; if (t6) viewportDomain = null; else { mutableScale._configureScale$0(); t2 = mutableScale._viewportSettings._domainExtent; t2.toString; viewportDomain = t2; } if (viewportDomain == null) { scale._configureScale$0(); t2 = t1._domainExtent; t2.toString; viewportDomain = t2; } ticks = preferredTicks; selectedTicksRange = range; foundPreferredTicks = true; } } tickCount = tickCount0; } if (viewportExtensionEnabled) { scale._configureScale$0(); t2 = !t1._domainExtent.$eq(0, viewportDomain); } else t2 = false; if (t2) { scale._scaleReady = false; t1._domainExtent = viewportDomain; t1._manualDomainExtent = true; } return ticks; }, _getStepsForTickCount$3(tickCount, high, low) { var t1, positiveRegionCount, negativeRegionCount, t2, favorPositive, favoredNum, favoredRegionCount, favoredTensBase, _i, tmpStepSize, diffTensBase, tmpStepStart, regionCount = tickCount - 1; if (high >= 0 && low <= 0) { t1 = high > 0; positiveRegionCount = B.JSNumber_methods.ceil$0(regionCount * (t1 ? Math.min(1, high / (high - low)) : 0)); negativeRegionCount = regionCount - positiveRegionCount; if (negativeRegionCount === 0 && low < 0 && regionCount > 1) { --positiveRegionCount; ++negativeRegionCount; } t1 = t1 ? high / positiveRegionCount : 0; t2 = low < 0 ? low / negativeRegionCount : 0; favorPositive = Math.abs(t1) > Math.abs(t2); favoredNum = Math.abs(favorPositive ? high : low); favoredRegionCount = favorPositive ? positiveRegionCount : negativeRegionCount; favoredTensBase = Math.abs(A.NumericTickProvider__getEnclosingPowerOfTen(favoredNum)); for (_i = 0; _i < 30; ++_i) { t1 = B.List_e5Z[_i] * favoredTensBase; tmpStepSize = t1 > 100 ? B.JSNumber_methods.roundToDouble$0(t1) : B.JSNumber_methods.roundToDouble$0(t1 * 1000000000) / 1000000000; t1 = B.JSNumber_methods.round$0(tmpStepSize); if (t1 !== tmpStepSize) continue; if (tmpStepSize * favoredRegionCount >= favoredNum) return new A._TickStepInfo(tmpStepSize, negativeRegionCount > 0 ? -1 * tmpStepSize * negativeRegionCount : 0); } } else { diffTensBase = A.NumericTickProvider__getEnclosingPowerOfTen(high - low); for (_i = 0; _i < 30; ++_i) { t1 = B.List_e5Z[_i] * diffTensBase; tmpStepSize = t1 > 100 ? B.JSNumber_methods.roundToDouble$0(t1) : B.JSNumber_methods.roundToDouble$0(t1 * 1000000000) / 1000000000; t1 = B.JSNumber_methods.round$0(tmpStepSize); if (t1 !== tmpStepSize) continue; tmpStepStart = A.NumericTickProvider__getStepLessThan(low, tmpStepSize); if (tmpStepStart + tmpStepSize * regionCount >= high) return new A._TickStepInfo(tmpStepSize, tmpStepStart); } } return new A._TickStepInfo(1, Math.floor(low)); }, _getTickValues$2(steps, tickCount) { var t2, t3, i, t4, t1 = A._setArrayType([], type$.JSArray_double); for (t2 = steps.tickStart, t3 = steps.stepSize, i = 0; i < tickCount; ++i) { t4 = t2 + i * t3; t1.push(t4 > 100 ? B.JSNumber_methods.roundToDouble$0(t4) : B.JSNumber_methods.roundToDouble$0(t4 * 1000000000) / 1000000000); } return t1; } }; A._TickStepInfo.prototype = {}; A.OrdinalScaleDomainInfo.prototype = { add$1(_, domain) { var _this = this, t1 = _this._domainsToOrder; if (!t1.containsKey$1(0, domain)) { t1.$indexSet(0, domain, _this._ordinal_scale_domain_info$_index); ++_this._ordinal_scale_domain_info$_index; _this._domainList.push(domain); } }, get$isEmpty(_) { return this._ordinal_scale_domain_info$_index === 0; } }; A.OrdinalTickProvider.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { return this.createTicks$7$context$formatter$formatterValueCache$graphicsFactory$scale$tickDrawStrategy(scale._domain._domainList, context, formatter, formatterValueCache, graphicsFactory, scale, tickDrawStrategy); }, $eq(_, other) { if (other == null) return false; return other instanceof A.OrdinalTickProvider; }, get$hashCode(_) { return 31; } }; A.Scale.prototype = {}; A.MutableScale.prototype = {}; A.ScaleOutputExtent.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.ScaleOutputExtent && this.start == other.start && this.end == other.end; }, get$hashCode(_) { return J.get$hashCode$(this.start) + J.get$hashCode$(this.end) * 31; }, toString$0(_) { return "ScaleOutputRange(" + A.S(this.start) + ", " + A.S(this.end) + ")"; } }; A.RangeBandType.prototype = { toString$0(_) { return "RangeBandType." + this._core$_name; } }; A.RangeBandConfig.prototype = {}; A.StepSizeType.prototype = { toString$0(_) { return "StepSizeType." + this._core$_name; } }; A.StepSizeConfig.prototype = {}; A.Extents.prototype = {}; A.SimpleOrdinalScale.prototype = { get$rangeBand() { if (this._scaleChanged) this._updateScale$0(); return A._lateReadCheck(this.__SimpleOrdinalScale__cachedRangeBandSize, "_cachedRangeBandSize"); }, set$rangeBandConfig(barGroupWidthConfig) { var t1 = barGroupWidthConfig.type; if (t1 === B.RangeBandType_2 || t1 === B.RangeBandType_0) throw A.wrapException(A.ArgumentError$("barGroupWidthConfig must not be NONE or FIXED_DOMAIN", null)); this._rangeBandConfig = barGroupWidthConfig; this._scaleChanged = true; }, get$rangeBandConfig() { return this._rangeBandConfig; }, $index(_, domainValue) { var t1, _this = this; if (_this._scaleChanged) _this._updateScale$0(); t1 = _this._domain._domainsToOrder.$index(0, domainValue); if (t1 != null) return _this._viewportTranslatePx + _this._range.start + A._lateReadCheck(_this.__SimpleOrdinalScale__cachedRangeBandShift, "_cachedRangeBandShift") + A._lateReadCheck(_this.__SimpleOrdinalScale__cachedStepSizePixels, "_cachedStepSizePixels") * t1; return 0; }, reverse$1(_, pixelLocation) { var _this = this, t1 = _this._domain; return t1._domainList[Math.max(0, Math.min(B.JSNumber_methods.round$0((pixelLocation - _this._viewportTranslatePx - _this._range.start - A._lateReadCheck(_this.__SimpleOrdinalScale__cachedRangeBandShift, "_cachedRangeBandShift")) / A._lateReadCheck(_this.__SimpleOrdinalScale__cachedStepSizePixels, "_cachedStepSizePixels")), t1._ordinal_scale_domain_info$_index - 1))]; }, addDomain$1(domainValue) { this._domain.add$1(0, domainValue); this._scaleChanged = true; }, set$range(extent) { this._range = extent; this._scaleChanged = true; }, get$range() { return this._range; }, resetDomain$0() { var t1 = this._domain; t1._domainsToOrder.clear$0(0); B.JSArray_methods.set$length(t1._domainList, 0); t1._ordinal_scale_domain_info$_index = 0; this._scaleChanged = true; }, resetViewportSettings$0() { this._viewportScale = 1; this._viewportTranslatePx = 0; this._scaleChanged = true; }, get$rangeWidth() { var t1 = this._range; return B.JSInt_methods.toInt$0(Math.abs(t1.start - t1.end)); }, setViewport$2(viewportDataSize, startingDomain) { this._scaleChanged = true; this._viewportDataSize = viewportDataSize; this._viewportStartingDomain = startingDomain; }, isRangeValueWithinViewport$1(rangeValue) { var t1 = this._range, t2 = t1.start; t1 = t1.end; return A.withinBounds(rangeValue, Math.min(A.checkNum(t2), A.checkNum(t1)), Math.max(A.checkNum(t2), A.checkNum(t1))); }, compareDomainValueToViewport$1(domainValue) { var domainPx, t1, t2; if (this._domain._domainsToOrder.$index(0, domainValue) != null && true) { domainPx = this.$index(0, domainValue); t1 = this._range; t2 = t1.start; t1 = t1.end; if (domainPx < Math.min(A.checkNum(t2), A.checkNum(t1))) return -1; if (domainPx > Math.max(A.checkNum(t2), A.checkNum(t1))) return 1; return 0; } return -1; }, copy$0(_) { var t1, t2, t3, t4, _this = this; $.$get$StyleFactory__styleFactory().toString; t1 = _this._domain; t2 = A.HashMap_HashMap(null, null, null, type$.String, type$.int); t3 = A._setArrayType([], type$.JSArray_String); t4 = new A.OrdinalScaleDomainInfo(t2, t3); t2.addAll$1(0, t1._domainsToOrder); t4._ordinal_scale_domain_info$_index = t1._ordinal_scale_domain_info$_index; B.JSArray_methods.addAll$1(t3, t1._domainList); t1 = _this._range; return new A.SimpleOrdinalScale(new A.StepSizeConfig(), t4, new A.ScaleOutputExtent(t1.start, t1.end), _this._viewportScale, _this._viewportTranslatePx, _this._rangeBandConfig); }, _updateScale$0() { this._recalculateScale$0(); }, _recalculateScale$0() { var rangeBandPixels, _this = this, t1 = _this._domain, stepSizePixels = t1._ordinal_scale_domain_info$_index === 0 ? 0 : _this._viewportScale * (_this.get$rangeWidth() / t1._ordinal_scale_domain_info$_index); t1 = _this._rangeBandConfig; switch (t1.type.index) { case 1: rangeBandPixels = t1.size; break; case 5: rangeBandPixels = Math.max(0, stepSizePixels - t1.size); break; case 4: case 3: rangeBandPixels = stepSizePixels * t1.size; break; case 2: case 0: throw A.wrapException(A.StateError$("RangeBandType must not be NONE or FIXED_DOMAIN")); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.__SimpleOrdinalScale__cachedStepSizePixels = stepSizePixels; _this.__SimpleOrdinalScale__cachedRangeBandSize = rangeBandPixels; _this.__SimpleOrdinalScale__cachedRangeBandShift = stepSizePixels / 2; t1 = _this._range; if (t1.start > t1.end) { _this.__SimpleOrdinalScale__cachedStepSizePixels = A._lateReadCheck(stepSizePixels, "_cachedStepSizePixels") * -1; _this.__SimpleOrdinalScale__cachedRangeBandShift = A._lateReadCheck(_this.__SimpleOrdinalScale__cachedRangeBandShift, "_cachedRangeBandShift") * -1; } _this._scaleChanged = false; }, $isOrdinalScale: 1 }; A.AxisSpec.prototype = { configure$3(axis, context, graphicsFactory) { axis.forceDrawAxisLine = null; axis.autoViewport = true; axis.scale = axis._defaultScale; axis._tickFormatter = axis._defaultTickFormatter; axis.tickProvider = axis._defaultTickProvider; axis.tickDrawStrategy = this.renderSpec.createDrawStrategy$2(context, graphicsFactory); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.AxisSpec) if (this.renderSpec.$eq(0, other.renderSpec)) t1 = true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.renderSpec; return (((t1.get$hashCode(t1) * 37 + B.JSNull_methods.get$hashCode(_this.tickProviderSpec)) * 37 + B.JSNull_methods.get$hashCode(_this.tickFormatterSpec)) * 37 + B.JSNull_methods.get$hashCode(_this.showAxisLine)) * 37 + B.JSNull_methods.get$hashCode(_this.scaleSpec); } }; A.TextStyleSpec.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.TextStyleSpec) if (this.fontSize == other.fontSize) t1 = this.color.$eq(0, other.color) && true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var t1 = this.color; return (((B.JSNull_methods.get$hashCode(null) * 37 + J.get$hashCode$(this.fontSize)) * 37 + B.JSNull_methods.get$hashCode(null)) * 37 + t1.get$hashCode(t1)) * 37 + B.JSNull_methods.get$hashCode(null); } }; A.LineStyleSpec.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.LineStyleSpec) if (this.color.$eq(0, other.color)) t1 = true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var t1 = this.color; return (t1.get$hashCode(t1) * 37 + B.JSNull_methods.get$hashCode(null)) * 37 + B.JSNull_methods.get$hashCode(null); } }; A.TickLabelAnchor.prototype = { toString$0(_) { return "TickLabelAnchor." + this._core$_name; } }; A.TickLabelJustification.prototype = { toString$0(_) { return "TickLabelJustification." + this._core$_name; } }; A.DateTimeAxisSpec.prototype = { configure$3(axis, context, graphicsFactory) { this.super$AxisSpec$configure(axis, context, graphicsFactory); }, createAxis$0() { return null; }, $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A.DateTimeAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; return t1; }, get$hashCode(_) { return A.AxisSpec.prototype.get$hashCode.call(this, this) * 37 + B.JSNull_methods.get$hashCode(null); } }; A.NumericAxisSpec.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A.NumericAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; return t1; }, get$hashCode(_) { return A.AxisSpec.prototype.get$hashCode.call(this, this) * 37 + B.JSNull_methods.get$hashCode(null); } }; A.OrdinalAxisSpec.prototype = { configure$3(axis, context, graphicsFactory) { this.super$AxisSpec$configure(axis, context, graphicsFactory); }, createAxis$0() { return A.OrdinalAxis$(); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.OrdinalAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { return A.AxisSpec.prototype.get$hashCode.call(this, this) * 37 + B.JSNull_methods.get$hashCode(null); } }; A.Tick.prototype = { toString$0(_) { return "Tick(value: " + A.S(this.value) + ", locationPx: " + A.S(this.locationPx) + ", labelOffsetPx: " + A.S(this.labelOffsetPx) + ")"; }, get$value(receiver) { return this.value; } }; A.SimpleTickFormatterBase.prototype = { format$3$stepSize(_, tickValues, cache, stepSize) { var t1 = A._arrayInstanceType(tickValues)._eval$1("MappedListIterable<1,String>"); return A.List_List$of(new A.MappedListIterable(tickValues, new A.SimpleTickFormatterBase_format_closure(this, cache), t1), true, t1._eval$1("ListIterable.E")); } }; A.SimpleTickFormatterBase_format_closure.prototype = { call$1(value) { var t1 = this.cache, formattedString = t1.$index(0, value); if (formattedString == null) { formattedString = this.$this.formatValue$1(value); t1.$indexSet(0, value, formattedString); } return formattedString; }, $signature() { return A._instanceType(this.$this)._eval$1("String(SimpleTickFormatterBase.D)"); } }; A.OrdinalTickFormatter.prototype = { formatValue$1(value) { return value; }, $eq(_, other) { if (other == null) return false; return other instanceof A.OrdinalTickFormatter; }, get$hashCode(_) { return 31; } }; A.NumericTickFormatter.prototype = { formatValue$1(value) { return this.formatter.call$1(value); }, $eq(_, other) { if (other == null) return false; return other instanceof A.NumericTickFormatter && J.$eq$(this.formatter, other.formatter); }, get$hashCode(_) { return J.get$hashCode$(this.formatter); } }; A.NumericTickFormatter__getFormatter_closure.prototype = { call$1(value) { return value == null ? "" : this.numberFormat.format$1(0, value); }, $signature: 677 }; A.BaseTickProvider.prototype = { createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, stepSize, tickDrawStrategy) { var i, value, t2, t3, t1 = A._instanceType(this), ticks = A._setArrayType([], t1._eval$1("JSArray>")), labels = formatter.format$3$stepSize(0, domainValues, formatterValueCache, stepSize); for (t1 = t1._eval$1("Tick"), i = 0; i < domainValues.length; ++i) { value = domainValues[i]; t2 = new A.TextElement0(labels[i], graphicsFactory.textScaleFactor, B.TextDirection_00); t3 = new A.TextStyle0(); t3.fontFamily = graphicsFactory.defaultTextStyle.style.fontFamily; t2.set$textStyle(0, t3); t3 = scale.$index(0, value); ticks.push(new A.Tick(value, t2, t3, null, t1)); } tickDrawStrategy.decorateTicks$1(ticks); return ticks; }, createTicks$7$context$formatter$formatterValueCache$graphicsFactory$scale$tickDrawStrategy(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, tickDrawStrategy) { return this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, null, tickDrawStrategy); } }; A.AutoAdjustingDateTimeTickProvider.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var _i, tickProvider, tickProviders = this._potentialTickProviders, lastTickProvider = B.JSArray_methods.get$last(tickProviders), viewport = scale.get$viewportDomain(); for (_i = 0; _i < 5; ++_i) { tickProvider = tickProviders[_i]; if (tickProvider == lastTickProvider || tickProvider.timeStepper.getStepCountBetween$2(viewport, 1) >= 3) return tickProvider.getTicks$7$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy); } return A._setArrayType([], type$.JSArray_Tick_DateTime); } }; A.BaseTimeStepper.prototype = { getStepCountBetween$2(timeExtent, tickIncrement) { var t1, cnt, time = this.getStepTimeAfterInclusive$2(timeExtent.start, tickIncrement); for (t1 = timeExtent.end._value, cnt = 0; B.JSInt_methods.compareTo$1(time._value, t1) <= 0;) { ++cnt; time = this.getNextStepTime$2(time, tickIncrement); } return cnt; }, getStepTimeAfterInclusive$2(time, tickIncrement) { var boundedStart = this.getStepTimeBeforeInclusive$2(time, tickIncrement); if (boundedStart._value === time._value) return boundedStart; return this.getNextStepTime$2(boundedStart, tickIncrement); } }; A._TimeStepIteratorImpl.prototype = { moveNext$0() { var _this = this, t1 = _this._base_time_stepper$_current, t2 = _this.stepper, t3 = _this._tickIncrement; return B.JSInt_methods.compareTo$1((t1 == null ? _this._base_time_stepper$_current = t2.getStepTimeAfterInclusive$2(_this.extentStartTime, t3) : _this._base_time_stepper$_current = t2.getNextStepTime$2(t1, t3))._value, _this.extentEndTime._value) <= 0; }, get$current(_) { var t1 = this._base_time_stepper$_current; t1.toString; return t1; }, reset$1(_, tickIncrement) { this._tickIncrement = tickIncrement; this._base_time_stepper$_current = null; return this; } }; A._TimeStepIteratorFactoryImpl.prototype = { get$iterator(_) { return this._timeStepIterator; } }; A.DateTimeAxis.prototype = {}; A.DateTimeExtents.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.DateTimeExtents && this.start.$eq(0, other.start) && this.end.$eq(0, other.end); }, get$hashCode(_) { var t1 = this.start, t2 = this.end; return t1.get$hashCode(t1) + t2.get$hashCode(t2) * 37; } }; A.DateTimeScale.prototype = { $index(_, domainValue) { var t1 = this._linearScale, t2 = domainValue._value; t1._configureScale$0(); return t1._scaleFunction.$index(0, t2); }, reverse$1(_, pixelLocation) { return A.DateTime$fromMillisecondsSinceEpoch(B.JSNumber_methods.round$0(this._linearScale.reverse$1(0, pixelLocation)), false); }, resetDomain$0() { var t1 = this._linearScale; t1._scaleReady = false; t1._domainInfo.reset$0(0); }, set$rangeBandConfig(barGroupWidthConfig) { this._linearScale.rangeBandConfig = barGroupWidthConfig; }, set$range(extent) { var t1 = this._linearScale; t1._viewportSettings.range = extent; t1._scaleReady = false; }, addDomain$1(domainValue) { this._linearScale._domainInfo.addDomainValue$1(domainValue._value); }, resetViewportSettings$0() { this._linearScale._viewportSettings.reset$0(0); }, get$viewportDomain() { var extents, t1 = this._linearScale; t1._configureScale$0(); extents = t1._viewportSettings._domainExtent; return new A.DateTimeExtents(A.DateTime$fromMillisecondsSinceEpoch(B.JSNumber_methods.toInt$0(extents.min), false), A.DateTime$fromMillisecondsSinceEpoch(B.JSNumber_methods.toInt$0(extents.max), false)); }, copy$0(_) { return new A.DateTimeScale(this.dateTimeFactory, A.LinearScale$_copy(this._linearScale)); }, isRangeValueWithinViewport$1(rangeValue) { var t1 = this._linearScale._viewportSettings.range, t2 = t1.start; t1 = t1.end; return A.withinBounds(rangeValue, Math.min(A.checkNum(t2), A.checkNum(t1)), Math.max(A.checkNum(t2), A.checkNum(t1))); }, compareDomainValueToViewport$1(domainValue) { return this._linearScale.compareDomainValueToViewport$1(domainValue._value); }, get$rangeBand() { var t1 = this._linearScale; t1._configureScale$0(); return t1._scaleFunction.rangeBandPixels; }, get$rangeBandConfig() { return this._linearScale.rangeBandConfig; }, get$range() { return this._linearScale._viewportSettings.range; } }; A.DateTimeTickFormatter.prototype = { DateTimeTickFormatter$_internal$1(_timeFormatters) { var t1 = this._timeFormatters; if (t1._length === 1) return; A.DateTimeTickFormatter__checkPositiveAndSorted(new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"))); }, format$3$stepSize(_, tickValues, cache, stepSize) { var t1, t2, t3, t4, formatter, minTimeBetweenTicks, keys, formatterFound, tickValuesIt, tickValue, prevTickValue, tickLabels = A._setArrayType([], type$.JSArray_String); if (tickValues.length === 0) return tickLabels; t1 = this._timeFormatters; t2 = A._instanceType(t1); t3 = t2._eval$1("LinkedHashMapKeyIterable<1>"); t4 = new A.LinkedHashMapKeyIterable(t1, t3); t4 = t1.$index(0, t4.get$first(t4)); t4.toString; t3 = new A.LinkedHashMapKeyIterable(t1, t3); if (J.$eq$(t3.get$first(t3), -1)) formatter = t4; else { minTimeBetweenTicks = stepSize == null ? null : B.JSNumber_methods.toInt$0(stepSize); if (minTimeBetweenTicks == null) minTimeBetweenTicks = 0; keys = A.LinkedHashMapKeyIterator$(t1, t1._modifications, t2._precomputed1); formatter = t4; formatterFound = false; while (true) { if (!(keys.moveNext$0() && !formatterFound)) break; t2 = keys.__js_helper$_current; if (t2 > minTimeBetweenTicks) formatterFound = true; else { t2 = t1.$index(0, t2); t2.toString; formatter = t2; } } } tickValuesIt = new J.ArrayIterator(tickValues, tickValues.length, A._arrayInstanceType(tickValues)._eval$1("ArrayIterator<1>")); tickValuesIt.moveNext$0(); tickValue = tickValuesIt.__interceptors$_current; t1 = formatter._transitionFormat; tickLabels.push(t1.format$1(0, tickValue)); for (prevTickValue = tickValue; tickValuesIt.moveNext$0(); prevTickValue = tickValue) { tickValue = tickValuesIt.__interceptors$_current; if (formatter.isTransition$2(tickValue, prevTickValue)) tickLabels.push(t1.format$1(0, tickValue)); else tickLabels.push(formatter.formatSimpleTick$1(tickValue)); } return tickLabels; } }; A.DayTimeStepper.prototype = { get$typicalStepSizeMs() { return 86400000; }, get$allowedTickIncrements() { return this._day_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2(time, tickIncrement) { var dayRemainder = B.JSInt_methods.$mod(A.Primitives_getDay(time) - 1, tickIncrement), dayBefore = dayRemainder > 0 ? time.subtract$1(A.Duration$(0, 24 * dayRemainder - 1, 0, 0, 0, 0)) : time; return this.dateTimeFactory.createDateTime$3(A.Primitives_getYear(dayBefore), A.Primitives_getMonth(dayBefore), A.Primitives_getDay(dayBefore)); }, getNextStepTime$2(time, tickIncrement) { var stepAfter = time.add$1(0, A.Duration$(0, 24 * tickIncrement + 1, 0, 0, 0, 0)); return this.dateTimeFactory.createDateTime$3(A.Primitives_getYear(stepAfter), A.Primitives_getMonth(stepAfter), A.Primitives_getDay(stepAfter)); } }; A.HourTickFormatter.prototype = { formatSimpleTick$1(date) { date.toString; return A.Primitives_getHours(date) === 12 ? A._lateReadCheck(this.__HourTickFormatter__noonFormat, "_noonFormat").format$1(0, date) : this.super$TimeTickFormatterImpl$formatSimpleTick(date); } }; A.HourTimeStepper.prototype = { get$typicalStepSizeMs() { return 3600000; }, get$allowedTickIncrements() { return this._hour_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2(time, tickIncrement) { var t1 = this.dateTimeFactory, nextDay = t1.createDateTime$3(A.Primitives_getYear(time), A.Primitives_getMonth(time), A.Primitives_getDay(time)).add$1(0, A.Duration$(0, 25, 0, 0, 0, 0)), hoursRemainder = B.JSInt_methods.$mod(B.JSNumber_methods.ceil$0((t1.createDateTime$3(A.Primitives_getYear(nextDay), A.Primitives_getMonth(nextDay), A.Primitives_getDay(nextDay))._value - time._value) / 3600000), tickIncrement), rewindHours = hoursRemainder === 0 ? 0 : tickIncrement - hoursRemainder; return t1.createDateTime$4(A.Primitives_getYear(time), A.Primitives_getMonth(time), A.Primitives_getDay(time), A.Primitives_getHours(time) - rewindHours); }, getNextStepTime$2(time, tickIncrement) { return time.add$1(0, A.Duration$(0, tickIncrement, 0, 0, 0, 0)); } }; A.MinuteTimeStepper.prototype = { get$typicalStepSizeMs() { return 60000; }, get$allowedTickIncrements() { return this._allowedTickIncrements; }, getStepTimeBeforeInclusive$2(time, tickIncrement) { var t1 = time._value, minRemainder = B.JSInt_methods.$mod(B.JSNumber_methods.ceil$0((t1 + (60 - A.Primitives_getMinutes(time)) * 60000 - t1) / 60000), tickIncrement); return A.DateTime$fromMillisecondsSinceEpoch(t1 - (minRemainder === 0 ? 0 : tickIncrement - minRemainder) * 60000, false); }, getNextStepTime$2(time, tickIncrement) { return time.add$1(0, A.Duration$(0, 0, 0, 0, tickIncrement, 0)); } }; A.MonthTimeStepper.prototype = { get$typicalStepSizeMs() { return 2592000000; }, get$allowedTickIncrements() { return this._month_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2(time, tickIncrement) { var monthRemainder = B.JSInt_methods.$mod(A.Primitives_getMonth(time), tickIncrement), newMonth = B.JSInt_methods.$mod(A.Primitives_getMonth(time) - monthRemainder, 12); if (A.Primitives_getMonth(time) === 12 && newMonth === 0) newMonth = 12; return this.dateTimeFactory.createDateTime$2(A.Primitives_getYear(time) - B.JSNumber_methods.floor$0(monthRemainder / 12), newMonth); }, getNextStepTime$2(time, tickIncrement) { var incrementedMonth, newMonth; time.toString; incrementedMonth = A.Primitives_getMonth(time) + tickIncrement; newMonth = B.JSInt_methods.$mod(incrementedMonth, 12); return this.dateTimeFactory.createDateTime$2(A.Primitives_getYear(time) + B.JSNumber_methods.floor$0(incrementedMonth / 12), newMonth); } }; A.TimeRangeTickProvider.prototype = {}; A.TimeRangeTickProviderImpl.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var timeStepIt, allowedTickIncrements, _i, tickIncrement, currentTicks = A._Cell$named("currentTicks"), tickValues = A._setArrayType([], type$.JSArray_DateTime), t1 = this.timeStepper, t2 = scale.get$viewportDomain(), t3 = t1._stepsIterable; if (t3 == null || !t3.timeExtent.$eq(0, t2)) { t3 = new A._TimeStepIteratorImpl(t2.start, t2.end, t1); t3.reset$1(0, 1); t1._stepsIterable = new A._TimeStepIteratorFactoryImpl(t2, t3); } timeStepIt = t1._stepsIterable._timeStepIterator; allowedTickIncrements = t1.get$allowedTickIncrements(); for (t2 = allowedTickIncrements.length, _i = 0; _i < t2; ++_i) { tickIncrement = allowedTickIncrements[_i]; B.JSArray_methods.set$length(tickValues, 0); timeStepIt._tickIncrement = tickIncrement; timeStepIt._base_time_stepper$_current = null; for (; timeStepIt.moveNext$0();) { t3 = timeStepIt._base_time_stepper$_current; t3.toString; tickValues.push(t3); } t3 = this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(tickValues, context, formatter, formatterValueCache, graphicsFactory, scale, t1.get$typicalStepSizeMs() * tickIncrement, tickDrawStrategy); currentTicks.__late_helper$_value = t3; if (!tickDrawStrategy.collides$2(t3, orientation).ticksCollide) { t1 = currentTicks.__late_helper$_value; if (t1 === currentTicks) A.throwExpression(A.LateError$localNI(currentTicks.__late_helper$_name)); return t1; } } return currentTicks._readLocal$0(); }, getTicks$7$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy) { return this.getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, false); } }; A.TimeStepIteratorFactory.prototype = {}; A.TimeTickFormatterImpl.prototype = { formatSimpleTick$1(date) { return this._simpleFormat.format$1(0, date); }, isTransition$2(tickValue, prevTickValue) { var transitionField = this.transitionField; return this.getCalendarField$2(prevTickValue, transitionField) !== this.getCalendarField$2(tickValue, transitionField); }, getCalendarField$2(dateTime, field) { switch (field.index) { case 0: dateTime.toString; return A.Primitives_getYear(dateTime); case 1: dateTime.toString; return A.Primitives_getMonth(dateTime); case 2: dateTime.toString; return A.Primitives_getDay(dateTime); case 3: dateTime.toString; return A.Primitives_getHours(dateTime); case 4: dateTime.toString; return A.Primitives_getMinutes(dateTime); case 5: dateTime.toString; return A.Primitives_getSeconds(dateTime); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $isTimeTickFormatter: 1 }; A.CalendarField.prototype = { toString$0(_) { return "CalendarField." + this._core$_name; } }; A.YearTimeStepper.prototype = { get$typicalStepSizeMs() { return 31536e6; }, get$allowedTickIncrements() { return this._year_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2(time, tickIncrement) { return this.dateTimeFactory.createDateTime$1(A.Primitives_getYear(time) - B.JSInt_methods.$mod(A.Primitives_getYear(time), tickIncrement)); }, getNextStepTime$2(time, tickIncrement) { time.toString; return this.dateTimeFactory.createDateTime$1(A.Primitives_getYear(time) + tickIncrement); } }; A.OrdinalCartesianChart.prototype = { initDomainAxis$0() { var t2, t3, t4, _null = null, t1 = this._domainAxis; t1.toString; t2 = A.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, type$.String); t3 = A._lateReadCheck(this.__BaseChart_context, "context"); t4 = this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); } }; A.CartesianChart.prototype = { init$2(context, graphicsFactory) { var t1, t2, _this = this, _null = null; _this.super$BaseChart$init(context, graphicsFactory); t1 = _this._primaryMeasureAxis; t1.context = context; t2 = type$.num; t1.tickDrawStrategy = A.GridlineRendererSpec$(_null, _null, _null, t2).createDrawStrategy$2(context, graphicsFactory); t1 = _this._secondaryMeasureAxis; t1.context = context; t1.tickDrawStrategy = A.GridlineRendererSpec$(_null, _null, _null, t2).createDrawStrategy$2(context, graphicsFactory); _this._disjointMeasureAxes.forEach$1(0, new A.CartesianChart_init_closure(context, graphicsFactory)); }, createDomainAxisFromSpec$1(axisSpec) { return axisSpec.createAxis$0(); }, configurationChanged$0() { var t1, t2, t3, t4, _this = this, _null = null, _s7_ = "context"; if (_this._newDomainAxis != null) { t1 = _this._domainAxis; if (t1 != null) _this._layoutManager.removeView$1(t1); t1 = _this._newDomainAxis; _this._domainAxis = t1; t1.toString; t1.context = A._lateReadCheck(_this.__BaseChart_context, _s7_); t1.layoutPaintOrder = 5; _this.initDomainAxis$0(); t1 = _this._domainAxis; t1.toString; _this.addView$1(t1); _this._newDomainAxis = null; } t1 = _this._newDomainAxisSpec; if (t1 != null) { _this._domainAxisSpec = t1; t2 = _this._domainAxis; t2.toString; t3 = A._lateReadCheck(_this.__BaseChart_context, _s7_); t4 = _this.graphicsFactory; t4.toString; t1.configure$3(t2, t3, t4); _this._newDomainAxisSpec = null; } if (!J.$eq$(_this._primaryMeasureAxisSpec, _this._newPrimaryMeasureAxisSpec)) { _this._primaryMeasureAxisSpec = _this._newPrimaryMeasureAxisSpec; _this._layoutManager.removeView$1(_this._primaryMeasureAxis); t1 = _this._primaryMeasureAxisSpec == null ? _null : A.NumericAxis$(); if (t1 == null) t1 = A.NumericAxis$(); _this._primaryMeasureAxis = t1; t2 = A.GridlineRendererSpec$(_null, _null, _null, type$.num); t3 = A._lateReadCheck(_this.__BaseChart_context, _s7_); t4 = _this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); t4 = _this._primaryMeasureAxisSpec; if (t4 != null) { t1 = _this._primaryMeasureAxis; t2 = A._lateReadCheck(_this.__BaseChart_context, _s7_); t3 = _this.graphicsFactory; t3.toString; t4.super$AxisSpec$configure(t1, t2, t3); } _this.addView$1(_this._primaryMeasureAxis); } }, makeSeries$1(series) { var t1, t2, axis, _this = this, s = _this.super$BaseChart$makeSeries(series); if (s.measureOffsetFn == null) s.measureOffsetFn = new A.CartesianChart_makeSeries_closure(); t1 = s._attrs._registry; t1.$indexSet(0, B.AttributeKey_OBU, _this._domainAxis); t2 = A._asStringQ(series.attributes._registry.$index(0, B.AttributeKey_Bwd)); if (t2 === "secondaryMeasureAxisId") axis = _this._secondaryMeasureAxis; else if (t2 === "primaryMeasureAxisId") axis = _this._primaryMeasureAxis; else axis = t2 != null && _this._disjointMeasureAxes.$index(0, t2) != null ? _this._disjointMeasureAxes.$index(0, t2) : null; t1.$indexSet(0, B.AttributeKey_kWM, axis == null ? _this._primaryMeasureAxis : axis); return s; }, makeDefaultRenderer$0() { var t1 = A.BarRenderer_BarRenderer(null, null, A._instanceType(this)._eval$1("CartesianChart.D")); t1.rendererId = "default"; return t1; }, preprocessSeries$1(seriesList) { var t1, _i, measureAxisId, t2, domainAxis, _this = this, rendererToSeriesList = _this.super$BaseChart$preprocessSeries(seriesList), reverseAxisDirection = _this._useSecondaryMeasureAxis = false; for (t1 = seriesList.length, _i = 0; _i < seriesList.length; seriesList.length === t1 || (0, A.throwConcurrentModificationError)(seriesList), ++_i) { measureAxisId = A._asStringQ(seriesList[_i]._attrs._registry.$index(0, B.AttributeKey_Bwd)); _this._usePrimaryMeasureAxis = _this._usePrimaryMeasureAxis || measureAxisId == null || measureAxisId === "primaryMeasureAxisId"; _this._useSecondaryMeasureAxis = _this._useSecondaryMeasureAxis || measureAxisId === "secondaryMeasureAxisId"; } t1 = _this._usePrimaryMeasureAxis; t2 = _this._primaryMeasureAxis; if (t1) _this.addView$1(t2); else _this._layoutManager.removeView$1(t2); t1 = _this._useSecondaryMeasureAxis; t2 = _this._secondaryMeasureAxis; if (t1) _this.addView$1(t2); else _this._layoutManager.removeView$1(t2); _this._disjointMeasureAxes.forEach$1(0, new A.CartesianChart_preprocessSeries_closure(_this)); domainAxis = _this._domainAxis; domainAxis.resetDomains$0(); _this._primaryMeasureAxis.resetDomains$0(); _this._secondaryMeasureAxis.resetDomains$0(); _this._disjointMeasureAxes.forEach$1(0, new A.CartesianChart_preprocessSeries_closure0()); if (A._lateReadCheck(_this.__BaseChart_context, "context") != null) reverseAxisDirection = A._lateReadCheck(_this.__BaseChart_context, "context").get$isRtl(); domainAxis.axisOrientation = B.AxisOrientation_2; domainAxis.reverseOutputRange = reverseAxisDirection; t1 = _this._primaryMeasureAxis; t1.axisOrientation = reverseAxisDirection ? B.AxisOrientation_1 : B.AxisOrientation_3; t2 = _this.flipVerticalAxisOutput; t1.reverseOutputRange = t2; t1 = _this._secondaryMeasureAxis; t1.axisOrientation = reverseAxisDirection ? B.AxisOrientation_3 : B.AxisOrientation_1; t1.reverseOutputRange = t2; _this._disjointMeasureAxes.forEach$1(0, new A.CartesianChart_preprocessSeries_closure1(_this, reverseAxisDirection)); rendererToSeriesList.forEach$1(0, new A.CartesianChart_preprocessSeries_closure2(_this)); return rendererToSeriesList; }, onSkipLayout$0() { var _this = this; _this._domainAxis.updateTicks$0(); if (_this._usePrimaryMeasureAxis) _this._primaryMeasureAxis.updateTicks$0(); if (_this._useSecondaryMeasureAxis) _this._secondaryMeasureAxis.updateTicks$0(); _this._disjointMeasureAxes.forEach$1(0, new A.CartesianChart_onSkipLayout_closure()); _this.super$BaseChart$onSkipLayout(); } }; A.CartesianChart_init_closure.prototype = { call$2(axisId, axis) { var t1 = this.context; axis.context = t1; axis.tickDrawStrategy = A.NoneDrawStrategy$(t1, this.graphicsFactory, type$.num); }, $signature: 251 }; A.CartesianChart_makeSeries_closure.prototype = { call$1(_) { return 0; }, $signature: 2871 }; A.CartesianChart_preprocessSeries_closure.prototype = { call$2(axisId, axis) { this.$this.addView$1(axis); }, $signature: 251 }; A.CartesianChart_preprocessSeries_closure0.prototype = { call$2(axisId, axis) { axis.resetDomains$0(); }, $signature: 251 }; A.CartesianChart_preprocessSeries_closure1.prototype = { call$2(axisId, axis) { axis.axisOrientation = this.reverseAxisDirection ? B.AxisOrientation_3 : B.AxisOrientation_1; axis.reverseOutputRange = this.$this.flipVerticalAxisOutput; }, $signature: 251 }; A.CartesianChart_preprocessSeries_closure2.prototype = { call$2(rendererId, seriesList) { var t1 = this.$this; t1.getSeriesRenderer$1(rendererId).configureDomainAxes$1(seriesList); t1.getSeriesRenderer$1(rendererId).configureMeasureAxes$1(seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(String,List>)"); } }; A.CartesianChart_onSkipLayout_closure.prototype = { call$2(axisId, axis) { axis.updateTicks$0(); }, $signature: 251 }; A.BaseCartesianRenderer.prototype = { onAttach$1(chart) { this.super$BaseSeriesRenderer$onAttach(chart); this.__BaseCartesianRenderer_chart = A._instanceType(this)._eval$1("CartesianChart<1>")._as(chart); }, configureDomainAxes$1(seriesList) { J.forEach$1$ax(seriesList, new A.BaseCartesianRenderer_configureDomainAxes_closure(this)); }, configureMeasureAxes$1(seriesList) { J.forEach$1$ax(seriesList, new A.BaseCartesianRenderer_configureMeasureAxes_closure(this)); }, addMeasureValuesFor$4(series, measureAxis, startIndex, endIndex) { var measureLowerBoundFn, measureUpperBoundFn, t2, t3, i, measure, measureOffset, t4, measureFn = series.measureFn, t1 = series.measureOffsetFn; t1.toString; measureLowerBoundFn = series.measureLowerBoundFn; measureUpperBoundFn = series.measureUpperBoundFn; for (t2 = measureLowerBoundFn != null, t3 = measureUpperBoundFn != null, i = startIndex; i <= endIndex; ++i) { measure = measureFn.call$1(i); measureOffset = t1.call$1(i); if (measure != null && measureOffset != null) { measureAxis.addDomainValue$1(measure + measureOffset); if (t2 && t3) { t4 = measureLowerBoundFn.call$1(i); measureAxis.addDomainValue$1((t4 == null ? 0 : t4) + measureOffset); t4 = measureUpperBoundFn.call$1(i); measureAxis.addDomainValue$1((t4 == null ? 0 : t4) + measureOffset); } } } }, findNearestViewportStart$3(domainAxis, domainFn, data) { var end, start, searchIndex, prevIndex, comparisonValue, t1 = domainFn.call$1(0); if (domainAxis.scale.compareDomainValueToViewport$1(t1) === 0) return 0; end = data.length - 1; for (start = 1; end >= start;) { searchIndex = B.JSNumber_methods.floor$0((end - start) / 2) + start; prevIndex = searchIndex - 1; t1 = domainFn.call$1(searchIndex); comparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); t1 = domainFn.call$1(prevIndex); t1 = domainAxis.scale.compareDomainValueToViewport$1(t1) === -1; if (t1 && comparisonValue === 0) return searchIndex; if (comparisonValue === 1 && t1) return prevIndex; if (comparisonValue === -1) start = searchIndex + 1; else end = prevIndex; } t1 = domainFn.call$1(data.length - 1); return domainAxis.scale.compareDomainValueToViewport$1(t1) === 1 ? data.length - 1 : 0; }, findNearestViewportEnd$3(domainAxis, domainFn, data) { var start, searchIndex, prevIndex, comparisonValue, prevComparisonValue, end = data.length - 1, t1 = domainFn.call$1(end); if (domainAxis.scale.compareDomainValueToViewport$1(t1) === 0) return end; --end; for (start = 1; end >= start;) { searchIndex = B.JSNumber_methods.floor$0((end - start) / 2) + start; prevIndex = searchIndex - 1; t1 = domainFn.call$1(searchIndex); comparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); t1 = domainFn.call$1(prevIndex); prevComparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); if (prevComparisonValue === 0 && comparisonValue === 1) return prevIndex; t1 = comparisonValue === 1; if (t1 && prevComparisonValue === -1) return searchIndex; if (t1) end = prevIndex; else start = searchIndex + 1; } t1 = domainFn.call$1(data.length - 1); return domainAxis.scale.compareDomainValueToViewport$1(t1) === 1 ? data.length - 1 : 0; } }; A.BaseCartesianRenderer_configureDomainAxes_closure.prototype = { call$1(series) { var domainAxis, domainFn, domainLowerBoundFn, domainUpperBoundFn, t2, t3, i, t4, domainLowerBound, domainUpperBound, t1 = series.data; if (t1.length === 0) return; domainAxis = type$.nullable_Axis_Object._as(series._attrs._registry.$index(0, B.AttributeKey_OBU)); domainFn = series.domainFn; domainLowerBoundFn = series.domainLowerBoundFn; domainUpperBoundFn = series.domainUpperBoundFn; if (domainAxis == null) return; A._lateReadCheck(this.$this.__BaseCartesianRenderer_chart, "chart").toString; for (t2 = domainLowerBoundFn != null, t3 = domainUpperBoundFn != null, i = 0; i < t1.length; ++i) { t4 = domainFn.call$1(i); t4.toString; domainAxis.addDomainValue$1(t4); if (t2 && t3) { domainLowerBound = domainLowerBoundFn.call$1(i); domainUpperBound = domainUpperBoundFn.call$1(i); if (domainLowerBound != null && domainUpperBound != null) { domainAxis.addDomainValue$1(domainLowerBound); domainAxis.addDomainValue$1(domainUpperBound); } } } }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseCartesianRenderer_configureMeasureAxes_closure.prototype = { call$1(series) { var t2, t3, t4, domainAxis, domainFn, measureAxis, t1 = series.data; if (t1.length === 0) return; t2 = series._attrs._registry; t3 = type$.nullable_Axis_Object; t4 = this.$this; domainAxis = A._instanceType(t4)._eval$1("Axis<1>?")._as(t3._as(t2.$index(0, B.AttributeKey_OBU))); domainFn = series.domainFn; if (domainAxis == null) return; measureAxis = type$.nullable_Axis_num._as(t3._as(t2.$index(0, B.AttributeKey_kWM))); if (measureAxis == null) return; t4.addMeasureValuesFor$4(series, measureAxis, t4.findNearestViewportStart$3(domainAxis, domainFn, t1), t4.findNearestViewportEnd$3(domainAxis, domainFn, t1)); }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseChart0.prototype = { init$2(context, graphicsFactory) { var _this = this; _this.__BaseChart_context = context; if (_this.graphicsFactory !== graphicsFactory) { _this.graphicsFactory = graphicsFactory; B.JSArray_methods.forEach$1(_this._layoutManager._views, new A.BaseChart_init_closure(graphicsFactory)); } _this.configurationChanged$0(); }, getSelectionModel$1(type) { return this._selectionModels.putIfAbsent$2(0, type, new A.BaseChart_getSelectionModel_closure(this)); }, addSeriesRenderer$1(renderer) { var _this = this, rendererId = renderer.rendererId, t1 = _this._seriesRenderers, previousRenderer = t1.$index(0, rendererId); if (previousRenderer != null) _this._layoutManager.removeView$1(previousRenderer); _this.addView$1(renderer); renderer.onAttach$1(_this); t1.$indexSet(0, rendererId, renderer); }, getSeriesRenderer$1(rendererId) { var renderer = this._seriesRenderers.$index(0, rendererId); if (renderer == null) { renderer = this.makeDefaultRenderer$0(); renderer.rendererId = "default"; this.addSeriesRenderer$1(renderer); } return renderer; }, pointWithinRenderer$1(chartPosition) { return this._usingRenderers.any$1(0, new A.BaseChart_pointWithinRenderer_closure(this, chartPosition)); }, getNearestDatumDetailPerSeries$2(drawAreaPoint, selectAcrossAllDrawAreaComponents) { var _this = this, boundsOverride = _this._layoutManager.get$drawableLayoutAreaBounds(), details = A._setArrayType([], A._instanceType(_this)._eval$1("JSArray>")); _this._usingRenderers.forEach$1(0, new A.BaseChart_getNearestDatumDetailPerSeries_closure(_this, details, drawAreaPoint, boundsOverride)); B.JSArray_methods.sort$1(details, new A.BaseChart_getNearestDatumDetailPerSeries_closure0(_this)); return details; }, getSelectedDatumDetails$1(selectionModelType) { var selectionModel, t1, t2, t3, _i, seriesDatum, t4, renderer, index, domainLowerBoundFn, domainUpperBoundFn, measureLowerBoundFn, measureUpperBoundFn, measureOffsetFn, rawMeasureLowerBoundFn, rawMeasureUpperBoundFn, colorFn, areaColorFn, fillColorFn, radiusPxFn, strokeWidthPxFn, domainValue, domainLowerBoundValue, domainUpperBoundValue, measureValue, measureLowerBoundValue, measureUpperBoundValue, measureOffsetValue, rawMeasureValue, rawMeasureLowerBoundValue, rawMeasureUpperBoundValue, color, fillColor, areaColor, radiusPx, t5, strokeWidthPx, _this = this, _null = null, details = A._setArrayType([], A._instanceType(_this)._eval$1("JSArray>")); if (_this._currentSeriesList == null) return details; selectionModel = _this.getSelectionModel$1(selectionModelType); t1 = selectionModel._selectedDatum; if (t1.length === 0) return details; for (t1 = A.List_List$unmodifiable(t1, A._instanceType(selectionModel)._eval$1("SeriesDatum<1>")), t2 = t1.length, t3 = _this._seriesRenderers, _i = 0; _i < t2; ++_i) { seriesDatum = t1[_i]; t4 = seriesDatum.series; renderer = t3.$index(0, A._asStringQ(t4._attrs._registry.$index(0, B.AttributeKey_kKQ))); if (renderer == null) { renderer = _this.makeDefaultRenderer$0(); renderer.rendererId = "default"; _this.addSeriesRenderer$1(renderer); } index = seriesDatum.get$index(seriesDatum); domainLowerBoundFn = t4.domainLowerBoundFn; domainUpperBoundFn = t4.domainUpperBoundFn; measureLowerBoundFn = t4.measureLowerBoundFn; measureUpperBoundFn = t4.measureUpperBoundFn; measureOffsetFn = t4.measureOffsetFn; rawMeasureLowerBoundFn = t4.rawMeasureLowerBoundFn; rawMeasureUpperBoundFn = t4.rawMeasureUpperBoundFn; colorFn = t4.colorFn; areaColorFn = t4.areaColorFn; if (areaColorFn == null) areaColorFn = colorFn; fillColorFn = t4.fillColorFn; if (fillColorFn == null) fillColorFn = colorFn; radiusPxFn = t4.radiusPxFn; strokeWidthPxFn = t4.strokeWidthPxFn; domainValue = t4.domainFn.call$1(index); domainLowerBoundValue = domainLowerBoundFn == null ? _null : domainLowerBoundFn.call$1(index); domainUpperBoundValue = domainUpperBoundFn == null ? _null : domainUpperBoundFn.call$1(index); measureValue = t4.measureFn.call$1(index); measureLowerBoundValue = measureLowerBoundFn == null ? _null : measureLowerBoundFn.call$1(index); measureUpperBoundValue = measureUpperBoundFn == null ? _null : measureUpperBoundFn.call$1(index); measureOffsetValue = measureOffsetFn == null ? _null : measureOffsetFn.call$1(index); rawMeasureValue = t4.rawMeasureFn.call$1(index); rawMeasureLowerBoundValue = rawMeasureLowerBoundFn == null ? _null : rawMeasureLowerBoundFn.call$1(index); rawMeasureUpperBoundValue = rawMeasureUpperBoundFn == null ? _null : rawMeasureUpperBoundFn.call$1(index); color = colorFn.call$1(index); fillColor = fillColorFn.call$1(index); if (fillColor == null) fillColor = color; areaColor = areaColorFn.call$1(index); if (radiusPxFn == null) radiusPx = _null; else { t5 = radiusPxFn.call$1(index); radiusPx = t5 == null ? _null : t5; } if (radiusPx == null) radiusPx = _null; if (strokeWidthPxFn == null) strokeWidthPx = _null; else { t5 = strokeWidthPxFn.call$1(index); strokeWidthPx = t5 == null ? _null : t5; } if (strokeWidthPx == null) strokeWidthPx = _null; details.push(renderer.addPositionToDetailsForSeriesDatum$2(new A.DatumDetails(seriesDatum.datum, seriesDatum.get$index(seriesDatum), domainValue, domainLowerBoundValue, domainUpperBoundValue, measureValue, measureLowerBoundValue, measureUpperBoundValue, measureOffsetValue, rawMeasureValue, rawMeasureLowerBoundValue, rawMeasureUpperBoundValue, t4, color, fillColor, _null, areaColor, _null, _null, _null, _null, _null, _null, _null, _null, radiusPx, _null, strokeWidthPx, _null, _null, A._instanceType(renderer)._eval$1("DatumDetails<1>")), seriesDatum)); } return details; }, removeBehavior$1(behavior) { var role, t1, t2, wasAttached, _this = this; if (behavior == null) return false; role = behavior.get$role(behavior); t1 = _this._behaviorRoleMap; t2 = t1.$index(0, role); if (t2 === behavior) t1.remove$1(0, role); _this.unregisterTappable$1(behavior); wasAttached = B.JSArray_methods.remove$1(_this._behaviorStack, behavior); behavior.removeFrom$1(_this); return wasAttached; }, unregisterTappable$1(behavior) { var role = behavior.get$role(behavior), t1 = this._behaviorTappableMap, t2 = t1.$index(0, role); if (t2 === behavior) t1.remove$1(0, role); }, layout$2(_, width, height) { var t1, _this = this; if (_this._rendererToSeriesList != null) { _this._chartWidth = width; _this._chartHeight = height; _this._layoutManager.layout$2(0, width, height); t1 = _this._rendererToSeriesList; t1.toString; _this.fireOnAxisConfigured$0(); _this.super$BaseChart$onPostLayout(t1); } }, addView$1(view) { var t1 = this._layoutManager, t2 = t1._views; if (!B.JSArray_methods.contains$1(t2, view)) { view.set$graphicsFactory(this.graphicsFactory); t2.push(view); t1._viewsNeedPaintSort = t1._viewsNeedPositionSort = t1._drawAreaBoundsOutdated = true; } }, draw$1(seriesList) { var t1, t2, t3, processedSeriesList, _this = this, _box_0 = {}; for (t1 = _this._selectionModels, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) { t1 = t2.__internal$_current; t1.toString; t3 = t1.$ti; t1.updateSelection$3$notifyListeners(A._setArrayType([], t3._eval$1("JSArray>")), A._setArrayType([], t3._eval$1("JSArray>")), false); } t1 = A._instanceType(_this)._eval$1("MutableSeries"); seriesList.toString; processedSeriesList = A.List_List$of(new A.MappedListIterable(seriesList, _this.get$makeSeries(), A._arrayInstanceType(seriesList)._eval$1("@<1>")._bind$1(t1)._eval$1("MappedListIterable<1,2>")), true, t1); _this.fireOnDraw$1(processedSeriesList); _box_0.seriesIndex = 0; B.JSArray_methods.forEach$1(processedSeriesList, new A.BaseChart_draw_closure(_box_0, _this)); _this.__BaseChart__originalSeriesList = _this._currentSeriesList = processedSeriesList; _this.drawInternal$3$skipAnimation$skipLayout(processedSeriesList, false, false); }, redraw$2$skipAnimation$skipLayout(skipAnimation, skipLayout) { this.drawInternal$3$skipAnimation$skipLayout(A._lateReadCheck(this.__BaseChart__originalSeriesList, "_originalSeriesList"), skipAnimation, true); this.onSkipLayout$0(); }, drawInternal$3$skipAnimation$skipLayout(seriesList, skipAnimation, skipLayout) { var _this = this, t1 = A._arrayInstanceType(seriesList)._eval$1("@<1>")._bind$1(A._instanceType(_this)._eval$1("MutableSeries"))._eval$1("MappedListIterable<1,2>"); seriesList = A.List_List$of(new A.MappedListIterable(seriesList, new A.BaseChart_drawInternal_closure(_this), t1), true, t1._eval$1("ListIterable.E")); _this._animationsTemporarilyDisabled = skipAnimation; _this.configureSeries$1(seriesList); _this.fireOnPreprocess$1(seriesList); _this._rendererToSeriesList = _this.preprocessSeries$1(seriesList); _this.fireOnPostprocess$1(seriesList); _this._currentSeriesList = seriesList; }, makeSeries$1(series) { var t1, s = A.MutableSeries$(series, A._instanceType(this)._eval$1("BaseChart0.D")), rendererId = A._asStringQ(series.attributes._registry.$index(0, B.AttributeKey_kKQ)); if (rendererId == null) rendererId = "default"; t1 = s._attrs._registry; t1.$indexSet(0, B.AttributeKey_kKQ, rendererId); t1.$indexSet(0, B.AttributeKey_I4y, this.getSeriesRenderer$1(rendererId)); return s; }, configureSeries$1(seriesList) { var rendererToSeriesList = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, A._instanceType(this)._eval$1("List>")); B.JSArray_methods.forEach$1(seriesList, new A.BaseChart_configureSeries_closure(this, rendererToSeriesList)); rendererToSeriesList.forEach$1(0, new A.BaseChart_configureSeries_closure0(this)); }, preprocessSeries$1(seriesList) { var _this = this, t1 = type$.String, rendererToSeriesList = A.LinkedHashMap_LinkedHashMap$_empty(t1, A._instanceType(_this)._eval$1("List>")), unusedRenderers = _this._usingRenderers; _this._usingRenderers = A.LinkedHashSet_LinkedHashSet$_empty(t1); B.JSArray_methods.forEach$1(seriesList, new A.BaseChart_preprocessSeries_closure(_this, rendererToSeriesList, unusedRenderers)); unusedRenderers.forEach$1(0, new A.BaseChart_preprocessSeries_closure0(_this, rendererToSeriesList)); rendererToSeriesList.forEach$1(0, new A.BaseChart_preprocessSeries_closure1(_this)); return rendererToSeriesList; }, onSkipLayout$0() { var t1 = this._rendererToSeriesList; t1.toString; this.fireOnAxisConfigured$0(); this.super$BaseChart$onPostLayout(t1); }, onPostLayout$1(rendererToSeriesList) { var _this = this; rendererToSeriesList.forEach$1(0, new A.BaseChart_onPostLayout_closure(_this)); if (_this.get$animatingThisDraw()) { _this.animationPercent = 0; A._lateReadCheck(_this.__BaseChart_context, "context").requestAnimation$1(_this.transition); } else { _this.animationPercent = 1; A._lateReadCheck(_this.__BaseChart_context, "context").markNeedsPaint$0(); } _this._animationsTemporarilyDisabled = false; }, paint$1(canvas) { var _this = this; B.JSArray_methods.forEach$1(_this._layoutManager.get$paintOrderedViews(), new A.BaseChart_paint_closure(_this, canvas)); _this.fireOnPostrender$1(canvas); if (_this.animationPercent === 1) _this.fireOnAnimationComplete$0(); }, get$animatingThisDraw() { var t1 = B.JSInt_methods._tdivFast$1(this.transition._duration, 1000) > 0 && !this._animationsTemporarilyDisabled; return t1; }, fireOnDraw$1(seriesList) { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnDraw_closure(this, seriesList)); }, fireOnPreprocess$1(seriesList) { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnPreprocess_closure(this, seriesList)); }, fireOnPostprocess$1(seriesList) { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnPostprocess_closure(this, seriesList)); }, fireOnAxisConfigured$0() { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnAxisConfigured_closure(this)); }, fireOnPostrender$1(canvas) { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnPostrender_closure(this, canvas)); }, fireOnAnimationComplete$0() { B.JSArray_methods.forEach$1(this._lifecycleListeners, new A.BaseChart_fireOnAnimationComplete_closure(this)); } }; A.BaseChart_init_closure.prototype = { call$1(view) { var t1 = this.graphicsFactory; view.set$graphicsFactory(t1); return t1; }, $signature: 157 }; A.BaseChart_getSelectionModel_closure.prototype = { call$0() { var t1 = A._instanceType(this.$this), t2 = t1._eval$1("JSArray<~(SelectionModel)>"); t2 = new A.MutableSelectionModel(A._setArrayType([], t2), A._setArrayType([], t2), A._setArrayType([], t2), A._setArrayType([], t1._eval$1("JSArray>")), A._setArrayType([], t1._eval$1("JSArray>")), t1._eval$1("MutableSelectionModel")); t2.SelectionModel$2$selectedData$selectedSeries(null, null, t1._eval$1("BaseChart0.D")); return t2; }, $signature() { return A._instanceType(this.$this)._eval$1("MutableSelectionModel()"); } }; A.BaseChart_pointWithinRenderer_closure.prototype = { call$1(rendererId) { return this.$this.getSeriesRenderer$1(rendererId)._drawAreaBounds.containsPoint$1(0, this.chartPosition); }, $signature: 52 }; A.BaseChart_getNearestDatumDetailPerSeries_closure.prototype = { call$1(rendererId) { var _this = this; B.JSArray_methods.addAll$1(_this.details, _this.$this.getSeriesRenderer$1(rendererId).getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints(_this.drawAreaPoint, true, _this.boundsOverride, false, false)); }, $signature: 117 }; A.BaseChart_getNearestDatumDetailPerSeries_closure0.prototype = { call$2(a, b) { var t2, domainDiff, t1 = a.domainDistance; t1.toString; t2 = b.domainDistance; t2.toString; domainDiff = B.JSNumber_methods.compareTo$1(t1, t2); if (domainDiff === 0) { t1 = a.measureDistance; t1.toString; t2 = b.measureDistance; t2.toString; return B.JSNumber_methods.compareTo$1(t1, t2); } return domainDiff; }, $signature() { return A._instanceType(this.$this)._eval$1("int(DatumDetails,DatumDetails)"); } }; A.BaseChart_draw_closure.prototype = { call$1(series) { return series.__MutableSeries_seriesIndex = this._box_0.seriesIndex++; }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; A.BaseChart_drawInternal_closure.prototype = { call$1(series) { var t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object), t2 = series.id, t3 = series.displayName, t4 = series.seriesCategory, t5 = series.seriesColor, t6 = A._lateReadCheck(series.__MutableSeries_seriesIndex, "seriesIndex"), t7 = series.data, t8 = series.MutableSeries_keyFn, t9 = series.domainFn, t10 = series.domainFormatterFn, t11 = series.domainLowerBoundFn, t12 = series.domainUpperBoundFn, t13 = series.measureFn, t14 = series.measureFormatterFn, t15 = series.measureLowerBoundFn, t16 = series.measureUpperBoundFn, t17 = series.measureOffsetFn, t18 = series.rawMeasureFn, t19 = series.rawMeasureLowerBoundFn, t20 = series.rawMeasureUpperBoundFn, t21 = A._lateReadCheck(series.__MutableSeries_seriesMeasureTotal, "seriesMeasureTotal"), t22 = series.areaColorFn, t23 = series.colorFn, t24 = series.dashPatternFn, t25 = series.fillColorFn, t26 = series.fillPatternFn, t27 = series.patternColorFn, t28 = series.labelAccessorFn, t29 = series.MutableSeries_insideLabelStyleAccessorFn, t30 = series.MutableSeries_outsideLabelStyleAccessorFn, t31 = series.radiusPxFn, t32 = series.strokeWidthPxFn, t33 = series.measureAxis, t34 = series.domainAxis; t1.addAll$1(0, series._attrs._registry); return new A.MutableSeries(t2, t3, false, t4, t5, t6, t21, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t22, t23, t24, t25, t26, t27, t31, t32, t28, t29, t30, new A.SeriesAttributes(t1), t33, t34, A._instanceType(this.$this)._eval$1("MutableSeries")); }, $signature() { return A._instanceType(this.$this)._eval$1("MutableSeries(MutableSeries)"); } }; A.BaseChart_configureSeries_closure.prototype = { call$1(series) { J.add$1$ax(this.rendererToSeriesList.putIfAbsent$2(0, A._asStringQ(series._attrs._registry.$index(0, B.AttributeKey_kKQ)), new A.BaseChart_configureSeries__closure(this.$this)), series); }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; A.BaseChart_configureSeries__closure.prototype = { call$0() { return A._setArrayType([], A._instanceType(this.$this)._eval$1("JSArray>")); }, $signature() { return A._instanceType(this.$this)._eval$1("List>()"); } }; A.BaseChart_configureSeries_closure0.prototype = { call$2(rendererId, seriesList) { this.$this.getSeriesRenderer$1(rendererId).configureSeries$1(seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(String?,List>)"); } }; A.BaseChart_preprocessSeries_closure.prototype = { call$1(series) { var t2, t1 = A._asStringQ(series._attrs._registry.$index(0, B.AttributeKey_kKQ)); t1.toString; t2 = this.$this; J.add$1$ax(this.rendererToSeriesList.putIfAbsent$2(0, t1, new A.BaseChart_preprocessSeries__closure(t2)), series); t2._usingRenderers.add$1(0, t1); this.unusedRenderers.remove$1(0, t1); }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; A.BaseChart_preprocessSeries__closure.prototype = { call$0() { return A._setArrayType([], A._instanceType(this.$this)._eval$1("JSArray>")); }, $signature() { return A._instanceType(this.$this)._eval$1("List>()"); } }; A.BaseChart_preprocessSeries_closure0.prototype = { call$1(rendererId) { var t1 = A._setArrayType([], A._instanceType(this.$this)._eval$1("JSArray>")); this.rendererToSeriesList.$indexSet(0, rendererId, t1); return t1; }, $signature: 117 }; A.BaseChart_preprocessSeries_closure1.prototype = { call$2(rendererId, seriesList) { this.$this.getSeriesRenderer$1(rendererId).preprocessSeries$1(seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(String,List>)"); } }; A.BaseChart_onPostLayout_closure.prototype = { call$2(rendererId, seriesList) { var t1 = this.$this; t1.getSeriesRenderer$1(rendererId).update$2(0, seriesList, t1.get$animatingThisDraw()); }, $signature() { return A._instanceType(this.$this)._eval$1("~(String,List>)"); } }; A.BaseChart_paint_closure.prototype = { call$1(view) { var t1; A._rtiToString(J.get$runtimeType$(view)._rti, null); t1 = this.$this; t1 = t1.get$animatingThisDraw() ? t1.animationPercent : 1; view.paint$2(this.canvas, t1); }, $signature: 157 }; A.BaseChart_fireOnDraw_closure.prototype = { call$1(listener) { var t1 = listener.onData; if (t1 != null) t1.call$1(this.seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.BaseChart_fireOnPreprocess_closure.prototype = { call$1(listener) { var t1 = listener.onPreprocess; if (t1 != null) t1.call$1(this.seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.BaseChart_fireOnPostprocess_closure.prototype = { call$1(listener) { var t1 = listener.onPostprocess; if (t1 != null) t1.call$1(this.seriesList); }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.BaseChart_fireOnAxisConfigured_closure.prototype = { call$1(listener) { var t1 = listener.onAxisConfigured; if (t1 != null) t1.call$0(); }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.BaseChart_fireOnPostrender_closure.prototype = { call$1(listener) { listener.toString; }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.BaseChart_fireOnAnimationComplete_closure.prototype = { call$1(listener) { listener.toString; }, $signature() { return A._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; A.LifecycleListener.prototype = {}; A.BehaviorPosition.prototype = { toString$0(_) { return "BehaviorPosition." + this._core$_name; } }; A.OutsideJustification.prototype = { toString$0(_) { return "OutsideJustification." + this._core$_name; } }; A.InsideJustification.prototype = { toString$0(_) { return "InsideJustification." + this._core$_name; } }; A.DomainHighlighter0.prototype = { _selectionChanged$1(selectionModel) { A._lateReadCheck(this.__DomainHighlighter__chart, "_chart").redraw$2$skipAnimation$skipLayout(true, true); }, _updateColorFunctions$1(seriesList) { B.JSArray_methods.forEach$1(seriesList, new A.DomainHighlighter__updateColorFunctions_closure(this, A._lateReadCheck(this.__DomainHighlighter__chart, "_chart").getSelectionModel$1(this.selectionModelType))); }, attachTo$1(chart) { var _this = this; _this.__DomainHighlighter__chart = chart; chart._lifecycleListeners.push(A._lateReadCheck(_this.__DomainHighlighter__lifecycleListener, "_lifecycleListener")); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_selectionChanged()); }, removeFrom$1(chart) { B.JSArray_methods.remove$1(chart.getSelectionModel$1(this.selectionModelType)._changedListeners, this.get$_selectionChanged()); B.JSArray_methods.remove$1(chart._lifecycleListeners, A._lateReadCheck(this.__DomainHighlighter__lifecycleListener, "_lifecycleListener")); }, get$role(_) { return "domainHighlight-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; A.DomainHighlighter__updateColorFunctions_closure.prototype = { call$1(series) { var origColorFn = series.colorFn; if (origColorFn != null) series.colorFn = new A.DomainHighlighter__updateColorFunctions__closure(origColorFn, this.selectionModel, series); }, $signature() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; A.DomainHighlighter__updateColorFunctions__closure.prototype = { call$1(index) { var datum, origColor = this.origColorFn.call$1(index), t1 = this.selectionModel, t2 = this.series; t1.toString; datum = index == null ? null : t2.data[index]; if (B.JSArray_methods.contains$1(t1._selectedDatum, new A.SeriesDatum(t2, datum, t1.$ti._eval$1("SeriesDatum<1>")))) return origColor.get$darker(); else return origColor; }, $signature: 199 }; A.Legend.prototype = { defaultLegendMeasureFormatter$1(value) { return value == null ? "" : $.$get$Legend__decimalPattern().format$1(0, value); }, Legend$3$entryTextStyle$legendEntryGenerator$selectionModelType(entryTextStyle, legendEntryGenerator, selectionModelType, $D) { var t1, _this = this; A._lateWriteOnceCheck(_this.__Legend__lifecycleListener, "_lifecycleListener"); _this.__Legend__lifecycleListener = new A.LifecycleListener(_this.get$onData(), _this.get$_preProcess(), _this.get$_postProcess(), null, $D._eval$1("LifecycleListener<0>")); t1 = _this.legendEntryGenerator; t1.entryTextStyle = entryTextStyle; t1.showOverlaySeries = false; }, set$entryTextStyle(entryTextStyle) { this.legendEntryGenerator.entryTextStyle = entryTextStyle; }, _preProcess$1(seriesList) { this.__Legend__currentSeriesList = A.List_List$of(seriesList, true, this.$ti._eval$1("MutableSeries<1>")); this.preProcessSeriesList$1(seriesList); }, _postProcess$1(seriesList) { var _this = this, selectionModel = A._lateReadCheck(_this.__Legend__chart, "_chart").getSelectionModel$1(_this.selectionModelType), t1 = _this.legendState; if (!J.$eq$(t1._selectionModel, selectionModel) || _this._postProcessSeriesList !== seriesList) { t1.__LegendState__legendEntries = _this.legendEntryGenerator.getLegendEntries$1(A._lateReadCheck(_this.__Legend__currentSeriesList, "_currentSeriesList")); t1._selectionModel = selectionModel; _this._postProcessSeriesList = seriesList; _this._updateLegendEntries$1$seriesList(seriesList); } }, _legend$_selectionChanged$1(selectionModel) { this.legendState._selectionModel = selectionModel; this._updateLegendEntries$0(); }, _updateLegendEntries$1$seriesList(seriesList) { var t4, _this = this, t1 = _this.legendEntryGenerator, t2 = _this.legendState, t3 = A._lateReadCheck(t2.__LegendState__legendEntries, "_legendEntries"); t2 = t2._selectionModel; t2.toString; if (seriesList == null) { t4 = A._lateReadCheck(_this.__Legend__chart, "_chart")._currentSeriesList; t4.toString; } else t4 = seriesList; if (t2._selectedDatum.length !== 0 || A.List_List$unmodifiable(t2._selectedSeries, A._instanceType(t2)._eval$1("ImmutableSeries<1>")).length !== 0) t1._updateFromSelection$2(t3, t2); else if (A._lateReadCheck(t1.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, "legendDefaultMeasure") !== B.LegendDefaultMeasure_0) t1._updateFromSeriesList$2(t3, t4); else t1._resetLegendEntryMeasures$1(t3); A._lateReadCheck(A._lateReadCheck(_this.__Legend__chart, "_chart").__BaseChart_context, "context").requestRebuild$0(); }, _updateLegendEntries$0() { return this._updateLegendEntries$1$seriesList(null); }, attachTo$1(chart) { var _this = this; _this.__Legend__chart = chart; chart._lifecycleListeners.push(A._lateReadCheck(_this.__Legend__lifecycleListener, "_lifecycleListener")); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_legend$_selectionChanged()); chart.addView$1(_this); }, removeFrom$1(chart) { var _this = this; B.JSArray_methods.remove$1(chart.getSelectionModel$1(_this.selectionModelType)._changedListeners, _this.get$_legend$_selectionChanged()); B.JSArray_methods.remove$1(chart._lifecycleListeners, A._lateReadCheck(_this.__Legend__lifecycleListener, "_lifecycleListener")); chart._layoutManager.removeView$1(_this); }, get$role(_) { return "legend-" + this.selectionModelType.toString$0(0); }, get$layoutConfig() { var position, outsideJustification = this.config.outsideJustification, isRtl = A._lateReadCheck(A._lateReadCheck(this.__Legend__chart, "_chart").__BaseChart_context, "context")._chartContainerIsRtl; switch (3) { case 3: position = isRtl ? B.LayoutPosition_4 : B.LayoutPosition_6; break; } if (outsideJustification === B.OutsideJustification_1 || outsideJustification === B.OutsideJustification_3 || outsideJustification === B.OutsideJustification_5) switch (position.index) { case 0: position = B.LayoutPosition_1; break; case 4: position = B.LayoutPosition_5; break; case 2: position = B.LayoutPosition_3; break; case 6: position = B.LayoutPosition_7; break; default: break; } return A.LayoutViewConfig$(100, position, 30); }, measure$2(_, maxWidth, maxHeight) { return A.ViewMeasuredSizes$(0, 0); }, layout$2(_, componentBounds, drawAreaBounds) { this._legend$_componentBounds = componentBounds; this._legend$_drawAreaBounds = drawAreaBounds; A._lateReadCheck(A._lateReadCheck(this.__Legend__chart, "_chart").__BaseChart_context, "context").requestRebuild$0(); }, paint$2(canvas, animationPercent) { }, get$componentBounds() { return this._legend$_componentBounds; }, get$isSeriesRenderer() { return false; }, $isChartBehavior0: 1, $isLayoutView: 1, set$graphicsFactory() { } }; A.LegendState.prototype = {}; A.LegendTapHandling.prototype = { toString$0(_) { return "LegendTapHandling." + this._core$_name; } }; A.LegendEntryBase.prototype = {}; A.LegendEntry.prototype = { get$value(receiver) { return this.value; } }; A.LegendDefaultMeasure.prototype = { toString$0(_) { return "LegendDefaultMeasure." + this._core$_name; } }; A.PerSeriesLegendEntryGenerator.prototype = { getLegendEntries$1(seriesList) { var _this = this, t1 = A._arrayInstanceType(seriesList), t2 = t1._eval$1("@<1>")._bind$1(_this.$ti._eval$1("LegendEntry<1>"))._eval$1("MappedIterable<1,2>"), legendEntries = A.List_List$of(new A.MappedIterable(new A.WhereIterable(seriesList, new A.PerSeriesLegendEntryGenerator_getLegendEntries_closure(_this), t1._eval$1("WhereIterable<1>")), new A.PerSeriesLegendEntryGenerator_getLegendEntries_closure0(_this), t2), true, t2._eval$1("Iterable.E")); if (A._lateReadCheck(_this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, "legendDefaultMeasure") !== B.LegendDefaultMeasure_0) _this._updateFromSeriesList$2(legendEntries, seriesList); return legendEntries; }, _updateFromSelection$2(legendEntries, selectionModel) { var t2, t3, t4, _i, selectedDatum, series, seriesId, t5, measure, entry, measureValue, formattedValue, result, _this = this, t1 = type$.String, seriesAndMeasure = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.num), secondaryAxisSeriesIDs = A.HashSet_HashSet(t1); for (t1 = A._instanceType(selectionModel), t2 = t1._eval$1("SeriesDatum<1>"), t3 = A.List_List$unmodifiable(selectionModel._selectedDatum, t2), t4 = t3.length, _i = 0; _i < t4; ++_i) { selectedDatum = t3[_i]; series = selectedDatum.series; seriesId = series.id; t5 = J.get$index$z(selectedDatum); measure = series.measureFn.call$1(t5); if (measure == null) measure = 0; t5 = seriesAndMeasure.$index(0, seriesId); seriesAndMeasure.$indexSet(0, seriesId, (t5 == null ? 0 : t5) + measure); if (A._asStringQ(series._attrs._registry.$index(0, B.AttributeKey_Bwd)) === "secondaryMeasureAxisId") secondaryAxisSeriesIDs.add$1(0, seriesId); } for (t3 = legendEntries.length, t1 = t1._eval$1("ImmutableSeries<1>"), _i = 0; _i < legendEntries.length; legendEntries.length === t3 || (0, A.throwConcurrentModificationError)(legendEntries), ++_i) { entry = legendEntries[_i]; seriesId = entry.series.id; measureValue = seriesAndMeasure.$index(0, seriesId); if (measureValue == null) measureValue = null; formattedValue = secondaryAxisSeriesIDs.contains$1(0, seriesId) ? _this.secondaryMeasureFormatter.call$1(measureValue) : _this.measureFormatter.call$1(measureValue); entry.value = measureValue; entry.formattedValue = formattedValue; result = A.List_List$from(selectionModel._selectedSeries, false, t1); result.fixed$length = Array; result.immutable$list = Array; entry.isSelected = B.JSArray_methods.any$1(result, new A.PerSeriesLegendEntryGenerator__updateFromSelection_closure(_this, entry)); result = A.List_List$from(selectionModel._selectedDatum, false, t2); result.fixed$length = Array; result.immutable$list = Array; t4 = result; t5 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,int?>"); A.List_List$of(new A.MappedListIterable(t4, new A.PerSeriesLegendEntryGenerator__updateFromSelection_closure0(_this), t5), true, t5._eval$1("ListIterable.E")); } }, _resetLegendEntryMeasures$1(legendEntries) { var t1, _i, entry; for (t1 = legendEntries.length, _i = 0; _i < t1; ++_i) { entry = legendEntries[_i]; entry.formattedValue = entry.value = null; entry.isSelected = false; } }, _updateFromSeriesList$2(legendEntries, seriesList) { var _i, series, seriesId, calculatedMeasure, entry, _this = this, getMeasureTotal = new A.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal(_this), t1 = type$.String, seriesAndMeasure = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.nullable_double), seriesAndFormattedMeasure = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = seriesList.length, _i = 0; _i < seriesList.length; seriesList.length === t1 || (0, A.throwConcurrentModificationError)(seriesList), ++_i) { series = seriesList[_i]; seriesId = series.id; switch (A._lateReadCheck(_this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, "legendDefaultMeasure")) { case B.LegendDefaultMeasure_1: calculatedMeasure = getMeasureTotal.call$1(series); break; case B.LegendDefaultMeasure_2: calculatedMeasure = getMeasureTotal.call$1(series) / series.data.length; break; case B.LegendDefaultMeasure_3: calculatedMeasure = series.measureFn$1(0); break; case B.LegendDefaultMeasure_4: calculatedMeasure = series.measureFn$1(series.data.length - 1); break; case B.LegendDefaultMeasure_0: calculatedMeasure = null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } seriesAndMeasure.$indexSet(0, seriesId, calculatedMeasure == null ? null : calculatedMeasure); seriesAndFormattedMeasure.$indexSet(0, seriesId, A._asStringQ(series._attrs._registry.$index(0, B.AttributeKey_Bwd)) === "secondaryMeasureAxisId" ? _this.secondaryMeasureFormatter.call$1(calculatedMeasure) : _this.measureFormatter.call$1(calculatedMeasure)); } for (t1 = legendEntries.length, _i = 0; _i < legendEntries.length; legendEntries.length === t1 || (0, A.throwConcurrentModificationError)(legendEntries), ++_i) { entry = legendEntries[_i]; seriesId = entry.series.id; entry.value = seriesAndMeasure.$index(0, seriesId); entry.formattedValue = seriesAndFormattedMeasure.$index(0, seriesId); entry.isSelected = false; } }, $eq(_, other) { var _s20_ = "legendDefaultMeasure"; if (other == null) return false; return other instanceof A.PerSeriesLegendEntryGenerator && J.$eq$(this.measureFormatter, other.measureFormatter) && J.$eq$(this.secondaryMeasureFormatter, other.secondaryMeasureFormatter) && A._lateReadCheck(this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, _s20_) == A._lateReadCheck(other.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, _s20_) && true; }, get$hashCode(_) { var _this = this; return ((J.get$hashCode$(_this.measureFormatter) * 37 + J.get$hashCode$(_this.secondaryMeasureFormatter)) * 37 + A.Primitives_objectHashCode(A._lateReadCheck(_this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure, "legendDefaultMeasure"))) * 37 + B.JSNull_methods.get$hashCode(_this.entryTextStyle); } }; A.PerSeriesLegendEntryGenerator_getLegendEntries_closure.prototype = { call$1(series) { series.toString; return true; }, $signature() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; A.PerSeriesLegendEntryGenerator_getLegendEntries_closure0.prototype = { call$1(series) { var t3, t1 = series.displayName, t2 = series.seriesColor; t2.toString; t3 = this.$this; return new A.LegendEntry(series, t2, t1, t3.entryTextStyle, t3.$ti._eval$1("LegendEntry<1>")); }, $signature() { return this.$this.$ti._eval$1("LegendEntry<1>(MutableSeries<1>)"); } }; A.PerSeriesLegendEntryGenerator__updateFromSelection_closure.prototype = { call$1(selectedSeries) { return this.entry.series.id === selectedSeries.id; }, $signature() { return this.$this.$ti._eval$1("bool(ImmutableSeries<1>)"); } }; A.PerSeriesLegendEntryGenerator__updateFromSelection_closure0.prototype = { call$1(datum) { return datum.get$index(datum); }, $signature() { return this.$this.$ti._eval$1("int?(SeriesDatum<1>)"); } }; A.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal.prototype = { call$1(series) { var t1, measureTotal, i, t2; for (t1 = series.data, measureTotal = 0, i = 0; i < t1.length; ++i) { t2 = series.measureFn.call$1(i); measureTotal += t2 == null ? 0 : t2; } return measureTotal; }, $signature() { return this.$this.$ti._eval$1("num(MutableSeries<1>)"); } }; A.SeriesLegend0.prototype = { SeriesLegend$7$entryTextStyle$legendDefaultMeasure$legendEntryGenerator$measureFormatter$secondaryMeasureFormatter$selectionModelType$showMeasures(entryTextStyle, legendDefaultMeasure, legendEntryGenerator, measureFormatter, secondaryMeasureFormatter, selectionModelType, showMeasures, $D) { var t2, t1 = this.legendEntryGenerator; t1.__PerSeriesLegendEntryGenerator_legendDefaultMeasure = legendDefaultMeasure; t2 = this.get$defaultLegendMeasureFormatter(); t1.measureFormatter = t2; t1.secondaryMeasureFormatter = t2; }, set$defaultHiddenSeries(defaultHiddenSeries) { this._defaultHiddenSeries = defaultHiddenSeries; this._hiddenSeriesList.clear$0(0); }, onData$1(seriesList) { this._hiddenSeriesList._filterWhere$2(new A.SeriesLegend_onData_closure(new A.MappedListIterable(seriesList, new A.SeriesLegend_onData_closure0(this), A._arrayInstanceType(seriesList)._eval$1("MappedListIterable<1,String>"))), true); }, preProcessSeriesList$1(seriesList) { if (!!seriesList.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(seriesList, new A.SeriesLegend_preProcessSeriesList_closure(this), true); }, hideSeries$1(seriesId) { this._hiddenSeriesList.add$1(0, seriesId); }, showSeries$1(seriesId) { this._hiddenSeriesList._filterWhere$2(new A.SeriesLegend_showSeries_closure(seriesId), true); } }; A.SeriesLegend_onData_closure0.prototype = { call$1(series) { return series.id; }, $signature() { return this.$this.$ti._eval$1("String(MutableSeries<1>)"); } }; A.SeriesLegend_onData_closure.prototype = { call$1(id) { return !this.seriesIds.contains$1(0, id); }, $signature: 52 }; A.SeriesLegend_preProcessSeriesList_closure.prototype = { call$1(series) { return this.$this._hiddenSeriesList.contains$1(0, series.id); }, $signature() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; A.SeriesLegend_showSeries_closure.prototype = { call$1(id) { return id === this.seriesId; }, $signature: 52 }; A.LinePointHighlighter0.prototype = { attachTo$1(chart) { var t1, _this = this; _this.__LinePointHighlighter__chart = chart; t1 = new A._LinePointLayoutView(A.LayoutViewConfig$(110, B.LayoutPosition_8, 110), _this.showHorizontalFollowLine, _this.showVerticalFollowLine, chart, _this.dashPattern, true, _this.symbolRenderer, _this.$ti._eval$1("_LinePointLayoutView<1>")); _this.__LinePointHighlighter__view = t1; chart.addView$1(A._lateReadCheck(t1, "_view")); chart._lifecycleListeners.push(A._lateReadCheck(_this.__LinePointHighlighter__lifecycleListener, "_lifecycleListener")); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_line_point_highlighter$_selectionChanged()); }, removeFrom$1(chart) { var _this = this; chart._layoutManager.removeView$1(A._lateReadCheck(_this.__LinePointHighlighter__view, "_view")); B.JSArray_methods.remove$1(chart.getSelectionModel$1(_this.selectionModelType)._changedListeners, _this.get$_line_point_highlighter$_selectionChanged()); B.JSArray_methods.remove$1(chart._lifecycleListeners, A._lateReadCheck(_this.__LinePointHighlighter__lifecycleListener, "_lifecycleListener")); }, _line_point_highlighter$_selectionChanged$1(selectionModel) { A._lateReadCheck(this.__LinePointHighlighter__chart, "_chart").redraw$2$skipAnimation$skipLayout(true, true); }, _updateViewData$0() { var selectedDatumDetails, t2, t3, newSeriesMap, t4, t5, t6, radiusPx, t7, t8, t9, _i, detail, series, datum, t10, domainAxis, measureAxis, radiusPx0, pointKey, t11, animatingPoint, t12, _this = this, t1 = _this._line_point_highlighter$_currentKeys; B.JSArray_methods.set$length(t1, 0); selectedDatumDetails = A._lateReadCheck(_this.__LinePointHighlighter__chart, "_chart").getSelectedDatumDetails$1(_this.selectionModelType); t2 = _this.$ti; t3 = t2._eval$1("_AnimatedPoint<1>"); newSeriesMap = A.LinkedHashMap_LinkedHashMap(null, null, null, type$.String, t3); for (t4 = selectedDatumDetails.length, t5 = t2._eval$1("_DatumPoint0<1>"), t6 = t2._eval$1("_PointRendererElement<1>"), radiusPx = _this.defaultRadiusPx, t7 = type$.nullable_Axis_Object, t2 = t2._eval$1("ImmutableAxis<1>"), t8 = type$.ImmutableAxis_num, t9 = _this.radiusPaddingPx, _i = 0; _i < selectedDatumDetails.length; selectedDatumDetails.length === t4 || (0, A.throwConcurrentModificationError)(selectedDatumDetails), ++_i) { detail = selectedDatumDetails[_i]; series = detail.series; datum = detail.datum; t10 = series._attrs._registry; domainAxis = t2._as(t7._as(t10.$index(0, B.AttributeKey_OBU))); measureAxis = t8._as(t7._as(t10.$index(0, B.AttributeKey_kWM))); t10 = detail.radiusPx; radiusPx0 = t10 != null ? t10 + t9 : radiusPx; t10 = detail.domain; pointKey = series.id + "::" + A.S(t10) + "::" + A.S(detail.measure); if (_this._seriesPointMap.containsKey$1(0, pointKey)) { t11 = _this._seriesPointMap.$index(0, pointKey); t11.toString; animatingPoint = t11; } else { animatingPoint = new A._AnimatedPoint(pointKey, t3); animatingPoint.setNewTarget$1(new A._PointRendererElement(new A._DatumPoint0(datum, t10, series, domainAxis.getLocation$1(t10), measureAxis.getLocation$1(0), t5), detail.color, detail.fillColor, radiusPx0, measureAxis.getLocation$1(0), detail.strokeWidthPx, detail.symbolRenderer, t6)); } newSeriesMap.$indexSet(0, pointKey, animatingPoint); t11 = detail.chartPosition; t12 = t11.x; t11 = t11.y; t1.push(pointKey); animatingPoint.setNewTarget$1(new A._PointRendererElement(new A._DatumPoint0(datum, t10, series, t12, t11, t5), detail.color, detail.fillColor, radiusPx0, measureAxis.getLocation$1(0), detail.strokeWidthPx, detail.symbolRenderer, t6)); } _this._seriesPointMap.forEach$1(0, new A.LinePointHighlighter__updateViewData_closure(_this, newSeriesMap)); _this._seriesPointMap = newSeriesMap; A._lateReadCheck(_this.__LinePointHighlighter__view, "_view")._seriesPointMap = _this._seriesPointMap; }, get$role(_) { return "LinePointHighlighter-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; A.LinePointHighlighter__updateViewData_closure.prototype = { call$2(key, point) { var newTarget, targetPoint, t2, t1 = point.key; if (!B.JSArray_methods.contains$1(this.$this._line_point_highlighter$_currentKeys, t1)) { newTarget = point._currentPoint.clone$0(0); targetPoint = newTarget.point; t2 = newTarget.measureAxisPosition; t2.toString; newTarget.point = A._DatumPoint__DatumPoint$from0(targetPoint, targetPoint.x, B.JSNumber_methods.roundToDouble$0(t2), A._instanceType(point)._precomputed1); newTarget.radiusPx = 0; point.setNewTarget$1(newTarget); point.animatingOut = true; this.newSeriesMap.$indexSet(0, t1, point); } }, $signature() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; A._LinePointLayoutView.prototype = { measure$2(_, maxWidth, maxHeight) { return null; }, layout$2(_, componentBounds, drawAreaBounds) { this.___LinePointLayoutView__drawAreaBounds = drawAreaBounds; }, paint$2(canvas, animationPercent) { var keysToRemove, points, t1, endPointPerValueVertical, endPointPerValueHorizontal, t2, shouldShowHorizontalFollowLine, t3, t4, shouldShowVerticalFollowLine, t5, _i, t6, t7, roundedX, roundedY, shouldShowHorizontalFollowLine0, shouldShowVerticalFollowLine0, paintedHorizontalLinePositions, paintedVerticalLinePositions, drawBounds, leftBound, t8, t9, t10, t11, rightBound, leftBound0, pointElement, bounds, _this = this, _null = null, _seriesPointMap = _this._seriesPointMap; if (_seriesPointMap == null) return; if (animationPercent === 1) { keysToRemove = A._setArrayType([], type$.JSArray_String); _seriesPointMap.forEach$1(0, new A._LinePointLayoutView_paint_closure(_this, keysToRemove)); B.JSArray_methods.forEach$1(keysToRemove, _seriesPointMap.get$remove(_seriesPointMap)); } points = A._setArrayType([], _this.$ti._eval$1("JSArray<_PointRendererElement<1>>")); _seriesPointMap.forEach$1(0, new A._LinePointLayoutView_paint_closure0(_this, points, animationPercent)); t1 = type$.int; endPointPerValueVertical = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); endPointPerValueHorizontal = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = points.length, t2 = _this.showHorizontalFollowLine, shouldShowHorizontalFollowLine = t2 === B.LinePointHighlighterFollowLineType_0, t3 = !shouldShowHorizontalFollowLine, t4 = _this.showVerticalFollowLine, shouldShowVerticalFollowLine = t4 === B.LinePointHighlighterFollowLineType_0, t5 = !shouldShowVerticalFollowLine, _i = 0; _i < points.length; points.length === t1 || (0, A.throwConcurrentModificationError)(points), ++_i) { t6 = points[_i].point; t7 = t6.x; if (t7 == null || t6.y == null) continue; t7.toString; t6 = t6.y; t6.toString; roundedX = B.JSNumber_methods.round$0(t7); roundedY = B.JSNumber_methods.round$0(t6); if (endPointPerValueVertical.$index(0, roundedX) == null) endPointPerValueVertical.$indexSet(0, roundedX, roundedY); else if (t5) { t6 = endPointPerValueVertical.$index(0, roundedX); t6.toString; endPointPerValueVertical.$indexSet(0, roundedX, Math.min(t6, roundedY)); } if (endPointPerValueHorizontal.$index(0, roundedY) == null) endPointPerValueHorizontal.$indexSet(0, roundedY, roundedX); else if (t3) { t6 = endPointPerValueHorizontal.$index(0, roundedY); t6.toString; endPointPerValueHorizontal.$indexSet(0, roundedY, Math.max(t6, roundedX)); } } shouldShowHorizontalFollowLine0 = t2 === B.LinePointHighlighterFollowLineType_2 || shouldShowHorizontalFollowLine; shouldShowVerticalFollowLine0 = t4 === B.LinePointHighlighterFollowLineType_2 || shouldShowVerticalFollowLine; t1 = type$.JSArray_num; paintedHorizontalLinePositions = A._setArrayType([], t1); paintedVerticalLinePositions = A._setArrayType([], t1); t1 = _this.chart; drawBounds = t1._layoutManager.get$drawableLayoutAreaBounds(); A._lateReadCheck(t1.__BaseChart_context, "context").get$isRtl(); for (t1 = points.length, t2 = type$.Point_num, t3 = type$.JSArray_Point_num, t4 = _this.dashPattern, t5 = canvas.canvas, t6 = canvas._chart_canvas$_paint, leftBound = drawBounds.left, t7 = drawBounds.width, t8 = drawBounds.top, t9 = drawBounds.height, _i = 0; _i < points.length; points.length === t1 || (0, A.throwConcurrentModificationError)(points), ++_i) { t10 = points[_i].point; t11 = t10.x; if (t11 == null || t10.y == null) continue; t11.toString; t10 = t10.y; t10.toString; roundedX = B.JSNumber_methods.round$0(t11); roundedY = B.JSNumber_methods.round$0(t10); if (shouldShowHorizontalFollowLine0 && !B.JSArray_methods.contains$1(paintedHorizontalLinePositions, roundedY)) { rightBound = leftBound + t7; leftBound0 = leftBound; t10 = A._setArrayType([new A.Point(leftBound0, t10, t2), new A.Point(rightBound, t10, t2)], t3); $.$get$StyleFactory__styleFactory().toString; A.LinePainter_draw(t5, _null, t4, _null, t6, t10, _null, _null, new A.Color0(117, 117, 117, 255, _null, _null), 1); if (shouldShowHorizontalFollowLine) shouldShowHorizontalFollowLine0 = false; paintedHorizontalLinePositions.push(roundedY); } if (shouldShowVerticalFollowLine0 && !B.JSArray_methods.contains$1(paintedVerticalLinePositions, roundedX)) { t10 = A._setArrayType([new A.Point(t11, t8, t2), new A.Point(t11, t8 + t9, t2)], t3); $.$get$StyleFactory__styleFactory().toString; A.LinePainter_draw(t5, _null, t4, _null, t6, t10, _null, _null, new A.Color0(117, 117, 117, 255, _null, _null), 1); if (shouldShowVerticalFollowLine) shouldShowVerticalFollowLine0 = false; paintedVerticalLinePositions.push(roundedX); } if (!shouldShowHorizontalFollowLine0 && !shouldShowVerticalFollowLine0) break; } for (t1 = points.length, t2 = type$.double, t3 = _this.symbolRenderer, _i = 0; _i < points.length; points.length === t1 || (0, A.throwConcurrentModificationError)(points), ++_i) { pointElement = points[_i]; t4 = pointElement.point; t5 = t4.x; if (t5 == null || t4.y == null) continue; t5.toString; t4 = t4.y; t4.toString; t6 = pointElement.radiusPx; t7 = t6 * 2; bounds = A.Rectangle$(t5 - t6, t4 - t6, t7, t7, t2); t7 = pointElement.symbolRenderer; t4 = t7 == null ? t3 : t7; t4.paint$5$fillColor$strokeColor$strokeWidthPx(canvas, bounds, pointElement.fillColor, pointElement.color, pointElement.strokeWidthPx); } }, get$componentBounds() { return A._lateReadCheck(this.___LinePointLayoutView__drawAreaBounds, "_drawAreaBounds"); }, get$isSeriesRenderer() { return false; }, get$layoutConfig() { return this.layoutConfig; }, set$graphicsFactory() { } }; A._LinePointLayoutView_paint_closure.prototype = { call$2(key, point) { if (point.animatingOut) this.keysToRemove.push(key); }, $signature() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; A._LinePointLayoutView_paint_closure0.prototype = { call$2(key, point) { this.points.push(point.getCurrentPoint$1(this.animationPercent)); }, $signature() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; A._DatumPoint0.prototype = {}; A._PointRendererElement.prototype = { clone$0(_) { var _this = this; return new A._PointRendererElement(_this.point, _this.color, _this.fillColor, _this.radiusPx, _this.measureAxisPosition, _this.strokeWidthPx, _this.symbolRenderer, _this.$ti); }, _lerpDouble$3(a, b, t) { if (a == null || b == null) return null; return a + (b - a) * t; } }; A._AnimatedPoint.prototype = { setNewTarget$1(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentPoint; _this._previousPoint = (t1 == null ? _this._currentPoint = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedPoint__targetPoint = newTarget; }, getCurrentPoint$1(animationPercent) { var t1, t2, t3, targetPoint, previousPoint, t4, t5, targetStrokeWidthPx, previousStrokeWidthPx, _this = this, _s12_ = "_targetPoint"; if (animationPercent === 1 || _this._previousPoint == null) { _this._currentPoint = A._lateReadCheck(_this.___AnimatedPoint__targetPoint, _s12_); _this._previousPoint = A._lateReadCheck(_this.___AnimatedPoint__targetPoint, _s12_); t1 = _this._currentPoint; t1.toString; return t1; } t1 = _this._currentPoint; t1.toString; t2 = _this._previousPoint; t2.toString; t3 = A._lateReadCheck(_this.___AnimatedPoint__targetPoint, _s12_); targetPoint = t3.point; previousPoint = t2.point; t1.point = A._DatumPoint__DatumPoint$from0(targetPoint, t1._lerpDouble$3(previousPoint.x, targetPoint.x, animationPercent), t1._lerpDouble$3(previousPoint.y, targetPoint.y, animationPercent), t1.$ti._precomputed1); t4 = t2.color; t4.toString; t5 = t3.color; t5.toString; t1.color = A.getAnimatedColor(t4, t5, animationPercent); t5 = t2.fillColor; t5.toString; t4 = t3.fillColor; t4.toString; t1.fillColor = A.getAnimatedColor(t5, t4, animationPercent); t4 = t1._lerpDouble$3(t2.radiusPx, t3.radiusPx, animationPercent); t4.toString; t1.radiusPx = t4; targetStrokeWidthPx = t3.strokeWidthPx; previousStrokeWidthPx = t2.strokeWidthPx; if (targetStrokeWidthPx != null && previousStrokeWidthPx != null) t1.strokeWidthPx = (targetStrokeWidthPx - previousStrokeWidthPx) * animationPercent + previousStrokeWidthPx; else t1.strokeWidthPx = null; t1 = _this._currentPoint; t1.toString; return t1; } }; A.LinePointHighlighterFollowLineType.prototype = { toString$0(_) { return "LinePointHighlighterFollowLineType." + this._core$_name; } }; A.SelectNearest0.prototype = { _onTapTest$1(chartPoint) { this._delaySelect = this.eventTrigger === B.SelectionTrigger_4; return this._select_nearest$_chart.pointWithinRenderer$1(chartPoint); }, _onLongPressSelect$1(chartPoint) { this._delaySelect = false; return this._onSelect$1(chartPoint); }, _onSelect$2(chartPoint, ignored) { var details, seriesList, seriesDatumList, _this = this, t1 = _this._select_nearest$_chart; if (t1 == null) return false; if (_this._delaySelect) return false; details = t1.getNearestDatumDetailPerSeries$2(chartPoint, true); t1 = _this.$ti; seriesList = A._setArrayType([], t1._eval$1("JSArray>")); seriesDatumList = A._setArrayType([], t1._eval$1("JSArray>")); t1 = details.length; if (t1 !== 0) { B.JSArray_methods.sort$1(details, new A.SelectNearest__onSelect_closure(_this)); seriesDatumList = _this._extractSeriesFromNearestSelection$1(details); if (!!seriesDatumList.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(seriesDatumList, new A.SelectNearest__onSelect_closure0(_this), true); t1 = seriesList.length; if (t1 === 0) { B.JSArray_methods.get$first(details).toString; seriesList.push(B.JSArray_methods.get$first(details).series); } } return _this._select_nearest$_chart.getSelectionModel$1(_this.selectionModelType).updateSelection$2(seriesDatumList, seriesList); }, _onSelect$1(chartPoint) { return this._onSelect$2(chartPoint, null); }, _extractSeriesFromNearestSelection$1(details) { var t1, _this = this; switch (_this.selectionMode.index) { case 0: return _this._expandToDomain$1(B.JSArray_methods.get$first(details)); case 1: t1 = A._arrayInstanceType(details)._eval$1("@<1>")._bind$1(_this.$ti._eval$1("SeriesDatum<1>"))._eval$1("MappedListIterable<1,2>"); return A.List_List$of(new A.MappedListIterable(details, new A.SelectNearest__extractSeriesFromNearestSelection_closure(_this), t1), true, t1._eval$1("ListIterable.E")); case 2: t1 = _this.$ti; return A._setArrayType([new A.SeriesDatum(B.JSArray_methods.get$first(details).series, B.JSArray_methods.get$first(details).datum, t1._eval$1("SeriesDatum<1>"))], t1._eval$1("JSArray>")); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _onDeselectAll$3(_, __, ___) { var t1, _this = this; if (_this._delaySelect) return false; t1 = _this.$ti; _this._select_nearest$_chart.getSelectionModel$1(_this.selectionModelType).updateSelection$2(A._setArrayType([], t1._eval$1("JSArray>")), A._setArrayType([], t1._eval$1("JSArray>"))); return false; }, _expandToDomain$1(nearestDetails) { var t5, t6, t7, _i, series, domainFn, domainLowerBoundFn, domainUpperBoundFn, testBounds, t8, i, datum, domain, domainLowerBound, domainUpperBound, addDatum, t9, t10, t1 = nearestDetails.series, t2 = nearestDetails.datum, t3 = this.$ti, t4 = t3._eval$1("SeriesDatum<1>"), data = A._setArrayType([new A.SeriesDatum(t1, t2, t4)], t3._eval$1("JSArray>")), nearestDomain = nearestDetails.domain; for (t3 = this._select_nearest$_chart._currentSeriesList, t5 = t3.length, t6 = J.getInterceptor$(t2), t7 = type$.DateTime, _i = 0; _i < t3.length; t3.length === t5 || (0, A.throwConcurrentModificationError)(t3), ++_i) { series = t3[_i]; domainFn = series.domainFn; domainLowerBoundFn = series.domainLowerBoundFn; domainUpperBoundFn = series.domainUpperBoundFn; testBounds = domainLowerBoundFn != null && domainUpperBoundFn != null; for (t8 = series.data, i = 0; i < t8.length; ++i) { datum = t8[i]; domain = domainFn.call$1(i); if (t1.$eq(0, series) && t6.$eq(t2, datum)) continue; if (J.$eq$(domain, nearestDomain)) data.push(new A.SeriesDatum(series, datum, t4)); else if (testBounds) { domainLowerBound = domainLowerBoundFn.call$1(i); domainUpperBound = domainUpperBoundFn.call$1(i); if (domainLowerBound != null && domainUpperBound != null) if (A._isInt(domain)) { A._asIntS(domainLowerBound); A._asIntS(nearestDomain); addDatum = domainLowerBound <= nearestDomain && nearestDomain <= A._asIntS(domainUpperBound); } else if (typeof domain == "number") { A._asDoubleS(domainLowerBound); A._asDoubleS(nearestDomain); addDatum = domainLowerBound <= nearestDomain && nearestDomain <= A._asDoubleS(domainUpperBound); } else if (domain instanceof A.DateTime) if (!J.$eq$(domainLowerBound, nearestDomain)) if (!J.$eq$(domainUpperBound, nearestDomain)) { t7._as(domainLowerBound); t7._as(nearestDomain); t9 = domainLowerBound._value; t10 = nearestDomain._value; t9 = t9 < t10 && t10 < t7._as(domainUpperBound)._value; addDatum = t9; } else addDatum = true; else addDatum = true; else addDatum = false; else addDatum = false; if (addDatum) data.push(new A.SeriesDatum(series, datum, t4)); } } } return data; }, attachTo$1(chart) { var t1, role, _this = this; _this._select_nearest$_chart = chart; t1 = chart._gestureProxy; t1._proxy_gesture_listener$_listeners.push(A._lateReadCheck(_this.__SelectNearest__listener, "_listener")); B.JSArray_methods.set$length(t1._activeListeners, 0); switch (_this.eventTrigger.index) { case 1: case 2: case 3: case 4: role = "SelectNearest-" + _this.selectionModelType.toString$0(0); t1 = chart._behaviorRoleMap.$index(0, role) === _this && chart._behaviorTappableMap.$index(0, role) !== _this; if (t1) chart._behaviorTappableMap.$indexSet(0, role, _this); break; case 0: default: chart.unregisterTappable$1(_this); break; } }, removeFrom$1(chart) { var t1 = chart._gestureProxy; B.JSArray_methods.remove$1(t1._proxy_gesture_listener$_listeners, A._lateReadCheck(this.__SelectNearest__listener, "_listener")); B.JSArray_methods.set$length(t1._activeListeners, 0); chart.unregisterTappable$1(this); this._select_nearest$_chart = null; }, get$role(_) { return "SelectNearest-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; A.SelectNearest__onSelect_closure.prototype = { call$2(a, b) { var t2, t1 = a.domainDistance; t1.toString; t2 = b.domainDistance; t2.toString; return B.JSNumber_methods.compareTo$1(t1, t2); }, $signature() { return this.$this.$ti._eval$1("int(DatumDetails<1>,DatumDetails<1>)"); } }; A.SelectNearest__onSelect_closure0.prototype = { call$1(datum) { datum.toString; return false; }, $signature() { return this.$this.$ti._eval$1("bool(SeriesDatum<1>)"); } }; A.SelectNearest__extractSeriesFromNearestSelection_closure.prototype = { call$1(datumDetails) { return new A.SeriesDatum(datumDetails.series, datumDetails.datum, this.$this.$ti._eval$1("SeriesDatum<1>")); }, $signature() { return this.$this.$ti._eval$1("SeriesDatum<1>(DatumDetails<1>)"); } }; A.SelectionMode.prototype = { toString$0(_) { return "SelectionMode." + this._core$_name; } }; A.SelectionTrigger.prototype = { toString$0(_) { return "SelectionTrigger." + this._core$_name; } }; A.CanvasRect.prototype = {}; A.CanvasBarStack.prototype = {}; A.FillPatternType.prototype = { toString$0(_) { return "FillPatternType." + this._core$_name; } }; A.DatumDetails.prototype = {}; A.MutableSeries.prototype = { MutableSeries$1(series, $D) { var t1, measure, _this = this, i = _this.__MutableSeries_seriesMeasureTotal = 0; for (t1 = _this.data; i < t1.length; ++i) { measure = _this.measureFn.call$1(i); if (measure != null) _this.__MutableSeries_seriesMeasureTotal = A._lateReadCheck(_this.__MutableSeries_seriesMeasureTotal, "seriesMeasureTotal") + measure; } t1 = series.labelAccessorFn; _this.labelAccessorFn = t1 == null ? new A.MutableSeries_closure(_this) : t1; _this._attrs._registry.addAll$1(0, series.attributes._registry); }, $eq(_, other) { if (other == null) return false; return other instanceof A.MutableSeries && this.data === other.data && this.id === other.id; }, get$hashCode(_) { return A.Primitives_objectHashCode(this.data) * 31 + B.JSString_methods.get$hashCode(this.id); }, measureFn$1(arg0) { return this.measureFn.call$1(arg0); }, get$id(receiver) { return this.id; } }; A.MutableSeries_closure.prototype = { call$1(i) { return J.toString$0$(this.$this.domainFn.call$1(i)); }, $signature: 2850 }; A.ImmutableSeries.prototype = {}; A.SelectionModel.prototype = { SelectionModel$2$selectedData$selectedSeries(selectedData, selectedSeries, $D) { }, SelectionModel$fromOther$1(other, $D) { this._selectedDatum = A.List_List$of(other._selectedDatum, true, $D._eval$1("SeriesDatum<0>")); this._selectedSeries = A.List_List$of(other._selectedSeries, true, $D._eval$1("ImmutableSeries<0>")); }, $eq(_, other) { var t1, t2; if (other == null) return false; t1 = A._instanceType(this); if (t1._eval$1("SelectionModel<1>")._is(other)) { t2 = A._instanceType(other); t1 = new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(this._selectedDatum, A.List_List$unmodifiable(other._selectedDatum, t2._eval$1("SeriesDatum<1>"))) && new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(this._selectedSeries, A.List_List$unmodifiable(other._selectedSeries, t2._eval$1("ImmutableSeries<1>"))); } else t1 = false; return t1; }, get$hashCode(_) { var t1 = A._instanceType(this); return new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).hash$1(0, this._selectedDatum) * 37 + new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).hash$1(0, this._selectedSeries); } }; A.MutableSelectionModel.prototype = { updateSelection$3$notifyListeners(datumSelection, seriesList, notifyListeners) { var t1, copyOfSelectionModel, changed, _this = this, origSelectedDatum = _this._selectedDatum, origSelectedSeries = _this._selectedSeries; _this._selectedDatum = datumSelection; _this._selectedSeries = seriesList; t1 = _this.$ti; copyOfSelectionModel = new A.SelectionModel(A._setArrayType([], t1._eval$1("JSArray>")), A._setArrayType([], t1._eval$1("JSArray>")), t1._eval$1("SelectionModel<1>")); copyOfSelectionModel.SelectionModel$fromOther$1(_this, t1._precomputed1); B.JSArray_methods.forEach$1(_this._updatedListeners, new A.MutableSelectionModel_updateSelection_closure(_this, copyOfSelectionModel)); changed = !new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(origSelectedDatum, _this._selectedDatum) || !new A.ListEquality(B.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(origSelectedSeries, _this._selectedSeries); if (notifyListeners && changed) B.JSArray_methods.forEach$1(_this._changedListeners, new A.MutableSelectionModel_updateSelection_closure0(_this, copyOfSelectionModel)); return changed; }, updateSelection$2(datumSelection, seriesList) { return this.updateSelection$3$notifyListeners(datumSelection, seriesList, true); } }; A.MutableSelectionModel_updateSelection_closure.prototype = { call$1(listener) { return listener.call$1(this.copyOfSelectionModel); }, $signature() { return this.$this.$ti._eval$1("~(~(SelectionModel<1>))"); } }; A.MutableSelectionModel_updateSelection_closure0.prototype = { call$1(listener) { return listener.call$1(this.copyOfSelectionModel); }, $signature() { return this.$this.$ti._eval$1("~(~(SelectionModel<1>))"); } }; A.SelectionModelType.prototype = { toString$0(_) { return "SelectionModelType." + this._core$_name; } }; A.SeriesDatum.prototype = { get$index(_) { var t2, _this = this, t1 = _this.datum; if (t1 == null) return null; t2 = _this._series_datum$_index; return t2 == null ? _this._series_datum$_index = B.JSArray_methods.indexOf$1(_this.series.data, t1) : t2; }, $eq(_, other) { if (other == null) return false; return other instanceof A.SeriesDatum && other.series.$eq(0, this.series) && J.$eq$(other.datum, this.datum); }, get$hashCode(_) { var t1 = this.series; return t1.get$hashCode(t1) * 31 + J.get$hashCode$(this.datum); } }; A.BaseSeriesRenderer.prototype = { onAttach$1(chart) { }, assignMissingColors$2$emptyCategoryUsesSinglePalette(seriesList, emptyCategoryUsesSinglePalette) { var t4, t5, t6, palettes, colorPalettes, colorsByCategory, _this = this, t1 = {}, t2 = type$.String, t3 = type$.int, missingColorCountPerCategory = A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); t1.maxMissing = 0; t4 = t1.hasSpecifiedCategory = false; t5 = J.getInterceptor$ax(seriesList); t5.forEach$1(seriesList, new A.BaseSeriesRenderer_assignMissingColors_closure(t1, _this, missingColorCountPerCategory)); t6 = t1.maxMissing; if (t6 > 0) { if (!emptyCategoryUsesSinglePalette ? !t1.hasSpecifiedCategory : t4) { $.$get$StyleFactory__styleFactory().toString; t2 = $.$get$MaterialPalette__orderedPalettes(); t2.toString; palettes = A.SubListIterable$(t2, 0, A.checkNotNullable(t6, "count", t3), t2.$ti._eval$1("ListIterable.E")).toList$0(0); t1.index = 0; t5.forEach$1(seriesList, new A.BaseSeriesRenderer_assignMissingColors_closure0(t1, _this, palettes)); return; } $.$get$StyleFactory__styleFactory().toString; t4 = missingColorCountPerCategory._length; t6 = $.$get$MaterialPalette__orderedPalettes(); t6.toString; colorPalettes = A.SubListIterable$(t6, 0, A.checkNotNullable(t4, "count", t3), t6.$ti._eval$1("ListIterable.E")).toList$0(0); colorsByCategory = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_Color); t1.index = 0; new A.LinkedHashMapKeyIterable(missingColorCountPerCategory, missingColorCountPerCategory.$ti._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, new A.BaseSeriesRenderer_assignMissingColors_closure1(t1, colorsByCategory, colorPalettes, missingColorCountPerCategory)); t5.forEach$1(seriesList, new A.BaseSeriesRenderer_assignMissingColors_closure2(_this, missingColorCountPerCategory, colorsByCategory)); } else t5.forEach$1(seriesList, new A.BaseSeriesRenderer_assignMissingColors_closure3(_this)); t5.forEach$1(seriesList, new A.BaseSeriesRenderer_assignMissingColors_closure4(_this)); }, measure$2(_, maxWidth, maxHeight) { return null; }, layout$2(_, componentBounds, drawAreaBounds) { this._drawAreaBounds = drawAreaBounds; }, get$componentBounds() { return this._drawAreaBounds; }, get$isSeriesRenderer() { return true; }, isPointWithinBounds$2(chartPoint, bounds) { var t1; if (bounds != null) { if (!bounds.containsPoint$1(0, chartPoint)) return false; } else { t1 = this._drawAreaBounds; if (t1 == null || !t1.containsPoint$1(0, chartPoint)) return false; } return true; }, $isSeriesRenderer: 1, $isLayoutView: 1, get$layoutConfig() { return this.layoutConfig; }, set$graphicsFactory(val) { return this.graphicsFactory = val; } }; A.BaseSeriesRenderer_assignMissingColors_closure.prototype = { call$1(series) { var t2, missingCnt, _s11_ = "__default__", t1 = series.colorFn; if ((t1 == null && series.seriesColor != null ? series.colorFn = new A.BaseSeriesRenderer_assignMissingColors__closure3(series) : t1) == null) { t1 = this.missingColorCountPerCategory; t2 = t1.$index(0, _s11_); missingCnt = (t2 == null ? 0 : t2) + 1; t1.$indexSet(0, _s11_, missingCnt); t1 = this._box_0; t1.maxMissing = Math.max(t1.maxMissing, missingCnt); } }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseSeriesRenderer_assignMissingColors__closure3.prototype = { call$1(_) { var t1 = this.series.seriesColor; t1.toString; return t1; }, $signature: 199 }; A.BaseSeriesRenderer_assignMissingColors_closure0.prototype = { call$1(series) { var t2, color, exception, t1 = series.colorFn; if (t1 == null) { t1 = this.palettes; t2 = this._box_0; color = t1[B.JSInt_methods.$mod(t2.index, t1.length)].get$shadeDefault(); ++t2.index; series.colorFn = new A.BaseSeriesRenderer_assignMissingColors__closure2(color); if (series.seriesColor == null) series.seriesColor = color; } else if (series.seriesColor == null) try { series.seriesColor = t1.call$1(0); } catch (exception) { $.$get$StyleFactory__styleFactory().toString; series.seriesColor = B.Color_ePM; } }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseSeriesRenderer_assignMissingColors__closure2.prototype = { call$1(_) { return this.color; }, $signature: 199 }; A.BaseSeriesRenderer_assignMissingColors_closure1.prototype = { call$1(category) { var _this = this, t1 = _this.colorPalettes, t2 = _this._box_0; _this.colorsByCategory.$indexSet(0, category, t1[B.JSInt_methods.$mod(t2.index, t1.length)].makeShades$1(t2.maxMissing)); ++t2.index; _this.missingColorCountPerCategory.$indexSet(0, category, 0); }, $signature: 117 }; A.BaseSeriesRenderer_assignMissingColors_closure2.prototype = { call$1(series) { var t1, t2, _s11_ = "__default__"; if (series.colorFn == null) { t1 = this.missingColorCountPerCategory; t2 = t1.$index(0, _s11_); t2.toString; t1.$indexSet(0, _s11_, t2 + 1); series.colorFn = new A.BaseSeriesRenderer_assignMissingColors__closure0(this.colorsByCategory.$index(0, _s11_)[t2]); } if (series.fillColorFn == null) series.fillColorFn = new A.BaseSeriesRenderer_assignMissingColors__closure1(series); }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseSeriesRenderer_assignMissingColors__closure0.prototype = { call$1(_) { return this.color; }, $signature: 199 }; A.BaseSeriesRenderer_assignMissingColors__closure1.prototype = { call$1(index) { return this.series.colorFn.call$1(index); }, $signature: 199 }; A.BaseSeriesRenderer_assignMissingColors_closure3.prototype = { call$1(series) { if (series.fillColorFn == null) series.fillColorFn = new A.BaseSeriesRenderer_assignMissingColors__closure(series); }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.BaseSeriesRenderer_assignMissingColors__closure.prototype = { call$1(index) { return this.series.colorFn.call$1(index); }, $signature: 199 }; A.BaseSeriesRenderer_assignMissingColors_closure4.prototype = { call$1(series) { var exception; if (series.seriesColor == null) try { series.seriesColor = series.colorFn.call$1(0); } catch (exception) { $.$get$StyleFactory__styleFactory().toString; series.seriesColor = B.Color_ePM; } }, $signature() { return A._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; A.RendererAttributes.prototype = {}; A.IdentityConverter.prototype = {}; A.LayoutConfig.prototype = {}; A.MarginSpec.prototype = { getMinPixels$1(totalPixels) { var _minPixel = this._minPixel; if (_minPixel != null) return _minPixel; else return 0; }, getMaxPixels$1(totalPixels) { var _maxPercent = this._maxPercent; if (_maxPercent != null) return B.JSNumber_methods.round$0(totalPixels * (_maxPercent / 100)); else return totalPixels; } }; A.LayoutManagerImpl.prototype = { removeView$1(view) { var _this = this; if (B.JSArray_methods.remove$1(_this._views, view)) _this._viewsNeedPaintSort = _this._viewsNeedPositionSort = _this._drawAreaBoundsOutdated = true; }, get$paintOrderedViews() { var t1, _this = this, _s18_ = "_paintOrderedViews"; if (_this._viewsNeedPaintSort) { t1 = A.List_List$of(_this._views, true, type$.LayoutView); _this.__LayoutManagerImpl__paintOrderedViews = t1; J.sort$1$ax(A._lateReadCheck(t1, _s18_), new A.LayoutManagerImpl_paintOrderedViews_closure()); _this._viewsNeedPaintSort = false; } return A._lateReadCheck(_this.__LayoutManagerImpl__paintOrderedViews, _s18_); }, get$positionOrderedViews() { var t1, _this = this, _s21_ = "_positionOrderedViews"; if (_this._viewsNeedPositionSort) { t1 = A.List_List$of(_this._views, true, type$.LayoutView); _this.__LayoutManagerImpl__positionOrderedViews = t1; J.sort$1$ax(A._lateReadCheck(t1, _s21_), new A.LayoutManagerImpl_positionOrderedViews_closure()); _this._viewsNeedPositionSort = false; } return A._lateReadCheck(_this.__LayoutManagerImpl__positionOrderedViews, _s21_); }, get$drawableLayoutAreaBounds() { var t3, t4, t5, right, t6, t7, bottom, left, $top, t1 = this._views, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), drawableViews = new A.WhereIterable(t1, new A.LayoutManagerImpl_drawableLayoutAreaBounds_closure(), t2), componentBounds = drawableViews.get$first(drawableViews).get$componentBounds(); if (componentBounds != null) for (t1 = A.SkipIterable_SkipIterable(drawableViews, 1, t2._eval$1("Iterable.E")), t2 = J.get$iterator$ax(t1.__internal$_iterable), t1 = new A.SkipIterator(t2, t1._skipCount, A._instanceType(t1)._eval$1("SkipIterator<1>")); t1.moveNext$0();) { t3 = t2.get$current(t2); if (t3.get$componentBounds() != null) { t3 = t3.get$componentBounds(); t3.toString; t4 = componentBounds.left; t5 = t3.left; right = Math.max(t4 + componentBounds.width, t5 + t3.width); t6 = componentBounds.top; t7 = t3.top; bottom = Math.max(t6 + componentBounds.height, t7 + t3.height); left = Math.min(t4, t5); $top = Math.min(t6, t7); t7 = componentBounds.$ti._precomputed1; componentBounds = A.Rectangle$(left, $top, t7._as(right - left), t7._as(bottom - $top), t7); } } else componentBounds = A.Rectangle$(0, 0, 0, 0, type$.int); return componentBounds; }, measure$2(_, width, height) { var t1, t2, _this = this, topViews = _this._viewsForPositions$2(B.LayoutPosition_2, B.LayoutPosition_3), rightViews = _this._viewsForPositions$2(B.LayoutPosition_6, B.LayoutPosition_7), bottomViews = _this._viewsForPositions$2(B.LayoutPosition_0, B.LayoutPosition_1), leftViews = _this._viewsForPositions$2(B.LayoutPosition_4, B.LayoutPosition_5), measurements = _this._layout_manager_impl$_measure$7$bottomViews$leftViews$rightViews$topViews$useMax(width, height, bottomViews, leftViews, rightViews, topViews, true), secondMeasurements = _this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, measurements, rightViews, topViews, true); measurements = measurements.leftWidth !== secondMeasurements.leftWidth || measurements.rightWidth !== secondMeasurements.rightWidth || measurements.topHeight !== secondMeasurements.topHeight || measurements.bottomHeight !== secondMeasurements.bottomHeight ? _this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, secondMeasurements, rightViews, topViews, false) : secondMeasurements; _this.__LayoutManagerImpl__measurements = measurements; t1 = measurements.leftWidth; t2 = measurements.topHeight; _this.__LayoutManagerImpl__drawAreaBounds = A.Rectangle$(t1, t2, Math.max(20, width - t1 - measurements.rightWidth), Math.max(20, height - measurements.bottomHeight - t2), type$.int); _this._drawAreaBoundsOutdated = false; }, layout$2(_, width, height) { var _this = this, _s13_ = "_measurements", _s15_ = "_drawAreaBounds", topViews = _this._viewsForPositions$2(B.LayoutPosition_2, B.LayoutPosition_3), rightViews = _this._viewsForPositions$2(B.LayoutPosition_6, B.LayoutPosition_7), bottomViews = _this._viewsForPositions$2(B.LayoutPosition_0, B.LayoutPosition_1), leftViews = _this._viewsForPositions$2(B.LayoutPosition_4, B.LayoutPosition_5), drawAreaViews = _this._viewsForPositions$1(B.LayoutPosition_8), fullBounds = A.Rectangle$(0, 0, width, height, type$.int); new A.LeftMarginLayoutStrategy().layout$4(0, leftViews, A._lateReadCheck(_this.__LayoutManagerImpl__measurements, _s13_).leftSizes, fullBounds, A._lateReadCheck(_this.__LayoutManagerImpl__drawAreaBounds, _s15_)); new A.RightMarginLayoutStrategy().layout$4(0, rightViews, A._lateReadCheck(_this.__LayoutManagerImpl__measurements, _s13_).rightSizes, fullBounds, A._lateReadCheck(_this.__LayoutManagerImpl__drawAreaBounds, _s15_)); new A.BottomMarginLayoutStrategy().layout$4(0, bottomViews, A._lateReadCheck(_this.__LayoutManagerImpl__measurements, _s13_).bottomSizes, fullBounds, A._lateReadCheck(_this.__LayoutManagerImpl__drawAreaBounds, _s15_)); new A.TopMarginLayoutStrategy().layout$4(0, topViews, A._lateReadCheck(_this.__LayoutManagerImpl__measurements, _s13_).topSizes, fullBounds, A._lateReadCheck(_this.__LayoutManagerImpl__drawAreaBounds, _s15_)); drawAreaViews.forEach$1(0, new A.LayoutManagerImpl_layout_closure(_this)); }, _viewsForPositions$2(p1, p2) { var t1 = this.get$positionOrderedViews(); return new A.WhereIterable(t1, new A.LayoutManagerImpl__viewsForPositions_closure(p1, p2), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, _viewsForPositions$1(p1) { return this._viewsForPositions$2(p1, null); }, _layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, previousMeasurements, rightViews, topViews, useMax) { var maxTopHeight, t5, leftWidth, rightWidth, bottomHeight, topHeight, adjustedHeight, leftSizes, rightSizes, adjustedWidth, bottomSizes, topSizes, _null = null, t1 = this.config, t2 = t1.leftSpec, maxLeftWidth = t2.getMaxPixels$1(width), t3 = t1.rightSpec, maxRightWidth = t3.getMaxPixels$1(width), t4 = t1.bottomSpec, maxBottomHeight = t4.getMaxPixels$1(height); t1 = t1.topSpec; maxTopHeight = t1.getMaxPixels$1(height); t5 = previousMeasurements == null; leftWidth = t5 ? _null : previousMeasurements.leftWidth; if (leftWidth == null) leftWidth = maxLeftWidth; rightWidth = t5 ? _null : previousMeasurements.rightWidth; if (rightWidth == null) rightWidth = maxRightWidth; bottomHeight = t5 ? _null : previousMeasurements.bottomHeight; if (bottomHeight == null) bottomHeight = maxBottomHeight; topHeight = t5 ? _null : previousMeasurements.topHeight; if (topHeight == null) topHeight = maxTopHeight; adjustedHeight = !t5 ? height - bottomHeight - topHeight : height; t5 = useMax ? maxLeftWidth : leftWidth; leftSizes = new A.LeftMarginLayoutStrategy().measure$4$fullHeight$height$maxWidth(0, leftViews, height, adjustedHeight, t5); leftWidth = Math.max(leftSizes._total, t2.getMinPixels$1(width)); t2 = useMax ? maxRightWidth : rightWidth; rightSizes = new A.RightMarginLayoutStrategy().measure$4$fullHeight$height$maxWidth(0, rightViews, height, adjustedHeight, t2); rightWidth = Math.max(rightSizes._total, t3.getMinPixels$1(width)); adjustedWidth = width - leftWidth - rightWidth; t2 = useMax ? maxBottomHeight : bottomHeight; bottomSizes = new A.BottomMarginLayoutStrategy().measure$4$fullWidth$maxHeight$width(0, bottomViews, width, t2, adjustedWidth); bottomHeight = Math.max(bottomSizes._total, t4.getMinPixels$1(height)); t2 = useMax ? maxTopHeight : topHeight; topSizes = new A.TopMarginLayoutStrategy().measure$4$fullWidth$maxHeight$width(0, topViews, width, t2, adjustedWidth); return new A._MeasuredSizes(leftWidth, leftSizes, rightWidth, rightSizes, Math.max(topSizes._total, t1.getMinPixels$1(height)), topSizes, bottomHeight, bottomSizes); }, _layout_manager_impl$_measure$7$bottomViews$leftViews$rightViews$topViews$useMax(width, height, bottomViews, leftViews, rightViews, topViews, useMax) { return this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, null, rightViews, topViews, useMax); } }; A.LayoutManagerImpl_paintOrderedViews_closure.prototype = { call$2(v1, v2) { var t2, t1 = v1.get$layoutConfig().paintOrder; t1.toString; t2 = v2.get$layoutConfig().paintOrder; t2.toString; return B.JSInt_methods.compareTo$1(t1, t2); }, $signature: 699 }; A.LayoutManagerImpl_positionOrderedViews_closure.prototype = { call$2(v1, v2) { var t2, t1 = v1.get$layoutConfig().positionOrder; t1.toString; t2 = v2.get$layoutConfig().positionOrder; t2.toString; return B.JSInt_methods.compareTo$1(t1, t2); }, $signature: 699 }; A.LayoutManagerImpl_drawableLayoutAreaBounds_closure.prototype = { call$1(view) { return view.get$isSeriesRenderer(); }, $signature: 701 }; A.LayoutManagerImpl_layout_closure.prototype = { call$1(view) { var _s15_ = "_drawAreaBounds", t1 = this.$this; return view.layout$2(0, A._lateReadCheck(t1.__LayoutManagerImpl__drawAreaBounds, _s15_), A._lateReadCheck(t1.__LayoutManagerImpl__drawAreaBounds, _s15_)); }, $signature: 157 }; A.LayoutManagerImpl__viewsForPositions_closure.prototype = { call$1(view) { var t1; if (view.get$layoutConfig().position !== this.p1) { t1 = this.p2; t1 = t1 != null && view.get$layoutConfig().position === t1; } else t1 = true; return t1; }, $signature: 701 }; A._MeasuredSizes.prototype = {}; A.SizeList.prototype = { $index(_, i) { return this._layout_margin_strategy$_sizes[i]; }, get$length(_) { return this._layout_margin_strategy$_sizes.length; }, add$1(_, size) { this._layout_margin_strategy$_sizes.push(size); this._total = this._total + size; } }; A._DesiredViewSizes.prototype = { adjustedTo$1(maxSize) { var delta, t3, i, t4, t5, viewAvailablePx, t6, t1 = this.preferredSizes, t2 = t1._total; if (maxSize < t2) { delta = t2 - maxSize; for (t3 = t1._layout_margin_strategy$_sizes, i = t3.length - 1, t4 = this.minimumSizes._layout_margin_strategy$_sizes; i >= 0; --i, t2 = t6) { t5 = t3[i]; viewAvailablePx = t5 - t4[i]; if (viewAvailablePx < delta) { t6 = -viewAvailablePx; t3[i] = t5 + t6; t6 = t2 + t6; t1._total = t6; delta -= viewAvailablePx; } else { t4 = -delta; t3[i] = t5 + t4; t1._total = t2 + t4; return; } } } } }; A.VerticalMarginStrategy.prototype = { measure$4$fullHeight$height$maxWidth(_, views, fullHeight, height, maxWidth) { var t2, t3, measuredWidths, t1 = {}; t1.maxWidth = maxWidth; t2 = type$.JSArray_int; t3 = new A.SizeList(A._setArrayType([], t2)); measuredWidths = new A._DesiredViewSizes(t3, new A.SizeList(A._setArrayType([], t2))); t1.remainingWidth = maxWidth; views.forEach$1(0, new A.VerticalMarginStrategy_measure_closure(t1, fullHeight, height, measuredWidths)); measuredWidths.adjustedTo$1(t1.maxWidth); return t3; } }; A.VerticalMarginStrategy_measure_closure.prototype = { call$1(view) { var size, _this = this, availableHeight = (view.get$layoutConfig().get$isFullPosition() ? _this.fullHeight : _this.height) - 0, t1 = _this._box_0, remainingWidth = t1.remainingWidth = t1.remainingWidth - 0; t1.maxWidth = t1.maxWidth - 0; if (remainingWidth > 0 || availableHeight > 0) { size = view.measure$2(0, remainingWidth, availableHeight); t1.remainingWidth = t1.remainingWidth - size.preferredWidth; } else size = B.ViewMeasuredSizes_0_0_0_0; t1 = _this.measuredWidths; t1.preferredSizes.add$1(0, size.preferredWidth); t1.minimumSizes.add$1(0, size.minWidth); }, $signature: 157 }; A.LeftMarginLayoutStrategy.prototype = { layout$4(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsRight = drawAreaBounds.left; t1.i = 0; views.forEach$1(0, new A.LeftMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; A.LeftMarginLayoutStrategy_layout_closure.prototype = { call$1(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, width = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], left = t1.prevBoundsRight - 0 - width, t2 = params.get$isFullPosition() ? _this.fullBounds.height : _this.drawAreaBounds.height, t3 = params.get$isFullPosition() ? _this.fullBounds.top : _this.drawAreaBounds.top; t1.prevBoundsRight = left - 0; view.layout$2(0, A.Rectangle$(left, 0 + t3, width, t2 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 157 }; A.RightMarginLayoutStrategy.prototype = { layout$4(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsLeft = drawAreaBounds.$ti._precomputed1._as(drawAreaBounds.left + drawAreaBounds.width); t1.i = 0; views.forEach$1(0, new A.RightMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; A.RightMarginLayoutStrategy_layout_closure.prototype = { call$1(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, width = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], left = t1.prevBoundsLeft, t2 = params.get$isFullPosition() ? _this.fullBounds.height : _this.drawAreaBounds.height, t3 = params.get$isFullPosition() ? _this.fullBounds.top : _this.drawAreaBounds.top; t1.prevBoundsLeft = left + width; view.layout$2(0, A.Rectangle$(left, 0 + t3, width, t2 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 157 }; A.HorizontalMarginStrategy.prototype = { measure$4$fullWidth$maxHeight$width(_, views, fullWidth, maxHeight, width) { var t2, t3, measuredHeights, t1 = {}; t1.maxHeight = maxHeight; t2 = type$.JSArray_int; t3 = new A.SizeList(A._setArrayType([], t2)); measuredHeights = new A._DesiredViewSizes(t3, new A.SizeList(A._setArrayType([], t2))); t1.remainingHeight = maxHeight; views.forEach$1(0, new A.HorizontalMarginStrategy_measure_closure(t1, fullWidth, width, measuredHeights)); measuredHeights.adjustedTo$1(t1.maxHeight); return t3; } }; A.HorizontalMarginStrategy_measure_closure.prototype = { call$1(view) { var size, _this = this, availableWidth = (view.get$layoutConfig().get$isFullPosition() ? _this.fullWidth : _this.width) - 0, t1 = _this._box_0, remainingHeight = t1.remainingHeight = t1.remainingHeight - 0; t1.maxHeight = t1.maxHeight - 0; if (remainingHeight > 0 || availableWidth > 0) { size = view.measure$2(0, availableWidth, remainingHeight); t1.remainingHeight = t1.remainingHeight - size.preferredHeight; } else size = B.ViewMeasuredSizes_0_0_0_0; t1 = _this.measuredHeights; t1.preferredSizes.add$1(0, size.preferredHeight); t1.minimumSizes.add$1(0, size.minHeight); }, $signature: 157 }; A.TopMarginLayoutStrategy.prototype = { layout$4(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsBottom = drawAreaBounds.top; t1.i = 0; views.forEach$1(0, new A.TopMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; A.TopMarginLayoutStrategy_layout_closure.prototype = { call$1(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, height = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], $top = t1.prevBoundsBottom - height - 0, t2 = params.get$isFullPosition() ? _this.fullBounds.width : _this.drawAreaBounds.width, t3 = params.get$isFullPosition() ? _this.fullBounds.left : _this.drawAreaBounds.left; t1.prevBoundsBottom = $top - 0; view.layout$2(0, A.Rectangle$(0 + t3, $top, t2 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 157 }; A.BottomMarginLayoutStrategy.prototype = { layout$4(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsTop = drawAreaBounds.$ti._precomputed1._as(drawAreaBounds.top + drawAreaBounds.height); t1.i = 0; views.forEach$1(0, new A.BottomMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; A.BottomMarginLayoutStrategy_layout_closure.prototype = { call$1(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, height = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], $top = t1.prevBoundsTop, t2 = params.get$isFullPosition() ? _this.fullBounds.width : _this.drawAreaBounds.width, t3 = params.get$isFullPosition() ? _this.fullBounds.left : _this.drawAreaBounds.left; t1.prevBoundsTop = $top + height; view.layout$2(0, A.Rectangle$(0 + t3, $top, t2 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 157 }; A.LayoutPosition.prototype = { toString$0(_) { return "LayoutPosition." + this._core$_name; } }; A.ViewMargin.prototype = {}; A.LayoutViewConfig.prototype = { get$isFullPosition() { var t1 = this.position; return t1 === B.LayoutPosition_1 || t1 === B.LayoutPosition_3 || t1 === B.LayoutPosition_7 || t1 === B.LayoutPosition_5; }, get$id() { return null; } }; A.ViewMeasuredSizes.prototype = {}; A.LayoutView.prototype = {}; A.LineRenderer.prototype = { layout$2(_, componentBounds, drawAreaBounds) { this.super$BaseSeriesRenderer$layout(0, componentBounds, drawAreaBounds); }, configureSeries$1(seriesList) { this.assignMissingColors$2$emptyCategoryUsesSinglePalette(seriesList, false); J.forEach$1$ax(seriesList, new A.LineRenderer_configureSeries_closure(this)); }, preprocessSeries$1(seriesList) { var t1, _box_0 = {}; _box_0.stackIndex = 0; t1 = J.getInterceptor$ax(seriesList); this.__LineRenderer__hasMeasureBounds = t1.any$1(seriesList, new A.LineRenderer_preprocessSeries_closure(this)); t1.forEach$1(seriesList, new A.LineRenderer_preprocessSeries_closure0(_box_0, this)); }, _mergeIntoSeriesMap$1(seriesList) { var t1, newLineMap = A._setArrayType([], this.$ti._eval$1("JSArray>>>")); J.forEach$1$ax(seriesList, new A.LineRenderer__mergeIntoSeriesMap_closure(this, seriesList, newLineMap)); t1 = this._seriesLineMap; B.JSArray_methods.addAll$1(newLineMap, t1.get$entries(t1)); t1.clear$0(0); t1.addEntries$1(t1, newLineMap); }, update$2(_, seriesList, isAnimatingThisDraw) { var t1, previousPointList, previousInitialPointList, _this = this; B.JSArray_methods.set$length(_this._line_renderer$_currentKeys, 0); t1 = _this.$ti._eval$1("JSArray>>"); previousPointList = A._setArrayType([], t1); previousInitialPointList = A._setArrayType([], t1); _this._mergeIntoSeriesMap$1(seriesList); J.forEach$1$ax(seriesList, new A.LineRenderer_update_closure(_this, previousPointList, previousInitialPointList)); _this._seriesLineMap.forEach$1(0, new A.LineRenderer_update_closure0(_this)); }, _createLineAndAreaElements$4(series, styleSegment, previousPointList, initializeFromZero) { var t4, domainAxis, startPosition, endPosition, positionExtent, lineElements, index, linePointList, lineStyleKey, areaElements, boundsElements, boundsPointList, boundsStyleKey, _this = this, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, B.AttributeKey_kWM))), color = styleSegment.color, areaColor = styleSegment.areaColor, dashPattern = styleSegment.dashPattern, domainExtent = styleSegment.domainExtent, strokeWidthPx = styleSegment.strokeWidthPx, styleKey = styleSegment.styleKey, pointList = _this._createPointListForSeries$2(series, initializeFromZero), segmentsList = _this._createLineAndAreaSegmentsForSeries$4(pointList, previousPointList, series, initializeFromZero), lineSegments = segmentsList[0], boundsSegment = segmentsList[2], t3 = _this._line_renderer$_currentKeys; t3.push(styleKey); t4 = _this.$ti; domainAxis = t4._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, B.AttributeKey_OBU))); startPosition = domainAxis.getLocation$1(domainExtent._line_renderer$_start); if (startPosition == null) { t1 = _this._drawAreaBounds.left; t1.toString; startPosition = t1; } endPosition = domainAxis.getLocation$1(domainExtent._line_renderer$_end); if (endPosition == null) { t1 = _this._drawAreaBounds; endPosition = A._instanceType(t1)._precomputed1._as(t1.left + t1.width); } positionExtent = new A._Range(startPosition, endPosition, type$._Range_num); lineElements = A._setArrayType([], t4._eval$1("JSArray<_LineRendererElement<1>>")); for (t1 = styleKey + "__line__", t2 = t4._eval$1("_LineRendererElement<1>"), index = 0; index < lineSegments.length; ++index) { linePointList = lineSegments[index]; lineStyleKey = t1 + index; t3.push(lineStyleKey); lineElements.push(new A._LineRendererElement(linePointList, color, areaColor, dashPattern, domainExtent, measureAxis.getLocation$1(0), positionExtent, strokeWidthPx, lineStyleKey, false, t2)); } t1 = t4._eval$1("JSArray<_AreaRendererElement<1>>"); areaElements = A._setArrayType([], t1); boundsElements = A._setArrayType([], t1); if (A._lateReadCheck(_this.__LineRenderer__hasMeasureBounds, "_hasMeasureBounds")) for (t1 = styleKey + "__bounds_", t4 = t4._eval$1("_AreaRendererElement<1>"), index = 0; index < boundsSegment.length; ++index) { boundsPointList = boundsSegment[index]; boundsStyleKey = t1 + index; t3.push(boundsStyleKey); t2 = measureAxis.getLocation$1(0); t2.toString; boundsElements.push(new A._AreaRendererElement(boundsPointList, color, areaColor, domainExtent, t2, positionExtent, boundsStyleKey, t4)); } return A._setArrayType([lineElements, areaElements, pointList, boundsElements], type$.JSArray_Object); }, _createPointListForSeries$2(series, initializeFromZero) { var pointList, index, datum, measure, measureOffset, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, B.AttributeKey_OBU))), domainFn = series.domainFn, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, B.AttributeKey_kWM))), measureFn = series.measureFn; t1 = series.measureOffsetFn; t1.toString; pointList = A._setArrayType([], t3._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = series.data, index = 0; index < t2.length; ++index) { datum = t2[index]; measure = measureFn.call$1(index); if (measure != null && initializeFromZero) measure = 0; measureOffset = t1.call$1(index); if (measureOffset != null && initializeFromZero) measureOffset = 0; pointList.push(this._getPoint$8$index(datum, domainFn.call$1(index), series, domainAxis, measure, measureOffset, measureAxis, index)); } return pointList; }, _createLineAndAreaSegmentsForSeries$4(pointList, previousPointList, series, initializeFromZero) { var endPointIndex, startPointIndex, index, _null = null, t1 = this.$ti, t2 = t1._eval$1("JSArray>>"), lineSegments = A._setArrayType([], t2), areaSegments = A._setArrayType([], t2), boundsSegments = A._setArrayType([], t2), seriesHasMeasureBounds = series.measureUpperBoundFn != null && series.measureLowerBoundFn != null; for (endPointIndex = _null, startPointIndex = endPointIndex, index = 0; index < pointList.length; ++index) { if (pointList[index].y == null) { if (startPointIndex == null) continue; endPointIndex.toString; t2 = endPointIndex + 1; lineSegments.push(B.JSArray_methods.sublist$2(pointList, startPointIndex, t2)); if (startPointIndex !== endPointIndex) if (seriesHasMeasureBounds) boundsSegments.push(this._createBoundsSegment$3(B.JSArray_methods.sublist$2(pointList, startPointIndex, t2), series, initializeFromZero)); endPointIndex = _null; startPointIndex = endPointIndex; continue; } if (startPointIndex == null) startPointIndex = index; endPointIndex = index; } if (startPointIndex != null && endPointIndex != null) { t2 = endPointIndex + 1; lineSegments.push(B.JSArray_methods.sublist$2(pointList, startPointIndex, t2)); if (startPointIndex !== endPointIndex) if (seriesHasMeasureBounds) boundsSegments.push(this._createBoundsSegment$3(B.JSArray_methods.sublist$2(pointList, startPointIndex, t2), series, initializeFromZero)); } return A._setArrayType([lineSegments, areaSegments, boundsSegments], t1._eval$1("JSArray>>>")); }, _createBoundsSegment$3(pointList, series, initializeFromZero) { var t2, measureAxis = type$.ImmutableAxis_num._as(type$.nullable_Axis_Object._as(series._attrs._registry.$index(0, B.AttributeKey_kWM))), t1 = this.$ti, areaPointList = A._setArrayType([], t1._eval$1("JSArray<_DatumPoint<1>>")); t1 = t1._eval$1("_DatumPoint<1>"); t2 = A._arrayInstanceType(pointList); B.JSArray_methods.addAll$1(areaPointList, new A.MappedListIterable(pointList, new A.LineRenderer__createBoundsSegment_closure(this, initializeFromZero, measureAxis, series), t2._eval$1("@<1>")._bind$1(t1)._eval$1("MappedListIterable<1,2>"))); t2 = t2._eval$1("ReversedListIterable<1>"); B.JSArray_methods.addAll$1(areaPointList, new A.MappedListIterable(new A.ReversedListIterable(pointList, t2), new A.LineRenderer__createBoundsSegment_closure0(this, initializeFromZero, measureAxis, series), t2._eval$1("@")._bind$1(t1)._eval$1("MappedListIterable<1,2>"))); return areaPointList; }, onAttach$1(chart) { this.super$BaseCartesianRenderer$onAttach(chart); this._line_renderer$_chart = chart; }, paint$2(canvas, animationPercent) { var keysToRemove, t1, _this = this; if (animationPercent === 1) { keysToRemove = A._setArrayType([], type$.JSArray_String); t1 = _this._seriesLineMap; t1.forEach$1(0, new A.LineRenderer_paint_closure(_this, keysToRemove)); B.JSArray_methods.forEach$1(keysToRemove, t1.get$remove(t1)); } _this._seriesLineMap.forEach$1(0, new A.LineRenderer_paint_closure0(_this, animationPercent, canvas)); }, _getClipBoundsForExtent$1(extent) { var t2, t3, t4, t5, t6, left, right, t1 = this._drawAreaBounds; t1.toString; t2 = t1.$ti; t3 = t1.left; t4 = t1.width; t5 = t2._precomputed1; if (this.get$isRtl()) { t6 = extent._line_renderer$_end; t5 = t5._as(t3 + t4); left = Math.min(Math.max(t6, t3), t5); } else { t6 = extent._line_renderer$_start; t5 = t5._as(t3 + t4); left = Math.min(Math.max(t6, t3), t5); } t2 = t2._precomputed1; if (this.get$isRtl()) { t5 = extent._line_renderer$_start; t4 = t2._as(t3 + t4); right = Math.min(Math.max(t5, t3), t4); } else { t5 = extent._line_renderer$_end; t4 = t2._as(t3 + t4); right = Math.min(Math.max(t5, t3), t4); } return A.Rectangle$(left, t1.top - 5, right - left, t1.height + 5 + 5, type$.num); }, get$isRtl() { var t1 = this._line_renderer$_chart; t1 = t1 == null ? null : A._lateReadCheck(t1.__BaseChart_context, "context").get$isRtl(); return t1 === true; }, _getPoint$8$index(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis, index) { var domainPosition = domainAxis.getLocation$1(domainValue), measurePosition = measureValue != null && measureOffsetValue != null ? measureAxis.getLocation$1(measureValue + measureOffsetValue) : null; return new A._DatumPoint(datum, domainValue, series, index, domainPosition, measurePosition, this.$ti._eval$1("_DatumPoint<1>")); }, _getPoint$7(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis) { return this._getPoint$8$index(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis, null); }, getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints(chartPoint, byDomain, boundsOverride, selectExactEventLocation, selectOverlappingPoints) { var t2, t3, t4, nearestPoint, nearestDomainDistance, nearestMeasureDistance, nearestRelativeDistance, t5, t6, _i, p, t7, t8, t9, measureDistance, domainDistance, relativeDistance, _this = this, _null = null, t1 = _this.$ti, nearest = A._setArrayType([], t1._eval$1("JSArray>")); if (!_this.isPointWithinBounds$2(chartPoint, boundsOverride)) return nearest; for (t2 = _this._seriesLineMap, t2 = t2.get$values(t2), t3 = A._instanceType(t2), t3 = new A.MappedIterator(J.get$iterator$ax(t2.__internal$_iterable), t2._f, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MappedIterator<1,2>")), t2 = type$.Point_double, t1 = t1._eval$1("DatumDetails<1>"); t3.moveNext$0();) { for (t4 = J.get$iterator$ax(t3.__internal$_current), nearestPoint = _null, nearestDomainDistance = 10000, nearestMeasureDistance = 10000, nearestRelativeDistance = 10000; t4.moveNext$0();) { t5 = t4.get$current(t4); if (t5.get$overlaySeries()) continue; for (t5 = t5.allPoints, t6 = t5.length, _i = 0; _i < t5.length; t5.length === t6 || (0, A.throwConcurrentModificationError)(t5), ++_i) { p = t5[_i]; t7 = p.x; t7.toString; t8 = _this._drawAreaBounds; t9 = t8.left; if (t7 < t9 || t7 > A._instanceType(t8)._precomputed1._as(t9 + t8.width)) continue; t8 = p.y; if (t8 != null) { measureDistance = Math.abs(t8 - chartPoint.y); domainDistance = Math.abs(t7 - chartPoint.x); relativeDistance = chartPoint.distanceTo$1(new A.Point(t7, t8, t2)); } else { measureDistance = 1 / 0; relativeDistance = 1 / 0; domainDistance = 1 / 0; } if (!(domainDistance < nearestDomainDistance)) t7 = domainDistance === nearestDomainDistance && measureDistance < nearestMeasureDistance; else t7 = true; if (t7) { nearestRelativeDistance = relativeDistance; nearestMeasureDistance = measureDistance; nearestDomainDistance = domainDistance; nearestPoint = p; } } } if (nearestPoint != null) { t4 = nearestPoint.x; t5 = nearestPoint.y; nearest.push(new A.DatumDetails(nearestPoint.datum, _null, nearestPoint.domain, _null, _null, _null, _null, _null, _null, _null, _null, _null, nearestPoint.series, _null, _null, _null, _null, _null, new A.NullablePoint(t4, t5), _null, _null, _null, nearestDomainDistance, nearestMeasureDistance, nearestRelativeDistance, _null, _null, _null, _null, _null, t1)); } } return nearest; }, addPositionToDetailsForSeriesDatum$2(details, seriesDatum) { var _null = null, series = details.series, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$ti, point = this._getPoint$7(seriesDatum.datum, details.domain, series, t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, B.AttributeKey_OBU))), details.measure, details.measureOffset, type$.ImmutableAxis_num._as(t2._as(t1.$index(0, B.AttributeKey_kWM)))); return A.DatumDetails_DatumDetails$from(details, _null, new A.NullablePoint(point.x, point.y), _null, _null, _null, t3._precomputed1); } }; A.LineRenderer_configureSeries_closure.prototype = { call$1(series) { if (series.areaColorFn == null) series.areaColorFn = new A.LineRenderer_configureSeries__closure(this.$this, series); }, $signature() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; A.LineRenderer_configureSeries__closure.prototype = { call$1(index) { var _null = null, t1 = this.series.colorFn, color = t1 == null ? _null : t1.call$1(index); if (color == null) return _null; return new A.Color0(color.r, color.g, color.b, B.JSNumber_methods.round$0(color.a * 0.1), _null, _null); }, $signature: 2842 }; A.LineRenderer_preprocessSeries_closure.prototype = { call$1(series) { return series.measureUpperBoundFn != null && series.measureLowerBoundFn != null; }, $signature() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; A.LineRenderer_preprocessSeries_closure0.prototype = { call$1(series) { var t1, styleSegments, usedKeys, t2, t3, t4, t5, currentDetails, previousSegmentKey, styleSegmentsIndex, index, domain, measure, color, areaColor, dashPattern, strokeWidthPx, t6, styleKey, _null = null, colorFn = series.colorFn, areaColorFn = series.areaColorFn, domainFn = series.domainFn, measureFn = series.measureFn, strokeWidthPxFn = series.strokeWidthPxFn, dashPatternFn = series.dashPatternFn; if (dashPatternFn == null) dashPatternFn = series.dashPatternFn = new A.LineRenderer_preprocessSeries__closure(this.$this); t1 = this.$this.$ti; styleSegments = A._setArrayType([], t1._eval$1("JSArray<_LineRendererElement<1>>")); usedKeys = A.LinkedHashSet_LinkedHashSet$_empty(type$.String); for (t2 = series.data, t3 = series.id + "__", t4 = strokeWidthPxFn == null, t5 = t1._eval$1("_Range<1>"), t1 = t1._eval$1("_LineRendererElement<1>"), currentDetails = _null, previousSegmentKey = currentDetails, styleSegmentsIndex = 0, index = 0; index < t2.length; ++index) { domain = domainFn.call$1(index); measure = measureFn.call$1(index); if (domain == null || measure == null) continue; color = colorFn.call$1(index); areaColor = areaColorFn.call$1(index); dashPattern = dashPatternFn.call$1(index); if (t4) strokeWidthPx = _null; else { t6 = strokeWidthPxFn.call$1(index); if (t6 == null) t6 = _null; strokeWidthPx = t6; } if (strokeWidthPx == null) strokeWidthPx = 2; t6 = A.S(B.JSNumber_methods.round$0(strokeWidthPx * 100) / 100); styleKey = t3 + styleSegmentsIndex + "__" + A.S(color) + "__" + A.S(dashPattern) + "__" + t6; if (styleKey !== previousSegmentKey) { if (usedKeys._collection$_length !== 0 && usedKeys.contains$1(0, styleKey)) { ++styleSegmentsIndex; styleKey = t3 + styleSegmentsIndex + "__" + A.S(color) + "__" + A.S(dashPattern) + "__" + t6; } if (currentDetails != null) currentDetails.domainExtent.includePoint$1(domain); currentDetails = new A._LineRendererElement(_null, color, areaColor, dashPattern, new A._Range(domain, domain, t5), _null, _null, strokeWidthPx, styleKey, false, t1); styleSegments.push(currentDetails); usedKeys.add$1(0, styleKey); previousSegmentKey = styleKey; } else currentDetails.domainExtent.includePoint$1(domain); } t1 = series._attrs._registry; t1.$indexSet(0, B.AttributeKey_Ex1, styleSegments); t1.$indexSet(0, B.AttributeKey_MYA, this._box_0.stackIndex); }, $signature() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; A.LineRenderer_preprocessSeries__closure.prototype = { call$1(_) { return null; }, $signature: 641 }; A.LineRenderer__mergeIntoSeriesMap_closure.prototype = { call$1(series) { var t9, it, firstKey, key = series.id, t1 = this.seriesList, t2 = this.$this, t3 = J.getInterceptor$ax(t1), t4 = t2._seriesLineMap, t5 = A._instanceType(t4)._eval$1("LinkedHashMapKeyIterable<1>"), t6 = this.newLineMap, t7 = t2.$ti, t8 = type$.$env_1_1_String._bind$1(t7._eval$1("List<_AnimatedElements<1>>"))._eval$1("MapEntry<1,2>"), checkNext = true; while (true) { if (!(checkNext && t4._length !== 0)) break; t9 = new A.LinkedHashMapKeyIterable(t4, t5); it = t9.get$iterator(t9); if (!it.moveNext$0()) A.throwExpression(A.IterableElementError_noElement()); firstKey = it.get$current(it); if (!t3.any$1(t1, new A.LineRenderer__mergeIntoSeriesMap__closure(t2, firstKey))) { t9 = t4.remove$1(0, firstKey); t9.toString; t6.push(new A.MapEntry(firstKey, t9, t8)); checkNext = true; } else checkNext = false; } if (!t4.containsKey$1(0, key)) t6.push(new A.MapEntry(key, A._setArrayType([], t7._eval$1("JSArray<_AnimatedElements<1>>")), t8)); else { t1 = t4.remove$1(0, key); t1.toString; t6.push(new A.MapEntry(key, t1, t8)); } }, $signature() { return this.$this.$ti._eval$1("~(ImmutableSeries<1>)"); } }; A.LineRenderer__mergeIntoSeriesMap__closure.prototype = { call$1(s) { return s.id === this.firstKey; }, $signature() { return this.$this.$ti._eval$1("bool(ImmutableSeries<1>)"); } }; A.LineRenderer_update_closure.prototype = { call$1(series) { var t5, t6, t7, t8, t9, t10, startDomain, endDomain, t1 = series._attrs._registry, t2 = this.$this, t3 = t2.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(type$.nullable_Axis_Object._as(t1.$index(0, B.AttributeKey_OBU))), lineKey = series.id, t4 = A._asIntQ(t1.$index(0, B.AttributeKey_MYA)); t4.toString; t5 = this.previousPointList; t3 = t3._eval$1("JSArray<_DatumPoint<1>>"); t5.push(A._setArrayType([], t3)); t6 = this.previousInitialPointList; t6.push(A._setArrayType([], t3)); t3 = t2._seriesLineMap.$index(0, lineKey); t3.toString; t1 = type$.nullable_List__LineRendererElement_Object._as(t1.$index(0, B.AttributeKey_Ex1)); t1.toString; t7 = J.getInterceptor$asx(t1); if (t7.get$isNotEmpty(t1) && !(domainAxis instanceof A.OrdinalAxis)) { t8 = t2._drawAreaBounds; t8.toString; t9 = t8.left; t10 = t2.get$isRtl() ? t8.$ti._precomputed1._as(t9 + t8.width) : t9; t10.toString; t8 = t2.get$isRtl() ? t9 : t8.$ti._precomputed1._as(t9 + t8.width); t8.toString; startDomain = domainAxis.scale.reverse$1(0, t10); endDomain = domainAxis.scale.reverse$1(0, t8); t7.get$first(t1).domainExtent.includePoint$1(startDomain); t7.get$last(t1).domainExtent.includePoint$1(endDomain); } t7.forEach$1(t1, new A.LineRenderer_update__closure(t2, t3, t6, t4, series, t5)); }, $signature() { return this.$this.$ti._eval$1("~(ImmutableSeries<1>)"); } }; A.LineRenderer_update__closure.prototype = { call$1(styleSegment) { var t3, t4, t5, lineAndArea, lineElementList, allPointList, boundsElementList, animatingLines, index, t6, t7, animatingBounds, lineElement, boundElement, _this = this, _null = null, _s17_ = "_hasMeasureBounds", styleKey = styleSegment.styleKey, t1 = _this.elementsList, t2 = _this.$this, animatingElements = A.IterableExtension_firstWhereOrNull(t1, new A.LineRenderer_update___closure(t2, styleKey)); if (animatingElements != null) _this.previousInitialPointList[_this.stackIndex] = animatingElements.allPoints; else { t3 = t2.$ti; t3._eval$1("_LineRendererElement<1>")._as(styleSegment); t4 = _this.stackIndex; t5 = t4 > 0 ? _this.previousInitialPointList[t4 - 1] : _null; lineAndArea = t2._createLineAndAreaElements$4(_this.series, styleSegment, t5, true); lineElementList = t3._eval$1("List<_LineRendererElement<1>>")._as(lineAndArea[0]); t5 = t3._eval$1("List<_AreaRendererElement<1>>"); t5._as(lineAndArea[1]); allPointList = t3._eval$1("List<_DatumPoint<1>>")._as(lineAndArea[2]); boundsElementList = t5._as(lineAndArea[3]); animatingLines = A._setArrayType([], t3._eval$1("JSArray<_AnimatedLine<1>>")); for (t5 = t3._eval$1("_AnimatedLine<1>"), index = 0; index < lineElementList.length; ++index) { t6 = lineElementList[index]; t7 = new A._AnimatedLine(t6.styleKey, false, t5); t7.setNewTarget$1(t6); animatingLines.push(t7); } if (A._lateReadCheck(t2.__LineRenderer__hasMeasureBounds, _s17_)) { animatingBounds = A._setArrayType([], t3._eval$1("JSArray<_AnimatedArea<1>>")); for (t5 = t3._eval$1("_AnimatedArea<1>"), index = 0; index < boundsElementList.length; ++index) { t6 = boundsElementList[index]; t7 = new A._AnimatedArea(t6.styleKey, false, t5); t7.setNewTarget$1(t6); animatingBounds.push(t7); } } else animatingBounds = _null; animatingElements = new A._AnimatedElements(allPointList, _null, animatingLines, animatingBounds, styleKey, t3._eval$1("_AnimatedElements<1>")); J.add$1$ax(t1, animatingElements); _this.previousInitialPointList[t4] = allPointList; } t1 = t2.$ti; t1._eval$1("_LineRendererElement<1>")._as(styleSegment); t3 = _this.stackIndex; t4 = t3 > 0 ? _this.previousPointList[t3 - 1] : _null; lineAndArea = t2._createLineAndAreaElements$4(_this.series, styleSegment, t4, false); lineElementList = t1._eval$1("List<_LineRendererElement<1>>")._as(lineAndArea[0]); t4 = t1._eval$1("List<_AreaRendererElement<1>>"); t4._as(lineAndArea[1]); allPointList = t1._eval$1("List<_DatumPoint<1>>")._as(lineAndArea[2]); boundsElementList = t4._as(lineAndArea[3]); for (t4 = animatingElements.lines, t5 = t1._eval$1("_AnimatedLine<1>"), index = 0; index < lineElementList.length; ++index) { lineElement = lineElementList[index]; if (index >= t4.length) t4.push(new A._AnimatedLine(lineElement.styleKey, false, t5)); t4[index].setNewTarget$1(lineElement); } if (A._lateReadCheck(t2.__LineRenderer__hasMeasureBounds, _s17_)) for (t2 = animatingElements.bounds, t1 = t1._eval$1("_AnimatedArea<1>"), index = 0; index < boundsElementList.length; ++index) { boundElement = boundsElementList[index]; if (index >= t2.length) t2.push(new A._AnimatedArea(boundElement.styleKey, false, t1)); t2[index].setNewTarget$1(boundElement); } animatingElements.allPoints = allPointList; _this.previousPointList[t3] = allPointList; }, $signature: 2841 }; A.LineRenderer_update___closure.prototype = { call$1(elements) { return elements.styleKey === this.styleKey; }, $signature() { return this.$this.$ti._eval$1("bool(_AnimatedElements<1>)"); } }; A.LineRenderer_update_closure0.prototype = { call$2(key, elements) { var t1, t2, t3, t4, t5, _i, line, area, bound; for (t1 = J.get$iterator$ax(elements), t2 = this.$this._line_renderer$_currentKeys; t1.moveNext$0();) { t3 = t1.get$current(t1); for (t4 = t3.lines, t5 = t4.length, _i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { line = t4[_i]; if (!B.JSArray_methods.contains$1(t2, line.key)) line.animateOut$0(); } t4 = t3.areas; if (t4 != null) for (t5 = t4.length, _i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { area = t4[_i]; if (!B.JSArray_methods.contains$1(t2, area.key)) area.animateOut$0(); } t3 = t3.bounds; if (t3 != null) for (t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { bound = t3[_i]; if (!B.JSArray_methods.contains$1(t2, bound.key)) bound.animateOut$0(); } } }, $signature() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; A.LineRenderer__createBoundsSegment_closure.prototype = { call$1(datumPoint) { var t2, t3, t4, _this = this, t1 = datumPoint.x; if (_this.initializeFromZero) t2 = datumPoint.y; else { t2 = _this.series; t3 = t2.measureUpperBoundFn; t3.toString; t4 = datumPoint.index; t3 = t3.call$1(t4); if (t3 == null) t3 = 0; t4 = t2.measureOffsetFn.call$1(t4); t4.toString; t4 = _this.measureAxis.getLocation$1(t3 + t4); t2 = t4; } return A._DatumPoint__DatumPoint$from(datumPoint, t1, t2, _this.$this.$ti._precomputed1); }, $signature() { return this.$this.$ti._eval$1("_DatumPoint<1>(_DatumPoint<1>)"); } }; A.LineRenderer__createBoundsSegment_closure0.prototype = { call$1(datumPoint) { var t2, t3, t4, _this = this, t1 = datumPoint.x; if (_this.initializeFromZero) t2 = datumPoint.y; else { t2 = _this.series; t3 = t2.measureLowerBoundFn; t3.toString; t4 = datumPoint.index; t3 = t3.call$1(t4); if (t3 == null) t3 = 0; t4 = t2.measureOffsetFn.call$1(t4); t4.toString; t4 = _this.measureAxis.getLocation$1(t3 + t4); t2 = t4; } return A._DatumPoint__DatumPoint$from(datumPoint, t1, t2, _this.$this.$ti._precomputed1); }, $signature() { return this.$this.$ti._eval$1("_DatumPoint<1>(_DatumPoint<1>)"); } }; A.LineRenderer_paint_closure.prototype = { call$2(key, elements) { var t1 = J.getInterceptor$ax(elements); t1.removeWhere$1(elements, new A.LineRenderer_paint__closure7(this.$this)); if (t1.get$isEmpty(elements)) this.keysToRemove.push(key); }, $signature() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; A.LineRenderer_paint__closure7.prototype = { call$1(element) { return element.get$animatingOut(); }, $signature() { return this.$this.$ti._eval$1("bool(_AnimatedElements<1>)"); } }; A.LineRenderer_paint_closure0.prototype = { call$2(key, elements) { var t2, t3, t4, _this = this, t1 = _this.$this; if (A._lateReadCheck(t1.__LineRenderer__hasMeasureBounds, "_hasMeasureBounds")) { t2 = t1.$ti; t3 = J.map$1$1$ax(elements, new A.LineRenderer_paint__closure(t1), t2._eval$1("List<_AnimatedArea<1>>")); t4 = A._instanceType(t3)._eval$1("@")._bind$1(t2._eval$1("_AnimatedArea<1>"))._eval$1("ExpandIterable<1,2>"); A.MappedIterable_MappedIterable(new A.ExpandIterable(t3, new A.LineRenderer_paint__closure0(t1), t4), new A.LineRenderer_paint__closure1(t1, _this.animationPercent), t4._eval$1("Iterable.E"), t2._eval$1("_AreaRendererElement<1>")).forEach$1(0, new A.LineRenderer_paint__closure2(t1, _this.canvas)); } t2 = t1.$ti; t3 = J.map$1$1$ax(elements, new A.LineRenderer_paint__closure3(t1), t2._eval$1("List<_AnimatedLine<1>>")); t4 = A._instanceType(t3)._eval$1("@")._bind$1(t2._eval$1("_AnimatedLine<1>"))._eval$1("ExpandIterable<1,2>"); A.MappedIterable_MappedIterable(new A.ExpandIterable(t3, new A.LineRenderer_paint__closure4(t1), t4), new A.LineRenderer_paint__closure5(t1, _this.animationPercent), t4._eval$1("Iterable.E"), t2._eval$1("_LineRendererElement<1>")).forEach$1(0, new A.LineRenderer_paint__closure6(t1, _this.canvas)); }, $signature() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; A.LineRenderer_paint__closure.prototype = { call$1(animatingElement) { var t1 = animatingElement.bounds; t1.toString; return t1; }, $signature() { return this.$this.$ti._eval$1("List<_AnimatedArea<1>>(_AnimatedElements<1>)"); } }; A.LineRenderer_paint__closure0.prototype = { call$1(bounds) { return bounds; }, $signature() { return this.$this.$ti._eval$1("List<_AnimatedArea<1>>(List<_AnimatedArea<1>>)"); } }; A.LineRenderer_paint__closure1.prototype = { call$1(animatingBounds) { return animatingBounds.getCurrentArea$1(this.animationPercent); }, $signature() { return this.$this.$ti._eval$1("_AreaRendererElement<1>(_AnimatedArea<1>)"); } }; A.LineRenderer_paint__closure2.prototype = { call$1(bound) { var t1, t2; if (bound != null) { t1 = this.$this._getClipBoundsForExtent$1(bound.positionExtent); t2 = bound.areaColor; if (t2 == null) t2 = bound.color; this.canvas.drawPolygon$3$clipBounds$fill$points(t1, t2, A.NullablePointsToPoints_toPoints(bound.points)); } }, $signature() { return this.$this.$ti._eval$1("~(_AreaRendererElement<1>)"); } }; A.LineRenderer_paint__closure3.prototype = { call$1(animatingElement) { return animatingElement.lines; }, $signature() { return this.$this.$ti._eval$1("List<_AnimatedLine<1>>(_AnimatedElements<1>)"); } }; A.LineRenderer_paint__closure4.prototype = { call$1(lines) { return lines; }, $signature() { return this.$this.$ti._eval$1("List<_AnimatedLine<1>>(List<_AnimatedLine<1>>)"); } }; A.LineRenderer_paint__closure5.prototype = { call$1(animatingLine) { return animatingLine.getCurrentLine$1(this.animationPercent); }, $signature() { return this.$this.$ti._eval$1("_LineRendererElement<1>(_AnimatedLine<1>)"); } }; A.LineRenderer_paint__closure6.prototype = { call$1(line) { var t1, t2, t3; if (line != null) { t1 = line.positionExtent; t1.toString; t1 = this.$this._getClipBoundsForExtent$1(t1); t2 = line.dashPattern; t3 = line.points; t3.toString; this.canvas.drawLine$6$clipBounds$dashPattern$points$roundEndCaps$stroke$strokeWidthPx(0, t1, t2, A.NullablePointsToPoints_toPoints(t3), false, line.color, line.strokeWidthPx); } }, $signature() { return this.$this.$ti._eval$1("~(_LineRendererElement<1>)"); } }; A._DatumPoint.prototype = {}; A._LineRendererElement.prototype = { clone$0(_) { var t2, t3, t4, _this = this, _null = null, t1 = _this.points; t1 = t1 != null ? A.List_List$of(t1, true, _this.$ti._eval$1("_DatumPoint<1>")) : _null; t2 = _this.color; t2 = t2 != null ? A.Color$fromOther(t2, _null) : _null; t3 = _this.areaColor; t3 = t3 != null ? A.Color$fromOther(t3, _null) : _null; t4 = _this.dashPattern; t4 = t4 != null ? A.List_List$of(t4, true, type$.int) : _null; return new A._LineRendererElement(t1, t2, t3, t4, _this.domainExtent, _this.measureAxisPosition, _this.positionExtent, _this.strokeWidthPx, _this.styleKey, false, _this.$ti); }, updateAnimationPercent$3(previous, target, animationPercent) { var lastPoint, t2, t3, pointIndex, t4, targetPoint, previousPoint, t5, x, y, _this = this, t1 = _this.points; t1.toString; lastPoint = A._Cell$named("lastPoint"); for (t2 = _this.$ti._precomputed1, t3 = lastPoint.__late_helper$_name, pointIndex = 0; t4 = target.points, pointIndex < t4.length; ++pointIndex) { targetPoint = t4[pointIndex]; t4 = previous.points; if (t4.length - 1 >= pointIndex) previousPoint = lastPoint.__late_helper$_value = t4[pointIndex]; else { t4 = targetPoint.x; t5 = lastPoint.__late_helper$_value; if (t5 === lastPoint) A.throwExpression(A.LateError$localNI(t3)); previousPoint = A._DatumPoint__DatumPoint$from(targetPoint, t4, t5.y, t2); } t4 = targetPoint.x; t4.toString; t5 = previousPoint.x; t5.toString; x = (t4 - t5) * animationPercent + t5; y = targetPoint.y; t4 = y != null; if (t4 && previousPoint.y != null) { y.toString; t4 = previousPoint.y; t4.toString; y = (y - t4) * animationPercent + t4; } else y = t4 ? y : null; if (t1.length - 1 >= pointIndex) t1[pointIndex] = A._DatumPoint__DatumPoint$from(targetPoint, x, y, t2); else t1.push(A._DatumPoint__DatumPoint$from(targetPoint, x, y, t2)); } t2 = t1.length; if (pointIndex < t2) B.JSArray_methods.removeRange$2(t1, pointIndex, t2); t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = A.getAnimatedColor(t1, t2, animationPercent); if (_this.areaColor != null) { t1 = previous.areaColor; t1.toString; t2 = target.areaColor; t2.toString; _this.areaColor = A.getAnimatedColor(t1, t2, animationPercent); } t1 = target.strokeWidthPx; t2 = previous.strokeWidthPx; _this.strokeWidthPx = (t1 - t2) * animationPercent + t2; } }; A._AnimatedLine.prototype = { animateOut$0() { var t2, index, t3, targetPoint, _this = this, newTarget = _this._line_renderer$_currentLine.clone$0(0), t1 = _this.$ti, newPoints = A._setArrayType([], t1._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = newTarget.measureAxisPosition, t1 = t1._precomputed1, index = 0; t3 = newTarget.points, index < t3.length; ++index) { targetPoint = t3[index]; t3 = targetPoint.x; t2.toString; newPoints.push(A._DatumPoint__DatumPoint$from(targetPoint, t3, B.JSNumber_methods.roundToDouble$0(t2), t1)); } newTarget.points = newPoints; newTarget.strokeWidthPx = 0; _this.setNewTarget$1(newTarget); _this.animatingOut = true; }, setNewTarget$1(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._line_renderer$_currentLine; _this._previousLine = (t1 == null ? _this._line_renderer$_currentLine = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedLine__targetLine = newTarget; }, getCurrentLine$1(animationPercent) { var t1, t2, _this = this, _s11_ = "_targetLine"; if (animationPercent === 1 || _this._previousLine == null) { _this._line_renderer$_currentLine = A._lateReadCheck(_this.___AnimatedLine__targetLine, _s11_); _this._previousLine = A._lateReadCheck(_this.___AnimatedLine__targetLine, _s11_); t1 = _this._line_renderer$_currentLine; t1.toString; return t1; } t1 = _this._line_renderer$_currentLine; t1.toString; t2 = _this._previousLine; t2.toString; t1.updateAnimationPercent$3(t2, A._lateReadCheck(_this.___AnimatedLine__targetLine, _s11_), animationPercent); t2 = _this._line_renderer$_currentLine; t2.toString; return t2; } }; A._AreaRendererElement.prototype = { clone$0(_) { var t4, _this = this, _null = null, t1 = _this.$ti, t2 = A.List_List$of(_this.points, true, t1._eval$1("_DatumPoint<1>")), t3 = _this.color; t3 = t3 != null ? A.Color$fromOther(t3, _null) : _null; t4 = _this.areaColor; t4 = t4 != null ? A.Color$fromOther(t4, _null) : _null; return new A._AreaRendererElement(t2, t3, t4, _this.domainExtent, _this.measureAxisPosition, _this.positionExtent, _this.styleKey, t1); }, updateAnimationPercent$3(previous, target, animationPercent) { var t1, t2, pointIndex, t3, targetPoint, previousPoint, t4, x, y, _this = this, lastPoint = A._Cell$named("lastPoint"); for (t1 = _this.$ti._precomputed1, t2 = lastPoint.__late_helper$_name, pointIndex = 0; t3 = target.points, pointIndex < t3.length; ++pointIndex) { targetPoint = t3[pointIndex]; t3 = previous.points; if (t3.length - 1 >= pointIndex) previousPoint = lastPoint.__late_helper$_value = t3[pointIndex]; else { t3 = targetPoint.x; t4 = lastPoint.__late_helper$_value; if (t4 === lastPoint) A.throwExpression(A.LateError$localNI(t2)); previousPoint = A._DatumPoint__DatumPoint$from(targetPoint, t3, t4.y, t1); } t3 = targetPoint.x; t3.toString; t4 = previousPoint.x; t4.toString; x = (t3 - t4) * animationPercent + t4; y = targetPoint.y; t3 = y != null; if (t3 && previousPoint.y != null) { y.toString; t3 = previousPoint.y; t3.toString; y = (y - t3) * animationPercent + t3; } else y = t3 ? y : null; t3 = _this.points; if (t3.length - 1 >= pointIndex) t3[pointIndex] = A._DatumPoint__DatumPoint$from(targetPoint, x, y, t1); else t3.push(A._DatumPoint__DatumPoint$from(targetPoint, x, y, t1)); } t1 = _this.points; t2 = t1.length; if (pointIndex < t2) B.JSArray_methods.removeRange$2(t1, pointIndex, t2); t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = A.getAnimatedColor(t1, t2, animationPercent); if (_this.areaColor != null) { t1 = previous.areaColor; t1.toString; t2 = target.areaColor; t2.toString; _this.areaColor = A.getAnimatedColor(t1, t2, animationPercent); } } }; A._AnimatedArea.prototype = { animateOut$0() { var t2, t3, index, t4, targetPoint, _this = this, newTarget = _this._currentArea.clone$0(0), t1 = _this.$ti, newPoints = A._setArrayType([], t1._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = newTarget.measureAxisPosition, t3 = J.getInterceptor$n(t2), t1 = t1._precomputed1, index = 0; t4 = newTarget.points, index < t4.length; ++index) { targetPoint = t4[index]; newPoints.push(A._DatumPoint__DatumPoint$from(targetPoint, targetPoint.x, t3.roundToDouble$0(t2), t1)); } newTarget.points = newPoints; _this.setNewTarget$1(newTarget); _this.animatingOut = true; }, setNewTarget$1(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentArea; _this._previousArea = (t1 == null ? _this._currentArea = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedArea__targetArea = newTarget; }, getCurrentArea$1(animationPercent) { var t1, t2, _this = this, _s11_ = "_targetArea"; if (animationPercent === 1 || _this._previousArea == null) { _this._currentArea = A._lateReadCheck(_this.___AnimatedArea__targetArea, _s11_); _this._previousArea = A._lateReadCheck(_this.___AnimatedArea__targetArea, _s11_); t1 = _this._currentArea; t1.toString; return t1; } t1 = _this._currentArea; t1.toString; t2 = _this._previousArea; t2.toString; t1.updateAnimationPercent$3(t2, A._lateReadCheck(_this.___AnimatedArea__targetArea, _s11_), animationPercent); t2 = _this._currentArea; t2.toString; return t2; } }; A._AnimatedElements.prototype = { get$animatingOut() { var t2, areasAnimatingOut, _i, area, linesAnimatingOut, line, boundsAnimatingOut, bound, t1 = this.areas; if (t1 != null) for (t2 = t1.length, areasAnimatingOut = true, _i = 0; _i < t2; ++_i) { area = t1[_i]; areasAnimatingOut = areasAnimatingOut && area.animatingOut; } else areasAnimatingOut = true; for (t1 = this.lines, t2 = t1.length, linesAnimatingOut = true, _i = 0; _i < t2; ++_i) { line = t1[_i]; linesAnimatingOut = linesAnimatingOut && line.animatingOut; } t1 = this.bounds; if (t1 != null) for (t2 = t1.length, boundsAnimatingOut = true, _i = 0; _i < t2; ++_i) { bound = t1[_i]; boundsAnimatingOut = boundsAnimatingOut && bound.animatingOut; } else boundsAnimatingOut = true; return areasAnimatingOut && linesAnimatingOut && boundsAnimatingOut; }, get$overlaySeries() { var t2, areasOverlaySeries, _i, area, linesOverlaySeries, line, boundsOverlaySeries, bound, t1 = this.areas; if (t1 != null) for (t2 = t1.length, areasOverlaySeries = true, _i = 0; _i < t2; ++_i, areasOverlaySeries = false) { area = t1[_i]; if (areasOverlaySeries) area.toString; } else areasOverlaySeries = true; for (t1 = this.lines, t2 = t1.length, linesOverlaySeries = true, _i = 0; _i < t2; ++_i, linesOverlaySeries = false) { line = t1[_i]; if (linesOverlaySeries) line.toString; } t1 = this.bounds; if (t1 != null) for (t2 = t1.length, boundsOverlaySeries = true, _i = 0; _i < t2; ++_i, boundsOverlaySeries = false) { bound = t1[_i]; if (boundsOverlaySeries) bound.toString; } else boundsOverlaySeries = true; return areasOverlaySeries && linesOverlaySeries && boundsOverlaySeries; } }; A._Range.prototype = { includePoint$1(value) { var t1, t2, t3, _this = this; if (value == null) return; else if (typeof value == "number") { if (value < A._asNumS(_this._line_renderer$_start)) _this._line_renderer$_start = value; else if (value > A._asNumS(_this._line_renderer$_end)) _this._line_renderer$_end = value; } else if (value instanceof A.DateTime) { t1 = type$.DateTime; t2 = t1._as(_this._line_renderer$_start); t3 = value._value; if (t3 < t2._value) _this._line_renderer$_start = value; else if (t3 > t1._as(_this._line_renderer$_end)._value) _this._line_renderer$_end = value; } else if (typeof value == "string") _this._line_renderer$_end = value; else throw A.wrapException(A.ArgumentError$("Unsupported object type for LineRenderer domain value: " + J.get$runtimeType$(value).toString$0(0), null)); } }; A.LineRendererConfig.prototype = {}; A.PointRenderer.prototype = { paint$2(canvas, animationPercent) { var keysToRemove, t1, _this = this; if (animationPercent === 1) { keysToRemove = A._setArrayType([], type$.JSArray_String); _this.seriesPointMap.forEach$1(0, new A.PointRenderer_paint_closure(_this, keysToRemove)); t1 = _this.seriesPointMap; B.JSArray_methods.forEach$1(keysToRemove, t1.get$remove(t1)); } _this.seriesPointMap.forEach$1(0, new A.PointRenderer_paint_closure0(_this, animationPercent, canvas)); }, get$isRtl() { return false; } }; A.PointRenderer_paint_closure.prototype = { call$2(key, points) { var t1 = J.getInterceptor$ax(points); t1.removeWhere$1(points, new A.PointRenderer_paint__closure1(this.$this)); if (t1.get$isEmpty(points)) this.keysToRemove.push(key); }, $signature() { return this.$this.$ti._eval$1("~(String,List>)"); } }; A.PointRenderer_paint__closure1.prototype = { call$1(point) { return point.animatingOut; }, $signature() { return this.$this.$ti._eval$1("bool(AnimatedPoint<1>)"); } }; A.PointRenderer_paint_closure0.prototype = { call$2(key, points) { var t1 = this.$this, t2 = this.animationPercent; J.map$1$1$ax(points, new A.PointRenderer_paint__closure(t1, t2), t1.$ti._eval$1("PointRendererElement<1>")).forEach$1(0, new A.PointRenderer_paint__closure0(t1, this.canvas, t2)); }, $signature() { return this.$this.$ti._eval$1("~(String,List>)"); } }; A.PointRenderer_paint__closure.prototype = { call$1(animatingPoint) { return animatingPoint.getCurrentPoint$1(this.animationPercent); }, $signature() { return this.$this.$ti._eval$1("PointRendererElement<1>(AnimatedPoint<1>)"); } }; A.PointRenderer_paint__closure0.prototype = { call$1(point) { var t6, t7, t8, t9, bounds, t1 = this.$this, t2 = t1.pointRendererDecorators, t3 = A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"), t4 = this.canvas, t5 = this.animationPercent; new A.WhereIterable(t2, new A.PointRenderer_paint___closure(t1), t3).forEach$1(0, new A.PointRenderer_paint___closure0(t1, point, t4, t5)); t6 = point.point; t7 = t6.y; if (t7 != null) { t8 = t1._drawAreaBounds; t8.toString; t6 = t6.x; t6.toString; t7 = t8.containsPoint$1(0, new A.Point(t6, t7, type$.Point_double)); t6 = t7; } else t6 = false; if (t6) { t6 = point.point; t7 = t6.x; t7.toString; t8 = point.radiusPx; t6 = t6.y; t6.toString; t9 = t8 * 2; bounds = A.Rectangle$(t7 - t8, t6 - t8, t9, t9, type$.double); t6 = point.symbolRendererId; if (t6 === "__default__") t1.symbolRenderer.paint$5$fillColor$strokeColor$strokeWidthPx(t4, bounds, point.fillColor, point.color, point.strokeWidthPx); else { if (!null.containsKey$1(0, t6)) throw A.wrapException(A.ArgumentError$('Invalid custom symbol renderer id "' + t6 + '"', null)); null.$index(0, t6).paint$5$fillColor$strokeColor$strokeWidthPx(t4, bounds, point.fillColor, point.color, point.strokeWidthPx); } } new A.WhereIterable(t2, new A.PointRenderer_paint___closure1(t1), t3).forEach$1(0, new A.PointRenderer_paint___closure2(t1, point, t4, t5)); }, $signature() { return this.$this.$ti._eval$1("~(PointRendererElement<1>)"); } }; A.PointRenderer_paint___closure.prototype = { call$1(decorator) { return !decorator.get$renderAbove(); }, $signature() { return this.$this.$ti._eval$1("bool(PointRendererDecorator<1>)"); } }; A.PointRenderer_paint___closure0.prototype = { call$1(decorator) { var t3, _this = this, t1 = _this.$this, t2 = t1.graphicsFactory; t2.toString; t3 = t1._drawAreaBounds; t3.toString; t1.get$isRtl(); decorator.decorate$6$animationPercent$drawBounds$rtl(_this.point, _this.canvas, t2, _this.animationPercent, t3, false); }, $signature() { return this.$this.$ti._eval$1("~(PointRendererDecorator<1>)"); } }; A.PointRenderer_paint___closure1.prototype = { call$1(decorator) { return decorator.get$renderAbove(); }, $signature() { return this.$this.$ti._eval$1("bool(PointRendererDecorator<1>)"); } }; A.PointRenderer_paint___closure2.prototype = { call$1(decorator) { var t3, _this = this, t1 = _this.$this, t2 = t1.graphicsFactory; t2.toString; t3 = t1._drawAreaBounds; t3.toString; t1.get$isRtl(); decorator.decorate$6$animationPercent$drawBounds$rtl(_this.point, _this.canvas, t2, _this.animationPercent, t3, false); }, $signature() { return this.$this.$ti._eval$1("~(PointRendererDecorator<1>)"); } }; A.DatumPoint.prototype = {}; A.PointRendererConfig.prototype = {}; A.TimeSeriesChart.prototype = { initDomainAxis$0() { var t2, t3, t4, _null = null, t1 = this._domainAxis; t1.toString; t2 = A.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, type$.DateTime); t3 = A._lateReadCheck(this.__BaseChart_context, "context"); t4 = this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); }, makeDefaultRenderer$0() { var t1 = A.LineRenderer_LineRenderer(null, null, type$.DateTime); t1.rendererId = "default"; return t1; }, createDomainAxisFromSpec$1(axisSpec) { type$.DateTimeAxisSpec._as(axisSpec); return A.DateTimeAxis$(this.dateTimeFactory); } }; A.Color0.prototype = { get$darker() { var _this = this, t1 = _this._darker; return t1 == null ? new A.Color0(B.JSNumber_methods.round$0(_this.r * 0.7), B.JSNumber_methods.round$0(_this.g * 0.7), B.JSNumber_methods.round$0(_this.b * 0.7), _this.a, null, null) : t1; }, $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.Color0 && other.r === _this.r && other.g === _this.g && other.b === _this.b && other.a === _this.a; }, get$hashCode(_) { var _this = this; return ((B.JSInt_methods.get$hashCode(_this.r) * 37 + B.JSInt_methods.get$hashCode(_this.g)) * 37 + B.JSInt_methods.get$hashCode(_this.b)) * 37 + B.JSInt_methods.get$hashCode(_this.a); }, toString$0(_) { var _this = this; return "#" + _this._get2CharHex$1(_this.r) + _this._get2CharHex$1(_this.g) + _this._get2CharHex$1(_this.b) + _this._get2CharHex$1(_this.a); }, _get2CharHex$1(num) { var str = B.JSInt_methods.toRadixString$1(num, 16); for (; str.length < 2;) str = "0" + str; return str; } }; A.LocalDateTimeFactory.prototype = { createDateTime$4(year, month, day, hour) { var t1 = A.Primitives_valueFromDecomposedDate(year, month, day, hour, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, false); }, createDateTime$3(year, month, day) { return this.createDateTime$4(year, month, day, 0); }, createDateTime$2(year, month) { return this.createDateTime$4(year, month, 1, 0); }, createDateTime$1(year) { return this.createDateTime$4(year, 1, 1, 0); } }; A.GestureListener.prototype = {}; A.GestureListener_defaultTapCancel_closure.prototype = { call$0() { }, $signature: 0 }; A.GestureListener_defaultTapTest_closure.prototype = { call$1(_) { return false; }, $signature: 496 }; A.MaterialPalette__orderedPalettes_closure.prototype = { call$0() { return B.C_MaterialBlue; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure0.prototype = { call$0() { return B.C_MaterialRed; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure1.prototype = { call$0() { return B.C_MaterialYellow; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure2.prototype = { call$0() { return B.C_MaterialGreen; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure3.prototype = { call$0() { return B.C_MaterialPurple; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure4.prototype = { call$0() { return B.C_MaterialCyan; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure5.prototype = { call$0() { return B.C_MaterialDeepOrange; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure6.prototype = { call$0() { return B.C_MaterialLime; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure7.prototype = { call$0() { return B.C_MaterialIndigo; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure8.prototype = { call$0() { return B.C_MaterialPink; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure9.prototype = { call$0() { return B.C_MaterialTeal; }, $signature: 126 }; A.MaterialPalette__orderedPalettes_closure10.prototype = { call$1(f) { return f.call$0(); }, $signature: 2840 }; A.MaterialBlue.prototype = { get$shadeDefault() { return B.Color_U0W; } }; A.MaterialRed.prototype = { get$shadeDefault() { return B.Color_kvD; } }; A.MaterialYellow.prototype = { get$shadeDefault() { return B.Color_g3G; } }; A.MaterialGreen.prototype = { get$shadeDefault() { return B.Color_ePM5; } }; A.MaterialPurple.prototype = { get$shadeDefault() { return B.Color_ePM4; } }; A.MaterialCyan.prototype = { get$shadeDefault() { return B.Color_ePM3; } }; A.MaterialDeepOrange.prototype = { get$shadeDefault() { return B.Color_wz6; } }; A.MaterialLime.prototype = { get$shadeDefault() { return B.Color_ePM2; } }; A.MaterialIndigo.prototype = { get$shadeDefault() { return B.Color_ePM1; } }; A.MaterialPink.prototype = { get$shadeDefault() { return B.Color_Feh; } }; A.MaterialTeal.prototype = { get$shadeDefault() { return B.Color_ePM0; } }; A.NullablePoint.prototype = { toString$0(_) { return "NullablePoint(" + A.S(this.x) + ", " + A.S(this.y) + ")"; }, $eq(_, other) { if (other == null) return false; return other instanceof A.NullablePoint && this.x == other.x && this.y == other.y; }, get$hashCode(_) { return J.get$hashCode$(this.x) * 37 + J.get$hashCode$(this.y); } }; A.Palette.prototype = { makeShades$1(colorCnt) { var t1, t2, t3, t4, lighterColor, i, _this = this, colors = A._setArrayType([_this.get$shadeDefault()], type$.JSArray_Color); if (colorCnt < 3) { t1 = _this.get$shadeDefault(); t2 = t1._lighter; if (t2 == null) { t2 = t1.r; t3 = t1.g; t4 = t1.b; t1 = new A.Color0(t2 + B.JSNumber_methods.round$0((255 - t2) * 0.1), t3 + B.JSNumber_methods.round$0((255 - t3) * 0.1), t4 + B.JSNumber_methods.round$0((255 - t4) * 0.1), t1.a, null, null); lighterColor = t1; } else lighterColor = t2; } else { t1 = colorCnt * 2; lighterColor = _this._getSteppedColor$3(_this.get$shadeDefault(), t1 - 1, t1); } for (i = 1; i < colorCnt; ++i) colors.push(_this._getSteppedColor$5$darker$lighter(_this.get$shadeDefault(), i, colorCnt, _this.get$shadeDefault().get$darker(), lighterColor)); colors.push(A.Color$fromOther(_this.get$shadeDefault(), lighterColor)); return colors; }, _getSteppedColor$5$darker$lighter(color, index, steps, darker, lighter) { var fraction = index / steps, t1 = color.r, t2 = color.g, t3 = color.b, t4 = color.a; return new A.Color0(t1 + B.JSNumber_methods.round$0((255 - t1) * fraction), t2 + B.JSNumber_methods.round$0((255 - t2) * fraction), t3 + B.JSNumber_methods.round$0((255 - t3) * fraction), t4 + B.JSNumber_methods.round$0((255 - t4) * fraction), darker, lighter); }, _getSteppedColor$3(color, index, steps) { return this._getSteppedColor$5$darker$lighter(color, index, steps, null, null); } }; A.Performance_time_closure.prototype = { call$1(_) { }, $signature: 117 }; A.Performance_timeEnd_closure.prototype = { call$1(_) { }, $signature: 117 }; A.ProxyGestureListener.prototype = { onLongPress$1(localPosition) { var _this = this, claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new A.ProxyGestureListener_onLongPress_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, A._setArrayType([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onTap$1(localPosition) { var _this = this, claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new A.ProxyGestureListener_onTap_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, A._setArrayType([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onDragStart$1(_, localPosition) { var claimingListener, _this = this; if (_this._activeListeners.length === 0) _this._populateActiveListeners$1(localPosition); claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new A.ProxyGestureListener_onDragStart_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, A._setArrayType([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onDragUpdate$2(localPosition, scale) { return B.JSArray_methods.any$1(this._activeListeners, new A.ProxyGestureListener_onDragUpdate_closure(localPosition, scale)); }, onDragEnd$3(_, localPosition, scale, pixelsPerSecond) { return B.JSArray_methods.any$1(this._activeListeners, new A.ProxyGestureListener_onDragEnd_closure(localPosition, scale, pixelsPerSecond)); }, _proxy_gesture_listener$_cancel$2$all$keep(all, keep) { B.JSArray_methods.forEach$1(all, new A.ProxyGestureListener__cancel_closure(keep)); return keep; }, _populateActiveListeners$1(localPosition) { var t1 = {}, localListeners = A.List_List$of(this._proxy_gesture_listener$_listeners, true, type$.GestureListener); t1.previouslyClaimed = false; B.JSArray_methods.forEach$1(localListeners, new A.ProxyGestureListener__populateActiveListeners_closure(t1, this, localPosition)); return t1.previouslyClaimed; } }; A.ProxyGestureListener_onLongPress_closure.prototype = { call$1(listener) { var t1 = listener.onLongPress; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 252 }; A.ProxyGestureListener_onTap_closure.prototype = { call$1(listener) { var t1 = listener.onTap; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 252 }; A.ProxyGestureListener_onDragStart_closure.prototype = { call$1(listener) { var t1 = listener.onDragStart; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 252 }; A.ProxyGestureListener_onDragUpdate_closure.prototype = { call$1(listener) { var t1 = listener.onDragUpdate; t1 = t1 == null ? null : t1.call$2(this.localPosition, this.scale); return t1 == null ? false : t1; }, $signature: 252 }; A.ProxyGestureListener_onDragEnd_closure.prototype = { call$1(listener) { var t1 = listener.onDragEnd; t1 = t1 == null ? null : t1.call$3(this.localPosition, this.scale, this.pixelsPerSecond); return t1 == null ? false : t1; }, $signature: 252 }; A.ProxyGestureListener__cancel_closure.prototype = { call$1(listener) { if (!B.JSArray_methods.contains$1(this.keep, listener)) listener.onTapCancel.call$0(); }, $signature: 754 }; A.ProxyGestureListener__populateActiveListeners_closure.prototype = { call$1(listener) { var t1, _this = this, claimed = listener.onTapTest.call$1(_this.localPosition); if (claimed && !_this._box_0.previouslyClaimed) { t1 = _this.$this; t1._activeListeners = t1._proxy_gesture_listener$_cancel$2$all$keep(t1._activeListeners, A._setArrayType([listener], type$.JSArray_GestureListener)); _this._box_0.previouslyClaimed = true; } else if (claimed || !_this._box_0.previouslyClaimed) _this.$this._activeListeners.push(listener); }, $signature: 754 }; A.MaterialStyle.prototype = {}; A.StyleFactory.prototype = {}; A.BaseSymbolRenderer.prototype = {}; A.SymbolRenderer.prototype = { getSolidStrokeWidthPx$1(strokeWidthPx) { return strokeWidthPx; }, $eq(_, other) { if (other == null) return false; return other instanceof A.SymbolRenderer && true; }, get$hashCode(_) { return 519018; } }; A.RoundedRectSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var t1 = this.radius, t2 = canvas._chart_canvas$_paint; t2.set$color(0, A.Color$fromARGB(fillColor.a, fillColor.r, fillColor.g, fillColor.b)); t2.set$style(0, B.PaintingStyle_0); canvas.canvas.drawRRect$2(0, canvas._chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight(bounds, t1, true, true, true, true), t2); }, paint$5$fillColor$strokeColor$strokeWidthPx(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq(_, other) { if (other == null) return false; return other instanceof A.RoundedRectSymbolRenderer && other.radius === this.radius && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode(_) { return A.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + B.JSInt_methods.get$hashCode(this.radius); } }; A.LineSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var localStrokeWidthPx, left, right, t1 = bounds.top, t2 = bounds.$ti._precomputed1, centerHeight = (t2._as(t1 + bounds.height) - t1) / 2, localDashPattern = dashPattern == null ? null : dashPattern, roundEndCaps = localDashPattern == null; if (roundEndCaps) localStrokeWidthPx = this.getSolidStrokeWidthPx$1(strokeWidthPx == null ? this.strokeWidth : strokeWidthPx); else localStrokeWidthPx = 2; left = bounds.left; t1 = bounds.width; right = t2._as(left + t1); if (roundEndCaps && t1 >= 5) { left += 2; right -= 2; } t1 = type$.Point_num; t1 = A._setArrayType([new A.Point(left, centerHeight, t1), new A.Point(right, centerHeight, t1)], type$.JSArray_Point_num); canvas.drawLine$6$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx(0, localDashPattern, fillColor, t1, roundEndCaps, strokeColor, localStrokeWidthPx); }, paint$5$fillColor$strokeColor$strokeWidthPx(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq(_, other) { if (other == null) return false; return other instanceof A.LineSymbolRenderer && other.strokeWidth === this.strokeWidth && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode(_) { return A.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + B.JSInt_methods.get$hashCode(this.strokeWidth); } }; A.CircleSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var t1 = bounds.width, t2 = bounds.height, t3 = Math.min(t1, t2); A.PointPainter_draw(canvas.canvas, fillColor, canvas._chart_canvas$_paint, new A.Point(bounds.left + t1 / 2, bounds.top + t2 / 2, type$.Point_double), t3 / 2, strokeColor, this.getSolidStrokeWidthPx$1(strokeWidthPx)); }, paint$5$fillColor$strokeColor$strokeWidthPx(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq(_, other) { if (other == null) return false; return other instanceof A.CircleSymbolRenderer && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode(_) { return A.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + A.Primitives_objectHashCode(A.getRuntimeType(this)); } }; A.TextDirection0.prototype = { toString$0(_) { return "TextDirection." + this._core$_name; } }; A.MaxWidthStrategy.prototype = { toString$0(_) { return "MaxWidthStrategy." + this._core$_name; } }; A.TextMeasurement.prototype = {}; A.TypedRegistry.prototype = {}; A.TypedKey.prototype = { get$hashCode(_) { return B.JSString_methods.get$hashCode(this.uniqueKey); }, $eq(_, other) { if (other == null) return false; return other instanceof A.TypedKey && this.uniqueKey === other.uniqueKey; } }; A.Series.prototype = { get$id(receiver) { return this.id; } }; A.Series_Series_closure0.prototype = { call$1(index) { index.toString; return this.domainFn.call$2(this.data[index], index); }, $signature() { return this.D._eval$1("0(int?)"); } }; A.Series_Series_closure1.prototype = { call$1(index) { index.toString; return this.measureFn.call$2(this.data[index], index); }, $signature: 755 }; A.Series_Series_closure2.prototype = { call$1(index) { index.toString; return this.colorFn.call$2(this.data[index], index); }, $signature: 199 }; A.Series_Series_closure.prototype = { call$1(index) { index.toString; return this.strokeWidthPxFn.call$2(this.data[index], index); }, $signature: 755 }; A.AttributeKey.prototype = {}; A.SeriesAttributes.prototype = {}; A.BarChart.prototype = { createCommonChart$1(chartState) { var t5, t6, t7, t8, t9, t10, t11, t12, _null = null, t1 = A.NumericAxis$(), t2 = this.createDisjointMeasureAxes$0(), t3 = A.OrdinalAxis$(), t4 = A.NumericAxis$(); if (t2 == null) t2 = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.String, type$.NumericAxis); t5 = $.$get$CartesianChart__defaultLayoutConfig(); t6 = type$.String; t7 = type$.ChartBehavior_String; t8 = A._setArrayType([], type$.JSArray_ChartBehavior_String); t9 = type$.JSArray_GestureListener; t10 = A._setArrayType([], t9); t9 = A._setArrayType([], t9); t11 = A._setArrayType([], type$.JSArray_LifecycleListener_String); t12 = A._setArrayType([], type$.JSArray_LayoutView); return new A.BarChart0(true, t3, t1, t4, t2, new A.LayoutManagerImpl(t5 == null ? A.LayoutConfig$(_null, _null, _null, _null) : t5, t12), B.Duration_300000, A.LinkedHashSet_LinkedHashSet$_empty(t6), A.LinkedHashMap_LinkedHashMap$_empty(t6, type$.SeriesRenderer_String), A.LinkedHashMap_LinkedHashMap$_empty(t6, t7), t8, A.LinkedHashMap_LinkedHashMap$_empty(t6, t7), new A.ProxyGestureListener(t10, t9), A.LinkedHashMap_LinkedHashMap$_empty(type$.SelectionModelType, type$.MutableSelectionModel_String), t11); }, addDefaultInteractions$1(behaviors) { this.super$BaseChart$addDefaultInteractions(behaviors); behaviors.push(new A.DomainHighlighter(A.LinkedHashSet_LinkedHashSet(type$.GestureType), type$.DomainHighlighter_String)); } }; A.BaseChart.prototype = { createState$0() { var t1 = A._instanceType(this), t2 = t1._eval$1("JSArray>"), t3 = type$.SelectionModelType, t4 = t1._eval$1("~(SelectionModel)"); return new A.BaseChartState(A._setArrayType([], t2), A._setArrayType([], t2), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.ChartBehavior_dynamic), A.LinkedHashMap_LinkedHashMap$_empty(t3, t4), A.LinkedHashMap_LinkedHashMap$_empty(t3, t4), A.LinkedHashMap_LinkedHashMap$_empty(type$.ChartStateBehavior_ChartBehavior_dynamic, type$.AnimationController), null, null, B._StateLifecycle_0, t1._eval$1("BaseChartState")); }, updateCommonChart$3(chart, oldWidget, chartState) { var t1, t2, _this = this, _s21_ = "chartsUpdateRenderers", _s21_0 = "chartsUpdateBehaviors"; $.$get$Performance_time().call$1(_s21_); t1 = _this.defaultRenderer; if (t1 != null) t2 = !t1.$eq(0, oldWidget == null ? null : oldWidget.defaultRenderer); else t2 = false; if (t2) { t1 = A.BarRenderer_BarRenderer(t1, t1.customRendererId, A._instanceType(t1)._precomputed1); chart.toString; t1.rendererId = "default"; chart.addSeriesRenderer$1(t1); chartState._configurationChanged = true; } $.$get$Performance_timeEnd().call$1(_s21_); $.$get$Performance_time().call$1(_s21_0); _this._updateBehaviors$2(chart, chartState); $.$get$Performance_timeEnd().call$1(_s21_0); _this._updateSelectionModel$2(chart, chartState); chart.transition = _this.animationDuration; }, _updateBehaviors$2(chart, chartState) { var behaviorList, i, t2, addedBehavior, role, _this = this, t1 = _this.behaviors; if (t1 == null) t1 = []; behaviorList = A.List_List$from(t1, true, A._instanceType(_this)._eval$1("ChartBehavior")); t1 = chartState.autoBehaviorWidgets; if (t1.length === 0) _this.addDefaultInteractions$1(t1); new A.ReversedListIterable(t1, A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")).super$Iterable$where(0, _this.get$_notACustomBehavior()).forEach$1(0, new A.BaseChart__updateBehaviors_closure(_this, behaviorList)); for (t1 = chartState.addedBehaviorWidgets, i = t1.length - 1, t2 = chartState.addedCommonBehaviorsByRole; i >= 0; --i) { addedBehavior = t1[i]; if (!B.JSArray_methods.remove$1(behaviorList, addedBehavior)) { role = addedBehavior.get$role(addedBehavior); B.JSArray_methods.remove$1(t1, addedBehavior); t2.remove$1(0, role); chart.removeBehavior$1(t2.$index(0, role)); chartState._configurationChanged = true; } } B.JSArray_methods.forEach$1(behaviorList, new A.BaseChart__updateBehaviors_closure0(_this, chartState, chart)); }, addDefaultInteractions$1(behaviors) { var desiredGestures = A.LinkedHashSet_LinkedHashSet(type$.GestureType); switch (1) { case 1: desiredGestures.add$1(0, B.GestureType_1); break; } behaviors.push(new A.SelectNearest(desiredGestures, B.SelectionModelType_0, B.SelectionTrigger_1, B.SelectionMode_0, true, null, A._instanceType(this)._eval$1("SelectNearest"))); }, _notACustomBehavior$1(behavior) { var t1 = this.behaviors; return t1 == null || !B.JSArray_methods.any$1(t1, new A.BaseChart__notACustomBehavior_closure(behavior)); }, _updateSelectionModel$2(chart, chartState) { var t1 = chartState.addedSelectionChangedListenersByType, prevTypes = A.List_List$from(new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")), true, type$.SelectionModelType); t1 = this.selectionModels; if (t1 != null) B.JSArray_methods.forEach$1(t1, new A.BaseChart__updateSelectionModel_closure(this, chart, chartState, prevTypes)); B.JSArray_methods.forEach$1(prevTypes, new A.BaseChart__updateSelectionModel_closure0(chart, chartState)); }, getDesiredGestures$1(chartState) { var t2, types = A.LinkedHashSet_LinkedHashSet(type$.GestureType), t1 = this.behaviors; if (t1 != null) B.JSArray_methods.forEach$1(t1, new A.BaseChart_getDesiredGestures_closure(types)); t1 = chartState.autoBehaviorWidgets; t2 = t1.length; if (t2 === 0) this.addDefaultInteractions$1(t1); B.JSArray_methods.forEach$1(t1, new A.BaseChart_getDesiredGestures_closure0(types)); return types; } }; A.BaseChart__updateBehaviors_closure.prototype = { call$1(behavior) { B.JSArray_methods.insert$2(this.behaviorList, 0, behavior); }, $signature() { return A._instanceType(this.$this)._eval$1("~(ChartBehavior)"); } }; A.BaseChart__updateBehaviors_closure0.prototype = { call$1(behaviorWidget) { var role, t2, t3, commonBehavior = behaviorWidget.createCommonBehavior$0(), t1 = this.chart; t1.toString; role = commonBehavior.get$role(commonBehavior); t2 = t1._behaviorRoleMap; t3 = t2.$index(0, role); if (t3 !== commonBehavior) { t1.removeBehavior$1(t2.$index(0, role)); t2.$indexSet(0, role, commonBehavior); } t2 = t1._behaviorStack; if (!B.JSArray_methods.contains$1(t2, commonBehavior)) { t2.push(commonBehavior); commonBehavior.attachTo$1(t1); } t1 = this.chartState; t1.addedBehaviorWidgets.push(behaviorWidget); t1.addedCommonBehaviorsByRole.$indexSet(0, behaviorWidget.get$role(behaviorWidget), commonBehavior); t1._configurationChanged = true; }, $signature() { return A._instanceType(this.$this)._eval$1("~(ChartBehavior)"); } }; A.BaseChart__notACustomBehavior_closure.prototype = { call$1(userBehavior) { var t1 = this.behavior; return userBehavior.get$role(userBehavior) === t1.get$role(t1); }, $signature: 756 }; A.BaseChart__updateSelectionModel_closure.prototype = { call$1(model) { var t1 = model.type, selectionModel = this.chart.getSelectionModel$1(t1), t2 = this.chartState, t3 = t2.addedSelectionChangedListenersByType, prevChangedListener = t3.$index(0, t1), t4 = model.changedListener; if (t4 !== prevChangedListener) { if (prevChangedListener != null) B.JSArray_methods.remove$1(selectionModel._changedListeners, prevChangedListener); selectionModel._changedListeners.push(t4); t3.$indexSet(0, t1, t4); } t2.addedSelectionUpdatedListenersByType.$index(0, t1); B.JSArray_methods.remove$1(this.prevTypes, t1); }, $signature() { return A._instanceType(this.$this)._eval$1("~(SelectionModelConfig)"); } }; A.BaseChart__updateSelectionModel_closure0.prototype = { call$1(type) { var t1 = this.chart.getSelectionModel$1(type), t2 = this.chartState, t3 = t2.addedSelectionChangedListenersByType.$index(0, type); t3.toString; B.JSArray_methods.remove$1(t1._changedListeners, t3); t2 = t2.addedSelectionUpdatedListenersByType.$index(0, type); t2.toString; B.JSArray_methods.remove$1(t1._updatedListeners, t2); }, $signature: 2839 }; A.BaseChart_getDesiredGestures_closure.prototype = { call$1(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, $signature: 763 }; A.BaseChart_getDesiredGestures_closure0.prototype = { call$1(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, $signature: 763 }; A.BaseChartState.prototype = { initState$0() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_animationTick()); _this.__BaseChartState__animationController = t1; }, requestRebuild$0() { if (this._framework$_element != null) this.super$State$setState(new A.BaseChartState_requestRebuild_closure()); }, _buildChartContainer$0() { var t3, t4, t5, chartContainer, desiredGestures, _this = this, _null = null, t1 = _this._oldWidget, t2 = _this._widget; t2.toString; t3 = _this._animationValue; t4 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t4.toString; t5 = _this._widget; chartContainer = new A.ChartContainer(t2, t1, _this, t3, t4.textDirection === B.TextDirection_0, t5.rtlSpec, t5.userManagedState, _null, _null, B.Size_0_0, _null, _null, _this.$ti._eval$1("ChartContainer<1>")); _this._oldWidget = t5; desiredGestures = t5.getDesiredGestures$1(_this); if (desiredGestures._collection$_length !== 0) { t1 = _this._chartGestureDetector; if (t1 == null) t1 = _this._chartGestureDetector = new A.ChartGestureDetector(); t2 = _this._framework$_element; t2.toString; return t1.makeWidget$3(t2, chartContainer, desiredGestures); } else return chartContainer; }, build$1(_, context) { var t1, _s14_ = "chartContainer", chartWidgets = A._setArrayType([], type$.JSArray_LayoutId), idAndBehaviorMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BuildableBehavior_ChartBehavior_dynamic); chartWidgets.push(A.LayoutId$(this._buildChartContainer$0(), _s14_)); this.addedCommonBehaviorsByRole.forEach$1(0, new A.BaseChartState_build_closure(idAndBehaviorMap, context, chartWidgets)); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return new A.CustomMultiChildLayout(new A.WidgetLayoutDelegate(_s14_, t1.textDirection === B.TextDirection_0, idAndBehaviorMap), chartWidgets, null); }, dispose$0(_) { var t1; A._lateReadCheck(this.__BaseChartState__animationController, "_animationController").dispose$0(0); t1 = this._behaviorAnimationControllers; t1.forEach$1(0, new A.BaseChartState_dispose_closure()); t1.clear$0(0); this.super$_BaseChartState_State_TickerProviderStateMixin$dispose(0); }, _animationTick$0() { if (this._framework$_element != null) this.super$State$setState(new A.BaseChartState__animationTick_closure(this)); } }; A.BaseChartState_requestRebuild_closure.prototype = { call$0() { }, $signature: 0 }; A.BaseChartState_build_closure.prototype = { call$2(id, behavior) { var t1 = type$.BuildableBehavior_ChartBehavior_dynamic; if (t1._is(behavior)) { t1._as(behavior); this.idAndBehaviorMap.$indexSet(0, id, behavior); this.chartWidgets.push(A.LayoutId$(behavior.build$1(0, this.context), id)); } }, $signature: 2831 }; A.BaseChartState_dispose_closure.prototype = { call$2(_, controller) { return controller.dispose$0(0); }, $signature: 2829 }; A.BaseChartState__animationTick_closure.prototype = { call$0() { var t1 = this.$this; t1._animationValue = A._lateReadCheck(A._lateReadCheck(t1.__BaseChartState__animationController, "_animationController").__AnimationController__value, "_value"); }, $signature: 0 }; A._BaseChartState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.ChartBehavior.prototype = {}; A.GestureType.prototype = { toString$0(_) { return "GestureType." + this._core$_name; } }; A.DomainHighlighter.prototype = { createCommonBehavior$0() { var t1 = this.$ti, t2 = new A.DomainHighlighter0(B.SelectionModelType_0, t1._eval$1("DomainHighlighter0<1>")); t2.__DomainHighlighter__lifecycleListener = new A.LifecycleListener(null, null, t2.get$_updateColorFunctions(), null, t1._eval$1("LifecycleListener<1>")); return t2; }, get$role(_) { return "domainHighlight-SelectionModelType.info"; }, $eq(_, o) { if (o == null) return false; return o instanceof A.DomainHighlighter && true; }, get$hashCode(_) { return A.Primitives_objectHashCode(B.SelectionModelType_0); }, get$desiredGestures() { return this.desiredGestures; } }; A.BaseLegendContentBuilder.prototype = { build$4$showMeasures(_, context, legendState, legend, showMeasures) { var t1 = A._lateReadCheck(legendState.__LegendState__legendEntries, "_legendEntries"), t2 = A.instanceType(t1)._eval$1("MappedListIterable<1,Widget>"); return this.legendLayout.build$2(0, context, A.List_List$of(new A.MappedListIterable(t1, new A.BaseLegendContentBuilder_build_closure(this, legend, context, showMeasures), t2), true, t2._eval$1("ListIterable.E"))); } }; A.BaseLegendContentBuilder_build_closure.prototype = { call$1(entry) { var symbolRendererBuilder, symbol, style, label, measure, _this = this, _null = null, t1 = _this.legend, t2 = entry.series, isHidden = t1._hiddenSeriesList.contains$1(0, t2.id), t3 = _this.$this.legendEntryLayout, t4 = _this.context, rowChildren = A._setArrayType([], type$.JSArray_Widget), padding = new A.EdgeInsets(0, 0, 8, 0), entryColor = entry.color, color = entryColor == null ? _null : A.Color$fromARGB(entryColor.a, entryColor.r, entryColor.g, entryColor.b), t5 = t2._attrs._registry, t6 = type$.nullable_SeriesRenderer_Object; t6._as(t5.$index(0, B.AttributeKey_I4y)).toString; t5 = t6._as(t5.$index(0, B.AttributeKey_I4y)).symbolRenderer; t2 = t2.dashPatternFn; if (t2 == null) t2 = _null; else t2 = t2.call$1(0); symbolRendererBuilder = new A.SymbolRendererCanvas(t5, t2); if (color != null && isHidden) { t2 = color.value; color = A.Color$fromARGB(66, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } symbol = A.GestureDetector$(_null, A.SizedBox$fromSize(A.CustomPaint$(_null, _null, _null, new A._SymbolCustomPaint(t4, symbolRendererBuilder.commonSymbolRenderer, color, symbolRendererBuilder.dashPattern, _null), B.Size_0_0), new A.Size(12, 12)), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.makeTapUpCallback$3(t4, entry, t1), _null, _null, _null); if (isHidden) { color = A.Theme_of(t4).textTheme.bodyMedium.color; color = A.Color$fromARGB(66, color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255); } else color = _null; style = A.TextStyle$(_null, _null, color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); label = A.GestureDetector$(_null, A.Text$(entry.label, _null, _null, _null, _null, _null, style, _null, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.makeTapUpCallback$3(t4, entry, t1), _null, _null, _null); if (_this.showMeasures) { t2 = entry.formattedValue; t2.toString; measure = A.GestureDetector$(_null, A.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.makeTapUpCallback$3(t4, entry, t1), _null, _null, _null); } else measure = _null; rowChildren.push(symbol); rowChildren.push(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null)); rowChildren.push(label); if (measure != null) { rowChildren.push(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null)); rowChildren.push(measure); } return A.Row$(rowChildren, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, $signature: 2827 }; A.TabularLegendContentBuilder.prototype = { $eq(_, o) { var t1; if (o == null) return false; if (o instanceof A.TabularLegendContentBuilder) t1 = this.legendLayout.$eq(0, o.legendLayout); else t1 = false; return t1; }, get$hashCode(_) { return A.hashValues(this.legendEntryLayout, this.legendLayout, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.SimpleLegendEntryLayout.prototype = { makeTapUpCallback$3(context, legendEntry, legend) { return new A.SimpleLegendEntryLayout_makeTapUpCallback_closure(legend, legendEntry); }, $eq(_, other) { if (other == null) return false; return other instanceof A.SimpleLegendEntryLayout; }, get$hashCode(_) { return A.Primitives_objectHashCode(A.getRuntimeType(this)); } }; A.SimpleLegendEntryLayout_makeTapUpCallback_closure.prototype = { call$1(d) { var seriesId, t1 = this.legend; switch (1) { case 1: seriesId = this.legendEntry.series.id; if (t1._hiddenSeriesList.contains$1(0, seriesId)) t1.showSeries$1(seriesId); else t1.hideSeries$1(seriesId); A._lateReadCheck(t1.__Legend__chart, "_chart").redraw$2$skipAnimation$skipLayout(false, true); break; } }, $signature: 95 }; A.TabularLegendLayout.prototype = { build$2(_, context, legendEntries) { var paddedLegendEntries, t1, _this = this; if (_this.cellPadding == null) paddedLegendEntries = legendEntries; else { t1 = A._arrayInstanceType(legendEntries)._eval$1("MappedListIterable<1,Padding>"); paddedLegendEntries = A.List_List$of(new A.MappedListIterable(legendEntries, new A.TabularLegendLayout_build_closure(_this), t1), true, t1._eval$1("ListIterable.E")); } return _this.isHorizontalFirst ? _this._buildHorizontalFirst$1(paddedLegendEntries) : _this._buildVerticalFirst$1(paddedLegendEntries); }, $eq(_, o) { var _this = this; if (o == null) return false; return o instanceof A.TabularLegendLayout && _this.desiredMaxRows === o.desiredMaxRows && _this.desiredMaxColumns === o.desiredMaxColumns && _this.isHorizontalFirst === o.isHorizontalFirst && J.$eq$(_this.cellPadding, o.cellPadding); }, get$hashCode(_) { var _this = this; return A.hashValues(_this.desiredMaxRows, _this.desiredMaxColumns, _this.isHorizontalFirst, _this.cellPadding, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, _buildHorizontalFirst$1(legendEntries) { var rows, i, i0, t1 = this.desiredMaxColumns, maxColumns = legendEntries.length; maxColumns = t1 === -1 ? maxColumns : Math.min(maxColumns, t1); rows = A._setArrayType([], type$.JSArray_TableRow); for (i = 0; t1 = legendEntries.length, i < t1; i = i0) { i0 = i + maxColumns; t1 = B.JSArray_methods.sublist$2(legendEntries, i, Math.min(i0, t1)); t1 = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); rows.push(new A.TableRow(null, null, t1)); } return this._buildTableFromRows$1(rows); }, _buildVerticalFirst$1(legendEntries) { var rows, _i, i, t1 = this.desiredMaxRows, maxRows = legendEntries.length; maxRows = t1 === -1 ? maxRows : Math.min(maxRows, t1); rows = J.JSArray_JSArray$allocateGrowable(maxRows, type$.TableRow); for (t1 = type$.JSArray_Widget, _i = 0; _i < maxRows; ++_i) rows[_i] = new A.TableRow(null, null, A._setArrayType([], t1)); for (i = 0; i < legendEntries.length; ++i) B.JSArray_methods.add$1(rows[B.JSInt_methods.$mod(i, maxRows)].children, legendEntries[i]); return this._buildTableFromRows$1(rows); }, _buildTableFromRows$1(rows) { var i, rowChildren, padCount, _null = null, t1 = this.cellPadding, padWidget = new A.Padding(t1 == null ? B.EdgeInsets_8_8_8_8 : t1, _null, _null), columnCount = new A.MappedListIterable(rows, new A.TabularLegendLayout__buildTableFromRows_closure(), A._arrayInstanceType(rows)._eval$1("MappedListIterable<1,int>")).fold$1$2(0, 0, new A.TabularLegendLayout__buildTableFromRows_closure0(), type$.int); for (t1 = type$.Padding, i = 0; i < rows.length; ++i) { rowChildren = rows[i].children; padCount = columnCount - rowChildren.length; if (padCount > 0) B.JSArray_methods.addAll$1(rowChildren, A.Iterable_Iterable$generate(padCount, new A.TabularLegendLayout__buildTableFromRows_closure1(padWidget), t1)); } return A.Table$(_null, rows, _null, new A.IntrinsicColumnWidth(_null), B.TableCellVerticalAlignment_0, _null); } }; A.TabularLegendLayout_build_closure.prototype = { call$1(entry) { var t1 = this.$this.cellPadding; t1.toString; return new A.Padding(t1, entry, null); }, $signature: 2822 }; A.TabularLegendLayout__buildTableFromRows_closure.prototype = { call$1(r) { return r.children.length; }, $signature: 2821 }; A.TabularLegendLayout__buildTableFromRows_closure0.prototype = { call$2(max, current) { return current > max ? current : max; }, $signature: 507 }; A.TabularLegendLayout__buildTableFromRows_closure1.prototype = { call$1(_) { return this.padWidget; }, $signature: 2819 }; A.SeriesLegend.prototype = { createCommonBehavior$0() { var _this = this, _null = null, t1 = _this.$ti, t2 = t1._precomputed1, t3 = _this.selectionModelType, t4 = new A.PerSeriesLegendEntryGenerator(t1._eval$1("PerSeriesLegendEntryGenerator<1>")); t1 = new A._FlutterSeriesLegend(_this, A.LinkedHashSet_LinkedHashSet$_empty(type$.String), t3, new A.LegendState(t1._eval$1("LegendState<1>")), t4, t1._eval$1("_FlutterSeriesLegend<1>")); t1.Legend$3$entryTextStyle$legendEntryGenerator$selectionModelType(_null, t4, t3, t2); t1.SeriesLegend$7$entryTextStyle$legendDefaultMeasure$legendEntryGenerator$measureFormatter$secondaryMeasureFormatter$selectionModelType$showMeasures(_null, _this.legendDefaultMeasure, _null, _this.measureFormatter, _this.secondaryMeasureFormatter, t3, _null, t2); t1.super$SeriesLegend$defaultHiddenSeries(_this.defaultHiddenSeries); t1.super$Legend$entryTextStyle(_this.entryTextStyle); return t1; }, get$role(_) { return "legend"; }, $eq(_, o) { var t1, _this = this; if (o == null) return false; if (o instanceof A.SeriesLegend) if (_this.selectionModelType === o.selectionModelType) if (_this.contentBuilder.$eq(0, o.contentBuilder)) if (_this.position === o.position) if (_this.outsideJustification === o.outsideJustification) if (_this.insideJustification === o.insideJustification) if (new A.ListEquality(B.C_DefaultEquality, type$.ListEquality_dynamic).equals$2(_this.defaultHiddenSeries, o.defaultHiddenSeries)) if (_this.legendDefaultMeasure === o.legendDefaultMeasure) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.selectionModelType, _this.contentBuilder, _this.position, _this.outsideJustification, _this.insideJustification, _this.defaultHiddenSeries, false, _this.legendDefaultMeasure, _this.measureFormatter, _this.secondaryMeasureFormatter, _this.entryTextStyle, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, get$desiredGestures() { return this.desiredGestures; } }; A._FlutterSeriesLegend.prototype = { build$1(_, context) { var _this = this, _s14_ = "_legendEntries", t1 = _this.legendState; if (A._lateReadCheck(t1.__LegendState__legendEntries, _s14_) != null) J.any$1$ax(A._lateReadCheck(t1.__LegendState__legendEntries, _s14_), new A._FlutterSeriesLegend_build_closure(_this)); return _this.config.contentBuilder.build$4$showMeasures(0, context, t1, _this, false); }, $isBuildableBehavior: 1 }; A._FlutterSeriesLegend_build_closure.prototype = { call$1(entry) { return entry.isSelected; }, $signature() { return this.$this.$ti._eval$1("bool(LegendEntry<1>)"); } }; A.LinePointHighlighter.prototype = { createCommonBehavior$0() { var _null = null, t1 = this.$ti, t2 = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.String, t1._eval$1("_AnimatedPoint<1>")), t3 = A._setArrayType([], type$.JSArray_String), t4 = A._setArrayType([1, 3], type$.JSArray_int); t2 = new A.LinePointHighlighter0(B.SelectionModelType_0, 4, 2, B.LinePointHighlighterFollowLineType_1, B.LinePointHighlighterFollowLineType_0, t4, true, new A.CircleSymbolRenderer(true), t2, t3, t1._eval$1("LinePointHighlighter0<1>")); t2.__LinePointHighlighter__lifecycleListener = new A.LifecycleListener(_null, _null, _null, t2.get$_updateViewData(), t1._eval$1("LifecycleListener<1>")); return t2; }, get$role(_) { return "LinePointHighlighter-" + B.JSNull_methods.toString$0(null); }, $eq(_, o) { var t1; if (o == null) return false; if (o instanceof A.LinePointHighlighter) t1 = new A.ListEquality(B.C_DefaultEquality, type$.ListEquality_dynamic).equals$2(null, null) && true; else t1 = false; return t1; }, get$hashCode(_) { var _null = null; return A.hashValues(_null, _null, _null, _null, _null, _null, _null, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, get$desiredGestures() { return this.desiredGestures; } }; A.SelectNearest.prototype = { createCommonBehavior$0() { var t2, _this = this, _null = null, eventTrigger = _this.eventTrigger, t1 = new A.SelectNearest0(_this.selectionModelType, eventTrigger, _this.selectionMode, true, _this.maximumDomainDistancePx, _this.$ti._eval$1("SelectNearest0<1>")); switch (eventTrigger.index) { case 1: t1.__SelectNearest__listener = A.GestureListener$(_null, _null, _null, _null, _null, t1.get$_onSelect(), t1.get$_onTapTest()); break; case 2: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = A.GestureListener$(_null, t2, t2, _null, _null, t2, t1.get$_onTapTest()); break; case 3: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = A.GestureListener$(t1.get$_onDeselectAll(), t2, t2, _null, t2, _null, t1.get$_onTapTest()); break; case 4: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = A.GestureListener$(t1.get$_onDeselectAll(), t2, t2, _null, t1.get$_onLongPressSelect(), _null, t1.get$_onTapTest()); break; case 0: default: t1.__SelectNearest__listener = A.GestureListener$(_null, _null, _null, t1.get$_onSelect(), _null, _null, _null); break; } return t1; }, get$role(_) { return "SelectNearest-" + ("SelectionModelType." + this.selectionModelType._core$_name) + "}"; }, $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A.SelectNearest) { if (this.selectionModelType === other.selectionModelType) if (this.eventTrigger === other.eventTrigger) if (this.selectionMode === other.selectionMode) t1 = true; else t1 = false; else t1 = false; else t1 = false; return t1; } else return false; }, get$hashCode(_) { var _this = this, hashcode = A.Primitives_objectHashCode(_this.selectionModelType), t1 = A.Primitives_objectHashCode(_this.eventTrigger), t2 = A.Primitives_objectHashCode(_this.selectionMode); return (((hashcode * 37 + t1) * 37 + t2) * 37 + 519018) * 37 + B.JSNull_methods.get$hashCode(_this.maximumDomainDistancePx); }, get$desiredGestures() { return this.desiredGestures; } }; A.LinePainter__drawDashedLine_closure.prototype = { call$0() { var t1 = this.localDashPattern, t2 = this._box_0, t3 = t2.dashPatternIndex, dashSegment = t1[t3]; t2.dashPatternIndex = (t3 + 1) % t1.length; return dashSegment; }, $signature: 9 }; A.CartesianChart0.prototype = { createDisjointMeasureAxes$0() { return null; } }; A.ChartCanvas.prototype = { drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx(_, clipBounds, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx) { A.LinePainter_draw(this.canvas, clipBounds, dashPattern, fill, this._chart_canvas$_paint, points, roundEndCaps, null, stroke, strokeWidthPx); }, drawLine$6$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, null, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx); }, drawLine$6$clipBounds$dashPattern$points$roundEndCaps$stroke$strokeWidthPx($receiver, clipBounds, dashPattern, points, roundEndCaps, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, clipBounds, dashPattern, null, points, roundEndCaps, stroke, strokeWidthPx); }, drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx($receiver, dashPattern, fill, points, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, null, dashPattern, fill, points, null, stroke, strokeWidthPx); }, drawPolygon$3$clipBounds$fill$points(clipBounds, fill, points) { A.PolygonPainter_draw(this.canvas, clipBounds, fill, this._chart_canvas$_paint, points, null, null); }, _createHintGradient$3(left, $top, fill) { var t1 = fill.r, t2 = fill.g, t3 = fill.b; return A.Gradient_Gradient$linear(new A.Offset(left, $top), new A.Offset(left, $top - 5), A._setArrayType([A.Color$fromARGB(fill.a, t1, t2, t3), A.Color$fromARGB(0, t1, t2, t3)], type$.JSArray_Color_2), null, B.TileMode_0, null); }, drawBarStack$2$drawAreaBounds(barStack, drawAreaBounds) { var t2, t3, t4, t5, t6, barIndex, segment, bounds, fill, stroke, strokeWidthPx, drawStroke, strokeWidthOffset, t7, t8, t9, t10, t11, fillRectBounds, t12, _this = this, t1 = barStack.radius, roundedCorners = 0 < t1; if (roundedCorners) { t2 = _this.canvas; t2.save$0(0); t2.clipRRect$1(0, _this._chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight(barStack.fullStackRect, t1, barStack.roundBottomLeft, barStack.roundBottomRight, barStack.roundTopLeft, barStack.roundTopRight)); } for (t1 = barStack.segments, t2 = _this._chart_canvas$_paint, t3 = _this.canvas, t4 = drawAreaBounds.top, t5 = type$.num, t6 = drawAreaBounds.left, barIndex = 0; barIndex < t1.length; ++barIndex) { segment = t1[barIndex]; bounds = segment.bounds; fill = segment.fill; stroke = segment.stroke; strokeWidthPx = segment.strokeWidthPx; drawStroke = strokeWidthPx != null && strokeWidthPx > 0 && stroke != null; strokeWidthOffset = drawStroke ? strokeWidthPx : 0; t7 = bounds.left; t8 = strokeWidthOffset / 2; t9 = bounds.top; t10 = bounds.width; t11 = bounds.height; fillRectBounds = A.Rectangle$(t7 + t8, t9 + t8, t10 - strokeWidthOffset, t11 - strokeWidthOffset, t5); switch (segment.pattern) { case B.FillPatternType_0: fill.toString; _this._drawForwardHatchPattern$4$drawAreaBounds$fill(fillRectBounds, t3, drawAreaBounds, fill); break; case B.FillPatternType_1: default: t2.set$color(0, A.Color$fromARGB(fill.a, fill.r, fill.g, fill.b)); t2.set$style(0, B.PaintingStyle_0); if (t9 < t4) { t6.toString; t2.set$shader(_this._createHintGradient$3(t6, t4, fill)); } t8 = fillRectBounds.left; t8.toString; t12 = fillRectBounds.top; t12.toString; t3.drawRect$2(0, new A.Rect(t8, t12, t8 + fillRectBounds.width, t12 + fillRectBounds.height), t2); break; } if (drawStroke) { t2.set$color(0, A.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); t6.toString; t4.toString; t8 = _this._createHintGradient$3(t6, t4, stroke); t2.set$shader(t8); t2.set$strokeJoin(B.StrokeJoin_1); t2.set$strokeWidth(strokeWidthPx); t2.set$style(0, B.PaintingStyle_1); t3.drawRect$2(0, new A.Rect(t7, t9, t7 + t10, t9 + t11), t2); } t2.set$shader(null); } if (roundedCorners) t3.restore$0(0); }, _getRect$1(rectangle) { var t2, t1 = rectangle.left; t1.toString; t2 = rectangle.top; t2.toString; return new A.Rect(t1, t2, t1 + rectangle.width, t2 + rectangle.height); }, _chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight(rectangle, radius, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight) { var t2, t3, t4, t5, t6, t7, cornerRadius = radius === 0 ? B.Radius_0_0 : new A.Radius(radius, radius), t1 = rectangle.left; t1.toString; t2 = rectangle.top; t2.toString; t3 = rectangle.$ti._precomputed1; t4 = t3._as(t1 + rectangle.width); t3 = t3._as(t2 + rectangle.height); t5 = roundTopLeft ? cornerRadius : B.Radius_0_0; t6 = roundTopRight ? cornerRadius : B.Radius_0_0; t7 = roundBottomLeft ? cornerRadius : B.Radius_0_0; return A.RRect$fromLTRBAndCorners(t1, t2, t4, t3, t7, roundBottomRight ? cornerRadius : B.Radius_0_0, t5, t6); }, _drawForwardHatchPattern$4$drawAreaBounds$fill(bounds, canvas, drawAreaBounds, fill) { var t1, t2, t3, t4, t5, smallSide, smallSide0, size, x0, x1, y0, y1, isVertical, start, end, lineShader, i, modifier, _this = this, _null = null; $.$get$StyleFactory__styleFactory().toString; if (fill == null) fill = B.Color_ww8; t1 = _this._chart_canvas$_paint; t1.set$color(0, A.Color$fromARGB(255, 255, 255, 255)); t1.set$style(0, B.PaintingStyle_0); t2 = bounds.top; t3 = drawAreaBounds.top; t4 = t2 < t3; if (t4) { t5 = drawAreaBounds.left; t5.toString; t1.set$shader(_this._createHintGradient$3(t5, t3, B.Color_toQ)); } canvas.drawRect$2(0, _this._getRect$1(bounds), t1); smallSide = bounds.width; smallSide0 = bounds.height; size = Math.max(smallSide, smallSide0); t5 = bounds.left; x0 = t5 + size + 4; x1 = t5 - 4; t2 = bounds.$ti._precomputed1._as(t2 + smallSide0); y0 = t2 - size - 4; y1 = t2 + 4; isVertical = smallSide0 >= smallSide; start = -B.JSNumber_methods.round$0((isVertical ? smallSide : smallSide0) / 8) * 8; end = size + 8; if (t4) { t2 = drawAreaBounds.left; t2.toString; lineShader = _this._createHintGradient$3(t2, t3, fill); } else lineShader = _null; for (t2 = type$.Point_num, t3 = type$.JSArray_Point_num, i = start; i < end; i += 8) { modifier = isVertical ? -1 * i : i; A.LinePainter_draw(canvas, _null, _null, _null, t1, A._setArrayType([new A.Point(x0 + modifier, y0, t2), new A.Point(x1 + modifier, y1, t2)], t3), _null, lineShader, fill, 4); } } }; A.ChartContainer.prototype = { createRenderObject$1(context) { var _null = null, t1 = new A.ChartContainerRenderObject(_null, _null, B.Size_0_0, false, false, _null, A.LayerHandle$(type$.ContainerLayer_2), this.$ti._eval$1("ChartContainerRenderObject<1>")); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); t1.reconfigure$2(this, context); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.reconfigure$2(this, context); } }; A.ChartContainerRenderObject.prototype = { reconfigure$2(config, context) { var t1, t2, t3, t4, prev, t5, _this = this, _s12_ = "chartsCreate", _s11_ = "_chartState", _s12_0 = "chartsConfig", _s10_ = "chartsDraw"; _this.__ChartContainerRenderObject__chartState = config.chartState; t1 = config.chartWidget; _this._dateTimeFactory = null; _this._dateTimeFactory = new A.LocalDateTimeFactory(); if (_this._chart_container$_chart == null) { $.$get$Performance_time().call$1(_s12_); t2 = t1.createCommonChart$1(A._lateReadCheck(_this.__ChartContainerRenderObject__chartState, _s11_)); _this._chart_container$_chart = t2; t3 = A.MediaQuery_textScaleFactorOf(context); t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); t2.init$2(_this, new A.GraphicsFactory(t3, t4 == null ? B.DefaultTextStyle_40S : t4)); $.$get$Performance_timeEnd().call$1(_s12_); } $.$get$Performance_time().call$1(_s12_0); t2 = _this._chart_container$_chart; t2.toString; prev = config.oldChartWidget; t3 = A._lateReadCheck(_this.__ChartContainerRenderObject__chartState, _s11_); t1.toString; t1.super$BaseChart$updateCommonChart(t2, prev, t3); t4 = t1.domainAxis; t5 = !t4.$eq(0, prev == null ? null : prev.domainAxis); if (t5) { if (!J.$eq$(t2._domainAxisSpec, t4)) { t2._newDomainAxis = t2.createDomainAxisFromSpec$1(t4); t2._newDomainAxisSpec = t4; } t3._configurationChanged = true; } t4 = t1.primaryMeasureAxis; if (!t4.$eq(0, prev == null ? null : prev.primaryMeasureAxis)) { t2._newPrimaryMeasureAxisSpec = t4; t3._configurationChanged = true; } _this._rtlSpec = config.rtlSpec; _this._chartContainerIsRtl = config.rtl; $.$get$Performance_timeEnd().call$1(_s12_0); if (A._lateReadCheck(_this.__ChartContainerRenderObject__chartState, _s11_)._configurationChanged) _this._chart_container$_chart.configurationChanged$0(); t2 = _this._seriesList; t1 = t1.seriesList; if ((t2 == null ? t1 != null : t2 !== t1) || A._lateReadCheck(_this.__ChartContainerRenderObject__chartState, _s11_)._configurationChanged) { A._lateReadCheck(_this.__ChartContainerRenderObject__chartState, _s11_)._configurationChanged = false; _this._seriesList = t1; _this._a11yNodes = null; $.$get$Performance_time().call$1(_s10_); t1 = _this._chart_container$_chart; t1.toString; t2 = _this._seriesList; t2.toString; t1.draw$1(t2); $.$get$Performance_timeEnd().call$1(_s10_); _this._chart_container$_chart.animationPercent = 0; _this.markNeedsLayout$0(); } else { _this._chart_container$_chart.animationPercent = config.animationValue; _this.markNeedsPaint$0(); } _this._updateUserManagedState$1(config.userManagedState); t1 = type$.nullable_ChartContainerCustomPaint._as(_this._painter); t2 = _this._chart_container$_chart; t2.toString; t3 = A._setArrayType([], type$.JSArray_A11yNode); _this.set$painter(A.ChartContainerCustomPaint_ChartContainerCustomPaint(t3, t2, false, t1, _this._chartContainerIsRtl ? B.TextDirection_0 : B.TextDirection_1)); }, _updateUserManagedState$1(newState) { return; }, performLayout$0() { var t1, t2, t3, t4, _this = this, _s12_ = "chartsLayout"; $.$get$Performance_time().call$1(_s12_); t1 = _this._chart_container$_chart; t1.toString; t2 = type$.BoxConstraints; t3 = J.toInt$0$n(t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth); t4 = J.toInt$0$n(t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight); if (t1._rendererToSeriesList != null) t1._layoutManager.measure$2(0, t3, t4); t1 = _this._chart_container$_chart; t1.toString; t1.layout$2(0, J.toInt$0$n(t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth), J.toInt$0$n(t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); $.$get$Performance_timeEnd().call$1(_s12_); t2 = t2._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(1 / 0, t2.minWidth, t2.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t2.minHeight, t2.maxHeight)); }, markNeedsLayout$0() { this.super$RenderBox$markNeedsLayout(); if (this._node$_parent != null) this.markParentNeedsLayout$0(); }, hitTestSelf$1(position) { return true; }, requestAnimation$1(transition) { var t1 = $.SchedulerBinding__instance; if (!t1.SchedulerBinding__hasScheduledFrame) t1.scheduleFrame$0(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ChartContainerRenderObject_requestAnimation_startAnimationController(this, transition)); }, requestRebuild$0() { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ChartContainerRenderObject_requestRebuild_doRebuild(this)); }, get$isRtl() { if (this._chartContainerIsRtl) var t1 = true; else t1 = false; return t1; } }; A.ChartContainerRenderObject_requestAnimation_startAnimationController.prototype = { call$1(_) { var t3, _s20_ = "_animationController", t1 = A._lateReadCheck(this.$this.__ChartContainerRenderObject__chartState, "_chartState"), t2 = this.transition; A._lateReadCheck(t1.__BaseChartState__animationController, _s20_).duration = t2; t3 = A._lateReadCheck(t1.__BaseChartState__animationController, _s20_); t3.forward$1$from(0, t2._duration === 0 ? 1 : 0); t1._animationValue = A._lateReadCheck(A._lateReadCheck(t1.__BaseChartState__animationController, _s20_).__AnimationController__value, "_value"); }, $signature: 83 }; A.ChartContainerRenderObject_requestRebuild_doRebuild.prototype = { call$1(_) { A._lateReadCheck(this.$this.__ChartContainerRenderObject__chartState, "_chartState").requestRebuild$0(); }, $signature: 83 }; A.ChartContainerCustomPaint.prototype = { paint$2(canvas, size) { var t1, _s11_ = "chartsPaint"; $.$get$Performance_time().call$1(_s11_); t1 = this.chart; t1.graphicsFactory.toString; t1.paint$1(new A.ChartCanvas(canvas, $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()))); $.$get$Performance_timeEnd().call$1(_s11_); }, shouldRepaint$1(oldPainter) { return false; }, shouldRebuildSemantics$1(oldDelegate) { var t1 = this.a11yNodes !== oldDelegate.a11yNodes || false; return t1; }, get$semanticsBuilder() { return this.get$_buildSemantics(); }, _buildSemantics$1(size) { var t1, t2, _i, node, t3, t4, t5, t6, _null = null, nodes = A._setArrayType([], type$.JSArray_CustomPainterSemantics); for (t1 = this.a11yNodes, t2 = this.textDirection, _i = 0; false; ++_i) { node = t1[_i]; t3 = node.get$boundingBox(node); t3 = t3.get$left(t3).toDouble$0(0); t4 = node.get$boundingBox(node); t4 = t4.get$top(t4).toDouble$0(0); t5 = node.get$boundingBox(node); t5 = t5.get$width(t5).toDouble$0(0); t6 = node.get$boundingBox(node); t6 = t6.get$height(t6).toDouble$0(0); nodes.push(new A.CustomPainterSemantics(new A.Rect(t3, t4, t3.$add(0, t5), t4.$add(0, t6)), new A.SemanticsProperties(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, node.get$label(node), _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, node.get$onFocus(node), _null, _null, _null))); } return nodes; } }; A.ChartGestureDetector.prototype = { get$_containerResolver() { return A._lateReadCheck(this.__ChartGestureDetector__containerResolver, "_containerResolver"); }, makeWidget$3(context, chartContainer, desiredGestures) { var t1, wantTap, wantDrag, t2, t3, t4, _this = this, _null = null; _this.__ChartGestureDetector__containerResolver = new A.ChartGestureDetector_makeWidget_closure(context); t1 = desiredGestures._collection$_length; wantTap = desiredGestures.contains$1(0, B.GestureType_1); wantDrag = desiredGestures.contains$1(0, B.GestureType_3); _this._listeningForLongPress = desiredGestures.contains$1(0, B.GestureType_0); t1 = t1 !== 0 ? _this.get$onTapDown() : _null; t2 = wantTap ? _this.get$onTapUp() : _null; t3 = wantDrag ? _this.get$onScaleStart() : _null; t4 = wantDrag ? _this.get$onScaleUpdate() : _null; return A.GestureDetector$(_null, chartContainer, B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, wantDrag ? _this.get$onScaleEnd() : _null, t3, t4, _null, _null, t1, t2, _null, _null, _null); }, onTapDown$1(d) { var t2, _this = this, container = _this._containerResolver$0(), localPosition = container.globalToLocal$1(d.globalPosition), t1 = new A.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; t2 = container._chart_container$_chart._gestureProxy; B.JSArray_methods.set$length(t2._activeListeners, 0); t2._populateActiveListeners$1(t1); if (_this._listeningForLongPress) _this._longPressTimer = A.Timer_Timer(B.Duration_500000, new A.ChartGestureDetector_onTapDown_closure(_this)); }, onTapUp$1(d) { var container, localPosition, t1 = this._longPressTimer; if (t1 != null) t1.cancel$0(0); container = this._containerResolver$0(); localPosition = container.globalToLocal$1(d.globalPosition); t1 = new A.Point(localPosition._dx, localPosition._dy, type$.Point_double); this._lastTapPoint = t1; container._chart_container$_chart._gestureProxy.onTap$1(t1); }, onScaleStart$1(d) { var container, localPosition, _this = this, t1 = _this._longPressTimer; if (t1 != null) t1.cancel$0(0); container = _this._containerResolver$0(); localPosition = container.globalToLocal$1(d.focalPoint); t1 = new A.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; _this._isDragging = container._chart_container$_chart._gestureProxy.onDragStart$1(0, t1); }, onScaleUpdate$1(d) { var container, localPosition, t1, t2, _this = this; if (!_this._isDragging) return; container = _this._containerResolver$0(); localPosition = container.globalToLocal$1(d.focalPoint); t1 = new A.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; t2 = d.scale; _this._lastScale = t2; container._chart_container$_chart._gestureProxy.onDragUpdate$2(t1, t2); }, onScaleEnd$1(d) { var t1, t2, t3, _this = this; if (!_this._isDragging) return; t1 = _this._containerResolver$0()._chart_container$_chart._gestureProxy; t2 = _this._lastTapPoint; t2.toString; t3 = _this._lastScale; t3.toString; t1.onDragEnd$3(0, t2, t3, d.velocity.pixelsPerSecond._dx); }, _containerResolver$0() { return this.get$_containerResolver().call$0(); } }; A.ChartGestureDetector_makeWidget_closure.prototype = { call$0() { var t1 = this.context.get$renderObject(); t1.toString; return A.getChartContainerRenderObject(type$.RenderBox._as(t1)); }, $signature: 2803 }; A.ChartGestureDetector_onTapDown_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._containerResolver$0()._chart_container$_chart._gestureProxy, t3 = t1._lastTapPoint; t3.toString; t2.onLongPress$1(t3); t1._longPressTimer = null; }, $signature: 0 }; A.GraphicsFactory.prototype = { createTextPaint$0() { var t1 = new A.TextStyle0(); t1.fontFamily = this.defaultTextStyle.style.fontFamily; return t1; }, createTextElement$1(text) { var t1 = new A.TextElement0(text, this.textScaleFactor, B.TextDirection_00); t1.set$textStyle(0, this.createTextPaint$0()); return t1; } }; A.LineStyle.prototype = {}; A.SelectionModelConfig.prototype = {}; A.SymbolRendererCanvas.prototype = {}; A._SymbolCustomPaint.prototype = { paint$2(canvas, size) { var commonColor, _this = this, bounds = A.Rectangle$(0, 0, J.toInt$0$n(size._dx), J.toInt$0$n(size._dy), type$.num), t1 = _this.color; if (t1 == null) commonColor = null; else { t1 = t1.value; commonColor = new A.Color0(t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255, t1 >>> 24 & 255, null, null); } t1 = _this.context; A.MediaQuery_textScaleFactorOf(t1); t1.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); _this.symbolRenderer.paint$5$dashPattern$fillColor$strokeColor(new A.ChartCanvas(canvas, t1), bounds, _this.dashPattern, commonColor, commonColor); }, shouldRepaint$1(oldDelegate) { return this.symbolRenderer.shouldRepaint$1(oldDelegate.symbolRenderer); } }; A.TextElement0.prototype = { set$textStyle(_, value) { if (J.$eq$(this._text_element$_textStyle, value)) return; this._text_element$_textStyle = value; this._painterReady = false; }, set$textDirection(_, direction) { if (this._text_element$_textDirection === direction) return; this._text_element$_textDirection = direction; this._painterReady = false; }, set$maxWidth(_, value) { if (this._text_element$_maxWidth == value) return; this._text_element$_maxWidth = value; this._painterReady = false; }, set$maxWidthStrategy(maxWidthStrategy) { if (this._maxWidthStrategy == maxWidthStrategy) return; this._maxWidthStrategy = maxWidthStrategy; this._painterReady = false; }, get$measurement() { if (!this._painterReady) this._refreshPainter$0(); return A._lateReadCheck(this.__TextElement__measurement, "_measurement"); }, _refreshPainter$0() { var t2, t3, color, t4, _this = this, _null = null, _s12_ = "_textPainter", t1 = _this._text_element$_opacity; if (t1 == null) t1 = _this._text_element$_opacity = 1; t2 = _this._text_element$_textStyle; t3 = t2 == null; if (t3 || t2.color == null) color = _null; else { t4 = t2.color; color = A.Color$fromARGB(B.JSNumber_methods.round$0(t4.a * t1), t4.r, t4.g, t4.b); } if (t3) t1 = _null; else { t1 = t2.fontSize; if (t1 == null) t1 = _null; } t4 = t3 ? _null : t2.fontFamily; t1 = A.TextPainter$(_null, _null, _null, _null, A.TextSpan$(_null, _null, A.TextStyle$(_null, _null, color, _null, _null, _null, _null, _null, t4, _null, _null, t1, _null, _null, _null, t3 ? _null : t2.lineHeight, true, _null, _null, _null, _null, _null, _null, _null, _null), _this.text), B.TextAlign_4, _null, _null, 1, B.TextWidthBasis_0); t1.set$textDirection(0, B.TextDirection_1); t1.set$textAlign(0, B.TextAlign_0); t1.set$ellipsis(0, _this._maxWidthStrategy === B.MaxWidthStrategy_1 ? "\u2026" : _null); _this.__TextElement__textPainter = t1; t1 = A._lateReadCheck(t1, _s12_); t1.set$textScaleFactor(_this.textScaleFactor); t1 = A._lateReadCheck(_this.__TextElement__textPainter, _s12_); t2 = _this._text_element$_maxWidth; if (t2 == null) t2 = _null; t1.layout$1$maxWidth(0, t2 == null ? 1 / 0 : t2); A._lateReadCheck(_this.__TextElement__textPainter, _s12_).computeDistanceToActualBaseline$1(B.TextBaseline_0); t1 = A._lateReadCheck(_this.__TextElement__textPainter, _s12_); t1 = t1.get$width(t1); t2 = A._lateReadCheck(_this.__TextElement__textPainter, _s12_)._paragraph; t2 = t2.get$height(t2); t2.toString; _this.__TextElement__measurement = new A.TextMeasurement(t1, Math.ceil(t2) * 0.7); _this._painterReady = true; }, $isTextElement2: 1 }; A.TextStyle0.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.TextStyle0 && _this.fontSize == other.fontSize && _this.fontFamily == other.fontFamily && _this.fontWeight == other.fontWeight && J.$eq$(_this.color, other.color) && true; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.fontSize, _this.fontFamily, _this.color, _this.lineHeight, _this.fontWeight, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); } }; A.TimeSeriesChart0.prototype = { createCommonChart$1(chartState) { var t5, t6, t7, t8, t9, t10, t11, t12, _null = null, t1 = A.NumericAxis$(), t2 = this.createDisjointMeasureAxes$0(), t3 = A.DateTimeAxis$(B.C_LocalDateTimeFactory), t4 = A.NumericAxis$(); if (t2 == null) t2 = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.String, type$.NumericAxis); t5 = $.$get$CartesianChart__defaultLayoutConfig(); t6 = type$.String; t7 = type$.ChartBehavior_DateTime; t8 = A._setArrayType([], type$.JSArray_ChartBehavior_DateTime); t9 = type$.JSArray_GestureListener; t10 = A._setArrayType([], t9); t9 = A._setArrayType([], t9); t11 = A._setArrayType([], type$.JSArray_LifecycleListener_DateTime); t12 = A._setArrayType([], type$.JSArray_LayoutView); return new A.TimeSeriesChart(B.C_LocalDateTimeFactory, true, t3, t1, t4, t2, new A.LayoutManagerImpl(t5 == null ? A.LayoutConfig$(_null, _null, _null, _null) : t5, t12), B.Duration_300000, A.LinkedHashSet_LinkedHashSet$_empty(t6), A.LinkedHashMap_LinkedHashMap$_empty(t6, type$.SeriesRenderer_DateTime), A.LinkedHashMap_LinkedHashMap$_empty(t6, t7), t8, A.LinkedHashMap_LinkedHashMap$_empty(t6, t7), new A.ProxyGestureListener(t10, t9), A.LinkedHashMap_LinkedHashMap$_empty(type$.SelectionModelType, type$.MutableSelectionModel_DateTime), t11); }, addDefaultInteractions$1(behaviors) { this.super$BaseChart$addDefaultInteractions(behaviors); behaviors.push(new A.LinePointHighlighter(A.LinkedHashSet_LinkedHashSet(type$.GestureType), type$.LinePointHighlighter_DateTime)); } }; A.getChartContainerRenderObject_closure.prototype = { call$1(child) { return child instanceof A.RenderSemanticsGestureHandler; }, $signature: 805 }; A.WidgetLayoutDelegate.prototype = { performLayout$1(size) { var behaviorID, leftPosition, rightPosition, behaviorPosition, behaviorSize, chartOffset, isRTL, behaviorOffset, outsideJustification, heightOffset, mappedJustification, widthOffset, rightOffset, _this = this, _s80_ = string$.x60null_c, availableWidth = size._dx, availableHeight = size._dy, t1 = _this.idAndBehavior, t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"), t3 = new A.LinkedHashMapKeyIterable(t1, t2); if (!t3.get$isEmpty(t3)) { t2 = new A.LinkedHashMapKeyIterable(t1, t2); behaviorID = t2.get$first(t2); } else behaviorID = null; t2 = behaviorID != null; if (t2) if (_this._idToChild.$index(0, behaviorID) != null) { t3 = _this.isRTL; leftPosition = t3 ? B.BehaviorPosition_3 : B.BehaviorPosition_2; rightPosition = t3 ? B.BehaviorPosition_2 : B.BehaviorPosition_3; behaviorPosition = t1.$index(0, behaviorID).config.position; behaviorSize = _this.layoutChild$2(behaviorID, A.BoxConstraints$loose(size)); if (behaviorPosition === B.BehaviorPosition_0) { t3 = behaviorSize._dy; chartOffset = new A.Offset(0, t3); availableHeight -= t3; } else if (behaviorPosition === B.BehaviorPosition_1) { availableHeight -= behaviorSize._dy; chartOffset = B.Offset_0_0; } else if (behaviorPosition === leftPosition) { t3 = behaviorSize._dx; chartOffset = new A.Offset(t3, 0); availableWidth -= t3; } else { if (behaviorPosition === rightPosition) availableWidth -= behaviorSize._dx; chartOffset = B.Offset_0_0; } } else { chartOffset = B.Offset_0_0; behaviorSize = B.Size_0_0; } else { chartOffset = B.Offset_0_0; behaviorSize = B.Size_0_0; } t3 = _this.chartID; if (_this._idToChild.$index(0, t3) != null) { _this.layoutChild$2(t3, A.BoxConstraints$tight(new A.Size(availableWidth, availableHeight))); _this.positionChild$2(t3, chartOffset); } if (t2) { t1 = t1.$index(0, behaviorID); t1.toString; isRTL = _this.isRTL; behaviorOffset = A._Cell$named("behaviorOffset"); t2 = t1.config; behaviorPosition = t2.position; outsideJustification = t2.outsideJustification; if (behaviorPosition === B.BehaviorPosition_0 || behaviorPosition === B.BehaviorPosition_1) { heightOffset = behaviorPosition === B.BehaviorPosition_1 ? availableHeight : 0; switch (outsideJustification.index) { case 0: case 2: mappedJustification = isRTL ? B._HorizontalJustification_2 : B._HorizontalJustification_0; break; case 1: case 3: mappedJustification = isRTL ? B._HorizontalJustification_3 : B._HorizontalJustification_1; break; case 4: mappedJustification = isRTL ? B._HorizontalJustification_0 : B._HorizontalJustification_2; break; case 5: mappedJustification = isRTL ? B._HorizontalJustification_1 : B._HorizontalJustification_3; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); mappedJustification = null; } switch (mappedJustification) { case B._HorizontalJustification_0: t1 = t1._legend$_drawAreaBounds.left; t1.toString; behaviorOffset.__late_helper$_value = new A.Offset(t1, heightOffset); break; case B._HorizontalJustification_1: behaviorOffset.__late_helper$_value = new A.Offset(0, heightOffset); break; case B._HorizontalJustification_2: t1 = t1._legend$_drawAreaBounds; behaviorOffset.__late_helper$_value = new A.Offset(A._instanceType(t1)._precomputed1._as(t1.left + t1.width) - behaviorSize._dx, heightOffset); break; case B._HorizontalJustification_3: behaviorOffset.__late_helper$_value = new A.Offset(availableWidth - behaviorSize._dx, heightOffset); break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } } else { t3 = behaviorPosition === B.BehaviorPosition_2; if (t3 || behaviorPosition === B.BehaviorPosition_3) { if (!(isRTL && t3)) t2 = !isRTL && behaviorPosition === B.BehaviorPosition_3; else t2 = true; widthOffset = t2 ? availableWidth : 0; switch (outsideJustification.index) { case 0: case 2: t1 = t1._legend$_drawAreaBounds.top; t1.toString; behaviorOffset.__late_helper$_value = new A.Offset(widthOffset, t1); break; case 1: case 3: behaviorOffset.__late_helper$_value = new A.Offset(widthOffset, 0); break; case 4: t1 = t1._legend$_drawAreaBounds; behaviorOffset.__late_helper$_value = new A.Offset(widthOffset, A._instanceType(t1)._precomputed1._as(t1.top + t1.height) - behaviorSize._dy); break; case 5: behaviorOffset.__late_helper$_value = new A.Offset(widthOffset, availableHeight - behaviorSize._dy); break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } } else if (behaviorPosition === B.BehaviorPosition_4) { rightOffset = new A.Offset(availableWidth - behaviorSize._dx, 0); switch (t2.insideJustification.index) { case 0: behaviorOffset.__late_helper$_value = isRTL ? rightOffset : B.Offset_0_0; break; case 1: behaviorOffset.__late_helper$_value = isRTL ? B.Offset_0_0 : rightOffset; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } } } _this.positionChild$2(behaviorID, behaviorOffset._readLocal$0()); } }, shouldRelayout$1(oldDelegate) { return this.idAndBehavior !== type$.WidgetLayoutDelegate._as(oldDelegate).idAndBehavior; } }; A._HorizontalJustification.prototype = { toString$0(_) { return "_HorizontalJustification." + this._core$_name; } }; A.Clock.prototype = {}; A.CanonicalizedMap.prototype = { $index(_, key) { var pair, _this = this; if (!_this._isValidKey$1(key)) return null; pair = _this._base.$index(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); return pair == null ? null : pair.get$value(pair); }, $indexSet(_, key, value) { var t1, _this = this; if (!_this._isValidKey$1(key)) return; t1 = _this.$ti; _this._base.$indexSet(0, _this._canonicalize.call$1(key), new A.MapEntry(key, value, t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>"))); }, addAll$1(_, other) { other.forEach$1(0, new A.CanonicalizedMap_addAll_closure(this)); }, cast$2$0(_, K2, V2) { var t1 = this._base; return t1.cast$2$0(t1, K2, V2); }, containsKey$1(_, key) { var _this = this; if (!_this._isValidKey$1(key)) return false; return _this._base.containsKey$1(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); }, get$entries(_) { var t1 = this._base; return t1.get$entries(t1).map$1$1(0, new A.CanonicalizedMap_entries_closure(this), this.$ti._eval$1("MapEntry")); }, forEach$1(_, f) { this._base.forEach$1(0, new A.CanonicalizedMap_forEach_closure(this, f)); }, get$isEmpty(_) { return this._base._length === 0; }, get$isNotEmpty(_) { return this._base._length !== 0; }, get$keys(_) { var t1 = this._base; t1 = t1.get$values(t1); return A.MappedIterable_MappedIterable(t1, new A.CanonicalizedMap_keys_closure(this), A._instanceType(t1)._eval$1("Iterable.E"), this.$ti._eval$1("CanonicalizedMap.K")); }, get$length(_) { return this._base._length; }, map$2$1(_, transform, K2, V2) { var t1 = this._base; return t1.map$2$1(t1, new A.CanonicalizedMap_map_closure(this, transform, K2, V2), K2, V2); }, map$1($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, putIfAbsent$2(_, key, ifAbsent) { return J.get$value$x(this._base.putIfAbsent$2(0, this._canonicalize.call$1(key), new A.CanonicalizedMap_putIfAbsent_closure(this, key, ifAbsent))); }, remove$1(_, key) { var pair, _this = this; if (!_this._isValidKey$1(key)) return null; pair = _this._base.remove$1(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); return pair == null ? null : pair.get$value(pair); }, get$values(_) { var t1 = this._base; t1 = t1.get$values(t1); return A.MappedIterable_MappedIterable(t1, new A.CanonicalizedMap_values_closure(this), A._instanceType(t1)._eval$1("Iterable.E"), this.$ti._eval$1("CanonicalizedMap.V")); }, toString$0(_) { return A.MapBase_mapToString(this); }, _isValidKey$1(key) { var t1; if (this.$ti._eval$1("CanonicalizedMap.K")._is(key)) t1 = true; else t1 = false; return t1; }, $isMap: 1 }; A.CanonicalizedMap_addAll_closure.prototype = { call$2(key, value) { this.$this.$indexSet(0, key, value); return value; }, $signature() { return this.$this.$ti._eval$1("~(CanonicalizedMap.K,CanonicalizedMap.V)"); } }; A.CanonicalizedMap_entries_closure.prototype = { call$1(e) { var t1 = this.$this.$ti; return new A.MapEntry(J.get$key$x(e.get$value(e)), J.get$value$x(e.get$value(e)), t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>")); }, $signature() { return this.$this.$ti._eval$1("MapEntry(MapEntry>)"); } }; A.CanonicalizedMap_forEach_closure.prototype = { call$2(key, pair) { return this.f.call$2(pair.get$key(pair), pair.get$value(pair)); }, $signature() { return this.$this.$ti._eval$1("~(CanonicalizedMap.C,MapEntry)"); } }; A.CanonicalizedMap_keys_closure.prototype = { call$1(pair) { return pair.get$key(pair); }, $signature() { return this.$this.$ti._eval$1("CanonicalizedMap.K(MapEntry)"); } }; A.CanonicalizedMap_map_closure.prototype = { call$2(_, pair) { return this.transform.call$2(pair.get$key(pair), pair.get$value(pair)); }, $signature() { return this.$this.$ti._bind$1(this.K2)._bind$1(this.V2)._eval$1("MapEntry<1,2>(CanonicalizedMap.C,MapEntry)"); } }; A.CanonicalizedMap_putIfAbsent_closure.prototype = { call$0() { var t1 = this.$this.$ti; return new A.MapEntry(this.key, this.ifAbsent.call$0(), t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>")); }, $signature() { return this.$this.$ti._eval$1("MapEntry()"); } }; A.CanonicalizedMap_values_closure.prototype = { call$1(pair) { return pair.get$value(pair); }, $signature() { return this.$this.$ti._eval$1("CanonicalizedMap.V(MapEntry)"); } }; A.DefaultEquality.prototype = { equals$2(e1, e2) { return J.$eq$(e1, e2); }, hash$1(_, e) { return J.get$hashCode$(e); } }; A.IterableEquality.prototype = { equals$2(elements1, elements2) { var it1, it2, t1, hasNext; if (elements1 === elements2) return true; it1 = J.get$iterator$ax(elements1); it2 = J.get$iterator$ax(elements2); for (t1 = this._elementEquality; true;) { hasNext = it1.moveNext$0(); if (hasNext !== it2.moveNext$0()) return false; if (!hasNext) return true; if (!t1.equals$2(it1.get$current(it1), it2.get$current(it2))) return false; } }, hash$1(_, elements) { var t1, t2, hash; for (t1 = J.get$iterator$ax(elements), t2 = this._elementEquality, hash = 0; t1.moveNext$0();) { hash = hash + t2.hash$1(0, t1.get$current(t1)) & 2147483647; hash = hash + (hash << 10 >>> 0) & 2147483647; hash ^= hash >>> 6; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; A.ListEquality.prototype = { equals$2(list1, list2) { var t1, $length, t2, t3, i; if (list1 == null ? list2 == null : list1 === list2) return true; if (list1 == null || list2 == null) return false; t1 = J.getInterceptor$asx(list1); $length = t1.get$length(list1); t2 = J.getInterceptor$asx(list2); if ($length != t2.get$length(list2)) return false; for (t3 = this._elementEquality, i = 0; i < $length; ++i) if (!t3.equals$2(t1.$index(list1, i), t2.$index(list2, i))) return false; return true; }, hash$1(_, list) { var t1, t2, hash, i; for (t1 = J.getInterceptor$asx(list), t2 = this._elementEquality, hash = 0, i = 0; i < t1.get$length(list); ++i) { hash = hash + t2.hash$1(0, t1.$index(list, i)) & 2147483647; hash = hash + (hash << 10 >>> 0) & 2147483647; hash ^= hash >>> 6; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; A._UnorderedEquality.prototype = { equals$2(elements1, elements2) { var t1, counts, $length, e, count; if (elements1 === elements2) return true; t1 = this._elementEquality; counts = A.HashMap_HashMap(t1.get$equals(), t1.get$hash(t1), t1.get$isValidKey(), A._instanceType(this)._eval$1("_UnorderedEquality.E"), type$.int); for (t1 = J.get$iterator$ax(elements1), $length = 0; t1.moveNext$0();) { e = t1.get$current(t1); count = counts.$index(0, e); counts.$indexSet(0, e, (count == null ? 0 : count) + 1); ++$length; } for (t1 = J.get$iterator$ax(elements2); t1.moveNext$0();) { e = t1.get$current(t1); count = counts.$index(0, e); if (count == null || count === 0) return false; counts.$indexSet(0, e, count - 1); --$length; } return $length === 0; }, hash$1(_, elements) { var t1, t2, hash; for (t1 = J.get$iterator$ax(elements), t2 = this._elementEquality, hash = 0; t1.moveNext$0();) hash = hash + t2.hash$1(0, t1.get$current(t1)) & 2147483647; hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; A.UnorderedIterableEquality.prototype = {}; A.SetEquality.prototype = {}; A._MapEntry.prototype = { get$hashCode(_) { var t1 = this.equality; return 3 * t1._keyEquality.hash$1(0, this.key) + 7 * t1._valueEquality.hash$1(0, this.value) & 2147483647; }, $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A._MapEntry) { t1 = this.equality; t1 = t1._keyEquality.equals$2(this.key, other.key) && t1._valueEquality.equals$2(this.value, other.value); } else t1 = false; return t1; }, get$value(receiver) { return this.value; } }; A.MapEquality.prototype = { equals$2(map1, map2) { var t1, t2, equalElementCounts, t3, key, entry, count; if (map1 === map2) return true; t1 = J.getInterceptor$asx(map1); t2 = J.getInterceptor$asx(map2); if (t1.get$length(map1) != t2.get$length(map2)) return false; equalElementCounts = A.HashMap_HashMap(null, null, null, type$._MapEntry, type$.int); for (t3 = J.get$iterator$ax(t1.get$keys(map1)); t3.moveNext$0();) { key = t3.get$current(t3); entry = new A._MapEntry(this, key, t1.$index(map1, key)); count = equalElementCounts.$index(0, entry); equalElementCounts.$indexSet(0, entry, (count == null ? 0 : count) + 1); } for (t1 = J.get$iterator$ax(t2.get$keys(map2)); t1.moveNext$0();) { key = t1.get$current(t1); entry = new A._MapEntry(this, key, t2.$index(map2, key)); count = equalElementCounts.$index(0, entry); if (count == null || count === 0) return false; equalElementCounts.$indexSet(0, entry, count - 1); } return true; }, hash$1(_, map) { var t1, t2, t3, t4, hash, key; for (t1 = J.getInterceptor$x(map), t2 = J.get$iterator$ax(t1.get$keys(map)), t3 = this._keyEquality, t4 = this._valueEquality, hash = 0; t2.moveNext$0();) { key = t2.get$current(t2); hash = hash + 3 * t3.hash$1(0, key) + 7 * t4.hash$1(0, t1.$index(map, key)) & 2147483647; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; A.DeepCollectionEquality.prototype = { equals$2(e1, e2) { var t2, _this = this, t1 = type$.Set_dynamic; if (t1._is(e1)) return t1._is(e2) && new A.SetEquality(_this, type$.SetEquality_dynamic).equals$2(e1, e2); t1 = type$.Map_dynamic_dynamic; if (t1._is(e1)) return t1._is(e2) && new A.MapEquality(_this, _this, type$.MapEquality_dynamic_dynamic).equals$2(e1, e2); if (!_this._unordered) { t1 = type$.List_dynamic; if (t1._is(e1)) return t1._is(e2) && new A.ListEquality(_this, type$.ListEquality_dynamic).equals$2(e1, e2); t1 = type$.Iterable_dynamic; if (t1._is(e1)) return t1._is(e2) && new A.IterableEquality(_this, type$.IterableEquality_dynamic).equals$2(e1, e2); } else { t1 = type$.Iterable_dynamic; if (t1._is(e1)) { t2 = type$.List_dynamic; if (t2._is(e1) !== t2._is(e2)) return false; return t1._is(e2) && new A.UnorderedIterableEquality(_this, type$.UnorderedIterableEquality_dynamic).equals$2(e1, e2); } } return J.$eq$(e1, e2); }, hash$1(_, o) { var _this = this; if (type$.Set_dynamic._is(o)) return new A.SetEquality(_this, type$.SetEquality_dynamic).hash$1(0, o); if (type$.Map_dynamic_dynamic._is(o)) return new A.MapEquality(_this, _this, type$.MapEquality_dynamic_dynamic).hash$1(0, o); if (!_this._unordered) { if (type$.List_dynamic._is(o)) return new A.ListEquality(_this, type$.ListEquality_dynamic).hash$1(0, o); if (type$.Iterable_dynamic._is(o)) return new A.IterableEquality(_this, type$.IterableEquality_dynamic).hash$1(0, o); } else if (type$.Iterable_dynamic._is(o)) return new A.UnorderedIterableEquality(_this, type$.UnorderedIterableEquality_dynamic).hash$1(0, o); return J.get$hashCode$(o); }, isValidKey$1(o) { !type$.Iterable_dynamic._is(o); return true; } }; A.HeapPriorityQueue.prototype = { _elementAt$1(index) { var t1 = this._priority_queue$_queue[index]; return t1 == null ? null : t1; }, add$1(_, element) { var t1, t2, newCapacity, newQueue, _this = this; ++_this._priority_queue$_modificationCount; t1 = _this._priority_queue$_length; t2 = _this._priority_queue$_queue.length; if (t1 === t2) { newCapacity = t2 * 2 + 1; if (newCapacity < 7) newCapacity = 7; newQueue = A.List_List$filled(newCapacity, null, false, _this.$ti._eval$1("1?")); B.JSArray_methods.setRange$3(newQueue, 0, _this._priority_queue$_length, _this._priority_queue$_queue); _this._priority_queue$_queue = newQueue; } _this._bubbleUp$2(element, _this._priority_queue$_length++); }, get$first(_) { if (this._priority_queue$_length === 0) throw A.wrapException(A.StateError$("No element")); return this._elementAt$1(0); }, get$isEmpty(_) { return this._priority_queue$_length === 0; }, get$length(_) { return this._priority_queue$_length; }, toString$0(_) { var t1 = this._priority_queue$_queue; return A.IterableBase_iterableToShortString(A.SubListIterable$(t1, 0, A.checkNotNullable(this._priority_queue$_length, "count", type$.int), A._arrayInstanceType(t1)._precomputed1), "(", ")"); }, _bubbleUp$2(element, index) { var t1, parentIndex, $parent, _this = this; for (t1 = _this.comparison; index > 0; index = parentIndex) { parentIndex = B.JSInt_methods._tdivFast$1(index - 1, 2); $parent = _this._priority_queue$_queue[parentIndex]; if ($parent == null) $parent = null; if (t1.call$2(element, $parent) > 0) break; B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, $parent); } B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, element); }, _bubbleDown$2(element, index) { var t1, t2, leftChildIndex, leftChild, rightChild, minChild, minChildIndex, child, _this = this, rightChildIndex = index * 2 + 2; for (t1 = _this.comparison; t2 = _this._priority_queue$_length, rightChildIndex < t2; index = minChildIndex) { leftChildIndex = rightChildIndex - 1; t2 = _this._priority_queue$_queue; leftChild = t2[leftChildIndex]; if (leftChild == null) leftChild = null; rightChild = t2[rightChildIndex]; if (rightChild == null) rightChild = null; if (t1.call$2(leftChild, rightChild) < 0) { minChild = leftChild; minChildIndex = leftChildIndex; } else { minChild = rightChild; minChildIndex = rightChildIndex; } if (t1.call$2(element, minChild) <= 0) { B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, element); return; } B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, minChild); rightChildIndex = minChildIndex * 2 + 2; } leftChildIndex = rightChildIndex - 1; if (leftChildIndex < t2) { child = _this._elementAt$1(leftChildIndex); if (t1.call$2(element, child) > 0) { B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, child); index = leftChildIndex; } } B.JSArray_methods.$indexSet(_this._priority_queue$_queue, index, element); } }; A.XFileBase.prototype = { get$name(_) { throw A.wrapException(A.UnimplementedError$(".name has not been implemented.")); }, length$0(_) { throw A.wrapException(A.UnimplementedError$(".length() has not been implemented.")); } }; A.XFile.prototype = { get$name(_) { return this._html1$_name; }, get$_blob() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Blob), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, request, e, exception, t1, $async$exception, $async$temp1; var $async$get$_blob = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserBlob; if (t1 != null) { $async$returnValue = t1; // goto return $async$goto = 1; break; } if (window.navigator.vendor === "Apple Computer, Inc.") { t1 = $async$self._html1$_length; t1 = t1 != null && t1 >= 4294967296; } else t1 = false; if (t1) throw A.wrapException(A.Exception_Exception("Safari cannot handle XFiles larger than 4GB.")); request = A._Cell$named("request"); $async$handler = 4; $async$temp1 = request; $async$goto = 7; return A._asyncAwait(A.HttpRequest_request(A._lateReadCheck($async$self.__XFile__path, "_path"), "blob"), $async$get$_blob); case 7: // returning from await. $async$temp1.__late_helper$_value = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (type$.ProgressEvent._is(t1)) { e = t1; if (e.type === "error") throw A.wrapException(A.Exception_Exception("Could not load Blob from its URL. Has it been revoked?")); throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = A._convertNativeToDart_XHR_Response(request._readLocal$0().response); $async$self._browserBlob = t1; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$get$_blob, $async$completer); }, length$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.int), $async$returnValue, $async$self = this, t1; var $async$length$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._html1$_length; $async$goto = t1 == null ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait($async$self.get$_blob(), $async$length$0); case 6: // returning from await. $async$result = $async$result.size; // goto join $async$goto = 4; break; case 5: // else $async$result = t1; case 4: // join $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$length$0, $async$completer); } }; A._Parser.prototype = { _parser0$_next$0() { var _this = this, t1 = A._lateReadCheck(_this.___Parser__peekToken, "_peekToken"); _this._previousToken = t1; _this.___Parser__peekToken = _this.tokenizer.next$1$unicodeRange(0, false); return t1; }, _maybeEat$2$unicodeRange(kind, unicodeRange) { var _this = this, _s10_ = "_peekToken"; if (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind === kind) { _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = _this.tokenizer.next$1$unicodeRange(0, false); return true; } else return false; }, _maybeEat$1(kind) { return this._maybeEat$2$unicodeRange(kind, false); }, _eat$1(kind) { if (!this._maybeEat$2$unicodeRange(kind, false)) this._errorExpected$1(A.TokenKind_kindToString(kind)); }, _errorExpected$1(expected) { var exception, tok = this._parser0$_next$0(), message = null; try { message = "expected " + expected + ", but found " + A.S(tok); } catch (exception) { message = "parsing error expected " + expected; } this._parser0$_error$2(message, tok.span); }, _parser0$_error$2(message, $location) { $.__messages._readField$0().error$2(0, message, $location); }, _makeSpan$1(start) { var t1 = this._previousToken; if (t1 == null || t1.span.compareTo$1(0, start) < 0) return start; return start.expand$1(0, this._previousToken.span); }, processSelectorGroup$0() { var selector, _this = this, selectors = A._setArrayType([], type$.JSArray_Selector), start = A._lateReadCheck(_this.___Parser__peekToken, "_peekToken").span, t1 = _this.tokenizer; t1.inSelector = true; do { selector = _this.processSelector$0(); if (selector != null) selectors.push(selector); } while (_this._maybeEat$1(19)); t1.inSelector = false; if (selectors.length !== 0) return new A.SelectorGroup(selectors, _this._makeSpan$1(start)); return null; }, processSelector$0() { var selectorItem, simpleSequences = A._setArrayType([], type$.JSArray_SimpleSelectorSequence), start = A._lateReadCheck(this.___Parser__peekToken, "_peekToken").span; for (; true;) { selectorItem = this.simpleSelectorSequence$1(simpleSequences.length === 0); if (selectorItem != null) simpleSequences.push(selectorItem); else break; } if (simpleSequences.length === 0) return null; return new A.Selector(simpleSequences, this._makeSpan$1(start)); }, processCompoundSelector$0() { var t1, t2, _i, sequence, $location, t3, msg, selector = this.processSelector$0(); if (selector != null) for (t1 = selector.simpleSelectorSequences, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { sequence = t1[_i]; if (sequence.combinator !== 513) { $location = sequence.span; t3 = $.__messages.__late_helper$_value; if (t3 == null ? $.__messages == null : t3 === $.__messages) A.throwExpression(A.LateError$fieldNI($.__messages.__late_helper$_name)); msg = new A.Message(B.MessageLevel_2, "compound selector can not contain combinator", $location, t3.options.useColors); t3.messages.push(msg); t3.printHandler.call$1(msg); } } return selector; }, simpleSelectorSequence$1(forceCombinatorNone) { var combinatorType, thisOperator, t1, t2, span, simpleSel, _this = this, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 12: _this._eat$1(12); combinatorType = 515; thisOperator = false; break; case 13: _this._eat$1(13); combinatorType = 516; thisOperator = false; break; case 14: _this._eat$1(14); combinatorType = 517; thisOperator = false; break; case 36: _this._eat$1(36); combinatorType = 513; thisOperator = true; break; default: combinatorType = 513; thisOperator = false; } if (combinatorType === 513 && !forceCombinatorNone) { t1 = _this._previousToken; if (t1 != null) { t1 = t1.span; t1 = A.FileLocation$_(t1.file, t1._file$_end); t2 = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; t2 = t1.offset !== A.FileLocation$_(t2.file, t2._file$_start).offset; t1 = t2; } else t1 = false; if (t1) combinatorType = 514; } span = _this._makeSpan$1(start); simpleSel = thisOperator ? new A.ElementSelector(new A.ThisOperator(span), span) : _this.simpleSelector$0(); if (simpleSel == null) t1 = combinatorType === 515 || combinatorType === 516 || combinatorType === 517; else t1 = false; if (t1) simpleSel = new A.ElementSelector(new A.Identifier("", span), span); if (simpleSel != null) return new A.SimpleSelectorSequence(combinatorType, simpleSel, span); return null; }, simpleSelector$0() { var first, element, _this = this, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 15: first = new A.Wildcard(_this._makeSpan$1(_this._parser0$_next$0().span)); break; case 511: first = _this.identifier$0(0); break; default: if (A.TokenKind_isKindIdentifier(A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind)) first = _this.identifier$0(0); else { if (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind === 9) return null; first = null; } break; } if (_this._maybeEat$1(16)) { switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 15: element = new A.Wildcard(_this._makeSpan$1(_this._parser0$_next$0().span)); break; case 511: element = _this.identifier$0(0); break; default: _this._parser0$_error$2("expected element name or universal(*), but found " + A.S(A._lateReadCheck(_this.___Parser__peekToken, _s10_)), A._lateReadCheck(_this.___Parser__peekToken, _s10_).span); element = null; break; } return new A.NamespaceSelector(first, new A.ElementSelector(element, element.span), _this._makeSpan$1(start)); } else if (first != null) return new A.ElementSelector(first, _this._makeSpan$1(start)); else return _this.simpleSelectorTail$0(); }, _anyWhiteSpaceBeforePeekToken$1(kind) { var t2, t1 = this._previousToken; if (t1 != null && t1.kind === kind) { t1 = t1.span; t1 = A.FileLocation$_(t1.file, t1._file$_end); t2 = A._lateReadCheck(this.___Parser__peekToken, "_peekToken").span; return t1.offset !== A.FileLocation$_(t2.file, t2._file$_start).offset; } return false; }, simpleSelectorTail$0() { var _this = this, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 11: _this._eat$1(11); if (_this._anyWhiteSpaceBeforePeekToken$1(11)) { _this._parser0$_error$2("Not a valid ID selector expected #id", _this._makeSpan$1(start)); return null; } return new A.IdSelector(_this.identifier$0(0), _this._makeSpan$1(start)); case 8: _this._eat$1(8); if (_this._anyWhiteSpaceBeforePeekToken$1(8)) { _this._parser0$_error$2("Not a valid class selector expected .className", _this._makeSpan$1(start)); return null; } return new A.ClassSelector(_this.identifier$0(0), _this._makeSpan$1(start)); case 17: return _this.processPseudoSelector$1(start); case 4: return _this.processAttribute$0(); case 62: _this._parser0$_error$2("name must start with a alpha character, but found a number", A._lateReadCheck(_this.___Parser__peekToken, _s10_).span); _this._parser0$_next$0(); break; } return null; }, processPseudoSelector$1(start) { var pseudoElement, pseudoName, $name, t1, negArg, selector, span, expr, _this = this, _s10_ = "_peekToken"; _this._eat$1(17); pseudoElement = _this._maybeEat$1(17); if (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind === 511) pseudoName = _this.identifier$0(0); else return null; $name = pseudoName.name.toLowerCase(); if (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind === 2) { t1 = !pseudoElement; if (t1 && $name === "not") { _this._eat$1(2); negArg = _this.simpleSelector$0(); _this._eat$1(3); t1 = _this._makeSpan$1(start); return new A.NegationSelector(negArg, new A.Negation(t1), t1); } else { if (t1) t1 = $name === "host" || $name === "host-context" || $name === "global-context"; else t1 = false; if (t1) { _this._eat$1(2); selector = _this.processCompoundSelector$0(); if (selector == null) { _this._errorExpected$1("a selector argument"); return null; } _this._eat$1(3); return new A.PseudoClassFunctionSelector(selector, pseudoName, _this._makeSpan$1(start)); } else { t1 = _this.tokenizer; t1.inSelectorExpression = true; _this._eat$1(2); span = _this._makeSpan$1(start); expr = _this.processSelectorExpression$0(); t1.inSelectorExpression = false; if (expr instanceof A.SelectorExpression) { _this._eat$1(3); return pseudoElement ? new A.PseudoElementFunctionSelector(false, pseudoName, span) : new A.PseudoClassFunctionSelector(expr, pseudoName, span); } else { _this._errorExpected$1("CSS expression"); return null; } } } } t1 = !pseudoElement; return !t1 || J.containsKey$1$x(B.Set_wijBi._collection$_map, $name) ? new A.PseudoElementSelector(t1, pseudoName, _this._makeSpan$1(start)) : new A.PseudoClassSelector(pseudoName, _this._makeSpan$1(start)); }, processSelectorExpression$0() { var t1, value, termToken, keepParsing, span, unitType, term, _this = this, _null = null, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span, expressions = A._setArrayType([], type$.JSArray_Expression); for (t1 = _this.tokenizer, value = _null, termToken = value, keepParsing = true; keepParsing;) { switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 12: start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; termToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this._previousToken = termToken; _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); expressions.push(new A.OperatorPlus(_this._makeSpan$1(start))); break; case 34: start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; termToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this._previousToken = termToken; _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); expressions.push(new A.OperatorMinus(_this._makeSpan$1(start))); break; case 60: termToken = _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); value = A.int_parse(termToken.get$text(termToken), _null); break; case 62: termToken = _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); value = A.double_parse(termToken.get$text(termToken)); break; case 25: value = "'" + A._escapeString(_this.processQuotedString$1(false), true) + "'"; return new A.LiteralTerm(value, value, _this._makeSpan$1(start)); case 26: value = '"' + A._escapeString(_this.processQuotedString$1(false), false) + '"'; return new A.LiteralTerm(value, value, _this._makeSpan$1(start)); case 511: value = _this.identifier$0(0); break; default: keepParsing = false; } if (keepParsing && value != null) { span = _this._makeSpan$1(start); unitType = A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind; switch (unitType) { case 600: term = new A.EmTerm(value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 601: term = new A.ExTerm(value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 602: case 603: case 604: case 605: case 606: case 607: term = new A.LengthTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 608: case 609: case 610: case 611: term = new A.AngleTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 612: case 613: term = new A.TimeTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 614: case 615: term = new A.FreqTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 24: term = new A.PercentageTerm(value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 617: term = new A.FractionTerm(value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 618: case 619: case 620: term = new A.ResolutionTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 621: term = new A.ChTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 622: term = new A.RemTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; case 623: case 624: case 625: case 626: term = new A.ViewportTerm(unitType, value, termToken.get$text(termToken), span); _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); break; default: term = value instanceof A.Identifier ? new A.LiteralTerm(value, value.name, span) : new A.NumberTerm(value, termToken.get$text(termToken), span); } expressions.push(term); value = _null; } } return new A.SelectorExpression(expressions, _this._makeSpan$1(start)); }, processAttribute$0() { var attrName, op, value, _this = this, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span; if (_this._maybeEat$1(4)) { attrName = _this.identifier$0(0); switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 28: case 530: case 531: case 532: case 533: case 534: op = A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind; _this._parser0$_next$0(); break; default: op = 535; } if (op !== 535) value = A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind === 511 ? _this.identifier$0(0) : _this.processQuotedString$1(false); else value = null; _this._eat$1(5); return new A.AttributeSelector(op, value, attrName, _this._makeSpan$1(start)); } return null; }, processQuotedString$1(urlString) { var stopToken, t2, t3, _this = this, _s10_ = "_peekToken", start = A._lateReadCheck(_this.___Parser__peekToken, _s10_).span, t1 = _this.tokenizer, inString = t1._inString; t1._inString = false; switch (A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind) { case 25: _this._parser0$_next$0(); A._lateReadCheck(_this.___Parser__peekToken, _s10_).toString; stopToken = 25; break; case 26: _this._parser0$_next$0(); A._lateReadCheck(_this.___Parser__peekToken, _s10_).toString; stopToken = 26; break; default: _this._parser0$_error$2("unexpected string", _this._makeSpan$1(start)); stopToken = -1; break; } t2 = ""; while (true) { if (!(A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind !== stopToken && A._lateReadCheck(_this.___Parser__peekToken, _s10_).kind !== 1)) break; t3 = _this._previousToken = A._lateReadCheck(_this.___Parser__peekToken, _s10_); _this.___Parser__peekToken = t1.next$1$unicodeRange(0, false); t3 = t2 + t3.get$text(t3); t2 = t3; } t1._inString = inString; if (stopToken !== 3) _this._parser0$_next$0(); return t2.charCodeAt(0) == 0 ? t2 : t2; }, identifier$0(_) { var tok = this._parser0$_next$0(), t1 = tok.kind; if (t1 !== 511 && !A.TokenKind_isKindIdentifier(t1)) { $.__messages._readField$0().toString; return new A.Identifier("", this._makeSpan$1(tok.span)); } return new A.Identifier(tok.get$text(tok), this._makeSpan$1(tok.span)); } }; A.Token.prototype = { get$text(_) { var t1 = this.span; return A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._file$_end), 0, null); }, toString$0(_) { var kindText = A.TokenKind_kindToString(this.kind), actualText = B.JSString_methods.trim$0(this.get$text(this)); if (kindText !== actualText) { if (actualText.length > 10) actualText = B.JSString_methods.substring$2(actualText, 0, 8) + "..."; return kindText + "(" + actualText + ")"; } else return kindText; } }; A.IdentifierToken.prototype = { get$text(receiver) { return this.text; } }; A.Tokenizer.prototype = { next$1$unicodeRange(_, unicodeRange) { var ch, peekCh, oldIndex, oldStartIndex, t1, t2, tokId, start, _this = this; _this._parser0$_startIndex = _this._parser0$_index; ch = _this._nextChar$0(); switch (ch) { case 10: case 13: case 32: case 9: return _this.finishWhitespace$0(); case 0: return _this._finishToken$1(1); case 64: peekCh = _this._peekChar$0(); if (A.TokenizerHelpers_isIdentifierStartExpr(peekCh) || peekCh === 45) { oldIndex = _this._parser0$_index; oldStartIndex = _this._parser0$_startIndex; _this._parser0$_startIndex = oldIndex; _this._nextChar$0(); _this.finishIdentifier$0(); t1 = _this._parser0$_text; t2 = _this._parser0$_startIndex; tokId = A.TokenKind_matchList(B.List_k92, "type", t1, t2, _this._parser0$_index - t2); if (tokId === -1) { t2 = _this._parser0$_startIndex; tokId = A.TokenKind_matchList(B.List_d5v, "type", t1, t2, _this._parser0$_index - t2); } if (tokId !== -1) return _this._finishToken$1(tokId); else { _this._parser0$_startIndex = oldStartIndex; _this._parser0$_index = oldIndex; } } return _this._finishToken$1(10); case 46: start = _this._parser0$_startIndex; if (_this.maybeEatDigit$0()) if (_this.finishNumber$0().kind === 60) { _this._parser0$_startIndex = start; return _this._finishToken$1(62); } else return _this._finishToken$1(65); return _this._finishToken$1(8); case 40: return _this._finishToken$1(2); case 41: return _this._finishToken$1(3); case 123: return _this._finishToken$1(6); case 125: return _this._finishToken$1(7); case 91: return _this._finishToken$1(4); case 93: if (_this._maybeEatChar$1(93) && _this._maybeEatChar$1(62)) return _this.next$0(0); return _this._finishToken$1(5); case 35: return _this._finishToken$1(11); case 43: if (_this._nextCharsAreNumber$1(ch)) return _this.finishNumber$0(); return _this._finishToken$1(12); case 45: if (_this.inSelectorExpression || false) return _this._finishToken$1(34); else if (_this._nextCharsAreNumber$1(ch)) return _this.finishNumber$0(); else if (A.TokenizerHelpers_isIdentifierStartExpr(ch) || ch === 45) return _this.finishIdentifier$0(); return _this._finishToken$1(34); case 62: return _this._finishToken$1(13); case 126: if (_this._maybeEatChar$1(61)) return _this._finishToken$1(530); return _this._finishToken$1(14); case 42: if (_this._maybeEatChar$1(61)) return _this._finishToken$1(534); return _this._finishToken$1(15); case 38: return _this._finishToken$1(36); case 124: if (_this._maybeEatChar$1(61)) return _this._finishToken$1(531); return _this._finishToken$1(16); case 58: return _this._finishToken$1(17); case 44: return _this._finishToken$1(19); case 59: return _this._finishToken$1(9); case 37: return _this._finishToken$1(24); case 39: return _this._finishToken$1(25); case 34: return _this._finishToken$1(26); case 47: if (_this._maybeEatChar$1(42)) return _this.finishMultiLineComment$0(); return _this._finishToken$1(27); case 60: if (_this._maybeEatChar$1(33)) if (_this._maybeEatChar$1(45) && _this._maybeEatChar$1(45)) return _this.finishHtmlComment$0(); else { if (_this._maybeEatChar$1(91)) { t1 = _this.CDATA_NAME._string; t1 = _this._maybeEatChar$1(B.JSString_methods._codeUnitAt$1(t1, 0)) && _this._maybeEatChar$1(B.JSString_methods._codeUnitAt$1(t1, 1)) && _this._maybeEatChar$1(B.JSString_methods._codeUnitAt$1(t1, 2)) && _this._maybeEatChar$1(B.JSString_methods._codeUnitAt$1(t1, 3)) && _this._maybeEatChar$1(B.JSString_methods._codeUnitAt$1(t1, 4)) && _this._maybeEatChar$1(91); } else t1 = false; if (t1) return _this.next$0(0); } return _this._finishToken$1(32); case 61: return _this._finishToken$1(28); case 94: if (_this._maybeEatChar$1(61)) return _this._finishToken$1(532); return _this._finishToken$1(30); case 36: if (_this._maybeEatChar$1(61)) return _this._finishToken$1(533); return _this._finishToken$1(31); case 33: return _this.finishIdentifier$0(); default: if (!_this.inSelector && ch === 92) return _this._finishToken$1(35); if (_this._inString) t1 = (ch === _this.UNICODE_U || ch === _this.UNICODE_LOWER_U) && _this._peekChar$0() === _this.UNICODE_PLUS; else t1 = false; if (t1) { _this._nextChar$0(); _this._parser0$_startIndex = _this._parser0$_index; return _this._finishToken$1(508); } else { t1 = ch === 118; if (t1 && _this._maybeEatChar$1(97) && _this._maybeEatChar$1(114) && _this._maybeEatChar$1(45)) return _this._finishToken$1(400); else if (t1 && _this._maybeEatChar$1(97) && _this._maybeEatChar$1(114) && _this._peekChar$0() === 45) return _this._finishToken$1(401); else if (A.TokenizerHelpers_isIdentifierStartExpr(ch) || ch === 45) return _this.finishIdentifier$0(); else if (ch >= 48 && ch <= 57) return _this.finishNumber$0(); } return _this._finishToken$1(65); } }, next$0($receiver) { return this.next$1$unicodeRange($receiver, false); }, finishIdentifier$0() { var t2, t1, t3, ch, startHex, t4, span, text, tokId, _this = this, chars = A._setArrayType([], type$.JSArray_int), validateFrom = _this._parser0$_index; _this._parser0$_index = _this._parser0$_startIndex; t1 = _this._parser0$_text; t2 = t1.length; while (true) { t3 = _this._parser0$_index; if (!(t3 < t2)) { t2 = t3; break; } ch = B.JSString_methods.codeUnitAt$1(t1, t3); if (ch === 92 && _this._inString) { startHex = _this._parser0$_index = t3 + 1; _this.eatHexDigits$1(startHex + 6); t3 = _this._parser0$_index; if (t3 !== startHex) { chars.push(A.int_parse("0x" + B.JSString_methods.substring$2(t1, startHex, t3), null)); t3 = _this._parser0$_index; if (t3 === t2) { t2 = t3; break; } ch = B.JSString_methods.codeUnitAt$1(t1, t3); if (t3 - startHex !== 6) t4 = ch === 32 || ch === 9 || ch === 13 || ch === 10; else t4 = false; if (t4) _this._parser0$_index = t3 + 1; } else { if (t3 === t2) { t2 = t3; break; } _this._parser0$_index = t3 + 1; chars.push(B.JSString_methods.codeUnitAt$1(t1, t3)); } } else { if (t3 >= validateFrom) if (_this.inSelectorExpression) if (!A.TokenizerHelpers_isIdentifierStartExpr(ch)) t4 = ch >= 48 && ch <= 57; else t4 = true; else { if (!A.TokenizerHelpers_isIdentifierStartExpr(ch)) t4 = ch >= 48 && ch <= 57; else t4 = true; t4 = t4 || ch === 45; } else t4 = true; if (t4) { chars.push(ch); ++_this._parser0$_index; } else { t2 = t3; break; } } } span = _this._file.span$2(0, _this._parser0$_startIndex, t2); text = A.String_String$fromCharCodes(chars, 0, null); if (!_this.inSelectorExpression && !_this.inSelector) { t2 = _this._parser0$_startIndex; tokId = A.TokenKind_matchList(B.List_UJh, "unit", t1, t2, _this._parser0$_index - t2); } else tokId = -1; if (tokId === -1) tokId = B.JSString_methods.substring$2(t1, _this._parser0$_startIndex, _this._parser0$_index) === "!important" ? 505 : -1; return new A.IdentifierToken(text, tokId >= 0 ? tokId : 511, span); }, finishNumber$0() { var t1, _this = this; _this.eatDigits$0(); if (_this._peekChar$0() === 46) { _this._nextChar$0(); t1 = _this._peekChar$0(); if (t1 >= 48 && t1 <= 57) { _this.eatDigits$0(); return _this._finishToken$1(62); } else --_this._parser0$_index; } return _this._finishToken$1(60); }, maybeEatDigit$0() { var t1 = this._parser0$_index, t2 = this._parser0$_text; if (t1 < t2.length) { t2 = B.JSString_methods.codeUnitAt$1(t2, t1); t2 = t2 >= 48 && t2 <= 57; } else t2 = false; if (t2) { this._parser0$_index = t1 + 1; return true; } return false; }, eatHexDigits$1(end) { var t2, t3, t1 = this._parser0$_text; end = Math.min(end, t1.length); for (; t2 = this._parser0$_index, t2 < end;) { t3 = B.JSString_methods.codeUnitAt$1(t1, t2); if (!(t3 >= 48 && t3 <= 57)) if (!(t3 >= 97 && t3 <= 102)) t3 = t3 >= 65 && t3 <= 70; else t3 = true; else t3 = true; if (t3) this._parser0$_index = t2 + 1; else return; } }, finishHtmlComment$0() { var ch, t1, t2, end, t3, _this = this; for (; true;) { ch = _this._nextChar$0(); if (ch === 0) { t1 = _this._file; t2 = _this._parser0$_startIndex; end = _this._parser0$_index; t3 = new A._FileSpan(t1, t2, end); t3._FileSpan$3(t1, t2, end); return new A.Token(67, t3); } else if (ch === 45) if (_this._maybeEatChar$1(45)) if (_this._maybeEatChar$1(62)) if (_this._inString) return _this.next$0(0); else { t1 = _this._file; t2 = _this._parser0$_startIndex; end = _this._parser0$_index; t3 = new A._FileSpan(t1, t2, end); t3._FileSpan$3(t1, t2, end); return new A.Token(504, t3); } } }, finishMultiLineComment$0() { var ch, t1, t2, end, t3, _this = this; for (; true;) { ch = _this._nextChar$0(); if (ch === 0) { t1 = _this._file; t2 = _this._parser0$_startIndex; end = _this._parser0$_index; t3 = new A._FileSpan(t1, t2, end); t3._FileSpan$3(t1, t2, end); return new A.Token(67, t3); } else if (ch === 42) if (_this._maybeEatChar$1(47)) if (_this._inString) return _this.next$0(0); else { t1 = _this._file; t2 = _this._parser0$_startIndex; end = _this._parser0$_index; t3 = new A._FileSpan(t1, t2, end); t3._FileSpan$3(t1, t2, end); return new A.Token(64, t3); } } } }; A.TokenizerBase.prototype = { _nextChar$0() { var t1 = this._parser0$_index, t2 = this._parser0$_text; if (t1 < t2.length) { this._parser0$_index = t1 + 1; return B.JSString_methods.codeUnitAt$1(t2, t1); } else return 0; }, _peekChar$1(offset) { var t1 = this._parser0$_index + offset, t2 = this._parser0$_text; if (t1 < t2.length) return B.JSString_methods.codeUnitAt$1(t2, t1); else return 0; }, _peekChar$0() { return this._peekChar$1(0); }, _maybeEatChar$1(ch) { var t1 = this._parser0$_index, t2 = this._parser0$_text; if (t1 < t2.length) if (B.JSString_methods.codeUnitAt$1(t2, t1) === ch) { this._parser0$_index = t1 + 1; return true; } else return false; else return false; }, _nextCharsAreNumber$1(first) { var second, t1; if (first >= 48 && first <= 57) return true; second = this._peekChar$0(); if (first === 46) return second >= 48 && second <= 57; if (first === 43 || first === 45) { if (!(second >= 48 && second <= 57)) if (second === 46) { t1 = this._peekChar$1(1); t1 = t1 >= 48 && t1 <= 57; } else t1 = false; else t1 = true; return t1; } return false; }, _finishToken$1(kind) { return new A.Token(kind, this._file.span$2(0, this._parser0$_startIndex, this._parser0$_index)); }, finishWhitespace$0() { var t2, t3, t4, ch, _this = this, t1 = --_this._parser0$_index; for (t2 = _this._parser0$_text, t3 = t2.length; t1 < t3; t1 = t4) { t4 = _this._parser0$_index = t1 + 1; ch = B.JSString_methods.codeUnitAt$1(t2, t1); if (!(ch === 32 || ch === 9 || ch === 13)) if (ch === 10) { if (!_this._inString) { t1 = _this._file; t2 = _this._parser0$_startIndex; t3 = new A._FileSpan(t1, t2, t4); t3._FileSpan$3(t1, t2, t4); return new A.Token(63, t3); } } else { t1 = _this._parser0$_index = t4 - 1; if (_this._inString) return _this.next$0(0); else { t2 = _this._file; t3 = _this._parser0$_startIndex; t4 = new A._FileSpan(t2, t3, t1); t4._FileSpan$3(t2, t3, t1); return new A.Token(63, t4); } } } return _this._finishToken$1(1); }, eatDigits$0() { var t1, t2, t3, t4; for (t1 = this._parser0$_text, t2 = t1.length; t3 = this._parser0$_index, t3 < t2;) { t4 = B.JSString_methods.codeUnitAt$1(t1, t3); if (t4 >= 48 && t4 <= 57) this._parser0$_index = t3 + 1; else return; } } }; A.MessageLevel.prototype = { toString$0(_) { return "MessageLevel." + this._core$_name; } }; A.Message.prototype = { toString$0(_) { var _this = this, colors = _this.useColors && B.Map_GpoyU.containsKey$1(0, _this.level), levelColor = colors ? B.Map_GpoyU.$index(0, _this.level) : null, t1 = colors ? A.S(levelColor) : ""; t1 = t1 + A.S(B.Map_GpDrw.$index(0, _this.level)) + " "; if (colors) t1 += "\x1b[0m"; t1 = t1 + "on " + _this.span.message$2$color(0, _this.message, levelColor); return t1.charCodeAt(0) == 0 ? t1 : t1; }, get$message(receiver) { return this.message; } }; A.Messages.prototype = { error$2(_, message, span) { var msg = new A.Message(B.MessageLevel_2, message, span, this.options.useColors); this.messages.push(msg); this.printHandler.call$1(msg); } }; A.PreprocessorOptions.prototype = {}; A.Identifier.prototype = { visit$1(visitor) { return null; }, toString$0(_) { var t1 = this.span; t1 = A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._file$_end), 0, null); return t1; }, get$name(receiver) { return this.name; } }; A.Wildcard.prototype = { visit$1(visitor) { return null; }, get$name(_) { return "*"; } }; A.ThisOperator.prototype = { visit$1(visitor) { return null; }, get$name(_) { return "&"; } }; A.Negation.prototype = { visit$1(visitor) { return null; }, get$name(_) { return "not"; } }; A.SelectorGroup.prototype = { visit$1(visitor) { return B.JSArray_methods.any$1(this.selectors, visitor.get$visitSelector()); } }; A.Selector.prototype = { get$length(_) { return this.simpleSelectorSequences.length; }, visit$1(visitor) { return visitor.visitSelector$1(this); } }; A.SimpleSelectorSequence.prototype = { visit$1(visitor) { this.simpleSelector.visit$1(visitor); return null; }, toString$0(_) { var t1 = this.simpleSelector._visitor$_name; return t1.get$name(t1); } }; A.SimpleSelector.prototype = { get$name(_) { var t1 = this._visitor$_name; return t1.get$name(t1); }, visit$1(visitor) { return this._visitor$_name.visit$1(visitor); } }; A.ElementSelector.prototype = { visit$1(visitor) { var t1 = this._visitor$_name; return t1 instanceof A.Wildcard || visitor._query_selector$_element.localName === t1.get$name(t1).toLowerCase(); }, toString$0(_) { var t1 = this._visitor$_name; return t1.get$name(t1); } }; A.NamespaceSelector.prototype = { get$namespace() { var t1 = this._namespace; if (t1 instanceof A.Wildcard) t1 = "*"; else t1 = t1 == null ? "" : t1.get$name(t1); return t1; }, visit$1(visitor) { return visitor.visitNamespaceSelector$1(this); }, toString$0(_) { var t1 = this.get$namespace(), t2 = type$.nullable_SimpleSelector._as(this._visitor$_name)._visitor$_name; return t1 + "|" + t2.get$name(t2); } }; A.AttributeSelector.prototype = { matchOperator$0() { switch (this._op) { case 28: return "="; case 530: return "~="; case 531: return "|="; case 532: return "^="; case 533: return "$="; case 534: return "*="; case 535: return ""; } return null; }, valueToString$0() { var t1 = this.value; if (t1 != null) if (t1 instanceof A.Identifier) return t1.toString$0(0); else return '"' + A.S(t1) + '"'; else return ""; }, visit$1(visitor) { return visitor.visitAttributeSelector$1(this); }, toString$0(_) { var t1 = this._visitor$_name; return "[" + t1.get$name(t1) + A.S(this.matchOperator$0()) + this.valueToString$0() + "]"; }, get$value(receiver) { return this.value; } }; A.IdSelector.prototype = { visit$1(visitor) { var t1 = visitor._query_selector$_element, t2 = this._visitor$_name; return t1.get$id(t1) === t2.get$name(t2); }, toString$0(_) { return "#" + A.S(this._visitor$_name); } }; A.ClassSelector.prototype = { visit$1(visitor) { var t2, t1 = visitor._query_selector$_element; t1.toString; t2 = this._visitor$_name; t2 = t2.get$name(t2); return new A.ElementCssClassSet(t1).readClasses$0().contains$1(0, t2); }, toString$0(_) { return "." + A.S(this._visitor$_name); } }; A.PseudoClassSelector.prototype = { visit$1(visitor) { return visitor.visitPseudoClassSelector$1(this); }, toString$0(_) { var t1 = this._visitor$_name; return ":" + t1.get$name(t1); } }; A.PseudoElementSelector.prototype = { visit$1(visitor) { visitor.visitPseudoElementSelector$1(this); return false; }, toString$0(_) { var t1 = this.isLegacy ? ":" : "::", t2 = this._visitor$_name; return t1 + t2.get$name(t2); } }; A.PseudoClassFunctionSelector.prototype = { visit$1(visitor) { return visitor.visitPseudoClassFunctionSelector$1(this); } }; A.PseudoElementFunctionSelector.prototype = { visit$1(visitor) { return visitor.visitPseudoElementFunctionSelector$1(this); } }; A.SelectorExpression.prototype = { visit$1(visitor) { visitor._visitNodeList$1(this.expressions); return null; } }; A.NegationSelector.prototype = { visit$1(visitor) { return !this.negationArg.visit$1(visitor); } }; A.OperatorPlus.prototype = { visit$1(visitor) { return null; } }; A.OperatorMinus.prototype = { visit$1(visitor) { return null; } }; A.LiteralTerm.prototype = { visit$1(visitor) { return null; }, get$value(receiver) { return this.value; } }; A.NumberTerm.prototype = { visit$1(visitor) { return null; } }; A.UnitTerm.prototype = { visit$1(visitor) { return null; }, toString$0(_) { return this.text + A.S(A.TokenKind_unitToString(this.unit)); } }; A.LengthTerm.prototype = { visit$1(visitor) { return null; } }; A.PercentageTerm.prototype = { visit$1(visitor) { return null; } }; A.EmTerm.prototype = { visit$1(visitor) { return null; } }; A.ExTerm.prototype = { visit$1(visitor) { return null; } }; A.AngleTerm.prototype = { visit$1(visitor) { return null; } }; A.TimeTerm.prototype = { visit$1(visitor) { return null; } }; A.FreqTerm.prototype = { visit$1(visitor) { return null; } }; A.FractionTerm.prototype = { visit$1(visitor) { return null; } }; A.ResolutionTerm.prototype = { visit$1(visitor) { return null; } }; A.ChTerm.prototype = { visit$1(visitor) { return null; } }; A.RemTerm.prototype = { visit$1(visitor) { return null; } }; A.ViewportTerm.prototype = { visit$1(visitor) { return null; } }; A.TreeNode.prototype = {}; A.Expression.prototype = {}; A.Visitor.prototype = { _visitNodeList$1(list) { var index; for (index = 0; index < list.length; ++index) list[index].visit$1(this); } }; A.Clock0.prototype = {}; A._RealtimeClock.prototype = {}; A.MemoryDirectory.prototype = { get$expectedType() { return B.FileSystemEntityType_1; }, existsSync$0() { this.fileSystem.opHandle.call$2(this.path, B.FileSystemOp_6); var t1 = this.get$backingOrNull(); return (t1 == null ? null : t1.get$stat(t1).type) === B.FileSystemEntityType_1; }, createSync$1$recursive(recursive) { var node, t1 = this.path; this.fileSystem.opHandle.call$2(t1, B.FileSystemOp_3); node = this.internalCreateSync$3$createChild$followTailLink$visitLinks(new A.MemoryDirectory_createSync_closure(false), true, true); if ((node == null ? null : node.get$type(node)) !== B.FileSystemEntityType_1) throw A.wrapException(A.notADirectory(t1)); }, createSync$0() { return this.createSync$1$recursive(false); }, createTemp$1(prefix) { return this.createTemp$body$MemoryDirectory(prefix); }, createTemp$body$MemoryDirectory(prefix) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Directory), $async$returnValue, $async$self = this; var $async$createTemp$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.createTempSync$1(prefix); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$createTemp$1, $async$completer); }, createTempSync$1(prefix) { var t3, _tempCounter, $name, t4, t5, tempDir, _box_0 = {}, t1 = this.fileSystem, t2 = t1._memory_file_system$_context, fullPath = t2.join$2(0, this.path, prefix + "rand"), dirname = t2.dirname$1(fullPath), basename = A.ParsedPath_ParsedPath$parse(fullPath, t2.style).get$basename(), node = type$.nullable_DirectoryNode._as(t1.findNode$1(dirname)); if (node == null) A.throwExpression(A.noSuchFileOrDirectory(A._asStringS(new A.MemoryDirectory_createTempSync_closure(dirname).call$0()))); node.toString; A.checkIsDir(node, new A.MemoryDirectory_createTempSync_closure0(dirname)); t3 = $.$get$_systemTempCounter(); t3.toString; A.Expando__checkType(t1); _tempCounter = t3._jsWeakMap.get(t1); _box_0._tempCounter = _tempCounter == null ? 0 : _tempCounter; $name = new A.MemoryDirectory_createTempSync_name(_box_0, basename); for (t3 = node.children; t3.containsKey$1(0, $name.call$0());) ++_box_0._tempCounter; t4 = $.$get$_systemTempCounter(); t5 = _box_0._tempCounter; t4._jsWeakMap.set(t1, t5); tempDir = A.DirectoryNode$(node); t3.$indexSet(0, $name.call$0(), tempDir); t2 = new A.MemoryDirectory(t1, t2.join$2(0, dirname, $name.call$0())); t2.createSync$0(); return t2; }, toString$0(_) { return "MemoryDirectory: '" + this.path + "'"; }, $isDirectory: 1, $isDirectory0: 1 }; A.MemoryDirectory_createSync_closure.prototype = { call$2($parent, isFinalSegment) { if (this.recursive || isFinalSegment) return A.DirectoryNode$($parent); return null; }, $signature: 2802 }; A.MemoryDirectory_createTempSync_closure.prototype = { call$0() { return this.dirname; }, $signature: 65 }; A.MemoryDirectory_createTempSync_closure0.prototype = { call$0() { return this.dirname; }, $signature: 65 }; A.MemoryDirectory_createTempSync_name.prototype = { call$0() { return A.S(this.basename) + this._box_0._tempCounter; }, $signature: 65 }; A._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin.prototype = {}; A.MemoryFile.prototype = { get$_resolvedBackingOrCreate() { var t1, _this = this, node = _this.get$backingOrNull(); if (node == null) node = _this._doCreate$0(); else { t1 = node.get$type(node); if (t1 === B.FileSystemEntityType_2) node = A.resolveLinks(type$.LinkNode._as(node), new A.MemoryFile__resolvedBackingOrCreate_closure(_this), null, null); A.checkType(B.FileSystemEntityType_0, node.get$type(node), new A.MemoryFile__resolvedBackingOrCreate_closure0(_this)); } return type$.FileNode._as(node); }, get$expectedType() { return B.FileSystemEntityType_0; }, existsSync$0() { this.fileSystem.opHandle.call$2(this.path, B.FileSystemOp_6); var t1 = this.get$backingOrNull(); return (t1 == null ? null : t1.get$stat(t1).type) === B.FileSystemEntityType_0; }, _doCreate$1$recursive(recursive) { var node = this.internalCreateSync$2$createChild$followTailLink(new A.MemoryFile__doCreate_closure(false), true); if ((node == null ? null : node.get$type(node)) !== B.FileSystemEntityType_0) throw A.wrapException(A.isADirectory(this.path)); return node; }, _doCreate$0() { return this._doCreate$1$recursive(false); }, length$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.int), $async$returnValue, $async$self = this; var $async$length$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = type$.FileNode._as($async$self.get$resolvedBacking())._node1$_content.length; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$length$0, $async$completer); }, readAsBytes$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this; var $async$readAsBytes$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.readAsBytesSync$0(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$readAsBytes$0, $async$completer); }, readAsBytesSync$0() { this.fileSystem.opHandle.call$2(this.path, B.FileSystemOp_0); return new Uint8Array(A._ensureNativeList(type$.FileNode._as(this.get$resolvedBacking())._node1$_content)); }, toString$0(_) { return "MemoryFile: '" + this.path + "'"; }, $isFile0: 1, $isFile1: 1 }; A.MemoryFile__resolvedBackingOrCreate_closure.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFile__resolvedBackingOrCreate_closure0.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFile__doCreate_closure.prototype = { call$2($parent, isFinalSegment) { var t1, t2; if (isFinalSegment) { t1 = new A.FileNode(new Uint8Array(0), $parent); if ($parent == null) { t1.get$isRoot(); t2 = true; } else t2 = false; if (t2) A.throwExpression(B.FileSystemException_sV6); t1.RealNode$1($parent); return t1; } return null; }, $signature: 2800 }; A._FileSink.prototype = { get$isStreaming() { var t1 = this._streamCompleter; t1 = t1 == null ? null : (t1.future._state & 30) !== 0; return t1 === false; }, add$1(_, data) { if (this.get$isStreaming()) A.throwExpression(A.StateError$("StreamSink is bound to a stream")); if (this._isClosed) throw A.wrapException(A.StateError$("StreamSink is closed")); this._addData$1(data); }, addError$2(error, stackTrace) { if (this.get$isStreaming()) A.throwExpression(A.StateError$("StreamSink is bound to a stream")); this._memory_file$_completer.completeError$2(error, stackTrace); }, addStream$1(_, stream) { var t1, _this = this; if (_this.get$isStreaming()) A.throwExpression(A.StateError$("StreamSink is bound to a stream")); _this._streamCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t1 = new A._FileSink_addStream_finish(_this); stream.listen$4$cancelOnError$onDone$onError(0, new A._FileSink_addStream_closure(_this), true, t1, new A._FileSink_addStream_closure0(_this, t1)); return _this._streamCompleter.future; }, close$0(_) { var _this = this; if (_this.get$isStreaming()) A.throwExpression(A.StateError$("StreamSink is bound to a stream")); if (!_this._isClosed) { _this._isClosed = true; _this._pendingWrites.then$1$2$onError(0, new A._FileSink_close_closure(_this), new A._FileSink_close_closure0(_this), type$.void); } return _this._memory_file$_completer.future; }, _addData$1(data) { this._pendingWrites = this._pendingWrites.then$1$1(0, new A._FileSink__addData_closure(data), type$.FileNode); }, $isEventSink: 1 }; A._FileSink__FileSink$fromFile_closure.prototype = { call$0() { var t2, t3, t1 = this._box_0.deferredException; if (t1 != null) throw A.wrapException(t1); t1 = this.node; t2 = t1._readLocal$0(); t3 = this.mode; if (t3 === B.FileMode_1 || t3 === B.FileMode_3) { t2.toString; t2._node1$_content = new Uint8Array(0); } return t1._readLocal$0(); }, $signature: 2796 }; A._FileSink_addStream_finish.prototype = { call$0() { var t1 = this.$this; t1._streamCompleter.complete$0(0); t1._streamCompleter = null; }, $signature: 0 }; A._FileSink_addStream_closure.prototype = { call$1(data) { return this.$this._addData$1(data); }, $signature: 528 }; A._FileSink_addStream_closure0.prototype = { call$2(error, stackTrace) { this.$this._memory_file$_completer.completeError$2(error, stackTrace); this.finish.call$0(); }, $signature: 120 }; A._FileSink_close_closure.prototype = { call$1(_) { return this.$this._memory_file$_completer.complete$0(0); }, $signature: 2733 }; A._FileSink_close_closure0.prototype = { call$2(error, stackTrace) { return this.$this._memory_file$_completer.completeError$2(error, stackTrace); }, $signature: 129 }; A._FileSink__addData_closure.prototype = { call$1(node) { node.write$1(0, this.data); return node; }, $signature: 2725 }; A.MemoryFileStat.prototype = {}; A._MemoryFileSystem.prototype = { directory$1(_, path) { return new A.MemoryDirectory(this, this.getPath$1(0, path)); }, findNode$4$followTailLink$segmentVisitor$visitLinks(path, followTailLink, segmentVisitor, visitLinks) { var reference, parts, directory, finalSegment, t2, t3, t4, t5, child, i, basename, t6, t7, _this = this, _null = null, t1 = _this._memory_file_system$_context; if (t1.style.rootLength$1(path) > 0) { reference = _this._memory_file_system$_root; path = J.substring$1$s(path, 0); } else { t1 = t1._context$_current; reference = type$.DirectoryNode._as(_this.findNode$1(t1 == null ? A.current() : t1)); } $.$get$Style_posix().toString; parts = A._setArrayType(path.split("/"), type$.JSArray_String); if (!!parts.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(parts, A.utils0__isEmpty$closure(), true); directory = reference == null ? _null : reference; finalSegment = parts.length - 1; for (t1 = segmentVisitor == null, t2 = !t1, t3 = type$.LinkNode, t4 = !visitLinks, t5 = type$.DirectoryNode, child = directory, i = 0; i <= finalSegment; ++i) { basename = parts[i]; switch (basename) { case ".": child = directory; break; case "..": t6 = directory == null; child = t6 ? _null : directory.get$parent(directory); directory = t6 ? _null : directory.get$parent(directory); break; default: child = directory == null ? _null : directory.children.$index(0, basename); } t6 = new A._MemoryFileSystem_findNode_subpath(_this, parts, i); if ((child == null ? _null : child.get$type(child)) === B.FileSystemEntityType_2) t7 = i < finalSegment || followTailLink; else t7 = false; if (t7) if (!t4 || t1) { if (t2) { directory.toString; child = segmentVisitor.call$5(directory, basename, child, i, finalSegment); } child = A.resolveLinks(t3._as(child), t6, _null, _null); } else child = A.resolveLinks(t3._as(child), t6, _null, new A._MemoryFileSystem_findNode_closure(segmentVisitor, i, finalSegment)); else if (t2) { directory.toString; child = segmentVisitor.call$5(directory, basename, child, i, finalSegment); } if (i < finalSegment) { if (child == null) A.throwExpression(A.noSuchFileOrDirectory(A._asStringS(t6.call$0()))); t7 = child.get$type(child); if (t7 !== B.FileSystemEntityType_1) A.throwExpression(A.notADirectory(A._asStringS(t6.call$0()))); t5._as(child); directory = child; } } return child; }, findNode$1(path) { return this.findNode$4$followTailLink$segmentVisitor$visitLinks(path, false, null, false); } }; A._MemoryFileSystem_findNode_subpath.prototype = { call$0() { return B.JSArray_methods.join$1(B.JSArray_methods.sublist$2(this.parts, 0, this.i + 1), this.$this._memory_file_system$_context.style.get$separator()); }, $signature: 65 }; A._MemoryFileSystem_findNode_closure.prototype = { call$3($parent, childName, child) { return this.segmentVisitor.call$5($parent, childName, child, this.i, this.finalSegment); }, $signature: 531 }; A.MemoryFileSystemEntity.prototype = { get$backingOrNull() { var t1, exception; try { t1 = this.fileSystem.findNode$1(this.path); return t1; } catch (exception) { if (A.unwrapException(exception) instanceof A.FileSystemException) return null; else throw exception; } }, get$backing() { var node = this.fileSystem.findNode$1(this.path); if (node == null) A.throwExpression(A.noSuchFileOrDirectory(A._asStringS(new A.MemoryFileSystemEntity_backing_closure(this).call$0()))); node.toString; return node; }, get$resolvedBacking() { var _this = this, node = _this.get$backing(); if ((node == null ? null : node.get$type(node)) === B.FileSystemEntityType_2) node = A.resolveLinks(type$.LinkNode._as(node), new A.MemoryFileSystemEntity_resolvedBacking_closure(_this), null, null); A.checkType(_this.get$expectedType(), node.get$type(node), new A.MemoryFileSystemEntity_resolvedBacking_closure0(_this)); return node; }, defaultCheckType$1(node) { A.checkType(this.get$expectedType(), node.get$stat(node).type, new A.MemoryFileSystemEntity_defaultCheckType_closure(this)); }, exists$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$exists$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.existsSync$0(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$exists$0, $async$completer); }, delete$1$recursive(_, recursive) { return this.delete$body$MemoryFileSystemEntity(0, false); }, delete$0($receiver) { return this.delete$1$recursive($receiver, false); }, delete$body$MemoryFileSystemEntity(_, recursive) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.FileSystemEntity), $async$returnValue, $async$self = this; var $async$delete$1$recursive = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.deleteSync$1$recursive(0, false); $async$returnValue = $async$self; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$delete$1$recursive, $async$completer); }, deleteSync$1$recursive(_, recursive) { return this.internalDeleteSync$1$recursive(false); }, internalCreateSync$3$createChild$followTailLink$visitLinks(createChild, followTailLink, visitLinks) { return this.fileSystem.findNode$4$followTailLink$segmentVisitor$visitLinks(this.path, true, new A.MemoryFileSystemEntity_internalCreateSync_closure(createChild), visitLinks); }, internalCreateSync$2$createChild$followTailLink(createChild, followTailLink) { return this.internalCreateSync$3$createChild$followTailLink$visitLinks(createChild, followTailLink, false); }, internalDeleteSync$2$checkType$recursive(checkType, recursive) { var node, _this = this, t1 = _this.fileSystem, t2 = _this.path; t1.opHandle.call$2(t2, B.FileSystemOp_2); node = _this.get$backing(); if (node instanceof A.DirectoryNode && node.children._length !== 0) throw A.wrapException(A._fsException(t2, "Directory not empty", A.ErrorCodes_ENOTEMPTY())); (checkType == null ? _this.get$defaultCheckType() : checkType).call$1(node); node.get$parent(node).children.remove$1(0, A.ParsedPath_ParsedPath$parse(t2, t1._memory_file_system$_context.style).get$basename()); }, internalDeleteSync$1$recursive(recursive) { return this.internalDeleteSync$2$checkType$recursive(null, recursive); }, $isFileSystemEntity: 1, $isFileSystemEntity0: 1 }; A.MemoryFileSystemEntity_backing_closure.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFileSystemEntity_resolvedBacking_closure.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFileSystemEntity_resolvedBacking_closure0.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFileSystemEntity_defaultCheckType_closure.prototype = { call$0() { return this.$this.path; }, $signature: 65 }; A.MemoryFileSystemEntity_internalCreateSync_closure.prototype = { call$5($parent, childName, child, currentSegment, finalSegment) { if (child == null) { child = this.createChild.call$2($parent, currentSegment === finalSegment); if (child != null) $parent.children.$indexSet(0, childName, child); } return child; }, $signature: 2720 }; A.Node2.prototype = { Node$10(_parent) { if (this._node1$_parent == null && !this.get$isRoot()) throw A.wrapException(B.FileSystemException_sV6); }, get$parent(_) { var t1 = this._node1$_parent; t1.toString; return t1; }, get$isRoot() { return false; } }; A.RealNode.prototype = { RealNode$1($parent) { var _this = this; _this.get$clock(); _this.__RealNode_accessed = _this.__RealNode_modified = _this.__RealNode_changed = Date.now(); }, get$clock() { return this.get$parent(this).get$clock(); }, get$stat(_) { var _this = this; A.DateTime$fromMillisecondsSinceEpoch(A._lateReadCheck(_this.__RealNode_changed, "changed"), false); A.DateTime$fromMillisecondsSinceEpoch(A._lateReadCheck(_this.__RealNode_modified, "modified"), false); A.DateTime$fromMillisecondsSinceEpoch(A._lateReadCheck(_this.__RealNode_accessed, "accessed"), false); return new A.MemoryFileStat(_this.get$type(_this), _this.get$size(_this)); } }; A.DirectoryNode.prototype = { get$type(_) { return B.FileSystemEntityType_1; }, get$size(_) { return 0; } }; A.RootNode.prototype = { get$clock() { return this.fs.clock; }, get$parent(_) { return this; }, get$isRoot() { return true; } }; A.FileNode.prototype = { get$type(_) { return B.FileSystemEntityType_0; }, get$size(_) { return this._node1$_content.length; }, write$1(_, bytes) { var existing = this._node1$_content, t1 = existing.length, t2 = J.get$length$asx(bytes); t2 = new Uint8Array(t1 + t2); this._node1$_content = t2; B.NativeUint8List_methods.setRange$3(t2, 0, t1, existing); t2 = this._node1$_content; B.NativeUint8List_methods.setRange$3(t2, t1, t2.length, bytes); } }; A.FileSystemOp.prototype = { toString$0(_) { switch (this._operations$_value) { case 0: return "FileSystemOp.read"; case 1: return "FileSystemOp.write"; case 2: return "FileSystemOp.delete"; case 3: return "FileSystemOp.create"; case 4: return "FileSystemOp.open"; case 5: return "FileSystemOp.copy"; case 6: return "FileSystemOp.exists"; default: throw A.wrapException(A.StateError$("Invalid FileSytemOp type: " + this.toString$0(0))); } } }; A.FileSystemStyle.prototype = { get$root(_) { $.$get$Style_posix().toString; return "/"; } }; A._Posix.prototype = {}; A.resolveLinks_closure.prototype = { call$3($parent, childName, child) { var t2, t1 = this.tailVisitor; if (t1 != null) { child.get$type(child); t2 = true; } else t2 = false; return t2 ? t1.call$3($parent, childName, child) : child; }, $signature: 531 }; A.DirectoryAddOnsMixin.prototype = {}; A.ErrorCodes_EINVAL_closure.prototype = { call$1(codes) { return 22; }, $signature: 209 }; A.ErrorCodes_EISDIR_closure.prototype = { call$1(codes) { return 21; }, $signature: 209 }; A.ErrorCodes_ELOOP_closure.prototype = { call$1(codes) { return 40; }, $signature: 209 }; A.ErrorCodes_ENOENT_closure.prototype = { call$1(codes) { return 2; }, $signature: 209 }; A.ErrorCodes_ENOTDIR_closure.prototype = { call$1(codes) { return 20; }, $signature: 209 }; A.ErrorCodes_ENOTEMPTY_closure.prototype = { call$1(codes) { return 39; }, $signature: 209 }; A._LinuxCodes.prototype = {$is_Codes: 1}; A.FileSystem0.prototype = { getPath$1(_, path) { if (typeof path == "string") return path; else throw A.wrapException(A.ArgumentError$('Invalid type for "path": ' + A.S(path == null ? null : B.Type_String_k8F), null)); } }; A.FilePickerWeb.prototype = { pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this.pickFiles$body$FilePickerWeb(true, false, allowedExtensions, type, true); }, pickFiles$body$FilePickerWeb(allowCompression, allowMultiple, allowedExtensions, type, withData) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$self = this, t2, filesCompleter, accept, uploadInput, t3, files, t1; var $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; if (type !== B.FileType_5) t2 = allowedExtensions.length !== 0; else t2 = false; if (t2) throw A.wrapException(A.Exception_Exception("You are setting a type [" + type.toString$0(0) + string$.x5d__Cus)); t2 = new A._Future($.Zone__current, type$._Future_nullable_List_PlatformFile); filesCompleter = new A._AsyncCompleter(t2, type$._AsyncCompleter_nullable_List_PlatformFile); accept = A.FilePickerWeb__fileType(type, allowedExtensions); uploadInput = A.InputElement_InputElement("file"); uploadInput.draggable = true; uploadInput.multiple = false; uploadInput.accept = accept; t3 = uploadInput.style; t3.display = "none"; t1.changeEventTriggered = false; t3 = new A.FilePickerWeb_pickFiles_changeEventListener(t1, $async$self, uploadInput, null, filesCompleter, false, true); A._EventStreamSubscription$(uploadInput, "change", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1); B.InputElement_methods.addEventListener$2(uploadInput, "change", t3); B.Window_methods.addEventListener$2(window, "focus", new A.FilePickerWeb_pickFiles_cancelledEventListener(t1, filesCompleter)); J.get$children$x(A._lateReadCheck($async$self.__FilePickerWeb__target, "_target")).clear$0(0); J.get$children$x(A._lateReadCheck($async$self.__FilePickerWeb__target, "_target")).add$1(0, uploadInput); uploadInput.click(); $async$goto = 3; return A._asyncAwait(t2, $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 3: // returning from await. files = $async$result; $async$returnValue = files == null ? null : new A.FilePickerResult(files); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData, $async$completer); } }; A.FilePickerWeb_pickFiles_changeEventListener.prototype = { call$1(e) { var addPickedFile, t2, t3, t4, _i, file, reader, _this = this, t1 = _this._box_0; if (t1.changeEventTriggered) return; t1.changeEventTriggered = true; t1 = _this.uploadInput.files; t1.toString; addPickedFile = new A.FilePickerWeb_pickFiles_changeEventListener_addPickedFile(A._setArrayType([], type$.JSArray_PlatformFile), t1, _this.onFileLoading, _this.filesCompleter); for (t2 = t1.length, t3 = type$.legacy_ProgressEvent, t4 = !_this.withData, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { file = t1[_i]; if (t4) { reader = new FileReader(); A._EventStreamSubscription$(reader, "loadend", new A.FilePickerWeb_pickFiles_changeEventListener_closure(addPickedFile, file, reader), false, t3); reader.readAsDataURL(file); continue; } reader = new FileReader(); A._EventStreamSubscription$(reader, "loadend", new A.FilePickerWeb_pickFiles_changeEventListener_closure0(addPickedFile, file, reader), false, t3); reader.readAsArrayBuffer(file); } }, $signature: 83 }; A.FilePickerWeb_pickFiles_changeEventListener_addPickedFile.prototype = { call$4(file, bytes, path, readStream) { var t1 = this.pickedFiles, t2 = file.name; t1.push(new A.PlatformFile(path, t2, bytes, readStream, bytes != null ? J.get$length$asx(bytes) : file.size, null)); if (t1.length >= this.files.length) this.filesCompleter.complete$1(0, t1); }, $signature: 2712 }; A.FilePickerWeb_pickFiles_changeEventListener_closure.prototype = { call$1(e) { this.addPickedFile.call$4(this.file, null, A._asStringQ(B.FileReader_methods.get$result(this.reader)), null); }, $signature: 177 }; A.FilePickerWeb_pickFiles_changeEventListener_closure0.prototype = { call$1(e) { this.addPickedFile.call$4(this.file, type$.nullable_Uint8List._as(B.FileReader_methods.get$result(this.reader)), null, null); }, $signature: 177 }; A.FilePickerWeb_pickFiles_cancelledEventListener.prototype = { call$1(_) { B.Window_methods.removeEventListener$2(window, "focus", this); A.Future_Future$delayed(A.Duration$(0, 0, 0, 500, 0, 0), null, type$.dynamic).then$1$1(0, new A.FilePickerWeb_pickFiles_cancelledEventListener_closure(this._box_0, this.filesCompleter), type$.Null); }, $signature: 83 }; A.FilePickerWeb_pickFiles_cancelledEventListener_closure.prototype = { call$1(value) { var t1 = this._box_0; if (!t1.changeEventTriggered) { t1.changeEventTriggered = true; this.filesCompleter.complete$1(0, null); } }, $signature: 7 }; A.FilePickerWeb__fileType_closure.prototype = { call$2(prev, next) { return (prev.length === 0 ? "" : prev + ",") + " ." + A.S(next); }, $signature: 596 }; A.FileType.prototype = { toString$0(_) { return "FileType." + this._core$_name; } }; A.FilePicker.prototype = {}; A.FilePickerIO.prototype = { pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this._getPath$7(type, false, true, allowedExtensions, null, true, false); }, _getPath$7(fileType, allowMultipleSelection, allowCompression, allowedExtensions, onFileLoading, withData, withReadStream) { return this._getPath$body$FilePickerIO(fileType, false, true, allowedExtensions, onFileLoading, true, false); }, _getPath$body$FilePickerIO(fileType, allowMultipleSelection, allowCompression, allowedExtensions, onFileLoading, withData, withReadStream) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], result, platformFiles, platformFileMap, e, e0, t1, t2, t3, t4, exception, type, $async$exception; var $async$_getPath$7 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start type = A.describeEnum(fileType); if (!J.$eq$(type, "custom")) t1 = allowedExtensions.length !== 0; else t1 = false; if (t1) throw A.wrapException(A.Exception_Exception("You are setting a type [" + fileType.toString$0(0) + string$.x5d__Cus)); $async$handler = 4; t1 = $.FilePickerIO__eventSubscription; if (t1 != null) t1.cancel$0(0); $async$goto = 7; return A._asyncAwait($.$get$_channel().invokeListMethod$1$2(type, A.LinkedHashMap_LinkedHashMap$_literal(["allowMultipleSelection", false, "allowedExtensions", allowedExtensions, "allowCompression", true, "withData", true], type$.String, type$.nullable_Object), type$.Map_dynamic_dynamic), $async$_getPath$7); case 7: // returning from await. result = $async$result; if (result == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } platformFiles = A._setArrayType([], type$.JSArray_PlatformFile); for (t1 = J.get$iterator$ax(result); t1.moveNext$0();) { platformFileMap = t1.get$current(t1); t2 = platformFileMap; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, "name"); J.add$1$ax(platformFiles, new A.PlatformFile(t3.$index(t2, "path"), t4, t3.$index(t2, "bytes"), null, t3.$index(t2, "size"), t3.$index(t2, "identifier"))); } $async$returnValue = new A.FilePickerResult(platformFiles); // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (t1 instanceof A.PlatformException) { e = t1; A.print("[MethodChannelFilePicker] Platform exception: " + A.S(e)); throw $async$exception; } else { e0 = t1; A.print("[MethodChannelFilePicker] Unsupported operation. Method not found. The exception thrown was: " + A.S(e0)); throw $async$exception; } // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_getPath$7, $async$completer); } }; A.FilePickerMacOS.prototype = { pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this.pickFiles$body$FilePickerMacOS(true, false, allowedExtensions, type, true); }, pickFiles$body$FilePickerMacOS(allowCompression, allowMultiple, allowedExtensions, type, withData) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$self = this, $arguments, argument, fileSelectionResult, executable, fileFilter, t1, $async$temp1; var $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.isExecutableOnPath("osascript"), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 3: // returning from await. executable = $async$result; fileFilter = $async$self.fileTypeToFileFilter$2(type, allowedExtensions); t1 = A.stringReplaceAllUnchecked("File Picker", "\\", "\\\\"); t1 = A.stringReplaceAllUnchecked(t1, '"', '\\"'); t1 = A.stringReplaceAllUnchecked(t1, "\n", "\\\n"); $arguments = A._setArrayType(["-e"], type$.JSArray_String); argument = fileFilter.length !== 0 ? "choose file " + ("of type {" + fileFilter + "} ") : "choose file "; $arguments.push(argument + ('with prompt "' + t1 + '"')); $async$goto = 4; return A._asyncAwait(A.runExecutableWithArguments(executable, $arguments), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 4: // returning from await. fileSelectionResult = $async$result; if (fileSelectionResult == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$temp1 = A; $async$goto = 5; return A._asyncAwait(A.filePathsToPlatformFiles($async$self.resultStringToFilePaths$1(fileSelectionResult), false, true), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 5: // returning from await. $async$returnValue = new $async$temp1.FilePickerResult($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData, $async$completer); }, fileTypeToFileFilter$2(type, allowedExtensions) { switch (type.index) { case 0: return ""; case 4: return '"aac", "midi", "mp3", "ogg", "wav"'; case 5: return '"", "' + B.JSArray_methods.join$1(allowedExtensions, '", "') + '"'; case 2: return '"bmp", "gif", "jpeg", "jpg", "png"'; case 1: return '"avi", "flv", "mkv", "mov", "mp4", "mpeg", "webm", "wmv", "bmp", "gif", "jpeg", "jpg", "png"'; case 3: return '"avi", "flv", "mkv", "mov", "mp4", "mpeg", "webm", "wmv"'; default: throw A.wrapException(A.Exception_Exception("unknown file type")); } }, resultStringToFilePaths$1(fileSelectionResult) { var paths, t1 = B.JSString_methods.trim$0(fileSelectionResult); if (t1.length === 0) return A._setArrayType([], type$.JSArray_String); t1 = new A.MappedListIterable(A._setArrayType(t1.split(", alias "), type$.JSArray_String), new A.FilePickerMacOS_resultStringToFilePaths_closure(), type$.MappedListIterable_String_String).super$Iterable$where(0, new A.FilePickerMacOS_resultStringToFilePaths_closure0()); paths = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); if (paths.length === 1 && J.startsWith$1$s(B.JSArray_methods.get$first(paths), "file ")) paths[0] = J.substring$1$s(paths[0], 5); else if (paths.length !== 0 && J.startsWith$1$s(B.JSArray_methods.get$first(paths), "alias ")) paths[0] = J.substring$1$s(paths[0], 6); t1 = A._arrayInstanceType(paths)._eval$1("MappedListIterable<1,String>"); return A.List_List$of(new A.MappedListIterable(paths, new A.FilePickerMacOS_resultStringToFilePaths_closure1(), t1), true, t1._eval$1("ListIterable.E")); } }; A.FilePickerMacOS_resultStringToFilePaths_closure.prototype = { call$1(path) { return J.trim$0$s(path); }, $signature: 108 }; A.FilePickerMacOS_resultStringToFilePaths_closure0.prototype = { call$1(path) { return path.length !== 0; }, $signature: 52 }; A.FilePickerMacOS_resultStringToFilePaths_closure1.prototype = { call$1(path) { var t1 = type$.JSArray_String, t2 = type$.WhereIterable_String, pathElements = A.List_List$of(new A.WhereIterable(A._setArrayType(path.split(":"), t1), new A.FilePickerMacOS_resultStringToFilePaths__closure(), t2), true, t2._eval$1("Iterable.E")); t1 = A._setArrayType(["/Volumes", pathElements[0]], t1); B.JSArray_methods.addAll$1(t1, B.JSArray_methods.sublist$1(pathElements, 1)); return B.JSArray_methods.join$1(t1, "/"); }, $signature: 108 }; A.FilePickerMacOS_resultStringToFilePaths__closure.prototype = { call$1(e) { return e.length !== 0; }, $signature: 52 }; A.FilePickerResult.prototype = { $eq(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof A.FilePickerResult && A.listEquals0(other.files, this.files); }, get$hashCode(_) { return J.get$hashCode$(this.files); }, toString$0(_) { return "FilePickerResult(files: " + A.S(this.files) + ")"; } }; A.FilePickerLinux.prototype = { pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this.pickFiles$body$FilePickerLinux(true, false, allowedExtensions, type, true); }, pickFiles$body$FilePickerLinux(allowCompression, allowMultiple, allowedExtensions, type, withData) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$self = this, executable, dialogHandler, fileFilter, fileSelectionResult, $async$temp1; var $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._getPathToExecutable$0(), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 3: // returning from await. executable = $async$result; dialogHandler = A.DialogHandler_DialogHandler(executable); fileFilter = dialogHandler.fileTypeToFileFilter$2(type, allowedExtensions); $async$goto = 4; return A._asyncAwait(A.runExecutableWithArguments(executable, dialogHandler.generateCommandLineArguments$5$fileFilter$initialDirectory$multipleFiles$pickDirectory("File Picker", fileFilter, "", false, false)), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 4: // returning from await. fileSelectionResult = $async$result; if (fileSelectionResult == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$temp1 = A; $async$goto = 5; return A._asyncAwait(A.filePathsToPlatformFiles(dialogHandler.resultStringToFilePaths$1(fileSelectionResult), false, true), $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 5: // returning from await. $async$returnValue = new $async$temp1.FilePickerResult($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData, $async$completer); }, _getPathToExecutable$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], t1, exception, $async$exception, $async$exception1; var $async$_getPathToExecutable$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; $async$handler = 8; $async$goto = 11; return A._asyncAwait(A.isExecutableOnPath("qarma"), $async$_getPathToExecutable$0); case 11: // returning from await. t1 = $async$result; $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 4; // goto after finally $async$goto = 10; break; case 8: // catch $async$handler = 7; $async$exception = $async$currentError; $async$goto = type$.Exception._is(A.unwrapException($async$exception)) ? 12 : 14; break; case 12: // then $async$goto = 15; return A._asyncAwait(A.isExecutableOnPath("kdialog"), $async$_getPathToExecutable$0); case 15: // returning from await. t1 = $async$result; $async$returnValue = t1; // goto return $async$goto = 1; break; // goto join $async$goto = 13; break; case 14: // else throw $async$exception; case 13: // join // goto after finally $async$goto = 10; break; case 7: // uncaught // goto catch $async$goto = 4; break; case 10: // after finally $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception1 = $async$currentError; $async$goto = type$.Exception._is(A.unwrapException($async$exception1)) ? 16 : 18; break; case 16: // then $async$goto = 19; return A._asyncAwait(A.isExecutableOnPath("zenity"), $async$_getPathToExecutable$0); case 19: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; // goto join $async$goto = 17; break; case 18: // else throw $async$exception1; case 17: // join // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_getPathToExecutable$0, $async$completer); } }; A.KDialogHandler.prototype = { generateCommandLineArguments$5$fileFilter$initialDirectory$multipleFiles$pickDirectory(dialogTitle, fileFilter, initialDirectory, multipleFiles, pickDirectory) { var $arguments = A._setArrayType(["--title", dialogTitle], type$.JSArray_String); $arguments.push("--getopenfilename"); if (initialDirectory.length !== 0) $arguments.push(initialDirectory); if (fileFilter.length !== 0) { if (initialDirectory.length === 0) $arguments.push("."); $arguments.push(fileFilter); } return $arguments; }, fileTypeToFileFilter$2(type, allowedExtensions) { switch (type.index) { case 0: return ""; case 4: return "Audio File (*.aac *.midi *.mp3 *.ogg *.wav)"; case 5: return new A.MappedListIterable(allowedExtensions, new A.KDialogHandler_fileTypeToFileFilter_closure(), A._arrayInstanceType(allowedExtensions)._eval$1("MappedListIterable<1,String>")).join$1(0, " File, ") + " File (*." + B.JSArray_methods.join$1(allowedExtensions, " *.") + ")"; case 2: return "Image File (*.bmp *.gif *.jpeg *.jpg *.png)"; case 1: return "Media File (*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv *.bmp *.gif *.jpeg *.jpg *.png)"; case 3: return "Video File (*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv)"; default: throw A.wrapException(A.Exception_Exception("unknown file type")); } }, resultStringToFilePaths$1(fileSelectionResult) { var t1; if (B.JSString_methods.trim$0(fileSelectionResult).length === 0) return A._setArrayType([], type$.JSArray_String); t1 = type$.MappedListIterable_String_String; return A.List_List$of(new A.MappedListIterable(A._setArrayType(fileSelectionResult.split("\n"), type$.JSArray_String), new A.KDialogHandler_resultStringToFilePaths_closure(), t1), true, t1._eval$1("ListIterable.E")); } }; A.KDialogHandler_fileTypeToFileFilter_closure.prototype = { call$1(ext) { return ext.toUpperCase(); }, $signature: 108 }; A.KDialogHandler_resultStringToFilePaths_closure.prototype = { call$1(path) { return J.startsWith$1$s(path, "/") ? path : "/" + path; }, $signature: 108 }; A.QarmaAndZenityHandler.prototype = { generateCommandLineArguments$5$fileFilter$initialDirectory$multipleFiles$pickDirectory(dialogTitle, fileFilter, initialDirectory, multipleFiles, pickDirectory) { var $arguments = A._setArrayType(["--file-selection", "--title", dialogTitle], type$.JSArray_String); if (initialDirectory.length !== 0) $arguments.push("--filename=" + initialDirectory); if (fileFilter.length !== 0) $arguments.push("--file-filter=" + fileFilter); return $arguments; }, fileTypeToFileFilter$2(type, allowedExtensions) { switch (type.index) { case 0: return ""; case 4: return "*.aac *.midi *.mp3 *.ogg *.wav"; case 5: return "*." + B.JSArray_methods.join$1(allowedExtensions, " *."); case 2: return "*.bmp *.gif *.jpeg *.jpg *.png"; case 1: return "*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv *.bmp *.gif *.jpeg *.jpg *.png"; case 3: return "*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv"; default: throw A.wrapException(A.Exception_Exception("unknown file type")); } }, resultStringToFilePaths$1(fileSelectionResult) { var t1; if (B.JSString_methods.trim$0(fileSelectionResult).length === 0) return A._setArrayType([], type$.JSArray_String); t1 = type$.MappedListIterable_String_String; return A.List_List$of(new A.MappedListIterable(A._setArrayType(fileSelectionResult.split("|/"), type$.JSArray_String), new A.QarmaAndZenityHandler_resultStringToFilePaths_closure(), t1), true, t1._eval$1("ListIterable.E")); } }; A.QarmaAndZenityHandler_resultStringToFilePaths_closure.prototype = { call$1(path) { return J.startsWith$1$s(path, "/") ? path : "/" + path; }, $signature: 108 }; A.PlatformFile.prototype = { $eq(_, other) { var t1, t2, _this = this; if (other == null) return false; if (_this === other) return true; if (other instanceof A.PlatformFile) if (other.name == _this.name) { t1 = other.bytes; t2 = _this.bytes; t1 = (t1 == null ? t2 == null : t1 === t2) && J.$eq$(other.readStream, _this.readStream) && other.identifier == _this.identifier && other.size == _this.size; } else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { return 0; }, toString$0(_) { var _this = this; return "PlatformFile(, name: " + A.S(_this.name) + ", bytes: " + A.S(_this.bytes) + ", readStream: " + A.S(_this.readStream) + ", size: " + A.S(_this.size) + ")"; }, get$name(receiver) { return this.name; } }; A.filePathsToPlatformFiles_closure.prototype = { call$1(filePath) { return filePath.length !== 0; }, $signature: 52 }; A.filePathsToPlatformFiles_closure0.prototype = { call$1(filePath) { return this.$call$body$filePathsToPlatformFiles_closure(filePath); }, $call$body$filePathsToPlatformFiles_closure(filePath) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PlatformFile), $async$returnValue, $async$self = this, file, $async$temp1, $async$temp2; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start file = A.File_File(filePath); if (!$async$self.withData) { $async$returnValue = A.createPlatformFile(file, null, null); // goto return $async$goto = 1; break; } $async$temp1 = A; $async$temp2 = file; $async$goto = 3; return A._asyncAwait(file.readAsBytes$0(), $async$call$1); case 3: // returning from await. $async$returnValue = $async$temp1.createPlatformFile($async$temp2, $async$result, null); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 2711 }; A.Int64.prototype = { $add(_, other) { var o = A.Int64__promote(other), sum0 = this._l + o._l, sum1 = this._m + o._m + (sum0 >>> 22); return new A.Int64(sum0 & 4194303, sum1 & 4194303, this._h + o._h + (sum1 >>> 22) & 1048575); }, $sub(_, other) { var o = A.Int64__promote(other); return A.Int64__sub(this._l, this._m, this._h, o._l, o._m, o._h); }, $mul(_, other) { var a3, b0, t3, b1, b2, b3, b4, p0, p1, p2, p3, p4, c0, c1, o = A.Int64__promote(other), t1 = this._l, a0 = t1 & 8191, t2 = this._m, a1 = (t1 >>> 13 | (t2 & 15) << 9) >>> 0, a2 = t2 >>> 4 & 8191; t1 = this._h; a3 = (t2 >>> 17 | (t1 & 255) << 5) >>> 0; t2 = o._l; b0 = t2 & 8191; t3 = o._m; b1 = (t2 >>> 13 | (t3 & 15) << 9) >>> 0; b2 = t3 >>> 4 & 8191; t2 = o._h; b3 = (t3 >>> 17 | (t2 & 255) << 5) >>> 0; b4 = t2 >>> 8 & 4095; p0 = a0 * b0; p1 = a1 * b0; p2 = a2 * b0; p3 = a3 * b0; p4 = (t1 >>> 8 & 4095) * b0; if (b1 !== 0) { p1 += a0 * b1; p2 += a1 * b1; p3 += a2 * b1; p4 += a3 * b1; } if (b2 !== 0) { p2 += a0 * b2; p3 += a1 * b2; p4 += a2 * b2; } if (b3 !== 0) { p3 += a0 * b3; p4 += a1 * b3; } if (b4 !== 0) p4 += a0 * b4; c0 = (p0 & 4194303) + ((p1 & 511) << 13); c1 = (p0 >>> 22) + (p1 >>> 9) + ((p2 & 262143) << 4) + ((p3 & 31) << 17) + (c0 >>> 22); return new A.Int64(c0 & 4194303, c1 & 4194303, (p2 >>> 18) + (p3 >>> 5) + ((p4 & 4095) << 8) + (c1 >>> 22) & 1048575); }, $tdiv(_, other) { return A.Int64__divide(this, other, 1); }, remainder$1(_, other) { return A.Int64__divide(this, other, 2); }, $eq(_, other) { var o, _this = this; if (other == null) return false; if (other instanceof A.Int64) o = other; else if (A._isInt(other)) { if (_this._h === 0 && _this._m === 0) return _this._l === other; if ((other & 4194303) === other) return false; o = A.Int64_Int64(other); } else o = null; if (o != null) return _this._l === o._l && _this._m === o._m && _this._h === o._h; return false; }, compareTo$1(_, other) { return this._compareTo$1(other); }, _compareTo$1(other) { var o = A.Int64__promote(other), t1 = this._h, signa = t1 >>> 19, t2 = o._h; if (signa !== t2 >>> 19) return signa === 0 ? 1 : -1; if (t1 > t2) return 1; else if (t1 < t2) return -1; t1 = this._m; t2 = o._m; if (t1 > t2) return 1; else if (t1 < t2) return -1; t1 = this._l; t2 = o._l; if (t1 > t2) return 1; else if (t1 < t2) return -1; return 0; }, $lt(_, other) { return this._compareTo$1(other) < 0; }, $gt(_, other) { return this._compareTo$1(other) > 0; }, $ge(_, other) { return this._compareTo$1(other) >= 0; }, get$isNegative(_) { return (this._h & 524288) !== 0; }, get$isZero() { return this._h === 0 && this._m === 0 && this._l === 0; }, get$hashCode(_) { var t1 = this._m; return (((t1 & 1023) << 22 | this._l) ^ (this._h << 12 | t1 >>> 10 & 4095)) >>> 0; }, abs$0(_) { var _this = this, t1 = _this._h; return (t1 & 524288) !== 0 ? A.Int64__sub(0, 0, 0, _this._l, _this._m, t1) : _this; }, toDouble$0(_) { return this.toInt$0(0); }, toInt$0(_) { var l = this._l, m = this._m, h = this._h; if ((h & 524288) !== 0) return -(1 + (~l & 4194303) + 4194304 * (~m & 4194303) + 17592186044416 * (~h & 1048575)); else return l + 4194304 * m + 17592186044416 * h; }, toString$0(_) { var d00, d10, sign, d0 = this._l, d1 = this._m, d2 = this._h; if ((d2 & 524288) !== 0) { d0 = 0 - d0; d00 = d0 & 4194303; d1 = 0 - d1 - (B.JSInt_methods._shrOtherPositive$1(d0, 22) & 1); d10 = d1 & 4194303; d2 = 0 - d2 - (B.JSInt_methods._shrOtherPositive$1(d1, 22) & 1) & 1048575; d1 = d10; d0 = d00; sign = "-"; } else sign = ""; return A.Int64__toRadixStringUnsigned(10, d0, d1, d2, sign); }, _toRadixString$1(radix) { var d00, d10, sign, d0 = this._l, d1 = this._m, d2 = this._h; if ((d2 & 524288) !== 0) { d0 = 0 - d0; d00 = d0 & 4194303; d1 = 0 - d1 - (B.JSInt_methods._shrOtherPositive$1(d0, 22) & 1); d10 = d1 & 4194303; d2 = 0 - d2 - (B.JSInt_methods._shrOtherPositive$1(d1, 22) & 1) & 1048575; d1 = d10; d0 = d00; sign = "-"; } else sign = ""; return A.Int64__toRadixStringUnsigned(radix, d0, d1, d2, sign); }, $isComparable: 1 }; A.AnimationStatus.prototype = { toString$0(_) { return "AnimationStatus." + this._core$_name; } }; A.Animation0.prototype = { toString$0(_) { return "#" + A.shortHash(this) + "(" + this.toStringDetails$0() + ")"; }, toStringDetails$0() { switch (this.get$status(this)) { case B.AnimationStatus_1: return "\u25b6"; case B.AnimationStatus_2: return "\u25c0"; case B.AnimationStatus_3: return "\u23ed"; case B.AnimationStatus_0: return "\u23ee"; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._AnimationDirection.prototype = { toString$0(_) { return "_AnimationDirection." + this._core$_name; } }; A.AnimationBehavior.prototype = { toString$0(_) { return "AnimationBehavior." + this._core$_name; } }; A.AnimationController.prototype = { resync$1(vsync) { var t2, t3, t1 = this._ticker; t1.toString; t2 = vsync.createTicker$1(this.get$_animation_controller$_tick()); this._ticker = t2; t2.toString; t3 = t1._ticker$_future; if (t3 != null) { t2._ticker$_future = t3; t2._startTime = t1._startTime; if (!t2._muted) t3 = t2._animationId == null; else t3 = false; if (t3) t2._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(t2.get$_ticker$_tick(), false); t1._ticker$_future = null; t1.unscheduleTick$0(); } t1.dispose$0(0); }, get$value(_) { return A._lateReadCheck(this.__AnimationController__value, "_value"); }, set$value(_, newValue) { var _this = this; _this.stop$0(0); _this._internalSetValue$1(newValue); _this.notifyListeners$0(); _this._checkStatusChanged$0(); }, get$velocity() { var t1 = this._ticker; if (!(t1 != null && t1._ticker$_future != null)) return 0; t1 = this._simulation; t1.toString; return t1.dx$1(0, this._lastElapsedDuration._duration / 1000000); }, _internalSetValue$1(newValue) { var _this = this, t1 = _this.lowerBound, t2 = _this.upperBound, t3 = J.clamp$2$n(newValue, t1, t2); _this.__AnimationController__value = t3; if (A._lateReadCheck(t3, "_value") === t1) _this.__AnimationController__status = B.AnimationStatus_0; else if (A._lateReadCheck(_this.__AnimationController__value, "_value") === t2) _this.__AnimationController__status = B.AnimationStatus_3; else _this.__AnimationController__status = _this._direction === B._AnimationDirection_0 ? B.AnimationStatus_1 : B.AnimationStatus_2; }, get$status(_) { return A._lateReadCheck(this.__AnimationController__status, "_status"); }, forward$1$from(_, from) { var _this = this; _this._direction = B._AnimationDirection_0; if (from != null) _this.set$value(0, from); return _this._animateToInternal$1(_this.upperBound); }, forward$0($receiver) { return this.forward$1$from($receiver, null); }, reverse$1$from(_, from) { var _this = this; _this._direction = B._AnimationDirection_1; if (from != null) _this.set$value(0, from); return _this._animateToInternal$1(_this.lowerBound); }, reverse$0($receiver) { return this.reverse$1$from($receiver, null); }, _animateToInternal$3$curve$duration(target, curve, duration) { var range, remainingFraction, t1, directionDuration, simulationDuration, _this = this, _s6_ = "_value"; A._lateReadCheck($.SemanticsBinding__instance.SemanticsBinding___SemanticsBinding__accessibilityFeatures, "_accessibilityFeatures").toString; if (duration == null) { range = _this.upperBound - _this.lowerBound; remainingFraction = isFinite(range) ? Math.abs(target - A._lateReadCheck(_this.__AnimationController__value, _s6_)) / range : 1; if (_this._direction === B._AnimationDirection_1 && _this.reverseDuration != null) { t1 = _this.reverseDuration; t1.toString; directionDuration = t1; } else { t1 = _this.duration; t1.toString; directionDuration = t1; } simulationDuration = new A.Duration(B.JSNumber_methods.round$0(directionDuration._duration * remainingFraction)); } else simulationDuration = target == A._lateReadCheck(_this.__AnimationController__value, _s6_) ? B.Duration_0 : duration; _this.stop$0(0); t1 = simulationDuration._duration; if (t1 === 0) { if (A._lateReadCheck(_this.__AnimationController__value, _s6_) != target) { _this.__AnimationController__value = J.clamp$2$n(target, _this.lowerBound, _this.upperBound); _this.notifyListeners$0(); } _this.__AnimationController__status = _this._direction === B._AnimationDirection_0 ? B.AnimationStatus_3 : B.AnimationStatus_0; _this._checkStatusChanged$0(); return A.TickerFuture$complete(); } return _this._startSimulation$1(new A._InterpolationSimulation(t1 / 1000000, A._lateReadCheck(_this.__AnimationController__value, _s6_), target, curve, B.Tolerance_Gdw)); }, _animateToInternal$1(target) { return this._animateToInternal$3$curve$duration(target, B.C__Linear, null); }, repeat$0(_) { var t1, t2, _this = this, min = _this.lowerBound, max = _this.upperBound, period = _this.duration; _this.stop$0(0); t1 = A._lateReadCheck(_this.__AnimationController__value, "_value"); t2 = period._duration / 1000000; t1 = max === min ? 0 : t1 / (max - min) * t2; return _this._startSimulation$1(new A._RepeatingSimulation(min, max, false, _this.get$_directionSetter(), t2, t1, B.Tolerance_Gdw)); }, _directionSetter$1(direction) { this._direction = direction; this.__AnimationController__status = direction === B._AnimationDirection_0 ? B.AnimationStatus_1 : B.AnimationStatus_2; this._checkStatusChanged$0(); }, fling$1$velocity(velocity) { var target, simulation, _this = this, springDescription = $.$get$_kFlingSpringDescription(), t1 = velocity < 0; _this._direction = t1 ? B._AnimationDirection_1 : B._AnimationDirection_0; target = t1 ? _this.lowerBound - 0.01 : _this.upperBound + 0.01; A._lateReadCheck($.SemanticsBinding__instance.SemanticsBinding___SemanticsBinding__accessibilityFeatures, "_accessibilityFeatures").toString; simulation = new A.SpringSimulation(target, A._SpringSolution__SpringSolution(springDescription, A._lateReadCheck(_this.__AnimationController__value, "_value") - target, velocity), B.Tolerance_Gdw); simulation.tolerance = B.Tolerance_qbZ; _this.stop$0(0); return _this._startSimulation$1(simulation); }, fling$0() { return this.fling$1$velocity(1); }, animateWith$1(simulation) { this.stop$0(0); this._direction = B._AnimationDirection_0; return this._startSimulation$1(simulation); }, _startSimulation$1(simulation) { var result, _this = this; _this._simulation = simulation; _this._lastElapsedDuration = B.Duration_0; _this.__AnimationController__value = J.clamp$2$n(simulation.x$1(0, 0), _this.lowerBound, _this.upperBound); result = _this._ticker.start$0(0); _this.__AnimationController__status = _this._direction === B._AnimationDirection_0 ? B.AnimationStatus_1 : B.AnimationStatus_2; _this._checkStatusChanged$0(); return result; }, stop$1$canceled(_, canceled) { this._lastElapsedDuration = this._simulation = null; this._ticker.stop$1$canceled(0, canceled); }, stop$0($receiver) { return this.stop$1$canceled($receiver, true); }, dispose$0(_) { var _this = this; _this._ticker.dispose$0(0); _this._ticker = null; _this.AnimationLocalStatusListenersMixin__statusListeners.clear$0(0); _this.AnimationLocalListenersMixin__listeners.clear$0(0); _this.super$AnimationEagerListenerMixin$dispose(0); }, _checkStatusChanged$0() { var _this = this, t1 = A._lateReadCheck(_this.__AnimationController__status, "_status"); if (_this._lastReportedStatus !== t1) { _this._lastReportedStatus = t1; _this.notifyStatusListeners$1(t1); } }, _animation_controller$_tick$1(elapsed) { var elapsedInSeconds, _this = this; _this._lastElapsedDuration = elapsed; elapsedInSeconds = elapsed._duration / 1000000; _this.__AnimationController__value = J.clamp$2$n(_this._simulation.x$1(0, elapsedInSeconds), _this.lowerBound, _this.upperBound); if (_this._simulation.isDone$1(elapsedInSeconds)) { _this.__AnimationController__status = _this._direction === B._AnimationDirection_0 ? B.AnimationStatus_3 : B.AnimationStatus_0; _this.stop$1$canceled(0, false); } _this.notifyListeners$0(); _this._checkStatusChanged$0(); }, toStringDetails$0() { var ticker, label, _this = this, t1 = _this._ticker, t2 = t1 == null, paused = !t2 && t1._ticker$_future != null ? "" : "; paused"; if (t2) ticker = "; DISPOSED"; else ticker = t1._muted ? "; silenced" : ""; t1 = _this.debugLabel; label = t1 == null ? "" : "; for " + t1; return _this.super$Animation$toStringDetails() + " " + J.toStringAsFixed$1$n(A._lateReadCheck(_this.__AnimationController__value, "_value"), 3) + paused + ticker + label; } }; A._InterpolationSimulation.prototype = { x$1(_, timeInSeconds) { var t1, t2, _this = this, t = B.JSNumber_methods.clamp$2(timeInSeconds / _this._durationInSeconds, 0, 1); if (t === 0) return _this._begin; else { t1 = _this._animation_controller$_end; if (t === 1) return t1; else { t2 = _this._begin; return t2 + (t1 - t2) * _this._curve.transform$1(0, t); } } }, dx$1(_, timeInSeconds) { this.tolerance.toString; return (this.x$1(0, timeInSeconds + 0.001) - this.x$1(0, timeInSeconds - 0.001)) / 0.002; }, isDone$1(timeInSeconds) { return timeInSeconds > this._durationInSeconds; } }; A._RepeatingSimulation.prototype = { x$1(_, timeInSeconds) { var _this = this, totalTimeInSeconds = timeInSeconds + _this._initialT, t1 = _this._periodInSeconds, t = B.JSNumber_methods.$mod(totalTimeInSeconds / t1, 1); B.JSNumber_methods.$tdiv(totalTimeInSeconds, t1); _this.directionSetter.call$1(B._AnimationDirection_0); t1 = A.lerpDouble(_this.min, _this.max, t); t1.toString; return t1; }, dx$1(_, timeInSeconds) { return (this.max - this.min) / this._periodInSeconds; }, isDone$1(timeInSeconds) { return false; } }; A._AnimationController_Animation_AnimationEagerListenerMixin.prototype = {}; A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin.prototype = {}; A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; A._AlwaysCompleteAnimation.prototype = { addListener$1(_, listener) { }, removeListener$1(_, listener) { }, addStatusListener$1(listener) { }, removeStatusListener$1(listener) { }, get$status(_) { return B.AnimationStatus_3; }, get$value(_) { return 1; }, toString$0(_) { return "kAlwaysCompleteAnimation"; } }; A._AlwaysDismissedAnimation.prototype = { addListener$1(_, listener) { }, removeListener$1(_, listener) { }, addStatusListener$1(listener) { }, removeStatusListener$1(listener) { }, get$status(_) { return B.AnimationStatus_0; }, get$value(_) { return 0; }, toString$0(_) { return "kAlwaysDismissedAnimation"; } }; A.AlwaysStoppedAnimation.prototype = { addListener$1(_, listener) { }, removeListener$1(_, listener) { }, addStatusListener$1(listener) { }, removeStatusListener$1(listener) { }, get$status(_) { return B.AnimationStatus_1; }, toStringDetails$0() { return this.super$Animation$toStringDetails() + " " + this.value.toString$0(0) + "; paused"; }, get$value(receiver) { return this.value; } }; A.AnimationWithParentMixin.prototype = { addListener$1(_, listener) { return this.get$parent(this).addListener$1(0, listener); }, removeListener$1(_, listener) { return this.get$parent(this).removeListener$1(0, listener); }, addStatusListener$1(listener) { return this.get$parent(this).addStatusListener$1(listener); }, removeStatusListener$1(listener) { return this.get$parent(this).removeStatusListener$1(listener); }, get$status(_) { var t1 = this.get$parent(this); return t1.get$status(t1); } }; A.ProxyAnimation.prototype = { set$parent(_, value) { var t2, _this = this, t1 = _this._animations$_parent; if (value == t1) return; if (t1 != null) { _this._status = t1.get$status(t1); t1 = _this._animations$_parent; _this._animations$_value = t1.get$value(t1); if (_this.AnimationLazyListenerMixin__listenerCounter > 0) _this.didStopListening$0(); } _this._animations$_parent = value; if (value != null) { if (_this.AnimationLazyListenerMixin__listenerCounter > 0) _this.didStartListening$0(); t1 = _this._animations$_value; t2 = _this._animations$_parent; t2 = t2.get$value(t2); if (t1 == null ? t2 != null : t1 !== t2) _this.notifyListeners$0(); t1 = _this._status; t2 = _this._animations$_parent; if (t1 != t2.get$status(t2)) { t1 = _this._animations$_parent; _this.notifyStatusListeners$1(t1.get$status(t1)); } _this._animations$_value = _this._status = null; } }, didStartListening$0() { var _this = this, t1 = _this._animations$_parent; if (t1 != null) { t1.addListener$1(0, _this.get$notifyListeners()); _this._animations$_parent.addStatusListener$1(_this.get$notifyStatusListeners()); } }, didStopListening$0() { var _this = this, t1 = _this._animations$_parent; if (t1 != null) { t1.removeListener$1(0, _this.get$notifyListeners()); _this._animations$_parent.removeStatusListener$1(_this.get$notifyStatusListeners()); } }, get$status(_) { var t1 = this._animations$_parent; if (t1 != null) t1 = t1.get$status(t1); else { t1 = this._status; t1.toString; } return t1; }, get$value(_) { var t1 = this._animations$_parent; if (t1 != null) t1 = t1.get$value(t1); else { t1 = this._animations$_value; t1.toString; } return t1; }, toString$0(_) { var _this = this, t1 = _this._animations$_parent; if (t1 == null) return "ProxyAnimation(null; " + _this.super$Animation$toStringDetails() + " " + J.toStringAsFixed$1$n(_this.get$value(_this), 3) + ")"; return t1.toString$0(0) + "\u27a9ProxyAnimation"; } }; A.ReverseAnimation.prototype = { addListener$1(_, listener) { this.didRegisterListener$0(); this.parent.addListener$1(0, listener); }, removeListener$1(_, listener) { this.parent.removeListener$1(0, listener); this.didUnregisterListener$0(); }, didStartListening$0() { this.parent.addStatusListener$1(this.get$_statusChangeHandler()); }, didStopListening$0() { this.parent.removeStatusListener$1(this.get$_statusChangeHandler()); }, _statusChangeHandler$1($status) { this.notifyStatusListeners$1(this._reverseStatus$1($status)); }, get$status(_) { var t1 = this.parent; return this._reverseStatus$1(t1.get$status(t1)); }, get$value(_) { var t1 = this.parent; return 1 - t1.get$value(t1); }, _reverseStatus$1($status) { switch ($status) { case B.AnimationStatus_1: return B.AnimationStatus_2; case B.AnimationStatus_2: return B.AnimationStatus_1; case B.AnimationStatus_3: return B.AnimationStatus_0; case B.AnimationStatus_0: return B.AnimationStatus_3; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, toString$0(_) { return A.S(this.parent) + "\u27aaReverseAnimation"; } }; A.CurvedAnimation.prototype = { _updateCurveDirection$1($status) { var _this = this; switch ($status) { case B.AnimationStatus_0: case B.AnimationStatus_3: _this._curveDirection = null; break; case B.AnimationStatus_1: if (_this._curveDirection == null) _this._curveDirection = B.AnimationStatus_1; break; case B.AnimationStatus_2: if (_this._curveDirection == null) _this._curveDirection = B.AnimationStatus_2; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_useForwardCurve() { if (this.reverseCurve != null) { var t1 = this._curveDirection; if (t1 == null) { t1 = this.parent; t1 = t1.get$status(t1); } t1 = t1 !== B.AnimationStatus_2; } else t1 = true; return t1; }, dispose$0(_) { this.parent.removeStatusListener$1(this.get$_updateCurveDirection()); }, get$value(_) { var _this = this, activeCurve = _this.get$_useForwardCurve() ? _this.curve : _this.reverseCurve, t1 = _this.parent, t = t1.get$value(t1); if (activeCurve == null) return t; if (t === 0 || t === 1) return t; return activeCurve.transform$1(0, t); }, toString$0(_) { var _this = this; if (_this.reverseCurve == null) return A.S(_this.parent) + "\u27a9" + A.S(_this.curve); if (_this.get$_useForwardCurve()) return A.S(_this.parent) + "\u27a9" + A.S(_this.curve) + "\u2092\u2099/" + A.S(_this.reverseCurve); return A.S(_this.parent) + "\u27a9" + A.S(_this.curve) + "/" + A.S(_this.reverseCurve) + "\u2092\u2099"; }, get$parent(receiver) { return this.parent; } }; A._TrainHoppingMode.prototype = { toString$0(_) { return "_TrainHoppingMode." + this._core$_name; } }; A.TrainHoppingAnimation.prototype = { _statusChangeHandler$1($status) { if ($status != this._lastStatus) { this.notifyListeners$0(); this._lastStatus = $status; } }, get$status(_) { var t1 = this._currentTrain; return t1.get$status(t1); }, _valueChangeHandler$0() { var t2, hop, _this = this, t1 = _this._nextTrain; if (t1 != null) { switch (_this._mode.index) { case 0: t1 = t1.get$value(t1); t2 = _this._currentTrain; hop = t1 <= t2.get$value(t2); break; case 1: t1 = t1.get$value(t1); t2 = _this._currentTrain; hop = t1 >= t2.get$value(t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (hop) { t1 = _this._currentTrain; t2 = _this.get$_statusChangeHandler(); t1.removeStatusListener$1(t2); t1.removeListener$1(0, _this.get$_valueChangeHandler()); t1 = _this._nextTrain; _this._currentTrain = t1; _this._nextTrain = null; t1.addStatusListener$1(t2); t2 = _this._currentTrain; _this._statusChangeHandler$1(t2.get$status(t2)); } } else hop = false; t1 = _this._currentTrain; t1 = t1.get$value(t1); if (t1 != _this._lastValue) { _this.notifyListeners$0(); _this._lastValue = t1; } if (hop && _this.onSwitchedTrain != null) _this.onSwitchedTrain.call$0(); }, get$value(_) { var t1 = this._currentTrain; return t1.get$value(t1); }, dispose$0(_) { var t1, t2, _this = this; _this._currentTrain.removeStatusListener$1(_this.get$_statusChangeHandler()); t1 = _this.get$_valueChangeHandler(); _this._currentTrain.removeListener$1(0, t1); _this._currentTrain = null; t2 = _this._nextTrain; if (t2 != null) t2.removeListener$1(0, t1); _this._nextTrain = null; _this.AnimationLocalListenersMixin__listeners.clear$0(0); _this.AnimationLocalStatusListenersMixin__statusListeners.clear$0(0); _this.super$AnimationEagerListenerMixin$dispose(0); }, toString$0(_) { var _this = this; if (_this._nextTrain != null) return A.S(_this._currentTrain) + "\u27a9TrainHoppingAnimation(next: " + A.S(_this._nextTrain) + ")"; return A.S(_this._currentTrain) + "\u27a9TrainHoppingAnimation(no next)"; } }; A.CompoundAnimation.prototype = { didStartListening$0() { var t3, _this = this, t1 = _this.first, t2 = _this.get$_maybeNotifyListeners(); t1.addListener$1(0, t2); t3 = _this.get$_maybeNotifyStatusListeners(); t1.addStatusListener$1(t3); t1 = _this.next; t1.addListener$1(0, t2); t1.addStatusListener$1(t3); }, didStopListening$0() { var t3, _this = this, t1 = _this.first, t2 = _this.get$_maybeNotifyListeners(); t1.removeListener$1(0, t2); t3 = _this.get$_maybeNotifyStatusListeners(); t1.removeStatusListener$1(t3); t1 = _this.next; t1.removeListener$1(0, t2); t1.removeStatusListener$1(t3); }, get$status(_) { var t1 = this.next; if (t1.get$status(t1) === B.AnimationStatus_1 || t1.get$status(t1) === B.AnimationStatus_2) return t1.get$status(t1); t1 = this.first; return t1.get$status(t1); }, toString$0(_) { return "CompoundAnimation(" + this.first.toString$0(0) + ", " + this.next.toString$0(0) + ")"; }, _maybeNotifyStatusListeners$1(_) { var _this = this; if (_this.get$status(_this) != _this._lastStatus) { _this._lastStatus = _this.get$status(_this); _this.notifyStatusListeners$1(_this.get$status(_this)); } }, _maybeNotifyListeners$0() { var _this = this; if (!J.$eq$(_this.get$value(_this), _this._lastValue)) { _this._lastValue = _this.get$value(_this); _this.notifyListeners$0(); } } }; A.AnimationMin.prototype = { get$value(_) { var t2, t1 = this.first; t1 = t1.get$value(t1); t2 = this.next; t2 = t2.get$value(t2); return Math.min(A.checkNum(t1), A.checkNum(t2)); } }; A._CompoundAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin.prototype = {}; A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; A._CurvedAnimation_Animation_AnimationWithParentMixin.prototype = {}; A._ProxyAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin.prototype = {}; A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; A._ReverseAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; A._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin.prototype = {}; A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin.prototype = {}; A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin.prototype = {}; A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; A.ParametricCurve.prototype = { transform$1(_, t) { return this.transformInternal$1(t); }, transformInternal$1(t) { throw A.wrapException(A.UnimplementedError$(null)); }, toString$0(_) { return "ParametricCurve"; } }; A.Curve.prototype = { transform$1(_, t) { if (t === 0 || t === 1) return t; return this.super$ParametricCurve$transform(0, t); } }; A._Linear.prototype = { transformInternal$1(t) { return t; } }; A.SawTooth.prototype = { transformInternal$1(t) { t *= this.count; return t - (t < 0 ? Math.ceil(t) : Math.floor(t)); }, toString$0(_) { return "SawTooth(" + this.count + ")"; } }; A.Interval.prototype = { transformInternal$1(t) { var t1 = this.begin; t = B.JSNumber_methods.clamp$2((t - t1) / (this.end - t1), 0, 1); if (t === 0 || t === 1) return t; return this.curve.transform$1(0, t); }, toString$0(_) { var _this = this, t1 = _this.curve; if (!(t1 instanceof A._Linear)) return "Interval(" + A.S(_this.begin) + "\u22ef" + A.S(_this.end) + ")\u27a9" + A.S(t1); return "Interval(" + A.S(_this.begin) + "\u22ef" + A.S(_this.end) + ")"; } }; A.Threshold.prototype = { transformInternal$1(t) { return t < this.threshold ? 0 : 1; } }; A.Cubic.prototype = { _evaluateCubic$3(a, b, m) { var t1 = 1 - m; return 3 * a * t1 * t1 * m + 3 * b * t1 * m * m + m * m * m; }, transformInternal$1(t) { var t1, t2, start, end, midpoint, estimate, _this = this; for (t1 = _this.a, t2 = _this.c, start = 0, end = 1; true;) { midpoint = (start + end) / 2; estimate = _this._evaluateCubic$3(t1, t2, midpoint); if (Math.abs(t - estimate) < 0.001) return _this._evaluateCubic$3(_this.b, _this.d, midpoint); if (estimate < t) start = midpoint; else end = midpoint; } }, toString$0(_) { var _this = this; return "Cubic(" + B.JSNumber_methods.toStringAsFixed$1(_this.a, 2) + ", " + B.JSNumber_methods.toStringAsFixed$1(_this.b, 2) + ", " + B.JSNumber_methods.toStringAsFixed$1(_this.c, 2) + ", " + B.JSNumber_methods.toStringAsFixed$1(_this.d, 2) + ")"; } }; A.ThreePointCubic.prototype = { transformInternal$1(t) { var firstCurve = t < 0.166666, scaleX = firstCurve ? 0.166666 : 0.833334, scaleY = firstCurve ? 0.4 : 0.6, scaledT = (t - (firstCurve ? 0 : 0.166666)) / scaleX; if (firstCurve) return new A.Cubic(0.05 / scaleX, 0 / scaleY, 0.133333 / scaleX, 0.06 / scaleY).transform$1(0, scaledT) * scaleY; else return new A.Cubic(0.04166699999999998 / scaleX, 0.41999999999999993 / scaleY, 0.08333399999999999 / scaleX, 0.6 / scaleY).transform$1(0, scaledT) * scaleY + 0.4; }, toString$0(_) { return "ThreePointCubic(" + B.Offset_ILV.toString$0(0) + ", " + B.Offset_dGA.toString$0(0) + ", " + B.Offset_GNx.toString$0(0) + ", " + B.Offset_Muk.toString$0(0) + ", " + B.Offset_chs0.toString$0(0) + ") "; } }; A.FlippedCurve.prototype = { transformInternal$1(t) { return 1 - this.curve.transform$1(0, 1 - t); }, toString$0(_) { return "FlippedCurve(" + this.curve.toString$0(0) + ")"; } }; A._DecelerateCurve.prototype = { transformInternal$1(t) { t = 1 - t; return 1 - t * t; } }; A.ElasticOutCurve.prototype = { transformInternal$1(t) { return Math.pow(2, -10 * t) * Math.sin((t - 0.1) * 6.283185307179586 / 0.4) + 1; }, toString$0(_) { return "ElasticOutCurve(0.4)"; } }; A.AnimationLazyListenerMixin.prototype = { didRegisterListener$0() { if (this.AnimationLazyListenerMixin__listenerCounter === 0) this.didStartListening$0(); ++this.AnimationLazyListenerMixin__listenerCounter; }, didUnregisterListener$0() { if (--this.AnimationLazyListenerMixin__listenerCounter === 0) this.didStopListening$0(); } }; A.AnimationEagerListenerMixin.prototype = { didRegisterListener$0() { }, didUnregisterListener$0() { }, dispose$0(_) { } }; A.AnimationLocalListenersMixin.prototype = { addListener$1(_, listener) { var t1; this.didRegisterListener$0(); t1 = this.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(listener); }, removeListener$1(_, listener) { if (this.AnimationLocalListenersMixin__listeners.remove$1(0, listener)) this.didUnregisterListener$0(); }, notifyListeners$0() { var listener, exception, stack, t2, _i, t3, exception0, rti, t4, t5, _this = this, t1 = _this.AnimationLocalListenersMixin__listeners, localListeners = A.List_List$of(t1, true, type$.void_Function); for (t2 = localListeners.length, _i = 0; _i < t2; ++_i) { t3 = {}; listener = localListeners[_i]; t3.collector = null; try { if (t1.contains$1(0, listener)) listener.call$0(); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); rti = _this instanceof A.Closure ? A.closureFunctionType(_this) : null; t4 = A.ErrorDescription$("while notifying listeners for " + A.createRuntimeType(rti == null ? A.instanceType(_this) : rti).toString$0(0)); t3 = t3.collector; t5 = $.$get$FlutterError_onError(); if (t5 != null) t5.call$1(new A.FlutterErrorDetails(exception, stack, "animation library", t4, null, t3, false)); } } } }; A.AnimationLocalStatusListenersMixin.prototype = { addStatusListener$1(listener) { var t1; this.didRegisterListener$0(); t1 = this.AnimationLocalStatusListenersMixin__statusListeners; t1._isDirty = true; t1._observer_list$_list.push(listener); }, removeStatusListener$1(listener) { if (this.AnimationLocalStatusListenersMixin__statusListeners.remove$1(0, listener)) this.didUnregisterListener$0(); }, notifyStatusListeners$1($status) { var listener, exception, stack, t2, _i, exception0, rti, t3, t4, _this = this, t1 = _this.AnimationLocalStatusListenersMixin__statusListeners, localListeners = A.List_List$of(t1, true, type$.void_Function_AnimationStatus); for (t2 = localListeners.length, _i = 0; _i < t2; ++_i) { listener = localListeners[_i]; try { if (t1.contains$1(0, listener)) listener.call$1($status); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); rti = _this instanceof A.Closure ? A.closureFunctionType(_this) : null; t3 = A.ErrorDescription$("while notifying status listeners for " + A.createRuntimeType(rti == null ? A.instanceType(_this) : rti).toString$0(0)); t4 = $.$get$FlutterError_onError(); if (t4 != null) t4.call$1(new A.FlutterErrorDetails(exception, stack, "animation library", t3, null, null, false)); } } } }; A.Animatable.prototype = { chain$1($parent) { return new A._ChainedEvaluation($parent, this, A._instanceType(this)._eval$1("_ChainedEvaluation")); } }; A._AnimatedEvaluation.prototype = { get$value(_) { var t1 = this.parent; return this._evaluatable.transform$1(0, t1.get$value(t1)); }, toString$0(_) { var t1 = this.parent, t2 = this._evaluatable; return A.S(t1) + "\u27a9" + t2.toString$0(0) + "\u27a9" + A.S(t2.transform$1(0, t1.get$value(t1))); }, toStringDetails$0() { return this.super$Animation$toStringDetails() + " " + this._evaluatable.toString$0(0); }, get$parent(receiver) { return this.parent; } }; A._ChainedEvaluation.prototype = { transform$1(_, t) { return this._evaluatable.transform$1(0, this._tween$_parent.transform$1(0, t)); }, toString$0(_) { return A.S(this._tween$_parent) + "\u27a9" + this._evaluatable.toString$0(0); } }; A.Tween.prototype = { lerp$1(t) { var t1 = this.begin; return A._instanceType(this)._eval$1("Tween.T")._as(J.$add$ansx(t1, J.$mul$ns(J.$sub$n(this.end, t1), t))); }, transform$1(_, t) { if (t === 0) return this.begin; if (t === 1) return this.end; return this.lerp$1(t); }, toString$0(_) { return "Animatable(" + A.S(this.begin) + " \u2192 " + A.S(this.end) + ")"; }, set$begin(val) { return this.begin = val; }, set$end(receiver, val) { return this.end = val; } }; A.ReverseTween.prototype = { lerp$1(t) { return this.parent.lerp$1(1 - t); } }; A.ColorTween.prototype = { lerp$1(t) { return A.Color_lerp(this.begin, this.end, t); } }; A.SizeTween.prototype = { lerp$1(t) { return A.Size_lerp(this.begin, this.end, t); } }; A.RectTween.prototype = { lerp$1(t) { return A.Rect_lerp(this.begin, this.end, t); } }; A.IntTween.prototype = { lerp$1(t) { var t2, t1 = this.begin; t1.toString; t2 = this.end; t2.toString; return B.JSNumber_methods.round$0(t1 + (t2 - t1) * t); } }; A.CurveTween.prototype = { transform$1(_, t) { if (t === 0 || t === 1) return t; return this.curve.transform$1(0, t); }, toString$0(_) { return "CurveTween(curve: " + A.S(this.curve) + ")"; } }; A.__AnimatedEvaluation_Animation_AnimationWithParentMixin.prototype = {}; A.TweenSequence.prototype = { TweenSequence$1(items, $T) { var t2, totalWeight, _i, start, i, t3, end, t1 = this._items; B.JSArray_methods.addAll$1(t1, items); for (t2 = t1.length, totalWeight = 0, _i = 0; _i < t2; ++_i) totalWeight += t1[_i].weight; for (t2 = this._intervals, start = 0, i = 0; t3 = t1.length, i < t3; ++i, start = end) { end = i === t3 - 1 ? 1 : start + t1[i].weight / totalWeight; t2.push(new A._Interval(start, end)); } }, _evaluateAt$2(t, index) { var element = this._items[index], tInterval = this._intervals[index].value$1(0, t); return element.tween.transform$1(0, tInterval); }, transform$1(_, t) { var t1, t2, t3, index, t4, t5, _this = this; if (t === 1) return _this._evaluateAt$2(t, _this._items.length - 1); for (t1 = _this._items, t2 = t1.length, t3 = _this._intervals, index = 0; index < t2; ++index) { t4 = t3[index]; t5 = t4.start; if (t >= t5 && t < t4.end) return t1[index].tween.transform$1(0, (t - t5) / (t4.end - t5)); } throw A.wrapException(A.StateError$("TweenSequence.evaluate() could not find an interval for " + A.S(t))); }, toString$0(_) { return "TweenSequence(" + this._items.length + " items)"; } }; A.TweenSequenceItem.prototype = {}; A._Interval.prototype = { value$1(_, t) { var t1 = this.start; return (t - t1) / (this.end - t1); }, toString$0(_) { return "<" + A.S(this.start) + ", " + A.S(this.end) + ">"; } }; A.CupertinoButton.prototype = { createState$0() { return new A._CupertinoButtonState(new A.Tween(1, null, type$.Tween_double), null, null, B._StateLifecycle_0); } }; A._CupertinoButtonState.prototype = { initState$0() { var t1, t2, t3, _this = this; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_200000, null, 1, 0, _this); _this.___CupertinoButtonState__animationController = t1; t2 = type$.Animation_double; t3 = _this._opacityTween; _this.___CupertinoButtonState__opacityAnimation = new A._AnimatedEvaluation(t2._as(new A._AnimatedEvaluation(t2._as(A._lateReadCheck(t1, "_animationController")), new A.CurveTween(B.C__DecelerateCurve), type$.CurveTween._eval$1("_AnimatedEvaluation"))), t3, t3.$ti._eval$1("_AnimatedEvaluation")); _this._setTween$0(); }, didUpdateWidget$1(old) { this.super$State$didUpdateWidget(old); this._setTween$0(); }, _setTween$0() { var t1 = this._widget.pressedOpacity; this._opacityTween.end = t1; }, dispose$0(_) { A._lateReadCheck(this.___CupertinoButtonState__animationController, "_animationController").dispose$0(0); this.super$__CupertinoButtonState_State_SingleTickerProviderStateMixin$dispose(0); }, _button$_handleTapDown$1($event) { if (!this._buttonHeldDown) { this._buttonHeldDown = true; this._animate$0(0); } }, _button$_handleTapUp$1($event) { if (this._buttonHeldDown) { this._buttonHeldDown = false; this._animate$0(0); } }, _button$_handleTapCancel$0() { if (this._buttonHeldDown) { this._buttonHeldDown = false; this._animate$0(0); } }, _animate$0(_) { var wasHeldDown, ticker, _this = this, _s20_ = "_animationController", t1 = A._lateReadCheck(_this.___CupertinoButtonState__animationController, _s20_)._ticker; if (t1 != null && t1._ticker$_future != null) return; wasHeldDown = _this._buttonHeldDown; t1 = _this.___CupertinoButtonState__animationController; if (wasHeldDown) { t1 = A._lateReadCheck(t1, _s20_); t1._direction = B._AnimationDirection_0; ticker = t1._animateToInternal$3$curve$duration(1, B.C_ThreePointCubic, B.Duration_120000); } else { t1 = A._lateReadCheck(t1, _s20_); t1._direction = B._AnimationDirection_0; ticker = t1._animateToInternal$3$curve$duration(0, B.Cubic_2jN, B.Duration_180000); } ticker.then$1$1(0, new A._CupertinoButtonState__animate_closure(_this, wasHeldDown), type$.void); }, build$1(_, context) { var backgroundColor, foregroundColor, t3, textStyle, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this._widget.onPressed == null, enabled = !t1, themeData = A.CupertinoTheme_of(context), primaryColor = themeData.get$primaryColor(), t2 = _this._widget.color; if (t2 == null) backgroundColor = _null; else backgroundColor = A.CupertinoDynamicColor_maybeResolve(t2, context); t2 = backgroundColor != null; if (t2) foregroundColor = themeData.get$primaryContrastingColor(); else if (enabled) foregroundColor = primaryColor; else { t3 = B.CupertinoDynamicColor_oxt.resolveFrom$1(context); foregroundColor = t3; } t3 = themeData.get$textTheme(); textStyle = t3.get$textStyle(t3).copyWith$1$color(foregroundColor); t3 = enabled && true ? B.SystemMouseCursor_click : B.C__DeferringMouseCursor; t4 = enabled ? _this.get$_button$_handleTapDown() : _null; t5 = enabled ? _this.get$_button$_handleTapUp() : _null; t6 = enabled ? _this.get$_button$_handleTapCancel() : _null; t7 = _this._widget; t8 = t7.onPressed; t7 = t7.minSize; t9 = A._lateReadCheck(_this.___CupertinoButtonState__opacityAnimation, "_opacityAnimation"); t10 = _this._widget; t11 = t10.borderRadius; if (t2 && t1) { t1 = t10.disabledColor; if (t1 instanceof A.CupertinoDynamicColor) t1 = t1.resolveFrom$1(context); } else t1 = backgroundColor; t2 = _this._widget; t10 = t2.padding; t1 = A.FadeTransition$(false, A.DecoratedBox$(new A.Padding(t10, new A.Align(t2.alignment, 1, 1, A.DefaultTextStyle$(A.IconTheme$(t2.child, new A.IconThemeData(foregroundColor, _null, _null, _null), _null), _null, _null, B.TextOverflow_0, true, textStyle, _null, _null, B.TextWidthBasis_0), _null), _null), new A.BoxDecoration(t1, _null, _null, t11, _null, _null, B.BoxShape_0), B.DecorationPosition_0), t9); return A.MouseRegion$(A.GestureDetector$(B.HitTestBehavior_1, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A.ConstrainedBox(new A.BoxConstraints(t7, 1 / 0, t7, 1 / 0), t1, _null), _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t8, t6, t4, t5, _null, _null, _null), t3, _null, _null, _null, _null); } }; A._CupertinoButtonState__animate_closure.prototype = { call$1(value) { var t1 = this.$this; if (t1._framework$_element != null && this.wasHeldDown !== t1._buttonHeldDown) t1._animate$0(0); }, $signature: 86 }; A.__CupertinoButtonState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CupertinoDynamicColor.prototype = { get$value(_) { return this._effectiveColor.value; }, get$_isPlatformBrightnessDependent() { var _this = this; return !_this.color.$eq(0, _this.darkColor) || !_this.elevatedColor.$eq(0, _this.darkElevatedColor) || !_this.highContrastColor.$eq(0, _this.darkHighContrastColor) || !_this.highContrastElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$_isHighContrastDependent() { var _this = this; return !_this.color.$eq(0, _this.highContrastColor) || !_this.darkColor.$eq(0, _this.darkHighContrastColor) || !_this.elevatedColor.$eq(0, _this.highContrastElevatedColor) || !_this.darkElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$_isInterfaceElevationDependent() { var _this = this; return !_this.color.$eq(0, _this.elevatedColor) || !_this.darkColor.$eq(0, _this.darkElevatedColor) || !_this.highContrastColor.$eq(0, _this.highContrastElevatedColor) || !_this.darkHighContrastColor.$eq(0, _this.darkHighContrastElevatedColor); }, resolveFrom$1(context) { var inheritedTheme, t1, brightness, isHighContrastEnabled, resolved, _this = this, _null = null, _s80_ = string$.x60null_c; if (_this.get$_isPlatformBrightnessDependent()) { inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedCupertinoTheme); t1 = inheritedTheme == null ? _null : inheritedTheme.theme.data.get$brightness(); if (t1 == null) { t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.platformBrightness; brightness = t1; } else brightness = t1; if (brightness == null) brightness = B.Brightness_1; } else brightness = B.Brightness_1; if (_this.get$_isHighContrastDependent()) { t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.highContrast; isHighContrastEnabled = t1 === true; } else isHighContrastEnabled = false; if (_this.get$_isInterfaceElevationDependent()) A.CupertinoUserInterfaceLevel_maybeOf(context); switch (brightness.index) { case 1: switch (0) { case 0: resolved = isHighContrastEnabled ? _this.highContrastColor : _this.color; break; case 1: resolved = isHighContrastEnabled ? _this.highContrastElevatedColor : _this.elevatedColor; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; case 0: switch (0) { case 0: resolved = isHighContrastEnabled ? _this.darkHighContrastColor : _this.darkColor; break; case 1: resolved = isHighContrastEnabled ? _this.darkHighContrastElevatedColor : _this.darkElevatedColor; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return new A.CupertinoDynamicColor(resolved, _this._colors$_debugLabel, _null, _this.color, _this.darkColor, _this.highContrastColor, _this.darkHighContrastColor, _this.elevatedColor, _this.darkElevatedColor, _this.highContrastElevatedColor, _this.darkHighContrastElevatedColor, 0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.CupertinoDynamicColor && other._effectiveColor.value === _this._effectiveColor.value && other.color.$eq(0, _this.color) && other.darkColor.$eq(0, _this.darkColor) && other.highContrastColor.$eq(0, _this.highContrastColor) && other.darkHighContrastColor.$eq(0, _this.darkHighContrastColor) && other.elevatedColor.$eq(0, _this.elevatedColor) && other.darkElevatedColor.$eq(0, _this.darkElevatedColor) && other.highContrastElevatedColor.$eq(0, _this.highContrastElevatedColor) && other.darkHighContrastElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this._effectiveColor.value, _this.color, _this.darkColor, _this.highContrastColor, _this.elevatedColor, _this.darkElevatedColor, _this.darkHighContrastColor, _this.darkHighContrastElevatedColor, _this.highContrastElevatedColor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this, t1 = new A.CupertinoDynamicColor_toString_toString(_this), t2 = A._setArrayType([t1.call$2("color", _this.color)], type$.JSArray_String); if (_this.get$_isPlatformBrightnessDependent()) t2.push(t1.call$2("darkColor", _this.darkColor)); if (_this.get$_isHighContrastDependent()) t2.push(t1.call$2("highContrastColor", _this.highContrastColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isHighContrastDependent()) t2.push(t1.call$2("darkHighContrastColor", _this.darkHighContrastColor)); if (_this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("elevatedColor", _this.elevatedColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("darkElevatedColor", _this.darkElevatedColor)); if (_this.get$_isHighContrastDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("highContrastElevatedColor", _this.highContrastElevatedColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isHighContrastDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("darkHighContrastElevatedColor", _this.darkHighContrastElevatedColor)); t1 = _this._colors$_debugLabel; if (t1 == null) t1 = "CupertinoDynamicColor"; t2 = B.JSArray_methods.join$1(t2, ", "); return t1 + "(" + t2 + ", resolved by: UNRESOLVED)"; } }; A.CupertinoDynamicColor_toString_toString.prototype = { call$2($name, color) { var marker = color.$eq(0, this.$this._effectiveColor) ? "*" : ""; return marker + $name + " = " + color.toString$0(0) + marker; }, $signature: 2683 }; A._CupertinoDynamicColor_Color_Diagnosticable.prototype = {}; A._CupertinoDesktopTextSelectionControls.prototype = { getHandleSize$1(textLineHeight) { return B.Size_0_0; }, buildHandle$4(context, type, textLineHeight, onTap) { return B.SizedBox_0_0_null_null; }, getHandleAnchor$2(type, textLineHeight) { return B.Offset_0_0; } }; A.CupertinoIconThemeData.prototype = { resolve$1(_, context) { var t1 = this.color, resolvedColor = A.CupertinoDynamicColor_maybeResolve(t1, context); return J.$eq$(resolvedColor, t1) ? this : this.copyWith$1$color(resolvedColor); }, copyWith$4$color$opacity$shadows$size(color, opacity, shadows, size) { var _this = this, t1 = color == null ? _this.color : color, t2 = opacity == null ? _this.get$opacity(_this) : opacity, t3 = size == null ? _this.size : size; return new A.CupertinoIconThemeData(t1, t2, t3, shadows == null ? _this.shadows : shadows); }, copyWith$1$color(color) { return this.copyWith$4$color$opacity$shadows$size(color, null, null, null); } }; A._CupertinoIconThemeData_IconThemeData_Diagnosticable.prototype = {}; A._CupertinoLocalizationsDelegate.prototype = { isSupported$1(locale) { return locale.get$languageCode(locale) === "en"; }, load$1(_, locale) { return new A.SynchronousFuture(B.C_DefaultCupertinoLocalizations, type$.SynchronousFuture_CupertinoLocalizations); }, shouldReload$1(old) { return false; }, toString$0(_) { return "DefaultCupertinoLocalizations.delegate(en_US)"; } }; A.DefaultCupertinoLocalizations.prototype = {$isCupertinoLocalizations: 1}; A.CupertinoRouteTransitionMixin_buildPageTransitions_closure.prototype = { call$0() { return A.CupertinoRouteTransitionMixin__isPopGestureEnabled(this.route); }, $signature: 18 }; A.CupertinoRouteTransitionMixin_buildPageTransitions_closure0.prototype = { call$0() { var t1 = this.route, t2 = t1._navigator$_navigator; t2.toString; t1 = t1._routes$_controller; t1.toString; t2.didStartUserGesture$0(); return new A._CupertinoBackGestureController(t1, t2, this.T._eval$1("_CupertinoBackGestureController<0>")); }, $signature() { return this.T._eval$1("_CupertinoBackGestureController<0>()"); } }; A.CupertinoPageTransition.prototype = { build$1(_, context) { var textDirection, _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; t1 = _this._primaryShadowAnimation; return A.SlideTransition$(A.SlideTransition$(new A.DecoratedBoxTransition(t1, _this.child, t1, null), _this._primaryPositionAnimation, textDirection, true), _this._secondaryPositionAnimation, textDirection, false); } }; A._CupertinoBackGestureDetector.prototype = { createState$0() { return new A._CupertinoBackGestureDetectorState(B._StateLifecycle_0, this.$ti._eval$1("_CupertinoBackGestureDetectorState<1>")); }, enabledCallback$0() { return this.enabledCallback.call$0(); }, onStartPopGesture$0() { return this.onStartPopGesture.call$0(); } }; A._CupertinoBackGestureDetectorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A.HorizontalDragGestureRecognizer$(_this, null); t1.onStart = _this.get$_route$_handleDragStart(); t1.onUpdate = _this.get$_route$_handleDragUpdate(); t1.onEnd = _this.get$_route$_handleDragEnd(); t1.onCancel = _this.get$_route$_handleDragCancel(); _this.___CupertinoBackGestureDetectorState__recognizer = t1; }, dispose$0(_) { var t1 = A._lateReadCheck(this.___CupertinoBackGestureDetectorState__recognizer, "_recognizer"); t1._monodrag$_velocityTrackers.clear$0(0); t1.super$OneSequenceGestureRecognizer$dispose(0); this.super$State$dispose(0); }, _route$_handleDragStart$1(details) { this._backGestureController = this._widget.onStartPopGesture$0(); }, _route$_handleDragUpdate$1(details) { var t2, t3, t1 = this._backGestureController; t1.toString; t2 = details.primaryDelta; t2.toString; t3 = this._framework$_element; t3 = this._convertToLogical$1(t2 / t3.get$size(t3)._dx); t1 = t1.controller; t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, "_value") - t3); }, _route$_handleDragEnd$1(details) { var t2, t3, _this = this, t1 = _this._backGestureController; t1.toString; t2 = details.velocity; t3 = _this._framework$_element; t1.dragEnd$1(_this._convertToLogical$1(t2.pixelsPerSecond._dx / t3.get$size(t3)._dx)); _this._backGestureController = null; }, _route$_handleDragCancel$0() { var t1 = this._backGestureController; if (t1 != null) t1.dragEnd$1(0); this._backGestureController = null; }, _route$_handlePointerDown$1($event) { if (this._widget.enabledCallback$0()) A._lateReadCheck(this.___CupertinoBackGestureDetectorState__recognizer, "_recognizer").addPointer$1($event); }, _convertToLogical$1(value) { var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: return -value; case B.TextDirection_1: return value; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t2, dragAreaWidth, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = type$.MediaQuery; dragAreaWidth = Math.max(A.checkNum(t1.textDirection === B.TextDirection_1 ? context.dependOnInheritedWidgetOfExactType$1$0(t2).data.padding.left : context.dependOnInheritedWidgetOfExactType$1$0(t2).data.padding.right), 20); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_2, B.Clip_1, A._setArrayType([this._widget.child, new A.PositionedDirectional(0, 0, 0, dragAreaWidth, A.Listener$(B.HitTestBehavior_2, _null, _null, _null, this.get$_route$_handlePointerDown(), _null, _null, _null, _null), _null)], type$.JSArray_Widget), _null); } }; A._CupertinoBackGestureController.prototype = { dragEnd$1(velocity) { var t1, t2, animationStatusCallback, _this = this, _s6_ = "_value"; if (Math.abs(velocity) >= 1 ? velocity <= 0 : A._lateReadCheck(_this.controller.__AnimationController__value, _s6_) > 0.5) { t1 = _this.controller; t2 = A.lerpDouble(800, 0, A._lateReadCheck(t1.__AnimationController__value, _s6_)); t2.toString; t2 = A.Duration$(0, 0, 0, Math.min(B.JSNumber_methods.floor$0(t2), 300), 0, 0); t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, B.Cubic_2Vk, t2); } else { _this.navigator.pop$0(0); t1 = _this.controller; t2 = t1._ticker; if (t2 != null && t2._ticker$_future != null) { t2 = A.lerpDouble(0, 800, A._lateReadCheck(t1.__AnimationController__value, _s6_)); t2.toString; t2 = A.Duration$(0, 0, 0, B.JSNumber_methods.floor$0(t2), 0, 0); t1._direction = B._AnimationDirection_1; t1._animateToInternal$3$curve$duration(0, B.Cubic_2Vk, t2); } } t2 = t1._ticker; if (t2 != null && t2._ticker$_future != null) { animationStatusCallback = A._Cell$named("animationStatusCallback"); animationStatusCallback.__late_helper$_value = new A._CupertinoBackGestureController_dragEnd_closure(_this, animationStatusCallback); t1.addStatusListener$1(animationStatusCallback._readLocal$0()); } else _this.navigator.didStopUserGesture$0(); } }; A._CupertinoBackGestureController_dragEnd_closure.prototype = { call$1($status) { var t1 = this.$this; t1.navigator.didStopUserGesture$0(); t1.controller.removeStatusListener$1(this.animationStatusCallback._readLocal$0()); }, $signature: 42 }; A._CupertinoEdgeShadowDecoration.prototype = { lerpFrom$2(a, t) { var t1; if (a instanceof A._CupertinoEdgeShadowDecoration) { t1 = A._CupertinoEdgeShadowDecoration_lerp(a, this, t); t1.toString; return t1; } t1 = A._CupertinoEdgeShadowDecoration_lerp(null, this, t); t1.toString; return t1; }, lerpTo$2(b, t) { var t1; if (b instanceof A._CupertinoEdgeShadowDecoration) { t1 = A._CupertinoEdgeShadowDecoration_lerp(this, b, t); t1.toString; return t1; } t1 = A._CupertinoEdgeShadowDecoration_lerp(this, null, t); t1.toString; return t1; }, createBoxPainter$1(onChanged) { return new A._CupertinoEdgeShadowPainter(this, onChanged); }, $eq(_, other) { var t1, t2; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A._CupertinoEdgeShadowDecoration) { t1 = other._route$_colors; t2 = this._route$_colors; t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; return t1; }, get$hashCode(_) { return J.get$hashCode$(this._route$_colors); } }; A._CupertinoEdgeShadowDecoration_lerp_closure.prototype = { call$1(color) { var t1 = A.Color_lerp(null, color, this.t); t1.toString; return t1; }, $signature: 357 }; A._CupertinoEdgeShadowDecoration_lerp_closure0.prototype = { call$1(color) { var t1 = A.Color_lerp(null, color, 1 - this.t); t1.toString; return t1; }, $signature: 357 }; A._CupertinoEdgeShadowPainter.prototype = { paint$3(canvas, offset, configuration) { var t1, t2, shadowWidth, shadowHeight, bandWidth, start, shadowDirection, bandColorIndex, dx, paint, colors = this._route$_decoration._route$_colors; if (colors == null) return; t1 = configuration.size; t2 = t1._dx; shadowWidth = 0.05 * t2; shadowHeight = t1._dy; bandWidth = shadowWidth / (colors.length - 1); switch (configuration.textDirection.index) { case 0: start = offset._dx + t2; shadowDirection = 1; break; case 1: start = offset._dx; shadowDirection = -1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } for (t1 = offset._dy, bandColorIndex = 0, dx = 0; dx < shadowWidth; ++dx) { if (B.JSInt_methods.$tdiv(dx, bandWidth) !== bandColorIndex) ++bandColorIndex; paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = A.Color_lerp(colors[bandColorIndex], colors[bandColorIndex + 1], B.JSInt_methods.$mod(dx, bandWidth) / bandWidth); t2.toString; paint.set$color(0, t2); t2 = start + shadowDirection * dx - 1; canvas.drawRect$2(0, new A.Rect(t2, t1, t2 + 1, t1 + shadowHeight), paint); } } }; A.CupertinoScrollbar.prototype = { createState$0() { return new A._CupertinoScrollbarState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, null, B._StateLifecycle_0); } }; A._CupertinoScrollbarState.prototype = { initState$0() { var t1, _this = this; _this.super$RawScrollbarState$initState(); t1 = A.AnimationController$(null, B.Duration_100000, null, 1, null, _this); _this.___CupertinoScrollbarState__thicknessAnimationController = t1; t1 = A._lateReadCheck(t1, "_thicknessAnimationController"); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(new A._CupertinoScrollbarState_initState_closure(_this)); }, updateScrollbarPainter$0() { var t3, t4, t5, _this = this, _s29_ = "_thicknessAnimationController", t1 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"), t2 = _this._framework$_element; t2.toString; t2 = B.CupertinoDynamicColor_zPV.resolveFrom$1(t2); t1.set$color(0, t2); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t2 = _this._widget.thickness; t2.toString; t3 = A._lateReadCheck(A._lateReadCheck(_this.___CupertinoScrollbarState__thicknessAnimationController, _s29_).__AnimationController__value, "_value"); t4 = _this._widget; t5 = t4.thicknessWhileDragging; t4 = t4.thickness; t4.toString; t1.set$thickness(t2 + t3 * (t5 - t4)); t1.set$mainAxisMargin(3); t1.set$crossAxisMargin(3); t4 = _this._widget; t4 = A.Radius_lerp(t4.radius, t4.radiusWhileDragging, A._lateReadCheck(A._lateReadCheck(_this.___CupertinoScrollbarState__thicknessAnimationController, _s29_).__AnimationController__value, "_value")); t4.toString; t1.set$radius(t4); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); t1.set$minLength(0, 36); t1.set$minOverscrollLength(8); t1.set$scrollbarOrientation(_this._widget.scrollbarOrientation); }, handleThumbPressStart$1(localPosition) { var _this = this; _this.super$RawScrollbarState$handleThumbPressStart(localPosition); switch (_this.getScrollbarDirection$0().index) { case 1: _this._pressStartAxisPosition = localPosition._dy; break; case 0: _this._pressStartAxisPosition = localPosition._dx; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, handleThumbPress$0() { if (this.getScrollbarDirection$0() == null) return; this.super$RawScrollbarState$handleThumbPress(); A._lateReadCheck(this.___CupertinoScrollbarState__thicknessAnimationController, "_thicknessAnimationController").forward$0(0).then$1$1(0, new A._CupertinoScrollbarState_handleThumbPress_closure(), type$.void); }, handleThumbPressEnd$2(localPosition, velocity) { var _this = this, direction = _this.getScrollbarDirection$0(); if (direction == null) return; A._lateReadCheck(_this.___CupertinoScrollbarState__thicknessAnimationController, "_thicknessAnimationController").reverse$0(0); _this.super$RawScrollbarState$handleThumbPressEnd(localPosition, velocity); switch (direction.index) { case 1: if (Math.abs(velocity.pixelsPerSecond._dy) < 10 && Math.abs(localPosition._dy - _this._pressStartAxisPosition) > 0) A.HapticFeedback_mediumImpact(); break; case 0: if (Math.abs(velocity.pixelsPerSecond._dx) < 10 && Math.abs(localPosition._dx - _this._pressStartAxisPosition) > 0) A.HapticFeedback_mediumImpact(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, dispose$0(_) { A._lateReadCheck(this.___CupertinoScrollbarState__thicknessAnimationController, "_thicknessAnimationController").dispose$0(0); this.super$RawScrollbarState$dispose(0); } }; A._CupertinoScrollbarState_initState_closure.prototype = { call$0() { this.$this.updateScrollbarPainter$0(); }, $signature: 0 }; A._CupertinoScrollbarState_handleThumbPress_closure.prototype = { call$1(_) { return A.HapticFeedback_mediumImpact(); }, $signature: 570 }; A.CupertinoSwitch.prototype = { createState$0() { return new A._CupertinoSwitchState(null, null, B._StateLifecycle_0); }, get$value(receiver) { return this.value; } }; A._CupertinoSwitchState.prototype = { initState$0() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = A.TapGestureRecognizer$(_null); t1.onTapDown = _this.get$_switch$_handleTapDown(); t1.onTapUp = _this.get$_switch$_handleTapUp(); t1.onTap = _this.get$_switch$_handleTap(); t1.onTapCancel = _this.get$_switch$_handleTapCancel(); _this.___CupertinoSwitchState__tap = t1; t1 = A.HorizontalDragGestureRecognizer$(_null, _null); t1.onStart = _this.get$_switch$_handleDragStart(); t1.onUpdate = _this.get$_switch$_handleDragUpdate(); t1.onEnd = _this.get$_switch$_handleDragEnd(); t2 = _this._widget; t1.dragStartBehavior = t2.dragStartBehavior; _this.___CupertinoSwitchState__drag = t1; t1 = A.AnimationController$(_null, B.Duration_200000, _null, 1, t2.value ? 1 : 0, _this); _this.___CupertinoSwitchState__positionController = t1; _this.___CupertinoSwitchState_position = A.CurvedAnimation$(B.C__Linear, A._lateReadCheck(t1, "_positionController"), _null); t1 = A.AnimationController$(_null, B.Duration_300000, _null, 1, _null, _this); _this.___CupertinoSwitchState__reactionController = t1; _this.___CupertinoSwitchState__reaction = A.CurvedAnimation$(B.Cubic_JUR, A._lateReadCheck(t1, "_reactionController"), _null); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = A._lateReadCheck(_this.___CupertinoSwitchState__drag, "_drag"); t2 = _this._widget; t1.dragStartBehavior = t2.dragStartBehavior; t1 = _this.needsPositionAnimation; if (t1 || oldWidget.value != t2.value) _this._resumePositionAnimation$1$isLinear(t1); }, _resumePositionAnimation$1$isLinear(isLinear) { var t1, t2, _this = this, _s19_ = "_positionController"; _this.needsPositionAnimation = false; t1 = A._lateReadCheck(_this.___CupertinoSwitchState_position, "position"); t1.curve = isLinear ? B.C__Linear : B.Cubic_JUR; t1.reverseCurve = isLinear ? B.C__Linear : new A.FlippedCurve(B.Cubic_JUR); t1 = _this._widget.value; t2 = _this.___CupertinoSwitchState__positionController; if (t1) A._lateReadCheck(t2, _s19_).forward$0(0); else A._lateReadCheck(t2, _s19_).reverse$0(0); }, _resumePositionAnimation$0() { return this._resumePositionAnimation$1$isLinear(true); }, _switch$_handleTapDown$1(details) { if (this._widget.onChanged != null) this.needsPositionAnimation = false; A._lateReadCheck(this.___CupertinoSwitchState__reactionController, "_reactionController").forward$0(0); }, _switch$_handleTap$0() { var t1 = this._widget, t2 = t1.onChanged; if (t2 != null) { t2.call$1(!t1.value); this._emitVibration$0(); } }, _switch$_handleTapUp$1(details) { if (this._widget.onChanged != null) { this.needsPositionAnimation = false; A._lateReadCheck(this.___CupertinoSwitchState__reactionController, "_reactionController").reverse$0(0); } }, _switch$_handleTapCancel$0() { if (this._widget.onChanged != null) A._lateReadCheck(this.___CupertinoSwitchState__reactionController, "_reactionController").reverse$0(0); }, _switch$_handleDragStart$1(details) { var _this = this; if (_this._widget.onChanged != null) { _this.needsPositionAnimation = false; A._lateReadCheck(_this.___CupertinoSwitchState__reactionController, "_reactionController").forward$0(0); _this._emitVibration$0(); } }, _switch$_handleDragUpdate$1(details) { var t1, delta, _this = this, _s19_ = "_positionController"; if (_this._widget.onChanged != null) { t1 = A._lateReadCheck(_this.___CupertinoSwitchState_position, "position"); t1.reverseCurve = t1.curve = B.C__Linear; t1 = details.primaryDelta; t1.toString; delta = t1 / 20; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: t1 = A._lateReadCheck(_this.___CupertinoSwitchState__positionController, _s19_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, "_value") - delta); break; case B.TextDirection_1: t1 = A._lateReadCheck(_this.___CupertinoSwitchState__positionController, _s19_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, "_value") + delta); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, _switch$_handleDragEnd$1(details) { var t1, t2, t3, _this = this; _this.setState$1(new A._CupertinoSwitchState__handleDragEnd_closure(_this)); t1 = A._lateReadCheck(_this.___CupertinoSwitchState_position, "position"); t1 = t1.get$value(t1); t2 = _this._widget; t3 = t2.value; if (t1 >= 0.5 !== t3) t2.onChanged.call$1(!t3); A._lateReadCheck(_this.___CupertinoSwitchState__reactionController, "_reactionController").reverse$0(0); }, _emitVibration$0() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: A.HapticFeedback_lightImpact(); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t1, t2, t3, t4, t5, t6, t7, _this = this, _null = null; if (_this.needsPositionAnimation) _this._resumePositionAnimation$0(); t1 = _this._widget; t2 = t1.onChanged == null; t3 = !t2 && true ? B.SystemMouseCursor_click : B.C__DeferringMouseCursor; t2 = t2 ? 0.5 : 1; t4 = t1.value; t1 = t1.activeColor; if (t1 == null) t1 = B.CupertinoDynamicColor_gg4; if (t1 instanceof A.CupertinoDynamicColor) t1 = t1.resolveFrom$1(context); _this._widget.toString; t5 = B.CupertinoDynamicColor_MdH.resolveFrom$1(context); t6 = _this._widget; t6 = t6.onChanged; t7 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t7.toString; return A.MouseRegion$(A.Opacity$(new A._CupertinoSwitchRenderObjectWidget(t4, t1, t5, B.Color_4294967295, t6, _this, t7.textDirection, _null), t2), t3, _null, _null, _null, _null); }, dispose$0(_) { var _this = this, t1 = A._lateReadCheck(_this.___CupertinoSwitchState__tap, "_tap"); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); t1 = A._lateReadCheck(_this.___CupertinoSwitchState__drag, "_drag"); t1._monodrag$_velocityTrackers.clear$0(0); t1.super$OneSequenceGestureRecognizer$dispose(0); A._lateReadCheck(_this.___CupertinoSwitchState__positionController, "_positionController").dispose$0(0); A._lateReadCheck(_this.___CupertinoSwitchState__reactionController, "_reactionController").dispose$0(0); _this.super$__CupertinoSwitchState_State_TickerProviderStateMixin$dispose(0); } }; A._CupertinoSwitchState__handleDragEnd_closure.prototype = { call$0() { this.$this.needsPositionAnimation = true; }, $signature: 0 }; A._CupertinoSwitchRenderObjectWidget.prototype = { createRenderObject$1(context) { var t3, _this = this, t1 = _this.state, t2 = new A._RenderCupertinoSwitch(t1, _this.value, _this.activeColor, _this.trackColor, new A.CupertinoThumbPainter(_this.thumbColor, B.List_CQc), _this.onChanged, _this.textDirection, A.LayerHandle$(type$.ClipRRectLayer), B.BoxConstraints_59_59_39_39, null, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); t3 = t2.get$markNeedsPaint(); A._lateReadCheck(t1.___CupertinoSwitchState_position, "position").parent.addListener$1(0, t3); t1 = A._lateReadCheck(t1.___CupertinoSwitchState__reaction, "_reaction"); t1.get$parent(t1).addListener$1(0, t3); return t2; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$value(0, _this.value); renderObject.set$activeColor(_this.activeColor); renderObject.set$trackColor(_this.trackColor); renderObject.set$thumbColor(_this.thumbColor); renderObject.set$onChanged(_this.onChanged); renderObject.set$textDirection(0, _this.textDirection); }, get$value(receiver) { return this.value; } }; A._RenderCupertinoSwitch.prototype = { get$value(_) { return this._switch$_value; }, set$value(_, value) { if (value == this._switch$_value) return; this._switch$_value = value; this.markNeedsSemanticsUpdate$0(); }, set$activeColor(value) { if (value.$eq(0, this._activeColor)) return; this._activeColor = value; this.markNeedsPaint$0(); }, set$trackColor(value) { if (value.$eq(0, this._switch$_trackColor)) return; this._switch$_trackColor = value; this.markNeedsPaint$0(); }, set$thumbColor(value) { if (value.$eq(0, this._thumbPainter.color)) return; this._thumbPainter = new A.CupertinoThumbPainter(value, B.List_CQc); this.markNeedsPaint$0(); }, set$onChanged(value) { var t1, _this = this; if (J.$eq$(value, _this._onChanged)) return; t1 = _this._onChanged; _this._onChanged = value; if (t1 != null !== (value != null)) { _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); } }, set$textDirection(_, value) { if (this._switch$_textDirection == value) return; this._switch$_textDirection = value; this.markNeedsPaint$0(); }, hitTestSelf$1(position) { return true; }, handleEvent$2($event, entry) { var t1; if (type$.PointerDownEvent._is($event) && this._onChanged != null) { t1 = this._switch$_state; A._lateReadCheck(t1.___CupertinoSwitchState__drag, "_drag").addPointer$1($event); A._lateReadCheck(t1.___CupertinoSwitchState__tap, "_tap").addPointer$1($event); } }, describeSemanticsConfiguration$1(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); if (_this._onChanged != null) config.set$onTap(_this._switch$_state.get$_switch$_handleTap()); t1 = _this._onChanged; config._setFlag$2(B.SemanticsFlag_64, true); config._setFlag$2(B.SemanticsFlag_128, t1 != null); t1 = _this._switch$_value; config._setFlag$2(B.SemanticsFlag_65536, true); t1.toString; config._setFlag$2(B.SemanticsFlag_131072, t1); }, paint$2(context, offset) { var currentReactionValue, visualPosition, paint, t3, trackRRect, currentThumbExtension, t4, thumbCenterY, thumbBounds, _this = this, canvas = context.get$canvas(context), t1 = _this._switch$_state, t2 = A._lateReadCheck(t1.___CupertinoSwitchState_position, "position"), currentValue = t2.get$value(t2); t1 = A._lateReadCheck(t1.___CupertinoSwitchState__reaction, "_reaction"); currentReactionValue = t1.get$value(t1); switch (_this._switch$_textDirection) { case B.TextDirection_0: visualPosition = 1 - currentValue; break; case B.TextDirection_1: visualPosition = currentValue; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1 = A.Color_lerp(_this._switch$_trackColor, _this._activeColor, currentValue); t1.toString; paint.set$color(0, t1); t1 = _this._box$_size; t2 = offset._dx + (t1._dx - 51) / 2; t3 = offset._dy; t1 = t3 + (t1._dy - 31) / 2; trackRRect = A.RRect$fromRectAndRadius(new A.Rect(t2, t1, t2 + 51, t1 + 31), B.Radius_2Vk); canvas.drawRRect$2(0, trackRRect, paint); currentThumbExtension = 7 * currentReactionValue; t1 = t2 + 15.5; t2 += 35.5; t4 = A.lerpDouble(t1 - 14, t2 - 14 - currentThumbExtension, visualPosition); t4.toString; t2 = A.lerpDouble(t1 + 14 + currentThumbExtension, t2 + 14, visualPosition); t2.toString; thumbCenterY = t3 + _this._box$_size._dy / 2; thumbBounds = new A.Rect(t4, thumbCenterY - 14, t2, thumbCenterY + 14); t2 = _this._clipRRectLayer; t2.set$layer(0, context.pushClipRRect$6$oldLayer(A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"), B.Offset_0_0, thumbBounds, trackRRect, new A._RenderCupertinoSwitch_paint_closure(_this, thumbBounds), t2._layer)); }, dispose$0(_) { this._clipRRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); } }; A._RenderCupertinoSwitch_paint_closure.prototype = { call$2(innerContext, offset) { this.$this._thumbPainter.paint$2(innerContext.get$canvas(innerContext), this.thumbBounds); }, $signature: 93 }; A.__CupertinoSwitchState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._TextSelectionHandlePainter0.prototype = { paint$2(canvas, size) { var circle, line, path, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, this.color); circle = A.Rect$fromCircle(B.Offset_6_6, 6); line = A.Rect$fromPoints(B.Offset_6pl, new A.Offset(7, size._dy)); path = A.Path_Path(); path.addOval$1(0, circle); path.addRect$1(0, line); canvas.drawPath$2(0, path, paint); }, shouldRepaint$1(oldPainter) { return !J.$eq$(this.color, oldPainter.color); } }; A.CupertinoTextSelectionControls.prototype = { getHandleSize$1(textLineHeight) { return new A.Size(12, textLineHeight + 12 - 1.5); }, buildHandle$4(context, type, textLineHeight, onTap) { var t1, handle, t2, _null = null, customPaint = A.CustomPaint$(_null, _null, _null, new A._TextSelectionHandlePainter0(A.CupertinoTheme_of(context).get$primaryColor(), _null), B.Size_0_0); switch (type.index) { case 0: return A.SizedBox$fromSize(customPaint, new A.Size(12, textLineHeight + 12 - 1.5)); case 1: t1 = textLineHeight + 12 - 1.5; handle = A.SizedBox$fromSize(customPaint, new A.Size(12, t1)); t2 = new A.Matrix4(new Float64Array(16)); t2.setIdentity$0(); t2.translate$2(0, 6, t1 / 2); t2.rotateZ$1(3.141592653589793); t2.translate$2(0, -6, -t1 / 2); return A.Transform$(_null, handle, t2, true); case 2: return B.SizedBox_null_null_null_null; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getHandleAnchor$2(type, textLineHeight) { switch (type.index) { case 0: return new A.Offset(6, textLineHeight + 12 - 1.5); case 1: return new A.Offset(6, textLineHeight + 12 - 1.5 - 12 + 1.5); case 2: return new A.Offset(6, textLineHeight + (textLineHeight + 12 - 1.5 - textLineHeight) / 2); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.CupertinoTextThemeData.prototype = { get$textStyle(_) { var t1 = this._text_theme$_defaults.labelColor; t1 = B.CupertinoDynamicColor_qQo.$eq(0, t1) ? B.TextStyle_P9F : B.TextStyle_P9F.copyWith$1$color(t1); return t1; }, resolveFrom$1(context) { var _this = this, t1 = _this._text_theme$_defaults, resolvedLabelColor = t1.labelColor, resolvedLabelColor0 = resolvedLabelColor instanceof A.CupertinoDynamicColor ? resolvedLabelColor.resolveFrom$1(context) : resolvedLabelColor, resolvedInactiveGray = t1.inactiveGrayColor; if (resolvedInactiveGray instanceof A.CupertinoDynamicColor) resolvedInactiveGray = resolvedInactiveGray.resolveFrom$1(context); t1 = resolvedLabelColor0.$eq(0, resolvedLabelColor) && resolvedInactiveGray.$eq(0, B.CupertinoDynamicColor_YIZ) ? t1 : new A._TextThemeDefaultsBuilder(resolvedLabelColor0, resolvedInactiveGray); return new A.CupertinoTextThemeData(t1, A.CupertinoDynamicColor_maybeResolve(_this._text_theme$_primaryColor, context), A._resolveTextStyle(_this._textStyle, context), A._resolveTextStyle(_this._actionTextStyle, context), A._resolveTextStyle(_this._tabLabelTextStyle, context), A._resolveTextStyle(_this._navTitleTextStyle, context), A._resolveTextStyle(_this._navLargeTitleTextStyle, context), A._resolveTextStyle(_this._navActionTextStyle, context), A._resolveTextStyle(_this._pickerTextStyle, context), A._resolveTextStyle(_this._dateTimePickerTextStyle, context)); } }; A._TextThemeDefaultsBuilder.prototype = {}; A._CupertinoTextThemeData_Object_Diagnosticable.prototype = {}; A.CupertinoTheme.prototype = { build$1(_, context) { var _null = null; return new A._InheritedCupertinoTheme(this, A.IconTheme$(this.child, new A.CupertinoIconThemeData(this.data.get$primaryColor(), _null, _null, _null), _null), _null); } }; A._InheritedCupertinoTheme.prototype = { updateShouldNotify$1(old) { return this.theme.data !== old.theme.data; } }; A.CupertinoThemeData.prototype = { get$primaryColor() { var t1 = this.primaryColor; return t1 == null ? this._defaults.primaryColor : t1; }, get$primaryContrastingColor() { var t1 = this.primaryContrastingColor; return t1 == null ? this._defaults.primaryContrastingColor : t1; }, get$textTheme() { var _null = null, t1 = this.textTheme; if (t1 == null) { t1 = this._defaults.textThemeDefaults; t1 = new A._DefaultCupertinoTextThemeData(t1.labelColor, t1.inactiveGray, B._TextThemeDefaultsBuilder_1yH, this.get$primaryColor(), _null, _null, _null, _null, _null, _null, _null, _null); } return t1; }, get$barBackgroundColor() { var t1 = this.barBackgroundColor; return t1 == null ? this._defaults.barBackgroundColor : t1; }, get$scaffoldBackgroundColor() { var t1 = this.scaffoldBackgroundColor; return t1 == null ? this._defaults.scaffoldBackgroundColor : t1; }, resolveFrom$1(context) { var _this = this, t1 = new A.CupertinoThemeData_resolveFrom_convertColor(context), t2 = _this.get$brightness(), t3 = t1.call$1(_this.primaryColor), t4 = t1.call$1(_this.primaryContrastingColor), t5 = _this.textTheme; t5 = t5 == null ? null : t5.resolveFrom$1(context); return A.CupertinoThemeData$_rawWithDefaults(t2, t3, t4, t5, t1.call$1(_this.barBackgroundColor), t1.call$1(_this.scaffoldBackgroundColor), _this._defaults.resolveFrom$2(context, _this.textTheme == null)); } }; A.CupertinoThemeData_resolveFrom_convertColor.prototype = { call$1(color) { return A.CupertinoDynamicColor_maybeResolve(color, this.context); }, $signature: 572 }; A.NoDefaultCupertinoThemeData.prototype = { resolveFrom$1(context) { var _this = this, t1 = new A.NoDefaultCupertinoThemeData_resolveFrom_convertColor(context), t2 = _this.get$brightness(), t3 = t1.call$1(_this.get$primaryColor()), t4 = t1.call$1(_this.get$primaryContrastingColor()), t5 = _this.get$textTheme(); t5 = t5 == null ? null : t5.resolveFrom$1(context); return new A.NoDefaultCupertinoThemeData(t2, t3, t4, t5, t1.call$1(_this.get$barBackgroundColor()), t1.call$1(_this.get$scaffoldBackgroundColor())); }, get$brightness() { return this.brightness; }, get$primaryColor() { return this.primaryColor; }, get$primaryContrastingColor() { return this.primaryContrastingColor; }, get$textTheme() { return this.textTheme; }, get$barBackgroundColor() { return this.barBackgroundColor; }, get$scaffoldBackgroundColor() { return this.scaffoldBackgroundColor; } }; A.NoDefaultCupertinoThemeData_resolveFrom_convertColor.prototype = { call$1(color) { return A.CupertinoDynamicColor_maybeResolve(color, this.context); }, $signature: 572 }; A._CupertinoThemeDefaults.prototype = { resolveFrom$2(context, resolveTextTheme) { var t5, t6, _this = this, t1 = new A._CupertinoThemeDefaults_resolveFrom_convertColor(context), t2 = t1.call$1(_this.primaryColor), t3 = t1.call$1(_this.primaryContrastingColor), t4 = t1.call$1(_this.barBackgroundColor); t1 = t1.call$1(_this.scaffoldBackgroundColor); t5 = _this.textThemeDefaults; if (resolveTextTheme) { t6 = t5.labelColor; if (t6 instanceof A.CupertinoDynamicColor) t6 = t6.resolveFrom$1(context); t5 = t5.inactiveGray; t5 = new A._CupertinoTextThemeDefaults(t6, t5 instanceof A.CupertinoDynamicColor ? t5.resolveFrom$1(context) : t5); } return new A._CupertinoThemeDefaults(_this.brightness, t2, t3, t4, t1, t5); } }; A._CupertinoThemeDefaults_resolveFrom_convertColor.prototype = { call$1(color) { return color instanceof A.CupertinoDynamicColor ? color.resolveFrom$1(this.context) : color; }, $signature: 357 }; A._CupertinoTextThemeDefaults.prototype = {}; A._DefaultCupertinoTextThemeData.prototype = { get$textStyle(_) { return A.CupertinoTextThemeData.prototype.get$textStyle.call(this, this).copyWith$1$color(this.labelColor); } }; A._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable.prototype = {}; A.CupertinoThumbPainter.prototype = { paint$2(canvas, rect) { var _i, shadow, t2, t3, t1 = rect.get$shortestSide() / 2, rrect = A.RRect$fromRectAndRadius(rect, new A.Radius(t1, t1)); for (t1 = this.shadows, _i = 0; _i < 2; ++_i) { shadow = t1[_i]; canvas.drawRRect$2(0, rrect.shift$1(shadow.offset), shadow.toPaint$0()); } t1 = rrect.inflate$1(0.5); t2 = $.$get$useCanvasKit(); t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$color(0, B.Color_167772160); canvas.drawRRect$2(0, t1, t3); t1 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1.set$color(0, this.color); canvas.drawRRect$2(0, rrect, t1); } }; A._testPlatform_closure.prototype = { call$0() { return null; }, $signature: 2675 }; A._browserPlatform_closure.prototype = { call$0() { var t1 = window.navigator.platform, navigatorPlatform = t1 == null ? null : t1.toLowerCase(); if (navigatorPlatform == null) navigatorPlatform = ""; if (B.JSString_methods.startsWith$1(navigatorPlatform, "mac")) return B.TargetPlatform_4; if (B.JSString_methods.startsWith$1(navigatorPlatform, "win")) return B.TargetPlatform_5; if (B.JSString_methods.contains$1(navigatorPlatform, "iphone") || B.JSString_methods.contains$1(navigatorPlatform, "ipad") || B.JSString_methods.contains$1(navigatorPlatform, "ipod")) return B.TargetPlatform_2; if (B.JSString_methods.contains$1(navigatorPlatform, "android")) return B.TargetPlatform_0; if (window.matchMedia("only screen and (pointer: fine)").matches) return B.TargetPlatform_3; return B.TargetPlatform_0; }, $signature: 2673 }; A._ErrorDiagnostic.prototype = { get$value(_) { var t1 = A.DiagnosticsProperty.prototype.get$value.call(this, this); t1.toString; return t1; }, valueToString$1$parentConfiguration(parentConfiguration) { var t1 = A.DiagnosticsProperty.prototype.get$value.call(this, this); t1.toString; return J.join$0$ax(t1); } }; A.ErrorDescription.prototype = {}; A.ErrorSummary.prototype = {}; A.ErrorHint.prototype = {}; A.ErrorSpacer.prototype = {}; A.FlutterErrorDetails.prototype = { exceptionAsString$0() { var message, fullMessage, t1, t2, position, body, splitPoint, longMessage = this.exception; if (type$.AssertionError._is(longMessage)) { message = longMessage.get$message(longMessage); fullMessage = longMessage.toString$0(0); if (typeof message == "string" && message !== fullMessage) { t1 = fullMessage.length; t2 = J.getInterceptor$asx(message); if (t1 > t2.get$length(message)) { position = B.JSString_methods.lastIndexOf$1(fullMessage, message); if (position === t1 - t2.get$length(message) && position > 2 && B.JSString_methods.substring$2(fullMessage, position - 2, position) === ": ") { body = B.JSString_methods.substring$2(fullMessage, 0, position - 2); splitPoint = B.JSString_methods.indexOf$1(body, " Failed assertion:"); if (splitPoint >= 0) body = B.JSString_methods.substring$2(body, 0, splitPoint) + "\n" + B.JSString_methods.substring$1(body, splitPoint + 1); longMessage = t2.trimRight$0(message) + "\n" + body; } else longMessage = null; } else longMessage = null; } else longMessage = null; if (longMessage == null) longMessage = fullMessage; } else if (!(typeof longMessage == "string")) { t1 = type$.Error._is(longMessage) || type$.Exception._is(longMessage); t2 = J.getInterceptor$(longMessage); longMessage = t1 ? t2.toString$0(longMessage) : " " + A.S(t2.toString$0(longMessage)); } longMessage = J.trimRight$0$s(longMessage); return longMessage.length === 0 ? " " : longMessage; }, _exceptionToDiagnosticable$0() { var t1, exception = this.exception; if (exception instanceof A.FlutterError) return exception; if (type$.AssertionError._is(exception) && exception.get$message(exception) instanceof A.FlutterError) { t1 = J.get$message$x(exception); t1.toString; return type$.FlutterError._as(t1); } return null; }, get$summary() { var t1, summary; if (this._exceptionToDiagnosticable$0() != null) { t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); this.debugFillProperties$1(new A.DiagnosticPropertiesBuilder(t1, B.DiagnosticsTreeStyle_1)); t1 = B.JSArray_methods.cast$1$0(t1, type$.nullable_DiagnosticsNode); summary = t1.firstWhere$2$orElse(t1, new A.FlutterErrorDetails_summary_closure(), new A.FlutterErrorDetails_summary_closure0()); } else summary = null; return summary == null ? A.ErrorSummary$(new A.FlutterErrorDetails_summary_formatException(this).call$0()) : summary; }, debugFillProperties$1(properties) { var t1, verb, diagnosticable, errorName, t2, t3, prefix, message, stackFrames, _this = this; _this.super$Diagnosticable$debugFillProperties(properties); t1 = _this.context; verb = A.ErrorDescription$("thrown" + A.S(t1 != null ? A.ErrorDescription$(" " + t1.toString$0(0)) : "")); diagnosticable = _this._exceptionToDiagnosticable$0(); t1 = _this.exception; if (t1 instanceof A.NullThrownError) A.ErrorDescription$("The null value was " + verb.toString$0(0) + "."); else if (typeof t1 == "number") A.ErrorDescription$("The number " + A.S(t1) + " was " + verb.toString$0(0) + "."); else { if (type$.AssertionError._is(t1)) errorName = A.ErrorDescription$("assertion"); else if (typeof t1 == "string") errorName = A.ErrorDescription$("message"); else { t2 = type$.Error._is(t1) || type$.Exception._is(t1); t3 = J.getInterceptor$(t1); errorName = t2 ? A.ErrorDescription$(t3.get$runtimeType(t1).toString$0(0)) : A.ErrorDescription$(t3.get$runtimeType(t1).toString$0(0) + " object"); } A.ErrorDescription$("The following " + errorName.toString$0(0) + " was " + verb.toString$0(0) + ":"); if (diagnosticable != null) B.JSArray_methods.forEach$1(diagnosticable.diagnostics, properties.get$add(properties)); else { prefix = J.get$runtimeType$(t1).toString$0(0) + ": "; message = _this.exceptionAsString$0(); A.ErrorSummary$(B.JSString_methods.startsWith$1(message, prefix) ? B.JSString_methods.substring$1(message, prefix.length) : message); } } t2 = _this.stack; if (t2 != null) { if (type$.AssertionError._is(t1) && diagnosticable == null) { t1 = A.StackFrame_fromStackString(J.toString$0$(A.FlutterError__defaultStackTraceDemangler(t2))); t3 = A._arrayInstanceType(t1)._eval$1("SkipWhileIterable<1>"); stackFrames = A.List_List$of(new A.SkipWhileIterable(t1, new A.FlutterErrorDetails_debugFillProperties_closure(), t3), true, t3._eval$1("Iterable.E")); if (stackFrames.length >= 2 && stackFrames[0].$package === "flutter" && stackFrames[1].$package === "flutter") { A.ErrorSpacer$(); A.ErrorHint$("Either the assertion indicates an error in the framework itself, or we should provide substantially more information in this error message to help you determine and fix the underlying cause.\nIn either case, please report this assertion by filing a bug on GitHub:\n https://github.com/flutter/flutter/issues/new?template=2_bug.md"); } } A.ErrorSpacer$(); A.DiagnosticsStackTrace$("When the exception was thrown, this was the stack", t2, _this.stackFilter); } t1 = _this.informationCollector; if (t1 != null) { A.ErrorSpacer$(); J.forEach$1$ax(t1.call$0(), properties.get$add(properties)); } }, toStringShort$0() { return "Exception caught by " + this.library; }, toString$0(_) { A._FlutterErrorDetailsNode$(null, B.DiagnosticsTreeStyle_5, this); return ""; } }; A.FlutterErrorDetails_summary_formatException.prototype = { call$0() { return J.trimLeft$0$s(this.$this.exceptionAsString$0().split("\n")[0]); }, $signature: 65 }; A.FlutterErrorDetails_summary_closure.prototype = { call$1(node) { return node.get$level(node) === B.DiagnosticLevel_6; }, $signature: 2668 }; A.FlutterErrorDetails_summary_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.FlutterErrorDetails_debugFillProperties_closure.prototype = { call$1(frame) { return frame.packageScheme === "dart"; }, $signature: 2667 }; A.FlutterError.prototype = { get$message(_) { return this.toString$0(0); }, toStringShort$0() { return "FlutterError"; }, toString$0(_) { var t1 = this.diagnostics; return new A.MappedListIterable(t1, new A.FlutterError_toString_closure(new A.TextTreeRenderer(4000000000, 65, B.DiagnosticLevel_2, -1)), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$1(0, "\n"); }, $isAssertionError: 1, $isDiagnosticableTree: 1 }; A.FlutterError_FlutterError_closure.prototype = { call$1(line) { return A.ErrorDescription$(line); }, $signature: 2666 }; A.FlutterError_defaultStackFilter_closure.prototype = { call$1(value) { return value + 1; }, $signature: 121 }; A.FlutterError_defaultStackFilter_closure0.prototype = { call$1(value) { return value + 1; }, $signature: 121 }; A.FlutterError_toString_closure.prototype = { call$1(node) { return B.JSString_methods.trimRight$0(this.renderer.render$1(0, node)); }, $signature: 2664 }; A.debugPrintStack_closure.prototype = { call$1(line) { return J.contains$1$asx(line, "StackTrace.current") || B.JSString_methods.contains$1(line, "dart-sdk/lib/_internal") || B.JSString_methods.contains$1(line, "dart:sdk_internal"); }, $signature: 52 }; A.DiagnosticsStackTrace.prototype = { get$allowTruncate() { return false; } }; A._FlutterErrorDetailsNode.prototype = { get$builder() { A.DiagnosticableNode.prototype.get$builder.call(this); return null; } }; A._FlutterError_Error_DiagnosticableTreeMixin.prototype = {}; A._FlutterErrorDetails_Object_Diagnosticable.prototype = {}; A.BindingBase.prototype = { BindingBase$0() { var t1, t2, t3, t4, t5, t6, _this = this, _null = null; A.Timeline_startSync("Framework initialization", _null, _null); _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initInstances(); $.WidgetsBinding__instance = _this; t1 = type$.Element_2; t2 = A.HashSet_HashSet(t1); t3 = A._setArrayType([], type$.JSArray_Element_2); t4 = type$.int; t5 = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.void_Function_FocusHighlightMode, t4); t6 = A.FocusScopeNode$(true, "Root Focus Scope", false); t6 = t6._manager = new A.FocusManager(new A.HashedObserverList(t5, type$.HashedObserverList_of_void_Function_FocusHighlightMode), t6, A.LinkedHashSet_LinkedHashSet$_empty(type$.FocusNode), A._setArrayType([], type$.JSArray__Autofocus), $.$get$ChangeNotifier__emptyListeners()); t5 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__keyEventManager, "_keyEventManager"); t5.keyMessageHandler = t6.get$_handleKeyMessage(); $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.$indexSet(0, t6.get$_focus_manager$_handlePointerEvent(), _null); t1 = new A.BuildOwner(new A._InactiveElements(t2), t3, t6, A.LinkedHashMap_LinkedHashMap$_empty(type$.GlobalKey_State_StatefulWidget, t1)); _this.WidgetsBinding__buildOwner = t1; t1.onBuildScheduled = _this.get$_handleBuildScheduled(); $.$get$EnginePlatformDispatcher__instance()._onLocaleChanged = _this.get$handleLocaleChanged(); B.OptionalMethodChannel_qNA.setMethodCallHandler$1(_this.get$_handleNavigationInvocation()); t1 = new A.DefaultPlatformMenuDelegate(A.LinkedHashMap_LinkedHashMap$_empty(t4, type$.MenuItem), B.OptionalMethodChannel_AWk); B.OptionalMethodChannel_AWk.setMethodCallHandler$1(t1.get$_methodCallHandler()); _this.WidgetsBinding___WidgetsBinding_platformMenuDelegate = t1; _this.initServiceExtensions$0(); t1 = type$.String; A.postEvent("Flutter.FrameworkInitialization", A.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); A.Timeline_finishSync(); }, initInstances$0() { }, initServiceExtensions$0() { this.registerStringServiceExtension$3$getter$name$setter(new A.BindingBase_initServiceExtensions_closure(), "connectedVmServiceUri", new A.BindingBase_initServiceExtensions_closure0()); this.registerStringServiceExtension$3$getter$name$setter(new A.BindingBase_initServiceExtensions_closure1(), "activeDevToolsServerAddress", new A.BindingBase_initServiceExtensions_closure2()); }, lockEvents$1(callback) { var future, timelineTask = new A.TimelineTask(null, 0, A._setArrayType([], type$.JSArray_nullable__AsyncBlock)); timelineTask.start$1(0, "Lock events"); ++this._lockCount; future = callback.call$0(); future.whenComplete$1(new A.BindingBase_lockEvents_closure(this, timelineTask)); return future; }, unlocked$0() { }, performReassemble$0() { $.FlutterError__errorCount = 0; return A.Future_Future$value(null, type$.void); }, registerBoolServiceExtension$3$getter$name$setter(getter, $name, setter) { this.registerServiceExtension$2$callback$name(new A.BindingBase_registerBoolServiceExtension_closure(this, setter, $name, getter), $name); }, registerNumericServiceExtension$3$getter$name$setter(getter, $name, setter) { this.registerServiceExtension$2$callback$name(new A.BindingBase_registerNumericServiceExtension_closure(this, $name, setter, getter), $name); }, _postExtensionStateChangedEvent$2($name, value) { A.postEvent("Flutter.ServiceExtensionStateChanged", A.LinkedHashMap_LinkedHashMap$_literal(["extension", "ext.flutter." + $name, "value", value], type$.String, type$.dynamic)); }, registerStringServiceExtension$3$getter$name$setter(getter, $name, setter) { this.registerServiceExtension$2$callback$name(new A.BindingBase_registerStringServiceExtension_closure(this, setter, $name, getter), $name); }, registerServiceExtension$2$callback$name(callback, $name) { var methodName = "ext.flutter." + $name; A.registerExtension(methodName, new A.BindingBase_registerServiceExtension_closure(methodName, callback)); }, toString$0(_) { return ""; } }; A.BindingBase_initServiceExtensions_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue, t1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.connectedVmServiceUri; $async$returnValue = t1 == null ? "" : t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 598 }; A.BindingBase_initServiceExtensions_closure0.prototype = { call$1(uri) { return this.$call$body$BindingBase_initServiceExtensions_closure0(uri); }, $call$body$BindingBase_initServiceExtensions_closure0(uri) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $.connectedVmServiceUri = uri; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 599 }; A.BindingBase_initServiceExtensions_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue, t1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.activeDevToolsServerAddress; $async$returnValue = t1 == null ? "" : t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 598 }; A.BindingBase_initServiceExtensions_closure2.prototype = { call$1(serverAddress) { return this.$call$body$BindingBase_initServiceExtensions_closure(serverAddress); }, $call$body$BindingBase_initServiceExtensions_closure(serverAddress) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $.activeDevToolsServerAddress = serverAddress; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 599 }; A.BindingBase_lockEvents_closure.prototype = { call$0() { var t1 = this.$this; if (--t1._lockCount <= 0) { this.timelineTask.finish$0(0); t1.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$unlocked(); if (t1.SchedulerBinding__taskQueue._priority_queue$_length !== 0) t1._ensureEventLoopCallback$0(); } }, $signature: 1 }; A.BindingBase_registerBoolServiceExtension_closure.prototype = { call$1(parameters) { return this.$call$body$BindingBase_registerBoolServiceExtension_closure(parameters); }, $call$body$BindingBase_registerBoolServiceExtension_closure(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.getInterceptor$x(parameters); $async$goto = t1.containsKey$1(parameters, "enabled") ? 3 : 4; break; case 3: // then $async$goto = 5; return A._asyncAwait($async$self.setter.call$1(J.$eq$(t1.$index(parameters, "enabled"), "true")), $async$call$1); case 5: // returning from await. $async$goto = 6; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 6: // returning from await. t1 = $async$result ? "true" : "false"; $async$self.$this._postExtensionStateChangedEvent$2($async$self.name, t1); case 4: // join $async$temp1 = A; $async$goto = 7; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 7: // returning from await. $async$returnValue = $async$temp1.LinkedHashMap_LinkedHashMap$_literal(["enabled", $async$result ? "true" : "false"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 259 }; A.BindingBase_registerNumericServiceExtension_closure.prototype = { call$1(parameters) { return this.$call$body$BindingBase_registerNumericServiceExtension_closure(parameters); }, $call$body$BindingBase_registerNumericServiceExtension_closure(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t1, t2, $async$temp1, $async$temp2, $async$temp3; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.name; t2 = J.getInterceptor$x(parameters); $async$goto = t2.containsKey$1(parameters, t1) ? 3 : 4; break; case 3: // then t2 = t2.$index(parameters, t1); t2.toString; $async$goto = 5; return A._asyncAwait($async$self.setter.call$1(A.double_parse(t2)), $async$call$1); case 5: // returning from await. $async$temp1 = $async$self.$this; $async$temp2 = t1; $async$temp3 = J; $async$goto = 6; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 6: // returning from await. $async$temp1._postExtensionStateChangedEvent$2($async$temp2, $async$temp3.toString$0$($async$result)); case 4: // join $async$temp1 = A; $async$temp2 = t1; $async$temp3 = J; $async$goto = 7; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 7: // returning from await. $async$returnValue = $async$temp1.LinkedHashMap_LinkedHashMap$_literal([$async$temp2, $async$temp3.toString$0$($async$result)], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 259 }; A.BindingBase_registerStringServiceExtension_closure.prototype = { call$1(parameters) { return this.$call$body$BindingBase_registerStringServiceExtension_closure(parameters); }, $call$body$BindingBase_registerStringServiceExtension_closure(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t1, $async$temp1, $async$temp2; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.getInterceptor$x(parameters); $async$goto = t1.containsKey$1(parameters, "value") ? 3 : 4; break; case 3: // then t1 = t1.$index(parameters, "value"); t1.toString; $async$goto = 5; return A._asyncAwait($async$self.setter.call$1(t1), $async$call$1); case 5: // returning from await. $async$temp1 = $async$self.$this; $async$temp2 = $async$self.name; $async$goto = 6; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 6: // returning from await. $async$temp1._postExtensionStateChangedEvent$2($async$temp2, $async$result); case 4: // join $async$temp1 = A; $async$goto = 7; return A._asyncAwait($async$self.getter.call$0(), $async$call$1); case 7: // returning from await. $async$returnValue = $async$temp1.LinkedHashMap_LinkedHashMap$_literal(["value", $async$result], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 259 }; A.BindingBase_registerServiceExtension_closure.prototype = { call$2(method, parameters) { return this.$call$body$BindingBase_registerServiceExtension_closure(method, parameters); }, $call$body$BindingBase_registerServiceExtension_closure(method, parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.ServiceExtensionResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, result, exception, stack, exception0, t1, $async$exception0, $async$temp1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.debugInstrumentAction("Wait for outer event loop", new A.BindingBase_registerServiceExtension__closure(), type$.void), $async$call$2); case 3: // returning from await. result = A._Cell$named("result"); $async$handler = 5; $async$temp1 = result; $async$goto = 8; return A._asyncAwait($async$self.callback.call$1(parameters), $async$call$2); case 8: // returning from await. $async$temp1.__late_helper$_value = $async$result; $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); t1 = A.ErrorDescription$('during a service extension callback for "' + A.S(method) + '"'); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "Flutter framework", t1, null, null, false)); t1 = type$.String; t1 = B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["exception", J.toString$0$(exception), "stack", J.toString$0$(stack), "method", method], t1, t1)); A.ServiceExtensionResponse__validateErrorCode(-32000); A.ArgumentError_checkNotNull(t1, "errorDetail"); $async$returnValue = new A.ServiceExtensionResponse(); // goto return $async$goto = 1; break; // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally J.$indexSet$ax(result._readLocal$0(), "type", "_extensionType"); J.$indexSet$ax(result._readLocal$0(), "method", method); $async$returnValue = A.ServiceExtensionResponse$result(B.C_JsonCodec.encode$1(result._readLocal$0())); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 791 }; A.BindingBase_registerServiceExtension__closure.prototype = { call$0() { return A.Future_Future$delayed(B.Duration_0, null, type$.void); }, $signature: 100 }; A.DebugReassembleConfig.prototype = {}; A.Listenable.prototype = {}; A.ChangeNotifier.prototype = { addListener$1(_, listener) { var newListeners, i, _this = this, t1 = _this.ChangeNotifier__count, t2 = _this.ChangeNotifier__listeners, t3 = t2.length; if (t1 === t3) { t2 = type$.nullable_void_Function; if (t1 === 0) { t1 = A.List_List$filled(1, null, false, t2); _this.ChangeNotifier__listeners = t1; } else { newListeners = A.List_List$filled(t3 * 2, null, false, t2); for (t1 = _this.ChangeNotifier__count, t2 = _this.ChangeNotifier__listeners, i = 0; i < t1; ++i) newListeners[i] = t2[i]; _this.ChangeNotifier__listeners = newListeners; t1 = newListeners; } } else t1 = t2; t1[_this.ChangeNotifier__count++] = listener; }, _removeAt$1(index) { var newListeners, i, i0, _this = this, t1 = --_this.ChangeNotifier__count, t2 = _this.ChangeNotifier__listeners; if (t1 * 2 <= t2.length) { newListeners = A.List_List$filled(t1, null, false, type$.nullable_void_Function); for (t1 = _this.ChangeNotifier__listeners, i = 0; i < index; ++i) newListeners[i] = t1[i]; for (t2 = _this.ChangeNotifier__count, i = index; i < t2; i = i0) { i0 = i + 1; newListeners[i] = t1[i0]; } _this.ChangeNotifier__listeners = newListeners; } else { for (i = index; i < t1; i = i0) { i0 = i + 1; t2[i] = t2[i0]; } t2[t1] = null; } }, removeListener$1(_, listener) { var i, _this = this; for (i = 0; i < _this.ChangeNotifier__count; ++i) if (J.$eq$(_this.ChangeNotifier__listeners[i], listener)) { if (_this.ChangeNotifier__notificationCallStackDepth > 0) { _this.ChangeNotifier__listeners[i] = null; ++_this.ChangeNotifier__reentrantlyRemovedListeners; } else _this._removeAt$1(i); break; } }, dispose$0(_) { this.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); this.ChangeNotifier__count = 0; }, notifyListeners$0() { var i, exception, stack, t2, exception0, rti, t3, newLength, newListeners, newIndex, listener, newIndex0, swapIndex, _this = this, t1 = _this.ChangeNotifier__count; if (t1 === 0) return; ++_this.ChangeNotifier__notificationCallStackDepth; for (i = 0; i < t1; ++i) try { t2 = _this.ChangeNotifier__listeners[i]; if (t2 != null) t2.call$0(); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); rti = _this instanceof A.Closure ? A.closureFunctionType(_this) : null; t2 = A.ErrorDescription$("while dispatching notifications for " + A.createRuntimeType(rti == null ? A.instanceType(_this) : rti).toString$0(0)); t3 = $.$get$FlutterError_onError(); if (t3 != null) t3.call$1(new A.FlutterErrorDetails(exception, stack, "foundation library", t2, null, new A.ChangeNotifier_notifyListeners_closure(_this), false)); } if (--_this.ChangeNotifier__notificationCallStackDepth === 0 && _this.ChangeNotifier__reentrantlyRemovedListeners > 0) { newLength = _this.ChangeNotifier__count - _this.ChangeNotifier__reentrantlyRemovedListeners; t1 = _this.ChangeNotifier__listeners; if (newLength * 2 <= t1.length) { newListeners = A.List_List$filled(newLength, null, false, type$.nullable_void_Function); for (t1 = _this.ChangeNotifier__count, t2 = _this.ChangeNotifier__listeners, newIndex = 0, i = 0; i < t1; ++i) { listener = t2[i]; if (listener != null) { newIndex0 = newIndex + 1; newListeners[newIndex] = listener; newIndex = newIndex0; } } _this.ChangeNotifier__listeners = newListeners; } else for (i = 0; i < newLength; ++i) if (t1[i] == null) { swapIndex = i + 1; for (; t2 = t1[swapIndex], t2 == null;) ++swapIndex; t1[i] = t2; t1[swapIndex] = null; } _this.ChangeNotifier__reentrantlyRemovedListeners = 0; _this.ChangeNotifier__count = newLength; } }, $isListenable: 1 }; A.ChangeNotifier_notifyListeners_closure.prototype = { call$0() { var _null = null, t1 = this.$this; return A._setArrayType([A.DiagnosticsProperty$("The " + A.getRuntimeType(t1).toString$0(0) + " sending notification was", t1, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.ChangeNotifier)], type$.JSArray_DiagnosticsNode); }, $signature: 138 }; A._MergingListenable.prototype = { addListener$1(_, listener) { var t1, t2, _i, child; for (t1 = this._change_notifier$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.addListener$1(0, listener); } }, removeListener$1(_, listener) { var t1, t2, _i, child; for (t1 = this._change_notifier$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.removeListener$1(0, listener); } }, toString$0(_) { return "Listenable.merge([" + B.JSArray_methods.join$1(this._change_notifier$_children, ", ") + "])"; } }; A.ValueNotifier.prototype = { get$value(_) { return this._change_notifier$_value; }, set$value(_, newValue) { if (J.$eq$(this._change_notifier$_value, newValue)) return; this._change_notifier$_value = newValue; this.notifyListeners$0(); }, toString$0(_) { return "#" + A.shortHash(this) + "(" + A.S(this._change_notifier$_value) + ")"; } }; A.DiagnosticLevel.prototype = { toString$0(_) { return "DiagnosticLevel." + this._core$_name; } }; A.DiagnosticsTreeStyle.prototype = { toString$0(_) { return "DiagnosticsTreeStyle." + this._core$_name; } }; A.TextTreeConfiguration.prototype = {}; A._WordWrapParseMode.prototype = { toString$0(_) { return "_WordWrapParseMode." + this._core$_name; } }; A._PrefixedStringBuilder.prototype = { incrementPrefixOtherLines$2$updateCurrentLine(suffix, updateCurrentLine) { var _this = this, t1 = _this._diagnostics$_currentLine._contents.length === 0 || updateCurrentLine, t2 = _this._nextPrefixOtherLines; if (t1) { t1 = t2 == null ? _this._prefixOtherLines : t2; t1.toString; _this._prefixOtherLines = t1 + suffix; _this._nextPrefixOtherLines = null; } else { t1 = t2 == null ? _this._prefixOtherLines : t2; t1.toString; _this._nextPrefixOtherLines = t1 + suffix; } }, get$requiresMultipleLines() { var _this = this, t1 = _this._numLines; if (t1 <= 1) if (!(t1 === 1 && _this._diagnostics$_currentLine._contents.length !== 0)) { t1 = _this._diagnostics$_currentLine._contents; t1 = t1.length + (_this._diagnostics$_buffer._contents.length === 0 ? _this.prefixLineOne : _this._prefixOtherLines).length > _this.wrapWidth; } else t1 = true; else t1 = true; return t1; }, _finalizeLine$1(addTrailingLineBreak) { var lines, $length, i, _i, line, _this = this, firstLine = _this._diagnostics$_buffer._contents.length === 0, t1 = _this._diagnostics$_currentLine, t2 = t1._contents, text = t2.charCodeAt(0) == 0 ? t2 : t2; t1._contents = ""; t1 = _this._wrappableRanges; if (t1.length === 0) { _this._writeLine$3$firstLine$includeLineBreak(text, firstLine, addTrailingLineBreak); return; } t2 = firstLine ? _this.prefixLineOne.length : _this._prefixOtherLines.length; lines = A._PrefixedStringBuilder__wordWrapLine(text, t1, _this.wrapWidth, _this._prefixOtherLines.length, t2); $length = lines.length; for (t2 = !addTrailingLineBreak, i = 0, _i = 0; _i < lines.length; lines.length === $length || (0, A.throwConcurrentModificationError)(lines), ++_i) { line = lines[_i]; ++i; _this._writeLine$3$firstLine$includeLineBreak(line, firstLine, !t2 || i < $length); } B.JSArray_methods.set$length(t1, 0); }, write$2$allowWrap(_, s, allowWrap) { var lines, t1, t2, i, t3, line, wrapStart, wrapEnd, _this = this; if (s.length === 0) return; lines = s.split("\n"); for (t1 = _this._diagnostics$_currentLine, t2 = _this._wrappableRanges, i = 0; i < lines.length; ++i) { if (i > 0) { _this._finalizeLine$1(true); t3 = _this._nextPrefixOtherLines; if (t3 != null) { _this._prefixOtherLines = t3; _this._nextPrefixOtherLines = null; } } line = lines[i]; t3 = line.length; if (t3 !== 0) { if (allowWrap && true) { wrapStart = t1._contents.length; wrapEnd = wrapStart + t3; if (t2.length !== 0 && B.JSArray_methods.get$last(t2) === wrapStart) B.JSArray_methods.set$last(t2, wrapEnd); else { t2.push(wrapStart); t2.push(wrapEnd); } } t1._contents += line; } } }, write$1($receiver, s) { return this.write$2$allowWrap($receiver, s, false); }, _updatePrefix$0() { var t1 = this._nextPrefixOtherLines; if (t1 != null) { this._prefixOtherLines = t1; this._nextPrefixOtherLines = null; } }, _writeLine$3$firstLine$includeLineBreak(line, firstLine, includeLineBreak) { var _this = this, t1 = _this._diagnostics$_buffer, t2 = t1._contents += B.JSString_methods.trimRight$0(A.S(t1._contents.length === 0 ? _this.prefixLineOne : _this._prefixOtherLines) + A.S(line)); if (includeLineBreak) t1._contents = t2 + "\n"; ++_this._numLines; }, writeRawLines$1(lines) { var t1, t2, _this = this; if (lines.length === 0) return; if (_this._diagnostics$_currentLine._contents.length !== 0) _this._finalizeLine$1(true); t1 = _this._diagnostics$_buffer; t2 = t1._contents += lines; if (!B.JSString_methods.endsWith$1(lines, "\n")) t1._contents = t2 + "\n"; ++_this._numLines; _this._updatePrefix$0(); }, writeStretched$2(text, targetLineLength) { var t1, t2, targetLength, _this = this; _this.write$1(0, text); t1 = _this._diagnostics$_currentLine; t2 = t1._contents; targetLength = targetLineLength - (t2.length + (_this._diagnostics$_buffer._contents.length === 0 ? _this.prefixLineOne : _this._prefixOtherLines).length); if (targetLength > 0) t1._contents += B.JSString_methods.$mul(text[text.length - 1], targetLength); B.JSArray_methods.set$length(_this._wrappableRanges, 0); } }; A._PrefixedStringBuilder__wordWrapLine_noWrap.prototype = { call$1(index) { var t1, t2, t3; for (t1 = this._box_0, t2 = this.wrapRanges; true;) { t3 = t1.currentChunk; if (t3 >= t2.length) return true; if (index < t2[t3 + 1]) break; t1.currentChunk = t3 + 2; } return index < t2[t1.currentChunk]; }, $signature: 178 }; A._NoDefaultValue.prototype = {}; A.TextTreeRenderer.prototype = { render$4$parentConfiguration$prefixLineOne$prefixOtherLines(_, node, parentConfiguration, prefixLineOne, prefixOtherLines) { var t1 = this._debugRender$4$parentConfiguration$prefixLineOne$prefixOtherLines(node, parentConfiguration, prefixLineOne, prefixOtherLines); return t1; }, render$1($receiver, node) { return this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines($receiver, node, null, "", null); }, _debugRender$4$parentConfiguration$prefixLineOne$prefixOtherLines(node, parentConfiguration, prefixLineOne, prefixOtherLines) { var isSingleLine, t1, t2, descendants, t3, t4, t5, builder, children, description, wrapName, wrapDescription, uppercaseTitle, $name, includeName, propertiesIterable, properties, i, t6, property, propertyRender, propertyLines, t7, t8, t9, prefixChildrenRaw, child, childStyle, childPrefixOtherLines, nextChildStyle, _this = this, _s1_ = "\n", _box_0 = {}; _box_0.prefixOtherLines = prefixOtherLines; if (node.get$style(node) === B.DiagnosticsTreeStyle_8) isSingleLine = (parentConfiguration == null ? null : parentConfiguration.lineBreakProperties) !== true; else isSingleLine = false; if (prefixOtherLines == null) { _box_0.prefixOtherLines = prefixLineOne; t1 = prefixLineOne; } else t1 = prefixOtherLines; t2 = node.get$textTreeConfiguration(); t2.toString; if (t1.length === 0) t1 = _box_0.prefixOtherLines = t1 + t2.prefixOtherLinesRootNode; if (node.get$style(node) === B.DiagnosticsTreeStyle_11) { descendants = A._setArrayType([], type$.JSArray_String); _box_0.lines = _box_0.depth = 0; new A.TextTreeRenderer__debugRender_visitor(_box_0, descendants).call$1(node); if (_box_0.lines > 1) t1 = prefixLineOne + ("This " + A.S(node.name) + " had the following descendants (showing up to depth 5):\n"); else { t1 = descendants.length; t2 = A.S(node.name); t1 = t1 === 1 ? prefixLineOne + ("This " + t2 + " had the following child:\n") : prefixLineOne + ("This " + t2 + " has no descendants.\n"); } t1 = A.StringBuffer__writeAll(t1, descendants, _s1_); return t1.charCodeAt(0) == 0 ? t1 : t1; } t3 = _this._wrapWidthProperties; t4 = Math.max(_this._wrapWidth, t1.length + t3); t5 = new A.StringBuffer(""); builder = new A._PrefixedStringBuilder(prefixLineOne, t1, t4, new A.StringBuffer(""), t5, A._setArrayType([], type$.JSArray_int)); children = node.getChildren$0(); description = node.toDescription$1$parentConfiguration(parentConfiguration); t1 = t2.beforeName; if (t1.length !== 0) builder.write$1(0, t1); t1 = !isSingleLine; wrapName = t1 && node.get$allowNameWrap(); wrapDescription = t1 && node.get$allowWrap(); uppercaseTitle = node.get$style(node) === B.DiagnosticsTreeStyle_5; $name = node.name; if (uppercaseTitle) $name = $name == null ? null : $name.toUpperCase(); if (description == null || description.length === 0) { if (node.get$showName() && $name != null) builder.write$2$allowWrap(0, $name, wrapName); } else { if ($name != null && $name.length !== 0 && node.get$showName()) { builder.write$2$allowWrap(0, $name, wrapName); if (node.showSeparator) builder.write$2$allowWrap(0, t2.afterName, wrapName); builder.write$2$allowWrap(0, t2.isNameOnOwnLine || J.contains$1$asx(description, _s1_) ? _s1_ : " ", wrapName); includeName = true; } else includeName = false; if (t1 && builder.get$requiresMultipleLines() && t5._contents.length !== 0) builder.write$1(0, _s1_); if (includeName) builder.incrementPrefixOtherLines$2$updateCurrentLine(children.length === 0 ? t2.propertyPrefixNoChildren : t2.propertyPrefixIfChildren, true); if (uppercaseTitle) description = description.toUpperCase(); builder.write$2$allowWrap(0, J.trimRight$0$s(description), wrapDescription); if (!includeName) builder.incrementPrefixOtherLines$2$updateCurrentLine(children.length === 0 ? t2.propertyPrefixNoChildren : t2.propertyPrefixIfChildren, false); } t1 = t2.suffixLineOne; if (t1.length !== 0) builder.writeStretched$2(t1, t4); propertiesIterable = J.where$1$ax(node.getProperties$0(0), new A.TextTreeRenderer__debugRender_closure(_this)); t1 = _this._maxDescendentsTruncatableNode; if (t1 >= 0 && node.get$allowTruncate()) { t4 = propertiesIterable.$ti._eval$1("Iterable.E"); if (propertiesIterable.get$length(propertiesIterable) < t1) { t4 = A.TakeIterable_TakeIterable(propertiesIterable, t1, t4); properties = A.List_List$of(t4, true, A._instanceType(t4)._eval$1("Iterable.E")); B.JSArray_methods.add$1(properties, A.DiagnosticsNode_DiagnosticsNode$message("...", true, B.DiagnosticsTreeStyle_8)); } else properties = A.List_List$of(propertiesIterable, true, t4); if (t1 < children.length) { children = A.SubListIterable$(children, 0, A.checkNotNullable(t1, "count", type$.int), A._arrayInstanceType(children)._precomputed1).toList$0(0); B.JSArray_methods.add$1(children, A.DiagnosticsNode_DiagnosticsNode$message("...", true, B.DiagnosticsTreeStyle_8)); } } else properties = A.List_List$of(propertiesIterable, true, propertiesIterable.$ti._eval$1("Iterable.E")); if (properties.length !== 0 || children.length !== 0 || node.get$emptyBodyDescription() != null) t1 = node.showSeparator || description.length !== 0; else t1 = false; if (t1) builder.write$1(0, t2.afterDescriptionIfBody); t1 = t2.lineBreakProperties; if (t1) builder.write$1(0, t2.lineBreak); if (properties.length !== 0) builder.write$1(0, t2.beforeProperties); t4 = t2.bodyIndent; builder.incrementPrefixOtherLines$2$updateCurrentLine(t4, false); if (node.get$emptyBodyDescription() != null && properties.length === 0 && children.length === 0 && prefixLineOne.length !== 0) { t5 = node.get$emptyBodyDescription(); t5.toString; builder.write$1(0, t5); if (t1) builder.write$1(0, t2.lineBreak); } for (t5 = t2.propertySeparator, t1 = !t1, i = 0; t6 = properties.length, i < t6; ++i) { property = properties[i]; if (i > 0) builder.write$1(0, t5); t6 = property.get$textTreeConfiguration(); t6.toString; if (property.get$style(property) === B.DiagnosticsTreeStyle_8) { propertyRender = _this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, property, t2, t6.prefixLineOne, t6.childLinkSpace + t6.prefixOtherLines); propertyLines = propertyRender.split(_s1_); if (propertyLines.length === 1 && t1) builder.write$1(0, B.JSArray_methods.get$first(propertyLines)); else { builder.write$1(0, propertyRender); if (!B.JSString_methods.endsWith$1(propertyRender, _s1_)) builder.write$1(0, _s1_); } } else { t7 = builder._nextPrefixOtherLines; t8 = t7 == null; t9 = t8 ? builder._prefixOtherLines : t7; if (t8) t7 = builder._prefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, property, t2, A.S(t9) + t6.prefixLineOne, A.S(t7) + t6.childLinkSpace + t6.prefixOtherLines)); } } if (t6 !== 0) builder.write$1(0, t2.afterProperties); builder.write$1(0, ""); if (t1) builder.write$1(0, t2.lineBreak); prefixChildrenRaw = A.S(_box_0.prefixOtherLines) + t4; if (children.length === 0) if (t2.addBlankLineIfNoChildren) if (builder.get$requiresMultipleLines()) { t1 = builder._nextPrefixOtherLines; if (t1 == null) t1 = builder._prefixOtherLines; t1.toString; t1 = B.JSString_methods.trimRight$0(t1).length !== 0; } else t1 = false; else t1 = false; else t1 = false; if (t1) builder.write$1(0, t2.lineBreak); if (children.length !== 0 && t2.showChildren) { if (t2.isBlankLineBetweenPropertiesAndChildren && properties.length !== 0 && B.JSArray_methods.get$first(children).get$textTreeConfiguration().isBlankLineBetweenPropertiesAndChildren) builder.write$1(0, t2.lineBreak); builder._prefixOtherLines = _box_0.prefixOtherLines; builder._nextPrefixOtherLines = null; for (t1 = t2.lineBreak, t4 = builder.wrapWidth, i = 0; i < children.length; ++i) { child = children[i]; childStyle = child.get$style(child); if (childStyle === B.DiagnosticsTreeStyle_8 || childStyle === B.DiagnosticsTreeStyle_9) t5 = t2; else t5 = child.get$textTreeConfiguration(); t5.toString; if (i === children.length - 1) { t6 = t5.childLinkSpace; childPrefixOtherLines = prefixChildrenRaw + t6 + t5.prefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, child, t2, prefixChildrenRaw + t5.prefixLastChildLineOne, childPrefixOtherLines)); t7 = t5.footer; if (t7.length !== 0) { builder._prefixOtherLines = prefixChildrenRaw; builder._nextPrefixOtherLines = null; builder.write$1(0, t6 + t7); t5 = t5.mandatoryFooter; if (t5.length !== 0) builder.writeStretched$2(t5, Math.max(t4, t3 + childPrefixOtherLines.length)); builder.write$1(0, t1); } } else { t6 = children[i + 1]; childStyle = t6.get$style(t6); if (childStyle === B.DiagnosticsTreeStyle_8 || childStyle === B.DiagnosticsTreeStyle_9) nextChildStyle = t2; else nextChildStyle = t6.get$textTreeConfiguration(); childPrefixOtherLines = prefixChildrenRaw + nextChildStyle.linkCharacter + t5.prefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, child, t2, prefixChildrenRaw + t5.prefixLineOne, childPrefixOtherLines)); t6 = t5.footer; if (t6.length !== 0) { builder._prefixOtherLines = prefixChildrenRaw; builder._nextPrefixOtherLines = null; builder.write$1(0, t5.linkCharacter + t6); t5 = t5.mandatoryFooter; if (t5.length !== 0) builder.writeStretched$2(t5, Math.max(t4, t3 + childPrefixOtherLines.length)); builder.write$1(0, t1); } } } } if (parentConfiguration == null && t2.mandatoryFooter.length !== 0) { builder.writeStretched$2(t2.mandatoryFooter, builder.wrapWidth); builder.write$1(0, t2.lineBreak); } if (builder._diagnostics$_currentLine._contents.length !== 0) builder._finalizeLine$1(false); t1 = builder._diagnostics$_buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.TextTreeRenderer__debugRender_visitor.prototype = { call$1(node) { var t1, t2, t3, t4, _i, child, t5; for (t1 = node.getChildren$0(), t2 = t1.length, t3 = this._box_0, t4 = this.descendants, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t5 = t3.lines; if (t5 < 25) { t5 = ++t3.depth; t4.push(A.S(t3.prefixOtherLines) + B.JSString_methods.$mul(" ", t5) + A.S(child)); if (t3.depth < 5) this.call$1(child); --t3.depth; } else if (t5 === 25) t4.push(A.S(t3.prefixOtherLines) + " ...(descendants list truncated after " + t5 + " lines)"); ++t3.lines; } }, $signature: 605 }; A.TextTreeRenderer__debugRender_closure.prototype = { call$1(n) { var t1 = n.get$level(n); return t1.index >= this.$this._minLevel.index; }, $signature: 2654 }; A.DiagnosticsNode.prototype = { get$level(_) { return B.DiagnosticLevel_3; }, get$emptyBodyDescription() { return null; }, get$allowWrap() { return false; }, get$allowNameWrap() { return false; }, get$allowTruncate() { return false; }, toString$1$minLevel(_, minLevel) { return this.super$Object$toString(0); }, toString$0($receiver) { return this.toString$1$minLevel($receiver, B.DiagnosticLevel_3); }, get$textTreeConfiguration() { switch (this.get$style(this).index) { case 0: return null; case 3: return $.$get$denseTextConfiguration(); case 1: return $.$get$sparseTextConfiguration(); case 2: return $.$get$dashedTextConfiguration(); case 6: return $.$get$whitespaceTextConfiguration(); case 4: return $.$get$transitionTextConfiguration(); case 8: return $.$get$singleLineTextConfiguration(); case 9: return $.$get$errorPropertyTextConfiguration(); case 10: return $.$get$shallowTextConfiguration(); case 5: return $.$get$errorTextConfiguration(); case 11: return $.$get$whitespaceTextConfiguration(); case 7: return $.$get$flatTextConfiguration(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$name(receiver) { return this.name; }, get$showName() { return this.showName; }, get$style(receiver) { return this.style; } }; A.DiagnosticsProperty.prototype = { valueToString$1$parentConfiguration(parentConfiguration) { var v = this.get$value(this); return type$.DiagnosticableTree._is(v) ? v.toStringShort$0() : J.toString$0$(v); }, toDescription$1$parentConfiguration(parentConfiguration) { var t2, result, _this = this, t1 = _this._diagnostics$_description; if (t1 != null) { t2 = _this.tooltip; return t2 == null ? t1 : t1 + " (" + t2 + ")"; } _this._maybeCacheValue$0(); if (_this._diagnostics$_exception != null) { _this._maybeCacheValue$0(); return "EXCEPTION (" + J.get$runtimeType$(_this._diagnostics$_exception).toString$0(0) + ")"; } t1 = _this.ifNull; if (t1 != null && _this.get$value(_this) == null) { t1.toString; t2 = _this.tooltip; if (!(t2 == null)) t1 = t1 + " (" + t2 + ")"; return t1; } result = _this.valueToString$1$parentConfiguration(parentConfiguration); if (result.length === 0 && _this.ifEmpty != null) { t1 = _this.ifEmpty; t1.toString; result = t1; } t1 = _this.tooltip; return t1 == null ? result : result + " (" + t1 + ")"; }, get$value(_) { this._maybeCacheValue$0(); return this._diagnostics$_value; }, _maybeCacheValue$0() { var exception, exception0, _this = this; if (_this._valueComputed) return; _this._valueComputed = true; try { _this._diagnostics$_value = _this._computeValue.call$0(); } catch (exception0) { exception = A.unwrapException(exception0); _this._diagnostics$_exception = exception; _this._diagnostics$_value = null; } }, get$isInteresting() { var t1 = this.defaultValue; return J.$eq$(t1, B.C__NoDefaultValue) || !J.$eq$(this.get$value(this), t1); }, get$level(_) { var _this = this, t1 = _this._defaultLevel; if (t1 === B.DiagnosticLevel_0) return t1; _this._maybeCacheValue$0(); if (_this._diagnostics$_exception != null) return B.DiagnosticLevel_7; if (_this.get$value(_this) == null && _this.missingIfNull) return B.DiagnosticLevel_4; if (!_this.get$isInteresting()) return B.DiagnosticLevel_1; return t1; }, getProperties$0(_) { return B.List_empty1; }, getChildren$0() { return B.List_empty1; }, get$allowWrap() { return this.allowWrap; }, get$allowNameWrap() { return true; } }; A.DiagnosticableNode.prototype = { get$builder() { var t1 = this._cachedBuilder; return t1; }, get$style(_) { var t1 = this.style; if (t1 == null) t1 = this.get$builder().defaultDiagnosticsTreeStyle; return t1; }, get$emptyBodyDescription() { return ""; }, getProperties$0(_) { return B.List_empty1; }, getChildren$0() { return B.List_empty1; }, toDescription$1$parentConfiguration(parentConfiguration) { return ""; }, get$value(receiver) { return this.value; } }; A.DiagnosticableTreeNode.prototype = { getChildren$0() { return this.value.debugDescribeChildren$0(); } }; A.DiagnosticPropertiesBuilder.prototype = { add$1(_, property) { } }; A.Diagnosticable.prototype = { toStringShort$0() { return "#" + A.shortHash(this); }, toString$1$minLevel(_, minLevel) { var t1 = this.toStringShort$0(); return t1; }, toString$0($receiver) { return this.toString$1$minLevel($receiver, B.DiagnosticLevel_3); }, debugFillProperties$1(properties) { } }; A.DiagnosticableTree.prototype = { toStringShort$0() { return "#" + A.shortHash(this); }, debugDescribeChildren$0() { return B.List_empty1; } }; A.DiagnosticableTreeMixin.prototype = { toString$0(_) { return this.toDiagnosticsNode$1$style(B.DiagnosticsTreeStyle_8).super$Object$toString(0); }, toStringDeep$3$minLevel$prefixLineOne$prefixOtherLines(minLevel, prefixLineOne, prefixOtherLines) { this.toDiagnosticsNode$0(); return ""; }, toStringShort$0() { return "#" + A.shortHash(this); }, toDiagnosticsNode$2$name$style($name, style) { return A.DiagnosticableTreeNode$($name, style, this); }, toDiagnosticsNode$1$style(style) { return this.toDiagnosticsNode$2$name$style(null, style); }, toDiagnosticsNode$0() { return this.toDiagnosticsNode$2$name$style(null, null); }, debugDescribeChildren$0() { return B.List_empty1; } }; A.DiagnosticsBlock.prototype = { getChildren$0() { return this._diagnostics$_children; }, getProperties$0(_) { return this._properties; }, toDescription$1$parentConfiguration(parentConfiguration) { return this._diagnostics$_description; }, get$level() { return B.DiagnosticLevel_3; }, get$value(receiver) { return this.value; }, get$allowTruncate() { return this.allowTruncate; } }; A._DiagnosticableTree_Object_Diagnosticable.prototype = {}; A.Key.prototype = {}; A.LocalKey.prototype = {}; A.UniqueKey.prototype = { toString$0(_) { return "[#" + A.shortHash(this) + "]"; } }; A.ValueKey.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return A._instanceType(this)._eval$1("ValueKey")._is(other) && J.$eq$(other.value, this.value); }, get$hashCode(_) { return A.Object_hash(A.getRuntimeType(this), this.value, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var t1 = A._instanceType(this), t2 = t1._eval$1("ValueKey.T"), t3 = this.value, valueString = A.createRuntimeType(t2) === B.Type_String_k8F ? "<'" + A.S(t3) + "'>" : "<" + A.S(t3) + ">"; if (A.getRuntimeType(this) === A.createRuntimeType(t1._eval$1("ValueKey"))) return "[" + valueString + "]"; return "[" + A.createRuntimeType(t2).toString$0(0) + " " + valueString + "]"; }, get$value(receiver) { return this.value; } }; A._TypeLiteral.prototype = {}; A.LicenseParagraph.prototype = {}; A.LicenseEntry.prototype = {}; A._LicenseEntryWithLineBreaksParserState.prototype = { toString$0(_) { return "_LicenseEntryWithLineBreaksParserState." + this._core$_name; } }; A.LicenseEntryWithLineBreaks.prototype = { get$paragraphs() { var lines, result, addLine, getParagraph, t1, t2, t3, lastLineIndent, currentLineIndent, state, t4, target, _s80_ = string$.x60null_c, _box_0 = {}; _box_0.currentPosition = _box_0.lineStart = 0; _box_0.currentParagraphIndentation = null; lines = A._setArrayType([], type$.JSArray_String); result = A._setArrayType([], type$.JSArray_LicenseParagraph); addLine = new A.LicenseEntryWithLineBreaks_paragraphs_addLine(_box_0, this, lines); getParagraph = new A.LicenseEntryWithLineBreaks_paragraphs_getParagraph(_box_0, lines); for (t1 = this.text, t2 = t1.length, t3 = t2 - 1, lastLineIndent = 0, currentLineIndent = 0, state = B._LicenseEntryWithLineBreaksParserState_0, t4 = 0; t4 < t2;) { switch (state.index) { case 0: target = 1; break; case 1: target = 2; break; default: target = 3; break; } c$0: for (; true;) switch (target) { case 1: switch (t1[t4]) { case " ": target = 1; break; case "\t": target = 2; break; case "\r": case "\n": case "\f": target = 3; break; case "[": target = 4; break; default: target = 5; break; } c$1: for (; true;) switch (target) { case 1: _box_0.lineStart = t4 + 1; ++currentLineIndent; state = B._LicenseEntryWithLineBreaksParserState_0; break c$1; case 2: _box_0.lineStart = t4 + 1; currentLineIndent += 8; state = B._LicenseEntryWithLineBreaksParserState_0; break c$1; case 3: if (lines.length !== 0) result.push(getParagraph.call$0()); t4 = _box_0.currentPosition; if (t1[t4] === "\r" && t4 < t3 && t1[t4 + 1] === "\n") t4 = _box_0.currentPosition = t4 + 1; _box_0.currentParagraphIndentation = null; _box_0.lineStart = t4 + 1; lastLineIndent = 0; currentLineIndent = 0; state = B._LicenseEntryWithLineBreaksParserState_0; break c$1; case 4: ++currentLineIndent; target = 5; continue c$1; case 5: if (lines.length !== 0 && currentLineIndent > lastLineIndent) { result.push(getParagraph.call$0()); _box_0.currentParagraphIndentation = null; } if (_box_0.currentParagraphIndentation == null) if (currentLineIndent > 10) _box_0.currentParagraphIndentation = -1; else _box_0.currentParagraphIndentation = B.JSInt_methods._tdivFast$1(currentLineIndent, 3); state = B._LicenseEntryWithLineBreaksParserState_1; break c$1; } break c$0; case 2: switch (t1[t4]) { case "\n": addLine.call$0(); _box_0.lineStart = _box_0.currentPosition + 1; lastLineIndent = currentLineIndent; currentLineIndent = 0; state = B._LicenseEntryWithLineBreaksParserState_0; break; case "\f": addLine.call$0(); result.push(getParagraph.call$0()); _box_0.currentParagraphIndentation = null; _box_0.lineStart = _box_0.currentPosition + 1; lastLineIndent = 0; currentLineIndent = 0; state = B._LicenseEntryWithLineBreaksParserState_0; break; default: state = B._LicenseEntryWithLineBreaksParserState_1; } break c$0; case 3: throw A.wrapException(A.ReachabilityError$(_s80_)); } t4 = ++_box_0.currentPosition; } switch (state.index) { case 0: if (lines.length !== 0) result.push(getParagraph.call$0()); break; case 1: addLine.call$0(); result.push(getParagraph.call$0()); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return result; } }; A.LicenseEntryWithLineBreaks_paragraphs_addLine.prototype = { call$0() { var t1 = this._box_0; this.lines.push(B.JSString_methods.substring$2(this.$this.text, t1.lineStart, t1.currentPosition)); }, $signature: 0 }; A.LicenseEntryWithLineBreaks_paragraphs_getParagraph.prototype = { call$0() { var t1 = this.lines, t2 = B.JSArray_methods.join$1(t1, " "), t3 = this._box_0.currentParagraphIndentation; t3.toString; B.JSArray_methods.set$length(t1, 0); return new A.LicenseParagraph(t2, t3); }, $signature: 2649 }; A.LicenseRegistry_licenses_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3, t4, _i, collector, t5; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.LicenseRegistry__collectors, t2 = t1.length, t3 = $async$self.controller, t4 = t3.__late_helper$_name, _i = 0; case 2: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 4; break; } collector = t1[_i]; t5 = t3.__late_helper$_value; if (t5 === t3) A.throwExpression(A.LateError$localNI(t4)); $async$goto = 5; return A._asyncAwait(J.addStream$1$z(t5, collector.call$0()), $async$call$0); case 5: // returning from await. case 3: // for update t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 2; break; case 4: // after for $async$goto = 6; return A._asyncAwait(J.close$0$x(t3._readLocal$0()), $async$call$0); case 6: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 100 }; A.AbstractNode.prototype = { redepthChild$1(child) { var t1 = child._depth, t2 = this._depth; if (t1 <= t2) { child._depth = t2 + 1; child.redepthChildren$0(); } }, redepthChildren$0() { }, get$owner() { return this._node$_owner; }, attach$1(owner) { this._node$_owner = owner; }, detach$0(_) { this._node$_owner = null; }, get$parent(_) { return this._node$_parent; }, adoptChild$1(child) { var t1; child._node$_parent = this; t1 = this._node$_owner; if (t1 != null) child.attach$1(t1); this.redepthChild$1(child); }, dropChild$1(child) { child._node$_parent = null; if (this._node$_owner != null) child.detach$0(0); } }; A.ObserverList.prototype = { get$_observer_list$_set() { var result, _this = this, value = _this.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(_this.$ti._precomputed1); A._lateInitializeOnceCheck(_this.__ObserverList__set, "_set"); _this.__ObserverList__set = result; value = result; } return value; }, remove$1(_, item) { this._isDirty = true; this.get$_observer_list$_set().clear$0(0); return B.JSArray_methods.remove$1(this._observer_list$_list, item); }, clear$0(_) { this._isDirty = false; B.JSArray_methods.set$length(this._observer_list$_list, 0); this.get$_observer_list$_set().clear$0(0); }, contains$1(_, element) { var _this = this, t1 = _this._observer_list$_list; if (t1.length < 3) return B.JSArray_methods.contains$1(t1, element); if (_this._isDirty) { _this.get$_observer_list$_set().addAll$1(0, t1); _this._isDirty = false; } return _this.get$_observer_list$_set().contains$1(0, element); }, get$iterator(_) { var t1 = this._observer_list$_list; return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, get$isEmpty(_) { return this._observer_list$_list.length === 0; }, get$isNotEmpty(_) { return this._observer_list$_list.length !== 0; } }; A.HashedObserverList.prototype = { add$1(_, item) { var t1 = this._observer_list$_map, t2 = t1.$index(0, item); t1.$indexSet(0, item, (t2 == null ? 0 : t2) + 1); }, remove$1(_, item) { var t1 = this._observer_list$_map, value = t1.$index(0, item); if (value == null) return false; if (value === 1) t1.remove$1(0, item); else t1.$indexSet(0, item, value - 1); return true; }, contains$1(_, element) { return this._observer_list$_map.containsKey$1(0, element); }, get$iterator(_) { var t1 = this._observer_list$_map; return A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); }, get$isEmpty(_) { return this._observer_list$_map._length === 0; }, get$isNotEmpty(_) { return this._observer_list$_map._length !== 0; } }; A.TargetPlatform.prototype = { toString$0(_) { return "TargetPlatform." + this._core$_name; } }; A.WriteBuffer.prototype = { _serialization$_add$1(_, byte) { var t1, t2, _this = this; if (_this._currentSize === _this._serialization$_buffer.length) _this._resize$0(); t1 = _this._serialization$_buffer; t2 = _this._currentSize; t1[t2] = byte; _this._currentSize = t2 + 1; }, _append$1(other) { var _this = this, t1 = J.getInterceptor$asx(other), newSize = _this._currentSize + t1.get$length(other); if (newSize >= _this._serialization$_buffer.length) _this._resize$1(newSize); B.NativeUint8List_methods.setRange$3(_this._serialization$_buffer, _this._currentSize, newSize, other); _this._currentSize = _this._currentSize + t1.get$length(other); }, _addAll$3(data, start, end) { var _this = this, newEnd = end == null ? _this._eightBytesAsList.length : end, newSize = _this._currentSize + (newEnd - start); if (newSize >= _this._serialization$_buffer.length) _this._resize$1(newSize); B.NativeUint8List_methods.setRange$3(_this._serialization$_buffer, _this._currentSize, newSize, data); _this._currentSize = newSize; }, _addAll$1(data) { return this._addAll$3(data, 0, null); }, _resize$1(requiredLength) { var t1 = this._serialization$_buffer, t2 = t1.length, t3 = requiredLength == null ? 0 : requiredLength, newLength = Math.max(t3, t2 * 2), newBuffer = new Uint8Array(newLength); B.NativeUint8List_methods.setRange$3(newBuffer, 0, t2, t1); this._serialization$_buffer = newBuffer; }, _resize$0() { return this._resize$1(null); }, _alignTo$1(alignment) { var mod = B.JSInt_methods.$mod(this._currentSize, alignment); if (mod !== 0) this._addAll$3($.$get$WriteBuffer__zeroBuffer(), 0, alignment - mod); }, done$0() { var result, _this = this; if (_this._isDone) throw A.wrapException(A.StateError$("done() must not be called more than once on the same " + A.getRuntimeType(_this).toString$0(0) + ".")); result = A.NativeByteData_NativeByteData$view(_this._serialization$_buffer.buffer, 0, _this._currentSize); _this._serialization$_buffer = new Uint8Array(0); _this._isDone = true; return result; } }; A.ReadBuffer.prototype = { getUint8$0(_) { return J.getUint8$1$x(this.data, this._serialization$_position++); }, getInt64$0(_) { var t1 = this._serialization$_position, t2 = $.$get$Endian_host(), value = J.getInt64$2$x(this.data, t1, t2); this._serialization$_position += 8; return value; }, getUint8List$1($length) { var _this = this, t1 = _this.data, t2 = J.getInterceptor$x(t1), list = J.asUint8List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + _this._serialization$_position, $length); _this._serialization$_position = _this._serialization$_position + $length; return list; }, _alignTo$1(alignment) { var t1 = this._serialization$_position, mod = B.JSInt_methods.$mod(t1, alignment); if (mod !== 0) this._serialization$_position = t1 + (alignment - mod); } }; A.StackFrame.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.number, _this.$package, _this.line, _this.column, _this.className, _this.method, _this.source, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.StackFrame && other.number === _this.number && other.$package == _this.$package && other.line === _this.line && other.column === _this.column && other.className == _this.className && other.method == _this.method && other.source === _this.source; }, toString$0(_) { var _this = this; return "StackFrame(#" + _this.number + ", " + _this.packageScheme + ":" + A.S(_this.$package) + "/" + _this.packagePath + ":" + _this.line + ":" + _this.column + ", className: " + A.S(_this.className) + ", method: " + A.S(_this.method) + ")"; } }; A.StackFrame_fromStackString_closure.prototype = { call$1(line) { return line.length !== 0; }, $signature: 52 }; A.SynchronousFuture.prototype = { asStream$0() { var controller = A.StreamController_StreamController(null, null, null, false, this.$ti._precomputed1); controller.add$1(0, this._synchronous_future$_value); controller.close$0(0); return new A._ControllerStream(controller, A._instanceType(controller)._eval$1("_ControllerStream<1>")); }, catchError$2$test(onError, test) { return new A._Future($.Zone__current, this.$ti._eval$1("_Future<1>")); }, catchError$1(onError) { return this.catchError$2$test(onError, null); }, then$1$2$onError(_, onValue, onError, $R) { var result = onValue.call$1(this._synchronous_future$_value); if ($R._eval$1("Future<0>")._is(result)) return result; return new A.SynchronousFuture($R._as(result), $R._eval$1("SynchronousFuture<0>")); }, then$1$1($receiver, onValue, $R) { return this.then$1$2$onError($receiver, onValue, null, $R); }, whenComplete$1(action) { var result, e, stack, t1, exception, _this = this; try { result = action.call$0(); if (type$.Future_dynamic._is(result)) { t1 = J.then$1$1$x(result, new A.SynchronousFuture_whenComplete_closure(_this), _this.$ti._precomputed1); return t1; } return _this; } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); t1 = A.Future_Future$error(e, stack, _this.$ti._precomputed1); return t1; } }, $isFuture: 1 }; A.SynchronousFuture_whenComplete_closure.prototype = { call$1(value) { return this.$this._synchronous_future$_value; }, $signature() { return this.$this.$ti._eval$1("1(@)"); } }; A.GestureDisposition.prototype = { toString$0(_) { return "GestureDisposition." + this._core$_name; } }; A.GestureArenaMember.prototype = {}; A.GestureArenaEntry.prototype = { resolve$1(_, disposition) { this._arena._resolve$3(this._arena$_pointer, this._member, disposition); } }; A._GestureArena.prototype = { toString$0(_) { var _this = this, t1 = _this.members; t1 = t1.length === 0 ? "" : new A.MappedListIterable(t1, new A._GestureArena_toString_closure(_this), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$1(0, ", "); if (_this.isOpen) t1 += " [open]"; if (_this.isHeld) t1 += " [held]"; if (_this.hasPendingSweep) t1 += " [hasPendingSweep]"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A._GestureArena_toString_closure.prototype = { call$1(member) { if (member == this.$this.eagerWinner) return A.S(member) + " (eager winner)"; return A.S(member); }, $signature: 2637 }; A.GestureArenaManager.prototype = { add$2(_, pointer, member) { this._arenas.putIfAbsent$2(0, pointer, new A.GestureArenaManager_add_closure(this, pointer)).members.push(member); return new A.GestureArenaEntry(this, pointer, member); }, close$1(_, pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isOpen = false; this._tryToResolveArena$2(pointer, state); }, sweep$1(pointer) { var i, t1 = this._arenas, state = t1.$index(0, pointer); if (state == null) return; if (state.isHeld) { state.hasPendingSweep = true; return; } t1.remove$1(0, pointer); t1 = state.members; if (t1.length !== 0) { B.JSArray_methods.get$first(t1).acceptGesture$1(pointer); for (i = 1; i < t1.length; ++i) t1[i].rejectGesture$1(pointer); } }, hold$1(pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isHeld = true; }, release$1(_, pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isHeld = false; if (state.hasPendingSweep) this.sweep$1(pointer); }, _resolve$3(pointer, member, disposition) { var state = this._arenas.$index(0, pointer); if (state == null) return; if (disposition === B.GestureDisposition_1) { B.JSArray_methods.remove$1(state.members, member); member.rejectGesture$1(pointer); if (!state.isOpen) this._tryToResolveArena$2(pointer, state); } else if (state.isOpen) { if (state.eagerWinner == null) state.eagerWinner = member; } else this._resolveInFavorOf$3(pointer, state, member); }, _tryToResolveArena$2(pointer, state) { var t1 = state.members.length; if (t1 === 1) A.scheduleMicrotask(new A.GestureArenaManager__tryToResolveArena_closure(this, pointer, state)); else if (t1 === 0) this._arenas.remove$1(0, pointer); else { t1 = state.eagerWinner; if (t1 != null) this._resolveInFavorOf$3(pointer, state, t1); } }, _resolveByDefault$2(pointer, state) { var t1 = this._arenas; if (!t1.containsKey$1(0, pointer)) return; t1.remove$1(0, pointer); B.JSArray_methods.get$first(state.members).acceptGesture$1(pointer); }, _resolveInFavorOf$3(pointer, state, member) { var t1, t2, _i, rejectedMember; this._arenas.remove$1(0, pointer); for (t1 = state.members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { rejectedMember = t1[_i]; if (rejectedMember != member) rejectedMember.rejectGesture$1(pointer); } member.acceptGesture$1(pointer); } }; A.GestureArenaManager_add_closure.prototype = { call$0() { return new A._GestureArena(A._setArrayType([], type$.JSArray_GestureArenaMember)); }, $signature: 2629 }; A.GestureArenaManager__tryToResolveArena_closure.prototype = { call$0() { return this.$this._resolveByDefault$2(this.pointer, this.state); }, $signature: 0 }; A._Resampler.prototype = { stop$0(_) { var t1, t2, t3, _this = this; for (t1 = _this._resamplers, t2 = t1.get$values(t1), t3 = A._instanceType(t2), t3 = new A.MappedIterator(J.get$iterator$ax(t2.__internal$_iterable), t2._f, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MappedIterator<1,2>")), t2 = _this._handlePointerEvent; t3.moveNext$0();) t3.__internal$_current.stop$1(0, t2); t1.clear$0(0); _this._frameTime = B.Duration_0; t1 = _this._binding$_timer; if (t1 != null) t1.cancel$0(0); } }; A.GestureBinding.prototype = { _handlePointerDataPacket$1(packet) { var t1 = packet.data, t2 = $.$get$window()._debugDevicePixelRatio; this.GestureBinding__pendingPointerEvents.addAll$1(0, A.PointerEventConverter_expand(t1, t2 == null ? A.EnginePlatformDispatcher_browserDevicePixelRatio() : t2)); if (this._lockCount <= 0) this._flushPointerEventQueue$0(); }, cancelPointer$1(pointer) { var t1 = this.GestureBinding__pendingPointerEvents; if (t1._head === t1._tail && this._lockCount <= 0) A.scheduleMicrotask(this.get$_flushPointerEventQueue()); t1.addFirst$1(A.PointerCancelEvent$(0, 0, 0, 0, 0, B.PointerDeviceKind_0, false, 0, pointer, B.Offset_0_0, 1, 1, 0, 0, 0, 0, 0, 0, B.Duration_0)); }, _flushPointerEventQueue$0() { for (var t1 = this.GestureBinding__pendingPointerEvents; !t1.get$isEmpty(t1);) this.handlePointerEvent$1(t1.removeFirst$0()); }, handlePointerEvent$1($event) { this.get$_resampler().stop$0(0); this._handlePointerEventImmediately$1($event); }, _handlePointerEventImmediately$1($event) { var hitTestResult, t2, _this = this, t1 = type$.PointerDownEvent._is($event); if (t1 || type$.PointerSignalEvent._is($event) || type$.PointerHoverEvent._is($event)) { hitTestResult = A.HitTestResult$(); t2 = $event.get$position($event); A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.hitTest$2$position(hitTestResult, t2); _this.super$GestureBinding$hitTest(hitTestResult, t2); if (t1) _this.GestureBinding__hitTests.$indexSet(0, $event.get$pointer(), hitTestResult); t1 = hitTestResult; } else if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) { hitTestResult = _this.GestureBinding__hitTests.remove$1(0, $event.get$pointer()); t1 = hitTestResult; } else t1 = $event.get$down() ? _this.GestureBinding__hitTests.$index(0, $event.get$pointer()) : null; if (t1 != null || type$.PointerAddedEvent._is($event) || type$.PointerRemovedEvent._is($event)) _this.dispatchEvent$2(0, $event, t1); }, hitTest$2(result, position) { result.add$1(0, new A.HitTestEntry(this, type$.HitTestEntry_HitTestTarget)); }, dispatchEvent$2(_, $event, hitTestResult) { var exception, stack, entry, exception0, stack0, t1, t2, _i, t3, t4, _s15_ = "gesture library"; if (hitTestResult == null) { try { this.GestureBinding_pointerRouter.route$1($event); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); A.FlutterError_reportError(A.FlutterErrorDetailsForPointerEventDispatcher$(A.ErrorDescription$("while dispatching a non-hit-tested pointer event"), $event, exception, null, new A.GestureBinding_dispatchEvent_closure($event), _s15_, stack)); } return; } for (t1 = hitTestResult._hit_test$_path, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { entry = t1[_i]; try { entry.target.handleEvent$2($event.transformed$1(entry._transform), entry); } catch (exception) { exception0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); t3 = A.ErrorDescription$("while dispatching a pointer event"); t4 = $.$get$FlutterError_onError(); if (t4 != null) t4.call$1(new A.FlutterErrorDetailsForPointerEventDispatcher(exception0, stack0, _s15_, t3, null, new A.GestureBinding_dispatchEvent_closure0($event, entry), false)); } } }, handleEvent$2($event, entry) { var _this = this; _this.GestureBinding_pointerRouter.route$1($event); if (type$.PointerDownEvent._is($event)) _this.GestureBinding_gestureArena.close$1(0, $event.get$pointer()); else if (type$.PointerUpEvent._is($event)) _this.GestureBinding_gestureArena.sweep$1($event.get$pointer()); else if (type$.PointerSignalEvent._is($event)) _this.GestureBinding_pointerSignalResolver.resolve$1(0, $event); }, _handleSampleTimeChanged$0() { if (this._lockCount <= 0) this.get$_resampler().stop$0(0); }, get$_resampler() { var _this = this, value = _this.GestureBinding___GestureBinding__resampler; if (value === $) { $.$get$Stopwatch__frequency(); A._lateInitializeOnceCheck(value, "_resampler"); value = _this.GestureBinding___GestureBinding__resampler = new A._Resampler(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.PointerEventResampler), B.Duration_0, new A.Stopwatch(), B.Duration_0, B.Duration_0, _this.get$_handlePointerEventImmediately(), _this.get$_handleSampleTimeChanged(), B.Duration_16667); } return value; }, $isHitTestTarget: 1 }; A.GestureBinding_dispatchEvent_closure.prototype = { call$0() { var _null = null; return A._setArrayType([A.DiagnosticsProperty$("Event", this.event, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.PointerEvent_2)], type$.JSArray_DiagnosticsNode); }, $signature: 138 }; A.GestureBinding_dispatchEvent_closure0.prototype = { call$0() { var _null = null; return A._setArrayType([A.DiagnosticsProperty$("Event", this.event, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.PointerEvent_2), A.DiagnosticsProperty$("Target", this.entry.target, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.HitTestTarget)], type$.JSArray_DiagnosticsNode); }, $signature: 138 }; A.FlutterErrorDetailsForPointerEventDispatcher.prototype = {}; A.PointerEventConverter_expand_closure.prototype = { call$1(datum) { return datum.signalKind !== B.PointerSignalKind_2; }, $signature: 2623 }; A.PointerEventConverter_expand_closure0.prototype = { call$1(datum) { var t3, t4, t5, t6, t7, t8, t9, t10, scrollDelta, _s11_ = "Unreachable", t1 = this.devicePixelRatio, position = new A.Offset(datum.physicalX, datum.physicalY).$div(0, t1), delta = new A.Offset(datum.physicalDeltaX, datum.physicalDeltaY).$div(0, t1), radiusMinor = datum.radiusMinor / t1, radiusMajor = datum.radiusMajor / t1, radiusMin = datum.radiusMin / t1, radiusMax = datum.radiusMax / t1, timeStamp = datum.timeStamp, kind = datum.kind, t2 = datum.signalKind; switch ((t2 == null ? B.PointerSignalKind_0 : t2).index) { case 0: switch (datum.change.index) { case 1: t1 = datum.device; t2 = datum.pressureMin; t3 = datum.pressureMax; return A.PointerAddedEvent$(t1, datum.distance, datum.distanceMax, 0, kind, false, datum.orientation, position, t3, t2, radiusMax, radiusMin, datum.tilt, timeStamp); case 3: t1 = datum.device; t2 = datum.buttons; t3 = datum.pressureMin; t4 = datum.pressureMax; t5 = datum.distance; t6 = datum.distanceMax; t7 = datum.size; t8 = datum.orientation; t9 = datum.tilt; return A.PointerHoverEvent$(t2, delta, t1, t5, t6, 0, kind, false, t8, position, t4, t3, radiusMajor, radiusMax, radiusMin, radiusMinor, t7, datum.synthesized, t9, timeStamp); case 4: t1 = datum.pointerIdentifier; t2 = datum.device; t3 = A._synthesiseDownButtons(datum.buttons, kind); t4 = datum.pressure; t5 = datum.pressureMin; t6 = datum.pressureMax; t7 = datum.distanceMax; t8 = datum.size; return A.PointerDownEvent$(t3, t2, t7, 0, kind, false, datum.orientation, t1, position, t4, t6, t5, radiusMajor, radiusMax, radiusMin, radiusMinor, t8, datum.tilt, timeStamp); case 5: t1 = datum.pointerIdentifier; t2 = datum.device; t3 = A._synthesiseDownButtons(datum.buttons, kind); t4 = datum.pressure; t5 = datum.pressureMin; t6 = datum.pressureMax; t7 = datum.distanceMax; t8 = datum.size; t9 = datum.orientation; t10 = datum.tilt; return A.PointerMoveEvent$(t3, delta, t2, t7, 0, kind, false, t9, datum.platformData, t1, position, t4, t6, t5, radiusMajor, radiusMax, radiusMin, radiusMinor, t8, datum.synthesized, t10, timeStamp); case 6: t1 = datum.pointerIdentifier; t2 = datum.device; t3 = datum.buttons; t4 = datum.pressure; t5 = datum.pressureMin; t6 = datum.pressureMax; t7 = datum.distance; t8 = datum.distanceMax; t9 = datum.size; return A.PointerUpEvent$(t3, t2, t7, t8, 0, kind, false, datum.orientation, t1, position, t4, t6, t5, radiusMajor, radiusMax, radiusMin, radiusMinor, t9, datum.tilt, timeStamp); case 0: t1 = datum.pointerIdentifier; t2 = datum.device; t3 = datum.buttons; t4 = datum.pressureMin; t5 = datum.pressureMax; t6 = datum.distance; t7 = datum.distanceMax; t8 = datum.size; return A.PointerCancelEvent$(t3, t2, t6, t7, 0, kind, false, datum.orientation, t1, position, t5, t4, radiusMajor, radiusMax, radiusMin, radiusMinor, t8, datum.tilt, timeStamp); case 2: t1 = datum.device; t2 = datum.pressureMin; t3 = datum.pressureMax; return A.PointerRemovedEvent$(t1, datum.distanceMax, 0, kind, false, position, t3, t2, radiusMax, radiusMin, timeStamp); default: throw A.wrapException(A.StateError$(_s11_)); } case 1: scrollDelta = new A.Offset(datum.scrollDeltaX, datum.scrollDeltaY).$div(0, t1); return A.PointerScrollEvent$(datum.device, 0, kind, position, scrollDelta, timeStamp); case 2: throw A.wrapException(A.StateError$(_s11_)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 2621 }; A.Drag.prototype = { update$1(_, details) { }, end$1(_, details) { }, cancel$0(_) { } }; A.DragDownDetails.prototype = { toString$0(_) { return "DragDownDetails(" + A.S(this.globalPosition) + ")"; } }; A.DragStartDetails.prototype = { toString$0(_) { return "DragStartDetails(" + A.S(this.globalPosition) + ")"; } }; A.DragUpdateDetails.prototype = { toString$0(_) { return "DragUpdateDetails(" + A.S(this.delta) + ")"; } }; A.DragEndDetails.prototype = { toString$0(_) { return "DragEndDetails(" + this.velocity.toString$0(0) + ")"; } }; A.PointerEvent.prototype = { get$localPosition() { return this.position; }, get$localDelta() { return this.delta; }, get$timeStamp(receiver) { return this.timeStamp; }, get$pointer() { return this.pointer; }, get$kind(receiver) { return this.kind; }, get$device(receiver) { return this.device; }, get$position(receiver) { return this.position; }, get$delta() { return this.delta; }, get$buttons(receiver) { return this.buttons; }, get$down() { return this.down; }, get$obscured() { return this.obscured; }, get$pressure(receiver) { return this.pressure; }, get$pressureMin() { return this.pressureMin; }, get$pressureMax() { return this.pressureMax; }, get$distance() { return this.distance; }, get$distanceMax() { return this.distanceMax; }, get$size(receiver) { return this.size; }, get$radiusMajor() { return this.radiusMajor; }, get$radiusMinor() { return this.radiusMinor; }, get$radiusMin() { return this.radiusMin; }, get$radiusMax() { return this.radiusMax; }, get$orientation(receiver) { return this.orientation; }, get$tilt() { return this.tilt; }, get$synthesized() { return this.synthesized; }, get$transform(receiver) { return this.transform; } }; A._PointerEventDescription.prototype = {$isPointerEvent: 1}; A._AbstractPointerEvent.prototype = {$isPointerEvent: 1}; A._TransformedPointerEvent.prototype = { get$timeStamp(_) { return this.get$original().timeStamp; }, get$pointer() { return this.get$original().pointer; }, get$kind(_) { return this.get$original().kind; }, get$device(_) { return this.get$original().device; }, get$position(_) { return this.get$original().position; }, get$delta() { return this.get$original().delta; }, get$buttons(_) { return this.get$original().buttons; }, get$down() { return this.get$original().down; }, get$obscured() { this.get$original(); return false; }, get$pressure(_) { return this.get$original().pressure; }, get$pressureMin() { return this.get$original().pressureMin; }, get$pressureMax() { return this.get$original().pressureMax; }, get$distance() { return this.get$original().distance; }, get$distanceMax() { return this.get$original().distanceMax; }, get$size(_) { return this.get$original().size; }, get$radiusMajor() { return this.get$original().radiusMajor; }, get$radiusMinor() { return this.get$original().radiusMinor; }, get$radiusMin() { return this.get$original().radiusMin; }, get$radiusMax() { return this.get$original().radiusMax; }, get$orientation(_) { return this.get$original().orientation; }, get$tilt() { return this.get$original().tilt; }, get$synthesized() { return this.get$original().synthesized; }, get$localPosition() { var result, _this = this, value = _this.___TransformedPointerEvent_localPosition; if (value === $) { result = A.PointerEvent_transformPosition(_this.get$transform(_this), _this.get$original().position); A._lateInitializeOnceCheck(_this.___TransformedPointerEvent_localPosition, "localPosition"); _this.___TransformedPointerEvent_localPosition = result; value = result; } return value; }, get$localDelta() { var t1, t2, t3, result, _this = this, value = _this.___TransformedPointerEvent_localDelta; if (value === $) { t1 = _this.get$transform(_this); t2 = _this.get$original(); t3 = _this.get$original(); result = A.PointerEvent_transformDeltaViaPositions(t1, _this.get$localPosition(), t2.delta, t3.position); A._lateInitializeOnceCheck(_this.___TransformedPointerEvent_localDelta, "localDelta"); _this.___TransformedPointerEvent_localDelta = result; value = result; } return value; } }; A._CopyPointerAddedEvent.prototype = {}; A.PointerAddedEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerAddedEvent(this, transform); } }; A._TransformedPointerAddedEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerAddedEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerRemovedEvent.prototype = {}; A.PointerRemovedEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerRemovedEvent(this, transform); } }; A._TransformedPointerRemovedEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerRemovedEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerHoverEvent.prototype = {}; A.PointerHoverEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerHoverEvent(this, transform); } }; A._TransformedPointerHoverEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerHoverEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerEnterEvent.prototype = {}; A.PointerEnterEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerEnterEvent(this, transform); } }; A._TransformedPointerEnterEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerEnterEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerExitEvent.prototype = {}; A.PointerExitEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerExitEvent(this, transform); } }; A._TransformedPointerExitEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerExitEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerDownEvent.prototype = {}; A.PointerDownEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerDownEvent(this, transform); } }; A._TransformedPointerDownEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerDownEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerMoveEvent.prototype = {}; A.PointerMoveEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerMoveEvent(this, transform); } }; A._TransformedPointerMoveEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerMoveEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerUpEvent.prototype = {}; A.PointerUpEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerUpEvent(this, transform); } }; A._TransformedPointerUpEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerUpEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A.PointerSignalEvent.prototype = {}; A._CopyPointerScrollEvent.prototype = {}; A.PointerScrollEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerScrollEvent(this, transform); }, get$scrollDelta() { return this.scrollDelta; } }; A._TransformedPointerScrollEvent.prototype = { get$scrollDelta() { return this.original.scrollDelta; }, transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerSignalEvent: 1, $isPointerScrollEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._CopyPointerCancelEvent.prototype = {}; A.PointerCancelEvent.prototype = { transformed$1(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new A._TransformedPointerCancelEvent(this, transform); } }; A._TransformedPointerCancelEvent.prototype = { transformed$1(transform) { return this.original.transformed$1(transform); }, $isPointerCancelEvent: 1, get$original() { return this.original; }, get$transform(receiver) { return this.transform; } }; A._PointerAddedEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent.prototype = {}; A._PointerCancelEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent.prototype = {}; A._PointerDownEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent.prototype = {}; A._PointerEnterEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent.prototype = {}; A._PointerEvent_Object_Diagnosticable.prototype = {}; A._PointerExitEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent.prototype = {}; A._PointerHoverEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent.prototype = {}; A._PointerMoveEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent.prototype = {}; A._PointerRemovedEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent.prototype = {}; A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription.prototype = {}; A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent.prototype = {}; A._PointerUpEvent_PointerEvent__PointerEventDescription.prototype = {}; A._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent.prototype = {}; A.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent.prototype = {}; A.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent.prototype = {}; A.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent.prototype = {}; A.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent.prototype = {}; A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable.prototype = {}; A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription.prototype = {}; A.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent.prototype = {}; A.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent.prototype = {}; A.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent.prototype = {}; A.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent.prototype = {}; A.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent.prototype = {}; A.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent.prototype = {}; A._ForceState.prototype = { toString$0(_) { return "_ForceState." + this._core$_name; } }; A.ForcePressDetails.prototype = {}; A.ForcePressGestureRecognizer.prototype = { addAllowedPointer$1($event) { var _this = this; if ($event.get$pressureMax() <= 1) _this.resolve$1(0, B.GestureDisposition_1); else { _this.super$OneSequenceGestureRecognizer$addAllowedPointer($event); if (_this._force_press$_state === B._ForceState_0) { _this._force_press$_state = B._ForceState_1; _this.__ForcePressGestureRecognizer__lastPosition = new A.OffsetPair($event.get$localPosition(), $event.get$position($event)); } } }, handleEvent$1($event) { var pressure, _this = this; if (type$.PointerMoveEvent._is($event) || type$.PointerDownEvent._is($event)) { pressure = A.ForcePressGestureRecognizer__inverseLerp($event.get$pressureMin(), $event.get$pressureMax(), $event.get$pressure($event)); _this.__ForcePressGestureRecognizer__lastPosition = new A.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this.__ForcePressGestureRecognizer__lastPressure = pressure; if (_this._force_press$_state === B._ForceState_1) if (pressure > 0.4) { _this._force_press$_state = B._ForceState_3; _this.resolve$1(0, B.GestureDisposition_0); } else if ($event.get$delta().get$distanceSquared() > A.computeHitSlop($event.get$kind($event), _this.gestureSettings)) _this.resolve$1(0, B.GestureDisposition_1); if (pressure > 0.4 && _this._force_press$_state === B._ForceState_2) { _this._force_press$_state = B._ForceState_3; if (_this.onStart != null) _this.invokeCallback$2("onStart", new A.ForcePressGestureRecognizer_handleEvent_closure(_this, pressure)); } } _this.stopTrackingIfPointerNoLongerDown$1($event); }, acceptGesture$1(pointer) { var _this = this, t1 = _this._force_press$_state; if (t1 === B._ForceState_1) t1 = _this._force_press$_state = B._ForceState_2; if (_this.onStart != null && t1 === B._ForceState_3) _this.invokeCallback$2("onStart", new A.ForcePressGestureRecognizer_acceptGesture_closure(_this)); }, didStopTrackingLastPointer$1(pointer) { var _this = this, t1 = _this._force_press$_state, wasAccepted = t1 === B._ForceState_3 || t1 === B._ForceState_4; if (t1 === B._ForceState_1) { _this.resolve$1(0, B.GestureDisposition_1); return; } if (wasAccepted && _this.onEnd != null) if (_this.onEnd != null) _this.invokeCallback$2("onEnd", new A.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure(_this)); _this._force_press$_state = B._ForceState_0; }, rejectGesture$1(pointer) { this.stopTrackingPointer$1(pointer); this.didStopTrackingLastPointer$1(pointer); } }; A.ForcePressGestureRecognizer_handleEvent_closure.prototype = { call$0() { var t3, _s13_ = "_lastPosition", t1 = this.$this, t2 = t1.onStart; t2.toString; t3 = A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).global; A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).toString; return t2.call$1(new A.ForcePressDetails(t3)); }, $signature: 0 }; A.ForcePressGestureRecognizer_acceptGesture_closure.prototype = { call$0() { var t3, _s13_ = "_lastPosition", t1 = this.$this, t2 = t1.onStart; t2.toString; A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPressure, "_lastPressure"); t3 = A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).global; A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).toString; return t2.call$1(new A.ForcePressDetails(t3)); }, $signature: 0 }; A.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure.prototype = { call$0() { var t3, _s13_ = "_lastPosition", t1 = this.$this, t2 = t1.onEnd; t2.toString; t3 = A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).global; A._lateReadCheck(t1.__ForcePressGestureRecognizer__lastPosition, _s13_).toString; return t2.call$1(new A.ForcePressDetails(t3)); }, $signature: 0 }; A.DeviceGestureSettings.prototype = { get$hashCode(_) { return A.Object_hash(this.touchSlop, 23, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.DeviceGestureSettings && other.touchSlop == this.touchSlop; }, toString$0(_) { return "DeviceGestureSettings(touchSlop: " + A.S(this.touchSlop) + ")"; } }; A.HitTestEntry.prototype = { toString$0(_) { return "#" + A.shortHash(this) + "(" + this.target.toString$0(0) + ")"; } }; A._TransformPart.prototype = {}; A._MatrixTransformPart.prototype = { multiply$1(_, rhs) { return this.matrix.multiplied$1(rhs); } }; A._OffsetTransformPart.prototype = { multiply$1(_, rhs) { var t3, tx, ty, tz, t4, _null = null, t1 = new Float64Array(16), t2 = new A.Matrix4(t1); t2.setFrom$1(rhs); t3 = this.offset; tx = t3._dx; ty = t3._dy; if (typeof tx == "number") tz = 0; else { A.throwExpression(A.UnimplementedError$(_null)); tz = _null; ty = tz; tx = ty; } t3 = t1[0]; t4 = t1[3]; t1[0] = t3 + tx * t4; t1[1] = t1[1] + ty * t4; t1[2] = t1[2] + tz * t4; t1[3] = t4; t4 = t1[4]; t3 = t1[7]; t1[4] = t4 + tx * t3; t1[5] = t1[5] + ty * t3; t1[6] = t1[6] + tz * t3; t1[7] = t3; t3 = t1[8]; t4 = t1[11]; t1[8] = t3 + tx * t4; t1[9] = t1[9] + ty * t4; t1[10] = t1[10] + tz * t4; t1[11] = t4; t4 = t1[12]; t3 = t1[15]; t1[12] = t4 + tx * t3; t1[13] = t1[13] + ty * t3; t1[14] = t1[14] + tz * t3; t1[15] = t3; return t2; } }; A.HitTestResult.prototype = { _globalizeTransforms$0() { var t2, last, t3, _i, t1 = this._localTransforms; if (t1.length === 0) return; t2 = this._transforms; last = B.JSArray_methods.get$last(t2); for (t3 = t1.length, _i = 0; _i < t1.length; t1.length === t3 || (0, A.throwConcurrentModificationError)(t1), ++_i) { last = t1[_i].multiply$1(0, last); t2.push(last); } B.JSArray_methods.set$length(t1, 0); }, add$1(_, entry) { this._globalizeTransforms$0(); entry._transform = B.JSArray_methods.get$last(this._transforms); this._hit_test$_path.push(entry); }, popTransform$0() { var t1 = this._localTransforms; if (t1.length !== 0) t1.pop(); else this._transforms.pop(); }, toString$0(_) { var t1 = this._hit_test$_path; return "HitTestResult(" + (t1.length === 0 ? "" : B.JSArray_methods.join$1(t1, ", ")) + ")"; } }; A.LongPressStartDetails.prototype = {}; A.LongPressMoveUpdateDetails.prototype = {}; A.LongPressEndDetails.prototype = {}; A.LongPressGestureRecognizer.prototype = { isPointerAllowed$1($event) { var t1, _this = this; switch ($event.get$buttons($event)) { case 1: t1 = _this.onLongPressStart == null && _this.onLongPress == null && _this.onLongPressMoveUpdate == null && _this.onLongPressEnd == null && true; if (t1) return false; break; case 2: return false; case 4: return false; default: return false; } return _this.super$GestureRecognizer$isPointerAllowed($event); }, didExceedDeadline$0() { var t1, _this = this; _this.resolve$1(0, B.GestureDisposition_0); _this._longPressAccepted = true; t1 = _this._primaryPointer; t1.toString; _this.super$PrimaryPointerGestureRecognizer$acceptGesture(t1); _this._checkLongPressStart$0(); }, handlePrimaryPointer$1($event) { var t1, _this = this; if (!$event.get$synthesized()) { if (type$.PointerDownEvent._is($event)) { t1 = new A.VelocityTracker($event.get$kind($event), A.List_List$filled(20, null, false, type$.nullable__PointAtTime)); _this._velocityTracker = t1; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } if (type$.PointerMoveEvent._is($event)) { t1 = _this._velocityTracker; t1.toString; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } } if (type$.PointerUpEvent._is($event)) { if (_this._longPressAccepted) _this._checkLongPressEnd$1($event); else _this.resolve$1(0, B.GestureDisposition_1); _this._long_press$_reset$0(); } else if (type$.PointerCancelEvent._is($event)) { _this._checkLongPressCancel$0(); _this._long_press$_reset$0(); } else if (type$.PointerDownEvent._is($event)) { _this._longPressOrigin = new A.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this._long_press$_initialButtons = $event.get$buttons($event); _this._checkLongPressDown$1($event); } else if (type$.PointerMoveEvent._is($event)) if ($event.get$buttons($event) != _this._long_press$_initialButtons) { _this.resolve$1(0, B.GestureDisposition_1); t1 = _this._primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } else if (_this._longPressAccepted) _this._checkLongPressMoveUpdate$1($event); }, _checkLongPressDown$1($event) { this._longPressOrigin.toString; this._pointerToKind.$index(0, $event.get$pointer()).toString; switch (this._long_press$_initialButtons) { case 1: break; case 2: break; case 4: break; } }, _checkLongPressCancel$0() { if (this._recognizer$_state === B.GestureRecognizerState_1) switch (this._long_press$_initialButtons) { case 1: break; case 2: break; case 4: break; } }, _checkLongPressStart$0() { var t1, t2, _this = this; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressStart != null) { t1 = _this._longPressOrigin; t2 = t1.global; t1 = t1.local; _this.invokeCallback$2("onLongPressStart", new A.LongPressGestureRecognizer__checkLongPressStart_closure(_this, new A.LongPressStartDetails(t2, t1 == null ? t2 : t1))); } t1 = _this.onLongPress; if (t1 != null) _this.invokeCallback$2("onLongPress", t1); break; case 2: break; case 4: break; } }, _checkLongPressMoveUpdate$1($event) { var _this = this, t1 = $event.get$position($event), t2 = $event.get$localPosition(), t3 = $event.get$position($event).$sub(0, _this._longPressOrigin.global); $event.get$localPosition().$sub(0, _this._longPressOrigin.local); if (t2 == null) t2 = t1; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressMoveUpdate != null) _this.invokeCallback$2("onLongPressMoveUpdate", new A.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure(_this, new A.LongPressMoveUpdateDetails(t1, t2, t3))); break; case 2: break; case 4: break; } }, _checkLongPressEnd$1($event) { var _this = this, estimate = _this._velocityTracker.getVelocityEstimate$0(), velocity = estimate == null ? B.Velocity_Offset_0_0 : new A.Velocity(estimate.pixelsPerSecond), t1 = $event.get$position($event), t2 = $event.get$localPosition(); t1 = t2 == null ? t1 : t2; _this._velocityTracker = null; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressEnd != null) _this.invokeCallback$2("onLongPressEnd", new A.LongPressGestureRecognizer__checkLongPressEnd_closure(_this, new A.LongPressEndDetails(t1, velocity))); break; case 2: break; case 4: break; } }, _long_press$_reset$0() { var _this = this; _this._longPressAccepted = false; _this._velocityTracker = _this._long_press$_initialButtons = _this._longPressOrigin = null; }, resolve$1(_, disposition) { var _this = this; if (disposition === B.GestureDisposition_1) if (_this._longPressAccepted) _this._long_press$_reset$0(); else _this._checkLongPressCancel$0(); _this.super$OneSequenceGestureRecognizer$resolve(0, disposition); }, acceptGesture$1(pointer) { } }; A.LongPressGestureRecognizer__checkLongPressStart_closure.prototype = { call$0() { return this.$this.onLongPressStart.call$1(this.details); }, $signature: 0 }; A.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure.prototype = { call$0() { return this.$this.onLongPressMoveUpdate.call$1(this.details); }, $signature: 0 }; A.LongPressGestureRecognizer__checkLongPressEnd_closure.prototype = { call$0() { return this.$this.onLongPressEnd.call$1(this.details); }, $signature: 0 }; A._Vector.prototype = { $index(_, i) { return this._lsq_solver$_elements[i + this._lsq_solver$_offset]; }, $indexSet(_, i, value) { this._lsq_solver$_elements[i + this._lsq_solver$_offset] = value; }, $mul(_, a) { var t1, t2, t3, result, i; for (t1 = this._lsq_solver$_length, t2 = this._lsq_solver$_elements, t3 = this._lsq_solver$_offset, result = 0, i = 0; i < t1; ++i) result += t2[i + t3] * a._lsq_solver$_elements[i + a._lsq_solver$_offset]; return result; } }; A._Matrix.prototype = {}; A.PolynomialFit.prototype = {}; A.LeastSquaresSolver.prototype = { solve$1(degree) { var t3, result, t4, t5, t6, t7, h, i, j, t8, t9, dot, t10, norm, inverseNorm, wy, i0, yMean, sumSquaredError, sumSquaredTotal, err, term, v, t1 = this.x, t2 = t1.length; if (degree > t2) return null; t3 = degree + 1; result = new A.PolynomialFit(new Float64Array(t3)); t4 = t3 * t2; t5 = new Float64Array(t4); for (t6 = this.w, t7 = 0 * t2, h = 0; h < t2; ++h) { t5[t7 + h] = t6[h]; for (i = 1; i < t3; ++i) t5[i * t2 + h] = t5[(i - 1) * t2 + h] * t1[h]; } t4 = new Float64Array(t4); t7 = new Float64Array(t3 * t3); for (j = 0; j < t3; ++j) { for (t8 = j * t2, h = 0; h < t2; ++h) { t9 = t8 + h; t4[t9] = t5[t9]; } for (i = 0; i < j; ++i) { t9 = i * t2; dot = new A._Vector(t8, t2, t4).$mul(0, new A._Vector(t9, t2, t4)); for (h = 0; h < t2; ++h) { t10 = t8 + h; t4[t10] = t4[t10] - dot * t4[t9 + h]; } } t9 = new A._Vector(t8, t2, t4); norm = Math.sqrt(t9.$mul(0, t9)); if (norm < 1e-10) return null; inverseNorm = 1 / norm; for (h = 0; h < t2; ++h) { t9 = t8 + h; t4[t9] = t4[t9] * inverseNorm; } for (t9 = j * t3, i = 0; i < t3; ++i) { t10 = i < j ? 0 : new A._Vector(t8, t2, t4).$mul(0, new A._Vector(i * t2, t2, t5)); t7[t9 + i] = t10; } } t5 = new Float64Array(t2); wy = new A._Vector(0, t2, t5); for (t8 = this.y, h = 0; h < t2; ++h) t5[h] = t8[h] * t6[h]; for (i = t3 - 1, t5 = result.coefficients, i0 = i; i0 >= 0; --i0) { t5[i0] = new A._Vector(i0 * t2, t2, t4).$mul(0, wy); for (t9 = i0 * t3, j = i; j > i0; --j) t5[i0] = t5[i0] - t7[t9 + j] * t5[j]; t5[i0] = t5[i0] / t7[t9 + i0]; } for (yMean = 0, h = 0; h < t2; ++h) yMean += t8[h]; yMean /= t2; for (sumSquaredError = 0, sumSquaredTotal = 0, h = 0; h < t2; ++h) { t4 = t8[h]; err = t4 - t5[0]; for (term = 1, i = 1; i < t3; ++i) { term *= t1[h]; err -= term * t5[i]; } t7 = t6[h]; t7 *= t7; sumSquaredError += t7 * err * err; v = t4 - yMean; sumSquaredTotal += t7 * v * v; } result.__PolynomialFit_confidence = sumSquaredTotal <= 1e-10 ? 1 : 1 - sumSquaredError / sumSquaredTotal; return result; } }; A._DragState.prototype = { toString$0(_) { return "_DragState." + this._core$_name; } }; A.DragGestureRecognizer.prototype = { isPointerAllowed$1($event) { var _this = this; if (_this._initialButtons == null) switch ($event.get$buttons($event)) { case 1: if (_this.onDown == null && _this.onStart == null && _this.onUpdate == null && _this.onEnd == null && _this.onCancel == null) return false; break; default: return false; } else if ($event.get$buttons($event) != _this._initialButtons) return false; return _this.super$GestureRecognizer$isPointerAllowed($event); }, addAllowedPointer$1($event) { var t1, _this = this; _this.super$OneSequenceGestureRecognizer$addAllowedPointer($event); _this._monodrag$_velocityTrackers.$indexSet(0, $event.get$pointer(), _this.velocityTrackerBuilder.call$1($event)); t1 = _this._monodrag$_state; if (t1 === B._DragState_0) { _this._monodrag$_state = B._DragState_1; t1 = $event.get$position($event); _this.__DragGestureRecognizer__initialPosition = new A.OffsetPair($event.get$localPosition(), t1); _this._initialButtons = $event.get$buttons($event); _this.__DragGestureRecognizer__pendingDragOffset = B.OffsetPair_G6F; _this.__DragGestureRecognizer__globalDistanceMoved = 0; _this._lastPendingEventTimestamp = $event.get$timeStamp($event); _this._monodrag$_lastTransform = $event.get$transform($event); _this._monodrag$_checkDown$0(); } else if (t1 === B._DragState_2) _this.resolve$1(0, B.GestureDisposition_0); }, handleEvent$1($event) { var t1, t2, t3, movedLocally, localToGlobalTransform, _this = this; if (!$event.get$synthesized()) t1 = type$.PointerDownEvent._is($event) || type$.PointerMoveEvent._is($event); else t1 = false; if (t1) { t1 = _this._monodrag$_velocityTrackers.$index(0, $event.get$pointer()); t1.toString; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } if (type$.PointerMoveEvent._is($event)) { if ($event.get$buttons($event) != _this._initialButtons) { _this._giveUpPointer$1($event.get$pointer()); return; } if (_this._monodrag$_state === B._DragState_2) { t1 = $event.get$timeStamp($event); t2 = _this._getDeltaForDetails$1($event.get$localDelta()); t3 = _this._getPrimaryValueFromOffset$1($event.get$localDelta()); _this._checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp(t2, $event.get$position($event), $event.get$localPosition(), t3, t1); } else { _this.__DragGestureRecognizer__pendingDragOffset = A._lateReadCheck(_this.__DragGestureRecognizer__pendingDragOffset, "_pendingDragOffset").$add(0, new A.OffsetPair($event.get$localDelta(), $event.get$delta())); _this._lastPendingEventTimestamp = $event.get$timeStamp($event); _this._monodrag$_lastTransform = $event.get$transform($event); movedLocally = _this._getDeltaForDetails$1($event.get$localDelta()); if ($event.get$transform($event) == null) localToGlobalTransform = null; else { t1 = $event.get$transform($event); t1.toString; localToGlobalTransform = A.Matrix4_tryInvert(t1); } t1 = A._lateReadCheck(_this.__DragGestureRecognizer__globalDistanceMoved, "_globalDistanceMoved"); t2 = A.PointerEvent_transformDeltaViaPositions(localToGlobalTransform, null, movedLocally, $event.get$localPosition()).get$distance(); t3 = _this._getPrimaryValueFromOffset$1(movedLocally); _this.__DragGestureRecognizer__globalDistanceMoved = t1 + t2 * J.get$sign$in(t3 == null ? 1 : t3); t1 = $event.get$kind($event); t2 = _this.gestureSettings; if (_this._hasSufficientGlobalDistanceToAccept$2(t1, t2 == null ? null : t2.touchSlop)) _this.resolve$1(0, B.GestureDisposition_0); } } if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) _this._giveUpPointer$1($event.get$pointer()); }, acceptGesture$1(pointer) { var t1, t2, transform, localUpdateDelta, localToGlobal, globalUpdateDelta, correctedPosition, _this = this, _s16_ = "_initialPosition"; _this._acceptedActivePointers.add$1(0, pointer); if (_this._monodrag$_state !== B._DragState_2) { _this._monodrag$_state = B._DragState_2; t1 = A._lateReadCheck(_this.__DragGestureRecognizer__pendingDragOffset, "_pendingDragOffset"); t2 = _this._lastPendingEventTimestamp; t2.toString; transform = _this._monodrag$_lastTransform; switch (_this.dragStartBehavior.index) { case 1: _this.__DragGestureRecognizer__initialPosition = A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).$add(0, t1); localUpdateDelta = B.Offset_0_0; break; case 0: localUpdateDelta = _this._getDeltaForDetails$1(t1.local); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.__DragGestureRecognizer__pendingDragOffset = B.OffsetPair_G6F; _this._monodrag$_lastTransform = _this._lastPendingEventTimestamp = null; _this._checkStart$2(t2, pointer); if (!J.$eq$(localUpdateDelta, B.Offset_0_0) && _this.onUpdate != null) { localToGlobal = transform != null ? A.Matrix4_tryInvert(transform) : null; globalUpdateDelta = A.PointerEvent_transformDeltaViaPositions(localToGlobal, null, localUpdateDelta, A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).local.$add(0, localUpdateDelta)); correctedPosition = A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).$add(0, new A.OffsetPair(localUpdateDelta, globalUpdateDelta)); _this._checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp(localUpdateDelta, correctedPosition.global, correctedPosition.local, _this._getPrimaryValueFromOffset$1(localUpdateDelta), t2); } _this.resolve$1(0, B.GestureDisposition_0); } }, rejectGesture$1(pointer) { this._giveUpPointer$1(pointer); }, didStopTrackingLastPointer$1(pointer) { var t1, _this = this; switch (_this._monodrag$_state.index) { case 0: break; case 1: _this.resolve$1(0, B.GestureDisposition_1); t1 = _this.onCancel; if (t1 != null) _this.invokeCallback$2("onCancel", t1); break; case 2: _this._checkEnd$1(pointer); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._monodrag$_velocityTrackers.clear$0(0); _this._initialButtons = null; _this._monodrag$_state = B._DragState_0; }, _giveUpPointer$1(pointer) { var t1, entry; this.stopTrackingPointer$1(pointer); if (!this._acceptedActivePointers.remove$1(0, pointer)) { t1 = this._recognizer$_entries; entry = t1.$index(0, pointer); if (entry != null) { t1.remove$1(0, pointer); entry.resolve$1(0, B.GestureDisposition_1); } } }, _monodrag$_checkDown$0() { var t1, _this = this, _s16_ = "_initialPosition"; if (_this.onDown != null) { t1 = A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).global; A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).toString; _this.invokeCallback$2("onDown", new A.DragGestureRecognizer__checkDown_closure(_this, new A.DragDownDetails(t1))); } }, _checkStart$2(timestamp, pointer) { var t1, t2, t3, _this = this, _s16_ = "_initialPosition"; if (_this.onStart != null) { t1 = A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).global; t2 = A._lateReadCheck(_this.__DragGestureRecognizer__initialPosition, _s16_).local; t3 = _this._pointerToKind.$index(0, pointer); t3.toString; _this.invokeCallback$2("onStart", new A.DragGestureRecognizer__checkStart_closure(_this, new A.DragStartDetails(timestamp, t1, t2 == null ? t1 : t2, t3))); } }, _checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp(delta, globalPosition, localPosition, primaryDelta, sourceTimeStamp) { if (this.onUpdate != null) this.invokeCallback$2("onUpdate", new A.DragGestureRecognizer__checkUpdate_closure(this, new A.DragUpdateDetails(sourceTimeStamp, delta, primaryDelta, globalPosition, localPosition == null ? globalPosition : localPosition))); }, _checkEnd$1(pointer) { var t2, estimate, t3, t4, velocity, debugReport, _this = this, t1 = {}; if (_this.onEnd == null) return; t2 = _this._monodrag$_velocityTrackers.$index(0, pointer); t2.toString; t1.details = null; estimate = t2.getVelocityEstimate$0(); if (estimate != null && _this.isFlingGesture$2(estimate, t2.kind)) { t2 = estimate.pixelsPerSecond; t3 = _this.minFlingVelocity; if (t3 == null) t3 = 50; t4 = _this.maxFlingVelocity; if (t4 == null) t4 = 8000; velocity = new A.Velocity(t2).clampMagnitude$2(t3, t4); t1.details = new A.DragEndDetails(velocity, _this._getPrimaryValueFromOffset$1(velocity.pixelsPerSecond)); debugReport = new A.DragGestureRecognizer__checkEnd_closure(estimate, velocity); } else { t1.details = new A.DragEndDetails(B.Velocity_Offset_0_0, 0); debugReport = new A.DragGestureRecognizer__checkEnd_closure0(estimate); } _this.invokeCallback$3$debugReport("onEnd", new A.DragGestureRecognizer__checkEnd_closure1(t1, _this), debugReport); }, dispose$0(_) { this._monodrag$_velocityTrackers.clear$0(0); this.super$OneSequenceGestureRecognizer$dispose(0); } }; A.DragGestureRecognizer__checkDown_closure.prototype = { call$0() { return this.$this.onDown.call$1(this.details); }, $signature: 0 }; A.DragGestureRecognizer__checkStart_closure.prototype = { call$0() { return this.$this.onStart.call$1(this.details); }, $signature: 0 }; A.DragGestureRecognizer__checkUpdate_closure.prototype = { call$0() { return this.$this.onUpdate.call$1(this.details); }, $signature: 0 }; A.DragGestureRecognizer__checkEnd_closure.prototype = { call$0() { return this.estimate.toString$0(0) + "; fling at " + this.velocity.toString$0(0) + "."; }, $signature: 65 }; A.DragGestureRecognizer__checkEnd_closure0.prototype = { call$0() { var t1 = this.estimate; if (t1 == null) return "Could not estimate velocity."; return t1.toString$0(0) + "; judged to not be a fling."; }, $signature: 65 }; A.DragGestureRecognizer__checkEnd_closure1.prototype = { call$0() { return this.$this.onEnd.call$1(this._box_0.details); }, $signature: 0 }; A.VerticalDragGestureRecognizer.prototype = { isFlingGesture$2(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = A.computeHitSlop(kind, this.gestureSettings); return Math.abs(estimate.pixelsPerSecond._dy) > minVelocity && Math.abs(estimate.offset._dy) > minDistance; }, _hasSufficientGlobalDistanceToAccept$2(pointerDeviceKind, deviceTouchSlop) { return Math.abs(A._lateReadCheck(this.__DragGestureRecognizer__globalDistanceMoved, "_globalDistanceMoved")) > A.computeHitSlop(pointerDeviceKind, this.gestureSettings); }, _getDeltaForDetails$1(delta) { return new A.Offset(0, delta._dy); }, _getPrimaryValueFromOffset$1(value) { return value._dy; } }; A.HorizontalDragGestureRecognizer.prototype = { isFlingGesture$2(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = A.computeHitSlop(kind, this.gestureSettings); return Math.abs(estimate.pixelsPerSecond._dx) > minVelocity && Math.abs(estimate.offset._dx) > minDistance; }, _hasSufficientGlobalDistanceToAccept$2(pointerDeviceKind, deviceTouchSlop) { return Math.abs(A._lateReadCheck(this.__DragGestureRecognizer__globalDistanceMoved, "_globalDistanceMoved")) > A.computeHitSlop(pointerDeviceKind, this.gestureSettings); }, _getDeltaForDetails$1(delta) { return new A.Offset(delta._dx, 0); }, _getPrimaryValueFromOffset$1(value) { return value._dx; } }; A.PanGestureRecognizer.prototype = { isFlingGesture$2(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = A.computeHitSlop(kind, this.gestureSettings); return estimate.pixelsPerSecond.get$distanceSquared() > minVelocity * minVelocity && estimate.offset.get$distanceSquared() > minDistance * minDistance; }, _hasSufficientGlobalDistanceToAccept$2(pointerDeviceKind, deviceTouchSlop) { return Math.abs(A._lateReadCheck(this.__DragGestureRecognizer__globalDistanceMoved, "_globalDistanceMoved")) > A.computePanSlop(pointerDeviceKind, this.gestureSettings); }, _getDeltaForDetails$1(delta) { return delta; }, _getPrimaryValueFromOffset$1(value) { return null; } }; A.MultiDragPointerState.prototype = { dispose$0(_) { var t1 = this._arenaEntry; if (t1 != null) t1._arena._resolve$3(t1._arena$_pointer, t1._member, B.GestureDisposition_1); this._arenaEntry = null; } }; A.MultiDragGestureRecognizer.prototype = { addAllowedPointer$1($event) { var _this = this, state = _this.createNewPointerState$1($event), t1 = _this._multidrag$_pointers; t1.toString; t1.$indexSet(0, $event.get$pointer(), state); $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$2($event.get$pointer(), _this.get$_multidrag$_handleEvent()); state._arenaEntry = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, $event.get$pointer(), _this); }, _multidrag$_handleEvent$1($event) { var t2, t3, t4, t1 = this._multidrag$_pointers; t1.toString; t1 = t1.$index(0, $event.get$pointer()); t1.toString; if (type$.PointerMoveEvent._is($event)) { if (!$event.get$synthesized()) t1._multidrag$_velocityTracker.addPosition$2($event.get$timeStamp($event), $event.get$position($event)); t2 = t1._multidrag$_client; if (t2 != null) { t1 = $event.get$timeStamp($event); t3 = $event.get$delta(); t4 = $event.get$position($event); t2.update$1(0, new A.DragUpdateDetails(t1, t3, null, t4, t4)); } else { t2 = t1._pendingDelta; t2.toString; t1._pendingDelta = t2.$add(0, $event.get$delta()); t1._multidrag$_lastPendingEventTimestamp = $event.get$timeStamp($event); t1.checkForResolutionAfterMove$0(); } } else if (type$.PointerUpEvent._is($event)) { if (t1._multidrag$_client != null) { t2 = t1._multidrag$_velocityTracker.getVelocity$0(); t3 = t1._multidrag$_client; t3.toString; t1._multidrag$_client = null; t3.end$1(0, new A.DragEndDetails(t2, null)); } else t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; this._removeState$1($event.get$pointer()); } else if (type$.PointerCancelEvent._is($event)) { t2 = t1._multidrag$_client; if (t2 != null) { t1._multidrag$_client = null; t2.cancel$0(0); } else t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; this._removeState$1($event.get$pointer()); } }, acceptGesture$1(pointer) { var state = this._multidrag$_pointers.$index(0, pointer); if (state == null) return; state.accepted$1(new A.MultiDragGestureRecognizer_acceptGesture_closure(this, pointer)); }, _startDrag$2(initialPosition, pointer) { var drag, t2, t3, t4, _this = this, t1 = _this._multidrag$_pointers.$index(0, pointer); t1.toString; drag = _this.onStart != null ? _this.invokeCallback$2("onStart", new A.MultiDragGestureRecognizer__startDrag_closure(_this, initialPosition)) : null; if (drag != null) { t1._multidrag$_client = drag; t2 = t1._multidrag$_lastPendingEventTimestamp; t3 = t1._pendingDelta; t3.toString; t4 = t1.initialPosition; t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; drag.update$1(0, new A.DragUpdateDetails(t2, t3, null, t4, t4)); } else _this._removeState$1(pointer); return drag; }, rejectGesture$1(pointer) { var state; if (this._multidrag$_pointers.containsKey$1(0, pointer)) { state = this._multidrag$_pointers.$index(0, pointer); state._arenaEntry = state._multidrag$_lastPendingEventTimestamp = state._pendingDelta = null; this._removeState$1(pointer); } }, _removeState$1(pointer) { var t1; if (this._multidrag$_pointers == null) return; $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(pointer, this.get$_multidrag$_handleEvent()); t1 = this._multidrag$_pointers.remove$1(0, pointer); t1.toString; J.dispose$0$x(t1); }, dispose$0(_) { var t2, _this = this, t1 = _this._multidrag$_pointers; t1.toString; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); B.JSArray_methods.forEach$1(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")), _this.get$_removeState()); _this._multidrag$_pointers = null; _this.super$GestureRecognizer$dispose(0); } }; A.MultiDragGestureRecognizer_acceptGesture_closure.prototype = { call$1(initialPosition) { return this.$this._startDrag$2(initialPosition, this.pointer); }, $signature: 634 }; A.MultiDragGestureRecognizer__startDrag_closure.prototype = { call$0() { return this.$this.onStart.call$1(this.initialPosition); }, $signature: 2620 }; A._ImmediatePointerState.prototype = { checkForResolutionAfterMove$0() { var t1, _this = this; if (_this._pendingDelta.get$distance() > A.computeHitSlop(_this.kind, _this.gestureSettings)) { t1 = _this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, B.GestureDisposition_0); } }, accepted$1(starter) { starter.call$1(this.initialPosition); } }; A.ImmediateMultiDragGestureRecognizer.prototype = { createNewPointerState$1($event) { var t1 = $event.get$position($event), t2 = $event.get$kind($event); return new A._ImmediatePointerState(this.gestureSettings, t1, new A.VelocityTracker(t2, A.List_List$filled(20, null, false, type$.nullable__PointAtTime)), t2, B.Offset_0_0); } }; A._DelayedPointerState.prototype = { _delayPassed$0() { var t1, _this = this; _this._multidrag$_timer = null; t1 = _this._starter; if (t1 != null) { t1.call$1(_this.initialPosition); _this._starter = null; } else { t1 = _this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, B.GestureDisposition_0); } }, _ensureTimerStopped$0() { var t1 = this._multidrag$_timer; if (t1 != null) t1.cancel$0(0); this._multidrag$_timer = null; }, accepted$1(starter) { if (this._multidrag$_timer == null) starter.call$1(this.initialPosition); else this._starter = starter; }, checkForResolutionAfterMove$0() { var t1, _this = this; if (_this._multidrag$_timer == null) return; if (_this._pendingDelta.get$distance() > A.computeHitSlop(_this.kind, _this.gestureSettings)) { t1 = _this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, B.GestureDisposition_1); _this._ensureTimerStopped$0(); } }, dispose$0(_) { this._ensureTimerStopped$0(); this.super$MultiDragPointerState$dispose(0); } }; A.DelayedMultiDragGestureRecognizer.prototype = { createNewPointerState$1($event) { var t1 = $event.get$position($event), t2 = $event.get$kind($event); t2 = new A._DelayedPointerState(this.gestureSettings, t1, new A.VelocityTracker(t2, A.List_List$filled(20, null, false, type$.nullable__PointAtTime)), t2, B.Offset_0_0); t2._multidrag$_timer = A.Timer_Timer(B.Duration_500000, t2.get$_delayPassed()); return t2; } }; A._CountdownZoned.prototype = { _onTimeout$0() { this._timeout = true; } }; A._TapTracker.prototype = { stopTrackingPointer$1(route) { if (this._isTrackingPointer) { this._isTrackingPointer = false; $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(this.pointer, route); } }, isWithinGlobalTolerance$2($event, tolerance) { return $event.get$position($event).$sub(0, this._initialGlobalPosition).get$distance() <= tolerance; } }; A.DoubleTapGestureRecognizer.prototype = { isPointerAllowed$1($event) { var t1; if (this._firstTap == null) switch ($event.get$buttons($event)) { case 1: t1 = this.onDoubleTap == null && true; if (t1) return false; break; default: return false; } return this.super$GestureRecognizer$isPointerAllowed($event); }, addAllowedPointer$1($event) { var _this = this, t1 = _this._firstTap; if (t1 != null) if (!t1.isWithinGlobalTolerance$2($event, 100)) return; else { t1 = _this._firstTap; if (!t1._doubleTapMinTimeCountdown._timeout || $event.get$buttons($event) != t1.initialButtons) { _this._multitap$_reset$0(); return _this._trackTap$1($event); } } _this._trackTap$1($event); }, _trackTap$1($event) { var t1, t2, t3, t4, t5, tracker, _this = this; _this._stopDoubleTapTimer$0(); t1 = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, $event.get$pointer(), _this); t2 = $event.get$pointer(); t3 = $event.get$position($event); t4 = $event.get$buttons($event); t5 = new A._CountdownZoned(); A.Timer_Timer(B.Duration_40000, t5.get$_onTimeout()); tracker = new A._TapTracker(t2, t1, t3, t4, t5); _this._trackers.$indexSet(0, $event.get$pointer(), tracker); t5 = $event.get$transform($event); if (!tracker._isTrackingPointer) { tracker._isTrackingPointer = true; $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$3(t2, _this.get$_multitap$_handleEvent(), t5); } }, _multitap$_handleEvent$1($event) { var t3, _this = this, t1 = _this._trackers, t2 = t1.$index(0, $event.get$pointer()); t2.toString; if (type$.PointerUpEvent._is($event)) { t3 = _this._firstTap; if (t3 == null) { if (_this._doubleTapTimer == null) _this._doubleTapTimer = A.Timer_Timer(B.Duration_300000, _this.get$_multitap$_reset()); t3 = t2.pointer; $.GestureBinding__instance.GestureBinding_gestureArena.hold$1(t3); t2.stopTrackingPointer$1(_this.get$_multitap$_handleEvent()); t1.remove$1(0, t3); _this._clearTrackers$0(); _this._firstTap = t2; } else { t3 = t3.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, B.GestureDisposition_0); t3 = t2.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, B.GestureDisposition_0); t2.stopTrackingPointer$1(_this.get$_multitap$_handleEvent()); t1.remove$1(0, t2.pointer); t1 = _this.onDoubleTap; if (t1 != null) _this.invokeCallback$2("onDoubleTap", t1); _this._multitap$_reset$0(); } } else if (type$.PointerMoveEvent._is($event)) { if (!t2.isWithinGlobalTolerance$2($event, 18)) _this._reject$1(t2); } else if (type$.PointerCancelEvent._is($event)) _this._reject$1(t2); }, acceptGesture$1(pointer) { }, rejectGesture$1(pointer) { var t1, _this = this, tracker = _this._trackers.$index(0, pointer); if (tracker == null) { t1 = _this._firstTap; t1 = t1 != null && t1.pointer == pointer; } else t1 = false; if (t1) tracker = _this._firstTap; if (tracker != null) _this._reject$1(tracker); }, _reject$1(tracker) { var t2, _this = this, t1 = _this._trackers; t1.remove$1(0, tracker.pointer); t2 = tracker.entry; t2._arena._resolve$3(t2._arena$_pointer, t2._member, B.GestureDisposition_1); tracker.stopTrackingPointer$1(_this.get$_multitap$_handleEvent()); t2 = _this._firstTap; if (t2 != null) if (tracker === t2) _this._multitap$_reset$0(); else { _this._checkCancel$0(); if (t1._length === 0) _this._multitap$_reset$0(); } }, dispose$0(_) { this._multitap$_reset$0(); this.super$GestureRecognizer$dispose(0); }, _multitap$_reset$0() { var t1, _this = this; _this._stopDoubleTapTimer$0(); if (_this._firstTap != null) { if (_this._trackers._length !== 0) _this._checkCancel$0(); t1 = _this._firstTap; t1.toString; _this._firstTap = null; _this._reject$1(t1); $.GestureBinding__instance.GestureBinding_gestureArena.release$1(0, t1.pointer); } _this._clearTrackers$0(); }, _clearTrackers$0() { var t1 = this._trackers; t1 = t1.get$values(t1); B.JSArray_methods.forEach$1(A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E")), this.get$_reject()); }, _stopDoubleTapTimer$0() { var t1 = this._doubleTapTimer; if (t1 != null) { t1.cancel$0(0); this._doubleTapTimer = null; } }, _checkCancel$0() { } }; A.PointerRouter.prototype = { addRoute$3(pointer, route, transform) { J.$indexSet$ax(this._routeMap.putIfAbsent$2(0, pointer, new A.PointerRouter_addRoute_closure()), route, transform); }, addRoute$2(pointer, route) { return this.addRoute$3(pointer, route, null); }, removeRoute$2(pointer, route) { var t3, t1 = this._routeMap, t2 = t1.$index(0, pointer); t2.toString; t3 = J.getInterceptor$ax(t2); t3.remove$1(t2, route); if (t3.get$isEmpty(t2)) t1.remove$1(0, pointer); }, _dispatch$3($event, route, transform) { var exception, stack, exception0, t1; try { route.call$1($event.transformed$1(transform)); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("while routing a pointer event"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "gesture library", t1, null, null, false)); } }, route$1($event) { var _this = this, routes = _this._routeMap.$index(0, $event.get$pointer()), t1 = _this._globalRoutes, t2 = type$.void_Function_PointerEvent, t3 = type$.nullable_Matrix4, copiedGlobalRoutes = A.LinkedHashMap_LinkedHashMap$of(t1, t2, t3); if (routes != null) _this._dispatchEventToRoutes$3($event, routes, A.LinkedHashMap_LinkedHashMap$of(routes, t2, t3)); _this._dispatchEventToRoutes$3($event, t1, copiedGlobalRoutes); }, _dispatchEventToRoutes$3($event, referenceRoutes, copiedRoutes) { copiedRoutes.forEach$1(0, new A.PointerRouter__dispatchEventToRoutes_closure(this, referenceRoutes, $event)); } }; A.PointerRouter_addRoute_closure.prototype = { call$0() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.void_Function_PointerEvent, type$.nullable_Matrix4); }, $signature: 2613 }; A.PointerRouter__dispatchEventToRoutes_closure.prototype = { call$2(route, transform) { if (J.containsKey$1$x(this.referenceRoutes, route)) this.$this._dispatch$3(this.event, route, transform); }, $signature: 2610 }; A.PointerSignalResolver.prototype = { register$2(_, $event, callback) { if (this._firstRegisteredCallback != null) return; this._currentEvent = $event; this._firstRegisteredCallback = callback; }, resolve$1(_, $event) { var exception, stack, t2, exception0, _this = this, t1 = _this._firstRegisteredCallback; if (t1 == null) return; try { t2 = _this._currentEvent; t2.toString; t1.call$1(t2); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("while resolving a PointerSignalEvent"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "gesture library", t1, null, null, false)); } _this._currentEvent = _this._firstRegisteredCallback = null; } }; A.DragStartBehavior.prototype = { toString$0(_) { return "DragStartBehavior." + this._core$_name; } }; A.GestureRecognizer.prototype = { addPointer$1($event) { var _this = this; _this._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (_this.isPointerAllowed$1($event)) _this.addAllowedPointer$1($event); else _this.handleNonAllowedPointer$1($event); }, addAllowedPointer$1($event) { }, handleNonAllowedPointer$1($event) { }, isPointerAllowed$1($event) { var t1 = this._supportedDevices; return t1 == null || t1.contains$1(0, $event.get$kind($event)); }, dispose$0(_) { }, invokeCallback$1$3$debugReport($name, callback, debugReport) { var exception, stack, exception0, t1, result = null; try { result = callback.call$0(); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("while handling a gesture"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "gesture", t1, null, null, false)); } return result; }, invokeCallback$2($name, callback) { return this.invokeCallback$1$3$debugReport($name, callback, null, type$.dynamic); }, invokeCallback$3$debugReport($name, callback, debugReport) { return this.invokeCallback$1$3$debugReport($name, callback, debugReport, type$.dynamic); }, $isDiagnosticableTree: 1 }; A.OneSequenceGestureRecognizer.prototype = { addAllowedPointer$1($event) { this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); }, handleNonAllowedPointer$1($event) { this.resolve$1(0, B.GestureDisposition_1); }, acceptGesture$1(pointer) { }, rejectGesture$1(pointer) { }, resolve$1(_, disposition) { var _i, t1 = this._recognizer$_entries, localEntries = A.List_List$of(t1.get$values(t1), true, type$.GestureArenaEntry); t1.clear$0(0); for (t1 = localEntries.length, _i = 0; _i < t1; ++_i) J.resolve$1$z(localEntries[_i], disposition); }, dispose$0(_) { var t1, t2, t3, t4, t5, t6, t7, _this = this; _this.resolve$1(0, B.GestureDisposition_1); for (t1 = _this._trackedPointers, t2 = new A._HashSetIterator(t1, t1._computeElements$0(), A._instanceType(t1)._eval$1("_HashSetIterator<1>")); t2.moveNext$0();) { t3 = t2._collection$_current; t4 = $.GestureBinding__instance.GestureBinding_pointerRouter; t5 = _this.get$handleEvent(); t4 = t4._routeMap; t6 = t4.$index(0, t3); t6.toString; t7 = J.getInterceptor$ax(t6); t7.remove$1(t6, t5); if (t7.get$isEmpty(t6)) t4.remove$1(0, t3); } t1.clear$0(0); _this.super$GestureRecognizer$dispose(0); }, _addPointerToArena$1(pointer) { var t1 = this._team; if (t1 != null) return t1.add$2(0, pointer, this); return $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, pointer, this); }, startTrackingPointer$2(pointer, transform) { var _this = this; $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$3(pointer, _this.get$handleEvent(), transform); _this._trackedPointers.add$1(0, pointer); _this._recognizer$_entries.$indexSet(0, pointer, _this._addPointerToArena$1(pointer)); }, stopTrackingPointer$1(pointer) { var t1 = this._trackedPointers; if (t1.contains$1(0, pointer)) { $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(pointer, this.get$handleEvent()); t1.remove$1(0, pointer); if (t1._collection$_length === 0) this.didStopTrackingLastPointer$1(pointer); } }, stopTrackingIfPointerNoLongerDown$1($event) { if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) this.stopTrackingPointer$1($event.get$pointer()); } }; A.GestureRecognizerState.prototype = { toString$0(_) { return "GestureRecognizerState." + this._core$_name; } }; A.PrimaryPointerGestureRecognizer.prototype = { addAllowedPointer$1($event) { var _this = this; _this.super$OneSequenceGestureRecognizer$addAllowedPointer($event); if (_this._recognizer$_state === B.GestureRecognizerState_0) { _this._recognizer$_state = B.GestureRecognizerState_1; _this._primaryPointer = $event.get$pointer(); _this._initialPosition = new A.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this._recognizer$_timer = A.Timer_Timer(_this.deadline, new A.PrimaryPointerGestureRecognizer_addAllowedPointer_closure(_this, $event)); } }, handleNonAllowedPointer$1($event) { if (!this._gestureAccepted) this.super$OneSequenceGestureRecognizer$handleNonAllowedPointer($event); }, handleEvent$1($event) { var isPreAcceptSlopPastTolerance, t1, isPostAcceptSlopPastTolerance, _this = this; if (_this._recognizer$_state === B.GestureRecognizerState_1 && $event.get$pointer() == _this._primaryPointer) { if (!_this._gestureAccepted) isPreAcceptSlopPastTolerance = _this._getGlobalDistance$1($event) > 18; else isPreAcceptSlopPastTolerance = false; if (_this._gestureAccepted) { t1 = _this.postAcceptSlopTolerance; isPostAcceptSlopPastTolerance = t1 != null && _this._getGlobalDistance$1($event) > t1; } else isPostAcceptSlopPastTolerance = false; if (type$.PointerMoveEvent._is($event)) t1 = isPreAcceptSlopPastTolerance || isPostAcceptSlopPastTolerance; else t1 = false; if (t1) { _this.resolve$1(0, B.GestureDisposition_1); t1 = _this._primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } else _this.handlePrimaryPointer$1($event); } _this.stopTrackingIfPointerNoLongerDown$1($event); }, didExceedDeadline$0() { }, acceptGesture$1(pointer) { if (pointer == this._primaryPointer) { this._stopTimer$0(); this._gestureAccepted = true; } }, rejectGesture$1(pointer) { var _this = this; if (pointer == _this._primaryPointer && _this._recognizer$_state === B.GestureRecognizerState_1) { _this._stopTimer$0(); _this._recognizer$_state = B.GestureRecognizerState_2; } }, didStopTrackingLastPointer$1(pointer) { var _this = this; _this._stopTimer$0(); _this._recognizer$_state = B.GestureRecognizerState_0; _this._initialPosition = null; _this._gestureAccepted = false; }, dispose$0(_) { this._stopTimer$0(); this.super$OneSequenceGestureRecognizer$dispose(0); }, _stopTimer$0() { var t1 = this._recognizer$_timer; if (t1 != null) { t1.cancel$0(0); this._recognizer$_timer = null; } }, _getGlobalDistance$1($event) { return $event.get$position($event).$sub(0, this._initialPosition.global).get$distance(); } }; A.PrimaryPointerGestureRecognizer_addAllowedPointer_closure.prototype = { call$0() { this.$this.didExceedDeadline$0(); return null; }, $signature: 0 }; A.OffsetPair.prototype = { $add(_, other) { return new A.OffsetPair(this.local.$add(0, other.local), this.global.$add(0, other.global)); }, $sub(_, other) { return new A.OffsetPair(this.local.$sub(0, other.local), this.global.$sub(0, other.global)); }, toString$0(_) { return "OffsetPair(local: " + A.S(this.local) + ", global: " + A.S(this.global) + ")"; } }; A._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin.prototype = {}; A._ScaleState.prototype = { toString$0(_) { return "_ScaleState." + this._core$_name; } }; A.ScaleStartDetails.prototype = { toString$0(_) { return "ScaleStartDetails(focalPoint: " + A.S(this.focalPoint) + ", localFocalPoint: " + A.S(this.localFocalPoint) + ", pointersCount: " + this.pointerCount + ")"; } }; A.ScaleUpdateDetails.prototype = { toString$0(_) { var _this = this, t1 = _this.localFocalPoint; return "ScaleUpdateDetails(focalPoint: " + A.S(_this.focalPoint) + ", localFocalPoint: " + A.S(t1) + ", scale: " + A.S(_this.scale) + ", horizontalScale: " + A.S(_this.horizontalScale) + ", verticalScale: " + A.S(_this.verticalScale) + ", rotation: " + A.S(_this.rotation) + ", pointerCount: " + _this.pointerCount + ", focalPointDelta: " + A.S(t1) + ")"; } }; A.ScaleEndDetails.prototype = { toString$0(_) { return "ScaleEndDetails(velocity: " + this.velocity.toString$0(0) + ", pointerCount: " + this.pointerCount + ")"; } }; A._LineBetweenPointers.prototype = {}; A.ScaleGestureRecognizer.prototype = { _computeRotationFactor$0() { var t2, fx, fy, sx, sy, nfx, nfy, nsx, nsy, angle1, t1 = this._initialLine; if (t1 == null || this._currentLine == null) return 0; t2 = t1.pointerStartLocation; fx = t2._dx; fy = t2._dy; t1 = t1.pointerEndLocation; sx = t1._dx; sy = t1._dy; t1 = this._currentLine; t2 = t1.pointerStartLocation; nfx = t2._dx; nfy = t2._dy; t1 = t1.pointerEndLocation; nsx = t1._dx; nsy = t1._dy; angle1 = Math.atan2(fy - sy, fx - sx); return Math.atan2(nfy - nsy, nfx - nsx) - angle1; }, addAllowedPointer$1($event) { var _this = this; _this.super$OneSequenceGestureRecognizer$addAllowedPointer($event); _this._velocityTrackers.$indexSet(0, $event.get$pointer(), new A.VelocityTracker($event.get$kind($event), A.List_List$filled(20, null, false, type$.nullable__PointAtTime))); if (_this._scale$_state === B._ScaleState_0) { _this._scale$_state = B._ScaleState_1; _this.__ScaleGestureRecognizer__currentVerticalSpan = _this.__ScaleGestureRecognizer__initialVerticalSpan = _this.__ScaleGestureRecognizer__currentHorizontalSpan = _this.__ScaleGestureRecognizer__initialHorizontalSpan = _this.__ScaleGestureRecognizer__currentSpan = _this.__ScaleGestureRecognizer__initialSpan = 0; _this.__ScaleGestureRecognizer__pointerLocations = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.Offset); _this.__ScaleGestureRecognizer__pointerQueue = A._setArrayType([], type$.JSArray_int); } }, handleEvent$1($event) { var t1, didChangeConfiguration, shouldStartIfAccepted, t2, t3, t4, _this = this, _s17_ = "_pointerLocations", _s13_ = "_pointerQueue"; if (type$.PointerMoveEvent._is($event)) { t1 = _this._velocityTrackers.$index(0, $event.get$pointer()); t1.toString; if (!$event.get$synthesized()) t1.addPosition$2($event.get$timeStamp($event), $event.get$position($event)); J.$indexSet$ax(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), $event.get$pointer(), $event.get$position($event)); _this._lastTransform = $event.get$transform($event); didChangeConfiguration = false; shouldStartIfAccepted = true; } else if (type$.PointerDownEvent._is($event)) { J.$indexSet$ax(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), $event.get$pointer(), $event.get$position($event)); J.add$1$ax(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), $event.get$pointer()); _this._lastTransform = $event.get$transform($event); didChangeConfiguration = true; shouldStartIfAccepted = true; } else { if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) { J.remove$1$ax(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), $event.get$pointer()); J.remove$1$ax(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), $event.get$pointer()); _this._lastTransform = $event.get$transform($event); didChangeConfiguration = true; } else didChangeConfiguration = false; shouldStartIfAccepted = false; } if (A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_)._length < 2) _this._initialLine = _this._currentLine; else { t1 = _this._initialLine; if (t1 != null) { t1 = t1.pointerStartId; t2 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 0); if (t1 == null ? t2 == null : t1 === t2) { t1 = _this._initialLine.pointerEndId; t2 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 1); t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; } else t1 = false; t2 = _this.__ScaleGestureRecognizer__pointerQueue; if (t1) { t1 = J.$index$asx(A._lateReadCheck(t2, _s13_), 0); t2 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 0)); t2.toString; t3 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 1); t4 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 1)); t4.toString; _this._currentLine = new A._LineBetweenPointers(t2, t1, t4, t3); } else { t1 = J.$index$asx(A._lateReadCheck(t2, _s13_), 0); t2 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 0)); t2.toString; t3 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 1); t4 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerQueue, _s13_), 1)); t4.toString; _this._currentLine = _this._initialLine = new A._LineBetweenPointers(t2, t1, t4, t3); } } _this._update$0(0); if (!didChangeConfiguration || _this._reconfigure$1($event.get$pointer())) _this._advanceStateMachine$2(shouldStartIfAccepted, $event.get$kind($event)); _this.stopTrackingIfPointerNoLongerDown$1($event); }, _update$0(_) { var t1, focalPoint, t2, t3, t4, totalDeviation, totalHorizontalDeviation, totalVerticalDeviation, t5, t6, _this = this, _s17_ = "_pointerLocations", _s16_ = "_localFocalPoint", count = A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_)._length, previousFocalPoint = _this._currentFocalPoint; for (t1 = A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A.instanceType(t1)._precomputed1), focalPoint = B.Offset_0_0; t1.moveNext$0();) { t2 = t1.__js_helper$_current; t2 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t2); t2.toString; focalPoint = new A.Offset(focalPoint._dx + t2._dx, focalPoint._dy + t2._dy); } t1 = count > 0; t2 = t1 ? focalPoint.$div(0, count) : B.Offset_0_0; _this._currentFocalPoint = t2; if (previousFocalPoint == null) { _this.__ScaleGestureRecognizer__localFocalPoint = A.PointerEvent_transformPosition(_this._lastTransform, t2); _this.__ScaleGestureRecognizer__delta = B.Offset_0_0; } else { t2 = A._lateReadCheck(_this.__ScaleGestureRecognizer__localFocalPoint, _s16_); t3 = _this._lastTransform; t4 = _this._currentFocalPoint; t4.toString; t4 = A.PointerEvent_transformPosition(t3, t4); _this.__ScaleGestureRecognizer__localFocalPoint = t4; _this.__ScaleGestureRecognizer__delta = A._lateReadCheck(t4, _s16_).$sub(0, t2); } for (t2 = A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t2 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A.instanceType(t2)._precomputed1), totalDeviation = 0, totalHorizontalDeviation = 0, totalVerticalDeviation = 0; t2.moveNext$0();) { t3 = t2.__js_helper$_current; t4 = _this._currentFocalPoint; t4.toString; t5 = J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t3); t5.toString; t6 = t4._dx - t5._dx; t5 = t4._dy - t5._dy; totalDeviation += Math.sqrt(t6 * t6 + t5 * t5); totalHorizontalDeviation += Math.abs(_this._currentFocalPoint._dx - J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t3)._dx); totalVerticalDeviation += Math.abs(_this._currentFocalPoint._dy - J.$index$asx(A._lateReadCheck(_this.__ScaleGestureRecognizer__pointerLocations, _s17_), t3)._dy); } _this.__ScaleGestureRecognizer__currentSpan = t1 ? totalDeviation / count : 0; _this.__ScaleGestureRecognizer__currentHorizontalSpan = t1 ? totalHorizontalDeviation / count : 0; _this.__ScaleGestureRecognizer__currentVerticalSpan = t1 ? totalVerticalDeviation / count : 0; }, _reconfigure$1(pointer) { var velocity, _this = this, t1 = {}, t2 = _this._currentFocalPoint; t2.toString; _this.__ScaleGestureRecognizer__initialFocalPoint = t2; _this.__ScaleGestureRecognizer__initialSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentSpan, "_currentSpan"); _this._initialLine = _this._currentLine; _this.__ScaleGestureRecognizer__initialHorizontalSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentHorizontalSpan, "_currentHorizontalSpan"); _this.__ScaleGestureRecognizer__initialVerticalSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentVerticalSpan, "_currentVerticalSpan"); if (_this._scale$_state === B._ScaleState_3) { if (_this.onEnd != null) { velocity = _this._velocityTrackers.$index(0, pointer).getVelocity$0(); t1.velocity = velocity; t2 = velocity.pixelsPerSecond; if (t2.get$distanceSquared() > 2500) { if (t2.get$distanceSquared() > 64000000) t1.velocity = new A.Velocity(t2.$div(0, t2.get$distance()).$mul(0, 8000)); _this.invokeCallback$2("onEnd", new A.ScaleGestureRecognizer__reconfigure_closure(t1, _this)); } else _this.invokeCallback$2("onEnd", new A.ScaleGestureRecognizer__reconfigure_closure0(_this)); } _this._scale$_state = B._ScaleState_2; return false; } return true; }, _advanceStateMachine$2(shouldStartIfAccepted, pointerDeviceKind) { var t2, t3, focalPointDelta, _this = this, t1 = _this._scale$_state; if (t1 === B._ScaleState_0) t1 = _this._scale$_state = B._ScaleState_1; if (t1 === B._ScaleState_1) { t1 = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentSpan, "_currentSpan"); t2 = A._lateReadCheck(_this.__ScaleGestureRecognizer__initialSpan, "_initialSpan"); t3 = _this._currentFocalPoint; t3.toString; focalPointDelta = t3.$sub(0, A._lateReadCheck(_this.__ScaleGestureRecognizer__initialFocalPoint, "_initialFocalPoint")).get$distance(); if (Math.abs(t1 - t2) > A.computeScaleSlop(pointerDeviceKind) || focalPointDelta > A.computePanSlop(pointerDeviceKind, _this.gestureSettings)) _this.resolve$1(0, B.GestureDisposition_0); } else if (t1.index >= 2) _this.resolve$1(0, B.GestureDisposition_0); if (_this._scale$_state === B._ScaleState_2 && shouldStartIfAccepted) { _this._scale$_state = B._ScaleState_3; _this._dispatchOnStartCallbackIfNeeded$0(); } if (_this._scale$_state === B._ScaleState_3 && _this.onUpdate != null) _this.invokeCallback$2("onUpdate", new A.ScaleGestureRecognizer__advanceStateMachine_closure(_this)); }, _dispatchOnStartCallbackIfNeeded$0() { if (this.onStart != null) this.invokeCallback$2("onStart", new A.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure(this)); }, acceptGesture$1(pointer) { var t1, _this = this; if (_this._scale$_state === B._ScaleState_1) { _this._scale$_state = B._ScaleState_3; _this._dispatchOnStartCallbackIfNeeded$0(); if (_this.dragStartBehavior === B.DragStartBehavior_1) { t1 = _this._currentFocalPoint; t1.toString; _this.__ScaleGestureRecognizer__initialFocalPoint = t1; _this.__ScaleGestureRecognizer__initialSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentSpan, "_currentSpan"); _this._initialLine = _this._currentLine; _this.__ScaleGestureRecognizer__initialHorizontalSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentHorizontalSpan, "_currentHorizontalSpan"); _this.__ScaleGestureRecognizer__initialVerticalSpan = A._lateReadCheck(_this.__ScaleGestureRecognizer__currentVerticalSpan, "_currentVerticalSpan"); } } }, rejectGesture$1(pointer) { this.stopTrackingPointer$1(pointer); }, didStopTrackingLastPointer$1(pointer) { switch (this._scale$_state.index) { case 1: this.resolve$1(0, B.GestureDisposition_1); break; case 0: break; case 2: break; case 3: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } this._scale$_state = B._ScaleState_0; }, dispose$0(_) { this._velocityTrackers.clear$0(0); this.super$OneSequenceGestureRecognizer$dispose(0); } }; A.ScaleGestureRecognizer__reconfigure_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1.onEnd; t2.toString; return t2.call$1(new A.ScaleEndDetails(this._box_0.velocity, J.get$length$asx(A._lateReadCheck(t1.__ScaleGestureRecognizer__pointerQueue, "_pointerQueue")))); }, $signature: 0 }; A.ScaleGestureRecognizer__reconfigure_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1.onEnd; t2.toString; return t2.call$1(new A.ScaleEndDetails(B.Velocity_Offset_0_0, J.get$length$asx(A._lateReadCheck(t1.__ScaleGestureRecognizer__pointerQueue, "_pointerQueue")))); }, $signature: 0 }; A.ScaleGestureRecognizer__advanceStateMachine_closure.prototype = { call$0() { var t3, t4, t5, t6, t7, t8, t9, _s12_ = "_initialSpan", _s22_ = "_initialHorizontalSpan", _s20_ = "_initialVerticalSpan", t1 = this.$this, t2 = t1.onUpdate; t2.toString; t3 = A._lateReadCheck(t1.__ScaleGestureRecognizer__initialSpan, _s12_) > 0 ? A._lateReadCheck(t1.__ScaleGestureRecognizer__currentSpan, "_currentSpan") / A._lateReadCheck(t1.__ScaleGestureRecognizer__initialSpan, _s12_) : 1; t4 = A._lateReadCheck(t1.__ScaleGestureRecognizer__initialHorizontalSpan, _s22_) > 0 ? A._lateReadCheck(t1.__ScaleGestureRecognizer__currentHorizontalSpan, "_currentHorizontalSpan") / A._lateReadCheck(t1.__ScaleGestureRecognizer__initialHorizontalSpan, _s22_) : 1; t5 = A._lateReadCheck(t1.__ScaleGestureRecognizer__initialVerticalSpan, _s20_) > 0 ? A._lateReadCheck(t1.__ScaleGestureRecognizer__currentVerticalSpan, "_currentVerticalSpan") / A._lateReadCheck(t1.__ScaleGestureRecognizer__initialVerticalSpan, _s20_) : 1; t6 = t1._currentFocalPoint; t6.toString; t7 = A._lateReadCheck(t1.__ScaleGestureRecognizer__localFocalPoint, "_localFocalPoint"); t8 = t1._computeRotationFactor$0(); t9 = J.get$length$asx(A._lateReadCheck(t1.__ScaleGestureRecognizer__pointerQueue, "_pointerQueue")); t2.call$1(A.ScaleUpdateDetails$(t6, A._lateReadCheck(t1.__ScaleGestureRecognizer__delta, "_delta"), t4, t7, t9, t8, t3, t5)); }, $signature: 0 }; A.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure.prototype = { call$0() { var t3, t4, t1 = this.$this, t2 = t1.onStart; t2.toString; t3 = t1._currentFocalPoint; t3.toString; t4 = A._lateReadCheck(t1.__ScaleGestureRecognizer__localFocalPoint, "_localFocalPoint"); t1 = J.get$length$asx(A._lateReadCheck(t1.__ScaleGestureRecognizer__pointerQueue, "_pointerQueue")); if (t4 == null) t4 = t3; t2.call$1(new A.ScaleStartDetails(t3, t4, t1)); }, $signature: 0 }; A.TapDownDetails.prototype = {}; A.TapUpDetails.prototype = {}; A.BaseTapGestureRecognizer.prototype = { addAllowedPointer$1($event) { var _this = this; if (_this._recognizer$_state === B.GestureRecognizerState_0) { if (_this._down != null && _this._up != null) _this._reset$0(); _this._down = $event; } if (_this._down != null) _this.super$PrimaryPointerGestureRecognizer$addAllowedPointer($event); }, startTrackingPointer$2(pointer, transform) { this.super$OneSequenceGestureRecognizer$startTrackingPointer(pointer, transform); }, handlePrimaryPointer$1($event) { var t1, t2, _this = this; if (type$.PointerUpEvent._is($event)) { _this._up = $event; _this._checkUp$0(); } else if (type$.PointerCancelEvent._is($event)) { _this.resolve$1(0, B.GestureDisposition_1); if (_this._sentTapDown) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason($event, t1, ""); } _this._reset$0(); } else { t1 = $event.get$buttons($event); t2 = _this._down; if (t1 != t2.get$buttons(t2)) { _this.resolve$1(0, B.GestureDisposition_1); t1 = _this._primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } } }, resolve$1(_, disposition) { var t1, _this = this; if (_this._wonArenaForPrimaryPointer && disposition === B.GestureDisposition_1) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason(null, t1, "spontaneous"); _this._reset$0(); } _this.super$OneSequenceGestureRecognizer$resolve(0, disposition); }, didExceedDeadline$0() { this._checkDown$0(); }, acceptGesture$1(pointer) { var _this = this; _this.super$PrimaryPointerGestureRecognizer$acceptGesture(pointer); if (pointer == _this._primaryPointer) { _this._checkDown$0(); _this._wonArenaForPrimaryPointer = true; _this._checkUp$0(); } }, rejectGesture$1(pointer) { var t1, _this = this; _this.super$PrimaryPointerGestureRecognizer$rejectGesture(pointer); if (pointer == _this._primaryPointer) { if (_this._sentTapDown) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason(null, t1, "forced"); } _this._reset$0(); } }, _checkDown$0() { var t1, _this = this; if (_this._sentTapDown) return; t1 = _this._down; t1.toString; _this.handleTapDown$1$down(t1); _this._sentTapDown = true; }, _checkUp$0() { var t1, t2, _this = this; if (!_this._wonArenaForPrimaryPointer || _this._up == null) return; t1 = _this._down; t1.toString; t2 = _this._up; t2.toString; _this.handleTapUp$2$down$up(t1, t2); _this._reset$0(); }, _reset$0() { var _this = this; _this._wonArenaForPrimaryPointer = _this._sentTapDown = false; _this._down = _this._up = null; } }; A.TapGestureRecognizer.prototype = { isPointerAllowed$1($event) { var t1, _this = this; switch ($event.get$buttons($event)) { case 1: if (_this.onTapDown == null && _this.onTap == null && _this.onTapUp == null && _this.onTapCancel == null) return false; break; case 2: if (_this.onSecondaryTap == null) if (_this.onSecondaryTapDown == null) t1 = true; else t1 = false; else t1 = false; if (t1) return false; break; case 4: return false; default: return false; } return _this.super$GestureRecognizer$isPointerAllowed($event); }, handleTapDown$1$down(down) { var details, _this = this, t1 = down.get$position(down), t2 = down.get$localPosition(), t3 = _this._pointerToKind.$index(0, down.get$pointer()); t3.toString; details = new A.TapDownDetails(t1, t3, t2 == null ? t1 : t2); switch (down.get$buttons(down)) { case 1: if (_this.onTapDown != null) _this.invokeCallback$2("onTapDown", new A.TapGestureRecognizer_handleTapDown_closure(_this, details)); break; case 2: if (_this.onSecondaryTapDown != null) _this.invokeCallback$2("onSecondaryTapDown", new A.TapGestureRecognizer_handleTapDown_closure0(_this, details)); break; case 4: break; } }, handleTapUp$2$down$up(down, up) { var _this = this, t1 = up.get$kind(up), t2 = up.get$position(up), t3 = up.get$localPosition(); if (t3 == null) t3 = t2; switch (down.get$buttons(down)) { case 1: if (_this.onTapUp != null) _this.invokeCallback$2("onTapUp", new A.TapGestureRecognizer_handleTapUp_closure(_this, new A.TapUpDetails(t2, t3, t1))); t1 = _this.onTap; if (t1 != null) _this.invokeCallback$2("onTap", t1); break; case 2: if (_this.onSecondaryTap != null) _this.invokeCallback$2("onSecondaryTap", new A.TapGestureRecognizer_handleTapUp_closure0(_this)); break; case 4: break; } }, handleTapCancel$3$cancel$down$reason(cancel, down, reason) { var t1, note = reason === "" ? reason : reason + " "; switch (down.get$buttons(down)) { case 1: t1 = this.onTapCancel; if (t1 != null) this.invokeCallback$2(note + "onTapCancel", t1); break; case 2: break; case 4: break; } } }; A.TapGestureRecognizer_handleTapDown_closure.prototype = { call$0() { return this.$this.onTapDown.call$1(this.details); }, $signature: 0 }; A.TapGestureRecognizer_handleTapDown_closure0.prototype = { call$0() { return this.$this.onSecondaryTapDown.call$1(this.details); }, $signature: 0 }; A.TapGestureRecognizer_handleTapUp_closure.prototype = { call$0() { return this.$this.onTapUp.call$1(this.details); }, $signature: 0 }; A.TapGestureRecognizer_handleTapUp_closure0.prototype = { call$0() { return this.$this.onSecondaryTap.call$0(); }, $signature: 0 }; A._CombiningGestureArenaEntry.prototype = { resolve$1(_, disposition) { this._combiner._team$_resolve$2(this._team$_member, disposition); }, $isGestureArenaEntry: 1 }; A._CombiningGestureArenaMember.prototype = { acceptGesture$1(pointer) { var t1, t2, _i, member, _this = this; _this._close$0(); if (_this._winner == null) { t1 = _this._team$_owner.captain; _this._winner = t1 == null ? _this._members[0] : t1; } for (t1 = _this._members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { member = t1[_i]; if (member !== _this._winner) member.rejectGesture$1(pointer); } _this._winner.acceptGesture$1(pointer); }, rejectGesture$1(pointer) { var t1, t2, _i; this._close$0(); for (t1 = this._members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].rejectGesture$1(pointer); }, _close$0() { this._resolved = true; this._team$_owner._combiners.remove$1(0, this._team$_pointer); }, _team$_resolve$2(member, disposition) { var t1, _this = this; if (_this._resolved) return; if (disposition === B.GestureDisposition_1) { t1 = _this._members; B.JSArray_methods.remove$1(t1, member); member.rejectGesture$1(_this._team$_pointer); if (t1.length === 0) { t1 = _this._entry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, disposition); } } else { if (_this._winner == null) { t1 = _this._team$_owner.captain; _this._winner = t1 == null ? member : t1; } t1 = _this._entry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, disposition); } } }; A.GestureArenaTeam.prototype = { add$2(_, pointer, member) { var combiner = this._combiners.putIfAbsent$2(0, pointer, new A.GestureArenaTeam_add_closure(this, pointer)); combiner._members.push(member); if (combiner._entry == null) combiner._entry = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, pointer, combiner); return new A._CombiningGestureArenaEntry(combiner, member); } }; A.GestureArenaTeam_add_closure.prototype = { call$0() { return new A._CombiningGestureArenaMember(this.$this, A._setArrayType([], type$.JSArray_GestureArenaMember), this.pointer); }, $signature: 2607 }; A.Velocity.prototype = { $sub(_, other) { return new A.Velocity(this.pixelsPerSecond.$sub(0, other.pixelsPerSecond)); }, $add(_, other) { return new A.Velocity(this.pixelsPerSecond.$add(0, other.pixelsPerSecond)); }, clampMagnitude$2(minValue, maxValue) { var t1 = this.pixelsPerSecond, valueSquared = t1.get$distanceSquared(); if (valueSquared > maxValue * maxValue) return new A.Velocity(t1.$div(0, t1.get$distance()).$mul(0, maxValue)); if (valueSquared < minValue * minValue) return new A.Velocity(t1.$div(0, t1.get$distance()).$mul(0, minValue)); return this; }, $eq(_, other) { if (other == null) return false; return other instanceof A.Velocity && other.pixelsPerSecond.$eq(0, this.pixelsPerSecond); }, get$hashCode(_) { var t1 = this.pixelsPerSecond; return A.hashValues(t1._dx, t1._dy, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, toString$0(_) { var t1 = this.pixelsPerSecond; return "Velocity(" + J.toStringAsFixed$1$n(t1._dx, 1) + ", " + J.toStringAsFixed$1$n(t1._dy, 1) + ")"; } }; A.VelocityEstimate.prototype = { toString$0(_) { var _this = this, t1 = _this.pixelsPerSecond; return "VelocityEstimate(" + J.toStringAsFixed$1$n(t1._dx, 1) + ", " + J.toStringAsFixed$1$n(t1._dy, 1) + "; offset: " + _this.offset.toString$0(0) + ", duration: " + _this.duration.toString$0(0) + ", confidence: " + B.JSNumber_methods.toStringAsFixed$1(_this.confidence, 1) + ")"; } }; A._PointAtTime.prototype = { toString$0(_) { return "_PointAtTime(" + A.S(this.point) + " at " + this.time.toString$0(0) + ")"; } }; A.VelocityTracker.prototype = { addPosition$2(time, position) { var t1 = ++this._velocity_tracker$_index; if (t1 === 20) t1 = this._velocity_tracker$_index = 0; this._samples[t1] = new A._PointAtTime(time, position); }, getVelocityEstimate$0() { var newestSample, t2, oldestSample, previousSample, sampleCount, sample, t3, age, position, xFit, yFit, _s10_ = "confidence", t1 = type$.JSArray_double, x = A._setArrayType([], t1), y = A._setArrayType([], t1), w = A._setArrayType([], t1), time = A._setArrayType([], t1), index = this._velocity_tracker$_index; t1 = this._samples; newestSample = t1[index]; if (newestSample == null) return null; t2 = newestSample.time._duration; oldestSample = newestSample; previousSample = oldestSample; sampleCount = 0; do { sample = t1[index]; if (sample == null) break; t3 = sample.time._duration; age = (t2 - t3) / 1000; if (age > 100 || Math.abs(t3 - previousSample.time._duration) / 1000 > 40) break; position = sample.point; x.push(position._dx); y.push(position._dy); w.push(1); time.push(-age); index = (index === 0 ? 20 : index) - 1; ++sampleCount; if (sampleCount < 20) { oldestSample = sample; previousSample = oldestSample; continue; } else { oldestSample = sample; break; } } while (true); if (sampleCount >= 3) { xFit = new A.LeastSquaresSolver(time, x, w).solve$1(2); if (xFit != null) { yFit = new A.LeastSquaresSolver(time, y, w).solve$1(2); if (yFit != null) return new A.VelocityEstimate(new A.Offset(xFit.coefficients[1] * 1000, yFit.coefficients[1] * 1000), A._lateReadCheck(xFit.__PolynomialFit_confidence, _s10_) * A._lateReadCheck(yFit.__PolynomialFit_confidence, _s10_), new A.Duration(t2 - oldestSample.time._duration), newestSample.point.$sub(0, oldestSample.point)); } } return new A.VelocityEstimate(B.Offset_0_0, 1, new A.Duration(t2 - oldestSample.time._duration), newestSample.point.$sub(0, oldestSample.point)); }, getVelocity$0() { var estimate = this.getVelocityEstimate$0(); if (estimate == null || estimate.pixelsPerSecond.$eq(0, B.Offset_0_0)) return B.Velocity_Offset_0_0; return new A.Velocity(estimate.pixelsPerSecond); } }; A.IOSScrollViewFlingVelocityTracker.prototype = { addPosition$2(time, position) { var t1 = (this._velocity_tracker$_index + 1) % 20; this._velocity_tracker$_index = t1; this._touchSamples[t1] = new A._PointAtTime(time, position); }, _previousVelocityAt$1(index) { var end, start, t1 = this._velocity_tracker$_index + index, endIndex = B.JSInt_methods.$mod(t1, 20), startIndex = B.JSInt_methods.$mod(t1 - 1, 20); t1 = this._touchSamples; end = t1[endIndex]; start = t1[startIndex]; if (end == null || start == null) return B.Offset_0_0; t1 = end.time._duration - start.time._duration; return t1 > 0 ? end.point.$sub(0, start.point).$mul(0, 1000).$div(0, t1 / 1000) : B.Offset_0_0; }, getVelocityEstimate$0() { var oldestNonNullSample, i, _this = this, estimatedVelocity = _this._previousVelocityAt$1(-2).$mul(0, 0.6).$add(0, _this._previousVelocityAt$1(-1).$mul(0, 0.35)).$add(0, _this._previousVelocityAt$1(0).$mul(0, 0.05)), t1 = _this._touchSamples, t2 = _this._velocity_tracker$_index, newestSample = t1[t2]; for (oldestNonNullSample = null, i = 1; i <= 20; ++i) { oldestNonNullSample = t1[B.JSInt_methods.$mod(t2 + i, 20)]; if (oldestNonNullSample != null) break; } if (oldestNonNullSample == null || newestSample == null) return B.VelocityEstimate_MMm; else return new A.VelocityEstimate(estimatedVelocity, 1, new A.Duration(newestSample.time._duration - oldestNonNullSample.time._duration), newestSample.point.$sub(0, oldestNonNullSample.point)); } }; A.showLicensePage_closure.prototype = { call$1(context) { var _this = this; return new A.LicensePage(_this.applicationName, _this.applicationVersion, _this.applicationIcon, _this.applicationLegalese, null); }, $signature: 2604 }; A.LicensePage.prototype = { createState$0() { return new A._LicensePageState(new A.ValueNotifier(null, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_nullable_int), B._StateLifecycle_0); } }; A._LicensePageState.prototype = { build$1(_, context) { var _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12, t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; return new A._MasterDetailFlow(this.get$_packagesView(), this.get$_packageLicensePage(), t1, A.Text$(t2.get$licensesPageTitle(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); }, _packageLicensePage$3(_, args, scrollController) { args.toString; type$._DetailArguments._as(args); return new A._PackageLicensePage(args.packageName, args.licenseEntries, scrollController, null); }, _packagesView$2(_, isLateral) { var t1 = this._widget, t2 = t1.applicationName, t3 = t1.applicationIcon, t4 = t1.applicationVersion; return new A._PackagesView(new A._AboutProgram(t2, t4, t3, t1.applicationLegalese, null), isLateral, this.selectedId, null); } }; A._AboutProgram.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12, t2 = A._setArrayType([A.Text$(_this.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.headlineSmall, B.TextAlign_2, _null, _null)], type$.JSArray_Widget), t3 = _this.icon; if (t3 != null) t2.push(A.IconTheme$(t3, A.Theme_of(context).iconTheme, _null)); t3 = _this.version; if (t3 !== "") t2.push(new A.Padding(B.EdgeInsets_0_0_0_18, A.Text$(t3, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyMedium, B.TextAlign_2, _null, _null), _null)); t3 = _this.legalese; if (t3 !== "") t2.push(A.Text$(t3, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodySmall, B.TextAlign_2, _null, _null)); t2.push(B.SizedBox_null_18_null_null); t2.push(A.Text$("Powered by Flutter", _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyMedium, B.TextAlign_2, _null, _null)); return new A.Padding(new A.EdgeInsets(t1, 24, t1, 24), A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null); }, get$name(receiver) { return this.name; } }; A._PackagesView.prototype = { createState$0() { return A._PackagesViewState$(); } }; A._PackagesViewState.prototype = { build$1(_, context) { return A.FutureBuilder$(new A._PackagesViewState_build_closure(this), this.licenses, type$._LicenseData); }, _initDefaultDetailPage$2(data, context) { var t2, packageName, t3, t1 = data.packages; if (t1.length === 0) return; t2 = this._widget.selectedId._change_notifier$_value; packageName = t1[t2 == null ? 0 : t2]; t1 = data.packageLicenseBindings.$index(0, packageName); t1.toString; t2 = A._MasterDetailFlow_of(context); t2.toString; t3 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LicenseEntry>"); t2._pageOpener.setInitialDetailPage$1(new A._DetailArguments(packageName, A.List_List$of(new A.MappedListIterable(t1, new A._PackagesViewState__initDefaultDetailPage_closure(data), t3), false, t3._eval$1("ListIterable.E")))); }, _packagesList$4(context, selectedId, data, drawSelection) { var t1 = A._setArrayType([this._widget.about], type$.JSArray_Widget), t2 = data.packages; t2 = new A.ListMapView(t2, A._arrayInstanceType(t2)._eval$1("ListMapView<1>")); B.JSArray_methods.addAll$1(t1, t2.get$entries(t2).map$1$1(0, new A._PackagesViewState__packagesList_closure(this, data, drawSelection, selectedId, context), type$.Widget)); return A.ListView$(t1, null, null, B.Axis_1, false); } }; A._PackagesViewState_licenses_closure.prototype = { call$2(prev, license) { prev.addLicense$1(license); return prev; }, $signature: 2603 }; A._PackagesViewState_licenses_closure0.prototype = { call$1(licenseData) { licenseData.sortPackages$0(); return licenseData; }, $signature: 2599 }; A._PackagesViewState_build_closure.prototype = { call$2(context, snapshot) { return new A.LayoutBuilder(new A._PackagesViewState_build__closure(this.$this, snapshot), new A.ValueKey(snapshot.connectionState, type$.ValueKey_ConnectionState)); }, $signature: 2595 }; A._PackagesViewState_build__closure.prototype = { call$2(context, constraints) { var t2, t3, _null = null, t1 = this.snapshot; switch (t1.connectionState.index) { case 3: t2 = this.$this; t3 = t1.data; t3.toString; t2._initDefaultDetailPage$2(t3, context); return A.ValueListenableBuilder$(new A._PackagesViewState_build___closure(t2, t1), t2._widget.selectedId, type$.nullable_int); case 0: case 2: case 1: t1 = A.Theme_of(context).cardColor; return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([this.$this._widget.about, B.Center_mtF], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 2592 }; A._PackagesViewState_build___closure.prototype = { call$3(context, selectedId, _) { var _null = null, t1 = A.Theme_of(context).cardColor, t2 = A.BoxConstraints$loose(B.Size_UW6), t3 = this.$this, t4 = this.snapshot.data; t4.toString; return A.Center$(A.Material$(B.Duration_200000, true, _null, A.Container$(_null, t3._packagesList$4(context, selectedId, t4, t3._widget.isLateral), B.Clip_0, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.Clip_0, t1, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null, _null); }, $signature: 2588 }; A._PackagesViewState__initDefaultDetailPage_closure.prototype = { call$1(i) { return this.data.licenses[i]; }, $signature: 673 }; A._PackagesViewState__packagesList_closure.prototype = { call$1(entry) { var t3, t4, _this = this, packageName = entry.get$value(entry), index = entry.get$key(entry), t1 = _this.data, t2 = t1.packageLicenseBindings.$index(0, packageName); t2.toString; if (_this.drawSelection) { t3 = entry.get$key(entry); t4 = _this.selectedId; t3 = J.$eq$(t3, t4 == null ? 0 : t4); } else t3 = false; return new A._PackageListTile(packageName, t3, t2.length, new A._PackagesViewState__packagesList__closure(_this.$this, index, _this.context, packageName, t2, t1), null); }, $signature: 2585 }; A._PackagesViewState__packagesList__closure.prototype = { call$0() { var t1, t2, t3, _this = this; _this.$this._widget.selectedId.set$value(0, _this.index); t1 = A._MasterDetailFlow_of(_this.context); t1.toString; t2 = _this.bindings; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,LicenseEntry>"); t1._pageOpener.openDetailPage$1(new A._DetailArguments(_this.packageName, A.List_List$of(new A.MappedListIterable(t2, new A._PackagesViewState__packagesList___closure(_this.data), t3), false, t3._eval$1("ListIterable.E")))); }, $signature: 0 }; A._PackagesViewState__packagesList___closure.prototype = { call$1(i) { return this.data.licenses[i]; }, $signature: 673 }; A._PackageListTile.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.isSelected, t2 = t1 ? A.Theme_of(context).highlightColor : A.Theme_of(context).cardColor, t3 = A.Text$(_this.packageName, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t4.toString; return A.Ink$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _this.onTap, t1, _null, _null, A.Text$(t4.licensesPackageDetailText$1(_this.numberLicenses), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, _null, _null), t2, _null, _null); } }; A._LicenseData.prototype = { addLicense$1(entry) { var t1, t2, t3, t4, t5, t6, _i, $package, _this = this; for (t1 = entry.packages, t2 = t1.length, t3 = _this.packageLicenseBindings, t4 = _this.licenses, t5 = _this.packages, t6 = type$.JSArray_int, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { $package = t1[_i]; if (!t3.containsKey$1(0, $package)) { t3.$indexSet(0, $package, A._setArrayType([], t6)); if (_this.firstPackage == null) _this.firstPackage = $package; t5.push($package); } t3.$index(0, $package).push(t4.length); } t4.push(entry); }, sortPackages$0() { B.JSArray_methods.sort$1(this.packages, new A._LicenseData_sortPackages_closure(this)); } }; A._LicenseData_sortPackages_closure.prototype = { call$2(a, b) { var t1 = this.$this.firstPackage; if (a == t1) return -1; if (b == t1) return 1; return B.JSString_methods.compareTo$1(a.toLowerCase(), b.toLowerCase()); }, $signature: 2584 }; A._DetailArguments.prototype = { $eq(_, other) { if (other == null) return false; if (other instanceof A._DetailArguments) return other.packageName == this.packageName; return J.$eq$(other, this); }, get$hashCode(_) { return A.Object_hash(this.packageName, A.Object_hashAll(this.licenseEntries), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._PackageLicensePage.prototype = { createState$0() { return new A._PackageLicensePageState(A._setArrayType([], type$.JSArray_Widget), B._StateLifecycle_0); } }; A._PackageLicensePageState.prototype = { initState$0() { this.super$State$initState(); this._initLicenses$0(); }, _initLicenses$0() { return this._initLicenses$body$_PackageLicensePageState(); }, _initLicenses$body$_PackageLicensePageState() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, t3, _i, license, t4, paragraphs; var $async$_initLicenses$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.licenseEntries, t2 = t1.length, t3 = type$.List_LicenseParagraph, _i = 0; case 3: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 5; break; } license = t1[_i]; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } t4 = $.SchedulerBinding__instance; t4.toString; $async$goto = 6; return A._asyncAwait(t4.scheduleTask$1$3$debugLabel(B.JSArray_methods.get$toList(license.get$paragraphs()), B.Priority_100000, "License", t3), $async$_initLicenses$0); case 6: // returning from await. paragraphs = $async$result; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } new A._PackageLicensePageState__initLicenses_closure($async$self, paragraphs).call$0(); $async$self._framework$_element.markNeedsBuild$0(); case 4: // for update t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$self.setState$1(new A._PackageLicensePageState__initLicenses_closure0($async$self)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_initLicenses$0, $async$completer); }, build$1(_, context) { var theme, t2, title, subtitle, pad, padding, t3, t4, page, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; theme = A.Theme_of(context); t2 = _this._widget; title = t2.packageName; subtitle = t1.licensesPackageDetailText$1(t2.licenseEntries.length); pad = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12; padding = new A.EdgeInsets(pad, 0, pad, pad); t1 = A.List_List$of(_this._licenses, true, type$.Widget); if (!_this._loaded) t1.push(B.Padding_pwt); t2 = _this._widget.scrollController; if (t2 == null) { t2 = theme.appBarTheme.textTheme; t2 = A.AppBar$(_null, _null, true, _null, _null, _null, 1, _null, _null, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, new A._PackageLicensePageTitle(title, subtitle, t2 == null ? theme.primaryTextTheme : t2, _null), _null, _null, _null, 1, _null); t3 = theme.cardColor; t4 = A.BoxConstraints$loose(B.Size_UW6); page = A.Scaffold$(t2, _null, A.Center$(A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Localizations_Localizations$override(A.ScrollConfiguration$(A.ScrollConfiguration_of(context).copyWith$1$scrollbars(false), A.Scrollbar$(A.ListView$(t1, _null, padding, B.Axis_1, false), _null, _null)), context, B.Locale_en_US), B.Clip_0, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.Clip_0, t3, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null, _null), _null, _null, _null, _null, _null); } else { t3 = theme.cardColor; page = A.CustomScrollView$(0, _null, B.Clip_1, t2, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, _null, _null, false, B.Axis_1, false, A._setArrayType([new A.SliverAppBar(false, new A._PackageLicensePageTitle(title, subtitle, theme.textTheme, _null), t3, true, _null), new A.SliverPadding(padding, A.SliverList$(new A.SliverChildBuilderDelegate(new A._PackageLicensePageState_build_closure(t1), t1.length, true, true, true, A.sliver___kDefaultSemanticIndexCallback$closure(), _null)), _null)], type$.JSArray_Widget)); } t1 = theme.textTheme.bodySmall; t1.toString; return A.DefaultTextStyle$(page, _null, _null, B.TextOverflow_0, true, t1, _null, _null, B.TextWidthBasis_0); } }; A._PackageLicensePageState__initLicenses_closure.prototype = { call$0() { var t2, t3, t4, _null = null, t1 = this.$this._licenses; t1.push(B.Padding_ES6); for (t2 = J.get$iterator$ax(this.paragraphs); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t3.indent; t3 = t3.text; if (t4 === -1) t1.push(new A.Padding(B.EdgeInsets_0_16_0_0, new A.Text(t3, _null, B.TextStyle_oqK, B.TextAlign_2, _null, _null, _null, _null, _null, _null, _null), _null)); else t1.push(new A.Padding(new A.EdgeInsetsDirectional(16 * t4, 8, 0, 0), new A.Text(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } }, $signature: 0 }; A._PackageLicensePageState__initLicenses_closure0.prototype = { call$0() { this.$this._loaded = true; }, $signature: 0 }; A._PackageLicensePageState_build_closure.prototype = { call$2(context, index) { return A.Localizations_Localizations$override(this.listWidgets[index], context, B.Locale_en_US); }, $signature: 2581 }; A._PackageLicensePageTitle.prototype = { build$1(_, context) { var _null = null, color = A.Theme_of(context).appBarTheme.foregroundColor, t1 = this.theme, t2 = t1.titleLarge; t2 = t2 == null ? _null : t2.copyWith$1$color(color); t2 = A.Text$(this.title, _null, _null, _null, _null, _null, t2, _null, _null, _null); t1 = t1.titleSmall; t1 = t1 == null ? _null : t1.copyWith$1$color(color); return A.Column$(A._setArrayType([t2, A.Text$(this.subtitle, _null, _null, _null, _null, _null, t1, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, B.VerticalDirection_1); } }; A._ActionLevel.prototype = { toString$0(_) { return "_ActionLevel." + this._core$_name; } }; A._LayoutMode.prototype = { toString$0(_) { return "_LayoutMode." + this._core$_name; } }; A._Focus.prototype = { toString$0(_) { return "_Focus." + this._core$_name; } }; A._MasterDetailFlow.prototype = { createState$0() { return new A._MasterDetailFlowState(B._Focus_0, new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_NavigatorState), B._StateLifecycle_0); }, masterViewBuilder$2(arg0, arg1) { return this.masterViewBuilder.call$2(arg0, arg1); }, detailPageBuilder$3(arg0, arg1, arg2) { return this.detailPageBuilder.call$3(arg0, arg1, arg2); } }; A._MasterDetailFlowProxy.prototype = {}; A._MasterDetailFlowState.prototype = { openDetailPage$1($arguments) { var _this = this; _this._cachedDetailArguments = $arguments; if (_this._builtLayout === B._LayoutMode_2) _this._navigatorKey.get$currentState().pushNamed$1$2$arguments("detail", $arguments, type$.nullable_Object); else _this.focus = B._Focus_1; }, setInitialDetailPage$1($arguments) { this._cachedDetailArguments = $arguments; }, build$1(_, context) { this._widget.toString; switch (0) { case 0: return new A.LayoutBuilder(new A._MasterDetailFlowState_build_closure(this), null); } }, _nestedUI$1(context) { var masterPageRoute, _this = this; _this._builtLayout = B._LayoutMode_2; masterPageRoute = _this._masterPageRoute$1(context); return new A.WillPopScope(A.Navigator$("initial", _this._navigatorKey, B.List_empty11, new A._MasterDetailFlowState__nestedUI_closure(_this, masterPageRoute), new A._MasterDetailFlowState__nestedUI_closure0(_this, masterPageRoute), null, false, null), new A._MasterDetailFlowState__nestedUI_closure1(_this), null); }, _masterPageRoute$1(context) { return A.MaterialPageRoute$(new A._MasterDetailFlowState__masterPageRoute_closure(this, context), null, type$.dynamic); }, _detailPageRoute$1($arguments) { return A.MaterialPageRoute$(new A._MasterDetailFlowState__detailPageRoute_closure(this, $arguments), null, type$.dynamic); }, _lateralUI$1(context) { var t1, t2, _this = this; _this._builtLayout = B._LayoutMode_1; t1 = _this._widget; t2 = t1.detailPageFABlessGutterWidth; return new A._MasterDetailScaffold(new A._MasterDetailFlowState__lateralUI_closure(_this), new A._MasterDetailFlowState__lateralUI_closure0(_this), new A._MasterDetailFlowState__lateralUI_closure1(), _this._cachedDetailArguments, t1.title, true, t2, null); } }; A._MasterDetailFlowState_build_closure.prototype = { call$2(context, constraints) { var t1 = this.$this; if (constraints.maxWidth >= 840) return t1._lateralUI$1(context); else return t1._nestedUI$1(context); }, $signature: 276 }; A._MasterDetailFlowState__nestedUI_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.$this._navigatorKey.get$currentState().maybePop$0(), $async$call$0); case 3: // returning from await. $async$returnValue = !$async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A._MasterDetailFlowState__nestedUI_closure.prototype = { call$2($navigator, initialRoute) { var t1 = this.$this; switch (t1.focus.index) { case 0: return A._setArrayType([this.masterPageRoute], type$.JSArray_Route_void); case 1: return A._setArrayType([this.masterPageRoute, t1._detailPageRoute$1(t1._cachedDetailArguments)], type$.JSArray_Route_void); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 2580 }; A._MasterDetailFlowState__nestedUI_closure0.prototype = { call$1(settings) { var t2, t1 = settings.name; switch (t1) { case "master": this.$this.focus = B._Focus_0; return this.masterPageRoute; case "detail": t1 = this.$this; t1.focus = B._Focus_1; t2 = settings.$arguments; t1._cachedDetailArguments = t2; return t1._detailPageRoute$1(t2); default: throw A.wrapException(A.Exception_Exception("Unknown route " + A.S(t1))); } }, $signature: 2577 }; A._MasterDetailFlowState__masterPageRoute_closure.prototype = { call$1(c) { var t2, t3, t1 = this.$this; t1._widget.toString; t2 = this.context; t3 = A.Navigator_of(t2, false).canPop$0(); t2 = t3 ? new A.BackButton(new A._MasterDetailFlowState__masterPageRoute__closure(t2), null) : null; t1 = t1._widget; t3 = t1.title; return A.BlockSemantics$(new A._MasterPage(t1.masterViewBuilder, t3, t2, true, null)); }, $signature: 2576 }; A._MasterDetailFlowState__masterPageRoute__closure.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._MasterDetailFlowState__detailPageRoute_closure.prototype = { call$1(context) { var t1 = this.$this; return new A.WillPopScope(A.BlockSemantics$(t1._widget.detailPageBuilder$3(context, this.$arguments, null)), new A._MasterDetailFlowState__detailPageRoute__closure(t1, context), null); }, $signature: 2572 }; A._MasterDetailFlowState__detailPageRoute__closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.$this.focus = B._Focus_0; A.Navigator_of($async$self.context, false).pop$0(0); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A._MasterDetailFlowState__lateralUI_closure1.prototype = { call$2(_, __) { return B.List_empty12; }, $signature: 2566 }; A._MasterDetailFlowState__lateralUI_closure0.prototype = { call$3(context, args, scrollController) { var t1 = this.$this, t2 = t1._widget; t2.toString; return t2.detailPageBuilder$3(context, args == null ? t1._cachedDetailArguments : args, scrollController); }, "call*": "call$3", $requiredArgCount: 3, $signature: 659 }; A._MasterDetailFlowState__lateralUI_closure.prototype = { call$2(context, isLateral) { return this.$this._widget.masterViewBuilder$2(context, isLateral); }, $signature: 660 }; A._MasterPage.prototype = { build$1(_, context) { var _null = null; return A.Scaffold$(A.AppBar$(B.List_empty12, _null, true, _null, _null, _null, 1, _null, _null, _null, false, _null, _null, _null, this.leading, _null, true, _null, _null, _null, _null, _null, _null, this.title, _null, _null, _null, 1, _null), _null, this.masterViewBuilder.call$2(context, false), _null, _null, _null, _null, _null); } }; A._MasterDetailScaffold.prototype = { createState$0() { return new A._MasterDetailScaffoldState(new A.ValueNotifier(null, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_nullable_Object), B._StateLifecycle_0); }, masterViewBuilder$2(arg0, arg1) { return this.masterViewBuilder.call$2(arg0, arg1); } }; A._MasterDetailScaffoldState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.detailPageFABlessGutterWidth; _this.___MasterDetailScaffoldState_detailPageFABlessGutterWidth = t1; _this.___MasterDetailScaffoldState_masterViewWidth = 320; _this.___MasterDetailScaffoldState_floatingActionButtonLocation = B.C__EndTopFabLocation; }, openDetailPage$1($arguments) { var t1; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._MasterDetailScaffoldState_openDetailPage_closure(this, $arguments)); t1 = this._framework$_element; t1.toString; A._MasterDetailFlow_of(t1)._pageOpener.openDetailPage$1($arguments); }, setInitialDetailPage$1($arguments) { var t1; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._MasterDetailScaffoldState_setInitialDetailPage_closure(this, $arguments)); t1 = this._framework$_element; t1.toString; A._MasterDetailFlow_of(t1)._pageOpener.setInitialDetailPage$1($arguments); }, build$1(_, context) { var t4, t5, t6, _this = this, _null = null, _s15_ = "masterViewWidth", t1 = A._lateReadCheck(_this.___MasterDetailScaffoldState_floatingActionButtonLocation, "floatingActionButtonLocation"), t2 = _this._widget, t3 = t2.title; t2 = t2.actionBuilder.call$2(context, B._ActionLevel_0); _this._widget.toString; t4 = A.BoxConstraints$tightFor(_null, A._lateReadCheck(_this.___MasterDetailScaffoldState_masterViewWidth, _s15_)); t5 = A.Theme_of(context).primaryIconTheme; t6 = type$.JSArray_Widget; t3 = A.AppBar$(t2, _null, true, _null, _null, new A.PreferredSize(A.Row$(A._setArrayType([new A.ConstrainedBox(t4, A.IconTheme$(A.Container$(B.AlignmentDirectional_1_0, A.OverflowBar$(_null, _this._widget.actionBuilder.call$2(context, B._ActionLevel_1), B.OverflowBarAlignment_1, B.VerticalDirection_1, 0, 8), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_8_8_8_8, _null, _null, _null), t5, _null), _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Size_8aB, _null), 1, _null, _null, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); t5 = A._lateReadCheck(_this.___MasterDetailScaffoldState_masterViewWidth, _s15_); t2 = _this._widget.masterViewBuilder$2(context, true); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Scaffold$(t3, _null, new A.ConstrainedBox(new A.BoxConstraints(0, t5, 0, 1 / 0), t2, _null), _null, _null, _null, _null, t1), A.SafeArea$(true, new A.Padding(new A.EdgeInsetsDirectional(A._lateReadCheck(_this.___MasterDetailScaffoldState_masterViewWidth, _s15_) - 4, 0, A._lateReadCheck(_this.___MasterDetailScaffoldState_detailPageFABlessGutterWidth, "detailPageFABlessGutterWidth"), 0), A.ValueListenableBuilder$(new A._MasterDetailScaffoldState_build_closure(_this), _this._detailArguments, type$.nullable_Object), _null), B.EdgeInsets_0_0_0_0, true)], t6), _null); } }; A._MasterDetailScaffoldState_openDetailPage_closure.prototype = { call$1(_) { var t1 = this.$arguments; this.$this._detailArguments.set$value(0, t1); return t1; }, $signature: 22 }; A._MasterDetailScaffoldState_setInitialDetailPage_closure.prototype = { call$1(_) { var t1 = this.$arguments; this.$this._detailArguments.set$value(0, t1); return t1; }, $signature: 22 }; A._MasterDetailScaffoldState_build_closure.prototype = { call$3(context, value, child) { var _null = null, t1 = value == null, t2 = t1 ? this.$this._widget.initialArguments : value, t3 = this.$this._widget, t4 = t3.detailPageBuilder; return A.AnimatedSwitcher$(A.Container$(_null, new A._DetailView(t4, t1 ? t3.initialArguments : value, _null), B.Clip_0, _null, B.BoxConstraints_ALM, _null, _null, _null, new A.ValueKey(t2, type$.ValueKey_nullable_Object), _null, _null, _null, _null, _null), B.Duration_500000, new A._MasterDetailScaffoldState_build__closure()); }, $signature: 2562 }; A._MasterDetailScaffoldState_build__closure.prototype = { call$2(child, animation) { return A._FadeUpwardsPageTransition$(child, animation); }, $signature: 690 }; A._DetailView.prototype = { build$1(_, context) { var screenHeight, minHeight, _null = null; if (this._about$_arguments == null) return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); screenHeight = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dy; minHeight = (screenHeight - 56) / screenHeight; return new A.DraggableScrollableSheet(minHeight, minHeight, false, new A._DetailView_build_closure(this), _null); } }; A._DetailView_build_closure.prototype = { call$2(context, controller) { var _null = null, t1 = A.Theme_of(context).cardColor, t2 = this.$this; return A.MouseRegion$(A.Card$(t2._builder.call$3(context, t2._about$_arguments, controller), B.Clip_2, t1, 4, B.EdgeInsets_4_0_4_0, true, B.RoundedRectangleBorder_LkV2), B.C__DeferringMouseCursor, _null, _null, _null, _null); }, $signature: 2557 }; A.ThemeMode.prototype = { toString$0(_) { return "ThemeMode." + this._core$_name; } }; A.MaterialApp.prototype = { createState$0() { return new A._MaterialAppState(B._StateLifecycle_0); } }; A.MaterialApp_createMaterialHeroController_closure.prototype = { call$2(begin, end) { return new A.MaterialRectArcTween(begin, end); }, $signature: 2462 }; A.MaterialScrollBehavior.prototype = { getPlatform$1(context) { return A.Theme_of(context).platform; }, buildScrollbar$3(context, child, details) { var _s80_ = string$.x60null_c; switch (A.axisDirectionToAxis(details.direction).index) { case 0: return child; case 1: switch (A.Theme_of(context).platform) { case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return A.Scrollbar$(child, details.controller, null); case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: return child; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, buildOverscrollIndicator$3(context, child, details) { var target, t1, t2, _s80_ = string$.x60null_c, indicator = A._Cell$named("indicator"); A.Theme_of(context).toString; A.Theme_of(context).toString; indicator.set$finalLocalValue(B.AndroidOverscrollIndicator_1); switch (A.Theme_of(context).platform) { case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: target = 1; break; case B.TargetPlatform_0: target = 2; break; case B.TargetPlatform_1: target = 3; break; default: target = 4; break; } c$0: for (t1 = indicator.__late_helper$_name; true;) switch (target) { case 1: return child; case 2: t2 = indicator.__late_helper$_value; if (t2 === indicator) A.throwExpression(A.LateError$localNI(t1)); switch (t2) { case B.AndroidOverscrollIndicator_0: target = 1; break; case B.AndroidOverscrollIndicator_1: target = 2; break; default: target = 3; break; } c$1: for (; true;) switch (target) { case 1: return new A.StretchingOverscrollIndicator(details.direction, child, null); case 2: target = 3; continue c$0; case 3: throw A.wrapException(A.ReachabilityError$(_s80_)); } break c$0; case 3: return new A.GlowingOverscrollIndicator(details.direction, A.Theme_of(context).colorScheme.secondary, child, null); case 4: throw A.wrapException(A.ReachabilityError$(_s80_)); } } }; A._MaterialAppState.prototype = { initState$0() { this.super$State$initState(); this.___MaterialAppState__heroController = A.MaterialApp_createMaterialHeroController(); }, get$_localizationsDelegates() { var t1 = A._setArrayType([], type$.JSArray_LocalizationsDelegate_dynamic); B.JSArray_methods.addAll$1(t1, this._widget.localizationsDelegates); t1.push(B.C__MaterialLocalizationsDelegate0); t1.push(B.C__CupertinoLocalizationsDelegate); return t1; }, _inspectorSelectButtonBuilder$2(context, onPressed) { return A.FloatingActionButton$(null, B.Icon_OxR, B.C__DefaultHeroTag, true, onPressed, null); }, _materialBuilder$2(context, child) { var t1, platformBrightness, useDarkTheme, highContrast, theme, _this = this, _null = null; _this._widget.toString; t1 = A.MediaQuery_maybeOf(context); platformBrightness = t1 == null ? _null : t1.platformBrightness; if (platformBrightness == null) platformBrightness = B.Brightness_1; useDarkTheme = platformBrightness === B.Brightness_0; t1 = A.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.highContrast; highContrast = t1 === true; if (useDarkTheme) if (highContrast) _this._widget.toString; if (useDarkTheme) _this._widget.toString; if (highContrast) _this._widget.toString; theme = _this._widget.theme; return new A.ScaffoldMessenger(new A.AnimatedTheme(theme, new A.Builder(new A._MaterialAppState__materialBuilder_closure(_this, child), _null), B.C__Linear, B.Duration_200000, _null, _null), _null); }, _buildWidgetApp$1(context) { var materialColor, t3, t4, t5, _this = this, _null = null, t1 = _this._widget, t2 = t1.theme; t2 = t2.primaryColor; materialColor = t2; if (materialColor == null) materialColor = B.MaterialColor_Map_JNwaj_4280391411; t2 = t1.navigatorKey; t3 = t1.navigatorObservers; t4 = t1.home; t5 = t1.routes; return new A.WidgetsApp(t2, t1.onGenerateRoute, _null, new A._MaterialAppState__buildWidgetApp_closure(), _null, _null, _null, _null, t4, t5, _null, _null, t3, _this.get$_materialBuilder(), t1.title, _null, B.TextStyle_kUZ, materialColor, t1.locale, _this.get$_localizationsDelegates(), _null, _null, _this._widget.supportedLocales, false, false, false, false, _this.get$_inspectorSelectButtonBuilder(), false, _null, _null, _null, false, new A.GlobalObjectKey(_this, type$.GlobalObjectKey_State_StatefulWidget)); }, build$1(_, context) { var _null = null, result = A.Focus$(false, false, this._buildWidgetApp$1(context), _null, _null, _null, _null, true, _null, _null, new A._MaterialAppState_build_closure(), _null, _null), t1 = this._widget.scrollBehavior; if (t1 == null) t1 = B.MaterialScrollBehavior_null; return A.ScrollConfiguration$(t1, new A.HeroControllerScope(A._lateReadCheck(this.___MaterialAppState__heroController, "_heroController"), result, _null)); } }; A._MaterialAppState__materialBuilder_closure.prototype = { call$1(context) { return this.$this._widget.builder.call$2(context, this.child); }, $signature: 78 }; A._MaterialAppState__buildWidgetApp_closure.prototype = { call$1$2(settings, builder, $T) { return A.MaterialPageRoute$(builder, settings, $T); }, call$2(settings, builder) { return this.call$1$2(settings, builder, type$.dynamic); }, $signature: 2458 }; A._MaterialAppState_build_closure.prototype = { call$2(node, $event) { if (!($event instanceof A.RawKeyDownEvent) || !$event.data.get$logicalKey().$eq(0, B.LogicalKeyboardKey_4294967323)) return B.KeyEventResult_1; return A.Tooltip_dismissAllToolTips() ? B.KeyEventResult_0 : B.KeyEventResult_1; }, $signature: 346 }; A._ToolbarContainerLayout.prototype = { getConstraintsForChild$1(constraints) { return constraints.tighten$1$height(this.toolbarHeight); }, getSize$1(constraints) { return new A.Size(constraints.maxWidth, this.toolbarHeight); }, getPositionForChild$2(size, childSize) { return new A.Offset(0, size._dy - childSize._dy); }, shouldRelayout$1(oldDelegate) { return this.toolbarHeight !== oldDelegate.toolbarHeight; } }; A._PreferredAppBarSize.prototype = {}; A.AppBar.prototype = { _getEffectiveCenterTitle$1(theme) { var t1 = this.centerTitle; if (t1 == null) t1 = theme.appBarTheme.centerTitle; return t1 == null ? new A.AppBar__getEffectiveCenterTitle_platformCenter(this, theme).call$0() : t1; }, createState$0() { return new A._AppBarState(B._StateLifecycle_0); } }; A.AppBar__getEffectiveCenterTitle_platformCenter.prototype = { call$0() { switch (this.theme.platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return false; case B.TargetPlatform_2: case B.TargetPlatform_4: var t1 = this.$this.actions; return t1 == null || J.get$length$asx(t1) < 2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 18 }; A._AppBarState.prototype = { didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._scrollNotificationObserver; if (t1 != null) t1.removeListener$1(0, _this.get$_app_bar$_handleScrollNotification()); t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._ScrollNotificationObserverScope); t1 = t1 == null ? null : t1._scrollNotificationObserverState; _this._scrollNotificationObserver = t1; if (t1 != null) { t1 = t1._scroll_notification_observer$_listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new A._ListenerEntry(_this.get$_app_bar$_handleScrollNotification()), false); } }, dispose$0(_) { var _this = this, t1 = _this._scrollNotificationObserver; if (t1 != null) { t1.removeListener$1(0, _this.get$_app_bar$_handleScrollNotification()); _this._scrollNotificationObserver = null; } _this.super$State$dispose(0); }, _handleDrawerButton$0() { var t1 = this._framework$_element; t1.toString; A.Scaffold_of(t1).openDrawer$0(); }, _handleDrawerButtonEnd$0() { var t1 = this._framework$_element; t1.toString; A.Scaffold_of(t1).openEndDrawer$0(); }, _app_bar$_handleScrollNotification$1(notification) { var oldScrolledUnder, t1; if (notification instanceof A.ScrollUpdateNotification) { oldScrolledUnder = this._scrolledUnder; if (notification.ViewportNotificationMixin__depth === 0) { t1 = notification.metrics; t1 = Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) > 0 && A.axisDirectionToAxis(t1.axisDirection) === B.Axis_1; } else t1 = false; this._scrolledUnder = t1; if (t1 !== oldScrolledUnder) this.setState$1(new A._AppBarState__handleScrollNotification_closure()); } }, build$1(_, context) { var defaults, t1, parentRoute, settings, t2, t3, t4, hasEndDrawer, canPop, toolbarHeight, t5, backgroundColor, foregroundColor, elevation, effectiveElevation, overallIconTheme, actionsIconTheme, toolbarTextStyle, titleTextStyle, opacity, leading, title, namesRoute, mediaQueryData, actions, appBar, overlayStyle, _this = this, _null = null, theme = A.Theme_of(context), appBarTheme = A.Theme_of(context).appBarTheme; theme.toString; defaults = new A._DefaultsM20(context, _null, _null, _null, 4, _null, B.Color_4278190080, _null, _null, _null, _null, _null, _null, 16, 56, _null, _null, _null, _null); t1 = context.findAncestorStateOfType$1$0(type$.ScaffoldState); parentRoute = A.ModalRoute_of(context, type$.nullable_Object); settings = context.dependOnInheritedWidgetOfExactType$1$0(type$.FlexibleSpaceBarSettings); t2 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); t3 = settings == null ? _null : settings.isScrolledUnder; if (t3 == null ? _this._scrolledUnder : t3) t2.add$1(0, B.MaterialState_5); t3 = t1 == null; t4 = t3 ? _null : t1._widget.drawer != null; t1 = t3 ? _null : t1._widget.endDrawer != null; hasEndDrawer = t1 === true; if (parentRoute == null) t1 = _null; else if (!parentRoute.get$hasActiveRouteBelow()) { t1 = parentRoute.LocalHistoryRoute__localHistory; t1 = t1 != null && t1.length !== 0; } else t1 = true; canPop = t1 === true; t1 = _this._widget; t3 = t1.toolbarHeight; toolbarHeight = t3 == null ? appBarTheme.toolbarHeight : t3; if (toolbarHeight == null) toolbarHeight = 56; t1 = t1.backgroundColor; t3 = defaults.get$backgroundColor(defaults); t3.toString; t5 = type$.nullable_Color; t1 = A.MaterialStateProperty_resolveAs(t1, t2, t5); if (t1 == null) t1 = A.MaterialStateProperty_resolveAs(appBarTheme.backgroundColor, t2, t5); backgroundColor = t1 == null ? A.MaterialStateProperty_resolveAs(t3, t2, type$.Color) : t1; _this._widget.toString; foregroundColor = appBarTheme.foregroundColor; if (foregroundColor == null) { t1 = defaults.get$foregroundColor(defaults); t1.toString; foregroundColor = t1; } t1 = _this._widget.elevation; elevation = t1 == null ? appBarTheme.elevation : t1; if (elevation == null) { t1 = defaults.elevation; t1.toString; elevation = t1; } if (t2.contains$1(0, B.MaterialState_5)) { _this._widget.toString; t1 = appBarTheme.scrolledUnderElevation; if (t1 == null) t1 = defaults.scrolledUnderElevation; effectiveElevation = t1 == null ? elevation : t1; } else effectiveElevation = elevation; _this._widget.toString; t1 = appBarTheme.iconTheme; overallIconTheme = t1 == null ? defaults.get$iconTheme().copyWith$1$color(foregroundColor) : t1; t2 = _this._widget; t2.toString; t3 = appBarTheme.actionsIconTheme; t2 = t3 == null ? t2.iconTheme : t3; t1 = t2 == null ? t1 : t2; if (t1 == null) { t1 = defaults.actionsIconTheme; t1 = t1 == null ? _null : t1.copyWith$1$color(foregroundColor); actionsIconTheme = t1; } else actionsIconTheme = t1; if (actionsIconTheme == null) actionsIconTheme = overallIconTheme; _this._widget.toString; t1 = appBarTheme.toolbarTextStyle; if (t1 == null) { t1 = defaults.get$toolbarTextStyle(); t1 = t1 == null ? _null : t1.copyWith$1$color(foregroundColor); toolbarTextStyle = t1; } else toolbarTextStyle = t1; _this._widget.toString; t1 = appBarTheme.titleTextStyle; if (t1 == null) { t1 = defaults.get$titleTextStyle(); t1 = t1 == null ? _null : t1.copyWith$1$color(foregroundColor); titleTextStyle = t1; } else titleTextStyle = t1; t1 = _this._widget.toolbarOpacity; if (t1 !== 1) { opacity = B.Interval_oqF.transform$1(0, t1); if ((titleTextStyle == null ? _null : titleTextStyle.color) != null) { t1 = titleTextStyle.color; t1.toString; titleTextStyle = titleTextStyle.copyWith$1$color(A.Color$fromARGB(B.JSNumber_methods.round$0(255 * opacity), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); } if ((toolbarTextStyle == null ? _null : toolbarTextStyle.color) != null) { t1 = toolbarTextStyle.color; t1.toString; toolbarTextStyle = toolbarTextStyle.copyWith$1$color(A.Color$fromARGB(B.JSNumber_methods.round$0(255 * opacity), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); } t1 = overallIconTheme.get$opacity(overallIconTheme); overallIconTheme = overallIconTheme.copyWith$1$opacity(opacity * (t1 == null ? 1 : t1)); t1 = actionsIconTheme.get$opacity(actionsIconTheme); actionsIconTheme = actionsIconTheme.copyWith$1$opacity(opacity * (t1 == null ? 1 : t1)); } t1 = _this._widget; leading = t1.leading; if (leading == null && t1.automaticallyImplyLeading) if (t4 === true) { t1 = overallIconTheme.size; if (t1 == null) t1 = 24; t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; leading = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_IID, t1, _this.get$_handleDrawerButton(), B.EdgeInsets_8_8_8_8, _null, t2.get$openAppDrawerTooltip(), _null); } else if (!hasEndDrawer && canPop) leading = B.BackButton_null_null; if (leading != null) { t1 = _this._widget.leadingWidth; leading = new A.ConstrainedBox(A.BoxConstraints$tightFor(_null, t1 == null ? 56 : t1), leading, _null); } title = _this._widget.title; if (title != null) { switch (theme.platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: namesRoute = true; break; case B.TargetPlatform_2: case B.TargetPlatform_4: namesRoute = _null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } title = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, namesRoute, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A._AppBarTitleBox(title, _null), _null); titleTextStyle.toString; title = A.DefaultTextStyle$(title, _null, _null, B.TextOverflow_2, false, titleTextStyle, _null, _null, B.TextWidthBasis_0); mediaQueryData = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; title = new A.MediaQuery(mediaQueryData.copyWith$1$textScaleFactor(Math.min(mediaQueryData.textScaleFactor, 1.34)), title, _null); } t1 = _this._widget.actions; if (t1 != null && J.get$isNotEmpty$asx(t1)) { t1 = _this._widget.actions; t1.toString; actions = A.Row$(t1, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); } else if (hasEndDrawer) { t1 = overallIconTheme.size; if (t1 == null) t1 = 24; t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; actions = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_IID, t1, _this.get$_handleDrawerButtonEnd(), B.EdgeInsets_8_8_8_8, _null, t2.get$openAppDrawerTooltip(), _null); } else actions = _null; if (actions != null) actions = A.IconTheme_merge(actions, actionsIconTheme); t1 = _this._widget._getEffectiveCenterTitle$1(theme); t2 = _this._widget; t2.toString; t3 = appBarTheme.titleSpacing; if (t3 == null) t3 = 16; toolbarTextStyle.toString; appBar = A.ClipRect$(new A.CustomSingleChildLayout(new A._ToolbarContainerLayout(toolbarHeight), A.IconTheme_merge(A.DefaultTextStyle$(new A.NavigationToolbar(leading, title, actions, t1, t3, _null), _null, _null, B.TextOverflow_0, true, toolbarTextStyle, _null, _null, B.TextWidthBasis_0), overallIconTheme), _null), B.Clip_1, _null); if (t2.bottom != null) { t1 = A._setArrayType([new A.Flexible(1, B.FlexFit_1, new A.ConstrainedBox(new A.BoxConstraints(0, 1 / 0, 0, toolbarHeight), appBar, _null), _null)], type$.JSArray_Widget); t2 = _this._widget; t3 = t2.bottomOpacity; if (t3 === 1) { t2 = t2.bottom; t2.toString; t1.push(t2); } else { t2 = B.Interval_oqF.transform$1(0, t3); t1.push(A.Opacity$(_this._widget.bottom, t2)); } appBar = A.Column$(t1, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_3, B.MainAxisSize_1, B.VerticalDirection_1); } t1 = _this._widget; t1.toString; appBar = A.SafeArea$(false, appBar, B.EdgeInsets_0_0_0_0, true); appBar = new A.Align(B.Alignment_0_m1, _null, _null, appBar, _null); t1 = t1.flexibleSpace; if (t1 != null) { t2 = A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.OrdinalSortKey_1_null, _null, _null, _null, _null, _null); t3 = A.Material$(B.Duration_200000, true, _null, appBar, B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_4); appBar = new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_2, B.Clip_1, A._setArrayType([new A.Semantics(t2, false, true, false, t1, _null), new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.OrdinalSortKey_0_null, _null, _null, _null, _null, _null), false, true, false, t3, _null)], type$.JSArray_Widget), _null); } _this._widget.toString; t1 = A.ThemeData_estimateBrightnessForColor(backgroundColor); t1 = t1 === B.Brightness_0 ? B.SystemUiOverlayStyle_6UD : B.SystemUiOverlayStyle_qsc; overlayStyle = t1; _this._widget.toString; t1 = appBarTheme.shadowColor; if (t1 == null) t1 = defaults.shadowColor; t2 = appBarTheme.surfaceTintColor; if (t2 == null) t2 = defaults.surfaceTintColor; t3 = appBarTheme.shape; if (t3 == null) t3 = defaults.shape; t1 = A.Material$(B.Duration_200000, true, _null, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, appBar, _null), B.Clip_0, backgroundColor, effectiveElevation, _null, t1, t3, t2, _null, B.MaterialType_0); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A.AnnotatedRegion(overlayStyle, t1, _null, type$.AnnotatedRegion_SystemUiOverlayStyle), _null); } }; A._AppBarState__handleScrollNotification_closure.prototype = { call$0() { }, $signature: 0 }; A._SliverAppBarDelegate.prototype = { get$maxExtent() { var _this = this, t1 = _this.toolbarHeight + _this._bottomHeight; return Math.max(_this.topPadding + t1, _this.collapsedHeight); }, build$3(_, context, shrinkOffset, overlapsContent) { var t1, t2, isScrolledUnder, t3, t4, t5, _this = this; _this.get$maxExtent(); t1 = _this.collapsedHeight; t2 = _this.toolbarHeight; Math.max(t1 - _this._bottomHeight - _this.topPadding - t2, 0); if (!overlapsContent) isScrolledUnder = shrinkOffset > _this.get$maxExtent() - t1; else isScrolledUnder = true; t3 = _this.get$maxExtent(); t4 = Math.max(t1, _this.get$maxExtent() - shrinkOffset); t5 = isScrolledUnder ? _this.elevation : 0; return A.FlexibleSpaceBar_createSettings(A.AppBar$(_this.actions, _this.actionsIconTheme, false, _this.backgroundColor, _this.backwardsCompatibility, _this.bottom, 1, _this.brightness, _this.centerTitle, t5, false, _this.flexibleSpace, _this.foregroundColor, _this.iconTheme, _this.leading, _this.leadingWidth, true, _this.scrolledUnderElevation, _this.shadowColor, _this.shape, _this.surfaceTintColor, _this.systemOverlayStyle, _this.textTheme, _this.title, _this.titleSpacing, _this.titleTextStyle, t2, 1, _this.toolbarTextStyle), t4, isScrolledUnder, t3, t1, 1); }, toString$0(_) { return "#" + A.shortHash(this) + "(topPadding: " + J.toStringAsFixed$1$n(this.topPadding, 1) + ", bottomHeight: " + B.JSInt_methods.toStringAsFixed$1(this._bottomHeight, 1) + ", ...)"; } }; A.SliverAppBar.prototype = { createState$0() { return new A._SliverAppBarState(null, null, B._StateLifecycle_0); } }; A._SliverAppBarState.prototype = { _updateSnapConfiguration$0() { this._widget.toString; var t1 = this._snapConfiguration = null; this._showOnScreenConfiguration = B.JSBool_methods.$and(false, false) ? B.PersistentHeaderShowOnScreenConfiguration_QA5 : t1; }, _updateStretchConfiguration$0() { this._widget.toString; this._stretchConfiguration = null; }, initState$0() { this.super$State$initState(); this._updateSnapConfiguration$0(); this._updateStretchConfiguration$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; }, build$1(_, context) { var topPadding, t1, collapsedHeight, t2, t3, t4, _this = this, _null = null; _this._widget.toString; topPadding = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding.top; t1 = _this._widget; t1.toString; collapsedHeight = 56 + topPadding; t2 = _this._snapConfiguration; t3 = _this._stretchConfiguration; t4 = _this._showOnScreenConfiguration; return A.MediaQuery_MediaQuery$removePadding(new A.SliverPersistentHeader(new A._SliverAppBarDelegate(_null, false, t1.title, _null, _null, _null, _null, _null, _null, _null, false, t1.backgroundColor, _null, _null, _null, _null, _null, true, _null, false, _null, _null, collapsedHeight, topPadding, false, true, _null, 56, _null, _null, _null, _null, _null, 0, _this, t2, t3, t4), true, false, _null), context, true, false, false, false); } }; A._AppBarTitleBox.prototype = { createRenderObject$1(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new A._RenderAppBarTitleBox(B.Alignment_0_0, t1.textDirection, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; A._RenderAppBarTitleBox.prototype = { computeDryLayout$1(constraints) { var innerConstraints = constraints.copyWith$1$maxHeight(1 / 0); return constraints.constrain$1(this.RenderObjectWithChildMixin__child.getDryLayout$1(innerConstraints)); }, performLayout$0() { var t2, _this = this, t1 = type$.BoxConstraints, innerConstraints = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).copyWith$1$maxHeight(1 / 0); _this.RenderObjectWithChildMixin__child.layout$2$parentUsesSize(0, innerConstraints, true); t1 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrain$1(t2); _this.alignChild$0(); } }; A._DefaultsM20.prototype = { get$_app_bar$_theme() { var result, _this = this, value = _this.___DefaultsM2__theme; if (value === $) { result = A.Theme_of(_this.context); A._lateInitializeOnceCheck(_this.___DefaultsM2__theme, "_theme"); _this.___DefaultsM2__theme = result; value = result; } return value; }, get$_app_bar$_colors() { var result, _this = this, value = _this.___DefaultsM2__colors; if (value === $) { result = _this.get$_app_bar$_theme().colorScheme; A._lateInitializeOnceCheck(_this.___DefaultsM2__colors, "_colors"); _this.___DefaultsM2__colors = result; value = result; } return value; }, get$backgroundColor(_) { return this.get$_app_bar$_colors().brightness === B.Brightness_0 ? this.get$_app_bar$_colors().surface : this.get$_app_bar$_colors().primary; }, get$foregroundColor(_) { return this.get$_app_bar$_colors().brightness === B.Brightness_0 ? this.get$_app_bar$_colors().onSurface : this.get$_app_bar$_colors().onPrimary; }, get$iconTheme() { return this.get$_app_bar$_theme().iconTheme; }, get$toolbarTextStyle() { return this.get$_app_bar$_theme().textTheme.bodyMedium; }, get$titleTextStyle() { return this.get$_app_bar$_theme().textTheme.titleLarge; } }; A.__SliverAppBarState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.AppBarTheme.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.brightness, _this.get$backgroundColor(_this), _this.get$foregroundColor(_this), _this.elevation, _this.scrolledUnderElevation, _this.shadowColor, _this.get$surfaceTintColor(), _this.shape, _this.get$iconTheme(), _this.get$actionsIconTheme(), _this.textTheme, _this.centerTitle, _this.titleSpacing, _this.toolbarHeight, _this.get$toolbarTextStyle(), _this.get$titleTextStyle(), _this.systemOverlayStyle, _this.backwardsCompatibility, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.AppBarTheme) if (J.$eq$(other.get$backgroundColor(other), _this.get$backgroundColor(_this))) if (J.$eq$(other.get$foregroundColor(other), _this.get$foregroundColor(_this))) if (other.elevation == _this.elevation) if (other.scrolledUnderElevation == _this.scrolledUnderElevation) if (J.$eq$(other.shadowColor, _this.shadowColor)) if (J.$eq$(other.get$surfaceTintColor(), _this.get$surfaceTintColor())) if (J.$eq$(other.shape, _this.shape)) if (J.$eq$(other.get$iconTheme(), _this.get$iconTheme())) if (J.$eq$(other.get$actionsIconTheme(), _this.get$actionsIconTheme())) if (J.$eq$(other.textTheme, _this.textTheme)) if (other.titleSpacing == _this.titleSpacing) if (other.toolbarHeight == _this.toolbarHeight) if (J.$eq$(other.get$toolbarTextStyle(), _this.get$toolbarTextStyle())) if (J.$eq$(other.get$titleTextStyle(), _this.get$titleTextStyle())) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$backgroundColor(receiver) { return this.backgroundColor; }, get$foregroundColor(receiver) { return this.foregroundColor; }, get$surfaceTintColor() { return this.surfaceTintColor; }, get$iconTheme() { return this.iconTheme; }, get$actionsIconTheme() { return this.actionsIconTheme; }, get$toolbarTextStyle() { return this.toolbarTextStyle; }, get$titleTextStyle() { return this.titleTextStyle; } }; A._AppBarTheme_Object_Diagnosticable.prototype = {}; A.MaterialPointArcTween.prototype = { _initialize$0() { var t2, delta, deltaX, deltaY, distanceFromAtoB, t3, t4, c, t5, t6, t7, t8, _this = this, t1 = _this.begin; t1.toString; t2 = _this.end; t2.toString; delta = t2.$sub(0, t1); deltaX = Math.abs(delta._dx); deltaY = Math.abs(delta._dy); distanceFromAtoB = delta.get$distance(); t3 = t2._dx; t4 = t1._dy; c = new A.Offset(t3, t4); t5 = new A.MaterialPointArcTween__initialize_sweepAngle(_this, distanceFromAtoB); if (deltaX > 2 && deltaY > 2) { t6 = distanceFromAtoB * distanceFromAtoB; t7 = t1._dx; t8 = t2._dy; if (deltaX < deltaY) { t1 = t6 / c.$sub(0, t1).get$distance() / 2; _this._radius = t1; _this._center = new A.Offset(t3 + t1 * J.get$sign$in(t7 - t3), t8); if (t7 < t3) { _this._beginAngle = t5.call$0() * J.get$sign$in(t4 - t8); _this._endAngle = 0; } else { _this._beginAngle = 3.141592653589793 + t5.call$0() * J.get$sign$in(t8 - t4); _this._endAngle = 3.141592653589793; } } else { _this._radius = t6 / c.$sub(0, t2).get$distance() / 2; t1 = J.get$sign$in(t8 - t4); t2 = _this._radius; t2.toString; _this._center = new A.Offset(t7, t4 + t1 * t2); if (t4 < t8) { _this._beginAngle = -1.5707963267948966; _this._endAngle = -1.5707963267948966 + t5.call$0() * J.get$sign$in(t3 - t7); } else { _this._beginAngle = 1.5707963267948966; _this._endAngle = 1.5707963267948966 + t5.call$0() * J.get$sign$in(t7 - t3); } } } else _this._endAngle = _this._beginAngle = null; _this._arc$_dirty = false; }, get$center() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._center; }, get$radius() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._radius; }, get$beginAngle() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._beginAngle; }, get$endAngle() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._beginAngle; }, set$begin(value) { if (!J.$eq$(value, this.begin)) { this.begin = value; this._arc$_dirty = true; } }, set$end(_, value) { if (!J.$eq$(value, this.end)) { this.end = value; this._arc$_dirty = true; } }, lerp$1(t) { var t1, t2, t3, t4, _this = this; if (_this._arc$_dirty) _this._initialize$0(); if (t === 0) { t1 = _this.begin; t1.toString; return t1; } if (t === 1) { t1 = _this.end; t1.toString; return t1; } t1 = _this._beginAngle; if (t1 == null || _this._endAngle == null) { t1 = A.Offset_lerp(_this.begin, _this.end, t); t1.toString; return t1; } t1 = A.lerpDouble(t1, _this._endAngle, t); t1.toString; t2 = Math.cos(t1); t3 = _this._radius; t3.toString; t1 = Math.sin(t1); t4 = _this._radius; t4.toString; return _this._center.$add(0, new A.Offset(t2 * t3, t1 * t4)); }, toString$0(_) { var _this = this; return "MaterialPointArcTween(" + A.S(_this.begin) + " \u2192 " + A.S(_this.end) + "; center=" + A.S(_this.get$center()) + ", radius=" + A.S(_this.get$radius()) + ", beginAngle=" + A.S(_this.get$beginAngle()) + ", endAngle=" + A.S(_this.get$endAngle()) + ")"; } }; A.MaterialPointArcTween__initialize_sweepAngle.prototype = { call$0() { var t1 = this.$this._radius; t1.toString; return 2 * Math.asin(this.distanceFromAtoB / (2 * t1)); }, $signature: 508 }; A._CornerId.prototype = { toString$0(_) { return "_CornerId." + this._core$_name; } }; A._Diagonal.prototype = {}; A.MaterialRectArcTween.prototype = { _initialize$0() { var t2, t3, _this = this, diagonal = A._maxBy(B.List_oyU, new A.MaterialRectArcTween__initialize_closure(_this, _this.end.get$center().$sub(0, _this.begin.get$center()))), t1 = _this.begin; t1.toString; t2 = diagonal.beginId; t1 = _this._cornerFor$2(t1, t2); t3 = _this.end; t3.toString; _this.__MaterialRectArcTween__beginArc = new A.MaterialPointArcTween(t1, _this._cornerFor$2(t3, t2)); t2 = _this.begin; t2.toString; t3 = diagonal.endId; t2 = _this._cornerFor$2(t2, t3); t1 = _this.end; t1.toString; _this.__MaterialRectArcTween__endArc = new A.MaterialPointArcTween(t2, _this._cornerFor$2(t1, t3)); _this._arc$_dirty = false; }, _cornerFor$2(rect, id) { switch (id.index) { case 0: return new A.Offset(rect.left, rect.top); case 1: return new A.Offset(rect.right, rect.top); case 2: return new A.Offset(rect.left, rect.bottom); case 3: return new A.Offset(rect.right, rect.bottom); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$beginArc() { var _this = this; if (_this.begin == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return A._lateReadCheck(_this.__MaterialRectArcTween__beginArc, "_beginArc"); }, get$endArc() { var _this = this; if (_this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return A._lateReadCheck(_this.__MaterialRectArcTween__endArc, "_endArc"); }, set$begin(value) { if (!J.$eq$(value, this.begin)) { this.begin = value; this._arc$_dirty = true; } }, set$end(_, value) { if (!J.$eq$(value, this.end)) { this.end = value; this._arc$_dirty = true; } }, lerp$1(t) { var t1, _this = this; if (_this._arc$_dirty) _this._initialize$0(); if (t === 0) { t1 = _this.begin; t1.toString; return t1; } if (t === 1) { t1 = _this.end; t1.toString; return t1; } return A.Rect$fromPoints(A._lateReadCheck(_this.__MaterialRectArcTween__beginArc, "_beginArc").lerp$1(t), A._lateReadCheck(_this.__MaterialRectArcTween__endArc, "_endArc").lerp$1(t)); }, toString$0(_) { var _this = this; return "MaterialRectArcTween(" + A.S(_this.begin) + " \u2192 " + A.S(_this.end) + "; beginArc=" + A.S(_this.get$beginArc()) + ", endArc=" + A.S(_this.get$endArc()) + ")"; } }; A.MaterialRectArcTween__initialize_closure.prototype = { call$1(d) { var t4, delta, $length, t1 = this.$this, t2 = this.centersVector, t3 = t1.begin; t3.toString; t3 = t1._cornerFor$2(t3, d.endId); t4 = t1.begin; t4.toString; delta = t3.$sub(0, t1._cornerFor$2(t4, d.beginId)); $length = delta.get$distance(); return t2._dx * delta._dx / $length + t2._dy * delta._dy / $length; }, $signature: 2446 }; A.BackButtonIcon.prototype = { build$1(_, context) { return A.Icon$(A.BackButtonIcon__getIconData(A.Theme_of(context).platform), null, null); } }; A.BackButton.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; return A.IconButton$(B.Alignment_0_0, _null, _null, true, B.BackButtonIcon_null, _null, new A.BackButton_build_closure(this, context), B.EdgeInsets_8_8_8_8, _null, t1.get$backButtonTooltip(), _null); } }; A.BackButton_build_closure.prototype = { call$0() { var t1 = this.$this.onPressed; if (t1 != null) t1.call$0(); else A.Navigator_maybePop(this.context); }, $signature: 0 }; A.MaterialBannerThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.contentTextStyle, _this.elevation, _this.padding, _this.leadingPadding, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.MaterialBannerThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.contentTextStyle, _this.contentTextStyle) && other.elevation == _this.elevation && J.$eq$(other.padding, _this.padding) && J.$eq$(other.leadingPadding, _this.leadingPadding); } }; A._MaterialBannerThemeData_Object_Diagnosticable.prototype = {}; A.BottomAppBar.prototype = { createState$0() { return new A._BottomAppBarState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A._BottomAppBarState.prototype = { didChangeDependencies$0() { var t1, scaffoldScope; this.super$State$didChangeDependencies(); t1 = this._framework$_element; scaffoldScope = t1.dependOnInheritedWidgetOfExactType$1$0(type$._ScaffoldScope); if (scaffoldScope == null) A.throwExpression(A.FlutterError$fromParts(A._setArrayType([A.ErrorSummary$("Scaffold.geometryOf() called with a context that does not contain a Scaffold."), A.ErrorDescription$("This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."), A.ErrorHint$(string$.There_a), A.ErrorHint$("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.geometryOf()."), t1.describeElement$1("The context used was")], type$.JSArray_DiagnosticsNode))); this.___BottomAppBarState_geometryListenable = scaffoldScope.geometryNotifier; }, build$1(_, context) { var clipper, elevation, color, effectiveColor, _this = this, _null = null, babTheme = A.Theme_of(context).bottomAppBarTheme, notchedShape = _this._widget.shape, t1 = A._lateReadCheck(_this.___BottomAppBarState_geometryListenable, "geometryListenable"), t2 = _this._widget; t2.toString; clipper = new A._BottomAppBarClipper(t1, notchedShape, _this.materialKey, 4, t1); t1 = t2; elevation = t1.elevation; t1 = t1.color; color = t1 == null ? babTheme.color : t1; effectiveColor = A.ElevationOverlay_applyOverlay(context, color == null ? A.Theme_of(context).bottomAppBarColor : color, elevation); t1 = A.SafeArea$(true, _this._widget.child, B.EdgeInsets_0_0_0_0, true); return A.PhysicalShape$(A.Material$(B.Duration_200000, true, _null, t1, B.Clip_0, _null, 0, _this.materialKey, _null, _null, _null, _null, B.MaterialType_4), B.Clip_0, clipper, effectiveColor, elevation, B.Color_4278190080); } }; A._BottomAppBarClipper.prototype = { get$bottomNavigationBarTop() { var bottomNavigationBarTop, t1 = this.geometry, t2 = t1.geometry; t1 = t1.floatingActionButtonScale; t1.toString; bottomNavigationBarTop = t2._scaleFloatingActionButton$1(t1).bottomNavigationBarTop; if (bottomNavigationBarTop != null) return bottomNavigationBarTop; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.materialKey); t1 = t1 == null ? null : t1.get$renderObject(); type$.nullable_RenderBox._as(t1); t1 = t1 == null ? null : A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, null), B.Offset_0_0)._dy; return t1 == null ? 0 : t1; }, getClip$1(size) { var button, t3, _this = this, t1 = _this.geometry, t2 = t1.geometry; t1 = t1.floatingActionButtonScale; t1.toString; t1 = t2._scaleFloatingActionButton$1(t1).floatingActionButtonArea; button = t1 == null ? null : t1.translate$2(0, 0, _this.get$bottomNavigationBarTop() * -1); t1 = size._dx; t2 = size._dy; t3 = button == null ? null : button.inflate$1(_this.notchMargin); return _this.shape.getOuterPath$2(new A.Rect(0, 0, 0 + t1, 0 + t2), t3); }, shouldReclip$1(oldClipper) { return oldClipper.geometry !== this.geometry || oldClipper.shape !== this.shape || oldClipper.notchMargin !== this.notchMargin; } }; A.BottomAppBarTheme.prototype = { get$hashCode(_) { return A.Object_hash(this.color, this.elevation, this.shape, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BottomAppBarTheme && J.$eq$(other.color, _this.color) && other.elevation == _this.elevation && true; } }; A._BottomAppBarTheme_Object_Diagnosticable.prototype = {}; A.BottomNavigationBarThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.elevation, _this.selectedIconTheme, _this.unselectedIconTheme, _this.selectedItemColor, _this.unselectedItemColor, _this.selectedLabelStyle, _this.unselectedLabelStyle, _this.showSelectedLabels, _this.showUnselectedLabels, _this.type, _this.enableFeedback, _this.landscapeLayout, _this.mouseCursor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.BottomNavigationBarThemeData) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.elevation == _this.elevation) if (J.$eq$(other.selectedIconTheme, _this.selectedIconTheme)) if (J.$eq$(other.unselectedIconTheme, _this.unselectedIconTheme)) if (J.$eq$(other.selectedItemColor, _this.selectedItemColor)) if (J.$eq$(other.unselectedItemColor, _this.unselectedItemColor)) if (J.$eq$(other.selectedLabelStyle, _this.selectedLabelStyle)) if (J.$eq$(other.unselectedLabelStyle, _this.unselectedLabelStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._BottomNavigationBarThemeData_Object_Diagnosticable.prototype = {}; A.BottomSheet.prototype = { createState$0() { return new A._BottomSheetState(new A.LabeledGlobalKey("BottomSheet child", type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); }, onClosing$0() { return this.onClosing.call$0(); }, builder$1(arg0) { return this.builder.call$1(arg0); } }; A._BottomSheetState.prototype = { get$_childHeight() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._childKey).get$renderObject(); t1.toString; return type$.RenderBox._as(t1)._box$_size._dy; }, _bottom_sheet$_handleDragStart$1(details) { this._widget.onDragStart.call$1(details); }, _bottom_sheet$_handleDragUpdate$1(details) { var t1, t2, t3; if (A._lateReadCheck(this._widget.animationController.__AnimationController__status, "_status") === B.AnimationStatus_2) return; t1 = this._widget.animationController; t2 = A._lateReadCheck(t1.__AnimationController__value, "_value"); t3 = details.primaryDelta; t3.toString; t1.set$value(0, t2 - t3 / this.get$_childHeight()); }, _bottom_sheet$_handleDragEnd$1(details) { var t1, flingVelocity, isClosing, _this = this, _s6_ = "_value"; if (A._lateReadCheck(_this._widget.animationController.__AnimationController__status, "_status") === B.AnimationStatus_2) return; t1 = details.velocity.pixelsPerSecond._dy; if (t1 > 700) { flingVelocity = -t1 / _this.get$_childHeight(); if (A._lateReadCheck(_this._widget.animationController.__AnimationController__value, _s6_) > 0) _this._widget.animationController.fling$1$velocity(flingVelocity); isClosing = flingVelocity < 0 && true; } else if (A._lateReadCheck(_this._widget.animationController.__AnimationController__value, _s6_) < 0.5) { if (A._lateReadCheck(_this._widget.animationController.__AnimationController__value, _s6_) > 0) _this._widget.animationController.fling$1$velocity(-1); isClosing = true; } else { _this._widget.animationController.forward$0(0); isClosing = false; } _this._widget.onDragEnd.call$2$isClosing(details, isClosing); if (isClosing) _this._widget.onClosing$0(); }, extentChanged$1(notification) { if (notification.extent === notification.minExtent) this._widget.onClosing$0(); return false; }, build$1(_, context) { var constraints, color, elevation, shape, bottomSheet, _this = this, _null = null, bottomSheetTheme = A.Theme_of(context).bottomSheetTheme, t1 = _this._widget; t1.toString; constraints = bottomSheetTheme.constraints; color = bottomSheetTheme.backgroundColor; elevation = bottomSheetTheme.elevation; if (elevation == null) elevation = 0; shape = bottomSheetTheme.shape; bottomSheet = A.Material$(B.Duration_200000, true, _null, new A.NotificationListener(_this.get$extentChanged(), t1.builder$1(context), _null, type$.NotificationListener_DraggableScrollableNotification), B.Clip_0, color, elevation, _this._childKey, _null, shape, _null, _null, B.MaterialType_0); if (constraints != null) bottomSheet = new A.Align(B.Alignment_0_1, _null, 1, new A.ConstrainedBox(constraints, bottomSheet, _null), _null); return !_this._widget.enableDrag ? bottomSheet : A.GestureDetector$(_null, bottomSheet, B.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_bottom_sheet$_handleDragEnd(), _this.get$_bottom_sheet$_handleDragStart(), _this.get$_bottom_sheet$_handleDragUpdate()); } }; A.BottomSheetThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.elevation, _this.modalBackgroundColor, _this.modalElevation, _this.shape, _this.clipBehavior, _this.constraints, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.BottomSheetThemeData) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.elevation == _this.elevation) if (J.$eq$(other.modalBackgroundColor, _this.modalBackgroundColor)) if (other.modalElevation == _this.modalElevation) if (J.$eq$(other.shape, _this.shape)) t1 = J.$eq$(other.constraints, _this.constraints); else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._BottomSheetThemeData_Object_Diagnosticable.prototype = {}; A.RawMaterialButton.prototype = { createState$0() { return new A._RawMaterialButtonState(A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), B._StateLifecycle_0); } }; A._RawMaterialButtonState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); if (!(_this._widget.onPressed != null || false)) _this.addMaterialState$1(B.MaterialState_6); else _this.removeMaterialState$1(B.MaterialState_6); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!(_this._widget.onPressed != null || false)) _this.addMaterialState$1(B.MaterialState_6); else _this.removeMaterialState$1(B.MaterialState_6); t1 = _this.MaterialStateMixin_materialStates; if (t1.contains$1(0, B.MaterialState_6) && t1.contains$1(0, B.MaterialState_2)) _this.removeMaterialState$1(B.MaterialState_2); }, get$_effectiveElevation() { var _this = this, t1 = _this.MaterialStateMixin_materialStates; if (t1.contains$1(0, B.MaterialState_6)) return _this._widget.disabledElevation; if (t1.contains$1(0, B.MaterialState_2)) return _this._widget.highlightElevation; if (t1.contains$1(0, B.MaterialState_0)) return _this._widget.hoverElevation; if (t1.contains$1(0, B.MaterialState_1)) return _this._widget.focusElevation; return _this._widget.elevation; }, build$1(_, context) { var densityAdjustment, effectiveConstraints, effectiveMouseCursor, padding, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, minSize, _this = this, _null = null, t1 = _this._widget.textStyle, t2 = _this.MaterialStateMixin_materialStates, effectiveTextColor = A.MaterialStateProperty_resolveAs(t1.color, t2, type$.nullable_Color), effectiveShape = A.MaterialStateProperty_resolveAs(_this._widget.shape, t2, type$.nullable_ShapeBorder); _this._widget.toString; densityAdjustment = new A.Offset(0, 0).$mul(0, 4); effectiveConstraints = B.VisualDensity_0_0.effectiveConstraints$1(_this._widget.constraints); _this._widget.toString; effectiveMouseCursor = A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, t2, type$.nullable_MouseCursor); _this._widget.toString; t1 = densityAdjustment._dx; t2 = densityAdjustment._dy; padding = B.EdgeInsets_0_0_0_0.add$1(0, new A.EdgeInsets(t1, t2, t1, t2)).clamp$2(0, B.EdgeInsets_0_0_0_0, B._MixedEdgeInsets_QWq); t3 = _this.get$_effectiveElevation(); t4 = _this._widget.textStyle.copyWith$1$color(effectiveTextColor); t5 = _this._widget.fillColor; A.Theme_of(context).toString; t6 = _this._widget; t7 = t6.fillColor == null ? B.MaterialType_4 : B.MaterialType_3; t8 = t6.clipBehavior; t9 = t6.focusNode; t6 = t6.onPressed != null || false; t10 = _this.updateMaterialState$1(B.MaterialState_1); _this._widget.toString; t11 = _this.updateMaterialState$2$onChanged(B.MaterialState_2, _null); t12 = _this._widget; t13 = t12.splashColor; t14 = t12.highlightColor; t15 = t12.focusColor; t12 = t12.hoverColor; t16 = _this.updateMaterialState$1(B.MaterialState_0); t17 = _this._widget; t18 = t17.onPressed; t19 = t17.enableFeedback; t7 = A.Material$(B.Duration_200000, true, _null, A.InkWell$(false, _null, t6, A.IconTheme_merge(A.Container$(_null, A.Center$(t17.child, 1, 1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null), new A.IconThemeData(effectiveTextColor, _null, _null, _null)), effectiveShape, t19, t15, t9, t14, t12, _null, effectiveMouseCursor, _null, t10, t11, t16, _null, t18, _null, _null, _null, _null, t13, _null), t8, t5, t3, _null, _null, effectiveShape, _null, t4, t7); switch (t17.materialTapTargetSize.index) { case 0: minSize = new A.Size(48 + t1, 48 + t2); break; case 1: minSize = B.Size_0_0; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = t18 != null || false; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A._InputPadding(minSize, new A.ConstrainedBox(effectiveConstraints, t7, _null), _null), _null); } }; A._InputPadding.prototype = { createRenderObject$1(context) { var t1 = new A._RenderInputPadding(this.minSize, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$minSize(this.minSize); } }; A._RenderInputPadding.prototype = { set$minSize(value) { if (this._minSize.$eq(0, value)) return; this._minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, _button0$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._minSize; return constraints.constrain$1(new A.Size(Math.max(A.checkNum(t1), A.checkNum(t2._dx)), Math.max(A.checkNum(childSize._dy), A.checkNum(t2._dy)))); } return B.Size_0_0; }, computeDryLayout$1(constraints) { return this._button0$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { var t2, t3, _this = this, t1 = _this._button0$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = B.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position(result, position) { var center; if (this.super$RenderBox$hitTest(result, position)) return true; center = this.RenderObjectWithChildMixin__child._box$_size.center$1(B.Offset_0_0); return result.addWithRawTransform$3$hitTest$position$transform(new A._RenderInputPadding_hitTest_closure(this, center), center, A.MatrixUtils_forceToPoint(center)); } }; A._RenderInputPadding_hitTest_closure.prototype = { call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, $signature: 73 }; A.__RawMaterialButtonState_State_MaterialStateMixin.prototype = {}; A.ButtonBarThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.alignment, _this.mainAxisSize, _this.buttonTextTheme, _this.buttonMinWidth, _this.buttonHeight, _this.buttonPadding, _this.buttonAlignedDropdown, _this.layoutBehavior, _this.overflowDirection, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.ButtonBarThemeData) if (other.buttonMinWidth == _this.buttonMinWidth) if (other.buttonHeight == _this.buttonHeight) if (J.$eq$(other.buttonPadding, _this.buttonPadding)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._ButtonBarThemeData_Object_Diagnosticable.prototype = {}; A.ButtonStyle.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$textStyle(_this), _this.get$backgroundColor(_this), _this.get$foregroundColor(_this), _this.get$overlayColor(), _this.get$shadowColor(_this), _this.get$surfaceTintColor(), _this.get$elevation(_this), _this.get$padding(_this), _this.get$minimumSize(), _this.fixedSize, _this.get$maximumSize(), _this.get$side(), _this.get$shape(_this), _this.get$mouseCursor(), _this.get$visualDensity(), _this.get$tapTargetSize(), _this.animationDuration, _this.enableFeedback, _this.alignment, _this.get$splashFactory()); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ButtonStyle && other.get$textStyle(other) == _this.get$textStyle(_this) && other.get$backgroundColor(other) == _this.get$backgroundColor(_this) && J.$eq$(other.get$foregroundColor(other), _this.get$foregroundColor(_this)) && J.$eq$(other.get$overlayColor(), _this.get$overlayColor()) && other.get$shadowColor(other) == _this.get$shadowColor(_this) && other.get$surfaceTintColor() == _this.get$surfaceTintColor() && other.get$elevation(other) == _this.get$elevation(_this) && other.get$padding(other) == _this.get$padding(_this) && other.get$minimumSize() == _this.get$minimumSize() && other.fixedSize == _this.fixedSize && other.get$maximumSize() == _this.get$maximumSize() && other.get$side() == _this.get$side() && other.get$shape(other) == _this.get$shape(_this) && other.get$mouseCursor() == _this.get$mouseCursor() && J.$eq$(other.get$visualDensity(), _this.get$visualDensity()) && other.get$tapTargetSize() == _this.get$tapTargetSize() && J.$eq$(other.animationDuration, _this.animationDuration) && other.enableFeedback == _this.enableFeedback && J.$eq$(other.alignment, _this.alignment) && other.get$splashFactory() == _this.get$splashFactory(); }, get$textStyle(receiver) { return this.textStyle; }, get$backgroundColor(receiver) { return this.backgroundColor; }, get$foregroundColor(receiver) { return this.foregroundColor; }, get$overlayColor() { return this.overlayColor; }, get$shadowColor(receiver) { return this.shadowColor; }, get$surfaceTintColor() { return this.surfaceTintColor; }, get$elevation(receiver) { return this.elevation; }, get$padding(receiver) { return this.padding; }, get$minimumSize() { return this.minimumSize; }, get$maximumSize() { return this.maximumSize; }, get$side() { return this.side; }, get$shape(receiver) { return this.shape; }, get$mouseCursor() { return this.mouseCursor; }, get$visualDensity() { return this.visualDensity; }, get$tapTargetSize() { return this.tapTargetSize; }, get$splashFactory() { return this.splashFactory; } }; A._LerpProperties.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._LerpSides.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); t1 = resolvedA == null; if (t1 && resolvedB == null) return null; if (t1) { t1 = resolvedB.color; return A.BorderSide_lerp(new A.BorderSide(A.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, B.BorderStyle_1), resolvedB, _this.t); } if (resolvedB == null) { t1 = resolvedA.color; return A.BorderSide_lerp(resolvedA, new A.BorderSide(A.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, B.BorderStyle_1), _this.t); } return A.BorderSide_lerp(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._LerpShapes.prototype = { resolve$1(_, states) { var resolvedB, t1 = this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return type$.nullable_OutlinedBorder._as(A.ShapeBorder_lerp(resolvedA, resolvedB, this.t)); }, $isMaterialStateProperty: 1 }; A._ButtonStyle_Object_Diagnosticable.prototype = {}; A.ButtonStyleButton.prototype = { createState$0() { return new A._ButtonStyleState(null, null, A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), B._StateLifecycle_0); } }; A._ButtonStyleState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; if (!(t1.onPressed != null || t1.onLongPress != null)) _this.addMaterialState$1(B.MaterialState_6); else _this.removeMaterialState$1(B.MaterialState_6); }, dispose$0(_) { var t1 = this._button_style_button$_controller; if (t1 != null) t1.dispose$0(0); this.super$__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; if (!(t1.onPressed != null || t1.onLongPress != null)) _this.addMaterialState$1(B.MaterialState_6); else _this.removeMaterialState$1(B.MaterialState_6); t1 = _this.MaterialStateMixin_materialStates; if (t1.contains$1(0, B.MaterialState_6) && t1.contains$1(0, B.MaterialState_2)) _this.removeMaterialState$1(B.MaterialState_2); }, build$1(_, context) { var resolvedBackgroundColor, resolvedForegroundColor, resolvedShadowColor, resolvedSurfaceTintColor, resolvedPadding, resolvedMinimumSize, resolvedFixedSize, resolvedMaximumSize, resolvedSide, resolvedShape, resolvedVisualDensity, resolvedTapTargetSize, resolvedAnimationDuration, resolvedEnableFeedback, resolvedAlignment, densityAdjustment, resolvedSplashFactory, t2, effectiveConstraints, size, dy, dx, padding, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, minSize, _this = this, _null = null, t1 = _this._widget, effectiveValue = new A._ButtonStyleState_build_effectiveValue(t1.style, t1.themeStyleOf$1(context), _this._widget.defaultStyleOf$1(context)), resolve = new A._ButtonStyleState_build_resolve(_this, effectiveValue), resolvedElevation = resolve.call$1$1(new A._ButtonStyleState_build_closure(), type$.nullable_double), resolvedTextStyle = resolve.call$1$1(new A._ButtonStyleState_build_closure0(), type$.nullable_TextStyle); t1 = type$.nullable_Color; resolvedBackgroundColor = resolve.call$1$1(new A._ButtonStyleState_build_closure1(), t1); resolvedForegroundColor = resolve.call$1$1(new A._ButtonStyleState_build_closure2(), t1); resolvedShadowColor = resolve.call$1$1(new A._ButtonStyleState_build_closure3(), t1); resolvedSurfaceTintColor = resolve.call$1$1(new A._ButtonStyleState_build_closure4(), t1); resolvedPadding = resolve.call$1$1(new A._ButtonStyleState_build_closure5(), type$.nullable_EdgeInsetsGeometry); t1 = type$.nullable_Size; resolvedMinimumSize = resolve.call$1$1(new A._ButtonStyleState_build_closure6(), t1); resolvedFixedSize = resolve.call$1$1(new A._ButtonStyleState_build_closure7(), t1); resolvedMaximumSize = resolve.call$1$1(new A._ButtonStyleState_build_closure8(), t1); resolvedSide = resolve.call$1$1(new A._ButtonStyleState_build_closure9(), type$.nullable_BorderSide); resolvedShape = resolve.call$1$1(new A._ButtonStyleState_build_closure10(), type$.nullable_OutlinedBorder); resolvedVisualDensity = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure11(), type$.VisualDensity); resolvedTapTargetSize = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure12(), type$.MaterialTapTargetSize); resolvedAnimationDuration = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure13(), type$.Duration); resolvedEnableFeedback = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure14(), type$.bool); resolvedAlignment = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure15(), type$.AlignmentGeometry); densityAdjustment = new A.Offset(resolvedVisualDensity.horizontal, resolvedVisualDensity.vertical).$mul(0, 4); resolvedSplashFactory = effectiveValue.call$1$1(new A._ButtonStyleState_build_closure16(), type$.InteractiveInkFeatureFactory); t1 = resolvedMinimumSize._dx; t2 = resolvedMinimumSize._dy; effectiveConstraints = resolvedVisualDensity.effectiveConstraints$1(new A.BoxConstraints(t1, resolvedMaximumSize._dx, t2, resolvedMaximumSize._dy)); if (resolvedFixedSize != null) { size = effectiveConstraints.constrain$1(resolvedFixedSize); t1 = size._dx; t1.toString; if (isFinite(t1)) effectiveConstraints = effectiveConstraints.copyWith$2$maxWidth$minWidth(t1, t1); t1 = size._dy; t1.toString; if (isFinite(t1)) effectiveConstraints = effectiveConstraints.copyWith$2$maxHeight$minHeight(t1, t1); } dy = densityAdjustment._dy; t1 = densityAdjustment._dx; dx = Math.max(0, A.checkNum(t1)); padding = resolvedPadding.add$1(0, new A.EdgeInsets(dx, dy, dx, dy)).clamp$2(0, B.EdgeInsets_0_0_0_0, B._MixedEdgeInsets_QWq); if (resolvedAnimationDuration._duration > 0) { t2 = _this._button_style_button$_elevation; if (t2 != null) { t3 = _this._backgroundColor; if (t3 != null) if (t2 !== resolvedElevation) if (t3.get$value(t3) !== resolvedBackgroundColor.get$value(resolvedBackgroundColor)) { t2 = _this._backgroundColor; t2 = (t2.get$value(t2) >>> 24 & 255) / 255 === 1 && (resolvedBackgroundColor.get$value(resolvedBackgroundColor) >>> 24 & 255) / 255 < 1 && resolvedElevation === 0; } else t2 = false; else t2 = false; else t2 = false; } else t2 = false; } else t2 = false; if (t2) { t2 = _this._button_style_button$_controller; if (!J.$eq$(t2 == null ? _null : t2.duration, resolvedAnimationDuration)) { t2 = _this._button_style_button$_controller; if (t2 != null) t2.dispose$0(0); t2 = A.AnimationController$(_null, resolvedAnimationDuration, _null, 1, _null, _this); t2.addStatusListener$1(new A._ButtonStyleState_build_closure17(_this)); _this._button_style_button$_controller = t2; } resolvedBackgroundColor = _this._backgroundColor; _this._button_style_button$_controller.set$value(0, 0); _this._button_style_button$_controller.forward$0(0); } _this._button_style_button$_elevation = resolvedElevation; _this._backgroundColor = resolvedBackgroundColor; resolvedElevation.toString; t2 = resolvedTextStyle == null ? _null : resolvedTextStyle.copyWith$1$color(resolvedForegroundColor); t3 = resolvedShape.copyWith$1$side(resolvedSide); t4 = resolvedBackgroundColor == null ? B.MaterialType_4 : B.MaterialType_3; t5 = _this._widget; t6 = t5.clipBehavior; t7 = t5.onPressed; t5 = t5.onLongPress; t8 = _this.updateMaterialState$1(B.MaterialState_2); t9 = _this.updateMaterialState$2$onChanged(B.MaterialState_0, _this._widget.onHover); t10 = _this._widget; t11 = t10.focusNode; t12 = t10.onPressed != null || t10.onLongPress != null; t10 = _this.updateMaterialState$2$onChanged(B.MaterialState_1, t10.onFocusChange); t13 = _this._widget; t14 = t13.autofocus; resolvedAlignment.toString; t4 = A.Material$(resolvedAnimationDuration, true, _null, A.InkWell$(t14, _null, t12, A.IconTheme_merge(new A.Padding(padding, new A.Align(resolvedAlignment, 1, 1, t13.child, _null), _null), new A.IconThemeData(resolvedForegroundColor, _null, _null, _null)), resolvedShape, resolvedEnableFeedback, _null, t11, B.Color_0, _null, _null, new A._MouseCursor(new A._ButtonStyleState_build_closure18(effectiveValue)), _null, t10, t8, t9, t5, t7, _null, _null, new A._MaterialStatePropertyWith(new A._ButtonStyleState_build_closure19(effectiveValue), type$._MaterialStatePropertyWith_nullable_Color), _null, _null, resolvedSplashFactory), t6, resolvedBackgroundColor, resolvedElevation, _null, resolvedShadowColor, t3, resolvedSurfaceTintColor, t2, t4); switch (resolvedTapTargetSize.index) { case 0: minSize = new A.Size(48 + t1, 48 + dy); break; case 1: minSize = B.Size_0_0; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = t13.onPressed != null || t13.onLongPress != null; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A._InputPadding0(minSize, new A.ConstrainedBox(effectiveConstraints, t4, _null), _null), _null); } }; A._ButtonStyleState_build_effectiveValue.prototype = { call$1$1(getProperty, $T) { var widgetValue = getProperty.call$1(this.widgetStyle), themeValue = getProperty.call$1(this.themeStyle), defaultValue = getProperty.call$1(this.defaultStyle), t1 = widgetValue == null ? themeValue : widgetValue; return t1 == null ? defaultValue : t1; }, call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, $signature: 2438 }; A._ButtonStyleState_build_resolve.prototype = { call$1$1(getProperty, $T) { return this.effectiveValue.call$1$1(new A._ButtonStyleState_build_resolve_closure(this.$this, getProperty, $T), $T); }, call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, $signature: 2429 }; A._ButtonStyleState_build_resolve_closure.prototype = { call$1(style) { var t1 = this.getProperty.call$1(style); return t1 == null ? null : J.resolve$1$z(t1, this.$this.MaterialStateMixin_materialStates); }, $signature() { return this.T._eval$1("0?(ButtonStyle?)"); } }; A._ButtonStyleState_build_closure.prototype = { call$1(style) { return style == null ? null : style.get$elevation(style); }, $signature: 2428 }; A._ButtonStyleState_build_closure0.prototype = { call$1(style) { return style == null ? null : style.get$textStyle(style); }, $signature: 2427 }; A._ButtonStyleState_build_closure1.prototype = { call$1(style) { return style == null ? null : style.get$backgroundColor(style); }, $signature: 360 }; A._ButtonStyleState_build_closure2.prototype = { call$1(style) { return style == null ? null : style.get$foregroundColor(style); }, $signature: 360 }; A._ButtonStyleState_build_closure3.prototype = { call$1(style) { return style == null ? null : style.get$shadowColor(style); }, $signature: 360 }; A._ButtonStyleState_build_closure4.prototype = { call$1(style) { return style == null ? null : style.get$surfaceTintColor(); }, $signature: 360 }; A._ButtonStyleState_build_closure5.prototype = { call$1(style) { return style == null ? null : style.get$padding(style); }, $signature: 2426 }; A._ButtonStyleState_build_closure6.prototype = { call$1(style) { return style == null ? null : style.get$minimumSize(); }, $signature: 458 }; A._ButtonStyleState_build_closure7.prototype = { call$1(style) { return style == null ? null : style.fixedSize; }, $signature: 458 }; A._ButtonStyleState_build_closure8.prototype = { call$1(style) { return style == null ? null : style.get$maximumSize(); }, $signature: 458 }; A._ButtonStyleState_build_closure9.prototype = { call$1(style) { return style == null ? null : style.get$side(); }, $signature: 2414 }; A._ButtonStyleState_build_closure10.prototype = { call$1(style) { return style == null ? null : style.get$shape(style); }, $signature: 2413 }; A._ButtonStyleState_build_closure18.prototype = { call$1(states) { return this.effectiveValue.call$1$1(new A._ButtonStyleState_build__closure0(states), type$.MouseCursor); }, $signature: 2412 }; A._ButtonStyleState_build__closure0.prototype = { call$1(style) { var t1; if (style == null) t1 = null; else { t1 = style.get$mouseCursor(); t1 = t1 == null ? null : t1.resolve$1(0, this.states); } return t1; }, $signature: 2411 }; A._ButtonStyleState_build_closure19.prototype = { call$1(states) { return this.effectiveValue.call$1$1(new A._ButtonStyleState_build__closure(states), type$.Color); }, $signature: 224 }; A._ButtonStyleState_build__closure.prototype = { call$1(style) { var t1; if (style == null) t1 = null; else { t1 = style.get$overlayColor(); t1 = t1 == null ? null : t1.resolve$1(0, this.states); } return t1; }, $signature: 2409 }; A._ButtonStyleState_build_closure11.prototype = { call$1(style) { return style == null ? null : style.get$visualDensity(); }, $signature: 2383 }; A._ButtonStyleState_build_closure12.prototype = { call$1(style) { return style == null ? null : style.get$tapTargetSize(); }, $signature: 2379 }; A._ButtonStyleState_build_closure13.prototype = { call$1(style) { return style == null ? null : style.animationDuration; }, $signature: 2378 }; A._ButtonStyleState_build_closure14.prototype = { call$1(style) { return style == null ? null : style.enableFeedback; }, $signature: 2377 }; A._ButtonStyleState_build_closure15.prototype = { call$1(style) { return style == null ? null : style.alignment; }, $signature: 2372 }; A._ButtonStyleState_build_closure16.prototype = { call$1(style) { return style == null ? null : style.get$splashFactory(); }, $signature: 2364 }; A._ButtonStyleState_build_closure17.prototype = { call$1($status) { if ($status === B.AnimationStatus_3) this.$this.setState$1(new A._ButtonStyleState_build__closure1()); }, $signature: 42 }; A._ButtonStyleState_build__closure1.prototype = { call$0() { }, $signature: 0 }; A._MouseCursor.prototype = { resolve$1(_, states) { var t1 = this.resolveCallback.call$1(states); t1.toString; return t1; }, get$debugDescription() { return "ButtonStyleButton_MouseCursor"; } }; A._InputPadding0.prototype = { createRenderObject$1(context) { var t1 = new A._RenderInputPadding0(this.minSize, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$minSize(this.minSize); } }; A._RenderInputPadding0.prototype = { set$minSize(value) { if (this._button_style_button$_minSize.$eq(0, value)) return; this._button_style_button$_minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._button_style_button$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._button_style_button$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._button_style_button$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._button_style_button$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, _button_style_button$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._button_style_button$_minSize; return constraints.constrain$1(new A.Size(Math.max(A.checkNum(t1), A.checkNum(t2._dx)), Math.max(A.checkNum(childSize._dy), A.checkNum(t2._dy)))); } return B.Size_0_0; }, computeDryLayout$1(constraints) { return this._button_style_button$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { var t2, t3, _this = this, t1 = _this._button_style_button$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = B.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position(result, position) { var center; if (this.super$RenderBox$hitTest(result, position)) return true; center = this.RenderObjectWithChildMixin__child._box$_size.center$1(B.Offset_0_0); return result.addWithRawTransform$3$hitTest$position$transform(new A._RenderInputPadding_hitTest_closure0(this, center), center, A.MatrixUtils_forceToPoint(center)); } }; A._RenderInputPadding_hitTest_closure0.prototype = { call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, $signature: 73 }; A.__ButtonStyleState_State_MaterialStateMixin.prototype = {}; A.__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.ButtonTextTheme.prototype = { toString$0(_) { return "ButtonTextTheme." + this._core$_name; } }; A.ButtonBarLayoutBehavior.prototype = { toString$0(_) { return "ButtonBarLayoutBehavior." + this._core$_name; } }; A.ButtonTheme.prototype = { wrap$2(_, context, child) { return A.ButtonTheme$fromButtonThemeData(child, this.data); }, updateShouldNotify$1(oldWidget) { return !this.data.$eq(0, oldWidget.data); } }; A.ButtonThemeData.prototype = { get$padding(_) { var t1 = this._padding; if (t1 != null) return t1; switch (this.textTheme.index) { case 0: case 1: return B.EdgeInsets_16_0_16_0; case 2: return B.EdgeInsets_24_0_24_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$shape(_) { var t1 = this._shape; if (t1 != null) return t1; switch (this.textTheme.index) { case 0: case 1: return B.RoundedRectangleBorder_LkV; case 2: return B.RoundedRectangleBorder_LkV0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, copyWith$7$alignedDropdown$colorScheme$height$layoutBehavior$minWidth$padding$textTheme(alignedDropdown, colorScheme, height, layoutBehavior, minWidth, padding, textTheme) { var _this = this, t1 = textTheme == null ? _this.textTheme : textTheme, t2 = layoutBehavior == null ? _this.layoutBehavior : layoutBehavior, t3 = minWidth == null ? _this.minWidth : minWidth, t4 = height == null ? _this.height : height, t5 = padding == null ? _this.get$padding(_this) : padding, t6 = _this.get$shape(_this), t7 = colorScheme == null ? _this.colorScheme : colorScheme; return A.ButtonThemeData$(alignedDropdown === true, _this._buttonColor, t7, _this._disabledColor, _this._focusColor, t4, _this._button_theme$_highlightColor, _this._hoverColor, t2, _this._materialTapTargetSize, t3, t5, t6, _this._splashColor, t1); }, copyWith$1$colorScheme(colorScheme) { return this.copyWith$7$alignedDropdown$colorScheme$height$layoutBehavior$minWidth$padding$textTheme(null, colorScheme, null, null, null, null, null); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.ButtonThemeData) if (other.textTheme === _this.textTheme) if (other.minWidth === _this.minWidth) if (other.height === _this.height) if (J.$eq$(other.get$padding(other), _this.get$padding(_this))) if (J.$eq$(other.get$shape(other), _this.get$shape(_this))) if (J.$eq$(other._buttonColor, _this._buttonColor)) if (J.$eq$(other._focusColor, _this._focusColor)) if (J.$eq$(other._hoverColor, _this._hoverColor)) t1 = J.$eq$(other.colorScheme, _this.colorScheme) && other._materialTapTargetSize == _this._materialTapTargetSize; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.textTheme, _this.minWidth, _this.height, _this.get$padding(_this), _this.get$shape(_this), false, _this._buttonColor, _this._disabledColor, _this._focusColor, _this._hoverColor, _this._button_theme$_highlightColor, _this._splashColor, _this.colorScheme, _this._materialTapTargetSize, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._ButtonThemeData_Object_Diagnosticable.prototype = {}; A.CalendarDatePicker.prototype = { createState$0() { var t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new A._CalendarDatePickerState(new A.LabeledGlobalKey(null, t1), new A.LabeledGlobalKey(null, t1), B._StateLifecycle_0); }, onDateChanged$1(arg0) { return this.onDateChanged.call$1(arg0); } }; A._CalendarDatePickerState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; _this.___CalendarDatePickerState__mode = t1.initialCalendarMode; t1 = t1.initialDate; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t1), A.Primitives_getMonth(t1), 1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); _this.___CalendarDatePickerState__currentDisplayedMonthDate = new A.DateTime(t1, false); _this.___CalendarDatePickerState__selectedDate = _this._widget.initialDate; }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t2 = t1.initialCalendarMode; if (t2 !== oldWidget.initialCalendarMode) _this.___CalendarDatePickerState__mode = t2; t1 = t1.initialDate; if (!A.DateUtils_isSameDay(t1, oldWidget.initialDate)) { t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t1), A.Primitives_getMonth(t1), 1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); _this.___CalendarDatePickerState__currentDisplayedMonthDate = new A.DateTime(t1, false); _this.___CalendarDatePickerState__selectedDate = _this._widget.initialDate; } }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___CalendarDatePickerState__localizations = t1; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this.___CalendarDatePickerState__textDirection = t1.textDirection; if (!_this._announcedInitialDate) { _this._announcedInitialDate = true; A.SemanticsService_announce(A._lateReadCheck(_this.___CalendarDatePickerState__localizations, "_localizations").formatFullDate$1(A._lateReadCheck(_this.___CalendarDatePickerState__selectedDate, "_selectedDate")), A._lateReadCheck(_this.___CalendarDatePickerState__textDirection, "_textDirection")); } }, _vibrate$0() { var t1 = this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: A.HapticFeedback_vibrate(); break; case B.TargetPlatform_2: case B.TargetPlatform_4: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _handleModeChanged$1(mode) { this._vibrate$0(); this.setState$1(new A._CalendarDatePickerState__handleModeChanged_closure(this, mode)); }, _handleMonthChanged$1(date) { this.setState$1(new A._CalendarDatePickerState__handleMonthChanged_closure(this, date)); }, _handleYearChanged$1(value) { var t2, t3, t4, _this = this, t1 = {}; t1.value = value; _this._vibrate$0(); t2 = _this._widget; t3 = t2.firstDate; t4 = value._value; if (t4 < t3._value) t1.value = t3; else { t2 = t2.lastDate; if (t4 > t2._value) t1.value = t2; } _this.setState$1(new A._CalendarDatePickerState__handleYearChanged_closure(t1, _this)); }, _handleDayChanged$1(value) { this._vibrate$0(); this.setState$1(new A._CalendarDatePickerState__handleDayChanged_closure(this, value)); }, _buildPicker$0() { var t1, t2, t3, t4, t5, _this = this, _s26_ = "_currentDisplayedMonthDate", _s13_ = "_selectedDate"; switch (A._lateReadCheck(_this.___CalendarDatePickerState__mode, "_mode")) { case B.DatePickerMode_0: t1 = A._lateReadCheck(_this.___CalendarDatePickerState__currentDisplayedMonthDate, _s26_); t2 = _this._widget; return new A._MonthPicker(t1, t2.currentDate, t2.firstDate, t2.lastDate, A._lateReadCheck(_this.___CalendarDatePickerState__selectedDate, _s13_), _this.get$_handleDayChanged(), _this.get$_handleMonthChanged(), _this._widget.selectableDayPredicate, _this._monthPickerKey); case B.DatePickerMode_1: t1 = _this._widget; t2 = t1.currentDate; t3 = t1.firstDate; t1 = t1.lastDate; t4 = A._lateReadCheck(_this.___CalendarDatePickerState__currentDisplayedMonthDate, _s26_); t5 = A._lateReadCheck(_this.___CalendarDatePickerState__selectedDate, _s13_); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t2), A.Primitives_getDay(t2), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); if (t4 == null) t4 = t5; t4.toString; t4 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t4), A.Primitives_getMonth(t4), A.Primitives_getDay(t4), 0, 0, 0, 0, false); if (!A._isInt(t4)) A.throwExpression(A.argumentErrorValue(t4)); return new A.Padding(B.EdgeInsets_0_52_0_0, new A.YearPicker(new A.DateTime(t2, false), t3, t1, new A.DateTime(t4, false), t5, _this.get$_handleYearChanged(), _this._yearPickerKey), null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var _this = this, _null = null; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([new A.SizedBox(_null, 346, _this._buildPicker$0(), _null), new A._DatePickerModeToggleButton(A._lateReadCheck(_this.___CalendarDatePickerState__mode, "_mode"), A._lateReadCheck(_this.___CalendarDatePickerState__localizations, "_localizations").formatMonthYear$1(A._lateReadCheck(_this.___CalendarDatePickerState__currentDisplayedMonthDate, "_currentDisplayedMonthDate")), new A._CalendarDatePickerState_build_closure(_this), _null)], type$.JSArray_Widget), _null); } }; A._CalendarDatePickerState__handleModeChanged_closure.prototype = { call$0() { var t3, _s14_ = "_localizations", _s13_ = "_selectedDate", _s14_0 = "_textDirection", t1 = this.$this, t2 = this.mode; t1.___CalendarDatePickerState__mode = t2; t2 = A._lateReadCheck(t2, "_mode"); t3 = t1.___CalendarDatePickerState__localizations; if (t2 === B.DatePickerMode_0) A.SemanticsService_announce(A._lateReadCheck(t3, _s14_).formatMonthYear$1(A._lateReadCheck(t1.___CalendarDatePickerState__selectedDate, _s13_)), A._lateReadCheck(t1.___CalendarDatePickerState__textDirection, _s14_0)); else A.SemanticsService_announce(A._lateReadCheck(t3, _s14_).formatYear$1(A._lateReadCheck(t1.___CalendarDatePickerState__selectedDate, _s13_)), A._lateReadCheck(t1.___CalendarDatePickerState__textDirection, _s14_0)); }, $signature: 0 }; A._CalendarDatePickerState__handleMonthChanged_closure.prototype = { call$0() { var _s26_ = "_currentDisplayedMonthDate", t1 = this.$this, t2 = A._lateReadCheck(t1.___CalendarDatePickerState__currentDisplayedMonthDate, _s26_), t3 = this.date; t3.toString; if (A.Primitives_getYear(t2) !== A.Primitives_getYear(t3) || A.Primitives_getMonth(A._lateReadCheck(t1.___CalendarDatePickerState__currentDisplayedMonthDate, _s26_)) !== A.Primitives_getMonth(t3)) { t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t3), A.Primitives_getMonth(t3), 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t1.___CalendarDatePickerState__currentDisplayedMonthDate = new A.DateTime(t2, false); t1._widget.toString; } }, $signature: 0 }; A._CalendarDatePickerState__handleYearChanged_closure.prototype = { call$0() { var t1 = this.$this; t1.___CalendarDatePickerState__mode = B.DatePickerMode_0; t1._handleMonthChanged$1(this._box_0.value); }, $signature: 0 }; A._CalendarDatePickerState__handleDayChanged_closure.prototype = { call$0() { var t1 = this.$this, t2 = this.value; t1.___CalendarDatePickerState__selectedDate = t2; t1 = t1._widget; t1.toString; t1.onDateChanged$1(A._lateReadCheck(t2, "_selectedDate")); }, $signature: 0 }; A._CalendarDatePickerState_build_closure.prototype = { call$0() { var t1 = this.$this; t1._handleModeChanged$1(A._lateReadCheck(t1.___CalendarDatePickerState__mode, "_mode") === B.DatePickerMode_0 ? B.DatePickerMode_1 : B.DatePickerMode_0); }, $signature: 0 }; A._DatePickerModeToggleButton.prototype = { createState$0() { return new A._DatePickerModeToggleButtonState(null, null, B._StateLifecycle_0); } }; A._DatePickerModeToggleButtonState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this.___DatePickerModeToggleButtonState__controller = A.AnimationController$(null, B.Duration_200000, null, 0.5, _this._widget.mode === B.DatePickerMode_1 ? 0.5 : 0, _this); }, didUpdateWidget$1(oldWidget) { var t1, t2, _s11_ = "_controller"; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.mode; t2 = this._widget.mode; if (t1 === t2) return; t1 = this.___DatePickerModeToggleButtonState__controller; if (t2 === B.DatePickerMode_1) A._lateReadCheck(t1, _s11_).forward$0(0); else A._lateReadCheck(t1, _s11_).reverse$0(0); }, build$1(_, context) { var t2, t3, t4, t5, _null = null, colorScheme = A.Theme_of(context).colorScheme, textTheme = A.Theme_of(context).textTheme, t1 = colorScheme.onSurface.value, controlColor = A.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$selectYearSemanticsLabel(); t2 = this._widget; t3 = t2.onTitlePressed; t2 = t2.title; t4 = textTheme.titleSmall; t2 = A.Text$(t2, _null, _null, B.TextOverflow_2, _null, _null, t4 == null ? _null : t4.copyWith$1$color(controlColor), _null, _null, _null); t4 = A._lateReadCheck(this.___DatePickerModeToggleButtonState__controller, "_controller"); t5 = type$.JSArray_Widget; t3 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, t2, _null), A.RotationTransition$(B.Alignment_0_0, A.Icon$(B.IconData_57496_MaterialIcons_null_false, controlColor, _null), t4)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null); t1 = A._setArrayType([new A.Flexible(1, B.FlexFit_1, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, true, new A.SizedBox(_null, 52, t3, _null), _null), _null)], t5); if (this._widget.mode === B.DatePickerMode_0) t1.push(B.SizedBox_108_null_null_null); return A.Container$(_null, A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, 52, _null, _null, B.EdgeInsetsDirectional_16_0_4_0, _null, _null, _null); }, dispose$0(_) { A._lateReadCheck(this.___DatePickerModeToggleButtonState__controller, "_controller").dispose$0(0); this.super$__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin$dispose(0); } }; A._MonthPicker.prototype = { createState$0() { return new A._MonthPickerState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, onDisplayedMonthChanged$1(arg0) { return this.onDisplayedMonthChanged.call$1(arg0); } }; A._MonthPickerState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.initialMonth; _this.___MonthPickerState__currentMonth = t2; _this.___MonthPickerState__pageController = A.PageController$(A.DateUtils_monthDelta(t1.firstDate, A._lateReadCheck(t2, "_currentMonth")), 1); _this._shortcutMap = B.Map_FLUW6; t2 = type$.JSArray_of_void_Function_Action_Intent; t1 = type$.ObserverList_of_void_Function_Action_Intent; _this._actionMap = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_NextFocusIntent_6xB, new A.CallbackAction(_this.get$_handleGridNextFocus(), new A.ObserverList(A._setArrayType([], t2), t1), type$.CallbackAction_NextFocusIntent), B.Type_PreviousFocusIntent_wsa, new A.CallbackAction(_this.get$_handleGridPreviousFocus(), new A.ObserverList(A._setArrayType([], t2), t1), type$.CallbackAction_PreviousFocusIntent), B.Type_DirectionalFocusIntent_evN, new A.CallbackAction(_this.get$_handleDirectionFocus(), new A.ObserverList(A._setArrayType([], t2), t1), type$.CallbackAction_DirectionalFocusIntent)], type$.Type, type$.Action_Intent); _this.___MonthPickerState__dayGridFocus = A.FocusNode$(true, "Day Grid", true, true, null, null, false); }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___MonthPickerState__localizations = t1; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this.___MonthPickerState__textDirection = t1.textDirection; }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!_this._widget.initialMonth.$eq(0, oldWidget.initialMonth) && !_this._widget.initialMonth.$eq(0, A._lateReadCheck(_this.___MonthPickerState__currentMonth, "_currentMonth"))) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._MonthPickerState_didUpdateWidget_closure(_this)); }, dispose$0(_) { A._lateReadCheck(this.___MonthPickerState__pageController, "_pageController").dispose$0(0); A._lateReadCheck(this.___MonthPickerState__dayGridFocus, "_dayGridFocus").dispose$0(0); this.super$State$dispose(0); }, _handleDateSelected$1(selectedDate) { this._focusedDay = selectedDate; this._widget.onChanged$1(selectedDate); }, _handleMonthPageChanged$1(monthPage) { this.setState$1(new A._MonthPickerState__handleMonthPageChanged_closure(this, monthPage)); }, _focusableDayForMonth$2(month, preferredDay) { var t1, newFocus, daysInMonth = A.DateUtils_getDaysInMonth(A.Primitives_getYear(month), A.Primitives_getMonth(month)); if (preferredDay <= daysInMonth) { t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(month), A.Primitives_getMonth(month), preferredDay, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); newFocus = new A.DateTime(t1, false); if (this._isSelectable$1(newFocus)) return newFocus; } for (; 1 <= daysInMonth;) { t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(month), A.Primitives_getMonth(month), 1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); newFocus = new A.DateTime(t1, false); this._widget.toString; return newFocus; } return null; }, _handleNextMonth$0() { var t1, position, t2; if (!this.get$_isDisplayingLastMonth()) { t1 = A._lateReadCheck(this.___MonthPickerState__pageController, "_pageController"); position = type$._PagePosition._as(B.JSArray_methods.get$single(t1._positions)); t2 = position.get$page(position); t2.toString; t1.animateToPage$3$curve$duration(B.JSNumber_methods.round$0(t2) + 1, B.Cubic_JUR, B.Duration_200000); } }, _handlePreviousMonth$0() { var t1, position, t2; if (!this.get$_isDisplayingFirstMonth()) { t1 = A._lateReadCheck(this.___MonthPickerState__pageController, "_pageController"); position = type$._PagePosition._as(B.JSArray_methods.get$single(t1._positions)); t2 = position.get$page(position); t2.toString; t1.animateToPage$3$curve$duration(B.JSNumber_methods.round$0(t2) - 1, B.Cubic_JUR, B.Duration_200000); } }, _showMonth$2$jump(month, jump) { var _s15_ = "_pageController", monthPage = A.DateUtils_monthDelta(this._widget.firstDate, month), t1 = this.___MonthPickerState__pageController; if (jump) A._lateReadCheck(t1, _s15_).jumpToPage$1(monthPage); else A._lateReadCheck(t1, _s15_).animateToPage$3$curve$duration(monthPage, B.Cubic_JUR, B.Duration_200000); }, _showMonth$1(month) { return this._showMonth$2$jump(month, false); }, get$_isDisplayingFirstMonth() { var t1 = A._lateReadCheck(this.___MonthPickerState__currentMonth, "_currentMonth"), t2 = this._widget.firstDate; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); return !(t1._value > t2); }, get$_isDisplayingLastMonth() { var t1 = A._lateReadCheck(this.___MonthPickerState__currentMonth, "_currentMonth"), t2 = this._widget.lastDate; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); return !(t1._value < t2); }, _handleGridFocusChange$1(focused) { this.setState$1(new A._MonthPickerState__handleGridFocusChange_closure(this, focused)); }, _handleGridNextFocus$1(intent) { var t1, _s13_ = "_dayGridFocus"; A._lateReadCheck(this.___MonthPickerState__dayGridFocus, _s13_).requestFocus$0(); t1 = A._lateReadCheck(this.___MonthPickerState__dayGridFocus, _s13_); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); }, _handleGridPreviousFocus$1(intent) { var t1, _s13_ = "_dayGridFocus"; A._lateReadCheck(this.___MonthPickerState__dayGridFocus, _s13_).requestFocus$0(); t1 = A._lateReadCheck(this.___MonthPickerState__dayGridFocus, _s13_); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); }, _handleDirectionFocus$1(intent) { this.setState$1(new A._MonthPickerState__handleDirectionFocus_closure(this, intent)); }, _dayDirectionOffset$2(traversalDirection, textDirection) { var t1; if (textDirection === B.TextDirection_0) if (traversalDirection === B.TraversalDirection_3) traversalDirection = B.TraversalDirection_1; else if (traversalDirection === B.TraversalDirection_1) traversalDirection = B.TraversalDirection_3; t1 = B.Map_fHJmU.$index(0, traversalDirection); t1.toString; return t1; }, _nextDateInDirection$2(date, direction) { var textDirection, nextDate, t2, t3, t4, t5, t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; t1 = this._dayDirectionOffset$2(direction, textDirection); date.toString; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date), A.Primitives_getMonth(date), A.Primitives_getDay(date) + t1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); nextDate = new A.DateTime(t1, false); t1 = textDirection === B.TextDirection_0; t2 = direction === B.TraversalDirection_3; t3 = this._widget; t4 = nextDate._value; t5 = t4 >= t3.firstDate._value; t3 = t4 <= t3.lastDate._value; while (true) { if (!(t5 && t3)) break; return nextDate; } return null; }, _isSelectable$1(date) { this._widget.toString; return true; }, _buildItems$2(context, index) { var month, t1 = this._widget.firstDate; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t1), A.Primitives_getMonth(t1) + index, 1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); month = new A.DateTime(t1, false); t1 = this._widget; return new A._DayPicker(t1.selectedDate, t1.currentDate, this.get$_handleDateSelected(), t1.firstDate, t1.lastDate, month, t1.selectableDayPredicate, new A.ValueKey(month, type$.ValueKey_DateTime)); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, _s14_ = "_localizations", _s13_ = "_dayGridFocus", t1 = A.Theme_of(context).colorScheme.onSurface.value, controlColor = A.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); t1 = _this.get$_isDisplayingFirstMonth() ? _null : A._lateReadCheck(_this.___MonthPickerState__localizations, _s14_).get$previousMonthTooltip(); t1 = A.IconButton$(B.Alignment_0_0, controlColor, _null, true, B.Icon_cKo, _null, _this.get$_isDisplayingFirstMonth() ? _null : _this.get$_handlePreviousMonth(), B.EdgeInsets_8_8_8_8, _null, t1, _null); t2 = _this.get$_isDisplayingLastMonth() ? _null : A._lateReadCheck(_this.___MonthPickerState__localizations, _s14_).get$nextMonthTooltip(); t3 = type$.JSArray_Widget; t2 = A.Container$(_null, A.Row$(A._setArrayType([B.Spacer_null, t1, A.IconButton$(B.Alignment_0_0, controlColor, _null, true, B.Icon_wEo, _null, _this.get$_isDisplayingLastMonth() ? _null : _this.get$_handleNextMonth(), B.EdgeInsets_8_8_8_8, _null, t2, _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, 52, _null, _null, B.EdgeInsetsDirectional_16_0_4_0, _null, _null, _null); t1 = _this._shortcutMap; t4 = _this._actionMap; t5 = A._lateReadCheck(_this.___MonthPickerState__dayGridFocus, _s13_); t6 = A._lateReadCheck(_this.___MonthPickerState__dayGridFocus, _s13_).get$hasFocus() ? _this._focusedDay : _null; t7 = A._lateReadCheck(_this.___MonthPickerState__pageController, "_pageController"); t8 = _this._widget; t8 = A.DateUtils_monthDelta(t8.firstDate, t8.lastDate); if (t7 == null) t7 = $.$get$_defaultPageController(); t3 = A.Column$(A._setArrayType([t2, A.Expanded$(A.FocusableActionDetector$(t4, false, new A._FocusedDate(t6, new A.PageView(t7, _null, _this.get$_handleMonthPageChanged(), new A.SliverChildBuilderDelegate(_this.get$_buildItems(), t8 + 1, true, true, true, A.sliver___kDefaultSemanticIndexCallback$closure(), _null), B.DragStartBehavior_1, _this._pageViewKey), _null), true, t5, B.C__DeferringMouseCursor, _this.get$_handleGridFocusChange(), _null, _null, t1), 1)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t3, _null); } }; A._MonthPickerState_didUpdateWidget_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; return t1._showMonth$2$jump(t1._widget.initialMonth, true); }, $signature: 22 }; A._MonthPickerState__handleMonthPageChanged_closure.prototype = { call$0() { var monthDate, t3, _s13_ = "_currentMonth", t1 = this.$this, t2 = t1._widget.firstDate; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t2) + this.monthPage, 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); monthDate = new A.DateTime(t2, false); if (!A.DateUtils_isSameMonth(A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_), monthDate)) { t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(monthDate), A.Primitives_getMonth(monthDate), 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t2 = new A.DateTime(t2, false); t1.___MonthPickerState__currentMonth = t2; t3 = t1._widget; t3.toString; t3.onDisplayedMonthChanged$1(A._lateReadCheck(t2, _s13_)); t2 = t1._focusedDay; if (t2 != null && !A.DateUtils_isSameMonth(t2, A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_))) { t2 = A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_); t3 = t1._focusedDay; t3.toString; t1._focusedDay = t1._focusableDayForMonth$2(t2, A.Primitives_getDay(t3)); } A.SemanticsService_announce(A._lateReadCheck(t1.___MonthPickerState__localizations, "_localizations").formatMonthYear$1(A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_)), A._lateReadCheck(t1.___MonthPickerState__textDirection, "_textDirection")); } }, $signature: 0 }; A._MonthPickerState__handleGridFocusChange_closure.prototype = { call$0() { var t1, t2, t3, _s13_ = "_currentMonth"; if (this.focused && this.$this._focusedDay == null) { t1 = this.$this; if (A.DateUtils_isSameMonth(t1._widget.selectedDate, A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_))) t1._focusedDay = t1._widget.selectedDate; else { t2 = A.DateUtils_isSameMonth(t1._widget.currentDate, A._lateReadCheck(t1.___MonthPickerState__currentMonth, _s13_)); t3 = t1.___MonthPickerState__currentMonth; if (t2) t1._focusedDay = t1._focusableDayForMonth$2(A._lateReadCheck(t3, _s13_), A.Primitives_getDay(t1._widget.currentDate)); else t1._focusedDay = t1._focusableDayForMonth$2(A._lateReadCheck(t3, _s13_), 1); } } }, $signature: 0 }; A._MonthPickerState__handleDirectionFocus_closure.prototype = { call$0() { var nextDate, t1 = this.$this, t2 = t1._focusedDay; t2.toString; nextDate = t1._nextDateInDirection$2(t2, this.intent.direction); if (nextDate != null) { t1._focusedDay = nextDate; if (!A.DateUtils_isSameMonth(nextDate, A._lateReadCheck(t1.___MonthPickerState__currentMonth, "_currentMonth"))) { t2 = t1._focusedDay; t2.toString; t1._showMonth$1(t2); } } }, $signature: 0 }; A._FocusedDate.prototype = { updateShouldNotify$1(oldWidget) { return !A.DateUtils_isSameDay(this.date, oldWidget.date); }, get$date() { return this.date; } }; A._DayPicker.prototype = { createState$0() { return new A._DayPickerState(B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); } }; A._DayPickerState.prototype = { initState$0() { var t1, daysInMonth, _list, index, index0; this.super$State$initState(); t1 = this._widget.displayedMonth; daysInMonth = A.DateUtils_getDaysInMonth(A.Primitives_getYear(t1), A.Primitives_getMonth(t1)); _list = J.JSArray_JSArray$allocateGrowable(daysInMonth, type$.FocusNode); for (index = 0; index < daysInMonth; index = index0) { index0 = index + 1; _list[index] = A.FocusNode$(true, "Day " + index0, true, true, null, null, true); } this.___DayPickerState__dayFocusNodes = _list; }, didChangeDependencies$0() { var focusedDate, _this = this; _this.super$State$didChangeDependencies(); focusedDate = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._FocusedDate); focusedDate = focusedDate == null ? null : focusedDate.date; if (focusedDate != null && A.DateUtils_isSameMonth(_this._widget.displayedMonth, focusedDate)) J.$index$asx(A._lateReadCheck(_this.___DayPickerState__dayFocusNodes, "_dayFocusNodes"), A.Primitives_getDay(focusedDate) - 1).requestFocus$0(); }, dispose$0(_) { var t1, t2, _i, node, t3; for (t1 = A._lateReadCheck(this.___DayPickerState__dayFocusNodes, "_dayFocusNodes"), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; t3 = node._attachment; if (t3 != null) t3.detach$0(0); J.getInterceptor$x(node).super$ChangeNotifier$dispose(node); } this.super$State$dispose(0); }, _dayHeaders$2(headerStyle, localizations) { var i, _null = null, result = A._setArrayType([], type$.JSArray_Widget); for (i = localizations.get$firstDayOfWeekIndex(); true; i = B.JSInt_methods.$mod(i + 1, 7)) { result.push(new A.ExcludeSemantics(true, new A.Center(B.Alignment_0_0, _null, _null, new A.Text(localizations.get$narrowWeekdays()[i], _null, headerStyle, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null)); if (i === B.JSInt_methods.$mod(localizations.get$firstDayOfWeekIndex() - 1, 7)) break; } return result; }, build$1(_, context) { var t2, headerStyle, t3, t4, t5, enabledDayColor, disabledDayColor, selectedDayColor, selectedDayBackground, year, month, daysInMonth, dayOffset, dayItems, day, dayToBuild, isDisabled, isSelectedDay, isToday, decoration, dayColor, side, dayWidget, t6, _this = this, _null = null, colorScheme = A.Theme_of(context).colorScheme, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = A.Theme_of(context).textTheme.bodySmall; if (t2 == null) headerStyle = _null; else { t3 = colorScheme.onSurface.value; headerStyle = t2.apply$1$color(A.Color$fromARGB(153, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255)); } t2.toString; t3 = colorScheme.onSurface.value; t4 = t3 >>> 16 & 255; t5 = t3 >>> 8 & 255; t3 &= 255; enabledDayColor = A.Color$fromARGB(222, t4, t5, t3); disabledDayColor = A.Color$fromARGB(97, t4, t5, t3); selectedDayColor = colorScheme.onPrimary; selectedDayBackground = colorScheme.primary; t3 = _this._widget.displayedMonth; year = A.Primitives_getYear(t3); month = A.Primitives_getMonth(t3); daysInMonth = A.DateUtils_getDaysInMonth(year, month); t3 = A.Primitives_valueFromDecomposedDate(year, month, 1, 0, 0, 0, 0, false); if (!A._isInt(t3)) A.throwExpression(A.argumentErrorValue(t3)); dayOffset = B.JSInt_methods.$mod(A.Primitives_getWeekday(new A.DateTime(t3, false)) - 1 - B.JSInt_methods.$mod(t1.get$firstDayOfWeekIndex() - 1, 7), 7); dayItems = _this._dayHeaders$2(headerStyle, t1); day = -dayOffset; for (; day < daysInMonth;) { ++day; if (day < 1) dayItems.push(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); else { t3 = A.Primitives_valueFromDecomposedDate(year, month, day, 0, 0, 0, 0, false); if (!A._isInt(t3)) A.throwExpression(A.argumentErrorValue(t3)); dayToBuild = new A.DateTime(t3, false); t4 = _this._widget; if (!(t3 > t4.lastDate._value)) if (!(t3 < t4.firstDate._value)) isDisabled = false; else isDisabled = true; else isDisabled = true; isSelectedDay = A.DateUtils_isSameDay(t4.selectedDate, dayToBuild); isToday = A.DateUtils_isSameDay(t4.currentDate, dayToBuild); if (isSelectedDay) { decoration = new A.BoxDecoration(selectedDayBackground, _null, _null, _null, _null, _null, B.BoxShape_1); dayColor = selectedDayColor; } else if (isDisabled) { dayColor = disabledDayColor; decoration = _null; } else if (isToday) { side = new A.BorderSide(selectedDayBackground, 1, B.BorderStyle_1); decoration = new A.BoxDecoration(_null, _null, new A.Border(side, side, side, side), _null, _null, _null, B.BoxShape_1); dayColor = selectedDayBackground; } else { dayColor = enabledDayColor; decoration = _null; } dayWidget = A.Container$(_null, new A.Center(B.Alignment_0_0, _null, _null, new A.Text(t1.formatDecimal$1(day), _null, t2.apply$1$color(dayColor), _null, _null, _null, _null, _null, _null, _null, _null), _null), B.Clip_0, _null, _null, decoration, _null, _null, _null, _null, _null, _null, _null, _null); if (isDisabled) dayWidget = new A.ExcludeSemantics(true, dayWidget, _null); else { t3 = J.$index$asx(A._lateReadCheck(_this.___DayPickerState__dayFocusNodes, "_dayFocusNodes"), day - 1); t4 = A.Color$fromARGB(97, selectedDayBackground.get$value(selectedDayBackground) >>> 16 & 255, selectedDayBackground.get$value(selectedDayBackground) >>> 8 & 255, selectedDayBackground.get$value(selectedDayBackground) & 255); t5 = t1.formatDecimal$1(day); t6 = t1.formatFullDate$1(dayToBuild); dayWidget = new A.InkResponse(new A.Semantics(new A.SemanticsProperties(_null, _null, _null, isSelectedDay, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5 + ", " + t6, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, true, dayWidget, _null), new A._DayPickerState_build_closure(_this, dayToBuild), _null, _null, _null, _null, _null, _null, _null, _null, false, B.BoxShape_1, 25, _null, _null, _null, _null, _null, _null, t4, _null, true, false, _null, false, t3, true, _null); } dayItems.push(dayWidget); } } t1 = A.SliverChildListDelegate$(dayItems, true, false, true); return new A.Padding(B.EdgeInsets_8_0_8_0, new A.GridView(B.C__DayPickerGridDelegate, t1, _null, B.Axis_1, false, _null, true, B.ClampingScrollPhysics_null, _null, false, _null, 0, _null, _null, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null), _null); } }; A._DayPickerState_build_closure.prototype = { call$0() { return this.$this._widget.onChanged$1(this.dayToBuild); }, $signature: 0 }; A._DayPickerGridDelegate.prototype = { getLayout$1(constraints) { var tileWidth = constraints.crossAxisExtent / 7, tileHeight = Math.min(42, constraints.viewportMainAxisExtent / 7); return new A.SliverGridRegularTileLayout(7, tileHeight, tileWidth, tileHeight, tileWidth, A.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1(oldDelegate) { return false; } }; A.YearPicker.prototype = { createState$0() { return new A._YearPickerState(B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); } }; A._YearPickerState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this.___YearPickerState__scrollController = new A.ScrollController(_this._scrollOffsetForYear$1(_this._widget.selectedDate), true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.selectedDate, oldWidget.selectedDate)) A._lateReadCheck(_this.___YearPickerState__scrollController, "_scrollController").jumpTo$1(_this._scrollOffsetForYear$1(_this._widget.selectedDate)); }, _scrollOffsetForYear$1(date) { var initialYearRow; date.toString; initialYearRow = B.JSInt_methods._tdivFast$1(A.Primitives_getYear(date) - A.Primitives_getYear(this._widget.firstDate), 3); return this.get$_itemCount() < 18 ? 0 : (initialYearRow - 2) * 52; }, _buildYearItem$2(context, index) { var isSelected, isCurrentYear, isDisabled, textColor, itemStyle, decoration, yearItem, _this = this, _null = null, colorScheme = A.Theme_of(context).colorScheme, textTheme = A.Theme_of(context).textTheme, offset = _this.get$_itemCount() < 18 ? B.JSInt_methods._tdivFast$1(18 - _this.get$_itemCount(), 2) : 0, t1 = _this._widget, t2 = t1.firstDate, year = A.Primitives_getYear(t2) + index - offset, t3 = t1.selectedDate; t3.toString; isSelected = year === A.Primitives_getYear(t3); isCurrentYear = year === A.Primitives_getYear(t1.currentDate); isDisabled = year < A.Primitives_getYear(t2) || year > A.Primitives_getYear(t1.lastDate); if (isSelected) textColor = colorScheme.onPrimary; else if (isDisabled) { t1 = colorScheme.onSurface.value; textColor = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else if (isCurrentYear) textColor = colorScheme.primary; else { t1 = colorScheme.onSurface.value; textColor = A.Color$fromARGB(222, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = textTheme.bodyLarge; itemStyle = t1 == null ? _null : t1.apply$1$color(textColor); if (isSelected) decoration = new A.BoxDecoration(colorScheme.primary, _null, _null, A.BorderRadius$circular(18), _null, _null, B.BoxShape_0); else decoration = isCurrentYear && !isDisabled ? new A.BoxDecoration(_null, _null, A.Border_Border$all(colorScheme.primary, 1), A.BorderRadius$circular(18), _null, _null, B.BoxShape_0) : _null; t1 = A.Text$(B.JSInt_methods.toString$0(year), _null, _null, _null, _null, _null, itemStyle, _null, _null, _null); yearItem = A.Center$(A.Container$(_null, A.Center$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, isSelected, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), _null, _null), B.Clip_0, _null, _null, decoration, _null, 36, _null, _null, _null, _null, _null, 72), _null, _null); return isDisabled ? new A.ExcludeSemantics(true, yearItem, _null) : A.InkWell$(false, _null, true, yearItem, _null, true, _null, _null, _null, _null, new A.ValueKey(year, type$.ValueKey_int), _null, _null, _null, _null, _null, _null, new A._YearPickerState__buildYearItem_closure(_this, year), _null, _null, _null, _null, _null, _null); }, get$_itemCount() { var t1 = this._widget; return A.Primitives_getYear(t1.lastDate) - A.Primitives_getYear(t1.firstDate) + 1; }, build$1(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = A._lateReadCheck(_this.___YearPickerState__scrollController, "_scrollController"); _this._widget.toString; t2 = Math.max(_this.get$_itemCount(), 18); t3 = t1 == null && true; t4 = t1 == null && true; t4 = t4 ? B.AlwaysScrollableScrollPhysics_null : _null; return A.Column$(A._setArrayType([B.Divider_null_null_null_null, A.Expanded$(new A.GridView(B.C__YearPickerGridDelegate, new A.SliverChildBuilderDelegate(_this.get$_buildYearItem(), t2, true, true, true, A.sliver___kDefaultSemanticIndexCallback$closure(), _null), B.EdgeInsets_16_0_16_0, B.Axis_1, false, t1, t3, t4, _null, false, _null, 0, _null, t2, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, B.Clip_1, _null), 1), B.Divider_null_null_null_null], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }; A._YearPickerState__buildYearItem_closure.prototype = { call$0() { var t1 = this.$this._widget, t2 = t1.initialDate; t2 = A.Primitives_valueFromDecomposedDate(this.year, A.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); return t1.onChanged$1(new A.DateTime(t2, false)); }, $signature: 0 }; A._YearPickerGridDelegate.prototype = { getLayout$1(constraints) { var tileWidth = (constraints.crossAxisExtent - 16) / 3; return new A.SliverGridRegularTileLayout(3, 52, tileWidth + 8, 52, tileWidth, A.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1(oldDelegate) { return false; } }; A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.Card.prototype = { build$1(_, context) { var defaults, t1, t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, cardTheme = A.Theme_of(context).cardTheme; A.Theme_of(context).toString; defaults = new A._DefaultsM21(context, B.Clip_0, _null, _null, _null, 1, B.EdgeInsets_4_4_4_4, B.RoundedRectangleBorder_LkV0); t1 = _this.semanticContainer; t2 = _this.margin; if (t2 == null) t2 = cardTheme.margin; if (t2 == null) t2 = B.EdgeInsets_4_4_4_4; t3 = _this.color; if (t3 == null) t3 = cardTheme.color; if (t3 == null) t3 = defaults.get$color(defaults); t4 = cardTheme.shadowColor; if (t4 == null) t4 = defaults.get$shadowColor(defaults); t5 = cardTheme.surfaceTintColor; if (t5 == null) t5 = defaults.surfaceTintColor; t6 = _this.elevation; if (t6 == null) t6 = cardTheme.elevation; if (t6 == null) t6 = 1; t7 = _this.shape; if (t7 == null) t7 = cardTheme.shape; if (t7 == null) t7 = B.RoundedRectangleBorder_LkV0; t8 = _this.clipBehavior; if (t8 == null) t8 = cardTheme.clipBehavior; if (t8 == null) t8 = B.Clip_0; t2 = A.Container$(_null, A.Material$(B.Duration_200000, true, _null, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, !t1, false, _this.child, _null), t8, t3, t6, _null, t4, t7, t5, _null, B.MaterialType_1), B.Clip_0, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, false, false, t2, _null); } }; A._DefaultsM21.prototype = { get$color(_) { return A.Theme_of(this.context).cardColor; }, get$shadowColor(_) { return A.Theme_of(this.context).shadowColor; } }; A.CardTheme.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.clipBehavior, _this.get$color(_this), _this.get$shadowColor(_this), _this.get$surfaceTintColor(), _this.elevation, _this.margin, _this.shape, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.CardTheme && other.clipBehavior == _this.clipBehavior && J.$eq$(other.get$color(other), _this.get$color(_this)) && J.$eq$(other.get$shadowColor(other), _this.get$shadowColor(_this)) && J.$eq$(other.get$surfaceTintColor(), _this.get$surfaceTintColor()) && other.elevation == _this.elevation && J.$eq$(other.margin, _this.margin) && J.$eq$(other.shape, _this.shape); }, get$color(receiver) { return this.color; }, get$shadowColor(receiver) { return this.shadowColor; }, get$surfaceTintColor() { return this.surfaceTintColor; } }; A._CardTheme_Object_Diagnosticable.prototype = {}; A.Checkbox.prototype = { createState$0() { return new A._CheckboxState(new A._CheckboxPainter($.$get$ChangeNotifier__emptyListeners()), $, $, $, $, $, $, $, $, $, null, false, false, null, null, B._StateLifecycle_0); }, get$value(receiver) { return this.value; } }; A._CheckboxState.prototype = { initState$0() { this.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$initState(); this._previousValue = this._widget.value; }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.value; if (t1 != _this._widget.value) { _this._previousValue = t1; _this.animateToValue$0(); } }, dispose$0(_) { this._checkbox$_painter.dispose$0(0); this.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged() { return this._widget.onChanged; }, get$tristate() { return this._widget.tristate; }, get$value(_) { return this._widget.value; }, get$_widgetFillColor() { return new A._MaterialStatePropertyWith(new A._CheckboxState__widgetFillColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultFillColor() { var t1 = this._framework$_element; t1.toString; return new A._MaterialStatePropertyWith(new A._CheckboxState__defaultFillColor_closure(A.Theme_of(t1)), type$._MaterialStatePropertyWith_Color); }, _resolveSide$1(side) { if (!this.get$states().contains$1(0, B.MaterialState_4)) return side; return null; }, build$1(_, context) { var checkboxTheme, t1, effectiveMaterialTapTargetSize, effectiveVisualDensity, size, activeStates, inactiveStates, effectiveActiveColor, effectiveInactiveColor, focusedStates, t2, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, effectiveCheckColor, t3, _this = this, _null = null, themeData = A.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(type$.CheckboxTheme); checkboxTheme = A.Theme_of(context).checkboxTheme; t1 = _this._widget.materialTapTargetSize; effectiveMaterialTapTargetSize = t1 == null ? checkboxTheme.materialTapTargetSize : t1; if (effectiveMaterialTapTargetSize == null) effectiveMaterialTapTargetSize = themeData.materialTapTargetSize; effectiveVisualDensity = themeData.visualDensity; switch (effectiveMaterialTapTargetSize.index) { case 0: size = B.Size_48_48; break; case 1: size = B.Size_40_40; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } size = size.$add(0, new A.Offset(effectiveVisualDensity.horizontal, effectiveVisualDensity.vertical).$mul(0, 4)); activeStates = _this.get$states(); activeStates.add$1(0, B.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, B.MaterialState_4); _this._widget.toString; t1 = _this.get$_widgetFillColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = checkboxTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActiveColor = t1; } else effectiveActiveColor = t1; if (effectiveActiveColor == null) effectiveActiveColor = _this.get$_defaultFillColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetFillColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = checkboxTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactiveColor = t1; } else effectiveInactiveColor = t1; if (effectiveInactiveColor == null) effectiveInactiveColor = _this.get$_defaultFillColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, B.MaterialState_1); _this._widget.toString; t1 = checkboxTheme.overlayColor; t2 = t1 == null ? _null : t1.resolve$1(0, focusedStates); effectiveFocusOverlayColor = t2; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = themeData.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, B.MaterialState_0); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, hoveredStates); effectiveHoverOverlayColor = t2; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = themeData.hoverColor; activeStates.add$1(0, B.MaterialState_2); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActivePressedOverlayColor = t2; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); inactiveStates.add$1(0, B.MaterialState_2); _this._widget.toString; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); _this._widget.toString; t1 = checkboxTheme.checkColor; t1 = t1 == null ? _null : t1.resolve$1(0, _this.get$states()); effectiveCheckColor = t1; if (effectiveCheckColor == null) effectiveCheckColor = B.Color_4294967295; t1 = _this._widget.value; t2 = _this._checkbox$_painter; t2.set$position(0, A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, "_position")); t2.set$reaction(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reaction, "_reaction")); t2.set$reactionFocusFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade, "_reactionFocusFade")); t2.set$reactionHoverFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade, "_reactionHoverFade")); t2.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t2.set$reactionColor(effectiveActivePressedOverlayColor); t2.set$hoverColor(effectiveHoverOverlayColor); t2.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t3 = checkboxTheme.splashRadius; t2.set$splashRadius(t3 == null ? 20 : t3); t2.set$downPosition(_this.ToggleableStateMixin__downPosition); t2.set$isFocused(_this.get$states().contains$1(0, B.MaterialState_1)); t2.set$isHovered(_this.get$states().contains$1(0, B.MaterialState_0)); t2.set$activeColor(effectiveActiveColor); t2.set$inactiveColor(effectiveInactiveColor); t2.set$checkColor(effectiveCheckColor); t2.set$value(0, _this._widget.value); t2.set$previousValue(_this._previousValue); _this._widget.toString; t3 = checkboxTheme.shape; t2.set$shape(0, t3 == null ? B.RoundedRectangleBorder_LkV3 : t3); t3 = _this._resolveSide$1(_this._widget.side); t2.set$side(t3 == null ? _this._resolveSide$1(checkboxTheme.side) : t3); t2 = _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, _null, new A._MaterialStatePropertyWith(new A._CheckboxState_build_closure(_this, checkboxTheme), type$._MaterialStatePropertyWith_MouseCursor), t2, size); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, t1 === true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t2, _null); } }; A._CheckboxState__widgetFillColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return null; if (states.contains$1(0, B.MaterialState_4)) return this.$this._widget.activeColor; return null; }, $signature: 224 }; A._CheckboxState__defaultFillColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return this.themeData.disabledColor; if (states.contains$1(0, B.MaterialState_4)) return this.themeData.toggleableActiveColor; return this.themeData.unselectedWidgetColor; }, $signature: 116 }; A._CheckboxState_build_closure.prototype = { call$1(states) { var t1; this.$this._widget.toString; t1 = A.MaterialStateProperty_resolveAs(null, states, type$.nullable_MouseCursor); if (t1 == null) t1 = null; return t1 == null ? B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, states) : t1; }, $signature: 447 }; A._CheckboxPainter.prototype = { set$checkColor(value) { if (J.$eq$(this._checkColor, value)) return; this._checkColor = value; this.notifyListeners$0(); }, get$value(_) { return this._checkbox$_value; }, set$value(_, value) { if (this._checkbox$_value == value) return; this._checkbox$_value = value; this.notifyListeners$0(); }, set$previousValue(value) { if (this._previousValue == value) return; this._previousValue = value; this.notifyListeners$0(); }, set$shape(_, value) { if (J.$eq$(this._checkbox$_shape, value)) return; this._checkbox$_shape = value; this.notifyListeners$0(); }, set$side(value) { if (J.$eq$(this._side, value)) return; this._side = value; this.notifyListeners$0(); }, _outerRectAt$2(origin, t) { var inset = 1 - Math.abs(t - 0.5) * 2, size = 18 - inset * 2, t1 = origin._dx + inset, t2 = origin._dy + inset; return new A.Rect(t1, t2, t1 + size, t2 + size); }, _colorAt$1(t) { var t2, t1 = this._toggleable$_activeColor; if (t >= 0.25) t1.toString; else { t2 = this._inactiveColor; t2.toString; t1.toString; t1 = A.Color_lerp(t2, t1, t * 4); t1.toString; } return t1; }, _drawBox$5(canvas, outer, paint, side, fill) { if (fill) canvas.drawPath$2(0, this._checkbox$_shape.getOuterPath$1(outer), paint); if (side != null) this._checkbox$_shape.copyWith$1$side(side).paint$2(canvas, outer); }, _drawCheck$4(canvas, origin, t, paint) { var t3, path = A.Path_Path(), t1 = origin._dx, t2 = origin._dy; if (t < 0.5) { t3 = A.Offset_lerp(B.Offset_W7v, B.Offset_gPO, t * 2); t3.toString; path.moveTo$2(0, t1 + 2.6999999999999997, t2 + 8.1); path.lineTo$2(0, t1 + t3._dx, t2 + t3._dy); } else { t3 = A.Offset_lerp(B.Offset_gPO, B.Offset_oIk, (t - 0.5) * 2); t3.toString; path.moveTo$2(0, t1 + 2.6999999999999997, t2 + 8.1); path.lineTo$2(0, t1 + 7.2, t2 + 12.6); path.lineTo$2(0, t1 + t3._dx, t2 + t3._dy); } canvas.drawPath$2(0, path, paint); }, _drawDash$4(canvas, origin, t, paint) { var t2, t1 = A.Offset_lerp(B.Offset_aNU, B.Offset_9_9, 1 - t); t1.toString; t2 = A.Offset_lerp(B.Offset_9_9, B.Offset_Gl7, t); t2.toString; canvas.drawLine$3(0, origin.$add(0, t1), origin.$add(0, t2), paint); }, paint$2(canvas, size) { var t1, strokePaint, t2, origin, $status, t3, tNormalized, t, outer, paint, border, tShrink, tExpand, _this = this; _this.paintRadialReaction$2$canvas$origin(canvas, size.center$1(B.Offset_0_0)); t1 = $.$get$useCanvasKit(); strokePaint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = _this._checkColor; t2.toString; strokePaint.set$color(0, t2); strokePaint.set$style(0, B.PaintingStyle_1); strokePaint.set$strokeWidth(2); origin = type$.Offset._as(size.$div(0, 2).$sub(0, B.Size_18_18.$div(0, 2))); t2 = _this._toggleable$_position.parent; $status = t2.get$status(t2); t2 = $status === B.AnimationStatus_1 || $status === B.AnimationStatus_3; t3 = _this._toggleable$_position; tNormalized = t2 ? t3.get$value(t3) : 1 - t3.get$value(t3); if (_this._previousValue === false || _this._checkbox$_value === false) { t = _this._checkbox$_value === false ? 1 - tNormalized : tNormalized; outer = _this._outerRectAt$2(origin, t); paint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, _this._colorAt$1(t)); border = _this._side; if (t <= 0.5) _this._drawBox$5(canvas, outer, paint, border == null ? new A.BorderSide(paint.get$color(paint), 2, B.BorderStyle_1) : border, false); else { _this._drawBox$5(canvas, outer, paint, border, true); tShrink = (t - 0.5) * 2; if (_this._previousValue == null || _this._checkbox$_value == null) _this._drawDash$4(canvas, origin, tShrink, strokePaint); else _this._drawCheck$4(canvas, origin, tShrink, strokePaint); } } else { outer = _this._outerRectAt$2(origin, 1); paint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, _this._colorAt$1(1)); _this._drawBox$5(canvas, outer, paint, _this._side, true); if (tNormalized <= 0.5) { tShrink = 1 - tNormalized * 2; t1 = _this._previousValue; if (t1 === true) _this._drawCheck$4(canvas, origin, tShrink, strokePaint); else _this._drawDash$4(canvas, origin, tShrink, strokePaint); } else { tExpand = (tNormalized - 0.5) * 2; t1 = _this._checkbox$_value; if (t1 === true) _this._drawCheck$4(canvas, origin, tExpand, strokePaint); else _this._drawDash$4(canvas, origin, tExpand, strokePaint); } } } }; A.__CheckboxState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0() { var t1, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, B.Duration_200000, _null, 1, _this._widget.value === false ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__position = A.CurvedAnimation$(B.Cubic_JUR0, A._lateReadCheck(t1, "_positionController"), B.Cubic_xDo0); t1 = A.AnimationController$(_null, B.Duration_100000, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reaction = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionHoverFadeController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionFocusFadeController"), _null); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, "_positionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController, "_reactionHoverFadeController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController, "_reactionFocusFadeController").dispose$0(0); _this.super$__CheckboxState_State_TickerProviderStateMixin$dispose(0); } }; A.CheckboxListTile.prototype = { _handleValueChange$0() { var _this = this; switch (_this.value) { case false: _this.onChanged.call$1(true); break; case true: _this.onChanged.call$1(false); break; case null: _this.onChanged.call$1(false); break; } }, build$1(_, context) { var trailing, leading, _this = this, _null = null, t1 = _this.activeColor, control = A.Checkbox$(t1, false, _null, B.MaterialTapTargetSize_1, _this.onChanged, _null, _null, false, _this.value); switch (_this.controlAffinity.index) { case 0: trailing = _null; leading = control; break; case 1: case 2: trailing = control; leading = _null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (t1 == null) t1 = A.Theme_of(context).toggleableActiveColor; return new A.MergeSemantics(A.ListTileTheme_merge(A.ListTile$(false, _this.contentPadding, _this.dense, _null, true, _null, _null, false, _null, leading, _null, _this.get$_handleValueChange(), false, _null, _null, _null, _null, _this.title, trailing, _null), t1), _null); }, get$value(receiver) { return this.value; } }; A.CheckboxThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.mouseCursor, _this.fillColor, _this.checkColor, _this.overlayColor, _this.splashRadius, _this.materialTapTargetSize, _this.visualDensity, _this.shape, _this.side, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.CheckboxThemeData) if (other.fillColor == _this.fillColor) if (other.checkColor == _this.checkColor) if (other.overlayColor == _this.overlayColor) if (other.splashRadius == _this.splashRadius) t1 = J.$eq$(other.shape, _this.shape) && J.$eq$(other.side, _this.side); else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._LerpProperties4.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._CheckboxThemeData_Object_Diagnosticable.prototype = {}; A.ChipThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.deleteIconColor, _this.disabledColor, _this.selectedColor, _this.secondarySelectedColor, _this.shadowColor, _this.selectedShadowColor, _this.checkmarkColor, _this.labelPadding, _this.padding, _this.side, _this.shape, _this.labelStyle, _this.secondaryLabelStyle, _this.brightness, _this.elevation, _this.pressElevation, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ChipThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.deleteIconColor, _this.deleteIconColor) && J.$eq$(other.disabledColor, _this.disabledColor) && J.$eq$(other.selectedColor, _this.selectedColor) && J.$eq$(other.secondarySelectedColor, _this.secondarySelectedColor) && J.$eq$(other.shadowColor, _this.shadowColor) && J.$eq$(other.selectedShadowColor, _this.selectedShadowColor) && J.$eq$(other.checkmarkColor, _this.checkmarkColor) && J.$eq$(other.labelPadding, _this.labelPadding) && J.$eq$(other.padding, _this.padding) && J.$eq$(other.side, _this.side) && J.$eq$(other.shape, _this.shape) && J.$eq$(other.labelStyle, _this.labelStyle) && J.$eq$(other.secondaryLabelStyle, _this.secondaryLabelStyle) && other.brightness == _this.brightness && other.elevation == _this.elevation && other.pressElevation == _this.pressElevation; } }; A._ChipThemeData_Object_Diagnosticable.prototype = {}; A.ColorScheme.prototype = { copyWith$3$brightness$primary$secondary(brightness, primary, secondary) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, _this = this, t1 = brightness == null ? _this.brightness : brightness, t2 = primary == null ? _this.primary : primary, t3 = _this.onPrimary, t4 = _this._primaryContainer; if (t4 == null) t4 = _this.primary; t5 = _this._onPrimaryContainer; if (t5 == null) t5 = t3; t6 = secondary == null ? _this.secondary : secondary; t7 = _this.onSecondary; t8 = _this._secondaryContainer; if (t8 == null) t8 = _this.secondary; t9 = _this._onSecondaryContainer; if (t9 == null) t9 = t7; t10 = _this._tertiary; t11 = t10 == null ? _this.secondary : t10; t12 = _this._onTertiary; t13 = t12 == null ? t7 : t12; t14 = _this._tertiaryContainer; if (t14 == null) { if (t10 == null) t10 = _this.secondary; } else t10 = t14; t14 = _this._onTertiaryContainer; if (t14 == null) { if (t12 == null) t12 = t7; } else t12 = t14; t14 = _this.error; t15 = _this.onError; t16 = _this._errorContainer; if (t16 == null) t16 = t14; t17 = _this._onErrorContainer; if (t17 == null) t17 = t15; t18 = _this.onBackground; t19 = _this.surface; t20 = _this.onSurface; t21 = _this._surfaceVariant; if (t21 == null) t21 = t19; t22 = _this._onSurfaceVariant; if (t22 == null) t22 = t20; t23 = _this._outline; if (t23 == null) t23 = t18; t24 = _this._shadow; if (t24 == null) t24 = B.Color_4278190080; t25 = _this._inverseSurface; if (t25 == null) t25 = t20; t26 = _this._onInverseSurface; if (t26 == null) t26 = t19; t27 = _this._inversePrimary; if (t27 == null) t27 = t3; t28 = _this._primaryVariant; if (t28 == null) t28 = _this.primary; t29 = _this._secondaryVariant; if (t29 == null) t29 = _this.secondary; t30 = _this._surfaceTint; if (t30 == null) t30 = _this.primary; return A.ColorScheme$(_this.background, t1, t14, t16, t27, t25, t18, t15, t17, t26, t3, t5, t7, t9, t20, t22, t13, t12, t23, t2, t4, t28, t6, t8, t29, t24, t19, t30, t21, t11, t10); }, copyWith$2$primary$secondary(primary, secondary) { return this.copyWith$3$brightness$primary$secondary(null, primary, secondary); }, copyWith$1$secondary(secondary) { return this.copyWith$3$brightness$primary$secondary(null, null, secondary); }, copyWith$1$brightness(brightness) { return this.copyWith$3$brightness$primary$secondary(brightness, null, null); }, $eq(_, other) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.ColorScheme) if (other.brightness === _this.brightness) { t1 = other.primary; t2 = _this.primary; if (J.$eq$(t1, t2)) { t3 = other.onPrimary; t4 = _this.onPrimary; if (J.$eq$(t3, t4)) { t5 = other._primaryContainer; if (t5 == null) t5 = t1; t6 = _this._primaryContainer; if (J.$eq$(t5, t6 == null ? t2 : t6)) { t5 = other._onPrimaryContainer; if (t5 == null) t5 = t3; t6 = _this._onPrimaryContainer; if (J.$eq$(t5, t6 == null ? t4 : t6)) { t5 = other.secondary; t6 = _this.secondary; if (J.$eq$(t5, t6)) { t7 = other.onSecondary; t8 = _this.onSecondary; if (J.$eq$(t7, t8)) { t9 = other._secondaryContainer; if (t9 == null) t9 = t5; t10 = _this._secondaryContainer; if (J.$eq$(t9, t10 == null ? t6 : t10)) { t9 = other._onSecondaryContainer; if (t9 == null) t9 = t7; t10 = _this._onSecondaryContainer; if (J.$eq$(t9, t10 == null ? t8 : t10)) { t9 = other._tertiary; t10 = t9 == null; t11 = t10 ? t5 : t9; t12 = _this._tertiary; t13 = t12 == null; if (J.$eq$(t11, t13 ? t6 : t12)) { t11 = other._onTertiary; t14 = t11 == null; t15 = t14 ? t7 : t11; t16 = _this._onTertiary; t17 = t16 == null; if (J.$eq$(t15, t17 ? t8 : t16)) { t15 = other._tertiaryContainer; if (t15 == null) { if (t10) t9 = t5; } else t9 = t15; t10 = _this._tertiaryContainer; if (t10 == null) t10 = t13 ? t6 : t12; if (J.$eq$(t9, t10)) { t9 = other._onTertiaryContainer; if (t9 == null) t7 = t14 ? t7 : t11; else t7 = t9; t9 = _this._onTertiaryContainer; if (t9 == null) t8 = t17 ? t8 : t16; else t8 = t9; if (J.$eq$(t7, t8)) { t7 = other.error; t8 = _this.error; if (J.$eq$(t7, t8)) { t9 = other.onError; t10 = _this.onError; if (J.$eq$(t9, t10)) { t11 = other._errorContainer; t7 = t11 == null ? t7 : t11; t11 = _this._errorContainer; if (J.$eq$(t7, t11 == null ? t8 : t11)) { t7 = other._onErrorContainer; if (t7 == null) t7 = t9; t8 = _this._onErrorContainer; if (J.$eq$(t7, t8 == null ? t10 : t8)) if (J.$eq$(other.background, _this.background)) { t7 = other.onBackground; t8 = _this.onBackground; if (J.$eq$(t7, t8)) { t9 = other.surface; t10 = _this.surface; if (J.$eq$(t9, t10)) { t11 = other.onSurface; t12 = _this.onSurface; if (J.$eq$(t11, t12)) { t13 = other._surfaceVariant; if (t13 == null) t13 = t9; t14 = _this._surfaceVariant; if (J.$eq$(t13, t14 == null ? t10 : t14)) { t13 = other._onSurfaceVariant; if (t13 == null) t13 = t11; t14 = _this._onSurfaceVariant; if (J.$eq$(t13, t14 == null ? t12 : t14)) { t13 = other._outline; t7 = t13 == null ? t7 : t13; t13 = _this._outline; if (J.$eq$(t7, t13 == null ? t8 : t13)) { t7 = other._shadow; if (t7 == null) t7 = B.Color_4278190080; t8 = _this._shadow; if (t7.$eq(0, t8 == null ? B.Color_4278190080 : t8)) { t7 = other._inverseSurface; if (t7 == null) t7 = t11; t8 = _this._inverseSurface; if (J.$eq$(t7, t8 == null ? t12 : t8)) { t7 = other._onInverseSurface; if (t7 == null) t7 = t9; t8 = _this._onInverseSurface; if (J.$eq$(t7, t8 == null ? t10 : t8)) { t7 = other._inversePrimary; t3 = t7 == null ? t3 : t7; t7 = _this._inversePrimary; if (J.$eq$(t3, t7 == null ? t4 : t7)) { t3 = other._primaryVariant; if (t3 == null) t3 = t1; t4 = _this._primaryVariant; if (J.$eq$(t3, t4 == null ? t2 : t4)) { t3 = other._secondaryVariant; if (t3 == null) t3 = t5; t4 = _this._secondaryVariant; if (J.$eq$(t3, t4 == null ? t6 : t4)) { t3 = other._surfaceTint; t1 = t3 == null ? t1 : t3; t3 = _this._surfaceTint; t1 = J.$eq$(t1, t3 == null ? t2 : t3); } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, _this = this, t1 = _this.primary, t2 = _this.onPrimary, t3 = _this._primaryContainer; if (t3 == null) t3 = t1; t4 = _this._onPrimaryContainer; if (t4 == null) t4 = t2; t5 = _this.secondary; t6 = _this.onSecondary; t7 = _this._secondaryContainer; if (t7 == null) t7 = t5; t8 = _this._onSecondaryContainer; if (t8 == null) t8 = t6; t9 = _this._tertiary; t10 = t9 == null; t11 = t10 ? t5 : t9; t12 = _this._onTertiary; t13 = t12 == null; t14 = t13 ? t6 : t12; t15 = _this._tertiaryContainer; if (t15 == null) { if (t10) t9 = t5; } else t9 = t15; t10 = _this._onTertiaryContainer; if (t10 == null) t10 = t13 ? t6 : t12; t12 = _this.error; t13 = _this.onError; t15 = _this._errorContainer; if (t15 == null) t15 = t12; t16 = _this._onErrorContainer; if (t16 == null) t16 = t13; t17 = _this.onBackground; t18 = _this.surface; t19 = _this.onSurface; t20 = _this._surfaceVariant; if (t20 == null) t20 = t18; t21 = _this._onSurfaceVariant; if (t21 == null) t21 = t19; t22 = _this._outline; if (t22 == null) t22 = t17; t23 = _this._shadow; if (t23 == null) t23 = B.Color_4278190080; t24 = _this._inverseSurface; if (t24 == null) t24 = t19; t25 = _this._onInverseSurface; if (t25 == null) t25 = t18; t26 = _this._inversePrimary; if (t26 == null) t26 = t2; t27 = _this._primaryVariant; if (t27 == null) t27 = t1; t28 = _this._secondaryVariant; if (t28 == null) t28 = t5; t29 = _this._surfaceTint; return A.Object_hash(_this.brightness, t1, t2, t3, t4, t5, t6, t7, t8, t11, t14, t9, t10, t12, t13, t15, t16, _this.background, t17, A.Object_hash(t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29 == null ? t1 : t29, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue)); } }; A._ColorScheme_Object_Diagnosticable.prototype = {}; A.MaterialColor.prototype = {}; A.MaterialAccentColor.prototype = {}; A.DataColumn.prototype = {}; A.DataRow.prototype = {}; A.DataCell.prototype = {}; A.DataTable.prototype = { _handleSelectAll$2(checked, someChecked) { var t1, t2, _i; !someChecked; for (t1 = this.rows, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].toString; }, _buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate(checked, context, onCheckboxChanged, onRowTap, overlayColor, tristate) { var effectiveCheckboxHorizontalMarginStart, effectiveCheckboxHorizontalMarginStart0, effectiveCheckboxHorizontalMarginEnd, contents, _null = null, themeData = A.Theme_of(context), t1 = this.horizontalMargin, effectiveHorizontalMargin = t1 == null ? themeData.dataTableTheme.horizontalMargin : t1; if (effectiveHorizontalMargin == null) effectiveHorizontalMargin = 24; effectiveCheckboxHorizontalMarginStart = themeData.dataTableTheme.checkboxHorizontalMargin; t1 = effectiveCheckboxHorizontalMarginStart == null; effectiveCheckboxHorizontalMarginStart0 = t1 ? effectiveHorizontalMargin : effectiveCheckboxHorizontalMarginStart; effectiveCheckboxHorizontalMarginEnd = t1 ? effectiveHorizontalMargin / 2 : effectiveCheckboxHorizontalMarginStart; t1 = A.Center$(A.Checkbox$(_null, false, _null, _null, onCheckboxChanged, _null, _null, tristate, checked), _null, _null); contents = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A.Padding(new A.EdgeInsetsDirectional(effectiveCheckboxHorizontalMarginStart0, 0, effectiveCheckboxHorizontalMarginEnd, 0), t1, _null), _null); return A.TableCell$(onRowTap != null ? A.TableRowInkWell$(contents, _null, onRowTap, overlayColor) : contents, B.TableCellVerticalAlignment_4); }, build$1(_, context) { var effectiveDataRowColor, t1, anyRowSelectable, rowsWithCheckbox, t2, rowsChecked, allChecked, someChecked, effectiveHorizontalMargin, t3, effectiveCheckboxHorizontalMarginStart, effectiveCheckboxHorizontalMarginEnd, effectiveColumnSpacing, tableColumns, tableRows, t4, rowIndex, _i, row, displayCheckboxColumn, displayColumnIndex, t5, t6, t7, t8, t9, paddingEnd, t10, paddingStart, dataColumnIndex, t11, column, t12, paddingStart0, padding, t13, t14, themeData, dataTableTheme0, t15, t16, label, effectiveHeadingTextStyle, effectiveHeadingRowHeight, cell, effectiveDataTextStyle, effectiveDataRowHeight, _this = this, _null = null, theme = A.Theme_of(context), dataTableTheme = A.DataTableTheme_of(context), effectiveHeadingRowColor = dataTableTheme.headingRowColor; if (effectiveHeadingRowColor == null) effectiveHeadingRowColor = theme.dataTableTheme.headingRowColor; effectiveDataRowColor = dataTableTheme.dataRowColor; if (effectiveDataRowColor == null) effectiveDataRowColor = theme.dataTableTheme.dataRowColor; t1 = _this.rows; anyRowSelectable = B.JSArray_methods.any$1(t1, new A.DataTable_build_closure()); rowsWithCheckbox = anyRowSelectable ? new A.WhereIterable(t1, new A.DataTable_build_closure0(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")) : A._setArrayType([], type$.JSArray_DataRow); t2 = J.getInterceptor$ax(rowsWithCheckbox); rowsChecked = t2.where$1(rowsWithCheckbox, new A.DataTable_build_closure1()); allChecked = anyRowSelectable && rowsChecked.get$length(rowsChecked) === t2.get$length(rowsWithCheckbox); someChecked = anyRowSelectable && !rowsChecked.get$isEmpty(rowsChecked) && !allChecked; t2 = _this.horizontalMargin; if (t2 == null) t2 = dataTableTheme.horizontalMargin; effectiveHorizontalMargin = t2 == null ? theme.dataTableTheme.horizontalMargin : t2; if (effectiveHorizontalMargin == null) effectiveHorizontalMargin = 24; t2 = dataTableTheme.checkboxHorizontalMargin; t3 = t2 == null; effectiveCheckboxHorizontalMarginStart = t3 ? theme.dataTableTheme.checkboxHorizontalMargin : t2; if (effectiveCheckboxHorizontalMarginStart == null) effectiveCheckboxHorizontalMarginStart = effectiveHorizontalMargin; effectiveCheckboxHorizontalMarginEnd = t3 ? theme.dataTableTheme.checkboxHorizontalMargin : t2; if (effectiveCheckboxHorizontalMarginEnd == null) effectiveCheckboxHorizontalMarginEnd = effectiveHorizontalMargin / 2; t2 = _this.columnSpacing; if (t2 == null) t2 = dataTableTheme.columnSpacing; effectiveColumnSpacing = t2 == null ? theme.dataTableTheme.columnSpacing : t2; if (effectiveColumnSpacing == null) effectiveColumnSpacing = 56; t2 = _this.columns; t3 = t2.length; tableColumns = A.List_List$filled(t3 + (anyRowSelectable ? 1 : 0), B.C__NullTableColumnWidth, false, type$.TableColumnWidth); tableRows = A.List_List$generate(t1.length + 1, new A.DataTable_build_closure2(_this, anyRowSelectable, effectiveDataRowColor, effectiveHeadingRowColor, context, dataTableTheme, theme, new A._MaterialStatePropertyWith(new A.DataTable_build_closure3(theme), type$._MaterialStatePropertyWith_nullable_Color), tableColumns), true, type$.TableRow); if (anyRowSelectable) { tableColumns[0] = new A.FixedColumnWidth(effectiveCheckboxHorizontalMarginStart + 18 + effectiveCheckboxHorizontalMarginEnd); t3 = tableRows[0]; t4 = someChecked ? _null : allChecked; t3.children[0] = _this._buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate(t4, context, new A.DataTable_build_closure4(_this, someChecked), _null, _null, true); for (t3 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t3 || (0, A.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; t4 = tableRows[rowIndex]; row.toString; t4.children[0] = _this._buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate(false, context, _null, _null, effectiveDataRowColor, false); ++rowIndex; } displayCheckboxColumn = true; displayColumnIndex = 1; } else { displayCheckboxColumn = anyRowSelectable; displayColumnIndex = 0; } for (t3 = _this.dataRowHeight, t4 = type$.DataTableTheme, t5 = _this.headingRowHeight, t6 = type$.JSArray_Widget, t7 = _this.sortColumnIndex, t8 = _this.sortAscending, t9 = _this._onlyTextColumn, paddingEnd = effectiveColumnSpacing / 2, t10 = !displayCheckboxColumn, paddingStart = effectiveHorizontalMargin / 2, dataColumnIndex = 0; t11 = t2.length, dataColumnIndex < t11; ++dataColumnIndex) { column = t2[dataColumnIndex]; t12 = dataColumnIndex === 0; t12; if (t12 && displayCheckboxColumn) paddingStart0 = paddingStart; else paddingStart0 = t12 && t10 ? effectiveHorizontalMargin : paddingEnd; padding = new A.EdgeInsetsDirectional(paddingStart0, 0, dataColumnIndex === t11 - 1 ? effectiveHorizontalMargin : paddingEnd, 0); if (dataColumnIndex === t9) tableColumns[displayColumnIndex] = B.IntrinsicColumnWidth_1; else tableColumns[displayColumnIndex] = B.IntrinsicColumnWidth_null; t11 = tableRows[0]; t12 = column.numeric; t13 = column.onSort != null ? new A.DataTable_build_closure5(_this, column, dataColumnIndex) : _null; t14 = dataColumnIndex === t7; themeData = A.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(t4); dataTableTheme0 = A.Theme_of(context).dataTableTheme; t15 = t12 ? B.TextDirection_0 : _null; t16 = A._setArrayType([column.label], t6); if (t13 != null) B.JSArray_methods.addAll$1(t16, A._setArrayType([new A._SortArrow(t14, t14 ? t8 : _null, B.Duration_150000, _null), B.SizedBox_2_null_null_null], t6)); label = A.Row$(t16, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, t15); t14 = dataTableTheme0.headingTextStyle; effectiveHeadingTextStyle = t14 == null ? themeData.dataTableTheme.headingTextStyle : t14; if (effectiveHeadingTextStyle == null) { t14 = themeData.textTheme.titleSmall; t14.toString; effectiveHeadingTextStyle = t14; } t14 = t5 == null ? dataTableTheme0.headingRowHeight : t5; effectiveHeadingRowHeight = t14 == null ? themeData.dataTableTheme.headingRowHeight : t14; if (effectiveHeadingRowHeight == null) effectiveHeadingRowHeight = 56; t14 = t12 ? B.Alignment_1_0 : B.AlignmentDirectional_m1_0; label = A.Container$(t14, A.AnimatedDefaultTextStyle$(label, B.C__Linear, B.Duration_150000, false, effectiveHeadingTextStyle), B.Clip_0, _null, _null, _null, _null, effectiveHeadingRowHeight, _null, _null, padding, _null, _null, _null); t11.children[displayColumnIndex] = A.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t13, _null, _null, effectiveHeadingRowColor, _null, _null, _null); for (t11 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t11 || (0, A.throwConcurrentModificationError)(t1), ++_i) { cell = t1[_i].cells[dataColumnIndex]; t13 = tableRows[rowIndex]; label = cell.child; t14 = cell.onTap; themeData = A.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(t4); dataTableTheme0 = A.Theme_of(context).dataTableTheme; t15 = dataTableTheme0.dataTextStyle; effectiveDataTextStyle = t15 == null ? themeData.dataTableTheme.dataTextStyle : t15; if (effectiveDataTextStyle == null) { t15 = themeData.textTheme.bodyMedium; t15.toString; effectiveDataTextStyle = t15; } t15 = t3 == null ? dataTableTheme0.dataRowHeight : t3; effectiveDataRowHeight = t15 == null ? themeData.dataTableTheme.dataRowHeight : t15; if (effectiveDataRowHeight == null) effectiveDataRowHeight = 48; t15 = t12 ? B.Alignment_1_0 : B.AlignmentDirectional_m1_0; label = A.Container$(t15, new A.DefaultTextStyle(effectiveDataTextStyle.copyWith$1$color(_null), _null, true, B.TextOverflow_0, _null, B.TextWidthBasis_0, _null, new A.DropdownButtonHideUnderline(label, _null), _null), B.Clip_0, _null, _null, _null, _null, effectiveDataRowHeight, _null, _null, padding, _null, _null, _null); if (t14 == null) t15 = false; else t15 = true; if (t15) label = A.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t14, _null, _null, effectiveDataRowColor, _null, _null, _null); t13.children[displayColumnIndex] = label; ++rowIndex; } ++displayColumnIndex; } t1 = _this.decoration; if (t1 == null) t1 = dataTableTheme.decoration; if (t1 == null) t1 = theme.dataTableTheme.decoration; return A.Container$(_null, A.Material$(B.Duration_200000, true, _null, A.Table$(_null, tableRows, new A.ListMapView(tableColumns, A._arrayInstanceType(tableColumns)._eval$1("ListMapView<1>")), B.FlexColumnWidth_1, B.TableCellVerticalAlignment_0, _null), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_4), B.Clip_0, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.DataTable_build_closure3.prototype = { call$1(states) { var t1; if (states.contains$1(0, B.MaterialState_4)) { t1 = this.theme.colorScheme.primary; return A.Color$fromARGB(20, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; }, $signature: 224 }; A.DataTable_build_closure.prototype = { call$1(row) { row.toString; return false; }, $signature: 444 }; A.DataTable_build_closure0.prototype = { call$1(row) { row.toString; return false; }, $signature: 444 }; A.DataTable_build_closure1.prototype = { call$1(row) { row.toString; return false; }, $signature: 444 }; A.DataTable_build_closure2.prototype = { call$1(index) { var isDisabled, t2, t3, t4, resolvedDataRowColor, resolvedHeadingRowColor, rowColor, borderSide, border, _this = this, _null = null, t1 = index > 0; if (t1) _this.$this.rows[index - 1].toString; if (t1) if (_this.anyRowSelectable) { _this.$this.rows[index - 1].toString; isDisabled = true; } else isDisabled = false; else isDisabled = false; t2 = type$.MaterialState; t3 = A.LinkedHashSet_LinkedHashSet$_empty(t2); if (isDisabled) t3.add$1(0, B.MaterialState_6); if (t1) { _this.$this.rows[index - 1].toString; t4 = _this.effectiveDataRowColor; resolvedDataRowColor = t4 == null ? _null : t4.resolve$1(0, t3); } else resolvedDataRowColor = _null; t4 = _this.effectiveHeadingRowColor; resolvedHeadingRowColor = t4 == null ? _null : t4.resolve$1(0, A.LinkedHashSet_LinkedHashSet$_empty(t2)); rowColor = t1 ? resolvedDataRowColor : resolvedHeadingRowColor; t1 = _this.dataTableTheme.dividerThickness; if (t1 == null) t1 = _this.theme.dataTableTheme.dividerThickness; if (t1 == null) t1 = 1; borderSide = A.Divider_createBorderSide(_this.context, _null, t1); t1 = _this.$this; if (t1.showBottomBorder) border = new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, borderSide, B.BorderSide_0CF); else border = index === 0 ? _null : new A.Border(borderSide, B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF); t1 = index === 0 ? $.$get$DataTable__headingRowKey() : t1.rows[index - 1].key; t2 = rowColor == null ? _this.defaultRowColor._material_state$_resolve.call$1(t3) : rowColor; return new A.TableRow(t1, new A.BoxDecoration(t2, _null, border, _null, _null, _null, B.BoxShape_0), A.List_List$filled(_this.tableColumns.length, B._NullWidget_null1, false, type$.Widget)); }, $signature: 2355 }; A.DataTable_build_closure4.prototype = { call$1(checked) { return this.$this._handleSelectAll$2(checked, this.someChecked); }, $signature: 442 }; A.DataTable_build_closure5.prototype = { call$0() { var t2, t3, t1 = this.column.onSort; t1.toString; t2 = this.dataColumnIndex; t3 = this.$this; return t1.call$2(t2, t3.sortColumnIndex !== t2 || !t3.sortAscending); }, $signature: 0 }; A.TableRowInkWell.prototype = { getRectCallback$1(referenceBox) { return new A.TableRowInkWell_getRectCallback_closure(referenceBox); }, debugCheckContext$1(context) { this.super$InkResponse$debugCheckContext(context); return true; } }; A.TableRowInkWell_getRectCallback_closure.prototype = { call$0() { var table0, t1, rect, offset, cell = this.referenceBox, table = cell.get$parent(cell), transform = new A.Matrix4(new Float64Array(16)); transform.setIdentity$0(); while (true) { if (!(table instanceof A.RenderObject && !(table instanceof A.RenderTable))) break; table.applyPaintTransform$2(cell, transform); table0 = table.get$parent(table); cell = table; table = table0; } if (table instanceof A.RenderTable) { t1 = cell.parentData; t1.toString; t1 = type$.TableCellParentData._as(t1).y; t1.toString; rect = table.getRowBox$1(t1); table.applyPaintTransform$2(cell, transform); offset = A.MatrixUtils_getAsTranslation(transform); if (offset != null) return rect.shift$1(new A.Offset(-offset._dx, -offset._dy)); } return B.Rect_0_0_0_0; }, $signature: 440 }; A._SortArrow.prototype = { createState$0() { return new A._SortArrowState(null, null, B._StateLifecycle_0); } }; A._SortArrowState.prototype = { initState$0() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget; _this._data_table$_up = t1.up; t1 = A.AnimationController$(_null, t1.duration, _null, 1, _null, _this); _this.___SortArrowState__opacityController = t1; t1 = A.CurvedAnimation$(B.Cubic_ifx, t1, _null); t2 = _this.get$_data_table$_rebuild(); t1.parent.addListener$1(0, t2); _this.___SortArrowState__opacityAnimation = t1; t1 = A._lateReadCheck(_this.___SortArrowState__opacityController, "_opacityController"); t1.set$value(0, _this._widget.visible ? 1 : 0); t1 = A.AnimationController$(_null, _this._widget.duration, _null, 1, _null, _this); _this.___SortArrowState__orientationController = t1; t1 = A._lateReadCheck(t1, "_orientationController"); t3 = $.$get$_SortArrowState__turnTween(); type$.Animation_double._as(t1); t3.toString; t1.addListener$1(0, t2); t1.addStatusListener$1(_this.get$_resetOrientationAnimation()); _this.___SortArrowState__orientationAnimation = new A._AnimatedEvaluation(t1, t3, t3.$ti._eval$1("_AnimatedEvaluation")); t1 = _this._widget; if (t1.visible) { t1 = t1.up; t1.toString; _this._orientationOffset = t1 ? 0 : 3.141592653589793; } }, _data_table$_rebuild$0() { this.setState$1(new A._SortArrowState__rebuild_closure()); }, _resetOrientationAnimation$1($status) { if ($status === B.AnimationStatus_3) { this._orientationOffset += 3.141592653589793; A._lateReadCheck(this.___SortArrowState__orientationController, "_orientationController").set$value(0, 0); } }, didUpdateWidget$1(oldWidget) { var t1, newUp, t2, skipArrow, _this = this, _s18_ = "_opacityController", _s22_ = "_orientationController"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; newUp = t1.up; if (newUp == null) newUp = _this._data_table$_up; t2 = oldWidget.visible; t1 = t1.visible; if (t2 !== t1) { if (t1 && A._lateReadCheck(A._lateReadCheck(_this.___SortArrowState__opacityController, _s18_).__AnimationController__status, "_status") === B.AnimationStatus_0) { A._lateReadCheck(_this.___SortArrowState__orientationController, _s22_).stop$0(0); A._lateReadCheck(_this.___SortArrowState__orientationController, _s22_).set$value(0, 0); newUp.toString; _this._orientationOffset = newUp ? 0 : 3.141592653589793; skipArrow = true; } else skipArrow = false; t1 = _this._widget.visible; t2 = _this.___SortArrowState__opacityController; if (t1) A._lateReadCheck(t2, _s18_).forward$0(0); else A._lateReadCheck(t2, _s18_).reverse$0(0); } else skipArrow = false; if (_this._data_table$_up != newUp && !skipArrow) { t1 = A._lateReadCheck(A._lateReadCheck(_this.___SortArrowState__orientationController, _s22_).__AnimationController__status, "_status"); t2 = _this.___SortArrowState__orientationController; if (t1 === B.AnimationStatus_0) A._lateReadCheck(t2, _s22_).forward$0(0); else A._lateReadCheck(t2, _s22_).reverse$0(0); } _this._data_table$_up = newUp; }, dispose$0(_) { A._lateReadCheck(this.___SortArrowState__opacityController, "_opacityController").dispose$0(0); A._lateReadCheck(this.___SortArrowState__orientationController, "_orientationController").dispose$0(0); this.super$__SortArrowState_State_TickerProviderStateMixin$dispose0(0); }, build$1(_, context) { var t1 = A._lateReadCheck(this.___SortArrowState__opacityAnimation, "_opacityAnimation"), t2 = this._orientationOffset, t3 = A._lateReadCheck(this.___SortArrowState__orientationAnimation, "_orientationAnimation"), t4 = t3._evaluatable; t3 = t3.parent; t3 = A.Matrix4_Matrix4$rotationZ(t2 + t4.transform$1(0, t3.get$value(t3))); t3.setTranslationRaw$3(0, -1.5, 0); return A.FadeTransition$(false, A.Transform$(B.Alignment_0_0, B.Icon_CKg, t3, true), t1); } }; A._SortArrowState__rebuild_closure.prototype = { call$0() { }, $signature: 0 }; A._NullTableColumnWidth.prototype = { maxIntrinsicWidth$2(cells, containerWidth) { return A.throwExpression(A.UnimplementedError$(null)); }, minIntrinsicWidth$2(cells, containerWidth) { return A.throwExpression(A.UnimplementedError$(null)); } }; A._NullWidget.prototype = { createElement$0(_) { return A.throwExpression(A.UnimplementedError$(null)); } }; A.__SortArrowState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.DataTableSource.prototype = {}; A.DataTableThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.decoration, _this.dataRowColor, _this.dataRowHeight, _this.dataTextStyle, _this.headingRowColor, _this.headingRowHeight, _this.headingTextStyle, _this.horizontalMargin, _this.columnSpacing, _this.dividerThickness, _this.checkboxHorizontalMargin, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.DataTableThemeData && J.$eq$(other.decoration, _this.decoration) && other.dataRowColor == _this.dataRowColor && other.dataRowHeight == _this.dataRowHeight && J.$eq$(other.dataTextStyle, _this.dataTextStyle) && other.headingRowColor == _this.headingRowColor && other.headingRowHeight == _this.headingRowHeight && J.$eq$(other.headingTextStyle, _this.headingTextStyle) && other.horizontalMargin == _this.horizontalMargin && other.columnSpacing == _this.columnSpacing && other.dividerThickness == _this.dividerThickness && other.checkboxHorizontalMargin == _this.checkboxHorizontalMargin; } }; A._LerpProperties3.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._DataTableThemeData_Object_Diagnosticable.prototype = {}; A.DatePickerEntryMode.prototype = { toString$0(_) { return "DatePickerEntryMode." + this._core$_name; } }; A.DatePickerMode.prototype = { toString$0(_) { return "DatePickerMode." + this._core$_name; } }; A.showDatePicker_closure.prototype = { call$1(context) { var t1 = this._box_0.dialog; return t1; }, $signature: 78 }; A.DatePickerDialog.prototype = { createState$0() { var _null = null; return new A._DatePickerDialogState(new A._RestorableAutovalidateMode(B.AutovalidateMode_0, $.$get$ChangeNotifier__emptyListeners()), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_FormState), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0); } }; A._DatePickerDialogState.prototype = { get$_selectedDate() { var t1, t2, value = this.___DatePickerDialogState__selectedDate; if (value === $) { t1 = this._widget.initialDate; t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(value, "_selectedDate"); value = this.___DatePickerDialogState__selectedDate = new A.RestorableDateTime(t1, t2); } return value; }, get$_entryMode() { var t1, t2, value = this.___DatePickerDialogState__entryMode; if (value === $) { t1 = this._widget.initialEntryMode; t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(value, "_entryMode"); value = this.___DatePickerDialogState__entryMode = new A._RestorableDatePickerEntryMode(t1, t2); } return value; }, get$restorationId() { this._widget.toString; return null; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this.get$_selectedDate(), "selected_date"); _this.registerForRestoration$2(_this._autovalidateMode, "autovalidateMode"); _this.registerForRestoration$2(_this.get$_entryMode(), "calendar_entry_mode"); }, _handleOk$0() { var t1, t2, _this = this; if (J.$eq$(_this.get$_entryMode()._restoration_properties$_value, B.DatePickerEntryMode_1) || J.$eq$(_this.get$_entryMode()._restoration_properties$_value, B.DatePickerEntryMode_3)) { t1 = _this._formKey.get$currentState(); t1.toString; if (!t1.validate$0()) { _this.setState$1(new A._DatePickerDialogState__handleOk_closure(_this)); return; } t1.save$0(0); } t1 = _this._framework$_element; t1.toString; t2 = _this.get$_selectedDate()._restoration_properties$_value; A.Navigator_of(t1, false).pop$1(0, t2); }, _handleCancel$0() { var t1 = this._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$1(0, null); }, _handleEntryModeToggle$0() { this.setState$1(new A._DatePickerDialogState__handleEntryModeToggle_closure(this)); }, _handleDateChanged$1(date) { this.setState$1(new A._DatePickerDialogState__handleDateChanged_closure(this, date)); }, _dialogSize$1(context) { var _s80_ = string$.x60null_c, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, orientation = t1.get$orientation(t1); switch (this.get$_entryMode()._restoration_properties$_value) { case B.DatePickerEntryMode_0: case B.DatePickerEntryMode_2: switch (orientation.index) { case 0: return B.Size_330_518; case 1: return B.Size_496_346; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case B.DatePickerEntryMode_1: case B.DatePickerEntryMode_3: switch (orientation.index) { case 0: return B.Size_330_270; case 1: return B.Size_496_160; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, build$1(_, context) { var t2, t3, orientation, textTheme, textScaleFactor, dateText, onPrimarySurface, t4, dateStyle, t5, actions, calendarDatePicker, inputDatePicker, entryModeButton, dialogSize, _this = this, _null = null, _box_0 = {}, theme = A.Theme_of(context), colorScheme = theme.colorScheme, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = type$.MediaQuery; t3 = context.dependOnInheritedWidgetOfExactType$1$0(t2).data; orientation = t3.get$orientation(t3); textTheme = theme.textTheme; textScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(t2).data.textScaleFactor, 1.3); dateText = t1.formatMediumDate$1(_this.get$_selectedDate()._restoration_properties$_value); onPrimarySurface = colorScheme.brightness === B.Brightness_1 ? colorScheme.onPrimary : colorScheme.onSurface; t3 = orientation === B.Orientation_1; if (t3) { t4 = textTheme.headlineSmall; dateStyle = t4 == null ? _null : t4.copyWith$1$color(onPrimarySurface); } else { t4 = textTheme.headlineMedium; dateStyle = t4 == null ? _null : t4.copyWith$1$color(onPrimarySurface); } _this._widget.toString; t4 = t1.get$cancelButtonLabel(); t4 = A.TextButton$(false, A.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_handleCancel(), _null); _this._widget.toString; t5 = t1.get$okButtonLabel(); actions = A.Container$(B.AlignmentDirectional_1_0, A.OverflowBar$(_null, A._setArrayType([t4, A.TextButton$(false, A.Text$(t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_handleOk(), _null)], type$.JSArray_Widget), B.OverflowBarAlignment_0, B.VerticalDirection_1, 0, 8), B.Clip_0, _null, B.BoxConstraints_mlX3, _null, _null, _null, _null, _null, B.EdgeInsets_8_0_8_0, _null, _null, _null); calendarDatePicker = new A._DatePickerDialogState_build_calendarDatePicker(_this); inputDatePicker = new A._DatePickerDialogState_build_inputDatePicker(_this, orientation); _box_0.picker = null; switch (_this.get$_entryMode()._restoration_properties$_value) { case B.DatePickerEntryMode_0: _box_0.picker = calendarDatePicker.call$0(); entryModeButton = A.IconButton$(B.Alignment_0_0, onPrimarySurface, _null, true, B.Icon_NEt, _null, _this.get$_handleEntryModeToggle(), B.EdgeInsets_8_8_8_8, _null, t1.get$inputDateModeButtonLabel(), _null); break; case B.DatePickerEntryMode_2: _box_0.picker = calendarDatePicker.call$0(); entryModeButton = _null; break; case B.DatePickerEntryMode_1: _box_0.picker = inputDatePicker.call$0(); entryModeButton = A.IconButton$(B.Alignment_0_0, onPrimarySurface, _null, true, B.Icon_vjf, _null, _this.get$_handleEntryModeToggle(), B.EdgeInsets_8_8_8_8, _null, t1.get$calendarModeButtonLabel(), _null); break; case B.DatePickerEntryMode_3: _box_0.picker = inputDatePicker.call$0(); entryModeButton = _null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._widget.toString; t1 = t1.get$datePickerHelpText(); dialogSize = _this._dialogSize$1(context).$mul(0, textScaleFactor); return A.Dialog$(_null, _null, A.AnimatedContainer$(new A.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(t2).data.copyWith$1$textScaleFactor(textScaleFactor), new A.Builder(new A._DatePickerDialogState_build_closure(_box_0, orientation, new A._DatePickerHeader(t1, dateText, dateStyle, orientation, t3, entryModeButton, _null), actions), _null), _null), _null, B.Cubic_JUR0, _null, B.Duration_200000, dialogSize._dy, _null, _null, _null, dialogSize._dx), B.Clip_2, _null, B.EdgeInsets_16_24_16_24, _null); } }; A._DatePickerDialogState__handleOk_closure.prototype = { call$0() { this.$this._autovalidateMode.set$value(0, B.AutovalidateMode_1); return B.AutovalidateMode_1; }, $signature: 0 }; A._DatePickerDialogState__handleEntryModeToggle_closure.prototype = { call$0() { var t1 = this.$this; switch (t1.get$_entryMode()._restoration_properties$_value) { case B.DatePickerEntryMode_0: t1._autovalidateMode.set$value(0, B.AutovalidateMode_0); t1.get$_entryMode().set$value(0, B.DatePickerEntryMode_1); break; case B.DatePickerEntryMode_1: t1._formKey.get$currentState().save$0(0); t1.get$_entryMode().set$value(0, B.DatePickerEntryMode_0); break; case B.DatePickerEntryMode_2: case B.DatePickerEntryMode_3: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; A._DatePickerDialogState__handleDateChanged_closure.prototype = { call$0() { this.$this.get$_selectedDate().set$value(0, this.date); }, $signature: 0 }; A._DatePickerDialogState_build_calendarDatePicker.prototype = { call$0() { var t1 = this.$this, t2 = t1.get$_selectedDate()._restoration_properties$_value, t3 = t1._widget, t4 = t3.firstDate, t5 = t3.lastDate, t6 = t3.currentDate, t7 = t3.selectableDayPredicate; t3 = t3.initialCalendarMode; t2.toString; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t2), A.Primitives_getDay(t2), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t4 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t4), A.Primitives_getMonth(t4), A.Primitives_getDay(t4), 0, 0, 0, 0, false); if (!A._isInt(t4)) A.throwExpression(A.argumentErrorValue(t4)); t5 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t5), A.Primitives_getMonth(t5), A.Primitives_getDay(t5), 0, 0, 0, 0, false); if (!A._isInt(t5)) A.throwExpression(A.argumentErrorValue(t5)); t6 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t6), A.Primitives_getMonth(t6), A.Primitives_getDay(t6), 0, 0, 0, 0, false); if (!A._isInt(t6)) A.throwExpression(A.argumentErrorValue(t6)); return new A.CalendarDatePicker(new A.DateTime(t2, false), new A.DateTime(t4, false), new A.DateTime(t5, false), new A.DateTime(t6, false), t1.get$_handleDateChanged(), t3, t7, t1._calendarPickerKey); }, $signature: 2353 }; A._DatePickerDialogState_build_inputDatePicker.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = t1._autovalidateMode._restoration_properties$_value, t3 = this.orientation === B.Orientation_0 ? 98 : 108, t4 = t1.get$_selectedDate()._restoration_properties$_value, t5 = t1._widget, t6 = t5.firstDate, t7 = t5.lastDate, t8 = t1.get$_handleDateChanged(), t9 = t5.selectableDayPredicate, t10 = t5.errorFormatText, t11 = t5.errorInvalidText, t12 = t5.fieldHintText, t13 = t5.fieldLabelText; t5 = t5.keyboardType; if (t4 != null) { t4 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t4), A.Primitives_getMonth(t4), A.Primitives_getDay(t4), 0, 0, 0, 0, false); if (!A._isInt(t4)) A.throwExpression(A.argumentErrorValue(t4)); t4 = new A.DateTime(t4, false); } else t4 = _null; t6 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t6), A.Primitives_getMonth(t6), A.Primitives_getDay(t6), 0, 0, 0, 0, false); if (!A._isInt(t6)) A.throwExpression(A.argumentErrorValue(t6)); t7 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t7), A.Primitives_getMonth(t7), A.Primitives_getDay(t7), 0, 0, 0, 0, false); if (!A._isInt(t7)) A.throwExpression(A.argumentErrorValue(t7)); return A.Form$(t2, A.Container$(_null, new A.Shortcuts(B.Map_TbTh7, A.Column$(A._setArrayType([B.Spacer_null, new A.InputDatePickerFormField(t4, new A.DateTime(t6, false), new A.DateTime(t7, false), t8, t8, t9, t10, t11, t12, t13, t5, true, _null), B.Spacer_null], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null), B.Clip_0, _null, _null, _null, _null, t3, _null, _null, B.EdgeInsets_24_0_24_0, _null, _null, _null), t1._formKey); }, $signature: 2352 }; A._DatePickerDialogState_build_closure.prototype = { call$1(context) { var t1, _this = this, _null = null; switch (_this.orientation.index) { case 0: return A.Column$(A._setArrayType([_this.header, A.Expanded$(_this._box_0.picker, 1), _this.actions], type$.JSArray_Widget), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); case 1: t1 = type$.JSArray_Widget; return A.Row$(A._setArrayType([_this.header, new A.Flexible(1, B.FlexFit_1, A.Column$(A._setArrayType([A.Expanded$(_this._box_0.picker, 1), _this.actions], t1), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null)], t1), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 2348 }; A._RestorableDatePickerEntryMode.prototype = { createDefaultValue$0() { return this._date_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_YT6[A._asIntS(data)]; }, toPrimitives$0() { return this._restoration_properties$_value.index; } }; A._RestorableAutovalidateMode.prototype = { createDefaultValue$0() { return this._date_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_wbZ[A._asIntS(data)]; }, toPrimitives$0() { return this._restoration_properties$_value.index; } }; A._DatePickerHeader.prototype = { build$1(_, context) { var t2, t3, title, _this = this, _null = null, theme = A.Theme_of(context), colorScheme = theme.colorScheme, textTheme = theme.textTheme, isDark = colorScheme.brightness === B.Brightness_0, primarySurfaceColor = isDark ? colorScheme.surface : colorScheme.primary, onPrimarySurfaceColor = isDark ? colorScheme.onSurface : colorScheme.onPrimary, t1 = textTheme.labelSmall, helpStyle = t1 == null ? _null : t1.copyWith$1$color(onPrimarySurfaceColor), help = A.Text$(_this.helpText, _null, 1, B.TextOverflow_2, _null, _null, helpStyle, _null, _null, _null); t1 = _this.titleText; t2 = _this.orientation; t3 = t2 === B.Orientation_0 ? 1 : 2; title = A.Text$(t1, _null, t3, B.TextOverflow_2, t1, _null, _this.titleStyle, _null, _null, _null); switch (t2.index) { case 0: t1 = type$.JSArray_Widget; t2 = A._setArrayType([A.Expanded$(title, 1)], t1); t3 = _this.entryModeButton; if (t3 != null) t2.push(t3); return new A.SizedBox(_null, 120, A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsetsDirectional_24_0_12_0, A.Column$(A._setArrayType([B.SizedBox_null_16_null_null, help, B.Flexible_swd, A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t1), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), B.Clip_0, primarySurfaceColor, 0, _null, _null, _null, _null, _null, B.MaterialType_0), _null); case 1: t1 = _this.isShort ? 16 : 56; t1 = A._setArrayType([B.SizedBox_null_16_null_null, new A.Padding(B.EdgeInsets_16_0_16_0, help, _null), new A.SizedBox(_null, t1, _null, _null), A.Expanded$(new A.Padding(B.EdgeInsets_16_0_16_0, title, _null), 1)], type$.JSArray_Widget); t2 = _this.entryModeButton; if (t2 != null) t1.push(new A.Padding(B.EdgeInsets_4_0_4_0, t2, _null)); return new A.SizedBox(152, _null, A.Material$(B.Duration_200000, true, _null, A.Column$(t1, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, primarySurfaceColor, 0, _null, _null, _null, _null, _null, B.MaterialType_0), _null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.__DatePickerDialogState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__DatePickerDialogState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__DatePickerDialogState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A._DesktopTextSelectionControls.prototype = { getHandleSize$1(textLineHeight) { return B.Size_0_0; }, buildHandle$4(context, type, textLineHeight, onTap) { return B.SizedBox_0_0_null_null; }, getHandleAnchor$2(type, textLineHeight) { return B.Offset_0_0; } }; A.Dialog.prototype = { build$1(_, context) { var defaults, t1, t2, effectivePadding, t3, t4, t5, _this = this, _null = null, theme = A.Theme_of(context), dialogTheme = A.Theme_of(context).dialogTheme; theme.toString; defaults = A._DefaultsM2$(context); t1 = type$.MediaQuery; t2 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data; effectivePadding = t2.viewInsets.$add(0, _this.insetPadding); t2 = dialogTheme.alignment; if (t2 == null) { t2 = defaults.alignment; t2.toString; } t3 = _this.backgroundColor; if (t3 == null) t3 = dialogTheme.backgroundColor; if (t3 == null) t3 = A.Theme_of(context).dialogBackgroundColor; t4 = dialogTheme.elevation; if (t4 == null) { t4 = defaults.elevation; t4.toString; } t5 = _this.shape; if (t5 == null) t5 = dialogTheme.shape; if (t5 == null) { t5 = defaults.shape; t5.toString; } t5 = A.Material$(B.Duration_200000, true, _null, _this.child, _this.clipBehavior, t3, t4, _null, _null, t5, _null, _null, B.MaterialType_1); return new A.AnimatedPadding(effectivePadding, new A.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(t1).data.removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop(true, true, true, true), new A.Align(t2, _null, _null, new A.ConstrainedBox(B.BoxConstraints_mlX, t5, _null), _null), _null), B.C__DecelerateCurve, B.Duration_100000, _null, _null); } }; A.AlertDialog.prototype = { build$1(_, context) { var defaults, label, t1, t2, paddingScaleFactor, t3, t4, t5, t6, t7, titleWidget, effectiveContentPadding, contentWidget, actionsWidget, dialogChild, _this = this, _null = null, theme = A.Theme_of(context), dialogTheme = A.Theme_of(context).dialogTheme; theme.toString; defaults = A._DefaultsM2$(context); label = _this.semanticLabel; t1 = theme.platform; switch (t1) { case B.TargetPlatform_2: case B.TargetPlatform_4: break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: if (label == null) { t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; label = t2.get$alertDialogLabel(); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } paddingScaleFactor = A._paddingScaleFactor(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor); A.Directionality_maybeOf(context); t2 = _this.title; t3 = t2 == null; t4 = !t3; if (t4) { t5 = _this.content == null ? 20 : 0; t6 = 24 * paddingScaleFactor; t7 = dialogTheme.titleTextStyle; if (t7 == null) { t7 = defaults.get$titleTextStyle(); t7.toString; } t1 = label == null && t1 !== B.TargetPlatform_2; titleWidget = new A.Padding(new A.EdgeInsets(t6, t6, t6, t5), A.DefaultTextStyle$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t2, _null), _null, _null, B.TextOverflow_0, true, t7, _null, _null, B.TextWidthBasis_0), _null); } else titleWidget = _null; t1 = _this.content; t2 = t1 != null; if (t2) { effectiveContentPadding = _this.contentPadding; t5 = effectiveContentPadding.top; t3 = t3 ? t5 * paddingScaleFactor : t5; t5 = dialogTheme.contentTextStyle; if (t5 == null) { t5 = defaults.get$contentTextStyle(); t5.toString; } contentWidget = new A.Padding(new A.EdgeInsets(effectiveContentPadding.left * paddingScaleFactor, t3, effectiveContentPadding.right * paddingScaleFactor, effectiveContentPadding.bottom), A.DefaultTextStyle$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t1, _null), _null, _null, B.TextOverflow_0, true, t5, _null, _null, B.TextWidthBasis_0), _null); } else contentWidget = _null; t1 = _this.actionsPadding.add$1(0, new A.EdgeInsets(8, 8, 8, 8)); actionsWidget = new A.Padding(t1, A.OverflowBar$(B.MainAxisAlignment_1, _this.actions, B.OverflowBarAlignment_1, B.VerticalDirection_1, 0, 8), _null); t1 = A._setArrayType([], type$.JSArray_Widget); if (t4) { titleWidget.toString; t1.push(titleWidget); } if (t2) { contentWidget.toString; t1.push(new A.Flexible(1, B.FlexFit_1, contentWidget, _null)); } t1.push(actionsWidget); dialogChild = A.IntrinsicWidth$(A.Column$(t1, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null); if (label != null) dialogChild = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, dialogChild, _null); return A.Dialog$(_null, _this.backgroundColor, dialogChild, B.Clip_0, _null, B.EdgeInsets_40_24_40_24, _null); } }; A.SimpleDialogOption.prototype = { build$1(_, context) { var _null = null; return A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_24_8_24_8, this.child, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.onPressed, _null, _null, _null, _null, _null, _null); } }; A.SimpleDialog.prototype = { build$1(_, context) { var label, t2, paddingScaleFactor, t3, t4, t5, t6, titleWidget, contentWidget, dialogChild, _null = null, theme = A.Theme_of(context), t1 = theme.platform; switch (t1) { case B.TargetPlatform_4: case B.TargetPlatform_2: label = _null; break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; label = t2.get$dialogLabel(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } paddingScaleFactor = A._paddingScaleFactor(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor); A.Directionality_maybeOf(context); t2 = this.title; t3 = t2 == null; t4 = !t3; if (t4) { t5 = 24 * paddingScaleFactor; t6 = A.Theme_of(context).dialogTheme.titleTextStyle; if (t6 == null) { t6 = theme.textTheme.titleLarge; t6.toString; } t1 = label == null && t1 !== B.TargetPlatform_2; titleWidget = new A.Padding(new A.EdgeInsets(t5, t5, t5, 0), A.DefaultTextStyle$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t2, _null), _null, _null, B.TextOverflow_0, true, t6, _null, _null, B.TextWidthBasis_0), _null); } else titleWidget = _null; t1 = 0 * paddingScaleFactor; t2 = t3 ? 12 * paddingScaleFactor : 12; contentWidget = new A.Flexible(1, B.FlexFit_1, A.SingleChildScrollView$(A.ListBody$(this.children, B.Axis_1), _null, B.DragStartBehavior_1, new A.EdgeInsets(t1, t2, t1, 16 * paddingScaleFactor), _null, _null, false, B.Axis_1), _null); t1 = A._setArrayType([], type$.JSArray_Widget); if (t4) { titleWidget.toString; t1.push(titleWidget); } t1.push(contentWidget); dialogChild = A.IntrinsicWidth$(new A.ConstrainedBox(B.BoxConstraints_mlX, A.Column$(t1, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), 56); if (label != null) dialogChild = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, dialogChild, _null); return A.Dialog$(_null, _null, dialogChild, B.Clip_0, _null, B.EdgeInsets_40_24_40_24, _null); } }; A.DialogRoute.prototype = {}; A.DialogRoute_closure.prototype = { call$3(buildContext, animation, secondaryAnimation) { var dialog = new A._CaptureAll(this.themes._themes, new A.Builder(this.builder, null), null); dialog = A.SafeArea$(true, dialog, B.EdgeInsets_0_0_0_0, true); return dialog; }, "call*": "call$3", $requiredArgCount: 3, $signature: 2345 }; A._DefaultsM2.prototype = { get$backgroundColor(_) { return A.Theme_of(this.context).dialogBackgroundColor; }, get$titleTextStyle() { return this._textTheme.titleLarge; }, get$contentTextStyle() { return this._textTheme.titleMedium; } }; A.DialogTheme.prototype = { get$hashCode(_) { return J.get$hashCode$(this.shape); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.DialogTheme && J.$eq$(other.get$backgroundColor(other), _this.get$backgroundColor(_this)) && other.elevation == _this.elevation && J.$eq$(other.shape, _this.shape) && J.$eq$(other.alignment, _this.alignment) && J.$eq$(other.get$titleTextStyle(), _this.get$titleTextStyle()) && J.$eq$(other.get$contentTextStyle(), _this.get$contentTextStyle()); }, get$backgroundColor(receiver) { return this.backgroundColor; }, get$titleTextStyle() { return this.titleTextStyle; }, get$contentTextStyle() { return this.contentTextStyle; } }; A._DialogTheme_Object_Diagnosticable.prototype = {}; A.Divider.prototype = { build$1(_, context) { var thickness, indent, endIndent, _null = null, dividerTheme = A.DividerTheme_of(context), t1 = this.height, height = t1 == null ? dividerTheme.space : t1; if (height == null) height = 16; t1 = this.thickness; thickness = t1 == null ? dividerTheme.thickness : t1; if (thickness == null) thickness = 0; indent = dividerTheme.indent; if (indent == null) indent = 0; endIndent = dividerTheme.endIndent; if (endIndent == null) endIndent = 0; return new A.SizedBox(_null, height, A.Center$(A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, A.Divider_createBorderSide(context, this.color, thickness), B.BorderSide_0CF), _null, _null, _null, B.BoxShape_0), _null, thickness, _null, new A.EdgeInsetsDirectional(indent, 0, endIndent, 0), _null, _null, _null, _null), _null, _null), _null); } }; A.DividerThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.color, _this.space, _this.thickness, _this.indent, _this.endIndent, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.DividerThemeData && J.$eq$(other.color, _this.color) && other.space == _this.space && other.thickness == _this.thickness && other.indent == _this.indent && other.endIndent == _this.endIndent; } }; A._DividerThemeData_Object_Diagnosticable.prototype = {}; A.DrawerAlignment.prototype = { toString$0(_) { return "DrawerAlignment." + this._core$_name; } }; A.Drawer.prototype = { build$1(_, context) { var label, t1, t2, t3, t4, _null = null, drawerTheme = A.DrawerTheme_of(context); switch (A.Theme_of(context).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: label = _null; break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; label = t1.get$drawerLabel(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = drawerTheme.width; t1 = A.BoxConstraints$expand(_null, t1 == null ? 304 : t1); t2 = drawerTheme.backgroundColor; t3 = drawerTheme.elevation; if (t3 == null) t3 = 16; t4 = drawerTheme.shape; t2 = A.Material$(B.Duration_200000, true, _null, this.child, B.Clip_0, t2, t3, _null, _null, t4, _null, _null, B.MaterialType_0); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, new A.ConstrainedBox(t1, t2, _null), _null); } }; A.DrawerController.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new A.DrawerControllerState(A.FocusScopeNode$(true, _null, false), new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), _null, _null, B._StateLifecycle_0); } }; A.DrawerControllerState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_246000, null, 1, _this._widget.isDrawerOpen ? 1 : 0, _this); _this.__DrawerControllerState__controller = t1; t1 = A._lateReadCheck(t1, "_controller"); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_animationChanged()); t1.addStatusListener$1(_this.get$_animationStatusChanged()); }, dispose$0(_) { var t1 = this._historyEntry; if (t1 != null) t1.remove$0(0); A._lateReadCheck(this.__DrawerControllerState__controller, "_controller").dispose$0(0); this.super$_DrawerControllerState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this.__DrawerControllerState__scrimColorTween = this._buildScrimColorTween$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (t1.isDrawerOpen != oldWidget.isDrawerOpen) switch (A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__status, "_status")) { case B.AnimationStatus_3: case B.AnimationStatus_0: t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); t1.set$value(0, _this._widget.isDrawerOpen ? 1 : 0); break; case B.AnimationStatus_1: case B.AnimationStatus_2: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _animationChanged$0() { this.setState$1(new A.DrawerControllerState__animationChanged_closure()); }, _ensureHistoryEntry$0() { var t1, route, _this = this; if (_this._historyEntry == null) { t1 = _this._framework$_element; t1.toString; route = A.ModalRoute_of(t1, type$.nullable_Object); if (route != null) { t1 = new A.LocalHistoryEntry(_this.get$_handleHistoryEntryRemoved()); _this._historyEntry = t1; route.addLocalHistoryEntry$1(t1); t1 = _this._framework$_element; t1.toString; A.FocusScope_of(t1).setFirstFocus$1(_this._drawer$_focusScopeNode); } } }, _animationStatusChanged$1($status) { var t1; switch ($status) { case B.AnimationStatus_1: this._ensureHistoryEntry$0(); break; case B.AnimationStatus_2: t1 = this._historyEntry; if (t1 != null) t1.remove$0(0); this._historyEntry = null; break; case B.AnimationStatus_0: break; case B.AnimationStatus_3: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _handleHistoryEntryRemoved$0() { this._historyEntry = null; this.close$0(0); }, _handleDragDown$1(details) { A._lateReadCheck(this.__DrawerControllerState__controller, "_controller").stop$0(0); this._ensureHistoryEntry$0(); }, _handleDragCancel$0() { var _this = this, _s11_ = "_controller", t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); if (t1.get$status(t1) !== B.AnimationStatus_0) { t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_)._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = true; if (t1) return; if (A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__value, "_value") < 0.5) _this.close$0(0); else _this.open$0(0); }, get$_drawer$_width(_) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._drawer$_drawerKey); t1 = t1 == null ? null : t1.get$renderObject(); type$.nullable_RenderBox._as(t1); if (t1 != null) return t1._box$_size._dx; return 304; }, _move$1(details) { var delta, opened, _this = this, _s80_ = string$.x60null_c, _s11_ = "_controller", _s6_ = "_value", t1 = details.primaryDelta; t1.toString; delta = t1 / _this.get$_drawer$_width(_this); switch (_this._widget.alignment.index) { case 0: break; case 1: delta = -delta; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, _s6_) - delta); break; case B.TextDirection_1: t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, _s6_) + delta); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } opened = A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__value, _s6_) > 0.5; if (opened !== _this._previouslyOpened) { _this._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.drawerCallback.call$1(opened); _this._previouslyOpened = opened; }, _settle$1(details) { var visualVelocity, _this = this, _s11_ = "_controller", _s80_ = string$.x60null_c, t1 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); if (t1.get$status(t1) === B.AnimationStatus_0) return; t1 = details.velocity.pixelsPerSecond._dx; if (Math.abs(t1) >= 365) { visualVelocity = t1 / _this.get$_drawer$_width(_this); switch (_this._widget.alignment.index) { case 0: break; case 1: visualVelocity = -visualVelocity; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).fling$1$velocity(-visualVelocity); _this._widget.drawerCallback.call$1(visualVelocity < 0); break; case B.TextDirection_1: A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).fling$1$velocity(visualVelocity); _this._widget.drawerCallback.call$1(visualVelocity > 0); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } else if (A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__value, "_value") < 0.5) _this.close$0(0); else _this.open$0(0); }, open$0(_) { A._lateReadCheck(this.__DrawerControllerState__controller, "_controller").fling$0(); this._widget.drawerCallback.call$1(true); }, close$0(_) { A._lateReadCheck(this.__DrawerControllerState__controller, "_controller").fling$1$velocity(-1); this._widget.drawerCallback.call$1(false); }, _buildScrimColorTween$0() { this._widget.toString; var t1 = this._framework$_element; t1.toString; t1 = A.DrawerTheme_of(t1).scrimColor; return new A.ColorTween(B.Color_0, t1 == null ? B.Color_2315255808 : t1); }, get$_drawerOuterAlignment() { switch (this._widget.alignment.index) { case 0: return B.AlignmentDirectional_m1_0; case 1: return B.AlignmentDirectional_1_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_drawerInnerAlignment() { switch (this._widget.alignment.index) { case 0: return B.AlignmentDirectional_1_0; case 1: return B.AlignmentDirectional_m1_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _drawer$_buildDrawer$1(context) { var dragAreaWidth, t2, platformHasBackButton, t3, t4, _this = this, _null = null, _s80_ = string$.x60null_c, _s11_ = "_controller", drawerIsStart = _this._widget.alignment === B.DrawerAlignment_0, padding = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this._widget.toString; switch (t1.textDirection) { case B.TextDirection_1: dragAreaWidth = 20 + (drawerIsStart ? padding.left : padding.right); break; case B.TextDirection_0: dragAreaWidth = 20 + (drawerIsStart ? padding.right : padding.left); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__status, "_status") === B.AnimationStatus_0) { _this._widget.toString; t1 = _this.get$_drawerOuterAlignment(); t2 = _this._widget.dragStartBehavior; t2 = A.GestureDetector$(B.HitTestBehavior_2, A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, dragAreaWidth), t2, true, _this._drawer$_gestureDetectorKey, _null, _null, _null, _this.get$_settle(), _null, _this.get$_move(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.Align(t1, _null, _null, t2, _null); } else { switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: platformHasBackButton = true; break; case B.TargetPlatform_2: case B.TargetPlatform_4: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: platformHasBackButton = false; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = _this._widget.dragStartBehavior; t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t2 = t2.get$modalBarrierDismissLabel(); t3 = A._lateReadCheck(_this.__DrawerControllerState__scrimColorTween, "_scrimColorTween"); t4 = A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_); t4 = A.MouseRegion$(A.Container$(_null, _null, B.Clip_0, t3.transform$1(0, t4.get$value(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.C__DeferringMouseCursor, _null, _null, _null, _null); return A.GestureDetector$(_null, new A.RepaintBoundary(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([A.BlockSemantics$(new A.ExcludeSemantics(platformHasBackButton, A.GestureDetector$(_null, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t4, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$close(_this), _null, _null, _null, _null, _null, _null), _null)), new A.Align(_this.get$_drawerOuterAlignment(), _null, _null, new A.Align(_this.get$_drawerInnerAlignment(), A._lateReadCheck(A._lateReadCheck(_this.__DrawerControllerState__controller, _s11_).__AnimationController__value, "_value"), _null, new A.RepaintBoundary(A.FocusScope$(false, _this._widget.child, _this._drawer$_drawerKey, _this._drawer$_focusScopeNode), _null), _null), _null)], type$.JSArray_Widget), _null), _null), t1, true, _this._drawer$_gestureDetectorKey, _null, _this.get$_handleDragCancel(), _this.get$_handleDragDown(), _this.get$_settle(), _null, _this.get$_move(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }, build$1(_, context) { return A.ListTileTheme$(this._drawer$_buildDrawer$1(context), null, null, B.ListTileStyle_1); } }; A.DrawerControllerState__animationChanged_closure.prototype = { call$0() { }, $signature: 0 }; A._DrawerControllerState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.DrawerThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.scrimColor, _this.elevation, _this.shape, _this.width, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.DrawerThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.scrimColor, _this.scrimColor) && other.elevation == _this.elevation && J.$eq$(other.shape, _this.shape) && other.width == _this.width; } }; A._DrawerThemeData_Object_Diagnosticable.prototype = {}; A._DropdownMenuPainter.prototype = { paint$2(canvas, size) { var _null = null, selectedItemOffset = this.getSelectedItemOffset.call$0(), t1 = size._dy, t2 = J.clamp$2$n(selectedItemOffset, 0, Math.max(t1 - 48, 0)), t3 = type$.Tween_double, t4 = B.JSNumber_methods.clamp$2(t2 + 48, Math.min(48, t1), t1), t5 = this.resize; t2 = new A.Tween(t2, 0, t3).transform$1(0, t5.get$value(t5)); this._dropdown$_painter.paint$3(canvas, new A.Offset(0, t2), new A.ImageConfiguration(_null, _null, _null, _null, new A.Size(size._dx - 0, new A.Tween(t4, t1, t3).transform$1(0, t5.get$value(t5)) - t2), _null)); }, shouldRepaint$1(oldPainter) { var t1, _this = this; if (J.$eq$(oldPainter.color, _this.color)) if (oldPainter.elevation === _this.elevation) if (oldPainter.selectedIndex === _this.selectedIndex) t1 = oldPainter.resize !== _this.resize; else t1 = true; else t1 = true; else t1 = true; return t1; } }; A._DropdownMenuItemButton.prototype = { createState$0() { return new A._DropdownMenuItemButtonState(B._StateLifecycle_0, this.$ti._eval$1("_DropdownMenuItemButtonState<1>")); } }; A._DropdownMenuItemButtonState.prototype = { _dropdown$_handleFocusChange$1(focused) { var inTraditionalMode, menuLimits, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch ((t1 == null ? A.FocusManager__defaultModeForPlatform() : t1).index) { case 0: inTraditionalMode = false; break; case 1: inTraditionalMode = true; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (focused && inTraditionalMode) { t1 = this._widget; menuLimits = t1.route.getMenuLimits$3(t1.buttonRect, t1.constraints.maxHeight, t1.itemIndex); this._widget.route.scrollController.animateTo$3$curve$duration(menuLimits.scrollOffset, B.Cubic_xDo, B.Duration_100000); } }, _handleOnTap$0() { var t2, t1 = this._widget, dropdownMenuItem = t1.route.items[t1.itemIndex].item; t1 = dropdownMenuItem.onTap; if (t1 != null) t1.call$0(); t1 = this._framework$_element; t1.toString; t2 = dropdownMenuItem.value; A.Navigator_of(t1, false).pop$1(0, new A._DropdownRouteResult(t2, this.$ti._eval$1("_DropdownRouteResult<1>"))); }, build$1(_, context) { var unit, opacity, start, end, child, _this = this, _null = null, t1 = _this._widget, t2 = t1.route, t3 = t2.items; t1 = t1.itemIndex; t3[t1].item.toString; unit = 0.5 / (t3.length + 1.5); if (t1 === t2.selectedIndex) { t1 = t2._animationProxy; t1.toString; opacity = A.CurvedAnimation$(B.Threshold_0, t1, _null); } else { start = B.JSNumber_methods.clamp$2(0.5 + (t1 + 1) * unit, 0, 1); end = B.JSNumber_methods.clamp$2(start + 1.5 * unit, 0, 1); t1 = _this._widget.route._animationProxy; t1.toString; opacity = A.CurvedAnimation$(new A.Interval(start, end, B.C__Linear), t1, _null); } t1 = _this._widget; t2 = t1.padding; t3 = t1.route; t1 = t1.itemIndex; child = A.InkWell$(t1 === t3.selectedIndex, _null, true, A.Container$(_null, t3.items[t1], B.Clip_0, _null, _null, _null, _null, t3.itemHeight, _null, _null, t2, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _this.get$_dropdown$_handleFocusChange(), _null, _null, _null, _this.get$_handleOnTap(), _null, _null, _null, _null, _null, _null); child = A.FadeTransition$(false, child, opacity); return new A.Shortcuts(B.Map_cW2nU, child, _null, _null); } }; A._DropdownMenu.prototype = { createState$0() { return new A._DropdownMenuState(B._StateLifecycle_0, this.$ti._eval$1("_DropdownMenuState<1>")); } }; A._DropdownMenuState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.route._animationProxy; t1.toString; _this.___DropdownMenuState__fadeOpacity = A.CurvedAnimation$(B.Interval_75R2, t1, B.Interval_75R3); t1 = _this._widget.route._animationProxy; t1.toString; _this.___DropdownMenuState__resize = A.CurvedAnimation$(B.Interval_75R4, t1, B.Threshold_0); }, build$1(_, context) { var route, t2, t3, t4, itemIndex, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; route = _this._widget.route; t2 = A._setArrayType([], type$.JSArray_Widget); for (t3 = route.items, t4 = _this.$ti._eval$1("_DropdownMenuItemButton<1>"), itemIndex = 0; itemIndex < t3.length; ++itemIndex) { t5 = _this._widget; t2.push(new A._DropdownMenuItemButton(t5.route, t5.padding, t5.buttonRect, t5.constraints, itemIndex, true, _null, t4)); } t3 = A._lateReadCheck(_this.___DropdownMenuState__fadeOpacity, "_fadeOpacity"); t4 = _this._widget.dropdownColor; if (t4 == null) t4 = A.Theme_of(context).canvasColor; t5 = route.elevation; t6 = A._lateReadCheck(_this.___DropdownMenuState__resize, "_resize"); t7 = _this._widget.borderRadius; t8 = B.Map_2Vato.$index(0, t5); t1 = t1.get$popupMenuLabel(); t9 = A.ScrollConfiguration_of(context).copyWith$4$overscroll$physics$platform$scrollbars(false, B.ClampingScrollPhysics_null, A.Theme_of(context).platform, false); t10 = _this._widget.route.scrollController; t10.toString; t10 = A.Material$(B.Duration_200000, true, _null, A.ScrollConfiguration$(t9, A.PrimaryScrollController$(A.Scrollbar$(A.ListView$(t2, _null, B.EdgeInsets_0_8_0_8, B.Axis_1, true), _null, true), t10)), B.Clip_0, _null, 0, _null, _null, _null, _null, route.style, B.MaterialType_4); return A.FadeTransition$(false, A.CustomPaint$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t10, _null), _null, _null, new A._DropdownMenuPainter(t4, t5, route.selectedIndex, t7, t6, new A._DropdownMenuState_build_closure(route), new A._BoxDecorationPainter(new A.BoxDecoration(t4, _null, _null, B.BorderRadius_tLn2, t8, _null, B.BoxShape_0), _null), t6), B.Size_0_0), t3); } }; A._DropdownMenuState_build_closure.prototype = { call$0() { var t1 = this.route; return t1.getItemOffset$1(t1.selectedIndex); }, $signature: 508 }; A._DropdownMenuRouteLayout.prototype = { getConstraintsForChild$1(constraints) { var maxHeight = Math.max(0, constraints.maxHeight - 96), t1 = this.buttonRect, width = Math.min(A.checkNum(constraints.maxWidth), t1.right - t1.left); return new A.BoxConstraints(width, width, 0, maxHeight); }, getPositionForChild$2(size, childSize) { var left, t1 = this.route, t2 = this.buttonRect, menuLimits = t1.getMenuLimits$3(t2, size._dy, t1.selectedIndex); switch (this.textDirection.index) { case 0: left = J.clamp$2$n(t2.right, 0, size._dx) - childSize._dx; break; case 1: left = J.clamp$2$n(t2.left, 0, size._dx - childSize._dx); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A.Offset(left, menuLimits.top); }, shouldRelayout$1(oldDelegate) { return !this.buttonRect.$eq(0, oldDelegate.buttonRect) || this.textDirection != oldDelegate.textDirection; } }; A._DropdownRouteResult.prototype = { $eq(_, other) { if (other == null) return false; return this.$ti._is(other) && J.$eq$(other.result, this.result); }, get$hashCode(_) { return J.get$hashCode$(this.result); } }; A._MenuLimits.prototype = {}; A._DropdownRoute.prototype = { get$transitionDuration(_) { return B.Duration_300000; }, get$barrierDismissible() { return true; }, get$barrierColor() { return null; }, buildPage$3(context, animation, secondaryAnimation) { return new A.LayoutBuilder(new A._DropdownRoute_buildPage_closure(this), null); }, getItemOffset$1(index) { return this.items.length !== 0 && index > 0 ? 8 + B.JSArray_methods.reduce$1(B.JSArray_methods.sublist$2(this.itemHeights, 0, index), new A._DropdownRoute_getItemOffset_closure()) : 8; }, getMenuLimits$3(buttonRect, availableHeight, index) { var menuTop, preferredMenuHeight, menuHeight, menuBottom, _this = this, computedMaxHeight = availableHeight - 96, buttonTop = buttonRect.top, t1 = buttonRect.bottom, buttonBottom = Math.min(A.checkNum(t1), availableHeight), selectedItemOffset = _this.getItemOffset$1(index), topLimit = Math.min(48, A.checkNum(buttonTop)), bottomLimit = Math.max(availableHeight - 48, buttonBottom), t2 = _this.itemHeights, t3 = _this.selectedIndex; t1 -= buttonTop; menuTop = buttonTop - selectedItemOffset - (t2[t3] - t1) / 2; preferredMenuHeight = B.EdgeInsets_0_8_0_8.get$_top(B.EdgeInsets_0_8_0_8) + B.EdgeInsets_0_8_0_8.get$_bottom(B.EdgeInsets_0_8_0_8); if (_this.items.length !== 0) preferredMenuHeight += B.JSArray_methods.reduce$1(t2, new A._DropdownRoute_getMenuLimits_closure()); menuHeight = Math.min(computedMaxHeight, preferredMenuHeight); menuBottom = menuTop + menuHeight; if (menuTop < topLimit) { menuTop = Math.min(buttonTop, topLimit); menuBottom = menuTop + menuHeight; } if (menuBottom > bottomLimit) { menuBottom = Math.max(buttonBottom, bottomLimit); menuTop = menuBottom - menuHeight; } t2 = t2[t3] / 2; t1 = buttonBottom - t1 / 2; if (menuBottom - t2 < t1) menuTop = t1 + t2 - menuHeight; return new A._MenuLimits(menuTop, menuHeight, preferredMenuHeight > computedMaxHeight ? Math.min(Math.max(0, selectedItemOffset - (buttonTop - menuTop)), preferredMenuHeight - menuHeight) : 0); }, get$barrierLabel() { return this.barrierLabel; } }; A._DropdownRoute_buildPage_closure.prototype = { call$2(context, constraints) { var t1 = this.$this; return new A._DropdownRoutePage(t1, constraints, t1.padding, t1.buttonRect, t1.selectedIndex, t1.capturedThemes, t1.dropdownColor, true, t1.borderRadius, null, t1.$ti._eval$1("_DropdownRoutePage<1>")); }, $signature() { return this.$this.$ti._eval$1("_DropdownRoutePage<1>(BuildContext,BoxConstraints)"); } }; A._DropdownRoute_getItemOffset_closure.prototype = { call$2(total, height) { return total + height; }, $signature: 356 }; A._DropdownRoute_getMenuLimits_closure.prototype = { call$2(total, height) { return total + height; }, $signature: 356 }; A._DropdownRoutePage.prototype = { build$1(_, context) { var _this = this, t1 = _this.route; if (t1.scrollController == null) t1.scrollController = new A.ScrollController(t1.getMenuLimits$3(_this.buttonRect, _this.constraints.maxHeight, _this.selectedIndex).scrollOffset, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); return A.MediaQuery_MediaQuery$removePadding(new A.Builder(new A._DropdownRoutePage_build_closure(_this, A.Directionality_maybeOf(context), new A._DropdownMenu(t1, _this.padding, _this.buttonRect, _this.constraints, _this.dropdownColor, true, _this.borderRadius, null, _this.$ti._eval$1("_DropdownMenu<1>"))), null), context, true, true, true, true); } }; A._DropdownRoutePage_build_closure.prototype = { call$1(context) { var t1 = this.$this; return new A.CustomSingleChildLayout(new A._DropdownMenuRouteLayout(t1.buttonRect, t1.route, this.textDirection, t1.$ti._eval$1("_DropdownMenuRouteLayout<1>")), new A._CaptureAll(t1.capturedThemes._themes, this.menu, null), null); }, $signature: 518 }; A._MenuItem.prototype = { createRenderObject$1(context) { var t1 = new A._RenderMenuItem(this.onLayout, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.onLayout = this.onLayout; } }; A._RenderMenuItem.prototype = { performLayout$0() { this.super$RenderProxyBoxMixin$performLayout(); var t1 = this._box$_size; t1.toString; this.onLayout.call$1(t1); } }; A._DropdownMenuItemContainer.prototype = { build$1(_, context) { var _null = null; return A.Container$(this.alignment, this.child, B.Clip_0, _null, B.BoxConstraints_mlX2, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.DropdownMenuItem.prototype = { get$value(receiver) { return this.value; } }; A.DropdownButtonHideUnderline.prototype = { updateShouldNotify$1(oldWidget) { return false; } }; A.DropdownButton.prototype = { createState$0() { return new A._DropdownButtonState(B._StateLifecycle_0, this.$ti._eval$1("_DropdownButtonState<1>")); }, get$value(receiver) { return this.value; } }; A._DropdownButtonState.prototype = { get$focusNode(_) { var t1; this._widget.toString; t1 = this._dropdown$_internalNode; return t1; }, initState$0() { var t1, t2, _this = this; _this.super$State$initState(); _this._updateSelectedIndex$0(); t1 = _this._widget; t1.toString; if (_this._dropdown$_internalNode == null) _this._dropdown$_internalNode = A.FocusNode$(true, t1.get$runtimeType(t1).toString$0(0), true, true, null, null, false); t1 = type$.JSArray_of_void_Function_Action_Intent; t2 = type$.ObserverList_of_void_Function_Action_Intent; _this.___DropdownButtonState__actionMap = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_ActivateIntent_OT9, new A.CallbackAction(new A._DropdownButtonState_initState_closure(_this), new A.ObserverList(A._setArrayType([], t1), t2), type$.CallbackAction_ActivateIntent), B.Type_ButtonActivateIntent_6Ij, new A.CallbackAction(new A._DropdownButtonState_initState_closure0(_this), new A.ObserverList(A._setArrayType([], t1), t2), type$.CallbackAction_ButtonActivateIntent)], type$.Type, type$.Action_Intent); _this.get$focusNode(_this).addListener$1(0, _this.get$_dropdown$_handleFocusChanged()); }, dispose$0(_) { var t1, _this = this; B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._removeDropdownRoute$0(); _this.get$focusNode(_this).removeListener$1(0, _this.get$_dropdown$_handleFocusChanged()); t1 = _this._dropdown$_internalNode; if (t1 != null) t1.dispose$0(0); _this.super$State$dispose(0); }, _removeDropdownRoute$0() { var t2, t1 = this._dropdownRoute; if (t1 != null) if (t1.get$isActive()) { t2 = t1._navigator$_navigator; if (t2 != null) t2.removeRoute$1(t1); } this._lastOrientation = this._dropdownRoute = null; }, _dropdown$_handleFocusChanged$0() { var _this = this; if (_this._hasPrimaryFocus !== _this.get$focusNode(_this).get$hasPrimaryFocus()) _this.setState$1(new A._DropdownButtonState__handleFocusChanged_closure(_this)); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; this._updateSelectedIndex$0(); }, _updateSelectedIndex$0() { var itemIndex, _this = this, t1 = _this._widget.items; if (t1 != null) if (!J.get$isEmpty$asx(t1)) { t1 = _this._widget; if (t1.value == null) { t1 = t1.items; t1.toString; t1 = J.where$1$ax(t1, new A._DropdownButtonState__updateSelectedIndex_closure(_this)); t1 = !t1.get$iterator(t1).moveNext$0(); } else t1 = false; } else t1 = true; else t1 = true; if (t1) { _this._selectedIndex = null; return; } itemIndex = 0; while (true) { t1 = _this._widget.items; t1.toString; if (!(itemIndex < J.get$length$asx(t1))) break; t1 = _this._widget.items; t1.toString; if (J.$eq$(J.$index$asx(t1, itemIndex).value, _this._widget.value)) { _this._selectedIndex = itemIndex; return; } ++itemIndex; } }, get$_dropdown$_textStyle() { var t1 = this._widget.style; if (t1 == null) { t1 = this._framework$_element; t1.toString; t1 = A.Theme_of(t1).textTheme.titleMedium; } return t1; }, _dropdown$_handleTap$0() { var textDirection, t2, t3, index, t4, $navigator, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; textDirection = A.Directionality_maybeOf(t1); t1 = _this._framework$_element; t1.toString; A.ButtonTheme_of(t1).toString; t1 = _this.$ti; t2 = A._setArrayType([], t1._eval$1("JSArray<_MenuItem<1>>")); t3 = t1._eval$1("_MenuItem<1>"); index = 0; while (true) { t4 = _this._widget.items; t4.toString; if (!(index < J.get$length$asx(t4))) break; t4 = _this._widget.items; t4.toString; t4 = J.$index$asx(t4, index); t2.push(new A._MenuItem(new A._DropdownButtonState__handleTap_closure(_this, index), t4, t4, _null, t3)); ++index; } t3 = _this._framework$_element; t3.toString; $navigator = A.Navigator_of(t3, false); t3 = t3.get$renderObject(); t3.toString; type$.RenderBox._as(t3); t4 = A.MatrixUtils_transformPoint(t3.getTransformTo$1(0, $navigator._framework$_element.get$renderObject()), B.Offset_0_0); t3 = t3._box$_size; t5 = t4._dx; t4 = t4._dy; t6 = t3._dx; t3 = t3._dy; t3 = B.EdgeInsetsDirectional_16_0_24_0.resolve$1(0, textDirection).inflateRect$1(new A.Rect(t5, t4, t5 + t6, t4 + t3)); t4 = _this._selectedIndex; if (t4 == null) t4 = 0; t5 = _this._widget.elevation; t6 = _this._framework$_element; t6.toString; t7 = $navigator._framework$_element; t7.toString; t7 = A.InheritedTheme_capture(t6, t7); t6 = _this.get$_dropdown$_textStyle(); t6.toString; t8 = _this._framework$_element; t8.toString; t8 = A.Localizations_of(t8, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t8.toString; t8 = t8.get$modalBarrierDismissLabel(); t9 = _this._widget; t10 = t9.itemHeight; t11 = t9.dropdownColor; t12 = t9.menuMaxHeight; t9 = t9.borderRadius; t13 = t2.length; t14 = t10 == null ? 48 : t10; t14 = A.List_List$filled(t13, t14, false, type$.double); t13 = A._setArrayType([], type$.JSArray_of_Future_bool_Function); t15 = $.Zone__current; t16 = t1._eval$1("_Future<_DropdownRouteResult<1>?>"); t17 = t1._eval$1("_AsyncCompleter<_DropdownRouteResult<1>?>"); t18 = A.ProxyAnimation$(B.C__AlwaysDismissedAnimation); t19 = A._setArrayType([], type$.JSArray_OverlayEntry); t20 = $.$get$ChangeNotifier__emptyListeners(); t21 = $.Zone__current; _this._dropdownRoute = new A._DropdownRoute(t2, B.EdgeInsets_16_0_16_0, t3, t4, t5, t7, t6, t10, t11, t12, true, t9, t14, t8, _null, t13, new A.LabeledGlobalKey(_null, t1._eval$1("LabeledGlobalKey<_ModalScopeState<_DropdownRouteResult<1>>>")), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.PageStorageBucket(), _null, new A._AsyncCompleter(new A._Future(t15, t16), t17), t18, t19, B.RouteSettings_null_null, new A.ValueNotifier(_null, t20, type$.ValueNotifier_nullable_String), new A._AsyncCompleter(new A._Future(t21, t16), t17), t1._eval$1("_DropdownRoute<1>")); t1 = _this.get$focusNode(_this); if (t1 != null) t1.requestFocus$0(); t1 = _this._dropdownRoute; t1.toString; $navigator.push$1(t1).then$1$1(0, new A._DropdownButtonState__handleTap_closure0(_this), type$.void); _this._widget.toString; }, get$_dropdown$_iconColor() { var t1, _this = this, _s80_ = string$.x60null_c; if (_this.get$_dropdown$_enabled()) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; switch (A.Theme_of(t1).colorScheme.brightness.index) { case 1: return B.Color_4284572001; case 0: return B.Color_3019898879; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } else { _this._widget.toString; t1 = _this._framework$_element; t1.toString; switch (A.Theme_of(t1).colorScheme.brightness.index) { case 1: return B.Color_4290624957; case 0: return B.Color_452984831; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } }, get$_dropdown$_enabled() { var t1 = this._widget.items; return t1 != null && J.get$isNotEmpty$asx(t1) && this._widget.onChanged != null; }, build$1(_, context) { var size, t2, items, displayedHint, hintIndex, innerItemsWidget, t3, fontSize, t4, t5, t6, t7, t8, bottom, effectiveMouseCursor, _this = this, _null = null, t1 = A.MediaQuery_maybeOf(context), result = t1 == null ? _null : t1.get$orientation(t1); if (result == null) { $.WidgetsBinding__instance.toString; size = $.$get$window().get$physicalSize(); result = size._dx > size._dy ? B.Orientation_1 : B.Orientation_0; } t1 = _this._lastOrientation; if (t1 == null) { _this._lastOrientation = result; t1 = result; } if (result !== t1) { _this._removeDropdownRoute$0(); _this._lastOrientation = result; } t1 = _this._widget; t2 = t1.selectedItemBuilder; if (t2 == null) { t1 = t1.items; items = t1 != null ? A.List_List$of(t1, true, type$.Widget) : A._setArrayType([], type$.JSArray_Widget); } else items = A.List_List$of(t2.call$1(context), true, type$.Widget); if (_this._widget.hint == null) { if (!_this.get$_dropdown$_enabled()) _this._widget.toString; t1 = false; } else t1 = true; if (t1) { t1 = _this.get$_dropdown$_enabled(); t2 = _this._widget; if (t1) { t1 = t2.hint; t1.toString; displayedHint = t1; } else { t1 = t2.hint; t1.toString; displayedHint = t1; } if (t2.selectedItemBuilder == null) displayedHint = new A._DropdownMenuItemContainer(displayedHint, B.AlignmentDirectional_m1_0, _null); hintIndex = items.length; t1 = _this.get$_dropdown$_textStyle(); t1.toString; items.push(A.DefaultTextStyle$(new A.IgnorePointer(true, false, displayedHint, _null), _null, _null, B.TextOverflow_0, true, t1.copyWith$1$color(A.Theme_of(context).hintColor), _null, _null, B.TextWidthBasis_0)); } else hintIndex = _null; A.ButtonTheme_of(context).toString; if (items.length === 0) innerItemsWidget = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t1 = _this._selectedIndex; if (t1 == null) t1 = hintIndex; t2 = _this._widget; t3 = t2.alignment; if (t2.isDense) t2 = items; else { t2 = A._arrayInstanceType(items)._eval$1("MappedListIterable<1,RenderObjectWidget>"); t2 = A.List_List$of(new A.MappedListIterable(items, new A._DropdownButtonState_build_closure(_this), t2), true, t2._eval$1("ListIterable.E")); } innerItemsWidget = new A.IndexedStack(t1, t3, _null, B.StackFit_0, B.Clip_1, t2, _null); } if (_this.get$_dropdown$_enabled()) { t1 = _this.get$_dropdown$_textStyle(); t1.toString; } else { t1 = _this.get$_dropdown$_textStyle(); t1.toString; t1 = t1.copyWith$1$color(A.Theme_of(context).disabledColor); } t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t2 = B.EdgeInsets_0_0_0_0.resolve$1(0, t2.textDirection); if (_this._widget.isDense) { fontSize = _this.get$_dropdown$_textStyle().fontSize; if (fontSize == null) { t3 = _this._framework$_element; t3.toString; t3 = A.Theme_of(t3).textTheme.titleMedium.fontSize; t3.toString; fontSize = t3; } t3 = Math.max(fontSize, Math.max(_this._widget.iconSize, 24)); } else t3 = _null; t4 = type$.JSArray_Widget; t5 = A._setArrayType([], t4); if (_this._widget.isExpanded) t5.push(A.Expanded$(innerItemsWidget, 1)); else t5.push(innerItemsWidget); t6 = _this.get$_dropdown$_iconColor(); t7 = _this._widget; t8 = t7.iconSize; t7 = t7.icon; if (t7 == null) t7 = B.Icon_MC7; t5.push(A.IconTheme$(t7, new A.IconThemeData(t6, _null, t8, _null), _null)); result = A.DefaultTextStyle$(A.Container$(_null, A.Row$(t5, B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_0, _null), B.Clip_0, _null, _null, _null, _null, t3, _null, _null, t2, _null, _null, _null), _null, _null, B.TextOverflow_0, true, t1, _null, _null, B.TextWidthBasis_0); if (context.dependOnInheritedWidgetOfExactType$1$0(type$.DropdownButtonHideUnderline) == null) { t1 = _this._widget; bottom = t1.isDense || t1.itemHeight == null ? 0 : 8; t1 = t1.underline; result = new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([result, A.Positioned$(bottom, t1 == null ? A.Container$(_null, _null, B.Clip_0, _null, _null, B.BoxDecoration_1ZZ, _null, 1, _null, _null, _null, _null, _null, _null) : t1, _null, _null, 0, 0, _null, _null)], t4), _null); } t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this.get$_dropdown$_enabled()) t1.add$1(0, B.MaterialState_6); effectiveMouseCursor = A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, t1, type$.MouseCursor); t1 = _this._widget; t2 = t1._inputDecoration; if (t2 != null) result = A.InputDecorator$(_null, result, t2, false, t1._isEmpty, t1._dropdown$_isFocused, false, _null, _null); t1 = A._lateReadCheck(_this.___DropdownButtonState__actionMap, "_actionMap"); t2 = _this.get$_dropdown$_enabled() ? _this.get$_dropdown$_handleTap() : _null; t3 = _this.get$_dropdown$_enabled(); t4 = _this.get$focusNode(_this); _this._widget.toString; t5 = A.Theme_of(context).focusColor; t1 = A.Actions$(t1, A.InkWell$(false, _null, t3, result, _null, false, t5, t4, _null, _null, _null, effectiveMouseCursor, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null)); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); } }; A._DropdownButtonState_initState_closure.prototype = { call$1(intent) { return this.$this._dropdown$_handleTap$0(); }, $signature: 2344 }; A._DropdownButtonState_initState_closure0.prototype = { call$1(intent) { return this.$this._dropdown$_handleTap$0(); }, $signature: 2343 }; A._DropdownButtonState__handleFocusChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._hasPrimaryFocus = t1.get$focusNode(t1).get$hasPrimaryFocus(); }, $signature: 0 }; A._DropdownButtonState__updateSelectedIndex_closure.prototype = { call$1(item) { var t1 = J.$eq$(item.value, this.$this._widget.value); return t1; }, $signature() { return this.$this.$ti._eval$1("bool(DropdownMenuItem<1>)"); } }; A._DropdownButtonState__handleTap_closure.prototype = { call$1(size) { var t1 = this.$this._dropdownRoute; if (t1 == null) return; t1.itemHeights[this.index] = size._dy; }, $signature: 522 }; A._DropdownButtonState__handleTap_closure0.prototype = { call$1(newValue) { var t1 = this.$this; t1._removeDropdownRoute$0(); if (t1._framework$_element == null || newValue == null) return; t1 = t1._widget.onChanged; if (t1 != null) t1.call$1(newValue.result); }, $signature() { return this.$this.$ti._eval$1("Null(_DropdownRouteResult<1>?)"); } }; A._DropdownButtonState_build_closure.prototype = { call$1(item) { var t1 = this.$this._widget.itemHeight; return t1 != null ? new A.SizedBox(null, t1, item, null) : A.Column$(A._setArrayType([item], type$.JSArray_Widget), B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, $signature: 2340 }; A.DropdownButtonFormField.prototype = { createState$0() { var _null = null, t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._DropdownButtonFormFieldState(new A.RestorableStringN(_null, t1), new A.RestorableBool(false, t1), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0, this.$ti._eval$1("_DropdownButtonFormFieldState<1>")); } }; A.DropdownButtonFormField_closure.prototype = { call$1(field) { var decorationArg, t2, effectiveDecoration, t3, t4, t5, t6, isEmpty, _this = this, _null = null, t1 = _this.T; t1._eval$1("_DropdownButtonFormFieldState<0>")._as(field); decorationArg = _this.decoration; if (decorationArg == null) decorationArg = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.focusColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = field._framework$_element; t2.toString; effectiveDecoration = decorationArg.applyDefaults$1(A.Theme_of(t2).inputDecorationTheme); t2 = _this.items; t3 = new A.WhereIterable(t2, new A.DropdownButtonFormField__closure(field, t1), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>")); t3 = t3.get$isEmpty(t3); t4 = _this.onChanged; t5 = _this.hint; t6 = _this.disabledHint; isEmpty = t3 && !new A.DropdownButtonFormField_closure_isHintOrDisabledHintAvailable(t4, t2, t5, t6).call$0(); return A.Focus$(false, false, new A.Builder(new A.DropdownButtonFormField__closure0(t2, _this.selectedItemBuilder, field, t5, t6, t4, _this.onTap, _this.elevation, _this.style, _this.icon, _this.iconDisabledColor, _this.iconEnabledColor, _this.iconSize, _this.isDense, _this.isExpanded, _this.itemHeight, _this.focusColor, _this.focusNode, _this.autofocus, _this.dropdownColor, _this.menuMaxHeight, _this.enableFeedback, _this.alignment, _this.borderRadius, effectiveDecoration, field, isEmpty, t1), _null), _null, _null, _null, _null, true, _null, _null, _null, _null, true); }, $signature() { return this.T._eval$1("Focus(FormFieldState<0>)"); } }; A.DropdownButtonFormField__closure.prototype = { call$1(item) { return J.$eq$(item.value, this.state.get$_form$_value()); }, $signature() { return this.T._eval$1("bool(DropdownMenuItem<0>)"); } }; A.DropdownButtonFormField_closure_isHintOrDisabledHintAvailable.prototype = { call$0() { var t1, isDropdownDisabled; if (this.onChanged != null) { t1 = this.items; isDropdownDisabled = t1 == null || t1.length === 0; } else isDropdownDisabled = true; if (isDropdownDisabled) return false; else return false; }, $signature: 18 }; A.DropdownButtonFormField__closure0.prototype = { call$1(context) { var t3, marker, _this = this, _null = null, t1 = _this.state, t2 = t1.get$_form$_value(); t1 = _this.onChanged == null ? _null : t1.get$didChange(); t3 = _this.effectiveDecoration.copyWith$1$errorText(_this.field._errorText._restoration_properties$_value); marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker); return new A.DropdownButtonHideUnderline(new A.DropdownButton(_this.items, t2, _this.hint, _this.disabledHint, t1, _this.onTap, _this.selectedItemBuilder, _this.elevation, _this.style, _null, _this.icon, _this.iconDisabledColor, _this.iconEnabledColor, _this.iconSize, _this.isDense, _this.isExpanded, _this.itemHeight, _this.focusColor, _this.focusNode, _this.autofocus, _this.dropdownColor, _this.menuMaxHeight, _this.enableFeedback, _this.alignment, _this.borderRadius, t3, _this.isEmpty, (marker == null ? _null : marker.notifier).get$hasFocus(), _null, _this.T._eval$1("DropdownButton<0>")), _null); }, $signature: 2331 }; A._DropdownButtonFormFieldState.prototype = { didChange$1(value) { var t1; this.super$FormFieldState$didChange(value); t1 = this._widget; t1.toString; this.$ti._eval$1("DropdownButtonFormField<1>")._as(t1).onChanged.call$1(value); }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$_FormFieldState_State_RestorationMixin$didUpdateWidget(oldWidget); if (!J.$eq$(oldWidget.initialValue, _this._widget.initialValue)) _this.__FormFieldState__value = _this._widget.initialValue; } }; A.__DropdownButtonState_State_WidgetsBindingObserver.prototype = {}; A.ElevatedButton.prototype = { defaultStyleOf$1(context) { var t1, t2, t3, t4, theme = A.Theme_of(context), colorScheme = theme.colorScheme; A.Theme_of(context).toString; t1 = theme.shadowColor; t2 = theme.textTheme; t3 = A._scaledPadding(context); t4 = theme.visualDensity; t4 = A.ElevatedButton_styleFrom(B.Alignment_0_0, B.Duration_200000, B.SystemMouseCursor_basic, 2, true, B.SystemMouseCursor_click, B.Size_wjo, B.Size_64_36, colorScheme.onPrimary, colorScheme.onSurface, t3, colorScheme.primary, t1, B.RoundedRectangleBorder_LkV0, B.C__InkRippleFactory, theme.materialTapTargetSize, t2.labelLarge, t4); return t4; }, themeStyleOf$1(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.ElevatedButtonTheme); t1 = A.Theme_of(context).elevatedButtonTheme; return t1.style; } }; A._ElevatedButtonDefaultBackground.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_6)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; } }; A._ElevatedButtonDefaultForeground.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_6)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.onPrimary; } }; A._ElevatedButtonDefaultOverlay.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_0)) { t1 = this.onPrimary.value; return A.Color$fromARGB(20, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } if (states.contains$1(0, B.MaterialState_1) || states.contains$1(0, B.MaterialState_2)) { t1 = this.onPrimary.value; return A.Color$fromARGB(61, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return null; } }; A._ElevatedButtonDefaultElevation.prototype = { resolve$1(_, states) { var _this = this; if (states.contains$1(0, B.MaterialState_6)) return 0; if (states.contains$1(0, B.MaterialState_0)) return _this.elevation + 2; if (states.contains$1(0, B.MaterialState_1)) return _this.elevation + 2; if (states.contains$1(0, B.MaterialState_2)) return _this.elevation + 6; return _this.elevation; } }; A._ElevatedButtonDefaultMouseCursor.prototype = { resolve$1(_, states) { if (states.contains$1(0, B.MaterialState_6)) return this.disabledCursor; return this.enabledCursor; } }; A.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable.prototype = {}; A.ElevatedButtonThemeData.prototype = { get$hashCode(_) { return J.get$hashCode$(this.style); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.ElevatedButtonThemeData && J.$eq$(other.style, this.style); } }; A._ElevatedButtonThemeData_Object_Diagnosticable.prototype = {}; A.ExpandIcon.prototype = { createState$0() { return new A._ExpandIconState(null, null, B._StateLifecycle_0); } }; A._ExpandIconState.prototype = { initState$0() { var t1, t2, _this = this, _s11_ = "_controller"; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_200000, null, 1, null, _this); _this.___ExpandIconState__controller = t1; t1 = A._lateReadCheck(t1, _s11_); t2 = $.$get$_ExpandIconState__iconTurnTween(); type$.Animation_double._as(t1); t2.toString; _this.___ExpandIconState__iconTurns = new A._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); if (_this._widget.isExpanded) A._lateReadCheck(_this.___ExpandIconState__controller, _s11_).set$value(0, 3.141592653589793); }, dispose$0(_) { A._lateReadCheck(this.___ExpandIconState__controller, "_controller").dispose$0(0); this.super$__ExpandIconState_State_SingleTickerProviderStateMixin$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, t2, _s11_ = "_controller"; this.super$State$didUpdateWidget(oldWidget); t1 = this._widget.isExpanded; if (t1 !== oldWidget.isExpanded) { t2 = this.___ExpandIconState__controller; if (t1) A._lateReadCheck(t2, _s11_).forward$0(0); else A._lateReadCheck(t2, _s11_).reverse$0(0); } }, _handlePressed$0() { var t1 = this._widget, t2 = t1.onPressed; if (t2 != null) t2.call$1(t1.isExpanded); }, get$_expand_icon$_iconColor() { this._widget.toString; var t1 = this._framework$_element; t1.toString; switch (A.Theme_of(t1).colorScheme.brightness.index) { case 1: return B.Color_2315255808; case 0: return B.Color_2583691263; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var onTapHint, t2, t3, t4, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; onTapHint = _this._widget.isExpanded ? t1.get$expandedIconTapHint() : t1.get$collapsedIconTapHint(); t1 = _this._widget; t2 = t1.onPressed == null ? _null : onTapHint; t1 = t1.padding; t3 = _this.get$_expand_icon$_iconColor(); t4 = _this._widget.onPressed == null ? _null : _this.get$_handlePressed(); t1 = A.IconButton$(B.Alignment_0_0, t3, _null, true, A.RotationTransition$(B.Alignment_0_0, B.Icon_8Gl, A._lateReadCheck(_this.___ExpandIconState__iconTurns, "_iconTurns")), 24, t4, t1, _null, _null, _null); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2 != null || false ? new A.SemanticsHintOverrides(t2, _null) : _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); } }; A.__ExpandIconState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A._SaltedKey.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return _this.$ti._is(other) && other.salt === _this.salt && other.value === _this.value; }, get$hashCode(_) { return A.Object_hash(A.getRuntimeType(this), this.salt, this.value, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var valueString, t1 = this.$ti, t2 = this.salt, saltString = A.createRuntimeType(t1._precomputed1) === B.Type_String_k8F ? "<'" + t2.toString$0(0) + "'>" : "<" + t2.toString$0(0) + ">"; t2 = "" + this.value; valueString = A.createRuntimeType(t1._rest[1]) === B.Type_String_k8F ? "<'" + t2 + "'>" : "<" + t2 + ">"; return "[" + saltString + " " + valueString + "]"; }, get$value(receiver) { return this.value; } }; A.ExpansionPanel.prototype = { get$body(receiver) { return this.body; } }; A.ExpansionPanelList.prototype = { createState$0() { return new A._ExpansionPanelListState(B._StateLifecycle_0); } }; A._ExpansionPanelListState.prototype = { initState$0() { this.super$State$initState(); this._widget.toString; }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; this._currentOpenPanel = null; }, _isChildExpanded$1(index) { var t1 = this._widget; return t1.children[index].isExpanded; }, _expansion_panel$_handlePressed$2(isExpanded, index) { this._widget.expansionCallback.call$2(index, isExpanded); this._widget.toString; }, build$1(_, context) { var t1, t2, t3, t4, index, child, t5, headerWidget, expandIconContainer, scope, header, t6, t7, _this = this, _null = null, items = A._setArrayType([], type$.JSArray_MergeableMaterialItem); for (t1 = type$.JSArray_Widget, t2 = type$._SaltedKey_BuildContext_int, t3 = type$._LocalizationsScope, t4 = type$.nullable_MaterialLocalizations, index = 0; index < _this._widget.children.length; ++index) { if (_this._isChildExpanded$1(index) && index !== 0 && !_this._isChildExpanded$1(index - 1)) items.push(new A.MaterialGap(16, new A._SaltedKey(context, index * 2 - 1, t2))); child = _this._widget.children[index]; t5 = _this._isChildExpanded$1(index); headerWidget = child.headerBuilder.call$2(context, t5); t5 = _this._isChildExpanded$1(index); child.toString; expandIconContainer = A.Container$(_null, new A.ExpandIcon(t5, new A._ExpansionPanelListState_build_closure(_this, index), B.EdgeInsets_16_16_16_16, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, B.EdgeInsetsDirectional_0_0_8_0, _null, _null, _null, _null); scope = context.dependOnInheritedWidgetOfExactType$1$0(t3); t5 = scope == null ? _null : t4._as(J.$index$asx(scope.localizationsState._typeToResources, B.Type_MaterialLocalizations_flR)); t5.toString; t5 = _this._isChildExpanded$1(index) ? t5.get$expandedIconTapHint() : t5.get$collapsedIconTapHint(); expandIconContainer = new A.Semantics(new A.SemanticsProperties(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, expandIconContainer, _null); _this._widget.toString; if (_this._isChildExpanded$1(index)) { _this._widget.toString; t5 = B.EdgeInsets_0_16_0_16; } else t5 = B.EdgeInsets_0_0_0_0; header = A.Row$(A._setArrayType([new A.Expanded(1, B.FlexFit_0, A.AnimatedContainer$(new A.ConstrainedBox(B.BoxConstraints_mlX2, headerWidget, _null), _null, B.Cubic_ifx, _null, B.Duration_200000, _null, _null, t5, _null, _null), _null), expandIconContainer], t1), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t5 = index * 2; t6 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, 0, _null, _null, _null, _null, _null, _null); t7 = _this._isChildExpanded$1(index) ? B.CrossFadeState_1 : B.CrossFadeState_0; _this._widget.toString; items.push(new A.MaterialSlice(A.Column$(A._setArrayType([header, new A.AnimatedCrossFade(t6, child.body, t7, B.Duration_200000, B.Interval_oqF2, B.Interval_IqE, B.Cubic_ifx, _null)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, new A._SaltedKey(context, t5, t2))); if (_this._isChildExpanded$1(index) && index !== _this._widget.children.length - 1) items.push(new A.MaterialGap(16, new A._SaltedKey(context, t5 + 1, t2))); } return new A.MergeableMaterial(items, 2, true, _null, _null); } }; A._ExpansionPanelListState_build_closure.prototype = { call$1(isExpanded) { return this.$this._expansion_panel$_handlePressed$2(isExpanded, this.index); }, $signature: 74 }; A.ExpansionTileThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.collapsedBackgroundColor, _this.tilePadding, _this.expandedAlignment, _this.childrenPadding, _this.iconColor, _this.collapsedIconColor, _this.textColor, _this.collapsedTextColor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ExpansionTileThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.collapsedBackgroundColor, _this.collapsedBackgroundColor) && J.$eq$(other.tilePadding, _this.tilePadding) && J.$eq$(other.expandedAlignment, _this.expandedAlignment) && J.$eq$(other.childrenPadding, _this.childrenPadding) && J.$eq$(other.iconColor, _this.iconColor) && J.$eq$(other.collapsedIconColor, _this.collapsedIconColor) && J.$eq$(other.textColor, _this.textColor) && J.$eq$(other.collapsedTextColor, _this.collapsedTextColor); } }; A._ExpansionTileThemeData_Object_Diagnosticable.prototype = {}; A.Feedback_wrapForTap_closure.prototype = { call$0() { A.Feedback_forTap(this.context); this.callback.call$0(); }, $signature: 0 }; A.FlexibleSpaceBarSettings.prototype = { updateShouldNotify$1(oldWidget) { var _this = this; return _this.toolbarOpacity !== oldWidget.toolbarOpacity || _this.minExtent != oldWidget.minExtent || _this.maxExtent != oldWidget.maxExtent || _this.currentExtent != oldWidget.currentExtent || _this.isScrolledUnder != oldWidget.isScrolledUnder; } }; A._DefaultHeroTag.prototype = { toString$0(_) { return ""; } }; A._FloatingActionButtonType.prototype = { toString$0(_) { return "_FloatingActionButtonType." + this._core$_name; } }; A.FloatingActionButton.prototype = { build$1(_, context) { var t2, backgroundColor, focusColor, hoverColor, splashColor, elevation, focusElevation, hoverElevation, disabledElevation, highlightElevation, materialTapTargetSize, iconSize, t3, extendedTextStyle, shape, resolvedChild, sizeConstraints, padding, result, _this = this, _null = null, theme = A.Theme_of(context), floatingActionButtonTheme = theme.floatingActionButtonTheme, t1 = _this._floatingActionButtonType, defaults = new A._M2Defaults(t1, true, A.Theme_of(context), A.Theme_of(context).colorScheme, _null, _null, _null, _null, _null, 6, 6, 8, _null, 12, _null, true, _null, B.BoxConstraints_56_56_56_56, B.BoxConstraints_40_40_40_40, B.BoxConstraints_96_96_96_96, B.BoxConstraints_CWG, 8, _null, _null), foregroundColor = floatingActionButtonTheme.foregroundColor; if (foregroundColor == null) { t2 = defaults.get$foregroundColor(defaults); t2.toString; foregroundColor = t2; } t2 = _this.backgroundColor; backgroundColor = t2 == null ? floatingActionButtonTheme.backgroundColor : t2; if (backgroundColor == null) { t2 = defaults.get$backgroundColor(defaults); t2.toString; backgroundColor = t2; } focusColor = floatingActionButtonTheme.focusColor; if (focusColor == null) { t2 = defaults.get$focusColor(); t2.toString; focusColor = t2; } hoverColor = floatingActionButtonTheme.hoverColor; if (hoverColor == null) { t2 = defaults.get$hoverColor(); t2.toString; hoverColor = t2; } splashColor = floatingActionButtonTheme.splashColor; if (splashColor == null) { t2 = defaults.get$splashColor(); t2.toString; splashColor = t2; } elevation = floatingActionButtonTheme.elevation; if (elevation == null) elevation = 6; focusElevation = floatingActionButtonTheme.focusElevation; if (focusElevation == null) focusElevation = 6; hoverElevation = floatingActionButtonTheme.hoverElevation; if (hoverElevation == null) hoverElevation = 8; t2 = floatingActionButtonTheme.disabledElevation; disabledElevation = t2 == null ? _null : t2; if (disabledElevation == null) disabledElevation = elevation; highlightElevation = floatingActionButtonTheme.highlightElevation; if (highlightElevation == null) highlightElevation = 12; materialTapTargetSize = theme.materialTapTargetSize; t2 = floatingActionButtonTheme.enableFeedback; iconSize = floatingActionButtonTheme.iconSize; if (iconSize == null) iconSize = defaults.get$iconSize(); t3 = floatingActionButtonTheme.extendedTextStyle; extendedTextStyle = (t3 == null ? defaults.get$extendedTextStyle() : t3).copyWith$1$color(foregroundColor); shape = floatingActionButtonTheme.shape; if (shape == null) shape = defaults.get$shape(defaults); t3 = _this.child; resolvedChild = A.IconTheme_merge(t3, new A.IconThemeData(_null, _null, iconSize, _null)); switch (t1.index) { case 0: sizeConstraints = floatingActionButtonTheme.sizeConstraints; if (sizeConstraints == null) sizeConstraints = B.BoxConstraints_56_56_56_56; break; case 1: sizeConstraints = floatingActionButtonTheme.smallSizeConstraints; if (sizeConstraints == null) sizeConstraints = B.BoxConstraints_40_40_40_40; break; case 2: sizeConstraints = floatingActionButtonTheme.largeSizeConstraints; if (sizeConstraints == null) sizeConstraints = B.BoxConstraints_96_96_96_96; break; case 3: sizeConstraints = floatingActionButtonTheme.extendedSizeConstraints; if (sizeConstraints == null) sizeConstraints = B.BoxConstraints_CWG; padding = floatingActionButtonTheme.extendedPadding; if (padding == null) padding = defaults.get$extendedPadding(); t1 = A._setArrayType([], type$.JSArray_Widget); t1.push(t3); resolvedChild = new A._ChildOverflowBox(new A.Padding(padding, A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null), _null), _null); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } result = A.RawMaterialButton$(false, resolvedChild, B.Clip_0, sizeConstraints, disabledElevation, elevation, t2 !== false, backgroundColor, focusColor, focusElevation, _null, _null, highlightElevation, hoverColor, hoverElevation, materialTapTargetSize, _null, _this.onPressed, shape, splashColor, extendedTextStyle); t1 = _this.tooltip; if (t1 != null) result = A.Tooltip$(result, t1); return new A.MergeSemantics(new A.Hero(_this.heroTag, result, _null), _null); } }; A._ChildOverflowBox.prototype = { createRenderObject$1(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new A._RenderChildOverflowBox(B.Alignment_0_0, t1.textDirection, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; A._RenderChildOverflowBox.prototype = { computeMinIntrinsicWidth$1(height) { return 0; }, computeMinIntrinsicHeight$1(width) { return 0; }, computeDryLayout$1(constraints) { var childSize, t2, t3, t4, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = t1.getDryLayout$1(B.BoxConstraints_mlX5); t1 = constraints.minWidth; t2 = constraints.maxWidth; t3 = childSize._dx; t3 = Math.min(A.checkNum(t2), A.checkNum(t3)); t3 = Math.max(A.checkNum(t1), t3); t1 = constraints.minHeight; t2 = constraints.maxHeight; t4 = childSize._dy; t4 = Math.min(A.checkNum(t2), A.checkNum(t4)); return new A.Size(t3, Math.max(A.checkNum(t1), t4)); } else return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t2, t3, t4, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, B.BoxConstraints_mlX5, true); t1 = constraints.minWidth; t2 = constraints.maxWidth; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t4 = t3._dx; t4 = Math.min(A.checkNum(t2), A.checkNum(t4)); t4 = Math.max(A.checkNum(t1), t4); t1 = constraints.minHeight; t2 = constraints.maxHeight; t3 = t3._dy; t3 = Math.min(A.checkNum(t2), A.checkNum(t3)); _this._box$_size = new A.Size(t4, Math.max(A.checkNum(t1), t3)); _this.alignChild$0(); } else _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); } }; A._M2Defaults.prototype = { get$foregroundColor(_) { return this._colors.onSecondary; }, get$backgroundColor(_) { return this._colors.secondary; }, get$focusColor() { return this._theme.focusColor; }, get$hoverColor() { return this._theme.hoverColor; }, get$splashColor() { return this._theme.splashColor; }, get$shape(_) { return this.type === B._FloatingActionButtonType_3 ? B.StadiumBorder_QSQ : B.CircleBorder_IVQ; }, get$iconSize() { return this.type === B._FloatingActionButtonType_2 ? 36 : 24; }, get$extendedPadding() { return new A.EdgeInsetsDirectional(this.hasChild && this.type === B._FloatingActionButtonType_3 ? 16 : 20, 0, 20, 0); }, get$extendedTextStyle() { return this._theme.textTheme.labelLarge.copyWith$1$letterSpacing(1.2); } }; A.FloatingActionButtonLocation.prototype = { toString$0(_) { return "FloatingActionButtonLocation"; } }; A.StandardFabLocation.prototype = { getOffset$1(scaffoldGeometry) { return new A.Offset(this.getOffsetX$2(scaffoldGeometry, 0), this.getOffsetY$2(scaffoldGeometry, 0)); } }; A.FabTopOffsetY.prototype = { getOffsetY$2(scaffoldGeometry, adjustment) { var t1 = scaffoldGeometry.contentTop, t2 = scaffoldGeometry.minViewPadding.top; if (t1 > t2) return t1 - scaffoldGeometry.floatingActionButtonSize._dy / 2; return t2; } }; A.FabFloatOffsetY.prototype = { getOffsetY$2(scaffoldGeometry, adjustment) { var contentBottom = scaffoldGeometry.contentBottom, bottomSheetHeight = scaffoldGeometry.bottomSheetSize._dy, fabHeight = scaffoldGeometry.floatingActionButtonSize._dy, snackBarHeight = scaffoldGeometry.snackBarSize._dy, fabY = contentBottom - fabHeight - Math.max(16, scaffoldGeometry.minViewPadding.bottom - (scaffoldGeometry.scaffoldSize._dy - contentBottom) + 16); if (snackBarHeight > 0) fabY = Math.min(fabY, contentBottom - snackBarHeight - fabHeight - 16); return (bottomSheetHeight > 0 ? Math.min(fabY, contentBottom - bottomSheetHeight - fabHeight / 2) : fabY) + adjustment; } }; A.FabDockedOffsetY.prototype = { getOffsetY$2(scaffoldGeometry, adjustment) { var safeMargin, fabY, contentBottom = scaffoldGeometry.contentBottom, t1 = scaffoldGeometry.scaffoldSize._dy, bottomViewPadding = scaffoldGeometry.minViewPadding.bottom, bottomSheetHeight = scaffoldGeometry.bottomSheetSize._dy, fabHeight = scaffoldGeometry.floatingActionButtonSize._dy, snackBarHeight = scaffoldGeometry.snackBarSize._dy, bottomMinInset = scaffoldGeometry.minInsets.bottom, t2 = fabHeight / 2; if (t1 - contentBottom > bottomMinInset + t2) safeMargin = 0; else safeMargin = bottomMinInset === 0 ? bottomViewPadding : t2 + 16; fabY = contentBottom - t2 - safeMargin; if (snackBarHeight > 0) fabY = Math.min(fabY, contentBottom - snackBarHeight - fabHeight - 16); if (bottomSheetHeight > 0) fabY = Math.min(fabY, contentBottom - bottomSheetHeight - t2); return Math.min(t1 - fabHeight - safeMargin, fabY); } }; A.FabEndOffsetX.prototype = { getOffsetX$2(scaffoldGeometry, adjustment) { switch (scaffoldGeometry.textDirection) { case B.TextDirection_0: return 16 + scaffoldGeometry.minInsets.left - adjustment; case B.TextDirection_1: return scaffoldGeometry.scaffoldSize._dx - 16 - scaffoldGeometry.minInsets.right - scaffoldGeometry.floatingActionButtonSize._dx + adjustment; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._EndTopFabLocation.prototype = { toString$0(_) { return "FloatingActionButtonLocation.endTop"; } }; A._EndFloatFabLocation.prototype = { toString$0(_) { return "FloatingActionButtonLocation.endFloat"; } }; A._EndDockedFabLocation.prototype = { toString$0(_) { return "FloatingActionButtonLocation.endDocked"; } }; A.FloatingActionButtonAnimator.prototype = { toString$0(_) { return "FloatingActionButtonAnimator"; } }; A._ScalingFabMotionAnimator.prototype = { getOffset$3$begin$end$progress(begin, end, progress) { if (progress < 0.5) return begin; else return end; } }; A._AnimationSwap.prototype = { get$value(_) { var t1, _this = this; if (A._lateReadCheck(_this.parent.__AnimationController__value, "_value") < _this.swapThreshold) { t1 = _this.first; t1 = t1.get$value(t1); } else { t1 = _this.next; t1 = t1.get$value(t1); } return t1; } }; A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY.prototype = {}; A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY.prototype = {}; A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY.prototype = {}; A.FloatingActionButtonThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$foregroundColor(_this), _this.get$backgroundColor(_this), _this.get$focusColor(), _this.get$hoverColor(), _this.get$splashColor(), _this.elevation, _this.focusElevation, _this.hoverElevation, _this.disabledElevation, _this.highlightElevation, _this.get$shape(_this), _this.enableFeedback, _this.get$iconSize(), _this.sizeConstraints, _this.smallSizeConstraints, _this.largeSizeConstraints, _this.extendedSizeConstraints, _this.extendedIconLabelSpacing, _this.get$extendedPadding(), _this.get$extendedTextStyle()); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.FloatingActionButtonThemeData && J.$eq$(other.get$foregroundColor(other), _this.get$foregroundColor(_this)) && J.$eq$(other.get$backgroundColor(other), _this.get$backgroundColor(_this)) && J.$eq$(other.get$focusColor(), _this.get$focusColor()) && J.$eq$(other.get$hoverColor(), _this.get$hoverColor()) && J.$eq$(other.get$splashColor(), _this.get$splashColor()) && other.elevation == _this.elevation && other.focusElevation == _this.focusElevation && other.hoverElevation == _this.hoverElevation && other.disabledElevation == _this.disabledElevation && other.highlightElevation == _this.highlightElevation && J.$eq$(other.get$shape(other), _this.get$shape(_this)) && other.enableFeedback == _this.enableFeedback && other.get$iconSize() == _this.get$iconSize() && J.$eq$(other.sizeConstraints, _this.sizeConstraints) && J.$eq$(other.smallSizeConstraints, _this.smallSizeConstraints) && J.$eq$(other.largeSizeConstraints, _this.largeSizeConstraints) && J.$eq$(other.extendedSizeConstraints, _this.extendedSizeConstraints) && other.extendedIconLabelSpacing == _this.extendedIconLabelSpacing && J.$eq$(other.get$extendedPadding(), _this.get$extendedPadding()) && J.$eq$(other.get$extendedTextStyle(), _this.get$extendedTextStyle()); }, get$foregroundColor(receiver) { return this.foregroundColor; }, get$backgroundColor(receiver) { return this.backgroundColor; }, get$focusColor() { return this.focusColor; }, get$hoverColor() { return this.hoverColor; }, get$splashColor() { return this.splashColor; }, get$shape(receiver) { return this.shape; }, get$iconSize() { return this.iconSize; }, get$extendedPadding() { return this.extendedPadding; }, get$extendedTextStyle() { return this.extendedTextStyle; } }; A._FloatingActionButtonThemeData_Object_Diagnosticable.prototype = {}; A.IconButton.prototype = { build$1(_, context) { var currentColor, effectiveVisualDensity, adjustedConstraints, t4, effectiveIconSize, result, t5, t6, t7, t8, t9, _this = this, _null = null, theme = A.Theme_of(context), t1 = _this.onPressed, t2 = t1 == null, t3 = !t2; if (t3) currentColor = _this.color; else currentColor = theme.disabledColor; effectiveVisualDensity = _this.visualDensity; if (effectiveVisualDensity == null) effectiveVisualDensity = theme.visualDensity; adjustedConstraints = effectiveVisualDensity.effectiveConstraints$1(B.BoxConstraints_mlX0); t4 = _this.iconSize; effectiveIconSize = t4 == null ? A.IconTheme_of(context).size : t4; if (effectiveIconSize == null) effectiveIconSize = 24; t4 = _this.padding; result = new A.ConstrainedBox(adjustedConstraints, new A.Padding(t4, new A.SizedBox(effectiveIconSize, effectiveIconSize, new A.Align(_this.alignment, _null, _null, A.IconTheme_merge(_this.icon, new A.IconThemeData(currentColor, _null, effectiveIconSize, _null)), _null), _null), _null), _null); t5 = _this.tooltip; if (t5 != null) result = A.Tooltip$(result, t5); t2 = t2 ? B.SystemMouseCursor_basic : B.SystemMouseCursor_click; t5 = theme.focusColor; t6 = theme.hoverColor; t7 = theme.highlightColor; t8 = theme.splashColor; t9 = _this.splashRadius; t1 = A.InkResponse$(false, _null, t3, result, false, _null, true, false, t5, _null, t7, B.BoxShape_1, t6, _null, t2, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, t9 == null ? Math.max(35, (effectiveIconSize + Math.min(t4.get$horizontal(), t4.get$_top(t4) + t4.get$_bottom(t4))) * 0.7) : t9, t8, _null); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); } }; A.Ink.prototype = { get$_ink_decoration$_paddingIncludingDecoration() { var t1 = this.decoration; if (t1 == null || t1.get$padding(t1) == null) return B.EdgeInsets_0_0_0_0; t1 = t1.get$padding(t1); t1.toString; return t1; }, createState$0() { return new A._InkState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A._InkState.prototype = { _handleRemoved$0() { this._ink = null; }, deactivate$0() { var t1 = this._ink; if (t1 != null) t1.dispose$0(0); this.super$State$deactivate(); }, _build$1(context) { var t3, t4, _this = this, t1 = _this._ink, t2 = _this._widget; if (t1 == null) { t1 = t2.decoration; t2 = A.createLocalImageConfiguration(context, null); t3 = context.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t3.toString; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._boxKey).get$renderObject(); t4.toString; t4 = new A.InkDecoration(t2, t3, type$.RenderBox._as(t4), _this.get$_handleRemoved()); t4.set$decoration(0, t1); t3.addInkFeature$1(t4); _this._ink = t4; } else { t1.set$decoration(0, t2.decoration); t1 = _this._ink; t1.toString; t1.set$configuration(A.createLocalImageConfiguration(context, null)); } t1 = _this._widget.child; return t1; }, build$1(_, context) { var _this = this, result = new A.Padding(_this._widget.get$_ink_decoration$_paddingIncludingDecoration(), new A.Builder(_this.get$_build(), null), _this._boxKey), t1 = _this._widget.height; return t1 != null ? new A.SizedBox(null, t1, result, null) : result; } }; A.InkDecoration.prototype = { set$decoration(_, value) { var t1, _this = this; if (J.$eq$(value, _this._ink_decoration$_decoration)) return; _this._ink_decoration$_decoration = value; t1 = _this._ink_decoration$_painter; if (t1 != null) t1.dispose$0(0); t1 = _this._ink_decoration$_decoration; _this._ink_decoration$_painter = t1 == null ? null : t1.createBoxPainter$1(_this.get$_handleChanged()); _this._material$_controller.markNeedsPaint$0(); }, set$configuration(value) { if (value.$eq(0, this._ink_decoration$_configuration)) return; this._ink_decoration$_configuration = value; this._material$_controller.markNeedsPaint$0(); }, _handleChanged$0() { this._material$_controller.markNeedsPaint$0(); }, dispose$0(_) { var t1 = this._ink_decoration$_painter; if (t1 != null) t1.dispose$0(0); this.super$InkFeature$dispose(0); }, paintFeature$2(canvas, transform) { var originOffset, t1, t2, sizedConfiguration, _this = this; if (_this._ink_decoration$_painter == null) return; originOffset = A.MatrixUtils_getAsTranslation(transform); t1 = _this._ink_decoration$_configuration; t2 = _this.referenceBox._box$_size; t2.toString; sizedConfiguration = t1.copyWith$1$size(t2); if (originOffset == null) { canvas.save$0(0); canvas.transform$1(0, transform._m4storage); _this._ink_decoration$_painter.paint$3(canvas, B.Offset_0_0, sizedConfiguration); canvas.restore$0(0); } else _this._ink_decoration$_painter.paint$3(canvas, originOffset, sizedConfiguration); } }; A.InkHighlight.prototype = { _handleAlphaStatusChanged$1($status) { if ($status === B.AnimationStatus_0 && !this._active) { A._lateReadCheck(this.__InkHighlight__alphaController, "_alphaController").dispose$0(0); this.super$InkFeature$dispose(0); } }, dispose$0(_) { A._lateReadCheck(this.__InkHighlight__alphaController, "_alphaController").dispose$0(0); this.super$InkFeature$dispose(0); }, _paintHighlight$3(canvas, rect, paint) { var t1, t2, _this = this; canvas.save$0(0); t1 = _this._ink_highlight$_customBorder; if (t1 != null) canvas.clipPath$1(0, t1.getOuterPath$2$textDirection(rect, _this._ink_highlight$_textDirection)); switch (_this._ink_highlight$_shape.index) { case 1: t1 = rect.get$center(); t2 = _this._ink_highlight$_radius; canvas.drawCircle$3(0, t1, t2 == null ? 35 : t2, paint); break; case 0: t1 = _this._ink_highlight$_borderRadius; if (!t1.$eq(0, B.BorderRadius_tLn)) canvas.drawRRect$2(0, A.RRect$fromRectAndCorners(rect, t1.bottomLeft, t1.bottomRight, t1.topLeft, t1.topRight), paint); else canvas.drawRect$2(0, rect, paint); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } canvas.restore$0(0); }, paintFeature$2(canvas, transform) { var originOffset, rect, _this = this, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()), t1 = _this._ink_well$_color, t2 = A._lateReadCheck(_this.__InkHighlight__alpha, "_alpha"), t3 = t2._evaluatable; t2 = t2.parent; paint.set$color(0, A.Color$fromARGB(t3.transform$1(0, t2.get$value(t2)), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); originOffset = A.MatrixUtils_getAsTranslation(transform); t1 = _this._rectCallback; if (t1 != null) rect = t1.call$0(); else { t1 = _this.referenceBox._box$_size; rect = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } if (originOffset == null) { canvas.save$0(0); canvas.transform$1(0, transform._m4storage); _this._paintHighlight$3(canvas, rect, paint); canvas.restore$0(0); } else _this._paintHighlight$3(canvas, rect.shift$1(originOffset), paint); } }; A._getClipCallback_closure.prototype = { call$0() { var t1 = this.referenceBox._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, $signature: 440 }; A._InkRippleFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { var t2, size, t3, t4, t5, t6, t7, t8, t9, t10, _null = null, t1 = borderRadius == null ? B.BorderRadius_tLn : borderRadius; if (radius == null) { if (rectCallback != null) { t2 = rectCallback.call$0(); size = new A.Size(t2.right - t2.left, t2.bottom - t2.top); } else { t2 = referenceBox._box$_size; t2.toString; size = t2; } t2 = Math.max(size.bottomRight$1(0, B.Offset_0_0).get$distance(), new A.Offset(0 + size._dx, 0).$sub(0, new A.Offset(0, 0 + size._dy)).get$distance()) / 2; } else t2 = radius; t1 = new A.InkRipple(position, t1, customBorder, t2, A._getClipCallback(referenceBox, containedInkWell, rectCallback), textDirection, color, controller, referenceBox, onRemoved); t3 = controller.vsync; t4 = A.AnimationController$(_null, B.Duration_75000, _null, 1, _null, t3); t5 = controller.get$markNeedsPaint(); t4.didRegisterListener$0(); t6 = t4.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t4.forward$0(0); t1.__InkRipple__fadeInController = t4; t4 = A._lateReadCheck(t4, "_fadeInController"); t6 = color.get$value(color); t7 = type$.Animation_double; t8 = type$.IntTween; t1.__InkRipple__fadeIn = new A._AnimatedEvaluation(t7._as(t4), new A.IntTween(0, t6 >>> 24 & 255), t8._eval$1("_AnimatedEvaluation")); t6 = A.AnimationController$(_null, B.Duration_1000000, _null, 1, _null, t3); t6.didRegisterListener$0(); t4 = t6.AnimationLocalListenersMixin__listeners; t4._isDirty = true; t4._observer_list$_list.push(t5); t6.forward$0(0); t1.__InkRipple__radiusController = t6; t6 = A._lateReadCheck(t6, "_radiusController"); t4 = type$.Tween_double; t9 = $.$get$InkRipple__easeCurveTween(); t10 = t4._eval$1("_ChainedEvaluation"); t1.__InkRipple__radius = new A._AnimatedEvaluation(t7._as(t6), new A._ChainedEvaluation(t9, new A.Tween(t2 * 0.3, t2 + 5, t4), t10), t10._eval$1("_AnimatedEvaluation")); t3 = A.AnimationController$(_null, B.Duration_375000, _null, 1, _null, t3); t3.didRegisterListener$0(); t10 = t3.AnimationLocalListenersMixin__listeners; t10._isDirty = true; t10._observer_list$_list.push(t5); t3.addStatusListener$1(t1.get$_ink_ripple$_handleAlphaStatusChanged()); t1.__InkRipple__fadeOutController = t3; t3 = A._lateReadCheck(t3, "_fadeOutController"); t5 = color.get$value(color); t10 = $.$get$InkRipple__fadeOutIntervalTween(); t8 = t8._eval$1("_ChainedEvaluation"); t1.__InkRipple__fadeOut = new A._AnimatedEvaluation(t7._as(t3), new A._ChainedEvaluation(t10, new A.IntTween(t5 >>> 24 & 255, 0), t8), t8._eval$1("_AnimatedEvaluation")); controller.addInkFeature$1(t1); return t1; } }; A.InkRipple.prototype = { confirm$0(_) { var t1 = A._lateReadCheck(this.__InkRipple__radiusController, "_radiusController"); t1.duration = B.Duration_225000; t1.forward$0(0); A._lateReadCheck(this.__InkRipple__fadeInController, "_fadeInController").forward$0(0); t1 = A._lateReadCheck(this.__InkRipple__fadeOutController, "_fadeOutController"); t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, B.C__Linear, B.Duration_375000); }, cancel$0(_) { var fadeOutValue, t1, _this = this, _s17_ = "_fadeInController", _s18_ = "_fadeOutController"; A._lateReadCheck(_this.__InkRipple__fadeInController, _s17_).stop$0(0); fadeOutValue = 1 - A._lateReadCheck(A._lateReadCheck(_this.__InkRipple__fadeInController, _s17_).__AnimationController__value, "_value"); A._lateReadCheck(_this.__InkRipple__fadeOutController, _s18_).set$value(0, fadeOutValue); if (fadeOutValue < 1) { t1 = A._lateReadCheck(_this.__InkRipple__fadeOutController, _s18_); t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, B.C__Linear, B.Duration_75000); } }, _ink_ripple$_handleAlphaStatusChanged$1($status) { if ($status === B.AnimationStatus_3) this.dispose$0(0); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.__InkRipple__radiusController, "_radiusController").dispose$0(0); A._lateReadCheck(_this.__InkRipple__fadeInController, "_fadeInController").dispose$0(0); A._lateReadCheck(_this.__InkRipple__fadeOutController, "_fadeOutController").dispose$0(0); _this.super$InkFeature$dispose(0); }, paintFeature$2(canvas, transform) { var t2, alpha, paint, t3, _this = this, t1 = A._lateReadCheck(_this.__InkRipple__fadeInController, "_fadeInController")._ticker; if (t1 != null && t1._ticker$_future != null) { t1 = A._lateReadCheck(_this.__InkRipple__fadeIn, "_fadeIn"); t2 = t1._evaluatable; t1 = t1.parent; alpha = t2.transform$1(0, t1.get$value(t1)); } else { t1 = A._lateReadCheck(_this.__InkRipple__fadeOut, "_fadeOut"); t2 = t1._evaluatable; t1 = t1.parent; alpha = t2.transform$1(0, t1.get$value(t1)); } paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1 = _this._ink_well$_color; paint.set$color(0, A.Color$fromARGB(alpha, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); t1 = A.Offset_lerp(_this._ink_ripple$_position, _this.referenceBox._box$_size.center$1(B.Offset_0_0), B.Cubic_JUR.transform$1(0, A._lateReadCheck(A._lateReadCheck(_this.__InkRipple__radiusController, "_radiusController").__AnimationController__value, "_value"))); t1.toString; t2 = A._lateReadCheck(_this.__InkRipple__radius, "_radius"); t3 = t2._evaluatable; t2 = t2.parent; _this.paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform(_this._ink_ripple$_borderRadius, canvas, t1, _this._ink_ripple$_clipCallback, _this._ink_ripple$_customBorder, paint, t3.transform$1(0, t2.get$value(t2)), _this._ink_ripple$_textDirection, transform); } }; A._getClipCallback_closure0.prototype = { call$0() { var t1 = this.referenceBox._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, $signature: 440 }; A._InkSplashFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { var t3, t4, t5, t6, t7, _null = null, t1 = borderRadius == null ? B.BorderRadius_tLn : borderRadius, t2 = radius == null ? A._getTargetRadius(referenceBox, containedInkWell, rectCallback, position) : radius; t1 = new A.InkSplash(position, t1, customBorder, t2, A._getClipCallback0(referenceBox, containedInkWell, rectCallback), !containedInkWell, textDirection, color, controller, referenceBox, onRemoved); t3 = controller.vsync; t4 = A.AnimationController$(_null, B.Duration_1000000, _null, 1, _null, t3); t5 = controller.get$markNeedsPaint(); t4.didRegisterListener$0(); t6 = t4.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t4.forward$0(0); t1.__InkSplash__radiusController = t4; t6 = type$.Tween_double; t7 = type$.Animation_double; t1.__InkSplash__radius = new A._AnimatedEvaluation(t7._as(A._lateReadCheck(t4, "_radiusController")), new A.Tween(0, t2, t6), t6._eval$1("_AnimatedEvaluation")); t3 = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, t3); t3.didRegisterListener$0(); t6 = t3.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t3.addStatusListener$1(t1.get$_ink_splash$_handleAlphaStatusChanged()); t1._alphaController = t3; t5 = color.get$value(color); t1.__InkSplash__alpha = new A._AnimatedEvaluation(t7._as(t3), new A.IntTween(t5 >>> 24 & 255, 0), type$.IntTween._eval$1("_AnimatedEvaluation")); controller.addInkFeature$1(t1); return t1; } }; A.InkSplash.prototype = { confirm$0(_) { var duration = B.JSNumber_methods.floor$0(this._targetRadius / 1), t1 = A._lateReadCheck(this.__InkSplash__radiusController, "_radiusController"); t1.duration = A.Duration$(0, 0, 0, duration, 0, 0); t1.forward$0(0); this._alphaController.forward$0(0); }, cancel$0(_) { var t1 = this._alphaController; if (t1 != null) t1.forward$0(0); }, _ink_splash$_handleAlphaStatusChanged$1($status) { if ($status === B.AnimationStatus_3) this.dispose$0(0); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.__InkSplash__radiusController, "_radiusController").dispose$0(0); _this._alphaController.dispose$0(0); _this._alphaController = null; _this.super$InkFeature$dispose(0); }, paintFeature$2(canvas, transform) { var center, _this = this, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()), t1 = _this._ink_well$_color, t2 = A._lateReadCheck(_this.__InkSplash__alpha, "_alpha"), t3 = t2._evaluatable; t2 = t2.parent; paint.set$color(0, A.Color$fromARGB(t3.transform$1(0, t2.get$value(t2)), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); center = _this._ink_splash$_position; if (_this._repositionToReferenceBox) center = A.Offset_lerp(center, _this.referenceBox._box$_size.center$1(B.Offset_0_0), A._lateReadCheck(A._lateReadCheck(_this.__InkSplash__radiusController, "_radiusController").__AnimationController__value, "_value")); center.toString; t1 = A._lateReadCheck(_this.__InkSplash__radius, "_radius"); t2 = t1._evaluatable; t1 = t1.parent; _this.paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform(_this._ink_splash$_borderRadius, canvas, center, _this._clipCallback, _this._customBorder, paint, t2.transform$1(0, t1.get$value(t1)), _this._ink_splash$_textDirection, transform); } }; A.InteractiveInkFeature.prototype = { confirm$0(_) { }, cancel$0(_) { }, set$color(_, value) { if (J.$eq$(value, this._ink_well$_color)) return; this._ink_well$_color = value; this._material$_controller.markNeedsPaint$0(); }, paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform(borderRadius, canvas, center, clipCallback, customBorder, paint, radius, textDirection, transform) { var rect, originOffset = A.MatrixUtils_getAsTranslation(transform); canvas.save$0(0); if (originOffset == null) canvas.transform$1(0, transform._m4storage); else canvas.translate$2(0, originOffset._dx, originOffset._dy); if (clipCallback != null) { rect = clipCallback.call$0(); if (customBorder != null) canvas.clipPath$1(0, customBorder.getOuterPath$2$textDirection(rect, textDirection)); else if (!borderRadius.$eq(0, B.BorderRadius_tLn)) canvas.clipRRect$1(0, A.RRect$fromRectAndCorners(rect, borderRadius.bottomLeft, borderRadius.bottomRight, borderRadius.topLeft, borderRadius.topRight)); else canvas.clipRect$1(0, rect); } canvas.drawCircle$3(0, center, radius, paint); canvas.restore$0(0); } }; A.InteractiveInkFeatureFactory.prototype = {}; A._ParentInkResponseProvider.prototype = { updateShouldNotify$1(oldWidget) { return this.state !== oldWidget.state; } }; A.InkResponse.prototype = { getRectCallback$1(referenceBox) { return null; }, build$1(_, context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$._ParentInkResponseProvider), parentState = t1 == null ? null : t1.state; return new A._InkResponseStateWidget(_this.child, _this.onTap, _this.onTapDown, _this.onTapUp, _this.onTapCancel, _this.onDoubleTap, _this.onLongPress, _this.onHighlightChanged, _this.onHover, _this.mouseCursor, _this.containedInkWell, _this.highlightShape, _this.radius, _this.borderRadius, _this.customBorder, _this.focusColor, _this.hoverColor, _this.highlightColor, _this.overlayColor, _this.splashColor, _this.splashFactory, _this.enableFeedback, false, _this.onFocusChange, _this.autofocus, _this.focusNode, _this.canRequestFocus, parentState, _this.get$getRectCallback(), _this.get$debugCheckContext(), null); }, debugCheckContext$1(context) { return true; } }; A._InkResponseStateWidget.prototype = { createState$0() { return new A._InkResponseState(A.LinkedHashMap_LinkedHashMap$_empty(type$._HighlightType, type$.nullable_InkHighlight), new A.ObserverList(A._setArrayType([], type$.JSArray__ParentInkResponseState), type$.ObserverList__ParentInkResponseState), null, B._StateLifecycle_0); } }; A._HighlightType.prototype = { toString$0(_) { return "_HighlightType." + this._core$_name; } }; A._InkResponseState.prototype = { get$highlightsExist() { var t1 = this._highlights; t1 = t1.get$values(t1); t1 = new A.WhereIterable(t1, new A._InkResponseState_highlightsExist_closure(), A._instanceType(t1)._eval$1("WhereIterable")); return !t1.get$isEmpty(t1); }, markChildInkResponsePressed$2(childState, value) { var nowAnyPressed, t1 = this._activeChildren, t2 = t1._observer_list$_list, t3 = t2.length; if (value) { t1._isDirty = true; t2.push(childState); } else t1.remove$1(0, childState); nowAnyPressed = t2.length !== 0; if (nowAnyPressed !== (t3 !== 0)) { t1 = this._widget.parentState; if (t1 != null) t1.markChildInkResponsePressed$2(this, nowAnyPressed); } }, _simulateTap$1(intent) { var t1 = this._framework$_element; t1.toString; this._startSplash$1$context(t1); this._handleTap$0(); }, _simulateTap$0() { return this._simulateTap$1(null); }, _simulateLongPress$0() { var t1 = this._framework$_element; t1.toString; this._startSplash$1$context(t1); this._handleLongPress$0(); }, initState$0() { this.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$initState(); $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.add$1(0, this.get$_handleFocusHighlightModeChange()); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1) !== _this._isWidgetEnabled$1(oldWidget)) { t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1)) _this.updateHighlight$3$callOnHover$value(B._HighlightType_1, false, _this._hovering); _this._updateFocusHighlights$0(); } }, dispose$0(_) { $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.remove$1(0, this.get$_handleFocusHighlightModeChange()); this.super$State$dispose(0); }, get$wantKeepAlive() { if (!this.get$highlightsExist()) { var t1 = this._splashes; t1 = t1 != null && t1._collection$_length !== 0; } else t1 = true; return t1; }, getHighlightColorForType$1(type) { var theme, _this = this, t1 = _this._framework$_element; t1.toString; theme = A.Theme_of(t1); switch (type) { case B._HighlightType_0: t1 = _this._widget.overlayColor; t1 = t1 == null ? null : t1.resolve$1(0, B.Set_cMbP4); if (t1 == null) t1 = _this._widget.highlightColor; return t1 == null ? theme.highlightColor : t1; case B._HighlightType_2: t1 = _this._widget.overlayColor; t1 = t1 == null ? null : t1.resolve$1(0, B.Set_YGDIm); if (t1 == null) t1 = _this._widget.focusColor; return t1 == null ? theme.focusColor : t1; case B._HighlightType_1: t1 = _this._widget.overlayColor; t1 = t1 == null ? null : t1.resolve$1(0, B.Set_WLNEa); if (t1 == null) t1 = _this._widget.hoverColor; return t1 == null ? theme.hoverColor : t1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getFadeDurationForType$1(type) { switch (type.index) { case 0: return B.Duration_200000; case 1: case 2: return B.Duration_50000; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, updateHighlight$3$callOnHover$value(type, callOnHover, value) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _s16_ = "_alphaController", t1 = _this._highlights, highlight = t1.$index(0, type); if (type === B._HighlightType_0) { t2 = _this._widget.parentState; if (t2 != null) t2.markChildInkResponsePressed$2(_this, value); } t2 = highlight == null; if (value === (!t2 && highlight._active)) return; if (value) if (t2) { t2 = _this._framework$_element.get$renderObject(); t2.toString; type$.RenderBox._as(t2); t3 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t3.toString; t4 = _this.getHighlightColorForType$1(type); t5 = _this._widget; t6 = t5.highlightShape; t7 = t5.radius; t8 = t5.borderRadius; t9 = t5.customBorder; t5 = t5.getRectCallback.call$1(t2); t10 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t10.toString; t11 = _this.getFadeDurationForType$1(type); if (t8 == null) t8 = B.BorderRadius_tLn; t2 = new A.InkHighlight(t6, t7, t8, t9, t5, t10.textDirection, t4, t3, t2, new A._InkResponseState_updateHighlight_handleInkRemoval(_this, type)); t11 = A.AnimationController$(null, t11, null, 1, null, t3.vsync); t11.didRegisterListener$0(); t10 = t11.AnimationLocalListenersMixin__listeners; t10._isDirty = true; t10._observer_list$_list.push(t3.get$markNeedsPaint()); t11.addStatusListener$1(t2.get$_handleAlphaStatusChanged()); t11.forward$0(0); t2.__InkHighlight__alphaController = t11; t11 = A._lateReadCheck(t11, _s16_); t4 = t4.get$value(t4); t2.__InkHighlight__alpha = new A._AnimatedEvaluation(type$.Animation_double._as(t11), new A.IntTween(0, t4 >>> 24 & 255), type$.IntTween._eval$1("_AnimatedEvaluation")); t3.addInkFeature$1(t2); t1.$indexSet(0, type, t2); _this.updateKeepAlive$0(); } else { highlight._active = true; A._lateReadCheck(highlight.__InkHighlight__alphaController, _s16_).forward$0(0); } else { highlight._active = false; A._lateReadCheck(highlight.__InkHighlight__alphaController, _s16_).reverse$0(0); } switch (type.index) { case 0: t1 = _this._widget.onHighlightChanged; if (t1 != null) t1.call$1(value); break; case 1: if (callOnHover) { t1 = _this._widget.onHover; if (t1 != null) t1.call$1(value); } break; case 2: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, updateHighlight$2$value(type, value) { return this.updateHighlight$3$callOnHover$value(type, true, value); }, _createInkFeature$1(globalPosition) { var t3, position, t4, color, rectCallback, borderRadius, customBorder, t5, t6, t7, _this = this, t1 = {}, t2 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t2.toString; t3 = _this._framework$_element.get$renderObject(); t3.toString; type$.RenderBox._as(t3); position = t3.globalToLocal$1(globalPosition); t4 = _this._widget.overlayColor; t4 = t4 == null ? null : t4.resolve$1(0, B.Set_cMbP4); color = t4 == null ? _this._widget.splashColor : t4; if (color == null) { t4 = _this._framework$_element; t4.toString; color = A.Theme_of(t4).splashColor; } t4 = _this._widget; rectCallback = t4.containedInkWell ? t4.getRectCallback.call$1(t3) : null; t4 = _this._widget; borderRadius = t4.borderRadius; customBorder = t4.customBorder; t1.splash = null; t4 = t4.splashFactory; if (t4 == null) { t4 = _this._framework$_element; t4.toString; t4 = A.Theme_of(t4).splashFactory; } t5 = _this._widget; t6 = t5.containedInkWell; t5 = t5.radius; t7 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t7.toString; return t1.splash = t4.create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(0, borderRadius, color, t6, t2, customBorder, new A._InkResponseState__createInkFeature_onRemoved(t1, _this), position, t5, rectCallback, t3, t7.textDirection); }, _handleFocusHighlightModeChange$1(mode) { if (this._framework$_element == null) return; this.setState$1(new A._InkResponseState__handleFocusHighlightModeChange_closure(this)); }, get$_shouldShowFocus() { var mode, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: t1 = _this._widget; t1.toString; return _this._isWidgetEnabled$1(t1) && _this._hasFocus; case 1: return _this._hasFocus; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _updateFocusHighlights$0() { var showFocus, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch ((t1 == null ? A.FocusManager__defaultModeForPlatform() : t1).index) { case 0: showFocus = false; break; case 1: showFocus = this.get$_shouldShowFocus(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } this.updateHighlight$2$value(B._HighlightType_2, showFocus); }, _handleFocusUpdate$1(hasFocus) { var t1; this._hasFocus = hasFocus; this._updateFocusHighlights$0(); t1 = this._widget.onFocusChange; if (t1 != null) t1.call$1(hasFocus); }, _handleTapDown$1(details) { if (this._activeChildren._observer_list$_list.length !== 0) return; this._startSplash$1$details(details); this._widget.toString; }, _handleTapUp$1(details) { this._widget.toString; }, _startSplash$2$context$details(context, details) { var t1, t2, globalPosition, splash, _this = this; if (context != null) { t1 = context.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1._box$_size; t2 = new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy).get$center(); globalPosition = A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, null), t2); } else globalPosition = details.globalPosition; splash = _this._createInkFeature$1(globalPosition); t1 = _this._splashes; (t1 == null ? _this._splashes = A.HashSet_HashSet(type$.InteractiveInkFeature) : t1).add$1(0, splash); _this._currentSplash = splash; _this.updateKeepAlive$0(); _this.updateHighlight$2$value(B._HighlightType_0, true); }, _startSplash$1$details(details) { return this._startSplash$2$context$details(null, details); }, _startSplash$1$context(context) { return this._startSplash$2$context$details(context, null); }, _handleTap$0() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.confirm$0(0); _this._currentSplash = null; _this.updateHighlight$2$value(B._HighlightType_0, false); t1 = _this._widget; if (t1.onTap != null) { if (t1.enableFeedback) { t1 = _this._framework$_element; t1.toString; A.Feedback_forTap(t1); } t1 = _this._widget.onTap; if (t1 != null) t1.call$0(); } }, _handleTapCancel$0() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.cancel$0(0); _this._currentSplash = null; _this._widget.toString; _this.updateHighlight$2$value(B._HighlightType_0, false); }, _handleDoubleTap$0() { var t1 = this._currentSplash; if (t1 != null) t1.confirm$0(0); this._currentSplash = null; t1 = this._widget.onDoubleTap; if (t1 != null) t1.call$0(); }, _handleLongPress$0() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.confirm$0(0); _this._currentSplash = null; t1 = _this._widget; if (t1.onLongPress != null) { if (t1.enableFeedback) { t1 = _this._framework$_element; t1.toString; A.Feedback_forLongPress(t1); } _this._widget.onLongPress.call$0(); } }, deactivate$0() { var t2, t3, t4, t5, t6, value, result, _this = this, t1 = _this._splashes; if (t1 != null) { _this._splashes = null; for (t1 = new A._HashSetIterator(t1, t1._computeElements$0(), A._instanceType(t1)._eval$1("_HashSetIterator<1>")); t1.moveNext$0();) t1._collection$_current.dispose$0(0); _this._currentSplash = null; } for (t1 = _this._highlights, t2 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t2.moveNext$0();) { t3 = t2.__js_helper$_current; t4 = t1.$index(0, t3); if (t4 != null) { t5 = A._lateReadCheck(t4.__InkHighlight__alphaController, "_alphaController"); t5._ticker.dispose$0(0); t5._ticker = null; t6 = t5.AnimationLocalStatusListenersMixin__statusListeners; t6._isDirty = false; B.JSArray_methods.set$length(t6._observer_list$_list, 0); value = t6.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t6.$ti._precomputed1); A._lateInitializeOnceCheck(t6.__ObserverList__set, "_set"); t6.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t6 = t5.AnimationLocalListenersMixin__listeners; t6._isDirty = false; B.JSArray_methods.set$length(t6._observer_list$_list, 0); value = t6.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t6.$ti._precomputed1); A._lateInitializeOnceCheck(t6.__ObserverList__set, "_set"); t6.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t5.super$AnimationEagerListenerMixin$dispose(0); t4.super$InkFeature$dispose(0); } t1.$indexSet(0, t3, null); } t1 = _this._widget.parentState; if (t1 != null) t1.markChildInkResponsePressed$2(_this, false); _this.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$deactivate(); }, _isWidgetEnabled$1(widget) { return widget.onTap != null || widget.onDoubleTap != null || widget.onLongPress != null || false; }, _handleMouseEnter$1($event) { var t1, _this = this; _this._hovering = true; t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1)) _this.updateHighlight$2$value(B._HighlightType_1, _this._hovering); }, _ink_well$_handleMouseExit$1($event) { this._hovering = false; this.updateHighlight$2$value(B._HighlightType_1, false); }, get$_ink_well$_canRequestFocus() { var mode, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: t1 = _this._widget; t1.toString; return _this._isWidgetEnabled$1(t1) && _this._widget.canRequestFocus; case 1: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t1, t2, t3, t4, effectiveMouseCursor, value, result, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null; _this.super$AutomaticKeepAliveClientMixin$build(0, context); for (t1 = _this._highlights, t2 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t2.moveNext$0();) { t3 = t2.__js_helper$_current; t4 = t1.$index(0, t3); if (t4 != null) t4.set$color(0, _this.getHighlightColorForType$1(t3)); } t1 = _this._currentSplash; if (t1 != null) { t2 = _this._widget.overlayColor; t2 = t2 == null ? _null : t2.resolve$1(0, B.Set_cMbP4); if (t2 == null) t2 = _this._widget.splashColor; t1.set$color(0, t2 == null ? A.Theme_of(context).splashColor : t2); } t1 = _this._widget; t2 = t1.mouseCursor; if (t2 == null) t2 = B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable; t3 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this._isWidgetEnabled$1(t1)) t3.add$1(0, B.MaterialState_6); if (_this._hovering) { t1 = _this._widget; t1.toString; t1 = _this._isWidgetEnabled$1(t1); } else t1 = false; if (t1) t3.add$1(0, B.MaterialState_0); if (_this._hasFocus) t3.add$1(0, B.MaterialState_1); effectiveMouseCursor = A.MaterialStateProperty_resolveAs(t2, t3, type$.MouseCursor); value = _this.___InkResponseState__actionMap; if (value === $) { t1 = _this.get$_simulateTap(); t2 = type$.JSArray_of_void_Function_Action_Intent; t3 = type$.ObserverList_of_void_Function_Action_Intent; result = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_ActivateIntent_OT9, new A.CallbackAction(t1, new A.ObserverList(A._setArrayType([], t2), t3), type$.CallbackAction_ActivateIntent), B.Type_ButtonActivateIntent_6Ij, new A.CallbackAction(t1, new A.ObserverList(A._setArrayType([], t2), t3), type$.CallbackAction_ButtonActivateIntent)], type$.Type, type$.Action_Intent); A._lateInitializeOnceCheck(_this.___InkResponseState__actionMap, "_actionMap"); _this.___InkResponseState__actionMap = result; value = result; } t1 = _this._widget.focusNode; t2 = _this.get$_ink_well$_canRequestFocus(); t3 = _this._widget; t4 = t3.autofocus; t5 = t3.onTap; t5 = t5 == null ? _null : _this.get$_simulateTap(); t6 = t3.onLongPress; t6 = t6 == null ? _null : _this.get$_simulateLongPress(); t3 = _this._isWidgetEnabled$1(t3) ? _this.get$_handleTapDown() : _null; t7 = _this._widget; t7.toString; t7 = _this._isWidgetEnabled$1(t7) ? _this.get$_handleTapUp() : _null; t8 = _this._widget; t8.toString; t8 = _this._isWidgetEnabled$1(t8) ? _this.get$_handleTap() : _null; t9 = _this._widget; t9.toString; t9 = _this._isWidgetEnabled$1(t9) ? _this.get$_handleTapCancel() : _null; t10 = _this._widget; t11 = t10.onDoubleTap != null ? _this.get$_handleDoubleTap() : _null; t12 = t10.onLongPress != null ? _this.get$_handleLongPress() : _null; t7 = A.GestureDetector$(B.HitTestBehavior_1, t10.child, B.DragStartBehavior_1, true, _null, t11, _null, _null, _null, _null, _null, t12, _null, _null, _null, _null, _null, _null, _null, _null, t8, t9, t3, t7, _null, _null, _null); return new A._ParentInkResponseProvider(_this, A.Actions$(value, A.Focus$(t4, t2, A.MouseRegion$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t7, _null), effectiveMouseCursor, _null, _this.get$_handleMouseEnter(), _this.get$_ink_well$_handleMouseExit(), _null), _null, _null, _null, t1, true, _null, _this.get$_handleFocusUpdate(), _null, _null, _null)), _null); }, $is_ParentInkResponseState: 1 }; A._InkResponseState_highlightsExist_closure.prototype = { call$1(highlight) { return highlight != null; }, $signature: 2325 }; A._InkResponseState_updateHighlight_handleInkRemoval.prototype = { call$0() { var t1 = this.$this; t1._highlights.$indexSet(0, this.type, null); t1.updateKeepAlive$0(); }, $signature: 0 }; A._InkResponseState__createInkFeature_onRemoved.prototype = { call$0() { var t3, t1 = this.$this, t2 = t1._splashes; if (t2 != null) { t3 = this._box_0; t2.remove$1(0, t3.splash); if (t1._currentSplash == t3.splash) t1._currentSplash = null; t1.updateKeepAlive$0(); } }, $signature: 0 }; A._InkResponseState__handleFocusHighlightModeChange_closure.prototype = { call$0() { this.$this._updateFocusHighlights$0(); }, $signature: 0 }; A.InkWell.prototype = {}; A.__InkResponseState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); if (this.get$wantKeepAlive()) this._ensureKeepAlive$0(); }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A.InputBorder.prototype = {}; A._NoInputBorder.prototype = { copyWith$1$borderSide(borderSide) { return B._NoInputBorder_sqK; }, get$isOutline() { return false; }, get$dimensions() { return B.EdgeInsets_0_0_0_0; }, scale$1(_, t) { return B._NoInputBorder_sqK; }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRect$1(0, rect); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRect$1(0, rect); return t1; }, paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { }, paint$3$textDirection(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); } }; A.UnderlineInputBorder.prototype = { get$isOutline() { return false; }, copyWith$1$borderSide(borderSide) { return new A.UnderlineInputBorder(this.borderRadius, borderSide); }, get$dimensions() { return new A.EdgeInsets(0, 0, 0, this.borderSide.width); }, scale$1(_, t) { return new A.UnderlineInputBorder(B.BorderRadius_tLn1, this.borderSide.scale$1(0, t)); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(), t2 = rect.left, t3 = rect.top; t1.addRect$1(0, new A.Rect(t2, t3, t2 + (rect.right - t2), t3 + Math.max(0, rect.bottom - t3 - this.borderSide.width))); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect)); return t1; }, lerpFrom$2(a, t) { var t1, t2; if (a instanceof A.UnderlineInputBorder) { t1 = A.BorderSide_lerp(a.borderSide, this.borderSide, t); t2 = A.BorderRadius_lerp(a.borderRadius, this.borderRadius, t); t2.toString; return new A.UnderlineInputBorder(t2, t1); } return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2; if (b instanceof A.UnderlineInputBorder) { t1 = A.BorderSide_lerp(this.borderSide, b.borderSide, t); t2 = A.BorderRadius_lerp(this.borderRadius, b.borderRadius, t); t2.toString; return new A.UnderlineInputBorder(t2, t1); } return this.super$ShapeBorder$lerpTo(b, t); }, paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { var t1 = this.borderRadius; if (!J.$eq$(t1.bottomLeft, B.Radius_0_0) || !J.$eq$(t1.bottomRight, B.Radius_0_0)) canvas.clipPath$1(0, this.getOuterPath$2$textDirection(rect, textDirection)); t1 = rect.bottom; canvas.drawLine$3(0, new A.Offset(rect.left, t1), new A.Offset(rect.right, t1), this.borderSide.toPaint$0()); }, paint$3$textDirection(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.InputBorder && J.$eq$(other.borderSide, this.borderSide); }, get$hashCode(_) { return J.get$hashCode$(this.borderSide); } }; A.OutlineInputBorder.prototype = { get$isOutline() { return true; }, copyWith$1$borderSide(borderSide) { return new A.OutlineInputBorder(this.gapPadding, this.borderRadius, borderSide); }, get$dimensions() { var t1 = this.borderSide.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { var t1 = this.borderSide.scale$1(0, t); return new A.OutlineInputBorder(this.gapPadding * t, this.borderRadius.$mul(0, t), t1); }, lerpFrom$2(a, t) { var t1, t2; if (a instanceof A.OutlineInputBorder) { t1 = A.BorderRadius_lerp(a.borderRadius, this.borderRadius, t); t1.toString; t2 = A.BorderSide_lerp(a.borderSide, this.borderSide, t); return new A.OutlineInputBorder(a.gapPadding, t1, t2); } return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2; if (b instanceof A.OutlineInputBorder) { t1 = A.BorderRadius_lerp(this.borderRadius, b.borderRadius, t); t1.toString; t2 = A.BorderSide_lerp(this.borderSide, b.borderSide, t); return new A.OutlineInputBorder(b.gapPadding, t1, t2); } return this.super$ShapeBorder$lerpTo(b, t); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect).inflate$1(-this.borderSide.width)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect)); return t1; }, _gapBorderPath$4(canvas, center, start, extent) { var t10, t11, t12, t13, t14, t15, t16, tlCornerArcSweep, path, t17, sweep, scaledRRect = center.scaleRadii$0(), t1 = scaledRRect.left, t2 = scaledRRect.top, t3 = scaledRRect.tlRadiusX, t4 = scaledRRect.tlRadiusY, t5 = scaledRRect.right, t6 = scaledRRect.trRadiusX, t7 = t6 * 2, t8 = t5 - t7, t9 = scaledRRect.trRadiusY, trCorner = new A.Rect(t8, t2, t8 + t7, t2 + t9 * 2); t7 = scaledRRect.brRadiusX * 2; t8 = t5 - t7; t10 = scaledRRect.bottom; t11 = scaledRRect.brRadiusY; t12 = t11 * 2; t13 = t10 - t12; t14 = t10 - scaledRRect.blRadiusY * 2; t15 = scaledRRect.blRadiusX; t16 = t15 * 2; tlCornerArcSweep = Math.acos(B.JSNumber_methods.clamp$2(1 - start / t3, 0, 1)); path = A.Path_Path(); path.addArc$3(0, new A.Rect(t1, t2, t1 + t3 * 2, t2 + t4 * 2), 3.141592653589793, tlCornerArcSweep); if (start > t3) path.lineTo$2(0, t1 + start, t2); t3 = start + extent; t17 = t5 - t1; if (t3 < t17 - t6) { path.moveTo$2(0, t1 + start + extent, t2); path.lineTo$2(0, t5 - t6, t2); path.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); } else if (t3 < t17) { sweep = Math.asin(B.JSNumber_methods.clamp$2(1 - (t17 - t3) / t6, 0, 1)); path.addArc$3(0, trCorner, 4.71238898038469 + sweep, 1.5707963267948966 - sweep); } path.moveTo$2(0, t5, t2 + t9); path.lineTo$2(0, t5, t10 - t11); path.addArc$3(0, new A.Rect(t8, t13, t8 + t7, t13 + t12), 0, 1.5707963267948966); path.lineTo$2(0, t1 + t15, t10); path.addArc$3(0, new A.Rect(t1, t14, t1 + t16, t14 + t16), 1.5707963267948966, 1.5707963267948966); path.lineTo$2(0, t1, t2 + t4); return path; }, paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { var t2, _this = this, t1 = _this.borderSide, paint = t1.toPaint$0(), center = _this.borderRadius.toRRect$1(rect).inflate$1(-(t1.width / 2)); if (gapStart == null || gapExtent <= 0 || gapPercentage === 0) canvas.drawRRect$2(0, center, paint); else { t1 = _this.gapPadding; t2 = A.lerpDouble(0, gapExtent + t1 * 2, gapPercentage); t2.toString; switch (textDirection.index) { case 0: canvas.drawPath$2(0, _this._gapBorderPath$4(canvas, center, Math.max(0, gapStart + t1 - t2), t2), paint); break; case 1: canvas.drawPath$2(0, _this._gapBorderPath$4(canvas, center, Math.max(0, gapStart - t1), t2), paint); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, paint$3$textDirection(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.OutlineInputBorder && J.$eq$(other.borderSide, _this.borderSide) && J.$eq$(other.borderRadius, _this.borderRadius) && other.gapPadding === _this.gapPadding; }, get$hashCode(_) { return A.Object_hash(this.borderSide, this.borderRadius, this.gapPadding, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.InputDatePickerFormField.prototype = { createState$0() { return new A._InputDatePickerFormFieldState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0); } }; A._InputDatePickerFormFieldState.prototype = { initState$0() { this.super$State$initState(); this._input_date_picker_form_field$_selectedDate = this._widget.initialDate; }, dispose$0(_) { var t1 = this._input_date_picker_form_field$_controller; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._updateValueForSelectedDate$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(this._widget.initialDate, oldWidget.initialDate)) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._InputDatePickerFormFieldState_didUpdateWidget_closure(this)); }, _updateValueForSelectedDate$0() { var t2, t3, textEditingValue, _this = this, t1 = _this._input_date_picker_form_field$_controller; if (_this._input_date_picker_form_field$_selectedDate != null) { t2 = _this._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = _this._input_date_picker_form_field$_selectedDate; t3.toString; t3 = t2.formatCompactDate$1(t3); _this._inputText = t3; textEditingValue = t1._change_notifier$_value.copyWith$1$text(t3); _this._widget.toString; t2 = _this._autoSelected; if (!t2) { textEditingValue = textEditingValue.copyWith$1$selection(A.TextSelection$(B.TextAffinity_1, 0, _this._inputText.length, false)); _this._autoSelected = true; } t1.super$ValueNotifier$value(0, textEditingValue); } else { _this._inputText = ""; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$text("")); } }, _isValidAcceptableDate$1(date) { var t1, t2, t3; if (date != null) { t1 = this._widget; t2 = t1.firstDate; t3 = date._value; if (t3 >= t2._value) if (t3 <= t1.lastDate._value) t1 = true; else t1 = false; else t1 = false; } else t1 = false; return t1; }, _validateDate$1(text) { var t2, date, _this = this, t1 = _this._framework$_element; t1.toString; t2 = type$.MaterialLocalizations; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, t2); t1.toString; date = t1.parseCompactDate$1(text); if (date == null) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; t2 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, t2); t2.toString; return t2.get$invalidDateFormatLabel(); } else if (!_this._isValidAcceptableDate$1(date)) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; t2 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, t2); t2.toString; return t2.get$dateOutOfRangeLabel(); } return null; }, _updateDate$2(text, callback) { var date, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; date = t1.parseCompactDate$1(text); if (_this._isValidAcceptableDate$1(date)) { _this._input_date_picker_form_field$_selectedDate = date; _this._inputText = text; date.toString; callback.call$1(date); } }, _handleSaved$1(text) { this._updateDate$2(text, this._widget.onDateSaved); }, _handleSubmitted$1(text) { this._updateDate$2(text, this._widget.onDateSubmitted); }, build$1(_, context) { var t2, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; A.Theme_of(context).toString; _this._widget.toString; t2 = t1.get$dateHelpText(); _this._widget.toString; t1 = t1.get$dateInputLabel(); t1 = A.InputDecoration$(_null, B.UnderlineInputBorder_qFk, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, false, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); _this._widget.toString; return A.TextFormField$(true, _null, true, _null, _this._input_date_picker_form_field$_controller, t1, _null, false, _null, _null, _null, _null, B.TextInputType_4_null_null, 1, _null, false, _null, _null, _this.get$_handleSubmitted(), _this.get$_handleSaved(), false, _null, _null, B.TextAlign_4, _null, _this.get$_validateDate()); } }; A._InputDatePickerFormFieldState_didUpdateWidget_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1.setState$1(new A._InputDatePickerFormFieldState_didUpdateWidget__closure(t1)); }, $signature: 22 }; A._InputDatePickerFormFieldState_didUpdateWidget__closure.prototype = { call$0() { var t1 = this.$this; t1._input_date_picker_form_field$_selectedDate = t1._widget.initialDate; t1._updateValueForSelectedDate$0(); }, $signature: 0 }; A._InputBorderGap.prototype = { set$start(_, value) { if (value != this._input_decorator$_start) { this._input_decorator$_start = value; this.notifyListeners$0(); } }, set$extent(value) { if (value !== this._extent) { this._extent = value; this.notifyListeners$0(); } }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A._InputBorderGap && other._input_decorator$_start == _this._input_decorator$_start && other._extent === _this._extent; }, get$hashCode(_) { return A.Object_hash(this._input_decorator$_start, this._extent, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "#" + A.shortHash(this); } }; A._InputBorderTween.prototype = { lerp$1(t) { var t1 = A.ShapeBorder_lerp(this.begin, this.end, t); t1.toString; return type$.InputBorder._as(t1); } }; A._InputBorderPainter.prototype = { paint$2(canvas, size) { var blendedFillColor, t2, _this = this, t1 = _this.borderAnimation, borderValue = _this.border.transform$1(0, t1.get$value(t1)), canvasRect = new A.Rect(0, 0, 0 + size._dx, 0 + size._dy); t1 = _this.hoverAnimation; t1 = _this.hoverColorTween.transform$1(0, t1.get$value(t1)); t1.toString; blendedFillColor = A.Color_alphaBlend(t1, _this.fillColor); if ((blendedFillColor.get$value(blendedFillColor) >>> 24 & 255) > 0) { t1 = borderValue.getOuterPath$2$textDirection(canvasRect, _this.textDirection); t2 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2.set$color(0, blendedFillColor); t2.set$style(0, B.PaintingStyle_0); canvas.drawPath$2(0, t1, t2); } t1 = _this.gap; t2 = t1._input_decorator$_start; borderValue.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, canvasRect, t1._extent, A._lateReadCheck(_this.gapAnimation.__AnimationController__value, "_value"), t2, _this.textDirection); }, shouldRepaint$1(oldPainter) { var _this = this; return _this.borderAnimation !== oldPainter.borderAnimation || _this.hoverAnimation !== oldPainter.hoverAnimation || _this.gapAnimation !== oldPainter.gapAnimation || _this.border !== oldPainter.border || !_this.gap.$eq(0, oldPainter.gap) || _this.textDirection != oldPainter.textDirection; }, toString$0(_) { return "#" + A.shortHash(this); } }; A._BorderContainer.prototype = { createState$0() { return new A._BorderContainerState(null, null, B._StateLifecycle_0); } }; A._BorderContainerState.prototype = { initState$0() { var t1, _this = this, _null = null; _this.super$State$initState(); _this.___BorderContainerState__hoverColorController = A.AnimationController$(_null, B.Duration_15000, _null, 1, _this._widget.isHovering ? 1 : 0, _this); t1 = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, _this); _this.___BorderContainerState__controller = t1; _this.___BorderContainerState__borderAnimation = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_controller"), _null); t1 = _this._widget.border; _this.___BorderContainerState__border = new A._InputBorderTween(t1, t1); _this.___BorderContainerState__hoverAnimation = A.CurvedAnimation$(B.C__Linear, A._lateReadCheck(_this.___BorderContainerState__hoverColorController, "_hoverColorController"), _null); _this.___BorderContainerState__hoverColorTween = new A.ColorTween(B.Color_0, _this._widget.hoverColor); }, dispose$0(_) { A._lateReadCheck(this.___BorderContainerState__controller, "_controller").dispose$0(0); A._lateReadCheck(this.___BorderContainerState__hoverColorController, "_hoverColorController").dispose$0(0); this.super$__BorderContainerState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s21_ = "_hoverColorController"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.border; t2 = oldWidget.border; if (!t1.$eq(0, t2)) { _this.___BorderContainerState__border = new A._InputBorderTween(t2, _this._widget.border); t1 = A._lateReadCheck(_this.___BorderContainerState__controller, "_controller"); t1.set$value(0, 0); t1.forward$0(0); } if (!J.$eq$(_this._widget.hoverColor, oldWidget.hoverColor)) _this.___BorderContainerState__hoverColorTween = new A.ColorTween(B.Color_0, _this._widget.hoverColor); t1 = _this._widget.isHovering; if (t1 !== oldWidget.isHovering) { t2 = _this.___BorderContainerState__hoverColorController; if (t1) A._lateReadCheck(t2, _s21_).forward$0(0); else A._lateReadCheck(t2, _s21_).reverse$0(0); } }, build$1(_, context) { var t6, _this = this, _s16_ = "_borderAnimation", t1 = A._setArrayType([A._lateReadCheck(_this.___BorderContainerState__borderAnimation, _s16_), _this._widget.gap, A._lateReadCheck(_this.___BorderContainerState__hoverColorController, "_hoverColorController")], type$.JSArray_Listenable), t2 = A._lateReadCheck(_this.___BorderContainerState__borderAnimation, _s16_), t3 = A._lateReadCheck(_this.___BorderContainerState__border, "_border"), t4 = _this._widget, t5 = t4.gapAnimation; t4 = t4.gap; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t6.toString; return A.CustomPaint$(null, new A._InputBorderPainter(t2, t3, t5, t4, t6.textDirection, _this._widget.fillColor, A._lateReadCheck(_this.___BorderContainerState__hoverColorTween, "_hoverColorTween"), A._lateReadCheck(_this.___BorderContainerState__hoverAnimation, "_hoverAnimation"), new A._MergingListenable(t1)), null, null, B.Size_0_0); } }; A._Shaker.prototype = { get$translateX() { var t1 = type$.Animation_double._as(this.listenable), t = t1.get$value(t1); if (t <= 0.25) return -t * 4; else if (t < 0.75) return (t - 0.5) * 4; else return (1 - t) * 4 * 4; }, build$1(_, context) { return A.Transform$(null, this.child, A.Matrix4_Matrix4$translationValues(this.get$translateX(), 0, 0), true); } }; A._HelperError.prototype = { createState$0() { return new A._HelperErrorState(null, null, B._StateLifecycle_0); } }; A._HelperErrorState.prototype = { initState$0() { var t1, _this = this, _s11_ = "_controller"; _this.super$State$initState(); _this.___HelperErrorState__controller = A.AnimationController$(null, B.Duration_200000, null, 1, null, _this); if (_this._widget.errorText != null) { _this._error = _this._buildError$0(); A._lateReadCheck(_this.___HelperErrorState__controller, _s11_).set$value(0, 1); } t1 = A._lateReadCheck(_this.___HelperErrorState__controller, _s11_); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_input_decorator$_handleChange()); }, dispose$0(_) { A._lateReadCheck(this.___HelperErrorState__controller, "_controller").dispose$0(0); this.super$__HelperErrorState_State_SingleTickerProviderStateMixin$dispose(0); }, _input_decorator$_handleChange$0() { this.setState$1(new A._HelperErrorState__handleChange_closure()); }, didUpdateWidget$1(old) { var oldErrorText, t1, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(old); oldErrorText = old.errorText; t1 = _this._widget.errorText != null; if (t1 !== (oldErrorText != null) || false) if (t1) { _this._error = _this._buildError$0(); A._lateReadCheck(_this.___HelperErrorState__controller, _s11_).forward$0(0); } else { t1 = A._lateReadCheck(_this.___HelperErrorState__controller, _s11_); t1.reverse$0(0); } }, _buildError$0() { var t3, t4, t5, t6, _null = null, _s11_ = "_controller", t1 = A._lateReadCheck(this.___HelperErrorState__controller, _s11_), t2 = A._lateReadCheck(this.___HelperErrorState__controller, _s11_); t2 = new A.Tween(B.Offset_MNd, B.Offset_0_0, type$.Tween_Offset).transform$1(0, t2.get$value(t2)); t3 = this._widget; t4 = t3.errorText; t4.toString; t5 = t3.errorStyle; t6 = t3.textAlign; t1 = A.FadeTransition$(false, A.FractionalTranslation$(A.Text$(t4, _null, t3.errorMaxLines, B.TextOverflow_2, _null, _null, t5, t6, _null, _null), true, t2), t1); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t1, _null); }, build$1(_, context) { var t2, _this = this, _s11_ = "_controller", t1 = A._lateReadCheck(_this.___HelperErrorState__controller, _s11_); if (t1.get$status(t1) === B.AnimationStatus_0) { _this._error = null; _this._widget.toString; _this._helper = null; return B.SizedBox_null_null_null_null; } t1 = A._lateReadCheck(_this.___HelperErrorState__controller, _s11_); if (t1.get$status(t1) === B.AnimationStatus_3) { _this._helper = null; if (_this._widget.errorText != null) return _this._error = _this._buildError$0(); else { _this._error = null; return B.SizedBox_null_null_null_null; } } if (_this._helper == null && _this._widget.errorText != null) return _this._buildError$0(); if (_this._error == null) _this._widget.toString; if (_this._widget.errorText != null) { t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.___HelperErrorState__controller, _s11_); return new A.Stack(B.AlignmentDirectional_m1_m1, null, B.StackFit_0, B.Clip_1, A._setArrayType([A.FadeTransition$(false, _this._helper, new A._AnimatedEvaluation(t2, new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation"))), _this._buildError$0()], type$.JSArray_Widget), null); } return B.SizedBox_null_null_null_null; } }; A._HelperErrorState__handleChange_closure.prototype = { call$0() { }, $signature: 0 }; A.FloatingLabelBehavior.prototype = { toString$0(_) { return "FloatingLabelBehavior." + this._core$_name; } }; A.FloatingLabelAlignment.prototype = { get$hashCode(_) { return B.JSInt_methods.get$hashCode(-1); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.FloatingLabelAlignment && true; }, toString$0(_) { return A.FloatingLabelAlignment__stringify(-1); } }; A._DecorationSlot.prototype = { toString$0(_) { return "_DecorationSlot." + this._core$_name; } }; A._Decoration.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A._Decoration) if (other.contentPadding.$eq(0, _this.contentPadding)) if (other.floatingLabelHeight === _this.floatingLabelHeight) if (other.floatingLabelProgress === _this.floatingLabelProgress) if (J.$eq$(other.floatingLabelAlignment, _this.floatingLabelAlignment)) if (other.border.$eq(0, _this.border)) if (other.borderGap.$eq(0, _this.borderGap)) t1 = other.isDense == _this.isDense && other.visualDensity.$eq(0, _this.visualDensity) && J.$eq$(other.icon, _this.icon) && J.$eq$(other.input, _this.input) && J.$eq$(other.label, _this.label) && J.$eq$(other.hint, _this.hint) && J.$eq$(other.prefix, _this.prefix) && J.$eq$(other.suffix, _this.suffix) && J.$eq$(other.prefixIcon, _this.prefixIcon) && J.$eq$(other.suffixIcon, _this.suffixIcon) && other.helperError.super$Object$$eq(0, _this.helperError) && J.$eq$(other.counter, _this.counter) && other.container.super$Object$$eq(0, _this.container); else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.contentPadding, _this.floatingLabelHeight, _this.floatingLabelProgress, _this.floatingLabelAlignment, _this.border, _this.borderGap, false, _this.isDense, _this.visualDensity, _this.icon, _this.input, _this.label, _this.hint, _this.prefix, _this.suffix, _this.prefixIcon, _this.suffixIcon, _this.helperError, _this.counter, _this.container); } }; A._RenderDecorationLayout.prototype = {}; A._RenderDecoration.prototype = { get$children(_) { var t3, t1 = A._setArrayType([], type$.JSArray_RenderBox), t2 = this.SlottedContainerRenderObjectMixin__slotToChild; if (t2.$index(0, B._DecorationSlot_0) != null) { t3 = t2.$index(0, B._DecorationSlot_0); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_1) != null) { t3 = t2.$index(0, B._DecorationSlot_1); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_6) != null) { t3 = t2.$index(0, B._DecorationSlot_6); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_7) != null) { t3 = t2.$index(0, B._DecorationSlot_7); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_4) != null) { t3 = t2.$index(0, B._DecorationSlot_4); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_5) != null) { t3 = t2.$index(0, B._DecorationSlot_5); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_2) != null) { t3 = t2.$index(0, B._DecorationSlot_2); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_3) != null) { t3 = t2.$index(0, B._DecorationSlot_3); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_8) != null) { t3 = t2.$index(0, B._DecorationSlot_8); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_9) != null) { t3 = t2.$index(0, B._DecorationSlot_9); t3.toString; t1.push(t3); } if (t2.$index(0, B._DecorationSlot_10) != null) { t2 = t2.$index(0, B._DecorationSlot_10); t2.toString; t1.push(t2); } return t1; }, set$decoration(_, value) { if (this._input_decorator$_decoration.$eq(0, value)) return; this._input_decorator$_decoration = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { if (this._input_decorator$_textDirection == value) return; this._input_decorator$_textDirection = value; this.markNeedsLayout$0(); }, set$textBaseline(_, value) { if (this._input_decorator$_textBaseline == value) return; this._input_decorator$_textBaseline = value; this.markNeedsLayout$0(); }, set$textAlignVertical(value) { var t2, _this = this, t1 = _this._textAlignVertical; if (t1 == value) return; if (t1 == null) t1 = _this.get$_isOutlineAligned() ? B.TextAlignVertical_0 : B.TextAlignVertical_m1; t2 = value == null ? null : value.y; if (t2 == null) t2 = (_this.get$_isOutlineAligned() ? B.TextAlignVertical_0 : B.TextAlignVertical_m1).y; if (t1.y === t2) { _this._textAlignVertical = value; return; } _this._textAlignVertical = value; _this.markNeedsLayout$0(); }, set$isFocused(value) { if (this._isFocused === value) return; this._isFocused = value; this.markNeedsSemanticsUpdate$0(); }, set$expands(value) { if (this._input_decorator$_expands === value) return; this._input_decorator$_expands = value; this.markNeedsLayout$0(); }, get$_isOutlineAligned() { var t1 = this._input_decorator$_decoration.border.get$isOutline(); return t1; }, visitChildrenForSemantics$1(visitor) { var t2, t1 = this.SlottedContainerRenderObjectMixin__slotToChild; if (t1.$index(0, B._DecorationSlot_0) != null) { t2 = t1.$index(0, B._DecorationSlot_0); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_4) != null) { t2 = t1.$index(0, B._DecorationSlot_4); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_6) != null) { t2 = t1.$index(0, B._DecorationSlot_6); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_2) != null) { t2 = t1.$index(0, B._DecorationSlot_2); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_3) != null) if (this._isFocused) { t2 = t1.$index(0, B._DecorationSlot_3); t2.toString; visitor.call$1(t2); } else if (t1.$index(0, B._DecorationSlot_2) == null) { t2 = t1.$index(0, B._DecorationSlot_3); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_1) != null) { t2 = t1.$index(0, B._DecorationSlot_1); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_7) != null) { t2 = t1.$index(0, B._DecorationSlot_7); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_5) != null) { t2 = t1.$index(0, B._DecorationSlot_5); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_10) != null) { t2 = t1.$index(0, B._DecorationSlot_10); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_8) != null) { t2 = t1.$index(0, B._DecorationSlot_8); t2.toString; visitor.call$1(t2); } if (t1.$index(0, B._DecorationSlot_9) != null) { t1 = t1.$index(0, B._DecorationSlot_9); t1.toString; visitor.call$1(t1); } }, get$sizedByParent() { return false; }, _layoutLineBox$2(box, constraints) { var t1; if (box == null) return 0; box.layout$2$parentUsesSize(0, constraints, true); t1 = box.getDistanceToBaseline$1(B.TextBaseline_0); t1.toString; return t1; }, _interpolateThree$4(begin, middle, end, textAlignVertical) { var t1 = textAlignVertical.y; if (t1 <= 0) { if (begin >= middle) return middle; return begin + (middle - begin) * (t1 + 1); } if (middle >= end) return middle; return middle + (end - middle) * t1; }, computeMinIntrinsicWidth$1(height) { var t3, t4, t5, t6, t7, t1 = this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.$index(0, B._DecorationSlot_0); t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t3 = this._input_decorator$_decoration; t4 = t1.$index(0, B._DecorationSlot_6); t4 = t4 == null ? 0 : t4._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t4.get$computeMinIntrinsicWidth()); t5 = t1.$index(0, B._DecorationSlot_4); t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t5.get$computeMinIntrinsicWidth()); t6 = t1.$index(0, B._DecorationSlot_1); t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t6.get$computeMinIntrinsicWidth()); t7 = t1.$index(0, B._DecorationSlot_3); t7 = t7 == null ? 0 : t7._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t7.get$computeMinIntrinsicWidth()); t7 = Math.max(A.checkNum(t6), A.checkNum(t7)); t6 = t1.$index(0, B._DecorationSlot_5); t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t6.get$computeMinIntrinsicWidth()); t1 = t1.$index(0, B._DecorationSlot_7); t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return t2 + t3.contentPadding.left + t4 + t5 + t7 + t6 + t1 + this._input_decorator$_decoration.contentPadding.right; }, computeMaxIntrinsicWidth$1(height) { var t3, t4, t5, t6, t7, t1 = this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.$index(0, B._DecorationSlot_0); t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t3 = this._input_decorator$_decoration; t4 = t1.$index(0, B._DecorationSlot_6); t4 = t4 == null ? 0 : t4._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t4.get$computeMaxIntrinsicWidth()); t5 = t1.$index(0, B._DecorationSlot_4); t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t5.get$computeMaxIntrinsicWidth()); t6 = t1.$index(0, B._DecorationSlot_1); t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t6.get$computeMaxIntrinsicWidth()); t7 = t1.$index(0, B._DecorationSlot_3); t7 = t7 == null ? 0 : t7._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t7.get$computeMaxIntrinsicWidth()); t7 = Math.max(A.checkNum(t6), A.checkNum(t7)); t6 = t1.$index(0, B._DecorationSlot_5); t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t6.get$computeMaxIntrinsicWidth()); t1 = t1.$index(0, B._DecorationSlot_7); t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return t2 + t3.contentPadding.left + t4 + t5 + t7 + t6 + t1 + this._input_decorator$_decoration.contentPadding.right; }, _lineHeight$2(_, width, boxes) { var height, _i, box, t1; for (height = 0, _i = 0; _i < 2; ++_i) { box = boxes[_i]; if (box == null) continue; t1 = box._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, box.get$computeMinIntrinsicHeight()); height = Math.max(A.checkNum(t1), height); } return height; }, computeMinIntrinsicHeight$1(width) { var prefixIconHeight, prefixIconWidth, suffixIconHeight, suffixIconWidth, counterHeight, helperErrorAvailableWidth, helperErrorHeight, subtextHeight, prefixHeight, prefixWidth, suffixHeight, suffixWidth, inputMaxHeight, t3, densityOffset, containerHeight, minContainerHeight, _this = this, t1 = _this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.$index(0, B._DecorationSlot_0), iconHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_0); width = Math.max(width - (t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, iconHeight, t2.get$computeMinIntrinsicWidth())), 0); t2 = t1.$index(0, B._DecorationSlot_6); prefixIconHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_6); prefixIconWidth = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, prefixIconHeight, t2.get$computeMinIntrinsicWidth()); t2 = t1.$index(0, B._DecorationSlot_7); suffixIconHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_7); suffixIconWidth = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, suffixIconHeight, t2.get$computeMinIntrinsicWidth()); width = Math.max(width - _this._input_decorator$_decoration.contentPadding.get$horizontal(), 0); t2 = t1.$index(0, B._DecorationSlot_9); counterHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_9); helperErrorAvailableWidth = Math.max(width - (t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, counterHeight, t2.get$computeMinIntrinsicWidth())), 0); t2 = t1.$index(0, B._DecorationSlot_8); helperErrorHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, helperErrorAvailableWidth, t2.get$computeMinIntrinsicHeight()); subtextHeight = Math.max(A.checkNum(counterHeight), A.checkNum(helperErrorHeight)); if (subtextHeight > 0) subtextHeight += 8; t2 = t1.$index(0, B._DecorationSlot_4); prefixHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_4); prefixWidth = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, prefixHeight, t2.get$computeMinIntrinsicWidth()); t2 = t1.$index(0, B._DecorationSlot_5); suffixHeight = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.$index(0, B._DecorationSlot_5); suffixWidth = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, suffixHeight, t2.get$computeMinIntrinsicWidth()); t2 = type$.JSArray_double; inputMaxHeight = B.JSArray_methods.reduce$1(A._setArrayType([_this._lineHeight$2(0, Math.max(width - prefixWidth - suffixWidth - prefixIconWidth - suffixIconWidth, 0), A._setArrayType([t1.$index(0, B._DecorationSlot_1), t1.$index(0, B._DecorationSlot_3)], type$.JSArray_nullable_RenderBox)), prefixHeight, suffixHeight], t2), B.CONSTANT0); t3 = _this._input_decorator$_decoration.visualDensity; densityOffset = new A.Offset(t3.horizontal, t3.vertical).$mul(0, 4); t3 = _this._input_decorator$_decoration; t1 = t1.$index(0, B._DecorationSlot_2) == null ? 0 : _this._input_decorator$_decoration.floatingLabelHeight; containerHeight = B.JSArray_methods.reduce$1(A._setArrayType([iconHeight, t3.contentPadding.top + t1 + inputMaxHeight + _this._input_decorator$_decoration.contentPadding.bottom + densityOffset._dy, prefixIconHeight, suffixIconHeight], t2), B.CONSTANT0); t1 = _this._input_decorator$_decoration.isDense; t1.toString; minContainerHeight = t1 || _this._input_decorator$_expands ? 0 : 48; return Math.max(A.checkNum(containerHeight), minContainerHeight) + subtextHeight; }, computeMaxIntrinsicHeight$1(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1(baseline) { var t1 = this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.$index(0, B._DecorationSlot_1).parentData; t2.toString; t2 = type$.BoxParentData._as(t2).offset._dy; t1 = t1.$index(0, B._DecorationSlot_1).computeDistanceToActualBaseline$1(baseline); t1.toString; return t2 + t1; }, computeDryLayout$1(constraints) { return B.Size_0_0; }, performLayout$0() { var boxToBaseline, t2, t3, boxConstraints, t4, t5, containerConstraints, contentConstraints, t6, t7, t8, t9, t10, t11, t12, inputWidth, suffixIconWidth, labelWidth, labelHeight, topHeight, counterHeight, helperErrorExists, helperErrorHeight, bottomHeight, densityOffset, hintHeight, inputDirectHeight, inputHeight, inputInternalBaseline, prefixHeight, suffixHeight, fixAboveInput, fixBelowInput, prefixIconHeight, suffixIconHeight, fixIconHeight, contentHeight, minContainerHeight, maxContainerHeight, containerHeight, interactiveAdjustment, overflow, textAlignVerticalFactor, baselineAdjustment, topInputBaseline, maxVerticalOffset, inputBaseline, outlineBaseline, subtextCounterBaseline, subtextCounterHeight, subtextHelperBaseline, subtextHelperHeight, subtextBaseline, subtextHeight, x, centerLayout, baselineLayout, left, right, start, end, labelX, floatWidth, _this = this, _null = null, _s80_ = string$.x60null_c, _box_0 = {}, t1 = type$.BoxConstraints, constraints = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._labelTransform = null; boxToBaseline = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_RenderBox, type$.double); t2 = constraints.maxWidth; t3 = constraints.maxHeight; boxConstraints = new A.BoxConstraints(0, t2, 0, t3); t4 = _this.SlottedContainerRenderObjectMixin__slotToChild; boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_0), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_0), boxConstraints)); t5 = t4.$index(0, B._DecorationSlot_0); if (t5 == null) t5 = B.Size_0_0; else { t5 = t5._box$_size; t5.toString; } containerConstraints = boxConstraints.copyWith$1$maxWidth(t2 - t5._dx); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_6), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_6), containerConstraints)); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_7), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_7), containerConstraints)); contentConstraints = containerConstraints.copyWith$1$maxWidth(containerConstraints.maxWidth - _this._input_decorator$_decoration.contentPadding.get$horizontal()); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_4), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_4), contentConstraints)); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_5), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_5), contentConstraints)); t5 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t6 = t4.$index(0, B._DecorationSlot_0); if (t6 == null) t6 = B.Size_0_0; else { t6 = t6._box$_size; t6.toString; } t7 = _this._input_decorator$_decoration; t8 = t4.$index(0, B._DecorationSlot_6); if (t8 == null) t8 = B.Size_0_0; else { t8 = t8._box$_size; t8.toString; } t9 = t4.$index(0, B._DecorationSlot_4); if (t9 == null) t9 = B.Size_0_0; else { t9 = t9._box$_size; t9.toString; } t10 = t4.$index(0, B._DecorationSlot_5); if (t10 == null) t10 = B.Size_0_0; else { t10 = t10._box$_size; t10.toString; } t11 = t4.$index(0, B._DecorationSlot_7); if (t11 == null) t11 = B.Size_0_0; else { t11 = t11._box$_size; t11.toString; } t12 = _this._input_decorator$_decoration; inputWidth = Math.max(0, t5 - (t6._dx + t7.contentPadding.left + t8._dx + t9._dx + t10._dx + t11._dx + t12.contentPadding.right)); t12 = A.lerpDouble(1, 1.3333333333333333, t12.floatingLabelProgress); t12.toString; t11 = t4.$index(0, B._DecorationSlot_7); if (t11 == null) t5 = B.Size_0_0; else { t5 = t11._box$_size; t5.toString; } suffixIconWidth = t5._dx; if (_this._input_decorator$_decoration.border.get$isOutline()) { t5 = A.lerpDouble(suffixIconWidth, 0, _this._input_decorator$_decoration.floatingLabelProgress); t5.toString; suffixIconWidth = t5; } t1 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = t4.$index(0, B._DecorationSlot_0); if (t5 == null) t5 = B.Size_0_0; else { t5 = t5._box$_size; t5.toString; } t6 = _this._input_decorator$_decoration; t7 = t4.$index(0, B._DecorationSlot_6); if (t7 == null) t7 = B.Size_0_0; else { t7 = t7._box$_size; t7.toString; } labelWidth = Math.max(0, t1 - (t5._dx + t6.contentPadding.left + t7._dx + suffixIconWidth + _this._input_decorator$_decoration.contentPadding.right)); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_2), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_2), boxConstraints.copyWith$1$maxWidth(labelWidth * t12))); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_3), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_3), boxConstraints.copyWith$2$maxWidth$minWidth(inputWidth, inputWidth))); boxToBaseline.$indexSet(0, t4.$index(0, B._DecorationSlot_9), _this._layoutLineBox$2(t4.$index(0, B._DecorationSlot_9), contentConstraints)); t12 = t4.$index(0, B._DecorationSlot_8); t7 = t4.$index(0, B._DecorationSlot_8); t6 = t4.$index(0, B._DecorationSlot_9); if (t6 == null) t1 = B.Size_0_0; else { t1 = t6._box$_size; t1.toString; } boxToBaseline.$indexSet(0, t12, _this._layoutLineBox$2(t7, contentConstraints.copyWith$1$maxWidth(Math.max(0, contentConstraints.maxWidth - t1._dx)))); labelHeight = t4.$index(0, B._DecorationSlot_2) == null ? 0 : _this._input_decorator$_decoration.floatingLabelHeight; if (_this._input_decorator$_decoration.border.get$isOutline()) { t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_2)); t1.toString; topHeight = Math.max(labelHeight - t1, 0); } else topHeight = labelHeight; if (t4.$index(0, B._DecorationSlot_9) == null) counterHeight = 0; else { t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_9)); t1.toString; counterHeight = t1 + 8; } t1 = t4.$index(0, B._DecorationSlot_8); if (t1 == null) t1 = _null; else { t1 = t1._box$_size; t1.toString; } helperErrorExists = t1 != null && t4.$index(0, B._DecorationSlot_8)._box$_size._dy > 0; helperErrorHeight = !helperErrorExists ? 0 : t4.$index(0, B._DecorationSlot_8)._box$_size._dy + 8; bottomHeight = Math.max(counterHeight, helperErrorHeight); t1 = _this._input_decorator$_decoration.visualDensity; densityOffset = new A.Offset(t1.horizontal, t1.vertical).$mul(0, 4); t1 = t4.$index(0, B._DecorationSlot_1); t5 = t4.$index(0, B._DecorationSlot_1); t6 = _this._input_decorator$_decoration.contentPadding; t7 = densityOffset._dy; t8 = t7 / 2; boxToBaseline.$indexSet(0, t1, _this._layoutLineBox$2(t5, boxConstraints.deflate$1(new A.EdgeInsets(0, t6.top + topHeight + t8, 0, t6.bottom + bottomHeight + t8)).copyWith$2$maxWidth$minWidth(inputWidth, inputWidth))); hintHeight = t4.$index(0, B._DecorationSlot_3) == null ? 0 : t4.$index(0, B._DecorationSlot_3)._box$_size._dy; inputDirectHeight = t4.$index(0, B._DecorationSlot_1) == null ? 0 : t4.$index(0, B._DecorationSlot_1)._box$_size._dy; inputHeight = Math.max(A.checkNum(hintHeight), A.checkNum(inputDirectHeight)); t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_1)); t1.toString; t5 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_3)); t5.toString; inputInternalBaseline = Math.max(t1, t5); t5 = t4.$index(0, B._DecorationSlot_4); prefixHeight = t5 == null ? _null : t5._box$_size._dy; if (prefixHeight == null) prefixHeight = 0; t1 = t4.$index(0, B._DecorationSlot_5); suffixHeight = t1 == null ? _null : t1._box$_size._dy; if (suffixHeight == null) suffixHeight = 0; t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_4)); t1.toString; t5 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_5)); t5.toString; fixAboveInput = Math.max(0, Math.max(t1, t5) - inputInternalBaseline); t5 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_4)); t5.toString; t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_5)); t1.toString; fixBelowInput = Math.max(0, Math.max(prefixHeight - t5, suffixHeight - t1) - (inputHeight - inputInternalBaseline)); prefixIconHeight = t4.$index(0, B._DecorationSlot_6) == null ? 0 : t4.$index(0, B._DecorationSlot_6)._box$_size._dy; suffixIconHeight = t4.$index(0, B._DecorationSlot_7) == null ? 0 : t4.$index(0, B._DecorationSlot_7)._box$_size._dy; fixIconHeight = Math.max(A.checkNum(prefixIconHeight), A.checkNum(suffixIconHeight)); t1 = _this._input_decorator$_decoration; t5 = t1.contentPadding; contentHeight = Math.max(fixIconHeight, topHeight + t5.top + fixAboveInput + inputHeight + fixBelowInput + t5.bottom + t7); t1 = t1.isDense; t1.toString; if (!t1) t1 = _this._input_decorator$_expands; else t1 = true; minContainerHeight = t1 ? 0 : 48; maxContainerHeight = t3 - bottomHeight; containerHeight = _this._input_decorator$_expands ? maxContainerHeight : Math.min(Math.max(contentHeight, minContainerHeight), maxContainerHeight); interactiveAdjustment = minContainerHeight > contentHeight ? (minContainerHeight - contentHeight) / 2 : 0; overflow = Math.max(0, contentHeight - maxContainerHeight); t1 = _this._textAlignVertical; if (t1 == null) t1 = _this.get$_isOutlineAligned() ? B.TextAlignVertical_0 : B.TextAlignVertical_m1; textAlignVerticalFactor = (t1.y + 1) / 2; baselineAdjustment = fixAboveInput - overflow * (1 - textAlignVerticalFactor); t1 = _this._input_decorator$_decoration.contentPadding; t3 = t1.top; topInputBaseline = t3 + topHeight + inputInternalBaseline + baselineAdjustment + interactiveAdjustment; maxVerticalOffset = containerHeight - t3 - topHeight - t1.bottom - (fixAboveInput + inputHeight + fixBelowInput); inputBaseline = topInputBaseline + maxVerticalOffset * textAlignVerticalFactor + t8; t8 = _this._textAlignVertical; if (t8 == null) t1 = _this.get$_isOutlineAligned() ? B.TextAlignVertical_0 : B.TextAlignVertical_m1; else t1 = t8; outlineBaseline = _this._interpolateThree$4(topInputBaseline, inputInternalBaseline + baselineAdjustment / 2 + (containerHeight - (2 + inputHeight)) / 2, topInputBaseline + maxVerticalOffset, t1); if (t4.$index(0, B._DecorationSlot_9) != null) { t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_9)); t1.toString; subtextCounterBaseline = containerHeight + 8 + t1; subtextCounterHeight = t4.$index(0, B._DecorationSlot_9)._box$_size._dy + 8; } else { subtextCounterBaseline = 0; subtextCounterHeight = 0; } if (helperErrorExists) { t1 = boxToBaseline.$index(0, t4.$index(0, B._DecorationSlot_8)); t1.toString; subtextHelperBaseline = containerHeight + 8 + t1; subtextHelperHeight = helperErrorHeight; } else { subtextHelperBaseline = 0; subtextHelperHeight = 0; } subtextBaseline = Math.max(subtextCounterBaseline, subtextHelperBaseline); subtextHeight = Math.max(subtextCounterHeight, subtextHelperHeight); if (t4.$index(0, B._DecorationSlot_10) != null) { t1 = t4.$index(0, B._DecorationSlot_0); if (t1 == null) t1 = B.Size_0_0; else { t1 = t1._box$_size; t1.toString; } containerConstraints = A.BoxConstraints$tightFor(containerHeight, t2 - t1._dx); t4.$index(0, B._DecorationSlot_10).layout$2$parentUsesSize(0, containerConstraints, true); switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: x = 0; break; case B.TextDirection_1: t1 = t4.$index(0, B._DecorationSlot_0); if (t1 == null) t1 = B.Size_0_0; else { t1 = t1._box$_size; t1.toString; } x = t1._dx; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = t4.$index(0, B._DecorationSlot_10).parentData; t1.toString; type$.BoxParentData._as(t1).offset = new A.Offset(x, 0); } _box_0.height = null; centerLayout = new A._RenderDecoration_performLayout_centerLayout(_box_0); _box_0.baseline = null; baselineLayout = new A._RenderDecoration_performLayout_baselineLayout(_box_0, new A._RenderDecorationLayout(boxToBaseline, inputBaseline, outlineBaseline, subtextBaseline, containerHeight, subtextHeight)); t1 = _this._input_decorator$_decoration.contentPadding; left = t1.left; right = t2 - t1.right; _box_0.height = containerHeight; _box_0.baseline = _this.get$_isOutlineAligned() ? outlineBaseline : inputBaseline; if (t4.$index(0, B._DecorationSlot_0) != null) { switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: x = t2 - t4.$index(0, B._DecorationSlot_0)._box$_size._dx; break; case B.TextDirection_1: x = 0; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = t4.$index(0, B._DecorationSlot_0); t1.toString; centerLayout.call$2(t1, x); } switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: t1 = t4.$index(0, B._DecorationSlot_0); if (t1 == null) t1 = B.Size_0_0; else { t1 = t1._box$_size; t1.toString; } start = right - t1._dx; if (t4.$index(0, B._DecorationSlot_6) != null) { start += _this._input_decorator$_decoration.contentPadding.left; t1 = t4.$index(0, B._DecorationSlot_6); t1.toString; start -= centerLayout.call$2(t1, start - t4.$index(0, B._DecorationSlot_6)._box$_size._dx); } if (t4.$index(0, B._DecorationSlot_2) != null) { t1 = t4.$index(0, B._DecorationSlot_2); t1.toString; centerLayout.call$2(t1, start - t4.$index(0, B._DecorationSlot_2)._box$_size._dx); } if (t4.$index(0, B._DecorationSlot_4) != null) { t1 = t4.$index(0, B._DecorationSlot_4); t1.toString; start -= baselineLayout.call$2(t1, start - t4.$index(0, B._DecorationSlot_4)._box$_size._dx); } if (t4.$index(0, B._DecorationSlot_1) != null) { t1 = t4.$index(0, B._DecorationSlot_1); t1.toString; baselineLayout.call$2(t1, start - t4.$index(0, B._DecorationSlot_1)._box$_size._dx); } if (t4.$index(0, B._DecorationSlot_3) != null) { t1 = t4.$index(0, B._DecorationSlot_3); t1.toString; baselineLayout.call$2(t1, start - t4.$index(0, B._DecorationSlot_3)._box$_size._dx); } if (t4.$index(0, B._DecorationSlot_7) != null) { end = left - _this._input_decorator$_decoration.contentPadding.left; t1 = t4.$index(0, B._DecorationSlot_7); t1.toString; end += centerLayout.call$2(t1, end); } else end = left; if (t4.$index(0, B._DecorationSlot_5) != null) { t1 = t4.$index(0, B._DecorationSlot_5); t1.toString; baselineLayout.call$2(t1, end); } break; case B.TextDirection_1: t1 = t4.$index(0, B._DecorationSlot_0); if (t1 == null) t1 = B.Size_0_0; else { t1 = t1._box$_size; t1.toString; } start = left + t1._dx; if (t4.$index(0, B._DecorationSlot_6) != null) { start -= _this._input_decorator$_decoration.contentPadding.left; t1 = t4.$index(0, B._DecorationSlot_6); t1.toString; start += centerLayout.call$2(t1, start); } if (t4.$index(0, B._DecorationSlot_2) != null) { t1 = t4.$index(0, B._DecorationSlot_2); t1.toString; centerLayout.call$2(t1, start); } if (t4.$index(0, B._DecorationSlot_4) != null) { t1 = t4.$index(0, B._DecorationSlot_4); t1.toString; start += baselineLayout.call$2(t1, start); } if (t4.$index(0, B._DecorationSlot_1) != null) { t1 = t4.$index(0, B._DecorationSlot_1); t1.toString; baselineLayout.call$2(t1, start); } if (t4.$index(0, B._DecorationSlot_3) != null) { t1 = t4.$index(0, B._DecorationSlot_3); t1.toString; baselineLayout.call$2(t1, start); } if (t4.$index(0, B._DecorationSlot_7) != null) { end = right + _this._input_decorator$_decoration.contentPadding.right; t1 = t4.$index(0, B._DecorationSlot_7); t1.toString; end -= centerLayout.call$2(t1, end - t4.$index(0, B._DecorationSlot_7)._box$_size._dx); } else end = right; if (t4.$index(0, B._DecorationSlot_5) != null) { t1 = t4.$index(0, B._DecorationSlot_5); t1.toString; baselineLayout.call$2(t1, end - t4.$index(0, B._DecorationSlot_5)._box$_size._dx); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (t4.$index(0, B._DecorationSlot_8) != null || t4.$index(0, B._DecorationSlot_9) != null) { _box_0.height = subtextHeight; _box_0.baseline = subtextBaseline; switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: if (t4.$index(0, B._DecorationSlot_8) != null) { t1 = t4.$index(0, B._DecorationSlot_8); t1.toString; t3 = t4.$index(0, B._DecorationSlot_8)._box$_size._dx; t5 = t4.$index(0, B._DecorationSlot_0); if (t5 == null) t5 = B.Size_0_0; else { t5 = t5._box$_size; t5.toString; } baselineLayout.call$2(t1, right - t3 - t5._dx); } if (t4.$index(0, B._DecorationSlot_9) != null) { t1 = t4.$index(0, B._DecorationSlot_9); t1.toString; baselineLayout.call$2(t1, left); } break; case B.TextDirection_1: if (t4.$index(0, B._DecorationSlot_8) != null) { t1 = t4.$index(0, B._DecorationSlot_8); t1.toString; t3 = t4.$index(0, B._DecorationSlot_0); if (t3 == null) t3 = B.Size_0_0; else { t3 = t3._box$_size; t3.toString; } baselineLayout.call$2(t1, left + t3._dx); } if (t4.$index(0, B._DecorationSlot_9) != null) { t1 = t4.$index(0, B._DecorationSlot_9); t1.toString; baselineLayout.call$2(t1, right - t4.$index(0, B._DecorationSlot_9)._box$_size._dx); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } if (t4.$index(0, B._DecorationSlot_2) != null) { t1 = t4.$index(0, B._DecorationSlot_2).parentData; t1.toString; labelX = type$.BoxParentData._as(t1).offset._dx; _this._input_decorator$_decoration.floatingLabelAlignment.toString; t1 = t4.$index(0, B._DecorationSlot_2); if (t1 == null) t1 = B.Size_0_0; else { t1 = t1._box$_size; t1.toString; } floatWidth = t1._dx * 0.75; switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: t1 = _this._input_decorator$_decoration; t3 = t4.$index(0, B._DecorationSlot_2); if (t3 == null) t3 = B.Size_0_0; else { t3 = t3._box$_size; t3.toString; } t5 = t4.$index(0, B._DecorationSlot_10); if (t5 == null) t5 = B.Size_0_0; else { t5 = t5._box$_size; t5.toString; } t1.borderGap.set$start(0, A.lerpDouble(labelX + t3._dx, t5._dx / 2 + floatWidth / 2, 0)); break; case B.TextDirection_1: t1 = _this._input_decorator$_decoration; t3 = t4.$index(0, B._DecorationSlot_0); if (t3 == null) t3 = B.Size_0_0; else { t3 = t3._box$_size; t3.toString; } t5 = t4.$index(0, B._DecorationSlot_10); if (t5 == null) t5 = B.Size_0_0; else { t5 = t5._box$_size; t5.toString; } t1.borderGap.set$start(0, A.lerpDouble(labelX - t3._dx, t5._dx / 2 - floatWidth / 2, 0)); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this._input_decorator$_decoration.borderGap.set$extent(t4.$index(0, B._DecorationSlot_2)._box$_size._dx * 0.75); } else { _this._input_decorator$_decoration.borderGap.set$start(0, _null); _this._input_decorator$_decoration.borderGap.set$extent(0); } _this._box$_size = constraints.constrain$1(new A.Size(t2, containerHeight + subtextHeight)); }, _paintLabel$2(context, offset) { var t1 = this.SlottedContainerRenderObjectMixin__slotToChild.$index(0, B._DecorationSlot_2); t1.toString; context.paintChild$2(t1, offset); }, paint$2(context, offset) { var t2, t3, labelOffset, t4, labelWidth, t5, borderWeight, t, isOutlineBorder, floatingY, floatStartX, t6, _this = this, doPaint = new A._RenderDecoration_paint_doPaint(context, offset), t1 = _this.SlottedContainerRenderObjectMixin__slotToChild; doPaint.call$1(t1.$index(0, B._DecorationSlot_10)); if (t1.$index(0, B._DecorationSlot_2) != null) { t2 = t1.$index(0, B._DecorationSlot_2).parentData; t2.toString; t3 = type$.BoxParentData; labelOffset = t3._as(t2).offset; t2 = t1.$index(0, B._DecorationSlot_2); if (t2 == null) t2 = B.Size_0_0; else { t2 = t2._box$_size; t2.toString; } t4 = t1.$index(0, B._DecorationSlot_2); if (t4 == null) t4 = B.Size_0_0; else { t4 = t4._box$_size; t4.toString; } labelWidth = t4._dx; t4 = _this._input_decorator$_decoration; t4.floatingLabelAlignment.toString; t5 = t4.border; borderWeight = t5.borderSide.width; t = t4.floatingLabelProgress; isOutlineBorder = t5.get$isOutline(); floatingY = isOutlineBorder ? -t2._dy * 0.75 / 2 + borderWeight / 2 : _this._input_decorator$_decoration.contentPadding.top; t2 = A.lerpDouble(1, 0.75, t); t2.toString; t4 = t1.$index(0, B._DecorationSlot_10).parentData; t4.toString; t4 = t3._as(t4).offset._dx; t3 = t1.$index(0, B._DecorationSlot_10); if (t3 == null) t3 = B.Size_0_0; else { t3 = t3._box$_size; t3.toString; } switch (_this._input_decorator$_textDirection) { case B.TextDirection_0: floatStartX = labelOffset._dx + labelWidth * (1 - t2); break; case B.TextDirection_1: floatStartX = labelOffset._dx; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t3 = A.lerpDouble(floatStartX, t4 + t3._dx / 2 - labelWidth * 0.75 / 2, 0); t3.toString; t3 = A.lerpDouble(floatStartX, t3, t); t3.toString; t4 = labelOffset._dy; t5 = A.lerpDouble(0, floatingY - t4, t); t5.toString; t6 = new A.Matrix4(new Float64Array(16)); t6.setIdentity$0(); t6.translate$2(0, t3, t4 + t5); t6.scale$1(0, t2); _this._labelTransform = t6; t6 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = _this._labelTransform; t2.toString; t5 = _this._layerHandle; t5.set$layer(0, context.pushTransform$5$oldLayer(t6, offset, t2, _this.get$_paintLabel(), type$.nullable_TransformLayer._as(t5._layer))); } else _this._layerHandle.set$layer(0, null); doPaint.call$1(t1.$index(0, B._DecorationSlot_0)); doPaint.call$1(t1.$index(0, B._DecorationSlot_4)); doPaint.call$1(t1.$index(0, B._DecorationSlot_5)); doPaint.call$1(t1.$index(0, B._DecorationSlot_6)); doPaint.call$1(t1.$index(0, B._DecorationSlot_7)); doPaint.call$1(t1.$index(0, B._DecorationSlot_3)); doPaint.call$1(t1.$index(0, B._DecorationSlot_1)); doPaint.call$1(t1.$index(0, B._DecorationSlot_8)); doPaint.call$1(t1.$index(0, B._DecorationSlot_9)); }, hitTestSelf$1(position) { return true; }, hitTestChildren$2$position(result, position) { var t1, t2, t3, _i, child, t4, offset; for (t1 = this.get$children(this), t2 = t1.length, t3 = type$.BoxParentData, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t4 = child.parentData; t4.toString; offset = t3._as(t4).offset; if (result.addWithPaintOffset$3$hitTest$offset$position(new A._RenderDecoration_hitTestChildren_closure(position, offset, child), offset, position)) return true; } return false; }, applyPaintTransform$2(child, transform) { var labelOffset, _this = this, t1 = _this.SlottedContainerRenderObjectMixin__slotToChild; if (child == t1.$index(0, B._DecorationSlot_2) && _this._labelTransform != null) { t1 = t1.$index(0, B._DecorationSlot_2).parentData; t1.toString; labelOffset = type$.BoxParentData._as(t1).offset; t1 = _this._labelTransform; t1.toString; transform.multiply$1(0, t1); transform.translate$2(0, -labelOffset._dx, -labelOffset._dy); } _this.super$RenderBox$applyPaintTransform(child, transform); } }; A._RenderDecoration_performLayout_centerLayout.prototype = { call$2(box, x) { var t2, t3, t1 = box.parentData; t1.toString; type$.BoxParentData._as(t1); t2 = this._box_0.height; t2.toString; t3 = box._box$_size; t1.offset = new A.Offset(x, (t2 - t3._dy) / 2); return t3._dx; }, $signature: 225 }; A._RenderDecoration_performLayout_baselineLayout.prototype = { call$2(box, x) { var t2, t3, t1 = box.parentData; t1.toString; type$.BoxParentData._as(t1); t2 = this._box_0.baseline; t2.toString; t3 = this.layout.boxToBaseline.$index(0, box); t3.toString; t1.offset = new A.Offset(x, t2 - t3); return box._box$_size._dx; }, $signature: 225 }; A._RenderDecoration_paint_doPaint.prototype = { call$1(child) { var t1; if (child != null) { t1 = child.parentData; t1.toString; this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, $signature: 535 }; A._RenderDecoration_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A._Decorator.prototype = { get$slots() { return B.List_UUO; }, childForSlot$1(slot) { var _this = this; switch (slot) { case B._DecorationSlot_0: return _this.decoration.icon; case B._DecorationSlot_1: return _this.decoration.input; case B._DecorationSlot_2: return _this.decoration.label; case B._DecorationSlot_3: return _this.decoration.hint; case B._DecorationSlot_4: return _this.decoration.prefix; case B._DecorationSlot_5: return _this.decoration.suffix; case B._DecorationSlot_6: return _this.decoration.prefixIcon; case B._DecorationSlot_7: return _this.decoration.suffixIcon; case B._DecorationSlot_8: return _this.decoration.helperError; case B._DecorationSlot_9: return _this.decoration.counter; case B._DecorationSlot_10: return _this.decoration.container; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, createRenderObject$1(context) { var _this = this, t1 = new A._RenderDecoration(_this.decoration, _this.textDirection, _this.textBaseline, _this.textAlignVertical, _this.isFocused, _this.expands, A.LinkedHashMap_LinkedHashMap$_empty(type$._DecorationSlot, type$.RenderBox), A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$decoration(0, _this.decoration); renderObject.set$expands(_this.expands); renderObject.set$isFocused(_this.isFocused); renderObject.set$textAlignVertical(_this.textAlignVertical); renderObject.set$textBaseline(0, _this.textBaseline); renderObject.set$textDirection(0, _this.textDirection); } }; A.InputDecorator.prototype = { createState$0() { return new A._InputDecoratorState(new A._InputBorderGap($.$get$ChangeNotifier__emptyListeners()), null, null, B._StateLifecycle_0); }, get$isEmpty(receiver) { return this.isEmpty; } }; A._InputDecoratorState.prototype = { initState$0() { var t1, t2, t3, labelIsInitiallyFloating, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget; t2 = t1.decoration; t3 = t2.floatingLabelBehavior; if (t3 !== B.FloatingLabelBehavior_2) if (t3 !== B.FloatingLabelBehavior_0) { if (t1.isEmpty) t1 = t1.isFocused && t2.enabled; else t1 = true; labelIsInitiallyFloating = t1; } else labelIsInitiallyFloating = false; else labelIsInitiallyFloating = true; t1 = A.AnimationController$(_null, B.Duration_200000, _null, 1, labelIsInitiallyFloating ? 1 : 0, _this); _this.___InputDecoratorState__floatingLabelController = t1; t1 = A._lateReadCheck(t1, "_floatingLabelController"); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_input_decorator$_handleChange()); _this.___InputDecoratorState__shakingLabelController = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, _this); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._effectiveDecoration = null; }, dispose$0(_) { A._lateReadCheck(this.___InputDecoratorState__floatingLabelController, "_floatingLabelController").dispose$0(0); A._lateReadCheck(this.___InputDecoratorState__shakingLabelController, "_shakingLabelController").dispose$0(0); this.super$__InputDecoratorState_State_TickerProviderStateMixin$dispose(0); }, _input_decorator$_handleChange$0() { this.setState$1(new A._InputDecoratorState__handleChange_closure()); }, get$decoration(_) { var t2, _this = this, t1 = _this._effectiveDecoration; if (t1 == null) { t1 = _this._widget.decoration; t2 = _this._framework$_element; t2.toString; t2 = _this._effectiveDecoration = t1.applyDefaults$1(A.Theme_of(t2).inputDecorationTheme); t1 = t2; } return t1; }, get$isEmpty(_) { return this._widget.isEmpty; }, didUpdateWidget$1(old) { var t1, t2, t3, floatBehaviorChanged, errorText, oldErrorText, _this = this, _s24_ = "_floatingLabelController"; _this.super$State$didUpdateWidget(old); t1 = _this._widget.decoration; t2 = old.decoration; if (!J.$eq$(t1, t2)) _this._effectiveDecoration = null; t1 = _this._widget; t3 = t1.decoration; floatBehaviorChanged = t3.floatingLabelBehavior != t2.floatingLabelBehavior; if (t1.isEmpty) t1 = t1.isFocused && t3.enabled; else t1 = true; if (old.isEmpty) t3 = old.isFocused && t2.enabled; else t3 = true; if (t1 !== t3 || floatBehaviorChanged) { if (_this.get$decoration(_this).floatingLabelBehavior !== B.FloatingLabelBehavior_0) { t1 = _this._widget; if (t1.isEmpty) t3 = t1.isFocused && t1.decoration.enabled; else t3 = true; t1 = t3 || t1.decoration.floatingLabelBehavior === B.FloatingLabelBehavior_2; } else t1 = false; t3 = _this.___InputDecoratorState__floatingLabelController; if (t1) A._lateReadCheck(t3, _s24_).forward$0(0); else A._lateReadCheck(t3, _s24_).reverse$0(0); } errorText = _this.get$decoration(_this).errorText; oldErrorText = t2.errorText; t1 = A._lateReadCheck(_this.___InputDecoratorState__floatingLabelController, _s24_); if (t1.get$status(t1) === B.AnimationStatus_3 && errorText != null && errorText !== oldErrorText) { t1 = A._lateReadCheck(_this.___InputDecoratorState__shakingLabelController, "_shakingLabelController"); t1.set$value(0, 0); t1.forward$0(0); } }, _getActiveColor$1(themeData) { if (this._widget.isFocused) return themeData.colorScheme.primary; return themeData.hintColor; }, _getDefaultBorderColor$1(themeData) { var t1, enabledColor, hoverColor, _this = this; if (_this._widget.isFocused) return themeData.colorScheme.primary; t1 = _this.get$decoration(_this).filled; t1.toString; if (t1) return themeData.hintColor; t1 = themeData.colorScheme.onSurface.value; enabledColor = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); if (_this._widget.isHovering && _this.get$decoration(_this).enabled) { _this.get$decoration(_this).toString; hoverColor = themeData.hoverColor; t1 = hoverColor.value; return A.Color_alphaBlend(A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255), enabledColor); } return enabledColor; }, _getFillColor$1(themeData) { var t1, _this = this; if (_this.get$decoration(_this).filled !== true) return B.Color_0; if (_this.get$decoration(_this).fillColor != null) { t1 = _this.get$decoration(_this).fillColor; t1.toString; return A.MaterialStateProperty_resolveAs(t1, _this.get$materialState(), type$.Color); } switch (themeData.colorScheme.brightness.index) { case 0: return _this.get$decoration(_this).enabled ? B.Color_452984831 : B.Color_234881023; case 1: return _this.get$decoration(_this).enabled ? B.Color_167772160 : B.Color_83886080; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getHoverColor$1(themeData) { var t1, _this = this; if (_this.get$decoration(_this).filled != null) { t1 = _this.get$decoration(_this).filled; t1.toString; t1 = !t1 || _this._widget.isFocused || !_this.get$decoration(_this).enabled; } else t1 = true; if (t1) return B.Color_0; _this.get$decoration(_this).toString; t1 = themeData.hoverColor; return t1; }, _getIconColor$1(themeData) { var t1; themeData.toString; t1 = A.MaterialStateProperty_resolveAs(null, this.get$materialState(), type$.nullable_Color); return t1 == null ? new A._InputDecoratorState__getIconColor__resolveIconColor(themeData).call$1(this.get$materialState()) : t1; }, get$_hasInlineLabel() { var _this = this, t1 = _this._widget; if (t1.isEmpty) t1 = t1.isFocused && t1.decoration.enabled; else t1 = true; if (!t1) { if (_this.get$decoration(_this).labelText == null) { _this.get$decoration(_this).toString; t1 = false; } else t1 = true; t1 = t1 && _this.get$decoration(_this).floatingLabelBehavior !== B.FloatingLabelBehavior_2; } else t1 = false; return t1; }, _getFloatingLabelStyle$1(themeData) { var _this = this, t1 = type$.nullable_TextStyle, style = A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).floatingLabelStyle, _this.get$materialState(), t1); if (style == null) { themeData.toString; style = A.MaterialStateProperty_resolveAs(null, _this.get$materialState(), t1); } t1 = themeData.textTheme.titleMedium; t1.toString; return t1.merge$1(_this._widget.baseStyle).copyWith$1$height(1).merge$1(new A._InputDecoratorState__getFloatingLabelStyle_getFallbackTextStyle(_this, themeData).call$0()).merge$1(style); }, _getHelperStyle$1(themeData) { var _this = this, color = _this.get$decoration(_this).enabled ? themeData.hintColor : B.Color_0; return themeData.textTheme.bodySmall.copyWith$1$color(color).merge$1(A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).helperStyle, _this.get$materialState(), type$.nullable_TextStyle)); }, get$materialState() { var _this = this, t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this.get$decoration(_this).enabled) t1.add$1(0, B.MaterialState_6); if (_this._widget.isFocused) t1.add$1(0, B.MaterialState_1); if (_this._widget.isHovering && _this.get$decoration(_this).enabled) t1.add$1(0, B.MaterialState_0); if (_this.get$decoration(_this).errorText != null) t1.add$1(0, B.MaterialState_7); return t1; }, _getDefaultBorder$1(themeData) { var borderColor, t1, borderWeight, _this = this, border = A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).border, _this.get$materialState(), type$.nullable_InputBorder); if (border == null) border = B.UnderlineInputBorder_qFk; _this.get$decoration(_this).toString; if (J.$eq$(border.borderSide, B.BorderSide_0CF)) return border; if (_this.get$decoration(_this).enabled || _this._widget.isFocused) borderColor = _this.get$decoration(_this).errorText == null ? _this._getDefaultBorderColor$1(themeData) : themeData.errorColor; else { t1 = _this.get$decoration(_this).filled; if (t1 === true) { t1 = _this.get$decoration(_this).border; t1 = t1 == null ? null : t1.get$isOutline(); t1 = t1 !== true; } else t1 = false; borderColor = t1 ? B.Color_0 : themeData.disabledColor; } _this.get$decoration(_this).toString; t1 = _this.get$decoration(_this); t1 = J.$eq$(t1 == null ? null : t1.border, B._NoInputBorder_sqK) || !_this.get$decoration(_this).enabled; if (t1) borderWeight = 0; else borderWeight = _this._widget.isFocused ? 2 : 1; return border.copyWith$1$borderSide(new A.BorderSide(borderColor, borderWeight, B.BorderStyle_1)); }, build$1(_, context) { var t2, t3, labelStyle, t4, hintStyle, hint, t5, t6, t7, isError, border, t8, t9, label, t10, t11, t12, decorationIsDense, iconSize, suffixIcon, t13, color, t14, counter, t15, t16, decorationContentPadding, floatingLabelHeight, contentPadding, t17, t18, t19, t20, t21, t22, t23, _this = this, _null = null, _s24_ = "_floatingLabelController", themeData = A.Theme_of(context), defaultStyle = A.TextStyle$(_null, _null, _this.get$decoration(_this).enabled ? themeData.hintColor : themeData.disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), t1 = type$.nullable_TextStyle, style = A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).labelStyle, _this.get$materialState(), t1); if (style == null) { themeData.toString; style = A.MaterialStateProperty_resolveAs(_null, _this.get$materialState(), t1); } t2 = themeData.textTheme; t3 = t2.titleMedium; t3.toString; labelStyle = t3.merge$1(_this._widget.baseStyle).merge$1(defaultStyle).merge$1(style).copyWith$1$height(1); t4 = labelStyle.textBaseline; t4.toString; defaultStyle = A.TextStyle$(_null, _null, _this.get$decoration(_this).enabled ? themeData.hintColor : themeData.disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); style = A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).hintStyle, _this.get$materialState(), t1); if (style == null) style = A.MaterialStateProperty_resolveAs(_null, _this.get$materialState(), t1); hintStyle = t3.merge$1(_this._widget.baseStyle).merge$1(defaultStyle).merge$1(style); if (_this.get$decoration(_this).hintText == null) hint = _null; else { t3 = _this._widget.isEmpty && !_this.get$_hasInlineLabel() ? 1 : 0; t5 = _this.get$decoration(_this).hintText; t5.toString; t6 = _this.get$decoration(_this).hintTextDirection; t7 = _this._widget.textAlign; hint = A.AnimatedOpacity$(true, A.Text$(t5, _null, _this.get$decoration(_this).hintMaxLines, B.TextOverflow_2, _null, _null, hintStyle, t7, t6, _null), B.Cubic_ifx, B.Duration_200000, t3); } isError = _this.get$decoration(_this).errorText != null; if (!_this.get$decoration(_this).enabled) border = isError ? _this.get$decoration(_this).errorBorder : _this.get$decoration(_this).disabledBorder; else if (_this._widget.isFocused) border = isError ? _this.get$decoration(_this).focusedErrorBorder : _this.get$decoration(_this).focusedBorder; else border = isError ? _this.get$decoration(_this).errorBorder : _this.get$decoration(_this).enabledBorder; if (border == null) border = _this._getDefaultBorder$1(themeData); t3 = _this._borderGap; t5 = A._lateReadCheck(_this.___InputDecoratorState__floatingLabelController, _s24_); t6 = _this._getFillColor$1(themeData); t7 = _this._getHoverColor$1(themeData); t8 = _this._widget.isHovering && _this.get$decoration(_this).enabled; if (_this.get$decoration(_this).labelText == null) { _this.get$decoration(_this).toString; t9 = true; } else t9 = false; if (t9) label = _null; else { t9 = A._lateReadCheck(_this.___InputDecoratorState__shakingLabelController, "_shakingLabelController"); t10 = _this.get$_hasInlineLabel() || _this.get$decoration(_this).floatingLabelBehavior !== B.FloatingLabelBehavior_0 ? 1 : 0; t11 = _this._widget; if (t11.isEmpty) t11 = t11.isFocused && t11.decoration.enabled; else t11 = true; t11 = t11 ? _this._getFloatingLabelStyle$1(themeData) : labelStyle; _this.get$decoration(_this).toString; t12 = _this.get$decoration(_this).labelText; t12.toString; t12 = A.Text$(t12, _null, _null, B.TextOverflow_2, _null, _null, _null, _this._widget.textAlign, _null, _null); label = new A._Shaker(A.AnimatedOpacity$(false, A.AnimatedDefaultTextStyle$(t12, B.Cubic_ifx, B.Duration_200000, true, t11), B.Cubic_ifx, B.Duration_200000, t10), t9, _null); } _this.get$decoration(_this).toString; _this.get$decoration(_this).toString; _this.get$decoration(_this).toString; _this.get$decoration(_this).toString; t9 = _this.get$decoration(_this).isDense; decorationIsDense = t9 === true; iconSize = decorationIsDense ? 18 : 24; _this.get$decoration(_this).toString; _this.get$decoration(_this).toString; if (_this.get$decoration(_this).suffixIcon == null) suffixIcon = _null; else { _this.get$decoration(_this).toString; t9 = themeData.visualDensity.effectiveConstraints$1(B.BoxConstraints_mlX0); t10 = A.MaterialStateProperty_resolveAs(_null, _this.get$materialState(), type$.nullable_Color); if (t10 == null) t10 = _this._getIconColor$1(themeData); t11 = _this.get$decoration(_this).suffixIcon; t11.toString; suffixIcon = A.Center$(new A.ConstrainedBox(t9, A.IconTheme_merge(t11, new A.IconThemeData(t10, _null, iconSize, _null)), _null), 1, 1); } t9 = _this._widget.textAlign; t10 = _this.get$decoration(_this).helperText; t11 = _this._getHelperStyle$1(themeData); t12 = _this.get$decoration(_this).helperMaxLines; t13 = _this.get$decoration(_this).errorText; color = _this.get$decoration(_this).enabled ? themeData.errorColor : B.Color_0; t2 = t2.bodySmall.copyWith$1$color(color).merge$1(_this.get$decoration(_this).errorStyle); t14 = _this.get$decoration(_this).errorMaxLines; if (_this.get$decoration(_this).counter != null) counter = _this.get$decoration(_this).counter; else if (_this.get$decoration(_this).counterText != null && _this.get$decoration(_this).counterText !== "") { t15 = _this._widget.isFocused; t16 = _this.get$decoration(_this).counterText; t16.toString; t1 = _this._getHelperStyle$1(themeData).merge$1(A.MaterialStateProperty_resolveAs(_this.get$decoration(_this).counterStyle, _this.get$materialState(), t1)); t1 = A.Text$(t16, _null, _null, B.TextOverflow_2, _this.get$decoration(_this).semanticCounterText, _null, t1, _null, _null, _null); counter = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t15, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t1, _null); } else counter = _null; t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; decorationContentPadding = _this.get$decoration(_this).contentPadding; if (decorationContentPadding == null) decorationContentPadding = _null; _this.get$decoration(_this).toString; if (!border.get$isOutline()) { t15 = labelStyle.fontSize; t15.toString; floatingLabelHeight = (4 + 0.75 * t15) * A.MediaQuery_textScaleFactorOf(context); t15 = _this.get$decoration(_this).filled; if (t15 === true) if (decorationContentPadding == null) contentPadding = decorationIsDense ? B.EdgeInsets_12_8_12_8 : B.EdgeInsets_12_12_12_12; else contentPadding = decorationContentPadding; else if (decorationContentPadding == null) contentPadding = decorationIsDense ? B.EdgeInsets_0_8_0_8 : B.EdgeInsets_0_12_0_12; else contentPadding = decorationContentPadding; } else { if (decorationContentPadding == null) contentPadding = decorationIsDense ? B.EdgeInsets_12_20_12_12 : B.EdgeInsets_12_24_12_16; else contentPadding = decorationContentPadding; floatingLabelHeight = 0; } _this.get$decoration(_this).toString; t15 = _this.get$decoration(_this).floatingLabelAlignment; t15.toString; t16 = A._lateReadCheck(A._lateReadCheck(_this.___InputDecoratorState__floatingLabelController, _s24_).__AnimationController__value, "_value"); t17 = _this.get$decoration(_this).alignLabelWithHint; t18 = _this.get$decoration(_this).isDense; t19 = themeData.visualDensity; t20 = _this._widget; t21 = t20.child; t22 = t20.textAlignVertical; t23 = t20.isFocused; t20 = t20.expands; _this.get$decoration(_this).toString; return new A._Decorator(new A._Decoration(contentPadding, false, floatingLabelHeight, t16, t15, border, t3, t17 === true, t18, t19, _null, t21, label, hint, _null, _null, _null, suffixIcon, new A._HelperError(t9, t10, t11, t12, t13, t2, t14, _null), counter, new A._BorderContainer(border, t3, t5, t6, t7, t8, _null)), t1.textDirection, t4, t22, t23, t20, _null); } }; A._InputDecoratorState__handleChange_closure.prototype = { call$0() { }, $signature: 0 }; A._InputDecoratorState__getIconColor__resolveIconColor.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6) && !states.contains$1(0, B.MaterialState_1)) return this.themeData.disabledColor; if (states.contains$1(0, B.MaterialState_1)) return this.themeData.colorScheme.primary; switch (this.themeData.colorScheme.brightness.index) { case 0: return B.Color_3019898879; case 1: return B.Color_1929379840; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 116 }; A._InputDecoratorState__getFloatingLabelStyle_getFallbackTextStyle.prototype = { call$0() { var t2, color, _this = this, _null = null, t1 = _this.$this; if (t1.get$decoration(t1).errorText != null) { t2 = t1.get$decoration(t1).errorStyle; t2 = t2 == null ? _null : t2.color; color = t2 == null ? _this.themeData.errorColor : t2; } else color = t1._getActiveColor$1(_this.themeData); t2 = A.TextStyle$(_null, _null, t1.get$decoration(t1).enabled ? color : _this.themeData.disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t1.get$decoration(t1).toString; t1 = t1.get$decoration(t1).labelStyle; return t2.merge$1(t1); }, $signature: 2322 }; A.InputDecoration.prototype = { copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(alignLabelWithHint, border, constraints, contentPadding, counter, counterStyle, counterText, disabledBorder, enabled, enabledBorder, errorBorder, errorMaxLines, errorStyle, errorText, fillColor, filled, floatingLabelAlignment, floatingLabelBehavior, floatingLabelStyle, focusColor, focusedBorder, focusedErrorBorder, helperMaxLines, helperStyle, hintMaxLines, hintStyle, hintText, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, semanticCounterText, suffixStyle) { var _this = this, t1 = hintText == null ? _this.hintText : hintText, t2 = hintStyle == null ? _this.hintStyle : hintStyle, t3 = hintMaxLines == null ? _this.hintMaxLines : hintMaxLines, t4 = errorText == null ? _this.errorText : errorText, t5 = errorStyle == null ? _this.errorStyle : errorStyle, t6 = floatingLabelBehavior == null ? _this.floatingLabelBehavior : floatingLabelBehavior, t7 = floatingLabelAlignment == null ? _this.floatingLabelAlignment : floatingLabelAlignment, t8 = isDense == null ? _this.isDense : isDense, t9 = contentPadding == null ? _this.contentPadding : contentPadding, t10 = counter == null ? _this.counter : counter, t11 = counterText == null ? _this.counterText : counterText, t12 = counterStyle == null ? _this.counterStyle : counterStyle, t13 = filled == null ? _this.filled : filled, t14 = fillColor == null ? _this.fillColor : fillColor, t15 = errorBorder == null ? _this.errorBorder : errorBorder, t16 = focusedBorder == null ? _this.focusedBorder : focusedBorder, t17 = focusedErrorBorder == null ? _this.focusedErrorBorder : focusedErrorBorder, t18 = enabledBorder == null ? _this.enabledBorder : enabledBorder, t19 = border == null ? _this.border : border, t20 = enabled == null ? _this.enabled : enabled, t21 = semanticCounterText == null ? _this.semanticCounterText : semanticCounterText, t22 = alignLabelWithHint == null ? _this.alignLabelWithHint : alignLabelWithHint; return A.InputDecoration$(t22, t19, _this.constraints, t9, t10, t12, t11, _this.disabledBorder, t20, t18, t15, _this.errorMaxLines, t5, t4, t14, t13, t7, t6, _this.floatingLabelStyle, _this.focusColor, t16, t17, _this.helperMaxLines, _this.helperStyle, _this.helperText, t3, t2, t1, _this.hintTextDirection, _this.hoverColor, _this.icon, _this.iconColor, isCollapsed === true, t8, _this.label, _this.labelStyle, _this.labelText, _this.prefix, _this.prefixIcon, _this.prefixIconColor, _this.prefixIconConstraints, _this.prefixStyle, _this.prefixText, t21, _this.suffix, _this.suffixIcon, _this.suffixIconColor, _this.suffixIconConstraints, _this.suffixStyle, _this.suffixText); }, copyWith$1$errorText(errorText) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, null, null, null, null, null, null, errorText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$2$enabled$hintMaxLines(enabled, hintMaxLines) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, null, enabled, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, hintMaxLines, null, null, null, null, null, null, null, null, null); }, copyWith$1$counter(counter) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, counter, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$4$counterStyle$counterText$errorText$semanticCounterText(counterStyle, counterText, errorText, semanticCounterText) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, counterStyle, counterText, null, null, null, null, null, null, errorText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, semanticCounterText, null); }, copyWith$2$counterText$semanticCounterText(counterText, semanticCounterText) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, counterText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, semanticCounterText, null); }, copyWith$27$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintStyle$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$suffixStyle(alignLabelWithHint, border, constraints, contentPadding, counterStyle, disabledBorder, enabledBorder, errorBorder, errorMaxLines, errorStyle, fillColor, filled, floatingLabelAlignment, floatingLabelBehavior, floatingLabelStyle, focusColor, focusedBorder, focusedErrorBorder, helperMaxLines, helperStyle, hintStyle, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, suffixStyle) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(alignLabelWithHint, border, constraints, contentPadding, null, counterStyle, null, disabledBorder, null, enabledBorder, errorBorder, errorMaxLines, errorStyle, null, fillColor, filled, floatingLabelAlignment, floatingLabelBehavior, floatingLabelStyle, focusColor, focusedBorder, focusedErrorBorder, helperMaxLines, helperStyle, null, hintStyle, null, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, null, suffixStyle); }, copyWith$2$fillColor$hintText(fillColor, hintText) { return this.copyWith$34$alignLabelWithHint$border$constraints$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, null, null, null, null, null, null, null, fillColor, null, null, null, null, null, null, null, null, null, null, null, hintText, null, null, null, null, null, null, null); }, applyDefaults$1(theme) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, t1 = _this.hintStyle; if (t1 == null) t1 = _null; t2 = _this.errorStyle; if (t2 == null) t2 = _null; t3 = _this.floatingLabelBehavior; if (t3 == null) t3 = B.FloatingLabelBehavior_1; t4 = _this.floatingLabelAlignment; if (t4 == null) t4 = B.C_FloatingLabelAlignment; t5 = _this.contentPadding; if (t5 == null) t5 = _null; t6 = _this.counterStyle; if (t6 == null) t6 = _null; t7 = _this.fillColor; if (t7 == null) t7 = _null; t8 = _this.errorBorder; if (t8 == null) t8 = _null; t9 = _this.focusedBorder; if (t9 == null) t9 = _null; t10 = _this.focusedErrorBorder; if (t10 == null) t10 = _null; t11 = _this.enabledBorder; if (t11 == null) t11 = _null; t12 = _this.border; if (t12 == null) t12 = _null; return _this.copyWith$27$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintStyle$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$suffixStyle(_this.alignLabelWithHint === true, t12, _null, t5, t6, _null, t11, t8, _null, t2, t7, _this.filled === true, t4, t3, _null, _null, t9, t10, _null, _null, t1, _null, false, _this.isDense === true, _null, _null, _null); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.InputDecoration) if (other.labelText == _this.labelText) if (other.hintText == _this.hintText) if (J.$eq$(other.hintStyle, _this.hintStyle)) if (other.hintMaxLines == _this.hintMaxLines) if (other.errorText == _this.errorText) if (J.$eq$(other.errorStyle, _this.errorStyle)) if (other.floatingLabelBehavior == _this.floatingLabelBehavior) if (J.$eq$(other.floatingLabelAlignment, _this.floatingLabelAlignment)) if (other.isDense == _this.isDense) if (J.$eq$(other.contentPadding, _this.contentPadding)) if (J.$eq$(other.suffixIcon, _this.suffixIcon)) if (J.$eq$(other.counter, _this.counter)) if (other.counterText == _this.counterText) if (J.$eq$(other.counterStyle, _this.counterStyle)) if (other.filled == _this.filled) if (J.$eq$(other.fillColor, _this.fillColor)) if (J.$eq$(other.errorBorder, _this.errorBorder)) if (J.$eq$(other.focusedBorder, _this.focusedBorder)) if (J.$eq$(other.focusedErrorBorder, _this.focusedErrorBorder)) t1 = J.$eq$(other.enabledBorder, _this.enabledBorder) && J.$eq$(other.border, _this.border) && other.enabled === _this.enabled && other.semanticCounterText == _this.semanticCounterText && other.alignLabelWithHint == _this.alignLabelWithHint && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.Object_hashAll([_this.icon, _this.iconColor, _this.label, _this.labelText, _this.floatingLabelStyle, _this.labelStyle, _this.helperText, _this.helperStyle, _this.helperMaxLines, _this.hintText, _this.hintStyle, _this.hintTextDirection, _this.hintMaxLines, _this.errorText, _this.errorStyle, _this.errorMaxLines, _this.floatingLabelBehavior, _this.floatingLabelAlignment, _this.isDense, _this.contentPadding, false, _this.filled, _this.fillColor, _this.focusColor, _this.hoverColor, _this.prefixIcon, _this.prefixIconColor, _this.prefix, _this.prefixText, _this.prefixStyle, _this.prefixIconConstraints, _this.suffixIcon, _this.suffixIconColor, _this.suffix, _this.suffixText, _this.suffixStyle, _this.suffixIconConstraints, _this.counter, _this.counterText, _this.counterStyle, _this.errorBorder, _this.focusedBorder, _this.focusedErrorBorder, _this.disabledBorder, _this.enabledBorder, _this.border, _this.enabled, _this.semanticCounterText, _this.alignLabelWithHint, _this.constraints]); }, toString$0(_) { var _this = this, t1 = A._setArrayType([], type$.JSArray_String), t2 = _this.labelText; if (t2 != null) t1.push('labelText: "' + t2 + '"'); t2 = _this.hintText; if (t2 != null) t1.push('hintText: "' + t2 + '"'); t2 = _this.hintMaxLines; if (t2 != null) t1.push('hintMaxLines: "' + A.S(t2) + '"'); t2 = _this.errorText; if (t2 != null) t1.push('errorText: "' + t2 + '"'); t2 = _this.errorStyle; if (t2 != null) t1.push('errorStyle: "' + t2.toString$0(0) + '"'); t2 = _this.floatingLabelBehavior; if (t2 != null) t1.push("floatingLabelBehavior: " + t2.toString$0(0)); t2 = _this.floatingLabelAlignment; if (t2 != null) t1.push("floatingLabelAlignment: " + t2.toString$0(0)); t2 = _this.isDense; if (t2 === true) t1.push("isDense: " + A.S(t2)); t2 = _this.contentPadding; if (t2 != null) t1.push("contentPadding: " + t2.toString$0(0)); t2 = _this.suffixIcon; if (t2 != null) t1.push("suffixIcon: " + t2.toString$0(0)); t2 = _this.counter; if (t2 != null) t1.push("counter: " + t2.toString$0(0)); t2 = _this.counterText; if (t2 != null) t1.push("counterText: " + t2); t2 = _this.counterStyle; if (t2 != null) t1.push("counterStyle: " + t2.toString$0(0)); if (_this.filled === true) t1.push("filled: true"); t2 = _this.fillColor; if (t2 != null) t1.push("fillColor: " + t2.toString$0(0)); t2 = _this.errorBorder; if (t2 != null) t1.push("errorBorder: " + t2.toString$0(0)); t2 = _this.focusedBorder; if (t2 != null) t1.push("focusedBorder: " + t2.toString$0(0)); t2 = _this.focusedErrorBorder; if (t2 != null) t1.push("focusedErrorBorder: " + t2.toString$0(0)); t2 = _this.enabledBorder; if (t2 != null) t1.push("enabledBorder: " + t2.toString$0(0)); t2 = _this.border; if (t2 != null) t1.push("border: " + t2.toString$0(0)); if (!_this.enabled) t1.push("enabled: false"); t2 = _this.semanticCounterText; if (t2 != null) t1.push("semanticCounterText: " + t2); t2 = _this.alignLabelWithHint; if (t2 != null) t1.push("alignLabelWithHint: " + A.S(t2)); return "InputDecoration(" + B.JSArray_methods.join$1(t1, ", ") + ")"; } }; A.InputDecorationTheme.prototype = { get$hashCode(_) { var _null = null; return A.Object_hash(_null, _null, _null, _null, _null, _null, _null, B.FloatingLabelBehavior_1, B.C_FloatingLabelAlignment, false, _null, false, _null, _null, _null, _null, _null, _null, false, A.Object_hash(_null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue)); }, $eq(_, other) { var t1; if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; if (other instanceof A.InputDecorationTheme) if (B.C_FloatingLabelAlignment.$eq(0, B.C_FloatingLabelAlignment)) t1 = true; else t1 = false; else t1 = false; return t1; } }; A._InputDecorationTheme_Object_Diagnosticable.prototype = {}; A.__BorderContainerState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin.prototype = { updateRenderObject$2(context, renderObject) { return this.super$RenderObjectWidget$updateRenderObject(context, renderObject); } }; A.__HelperErrorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.__InputDecoratorState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin.prototype = { attach$1(owner) { var t1, t2, _i; this.super$RenderObject$attach(owner); for (t1 = this.get$children(this), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].attach$1(owner); }, detach$0(_) { var t1, t2, _i; this.super$AbstractNode$detach(0); for (t1 = this.get$children(this), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].detach$0(0); } }; A.ListTileStyle.prototype = { toString$0(_) { return "ListTileStyle." + this._core$_name; } }; A.ListTileControlAffinity.prototype = { toString$0(_) { return "ListTileControlAffinity." + this._core$_name; } }; A.ListTile.prototype = { _iconColor$2(theme, tileTheme) { var t1, color; if (!this.enabled) return theme.disabledColor; if (this.selected) { t1 = tileTheme.selectedColor; if (t1 == null) t1 = theme.listTileTheme.selectedColor; return t1 == null ? theme.colorScheme.primary : t1; } color = tileTheme.iconColor; if (color == null) color = theme.listTileTheme.iconColor; if (color != null) return color; switch (theme.colorScheme.brightness.index) { case 1: return B.Color_1929379840; case 0: return null; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _textColor$3(theme, tileTheme, defaultColor) { var t1; if (!this.enabled) return theme.disabledColor; if (this.selected) { t1 = tileTheme.selectedColor; if (t1 == null) t1 = theme.listTileTheme.selectedColor; return t1 == null ? theme.colorScheme.primary : t1; } t1 = tileTheme.textColor; if (t1 == null) t1 = theme.listTileTheme.textColor; return t1 == null ? defaultColor : t1; }, _isDenseLayout$2(theme, tileTheme) { var t1 = this.dense; if (t1 == null) t1 = tileTheme.dense; if (t1 == null) t1 = theme.listTileTheme.dense; return t1 === true; }, build$1(_, context) { var textStyle, leadingAndTrailingTextStyle, leadingIcon, color, titleStyle, titleText, t4, subtitleStyle, subtitleText, trailingIcon, textDirection, resolvedContentPadding, t5, effectiveMouseCursor, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, theme = A.Theme_of(context), tileTheme = A.ListTileTheme_of(context), t1 = _this._iconColor$2(theme, tileTheme), t2 = _this.leading, t3 = t2 == null; if (!t3 || _this.trailing != null) { textStyle = theme.textTheme.bodyMedium; leadingAndTrailingTextStyle = textStyle.copyWith$1$color(_this._textColor$3(theme, tileTheme, textStyle.color)); } else leadingAndTrailingTextStyle = _null; if (!t3) { leadingAndTrailingTextStyle.toString; leadingIcon = A.AnimatedDefaultTextStyle$(t2, B.C__Linear, B.Duration_200000, true, leadingAndTrailingTextStyle); } else leadingIcon = _null; t2 = tileTheme.style; if (t2 == null) t2 = theme.listTileTheme.style; switch ((t2 == null ? B.ListTileStyle_0 : t2).index) { case 1: t2 = theme.textTheme.bodyLarge; t2.toString; textStyle = t2; break; case 0: t2 = theme.textTheme.titleMedium; t2.toString; textStyle = t2; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); textStyle = _null; } color = _this._textColor$3(theme, tileTheme, textStyle.color); titleStyle = _this._isDenseLayout$2(theme, tileTheme) ? textStyle.copyWith$2$color$fontSize(color, 13) : textStyle.copyWith$1$color(color); t2 = _this.title; titleText = A.AnimatedDefaultTextStyle$(t2 == null ? B.SizedBox_null_null_null_null : t2, B.C__Linear, B.Duration_200000, true, titleStyle); t2 = _this.subtitle; if (t2 != null) { t3 = theme.textTheme; t4 = t3.bodyMedium; t4.toString; color = _this._textColor$3(theme, tileTheme, t3.bodySmall.color); subtitleStyle = _this._isDenseLayout$2(theme, tileTheme) ? t4.copyWith$2$color$fontSize(color, 12) : t4.copyWith$1$color(color); subtitleText = A.AnimatedDefaultTextStyle$(t2, B.C__Linear, B.Duration_200000, true, subtitleStyle); } else { subtitleStyle = _null; subtitleText = subtitleStyle; } t2 = _this.trailing; if (t2 != null) { leadingAndTrailingTextStyle.toString; trailingIcon = A.AnimatedDefaultTextStyle$(t2, B.C__Linear, B.Duration_200000, true, leadingAndTrailingTextStyle); } else trailingIcon = _null; t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; textDirection = t2.textDirection; t2 = _this.contentPadding; if (t2 == null) t2 = _null; if (t2 == null) { t2 = tileTheme.contentPadding; t2 = t2 == null ? _null : t2.resolve$1(0, textDirection); resolvedContentPadding = t2; } else resolvedContentPadding = t2; if (resolvedContentPadding == null) resolvedContentPadding = B.EdgeInsets_16_0_16_0; t2 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); t3 = _this.enabled; if (t3) t4 = _this.onTap == null && _this.onLongPress == null; else t4 = true; if (t4) t2.add$1(0, B.MaterialState_6); t4 = _this.selected; if (t4) t2.add$1(0, B.MaterialState_4); t5 = A.MaterialStateProperty_resolveAs(_null, t2, type$.nullable_MouseCursor); if (t5 == null) effectiveMouseCursor = _null; else effectiveMouseCursor = t5; if (effectiveMouseCursor == null) effectiveMouseCursor = B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, t2); t2 = tileTheme.shape; t5 = t3 ? _this.onTap : _null; t6 = t3 ? _this.onLongPress : _null; t7 = t2 == null ? B.Border_27z : t2; if (t4) { t8 = tileTheme.selectedTileColor; color = t8 == null ? theme.listTileTheme.selectedTileColor : t8; } else { t8 = _this.tileColor; if (t8 == null) t8 = tileTheme.tileColor; color = t8 == null ? theme.listTileTheme.tileColor : t8; } t8 = color == null ? B.Color_0 : color; t9 = _this._isDenseLayout$2(theme, tileTheme); t10 = theme.visualDensity; t11 = titleStyle.textBaseline; t11.toString; t12 = subtitleStyle == null ? _null : subtitleStyle.textBaseline; t13 = tileTheme.horizontalTitleGap; if (t13 == null) t13 = 16; t14 = tileTheme.minVerticalPadding; if (t14 == null) t14 = 4; t15 = tileTheme.minLeadingWidth; if (t15 == null) t15 = 40; t7 = A.Ink$(A.SafeArea$(false, A.IconTheme_merge(new A._ListTile(leadingIcon, titleText, subtitleText, trailingIcon, _this.isThreeLine, t9, t10, textDirection, t11, t12, t13, t14, t15, _null), new A.IconThemeData(t1, _null, _null, _null)), resolvedContentPadding, false), _null, new A.ShapeDecoration(t8, _null, _null, _null, t7), _null); return A.InkWell$(false, _null, t3, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null), false, false, false, t7, _null), t2, true, _null, _this.focusNode, _null, _this.hoverColor, _null, effectiveMouseCursor, _null, _null, _null, _null, t6, t5, _null, _null, _null, _null, _null, _null); } }; A._ListTileSlot.prototype = { toString$0(_) { return "_ListTileSlot." + this._core$_name; } }; A._ListTile.prototype = { get$slots() { return B.List_ml5; }, childForSlot$1(slot) { var _this = this; switch (slot) { case B._ListTileSlot_0: return _this.leading; case B._ListTileSlot_1: return _this.title; case B._ListTileSlot_2: return _this.subtitle; case B._ListTileSlot_3: return _this.trailing; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, createRenderObject$1(context) { var _this = this, t1 = new A._RenderListTile(_this.isDense, _this.visualDensity, _this.isThreeLine, _this.textDirection, _this.titleBaselineType, _this.subtitleBaselineType, _this.horizontalTitleGap, _this.minVerticalPadding, _this.minLeadingWidth, A.LinkedHashMap_LinkedHashMap$_empty(type$._ListTileSlot, type$.RenderBox), A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$isThreeLine(_this.isThreeLine); renderObject.set$isDense(_this.isDense); renderObject.set$visualDensity(_this.visualDensity); renderObject.set$textDirection(0, _this.textDirection); renderObject.set$titleBaselineType(_this.titleBaselineType); renderObject.set$subtitleBaselineType(_this.subtitleBaselineType); renderObject.set$horizontalTitleGap(_this.horizontalTitleGap); renderObject.set$minLeadingWidth(_this.minLeadingWidth); renderObject.set$minVerticalPadding(_this.minVerticalPadding); } }; A._RenderListTile.prototype = { get$children(_) { var t3, t1 = A._setArrayType([], type$.JSArray_RenderBox), t2 = this.SlottedContainerRenderObjectMixin__slotToChild; if (t2.$index(0, B._ListTileSlot_0) != null) { t3 = t2.$index(0, B._ListTileSlot_0); t3.toString; t1.push(t3); } if (t2.$index(0, B._ListTileSlot_1) != null) { t3 = t2.$index(0, B._ListTileSlot_1); t3.toString; t1.push(t3); } if (t2.$index(0, B._ListTileSlot_2) != null) { t3 = t2.$index(0, B._ListTileSlot_2); t3.toString; t1.push(t3); } if (t2.$index(0, B._ListTileSlot_3) != null) { t2 = t2.$index(0, B._ListTileSlot_3); t2.toString; t1.push(t2); } return t1; }, set$isDense(value) { if (this._isDense === value) return; this._isDense = value; this.markNeedsLayout$0(); }, set$visualDensity(value) { if (this._visualDensity.$eq(0, value)) return; this._visualDensity = value; this.markNeedsLayout$0(); }, set$isThreeLine(value) { if (this._isThreeLine === value) return; this._isThreeLine = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { if (this._list_tile$_textDirection == value) return; this._list_tile$_textDirection = value; this.markNeedsLayout$0(); }, set$titleBaselineType(value) { if (this._titleBaselineType == value) return; this._titleBaselineType = value; this.markNeedsLayout$0(); }, set$subtitleBaselineType(value) { if (this._subtitleBaselineType == value) return; this._subtitleBaselineType = value; this.markNeedsLayout$0(); }, get$_effectiveHorizontalTitleGap() { return this._horizontalTitleGap + this._visualDensity.horizontal * 2; }, set$horizontalTitleGap(value) { if (this._horizontalTitleGap === value) return; this._horizontalTitleGap = value; this.markNeedsLayout$0(); }, set$minVerticalPadding(value) { if (this._minVerticalPadding === value) return; this._minVerticalPadding = value; this.markNeedsLayout$0(); }, set$minLeadingWidth(value) { if (this._minLeadingWidth === value) return; this._minLeadingWidth = value; this.markNeedsLayout$0(); }, get$sizedByParent() { return false; }, computeMinIntrinsicWidth$1(height) { var t2, t3, leadingWidth, t1 = this.SlottedContainerRenderObjectMixin__slotToChild; if (t1.$index(0, B._ListTileSlot_0) != null) { t2 = t1.$index(0, B._ListTileSlot_0); t2 = t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t3 = this._minLeadingWidth; leadingWidth = Math.max(A.checkNum(t2), t3) + this.get$_effectiveHorizontalTitleGap(); } else leadingWidth = 0; t2 = t1.$index(0, B._ListTileSlot_1); t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t3 = t1.$index(0, B._ListTileSlot_2); t3 = t3 == null ? 0 : t3._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t3.get$computeMinIntrinsicWidth()); t3 = Math.max(A.checkNum(t2), A.checkNum(t3)); t1 = t1.$index(0, B._ListTileSlot_3); t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return leadingWidth + t3 + t1; }, computeMaxIntrinsicWidth$1(height) { var t2, t3, leadingWidth, t1 = this.SlottedContainerRenderObjectMixin__slotToChild; if (t1.$index(0, B._ListTileSlot_0) != null) { t2 = t1.$index(0, B._ListTileSlot_0); t2 = t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t3 = this._minLeadingWidth; leadingWidth = Math.max(A.checkNum(t2), t3) + this.get$_effectiveHorizontalTitleGap(); } else leadingWidth = 0; t2 = t1.$index(0, B._ListTileSlot_1); t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t3 = t1.$index(0, B._ListTileSlot_2); t3 = t3 == null ? 0 : t3._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t3.get$computeMaxIntrinsicWidth()); t3 = Math.max(A.checkNum(t2), A.checkNum(t3)); t1 = t1.$index(0, B._ListTileSlot_3); t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return leadingWidth + t3 + t1; }, get$_defaultTileHeight() { var baseDensity, _this = this, isOneLine = _this.SlottedContainerRenderObjectMixin__slotToChild.$index(0, B._ListTileSlot_2) == null, hasSubtitle = !isOneLine, t1 = !_this._isThreeLine, isTwoLine = t1 && hasSubtitle; isOneLine = t1 && isOneLine; t1 = _this._visualDensity; baseDensity = new A.Offset(t1.horizontal, t1.vertical).$mul(0, 4); if (isOneLine) { t1 = _this._isDense ? 48 : 56; return t1 + baseDensity._dy; } if (isTwoLine) { t1 = _this._isDense ? 64 : 72; return t1 + baseDensity._dy; } t1 = _this._isDense ? 76 : 88; return t1 + baseDensity._dy; }, computeMinIntrinsicHeight$1(width) { var t1 = this.get$_defaultTileHeight(), t2 = this.SlottedContainerRenderObjectMixin__slotToChild, t3 = t2.$index(0, B._ListTileSlot_1); t3 = t3._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t3.get$computeMinIntrinsicHeight()); t2 = t2.$index(0, B._ListTileSlot_2); t2 = t2 == null ? null : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); return Math.max(t1, t3 + (t2 == null ? 0 : t2)); }, computeMaxIntrinsicHeight$1(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1(baseline) { var t1 = this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.$index(0, B._ListTileSlot_1).parentData; t2.toString; t2 = type$.BoxParentData._as(t2).offset._dy; t1 = t1.$index(0, B._ListTileSlot_1).getDistanceToActualBaseline$1(baseline); t1.toString; return t2 + t1; }, computeDryLayout$1(constraints) { return B.Size_0_0; }, performLayout$0() { var t4, looseConstraints, iconConstraints, leadingSize, trailingSize, titleStart, adjustedTrailingWidth, textConstraints, titleSize, subtitleSize, titleBaseline, subtitleBaseline, defaultTileHeight, tileHeight, titleY, subtitleY, titleOverlap, titleY0, leadingY, trailingY, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.SlottedContainerRenderObjectMixin__slotToChild, hasLeading = t1.$index(0, B._ListTileSlot_0) != null, t2 = t1.$index(0, B._ListTileSlot_2) == null, hasSubtitle = !t2, hasTrailing = t1.$index(0, B._ListTileSlot_3) != null, isTwoLine = !_this._isThreeLine && hasSubtitle, t3 = _this._visualDensity, densityAdjustment = new A.Offset(t3.horizontal, t3.vertical).$mul(0, 4); t3 = _this._isDense ? 48 : 56; t4 = constraints.maxWidth; looseConstraints = new A.BoxConstraints(0, t4, 0, constraints.maxHeight); iconConstraints = looseConstraints.enforce$1(new A.BoxConstraints(0, 1 / 0, 0, t3 + densityAdjustment._dy)); leadingSize = A._RenderListTile__layoutBox(t1.$index(0, B._ListTileSlot_0), iconConstraints); trailingSize = A._RenderListTile__layoutBox(t1.$index(0, B._ListTileSlot_3), iconConstraints); titleStart = hasLeading ? Math.max(_this._minLeadingWidth, A.checkNum(leadingSize._dx)) + _this.get$_effectiveHorizontalTitleGap() : 0; adjustedTrailingWidth = hasTrailing ? Math.max(trailingSize._dx + _this.get$_effectiveHorizontalTitleGap(), 32) : 0; textConstraints = looseConstraints.tighten$1$width(t4 - titleStart - adjustedTrailingWidth); titleSize = A._RenderListTile__layoutBox(t1.$index(0, B._ListTileSlot_1), textConstraints); subtitleSize = A._RenderListTile__layoutBox(t1.$index(0, B._ListTileSlot_2), textConstraints); if (isTwoLine) { t3 = _this._isDense; titleBaseline = t3 ? 28 : 32; subtitleBaseline = t3 ? 48 : 52; } else if (_this._isThreeLine) { t3 = _this._isDense; titleBaseline = t3 ? 22 : 28; subtitleBaseline = t3 ? 42 : 48; } else { titleBaseline = null; subtitleBaseline = null; } defaultTileHeight = _this.get$_defaultTileHeight(); if (t2) { t2 = titleSize._dy; tileHeight = Math.max(defaultTileHeight, t2 + 2 * _this._minVerticalPadding); titleY = (tileHeight - t2) / 2; subtitleY = null; } else { titleBaseline.toString; t2 = t1.$index(0, B._ListTileSlot_1).getDistanceToBaseline$1(_this._titleBaselineType); t2.toString; titleY = titleBaseline - t2; subtitleBaseline.toString; t2 = t1.$index(0, B._ListTileSlot_2); t2.toString; t3 = _this._subtitleBaselineType; t3.toString; t3 = t2.getDistanceToBaseline$1(t3); t3.toString; subtitleY = subtitleBaseline - t3 + _this._visualDensity.vertical * 2; t3 = titleSize._dy; titleOverlap = titleY + t3 - subtitleY; if (titleOverlap > 0) { t2 = titleOverlap / 2; titleY -= t2; subtitleY += t2; } titleY0 = _this._minVerticalPadding; if (titleY < titleY0 || subtitleY + subtitleSize._dy + titleY0 > defaultTileHeight) { tileHeight = t3 + subtitleSize._dy + 2 * titleY0; subtitleY = t3 + titleY0; titleY = titleY0; } else tileHeight = defaultTileHeight; } if (tileHeight > 72) { leadingY = 16; trailingY = 16; } else { leadingY = Math.min((tileHeight - leadingSize._dy) / 2, 16); trailingY = (tileHeight - trailingSize._dy) / 2; } switch (_this._list_tile$_textDirection) { case B.TextDirection_0: if (hasLeading) { t2 = t1.$index(0, B._ListTileSlot_0); t2.toString; t3 = leadingSize._dx; t2 = t2.parentData; t2.toString; type$.BoxParentData._as(t2).offset = new A.Offset(t4 - t3, leadingY); } t2 = t1.$index(0, B._ListTileSlot_1).parentData; t2.toString; t3 = type$.BoxParentData; t3._as(t2).offset = new A.Offset(adjustedTrailingWidth, titleY); if (hasSubtitle) { t2 = t1.$index(0, B._ListTileSlot_2); t2.toString; subtitleY.toString; t2 = t2.parentData; t2.toString; t3._as(t2).offset = new A.Offset(adjustedTrailingWidth, subtitleY); } if (hasTrailing) { t1 = t1.$index(0, B._ListTileSlot_3).parentData; t1.toString; t3._as(t1).offset = new A.Offset(0, trailingY); } break; case B.TextDirection_1: if (hasLeading) { t2 = t1.$index(0, B._ListTileSlot_0).parentData; t2.toString; type$.BoxParentData._as(t2).offset = new A.Offset(0, leadingY); } t2 = t1.$index(0, B._ListTileSlot_1).parentData; t2.toString; t3 = type$.BoxParentData; t3._as(t2).offset = new A.Offset(titleStart, titleY); if (hasSubtitle) { t2 = t1.$index(0, B._ListTileSlot_2); t2.toString; subtitleY.toString; t2 = t2.parentData; t2.toString; t3._as(t2).offset = new A.Offset(titleStart, subtitleY); } if (hasTrailing) { t1 = t1.$index(0, B._ListTileSlot_3); t1.toString; t2 = trailingSize._dx; t1 = t1.parentData; t1.toString; t3._as(t1).offset = new A.Offset(t4 - t2, trailingY); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._box$_size = constraints.constrain$1(new A.Size(t4, tileHeight)); }, paint$2(context, offset) { var t1 = new A._RenderListTile_paint_doPaint(context, offset), t2 = this.SlottedContainerRenderObjectMixin__slotToChild; t1.call$1(t2.$index(0, B._ListTileSlot_0)); t1.call$1(t2.$index(0, B._ListTileSlot_1)); t1.call$1(t2.$index(0, B._ListTileSlot_2)); t1.call$1(t2.$index(0, B._ListTileSlot_3)); }, hitTestSelf$1(position) { return true; }, hitTestChildren$2$position(result, position) { var t1, t2, t3, _i, child, t4; for (t1 = this.get$children(this), t2 = t1.length, t3 = type$.BoxParentData, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t4 = child.parentData; t4.toString; t3._as(t4); if (result.addWithPaintOffset$3$hitTest$offset$position(new A._RenderListTile_hitTestChildren_closure(position, t4, child), t4.offset, position)) return true; } return false; } }; A._RenderListTile_paint_doPaint.prototype = { call$1(child) { var t1; if (child != null) { t1 = child.parentData; t1.toString; this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, $signature: 535 }; A._RenderListTile_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.__ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin.prototype = { updateRenderObject$2(context, renderObject) { return this.super$RenderObjectWidget$updateRenderObject(context, renderObject); } }; A.__RenderListTile_RenderBox_SlottedContainerRenderObjectMixin.prototype = { attach$1(owner) { var t1, t2, _i; this.super$RenderObject$attach(owner); for (t1 = this.get$children(this), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].attach$1(owner); }, detach$0(_) { var t1, t2, _i; this.super$AbstractNode$detach(0); for (t1 = this.get$children(this), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].detach$0(0); } }; A.ListTileThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.dense, _this.shape, _this.style, _this.selectedColor, _this.iconColor, _this.textColor, _this.contentPadding, _this.tileColor, _this.selectedTileColor, _this.horizontalTitleGap, _this.minVerticalPadding, _this.minLeadingWidth, _this.enableFeedback, _this.mouseCursor, _this.visualDensity, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.ListTileThemeData) if (J.$eq$(other.shape, _this.shape)) if (other.style == _this.style) if (J.$eq$(other.selectedColor, _this.selectedColor)) if (J.$eq$(other.iconColor, _this.iconColor)) if (J.$eq$(other.textColor, _this.textColor)) if (J.$eq$(other.contentPadding, _this.contentPadding)) if (J.$eq$(other.tileColor, _this.tileColor)) if (J.$eq$(other.selectedTileColor, _this.selectedTileColor)) if (other.horizontalTitleGap == _this.horizontalTitleGap) if (other.minVerticalPadding == _this.minVerticalPadding) if (other.minLeadingWidth == _this.minLeadingWidth) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A.ListTileTheme.prototype = { get$data(_) { var _null = null, t1 = this._list_tile_theme$_data; return t1 == null ? A.ListTileThemeData$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this._list_tile_theme$_style, _null, _null, _null) : t1; }, wrap$2(_, context, child) { var _null = null, t1 = this._list_tile_theme$_data, t2 = t1 != null, t3 = t2 ? t1.dense : _null, t4 = t2 ? t1.shape : _null, t5 = t2 ? t1.style : this._list_tile_theme$_style, t6 = t2 ? t1.selectedColor : _null, t7 = t2 ? t1.iconColor : _null, t8 = t2 ? t1.textColor : _null, t9 = t2 ? t1.contentPadding : _null, t10 = t2 ? t1.tileColor : _null, t11 = t2 ? t1.selectedTileColor : _null, t12 = t2 ? t1.enableFeedback : _null, t13 = t2 ? t1.horizontalTitleGap : _null, t14 = t2 ? t1.minVerticalPadding : _null; return A.ListTileTheme$(child, A.ListTileThemeData$(t9, t3, t12, t13, t7, t2 ? t1.minLeadingWidth : _null, t14, _null, t6, t11, t4, t5, t8, t10, _null), _null, _null); }, updateShouldNotify$1(oldWidget) { return !this.get$data(this).$eq(0, oldWidget.get$data(oldWidget)); } }; A.ListTileTheme_merge_closure.prototype = { call$1(context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, $parent = A.ListTileTheme_of(context), t1 = $parent.dense, t2 = $parent.shape, t3 = $parent.style, t4 = this.selectedColor; if (t4 == null) t4 = $parent.selectedColor; t5 = $parent.iconColor; t6 = $parent.textColor; t7 = $parent.contentPadding; t8 = $parent.tileColor; t9 = $parent.selectedTileColor; t10 = $parent.enableFeedback; t11 = $parent.horizontalTitleGap; t12 = $parent.minVerticalPadding; t13 = $parent.minLeadingWidth; return A.ListTileTheme$(this.child, A.ListTileThemeData$(t7, t1, t10, t11, t5, t13, t12, null, t4, t9, t2, t3, t6, t8, null), this.key, null); }, $signature: 2321 }; A._ListTileThemeData_Object_Diagnosticable.prototype = {}; A.MaterialType.prototype = { toString$0(_) { return "MaterialType." + this._core$_name; } }; A.Material.prototype = { createState$0() { return new A._MaterialState(new A.LabeledGlobalKey("ink renderer", type$.LabeledGlobalKey_State_StatefulWidget), null, null, B._StateLifecycle_0); } }; A._MaterialState.prototype = { build$1(_, context) { var modelShadowColor, t2, modelElevation, contents, t3, shape, t4, _this = this, _null = null, theme = A.Theme_of(context), theme0 = A.Theme_of(context), t1 = _this._widget, color = t1.color; if (color == null) switch (t1.type.index) { case 0: color = theme0.canvasColor; break; case 1: color = theme0.cardColor; break; case 3: case 2: case 4: break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } modelShadowColor = t1.shadowColor; if (modelShadowColor == null) modelShadowColor = theme.shadowColor; t2 = modelShadowColor == null; modelElevation = !t2 ? t1.elevation : 0; contents = t1.child; if (contents != null) { t1 = t1.textStyle; if (t1 == null) { t1 = A.Theme_of(context).textTheme.bodyMedium; t1.toString; } t3 = _this._widget; contents = A.AnimatedDefaultTextStyle$(contents, B.C__Linear, t3.animationDuration, true, t1); t1 = t3; } t3 = t1.type; contents = new A.NotificationListener(new A._MaterialState_build_closure(_this), new A._InkFeatures(color, _this, t3 !== B.MaterialType_4, contents, _this._inkFeatureRenderer), _null, type$.NotificationListener_LayoutChangedNotification); if (t3 === B.MaterialType_0 && t1.shape == null && t1.borderRadius == null) { A.Theme_of(context).toString; color.toString; color = A.ElevationOverlay_applyOverlay(context, color, _this._widget.elevation); t1 = _this._widget; t3 = t1.animationDuration; t1 = t1.clipBehavior; return new A.AnimatedPhysicalModel(contents, B.BoxShape_0, t1, modelElevation, color, false, t2 ? B.Color_0 : modelShadowColor, B.Cubic_ifx, t3, _null, _null); } shape = _this._getShape$0(); t1 = _this._widget; if (t1.type === B.MaterialType_4) return A.ClipPath$(new A._ShapeBorderPaint(contents, shape, true, _null), t1.clipBehavior, new A.ShapeBorderClipper(shape, A.Directionality_maybeOf(context), _null)); t2 = t1.animationDuration; t3 = t1.clipBehavior; t4 = t1.elevation; color.toString; return new A._MaterialInterior(contents, shape, true, t3, t4, color, modelShadowColor, t1.surfaceTintColor, B.Cubic_ifx, t2, _null, _null); }, _getShape$0() { var t1 = this._widget, t2 = t1.shape; if (t2 != null) return t2; t2 = t1.borderRadius; if (t2 != null) return new A.RoundedRectangleBorder(t2, B.BorderSide_0CF); t1 = t1.type; switch (t1.index) { case 0: case 4: return B.RoundedRectangleBorder_LkV1; case 1: case 3: t1 = B.Map_gnuL2.$index(0, t1); t1.toString; return new A.RoundedRectangleBorder(t1, B.BorderSide_0CF); case 2: return B.CircleBorder_IVQ; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._MaterialState_build_closure.prototype = { call$1(notification) { var t2, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.$this._inkFeatureRenderer).get$renderObject(); t1.toString; type$._RenderInkFeatures._as(t1); t2 = t1._inkFeatures; if (t2 != null && t2.length !== 0) t1.markNeedsPaint$0(); return false; }, $signature: 2314 }; A._RenderInkFeatures.prototype = { addInkFeature$1(feature) { var t1 = this._inkFeatures; (t1 == null ? this._inkFeatures = A._setArrayType([], type$.JSArray_InkFeature) : t1).push(feature); this.markNeedsPaint$0(); }, hitTestSelf$1(position) { return this.absorbHitTest; }, paint$2(context, offset) { var canvas, t2, _i, _this = this, t1 = _this._inkFeatures; if (t1 != null && t1.length !== 0) { canvas = context.get$canvas(context); canvas.save$0(0); canvas.translate$2(0, offset._dx, offset._dy); t1 = _this._box$_size; canvas.clipRect$1(0, new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); for (t1 = _this._inkFeatures, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i]._paint$1(canvas); canvas.restore$0(0); } _this.super$RenderProxyBoxMixin$paint(context, offset); } }; A._InkFeatures.prototype = { createRenderObject$1(context) { var t1 = new A._RenderInkFeatures(this.vsync, this.color, this.absorbHitTest, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.color = this.color; renderObject.absorbHitTest = this.absorbHitTest; } }; A.InkFeature.prototype = { dispose$0(_) { var t1 = this._material$_controller, t2 = t1._inkFeatures; t2.toString; B.JSArray_methods.remove$1(t2, this); t1.markNeedsPaint$0(); this.onRemoved.call$0(); }, _paint$1(canvas) { var t1, t2, t3, transform, index, index0, node = this.referenceBox, descendants = A._setArrayType([node], type$.JSArray_RenderObject); for (t1 = this._material$_controller, t2 = type$.RenderObject; node != t1; node = t3) { t3 = node.get$parent(node); t3.toString; t2._as(t3); descendants.push(t3); } transform = new A.Matrix4(new Float64Array(16)); transform.setIdentity$0(); for (index = descendants.length - 1; index > 0; index = index0) { index0 = index - 1; descendants[index].applyPaintTransform$2(descendants[index0], transform); } this.paintFeature$2(canvas, transform); }, toString$0(_) { return "#" + A.shortHash(this); } }; A.ShapeBorderTween.prototype = { lerp$1(t) { return A.ShapeBorder_lerp(this.begin, this.end, t); } }; A._MaterialInterior.prototype = { createState$0() { return new A._MaterialInteriorState(null, null, B._StateLifecycle_0); } }; A._MaterialInteriorState.prototype = { forEachTween$1(visitor) { var t1, _this = this; _this._elevation = type$.nullable_Tween_double._as(visitor.call$3(_this._elevation, _this._widget.elevation, new A._MaterialInteriorState_forEachTween_closure())); t1 = _this._widget.shadowColor; _this._shadowColor = t1 != null ? type$.nullable_ColorTween._as(visitor.call$3(_this._shadowColor, t1, new A._MaterialInteriorState_forEachTween_closure0())) : null; t1 = _this._widget.surfaceTintColor; _this._surfaceTintColor = t1 != null ? type$.nullable_ColorTween._as(visitor.call$3(_this._surfaceTintColor, t1, new A._MaterialInteriorState_forEachTween_closure1())) : null; _this._border = type$.nullable_ShapeBorderTween._as(visitor.call$3(_this._border, _this._widget.shape, new A._MaterialInteriorState_forEachTween_closure2())); }, build$1(_, context) { var t2, t3, elevation, color, modelElevation, shadowColor, t4, _this = this, t1 = _this._border; t1.toString; t2 = _this.get$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; t1 = _this._elevation; t1.toString; t3 = _this.get$_animation(); elevation = t1.transform$1(0, t3.get$value(t3)); A.Theme_of(context).toString; color = A.ElevationOverlay_applyOverlay(context, _this._widget.color, elevation); modelElevation = _this._widget.shadowColor != null ? elevation : 0; t1 = _this._shadowColor; if (t1 == null) shadowColor = null; else { t3 = _this.get$_animation(); t3 = t1.transform$1(0, t3.get$value(t3)); shadowColor = t3; } if (shadowColor == null) shadowColor = B.Color_0; t1 = A.Directionality_maybeOf(context); t3 = _this._widget; t4 = t3.clipBehavior; return A.PhysicalShape$(new A._ShapeBorderPaint(t3.child, t2, true, null), t4, new A.ShapeBorderClipper(t2, t1, null), color, modelElevation, shadowColor); } }; A._MaterialInteriorState_forEachTween_closure.prototype = { call$1(value) { return new A.Tween(A._asDoubleS(value), null, type$.Tween_double); }, $signature: 437 }; A._MaterialInteriorState_forEachTween_closure0.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, $signature: 281 }; A._MaterialInteriorState_forEachTween_closure1.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, $signature: 281 }; A._MaterialInteriorState_forEachTween_closure2.prototype = { call$1(value) { return new A.ShapeBorderTween(type$.ShapeBorder._as(value), null); }, $signature: 2311 }; A._ShapeBorderPaint.prototype = { build$1(_, context) { var t1 = A.Directionality_maybeOf(context); return A.CustomPaint$(this.child, new A._ShapeBorderPainter(this.shape, t1, null), null, null, B.Size_0_0); } }; A._ShapeBorderPainter.prototype = { paint$2(canvas, size) { this.border.paint$3$textDirection(canvas, new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldRepaint$1(oldDelegate) { return !J.$eq$(oldDelegate.border, this.border); } }; A.__MaterialState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._MaterialLocalizationsDelegate.prototype = { isSupported$1(locale) { return locale.get$languageCode(locale) === "en"; }, load$1(_, locale) { return new A.SynchronousFuture(B.C_DefaultMaterialLocalizations, type$.SynchronousFuture_MaterialLocalizations); }, shouldReload$1(old) { return false; }, toString$0(_) { return "DefaultMaterialLocalizations.delegate(en_US)"; } }; A.DefaultMaterialLocalizations.prototype = { _getDaysInMonth$2(year, month) { if (month === 2) { if (B.JSInt_methods.$mod(year, 4) === 0 && B.JSInt_methods.$mod(year, 100) !== 0 || B.JSInt_methods.$mod(year, 400) === 0) return 29; return 28; } return B.List_WB4[month - 1]; }, formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat) { var format = alwaysUse24HourFormat ? B.TimeOfDayFormat_0 : B.TimeOfDayFormat_4; switch (format.index) { case 4: return this.formatDecimal$1(timeOfDay.get$hourOfPeriod() === 0 ? 12 : timeOfDay.get$hourOfPeriod()); case 0: return this._formatTwoDigitZeroPad$1(timeOfDay.hour); case 5: case 2: case 3: case 1: throw A.wrapException(A.AssertionError$(A.getRuntimeType(this).toString$0(0) + " does not support " + format.toString$0(0) + ".")); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _formatTwoDigitZeroPad$1(number) { if (number < 10) return "0" + A.S(number); return A.S(number); }, formatMinute$1(timeOfDay) { var minute = timeOfDay.minute; return minute < 10 ? "0" + A.S(minute) : B.JSInt_methods.toString$0(minute); }, formatYear$1(date) { date.toString; return B.JSInt_methods.toString$0(A.Primitives_getYear(date)); }, formatCompactDate$1(date) { date.toString; return this._formatTwoDigitZeroPad$1(A.Primitives_getMonth(date)) + "/" + this._formatTwoDigitZeroPad$1(A.Primitives_getDay(date)) + "/" + B.JSString_methods.padLeft$2(B.JSInt_methods.toString$0(A.Primitives_getYear(date)), 4, "0"); }, formatMediumDate$1(date) { date.toString; return B.List_ECn[A.Primitives_getWeekday(date) - 1] + ", " + B.List_h8w[A.Primitives_getMonth(date) - 1] + " " + A.Primitives_getDay(date); }, formatFullDate$1(date) { var month; date.toString; month = B.List_cIc[A.Primitives_getMonth(date) - 1]; return B.List_ALf[A.Primitives_getWeekday(date) - 1] + ", " + month + " " + A.Primitives_getDay(date) + ", " + A.Primitives_getYear(date); }, formatMonthYear$1(date) { var year; date.toString; year = B.JSInt_methods.toString$0(A.Primitives_getYear(date)); return B.List_cIc[A.Primitives_getMonth(date) - 1] + " " + year; }, parseCompactDate$1(inputString) { var inputParts, year, month, day, t1, _null = null; if (inputString == null) return _null; inputParts = inputString.split("/"); if (inputParts.length !== 3) return _null; year = A.Primitives_parseInt(inputParts[2], 10); if (year == null || year < 1) return _null; month = A.Primitives_parseInt(inputParts[0], 10); if (month == null || month < 1 || month > 12) return _null; day = A.Primitives_parseInt(inputParts[1], 10); if (day == null || day < 1 || day > this._getDaysInMonth$2(year, month)) return _null; t1 = A.Primitives_valueFromDecomposedDate(year, month, day, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, false); }, get$narrowWeekdays() { return B.List_3US; }, get$firstDayOfWeekIndex() { return 0; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$selectYearSemanticsLabel() { return "Select year"; }, get$dateInputLabel() { return "Enter Date"; }, get$invalidDateFormatLabel() { return "Invalid format."; }, get$dateOutOfRangeLabel() { return "Out of range."; }, get$datePickerHelpText() { return "SELECT DATE"; }, get$calendarModeButtonLabel() { return "Switch to calendar"; }, get$inputDateModeButtonLabel() { return "Switch to input"; }, get$timePickerDialHelpText() { return "SELECT TIME"; }, get$timePickerInputHelpText() { return "ENTER TIME"; }, get$timePickerHourLabel() { return "Hour"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$invalidTimeLabel() { return "Enter a valid time"; }, get$dialModeButtonLabel() { return "Switch to dial picker mode"; }, get$inputTimeModeButtonLabel() { return "Switch to text input mode"; }, _formatDayPeriod$1(timeOfDay) { switch ((timeOfDay.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1).index) { case 0: return "AM"; case 1: return "PM"; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, formatDecimal$1(number) { var digits, t1, maxDigitIndex, i; if (number > -1000 && number < 1000) return B.JSInt_methods.toString$0(number); digits = B.JSInt_methods.toString$0(Math.abs(number)); t1 = number < 0 ? "-" : ""; maxDigitIndex = digits.length - 1; for (i = 0; i <= maxDigitIndex; ++i) { t1 += digits[i]; if (i < maxDigitIndex && B.JSInt_methods.$mod(maxDigitIndex - i, 3) === 0) t1 += ","; } return t1.charCodeAt(0) == 0 ? t1 : t1; }, formatTimeOfDay$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat) { var buffer = new A.StringBuffer(""), t1 = this.formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat); buffer._contents = t1; t1 += ":"; buffer._contents = t1; t1 += this.formatMinute$1(timeOfDay); buffer._contents = t1; if (alwaysUse24HourFormat) return buffer.toString$0(0); t1 += " "; buffer._contents = t1; buffer._contents = t1 + this._formatDayPeriod$1(timeOfDay); return buffer.toString$0(0); }, get$openAppDrawerTooltip() { return "Open navigation menu"; }, get$backButtonTooltip() { return "Back"; }, get$nextMonthTooltip() { return "Next month"; }, get$previousMonthTooltip() { return "Previous month"; }, get$nextPageTooltip() { return "Next page"; }, get$previousPageTooltip() { return "Previous page"; }, get$firstPageTooltip() { return "First page"; }, get$lastPageTooltip() { return "Last page"; }, get$showMenuTooltip() { return "Show menu"; }, get$drawerLabel() { return "Navigation menu"; }, get$popupMenuLabel() { return "Popup menu"; }, get$dialogLabel() { return "Dialog"; }, get$alertDialogLabel() { return "Alert"; }, get$licensesPageTitle() { return "Licenses"; }, licensesPackageDetailText$1(licenseCount) { switch (licenseCount) { case 0: return "No licenses."; case 1: return "1 license."; default: return "" + licenseCount + " licenses."; } }, pageRowsInfoTitle$4(firstRow, lastRow, rowCount, rowCountIsApproximate) { var t1 = "" + lastRow, t2 = A.S(rowCount), t3 = "" + firstRow + "\u2013"; return rowCountIsApproximate ? t3 + t1 + " of about " + t2 : t3 + t1 + " of " + t2; }, get$rowsPerPageTitle() { return "Rows per page:"; }, tabLabel$2$tabCount$tabIndex(tabCount, tabIndex) { return "Tab " + tabIndex + " of " + tabCount; }, selectedRowCountTitle$1(selectedRowCount) { switch (selectedRowCount) { case 0: return "No items selected"; case 1: return "1 item selected"; default: return "" + selectedRowCount + " items selected"; } }, get$cancelButtonLabel() { return "CANCEL"; }, get$okButtonLabel() { return "OK"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$timePickerHourModeAnnouncement() { return "Select hours"; }, get$timePickerMinuteModeAnnouncement() { return "Select minutes"; }, get$modalBarrierDismissLabel() { return "Dismiss"; }, get$scriptCategory() { return B.ScriptCategory_0; }, timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat) { return alwaysUse24HourFormat ? B.TimeOfDayFormat_0 : B.TimeOfDayFormat_4; }, get$reorderItemUp() { return "Move up"; }, get$reorderItemDown() { return "Move down"; }, get$reorderItemToEnd() { return "Move to the end"; }, get$reorderItemToStart() { return "Move to the start"; }, get$expandedIconTapHint() { return "Collapse"; }, get$collapsedIconTapHint() { return "Expand"; }, get$refreshIndicatorSemanticLabel() { return "Refresh"; }, remainingTextFieldCharacterCount$1(remaining) { switch (remaining) { case 0: return "No characters remaining"; case 1: return "1 character remaining"; default: return "" + remaining + " characters remaining"; } }, $isMaterialLocalizations: 1 }; A.MaterialState.prototype = { toString$0(_) { return "MaterialState." + this._core$_name; } }; A.MaterialStateColor.prototype = {$isMaterialStateProperty: 1}; A._MaterialStateColor.prototype = { resolve$1(_, states) { return this._material_state$_resolve.call$1(states); } }; A.MaterialStateMouseCursor.prototype = { createSession$1(device) { return this.resolve$1(0, A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState)).createSession$1(device); }, $isMaterialStateProperty: 1 }; A._EnabledAndDisabledMouseCursor.prototype = { resolve$1(_, states) { if (states.contains$1(0, B.MaterialState_6)) return B.SystemMouseCursor_basic; return this.enabledCursor; }, get$debugDescription() { return "MaterialStateMouseCursor(" + this.name + ")"; }, get$name(receiver) { return this.name; } }; A.MaterialStateProperty.prototype = {}; A._MaterialStatePropertyWith.prototype = { resolve$1(_, states) { return this._material_state$_resolve.call$1(states); }, $isMaterialStateProperty: 1 }; A._MaterialStatePropertyAll.prototype = { resolve$1(_, states) { return this.value; }, toString$0(_) { return "MaterialStateProperty.all(" + A.S(this.value) + ")"; }, $isMaterialStateProperty: 1, get$value(receiver) { return this.value; } }; A.MaterialStateMixin.prototype = { updateMaterialState$2$onChanged(key, onChanged) { return new A.MaterialStateMixin_updateMaterialState_closure(this, key, onChanged); }, updateMaterialState$1(key) { return this.updateMaterialState$2$onChanged(key, null); }, addMaterialState$1(state) { if (this.MaterialStateMixin_materialStates.add$1(0, state)) this.setState$1(new A.MaterialStateMixin_addMaterialState_closure()); }, removeMaterialState$1(state) { if (this.MaterialStateMixin_materialStates.remove$1(0, state)) this.setState$1(new A.MaterialStateMixin_removeMaterialState_closure()); } }; A.MaterialStateMixin_updateMaterialState_closure.prototype = { call$1(value) { var t1 = this.$this, t2 = this.key; if (t1.MaterialStateMixin_materialStates.contains$1(0, t2) === value) return; if (value) t1.addMaterialState$1(t2); else t1.removeMaterialState$1(t2); }, $signature: 74 }; A.MaterialStateMixin_addMaterialState_closure.prototype = { call$0() { }, $signature: 0 }; A.MaterialStateMixin_removeMaterialState_closure.prototype = { call$0() { }, $signature: 0 }; A.MergeableMaterialItem.prototype = {}; A.MaterialSlice.prototype = { toString$0(_) { return "MergeableSlice(key: " + this.key.toString$0(0) + ", child: " + this.child.toString$0(0) + ", color: " + A.S(this.color) + ")"; } }; A.MaterialGap.prototype = { toString$0(_) { return "MaterialGap(key: " + this.key.toString$0(0) + ", child: " + this.size + ")"; } }; A.MergeableMaterial.prototype = { createState$0() { return new A._MergeableMaterialState(A.LinkedHashMap_LinkedHashMap$_empty(type$.LocalKey, type$.nullable__AnimationTuple), null, null, B._StateLifecycle_0); } }; A._AnimationTuple.prototype = {}; A._MergeableMaterialState.prototype = { initState$0() { var t1, i, child, t2, t3, _this = this, _s9_ = "_children"; _this.super$State$initState(); _this.___MergeableMaterialState__children = A.List_List$of(_this._widget.children, true, type$.MergeableMaterialItem); for (t1 = _this._animationTuples, i = 0; i < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)); ++i) { child = J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), i); if (child instanceof A.MaterialGap) { _this._initGap$1(child); t2 = t1.$index(0, child.key).controller; t2._lastElapsedDuration = t2._simulation = null; t2._ticker.stop$1$canceled(0, true); t2._internalSetValue$1(1); t2.notifyListeners$0(); t3 = A._lateReadCheck(t2.__AnimationController__status, "_status"); if (t2._lastReportedStatus !== t3) { t2._lastReportedStatus = t3; t2.notifyStatusListeners$1(t3); } } } }, _initGap$1(gap) { var t1, _null = null, controller = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, this), startAnimation = A.CurvedAnimation$(B.Cubic_ifx, controller, _null), endAnimation = A.CurvedAnimation$(B.Cubic_ifx, controller, _null), gapAnimation = A.CurvedAnimation$(B.Cubic_ifx, controller, _null); controller.didRegisterListener$0(); t1 = controller.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(this.get$_handleTick()); this._animationTuples.$indexSet(0, gap.key, new A._AnimationTuple(controller, startAnimation, endAnimation, gapAnimation)); }, dispose$0(_) { var t1, t2, t3, _i, child, t4, t5, value, result; for (t1 = A._lateReadCheck(this.___MergeableMaterialState__children, "_children"), t2 = t1.length, t3 = this._animationTuples, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child instanceof A.MaterialGap) { t4 = t3.$index(0, child.key).controller; t4._ticker.dispose$0(0); t4._ticker = null; t5 = t4.AnimationLocalStatusListenersMixin__statusListeners; t5._isDirty = false; B.JSArray_methods.set$length(t5._observer_list$_list, 0); value = t5.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t5.$ti._precomputed1); A._lateInitializeOnceCheck(t5.__ObserverList__set, "_set"); t5.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t5 = t4.AnimationLocalListenersMixin__listeners; t5._isDirty = false; B.JSArray_methods.set$length(t5._observer_list$_list, 0); value = t5.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t5.$ti._precomputed1); A._lateInitializeOnceCheck(t5.__ObserverList__set, "_set"); t5.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t4.super$AnimationEagerListenerMixin$dispose(0); } } this.super$__MergeableMaterialState_State_TickerProviderStateMixin$dispose(0); }, _handleTick$0() { this.setState$1(new A._MergeableMaterialState__handleTick_closure()); }, _isClosingGap$1(index) { var _this = this, _s9_ = "_children"; if (index < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)) - 1 && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index) instanceof A.MaterialGap) return A._lateReadCheck(_this._animationTuples.$index(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index).key).controller.__AnimationController__status, "_status") === B.AnimationStatus_2; return false; }, _removeEmptyGaps$0() { var t1, j, child, _this = this, _s9_ = "_children"; for (t1 = _this._animationTuples, j = 0; j < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_));) if (J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j) instanceof A.MaterialGap && A._lateReadCheck(t1.$index(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j).key).controller.__AnimationController__status, "_status") === B.AnimationStatus_0) { child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t1.$indexSet(0, child.key, null); } else ++j; }, didUpdateWidget$1(oldWidget) { var t1, oldKeys, newKeys, newOnly, oldOnly, newChildren, t2, i, j, i0, j0, newLength, oldLength, t3, gapSizeSum, child, k, gapSize, newChild, t4, gap, _this = this, _null = null, _s9_ = "_children"; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.children; oldKeys = new A.MappedListIterable(t1, new A._MergeableMaterialState_didUpdateWidget_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LocalKey>")).toSet$0(0); t1 = _this._widget.children; newKeys = new A.MappedListIterable(t1, new A._MergeableMaterialState_didUpdateWidget_closure0(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LocalKey>")).toSet$0(0); newOnly = newKeys.difference$1(oldKeys); oldOnly = oldKeys.difference$1(newKeys); newChildren = _this._widget.children; _this._removeEmptyGaps$0(); t1 = type$.MaterialGap; t2 = _this._animationTuples; i = 0; j = 0; while (true) { if (!(i < newChildren.length && j < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)))) break; if (newOnly.contains$1(0, newChildren[i].key) || oldOnly.contains$1(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j).key)) { for (i0 = i; newOnly.contains$1(0, newChildren[i0].key);) ++i0; j0 = j; while (true) { if (!(oldOnly.contains$1(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j0).key) || _this._isClosingGap$1(j0))) break; ++j0; } newLength = i0 - i; oldLength = j0 - j; if (newLength > 0) { if (oldLength <= 1) t3 = oldLength === 1 && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j) instanceof A.MaterialSlice; else t3 = true; if (t3) if (newLength === 1 && newChildren[i] instanceof A.MaterialGap) { for (gapSizeSum = 0; j < j0;) { child = J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) gapSizeSum += child.size; child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t2.$indexSet(0, child.key, _null); --j0; } t3 = newChildren[i]; J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j, t3); if (t3 instanceof A.MaterialGap) _this._initGap$1(t3); t3 = t2.$index(0, newChildren[i].key); t3.gapStart = gapSizeSum; t3 = t3.controller; t3._direction = B._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); j = j0 + 1; } else { for (k = 0; k < oldLength; ++k) { child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t2.$indexSet(0, child.key, _null); } for (k = 0; k < newLength; ++k) { t3 = newChildren[i + k]; J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j + k, t3); if (t3 instanceof A.MaterialGap) _this._initGap$1(t3); } j = j0 + (newLength - oldLength); } else if (oldLength === 1) if (newLength === 1 && newChildren[i] instanceof A.MaterialGap && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j).key.$eq(0, newChildren[i].key)) { t3 = t2.$index(0, newChildren[i].key).controller; t3._direction = B._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); j = j0; } else { gapSize = _this._getGapSize$1(j); child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t2.$indexSet(0, child.key, _null); for (k = 0; k < newLength; ++k) { t3 = newChildren[i + k]; J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j + k, t3); if (t3 instanceof A.MaterialGap) _this._initGap$1(t3); } j = j0 + (newLength - 1); for (k = i, gapSizeSum = 0; k < i0; ++k) { newChild = newChildren[k]; if (newChild instanceof A.MaterialGap) gapSizeSum += newChild.size; } for (k = i; k < i0; ++k) { newChild = newChildren[k]; if (newChild instanceof A.MaterialGap) { t3 = newChild.key; t4 = t2.$index(0, t3); t4.toString; t4.gapStart = gapSize * newChild.size / gapSizeSum; t3 = t2.$index(0, t3).controller; t3._lastElapsedDuration = t3._simulation = null; t3._ticker.stop$1$canceled(0, true); t3._internalSetValue$1(0); t3.notifyListeners$0(); t4 = A._lateReadCheck(t3.__AnimationController__status, "_status"); if (t3._lastReportedStatus !== t4) { t3._lastReportedStatus = t4; t3.notifyStatusListeners$1(t4); } t3._direction = B._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); } } } else { for (k = 0; k < newLength; ++k) { newChild = newChildren[i + k]; J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j + k, newChild); t3 = newChild instanceof A.MaterialGap; if (t3) _this._initGap$1(newChild); if (t3) { t3 = t2.$index(0, newChild.key).controller; t3._direction = B._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); } } j = j0 + newLength; } } else { if (oldLength <= 1) t3 = oldLength === 1 && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j) instanceof A.MaterialSlice; else t3 = true; if (t3) { for (gapSizeSum = 0; j < j0;) { child = J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) gapSizeSum += child.size; child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t2.$indexSet(0, child.key, _null); --j0; } if (gapSizeSum !== 0) { t3 = new A.UniqueKey(); gap = new A.MaterialGap(gapSizeSum, t3); J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j, gap); _this._initGap$1(gap); t2.$index(0, t3).gapStart = 0; t3 = t2.$index(0, t3).controller; t3._lastElapsedDuration = t3._simulation = null; t3._ticker.stop$1$canceled(0, true); t3._internalSetValue$1(1); t3.notifyListeners$0(); t4 = A._lateReadCheck(t3.__AnimationController__status, "_status"); if (t3._lastReportedStatus !== t4) { t3._lastReportedStatus = t4; t3.notifyStatusListeners$1(t4); } t3._direction = B._AnimationDirection_1; t3._animateToInternal$1(t3.lowerBound); j = j0 + 1; } else j = j0; } else { if (oldLength === 1) { t3 = t1._as(J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j)).key; t2.$index(0, t3).gapStart = 0; t3 = t2.$index(0, t3).controller; t3._direction = B._AnimationDirection_1; t3._animateToInternal$1(t3.lowerBound); } j = j0; } } i = i0; } else { j0 = j + 1; if (J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j) instanceof A.MaterialGap === newChildren[i] instanceof A.MaterialGap) { J.$indexSet$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j, newChildren[i]); ++i; } j = j0; } } for (; j < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_));) { child = J.removeAt$1$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j); if (child instanceof A.MaterialGap) t2.$indexSet(0, child.key, _null); } for (; i < newChildren.length;) { t1 = newChildren[i]; J.insert$2$ax(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), j, t1); if (t1 instanceof A.MaterialGap) _this._initGap$1(t1); ++i; ++j; } }, _mergeable_material$_borderRadius$3(index, start, end) { var t1, startRadius, endRadius, t2, _this = this, _s9_ = "_children"; if (index > 0 && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index - 1) instanceof A.MaterialGap) { t1 = _this._animationTuples.$index(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index - 1).key).startAnimation; t1 = A.Radius_lerp(B.Radius_0_0, B.Radius_2_2, t1.get$value(t1)); t1.toString; startRadius = t1; } else startRadius = B.Radius_0_0; if (index < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)) - 2 && J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index + 1) instanceof A.MaterialGap) { t1 = _this._animationTuples.$index(0, J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), index + 1).key).endAnimation; t1 = A.Radius_lerp(B.Radius_0_0, B.Radius_2_2, t1.get$value(t1)); t1.toString; endRadius = t1; } else endRadius = B.Radius_0_0; _this._widget.toString; t1 = start ? B.Radius_2_2 : startRadius; t2 = end ? B.Radius_2_2 : endRadius; return new A.BorderRadius(t1, t1, t2, t2); }, _getGapSize$1(index) { var gap = type$.MaterialGap._as(J.$index$asx(A._lateReadCheck(this.___MergeableMaterialState__children, "_children"), index)), t1 = this._animationTuples, t2 = gap.key, t3 = t1.$index(0, t2).gapStart, t4 = gap.size; t2 = t1.$index(0, t2).gapAnimation; t2 = A.lerpDouble(t3, t4, t2.get$value(t2)); t2.toString; return t2; }, _willNeedDivider$1(index) { var _s9_ = "_children"; if (index < 0) return false; if (index >= J.get$length$asx(A._lateReadCheck(this.___MergeableMaterialState__children, _s9_))) return false; return J.$index$asx(A._lateReadCheck(this.___MergeableMaterialState__children, _s9_), index) instanceof A.MaterialSlice || this._isClosingGap$1(index); }, build$1(_, context) { var t1, widgets, slices, t2, i, t3, child, hasTopDivider, hasBottomDivider, divider, border, _this = this, _null = null, _s9_ = "_children"; _this._removeEmptyGaps$0(); t1 = type$.JSArray_Widget; widgets = A._setArrayType([], t1); slices = A._setArrayType([], t1); for (t2 = type$.MaterialSlice, i = 0; i < J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)); ++i) if (J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), i) instanceof A.MaterialGap) { _this._widget.toString; widgets.push(new A.ListBody(B.Axis_1, slices, _null)); slices = A._setArrayType([], t1); _this._widget.toString; t3 = _this._getGapSize$1(i); widgets.push(new A.SizedBox(_null, t3, _null, _null)); } else { child = t2._as(J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), i)).child; _this._widget.toString; hasTopDivider = _this._willNeedDivider$1(i - 1); hasBottomDivider = _this._willNeedDivider$1(i + 1); divider = A.Divider_createBorderSide(context, _this._widget.dividerColor, 0.5); if (i === 0) border = new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, hasBottomDivider ? divider : B.BorderSide_0CF, B.BorderSide_0CF); else if (i === J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)) - 1) border = new A.Border(hasTopDivider ? divider : B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF); else { t3 = hasTopDivider ? divider : B.BorderSide_0CF; border = new A.Border(t3, B.BorderSide_0CF, hasBottomDivider ? divider : B.BorderSide_0CF, B.BorderSide_0CF); } child = A.AnimatedContainer$(child, _null, B.Cubic_ifx, new A.BoxDecoration(_null, _null, border, _null, _null, _null, B.BoxShape_0), B.Duration_200000, _null, new A._MergeableMaterialSliceKey(J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), i).key), _null, _null, _null); t2._as(J.$index$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_), i)).toString; t3 = A.Theme_of(context).cardColor; slices.push(A.Container$(_null, new A.Material(child, B.MaterialType_4, 0, _null, _null, _null, _null, _null, true, B.Clip_0, B.Duration_200000, _null, _null), B.Clip_0, _null, _null, new A.BoxDecoration(t3, _null, _null, _this._mergeable_material$_borderRadius$3(i, i === 0, i === J.get$length$asx(A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_)) - 1), _null, _null, B.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null)); } if (slices.length !== 0) { _this._widget.toString; widgets.push(A.ListBody$(slices, B.Axis_1)); } t1 = _this._widget.elevation; A._lateReadCheck(_this.___MergeableMaterialState__children, _s9_); return new A._MergeableMaterialListBody(t1, B.Axis_1, widgets, _null); } }; A._MergeableMaterialState__handleTick_closure.prototype = { call$0() { }, $signature: 0 }; A._MergeableMaterialState_didUpdateWidget_closure.prototype = { call$1(child) { return child.key; }, $signature: 550 }; A._MergeableMaterialState_didUpdateWidget_closure0.prototype = { call$1(child) { return child.key; }, $signature: 550 }; A._MergeableMaterialSliceKey.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A._MergeableMaterialSliceKey && other.value.$eq(0, this.value); }, get$hashCode(_) { var t1 = this.value; return t1.get$hashCode(t1); }, toString$0(_) { return "_MergeableMaterialSliceKey(" + this.value.toString$0(0) + ")"; }, get$value(receiver) { return this.value; } }; A._MergeableMaterialListBody.prototype = { createRenderObject$1(context) { var t1 = new A._RenderMergeableMaterialListBody(this.elevation, A.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { type$._RenderMergeableMaterialListBody._as(renderObject); renderObject.set$axisDirection(A.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false)); renderObject.set$elevation(0, this.elevation); } }; A._RenderMergeableMaterialListBody.prototype = { set$elevation(_, value) { if (value === this._mergeable_material$_elevation) return; this._mergeable_material$_elevation = value; this.markNeedsPaint$0(); }, paint$2(context, offset) { var t1, t2, t3, index, t4, t5, t6, t7, t8, t9, t10, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, t2 = offset._dx, t3 = offset._dy, index = 0; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; t6 = t5._dx + t2; t5 = t5._dy + t3; t7 = child._box$_size; t8 = t7._dx; t7 = t7._dy; if ((index & 1) === 0) { t9 = context.get$canvas(context); if (_this._mergeable_material$_elevation !== 0) { t10 = A.Path_Path(); t10.addRRect$1(0, A.RRect$fromRectAndCorners(new A.Rect(t6, t5, t6 + t8, t5 + t7), B.Radius_2_2, B.Radius_2_2, B.Radius_2_2, B.Radius_2_2)); t9.drawShadow$4(0, t10, B.Color_4278190080, _this._mergeable_material$_elevation, true); } } child = t4.ContainerParentDataMixin_nextSibling; ++index; } _this.defaultPaint$2(context, offset); } }; A.__MergeableMaterialState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.NavigationBarThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.height, _this.backgroundColor, _this.elevation, _this.indicatorColor, _this.indicatorShape, _this.labelTextStyle, _this.iconTheme, _this.labelBehavior, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.NavigationBarThemeData && other.height == _this.height && J.$eq$(other.backgroundColor, _this.backgroundColor) && other.elevation == _this.elevation && J.$eq$(other.indicatorColor, _this.indicatorColor) && J.$eq$(other.indicatorShape, _this.indicatorShape) && other.labelTextStyle == _this.labelTextStyle && other.iconTheme == _this.iconTheme && true; } }; A._LerpProperties2.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._NavigationBarThemeData_Object_Diagnosticable.prototype = {}; A.NavigationRailThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.elevation, _this.unselectedLabelTextStyle, _this.selectedLabelTextStyle, _this.unselectedIconTheme, _this.selectedIconTheme, _this.groupAlignment, _this.labelType, _this.useIndicator, _this.indicatorColor, _this.minWidth, _this.minExtendedWidth, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.NavigationRailThemeData) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.elevation == _this.elevation) if (J.$eq$(other.unselectedLabelTextStyle, _this.unselectedLabelTextStyle)) if (J.$eq$(other.selectedLabelTextStyle, _this.selectedLabelTextStyle)) if (J.$eq$(other.unselectedIconTheme, _this.unselectedIconTheme)) if (J.$eq$(other.selectedIconTheme, _this.selectedIconTheme)) if (other.groupAlignment == _this.groupAlignment) t1 = J.$eq$(other.indicatorColor, _this.indicatorColor) && other.minWidth == _this.minWidth && other.minExtendedWidth == _this.minExtendedWidth; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._NavigationRailThemeData_Object_Diagnosticable.prototype = {}; A.OutlinedButton.prototype = { defaultStyleOf$1(context) { var t1, t2, t3, t4, t5, theme = A.Theme_of(context), colorScheme = theme.colorScheme; A.Theme_of(context).toString; t1 = theme.shadowColor; t2 = theme.textTheme; t3 = A._scaledPadding1(context); t4 = A.Theme_of(context).colorScheme.onSurface.value; t4 = A.Color$fromARGB(31, t4 >>> 16 & 255, t4 >>> 8 & 255, t4 & 255); t5 = theme.visualDensity; t5 = A.OutlinedButton_styleFrom(B.Alignment_0_0, B.Duration_200000, B.Color_0, B.SystemMouseCursor_basic, 0, true, B.SystemMouseCursor_click, B.Size_wjo, B.Size_64_36, colorScheme.onSurface, t3, colorScheme.primary, t1, B.RoundedRectangleBorder_LkV0, new A.BorderSide(t4, 1, B.BorderStyle_1), B.C__InkRippleFactory, theme.materialTapTargetSize, t2.labelLarge, t5); return t5; }, themeStyleOf$1(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.OutlinedButtonTheme); t1 = A.Theme_of(context).outlinedButtonTheme; return t1.style; } }; A._OutlinedButtonDefaultForeground.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_6)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; } }; A._OutlinedButtonDefaultOverlay.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_0)) { t1 = this.primary; return A.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } if (states.contains$1(0, B.MaterialState_1) || states.contains$1(0, B.MaterialState_2)) { t1 = this.primary; return A.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; } }; A._OutlinedButtonDefaultMouseCursor.prototype = { resolve$1(_, states) { if (states.contains$1(0, B.MaterialState_6)) return this.disabledCursor; return this.enabledCursor; } }; A.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable.prototype = {}; A.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable.prototype = {}; A.OutlinedButtonThemeData.prototype = { get$hashCode(_) { return J.get$hashCode$(this.style); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.OutlinedButtonThemeData && J.$eq$(other.style, this.style); } }; A._OutlinedButtonThemeData_Object_Diagnosticable.prototype = {}; A.MaterialPageRoute.prototype = { get$debugLabel() { return A.TransitionRoute.prototype.get$debugLabel.call(this) + "(" + A.S(this._navigator$_settings.name) + ")"; }, get$maintainState() { return true; } }; A.MaterialRouteTransitionMixin.prototype = { get$transitionDuration(_) { return B.Duration_300000; }, get$barrierColor() { return null; }, get$barrierLabel() { return null; }, canTransitionTo$1(nextRoute) { var t1; if (!(type$.MaterialRouteTransitionMixin_dynamic._is(nextRoute) && true)) t1 = false; else t1 = true; return t1; }, buildPage$3(context, animation, secondaryAnimation) { var _null = null, t1 = this.builder.call$1(context); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t1, _null); }, buildTransitions$4(context, animation, secondaryAnimation, child) { var matchingBuilder, theme = A.Theme_of(context).pageTransitionsTheme, platform = A.Theme_of(context).platform; if (this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) platform = B.TargetPlatform_2; matchingBuilder = theme._builders.$index(0, platform); if (matchingBuilder == null) matchingBuilder = B.C_ZoomPageTransitionsBuilder; return matchingBuilder.buildTransitions$1$5(this, context, animation, secondaryAnimation, child, this.$ti._precomputed1); } }; A._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin.prototype = {}; A._FadeUpwardsPageTransition.prototype = { build$1(_, context) { return A.SlideTransition$(A.FadeTransition$(false, this.child, this._opacityAnimation), this._positionAnimation, null, true); } }; A._ZoomPageTransition.prototype = { build$1(_, context) { return new A.DualTransitionBuilder(this.animation, new A._ZoomPageTransition_build_closure(), new A._ZoomPageTransition_build_closure0(), new A.DualTransitionBuilder(new A.ReverseAnimation(this.secondaryAnimation, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), 0), new A._ZoomPageTransition_build_closure1(), new A._ZoomPageTransition_build_closure2(), this.child, null), null); } }; A._ZoomPageTransition_build_closure.prototype = { call$3(context, animation, child) { return new A._ZoomEnterTransition(animation, child, false, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 551 }; A._ZoomPageTransition_build_closure0.prototype = { call$3(context, animation, child) { return new A._ZoomExitTransition(animation, true, child, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 553 }; A._ZoomPageTransition_build_closure1.prototype = { call$3(context, animation, child) { return new A._ZoomEnterTransition(animation, child, true, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 551 }; A._ZoomPageTransition_build_closure2.prototype = { call$3(context, animation, child) { return new A._ZoomExitTransition(animation, false, child, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 553 }; A._ZoomEnterTransition.prototype = { build$1(_, context) { var t2, t3, t4, fadeTransition, _this = this, t1 = {}; t1.opacity = 0; t2 = _this.reverse; if (!t2) { t3 = _this.animation; t3 = t3.get$status(t3) !== B.AnimationStatus_3; } else t3 = false; if (t3) { t3 = $.$get$_ZoomEnterTransition__scrimOpacityTween(); t4 = _this.animation; t3.toString; t4 = t3.transform$1(0, t4.get$value(t4)); t4.toString; t1.opacity = t4; } if (t2) fadeTransition = B.C__AlwaysCompleteAnimation; else { t3 = $.$get$_ZoomEnterTransition__fadeInTransition(); t3.toString; fadeTransition = new A._AnimatedEvaluation(_this.animation, t3, t3.$ti._eval$1("_AnimatedEvaluation")); } t2 = t2 ? $.$get$_ZoomEnterTransition__scaleDownTransition() : $.$get$_ZoomEnterTransition__scaleUpTransition(); t3 = _this.animation; t2.toString; return A.AnimatedBuilder$(t3, new A._ZoomEnterTransition_build_closure(t1), A.FadeTransition$(false, A.ScaleTransition$(B.Alignment_0_0, _this.child, new A._AnimatedEvaluation(t3, t2, t2.$ti._eval$1("_AnimatedEvaluation"))), fadeTransition)); } }; A._ZoomEnterTransition_build_closure.prototype = { call$2(context, child) { return new A.ColoredBox(A.Color$fromARGB(B.JSNumber_methods.round$0(255 * this._box_0.opacity), 0, 0, 0), child, null); }, $signature: 2310 }; A._ZoomExitTransition.prototype = { build$1(_, context) { var t2, fadeTransition, _this = this, t1 = _this.reverse; if (t1) { t2 = $.$get$_ZoomExitTransition__fadeOutTransition(); t2.toString; fadeTransition = new A._AnimatedEvaluation(_this.animation, t2, t2.$ti._eval$1("_AnimatedEvaluation")); } else fadeTransition = B.C__AlwaysCompleteAnimation; t1 = t1 ? $.$get$_ZoomExitTransition__scaleDownTransition() : $.$get$_ZoomExitTransition__scaleUpTransition(); t1.toString; return A.FadeTransition$(false, A.ScaleTransition$(B.Alignment_0_0, _this.child, new A._AnimatedEvaluation(_this.animation, t1, t1.$ti._eval$1("_AnimatedEvaluation"))), fadeTransition); } }; A.PageTransitionsBuilder.prototype = {}; A.ZoomPageTransitionsBuilder.prototype = { buildTransitions$1$5(route, context, animation, secondaryAnimation, child) { return new A._ZoomPageTransition(animation, secondaryAnimation, child, null); } }; A.CupertinoPageTransitionsBuilder.prototype = { buildTransitions$1$5(route, context, animation, secondaryAnimation, child, $T) { return A.CupertinoRouteTransitionMixin_buildPageTransitions(route, context, animation, secondaryAnimation, child, $T); } }; A.PageTransitionsTheme.prototype = { _all$1(builders) { var t1 = type$.MappedListIterable_of_legacy_TargetPlatform_and_nullable_PageTransitionsBuilder; return A.List_List$of(new A.MappedListIterable(B.List_4fl, new A.PageTransitionsTheme__all_closure(builders), t1), true, t1._eval$1("ListIterable.E")); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; t1 = other instanceof A.PageTransitionsTheme; if (t1 && _this._builders === other._builders) return true; return t1 && A.listEquals0(_this._all$1(other._builders), _this._all$1(_this._builders)); }, get$hashCode(_) { return A.Object_hashAll(this._all$1(this._builders)); } }; A.PageTransitionsTheme__all_closure.prototype = { call$1(platform) { return this.builders.$index(0, platform); }, $signature: 2309 }; A._PageTransitionsTheme_Object_Diagnosticable.prototype = {}; A.PaginatedDataTable.prototype = { createState$0() { return new A.PaginatedDataTableState(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.nullable_DataRow), new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A.PaginatedDataTableState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; t1 = A.PageStorage_of(t1); if (t1 == null) t1 = null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.readState$1(t2); t1 = t2; } A._asIntQ(t1); if (t1 == null) { _this._widget.toString; t1 = 0; } _this.__PaginatedDataTableState__firstRowIndex = t1; _this._widget.source.addListener$1(0, _this.get$_handleDataSourceChanged()); _this._handleDataSourceChanged$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.source; if (t1 != _this._widget.source) { t2 = _this.get$_handleDataSourceChanged(); t1.removeListener$1(0, t2); _this._widget.source.addListener$1(0, t2); _this._handleDataSourceChanged$0(); } }, dispose$0(_) { this._widget.source.removeListener$1(0, this.get$_handleDataSourceChanged()); this.super$State$dispose(0); }, _handleDataSourceChanged$0() { this.setState$1(new A.PaginatedDataTableState__handleDataSourceChanged_closure(this)); }, pageTo$1(rowIndex) { var _this = this; A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, "_firstRowIndex"); _this.setState$1(new A.PaginatedDataTableState_pageTo_closure(_this, rowIndex)); _this._widget.toString; }, _getBlankRowFor$1(index) { var t1 = this._widget.columns, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DataCell>"); return A.DataRow$byIndex(A.List_List$of(new A.MappedListIterable(t1, new A.PaginatedDataTableState__getBlankRowFor_closure(), t2), true, t2._eval$1("ListIterable.E")), index); }, _getProgressIndicatorRowFor$1(index) { var t2, t3, cells, t1 = {}; t1.haveProgressIndicator = false; t2 = this._widget.columns; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DataCell>"); cells = A.List_List$of(new A.MappedListIterable(t2, new A.PaginatedDataTableState__getProgressIndicatorRowFor_closure(t1), t3), true, t3._eval$1("ListIterable.E")); if (!t1.haveProgressIndicator) { t1.haveProgressIndicator = true; cells[0] = B.DataCell_su2; } return A.DataRow$byIndex(cells, index); }, _getRows$2(firstRowIndex, rowsPerPage) { var t1, index, haveProgressIndicator, row, t2, _this = this, result = A._setArrayType([], type$.JSArray_DataRow), nextPageFirstRowIndex = firstRowIndex + rowsPerPage; for (t1 = _this._paginated_data_table$_rows, index = firstRowIndex, haveProgressIndicator = false; index < nextPageFirstRowIndex; ++index) { if (index < A._lateReadCheck(_this.__PaginatedDataTableState__rowCount, "_rowCount") || A._lateReadCheck(_this.__PaginatedDataTableState__rowCountApproximate, "_rowCountApproximate")) { row = t1.putIfAbsent$2(0, index, new A.PaginatedDataTableState__getRows_closure(_this, index)); t2 = row == null; if (t2 && !haveProgressIndicator) { if (t2) row = _this._getProgressIndicatorRowFor$1(index); haveProgressIndicator = true; } } else row = null; result.push(row == null ? _this._getBlankRowFor$1(index) : row); } return result; }, _handleFirst$0() { this.pageTo$1(0); }, _handlePrevious$0() { var t1 = A._lateReadCheck(this.__PaginatedDataTableState__firstRowIndex, "_firstRowIndex"); this._widget.toString; this.pageTo$1(Math.max(t1 - 10, 0)); }, _handleNext$0() { var t1 = A._lateReadCheck(this.__PaginatedDataTableState__firstRowIndex, "_firstRowIndex"); this._widget.toString; this.pageTo$1(t1 + 10); }, _handleLast$0() { var _this = this, t1 = A._lateReadCheck(_this.__PaginatedDataTableState__rowCount, "_rowCount"); _this._widget.toString; t1 = B.JSNumber_methods.floor$0((t1 - 1) / 10); _this._widget.toString; _this.pageTo$1(t1 * 10); }, _isNextPageUnavailable$0() { var t1, _this = this; if (!A._lateReadCheck(_this.__PaginatedDataTableState__rowCountApproximate, "_rowCountApproximate")) { t1 = A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, "_firstRowIndex"); _this._widget.toString; t1 = t1 + 10 >= A._lateReadCheck(_this.__PaginatedDataTableState__rowCount, "_rowCount"); } else t1 = false; return t1; }, build$1(_, context) { var t2, headerWidgets, t3, t4, footerWidgets, t5, t6, _this = this, _null = null, _s14_ = "_firstRowIndex", themeData = A.Theme_of(context), t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = type$.JSArray_Widget; headerWidgets = A._setArrayType([], t2); t3 = _this._selectedRowCount; if (t3 === 0) { _this._widget.toString; t4 = true; } else t4 = false; if (t4) headerWidgets.push(A.Expanded$(_this._widget.header, 1)); else { _this._widget.toString; headerWidgets.push(A.Expanded$(A.Text$(t1.selectedRowCountTitle$1(t3), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)); } _this._widget.toString; t3 = themeData.textTheme; footerWidgets = A._setArrayType([], t2); _this._widget.toString; t4 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t5 = A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, _s14_); t6 = A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, _s14_); _this._widget.toString; t2 = A._setArrayType([t4, A.Text$(t1.pageRowsInfoTitle$4(t5 + 1, t6 + 10, A._lateReadCheck(_this.__PaginatedDataTableState__rowCount, "_rowCount"), A._lateReadCheck(_this.__PaginatedDataTableState__rowCountApproximate, "_rowCountApproximate")), _null, _null, _null, _null, _null, _null, _null, _null, _null), A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32)], t2); _this._widget.toString; t4 = A.Icon$(B.IconData_58814_MaterialIcons_null_false, _null, _null); t5 = t1.get$firstPageTooltip(); t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, _s14_) <= 0 ? _null : _this.get$_handleFirst(), B.EdgeInsets_0_0_0_0, _null, t5, _null)); _this._widget.toString; t4 = A.Icon$(B.IconData_57694_MaterialIcons_null_true, _null, _null); t5 = t1.get$previousPageTooltip(); t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, A._lateReadCheck(_this.__PaginatedDataTableState__firstRowIndex, _s14_) <= 0 ? _null : _this.get$_handlePrevious(), B.EdgeInsets_0_0_0_0, _null, t5, _null)); t2.push(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 24)); _this._widget.toString; t4 = A.Icon$(B.IconData_57695_MaterialIcons_null_true, _null, _null); t5 = t1.get$nextPageTooltip(); t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, _this._isNextPageUnavailable$0() ? _null : _this.get$_handleNext(), B.EdgeInsets_0_0_0_0, _null, t5, _null)); _this._widget.toString; t4 = A.Icon$(B.IconData_58813_MaterialIcons_null_false, _null, _null); t1 = t1.get$lastPageTooltip(); t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, _this._isNextPageUnavailable$0() ? _null : _this.get$_handleLast(), B.EdgeInsets_0_0_0_0, _null, t1, _null)); t2.push(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14)); B.JSArray_methods.addAll$1(footerWidgets, t2); return A.Card$(new A.LayoutBuilder(new A.PaginatedDataTableState_build_closure(_this, headerWidgets, themeData, t3.bodySmall, footerWidgets), _null), _null, _null, _null, _null, false, _null); } }; A.PaginatedDataTableState__handleDataSourceChanged_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.source; t1.__PaginatedDataTableState__rowCount = t2.get$rowCount(t2); t1._widget.source.toString; t1.__PaginatedDataTableState__rowCountApproximate = false; t1._selectedRowCount = 0; t1._paginated_data_table$_rows.clear$0(0); }, $signature: 0 }; A.PaginatedDataTableState_pageTo_closure.prototype = { call$0() { var t1 = this.$this; t1._widget.toString; t1.__PaginatedDataTableState__firstRowIndex = B.JSInt_methods._tdivFast$1(this.rowIndex, 10) * 10; }, $signature: 0 }; A.PaginatedDataTableState__getBlankRowFor_closure.prototype = { call$1(column) { return B.DataCell_AHF; }, $signature: 557 }; A.PaginatedDataTableState__getProgressIndicatorRowFor_closure.prototype = { call$1(column) { if (!column.numeric) { this._box_0.haveProgressIndicator = true; return B.DataCell_su2; } return B.DataCell_AHF; }, $signature: 557 }; A.PaginatedDataTableState__getRows_closure.prototype = { call$0() { return this.$this._widget.source.getRow$1(this.index); }, $signature: 2306 }; A.PaginatedDataTableState_build_closure.prototype = { call$2(context, constraints) { var t3, t4, t5, _this = this, _null = null, t1 = A._setArrayType([], type$.JSArray_Widget), t2 = _this.headerWidgets; if (t2.length !== 0) { t3 = _this.$this; t4 = _this.themeData; t5 = t4.textTheme; t5 = t3._selectedRowCount > 0 ? t5.titleMedium.copyWith$1$color(t4.colorScheme.secondary) : t5.titleLarge.copyWith$1$fontWeight(B.FontWeight_3); t3 = t3._selectedRowCount > 0 ? t4.secondaryHeaderColor : _null; t5 = A.DefaultTextStyle$(A.IconTheme_merge(A.Ink$(new A.Padding(B.EdgeInsetsDirectional_24_0_14_0, A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null), _null), t3, _null, 64), B.IconThemeData_XJy), _null, _null, B.TextOverflow_0, true, t5, _null, _null, B.TextWidthBasis_0); t1.push(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t5, _null)); } t2 = _this.$this; t3 = t2._widget; t3.toString; t4 = constraints.minWidth; t5 = A._lateReadCheck(t2.__PaginatedDataTableState__firstRowIndex, "_firstRowIndex"); t2._widget.toString; t1.push(A.SingleChildScrollView$(new A.ConstrainedBox(new A.BoxConstraints(t4, 1 / 0, 0, 1 / 0), A.DataTable$(_null, 56, t3.columns, 48, B.BoxDecoration_423, 56, 24, t2._tableKey, _null, t2._getRows$2(t5, 10), true, true, t3.sortAscending, t3.sortColumnIndex), _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0)); t3 = _this.footerTextStyle; t3.toString; t2._widget.toString; t1.push(A.DefaultTextStyle$(A.IconTheme_merge(new A.SizedBox(_null, 56, A.SingleChildScrollView$(A.Row$(_this.footerWidgets, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, B.DragStartBehavior_1, _null, _null, _null, true, B.Axis_0), _null), B.IconThemeData_XJy), _null, _null, B.TextOverflow_0, true, t3, _null, _null, B.TextWidthBasis_0)); return A.Column$(t1, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 2305 }; A.PopupMenuPosition.prototype = { toString$0(_) { return "PopupMenuPosition." + this._core$_name; } }; A.PopupMenuEntry.prototype = {}; A.PopupMenuDivider.prototype = { represents$1(value) { return false; }, createState$0() { return new A._PopupMenuDividerState(B._StateLifecycle_0); } }; A._PopupMenuDividerState.prototype = { build$1(_, context) { this._widget.toString; return A.Divider$(null, 16, null); } }; A._MenuItem0.prototype = { createRenderObject$1(context) { var t1 = new A._RenderMenuItem0(this.onLayout, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.onLayout = this.onLayout; } }; A._RenderMenuItem0.prototype = { computeDryLayout$1(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return B.Size_0_0; return t1.getDryLayout$1(constraints); }, performLayout$0() { var t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) t1 = _this._box$_size = B.Size_0_0; else { t2 = type$.BoxConstraints; t1.layout$2$parentUsesSize(0, t2._as(A.RenderObject.prototype.get$constraints.call(_this)), true); t2 = t2._as(A.RenderObject.prototype.get$constraints.call(_this)); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; t1 = _this._box$_size = t2.constrain$1(t1); t2 = _this.RenderObjectWithChildMixin__child.parentData; t2.toString; type$.BoxParentData._as(t2).offset = B.Offset_0_0; } _this.onLayout.call$1(t1); } }; A.PopupMenuItem.prototype = { represents$1(value) { var t1 = this.value; return value == null ? t1 == null : value === t1; }, createState$0() { var t1 = this.$ti; return new A.PopupMenuItemState(B._StateLifecycle_0, t1._eval$1("@<1>")._bind$1(t1)._eval$1("PopupMenuItemState<1,2>")); }, get$value(receiver) { return this.value; } }; A.PopupMenuItemState.prototype = { handleTap$0() { var t2, t1 = this._widget; t1.toString; t2 = this._framework$_element; t2.toString; A.Navigator_of(t2, false).pop$1(0, t1.value); }, build$1(_, context) { var style, t2, item, _null = null, theme = A.Theme_of(context), popupMenuTheme = A.PopupMenuTheme_of(context), t1 = this._widget; t1.toString; style = popupMenuTheme.textStyle; if (style == null) { t2 = theme.textTheme.titleMedium; t2.toString; style = t2; } item = A.AnimatedDefaultTextStyle$(A.Container$(B.AlignmentDirectional_m1_0, t1.child, B.Clip_0, _null, new A.BoxConstraints(0, 1 / 0, 48, 1 / 0), _null, _null, _null, _null, _null, B.EdgeInsets_16_0_16_0, _null, _null, _null), B.C__Linear, B.Duration_200000, true, style); t1 = A.InkWell$(false, _null, true, item, _null, true, _null, _null, _null, _null, _null, new A._EffectiveMouseCursor(_null, popupMenuTheme.mouseCursor), _null, _null, _null, _null, _null, this.get$handleTap(), _null, _null, _null, _null, _null, _null); return new A.MergeSemantics(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), _null); } }; A._PopupMenu.prototype = { build$1(_, context) { var t4, t5, t6, i, i0, start, end, t7, opacity, item, _this = this, _null = null, t1 = _this.route, t2 = t1.items, t3 = J.getInterceptor$asx(t2), unit = 1 / (t3.get$length(t2) + 1.5), children = A._setArrayType([], type$.JSArray_Widget), popupMenuTheme = A.PopupMenuTheme_of(context); for (t4 = t1.initialValue, t5 = t4 != null, t6 = 1.5 * unit, i = 0; i < t3.get$length(t2); i = i0) { i0 = i + 1; start = i0 * unit; end = B.JSNumber_methods.clamp$2(start + t6, 0, 1); t7 = t1._animationProxy; opacity = new A.CurvedAnimation(t7, new A.Interval(start, end, B.C__Linear), _null); opacity._updateCurveDirection$1(t7.get$status(t7)); t7.didRegisterListener$0(); t7 = t7.AnimationLocalStatusListenersMixin__statusListeners; t7._isDirty = true; t7._observer_list$_list.push(opacity.get$_updateCurveDirection()); item = t3.$index(t2, i); if (t5 && t3.$index(t2, i).represents$1(t4)) item = A.Container$(_null, item, B.Clip_0, A.Theme_of(context).highlightColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); children.push(new A._MenuItem0(new A._PopupMenu_build_closure(_this, i), new A.FadeTransition(opacity, false, item, _null), _null)); } t2 = t3.get$length(t2); t3 = A.SingleChildScrollView$(A.ListBody$(children, B.Axis_1), _null, B.DragStartBehavior_1, B.EdgeInsets_0_8_0_8, _null, _null, false, B.Axis_1); t3 = A.IntrinsicWidth$(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.semanticLabel, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t3, _null), 56); t1 = t1._animationProxy; t1.toString; return A.AnimatedBuilder$(t1, new A._PopupMenu_build_closure0(_this, new A.CurveTween(B.Interval_75R5), popupMenuTheme, new A.CurveTween(new A.Interval(0, unit, B.C__Linear)), new A.CurveTween(new A.Interval(0, unit * t2, B.C__Linear))), new A.ConstrainedBox(B.BoxConstraints_EcO, t3, _null)); } }; A._PopupMenu_build_closure.prototype = { call$1(size) { this.$this.route.itemSizes[this.i] = size; }, $signature: 522 }; A._PopupMenu_build_closure0.prototype = { call$2(context, child) { var t4, t5, t6, t7, _this = this, _null = null, t1 = _this.opacity, t2 = _this.$this.route, t3 = t2._animationProxy; t3.toString; t4 = t2.shape; if (t4 == null) t4 = _this.popupMenuTheme.shape; t5 = t2.color; if (t5 == null) t5 = _this.popupMenuTheme.color; t6 = t2.elevation; if (t6 == null) t6 = _this.popupMenuTheme.elevation; if (t6 == null) t6 = 8; t7 = _this.width.transform$1(0, t3.get$value(t3)); t2 = t2._animationProxy; return A.FadeTransition$(false, A.Material$(B.Duration_200000, true, _null, new A.Align(B.AlignmentDirectional_1_m1, t7, _this.height.transform$1(0, t2.get$value(t2)), child, _null), B.Clip_0, t5, t6, _null, _null, t4, _null, _null, B.MaterialType_1), new A._AnimatedEvaluation(t3, t1, A._instanceType(t1)._eval$1("_AnimatedEvaluation"))); }, $signature: 2304 }; A._PopupMenuRouteLayout.prototype = { getConstraintsForChild$1(constraints) { return A.BoxConstraints$loose(new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight))).deflate$1(B.EdgeInsets_8_8_8_8.$add(0, this.padding)); }, getPositionForChild$2(size, childSize) { var t5, selectedItemOffset, index, y0, x, x0, originCenter, subScreen, _this = this, t1 = size._dy, t2 = _this.position, y = t2.top, t3 = t2.bottom, t4 = _this.selectedItemIndex; if (t4 != null && true) { t4.toString; t5 = _this.itemSizes; selectedItemOffset = 8; index = 0; for (; index < t4; ++index) selectedItemOffset += t5[index]._dy; y0 = y + (t1 - y - t3) / 2 - (selectedItemOffset + t5[t4]._dy / 2); } else y0 = y; x = t2.left; t2 = t2.right; if (x > t2) x0 = size._dx - t2 - childSize._dx; else if (x < t2) x0 = x; else switch (_this.textDirection) { case B.TextDirection_0: x0 = size._dx - t2 - childSize._dx; break; case B.TextDirection_1: x0 = x; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t4 = 0 + size._dx; t1 = 0 + t1; originCenter = new A.Rect(x, y, t4 - 0 - t2, t1 - 0 - t3).get$center(); subScreen = _this._closestScreen$2(A.DisplayFeatureSubScreen_subScreensInBounds(new A.Rect(0, 0, t4, t1), _this.avoidBounds), originCenter); t1 = _this.padding; x = subScreen.left + 8 + t1.left; if (!(x0 < x)) { t2 = childSize._dx; t3 = subScreen.right; t4 = t1.right; x = x0 + t2 > t3 - 8 - t4 ? t3 - t2 - 8 - t4 : x0; } t2 = t1.top; if (y0 < subScreen.top + 8 + t2) y = 8 + t2; else { t2 = childSize._dy; t3 = subScreen.bottom; t1 = t1.bottom; y = y0 + t2 > t3 - 8 - t1 ? t3 - t2 - 8 - t1 : y0; } return new A.Offset(x, y); }, _closestScreen$2(screens, point) { var t1, t2, t3, _i, $screen, t4, t5, t6, t7, closest = B.JSArray_methods.get$first(screens); for (t1 = screens.length, t2 = point._dx, t3 = point._dy, _i = 0; _i < screens.length; screens.length === t1 || (0, A.throwConcurrentModificationError)(screens), ++_i) { $screen = screens[_i]; t4 = $screen.left; t5 = $screen.top; t4 = t4 + ($screen.right - t4) / 2 - t2; t5 = t5 + ($screen.bottom - t5) / 2 - t3; t6 = closest.left; t7 = closest.top; t6 = t6 + (closest.right - t6) / 2 - t2; t7 = t7 + (closest.bottom - t7) / 2 - t3; if (Math.sqrt(t4 * t4 + t5 * t5) < Math.sqrt(t6 * t6 + t7 * t7)) closest = $screen; } return closest; }, shouldRelayout$1(oldDelegate) { var _this = this; return !_this.position.$eq(0, oldDelegate.position) || _this.selectedItemIndex != oldDelegate.selectedItemIndex || _this.textDirection != oldDelegate.textDirection || !A.listEquals0(_this.itemSizes, oldDelegate.itemSizes) || !_this.padding.$eq(0, oldDelegate.padding) || !A.setEquals(_this.avoidBounds, oldDelegate.avoidBounds); } }; A._PopupMenuRoute.prototype = { createAnimation$0() { return A.CurvedAnimation$(B.C__Linear, this.super$TransitionRoute$createAnimation(), B.Interval_75R6); }, get$transitionDuration(_) { return B.Duration_300000; }, get$barrierDismissible() { return true; }, get$barrierColor() { return null; }, buildPage$3(context, animation, secondaryAnimation) { var t1, t2, t3, index, _this = this, _box_0 = {}; _box_0.selectedItemIndex = null; t1 = _this.initialValue; if (t1 != null) { t2 = _this.items; t3 = J.getInterceptor$asx(t2); index = 0; while (true) { if (!(_box_0.selectedItemIndex == null && index < t3.get$length(t2))) break; if (t3.$index(t2, index).represents$1(t1)) _box_0.selectedItemIndex = index; ++index; } } return A.MediaQuery_MediaQuery$removePadding(new A.Builder(new A._PopupMenuRoute_buildPage_closure(_box_0, _this, context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, new A._PopupMenu(_this, _this.semanticLabel, _this.constraints, null, _this.$ti._eval$1("_PopupMenu<1>"))), null), context, true, true, true, true); }, get$barrierLabel() { return this.barrierLabel; } }; A._PopupMenuRoute_buildPage_closure.prototype = { call$1(context) { var t4, t5, _this = this, t1 = _this.$this, t2 = _this._box_0.selectedItemIndex, t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; t4 = _this.mediaQuery; t5 = A.DisplayFeatureSubScreen_avoidBounds(t4); return new A.CustomSingleChildLayout(new A._PopupMenuRouteLayout(t1.position, t1.itemSizes, t2, t3.textDirection, t4.padding, A.LinkedHashSet_LinkedHashSet$of(t5, t5.$ti._eval$1("Iterable.E"))), new A._CaptureAll(t1.capturedThemes._themes, _this.menu, null), null); }, $signature: 518 }; A.PopupMenuButton.prototype = { createState$0() { return new A.PopupMenuButtonState(B._StateLifecycle_0, this.$ti._eval$1("PopupMenuButtonState<1>")); }, itemBuilder$1(arg0) { return this.itemBuilder.call$1(arg0); } }; A.PopupMenuButtonState.prototype = { showButtonMenu$0() { var popupMenuTheme, t2, t3, t4, position, items, elevation, shape, color, semanticLabel, t5, $navigator, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; popupMenuTheme = A.PopupMenuTheme_of(t1); t1 = _this._framework$_element.get$renderObject(); t1.toString; t2 = type$.RenderBox; t2._as(t1); t3 = _this._framework$_element; t3.toString; t3 = A._lateReadCheck(A.Navigator_of(t3, false).__NavigatorState__overlayKey, "_overlayKey").get$currentState()._framework$_element.get$renderObject(); t3.toString; t2._as(t3); _this._widget.toString; switch (0) { case 0: break; } t2 = A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, t3), B.Offset_0_0); t4 = t1._box$_size.bottomRight$1(0, B.Offset_0_0).$add(0, B.Offset_0_0); t4 = A.Rect$fromPoints(t2, A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, t3), t4)); t3 = t3._box$_size; position = A.RelativeRect_RelativeRect$fromRect(t4, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy)); t3 = _this._widget; t3.toString; t4 = _this._framework$_element; t4.toString; items = t3.itemBuilder$1(t4); t1 = J.getInterceptor$asx(items); if (t1.get$isNotEmpty(items)) { t2 = _this._framework$_element; t2.toString; t3 = _this._widget; t3.toString; elevation = popupMenuTheme.elevation; shape = popupMenuTheme.shape; color = t3.color; if (color == null) color = popupMenuTheme.color; t4 = _this.$ti; switch (A.Theme_of(t2).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: semanticLabel = _null; break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t5 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t5.toString; semanticLabel = t5.get$popupMenuLabel(); break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); semanticLabel = _null; } $navigator = A.Navigator_of(t2, false); t5 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t5.toString; t5 = t5.get$modalBarrierDismissLabel(); t6 = $navigator._framework$_element; t6.toString; t6 = A.InheritedTheme_capture(t2, t6); t1 = A.List_List$filled(t1.get$length(items), _null, false, type$.nullable_Size); t2 = A._setArrayType([], type$.JSArray_of_Future_bool_Function); t7 = $.Zone__current; t8 = t4._eval$1("_Future<1?>"); t9 = t4._eval$1("_AsyncCompleter<1?>"); t10 = A.ProxyAnimation$(B.C__AlwaysDismissedAnimation); t11 = A._setArrayType([], type$.JSArray_OverlayEntry); t12 = $.$get$ChangeNotifier__emptyListeners(); t13 = $.Zone__current; $navigator.push$1(new A._PopupMenuRoute(position, items, t1, t3.initialValue, elevation, semanticLabel, shape, color, t6, _null, t5, _null, t2, new A.LabeledGlobalKey(_null, t4._eval$1("LabeledGlobalKey<_ModalScopeState<1?>>")), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.PageStorageBucket(), _null, new A._AsyncCompleter(new A._Future(t7, t8), t9), t10, t11, B.RouteSettings_null_null, new A.ValueNotifier(_null, t12, type$.ValueNotifier_nullable_String), new A._AsyncCompleter(new A._Future(t13, t8), t9), t4._eval$1("_PopupMenuRoute<1?>"))).then$1$1(0, new A.PopupMenuButtonState_showButtonMenu_closure(_this), type$.void); } }, get$_popup_menu$_canRequestFocus() { var mode, t1 = this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: return this._widget.enabled; case 1: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t1, t2, t3, t4, _this = this, _null = null, iconTheme = A.IconTheme_of(context); _this._widget.toString; A.PopupMenuTheme_of(context).toString; t1 = _this._widget; if (t1.child != null) { t1 = t1.tooltip; if (t1 == null) { t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$showMenuTooltip(); } t2 = _this._widget.enabled ? _this.get$showButtonMenu() : _null; return A.Tooltip$(A.InkWell$(false, _null, _this.get$_popup_menu$_canRequestFocus(), _this._widget.child, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null), t1); } t2 = t1.icon; if (t2 == null) t2 = A.Icon$(!A.PlatformAdaptiveIcons__isCupertino() ? B.IconData_58372_MaterialIcons_null_false : B.IconData_58370_MaterialIcons_null_false, _null, _null); t3 = t1.padding; t4 = iconTheme.size; if (t4 == null) t4 = 24; t1 = t1.tooltip; if (t1 == null) { t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$showMenuTooltip(); } return A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, t4, _this._widget.enabled ? _this.get$showButtonMenu() : _null, t3, _null, t1, _null); } }; A.PopupMenuButtonState_showButtonMenu_closure.prototype = { call$1(newValue) { var t1 = this.$this; if (t1._framework$_element == null) return null; if (newValue == null) { t1._widget.toString; return null; } t1._widget.onSelected.call$1(newValue); }, $signature() { return this.$this.$ti._eval$1("Null(1?)"); } }; A._EffectiveMouseCursor.prototype = { resolve$1(_, states) { var t1 = A.MaterialStateProperty_resolveAs(this.widgetCursor, states, type$.nullable_MouseCursor); if (t1 == null) t1 = null; return t1 == null ? B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, states) : t1; }, get$debugDescription() { return "MaterialStateMouseCursor(PopupMenuItemState)"; } }; A.PopupMenuThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.color, _this.shape, _this.elevation, _this.textStyle, _this.enableFeedback, _this.mouseCursor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.PopupMenuThemeData) if (other.elevation == _this.elevation) if (J.$eq$(other.color, _this.color)) if (J.$eq$(other.shape, _this.shape)) if (J.$eq$(other.textStyle, _this.textStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._PopupMenuThemeData_Object_Diagnosticable.prototype = {}; A._ActivityIndicatorType.prototype = { toString$0(_) { return "_ActivityIndicatorType." + this._core$_name; } }; A.ProgressIndicator.prototype = { _getValueColor$1(context) { var t1 = this.valueColor; t1 = t1 == null ? null : t1.get$value(t1); if (t1 == null) t1 = this.color; if (t1 == null) t1 = A.ProgressIndicatorTheme_of(context).color; return t1 == null ? A.Theme_of(context).colorScheme.primary : t1; }, _buildSemanticsWrapper$2$child$context(child, context) { var _null = null, expandedSemanticsValue = this.semanticsValue, t1 = this.value; if (t1 != null) expandedSemanticsValue = "" + B.JSNumber_methods.round$0(t1 * 100) + "%"; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.semanticsLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, expandedSemanticsValue), false, false, false, child, _null); }, get$value(receiver) { return this.value; } }; A._LinearProgressIndicatorPainter.prototype = { paint$2(canvas, size) { var t1, t2, t3, x1, t4, x2, _this = this, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, _this.backgroundColor); paint.set$style(0, B.PaintingStyle_0); t1 = size._dx; canvas.drawRect$2(0, new A.Rect(0, 0, 0 + t1, 0 + size._dy), paint); paint.set$color(0, _this.valueColor); t2 = new A._LinearProgressIndicatorPainter_paint_drawBar(_this, size, canvas, paint); t3 = _this.value; if (t3 != null) t2.call$2(0, B.JSNumber_methods.clamp$2(t3, 0, 1) * t1); else { t3 = _this.animationValue; x1 = t1 * B.Interval_unQ.transform$1(0, t3); t4 = B.Interval_8Wd.transform$1(0, t3); x2 = t1 * B.Interval_2ds.transform$1(0, t3); t3 = B.Interval_q3Z.transform$1(0, t3); t2.call$2(x1, t1 * t4 - x1); t2.call$2(x2, t1 * t3 - x2); } }, shouldRepaint$1(oldPainter) { var _this = this; return !J.$eq$(oldPainter.backgroundColor, _this.backgroundColor) || !J.$eq$(oldPainter.valueColor, _this.valueColor) || oldPainter.value != _this.value || oldPainter.animationValue !== _this.animationValue || oldPainter.textDirection != _this.textDirection; }, get$value(receiver) { return this.value; } }; A._LinearProgressIndicatorPainter_paint_drawBar.prototype = { call$2(x, width) { var left, _this = this; if (width <= 0) return; switch (_this.$this.textDirection) { case B.TextDirection_0: left = _this.size._dx - width - x; break; case B.TextDirection_1: left = x; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.canvas.drawRect$2(0, new A.Rect(left, 0, left + width, 0 + _this.size._dy), _this.paint); }, $signature: 2298 }; A.LinearProgressIndicator.prototype = { createState$0() { return new A._LinearProgressIndicatorState(null, null, B._StateLifecycle_0); } }; A._LinearProgressIndicatorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_1800000, null, 1, null, _this); _this.___LinearProgressIndicatorState__controller = t1; if (_this._widget.value == null) A._lateReadCheck(t1, "_controller").repeat$0(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.value == null) { t1 = A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_)._ticker; t1 = !(t1 != null && t1._ticker$_future != null); } else t1 = false; if (t1) A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_).repeat$0(0); else { if (_this._widget.value != null) { t1 = A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_)._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = false; if (t1) A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_).stop$0(0); } }, dispose$0(_) { A._lateReadCheck(this.___LinearProgressIndicatorState__controller, "_controller").dispose$0(0); this.super$__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose(0); }, _buildIndicator$3(context, animationValue, textDirection) { var trackColor, minHeight, _null = null, indicatorTheme = A.ProgressIndicatorTheme_of(context), t1 = this._widget; t1.toString; t1 = t1.backgroundColor; trackColor = t1 == null ? indicatorTheme.linearTrackColor : t1; if (trackColor == null) trackColor = A.Theme_of(context).colorScheme.background; t1 = this._widget; t1.toString; minHeight = indicatorTheme.linearMinHeight; if (minHeight == null) minHeight = 4; return t1._buildSemanticsWrapper$2$child$context(A.Container$(_null, A.CustomPaint$(_null, _null, _null, new A._LinearProgressIndicatorPainter(trackColor, t1._getValueColor$1(context), this._widget.value, animationValue, textDirection, _null), B.Size_0_0), B.Clip_0, _null, new A.BoxConstraints(1 / 0, 1 / 0, minHeight, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null), context); }, build$1(_, context) { var textDirection, _this = this, _s11_ = "_controller", t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; if (_this._widget.value != null) return _this._buildIndicator$3(context, A._lateReadCheck(A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_).__AnimationController__value, "_value"), textDirection); return A.AnimatedBuilder$(A._lateReadCheck(_this.___LinearProgressIndicatorState__controller, _s11_), new A._LinearProgressIndicatorState_build_closure(_this, textDirection), null); } }; A._LinearProgressIndicatorState_build_closure.prototype = { call$2(context, child) { var t1 = this.$this; return t1._buildIndicator$3(context, A._lateReadCheck(A._lateReadCheck(t1.___LinearProgressIndicatorState__controller, "_controller").__AnimationController__value, "_value"), this.textDirection); }, $signature: 211 }; A._CircularProgressIndicatorPainter.prototype = { paint$2(canvas, size) { var t2, t3, backgroundPaint, _this = this, t1 = $.$get$useCanvasKit(), paint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, _this.valueColor); t2 = _this.strokeWidth; paint.set$strokeWidth(t2); paint.set$style(0, B.PaintingStyle_1); t3 = _this.backgroundColor; if (t3 != null) { backgroundPaint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); backgroundPaint.set$color(0, t3); backgroundPaint.set$strokeWidth(t2); backgroundPaint.set$style(0, B.PaintingStyle_1); canvas.drawArc$5(0, new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), 0, 6.282185307179586, false, backgroundPaint); } if (_this.value == null) paint.set$strokeCap(B.StrokeCap_2); canvas.drawArc$5(0, new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), _this.arcStart, _this.arcSweep, false, paint); }, shouldRepaint$1(oldPainter) { var _this = this; return !J.$eq$(oldPainter.backgroundColor, _this.backgroundColor) || !J.$eq$(oldPainter.valueColor, _this.valueColor) || oldPainter.value != _this.value || oldPainter.headValue != _this.headValue || oldPainter.tailValue != _this.tailValue || oldPainter.offsetValue != _this.offsetValue || oldPainter.rotationValue != _this.rotationValue || oldPainter.strokeWidth !== _this.strokeWidth; }, get$value(receiver) { return this.value; } }; A.CircularProgressIndicator.prototype = { get$backgroundColor(_) { return this.backgroundColor; }, createState$0() { return new A._CircularProgressIndicatorState(null, null, B._StateLifecycle_0); } }; A._CircularProgressIndicatorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_2961926000, null, 1, null, _this); _this.___CircularProgressIndicatorState__controller = t1; if (_this._widget.value == null) A._lateReadCheck(t1, "_controller").repeat$0(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.value == null) { t1 = A._lateReadCheck(_this.___CircularProgressIndicatorState__controller, _s11_)._ticker; t1 = !(t1 != null && t1._ticker$_future != null); } else t1 = false; if (t1) A._lateReadCheck(_this.___CircularProgressIndicatorState__controller, _s11_).repeat$0(0); else { if (_this._widget.value != null) { t1 = A._lateReadCheck(_this.___CircularProgressIndicatorState__controller, _s11_)._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = false; if (t1) A._lateReadCheck(_this.___CircularProgressIndicatorState__controller, _s11_).stop$0(0); } }, dispose$0(_) { A._lateReadCheck(this.___CircularProgressIndicatorState__controller, "_controller").dispose$0(0); this.super$__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose(0); }, _buildMaterialIndicator$5(context, headValue, tailValue, offsetValue, rotationValue) { var trackColor, t2, t3, t4, _null = null, t1 = this._widget; t1.get$backgroundColor(t1); trackColor = A.ProgressIndicatorTheme_of(context).circularTrackColor; t1 = this._widget; t2 = t1._getValueColor$1(context); t3 = this._widget; t4 = t3.value; return t1._buildSemanticsWrapper$2$child$context(A.Container$(_null, A.CustomPaint$(_null, _null, _null, A._CircularProgressIndicatorPainter$(trackColor, headValue, offsetValue, rotationValue, t3.strokeWidth, tailValue, t4, t2), B.Size_0_0), B.Clip_0, _null, B.BoxConstraints_mlX1, _null, _null, _null, _null, _null, _null, _null, _null, _null), context); }, _buildAnimation$0() { return A.AnimatedBuilder$(A._lateReadCheck(this.___CircularProgressIndicatorState__controller, "_controller"), new A._CircularProgressIndicatorState__buildAnimation_closure(this), null); }, build$1(_, context) { var t1 = this._widget; t1.toString; switch (0) { case 0: if (t1.value != null) return this._buildMaterialIndicator$5(context, 0, 0, 0, 0); return this._buildAnimation$0(); } } }; A._CircularProgressIndicatorState__buildAnimation_closure.prototype = { call$2(context, child) { var t4, t5, t6, _s11_ = "_controller", t1 = this.$this, t2 = $.$get$_CircularProgressIndicatorState__strokeHeadTween(), t3 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t3 = t2.transform$1(0, t3.get$value(t3)); t2 = $.$get$_CircularProgressIndicatorState__strokeTailTween(); t4 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t4 = t2.transform$1(0, t4.get$value(t4)); t2 = $.$get$_CircularProgressIndicatorState__offsetTween(); t5 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t5 = t2.transform$1(0, t5.get$value(t5)); t2 = $.$get$_CircularProgressIndicatorState__rotationTween(); t6 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; return t1._buildMaterialIndicator$5(context, t3, t4, t5, t2.transform$1(0, t6.get$value(t6))); }, $signature: 211 }; A._RefreshProgressIndicatorPainter.prototype = { paint$2(canvas, size) { var t1, arcEnd, ux, uy, radius, t2, arrowheadRadius, innerRadius, outerRadius, path, paint, _this = this; _this.super$_CircularProgressIndicatorPainter$paint(canvas, size); t1 = _this.arrowheadScale; if (t1 > 0) { arcEnd = _this.arcStart + _this.arcSweep; ux = Math.cos(arcEnd); uy = Math.sin(arcEnd); radius = size._dx / 2; t2 = _this.strokeWidth; arrowheadRadius = t2 * 2 * t1; innerRadius = radius - arrowheadRadius; outerRadius = radius + arrowheadRadius; path = A.Path_Path(); path.moveTo$2(0, radius + ux * innerRadius, radius + uy * innerRadius); path.lineTo$2(0, radius + ux * outerRadius, radius + uy * outerRadius); path.lineTo$2(0, radius + ux * radius + -uy * t2 * 2 * t1, radius + uy * radius + ux * t2 * 2 * t1); path.close$0(0); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, _this.valueColor); paint.set$strokeWidth(t2); paint.set$style(0, B.PaintingStyle_0); canvas.drawPath$2(0, path, paint); } } }; A.RefreshProgressIndicator.prototype = { get$backgroundColor(_) { return A.CircularProgressIndicator.prototype.get$backgroundColor.call(this, this); }, createState$0() { return new A._RefreshProgressIndicatorState(null, null, B._StateLifecycle_0); } }; A._RefreshProgressIndicatorState.prototype = { build$1(_, context) { var t1, value0, _this = this, value = _this._widget.value; if (value != null) { _this._progress_indicator$_lastValue = value; t1 = A._lateReadCheck(_this.___CircularProgressIndicatorState__controller, "_controller"); value0 = _this.___RefreshProgressIndicatorState__convertTween; if (value0 === $) { A._lateInitializeOnceCheck(value0, "_convertTween"); value0 = _this.___RefreshProgressIndicatorState__convertTween = new A.CurveTween(B.Interval_75R7); } t1.set$value(0, value0.transform$1(0, value) * 0.000225022502250225); } return _this._buildAnimation$0(); }, _buildAnimation$0() { return A.AnimatedBuilder$(A._lateReadCheck(this.___CircularProgressIndicatorState__controller, "_controller"), new A._RefreshProgressIndicatorState__buildAnimation_closure(this), null); }, _buildMaterialIndicator$5(context, headValue, tailValue, offsetValue, rotationValue) { var rotation, value0, t2, t3, result, valueColor, backgroundColor, t4, t5, _this = this, _null = null, value = _this._widget.value, t1 = value == null, arrowheadScale = t1 ? 0 : B.Interval_75R7.transform$1(0, value); if (t1 && _this._progress_indicator$_lastValue == null) rotation = 0; else { value0 = _this.___RefreshProgressIndicatorState__additionalRotationTween; if (value0 === $) { t2 = type$.Tween_double; t3 = type$.TweenSequenceItem_double; result = A.TweenSequence$(A._setArrayType([new A.TweenSequenceItem(new A.Tween(-0.1, -0.2, t2), 0.33, t3), new A.TweenSequenceItem(new A.Tween(-0.2, 1.35, t2), 0.6699999999999999, t3)], type$.JSArray_TweenSequenceItem_double), type$.double); A._lateInitializeOnceCheck(_this.___RefreshProgressIndicatorState__additionalRotationTween, "_additionalRotationTween"); _this.___RefreshProgressIndicatorState__additionalRotationTween = result; value0 = result; } if (t1) { t1 = _this._progress_indicator$_lastValue; t1.toString; } else t1 = value; rotation = 3.141592653589793 * value0.transform$1(0, t1); } valueColor = _this._widget._getValueColor$1(context); t1 = valueColor.get$value(valueColor); valueColor = A.Color$fromARGB(255, valueColor.get$value(valueColor) >>> 16 & 255, valueColor.get$value(valueColor) >>> 8 & 255, valueColor.get$value(valueColor) & 255); t2 = _this._widget; t2.get$backgroundColor(t2); backgroundColor = A.ProgressIndicatorTheme_of(context).refreshBackgroundColor; if (backgroundColor == null) backgroundColor = A.Theme_of(context).canvasColor; t2 = _this._widget; t3 = t2.strokeWidth; t4 = tailValue * 3 / 2 * 3.141592653589793; t5 = Math.max(headValue * 3 / 2 * 3.141592653589793 - t4, 0.001); return t2._buildSemanticsWrapper$2$child$context(A.Container$(_null, A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_12_12_12_12, A.Opacity$(A.Transform$rotate(B.Alignment_0_0, rotation, A.CustomPaint$(_null, _null, _null, new A._RefreshProgressIndicatorPainter(arrowheadScale, _null, valueColor, _null, headValue, tailValue, offsetValue, rotationValue, t3, -1.5707963267948966 + t4 + rotationValue * 3.141592653589793 * 2 + offsetValue * 0.5 * 3.141592653589793, t5, _null), B.Size_0_0), _null), (t1 >>> 24 & 255) / 255), _null), B.Clip_0, backgroundColor, 2, _null, _null, _null, _null, _null, B.MaterialType_2), B.Clip_0, _null, _null, _null, _null, 41, _null, B.EdgeInsets_4_4_4_4, _null, _null, _null, 41), context); } }; A._RefreshProgressIndicatorState__buildAnimation_closure.prototype = { call$2(context, child) { var t4, t5, t6, _s11_ = "_controller", t1 = this.$this, t2 = $.$get$_CircularProgressIndicatorState__strokeHeadTween(), t3 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t3 = t2.transform$1(0, t3.get$value(t3)); t2 = $.$get$_CircularProgressIndicatorState__strokeTailTween(); t4 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t4 = t2.transform$1(0, t4.get$value(t4)); t2 = $.$get$_CircularProgressIndicatorState__offsetTween(); t5 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; t5 = t2.transform$1(0, t5.get$value(t5)); t2 = $.$get$_CircularProgressIndicatorState__rotationTween(); t6 = A._lateReadCheck(t1.___CircularProgressIndicatorState__controller, _s11_); t2.toString; return t1._buildMaterialIndicator$5(context, 1.05 * t3, t4, t5, t2.transform$1(0, t6.get$value(t6))); }, $signature: 211 }; A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ProgressIndicatorThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.color, _this.linearTrackColor, _this.linearMinHeight, _this.circularTrackColor, _this.refreshBackgroundColor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ProgressIndicatorThemeData && J.$eq$(other.color, _this.color) && J.$eq$(other.linearTrackColor, _this.linearTrackColor) && other.linearMinHeight == _this.linearMinHeight && J.$eq$(other.circularTrackColor, _this.circularTrackColor) && J.$eq$(other.refreshBackgroundColor, _this.refreshBackgroundColor); } }; A._ProgressIndicatorThemeData_Object_Diagnosticable.prototype = {}; A.Radio.prototype = { createState$0() { return new A._RadioState(new A._RadioPainter($.$get$ChangeNotifier__emptyListeners()), $, $, $, $, $, $, $, $, $, null, false, false, null, null, B._StateLifecycle_0, this.$ti._eval$1("_RadioState<1>")); }, get$value(receiver) { return this.value; } }; A._RadioState.prototype = { _radio$_handleChanged$1(selected) { var t1; if (selected == null) { this._widget.onChanged.call$1(null); return; } if (selected) { t1 = this._widget; t1.onChanged.call$1(t1.value); } }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, t4; this.super$State$didUpdateWidget(oldWidget); t1 = this._widget; t2 = t1.value; t1 = t1.groupValue; t3 = oldWidget.value; t4 = oldWidget.groupValue; if ((t2 == null ? t1 == null : t2 === t1) !== (t3 == null ? t4 == null : t3 === t4)) this.animateToValue$0(); }, dispose$0(_) { this._radio$_painter.dispose$0(0); this.super$__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged() { this._widget.toString; return this.get$_radio$_handleChanged(); }, get$tristate() { return this._widget.toggleable; }, get$value(_) { var t1 = this._widget, t2 = t1.value; t1 = t1.groupValue; return t2 == null ? t1 == null : t2 === t1; }, get$_radio$_widgetFillColor() { return new A._MaterialStatePropertyWith(new A._RadioState__widgetFillColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_radio$_defaultFillColor() { var t1 = this._framework$_element; t1.toString; return new A._MaterialStatePropertyWith(new A._RadioState__defaultFillColor_closure(A.Theme_of(t1)), type$._MaterialStatePropertyWith_Color); }, build$1(_, context) { var radioTheme, t1, effectiveMaterialTapTargetSize, effectiveVisualDensity, size, activeStates, inactiveStates, effectiveActiveColor, effectiveInactiveColor, focusedStates, t2, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, t3, t4, _this = this, _null = null, themeData = A.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(type$.RadioTheme); radioTheme = A.Theme_of(context).radioTheme; t1 = _this._widget.materialTapTargetSize; effectiveMaterialTapTargetSize = t1 == null ? radioTheme.materialTapTargetSize : t1; if (effectiveMaterialTapTargetSize == null) effectiveMaterialTapTargetSize = themeData.materialTapTargetSize; effectiveVisualDensity = themeData.visualDensity; switch (effectiveMaterialTapTargetSize.index) { case 0: size = B.Size_48_48; break; case 1: size = B.Size_40_40; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } size = size.$add(0, new A.Offset(effectiveVisualDensity.horizontal, effectiveVisualDensity.vertical).$mul(0, 4)); activeStates = _this.get$states(); activeStates.add$1(0, B.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, B.MaterialState_4); _this._widget.toString; t1 = _this.get$_radio$_widgetFillColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = radioTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActiveColor = t1; } else effectiveActiveColor = t1; if (effectiveActiveColor == null) effectiveActiveColor = _this.get$_radio$_defaultFillColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_radio$_widgetFillColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = radioTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactiveColor = t1; } else effectiveInactiveColor = t1; if (effectiveInactiveColor == null) effectiveInactiveColor = _this.get$_radio$_defaultFillColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, B.MaterialState_1); _this._widget.toString; t1 = radioTheme.overlayColor; t2 = t1 == null ? _null : t1.resolve$1(0, focusedStates); effectiveFocusOverlayColor = t2; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = themeData.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, B.MaterialState_0); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, hoveredStates); effectiveHoverOverlayColor = t2; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = themeData.hoverColor; activeStates.add$1(0, B.MaterialState_2); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActivePressedOverlayColor = t2; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); inactiveStates.add$1(0, B.MaterialState_2); _this._widget.toString; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); t1 = _this._widget; t2 = t1.value; t1 = t1.groupValue; t3 = _this._radio$_painter; t3.set$position(0, A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, "_position")); t3.set$reaction(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reaction, "_reaction")); t3.set$reactionFocusFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade, "_reactionFocusFade")); t3.set$reactionHoverFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade, "_reactionHoverFade")); t3.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t3.set$reactionColor(effectiveActivePressedOverlayColor); t3.set$hoverColor(effectiveHoverOverlayColor); t3.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t4 = radioTheme.splashRadius; t3.set$splashRadius(t4 == null ? 20 : t4); t3.set$downPosition(_this.ToggleableStateMixin__downPosition); t3.set$isFocused(_this.get$states().contains$1(0, B.MaterialState_1)); t3.set$isHovered(_this.get$states().contains$1(0, B.MaterialState_0)); t3.set$activeColor(effectiveActiveColor); t3.set$inactiveColor(effectiveInactiveColor); t3 = _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, _null, new A._MaterialStatePropertyWith(new A._RadioState_build_closure(_this, radioTheme), type$._MaterialStatePropertyWith_MouseCursor), t3, size); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, t2 == null ? t1 == null : t2 === t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t3, _null); } }; A._RadioState__widgetFillColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return null; if (states.contains$1(0, B.MaterialState_4)) return this.$this._widget.activeColor; return null; }, $signature: 224 }; A._RadioState__defaultFillColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return this.themeData.disabledColor; if (states.contains$1(0, B.MaterialState_4)) return this.themeData.toggleableActiveColor; return this.themeData.unselectedWidgetColor; }, $signature: 116 }; A._RadioState_build_closure.prototype = { call$1(states) { var t1; this.$this._widget.toString; t1 = A.MaterialStateProperty_resolveAs(null, states, type$.nullable_MouseCursor); if (t1 == null) t1 = null; return t1 == null ? A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, $signature: 447 }; A._RadioPainter.prototype = { paint$2(canvas, size) { var center, paint, t1, t2, t3, _this = this; _this.paintRadialReaction$2$canvas$origin(canvas, size.center$1(B.Offset_0_0)); center = new A.Rect(0, 0, 0 + size._dx, 0 + size._dy).get$center(); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1 = _this._inactiveColor; t1.toString; t2 = _this._toggleable$_activeColor; t2.toString; t3 = _this._toggleable$_position; t3 = A.Color_lerp(t1, t2, t3.get$value(t3)); t3.toString; paint.set$color(0, t3); paint.set$style(0, B.PaintingStyle_1); paint.set$strokeWidth(2); canvas.drawCircle$3(0, center, 8, paint); t1 = _this._toggleable$_position; if (t1.get$status(t1) !== B.AnimationStatus_0) { paint.set$style(0, B.PaintingStyle_0); t1 = _this._toggleable$_position; canvas.drawCircle$3(0, center, 4.5 * t1.get$value(t1), paint); } } }; A.__RadioState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget; t2 = t1.value; t1 = t1.groupValue; t3 = A.AnimationController$(_null, B.Duration_200000, _null, 1, (t2 == null ? t1 != null : t2 !== t1) ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__positionController = t3; _this.ToggleableStateMixin___ToggleableStateMixin__position = A.CurvedAnimation$(B.Cubic_JUR0, A._lateReadCheck(t3, "_positionController"), B.Cubic_xDo0); t3 = A.AnimationController$(_null, B.Duration_100000, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _this.ToggleableStateMixin___ToggleableStateMixin__reaction = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t3, "_reactionController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionHoverFadeController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionFocusFadeController"), _null); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, "_positionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController, "_reactionHoverFadeController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController, "_reactionFocusFadeController").dispose$0(0); _this.super$__RadioState_State_TickerProviderStateMixin$dispose(0); } }; A.RadioListTile.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.activeColor, control = A.Radio$(t1, false, _this.groupValue, B.MaterialTapTargetSize_1, _this.onChanged, true, _this.value, _this.$ti._precomputed1); switch (2) { case 0: case 2: break; } if (t1 == null) t1 = A.Theme_of(context).toggleableActiveColor; return new A.MergeSemantics(A.ListTileTheme_merge(A.ListTile$(false, _null, true, _null, true, _null, _null, false, _null, control, _null, new A.RadioListTile_build_closure(_this), false, _null, _null, _this.subtitle, _null, _this.title, _null, _null), t1), _null); }, get$value(receiver) { return this.value; } }; A.RadioListTile_build_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1.value; if (t2 === t1.groupValue) { t1.onChanged.call$1(null); return; } t1.onChanged.call$1(t2); }, $signature: 0 }; A.RadioThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.mouseCursor, _this.fillColor, _this.overlayColor, _this.splashRadius, _this.materialTapTargetSize, _this.visualDensity, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.RadioThemeData) if (other.fillColor == _this.fillColor) if (other.overlayColor == _this.overlayColor) if (other.splashRadius == _this.splashRadius) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._LerpProperties1.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._RadioThemeData_Object_Diagnosticable.prototype = {}; A._RefreshIndicatorMode.prototype = { toString$0(_) { return "_RefreshIndicatorMode." + this._core$_name; } }; A.RefreshIndicatorTriggerMode.prototype = { toString$0(_) { return "RefreshIndicatorTriggerMode." + this._core$_name; } }; A.RefreshIndicator.prototype = { createState$0() { return new A.RefreshIndicatorState(null, null, B._StateLifecycle_0); }, onRefresh$0() { return this.onRefresh.call$0(); }, notificationPredicate$1(arg0) { return A.scroll_notification__defaultScrollNotificationPredicate$closure().call$1(arg0); } }; A.RefreshIndicatorState.prototype = { initState$0() { var t1, t2, t3, _this = this, _null = null, _s19_ = "_positionController"; _this.super$State$initState(); t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); _this.__RefreshIndicatorState__positionController = t1; t1 = A._lateReadCheck(t1, _s19_); t2 = $.$get$RefreshIndicatorState__kDragSizeFactorLimitTween(); t3 = type$.Animation_double; t3._as(t1); t2.toString; _this.__RefreshIndicatorState__positionFactor = new A._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); t2 = A._lateReadCheck(_this.__RefreshIndicatorState__positionController, _s19_); t1 = $.$get$RefreshIndicatorState__threeQuarterTween(); t3._as(t2); t1.toString; _this.__RefreshIndicatorState__value = new A._AnimatedEvaluation(t2, t1, t1.$ti._eval$1("_AnimatedEvaluation")); t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); _this.__RefreshIndicatorState__scaleController = t1; t1 = A._lateReadCheck(t1, "_scaleController"); t2 = $.$get$RefreshIndicatorState__oneToZeroTween(); t3._as(t1); t2.toString; _this.__RefreshIndicatorState__scaleFactor = new A._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); }, didChangeDependencies$0() { var theme, t2, t3, t4, _this = this, t1 = _this._framework$_element; t1.toString; theme = A.Theme_of(t1); t1 = A._lateReadCheck(_this.__RefreshIndicatorState__positionController, "_positionController"); _this._widget.toString; t2 = theme.colorScheme.primary; t3 = A.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); _this._widget.toString; t2 = A.Color$fromARGB(255, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); t4 = type$.ColorTween._eval$1("_ChainedEvaluation"); _this.__RefreshIndicatorState__valueColor = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(B.Interval_75R6), new A.ColorTween(t3, t2), t4), t4._eval$1("_AnimatedEvaluation")); _this.super$State$didChangeDependencies(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; this._widget.toString; }, dispose$0(_) { A._lateReadCheck(this.__RefreshIndicatorState__positionController, "_positionController").dispose$0(0); A._lateReadCheck(this.__RefreshIndicatorState__scaleController, "_scaleController").dispose$0(0); this.super$_RefreshIndicatorState_State_TickerProviderStateMixin$dispose(0); }, _refresh_indicator$_handleScrollNotification$1(notification) { var t1, t2, indicatorAtTopNow, t3, t4, _this = this, _s80_ = string$.x60null_c; if (!_this._widget.notificationPredicate$1(notification)) return false; if (!(notification instanceof A.ScrollStartNotification && notification.dragDetails != null)) { if (notification instanceof A.ScrollUpdateNotification) if (notification.dragDetails != null) _this._widget.toString; t1 = false; } else t1 = true; if (t1) { t1 = notification.metrics; t2 = t1.axisDirection; if (!(t2 === B.AxisDirection_0 && Math.max(t1.get$maxScrollExtent() - t1.get$pixels(), 0) === 0)) t1 = t2 === B.AxisDirection_2 && Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) === 0; else t1 = true; t1 = t1 && _this._refresh_indicator$_mode == null && _this._refresh_indicator$_start$1(0, t2); } else t1 = false; if (t1) { _this.setState$1(new A.RefreshIndicatorState__handleScrollNotification_closure(_this)); return false; } t1 = notification.metrics; t2 = t1.axisDirection; switch (t2.index) { case 2: case 0: indicatorAtTopNow = true; break; case 3: case 1: indicatorAtTopNow = null; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (indicatorAtTopNow != _this._isIndicatorAtTop) { t1 = _this._refresh_indicator$_mode; if (t1 === B._RefreshIndicatorMode_0 || t1 === B._RefreshIndicatorMode_1) _this._dismiss$1(B._RefreshIndicatorMode_5); } else if (notification instanceof A.ScrollUpdateNotification) { t3 = _this._refresh_indicator$_mode; if (t3 === B._RefreshIndicatorMode_0 || t3 === B._RefreshIndicatorMode_1) { t3 = t2 === B.AxisDirection_2; if (!(t3 && Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) > 0)) t4 = t2 === B.AxisDirection_0 && Math.max(t1.get$maxScrollExtent() - t1.get$pixels(), 0) > 0; else t4 = true; if (t4) _this._dismiss$1(B._RefreshIndicatorMode_5); else { if (t3) { t2 = _this._dragOffset; t2.toString; t3 = notification.scrollDelta; t3.toString; _this._dragOffset = t2 - t3; } else if (t2 === B.AxisDirection_0) { t2 = _this._dragOffset; t2.toString; t3 = notification.scrollDelta; t3.toString; _this._dragOffset = t2 + t3; } t1 = t1._scroll_metrics$_viewportDimension; t1.toString; _this._checkDragOffset$1(t1); } } if (_this._refresh_indicator$_mode === B._RefreshIndicatorMode_1 && notification.dragDetails == null) _this._show$0(); } else if (notification instanceof A.OverscrollNotification) { t3 = _this._refresh_indicator$_mode; if (t3 === B._RefreshIndicatorMode_0 || t3 === B._RefreshIndicatorMode_1) { if (t2 === B.AxisDirection_2) { t2 = _this._dragOffset; t2.toString; _this._dragOffset = t2 - notification.overscroll; } else if (t2 === B.AxisDirection_0) { t2 = _this._dragOffset; t2.toString; _this._dragOffset = t2 + notification.overscroll; } t1 = t1._scroll_metrics$_viewportDimension; t1.toString; _this._checkDragOffset$1(t1); } } else if (notification instanceof A.ScrollEndNotification) switch (_this._refresh_indicator$_mode) { case B._RefreshIndicatorMode_1: _this._show$0(); break; case B._RefreshIndicatorMode_0: _this._dismiss$1(B._RefreshIndicatorMode_5); break; case B._RefreshIndicatorMode_5: case B._RefreshIndicatorMode_4: case B._RefreshIndicatorMode_3: case B._RefreshIndicatorMode_2: case null: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return false; }, _handleGlowNotification$1(notification) { if (notification.ViewportNotificationMixin__depth !== 0 || !notification.leading) return false; if (this._refresh_indicator$_mode === B._RefreshIndicatorMode_0) { notification._accepted = false; return true; } return false; }, _refresh_indicator$_start$1(_, direction) { var _this = this; switch (direction.index) { case 2: case 0: _this._isIndicatorAtTop = true; break; case 3: case 1: _this._isIndicatorAtTop = null; return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._dragOffset = 0; A._lateReadCheck(_this.__RefreshIndicatorState__scaleController, "_scaleController").set$value(0, 0); A._lateReadCheck(_this.__RefreshIndicatorState__positionController, "_positionController").set$value(0, 0); return true; }, _checkDragOffset$1(containerExtent) { var newValue, t2, _this = this, t1 = _this._dragOffset; t1.toString; newValue = t1 / (containerExtent * 0.25); if (_this._refresh_indicator$_mode === B._RefreshIndicatorMode_1) newValue = Math.max(newValue, 0.6666666666666666); A._lateReadCheck(_this.__RefreshIndicatorState__positionController, "_positionController").set$value(0, B.JSNumber_methods.clamp$2(newValue, 0, 1)); if (_this._refresh_indicator$_mode === B._RefreshIndicatorMode_0) { t1 = A._lateReadCheck(_this.__RefreshIndicatorState__valueColor, "_valueColor"); t2 = t1._evaluatable; t1 = t1.parent; t1 = t2.transform$1(0, t1.get$value(t1)); t1.toString; t1 = (J.get$value$x(t1) >>> 24 & 255) === 255; } else t1 = false; if (t1) _this._refresh_indicator$_mode = B._RefreshIndicatorMode_1; }, _dismiss$1(newMode) { return this._dismiss$body$RefreshIndicatorState(newMode); }, _dismiss$body$RefreshIndicatorState(newMode) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$_dismiss$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.Future_Future$value(null, type$.void), $async$_dismiss$1); case 2: // returning from await. $async$self.setState$1(new A.RefreshIndicatorState__dismiss_closure($async$self, newMode)); case 3: // switch switch ($async$self._refresh_indicator$_mode.index) { case 4: // goto case $async$goto = 5; break; case 5: // goto case $async$goto = 6; break; case 1: // goto case $async$goto = 7; break; case 0: // goto case $async$goto = 8; break; case 3: // goto case $async$goto = 9; break; case 2: // goto case $async$goto = 10; break; default: // goto default $async$goto = 11; break; } break; case 5: // case t1 = A._lateReadCheck($async$self.__RefreshIndicatorState__scaleController, "_scaleController"); t1._direction = B._AnimationDirection_0; $async$goto = 12; return A._asyncAwait(t1._animateToInternal$3$curve$duration(1, B.C__Linear, B.Duration_200000), $async$_dismiss$1); case 12: // returning from await. // goto after switch $async$goto = 4; break; case 6: // case t1 = A._lateReadCheck($async$self.__RefreshIndicatorState__positionController, "_positionController"); t1._direction = B._AnimationDirection_0; $async$goto = 13; return A._asyncAwait(t1._animateToInternal$3$curve$duration(0, B.C__Linear, B.Duration_200000), $async$_dismiss$1); case 13: // returning from await. // goto after switch $async$goto = 4; break; case 7: // case case 8: // case case 9: // case case 10: // case // goto after switch $async$goto = 4; break; case 11: // default throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); case 4: // after switch if ($async$self._framework$_element != null && $async$self._refresh_indicator$_mode === newMode) { $async$self._isIndicatorAtTop = $async$self._dragOffset = null; $async$self.setState$1(new A.RefreshIndicatorState__dismiss_closure0($async$self)); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_dismiss$1, $async$completer); }, _show$0() { var t2, t1 = $.Zone__current; this._refresh_indicator$_mode = B._RefreshIndicatorMode_2; t2 = A._lateReadCheck(this.__RefreshIndicatorState__positionController, "_positionController"); t2._direction = B._AnimationDirection_0; t2._animateToInternal$3$curve$duration(0.6666666666666666, B.C__Linear, B.Duration_150000).then$1$1(0, new A.RefreshIndicatorState__show_closure(this, new A._AsyncCompleter(new A._Future(t1, type$._Future_void), type$._AsyncCompleter_void)), type$.void); }, build$1(_, context) { var t3, t4, _this = this, _null = null, t1 = _this._widget.child, t2 = _this._refresh_indicator$_mode, showIndeterminateIndicator = t2 === B._RefreshIndicatorMode_3 || t2 === B._RefreshIndicatorMode_4; t1 = A._setArrayType([new A.NotificationListener(_this.get$_refresh_indicator$_handleScrollNotification(), new A.NotificationListener(_this.get$_handleGlowNotification(), t1, _null, type$.NotificationListener_OverscrollIndicatorNotification), _null, type$.NotificationListener_ScrollNotification)], type$.JSArray_Widget); if (_this._refresh_indicator$_mode != null) { t2 = _this._isIndicatorAtTop; t2.toString; _this._widget.toString; t2 = !t2 ? 0 : _null; t3 = A._lateReadCheck(_this.__RefreshIndicatorState__positionFactor, "_positionFactor"); _this._isIndicatorAtTop.toString; _this._widget.toString; t4 = A._lateReadCheck(_this.__RefreshIndicatorState__scaleFactor, "_scaleFactor"); t1.push(A.Positioned$(t2, A.SizeTransition$(B.Axis_1, 1, A.Container$(B.Alignment_0_m1, A.ScaleTransition$(B.Alignment_0_0, A.AnimatedBuilder$(A._lateReadCheck(_this.__RefreshIndicatorState__positionController, "_positionController"), new A.RefreshIndicatorState_build_closure(_this, showIndeterminateIndicator), _null), t4), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(0, 40, 0, 0), _null, _null, _null), t3), _null, _null, 0, 0, 0, _null)); } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); } }; A.RefreshIndicatorState__handleScrollNotification_closure.prototype = { call$0() { this.$this._refresh_indicator$_mode = B._RefreshIndicatorMode_0; }, $signature: 0 }; A.RefreshIndicatorState__dismiss_closure.prototype = { call$0() { this.$this._refresh_indicator$_mode = this.newMode; }, $signature: 0 }; A.RefreshIndicatorState__dismiss_closure0.prototype = { call$0() { this.$this._refresh_indicator$_mode = null; }, $signature: 0 }; A.RefreshIndicatorState__show_closure.prototype = { call$1(value) { var refreshResult, t1 = this.$this; if (t1._framework$_element != null && t1._refresh_indicator$_mode === B._RefreshIndicatorMode_2) { t1.setState$1(new A.RefreshIndicatorState__show__closure(t1)); refreshResult = t1._widget.onRefresh$0(); if (refreshResult == null) return; refreshResult.whenComplete$1(new A.RefreshIndicatorState__show__closure0(t1, this.completer)); } }, $signature: 86 }; A.RefreshIndicatorState__show__closure.prototype = { call$0() { this.$this._refresh_indicator$_mode = B._RefreshIndicatorMode_3; }, $signature: 0 }; A.RefreshIndicatorState__show__closure0.prototype = { call$0() { var t1 = this.$this; if (t1._framework$_element != null && t1._refresh_indicator$_mode === B._RefreshIndicatorMode_3) { this.completer.complete$0(0); t1._dismiss$1(B._RefreshIndicatorMode_4); } }, $signature: 1 }; A.RefreshIndicatorState_build_closure.prototype = { call$2(context, child) { var t2, t3, t4, _null = null, t1 = this.$this; t1._widget.toString; t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t2 = t2.get$refreshIndicatorSemanticLabel(); t1._widget.toString; if (this.showIndeterminateIndicator) t3 = _null; else { t3 = A._lateReadCheck(t1.__RefreshIndicatorState__value, "_value"); t4 = t3._evaluatable; t3 = t3.parent; t3 = t4.transform$1(0, t3.get$value(t3)); } t4 = A._lateReadCheck(t1.__RefreshIndicatorState__valueColor, "_valueColor"); t1._widget.toString; return new A.RefreshProgressIndicator(2.5, t3, _null, _null, t4, t2, _null, _null); }, $signature: 2288 }; A._RefreshIndicatorState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.ReorderableListView.prototype = { createState$0() { return new A._ReorderableListViewState(B._StateLifecycle_0); }, itemBuilder$2(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); }, onReorder$2(arg0, arg1) { return this.onReorder.call$2(arg0, arg1); } }; A.ReorderableListView_closure.prototype = { call$2(context, index) { return this.children[index]; }, $signature: 159 }; A._ReorderableListViewState.prototype = { _wrapWithSemantics$2(child, index) { var reorderItemBefore, reorderItemAfter, _this = this, _null = null, t1 = new A._ReorderableListViewState__wrapWithSemantics_reorder(_this), semanticsActions = A.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.void_Function), t2 = _this._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; if (index > 0) { semanticsActions.$indexSet(0, new A.CustomSemanticsAction(t2.get$reorderItemToStart(), _null, _null), new A._ReorderableListViewState__wrapWithSemantics_moveToStart(t1, index)); reorderItemBefore = t2.get$reorderItemUp(); _this._widget.toString; semanticsActions.$indexSet(0, new A.CustomSemanticsAction(reorderItemBefore, _null, _null), new A._ReorderableListViewState__wrapWithSemantics_moveBefore(t1, index)); } if (index < _this._widget.itemCount - 1) { reorderItemAfter = t2.get$reorderItemDown(); _this._widget.toString; semanticsActions.$indexSet(0, new A.CustomSemanticsAction(reorderItemAfter, _null, _null), new A._ReorderableListViewState__wrapWithSemantics_moveAfter(t1, index)); semanticsActions.$indexSet(0, new A.CustomSemanticsAction(t2.get$reorderItemToEnd(), _null, _null), new A._ReorderableListViewState__wrapWithSemantics_moveToEnd(_this, t1, index)); } return new A.MergeSemantics(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, semanticsActions, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, child, _null), _null); }, _itemBuilder$2(context, index) { var itemGlobalKey, _this = this, _null = null, item = _this._widget.itemBuilder$2(context, index), itemWithSemantics = _this._wrapWithSemantics$2(item, index), t1 = item.key; t1.toString; itemGlobalKey = new A._ReorderableListViewChildGlobalKey(t1, _this, t1); if (_this._widget.buildDefaultDragHandles) switch (A.Theme_of(context).platform) { case B.TargetPlatform_3: case B.TargetPlatform_5: case B.TargetPlatform_4: _this._widget.toString; switch (1) { case 1: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([itemWithSemantics, A.Positioned_Positioned$directional(0, new A.Align(B.AlignmentDirectional_1_0, _null, _null, new A.ReorderableDragStartListener(B.Icon_m5n, index, true, _null), _null), 8, _null, _null, t1.textDirection, 0, _null)], type$.JSArray_Widget), itemGlobalKey); } case B.TargetPlatform_2: case B.TargetPlatform_0: case B.TargetPlatform_1: return new A.ReorderableDelayedDragStartListener(itemWithSemantics, index, true, itemGlobalKey); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A.KeyedSubtree(itemWithSemantics, itemGlobalKey); }, _proxyDecorator$3(child, index, animation) { return A.AnimatedBuilder$(animation, new A._ReorderableListViewState__proxyDecorator_closure(animation), child); }, build$1(_, context) { var headerPadding, footerPadding, listPadding, t1, t2, t3, t4, t5, t6, t7, _this = this, _null = null; _this._widget.toString; headerPadding = A._Cell$named("headerPadding"); footerPadding = A._Cell$named("footerPadding"); listPadding = A._Cell$named("listPadding"); _this._widget.toString; headerPadding.set$finalLocalValue(B.EdgeInsets_0_0_0_0); footerPadding.set$finalLocalValue(B.EdgeInsets_0_0_0_0); listPadding.set$finalLocalValue(B.EdgeInsets_0_0_0_0); t1 = _this._widget; t2 = t1.scrollController; t3 = t1.primary; t1 = t1.shrinkWrap; t4 = A._setArrayType([], type$.JSArray_Widget); _this._widget.toString; t5 = listPadding._readLocal$0(); t6 = _this._widget; t7 = t6.itemCount; t6 = t6.onReorder; t4.push(new A.SliverPadding(t5, new A.SliverReorderableList(_this.get$_itemBuilder(), t7, t6, _null, _null, _this.get$_proxyDecorator(), _null, _null, _null), _null)); _this._widget.toString; return A.CustomScrollView$(0, _null, B.Clip_1, t2, B.DragStartBehavior_1, B.ScrollViewKeyboardDismissBehavior_0, _null, t3, _null, false, B.Axis_1, t1, t4); } }; A._ReorderableListViewState__wrapWithSemantics_reorder.prototype = { call$2(startIndex, endIndex) { if (startIndex != endIndex) this.$this._widget.onReorder$2(startIndex, endIndex); }, $signature: 325 }; A._ReorderableListViewState__wrapWithSemantics_moveToStart.prototype = { call$0() { return this.reorder.call$2(this.index, 0); }, $signature: 0 }; A._ReorderableListViewState__wrapWithSemantics_moveToEnd.prototype = { call$0() { return this.reorder.call$2(this.index, this.$this._widget.itemCount); }, $signature: 0 }; A._ReorderableListViewState__wrapWithSemantics_moveBefore.prototype = { call$0() { var t1 = this.index; return this.reorder.call$2(t1, t1 - 1); }, $signature: 0 }; A._ReorderableListViewState__wrapWithSemantics_moveAfter.prototype = { call$0() { var t1 = this.index; return this.reorder.call$2(t1, t1 + 2); }, $signature: 0 }; A._ReorderableListViewState__proxyDecorator_closure.prototype = { call$2(context, child) { var _null = null, t1 = A.lerpDouble(0, 6, B.Cubic_xDo.transform$1(0, A._lateReadCheck(this.animation.__AnimationController__value, "_value"))); t1.toString; return A.Material$(B.Duration_200000, true, _null, child, B.Clip_0, _null, t1, _null, _null, _null, _null, _null, B.MaterialType_0); }, $signature: 2282 }; A._ReorderableListViewChildGlobalKey.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._ReorderableListViewChildGlobalKey && J.$eq$(other.subKey, this.subKey) && other.state === this.state; }, get$hashCode(_) { return A.Object_hash(this.subKey, this.state, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._ScaffoldSlot.prototype = { toString$0(_) { return "_ScaffoldSlot." + this._core$_name; } }; A.ScaffoldMessenger.prototype = { createState$0() { var _null = null; return new A.ScaffoldMessengerState(A.LinkedHashSet_LinkedHashSet(type$.ScaffoldState), A.ListQueue$(_null, type$.ScaffoldFeatureController_MaterialBanner_MaterialBannerClosedReason), A.ListQueue$(_null, type$.ScaffoldFeatureController_SnackBar_SnackBarClosedReason), _null, _null, B._StateLifecycle_0); } }; A.ScaffoldMessengerState.prototype = { didChangeDependencies$0() { var _this = this, mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t1 = _this._accessibleNavigation; if (t1 === true) if (!mediaQuery.accessibleNavigation) { t1 = _this._snackBarTimer; t1 = t1 != null && t1._handle == null; } else t1 = false; else t1 = false; if (t1) _this.hideCurrentSnackBar$1$reason(B.SnackBarClosedReason_5); _this._accessibleNavigation = mediaQuery.accessibleNavigation; _this.super$State$didChangeDependencies(); }, hideCurrentSnackBar$1$reason(reason) { var t2, completer, _this = this, _null = null, t1 = _this._snackBars; if (t1._head !== t1._tail) { _null.get$status(_null); t2 = false; } else t2 = true; if (t2) return; completer = t1.get$first(t1)._completer; t1 = _this._accessibleNavigation; t1.toString; if (t1) { _null.set$value(0, 0); completer.complete$1(0, reason); } else _null.reverse$0(0).then$1$1(0, new A.ScaffoldMessengerState_hideCurrentSnackBar_closure(_this, completer, reason), type$.void); t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; }, build$1(_, context) { var t1, route, _this = this; _this._accessibleNavigation = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.accessibleNavigation; t1 = _this._snackBars; if (!t1.get$isEmpty(t1)) { route = A.ModalRoute_of(context, type$.nullable_Object); if (route == null || route.get$isCurrent()) null.get$isCompleted(); } return new A._ScaffoldMessengerScope(_this, _this._widget.child, null); }, dispose$0(_) { var t1 = this._snackBarTimer; if (t1 != null) t1.cancel$0(0); this._snackBarTimer = null; this.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$dispose(0); } }; A.ScaffoldMessengerState_hideCurrentSnackBar_closure.prototype = { call$1(value) { var t1 = this.completer; if ((t1.future._state & 30) === 0) t1.complete$1(0, this.reason); }, $signature: 86 }; A._ScaffoldMessengerScope.prototype = { updateShouldNotify$1(old) { return this._scaffoldMessengerState !== old._scaffoldMessengerState; } }; A.ScaffoldPrelayoutGeometry.prototype = {}; A._TransitionSnapshotFabLocation.prototype = { getOffset$1(scaffoldGeometry) { var _this = this; return _this.animator.getOffset$3$begin$end$progress(_this.begin.getOffset$1(scaffoldGeometry), _this.end.getOffset$1(scaffoldGeometry), _this.progress); }, toString$0(_) { return "_TransitionSnapshotFabLocation(begin: " + A.S(this.begin) + ", end: " + A.S(this.end) + ", progress: " + A.S(this.progress) + ")"; } }; A.ScaffoldGeometry.prototype = { _scaleFloatingActionButton$1(scaleFactor) { var t1, t2, t3, _this = this; if (scaleFactor === 1) return _this; if (scaleFactor === 0) return new A.ScaffoldGeometry(_this.bottomNavigationBarTop, null); t1 = _this.floatingActionButtonArea; t2 = t1.get$center(); t3 = t2._dx; t2 = t2._dy; t1 = A.Rect_lerp(new A.Rect(t3, t2, t3 + 0, t2 + 0), t1, scaleFactor); t1.toString; return _this.copyWith$1$floatingActionButtonArea(t1); }, copyWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, floatingActionButtonArea) { var t1 = bottomNavigationBarTop == null ? this.bottomNavigationBarTop : bottomNavigationBarTop; return new A.ScaffoldGeometry(t1, floatingActionButtonArea == null ? this.floatingActionButtonArea : floatingActionButtonArea); }, copyWith$1$floatingActionButtonArea(floatingActionButtonArea) { return this.copyWith$2$bottomNavigationBarTop$floatingActionButtonArea(null, floatingActionButtonArea); } }; A._ScaffoldGeometryNotifier.prototype = { get$value(_) { var t1 = this.geometry, t2 = this.floatingActionButtonScale; t2.toString; return t1._scaleFloatingActionButton$1(t2); }, _updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale(bottomNavigationBarTop, floatingActionButtonArea, floatingActionButtonScale) { var _this = this; _this.floatingActionButtonScale = floatingActionButtonScale == null ? _this.floatingActionButtonScale : floatingActionButtonScale; _this.geometry = _this.geometry.copyWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, floatingActionButtonArea); _this.notifyListeners$0(); }, _updateWith$1$floatingActionButtonScale(floatingActionButtonScale) { return this._updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale(null, null, floatingActionButtonScale); }, _updateWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, floatingActionButtonArea) { return this._updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale(bottomNavigationBarTop, floatingActionButtonArea, null); } }; A._BodyBoxConstraints.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (!_this.super$BoxConstraints$$eq(0, other)) return false; return other instanceof A._BodyBoxConstraints && other.materialBannerHeight == _this.materialBannerHeight && other.bottomWidgetsHeight === _this.bottomWidgetsHeight && other.appBarHeight == _this.appBarHeight; }, get$hashCode(_) { var _this = this; return A.Object_hash(A.BoxConstraints.prototype.get$hashCode.call(_this, _this), _this.materialBannerHeight, _this.bottomWidgetsHeight, _this.appBarHeight, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._BodyBuilder.prototype = { build$1(_, context) { return this.body; }, get$body(receiver) { return this.body; } }; A._ScaffoldLayout.prototype = { performLayout$1(size) { var appBarHeight, contentTop, bottomWidgetsHeight, bottomNavigationBarTop, materialBannerSize, t2, contentBottom, bodyMaxHeight, t3, t4, snackBarSize, bottomSheetSize, floatingActionButtonRect, fabSize, currentGeometry, currentFabOffset, fabOffset, snackBarYOffsetBase, _this = this, looseConstraints = A.BoxConstraints$loose(size), t1 = size._dx, fullWidthConstraints = looseConstraints.tighten$1$width(t1), bottom = size._dy; if (_this._idToChild.$index(0, B._ScaffoldSlot_1) != null) { appBarHeight = _this.layoutChild$2(B._ScaffoldSlot_1, fullWidthConstraints)._dy; _this.positionChild$2(B._ScaffoldSlot_1, B.Offset_0_0); contentTop = appBarHeight; } else { contentTop = 0; appBarHeight = 0; } if (_this._idToChild.$index(0, B._ScaffoldSlot_7) != null) { bottomWidgetsHeight = 0 + _this.layoutChild$2(B._ScaffoldSlot_7, fullWidthConstraints)._dy; bottomNavigationBarTop = Math.max(0, bottom - bottomWidgetsHeight); _this.positionChild$2(B._ScaffoldSlot_7, new A.Offset(0, bottomNavigationBarTop)); } else { bottomWidgetsHeight = 0; bottomNavigationBarTop = null; } if (_this._idToChild.$index(0, B._ScaffoldSlot_6) != null) { bottomWidgetsHeight += _this.layoutChild$2(B._ScaffoldSlot_6, new A.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, Math.max(0, bottom - bottomWidgetsHeight - contentTop)))._dy; _this.positionChild$2(B._ScaffoldSlot_6, new A.Offset(0, Math.max(0, bottom - bottomWidgetsHeight))); } if (_this._idToChild.$index(0, B._ScaffoldSlot_5) != null) { materialBannerSize = _this.layoutChild$2(B._ScaffoldSlot_5, fullWidthConstraints); _this.positionChild$2(B._ScaffoldSlot_5, new A.Offset(0, appBarHeight)); if (!_this.extendBodyBehindMaterialBanner) contentTop += materialBannerSize._dy; } else materialBannerSize = B.Size_0_0; t2 = _this.minInsets; contentBottom = Math.max(0, bottom - Math.max(A.checkNum(t2.bottom), bottomWidgetsHeight)); if (_this._idToChild.$index(0, B._ScaffoldSlot_0) != null) { bodyMaxHeight = Math.max(0, contentBottom - contentTop); t3 = _this.extendBody; if (t3) bodyMaxHeight = B.JSNumber_methods.clamp$2(bodyMaxHeight + bottomWidgetsHeight, 0, looseConstraints.maxHeight - contentTop); t4 = materialBannerSize._dy; t3 = t3 ? bottomWidgetsHeight : 0; _this.layoutChild$2(B._ScaffoldSlot_0, new A._BodyBoxConstraints(t3, appBarHeight, t4, 0, fullWidthConstraints.maxWidth, 0, bodyMaxHeight)); _this.positionChild$2(B._ScaffoldSlot_0, new A.Offset(0, contentTop)); } if (_this._idToChild.$index(0, B._ScaffoldSlot_2) != null) { _this.layoutChild$2(B._ScaffoldSlot_2, new A.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, contentBottom)); _this.positionChild$2(B._ScaffoldSlot_2, B.Offset_0_0); } snackBarSize = _this._idToChild.$index(0, B._ScaffoldSlot_4) != null && !_this.isSnackBarFloating ? _this.layoutChild$2(B._ScaffoldSlot_4, fullWidthConstraints) : B.Size_0_0; if (_this._idToChild.$index(0, B._ScaffoldSlot_3) != null) { bottomSheetSize = _this.layoutChild$2(B._ScaffoldSlot_3, new A.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, Math.max(0, contentBottom - contentTop))); _this.positionChild$2(B._ScaffoldSlot_3, new A.Offset((t1 - bottomSheetSize._dx) / 2, contentBottom - bottomSheetSize._dy)); } else bottomSheetSize = B.Size_0_0; floatingActionButtonRect = A._Cell$named("floatingActionButtonRect"); if (_this._idToChild.$index(0, B._ScaffoldSlot_8) != null) { fabSize = _this.layoutChild$2(B._ScaffoldSlot_8, looseConstraints); currentGeometry = new A.ScaffoldPrelayoutGeometry(fabSize, bottomSheetSize, contentBottom, appBarHeight, t2, _this.minViewPadding, size, snackBarSize, _this.textDirection); currentFabOffset = _this.currentFloatingActionButtonLocation.getOffset$1(currentGeometry); fabOffset = _this.floatingActionButtonMotionAnimator.getOffset$3$begin$end$progress(_this.previousFloatingActionButtonLocation.getOffset$1(currentGeometry), currentFabOffset, _this.floatingActionButtonMoveAnimationProgress); _this.positionChild$2(B._ScaffoldSlot_8, fabOffset); t1 = fabOffset._dx; t3 = fabOffset._dy; floatingActionButtonRect.__late_helper$_value = new A.Rect(t1, t3, t1 + fabSize._dx, t3 + fabSize._dy); } if (_this._idToChild.$index(0, B._ScaffoldSlot_4) != null) { if (J.$eq$(snackBarSize, B.Size_0_0)) snackBarSize = _this.layoutChild$2(B._ScaffoldSlot_4, fullWidthConstraints); t1 = floatingActionButtonRect._readLocal$0(); if (!new A.Size(t1.right - t1.left, t1.bottom - t1.top).$eq(0, B.Size_0_0) && _this.isSnackBarFloating) snackBarYOffsetBase = floatingActionButtonRect._readLocal$0().top; else snackBarYOffsetBase = _this.isSnackBarFloating ? Math.min(contentBottom, bottom - _this.minViewPadding.bottom) : contentBottom; _this.positionChild$2(B._ScaffoldSlot_4, new A.Offset(0, snackBarYOffsetBase - snackBarSize._dy)); } if (_this._idToChild.$index(0, B._ScaffoldSlot_11) != null) { _this.layoutChild$2(B._ScaffoldSlot_11, fullWidthConstraints.tighten$1$height(t2.top)); _this.positionChild$2(B._ScaffoldSlot_11, B.Offset_0_0); } if (_this._idToChild.$index(0, B._ScaffoldSlot_9) != null) { _this.layoutChild$2(B._ScaffoldSlot_9, A.BoxConstraints$tight(size)); _this.positionChild$2(B._ScaffoldSlot_9, B.Offset_0_0); } if (_this._idToChild.$index(0, B._ScaffoldSlot_10) != null) { _this.layoutChild$2(B._ScaffoldSlot_10, A.BoxConstraints$tight(size)); _this.positionChild$2(B._ScaffoldSlot_10, B.Offset_0_0); } _this.geometryNotifier._updateWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, floatingActionButtonRect._readLocal$0()); }, shouldRelayout$1(oldDelegate) { var _this = this; return !oldDelegate.minInsets.$eq(0, _this.minInsets) || oldDelegate.textDirection != _this.textDirection || oldDelegate.floatingActionButtonMoveAnimationProgress !== _this.floatingActionButtonMoveAnimationProgress || oldDelegate.previousFloatingActionButtonLocation != _this.previousFloatingActionButtonLocation || oldDelegate.currentFloatingActionButtonLocation != _this.currentFloatingActionButtonLocation || oldDelegate.extendBody !== _this.extendBody || false; } }; A._FloatingActionButtonTransition.prototype = { createState$0() { return new A._FloatingActionButtonTransitionState(null, null, B._StateLifecycle_0); } }; A._FloatingActionButtonTransitionState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A.AnimationController$(null, B.Duration_200000, null, 1, null, _this); t1.addStatusListener$1(_this.get$_handlePreviousAnimationStatusChanged()); _this.___FloatingActionButtonTransitionState__previousController = t1; _this._scaffold$_updateAnimations$0(); t1 = _this._widget; if (t1.child != null) t1.currentController.set$value(0, 1); else t1.geometryNotifier._updateWith$1$floatingActionButtonScale(0); }, dispose$0(_) { A._lateReadCheck(this.___FloatingActionButtonTransitionState__previousController, "_previousController").dispose$0(0); this.super$__FloatingActionButtonTransitionState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, oldChildIsNull, t2, newChildIsNull, t3, _this = this, _s19_ = "_previousController"; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.child; oldChildIsNull = t1 == null; t2 = _this._widget.child; newChildIsNull = t2 == null; if (oldChildIsNull === newChildIsNull) { t3 = oldChildIsNull ? null : t1.key; t2 = J.$eq$(t3, newChildIsNull ? null : t2.key); } else t2 = false; if (t2) return; t2 = oldWidget.fabMotionAnimator; t3 = _this._widget; if (t2 !== t3.fabMotionAnimator || oldWidget.fabMoveAnimation !== t3.fabMoveAnimation) _this._scaffold$_updateAnimations$0(); if (A._lateReadCheck(A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousController, _s19_).__AnimationController__status, "_status") === B.AnimationStatus_0) { t2 = A._lateReadCheck(_this._widget.currentController.__AnimationController__value, "_value"); if (t2 === 0 || oldChildIsNull) { _this._previousChild = null; t1 = _this._widget; if (t1.child != null) t1.currentController.forward$0(0); } else { _this._previousChild = t1; t1 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousController, _s19_); t1.set$value(0, t2); t1.reverse$0(0); _this._widget.currentController.set$value(0, 0); } } }, _scaffold$_updateAnimations$0() { var t7, t8, t9, t10, moveScaleAnimation, t11, t12, moveRotationAnimation, _this = this, _null = null, _s19_ = "_previousController", _s22_ = "_currentScaleAnimation", previousExitScaleAnimation = A.CurvedAnimation$(B.Cubic_JUR0, A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousController, _s19_), _null), t1 = type$.Tween_double, t2 = A.CurvedAnimation$(B.Cubic_JUR0, A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousController, _s19_), _null), currentEntranceScaleAnimation = A.CurvedAnimation$(B.Cubic_JUR0, _this._widget.currentController, _null), t3 = _this._widget, t4 = t3.currentController, t5 = $.$get$_FloatingActionButtonTransitionState__entranceTurnTween(), t6 = type$.Animation_double; t6._as(t4); t5.toString; t3 = t3.fabMoveAnimation; t6._as(t3); t7 = type$.CurveTween._eval$1("_AnimatedEvaluation"); t8 = type$.JSArray_of_void_Function_AnimationStatus; t9 = type$.ObserverList_of_void_Function_AnimationStatus; t10 = type$.double; moveScaleAnimation = A._AnimationSwap$(new A.ReverseAnimation(new A._AnimatedEvaluation(t3, new A.CurveTween(new A.FlippedCurve(B.Interval_E4y)), t7), new A.ObserverList(A._setArrayType([], t8), t9), 0), new A._AnimatedEvaluation(t3, new A.CurveTween(B.Interval_E4y), t7), t3, 0.5, t10); t3 = _this._widget.fabMoveAnimation; t11 = $.$get$_ScalingFabMotionAnimator__rotationTween(); t6._as(t3); t11.toString; t12 = $.$get$_ScalingFabMotionAnimator__thresholdCenterTween(); t12.toString; moveRotationAnimation = A._AnimationSwap$(new A._AnimatedEvaluation(t3, t11, t11.$ti._eval$1("_AnimatedEvaluation")), new A.ReverseAnimation(new A._AnimatedEvaluation(t3, t12, A._instanceType(t12)._eval$1("_AnimatedEvaluation")), new A.ObserverList(A._setArrayType([], t8), t9), 0), t3, 0.5, t10); _this.___FloatingActionButtonTransitionState__previousScaleAnimation = A.AnimationMin$(moveScaleAnimation, previousExitScaleAnimation, t10); t10 = A.AnimationMin$(moveScaleAnimation, currentEntranceScaleAnimation, t10); _this.___FloatingActionButtonTransitionState__currentScaleAnimation = t10; _this.___FloatingActionButtonTransitionState__extendedCurrentScaleAnimation = new A._AnimatedEvaluation(t6._as(A._lateReadCheck(t10, _s22_)), new A.CurveTween(B.Interval_75R1), t7); _this.___FloatingActionButtonTransitionState__previousRotationAnimation = A.TrainHoppingAnimation$(new A._AnimatedEvaluation(t2, new A.Tween(1, 1, t1), t1._eval$1("_AnimatedEvaluation")), moveRotationAnimation, _null); _this.___FloatingActionButtonTransitionState__currentRotationAnimation = A.TrainHoppingAnimation$(new A._AnimatedEvaluation(t4, t5, t5.$ti._eval$1("_AnimatedEvaluation")), moveRotationAnimation, _null); t5 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__currentScaleAnimation, _s22_); t4 = _this.get$_onProgressChanged(); t5.didRegisterListener$0(); t5 = t5.AnimationLocalListenersMixin__listeners; t5._isDirty = true; t5._observer_list$_list.push(t4); t5 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousScaleAnimation, "_previousScaleAnimation"); t5.didRegisterListener$0(); t5 = t5.AnimationLocalListenersMixin__listeners; t5._isDirty = true; t5._observer_list$_list.push(t4); }, _handlePreviousAnimationStatusChanged$1($status) { this.setState$1(new A._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure(this, $status)); }, build$1(_, context) { var t2, t3, _this = this, t1 = A._setArrayType([], type$.JSArray_Widget); if (A._lateReadCheck(A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousController, "_previousController").__AnimationController__status, "_status") !== B.AnimationStatus_0) { t2 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousScaleAnimation, "_previousScaleAnimation"); t3 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__previousRotationAnimation, "_previousRotationAnimation"); t1.push(A.ScaleTransition$(B.Alignment_0_0, A.RotationTransition$(B.Alignment_0_0, _this._previousChild, t3), t2)); } _this._widget.toString; t2 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__currentScaleAnimation, "_currentScaleAnimation"); t3 = A._lateReadCheck(_this.___FloatingActionButtonTransitionState__currentRotationAnimation, "_currentRotationAnimation"); t1.push(A.ScaleTransition$(B.Alignment_0_0, A.RotationTransition$(B.Alignment_0_0, _this._widget.child, t3), t2)); return new A.Stack(B.Alignment_1_0, null, B.StackFit_0, B.Clip_1, t1, null); }, _onProgressChanged$0() { var t3, t1 = A._lateReadCheck(this.___FloatingActionButtonTransitionState__previousScaleAnimation, "_previousScaleAnimation"), t2 = t1.first; t2 = t2.get$value(t2); t1 = t1.next; t1 = t1.get$value(t1); t1 = Math.min(A.checkNum(t2), A.checkNum(t1)); t2 = A._lateReadCheck(this.___FloatingActionButtonTransitionState__currentScaleAnimation, "_currentScaleAnimation"); t3 = t2.first; t3 = t3.get$value(t3); t2 = t2.next; t2 = t2.get$value(t2); t2 = Math.max(t1, Math.min(A.checkNum(t3), A.checkNum(t2))); this._widget.geometryNotifier._updateWith$1$floatingActionButtonScale(t2); } }; A._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure.prototype = { call$0() { if (this.status === B.AnimationStatus_0) { var t1 = this.$this._widget; if (t1.child != null) t1.currentController.forward$0(0); } }, $signature: 0 }; A.Scaffold.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_DrawerControllerState, t2 = $.$get$ChangeNotifier__emptyListeners(); return new A.ScaffoldState(new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), new A.RestorableBool(false, t2), new A.RestorableBool(false, t2), A.ListQueue$(_null, type$.ScaffoldFeatureController_SnackBar_SnackBarClosedReason), A._setArrayType([], type$.JSArray__StandardBottomSheet), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), B.Color_4278190080, _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, _null, B._StateLifecycle_0); }, get$body(receiver) { return this.body; } }; A.ScaffoldState.prototype = { get$restorationId() { this._widget.toString; return null; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this._drawerOpened, "drawer_open"); _this.registerForRestoration$2(_this._endDrawerOpened, "end_drawer_open"); }, _drawerOpenedCallback$1(isOpened) { var _this = this; if (!J.$eq$(_this._drawerOpened._restoration_properties$_value, isOpened)) { _this.setState$1(new A.ScaffoldState__drawerOpenedCallback_closure(_this, isOpened)); _this._widget.toString; } }, _endDrawerOpenedCallback$1(isOpened) { var _this = this; if (!J.$eq$(_this._endDrawerOpened._restoration_properties$_value, isOpened)) { _this.setState$1(new A.ScaffoldState__endDrawerOpenedCallback_closure(_this, isOpened)); _this._widget.toString; } }, openDrawer$0() { var t1 = this._endDrawerKey; if (t1.get$currentState() != null && this._endDrawerOpened._restoration_properties$_value) t1.get$currentState().close$0(0); t1 = this._drawerKey.get$currentState(); if (t1 != null) t1.open$0(0); }, openEndDrawer$0() { var t1 = this._drawerKey; if (t1.get$currentState() != null && this._drawerOpened._restoration_properties$_value) t1.get$currentState().close$0(0); t1 = this._endDrawerKey.get$currentState(); if (t1 != null) t1.open$0(0); }, hideCurrentSnackBar$1$reason(reason) { var t1, t2, mediaQuery, completer, _this = this, _null = null; if (_this._messengerSnackBar != null) { _this._scaffoldMessenger.hideCurrentSnackBar$1$reason(reason); return; } t1 = _this._snackBars; if (t1._head !== t1._tail) { _null.get$status(_null); t2 = false; } else t2 = true; if (t2) return; mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; completer = t1.get$first(t1)._completer; if (mediaQuery.accessibleNavigation) { _null.set$value(0, 0); completer.complete$1(0, reason); } else _null.reverse$0(0).then$1$1(0, new A.ScaffoldState_hideCurrentSnackBar_closure(_this, completer, reason), type$.void); t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; }, _updateSnackBar$0() { var messengerSnackBar, _this = this, t1 = _this._scaffoldMessenger._snackBars; if (!t1.get$isEmpty(t1)) { t1 = _this._scaffoldMessenger._snackBars; messengerSnackBar = t1.get$first(t1); } else messengerSnackBar = null; if (_this._messengerSnackBar != messengerSnackBar) _this.setState$1(new A.ScaffoldState__updateSnackBar_closure(_this, messengerSnackBar)); }, _updateMaterialBanner$0() { var messengerMaterialBanner, _this = this, t1 = _this._scaffoldMessenger._materialBanners; if (!t1.get$isEmpty(t1)) { t1 = _this._scaffoldMessenger._materialBanners; messengerMaterialBanner = t1.get$first(t1); } else messengerMaterialBanner = null; if (_this._messengerMaterialBanner != messengerMaterialBanner) _this.setState$1(new A.ScaffoldState__updateMaterialBanner_closure(_this, messengerMaterialBanner)); }, _maybeBuildPersistentBottomSheet$0() { this._widget.toString; }, _closeCurrentBottomSheet$0() { var t1 = this._currentBottomSheet; if (t1 != null) if (!t1._isLocalHistoryEntry) t1.close.call$0(); }, _buildBottomSheet$1$10$animationController$backgroundColor$clipBehavior$constraints$elevation$enableDrag$shape$shouldDisposeAnimationController(builder, isPersistent, animationController, backgroundColor, clipBehavior, constraints, elevation, enableDrag, shape, shouldDisposeAnimationController, $T) { var t2, entry, t3, t4, _this = this, t1 = {}, completer = new A._AsyncCompleter(new A._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncCompleter<0>")), bottomSheetKey = new A.LabeledGlobalKey(null, type$.LabeledGlobalKey__StandardBottomSheetState), bottomSheet = A._Cell$named("bottomSheet"); t1.doingDispose = t1.removedEntry = false; t2 = new A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet(t1, _this, bottomSheet, bottomSheetKey, animationController, completer); entry = isPersistent ? null : new A.LocalHistoryEntry(new A.ScaffoldState__buildBottomSheet_closure(t1, _this, bottomSheet, t2)); t3 = new A.ScaffoldState__buildBottomSheet__removeEntryIfNeeded(t1, isPersistent, entry); t4 = !isPersistent; bottomSheet.__late_helper$_value = new A._StandardBottomSheet(animationController, t4, new A.ScaffoldState__buildBottomSheet_closure0(_this, bottomSheet, t3), new A.ScaffoldState__buildBottomSheet_closure1(_this, bottomSheet), new A.ScaffoldState__buildBottomSheet_closure2(t1, t3, shouldDisposeAnimationController, animationController), builder, backgroundColor, elevation, shape, clipBehavior, constraints, bottomSheetKey); if (t4) { t1 = _this._framework$_element; t1.toString; t1 = A.ModalRoute_of(t1, type$.nullable_Object); t1.toString; entry.toString; t1.addLocalHistoryEntry$1(entry); } t1 = bottomSheet._readLocal$0(); if (entry != null) t2 = entry.get$remove(entry); return new A.PersistentBottomSheetController(t4, t1, completer, t2, $T._eval$1("PersistentBottomSheetController<0>")); }, showBottomSheet$1$1(builder, $T) { var controller, t1, _this = this, _null = null; _this._closeCurrentBottomSheet$0(); controller = A.AnimationController$("BottomSheet", B.Duration_250000, B.Duration_200000, 1, _null, _this); controller.forward$0(0); _this.setState$1(new A.ScaffoldState_showBottomSheet_closure(_this, builder, controller, _null, _null, _null, _null, _null, _null, _null, $T)); t1 = _this._currentBottomSheet; t1.toString; return $T._eval$1("PersistentBottomSheetController<0>")._as(t1); }, set$_floatingActionButtonVisibilityValue(newValue) { var _s41_ = string$.x5ffloat; A._lateReadCheck(this.__ScaffoldState__floatingActionButtonVisibilityController, _s41_).set$value(0, B.JSNumber_methods.clamp$2(newValue, A._lateReadCheck(this.__ScaffoldState__floatingActionButtonVisibilityController, _s41_).lowerBound, A._lateReadCheck(this.__ScaffoldState__floatingActionButtonVisibilityController, _s41_).upperBound)); }, _moveFloatingActionButton$1(newLocation) { var t2, t3, restartAnimationFrom, _this = this, _s35_ = "_floatingActionButtonMoveController", _s29_ = "_floatingActionButtonAnimator", t1 = {}; t1.previousLocation = _this._floatingActionButtonLocation; t2 = A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_)._ticker; if (t2 != null && t2._ticker$_future != null) { t2 = _this._previousFloatingActionButtonLocation; t2.toString; t3 = _this._floatingActionButtonLocation; t3.toString; t1.previousLocation = new A._TransitionSnapshotFabLocation(t2, t3, A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonAnimator, _s29_), A._lateReadCheck(A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_).__AnimationController__value, "_value")); A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonAnimator, _s29_); t3 = A._lateReadCheck(A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_).__AnimationController__value, "_value"); restartAnimationFrom = Math.min(1 - t3, t3); } else restartAnimationFrom = 0; _this.setState$1(new A.ScaffoldState__moveFloatingActionButton_closure(t1, _this, newLocation)); A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_).forward$1$from(0, restartAnimationFrom); }, _handleStatusBarTap$0() { var primaryScrollController, t1 = this._framework$_element; t1.toString; primaryScrollController = A.PrimaryScrollController_of(t1); if (primaryScrollController != null && primaryScrollController._positions.length !== 0) primaryScrollController.animateTo$3$curve$duration(0, B.Cubic_YAz, B.Duration_1000000); }, get$_resizeToAvoidBottomInset() { this._widget.toString; return true; }, initState$0() { var t1, _this = this, _null = null; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; _this.__ScaffoldState__geometryNotifier = new A._ScaffoldGeometryNotifier(t1, B.ScaffoldGeometry_null_null, $.$get$ChangeNotifier__emptyListeners()); t1 = _this._widget.floatingActionButtonLocation; if (t1 == null) t1 = B.C__EndFloatFabLocation; _this._floatingActionButtonLocation = t1; _this.__ScaffoldState__floatingActionButtonAnimator = B.C__ScalingFabMotionAnimator; _this._previousFloatingActionButtonLocation = t1; _this.__ScaffoldState__floatingActionButtonMoveController = A.AnimationController$(_null, new A.Duration(400000), _null, 1, 1, _this); _this.__ScaffoldState__floatingActionButtonVisibilityController = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, _this); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; t1 = t1.floatingActionButtonLocation; if (t1 != oldWidget.floatingActionButtonLocation) _this._moveFloatingActionButton$1(t1 == null ? B.C__EndFloatFabLocation : t1); _this._widget.toString; }, didChangeDependencies$0() { var t3, $parent, mediaQuery, _this = this, scope = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._ScaffoldMessengerScope), currentScaffoldMessenger = scope == null ? null : scope._scaffoldMessengerState, t1 = _this._scaffoldMessenger, t2 = t1 == null; if (!t2) t3 = currentScaffoldMessenger == null || t1 !== currentScaffoldMessenger; else t3 = false; if (t3) if (!t2) t1._scaffolds.remove$1(0, _this); _this._scaffoldMessenger = currentScaffoldMessenger; if (currentScaffoldMessenger != null) { t1 = currentScaffoldMessenger._scaffolds; t1.add$1(0, _this); $parent = _this._framework$_element.findAncestorStateOfType$1$0(type$.ScaffoldState); if ($parent == null || !t1.contains$1(0, $parent)) { t1 = currentScaffoldMessenger._snackBars; if (!t1.get$isEmpty(t1)) _this._updateSnackBar$0(); t1 = currentScaffoldMessenger._materialBanners; if (!t1.get$isEmpty(t1)) _this._updateMaterialBanner$0(); } } mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t1 = _this._accessibleNavigation; if (t1 === true) if (!mediaQuery.accessibleNavigation) { t1 = _this._snackBarTimer; t1 = t1 != null && t1._handle == null; } else t1 = false; else t1 = false; if (t1) _this.hideCurrentSnackBar$1$reason(B.SnackBarClosedReason_5); _this._accessibleNavigation = mediaQuery.accessibleNavigation; _this._maybeBuildPersistentBottomSheet$0(); _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); }, dispose$0(_) { var _this = this, t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; t1 = A._lateReadCheck(_this.__ScaffoldState__geometryNotifier, "_geometryNotifier"); t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, "_floatingActionButtonMoveController").dispose$0(0); A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonVisibilityController, string$.x5ffloat).dispose$0(0); t1 = _this._scaffoldMessenger; if (t1 != null) t1._scaffolds.remove$1(0, _this); _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, _addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, maintainBottomViewPadding, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { var data = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.removePadding$4$removeBottom$removeLeft$removeRight$removeTop(removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); if (removeBottomInset) data = data.removeViewInsets$1$removeBottom(true); if (maintainBottomViewPadding && data.viewInsets.bottom !== 0) data = data.copyWith$1$padding(data.padding.copyWith$1$bottom(data.viewPadding.bottom)); if (child != null) children.push(A.LayoutId$(new A.MediaQuery(data, child, null), childId)); }, _addIfNonNull$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, false, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, false, false, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, maintainBottomViewPadding, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, maintainBottomViewPadding, false, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _buildEndDrawer$2(children, textDirection) { var _this = this, t1 = _this._widget.endDrawer; if (t1 != null) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new A.DrawerController(t1, B.DrawerAlignment_1, _this.get$_endDrawerOpenedCallback(), B.DragStartBehavior_1, null, true, null, _this._endDrawerOpened._restoration_properties$_value, _this._endDrawerKey), B._ScaffoldSlot_10, false, textDirection === B.TextDirection_1, textDirection === B.TextDirection_0, false); }, _buildDrawer$2(children, textDirection) { var _this = this, t1 = _this._widget.drawer; if (t1 != null) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new A.DrawerController(t1, B.DrawerAlignment_0, _this.get$_drawerOpenedCallback(), B.DragStartBehavior_1, null, true, null, _this._drawerOpened._restoration_properties$_value, _this._drawerKey), B._ScaffoldSlot_9, false, textDirection === B.TextDirection_0, textDirection === B.TextDirection_1, false); }, showBodyScrim$2(value, opacity) { var _this = this; if (_this._showBodyScrim === value && (_this._bodyScrimColor.value >>> 24 & 255) / 255 === opacity) return; _this.setState$1(new A.ScaffoldState_showBodyScrim_closure(_this, value, opacity)); }, build$1(_, context) { var textDirection, route, t2, children, t3, t4, snackBarWidth, bannerTheme, elevation, minInsets, minViewPadding, _this = this, _null = null, _s35_ = "_floatingActionButtonMoveController", _s17_ = "_geometryNotifier", _box_0 = {}, mediaQuery = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, themeData = A.Theme_of(context), t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; _this._accessibleNavigation = mediaQuery.accessibleNavigation; t1 = _this._snackBars; if (!t1.get$isEmpty(t1)) { route = A.ModalRoute_of(context, type$.nullable_Object); if (route == null || route.get$isCurrent()) _null.get$isCompleted(); else { t2 = _this._snackBarTimer; if (t2 != null) t2.cancel$0(0); _this._snackBarTimer = null; } } children = A._setArrayType([], type$.JSArray_LayoutId); t2 = _this._widget; t3 = t2.body; t3 = t3 == null ? _null : new A._BodyBuilder(t3, false, false, _null); t4 = t2.appBar; t2 = t2.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t3, B._ScaffoldSlot_0, true, t2, false, false, t4 != null); if (_this._showBodyScrim) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, A.ModalBarrier$(true, _this._bodyScrimColor, false, _null), B._ScaffoldSlot_2, true, true, true, true); t2 = _this._widget.appBar; if (t2 != null) { t2 = _this._appBarMaxHeight = A.AppBar_preferredHeightFor(context, t2.preferredSize) + mediaQuery.padding.top; t3 = _this._widget.appBar; t3.toString; _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new A.ConstrainedBox(new A.BoxConstraints(0, 1 / 0, 0, t2), A.FlexibleSpaceBar_createSettings(t3, t2, _null, _null, _null, _null), _null), B._ScaffoldSlot_1, true, false, false, false); } _box_0.isSnackBarFloating = false; _box_0.snackBarWidth = null; if (_this._currentBottomSheet != null || _this._dismissedBottomSheets.length !== 0) { t2 = A.List_List$of(_this._dismissedBottomSheets, true, type$.Widget); t3 = _this._currentBottomSheet; if (t3 != null) t2.push(t3._scaffold$_widget); _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new A.Stack(B.Alignment_0_1, _null, B.StackFit_0, B.Clip_1, t2, _null), B._ScaffoldSlot_3, true, false, false, true); } t2 = _this._messengerSnackBar; if (t2 != null) { t2._scaffold$_widget.get$behavior(); themeData.toString; _box_0.isSnackBarFloating = false; t2 = _this._messengerSnackBar; if (t2 == null) snackBarWidth = _null; else { t2 = t2._scaffold$_widget; snackBarWidth = t2.get$width(t2); } _box_0.snackBarWidth = snackBarWidth; t2 = _this._messengerSnackBar; t2 = t2 == null ? _null : t2._scaffold$_widget; t3 = _this._widget.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t2, B._ScaffoldSlot_4, false, t3, false, false, true); } if (!t1.get$isEmpty(t1)) { t1.get$first(t1)._scaffold$_widget.get$behavior(); _box_0.isSnackBarFloating = false; t2 = t1.get$first(t1)._scaffold$_widget; _box_0.snackBarWidth = t2.get$width(t2); t1 = t1.get$first(t1)._scaffold$_widget; t2 = _this._widget.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t1, B._ScaffoldSlot_4, false, t2, false, false, true); } _box_0.extendBodyBehindMaterialBanner = false; if (_this._messengerMaterialBanner != null) { context.dependOnInheritedWidgetOfExactType$1$0(type$.MaterialBannerTheme); bannerTheme = A.Theme_of(context).bannerTheme; t1 = _this._messengerMaterialBanner; t2 = t1 == null; if (!t2) t1._scaffold$_widget.toString; elevation = bannerTheme.elevation; _box_0.extendBodyBehindMaterialBanner = (elevation == null ? 0 : elevation) !== 0; t1 = t2 ? _null : t1._scaffold$_widget; t2 = _this._widget.appBar; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t1, B._ScaffoldSlot_5, false, true, false, false, t2 != null); } t1 = _this._widget; t1 = t1.bottomNavigationBar; if (t1 != null) { _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t1, B._ScaffoldSlot_7, false, false, false, false, true); } t1 = A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_); t2 = A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonAnimator, "_floatingActionButtonAnimator"); t3 = A._lateReadCheck(_this.__ScaffoldState__geometryNotifier, _s17_); t4 = A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonVisibilityController, string$.x5ffloat); _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new A._FloatingActionButtonTransition(_this._widget.floatingActionButton, t1, t2, t3, t4, _null), B._ScaffoldSlot_8, true, true, true, true); switch (themeData.platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, A.GestureDetector$(B.HitTestBehavior_1, _null, B.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_handleStatusBarTap(), _null, _null, _null, _null, _null, _null), B._ScaffoldSlot_11, true, false, false, true); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (_this._endDrawerOpened._restoration_properties$_value) { _this._buildDrawer$2(children, textDirection); _this._buildEndDrawer$2(children, textDirection); } else { _this._buildEndDrawer$2(children, textDirection); _this._buildDrawer$2(children, textDirection); } _this.get$_resizeToAvoidBottomInset(); t1 = mediaQuery.viewInsets.bottom; minInsets = mediaQuery.padding.copyWith$1$bottom(t1); _this.get$_resizeToAvoidBottomInset(); t1 = t1 !== 0 ? 0 : _null; minViewPadding = mediaQuery.viewPadding.copyWith$1$bottom(t1); if (minInsets.bottom <= 0) _this._widget.toString; t1 = _this._widget.drawer; t2 = A._lateReadCheck(_this.__ScaffoldState__geometryNotifier, _s17_); t3 = _this._widget.backgroundColor; if (t3 == null) t3 = themeData.scaffoldBackgroundColor; return new A._ScaffoldScope(t1 != null, t2, new A.ScrollNotificationObserver(A.Material$(B.Duration_200000, true, _null, A.AnimatedBuilder$(A._lateReadCheck(_this.__ScaffoldState__floatingActionButtonMoveController, _s35_), new A.ScaffoldState_build_closure(_box_0, _this, false, minInsets, minViewPadding, textDirection, children), _null), B.Clip_0, t3, 0, _null, _null, _null, _null, _null, B.MaterialType_0), _null), _null); } }; A.ScaffoldState__drawerOpenedCallback_closure.prototype = { call$0() { this.$this._drawerOpened.super$RestorableValue$value(0, this.isOpened); }, $signature: 0 }; A.ScaffoldState__endDrawerOpenedCallback_closure.prototype = { call$0() { this.$this._endDrawerOpened.super$RestorableValue$value(0, this.isOpened); }, $signature: 0 }; A.ScaffoldState_hideCurrentSnackBar_closure.prototype = { call$1(value) { var t1 = this.completer; if ((t1.future._state & 30) === 0) t1.complete$1(0, this.reason); }, $signature: 86 }; A.ScaffoldState__updateSnackBar_closure.prototype = { call$0() { this.$this._messengerSnackBar = this.messengerSnackBar; }, $signature: 0 }; A.ScaffoldState__updateMaterialBanner_closure.prototype = { call$0() { this.$this._messengerMaterialBanner = this.messengerMaterialBanner; }, $signature: 0 }; A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet.prototype = { call$0() { var t1, _this = this; _this._box_0.removedEntry = true; t1 = _this.$this; if (t1._currentBottomSheet == null) return; A._lateReadCheck(t1.__ScaffoldState__floatingActionButtonVisibilityController, string$.x5ffloat).forward$0(0); _this.bottomSheetKey.get$currentState().close$0(0); t1.setState$1(new A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure(t1)); if (A._lateReadCheck(_this.animationController.__AnimationController__status, "_status") !== B.AnimationStatus_0) t1._dismissedBottomSheets.push(_this.bottomSheet._readLocal$0()); _this.completer.complete$0(0); }, $signature: 0 }; A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure.prototype = { call$0() { this.$this._currentBottomSheet = null; }, $signature: 0 }; A.ScaffoldState__buildBottomSheet_closure.prototype = { call$0() { var t2, _this = this, t1 = _this._box_0; if (!t1.removedEntry) { t2 = _this.$this._currentBottomSheet; t2 = t2 == null ? null : t2._scaffold$_widget; t1 = J.$eq$(t2, _this.bottomSheet._readLocal$0()) && !t1.doingDispose; } else t1 = false; if (t1) _this._removeCurrentBottomSheet.call$0(); }, $signature: 0 }; A.ScaffoldState__buildBottomSheet__removeEntryIfNeeded.prototype = { call$0() { var _this = this; if (!_this.isPersistent && !_this._box_0.removedEntry) { _this.entry.remove$0(0); _this._box_0.removedEntry = true; } }, $signature: 0 }; A.ScaffoldState__buildBottomSheet_closure0.prototype = { call$0() { if (this.$this._currentBottomSheet == null) return; this._removeEntryIfNeeded.call$0(); }, $signature: 0 }; A.ScaffoldState__buildBottomSheet_closure1.prototype = { call$0() { var t1 = this.$this, t2 = this.bottomSheet; if (B.JSArray_methods.contains$1(t1._dismissedBottomSheets, t2._readLocal$0())) t1.setState$1(new A.ScaffoldState__buildBottomSheet__closure(t1, t2)); }, $signature: 0 }; A.ScaffoldState__buildBottomSheet__closure.prototype = { call$0() { B.JSArray_methods.remove$1(this.$this._dismissedBottomSheets, this.bottomSheet._readLocal$0()); }, $signature: 0 }; A.ScaffoldState__buildBottomSheet_closure2.prototype = { call$0() { var _this = this; _this._box_0.doingDispose = true; _this._removeEntryIfNeeded.call$0(); if (_this.shouldDisposeAnimationController) _this.animationController.dispose$0(0); }, $signature: 0 }; A.ScaffoldState_showBottomSheet_closure.prototype = { call$0() { var _this = this, t1 = _this.$this; t1._currentBottomSheet = t1._buildBottomSheet$1$10$animationController$backgroundColor$clipBehavior$constraints$elevation$enableDrag$shape$shouldDisposeAnimationController(_this.builder, false, _this.controller, _this.backgroundColor, _this.clipBehavior, _this.constraints, _this.elevation, _this.enableDrag, _this.shape, true, _this.T); }, $signature: 0 }; A.ScaffoldState__moveFloatingActionButton_closure.prototype = { call$0() { var t1 = this.$this; t1._previousFloatingActionButtonLocation = this._box_0.previousLocation; t1._floatingActionButtonLocation = this.newLocation; }, $signature: 0 }; A.ScaffoldState_showBodyScrim_closure.prototype = { call$0() { var t1 = this.$this; t1._showBodyScrim = this.value; t1._bodyScrimColor = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * this.opacity), 0, 0, 0); }, $signature: 0 }; A.ScaffoldState_build_closure.prototype = { call$2(context, child) { var t2, t3, t4, t5, t6, t7, t8, _this = this, t1 = _this.$this; t1._widget.toString; t2 = t1._floatingActionButtonLocation; t2.toString; t3 = A._lateReadCheck(A._lateReadCheck(t1.__ScaffoldState__floatingActionButtonMoveController, "_floatingActionButtonMoveController").__AnimationController__value, "_value"); t4 = A._lateReadCheck(t1.__ScaffoldState__floatingActionButtonAnimator, "_floatingActionButtonAnimator"); t5 = A._lateReadCheck(t1.__ScaffoldState__geometryNotifier, "_geometryNotifier"); t1 = t1._previousFloatingActionButtonLocation; t1.toString; t6 = _this._box_0; t7 = t6.isSnackBarFloating; t8 = t6.extendBodyBehindMaterialBanner; return new A.CustomMultiChildLayout(new A._ScaffoldLayout(_this.extendBody, false, _this.minInsets, _this.minViewPadding, _this.textDirection, t5, t1, t2, t3, t4, t7, t6.snackBarWidth, t8), _this.children, null); }, $signature: 2275 }; A.ScaffoldFeatureController.prototype = {}; A._BottomSheetSuspendedCurve.prototype = { transform$1(_, t) { var t1 = this.startingPoint; if (t < t1) return t; if (t === 1) return t; t1 = A.lerpDouble(t1, 1, this.curve.transform$1(0, (t - t1) / (1 - t1))); t1.toString; return t1; }, toString$0(_) { return "#" + A.shortHash(this) + "(" + A.S(this.startingPoint) + ", " + this.curve.toString$0(0) + ")"; } }; A._StandardBottomSheet.prototype = { createState$0() { return new A._StandardBottomSheetState(B.Cubic_ifx, B._StateLifecycle_0); } }; A._StandardBottomSheetState.prototype = { initState$0() { this.super$State$initState(); this._widget.animationController.addStatusListener$1(this.get$_handleStatusChange()); }, dispose$0(_) { this._widget.onDispose.call$0(); this.super$State$dispose(0); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); }, close$0(_) { this._widget.animationController.reverse$0(0); this._widget.onClosing.call$0(); }, _scaffold$_handleDragStart$1(details) { this.animationCurve = B.C__Linear; }, _scaffold$_handleDragEnd$2$isClosing(details, isClosing) { this.animationCurve = new A._BottomSheetSuspendedCurve(A._lateReadCheck(this._widget.animationController.__AnimationController__value, "_value"), B.Cubic_ifx); }, _scaffold$_handleDragEnd$1(details) { return this._scaffold$_handleDragEnd$2$isClosing(details, null); }, _handleStatusChange$1($status) { if ($status === B.AnimationStatus_0) this._widget.onDismissed.call$0(); }, extentChanged$1(notification) { var scaffold, t1 = notification.extent, extentRemaining = 1 - t1, t2 = this._framework$_element; t2.toString; scaffold = A.Scaffold_of(t2); if (extentRemaining < 0.3) { scaffold.set$_floatingActionButtonVisibilityValue(extentRemaining * 0.3 * 10); scaffold.showBodyScrim$2(true, Math.max(0.1, 0.6 - A._lateReadCheck(A._lateReadCheck(scaffold.__ScaffoldState__floatingActionButtonVisibilityController, string$.x5ffloat).__AnimationController__value, "_value"))); } else { scaffold.set$_floatingActionButtonVisibilityValue(1); scaffold.showBodyScrim$2(false, 0); } if (t1 === notification.minExtent) { scaffold._widget.toString; t1 = true; } else t1 = false; if (t1) this.close$0(0); return false; }, build$1(_, context) { var _this = this, _null = null, t1 = _this._widget, t2 = t1.animationController, t3 = t1.enableDrag, t4 = t1.onClosing, t5 = t1.builder, t6 = t1.backgroundColor, t7 = t1.elevation, t8 = t1.shape, t9 = t1.clipBehavior; t1 = t1.constraints; return A.AnimatedBuilder$(t2, new A._StandardBottomSheetState_build_closure(_this), new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$close(_this), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A.NotificationListener(_this.get$extentChanged(), new A.BottomSheet(t2, t4, t5, t3, _this.get$_scaffold$_handleDragStart(), _this.get$_scaffold$_handleDragEnd(), t6, t7, t8, t9, t1, _null), _null, type$.NotificationListener_DraggableScrollableNotification), _null)); } }; A._StandardBottomSheetState_build_closure.prototype = { call$2(context, child) { var t1 = this.$this; return new A.Align(B.AlignmentDirectional_m1_m1, null, t1.animationCurve.transform$1(0, A._lateReadCheck(t1._widget.animationController.__AnimationController__value, "_value")), child, null); }, $signature: 2273 }; A.PersistentBottomSheetController.prototype = {}; A._ScaffoldScope.prototype = { updateShouldNotify$1(oldWidget) { return this.hasDrawer !== oldWidget.hasDrawer; } }; A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A._ScaffoldMessengerState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._ScaffoldState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_ScaffoldState_State_TickerProviderStateMixin$dispose(0); } }; A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.Scrollbar.prototype = { build$1(_, context) { var _this = this, _null = null; if (A.Theme_of(context).platform === B.TargetPlatform_2) return new A.CupertinoScrollbar(8, B.Radius_4_4, _this.child, _this.controller, _this.thumbVisibility === true, _null, B.Radius_ydE, 3, _null, B.Duration_250000, B.Duration_1200000, B.Duration_100000, A.scroll_notification__defaultScrollNotificationPredicate$closure(), _null, _null, _null); return new A._MaterialScrollbar(_null, _null, _this.child, _this.controller, _this.thumbVisibility, _null, _null, _null, _null, B.Duration_300000, B.Duration_600000, B.Duration_0, A.scroll_notification__defaultScrollNotificationPredicate$closure(), _null, _null, _null); } }; A._MaterialScrollbar.prototype = { createState$0() { return new A._MaterialScrollbarState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, null, B._StateLifecycle_0); } }; A._MaterialScrollbarState.prototype = { get$showScrollbar() { var _this = this, _s15_ = "_scrollbarTheme", t1 = _this._widget.thumbVisibility; if (t1 == null) { t1 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).thumbVisibility; t1 = t1 == null ? null : t1.resolve$1(0, _this.get$_states()); } if (t1 == null) t1 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).isAlwaysShown; return t1 == null ? false : t1; }, get$enableGestures() { this._widget.toString; var t1 = A._lateReadCheck(this.___MaterialScrollbarState__scrollbarTheme, "_scrollbarTheme"); t1 = t1.interactive; return t1 == null ? !A._lateReadCheck(this.___MaterialScrollbarState__useAndroidScrollbar, "_useAndroidScrollbar") : t1; }, get$_trackVisibility() { return new A._MaterialStatePropertyWith(new A._MaterialScrollbarState__trackVisibility_closure(this), type$._MaterialStatePropertyWith_bool); }, get$_states() { var t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (this._dragIsActive) t1.add$1(0, B.MaterialState_3); if (this._scrollbar0$_hoverIsActive) t1.add$1(0, B.MaterialState_0); return t1; }, get$_thumbColor() { var t1, t2, t3, _this = this, _s12_ = "_colorScheme", _s20_ = "_useAndroidScrollbar", onSurface = A._lateReadCheck(_this.___MaterialScrollbarState__colorScheme, _s12_).onSurface, brightness = A._lateReadCheck(_this.___MaterialScrollbarState__colorScheme, _s12_).brightness, dragColor = A._Cell$named("dragColor"), hoverColor = A._Cell$named("hoverColor"), idleColor = A._Cell$named("idleColor"); switch (brightness.index) { case 1: t1 = onSurface.value; t2 = t1 >>> 16 & 255; t3 = t1 >>> 8 & 255; t1 &= 255; dragColor.__late_helper$_value = A.Color$fromARGB(153, t2, t3, t1); hoverColor.__late_helper$_value = A.Color$fromARGB(B.JSNumber_methods.round$0(127.5), t2, t3, t1); if (A._lateReadCheck(_this.___MaterialScrollbarState__useAndroidScrollbar, _s20_)) { t1 = _this._framework$_element; t1.toString; t1 = A.Theme_of(t1).highlightColor.value; t1 = A.Color$fromARGB(255, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else t1 = A.Color$fromARGB(B.JSNumber_methods.round$0(25.5), t2, t3, t1); idleColor.__late_helper$_value = t1; break; case 0: t1 = onSurface.value; t2 = t1 >>> 16 & 255; t3 = t1 >>> 8 & 255; t1 &= 255; dragColor.__late_helper$_value = A.Color$fromARGB(191, t2, t3, t1); hoverColor.__late_helper$_value = A.Color$fromARGB(166, t2, t3, t1); if (A._lateReadCheck(_this.___MaterialScrollbarState__useAndroidScrollbar, _s20_)) { t1 = _this._framework$_element; t1.toString; t1 = A.Theme_of(t1).highlightColor.value; t1 = A.Color$fromARGB(255, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else t1 = A.Color$fromARGB(B.JSNumber_methods.round$0(76.5), t2, t3, t1); idleColor.__late_helper$_value = t1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A._MaterialStatePropertyWith(new A._MaterialScrollbarState__thumbColor_closure(_this, dragColor, hoverColor, idleColor), type$._MaterialStatePropertyWith_Color); }, get$_scrollbar0$_trackColor() { var _s12_ = "_colorScheme", onSurface = A._lateReadCheck(this.___MaterialScrollbarState__colorScheme, _s12_).onSurface; return new A._MaterialStatePropertyWith(new A._MaterialScrollbarState__trackColor_closure(this, A._lateReadCheck(this.___MaterialScrollbarState__colorScheme, _s12_).brightness, onSurface), type$._MaterialStatePropertyWith_Color); }, get$_scrollbar0$_trackBorderColor() { var _s12_ = "_colorScheme", onSurface = A._lateReadCheck(this.___MaterialScrollbarState__colorScheme, _s12_).onSurface; return new A._MaterialStatePropertyWith(new A._MaterialScrollbarState__trackBorderColor_closure(this, A._lateReadCheck(this.___MaterialScrollbarState__colorScheme, _s12_).brightness, onSurface), type$._MaterialStatePropertyWith_Color); }, get$_scrollbar0$_thickness() { return new A._MaterialStatePropertyWith(new A._MaterialScrollbarState__thickness_closure(this), type$._MaterialStatePropertyWith_double); }, initState$0() { var t1, _this = this; _this.super$RawScrollbarState$initState(); t1 = A.AnimationController$(null, B.Duration_200000, null, 1, null, _this); _this.___MaterialScrollbarState__hoverAnimationController = t1; t1 = A._lateReadCheck(t1, "_hoverAnimationController"); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(new A._MaterialScrollbarState_initState_closure(_this)); }, didChangeDependencies$0() { var theme, _this = this, t1 = _this._framework$_element; t1.toString; theme = A.Theme_of(t1); _this.___MaterialScrollbarState__colorScheme = theme.colorScheme; _this.___MaterialScrollbarState__scrollbarTheme = theme.scrollbarTheme; switch (theme.platform) { case B.TargetPlatform_0: _this.___MaterialScrollbarState__useAndroidScrollbar = true; break; case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_1: case B.TargetPlatform_4: case B.TargetPlatform_5: _this.___MaterialScrollbarState__useAndroidScrollbar = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.super$RawScrollbarState$didChangeDependencies(); }, updateScrollbarPainter$0() { var t2, _this = this, _s15_ = "_scrollbarTheme", _s20_ = "_useAndroidScrollbar", t1 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); t1.set$color(0, _this.get$_thumbColor()._material_state$_resolve.call$1(_this.get$_states())); t1.set$trackColor(_this.get$_scrollbar0$_trackColor()._material_state$_resolve.call$1(_this.get$_states())); t1.set$trackBorderColor(_this.get$_scrollbar0$_trackBorderColor()._material_state$_resolve.call$1(_this.get$_states())); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t1.set$thickness(_this.get$_scrollbar0$_thickness()._material_state$_resolve.call$1(_this.get$_states())); t2 = _this._widget.radius; if (t2 == null) t2 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).radius; if (t2 == null) t2 = A._lateReadCheck(_this.___MaterialScrollbarState__useAndroidScrollbar, _s20_) ? null : B.Radius_8_8; t1.set$radius(t2); t2 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).crossAxisMargin; if (t2 == null) t2 = A._lateReadCheck(_this.___MaterialScrollbarState__useAndroidScrollbar, _s20_) ? 0 : 2; t1.set$crossAxisMargin(t2); t2 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).mainAxisMargin; t1.set$mainAxisMargin(t2 == null ? 0 : t2); t2 = A._lateReadCheck(_this.___MaterialScrollbarState__scrollbarTheme, _s15_).minThumbLength; t1.set$minLength(0, t2 == null ? 48 : t2); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); t1.set$scrollbarOrientation(_this._widget.scrollbarOrientation); t1.set$ignorePointer(!_this.get$enableGestures()); }, handleThumbPressStart$1(localPosition) { this.super$RawScrollbarState$handleThumbPressStart(localPosition); this.setState$1(new A._MaterialScrollbarState_handleThumbPressStart_closure(this)); }, handleThumbPressEnd$2(localPosition, velocity) { this.super$RawScrollbarState$handleThumbPressEnd(localPosition, velocity); this.setState$1(new A._MaterialScrollbarState_handleThumbPressEnd_closure(this)); }, handleHover$1($event) { var _this = this, _s25_ = "_hoverAnimationController"; _this.super$RawScrollbarState$handleHover($event); if (_this.isPointerOverScrollbar$3$forHover($event.get$position($event), $event.get$kind($event), true)) { _this.setState$1(new A._MaterialScrollbarState_handleHover_closure(_this)); A._lateReadCheck(_this.___MaterialScrollbarState__hoverAnimationController, _s25_).forward$0(0); } else if (_this._scrollbar0$_hoverIsActive) { _this.setState$1(new A._MaterialScrollbarState_handleHover_closure0(_this)); A._lateReadCheck(_this.___MaterialScrollbarState__hoverAnimationController, _s25_).reverse$0(0); } }, handleHoverExit$1($event) { var _this = this; _this.super$RawScrollbarState$handleHoverExit($event); _this.setState$1(new A._MaterialScrollbarState_handleHoverExit_closure(_this)); A._lateReadCheck(_this.___MaterialScrollbarState__hoverAnimationController, "_hoverAnimationController").reverse$0(0); }, dispose$0(_) { A._lateReadCheck(this.___MaterialScrollbarState__hoverAnimationController, "_hoverAnimationController").dispose$0(0); this.super$RawScrollbarState$dispose(0); } }; A._MaterialScrollbarState__trackVisibility_closure.prototype = { call$1(states) { var t1, _s15_ = "_scrollbarTheme"; if (states.contains$1(0, B.MaterialState_0)) { t1 = this.$this; t1._widget.toString; t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_); t1 = t1.showTrackOnHover; t1 = t1 === true; } else t1 = false; if (t1) return true; t1 = this.$this; t1._widget.toString; t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_); t1 = t1.trackVisibility; t1 = t1 == null ? null : t1.resolve$1(0, states); return t1 == null ? false : t1; }, $signature: 2272 }; A._MaterialScrollbarState__thumbColor_closure.prototype = { call$1(states) { var t1, t2, t3, _this = this, _null = null, _s15_ = "_scrollbarTheme"; if (states.contains$1(0, B.MaterialState_3)) { t1 = A._lateReadCheck(_this.$this.___MaterialScrollbarState__scrollbarTheme, _s15_).thumbColor; t1 = t1 == null ? _null : t1.resolve$1(0, states); return t1 == null ? _this.dragColor._readLocal$0() : t1; } t1 = _this.$this; if (t1.get$_trackVisibility()._material_state$_resolve.call$1(states)) { t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_).thumbColor; t1 = t1 == null ? _null : t1.resolve$1(0, states); return t1 == null ? _this.hoverColor._readLocal$0() : t1; } t2 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_).thumbColor; t2 = t2 == null ? _null : t2.resolve$1(0, states); if (t2 == null) t2 = _this.idleColor._readLocal$0(); t3 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_).thumbColor; t3 = t3 == null ? _null : t3.resolve$1(0, states); if (t3 == null) t3 = _this.hoverColor._readLocal$0(); t1 = A.Color_lerp(t2, t3, A._lateReadCheck(A._lateReadCheck(t1.___MaterialScrollbarState__hoverAnimationController, "_hoverAnimationController").__AnimationController__value, "_value")); t1.toString; return t1; }, $signature: 116 }; A._MaterialScrollbarState__trackColor_closure.prototype = { call$1(states) { var t1 = this.$this; if (t1.get$showScrollbar() && t1.get$_trackVisibility()._material_state$_resolve.call$1(states)) { t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, "_scrollbarTheme").trackColor; t1 = t1 == null ? null : t1.resolve$1(0, states); if (t1 == null) { t1 = this.onSurface; if (this.brightness === B.Brightness_1) { t1 = t1.value; t1 = A.Color$fromARGB(8, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else { t1 = t1.value; t1 = A.Color$fromARGB(13, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } } return t1; } return B.Color_0; }, $signature: 116 }; A._MaterialScrollbarState__trackBorderColor_closure.prototype = { call$1(states) { var t1 = this.$this; if (t1.get$showScrollbar() && t1.get$_trackVisibility()._material_state$_resolve.call$1(states)) { t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, "_scrollbarTheme").trackBorderColor; t1 = t1 == null ? null : t1.resolve$1(0, states); if (t1 == null) { t1 = this.onSurface; if (this.brightness === B.Brightness_1) { t1.toString; t1 = t1.value; t1 = A.Color$fromARGB(B.JSNumber_methods.round$0(25.5), t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else { t1 = t1.value; t1 = A.Color$fromARGB(64, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } } return t1; } return B.Color_0; }, $signature: 116 }; A._MaterialScrollbarState__thickness_closure.prototype = { call$1(states) { var t1, t2, _s15_ = "_scrollbarTheme"; if (states.contains$1(0, B.MaterialState_0) && this.$this.get$_trackVisibility()._material_state$_resolve.call$1(states)) { t1 = this.$this; t1._widget.toString; t1 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_); t1 = t1.thickness; t1 = t1 == null ? null : t1.resolve$1(0, states); return t1 == null ? 12 : t1; } t1 = this.$this; t2 = t1._widget.thickness; if (t2 == null) { t2 = A._lateReadCheck(t1.___MaterialScrollbarState__scrollbarTheme, _s15_).thickness; t2 = t2 == null ? null : t2.resolve$1(0, states); } if (t2 == null) { t2 = 8 / (A._lateReadCheck(t1.___MaterialScrollbarState__useAndroidScrollbar, "_useAndroidScrollbar") ? 2 : 1); t1 = t2; } else t1 = t2; return t1; }, $signature: 2271 }; A._MaterialScrollbarState_initState_closure.prototype = { call$0() { this.$this.updateScrollbarPainter$0(); }, $signature: 0 }; A._MaterialScrollbarState_handleThumbPressStart_closure.prototype = { call$0() { this.$this._dragIsActive = true; }, $signature: 0 }; A._MaterialScrollbarState_handleThumbPressEnd_closure.prototype = { call$0() { this.$this._dragIsActive = false; }, $signature: 0 }; A._MaterialScrollbarState_handleHover_closure.prototype = { call$0() { this.$this._scrollbar0$_hoverIsActive = true; }, $signature: 0 }; A._MaterialScrollbarState_handleHover_closure0.prototype = { call$0() { this.$this._scrollbar0$_hoverIsActive = false; }, $signature: 0 }; A._MaterialScrollbarState_handleHoverExit_closure.prototype = { call$0() { this.$this._scrollbar0$_hoverIsActive = false; }, $signature: 0 }; A.ScrollbarThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.thumbVisibility, _this.thickness, _this.trackVisibility, _this.showTrackOnHover, _this.isAlwaysShown, _this.interactive, _this.radius, _this.thumbColor, _this.trackColor, _this.trackBorderColor, _this.crossAxisMargin, _this.mainAxisMargin, _this.minThumbLength, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ScrollbarThemeData && other.thumbVisibility == _this.thumbVisibility && other.thickness == _this.thickness && other.trackVisibility == _this.trackVisibility && other.showTrackOnHover == _this.showTrackOnHover && other.isAlwaysShown == _this.isAlwaysShown && other.interactive == _this.interactive && J.$eq$(other.radius, _this.radius) && other.thumbColor == _this.thumbColor && other.trackColor == _this.trackColor && other.trackBorderColor == _this.trackBorderColor && other.crossAxisMargin == _this.crossAxisMargin && other.mainAxisMargin == _this.mainAxisMargin && other.minThumbLength == _this.minThumbLength; } }; A._LerpProperties5.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._ScrollbarThemeData_Object_Diagnosticable.prototype = {}; A._TextSpanEditingController.prototype = { buildTextSpan$3$context$style$withComposing(context, style, withComposing) { return A.TextSpan$(A._setArrayType([this._textSpan], type$.JSArray_TextSpan), null, style, null); }, set$text(_, newText) { throw A.wrapException(A.UnimplementedError$(null)); } }; A._SelectableTextSelectionGestureDetectorBuilder.prototype = { onForcePressStart$1(details) { var t1; this.super$TextSelectionGestureDetectorBuilder$onForcePressStart(details); t1 = this.delegate; if (t1.get$selectionEnabled() && this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onForcePressEnd$1(details) { }, onSingleLongTapMoveUpdate$1(details) { var t2, t1 = this.delegate; if (t1.get$selectionEnabled()) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t2 = details.globalPosition; type$.RenderEditable._as(t1).selectWordsInRange$3$cause$from$to(B.SelectionChangedCause_2, t2.$sub(0, details.offsetFromOrigin), t2); } }, onSingleTapUp$1(details) { var t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2.hideToolbar$0(); if (t1.get$selectionEnabled()) { t2 = this._selectable_text$_state._framework$_element; t2.toString; switch (A.Theme_of(t2).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordEdge$1$cause(B.SelectionChangedCause_0); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(B.SelectionChangedCause_0, t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } this._selectable_text$_state._widget.toString; }, onSingleLongTapStart$1(details) { var t2, t1 = this.delegate; if (t1.get$selectionEnabled()) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectWordsInRange$2$cause$from(B.SelectionChangedCause_2, t2); t2 = this._selectable_text$_state._framework$_element; t2.toString; A.Feedback_forLongPress(t2); } } }; A.SelectableText.prototype = { createState$0() { return new A._SelectableTextState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_EditableTextState), B._StateLifecycle_0); } }; A._SelectableTextState.prototype = { get$_selectable_text$_effectiveFocusNode() { this._widget.toString; var t1 = this._selectable_text$_focusNode; if (t1 == null) { t1 = A.FocusNode$(true, null, true, true, null, null, true); this._selectable_text$_focusNode = t1; } return t1; }, get$forcePressEnabled() { return A._lateReadCheck(this.___SelectableTextState_forcePressEnabled, "forcePressEnabled"); }, get$selectionEnabled() { this._widget.toString; return true; }, initState$0() { var t1, _this = this; _this.super$State$initState(); _this.___SelectableTextState__selectionGestureDetectorBuilder = new A._SelectableTextSelectionGestureDetectorBuilder(_this, _this); t1 = A.TextSpan$(null, null, null, _this._widget.data); t1 = A._TextSpanEditingController$(t1); _this.___SelectableTextState__controller = t1; A._lateReadCheck(t1, "_controller").addListener$1(0, _this.get$_onControllerChanged()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.data != oldWidget.data || false) { t1 = _this.get$_onControllerChanged(); A._lateReadCheck(_this.___SelectableTextState__controller, _s11_).removeListener$1(0, t1); t2 = A.TextSpan$(null, null, null, _this._widget.data); t2 = A._TextSpanEditingController$(t2); _this.___SelectableTextState__controller = t2; A._lateReadCheck(t2, _s11_).addListener$1(0, t1); } if (_this.get$_selectable_text$_effectiveFocusNode().get$hasFocus()) { t1 = A._lateReadCheck(_this.___SelectableTextState__controller, _s11_)._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) _this._selectable_text$_showSelectionHandles = false; else _this._selectable_text$_showSelectionHandles = true; }, dispose$0(_) { var _this = this, t1 = _this._selectable_text$_focusNode; if (t1 != null) t1.dispose$0(0); A._lateReadCheck(_this.___SelectableTextState__controller, "_controller").removeListener$1(0, _this.get$_onControllerChanged()); _this.super$State$dispose(0); }, _onControllerChanged$0() { var t1, showSelectionHandles, _this = this; if (_this.get$_selectable_text$_effectiveFocusNode().get$hasFocus()) { t1 = A._lateReadCheck(_this.___SelectableTextState__controller, "_controller")._change_notifier$_value.selection; showSelectionHandles = t1.start != t1.end; } else showSelectionHandles = true; if (showSelectionHandles === _this._selectable_text$_showSelectionHandles) return; _this.setState$1(new A._SelectableTextState__onControllerChanged_closure(_this, showSelectionHandles)); }, _selectable_text$_handleSelectionChanged$2(selection, cause) { var t1, _this = this, willShowSelectionHandles = _this._selectable_text$_shouldShowSelectionHandles$1(cause); if (willShowSelectionHandles !== _this._selectable_text$_showSelectionHandles) _this.setState$1(new A._SelectableTextState__handleSelectionChanged_closure(_this, willShowSelectionHandles)); _this._widget.toString; _this._lastSeenTextSelection = selection; t1 = _this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: if (cause === B.SelectionChangedCause_2) { t1 = _this.editableTextKey.get$currentState(); if (t1 != null) t1.bringIntoView$1(selection.get$base()); } return; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _selectable_text$_handleSelectionHandleTapped$0() { var t1 = A._lateReadCheck(this.___SelectableTextState__controller, "_controller")._change_notifier$_value.selection; if (t1.start == t1.end) this.editableTextKey.get$currentState().toggleToolbar$0(); }, _selectable_text$_shouldShowSelectionHandles$1(cause) { var t1, _s11_ = "_controller"; if (!A._lateReadCheck(this.___SelectableTextState__selectionGestureDetectorBuilder, "_selectionGestureDetectorBuilder")._shouldShowSelectionToolbar) return false; t1 = A._lateReadCheck(this.___SelectableTextState__controller, _s11_)._change_notifier$_value.selection; if (t1.start == t1.end) return false; if (cause === B.SelectionChangedCause_4) return false; if (cause === B.SelectionChangedCause_2) return true; if (A._lateReadCheck(this.___SelectableTextState__controller, _s11_)._change_notifier$_value.text.length !== 0) return true; return false; }, build$1(_, context) { var cupertinoTheme, textSelectionControls, cursorColor, selectionColor, t1, cursorOffset, paintCursorAboveText, cursorOpacityAnimates, cursorRadius, effectiveTextStyle, t2, t3, t4, _this = this, _null = null, theme = A.Theme_of(context), selectionTheme = A.TextSelectionTheme_of(context), focusNode = _this.get$_selectable_text$_effectiveFocusNode(); _this._widget.toString; switch (theme.platform) { case B.TargetPlatform_2: cupertinoTheme = A.CupertinoTheme_of(context); _this.___SelectableTextState_forcePressEnabled = true; textSelectionControls = $.$get$cupertinoTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = cupertinoTheme.get$primaryColor(); selectionColor = A.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorOffset = new A.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = B.Radius_2_2; break; case B.TargetPlatform_4: cupertinoTheme = A.CupertinoTheme_of(context); _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$cupertinoDesktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = cupertinoTheme.get$primaryColor(); selectionColor = A.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorOffset = new A.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = B.Radius_2_2; break; case B.TargetPlatform_0: case B.TargetPlatform_1: _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$materialTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = theme.colorScheme.primary; selectionColor = A.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorRadius = _null; cursorOffset = cursorRadius; paintCursorAboveText = false; cursorOpacityAnimates = false; break; case B.TargetPlatform_3: case B.TargetPlatform_5: _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$desktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = theme.colorScheme.primary; selectionColor = A.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorRadius = _null; cursorOffset = cursorRadius; paintCursorAboveText = false; cursorOpacityAnimates = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); if (t1 == null) t1 = B.DefaultTextStyle_40S; effectiveTextStyle = _this._widget.style; if (effectiveTextStyle == null || effectiveTextStyle.inherit) effectiveTextStyle = t1.style.merge$1(effectiveTextStyle); if (A.MediaQuery_boldTextOverride(context)) effectiveTextStyle = effectiveTextStyle.merge$1(B.TextStyle_oqK); _this._widget.toString; t2 = _this._selectable_text$_showSelectionHandles; t3 = A._lateReadCheck(_this.___SelectableTextState__controller, "_controller"); t4 = _this._widget; t4 = t4.toolbarOptions; t1 = A.EditableText$(true, _null, _null, _null, false, B.CupertinoDynamicColor_YIZ, B.Clip_1, t3, cursorColor, _null, cursorOffset, cursorOpacityAnimates, cursorRadius, 2, B.DragStartBehavior_1, true, true, true, false, focusNode, false, _null, _this.editableTextKey, B.Brightness_1, _null, t1.maxLines, _null, _null, false, "\u2022", _null, _null, _null, _this.get$_selectable_text$_handleSelectionChanged(), _this.get$_selectable_text$_handleSelectionHandleTapped(), _null, paintCursorAboveText, true, true, _null, true, _null, B.EdgeInsets_20_20_20_20, _null, selectionColor, textSelectionControls, B.BoxHeightStyle_0, B.BoxWidthStyle_0, false, t2, _null, _null, B.StrutStyle_yfz, effectiveTextStyle, B.TextAlign_4, B.TextCapitalization_3, _null, t1.textHeightBehavior, _null, _null, t1.textWidthBasis, t4); _this._widget.toString; t1 = A._lateReadCheck(_this.___SelectableTextState__selectionGestureDetectorBuilder, "_selectionGestureDetectorBuilder").buildGestureDetector$2$behavior$child(B.HitTestBehavior_2, new A.RepaintBoundary(t1, _null)); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._SelectableTextState_build_closure(_this), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); }, get$editableTextKey() { return this.editableTextKey; } }; A._SelectableTextState__onControllerChanged_closure.prototype = { call$0() { this.$this._selectable_text$_showSelectionHandles = this.showSelectionHandles; }, $signature: 0 }; A._SelectableTextState__handleSelectionChanged_closure.prototype = { call$0() { this.$this._selectable_text$_showSelectionHandles = this.willShowSelectionHandles; }, $signature: 0 }; A._SelectableTextState_build_closure.prototype = { call$0() { this.$this.get$_selectable_text$_effectiveFocusNode().requestFocus$0(); }, $signature: 0 }; A.SliderThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.trackHeight, _this.activeTrackColor, _this.inactiveTrackColor, _this.disabledActiveTrackColor, _this.disabledInactiveTrackColor, _this.activeTickMarkColor, _this.inactiveTickMarkColor, _this.disabledActiveTickMarkColor, _this.disabledInactiveTickMarkColor, _this.thumbColor, _this.overlappingShapeStrokeColor, _this.disabledThumbColor, _this.overlayColor, _this.valueIndicatorColor, _this.overlayShape, _this.tickMarkShape, _this.thumbShape, _this.trackShape, _this.valueIndicatorShape, A.Object_hash(_this.rangeTickMarkShape, _this.rangeThumbShape, _this.rangeTrackShape, _this.rangeValueIndicatorShape, _this.showValueIndicator, _this.valueIndicatorTextStyle, _this.minThumbSeparation, _this.thumbSelector, _this.mouseCursor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue)); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.SliderThemeData) if (other.trackHeight == _this.trackHeight) if (J.$eq$(other.activeTrackColor, _this.activeTrackColor)) if (J.$eq$(other.inactiveTrackColor, _this.inactiveTrackColor)) if (J.$eq$(other.disabledActiveTrackColor, _this.disabledActiveTrackColor)) if (J.$eq$(other.disabledInactiveTrackColor, _this.disabledInactiveTrackColor)) if (J.$eq$(other.activeTickMarkColor, _this.activeTickMarkColor)) if (J.$eq$(other.inactiveTickMarkColor, _this.inactiveTickMarkColor)) if (J.$eq$(other.disabledActiveTickMarkColor, _this.disabledActiveTickMarkColor)) if (J.$eq$(other.disabledInactiveTickMarkColor, _this.disabledInactiveTickMarkColor)) if (J.$eq$(other.thumbColor, _this.thumbColor)) if (J.$eq$(other.overlappingShapeStrokeColor, _this.overlappingShapeStrokeColor)) if (J.$eq$(other.disabledThumbColor, _this.disabledThumbColor)) if (J.$eq$(other.overlayColor, _this.overlayColor)) if (J.$eq$(other.valueIndicatorColor, _this.valueIndicatorColor)) if (J.$eq$(other.valueIndicatorTextStyle, _this.valueIndicatorTextStyle)) if (other.minThumbSeparation == _this.minThumbSeparation) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._SliderThemeData_Object_Diagnosticable.prototype = {}; A.SnackBarClosedReason.prototype = { toString$0(_) { return "SnackBarClosedReason." + this._core$_name; } }; A.SnackBarThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.actionTextColor, _this.disabledActionTextColor, _this.contentTextStyle, _this.elevation, _this.shape, _this.behavior, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.SnackBarThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.actionTextColor, _this.actionTextColor) && J.$eq$(other.disabledActionTextColor, _this.disabledActionTextColor) && J.$eq$(other.contentTextStyle, _this.contentTextStyle) && other.elevation == _this.elevation && J.$eq$(other.shape, _this.shape) && true; } }; A._SnackBarThemeData_Object_Diagnosticable.prototype = {}; A._SwitchType.prototype = { toString$0(_) { return "_SwitchType." + this._core$_name; } }; A.Switch.prototype = { _getSwitchSize$1(context) { var theme = A.Theme_of(context), switchTheme = A.SwitchTheme_of(context), t1 = this.materialTapTargetSize, effectiveMaterialTapTargetSize = t1 == null ? switchTheme.materialTapTargetSize : t1; switch ((effectiveMaterialTapTargetSize == null ? theme.materialTapTargetSize : effectiveMaterialTapTargetSize).index) { case 0: return B.Size_59_48; case 1: return B.Size_59_40; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _buildMaterialSwitch$1(context) { var _this = this, _null = null; return new A._MaterialSwitch(_this.value, _this.onChanged, _this.activeColor, _this.activeTrackColor, _this.inactiveThumbColor, _this.inactiveTrackColor, _this.activeThumbImage, _null, _this.inactiveThumbImage, _null, _null, _null, B.DragStartBehavior_1, _null, _null, _null, _null, _null, _null, false, _this._getSwitchSize$1(context), _null); }, build$1(_, context) { var size, _this = this, _null = null, _s80_ = string$.x60null_c; switch (_this._switchType.index) { case 0: return _this._buildMaterialSwitch$1(context); case 1: switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return _this._buildMaterialSwitch$1(context); case B.TargetPlatform_2: case B.TargetPlatform_4: size = _this._getSwitchSize$1(context); return A.Focus$(false, _null, A.Container$(B.Alignment_0_0, new A.CupertinoSwitch(_this.value, _this.onChanged, _this.activeColor, _this.inactiveTrackColor, B.DragStartBehavior_1, _null), B.Clip_0, _null, _null, _null, _null, size._dy, _null, _null, _null, _null, _null, size._dx), _null, _null, _null, _null, true, _null, _null, _null, _null, _null); default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, get$value(receiver) { return this.value; } }; A._MaterialSwitch.prototype = { createState$0() { return new A._MaterialSwitchState(new A._SwitchPainter($.$get$ChangeNotifier__emptyListeners()), $, $, $, $, $, $, $, $, $, null, false, false, null, null, B._StateLifecycle_0); }, get$value(receiver) { return this.value; } }; A._MaterialSwitchState.prototype = { didUpdateWidget$1(oldWidget) { var t1, _this = this, _s9_ = "_position"; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.value != _this._widget.value) { t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, _s9_); if (t1.get$value(t1) !== 0) { t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, _s9_); t1 = t1.get$value(t1) === 1; } else t1 = true; if (t1) { t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, _s9_); t1.curve = B.Cubic_JUR0; t1.reverseCurve = B.Cubic_xDo0; } _this.animateToValue$0(); } }, dispose$0(_) { this._switch0$_painter.dispose$0(0); this.super$__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged() { return this._widget.onChanged != null ? this.get$_switch0$_handleChanged() : null; }, get$tristate() { return false; }, get$value(_) { return this._widget.value; }, get$_widgetThumbColor() { return new A._MaterialStatePropertyWith(new A._MaterialSwitchState__widgetThumbColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultThumbColor() { var theme, t1 = this._framework$_element; t1.toString; theme = A.Theme_of(t1); return new A._MaterialStatePropertyWith(new A._MaterialSwitchState__defaultThumbColor_closure(theme.colorScheme.brightness === B.Brightness_0, theme), type$._MaterialStatePropertyWith_Color); }, get$_widgetTrackColor() { return new A._MaterialStatePropertyWith(new A._MaterialSwitchState__widgetTrackColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultTrackColor() { var t1 = this._framework$_element; t1.toString; return new A._MaterialStatePropertyWith(new A._MaterialSwitchState__defaultTrackColor_closure(this, A.Theme_of(t1).colorScheme.brightness === B.Brightness_0), type$._MaterialStatePropertyWith_Color); }, _switch0$_handleDragStart$1(details) { if (this.get$onChanged() != null) A._lateReadCheck(this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").forward$0(0); }, _switch0$_handleDragUpdate$1(details) { var t1, delta, _this = this, _s19_ = "_positionController"; if (_this.get$onChanged() != null) { t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, "_position"); t1.curve = B.C__Linear; t1.reverseCurve = null; t1 = details.primaryDelta; t1.toString; delta = t1 / (_this._widget.size._dx - 40); t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, _s19_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, "_value") - delta); break; case B.TextDirection_1: t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, _s19_); t1.set$value(0, A._lateReadCheck(t1.__AnimationController__value, "_value") + delta); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, _switch0$_handleDragEnd$1(details) { var t2, t3, _this = this, t1 = A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, "_position"); t1 = t1.get$value(t1); t2 = _this._widget; t3 = t2.value; if (t1 >= 0.5 !== t3) { t2.onChanged.call$1(!t3); _this.setState$1(new A._MaterialSwitchState__handleDragEnd_closure(_this)); } else _this.animateToValue$0(); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").reverse$0(0); }, _switch0$_handleChanged$1(value) { var t1 = this._widget.onChanged; t1.toString; value.toString; t1.call$1(value); }, build$1(_, context) { var theme, switchTheme, activeStates, inactiveStates, t1, effectiveActiveThumbColor, effectiveInactiveThumbColor, effectiveActiveTrackColor, effectiveInactiveTrackColor, focusedStates, t2, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, t3, t4, t5, t6, _this = this, _null = null; if (_this._needsPositionAnimation) { _this._needsPositionAnimation = false; _this.animateToValue$0(); } theme = A.Theme_of(context); switchTheme = A.SwitchTheme_of(context); activeStates = _this.get$states(); activeStates.add$1(0, B.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, B.MaterialState_4); _this._widget.toString; t1 = _this.get$_widgetThumbColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = switchTheme.thumbColor; t1 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActiveThumbColor = t1; } else effectiveActiveThumbColor = t1; if (effectiveActiveThumbColor == null) effectiveActiveThumbColor = _this.get$_defaultThumbColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetThumbColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = switchTheme.thumbColor; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactiveThumbColor = t1; } else effectiveInactiveThumbColor = t1; if (effectiveInactiveThumbColor == null) effectiveInactiveThumbColor = _this.get$_defaultThumbColor()._material_state$_resolve.call$1(inactiveStates); _this._widget.toString; t1 = _this.get$_widgetTrackColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = switchTheme.trackColor; t1 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActiveTrackColor = t1; } else effectiveActiveTrackColor = t1; if (effectiveActiveTrackColor == null) effectiveActiveTrackColor = _this.get$_defaultTrackColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetTrackColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = switchTheme.trackColor; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactiveTrackColor = t1; } else effectiveInactiveTrackColor = t1; if (effectiveInactiveTrackColor == null) effectiveInactiveTrackColor = _this.get$_defaultTrackColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, B.MaterialState_1); _this._widget.toString; t1 = switchTheme.overlayColor; t2 = t1 == null ? _null : t1.resolve$1(0, focusedStates); effectiveFocusOverlayColor = t2; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = theme.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, B.MaterialState_0); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, hoveredStates); effectiveHoverOverlayColor = t2; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = theme.hoverColor; activeStates.add$1(0, B.MaterialState_2); _this._widget.toString; t2 = t1 == null ? _null : t1.resolve$1(0, activeStates); effectiveActivePressedOverlayColor = t2; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 16 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 8 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) & 255); inactiveStates.add$1(0, B.MaterialState_2); _this._widget.toString; t1 = t1 == null ? _null : t1.resolve$1(0, inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = A.Color$fromARGB(31, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 16 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 8 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) & 255); t1 = _this._widget; t2 = t1.value; t3 = t1.dragStartBehavior; t4 = t1.focusNode; t1 = t1.size; t5 = _this._switch0$_painter; t5.set$position(0, A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__position, "_position")); t5.set$reaction(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reaction, "_reaction")); t5.set$reactionFocusFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade, "_reactionFocusFade")); t5.set$reactionHoverFade(A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade, "_reactionHoverFade")); t5.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t5.set$reactionColor(effectiveActivePressedOverlayColor); t5.set$hoverColor(effectiveHoverOverlayColor); t5.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t6 = switchTheme.splashRadius; t5.set$splashRadius(t6 == null ? 20 : t6); t5.set$downPosition(_this.ToggleableStateMixin__downPosition); t5.set$isFocused(_this.get$states().contains$1(0, B.MaterialState_1)); t5.set$isHovered(_this.get$states().contains$1(0, B.MaterialState_0)); t5.set$activeColor(effectiveActiveThumbColor); t5.set$inactiveColor(effectiveInactiveThumbColor); t5.set$activeThumbImage(_this._widget.activeThumbImage); t5.set$onActiveThumbImageError(_this._widget.onActiveThumbImageError); t5.set$inactiveThumbImage(_this._widget.inactiveThumbImage); t5.set$onInactiveThumbImageError(_this._widget.onInactiveThumbImageError); t5.set$activeTrackColor(effectiveActiveTrackColor); t5.set$inactiveTrackColor(effectiveInactiveTrackColor); t5.set$configuration(A.createLocalImageConfiguration(context, _null)); t5.set$isInteractive(_this.get$onChanged() != null); t5.set$trackInnerLength(_this._widget.size._dx - 40); t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t6.toString; t5.set$textDirection(0, t6.textDirection); t5.set$surfaceColor(theme.colorScheme.surface); t3 = A.GestureDetector$(_null, _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, t4, new A._MaterialStatePropertyWith(new A._MaterialSwitchState_build_closure(_this, switchTheme), type$._MaterialStatePropertyWith_MouseCursor), t5, t1), t3, true, _null, _null, _null, _null, _this.get$_switch0$_handleDragEnd(), _this.get$_switch0$_handleDragStart(), _this.get$_switch0$_handleDragUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null), false, false, false, t3, _null); } }; A._MaterialSwitchState__widgetThumbColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return this.$this._widget.inactiveThumbColor; if (states.contains$1(0, B.MaterialState_4)) return this.$this._widget.activeColor; return this.$this._widget.inactiveThumbColor; }, $signature: 224 }; A._MaterialSwitchState__defaultThumbColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return this.isDark ? B.Color_4282532418 : B.Color_4290624957; if (states.contains$1(0, B.MaterialState_4)) return this.theme.toggleableActiveColor; return this.isDark ? B.Color_4290624957 : B.Color_4294638330; }, $signature: 116 }; A._MaterialSwitchState__widgetTrackColor_closure.prototype = { call$1(states) { if (states.contains$1(0, B.MaterialState_6)) return this.$this._widget.inactiveTrackColor; if (states.contains$1(0, B.MaterialState_4)) return this.$this._widget.activeTrackColor; return this.$this._widget.inactiveTrackColor; }, $signature: 224 }; A._MaterialSwitchState__defaultTrackColor_closure.prototype = { call$1(states) { var t1, activeColor; if (states.contains$1(0, B.MaterialState_6)) return this.isDark ? B.Color_452984831 : B.Color_520093696; if (states.contains$1(0, B.MaterialState_4)) { states.add$1(0, B.MaterialState_4); t1 = this.$this; activeColor = t1.get$_widgetThumbColor()._material_state$_resolve.call$1(states); if (activeColor == null) activeColor = t1.get$_defaultThumbColor()._material_state$_resolve.call$1(states); return A.Color$fromARGB(128, activeColor.get$value(activeColor) >>> 16 & 255, activeColor.get$value(activeColor) >>> 8 & 255, activeColor.get$value(activeColor) & 255); } return this.isDark ? B.Color_1308622847 : B.Color_1375731712; }, $signature: 116 }; A._MaterialSwitchState__handleDragEnd_closure.prototype = { call$0() { this.$this._needsPositionAnimation = true; }, $signature: 0 }; A._MaterialSwitchState_build_closure.prototype = { call$1(states) { var t1 = A.MaterialStateProperty_resolveAs(this.$this._widget.mouseCursor, states, type$.nullable_MouseCursor); if (t1 == null) t1 = null; return t1 == null ? A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, $signature: 447 }; A._SwitchPainter.prototype = { set$activeThumbImage(value) { return; }, set$onActiveThumbImageError(value) { return; }, set$inactiveThumbImage(value) { return; }, set$onInactiveThumbImageError(value) { return; }, set$activeTrackColor(value) { if (J.$eq$(value, this._activeTrackColor)) return; this._activeTrackColor = value; this.notifyListeners$0(); }, set$inactiveTrackColor(value) { if (J.$eq$(value, this._inactiveTrackColor)) return; this._inactiveTrackColor = value; this.notifyListeners$0(); }, set$configuration(value) { if (value.$eq(0, this._switch0$_configuration)) return; this._switch0$_configuration = value; this.notifyListeners$0(); }, set$textDirection(_, value) { if (this._switch0$_textDirection == value) return; this._switch0$_textDirection = value; this.notifyListeners$0(); }, set$surfaceColor(value) { if (J.$eq$(value, this._surfaceColor)) return; this._surfaceColor = value; this.notifyListeners$0(); }, set$isInteractive(value) { if (value === this._isInteractive) return; this._isInteractive = value; this.notifyListeners$0(); }, set$trackInnerLength(value) { if (value === this._trackInnerLength) return; this._trackInnerLength = value; this.notifyListeners$0(); }, _handleDecorationChanged$0() { if (!this._isPainting) this.notifyListeners$0(); }, paint$2(canvas, size) { var t2, currentValue, visualPosition, t3, t4, thumbColor, thumbImage, thumbErrorListener, paint, horizontalOffset, verticalOffset, thumbHorizontalOffset, _this = this, t1 = _this._isInteractive; t1.toString; t2 = _this._toggleable$_position; currentValue = t2.get$value(t2); switch (_this._switch0$_textDirection.index) { case 0: visualPosition = 1 - currentValue; break; case 1: visualPosition = currentValue; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t2 = _this._inactiveTrackColor; t2.toString; t3 = _this._activeTrackColor; t3.toString; t3 = A.Color_lerp(t2, t3, currentValue); t3.toString; t2 = _this._inactiveColor; t2.toString; t4 = _this._toggleable$_activeColor; t4.toString; t4 = A.Color_lerp(t2, t4, currentValue); t4.toString; t2 = _this._surfaceColor; t2.toString; thumbColor = A.Color_alphaBlend(t4, t2); if (t1) thumbImage = currentValue < 0.5 ? _this._inactiveThumbImage : _this._activeThumbImage; else thumbImage = _this._inactiveThumbImage; if (t1) thumbErrorListener = currentValue < 0.5 ? _this._onInactiveThumbImageError : _this._onActiveThumbImageError; else thumbErrorListener = _this._onInactiveThumbImageError; paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, t3); horizontalOffset = (size._dx - 33) / 2; t1 = size._dy; verticalOffset = (t1 - 14) / 2; t2 = _this._trackInnerLength; t2.toString; thumbHorizontalOffset = horizontalOffset - 3 + visualPosition * t2; canvas.drawRRect$2(0, A.RRect$fromRectAndRadius(new A.Rect(horizontalOffset, verticalOffset, horizontalOffset + 33, verticalOffset + 14), B.Radius_7_7), paint); _this.paintRadialReaction$2$canvas$origin(canvas, new A.Offset(thumbHorizontalOffset + 10, t1 / 2)); _this._paintThumbWith$6(new A.Offset(thumbHorizontalOffset, verticalOffset - 3), canvas, currentValue, thumbColor, thumbImage, thumbErrorListener); }, _paintThumbWith$6(thumbPaintOffset, canvas, currentValue, thumbColor, thumbImage, thumbErrorListener) { var thumbPainter, inset, radius, t1, t2, t3, _this = this, _null = null; try { _this._isPainting = true; if (_this._cachedThumbPainter != null) if (J.$eq$(thumbColor, _this._cachedThumbColor)) t1 = false; else t1 = true; else t1 = true; if (t1) { _this._cachedThumbColor = thumbColor; _this._cachedThumbImage = thumbImage; _this._cachedThumbErrorListener = thumbErrorListener; t1 = _this._cachedThumbPainter; if (t1 != null) t1.dispose$0(0); _this._cachedThumbPainter = new A._BoxDecorationPainter(new A.BoxDecoration(thumbColor, _null, _null, _null, B.List_UOM, _null, B.BoxShape_1), _this.get$_handleDecorationChanged()); } t1 = _this._cachedThumbPainter; t1.toString; thumbPainter = t1; inset = 1 - Math.abs(currentValue - 0.5) * 2; radius = 10 - inset; t1 = thumbPaintOffset.$add(0, new A.Offset(0, inset)); t2 = _this._switch0$_configuration; t2.toString; t3 = radius * 2; thumbPainter.paint$3(canvas, t1, t2.copyWith$1$size(new A.Size(t3, t3))); } finally { _this._isPainting = false; } }, dispose$0(_) { var _this = this, t1 = _this._cachedThumbPainter; if (t1 != null) t1.dispose$0(0); _this._cachedThumbErrorListener = _this._cachedThumbImage = _this._cachedThumbColor = _this._cachedThumbPainter = null; _this.super$ToggleablePainter$dispose(0); } }; A.__MaterialSwitchState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0() { var t1, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, B.Duration_200000, _null, 1, _this._widget.value === false ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__position = A.CurvedAnimation$(B.Cubic_JUR0, A._lateReadCheck(t1, "_positionController"), B.Cubic_xDo0); t1 = A.AnimationController$(_null, B.Duration_100000, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reaction = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionHoverFadeController"), _null); t1 = A.AnimationController$(_null, B.Duration_50000, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t1; _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_reactionFocusFadeController"), _null); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, "_positionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController, "_reactionHoverFadeController").dispose$0(0); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController, "_reactionFocusFadeController").dispose$0(0); _this.super$__MaterialSwitchState_State_TickerProviderStateMixin$dispose(0); } }; A._SwitchListTileType.prototype = { toString$0(_) { return "_SwitchListTileType." + this._core$_name; } }; A.SwitchListTile.prototype = { build$1(_, context) { var t1, t2, control, leading, t3, _this = this, _null = null; switch (0) { case 0: t1 = _this.onChanged; t2 = _this.activeColor; control = A.Switch$(t2, _null, _null, false, _null, _null, _null, B.MaterialTapTargetSize_1, t1, _this.value); break; } switch (2) { case 1: case 2: leading = _this.secondary; break; } if (t2 == null) t2 = A.Theme_of(context).toggleableActiveColor; t1 = t1 != null; t3 = t1 ? new A.SwitchListTile_build_closure(_this) : _null; return new A.MergeSemantics(A.ListTileTheme_merge(A.ListTile$(false, _null, _this.dense, _null, t1, _null, _null, false, _null, leading, _null, t3, false, _null, _null, _this.subtitle, _null, _this.title, control, _null), t2), _null); }, get$value(receiver) { return this.value; } }; A.SwitchListTile_build_closure.prototype = { call$0() { var t1 = this.$this; t1.onChanged.call$1(!t1.value); }, $signature: 0 }; A.SwitchThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.thumbColor, _this.trackColor, _this.materialTapTargetSize, _this.mouseCursor, _this.overlayColor, _this.splashRadius, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.SwitchThemeData) if (other.thumbColor == _this.thumbColor) if (other.trackColor == _this.trackColor) t1 = other.overlayColor == _this.overlayColor && other.splashRadius == _this.splashRadius; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._LerpProperties0.prototype = { resolve$1(_, states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._SwitchThemeData_Object_Diagnosticable.prototype = {}; A.TabBarTheme.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.indicator, _this.indicatorSize, _this.labelColor, _this.labelPadding, _this.labelStyle, _this.unselectedLabelColor, _this.unselectedLabelStyle, _this.overlayColor, _this.splashFactory, _this.mouseCursor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.TabBarTheme) if (J.$eq$(other.indicator, _this.indicator)) if (J.$eq$(other.labelColor, _this.labelColor)) if (J.$eq$(other.labelPadding, _this.labelPadding)) if (J.$eq$(other.labelStyle, _this.labelStyle)) if (J.$eq$(other.unselectedLabelColor, _this.unselectedLabelColor)) if (J.$eq$(other.unselectedLabelStyle, _this.unselectedLabelStyle)) if (J.$eq$(other.overlayColor, _this.overlayColor)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A._LerpColors.prototype = { resolve$1(_, states) { var resolvedB, t1 = this.a, resolvedA = t1 == null ? null : t1.resolve$1(0, states); t1 = this.b; resolvedB = t1 == null ? null : t1.resolve$1(0, states); return A.Color_lerp(resolvedA, resolvedB, this.t); }, get$hashCode(_) { return A.Object_hash(this.a, this.b, this.t, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A._LerpColors && J.$eq$(other.a, _this.a) && J.$eq$(other.b, _this.b) && other.t === _this.t; }, $isMaterialStateProperty: 1 }; A._TabBarTheme_Object_Diagnosticable.prototype = {}; A.TabController.prototype = { _tab_controller$_copyWith$4$animationDuration$index$length$previousIndex(animationDuration, index, $length, previousIndex) { var t2, _this = this, t1 = index == null; if (!t1) _this._tab_controller$_animationController.set$value(0, index); t1 = t1 ? _this._tab_controller$_index : index; t2 = _this._tab_controller$_animationController; return new A.TabController(t2, _this._animationDuration, $length, t1, previousIndex, $.$get$ChangeNotifier__emptyListeners()); }, get$animation(_) { var t1 = this._tab_controller$_animationController; return t1 == null ? null : t1; }, _changeIndex$3$curve$duration(value, curve, duration) { var t2, _this = this, t1 = _this._tab_controller$_index; if (value === t1 || _this.length < 2) return; _this._previousIndex = t1; _this._tab_controller$_index = value; t1 = duration != null && duration._duration > 0; t2 = _this._indexIsChangingCount + 1; if (t1) { _this._indexIsChangingCount = t2; _this.notifyListeners$0(); t1 = _this._tab_controller$_animationController; t1.toString; t2 = _this._tab_controller$_index; curve.toString; t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(t2, curve, duration).whenCompleteOrCancel$1(new A.TabController__changeIndex_closure(_this)); } else { _this._indexIsChangingCount = t2; _this._tab_controller$_animationController.set$value(0, value); --_this._indexIsChangingCount; _this.notifyListeners$0(); } }, _changeIndex$1(value) { return this._changeIndex$3$curve$duration(value, null, null); }, animateTo$1(value) { this._changeIndex$3$curve$duration(value, B.Cubic_JUR, this._animationDuration); }, set$offset(_, value) { var t1 = A._lateReadCheck(this._tab_controller$_animationController.__AnimationController__value, "_value"), t2 = this._tab_controller$_index; if (value === t1 - t2) return; this._tab_controller$_animationController.set$value(0, value + t2); }, dispose$0(_) { var t1 = this._tab_controller$_animationController; if (t1 != null) t1.dispose$0(0); this._tab_controller$_animationController = null; this.super$ChangeNotifier$dispose(0); }, get$length(receiver) { return this.length; } }; A.TabController__changeIndex_closure.prototype = { call$0() { var t1 = this.$this; if (t1._tab_controller$_animationController != null) { --t1._indexIsChangingCount; t1.notifyListeners$0(); } }, $signature: 0 }; A._TabControllerScope.prototype = { updateShouldNotify$1(old) { return this.enabled !== old.enabled || this.controller !== old.controller; } }; A.DefaultTabController.prototype = { createState$0() { return new A._DefaultTabControllerState(null, null, B._StateLifecycle_0); }, get$length(receiver) { return this.length; } }; A._DefaultTabControllerState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this.___DefaultTabControllerState__controller = A.TabController$(null, 0, _this._widget.length, _this); }, dispose$0(_) { A._lateReadCheck(this.___DefaultTabControllerState__controller, "_controller").dispose$0(0); this.super$__DefaultTabControllerState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { return new A._TabControllerScope(A._lateReadCheck(this.___DefaultTabControllerState__controller, "_controller"), A.TickerMode_of(context), this._widget.child, null); }, didUpdateWidget$1(oldWidget) { var previousIndex, t1, t2, newIndex, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.length !== _this._widget.length) { previousIndex = A._lateReadCheck(_this.___DefaultTabControllerState__controller, _s11_)._previousIndex; t1 = A._lateReadCheck(_this.___DefaultTabControllerState__controller, _s11_)._tab_controller$_index; t2 = _this._widget.length; if (t1 >= t2) { newIndex = Math.max(0, t2 - 1); previousIndex = A._lateReadCheck(_this.___DefaultTabControllerState__controller, _s11_)._tab_controller$_index; } else newIndex = null; _this.___DefaultTabControllerState__controller = A._lateReadCheck(_this.___DefaultTabControllerState__controller, _s11_)._tab_controller$_copyWith$4$animationDuration$index$length$previousIndex(null, newIndex, _this._widget.length, previousIndex); } _this._widget.toString; } }; A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.UnderlineTabIndicator.prototype = { lerpFrom$2(a, t) { var t1, t2; if (a instanceof A.UnderlineTabIndicator) { t1 = A.BorderSide_lerp(a.borderSide, this.borderSide, t); t2 = A.EdgeInsetsGeometry_lerp(a.insets, this.insets, t); t2.toString; return new A.UnderlineTabIndicator(t1, t2); } return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2; if (b instanceof A.UnderlineTabIndicator) { t1 = A.BorderSide_lerp(this.borderSide, b.borderSide, t); t2 = A.EdgeInsetsGeometry_lerp(this.insets, b.insets, t); t2.toString; return new A.UnderlineTabIndicator(t1, t2); } return this.super$Decoration$lerpTo(b, t); }, createBoxPainter$1(onChanged) { return new A._UnderlinePainter(this, onChanged); }, _indicatorRectFor$2(rect, textDirection) { var indicator = this.insets.resolve$1(0, textDirection).deflateRect$1(rect), t1 = indicator.left, t2 = this.borderSide.width, t3 = indicator.bottom - t2; return new A.Rect(t1, t3, t1 + (indicator.right - t1), t3 + t2); }, getClipPath$2(rect, textDirection) { var t1 = A.Path_Path(); t1.addRect$1(0, this._indicatorRectFor$2(rect, textDirection)); return t1; } }; A._UnderlinePainter.prototype = { paint$3(canvas, offset, configuration) { var t5, t6, t7, indicator, paint, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, t4 = t1._dx; t1 = t1._dy; t5 = configuration.textDirection; t5.toString; t6 = this.decoration; t7 = t6.borderSide; indicator = t6._indicatorRectFor$2(new A.Rect(t2, t3, t2 + t4, t3 + t1), t5).inflate$1(-(t7.width / 2)); paint = t7.toPaint$0(); paint.set$strokeCap(B.StrokeCap_2); t7 = indicator.bottom; canvas.drawLine$3(0, new A.Offset(indicator.left, t7), new A.Offset(indicator.right, t7), paint); } }; A.Tab.prototype = { _buildLabelText$0() { var _null = null, t1 = this.child; if (t1 == null) { t1 = this.text; t1.toString; t1 = A.Text$(t1, _null, _null, B.TextOverflow_1, _null, false, _null, _null, _null, _null); } return t1; }, build$1(_, context) { var label = this._buildLabelText$0(); return new A.SizedBox(null, 46, A.Center$(label, null, 1), null); }, get$preferredSize() { return B.Size_8aB0; } }; A._TabStyle.prototype = { build$1(_, context) { var defaultStyle, defaultUnselectedStyle, textStyle, selectedColor, unselectedColor, color, _this = this, _null = null, themeData = A.Theme_of(context), tabBarTheme = A.Theme_of(context).tabBarTheme, animation = type$.Animation_double._as(_this.listenable), t1 = _this.labelStyle, t2 = tabBarTheme.labelStyle; if (t2 == null) { t2 = themeData.primaryTextTheme.bodyLarge; t2.toString; } defaultStyle = t2.copyWith$1$inherit(true); t2 = tabBarTheme.unselectedLabelStyle; t1 = t2 == null ? t1 : t2; if (t1 == null) { t1 = themeData.primaryTextTheme.bodyLarge; t1.toString; } defaultUnselectedStyle = t1.copyWith$1$inherit(true); t1 = _this.selected; if (t1) { t2 = A.TextStyle_lerp(defaultStyle, defaultUnselectedStyle, animation.get$value(animation)); t2.toString; textStyle = t2; } else { t2 = A.TextStyle_lerp(defaultUnselectedStyle, defaultStyle, animation.get$value(animation)); t2.toString; textStyle = t2; } selectedColor = tabBarTheme.labelColor; if (selectedColor == null) { t2 = themeData.primaryTextTheme.bodyLarge.color; t2.toString; selectedColor = t2; } unselectedColor = tabBarTheme.unselectedLabelColor; if (unselectedColor == null) unselectedColor = A.Color$fromARGB(178, selectedColor.get$value(selectedColor) >>> 16 & 255, selectedColor.get$value(selectedColor) >>> 8 & 255, selectedColor.get$value(selectedColor) & 255); if (t1) { t1 = A.Color_lerp(selectedColor, unselectedColor, animation.get$value(animation)); t1.toString; color = t1; } else { t1 = A.Color_lerp(unselectedColor, selectedColor, animation.get$value(animation)); t1.toString; color = t1; } t1 = textStyle.copyWith$1$color(color); return A.DefaultTextStyle$(A.IconTheme_merge(_this.child, new A.IconThemeData(color, _null, 24, _null)), _null, _null, B.TextOverflow_0, true, t1, _null, _null, B.TextWidthBasis_0); } }; A._TabLabelBarRenderer.prototype = { performLayout$0() { var child, xOffsets, t1, t2, _this = this; _this.super$RenderFlex$performLayout(); child = _this.ContainerRenderObjectMixin__firstChild; xOffsets = A._setArrayType([], type$.JSArray_double); for (t1 = type$.FlexParentData; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); xOffsets.push(t2.offset._dx); child = t2.ContainerParentDataMixin_nextSibling; } switch (_this._flex$_textDirection.index) { case 0: B.JSArray_methods.insert$2(xOffsets, 0, _this._box$_size._dx); break; case 1: xOffsets.push(_this._box$_size._dx); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this._flex$_textDirection; t1.toString; t2 = _this._box$_size._dx; _this.onPerformLayout.call$3(xOffsets, t1, t2); } }; A._TabLabelBar.prototype = { createRenderObject$1(context) { var _this = this, _null = null, t1 = _this.getEffectiveTextDirection$1(context); t1.toString; t1 = new A._TabLabelBarRenderer(_this.onPerformLayout, _this.direction, _this.mainAxisAlignment, _this.mainAxisSize, _this.crossAxisAlignment, t1, _this.verticalDirection, _null, B.Clip_0, A.LayerHandle$(type$.ClipRectLayer), A.List_List$filled(4, A.TextPainter$(_null, _null, _null, _null, _null, B.TextAlign_4, B.TextDirection_1, _null, 1, B.TextWidthBasis_0), false, type$.TextPainter), true, 0, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, _null); return t1; }, updateRenderObject$2(context, renderObject) { this.super$Flex$updateRenderObject(context, renderObject); renderObject.onPerformLayout = this.onPerformLayout; } }; A._IndicatorPainter.prototype = { markNeedsPaint$0() { this._tabs$_needsPaint = true; }, dispose$0(_) { var t1 = this._tabs$_painter; if (t1 != null) t1.dispose$0(0); }, indicatorRect$2(tabBarSize, tabIndex) { var t1, tabLeft, tabRight, insets, t2, rect, _this = this; switch (_this._currentTextDirection.index) { case 0: t1 = _this._currentTabOffsets; tabLeft = t1[tabIndex + 1]; tabRight = t1[tabIndex]; break; case 1: t1 = _this._currentTabOffsets; tabLeft = t1[tabIndex]; tabRight = t1[tabIndex + 1]; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } insets = _this.indicatorPadding; t1 = tabLeft + (tabRight - tabLeft); t2 = 0 + tabBarSize._dy; rect = new A.Rect(tabLeft, 0, t1, t2); if (!new A.Size(t1 - tabLeft, t2 - 0).$ge(0, new A.Size(insets.get$horizontal(), insets.get$_top(insets) + insets.get$_bottom(insets)))) throw A.wrapException(A.FlutterError_FlutterError("indicatorPadding insets should be less than Tab Size\nRect Size : " + rect.get$size(rect).toString$0(0) + ", Insets: " + insets.toString$0(0))); return insets.deflateRect$1(rect); }, paint$2(canvas, size) { var t1, index, ltr, t2, from, to, t3, t4, t5, _this = this, _null = null; _this._tabs$_needsPaint = false; if (_this._tabs$_painter == null) _this._tabs$_painter = _this.indicator.createBoxPainter$1(_this.get$markNeedsPaint()); t1 = _this.controller; index = t1._tab_controller$_index; t1 = A._lateReadCheck(t1.get$animation(t1).__AnimationController__value, "_value"); ltr = index > t1; t2 = ltr ? B.JSNumber_methods.floor$0(t1) : B.JSNumber_methods.ceil$0(t1); from = B.JSInt_methods.clamp$2(t2, 0, _this._currentTabOffsets.length - 2); t2 = ltr ? from + 1 : from - 1; to = B.JSNumber_methods.clamp$2(t2, 0, _this._currentTabOffsets.length - 2); t1 = _this._currentRect = A.Rect_lerp(_this.indicatorRect$2(size, from), _this.indicatorRect$2(size, to), Math.abs(t1 - from)); t2 = t1.right; t3 = t1.left; t4 = t1.bottom; t1 = t1.top; t5 = _this._currentTextDirection; _this._tabs$_painter.paint$3(canvas, new A.Offset(t3, t1), new A.ImageConfiguration(_null, _null, _null, t5, new A.Size(t2 - t3, t4 - t1), _null)); }, shouldRepaint$1(old) { var _this = this; return _this._tabs$_needsPaint || _this.controller != old.controller || !J.$eq$(_this.indicator, old.indicator) || _this.tabKeys.length !== old.tabKeys.length || !A.listEquals0(_this._currentTabOffsets, old._currentTabOffsets) || _this._currentTextDirection != old._currentTextDirection; } }; A._ChangeAnimation.prototype = { get$parent(_) { var t1 = this.controller; t1 = t1.get$animation(t1); t1.toString; return t1; }, removeStatusListener$1(listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeStatusListener(listener); }, removeListener$1(_, listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeListener(0, listener); }, get$value(_) { return A._indexChangeProgress(this.controller); } }; A._DragAnimation.prototype = { get$parent(_) { var t1 = this.controller; t1 = t1.get$animation(t1); t1.toString; return t1; }, removeStatusListener$1(listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeStatusListener(listener); }, removeListener$1(_, listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeListener(0, listener); }, get$value(_) { var t1 = this.controller, t2 = t1.length, controllerValue = J.clamp$2$n(A._lateReadCheck(t1.get$animation(t1).__AnimationController__value, "_value"), 0, t2 - 1); t2 = this.index; t2.toString; return B.JSNumber_methods.clamp$2(Math.abs(controllerValue - t2), 0, 1); } }; A._TabBarScrollPosition.prototype = { applyContentDimensions$2(minScrollExtent, maxScrollExtent) { var t1, t2, t3, result, _this = this; if (_this._initialViewportDimensionWasZero !== true) { t1 = _this._viewportDimension; t1.toString; _this._initialViewportDimensionWasZero = t1 !== 0; t2 = _this.tabBar; t3 = t2._currentIndex; t3.toString; _this._pixels = t2._tabScrollOffset$4(t3, t1, minScrollExtent, maxScrollExtent); result = false; } else result = true; return _this.super$ScrollPosition$applyContentDimensions(minScrollExtent, maxScrollExtent) && result; } }; A._TabBarScrollController.prototype = { createScrollPosition$3(physics, context, oldPosition) { var _null = null, t1 = $.$get$ChangeNotifier__emptyListeners(); t1 = new A._TabBarScrollPosition(this.tabBar, B.ScrollDirection_0, physics, context, true, _null, new A.ValueNotifier(false, t1, type$.ValueNotifier_bool), t1); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, _null, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, _null, _null, true, oldPosition, physics); return t1; } }; A.TabBar.prototype = { get$preferredSize() { var t1, t2, maxHeight, _i; for (t1 = this.tabs, t2 = t1.length, maxHeight = 46, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) maxHeight = Math.max(A.checkNum(t1[_i].get$preferredSize()._dy), maxHeight); return new A.Size(1 / 0, maxHeight + 2); }, get$tabHasTextAndIcon() { var t1, t2, _i, item; for (t1 = this.tabs, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { item = t1[_i]; if (item.get$preferredSize()._dy === 72) return true; } return false; }, createState$0() { return new A._TabBarState(B._StateLifecycle_0); } }; A._TabBarState.prototype = { initState$0() { var t1, t2; this.super$State$initState(); t1 = this._widget.tabs; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GlobalKey>>"); this.___TabBarState__tabKeys = A.List_List$of(new A.MappedListIterable(t1, new A._TabBarState_initState_closure(), t2), true, t2._eval$1("ListIterable.E")); }, get$_indicator() { var t1, color, t2, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = A.Theme_of(t1).tabBarTheme.indicator; if (t1 != null) return t1; color = _this._widget.indicatorColor; if (color == null) { t1 = _this._framework$_element; t1.toString; color = A.Theme_of(t1).indicatorColor; } _this._widget.toString; t1 = color.get$value(color); t2 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); if (t2 == null) t2 = null; else { t2 = t2.color; t2 = t2 == null ? null : t2.get$value(t2); } t2 = t1 === t2; t1 = t2; if (t1) color = B.Color_4294967295; _this._widget.toString; return new A.UnderlineTabIndicator(new A.BorderSide(color, 2, B.BorderStyle_1), B.EdgeInsets_0_0_0_0); }, get$_controllerIsValid() { var t1 = this._tabs$_controller; return (t1 == null ? null : t1.get$animation(t1)) != null; }, _updateTabController$0() { var t1, _this = this, newController = _this._widget.controller; if (newController == null) { t1 = _this._framework$_element; t1.toString; newController = A.DefaultTabController_of(t1); } if (newController == _this._tabs$_controller) return; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); _this._tabs$_controller.removeListener$1(0, _this.get$_handleTabControllerTick()); } _this._tabs$_controller = newController; if (newController != null) { t1 = newController.get$animation(newController); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_handleTabControllerAnimationTick()); _this._tabs$_controller.addListener$1(0, _this.get$_handleTabControllerTick()); _this._currentIndex = _this._tabs$_controller._tab_controller$_index; } }, _initIndicatorPainter$0() { var t1, t2, t3, t4, t5, _this = this; if (!_this.get$_controllerIsValid()) t1 = null; else { t1 = _this._tabs$_controller; t1.toString; t2 = _this.get$_indicator(); _this._widget.toString; t3 = _this._framework$_element; t3.toString; t3 = A.Theme_of(t3).tabBarTheme; _this._widget.toString; t4 = A._lateReadCheck(_this.___TabBarState__tabKeys, "_tabKeys"); t5 = _this._indicatorPainter; t1 = new A._IndicatorPainter(t1, t2, t3.indicatorSize, B.EdgeInsets_0_0_0_0, t4, t1.get$animation(t1)); if (t5 != null) { t2 = t5._currentTabOffsets; t5 = t5._currentTextDirection; t1._currentTabOffsets = t2; t1._currentTextDirection = t5; } } _this._indicatorPainter = t1; }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._updateTabController$0(); this._initIndicatorPainter$0(); }, didUpdateWidget$1(oldWidget) { var t1, delta, _list, t2, n, _this = this, _s8_ = "_tabKeys"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; if (t1.controller != oldWidget.controller) { _this._updateTabController$0(); _this._initIndicatorPainter$0(); } else { if (J.$eq$(t1.indicatorColor, oldWidget.indicatorColor)) { _this._widget.toString; t1 = false; } else t1 = true; if (t1) _this._initIndicatorPainter$0(); } if (_this._widget.tabs.length > J.get$length$asx(A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_))) { delta = _this._widget.tabs.length - J.get$length$asx(A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_)); t1 = A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_); _list = J.JSArray_JSArray$allocateGrowable(delta, type$.GlobalKey_State_StatefulWidget); for (t2 = type$.LabeledGlobalKey_State_StatefulWidget, n = 0; n < delta; ++n) _list[n] = new A.LabeledGlobalKey(null, t2); J.addAll$1$ax(t1, _list); } else if (_this._widget.tabs.length < J.get$length$asx(A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_))) J.removeRange$2$ax(A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_), _this._widget.tabs.length, J.get$length$asx(A._lateReadCheck(_this.___TabBarState__tabKeys, _s8_))); }, dispose$0(_) { var t1, _this = this; _this._indicatorPainter.dispose$0(0); if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); _this._tabs$_controller.removeListener$1(0, _this.get$_handleTabControllerTick()); } _this._tabs$_controller = null; _this.super$State$dispose(0); }, _tabScrollOffset$4(index, viewportWidth, minExtent, maxExtent) { var t1, tabCenter, _this = this; if (!_this._widget.isScrollable) return 0; t1 = _this._indicatorPainter._currentTabOffsets; tabCenter = (t1[index] + t1[index + 1]) / 2; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case B.TextDirection_0: tabCenter = A._lateReadCheck(_this.___TabBarState__tabStripWidth, "_tabStripWidth") - tabCenter; break; case B.TextDirection_1: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return B.JSNumber_methods.clamp$2(tabCenter - viewportWidth / 2, minExtent, maxExtent); }, _tabCenteredScrollOffset$1(index) { var t2, t3, position = B.JSArray_methods.get$single(this._tabs$_scrollController._positions), t1 = position._viewportDimension; t1.toString; t2 = position._minScrollExtent; t2.toString; t3 = position._maxScrollExtent; t3.toString; return this._tabScrollOffset$4(index, t1, t2, t3); }, _handleTabControllerAnimationTick$0() { var leadingPosition, middlePosition, trailingPosition, index, offset, _this = this, t1 = _this._tabs$_controller; if (t1._indexIsChangingCount === 0 && _this._widget.isScrollable) { t1 = _this._currentIndex = t1._tab_controller$_index; leadingPosition = t1 > 0 ? _this._tabCenteredScrollOffset$1(t1 - 1) : null; t1 = _this._currentIndex; t1.toString; middlePosition = _this._tabCenteredScrollOffset$1(t1); t1 = _this._currentIndex; t1.toString; trailingPosition = t1 < _this._indicatorPainter._currentTabOffsets.length - 2 ? _this._tabCenteredScrollOffset$1(t1 + 1) : null; t1 = _this._tabs$_controller; index = t1._tab_controller$_index; t1 = A._lateReadCheck(t1.get$animation(t1).__AnimationController__value, "_value"); if (t1 === index - 1) offset = leadingPosition == null ? middlePosition : leadingPosition; else if (t1 === index + 1) offset = trailingPosition == null ? middlePosition : trailingPosition; else if (t1 === index) offset = middlePosition; else if (t1 < index) if (leadingPosition == null) offset = middlePosition; else { t1 = A.lerpDouble(middlePosition, leadingPosition, index - t1); t1.toString; offset = t1; } else if (trailingPosition == null) offset = middlePosition; else { t1 = A.lerpDouble(middlePosition, trailingPosition, t1 - index); t1.toString; offset = t1; } _this._tabs$_scrollController.jumpTo$1(offset); } }, _handleTabControllerTick$0() { var offset, _this = this, t1 = _this._tabs$_controller._tab_controller$_index; if (t1 !== _this._currentIndex) { _this._currentIndex = t1; if (_this._widget.isScrollable) { offset = _this._tabCenteredScrollOffset$1(t1); _this._tabs$_scrollController.animateTo$3$curve$duration(offset, B.Cubic_JUR, B.Duration_300000); } } _this.setState$1(new A._TabBarState__handleTabControllerTick_closure()); }, _saveTabOffsets$3(tabOffsets, textDirection, width) { var t1; this.___TabBarState__tabStripWidth = width; t1 = this._indicatorPainter; if (t1 != null) { t1._currentTabOffsets = tabOffsets; t1._currentTextDirection = textDirection; } }, _buildStyledTab$3(child, selected, animation) { var _null = null; this._widget.toString; return A._TabStyle$(animation, child, _null, _null, selected, _null, _null); }, build$1(_, context) { var tabBarTheme, wrappedTabs, t2, previousIndex, t3, t4, animation, tabIndex, tabCount, t5, t6, t7, index, t8, effectiveMouseCursor, index0, t9, tabBar, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; if (_this._tabs$_controller.length === 0) { _this._widget.toString; return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, 48, _null, _null, _null, _null, _null, _null); } tabBarTheme = A.Theme_of(context).tabBarTheme; wrappedTabs = A.List_List$generate(_this._widget.tabs.length, new A._TabBarState_build_closure(_this, tabBarTheme), true, type$.Widget); t2 = _this._tabs$_controller; if (t2 != null) { previousIndex = t2._previousIndex; t3 = t2._indexIsChangingCount; t4 = _this._currentIndex; if (t3 !== 0) { animation = new A._ChangeAnimation(t2); t4.toString; wrappedTabs[t4] = _this._buildStyledTab$3(wrappedTabs[t4], true, animation); wrappedTabs[previousIndex] = _this._buildStyledTab$3(wrappedTabs[previousIndex], false, animation); } else { t4.toString; wrappedTabs[t4] = _this._buildStyledTab$3(wrappedTabs[t4], true, new A._DragAnimation(t2, t4)); t2 = _this._currentIndex; t2.toString; if (t2 > 0) { tabIndex = t2 - 1; t2 = _this._tabs$_controller; t2.toString; t3 = A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus); wrappedTabs[tabIndex] = _this._buildStyledTab$3(wrappedTabs[tabIndex], false, new A.ReverseAnimation(new A._DragAnimation(t2, tabIndex), new A.ObserverList(t3, type$.ObserverList_of_void_Function_AnimationStatus), 0)); } t2 = _this._currentIndex; t2.toString; if (t2 < _this._widget.tabs.length - 1) { tabIndex = t2 + 1; t2 = _this._tabs$_controller; t2.toString; t3 = A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus); wrappedTabs[tabIndex] = _this._buildStyledTab$3(wrappedTabs[tabIndex], false, new A.ReverseAnimation(new A._DragAnimation(t2, tabIndex), new A.ObserverList(t3, type$.ObserverList_of_void_Function_AnimationStatus), 0)); } } } t2 = _this._widget; tabCount = t2.tabs.length; for (t3 = type$.JSArray_Widget, t4 = tabBarTheme.splashFactory, t5 = tabBarTheme.overlayColor, t6 = type$.nullable_MouseCursor, t7 = type$.MaterialState, index = 0; index < tabCount; t2 = t8, index = index0) { t2 = A.LinkedHashSet_LinkedHashSet$_empty(t7); if (index === _this._currentIndex) t2.add$1(0, B.MaterialState_4); _this._widget.toString; t8 = A.MaterialStateProperty_resolveAs(_null, t2, t6); if (t8 == null) effectiveMouseCursor = _null; else effectiveMouseCursor = t8; if (effectiveMouseCursor == null) effectiveMouseCursor = B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, t2); _this._widget.toString; t2 = wrappedTabs[index]; t8 = _this._currentIndex; index0 = index + 1; t9 = t1.tabLabel$2$tabCount$tabIndex(tabCount, index0); t2 = A.InkWell$(false, _null, true, new A.Padding(new A.EdgeInsets(0, 0, 0, 2), new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([t2, new A.Semantics(new A.SemanticsProperties(_null, _null, _null, index === t8, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t9, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, _null, _null)], t3), _null), _null), _null, true, _null, _null, _null, _null, _null, effectiveMouseCursor, _null, _null, _null, _null, _null, new A._TabBarState_build_closure0(_this, index), _null, _null, t5, _null, _null, t4); wrappedTabs[index] = t2; t8 = _this._widget; if (!t8.isScrollable) wrappedTabs[index] = new A.Expanded(1, B.FlexFit_0, t2, _null); } t1 = _this._indicatorPainter; tabBar = A.CustomPaint$(A._TabStyle$(B.C__AlwaysDismissedAnimation, new A._TabLabelBar(_this.get$_saveTabOffsets(), B.Axis_0, B.MainAxisAlignment_0, B.MainAxisSize_1, B.CrossAxisAlignment_2, _null, B.VerticalDirection_1, _null, wrappedTabs, _null), _null, _null, false, _null, _null), _null, _null, t1, B.Size_0_0); if (t2.isScrollable) { t1 = _this._tabs$_scrollController; if (t1 == null) t1 = _this._tabs$_scrollController = new A._TabBarScrollController(_this, 0, true, _null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); _this._widget.toString; tabBar = A.SingleChildScrollView$(tabBar, t1, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0); } return tabBar; } }; A._TabBarState_initState_closure.prototype = { call$1(tab) { return new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget); }, $signature: 2255 }; A._TabBarState__handleTabControllerTick_closure.prototype = { call$0() { }, $signature: 0 }; A._TabBarState_build_closure.prototype = { call$1(index) { var adjustedPadding, t3, _null = null, t1 = this.$this, t2 = t1._widget, tab = t2.tabs[index]; if (t2.get$tabHasTextAndIcon() && tab.get$preferredSize()._dy === 46) { t1._widget.toString; t2 = this.tabBarTheme.labelPadding; if (t2 != null) adjustedPadding = t2.add$1(0, B.EdgeInsets_0_13_0_13); else adjustedPadding = B.EdgeInsets_16_13_16_13; } else adjustedPadding = _null; if (adjustedPadding == null) { t1._widget.toString; t2 = _null; } else t2 = adjustedPadding; if (t2 == null) t2 = this.tabBarTheme.labelPadding; if (t2 == null) t2 = B.EdgeInsets_16_0_16_0; t3 = J.$index$asx(A._lateReadCheck(t1.___TabBarState__tabKeys, "_tabKeys"), index); return A.Center$(new A.Padding(t2, new A.KeyedSubtree(t1._widget.tabs[index], t3), _null), 1, _null); }, $signature: 2246 }; A._TabBarState_build_closure0.prototype = { call$0() { var t1 = this.$this, t2 = this.index; t1._tabs$_controller.animateTo$1(t2); t1 = t1._widget.onTap; if (t1 != null) t1.call$1(t2); }, $signature: 0 }; A.TabBarView.prototype = { createState$0() { return new A._TabBarViewState(B._StateLifecycle_0); } }; A._TabBarViewState.prototype = { get$_controllerIsValid() { var t1 = this._tabs$_controller; return (t1 == null ? null : t1.get$animation(t1)) != null; }, _updateTabController$0() { var t1, _this = this, newController = _this._widget.controller; if (newController == null) { t1 = _this._framework$_element; t1.toString; newController = A.DefaultTabController_of(t1); } if (newController == _this._tabs$_controller) return; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); } _this._tabs$_controller = newController; if (newController != null) { t1 = newController.get$animation(newController); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_handleTabControllerAnimationTick()); } }, initState$0() { this.super$State$initState(); this._tabs$_updateChildren$0(); }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); _this._updateTabController$0(); t1 = _this._tabs$_controller._tab_controller$_index; _this._currentIndex = t1; _this._widget.toString; _this.___TabBarViewState__pageController = A.PageController$(t1, 1); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.controller != oldWidget.controller) { _this._updateTabController$0(); _this._currentIndex = _this._tabs$_controller._tab_controller$_index; ++_this._warpUnderwayCount; t1 = A._lateReadCheck(_this.___TabBarViewState__pageController, "_pageController"); t2 = _this._currentIndex; t2.toString; t1.jumpToPage$1(t2); --_this._warpUnderwayCount; } if (_this._widget.children !== oldWidget.children && _this._warpUnderwayCount === 0) _this._tabs$_updateChildren$0(); }, dispose$0(_) { var t1, _this = this; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); } _this._tabs$_controller = null; _this.super$State$dispose(0); }, _tabs$_updateChildren$0() { var t1 = this._widget.children; this.___TabBarViewState__children = t1; this.___TabBarViewState__childrenWithKey = A.KeyedSubtree_ensureUniqueKeysForList(t1); }, _handleTabControllerAnimationTick$0() { var t1, _this = this; if (_this._warpUnderwayCount > 0 || _this._tabs$_controller._indexIsChangingCount === 0) return; t1 = _this._tabs$_controller._tab_controller$_index; if (t1 !== _this._currentIndex) { _this._currentIndex = t1; _this._warpToCurrentIndex$0(); } }, _warpToCurrentIndex$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, position, t1, t2, duration, previousIndex, initialPage, t3; var $async$_warpToCurrentIndex$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._framework$_element == null) { $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } position = type$._PagePosition._as(B.JSArray_methods.get$single(A._lateReadCheck($async$self.___TabBarViewState__pageController, "_pageController")._positions)); t1 = position.get$page(position); t2 = $async$self._currentIndex; t2.toString; if (t1 === t2) { $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } t1 = $async$self._tabs$_controller; duration = t1._animationDuration; if (duration._duration === 0) { t1 = A._lateReadCheck($async$self.___TabBarViewState__pageController, "_pageController"); t2 = $async$self._currentIndex; t2.toString; t1.jumpToPage$1(t2); $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } previousIndex = t1._previousIndex; $async$goto = Math.abs(t2 - previousIndex) === 1 ? 3 : 4; break; case 3: // then ++$async$self._warpUnderwayCount; t1 = A._lateReadCheck($async$self.___TabBarViewState__pageController, "_pageController"); t2 = $async$self._currentIndex; t2.toString; $async$goto = 5; return A._asyncAwait(t1.animateToPage$3$curve$duration(t2, B.Cubic_JUR, duration), $async$_warpToCurrentIndex$0); case 5: // returning from await. --$async$self._warpUnderwayCount; $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; case 4: // join initialPage = t2 > previousIndex ? t2 - 1 : t2 + 1; t1 = A._lateReadCheck($async$self.___TabBarViewState__childrenWithKey, "_childrenWithKey"); $async$self.setState$1(new A._TabBarViewState__warpToCurrentIndex_closure($async$self, initialPage, previousIndex)); A._lateReadCheck($async$self.___TabBarViewState__pageController, "_pageController").jumpToPage$1(initialPage); t2 = A._lateReadCheck($async$self.___TabBarViewState__pageController, "_pageController"); t3 = $async$self._currentIndex; t3.toString; $async$goto = 6; return A._asyncAwait(t2.animateToPage$3$curve$duration(t3, B.Cubic_JUR, duration), $async$_warpToCurrentIndex$0); case 6: // returning from await. if ($async$self._framework$_element == null) { $async$returnValue = A.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } $async$self.setState$1(new A._TabBarViewState__warpToCurrentIndex_closure0($async$self, t1)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_warpToCurrentIndex$0, $async$completer); }, _tabs$_handleScrollNotification$1(notification) { var position, t2, t3, _this = this, _s15_ = "_pageController", t1 = _this._warpUnderwayCount; if (t1 > 0) return false; if (notification.ViewportNotificationMixin__depth !== 0) return false; _this._warpUnderwayCount = t1 + 1; if (notification instanceof A.ScrollUpdateNotification && _this._tabs$_controller._indexIsChangingCount === 0) { t1 = type$._PagePosition; position = t1._as(B.JSArray_methods.get$single(A._lateReadCheck(_this.___TabBarViewState__pageController, _s15_)._positions)); t2 = position.get$page(position); t2.toString; t3 = _this._tabs$_controller; if (Math.abs(t2 - t3._tab_controller$_index) > 1) { position = t1._as(B.JSArray_methods.get$single(A._lateReadCheck(_this.___TabBarViewState__pageController, _s15_)._positions)); t2 = position.get$page(position); t2.toString; t3._changeIndex$1(B.JSNumber_methods.round$0(t2)); t2 = _this._tabs$_controller; _this._currentIndex = t2._tab_controller$_index; } else t2 = t3; position = t1._as(B.JSArray_methods.get$single(A._lateReadCheck(_this.___TabBarViewState__pageController, _s15_)._positions)); t1 = position.get$page(position); t1.toString; t2.set$offset(0, B.JSNumber_methods.clamp$2(t1 - _this._tabs$_controller._tab_controller$_index, -1, 1)); } else if (notification instanceof A.ScrollEndNotification) { t1 = _this._tabs$_controller; t1.toString; t2 = type$._PagePosition; position = t2._as(B.JSArray_methods.get$single(A._lateReadCheck(_this.___TabBarViewState__pageController, _s15_)._positions)); t3 = position.get$page(position); t3.toString; t1._changeIndex$1(B.JSNumber_methods.round$0(t3)); t3 = _this._tabs$_controller; _this._currentIndex = t3._tab_controller$_index; if (t3._indexIsChangingCount === 0) { position = t2._as(B.JSArray_methods.get$single(A._lateReadCheck(_this.___TabBarViewState__pageController, _s15_)._positions)); t1 = position.get$page(position); t1.toString; t3.set$offset(0, B.JSNumber_methods.clamp$2(t1 - _this._tabs$_controller._tab_controller$_index, -1, 1)); } } --_this._warpUnderwayCount; return false; }, build$1(_, context) { var t1, t2, t3, _this = this; _this._widget.toString; t1 = A._lateReadCheck(_this.___TabBarViewState__pageController, "_pageController"); _this._widget.toString; t2 = B.PageScrollPhysics_null.buildParent$1(B.ClampingScrollPhysics_null); t3 = A._lateReadCheck(_this.___TabBarViewState__childrenWithKey, "_childrenWithKey"); if (t1 == null) t1 = $.$get$_defaultPageController(); return new A.NotificationListener(_this.get$_tabs$_handleScrollNotification(), new A.PageView(t1, new A.PageScrollPhysics(t2), null, A.SliverChildListDelegate$(t3, true, true, true), B.DragStartBehavior_1, null), null, type$.NotificationListener_ScrollNotification); } }; A._TabBarViewState__warpToCurrentIndex_closure.prototype = { call$0() { var t2, t3, temp, _s16_ = "_childrenWithKey", t1 = this.$this; ++t1._warpUnderwayCount; t2 = A.List_List$of(A._lateReadCheck(t1.___TabBarViewState__childrenWithKey, _s16_), false, type$.Widget); t1.___TabBarViewState__childrenWithKey = t2; t3 = this.initialPage; temp = J.$index$asx(A._lateReadCheck(t2, _s16_), t3); t2 = this.previousIndex; J.$indexSet$ax(A._lateReadCheck(t1.___TabBarViewState__childrenWithKey, _s16_), t3, J.$index$asx(A._lateReadCheck(t1.___TabBarViewState__childrenWithKey, _s16_), t2)); J.$indexSet$ax(A._lateReadCheck(t1.___TabBarViewState__childrenWithKey, _s16_), t2, temp); }, $signature: 0 }; A._TabBarViewState__warpToCurrentIndex_closure0.prototype = { call$0() { var t1 = this.$this; --t1._warpUnderwayCount; if (t1._widget.children !== A._lateReadCheck(t1.___TabBarViewState__children, "_children")) t1._tabs$_updateChildren$0(); else t1.___TabBarViewState__childrenWithKey = this.originalChildren; }, $signature: 0 }; A.__ChangeAnimation_Animation_AnimationWithParentMixin.prototype = {}; A.__DragAnimation_Animation_AnimationWithParentMixin.prototype = {}; A.TextButton.prototype = { defaultStyleOf$1(context) { var t1, t2, t3, t4, theme = A.Theme_of(context), colorScheme = theme.colorScheme; A.Theme_of(context).toString; t1 = theme.shadowColor; t2 = theme.textTheme; t3 = A._scaledPadding0(context); t4 = theme.visualDensity; t4 = A.TextButton_styleFrom(B.Alignment_0_0, B.Duration_200000, B.Color_0, B.SystemMouseCursor_basic, 0, true, B.SystemMouseCursor_click, B.Size_wjo, B.Size_64_36, colorScheme.onSurface, t3, colorScheme.primary, t1, B.RoundedRectangleBorder_LkV0, B.C__InkRippleFactory, theme.materialTapTargetSize, t2.labelLarge, t4); return t4; }, themeStyleOf$1(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TextButtonTheme); t1 = A.Theme_of(context).textButtonTheme; return t1.style; } }; A._TextButtonDefaultForeground.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_6)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; }, toString$0(_) { var t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return "{disabled: " + A.S(t1) + ", otherwise: " + A.S(this.primary) + "}"; } }; A._TextButtonDefaultOverlay.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_0)) { t1 = this.primary; return A.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } if (states.contains$1(0, B.MaterialState_1) || states.contains$1(0, B.MaterialState_2)) { t1 = this.primary; return A.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; }, toString$0(_) { var t1 = this.primary; return "{hovered: " + A.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255).toString$0(0) + ", focused,pressed: " + A.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255).toString$0(0) + ", otherwise: null}"; } }; A._TextButtonDefaultMouseCursor.prototype = { resolve$1(_, states) { if (states.contains$1(0, B.MaterialState_6)) return this.disabledCursor; return this.enabledCursor; } }; A.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; A.TextButtonThemeData.prototype = { get$hashCode(_) { return J.get$hashCode$(this.style); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.TextButtonThemeData && J.$eq$(other.style, this.style); } }; A._TextButtonThemeData_Object_Diagnosticable.prototype = {}; A._TextFieldSelectionGestureDetectorBuilder.prototype = { onForcePressStart$1(details) { var t1; this.super$TextSelectionGestureDetectorBuilder$onForcePressStart(details); t1 = this.delegate; if (t1.get$selectionEnabled() && this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onForcePressEnd$1(details) { }, onSingleLongTapMoveUpdate$1(details) { var t2, t1 = this.delegate; if (t1.get$selectionEnabled()) { t2 = this._text_field$_state._framework$_element; t2.toString; switch (A.Theme_of(t2).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(B.SelectionChangedCause_2, details.globalPosition); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t2 = details.globalPosition; type$.RenderEditable._as(t1).selectWordsInRange$3$cause$from$to(B.SelectionChangedCause_2, t2.$sub(0, details.offsetFromOrigin), t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, onSingleTapUp$1(details) { var t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1.hideToolbar$0(); this.super$TextSelectionGestureDetectorBuilder$onSingleTapUp(details); t1 = this._text_field$_state; t1._requestKeyboard$0(); t1._widget.toString; }, onSingleLongTapStart$1(details) { var t2, t3, t1 = this.delegate; if (t1.get$selectionEnabled()) { t2 = this._text_field$_state; t3 = t2._framework$_element; t3.toString; switch (A.Theme_of(t3).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(B.SelectionChangedCause_2, details.globalPosition); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t3 = t1._lastTapDownPosition; t3.toString; t1.selectWordsInRange$2$cause$from(B.SelectionChangedCause_2, t3); t2 = t2._framework$_element; t2.toString; A.Feedback_forLongPress(t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } } }; A.TextField.prototype = { createState$0() { var _null = null; return new A._TextFieldState(new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_EditableTextState), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0); } }; A._TextFieldState.prototype = { get$_text_field$_effectiveController() { var t1 = this._widget.controller; if (t1 == null) { t1 = this._text_field$_controller._restoration_properties$_value; t1.toString; } return t1; }, get$_effectiveFocusNode() { var t1 = this._widget.focusNode; if (t1 == null) { t1 = this._text_field$_focusNode; if (t1 == null) { t1 = A.FocusNode$(true, null, true, true, null, null, false); this._text_field$_focusNode = t1; } } return t1; }, get$_effectiveMaxLengthEnforcement() { var t1 = this._widget.maxLengthEnforcement; if (t1 == null) { t1 = this._framework$_element; t1.toString; t1 = A.LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement(A.Theme_of(t1).platform); } return t1; }, get$forcePressEnabled() { return A._lateReadCheck(this.___TextFieldState_forcePressEnabled, "forcePressEnabled"); }, get$selectionEnabled() { return this._widget.enableInteractiveSelection; }, get$_isEnabled() { var t1 = this._widget, t2 = t1.enabled; if (t2 == null) t1 = t1.decoration.enabled; else t1 = t2; return t1; }, get$_hasIntrinsicError() { var t2, t1 = this._widget.maxLength; if (t1 != null) if (t1 > 0) { t1 = this.get$_text_field$_effectiveController()._change_notifier$_value.text; t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); t1 = t1.get$length(t1); t2 = this._widget.maxLength; t2.toString; t2 = t1 > t2; t1 = t2; } else t1 = false; else t1 = false; return t1; }, _getEffectiveDecoration$0() { var t2, themeData, t3, t4, t5, effectiveDecoration, currentLength, isFocused, builtCounter, counter, counterText, semanticCounterText, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this._framework$_element; t2.toString; themeData = A.Theme_of(t2); t2 = _this._widget.decoration; t2 = t2.applyDefaults$1(themeData.inputDecorationTheme); t3 = _this.get$_isEnabled(); t4 = _this._widget; t5 = t4.decoration.hintMaxLines; effectiveDecoration = t2.copyWith$2$enabled$hintMaxLines(t3, t5 == null ? t4.maxLines : t5); t2 = effectiveDecoration.counter == null; if (!t2 || effectiveDecoration.counterText != null) return effectiveDecoration; t3 = _this.get$_text_field$_effectiveController()._change_notifier$_value.text; t3 = t3.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t3); currentLength = t3.get$length(t3); if (t2 && effectiveDecoration.counterText == null && _this._widget.buildCounter != null) { isFocused = _this.get$_effectiveFocusNode().get$hasFocus(); t1 = _this._widget; t2 = t1.buildCounter; t2.toString; t3 = _this._framework$_element; t3.toString; builtCounter = t2.call$4$currentLength$isFocused$maxLength(t3, currentLength, isFocused, t1.maxLength); if (builtCounter != null) counter = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, isFocused, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, builtCounter, _null); else counter = _null; return effectiveDecoration.copyWith$1$counter(counter); } t2 = _this._widget.maxLength; if (t2 == null) return effectiveDecoration; counterText = "" + currentLength; if (t2 > 0) { counterText += "/" + A.S(t2); semanticCounterText = t1.remainingTextFieldCharacterCount$1(B.JSInt_methods.clamp$2(t2 - currentLength, 0, t2)); } else semanticCounterText = ""; if (_this.get$_hasIntrinsicError()) { t1 = effectiveDecoration.errorText; if (t1 == null) t1 = ""; t2 = effectiveDecoration.errorStyle; if (t2 == null) { t2 = themeData.textTheme.bodySmall; t2.toString; t2 = t2.copyWith$1$color(themeData.errorColor); } return effectiveDecoration.copyWith$4$counterStyle$counterText$errorText$semanticCounterText(t2, counterText, t1, semanticCounterText); } return effectiveDecoration.copyWith$2$counterText$semanticCounterText(counterText, semanticCounterText); }, initState$0() { var _this = this; _this.super$State$initState(); _this.___TextFieldState__selectionGestureDetectorBuilder = new A._TextFieldSelectionGestureDetectorBuilder(_this, _this); if (_this._widget.controller == null) _this._text_field$_createLocalController$0(); _this.get$_effectiveFocusNode().set$canRequestFocus(_this.get$_isEnabled()); _this.get$_effectiveFocusNode().addListener$1(0, _this.get$_text_field$_handleFocusChanged()); }, get$_text_field$_canRequestFocus() { var mode, t1 = this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: return this.get$_isEnabled(); case 1: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, didChangeDependencies$0() { this.super$__TextFieldState_State_RestorationMixin$didChangeDependencies(); this.get$_effectiveFocusNode().set$canRequestFocus(this.get$_text_field$_canRequestFocus()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$__TextFieldState_State_RestorationMixin$didUpdateWidget(oldWidget); t1 = _this._widget.controller == null; if (t1 && oldWidget.controller != null) _this._text_field$_createLocalController$1(oldWidget.controller._change_notifier$_value); else if (!t1 && oldWidget.controller == null) { t1 = _this._text_field$_controller; t1.toString; _this.unregisterFromRestoration$1(t1); t1 = _this._text_field$_controller; t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); _this._text_field$_controller = null; } t1 = _this._widget.focusNode; t2 = oldWidget.focusNode; if (t1 != t2) { t1 = t2 == null ? _this._text_field$_focusNode : t2; if (t1 != null) t1.removeListener$1(0, _this.get$_text_field$_handleFocusChanged()); t1 = _this._widget.focusNode; if (t1 == null) t1 = _this._text_field$_focusNode; if (t1 != null) t1.addListener$1(0, _this.get$_text_field$_handleFocusChanged()); } _this.get$_effectiveFocusNode().set$canRequestFocus(_this.get$_text_field$_canRequestFocus()); if (_this.get$_effectiveFocusNode().get$hasFocus() && _this._widget.readOnly !== oldWidget.readOnly && _this.get$_isEnabled()) { t1 = _this.get$_text_field$_effectiveController()._change_notifier$_value.selection; if (t1.start == t1.end) _this._showSelectionHandles = !_this._widget.readOnly; } }, restoreState$2(oldBucket, initialRestore) { var t1 = this._text_field$_controller; if (t1 != null) this.registerForRestoration$2(t1, "controller"); }, _text_field$_createLocalController$1(value) { var t1, _this = this; if (value == null) t1 = new A.RestorableTextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); else t1 = new A.RestorableTextEditingController(value, $.$get$ChangeNotifier__emptyListeners()); _this._text_field$_controller = t1; if (!_this.get$restorePending()) { t1 = _this._text_field$_controller; t1.toString; _this.registerForRestoration$2(t1, "controller"); } }, _text_field$_createLocalController$0() { return this._text_field$_createLocalController$1(null); }, get$restorationId() { return this._widget.restorationId; }, dispose$0(_) { var t1, _this = this; _this.get$_effectiveFocusNode().removeListener$1(0, _this.get$_text_field$_handleFocusChanged()); t1 = _this._text_field$_focusNode; if (t1 != null) t1.dispose$0(0); t1 = _this._text_field$_controller; if (t1 != null) { t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); } _this.super$__TextFieldState_State_RestorationMixin$dispose(0); }, _requestKeyboard$0() { var t1 = this.editableTextKey.get$currentState(); if (t1 != null) t1.requestKeyboard$0(); }, _shouldShowSelectionHandles$1(cause) { var t1, _this = this; if (!A._lateReadCheck(_this.___TextFieldState__selectionGestureDetectorBuilder, "_selectionGestureDetectorBuilder")._shouldShowSelectionToolbar) return false; if (cause === B.SelectionChangedCause_4) return false; if (_this._widget.readOnly) { t1 = _this.get$_text_field$_effectiveController()._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) return false; if (!_this.get$_isEnabled()) return false; if (cause === B.SelectionChangedCause_2 || cause === B.SelectionChangedCause_7) return true; if (_this.get$_text_field$_effectiveController()._change_notifier$_value.text.length !== 0) return true; return false; }, _text_field$_handleFocusChanged$0() { this.setState$1(new A._TextFieldState__handleFocusChanged_closure()); }, _handleSelectionChanged$2(selection, cause) { var t1, _this = this, willShowSelectionHandles = _this._shouldShowSelectionHandles$1(cause); if (willShowSelectionHandles !== _this._showSelectionHandles) _this.setState$1(new A._TextFieldState__handleSelectionChanged_closure(_this, willShowSelectionHandles)); t1 = _this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_2: case B.TargetPlatform_4: if (cause === B.SelectionChangedCause_2 || cause === B.SelectionChangedCause_6) { t1 = _this.editableTextKey.get$currentState(); if (t1 != null) t1.bringIntoView$1(selection.get$extent()); } return; case B.TargetPlatform_3: case B.TargetPlatform_5: case B.TargetPlatform_1: case B.TargetPlatform_0: if (cause === B.SelectionChangedCause_6) { t1 = _this.editableTextKey.get$currentState(); if (t1 != null) t1.bringIntoView$1(selection.get$extent()); } return; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _handleSelectionHandleTapped$0() { var t1 = this.get$_text_field$_effectiveController()._change_notifier$_value.selection; if (t1.start == t1.end) this.editableTextKey.get$currentState().toggleToolbar$0(); }, _handleHover$1(hovering) { if (hovering !== this._isHovering) this.setState$1(new A._TextFieldState__handleHover_closure(this, hovering)); }, get$autofillId() { var t1 = this.editableTextKey.get$currentState(); t1.toString; return "EditableText-" + A.Primitives_objectHashCode(t1); }, autofill$1(newEditingValue) { return this.editableTextKey.get$currentState().updateEditingValue$1(newEditingValue); }, get$textInputConfiguration() { var autofillHints, t2, t3, autofillConfiguration, _this = this, t1 = _this._widget.autofillHints; if (t1 == null) autofillHints = null; else autofillHints = J.JSArray_JSArray$markFixed(t1.slice(0), A._arrayInstanceType(t1)._precomputed1); if (autofillHints != null) { t1 = _this.editableTextKey.get$currentState(); t1.toString; t1 = A.Primitives_objectHashCode(t1); t2 = _this.get$_text_field$_effectiveController()._change_notifier$_value; t3 = _this._widget.decoration; autofillConfiguration = new A.AutofillConfiguration(true, "EditableText-" + t1, autofillHints, t2, t3.hintText); } else autofillConfiguration = B.AutofillConfiguration_lYx; t1 = _this.editableTextKey.get$currentState().get$textInputConfiguration(); return A.TextInputConfiguration$(null, t1.autocorrect, autofillConfiguration, t1.enableDeltaModel, true, t1.enableInteractiveSelection, true, t1.inputAction, t1.inputType, t1.keyboardAppearance, t1.obscureText, t1.readOnly, t1.smartDashesType, t1.smartQuotesType, t1.textCapitalization); }, build$1(_, context) { var style, controller, focusNode, t2, t3, cursorRadius, cupertinoTheme, textSelectionControls, cursorColor, selectionColor, cursorOffset, autocorrectionTextRectColor, paintCursorAboveText, cursorOpacityAnimates, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, child, effectiveMouseCursor, _this = this, _null = null, _box_0 = {}, theme = A.Theme_of(context), selectionTheme = A.TextSelectionTheme_of(context), t1 = theme.textTheme.titleMedium; t1.toString; style = t1.merge$1(_this._widget.style); _this._widget.toString; t1 = theme.colorScheme; controller = _this.get$_text_field$_effectiveController(); focusNode = _this.get$_effectiveFocusNode(); t2 = A._setArrayType([], type$.JSArray_TextInputFormatter); t3 = _this._widget.inputFormatters; if (t3 != null) B.JSArray_methods.addAll$1(t2, t3); t3 = _this._widget.maxLength; if (t3 != null) t2.push(new A.LengthLimitingTextInputFormatter(t3, _this.get$_effectiveMaxLengthEnforcement())); cursorRadius = _this._widget.cursorRadius; _box_0.handleDidGainAccessibilityFocus = null; switch (theme.platform) { case B.TargetPlatform_2: cupertinoTheme = A.CupertinoTheme_of(context); _this.___TextFieldState_forcePressEnabled = true; textSelectionControls = $.$get$cupertinoTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t3 = cupertinoTheme.get$primaryColor(); selectionColor = A.Color$fromARGB(102, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); } cursorOffset = new A.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); autocorrectionTextRectColor = selectionColor; paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = B.Radius_2_2; break; case B.TargetPlatform_4: cupertinoTheme = A.CupertinoTheme_of(context); _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$cupertinoDesktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t3 = cupertinoTheme.get$primaryColor(); selectionColor = A.Color$fromARGB(102, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); } cursorOffset = new A.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); _box_0.handleDidGainAccessibilityFocus = new A._TextFieldState_build_closure(_this); autocorrectionTextRectColor = _null; paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = B.Radius_2_2; break; case B.TargetPlatform_0: case B.TargetPlatform_1: _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$materialTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = t1.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t3 = t1.primary; selectionColor = A.Color$fromARGB(102, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); } autocorrectionTextRectColor = _null; cursorOffset = autocorrectionTextRectColor; paintCursorAboveText = false; cursorOpacityAnimates = false; break; case B.TargetPlatform_3: _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$desktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = t1.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t3 = t1.primary; selectionColor = A.Color$fromARGB(102, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); } autocorrectionTextRectColor = _null; cursorOffset = autocorrectionTextRectColor; paintCursorAboveText = false; cursorOpacityAnimates = false; break; case B.TargetPlatform_5: _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$desktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = t1.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t3 = t1.primary; selectionColor = A.Color$fromARGB(102, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); } _box_0.handleDidGainAccessibilityFocus = new A._TextFieldState_build_closure0(_this); autocorrectionTextRectColor = _null; cursorOffset = autocorrectionTextRectColor; paintCursorAboveText = false; cursorOpacityAnimates = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t3 = _this.RestorationMixin__bucket; t4 = _this._widget.readOnly || !_this.get$_isEnabled(); t5 = _this._widget; t6 = t5.toolbarOptions; t7 = t5.showCursor; t8 = _this._showSelectionHandles; t9 = t5.keyboardType; t10 = t5.textInputAction; t11 = t5.textCapitalization; t12 = t5.strutStyle; t13 = t5.textAlign; t14 = t5.textDirection; t15 = t5.autofocus; t16 = t5.obscuringCharacter; t17 = t5.obscureText; t18 = t5.autocorrect; t19 = t5.smartDashesType; t20 = t5.smartQuotesType; t21 = t5.maxLines; t22 = t5.minLines; t5 = t5.expands; t23 = focusNode.get$hasFocus() ? selectionColor : _null; t24 = _this._widget; t25 = t24.enableInteractiveSelection; t26 = t25 ? textSelectionControls : _null; t27 = t24.onChanged; t28 = t24.onEditingComplete; t29 = t24.onSubmitted; t30 = t24.cursorWidth; t31 = t24.cursorHeight; t32 = t24.scrollPadding; t6 = A.UnmanagedRestorationScope$(t3, A.EditableText$(t18, autocorrectionTextRectColor, _this, B.List_empty0, t15, B.CupertinoDynamicColor_YIZ, B.Clip_1, controller, cursorColor, t31, cursorOffset, cursorOpacityAnimates, cursorRadius, t30, B.DragStartBehavior_1, true, t25, true, t5, focusNode, true, t2, _this.editableTextKey, t1.brightness, t9, t21, t22, B.C__DeferringMouseCursor, t17, t16, _null, t27, t28, _this.get$_handleSelectionChanged(), _this.get$_handleSelectionHandleTapped(), t29, paintCursorAboveText, t4, true, "editable", true, t24.scrollController, t32, t24.scrollPhysics, t23, t26, B.BoxHeightStyle_0, B.BoxWidthStyle_0, t7, t8, t19, t20, t12, style, t13, t11, t14, _null, t10, _null, B.TextWidthBasis_0, t6)); _this._widget.toString; child = A.AnimatedBuilder$(new A._MergingListenable(A._setArrayType([focusNode, controller], type$.JSArray_Listenable)), new A._TextFieldState_build_closure1(_this, focusNode, controller), new A.RepaintBoundary(t6, _null)); _this._widget.toString; t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this.get$_isEnabled()) t1.add$1(0, B.MaterialState_6); if (_this._isHovering) t1.add$1(0, B.MaterialState_0); if (focusNode.get$hasFocus()) t1.add$1(0, B.MaterialState_1); t2 = _this._widget.decoration; if (t2.errorText != null || _this.get$_hasIntrinsicError()) t1.add$1(0, B.MaterialState_7); effectiveMouseCursor = A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_text_textable, t1, type$.MouseCursor); _box_0.semanticsMaxValueLength = null; if (_this.get$_effectiveMaxLengthEnforcement() !== B.MaxLengthEnforcement_0) { t1 = _this._widget.maxLength; t1 = t1 != null && t1 > 0; } else t1 = false; if (t1) _box_0.semanticsMaxValueLength = _this._widget.maxLength; return new A.FocusTrapArea(focusNode, A.MouseRegion$(new A.IgnorePointer(!_this.get$_isEnabled(), _null, A.AnimatedBuilder$(controller, new A._TextFieldState_build_closure2(_box_0, _this), A._lateReadCheck(_this.___TextFieldState__selectionGestureDetectorBuilder, "_selectionGestureDetectorBuilder").buildGestureDetector$2$behavior$child(B.HitTestBehavior_2, child)), _null), effectiveMouseCursor, _null, new A._TextFieldState_build_closure3(_this), new A._TextFieldState_build_closure4(_this), _null), _null); }, $isAutofillClient: 1, get$editableTextKey() { return this.editableTextKey; } }; A._TextFieldState__handleFocusChanged_closure.prototype = { call$0() { }, $signature: 0 }; A._TextFieldState__handleSelectionChanged_closure.prototype = { call$0() { this.$this._showSelectionHandles = this.willShowSelectionHandles; }, $signature: 0 }; A._TextFieldState__handleHover_closure.prototype = { call$0() { this.$this._isHovering = this.hovering; }, $signature: 0 }; A._TextFieldState_build_closure.prototype = { call$0() { var t1 = this.$this; if (!t1.get$_effectiveFocusNode().get$hasFocus() && t1.get$_effectiveFocusNode().get$canRequestFocus()) t1.get$_effectiveFocusNode().requestFocus$0(); }, $signature: 0 }; A._TextFieldState_build_closure0.prototype = { call$0() { var t1 = this.$this; if (!t1.get$_effectiveFocusNode().get$hasFocus() && t1.get$_effectiveFocusNode().get$canRequestFocus()) t1.get$_effectiveFocusNode().requestFocus$0(); }, $signature: 0 }; A._TextFieldState_build_closure1.prototype = { call$2(context, child) { var t6, t7, t8, t1 = this.$this, t2 = t1._getEffectiveDecoration$0(), t3 = t1._widget, t4 = t3.style, t5 = t3.textAlign; t3 = t3.textAlignVertical; t6 = t1._isHovering; t7 = this.focusNode.get$hasFocus(); t8 = this.controller._change_notifier$_value.text.length; return A.InputDecorator$(t4, child, t2, t1._widget.expands, t8 === 0, t7, t6, t5, t3); }, $signature: 2245 }; A._TextFieldState_build_closure3.prototype = { call$1($event) { return this.$this._handleHover$1(true); }, $signature: 264 }; A._TextFieldState_build_closure4.prototype = { call$1($event) { return this.$this._handleHover$1(false); }, $signature: 200 }; A._TextFieldState_build_closure2.prototype = { call$2(context, child) { var _null = null, t1 = this._box_0, t2 = t1.semanticsMaxValueLength, t3 = this.$this, t4 = t3.get$_text_field$_effectiveController()._change_notifier$_value.text; t4 = t4.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t4); t4 = t4.get$length(t4); t3 = t3._widget.readOnly ? _null : new A._TextFieldState_build__closure(t3); t1 = t1.handleDidGainAccessibilityFocus; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, child, _null); }, $signature: 2244 }; A._TextFieldState_build__closure.prototype = { call$0() { var t1 = this.$this; if (!t1.get$_text_field$_effectiveController()._change_notifier$_value.selection.get$isValid()) t1.get$_text_field$_effectiveController().set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.get$_text_field$_effectiveController()._change_notifier$_value.text.length)); t1._requestKeyboard$0(); }, $signature: 0 }; A.__TextFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__TextFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__TextFieldState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.TextFormField.prototype = { createState$0() { var _null = null, t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TextFormFieldState(new A.RestorableStringN(_null, t1), new A.RestorableBool(false, t1), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0); } }; A.TextFormField_closure.prototype = { call$1(field) { var t1, t2, t3, t4, effectiveDecoration, t5, t6, t7, t8, t9, t10, _this = this; type$._TextFormFieldState._as(field); t1 = _this.decoration; t2 = t1 == null; t3 = t2 ? B.InputDecoration_C4W : t1; t4 = field._framework$_element; t4.toString; effectiveDecoration = t3.applyDefaults$1(A.Theme_of(t4).inputDecorationTheme); t4 = field.RestorationMixin__bucket; t3 = field.get$_effectiveController(); t5 = effectiveDecoration.copyWith$1$errorText(field._errorText._restoration_properties$_value); t6 = _this.readOnly; t7 = _this.obscureText; t8 = t7 ? B.SmartDashesType_0 : B.SmartDashesType_1; t9 = t7 ? B.SmartQuotesType_0 : B.SmartQuotesType_1; t10 = _this.enabled; if (t10 == null) t1 = t2 ? null : t1.enabled; else t1 = t10; t2 = !t7 || !t6; return A.UnmanagedRestorationScope$(t4, A.TextField$(_this.autocorrect, _this.autofillHints, _this.autofocus, _this.buildCounter, t3, _this.cursorColor, _this.cursorHeight, _this.cursorRadius, _this.cursorWidth, t5, _this.enableIMEPersonalizedLearning, t2, _this.enableSuggestions, t1 !== false, _this.expands, _this.focusNode, _this.inputFormatters, _this.keyboardAppearance, _this.keyboardType, _this.maxLength, _this.maxLengthEnforcement, _this.maxLines, _this.minLines, _this.mouseCursor, t7, _this.obscuringCharacter, new A.TextFormField_closure_onChangedHandler(field, _this.onChanged), _this.onEditingComplete, _this.onFieldSubmitted, _this.onTap, t6, _this.restorationId, _this.scrollController, _this.scrollPadding, _this.scrollPhysics, _this.selectionControls, _this.showCursor, t8, t9, _this.strutStyle, _this.style, _this.textAlign, _this.textAlignVertical, _this.textCapitalization, _this.textDirection, _this.textInputAction, _this.toolbarOptions)); }, $signature: 2237 }; A.TextFormField_closure_onChangedHandler.prototype = { call$1(value) { var t1; this.field.didChange$1(value); t1 = this.onChanged; if (t1 != null) t1.call$1(value); }, $signature: 117 }; A._TextFormFieldState.prototype = { get$_effectiveController() { var t1 = type$.TextFormField._as(A.State.prototype.get$widget.call(this)).controller; if (t1 == null) { t1 = this._text_form_field$_controller._restoration_properties$_value; t1.toString; } return t1; }, restoreState$2(oldBucket, initialRestore) { var t1, _this = this; _this.super$FormFieldState$restoreState(oldBucket, initialRestore); t1 = _this._text_form_field$_controller; if (t1 != null) _this.registerForRestoration$2(t1, "controller"); _this.__FormFieldState__value = _this.get$_effectiveController()._change_notifier$_value.text; }, _createLocalController$1(value) { var t1, _this = this; if (value == null) t1 = new A.RestorableTextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); else t1 = new A.RestorableTextEditingController(value, $.$get$ChangeNotifier__emptyListeners()); _this._text_form_field$_controller = t1; if (!_this.get$restorePending()) { t1 = _this._text_form_field$_controller; t1.toString; _this.registerForRestoration$2(t1, "controller"); } }, initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = type$.TextFormField; if (t1._as(A.State.prototype.get$widget.call(_this)).controller == null) { t1 = _this._widget.initialValue; _this._createLocalController$1(t1 != null ? new A.TextEditingValue(t1, B.TextSelection_ke5, B.TextRange_m1_m1) : null); } else t1._as(A.State.prototype.get$widget.call(_this)).controller.addListener$1(0, _this.get$_handleControllerChanged()); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, t4, _this = this; _this.super$_FormFieldState_State_RestorationMixin$didUpdateWidget(oldWidget); t1 = type$.TextFormField; t2 = t1._as(A.State.prototype.get$widget.call(_this)).controller; t3 = oldWidget.controller; if (t2 != t3) { t2 = t3 == null; if (!t2) t3.removeListener$1(0, _this.get$_handleControllerChanged()); t4 = t1._as(A.State.prototype.get$widget.call(_this)).controller; if (t4 != null) t4.addListener$1(0, _this.get$_handleControllerChanged()); if (!t2 && t1._as(A.State.prototype.get$widget.call(_this)).controller == null) _this._createLocalController$1(t3._change_notifier$_value); if (t1._as(A.State.prototype.get$widget.call(_this)).controller != null) { _this.__FormFieldState__value = t1._as(A.State.prototype.get$widget.call(_this)).controller._change_notifier$_value.text; if (t2) { t1 = _this._text_form_field$_controller; t1.toString; _this.unregisterFromRestoration$1(t1); t1 = _this._text_form_field$_controller; t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); _this._text_form_field$_controller = null; } } } }, dispose$0(_) { var _this = this, t1 = type$.TextFormField._as(A.State.prototype.get$widget.call(_this)).controller; if (t1 != null) t1.removeListener$1(0, _this.get$_handleControllerChanged()); t1 = _this._text_form_field$_controller; if (t1 != null) { t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); } _this.super$_FormFieldState_State_RestorationMixin$dispose(0); }, didChange$1(value) { var t1; this.super$FormFieldState$didChange(value); if (this.get$_effectiveController()._change_notifier$_value.text != value) { t1 = this.get$_effectiveController(); t1.set$text(0, value == null ? "" : value); } }, _handleControllerChanged$0() { var _this = this, t1 = _this.get$_effectiveController()._change_notifier$_value.text, t2 = _this.get$_form$_value(); if (t1 == null ? t2 != null : t1 !== t2) _this.didChange$1(_this.get$_effectiveController()._change_notifier$_value.text); } }; A.MaterialTextSelectionControls.prototype = { getHandleSize$1(textLineHeight) { return B.Size_22_22; }, buildHandle$4(context, type, textHeight, onTap) { var handle, _null = null, theme = A.Theme_of(context), handleColor = A.TextSelectionTheme_of(context).selectionHandleColor; if (handleColor == null) handleColor = theme.colorScheme.primary; handle = new A.SizedBox(22, 22, A.CustomPaint$(A.GestureDetector$(B.HitTestBehavior_2, _null, B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, onTap, _null, _null, _null, _null, _null, _null), _null, _null, new A._TextSelectionHandlePainter(handleColor, _null), B.Size_0_0), _null); switch (type.index) { case 0: return A.Transform$rotate(B.Alignment_0_0, 1.5707963267948966, handle, _null); case 1: return handle; case 2: return A.Transform$rotate(B.Alignment_0_0, 0.7853981633974483, handle, _null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getHandleAnchor$2(type, textLineHeight) { switch (type.index) { case 0: return B.Offset_22_0; case 1: return B.Offset_0_0; case 2: return B.Offset_11_m4; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._TextSelectionHandlePainter.prototype = { paint$2(canvas, size) { var radius, circle, t1, path, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, this.color); radius = size._dx / 2; circle = A.Rect$fromCircle(new A.Offset(radius, radius), radius); t1 = 0 + radius; path = A.Path_Path(); path.addOval$1(0, circle); path.addRect$1(0, new A.Rect(0, 0, t1, t1)); canvas.drawPath$2(0, path, paint); }, shouldRepaint$1(oldPainter) { return !J.$eq$(this.color, oldPainter.color); } }; A.TextSelectionThemeData.prototype = { get$hashCode(_) { return A.Object_hash(this.cursorColor, this.selectionColor, this.selectionHandleColor, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.TextSelectionThemeData && J.$eq$(other.cursorColor, _this.cursorColor) && J.$eq$(other.selectionColor, _this.selectionColor) && J.$eq$(other.selectionHandleColor, _this.selectionHandleColor); } }; A._TextSelectionThemeData_Object_Diagnosticable.prototype = {}; A.TextTheme.prototype = { merge$1(other) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, _this = this, _null = null; if (other == null) return _this; t1 = _this.displayLarge; t2 = t1 == null ? _null : t1.merge$1(other.displayLarge); if (t2 == null) t2 = other.displayLarge; t3 = _this.displayMedium; t4 = t3 == null ? _null : t3.merge$1(other.displayMedium); if (t4 == null) t4 = other.displayMedium; t5 = _this.displaySmall; t6 = t5 == null ? _null : t5.merge$1(other.displaySmall); if (t6 == null) t6 = other.displaySmall; t7 = _this.headlineLarge; t8 = t7 == null ? _null : t7.merge$1(other.headlineLarge); if (t8 == null) t8 = other.headlineLarge; t9 = _this.headlineMedium; t10 = t9 == null ? _null : t9.merge$1(other.headlineMedium); if (t10 == null) t10 = other.headlineMedium; t11 = _this.headlineSmall; t12 = t11 == null ? _null : t11.merge$1(other.headlineSmall); if (t12 == null) t12 = other.headlineSmall; t13 = _this.titleLarge; t14 = t13 == null ? _null : t13.merge$1(other.titleLarge); if (t14 == null) t14 = other.titleLarge; t15 = _this.titleMedium; t16 = t15 == null ? _null : t15.merge$1(other.titleMedium); if (t16 == null) t16 = other.titleMedium; t17 = _this.titleSmall; t18 = t17 == null ? _null : t17.merge$1(other.titleSmall); if (t18 == null) t18 = other.titleSmall; t19 = _this.bodyLarge; t20 = t19 == null ? _null : t19.merge$1(other.bodyLarge); if (t20 == null) t20 = other.bodyLarge; t21 = _this.bodyMedium; t22 = t21 == null ? _null : t21.merge$1(other.bodyMedium); if (t22 == null) t22 = other.bodyMedium; t23 = _this.bodySmall; t24 = t23 == null ? _null : t23.merge$1(other.bodySmall); if (t24 == null) t24 = other.bodySmall; t25 = _this.labelLarge; t26 = t25 == null ? _null : t25.merge$1(other.labelLarge); if (t26 == null) t26 = other.labelLarge; t27 = _this.labelMedium; t28 = t27 == null ? _null : t27.merge$1(other.labelMedium); if (t28 == null) t28 = other.labelMedium; t29 = _this.labelSmall; t30 = t29 == null ? _null : t29.merge$1(other.labelSmall); if (t30 == null) t30 = other.labelSmall; if (t2 == null) t2 = _null; t1 = t2 == null ? t1 : t2; t2 = t4 == null ? _null : t4; if (t2 == null) t2 = t3; t3 = t6 == null ? _null : t6; if (t3 == null) t3 = t5; t4 = t8 == null ? t7 : t8; t5 = t10 == null ? _null : t10; if (t5 == null) t5 = t9; t6 = t12 == null ? _null : t12; if (t6 == null) t6 = t11; t7 = t14 == null ? _null : t14; if (t7 == null) t7 = t13; t8 = t16 == null ? _null : t16; if (t8 == null) t8 = t15; t9 = t18 == null ? _null : t18; if (t9 == null) t9 = t17; t10 = t20 == null ? _null : t20; if (t10 == null) t10 = t19; t11 = t22 == null ? _null : t22; if (t11 == null) t11 = t21; t12 = t24 == null ? _null : t24; if (t12 == null) t12 = t23; t13 = t26 == null ? _null : t26; if (t13 == null) t13 = t25; t14 = t28 == null ? t27 : t28; t15 = t30 == null ? _null : t30; return A.TextTheme$(t10, t11, t12, t1, t2, t3, t4, t5, t6, t13, t14, t15 == null ? t29 : t15, t7, t8, t9); }, apply$1$fontFamily(fontFamily) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, t1 = _this.displayLarge; t1 = t1 == null ? _null : t1.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t2 = _this.displayMedium; t2 = t2 == null ? _null : t2.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t3 = _this.displaySmall; t3 = t3 == null ? _null : t3.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t4 = _this.headlineLarge; t4 = t4 == null ? _null : t4.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t5 = _this.headlineMedium; t5 = t5 == null ? _null : t5.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t6 = _this.headlineSmall; t6 = t6 == null ? _null : t6.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t7 = _this.titleLarge; t7 = t7 == null ? _null : t7.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t8 = _this.titleMedium; t8 = t8 == null ? _null : t8.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t9 = _this.titleSmall; t9 = t9 == null ? _null : t9.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t10 = _this.bodyLarge; t10 = t10 == null ? _null : t10.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t11 = _this.bodyMedium; t11 = t11 == null ? _null : t11.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t12 = _this.bodySmall; t12 = t12 == null ? _null : t12.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t13 = _this.labelLarge; t13 = t13 == null ? _null : t13.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t14 = _this.labelMedium; t14 = t14 == null ? _null : t14.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t15 = _this.labelSmall; return A.TextTheme$(t10, t11, t12, t1, t2, t3, t4, t5, t6, t13, t14, t15 == null ? _null : t15.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1), t7, t8, t9); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.TextTheme && J.$eq$(_this.displayLarge, other.displayLarge) && J.$eq$(_this.displayMedium, other.displayMedium) && J.$eq$(_this.displaySmall, other.displaySmall) && J.$eq$(_this.headlineLarge, other.headlineLarge) && J.$eq$(_this.headlineMedium, other.headlineMedium) && J.$eq$(_this.headlineSmall, other.headlineSmall) && J.$eq$(_this.titleLarge, other.titleLarge) && J.$eq$(_this.titleMedium, other.titleMedium) && J.$eq$(_this.titleSmall, other.titleSmall) && J.$eq$(_this.bodyLarge, other.bodyLarge) && J.$eq$(_this.bodyMedium, other.bodyMedium) && J.$eq$(_this.bodySmall, other.bodySmall) && J.$eq$(_this.labelLarge, other.labelLarge) && J.$eq$(_this.labelMedium, other.labelMedium) && J.$eq$(_this.labelSmall, other.labelSmall); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.displayLarge, _this.displayMedium, _this.displaySmall, _this.headlineLarge, _this.headlineMedium, _this.headlineSmall, _this.titleLarge, _this.titleMedium, _this.titleSmall, _this.bodyLarge, _this.bodyMedium, _this.bodySmall, _this.labelLarge, _this.labelMedium, _this.labelSmall, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._TextTheme_Object_Diagnosticable.prototype = {}; A.Theme.prototype = { build$1(_, context) { var t2, t3, t4, t5, t6, t7, t1 = this.data; t1.toString; t2 = B.CupertinoThemeData_KQb.brightness; t3 = B.CupertinoThemeData_KQb.primaryColor; t4 = B.CupertinoThemeData_KQb.primaryContrastingColor; t5 = B.CupertinoThemeData_KQb.textTheme; t6 = B.CupertinoThemeData_KQb.barBackgroundColor; t7 = B.CupertinoThemeData_KQb.scaffoldBackgroundColor; return new A._InheritedTheme(this, new A.CupertinoTheme(new A.MaterialBasedCupertinoThemeData(t1, new A.NoDefaultCupertinoThemeData(t2, t3, t4, t5, t6, t7), B._CupertinoThemeDefaults_iF8, t2, t3, t4, t5, t6, t7), A.IconTheme$(this.child, t1.iconTheme, null), null), null); } }; A._InheritedTheme.prototype = { wrap$2(_, context, child) { return new A.Theme(this.theme.data, child, null); }, updateShouldNotify$1(old) { return !J.$eq$(this.theme.data, old.theme.data); } }; A.ThemeDataTween.prototype = { lerp$1(t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, lerpedBorderSide, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t213, t214, t215, t216, t217, t218, t219, t220, t221, t1 = this.begin; t1.toString; t2 = this.end; t2.toString; t3 = t < 0.5; t4 = t3 ? t1.applyElevationOverlayColor : t2.applyElevationOverlayColor; t5 = t3 ? t1.cupertinoOverrideTheme : t2.cupertinoOverrideTheme; t6 = A.ThemeData__lerpThemeExtensions(t1, t2, t); t7 = t3 ? t1.inputDecorationTheme : t2.inputDecorationTheme; t8 = t3 ? t1.materialTapTargetSize : t2.materialTapTargetSize; t9 = t3 ? t1.pageTransitionsTheme : t2.pageTransitionsTheme; t10 = t3 ? t1.platform : t2.platform; t11 = t1.scrollbarTheme; t12 = t2.scrollbarTheme; t13 = type$.nullable_bool; t14 = A.ScrollbarThemeData__lerpProperties(t11.thumbVisibility, t12.thumbVisibility, t, A.scrollbar_theme___lerpBool$closure(), t13); t15 = A.ScrollbarThemeData__lerpProperties(t11.thickness, t12.thickness, t, A.ui__lerpDouble$closure(), type$.nullable_double); t13 = A.ScrollbarThemeData__lerpProperties(t11.trackVisibility, t12.trackVisibility, t, A.scrollbar_theme___lerpBool$closure(), t13); t16 = t11.showTrackOnHover; t17 = t12.showTrackOnHover; t16 = t3 ? t16 : t17; t17 = t11.isAlwaysShown; t18 = t12.isAlwaysShown; t17 = t3 ? t17 : t18; t18 = t11.interactive; t19 = t12.interactive; t18 = t3 ? t18 : t19; t19 = A.Radius_lerp(t11.radius, t12.radius, t); t20 = type$.nullable_Color; t21 = A.ScrollbarThemeData__lerpProperties(t11.thumbColor, t12.thumbColor, t, A.ui_Color_lerp$closure(), t20); t22 = A.ScrollbarThemeData__lerpProperties(t11.trackColor, t12.trackColor, t, A.ui_Color_lerp$closure(), t20); t23 = A.ScrollbarThemeData__lerpProperties(t11.trackBorderColor, t12.trackBorderColor, t, A.ui_Color_lerp$closure(), t20); t24 = A.lerpDouble(t11.crossAxisMargin, t12.crossAxisMargin, t); t25 = A.lerpDouble(t11.mainAxisMargin, t12.mainAxisMargin, t); t11 = A.lerpDouble(t11.minThumbLength, t12.minThumbLength, t); t12 = t3 ? t1.splashFactory : t2.splashFactory; t26 = t1.visualDensity; t27 = t2.visualDensity; t28 = A.lerpDouble(t26.horizontal, t27.horizontal, t); t28.toString; t27 = A.lerpDouble(t26.vertical, t27.vertical, t); t27.toString; t26 = t1.colorScheme; t29 = t2.colorScheme; t30 = t3 ? t26.brightness : t29.brightness; t31 = t26.primary; t32 = t29.primary; t33 = A.Color_lerp(t31, t32, t); t33.toString; t34 = t26.onPrimary; t35 = t29.onPrimary; t36 = A.Color_lerp(t34, t35, t); t36.toString; t37 = t26._primaryContainer; if (t37 == null) t37 = t31; t38 = t29._primaryContainer; t37 = A.Color_lerp(t37, t38 == null ? t32 : t38, t); t38 = t26._onPrimaryContainer; if (t38 == null) t38 = t34; t39 = t29._onPrimaryContainer; t38 = A.Color_lerp(t38, t39 == null ? t35 : t39, t); t39 = t26.secondary; t40 = t29.secondary; t41 = A.Color_lerp(t39, t40, t); t41.toString; t42 = t26.onSecondary; t43 = t29.onSecondary; t44 = A.Color_lerp(t42, t43, t); t44.toString; t45 = t26._secondaryContainer; if (t45 == null) t45 = t39; t46 = t29._secondaryContainer; t45 = A.Color_lerp(t45, t46 == null ? t40 : t46, t); t46 = t26._onSecondaryContainer; if (t46 == null) t46 = t42; t47 = t29._onSecondaryContainer; t46 = A.Color_lerp(t46, t47 == null ? t43 : t47, t); t47 = t26._tertiary; t48 = t47 == null; t49 = t48 ? t39 : t47; t50 = t29._tertiary; t51 = t50 == null; t49 = A.Color_lerp(t49, t51 ? t40 : t50, t); t52 = t26._onTertiary; t53 = t52 == null; t54 = t53 ? t42 : t52; t55 = t29._onTertiary; t56 = t55 == null; t54 = A.Color_lerp(t54, t56 ? t43 : t55, t); t57 = t26._tertiaryContainer; if (t57 == null) { if (t48) t47 = t39; } else t47 = t57; t48 = t29._tertiaryContainer; if (t48 == null) t48 = t51 ? t40 : t50; t48 = A.Color_lerp(t47, t48, t); t47 = t26._onTertiaryContainer; if (t47 == null) t42 = t53 ? t42 : t52; else t42 = t47; t47 = t29._onTertiaryContainer; if (t47 == null) t43 = t56 ? t43 : t55; else t43 = t47; t43 = A.Color_lerp(t42, t43, t); t42 = t26.error; t47 = t29.error; t50 = A.Color_lerp(t42, t47, t); t50.toString; t51 = t26.onError; t52 = t29.onError; t53 = A.Color_lerp(t51, t52, t); t53.toString; t55 = t26._errorContainer; t42 = t55 == null ? t42 : t55; t55 = t29._errorContainer; t42 = A.Color_lerp(t42, t55 == null ? t47 : t55, t); t47 = t26._onErrorContainer; if (t47 == null) t47 = t51; t51 = t29._onErrorContainer; t47 = A.Color_lerp(t47, t51 == null ? t52 : t51, t); t51 = A.Color_lerp(t26.background, t29.background, t); t51.toString; t52 = t26.onBackground; t55 = t29.onBackground; t56 = A.Color_lerp(t52, t55, t); t56.toString; t57 = t26.surface; t58 = t29.surface; t59 = A.Color_lerp(t57, t58, t); t59.toString; t60 = t26.onSurface; t61 = t29.onSurface; t62 = A.Color_lerp(t60, t61, t); t62.toString; t63 = t26._surfaceVariant; if (t63 == null) t63 = t57; t64 = t29._surfaceVariant; t63 = A.Color_lerp(t63, t64 == null ? t58 : t64, t); t64 = t26._onSurfaceVariant; if (t64 == null) t64 = t60; t65 = t29._onSurfaceVariant; t64 = A.Color_lerp(t64, t65 == null ? t61 : t65, t); t65 = t26._outline; t52 = t65 == null ? t52 : t65; t65 = t29._outline; t52 = A.Color_lerp(t52, t65 == null ? t55 : t65, t); t55 = t26._shadow; if (t55 == null) t55 = B.Color_4278190080; t65 = t29._shadow; t55 = A.Color_lerp(t55, t65 == null ? B.Color_4278190080 : t65, t); t65 = t26._inverseSurface; t60 = t65 == null ? t60 : t65; t65 = t29._inverseSurface; t60 = A.Color_lerp(t60, t65 == null ? t61 : t65, t); t61 = t26._onInverseSurface; t57 = t61 == null ? t57 : t61; t61 = t29._onInverseSurface; t57 = A.Color_lerp(t57, t61 == null ? t58 : t61, t); t58 = t26._inversePrimary; t34 = t58 == null ? t34 : t58; t58 = t29._inversePrimary; t34 = A.Color_lerp(t34, t58 == null ? t35 : t58, t); t35 = t26._primaryVariant; if (t35 == null) t35 = t31; t58 = t29._primaryVariant; t35 = A.Color_lerp(t35, t58 == null ? t32 : t58, t); t58 = t26._secondaryVariant; t39 = t58 == null ? t39 : t58; t58 = t29._secondaryVariant; t39 = A.Color_lerp(t39, t58 == null ? t40 : t58, t); t26 = t26._surfaceTint; if (t26 == null) t26 = t31; t29 = t29._surfaceTint; t26 = A.ColorScheme$(t51, t30, t50, t42, t34, t60, t56, t53, t47, t57, t36, t38, t44, t46, t62, t64, t54, t43, t52, t33, t37, t35, t41, t45, t39, t55, t59, A.Color_lerp(t26, t29 == null ? t32 : t29, t), t63, t49, t48); t29 = A.Color_lerp(t1.primaryColor, t2.primaryColor, t); t29.toString; t30 = A.Color_lerp(t1.primaryColorLight, t2.primaryColorLight, t); t30.toString; t31 = A.Color_lerp(t1.primaryColorDark, t2.primaryColorDark, t); t31.toString; t32 = A.Color_lerp(t1.focusColor, t2.focusColor, t); t32.toString; t33 = A.Color_lerp(t1.hoverColor, t2.hoverColor, t); t33.toString; t34 = A.Color_lerp(t1.shadowColor, t2.shadowColor, t); t34.toString; t35 = A.Color_lerp(t1.canvasColor, t2.canvasColor, t); t35.toString; t36 = A.Color_lerp(t1.scaffoldBackgroundColor, t2.scaffoldBackgroundColor, t); t36.toString; t37 = A.Color_lerp(t1.bottomAppBarColor, t2.bottomAppBarColor, t); t37.toString; t38 = A.Color_lerp(t1.cardColor, t2.cardColor, t); t38.toString; t39 = A.Color_lerp(t1.dividerColor, t2.dividerColor, t); t39.toString; t40 = A.Color_lerp(t1.highlightColor, t2.highlightColor, t); t40.toString; t41 = A.Color_lerp(t1.splashColor, t2.splashColor, t); t41.toString; t42 = A.Color_lerp(t1.selectedRowColor, t2.selectedRowColor, t); t42.toString; t43 = A.Color_lerp(t1.unselectedWidgetColor, t2.unselectedWidgetColor, t); t43.toString; t44 = A.Color_lerp(t1.disabledColor, t2.disabledColor, t); t44.toString; t45 = A.Color_lerp(t1.secondaryHeaderColor, t2.secondaryHeaderColor, t); t45.toString; t46 = A.Color_lerp(t1.backgroundColor, t2.backgroundColor, t); t46.toString; t47 = A.Color_lerp(t1.dialogBackgroundColor, t2.dialogBackgroundColor, t); t47.toString; t48 = A.Color_lerp(t1.indicatorColor, t2.indicatorColor, t); t48.toString; t49 = A.Color_lerp(t1.hintColor, t2.hintColor, t); t49.toString; t50 = A.Color_lerp(t1.errorColor, t2.errorColor, t); t50.toString; t51 = A.Color_lerp(t1.toggleableActiveColor, t2.toggleableActiveColor, t); t51.toString; t52 = t1.typography; t53 = t2.typography; t54 = A.TextTheme_lerp(t52.black, t53.black, t); t55 = A.TextTheme_lerp(t52.white, t53.white, t); t56 = A.TextTheme_lerp(t52.englishLike, t53.englishLike, t); t57 = A.TextTheme_lerp(t52.dense, t53.dense, t); t53 = A.TextTheme_lerp(t52.tall, t53.tall, t); t52 = A.TextTheme_lerp(t1.textTheme, t2.textTheme, t); t58 = A.TextTheme_lerp(t1.primaryTextTheme, t2.primaryTextTheme, t); t59 = A.IconThemeData_lerp(t1.iconTheme, t2.iconTheme, t); t60 = A.IconThemeData_lerp(t1.primaryIconTheme, t2.primaryIconTheme, t); t61 = t1.appBarTheme; t62 = t2.appBarTheme; if (t3) t63 = t61.brightness; else t63 = t62.brightness; t64 = A.Color_lerp(t61.backgroundColor, t62.backgroundColor, t); t65 = A.Color_lerp(t61.foregroundColor, t62.foregroundColor, t); t66 = A.lerpDouble(t61.elevation, t62.elevation, t); t67 = A.lerpDouble(t61.scrolledUnderElevation, t62.scrolledUnderElevation, t); t68 = A.Color_lerp(t61.shadowColor, t62.shadowColor, t); t69 = A.Color_lerp(t61.surfaceTintColor, t62.surfaceTintColor, t); t70 = A.ShapeBorder_lerp(t61.shape, t62.shape, t); t71 = A.IconThemeData_lerp(t61.iconTheme, t62.iconTheme, t); t72 = A.IconThemeData_lerp(t61.actionsIconTheme, t62.actionsIconTheme, t); t73 = A.TextTheme_lerp(t61.textTheme, t62.textTheme, t); if (t3) t74 = t61.centerTitle; else t74 = t62.centerTitle; t75 = A.lerpDouble(t61.titleSpacing, t62.titleSpacing, t); t76 = A.lerpDouble(t61.toolbarHeight, t62.toolbarHeight, t); t77 = A.TextStyle_lerp(t61.toolbarTextStyle, t62.toolbarTextStyle, t); t78 = A.TextStyle_lerp(t61.titleTextStyle, t62.titleTextStyle, t); if (t3) t79 = t61.systemOverlayStyle; else t79 = t62.systemOverlayStyle; if (t3) t61 = t61.backwardsCompatibility; else t61 = t62.backwardsCompatibility; t77 = A.AppBarTheme$(t72, t64, t61, t63, t74, null, t66, t65, t71, t67, t68, t70, t69, t79, t73, t75, t78, t76, t77); t76 = t1.bannerTheme; t78 = t2.bannerTheme; t61 = A.Color_lerp(t76.backgroundColor, t78.backgroundColor, t); t62 = A.TextStyle_lerp(t76.contentTextStyle, t78.contentTextStyle, t); t63 = A.lerpDouble(t76.elevation, t78.elevation, t); t64 = A.EdgeInsetsGeometry_lerp(t76.padding, t78.padding, t); t65 = A.EdgeInsetsGeometry_lerp(t76.leadingPadding, t78.leadingPadding, t); t66 = t1.bottomAppBarTheme; t67 = t2.bottomAppBarTheme; t68 = A.Color_lerp(t66.color, t67.color, t); t69 = A.lerpDouble(t66.elevation, t67.elevation, t); if (t3) t66 = t66.shape; else t66 = t67.shape; t67 = t1.bottomNavigationBarTheme; t70 = t2.bottomNavigationBarTheme; t71 = A.Color_lerp(t67.backgroundColor, t70.backgroundColor, t); t72 = A.lerpDouble(t67.elevation, t70.elevation, t); t73 = A.IconThemeData_lerp(t67.selectedIconTheme, t70.selectedIconTheme, t); t74 = A.IconThemeData_lerp(t67.unselectedIconTheme, t70.unselectedIconTheme, t); t75 = A.Color_lerp(t67.selectedItemColor, t70.selectedItemColor, t); t76 = A.Color_lerp(t67.unselectedItemColor, t70.unselectedItemColor, t); t78 = A.TextStyle_lerp(t67.selectedLabelStyle, t70.selectedLabelStyle, t); t79 = A.TextStyle_lerp(t67.unselectedLabelStyle, t70.unselectedLabelStyle, t); if (t3) t80 = t67.showSelectedLabels; else t80 = t70.showSelectedLabels; if (t3) t81 = t67.showUnselectedLabels; else t81 = t70.showUnselectedLabels; if (t3) t82 = t67.type; else t82 = t70.type; if (t3) t83 = t67.enableFeedback; else t83 = t70.enableFeedback; if (t3) t84 = t67.landscapeLayout; else t84 = t70.landscapeLayout; if (t3) t67 = t67.mouseCursor; else t67 = t70.mouseCursor; t70 = A.BottomSheetThemeData_lerp(t1.bottomSheetTheme, t2.bottomSheetTheme, t); t70.toString; t85 = A.ButtonBarThemeData_lerp(t1.buttonBarTheme, t2.buttonBarTheme, t); t85.toString; t86 = t3 ? t1.buttonTheme : t2.buttonTheme; t87 = t1.cardTheme; t88 = t2.cardTheme; if (t3) t89 = t87.clipBehavior; else t89 = t88.clipBehavior; t90 = A.Color_lerp(t87.color, t88.color, t); t91 = A.Color_lerp(t87.shadowColor, t88.shadowColor, t); t92 = A.Color_lerp(t87.surfaceTintColor, t88.surfaceTintColor, t); t93 = A.lerpDouble(t87.elevation, t88.elevation, t); t94 = A.EdgeInsetsGeometry_lerp(t87.margin, t88.margin, t); t87 = A.ShapeBorder_lerp(t87.shape, t88.shape, t); t88 = t1.checkboxTheme; t95 = t2.checkboxTheme; if (t3) t96 = t88.mouseCursor; else t96 = t95.mouseCursor; t97 = A.CheckboxThemeData__lerpProperties(t88.fillColor, t95.fillColor, t, A.ui_Color_lerp$closure(), t20); t98 = A.CheckboxThemeData__lerpProperties(t88.checkColor, t95.checkColor, t, A.ui_Color_lerp$closure(), t20); t99 = A.CheckboxThemeData__lerpProperties(t88.overlayColor, t95.overlayColor, t, A.ui_Color_lerp$closure(), t20); t100 = A.lerpDouble(t88.splashRadius, t95.splashRadius, t); if (t3) t101 = t88.materialTapTargetSize; else t101 = t95.materialTapTargetSize; if (t3) t102 = t88.visualDensity; else t102 = t95.visualDensity; t103 = type$.nullable_OutlinedBorder; t104 = t103._as(A.ShapeBorder_lerp(t88.shape, t95.shape, t)); t88 = A.CheckboxThemeData__lerpSides(t88.side, t95.side, t); t95 = A.ChipThemeData_lerp(t1.chipTheme, t2.chipTheme, t); t95.toString; t105 = t1.dataTableTheme; t106 = t2.dataTableTheme; t107 = A.Decoration_lerp(t105.decoration, t106.decoration, t); t108 = A.DataTableThemeData__lerpProperties(t105.dataRowColor, t106.dataRowColor, t, A.ui_Color_lerp$closure(), t20); t109 = A.lerpDouble(t105.dataRowHeight, t106.dataRowHeight, t); t110 = A.TextStyle_lerp(t105.dataTextStyle, t106.dataTextStyle, t); t111 = A.DataTableThemeData__lerpProperties(t105.headingRowColor, t106.headingRowColor, t, A.ui_Color_lerp$closure(), t20); t112 = A.lerpDouble(t105.headingRowHeight, t106.headingRowHeight, t); t113 = A.TextStyle_lerp(t105.headingTextStyle, t106.headingTextStyle, t); t114 = A.lerpDouble(t105.horizontalMargin, t106.horizontalMargin, t); t115 = A.lerpDouble(t105.columnSpacing, t106.columnSpacing, t); t116 = A.lerpDouble(t105.dividerThickness, t106.dividerThickness, t); t106 = A.lerpDouble(t105.checkboxHorizontalMargin, t106.checkboxHorizontalMargin, t); t105 = t1.dialogTheme; t117 = t2.dialogTheme; t118 = A.Color_lerp(t105.backgroundColor, t117.backgroundColor, t); t119 = A.lerpDouble(t105.elevation, t117.elevation, t); t120 = A.ShapeBorder_lerp(t105.shape, t117.shape, t); t121 = A.AlignmentGeometry_lerp(t105.alignment, t117.alignment, t); t122 = A.TextStyle_lerp(t105.titleTextStyle, t117.titleTextStyle, t); t105 = A.TextStyle_lerp(t105.contentTextStyle, t117.contentTextStyle, t); t117 = t1.dividerTheme; t123 = t2.dividerTheme; t124 = A.Color_lerp(t117.color, t123.color, t); t125 = A.lerpDouble(t117.space, t123.space, t); t126 = A.lerpDouble(t117.thickness, t123.thickness, t); t127 = A.lerpDouble(t117.indent, t123.indent, t); t117 = A.lerpDouble(t117.endIndent, t123.endIndent, t); t123 = A.DrawerThemeData_lerp(t1.drawerTheme, t2.drawerTheme, t); t123.toString; t128 = A.ElevatedButtonThemeData_lerp(t1.elevatedButtonTheme, t2.elevatedButtonTheme, t); t128.toString; t129 = A.FloatingActionButtonThemeData_lerp(t1.floatingActionButtonTheme, t2.floatingActionButtonTheme, t); t129.toString; t130 = A.ListTileThemeData_lerp(t1.listTileTheme, t2.listTileTheme, t); t130.toString; t131 = A.NavigationBarThemeData_lerp(t1.navigationBarTheme, t2.navigationBarTheme, t); t131.toString; t132 = A.NavigationRailThemeData_lerp(t1.navigationRailTheme, t2.navigationRailTheme, t); t132.toString; t133 = A.OutlinedButtonThemeData_lerp(t1.outlinedButtonTheme, t2.outlinedButtonTheme, t); t133.toString; t134 = A.PopupMenuThemeData_lerp(t1.popupMenuTheme, t2.popupMenuTheme, t); t134.toString; t135 = A.ProgressIndicatorThemeData_lerp(t1.progressIndicatorTheme, t2.progressIndicatorTheme, t); t135.toString; t136 = t1.radioTheme; t137 = t2.radioTheme; if (t3) t138 = t136.mouseCursor; else t138 = t137.mouseCursor; t139 = A.RadioThemeData__lerpProperties(t136.fillColor, t137.fillColor, t, A.ui_Color_lerp$closure(), t20); if (t3) t140 = t136.materialTapTargetSize; else t140 = t137.materialTapTargetSize; t141 = A.RadioThemeData__lerpProperties(t136.overlayColor, t137.overlayColor, t, A.ui_Color_lerp$closure(), t20); t142 = A.lerpDouble(t136.splashRadius, t137.splashRadius, t); if (t3) t136 = t136.visualDensity; else t136 = t137.visualDensity; t137 = t1.sliderTheme; t143 = t2.sliderTheme; t144 = A.lerpDouble(t137.trackHeight, t143.trackHeight, t); t145 = A.Color_lerp(t137.activeTrackColor, t143.activeTrackColor, t); t146 = A.Color_lerp(t137.inactiveTrackColor, t143.inactiveTrackColor, t); t147 = A.Color_lerp(t137.disabledActiveTrackColor, t143.disabledActiveTrackColor, t); t148 = A.Color_lerp(t137.disabledInactiveTrackColor, t143.disabledInactiveTrackColor, t); t149 = A.Color_lerp(t137.activeTickMarkColor, t143.activeTickMarkColor, t); t150 = A.Color_lerp(t137.inactiveTickMarkColor, t143.inactiveTickMarkColor, t); t151 = A.Color_lerp(t137.disabledActiveTickMarkColor, t143.disabledActiveTickMarkColor, t); t152 = A.Color_lerp(t137.disabledInactiveTickMarkColor, t143.disabledInactiveTickMarkColor, t); t153 = A.Color_lerp(t137.thumbColor, t143.thumbColor, t); t154 = A.Color_lerp(t137.overlappingShapeStrokeColor, t143.overlappingShapeStrokeColor, t); t155 = A.Color_lerp(t137.disabledThumbColor, t143.disabledThumbColor, t); t156 = A.Color_lerp(t137.overlayColor, t143.overlayColor, t); t157 = A.Color_lerp(t137.valueIndicatorColor, t143.valueIndicatorColor, t); t158 = t3 ? t137.overlayShape : t143.overlayShape; t159 = t3 ? t137.tickMarkShape : t143.tickMarkShape; t160 = t3 ? t137.thumbShape : t143.thumbShape; t161 = t3 ? t137.trackShape : t143.trackShape; t162 = t3 ? t137.valueIndicatorShape : t143.valueIndicatorShape; t163 = t3 ? t137.rangeTickMarkShape : t143.rangeTickMarkShape; t164 = t3 ? t137.rangeThumbShape : t143.rangeThumbShape; t165 = t3 ? t137.rangeTrackShape : t143.rangeTrackShape; t166 = t3 ? t137.rangeValueIndicatorShape : t143.rangeValueIndicatorShape; t167 = t3 ? t137.showValueIndicator : t143.showValueIndicator; t168 = A.TextStyle_lerp(t137.valueIndicatorTextStyle, t143.valueIndicatorTextStyle, t); t169 = A.lerpDouble(t137.minThumbSeparation, t143.minThumbSeparation, t); t170 = t3 ? t137.thumbSelector : t143.thumbSelector; t137 = t3 ? t137.mouseCursor : t143.mouseCursor; t143 = t1.snackBarTheme; t171 = t2.snackBarTheme; t172 = A.Color_lerp(t143.backgroundColor, t171.backgroundColor, t); t173 = A.Color_lerp(t143.actionTextColor, t171.actionTextColor, t); t174 = A.Color_lerp(t143.disabledActionTextColor, t171.disabledActionTextColor, t); t175 = A.TextStyle_lerp(t143.contentTextStyle, t171.contentTextStyle, t); t176 = A.lerpDouble(t143.elevation, t171.elevation, t); t177 = A.ShapeBorder_lerp(t143.shape, t171.shape, t); if (t3) t143 = t143.behavior; else t143 = t171.behavior; t171 = t1.switchTheme; t178 = t2.switchTheme; t179 = A.SwitchThemeData__lerpProperties(t171.thumbColor, t178.thumbColor, t, A.ui_Color_lerp$closure(), t20); t180 = A.SwitchThemeData__lerpProperties(t171.trackColor, t178.trackColor, t, A.ui_Color_lerp$closure(), t20); if (t3) t181 = t171.materialTapTargetSize; else t181 = t178.materialTapTargetSize; if (t3) t182 = t171.mouseCursor; else t182 = t178.mouseCursor; t20 = A.SwitchThemeData__lerpProperties(t171.overlayColor, t178.overlayColor, t, A.ui_Color_lerp$closure(), t20); t171 = A.lerpDouble(t171.splashRadius, t178.splashRadius, t); t178 = t1.tabBarTheme; t183 = t2.tabBarTheme; t184 = A.Decoration_lerp(t178.indicator, t183.indicator, t); t185 = t3 ? t178.indicatorSize : t183.indicatorSize; t186 = A.Color_lerp(t178.labelColor, t183.labelColor, t); t187 = A.EdgeInsetsGeometry_lerp(t178.labelPadding, t183.labelPadding, t); t188 = A.TextStyle_lerp(t178.labelStyle, t183.labelStyle, t); t189 = A.Color_lerp(t178.unselectedLabelColor, t183.unselectedLabelColor, t); t190 = A.TextStyle_lerp(t178.unselectedLabelStyle, t183.unselectedLabelStyle, t); t191 = t3 ? t178.splashFactory : t183.splashFactory; t192 = t3 ? t178.mouseCursor : t183.mouseCursor; t193 = A.TextButtonThemeData_lerp(t1.textButtonTheme, t2.textButtonTheme, t); t193.toString; t194 = A.TextSelectionThemeData_lerp(t1.textSelectionTheme, t2.textSelectionTheme, t); t194.toString; t195 = t1.timePickerTheme; t196 = t2.timePickerTheme; lerpedBorderSide = t195.dayPeriodBorderSide; t197 = lerpedBorderSide == null; if (t197) t198 = t196.dayPeriodBorderSide == null; else t198 = false; if (t198) lerpedBorderSide = null; else if (t197) lerpedBorderSide = t196.dayPeriodBorderSide; else { t197 = t196.dayPeriodBorderSide; if (!(t197 == null)) lerpedBorderSide = A.BorderSide_lerp(lerpedBorderSide, t197, t); } t197 = A.Color_lerp(t195.backgroundColor, t196.backgroundColor, t); t198 = A.Color_lerp(t195.hourMinuteTextColor, t196.hourMinuteTextColor, t); t199 = A.Color_lerp(t195.hourMinuteColor, t196.hourMinuteColor, t); t200 = A.Color_lerp(t195.dayPeriodTextColor, t196.dayPeriodTextColor, t); t201 = A.Color_lerp(t195.dayPeriodColor, t196.dayPeriodColor, t); t202 = A.Color_lerp(t195.dialHandColor, t196.dialHandColor, t); t203 = A.Color_lerp(t195.dialBackgroundColor, t196.dialBackgroundColor, t); t204 = A.Color_lerp(t195.dialTextColor, t196.dialTextColor, t); t205 = A.Color_lerp(t195.entryModeIconColor, t196.entryModeIconColor, t); t206 = A.TextStyle_lerp(t195.hourMinuteTextStyle, t196.hourMinuteTextStyle, t); t207 = A.TextStyle_lerp(t195.dayPeriodTextStyle, t196.dayPeriodTextStyle, t); t208 = A.TextStyle_lerp(t195.helpTextStyle, t196.helpTextStyle, t); t209 = A.ShapeBorder_lerp(t195.shape, t196.shape, t); t210 = A.ShapeBorder_lerp(t195.hourMinuteShape, t196.hourMinuteShape, t); t103 = t103._as(A.ShapeBorder_lerp(t195.dayPeriodShape, t196.dayPeriodShape, t)); if (t3) t195 = t195.inputDecorationTheme; else t195 = t196.inputDecorationTheme; t196 = A.ToggleButtonsThemeData_lerp(t1.toggleButtonsTheme, t2.toggleButtonsTheme, t); t196.toString; t211 = A.TooltipThemeData_lerp(t1.tooltipTheme, t2.tooltipTheme, t); t211.toString; t212 = A.ExpansionTileThemeData_lerp(t1.expansionTileTheme, t2.expansionTileTheme, t); t212.toString; t213 = A.Color_lerp(t1.textSelectionColor, t2.textSelectionColor, t); t213.toString; t214 = A.Color_lerp(t1.cursorColor, t2.cursorColor, t); t214.toString; t215 = A.Color_lerp(t1.textSelectionHandleColor, t2.textSelectionHandleColor, t); t215.toString; t216 = A.Color_lerp(t1.accentColor, t2.accentColor, t); t216.toString; t217 = t3 ? t1.accentColorBrightness : t2.accentColorBrightness; t218 = A.TextTheme_lerp(t1.accentTextTheme, t2.accentTextTheme, t); t219 = A.IconThemeData_lerp(t1.accentIconTheme, t2.accentIconTheme, t); t220 = A.Color_lerp(t1.buttonColor, t2.buttonColor, t); t220.toString; t221 = t3 ? t1.primaryColorBrightness : t2.primaryColorBrightness; t1 = t3 ? t1.androidOverscrollIndicator : t2.androidOverscrollIndicator; return A.ThemeData$raw(t216, t217, t219, t218, t1, t77, t4, t46, new A.MaterialBannerThemeData(t61, t62, t63, t64, t65), t37, new A.BottomAppBarTheme(t68, t69, t66), new A.BottomNavigationBarThemeData(t71, t72, t73, t74, t75, t76, t78, t79, t80, t81, t82, t83, t84, t67), t70, t85, t220, t86, t35, t38, new A.CardTheme(t89, t90, t91, t92, t93, t94, t87), new A.CheckboxThemeData(t96, t97, t98, t99, t100, t101, t102, t104, t88), t95, t26, t5, t214, new A.DataTableThemeData(t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t106), t47, new A.DialogTheme(t118, t119, t120, t121, t122, t105), t44, t39, new A.DividerThemeData(t124, t125, t126, t127, t117), t123, t128, t50, t212, t6, true, t129, t32, t40, t49, t33, t59, t48, t7, t130, t8, t131, t132, t133, t9, t10, t134, t29, t221, t31, t30, t60, t58, t135, new A.RadioThemeData(t138, t139, t141, t142, t140, t136), t36, new A.ScrollbarThemeData(t14, t15, t13, t16, t17, t18, t19, t21, t22, t23, t24, t25, t11), t45, t42, t34, new A.SliderThemeData(t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t137), new A.SnackBarThemeData(t172, t173, t174, t175, t176, t177, t143), t41, t12, new A.SwitchThemeData(t179, t180, t181, t182, t20, t171), new A.TabBarTheme(t184, t185, t186, t187, t188, t189, t190, new A._LerpColors(t178.overlayColor, t183.overlayColor, t), t191, t192), t193, t213, t215, t194, t52, new A.TimePickerThemeData(t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t103, lerpedBorderSide, t195), t196, t51, t211, new A.Typography(t54, t55, t56, t57, t53), t43, false, true, new A.VisualDensity(t28, t27)); } }; A.AnimatedTheme.prototype = { createState$0() { return new A._AnimatedThemeState(null, null, B._StateLifecycle_0); } }; A._AnimatedThemeState.prototype = { forEachTween$1(visitor) { var t1 = visitor.call$3(this._theme$_data, this._widget.data, new A._AnimatedThemeState_forEachTween_closure()); t1.toString; this._theme$_data = type$.ThemeDataTween._as(t1); }, build$1(_, context) { var t2, t1 = this._theme$_data; t1.toString; t2 = this.get$_animation(); return new A.Theme(t1.transform$1(0, t2.get$value(t2)), this._widget.child, null); } }; A._AnimatedThemeState_forEachTween_closure.prototype = { call$1(value) { return new A.ThemeDataTween(type$.ThemeData._as(value), null); }, $signature: 2236 }; A.MaterialTapTargetSize.prototype = { toString$0(_) { return "MaterialTapTargetSize." + this._core$_name; } }; A.ThemeData.prototype = { copyWith$5$accentTextTheme$brightness$disabledColor$primaryTextTheme$textTheme(accentTextTheme, brightness, disabledColor, primaryTextTheme, textTheme) { var _this = this, t1 = _this.colorScheme.copyWith$1$brightness(brightness), t2 = disabledColor == null ? _this.disabledColor : disabledColor, t3 = textTheme == null ? _this.textTheme : textTheme, t4 = primaryTextTheme == null ? _this.primaryTextTheme : primaryTextTheme, t5 = accentTextTheme == null ? _this.accentTextTheme : accentTextTheme; return A.ThemeData$raw(_this.accentColor, _this.accentColorBrightness, _this.accentIconTheme, t5, _this.androidOverscrollIndicator, _this.appBarTheme, _this.applyElevationOverlayColor, _this.backgroundColor, _this.bannerTheme, _this.bottomAppBarColor, _this.bottomAppBarTheme, _this.bottomNavigationBarTheme, _this.bottomSheetTheme, _this.buttonBarTheme, _this.buttonColor, _this.buttonTheme, _this.canvasColor, _this.cardColor, _this.cardTheme, _this.checkboxTheme, _this.chipTheme, t1, _this.cupertinoOverrideTheme, _this.cursorColor, _this.dataTableTheme, _this.dialogBackgroundColor, _this.dialogTheme, t2, _this.dividerColor, _this.dividerTheme, _this.drawerTheme, _this.elevatedButtonTheme, _this.errorColor, _this.expansionTileTheme, _this.extensions, true, _this.floatingActionButtonTheme, _this.focusColor, _this.highlightColor, _this.hintColor, _this.hoverColor, _this.iconTheme, _this.indicatorColor, _this.inputDecorationTheme, _this.listTileTheme, _this.materialTapTargetSize, _this.navigationBarTheme, _this.navigationRailTheme, _this.outlinedButtonTheme, _this.pageTransitionsTheme, _this.platform, _this.popupMenuTheme, _this.primaryColor, _this.primaryColorBrightness, _this.primaryColorDark, _this.primaryColorLight, _this.primaryIconTheme, t4, _this.progressIndicatorTheme, _this.radioTheme, _this.scaffoldBackgroundColor, _this.scrollbarTheme, _this.secondaryHeaderColor, _this.selectedRowColor, _this.shadowColor, _this.sliderTheme, _this.snackBarTheme, _this.splashColor, _this.splashFactory, _this.switchTheme, _this.tabBarTheme, _this.textButtonTheme, _this.textSelectionColor, _this.textSelectionHandleColor, _this.textSelectionTheme, t3, _this.timePickerTheme, _this.toggleButtonsTheme, _this.toggleableActiveColor, _this.tooltipTheme, _this.typography, _this.unselectedWidgetColor, false, true, _this.visualDensity); }, copyWith$3$accentTextTheme$primaryTextTheme$textTheme(accentTextTheme, primaryTextTheme, textTheme) { return this.copyWith$5$accentTextTheme$brightness$disabledColor$primaryTextTheme$textTheme(accentTextTheme, null, null, primaryTextTheme, textTheme); }, copyWith$2$brightness$disabledColor(brightness, disabledColor) { return this.copyWith$5$accentTextTheme$brightness$disabledColor$primaryTextTheme$textTheme(null, brightness, disabledColor, null, null); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.ThemeData) if (other.applyElevationOverlayColor === _this.applyElevationOverlayColor) if (A.mapEquals(other.extensions, _this.extensions)) if (other.inputDecorationTheme.$eq(0, _this.inputDecorationTheme)) if (other.materialTapTargetSize === _this.materialTapTargetSize) if (other.pageTransitionsTheme.$eq(0, _this.pageTransitionsTheme)) if (other.platform == _this.platform) if (other.scrollbarTheme.$eq(0, _this.scrollbarTheme)) if (other.splashFactory === _this.splashFactory) if (other.visualDensity.$eq(0, _this.visualDensity)) if (other.colorScheme.$eq(0, _this.colorScheme)) if (J.$eq$(other.primaryColor, _this.primaryColor)) if (J.$eq$(other.primaryColorLight, _this.primaryColorLight)) if (J.$eq$(other.primaryColorDark, _this.primaryColorDark)) if (J.$eq$(other.focusColor, _this.focusColor)) if (J.$eq$(other.hoverColor, _this.hoverColor)) if (J.$eq$(other.shadowColor, _this.shadowColor)) if (J.$eq$(other.canvasColor, _this.canvasColor)) if (J.$eq$(other.scaffoldBackgroundColor, _this.scaffoldBackgroundColor)) if (J.$eq$(other.bottomAppBarColor, _this.bottomAppBarColor)) if (J.$eq$(other.cardColor, _this.cardColor)) if (J.$eq$(other.dividerColor, _this.dividerColor)) if (J.$eq$(other.highlightColor, _this.highlightColor)) if (J.$eq$(other.splashColor, _this.splashColor)) if (J.$eq$(other.selectedRowColor, _this.selectedRowColor)) if (J.$eq$(other.unselectedWidgetColor, _this.unselectedWidgetColor)) if (J.$eq$(other.disabledColor, _this.disabledColor)) if (J.$eq$(other.secondaryHeaderColor, _this.secondaryHeaderColor)) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (J.$eq$(other.dialogBackgroundColor, _this.dialogBackgroundColor)) if (J.$eq$(other.indicatorColor, _this.indicatorColor)) if (J.$eq$(other.hintColor, _this.hintColor)) if (J.$eq$(other.errorColor, _this.errorColor)) if (J.$eq$(other.toggleableActiveColor, _this.toggleableActiveColor)) if (other.typography.$eq(0, _this.typography)) if (other.textTheme.$eq(0, _this.textTheme)) if (other.primaryTextTheme.$eq(0, _this.primaryTextTheme)) if (other.iconTheme.$eq(0, _this.iconTheme)) if (other.primaryIconTheme.$eq(0, _this.primaryIconTheme)) if (other.appBarTheme.$eq(0, _this.appBarTheme)) if (other.bannerTheme.$eq(0, _this.bannerTheme)) if (other.bottomAppBarTheme.$eq(0, _this.bottomAppBarTheme)) if (other.bottomNavigationBarTheme.$eq(0, _this.bottomNavigationBarTheme)) if (J.$eq$(other.bottomSheetTheme, _this.bottomSheetTheme)) if (J.$eq$(other.buttonBarTheme, _this.buttonBarTheme)) if (other.buttonTheme.$eq(0, _this.buttonTheme)) if (other.cardTheme.$eq(0, _this.cardTheme)) if (other.checkboxTheme.$eq(0, _this.checkboxTheme)) if (J.$eq$(other.chipTheme, _this.chipTheme)) if (other.dataTableTheme.$eq(0, _this.dataTableTheme)) if (other.dialogTheme.$eq(0, _this.dialogTheme)) if (other.dividerTheme.$eq(0, _this.dividerTheme)) if (J.$eq$(other.drawerTheme, _this.drawerTheme)) if (J.$eq$(other.elevatedButtonTheme, _this.elevatedButtonTheme)) if (J.$eq$(other.floatingActionButtonTheme, _this.floatingActionButtonTheme)) if (J.$eq$(other.listTileTheme, _this.listTileTheme)) if (J.$eq$(other.navigationBarTheme, _this.navigationBarTheme)) if (J.$eq$(other.navigationRailTheme, _this.navigationRailTheme)) if (J.$eq$(other.outlinedButtonTheme, _this.outlinedButtonTheme)) if (J.$eq$(other.popupMenuTheme, _this.popupMenuTheme)) if (J.$eq$(other.progressIndicatorTheme, _this.progressIndicatorTheme)) if (other.radioTheme.$eq(0, _this.radioTheme)) if (other.sliderTheme.$eq(0, _this.sliderTheme)) if (other.snackBarTheme.$eq(0, _this.snackBarTheme)) if (other.switchTheme.$eq(0, _this.switchTheme)) if (other.tabBarTheme.$eq(0, _this.tabBarTheme)) if (J.$eq$(other.textButtonTheme, _this.textButtonTheme)) if (J.$eq$(other.textSelectionTheme, _this.textSelectionTheme)) if (other.timePickerTheme.$eq(0, _this.timePickerTheme)) if (J.$eq$(other.toggleButtonsTheme, _this.toggleButtonsTheme)) if (J.$eq$(other.tooltipTheme, _this.tooltipTheme)) if (J.$eq$(other.expansionTileTheme, _this.expansionTileTheme)) if (J.$eq$(other.textSelectionColor, _this.textSelectionColor)) if (J.$eq$(other.cursorColor, _this.cursorColor)) if (J.$eq$(other.textSelectionHandleColor, _this.textSelectionHandleColor)) if (J.$eq$(other.accentColor, _this.accentColor)) if (other.accentColorBrightness === _this.accentColorBrightness) if (other.accentTextTheme.$eq(0, _this.accentTextTheme)) if (other.accentIconTheme.$eq(0, _this.accentIconTheme)) if (J.$eq$(other.buttonColor, _this.buttonColor)) t1 = other.primaryColorBrightness === _this.primaryColorBrightness && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.extensions; return A.Object_hashAll([_this.applyElevationOverlayColor, _this.cupertinoOverrideTheme, A.hashList(t1.get$keys(t1)), A.hashList(t1.get$values(t1)), _this.inputDecorationTheme, _this.materialTapTargetSize, _this.pageTransitionsTheme, _this.platform, _this.scrollbarTheme, _this.splashFactory, _this.visualDensity, false, _this.colorScheme, _this.primaryColor, _this.primaryColorLight, _this.primaryColorDark, _this.focusColor, _this.hoverColor, _this.shadowColor, _this.canvasColor, _this.scaffoldBackgroundColor, _this.bottomAppBarColor, _this.cardColor, _this.dividerColor, _this.highlightColor, _this.splashColor, _this.selectedRowColor, _this.unselectedWidgetColor, _this.disabledColor, _this.secondaryHeaderColor, _this.backgroundColor, _this.dialogBackgroundColor, _this.indicatorColor, _this.hintColor, _this.errorColor, _this.toggleableActiveColor, _this.typography, _this.textTheme, _this.primaryTextTheme, _this.iconTheme, _this.primaryIconTheme, _this.appBarTheme, _this.bannerTheme, _this.bottomAppBarTheme, _this.bottomNavigationBarTheme, _this.bottomSheetTheme, _this.buttonBarTheme, _this.buttonTheme, _this.cardTheme, _this.checkboxTheme, _this.chipTheme, _this.dataTableTheme, _this.dialogTheme, _this.dividerTheme, _this.drawerTheme, _this.elevatedButtonTheme, _this.floatingActionButtonTheme, _this.listTileTheme, _this.navigationBarTheme, _this.navigationRailTheme, _this.outlinedButtonTheme, _this.popupMenuTheme, _this.progressIndicatorTheme, _this.radioTheme, _this.sliderTheme, _this.snackBarTheme, _this.switchTheme, _this.tabBarTheme, _this.textButtonTheme, _this.textSelectionTheme, _this.timePickerTheme, _this.toggleButtonsTheme, _this.tooltipTheme, _this.expansionTileTheme, true, _this.textSelectionColor, _this.cursorColor, _this.textSelectionHandleColor, _this.accentColor, _this.accentColorBrightness, _this.accentTextTheme, _this.accentIconTheme, _this.buttonColor, true, _this.primaryColorBrightness, _this.androidOverscrollIndicator]); } }; A.ThemeData_localize_closure.prototype = { call$0() { var t1 = this.baseTheme, t2 = this.localTextGeometry, t3 = t2.merge$1(t1.primaryTextTheme); return t1.copyWith$3$accentTextTheme$primaryTextTheme$textTheme(t2.merge$1(t1.accentTextTheme), t3, t2.merge$1(t1.textTheme)); }, $signature: 2235 }; A.ThemeData__lerpThemeExtensions_closure.prototype = { call$2(id, extensionA) { return new A.MapEntry(id, extensionA.lerp$2(this.b.extensions.$index(0, id), this.t), type$.MapEntry_of_Object_and_ThemeExtension_dynamic); }, $signature: 2232 }; A.ThemeData__lerpThemeExtensions_closure0.prototype = { call$1(entry) { return !this.a.extensions.containsKey$1(0, entry.get$key(entry)); }, $signature: 2231 }; A.MaterialBasedCupertinoThemeData.prototype = { get$brightness() { var t1 = this._cupertinoOverrideTheme.brightness; return t1 == null ? this._materialTheme.colorScheme.brightness : t1; }, get$primaryColor() { var t1 = this._cupertinoOverrideTheme.primaryColor; return t1 == null ? this._materialTheme.colorScheme.primary : t1; }, get$primaryContrastingColor() { var t1 = this._cupertinoOverrideTheme.primaryContrastingColor; return t1 == null ? this._materialTheme.colorScheme.onPrimary : t1; }, get$scaffoldBackgroundColor() { var t1 = this._cupertinoOverrideTheme.scaffoldBackgroundColor; return t1 == null ? this._materialTheme.scaffoldBackgroundColor : t1; }, resolveFrom$1(context) { return A.MaterialBasedCupertinoThemeData$_(this._materialTheme, this._cupertinoOverrideTheme.resolveFrom$1(context)); } }; A._IdentityThemeDataCacheKey.prototype = { get$hashCode(_) { return (A.objectHashCode(this.baseTheme) ^ A.objectHashCode(this.localTextGeometry)) >>> 0; }, $eq(_, other) { if (other == null) return false; return other instanceof A._IdentityThemeDataCacheKey && other.baseTheme == this.baseTheme && other.localTextGeometry === this.localTextGeometry; } }; A._FifoCache.prototype = { putIfAbsent$2(_, key, loader) { var t2, t1 = this._cache, result = t1.$index(0, key); if (result != null) return result; if (t1._length === this._maximumSize) { t2 = new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")); t1.remove$1(0, t2.get$first(t2)); } t2 = loader.call$0(); t1.$indexSet(0, key, t2); return t2; } }; A.VisualDensity.prototype = { effectiveConstraints$1(constraints) { var t1 = this.horizontal, t2 = this.vertical, t3 = B.JSNumber_methods.clamp$2(constraints.minWidth + new A.Offset(t1, t2).$mul(0, 4)._dx, 0, constraints.maxWidth); return constraints.copyWith$2$minHeight$minWidth(B.JSNumber_methods.clamp$2(constraints.minHeight + new A.Offset(t1, t2).$mul(0, 4)._dy, 0, constraints.maxHeight), t3); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.VisualDensity && other.horizontal == this.horizontal && other.vertical == this.vertical; }, get$hashCode(_) { return A.Object_hash(this.horizontal, this.vertical, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toStringShort$0() { return this.super$Diagnosticable$toStringShort() + "(h: " + A.debugFormatDouble(this.horizontal) + ", v: " + A.debugFormatDouble(this.vertical) + ")"; } }; A._ThemeData_Object_Diagnosticable.prototype = {}; A._VisualDensity_Object_Diagnosticable.prototype = {}; A.DayPeriod.prototype = { toString$0(_) { return "DayPeriod." + this._core$_name; } }; A.TimeOfDay.prototype = { replacing$2$hour$minute(hour, minute) { var t1 = hour == null ? this.hour : hour; return new A.TimeOfDay(t1, minute == null ? this.minute : minute); }, replacing$1$hour(hour) { return this.replacing$2$hour$minute(hour, null); }, replacing$1$minute(minute) { return this.replacing$2$hour$minute(null, minute); }, get$hourOfPeriod() { var t1 = this.hour; if (t1 === 0 || t1 === 12) t1 = 12; else t1 -= (t1 < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0 ? 0 : 12; return t1; }, $eq(_, other) { if (other == null) return false; return other instanceof A.TimeOfDay && other.hour == this.hour && other.minute == this.minute; }, get$hashCode(_) { return A.Object_hash(this.hour, this.minute, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var t1 = new A.TimeOfDay_toString__addLeadingZeroIfNeeded(), hourLabel = t1.call$1(this.hour), minuteLabel = t1.call$1(this.minute); return B.Type_TimeOfDay_JJ0.toString$0(0) + "(" + A.S(hourLabel) + ":" + A.S(minuteLabel) + ")"; } }; A.TimeOfDay_toString__addLeadingZeroIfNeeded.prototype = { call$1(value) { if (value < 10) return "0" + A.S(value); return B.JSInt_methods.toString$0(value); }, $signature: 284 }; A.RestorableTimeOfDay.prototype = { createDefaultValue$0() { return this._time$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { var t1, t2; data.toString; type$.List_nullable_Object._as(data); t1 = J.getInterceptor$asx(data); t2 = t1.$index(data, 0); t2.toString; A._asIntS(t2); t1 = t1.$index(data, 1); t1.toString; return new A.TimeOfDay(A._asIntS(t1), t2); }, toPrimitives$0() { var t1 = this._restoration_properties$_value; return A._setArrayType([t1.minute, t1.hour], type$.JSArray_int); } }; A.TimeOfDayFormat.prototype = { toString$0(_) { return "TimeOfDayFormat." + this._core$_name; } }; A.HourFormat.prototype = { toString$0(_) { return "HourFormat." + this._core$_name; } }; A._TimePickerMode.prototype = { toString$0(_) { return "_TimePickerMode." + this._core$_name; } }; A.TimePickerEntryMode.prototype = { toString$0(_) { return "TimePickerEntryMode." + this._core$_name; } }; A._TimePickerFragmentContext.prototype = {}; A._TimePickerHeader.prototype = { _handleChangeMode$1(value) { if (value != this.mode) this.onModeChanged.call$1(value); }, build$1(_, context) { var timeOfDayFormat, t3, t4, fragmentContext, t5, t6, t7, controls, width, _this = this, _null = null, themeData = A.Theme_of(context), t1 = type$.MaterialLocalizations, t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t2.toString; timeOfDayFormat = t2.timeOfDayFormat$1$alwaysUse24HourFormat(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat); t2 = _this.selectedTime; t3 = _this.onChanged; t4 = _this.use24HourDials; fragmentContext = new A._TimePickerFragmentContext(t2, _this.mode, t3, _this.get$_handleChangeMode(), _this.onHourDoubleTapped, _this.onMinuteDoubleTapped, t4); t5 = _this.orientation; switch (t5.index) { case 0: t6 = type$.JSArray_Widget; t7 = A._setArrayType([], t6); t4 = !t4; if (t4 && timeOfDayFormat === B.TimeOfDayFormat_5) B.JSArray_methods.addAll$1(t7, A._setArrayType([new A._DayPeriodControl(t2, t5, t3, _null), B.SizedBox_12_null_null_null], t6)); t7.push(A.Expanded$(A.Row$(A._setArrayType([A.Expanded$(new A._HourControl(fragmentContext, _null), 1), new A._StringFragment(timeOfDayFormat, _null), A.Expanded$(new A._MinuteControl(fragmentContext, _null), 1)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, B.TextDirection_1), 1)); if (t4 && timeOfDayFormat !== B.TimeOfDayFormat_5) B.JSArray_methods.addAll$1(t7, A._setArrayType([B.SizedBox_12_null_null_null, new A._DayPeriodControl(t2, t5, t3, _null)], t6)); controls = A.Column$(A._setArrayType([B.SizedBox_null_16_null_null, new A.SizedBox(_null, 96, A.Row$(t7, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)], t6), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); width = _null; break; case 1: t6 = type$.JSArray_Widget; t7 = A._setArrayType([], t6); t4 = !t4; if (t4 && timeOfDayFormat === B.TimeOfDayFormat_5) t7.push(new A._DayPeriodControl(t2, t5, t3, _null)); t7.push(new A.SizedBox(_null, 96, A.Row$(A._setArrayType([A.Expanded$(new A._HourControl(fragmentContext, _null), 1), new A._StringFragment(timeOfDayFormat, _null), A.Expanded$(new A._MinuteControl(fragmentContext, _null), 1)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, B.TextDirection_1), _null)); if (t4 && timeOfDayFormat !== B.TimeOfDayFormat_5) t7.push(new A._DayPeriodControl(t2, t5, t3, _null)); controls = A.Expanded$(A.Column$(t7, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, B.VerticalDirection_1), 1); width = 264; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t1.toString; t1 = t1.get$timePickerDialHelpText(); t2 = A.TimePickerTheme_of(context).helpTextStyle; return A.Container$(_null, A.Column$(A._setArrayType([B.SizedBox_null_16_null_null, A.Text$(t1, _null, _null, _null, _null, _null, t2 == null ? themeData.textTheme.labelSmall : t2, _null, _null, _null), controls], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_24_0_24_0, _null, _null, width); } }; A._HourMinuteControl.prototype = { build$1(_, context) { var backgroundColor, style, shape, t2, states, t3, _this = this, _null = null, themeData = A.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), t1 = themeData.colorScheme, textColor = timePickerTheme.hourMinuteTextColor; if (textColor == null) textColor = A._MaterialStateColor$(new A._HourMinuteControl_build_closure(themeData)); backgroundColor = timePickerTheme.hourMinuteColor; if (backgroundColor == null) backgroundColor = A._MaterialStateColor$(new A._HourMinuteControl_build_closure0(themeData, t1.brightness === B.Brightness_0)); style = timePickerTheme.hourMinuteTextStyle; if (style == null) { t1 = themeData.textTheme.displayMedium; t1.toString; style = t1; } shape = timePickerTheme.hourMinuteShape; if (shape == null) shape = B.RoundedRectangleBorder_LkV0; t1 = _this.isSelected; t2 = type$.MaterialState; states = t1 ? A.LinkedHashSet_LinkedHashSet$_literal([B.MaterialState_4], t2) : A.LinkedHashSet_LinkedHashSet$_empty(t2); t2 = type$.nullable_Color; t3 = A.MaterialStateProperty_resolveAs(backgroundColor, states, t2); t1 = t1 ? _this.onDoubleTap : _null; return new A.SizedBox(_null, 80, A.Material$(B.Duration_200000, true, _null, A.InkWell$(false, _null, true, A.Center$(A.Text$(_this.text, _null, _null, _null, _null, _null, style.copyWith$1$color(A.MaterialStateProperty_resolveAs(textColor, states, t2)), _null, _null, 1), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _this.onTap, _null, _null, _null, _null, _null, _null), B.Clip_2, t3, 0, _null, _null, shape, _null, _null, B.MaterialType_0), _null); } }; A._HourMinuteControl_build_closure.prototype = { call$1(states) { var t1 = this.themeData.colorScheme; return states.contains$1(0, B.MaterialState_4) ? t1.primary : t1.onSurface; }, $signature: 116 }; A._HourMinuteControl_build_closure0.prototype = { call$1(states) { var t2, t1 = this.themeData.colorScheme; if (states.contains$1(0, B.MaterialState_4)) { t1 = t1.primary; t2 = this.isDark ? 0.24 : 0.12; t1.toString; t1 = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } else { t1 = t1.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; }, $signature: 116 }; A._HourControl.prototype = { build$1(_, context) { var t2, formattedHour, t3, nextHour, formattedNextHour, previousHour, formattedPreviousHour, _this = this, _null = null, alwaysUse24HourFormat = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this.fragmentContext; formattedHour = t1.formatHour$2$alwaysUse24HourFormat(t2.selectedTime, alwaysUse24HourFormat); t3 = new A._HourControl_build_hoursFromSelected(_this); nextHour = t3.call$1(1); formattedNextHour = t1.formatHour$2$alwaysUse24HourFormat(nextHour, alwaysUse24HourFormat); previousHour = t3.call$1(-1); formattedPreviousHour = t1.formatHour$2$alwaysUse24HourFormat(previousHour, alwaysUse24HourFormat); t1 = t1.get$timePickerHourModeAnnouncement(); t3 = A.Feedback_wrapForTap(new A._HourControl_build_closure(_this), context); t3.toString; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, formattedPreviousHour, _null, _null, _null, _null, _null, _null, _null, _null, _null, formattedNextHour, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._HourControl_build_closure0(_this, previousHour), _null, _null, _null, new A._HourControl_build_closure1(_this, nextHour), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1 + " " + formattedHour), false, false, true, new A._HourMinuteControl(formattedHour, t3, t2.onHourDoubleTapped, t2.mode === B._TimePickerMode_0, _null), _null); } }; A._HourControl_build_hoursFromSelected.prototype = { call$1(hoursToAdd) { var periodOffset, t1 = this.$this.fragmentContext, t2 = t1.selectedTime; if (t1.use24HourDials) return t2.replacing$1$hour(B.JSInt_methods.$mod(t2.hour + hoursToAdd, 24)); else { periodOffset = (t2.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0 ? 0 : 12; return t2.replacing$1$hour(periodOffset + B.JSInt_methods.$mod(t2.get$hourOfPeriod() + hoursToAdd, 12)); } }, $signature: 2228 }; A._HourControl_build_closure1.prototype = { call$0() { this.$this.fragmentContext.onTimeChange.call$1(this.nextHour); }, $signature: 0 }; A._HourControl_build_closure0.prototype = { call$0() { this.$this.fragmentContext.onTimeChange.call$1(this.previousHour); }, $signature: 0 }; A._HourControl_build_closure.prototype = { call$0() { return this.$this.fragmentContext.onModeChange.call$1(B._TimePickerMode_0); }, $signature: 0 }; A._StringFragment.prototype = { _stringFragmentValue$1(timeOfDayFormat) { switch (timeOfDayFormat.index) { case 4: case 5: case 3: case 0: return ":"; case 1: return "."; case 2: return "h"; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t1, textColor, _null = null, theme = A.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), hourMinuteStyle = timePickerTheme.hourMinuteTextStyle; if (hourMinuteStyle == null) { t1 = theme.textTheme.displayMedium; t1.toString; hourMinuteStyle = t1; } textColor = timePickerTheme.hourMinuteTextColor; if (textColor == null) textColor = theme.colorScheme.onSurface; return new A.ExcludeSemantics(true, new A.Padding(B.EdgeInsets_6_0_6_0, A.Center$(A.Text$(this._stringFragmentValue$1(this.timeOfDayFormat), _null, _null, _null, _null, _null, hourMinuteStyle.apply$1$color(A.MaterialStateProperty_resolveAs(textColor, A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), type$.nullable_Color)), _null, _null, 1), _null, _null), _null), _null); } }; A._MinuteControl.prototype = { build$1(_, context) { var t2, t3, formattedMinute, t4, nextMinute, formattedNextMinute, previousMinute, formattedPreviousMinute, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this.fragmentContext; t3 = t2.selectedTime; formattedMinute = t1.formatMinute$1(t3); t4 = t3.minute; nextMinute = t3.replacing$1$minute(B.JSInt_methods.$mod(t4 + 1, 60)); formattedNextMinute = t1.formatMinute$1(nextMinute); previousMinute = t3.replacing$1$minute(B.JSInt_methods.$mod(t4 - 1, 60)); formattedPreviousMinute = t1.formatMinute$1(previousMinute); t1 = t1.get$timePickerMinuteModeAnnouncement(); t4 = A.Feedback_wrapForTap(new A._MinuteControl_build_closure(_this), context); t4.toString; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, formattedPreviousMinute, _null, _null, _null, _null, _null, _null, _null, _null, _null, formattedNextMinute, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._MinuteControl_build_closure0(_this, previousMinute), _null, _null, _null, new A._MinuteControl_build_closure1(_this, nextMinute), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1 + " " + formattedMinute), false, false, true, new A._HourMinuteControl(formattedMinute, t4, t2.onMinuteDoubleTapped, t2.mode === B._TimePickerMode_1, _null), _null); } }; A._MinuteControl_build_closure1.prototype = { call$0() { this.$this.fragmentContext.onTimeChange.call$1(this.nextMinute); }, $signature: 0 }; A._MinuteControl_build_closure0.prototype = { call$0() { this.$this.fragmentContext.onTimeChange.call$1(this.previousMinute); }, $signature: 0 }; A._MinuteControl_build_closure.prototype = { call$0() { return this.$this.fragmentContext.onModeChange.call$1(B._TimePickerMode_1); }, $signature: 0 }; A._DayPeriodControl.prototype = { _togglePeriod$0() { var t1 = this.selectedTime; this.onChanged.call$1(t1.replacing$1$hour(B.JSInt_methods.$mod(t1.hour + 12, 24))); }, _setAm$1(context) { var t1, t2; if ((this.selectedTime.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0) return; switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$anteMeridiemAbbreviation(); t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; A.SemanticsService_announce(t1, t2.textDirection); break; case B.TargetPlatform_2: case B.TargetPlatform_4: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } this._togglePeriod$0(); }, _setPm$1(context) { var t1, t2; if ((this.selectedTime.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_1) return; switch (A.Theme_of(context).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$postMeridiemAbbreviation(); t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; A.SemanticsService_announce(t1, t2.textDirection); break; case B.TargetPlatform_2: case B.TargetPlatform_4: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } this._togglePeriod$0(); }, build$1(_, context) { var colorScheme, timePickerTheme, textColor, backgroundColor, amSelected, t2, amStates, pmSelected, pmStates, textStyle, amStyle, pmStyle, shape, borderSide, t3, buttonTextScaleFactor, t4, t5, amButton, pmButton, result, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; colorScheme = A.Theme_of(context).colorScheme; timePickerTheme = A.TimePickerTheme_of(context); textColor = timePickerTheme.dayPeriodTextColor; if (textColor == null) textColor = A._MaterialStateColor$(new A._DayPeriodControl_build_closure(colorScheme)); backgroundColor = timePickerTheme.dayPeriodColor; if (backgroundColor == null) backgroundColor = A._MaterialStateColor$(new A._DayPeriodControl_build_closure0(colorScheme, colorScheme.brightness === B.Brightness_0)); amSelected = (_this.selectedTime.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0; t2 = type$.MaterialState; amStates = amSelected ? A.LinkedHashSet_LinkedHashSet$_literal([B.MaterialState_4], t2) : A.LinkedHashSet_LinkedHashSet$_empty(t2); pmSelected = !amSelected; pmStates = pmSelected ? A.LinkedHashSet_LinkedHashSet$_literal([B.MaterialState_4], t2) : A.LinkedHashSet_LinkedHashSet$_empty(t2); textStyle = timePickerTheme.dayPeriodTextStyle; if (textStyle == null) { t2 = A.Theme_of(context).textTheme.titleMedium; t2.toString; textStyle = t2; } t2 = type$.nullable_Color; amStyle = textStyle.copyWith$1$color(A.MaterialStateProperty_resolveAs(textColor, amStates, t2)); pmStyle = textStyle.copyWith$1$color(A.MaterialStateProperty_resolveAs(textColor, pmStates, t2)); shape = timePickerTheme.dayPeriodShape; if (shape == null) shape = B.RoundedRectangleBorder_LkV0; borderSide = timePickerTheme.dayPeriodBorderSide; if (borderSide == null) { t3 = colorScheme.onBackground.value; borderSide = new A.BorderSide(A.Color_alphaBlend(A.Color$fromARGB(97, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255), colorScheme.surface), 1, B.BorderStyle_1); } shape = shape.copyWith$1$side(borderSide); buttonTextScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor, 2); t3 = A.MaterialStateProperty_resolveAs(backgroundColor, amStates, t2); t4 = A.Feedback_wrapForTap(new A._DayPeriodControl_build_closure1(_this, context), context); t5 = A.Center$(A.Text$(t1.get$anteMeridiemAbbreviation(), _null, _null, _null, _null, _null, amStyle, _null, _null, buttonTextScaleFactor), _null, _null); amButton = A.Material$(B.Duration_200000, true, _null, A.InkWell$(false, _null, true, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, amSelected, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t5, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null), B.Clip_0, t3, 0, _null, _null, _null, _null, _null, B.MaterialType_0); t2 = A.MaterialStateProperty_resolveAs(backgroundColor, pmStates, t2); t3 = A.Feedback_wrapForTap(new A._DayPeriodControl_build_closure2(_this, context), context); t1 = A.Center$(A.Text$(t1.get$postMeridiemAbbreviation(), _null, _null, _null, _null, _null, pmStyle, _null, _null, buttonTextScaleFactor), _null, _null); pmButton = A.Material$(B.Duration_200000, true, _null, A.InkWell$(false, _null, true, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, true, pmSelected, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null), B.Clip_0, t2, 0, _null, _null, _null, _null, _null, B.MaterialType_0); t1 = _this.orientation; switch (t1.index) { case 0: result = A._DayPeriodInputPadding$(new A.SizedBox(52, 80, A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([A.Expanded$(amButton, 1), A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, new A.Border(borderSide, B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF), _null, _null, _null, B.BoxShape_0), _null, 1, _null, _null, _null, _null, _null, _null), A.Expanded$(pmButton, 1)], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_2, B.Color_0, 0, _null, _null, shape, _null, _null, B.MaterialType_0), _null), B.Size_52_96, t1); break; case 1: result = A._DayPeriodInputPadding$(new A.SizedBox(_null, 40, A.Material$(B.Duration_200000, true, _null, A.Row$(A._setArrayType([A.Expanded$(amButton, 1), A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF, borderSide), _null, _null, _null, B.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, 1), A.Expanded$(pmButton, 1)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_2, B.Color_0, 0, _null, _null, shape, _null, _null, B.MaterialType_0), _null), B.Size_0_48, t1); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return result; } }; A._DayPeriodControl_build_closure.prototype = { call$1(states) { var t1 = this.colorScheme; if (states.contains$1(0, B.MaterialState_4)) t1 = t1.primary; else { t1 = t1.onSurface.value; t1 = A.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; }, $signature: 116 }; A._DayPeriodControl_build_closure0.prototype = { call$1(states) { var t1, t2; if (states.contains$1(0, B.MaterialState_4)) { t1 = this.colorScheme.primary; t2 = this.isDark ? 0.24 : 0.12; t1.toString; t1 = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } else t1 = B.Color_0; return t1; }, $signature: 116 }; A._DayPeriodControl_build_closure1.prototype = { call$0() { return this.$this._setAm$1(this.context); }, $signature: 0 }; A._DayPeriodControl_build_closure2.prototype = { call$0() { return this.$this._setPm$1(this.context); }, $signature: 0 }; A._DayPeriodInputPadding.prototype = { createRenderObject$1(context) { var t1 = new A._RenderInputPadding1(this.orientation, this.minSize, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$minSize(this.minSize); } }; A._RenderInputPadding1.prototype = { set$minSize(value) { if (this._time_picker0$_minSize.$eq(0, value)) return; this._time_picker0$_minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._time_picker0$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._time_picker0$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._time_picker0$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._time_picker0$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, _time_picker0$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._time_picker0$_minSize; return constraints.constrain$1(new A.Size(Math.max(A.checkNum(t1), A.checkNum(t2._dx)), Math.max(A.checkNum(childSize._dy), A.checkNum(t2._dy)))); } return B.Size_0_0; }, computeDryLayout$1(constraints) { return this._time_picker0$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { var t2, t3, _this = this, t1 = _this._time_picker0$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = B.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position(result, position) { var t1, t2, t3, t4, newPosition, _this = this, _box_0 = {}; if (_this.super$RenderBox$hitTest(result, position)) return true; t1 = position._dx; if (!(t1 < 0)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t3 = t2._dx; t4 = _this._time_picker0$_minSize; if (!(t1 > Math.max(A.checkNum(t3), A.checkNum(t4._dx)))) { t3 = position._dy; t2 = t3 < 0 || t3 > Math.max(A.checkNum(t2._dy), A.checkNum(t4._dy)); } else t2 = true; } else t2 = true; if (t2) return false; newPosition = _box_0.newPosition = _this.RenderObjectWithChildMixin__child._box$_size.center$1(B.Offset_0_0); switch (_this.orientation.index) { case 0: if (position._dy > newPosition._dy) { newPosition = newPosition.$add(0, B.Offset_0_1); _box_0.newPosition = newPosition; t1 = newPosition; } else { newPosition = newPosition.$add(0, B.Offset_0_m1); _box_0.newPosition = newPosition; t1 = newPosition; } break; case 1: if (t1 > newPosition._dx) { newPosition = newPosition.$add(0, B.Offset_1_0); _box_0.newPosition = newPosition; t1 = newPosition; } else { newPosition = newPosition.$add(0, B.Offset_m1_0); _box_0.newPosition = newPosition; t1 = newPosition; } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return result.addWithRawTransform$3$hitTest$position$transform(new A._RenderInputPadding_hitTest_closure1(_box_0, _this), t1, A.MatrixUtils_forceToPoint(t1)); } }; A._RenderInputPadding_hitTest_closure1.prototype = { call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this._box_0.newPosition); }, $signature: 73 }; A._TappableLabel.prototype = { get$value(receiver) { return this.value; } }; A._DialPainter.prototype = { paint$2(canvas, size) { var t3, t4, selectorPaint, focusedPoint, focusedRect, _this = this, radius = size.get$shortestSide() / 2, center = new A.Offset(size._dx / 2, size._dy / 2), t1 = $.$get$useCanvasKit(), t2 = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2.set$color(0, _this.backgroundColor); canvas.drawCircle$3(0, center, radius, t2); t2 = new A._DialPainter_paint_getOffsetForTheta(center, radius - 28); t3 = new A._DialPainter_paint_paintLabels(canvas, t2); t4 = _this.primaryLabels; t3.call$1(t4); selectorPaint = t1 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); selectorPaint.set$color(0, _this.accentColor); t1 = _this.theta; focusedPoint = t2.call$1(t1); canvas.drawCircle$3(0, center, 4, selectorPaint); canvas.drawCircle$3(0, focusedPoint, 24, selectorPaint); selectorPaint.set$strokeWidth(2); canvas.drawLine$3(0, center, focusedPoint, selectorPaint); t1 = B.JSNumber_methods.$mod(t1, -6.283185307179586 / t4.length); if (t1 > 0.1 && t1 < 0.45) { selectorPaint.set$color(0, _this.dotColor); canvas.drawCircle$3(0, focusedPoint, 2, selectorPaint); } focusedRect = A.Rect$fromCircle(focusedPoint, 24); canvas.save$0(0); t1 = A.Path_Path(); t1.addOval$1(0, focusedRect); canvas.clipPath$1(0, t1); t3.call$1(_this.secondaryLabels); canvas.restore$0(0); }, shouldRepaint$1(oldPainter) { var _this = this; return oldPainter.primaryLabels !== _this.primaryLabels || oldPainter.secondaryLabels !== _this.secondaryLabels || !oldPainter.backgroundColor.$eq(0, _this.backgroundColor) || !J.$eq$(oldPainter.accentColor, _this.accentColor) || oldPainter.theta != _this.theta; } }; A._DialPainter_paint_getOffsetForTheta.prototype = { call$1(theta) { var t1 = this.labelRadius; return this.center.$add(0, new A.Offset(t1 * Math.cos(A.checkNum(theta)), -t1 * Math.sin(A.checkNum(theta)))); }, $signature: 2226 }; A._DialPainter_paint_paintLabels.prototype = { call$1(labels) { var t2, t3, labelTheta, _i, labelPainter, t4, t5, t6, t1 = labels.length, labelThetaIncrement = -6.283185307179586 / t1; for (t2 = this.canvas, t3 = this.getOffsetForTheta, labelTheta = 1.5707963267948966, _i = 0; _i < labels.length; labels.length === t1 || (0, A.throwConcurrentModificationError)(labels), ++_i) { labelPainter = labels[_i].painter; t4 = labelPainter._textWidthBasis; t5 = labelPainter._paragraph; t4 = t4 === B.TextWidthBasis_1 ? t5.get$longestLine() : t5.get$width(t5); t4.toString; t4 = Math.ceil(t4); t5 = labelPainter._paragraph; t5 = t5.get$height(t5); t5.toString; t5 = Math.ceil(t5); t6 = t3.call$1(labelTheta); labelPainter.paint$2(t2, new A.Offset(t6._dx + -t4 / 2, t6._dy + -t5 / 2)); labelTheta += labelThetaIncrement; } }, $signature: 2224 }; A._Dial.prototype = { createState$0() { return new A._DialState(null, null, B._StateLifecycle_0); } }; A._DialState.prototype = { initState$0() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); _this.___DialState__thetaController = A.AnimationController$(_null, B.Duration_200000, _null, 1, _null, _this); _this.___DialState__thetaTween = new A.Tween(_this._getThetaForTime$1(_this._widget.selectedTime), _null, type$.Tween_double); t1 = type$.Animation_double; t2 = t1._as(A._lateReadCheck(_this.___DialState__thetaController, "_thetaController")); t3 = A._lateReadCheck(_this.___DialState__thetaTween, "_thetaTween"); t2 = t1._as(new A._AnimatedEvaluation(t2, new A.CurveTween(B.Cubic_ifx), type$.CurveTween._eval$1("_AnimatedEvaluation"))); t3.toString; t2.addListener$1(0, new A._DialState_initState_closure(_this)); _this.___DialState__theta = new A._AnimatedEvaluation(t2, t3, A._instanceType(t3)._eval$1("_AnimatedEvaluation")); }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; _this.___DialState_themeData = A.Theme_of(t1); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___DialState_localizations = t1; _this.___DialState_media = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; if (t1.mode != oldWidget.mode || !J.$eq$(t1.selectedTime, oldWidget.selectedTime)) if (!_this._time_picker0$_dragging) _this._animateTo$1(_this._getThetaForTime$1(_this._widget.selectedTime)); }, dispose$0(_) { A._lateReadCheck(this.___DialState__thetaController, "_thetaController").dispose$0(0); this.super$__DialState_State_SingleTickerProviderStateMixin$dispose(0); }, _animateTo$1(targetTheta) { var currentTheta, beginTheta, t1 = A._lateReadCheck(this.___DialState__theta, "_theta"), t2 = t1._evaluatable; t1 = t1.parent; currentTheta = t2.transform$1(0, t1.get$value(t1)); beginTheta = A._DialState__nearest(targetTheta, A._DialState__nearest(targetTheta, currentTheta, currentTheta + 6.283185307179586), currentTheta - 6.283185307179586); t1 = A._lateReadCheck(this.___DialState__thetaTween, "_thetaTween"); t1.begin = beginTheta; t1.end = targetTheta; t1 = A._lateReadCheck(this.___DialState__thetaController, "_thetaController"); t1.set$value(0, 0); t1.forward$0(0); }, _getThetaForTime$1(time) { var t1 = this._widget, hoursFactor = t1.use24HourDials ? 24 : 12; return B.JSNumber_methods.$mod(1.5707963267948966 - (t1.mode === B._TimePickerMode_0 ? B.JSNumber_methods.$mod(time.hour / hoursFactor, hoursFactor) : B.JSNumber_methods.$mod(time.minute / 60, 60)) * 6.283185307179586, 6.283185307179586); }, _getTimeForTheta$2$roundMinutes(theta, roundMinutes) { var newHour, minute, fraction = B.JSNumber_methods.$mod(0.25 - B.JSNumber_methods.$mod(theta, 6.283185307179586) / 6.283185307179586, 1), t1 = this._widget; if (t1.mode === B._TimePickerMode_0) { if (t1.use24HourDials) newHour = B.JSInt_methods.$mod(B.JSNumber_methods.round$0(fraction * 24), 24); else { newHour = B.JSInt_methods.$mod(B.JSNumber_methods.round$0(fraction * 12), 12); newHour += (t1.selectedTime.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0 ? 0 : 12; } return t1.selectedTime.replacing$1$hour(newHour); } else { minute = B.JSInt_methods.$mod(B.JSNumber_methods.round$0(fraction * 60), 60); if (roundMinutes) minute = B.JSInt_methods.$mod(B.JSInt_methods._tdivFast$1(minute + 2, 5) * 5, 60); return t1.selectedTime.replacing$1$minute(minute); } }, _notifyOnChangedIfNeeded$1$roundMinutes(roundMinutes) { var current, _this = this, t1 = A._lateReadCheck(_this.___DialState__theta, "_theta"), t2 = t1._evaluatable; t1 = t1.parent; current = _this._getTimeForTheta$2$roundMinutes(t2.transform$1(0, t1.get$value(t1)), roundMinutes); t1 = _this._widget; if (!current.$eq(0, t1.selectedTime)) _this._widget.onChanged.call$1(current); return current; }, _notifyOnChangedIfNeeded$0() { return this._notifyOnChangedIfNeeded$1$roundMinutes(false); }, _updateThetaForPan$1$roundMinutes(roundMinutes) { this.setState$1(new A._DialState__updateThetaForPan_closure(this, roundMinutes)); }, _updateThetaForPan$0() { return this._updateThetaForPan$1$roundMinutes(false); }, _handlePanStart$1(details) { var t1, _this = this; _this._time_picker0$_dragging = true; t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); _this._time_picker0$_position = t1.globalToLocal$1(details.globalPosition); _this._time_picker0$_center = t1._box$_size.center$1(B.Offset_0_0); _this._updateThetaForPan$0(); _this._notifyOnChangedIfNeeded$0(); }, _handlePanUpdate$1(details) { var _this = this, t1 = _this._time_picker0$_position; t1.toString; _this._time_picker0$_position = t1.$add(0, details.delta); _this._updateThetaForPan$0(); _this._notifyOnChangedIfNeeded$0(); }, _handlePanEnd$1(details) { var t1, _this = this; _this._time_picker0$_dragging = false; _this._time_picker0$_center = _this._time_picker0$_position = null; _this._animateTo$1(_this._getThetaForTime$1(_this._widget.selectedTime)); t1 = _this._widget; if (t1.mode === B._TimePickerMode_0) t1.onHourSelected.call$0(); }, _time_picker0$_handleTapUp$1(details) { var newTime, t2, t3, t4, _this = this, _s13_ = "localizations", t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); _this._time_picker0$_position = t1.globalToLocal$1(details.globalPosition); _this._time_picker0$_center = t1._box$_size.center$1(B.Offset_0_0); _this._updateThetaForPan$1$roundMinutes(true); newTime = _this._notifyOnChangedIfNeeded$1$roundMinutes(true); t1 = _this._widget; if (t1.mode === B._TimePickerMode_0) { t1 = t1.use24HourDials; t2 = type$.Directionality; t3 = _this._framework$_element; t4 = _this.___DialState_localizations; if (t1) { t3.toString; t1 = A._lateReadCheck(t4, _s13_).formatDecimal$1(newTime.hour); t2 = t3.dependOnInheritedWidgetOfExactType$1$0(t2); t2.toString; A.SemanticsService_announce(t1, t2.textDirection); } else { t3.toString; t1 = A._lateReadCheck(t4, _s13_).formatDecimal$1(newTime.get$hourOfPeriod()); t2 = t3.dependOnInheritedWidgetOfExactType$1$0(t2); t2.toString; A.SemanticsService_announce(t1, t2.textDirection); } _this._widget.onHourSelected.call$0(); } else { t1 = _this._framework$_element; t1.toString; t2 = A._lateReadCheck(_this.___DialState_localizations, _s13_).formatDecimal$1(newTime.minute); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; A.SemanticsService_announce(t2, t1.textDirection); } t1 = A._lateReadCheck(_this.___DialState__theta, "_theta"); t2 = t1._evaluatable; t1 = t1.parent; _this._animateTo$1(_this._getThetaForTime$1(_this._getTimeForTheta$2$roundMinutes(t2.transform$1(0, t1.get$value(t1)), true))); _this._time_picker0$_dragging = false; _this._time_picker0$_center = _this._time_picker0$_position = null; }, _selectHour$1(hour) { var t2, time, angle, _this = this, t1 = _this._framework$_element; t1.toString; t2 = A._lateReadCheck(_this.___DialState_localizations, "localizations").formatDecimal$1(hour); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; A.SemanticsService_announce(t2, t1.textDirection); t1 = _this._widget; if (t1.mode === B._TimePickerMode_0 && t1.use24HourDials) time = new A.TimeOfDay(hour, t1.selectedTime.minute); else { t1 = t1.selectedTime; t2 = t1.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1; t1 = t1.minute; time = t2 === B.DayPeriod_0 ? new A.TimeOfDay(hour, t1) : new A.TimeOfDay(hour + 12, t1); } angle = _this._getThetaForTime$1(time); t1 = A._lateReadCheck(_this.___DialState__thetaTween, "_thetaTween"); t1.end = t1.begin = angle; _this._notifyOnChangedIfNeeded$0(); }, _buildTappableLabel$5(textTheme, color, value, label, onTap) { var _null = null, style = textTheme.bodyLarge.copyWith$1$color(color), labelScaleFactor = Math.min(this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor, 2), t1 = A.TextPainter$(_null, _null, _null, _null, A.TextSpan$(_null, _null, style, label), B.TextAlign_4, B.TextDirection_1, _null, labelScaleFactor, B.TextWidthBasis_0); t1.layout$0(0); return new A._TappableLabel(value, t1, onTap); }, _build24HourRing$2(textTheme, color) { var _i, timeOfDay, _this = this, t1 = A._setArrayType([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = B.List_htm1[_i]; t1.push(_this._buildTappableLabel$5(textTheme, color, timeOfDay.hour, A._lateReadCheck(_this.___DialState_localizations, "localizations").formatHour$2$alwaysUse24HourFormat(timeOfDay, A._lateReadCheck(_this.___DialState_media, "media").alwaysUse24HourFormat), new A._DialState__build24HourRing_closure(_this, timeOfDay))); } return t1; }, _build12HourRing$2(textTheme, color) { var _i, timeOfDay, _this = this, t1 = A._setArrayType([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = B.List_htm0[_i]; t1.push(_this._buildTappableLabel$5(textTheme, color, timeOfDay.hour, A._lateReadCheck(_this.___DialState_localizations, "localizations").formatHour$2$alwaysUse24HourFormat(timeOfDay, A._lateReadCheck(_this.___DialState_media, "media").alwaysUse24HourFormat), new A._DialState__build12HourRing_closure(_this, timeOfDay))); } return t1; }, _buildMinutes$2(textTheme, color) { var _i, timeOfDay, t1 = A._setArrayType([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = B.List_htm[_i]; t1.push(this._buildTappableLabel$5(textTheme, color, timeOfDay.minute, A._lateReadCheck(this.___DialState_localizations, "localizations").formatMinute$1(timeOfDay), new A._DialState__buildMinutes_closure(this, timeOfDay))); } return t1; }, build$1(_, context) { var t1, accentColor, t2, t3, primaryLabelColor, secondaryLabelColor, primaryLabels, secondaryLabels, _this = this, _null = null, _s9_ = "themeData", theme = A.Theme_of(context), pickerTheme = A.TimePickerTheme_of(context), backgroundColor = pickerTheme.dialBackgroundColor; if (backgroundColor == null) { t1 = A._lateReadCheck(_this.___DialState_themeData, _s9_).colorScheme.onBackground.value; backgroundColor = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } accentColor = pickerTheme.dialHandColor; if (accentColor == null) accentColor = A._lateReadCheck(_this.___DialState_themeData, _s9_).colorScheme.primary; t1 = pickerTheme.dialTextColor; t2 = type$.MaterialState; t3 = type$.nullable_Color; primaryLabelColor = A.MaterialStateProperty_resolveAs(t1, A.LinkedHashSet_LinkedHashSet$_empty(t2), t3); if (primaryLabelColor == null) primaryLabelColor = A._lateReadCheck(_this.___DialState_themeData, _s9_).colorScheme.onSurface; secondaryLabelColor = A.MaterialStateProperty_resolveAs(t1, A.LinkedHashSet_LinkedHashSet$_literal([B.MaterialState_4], t2), t3); if (secondaryLabelColor == null) secondaryLabelColor = A._lateReadCheck(_this.___DialState_themeData, _s9_).colorScheme.onPrimary; t1 = _this._widget; switch (t1.mode) { case B._TimePickerMode_0: t2 = t1.use24HourDials; t1 = t1.selectedTime; if (t2) { t1.toString; t1 = theme.textTheme; primaryLabels = _this._build24HourRing$2(t1, primaryLabelColor); secondaryLabels = _this._build24HourRing$2(t1, secondaryLabelColor); } else { t1.get$hourOfPeriod(); t1 = theme.textTheme; primaryLabels = _this._build12HourRing$2(t1, primaryLabelColor); secondaryLabels = _this._build12HourRing$2(t1, secondaryLabelColor); } break; case B._TimePickerMode_1: t1.selectedTime.toString; t1 = theme.textTheme; primaryLabels = _this._buildMinutes$2(t1, primaryLabelColor); secondaryLabels = _this._buildMinutes$2(t1, secondaryLabelColor); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = theme.colorScheme; t2 = A._lateReadCheck(_this.___DialState__theta, "_theta"); t3 = t2._evaluatable; t2 = t2.parent; t2 = t3.transform$1(0, t2.get$value(t2)); context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality).toString; return A.GestureDetector$(_null, A.CustomPaint$(_null, _null, B.ValueKey_U86, new A._DialPainter(primaryLabels, secondaryLabels, backgroundColor, accentColor, t1.surface, t2, $.PaintingBinding__instance.PaintingBinding__systemFonts), B.Size_0_0), B.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_handlePanEnd(), _this.get$_handlePanStart(), _this.get$_handlePanUpdate(), _null, _null, _null, _null, _null, _null, _this.get$_time_picker0$_handleTapUp(), _null, _null, _null); } }; A._DialState_initState_closure.prototype = { call$0() { return this.$this.setState$1(new A._DialState_initState__closure()); }, $signature: 0 }; A._DialState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A._DialState__updateThetaForPan_closure.prototype = { call$0() { var t3, offset, angle, t1 = this.$this, t2 = t1._time_picker0$_position; t2.toString; t3 = t1._time_picker0$_center; t3.toString; offset = t2.$sub(0, t3); angle = B.JSNumber_methods.$mod(Math.atan2(A.checkNum(offset._dx), A.checkNum(offset._dy)) - 1.5707963267948966, 6.283185307179586); if (this.roundMinutes) angle = t1._getThetaForTime$1(t1._getTimeForTheta$2$roundMinutes(angle, true)); t1 = A._lateReadCheck(t1.___DialState__thetaTween, "_thetaTween"); t1.end = t1.begin = angle; }, $signature: 0 }; A._DialState__build24HourRing_closure.prototype = { call$0() { this.$this._selectHour$1(this.timeOfDay.hour); }, $signature: 0 }; A._DialState__build12HourRing_closure.prototype = { call$0() { this.$this._selectHour$1(this.timeOfDay.hour); }, $signature: 0 }; A._DialState__buildMinutes_closure.prototype = { call$0() { var t4, angle, t1 = this.$this, t2 = this.timeOfDay.minute, t3 = t1._framework$_element; t3.toString; t4 = A._lateReadCheck(t1.___DialState_localizations, "localizations").formatDecimal$1(t2); t3 = t3.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; A.SemanticsService_announce(t4, t3.textDirection); angle = t1._getThetaForTime$1(new A.TimeOfDay(t1._widget.selectedTime.hour, t2)); t2 = A._lateReadCheck(t1.___DialState__thetaTween, "_thetaTween"); t2.end = t2.begin = angle; t1._notifyOnChangedIfNeeded$0(); }, $signature: 0 }; A._TimePickerInput.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TimePickerInputState(new A.RestorableBool(false, t1), new A.RestorableBool(false, t1), null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), null, true, null, B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); } }; A._TimePickerInputState.prototype = { get$_selectedTime() { var t1, t2, value = this.___TimePickerInputState__selectedTime; if (value === $) { t1 = this._widget.initialSelectedTime; t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(value, "_selectedTime"); value = this.___TimePickerInputState__selectedTime = new A.RestorableTimeOfDay(t1, t2); } return value; }, get$restorationId() { return this._widget.restorationId; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this.get$_selectedTime(), "selected_time"); _this.registerForRestoration$2(_this.hourHasError, "hour_has_error"); _this.registerForRestoration$2(_this.minuteHasError, "minute_has_error"); }, _parseHour$1(value) { var newHour, t1, _null = null; if (value == null) return _null; newHour = A.Primitives_parseInt(value, _null); if (newHour == null) return _null; if (this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat) { if (newHour >= 0 && newHour < 24) return newHour; } else if (newHour > 0 && newHour < 13) { if (!((this.get$_selectedTime()._restoration_properties$_value.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_1 && newHour !== 12)) t1 = (this.get$_selectedTime()._restoration_properties$_value.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1) === B.DayPeriod_0 && newHour === 12; else t1 = true; return t1 ? B.JSInt_methods.$mod(newHour + 12, 24) : newHour; } return _null; }, _parseMinute$1(value) { var newMinute, _null = null; if (value == null) return _null; newMinute = A.Primitives_parseInt(value, _null); if (newMinute == null) return _null; if (newMinute >= 0 && newMinute < 60) return newMinute; return _null; }, _handleHourSavedSubmitted$1(value) { var t1, _this = this, newHour = _this._parseHour$1(value); if (newHour != null) { _this.get$_selectedTime().set$value(0, new A.TimeOfDay(newHour, _this.get$_selectedTime()._restoration_properties$_value.minute)); t1 = _this._widget; t1.toString; t1.onChanged$1(_this.get$_selectedTime()._restoration_properties$_value); } }, _handleHourChanged$1(value) { var t1; if (this._parseHour$1(value) != null && value.length === 2) { t1 = this._framework$_element; t1.toString; t1 = A.FocusScope_of(t1); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); } }, _handleMinuteSavedSubmitted$1(value) { var t1, t2, _this = this; if (_this._parseMinute$1(value) != null) { t1 = _this.get$_selectedTime(); t2 = _this.get$_selectedTime()._restoration_properties$_value.hour; value.toString; t1.set$value(0, new A.TimeOfDay(t2, A.int_parse(value, null))); t2 = _this._widget; t2.toString; t2.onChanged$1(_this.get$_selectedTime()._restoration_properties$_value); } }, _handleDayPeriodChanged$1(value) { var t1; this.get$_selectedTime().set$value(0, value); t1 = this._widget; t1.toString; t1.onChanged$1(this.get$_selectedTime()._restoration_properties$_value); }, _validateHour$1(value) { var newHour = this._parseHour$1(value); this.setState$1(new A._TimePickerInputState__validateHour_closure(this, newHour)); return newHour == null ? "" : null; }, _validateMinute$1(value) { var newMinute = this._parseMinute$1(value); this.setState$1(new A._TimePickerInputState__validateMinute_closure(this, newMinute)); return newMinute == null ? "" : null; }, build$1(_, context) { var timeOfDayFormat, theme, hourMinuteStyle, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, media = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t1 = type$.MaterialLocalizations, t2 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t2.toString; timeOfDayFormat = t2.timeOfDayFormat$1$alwaysUse24HourFormat(media.alwaysUse24HourFormat); t2 = A.hourFormat(timeOfDayFormat) === B.HourFormat_2; theme = A.Theme_of(context); hourMinuteStyle = A.TimePickerTheme_of(context).hourMinuteTextStyle; if (hourMinuteStyle == null) { t3 = theme.textTheme.displayMedium; t3.toString; hourMinuteStyle = t3; } _this._widget.toString; t3 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t3.toString; t3 = t3.get$timePickerInputHelpText(); t4 = A.TimePickerTheme_of(context).helpTextStyle; t3 = A.Text$(t3, _null, _null, _null, _null, _null, t4 == null ? theme.textTheme.labelSmall : t4, _null, _null, _null); t4 = type$.JSArray_Widget; t5 = A._setArrayType([], t4); if (t2 && timeOfDayFormat === B.TimeOfDayFormat_5) B.JSArray_methods.addAll$1(t5, A._setArrayType([new A._DayPeriodControl(_this.get$_selectedTime()._restoration_properties$_value, B.Orientation_0, _this.get$_handleDayPeriodChanged(), _null), B.SizedBox_12_null_null_null], t4)); t6 = _this.get$_selectedTime()._restoration_properties$_value; t7 = _this._widget; t7 = A._setArrayType([B.SizedBox_null_8_null_null, new A._HourTextField(t6, hourMinuteStyle, t7.autofocusHour, _this.get$_validateHour(), _this.get$_handleHourSavedSubmitted(), _this.get$_handleHourChanged(), t7.hourLabelText, "hour_text_field", _null), B.SizedBox_null_8_null_null], t4); t6 = _this.hourHasError; if (!t6._restoration_properties$_value && !_this.minuteHasError._restoration_properties$_value) { _this._widget.toString; t8 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t8.toString; t8 = t8.get$timePickerHourLabel(); t7.push(new A.ExcludeSemantics(true, A.Text$(t8, _null, 1, B.TextOverflow_2, _null, _null, theme.textTheme.bodySmall, _null, _null, _null), _null)); } t7 = A.Expanded$(A.Column$(t7, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t8 = A.Container$(_null, new A._StringFragment(timeOfDayFormat, _null), B.Clip_0, _null, _null, _null, _null, 80, _null, B.EdgeInsets_0_8_0_0, _null, _null, _null, _null); t9 = _this.get$_selectedTime()._restoration_properties$_value; t10 = _this._widget; t10 = A._setArrayType([B.SizedBox_null_8_null_null, new A._MinuteTextField(t9, hourMinuteStyle, t10.autofocusMinute, _this.get$_validateMinute(), _this.get$_handleMinuteSavedSubmitted(), t10.minuteLabelText, "minute_text_field", _null), B.SizedBox_null_8_null_null], t4); if (!t6._restoration_properties$_value && !_this.minuteHasError._restoration_properties$_value) { _this._widget.toString; t9 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t9.toString; t9 = t9.get$timePickerMinuteLabel(); t10.push(new A.ExcludeSemantics(true, A.Text$(t9, _null, 1, B.TextOverflow_2, _null, _null, theme.textTheme.bodySmall, _null, _null, _null), _null)); } t5.push(A.Expanded$(A.Row$(A._setArrayType([t7, t8, A.Expanded$(A.Column$(t10, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1)], t4), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, B.TextDirection_1), 1)); if (t2 && timeOfDayFormat !== B.TimeOfDayFormat_5) B.JSArray_methods.addAll$1(t5, A._setArrayType([B.SizedBox_12_null_null_null, new A._DayPeriodControl(_this.get$_selectedTime()._restoration_properties$_value, B.Orientation_0, _this.get$_handleDayPeriodChanged(), _null)], t4)); t2 = A._setArrayType([t3, B.SizedBox_null_16_null_null, A.Row$(t5, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t4); if (t6._restoration_properties$_value || _this.minuteHasError._restoration_properties$_value) { _this._widget.toString; t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t1); t1.toString; t1 = t1.get$invalidTimeLabel(); t3 = theme.textTheme.bodyMedium; t3.toString; t2.push(A.Text$(t1, _null, _null, _null, _null, _null, t3.copyWith$1$color(theme.colorScheme.error), _null, _null, _null)); } else t2.push(B.SizedBox_null_2_null_null); return new A.Padding(B.EdgeInsets_24_16_24_16, A.Column$(t2, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null); } }; A._TimePickerInputState__validateHour_closure.prototype = { call$0() { this.$this.hourHasError.super$RestorableValue$value(0, this.newHour == null); }, $signature: 0 }; A._TimePickerInputState__validateMinute_closure.prototype = { call$0() { this.$this.minuteHasError.super$RestorableValue$value(0, this.newMinute == null); }, $signature: 0 }; A._HourTextField.prototype = { build$1(_, context) { var _this = this, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$timePickerHourLabel(); return A._HourMinuteTextField$(_this.autofocus, true, _this.onChanged, _this.onSavedSubmitted, _this.restorationId, _this.selectedTime, t1, _this.style, _this.validator); } }; A._MinuteTextField.prototype = { build$1(_, context) { var _this = this, t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$timePickerMinuteLabel(); return A._HourMinuteTextField$(_this.autofocus, false, null, _this.onSavedSubmitted, _this.restorationId, _this.selectedTime, t1, _this.style, _this.validator); } }; A._HourMinuteTextField.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._HourMinuteTextFieldState(new A.RestorableTextEditingController(B.TextEditingValue_li8, t1), new A.RestorableBool(false, t1), null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), null, true, null, B._StateLifecycle_0); }, onSavedSubmitted$1(arg0) { return this.onSavedSubmitted.call$1(arg0); } }; A._HourMinuteTextFieldState.prototype = { initState$0() { this.super$State$initState(); var t1 = A.FocusNode$(true, null, true, true, null, null, false); t1.addListener$1(0, new A._HourMinuteTextFieldState_initState_closure(this)); this.___HourMinuteTextFieldState_focusNode = t1; }, didChangeDependencies$0() { var t1, _this = this; _this.super$__HourMinuteTextFieldState_State_RestorationMixin$didChangeDependencies(); t1 = _this.controllerHasBeenSet; if (!t1._restoration_properties$_value) { t1.super$RestorableValue$value(0, true); t1 = _this.controller._restoration_properties$_value; t1.toString; t1.set$text(0, _this.get$_formattedValue()); } }, get$restorationId() { return this._widget.restorationId; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this.controller, "text_editing_controller"); _this.registerForRestoration$2(_this.controllerHasBeenSet, "has_controller_been_set"); }, get$_formattedValue() { var t3, t4, t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t2 = this._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = this._widget; t4 = t3.isHour; t3 = t3.selectedTime; return !t4 ? t2.formatMinute$1(t3) : t2.formatHour$2$alwaysUse24HourFormat(t3, t1.alwaysUse24HourFormat); }, build$1(_, context) { var inputDecoration, unfocusedFillColor, hintText, t7, t8, t9, t10, _this = this, _null = null, _s9_ = "focusNode", theme = A.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), colorScheme = theme.colorScheme, t1 = colorScheme.error, t2 = _this._widget.style, t3 = colorScheme.onSurface, t4 = t3.value, t5 = t4 >>> 16 & 255, t6 = t4 >>> 8 & 255; t4 &= 255; inputDecoration = A.InputDecoration$(_null, _null, _null, B.EdgeInsets_0_0_0_0, _null, _null, _null, _null, true, B.OutlineInputBorder_Fb0, new A.OutlineInputBorder(4, B.BorderRadius_tLn0, new A.BorderSide(t1, 2, B.BorderStyle_1)), _null, B.TextStyle_zIQ1, _null, _null, true, _null, _null, _null, _null, new A.OutlineInputBorder(4, B.BorderRadius_tLn0, new A.BorderSide(colorScheme.primary, 2, B.BorderStyle_1)), new A.OutlineInputBorder(4, B.BorderRadius_tLn0, new A.BorderSide(t1, 2, B.BorderStyle_1)), _null, _null, _null, _null, t2.copyWith$1$color(A.Color$fromARGB(92, t5, t6, t4)), _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); unfocusedFillColor = timePickerTheme.hourMinuteColor; if (unfocusedFillColor == null) unfocusedFillColor = A.Color$fromARGB(31, t5, t6, t4); t1 = type$.MediaQuery; if (!context.dependOnInheritedWidgetOfExactType$1$0(t1).data.accessibleNavigation) { $.WidgetsBinding__instance.toString; t2 = $.$get$window().platformDispatcher._configuration.semanticsEnabled; } else t2 = true; if (t2) hintText = _this._widget.semanticHintText; else hintText = A._lateReadCheck(_this.___HourMinuteTextFieldState_focusNode, _s9_).get$hasFocus() ? _null : _this.get$_formattedValue(); if (A._lateReadCheck(_this.___HourMinuteTextFieldState_focusNode, _s9_).get$hasFocus()) t2 = B.Color_0; else t2 = unfocusedFillColor; inputDecoration = inputDecoration.copyWith$2$fillColor$hintText(t2, hintText); t1 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data.copyWith$1$textScaleFactor(1); t2 = _this.RestorationMixin__bucket; t4 = _this._widget.autofocus; t5 = A._setArrayType([new A.LengthLimitingTextInputFormatter(2, _null)], type$.JSArray_TextInputFormatter); t6 = A._lateReadCheck(_this.___HourMinuteTextFieldState_focusNode, _s9_); t7 = _this._widget.style; t8 = timePickerTheme.hourMinuteTextColor; t3 = t7.copyWith$1$color(t8 == null ? t3 : t8); t7 = _this.controller._restoration_properties$_value; t7.toString; t8 = _this._widget; t9 = t8.validator; t10 = t8.onSavedSubmitted; return new A.SizedBox(_null, 80, new A.MediaQuery(t1, A.UnmanagedRestorationScope$(t2, A.TextFormField$(true, _null, t4 === true, _null, t7, inputDecoration, _null, true, t6, _null, t5, _null, B.TextInputType_2_false_false, _null, _null, false, t8.onChanged, new A._HourMinuteTextFieldState_build_closure(_this), t10, t10, false, "hour_minute_text_form_field", t3, B.TextAlign_2, _null, t9)), _null), _null); } }; A._HourMinuteTextFieldState_initState_closure.prototype = { call$0() { this.$this.setState$1(new A._HourMinuteTextFieldState_initState__closure()); }, $signature: 0 }; A._HourMinuteTextFieldState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A._HourMinuteTextFieldState_build_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget; t2.toString; return t2.onSavedSubmitted$1(t1.controller._restoration_properties$_value._change_notifier$_value.text); }, $signature: 0 }; A.TimePickerDialog.prototype = { createState$0() { var _null = null, t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TimePickerDialogState(new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_FormState), new A._RestorableTimePickerMode(B._TimePickerMode_0, t1), new A._RestorableTimePickerModeN(_null, t1), new A._RestorableAutovalidateMode0(B.AutovalidateMode_0, t1), new A.RestorableBoolN(_null, t1), new A.RestorableBoolN(_null, t1), new A.RestorableBool(false, t1), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, B._StateLifecycle_0); } }; A._RestorableTimePickerEntryMode.prototype = { createDefaultValue$0() { return this._time_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_boW[A._asIntS(data)]; }, toPrimitives$0() { return this._restoration_properties$_value.index; } }; A._RestorableTimePickerMode.prototype = { createDefaultValue$0() { return this._time_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_izR[A._asIntS(data)]; }, toPrimitives$0() { return this._restoration_properties$_value.index; } }; A._RestorableAutovalidateMode0.prototype = { createDefaultValue$0() { return this._time_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_wbZ[A._asIntS(data)]; }, toPrimitives$0() { return this._restoration_properties$_value.index; } }; A._RestorableTimePickerModeN.prototype = { createDefaultValue$0() { return this._time_picker0$_defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return B.List_izR[A._asIntS(data)]; }, toPrimitives$0() { var t1 = this._restoration_properties$_value; return t1 == null ? null : t1.index; } }; A._TimePickerDialogState.prototype = { get$_time_picker0$_entryMode() { var t1, t2, value = this.___TimePickerDialogState__entryMode; if (value === $) { t1 = this._widget.initialEntryMode; t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(value, "_entryMode"); value = this.___TimePickerDialogState__entryMode = new A._RestorableTimePickerEntryMode(t1, t2); } return value; }, didChangeDependencies$0() { var t1, _this = this; _this.super$__TimePickerDialogState_State_RestorationMixin$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___TimePickerDialogState_localizations = t1; _this._announceInitialTimeOnce$0(); _this._announceModeOnce$0(); }, initState$0() { var _this = this, _s18_ = "_entryModeListener"; _this.super$State$initState(); A._lateWriteOnceCheck(_this.___TimePickerDialogState__entryModeListener, _s18_); _this.___TimePickerDialogState__entryModeListener = new A._TimePickerDialogState_initState_closure(_this); _this.get$_time_picker0$_entryMode().addListener$1(0, A._lateReadCheck(_this.___TimePickerDialogState__entryModeListener, _s18_)); }, get$restorationId() { this._widget.toString; return null; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this.get$_time_picker0$_entryMode(), "entry_mode"); _this.registerForRestoration$2(_this._time_picker0$_mode, "mode"); _this.registerForRestoration$2(_this._lastModeAnnounced, "last_mode_announced"); _this.registerForRestoration$2(_this._time_picker0$_autovalidateMode, "autovalidateMode"); _this.registerForRestoration$2(_this._autofocusHour, "autofocus_hour"); _this.registerForRestoration$2(_this._autofocusMinute, "autofocus_minute"); _this.registerForRestoration$2(_this._announcedInitialTime, "announced_initial_time"); _this.registerForRestoration$2(_this.get$_selectedTime(), "selected_time"); }, get$_selectedTime() { var t1, t2, value = this.___TimePickerDialogState__selectedTime; if (value === $) { t1 = this._widget.initialTime; t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(value, "_selectedTime"); value = this.___TimePickerDialogState__selectedTime = new A.RestorableTimeOfDay(t1, t2); } return value; }, _time_picker0$_vibrate$0() { var _this = this, t1 = _this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = _this._vibrateTimer; if (t1 != null) t1.cancel$0(0); _this._vibrateTimer = A.Timer_Timer(B.Duration_100000, new A._TimePickerDialogState__vibrate_closure(_this)); break; case B.TargetPlatform_2: case B.TargetPlatform_4: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _time_picker0$_handleModeChanged$1(mode) { this._time_picker0$_vibrate$0(); this.setState$1(new A._TimePickerDialogState__handleModeChanged_closure(this, mode)); }, _time_picker0$_handleEntryModeToggle$0() { this.setState$1(new A._TimePickerDialogState__handleEntryModeToggle_closure(this)); }, _announceModeOnce$0() { var t3, t4, _this = this, _s13_ = "localizations", t1 = _this._lastModeAnnounced, t2 = _this._time_picker0$_mode; if (J.$eq$(t1._restoration_properties$_value, t2._restoration_properties$_value)) return; switch (t2._restoration_properties$_value) { case B._TimePickerMode_0: t3 = _this._framework$_element; t3.toString; t4 = A._lateReadCheck(_this.___TimePickerDialogState_localizations, _s13_).get$timePickerHourModeAnnouncement(); t3 = t3.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; A.SemanticsService_announce(t4, t3.textDirection); break; case B._TimePickerMode_1: t3 = _this._framework$_element; t3.toString; t4 = A._lateReadCheck(_this.___TimePickerDialogState_localizations, _s13_).get$timePickerMinuteModeAnnouncement(); t3 = t3.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; A.SemanticsService_announce(t4, t3.textDirection); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1.set$value(0, t2._restoration_properties$_value); }, _announceInitialTimeOnce$0() { var media, t2, t3, _this = this, t1 = _this._announcedInitialTime; if (t1._restoration_properties$_value) return; media = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t2 = _this._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = _this._framework$_element; t3.toString; t2 = t2.formatTimeOfDay$2$alwaysUse24HourFormat(_this._widget.initialTime, media.alwaysUse24HourFormat); t3 = t3.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; A.SemanticsService_announce(t2, t3.textDirection); t1.super$RestorableValue$value(0, true); }, _handleTimeChanged$1(value) { this._time_picker0$_vibrate$0(); this.setState$1(new A._TimePickerDialogState__handleTimeChanged_closure(this, value)); }, _handleHourDoubleTapped$0() { this._autofocusHour.set$value(0, true); this._time_picker0$_handleEntryModeToggle$0(); }, _handleMinuteDoubleTapped$0() { this._autofocusMinute.set$value(0, true); this._time_picker0$_handleEntryModeToggle$0(); }, _handleHourSelected$0() { this.setState$1(new A._TimePickerDialogState__handleHourSelected_closure(this)); }, _time_picker0$_handleCancel$0() { var t1 = this._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$1(0, null); }, _time_picker0$_handleOk$0() { var t1, t2, _this = this; if (J.$eq$(_this.get$_time_picker0$_entryMode()._restoration_properties$_value, B.TimePickerEntryMode_1)) { t1 = _this._time_picker0$_formKey.get$currentState(); t1.toString; if (!t1.validate$0()) { _this.setState$1(new A._TimePickerDialogState__handleOk_closure(_this)); return; } t1.save$0(0); } t1 = _this._framework$_element; t1.toString; t2 = _this.get$_selectedTime()._restoration_properties$_value; A.Navigator_of(t1, false).pop$1(0, t2); }, build$1(_, context) { var orientation, t2, t3, t4, t5, actions, t6, dial, header, picker, theme0, textScaleFactor, timePickerHeight, timePickerWidth, _this = this, _null = null, _s13_ = "localizations", _s80_ = string$.x60null_c, t1 = type$.MediaQuery, media = context.dependOnInheritedWidgetOfExactType$1$0(t1).data, use24HourDials = A.hourFormat(A._lateReadCheck(_this.___TimePickerDialogState_localizations, _s13_).timeOfDayFormat$1$alwaysUse24HourFormat(media.alwaysUse24HourFormat)) !== B.HourFormat_2, theme = A.Theme_of(context), shape = A.TimePickerTheme_of(context).shape; if (shape == null) shape = B.RoundedRectangleBorder_LkV0; orientation = media.get$orientation(media); t2 = A.TimePickerTheme_of(context).entryModeIconColor; if (t2 == null) { t2 = theme.colorScheme; t3 = t2.onSurface; t2 = t2.brightness === B.Brightness_0 ? 1 : 0.6; t3.toString; t3 = t3.value; t3 = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t2), t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); t2 = t3; } t3 = A.Icon$(J.$eq$(_this.get$_time_picker0$_entryMode()._restoration_properties$_value, B.TimePickerEntryMode_0) ? B.IconData_58193_MaterialIcons_null_false : B.IconData_57402_MaterialIcons_null_false, _null, _null); t4 = type$.MaterialLocalizations; if (J.$eq$(_this.get$_time_picker0$_entryMode()._restoration_properties$_value, B.TimePickerEntryMode_0)) { t4 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t4); t4.toString; t4 = t4.get$inputTimeModeButtonLabel(); } else { t4 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, t4); t4.toString; t4 = t4.get$dialModeButtonLabel(); } t4 = A.IconButton$(B.Alignment_0_0, t2, _null, true, t3, _null, _this.get$_time_picker0$_handleEntryModeToggle(), B.EdgeInsets_8_8_8_8, _null, t4, _null); _this._widget.toString; t2 = A._lateReadCheck(_this.___TimePickerDialogState_localizations, _s13_); t2 = A.TextButton$(false, A.Text$(t2.get$cancelButtonLabel(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_time_picker0$_handleCancel(), _null); _this._widget.toString; t3 = A._lateReadCheck(_this.___TimePickerDialogState_localizations, _s13_); t5 = type$.JSArray_Widget; actions = A.Row$(A._setArrayType([B.SizedBox_10_null_null_null, t4, A.Expanded$(A.Container$(B.AlignmentDirectional_1_0, A.OverflowBar$(_null, A._setArrayType([t2, A.TextButton$(false, A.Text$(t3.get$okButtonLabel(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_time_picker0$_handleOk(), _null)], t5), B.OverflowBarAlignment_1, B.VerticalDirection_1, 0, 8), B.Clip_0, _null, B.BoxConstraints_mlX3, _null, _null, _null, _null, _null, B.EdgeInsets_8_0_8_0, _null, _null, _null), 1)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); switch (_this.get$_time_picker0$_entryMode()._restoration_properties$_value) { case B.TimePickerEntryMode_0: t2 = orientation === B.Orientation_0 ? B.EdgeInsets_36_24_36_24 : B.EdgeInsets_24_24_24_24; t3 = _this._time_picker0$_mode; t4 = t3._restoration_properties$_value; t6 = _this.get$_handleTimeChanged(); dial = new A.Padding(t2, new A.ExcludeSemantics(true, new A.AspectRatio(1, new A._Dial(_this.get$_selectedTime()._restoration_properties$_value, t4, use24HourDials, t6, _this.get$_handleHourSelected(), _null), _null), _null), _null); header = new A._TimePickerHeader(_this.get$_selectedTime()._restoration_properties$_value, t3._restoration_properties$_value, orientation, _this.get$_time_picker0$_handleModeChanged(), t6, _this.get$_handleHourDoubleTapped(), _this.get$_handleMinuteDoubleTapped(), use24HourDials, _this._widget.helpText, _null); switch (orientation.index) { case 0: picker = A.Column$(A._setArrayType([header, A.Expanded$(A.Column$(A._setArrayType([A.Expanded$(dial, 1), actions], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), 1)], t5), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); break; case 1: picker = A.Column$(A._setArrayType([A.Expanded$(A.Row$(A._setArrayType([header, A.Expanded$(dial, 1)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), 1), actions], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; case B.TimePickerEntryMode_1: t2 = _this._time_picker0$_autovalidateMode._restoration_properties$_value; t3 = _this.get$_selectedTime()._restoration_properties$_value; t4 = _this._widget; picker = A.Form$(t2, A.SingleChildScrollView$(A.Column$(A._setArrayType([new A._TimePickerInput(t3, t4.helpText, t4.errorInvalidText, t4.hourLabelText, t4.minuteLabelText, _this._autofocusHour._restoration_properties$_value, _this._autofocusMinute._restoration_properties$_value, _this.get$_handleTimeChanged(), "time_picker_input", _null), actions], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, "time_picker_scroll_view", false, B.Axis_1), _this._time_picker0$_formKey); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t2 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data; orientation = t2.get$orientation(t2); theme0 = A.Theme_of(context); textScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(t1).data.textScaleFactor, 1.1); switch (_this.get$_time_picker0$_entryMode()._restoration_properties$_value) { case B.TimePickerEntryMode_0: switch (orientation.index) { case 0: timePickerHeight = theme0.materialTapTargetSize === B.MaterialTapTargetSize_0 ? 496 : 484; timePickerWidth = 328; break; case 1: timePickerWidth = 528 * textScaleFactor; timePickerHeight = theme0.materialTapTargetSize === B.MaterialTapTargetSize_0 ? 316 : 304; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); timePickerHeight = _null; timePickerWidth = timePickerHeight; } break; case B.TimePickerEntryMode_1: timePickerWidth = 328; timePickerHeight = 226; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); timePickerHeight = _null; timePickerWidth = timePickerHeight; } t1 = A.TimePickerTheme_of(context).backgroundColor; if (t1 == null) t1 = theme.colorScheme.surface; t2 = J.$eq$(_this.get$_time_picker0$_entryMode()._restoration_properties$_value, B.TimePickerEntryMode_1) ? 0 : 24; return A.Dialog$(_null, t1, A.AnimatedContainer$(picker, _null, B.Cubic_JUR0, _null, B.Duration_200000, timePickerHeight * textScaleFactor, _null, _null, _null, timePickerWidth), B.Clip_0, _null, new A.EdgeInsets(16, t2, 16, t2), shape); }, dispose$0(_) { var _this = this, t1 = _this._vibrateTimer; if (t1 != null) t1.cancel$0(0); _this._vibrateTimer = null; _this.get$_time_picker0$_entryMode().removeListener$1(0, A._lateReadCheck(_this.___TimePickerDialogState__entryModeListener, "_entryModeListener")); _this.super$__TimePickerDialogState_State_RestorationMixin$dispose(0); } }; A._TimePickerDialogState_initState_closure.prototype = { call$0() { this.$this._widget.toString; return null; }, $signature: 0 }; A._TimePickerDialogState__vibrate_closure.prototype = { call$0() { A.HapticFeedback_vibrate(); this.$this._vibrateTimer = null; }, $signature: 0 }; A._TimePickerDialogState__handleModeChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._time_picker0$_mode.set$value(0, this.mode); t1._announceModeOnce$0(); }, $signature: 0 }; A._TimePickerDialogState__handleEntryModeToggle_closure.prototype = { call$0() { var t1 = this.$this; switch (t1.get$_time_picker0$_entryMode()._restoration_properties$_value) { case B.TimePickerEntryMode_0: t1._time_picker0$_autovalidateMode.set$value(0, B.AutovalidateMode_0); t1.get$_time_picker0$_entryMode().set$value(0, B.TimePickerEntryMode_1); break; case B.TimePickerEntryMode_1: t1._time_picker0$_formKey.get$currentState().save$0(0); t1._autofocusHour.set$value(0, false); t1._autofocusMinute.set$value(0, false); t1.get$_time_picker0$_entryMode().set$value(0, B.TimePickerEntryMode_0); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; A._TimePickerDialogState__handleTimeChanged_closure.prototype = { call$0() { this.$this.get$_selectedTime().set$value(0, this.value); }, $signature: 0 }; A._TimePickerDialogState__handleHourSelected_closure.prototype = { call$0() { this.$this._time_picker0$_mode.set$value(0, B._TimePickerMode_1); }, $signature: 0 }; A._TimePickerDialogState__handleOk_closure.prototype = { call$0() { this.$this._time_picker0$_autovalidateMode.set$value(0, B.AutovalidateMode_1); }, $signature: 0 }; A.showTimePicker_closure.prototype = { call$1(context) { var t1 = this.builder.call$2(context, this.dialog); return t1; }, $signature: 78 }; A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__TimePickerDialogState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__TimePickerInputState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__DialState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.__HourMinuteTextFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.__TimePickerDialogState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__TimePickerDialogState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.__TimePickerInputState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__TimePickerInputState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.TimePickerThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.backgroundColor, _this.hourMinuteTextColor, _this.hourMinuteColor, _this.dayPeriodTextColor, _this.dayPeriodColor, _this.dialHandColor, _this.dialBackgroundColor, _this.dialTextColor, _this.entryModeIconColor, _this.hourMinuteTextStyle, _this.dayPeriodTextStyle, _this.helpTextStyle, _this.shape, _this.hourMinuteShape, _this.dayPeriodShape, _this.dayPeriodBorderSide, _this.inputDecorationTheme, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.TimePickerThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.hourMinuteTextColor, _this.hourMinuteTextColor) && J.$eq$(other.hourMinuteColor, _this.hourMinuteColor) && J.$eq$(other.dayPeriodTextColor, _this.dayPeriodTextColor) && J.$eq$(other.dayPeriodColor, _this.dayPeriodColor) && J.$eq$(other.dialHandColor, _this.dialHandColor) && J.$eq$(other.dialBackgroundColor, _this.dialBackgroundColor) && J.$eq$(other.dialTextColor, _this.dialTextColor) && J.$eq$(other.entryModeIconColor, _this.entryModeIconColor) && J.$eq$(other.hourMinuteTextStyle, _this.hourMinuteTextStyle) && J.$eq$(other.dayPeriodTextStyle, _this.dayPeriodTextStyle) && J.$eq$(other.helpTextStyle, _this.helpTextStyle) && J.$eq$(other.shape, _this.shape) && J.$eq$(other.hourMinuteShape, _this.hourMinuteShape) && J.$eq$(other.dayPeriodShape, _this.dayPeriodShape) && J.$eq$(other.dayPeriodBorderSide, _this.dayPeriodBorderSide) && true; } }; A._TimePickerThemeData_Object_Diagnosticable.prototype = {}; A.ToggleButtons.prototype = { _isFirstButton$3(index, $length, textDirection) { var t1; if (index === 0) if (textDirection !== B.TextDirection_1) t1 = false; else t1 = true; else t1 = false; if (!t1) if (index === $length - 1) if (textDirection !== B.TextDirection_0) t1 = false; else t1 = true; else t1 = false; else t1 = true; return t1; }, _isLastButton$3(index, $length, textDirection) { var t1; if (index === $length - 1) if (textDirection !== B.TextDirection_1) t1 = false; else t1 = true; else t1 = false; if (!t1) if (index === 0) if (textDirection !== B.TextDirection_0) t1 = false; else t1 = true; else t1 = false; else t1 = true; return t1; }, _getEdgeBorderRadius$4(index, $length, textDirection, toggleButtonsTheme) { var resultingBorderRadius = toggleButtonsTheme.borderRadius; if (resultingBorderRadius == null) resultingBorderRadius = B.BorderRadius_tLn; if ($length === 1) return resultingBorderRadius; else if (this._isFirstButton$3(index, $length, textDirection)) return new A.BorderRadius(resultingBorderRadius.topLeft, B.Radius_0_0, resultingBorderRadius.bottomLeft, B.Radius_0_0); else if (this._isLastButton$3(index, $length, textDirection)) return new A.BorderRadius(B.Radius_0_0, resultingBorderRadius.topRight, B.Radius_0_0, resultingBorderRadius.bottomRight); return B.BorderRadius_tLn; }, _getClipBorderRadius$4(index, $length, textDirection, toggleButtonsTheme) { var resultingBorderWidth, t1, t2, t3, resultingBorderRadius = toggleButtonsTheme.borderRadius; if (resultingBorderRadius == null) resultingBorderRadius = B.BorderRadius_tLn; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; if ($length === 1) { t1 = resultingBorderWidth / 2; t2 = resultingBorderRadius.topLeft.$sub(0, new A.Radius(t1, t1)); t3 = resultingBorderRadius.bottomLeft.$sub(0, new A.Radius(t1, t1)); return new A.BorderRadius(t2, resultingBorderRadius.topRight.$sub(0, new A.Radius(t1, t1)), t3, resultingBorderRadius.bottomRight.$sub(0, new A.Radius(t1, t1))); } else if (this._isFirstButton$3(index, $length, textDirection)) { t1 = resultingBorderWidth / 2; return new A.BorderRadius(resultingBorderRadius.topLeft.$sub(0, new A.Radius(t1, t1)), B.Radius_0_0, resultingBorderRadius.bottomLeft.$sub(0, new A.Radius(t1, t1)), B.Radius_0_0); } else if (this._isLastButton$3(index, $length, textDirection)) { t1 = resultingBorderWidth / 2; return new A.BorderRadius(B.Radius_0_0, resultingBorderRadius.topRight.$sub(0, new A.Radius(t1, t1)), B.Radius_0_0, resultingBorderRadius.bottomRight.$sub(0, new A.Radius(t1, t1))); } return B.BorderRadius_tLn; }, _getLeadingBorderSide$3(index, theme, toggleButtonsTheme) { var resultingBorderWidth, t1, _this = this; if (!_this.renderBorder) return B.BorderSide_0CF; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = _this.isSelected; if (!t1[index]) t1 = index !== 0 && t1[index - 1]; else t1 = true; if (t1) { t1 = _this.selectedBorderColor; if (t1 == null) t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } else { t1 = _this.isSelected[index]; if (!t1) { t1 = _this.borderColor; if (t1 == null) t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } else { t1 = toggleButtonsTheme.disabledBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } } }, _getBorderSide$3(index, theme, toggleButtonsTheme) { var resultingBorderWidth, t1, _this = this; if (!_this.renderBorder) return B.BorderSide_0CF; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = _this.isSelected[index]; if (t1) { t1 = _this.selectedBorderColor; if (t1 == null) t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } else { t1 = _this.borderColor; if (t1 == null) t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } }, _getTrailingBorderSide$3(index, theme, toggleButtonsTheme) { var resultingBorderWidth, t1, _this = this; if (!_this.renderBorder) return B.BorderSide_0CF; if (index !== _this.children.length - 1) return B.BorderSide_0CF; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = _this.isSelected[index]; if (t1) { t1 = _this.selectedBorderColor; if (t1 == null) t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } else { t1 = _this.borderColor; if (t1 == null) t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new A.BorderSide(t1, resultingBorderWidth, B.BorderStyle_1); } }, build$1(_, context) { var result, resolvedTapTargetSize, theme = A.Theme_of(context), toggleButtonsTheme = A.ToggleButtonsTheme_of(context), t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; result = new A.IntrinsicHeight(A.Row$(A.List_List$generate(this.children.length, new A.ToggleButtons_build_closure(this, t1.textDirection, toggleButtonsTheme, theme), true, type$.Widget), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_0, null), null); resolvedTapTargetSize = theme.materialTapTargetSize; switch (resolvedTapTargetSize.index) { case 0: return new A._InputPadding1(B.Size_48_48, B.Axis_0, result, null); case 1: return result; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.ToggleButtons_build_closure.prototype = { call$1(index) { var leadingBorderSide, borderSide, trailingBorderSide, t5, t6, t7, _this = this, _null = null, t1 = _this.$this, t2 = t1.children, t3 = _this.textDirection, t4 = _this.toggleButtonsTheme, edgeBorderRadius = t1._getEdgeBorderRadius$4(index, t2.length, t3, t4), clipBorderRadius = t1._getClipBorderRadius$4(index, t2.length, t3, t4); t3 = _this.theme; leadingBorderSide = t1._getLeadingBorderSide$3(index, t3, t4); borderSide = t1._getBorderSide$3(index, t3, t4); trailingBorderSide = t1._getTrailingBorderSide$3(index, t3, t4); t3 = t1.isSelected[index]; t5 = t4.focusColor; t6 = t4.highlightColor; t7 = t4.hoverColor; t4 = t4.splashColor; return new A._ToggleButton(t3, _null, t1.constraints, t1.color, t1.selectedColor, _null, _null, t5, t7, t6, t4, _null, new A.ToggleButtons_build__closure(t1, index), _null, leadingBorderSide, borderSide, trailingBorderSide, edgeBorderRadius, clipBorderRadius, index === 0, index === t2.length - 1, B.Axis_0, B.VerticalDirection_1, t2[index], _null); }, $signature: 2219 }; A.ToggleButtons_build__closure.prototype = { call$0() { this.$this.onPressed.call$1(this.index); }, $signature: 0 }; A._ToggleButton.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, currentFillColor, currentColor, currentFocusColor, currentHoverColor, currentSplashColor, currentTextStyle, currentConstraints, _this = this, theme = A.Theme_of(context), toggleButtonsTheme = A.ToggleButtonsTheme_of(context), t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), t2 = _this.selected; if (t2 && _this.onPressed != null) t1.add$1(0, B.MaterialState_4); t3 = _this.onPressed; t4 = t3 == null; if (t4) t1.add$1(0, B.MaterialState_6); t5 = toggleButtonsTheme.fillColor; t6 = theme.colorScheme; t7 = new A._ResolveFillColor(_this.fillColor).resolve$1(0, t1); currentFillColor = t7 == null ? new A._ResolveFillColor(t5).resolve$1(0, t1) : t7; if (currentFillColor == null) currentFillColor = new A._DefaultFillColor(t6).resolve$1(0, t1); t1 = !t4; if (t1 && t2) { t1 = _this.selectedColor; currentColor = t1 == null ? toggleButtonsTheme.selectedColor : t1; if (currentColor == null) currentColor = t6.primary; t1 = _this.focusColor; currentFocusColor = t1 == null ? toggleButtonsTheme.focusColor : t1; if (currentFocusColor == null) { t1 = t6.primary; currentFocusColor = A.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } t1 = _this.hoverColor; currentHoverColor = t1 == null ? toggleButtonsTheme.hoverColor : t1; if (currentHoverColor == null) { t1 = t6.primary; currentHoverColor = A.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } t1 = _this.splashColor; currentSplashColor = t1 == null ? toggleButtonsTheme.splashColor : t1; if (currentSplashColor == null) { t1 = t6.primary; currentSplashColor = A.Color$fromARGB(41, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } } else if (t1 && !t2) { t1 = _this.color; currentColor = t1 == null ? toggleButtonsTheme.color : t1; if (currentColor == null) { t1 = t6.onSurface.value; currentColor = A.Color$fromARGB(222, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = _this.focusColor; currentFocusColor = t1 == null ? toggleButtonsTheme.focusColor : t1; if (currentFocusColor == null) { t1 = t6.onSurface.value; currentFocusColor = A.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = _this.hoverColor; currentHoverColor = t1 == null ? toggleButtonsTheme.hoverColor : t1; if (currentHoverColor == null) { t1 = t6.onSurface.value; currentHoverColor = A.Color$fromARGB(10, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = _this.splashColor; currentSplashColor = t1 == null ? toggleButtonsTheme.splashColor : t1; if (currentSplashColor == null) { t1 = t6.onSurface.value; currentSplashColor = A.Color$fromARGB(41, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } } else { currentColor = toggleButtonsTheme.disabledColor; if (currentColor == null) { t1 = t6.onSurface.value; currentColor = A.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } currentFocusColor = null; currentHoverColor = null; currentSplashColor = null; } currentTextStyle = toggleButtonsTheme.textStyle; if (currentTextStyle == null) { t1 = theme.textTheme.bodyMedium; t1.toString; currentTextStyle = t1; } t1 = _this.constraints; currentConstraints = t1 == null ? toggleButtonsTheme.constraints : t1; if (currentConstraints == null) currentConstraints = B.BoxConstraints_mlX0; t1 = currentTextStyle.copyWith$1$color(currentColor); t2 = _this.highlightColor; if (t2 == null) { t2 = t6.surface.value; t2 = A.Color$fromARGB(0, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } return new A._SelectToggleButton(_this.leadingBorderSide, _this.borderSide, _this.trailingBorderSide, _this.borderRadius, _this.isFirstButton, _this.isLastButton, _this.direction, _this.verticalDirection, A.ClipRRect$(_this.clipRadius, A.RawMaterialButton$(false, _this.child, B.Clip_0, currentConstraints, 0, 0, true, currentFillColor, currentFocusColor, 0, _this.focusNode, t2, 0, currentHoverColor, 0, B.MaterialTapTargetSize_1, _this.mouseCursor, t3, B.RoundedRectangleBorder_LkV1, currentSplashColor, t1)), _this.key); } }; A._ResolveFillColor.prototype = { resolve$1(_, states) { return states.contains$1(0, B.MaterialState_4) ? this.primary : null; } }; A._DefaultFillColor.prototype = { resolve$1(_, states) { var t1; if (states.contains$1(0, B.MaterialState_4)) { t1 = this.colorScheme.primary; return A.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } t1 = this.colorScheme.surface.value; return A.Color$fromARGB(0, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } }; A._SelectToggleButton.prototype = { createRenderObject$1(context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new A._SelectToggleButtonRenderObject(_this.direction, _this.verticalDirection, _this.leadingBorderSide, _this.borderSide, _this.trailingBorderSide, _this.borderRadius, _this.isFirstButton, _this.isLastButton, t1.textDirection, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$leadingBorderSide(_this.leadingBorderSide); renderObject.set$borderSide(_this.borderSide); renderObject.set$trailingBorderSide(_this.trailingBorderSide); renderObject.set$borderRadius(0, _this.borderRadius); renderObject.set$isFirstButton(_this.isFirstButton); renderObject.set$isLastButton(_this.isLastButton); renderObject.set$direction(0, _this.direction); renderObject.set$verticalDirection(_this.verticalDirection); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; A._SelectToggleButtonRenderObject.prototype = { set$direction(_, value) { if (this._toggle_buttons$_direction === value) return; this._toggle_buttons$_direction = value; this.markNeedsLayout$0(); }, set$verticalDirection(value) { if (this._toggle_buttons$_verticalDirection === value) return; this._toggle_buttons$_verticalDirection = value; this.markNeedsLayout$0(); }, set$leadingBorderSide(value) { if (this._leadingBorderSide.$eq(0, value)) return; this._leadingBorderSide = value; this.markNeedsLayout$0(); }, set$borderSide(value) { if (this._borderSide.$eq(0, value)) return; this._borderSide = value; this.markNeedsLayout$0(); }, set$trailingBorderSide(value) { if (this._trailingBorderSide.$eq(0, value)) return; this._trailingBorderSide = value; this.markNeedsLayout$0(); }, set$borderRadius(_, value) { if (this._toggle_buttons$_borderRadius.$eq(0, value)) return; this._toggle_buttons$_borderRadius = value; this.markNeedsLayout$0(); }, set$isFirstButton(value) { if (this._isFirstButton === value) return; this._isFirstButton = value; this.markNeedsLayout$0(); }, set$isLastButton(value) { if (this._isLastButton === value) return; this._isLastButton = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { if (this._toggle_buttons$_textDirection == value) return; this._toggle_buttons$_textDirection = value; this.markNeedsLayout$0(); }, computeDistanceToActualBaseline$1(baseline) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === B.Axis_0) { t1 = t2.computeDistanceToActualBaseline$1(baseline); t1.toString; t1 += _this._borderSide.width; } else { t1 = t2.computeDistanceToActualBaseline$1(baseline); t1.toString; t1 += _this._leadingBorderSide.width; } return t1; }, computeMaxIntrinsicHeight$1(width) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === B.Axis_0) { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width * 2 + t2; t1 = t2; } else { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } return t1; }, computeMinIntrinsicHeight$1(width) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === B.Axis_0) { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.width * 2 + t2; t1 = t2; } else { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } return t1; }, computeMaxIntrinsicWidth$1(height) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === B.Axis_0) { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } else { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t2 = t1.width * 2 + t2; t1 = t2; } return t1; }, computeMinIntrinsicWidth$1(height) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === B.Axis_0) { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } else { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t2 = t1.width * 2 + t2; t1 = t2; } return t1; }, computeDryLayout$1(constraints) { return this._computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { var t1, _this = this, _s80_ = string$.x60null_c; _this._box$_size = _this._computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) return; t1 = t1.parentData; t1.toString; type$.BoxParentData._as(t1); if (_this._toggle_buttons$_direction === B.Axis_0) switch (_this._toggle_buttons$_textDirection) { case B.TextDirection_1: t1.offset = new A.Offset(_this._leadingBorderSide.width, _this._borderSide.width); break; case B.TextDirection_0: t1.offset = new A.Offset(_this._trailingBorderSide.width, _this._borderSide.width); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else switch (_this._toggle_buttons$_verticalDirection.index) { case 1: t1.offset = new A.Offset(_this._borderSide.width, _this._leadingBorderSide.width); break; case 0: t1.offset = new A.Offset(_this._borderSide.width, _this._trailingBorderSide.width); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, _computeSize$2$constraints$layoutChild(constraints, layoutChild) { var t1, t2, t3, t4, rightConstraint, leftConstraint, topConstraint, bottomConstraint, t0, innerConstraints, childSize, _this = this; if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._toggle_buttons$_direction; t2 = _this._leadingBorderSide.width; t3 = _this._trailingBorderSide.width; t4 = _this._borderSide.width; if (t1 === B.Axis_0) return constraints.constrain$1(new A.Size(t2 + t3, t4 * 2)); else return constraints.constrain$1(new A.Size(t4 * 2, t2 + t3)); } t1 = _this._toggle_buttons$_direction; rightConstraint = _this._trailingBorderSide.width; leftConstraint = _this._leadingBorderSide.width; topConstraint = _this._borderSide.width; if (t1 === B.Axis_0) bottomConstraint = topConstraint; else { bottomConstraint = rightConstraint; rightConstraint = topConstraint; topConstraint = leftConstraint; leftConstraint = rightConstraint; t0 = rightConstraint; rightConstraint = leftConstraint; t0 = leftConstraint; } innerConstraints = constraints.deflate$1(new A.EdgeInsets(leftConstraint, topConstraint, rightConstraint, bottomConstraint)); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; childSize = layoutChild.call$2(t1, innerConstraints); return constraints.constrain$1(new A.Size(leftConstraint + childSize._dx + rightConstraint, topConstraint + childSize._dy + bottomConstraint)); }, paint$2(context, offset) { var bottomRight, t1, t2, startX, t3, center, t4, t5, t6, t7, rrect, tlCorner, t8, t9, t10, t11, t12, blCorner, t13, t14, t15, trCorner, t16, t17, t18, t19, brCorner, leadingPaint, leadingPath, leftPath, endingPaint, endingPath, horizontalPaint, horizontalPaths, topPath, paint, paths, bottomPath, _this = this, _s80_ = string$.x60null_c; _this.super$RenderShiftedBox$paint(context, offset); bottomRight = _this._box$_size.bottomRight$1(0, offset); t1 = offset._dx; t2 = offset._dy; startX = bottomRight._dx; t3 = bottomRight._dy; center = new A.Rect(t1, t2, startX, t3).inflate$1(-(_this._borderSide.width / 2)); t4 = _this._toggle_buttons$_borderRadius; t5 = t4.topLeft; t5 = t5.x * t5.y !== 0 ? t5 : B.Radius_0_0; t6 = t4.topRight; t6 = t6.x * t6.y !== 0 ? t6 : B.Radius_0_0; t7 = t4.bottomLeft; t7 = t7.x * t7.y !== 0 ? t7 : B.Radius_0_0; t4 = t4.bottomRight; rrect = A.RRect$fromRectAndCorners(center, t7, t4.x * t4.y !== 0 ? t4 : B.Radius_0_0, t5, t6).scaleRadii$0(); t4 = rrect.left; t5 = rrect.top; t6 = rrect.tlRadiusX; t7 = rrect.tlRadiusY; tlCorner = new A.Rect(t4, t5, t4 + t6 * 2, t5 + t7 * 2); t8 = rrect.bottom; t9 = rrect.blRadiusY; t10 = t9 * 2; t11 = t8 - t10; t12 = rrect.blRadiusX; blCorner = new A.Rect(t4, t11, t4 + t12 * 2, t11 + t10); t10 = rrect.right; t11 = rrect.trRadiusX; t13 = t11 * 2; t14 = t10 - t13; t15 = rrect.trRadiusY; trCorner = new A.Rect(t14, t5, t14 + t13, t5 + t15 * 2); t13 = rrect.brRadiusX; t14 = t13 * 2; t16 = t10 - t14; t17 = rrect.brRadiusY; t18 = t17 * 2; t19 = t8 - t18; brCorner = new A.Rect(t16, t19, t16 + t14, t19 + t18); leadingPaint = _this._leadingBorderSide.toPaint$0(); t14 = _this._isFirstButton; if (t14 && _this._isLastButton) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t13 === 0 ? startX : t10 - t13, t8); leadingPath.lineTo$2(0, t4 + t12, t8); leadingPath.addArc$3(0, blCorner, 1.5707963267948966, 1.5707963267948966); leadingPath.lineTo$2(0, t4, t5 + t7); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, t10 - t11, t5); leadingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); leadingPath.lineTo$2(0, t10, t8 - t17); leadingPath.addArc$3(0, brCorner, 0, 1.5707963267948966); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); return; } if (_this._toggle_buttons$_direction === B.Axis_0) switch (_this._toggle_buttons$_textDirection) { case B.TextDirection_1: if (_this._isLastButton) { leftPath = A.Path_Path(); leftPath.moveTo$2(0, t4, t8 + _this._leadingBorderSide.width / 2); leftPath.lineTo$2(0, t4, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leftPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = A.Path_Path(); endingPath.moveTo$2(0, t4 + _this._borderSide.width / 2, t5); endingPath.lineTo$2(0, t10 - t11, t5); endingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); endingPath.lineTo$2(0, t10, t8 - t17); endingPath.addArc$3(0, brCorner, 0, 1.5707963267948966); endingPath.lineTo$2(0, t4 + _this._borderSide.width / 2, t8); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, startX, t8); leadingPath.lineTo$2(0, t4 + t12, t8); leadingPath.addArc$3(0, blCorner, 1.5707963267948966, 1.5707963267948966); leadingPath.lineTo$2(0, t4, t5 + t7); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, startX, t5); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t4, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t4, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); horizontalPaint = _this._borderSide.toPaint$0(); horizontalPaths = A.Path_Path(); horizontalPaths.moveTo$2(0, t4 + _this._borderSide.width / 2, t5); t1 = startX - t11; horizontalPaths.lineTo$2(0, t1, t5); horizontalPaths.moveTo$2(0, t4 + _this._borderSide.width / 2 + t6, t8); horizontalPaths.lineTo$2(0, t1, t8); context.get$canvas(context).drawPath$2(0, horizontalPaths, horizontalPaint); } break; case B.TextDirection_0: if (_this._isLastButton) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t10, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t10, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = A.Path_Path(); endingPath.moveTo$2(0, t10 - _this._borderSide.width / 2, t5); endingPath.lineTo$2(0, t4 + t6, t5); endingPath.addArc$3(0, tlCorner, 4.71238898038469, -1.5707963267948966); endingPath.lineTo$2(0, t4, t8 - t9); endingPath.addArc$3(0, blCorner, 3.141592653589793, -1.5707963267948966); endingPath.lineTo$2(0, t10 - _this._borderSide.width / 2, t8); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t1, t8); leadingPath.lineTo$2(0, t10 - t13, t8); leadingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); leadingPath.lineTo$2(0, t10, t5 + t15); leadingPath.addArc$3(0, trCorner, 0, -1.5707963267948966); leadingPath.lineTo$2(0, t1, t5); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t10, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t10, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); horizontalPaint = _this._borderSide.toPaint$0(); horizontalPaths = A.Path_Path(); horizontalPaths.moveTo$2(0, t10 - _this._borderSide.width / 2, t5); t1 -= t6; horizontalPaths.lineTo$2(0, t1, t5); horizontalPaths.moveTo$2(0, t10 - _this._borderSide.width / 2 + t11, t8); horizontalPaths.lineTo$2(0, t1, t8); context.get$canvas(context).drawPath$2(0, horizontalPaths, horizontalPaint); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else switch (_this._toggle_buttons$_verticalDirection.index) { case 1: if (_this._isLastButton) { topPath = A.Path_Path(); topPath.moveTo$2(0, t1, t2 + _this._leadingBorderSide.width / 2); topPath.lineTo$2(0, startX, t2 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, topPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = A.Path_Path(); endingPath.moveTo$2(0, t4, t5 + _this._leadingBorderSide.width / 2); endingPath.lineTo$2(0, t4, t8 - t9); endingPath.addArc$3(0, blCorner, 9.42477796076938, -1.5707963267948966); endingPath.lineTo$2(0, t10 - t12, t8); endingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); endingPath.lineTo$2(0, t10, t5 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t4, t3); leadingPath.lineTo$2(0, t4, t5 + t6); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, t10 - t11, t5); leadingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); leadingPath.lineTo$2(0, t10, t3); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { topPath = A.Path_Path(); topPath.moveTo$2(0, t1, t2 + _this._leadingBorderSide.width / 2); topPath.lineTo$2(0, startX, t2 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, topPath, leadingPaint); paint = _this._borderSide.toPaint$0(); paths = A.Path_Path(); paths.moveTo$2(0, t4, t2 + _this._leadingBorderSide.width); paths.lineTo$2(0, t4, t3); paths.moveTo$2(0, t10, t2 + _this._leadingBorderSide.width); paths.lineTo$2(0, t10, t3); context.get$canvas(context).drawPath$2(0, paths, paint); } break; case 0: if (_this._isLastButton) { bottomPath = A.Path_Path(); bottomPath.moveTo$2(0, t1, t3 - _this._leadingBorderSide.width / 2); bottomPath.lineTo$2(0, startX, t3 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, bottomPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = A.Path_Path(); endingPath.moveTo$2(0, t4, t8 - _this._leadingBorderSide.width / 2); endingPath.lineTo$2(0, t4, t5 + t7); endingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); endingPath.lineTo$2(0, t10 - t11, t5); endingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); endingPath.lineTo$2(0, t10, t8 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = A.Path_Path(); leadingPath.moveTo$2(0, t4, t2); leadingPath.lineTo$2(0, t4, t8 - t9); leadingPath.addArc$3(0, blCorner, 3.141592653589793, -1.5707963267948966); leadingPath.lineTo$2(0, t10 - t13, t8); leadingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); leadingPath.lineTo$2(0, t10, t2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { bottomPath = A.Path_Path(); bottomPath.moveTo$2(0, t1, t3 - _this._leadingBorderSide.width / 2); bottomPath.lineTo$2(0, startX, t3 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, bottomPath, leadingPaint); paint = _this._borderSide.toPaint$0(); paths = A.Path_Path(); paths.moveTo$2(0, t4, t2); paths.lineTo$2(0, t4, t3 - _this._leadingBorderSide.width); paths.moveTo$2(0, t10, t2); paths.lineTo$2(0, t10, t3 - _this._leadingBorderSide.width); context.get$canvas(context).drawPath$2(0, paths, paint); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } }; A._InputPadding1.prototype = { createRenderObject$1(context) { var t1 = new A._RenderInputPadding2(this.minSize, this.direction, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$minSize(this.minSize); renderObject.set$direction(0, this.direction); } }; A._RenderInputPadding2.prototype = { set$minSize(value) { if (this._toggle_buttons$_minSize.$eq(0, value)) return; this._toggle_buttons$_minSize = value; this.markNeedsLayout$0(); }, set$direction(_, value) { if (this._toggle_buttons$_direction === value) return; this._toggle_buttons$_direction = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._toggle_buttons$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._toggle_buttons$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._toggle_buttons$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._toggle_buttons$_minSize; return Math.max(A.checkNum(t1), A.checkNum(t2._dy)); } return 0; }, _computeSize$2$constraints$layoutChild(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._toggle_buttons$_minSize; return constraints.constrain$1(new A.Size(Math.max(A.checkNum(t1), A.checkNum(t2._dx)), Math.max(A.checkNum(childSize._dy), A.checkNum(t2._dy)))); } return B.Size_0_0; }, computeDryLayout$1(constraints) { return this._computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { var t2, t3, _this = this, t1 = _this._computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = B.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position(result, position) { var t2, t3, _this = this, t1 = {}; if (!_this._box$_size.contains$1(0, position)) return false; t1.center = null; t2 = _this._toggle_buttons$_direction; t3 = _this.RenderObjectWithChildMixin__child; t2 = t2 === B.Axis_0 ? t1.center = new A.Offset(position._dx, t3._box$_size._dy / 2) : t1.center = new A.Offset(t3._box$_size._dx / 2, position._dy); return result.addWithRawTransform$3$hitTest$position$transform(new A._RenderInputPadding_hitTest_closure2(t1, _this), t2, A.MatrixUtils_forceToPoint(t2)); } }; A._RenderInputPadding_hitTest_closure2.prototype = { call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this._box_0.center); }, $signature: 73 }; A.__DefaultFillColor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ResolveFillColor_MaterialStateProperty_Diagnosticable.prototype = {}; A.ToggleButtonsThemeData.prototype = { get$hashCode(_) { var _this = this; return A.Object_hash(_this.textStyle, _this.constraints, _this.color, _this.selectedColor, _this.disabledColor, _this.fillColor, _this.focusColor, _this.highlightColor, _this.hoverColor, _this.splashColor, _this.borderColor, _this.selectedBorderColor, _this.disabledBorderColor, _this.borderRadius, _this.borderWidth, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ToggleButtonsThemeData && J.$eq$(other.textStyle, _this.textStyle) && J.$eq$(other.constraints, _this.constraints) && J.$eq$(other.color, _this.color) && J.$eq$(other.selectedColor, _this.selectedColor) && J.$eq$(other.disabledColor, _this.disabledColor) && J.$eq$(other.fillColor, _this.fillColor) && J.$eq$(other.focusColor, _this.focusColor) && J.$eq$(other.highlightColor, _this.highlightColor) && J.$eq$(other.hoverColor, _this.hoverColor) && J.$eq$(other.splashColor, _this.splashColor) && J.$eq$(other.borderColor, _this.borderColor) && J.$eq$(other.selectedBorderColor, _this.selectedBorderColor) && J.$eq$(other.disabledBorderColor, _this.disabledBorderColor) && J.$eq$(other.borderRadius, _this.borderRadius) && other.borderWidth == _this.borderWidth; } }; A._ToggleButtonsThemeData_Object_Diagnosticable.prototype = {}; A.ToggleableStateMixin.prototype = { animateToValue$0() { var t1, t2, _this = this, _s19_ = "_positionController"; if (_this.get$tristate()) { if (_this.get$value(_this) == null) A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__positionController, _s19_).set$value(0, 0); t1 = _this.get$value(_this); t2 = _this.ToggleableStateMixin___ToggleableStateMixin__positionController; if (t1 !== false) A._lateReadCheck(t2, _s19_).forward$0(0); else A._lateReadCheck(t2, _s19_).reverse$0(0); } else { t1 = _this.get$value(_this); t2 = _this.ToggleableStateMixin___ToggleableStateMixin__positionController; if (t1 === true) A._lateReadCheck(t2, _s19_).forward$0(0); else A._lateReadCheck(t2, _s19_).reverse$0(0); } }, _toggleable$_handleTapDown$1(details) { var _this = this; if (_this.get$onChanged() != null) { _this.setState$1(new A.ToggleableStateMixin__handleTapDown_closure(_this, details)); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").forward$0(0); } }, _toggleable$_handleTap$1(_) { var t1, _this = this; if (_this.get$onChanged() == null) return; switch (_this.get$value(_this)) { case false: _this.get$onChanged().call$1(true); break; case true: t1 = _this.get$onChanged(); t1.toString; t1.call$1(_this.get$tristate() && null); break; case null: _this.get$onChanged().call$1(false); break; } _this._framework$_element.get$renderObject().sendSemanticsEvent$1(B.TapSemanticEvent_tap); }, _toggleable$_handleTap$0() { return this._toggleable$_handleTap$1(null); }, _handleTapEnd$1(_) { var _this = this; if (_this.ToggleableStateMixin__downPosition != null) _this.setState$1(new A.ToggleableStateMixin__handleTapEnd_closure(_this)); A._lateReadCheck(_this.ToggleableStateMixin___ToggleableStateMixin__reactionController, "_reactionController").reverse$0(0); }, _handleTapEnd$0() { return this._handleTapEnd$1(null); }, _handleFocusHighlightChanged$1(focused) { var t1, _this = this, _s28_ = "_reactionFocusFadeController"; if (focused !== _this.ToggleableStateMixin__focused) { _this.setState$1(new A.ToggleableStateMixin__handleFocusHighlightChanged_closure(_this, focused)); t1 = _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController; if (focused) A._lateReadCheck(t1, _s28_).forward$0(0); else A._lateReadCheck(t1, _s28_).reverse$0(0); } }, _handleHoverChanged$1(hovering) { var t1, _this = this, _s28_ = "_reactionHoverFadeController"; if (hovering !== _this.ToggleableStateMixin__hovering) { _this.setState$1(new A.ToggleableStateMixin__handleHoverChanged_closure(_this, hovering)); t1 = _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController; if (hovering) A._lateReadCheck(t1, _s28_).forward$0(0); else A._lateReadCheck(t1, _s28_).reverse$0(0); } }, get$states() { var t2, _this = this, t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (_this.get$onChanged() == null) t1.add$1(0, B.MaterialState_6); if (_this.ToggleableStateMixin__hovering) t1.add$1(0, B.MaterialState_0); if (_this.ToggleableStateMixin__focused) t1.add$1(0, B.MaterialState_1); t2 = _this.get$value(_this); if (t2 !== false) t1.add$1(0, B.MaterialState_4); return t1; }, buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(autofocus, focusNode, mouseCursor, painter, size) { var result, t1, t2, t3, t4, t5, t6, _this = this, _null = null, value = _this.ToggleableStateMixin___ToggleableStateMixin__actionMap; if (value === $) { result = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_ActivateIntent_OT9, new A.CallbackAction(_this.get$_toggleable$_handleTap(), new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), type$.CallbackAction_ActivateIntent)], type$.Type, type$.Action_Intent); A._lateInitializeOnceCheck(_this.ToggleableStateMixin___ToggleableStateMixin__actionMap, "_actionMap"); _this.ToggleableStateMixin___ToggleableStateMixin__actionMap = result; value = result; } t1 = _this.get$onChanged(); t2 = mouseCursor._material_state$_resolve.call$1(_this.get$states()); t3 = _this.get$onChanged(); t4 = _this.get$_handleTapEnd(); t5 = _this.get$onChanged(); t6 = A.CustomPaint$(_null, _null, _null, painter, size); return A.FocusableActionDetector$(value, false, A.GestureDetector$(_null, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5 != null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t6, _null), B.DragStartBehavior_1, t3 == null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_toggleable$_handleTap(), t4, _this.get$_toggleable$_handleTapDown(), t4, _null, _null, _null), t1 != null, focusNode, t2, _null, _this.get$_handleFocusHighlightChanged(), _this.get$_handleHoverChanged(), _null); } }; A.ToggleableStateMixin__handleTapDown_closure.prototype = { call$0() { this.$this.ToggleableStateMixin__downPosition = this.details.localPosition; }, $signature: 0 }; A.ToggleableStateMixin__handleTapEnd_closure.prototype = { call$0() { this.$this.ToggleableStateMixin__downPosition = null; }, $signature: 0 }; A.ToggleableStateMixin__handleFocusHighlightChanged_closure.prototype = { call$0() { this.$this.ToggleableStateMixin__focused = this.focused; }, $signature: 0 }; A.ToggleableStateMixin__handleHoverChanged_closure.prototype = { call$0() { this.$this.ToggleableStateMixin__hovering = this.hovering; }, $signature: 0 }; A.ToggleablePainter.prototype = { set$position(_, value) { var _this = this, t1 = _this._toggleable$_position; if (value === t1) return; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); value.parent.addListener$1(0, _this.get$notifyListeners()); _this._toggleable$_position = value; _this.notifyListeners$0(); }, set$reaction(value) { var _this = this, t1 = _this._reaction; if (value === t1) return; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); value.parent.addListener$1(0, _this.get$notifyListeners()); _this._reaction = value; _this.notifyListeners$0(); }, set$reactionFocusFade(value) { var _this = this, t1 = _this._reactionFocusFade; if (value === t1) return; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); value.parent.addListener$1(0, _this.get$notifyListeners()); _this._reactionFocusFade = value; _this.notifyListeners$0(); }, set$reactionHoverFade(value) { var _this = this, t1 = _this._reactionHoverFade; if (value === t1) return; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); value.parent.addListener$1(0, _this.get$notifyListeners()); _this._reactionHoverFade = value; _this.notifyListeners$0(); }, set$activeColor(value) { if (J.$eq$(this._toggleable$_activeColor, value)) return; this._toggleable$_activeColor = value; this.notifyListeners$0(); }, set$inactiveColor(value) { if (J.$eq$(this._inactiveColor, value)) return; this._inactiveColor = value; this.notifyListeners$0(); }, set$inactiveReactionColor(value) { if (value.$eq(0, this._inactiveReactionColor)) return; this._inactiveReactionColor = value; this.notifyListeners$0(); }, set$reactionColor(value) { if (value.$eq(0, this._reactionColor)) return; this._reactionColor = value; this.notifyListeners$0(); }, set$hoverColor(value) { if (J.$eq$(value, this._toggleable$_hoverColor)) return; this._toggleable$_hoverColor = value; this.notifyListeners$0(); }, set$focusColor(value) { if (J.$eq$(value, this._toggleable$_focusColor)) return; this._toggleable$_focusColor = value; this.notifyListeners$0(); }, set$splashRadius(value) { if (value === this._splashRadius) return; this._splashRadius = value; this.notifyListeners$0(); }, set$downPosition(value) { if (J.$eq$(value, this._downPosition)) return; this._downPosition = value; this.notifyListeners$0(); }, set$isFocused(value) { if (value === this._toggleable$_isFocused) return; this._toggleable$_isFocused = value; this.notifyListeners$0(); }, set$isHovered(value) { if (value === this._isHovered) return; this._isHovered = value; this.notifyListeners$0(); }, paintRadialReaction$2$canvas$origin(canvas, origin) { var reactionPaint, t2, t3, reactionRadius, _this = this, t1 = _this._reaction; if (t1.get$status(t1) === B.AnimationStatus_0) { t1 = _this._reactionFocusFade; if (t1.get$status(t1) === B.AnimationStatus_0) { t1 = _this._reactionHoverFade; t1 = t1.get$status(t1) !== B.AnimationStatus_0; } else t1 = true; } else t1 = true; if (t1) { reactionPaint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1 = _this._inactiveReactionColor; t1.toString; t2 = _this._reactionColor; t2.toString; t3 = _this._toggleable$_position; t3 = A.Color_lerp(t1, t2, t3.get$value(t3)); t2 = _this._toggleable$_hoverColor; t2.toString; t1 = _this._reactionHoverFade; t1 = A.Color_lerp(t3, t2, t1.get$value(t1)); t2 = _this._toggleable$_focusColor; t2.toString; t3 = _this._reactionFocusFade; t3 = A.Color_lerp(t1, t2, t3.get$value(t3)); t3.toString; reactionPaint.set$color(0, t3); t3 = _this._downPosition; t1 = t3 == null ? origin : t3; t2 = _this._reaction; t2 = A.Offset_lerp(t1, origin, t2.get$value(t2)); t2.toString; t1 = _this._splashRadius; t1.toString; t3 = _this._toggleable$_isFocused; t3.toString; if (!t3) { t3 = _this._isHovered; t3.toString; } else t3 = true; if (t3) reactionRadius = t1; else { t3 = _this._reaction; reactionRadius = new A.Tween(0, t1, type$.Tween_double).transform$1(0, t3.get$value(t3)); } if (reactionRadius > 0) canvas.drawCircle$3(0, t2.$add(0, B.Offset_0_0), reactionRadius, reactionPaint); } }, dispose$0(_) { var _this = this, t1 = _this._toggleable$_position; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._reaction; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._reactionFocusFade; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._reactionHoverFade; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); _this.super$ChangeNotifier$dispose(0); }, shouldRepaint$1(oldDelegate) { return true; }, hitTest$1(position) { return null; }, get$semanticsBuilder() { return null; }, shouldRebuildSemantics$1(oldDelegate) { return false; }, toString$0(_) { return "#" + A.shortHash(this); } }; A.Tooltip.prototype = { createState$0() { return new A.TooltipState(null, null, B._StateLifecycle_0); }, get$message(receiver) { return this.message; } }; A.TooltipState.prototype = { get$_tooltipMessage() { var t1 = this._widget.message; return t1 == null ? null.toPlainText$0() : t1; }, initState$0() { var t1, _this = this; _this.super$State$initState(); _this.__TooltipState__forceRemoval = _this.__TooltipState__isConcealed = false; _this.__TooltipState__mouseIsConnected = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates._length !== 0; t1 = A.AnimationController$(null, B.Duration_150000, B.Duration_75000, 1, null, _this); t1.addStatusListener$1(_this.get$_tooltip$_handleStatusChanged()); _this.__TooltipState__controller = t1; $.RendererBinding__instance.RendererBinding__mouseTracker.addListener$1(0, _this.get$_handleMouseTrackerChange()); $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.$indexSet(0, _this.get$_tooltip$_handlePointerEvent(), null); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._TooltipVisibilityScope); this.__TooltipState__visible = true; }, _getDefaultTooltipHeight$0() { var t1 = this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_4: case B.TargetPlatform_3: case B.TargetPlatform_5: return 24; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: return 32; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getDefaultPadding$0() { var t1 = this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_4: case B.TargetPlatform_3: case B.TargetPlatform_5: return B.EdgeInsets_8_0_8_0; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: return B.EdgeInsets_16_0_16_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getDefaultFontSize$0() { var t1 = this._framework$_element; t1.toString; switch (A.Theme_of(t1).platform) { case B.TargetPlatform_4: case B.TargetPlatform_3: case B.TargetPlatform_5: return 10; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: return 14; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _handleMouseTrackerChange$0() { var mouseIsConnected, _this = this; if (_this._framework$_element == null) return; mouseIsConnected = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates._length !== 0; if (mouseIsConnected !== A._lateReadCheck(_this.__TooltipState__mouseIsConnected, "_mouseIsConnected")) _this.setState$1(new A.TooltipState__handleMouseTrackerChange_closure(_this, mouseIsConnected)); }, _tooltip$_handleStatusChanged$1($status) { var t1; if ($status === B.AnimationStatus_0) t1 = A._lateReadCheck(this.__TooltipState__forceRemoval, "_forceRemoval") || !A._lateReadCheck(this.__TooltipState__isConcealed, "_isConcealed"); else t1 = false; if (t1) this._removeEntry$0(); }, _dismissTooltip$1$immediately(immediately) { var t2, _this = this, _s11_ = "_controller", t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; if (immediately) { _this._removeEntry$0(); return; } _this.__TooltipState__forceRemoval = true; if (_this._pressActivated) { if (_this._dismissTimer == null) { t1 = A._lateReadCheck(_this.__TooltipState__showDuration, "_showDuration"); t2 = A._lateReadCheck(_this.__TooltipState__controller, _s11_); _this._dismissTimer = A.Timer_Timer(t1, t2.get$reverse(t2)); } } else if (_this._dismissTimer == null) { t1 = A._lateReadCheck(_this.__TooltipState__hoverShowDuration, "_hoverShowDuration"); t2 = A._lateReadCheck(_this.__TooltipState__controller, _s11_); _this._dismissTimer = A.Timer_Timer(t1, t2.get$reverse(t2)); } _this._pressActivated = false; }, _showTooltip$0() { var _this = this, t1 = _this._dismissTimer; if (t1 != null) t1.cancel$0(0); _this._dismissTimer = null; if (_this._showTimer == null) _this._showTimer = A.Timer_Timer(A._lateReadCheck(_this.__TooltipState__waitDuration, "_waitDuration"), _this.get$ensureTooltipVisible()); }, _concealTooltip$0() { var t1, _this = this; if (A._lateReadCheck(_this.__TooltipState__isConcealed, "_isConcealed") || A._lateReadCheck(_this.__TooltipState__forceRemoval, "_forceRemoval")) return; _this.__TooltipState__isConcealed = true; t1 = _this._dismissTimer; if (t1 != null) t1.cancel$0(0); _this._dismissTimer = null; t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; t1 = _this._tooltip$_entry; if (t1 != null) t1.remove$0(0); A._lateReadCheck(_this.__TooltipState__controller, "_controller").reverse$0(0); }, _revealTooltip$0() { var t1, result, _this = this; if (!A._lateReadCheck(_this.__TooltipState__isConcealed, "_isConcealed")) return; _this.__TooltipState__isConcealed = false; t1 = _this._dismissTimer; if (t1 != null) t1.cancel$0(0); _this._dismissTimer = null; t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; if (!_this._tooltip$_entry._mounted) { t1 = _this._framework$_element; t1.toString; _this._widget.toString; result = t1.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._tooltip$_entry; t1.toString; result.insert$1(0, t1); } A.SemanticsService_tooltip(_this.get$_tooltipMessage()); A._lateReadCheck(_this.__TooltipState__controller, "_controller").forward$0(0); }, ensureTooltipVisible$0() { var t1, _this = this, _s11_ = "_controller"; if (!A._lateReadCheck(_this.__TooltipState__visible, "_visible")) return false; t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; _this.__TooltipState__forceRemoval = false; if (A._lateReadCheck(_this.__TooltipState__isConcealed, "_isConcealed")) { if (A._lateReadCheck(_this.__TooltipState__mouseIsConnected, "_mouseIsConnected")) A.Tooltip__concealOtherTooltips(_this); _this._revealTooltip$0(); return true; } if (_this._tooltip$_entry != null) { t1 = _this._dismissTimer; if (t1 != null) t1.cancel$0(0); _this._dismissTimer = null; A._lateReadCheck(_this.__TooltipState__controller, _s11_).forward$0(0); return false; } _this._createNewEntry$0(); A._lateReadCheck(_this.__TooltipState__controller, _s11_).forward$0(0); return true; }, _handleMouseExit$1$immediately(immediately) { if (this._framework$_element != null) this._dismissTooltip$1$immediately(A._lateReadCheck(this.__TooltipState__isConcealed, "_isConcealed") || immediately); }, _handleMouseExit$0() { return this._handleMouseExit$1$immediately(false); }, _createNewEntry$0() { var result, t2, target, t3, t4, t5, t6, t7, _this = this, _null = null, _s17_ = "_mouseIsConnected", t1 = _this._framework$_element; t1.toString; _this._widget.toString; result = t1.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1._box$_size.center$1(B.Offset_0_0); target = A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, result._framework$_element.get$renderObject()), t2); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1 = A.TextSpan$(_null, _null, _null, _this._widget.message); t3 = A._lateReadCheck(_this.__TooltipState__height, "_height"); t4 = A._lateReadCheck(_this.__TooltipState__padding, "_padding"); t5 = A._lateReadCheck(_this.__TooltipState__margin, "_margin"); t6 = A._lateReadCheck(_this.__TooltipState__mouseIsConnected, _s17_) ? new A.TooltipState__createNewEntry_closure(_this) : _null; t7 = A._lateReadCheck(_this.__TooltipState__mouseIsConnected, _s17_) ? new A.TooltipState__createNewEntry_closure0(_this) : _null; t2 = A.OverlayEntry$(new A.TooltipState__createNewEntry_closure1(A.Directionality$(new A._TooltipOverlay(t1, t3, t4, t5, A._lateReadCheck(_this.__TooltipState__decoration, "_decoration"), A._lateReadCheck(_this.__TooltipState__textStyle, "_textStyle"), A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(_this.__TooltipState__controller, "_controller"), _null), target, A._lateReadCheck(_this.__TooltipState__verticalOffset, "_verticalOffset"), A._lateReadCheck(_this.__TooltipState__preferBelow, "_preferBelow"), t6, t7, _null), t2.textDirection)), false); _this._tooltip$_entry = t2; _this.__TooltipState__isConcealed = false; result.insert$1(0, t2); A.SemanticsService_tooltip(_this.get$_tooltipMessage()); if (A._lateReadCheck(_this.__TooltipState__mouseIsConnected, _s17_)) A.Tooltip__concealOtherTooltips(_this); $.Tooltip__openedTooltips.push(_this); }, _removeEntry$0() { var t1, _this = this; B.JSArray_methods.remove$1($.Tooltip__openedTooltips, _this); $.TooltipState__mouseIn.remove$1(0, _this); t1 = _this._dismissTimer; if (t1 != null) t1.cancel$0(0); _this._dismissTimer = null; t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; if (!A._lateReadCheck(_this.__TooltipState__isConcealed, "_isConcealed")) { t1 = _this._tooltip$_entry; if (t1 != null) t1.remove$0(0); } _this.__TooltipState__isConcealed = false; _this._tooltip$_entry = null; if (A._lateReadCheck(_this.__TooltipState__mouseIsConnected, "_mouseIsConnected")) if ($.Tooltip__openedTooltips.length !== 0) B.JSArray_methods.get$last($.Tooltip__openedTooltips)._revealTooltip$0(); }, _tooltip$_handlePointerEvent$1($event) { if (this._tooltip$_entry == null) return; if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) this._handleMouseExit$0(); else if (type$.PointerDownEvent._is($event)) this._handleMouseExit$1$immediately(true); }, deactivate$0() { var t1, _this = this; if (_this._tooltip$_entry != null) _this._dismissTooltip$1$immediately(true); t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this.super$State$deactivate(); }, dispose$0(_) { var _this = this; $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.remove$1(0, _this.get$_tooltip$_handlePointerEvent()); $.RendererBinding__instance.RendererBinding__mouseTracker.removeListener$1(0, _this.get$_handleMouseTrackerChange()); _this._removeEntry$0(); A._lateReadCheck(_this.__TooltipState__controller, "_controller").dispose$0(0); _this.super$_TooltipState_State_SingleTickerProviderStateMixin$dispose(0); }, _handlePress$0() { var t1, t2, _this = this; _this._pressActivated = true; if (_this.ensureTooltipVisible$0() && A._lateReadCheck(_this.__TooltipState__enableFeedback, "_enableFeedback")) { t1 = A._lateReadCheck(_this.__TooltipState__triggerMode, "_triggerMode"); t2 = _this._framework$_element; if (t1 === B.TooltipTriggerMode_1) { t2.toString; A.Feedback_forLongPress(t2); } else { t2.toString; A.Feedback_forTap(t2); } } }, build$1(_, context) { var t1, theme, tooltipTheme, t2, defaultTextStyle, defaultDecoration, result, _this = this, _null = null, _s12_ = "_triggerMode"; if (_this.get$_tooltipMessage().length === 0) { t1 = _this._widget.child; return t1; } theme = A.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(type$.TooltipTheme); tooltipTheme = A.Theme_of(context).tooltipTheme; t1 = theme.colorScheme; t2 = theme.textTheme.bodyMedium; if (t1.brightness === B.Brightness_0) { t2.toString; defaultTextStyle = t2.copyWith$2$color$fontSize(B.Color_4278190080, _this._getDefaultFontSize$0()); defaultDecoration = new A.BoxDecoration(A.Color$fromARGB(B.JSNumber_methods.round$0(229.5), 255, 255, 255), _null, _null, B.BorderRadius_tLn0, _null, _null, B.BoxShape_0); } else { t2.toString; defaultTextStyle = t2.copyWith$2$color$fontSize(B.Color_4294967295, _this._getDefaultFontSize$0()); defaultDecoration = new A.BoxDecoration(A.Color$fromARGB(B.JSNumber_methods.round$0(229.5), 97, 97, 97), _null, _null, B.BorderRadius_tLn0, _null, _null, B.BoxShape_0); } _this._widget.toString; t1 = tooltipTheme.height; _this.__TooltipState__height = t1 == null ? _this._getDefaultTooltipHeight$0() : t1; _this._widget.toString; t1 = tooltipTheme.padding; _this.__TooltipState__padding = t1 == null ? _this._getDefaultPadding$0() : t1; _this._widget.toString; t1 = tooltipTheme.margin; _this.__TooltipState__margin = t1 == null ? B.EdgeInsets_0_0_0_0 : t1; t1 = tooltipTheme.verticalOffset; _this.__TooltipState__verticalOffset = t1 == null ? 24 : t1; _this.__TooltipState__preferBelow = true; _this.__TooltipState__excludeFromSemantics = false; t1 = tooltipTheme.decoration; _this.__TooltipState__decoration = t1 == null ? defaultDecoration : t1; t1 = tooltipTheme.textStyle; _this.__TooltipState__textStyle = t1 == null ? defaultTextStyle : t1; _this.__TooltipState__waitDuration = B.Duration_0; _this.__TooltipState__showDuration = B.Duration_1500000; _this.__TooltipState__hoverShowDuration = B.Duration_100000; _this.__TooltipState__triggerMode = B.TooltipTriggerMode_1; _this.__TooltipState__enableFeedback = true; t1 = A._lateReadCheck(false, "_excludeFromSemantics") ? _null : _this.get$_tooltipMessage(); t2 = _this._widget.child; result = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t2, _null); if (A._lateReadCheck(_this.__TooltipState__visible, "_visible")) { t1 = A._lateReadCheck(_this.__TooltipState__triggerMode, _s12_) === B.TooltipTriggerMode_1 ? _this.get$_handlePress() : _null; result = A.GestureDetector$(B.HitTestBehavior_1, result, B.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, A._lateReadCheck(_this.__TooltipState__triggerMode, _s12_) === B.TooltipTriggerMode_2 ? _this.get$_handlePress() : _null, _null, _null, _null, _null, _null, _null); if (A._lateReadCheck(_this.__TooltipState__mouseIsConnected, "_mouseIsConnected")) result = A.MouseRegion$(result, B.C__DeferringMouseCursor, _null, new A.TooltipState_build_closure(_this), new A.TooltipState_build_closure0(_this), _null); } return result; } }; A.TooltipState__handleMouseTrackerChange_closure.prototype = { call$0() { this.$this.__TooltipState__mouseIsConnected = this.mouseIsConnected; }, $signature: 0 }; A.TooltipState__createNewEntry_closure.prototype = { call$1(_) { var t1 = this.$this; if (t1._framework$_element != null) t1._showTooltip$0(); return null; }, $signature: 264 }; A.TooltipState__createNewEntry_closure0.prototype = { call$1(_) { return this.$this._handleMouseExit$0(); }, $signature: 200 }; A.TooltipState__createNewEntry_closure1.prototype = { call$1(context) { return this.overlay; }, $signature: 78 }; A.TooltipState_build_closure.prototype = { call$1(_) { var t1 = this.$this; if (t1._framework$_element != null) t1._showTooltip$0(); return null; }, $signature: 264 }; A.TooltipState_build_closure0.prototype = { call$1(_) { return this.$this._handleMouseExit$0(); }, $signature: 200 }; A._TooltipPositionDelegate.prototype = { getConstraintsForChild$1(constraints) { return new A.BoxConstraints(0, constraints.maxWidth, 0, constraints.maxHeight); }, getPositionForChild$2(size, childSize) { return A.positionDependentBox(childSize, true, size, this.target, this.verticalOffset); }, shouldRelayout$1(oldDelegate) { return !this.target.$eq(0, oldDelegate.target) || this.verticalOffset !== oldDelegate.verticalOffset || false; } }; A._TooltipOverlay.prototype = { build$1(_, context) { var result, _this = this, _null = null, t1 = A.Theme_of(context).textTheme.bodyMedium; t1.toString; result = new A.IgnorePointer(true, _null, A.FadeTransition$(false, new A.ConstrainedBox(new A.BoxConstraints(0, 1 / 0, _this.height, 1 / 0), A.DefaultTextStyle$(A.Container$(_null, A.Center$(new A.Text(_null, _this.richMessage, _this.textStyle, _null, _null, _null, _null, _null, _null, _null, _null), 1, 1), B.Clip_0, _null, _null, _this.decoration, _null, _null, _null, _this.margin, _this.padding, _null, _null, _null), _null, _null, B.TextOverflow_0, true, t1, _null, _null, B.TextWidthBasis_0), _null), _this.animation), _null); t1 = _this.onEnter; if (t1 != null || _this.onExit != null) result = A.MouseRegion$(result, B.C__DeferringMouseCursor, _null, t1, _this.onExit, _null); return A.Positioned$fill(new A.CustomSingleChildLayout(new A._TooltipPositionDelegate(_this.target, _this.verticalOffset, true), result, _null)); } }; A._TooltipState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TooltipThemeData.prototype = { get$hashCode(_) { var _this = this, _null = null; return A.Object_hash(_this.height, _this.padding, _this.margin, _this.verticalOffset, _this.preferBelow, _this.excludeFromSemantics, _this.decoration, _this.textStyle, _null, _null, _null, _null, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.TooltipThemeData) if (other.height == _this.height) if (J.$eq$(other.padding, _this.padding)) if (J.$eq$(other.margin, _this.margin)) if (other.verticalOffset == _this.verticalOffset) if (J.$eq$(other.decoration, _this.decoration)) if (J.$eq$(other.textStyle, _this.textStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A.TooltipTriggerMode.prototype = { toString$0(_) { return "TooltipTriggerMode." + this._core$_name; } }; A._TooltipThemeData_Object_Diagnosticable.prototype = {}; A.ScriptCategory.prototype = { toString$0(_) { return "ScriptCategory." + this._core$_name; } }; A.Typography.prototype = { geometryThemeFor$1(category) { switch (category.index) { case 0: return this.englishLike; case 1: return this.dense; case 2: return this.tall; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.Typography && J.$eq$(other.black, _this.black) && J.$eq$(other.white, _this.white) && other.englishLike.$eq(0, _this.englishLike) && other.dense.$eq(0, _this.dense) && other.tall.$eq(0, _this.tall); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.black, _this.white, _this.englishLike, _this.dense, _this.tall, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._Typography_Object_Diagnosticable.prototype = {}; A.NetworkImage.prototype = { obtainKey$1(configuration) { return new A.SynchronousFuture(this, type$.SynchronousFuture_NetworkImage); }, load$2(_, key, decode) { var _null = null, chunkEvents = A.StreamController_StreamController(_null, _null, _null, false, type$.ImageChunkEvent), t1 = this.__network_image_web$_loadAsync$3(key, decode, chunkEvents), t2 = key.scale; return A.MultiFrameImageStreamCompleter$(new A._ControllerStream(chunkEvents, A._instanceType(chunkEvents)._eval$1("_ControllerStream<1>")), t1, key.url, _null, t2); }, __network_image_web$_loadAsync$3(key, decode, chunkEvents) { return this._loadAsync$body$NetworkImage(key, decode, chunkEvents); }, _loadAsync$body$NetworkImage(key, decode, chunkEvents) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, resolved, t1; var $async$__network_image_web$_loadAsync$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start resolved = A.Uri_base().resolve$1(0, key.url); t1 = A.webOnlyInstantiateImageCodecFromUrl(resolved, new A.NetworkImage__loadAsync_closure(chunkEvents)); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$__network_image_web$_loadAsync$3, $async$completer); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.NetworkImage && other.url == this.url && other.scale === this.scale; }, get$hashCode(_) { return A.Object_hash(this.url, this.scale, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return 'NetworkImage("' + A.S(this.url) + '", scale: ' + this.scale + ")"; } }; A.NetworkImage__loadAsync_closure.prototype = { call$2(bytes, total) { this.chunkEvents.add$1(0, new A.ImageChunkEvent(bytes, total)); }, $signature: 325 }; A.AlignmentGeometry.prototype = { toString$0(_) { var _this = this; if (_this.get$_alignment$_start(_this) === 0) return A.Alignment__stringify(_this.get$_x(), _this.get$_y()); if (_this.get$_x() === 0) return A.AlignmentDirectional__stringify(_this.get$_alignment$_start(_this), _this.get$_y()); return A.Alignment__stringify(_this.get$_x(), _this.get$_y()) + " + " + A.AlignmentDirectional__stringify(_this.get$_alignment$_start(_this), 0); }, $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.AlignmentGeometry && other.get$_x() == _this.get$_x() && other.get$_alignment$_start(other) == _this.get$_alignment$_start(_this) && other.get$_y() == _this.get$_y(); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$_x(), _this.get$_alignment$_start(_this), _this.get$_y(), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.Alignment.prototype = { get$_x() { return this.x; }, get$_alignment$_start(_) { return 0; }, get$_y() { return this.y; }, $sub(_, other) { return new A.Alignment(this.x - other.x, this.y - other.y); }, $add(_, other) { return new A.Alignment(this.x + other.x, this.y + other.y); }, $mul(_, other) { return new A.Alignment(this.x * other, this.y * other); }, $div(_, other) { return new A.Alignment(this.x / other, this.y / other); }, alongOffset$1(other) { var centerX = other._dx / 2, centerY = other._dy / 2; return new A.Offset(centerX + this.x * centerX, centerY + this.y * centerY); }, alongSize$1(other) { var centerX = other._dx / 2, centerY = other._dy / 2; return new A.Offset(centerX + this.x * centerX, centerY + this.y * centerY); }, withinRect$1(rect) { var t1 = rect.left, halfWidth = (rect.right - t1) / 2, t2 = rect.top, halfHeight = (rect.bottom - t2) / 2; return new A.Offset(t1 + halfWidth + this.x * halfWidth, t2 + halfHeight + this.y * halfHeight); }, inscribe$2(size, rect) { var t1 = rect.left, t2 = size._dx, halfWidthDelta = (rect.right - t1 - t2) / 2, t3 = rect.top, t4 = size._dy, halfHeightDelta = (rect.bottom - t3 - t4) / 2; t1 = t1 + halfWidthDelta + this.x * halfWidthDelta; t3 = t3 + halfHeightDelta + this.y * halfHeightDelta; return new A.Rect(t1, t3, t1 + t2, t3 + t4); }, resolve$1(_, direction) { return this; }, toString$0(_) { return A.Alignment__stringify(this.x, this.y); } }; A.AlignmentDirectional.prototype = { get$_x() { return 0; }, get$_alignment$_start(_) { return this.start; }, get$_y() { return this.y; }, $sub(_, other) { return new A.AlignmentDirectional(this.start - other.start, this.y - other.y); }, $add(_, other) { return new A.AlignmentDirectional(this.start + other.start, this.y + other.y); }, $mul(_, other) { return new A.AlignmentDirectional(this.start * other, this.y * other); }, $div(_, other) { return new A.AlignmentDirectional(this.start / other, this.y / other); }, resolve$1(_, direction) { var _this = this; switch (direction.index) { case 0: return new A.Alignment(-_this.start, _this.y); case 1: return new A.Alignment(_this.start, _this.y); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, toString$0(_) { return A.AlignmentDirectional__stringify(this.start, this.y); } }; A._MixedAlignment.prototype = { $mul(_, other) { return new A._MixedAlignment(this._x * other, this._alignment$_start * other, this._y * other); }, $div(_, other) { return new A._MixedAlignment(this._x / other, this._alignment$_start / other, this._y / other); }, resolve$1(_, direction) { var _this = this; switch (direction.index) { case 0: return new A.Alignment(_this._x - _this._alignment$_start, _this._y); case 1: return new A.Alignment(_this._x + _this._alignment$_start, _this._y); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_x() { return this._x; }, get$_alignment$_start(receiver) { return this._alignment$_start; }, get$_y() { return this._y; } }; A.TextAlignVertical.prototype = { toString$0(_) { return "TextAlignVertical(y: " + this.y + ")"; } }; A.RenderComparison.prototype = { toString$0(_) { return "RenderComparison." + this._core$_name; } }; A.Axis0.prototype = { toString$0(_) { return "Axis." + this._core$_name; } }; A.VerticalDirection.prototype = { toString$0(_) { return "VerticalDirection." + this._core$_name; } }; A.AxisDirection.prototype = { toString$0(_) { return "AxisDirection." + this._core$_name; } }; A.PaintingBinding.prototype = { instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth(bytes, allowUpscaling, cacheHeight, cacheWidth) { return A.instantiateImageCodec(bytes, false, cacheHeight, cacheWidth); }, instantiateImageCodec$1(bytes) { return this.instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth(bytes, false, null, null); }, $isSchedulerBinding: 1 }; A._SystemFontsNotifier.prototype = { notifyListeners$0() { for (var t1 = this._systemFontsCallbacks, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.call$0(); }, addListener$1(_, listener) { this._systemFontsCallbacks.add$1(0, listener); }, removeListener$1(_, listener) { this._systemFontsCallbacks.remove$1(0, listener); } }; A.BorderRadiusGeometry.prototype = { subtract$1(other) { var _this = this; return new A._MixedBorderRadius(_this.get$_topLeft().$sub(0, other.get$_topLeft()), _this.get$_topRight().$sub(0, other.get$_topRight()), _this.get$_bottomLeft().$sub(0, other.get$_bottomLeft()), _this.get$_bottomRight().$sub(0, other.get$_bottomRight()), _this.get$_topStart().$sub(0, other.get$_topStart()), _this.get$_topEnd().$sub(0, other.get$_topEnd()), _this.get$_bottomStart().$sub(0, other.get$_bottomStart()), _this.get$_bottomEnd().$sub(0, other.get$_bottomEnd())); }, add$1(_, other) { var _this = this; return new A._MixedBorderRadius(_this.get$_topLeft().$add(0, other.get$_topLeft()), _this.get$_topRight().$add(0, other.get$_topRight()), _this.get$_bottomLeft().$add(0, other.get$_bottomLeft()), _this.get$_bottomRight().$add(0, other.get$_bottomRight()), _this.get$_topStart().$add(0, other.get$_topStart()), _this.get$_topEnd().$add(0, other.get$_topEnd()), _this.get$_bottomStart().$add(0, other.get$_bottomStart()), _this.get$_bottomEnd().$add(0, other.get$_bottomEnd())); }, toString$0(_) { var visual, t1, comma, logical, _this = this, _s18_ = "BorderRadius.only(", _s29_ = "BorderRadiusDirectional.only("; if (J.$eq$(_this.get$_topLeft(), _this.get$_topRight()) && J.$eq$(_this.get$_topRight(), _this.get$_bottomLeft()) && J.$eq$(_this.get$_bottomLeft(), _this.get$_bottomRight())) if (!J.$eq$(_this.get$_topLeft(), B.Radius_0_0)) visual = _this.get$_topLeft().x === _this.get$_topLeft().y ? "BorderRadius.circular(" + B.JSNumber_methods.toStringAsFixed$1(_this.get$_topLeft().x, 1) + ")" : "BorderRadius.all(" + A.S(_this.get$_topLeft()) + ")"; else visual = null; else { if (!J.$eq$(_this.get$_topLeft(), B.Radius_0_0)) { t1 = _s18_ + ("topLeft: " + A.S(_this.get$_topLeft())); comma = true; } else { t1 = _s18_; comma = false; } if (!J.$eq$(_this.get$_topRight(), B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "topRight: " + A.S(_this.get$_topRight()); comma = true; } if (!J.$eq$(_this.get$_bottomLeft(), B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomLeft: " + A.S(_this.get$_bottomLeft()); comma = true; } if (!J.$eq$(_this.get$_bottomRight(), B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomRight: " + A.S(_this.get$_bottomRight()); } t1 += ")"; visual = t1.charCodeAt(0) == 0 ? t1 : t1; } if (_this.get$_topStart().$eq(0, _this.get$_topEnd()) && _this.get$_topEnd().$eq(0, _this.get$_bottomEnd()) && _this.get$_bottomEnd().$eq(0, _this.get$_bottomStart())) if (!_this.get$_topStart().$eq(0, B.Radius_0_0)) logical = _this.get$_topStart().x === _this.get$_topStart().y ? "BorderRadiusDirectional.circular(" + B.JSNumber_methods.toStringAsFixed$1(_this.get$_topStart().x, 1) + ")" : "BorderRadiusDirectional.all(" + _this.get$_topStart().toString$0(0) + ")"; else logical = null; else { if (!_this.get$_topStart().$eq(0, B.Radius_0_0)) { t1 = _s29_ + ("topStart: " + _this.get$_topStart().toString$0(0)); comma = true; } else { t1 = _s29_; comma = false; } if (!_this.get$_topEnd().$eq(0, B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "topEnd: " + _this.get$_topEnd().toString$0(0); comma = true; } if (!_this.get$_bottomStart().$eq(0, B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomStart: " + _this.get$_bottomStart().toString$0(0); comma = true; } if (!_this.get$_bottomEnd().$eq(0, B.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomEnd: " + _this.get$_bottomEnd().toString$0(0); } t1 += ")"; logical = t1.charCodeAt(0) == 0 ? t1 : t1; } t1 = visual != null; if (t1 && logical != null) return A.S(visual) + " + " + logical; if (t1) return visual; if (logical != null) return logical; return "BorderRadius.zero"; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BorderRadiusGeometry && J.$eq$(other.get$_topLeft(), _this.get$_topLeft()) && J.$eq$(other.get$_topRight(), _this.get$_topRight()) && J.$eq$(other.get$_bottomLeft(), _this.get$_bottomLeft()) && J.$eq$(other.get$_bottomRight(), _this.get$_bottomRight()) && other.get$_topStart().$eq(0, _this.get$_topStart()) && other.get$_topEnd().$eq(0, _this.get$_topEnd()) && other.get$_bottomStart().$eq(0, _this.get$_bottomStart()) && other.get$_bottomEnd().$eq(0, _this.get$_bottomEnd()); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$_topLeft(), _this.get$_topRight(), _this.get$_bottomLeft(), _this.get$_bottomRight(), _this.get$_topStart(), _this.get$_topEnd(), _this.get$_bottomStart(), _this.get$_bottomEnd(), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.BorderRadius.prototype = { get$_topLeft() { return this.topLeft; }, get$_topRight() { return this.topRight; }, get$_bottomLeft() { return this.bottomLeft; }, get$_bottomRight() { return this.bottomRight; }, get$_topStart() { return B.Radius_0_0; }, get$_topEnd() { return B.Radius_0_0; }, get$_bottomStart() { return B.Radius_0_0; }, get$_bottomEnd() { return B.Radius_0_0; }, toRRect$1(rect) { var _this = this; return A.RRect$fromRectAndCorners(rect, _this.bottomLeft, _this.bottomRight, _this.topLeft, _this.topRight); }, subtract$1(other) { if (other instanceof A.BorderRadius) return this.$sub(0, other); return this.super$BorderRadiusGeometry$subtract(other); }, add$1(_, other) { if (other instanceof A.BorderRadius) return this.$add(0, other); return this.super$BorderRadiusGeometry$add(0, other); }, $sub(_, other) { var _this = this; return new A.BorderRadius(_this.topLeft.$sub(0, other.topLeft), _this.topRight.$sub(0, other.topRight), _this.bottomLeft.$sub(0, other.bottomLeft), _this.bottomRight.$sub(0, other.bottomRight)); }, $add(_, other) { var _this = this; return new A.BorderRadius(_this.topLeft.$add(0, other.topLeft), _this.topRight.$add(0, other.topRight), _this.bottomLeft.$add(0, other.bottomLeft), _this.bottomRight.$add(0, other.bottomRight)); }, $mul(_, other) { var _this = this; return new A.BorderRadius(_this.topLeft.$mul(0, other), _this.topRight.$mul(0, other), _this.bottomLeft.$mul(0, other), _this.bottomRight.$mul(0, other)); }, $div(_, other) { var _this = this; return new A.BorderRadius(_this.topLeft.$div(0, other), _this.topRight.$div(0, other), _this.bottomLeft.$div(0, other), _this.bottomRight.$div(0, other)); }, resolve$1(_, direction) { return this; } }; A._MixedBorderRadius.prototype = { $mul(_, other) { var _this = this; return new A._MixedBorderRadius(_this._topLeft.$mul(0, other), _this._topRight.$mul(0, other), _this._bottomLeft.$mul(0, other), _this._bottomRight.$mul(0, other), _this._topStart.$mul(0, other), _this._topEnd.$mul(0, other), _this._bottomStart.$mul(0, other), _this._bottomEnd.$mul(0, other)); }, $div(_, other) { var _this = this; return new A._MixedBorderRadius(_this._topLeft.$div(0, other), _this._topRight.$div(0, other), _this._bottomLeft.$div(0, other), _this._bottomRight.$div(0, other), _this._topStart.$div(0, other), _this._topEnd.$div(0, other), _this._bottomStart.$div(0, other), _this._bottomEnd.$div(0, other)); }, resolve$1(_, direction) { var _this = this; switch (direction.index) { case 0: return new A.BorderRadius(_this._topLeft.$add(0, _this._topEnd), _this._topRight.$add(0, _this._topStart), _this._bottomLeft.$add(0, _this._bottomEnd), _this._bottomRight.$add(0, _this._bottomStart)); case 1: return new A.BorderRadius(_this._topLeft.$add(0, _this._topStart), _this._topRight.$add(0, _this._topEnd), _this._bottomLeft.$add(0, _this._bottomStart), _this._bottomRight.$add(0, _this._bottomEnd)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_topLeft() { return this._topLeft; }, get$_topRight() { return this._topRight; }, get$_bottomLeft() { return this._bottomLeft; }, get$_bottomRight() { return this._bottomRight; }, get$_topStart() { return this._topStart; }, get$_topEnd() { return this._topEnd; }, get$_bottomStart() { return this._bottomStart; }, get$_bottomEnd() { return this._bottomEnd; } }; A.BorderStyle.prototype = { toString$0(_) { return "BorderStyle." + this._core$_name; } }; A.BorderSide.prototype = { scale$1(_, t) { var t1 = Math.max(0, this.width * t), t2 = t <= 0 ? B.BorderStyle_0 : this.style; return new A.BorderSide(this.color, t1, t2); }, toPaint$0() { switch (this.style.index) { case 1: var t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1.set$color(0, this.color); t1.set$strokeWidth(this.width); t1.set$style(0, B.PaintingStyle_1); return t1; case 0: t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1.set$color(0, B.Color_0); t1.set$strokeWidth(0); t1.set$style(0, B.PaintingStyle_1); return t1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BorderSide && J.$eq$(other.color, _this.color) && other.width === _this.width && other.style === _this.style; }, get$hashCode(_) { return A.Object_hash(this.color, this.width, this.style, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "BorderSide(" + A.S(this.color) + ", " + B.JSNumber_methods.toStringAsFixed$1(this.width, 1) + ", " + this.style.toString$0(0) + ")"; } }; A.ShapeBorder.prototype = { add$2$reversed(_, other, reversed) { return null; }, add$1($receiver, other) { return this.add$2$reversed($receiver, other, false); }, $add(_, other) { var t1 = this.add$1(0, other); if (t1 == null) t1 = other.add$2$reversed(0, this, true); return t1 == null ? new A._CompoundBorder(A._setArrayType([other, this], type$.JSArray_ShapeBorder)) : t1; }, lerpFrom$2(a, t) { if (a == null) return this.scale$1(0, t); return null; }, lerpTo$2(b, t) { if (b == null) return this.scale$1(0, 1 - t); return null; }, toString$0(_) { return "ShapeBorder()"; } }; A.OutlinedBorder.prototype = {}; A._CompoundBorder.prototype = { get$dimensions() { return B.JSArray_methods.fold$1$2(this.borders, B.EdgeInsets_0_0_0_0, new A._CompoundBorder_dimensions_closure(), type$.EdgeInsetsGeometry); }, add$2$reversed(_, other, reversed) { var t2, ours, merged, t1 = other instanceof A._CompoundBorder; if (!t1) { t2 = this.borders; ours = reversed ? B.JSArray_methods.get$last(t2) : B.JSArray_methods.get$first(t2); merged = ours.add$2$reversed(0, other, reversed); if (merged == null) merged = other.add$2$reversed(0, ours, !reversed); if (merged != null) { t1 = A.List_List$of(t2, true, type$.ShapeBorder); t1[reversed ? t1.length - 1 : 0] = merged; return new A._CompoundBorder(t1); } } t2 = A._setArrayType([], type$.JSArray_ShapeBorder); if (reversed) B.JSArray_methods.addAll$1(t2, this.borders); if (t1) B.JSArray_methods.addAll$1(t2, other.borders); else t2.push(other); if (!reversed) B.JSArray_methods.addAll$1(t2, this.borders); return new A._CompoundBorder(t2); }, add$1($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1(_, t) { var t1 = this.borders, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ShapeBorder>"); return new A._CompoundBorder(A.List_List$of(new A.MappedListIterable(t1, new A._CompoundBorder_scale_closure(t), t2), true, t2._eval$1("ListIterable.E"))); }, lerpFrom$2(a, t) { return A._CompoundBorder_lerp(a, this, t); }, lerpTo$2(b, t) { return A._CompoundBorder_lerp(this, b, t); }, getInnerPath$2$textDirection(rect, textDirection) { var t1, index; for (t1 = this.borders, index = 0; index < t1.length - 1; ++index) rect = t1[index].get$dimensions().resolve$1(0, textDirection).deflateRect$1(rect); return B.JSArray_methods.get$last(t1).getInnerPath$2$textDirection(rect, textDirection); }, getOuterPath$2$textDirection(rect, textDirection) { return B.JSArray_methods.get$first(this.borders).getOuterPath$2$textDirection(rect, textDirection); }, paint$3$textDirection(canvas, rect, textDirection) { var t1, t2, _i, border; for (t1 = this.borders, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { border = t1[_i]; border.paint$3$textDirection(canvas, rect, textDirection); rect = border.get$dimensions().resolve$1(0, textDirection).deflateRect$1(rect); } }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._CompoundBorder && A.listEquals0(other.borders, this.borders); }, get$hashCode(_) { return A.Object_hashAll(this.borders); }, toString$0(_) { var t1 = this.borders, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); return new A.MappedListIterable(new A.ReversedListIterable(t1, t2), new A._CompoundBorder_toString_closure(), t2._eval$1("MappedListIterable")).join$1(0, " + "); } }; A._CompoundBorder_dimensions_closure.prototype = { call$2(previousValue, border) { return previousValue.add$1(0, border.get$dimensions()); }, $signature: 2214 }; A._CompoundBorder_scale_closure.prototype = { call$1(border) { return border.scale$1(0, this.t); }, $signature: 2213 }; A._CompoundBorder_toString_closure.prototype = { call$1(border) { return J.toString$0$(border); }, $signature: 2211 }; A.BoxShape.prototype = { toString$0(_) { return "BoxShape." + this._core$_name; } }; A.BoxBorder.prototype = { add$2$reversed(_, other, reversed) { return null; }, add$1($receiver, other) { return this.add$2$reversed($receiver, other, false); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRect$1(0, this.get$dimensions().resolve$1(0, textDirection).deflateRect$1(rect)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRect$1(0, rect); return t1; } }; A.Border.prototype = { get$dimensions() { var _this = this; return new A.EdgeInsets(_this.left.width, _this.top.width, _this.right.width, _this.bottom.width); }, get$_colorIsUniform() { var _this = this, topColor = _this.top.color; return J.$eq$(_this.right.color, topColor) && J.$eq$(_this.bottom.color, topColor) && J.$eq$(_this.left.color, topColor); }, get$_widthIsUniform() { var _this = this, topWidth = _this.top.width; return _this.right.width === topWidth && _this.bottom.width === topWidth && _this.left.width === topWidth; }, get$_styleIsUniform() { var _this = this, topStyle = _this.top.style; return _this.right.style === topStyle && _this.bottom.style === topStyle && _this.left.style === topStyle; }, add$2$reversed(_, other, reversed) { var _this = this; if (other instanceof A.Border && A.BorderSide_canMerge(_this.top, other.top) && A.BorderSide_canMerge(_this.right, other.right) && A.BorderSide_canMerge(_this.bottom, other.bottom) && A.BorderSide_canMerge(_this.left, other.left)) return new A.Border(A.BorderSide_merge(_this.top, other.top), A.BorderSide_merge(_this.right, other.right), A.BorderSide_merge(_this.bottom, other.bottom), A.BorderSide_merge(_this.left, other.left)); return null; }, add$1($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1(_, t) { var _this = this; return new A.Border(_this.top.scale$1(0, t), _this.right.scale$1(0, t), _this.bottom.scale$1(0, t), _this.left.scale$1(0, t)); }, lerpFrom$2(a, t) { if (a instanceof A.Border) return A.Border_lerp(a, this, t); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { if (b instanceof A.Border) return A.Border_lerp(this, b, t); return this.super$ShapeBorder$lerpTo(b, t); }, paint$5$borderRadius$shape$textDirection(canvas, rect, borderRadius, shape, textDirection) { var t1, _this = this, _s80_ = string$.x60null_c; if (_this.get$_colorIsUniform() && _this.get$_widthIsUniform() && _this.get$_styleIsUniform()) { t1 = _this.top; switch (t1.style.index) { case 0: return; case 1: switch (shape.index) { case 1: A.BoxBorder__paintUniformBorderWithCircle(canvas, rect, t1); break; case 0: if (borderRadius != null) { A.BoxBorder__paintUniformBorderWithRadius(canvas, rect, t1, borderRadius); return; } A.BoxBorder__paintUniformBorderWithRectangle(canvas, rect, t1); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } A.paintBorder(canvas, rect, _this.bottom, _this.left, _this.right, _this.top); }, paint$3$textDirection(canvas, rect, textDirection) { return this.paint$5$borderRadius$shape$textDirection(canvas, rect, null, B.BoxShape_0, textDirection); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.Border && J.$eq$(other.top, _this.top) && J.$eq$(other.right, _this.right) && J.$eq$(other.bottom, _this.bottom) && J.$eq$(other.left, _this.left); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.top, _this.right, _this.bottom, _this.left, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var t1, t2, _this = this; if (_this.get$_colorIsUniform() && _this.get$_widthIsUniform() && _this.get$_styleIsUniform()) return "Border.all(" + A.S(_this.top) + ")"; t1 = A._setArrayType([], type$.JSArray_String); t2 = _this.top; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("top: " + A.S(t2)); t2 = _this.right; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("right: " + A.S(t2)); t2 = _this.bottom; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("bottom: " + A.S(t2)); t2 = _this.left; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("left: " + A.S(t2)); return "Border(" + B.JSArray_methods.join$1(t1, ", ") + ")"; }, get$top(receiver) { return this.top; } }; A.BorderDirectional.prototype = { get$dimensions() { var _this = this; return new A.EdgeInsetsDirectional(_this.start.width, _this.top.width, _this.end.width, _this.bottom.width); }, get$isUniform() { var topWidth, topStyle, _this = this, t1 = _this.top, topColor = t1.color, t2 = _this.start; if (!J.$eq$(t2.color, topColor) || !J.$eq$(_this.end.color, topColor) || !J.$eq$(_this.bottom.color, topColor)) return false; topWidth = t1.width; if (t2.width !== topWidth || _this.end.width !== topWidth || _this.bottom.width !== topWidth) return false; topStyle = t1.style; if (t2.style !== topStyle || _this.end.style !== topStyle || _this.bottom.style !== topStyle) return false; return true; }, add$2$reversed(_, other, reversed) { var t1, t2, t3, _this = this, _null = null; if (other instanceof A.BorderDirectional) { t1 = _this.top; t2 = other.top; if (A.BorderSide_canMerge(t1, t2) && A.BorderSide_canMerge(_this.start, other.start) && A.BorderSide_canMerge(_this.end, other.end) && A.BorderSide_canMerge(_this.bottom, other.bottom)) return new A.BorderDirectional(A.BorderSide_merge(t1, t2), A.BorderSide_merge(_this.start, other.start), A.BorderSide_merge(_this.end, other.end), A.BorderSide_merge(_this.bottom, other.bottom)); return _null; } if (other instanceof A.Border) { t1 = other.top; t2 = _this.top; if (!A.BorderSide_canMerge(t1, t2) || !A.BorderSide_canMerge(other.bottom, _this.bottom)) return _null; t3 = _this.start; if (!J.$eq$(t3, B.BorderSide_0CF) || !J.$eq$(_this.end, B.BorderSide_0CF)) { if (!J.$eq$(other.left, B.BorderSide_0CF) || !J.$eq$(other.right, B.BorderSide_0CF)) return _null; return new A.BorderDirectional(A.BorderSide_merge(t1, t2), t3, _this.end, A.BorderSide_merge(other.bottom, _this.bottom)); } return new A.Border(A.BorderSide_merge(t1, t2), other.right, A.BorderSide_merge(other.bottom, _this.bottom), other.left); } return _null; }, add$1($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1(_, t) { var _this = this; return new A.BorderDirectional(_this.top.scale$1(0, t), _this.start.scale$1(0, t), _this.end.scale$1(0, t), _this.bottom.scale$1(0, t)); }, lerpFrom$2(a, t) { if (a instanceof A.BorderDirectional) return A.BorderDirectional_lerp(a, this, t); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { if (b instanceof A.BorderDirectional) return A.BorderDirectional_lerp(this, b, t); return this.super$ShapeBorder$lerpTo(b, t); }, paint$5$borderRadius$shape$textDirection(canvas, rect, borderRadius, shape, textDirection) { var t1, left, right, _this = this, _s80_ = string$.x60null_c; if (_this.get$isUniform()) { t1 = _this.top; switch (t1.style.index) { case 0: return; case 1: switch (shape.index) { case 1: A.BoxBorder__paintUniformBorderWithCircle(canvas, rect, t1); break; case 0: if (borderRadius != null) { A.BoxBorder__paintUniformBorderWithRadius(canvas, rect, t1, borderRadius); return; } A.BoxBorder__paintUniformBorderWithRectangle(canvas, rect, t1); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } switch (textDirection.index) { case 0: left = _this.end; right = _this.start; break; case 1: left = _this.start; right = _this.end; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } A.paintBorder(canvas, rect, _this.bottom, left, right, _this.top); }, paint$3$textDirection(canvas, rect, textDirection) { return this.paint$5$borderRadius$shape$textDirection(canvas, rect, null, B.BoxShape_0, textDirection); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BorderDirectional && J.$eq$(other.top, _this.top) && J.$eq$(other.start, _this.start) && J.$eq$(other.end, _this.end) && J.$eq$(other.bottom, _this.bottom); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.top, _this.start, _this.end, _this.bottom, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this, t1 = A._setArrayType([], type$.JSArray_String), t2 = _this.top; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("top: " + A.S(t2)); t2 = _this.start; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("start: " + A.S(t2)); t2 = _this.end; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("end: " + A.S(t2)); t2 = _this.bottom; if (!J.$eq$(t2, B.BorderSide_0CF)) t1.push("bottom: " + A.S(t2)); return "BorderDirectional(" + B.JSArray_methods.join$1(t1, ", ") + ")"; }, get$top(receiver) { return this.top; } }; A.BoxDecoration.prototype = { get$padding(_) { var t1 = this.border; return t1 == null ? null : t1.get$dimensions(); }, getClipPath$2(rect, textDirection) { var square, t1, t2; switch (this.shape.index) { case 1: square = A.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2); t1 = A.Path_Path(); t1.addOval$1(0, square); return t1; case 0: t1 = this.borderRadius; if (t1 != null) { t2 = A.Path_Path(); t2.addRRect$1(0, t1.resolve$1(0, textDirection).toRRect$1(rect)); return t2; } t1 = A.Path_Path(); t1.addRect$1(0, rect); return t1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, scale$1(_, factor) { var _this = this, _null = null, t1 = A.Color_lerp(_null, _this.color, factor), t2 = A.BoxBorder_lerp(_null, _this.border, factor), t3 = A.BorderRadiusGeometry_lerp(_null, _this.borderRadius, factor), t4 = A.BoxShadow_lerpList(_null, _this.boxShadow, factor), t5 = _this.gradient; t5 = t5 == null ? _null : t5.scale$1(0, factor); return new A.BoxDecoration(t1, _this.image, t2, t3, t4, t5, _this.shape); }, get$isComplex() { return this.boxShadow != null; }, lerpFrom$2(a, t) { if (a == null) return this.scale$1(0, t); if (a instanceof A.BoxDecoration) return A.BoxDecoration_lerp(a, this, t); return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2(b, t) { if (b == null) return this.scale$1(0, 1 - t); if (b instanceof A.BoxDecoration) return A.BoxDecoration_lerp(this, b, t); return this.super$Decoration$lerpTo(b, t); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.BoxDecoration) if (J.$eq$(other.color, _this.color)) if (J.$eq$(other.image, _this.image)) if (J.$eq$(other.border, _this.border)) if (J.$eq$(other.borderRadius, _this.borderRadius)) if (A.listEquals0(other.boxShadow, _this.boxShadow)) if (J.$eq$(other.gradient, _this.gradient)) t1 = other.shape === _this.shape; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.boxShadow; t1 = t1 == null ? null : A.Object_hashAll(t1); return A.Object_hash(_this.color, _this.image, _this.border, _this.borderRadius, t1, _this.gradient, null, _this.shape, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, hitTest$3$textDirection(size, position, textDirection) { var t1, distance, t2; switch (this.shape.index) { case 0: t1 = this.borderRadius; if (t1 != null) return t1.resolve$1(0, textDirection).toRRect$1(new A.Rect(0, 0, 0 + size._dx, 0 + size._dy)).contains$1(0, position); return true; case 1: distance = position.$sub(0, size.center$1(B.Offset_0_0)).get$distance(); t1 = size._dx; t2 = size._dy; return distance <= Math.min(A.checkNum(t1), A.checkNum(t2)) / 2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, createBoxPainter$1(onChanged) { return new A._BoxDecorationPainter(this, onChanged); } }; A._BoxDecorationPainter.prototype = { _paintBox$4(canvas, rect, paint, textDirection) { var t1 = this._box_decoration$_decoration; switch (t1.shape.index) { case 1: canvas.drawCircle$3(0, rect.get$center(), rect.get$shortestSide() / 2, paint); break; case 0: t1 = t1.borderRadius; if (t1 == null) canvas.drawRect$2(0, rect, paint); else canvas.drawRRect$2(0, t1.resolve$1(0, textDirection).toRRect$1(rect), paint); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _paintShadows$3(canvas, rect, textDirection) { var t2, _i, boxShadow, paint, t3, t4, t1 = this._box_decoration$_decoration.boxShadow; if (t1 == null) return; for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { boxShadow = t1[_i]; paint = boxShadow.toPaint$0(); t3 = rect.shift$1(boxShadow.offset); t4 = boxShadow.spreadRadius; this._paintBox$4(canvas, new A.Rect(t3.left - t4, t3.top - t4, t3.right + t4, t3.bottom + t4), paint, textDirection); } }, _paintBackgroundImage$3(canvas, rect, configuration) { var t3, square, clipPath, _this = this, t1 = _this._box_decoration$_decoration, t2 = t1.image; if (t2 == null) return; if (_this._box_decoration$_imagePainter == null) { t3 = _this.onChanged; t3.toString; _this._box_decoration$_imagePainter = new A.DecorationImagePainter(t2, t3); } switch (t1.shape.index) { case 1: square = A.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2); clipPath = A.Path_Path(); clipPath.addOval$1(0, square); break; case 0: t1 = t1.borderRadius; if (t1 != null) { clipPath = A.Path_Path(); clipPath.addRRect$1(0, t1.resolve$1(0, configuration.textDirection).toRRect$1(rect)); } else clipPath = null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._box_decoration$_imagePainter.paint$4(canvas, rect, clipPath, configuration); }, dispose$0(_) { var t1 = this._box_decoration$_imagePainter; if (t1 != null) t1.dispose$0(0); this.super$BoxPainter$dispose(0); }, paint$3(canvas, offset, configuration) { var t4, paint, _this = this, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, rect = new A.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy), textDirection = configuration.textDirection; _this._paintShadows$3(canvas, rect, textDirection); t1 = _this._box_decoration$_decoration; t2 = t1.color; t3 = t2 == null; if (!t3 || t1.gradient != null) { if (_this._cachedBackgroundPaint != null) t4 = t1.gradient != null && !J.$eq$(_this._rectForCachedBackgroundPaint, rect); else t4 = true; if (t4) { paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); if (!t3) paint.set$color(0, t2); t2 = t1.gradient; if (t2 != null) { paint.set$shader(t2.createShader$2$textDirection(0, rect, textDirection)); _this._rectForCachedBackgroundPaint = rect; } _this._cachedBackgroundPaint = paint; } t2 = _this._cachedBackgroundPaint; t2.toString; _this._paintBox$4(canvas, rect, t2, textDirection); } _this._paintBackgroundImage$3(canvas, rect, configuration); t2 = t1.border; if (t2 != null) { t3 = t1.borderRadius; t3 = t3 == null ? null : t3.resolve$1(0, textDirection); t2.paint$5$borderRadius$shape$textDirection(canvas, rect, t3, t1.shape, textDirection); } }, toString$0(_) { return "BoxPainter for " + this._box_decoration$_decoration.toString$0(0); } }; A.BoxFit.prototype = { toString$0(_) { return "BoxFit." + this._core$_name; } }; A.FittedSizes.prototype = {}; A.BoxShadow.prototype = { toPaint$0() { var result = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); result.set$color(0, this.color); result.set$maskFilter(new A.MaskFilter(this.blurStyle, A.Shadow_convertRadiusToSigma(this.blurRadius))); return result; }, scale$1(_, factor) { var _this = this; return new A.BoxShadow(_this.spreadRadius * factor, _this.blurStyle, _this.color, _this.offset.$mul(0, factor), _this.blurRadius * factor); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BoxShadow && J.$eq$(other.color, _this.color) && J.$eq$(other.offset, _this.offset) && other.blurRadius == _this.blurRadius && other.spreadRadius == _this.spreadRadius && other.blurStyle === _this.blurStyle; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.color, _this.offset, _this.blurRadius, _this.spreadRadius, _this.blurStyle, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this; return "BoxShadow(" + A.S(_this.color) + ", " + A.S(_this.offset) + ", " + A.debugFormatDouble(_this.blurRadius) + ", " + A.debugFormatDouble(_this.spreadRadius) + "), " + _this.blurStyle.toString$0(0); } }; A.CircleBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { return new A.CircleBorder(this.side.scale$1(0, t)); }, lerpFrom$2(a, t) { if (a instanceof A.CircleBorder) return new A.CircleBorder(A.BorderSide_lerp(a.side, this.side, t)); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { if (b instanceof A.CircleBorder) return new A.CircleBorder(A.BorderSide_lerp(this.side, b.side, t)); return this.super$ShapeBorder$lerpTo(b, t); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addOval$1(0, A.Rect$fromCircle(rect.get$center(), Math.max(0, rect.get$shortestSide() / 2 - this.side.width))); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addOval$1(0, A.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2)); return t1; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side(side) { return new A.CircleBorder(side == null ? this.side : side); }, paint$3$textDirection(canvas, rect, textDirection) { var t1 = this.side; switch (t1.style.index) { case 0: break; case 1: canvas.drawCircle$3(0, rect.get$center(), (rect.get$shortestSide() - t1.width) / 2, t1.toPaint$0()); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.CircleBorder && J.$eq$(other.side, this.side); }, get$hashCode(_) { return J.get$hashCode$(this.side); }, toString$0(_) { return "CircleBorder(" + A.S(this.side) + ")"; } }; A.ClipContext.prototype = { _clipAndPaint$4(canvasClipCall, clipBehavior, bounds, painter) { var t1, _this = this; _this.get$canvas(_this).save$0(0); switch (clipBehavior) { case B.Clip_0: break; case B.Clip_1: canvasClipCall.call$1(false); break; case B.Clip_2: canvasClipCall.call$1(true); break; case B.Clip_3: canvasClipCall.call$1(true); t1 = _this.get$canvas(_this); t1.saveLayer$2(0, bounds, $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData())); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } painter.call$0(); if (clipBehavior === B.Clip_3) _this.get$canvas(_this).restore$0(0); _this.get$canvas(_this).restore$0(0); }, clipPathAndPaint$4(path, clipBehavior, bounds, painter) { this._clipAndPaint$4(new A.ClipContext_clipPathAndPaint_closure(this, path), clipBehavior, bounds, painter); }, clipRRectAndPaint$4(rrect, clipBehavior, bounds, painter) { this._clipAndPaint$4(new A.ClipContext_clipRRectAndPaint_closure(this, rrect), clipBehavior, bounds, painter); }, clipRectAndPaint$4(rect, clipBehavior, bounds, painter) { this._clipAndPaint$4(new A.ClipContext_clipRectAndPaint_closure(this, rect), clipBehavior, bounds, painter); } }; A.ClipContext_clipPathAndPaint_closure.prototype = { call$1(doAntiAlias) { var t1 = this.$this; return t1.get$canvas(t1).clipPath$2$doAntiAlias(0, this.path, doAntiAlias); }, $signature: 74 }; A.ClipContext_clipRRectAndPaint_closure.prototype = { call$1(doAntiAlias) { var t1 = this.$this; return t1.get$canvas(t1).clipRRect$2$doAntiAlias(0, this.rrect, doAntiAlias); }, $signature: 74 }; A.ClipContext_clipRectAndPaint_closure.prototype = { call$1(doAntiAlias) { var t1 = this.$this; return t1.get$canvas(t1).clipRect$2$doAntiAlias(0, this.rect, doAntiAlias); }, $signature: 74 }; A.ColorSwatch.prototype = { $index(_, index) { return this._swatch.$index(0, index); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return _this.super$Color$$eq(0, other) && A._instanceType(_this)._eval$1("ColorSwatch")._is(other) && A.mapEquals(other._swatch, _this._swatch); }, get$hashCode(_) { return A.Object_hash(A.getRuntimeType(this), this.value, this._swatch, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "ColorSwatch(primary value: " + this.super$Color$toString(0) + ")"; } }; A.ImageSizeInfo.prototype = { _sizeToBytes$1(size) { return B.JSNumber_methods.toInt$0(size._dx * size._dy * 4 * 1.3333333333333333); }, toJson$0() { var _this = this, t1 = _this.displaySize, t2 = type$.String, t3 = type$.nullable_Object, t4 = _this.imageSize; return A.LinkedHashMap_LinkedHashMap$_literal(["source", _this.source, "displaySize", A.LinkedHashMap_LinkedHashMap$_literal(["width", t1._dx, "height", t1._dy], t2, t3), "imageSize", A.LinkedHashMap_LinkedHashMap$_literal(["width", t4._dx, "height", t4._dy], t2, t3), "displaySizeInBytes", _this._sizeToBytes$1(t1), "decodedSizeInBytes", _this._sizeToBytes$1(t4)], t2, t3); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ImageSizeInfo && other.source === _this.source && other.imageSize.$eq(0, _this.imageSize) && other.displaySize.$eq(0, _this.displaySize); }, get$hashCode(_) { return A.Object_hash(this.source, this.displaySize, this.imageSize, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "ImageSizeInfo(" + this.source + ", imageSize: " + this.imageSize.toString$0(0) + ", displaySize: " + this.displaySize.toString$0(0) + ")"; } }; A.Decoration.prototype = { toStringShort$0() { return "Decoration"; }, get$padding(_) { return B.EdgeInsets_0_0_0_0; }, get$isComplex() { return false; }, lerpFrom$2(a, t) { return null; }, lerpTo$2(b, t) { return null; }, hitTest$3$textDirection(size, position, textDirection) { return true; }, getClipPath$2(rect, textDirection) { throw A.wrapException(A.UnsupportedError$("This Decoration subclass does not expect to be used for clipping.")); } }; A.BoxPainter.prototype = { dispose$0(_) { } }; A._Decoration_Object_Diagnosticable.prototype = {}; A.ImageRepeat.prototype = { toString$0(_) { return "ImageRepeat." + this._core$_name; } }; A.DecorationImagePainter.prototype = { paint$4(canvas, rect, clipPath, configuration) { var t2, t3, _this = this, _null = null, t1 = _this._details, newImageStream = t1.image.resolve$1(0, configuration); newImageStream.get$key(newImageStream); _this._decoration_image$_imageStream = newImageStream; newImageStream.addListener$1(0, new A.ImageStreamListener(_this.get$_handleImage(), _null, t1.onError)); if (_this._decoration_image$_image == null) return; t1 = clipPath != null; if (t1) { canvas.save$0(0); canvas.clipPath$1(0, clipPath); } t2 = _this._decoration_image$_image; t3 = t2.image; A.paintImage(B.Alignment_0_0, canvas, _null, _null, t2.debugLabel, B.FilterQuality_1, _null, false, t3, false, false, 1, rect, B.ImageRepeat_3, t2.scale); if (t1) canvas.restore$0(0); }, _handleImage$2(value, synchronousCall) { var t1, t2, _this = this; if (J.$eq$(_this._decoration_image$_image, value)) return; t1 = _this._decoration_image$_image; if (t1 != null) if (value.image.isCloneOf$1(t1.image)) { t2 = t1.scale; t1 = t2 === t2 && value.debugLabel == t1.debugLabel; } else t1 = false; else t1 = false; if (t1) { value.image.dispose$0(0); return; } t1 = _this._decoration_image$_image; if (t1 != null) t1.image.dispose$0(0); _this._decoration_image$_image = value; if (!synchronousCall) _this._decoration_image$_onChanged.call$0(); }, dispose$0(_) { var t1 = this._decoration_image$_image; if (t1 != null) t1.image.dispose$0(0); this._decoration_image$_image = null; }, toString$0(_) { return "DecorationImagePainter(stream: " + A.S(this._decoration_image$_imageStream) + ", image: " + A.S(this._decoration_image$_image) + ") for " + this._details.toString$0(0); } }; A.paintImage_closure.prototype = { call$1(timeStamp) { var t2, t3, t4, t1 = $._pendingImageSizeInfo; t1 = t1.get$values(t1); $._lastFrameImageSizeInfo = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")); t1 = $._pendingImageSizeInfo; if (t1._length === 0) return; t2 = type$.String; t3 = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Object); for (t1 = t1.get$values(t1), t4 = A._instanceType(t1), t4 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t4._eval$1("@<1>")._bind$1(t4._rest[1])._eval$1("MappedIterator<1,2>")); t4.moveNext$0();) { t1 = t4.__internal$_current; t3.$indexSet(0, t1.source, t1.toJson$0()); } A.postEvent("Flutter.ImageSizesForFrame", t3); $._pendingImageSizeInfo = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.ImageSizeInfo); }, $signature: 22 }; A.EdgeInsetsGeometry.prototype = { get$horizontal() { var _this = this; return _this.get$_left(_this) + _this.get$_right(_this) + _this.get$_edge_insets$_start(_this) + _this.get$_edge_insets$_end(); }, along$1(axis) { var _this = this; switch (axis.index) { case 0: return _this.get$horizontal(); case 1: return _this.get$_top(_this) + _this.get$_bottom(_this); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, add$1(_, other) { var _this = this; return new A._MixedEdgeInsets(_this.get$_left(_this) + other.get$_left(other), _this.get$_right(_this) + other.get$_right(other), _this.get$_edge_insets$_start(_this) + other.get$_edge_insets$_start(other), _this.get$_edge_insets$_end() + other.get$_edge_insets$_end(), _this.get$_top(_this) + other.get$_top(other), _this.get$_bottom(_this) + other.get$_bottom(other)); }, clamp$2(_, min, max) { var _this = this; return new A._MixedEdgeInsets(J.clamp$2$n(_this.get$_left(_this), min.left, max._left), J.clamp$2$n(_this.get$_right(_this), min.right, max._right), J.clamp$2$n(_this.get$_edge_insets$_start(_this), 0, max._edge_insets$_start), J.clamp$2$n(_this.get$_edge_insets$_end(), 0, max._edge_insets$_end), J.clamp$2$n(_this.get$_top(_this), min.top, max._top), J.clamp$2$n(_this.get$_bottom(_this), min.bottom, max._bottom)); }, toString$0(_) { var _this = this; if (_this.get$_edge_insets$_start(_this) === 0 && _this.get$_edge_insets$_end() === 0) { if (_this.get$_left(_this) === 0 && _this.get$_right(_this) === 0 && _this.get$_top(_this) === 0 && _this.get$_bottom(_this) === 0) return "EdgeInsets.zero"; if (_this.get$_left(_this) == _this.get$_right(_this) && _this.get$_right(_this) == _this.get$_top(_this) && _this.get$_top(_this) == _this.get$_bottom(_this)) return "EdgeInsets.all(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ")"; return "EdgeInsets(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_right(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ")"; } if (_this.get$_left(_this) === 0 && _this.get$_right(_this) === 0) return "EdgeInsetsDirectional(" + J.toStringAsFixed$1$n(_this.get$_edge_insets$_start(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_edge_insets$_end(), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ")"; return "EdgeInsets(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_right(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ") + EdgeInsetsDirectional(" + J.toStringAsFixed$1$n(_this.get$_edge_insets$_start(_this), 1) + ", 0.0, " + J.toStringAsFixed$1$n(_this.get$_edge_insets$_end(), 1) + ", 0.0)"; }, $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.EdgeInsetsGeometry && other.get$_left(other) == _this.get$_left(_this) && other.get$_right(other) == _this.get$_right(_this) && other.get$_edge_insets$_start(other) == _this.get$_edge_insets$_start(_this) && other.get$_edge_insets$_end() == _this.get$_edge_insets$_end() && other.get$_top(other) == _this.get$_top(_this) && other.get$_bottom(other) == _this.get$_bottom(_this); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$_left(_this), _this.get$_right(_this), _this.get$_edge_insets$_start(_this), _this.get$_edge_insets$_end(), _this.get$_top(_this), _this.get$_bottom(_this), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.EdgeInsets.prototype = { get$_left(_) { return this.left; }, get$_top(_) { return this.top; }, get$_right(_) { return this.right; }, get$_bottom(_) { return this.bottom; }, get$_edge_insets$_start(_) { return 0; }, get$_edge_insets$_end() { return 0; }, inflateRect$1(rect) { var _this = this; return new A.Rect(rect.left - _this.left, rect.top - _this.top, rect.right + _this.right, rect.bottom + _this.bottom); }, deflateRect$1(rect) { var _this = this; return new A.Rect(rect.left + _this.left, rect.top + _this.top, rect.right - _this.right, rect.bottom - _this.bottom); }, add$1(_, other) { if (other instanceof A.EdgeInsets) return this.$add(0, other); return this.super$EdgeInsetsGeometry$add(0, other); }, clamp$2(_, min, max) { var _this = this; return new A.EdgeInsets(J.clamp$2$n(_this.left, min.left, max._left), J.clamp$2$n(_this.top, min.top, max._top), J.clamp$2$n(_this.right, min.right, max._right), J.clamp$2$n(_this.bottom, min.bottom, max._bottom)); }, $sub(_, other) { var _this = this; return new A.EdgeInsets(_this.left - other.left, _this.top - other.top, _this.right - other.right, _this.bottom - other.bottom); }, $add(_, other) { var _this = this; return new A.EdgeInsets(_this.left + other.left, _this.top + other.top, _this.right + other.right, _this.bottom + other.bottom); }, $mul(_, other) { var _this = this; return new A.EdgeInsets(_this.left * other, _this.top * other, _this.right * other, _this.bottom * other); }, $div(_, other) { var _this = this; return new A.EdgeInsets(_this.left / other, _this.top / other, _this.right / other, _this.bottom / other); }, resolve$1(_, direction) { return this; }, copyWith$4$bottom$left$right$top(bottom, left, right, $top) { var _this = this, t1 = left == null ? _this.left : left, t2 = $top == null ? _this.top : $top, t3 = right == null ? _this.right : right; return new A.EdgeInsets(t1, t2, t3, bottom == null ? _this.bottom : bottom); }, copyWith$1$bottom(bottom) { return this.copyWith$4$bottom$left$right$top(bottom, null, null, null); }, copyWith$2$bottom$top(bottom, $top) { return this.copyWith$4$bottom$left$right$top(bottom, null, null, $top); }, copyWith$2$left$right(left, right) { return this.copyWith$4$bottom$left$right$top(null, left, right, null); } }; A.EdgeInsetsDirectional.prototype = { get$_edge_insets$_start(_) { return this.start; }, get$_top(_) { return this.top; }, get$_edge_insets$_end() { return this.end; }, get$_bottom(_) { return this.bottom; }, get$_left(_) { return 0; }, get$_right(_) { return 0; }, add$1(_, other) { if (other instanceof A.EdgeInsetsDirectional) return this.$add(0, other); return this.super$EdgeInsetsGeometry$add(0, other); }, $sub(_, other) { var _this = this; return new A.EdgeInsetsDirectional(_this.start - other.start, _this.top - other.top, _this.end - other.end, _this.bottom - other.bottom); }, $add(_, other) { var _this = this; return new A.EdgeInsetsDirectional(_this.start + other.start, _this.top + other.top, _this.end + other.end, _this.bottom + other.bottom); }, $mul(_, other) { var _this = this; return new A.EdgeInsetsDirectional(_this.start * other, _this.top * other, _this.end * other, _this.bottom * other); }, $div(_, other) { var _this = this; return new A.EdgeInsetsDirectional(_this.start / other, _this.top / other, _this.end / other, _this.bottom / other); }, resolve$1(_, direction) { var _this = this; switch (direction.index) { case 0: return new A.EdgeInsets(_this.end, _this.top, _this.start, _this.bottom); case 1: return new A.EdgeInsets(_this.start, _this.top, _this.end, _this.bottom); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._MixedEdgeInsets.prototype = { $mul(_, other) { var _this = this; return new A._MixedEdgeInsets(_this._left * other, _this._right * other, _this._edge_insets$_start * other, _this._edge_insets$_end * other, _this._top * other, _this._bottom * other); }, $div(_, other) { var _this = this; return new A._MixedEdgeInsets(_this._left / other, _this._right / other, _this._edge_insets$_start / other, _this._edge_insets$_end / other, _this._top / other, _this._bottom / other); }, resolve$1(_, direction) { var _this = this; switch (direction.index) { case 0: return new A.EdgeInsets(_this._edge_insets$_end + _this._left, _this._top, _this._edge_insets$_start + _this._right, _this._bottom); case 1: return new A.EdgeInsets(_this._edge_insets$_start + _this._left, _this._top, _this._edge_insets$_end + _this._right, _this._bottom); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_left(receiver) { return this._left; }, get$_right(receiver) { return this._right; }, get$_edge_insets$_start(receiver) { return this._edge_insets$_start; }, get$_edge_insets$_end() { return this._edge_insets$_end; }, get$_top(receiver) { return this._top; }, get$_bottom(receiver) { return this._bottom; } }; A.FractionalOffset.prototype = { $sub(_, other) { if (!(other instanceof A.FractionalOffset)) return this.super$Alignment$$sub(0, other); return A.FractionalOffset$((this.x + 1) / 2 - (other.x + 1) / 2, (this.y + 1) / 2 - (other.y + 1) / 2); }, $add(_, other) { if (!(other instanceof A.FractionalOffset)) return this.super$Alignment$$add(0, other); return A.FractionalOffset$((this.x + 1) / 2 + (other.x + 1) / 2, (this.y + 1) / 2 + (other.y + 1) / 2); }, $mul(_, other) { return A.FractionalOffset$((this.x + 1) / 2 * other, (this.y + 1) / 2 * other); }, $div(_, other) { return A.FractionalOffset$((this.x + 1) / 2 / other, (this.y + 1) / 2 / other); }, toString$0(_) { return "FractionalOffset(" + B.JSNumber_methods.toStringAsFixed$1((this.x + 1) / 2, 1) + ", " + B.JSNumber_methods.toStringAsFixed$1((this.y + 1) / 2, 1) + ")"; } }; A._ColorsAndStops.prototype = {}; A._sample_closure.prototype = { call$1(s) { return s <= this.t; }, $signature: 2205 }; A._interpolateColorsAndStops_closure.prototype = { call$1($stop) { var _this = this, t1 = A.Color_lerp(A._sample(_this.aColors, _this.aStops, $stop), A._sample(_this.bColors, _this.bStops, $stop), _this.t); t1.toString; return t1; }, $signature: 2203 }; A.Gradient.prototype = { _impliedStops$0() { var separation, _list, index, t1 = this.stops; if (t1 != null) return t1; t1 = this.colors.length; separation = 1 / (t1 - 1); _list = J.JSArray_JSArray$allocateFixed(t1, type$.double); for (index = 0; index < t1; ++index) _list[index] = index * separation; return _list; } }; A.LinearGradient.prototype = { createShader$2$textDirection(_, rect, textDirection) { var _this = this, t1 = _this.begin.resolve$1(0, textDirection).withinRect$1(rect), t2 = _this.end.resolve$1(0, textDirection).withinRect$1(rect), t3 = _this._impliedStops$0(); return A.Gradient_Gradient$linear(t1, t2, _this.colors, t3, _this.tileMode, null); }, scale$1(_, factor) { var _this = this, t1 = _this.colors, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Color>"); return new A.LinearGradient(_this.begin, _this.end, _this.tileMode, A.List_List$of(new A.MappedListIterable(t1, new A.LinearGradient_scale_closure(factor), t2), true, t2._eval$1("ListIterable.E")), _this.stops, null); }, lerpFrom$2(a, t) { var t1 = A.LinearGradient_lerp(a, this, t); return t1; }, lerpTo$2(b, t) { var t1 = A.LinearGradient_lerp(this, b, t); return t1; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.LinearGradient) if (J.$eq$(other.begin, _this.begin)) if (J.$eq$(other.end, _this.end)) if (other.tileMode === _this.tileMode) t1 = A.listEquals0(other.colors, _this.colors) && A.listEquals0(other.stops, _this.stops); else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = A.Object_hashAll(_this.colors), t2 = _this.stops; t2 = t2 == null ? null : A.Object_hashAll(t2); return A.Object_hash(_this.begin, _this.end, _this.tileMode, _this.transform, t1, t2, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this, t1 = A._setArrayType(["begin: " + A.S(_this.begin), "end: " + A.S(_this.end), "colors: " + A.S(_this.colors)], type$.JSArray_String), t2 = _this.stops; if (t2 != null) t1.push("stops: " + A.S(t2)); t1.push("tileMode: " + _this.tileMode.toString$0(0)); return "LinearGradient(" + B.JSArray_methods.join$1(t1, ", ") + ")"; } }; A.LinearGradient_scale_closure.prototype = { call$1(color) { var t1 = A.Color_lerp(null, color, this.factor); t1.toString; return t1; }, $signature: 357 }; A.ImageCache.prototype = { clear$0(_) { var t3, t4, _this = this, t1 = _this._pendingImages, t2 = _this._image_cache$_cache; A.Timeline_instantSync("ImageCache.clear", A.LinkedHashMap_LinkedHashMap$_literal(["pendingImages", t1._length, "keepAliveImages", t2._length, "liveImages", _this._liveImages._length, "currentSizeInBytes", _this._currentSizeBytes], type$.String, type$.dynamic)); for (t3 = t2.get$values(t2), t4 = A._instanceType(t3), t4 = new A.MappedIterator(J.get$iterator$ax(t3.__internal$_iterable), t3._f, t4._eval$1("@<1>")._bind$1(t4._rest[1])._eval$1("MappedIterator<1,2>")); t4.moveNext$0();) t4.__internal$_current.dispose$0(0); t2.clear$0(0); t1.clear$0(0); _this._currentSizeBytes = 0; }, evict$1(key) { var t1, t2, pendingImage, _this = this, _s16_ = "ImageCache.evict", image = _this._liveImages.remove$1(0, key); if (image != null) { t1 = image.completer; t2 = A._lateReadCheck(image.___LiveImage__handleRemove, "_handleRemove"); if (t1._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); B.JSArray_methods.remove$1(t1._onLastListenerRemovedCallbacks, t2); image.super$_CachedImageBase$dispose(0); } pendingImage = _this._pendingImages.remove$1(0, key); if (pendingImage != null) { A.Timeline_instantSync(_s16_, A.LinkedHashMap_LinkedHashMap$_literal(["type", "pending"], type$.String, type$.dynamic)); pendingImage.completer.removeListener$1(0, pendingImage.listener); return true; } image = _this._image_cache$_cache.remove$1(0, key); if (image != null) { A.Timeline_instantSync(_s16_, A.LinkedHashMap_LinkedHashMap$_literal(["type", "keepAlive", "sizeInBytes", image.sizeBytes], type$.String, type$.dynamic)); t1 = _this._currentSizeBytes; t2 = image.sizeBytes; t2.toString; _this._currentSizeBytes = t1 - t2; image.dispose$0(0); return true; } A.Timeline_instantSync(_s16_, A.LinkedHashMap_LinkedHashMap$_literal(["type", "miss"], type$.String, type$.dynamic)); return false; }, _touch$3(key, image, timelineTask) { var t2, _this = this, t1 = image.sizeBytes; if (t1 != null && t1 <= 104857600 && true) { t2 = _this._currentSizeBytes; t1.toString; _this._currentSizeBytes = t2 + t1; _this._image_cache$_cache.$indexSet(0, key, image); _this._checkCacheSize$1(timelineTask); } else image.dispose$0(0); }, _trackLiveImage$3(key, completer, sizeBytes) { var t1 = this._liveImages.putIfAbsent$2(0, key, new A.ImageCache__trackLiveImage_closure(this, completer, key)); if (t1.sizeBytes == null) t1.sizeBytes = sizeBytes; }, putIfAbsent$3$onError(_, key, loader, onError) { var error, stackTrace, t2, timelineTask, t3, t4, t5, t6, result, image, liveImage, exception, listenerTask, streamListener, _this = this, _null = null, t1 = {}; t1.listenerTask = t1.timelineTask = null; t2 = type$.JSArray_nullable__AsyncBlock; timelineTask = new A.TimelineTask(_null, 0, A._setArrayType([], t2)); t3 = type$.String; t4 = type$.dynamic; timelineTask.start$2$arguments(0, "ImageCache.putIfAbsent", A.LinkedHashMap_LinkedHashMap$_literal(["key", J.toString$0$(key)], t3, t4)); t1.timelineTask = timelineTask; t5 = _this._pendingImages; t6 = t5.$index(0, key); result = t6 == null ? _null : t6.completer; t1.result = result; if (result != null) { timelineTask.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["result", "pending"], t3, t4)); return result; } t6 = _this._image_cache$_cache; image = t6.remove$1(0, key); if (image != null) { timelineTask.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["result", "keepAlive"], t3, t4)); t1 = image.completer; _this._trackLiveImage$3(key, t1, image.sizeBytes); t6.$indexSet(0, key, image); return t1; } liveImage = _this._liveImages.$index(0, key); if (liveImage != null) { t1 = liveImage.completer; t2 = liveImage.sizeBytes; if (t1._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t5 = new A.ImageStreamCompleterHandle(t1); t5.ImageStreamCompleterHandle$_$1(t1); _this._touch$3(key, new A._CachedImage(t1, t2, t5), timelineTask); timelineTask.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["result", "keepAlive"], t3, t4)); return t1; } try { result = t1.result = loader.call$0(); _this._trackLiveImage$3(key, result, _null); t3 = result; } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); t1 = t1.timelineTask; t1.toString; t1.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["result", "error", "error", J.toString$0$(error), "stackTrace", J.toString$0$(stackTrace)], t3, t4)); onError.call$2(error, stackTrace); return _null; } listenerTask = new A.TimelineTask(timelineTask, 0, A._setArrayType([], t2)); listenerTask.start$1(0, "listener"); t1.listenerTask = listenerTask; t1.listenedOnce = false; t1.untrackedPendingImage = null; streamListener = new A.ImageStreamListener(new A.ImageCache_putIfAbsent_listener(t1, _this, key), _null, _null); t5.$indexSet(0, key, new A._PendingImage(t3, streamListener)); t1.result.addListener$1(0, streamListener); return t1.result; }, containsKey$1(_, key) { return this._pendingImages.$index(0, key) != null || this._image_cache$_cache.$index(0, key) != null; }, _checkCacheSize$1(timelineTask) { var t1, t2, t3, t4, it, key, image, t5, _this = this, _s11_ = "evictedKeys", finishArgs = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), checkCacheTask = new A.TimelineTask(timelineTask, 0, A._setArrayType([], type$.JSArray_nullable__AsyncBlock)); checkCacheTask.start$1(0, "checkCacheSize"); finishArgs.$indexSet(0, _s11_, A._setArrayType([], type$.JSArray_String)); t1 = _this._image_cache$_cache; finishArgs.$indexSet(0, "currentSize", t1._length); finishArgs.$indexSet(0, "currentSizeBytes", _this._currentSizeBytes); t2 = type$.List_String; t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); while (true) { if (!(_this._currentSizeBytes > 104857600 || t1._length > 1000)) break; t4 = new A.LinkedHashMapKeyIterable(t1, t3); it = t4.get$iterator(t4); if (!it.moveNext$0()) A.throwExpression(A.IterableElementError_noElement()); key = it.get$current(it); image = t1.$index(0, key); t4 = _this._currentSizeBytes; t5 = image.sizeBytes; t5.toString; _this._currentSizeBytes = t4 - t5; image.dispose$0(0); t1.remove$1(0, key); J.add$1$ax(t2._as(finishArgs.$index(0, _s11_)), J.toString$0$(key)); } finishArgs.$indexSet(0, "endSize", t1._length); finishArgs.$indexSet(0, "endSizeBytes", _this._currentSizeBytes); checkCacheTask.finish$1$arguments(0, finishArgs); } }; A.ImageCache__trackLiveImage_closure.prototype = { call$0() { return A._LiveImage$(this.completer, new A.ImageCache__trackLiveImage__closure(this.$this, this.key)); }, $signature: 2200 }; A.ImageCache__trackLiveImage__closure.prototype = { call$0() { this.$this._liveImages.remove$1(0, this.key); }, $signature: 0 }; A.ImageCache_putIfAbsent_listener.prototype = { call$2(info, syncCall) { var t1, sizeBytes, t2, t3, image, pendingImage, t4, t5; if (info != null) { t1 = info.image; sizeBytes = t1.get$height(t1) * t1.get$width(t1) * 4; t1.dispose$0(0); } else sizeBytes = null; t1 = this._box_0; t2 = t1.result; if (t2._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t3 = new A.ImageStreamCompleterHandle(t2); t3.ImageStreamCompleterHandle$_$1(t2); image = new A._CachedImage(t2, sizeBytes, t3); t3 = this.$this; t2 = this.key; t3._trackLiveImage$3(t2, t1.result, sizeBytes); if (t1.untrackedPendingImage == null) t3._touch$3(t2, image, t1.listenerTask); else image.dispose$0(0); pendingImage = t1.untrackedPendingImage; if (pendingImage == null) pendingImage = t3._pendingImages.remove$1(0, t2); if (pendingImage != null) pendingImage.completer.removeListener$1(0, pendingImage.listener); t2 = t1.listenedOnce; if (!t2) { t2 = t1.listenerTask; t2.toString; t4 = type$.String; t5 = type$.dynamic; t2.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["syncCall", syncCall, "sizeInBytes", sizeBytes], t4, t5)); t2 = t1.timelineTask; t2.toString; t2.finish$1$arguments(0, A.LinkedHashMap_LinkedHashMap$_literal(["currentSizeBytes", t3._currentSizeBytes, "currentSize", t3._image_cache$_cache._length], t4, t5)); } t1.listenedOnce = true; }, $signature: 2193 }; A._CachedImageBase.prototype = { dispose$0(_) { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._CachedImageBase_dispose_closure(this)); } }; A._CachedImageBase_dispose_closure.prototype = { call$1(timeStamp) { var t1 = this.$this, t2 = t1.handle; if (t2 != null) t2.dispose$0(0); t1.handle = null; }, $signature: 22 }; A._CachedImage.prototype = {}; A._LiveImage.prototype = { _LiveImage$3$sizeBytes(completer, handleRemove, sizeBytes) { var t1 = new A._LiveImage_closure(this, handleRemove); this.___LiveImage__handleRemove = t1; t1 = A._lateReadCheck(t1, "_handleRemove"); if (completer._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); completer._onLastListenerRemovedCallbacks.push(t1); }, dispose$0(_) { var t1 = this.completer, t2 = A._lateReadCheck(this.___LiveImage__handleRemove, "_handleRemove"); if (t1._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); B.JSArray_methods.remove$1(t1._onLastListenerRemovedCallbacks, t2); this.super$_CachedImageBase$dispose(0); }, toString$0(_) { return "#" + A.shortHash(this); } }; A._LiveImage_closure.prototype = { call$0() { var t1, t2, t3; this.handleRemove.call$0(); t1 = this.$this; t2 = t1.completer; t3 = A._lateReadCheck(t1.___LiveImage__handleRemove, "_handleRemove"); if (t2._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); B.JSArray_methods.remove$1(t2._onLastListenerRemovedCallbacks, t3); t1.super$_CachedImageBase$dispose(0); }, $signature: 0 }; A._PendingImage.prototype = {}; A.ImageConfiguration.prototype = { copyWith$1$size(size) { var _this = this, t1 = size == null ? _this.size : size; return new A.ImageConfiguration(_this.bundle, _this.devicePixelRatio, _this.locale, _this.textDirection, t1, _this.platform); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ImageConfiguration && other.bundle == _this.bundle && other.devicePixelRatio == _this.devicePixelRatio && J.$eq$(other.locale, _this.locale) && other.textDirection == _this.textDirection && J.$eq$(other.size, _this.size) && other.platform == _this.platform; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.bundle, _this.devicePixelRatio, _this.locale, _this.size, _this.platform, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var hasArguments, t2, _this = this, _s19_ = "ImageConfiguration(", t1 = _this.bundle; if (t1 != null) { t1 = _s19_ + ("bundle: " + t1.toString$0(0)); hasArguments = true; } else { t1 = _s19_; hasArguments = false; } t2 = _this.devicePixelRatio; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("devicePixelRatio: " + B.JSNumber_methods.toStringAsFixed$1(t2, 1)); t1 = t2; hasArguments = true; } t2 = _this.locale; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("locale: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.textDirection; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("textDirection: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.size; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("size: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.platform; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("platform: " + t2._core$_name); t1 = t2; } t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.ImageProvider.prototype = { resolve$1(_, configuration) { var stream = new A.ImageStream(); this._createErrorHandlerAndKey$3(configuration, new A.ImageProvider_resolve_closure(this, configuration, stream), new A.ImageProvider_resolve_closure0(this, configuration, stream)); return stream; }, _createErrorHandlerAndKey$3(configuration, successCallback, errorCallback) { var handleError, key, error, stackTrace, exception, t1 = {}; t1.obtainedKey = null; t1.didError = false; handleError = new A.ImageProvider__createErrorHandlerAndKey_handleError(t1, errorCallback); key = null; try { key = this.obtainKey$1(configuration); } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); handleError.call$2(error, stackTrace); return; } J.then$1$1$x(key, new A.ImageProvider__createErrorHandlerAndKey_closure(t1, this, successCallback, handleError), type$.void).catchError$1(handleError); }, resolveStreamForKey$4(configuration, stream, key, handleError) { var completer, _s11_ = "_imageCache"; if (stream._image_stream$_completer != null) { A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, _s11_).putIfAbsent$3$onError(0, key, new A.ImageProvider_resolveStreamForKey_closure(stream), handleError); return; } completer = A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, _s11_).putIfAbsent$3$onError(0, key, new A.ImageProvider_resolveStreamForKey_closure0(this, key), handleError); if (completer != null) stream.setCompleter$1(completer); }, toString$0(_) { return "ImageConfiguration()"; } }; A.ImageProvider_resolve_closure.prototype = { call$2(key, errorHandler) { this.$this.resolveStreamForKey$4(this.configuration, this.stream, key, errorHandler); }, $signature() { return A._instanceType(this.$this)._eval$1("~(ImageProvider.T,~(Object,StackTrace?))"); } }; A.ImageProvider_resolve_closure0.prototype = { call$3(key, exception, stack) { return this.$call$body$ImageProvider_resolve_closure(key, exception, stack); }, $call$body$ImageProvider_resolve_closure(key, exception, stack) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(null, $async$call$3); case 2: // returning from await. t1 = $async$self.stream; if (t1._image_stream$_completer == null) t1.setCompleter$1(new A._ErrorImageCompleter(A._setArrayType([], type$.JSArray_ImageStreamListener), A._setArrayType([], type$.JSArray_of_void_Function))); t1 = t1._image_stream$_completer; t1.toString; t1.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("while resolving an image"), exception, null, true, stack); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature() { return A._instanceType(this.$this)._eval$1("Future<~>(ImageProvider.T?,Object,StackTrace?)"); } }; A.ImageProvider__createErrorHandlerAndKey_handleError.prototype = { $call$body$ImageProvider__createErrorHandlerAndKey_handleError(exception, stack) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._box_0; if (t1.didError) { // goto return $async$goto = 1; break; } $async$self.errorCallback.call$3(t1.obtainedKey, exception, stack); t1.didError = true; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, call$2(exception, stack) { return this.$call$body$ImageProvider__createErrorHandlerAndKey_handleError(exception, stack); }, $signature: 2191 }; A.ImageProvider__createErrorHandlerAndKey_closure.prototype = { call$1(key) { var error, stackTrace, exception, _this = this; _this._box_0.obtainedKey = key; try { _this.successCallback.call$2(key, _this.handleError); } catch (exception) { error = A.unwrapException(exception); stackTrace = A.getTraceFromException(exception); _this.handleError.call$2(error, stackTrace); } }, $signature() { return A._instanceType(this.$this)._eval$1("Null(ImageProvider.T)"); } }; A.ImageProvider_resolveStreamForKey_closure.prototype = { call$0() { var t1 = this.stream._image_stream$_completer; t1.toString; return t1; }, $signature: 633 }; A.ImageProvider_resolveStreamForKey_closure0.prototype = { call$0() { return this.$this.load$2(0, this.key, $.PaintingBinding__instance.get$instantiateImageCodec()); }, $signature: 633 }; A.AssetBundleImageKey.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.AssetBundleImageKey && other.bundle == _this.bundle && other.name == _this.name && other.scale === _this.scale; }, get$hashCode(_) { return A.Object_hash(this.bundle, this.name, this.scale, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "AssetBundleImageKey(bundle: " + A.S(this.bundle) + ', name: "' + A.S(this.name) + '", scale: ' + A.S(this.scale) + ")"; }, get$name(receiver) { return this.name; } }; A.AssetBundleImageProvider.prototype = { load$2(_, key, decode) { var t1 = this._loadAsync$2(key, decode), t2 = key.scale; return A.MultiFrameImageStreamCompleter$(null, t1, key.name, null, t2); }, _loadAsync$2(key, decode) { return this._loadAsync$body$AssetBundleImageProvider(key, decode); }, _loadAsync$body$AssetBundleImageProvider(key, decode) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], exception, data, $async$exception; var $async$_loadAsync$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start data = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait(key.bundle.load$1(0, key.name), $async$_loadAsync$2); case 7: // returning from await. data = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; if (A.unwrapException($async$exception) instanceof A.FlutterError) { A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, "_imageCache").evict$1(key); throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally if (data == null) { A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, "_imageCache").evict$1(key); throw A.wrapException(A.StateError$("Unable to read data")); } $async$returnValue = decode.call$1(J.asUint8List$0$x(J.get$buffer$x(data))); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_loadAsync$2, $async$completer); } }; A._ErrorImageCompleter.prototype = {}; A.AssetImage.prototype = { get$keyName() { return this.assetName; }, obtainKey$1(configuration) { var t2, t1 = {}, chosenBundle = configuration.bundle; if (chosenBundle == null) chosenBundle = $.$get$rootBundle(); t1.result = t1.completer = null; chosenBundle.loadStructuredData$1$2("AssetManifest.json", A.image_resolution_AssetImage__manifestParser$closure(), type$.nullable_Map_of_String_and_List_String).then$1$1(0, new A.AssetImage_obtainKey_closure(t1, this, configuration, chosenBundle), type$.void).catchError$1(new A.AssetImage_obtainKey_closure0(t1)); t2 = t1.result; if (t2 != null) return t2; t2 = new A._Future($.Zone__current, type$._Future_AssetBundleImageKey); t1.completer = new A._AsyncCompleter(t2, type$._AsyncCompleter_AssetBundleImageKey); return t2; }, _chooseVariant$3(main, config, candidates) { var mapping, t2, t3, t1 = config.devicePixelRatio; if (t1 == null || candidates == null || J.get$isEmpty$asx(candidates)) return main; mapping = A.SplayTreeMap$(type$.double, type$.String); for (t2 = J.get$iterator$ax(candidates); t2.moveNext$0();) { t3 = t2.get$current(t2); mapping.$indexSet(0, this._parseScale$1(t3), t3); } t1.toString; return this._findBestVariant$2(mapping, t1); }, _findBestVariant$2(candidates, value) { var t1, lower, upper; if (candidates._containsKey$1(value)) { t1 = candidates.$index(0, value); t1.toString; return t1; } lower = candidates.lastKeyBefore$1(value); upper = candidates.firstKeyAfter$1(value); if (lower == null) return candidates.$index(0, upper); if (upper == null) return candidates.$index(0, lower); if (value < 2 || value > (lower + upper) / 2) return candidates.$index(0, upper); else return candidates.$index(0, lower); }, _parseScale$1(key) { var assetUri, directoryPath, match, t1; if (key === this.assetName) return 1; assetUri = A.Uri_parse(key, 0, null); directoryPath = assetUri.get$pathSegments().length > 1 ? assetUri.get$pathSegments()[assetUri.get$pathSegments().length - 2] : ""; match = $.$get$AssetImage__extractRatioRegExp().firstMatch$1(directoryPath); if (match != null && match._match.length - 1 > 0) { t1 = match._match[1]; t1.toString; return A.double_parse(t1); } return 1; }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.AssetImage && other.get$keyName() === this.get$keyName() && true; }, get$hashCode(_) { return A.Object_hash(this.get$keyName(), this.bundle, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "AssetImage(bundle: " + A.S(this.bundle) + ', name: "' + this.get$keyName() + '")'; } }; A.AssetImage_obtainKey_closure.prototype = { call$1(manifest) { var key, _this = this, t1 = _this.$this, t2 = t1.get$keyName(), t3 = manifest == null ? null : J.$index$asx(manifest, t1.get$keyName()); t3 = t1._chooseVariant$3(t2, _this.configuration, t3); t3.toString; key = new A.AssetBundleImageKey(_this.chosenBundle, t3, t1._parseScale$1(t3)); t1 = _this._box_0; t2 = t1.completer; if (t2 != null) t2.complete$1(0, key); else t1.result = new A.SynchronousFuture(key, type$.SynchronousFuture_AssetBundleImageKey); }, $signature: 2189 }; A.AssetImage_obtainKey_closure0.prototype = { call$2(error, stack) { this._box_0.completer.completeError$2(error, stack); }, $signature: 120 }; A.ImageInfo.prototype = { clone$0(_) { return new A.ImageInfo(this.image.clone$0(0), this.scale, this.debugLabel); }, dispose$0(_) { this.image.dispose$0(0); }, toString$0(_) { var t1 = this.debugLabel; t1 = t1 != null ? t1 + " " : ""; return t1 + A.S(this.image) + " @ " + A.debugFormatDouble(this.scale) + "x"; }, get$hashCode(_) { return A.Object_hash(this.image, this.scale, this.debugLabel, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ImageInfo && other.image == _this.image && other.scale === _this.scale && other.debugLabel == _this.debugLabel; } }; A.ImageStreamListener.prototype = { get$hashCode(_) { return A.Object_hash(this.onImage, this.onChunk, this.onError, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ImageStreamListener && J.$eq$(other.onImage, _this.onImage) && J.$eq$(other.onChunk, _this.onChunk) && J.$eq$(other.onError, _this.onError); }, onImage$2(arg0, arg1) { return this.onImage.call$2(arg0, arg1); } }; A.ImageChunkEvent.prototype = {}; A.ImageStream.prototype = { setCompleter$1(value) { var t1, _this = this; _this._image_stream$_completer = value; t1 = _this._image_stream$_listeners; if (t1 != null) { _this._image_stream$_listeners = null; value._addingInitialListeners = true; B.JSArray_methods.forEach$1(t1, value.get$addListener(value)); _this._image_stream$_completer._addingInitialListeners = false; } }, addListener$1(_, listener) { var t1 = this._image_stream$_completer; if (t1 != null) return t1.addListener$1(0, listener); t1 = this._image_stream$_listeners; (t1 == null ? this._image_stream$_listeners = A._setArrayType([], type$.JSArray_ImageStreamListener) : t1).push(listener); }, removeListener$1(_, listener) { var i, t1 = this._image_stream$_completer; if (t1 != null) return t1.removeListener$1(0, listener); for (i = 0; t1 = this._image_stream$_listeners, i < t1.length; ++i) if (J.$eq$(t1[i], listener)) { t1 = this._image_stream$_listeners; t1.toString; B.JSArray_methods.removeAt$1(t1, i); break; } } }; A.ImageStreamCompleterHandle.prototype = { ImageStreamCompleterHandle$_$1(_completer) { ++this._image_stream$_completer._keepAliveHandles; }, dispose$0(_) { var t1 = this._image_stream$_completer; --t1._keepAliveHandles; t1._maybeDispose$0(); this._image_stream$_completer = null; } }; A.ImageStreamCompleter.prototype = { addListener$1(_, listener) { var exception, stack, newException, newStack, t1, t2, exception0, _this = this; if (_this._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); _this._hadAtLeastOneListener = true; _this._image_stream$_listeners.push(listener); t1 = _this._currentImage; if (t1 != null) try { t1 = t1.clone$0(0); t2 = _this._addingInitialListeners; listener.onImage.call$2(t1, !t2); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); _this.reportError$3$context$exception$stack(A.ErrorDescription$("by a synchronously-called image listener"), exception, stack); } t1 = _this._currentError; if (t1 != null && listener.onError != null) try { t2 = listener.onError; t2.toString; t2.call$2(t1.exception, t1.stack); } catch (exception) { newException = A.unwrapException(exception); newStack = A.getTraceFromException(exception); if (!J.$eq$(newException, _this._currentError.exception)) A.FlutterError_reportError(new A.FlutterErrorDetails(newException, newStack, "image resource service", A.ErrorDescription$("by a synchronously-called image error listener"), null, null, false)); } }, removeListener$1(_, listener) { var t1, i, callbacks, t2, _i, _this = this; if (_this._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); for (t1 = _this._image_stream$_listeners, i = 0; i < t1.length; ++i) if (J.$eq$(t1[i], listener)) { B.JSArray_methods.removeAt$1(t1, i); break; } if (t1.length === 0) { t1 = _this._onLastListenerRemovedCallbacks; callbacks = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); for (t2 = callbacks.length, _i = 0; _i < callbacks.length; callbacks.length === t2 || (0, A.throwConcurrentModificationError)(callbacks), ++_i) callbacks[_i].call$0(); B.JSArray_methods.set$length(t1, 0); _this._maybeDispose$0(); } }, _maybeDispose$0() { var t1, _this = this; if (!_this._hadAtLeastOneListener || _this._image_stream$_disposed || _this._image_stream$_listeners.length !== 0 || _this._keepAliveHandles !== 0) return; t1 = _this._currentImage; if (t1 != null) t1.image.dispose$0(0); _this._currentImage = null; _this._image_stream$_disposed = true; }, setImage$1(image) { var listener, exception, stack, t1, localListeners, _i, exception0, _this = this; if (_this._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t1 = _this._currentImage; if (t1 != null) t1.image.dispose$0(0); _this._currentImage = image; t1 = _this._image_stream$_listeners; if (t1.length === 0) return; localListeners = A.List_List$of(t1, true, type$.ImageStreamListener); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { listener = localListeners[_i]; try { listener.onImage$2(new A.ImageInfo(image.image.clone$0(0), image.scale, image.debugLabel), false); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); _this.reportError$3$context$exception$stack(A.ErrorDescription$("by an image listener"), exception, stack); } } }, reportError$5$context$exception$informationCollector$silent$stack(context, exception, informationCollector, silent, stack) { var handled, errorListener, newException, newStack, t1, t2, localErrorListeners, _i, exception0, t3, _s22_ = "image resource service"; this._currentError = new A.FlutterErrorDetails(exception, stack, _s22_, context, null, informationCollector, silent); t1 = this._image_stream$_listeners; t2 = type$.WhereTypeIterable_of_void_Function_2_Object_and_nullable_StackTrace; localErrorListeners = A.List_List$of(new A.WhereTypeIterable(new A.MappedListIterable(t1, new A.ImageStreamCompleter_reportError_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,~(Object,StackTrace?)?>")), t2), true, t2._eval$1("Iterable.E")); handled = false; for (t1 = localErrorListeners.length, _i = 0; _i < t1; ++_i) { errorListener = localErrorListeners[_i]; try { errorListener.call$2(exception, stack); handled = true; } catch (exception0) { newException = A.unwrapException(exception0); newStack = A.getTraceFromException(exception0); if (!J.$eq$(newException, exception)) { t2 = A.ErrorDescription$("when reporting an error to an image listener"); t3 = $.$get$FlutterError_onError(); if (t3 != null) t3.call$1(new A.FlutterErrorDetails(newException, newStack, _s22_, t2, null, null, false)); } } } if (!handled) { t1 = this._currentError; t1.toString; A.FlutterError_reportError(t1); } }, reportError$3$context$exception$stack(context, exception, stack) { return this.reportError$5$context$exception$informationCollector$silent$stack(context, exception, null, false, stack); }, reportImageChunkEvent$1($event) { var t1, t2, localListeners, _i; if (this._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t1 = this._image_stream$_listeners; if (t1.length !== 0) { t2 = type$.WhereTypeIterable_of_void_Function_ImageChunkEvent; localListeners = A.List_List$of(new A.WhereTypeIterable(new A.MappedListIterable(t1, new A.ImageStreamCompleter_reportImageChunkEvent_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,~(ImageChunkEvent)?>")), t2), true, t2._eval$1("Iterable.E")); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) localListeners[_i].call$1($event); } } }; A.ImageStreamCompleter_reportError_closure.prototype = { call$1(listener) { return listener.onError; }, $signature: 2186 }; A.ImageStreamCompleter_reportImageChunkEvent_closure.prototype = { call$1(listener) { return listener.onChunk; }, $signature: 2185 }; A.OneFrameImageStreamCompleter.prototype = { OneFrameImageStreamCompleter$2$informationCollector(image, informationCollector) { image.then$1$2$onError(0, this.get$setImage(), new A.OneFrameImageStreamCompleter_closure(this, informationCollector), type$.void); } }; A.OneFrameImageStreamCompleter_closure.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving a single-frame image stream"), error, this.informationCollector, true, stack); }, $signature: 120 }; A.MultiFrameImageStreamCompleter.prototype = { MultiFrameImageStreamCompleter$5$chunkEvents$codec$debugLabel$informationCollector$scale(chunkEvents, codec, debugLabel, informationCollector, scale) { var _this = this; _this.debugLabel = debugLabel; codec.then$1$2$onError(0, _this.get$_handleCodecReady(), new A.MultiFrameImageStreamCompleter_closure(_this, informationCollector), type$.void); if (chunkEvents != null) _this._chunkSubscription = chunkEvents.listen$2$onError(0, _this.get$reportImageChunkEvent(), new A.MultiFrameImageStreamCompleter_closure0(_this, informationCollector)); }, _handleCodecReady$1(codec) { this._codec = codec; if (this._image_stream$_listeners.length !== 0) this._decodeNextFrameAndSchedule$0(); }, _handleAppFrame$1(timestamp) { var t1, t2, t3, completedCycles, _this = this, _s15_ = "_shownTimestamp"; _this._frameCallbackScheduled = false; if (_this._image_stream$_listeners.length === 0) return; t1 = _this._frameDuration; if (t1 != null) { t1 = A._lateReadCheck(_this.__MultiFrameImageStreamCompleter__shownTimestamp, _s15_); t2 = timestamp._duration; t1 = t1._duration; t3 = _this._frameDuration; t1 = t2 - t1 >= t3._duration; t2 = t3; } else { t2 = t1; t1 = true; } if (t1) { t1 = _this._nextFrame; _this._emitFrame$1(new A.ImageInfo(t1.get$image(t1).clone$0(0), _this._image_stream$_scale, _this.debugLabel)); _this.__MultiFrameImageStreamCompleter__shownTimestamp = timestamp; t1 = _this._nextFrame; _this._frameDuration = t1.get$duration(t1); t1 = _this._nextFrame; t1.get$image(t1).dispose$0(0); _this._nextFrame = null; t1 = _this._framesEmitted; t2 = _this._codec; completedCycles = B.JSInt_methods.$tdiv(t1, t2.get$frameCount(t2)); t1 = _this._codec; if (t1.get$repetitionCount(t1) !== -1) { t1 = _this._codec; t1 = completedCycles <= t1.get$repetitionCount(t1); } else t1 = true; if (t1) _this._decodeNextFrameAndSchedule$0(); return; } t2.toString; t1 = A._lateReadCheck(_this.__MultiFrameImageStreamCompleter__shownTimestamp, _s15_); _this._image_stream$_timer = A.Timer_Timer(new A.Duration(B.JSNumber_methods.round$0((t2._duration - (timestamp._duration - t1._duration)) * $._timeDilation)), new A.MultiFrameImageStreamCompleter__handleAppFrame_closure(_this)); }, _decodeNextFrameAndSchedule$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, $async$exception0; var $async$_decodeNextFrameAndSchedule$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._nextFrame; if (t1 != null) t1.get$image(t1).dispose$0(0); $async$self._nextFrame = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait($async$self._codec.getNextFrame$0(), $async$_decodeNextFrameAndSchedule$0); case 7: // returning from await. $async$self._nextFrame = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); $async$self.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving an image frame"), exception, $async$self._informationCollector, true, stack); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = $async$self._codec; if (t1.get$frameCount(t1) === 1) { if ($async$self._image_stream$_listeners.length === 0) { // goto return $async$goto = 1; break; } t1 = $async$self._nextFrame; $async$self._emitFrame$1(new A.ImageInfo(t1.get$image(t1).clone$0(0), $async$self._image_stream$_scale, $async$self.debugLabel)); t1 = $async$self._nextFrame; t1.get$image(t1).dispose$0(0); $async$self._nextFrame = null; // goto return $async$goto = 1; break; } $async$self._scheduleAppFrame$0(); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_decodeNextFrameAndSchedule$0, $async$completer); }, _scheduleAppFrame$0() { if (this._frameCallbackScheduled) return; this._frameCallbackScheduled = true; $.SchedulerBinding__instance.scheduleFrameCallback$1(this.get$_handleAppFrame()); }, _emitFrame$1(imageInfo) { this.setImage$1(imageInfo); ++this._framesEmitted; }, addListener$1(_, listener) { var t1, _this = this; if (_this._image_stream$_listeners.length === 0) { t1 = _this._codec; if (t1 != null) t1 = _this._currentImage == null || t1.get$frameCount(t1) > 1; else t1 = false; } else t1 = false; if (t1) _this._decodeNextFrameAndSchedule$0(); _this.super$ImageStreamCompleter$addListener(0, listener); }, removeListener$1(_, listener) { var t1, _this = this; _this.super$ImageStreamCompleter$removeListener(0, listener); if (_this._image_stream$_listeners.length === 0) { t1 = _this._image_stream$_timer; if (t1 != null) t1.cancel$0(0); _this._image_stream$_timer = null; } }, _maybeDispose$0() { var t1, _this = this; _this.super$ImageStreamCompleter$_maybeDispose(); if (_this._image_stream$_disposed) { t1 = _this._chunkSubscription; if (t1 != null) t1.onData$1(null); t1 = _this._chunkSubscription; if (t1 != null) t1.cancel$0(0); _this._chunkSubscription = null; } } }; A.MultiFrameImageStreamCompleter_closure.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving an image codec"), error, this.informationCollector, true, stack); }, $signature: 120 }; A.MultiFrameImageStreamCompleter_closure0.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("loading an image"), error, this.informationCollector, true, stack); }, $signature: 120 }; A.MultiFrameImageStreamCompleter__handleAppFrame_closure.prototype = { call$0() { this.$this._scheduleAppFrame$0(); }, $signature: 0 }; A._ImageChunkEvent_Object_Diagnosticable.prototype = {}; A._ImageStream_Object_Diagnosticable.prototype = {}; A._ImageStreamCompleter_Object_Diagnosticable.prototype = {}; A.Accumulator.prototype = { get$value(_) { return this._inline_span$_value; } }; A.InlineSpanSemanticsInformation.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.InlineSpanSemanticsInformation && other.text == _this.text && other.semanticsLabel == _this.semanticsLabel && other.recognizer == _this.recognizer && other.isPlaceholder === _this.isPlaceholder && A.listEquals0(other.stringAttributes, _this.stringAttributes); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.text, _this.semanticsLabel, _this.recognizer, _this.isPlaceholder, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "InlineSpanSemanticsInformation{text: " + A.S(this.text) + ", semanticsLabel: " + A.S(this.semanticsLabel) + ", recognizer: " + A.S(this.recognizer) + "}"; } }; A.InlineSpan.prototype = { getSpanForPosition$1(position) { var t1 = {}; t1.result = null; this.visitChildren$1(new A.InlineSpan_getSpanForPosition_closure(t1, position, new A.Accumulator())); return t1.result; }, toPlainText$1$includeSemanticsLabels(includeSemanticsLabels) { var t1, buffer = new A.StringBuffer(""); this.computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, true, includeSemanticsLabels); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, toPlainText$0() { return this.toPlainText$1$includeSemanticsLabels(true); }, codeUnitAt$1(_, index) { var t1 = {}; if (index < 0) return null; t1.result = null; this.visitChildren$1(new A.InlineSpan_codeUnitAt_closure(t1, index, new A.Accumulator())); return t1.result; }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.InlineSpan && J.$eq$(other.style, this.style); }, get$hashCode(_) { return J.get$hashCode$(this.style); } }; A.InlineSpan_getSpanForPosition_closure.prototype = { call$1(span) { var result = span.getSpanForPositionVisitor$2(this.position, this.offset); this._box_0.result = result; return result == null; }, $signature: 212 }; A.InlineSpan_codeUnitAt_closure.prototype = { call$1(span) { var result = span.codeUnitAtVisitor$2(this.index, this.offset); this._box_0.result = result; return result == null; }, $signature: 212 }; A.NotchedShape.prototype = {}; A.CircularNotchedRectangle.prototype = { getOuterPath$2(host, guest) { var t1, t2, notchRadius, a, b, t3, t4, t5, n2, p2xA, p2xB, p2yA, p2yB, p, cmp, i, t6; if (guest == null || !host.overlaps$1(guest)) { t1 = A.Path_Path(); t1.addRect$1(0, host); return t1; } t1 = guest.right; t2 = guest.left; notchRadius = (t1 - t2) / 2; a = -1 * notchRadius - 1; t1 = host.top; b = t1 - guest.get$center()._dy; t3 = b * b; t4 = a * a + t3; t5 = notchRadius * notchRadius; n2 = Math.sqrt(t3 * notchRadius * notchRadius * (t4 - t5)); t3 = a * notchRadius * notchRadius; p2xA = (t3 - n2) / t4; p2xB = (t3 + n2) / t4; p2yA = Math.sqrt(t5 - p2xA * p2xA); p2yB = Math.sqrt(t5 - p2xB * p2xB); p = A.List_List$filled(6, null, false, type$.nullable_Offset); t5 = a - 15; p[0] = new A.Offset(t5, b); p[1] = new A.Offset(a, b); cmp = b < 0 ? -1 : 1; t3 = cmp * p2yA > cmp * p2yB ? new A.Offset(p2xA, p2yA) : new A.Offset(p2xB, p2yB); p[2] = t3; p[3] = new A.Offset(-1 * t3._dx, t3._dy); p[4] = new A.Offset(-1 * a, b); p[5] = new A.Offset(-1 * t5, b); for (t3 = guest.top, t4 = guest.bottom, t2 += notchRadius, i = 0; i < 6; ++i) { t5 = p[i]; t5.toString; p[i] = new A.Offset(t5._dx + t2, t5._dy + (t3 + (t4 - t3) / 2)); } t2 = A.Path_Path(); t3 = host.left; t2.moveTo$2(0, t3, t1); t4 = p[0]; t2.lineTo$2(0, t4._dx, t4._dy); t4 = p[1]; t5 = t4._dx; t4 = t4._dy; t6 = p[2]; t2.quadraticBezierTo$4(t5, t4, t6._dx, t6._dy); t6 = p[3]; t6.toString; t2.arcToPoint$3$clockwise$radius(t6, false, new A.Radius(notchRadius, notchRadius)); t6 = p[4]; t4 = t6._dx; t6 = t6._dy; t5 = p[5]; t2.quadraticBezierTo$4(t4, t6, t5._dx, t5._dy); t5 = host.right; t2.lineTo$2(0, t5, t1); t1 = host.bottom; t2.lineTo$2(0, t5, t1); t2.lineTo$2(0, t3, t1); t2.close$0(0); return t2; } }; A.PlaceholderSpan.prototype = { computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, includePlaceholders, includeSemanticsLabels) { buffer._contents += A.Primitives_stringFromCharCode(65532); }, computeSemanticsInformation$1(collector) { collector.push(B.InlineSpanSemanticsInformation_o8k); } }; A.RoundedRectangleBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { var t1 = this.side.scale$1(0, t); return new A.RoundedRectangleBorder(this.borderRadius.$mul(0, t), t1); }, lerpFrom$2(a, t) { var t1, t2, _this = this; if (a instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); t2 = A.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; return new A.RoundedRectangleBorder(t2, t1); } if (a instanceof A.CircleBorder) return new A._RoundedRectangleToCircleBorder(_this.borderRadius, 1 - t, A.BorderSide_lerp(a.side, _this.side, t)); return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2, _this = this; if (b instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); t2 = A.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; return new A.RoundedRectangleBorder(t2, t1); } if (b instanceof A.CircleBorder) return new A._RoundedRectangleToCircleBorder(_this.borderRadius, t, A.BorderSide_lerp(_this.side, b.side, t)); return _this.super$ShapeBorder$lerpTo(b, t); }, copyWith$1$side(side) { var t1 = side == null ? this.side : side; return new A.RoundedRectangleBorder(this.borderRadius, t1); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this.borderRadius.resolve$1(0, textDirection).toRRect$1(rect).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this.borderRadius.resolve$1(0, textDirection).toRRect$1(rect)); return t1; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, paint$3$textDirection(canvas, rect, textDirection) { var width, t2, outer, inner, paint, t1 = this.side; switch (t1.style.index) { case 0: break; case 1: width = t1.width; t2 = this.borderRadius; if (width === 0) canvas.drawRRect$2(0, t2.resolve$1(0, textDirection).toRRect$1(rect), t1.toPaint$0()); else { outer = t2.resolve$1(0, textDirection).toRRect$1(rect); inner = outer.inflate$1(-width); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.RoundedRectangleBorder && J.$eq$(other.side, this.side) && J.$eq$(other.borderRadius, this.borderRadius); }, get$hashCode(_) { return A.Object_hash(this.side, this.borderRadius, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "RoundedRectangleBorder(" + A.S(this.side) + ", " + A.S(this.borderRadius) + ")"; } }; A._RoundedRectangleToCircleBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { var t1 = this.side.scale$1(0, t); return new A._RoundedRectangleToCircleBorder(this.borderRadius.$mul(0, t), t, t1); }, lerpFrom$2(a, t) { var t1, t2, t3, _this = this; if (a instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); t2 = A.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; return new A._RoundedRectangleToCircleBorder(t2, _this.circleness * t, t1); } if (a instanceof A.CircleBorder) { t1 = _this.circleness; return new A._RoundedRectangleToCircleBorder(_this.borderRadius, t1 + (1 - t1) * (1 - t), A.BorderSide_lerp(a.side, _this.side, t)); } if (a instanceof A._RoundedRectangleToCircleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); t2 = A.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; t3 = A.lerpDouble(a.circleness, _this.circleness, t); t3.toString; return new A._RoundedRectangleToCircleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2, t3, _this = this; if (b instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); t2 = A.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; return new A._RoundedRectangleToCircleBorder(t2, _this.circleness * (1 - t), t1); } if (b instanceof A.CircleBorder) { t1 = _this.circleness; return new A._RoundedRectangleToCircleBorder(_this.borderRadius, t1 + (1 - t1) * t, A.BorderSide_lerp(_this.side, b.side, t)); } if (b instanceof A._RoundedRectangleToCircleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); t2 = A.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; t3 = A.lerpDouble(_this.circleness, b.circleness, t); t3.toString; return new A._RoundedRectangleToCircleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpTo(b, t); }, _adjustRect$1(rect) { var t2, t3, t4, t5, t6, t7, delta, t1 = this.circleness; if (t1 === 0 || rect.right - rect.left === rect.bottom - rect.top) return rect; t2 = rect.right; t3 = rect.left; t4 = t2 - t3; t5 = rect.bottom; t6 = rect.top; t7 = t5 - t6; if (t4 < t7) { delta = t1 * (t7 - t4) / 2; return new A.Rect(t3, t6 + delta, t2, t5 - delta); } else { delta = t1 * (t4 - t7) / 2; return new A.Rect(t3 + delta, t6, t2 - delta, t5); } }, _adjustBorderRadius$2(rect, textDirection) { var resolvedRadius = this.borderRadius.resolve$1(0, textDirection), t1 = this.circleness; if (t1 === 0) return resolvedRadius; return A.BorderRadius_lerp(resolvedRadius, A.BorderRadius$circular(rect.get$shortestSide() / 2), t1); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(), t2 = this._adjustBorderRadius$2(rect, textDirection); t2.toString; t1.addRRect$1(0, t2.toRRect$1(this._adjustRect$1(rect)).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(), t2 = this._adjustBorderRadius$2(rect, textDirection); t2.toString; t1.addRRect$1(0, t2.toRRect$1(this._adjustRect$1(rect))); return t1; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side(side) { var t1 = side == null ? this.side : side; return new A._RoundedRectangleToCircleBorder(this.borderRadius, this.circleness, t1); }, paint$3$textDirection(canvas, rect, textDirection) { var width, t2, outer, inner, paint, _this = this, t1 = _this.side; switch (t1.style.index) { case 0: break; case 1: width = t1.width; if (width === 0) { t2 = _this._adjustBorderRadius$2(rect, textDirection); t2.toString; canvas.drawRRect$2(0, t2.toRRect$1(_this._adjustRect$1(rect)), t1.toPaint$0()); } else { t2 = _this._adjustBorderRadius$2(rect, textDirection); t2.toString; outer = t2.toRRect$1(_this._adjustRect$1(rect)); inner = outer.inflate$1(-width); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A._RoundedRectangleToCircleBorder && J.$eq$(other.side, _this.side) && J.$eq$(other.borderRadius, _this.borderRadius) && other.circleness == _this.circleness; }, get$hashCode(_) { return A.Object_hash(this.side, this.borderRadius, this.circleness, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "RoundedRectangleBorder(" + A.S(this.side) + ", " + A.S(this.borderRadius) + ", " + B.JSNumber_methods.toStringAsFixed$1(this.circleness * 100, 1) + "% of the way to being a CircleBorder)"; } }; A.ShapeDecoration.prototype = { getClipPath$2(rect, textDirection) { return this.shape.getOuterPath$2$textDirection(rect, textDirection); }, get$padding(_) { return this.shape.get$dimensions(); }, get$isComplex() { return this.shadows != null; }, lerpFrom$2(a, t) { if (a instanceof A.BoxDecoration) return A.ShapeDecoration_lerp(A.ShapeDecoration_ShapeDecoration$fromBoxDecoration(a), this, t); else if (a == null || a instanceof A.ShapeDecoration) return A.ShapeDecoration_lerp(type$.nullable_ShapeDecoration._as(a), this, t); return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2(b, t) { if (b instanceof A.BoxDecoration) return A.ShapeDecoration_lerp(this, A.ShapeDecoration_ShapeDecoration$fromBoxDecoration(b), t); else if (b == null || b instanceof A.ShapeDecoration) return A.ShapeDecoration_lerp(this, type$.nullable_ShapeDecoration._as(b), t); return this.super$Decoration$lerpTo(b, t); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.ShapeDecoration && J.$eq$(other.color, _this.color) && J.$eq$(other.gradient, _this.gradient) && J.$eq$(other.image, _this.image) && A.listEquals0(other.shadows, _this.shadows) && J.$eq$(other.shape, _this.shape); }, get$hashCode(_) { var _this = this, t1 = _this.shadows; t1 = t1 == null ? null : A.Object_hashAll(t1); return A.Object_hash(_this.color, _this.gradient, _this.image, _this.shape, t1, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, hitTest$3$textDirection(size, position, textDirection) { return this.shape.getOuterPath$2$textDirection(new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), textDirection).contains$1(0, position); }, createBoxPainter$1(onChanged) { return new A._ShapeDecorationPainter(this, onChanged); } }; A._ShapeDecorationPainter.prototype = { _precache$2(rect, textDirection) { var t1, t2, t3, _this = this; if (rect.$eq(0, _this._lastRect) && textDirection == _this._lastTextDirection) return; if (_this._interiorPaint == null) { t1 = _this._shape_decoration$_decoration; t1 = t1.color != null || t1.gradient != null; } else t1 = false; if (t1) { t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); _this._interiorPaint = t1; t2 = _this._shape_decoration$_decoration.color; if (t2 != null) t1.set$color(0, t2); } t1 = _this._shape_decoration$_decoration; t2 = t1.gradient; if (t2 != null) { t3 = _this._interiorPaint; t3.toString; t3.set$shader(t2.createShader$2$textDirection(0, rect, textDirection)); } t2 = t1.shadows; if (t2 != null) { if (_this._shadowCount == null) { _this._shadowCount = t2.length; _this.___ShapeDecorationPainter__shadowPaints = A.List_List$of(new A.MappedListIterable(t2, new A._ShapeDecorationPainter__precache_closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Paint>")), true, type$.Paint); } _this.___ShapeDecorationPainter__shadowPaths = A.List_List$of(new A.MappedListIterable(t2, new A._ShapeDecorationPainter__precache_closure0(_this, rect, textDirection), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Path>")), true, type$.Path); } if (_this._interiorPaint != null || _this._shadowCount != null) _this.___ShapeDecorationPainter__outerPath = t1.shape.getOuterPath$2$textDirection(rect, textDirection); if (t1.image != null) _this._innerPath = t1.shape.getInnerPath$2$textDirection(rect, textDirection); _this._lastRect = rect; _this._lastTextDirection = textDirection; }, _shape_decoration$_paintShadows$1(canvas) { var index, t1, _this = this; if (_this._shadowCount != null) { index = 0; while (true) { t1 = _this._shadowCount; t1.toString; if (!(index < t1)) break; canvas.drawPath$2(0, J.$index$asx(A._lateReadCheck(_this.___ShapeDecorationPainter__shadowPaths, "_shadowPaths"), index), J.$index$asx(A._lateReadCheck(_this.___ShapeDecorationPainter__shadowPaints, "_shadowPaints"), index)); ++index; } } }, _paintImage$2(canvas, configuration) { var t2, _this = this, t1 = _this._shape_decoration$_decoration.image; if (t1 == null) return; t2 = _this._imagePainter; if (t2 == null) { t2 = _this.onChanged; t2.toString; t2 = _this._imagePainter = new A.DecorationImagePainter(t1, t2); t1 = t2; } else t1 = t2; t2 = _this._lastRect; t2.toString; t1.paint$4(canvas, t2, _this._innerPath, configuration); }, dispose$0(_) { var t1 = this._imagePainter; if (t1 != null) t1.dispose$0(0); this.super$BoxPainter$dispose(0); }, paint$3(canvas, offset, configuration) { var _this = this, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, rect = new A.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy), textDirection = configuration.textDirection; _this._precache$2(rect, textDirection); _this._shape_decoration$_paintShadows$1(canvas); if (_this._interiorPaint != null) { t1 = A._lateReadCheck(_this.___ShapeDecorationPainter__outerPath, "_outerPath"); t2 = _this._interiorPaint; t2.toString; canvas.drawPath$2(0, t1, t2); } _this._paintImage$2(canvas, configuration); _this._shape_decoration$_decoration.shape.paint$3$textDirection(canvas, rect, textDirection); } }; A._ShapeDecorationPainter__precache_closure.prototype = { call$1(shadow) { return shadow.toPaint$0(); }, $signature: 2184 }; A._ShapeDecorationPainter__precache_closure0.prototype = { call$1(shadow) { return this.$this._shape_decoration$_decoration.shape.getOuterPath$2$textDirection(this.rect.shift$1(shadow.offset).inflate$1(shadow.spreadRadius), this.textDirection); }, $signature: 2182 }; A.StadiumBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { return new A.StadiumBorder(this.side.scale$1(0, t)); }, lerpFrom$2(a, t) { var t1, _this = this; if (a instanceof A.StadiumBorder) return new A.StadiumBorder(A.BorderSide_lerp(a.side, _this.side, t)); if (a instanceof A.CircleBorder) return new A._StadiumToCircleBorder(1 - t, A.BorderSide_lerp(a.side, _this.side, t)); if (a instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); return new A._StadiumToRoundedRectangleBorder(type$.BorderRadius._as(a.borderRadius), 1 - t, t1); } return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, _this = this; if (b instanceof A.StadiumBorder) return new A.StadiumBorder(A.BorderSide_lerp(_this.side, b.side, t)); if (b instanceof A.CircleBorder) return new A._StadiumToCircleBorder(t, A.BorderSide_lerp(_this.side, b.side, t)); if (b instanceof A.RoundedRectangleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); return new A._StadiumToRoundedRectangleBorder(type$.BorderRadius._as(b.borderRadius), t, t1); } return _this.super$ShapeBorder$lerpTo(b, t); }, copyWith$1$side(side) { return new A.StadiumBorder(side == null ? this.side : side); }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = rect.get$shortestSide() / 2, t2 = A.Path_Path(); t2.addRRect$1(0, A.RRect$fromRectAndRadius(rect, new A.Radius(t1, t1)).inflate$1(-this.side.width)); return t2; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = rect.get$shortestSide() / 2, t2 = A.Path_Path(); t2.addRRect$1(0, A.RRect$fromRectAndRadius(rect, new A.Radius(t1, t1))); return t2; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, paint$3$textDirection(canvas, rect, textDirection) { var t2, t1 = this.side; switch (t1.style.index) { case 0: break; case 1: t2 = rect.get$shortestSide() / 2; canvas.drawRRect$2(0, A.RRect$fromRectAndRadius(rect, new A.Radius(t2, t2)).inflate$1(-(t1.width / 2)), t1.toPaint$0()); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.StadiumBorder && J.$eq$(other.side, this.side); }, get$hashCode(_) { return J.get$hashCode$(this.side); }, toString$0(_) { return "StadiumBorder(" + A.S(this.side) + ")"; } }; A._StadiumToCircleBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { return new A._StadiumToCircleBorder(t, this.side.scale$1(0, t)); }, lerpFrom$2(a, t) { var t1, t2, _this = this; if (a instanceof A.StadiumBorder) return new A._StadiumToCircleBorder(_this.circleness * t, A.BorderSide_lerp(a.side, _this.side, t)); if (a instanceof A.CircleBorder) { t1 = _this.circleness; return new A._StadiumToCircleBorder(t1 + (1 - t1) * (1 - t), A.BorderSide_lerp(a.side, _this.side, t)); } if (a instanceof A._StadiumToCircleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); t2 = A.lerpDouble(a.circleness, _this.circleness, t); t2.toString; return new A._StadiumToCircleBorder(t2, t1); } return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2, _this = this; if (b instanceof A.StadiumBorder) return new A._StadiumToCircleBorder(_this.circleness * (1 - t), A.BorderSide_lerp(_this.side, b.side, t)); if (b instanceof A.CircleBorder) { t1 = _this.circleness; return new A._StadiumToCircleBorder(t1 + (1 - t1) * t, A.BorderSide_lerp(_this.side, b.side, t)); } if (b instanceof A._StadiumToCircleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); t2 = A.lerpDouble(_this.circleness, b.circleness, t); t2.toString; return new A._StadiumToCircleBorder(t2, t1); } return _this.super$ShapeBorder$lerpTo(b, t); }, _stadium_border$_adjustRect$1(rect) { var t2, t3, t4, t5, t6, t7, delta, t1 = this.circleness; if (t1 === 0 || rect.right - rect.left === rect.bottom - rect.top) return rect; t2 = rect.right; t3 = rect.left; t4 = t2 - t3; t5 = rect.bottom; t6 = rect.top; t7 = t5 - t6; if (t4 < t7) { delta = t1 * (t7 - t4) / 2; return new A.Rect(t3, t6 + delta, t2, t5 - delta); } else { delta = t1 * (t4 - t7) / 2; return new A.Rect(t3 + delta, t6, t2 - delta, t5); } }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, A.BorderRadius$circular(rect.get$shortestSide() / 2).toRRect$1(this._stadium_border$_adjustRect$1(rect)).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, A.BorderRadius$circular(rect.get$shortestSide() / 2).toRRect$1(this._stadium_border$_adjustRect$1(rect))); return t1; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side(side) { var t1 = side == null ? this.side : side; return new A._StadiumToCircleBorder(this.circleness, t1); }, paint$3$textDirection(canvas, rect, textDirection) { var width, outer, inner, paint, t1 = this.side; switch (t1.style.index) { case 0: break; case 1: width = t1.width; if (width === 0) canvas.drawRRect$2(0, A.BorderRadius$circular(rect.get$shortestSide() / 2).toRRect$1(this._stadium_border$_adjustRect$1(rect)), t1.toPaint$0()); else { outer = A.BorderRadius$circular(rect.get$shortestSide() / 2).toRRect$1(this._stadium_border$_adjustRect$1(rect)); inner = outer.inflate$1(-width); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._StadiumToCircleBorder && J.$eq$(other.side, this.side) && other.circleness == this.circleness; }, get$hashCode(_) { return A.Object_hash(this.side, this.circleness, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "StadiumBorder(" + A.S(this.side) + ", " + B.JSNumber_methods.toStringAsFixed$1(this.circleness * 100, 1) + "% of the way to being a CircleBorder)"; } }; A._StadiumToRoundedRectangleBorder.prototype = { get$dimensions() { var t1 = this.side.width; return new A.EdgeInsets(t1, t1, t1, t1); }, scale$1(_, t) { var t1 = this.side.scale$1(0, t); return new A._StadiumToRoundedRectangleBorder(this.borderRadius.$mul(0, t), t, t1); }, lerpFrom$2(a, t) { var t1, t2, t3, _this = this; if (a instanceof A.StadiumBorder) return new A._StadiumToRoundedRectangleBorder(_this.borderRadius, _this.rectness * t, A.BorderSide_lerp(a.side, _this.side, t)); if (a instanceof A.RoundedRectangleBorder) { t1 = _this.rectness; return new A._StadiumToRoundedRectangleBorder(_this.borderRadius, t1 + (1 - t1) * (1 - t), A.BorderSide_lerp(a.side, _this.side, t)); } if (a instanceof A._StadiumToRoundedRectangleBorder) { t1 = A.BorderSide_lerp(a.side, _this.side, t); t2 = A.BorderRadius_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; t3 = A.lerpDouble(a.rectness, _this.rectness, t); t3.toString; return new A._StadiumToRoundedRectangleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2(b, t) { var t1, t2, t3, _this = this; if (b instanceof A.StadiumBorder) return new A._StadiumToRoundedRectangleBorder(_this.borderRadius, _this.rectness * (1 - t), A.BorderSide_lerp(_this.side, b.side, t)); if (b instanceof A.RoundedRectangleBorder) { t1 = _this.rectness; return new A._StadiumToRoundedRectangleBorder(_this.borderRadius, t1 + (1 - t1) * t, A.BorderSide_lerp(_this.side, b.side, t)); } if (b instanceof A._StadiumToRoundedRectangleBorder) { t1 = A.BorderSide_lerp(_this.side, b.side, t); t2 = A.BorderRadius_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; t3 = A.lerpDouble(_this.rectness, b.rectness, t); t3.toString; return new A._StadiumToRoundedRectangleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpTo(b, t); }, _stadium_border$_adjustBorderRadius$1(rect) { var t1 = rect.get$shortestSide() / 2; t1 = A.BorderRadius_lerp(this.borderRadius, A.BorderRadius$all(new A.Radius(t1, t1)), 1 - this.rectness); t1.toString; return t1; }, getInnerPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this._stadium_border$_adjustBorderRadius$1(rect).toRRect$1(rect).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection(rect, textDirection) { var t1 = A.Path_Path(); t1.addRRect$1(0, this._stadium_border$_adjustBorderRadius$1(rect).toRRect$1(rect)); return t1; }, getOuterPath$1(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side(side) { var t1 = side == null ? this.side : side; return new A._StadiumToRoundedRectangleBorder(this.borderRadius, this.rectness, t1); }, paint$3$textDirection(canvas, rect, textDirection) { var width, outer, inner, paint, t1 = this.side; switch (t1.style.index) { case 0: break; case 1: width = t1.width; if (width === 0) canvas.drawRRect$2(0, this._stadium_border$_adjustBorderRadius$1(rect).toRRect$1(rect), t1.toPaint$0()); else { outer = this._stadium_border$_adjustBorderRadius$1(rect).toRRect$1(rect); inner = outer.inflate$1(-width); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A._StadiumToRoundedRectangleBorder && J.$eq$(other.side, _this.side) && J.$eq$(other.borderRadius, _this.borderRadius) && other.rectness == _this.rectness; }, get$hashCode(_) { return A.Object_hash(this.side, this.borderRadius, this.rectness, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "StadiumBorder(" + A.S(this.side) + ", " + A.S(this.borderRadius) + ", " + B.JSNumber_methods.toStringAsFixed$1(this.rectness * 100, 1) + "% of the way to being a RoundedRectangleBorder)"; } }; A.StrutStyle.prototype = { get$fontFamilyFallback() { return this._strut_style$_fontFamilyFallback; }, compareTo$1(_, other) { var t1, _this = this; if (_this === other) return B.RenderComparison_0; if (_this.fontFamily == other.fontFamily) if (_this.fontSize == other.fontSize) if (_this.fontWeight == other.fontWeight) if (_this.fontStyle == other.fontStyle) if (_this.height == other.height) t1 = _this.forceStrutHeight != other.forceStrutHeight || !A.listEquals0(_this.get$fontFamilyFallback(), other.get$fontFamilyFallback()); else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return B.RenderComparison_3; return B.RenderComparison_0; }, inheritFromTextStyle$1(other) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = _this.fontFamily; if (t1 == null) t1 = other.fontFamily; t2 = _this.get$fontFamilyFallback(); if (t2 == null) t2 = other.get$fontFamilyFallback(); t3 = _this.fontSize; if (t3 == null) t3 = other.fontSize; t4 = _this.height; if (t4 == null) t4 = other.height; t5 = _this.fontWeight; if (t5 == null) t5 = other.fontWeight; t6 = _this.fontStyle; if (t6 == null) t6 = other.fontStyle; t7 = _this.debugLabel; if (t7 == null) t7 = other.debugLabel; return new A.StrutStyle(t1, t2, t3, t4, t5, t6, _this.leading, _this.forceStrutHeight, t7); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.StrutStyle) if (other.fontFamily == _this.fontFamily) if (other.fontSize == _this.fontSize) if (other.fontWeight == _this.fontWeight) if (other.fontStyle == _this.fontStyle) if (other.height == _this.height) t1 = other.forceStrutHeight == _this.forceStrutHeight; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.fontFamily, _this.fontSize, _this.fontWeight, _this.fontStyle, _this.height, _this.leading, _this.forceStrutHeight, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toStringShort$0() { return "StrutStyle"; } }; A._StrutStyle_Object_Diagnosticable.prototype = {}; A.TextOverflow.prototype = { toString$0(_) { return "TextOverflow." + this._core$_name; } }; A.PlaceholderDimensions.prototype = { toString$0(_) { return "PlaceholderDimensions(" + A.S(this.size) + ", " + A.S(this.baseline) + ")"; } }; A.TextWidthBasis.prototype = { toString$0(_) { return "TextWidthBasis." + this._core$_name; } }; A._CaretMetrics.prototype = {}; A.TextPainter.prototype = { markNeedsLayout$0() { var _this = this; _this._previousCaretPrototype = _this._previousCaretPosition = _this._lineMetricsCache = _this._paragraph = null; }, set$text(_, value) { var t1, t2, comparison, _this = this; if (J.$eq$(_this._text_painter$_text, value)) return; t1 = _this._text_painter$_text; t1 = t1 == null ? null : t1.style; t2 = value == null; if (!J.$eq$(t1, t2 ? null : value.style)) _this._layoutTemplate = null; if (t2) comparison = B.RenderComparison_3; else { t1 = _this._text_painter$_text; t1 = t1 == null ? null : t1.compareTo$1(0, value); comparison = t1 == null ? B.RenderComparison_3 : t1; } _this._text_painter$_text = value; t1 = comparison.index; if (t1 >= 3) _this.markNeedsLayout$0(); else if (t1 >= 2) _this._rebuildParagraphForPaint = true; }, set$textAlign(_, value) { if (this._textAlign === value) return; this._textAlign = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { var _this = this; if (_this._text_painter$_textDirection == value) return; _this._text_painter$_textDirection = value; _this.markNeedsLayout$0(); _this._layoutTemplate = null; }, set$textScaleFactor(value) { var _this = this; if (_this._text_painter$_textScaleFactor === value) return; _this._text_painter$_textScaleFactor = value; _this.markNeedsLayout$0(); _this._layoutTemplate = null; }, set$ellipsis(_, value) { if (this._ellipsis == value) return; this._ellipsis = value; this.markNeedsLayout$0(); }, set$locale(_, value) { if (J.$eq$(this._text_painter$_locale, value)) return; this._text_painter$_locale = value; this.markNeedsLayout$0(); }, set$maxLines(_, value) { if (this._maxLines == value) return; this._maxLines = value; this.markNeedsLayout$0(); }, set$strutStyle(_, value) { if (J.$eq$(this._strutStyle, value)) return; this._strutStyle = value; this.markNeedsLayout$0(); }, set$textWidthBasis(value) { if (this._textWidthBasis === value) return; this._textWidthBasis = value; this.markNeedsLayout$0(); }, setPlaceholderDimensions$1(value) { if (value == null || value.length === 0 || A.listEquals0(value, this._placeholderDimensions)) return; this._placeholderDimensions = value; this.markNeedsLayout$0(); }, _createParagraphStyle$1(defaultTextDirection) { var t2, t3, t4, t5, t6, t7, t8, leadingDistribution, effectiveTextHeightBehavior, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, t1 = _this._text_painter$_text.style; if (t1 == null) t1 = _null; else { t2 = _this._textAlign; t3 = _this._text_painter$_textDirection; if (t3 == null) t3 = defaultTextDirection; t4 = _this._text_painter$_textScaleFactor; t5 = _this._maxLines; t6 = _this._ellipsis; t7 = _this._text_painter$_locale; t8 = _this._strutStyle; leadingDistribution = t1.leadingDistribution; effectiveTextHeightBehavior = leadingDistribution == null ? _null : new A.TextHeightBehavior(leadingDistribution); t9 = t1.fontWeight; t10 = t1.fontStyle; t11 = t1.fontFamily; t12 = t1.fontSize; if (t12 == null) t12 = 14; t1 = t1.height; if (t8 == null) t8 = _null; else { t13 = t8.fontFamily; t14 = t8.get$fontFamilyFallback(); t15 = t8.fontSize; t15 = t15 == null ? _null : t15 * t4; t16 = t8.height; t17 = t8.leading; t18 = t8.fontWeight; t17 = A.StrutStyle_StrutStyle(t13, t14, t15, t8.fontStyle, t18, t8.forceStrutHeight, t16, t17); t8 = t17; } t3 = A.ParagraphStyle_ParagraphStyle(t6, t11, t12 * t4, t10, t9, t1, t7, t5, t8, t2, t3, effectiveTextHeightBehavior); t1 = t3; } if (t1 == null) { t1 = _this._textAlign; t2 = _this._text_painter$_textDirection; if (t2 == null) t2 = defaultTextDirection; t3 = _this._text_painter$_textScaleFactor; t4 = _this._maxLines; t5 = _this._text_painter$_textHeightBehavior; t5 = A.ParagraphStyle_ParagraphStyle(_this._ellipsis, _null, 14 * t3, _null, _null, _null, _this._text_painter$_locale, t4, _null, t1, t2, t5); t1 = t5; } return t1; }, _createParagraphStyle$0() { return this._createParagraphStyle$1(null); }, get$preferredLineHeight() { var builder, textStyle, _this = this, t1 = _this._layoutTemplate; if (t1 == null) { builder = A.ParagraphBuilder_ParagraphBuilder(_this._createParagraphStyle$1(B.TextDirection_0)); t1 = _this._text_painter$_text; if (t1 == null) textStyle = null; else { t1 = t1.style; textStyle = t1 == null ? null : t1.getTextStyle$1$textScaleFactor(_this._text_painter$_textScaleFactor); } if (textStyle != null) builder.pushStyle$1(0, textStyle); builder.addText$1(0, " "); t1 = builder.build$0(0); t1.layout$1(0, B.ParagraphConstraints_C5f); _this._layoutTemplate = t1; } return t1.get$height(t1); }, get$width(_) { var t1 = this._textWidthBasis, t2 = this._paragraph; t1 = t1 === B.TextWidthBasis_1 ? t2.get$longestLine() : t2.get$width(t2); t1.toString; return Math.ceil(t1); }, computeDistanceToActualBaseline$1(baseline) { var t1; switch (baseline) { case B.TextBaseline_0: t1 = this._paragraph; return t1.get$alphabeticBaseline(t1); case B.TextBaseline_1: t1 = this._paragraph; return t1.get$ideographicBaseline(t1); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _createParagraph$0() { var builder, t1, _this = this, text = _this._text_painter$_text; if (text == null) throw A.wrapException(A.StateError$("TextPainter.text must be set to a non-null value before using the TextPainter.")); builder = A.ParagraphBuilder_ParagraphBuilder(_this._createParagraphStyle$0()); t1 = _this._text_painter$_textScaleFactor; text.build$3$dimensions$textScaleFactor(0, builder, _this._placeholderDimensions, t1); _this._inlinePlaceholderScales = builder.get$placeholderScales(); _this._paragraph = builder.build$0(0); _this._rebuildParagraphForPaint = false; }, _layoutParagraph$2(minWidth, maxWidth) { var t1, newWidth, _this = this; _this._paragraph.layout$1(0, new A.ParagraphConstraints(maxWidth)); if (minWidth != maxWidth) { switch (_this._textWidthBasis.index) { case 1: t1 = _this._paragraph.get$longestLine(); t1.toString; newWidth = Math.ceil(t1); break; case 0: t1 = _this._paragraph.get$maxIntrinsicWidth(); t1.toString; newWidth = Math.ceil(t1); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } newWidth = B.JSNumber_methods.clamp$2(newWidth, minWidth, maxWidth); t1 = _this._paragraph; t1 = t1.get$width(t1); t1.toString; if (newWidth !== Math.ceil(t1)) _this._paragraph.layout$1(0, new A.ParagraphConstraints(newWidth)); } }, layout$2$maxWidth$minWidth(_, maxWidth, minWidth) { var _this = this, t1 = _this._paragraph == null; if (!t1 && minWidth == _this._lastMinWidth && maxWidth == _this._lastMaxWidth) return; if (_this._rebuildParagraphForPaint || t1) _this._createParagraph$0(); _this._lastMinWidth = minWidth; _this._lastMaxWidth = maxWidth; _this._previousCaretPrototype = _this._previousCaretPosition = _this._lineMetricsCache = null; _this._layoutParagraph$2(minWidth, maxWidth); _this._inlinePlaceholderBoxes = _this._paragraph.getBoxesForPlaceholders$0(); }, layout$1$maxWidth($receiver, maxWidth) { return this.layout$2$maxWidth$minWidth($receiver, maxWidth, 0); }, layout$0($receiver) { return this.layout$2$maxWidth$minWidth($receiver, 1 / 0, 0); }, paint$2(canvas, offset) { var t1, _this = this, minWidth = _this._lastMinWidth, maxWidth = _this._lastMaxWidth; if (_this._paragraph == null || minWidth == null || maxWidth == null) throw A.wrapException(A.StateError$("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")); if (_this._rebuildParagraphForPaint) { _this._createParagraph$0(); _this._layoutParagraph$2(minWidth, maxWidth); } t1 = _this._paragraph; t1.toString; canvas.drawParagraph$2(0, t1, offset); }, getOffsetAfter$1(offset) { var nextCodeUnit = this._text_painter$_text.codeUnitAt$1(0, offset); if (nextCodeUnit == null) return null; return (nextCodeUnit & 63488) === 55296 ? offset + 2 : offset + 1; }, getOffsetBefore$1(offset) { var t2, prevCodeUnit, t1 = this._text_painter$_text; t1.toString; t2 = offset - 1; prevCodeUnit = t1.codeUnitAt$1(0, t2); if (prevCodeUnit == null) return null; return (prevCodeUnit & 63488) === 55296 ? offset - 2 : t2; }, _getRectFromUpstream$2(offset, caretPrototype) { var prevCodeUnit, needsSearch, graphemeClusterLength, boxes, t2, t3, prevRuneOffset, box, caretEnd, dx, _this = this, flattenedText = _this._text_painter$_text.toPlainText$1$includeSemanticsLabels(false), t1 = _this._text_painter$_text; t1.toString; prevCodeUnit = t1.codeUnitAt$1(0, Math.max(0, offset - 1)); if (prevCodeUnit == null) return null; needsSearch = (prevCodeUnit & 63488) === 55296 || _this._text_painter$_text.codeUnitAt$1(0, offset) === 8205 || prevCodeUnit === 8207 || prevCodeUnit === 8206; graphemeClusterLength = needsSearch ? 2 : 1; boxes = A._setArrayType([], type$.JSArray_TextBox); for (t1 = -flattenedText.length, t2 = !needsSearch, t3 = prevCodeUnit === 10; boxes.length === 0;) { prevRuneOffset = offset - graphemeClusterLength; boxes = _this._paragraph.getBoxesForRange$3$boxHeightStyle(prevRuneOffset, offset, B.BoxHeightStyle_5); if (boxes.length === 0) { if (t2 && t3) break; if (prevRuneOffset < t1) break; graphemeClusterLength *= 2; continue; } box = B.JSArray_methods.get$first(boxes); if (t3) { t1 = box.bottom; return new A.Rect(_this.get$_emptyOffset()._dx, t1, _this.get$_emptyOffset()._dx, t1 + t1 - box.top); } t1 = box.direction; caretEnd = t1 === B.TextDirection_1 ? box.right : box.left; dx = t1 === B.TextDirection_0 ? caretEnd - (caretPrototype.right - caretPrototype.left) : caretEnd; t1 = _this._paragraph; t1 = J.clamp$2$n(dx, 0, t1.get$width(t1)); t2 = _this._paragraph; return new A.Rect(t1, box.top, B.JSNumber_methods.clamp$2(dx, 0, t2.get$width(t2)), box.bottom); } return null; }, _getRectFromDownstream$2(offset, caretPrototype) { var t2, nextCodeUnit, needsSearch, graphemeClusterLength, boxes, nextRuneOffset, box, caretStart, dx, _this = this, flattenedText = _this._text_painter$_text.toPlainText$1$includeSemanticsLabels(false), t1 = _this._text_painter$_text; t1.toString; t2 = flattenedText.length; nextCodeUnit = t1.codeUnitAt$1(0, Math.min(A.checkNum(offset), t2 - 1)); if (nextCodeUnit == null) return null; needsSearch = (nextCodeUnit & 63488) === 55296 || nextCodeUnit === 8205 || nextCodeUnit === 8207 || nextCodeUnit === 8206; graphemeClusterLength = needsSearch ? 2 : 1; boxes = A._setArrayType([], type$.JSArray_TextBox); for (t1 = t2 << 1 >>> 0, t2 = !needsSearch; boxes.length === 0;) { nextRuneOffset = offset + graphemeClusterLength; boxes = _this._paragraph.getBoxesForRange$3$boxHeightStyle(offset, nextRuneOffset, B.BoxHeightStyle_5); if (boxes.length === 0) { if (t2) break; if (nextRuneOffset >= t1) break; graphemeClusterLength *= 2; continue; } box = B.JSArray_methods.get$last(boxes); t1 = box.direction; caretStart = t1 === B.TextDirection_1 ? box.left : box.right; dx = t1 === B.TextDirection_0 ? caretStart - (caretPrototype.right - caretPrototype.left) : caretStart; t1 = _this._paragraph; t1 = J.clamp$2$n(dx, 0, t1.get$width(t1)); t2 = _this._paragraph; return new A.Rect(t1, box.top, B.JSNumber_methods.clamp$2(dx, 0, t2.get$width(t2)), box.bottom); } return null; }, get$_emptyOffset() { var _this = this, _s80_ = string$.x60null_c; switch (_this._textAlign.index) { case 0: return B.Offset_0_0; case 1: return new A.Offset(_this.get$width(_this), 0); case 2: return new A.Offset(_this.get$width(_this) / 2, 0); case 3: case 4: switch (_this._text_painter$_textDirection.index) { case 0: return new A.Offset(_this.get$width(_this), 0); case 1: return B.Offset_0_0; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case 5: switch (_this._text_painter$_textDirection.index) { case 0: return B.Offset_0_0; case 1: return new A.Offset(_this.get$width(_this), 0); default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, _computeCaretMetrics$2(position, caretPrototype) { var offset, rect, t1, t2, _this = this; if (J.$eq$(position, _this._previousCaretPosition) && caretPrototype.$eq(0, _this._previousCaretPrototype)) return; offset = position.offset; switch (position.affinity.index) { case 0: rect = _this._getRectFromUpstream$2(offset, caretPrototype); if (rect == null) rect = _this._getRectFromDownstream$2(offset, caretPrototype); break; case 1: rect = _this._getRectFromDownstream$2(offset, caretPrototype); if (rect == null) rect = _this._getRectFromUpstream$2(offset, caretPrototype); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = rect != null; t2 = t1 ? new A.Offset(rect.left, rect.top) : _this.get$_emptyOffset(); _this.__TextPainter__caretMetrics = new A._CaretMetrics(t2, t1 ? rect.bottom - rect.top : null); _this._previousCaretPosition = position; _this._previousCaretPrototype = caretPrototype; }, getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, boxHeightStyle, boxWidthStyle) { return this._paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(selection.start, selection.end, boxHeightStyle, boxWidthStyle); }, getBoxesForSelection$1(selection) { return this.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, B.BoxHeightStyle_0, B.BoxWidthStyle_0); }, computeLineMetrics$0() { var t1 = this._lineMetricsCache; return t1 == null ? this._lineMetricsCache = this._paragraph.computeLineMetrics$0() : t1; } }; A.TextSpan.prototype = { get$cursor(_) { return this.mouseCursor; }, get$validForMouseTracker() { return true; }, handleEvent$2($event, entry) { var t1; if (type$.PointerDownEvent._is($event)) { t1 = this.recognizer; if (t1 != null) t1.addPointer$1($event); } }, build$3$dimensions$textScaleFactor(_, builder, dimensions, textScaleFactor) { var exception, stack, exception0, t2, _i, t1 = this.style, hasStyle = t1 != null; if (hasStyle) builder.pushStyle$1(0, t1.getTextStyle$1$textScaleFactor(textScaleFactor)); t1 = this.text; if (t1 != null) try { builder.addText$1(0, t1); } catch (exception0) { t1 = A.unwrapException(exception0); if (t1 instanceof A.ArgumentError) { exception = t1; stack = A.getTraceFromException(exception0); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "painting library", A.ErrorDescription$("while building a TextSpan"), null, null, false)); builder.addText$1(0, "\ufffd"); } else throw exception0; } t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) J.build$3$dimensions$textScaleFactor$x(t1[_i], builder, dimensions, textScaleFactor); if (hasStyle) builder.pop$0(0); }, visitChildren$1(visitor) { var t1, t2, _i; if (this.text != null) if (!visitor.call$1(this)) return false; t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) if (!t1[_i].visitChildren$1(visitor)) return false; return true; }, getSpanForPositionVisitor$2(position, offset) { var affinity, targetOffset, t2, endOffset, t1 = this.text; if (t1 == null) return null; affinity = position.affinity; targetOffset = position.offset; t2 = offset._inline_span$_value; endOffset = t2 + t1.length; if (!(t2 === targetOffset && affinity === B.TextAffinity_1)) if (!(t2 < targetOffset && targetOffset < endOffset)) t1 = endOffset === targetOffset && affinity === B.TextAffinity_0; else t1 = true; else t1 = true; if (t1) return this; offset._inline_span$_value = endOffset; return null; }, computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, includePlaceholders, includeSemanticsLabels) { var t2, _i, t1 = this.text; if (t1 != null) buffer._contents += t1; t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, true, includeSemanticsLabels); }, computeSemanticsInformation$3$inheritedLocale$inheritedSpellOut(collector, inheritedLocale, inheritedSpellOut) { var t2, _i, child, t1 = this.text; if (t1 != null) { t2 = A._setArrayType([], type$.JSArray_StringAttribute); collector.push(A.InlineSpanSemanticsInformation$(t1, this.recognizer, null, t2)); } t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child instanceof A.TextSpan) child.computeSemanticsInformation$3$inheritedLocale$inheritedSpellOut(collector, inheritedLocale, false); else child.computeSemanticsInformation$1(collector); } }, computeSemanticsInformation$1(collector) { return this.computeSemanticsInformation$3$inheritedLocale$inheritedSpellOut(collector, null, false); }, codeUnitAtVisitor$2(index, offset) { var t2, t3, t4, t1 = this.text; if (t1 == null) return null; t2 = offset._inline_span$_value; t3 = index - t2; t4 = t1.length; if (t3 < t4) return B.JSString_methods.codeUnitAt$1(t1, t3); offset._inline_span$_value = t2 + t4; return null; }, compareTo$1(_, other) { var t1, t2, result, candidate, index, _this = this; if (_this === other) return B.RenderComparison_0; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return B.RenderComparison_3; type$.TextSpan._as(other); if (other.text == _this.text) { t1 = _this.children; t1 = t1 == null ? null : t1.length; t2 = other.children; t1 = t1 != (t2 == null ? null : t2.length) || _this.style == null !== (other.style == null); } else t1 = true; if (t1) return B.RenderComparison_3; result = _this.recognizer == other.recognizer ? B.RenderComparison_0 : B.RenderComparison_1; t1 = _this.style; if (t1 != null) { t2 = other.style; t2.toString; candidate = t1.compareTo$1(0, t2); if (candidate.index > result.index) result = candidate; if (result === B.RenderComparison_3) return result; } t1 = _this.children; if (t1 != null) for (t2 = other.children, index = 0; index < t1.length; ++index) { candidate = J.compareTo$1$ns(t1[index], t2[index]); if (candidate.index > result.index) result = candidate; if (result === B.RenderComparison_3) return result; } return result; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (!_this.super$InlineSpan$$eq(0, other)) return false; if (other instanceof A.TextSpan) if (other.text == _this.text) if (other.recognizer == _this.recognizer) t1 = _this.mouseCursor.$eq(0, other.mouseCursor) && A.listEquals0(other.children, _this.children); else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, _null = null, t1 = A.InlineSpan.prototype.get$hashCode.call(_this, _this), t2 = _this.children; t2 = t2 == null ? _null : A.Object_hashAll(t2); return A.Object_hash(t1, _this.text, _this.recognizer, _null, _null, _null, _this.mouseCursor, t2, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toStringShort$0() { return "TextSpan"; }, debugDescribeChildren$0() { var t2, t1 = this.children; if (t1 == null) return B.List_empty1; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return A.List_List$of(new A.MappedListIterable(t1, new A.TextSpan_debugDescribeChildren_closure(), t2), true, t2._eval$1("ListIterable.E")); }, $isHitTestTarget: 1, $isMouseTrackerAnnotation: 1, get$onEnter() { return null; }, get$onExit() { return null; } }; A.TextSpan_debugDescribeChildren_closure.prototype = { call$1(child) { if (child != null) return A.DiagnosticableTreeNode$(null, null, child); else return A.DiagnosticsNode_DiagnosticsNode$message("", true, B.DiagnosticsTreeStyle_8); }, $signature: 2180 }; A.TextStyle.prototype = { get$fontFamilyFallback() { var _this = this, t1 = _this._package != null && _this._text_style$_fontFamilyFallback != null, t2 = _this._text_style$_fontFamilyFallback; if (t1) { t2.toString; t1 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String>"); t1 = A.List_List$of(new A.MappedListIterable(t2, new A.TextStyle_fontFamilyFallback_closure(_this), t1), true, t1._eval$1("ListIterable.E")); } else t1 = t2; return t1; }, get$_text_style$_fontFamily(_) { var t2, _this = this, t1 = _this._package; if (t1 != null && _this.fontFamily != null) { t2 = _this.fontFamily; t2.toString; return B.JSString_methods.substring$1(t2, ("packages/" + A.S(t1) + "/").length); } return _this.fontFamily; }, copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, inherit, leadingDistribution, letterSpacing, locale, overflow, $package, shadows, textBaseline, wordSpacing) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, t1 = inherit == null ? _this.inherit : inherit, t2 = _this.foreground; if (t2 == null && foreground == null) t3 = color == null ? _this.color : color; else t3 = null; t4 = _this.background; if (t4 == null && background == null) t5 = backgroundColor == null ? _this.backgroundColor : backgroundColor; else t5 = null; t6 = fontSize == null ? _this.fontSize : fontSize; t7 = fontWeight == null ? _this.fontWeight : fontWeight; t8 = fontStyle == null ? _this.fontStyle : fontStyle; t9 = letterSpacing == null ? _this.letterSpacing : letterSpacing; t10 = wordSpacing == null ? _this.wordSpacing : wordSpacing; t11 = textBaseline == null ? _this.textBaseline : textBaseline; t12 = height == null ? _this.height : height; t13 = leadingDistribution == null ? _this.leadingDistribution : leadingDistribution; t2 = foreground == null ? t2 : foreground; t4 = background == null ? t4 : background; t14 = shadows == null ? _this.shadows : shadows; t15 = fontFeatures == null ? _this.fontFeatures : fontFeatures; t16 = decoration == null ? _this.decoration : decoration; t17 = decorationColor == null ? _this.decorationColor : decorationColor; t18 = decorationStyle == null ? _this.decorationStyle : decorationStyle; t19 = decorationThickness == null ? _this.decorationThickness : decorationThickness; t20 = fontFamily == null ? _this.get$_text_style$_fontFamily(_this) : fontFamily; t21 = fontFamilyFallback == null ? _this.get$fontFamilyFallback() : fontFamilyFallback; t22 = $package == null ? _this._package : $package; return A.TextStyle$(t4, t5, t3, null, t16, t17, t18, t19, t20, t21, t15, t6, t8, t7, t2, t12, t1, t13, t9, _this.locale, _this.overflow, t22, t14, t11, t10); }, copyWith$0() { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$24$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, leadingDistribution, letterSpacing, locale, overflow, $package, shadows, textBaseline, wordSpacing) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, null, leadingDistribution, letterSpacing, locale, overflow, $package, shadows, textBaseline, wordSpacing); }, copyWith$1$color(color) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$2$color$fontSize(color, fontSize) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, fontSize, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$1$letterSpacing(letterSpacing) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, letterSpacing, null, null, null, null, null, null); }, copyWith$1$height(height) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, height, null, null, null, null, null, null, null, null, null); }, copyWith$1$fontWeight(fontWeight) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, fontWeight, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$1$fontSize(fontSize) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, fontSize, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$1$inherit(inherit) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, inherit, null, null, null, null, null, null, null, null); }, copyWith$1$fontStyle(fontStyle) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, fontStyle, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$1$decoration(decoration) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, null, null, decoration, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$2$color$decoration(color, decoration) { return this.copyWith$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(null, null, color, null, decoration, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(color, decoration, decorationColor, decorationStyle, fontFamily, fontSizeDelta, fontSizeFactor) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, t1 = _this.foreground; if (t1 == null) t2 = color == null ? _this.color : color; else t2 = _null; t3 = _this.background; if (t3 == null) t4 = _this.backgroundColor; else t4 = _null; t5 = fontFamily == null ? _this.get$_text_style$_fontFamily(_this) : fontFamily; t6 = _this.get$fontFamilyFallback(); t7 = _this.fontSize; t7 = t7 == null ? _null : t7 * fontSizeFactor + fontSizeDelta; t8 = _this.fontWeight; t8 = t8 == null ? _null : B.List_27p[B.JSInt_methods.clamp$2(t8.index, 0, 8)]; t9 = _this.letterSpacing; t9 = t9 == null ? _null : t9 + 0; t10 = _this.wordSpacing; t10 = t10 == null ? _null : t10 + 0; t11 = _this.height; t11 = t11 == null ? _null : t11 + 0; t12 = _this.decorationThickness; t12 = t12 == null ? _null : t12 + 0; return A.TextStyle$(t3, t4, t2, _null, _this.decoration, _this.decorationColor, _this.decorationStyle, t12, t5, t6, _this.fontFeatures, t7, _this.fontStyle, t8, t1, t11, _this.inherit, _this.leadingDistribution, t9, _this.locale, _this.overflow, _this._package, _this.shadows, _this.textBaseline, t10); }, apply$1$color(color) { return this.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(color, null, null, null, null, 0, 1); }, merge$1(other) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22; if (other == null) return this; if (!other.inherit) return other; t1 = other.color; t2 = other.backgroundColor; t3 = other.fontSize; t4 = other.fontWeight; t5 = other.fontStyle; t6 = other.letterSpacing; t7 = other.wordSpacing; t8 = other.textBaseline; t9 = other.height; t10 = other.leadingDistribution; t11 = other.locale; t12 = other.foreground; t13 = other.background; t14 = other.shadows; t15 = other.fontFeatures; t16 = other.decoration; t17 = other.decorationColor; t18 = other.decorationStyle; t19 = other.decorationThickness; t20 = other.get$_text_style$_fontFamily(other); t21 = other.get$fontFamilyFallback(); t22 = other._package; return this.copyWith$24$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(t13, t2, t1, null, t16, t17, t18, t19, t20, t21, t15, t3, t5, t4, t12, t9, t10, t6, t11, other.overflow, t22, t14, t8, t7); }, getTextStyle$1$textScaleFactor(textScaleFactor) { var t3, t4, _this = this, t1 = _this.get$fontFamilyFallback(), t2 = _this.fontSize; t2 = t2 == null ? null : t2 * textScaleFactor; t3 = _this.background; if (t3 == null) { t3 = _this.backgroundColor; if (t3 != null) { t4 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t4.set$color(0, t3); t3 = t4; } else t3 = null; } return A.TextStyle_TextStyle(t3, _this.color, _this.decoration, _this.decorationColor, _this.decorationStyle, _this.decorationThickness, _this.fontFamily, t1, _this.fontFeatures, t2, _this.fontStyle, _this.fontWeight, _this.foreground, _this.height, _this.leadingDistribution, _this.letterSpacing, _this.locale, _this.shadows, _this.textBaseline, _this.wordSpacing); }, compareTo$1(_, other) { var t1, _this = this; if (_this === other) return B.RenderComparison_0; if (_this.inherit === other.inherit) if (_this.fontFamily == other.fontFamily) if (_this.fontSize == other.fontSize) if (_this.fontWeight == other.fontWeight) if (_this.fontStyle == other.fontStyle) if (_this.letterSpacing == other.letterSpacing) if (_this.wordSpacing == other.wordSpacing) if (_this.textBaseline == other.textBaseline) if (_this.height == other.height) if (_this.leadingDistribution == other.leadingDistribution) t1 = _this.foreground != other.foreground || _this.background != other.background || !A.listEquals0(_this.shadows, other.shadows) || !A.listEquals0(_this.fontFeatures, other.fontFeatures) || !A.listEquals0(_this.get$fontFamilyFallback(), other.get$fontFamilyFallback()) || false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return B.RenderComparison_3; if (!J.$eq$(_this.color, other.color) || !J.$eq$(_this.backgroundColor, other.backgroundColor) || !J.$eq$(_this.decoration, other.decoration) || !J.$eq$(_this.decorationColor, other.decorationColor) || _this.decorationStyle != other.decorationStyle || _this.decorationThickness != other.decorationThickness) return B.RenderComparison_2; return B.RenderComparison_0; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.TextStyle) if (other.inherit === _this.inherit) if (J.$eq$(other.color, _this.color)) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.fontSize == _this.fontSize) if (other.fontWeight == _this.fontWeight) if (other.fontStyle == _this.fontStyle) if (other.letterSpacing == _this.letterSpacing) if (other.wordSpacing == _this.wordSpacing) if (other.textBaseline == _this.textBaseline) if (other.height == _this.height) if (other.leadingDistribution == _this.leadingDistribution) t1 = other.foreground == _this.foreground && other.background == _this.background && A.listEquals0(other.shadows, _this.shadows) && A.listEquals0(other.fontFeatures, _this.fontFeatures) && J.$eq$(other.decoration, _this.decoration) && J.$eq$(other.decorationColor, _this.decorationColor) && other.decorationStyle == _this.decorationStyle && other.decorationThickness == _this.decorationThickness && other.fontFamily == _this.fontFamily && A.listEquals0(other.get$fontFamilyFallback(), _this.get$fontFamilyFallback()) && other._package == _this._package && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var t2, t3, _this = this, t1 = _this.shadows; t1 = t1 == null ? null : A.Object_hashAll(t1); t2 = _this.fontFeatures; t2 = t2 == null ? null : A.Object_hashAll(t2); if (_this.get$fontFamilyFallback() == null) t3 = null; else { t3 = _this.get$fontFamilyFallback(); t3.toString; t3 = A.Object_hashAll(t3); } return A.Object_hash(_this.inherit, _this.color, _this.backgroundColor, _this.fontSize, _this.fontWeight, _this.fontStyle, _this.letterSpacing, _this.wordSpacing, _this.textBaseline, _this.height, _this.leadingDistribution, _this.locale, _this.foreground, _this.background, t1, t2, _this.decoration, _this.decorationColor, _this.decorationStyle, A.Object_hash(_this.decorationThickness, _this.fontFamily, t3, _this._package, _this.overflow, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue)); }, toStringShort$0() { return "TextStyle"; } }; A.TextStyle_fontFamilyFallback_closure.prototype = { call$1(str) { return "packages/" + A.S(this.$this._package) + "/" + A.S(str); }, $signature: 108 }; A._TextStyle_Object_Diagnosticable.prototype = {}; A.FrictionSimulation.prototype = { x$1(_, time) { var _this = this, t1 = _this._v, t2 = _this._dragLog; return _this._friction_simulation$_x + t1 * Math.pow(_this._drag, time) / t2 - t1 / t2; }, dx$1(_, time) { A.checkNum(time); return this._v * Math.pow(this._drag, time); }, get$finalX() { return this._friction_simulation$_x - this._v / this._dragLog; }, timeAtX$1(x) { var t2, t3, _this = this, t1 = _this._friction_simulation$_x; if (x == t1) return 0; t2 = _this._v; if (t2 !== 0) if (t2 > 0) t3 = x < t1 || x > _this.get$finalX(); else t3 = x > t1 || x < _this.get$finalX(); else t3 = true; if (t3) return 1 / 0; t3 = _this._dragLog; return Math.log(t3 * (x - t1) / t2 + 1) / t3; }, isDone$1(time) { return Math.abs(this._v * Math.pow(this._drag, time)) < this.tolerance.velocity; }, toString$0(_) { return "FrictionSimulation(c\u2093: " + B.JSNumber_methods.toStringAsFixed$1(this._drag, 1) + ", x\u2080: " + J.toStringAsFixed$1$n(this._friction_simulation$_x, 1) + ", dx\u2080: " + J.toStringAsFixed$1$n(this._v, 1) + ")"; } }; A.Simulation.prototype = { toString$0(_) { return "Simulation"; } }; A.SpringDescription.prototype = { toString$0(_) { return "SpringDescription(mass: " + B.JSNumber_methods.toStringAsFixed$1(this.mass, 1) + ", stiffness: " + B.JSInt_methods.toStringAsFixed$1(this.stiffness, 1) + ", damping: " + B.JSNumber_methods.toStringAsFixed$1(this.damping, 1) + ")"; } }; A.SpringType.prototype = { toString$0(_) { return "SpringType." + this._core$_name; } }; A.SpringSimulation.prototype = { x$1(_, time) { return this._endPosition + this._solution.x$1(0, time); }, dx$1(_, time) { return this._solution.dx$1(0, time); }, isDone$1(time) { var t1 = this._solution; return A.nearEqual(t1.x$1(0, time), 0, this.tolerance.distance) && A.nearEqual(t1.dx$1(0, time), 0, this.tolerance.velocity); }, toString$0(_) { var t1 = this._solution; return "SpringSimulation(end: " + J.toStringAsFixed$1$n(this._endPosition, 1) + ", " + t1.get$type(t1).toString$0(0) + ")"; } }; A.ScrollSpringSimulation.prototype = { x$1(_, time) { return this.isDone$1(time) ? this._endPosition : this.super$SpringSimulation$x(0, time); } }; A._CriticalSolution.prototype = { x$1(_, time) { return (this._c1 + this._c2 * time) * Math.pow(2.718281828459045, this._r * time); }, dx$1(_, time) { var t1 = this._r, power = Math.pow(2.718281828459045, t1 * time), t2 = this._c2; return t1 * (this._c1 + t2 * time) * power + t2 * power; }, get$type(_) { return B.SpringType_0; } }; A._OverdampedSolution.prototype = { x$1(_, time) { var _this = this; return _this._c1 * Math.pow(2.718281828459045, _this._r1 * time) + _this._c2 * Math.pow(2.718281828459045, _this._r2 * time); }, dx$1(_, time) { var _this = this, t1 = _this._r1, t2 = _this._r2; return _this._c1 * t1 * Math.pow(2.718281828459045, t1 * time) + _this._c2 * t2 * Math.pow(2.718281828459045, t2 * time); }, get$type(_) { return B.SpringType_2; } }; A._UnderdampedSolution.prototype = { x$1(_, time) { var _this = this, t1 = _this._spring_simulation$_w * time; return Math.pow(2.718281828459045, _this._r * time) * (_this._c1 * Math.cos(t1) + _this._c2 * Math.sin(t1)); }, dx$1(_, time) { var t4, _this = this, t1 = _this._r, power = Math.pow(2.718281828459045, t1 * time), t2 = _this._spring_simulation$_w, t3 = t2 * time, cosine = Math.cos(t3), sine = Math.sin(t3); t3 = _this._c2; t4 = _this._c1; return power * (t3 * t2 * cosine - t4 * t2 * sine) + t1 * power * (t3 * sine + t4 * cosine); }, get$type(_) { return B.SpringType_1; } }; A.Tolerance.prototype = { toString$0(_) { return "Tolerance(distance: \xb1" + A.S(this.distance) + ", time: \xb10.001, velocity: \xb1" + A.S(this.velocity) + ")"; } }; A.RenderAnimatedSizeState.prototype = { toString$0(_) { return "RenderAnimatedSizeState." + this._core$_name; } }; A.RenderAnimatedSize.prototype = { RenderAnimatedSize$8$alignment$child$clipBehavior$curve$duration$reverseDuration$textDirection$vsync(alignment, child, clipBehavior, curve, duration, reverseDuration, textDirection, vsync) { var t2, _this = this, _s11_ = "_controller", t1 = A.AnimationController$(null, duration, reverseDuration, 1, null, vsync); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(new A.RenderAnimatedSize_closure(_this)); A._lateWriteOnceCheck(_this.__RenderAnimatedSize__controller, _s11_); _this.__RenderAnimatedSize__controller = t1; t1 = A.CurvedAnimation$(curve, A._lateReadCheck(t1, _s11_), null); A._lateWriteOnceCheck(_this.__RenderAnimatedSize__animation, "_animation"); _this.__RenderAnimatedSize__animation = t1; }, set$duration(_, value) { var _s11_ = "_controller"; if (value.$eq(0, A._lateReadCheck(this.__RenderAnimatedSize__controller, _s11_).duration)) return; A._lateReadCheck(this.__RenderAnimatedSize__controller, _s11_).duration = value; }, set$reverseDuration(value) { var _s11_ = "_controller"; if (value == A._lateReadCheck(this.__RenderAnimatedSize__controller, _s11_).reverseDuration) return; A._lateReadCheck(this.__RenderAnimatedSize__controller, _s11_).reverseDuration = value; }, set$curve(_, value) { var _s10_ = "_animation"; if (value === A._lateReadCheck(this.__RenderAnimatedSize__animation, _s10_).curve) return; A._lateReadCheck(this.__RenderAnimatedSize__animation, _s10_).curve = value; }, set$vsync(value) { var _this = this; if (value === _this._vsync) return; _this._vsync = value; A._lateReadCheck(_this.__RenderAnimatedSize__controller, "_controller").resync$1(_this._vsync); }, attach$1(owner) { this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$attach(owner); switch (this._animated_size$_state.index) { case 0: case 1: break; case 2: case 3: this.markNeedsLayout$0(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, detach$0(_) { A._lateReadCheck(this.__RenderAnimatedSize__controller, "_controller").stop$0(0); this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, performLayout$0() { var constraints, t1, t2, t3, _this = this, _s11_ = "_controller"; _this._animated_size$_lastValue = A._lateReadCheck(A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).__AnimationController__value, "_value"); _this.__RenderAnimatedSize__hasVisualOverflow = false; constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = constraints.minWidth >= constraints.maxWidth && constraints.minHeight >= constraints.maxHeight; else t2 = true; if (t2) { A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).stop$0(0); t1 = _this._sizeTween; _this._box$_size = t1.begin = t1.end = new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); _this._animated_size$_state = B.RenderAnimatedSizeState_0; t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$1(0, constraints); return; } t1.layout$2$parentUsesSize(0, constraints, true); switch (_this._animated_size$_state.index) { case 0: t1 = _this._sizeTween; t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_state = B.RenderAnimatedSizeState_1; break; case 1: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this._box$_size; t2.toString; t1.begin = t2; t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.end = t2; _this._animated_size$_lastValue = 0; A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).forward$1$from(0, 0); _this._animated_size$_state = B.RenderAnimatedSizeState_2; } else if (A._lateReadCheck(A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).__AnimationController__value, "_value") === A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).upperBound) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; } else { t2 = A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_)._ticker; if (!(t2 != null && t2._ticker$_future != null)) A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).forward$0(0); } break; case 2: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_lastValue = 0; A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).forward$1$from(0, 0); _this._animated_size$_state = B.RenderAnimatedSizeState_3; } else { _this._animated_size$_state = B.RenderAnimatedSizeState_1; t2 = A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_)._ticker; if (!(t2 != null && t2._ticker$_future != null)) A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).forward$0(0); } break; case 3: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_lastValue = 0; A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).forward$1$from(0, 0); } else { A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).stop$0(0); _this._animated_size$_state = B.RenderAnimatedSizeState_1; } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t2 = A._lateReadCheck(_this.__RenderAnimatedSize__animation, "_animation"); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; _this._box$_size = constraints.constrain$1(t2); _this.alignChild$0(); t2 = _this._box$_size; t3 = t2._dx; t1 = t1.end; if (t3 < t1._dx || t2._dy < t1._dy) _this.__RenderAnimatedSize__hasVisualOverflow = true; }, computeDryLayout$1(constraints) { var t2, childSize, _this = this, _s11_ = "_controller", t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = constraints.minWidth >= constraints.maxWidth && constraints.minHeight >= constraints.maxHeight; else t2 = true; if (t2) return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); childSize = t1.getDryLayout$1(constraints); switch (_this._animated_size$_state.index) { case 0: return constraints.constrain$1(childSize); case 1: t1 = _this._sizeTween; if (!J.$eq$(t1.end, childSize)) { t1 = _this._box$_size; t1.toString; return constraints.constrain$1(t1); } else if (A._lateReadCheck(A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).__AnimationController__value, "_value") === A._lateReadCheck(_this.__RenderAnimatedSize__controller, _s11_).upperBound) return constraints.constrain$1(childSize); break; case 3: case 2: t1 = _this._sizeTween; if (!J.$eq$(t1.end, childSize)) return constraints.constrain$1(childSize); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t2 = A._lateReadCheck(_this.__RenderAnimatedSize__animation, "_animation"); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; return constraints.constrain$1(t2); }, paint$2(context, offset) { var t3, _this = this, t1 = _this.RenderObjectWithChildMixin__child != null && A._lateReadCheck(_this.__RenderAnimatedSize__hasVisualOverflow, "_hasVisualOverflow") && _this._animated_size$_clipBehavior !== B.Clip_0, t2 = _this._clipRectLayer; if (t1) { t1 = _this._box$_size; t3 = t1._dx; t1 = t1._dy; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"), offset, new A.Rect(0, 0, 0 + t3, 0 + t1), A.RenderShiftedBox.prototype.get$paint.call(_this), _this._animated_size$_clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this.super$RenderShiftedBox$paint(context, offset); } }, dispose$0(_) { this._clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); } }; A.RenderAnimatedSize_closure.prototype = { call$0() { var t1 = this.$this; if (A._lateReadCheck(A._lateReadCheck(t1.__RenderAnimatedSize__controller, "_controller").__AnimationController__value, "_value") != t1._animated_size$_lastValue) t1.markNeedsLayout$0(); }, $signature: 0 }; A.RendererBinding.prototype = { handleMetricsChanged$0() { var _this = this, _s14_ = "_pipelineOwner", t1 = A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_)._rootNode; t1.toString; t1.set$configuration(_this.createViewConfiguration$0()); if (A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_)._rootNode.RenderObjectWithChildMixin__child != null) _this.scheduleForcedFrame$0(); }, handleTextScaleFactorChanged$0() { }, handlePlatformBrightnessChanged$0() { }, createViewConfiguration$0() { var t1 = $.$get$window(), devicePixelRatio = t1._debugDevicePixelRatio; if (devicePixelRatio == null) devicePixelRatio = A.EnginePlatformDispatcher_browserDevicePixelRatio(); return new A.ViewConfiguration(t1.get$physicalSize().$div(0, devicePixelRatio), devicePixelRatio); }, _handleSemanticsEnabledChanged$0() { var t1, _this = this; if ($.$get$EnginePlatformDispatcher__instance()._configuration.semanticsEnabled) { if (_this.RendererBinding__semanticsHandle == null) _this.RendererBinding__semanticsHandle = A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner").ensureSemantics$0(); } else { t1 = _this.RendererBinding__semanticsHandle; if (t1 != null) t1.dispose$0(0); _this.RendererBinding__semanticsHandle = null; } }, setSemanticsEnabled$1(enabled) { var t1, _this = this; if (enabled) { if (_this.RendererBinding__semanticsHandle == null) _this.RendererBinding__semanticsHandle = A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner").ensureSemantics$0(); } else { t1 = _this.RendererBinding__semanticsHandle; if (t1 != null) t1.dispose$0(0); _this.RendererBinding__semanticsHandle = null; } }, _handleWebFirstFrame$1(_) { B.MethodChannel_NIe._invokeMethod$1$3$arguments$missingOk("first-frame", null, false, type$.void); }, _handleSemanticsAction$3(id, action, args) { var t1 = A._lateReadCheck(this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._semanticsOwner; if (t1 != null) t1.performAction$3(id, action, null); }, _handleSemanticsOwnerCreated$0() { var t2, t1 = A._lateReadCheck(this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode; t1.toString; t2 = type$.nullable_PipelineOwner; t2._as(A.AbstractNode.prototype.get$owner.call(t1))._nodesNeedingSemantics.add$1(0, t1); t2._as(A.AbstractNode.prototype.get$owner.call(t1)).requestVisualUpdate$0(); }, _handleSemanticsOwnerDisposed$0() { A._lateReadCheck(this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.clearSemantics$0(); }, _handlePersistentFrameCallback$1(timeStamp) { this.drawFrame$0(); this._scheduleMouseTrackerUpdate$0(); }, _scheduleMouseTrackerUpdate$0() { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.RendererBinding__scheduleMouseTrackerUpdate_closure(this)); }, allowFirstFrame$0() { --this.RendererBinding__firstFrameDeferredCount; if (!this.RendererBinding__firstFrameSent) this.scheduleWarmUpFrame$0(); }, drawFrame$0() { var _this = this, _s14_ = "_pipelineOwner"; A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_).flushLayout$0(); A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_).flushCompositingBits$0(); A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_).flushPaint$0(); if (_this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0) { A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_)._rootNode.compositeFrame$0(); A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_).flushSemantics$0(); _this.RendererBinding__firstFrameSent = true; } }, $isHitTestTarget: 1, $isSchedulerBinding: 1 }; A.RendererBinding__scheduleMouseTrackerUpdate_closure.prototype = { call$1(duration) { var t1 = this.$this, t2 = t1.RendererBinding__mouseTracker; t2.toString; t2.updateAllDevices$1(A._lateReadCheck(t1.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.get$hitTestMouseTrackers()); }, $signature: 22 }; A.BoxConstraints.prototype = { copyWith$4$maxHeight$maxWidth$minHeight$minWidth(maxHeight, maxWidth, minHeight, minWidth) { var _this = this, t1 = minWidth == null ? _this.minWidth : minWidth, t2 = maxWidth == null ? _this.maxWidth : maxWidth, t3 = minHeight == null ? _this.minHeight : minHeight; return new A.BoxConstraints(t1, t2, t3, maxHeight == null ? _this.maxHeight : maxHeight); }, copyWith$2$minHeight$minWidth(minHeight, minWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, null, minHeight, minWidth); }, copyWith$2$maxWidth$minWidth(maxWidth, minWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, maxWidth, null, minWidth); }, copyWith$2$maxHeight$minHeight(maxHeight, minHeight) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(maxHeight, null, minHeight, null); }, copyWith$1$maxHeight(maxHeight) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(maxHeight, null, null, null); }, copyWith$1$maxWidth(maxWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, maxWidth, null, null); }, deflate$1(edges) { var _this = this, horizontal = edges.get$horizontal(), vertical = edges.get$_top(edges) + edges.get$_bottom(edges), deflatedMinWidth = Math.max(0, _this.minWidth - horizontal), deflatedMinHeight = Math.max(0, _this.minHeight - vertical); return new A.BoxConstraints(deflatedMinWidth, Math.max(deflatedMinWidth, _this.maxWidth - horizontal), deflatedMinHeight, Math.max(deflatedMinHeight, _this.maxHeight - vertical)); }, enforce$1(constraints) { var t4, _this = this, t1 = constraints.minWidth, t2 = constraints.maxWidth, t3 = J.clamp$2$n(_this.minWidth, t1, t2); t2 = J.clamp$2$n(_this.maxWidth, t1, t2); t1 = constraints.minHeight; t4 = constraints.maxHeight; return new A.BoxConstraints(t3, t2, J.clamp$2$n(_this.minHeight, t1, t4), J.clamp$2$n(_this.maxHeight, t1, t4)); }, tighten$2$height$width(height, width) { var t5, t6, _this = this, t1 = width == null, t2 = _this.minWidth, t3 = t1 ? t2 : B.JSNumber_methods.clamp$2(width, t2, _this.maxWidth), t4 = _this.maxWidth; t1 = t1 ? t4 : B.JSNumber_methods.clamp$2(width, t2, t4); t2 = height == null; t4 = _this.minHeight; t5 = t2 ? t4 : B.JSNumber_methods.clamp$2(height, t4, _this.maxHeight); t6 = _this.maxHeight; return new A.BoxConstraints(t3, t1, t5, t2 ? t6 : B.JSNumber_methods.clamp$2(height, t4, t6)); }, tighten$1$height(height) { return this.tighten$2$height$width(height, null); }, tighten$1$width(width) { return this.tighten$2$height$width(null, width); }, constrain$1(size) { var _this = this; return new A.Size(J.clamp$2$n(size._dx, _this.minWidth, _this.maxWidth), J.clamp$2$n(size._dy, _this.minHeight, _this.maxHeight)); }, constrainSizeAndAttemptToPreserveAspectRatio$1(size) { var width1, height, aspectRatio, height0, height1, _this = this, width = _this.minWidth, width0 = _this.maxWidth; if (width >= width0 && _this.minHeight >= _this.maxHeight) return new A.Size(B.JSInt_methods.clamp$2(0, width, width0), B.JSInt_methods.clamp$2(0, _this.minHeight, _this.maxHeight)); width1 = size._dx; height = size._dy; aspectRatio = width1 / height; if (width1 > width0) { height = width0 / aspectRatio; width1 = width0; } height0 = _this.maxHeight; if (height > height0) { width1 = height0 * aspectRatio; height = height0; } if (width1 < width) { height = width / aspectRatio; width1 = width; } height1 = _this.minHeight; if (height < height1) { width1 = height1 * aspectRatio; height = height1; } return new A.Size(B.JSNumber_methods.clamp$2(width1, width, width0), B.JSNumber_methods.clamp$2(height, height1, height0)); }, get$isTight() { var _this = this; return _this.minWidth >= _this.maxWidth && _this.minHeight >= _this.maxHeight; }, $mul(_, factor) { var _this = this; return new A.BoxConstraints(_this.minWidth * factor, _this.maxWidth * factor, _this.minHeight * factor, _this.maxHeight * factor); }, $div(_, factor) { var _this = this; return new A.BoxConstraints(_this.minWidth / factor, _this.maxWidth / factor, _this.minHeight / factor, _this.maxHeight / factor); }, get$isNormalized() { var _this = this, t1 = _this.minWidth; if (t1 >= 0) if (t1 <= _this.maxWidth) { t1 = _this.minHeight; t1 = t1 >= 0 && t1 <= _this.maxHeight; } else t1 = false; else t1 = false; return t1; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.BoxConstraints && other.minWidth == _this.minWidth && other.maxWidth == _this.maxWidth && other.minHeight == _this.minHeight && other.maxHeight == _this.maxHeight; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.minWidth, _this.maxWidth, _this.minHeight, _this.maxHeight, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var t2, _this = this, annotation = _this.get$isNormalized() ? "" : "; NOT NORMALIZED", t1 = _this.minWidth; if (t1 === 1 / 0 && _this.minHeight === 1 / 0) return "BoxConstraints(biggest" + annotation + ")"; if (t1 === 0 && _this.maxWidth === 1 / 0 && _this.minHeight === 0 && _this.maxHeight === 1 / 0) return "BoxConstraints(unconstrained" + annotation + ")"; t2 = new A.BoxConstraints_toString_describe(); return "BoxConstraints(" + A.S(t2.call$3(t1, _this.maxWidth, "w")) + ", " + A.S(t2.call$3(_this.minHeight, _this.maxHeight, "h")) + annotation + ")"; } }; A.BoxConstraints_toString_describe.prototype = { call$3(min, max, dim) { if (min == max) return dim + "=" + J.toStringAsFixed$1$n(min, 1); return J.toStringAsFixed$1$n(min, 1) + "<=" + dim + "<=" + J.toStringAsFixed$1$n(max, 1); }, $signature: 2178 }; A.BoxHitTestResult.prototype = { addWithPaintTransform$3$hitTest$position$transform(hitTest, position, transform) { if (transform != null) { transform = A.Matrix4_tryInvert(A.PointerEvent_removePerspectiveTransform(transform)); if (transform == null) return false; } return this.addWithRawTransform$3$hitTest$position$transform(hitTest, position, transform); }, addWithPaintOffset$3$hitTest$offset$position(hitTest, offset, position) { var isHit, t1 = offset == null, transformedPosition = t1 ? position : position.$sub(0, offset); t1 = !t1; if (t1) this._localTransforms.push(new A._OffsetTransformPart(new A.Offset(-offset._dx, -offset._dy))); isHit = hitTest.call$2(this, transformedPosition); if (t1) this.popTransform$0(); return isHit; }, addWithRawTransform$3$hitTest$position$transform(hitTest, position, transform) { var isHit, t1 = transform == null, transformedPosition = t1 ? position : A.MatrixUtils_transformPoint(transform, position); t1 = !t1; if (t1) this._localTransforms.push(new A._MatrixTransformPart(transform)); isHit = hitTest.call$2(this, transformedPosition); if (t1) this.popTransform$0(); return isHit; }, addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform(hitTest, paintOffset, paintTransform) { var isHit, _this = this; if (paintOffset != null) _this._localTransforms.push(new A._OffsetTransformPart(new A.Offset(-paintOffset._dx, -paintOffset._dy))); else { paintTransform.toString; paintTransform = A.Matrix4_tryInvert(A.PointerEvent_removePerspectiveTransform(paintTransform)); paintTransform.toString; _this._localTransforms.push(new A._MatrixTransformPart(paintTransform)); } isHit = hitTest.call$1(_this); _this.popTransform$0(); return isHit; }, addWithOutOfBandPosition$2$hitTest$paintTransform(hitTest, paintTransform) { return this.addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform(hitTest, null, paintTransform); }, addWithOutOfBandPosition$2$hitTest$paintOffset(hitTest, paintOffset) { return this.addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform(hitTest, paintOffset, null); } }; A.BoxHitTestEntry.prototype = { toString$0(_) { return "#" + A.shortHash(this.target) + "@" + A.S(this.localPosition); } }; A.BoxParentData.prototype = { toString$0(_) { return "offset=" + A.S(this.offset); } }; A.ContainerBoxParentData.prototype = {}; A._IntrinsicDimension.prototype = { toString$0(_) { return "_IntrinsicDimension." + this._core$_name; } }; A._IntrinsicDimensionsCacheEntry.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A._IntrinsicDimensionsCacheEntry && other.dimension === this.dimension && other.argument == this.argument; }, get$hashCode(_) { return A.Object_hash(this.dimension, this.argument, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.RenderBox.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.BoxParentData)) child.parentData = new A.BoxParentData(B.Offset_0_0); }, _computeIntrinsicDimension$3(dimension, argument, computer) { var t1, result; if ($.debugProfileLayoutsEnabled || $.RenderBox__debugIntrinsicsDepth === 0) A.Timeline_startSync(A.getRuntimeType(this).toString$0(0) + " intrinsics", B.Map_9aZ6I, null); $.RenderBox__debugIntrinsicsDepth = $.RenderBox__debugIntrinsicsDepth + 1; t1 = this._cachedIntrinsicDimensions; if (t1 == null) t1 = this._cachedIntrinsicDimensions = A.LinkedHashMap_LinkedHashMap$_empty(type$._IntrinsicDimensionsCacheEntry, type$.double); result = t1.putIfAbsent$2(0, new A._IntrinsicDimensionsCacheEntry(dimension, argument), new A.RenderBox__computeIntrinsicDimension_closure(computer, argument)); t1 = $.RenderBox__debugIntrinsicsDepth - 1; $.RenderBox__debugIntrinsicsDepth = t1; if ($.debugProfileLayoutsEnabled || t1 === 0) A.Timeline_finishSync(); return result; }, computeMinIntrinsicWidth$1(height) { return 0; }, computeMaxIntrinsicWidth$1(height) { return 0; }, computeMinIntrinsicHeight$1(width) { return 0; }, computeMaxIntrinsicHeight$1(width) { return 0; }, getDryLayout$1(constraints) { var t1, result, _this = this; if ($.debugProfileLayoutsEnabled || $.RenderBox__debugIntrinsicsDepth === 0) A.Timeline_startSync(A.getRuntimeType(_this).toString$0(0) + ".getDryLayout", B.Map_9aZ6I, null); $.RenderBox__debugIntrinsicsDepth = $.RenderBox__debugIntrinsicsDepth + 1; t1 = _this._cachedDryLayoutSizes; if (t1 == null) t1 = _this._cachedDryLayoutSizes = A.LinkedHashMap_LinkedHashMap$_empty(type$.BoxConstraints, type$.Size); result = t1.putIfAbsent$2(0, constraints, new A.RenderBox_getDryLayout_closure(_this, constraints)); t1 = $.RenderBox__debugIntrinsicsDepth - 1; $.RenderBox__debugIntrinsicsDepth = t1; if ($.debugProfileLayoutsEnabled || t1 === 0) A.Timeline_finishSync(); return result; }, computeDryLayout$1(constraints) { return B.Size_0_0; }, get$semanticBounds() { var t1 = this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, getDistanceToBaseline$2$onlyReal(baseline, onlyReal) { var result = this.getDistanceToActualBaseline$1(baseline); if (result == null && !onlyReal) return this._box$_size._dy; return result; }, getDistanceToBaseline$1(baseline) { return this.getDistanceToBaseline$2$onlyReal(baseline, false); }, getDistanceToActualBaseline$1(baseline) { var _this = this, t1 = _this._cachedBaselines; if (t1 == null) t1 = _this._cachedBaselines = A.LinkedHashMap_LinkedHashMap$_empty(type$.TextBaseline, type$.nullable_double); t1.putIfAbsent$2(0, baseline, new A.RenderBox_getDistanceToActualBaseline_closure(_this, baseline)); return _this._cachedBaselines.$index(0, baseline); }, computeDistanceToActualBaseline$1(baseline) { return null; }, get$constraints() { return type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this)); }, markNeedsLayout$0() { var t3, _this = this, t1 = _this._cachedBaselines, t2 = t1 == null; if (!(!t2 && t1._length !== 0)) { t3 = _this._cachedIntrinsicDimensions; if (!(t3 != null && t3._length !== 0)) { t3 = _this._cachedDryLayoutSizes; t3 = t3 != null && t3._length !== 0; } else t3 = true; } else t3 = true; if (t3) { if (!t2) t1.clear$0(0); t1 = _this._cachedIntrinsicDimensions; if (t1 != null) t1.clear$0(0); t1 = _this._cachedDryLayoutSizes; if (t1 != null) t1.clear$0(0); if (_this.get$parent(_this) instanceof A.RenderObject) { _this.markParentNeedsLayout$0(); return; } } _this.super$RenderObject$markNeedsLayout(); }, performResize$0() { this._box$_size = this.computeDryLayout$1(this.get$constraints()); }, performLayout$0() { }, hitTest$2$position(result, position) { var _this = this; if (_this._box$_size.contains$1(0, position)) if (_this.hitTestChildren$2$position(result, position) || _this.hitTestSelf$1(position)) { result.add$1(0, new A.BoxHitTestEntry(position, _this)); return true; } return false; }, hitTestSelf$1(position) { return false; }, hitTestChildren$2$position(result, position) { return false; }, applyPaintTransform$2(child, transform) { var offset, t1 = child.parentData; t1.toString; offset = type$.BoxParentData._as(t1).offset; transform.translate$2(0, offset._dx, offset._dy); }, globalToLocal$2$ancestor(point, ancestor) { var n, t1, i, d, t2, t3, s, transform = this.getTransformTo$1(0, ancestor); if (transform.copyInverse$1(transform) === 0) return B.Offset_0_0; n = new A.Vector3(new Float64Array(3)); n.setValues$3(0, 0, 1); t1 = new A.Vector3(new Float64Array(3)); t1.setValues$3(0, 0, 0); i = transform.perspectiveTransform$1(t1); t1 = new A.Vector3(new Float64Array(3)); t1.setValues$3(0, 0, 1); d = transform.perspectiveTransform$1(t1).$sub(0, i); t1 = point._dx; t2 = point._dy; t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(t1, t2, 0); s = transform.perspectiveTransform$1(t3); t3 = s.$sub(0, d.scaled$1(n.dot$1(s) / n.dot$1(d)))._v3storage; return new A.Offset(t3[0], t3[1]); }, globalToLocal$1(point) { return this.globalToLocal$2$ancestor(point, null); }, get$paintBounds() { var t1 = this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, handleEvent$2($event, entry) { this.super$RenderObject$handleEvent($event, entry); } }; A.RenderBox__computeIntrinsicDimension_closure.prototype = { call$0() { return this.computer.call$1(this.argument); }, $signature: 508 }; A.RenderBox_getDryLayout_closure.prototype = { call$0() { return this.$this.computeDryLayout$1(this.constraints); }, $signature: 2177 }; A.RenderBox_getDistanceToActualBaseline_closure.prototype = { call$0() { return this.$this.computeDistanceToActualBaseline$1(this.baseline); }, $signature: 2175 }; A.RenderBoxContainerDefaultsMixin.prototype = { defaultComputeDistanceToFirstActualBaseline$1(baseline) { var t1, childParentData, result, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1?"); child != null;) { childParentData = t1._as(child.parentData); result = child.getDistanceToActualBaseline$1(baseline); if (result != null) return result + childParentData.offset._dy; child = childParentData.ContainerParentDataMixin_nextSibling; } return null; }, defaultComputeDistanceToHighestActualBaseline$1(baseline) { var t1, result, t2, candidate, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"), result = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); candidate = child.getDistanceToActualBaseline$1(baseline); if (candidate != null) { candidate += t2.offset._dy; result = result != null ? Math.min(result, candidate) : candidate; } child = t2.ContainerParentDataMixin_nextSibling; } return result; }, defaultHitTestChildren$2$position(result, position) { var t2, child, _box_0 = {}, t1 = _box_0.child = this.ContainerRenderObjectMixin__lastChild; for (t2 = A._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"); t1 != null; t1 = child) { t1 = t1.parentData; t1.toString; t2._as(t1); if (result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure(_box_0, position, t1), t1.offset, position)) return true; child = t1.ContainerParentDataMixin_previousSibling; _box_0.child = child; } return false; }, defaultPaint$2(context, offset) { var t1, t2, t3, t4, t5, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"), t2 = offset._dx, t3 = offset._dy; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; context.paintChild$2(child, new A.Offset(t5._dx + t2, t5._dy + t3)); child = t4.ContainerParentDataMixin_nextSibling; } }, getChildrenAsList$0() { var t2, t3, t1 = A._instanceType(this), result = A._setArrayType([], t1._eval$1("JSArray")), child = this.ContainerRenderObjectMixin__firstChild; for (t2 = t1._eval$1("RenderBoxContainerDefaultsMixin.1"), t1 = t1._eval$1("RenderBoxContainerDefaultsMixin.0"); child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); result.push(t1._as(child)); child = t3.ContainerParentDataMixin_nextSibling; } return result; } }; A.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin.prototype = { detach$0(_) { this.super$ParentData$detach(0); } }; A.MultiChildLayoutParentData.prototype = { toString$0(_) { return this.super$BoxParentData$toString(0) + "; id=" + A.S(this.id); }, get$id(receiver) { return this.id; } }; A.MultiChildLayoutDelegate.prototype = { layoutChild$2(childId, constraints) { var t1, child = this._idToChild.$index(0, childId); child.layout$2$parentUsesSize(0, constraints, true); t1 = child._box$_size; t1.toString; return t1; }, positionChild$2(childId, offset) { var t1 = this._idToChild.$index(0, childId).parentData; t1.toString; type$.MultiChildLayoutParentData._as(t1).offset = offset; }, _callPerformLayout$2(size, firstChild) { var childParentData, t1, t2, t3, t4, child, _this = this, previousIdToChild = _this._idToChild; try { _this._idToChild = A.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$.RenderBox); for (t1 = type$.MultiChildLayoutParentData, t2 = firstChild; t2 != null; t2 = child) { t3 = t2.parentData; t3.toString; childParentData = t1._as(t3); t3 = _this._idToChild; t3.toString; t4 = childParentData.id; t4.toString; t3.$indexSet(0, t4, t2); child = childParentData.ContainerParentDataMixin_nextSibling; } _this.performLayout$1(size); } finally { _this._idToChild = previousIdToChild; } }, toString$0(_) { return "MultiChildLayoutDelegate"; } }; A.RenderCustomMultiChildLayoutBox.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.MultiChildLayoutParentData)) child.parentData = new A.MultiChildLayoutParentData(null, null, B.Offset_0_0); }, set$delegate(newDelegate) { var _this = this, t1 = _this._custom_layout$_delegate; if (t1 === newDelegate) return; if (A.getRuntimeType(newDelegate) !== A.getRuntimeType(t1) || newDelegate.shouldRelayout$1(t1)) _this.markNeedsLayout$0(); _this._custom_layout$_delegate = newDelegate; _this._node$_owner != null; }, attach$1(owner) { this.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$attach(owner); }, detach$0(_) { this.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$detach(0); }, computeMinIntrinsicWidth$1(height) { var t1 = A.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMaxIntrinsicWidth$1(height) { var t1 = A.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMinIntrinsicHeight$1(width) { var t1 = A.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeMaxIntrinsicHeight$1(width) { var t1 = A.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeDryLayout$1(constraints) { return constraints.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight))); }, performLayout$0() { var _this = this, t1 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); t1 = t1.constrain$1(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight))); _this._box$_size = t1; _this._custom_layout$_delegate._callPerformLayout$2(t1, _this.ContainerRenderObjectMixin__firstChild); }, paint$2(context, offset) { this.defaultPaint$2(context, offset); }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); } }; A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.MultiChildLayoutParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.MultiChildLayoutParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.CustomPainter.prototype = { addListener$1(_, listener) { var t1 = this._repaint; return t1 == null ? null : t1.addListener$1(0, listener); }, removeListener$1(_, listener) { var t1 = this._repaint; return t1 == null ? null : t1.removeListener$1(0, listener); }, get$semanticsBuilder() { return null; }, shouldRebuildSemantics$1(oldDelegate) { return this.shouldRepaint$1(oldDelegate); }, hitTest$1(position) { return null; }, toString$0(_) { var t1 = A.shortHash(this), t2 = this._repaint; t2 = t2 == null ? null : t2.toString$0(0); if (t2 == null) t2 = ""; return "#" + t1 + "(" + t2 + ")"; } }; A.CustomPainterSemantics.prototype = {}; A.RenderCustomPaint.prototype = { set$painter(value) { var t1 = this._painter; if (t1 == value) return; this._painter = value; this._didUpdatePainter$2(value, t1); }, set$foregroundPainter(value) { var t1 = this._foregroundPainter; if (t1 == value) return; this._foregroundPainter = value; this._didUpdatePainter$2(value, t1); }, _didUpdatePainter$2(newPainter, oldPainter) { var _this = this, t1 = newPainter == null; if (t1) _this.markNeedsPaint$0(); else if (oldPainter == null || A.getRuntimeType(newPainter) !== A.getRuntimeType(oldPainter) || newPainter.shouldRepaint$1(oldPainter)) _this.markNeedsPaint$0(); if (_this._node$_owner != null) { if (oldPainter != null) oldPainter.removeListener$1(0, _this.get$markNeedsPaint()); if (!t1) newPainter.addListener$1(0, _this.get$markNeedsPaint()); } if (t1) { if (_this._node$_owner != null) _this.markNeedsSemanticsUpdate$0(); } else if (oldPainter == null || A.getRuntimeType(newPainter) !== A.getRuntimeType(oldPainter) || newPainter.shouldRebuildSemantics$1(oldPainter)) _this.markNeedsSemanticsUpdate$0(); }, set$preferredSize(value) { if (this._preferredSize.$eq(0, value)) return; this._preferredSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dx; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); }, computeMaxIntrinsicWidth$1(height) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dx; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); }, computeMinIntrinsicHeight$1(width) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dy; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); }, computeMaxIntrinsicHeight$1(width) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dy; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); }, attach$1(owner) { var t1, _this = this; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); t1 = _this._painter; if (t1 != null) t1.addListener$1(0, _this.get$markNeedsPaint()); t1 = _this._foregroundPainter; if (t1 != null) t1.addListener$1(0, _this.get$markNeedsPaint()); }, detach$0(_) { var _this = this, t1 = _this._painter; if (t1 != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); t1 = _this._foregroundPainter; if (t1 != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, hitTestChildren$2$position(result, position) { var t1 = this._foregroundPainter; if (t1 != null) { t1 = t1.hitTest$1(position); t1 = t1 === true; } else t1 = false; if (t1) return true; return this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, hitTestSelf$1(position) { var t1 = this._painter; if (t1 != null) { t1 = t1.hitTest$1(position); t1 = t1 !== false; } else t1 = false; return t1; }, performLayout$0() { this.super$RenderProxyBoxMixin$performLayout(); this.markNeedsSemanticsUpdate$0(); }, computeSizeForNoChild$1(constraints) { return constraints.constrain$1(this._preferredSize); }, _paintWithPainter$3(canvas, offset, painter) { var t1; A._Cell$named("debugPreviousCanvasSaveCount"); canvas.save$0(0); if (!offset.$eq(0, B.Offset_0_0)) canvas.translate$2(0, offset._dx, offset._dy); t1 = this._box$_size; t1.toString; painter.paint$2(canvas, t1); canvas.restore$0(0); }, paint$2(context, offset) { var t1, t2, _this = this; if (_this._painter != null) { t1 = context.get$canvas(context); t2 = _this._painter; t2.toString; _this._paintWithPainter$3(t1, offset, t2); _this._setRasterCacheHints$1(context); } _this.super$RenderProxyBoxMixin$paint(context, offset); if (_this._foregroundPainter != null) { t1 = context.get$canvas(context); t2 = _this._foregroundPainter; t2.toString; _this._paintWithPainter$3(t1, offset, t2); _this._setRasterCacheHints$1(context); } }, _setRasterCacheHints$1(context) { }, describeSemanticsConfiguration$1(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._painter; _this._backgroundSemanticsBuilder = t1 == null ? null : t1.get$semanticsBuilder(); t1 = _this._foregroundPainter; t1 = t1 == null ? null : t1.get$semanticsBuilder(); _this._foregroundSemanticsBuilder = t1; config._isSemanticBoundary = _this._backgroundSemanticsBuilder != null || t1 != null; }, assembleSemanticsNode$3(node, config, children) { var t2, backgroundSemantics, foregroundSemantics, hasBackgroundSemantics, hasForegroundSemantics, _this = this, t1 = _this._backgroundSemanticsBuilder; if (t1 != null) { t2 = _this._box$_size; t2.toString; backgroundSemantics = t1.call$1(t2); } else backgroundSemantics = B.List_empty22; _this._backgroundSemanticsNodes = A.RenderCustomPaint__updateSemanticsChildren(_this._backgroundSemanticsNodes, backgroundSemantics); t1 = _this._foregroundSemanticsBuilder; if (t1 != null) { t2 = _this._box$_size; t2.toString; foregroundSemantics = t1.call$1(t2); } else foregroundSemantics = B.List_empty22; _this._foregroundSemanticsNodes = A.RenderCustomPaint__updateSemanticsChildren(_this._foregroundSemanticsNodes, foregroundSemantics); t1 = _this._backgroundSemanticsNodes; hasBackgroundSemantics = t1 != null && !t1.get$isEmpty(t1); t1 = _this._foregroundSemanticsNodes; hasForegroundSemantics = t1 != null && !t1.get$isEmpty(t1); t1 = A._setArrayType([], type$.JSArray_SemanticsNode); if (hasBackgroundSemantics) { t2 = _this._backgroundSemanticsNodes; t2.toString; B.JSArray_methods.addAll$1(t1, t2); } B.JSArray_methods.addAll$1(t1, children); if (hasForegroundSemantics) { t2 = _this._foregroundSemanticsNodes; t2.toString; B.JSArray_methods.addAll$1(t1, t2); } _this.super$RenderObject$assembleSemanticsNode(node, config, t1); }, clearSemantics$0() { this.super$RenderObject$clearSemantics(); this._foregroundSemanticsNodes = this._backgroundSemanticsNodes = null; } }; A.DebugOverflowIndicatorMixin.prototype = {}; A.TextSelectionPoint.prototype = { toString$0(_) { var _this = this; switch (_this.direction) { case B.TextDirection_1: return _this.point.toString$0(0) + "-ltr"; case B.TextDirection_0: return _this.point.toString$0(0) + "-rtl"; case null: return _this.point.toString$0(0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.VerticalCaretMovementRun.prototype = { get$isValid() { var _this = this; if (!_this._isValid) return false; if (_this._editable._editable$_textPainter.computeLineMetrics$0() !== _this._lineMetrics) _this._isValid = false; return _this._isValid; }, _getTextPositionForLine$1(lineNumber) { var t2, t3, newOffset, position, _this = this, t1 = _this._positionCache, cachedPosition = t1.$index(0, lineNumber); if (cachedPosition != null) return cachedPosition; t2 = _this._currentOffset._dx; t3 = _this._lineMetrics[lineNumber]; newOffset = new A.Offset(t2, t3.get$baseline(t3)); position = new A.MapEntry(newOffset, _this._editable._editable$_textPainter._paragraph.getPositionForOffset$1(newOffset), type$.MapEntry_Offset_TextPosition); t1.$indexSet(0, lineNumber, position); return position; }, get$current(_) { return this._currentTextPosition; }, moveNext$0() { var position, _this = this, t1 = _this._editable$_currentLine + 1; if (t1 >= _this._lineMetrics.length) return false; position = _this._getTextPositionForLine$1(t1); _this._editable$_currentLine = _this._editable$_currentLine + 1; _this._currentOffset = position.key; _this._currentTextPosition = position.value; return true; }, movePrevious$0() { var position, _this = this, t1 = _this._editable$_currentLine; if (t1 <= 0) return false; position = _this._getTextPositionForLine$1(t1 - 1); _this._editable$_currentLine = _this._editable$_currentLine - 1; _this._currentOffset = position.key; _this._currentTextPosition = position.value; return true; } }; A.RenderEditable.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.TextParentData)) child.parentData = new A.TextParentData(null, null, B.Offset_0_0); }, dispose$0(_) { var _this = this, t1 = _this._foregroundRenderObject; if (t1 != null) t1._layerHandle.set$layer(0, null); _this._foregroundRenderObject = null; t1 = _this._backgroundRenderObject; if (t1 != null) t1._layerHandle.set$layer(0, null); _this._backgroundRenderObject = null; _this._editable$_clipRectLayer.set$layer(0, null); t1 = _this._cachedBuiltInForegroundPainters; if (t1 != null) { t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } t1 = _this._cachedBuiltInPainters; if (t1 != null) { t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } _this.super$RenderObject$dispose(0); }, _updateForegroundPainter$1(newPainter) { var foregroundRenderObject, _this = this, effectivePainter = _this.get$_builtInForegroundPainters(), t1 = _this._foregroundRenderObject; if (t1 == null) { foregroundRenderObject = A._RenderEditableCustomPaint$(effectivePainter); _this.adoptChild$1(foregroundRenderObject); _this._foregroundRenderObject = foregroundRenderObject; } else t1.set$painter(effectivePainter); _this._editable$_foregroundPainter = newPainter; }, _editable$_extractPlaceholderSpans$1(span) { this.__RenderEditable__placeholderSpans = A._setArrayType([], type$.JSArray_PlaceholderSpan); span.visitChildren$1(new A.RenderEditable__extractPlaceholderSpans_closure(this)); }, _updatePainter$1(newPainter) { var backgroundRenderObject, _this = this, effectivePainter = _this.get$_builtInPainters(), t1 = _this._backgroundRenderObject; if (t1 == null) { backgroundRenderObject = A._RenderEditableCustomPaint$(effectivePainter); _this.adoptChild$1(backgroundRenderObject); _this._backgroundRenderObject = backgroundRenderObject; } else t1.set$painter(effectivePainter); _this._editable$_painter = newPainter; }, get$_caretPainter() { var t1, t2, _this = this, value = _this.__RenderEditable__caretPainter; if (value === $) { t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateInitializeOnceCheck(_this.__RenderEditable__caretPainter, "_caretPainter"); value = _this.__RenderEditable__caretPainter = new A._FloatingCursorPainter(_this.get$_onCaretChanged(), t1, B.Offset_0_0, t2); } return value; }, get$_builtInForegroundPainters() { var _this = this, t1 = _this._cachedBuiltInForegroundPainters; if (t1 == null) { t1 = A._setArrayType([], type$.JSArray_RenderEditablePainter); if (_this._paintCursorOnTop) t1.push(_this.get$_caretPainter()); t1 = _this._cachedBuiltInForegroundPainters = new A._CompositeRenderEditablePainter(t1, $.$get$ChangeNotifier__emptyListeners()); } return t1; }, get$_builtInPainters() { var _this = this, t1 = _this._cachedBuiltInPainters; if (t1 == null) { t1 = A._setArrayType([_this._autocorrectHighlightPainter, _this._selectionPainter], type$.JSArray_RenderEditablePainter); if (!_this._paintCursorOnTop) t1.push(_this.get$_caretPainter()); t1 = _this._cachedBuiltInPainters = new A._CompositeRenderEditablePainter(t1, $.$get$ChangeNotifier__emptyListeners()); } return t1; }, _onCaretChanged$1(caretRect) { if (!J.$eq$(this._lastCaretRect, caretRect)) this.onCaretChanged.call$1(caretRect); this._lastCaretRect = caretRect; }, set$textHeightBehavior(_, value) { return; }, set$textWidthBasis(value) { var t1 = this._editable$_textPainter; if (t1._textWidthBasis === value) return; t1.set$textWidthBasis(value); this.markNeedsTextLayout$0(); }, set$devicePixelRatio(_, value) { if (this._devicePixelRatio === value) return; this._devicePixelRatio = value; this.markNeedsTextLayout$0(); }, set$obscuringCharacter(value) { if (this._obscuringCharacter === value) return; this._obscuringCharacter = value; this.markNeedsLayout$0(); }, set$obscureText(value) { if (this._obscureText === value) return; this._obscureText = value; this.markNeedsSemanticsUpdate$0(); }, getLineAtOffset$1(position) { var line = this._editable$_textPainter._paragraph.getLineBoundary$1(position); if (this._obscureText) return A.TextSelection$(B.TextAffinity_1, 0, this.get$_plainText().length, false); return A.TextSelection$(B.TextAffinity_1, line.start, line.end, false); }, _setSelection$2(nextSelection, cause) { var textLength, t1; if (nextSelection.get$isValid()) { textLength = this.textSelectionDelegate._widget.controller._change_notifier$_value.text.length; nextSelection = nextSelection.copyWith$2$baseOffset$extentOffset(Math.min(A.checkNum(nextSelection.baseOffset), textLength), Math.min(A.checkNum(nextSelection.extentOffset), textLength)); } t1 = this.textSelectionDelegate._widget.controller._change_notifier$_value.copyWith$1$selection(nextSelection); this.textSelectionDelegate.userUpdateTextEditingValue$2(t1, cause); }, markNeedsPaint$0() { this.super$RenderObject$markNeedsPaint(); var t1 = this._foregroundRenderObject; if (t1 != null) t1.markNeedsPaint$0(); t1 = this._backgroundRenderObject; if (t1 != null) t1.markNeedsPaint$0(); }, markNeedsTextLayout$0() { this._textLayoutLastMinWidth = this._textLayoutLastMaxWidth = null; this.markNeedsLayout$0(); }, systemFontsDidChange$0() { var _this = this; _this.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange(); _this._editable$_textPainter.markNeedsLayout$0(); _this._textLayoutLastMinWidth = _this._textLayoutLastMaxWidth = null; }, get$_plainText() { var t1 = this._cachedPlainText; return t1 == null ? this._cachedPlainText = this._editable$_textPainter._text_painter$_text.toPlainText$1$includeSemanticsLabels(false) : t1; }, set$text(_, value) { var _this = this, t1 = _this._editable$_textPainter; if (J.$eq$(t1._text_painter$_text, value)) return; t1.set$text(0, value); _this._editable$_cachedCombinedSemanticsInfos = _this._cachedAttributedValue = _this._cachedPlainText = null; _this._editable$_extractPlaceholderSpans$1(value); _this.markNeedsTextLayout$0(); _this.markNeedsSemanticsUpdate$0(); }, set$textAlign(_, value) { var t1 = this._editable$_textPainter; if (t1._textAlign === value) return; t1.set$textAlign(0, value); this.markNeedsTextLayout$0(); }, set$textDirection(_, value) { var t1 = this._editable$_textPainter; if (t1._text_painter$_textDirection == value) return; t1.set$textDirection(0, value); this.markNeedsTextLayout$0(); this.markNeedsSemanticsUpdate$0(); }, set$locale(_, value) { var t1 = this._editable$_textPainter; if (J.$eq$(t1._text_painter$_locale, value)) return; t1.set$locale(0, value); this.markNeedsTextLayout$0(); }, set$strutStyle(_, value) { var t1 = this._editable$_textPainter; if (J.$eq$(t1._strutStyle, value)) return; t1.set$strutStyle(0, value); this.markNeedsTextLayout$0(); }, set$showCursor(value) { var _this = this, t1 = _this._showCursor; if (t1 === value) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$_showHideCursor()); _this._showCursor = value; if (_this._node$_owner != null) { _this.get$_caretPainter().set$shouldPaint(_this._showCursor._change_notifier$_value); _this._showCursor.addListener$1(0, _this.get$_showHideCursor()); } }, _showHideCursor$0() { this.get$_caretPainter().set$shouldPaint(this._showCursor._change_notifier$_value); }, set$hasFocus(value) { if (this._editable$_hasFocus === value) return; this._editable$_hasFocus = value; this.markNeedsSemanticsUpdate$0(); }, set$forceLine(value) { if (this._forceLine === value) return; this._forceLine = value; this.markNeedsLayout$0(); }, set$readOnly(_, value) { if (this._readOnly === value) return; this._readOnly = value; this.markNeedsSemanticsUpdate$0(); }, set$maxLines(_, value) { if (this._editable$_maxLines == value) return; this._editable$_maxLines = value; this.markNeedsTextLayout$0(); }, set$minLines(value) { if (this._minLines == value) return; this._minLines = value; this.markNeedsTextLayout$0(); }, set$expands(value) { if (this._expands === value) return; this._expands = value; this.markNeedsTextLayout$0(); }, set$textScaleFactor(value) { var t1 = this._editable$_textPainter; if (t1._text_painter$_textScaleFactor === value) return; t1.set$textScaleFactor(value); this.markNeedsTextLayout$0(); }, set$selection(value) { var _this = this; if (_this._selection.$eq(0, value)) return; _this._selection = value; _this._selectionPainter.set$highlightedRange(value); _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$offset(_, value) { var _this = this, t1 = _this._editable$_offset; if (t1 == value) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); _this._editable$_offset = value; if (_this._node$_owner != null) value.addListener$1(0, _this.get$markNeedsPaint()); _this.markNeedsLayout$0(); }, set$cursorWidth(value) { if (this._cursorWidth === value) return; this._cursorWidth = value; this.markNeedsLayout$0(); }, set$cursorHeight(value) { return; }, set$paintCursorAboveText(value) { var _this = this; if (_this._paintCursorOnTop === value) return; _this._paintCursorOnTop = value; _this._cachedBuiltInPainters = _this._cachedBuiltInForegroundPainters = null; _this._updateForegroundPainter$1(_this._editable$_foregroundPainter); _this._updatePainter$1(_this._editable$_painter); }, set$startHandleLayerLink(value) { if (this._editable$_startHandleLayerLink === value) return; this._editable$_startHandleLayerLink = value; this.markNeedsPaint$0(); }, set$endHandleLayerLink(value) { if (this._editable$_endHandleLayerLink === value) return; this._editable$_endHandleLayerLink = value; this.markNeedsPaint$0(); }, set$enableInteractiveSelection(value) { var _this = this; if (_this._enableInteractiveSelection === value) return; _this._enableInteractiveSelection = value; _this.markNeedsTextLayout$0(); _this.markNeedsSemanticsUpdate$0(); }, get$selectionEnabled() { var t1 = this._enableInteractiveSelection; return t1; }, getBoxesForSelection$1(selection) { var t1, t2; this._computeTextMetricsIfNeeded$0(); t1 = this._editable$_textPainter.getBoxesForSelection$1(selection); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Rect>"); return A.List_List$of(new A.MappedListIterable(t1, new A.RenderEditable_getBoxesForSelection_closure(this), t2), true, t2._eval$1("ListIterable.E")); }, describeSemanticsConfiguration$1(config) { var t1, t2, collector, buffer, attributes, t3, offset, _i, t4, info, label, t5, _i0, infoAttribute, originalRange, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._editable$_textPainter; t2 = t1._text_painter$_text; t2.toString; collector = A._setArrayType([], type$.JSArray_InlineSpanSemanticsInformation); t2.computeSemanticsInformation$1(collector); _this._editable$_semanticsInfo = collector; if (B.JSArray_methods.any$1(collector, new A.RenderEditable_describeSemanticsConfiguration_closure()) && A.defaultTargetPlatform() !== B.TargetPlatform_4) { config.explicitChildNodes = config._isSemanticBoundary = true; return; } t2 = _this._cachedAttributedValue; if (t2 == null) if (_this._obscureText) { t2 = new A.AttributedString(B.JSString_methods.$mul(_this._obscuringCharacter, _this.get$_plainText().length), B.List_empty3); _this._cachedAttributedValue = t2; } else { buffer = new A.StringBuffer(""); attributes = A._setArrayType([], type$.JSArray_StringAttribute); for (t2 = _this._editable$_semanticsInfo, t3 = t2.length, offset = 0, _i = 0, t4 = ""; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { info = t2[_i]; label = info.semanticsLabel; if (label == null) label = info.text; for (t4 = info.stringAttributes, t5 = t4.length, _i0 = 0; _i0 < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i0) { infoAttribute = t4[_i0]; originalRange = infoAttribute.range; attributes.push(infoAttribute.copy$1$range(0, new A.TextRange(offset + originalRange.start, offset + originalRange.end))); } t4 = buffer._contents += A.S(label); offset += label.length; } t2 = new A.AttributedString(t4.charCodeAt(0) == 0 ? t4 : t4, attributes); _this._cachedAttributedValue = t2; } config._semantics$_attributedValue = t2; config._hasBeenAnnotated = true; config._setFlag$2(B.SemanticsFlag_1024, _this._obscureText); config._setFlag$2(B.SemanticsFlag_524288, _this._editable$_maxLines !== 1); t2 = t1._text_painter$_textDirection; t2.toString; config._semantics$_textDirection = t2; config._hasBeenAnnotated = true; config._setFlag$2(B.SemanticsFlag_32, _this._editable$_hasFocus); config._setFlag$2(B.SemanticsFlag_16, true); config._setFlag$2(B.SemanticsFlag_1048576, _this._readOnly); if (_this._editable$_hasFocus && _this.get$selectionEnabled()) config.set$onSetSelection(_this.get$_handleSetSelection()); if (_this._editable$_hasFocus && !_this._readOnly) config.set$onSetText(_this.get$_handleSetText()); if (_this.get$selectionEnabled()) t2 = _this._selection.get$isValid(); else t2 = false; if (t2) { t2 = _this._selection; config._textSelection = t2; config._hasBeenAnnotated = true; if (t1.getOffsetBefore$1(t2.extentOffset) != null) { config.set$onMoveCursorBackwardByWord(_this.get$_handleMoveCursorBackwardByWord()); config.set$onMoveCursorBackwardByCharacter(_this.get$_handleMoveCursorBackwardByCharacter()); } if (t1.getOffsetAfter$1(_this._selection.extentOffset) != null) { config.set$onMoveCursorForwardByWord(_this.get$_handleMoveCursorForwardByWord()); config.set$onMoveCursorForwardByCharacter(_this.get$_handleMoveCursorForwardByCharacter()); } } }, _handleSetText$1(text) { this.textSelectionDelegate.userUpdateTextEditingValue$2(new A.TextEditingValue(text, A.TextSelection$collapsed(B.TextAffinity_1, text.length), B.TextRange_m1_m1), B.SelectionChangedCause_4); }, assembleSemanticsNode$3(node, config, children) { var child, newChildCache, t3, t4, t5, t6, t7, currentDirection, ordinal, start, placeholderIndex, childIndex, _i, info, start0, t8, t9, childNode, t10, t11, rects, rect, currentDirection0, t12, t13, currentRect, configuration, ordinal0, recognizer, paintRect, newChild, it, key, _this = this, _null = null, newChildren = A._setArrayType([], type$.JSArray_SemanticsNode), t1 = _this._editable$_textPainter, t2 = t1._text_painter$_textDirection; t2.toString; child = _this.ContainerRenderObjectMixin__firstChild; newChildCache = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Key, type$.SemanticsNode); t3 = _this._editable$_cachedCombinedSemanticsInfos; if (t3 == null) { t3 = _this._editable$_semanticsInfo; t3.toString; t3 = _this._editable$_cachedCombinedSemanticsInfos = A.combineSemanticsInfo(t3); } for (t4 = t3.length, t5 = type$.BoxConstraints, t6 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t7 = type$.TextParentData, currentDirection = t2, ordinal = 0, start = 0, placeholderIndex = 0, childIndex = 0, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i, start = start0) { info = t3[_i]; t2 = info.text; start0 = start + t2.length; t8 = start < start0; t9 = t8 ? start : start0; t8 = t8 ? start0 : start; if (info.isPlaceholder) { t2 = "PlaceholderSpanIndexSemanticsTag(" + placeholderIndex + ")"; while (true) { if (children.length > childIndex) { t8 = children[childIndex].tags; t8 = t8 != null && t8.contains$1(0, new A.PlaceholderSpanIndexSemanticsTag(placeholderIndex, t2)); } else t8 = false; if (!t8) break; childNode = children[childIndex]; t8 = child.parentData; t8.toString; t7._as(t8); t9 = childNode._semantics$_rect; t10 = t9.left; t11 = t9.top; t8 = t8.scale; t8.toString; t8 = new A.Rect(t10, t11, t10 + (t9.right - t10) * t8, t11 + (t9.bottom - t11) * t8); if (!t9.$eq(0, t8)) { childNode._semantics$_rect = t8; childNode._semantics$_markDirty$0(); } newChildren.push(childNode); ++childIndex; } t2 = child.parentData; t2.toString; child = t6._as(t2).ContainerParentDataMixin_nextSibling; ++placeholderIndex; } else { rects = t1._paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t9, t8, B.BoxHeightStyle_0, B.BoxWidthStyle_0); if (rects.length === 0) continue; t8 = B.JSArray_methods.get$first(rects); rect = new A.Rect(t8.left, t8.top, t8.right, t8.bottom); currentDirection0 = B.JSArray_methods.get$first(rects).direction; for (t8 = A._arrayInstanceType(rects), t9 = t8._eval$1("SubListIterable<1>"), t10 = new A.SubListIterable(rects, 1, _null, t9), t10.SubListIterable$3(rects, 1, _null, t8._precomputed1), t9 = new A.ListIterator(t10, t10.get$length(t10), t9._eval$1("ListIterator")); t9.moveNext$0();) { t8 = t9.__internal$_current; rect = rect.expandToInclude$1(new A.Rect(t8.left, t8.top, t8.right, t8.bottom)); currentDirection0 = t8.direction; } t8 = rect.left; t9 = Math.max(0, A.checkNum(t8)); t10 = rect.top; t11 = Math.max(0, A.checkNum(t10)); t8 = Math.min(rect.right - t8, A.checkNum(t5._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth)); t10 = Math.min(rect.bottom - t10, A.checkNum(t5._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); t12 = Math.floor(t9) - 4; t13 = Math.floor(t11) - 4; t8 = Math.ceil(t9 + t8) + 4; t10 = Math.ceil(t11 + t10) + 4; currentRect = new A.Rect(t12, t13, t8, t10); configuration = A.SemanticsConfiguration$(); ordinal0 = ordinal + 1; configuration._semantics$_sortKey = new A.OrdinalSortKey(ordinal, _null); configuration._hasBeenAnnotated = true; configuration._semantics$_textDirection = currentDirection; t11 = info.semanticsLabel; t2 = t11 == null ? t2 : t11; configuration._semantics$_attributedLabel = new A.AttributedString(t2, info.stringAttributes); recognizer = info.recognizer; if (recognizer != null) { t2 = recognizer.onTap; if (t2 != null) { configuration._addArgumentlessAction$2(B.SemanticsAction_1, t2); configuration._semantics$_onTap = t2; configuration._setFlag$2(B.SemanticsFlag_4194304, true); } } t2 = node.parentPaintClipRect; if (t2 != null) { paintRect = t2.intersect$1(currentRect); if (paintRect.left >= paintRect.right || paintRect.top >= paintRect.bottom) t2 = !(t12 >= t8 || t13 >= t10); else t2 = false; configuration._setFlag$2(B.SemanticsFlag_8192, t2); } newChild = A._Cell$named("newChild"); t2 = _this._cachedChildNodes; t8 = t2 == null ? _null : t2._length !== 0; if (t8 === true) { t2.toString; t8 = new A.LinkedHashMapKeyIterable(t2, A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>")); it = t8.get$iterator(t8); if (!it.moveNext$0()) A.throwExpression(A.IterableElementError_noElement()); t2 = t2.remove$1(0, it.get$current(it)); t2.toString; if (newChild.__late_helper$_value !== newChild) A.throwExpression(A.LateError$localAI(newChild.__late_helper$_name)); newChild.__late_helper$_value = t2; } else { key = new A.UniqueKey(); t2 = A.SemanticsNode$(key, _this._createShowOnScreenFor$1(key)); if (newChild.__late_helper$_value !== newChild) A.throwExpression(A.LateError$localAI(newChild.__late_helper$_name)); newChild.__late_helper$_value = t2; } if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); J.updateWith$1$config$z(t2, configuration); if (!t2._semantics$_rect.$eq(0, currentRect)) { t2._semantics$_rect = currentRect; t2._semantics$_markDirty$0(); } t2 = newChild.__late_helper$_value; if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); t8 = t2.key; t8.toString; newChildCache.$indexSet(0, t8, t2); t2 = newChild.__late_helper$_value; if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); newChildren.push(t2); ordinal = ordinal0; currentDirection = currentDirection0; } } _this._cachedChildNodes = newChildCache; node.updateWith$2$childrenInInversePaintOrder$config(0, newChildren, config); }, _createShowOnScreenFor$1(key) { return new A.RenderEditable__createShowOnScreenFor_closure(this, key); }, _handleSetSelection$1(selection) { this._setSelection$2(selection, B.SelectionChangedCause_4); }, _handleMoveCursorForwardByCharacter$1(extentSelection) { var _this = this, extentOffset = _this._editable$_textPainter.getOffsetAfter$1(_this._selection.extentOffset); if (extentOffset == null) return; _this._setSelection$2(A.TextSelection$(B.TextAffinity_1, !extentSelection ? extentOffset : _this._selection.baseOffset, extentOffset, false), B.SelectionChangedCause_4); }, _handleMoveCursorBackwardByCharacter$1(extentSelection) { var _this = this, extentOffset = _this._editable$_textPainter.getOffsetBefore$1(_this._selection.extentOffset); if (extentOffset == null) return; _this._setSelection$2(A.TextSelection$(B.TextAffinity_1, !extentSelection ? extentOffset : _this._selection.baseOffset, extentOffset, false), B.SelectionChangedCause_4); }, _handleMoveCursorForwardByWord$1(extentSelection) { var baseOffset, _this = this, t1 = _this._selection.get$extent(), nextWord = _this._getNextWord$1(_this._editable$_textPainter._paragraph.getWordBoundary$1(0, t1).end); if (nextWord == null) return; baseOffset = extentSelection ? _this._selection.baseOffset : nextWord.start; _this._setSelection$2(A.TextSelection$(B.TextAffinity_1, baseOffset, nextWord.start, false), B.SelectionChangedCause_4); }, _handleMoveCursorBackwardByWord$1(extentSelection) { var baseOffset, _this = this, t1 = _this._selection.get$extent(), previousWord = _this._getPreviousWord$1(_this._editable$_textPainter._paragraph.getWordBoundary$1(0, t1).start - 1); if (previousWord == null) return; baseOffset = extentSelection ? _this._selection.baseOffset : previousWord.start; _this._setSelection$2(A.TextSelection$(B.TextAffinity_1, baseOffset, previousWord.start, false), B.SelectionChangedCause_4); }, _getNextWord$1(offset) { var t1, range, t2; for (t1 = this._editable$_textPainter; true;) { range = t1._paragraph.getWordBoundary$1(0, new A.TextPosition(offset, B.TextAffinity_1)); t2 = range.start; t2 = !(t2 >= 0 && range.end >= 0) || t2 === range.end; if (t2) return null; if (!this._onlyWhitespace$1(range)) return range; offset = range.end; } }, _getPreviousWord$1(offset) { var t1, range, t2; for (t1 = this._editable$_textPainter; offset >= 0;) { range = t1._paragraph.getWordBoundary$1(0, new A.TextPosition(offset, B.TextAffinity_1)); t2 = range.start; t2 = !(t2 >= 0 && range.end >= 0) || t2 === range.end; if (t2) return null; if (!this._onlyWhitespace$1(range)) return range; offset = range.start - 1; } return null; }, _onlyWhitespace$1(range) { var i, t1, t2, t3; for (i = range.start, t1 = range.end, t2 = this._editable$_textPainter; i < t1; ++i) { t3 = t2._text_painter$_text.codeUnitAt$1(0, i); t3.toString; if (!A.TextLayoutMetrics_isWhitespace(t3)) return false; } return true; }, attach$1(owner) { var t1, _this = this, _null = null; _this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin$attach(owner); t1 = _this._foregroundRenderObject; if (t1 != null) t1.attach$1(owner); t1 = _this._backgroundRenderObject; if (t1 != null) t1.attach$1(owner); t1 = A.TapGestureRecognizer$(_this); t1.onTapDown = _this.get$_editable$_handleTapDown(); t1.onTap = _this.get$_editable$_handleTap(); _this.__RenderEditable__tap = t1; t1 = A.LongPressGestureRecognizer$(_this, _null, _null, _null, _null); t1.onLongPress = _this.get$_editable$_handleLongPress(); _this.__RenderEditable__longPress = t1; _this._editable$_offset.addListener$1(0, _this.get$markNeedsPaint()); _this.get$_caretPainter().set$shouldPaint(_this._showCursor._change_notifier$_value); _this._showCursor.addListener$1(0, _this.get$_showHideCursor()); }, detach$0(_) { var _this = this, t1 = A._lateReadCheck(_this.__RenderEditable__tap, "_tap"); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); t1 = A._lateReadCheck(_this.__RenderEditable__longPress, "_longPress"); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); _this._editable$_offset.removeListener$1(0, _this.get$markNeedsPaint()); _this._showCursor.removeListener$1(0, _this.get$_showHideCursor()); _this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin$detach(0); t1 = _this._foregroundRenderObject; if (t1 != null) t1.detach$0(0); t1 = _this._backgroundRenderObject; if (t1 != null) t1.detach$0(0); }, redepthChildren$0() { var _this = this, foregroundChild = _this._foregroundRenderObject, backgroundChild = _this._backgroundRenderObject; if (foregroundChild != null) _this.redepthChild$1(foregroundChild); if (backgroundChild != null) _this.redepthChild$1(backgroundChild); _this.super$ContainerRenderObjectMixin$redepthChildren(); }, visitChildren$1(visitor) { var foregroundChild = this._foregroundRenderObject, backgroundChild = this._backgroundRenderObject; if (foregroundChild != null) visitor.call$1(foregroundChild); if (backgroundChild != null) visitor.call$1(backgroundChild); this.super$ContainerRenderObjectMixin$visitChildren(visitor); }, get$_editable$_paintOffset() { switch ((this._editable$_maxLines !== 1 ? B.Axis_1 : B.Axis_0).index) { case 0: var t1 = this._editable$_offset._pixels; t1.toString; return new A.Offset(-t1, 0); case 1: t1 = this._editable$_offset._pixels; t1.toString; return new A.Offset(0, -t1); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_editable$_viewportExtent() { switch ((this._editable$_maxLines !== 1 ? B.Axis_1 : B.Axis_0).index) { case 0: return this._box$_size._dx; case 1: return this._box$_size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getMaxScrollExtent$1(contentSize) { switch ((this._editable$_maxLines !== 1 ? B.Axis_1 : B.Axis_0).index) { case 0: return Math.max(0, contentSize._dx - this._box$_size._dx); case 1: return Math.max(0, contentSize._dy - this._box$_size._dy); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getEndpointsForSelection$1(selection) { var paintOffset, boxes, t1, caretOffset, t2, t3, t4, start, end, _this = this; _this._computeTextMetricsIfNeeded$0(); paintOffset = _this.get$_editable$_paintOffset(); if (selection.start == selection.end) boxes = A._setArrayType([], type$.JSArray_TextBox); else { t1 = _this._selectionPainter; boxes = _this._editable$_textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, t1._selectionHeightStyle, t1._selectionWidthStyle); } if (boxes.length === 0) { t1 = _this._editable$_textPainter; t1._computeCaretMetrics$2(selection.get$extent(), A._lateReadCheck(_this.__RenderEditable__caretPrototype, "_caretPrototype")); caretOffset = A._lateReadCheck(t1.__TextPainter__caretMetrics, "_caretMetrics").offset; return A._setArrayType([new A.TextSelectionPoint(new A.Offset(0, t1.get$preferredLineHeight()).$add(0, caretOffset).$add(0, paintOffset), null)], type$.JSArray_TextSelectionPoint); } else { t1 = B.JSArray_methods.get$first(boxes); t1 = t1.direction === B.TextDirection_1 ? t1.left : t1.right; t2 = _this._editable$_textPainter; t3 = t2.get$width(t2); t4 = t2._paragraph; t4 = t4.get$height(t4); t4.toString; Math.ceil(t4); start = new A.Offset(J.clamp$2$n(t1, 0, t3), B.JSArray_methods.get$first(boxes).bottom).$add(0, paintOffset); t3 = B.JSArray_methods.get$last(boxes); t1 = t3.direction === B.TextDirection_1 ? t3.right : t3.left; t3 = t2.get$width(t2); t2 = t2._paragraph; t2 = t2.get$height(t2); t2.toString; Math.ceil(t2); end = new A.Offset(J.clamp$2$n(t1, 0, t3), B.JSArray_methods.get$last(boxes).bottom).$add(0, paintOffset); return A._setArrayType([new A.TextSelectionPoint(start, B.JSArray_methods.get$first(boxes).direction), new A.TextSelectionPoint(end, B.JSArray_methods.get$last(boxes).direction)], type$.JSArray_TextSelectionPoint); } }, getRectForComposingRange$1(range) { var t1, _this = this; if (!range.get$isValid() || range.start == range.end) return null; _this._computeTextMetricsIfNeeded$0(); t1 = _this._selectionPainter; t1 = B.JSArray_methods.fold$1$2(_this._editable$_textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(A.TextSelection$(B.TextAffinity_1, range.start, range.end, false), t1._selectionHeightStyle, t1._selectionWidthStyle), null, new A.RenderEditable_getRectForComposingRange_closure(), type$.nullable_Rect); return t1 == null ? null : t1.shift$1(_this.get$_editable$_paintOffset()); }, getPositionForPoint$1(globalPosition) { var t1, _this = this; _this._computeTextMetricsIfNeeded$0(); t1 = _this.get$_editable$_paintOffset(); t1 = _this.globalToLocal$1(globalPosition.$add(0, new A.Offset(-t1._dx, -t1._dy))); return _this._editable$_textPainter._paragraph.getPositionForOffset$1(t1); }, getLocalRectForCaret$1(caretPosition) { var t1, caretOffset, t2, rect, _this = this; _this._computeTextMetricsIfNeeded$0(); t1 = _this._editable$_textPainter; t1._computeCaretMetrics$2(caretPosition, A._lateReadCheck(_this.__RenderEditable__caretPrototype, "_caretPrototype")); caretOffset = A._lateReadCheck(t1.__TextPainter__caretMetrics, "_caretMetrics").offset; t2 = _this._cursorWidth; t1 = t1.get$preferredLineHeight(); rect = new A.Rect(0, 0, t2, 0 + t1).shift$1(caretOffset.$add(0, _this.get$_editable$_paintOffset()).$add(0, _this.get$_caretPainter()._cursorOffset)); return rect.shift$1(_this._snapToPhysicalPixel$1(new A.Offset(rect.left, rect.top))); }, computeMinIntrinsicWidth$1(height) { var t1; this._layoutText$0(); t1 = this._editable$_textPainter._paragraph.get$minIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, computeMaxIntrinsicWidth$1(height) { var t1; this._layoutText$0(); t1 = this._editable$_textPainter._paragraph.get$maxIntrinsicWidth(); t1.toString; return Math.ceil(t1) + (1 + this._cursorWidth); }, _preferredHeight$1(width) { var minLimited, text, lines, index, _this = this, t1 = _this._editable$_maxLines, t2 = t1 != null, lockedMax = t2 && _this._minLines == null, t3 = _this._minLines, t4 = t3 != null, lockedBoth = t4 && t3 === t1; if (t1 === 1 || lockedMax || lockedBoth) { t1 = _this._editable$_textPainter.get$preferredLineHeight(); t2 = _this._editable$_maxLines; t2.toString; return t1 * t2; } minLimited = t4 && t3 > 1; if (minLimited || t2) { _this._layoutText$1$maxWidth(width); if (minLimited) { t1 = _this._editable$_textPainter; t3 = t1._paragraph; t3 = t3.get$height(t3); t3.toString; t3 = Math.ceil(t3); t1 = t1.get$preferredLineHeight(); t4 = _this._minLines; t4.toString; t4 = t3 < t1 * t4; t1 = t4; } else t1 = false; if (t1) { t1 = _this._editable$_textPainter.get$preferredLineHeight(); t2 = _this._minLines; t2.toString; return t1 * t2; } if (t2) { t1 = _this._editable$_textPainter; t2 = t1._paragraph; t2 = t2.get$height(t2); t2.toString; t2 = Math.ceil(t2); t1 = t1.get$preferredLineHeight(); t3 = _this._editable$_maxLines; t3.toString; t3 = t2 > t1 * t3; t1 = t3; } else t1 = false; if (t1) { t1 = _this._editable$_textPainter.get$preferredLineHeight(); t2 = _this._editable$_maxLines; t2.toString; return t1 * t2; } } if (width === 1 / 0) { text = _this.get$_plainText(); for (t1 = text.length, lines = 1, index = 0; index < t1; ++index) if (B.JSString_methods._codeUnitAt$1(text, index) === 10) ++lines; return _this._editable$_textPainter.get$preferredLineHeight() * lines; } _this._layoutText$1$maxWidth(width); t1 = _this._editable$_textPainter; t2 = t1.get$preferredLineHeight(); t1 = t1._paragraph; t1 = t1.get$height(t1); t1.toString; t1 = Math.ceil(t1); return Math.max(A.checkNum(t2), t1); }, computeMinIntrinsicHeight$1(width) { return this._preferredHeight$1(width); }, computeMaxIntrinsicHeight$1(width) { return this._preferredHeight$1(width); }, computeDistanceToActualBaseline$1(baseline) { this._computeTextMetricsIfNeeded$0(); return this._editable$_textPainter.computeDistanceToActualBaseline$1(baseline); }, hitTestSelf$1(position) { return true; }, hitTestChildren$2$position(result, position) { var hitText, t2, t3, t4, childIndex, t5, t6, t7, transform, child, _this = this, _box_0 = {}, effectivePosition = position.$sub(0, _this.get$_editable$_paintOffset()), t1 = _this._editable$_textPainter, textPosition = t1._paragraph.getPositionForOffset$1(effectivePosition), span = t1._text_painter$_text.getSpanForPosition$1(textPosition); if (span != null && type$.HitTestTarget._is(span)) { result.add$1(0, new A.HitTestEntry(type$.HitTestTarget._as(span), type$.HitTestEntry_HitTestTarget)); hitText = true; } else hitText = false; t2 = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; t3 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t4 = type$.TextParentData; childIndex = 0; while (true) { if (!(t2 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t2 = t2.parentData; t2.toString; t4._as(t2); t5 = t2.offset; t6 = t5._dx; t5 = t5._dy; t7 = new Float64Array(16); transform = new A.Matrix4(t7); transform.setIdentity$0(); t7[14] = 0; t7[13] = t5; t7[12] = t6; t6 = t2.scale; transform.scale$3(0, t6, t6, t6); if (result.addWithPaintTransform$3$hitTest$position$transform(new A.RenderEditable_hitTestChildren_closure(_box_0, position, t2), position, transform)) return true; t2 = _box_0.child.parentData; t2.toString; child = t3._as(t2).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t2 = child; } return hitText; }, handleEvent$2($event, entry) { type$.PointerDownEvent._is($event); }, _editable$_handleTapDown$1(details) { this._lastTapDownPosition = details.globalPosition; }, _editable$_handleTap$0() { var t1 = this._lastTapDownPosition; t1.toString; this.selectPositionAt$2$cause$from(B.SelectionChangedCause_0, t1); }, _editable$_handleLongPress$0() { var t1 = this._lastTapDownPosition; t1.toString; this.selectWordsInRange$2$cause$from(B.SelectionChangedCause_2, t1); }, selectPositionAt$3$cause$from$to(cause, from, to) { var fromPosition, toPosition, baseOffset, extentOffset, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = _this._editable$_textPainter; t1 = _this.globalToLocal$1(from.$sub(0, _this.get$_editable$_paintOffset())); fromPosition = t2._paragraph.getPositionForOffset$1(t1); if (to == null) toPosition = null; else { t1 = _this.globalToLocal$1(to.$sub(0, _this.get$_editable$_paintOffset())); toPosition = t2._paragraph.getPositionForOffset$1(t1); } baseOffset = fromPosition.offset; extentOffset = toPosition == null ? null : toPosition.offset; if (extentOffset == null) extentOffset = baseOffset; _this._setSelection$2(A.TextSelection$(fromPosition.affinity, baseOffset, extentOffset, false), cause); }, selectPositionAt$2$cause$from(cause, from) { return this.selectPositionAt$3$cause$from$to(cause, from, null); }, selectWordsInRange$3$cause$from$to(cause, from, to) { var t1, t2, firstWord, lastWord, _this = this; _this._computeTextMetricsIfNeeded$0(); t1 = _this._editable$_textPainter; t2 = _this.globalToLocal$1(from.$sub(0, _this.get$_editable$_paintOffset())); firstWord = _this._getWordAtOffset$1(t1._paragraph.getPositionForOffset$1(t2)); if (to == null) lastWord = firstWord; else { t2 = _this.globalToLocal$1(to.$sub(0, _this.get$_editable$_paintOffset())); lastWord = _this._getWordAtOffset$1(t1._paragraph.getPositionForOffset$1(t2)); } _this._setSelection$2(A.TextSelection$(firstWord.affinity, firstWord.get$base().offset, lastWord.get$extent().offset, false), cause); }, selectWordsInRange$2$cause$from(cause, from) { return this.selectWordsInRange$3$cause$from$to(cause, from, null); }, selectWordEdge$1$cause(cause) { var t1, t2, position, word, newSelection, _this = this; _this._computeTextMetricsIfNeeded$0(); t1 = _this._editable$_textPainter; t2 = _this._lastTapDownPosition; t2.toString; t2 = _this.globalToLocal$1(t2.$sub(0, _this.get$_editable$_paintOffset())); position = t1._paragraph.getPositionForOffset$1(t2); word = t1._paragraph.getWordBoundary$1(0, position); newSelection = A._Cell$named("newSelection"); t1 = word.start; if (position.offset - t1 <= 1) newSelection.__late_helper$_value = A.TextSelection$collapsed(B.TextAffinity_1, t1); else newSelection.__late_helper$_value = A.TextSelection$collapsed(B.TextAffinity_0, word.end); _this._setSelection$2(newSelection._readLocal$0(), cause); }, _getWordAtOffset$1(position) { var t3, previousWord, nextWord, _this = this, word = _this._editable$_textPainter._paragraph.getWordBoundary$1(0, position), t1 = position.offset, t2 = word.end; if (t1 >= t2) return A.TextSelection$fromPosition(position); if (_this._obscureText) return A.TextSelection$(B.TextAffinity_1, 0, _this.get$_plainText().length, false); else if (A.TextLayoutMetrics_isWhitespace(J.codeUnitAt$1$s(_this.get$_plainText(), t1)) && t1 > 0) { t3 = word.start; previousWord = _this._getPreviousWord$1(t3); switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: if (previousWord == null) { nextWord = _this._getNextWord$1(t3); if (nextWord == null) return A.TextSelection$collapsed(B.TextAffinity_1, t1); return A.TextSelection$(B.TextAffinity_1, t1, nextWord.end, false); } return A.TextSelection$(B.TextAffinity_1, previousWord.start, t1, false); case B.TargetPlatform_0: if (_this._readOnly) { if (previousWord == null) return A.TextSelection$(B.TextAffinity_1, t1, t1 + 1, false); return A.TextSelection$(B.TextAffinity_1, previousWord.start, t1, false); } break; case B.TargetPlatform_1: case B.TargetPlatform_4: case B.TargetPlatform_3: case B.TargetPlatform_5: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } return A.TextSelection$(B.TextAffinity_1, word.start, t2, false); }, _layoutChildren$2$dry(constraints, dry) { var child, placeholderDimensions, boxConstraints, t2, childIndex, t3, t4, baselineOffset, childSize, _this = this, _s17_ = "_placeholderSpans", t1 = _this.ContainerRenderObjectMixin__childCount; if (t1 === 0) { t1 = type$.JSArray_PlaceholderDimensions; _this._editable$_textPainter.setPlaceholderDimensions$1(A._setArrayType([], t1)); return A._setArrayType([], t1); } child = _this.ContainerRenderObjectMixin__firstChild; placeholderDimensions = A.List_List$filled(t1, B.PlaceholderDimensions_8eb, false, type$.PlaceholderDimensions); boxConstraints = new A.BoxConstraints(0, constraints.maxWidth, 0, 1 / 0).$div(0, _this._editable$_textPainter._text_painter$_textScaleFactor); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t2 = !dry, childIndex = 0; child != null;) { if (t2) { child.layout$2$parentUsesSize(0, boxConstraints, true); t3 = child._box$_size; t3.toString; switch (J.$index$asx(A._lateReadCheck(_this.__RenderEditable__placeholderSpans, _s17_), childIndex).alignment.index) { case 0: t4 = J.$index$asx(A._lateReadCheck(_this.__RenderEditable__placeholderSpans, _s17_), childIndex).baseline; t4.toString; baselineOffset = child.getDistanceToBaseline$1(t4); break; case 1: case 2: case 4: case 5: case 3: baselineOffset = null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } childSize = t3; } else { childSize = child.getDryLayout$1(boxConstraints); baselineOffset = null; } J.$index$asx(A._lateReadCheck(_this.__RenderEditable__placeholderSpans, _s17_), childIndex).toString; placeholderDimensions[childIndex] = new A.PlaceholderDimensions(childSize, baselineOffset, J.$index$asx(A._lateReadCheck(_this.__RenderEditable__placeholderSpans, _s17_), childIndex).baseline); t3 = child.parentData; t3.toString; child = t1._as(t3).ContainerParentDataMixin_nextSibling; ++childIndex; } return placeholderDimensions; }, _layoutChildren$1(constraints) { return this._layoutChildren$2$dry(constraints, false); }, _setParentData$0() { var t4, t5, child = this.ContainerRenderObjectMixin__firstChild, t1 = type$.TextParentData, t2 = this._editable$_textPainter, t3 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; while (true) { if (!(child != null && childIndex < t2._inlinePlaceholderBoxes.length)) break; t4 = child.parentData; t4.toString; t1._as(t4); t5 = t2._inlinePlaceholderBoxes[childIndex]; t4.offset = new A.Offset(t5.left, t5.top); t4.scale = t2._inlinePlaceholderScales[childIndex]; child = t3._as(t4).ContainerParentDataMixin_nextSibling; ++childIndex; } }, _layoutText$2$maxWidth$minWidth(maxWidth, minWidth) { var _this = this, availableMaxWidth = Math.max(0, maxWidth - (1 + _this._cursorWidth)), availableMinWidth = Math.min(A.checkNum(minWidth), availableMaxWidth), textMaxWidth = _this._editable$_maxLines !== 1 ? availableMaxWidth : 1 / 0, textMinWidth = _this._forceLine ? availableMaxWidth : availableMinWidth; _this._editable$_textPainter.layout$2$maxWidth$minWidth(0, textMaxWidth, textMinWidth); _this._textLayoutLastMinWidth = minWidth; _this._textLayoutLastMaxWidth = maxWidth; }, _layoutText$0() { return this._layoutText$2$maxWidth$minWidth(1 / 0, 0); }, _layoutText$1$maxWidth(maxWidth) { return this._layoutText$2$maxWidth$minWidth(maxWidth, 0); }, _computeTextMetricsIfNeeded$0() { var t1 = type$.BoxConstraints, t2 = t1._as(A.RenderObject.prototype.get$constraints.call(this)).minWidth; this._layoutText$2$maxWidth$minWidth(t1._as(A.RenderObject.prototype.get$constraints.call(this)).maxWidth, t2); }, _snapToPhysicalPixel$1(sourceOffset) { var t2, globalOffset = A.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), sourceOffset), pixelMultiple = 1 / this._devicePixelRatio, t1 = globalOffset._dx; t1.toString; t1 = isFinite(t1) ? B.JSNumber_methods.round$0(t1 / pixelMultiple) * pixelMultiple - t1 : 0; t2 = globalOffset._dy; t2.toString; return new A.Offset(t1, isFinite(t2) ? B.JSNumber_methods.round$0(t2 / pixelMultiple) * pixelMultiple - t2 : 0); }, _canComputeDryLayout$0() { var t1, t2, _i; for (t1 = A._lateReadCheck(this.__RenderEditable__placeholderSpans, "_placeholderSpans"), t2 = t1.length, _i = 0; _i < t2; ++_i) switch (t1[_i].alignment.index) { case 0: case 1: case 2: return false; case 3: case 5: case 4: continue; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return true; }, computeDryLayout$1(constraints) { var t1, t2, width, width0, t3, _this = this; if (!_this._canComputeDryLayout$0()) return B.Size_0_0; t1 = _this._editable$_textPainter; t1.setPlaceholderDimensions$1(_this._layoutChildren$2$dry(constraints, true)); t2 = constraints.minWidth; width = constraints.maxWidth; _this._layoutText$2$maxWidth$minWidth(width, t2); if (_this._forceLine) width0 = width; else { t3 = t1.get$width(t1); t1 = t1._paragraph; t1 = t1.get$height(t1); t1.toString; Math.ceil(t1); width0 = B.JSNumber_methods.clamp$2(t3 + (1 + _this._cursorWidth), t2, width); } return new A.Size(width0, B.JSNumber_methods.clamp$2(_this._preferredHeight$1(width), constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t2, t3, width, t4, t5, t6, contentSize, painterConstraints, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._layoutChildren$1(constraints); _this._editable$_placeholderDimensions = t1; t2 = _this._editable$_textPainter; t2.setPlaceholderDimensions$1(t1); _this._computeTextMetricsIfNeeded$0(); _this._setParentData$0(); switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: case B.TargetPlatform_4: t1 = _this._cursorWidth; t3 = t2.get$preferredLineHeight(); _this.__RenderEditable__caretPrototype = new A.Rect(0, 0, t1, 0 + (t3 + 2)); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = _this._cursorWidth; t3 = t2.get$preferredLineHeight(); _this.__RenderEditable__caretPrototype = new A.Rect(0, 2, t1, 2 + (t3 - 4)); break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } t1 = t2.get$width(t2); t3 = t2._paragraph; t3 = t3.get$height(t3); t3.toString; t3 = Math.ceil(t3); if (_this._forceLine) { width = constraints.maxWidth; t2 = width; } else { t4 = t2.get$width(t2); t2 = t2._paragraph; t2 = t2.get$height(t2); t2.toString; Math.ceil(t2); t2 = _this._cursorWidth; t5 = constraints.minWidth; t6 = constraints.maxWidth; width = B.JSNumber_methods.clamp$2(t4 + (1 + t2), t5, t6); t2 = t6; } constraints.toString; _this._box$_size = new A.Size(width, B.JSNumber_methods.clamp$2(_this._preferredHeight$1(t2), constraints.minHeight, constraints.maxHeight)); contentSize = new A.Size(t1 + (1 + _this._cursorWidth), t3); painterConstraints = A.BoxConstraints$tight(contentSize); t3 = _this._foregroundRenderObject; if (t3 != null) t3.layout$1(0, painterConstraints); t1 = _this._backgroundRenderObject; if (t1 != null) t1.layout$1(0, painterConstraints); _this._editable$_maxScrollExtent = _this._getMaxScrollExtent$1(contentSize); _this._editable$_offset.applyViewportDimension$1(_this.get$_editable$_viewportExtent()); _this._editable$_offset.applyContentDimensions$2(0, _this._editable$_maxScrollExtent); }, setFloatingCursor$4$resetLerpValue(state, boundedOffset, lastTextPosition, resetLerpValue) { var t1, sizeAdjustment, _this = this; if (state === B.FloatingCursorDragState_0) { _this._relativeOrigin = B.Offset_0_0; _this._previousOffset = null; _this._resetOriginOnRight = _this._resetOriginOnTop = _this._resetOriginOnBottom = false; } t1 = state !== B.FloatingCursorDragState_2; _this._floatingCursorOn = t1; _this._resetFloatingCursorAnimationValue = resetLerpValue; if (t1) { _this.__RenderEditable__floatingCursorTextPosition = lastTextPosition; if (resetLerpValue != null) { t1 = A.EdgeInsets_lerp(B.EdgeInsets_Otk, B.EdgeInsets_0_0_0_0, resetLerpValue); t1.toString; sizeAdjustment = t1; } else sizeAdjustment = B.EdgeInsets_Otk; _this.get$_caretPainter().set$floatingCursorRect(sizeAdjustment.inflateRect$1(A._lateReadCheck(_this.__RenderEditable__caretPrototype, "_caretPrototype")).shift$1(boundedOffset)); } else _this.get$_caretPainter().set$floatingCursorRect(null); _this.get$_caretPainter().showRegularCaret = _this._resetFloatingCursorAnimationValue == null; }, setFloatingCursor$3(state, boundedOffset, lastTextPosition) { return this.setFloatingCursor$4$resetLerpValue(state, boundedOffset, lastTextPosition, null); }, _lineNumberFor$2(startPosition, metrics) { var offset, t2, _i, t3, lineMetrics, t1 = this._editable$_textPainter; t1._computeCaretMetrics$2(startPosition, B.Rect_0_0_0_0); offset = A._lateReadCheck(t1.__TextPainter__caretMetrics, "_caretMetrics").offset; for (t1 = metrics.length, t2 = offset._dy, _i = 0; t3 = metrics.length, _i < t3; metrics.length === t1 || (0, A.throwConcurrentModificationError)(metrics), ++_i) { lineMetrics = metrics[_i]; if (lineMetrics.get$baseline(lineMetrics) > t2) return new A.MapEntry(lineMetrics.get$lineNumber(lineMetrics), new A.Offset(offset._dx, lineMetrics.get$baseline(lineMetrics)), type$.MapEntry_int_Offset); } t1 = Math.max(0, t3 - 1); if (t3 !== 0) { t2 = B.JSArray_methods.get$last(metrics); t2 = t2.get$baseline(t2); t3 = B.JSArray_methods.get$last(metrics); t3 = t2 + t3.get$descent(t3); t2 = t3; } else t2 = 0; return new A.MapEntry(t1, new A.Offset(offset._dx, t2), type$.MapEntry_int_Offset); }, _editable$_paintContents$2(context, offset) { var visibleRegion, t2, startOffset, endOffset, foregroundChild, backgroundChild, t3, t4, t5, t6, childIndex, t7, t8, child, _this = this, _s15_ = "_caretPrototype", _s13_ = "_caretMetrics", _box_0 = {}, effectiveOffset = offset.$add(0, _this.get$_editable$_paintOffset()), t1 = _this._floatingCursorOn; if (!t1) { t1 = _this._box$_size; visibleRegion = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); t1 = _this._editable$_textPainter; t2 = _this._selection; t1._computeCaretMetrics$2(new A.TextPosition(t2.start, t2.affinity), A._lateReadCheck(_this.__RenderEditable__caretPrototype, _s15_)); startOffset = A._lateReadCheck(t1.__TextPainter__caretMetrics, _s13_).offset; _this._selectionStartInViewport.set$value(0, visibleRegion.inflate$1(0.5).contains$1(0, startOffset.$add(0, effectiveOffset))); t2 = _this._selection; t1._computeCaretMetrics$2(new A.TextPosition(t2.end, t2.affinity), A._lateReadCheck(_this.__RenderEditable__caretPrototype, _s15_)); endOffset = A._lateReadCheck(t1.__TextPainter__caretMetrics, _s13_).offset; _this._selectionEndInViewport.set$value(0, visibleRegion.inflate$1(0.5).contains$1(0, endOffset.$add(0, effectiveOffset))); } foregroundChild = _this._foregroundRenderObject; backgroundChild = _this._backgroundRenderObject; if (backgroundChild != null) context.paintChild$2(backgroundChild, offset); t1 = _this._editable$_textPainter; t1.paint$2(context.get$canvas(context), effectiveOffset); t2 = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; t3 = type$.TextParentData; t4 = effectiveOffset._dx; t5 = effectiveOffset._dy; t6 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); childIndex = 0; while (true) { if (!(t2 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t2 = t2.parentData; t2.toString; t3._as(t2); t7 = t2.scale; t7.toString; t8 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = t2.offset; context.pushTransform$4(t8, new A.Offset(t4 + t2._dx, t5 + t2._dy), A.Matrix4_Matrix4$diagonal3Values(t7, t7, t7), new A.RenderEditable__paintContents_closure(_box_0)); t7 = _box_0.child.parentData; t7.toString; child = t6._as(t7).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t2 = child; } if (foregroundChild != null) context.paintChild$2(foregroundChild, offset); }, paint$2(context, offset) { var t1, t2, t3, startPoint, t4, endPoint, _this = this; _this._computeTextMetricsIfNeeded$0(); t1 = (_this._editable$_maxScrollExtent > 0 || !_this.get$_editable$_paintOffset().$eq(0, B.Offset_0_0)) && _this._editable$_clipBehavior !== B.Clip_0; t2 = _this._editable$_clipRectLayer; if (t1) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$_editable$_paintContents(), _this._editable$_clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this._editable$_paintContents$2(context, offset); } if (_this._selection.get$isValid()) { t1 = _this.getEndpointsForSelection$1(_this._selection); startPoint = t1[0].point; t2 = J.clamp$2$n(startPoint._dx, 0, _this._box$_size._dx); t3 = J.clamp$2$n(startPoint._dy, 0, _this._box$_size._dy); t4 = type$.Layer_2; context.pushLayer$3(new A.LeaderLayer(_this._editable$_startHandleLayerLink, new A.Offset(t2, t3), A.LayerHandle$(t4)), A.RenderObject.prototype.get$paint.call(_this), B.Offset_0_0); if (t1.length === 2) { endPoint = t1[1].point; t1 = J.clamp$2$n(endPoint._dx, 0, _this._box$_size._dx); t2 = J.clamp$2$n(endPoint._dy, 0, _this._box$_size._dy); context.pushLayer$3(new A.LeaderLayer(_this._editable$_endHandleLayerLink, new A.Offset(t1, t2), A.LayerHandle$(t4)), A.RenderObject.prototype.get$paint.call(_this), B.Offset_0_0); } } }, describeApproximatePaintClip$1(child) { var t1; if (this._editable$_maxScrollExtent > 0 || !this.get$_editable$_paintOffset().$eq(0, B.Offset_0_0)) { t1 = this._box$_size; t1 = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, debugDescribeChildren$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode), t2 = this._editable$_textPainter._text_painter$_text; if (t2 != null) t1.push(A.DiagnosticableTreeNode$("text", B.DiagnosticsTreeStyle_4, t2)); return t1; } }; A.RenderEditable__extractPlaceholderSpans_closure.prototype = { call$1(span) { if (span instanceof A.PlaceholderSpan) J.add$1$ax(A._lateReadCheck(this.$this.__RenderEditable__placeholderSpans, "_placeholderSpans"), span); return true; }, $signature: 212 }; A.RenderEditable_getBoxesForSelection_closure.prototype = { call$1(textBox) { return new A.Rect(textBox.left, textBox.top, textBox.right, textBox.bottom).shift$1(this.$this.get$_editable$_paintOffset()); }, $signature: 2172 }; A.RenderEditable_describeSemanticsConfiguration_closure.prototype = { call$1(info) { return info.recognizer != null; }, $signature: 657 }; A.RenderEditable__createShowOnScreenFor_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._cachedChildNodes.$index(0, this.key); t2.toString; t1.showOnScreen$2$descendant$rect(t1, t2._semantics$_rect); }, $signature: 0 }; A.RenderEditable_getRectForComposingRange_closure.prototype = { call$2(accum, incoming) { var t1 = accum == null ? null : accum.expandToInclude$1(new A.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom)); return t1 == null ? new A.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom) : t1; }, $signature: 2171 }; A.RenderEditable_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.RenderEditable__paintContents_closure.prototype = { call$2(context, offset) { var t1 = this._box_0.child; t1.toString; context.paintChild$2(t1, offset); }, $signature: 93 }; A._RenderEditableCustomPaint.prototype = { get$parent(_) { return type$.nullable_RenderEditable._as(A.AbstractNode.prototype.get$parent.call(this, this)); }, get$isRepaintBoundary() { return true; }, get$sizedByParent() { return true; }, set$painter(newValue) { var t2, _this = this, t1 = _this._editable$_painter; if (newValue === t1) return; _this._editable$_painter = newValue; t2 = newValue.shouldRepaint$1(t1); if (t2) _this.markNeedsPaint$0(); if (_this._node$_owner != null) { t2 = _this.get$markNeedsPaint(); t1.removeListener$1(0, t2); newValue.addListener$1(0, t2); } }, paint$2(context, offset) { var t1, t2, _this = this, $parent = type$.nullable_RenderEditable._as(A.AbstractNode.prototype.get$parent.call(_this, _this)), painter = _this._editable$_painter; if ($parent != null) { $parent._computeTextMetricsIfNeeded$0(); t1 = context.get$canvas(context); t2 = _this._box$_size; t2.toString; painter.paint$3(t1, t2, $parent); } }, attach$1(owner) { this.super$RenderObject$attach(owner); this._editable$_painter.addListener$1(0, this.get$markNeedsPaint()); }, detach$0(_) { this._editable$_painter.removeListener$1(0, this.get$markNeedsPaint()); this.super$AbstractNode$detach(0); }, computeDryLayout$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); } }; A.RenderEditablePainter.prototype = {}; A._TextHighlightPainter.prototype = { set$highlightColor(newValue) { if (J.$eq$(newValue, this._highlightColor)) return; this._highlightColor = newValue; this.notifyListeners$0(); }, set$highlightedRange(newValue) { if (J.$eq$(newValue, this._highlightedRange)) return; this._highlightedRange = newValue; this.notifyListeners$0(); }, set$selectionHeightStyle(value) { if (this._selectionHeightStyle === value) return; this._selectionHeightStyle = value; this.notifyListeners$0(); }, set$selectionWidthStyle(value) { if (this._selectionWidthStyle === value) return; this._selectionWidthStyle = value; this.notifyListeners$0(); }, paint$3(canvas, size, renderEditable) { var t1, textPainter, boxes, t2, _i, box, t3, t4, t5, _this = this, range = _this._highlightedRange, color = _this._highlightColor; if (range == null || color == null || range.start == range.end) return; t1 = _this.highlightPaint; t1.set$color(0, color); textPainter = renderEditable._editable$_textPainter; boxes = textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(A.TextSelection$(B.TextAffinity_1, range.start, range.end, false), _this._selectionHeightStyle, _this._selectionWidthStyle); for (t2 = boxes.length, _i = 0; _i < boxes.length; boxes.length === t2 || (0, A.throwConcurrentModificationError)(boxes), ++_i) { box = boxes[_i]; t3 = new A.Rect(box.left, box.top, box.right, box.bottom).shift$1(renderEditable.get$_editable$_paintOffset()); t4 = textPainter._textWidthBasis; t5 = textPainter._paragraph; t4 = t4 === B.TextWidthBasis_1 ? t5.get$longestLine() : t5.get$width(t5); t4.toString; t4 = Math.ceil(t4); t5 = textPainter._paragraph; t5 = t5.get$height(t5); t5.toString; canvas.drawRect$2(0, t3.intersect$1(new A.Rect(0, 0, 0 + t4, 0 + Math.ceil(t5))), t1); } }, shouldRepaint$1(oldDelegate) { var _this = this; if (oldDelegate === _this) return false; if (oldDelegate == null) return _this._highlightColor != null && _this._highlightedRange != null; return !(oldDelegate instanceof A._TextHighlightPainter) || !J.$eq$(oldDelegate._highlightColor, _this._highlightColor) || !J.$eq$(oldDelegate._highlightedRange, _this._highlightedRange) || oldDelegate._selectionHeightStyle !== _this._selectionHeightStyle || oldDelegate._selectionWidthStyle !== _this._selectionWidthStyle; } }; A._FloatingCursorPainter.prototype = { set$shouldPaint(value) { if (this._shouldPaint == value) return; this._shouldPaint = value; this.notifyListeners$0(); }, set$caretColor(value) { var t1 = this._caretColor; t1 = t1 == null ? null : t1.value; if (t1 === value.value) return; this._caretColor = value; this.notifyListeners$0(); }, set$cursorRadius(value) { if (J.$eq$(this._cursorRadius, value)) return; this._cursorRadius = value; this.notifyListeners$0(); }, set$cursorOffset(value) { if (this._cursorOffset.$eq(0, value)) return; this._cursorOffset = value; this.notifyListeners$0(); }, set$backgroundCursorColor(value) { var _this = this, t1 = _this._backgroundCursorColor; t1 = t1 == null ? null : t1._effectiveColor.value; if (t1 === value._effectiveColor.value) return; _this._backgroundCursorColor = value; if (_this.showRegularCaret) _this.notifyListeners$0(); }, set$floatingCursorRect(value) { if (J.$eq$(this._floatingCursorRect, value)) return; this._floatingCursorRect = value; this.notifyListeners$0(); }, paint$3(canvas, size, renderEditable) { var floatingCursorRect, t1, caretColor, caretTextPosition, t2, t3, caretRect, caretHeight, t4, integralRect, radius, floatingCursorColor, value, result, _this = this, _s13_ = "_caretMetrics", selection = renderEditable._selection; if (selection.start != selection.end) return; floatingCursorRect = _this._floatingCursorRect; t1 = floatingCursorRect == null; if (t1) caretColor = _this._caretColor; else caretColor = _this.showRegularCaret ? _this._backgroundCursorColor : null; caretTextPosition = t1 ? selection.get$extent() : A._lateReadCheck(renderEditable.__RenderEditable__floatingCursorTextPosition, "_floatingCursorTextPosition"); if (caretColor != null) { t2 = A._lateReadCheck(renderEditable.__RenderEditable__caretPrototype, "_caretPrototype"); t3 = renderEditable._editable$_textPainter; t3._computeCaretMetrics$2(caretTextPosition, t2); caretRect = t2.shift$1(A._lateReadCheck(t3.__TextPainter__caretMetrics, _s13_).offset.$add(0, _this._cursorOffset)); t3._computeCaretMetrics$2(caretTextPosition, t2); caretHeight = A._lateReadCheck(t3.__TextPainter__caretMetrics, _s13_).fullHeight; if (caretHeight != null) switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: case B.TargetPlatform_4: t2 = caretRect.top; t3 = caretRect.bottom - t2; t4 = caretRect.left; t2 += (caretHeight - t3) / 2; caretRect = new A.Rect(t4, t2, t4 + (caretRect.right - t4), t2 + t3); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t2 = caretRect.left; t3 = caretRect.top - 2; caretRect = new A.Rect(t2, t3, t2 + (caretRect.right - t2), t3 + caretHeight); break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); } caretRect = caretRect.shift$1(renderEditable.get$_editable$_paintOffset()); integralRect = caretRect.shift$1(renderEditable._snapToPhysicalPixel$1(new A.Offset(caretRect.left, caretRect.top))); if (_this._shouldPaint) { radius = _this._cursorRadius; t2 = _this.caretPaint; t2.set$color(0, caretColor); if (radius == null) canvas.drawRect$2(0, integralRect, t2); else canvas.drawRRect$2(0, A.RRect$fromRectAndRadius(integralRect, radius), t2); } _this.caretPaintCallback.call$1(integralRect); } t2 = _this._caretColor; if (t2 == null) floatingCursorColor = null; else { t2 = t2.value; floatingCursorColor = A.Color$fromARGB(191, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } if (t1 || floatingCursorColor == null || !_this._shouldPaint) return; t1 = A.RRect$fromRectAndRadius(floatingCursorRect.shift$1(renderEditable.get$_editable$_paintOffset()), B.Radius_1_1); value = _this.___FloatingCursorPainter_floatingCursorPaint; if (value === $) { result = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); A._lateInitializeOnceCheck(_this.___FloatingCursorPainter_floatingCursorPaint, "floatingCursorPaint"); value = _this.___FloatingCursorPainter_floatingCursorPaint = result; } value.set$color(0, floatingCursorColor); canvas.drawRRect$2(0, t1, value); }, shouldRepaint$1(oldDelegate) { var _this = this; if (_this === oldDelegate) return false; if (oldDelegate == null) return _this._shouldPaint; return !(oldDelegate instanceof A._FloatingCursorPainter) || oldDelegate._shouldPaint != _this._shouldPaint || oldDelegate.showRegularCaret !== _this.showRegularCaret || !J.$eq$(oldDelegate._caretColor, _this._caretColor) || !J.$eq$(oldDelegate._cursorRadius, _this._cursorRadius) || !oldDelegate._cursorOffset.$eq(0, _this._cursorOffset) || !J.$eq$(oldDelegate._backgroundCursorColor, _this._backgroundCursorColor) || !J.$eq$(oldDelegate._floatingCursorRect, _this._floatingCursorRect); } }; A._CompositeRenderEditablePainter.prototype = { addListener$1(_, listener) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].addListener$1(0, listener); }, removeListener$1(_, listener) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].removeListener$1(0, listener); }, paint$3(canvas, size, renderEditable) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].paint$3(canvas, size, renderEditable); }, shouldRepaint$1(oldDelegate) { var t1, oldPainters, newPainters; if (oldDelegate === this) return false; if (!(oldDelegate instanceof A._CompositeRenderEditablePainter) || oldDelegate.painters.length !== this.painters.length) return true; t1 = oldDelegate.painters; oldPainters = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1 = this.painters; newPainters = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); while (true) { if (!(oldPainters.moveNext$0() && newPainters.moveNext$0())) break; if (newPainters.__interceptors$_current.shouldRepaint$1(oldPainters.__interceptors$_current)) return true; } return false; } }; A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin.prototype = { attach$1(owner) { this.super$RenderObject$attach(owner); $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.add$1(0, this.get$systemFontsDidChange()); }, detach$0(_) { $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.remove$1(0, this.get$systemFontsDidChange()); this.super$AbstractNode$detach(0); } }; A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.RenderErrorBox.prototype = { RenderErrorBox$1(message) { var builder, t1, exception, _this = this, _s10_ = "_paragraph"; try { t1 = _this.message; if (t1 !== "") { builder = A.ParagraphBuilder_ParagraphBuilder($.$get$RenderErrorBox_paragraphStyle()); J.pushStyle$1$x(builder, $.$get$RenderErrorBox_textStyle()); J.addText$1$x(builder, t1); t1 = J.build$0$x(builder); A._lateWriteOnceCheck(_this.__RenderErrorBox__paragraph, _s10_); _this.__RenderErrorBox__paragraph = t1; } else { A._lateWriteOnceCheck(_this.__RenderErrorBox__paragraph, _s10_); _this.__RenderErrorBox__paragraph = null; } } catch (exception) { } }, computeMaxIntrinsicWidth$1(height) { return 100000; }, computeMaxIntrinsicHeight$1(width) { return 100000; }, get$sizedByParent() { return true; }, hitTestSelf$1(position) { return true; }, computeDryLayout$1(constraints) { return constraints.constrain$1(B.Size_100000_100000); }, paint$2(context, offset) { var width, left, $top, t1, t2, t3, t4, t5, t6, exception, _this = this, _s10_ = "_paragraph"; try { t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t6.set$color(0, $.$get$RenderErrorBox_backgroundColor()); t1.drawRect$2(0, new A.Rect(t3, t4, t3 + t5, t4 + t2), t6); if (A._lateReadCheck(_this.__RenderErrorBox__paragraph, _s10_) != null) { width = _this._box$_size._dx; left = 0; $top = 0; if (width > 328) { width -= 128; left += 64; } A._lateReadCheck(_this.__RenderErrorBox__paragraph, _s10_).layout$1(0, new A.ParagraphConstraints(width)); t1 = _this._box$_size._dy; t2 = A._lateReadCheck(_this.__RenderErrorBox__paragraph, _s10_); if (t1 > 96 + t2.get$height(t2) + 12) $top += 96; t1 = context.get$canvas(context); t2 = A._lateReadCheck(_this.__RenderErrorBox__paragraph, _s10_); t2.toString; t1.drawParagraph$2(0, t2, offset.$add(0, new A.Offset(left, $top))); } } catch (exception) { } }, get$message(receiver) { return this.message; } }; A.FlexFit.prototype = { toString$0(_) { return "FlexFit." + this._core$_name; } }; A.FlexParentData.prototype = { toString$0(_) { return this.super$BoxParentData$toString(0) + "; flex=" + A.S(this.flex) + "; fit=" + A.S(this.fit); } }; A.MainAxisSize.prototype = { toString$0(_) { return "MainAxisSize." + this._core$_name; } }; A.MainAxisAlignment.prototype = { toString$0(_) { return "MainAxisAlignment." + this._core$_name; } }; A.CrossAxisAlignment.prototype = { toString$0(_) { return "CrossAxisAlignment." + this._core$_name; } }; A.RenderFlex.prototype = { set$direction(_, value) { if (this._flex$_direction !== value) { this._flex$_direction = value; this.markNeedsLayout$0(); } }, set$mainAxisAlignment(value) { if (this._mainAxisAlignment !== value) { this._mainAxisAlignment = value; this.markNeedsLayout$0(); } }, set$mainAxisSize(value) { if (this._mainAxisSize !== value) { this._mainAxisSize = value; this.markNeedsLayout$0(); } }, set$crossAxisAlignment(value) { if (this._crossAxisAlignment !== value) { this._crossAxisAlignment = value; this.markNeedsLayout$0(); } }, set$textDirection(_, value) { if (this._flex$_textDirection != value) { this._flex$_textDirection = value; this.markNeedsLayout$0(); } }, set$verticalDirection(value) { if (this._verticalDirection !== value) { this._verticalDirection = value; this.markNeedsLayout$0(); } }, set$textBaseline(_, value) { }, setupParentData$1(child) { if (!(child.parentData instanceof A.FlexParentData)) child.parentData = new A.FlexParentData(null, null, B.Offset_0_0); }, _getIntrinsicSize$3$childSize$extent$sizingDirection(childSize, extent, sizingDirection) { var t1, child, totalFlex, inflexibleSpace, maxFlexFractionSoFar, t2, flex, t3, maxCrossSize, mainSize, crossSize, spacePerFlex, _this = this; if (_this._crossAxisAlignment === B.CrossAxisAlignment_4) return 0; t1 = _this._flex$_direction; child = _this.ContainerRenderObjectMixin__firstChild; if (t1 === sizingDirection) { for (t1 = type$.FlexParentData, totalFlex = 0, inflexibleSpace = 0, maxFlexFractionSoFar = 0; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; totalFlex += flex; if (flex > 0) { t2 = childSize.call$2(child, extent); t3 = child.parentData; t3.toString; t3 = t1._as(t3).flex; maxFlexFractionSoFar = Math.max(maxFlexFractionSoFar, t2 / (t3 == null ? 0 : t3)); } else inflexibleSpace += childSize.call$2(child, extent); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return maxFlexFractionSoFar * totalFlex + inflexibleSpace; } else { for (t1 = type$.FlexParentData, totalFlex = 0, inflexibleSpace = 0, maxCrossSize = 0; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; totalFlex += flex; mainSize = A._Cell$named("mainSize"); crossSize = A._Cell$named("crossSize"); if (flex === 0) { switch (_this._flex$_direction.index) { case 0: t2 = child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); if (mainSize.__late_helper$_value !== mainSize) A.throwExpression(A.LateError$localAI(mainSize.__late_helper$_name)); mainSize.__late_helper$_value = t2; t2 = childSize.call$2(child, t2); if (crossSize.__late_helper$_value !== crossSize) A.throwExpression(A.LateError$localAI(crossSize.__late_helper$_name)); crossSize.__late_helper$_value = t2; break; case 1: t2 = child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, 1 / 0, child.get$computeMaxIntrinsicHeight()); if (mainSize.__late_helper$_value !== mainSize) A.throwExpression(A.LateError$localAI(mainSize.__late_helper$_name)); mainSize.__late_helper$_value = t2; t2 = childSize.call$2(child, t2); if (crossSize.__late_helper$_value !== crossSize) A.throwExpression(A.LateError$localAI(crossSize.__late_helper$_name)); crossSize.__late_helper$_value = t2; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t3 = mainSize.__late_helper$_value; if (t3 === mainSize) A.throwExpression(A.LateError$localNI(mainSize.__late_helper$_name)); inflexibleSpace += t3; if (t2 === crossSize) A.throwExpression(A.LateError$localNI(crossSize.__late_helper$_name)); maxCrossSize = Math.max(maxCrossSize, A.checkNum(t2)); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } spacePerFlex = Math.max(0, (extent - inflexibleSpace) / totalFlex); child = _this.ContainerRenderObjectMixin__firstChild; for (; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; if (flex > 0) maxCrossSize = Math.max(maxCrossSize, A.checkNum(childSize.call$2(child, spacePerFlex * flex))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return maxCrossSize; } }, computeMinIntrinsicWidth$1(height) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new A.RenderFlex_computeMinIntrinsicWidth_closure(), height, B.Axis_0); }, computeMaxIntrinsicWidth$1(height) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new A.RenderFlex_computeMaxIntrinsicWidth_closure(), height, B.Axis_0); }, computeMinIntrinsicHeight$1(width) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new A.RenderFlex_computeMinIntrinsicHeight_closure(), width, B.Axis_1); }, computeMaxIntrinsicHeight$1(width) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new A.RenderFlex_computeMaxIntrinsicHeight_closure(), width, B.Axis_1); }, computeDistanceToActualBaseline$1(baseline) { if (this._flex$_direction === B.Axis_0) return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); return this.defaultComputeDistanceToFirstActualBaseline$1(baseline); }, _getCrossSize$1(size) { switch (this._flex$_direction.index) { case 0: return size._dy; case 1: return size._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getMainSize$1(size) { switch (this._flex$_direction.index) { case 0: return size._dx; case 1: return size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeDryLayout$1(constraints) { var sizes; if (this._crossAxisAlignment === B.CrossAxisAlignment_4) return B.Size_0_0; sizes = this._computeSizes$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); switch (this._flex$_direction.index) { case 0: return constraints.constrain$1(new A.Size(sizes.mainSize, sizes.crossSize)); case 1: return constraints.constrain$1(new A.Size(sizes.crossSize, sizes.mainSize)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _computeSizes$2$constraints$layoutChild(constraints, layoutChild) { var t1, totalFlex, crossSize, allocatedSize, lastFlexChild, t2, flex, innerConstraints, childSize, freeSpace, spacePerFlex, allocatedFlexSpace, maxChildExtent, minChildExtent, t3, _this = this, _s80_ = string$.x60null_c, maxMainSize = _this._flex$_direction === B.Axis_0 ? constraints.maxWidth : constraints.maxHeight, canFlex = maxMainSize < 1 / 0, child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData, totalFlex = 0, crossSize = 0, allocatedSize = 0, lastFlexChild = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); flex = t2.flex; if (flex == null) flex = 0; if (flex > 0) { totalFlex += flex; lastFlexChild = child; } else { if (_this._crossAxisAlignment === B.CrossAxisAlignment_3) switch (_this._flex$_direction.index) { case 0: innerConstraints = A.BoxConstraints$tightFor(constraints.maxHeight, null); break; case 1: innerConstraints = A.BoxConstraints$tightFor(null, constraints.maxWidth); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else switch (_this._flex$_direction.index) { case 0: innerConstraints = new A.BoxConstraints(0, 1 / 0, 0, constraints.maxHeight); break; case 1: innerConstraints = new A.BoxConstraints(0, constraints.maxWidth, 0, 1 / 0); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } childSize = layoutChild.call$2(child, innerConstraints); allocatedSize += _this._getMainSize$1(childSize); crossSize = Math.max(crossSize, A.checkNum(_this._getCrossSize$1(childSize))); } child = t2.ContainerParentDataMixin_nextSibling; } freeSpace = Math.max(0, (canFlex ? maxMainSize : 0) - allocatedSize); if (totalFlex > 0) { spacePerFlex = canFlex ? freeSpace / totalFlex : 0 / 0; child = _this.ContainerRenderObjectMixin__firstChild; for (allocatedFlexSpace = 0; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; if (flex > 0) { if (canFlex) maxChildExtent = child === lastFlexChild ? freeSpace - allocatedFlexSpace : spacePerFlex * flex; else maxChildExtent = 1 / 0; minChildExtent = A._Cell$named("minChildExtent"); t2 = child.parentData; t2.toString; t2 = t1._as(t2).fit; switch ((t2 == null ? B.FlexFit_0 : t2).index) { case 0: if (minChildExtent.__late_helper$_value !== minChildExtent) A.throwExpression(A.LateError$localAI(minChildExtent.__late_helper$_name)); minChildExtent.__late_helper$_value = maxChildExtent; t2 = maxChildExtent; break; case 1: if (minChildExtent.__late_helper$_value !== minChildExtent) A.throwExpression(A.LateError$localAI(minChildExtent.__late_helper$_name)); t2 = minChildExtent.__late_helper$_value = 0; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (_this._crossAxisAlignment === B.CrossAxisAlignment_3) switch (_this._flex$_direction.index) { case 0: t3 = constraints.maxHeight; innerConstraints = new A.BoxConstraints(t2, maxChildExtent, t3, t3); break; case 1: t3 = constraints.maxWidth; innerConstraints = new A.BoxConstraints(t3, t3, t2, maxChildExtent); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else switch (_this._flex$_direction.index) { case 0: innerConstraints = new A.BoxConstraints(t2, maxChildExtent, 0, constraints.maxHeight); break; case 1: t3 = constraints.maxWidth; innerConstraints = new A.BoxConstraints(0, t3, t2, maxChildExtent); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } childSize = layoutChild.call$2(child, innerConstraints); allocatedSize += _this._getMainSize$1(childSize); allocatedFlexSpace += maxChildExtent; crossSize = Math.max(crossSize, A.checkNum(_this._getCrossSize$1(childSize))); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } return new A._LayoutSizes(canFlex && _this._mainAxisSize === B.MainAxisSize_1 ? maxMainSize : allocatedSize, crossSize, allocatedSize); }, performLayout$0() { var child, t1, maxBaselineDistance, maxSizeAboveBaseline, maxSizeBelowBaseline, t2, distance, actualSizeDelta, remainingSpace, leadingSpace, betweenSpace, flipMainAxis, childMainPosition, t3, t4, childCrossPosition, t5, _this = this, _s80_ = string$.x60null_c, constraints = _this.get$constraints(), sizes = _this._computeSizes$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_layoutChild$closure()), actualSize = sizes.mainSize, crossSize = sizes.crossSize; if (_this._crossAxisAlignment === B.CrossAxisAlignment_4) { child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData, maxBaselineDistance = 0, maxSizeAboveBaseline = 0, maxSizeBelowBaseline = 0; child != null;) { t2 = _this._flex$_textBaseline; t2.toString; distance = child.getDistanceToBaseline$2$onlyReal(t2, true); if (distance != null) { maxBaselineDistance = Math.max(maxBaselineDistance, distance); maxSizeAboveBaseline = Math.max(distance, maxSizeAboveBaseline); maxSizeBelowBaseline = Math.max(child._box$_size._dy - distance, maxSizeBelowBaseline); crossSize = Math.max(maxSizeAboveBaseline + maxSizeBelowBaseline, crossSize); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } else maxBaselineDistance = 0; switch (_this._flex$_direction.index) { case 0: t1 = _this._box$_size = constraints.constrain$1(new A.Size(actualSize, crossSize)); actualSize = t1._dx; crossSize = t1._dy; break; case 1: t1 = _this._box$_size = constraints.constrain$1(new A.Size(crossSize, actualSize)); actualSize = t1._dy; crossSize = t1._dx; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } actualSizeDelta = actualSize - sizes.allocatedSize; _this._flex$_overflow = Math.max(0, -actualSizeDelta); remainingSpace = Math.max(0, actualSizeDelta); leadingSpace = A._Cell$named("leadingSpace"); betweenSpace = A._Cell$named("betweenSpace"); t1 = A._startIsTopLeft(_this._flex$_direction, _this._flex$_textDirection, _this._verticalDirection); flipMainAxis = t1 === false; switch (_this._mainAxisAlignment.index) { case 0: leadingSpace.set$finalLocalValue(0); betweenSpace.set$finalLocalValue(0); break; case 1: leadingSpace.set$finalLocalValue(remainingSpace); betweenSpace.set$finalLocalValue(0); break; case 2: leadingSpace.set$finalLocalValue(remainingSpace / 2); betweenSpace.set$finalLocalValue(0); break; case 3: leadingSpace.set$finalLocalValue(0); t1 = _this.ContainerRenderObjectMixin__childCount; betweenSpace.set$finalLocalValue(t1 > 1 ? remainingSpace / (t1 - 1) : 0); break; case 4: t1 = _this.ContainerRenderObjectMixin__childCount; betweenSpace.set$finalLocalValue(t1 > 0 ? remainingSpace / t1 : 0); leadingSpace.set$finalLocalValue(betweenSpace._readLocal$0() / 2); break; case 5: t1 = _this.ContainerRenderObjectMixin__childCount; betweenSpace.set$finalLocalValue(t1 > 0 ? remainingSpace / (t1 + 1) : 0); leadingSpace.set$finalLocalValue(betweenSpace._readLocal$0()); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } childMainPosition = flipMainAxis ? actualSize - leadingSpace._readLocal$0() : leadingSpace._readLocal$0(); child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData, t2 = betweenSpace.__late_helper$_name; child != null;) { t3 = child.parentData; t3.toString; t1._as(t3); t4 = _this._crossAxisAlignment; switch (t4.index) { case 0: case 1: if (A._startIsTopLeft(A.flipAxis(_this._flex$_direction), _this._flex$_textDirection, _this._verticalDirection) === (t4 === B.CrossAxisAlignment_0)) childCrossPosition = 0; else { t4 = child._box$_size; t4.toString; childCrossPosition = crossSize - _this._getCrossSize$1(t4); } break; case 2: t4 = child._box$_size; t4.toString; childCrossPosition = crossSize / 2 - _this._getCrossSize$1(t4) / 2; break; case 3: childCrossPosition = 0; break; case 4: if (_this._flex$_direction === B.Axis_0) { t4 = _this._flex$_textBaseline; t4.toString; distance = child.getDistanceToBaseline$2$onlyReal(t4, true); childCrossPosition = distance != null ? maxBaselineDistance - distance : 0; } else childCrossPosition = 0; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (flipMainAxis) { t4 = child._box$_size; t4.toString; childMainPosition -= _this._getMainSize$1(t4); } switch (_this._flex$_direction.index) { case 0: t3.offset = new A.Offset(childMainPosition, childCrossPosition); break; case 1: t3.offset = new A.Offset(childCrossPosition, childMainPosition); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (flipMainAxis) { t4 = betweenSpace.__late_helper$_value; if (t4 === betweenSpace) A.throwExpression(A.LateError$localNI(t2)); childMainPosition -= t4; } else { t4 = child._box$_size; t4.toString; t4 = _this._getMainSize$1(t4); t5 = betweenSpace.__late_helper$_value; if (t5 === betweenSpace) A.throwExpression(A.LateError$localNI(t2)); childMainPosition += t4 + t5; } child = t3.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2(context, offset) { var t1, t2, t3, _this = this; if (!(_this._flex$_overflow > 1e-10)) { _this.defaultPaint$2(context, offset); return; } t1 = _this._box$_size; if (t1.get$isEmpty(t1)) return; t1 = _this._flex$_clipRectLayer; if (_this._flex$_clipBehavior === B.Clip_0) { t1.set$layer(0, null); _this.defaultPaint$2(context, offset); } else { t2 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t1.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t2, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$defaultPaint(), _this._flex$_clipBehavior, t1._layer)); } }, dispose$0(_) { this._flex$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); }, describeApproximatePaintClip$1(child) { var t1; if (this._flex$_overflow > 1e-10) { t1 = this._box$_size; t1 = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, toStringShort$0() { var header = this.super$RenderObject$toStringShort(); if (this._flex$_overflow > 1e-10) header += " OVERFLOWING"; return header; } }; A.RenderFlex_computeMinIntrinsicWidth_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, extent, child.get$computeMinIntrinsicWidth()); }, $signature: 225 }; A.RenderFlex_computeMaxIntrinsicWidth_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, extent, child.get$computeMaxIntrinsicWidth()); }, $signature: 225 }; A.RenderFlex_computeMinIntrinsicHeight_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, extent, child.get$computeMinIntrinsicHeight()); }, $signature: 225 }; A.RenderFlex_computeMaxIntrinsicHeight_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, extent, child.get$computeMaxIntrinsicHeight()); }, $signature: 225 }; A._LayoutSizes.prototype = {}; A._RenderFlex_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin.prototype = { reassemble$0() { this.super$RenderObject$reassemble(); } }; A.RenderImage.prototype = { _image$_resolve$0() { var _this = this; if (_this._image$_resolvedAlignment != null) return; _this._image$_resolvedAlignment = _this._image$_alignment; _this._flipHorizontally = false; }, _markNeedResolution$0() { this._flipHorizontally = this._image$_resolvedAlignment = null; this.markNeedsPaint$0(); }, set$image(_, value) { var _this = this, t1 = _this._image$_image; if (value == t1) return; if (value != null && t1 != null && value.isCloneOf$1(t1)) { value.dispose$0(0); return; } t1 = _this._image$_image; if (t1 != null) t1.dispose$0(0); _this._image$_image = value; _this.markNeedsPaint$0(); if (_this._image$_width == null || _this._image$_height == null) _this.markNeedsLayout$0(); }, set$width(_, value) { if (value == this._image$_width) return; this._image$_width = value; this.markNeedsLayout$0(); }, set$height(_, value) { if (value == this._image$_height) return; this._image$_height = value; this.markNeedsLayout$0(); }, set$scale(_, value) { if (value === this._scale) return; this._scale = value; this.markNeedsLayout$0(); }, _updateColorFilter$0() { this._colorFilter = null; }, set$color(_, value) { return; }, set$opacity(_, value) { return; }, set$filterQuality(value) { if (value === this._filterQuality) return; this._filterQuality = value; this.markNeedsPaint$0(); }, set$colorBlendMode(value) { return; }, set$fit(value) { if (value == this._image$_fit) return; this._image$_fit = value; this.markNeedsPaint$0(); }, set$alignment(value) { if (value.$eq(0, this._image$_alignment)) return; this._image$_alignment = value; this._markNeedResolution$0(); }, set$repeat(_, value) { if (value === this._repeat) return; this._repeat = value; this.markNeedsPaint$0(); }, set$centerSlice(value) { return; }, set$invertColors(value) { if (value === this._invertColors) return; this._invertColors = value; this.markNeedsPaint$0(); }, set$matchTextDirection(value) { return; }, set$textDirection(_, value) { if (this._image$_textDirection == value) return; this._image$_textDirection = value; this._markNeedResolution$0(); }, set$isAntiAlias(value) { return; }, _sizeForConstraints$1(constraints) { var t2, t3, _this = this, t1 = _this._image$_width; constraints = A.BoxConstraints$tightFor(_this._image$_height, t1).enforce$1(constraints); t1 = _this._image$_image; if (t1 == null) return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); t1 = t1.get$width(t1); t1.toString; t2 = _this._scale; t3 = _this._image$_image; t3 = t3.get$height(t3); t3.toString; return constraints.constrainSizeAndAttemptToPreserveAspectRatio$1(new A.Size(t1 / t2, t3 / _this._scale)); }, computeMinIntrinsicWidth$1(height) { if (this._image$_width == null && this._image$_height == null) return 0; return this._sizeForConstraints$1(A.BoxConstraints$tightForFinite(height, 1 / 0))._dx; }, computeMaxIntrinsicWidth$1(height) { return this._sizeForConstraints$1(A.BoxConstraints$tightForFinite(height, 1 / 0))._dx; }, computeMinIntrinsicHeight$1(width) { if (this._image$_width == null && this._image$_height == null) return 0; return this._sizeForConstraints$1(A.BoxConstraints$tightForFinite(1 / 0, width))._dy; }, computeMaxIntrinsicHeight$1(width) { return this._sizeForConstraints$1(A.BoxConstraints$tightForFinite(1 / 0, width))._dy; }, hitTestSelf$1(position) { return true; }, computeDryLayout$1(constraints) { return this._sizeForConstraints$1(constraints); }, performLayout$0() { this._box$_size = this._sizeForConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); }, attach$1(owner) { this.super$RenderObject$attach(owner); }, detach$0(_) { this.super$AbstractNode$detach(0); }, paint$2(context, offset) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this; if (_this._image$_image == null) return; _this._image$_resolve$0(); t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = _this._image$_image; t6.toString; t7 = _this.debugImageLabel; t8 = _this._scale; t9 = _this._colorFilter; t10 = _this._image$_fit; t11 = _this._image$_resolvedAlignment; t11.toString; t12 = _this._centerSlice; t13 = _this._repeat; t14 = _this._flipHorizontally; t14.toString; t15 = _this._invertColors; A.paintImage(t11, t1, t12, t9, t7, _this._filterQuality, t10, t14, t6, t15, false, 1, new A.Rect(t3, t4, t3 + t5, t4 + t2), t13, t8); }, dispose$0(_) { var t1 = this._image$_image; if (t1 != null) t1.dispose$0(0); this._image$_image = null; this.super$RenderObject$dispose(0); } }; A.AnnotationEntry.prototype = { toString$0(_) { return "AnnotationEntry(annotation: " + this.annotation.toString$0(0) + ", localPosition: " + this.localPosition.toString$0(0) + ")"; } }; A.AnnotationResult.prototype = {}; A.Layer0.prototype = { dispose$0(_) { var t1 = this._engineLayer; if (t1 != null) t1.dispose$0(0); this._engineLayer = null; }, markNeedsAddToScene$0() { if (this._needsAddToScene) return; this._needsAddToScene = true; }, get$alwaysNeedsAddToScene() { return false; }, set$engineLayer(value) { var _this = this, t1 = _this._engineLayer; if (t1 != null) t1.dispose$0(0); _this._engineLayer = value; if (!_this.get$alwaysNeedsAddToScene()) { t1 = type$.nullable_ContainerLayer; if (t1._as(A.AbstractNode.prototype.get$parent.call(_this, _this)) != null && !t1._as(A.AbstractNode.prototype.get$parent.call(_this, _this)).get$alwaysNeedsAddToScene()) t1._as(A.AbstractNode.prototype.get$parent.call(_this, _this)).markNeedsAddToScene$0(); } }, updateSubtreeNeedsAddToScene$0() { this._needsAddToScene = this._needsAddToScene || this.get$alwaysNeedsAddToScene(); }, dropChild$1(child) { if (!this.get$alwaysNeedsAddToScene()) this.markNeedsAddToScene$0(); this.super$AbstractNode$dropChild(child); }, remove$0(_) { var t2, t3, _this = this, t1 = type$.nullable_ContainerLayer._as(A.AbstractNode.prototype.get$parent.call(_this, _this)); if (t1 != null) { t2 = _this._previousSibling; t3 = _this._nextSibling; if (t2 == null) t1._firstChild = t3; else t2._nextSibling = t3; t3 = _this._nextSibling; if (t3 == null) t1._lastChild = t2; else t3._previousSibling = t2; _this._nextSibling = _this._previousSibling = null; t1.dropChild$1(_this); _this._parentHandle.set$layer(0, null); } }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst) { return false; }, find$1$1(_, localPosition, $S) { var t1 = A._setArrayType([], $S._eval$1("JSArray>")); this.findAnnotations$1$3$onlyFirst(new A.AnnotationResult(t1, $S._eval$1("AnnotationResult<0>")), localPosition, true, $S); return t1.length === 0 ? null : B.JSArray_methods.get$first(t1).annotation; }, _addToSceneWithRetainedRendering$1(builder) { var t1, _this = this; if (!_this._needsAddToScene && _this._engineLayer != null) { t1 = _this._engineLayer; t1.toString; builder.addRetained$1(t1); return; } _this.addToScene$1(builder); _this._needsAddToScene = false; }, toStringShort$0() { var t1 = this.super$DiagnosticableTreeMixin$toStringShort(); return t1 + (this._node$_owner == null ? " DETACHED" : ""); }, $isDiagnosticableTree: 1 }; A.LayerHandle.prototype = { set$layer(_, layer) { var t1 = this._layer; if (layer == null ? t1 == null : layer === t1) return; if (t1 != null) if (--t1._layer$_refCount === 0) J.dispose$0$x(t1); this._layer = layer; if (layer != null) ++layer._layer$_refCount; }, toString$0(_) { var t1 = this._layer; return "LayerHandle(" + (t1 != null ? J.toString$0$(t1) : "DISPOSED") + ")"; } }; A.PictureLayer.prototype = { set$picture(picture) { var t1; this.markNeedsAddToScene$0(); t1 = this._picture; if (t1 != null) t1.dispose$0(0); this._picture = picture; }, dispose$0(_) { this.set$picture(null); this.super$Layer$dispose(0); }, addToScene$1(builder) { var t1 = this._picture; t1.toString; builder.addPicture$4$isComplexHint$willChangeHint(B.Offset_0_0, t1, this._isComplexHint, this._willChangeHint); }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst) { return false; } }; A.PlatformViewLayer.prototype = { addToScene$1(builder) { var t1 = this.rect, t2 = t1.left, t3 = t1.top; builder.addPlatformView$4$height$offset$width(this.viewId, t1.bottom - t3, new A.Offset(t2, t3), t1.right - t2); } }; A.PerformanceOverlayLayer.prototype = { addToScene$1(builder) { builder.addPerformanceOverlay$2(this.optionsMask, this._overlayRect); builder.setRasterizerTracingThreshold$1(this.rasterizerThreshold); builder.setCheckerboardRasterCacheImages$1(false); builder.setCheckerboardOffscreenLayers$1(false); }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst) { return false; } }; A.ContainerLayer0.prototype = { buildScene$1(builder) { this.updateSubtreeNeedsAddToScene$0(); this.addToScene$1(builder); this._needsAddToScene = false; return builder.build$0(0); }, dispose$0(_) { this.removeAllChildren$0(); this.super$Layer$dispose(0); }, updateSubtreeNeedsAddToScene$0() { var child, _this = this; _this.super$Layer$updateSubtreeNeedsAddToScene(); child = _this._firstChild; for (; child != null;) { child.updateSubtreeNeedsAddToScene$0(); _this._needsAddToScene = _this._needsAddToScene || child._needsAddToScene; child = child._nextSibling; } }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { var child, t1, t2; for (child = this._lastChild, t1 = result._layer$_entries; child != null; child = child._previousSibling) { if (child.findAnnotations$1$3$onlyFirst(result, localPosition, true, $S)) return true; t2 = t1.length; if (t2 !== 0) return false; } return false; }, attach$1(owner) { var child; this.super$AbstractNode$attach(owner); child = this._firstChild; for (; child != null;) { child.attach$1(owner); child = child._nextSibling; } }, detach$0(_) { var child; this.super$AbstractNode$detach(0); child = this._firstChild; for (; child != null;) { child.detach$0(0); child = child._nextSibling; } }, append$1(_, child) { var t1, _this = this; if (!_this.get$alwaysNeedsAddToScene()) _this.markNeedsAddToScene$0(); _this.super$AbstractNode$adoptChild(child); t1 = child._previousSibling = _this._lastChild; if (t1 != null) t1._nextSibling = child; _this._lastChild = child; if (_this._firstChild == null) _this._firstChild = child; child._parentHandle.set$layer(0, child); }, removeAllChildren$0() { var next, _this = this, child = _this._firstChild; for (; child != null; child = next) { next = child._nextSibling; child._nextSibling = child._previousSibling = null; if (!_this.get$alwaysNeedsAddToScene()) _this.markNeedsAddToScene$0(); _this.super$AbstractNode$dropChild(child); child._parentHandle.set$layer(0, null); } _this._lastChild = _this._firstChild = null; }, addToScene$1(builder) { this.addChildrenToScene$1(builder); }, addChildrenToScene$1(builder) { var child = this._firstChild; for (; child != null;) { child._addToSceneWithRetainedRendering$1(builder); child = child._nextSibling; } }, applyTransform$2(child, transform) { }, debugDescribeChildren$0() { var count, children = A._setArrayType([], type$.JSArray_DiagnosticsNode), child = this._firstChild; if (child == null) return children; for (count = 1; true;) { child.toString; children.push(new A.DiagnosticableTreeNode(child, "child " + count, true, true, null, null)); if (child === this._lastChild) break; ++count; child = child._nextSibling; } return children; } }; A.OffsetLayer.prototype = { set$offset(_, value) { if (!value.$eq(0, this._layer$_offset)) this.markNeedsAddToScene$0(); this._layer$_offset = value; }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { return this.super$ContainerLayer$findAnnotations(result, localPosition.$sub(0, this._layer$_offset), true, $S); }, applyTransform$2(child, transform) { var t1 = this._layer$_offset; transform.multiply$1(0, A.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)); }, addToScene$1(builder) { var _this = this, t1 = _this._layer$_offset; _this.set$engineLayer(builder.pushOffset$3$oldLayer(t1._dx, t1._dy, type$.nullable_OffsetEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.ClipRectLayer.prototype = { findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { if (!this._clipRect.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$1(builder) { var _this = this, t1 = _this._clipRect; t1.toString; _this.set$engineLayer(builder.pushClipRect$3$clipBehavior$oldLayer(t1, _this._layer$_clipBehavior, type$.nullable_ClipRectEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.ClipRRectLayer.prototype = { findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { if (!this._clipRRect.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$1(builder) { var _this = this, t1 = _this._clipRRect; t1.toString; _this.set$engineLayer(builder.pushClipRRect$3$clipBehavior$oldLayer(t1, _this._layer$_clipBehavior, type$.nullable_ClipRRectEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.ClipPathLayer.prototype = { findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { if (!this._clipPath.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$1(builder) { var _this = this, t1 = _this._clipPath; t1.toString; _this.set$engineLayer(builder.pushClipPath$3$clipBehavior$oldLayer(t1, _this._layer$_clipBehavior, type$.nullable_ClipPathEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.TransformLayer.prototype = { set$transform(_, value) { var _this = this; if (value.$eq(0, _this._layer$_transform)) return; _this._layer$_transform = value; _this._inverseDirty = true; _this.markNeedsAddToScene$0(); }, addToScene$1(builder) { var t1, t2, _this = this; _this._lastEffectiveTransform = _this._layer$_transform; if (!_this._layer$_offset.$eq(0, B.Offset_0_0)) { t1 = _this._layer$_offset; t1 = A.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0); t2 = _this._lastEffectiveTransform; t2.toString; t1.multiply$1(0, t2); _this._lastEffectiveTransform = t1; } _this.set$engineLayer(builder.pushTransform$2$oldLayer(_this._lastEffectiveTransform._m4storage, type$.nullable_TransformEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); }, _transformOffset$1(localPosition) { var t1, _this = this; if (_this._inverseDirty) { t1 = _this._layer$_transform; t1.toString; _this._invertedTransform = A.Matrix4_tryInvert(A.PointerEvent_removePerspectiveTransform(t1)); _this._inverseDirty = false; } t1 = _this._invertedTransform; if (t1 == null) return null; return A.MatrixUtils_transformPoint(t1, localPosition); }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { var transformedOffset = this._transformOffset$1(localPosition); if (transformedOffset == null) return false; return this.super$OffsetLayer$findAnnotations(result, transformedOffset, true, $S); }, applyTransform$2(child, transform) { var t1 = this._lastEffectiveTransform; if (t1 == null) { t1 = this._layer$_transform; t1.toString; transform.multiply$1(0, t1); } else transform.multiply$1(0, t1); } }; A.OpacityLayer.prototype = { addToScene$1(builder) { var t1, t2, t3, _this = this; if (_this._firstChild == null) { _this.set$engineLayer(null); return; } t1 = _this._layer$_alpha; t1.toString; t2 = _this._layer$_offset; t3 = _this._engineLayer; if (t1 < 255) _this.set$engineLayer(builder.pushOpacity$3$offset$oldLayer(t1, t2, type$.nullable_OpacityEngineLayer._as(t3))); else _this.set$engineLayer(builder.pushOffset$3$oldLayer(t2._dx, t2._dy, type$.nullable_OffsetEngineLayer._as(t3))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.BackdropFilterLayer.prototype = { addToScene$1(builder) { var _this = this, t1 = _this._layer$_filter; t1.toString; _this.set$engineLayer(builder.pushBackdropFilter$3$blendMode$oldLayer(t1, _this._layer$_blendMode, type$.nullable_BackdropFilterEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.PhysicalModelLayer.prototype = { set$clipPath(_, value) { if (value !== this._clipPath) { this._clipPath = value; this.markNeedsAddToScene$0(); } }, set$clipBehavior(value) { if (value != this._layer$_clipBehavior) { this._layer$_clipBehavior = value; this.markNeedsAddToScene$0(); } }, set$elevation(_, value) { if (value != this._layer$_elevation) { this._layer$_elevation = value; this.markNeedsAddToScene$0(); } }, set$color(_, value) { if (!J.$eq$(value, this._layer$_color)) { this._layer$_color = value; this.markNeedsAddToScene$0(); } }, set$shadowColor(_, value) { if (!J.$eq$(value, this._layer$_shadowColor)) { this._layer$_shadowColor = value; this.markNeedsAddToScene$0(); } }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { if (!this._clipPath.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$1(builder) { var t2, t3, t4, _this = this, t1 = _this._clipPath; t1.toString; t2 = _this._layer$_elevation; t2.toString; t3 = _this._layer$_color; t3.toString; t4 = _this._layer$_shadowColor; _this.set$engineLayer(builder.pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor(_this._layer$_clipBehavior, t3, t2, type$.nullable_PhysicalShapeEngineLayer._as(_this._engineLayer), t1, t4)); _this.addChildrenToScene$1(builder); builder.pop$0(0); } }; A.LayerLink.prototype = { toString$0(_) { var t1 = A.shortHash(this), t2 = this._leader != null ? "" : ""; return "#" + t1 + "(" + t2 + ")"; } }; A.LeaderLayer.prototype = { set$link(value) { var _this = this, t1 = _this._layer$_link; if (t1 == value) return; if (_this._node$_owner != null) { if (t1._leader === _this) t1._leader = null; value._leader = _this; } _this._layer$_link = value; }, set$offset(_, value) { if (value.$eq(0, this._layer$_offset)) return; this._layer$_offset = value; this.markNeedsAddToScene$0(); }, attach$1(owner) { this.super$ContainerLayer$attach(owner); this._layer$_link._leader = this; }, detach$0(_) { var t1 = this._layer$_link; if (t1._leader === this) t1._leader = null; this.super$ContainerLayer$detach(0); }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { return this.super$ContainerLayer$findAnnotations(result, localPosition.$sub(0, this._layer$_offset), true, $S); }, addToScene$1(builder) { var t1, _this = this; if (!_this._layer$_offset.$eq(0, B.Offset_0_0)) { t1 = _this._layer$_offset; _this.set$engineLayer(builder.pushTransform$2$oldLayer(A.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)._m4storage, type$.nullable_TransformEngineLayer._as(_this._engineLayer))); } _this.addChildrenToScene$1(builder); if (!_this._layer$_offset.$eq(0, B.Offset_0_0)) builder.pop$0(0); }, applyTransform$2(child, transform) { var t1; if (!this._layer$_offset.$eq(0, B.Offset_0_0)) { t1 = this._layer$_offset; transform.translate$2(0, t1._dx, t1._dy); } } }; A.FollowerLayer.prototype = { _transformOffset$1(localPosition) { var t1, vector, t2, t3, _this = this; if (_this._inverseDirty) { t1 = _this.getLastTransform$0(); t1.toString; _this._invertedTransform = A.Matrix4_tryInvert(t1); _this._inverseDirty = false; } if (_this._invertedTransform == null) return null; vector = new A.Vector4(new Float64Array(4)); vector.setValues$4(localPosition._dx, localPosition._dy, 0, 1); t1 = _this._invertedTransform.transform$1(0, vector)._v4storage; t2 = t1[0]; t3 = _this.linkedOffset; return new A.Offset(t2 - t3._dx, t1[1] - t3._dy); }, findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { var transformedOffset, _this = this; if (_this._layer$_link._leader == null) { if (_this.showWhenUnlinked) return _this.super$ContainerLayer$findAnnotations(result, localPosition.$sub(0, _this.unlinkedOffset), true, $S); return false; } transformedOffset = _this._transformOffset$1(localPosition); if (transformedOffset == null) return false; return _this.super$ContainerLayer$findAnnotations(result, transformedOffset, true, $S); }, getLastTransform$0() { var t1, result; if (this._layer$_lastTransform == null) return null; t1 = this._lastOffset; result = A.Matrix4_Matrix4$translationValues(-t1._dx, -t1._dy, 0); t1 = this._layer$_lastTransform; t1.toString; result.multiply$1(0, t1); return result; }, _establishTransform$0() { var leader, t1, forwardLayers, inverseLayers, forwardTransform, inverseTransform, _this = this; _this._layer$_lastTransform = null; leader = _this._layer$_link._leader; if (leader == null) return; t1 = type$.JSArray_ContainerLayer; forwardLayers = A._setArrayType([leader], t1); inverseLayers = A._setArrayType([_this], t1); A.FollowerLayer__pathsToCommonAncestor(leader, _this, forwardLayers, inverseLayers); forwardTransform = A.FollowerLayer__collectTransformForLayerChain(forwardLayers); leader.applyTransform$2(null, forwardTransform); t1 = _this.linkedOffset; forwardTransform.translate$2(0, t1._dx, t1._dy); inverseTransform = A.FollowerLayer__collectTransformForLayerChain(inverseLayers); if (inverseTransform.copyInverse$1(inverseTransform) === 0) return; inverseTransform.multiply$1(0, forwardTransform); _this._layer$_lastTransform = inverseTransform; _this._inverseDirty = true; }, get$alwaysNeedsAddToScene() { return true; }, addToScene$1(builder) { var t1, t2, _this = this; if (_this._layer$_link._leader == null && !_this.showWhenUnlinked) { _this._lastOffset = _this._layer$_lastTransform = null; _this._inverseDirty = true; _this.set$engineLayer(null); return; } _this._establishTransform$0(); t1 = _this._layer$_lastTransform; t2 = type$.nullable_TransformEngineLayer; if (t1 != null) { _this._lastOffset = _this.unlinkedOffset; _this.set$engineLayer(builder.pushTransform$2$oldLayer(t1._m4storage, t2._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } else { _this._lastOffset = null; t1 = _this.unlinkedOffset; _this.set$engineLayer(builder.pushTransform$2$oldLayer(A.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)._m4storage, t2._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } _this._inverseDirty = true; }, applyTransform$2(child, transform) { var t1 = this._layer$_lastTransform; if (t1 != null) transform.multiply$1(0, t1); else { t1 = this.unlinkedOffset; transform.multiply$1(0, A.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)); } } }; A.AnnotatedRegionLayer.prototype = { findAnnotations$1$3$onlyFirst(result, localPosition, onlyFirst, $S) { var t2, t3, t4, _this = this, isAbsorbed = _this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S), t1 = result._layer$_entries; if (t1.length !== 0 && true) return isAbsorbed; t2 = _this.size; if (t2 != null) { t3 = _this.offset; t4 = t3._dx; t3 = t3._dy; t2 = !new A.Rect(t4, t3, t4 + t2._dx, t3 + t2._dy).contains$1(0, localPosition); } else t2 = false; if (t2) return isAbsorbed; if (A.createRuntimeType(_this.$ti._precomputed1) === A.createRuntimeType($S)) { isAbsorbed = isAbsorbed || false; t1.push(new A.AnnotationEntry($S._as(_this.value), localPosition.$sub(0, _this.offset), $S._eval$1("AnnotationEntry<0>"))); } return isAbsorbed; }, get$value(receiver) { return this.value; } }; A._Layer_AbstractNode_DiagnosticableTreeMixin.prototype = {}; A.ListBodyParentData.prototype = {}; A.RenderListBody.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.ListBodyParentData)) child.parentData = new A.ListBodyParentData(null, null, B.Offset_0_0); }, set$axisDirection(value) { if (this._axisDirection === value) return; this._axisDirection = value; this.markNeedsLayout$0(); }, computeDryLayout$1(constraints) { var t1, innerConstraints, t2, mainAxisExtent, t3, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; switch (_this._axisDirection.index) { case 1: case 3: t1 = constraints.maxHeight; innerConstraints = A.BoxConstraints$tightFor(t1, null); for (t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0; child != null;) { mainAxisExtent += child.getDryLayout$1(innerConstraints)._dx; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; } return constraints.constrain$1(new A.Size(mainAxisExtent, t1)); case 0: case 2: t1 = constraints.maxWidth; innerConstraints = A.BoxConstraints$tightFor(null, t1); for (t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0; child != null;) { mainAxisExtent += child.getDryLayout$1(innerConstraints)._dy; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; } return constraints.constrain$1(new A.Size(t1, mainAxisExtent)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, performLayout$0() { var t1, innerConstraints, t2, mainAxisExtent, t3, position, _this = this, _null = null, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), child = _this.ContainerRenderObjectMixin__firstChild; switch (_this._axisDirection.index) { case 1: t1 = constraints.maxHeight; innerConstraints = A.BoxConstraints$tightFor(t1, _null); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); t3.offset = new A.Offset(mainAxisExtent, 0); mainAxisExtent += child._box$_size._dx; child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new A.Size(mainAxisExtent, t1)); break; case 3: t1 = constraints.maxHeight; innerConstraints = A.BoxConstraints$tightFor(t1, _null); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); mainAxisExtent += child._box$_size._dx; child = t3.ContainerParentDataMixin_nextSibling; } child = _this.ContainerRenderObjectMixin__firstChild; for (position = 0; child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); position += child._box$_size._dx; t3.offset = new A.Offset(mainAxisExtent - position, 0); child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new A.Size(mainAxisExtent, t1)); break; case 2: t1 = constraints.maxWidth; innerConstraints = A.BoxConstraints$tightFor(_null, t1); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); t3.offset = new A.Offset(0, mainAxisExtent); mainAxisExtent += child._box$_size._dy; child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new A.Size(t1, mainAxisExtent)); break; case 0: t1 = constraints.maxWidth; innerConstraints = A.BoxConstraints$tightFor(_null, t1); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); mainAxisExtent += child._box$_size._dy; child = t3.ContainerParentDataMixin_nextSibling; } child = _this.ContainerRenderObjectMixin__firstChild; for (position = 0; child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); position += child._box$_size._dy; t3.offset = new A.Offset(0, mainAxisExtent - position); child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new A.Size(t1, mainAxisExtent)); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getIntrinsicCrossAxis$1(childSize) { var t1, extent, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, extent = 0; child != null;) { extent = Math.max(extent, A.checkNum(childSize.call$1(child))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return extent; }, _getIntrinsicMainAxis$1(childSize) { var t1, extent, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, extent = 0; child != null;) { extent += childSize.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return extent; }, computeMinIntrinsicWidth$1(height) { switch (A.axisDirectionToAxis(this._axisDirection).index) { case 0: return this._getIntrinsicMainAxis$1(new A.RenderListBody_computeMinIntrinsicWidth_closure(height)); case 1: return this._getIntrinsicCrossAxis$1(new A.RenderListBody_computeMinIntrinsicWidth_closure0(height)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicWidth$1(height) { switch (A.axisDirectionToAxis(this._axisDirection).index) { case 0: return this._getIntrinsicMainAxis$1(new A.RenderListBody_computeMaxIntrinsicWidth_closure(height)); case 1: return this._getIntrinsicCrossAxis$1(new A.RenderListBody_computeMaxIntrinsicWidth_closure0(height)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicHeight$1(width) { switch (A.axisDirectionToAxis(this._axisDirection).index) { case 0: return this._getIntrinsicMainAxis$1(new A.RenderListBody_computeMinIntrinsicHeight_closure(width)); case 1: return this._getIntrinsicCrossAxis$1(new A.RenderListBody_computeMinIntrinsicHeight_closure0(width)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicHeight$1(width) { switch (A.axisDirectionToAxis(this._axisDirection).index) { case 0: return this._getIntrinsicMainAxis$1(new A.RenderListBody_computeMaxIntrinsicHeight_closure(width)); case 1: return this._getIntrinsicCrossAxis$1(new A.RenderListBody_computeMaxIntrinsicHeight_closure0(width)); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeDistanceToActualBaseline$1(baseline) { return this.defaultComputeDistanceToFirstActualBaseline$1(baseline); }, paint$2(context, offset) { this.defaultPaint$2(context, offset); }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); } }; A.RenderListBody_computeMinIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 92 }; A.RenderListBody_computeMinIntrinsicWidth_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 92 }; A.RenderListBody_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 92 }; A.RenderListBody_computeMaxIntrinsicWidth_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 92 }; A.RenderListBody_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 92 }; A.RenderListBody_computeMinIntrinsicHeight_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 92 }; A.RenderListBody_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 92 }; A.RenderListBody_computeMaxIntrinsicHeight_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 92 }; A._RenderListBody_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._MouseState.prototype = { replaceAnnotations$1(value) { var previous = this._annotations; this._annotations = value; return previous; }, toString$0(_) { var _s16_ = "#", t1 = A.shortHash(this._latestEvent), t2 = this._annotations._length; return _s16_ + A.shortHash(this) + "(" + ("latestEvent: " + (_s16_ + t1)) + ", " + ("annotations: [list of " + t2 + "]") + ")"; } }; A._MouseTrackerUpdateDetails.prototype = { get$device(_) { var t1 = this.previousEvent; return t1.get$device(t1); } }; A.MouseTracker.prototype = { _hitTestResultToAnnotations$1(result) { var t2, t3, _i, entry, target, t4, t1 = type$.MouseTrackerAnnotation, annotations = A.LinkedHashMap_LinkedHashMap(null, null, null, t1, type$.Matrix4); for (t2 = result._hit_test$_path, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { entry = t2[_i]; target = entry.target; if (t1._is(target)) { t4 = entry._transform; t4.toString; annotations.$indexSet(0, target, t4); } } return annotations; }, _findAnnotations$2(state, hitTest) { var t1 = state._latestEvent, globalPosition = t1.get$position(t1); t1 = state._latestEvent; if (!this._mouseStates.containsKey$1(0, t1.get$device(t1))) return A.LinkedHashMap_LinkedHashMap(null, null, null, type$.MouseTrackerAnnotation, type$.Matrix4); return this._hitTestResultToAnnotations$1(hitTest.call$1(globalPosition)); }, _handleDeviceUpdate$1(details) { var t1, t2; A.MouseTracker__handleDeviceUpdateMouseEvents(details); t1 = details.nextAnnotations; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); this._mouseCursorMixin.handleDeviceCursorUpdate$3(details.get$device(details), details.triggeringEvent, A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t1, t2), new A.MouseTracker__handleDeviceUpdate_closure(), t2._eval$1("Iterable.E"), type$.MouseCursor)); }, updateWithEvent$2($event, getResult) { var result, device, t1, existingState, t2; if ($event.get$kind($event) !== B.PointerDeviceKind_1) return; if (type$.PointerSignalEvent._is($event)) return; result = type$.PointerRemovedEvent._is($event) ? A.HitTestResult$() : getResult.call$0(); device = $event.get$device($event); t1 = this._mouseStates; existingState = t1.$index(0, device); if (!A.MouseTracker__shouldMarkStateDirty(existingState, $event)) return; t2 = t1._length; new A.MouseTracker_updateWithEvent_closure(this, existingState, $event, device, result).call$0(); if (t2 !== 0 !== (t1._length !== 0)) this.notifyListeners$0(); }, updateAllDevices$1(hitTest) { new A.MouseTracker_updateAllDevices_closure(this, hitTest).call$0(); } }; A.MouseTracker__handleDeviceUpdate_closure.prototype = { call$1(annotation) { return annotation.get$cursor(annotation); }, $signature: 2168 }; A.MouseTracker_updateWithEvent_closure.prototype = { call$0() { var _this = this; new A.MouseTracker_updateWithEvent__closure(_this.$this, _this.existingState, _this.event, _this.device, _this.result).call$0(); }, $signature: 0 }; A.MouseTracker_updateWithEvent__closure.prototype = { call$0() { var t2, t3, targetState, previous, nextAnnotations, _this = this, _null = null, t1 = _this.existingState; if (t1 == null) { t2 = _this.event; _this.$this._mouseStates.$indexSet(0, _this.device, new A._MouseState(A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.MouseTrackerAnnotation, type$.Matrix4), t2)); } else { t2 = _this.event; if (type$.PointerRemovedEvent._is(t2)) _this.$this._mouseStates.remove$1(0, t2.get$device(t2)); } t3 = _this.$this; targetState = t3._mouseStates.$index(0, _this.device); if (targetState == null) { t1.toString; targetState = t1; } previous = targetState._latestEvent; targetState._latestEvent = t2; nextAnnotations = type$.PointerRemovedEvent._is(t2) ? A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.MouseTrackerAnnotation, type$.Matrix4) : t3._hitTestResultToAnnotations$1(_this.result); t3._handleDeviceUpdate$1(new A._MouseTrackerUpdateDetails(targetState.replaceAnnotations$1(nextAnnotations), nextAnnotations, previous, t2)); }, $signature: 0 }; A.MouseTracker_updateAllDevices_closure.prototype = { call$0() { var t1, t2, t3, t4, lastEvent, nextAnnotations, previous; for (t1 = this.$this, t2 = t1._mouseStates, t2 = t2.get$values(t2), t3 = A._instanceType(t2), t3 = new A.MappedIterator(J.get$iterator$ax(t2.__internal$_iterable), t2._f, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MappedIterator<1,2>")), t2 = this.hitTest; t3.moveNext$0();) { t4 = t3.__internal$_current; lastEvent = t4._latestEvent; nextAnnotations = t1._findAnnotations$2(t4, t2); previous = t4._annotations; t4._annotations = nextAnnotations; t1._handleDeviceUpdate$1(new A._MouseTrackerUpdateDetails(previous, nextAnnotations, lastEvent, null)); } }, $signature: 0 }; A.MouseTracker__handleDeviceUpdateMouseEvents_closure.prototype = { call$2(annotation, transform) { var t1; if (!this.nextAnnotations.containsKey$1(0, annotation)) if (annotation.get$validForMouseTracker() && annotation.get$onExit(annotation) != null) { t1 = annotation.get$onExit(annotation); t1.toString; t1.call$1(this.baseExitEvent.transformed$1(this.lastAnnotations.$index(0, annotation))); } }, $signature: 2164 }; A.MouseTracker__handleDeviceUpdateMouseEvents_closure0.prototype = { call$1(annotation) { return !this.lastAnnotations.containsKey$1(0, annotation); }, $signature: 2162 }; A.__MouseTrackerUpdateDetails_Object_Diagnosticable.prototype = {}; A.ParentData.prototype = { detach$0(_) { }, toString$0(_) { return ""; } }; A.PaintingContext.prototype = { paintChild$2(child, offset) { var t1; if (child.get$isRepaintBoundary()) { this.stopRecordingIfNeeded$0(); if (child._needsPaint) A.PaintingContext__repaintCompositedChild(child, null, true); t1 = child._layerHandle._layer; t1.toString; type$.OffsetLayer._as(t1); t1.set$offset(0, offset); this.appendLayer$1(t1); } else child._paintWithContext$2(this, offset); }, appendLayer$1(layer) { layer.remove$0(0); this._containerLayer.append$1(0, layer); }, get$canvas(_) { var t1, _this = this; if (_this._canvas == null) { _this._currentLayer = new A.PictureLayer(_this.estimatedBounds, A.LayerHandle$(type$.Layer_2)); t1 = A.PictureRecorder_PictureRecorder(); _this._recorder = t1; _this._canvas = A.Canvas_Canvas(t1, null); t1 = _this._currentLayer; t1.toString; _this._containerLayer.append$1(0, t1); } t1 = _this._canvas; t1.toString; return t1; }, stopRecordingIfNeeded$0() { var t1, _this = this; if (_this._canvas == null) return; t1 = _this._currentLayer; t1.toString; t1.set$picture(_this._recorder.endRecording$0()); _this._canvas = _this._recorder = _this._currentLayer = null; }, setIsComplexHint$0() { var t1 = this._currentLayer; if (t1 != null) if (!t1._isComplexHint) { t1._isComplexHint = true; t1.markNeedsAddToScene$0(); } }, pushLayer$4$childPaintBounds(childLayer, painter, offset, childPaintBounds) { var childContext, _this = this; if (childLayer._firstChild != null) childLayer.removeAllChildren$0(); _this.stopRecordingIfNeeded$0(); _this.appendLayer$1(childLayer); childContext = _this.createChildContext$2(childLayer, childPaintBounds == null ? _this.estimatedBounds : childPaintBounds); painter.call$2(childContext, offset); childContext.stopRecordingIfNeeded$0(); }, pushLayer$3(childLayer, painter, offset) { return this.pushLayer$4$childPaintBounds(childLayer, painter, offset, null); }, createChildContext$2(childLayer, bounds) { return new A.PaintingContext(childLayer, bounds); }, pushClipRect$6$clipBehavior$oldLayer(needsCompositing, offset, clipRect, painter, clipBehavior, oldLayer) { var layer, offsetClipRect = clipRect.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new A.ClipRectLayer(B.Clip_1, A.LayerHandle$(type$.Layer_2)) : oldLayer; if (!offsetClipRect.$eq(0, layer._clipRect)) { layer._clipRect = offsetClipRect; layer.markNeedsAddToScene$0(); } if (clipBehavior != layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetClipRect); return layer; } else { this.clipRectAndPaint$4(offsetClipRect, clipBehavior, offsetClipRect, new A.PaintingContext_pushClipRect_closure(this, painter, offset)); return null; } }, pushClipRect$5$clipBehavior(needsCompositing, offset, clipRect, painter, clipBehavior) { return this.pushClipRect$6$clipBehavior$oldLayer(needsCompositing, offset, clipRect, painter, clipBehavior, null); }, pushClipRRect$7$clipBehavior$oldLayer(needsCompositing, offset, bounds, clipRRect, painter, clipBehavior, oldLayer) { var layer, offsetBounds = bounds.shift$1(offset), offsetClipRRect = clipRRect.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new A.ClipRRectLayer(B.Clip_2, A.LayerHandle$(type$.Layer_2)) : oldLayer; if (!offsetClipRRect.$eq(0, layer._clipRRect)) { layer._clipRRect = offsetClipRRect; layer.markNeedsAddToScene$0(); } if (clipBehavior != layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetBounds); return layer; } else { this.clipRRectAndPaint$4(offsetClipRRect, clipBehavior, offsetBounds, new A.PaintingContext_pushClipRRect_closure(this, painter, offset)); return null; } }, pushClipRRect$6$oldLayer(needsCompositing, offset, bounds, clipRRect, painter, oldLayer) { return this.pushClipRRect$7$clipBehavior$oldLayer(needsCompositing, offset, bounds, clipRRect, painter, B.Clip_2, oldLayer); }, pushClipPath$7$clipBehavior$oldLayer(needsCompositing, offset, bounds, clipPath, painter, clipBehavior, oldLayer) { var layer, offsetBounds = bounds.shift$1(offset), offsetClipPath = clipPath.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new A.ClipPathLayer(B.Clip_2, A.LayerHandle$(type$.Layer_2)) : oldLayer; if (offsetClipPath !== layer._clipPath) { layer._clipPath = offsetClipPath; layer.markNeedsAddToScene$0(); } if (clipBehavior != layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetBounds); return layer; } else { this.clipPathAndPaint$4(offsetClipPath, clipBehavior, offsetBounds, new A.PaintingContext_pushClipPath_closure(this, painter, offset)); return null; } }, pushTransform$5$oldLayer(needsCompositing, offset, transform, painter, oldLayer) { var layer, _this = this, t1 = offset._dx, t2 = offset._dy, effectiveTransform = A.Matrix4_Matrix4$translationValues(t1, t2, 0); effectiveTransform.multiply$1(0, transform); effectiveTransform.translate$2(0, -t1, -t2); if (needsCompositing) { layer = oldLayer == null ? A.TransformLayer$(null) : oldLayer; layer.set$transform(0, effectiveTransform); _this.pushLayer$4$childPaintBounds(layer, painter, offset, A.MatrixUtils_inverseTransformRect(effectiveTransform, _this.estimatedBounds)); return layer; } else { t1 = _this.get$canvas(_this); t1.save$0(0); t1.transform$1(0, effectiveTransform._m4storage); painter.call$2(_this, offset); _this.get$canvas(_this).restore$0(0); return null; } }, pushTransform$4(needsCompositing, offset, transform, painter) { return this.pushTransform$5$oldLayer(needsCompositing, offset, transform, painter, null); }, pushOpacity$4$oldLayer(offset, alpha, painter, oldLayer) { var layer = oldLayer == null ? new A.OpacityLayer(B.Offset_0_0, A.LayerHandle$(type$.Layer_2)) : oldLayer, t1 = layer._layer$_alpha; if (alpha != t1) { if (alpha === 255 || t1 === 255) layer.set$engineLayer(null); layer._layer$_alpha = alpha; layer.markNeedsAddToScene$0(); } layer.set$offset(0, offset); this.pushLayer$3(layer, painter, B.Offset_0_0); return layer; }, toString$0(_) { return "PaintingContext#" + A.Primitives_objectHashCode(this) + "(layer: " + A.S(this._containerLayer) + ", canvas bounds: " + this.estimatedBounds.toString$0(0) + ")"; } }; A.PaintingContext_pushClipRect_closure.prototype = { call$0() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; A.PaintingContext_pushClipRRect_closure.prototype = { call$0() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; A.PaintingContext_pushClipPath_closure.prototype = { call$0() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; A.Constraints.prototype = {}; A.SemanticsHandle.prototype = { dispose$0(_) { var t1 = this.listener; if (t1 != null) this._object$_owner._semanticsOwner.removeListener$1(0, t1); t1 = this._object$_owner; if (--t1._outstandingSemanticsHandles === 0) { t1._semanticsOwner.dispose$0(0); t1._semanticsOwner = null; t1.onSemanticsOwnerDisposed.call$0(); } } }; A.PipelineOwner.prototype = { requestVisualUpdate$0() { this.onNeedVisualUpdate.call$0(); }, set$rootNode(value) { var t1 = this._rootNode; if (t1 === value) return; if (t1 != null) t1.detach$0(0); this._rootNode = value; value.attach$1(this); }, flushLayout$0() { var dirtyNodes, node, t1, t2, t3, t4, t5, _i; A.Timeline_startSync("LAYOUT", B.Map_9aZ6I, null); try { for (t1 = type$.nullable_PipelineOwner, t2 = type$.JSArray_RenderObject; t3 = this._nodesNeedingLayout, t3.length !== 0;) { dirtyNodes = t3; this._nodesNeedingLayout = A._setArrayType([], t2); t3 = dirtyNodes; t4 = new A.PipelineOwner_flushLayout_closure(); if (!!t3.immutable$list) A.throwExpression(A.UnsupportedError$("sort")); t5 = t3.length - 1; if (t5 - 0 <= 32) A.Sort__insertionSort(t3, 0, t5, t4); else A.Sort__dualPivotQuicksort(t3, 0, t5, t4); t4 = t3.length; _i = 0; for (; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { node = t3[_i]; if (node._needsLayout) { t5 = node; t5 = t1._as(A.AbstractNode.prototype.get$owner.call(t5)) === this; } else t5 = false; if (t5) node._layoutWithoutResize$0(); } } } finally { A.Timeline_finishSync(); } }, _enableMutationsToDirtySubtrees$1(callback) { try { callback.call$0(); } finally { } }, flushCompositingBits$0() { var t1, t2, t3, _i, node; A.Timeline_startSync("UPDATING COMPOSITING BITS", B.Map_9aZ6I, null); t1 = this._nodesNeedingCompositingBitsUpdate; B.JSArray_methods.sort$1(t1, new A.PipelineOwner_flushCompositingBits_closure()); for (t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsCompositingBitsUpdate && t3._as(A.AbstractNode.prototype.get$owner.call(node)) === this) node._updateCompositingBits$0(); } B.JSArray_methods.set$length(t1, 0); A.Timeline_finishSync(); }, flushPaint$0() { var dirtyNodes, node, t1, t2, t3, _i, t4; A.Timeline_startSync("PAINT", B.Map_9aZ6I, null); try { dirtyNodes = this._nodesNeedingPaint; this._nodesNeedingPaint = A._setArrayType([], type$.JSArray_RenderObject); for (t1 = dirtyNodes, J.sort$1$ax(t1, new A.PipelineOwner_flushPaint_closure()), t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsPaint) { t4 = node; t4 = t3._as(A.AbstractNode.prototype.get$owner.call(t4)) === this; } else t4 = false; if (t4) if (node._layerHandle._layer._node$_owner != null) A.PaintingContext__repaintCompositedChild(node, null, false); else node._skippedPaintingOnLayer$0(); } } finally { A.Timeline_finishSync(); } }, ensureSemantics$1$listener(listener) { var t1, _this = this; if (++_this._outstandingSemanticsHandles === 1) { t1 = type$.SemanticsNode; _this._semanticsOwner = new A.SemanticsOwner(A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(type$.int, t1), A.LinkedHashSet_LinkedHashSet$_empty(t1), $.$get$ChangeNotifier__emptyListeners()); _this.onSemanticsOwnerCreated.call$0(); } if (listener != null) _this._semanticsOwner.addListener$1(0, listener); return new A.SemanticsHandle(_this, listener); }, ensureSemantics$0() { return this.ensureSemantics$1$listener(null); }, flushSemantics$0() { var nodesToProcess, node, t1, nodesToProcess0, t2, t3, _i, t4, _this = this; if (_this._semanticsOwner == null) return; A.Timeline_startSync("SEMANTICS", B.Map_9aZ6I, null); try { t1 = _this._nodesNeedingSemantics; nodesToProcess0 = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); B.JSArray_methods.sort$1(nodesToProcess0, new A.PipelineOwner_flushSemantics_closure()); nodesToProcess = nodesToProcess0; t1.clear$0(0); for (t1 = nodesToProcess, t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsSemanticsUpdate) { t4 = node; t4 = t3._as(A.AbstractNode.prototype.get$owner.call(t4)) === _this; } else t4 = false; if (t4) node._updateSemantics$0(); } _this._semanticsOwner.sendSemanticsUpdate$0(); } finally { A.Timeline_finishSync(); } } }; A.PipelineOwner_flushLayout_closure.prototype = { call$2(a, b) { return a._depth - b._depth; }, $signature: 362 }; A.PipelineOwner_flushCompositingBits_closure.prototype = { call$2(a, b) { return a._depth - b._depth; }, $signature: 362 }; A.PipelineOwner_flushPaint_closure.prototype = { call$2(a, b) { return b._depth - a._depth; }, $signature: 362 }; A.PipelineOwner_flushSemantics_closure.prototype = { call$2(a, b) { return a._depth - b._depth; }, $signature: 362 }; A.RenderObject.prototype = { reassemble$0() { var _this = this; _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); _this.visitChildren$1(new A.RenderObject_reassemble_closure()); }, dispose$0(_) { this._layerHandle.set$layer(0, null); }, setupParentData$1(child) { if (!(child.parentData instanceof A.ParentData)) child.parentData = new A.ParentData(); }, adoptChild$1(child) { var _this = this; _this.setupParentData$1(child); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); _this.super$AbstractNode$adoptChild(child); }, dropChild$1(child) { var _this = this; child._cleanRelayoutBoundary$0(); child.parentData.detach$0(0); child.parentData = null; _this.super$AbstractNode$dropChild(child); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); }, visitChildren$1(visitor) { }, _debugReportException$3(method, exception, stack) { A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "rendering library", A.ErrorDescription$("during " + method + "()"), null, new A.RenderObject__debugReportException_closure(this), false)); }, attach$1(owner) { var _this = this; _this.super$AbstractNode$attach(owner); if (_this._needsLayout && _this._relayoutBoundary != null) { _this._needsLayout = false; _this.markNeedsLayout$0(); } if (_this._needsCompositingBitsUpdate) { _this._needsCompositingBitsUpdate = false; _this.markNeedsCompositingBitsUpdate$0(); } if (_this._needsPaint && _this._layerHandle._layer != null) { _this._needsPaint = false; _this.markNeedsPaint$0(); } if (_this._needsSemanticsUpdate && _this.get$_semanticsConfiguration()._isSemanticBoundary) { _this._needsSemanticsUpdate = false; _this.markNeedsSemanticsUpdate$0(); } }, get$constraints() { var t1 = this._object$_constraints; if (t1 == null) throw A.wrapException(A.StateError$("A RenderObject does not have any constraints before it has been laid out.")); return t1; }, markNeedsLayout$0() { var t1, _this = this; if (_this._needsLayout) return; t1 = _this._relayoutBoundary; if (t1 == null) { _this._needsLayout = true; if (_this.get$parent(_this) != null) _this.markParentNeedsLayout$0(); return; } if (t1 !== _this) _this.markParentNeedsLayout$0(); else { _this._needsLayout = true; t1 = type$.nullable_PipelineOwner; if (t1._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(A.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingLayout.push(_this); t1._as(A.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } }, markParentNeedsLayout$0() { var t1, _this = this; _this._needsLayout = true; t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); if (!_this._doingThisLayoutWithCallback) t1.markNeedsLayout$0(); }, _cleanRelayoutBoundary$0() { var _this = this; if (_this._relayoutBoundary !== _this) { _this._relayoutBoundary = null; _this.visitChildren$1(A.object_RenderObject__cleanChildRelayoutBoundary$closure()); } }, _propagateRelayoutBoundary$0() { var t1, parentRelayoutBoundary, _this = this; if (_this._relayoutBoundary === _this) return; t1 = type$.nullable_RenderObject._as(_this.get$parent(_this)); parentRelayoutBoundary = t1 == null ? null : t1._relayoutBoundary; if (parentRelayoutBoundary != _this._relayoutBoundary) { _this._relayoutBoundary = parentRelayoutBoundary; _this.visitChildren$1(A.object_RenderObject__propagateRelayoutBoundaryToChild$closure()); } }, _layoutWithoutResize$0() { var e, stack, exception, _this = this; try { _this.performLayout$0(); _this.markNeedsSemanticsUpdate$0(); } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); _this._debugReportException$3("performLayout", e, stack); } _this._needsLayout = false; _this.markNeedsPaint$0(); }, layout$2$parentUsesSize(_, constraints, parentUsesSize) { var e, stack, e0, stack0, relayoutBoundary, exception, _this = this, t1 = $.debugProfileLayoutsEnabled; if (t1) A.Timeline_startSync(A.getRuntimeType(_this).toString$0(0), B.Map_9aZ6I, null); if (!parentUsesSize || _this.get$sizedByParent() || constraints.get$isTight() || !(_this.get$parent(_this) instanceof A.RenderObject)) relayoutBoundary = _this; else { t1 = _this.get$parent(_this); t1.toString; t1 = type$.RenderObject._as(t1)._relayoutBoundary; t1.toString; relayoutBoundary = t1; } if (!_this._needsLayout && J.$eq$(constraints, _this._object$_constraints)) { if (relayoutBoundary !== _this._relayoutBoundary) { _this._relayoutBoundary = relayoutBoundary; _this.visitChildren$1(A.object_RenderObject__propagateRelayoutBoundaryToChild$closure()); } t1 = $.debugProfileLayoutsEnabled; if (t1) A.Timeline_finishSync(); return; } _this._object$_constraints = constraints; t1 = _this._relayoutBoundary; if (t1 != null && relayoutBoundary !== t1) _this.visitChildren$1(A.object_RenderObject__cleanChildRelayoutBoundary$closure()); _this._relayoutBoundary = relayoutBoundary; if (_this.get$sizedByParent()) try { _this.performResize$0(); } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); _this._debugReportException$3("performResize", e, stack); } try { _this.performLayout$0(); _this.markNeedsSemanticsUpdate$0(); } catch (exception) { e0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); _this._debugReportException$3("performLayout", e0, stack0); } _this._needsLayout = false; _this.markNeedsPaint$0(); t1 = $.debugProfileLayoutsEnabled; if (t1) A.Timeline_finishSync(); }, layout$1($receiver, constraints) { return this.layout$2$parentUsesSize($receiver, constraints, false); }, get$sizedByParent() { return false; }, invokeLayoutCallback$1$1(callback, $T) { var _this = this; _this._doingThisLayoutWithCallback = true; try { type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(_this))._enableMutationsToDirtySubtrees$1(new A.RenderObject_invokeLayoutCallback_closure(_this, callback, $T)); } finally { _this._doingThisLayoutWithCallback = false; } }, get$isRepaintBoundary() { return false; }, get$alwaysNeedsCompositing() { return false; }, get$layer(_) { return this._layerHandle._layer; }, markNeedsCompositingBitsUpdate$0() { var t1, _this = this; if (_this._needsCompositingBitsUpdate) return; _this._needsCompositingBitsUpdate = true; if (_this.get$parent(_this) instanceof A.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); if (t1._needsCompositingBitsUpdate) return; if (!_this.get$isRepaintBoundary() && !t1.get$isRepaintBoundary()) { t1.markNeedsCompositingBitsUpdate$0(); return; } } t1 = type$.nullable_PipelineOwner; if (t1._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) t1._as(A.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingCompositingBitsUpdate.push(_this); }, _updateCompositingBits$0() { var t1, _this = this, _s17_ = "_needsCompositing"; if (!_this._needsCompositingBitsUpdate) return; t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, _s17_); _this.__RenderObject__needsCompositing = false; _this.visitChildren$1(new A.RenderObject__updateCompositingBits_closure(_this)); if (_this.get$isRepaintBoundary() || _this.get$alwaysNeedsCompositing()) _this.__RenderObject__needsCompositing = true; if (t1 != A._lateReadCheck(_this.__RenderObject__needsCompositing, _s17_)) _this.markNeedsPaint$0(); _this._needsCompositingBitsUpdate = false; }, markNeedsPaint$0() { var t1, _this = this; if (_this._needsPaint) return; _this._needsPaint = true; if (_this.get$isRepaintBoundary()) { t1 = type$.nullable_PipelineOwner; if (t1._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(A.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingPaint.push(_this); t1._as(A.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } else if (_this.get$parent(_this) instanceof A.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1).markNeedsPaint$0(); } else { t1 = type$.nullable_PipelineOwner; if (t1._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) t1._as(A.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } }, _skippedPaintingOnLayer$0() { var t1, node = this.get$parent(this); for (; node instanceof A.RenderObject;) { if (node.get$isRepaintBoundary()) { t1 = node._layerHandle._layer; if (t1 == null) break; if (t1._node$_owner != null) break; node._needsPaint = true; } node = node.get$parent(node); } }, _paintWithContext$2(context, offset) { var e, stack, t1, exception, _this = this; if (_this._needsLayout) return; t1 = $.debugProfilePaintsEnabled; if (t1) A.Timeline_startSync(A.getRuntimeType(_this).toString$0(0), B.Map_9aZ6I, null); _this._needsPaint = false; try { _this.paint$2(context, offset); } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); _this._debugReportException$3("paint", e, stack); } t1 = $.debugProfilePaintsEnabled; if (t1) A.Timeline_finishSync(); }, paint$2(context, offset) { }, applyPaintTransform$2(child, transform) { }, getTransformTo$1(_, ancestor) { var rootNode, renderers, t2, renderer, t3, transform, index, index0, t1 = ancestor == null; if (t1) { rootNode = type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(this))._rootNode; if (rootNode instanceof A.RenderObject) ancestor = rootNode; } renderers = A._setArrayType([], type$.JSArray_RenderObject); t2 = type$.RenderObject; renderer = this; while (renderer !== ancestor) { renderers.push(renderer); t3 = renderer.get$parent(renderer); t3.toString; t2._as(t3); renderer = t3; } if (!t1) { ancestor.toString; renderers.push(ancestor); } transform = new A.Matrix4(new Float64Array(16)); transform.setIdentity$0(); for (index = renderers.length - 1; index > 0; index = index0) { index0 = index - 1; renderers[index].applyPaintTransform$2(renderers[index0], transform); } return transform; }, describeApproximatePaintClip$1(child) { return null; }, describeSemanticsClip$1(child) { return null; }, describeSemanticsConfiguration$1(config) { }, sendSemanticsEvent$1(semanticsEvent) { var t1, _this = this; if (type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(_this))._semanticsOwner == null) return; t1 = _this._semantics; if (t1 != null && !t1._isMergedIntoParent) t1.sendEvent$1(semanticsEvent); else if (_this.get$parent(_this) != null) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1).sendSemanticsEvent$1(semanticsEvent); } }, get$_semanticsConfiguration() { var t1, _this = this; if (_this._cachedSemanticsConfiguration == null) { t1 = A.SemanticsConfiguration$(); _this._cachedSemanticsConfiguration = t1; _this.describeSemanticsConfiguration$1(t1); } t1 = _this._cachedSemanticsConfiguration; t1.toString; return t1; }, get$debugSemantics() { var t1 = this._semantics; return t1; }, clearSemantics$0() { this._needsSemanticsUpdate = true; this._semantics = null; this.visitChildren$1(new A.RenderObject_clearSemantics_closure()); }, markNeedsSemanticsUpdate$0() { var t1, wasSemanticsBoundary, isEffectiveSemanticsBoundary, node, t2, t3, _this = this; if (_this._node$_owner == null || type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(_this))._semanticsOwner == null) { _this._cachedSemanticsConfiguration = null; return; } if (_this._semantics != null) { t1 = _this._cachedSemanticsConfiguration; t1 = t1 == null ? null : t1._isSemanticBoundary; wasSemanticsBoundary = t1 === true; } else wasSemanticsBoundary = false; _this._cachedSemanticsConfiguration = null; isEffectiveSemanticsBoundary = _this.get$_semanticsConfiguration()._isSemanticBoundary && wasSemanticsBoundary; t1 = type$.RenderObject; node = _this; while (true) { if (!(!isEffectiveSemanticsBoundary && node.get$parent(node) instanceof A.RenderObject)) break; if (node !== _this && node._needsSemanticsUpdate) break; node._needsSemanticsUpdate = true; t2 = node.get$parent(node); t2.toString; t1._as(t2); if (t2._cachedSemanticsConfiguration == null) { t3 = A.SemanticsConfiguration$(); t2._cachedSemanticsConfiguration = t3; t2.describeSemanticsConfiguration$1(t3); } isEffectiveSemanticsBoundary = t2._cachedSemanticsConfiguration._isSemanticBoundary; if (isEffectiveSemanticsBoundary && t2._semantics == null) return; node = t2; } if (node !== _this && _this._semantics != null && _this._needsSemanticsUpdate) type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingSemantics.remove$1(0, _this); if (!node._needsSemanticsUpdate) { node._needsSemanticsUpdate = true; t1 = type$.nullable_PipelineOwner; if (t1._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(A.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingSemantics.add$1(0, node); t1._as(A.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } }, _updateSemantics$0() { var t1, interestingFragment, result, t2, t3, t4, _this = this, _null = null; if (_this._needsLayout) return; t1 = _this._semantics; if (t1 == null) t1 = _null; else { t1 = type$.nullable_SemanticsNode._as(A.AbstractNode.prototype.get$parent.call(t1, t1)); if (t1 == null) t1 = _null; else t1 = t1._mergeAllDescendantsIntoThisNode || t1._isMergedIntoParent; } interestingFragment = type$._InterestingSemanticsFragment._as(_this._getSemanticsForParent$1$mergeIntoParent(t1 === true)); result = A._setArrayType([], type$.JSArray_SemanticsNode); t1 = _this._semantics; t2 = t1 == null; t3 = t2 ? _null : t1.parentSemanticsClipRect; t4 = t2 ? _null : t1.parentPaintClipRect; t1 = t2 ? _null : t1.elevationAdjustment; interestingFragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(t1 == null ? 0 : t1, t4, t3, result); B.JSArray_methods.get$single(result); }, _getSemanticsForParent$1$mergeIntoParent(mergeIntoParent) { var producesForkingFragment, t1, fragments, toBeMarkedExplicit, t2, result, _this = this, _box_0 = {}, config = _this.get$_semanticsConfiguration(); _box_0.dropSemanticsOfPreviousSiblings = config.isBlockingSemanticsOfPreviouslyPaintedNodes; producesForkingFragment = !config._hasBeenAnnotated && !config._isSemanticBoundary; t1 = type$.JSArray__InterestingSemanticsFragment; fragments = A._setArrayType([], t1); toBeMarkedExplicit = A.LinkedHashSet_LinkedHashSet$_empty(type$._InterestingSemanticsFragment); _this.visitChildrenForSemantics$1(new A.RenderObject__getSemanticsForParent_closure(_box_0, _this, mergeIntoParent || config._isMergingSemanticsOfDescendants, fragments, toBeMarkedExplicit, config, producesForkingFragment)); for (t2 = A._LinkedHashSetIterator$(toBeMarkedExplicit, toBeMarkedExplicit._collection$_modifications, toBeMarkedExplicit.$ti._precomputed1); t2.moveNext$0();) t2._collection$_current.markAsExplicit$0(); _this._needsSemanticsUpdate = false; if (!(_this.get$parent(_this) instanceof A.RenderObject)) { t2 = _box_0.dropSemanticsOfPreviousSiblings; result = new A._RootSemanticsFragment(A._setArrayType([], t1), A._setArrayType([_this], type$.JSArray_RenderObject), t2); } else { t2 = _box_0.dropSemanticsOfPreviousSiblings; if (producesForkingFragment) result = new A._ContainerSemanticsFragment(A._setArrayType([], t1), t2); else { result = new A._SwitchableSemanticsFragment(mergeIntoParent, config, A._setArrayType([], t1), A._setArrayType([_this], type$.JSArray_RenderObject), t2); if (config._isSemanticBoundary) result._isExplicit = true; } } result.addAll$1(0, fragments); return result; }, visitChildrenForSemantics$1(visitor) { this.visitChildren$1(visitor); }, assembleSemanticsNode$3(node, config, children) { node.updateWith$2$childrenInInversePaintOrder$config(0, type$.List_SemanticsNode._as(children), config); }, handleEvent$2($event, entry) { }, toStringShort$0() { var target, count, _this = this, header = "#" + A.shortHash(_this), t1 = _this._relayoutBoundary; if (t1 != null && t1 !== _this) { t1 = type$.nullable_RenderObject; target = t1._as(_this.get$parent(_this)); count = 1; while (true) { if (!(target != null && target !== _this._relayoutBoundary)) break; target = t1._as(target.get$parent(target)); ++count; } header += " relayoutBoundary=up" + count; } if (_this._needsLayout) header += " NEEDS-LAYOUT"; if (_this._needsPaint) header += " NEEDS-PAINT"; if (_this._needsCompositingBitsUpdate) header += " NEEDS-COMPOSITING-BITS-UPDATE"; if (_this._node$_owner == null) header += " DETACHED"; return header; }, toString$0(_) { return this.toStringShort$0(); }, debugDescribeChildren$0() { return A._setArrayType([], type$.JSArray_DiagnosticsNode); }, showOnScreen$4$curve$descendant$duration$rect(curve, descendant, duration, rect) { var t1, _this = this; if (_this.get$parent(_this) instanceof A.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); t1.showOnScreen$4$curve$descendant$duration$rect(curve, descendant == null ? _this : descendant, duration, rect); } }, showOnScreen$0() { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, null); }, showOnScreen$1$rect(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, rect); }, showOnScreen$3$curve$duration$rect(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, showOnScreen$2$descendant$rect(descendant, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, descendant, B.Duration_0, rect); }, $isDiagnosticableTree: 1, $isHitTestTarget: 1 }; A.RenderObject_reassemble_closure.prototype = { call$1(child) { child.reassemble$0(); }, $signature: 110 }; A.RenderObject__debugReportException_closure.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode), t2 = this.$this; t1.push(A.DiagnosticableTreeNode$("The following RenderObject was being processed when the exception was fired", B.DiagnosticsTreeStyle_10, t2)); t1.push(A.DiagnosticableTreeNode$("RenderObject", B.DiagnosticsTreeStyle_11, t2)); return t1; }, $signature: 138 }; A.RenderObject_invokeLayoutCallback_closure.prototype = { call$0() { this.callback.call$1(this.T._as(this.$this.get$constraints())); }, $signature: 0 }; A.RenderObject__updateCompositingBits_closure.prototype = { call$1(child) { child._updateCompositingBits$0(); if (A._lateReadCheck(child.__RenderObject__needsCompositing, "_needsCompositing")) this.$this.__RenderObject__needsCompositing = true; }, $signature: 110 }; A.RenderObject_clearSemantics_closure.prototype = { call$1(child) { child.clearSemantics$0(); }, $signature: 110 }; A.RenderObject__getSemanticsForParent_closure.prototype = { call$1(renderChild) { var t1, t2, t3, t4, t5, t6, t7, _i, fragment, siblingLength, i, siblingFragment, t8, _this = this, parentFragment = renderChild._getSemanticsForParent$1$mergeIntoParent(_this.childrenMergeIntoParent); if (parentFragment.dropsSemanticsOfPreviousSiblings) { B.JSArray_methods.set$length(_this.fragments, 0); _this.toBeMarkedExplicit.clear$0(0); if (!_this.config._isSemanticBoundary) _this._box_0.dropSemanticsOfPreviousSiblings = true; } for (t1 = parentFragment.get$interestingFragments(), t2 = t1.length, t3 = _this.fragments, t4 = _this.toBeMarkedExplicit, t5 = _this.config, t6 = _this.$this, t7 = _this.producesForkingFragment, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { fragment = t1[_i]; t3.push(fragment); fragment._ancestorChain.push(t6); fragment.addTags$1(t5._tagsForChildren); if (t5.explicitChildNodes || !(t6.get$parent(t6) instanceof A.RenderObject)) { fragment.markAsExplicit$0(); continue; } if (fragment.get$config() == null || t7) continue; if (!t5.isCompatibleWith$1(fragment.get$config())) t4.add$1(0, fragment); siblingLength = t3.length - 1; for (i = 0; i < siblingLength; ++i) { siblingFragment = t3[i]; t8 = fragment.get$config(); t8.toString; if (!t8.isCompatibleWith$1(siblingFragment.get$config())) { t4.add$1(0, fragment); t4.add$1(0, siblingFragment); } } } }, $signature: 110 }; A.RenderObjectWithChildMixin.prototype = { set$child(value) { var _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) _this.dropChild$1(t1); _this.RenderObjectWithChildMixin__child = value; if (value != null) _this.adoptChild$1(value); }, redepthChildren$0() { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) this.redepthChild$1(t1); }, visitChildren$1(visitor) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) visitor.call$1(t1); }, debugDescribeChildren$0() { var t1 = this.RenderObjectWithChildMixin__child, t2 = type$.JSArray_DiagnosticsNode; return t1 != null ? A._setArrayType([A.DiagnosticableTreeNode$("child", null, t1)], t2) : A._setArrayType([], t2); } }; A.ContainerParentDataMixin.prototype = {$isParentData: 1}; A.ContainerRenderObjectMixin.prototype = { get$childCount() { return this.ContainerRenderObjectMixin__childCount; }, _insertIntoChildList$2$after(child, after) { var t2, t3, t4, _this = this, t1 = child.parentData; t1.toString; t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t2._as(t1); ++_this.ContainerRenderObjectMixin__childCount; if (after == null) { t1 = t1.ContainerParentDataMixin_nextSibling = _this.ContainerRenderObjectMixin__firstChild; if (t1 != null) { t1 = t1.parentData; t1.toString; t2._as(t1).ContainerParentDataMixin_previousSibling = child; } _this.ContainerRenderObjectMixin__firstChild = child; if (_this.ContainerRenderObjectMixin__lastChild == null) _this.ContainerRenderObjectMixin__lastChild = child; } else { t3 = after.parentData; t3.toString; t2._as(t3); t4 = t3.ContainerParentDataMixin_nextSibling; if (t4 == null) { t1.ContainerParentDataMixin_previousSibling = after; _this.ContainerRenderObjectMixin__lastChild = t3.ContainerParentDataMixin_nextSibling = child; } else { t1.ContainerParentDataMixin_nextSibling = t4; t1.ContainerParentDataMixin_previousSibling = after; t1 = t4.parentData; t1.toString; t2._as(t1).ContainerParentDataMixin_previousSibling = t3.ContainerParentDataMixin_nextSibling = child; } } }, insert$2$after(_, child, after) { this.adoptChild$1(child); this._insertIntoChildList$2$after(child, after); }, addAll$1(_, children) { }, _removeFromChildList$1(child) { var t2, t3, t4, t5, _this = this, t1 = child.parentData; t1.toString; t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t2._as(t1); t3 = t1.ContainerParentDataMixin_previousSibling; t4 = t1.ContainerParentDataMixin_nextSibling; if (t3 == null) _this.ContainerRenderObjectMixin__firstChild = t4; else { t5 = t3.parentData; t5.toString; t2._as(t5).ContainerParentDataMixin_nextSibling = t4; } t4 = t1.ContainerParentDataMixin_nextSibling; if (t4 == null) _this.ContainerRenderObjectMixin__lastChild = t3; else { t4 = t4.parentData; t4.toString; t2._as(t4).ContainerParentDataMixin_previousSibling = t3; } t1.ContainerParentDataMixin_nextSibling = t1.ContainerParentDataMixin_previousSibling = null; --_this.ContainerRenderObjectMixin__childCount; }, remove$1(_, child) { this._removeFromChildList$1(child); this.dropChild$1(child); }, move$2$after(child, after) { var _this = this, t1 = child.parentData; t1.toString; if (A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_previousSibling == after) return; _this._removeFromChildList$1(child); _this._insertIntoChildList$2$after(child, after); _this.markNeedsLayout$0(); }, redepthChildren$0() { var t1, t2, t3, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { t2 = child._depth; t3 = this._depth; if (t2 <= t3) { child._depth = t3 + 1; child.redepthChildren$0(); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, visitChildren$1(visitor) { var t1, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { visitor.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, get$firstChild(_) { return this.ContainerRenderObjectMixin__firstChild; }, childBefore$1(child) { var t1 = child.parentData; t1.toString; return A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_previousSibling; }, childAfter$1(child) { var t1 = child.parentData; t1.toString; return A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_nextSibling; }, debugDescribeChildren$0() { var t1, count, t2, children = A._setArrayType([], type$.JSArray_DiagnosticsNode), child = this.ContainerRenderObjectMixin__firstChild; if (child != null) for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), count = 1; true; child = t2) { children.push(new A.DiagnosticableTreeNode(child, "child " + count, true, true, null, null)); if (child === this.ContainerRenderObjectMixin__lastChild) break; ++count; t2 = child.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_nextSibling; t2.toString; } return children; } }; A.RelayoutWhenSystemFontsChangeMixin.prototype = { systemFontsDidChange$0() { this.markNeedsLayout$0(); } }; A._SemanticsFragment.prototype = {}; A._ContainerSemanticsFragment.prototype = { addAll$1(_, fragments) { B.JSArray_methods.addAll$1(this.interestingFragments, fragments); }, get$interestingFragments() { return this.interestingFragments; } }; A._InterestingSemanticsFragment.prototype = { get$interestingFragments() { return A._setArrayType([this], type$.JSArray__InterestingSemanticsFragment); }, addTags$1(tags) { var t1; if (tags == null || tags._collection$_length === 0) return; t1 = this._object$_tagsForChildren; (t1 == null ? this._object$_tagsForChildren = A.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t1).addAll$1(0, tags); } }; A._RootSemanticsFragment.prototype = { compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(elevationAdjustment, parentPaintClipRect, parentSemanticsClipRect, result) { var t3, t4, t5, children, _i, t1 = this._ancestorChain, t2 = B.JSArray_methods.get$first(t1); if (t2._semantics == null) { t3 = B.JSArray_methods.get$first(t1).get$showOnScreen(); t4 = B.JSArray_methods.get$first(t1); t4.toString; t4 = type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(t4))._semanticsOwner; t4.toString; t5 = $.$get$SemanticsNode__kEmptyConfig(); t5 = new A.SemanticsNode(null, 0, t3, B.Rect_0_0_0_0, t5._isMergingSemanticsOfDescendants, t5._actions, t5._semantics$_customSemanticsActions, t5._actionsAsBits, t5._flags, t5._semantics$_attributedLabel, t5._semantics$_attributedValue, t5._semantics$_attributedIncreasedValue, t5._semantics$_attributedDecreasedValue, t5._semantics$_attributedHint, t5._semantics$_elevation, t5._semantics$_thickness, t5._semantics$_textDirection); t5.attach$1(t4); t2._semantics = t5; } t2 = B.JSArray_methods.get$first(t1)._semantics; t2.toString; t2.set$rect(0, B.JSArray_methods.get$first(t1).get$semanticBounds()); children = A._setArrayType([], type$.JSArray_SemanticsNode); for (t1 = this._object$_children, t3 = t1.length, _i = 0; _i < t1.length; t1.length === t3 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(0, parentPaintClipRect, parentSemanticsClipRect, children); t2.updateWith$2$childrenInInversePaintOrder$config(0, children, null); result.push(t2); }, get$config() { return null; }, markAsExplicit$0() { }, addAll$1(_, fragments) { B.JSArray_methods.addAll$1(this._object$_children, fragments); } }; A._SwitchableSemanticsFragment.prototype = { compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(elevationAdjustment, parentPaintClipRect, parentSemanticsClipRect, result) { var t1, t2, t3, t4, t5, _i, fragment, t6, t7, geometry, node, children, _this = this, _null = null; if (!_this._isExplicit) { t1 = _this._ancestorChain; B.JSArray_methods.get$first(t1)._semantics = null; for (t2 = _this._object$_children, t3 = t2.length, t4 = A._arrayInstanceType(t1), t5 = t4._precomputed1, t4 = t4._eval$1("SubListIterable<1>"), _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { fragment = t2[_i]; t6 = fragment._ancestorChain; t7 = new A.SubListIterable(t1, 1, _null, t4); t7.SubListIterable$3(t1, 1, _null, t5); B.JSArray_methods.addAll$1(t6, t7); fragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(elevationAdjustment + _this._object$_config._semantics$_elevation, parentPaintClipRect, parentSemanticsClipRect, result); } return; } t1 = _this._ancestorChain; if (t1.length > 1) { geometry = new A._SemanticsGeometry(); geometry._computeValues$3(parentSemanticsClipRect, parentPaintClipRect, t1); } else geometry = _null; t2 = _this._mergeIntoParent; t3 = !t2; if (t3) { if (geometry == null) t4 = _null; else { t4 = A._lateReadCheck(geometry.___SemanticsGeometry__rect, "_rect"); t4 = t4.get$isEmpty(t4); } t4 = t4 === true; } else t4 = false; if (t4) return; t4 = B.JSArray_methods.get$first(t1); if (t4._semantics == null) t4._semantics = A.SemanticsNode$(_null, B.JSArray_methods.get$first(t1).get$showOnScreen()); node = B.JSArray_methods.get$first(t1)._semantics; node.set$isMergedIntoParent(t2); node.tags = _this._object$_tagsForChildren; node.elevationAdjustment = elevationAdjustment; if (elevationAdjustment !== 0) { _this._ensureConfigIsWritable$0(); t2 = _this._object$_config; t2.set$elevation(0, t2._semantics$_elevation + elevationAdjustment); } if (geometry != null) { node.set$rect(0, A._lateReadCheck(geometry.___SemanticsGeometry__rect, "_rect")); node.set$transform(0, A._lateReadCheck(geometry.___SemanticsGeometry__transform, "_transform")); node.parentSemanticsClipRect = geometry._semanticsClipRect; node.parentPaintClipRect = geometry._paintClipRect; if (t3 && geometry._markAsHidden) { _this._ensureConfigIsWritable$0(); _this._object$_config._setFlag$2(B.SemanticsFlag_8192, true); } } children = A._setArrayType([], type$.JSArray_SemanticsNode); for (t2 = _this._object$_children, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { fragment = t2[_i]; t4 = node.parentSemanticsClipRect; fragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(0, node.parentPaintClipRect, t4, children); } t2 = _this._object$_config; if (t2._isSemanticBoundary) B.JSArray_methods.get$first(t1).assembleSemanticsNode$3(node, _this._object$_config, children); else node.updateWith$2$childrenInInversePaintOrder$config(0, children, t2); result.push(node); }, get$config() { return this._isExplicit ? null : this._object$_config; }, addAll$1(_, fragments) { var t1, t2, _i, fragment, t3, t4, _this = this; for (t1 = fragments.length, t2 = _this._object$_children, _i = 0; _i < fragments.length; fragments.length === t1 || (0, A.throwConcurrentModificationError)(fragments), ++_i) { fragment = fragments[_i]; t2.push(fragment); if (fragment.get$config() == null) continue; if (!_this._isConfigWritable) { _this._object$_config = _this._object$_config.copy$0(0); _this._isConfigWritable = true; } t3 = _this._object$_config; t4 = fragment.get$config(); t4.toString; t3.absorb$1(t4); } }, _ensureConfigIsWritable$0() { var t1, t2, _this = this; if (!_this._isConfigWritable) { t1 = _this._object$_config; t2 = A.SemanticsConfiguration$(); t2._isSemanticBoundary = t1._isSemanticBoundary; t2.explicitChildNodes = t1.explicitChildNodes; t2.isBlockingSemanticsOfPreviouslyPaintedNodes = t1.isBlockingSemanticsOfPreviouslyPaintedNodes; t2._hasBeenAnnotated = t1._hasBeenAnnotated; t2._isMergingSemanticsOfDescendants = t1._isMergingSemanticsOfDescendants; t2._semantics$_textDirection = t1._semantics$_textDirection; t2._semantics$_sortKey = t1._semantics$_sortKey; t2._semantics$_attributedLabel = t1._semantics$_attributedLabel; t2._semantics$_attributedIncreasedValue = t1._semantics$_attributedIncreasedValue; t2._semantics$_attributedValue = t1._semantics$_attributedValue; t2._semantics$_attributedDecreasedValue = t1._semantics$_attributedDecreasedValue; t2._semantics$_attributedHint = t1._semantics$_attributedHint; t2._semantics$_hintOverrides = t1._semantics$_hintOverrides; t2._semantics$_elevation = t1._semantics$_elevation; t2._semantics$_thickness = t1._semantics$_thickness; t2._flags = t1._flags; t2._tagsForChildren = t1._tagsForChildren; t2._textSelection = t1._textSelection; t2._scrollPosition = t1._scrollPosition; t2._scrollExtentMax = t1._scrollExtentMax; t2._scrollExtentMin = t1._scrollExtentMin; t2._actionsAsBits = t1._actionsAsBits; t2._indexInParent = t1._indexInParent; t2._scrollIndex = t1._scrollIndex; t2._scrollChildCount = t1._scrollChildCount; t2._platformViewId = t1._platformViewId; t2._semantics$_maxValueLength = t1._semantics$_maxValueLength; t2._semantics$_currentValueLength = t1._semantics$_currentValueLength; t2._actions.addAll$1(0, t1._actions); t2._semantics$_customSemanticsActions.addAll$1(0, t1._semantics$_customSemanticsActions); _this._object$_config = t2; _this._isConfigWritable = true; } }, markAsExplicit$0() { this._isExplicit = true; } }; A._SemanticsGeometry.prototype = { _computeValues$3(parentSemanticsClipRect, parentPaintClipRect, ancestors) { var index, $parent, child, owner, t2, paintRect, _this = this, t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); _this.___SemanticsGeometry__transform = t1; _this._semanticsClipRect = parentSemanticsClipRect; _this._paintClipRect = parentPaintClipRect; for (index = ancestors.length - 1; index > 0;) { $parent = ancestors[index]; --index; child = ancestors[index]; parentSemanticsClipRect = $parent.describeSemanticsClip$1(child); if (parentSemanticsClipRect != null) { _this._semanticsClipRect = parentSemanticsClipRect; _this._paintClipRect = A._SemanticsGeometry__intersectRects(_this._paintClipRect, $parent.describeApproximatePaintClip$1(child)); } else _this._semanticsClipRect = A._SemanticsGeometry__intersectRects(_this._semanticsClipRect, $parent.describeApproximatePaintClip$1(child)); t1 = $.$get$_SemanticsGeometry__temporaryTransformHolder(); t1.setIdentity$0(); A._SemanticsGeometry__applyIntermediatePaintTransforms($parent, child, A._lateReadCheck(_this.___SemanticsGeometry__transform, "_transform"), t1); _this._semanticsClipRect = A._SemanticsGeometry__transformRect(_this._semanticsClipRect, t1); _this._paintClipRect = A._SemanticsGeometry__transformRect(_this._paintClipRect, t1); } owner = B.JSArray_methods.get$first(ancestors); t1 = _this._semanticsClipRect; t1 = t1 == null ? owner.get$semanticBounds() : t1.intersect$1(owner.get$semanticBounds()); _this.___SemanticsGeometry__rect = t1; t2 = _this._paintClipRect; if (t2 != null) { paintRect = t2.intersect$1(A._lateReadCheck(t1, "_rect")); if (paintRect.get$isEmpty(paintRect)) { t1 = A._lateReadCheck(_this.___SemanticsGeometry__rect, "_rect"); t1 = !t1.get$isEmpty(t1); } else t1 = false; _this._markAsHidden = t1; if (!t1) _this.___SemanticsGeometry__rect = paintRect; } } }; A._RenderObject_AbstractNode_DiagnosticableTreeMixin.prototype = {}; A.TextParentData.prototype = { toString$0(_) { var t1 = A._setArrayType(["offset=" + A.S(this.offset)], type$.JSArray_String), t2 = this.scale; if (t2 != null) t1.push("scale=" + A.S(t2)); t1.push(this.super$BoxParentData$toString(0)); return B.JSArray_methods.join$1(t1, "; "); } }; A.PlaceholderSpanIndexSemanticsTag.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.PlaceholderSpanIndexSemanticsTag && other.index === this.index; }, get$hashCode(_) { return A.Object_hash(B.Type_I8o, this.index, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.RenderParagraph.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.TextParentData)) child.parentData = new A.TextParentData(null, null, B.Offset_0_0); }, set$text(_, value) { var _this = this, t1 = _this._textPainter; switch (t1._text_painter$_text.compareTo$1(0, value).index) { case 0: case 1: return; case 2: t1.set$text(0, value); _this._cachedCombinedSemanticsInfos = _this._cachedAttributedLabel = null; _this._extractPlaceholderSpans$1(value); _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); break; case 3: t1.set$text(0, value); _this._cachedCombinedSemanticsInfos = _this._cachedAttributedLabel = _this._overflowShader = null; _this._extractPlaceholderSpans$1(value); _this.markNeedsLayout$0(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _extractPlaceholderSpans$1(span) { this.__RenderParagraph__placeholderSpans = A._setArrayType([], type$.JSArray_PlaceholderSpan); span.visitChildren$1(new A.RenderParagraph__extractPlaceholderSpans_closure(this)); }, set$textAlign(_, value) { var t1 = this._textPainter; if (t1._textAlign === value) return; t1.set$textAlign(0, value); this.markNeedsPaint$0(); }, set$textDirection(_, value) { var t1 = this._textPainter; if (t1._text_painter$_textDirection == value) return; t1.set$textDirection(0, value); this.markNeedsLayout$0(); }, set$softWrap(value) { if (this._softWrap === value) return; this._softWrap = value; this.markNeedsLayout$0(); }, set$overflow(_, value) { var t1, _this = this; if (_this._overflow === value) return; _this._overflow = value; t1 = value === B.TextOverflow_2 ? "\u2026" : null; _this._textPainter.set$ellipsis(0, t1); _this.markNeedsLayout$0(); }, set$textScaleFactor(value) { var t1 = this._textPainter; if (t1._text_painter$_textScaleFactor === value) return; t1.set$textScaleFactor(value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$maxLines(_, value) { var t1 = this._textPainter; if (t1._maxLines == value) return; t1.set$maxLines(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$locale(_, value) { var t1 = this._textPainter; if (J.$eq$(t1._text_painter$_locale, value)) return; t1.set$locale(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$strutStyle(_, value) { var t1 = this._textPainter; if (J.$eq$(t1._strutStyle, value)) return; t1.set$strutStyle(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$textWidthBasis(value) { var t1 = this._textPainter; if (t1._textWidthBasis === value) return; t1.set$textWidthBasis(value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$textHeightBehavior(_, value) { return; }, computeMinIntrinsicWidth$1(height) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenWidthWithMinIntrinsics$1(height); _this._paragraph$_layoutText$0(); t1 = _this._textPainter._paragraph.get$minIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, computeMaxIntrinsicWidth$1(height) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenWidthWithMaxIntrinsics$1(height); _this._paragraph$_layoutText$0(); t1 = _this._textPainter._paragraph.get$maxIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, _computeIntrinsicHeight$1(width) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenHeightWithMinIntrinsics$1(width); _this._paragraph$_layoutText$2$maxWidth$minWidth(width, width); t1 = _this._textPainter._paragraph; t1 = t1.get$height(t1); t1.toString; return Math.ceil(t1); }, computeMinIntrinsicHeight$1(width) { return this._computeIntrinsicHeight$1(width); }, computeMaxIntrinsicHeight$1(width) { return this._computeIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1(baseline) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); return this._textPainter.computeDistanceToActualBaseline$1(B.TextBaseline_0); }, _canComputeIntrinsics$0() { var t1, t2, _i; for (t1 = A._lateReadCheck(this.__RenderParagraph__placeholderSpans, "_placeholderSpans"), t2 = t1.length, _i = 0; _i < t2; ++_i) switch (t1[_i].alignment.index) { case 0: case 1: case 2: return false; case 3: case 5: case 4: continue; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return true; }, _computeChildrenWidthWithMaxIntrinsics$1(height) { var t1, childIndex, t2, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = A.List_List$filled(_this.ContainerRenderObjectMixin__childCount, B.PlaceholderDimensions_8eb, false, type$.PlaceholderDimensions); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { t2 = child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).toString; placeholderDimensions[childIndex] = new A.PlaceholderDimensions(new A.Size(t2, 0), null, J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).baseline); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++childIndex; } _this._textPainter.setPlaceholderDimensions$1(placeholderDimensions); }, _computeChildrenWidthWithMinIntrinsics$1(height) { var t1, childIndex, t2, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = A.List_List$filled(_this.ContainerRenderObjectMixin__childCount, B.PlaceholderDimensions_8eb, false, type$.PlaceholderDimensions); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { t2 = child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).toString; placeholderDimensions[childIndex] = new A.PlaceholderDimensions(new A.Size(t2, 0), null, J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).baseline); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++childIndex; } _this._textPainter.setPlaceholderDimensions$1(placeholderDimensions); }, _computeChildrenHeightWithMinIntrinsics$1(width) { var t2, childIndex, size, t3, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = A.List_List$filled(_this.ContainerRenderObjectMixin__childCount, B.PlaceholderDimensions_8eb, false, type$.PlaceholderDimensions), t1 = _this._textPainter; width /= t1._text_painter$_textScaleFactor; for (t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { size = child.getDryLayout$1(new A.BoxConstraints(0, width, 0, 1 / 0)); J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).toString; placeholderDimensions[childIndex] = new A.PlaceholderDimensions(size, null, J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).baseline); t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; ++childIndex; } t1.setPlaceholderDimensions$1(placeholderDimensions); }, hitTestSelf$1(position) { return true; }, hitTestChildren$2$position(result, position) { var hitText, t2, t3, t4, childIndex, t5, t6, t7, transform, child, _box_0 = {}, t1 = this._textPainter, textPosition = t1._paragraph.getPositionForOffset$1(position), span = t1._text_painter$_text.getSpanForPosition$1(textPosition); if (span != null && type$.HitTestTarget._is(span)) { result.add$1(0, new A.HitTestEntry(type$.HitTestTarget._as(span), type$.HitTestEntry_HitTestTarget)); hitText = true; } else hitText = false; t2 = _box_0.child = this.ContainerRenderObjectMixin__firstChild; t3 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); t4 = type$.TextParentData; childIndex = 0; while (true) { if (!(t2 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t2 = t2.parentData; t2.toString; t4._as(t2); t5 = t2.offset; t6 = t5._dx; t5 = t5._dy; t7 = new Float64Array(16); transform = new A.Matrix4(t7); transform.setIdentity$0(); t7[14] = 0; t7[13] = t5; t7[12] = t6; t6 = t2.scale; transform.scale$3(0, t6, t6, t6); if (result.addWithPaintTransform$3$hitTest$position$transform(new A.RenderParagraph_hitTestChildren_closure(_box_0, position, t2), position, transform)) return true; t2 = _box_0.child.parentData; t2.toString; child = t3._as(t2).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t2 = child; } return hitText; }, _paragraph$_layoutText$2$maxWidth$minWidth(maxWidth, minWidth) { var t1 = this._softWrap || this._overflow === B.TextOverflow_2 ? maxWidth : 1 / 0; this._textPainter.layout$2$maxWidth$minWidth(0, t1, minWidth); }, _paragraph$_layoutText$0() { return this._paragraph$_layoutText$2$maxWidth$minWidth(1 / 0, 0); }, systemFontsDidChange$0() { this.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange(); this._textPainter.markNeedsLayout$0(); }, _layoutTextWithConstraints$1(constraints) { var t1; this._textPainter.setPlaceholderDimensions$1(this._paragraph$_placeholderDimensions); t1 = constraints.minWidth; this._paragraph$_layoutText$2$maxWidth$minWidth(constraints.maxWidth, t1); }, _paragraph$_layoutChildren$2$dry(constraints, dry) { var child, placeholderDimensions, boxConstraints, t2, childIndex, t3, t4, baselineOffset, childSize, _this = this, _s17_ = "_placeholderSpans", t1 = _this.ContainerRenderObjectMixin__childCount; if (t1 === 0) return A._setArrayType([], type$.JSArray_PlaceholderDimensions); child = _this.ContainerRenderObjectMixin__firstChild; placeholderDimensions = A.List_List$filled(t1, B.PlaceholderDimensions_8eb, false, type$.PlaceholderDimensions); boxConstraints = new A.BoxConstraints(0, constraints.maxWidth, 0, 1 / 0).$div(0, _this._textPainter._text_painter$_textScaleFactor); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t2 = !dry, childIndex = 0; child != null;) { if (t2) { child.layout$2$parentUsesSize(0, boxConstraints, true); t3 = child._box$_size; t3.toString; switch (J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).alignment.index) { case 0: t4 = J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).baseline; t4.toString; baselineOffset = child.getDistanceToBaseline$1(t4); break; case 1: case 2: case 4: case 5: case 3: baselineOffset = null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } childSize = t3; } else { childSize = child.getDryLayout$1(boxConstraints); baselineOffset = null; } J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).toString; placeholderDimensions[childIndex] = new A.PlaceholderDimensions(childSize, baselineOffset, J.$index$asx(A._lateReadCheck(_this.__RenderParagraph__placeholderSpans, _s17_), childIndex).baseline); t3 = child.parentData; t3.toString; child = t1._as(t3).ContainerParentDataMixin_nextSibling; ++childIndex; } return placeholderDimensions; }, _paragraph$_layoutChildren$1(constraints) { return this._paragraph$_layoutChildren$2$dry(constraints, false); }, _paragraph$_setParentData$0() { var t4, t5, child = this.ContainerRenderObjectMixin__firstChild, t1 = type$.TextParentData, t2 = this._textPainter, t3 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; while (true) { if (!(child != null && childIndex < t2._inlinePlaceholderBoxes.length)) break; t4 = child.parentData; t4.toString; t1._as(t4); t5 = t2._inlinePlaceholderBoxes[childIndex]; t4.offset = new A.Offset(t5.left, t5.top); t4.scale = t2._inlinePlaceholderScales[childIndex]; child = t3._as(t4).ContainerParentDataMixin_nextSibling; ++childIndex; } }, _paragraph$_canComputeDryLayout$0() { var t1, t2, _i; for (t1 = A._lateReadCheck(this.__RenderParagraph__placeholderSpans, "_placeholderSpans"), t2 = t1.length, _i = 0; _i < t2; ++_i) switch (t1[_i].alignment.index) { case 0: case 1: case 2: return false; case 3: case 5: case 4: continue; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return true; }, computeDryLayout$1(constraints) { var t1, t2, _this = this; if (!_this._paragraph$_canComputeDryLayout$0()) return B.Size_0_0; t1 = _this._textPainter; t1.setPlaceholderDimensions$1(_this._paragraph$_layoutChildren$2$dry(constraints, true)); t2 = constraints.minWidth; _this._paragraph$_layoutText$2$maxWidth$minWidth(constraints.maxWidth, t2); t2 = t1.get$width(t1); t1 = t1._paragraph; t1 = t1.get$height(t1); t1.toString; return constraints.constrain$1(new A.Size(t2, Math.ceil(t1))); }, performLayout$0() { var t1, t2, t3, t4, textDidExceedMaxLines, didOverflowHeight, didOverflowWidth, fadeSizePainter, fadeStart, fadeEnd, _this = this, _null = null, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._paragraph$_placeholderDimensions = _this._paragraph$_layoutChildren$1(constraints); _this._layoutTextWithConstraints$1(constraints); _this._paragraph$_setParentData$0(); t1 = _this._textPainter; t2 = t1.get$width(t1); t3 = t1._paragraph; t3 = t3.get$height(t3); t3.toString; t3 = Math.ceil(t3); t4 = t1._paragraph; textDidExceedMaxLines = t4.get$didExceedMaxLines(t4); t4 = _this._box$_size = constraints.constrain$1(new A.Size(t2, t3)); didOverflowHeight = t4._dy < t3 || textDidExceedMaxLines; didOverflowWidth = t4._dx < t2; if (didOverflowWidth || didOverflowHeight) switch (_this._overflow.index) { case 3: _this._needsClipping = false; _this._overflowShader = null; break; case 0: case 2: _this._needsClipping = true; _this._overflowShader = null; break; case 1: _this._needsClipping = true; t2 = A.TextSpan$(_null, _null, t1._text_painter$_text.style, "\u2026"); t3 = t1._text_painter$_textDirection; t3.toString; t4 = t1._text_painter$_textScaleFactor; fadeSizePainter = A.TextPainter$(_null, t1._text_painter$_locale, _null, _null, t2, B.TextAlign_4, t3, _null, t4, B.TextWidthBasis_0); fadeSizePainter.layout$0(0); if (didOverflowWidth) { switch (t1._text_painter$_textDirection.index) { case 0: fadeStart = fadeSizePainter.get$width(fadeSizePainter); fadeEnd = 0; break; case 1: fadeEnd = _this._box$_size._dx; fadeStart = fadeEnd - fadeSizePainter.get$width(fadeSizePainter); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this._overflowShader = A.Gradient_Gradient$linear(new A.Offset(fadeStart, 0), new A.Offset(fadeEnd, 0), A._setArrayType([B.Color_4294967295, B.Color_16777215], type$.JSArray_Color_2), _null, B.TileMode_0, _null); } else { fadeEnd = _this._box$_size._dy; t1 = fadeSizePainter._paragraph; t1 = t1.get$height(t1); t1.toString; _this._overflowShader = A.Gradient_Gradient$linear(new A.Offset(0, fadeEnd - Math.ceil(t1) / 2), new A.Offset(0, fadeEnd), A._setArrayType([B.Color_4294967295, B.Color_16777215], type$.JSArray_Color_2), _null, B.TileMode_0, _null); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } else { _this._needsClipping = false; _this._overflowShader = null; } }, paint$2(context, offset) { var t1, t2, t3, bounds, t4, t5, t6, childIndex, t7, t8, child, paint, _this = this, _box_0 = {}; _this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this))); if (_this._needsClipping) { t1 = _this._box$_size; t2 = offset._dx; t3 = offset._dy; bounds = new A.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy); if (_this._overflowShader != null) { t1 = context.get$canvas(context); t1.saveLayer$2(0, bounds, $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData())); } else context.get$canvas(context).save$0(0); context.get$canvas(context).clipRect$1(0, bounds); } t1 = _this._textPainter; t1.paint$2(context.get$canvas(context), offset); t2 = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; t3 = type$.TextParentData; t4 = offset._dx; t5 = offset._dy; t6 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); childIndex = 0; while (true) { if (!(t2 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t2 = t2.parentData; t2.toString; t3._as(t2); t7 = t2.scale; t7.toString; t8 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = t2.offset; context.pushTransform$4(t8, new A.Offset(t4 + t2._dx, t5 + t2._dy), A.Matrix4_Matrix4$diagonal3Values(t7, t7, t7), new A.RenderParagraph_paint_closure(_box_0)); t7 = _box_0.child.parentData; t7.toString; child = t6._as(t7).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t2 = child; } if (_this._needsClipping) { if (_this._overflowShader != null) { context.get$canvas(context).translate$2(0, t4, t5); paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$blendMode(B.BlendMode_13); paint.set$shader(_this._overflowShader); t1 = context.get$canvas(context); t2 = _this._box$_size; t1.drawRect$2(0, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), paint); } context.get$canvas(context).restore$0(0); } }, getOffsetForCaret$2(position, caretPrototype) { var t1; this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); t1 = this._textPainter; t1._computeCaretMetrics$2(position, caretPrototype); return A._lateReadCheck(t1.__TextPainter__caretMetrics, "_caretMetrics").offset; }, getFullHeightForCaret$1(position) { var t1; this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); t1 = this._textPainter; t1._computeCaretMetrics$2(position, B.Rect_0_0_0_0); return A._lateReadCheck(t1.__TextPainter__caretMetrics, "_caretMetrics").fullHeight; }, getBoxesForSelection$1(selection) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); return this._textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, B.BoxHeightStyle_0, B.BoxWidthStyle_0); }, getPositionForOffset$1(offset) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); return this._textPainter._paragraph.getPositionForOffset$1(offset); }, describeSemanticsConfiguration$1(config) { var t1, t2, collector, buffer, attributes, t3, offset, _i, t4, info, label, t5, _i0, infoAttribute, originalRange, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._textPainter; t2 = t1._text_painter$_text; t2.toString; collector = A._setArrayType([], type$.JSArray_InlineSpanSemanticsInformation); t2.computeSemanticsInformation$1(collector); _this._semanticsInfo = collector; if (B.JSArray_methods.any$1(collector, new A.RenderParagraph_describeSemanticsConfiguration_closure())) config._isSemanticBoundary = config.explicitChildNodes = true; else { t2 = _this._cachedAttributedLabel; if (t2 == null) { buffer = new A.StringBuffer(""); attributes = A._setArrayType([], type$.JSArray_StringAttribute); for (t2 = _this._semanticsInfo, t3 = t2.length, offset = 0, _i = 0, t4 = ""; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { info = t2[_i]; label = info.semanticsLabel; if (label == null) label = info.text; for (t4 = info.stringAttributes, t5 = t4.length, _i0 = 0; _i0 < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i0) { infoAttribute = t4[_i0]; originalRange = infoAttribute.range; attributes.push(infoAttribute.copy$1$range(0, new A.TextRange(offset + originalRange.start, offset + originalRange.end))); } t4 = buffer._contents += A.S(label); offset += label.length; } t2 = _this._cachedAttributedLabel = new A.AttributedString(t4.charCodeAt(0) == 0 ? t4 : t4, attributes); } config._semantics$_attributedLabel = t2; config._hasBeenAnnotated = true; t1 = t1._text_painter$_textDirection; t1.toString; config._semantics$_textDirection = t1; } }, assembleSemanticsNode$3(node, config, children) { var child, newChildCache, t3, t4, t5, t6, t7, currentDirection, ordinal, start, placeholderIndex, childIndex, _i, info, start0, t8, t9, childNode, t10, t11, rects, rect, currentDirection0, t12, t13, currentRect, configuration, ordinal0, recognizer, paintRect, newChild, it, key, _this = this, _null = null, newChildren = A._setArrayType([], type$.JSArray_SemanticsNode), t1 = _this._textPainter, t2 = t1._text_painter$_textDirection; t2.toString; child = _this.ContainerRenderObjectMixin__firstChild; newChildCache = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Key, type$.SemanticsNode); t3 = _this._cachedCombinedSemanticsInfos; if (t3 == null) { t3 = _this._semanticsInfo; t3.toString; t3 = _this._cachedCombinedSemanticsInfos = A.combineSemanticsInfo(t3); } for (t4 = t3.length, t5 = type$.BoxConstraints, t6 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t7 = type$.TextParentData, currentDirection = t2, ordinal = 0, start = 0, placeholderIndex = 0, childIndex = 0, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i, start = start0) { info = t3[_i]; t2 = info.text; start0 = start + t2.length; t8 = start < start0; t9 = t8 ? start : start0; t8 = t8 ? start0 : start; if (info.isPlaceholder) { t2 = "PlaceholderSpanIndexSemanticsTag(" + placeholderIndex + ")"; while (true) { if (children.length > childIndex) { t8 = children[childIndex].tags; t8 = t8 != null && t8.contains$1(0, new A.PlaceholderSpanIndexSemanticsTag(placeholderIndex, t2)); } else t8 = false; if (!t8) break; childNode = children[childIndex]; t8 = child.parentData; t8.toString; t8 = t7._as(t8).scale; if (t8 != null) { t9 = childNode._semantics$_rect; t10 = t9.left; t11 = t9.top; t8 = new A.Rect(t10, t11, t10 + (t9.right - t10) * t8, t11 + (t9.bottom - t11) * t8); if (!t9.$eq(0, t8)) { childNode._semantics$_rect = t8; childNode._semantics$_markDirty$0(); } newChildren.push(childNode); } ++childIndex; } t2 = child.parentData; t2.toString; child = t6._as(t2).ContainerParentDataMixin_nextSibling; ++placeholderIndex; } else { t10 = t5._as(A.RenderObject.prototype.get$constraints.call(_this)); t1.setPlaceholderDimensions$1(_this._paragraph$_placeholderDimensions); t11 = t10.minWidth; t10 = t10.maxWidth; t1.layout$2$maxWidth$minWidth(0, _this._softWrap || _this._overflow === B.TextOverflow_2 ? t10 : 1 / 0, t11); rects = t1._paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t9, t8, B.BoxHeightStyle_0, B.BoxWidthStyle_0); if (rects.length === 0) continue; t8 = B.JSArray_methods.get$first(rects); rect = new A.Rect(t8.left, t8.top, t8.right, t8.bottom); currentDirection0 = B.JSArray_methods.get$first(rects).direction; for (t8 = A._arrayInstanceType(rects), t9 = t8._eval$1("SubListIterable<1>"), t10 = new A.SubListIterable(rects, 1, _null, t9), t10.SubListIterable$3(rects, 1, _null, t8._precomputed1), t9 = new A.ListIterator(t10, t10.get$length(t10), t9._eval$1("ListIterator")); t9.moveNext$0();) { t8 = t9.__internal$_current; rect = rect.expandToInclude$1(new A.Rect(t8.left, t8.top, t8.right, t8.bottom)); currentDirection0 = t8.direction; } t8 = rect.left; t9 = Math.max(0, A.checkNum(t8)); t10 = rect.top; t11 = Math.max(0, A.checkNum(t10)); t8 = Math.min(rect.right - t8, A.checkNum(t5._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth)); t10 = Math.min(rect.bottom - t10, A.checkNum(t5._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); t12 = Math.floor(t9) - 4; t13 = Math.floor(t11) - 4; t8 = Math.ceil(t9 + t8) + 4; t10 = Math.ceil(t11 + t10) + 4; currentRect = new A.Rect(t12, t13, t8, t10); configuration = A.SemanticsConfiguration$(); ordinal0 = ordinal + 1; configuration._semantics$_sortKey = new A.OrdinalSortKey(ordinal, _null); configuration._hasBeenAnnotated = true; configuration._semantics$_textDirection = currentDirection; t11 = info.semanticsLabel; t2 = t11 == null ? t2 : t11; configuration._semantics$_attributedLabel = new A.AttributedString(t2, info.stringAttributes); recognizer = info.recognizer; if (recognizer != null) { t2 = recognizer.onTap; if (t2 != null) { configuration._addArgumentlessAction$2(B.SemanticsAction_1, t2); configuration._semantics$_onTap = t2; configuration._setFlag$2(B.SemanticsFlag_4194304, true); } } t2 = node.parentPaintClipRect; if (t2 != null) { paintRect = t2.intersect$1(currentRect); if (paintRect.left >= paintRect.right || paintRect.top >= paintRect.bottom) t2 = !(t12 >= t8 || t13 >= t10); else t2 = false; configuration._setFlag$2(B.SemanticsFlag_8192, t2); } newChild = A._Cell$named("newChild"); t2 = _this._paragraph$_cachedChildNodes; t8 = t2 == null ? _null : t2._length !== 0; if (t8 === true) { t2.toString; t8 = new A.LinkedHashMapKeyIterable(t2, A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>")); it = t8.get$iterator(t8); if (!it.moveNext$0()) A.throwExpression(A.IterableElementError_noElement()); t2 = t2.remove$1(0, it.get$current(it)); t2.toString; if (newChild.__late_helper$_value !== newChild) A.throwExpression(A.LateError$localAI(newChild.__late_helper$_name)); newChild.__late_helper$_value = t2; } else { key = new A.UniqueKey(); t2 = A.SemanticsNode$(key, _this._paragraph$_createShowOnScreenFor$1(key)); if (newChild.__late_helper$_value !== newChild) A.throwExpression(A.LateError$localAI(newChild.__late_helper$_name)); newChild.__late_helper$_value = t2; } if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); J.updateWith$1$config$z(t2, configuration); if (!t2._semantics$_rect.$eq(0, currentRect)) { t2._semantics$_rect = currentRect; t2._semantics$_markDirty$0(); } t2 = newChild.__late_helper$_value; if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); t8 = t2.key; t8.toString; newChildCache.$indexSet(0, t8, t2); t2 = newChild.__late_helper$_value; if (t2 === newChild) A.throwExpression(A.LateError$localNI(newChild.__late_helper$_name)); newChildren.push(t2); ordinal = ordinal0; currentDirection = currentDirection0; } } _this._paragraph$_cachedChildNodes = newChildCache; node.updateWith$2$childrenInInversePaintOrder$config(0, newChildren, config); }, _paragraph$_createShowOnScreenFor$1(key) { return new A.RenderParagraph__createShowOnScreenFor_closure(this, key); }, clearSemantics$0() { this.super$RenderObject$clearSemantics(); this._paragraph$_cachedChildNodes = null; }, debugDescribeChildren$0() { var t1 = this._textPainter._text_painter$_text; t1.toString; return A._setArrayType([A.DiagnosticableTreeNode$("text", B.DiagnosticsTreeStyle_4, t1)], type$.JSArray_DiagnosticsNode); } }; A.RenderParagraph__extractPlaceholderSpans_closure.prototype = { call$1(span) { if (span instanceof A.PlaceholderSpan) J.add$1$ax(A._lateReadCheck(this.$this.__RenderParagraph__placeholderSpans, "_placeholderSpans"), span); return true; }, $signature: 212 }; A.RenderParagraph_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.RenderParagraph_paint_closure.prototype = { call$2(context, offset) { var t1 = this._box_0.child; t1.toString; context.paintChild$2(t1, offset); }, $signature: 93 }; A.RenderParagraph_describeSemanticsConfiguration_closure.prototype = { call$1(info) { return info.recognizer != null; }, $signature: 657 }; A.RenderParagraph__createShowOnScreenFor_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._paragraph$_cachedChildNodes.$index(0, this.key); t2.toString; t1.showOnScreen$2$descendant$rect(t1, t2._semantics$_rect); }, $signature: 0 }; A._RenderParagraph_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin.prototype = { attach$1(owner) { this.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$attach(owner); $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.add$1(0, this.get$systemFontsDidChange()); }, detach$0(_) { $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.remove$1(0, this.get$systemFontsDidChange()); this.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$detach(0); } }; A.RenderPerformanceOverlay.prototype = { set$optionsMask(value) { if (value === this._optionsMask) return; this._optionsMask = value; this.markNeedsPaint$0(); }, set$rasterizerThreshold(value) { if (value === this._rasterizerThreshold) return; this._rasterizerThreshold = value; this.markNeedsPaint$0(); }, get$sizedByParent() { return true; }, get$alwaysNeedsCompositing() { return true; }, computeMinIntrinsicWidth$1(height) { return 0; }, computeMaxIntrinsicWidth$1(height) { return 0; }, get$_intrinsicHeight() { var t1 = this._optionsMask, result = (t1 | 1) >>> 0 > 0 || (t1 | 2) >>> 0 > 0 ? 80 : 0; return (t1 | 4) >>> 0 > 0 || (t1 | 8) >>> 0 > 0 ? result + 80 : result; }, computeMinIntrinsicHeight$1(width) { return this.get$_intrinsicHeight(); }, computeMaxIntrinsicHeight$1(width) { return this.get$_intrinsicHeight(); }, computeDryLayout$1(constraints) { return constraints.constrain$1(new A.Size(1 / 0, this.get$_intrinsicHeight())); }, paint$2(context, offset) { var t5, t6, t7, t1 = offset._dx, t2 = offset._dy, t3 = this._box$_size, t4 = t3._dx; t3 = t3._dy; t5 = this._optionsMask; t6 = this._rasterizerThreshold; t7 = A.LayerHandle$(type$.Layer_2); context.stopRecordingIfNeeded$0(); context.appendLayer$1(new A.PerformanceOverlayLayer(new A.Rect(t1, t2, t1 + t4, t2 + t3), t5, t6, false, false, t7)); } }; A.PlatformViewHitTestBehavior.prototype = { toString$0(_) { return "PlatformViewHitTestBehavior." + this._core$_name; } }; A._factoriesTypeSet_closure.prototype = { call$1(factory) { return factory.get$type(factory); }, $signature() { return this.T._eval$1("Type(Factory<0>)"); } }; A._PlatformViewGestureRecognizer.prototype = { _PlatformViewGestureRecognizer$3$supportedDevices(handlePointerEvent, gestureRecognizerFactories, supportedDevices) { var t2, _this = this, t1 = new A.GestureArenaTeam(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._CombiningGestureArenaMember)); t1.captain = _this; _this._team = t1; t1 = _this.gestureRecognizerFactories; t2 = A._instanceType(t1)._eval$1("EfficientLengthMappedIterable"); _this.___PlatformViewGestureRecognizer__gestureRecognizers = A.LinkedHashSet_LinkedHashSet$of(new A.EfficientLengthMappedIterable(t1, new A._PlatformViewGestureRecognizer_closure(_this), t2), t2._eval$1("Iterable.E")); _this.___PlatformViewGestureRecognizer__handlePointerEvent = handlePointerEvent; }, get$_platform_view0$_handlePointerEvent() { return A._lateReadCheck(this.___PlatformViewGestureRecognizer__handlePointerEvent, "_handlePointerEvent"); }, addAllowedPointer$1($event) { var t1, t2; this.super$OneSequenceGestureRecognizer$addAllowedPointer($event); for (t1 = A._lateReadCheck(this.___PlatformViewGestureRecognizer__gestureRecognizers, "_gestureRecognizers"), t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current; t2._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (t2.isPointerAllowed$1($event)) t2.addAllowedPointer$1($event); else t2.handleNonAllowedPointer$1($event); } }, didStopTrackingLastPointer$1(pointer) { }, handleEvent$1($event) { var t1, _this = this; if (!_this.forwardedPointers.contains$1(0, $event.get$pointer())) { t1 = _this.cachedEvents; if (!t1.containsKey$1(0, $event.get$pointer())) t1.$indexSet(0, $event.get$pointer(), A._setArrayType([], type$.JSArray_PointerEvent_2)); t1.$index(0, $event.get$pointer()).push($event); } else _this._platform_view0$_handlePointerEvent$1($event); _this.stopTrackingIfPointerNoLongerDown$1($event); }, acceptGesture$1(pointer) { var t1 = this.cachedEvents.remove$1(0, pointer); if (t1 != null) J.forEach$1$ax(t1, this.get$_platform_view0$_handlePointerEvent()); this.forwardedPointers.add$1(0, pointer); }, rejectGesture$1(pointer) { this.super$OneSequenceGestureRecognizer$stopTrackingPointer(pointer); this.forwardedPointers.remove$1(0, pointer); this.cachedEvents.remove$1(0, pointer); }, stopTrackingPointer$1(pointer) { this.super$OneSequenceGestureRecognizer$stopTrackingPointer(pointer); this.forwardedPointers.remove$1(0, pointer); }, _platform_view0$_handlePointerEvent$1(arg0) { return this.get$_platform_view0$_handlePointerEvent().call$1(arg0); } }; A._PlatformViewGestureRecognizer_closure.prototype = { call$1(recognizerFactory) { var gestureRecognizer = recognizerFactory.constructor$0(0); gestureRecognizer.set$team(this.$this._team); gestureRecognizer.get$onLongPress(); return gestureRecognizer; }, $signature: 2160 }; A.PlatformViewRenderBox.prototype = { set$controller(_, controller) { var t2, _this = this, t1 = _this._platform_view0$_controller; if (t1 == controller) return; t1 = t1.get$viewId(); t2 = controller.get$viewId(); _this._platform_view0$_controller = controller; _this.markNeedsPaint$0(); if (t1 != t2) _this.markNeedsSemanticsUpdate$0(); }, get$sizedByParent() { return true; }, get$alwaysNeedsCompositing() { return true; }, get$isRepaintBoundary() { return true; }, computeDryLayout$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, paint$2(context, offset) { var t5, t6, t1 = this._box$_size, t2 = offset._dx, t3 = offset._dy, t4 = t1._dx; t1 = t1._dy; t5 = this._platform_view0$_controller.get$viewId(); t6 = A.LayerHandle$(type$.Layer_2); context.stopRecordingIfNeeded$0(); context.appendLayer$1(new A.PlatformViewLayer(new A.Rect(t2, t3, t2 + t4, t3 + t1), t5, t6)); }, describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = true; config.set$platformViewId(this._platform_view0$_controller.get$viewId()); }, $isMouseTrackerAnnotation: 1 }; A._PlatformViewGestureMixin.prototype = { set$hitTestBehavior(value) { var _this = this; if (value !== _this._PlatformViewGestureMixin__hitTestBehavior) { _this._PlatformViewGestureMixin__hitTestBehavior = value; if (type$.nullable_PipelineOwner._as(A.AbstractNode.prototype.get$owner.call(_this)) != null) _this.markNeedsPaint$0(); } }, _updateGestureRecognizersWithCallBack$2(gestureRecognizers, handlePointerEvent) { var _this = this, t1 = _this._PlatformViewGestureMixin__gestureRecognizer; t1 = t1 == null ? null : t1.gestureRecognizerFactories; if (A._factoryTypesSetEquals(gestureRecognizers, t1, type$.OneSequenceGestureRecognizer)) return; t1 = _this._PlatformViewGestureMixin__gestureRecognizer; if (t1 != null) t1.dispose$0(0); _this._PlatformViewGestureMixin__gestureRecognizer = A._PlatformViewGestureRecognizer$(handlePointerEvent, gestureRecognizers); _this._PlatformViewGestureMixin__handlePointerEvent = handlePointerEvent; }, hitTest$2$position(result, position) { var _this = this; if (_this._PlatformViewGestureMixin__hitTestBehavior === B.PlatformViewHitTestBehavior_2 || !_this._box$_size.contains$1(0, position)) return false; result.add$1(0, new A.BoxHitTestEntry(position, _this)); return _this._PlatformViewGestureMixin__hitTestBehavior === B.PlatformViewHitTestBehavior_0; }, hitTestSelf$1(position) { return this._PlatformViewGestureMixin__hitTestBehavior !== B.PlatformViewHitTestBehavior_2; }, get$onEnter(_) { return null; }, get$onExit(_) { return null; }, get$cursor(_) { return B.C__NoopMouseCursor; }, get$validForMouseTracker() { return true; }, handleEvent$2($event, entry) { var t1; if (type$.PointerDownEvent._is($event)) this._PlatformViewGestureMixin__gestureRecognizer.addPointer$1($event); if (type$.PointerHoverEvent._is($event)) { t1 = this._PlatformViewGestureMixin__handlePointerEvent; if (t1 != null) t1.call$1($event); } } }; A._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin.prototype = { detach$0(_) { var t1 = this._PlatformViewGestureMixin__gestureRecognizer, t2 = t1.forwardedPointers; t2.forEach$1(0, A.OneSequenceGestureRecognizer.prototype.get$stopTrackingPointer.call(t1)); t2.clear$0(0); t2 = t1.cachedEvents; new A.LinkedHashMapKeyIterable(t2, A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, A.OneSequenceGestureRecognizer.prototype.get$stopTrackingPointer.call(t1)); t2.clear$0(0); t1.resolve$1(0, B.GestureDisposition_1); this.super$AbstractNode$detach(0); } }; A.RenderProxyBox.prototype = {}; A.RenderProxyBoxMixin.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.ParentData)) child.parentData = new A.ParentData(); }, computeMinIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDryLayout$1(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDryLayout$1(constraints); return this.computeSizeForNoChild$1(constraints); }, performLayout$0() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child, t2 = type$.BoxConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, t2._as(A.RenderObject.prototype.get$constraints.call(_this)), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = t1; } else _this._box$_size = _this.computeSizeForNoChild$1(t2._as(A.RenderObject.prototype.get$constraints.call(_this))); }, computeSizeForNoChild$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, hitTestChildren$2$position(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, applyPaintTransform$2(child, transform) { }, paint$2(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; A.HitTestBehavior.prototype = { toString$0(_) { return "HitTestBehavior." + this._core$_name; } }; A.RenderProxyBoxWithHitTestBehavior.prototype = { hitTest$2$position(result, position) { var hitTarget, _this = this; if (_this._box$_size.contains$1(0, position)) { hitTarget = _this.hitTestChildren$2$position(result, position) || _this.behavior === B.HitTestBehavior_1; if (hitTarget || _this.behavior === B.HitTestBehavior_2) result.add$1(0, new A.BoxHitTestEntry(position, _this)); } else hitTarget = false; return hitTarget; }, hitTestSelf$1(position) { return this.behavior === B.HitTestBehavior_1; } }; A.RenderConstrainedBox.prototype = { set$additionalConstraints(value) { if (J.$eq$(this._additionalConstraints, value)) return; this._additionalConstraints = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var width, t1 = this._additionalConstraints, t2 = t1.maxWidth; if (t2 < 1 / 0 && t1.minWidth >= t2) return t1.minWidth; width = this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); t1 = this._additionalConstraints; t2 = t1.minWidth; if (!(t2 >= 1 / 0)) return J.clamp$2$n(width, t2, t1.maxWidth); return width; }, computeMaxIntrinsicWidth$1(height) { var width, t1 = this._additionalConstraints, t2 = t1.maxWidth; if (t2 < 1 / 0 && t1.minWidth >= t2) return t1.minWidth; width = this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); t1 = this._additionalConstraints; t2 = t1.minWidth; if (!(t2 >= 1 / 0)) return J.clamp$2$n(width, t2, t1.maxWidth); return width; }, computeMinIntrinsicHeight$1(width) { var height, t1 = this._additionalConstraints, t2 = t1.maxHeight; if (t2 < 1 / 0 && t1.minHeight >= t2) return t1.minHeight; height = this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); t1 = this._additionalConstraints; t2 = t1.minHeight; if (!(t2 >= 1 / 0)) return J.clamp$2$n(height, t2, t1.maxHeight); return height; }, computeMaxIntrinsicHeight$1(width) { var height, t1 = this._additionalConstraints, t2 = t1.maxHeight; if (t2 < 1 / 0 && t1.minHeight >= t2) return t1.minHeight; height = this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); t1 = this._additionalConstraints; t2 = t1.minHeight; if (!(t2 >= 1 / 0)) return J.clamp$2$n(height, t2, t1.maxHeight); return height; }, performLayout$0() { var _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.RenderObjectWithChildMixin__child, t2 = _this._additionalConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, t2.enforce$1(constraints), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = t1; } else _this._box$_size = t2.enforce$1(constraints).constrain$1(B.Size_0_0); }, computeDryLayout$1(constraints) { var t1 = this.RenderObjectWithChildMixin__child, t2 = this._additionalConstraints; if (t1 != null) return t1.getDryLayout$1(t2.enforce$1(constraints)); else return t2.enforce$1(constraints).constrain$1(B.Size_0_0); } }; A.RenderLimitedBox.prototype = { set$maxWidth(_, value) { if (this._maxWidth === value) return; this._maxWidth = value; this.markNeedsLayout$0(); }, set$maxHeight(_, value) { if (this._maxHeight === value) return; this._maxHeight = value; this.markNeedsLayout$0(); }, _limitConstraints$1(constraints) { var t3, t4, t1 = constraints.minWidth, t2 = constraints.maxWidth; t2 = t2 < 1 / 0 ? t2 : B.JSInt_methods.clamp$2(this._maxWidth, t1, t2); t3 = constraints.minHeight; t4 = constraints.maxHeight; return new A.BoxConstraints(t1, t2, t3, t4 < 1 / 0 ? t4 : B.JSInt_methods.clamp$2(this._maxHeight, t3, t4)); }, _proxy_box$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return constraints.constrain$1(layoutChild.call$2(t1, this._limitConstraints$1(constraints))); return this._limitConstraints$1(constraints).constrain$1(B.Size_0_0); }, computeDryLayout$1(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; A.RenderAspectRatio.prototype = { set$aspectRatio(_, value) { if (this._aspectRatio === value) return; this._aspectRatio = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t1; height.toString; if (isFinite(height)) return height * this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1(height) { var t1; height.toString; if (isFinite(height)) return height * this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1(width) { var t1; width.toString; if (isFinite(width)) return width / this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1(width) { var t1; width.toString; if (isFinite(width)) return width / this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, _applyAspectRatio$1(constraints) { var t1, height, width1, height0, width = constraints.minWidth, width0 = constraints.maxWidth; if (width >= width0 && constraints.minHeight >= constraints.maxHeight) return new A.Size(B.JSInt_methods.clamp$2(0, width, width0), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); t1 = this._aspectRatio; if (isFinite(width0)) { height = width0 / t1; width1 = width0; } else { height = constraints.maxHeight; width1 = height * t1; } if (width1 > width0) height = width0 / t1; else width0 = width1; height0 = constraints.maxHeight; if (height > height0) { width0 = height0 * t1; height = height0; } if (width0 < width) height = width / t1; else width = width0; height0 = constraints.minHeight; if (height < height0) { width = height0 * t1; height = height0; } return constraints.constrain$1(new A.Size(width, height)); }, computeDryLayout$1(constraints) { return this._applyAspectRatio$1(constraints); }, performLayout$0() { var t2, _this = this, t1 = _this._applyAspectRatio$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this))); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) t2.layout$1(0, A.BoxConstraints$tight(t1)); } }; A.RenderIntrinsicWidth.prototype = { set$stepWidth(value) { if (value == this._stepWidth) return; this._stepWidth = value; this.markNeedsLayout$0(); }, set$stepHeight(value) { return; }, computeMinIntrinsicWidth$1(height) { return this.computeMaxIntrinsicWidth$1(height); }, computeMaxIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; return A.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()), this._stepWidth); }, computeMinIntrinsicHeight$1(width) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; width.toString; if (!isFinite(width)) width = _this.computeMaxIntrinsicWidth$1(1 / 0); t1 = _this.RenderObjectWithChildMixin__child; return A.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()), _this._stepHeight); }, computeMaxIntrinsicHeight$1(width) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; width.toString; if (!isFinite(width)) width = _this.computeMaxIntrinsicWidth$1(1 / 0); t1 = _this.RenderObjectWithChildMixin__child; return A.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()), _this._stepHeight); }, _proxy_box$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { if (!(constraints.minWidth >= constraints.maxWidth)) constraints = constraints.tighten$1$width(A.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, constraints.maxHeight, t1.get$computeMaxIntrinsicWidth()), this._stepWidth)); t1 = this.RenderObjectWithChildMixin__child; t1.toString; return layoutChild.call$2(t1, constraints); } else return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, computeDryLayout$1(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; A.RenderIntrinsicHeight.prototype = { computeMinIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; height.toString; if (!isFinite(height)) height = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, 1 / 0, t1.get$computeMaxIntrinsicHeight()); t1 = this.RenderObjectWithChildMixin__child; return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); }, computeMaxIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; height.toString; if (!isFinite(height)) height = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, 1 / 0, t1.get$computeMaxIntrinsicHeight()); t1 = this.RenderObjectWithChildMixin__child; return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); }, computeMinIntrinsicHeight$1(width) { return this.computeMaxIntrinsicHeight$1(width); }, _proxy_box$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { if (!(constraints.minHeight >= constraints.maxHeight)) constraints = constraints.tighten$1$height(t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, constraints.maxWidth, t1.get$computeMaxIntrinsicHeight())); t1 = this.RenderObjectWithChildMixin__child; t1.toString; return layoutChild.call$2(t1, constraints); } else return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, computeDryLayout$1(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this)), A.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; A.RenderOpacity.prototype = { get$alwaysNeedsCompositing() { return this.RenderObjectWithChildMixin__child != null && this._alpha > 0; }, set$opacity(_, value) { var didNeedCompositing, t1, t2, _this = this; if (_this._proxy_box$_opacity == value) return; didNeedCompositing = _this.RenderObjectWithChildMixin__child != null && _this._alpha > 0; t1 = _this._alpha; _this._proxy_box$_opacity = value; t2 = B.JSNumber_methods.round$0(J.clamp$2$n(value, 0, 1) * 255); _this._alpha = t2; if (didNeedCompositing !== (_this.RenderObjectWithChildMixin__child != null && t2 > 0)) _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsPaint$0(); if (t1 !== 0 !== (_this._alpha !== 0) && true) _this.markNeedsSemanticsUpdate$0(); }, set$alwaysIncludeSemantics(value) { return; }, paint$2(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._alpha; if (t1 === 0) { _this._layerHandle.set$layer(0, null); return; } t2 = _this._layerHandle; t2.set$layer(0, context.pushOpacity$4$oldLayer(offset, t1, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), type$.nullable_OpacityLayer._as(t2._layer))); } }, visitChildrenForSemantics$1(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = this._alpha !== 0 || false; else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; A.RenderAnimatedOpacityMixin.prototype = { get$alwaysNeedsCompositing() { if (this.RenderObjectWithChildMixin__child != null) { var t1 = this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing; t1.toString; } else t1 = false; return t1; }, set$opacity(_, value) { var _this = this, t1 = _this.RenderAnimatedOpacityMixin__opacity; if (t1 == value) return; if (_this._node$_owner != null && t1 != null) t1.removeListener$1(0, _this.get$_updateOpacity()); _this.RenderAnimatedOpacityMixin__opacity = value; if (_this._node$_owner != null) value.addListener$1(0, _this.get$_updateOpacity()); _this._updateOpacity$0(); }, set$alwaysIncludeSemantics(value) { if (value === this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics) return; this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics = value; this.markNeedsSemanticsUpdate$0(); }, _updateOpacity$0() { var didNeedCompositing, _this = this, oldAlpha = _this.RenderAnimatedOpacityMixin__alpha, t1 = _this.RenderAnimatedOpacityMixin__opacity; t1 = _this.RenderAnimatedOpacityMixin__alpha = B.JSNumber_methods.round$0(J.clamp$2$n(t1.get$value(t1), 0, 1) * 255); if (oldAlpha !== t1) { didNeedCompositing = _this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing; t1 = t1 > 0; _this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing = t1; if (_this.RenderObjectWithChildMixin__child != null && didNeedCompositing !== t1) _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsPaint$0(); if (oldAlpha === 0 || _this.RenderAnimatedOpacityMixin__alpha === 0) _this.markNeedsSemanticsUpdate$0(); } }, visitChildrenForSemantics$1(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) if (this.RenderAnimatedOpacityMixin__alpha === 0) { t2 = this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics; t2.toString; } else t2 = true; else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; A.RenderAnimatedOpacity.prototype = {}; A.RenderBackdropFilter.prototype = { set$filter(_, value) { if (J.$eq$(this._proxy_box$_filter, value)) return; this._proxy_box$_filter = value; this.markNeedsPaint$0(); }, set$blendMode(value) { if (this._proxy_box$_blendMode === value) return; this._proxy_box$_blendMode = value; this.markNeedsPaint$0(); }, get$alwaysNeedsCompositing() { return this.RenderObjectWithChildMixin__child != null; }, paint$2(context, offset) { var t1, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = type$.nullable_BackdropFilterLayer; if (t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layerHandle.set$layer(0, new A.BackdropFilterLayer(B.BlendMode_3, A.LayerHandle$(type$.Layer_2))); t2 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t3 = _this._proxy_box$_filter; if (!J.$eq$(t3, t2._layer$_filter)) { t2._layer$_filter = t3; t2.markNeedsAddToScene$0(); } t2 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t3 = _this._proxy_box$_blendMode; if (t3 !== t2._layer$_blendMode) { t2._layer$_blendMode = t3; t2.markNeedsAddToScene$0(); } t1 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t1.toString; context.pushLayer$3(t1, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset); } else _this._layerHandle.set$layer(0, null); } }; A.CustomClipper.prototype = { addListener$1(_, listener) { var t1 = this._reclip; return t1 == null ? null : t1.addListener$1(0, listener); }, removeListener$1(_, listener) { var t1 = this._reclip; return t1 == null ? null : t1.removeListener$1(0, listener); }, getApproximateClipRect$1(size) { return new A.Rect(0, 0, 0 + size._dx, 0 + size._dy); }, toString$0(_) { return "CustomClipper"; } }; A.ShapeBorderClipper.prototype = { getClip$1(size) { return this.shape.getOuterPath$2$textDirection(new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldReclip$1(oldClipper) { if (A.getRuntimeType(oldClipper) !== B.Type_ShapeBorderClipper_QWG) return true; type$.ShapeBorderClipper._as(oldClipper); return !J.$eq$(oldClipper.shape, this.shape) || oldClipper.textDirection != this.textDirection; } }; A._RenderCustomClip.prototype = { set$clipper(newClipper) { var t2, _this = this, t1 = _this._clipper; if (t1 == newClipper) return; _this._clipper = newClipper; t2 = newClipper == null; if (t2 || t1 == null || A.getRuntimeType(newClipper) !== A.getRuntimeType(t1) || newClipper.shouldReclip$1(t1)) _this._markNeedsClip$0(); if (_this._node$_owner != null) { if (t1 != null) t1.removeListener$1(0, _this.get$_markNeedsClip()); if (!t2) newClipper.addListener$1(0, _this.get$_markNeedsClip()); } }, attach$1(owner) { var t1; this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); t1 = this._clipper; if (t1 != null) t1.addListener$1(0, this.get$_markNeedsClip()); }, detach$0(_) { var t1 = this._clipper; if (t1 != null) t1.removeListener$1(0, this.get$_markNeedsClip()); this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, _markNeedsClip$0() { this._clip = null; this.markNeedsPaint$0(); this.markNeedsSemanticsUpdate$0(); }, set$clipBehavior(value) { if (value != this._proxy_box$_clipBehavior) { this._proxy_box$_clipBehavior = value; this.markNeedsPaint$0(); } }, performLayout$0() { var t1, _this = this, oldSize = _this._box$_size; oldSize = oldSize != null ? oldSize : null; _this.super$RenderProxyBoxMixin$performLayout(); t1 = _this._box$_size; t1.toString; if (!J.$eq$(oldSize, t1)) _this._clip = null; }, _updateClip$0() { var t1, t2, _this = this; if (_this._clip == null) { t1 = _this._clipper; if (t1 == null) t1 = null; else { t2 = _this._box$_size; t2.toString; t2 = t1.getClip$1(t2); t1 = t2; } _this._clip = t1 == null ? _this.get$_defaultClip() : t1; } }, describeApproximatePaintClip$1(child) { var t2, t1 = this._clipper; if (t1 == null) t1 = null; else { t2 = this._box$_size; t2.toString; t2 = t1.getApproximateClipRect$1(t2); t1 = t2; } if (t1 == null) { t1 = this._box$_size; t1 = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } return t1; } }; A.RenderClipRect.prototype = { get$_defaultClip() { var t1 = this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, hitTest$2$position(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var t2, t3, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = _this._layerHandle; if (_this._proxy_box$_clipBehavior !== B.Clip_0) { _this._updateClip$0(); t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._clip; t3.toString; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, t3, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._proxy_box$_clipBehavior, type$.nullable_ClipRectLayer._as(t2._layer))); } else { context.paintChild$2(t1, offset); t2.set$layer(0, null); } } else _this._layerHandle.set$layer(0, null); } }; A.RenderClipRRect.prototype = { set$borderRadius(_, value) { if (this._proxy_box$_borderRadius.$eq(0, value)) return; this._proxy_box$_borderRadius = value; this._markNeedsClip$0(); }, get$_defaultClip() { var t1 = this._proxy_box$_borderRadius, t2 = this._box$_size; return t1.toRRect$1(new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); }, hitTest$2$position(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var t2, t3, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = _this._layerHandle; if (_this._proxy_box$_clipBehavior !== B.Clip_0) { _this._updateClip$0(); t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._clip; t2.set$layer(0, context.pushClipRRect$7$clipBehavior$oldLayer(t1, offset, new A.Rect(t3.left, t3.top, t3.right, t3.bottom), t3, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._proxy_box$_clipBehavior, type$.nullable_ClipRRectLayer._as(t2._layer))); } else { context.paintChild$2(t1, offset); t2.set$layer(0, null); } } else _this._layerHandle.set$layer(0, null); } }; A.RenderClipOval.prototype = { get$_defaultClip() { var t1 = this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, hitTest$2$position(result, position) { var center, t1, t2, _this = this; _this._updateClip$0(); center = _this._clip.get$center(); t1 = position._dx; t2 = _this._clip; if (new A.Offset((t1 - center._dx) / (t2.right - t2.left), (position._dy - center._dy) / (t2.bottom - t2.top)).get$distanceSquared() > 0.25) return false; return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var t2, t3, t4, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) if (_this._proxy_box$_clipBehavior !== B.Clip_0) { _this._updateClip$0(); t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = _this._clip; t2.toString; if (!t2.$eq(0, _this._proxy_box$_cachedRect)) { _this._proxy_box$_cachedRect = t2; t3 = A.Path_Path(); t4 = _this._proxy_box$_cachedRect; t4.toString; t3.addOval$1(0, t4); _this.__RenderClipOval__cachedPath = t3; } t3 = _this._layerHandle; t3.set$layer(0, context.pushClipPath$7$clipBehavior$oldLayer(t1, offset, t2, A._lateReadCheck(_this.__RenderClipOval__cachedPath, "_cachedPath"), A.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._proxy_box$_clipBehavior, type$.nullable_ClipPathLayer._as(t3._layer))); } else { context.paintChild$2(t1, offset); _this._layerHandle.set$layer(0, null); } else _this._layerHandle.set$layer(0, null); } }; A.RenderClipPath.prototype = { get$_defaultClip() { var t1 = A.Path_Path(), t2 = this._box$_size; t1.addRect$1(0, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); return t1; }, hitTest$2$position(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var t2, t3, t4, t5, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = _this._layerHandle; if (_this._proxy_box$_clipBehavior !== B.Clip_0) { _this._updateClip$0(); t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t4 = t3._dx; t3 = t3._dy; t5 = _this._clip; t5.toString; t2.set$layer(0, context.pushClipPath$7$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t4, 0 + t3), t5, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._proxy_box$_clipBehavior, type$.nullable_ClipPathLayer._as(t2._layer))); } else { context.paintChild$2(t1, offset); t2.set$layer(0, null); } } else _this._layerHandle.set$layer(0, null); } }; A._RenderPhysicalModelBase.prototype = { set$elevation(_, value) { if (this._proxy_box$_elevation == value) return; this._proxy_box$_elevation = value; this.markNeedsPaint$0(); }, set$shadowColor(_, value) { if (J.$eq$(this._proxy_box$_shadowColor, value)) return; this._proxy_box$_shadowColor = value; this.markNeedsPaint$0(); }, set$color(_, value) { if (J.$eq$(this._proxy_box$_color, value)) return; this._proxy_box$_color = value; this.markNeedsPaint$0(); }, get$alwaysNeedsCompositing() { return true; }, describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.set$elevation(0, this._proxy_box$_elevation); } }; A.RenderPhysicalModel.prototype = { set$shape(_, value) { if (this._proxy_box$_shape === value) return; this._proxy_box$_shape = value; this._markNeedsClip$0(); }, set$borderRadius(_, value) { if (J.$eq$(this._proxy_box$_borderRadius, value)) return; this._proxy_box$_borderRadius = value; this._markNeedsClip$0(); }, get$_defaultClip() { var t1, t2, t3, t4, _this = this; switch (_this._proxy_box$_shape.index) { case 0: t1 = _this._proxy_box$_borderRadius; if (t1 == null) t1 = B.BorderRadius_tLn; t2 = _this._box$_size; return t1.toRRect$1(new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); case 1: t1 = _this._box$_size; t2 = 0 + t1._dx; t1 = 0 + t1._dy; t3 = (t2 - 0) / 2; t4 = (t1 - 0) / 2; return new A.RRect(0, 0, t2, t1, t3, t4, t3, t4, t3, t4, t3, t4, t3 === t4); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, hitTest$2$position(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var offsetRRect, offsetRRectAsPath, t1, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); offsetRRect = _this._clip.shift$1(offset); offsetRRectAsPath = A.Path_Path(); offsetRRectAsPath.addRRect$1(0, offsetRRect); t1 = type$.nullable_PhysicalModelLayer; if (t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layerHandle.set$layer(0, A.PhysicalModelLayer$()); t2 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t2.set$clipPath(0, offsetRRectAsPath); t2.set$clipBehavior(_this._proxy_box$_clipBehavior); t3 = _this._proxy_box$_elevation; t2.set$elevation(0, t3); t2.set$color(0, _this._proxy_box$_color); t2.set$shadowColor(0, _this._proxy_box$_shadowColor); t1 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t1.toString; context.pushLayer$4$childPaintBounds(t1, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset, new A.Rect(offsetRRect.left, offsetRRect.top, offsetRRect.right, offsetRRect.bottom)); } else _this._layerHandle.set$layer(0, null); } }; A.RenderPhysicalShape.prototype = { get$_defaultClip() { var t1 = A.Path_Path(), t2 = this._box$_size; t1.addRect$1(0, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); return t1; }, hitTest$2$position(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { var t1, t2, t3, t4, offsetPath, t5, t6, t7, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this._box$_size; t2 = offset._dx; t3 = offset._dy; t4 = t1._dx; t1 = t1._dy; offsetPath = _this._clip.shift$1(offset); t5 = type$.nullable_PhysicalModelLayer; if (t5._as(A.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layerHandle.set$layer(0, A.PhysicalModelLayer$()); t6 = t5._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t6.set$clipPath(0, offsetPath); t6.set$clipBehavior(_this._proxy_box$_clipBehavior); t7 = _this._proxy_box$_elevation; t6.set$elevation(0, t7); t6.set$color(0, _this._proxy_box$_color); t6.set$shadowColor(0, _this._proxy_box$_shadowColor); t5 = t5._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t5.toString; context.pushLayer$4$childPaintBounds(t5, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset, new A.Rect(t2, t3, t2 + t4, t3 + t1)); } else _this._layerHandle.set$layer(0, null); } }; A.DecorationPosition.prototype = { toString$0(_) { return "DecorationPosition." + this._core$_name; } }; A.RenderDecoratedBox.prototype = { set$decoration(_, value) { var t1, _this = this; if (J.$eq$(value, _this._proxy_box$_decoration)) return; t1 = _this._proxy_box$_painter; if (t1 != null) t1.dispose$0(0); _this._proxy_box$_painter = null; _this._proxy_box$_decoration = value; _this.markNeedsPaint$0(); }, set$position(_, value) { if (value === this._proxy_box$_position) return; this._proxy_box$_position = value; this.markNeedsPaint$0(); }, set$configuration(value) { if (value.$eq(0, this._proxy_box$_configuration)) return; this._proxy_box$_configuration = value; this.markNeedsPaint$0(); }, detach$0(_) { var _this = this, t1 = _this._proxy_box$_painter; if (t1 != null) t1.dispose$0(0); _this._proxy_box$_painter = null; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); _this.markNeedsPaint$0(); }, hitTestSelf$1(position) { var t1 = this._proxy_box$_decoration, t2 = this._box$_size; t2.toString; return t1.hitTest$3$textDirection(t2, position, this._proxy_box$_configuration.textDirection); }, paint$2(context, offset) { var t1, t2, filledConfiguration, _this = this; if (_this._proxy_box$_painter == null) _this._proxy_box$_painter = _this._proxy_box$_decoration.createBoxPainter$1(_this.get$markNeedsPaint()); t1 = _this._proxy_box$_configuration; t2 = _this._box$_size; t2.toString; filledConfiguration = t1.copyWith$1$size(t2); if (_this._proxy_box$_position === B.DecorationPosition_0) { t1 = _this._proxy_box$_painter; t1.toString; t1.paint$3(context.get$canvas(context), offset, filledConfiguration); if (_this._proxy_box$_decoration.get$isComplex()) context.setIsComplexHint$0(); } _this.super$RenderProxyBoxMixin$paint(context, offset); if (_this._proxy_box$_position === B.DecorationPosition_1) { t1 = _this._proxy_box$_painter; t1.toString; t1.paint$3(context.get$canvas(context), offset, filledConfiguration); if (_this._proxy_box$_decoration.get$isComplex()) context.setIsComplexHint$0(); } } }; A.RenderTransform.prototype = { set$origin(_, value) { return; }, set$alignment(value) { var _this = this; if (J.$eq$(_this._proxy_box$_alignment, value)) return; _this._proxy_box$_alignment = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$textDirection(_, value) { var _this = this; if (_this._proxy_box$_textDirection == value) return; _this._proxy_box$_textDirection = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, get$alwaysNeedsCompositing() { return false; }, set$transform(_, value) { var t1, _this = this; if (J.$eq$(_this._proxy_box$_transform, value)) return; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(value); _this._proxy_box$_transform = t1; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$filterQuality(value) { return; }, get$_effectiveTransform() { var result, translation, _this = this, t1 = _this._proxy_box$_alignment, resolvedAlignment = t1 == null ? null : t1.resolve$1(0, _this._proxy_box$_textDirection); if (resolvedAlignment == null) return _this._proxy_box$_transform; result = new A.Matrix4(new Float64Array(16)); result.setIdentity$0(); t1 = _this._box$_size; t1.toString; translation = resolvedAlignment.alongSize$1(t1); result.translate$2(0, translation._dx, translation._dy); t1 = _this._proxy_box$_transform; t1.toString; result.multiply$1(0, t1); result.translate$2(0, -translation._dx, -translation._dy); return result; }, hitTest$2$position(result, position) { return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position(result, position) { var t1 = this.transformHitTests ? this.get$_effectiveTransform() : null; return result.addWithPaintTransform$3$hitTest$position$transform(new A.RenderTransform_hitTestChildren_closure(this), position, t1); }, paint$2(context, offset) { var t1, childOffset, t2, t3, t4, t5, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this.get$_effectiveTransform(); t1.toString; childOffset = A.MatrixUtils_getAsTranslation(t1); if (childOffset == null) { t2 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = A.RenderProxyBoxMixin.prototype.get$paint.call(_this); t4 = _this._layerHandle; t5 = t4._layer; t4.set$layer(0, context.pushTransform$5$oldLayer(t2, offset, t1, t3, t5 instanceof A.TransformLayer ? t5 : null)); } else { _this.super$RenderProxyBoxMixin$paint(context, offset.$add(0, childOffset)); _this._layerHandle.set$layer(0, null); } } }, applyPaintTransform$2(child, transform) { var t1 = this.get$_effectiveTransform(); t1.toString; transform.multiply$1(0, t1); } }; A.RenderTransform_hitTestChildren_closure.prototype = { call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 73 }; A.RenderFittedBox.prototype = { _proxy_box$_resolve$0() { if (this._proxy_box$_resolvedAlignment != null) return; this._proxy_box$_resolvedAlignment = this._proxy_box$_alignment; }, _fitAffectsLayout$1(fit) { switch (fit.index) { case 6: return true; case 1: case 2: case 0: case 4: case 3: case 5: return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, set$fit(value) { var _this = this, t1 = _this._proxy_box$_fit; if (t1 === value) return; _this._proxy_box$_fit = value; if (_this._fitAffectsLayout$1(t1) || _this._fitAffectsLayout$1(value)) _this.markNeedsLayout$0(); else { _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); } }, set$alignment(value) { var _this = this; if (_this._proxy_box$_alignment.$eq(0, value)) return; _this._proxy_box$_alignment = value; _this._proxy_box$_resolvedAlignment = _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); }, set$textDirection(_, value) { var _this = this; if (_this._proxy_box$_textDirection == value) return; _this._proxy_box$_textDirection = value; _this._proxy_box$_resolvedAlignment = _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); }, computeDryLayout$1(constraints) { var childSize, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = t1.getDryLayout$1(B.BoxConstraints_mlX5); switch (this._proxy_box$_fit.index) { case 6: return constraints.constrain$1(new A.BoxConstraints(0, constraints.maxWidth, 0, constraints.maxHeight).constrainSizeAndAttemptToPreserveAspectRatio$1(childSize)); case 1: case 2: case 0: case 4: case 3: case 5: return constraints.constrainSizeAndAttemptToPreserveAspectRatio$1(childSize); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } else return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t2, t3, t4, unconstrainedSize, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, B.BoxConstraints_mlX5, true); switch (_this._proxy_box$_fit.index) { case 6: t1 = type$.BoxConstraints; t2 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); t3 = t2.maxWidth; t2 = t2.maxHeight; t4 = _this.RenderObjectWithChildMixin__child._box$_size; t4.toString; unconstrainedSize = new A.BoxConstraints(0, t3, 0, t2).constrainSizeAndAttemptToPreserveAspectRatio$1(t4); _this._box$_size = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(unconstrainedSize); break; case 1: case 2: case 0: case 4: case 3: case 5: t1 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrainSizeAndAttemptToPreserveAspectRatio$1(t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._proxy_box$_transform = _this._hasVisualOverflow = null; } else { t1 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(0, t1.minHeight, t1.maxHeight)); } }, _updatePaintData$0() { var t1, t2, t3, sizes, t4, t5, sourceRect, t6, destinationRect, _this = this; if (_this._proxy_box$_transform != null) return; if (_this.RenderObjectWithChildMixin__child == null) { _this._hasVisualOverflow = false; t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); _this._proxy_box$_transform = t1; } else { _this._proxy_box$_resolve$0(); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; t2 = _this._proxy_box$_fit; t3 = _this._box$_size; t3.toString; sizes = A.applyBoxFit(t2, t1, t3); t3 = sizes.destination; t2 = sizes.source; t4 = _this._proxy_box$_resolvedAlignment; t4.toString; t5 = t1._dx; t1 = t1._dy; sourceRect = t4.inscribe$2(t2, new A.Rect(0, 0, 0 + t5, 0 + t1)); t4 = _this._proxy_box$_resolvedAlignment; t4.toString; t6 = _this._box$_size; destinationRect = t4.inscribe$2(t3, new A.Rect(0, 0, 0 + t6._dx, 0 + t6._dy)); t4 = sourceRect.left; _this._hasVisualOverflow = sourceRect.right - t4 < t5 || sourceRect.bottom - sourceRect.top < t1; t1 = A.Matrix4_Matrix4$translationValues(destinationRect.left, destinationRect.top, 0); t1.scale$3(0, t3._dx / t2._dx, t3._dy / t2._dy, 1); t1.translate$2(0, -t4, -sourceRect.top); _this._proxy_box$_transform = t1; } }, _paintChildWithTransform$2(context, offset) { var childOffset, t2, t3, t4, _this = this, t1 = _this._proxy_box$_transform; t1.toString; childOffset = A.MatrixUtils_getAsTranslation(t1); if (childOffset == null) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = _this._proxy_box$_transform; t2.toString; t3 = A.RenderProxyBoxMixin.prototype.get$paint.call(_this); t4 = _this._layerHandle._layer; return context.pushTransform$5$oldLayer(t1, offset, t2, t3, t4 instanceof A.TransformLayer ? t4 : null); } else _this.super$RenderProxyBoxMixin$paint(context, offset.$add(0, childOffset)); return null; }, paint$2(context, offset) { var t1, t2, t3, t4, t5, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1 = t1.get$isEmpty(t1); } else t1 = true; } else t1 = true; if (t1) return; _this._updatePaintData$0(); t1 = _this._hasVisualOverflow; t1.toString; if (t1 && _this._proxy_box$_clipBehavior !== B.Clip_0) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t2 = _this._box$_size; t3 = t2._dx; t2 = t2._dy; t4 = _this._layerHandle; t5 = t4._layer; t5 = t5 instanceof A.ClipRectLayer ? t5 : null; t4.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3, 0 + t2), _this.get$_paintChildWithTransform(), _this._proxy_box$_clipBehavior, t5)); } else _this._layerHandle.set$layer(0, _this._paintChildWithTransform$2(context, offset)); }, hitTestChildren$2$position(result, position) { var _this = this, t1 = _this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) t1 = null; else { t1 = t1._box$_size; t1 = t1.get$isEmpty(t1); } t1 = t1 === true; } else t1 = true; if (t1) return false; _this._updatePaintData$0(); return result.addWithPaintTransform$3$hitTest$position$transform(new A.RenderFittedBox_hitTestChildren_closure(_this), position, _this._proxy_box$_transform); }, applyPaintTransform$2(child, transform) { var t1 = this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = child._box$_size; t1 = t1.get$isEmpty(t1); } else t1 = true; if (t1) transform.setZero$0(); else { this._updatePaintData$0(); t1 = this._proxy_box$_transform; t1.toString; transform.multiply$1(0, t1); } } }; A.RenderFittedBox_hitTestChildren_closure.prototype = { call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 73 }; A.RenderFractionalTranslation.prototype = { set$translation(value) { var _this = this; if (J.$eq$(_this._translation, value)) return; _this._translation = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, hitTest$2$position(result, position) { return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position(result, position) { var t1, t2, t3, _this = this; if (_this.transformHitTests) { t1 = _this._translation; t2 = t1._dx; t3 = _this._box$_size; t3 = new A.Offset(t2 * t3._dx, t1._dy * t3._dy); t1 = t3; } else t1 = null; return result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderFractionalTranslation_hitTestChildren_closure(_this), t1, position); }, paint$2(context, offset) { var t1, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._translation; t2 = t1._dx; t3 = _this._box$_size; _this.super$RenderProxyBoxMixin$paint(context, new A.Offset(offset._dx + t2 * t3._dx, offset._dy + t1._dy * t3._dy)); } }, applyPaintTransform$2(child, transform) { var t1 = this._translation, t2 = t1._dx, t3 = this._box$_size; transform.translate$2(0, t2 * t3._dx, t1._dy * t3._dy); } }; A.RenderFractionalTranslation_hitTestChildren_closure.prototype = { call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 73 }; A.RenderPointerListener.prototype = { computeSizeForNoChild$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, handleEvent$2($event, entry) { var t1, _this = this, _null = null; if (type$.PointerDownEvent._is($event)) { t1 = _this.onPointerDown; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerMoveEvent._is($event)) { t1 = _this.onPointerMove; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerUpEvent._is($event)) { t1 = _this.onPointerUp; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerHoverEvent._is($event)) { t1 = _this.onPointerHover; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerCancelEvent._is($event)) { t1 = _this.onPointerCancel; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerSignalEvent._is($event)) { t1 = _this.onPointerSignal; return t1 == null ? _null : t1.call$1($event); } } }; A.RenderMouseRegion.prototype = { hitTest$2$position(result, position) { return this.super$RenderProxyBoxWithHitTestBehavior$hitTest(result, position) && true; }, handleEvent$2($event, entry) { var t1 = this.onHover; if (t1 != null && type$.PointerHoverEvent._is($event)) return t1.call$1($event); }, get$cursor(_) { return this._cursor; }, get$validForMouseTracker() { return this._validForMouseTracker; }, attach$1(owner) { this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); this._validForMouseTracker = true; }, detach$0(_) { this._validForMouseTracker = false; this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, computeSizeForNoChild$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, $isMouseTrackerAnnotation: 1, get$onEnter(receiver) { return this.onEnter; }, get$onExit(receiver) { return this.onExit; } }; A.RenderRepaintBoundary.prototype = { get$isRepaintBoundary() { return true; } }; A.RenderIgnorePointer.prototype = { set$ignoring(value) { var t1, _this = this; if (value == _this._ignoring) return; _this._ignoring = value; t1 = _this._ignoringSemantics; if (t1 == null || !t1) _this.markNeedsSemanticsUpdate$0(); }, set$ignoringSemantics(value) { var _this = this, oldEffectiveValue = _this._ignoringSemantics; if (value == oldEffectiveValue) return; if (oldEffectiveValue == null) oldEffectiveValue = _this._ignoring; _this._ignoringSemantics = value; if (oldEffectiveValue != (value == null ? _this._ignoring : value)) _this.markNeedsSemanticsUpdate$0(); }, hitTest$2$position(result, position) { return !this._ignoring && this.super$RenderBox$hitTest(result, position); }, visitChildrenForSemantics$1(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = this._ignoringSemantics; t2 = !(t2 == null ? this._ignoring : t2); } else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; A.RenderOffstage.prototype = { set$offstage(value) { var _this = this; if (value === _this._proxy_box$_offstage) return; _this._proxy_box$_offstage = value; _this.markNeedsLayout$0(); _this.markParentNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); }, computeMaxIntrinsicWidth$1(height) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); }, computeMinIntrinsicHeight$1(width) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); }, computeMaxIntrinsicHeight$1(width) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); }, computeDistanceToActualBaseline$1(baseline) { if (this._proxy_box$_offstage) return null; return this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline(baseline); }, get$sizedByParent() { return this._proxy_box$_offstage; }, computeDryLayout$1(constraints) { if (this._proxy_box$_offstage) return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return this.super$RenderProxyBoxMixin$computeDryLayout(constraints); }, performResize$0() { this.super$RenderBox$performResize(); }, performLayout$0() { var t1, _this = this; if (_this._proxy_box$_offstage) { t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$1(0, type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this))); } else _this.super$RenderProxyBoxMixin$performLayout(); }, hitTest$2$position(result, position) { return !this._proxy_box$_offstage && this.super$RenderBox$hitTest(result, position); }, paint$2(context, offset) { if (this._proxy_box$_offstage) return; this.super$RenderProxyBoxMixin$paint(context, offset); }, visitChildrenForSemantics$1(visitor) { if (this._proxy_box$_offstage) return; this.super$RenderObject$visitChildrenForSemantics(visitor); }, debugDescribeChildren$0() { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return A._setArrayType([], type$.JSArray_DiagnosticsNode); return A._setArrayType([A.DiagnosticableTreeNode$("child", this._proxy_box$_offstage ? B.DiagnosticsTreeStyle_2 : B.DiagnosticsTreeStyle_1, t1)], type$.JSArray_DiagnosticsNode); } }; A.RenderAbsorbPointer.prototype = { set$absorbing(value) { if (this._absorbing === value) return; this._absorbing = value; this.markNeedsSemanticsUpdate$0(); }, set$ignoringSemantics(value) { return; }, hitTest$2$position(result, position) { return this._absorbing ? this._box$_size.contains$1(0, position) : this.super$RenderBox$hitTest(result, position); }, visitChildrenForSemantics$1(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = this._absorbing; t2 = !t2; } else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; A.RenderSemanticsGestureHandler.prototype = { set$validActions(value) { if (A.setEquals(value, this._validActions)) return; this._validActions = value; this.markNeedsSemanticsUpdate$0(); }, set$onTap(value) { var t1, _this = this; if (J.$eq$(_this._onTap, value)) return; t1 = _this._onTap; _this._onTap = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onLongPress(value) { var t1, _this = this; if (J.$eq$(_this._onLongPress, value)) return; t1 = _this._onLongPress; _this._onLongPress = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onHorizontalDragUpdate(value) { var t1, _this = this; if (J.$eq$(_this._onHorizontalDragUpdate, value)) return; t1 = _this._onHorizontalDragUpdate; _this._onHorizontalDragUpdate = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onVerticalDragUpdate(value) { var t1, _this = this; if (J.$eq$(_this._onVerticalDragUpdate, value)) return; t1 = _this._onVerticalDragUpdate; _this._onVerticalDragUpdate = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); if (_this._onTap != null) { t1 = _this._validActions; t1 = t1 == null || t1.contains$1(0, B.SemanticsAction_1); } else t1 = false; if (t1) config.set$onTap(_this._onTap); if (_this._onLongPress != null) { t1 = _this._validActions; t1 = t1 == null || t1.contains$1(0, B.SemanticsAction_2); } else t1 = false; if (t1) config.set$onLongPress(_this._onLongPress); if (_this._onHorizontalDragUpdate != null) { t1 = _this._validActions; if (t1 == null || t1.contains$1(0, B.SemanticsAction_8)) config.set$onScrollRight(_this.get$_performSemanticScrollRight()); t1 = _this._validActions; if (t1 == null || t1.contains$1(0, B.SemanticsAction_4)) config.set$onScrollLeft(_this.get$_performSemanticScrollLeft()); } if (_this._onVerticalDragUpdate != null) { t1 = _this._validActions; if (t1 == null || t1.contains$1(0, B.SemanticsAction_16)) config.set$onScrollUp(_this.get$_performSemanticScrollUp()); t1 = _this._validActions; if (t1 == null || t1.contains$1(0, B.SemanticsAction_32)) config.set$onScrollDown(_this.get$_performSemanticScrollDown()); } }, _performSemanticScrollLeft$0() { var t2, primaryDelta, t1 = this._onHorizontalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dx * -0.8; t2 = t2.center$1(B.Offset_0_0); t2 = A.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new A.DragUpdateDetails(null, new A.Offset(primaryDelta, 0), primaryDelta, t2, t2)); } }, _performSemanticScrollRight$0() { var t2, primaryDelta, t1 = this._onHorizontalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dx * 0.8; t2 = t2.center$1(B.Offset_0_0); t2 = A.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new A.DragUpdateDetails(null, new A.Offset(primaryDelta, 0), primaryDelta, t2, t2)); } }, _performSemanticScrollUp$0() { var t2, primaryDelta, t1 = this._onVerticalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dy * -0.8; t2 = t2.center$1(B.Offset_0_0); t2 = A.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new A.DragUpdateDetails(null, new A.Offset(0, primaryDelta), primaryDelta, t2, t2)); } }, _performSemanticScrollDown$0() { var t2, primaryDelta, t1 = this._onVerticalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dy * 0.8; t2 = t2.center$1(B.Offset_0_0); t2 = A.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new A.DragUpdateDetails(null, new A.Offset(0, primaryDelta), primaryDelta, t2, t2)); } } }; A.RenderSemanticsAnnotations.prototype = { set$container(value) { if (this._container === value) return; this._container = value; this.markNeedsSemanticsUpdate$0(); }, set$explicitChildNodes(value) { if (this._explicitChildNodes === value) return; this._explicitChildNodes = value; this.markNeedsSemanticsUpdate$0(); }, set$excludeSemantics(value) { if (this._excludeSemantics === value) return; this._excludeSemantics = value; this.markNeedsSemanticsUpdate$0(); }, set$checked(_, value) { if (this._checked == value) return; this._checked = value; this.markNeedsSemanticsUpdate$0(); }, set$enabled(_, value) { if (this._enabled == value) return; this._enabled = value; this.markNeedsSemanticsUpdate$0(); }, set$selected(_, value) { if (this._selected == value) return; this._selected = value; this.markNeedsSemanticsUpdate$0(); }, set$button(_, value) { if (this._button == value) return; this._button = value; this.markNeedsSemanticsUpdate$0(); }, set$slider(value) { return; }, set$keyboardKey(value) { return; }, set$link(value) { return; }, set$header(value) { if (this._header == value) return; this._header = value; this.markNeedsSemanticsUpdate$0(); }, set$textField(value) { return; }, set$readOnly(_, value) { return; }, set$focusable(value) { if (this._focusable == value) return; this._focusable = value; this.markNeedsSemanticsUpdate$0(); }, set$focused(_, value) { if (this._focused == value) return; this._focused = value; this.markNeedsSemanticsUpdate$0(); }, set$inMutuallyExclusiveGroup(value) { if (this._inMutuallyExclusiveGroup == value) return; this._inMutuallyExclusiveGroup = value; this.markNeedsSemanticsUpdate$0(); }, set$obscured(value) { return; }, set$multiline(_, value) { return; }, set$scopesRoute(value) { if (this._scopesRoute == value) return; this._scopesRoute = value; this.markNeedsSemanticsUpdate$0(); }, set$namesRoute(value) { if (this._namesRoute == value) return; this._namesRoute = value; this.markNeedsSemanticsUpdate$0(); }, set$hidden(_, value) { return; }, set$image(_, value) { if (this._image == value) return; this._image = value; }, set$liveRegion(value) { if (this._liveRegion == value) return; this._liveRegion = value; this.markNeedsSemanticsUpdate$0(); }, set$maxValueLength(value) { if (this._maxValueLength == value) return; this._maxValueLength = value; this.markNeedsSemanticsUpdate$0(); }, set$currentValueLength(value) { if (this._currentValueLength == value) return; this._currentValueLength = value; this.markNeedsSemanticsUpdate$0(); }, set$toggled(value) { if (this._toggled == value) return; this._toggled = value; this.markNeedsSemanticsUpdate$0(); }, set$attributedLabel(value) { if (J.$eq$(this._attributedLabel, value)) return; this._attributedLabel = value; this.markNeedsSemanticsUpdate$0(); }, set$attributedValue(value) { if (J.$eq$(this._attributedValue, value)) return; this._attributedValue = value; this.markNeedsSemanticsUpdate$0(); }, set$attributedIncreasedValue(value) { if (J.$eq$(this._attributedIncreasedValue, value)) return; this._attributedIncreasedValue = value; this.markNeedsSemanticsUpdate$0(); }, set$attributedDecreasedValue(value) { if (J.$eq$(this._attributedDecreasedValue, value)) return; this._attributedDecreasedValue = value; this.markNeedsSemanticsUpdate$0(); }, set$attributedHint(value) { if (J.$eq$(this._attributedHint, value)) return; this._attributedHint = value; this.markNeedsSemanticsUpdate$0(); }, set$hintOverrides(value) { if (J.$eq$(this._hintOverrides, value)) return; this._hintOverrides = value; this.markNeedsSemanticsUpdate$0(); }, set$textDirection(_, value) { if (this._proxy_box$_textDirection == value) return; this._proxy_box$_textDirection = value; this.markNeedsSemanticsUpdate$0(); }, set$sortKey(value) { if (this._sortKey == value) return; this._sortKey = value; this.markNeedsSemanticsUpdate$0(); }, set$tagForChildren(value) { if (J.$eq$(this._tagForChildren, value)) return; this.markNeedsSemanticsUpdate$0(); this._tagForChildren = value; }, set$onTap(handler) { var t1, _this = this; if (J.$eq$(_this._onTap, handler)) return; t1 = _this._onTap; _this._onTap = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDismiss(handler) { var t1, _this = this; if (J.$eq$(_this._onDismiss, handler)) return; t1 = _this._onDismiss; _this._onDismiss = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onLongPress(handler) { var t1, _this = this; if (J.$eq$(_this._onLongPress, handler)) return; t1 = _this._onLongPress; _this._onLongPress = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onScrollLeft(handler) { return; }, set$onScrollRight(handler) { return; }, set$onScrollUp(handler) { return; }, set$onScrollDown(handler) { return; }, set$onIncrease(handler) { var t1, _this = this; if (J.$eq$(_this._onIncrease, handler)) return; t1 = _this._onIncrease; _this._onIncrease = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDecrease(handler) { var t1, _this = this; if (J.$eq$(_this._onDecrease, handler)) return; t1 = _this._onDecrease; _this._onDecrease = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onCopy(_, handler) { var t1, _this = this; if (J.$eq$(_this._onCopy, handler)) return; t1 = _this._onCopy; _this._onCopy = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onCut(_, handler) { var t1, _this = this; if (J.$eq$(_this._onCut, handler)) return; t1 = _this._onCut; _this._onCut = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onPaste(_, handler) { var t1, _this = this; if (J.$eq$(_this._onPaste, handler)) return; t1 = _this._onPaste; _this._onPaste = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onMoveCursorForwardByCharacter(handler) { return; }, set$onMoveCursorBackwardByCharacter(handler) { return; }, set$onMoveCursorForwardByWord(handler) { return; }, set$onMoveCursorBackwardByWord(handler) { return; }, set$onSetSelection(handler) { return; }, set$onSetText(handler) { return; }, set$onDidGainAccessibilityFocus(handler) { var t1, _this = this; if (J.$eq$(_this._onDidGainAccessibilityFocus, handler)) return; t1 = _this._onDidGainAccessibilityFocus; _this._onDidGainAccessibilityFocus = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDidLoseAccessibilityFocus(handler) { return; }, set$customSemanticsActions(value) { if (this._customSemanticsActions == value) return; this._customSemanticsActions = value; this.markNeedsSemanticsUpdate$0(); }, visitChildrenForSemantics$1(visitor) { if (this._excludeSemantics) return; this.super$RenderObject$visitChildrenForSemantics(visitor); }, describeSemanticsConfiguration$1(config) { var t1, t2, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = _this._container; config.explicitChildNodes = _this._explicitChildNodes; t1 = _this._enabled; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_64, true); config._setFlag$2(B.SemanticsFlag_128, t1); } t1 = _this._checked; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_1, true); config._setFlag$2(B.SemanticsFlag_2, t1); } t1 = _this._toggled; if (t1 != null) { config._setFlag$2(B.SemanticsFlag_65536, true); config._setFlag$2(B.SemanticsFlag_131072, t1); } t1 = _this._selected; if (t1 != null) config._setFlag$2(B.SemanticsFlag_4, t1); t1 = _this._button; if (t1 != null) config._setFlag$2(B.SemanticsFlag_8, t1); t1 = _this._header; if (t1 != null) config._setFlag$2(B.SemanticsFlag_512, t1); t1 = _this._focusable; if (t1 != null) config._setFlag$2(B.SemanticsFlag_2097152, t1); t1 = _this._focused; if (t1 != null) config._setFlag$2(B.SemanticsFlag_32, t1); t1 = _this._inMutuallyExclusiveGroup; if (t1 != null) config._setFlag$2(B.SemanticsFlag_256, t1); t1 = _this._image; if (t1 != null) config._setFlag$2(B.SemanticsFlag_16384, t1); t1 = _this._attributedLabel; if (t1 != null) { config._semantics$_attributedLabel = t1; config._hasBeenAnnotated = true; } t1 = _this._attributedValue; if (t1 != null) { config._semantics$_attributedValue = t1; config._hasBeenAnnotated = true; } t1 = _this._attributedIncreasedValue; if (t1 != null) { config._semantics$_attributedIncreasedValue = t1; config._hasBeenAnnotated = true; } t1 = _this._attributedDecreasedValue; if (t1 != null) { config._semantics$_attributedDecreasedValue = t1; config._hasBeenAnnotated = true; } t1 = _this._attributedHint; if (t1 != null) { config._semantics$_attributedHint = t1; config._hasBeenAnnotated = true; } t1 = _this._hintOverrides; if (t1 != null) t2 = t1.onTapHint != null || false; else t2 = false; if (t2) config.set$hintOverrides(t1); t1 = _this._scopesRoute; if (t1 != null) config._setFlag$2(B.SemanticsFlag_2048, t1); t1 = _this._namesRoute; if (t1 != null) config._setFlag$2(B.SemanticsFlag_4096, t1); t1 = _this._liveRegion; if (t1 != null) config._setFlag$2(B.SemanticsFlag_32768, t1); t1 = _this._maxValueLength; if (t1 != null) config.set$maxValueLength(t1); t1 = _this._currentValueLength; if (t1 != null) config.set$currentValueLength(t1); t1 = _this._proxy_box$_textDirection; if (t1 != null) { config._semantics$_textDirection = t1; config._hasBeenAnnotated = true; } t1 = _this._sortKey; if (t1 != null) { config._semantics$_sortKey = t1; config._hasBeenAnnotated = true; } t1 = _this._tagForChildren; if (t1 != null) config.addTagForChildren$1(t1); if (_this._onTap != null) config.set$onTap(_this.get$_performTap()); if (_this._onLongPress != null) config.set$onLongPress(_this.get$_performLongPress()); if (_this._onDismiss != null) config.set$onDismiss(_this.get$_performDismiss()); if (_this._onIncrease != null) config.set$onIncrease(_this.get$_performIncrease()); if (_this._onDecrease != null) config.set$onDecrease(_this.get$_performDecrease()); if (_this._onCopy != null) config.set$onCopy(0, _this.get$_performCopy()); if (_this._onCut != null) config.set$onCut(0, _this.get$_performCut()); if (_this._onPaste != null) config.set$onPaste(0, _this.get$_performPaste()); if (_this._onDidGainAccessibilityFocus != null) config.set$onDidGainAccessibilityFocus(_this.get$_performDidGainAccessibilityFocus()); t1 = _this._customSemanticsActions; if (t1 != null) { config._hasBeenAnnotated = true; config._actionsAsBits |= 131072; config._semantics$_customSemanticsActions = t1; config._actions.$indexSet(0, B.SemanticsAction_131072, config.get$_onCustomSemanticsAction()); } }, _performTap$0() { var t1 = this._onTap; if (t1 != null) t1.call$0(); }, _performLongPress$0() { var t1 = this._onLongPress; if (t1 != null) t1.call$0(); }, _performDismiss$0() { var t1 = this._onDismiss; if (t1 != null) t1.call$0(); }, _performIncrease$0() { var t1 = this._onIncrease; if (t1 != null) t1.call$0(); }, _performDecrease$0() { var t1 = this._onDecrease; if (t1 != null) t1.call$0(); }, _performCopy$0() { var t1 = this._onCopy; if (t1 != null) t1.call$0(); }, _performCut$0() { var t1 = this._onCut; if (t1 != null) t1.call$0(); }, _performPaste$0() { var t1 = this._onPaste; if (t1 != null) t1.call$0(); }, _performDidGainAccessibilityFocus$0() { var t1 = this._onDidGainAccessibilityFocus; if (t1 != null) t1.call$0(); } }; A.RenderBlockSemantics.prototype = { set$blocking(value) { return; }, describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.isBlockingSemanticsOfPreviouslyPaintedNodes = true; } }; A.RenderMergeSemantics.prototype = { describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._hasBeenAnnotated = config._isMergingSemanticsOfDescendants = config._isSemanticBoundary = true; } }; A.RenderExcludeSemantics.prototype = { set$excluding(value) { if (value === this._excluding) return; this._excluding = value; this.markNeedsSemanticsUpdate$0(); }, visitChildrenForSemantics$1(visitor) { if (this._excluding) return; this.super$RenderObject$visitChildrenForSemantics(visitor); } }; A.RenderIndexedSemantics.prototype = { set$index(_, value) { if (value === this._proxy_box$_index) return; this._proxy_box$_index = value; this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._indexInParent = this._proxy_box$_index; config._hasBeenAnnotated = true; } }; A.RenderLeaderLayer.prototype = { set$link(value) { var _this = this, t1 = _this._proxy_box$_link; if (t1 == value) return; t1.leaderSize = null; _this._proxy_box$_link = value; t1 = _this._previousLayoutSize; if (t1 != null) value.leaderSize = t1; _this.markNeedsPaint$0(); }, get$alwaysNeedsCompositing() { return true; }, performLayout$0() { var t1, _this = this; _this.super$RenderProxyBoxMixin$performLayout(); t1 = _this._box$_size; t1.toString; _this._previousLayoutSize = t1; _this._proxy_box$_link.leaderSize = t1; }, paint$2(context, offset) { var t1 = this._layerHandle, t2 = t1._layer, t3 = this._proxy_box$_link; if (t2 == null) t1.set$layer(0, new A.LeaderLayer(t3, offset, A.LayerHandle$(type$.Layer_2))); else { type$.LeaderLayer._as(t2); t2.set$link(t3); t2.set$offset(0, offset); } t1 = t1._layer; t1.toString; context.pushLayer$3(t1, A.RenderProxyBoxMixin.prototype.get$paint.call(this), B.Offset_0_0); } }; A.RenderFollowerLayer.prototype = { set$link(value) { if (this._proxy_box$_link === value) return; this._proxy_box$_link = value; this.markNeedsPaint$0(); }, set$showWhenUnlinked(value) { if (this._showWhenUnlinked === value) return; this._showWhenUnlinked = value; this.markNeedsPaint$0(); }, set$offset(_, value) { if (J.$eq$(this._proxy_box$_offset, value)) return; this._proxy_box$_offset = value; this.markNeedsPaint$0(); }, set$leaderAnchor(value) { if (this._leaderAnchor.$eq(0, value)) return; this._leaderAnchor = value; this.markNeedsPaint$0(); }, set$followerAnchor(value) { if (this._followerAnchor.$eq(0, value)) return; this._followerAnchor = value; this.markNeedsPaint$0(); }, detach$0(_) { this._layerHandle.set$layer(0, null); this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, get$alwaysNeedsCompositing() { return true; }, getCurrentTransform$0() { var t1 = type$.nullable_FollowerLayer._as(A.RenderObject.prototype.get$layer.call(this, this)); t1 = t1 == null ? null : t1.getLastTransform$0(); if (t1 == null) { t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); } return t1; }, hitTest$2$position(result, position) { if (this._proxy_box$_link._leader == null && !this._showWhenUnlinked) return false; return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position(result, position) { return result.addWithPaintTransform$3$hitTest$position$transform(new A.RenderFollowerLayer_hitTestChildren_closure(this), position, this.getCurrentTransform$0()); }, paint$2(context, offset) { var effectiveLinkedOffset, t1, t2, t3, _this = this, leaderSize = _this._proxy_box$_link.leaderSize; if (leaderSize == null) effectiveLinkedOffset = _this._proxy_box$_offset; else { t1 = _this._leaderAnchor.alongSize$1(leaderSize); t2 = _this._followerAnchor; t3 = _this._box$_size; t3.toString; effectiveLinkedOffset = t1.$sub(0, t2.alongSize$1(t3)).$add(0, _this._proxy_box$_offset); } t1 = type$.nullable_FollowerLayer; if (t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layerHandle.set$layer(0, new A.FollowerLayer(_this._proxy_box$_link, _this._showWhenUnlinked, offset, effectiveLinkedOffset, A.LayerHandle$(type$.Layer_2))); else { t2 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); if (t2 != null) { t2._layer$_link = _this._proxy_box$_link; t2.showWhenUnlinked = _this._showWhenUnlinked; t2.linkedOffset = effectiveLinkedOffset; t2.unlinkedOffset = offset; } } t1 = t1._as(A.RenderObject.prototype.get$layer.call(_this, _this)); t1.toString; context.pushLayer$4$childPaintBounds(t1, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), B.Offset_0_0, B.Rect_Vy7); }, applyPaintTransform$2(child, transform) { transform.multiply$1(0, this.getCurrentTransform$0()); } }; A.RenderFollowerLayer_hitTestChildren_closure.prototype = { call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 73 }; A.RenderAnnotatedRegion.prototype = { get$value(_) { return this._proxy_box$_value; }, set$value(_, newValue) { if (this._proxy_box$_value.$eq(0, newValue)) return; this._proxy_box$_value = newValue; this.markNeedsPaint$0(); }, set$sized(value) { return; }, paint$2(context, offset) { var _this = this, t1 = _this._proxy_box$_value, t2 = _this._box$_size; t2.toString; context.pushLayer$3(new A.AnnotatedRegionLayer(t1, t2, offset, A.LayerHandle$(type$.Layer_2), _this.$ti._eval$1("AnnotatedRegionLayer<1>")), A.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset); }, get$alwaysNeedsCompositing() { return true; } }; A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin.prototype = { computeDistanceToActualBaseline$1(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline(baseline); } }; A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin.prototype = { attach$1(owner) { var _this = this; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); _this.RenderAnimatedOpacityMixin__opacity.addListener$1(0, _this.get$_updateOpacity()); _this._updateOpacity$0(); }, detach$0(_) { this.RenderAnimatedOpacityMixin__opacity.removeListener$1(0, this.get$_updateOpacity()); this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, paint$2(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this.RenderAnimatedOpacityMixin__alpha; if (t1 === 0) { _this._layerHandle.set$layer(0, null); return; } t1.toString; t2 = _this._layerHandle; t2.set$layer(0, context.pushOpacity$4$oldLayer(offset, t1, A.RenderProxyBoxMixin.prototype.get$paint.call(_this), type$.nullable_OpacityLayer._as(t2._layer))); } } }; A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin.prototype = { computeDistanceToActualBaseline$1(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$RenderBox$computeDistanceToActualBaseline(baseline); } }; A.RenderShiftedBox.prototype = { computeMinIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDistanceToActualBaseline$1(baseline) { var result, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { result = t1.getDistanceToActualBaseline$1(baseline); t1 = this.RenderObjectWithChildMixin__child.parentData; t1.toString; type$.BoxParentData._as(t1); if (result != null) result += t1.offset._dy; } else result = this.super$RenderBox$computeDistanceToActualBaseline(baseline); return result; }, paint$2(context, offset) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = t1.parentData; t2.toString; context.paintChild$2(t1, type$.BoxParentData._as(t2).offset.$add(0, offset)); } }, hitTestChildren$2$position(result, position) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1.parentData; t1.toString; type$.BoxParentData._as(t1); return result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderShiftedBox_hitTestChildren_closure(this, position, t1), t1.offset, position); } return false; } }; A.RenderShiftedBox_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.RenderPadding.prototype = { _shifted_box$_resolve$0() { var _this = this; if (_this._resolvedPadding != null) return; _this._resolvedPadding = _this._shifted_box$_padding.resolve$1(0, _this._shifted_box$_textDirection); }, set$padding(_, value) { var _this = this; if (J.$eq$(_this._shifted_box$_padding, value)) return; _this._shifted_box$_padding = value; _this._resolvedPadding = null; _this.markNeedsLayout$0(); }, set$textDirection(_, value) { var _this = this; if (_this._shifted_box$_textDirection == value) return; _this._shifted_box$_textDirection = value; _this._resolvedPadding = null; _this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { var t1, totalHorizontalPadding, t2, t3; this._shifted_box$_resolve$0(); t1 = this._resolvedPadding; totalHorizontalPadding = t1.left + t1.right; t2 = t1.top; t1 = t1.bottom; t3 = this.RenderObjectWithChildMixin__child; if (t3 != null) return t3._computeIntrinsicDimension$3(B._IntrinsicDimension_0, Math.max(0, height - (t2 + t1)), t3.get$computeMinIntrinsicWidth()) + totalHorizontalPadding; return totalHorizontalPadding; }, computeMaxIntrinsicWidth$1(height) { var t1, totalHorizontalPadding, t2, t3; this._shifted_box$_resolve$0(); t1 = this._resolvedPadding; totalHorizontalPadding = t1.left + t1.right; t2 = t1.top; t1 = t1.bottom; t3 = this.RenderObjectWithChildMixin__child; if (t3 != null) return t3._computeIntrinsicDimension$3(B._IntrinsicDimension_1, Math.max(0, height - (t2 + t1)), t3.get$computeMaxIntrinsicWidth()) + totalHorizontalPadding; return totalHorizontalPadding; }, computeMinIntrinsicHeight$1(width) { var t1, t2, t3, totalVerticalPadding; this._shifted_box$_resolve$0(); t1 = this._resolvedPadding; t2 = t1.left; t3 = t1.right; totalVerticalPadding = t1.top + t1.bottom; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, Math.max(0, width - (t2 + t3)), t1.get$computeMinIntrinsicHeight()) + totalVerticalPadding; return totalVerticalPadding; }, computeMaxIntrinsicHeight$1(width) { var t1, t2, t3, totalVerticalPadding; this._shifted_box$_resolve$0(); t1 = this._resolvedPadding; t2 = t1.left; t3 = t1.right; totalVerticalPadding = t1.top + t1.bottom; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, Math.max(0, width - (t2 + t3)), t1.get$computeMaxIntrinsicHeight()) + totalVerticalPadding; return totalVerticalPadding; }, computeDryLayout$1(constraints) { var t1, innerConstraints, childSize, _this = this; _this._shifted_box$_resolve$0(); if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._resolvedPadding; return constraints.constrain$1(new A.Size(t1.left + t1.right, t1.top + t1.bottom)); } t1 = _this._resolvedPadding; t1.toString; innerConstraints = constraints.deflate$1(t1); childSize = _this.RenderObjectWithChildMixin__child.getDryLayout$1(innerConstraints); t1 = _this._resolvedPadding; return constraints.constrain$1(new A.Size(t1.left + childSize._dx + t1.right, t1.top + childSize._dy + t1.bottom)); }, performLayout$0() { var t1, innerConstraints, t2, t3, t4, t5, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._shifted_box$_resolve$0(); if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._resolvedPadding; _this._box$_size = constraints.constrain$1(new A.Size(t1.left + t1.right, t1.top + t1.bottom)); return; } t1 = _this._resolvedPadding; t1.toString; innerConstraints = constraints.deflate$1(t1); _this.RenderObjectWithChildMixin__child.layout$2$parentUsesSize(0, innerConstraints, true); t1 = _this.RenderObjectWithChildMixin__child; t2 = t1.parentData; t2.toString; type$.BoxParentData._as(t2); t3 = _this._resolvedPadding; t4 = t3.left; t5 = t3.top; t2.offset = new A.Offset(t4, t5); t1 = t1._box$_size; _this._box$_size = constraints.constrain$1(new A.Size(t4 + t1._dx + t3.right, t5 + t1._dy + t3.bottom)); } }; A.RenderAligningShiftedBox.prototype = { _shifted_box$_resolve$0() { var _this = this; if (_this._shifted_box$_resolvedAlignment != null) return; _this._shifted_box$_resolvedAlignment = _this._shifted_box$_alignment.resolve$1(0, _this._shifted_box$_textDirection); }, set$alignment(value) { var _this = this; if (J.$eq$(_this._shifted_box$_alignment, value)) return; _this._shifted_box$_alignment = value; _this._shifted_box$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, set$textDirection(_, value) { var _this = this; if (_this._shifted_box$_textDirection == value) return; _this._shifted_box$_textDirection = value; _this._shifted_box$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, alignChild$0() { var t1, t2, t3, t4, _this = this; _this._shifted_box$_resolve$0(); t1 = _this.RenderObjectWithChildMixin__child; t2 = t1.parentData; t2.toString; type$.BoxParentData._as(t2); t3 = _this._shifted_box$_resolvedAlignment; t3.toString; t4 = _this._box$_size; t4.toString; t1 = t1._box$_size; t1.toString; t2.offset = t3.alongOffset$1(type$.Offset._as(t4.$sub(0, t1))); } }; A.RenderPositionedBox.prototype = { set$widthFactor(value) { if (this._widthFactor == value) return; this._widthFactor = value; this.markNeedsLayout$0(); }, set$heightFactor(value) { if (this._heightFactor == value) return; this._heightFactor = value; this.markNeedsLayout$0(); }, computeDryLayout$1(constraints) { var childSize, t2, t3, _this = this, shrinkWrapWidth = _this._widthFactor != null || constraints.maxWidth === 1 / 0, shrinkWrapHeight = _this._heightFactor != null || constraints.maxHeight === 1 / 0, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = t1.getDryLayout$1(new A.BoxConstraints(0, constraints.maxWidth, 0, constraints.maxHeight)); if (shrinkWrapWidth) { t1 = childSize._dx; t2 = _this._widthFactor; t1 *= t2 == null ? 1 : t2; } else t1 = 1 / 0; if (shrinkWrapHeight) { t2 = childSize._dy; t3 = _this._heightFactor; t2 *= t3 == null ? 1 : t3; } else t2 = 1 / 0; return constraints.constrain$1(new A.Size(t1, t2)); } t1 = shrinkWrapWidth ? 0 : 1 / 0; return constraints.constrain$1(new A.Size(t1, shrinkWrapHeight ? 0 : 1 / 0)); }, performLayout$0() { var t2, t3, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), shrinkWrapWidth = _this._widthFactor != null || constraints.maxWidth === 1 / 0, shrinkWrapHeight = _this._heightFactor != null || constraints.maxHeight === 1 / 0, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, new A.BoxConstraints(0, constraints.maxWidth, 0, constraints.maxHeight), true); if (shrinkWrapWidth) { t1 = _this.RenderObjectWithChildMixin__child._box$_size._dx; t2 = _this._widthFactor; t1 *= t2 == null ? 1 : t2; } else t1 = 1 / 0; if (shrinkWrapHeight) { t2 = _this.RenderObjectWithChildMixin__child._box$_size._dy; t3 = _this._heightFactor; t2 *= t3 == null ? 1 : t3; } else t2 = 1 / 0; _this._box$_size = constraints.constrain$1(new A.Size(t1, t2)); _this.alignChild$0(); } else { t1 = shrinkWrapWidth ? 0 : 1 / 0; _this._box$_size = constraints.constrain$1(new A.Size(t1, shrinkWrapHeight ? 0 : 1 / 0)); } } }; A.RenderConstrainedOverflowBox.prototype = { set$minWidth(_, value) { if (this._minWidth == value) return; this._minWidth = value; this.markNeedsLayout$0(); }, set$maxWidth(_, value) { if (this._shifted_box$_maxWidth === value) return; this._shifted_box$_maxWidth = value; this.markNeedsLayout$0(); }, set$minHeight(_, value) { if (this._minHeight == value) return; this._minHeight = value; this.markNeedsLayout$0(); }, set$maxHeight(_, value) { if (this._shifted_box$_maxHeight === value) return; this._shifted_box$_maxHeight = value; this.markNeedsLayout$0(); }, get$sizedByParent() { return true; }, computeDryLayout$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t2, t3, t4, t5, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); t3 = _this._minWidth; if (t3 == null) t3 = t2.minWidth; t4 = _this._shifted_box$_maxWidth; t5 = _this._minHeight; t2 = t5 == null ? t2.minHeight : t5; t5 = _this._shifted_box$_maxHeight; t1.layout$2$parentUsesSize(0, new A.BoxConstraints(t3, t4, t2, t5), true); _this.alignChild$0(); } } }; A.RenderFractionallySizedOverflowBox.prototype = { set$widthFactor(value) { if (this._widthFactor == value) return; this._widthFactor = value; this.markNeedsLayout$0(); }, set$heightFactor(value) { if (this._heightFactor == value) return; this._heightFactor = value; this.markNeedsLayout$0(); }, _getInnerConstraints$1(constraints) { var width, minHeight, maxHeight, height, minWidth = constraints.minWidth, maxWidth = constraints.maxWidth, t1 = this._widthFactor; if (t1 != null) { width = maxWidth * t1; maxWidth = width; minWidth = maxWidth; } minHeight = constraints.minHeight; maxHeight = constraints.maxHeight; t1 = this._heightFactor; if (t1 != null) { height = maxHeight * t1; maxHeight = height; minHeight = maxHeight; } return new A.BoxConstraints(minWidth, maxWidth, minHeight, maxHeight); }, computeMinIntrinsicWidth$1(height) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMinIntrinsicWidth(height); else { t2 = _this._heightFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height * t2, t1.get$computeMinIntrinsicWidth()); } t1 = _this._widthFactor; return result / (t1 == null ? 1 : t1); }, computeMaxIntrinsicWidth$1(height) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMaxIntrinsicWidth(height); else { t2 = _this._heightFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height * t2, t1.get$computeMaxIntrinsicWidth()); } t1 = _this._widthFactor; return result / (t1 == null ? 1 : t1); }, computeMinIntrinsicHeight$1(width) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMinIntrinsicHeight(width); else { t2 = _this._widthFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width * t2, t1.get$computeMinIntrinsicHeight()); } t1 = _this._heightFactor; return result / (t1 == null ? 1 : t1); }, computeMaxIntrinsicHeight$1(width) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMaxIntrinsicHeight(width); else { t2 = _this._widthFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width * t2, t1.get$computeMaxIntrinsicHeight()); } t1 = _this._heightFactor; return result / (t1 == null ? 1 : t1); }, computeDryLayout$1(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return constraints.constrain$1(t1.getDryLayout$1(this._getInnerConstraints$1(constraints))); return constraints.constrain$1(this._getInnerConstraints$1(constraints).constrain$1(B.Size_0_0)); }, performLayout$0() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child, t2 = type$.BoxConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, _this._getInnerConstraints$1(t2._as(A.RenderObject.prototype.get$constraints.call(_this))), true); t1 = t2._as(A.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrain$1(t2); _this.alignChild$0(); } else _this._box$_size = t2._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(_this._getInnerConstraints$1(t2._as(A.RenderObject.prototype.get$constraints.call(_this))).constrain$1(B.Size_0_0)); } }; A.SingleChildLayoutDelegate.prototype = { getSize$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, getConstraintsForChild$1(constraints) { return constraints; }, getPositionForChild$2(size, childSize) { return B.Offset_0_0; } }; A.RenderCustomSingleChildLayoutBox.prototype = { set$delegate(newDelegate) { var _this = this, t1 = _this._shifted_box$_delegate; if (t1 === newDelegate) return; if (A.getRuntimeType(newDelegate) !== A.getRuntimeType(t1) || newDelegate.shouldRelayout$1(t1)) _this.markNeedsLayout$0(); _this._shifted_box$_delegate = newDelegate; _this._node$_owner != null; }, attach$1(owner) { this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$attach(owner); }, detach$0(_) { this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, computeMinIntrinsicWidth$1(height) { var t1 = A.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMaxIntrinsicWidth$1(height) { var t1 = A.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMinIntrinsicHeight$1(width) { var t1 = A.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeMaxIntrinsicHeight$1(width) { var t1 = A.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeDryLayout$1(constraints) { return constraints.constrain$1(this._shifted_box$_delegate.getSize$1(constraints)); }, performLayout$0() { var childConstraints, t3, t4, t5, t6, t7, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = t2.constrain$1(_this._shifted_box$_delegate.getSize$1(t2)); if (_this.RenderObjectWithChildMixin__child != null) { childConstraints = _this._shifted_box$_delegate.getConstraintsForChild$1(t1._as(A.RenderObject.prototype.get$constraints.call(_this))); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; t2 = childConstraints.minWidth; t3 = childConstraints.maxWidth; t4 = t2 >= t3; t1.layout$2$parentUsesSize(0, childConstraints, !(t4 && childConstraints.minHeight >= childConstraints.maxHeight)); t1 = _this.RenderObjectWithChildMixin__child; t5 = t1.parentData; t5.toString; type$.BoxParentData._as(t5); t6 = _this._shifted_box$_delegate; t7 = _this._box$_size; t7.toString; if (t4 && childConstraints.minHeight >= childConstraints.maxHeight) t1 = new A.Size(B.JSInt_methods.clamp$2(0, t2, t3), B.JSInt_methods.clamp$2(0, childConstraints.minHeight, childConstraints.maxHeight)); else { t1 = t1._box$_size; t1.toString; } t5.offset = t6.getPositionForChild$2(t7, t1); } } }; A._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.GrowthDirection.prototype = { toString$0(_) { return "GrowthDirection." + this._core$_name; } }; A.SliverConstraints.prototype = { get$isTight() { return false; }, asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(crossAxisExtent, maxExtent, minExtent) { if (crossAxisExtent == null) crossAxisExtent = this.crossAxisExtent; switch (A.axisDirectionToAxis(this.axisDirection).index) { case 0: return new A.BoxConstraints(minExtent, maxExtent, crossAxisExtent, crossAxisExtent); case 1: return new A.BoxConstraints(crossAxisExtent, crossAxisExtent, minExtent, maxExtent); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, asBoxConstraints$2$maxExtent$minExtent(maxExtent, minExtent) { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, maxExtent, minExtent); }, asBoxConstraints$1$maxExtent(maxExtent) { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, maxExtent, 0); }, asBoxConstraints$0() { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, 1 / 0, 0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.SliverConstraints)) return false; return other.axisDirection === _this.axisDirection && other.growthDirection === _this.growthDirection && other.scrollOffset === _this.scrollOffset && other.overlap === _this.overlap && other.remainingPaintExtent === _this.remainingPaintExtent && other.crossAxisExtent == _this.crossAxisExtent && other.crossAxisDirection === _this.crossAxisDirection && other.viewportMainAxisExtent === _this.viewportMainAxisExtent && other.remainingCacheExtent === _this.remainingCacheExtent && other.cacheOrigin === _this.cacheOrigin; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.axisDirection, _this.growthDirection, _this.scrollOffset, _this.overlap, _this.remainingPaintExtent, _this.crossAxisExtent, _this.crossAxisDirection, _this.viewportMainAxisExtent, _this.remainingCacheExtent, _this.cacheOrigin, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this, t1 = A._setArrayType([_this.axisDirection.toString$0(0), _this.growthDirection.toString$0(0), _this.userScrollDirection.toString$0(0), "scrollOffset: " + B.JSNumber_methods.toStringAsFixed$1(_this.scrollOffset, 1), "remainingPaintExtent: " + B.JSNumber_methods.toStringAsFixed$1(_this.remainingPaintExtent, 1)], type$.JSArray_String), t2 = _this.overlap; if (t2 !== 0) t1.push("overlap: " + B.JSNumber_methods.toStringAsFixed$1(t2, 1)); t1.push("crossAxisExtent: " + J.toStringAsFixed$1$n(_this.crossAxisExtent, 1)); t1.push("crossAxisDirection: " + _this.crossAxisDirection.toString$0(0)); t1.push("viewportMainAxisExtent: " + B.JSNumber_methods.toStringAsFixed$1(_this.viewportMainAxisExtent, 1)); t1.push("remainingCacheExtent: " + B.JSNumber_methods.toStringAsFixed$1(_this.remainingCacheExtent, 1)); t1.push("cacheOrigin: " + B.JSNumber_methods.toStringAsFixed$1(_this.cacheOrigin, 1)); return "SliverConstraints(" + B.JSArray_methods.join$1(t1, ", ") + ")"; } }; A.SliverGeometry.prototype = { toStringShort$0() { return "SliverGeometry"; } }; A.SliverHitTestResult.prototype = {}; A.SliverHitTestEntry.prototype = { toString$0(_) { return A.getRuntimeType(this.target).toString$0(0) + "@(mainAxis: " + A.S(this.mainAxisPosition) + ", crossAxis: " + A.S(this.crossAxisPosition) + ")"; } }; A.SliverLogicalParentData.prototype = { toString$0(_) { var t1 = this.layoutOffset; return "layoutOffset=" + (t1 == null ? "None" : B.JSNumber_methods.toStringAsFixed$1(t1, 1)); } }; A.SliverLogicalContainerParentData.prototype = {}; A.SliverPhysicalParentData.prototype = { toString$0(_) { return "paintOffset=" + this.paintOffset.toString$0(0); } }; A.SliverPhysicalContainerParentData.prototype = {}; A.RenderSliver.prototype = { get$constraints() { return type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(this)); }, get$semanticBounds() { return this.get$paintBounds(); }, get$paintBounds() { var _this = this, t1 = type$.SliverConstraints; switch (A.axisDirectionToAxis(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection).index) { case 0: return new A.Rect(0, 0, 0 + _this._geometry.paintExtent, 0 + t1._as(A.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent); case 1: return new A.Rect(0, 0, 0 + t1._as(A.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent, 0 + _this._geometry.paintExtent); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, performResize$0() { }, hitTest$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) { var _this = this; if (mainAxisPosition >= 0 && mainAxisPosition < _this._geometry.hitTestExtent && crossAxisPosition >= 0 && crossAxisPosition < type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent) if (_this.hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) || false) { result.add$1(0, new A.SliverHitTestEntry(mainAxisPosition, crossAxisPosition, _this)); return true; } return false; }, hitTest$1(result) { return this.hitTest$3$crossAxisPosition$mainAxisPosition(result, null, null); }, hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) { return false; }, calculatePaintOffset$3$from$to(constraints, from, to) { var a = constraints.scrollOffset, t1 = constraints.remainingPaintExtent, b = a + t1; return B.JSNumber_methods.clamp$2(J.clamp$2$n(to, a, b) - J.clamp$2$n(from, a, b), 0, t1); }, calculateCacheOffset$3$from$to(constraints, from, to) { var t1 = constraints.scrollOffset, a = t1 + constraints.cacheOrigin, t2 = constraints.remainingCacheExtent, b = t1 + t2; return B.JSNumber_methods.clamp$2(J.clamp$2$n(to, a, b) - J.clamp$2$n(from, a, b), 0, t2); }, childMainAxisPosition$1(child) { return 0; }, childCrossAxisPosition$1(child) { return 0; }, childScrollOffset$1(child) { return 0; }, applyPaintTransform$2(child, transform) { }, handleEvent$2($event, entry) { } }; A.RenderSliverHelpers.prototype = { _getRightWayUp$1(constraints) { var rightWayUp, _s80_ = string$.x60null_c; switch (constraints.axisDirection.index) { case 0: case 3: rightWayUp = false; break; case 2: case 1: rightWayUp = true; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } switch (constraints.growthDirection.index) { case 0: break; case 1: rightWayUp = !rightWayUp; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return rightWayUp; }, hitTestBoxChild$4$crossAxisPosition$mainAxisPosition(result, child, crossAxisPosition, mainAxisPosition) { var t1, paintOffset, _this = this, _box_0 = {}, rightWayUp = _this._getRightWayUp$1(_this.get$constraints()), delta = _this.childMainAxisPosition$1(child), crossAxisDelta = _this.childCrossAxisPosition$1(child), absolutePosition = mainAxisPosition - delta, absoluteCrossAxisPosition = crossAxisPosition - crossAxisDelta; _box_0.transformedPosition = null; switch (A.axisDirectionToAxis(_this.get$constraints().axisDirection).index) { case 0: if (!rightWayUp) { t1 = child._box$_size._dx; absolutePosition = t1 - absolutePosition; delta = _this._geometry.paintExtent - t1 - delta; } paintOffset = new A.Offset(delta, crossAxisDelta); _box_0.transformedPosition = new A.Offset(absolutePosition, absoluteCrossAxisPosition); break; case 1: if (!rightWayUp) { t1 = child._box$_size._dy; absolutePosition = t1 - absolutePosition; delta = _this._geometry.paintExtent - t1 - delta; } paintOffset = new A.Offset(crossAxisDelta, delta); _box_0.transformedPosition = new A.Offset(absoluteCrossAxisPosition, absolutePosition); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return result.addWithOutOfBandPosition$2$hitTest$paintOffset(new A.RenderSliverHelpers_hitTestBoxChild_closure(_box_0, child), paintOffset); }, applyPaintTransformForBoxChild$2(child, transform) { var _this = this, rightWayUp = _this._getRightWayUp$1(_this.get$constraints()), delta = _this.childMainAxisPosition$1(child), crossAxisDelta = _this.childCrossAxisPosition$1(child); switch (A.axisDirectionToAxis(_this.get$constraints().axisDirection).index) { case 0: transform.translate$2(0, !rightWayUp ? _this._geometry.paintExtent - child._box$_size._dx - delta : delta, crossAxisDelta); break; case 1: transform.translate$2(0, crossAxisDelta, !rightWayUp ? _this._geometry.paintExtent - child._box$_size._dy - delta : delta); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.RenderSliverHelpers_hitTestBoxChild_closure.prototype = { call$1(result) { return this.child.hitTest$2$position(result, this._box_0.transformedPosition); }, $signature: 675 }; A._SliverGeometry_Object_Diagnosticable.prototype = {}; A._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin.prototype = { detach$0(_) { this.super$ParentData$detach(0); } }; A._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin.prototype = { detach$0(_) { this.super$ParentData$detach(0); } }; A.RenderSliverFillViewport.prototype = { get$itemExtent() { return type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(this)).viewportMainAxisExtent * this._sliver_fill0$_viewportFraction; }, set$viewportFraction(value) { if (this._sliver_fill0$_viewportFraction === value) return; this._sliver_fill0$_viewportFraction = value; this.markNeedsLayout$0(); } }; A.RenderSliverFixedExtentBoxAdaptor.prototype = { getMinChildIndexForScrollOffset$2(scrollOffset, itemExtent) { var actual, round; if (itemExtent > 0) { actual = scrollOffset / itemExtent; round = B.JSNumber_methods.round$0(actual); if (Math.abs(actual * itemExtent - round * itemExtent) < 1e-10) return round; return B.JSNumber_methods.floor$0(actual); } return 0; }, getMaxChildIndexForScrollOffset$2(scrollOffset, itemExtent) { var actual, round; if (itemExtent > 0) { actual = scrollOffset / itemExtent - 1; round = B.JSNumber_methods.round$0(actual); if (Math.abs(actual * itemExtent - round * itemExtent) < 1e-10) return Math.max(0, round); return Math.max(0, B.JSNumber_methods.ceil$0(actual)); } return 0; }, _calculateLeadingGarbage$1(firstIndex) { var t3, walker = this.ContainerRenderObjectMixin__firstChild, t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), t2 = type$.SliverMultiBoxAdaptorParentData, leadingGarbage = 0; while (true) { if (walker != null) { t3 = walker.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; t3 = t3 < firstIndex; } else t3 = false; if (!t3) break; ++leadingGarbage; t3 = walker.parentData; t3.toString; walker = t1._as(t3).ContainerParentDataMixin_nextSibling; } return leadingGarbage; }, _calculateTrailingGarbage$1(targetLastIndex) { var t3, walker = this.ContainerRenderObjectMixin__lastChild, t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), t2 = type$.SliverMultiBoxAdaptorParentData, trailingGarbage = 0; while (true) { if (walker != null) { t3 = walker.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; t3 = t3 > targetLastIndex; } else t3 = false; if (!t3) break; ++trailingGarbage; t3 = walker.parentData; t3.toString; walker = t1._as(t3).ContainerParentDataMixin_previousSibling; } return trailingGarbage; }, performLayout$0() { var itemExtent, t2, scrollOffset, targetEndScrollOffset, childConstraints, firstIndex, targetLastIndex, leadingGarbage, max, t3, t4, index, trailingChildWithLayout, child, t5, estimatedMaxScrollOffset, t6, t7, leadingScrollOffset, trailingScrollOffset, paintExtent, cacheExtent, targetEndScrollOffsetForPaint, targetLastIndexForPaint, _this = this, _null = null, constraints = type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; itemExtent = _this.get$itemExtent(); t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; childConstraints = constraints.asBoxConstraints$2$maxExtent$minExtent(itemExtent, itemExtent); firstIndex = _this.getMinChildIndexForScrollOffset$2(scrollOffset, itemExtent); targetLastIndex = isFinite(targetEndScrollOffset) ? _this.getMaxChildIndexForScrollOffset$2(targetEndScrollOffset, itemExtent) : _null; if (_this.ContainerRenderObjectMixin__firstChild != null) { leadingGarbage = _this._calculateLeadingGarbage$1(firstIndex); _this.collectGarbage$2(leadingGarbage, targetLastIndex != null ? _this._calculateTrailingGarbage$1(targetLastIndex) : 0); } else _this.collectGarbage$2(0, 0); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$2$index$layoutOffset(firstIndex, itemExtent * firstIndex)) { max = firstIndex <= 0 ? 0 : t1.get$childCount() * itemExtent; _this._geometry = A.SliverGeometry$(_null, false, _null, _null, max, 0, 0, 0, max, _null); t1.didFinishLayout$0(); return; } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; index = t3 - 1; trailingChildWithLayout = _null; for (; index >= firstIndex; --index) { child = _this.insertAndLayoutLeadingChild$1(childConstraints); if (child == null) { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, index * itemExtent); return; } t3 = child.parentData; t3.toString; t4._as(t3).layoutOffset = itemExtent * index; if (trailingChildWithLayout == null) trailingChildWithLayout = child; } if (trailingChildWithLayout == null) { _this.ContainerRenderObjectMixin__firstChild.layout$1(0, childConstraints); trailingChildWithLayout = _this.ContainerRenderObjectMixin__firstChild; t3 = trailingChildWithLayout.parentData; t3.toString; t4._as(t3).layoutOffset = itemExtent * firstIndex; } t3 = trailingChildWithLayout.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; index = t3 + 1; t3 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t5 = targetLastIndex != null; while (true) { if (!(!t5 || index <= targetLastIndex)) { estimatedMaxScrollOffset = 1 / 0; break; } t6 = trailingChildWithLayout.parentData; t6.toString; child = t3._as(t6).ContainerParentDataMixin_nextSibling; if (child != null) { t6 = child.parentData; t6.toString; t6 = t4._as(t6).index; t6.toString; t6 = t6 !== index; } else t6 = true; if (t6) { child = _this.insertAndLayoutChild$2$after(childConstraints, trailingChildWithLayout); if (child == null) { estimatedMaxScrollOffset = index * itemExtent; break; } } else child.layout$1(0, childConstraints); t6 = child.parentData; t6.toString; t4._as(t6); t7 = t6.index; t7.toString; t6.layoutOffset = itemExtent * t7; ++index; trailingChildWithLayout = child; } t3 = _this.ContainerRenderObjectMixin__lastChild; t3.toString; t3 = t3.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; leadingScrollOffset = itemExtent * firstIndex; trailingScrollOffset = itemExtent * (t3 + 1); estimatedMaxScrollOffset = Math.min(estimatedMaxScrollOffset, t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, firstIndex, t3, leadingScrollOffset, trailingScrollOffset)); paintExtent = _this.calculatePaintOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset); cacheExtent = _this.calculateCacheOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset); targetEndScrollOffsetForPaint = t2 + constraints.remainingPaintExtent; targetLastIndexForPaint = isFinite(targetEndScrollOffsetForPaint) ? _this.getMaxChildIndexForScrollOffset$2(targetEndScrollOffsetForPaint, itemExtent) : _null; _this._geometry = A.SliverGeometry$(cacheExtent, targetLastIndexForPaint != null && t3 >= targetLastIndexForPaint || t2 > 0, _null, _null, estimatedMaxScrollOffset, 0, paintExtent, 0, estimatedMaxScrollOffset, _null); if (estimatedMaxScrollOffset === trailingScrollOffset) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; A.SliverGridGeometry.prototype = { getBoxConstraints$1(constraints) { var t1 = this.mainAxisExtent; return constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(this.crossAxisExtent, t1, t1); }, toString$0(_) { var _this = this; return "SliverGridGeometry(" + B.JSArray_methods.join$1(A._setArrayType(["scrollOffset: " + A.S(_this.scrollOffset), "crossAxisOffset: " + A.S(_this.crossAxisOffset), "mainAxisExtent: " + A.S(_this.mainAxisExtent), "crossAxisExtent: " + A.S(_this.crossAxisExtent)], type$.JSArray_String), ", ") + ")"; } }; A.SliverGridLayout.prototype = {}; A.SliverGridRegularTileLayout.prototype = { getMaxChildIndexForScrollOffset$1(scrollOffset) { var t1 = this.mainAxisStride; if (t1 > 0) return Math.max(0, this.crossAxisCount * B.JSNumber_methods.ceil$0(scrollOffset / t1) - 1); return 0; }, _getOffsetFromStartInCrossAxis$1(crossAxisStart) { var t1, t2, _this = this; if (_this.reverseCrossAxis) { t1 = _this.crossAxisStride; t2 = _this.childCrossAxisExtent; return _this.crossAxisCount * t1 - crossAxisStart - t2 - (t1 - t2); } return crossAxisStart; }, getGeometryForChildIndex$1(index) { var _this = this, t1 = _this.crossAxisCount, t2 = B.JSInt_methods.$mod(index, t1); return new A.SliverGridGeometry(B.JSInt_methods.$tdiv(index, t1) * _this.mainAxisStride, _this._getOffsetFromStartInCrossAxis$1(t2 * _this.crossAxisStride), _this.childMainAxisExtent, _this.childCrossAxisExtent); }, computeMaxScrollOffset$1(childCount) { var t1 = this.mainAxisStride; return t1 * (B.JSInt_methods.$tdiv(childCount - 1, this.crossAxisCount) + 1) - (t1 - this.childMainAxisExtent); } }; A.SliverGridDelegate.prototype = {}; A.SliverGridDelegateWithFixedCrossAxisCount.prototype = { getLayout$1(constraints) { var _this = this, t1 = _this.crossAxisSpacing, t2 = _this.crossAxisCount, childCrossAxisExtent = Math.max(0, constraints.crossAxisExtent - t1 * (t2 - 1)) / t2, childMainAxisExtent = childCrossAxisExtent / _this.childAspectRatio; return new A.SliverGridRegularTileLayout(t2, childMainAxisExtent + _this.mainAxisSpacing, childCrossAxisExtent + t1, childMainAxisExtent, childCrossAxisExtent, A.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1(oldDelegate) { var _this = this; return oldDelegate.crossAxisCount !== _this.crossAxisCount || oldDelegate.mainAxisSpacing !== _this.mainAxisSpacing || oldDelegate.crossAxisSpacing !== _this.crossAxisSpacing || oldDelegate.childAspectRatio !== _this.childAspectRatio || false; } }; A.SliverGridParentData.prototype = { toString$0(_) { return "crossAxisOffset=" + A.S(this.crossAxisOffset) + "; " + this.super$SliverMultiBoxAdaptorParentData$toString(0); } }; A.RenderSliverGrid.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.SliverGridParentData)) child.parentData = new A.SliverGridParentData(false, null, null); }, set$gridDelegate(value) { var _this = this; if (_this._gridDelegate === value) return; if (A.getRuntimeType(value) !== A.getRuntimeType(_this._gridDelegate) || value.shouldRelayout$1(_this._gridDelegate)) _this.markNeedsLayout$0(); _this._gridDelegate = value; }, childCrossAxisPosition$1(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverGridParentData._as(t1).crossAxisOffset; t1.toString; return t1; }, performLayout$0() { var t2, scrollOffset, targetEndScrollOffset, layout, t3, firstIndex, targetLastIndex, t4, t5, leadingGarbage, firstChildGridGeometry, leadingScrollOffset, trailingScrollOffset, max, index, trailingChildWithLayout, gridGeometry, child, t6, t7, childConstraints, t8, t9, estimatedTotalExtent, paintExtent, _this = this, _null = null, constraints = type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; layout = _this._gridDelegate.getLayout$1(constraints); t3 = layout.mainAxisStride; firstIndex = t3 > 1e-10 ? layout.crossAxisCount * B.JSNumber_methods.$tdiv(scrollOffset, t3) : 0; targetLastIndex = isFinite(targetEndScrollOffset) ? layout.getMaxChildIndexForScrollOffset$1(targetEndScrollOffset) : _null; t3 = _this.ContainerRenderObjectMixin__firstChild; if (t3 != null) { t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; t5 = _this.ContainerRenderObjectMixin__lastChild; t5.toString; t5 = t5.parentData; t5.toString; t5 = t4._as(t5).index; t5.toString; leadingGarbage = B.JSInt_methods.clamp$2(firstIndex - t3, 0, _this.ContainerRenderObjectMixin__childCount); _this.collectGarbage$2(leadingGarbage, targetLastIndex == null ? 0 : B.JSInt_methods.clamp$2(t5 - targetLastIndex, 0, _this.ContainerRenderObjectMixin__childCount)); } else _this.collectGarbage$2(0, 0); firstChildGridGeometry = layout.getGeometryForChildIndex$1(firstIndex); leadingScrollOffset = firstChildGridGeometry.scrollOffset; trailingScrollOffset = leadingScrollOffset + firstChildGridGeometry.mainAxisExtent; if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$2$index$layoutOffset(firstIndex, leadingScrollOffset)) { max = layout.computeMaxScrollOffset$1(t1.get$childCount()); _this._geometry = A.SliverGeometry$(_null, false, _null, _null, max, 0, 0, 0, max, _null); t1.didFinishLayout$0(); return; } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; index = t3 - 1; t3 = type$.SliverGridParentData; trailingChildWithLayout = _null; for (; index >= firstIndex; --index) { gridGeometry = layout.getGeometryForChildIndex$1(index); t5 = gridGeometry.mainAxisExtent; child = _this.insertAndLayoutLeadingChild$1(constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(gridGeometry.crossAxisExtent, t5, t5)); t6 = child.parentData; t6.toString; t3._as(t6); t7 = gridGeometry.scrollOffset; t6.layoutOffset = t7; t6.crossAxisOffset = gridGeometry.crossAxisOffset; if (trailingChildWithLayout == null) trailingChildWithLayout = child; trailingScrollOffset = Math.max(trailingScrollOffset, t7 + t5); } if (trailingChildWithLayout == null) { t5 = _this.ContainerRenderObjectMixin__firstChild; t5.toString; t5.layout$1(0, firstChildGridGeometry.getBoxConstraints$1(constraints)); trailingChildWithLayout = _this.ContainerRenderObjectMixin__firstChild; t5 = trailingChildWithLayout.parentData; t5.toString; t3._as(t5); t5.layoutOffset = leadingScrollOffset; t5.crossAxisOffset = firstChildGridGeometry.crossAxisOffset; } t5 = trailingChildWithLayout.parentData; t5.toString; t5 = t4._as(t5).index; t5.toString; index = t5 + 1; t5 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t6 = targetLastIndex != null; while (true) { if (!(!t6 || index <= targetLastIndex)) break; gridGeometry = layout.getGeometryForChildIndex$1(index); t7 = gridGeometry.mainAxisExtent; childConstraints = constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(gridGeometry.crossAxisExtent, t7, t7); t8 = trailingChildWithLayout.parentData; t8.toString; child = t5._as(t8).ContainerParentDataMixin_nextSibling; if (child != null) { t8 = child.parentData; t8.toString; t8 = t4._as(t8).index; t8.toString; t8 = t8 !== index; } else t8 = true; if (t8) { child = _this.insertAndLayoutChild$2$after(childConstraints, trailingChildWithLayout); if (child == null) break; } else child.layout$1(0, childConstraints); t8 = child.parentData; t8.toString; t3._as(t8); t9 = gridGeometry.scrollOffset; t8.layoutOffset = t9; t8.crossAxisOffset = gridGeometry.crossAxisOffset; trailingScrollOffset = Math.max(trailingScrollOffset, t9 + t7); ++index; trailingChildWithLayout = child; } t3 = _this.ContainerRenderObjectMixin__lastChild; t3.toString; t3 = t3.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; estimatedTotalExtent = t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, firstIndex, t3, leadingScrollOffset, trailingScrollOffset); paintExtent = _this.calculatePaintOffset$3$from$to(constraints, Math.min(t2, leadingScrollOffset), trailingScrollOffset); _this._geometry = A.SliverGeometry$(_this.calculateCacheOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset), true, _null, _null, estimatedTotalExtent, 0, paintExtent, 0, estimatedTotalExtent, _null); if (estimatedTotalExtent === trailingScrollOffset) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; A.RenderSliverList.prototype = { performLayout$0() { var t2, scrollOffset, targetEndScrollOffset, childConstraints, earliestUsefulChild, t3, t4, leadingChildrenWithoutLayoutOffset, t5, earliestScrollOffset, leadingChildWithLayout, firstChildScrollOffset, advance, leadingGarbage, extent, reachedEnd, trailingGarbage, child, estimatedMaxScrollOffset, t6, paintExtent, cacheExtent, _this = this, _null = null, _box_0 = {}, constraints = type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; childConstraints = constraints.asBoxConstraints$0(); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$0()) { _this._geometry = B.SliverGeometry_Tbh; t1.didFinishLayout$0(); return; } _box_0.trailingChildWithLayout = null; earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; t3 = earliestUsefulChild.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; if (t4._as(t3).layoutOffset == null) { t3 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); leadingChildrenWithoutLayoutOffset = 0; while (true) { if (earliestUsefulChild != null) { t5 = earliestUsefulChild.parentData; t5.toString; t5 = t4._as(t5).layoutOffset == null; } else t5 = false; if (!t5) break; t5 = earliestUsefulChild.parentData; t5.toString; earliestUsefulChild = t3._as(t5).ContainerParentDataMixin_nextSibling; ++leadingChildrenWithoutLayoutOffset; } _this.collectGarbage$2(leadingChildrenWithoutLayoutOffset, 0); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$0()) { _this._geometry = B.SliverGeometry_Tbh; t1.didFinishLayout$0(); return; } } earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; t3 = earliestUsefulChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; earliestScrollOffset = t3; leadingChildWithLayout = _null; for (; earliestScrollOffset > scrollOffset; earliestScrollOffset = firstChildScrollOffset, leadingChildWithLayout = earliestUsefulChild) { earliestUsefulChild = _this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, true); if (earliestUsefulChild == null) { t3 = _this.ContainerRenderObjectMixin__firstChild; t5 = t3.parentData; t5.toString; t4._as(t5).layoutOffset = 0; if (scrollOffset === 0) { t3.layout$2$parentUsesSize(0, childConstraints, true); earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; if (_box_0.trailingChildWithLayout == null) _box_0.trailingChildWithLayout = earliestUsefulChild; leadingChildWithLayout = earliestUsefulChild; break; } else { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -scrollOffset); return; } } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; firstChildScrollOffset = earliestScrollOffset - _this.paintExtentOf$1(t3); if (firstChildScrollOffset < -1e-10) { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -firstChildScrollOffset); t1 = _this.ContainerRenderObjectMixin__firstChild.parentData; t1.toString; t4._as(t1).layoutOffset = 0; return; } t3 = earliestUsefulChild.parentData; t3.toString; t4._as(t3).layoutOffset = firstChildScrollOffset; if (_box_0.trailingChildWithLayout == null) _box_0.trailingChildWithLayout = earliestUsefulChild; } if (scrollOffset < 1e-10) while (true) { t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; if (!(t5 > 0)) break; t3 = t3.layoutOffset; t3.toString; earliestUsefulChild = _this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, true); t5 = _this.ContainerRenderObjectMixin__firstChild; t5.toString; firstChildScrollOffset = t3 - _this.paintExtentOf$1(t5); t5 = _this.ContainerRenderObjectMixin__firstChild.parentData; t5.toString; t4._as(t5).layoutOffset = 0; if (firstChildScrollOffset < -1e-10) { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -firstChildScrollOffset); return; } } if (leadingChildWithLayout == null) { earliestUsefulChild.layout$2$parentUsesSize(0, childConstraints, true); _box_0.trailingChildWithLayout = earliestUsefulChild; } _box_0.inLayoutRange = true; _box_0.child = earliestUsefulChild; t3 = earliestUsefulChild.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; _box_0.index = t5; t3 = t3.layoutOffset; t3.toString; _box_0.endScrollOffset = t3 + _this.paintExtentOf$1(earliestUsefulChild); advance = new A.RenderSliverList_performLayout_advance(_box_0, _this, childConstraints); for (leadingGarbage = 0; _box_0.endScrollOffset < scrollOffset;) { ++leadingGarbage; if (!advance.call$0()) { _this.collectGarbage$2(leadingGarbage - 1, 0); t1 = _this.ContainerRenderObjectMixin__lastChild; t2 = t1.parentData; t2.toString; t2 = t4._as(t2).layoutOffset; t2.toString; extent = t2 + _this.paintExtentOf$1(t1); _this._geometry = A.SliverGeometry$(_null, false, _null, _null, extent, 0, 0, 0, extent, _null); return; } } while (true) { if (!(_box_0.endScrollOffset < targetEndScrollOffset)) { reachedEnd = false; break; } if (!advance.call$0()) { reachedEnd = true; break; } } t3 = _box_0.child; if (t3 != null) { t3 = t3.parentData; t3.toString; t5 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t3 = _box_0.child = t5._as(t3).ContainerParentDataMixin_nextSibling; for (trailingGarbage = 0; t3 != null; t3 = child) { ++trailingGarbage; t3 = t3.parentData; t3.toString; child = t5._as(t3).ContainerParentDataMixin_nextSibling; _box_0.child = child; } } else trailingGarbage = 0; _this.collectGarbage$2(leadingGarbage, trailingGarbage); estimatedMaxScrollOffset = _box_0.endScrollOffset; if (!reachedEnd) { t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; t6 = _this.ContainerRenderObjectMixin__lastChild; t6.toString; t6 = t6.parentData; t6.toString; t6 = t4._as(t6).index; t6.toString; estimatedMaxScrollOffset = t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, t5, t6, t3.layoutOffset, estimatedMaxScrollOffset); } t3 = _this.ContainerRenderObjectMixin__firstChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; paintExtent = _this.calculatePaintOffset$3$from$to(constraints, t3, _box_0.endScrollOffset); t3 = _this.ContainerRenderObjectMixin__firstChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; cacheExtent = _this.calculateCacheOffset$3$from$to(constraints, t3, _box_0.endScrollOffset); t3 = constraints.remainingPaintExtent; t4 = _box_0.endScrollOffset; _this._geometry = A.SliverGeometry$(cacheExtent, t4 > t2 + t3 || t2 > 0, _null, _null, estimatedMaxScrollOffset, 0, paintExtent, 0, estimatedMaxScrollOffset, _null); if (estimatedMaxScrollOffset === t4) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; A.RenderSliverList_performLayout_advance.prototype = { call$0() { var t4, child, index, t5, t1 = this._box_0, t2 = t1.child, t3 = t1.trailingChildWithLayout; if (t2 == t3) t1.inLayoutRange = false; t4 = this.$this; t2 = t2.parentData; t2.toString; child = t1.child = A._instanceType(t4)._eval$1("ContainerRenderObjectMixin.1")._as(t2).ContainerParentDataMixin_nextSibling; t2 = child == null; if (t2) t1.inLayoutRange = false; index = t1.index + 1; t1.index = index; if (!t1.inLayoutRange) { if (!t2) { t2 = child.parentData; t2.toString; t2 = type$.SliverMultiBoxAdaptorParentData._as(t2).index; t2.toString; t2 = t2 !== index; } else t2 = true; t5 = this.childConstraints; if (t2) { child = t4.insertAndLayoutChild$3$after$parentUsesSize(t5, t3, true); t1.child = child; if (child == null) return false; } else child.layout$2$parentUsesSize(0, t5, true); t2 = t1.trailingChildWithLayout = t1.child; } else t2 = child; t3 = t2.parentData; t3.toString; type$.SliverMultiBoxAdaptorParentData._as(t3); t5 = t1.endScrollOffset; t3.layoutOffset = t5; t1.endScrollOffset = t5 + t4.paintExtentOf$1(t2); return true; }, $signature: 18 }; A.KeepAliveParentDataMixin.prototype = {$isParentData: 1}; A.RenderSliverWithKeepAliveMixin.prototype = { setupParentData$1(child) { } }; A.SliverMultiBoxAdaptorParentData.prototype = { toString$0(_) { var t1 = this.index, t2 = this.KeepAliveParentDataMixin_keepAlive ? "keepAlive; " : ""; return "index=" + A.S(t1) + "; " + t2 + this.super$SliverLogicalParentData$toString(0); } }; A.RenderSliverMultiBoxAdaptor.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.SliverMultiBoxAdaptorParentData)) child.parentData = new A.SliverMultiBoxAdaptorParentData(false, null, null); }, adoptChild$1(child) { var t1; this.super$RenderObject$adoptChild(child); t1 = child.parentData; t1.toString; if (!type$.SliverMultiBoxAdaptorParentData._as(t1)._keptAlive) this._childManager.didAdoptChild$1(type$.RenderBox._as(child)); }, insert$2$after(_, child, after) { this.super$ContainerRenderObjectMixin$insert(0, child, after); }, move$2$after(child, after) { var t2, _this = this, t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (!t1._keptAlive) { _this.super$ContainerRenderObjectMixin$move(child, after); _this._childManager.didAdoptChild$1(child); _this.markNeedsLayout$0(); } else { t2 = _this._keepAliveBucket; if (t2.$index(0, t1.index) == child) t2.remove$1(0, t1.index); _this._childManager.didAdoptChild$1(child); t1 = t1.index; t1.toString; t2.$indexSet(0, t1, child); } }, remove$1(_, child) { var t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (!t1._keptAlive) { this.super$ContainerRenderObjectMixin$remove(0, child); return; } this._keepAliveBucket.remove$1(0, t1.index); this.dropChild$1(child); }, _createOrObtainChild$2$after(index, after) { this.invokeLayoutCallback$1$1(new A.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure(this, index, after), type$.SliverConstraints); }, _destroyOrCacheChild$1(child) { var t2, _this = this, t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (t1.KeepAliveParentDataMixin_keepAlive) { _this.remove$1(0, child); t2 = t1.index; t2.toString; _this._keepAliveBucket.$indexSet(0, t2, child); child.parentData = t1; _this.super$RenderObject$adoptChild(child); t1._keptAlive = true; } else _this._childManager.removeChild$1(child); }, attach$1(owner) { var t1, t2; this.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$attach(owner); for (t1 = this._keepAliveBucket, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) t2.__internal$_current.attach$1(owner); }, detach$0(_) { var t1, t2; this.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$detach(0); for (t1 = this._keepAliveBucket, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) t2.__internal$_current.detach$0(0); }, redepthChildren$0() { this.super$ContainerRenderObjectMixin$redepthChildren(); var t1 = this._keepAliveBucket; t1.get$values(t1).forEach$1(0, this.get$redepthChild()); }, visitChildren$1(visitor) { var t1; this.super$ContainerRenderObjectMixin$visitChildren(visitor); t1 = this._keepAliveBucket; t1.get$values(t1).forEach$1(0, visitor); }, visitChildrenForSemantics$1(visitor) { this.super$ContainerRenderObjectMixin$visitChildren(visitor); }, addInitialChild$2$index$layoutOffset(index, layoutOffset) { var t1; this._createOrObtainChild$2$after(index, null); t1 = this.ContainerRenderObjectMixin__firstChild; if (t1 != null) { t1 = t1.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset = layoutOffset; return true; } this._childManager._didUnderflow = true; return false; }, addInitialChild$0() { return this.addInitialChild$2$index$layoutOffset(0, 0); }, insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, parentUsesSize) { var t2, index, t3, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t1 = t1.parentData; t1.toString; t2 = type$.SliverMultiBoxAdaptorParentData; t1 = t2._as(t1).index; t1.toString; index = t1 - 1; _this._createOrObtainChild$2$after(index, null); t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t3 = t1.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; if (t3 === index) { t1.layout$2$parentUsesSize(0, childConstraints, parentUsesSize); return _this.ContainerRenderObjectMixin__firstChild; } _this._childManager._didUnderflow = true; return null; }, insertAndLayoutLeadingChild$1(childConstraints) { return this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, false); }, insertAndLayoutChild$3$after$parentUsesSize(childConstraints, after, parentUsesSize) { var t2, index, child, t1 = after.parentData; t1.toString; t2 = type$.SliverMultiBoxAdaptorParentData; t1 = t2._as(t1).index; t1.toString; index = t1 + 1; this._createOrObtainChild$2$after(index, after); t1 = after.parentData; t1.toString; child = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_nextSibling; if (child != null) { t1 = child.parentData; t1.toString; t1 = t2._as(t1).index; t1.toString; t1 = t1 === index; } else t1 = false; if (t1) { child.layout$2$parentUsesSize(0, childConstraints, parentUsesSize); return child; } this._childManager._didUnderflow = true; return null; }, insertAndLayoutChild$2$after(childConstraints, after) { return this.insertAndLayoutChild$3$after$parentUsesSize(childConstraints, after, false); }, collectGarbage$2(leadingGarbage, trailingGarbage) { var t1 = {}; t1.leadingGarbage = leadingGarbage; t1.trailingGarbage = trailingGarbage; this.invokeLayoutCallback$1$1(new A.RenderSliverMultiBoxAdaptor_collectGarbage_closure(t1, this), type$.SliverConstraints); }, paintExtentOf$1(child) { switch (A.axisDirectionToAxis(type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(this)).axisDirection).index) { case 0: return child._box$_size._dx; case 1: return child._box$_size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) { var t1, t2, child = this.ContainerRenderObjectMixin__lastChild, boxResult = A.BoxHitTestResult$wrap(result); for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { if (this.hitTestBoxChild$4$crossAxisPosition$mainAxisPosition(boxResult, child, crossAxisPosition, mainAxisPosition)) return true; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; } return false; }, childMainAxisPosition$1(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset; t1.toString; return t1 - type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(this)).scrollOffset; }, childScrollOffset$1(child) { var t1 = child.parentData; t1.toString; return type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset; }, applyPaintTransform$2(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).index; if (t1 == null) transform.setZero$0(); else if (this._keepAliveBucket.containsKey$1(0, t1)) transform.setZero$0(); else this.applyPaintTransformForBoxChild$2(child, transform); }, paint$2(context, offset) { var t1, originOffset, mainAxisUnit, crossAxisUnit, addExtent, child, t2, t3, t4, t5, t6, t7, t8, t9, t10, mainAxisDelta, crossAxisDelta, t11, childOffset, t12, _this = this; if (_this.ContainerRenderObjectMixin__firstChild == null) return; t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: originOffset = offset.$add(0, new A.Offset(0, _this._geometry.paintExtent)); mainAxisUnit = B.Offset_0_m1; crossAxisUnit = B.Offset_1_0; addExtent = true; break; case 1: originOffset = offset; mainAxisUnit = B.Offset_1_0; crossAxisUnit = B.Offset_0_1; addExtent = false; break; case 2: originOffset = offset; mainAxisUnit = B.Offset_0_1; crossAxisUnit = B.Offset_1_0; addExtent = false; break; case 3: originOffset = offset.$add(0, new A.Offset(_this._geometry.paintExtent, 0)); mainAxisUnit = B.Offset_m1_0; crossAxisUnit = B.Offset_0_1; addExtent = true; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t3 = type$.SliverMultiBoxAdaptorParentData, t4 = originOffset._dx, t5 = mainAxisUnit._dx, t6 = crossAxisUnit._dx, t7 = originOffset._dy, t8 = mainAxisUnit._dy, t9 = crossAxisUnit._dy; child != null;) { t10 = child.parentData; t10.toString; t10 = t3._as(t10).layoutOffset; t10.toString; mainAxisDelta = t10 - t1._as(A.RenderObject.prototype.get$constraints.call(_this)).scrollOffset; crossAxisDelta = _this.childCrossAxisPosition$1(child); t10 = t4 + t5 * mainAxisDelta + t6 * crossAxisDelta; t11 = t7 + t8 * mainAxisDelta + t9 * crossAxisDelta; childOffset = new A.Offset(t10, t11); if (addExtent) { t12 = _this.paintExtentOf$1(child); childOffset = new A.Offset(t10 + t5 * t12, t11 + t8 * t12); } if (mainAxisDelta < t1._as(A.RenderObject.prototype.get$constraints.call(_this)).remainingPaintExtent && mainAxisDelta + _this.paintExtentOf$1(child) > 0) context.paintChild$2(child, childOffset); t10 = child.parentData; t10.toString; child = t2._as(t10).ContainerParentDataMixin_nextSibling; } }, debugDescribeChildren$0() { var t1, t2, indices, _i, index, t3, _s17_ = "child with index ", children = A._setArrayType([], type$.JSArray_DiagnosticsNode), child = this.ContainerRenderObjectMixin__firstChild; if (child != null) for (t1 = type$.SliverMultiBoxAdaptorParentData; true;) { t2 = child.parentData; t2.toString; t1._as(t2); children.push(new A.DiagnosticableTreeNode(child, _s17_ + A.S(t2.index), true, true, null, null)); if (child == this.ContainerRenderObjectMixin__lastChild) break; child = t2.ContainerParentDataMixin_nextSibling; } t1 = this._keepAliveBucket; if (t1._length !== 0) { t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); indices = A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$0(indices); for (t2 = indices.length, _i = 0; _i < indices.length; indices.length === t2 || (0, A.throwConcurrentModificationError)(indices), ++_i) { index = indices[_i]; t3 = t1.$index(0, index); t3.toString; children.push(new A.DiagnosticableTreeNode(t3, _s17_ + A.S(index) + " (kept alive but not laid out)", true, true, null, B.DiagnosticsTreeStyle_2)); } } return children; } }; A.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure.prototype = { call$1(constraints) { var t1 = this.$this, t2 = t1._keepAliveBucket, t3 = this.index, t4 = this.after; if (t2.containsKey$1(0, t3)) { t2 = t2.remove$1(0, t3); t2.toString; t3 = t2.parentData; t3.toString; type$.SliverMultiBoxAdaptorParentData._as(t3); t1.dropChild$1(t2); t2.parentData = t3; t1.super$ContainerRenderObjectMixin$insert(0, t2, t4); t3._keptAlive = false; } else t1._childManager.createChild$2$after(t3, t4); }, $signature: 418 }; A.RenderSliverMultiBoxAdaptor_collectGarbage_closure.prototype = { call$1(constraints) { var t1, t2, t3; for (t1 = this._box_0, t2 = this.$this; t1.leadingGarbage > 0;) { t3 = t2.ContainerRenderObjectMixin__firstChild; t3.toString; t2._destroyOrCacheChild$1(t3); --t1.leadingGarbage; } for (; t1.trailingGarbage > 0;) { t3 = t2.ContainerRenderObjectMixin__lastChild; t3.toString; t2._destroyOrCacheChild$1(t3); --t1.trailingGarbage; } t1 = t2._keepAliveBucket; t1 = t1.get$values(t1); t3 = A._instanceType(t1)._eval$1("WhereIterable"); B.JSArray_methods.forEach$1(A.List_List$of(new A.WhereIterable(t1, new A.RenderSliverMultiBoxAdaptor_collectGarbage__closure(), t3), true, t3._eval$1("Iterable.E")), t2._childManager.get$removeChild()); }, $signature: 418 }; A.RenderSliverMultiBoxAdaptor_collectGarbage__closure.prototype = { call$1(child) { var t1 = child.parentData; t1.toString; return !type$.SliverMultiBoxAdaptorParentData._as(t1).KeepAliveParentDataMixin_keepAlive; }, $signature: 805 }; A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.SliverMultiBoxAdaptorParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.SliverMultiBoxAdaptorParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers.prototype = {}; A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin.prototype = {}; A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin.prototype = { detach$0(_) { this.super$ParentData$detach(0); } }; A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin.prototype = {}; A.RenderSliverEdgeInsetsPadding.prototype = { get$beforePadding() { var _this = this, t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: return _this.get$resolvedPadding().bottom; case 1: return _this.get$resolvedPadding().left; case 2: return _this.get$resolvedPadding().top; case 3: return _this.get$resolvedPadding().right; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$afterPadding() { var _this = this, t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: return _this.get$resolvedPadding().top; case 1: return _this.get$resolvedPadding().right; case 2: return _this.get$resolvedPadding().bottom; case 3: return _this.get$resolvedPadding().left; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$crossAxisPadding() { switch (A.axisDirectionToAxis(type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(this)).axisDirection).index) { case 0: var t1 = this.get$resolvedPadding(); return t1.get$_top(t1) + t1.get$_bottom(t1); case 1: return this.get$resolvedPadding().get$horizontal(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, setupParentData$1(child) { if (!(child.parentData instanceof A.SliverPhysicalParentData)) child.parentData = new A.SliverPhysicalParentData(B.Offset_0_0); }, performLayout$0() { var t2, mainAxisPadding, crossAxisPadding, beforePaddingPaintExtent, overlap, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, childLayoutGeometry, afterPaddingPaintExtent, mainAxisPaddingPaintExtent, beforePaddingCacheExtent, afterPaddingCacheExtent, paintExtent, _this = this, _null = null, t1 = type$.SliverConstraints, constraints = t1._as(A.RenderObject.prototype.get$constraints.call(_this)), beforePadding = _this.get$beforePadding(); _this.get$afterPadding(); t2 = _this.get$resolvedPadding(); t2.toString; mainAxisPadding = t2.along$1(A.axisDirectionToAxis(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection)); crossAxisPadding = _this.get$crossAxisPadding(); if (_this.RenderObjectWithChildMixin__child == null) { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, mainAxisPadding, 0, Math.min(mainAxisPadding, constraints.remainingPaintExtent), 0, mainAxisPadding, _null); return; } beforePaddingPaintExtent = _this.calculatePaintOffset$3$from$to(constraints, 0, beforePadding); overlap = constraints.overlap; if (overlap > 0) overlap = Math.max(0, overlap - beforePaddingPaintExtent); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; t2 = Math.max(0, constraints.scrollOffset - beforePadding); t3 = Math.min(0, constraints.cacheOrigin + beforePadding); t4 = constraints.remainingPaintExtent; t5 = _this.calculatePaintOffset$3$from$to(constraints, 0, beforePadding); t6 = constraints.remainingCacheExtent; t7 = _this.calculateCacheOffset$3$from$to(constraints, 0, beforePadding); t8 = Math.max(0, constraints.crossAxisExtent - crossAxisPadding); t9 = constraints.precedingScrollExtent; t10 = constraints.axisDirection; t11 = constraints.growthDirection; t12 = constraints.userScrollDirection; t13 = constraints.crossAxisDirection; t14 = constraints.viewportMainAxisExtent; t1.layout$2$parentUsesSize(0, new A.SliverConstraints(t10, t11, t12, t2, beforePadding + t9, overlap, t4 - t5, t8, t13, t14, t3, t6 - t7), true); childLayoutGeometry = _this.RenderObjectWithChildMixin__child._geometry; t1 = childLayoutGeometry.scrollOffsetCorrection; if (t1 != null) { _this._geometry = A.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, t1); return; } t1 = childLayoutGeometry.scrollExtent; t2 = beforePadding + t1; t3 = mainAxisPadding + t1; afterPaddingPaintExtent = _this.calculatePaintOffset$3$from$to(constraints, t2, t3); mainAxisPaddingPaintExtent = beforePaddingPaintExtent + afterPaddingPaintExtent; beforePaddingCacheExtent = _this.calculateCacheOffset$3$from$to(constraints, 0, beforePadding); afterPaddingCacheExtent = _this.calculateCacheOffset$3$from$to(constraints, t2, t3); t2 = childLayoutGeometry.paintExtent; t5 = childLayoutGeometry.layoutExtent; paintExtent = Math.min(beforePaddingPaintExtent + Math.max(t2, t5 + afterPaddingPaintExtent), t4); t4 = childLayoutGeometry.paintOrigin; t5 = Math.min(mainAxisPaddingPaintExtent + t5, paintExtent); t6 = Math.min(afterPaddingCacheExtent + beforePaddingCacheExtent + childLayoutGeometry.cacheExtent, t6); t7 = childLayoutGeometry.maxPaintExtent; t2 = Math.max(mainAxisPaddingPaintExtent + t2, beforePaddingPaintExtent + childLayoutGeometry.hitTestExtent); _this._geometry = A.SliverGeometry$(t6, childLayoutGeometry.hasVisualOverflow, t2, t5, mainAxisPadding + t7, 0, paintExtent, t4, t3, _null); t3 = _this.RenderObjectWithChildMixin__child.parentData; t3.toString; type$.SliverPhysicalParentData._as(t3); switch (A.applyGrowthDirectionToAxisDirection(t10, t11).index) { case 0: t3.paintOffset = new A.Offset(_this.get$resolvedPadding().left, _this.calculatePaintOffset$3$from$to(constraints, _this.get$resolvedPadding().bottom + t1, _this.get$resolvedPadding().bottom + t1 + _this.get$resolvedPadding().top)); break; case 1: t3.paintOffset = new A.Offset(_this.calculatePaintOffset$3$from$to(constraints, 0, _this.get$resolvedPadding().left), _this.get$resolvedPadding().top); break; case 2: t3.paintOffset = new A.Offset(_this.get$resolvedPadding().left, _this.calculatePaintOffset$3$from$to(constraints, 0, _this.get$resolvedPadding().top)); break; case 3: t3.paintOffset = new A.Offset(_this.calculatePaintOffset$3$from$to(constraints, _this.get$resolvedPadding().right + t1, _this.get$resolvedPadding().right + t1 + _this.get$resolvedPadding().left), _this.get$resolvedPadding().top); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) { var t2, t3, t4, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null && t1._geometry.hitTestExtent > 0) { t1 = t1.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1); t2 = _this.calculatePaintOffset$3$from$to(type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), 0, _this.get$beforePadding()); t3 = _this.RenderObjectWithChildMixin__child; t3.toString; t3 = _this.childCrossAxisPosition$1(t3); t1 = t1.paintOffset; t4 = _this.RenderObjectWithChildMixin__child.get$hitTest(); result._localTransforms.push(new A._OffsetTransformPart(new A.Offset(-t1._dx, -t1._dy))); t4.call$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition - t3, mainAxisPosition - t2); result.popTransform$0(); } return false; }, childCrossAxisPosition$1(child) { var _this = this, t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: case 2: return _this.get$resolvedPadding().left; case 3: case 1: return _this.get$resolvedPadding().top; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, childScrollOffset$1(child) { return this.get$beforePadding(); }, applyPaintTransform$2(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverPhysicalParentData._as(t1).paintOffset; transform.translate$2(0, t1._dx, t1._dy); }, paint$2(context, offset) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null && t1._geometry.visible) { t2 = t1.parentData; t2.toString; context.paintChild$2(t1, offset.$add(0, type$.SliverPhysicalParentData._as(t2).paintOffset)); } } }; A.RenderSliverPadding.prototype = { get$resolvedPadding() { return this._sliver_padding$_resolvedPadding; }, _sliver_padding$_resolve$0() { if (this._sliver_padding$_resolvedPadding != null) return; var t1 = this._sliver_padding$_padding; t1.toString; this._sliver_padding$_resolvedPadding = t1; }, set$padding(_, value) { var _this = this; if (J.$eq$(_this._sliver_padding$_padding, value)) return; _this._sliver_padding$_padding = value; _this._sliver_padding$_resolvedPadding = null; _this.markNeedsLayout$0(); }, set$textDirection(_, value) { var _this = this; if (_this._sliver_padding$_textDirection == value) return; _this._sliver_padding$_textDirection = value; _this._sliver_padding$_resolvedPadding = null; _this.markNeedsLayout$0(); }, performLayout$0() { this._sliver_padding$_resolve$0(); this.super$RenderSliverEdgeInsetsPadding$performLayout(); } }; A._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.PersistentHeaderShowOnScreenConfiguration.prototype = {}; A.RenderSliverPersistentHeader.prototype = { get$childExtent() { var _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; switch (A.axisDirectionToAxis(type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection).index) { case 1: return _this.RenderObjectWithChildMixin__child._box$_size._dy; case 0: return _this.RenderObjectWithChildMixin__child._box$_size._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, updateChild$2(shrinkOffset, overlapsContent) { }, markNeedsLayout$0() { this._needsUpdateChild = true; this.super$RenderObject$markNeedsLayout(); }, layoutChild$3$overlapsContent(scrollOffset, maxExtent, overlapsContent) { var stretchOffset, t1, _this = this, shrinkOffset = Math.min(A.checkNum(scrollOffset), maxExtent); if (_this._needsUpdateChild || _this._lastShrinkOffset !== shrinkOffset || _this._lastOverlapsContent !== overlapsContent) { _this.invokeLayoutCallback$1$1(new A.RenderSliverPersistentHeader_layoutChild_closure(_this, shrinkOffset, overlapsContent), type$.SliverConstraints); _this._lastShrinkOffset = shrinkOffset; _this._lastOverlapsContent = overlapsContent; _this._needsUpdateChild = false; } stretchOffset = _this.stretchConfiguration != null && type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)).scrollOffset === 0 ? 0 + Math.abs(type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)).overlap) : 0; t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$2$parentUsesSize(0, type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)).asBoxConstraints$1$maxExtent(Math.max(_this.get$minExtent(), maxExtent - shrinkOffset) + stretchOffset), true); _this.stretchConfiguration != null; _this.__RenderSliverPersistentHeader__lastStretchOffset = stretchOffset; }, childMainAxisPosition$1(child) { return this.super$RenderSliver$childMainAxisPosition(child); }, hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return this.hitTestBoxChild$4$crossAxisPosition$mainAxisPosition(A.BoxHitTestResult$wrap(result), t1, crossAxisPosition, mainAxisPosition); return false; }, applyPaintTransform$2(child, transform) { this.applyPaintTransformForBoxChild$2(type$.RenderBox._as(child), transform); }, paint$2(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null && _this._geometry.visible) { t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: t1 = _this._geometry.paintExtent; t2 = _this.RenderObjectWithChildMixin__child; t2.toString; offset = offset.$add(0, new A.Offset(0, t1 - _this.childMainAxisPosition$1(t2) - _this.get$childExtent())); break; case 2: t1 = _this.RenderObjectWithChildMixin__child; t1.toString; offset = offset.$add(0, new A.Offset(0, _this.childMainAxisPosition$1(t1))); break; case 3: t1 = _this._geometry.paintExtent; t2 = _this.RenderObjectWithChildMixin__child; t2.toString; offset = offset.$add(0, new A.Offset(t1 - _this.childMainAxisPosition$1(t2) - _this.get$childExtent(), 0)); break; case 1: t1 = _this.RenderObjectWithChildMixin__child; t1.toString; offset = offset.$add(0, new A.Offset(_this.childMainAxisPosition$1(t1), 0)); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this.RenderObjectWithChildMixin__child; t1.toString; context.paintChild$2(t1, offset); } }, describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.addTagForChildren$1(B.SemanticsTag_bQQ); } }; A.RenderSliverPersistentHeader_layoutChild_closure.prototype = { call$1(constraints) { this.$this.updateChild$2(this.shrinkOffset, this.overlapsContent); }, $signature: 418 }; A.RenderSliverPinnedPersistentHeader.prototype = { performLayout$0() { var t2, maxExtent, t3, effectiveRemainingPaintExtent, layoutExtent, stretchOffset, t4, _this = this, constraints = type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._RenderSliverPersistentHeaderForWidgetsMixin__element._widget; t1.toString; t2 = type$._SliverPersistentHeaderRenderObjectWidget; maxExtent = t2._as(t1).delegate.get$maxExtent(); t1 = constraints.overlap; t3 = constraints.scrollOffset; _this.layoutChild$3$overlapsContent(t3, maxExtent, t1 > 0); effectiveRemainingPaintExtent = Math.max(0, constraints.remainingPaintExtent - t1); layoutExtent = B.JSNumber_methods.clamp$2(maxExtent - t3, 0, effectiveRemainingPaintExtent); stretchOffset = _this.stretchConfiguration != null ? Math.abs(t1) : 0; t3 = Math.min(A.checkNum(_this.get$childExtent()), effectiveRemainingPaintExtent); t4 = _this._RenderSliverPersistentHeaderForWidgetsMixin__element._widget; t4.toString; t2._as(t4); t2 = layoutExtent > 0 ? -constraints.cacheOrigin + layoutExtent : layoutExtent; _this._geometry = A.SliverGeometry$(t2, true, null, layoutExtent, maxExtent + stretchOffset, t4.delegate.collapsedHeight, t3, t1, maxExtent, null); }, childMainAxisPosition$1(child) { return 0; }, showOnScreen$4$curve$descendant$duration$rect(curve, descendant, duration, rect) { var t1, localBounds, newRect, _this = this; if (descendant != null) { t1 = descendant.getTransformTo$1(0, _this); localBounds = A.MatrixUtils_transformRect(t1, rect == null ? descendant.get$paintBounds() : rect); } else localBounds = rect; t1 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(_this)).growthDirection).index) { case 0: newRect = A._trim(localBounds, _this.get$childExtent(), -1 / 0, 1 / 0, -1 / 0); break; case 1: newRect = A._trim(localBounds, 1 / 0, 0, 1 / 0, -1 / 0); break; case 2: newRect = A._trim(localBounds, 1 / 0, -1 / 0, 1 / 0, 0); break; case 3: newRect = A._trim(localBounds, 1 / 0, -1 / 0, _this.get$childExtent(), -1 / 0); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this.super$RenderObject$showOnScreen(curve, _this, duration, newRect); }, showOnScreen$0() { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, null); }, showOnScreen$1$rect(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, rect); }, showOnScreen$3$curve$duration$rect(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, showOnScreen$2$descendant$rect(descendant, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, descendant, B.Duration_0, rect); } }; A.RenderSliverFloatingPersistentHeader__updateAnimation_closure.prototype = { call$0() { var _s10_ = "_animation", t1 = this.$this, t2 = t1._effectiveScrollOffset, t3 = A._lateReadCheck(t1.__RenderSliverFloatingPersistentHeader__animation, _s10_), t4 = t3._evaluatable; t3 = t3.parent; t3 = t4.transform$1(0, t3.get$value(t3)); if (t2 == null ? t3 == null : t2 === t3) return; t2 = A._lateReadCheck(t1.__RenderSliverFloatingPersistentHeader__animation, _s10_); t3 = t2._evaluatable; t2 = t2.parent; t1._effectiveScrollOffset = t3.transform$1(0, t2.get$value(t2)); t1._needsUpdateChild = true; t1.super$RenderObject$markNeedsLayout(); }, $signature: 0 }; A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers.prototype = {}; A.RelativeRect.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof A.RelativeRect && other.left == _this.left && other.top == _this.top && other.right === _this.right && other.bottom === _this.bottom; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.left, _this.top, _this.right, _this.bottom, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this; return "RelativeRect.fromLTRB(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + B.JSNumber_methods.toStringAsFixed$1(_this.right, 1) + ", " + B.JSNumber_methods.toStringAsFixed$1(_this.bottom, 1) + ")"; } }; A.StackParentData.prototype = { get$isPositioned() { var _this = this; return _this.top != null || _this.right != null || _this.bottom != null || _this.left != null || _this.width != null || _this.height != null; }, toString$0(_) { var _this = this, t1 = A._setArrayType([], type$.JSArray_String), t2 = _this.top; if (t2 != null) t1.push("top=" + A.debugFormatDouble(t2)); t2 = _this.right; if (t2 != null) t1.push("right=" + A.debugFormatDouble(t2)); t2 = _this.bottom; if (t2 != null) t1.push("bottom=" + A.debugFormatDouble(t2)); t2 = _this.left; if (t2 != null) t1.push("left=" + A.debugFormatDouble(t2)); t2 = _this.width; if (t2 != null) t1.push("width=" + A.debugFormatDouble(t2)); t2 = _this.height; if (t2 != null) t1.push("height=" + A.debugFormatDouble(t2)); if (t1.length === 0) t1.push("not positioned"); t1.push(_this.super$BoxParentData$toString(0)); return B.JSArray_methods.join$1(t1, "; "); } }; A.StackFit.prototype = { toString$0(_) { return "StackFit." + this._core$_name; } }; A.RenderStack.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.StackParentData)) child.parentData = new A.StackParentData(null, null, B.Offset_0_0); }, _stack$_resolve$0() { var _this = this; if (_this._resolvedAlignment != null) return; _this._resolvedAlignment = _this._alignment.resolve$1(0, _this._stack$_textDirection); }, set$alignment(value) { var _this = this; if (_this._alignment.$eq(0, value)) return; _this._alignment = value; _this._resolvedAlignment = null; _this.markNeedsLayout$0(); }, set$textDirection(_, value) { var _this = this; if (_this._stack$_textDirection == value) return; _this._stack$_textDirection = value; _this._resolvedAlignment = null; _this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1(height) { return A.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new A.RenderStack_computeMinIntrinsicWidth_closure(height)); }, computeMaxIntrinsicWidth$1(height) { return A.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new A.RenderStack_computeMaxIntrinsicWidth_closure(height)); }, computeMinIntrinsicHeight$1(width) { return A.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new A.RenderStack_computeMinIntrinsicHeight_closure(width)); }, computeMaxIntrinsicHeight$1(width) { return A.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new A.RenderStack_computeMaxIntrinsicHeight_closure(width)); }, computeDistanceToActualBaseline$1(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, computeDryLayout$1(constraints) { return this._stack$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, _stack$_computeSize$2$constraints$layoutChild(constraints, layoutChild) { var width, height, nonPositionedConstraints, child, t1, height0, width0, hasNonPositionedChildren, t2, childSize, t3, _this = this; _this._stack$_resolve$0(); if (_this.ContainerRenderObjectMixin__childCount === 0) return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); width = constraints.minWidth; height = constraints.minHeight; switch (_this._fit.index) { case 0: nonPositionedConstraints = new A.BoxConstraints(0, constraints.maxWidth, 0, constraints.maxHeight); break; case 1: nonPositionedConstraints = A.BoxConstraints$tight(new A.Size(B.JSInt_methods.clamp$2(1 / 0, width, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, height, constraints.maxHeight))); break; case 2: nonPositionedConstraints = constraints; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData, height0 = height, width0 = width, hasNonPositionedChildren = false; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (!t2.get$isPositioned()) { childSize = layoutChild.call$2(child, nonPositionedConstraints); t3 = childSize._dx; width0 = Math.max(A.checkNum(width0), A.checkNum(t3)); t3 = childSize._dy; height0 = Math.max(A.checkNum(height0), A.checkNum(t3)); hasNonPositionedChildren = true; } child = t2.ContainerParentDataMixin_nextSibling; } return hasNonPositionedChildren ? new A.Size(width0, height0) : new A.Size(B.JSInt_methods.clamp$2(1 / 0, width, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, height, constraints.maxHeight)); }, performLayout$0() { var child, t1, t2, t3, t4, t5, t6, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._stack$_hasVisualOverflow = false; _this._box$_size = _this._stack$_computeSize$2$constraints$layoutChild(constraints, A.layout_helper_ChildLayoutHelper_layoutChild$closure()); child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData, t2 = type$.Offset; child != null;) { t3 = child.parentData; t3.toString; t1._as(t3); if (!t3.get$isPositioned()) { t4 = _this._resolvedAlignment; t4.toString; t5 = _this._box$_size; t5.toString; t6 = child._box$_size; t6.toString; t3.offset = t4.alongOffset$1(t2._as(t5.$sub(0, t6))); } else { t4 = _this._box$_size; t4.toString; t5 = _this._resolvedAlignment; t5.toString; _this._stack$_hasVisualOverflow = A.RenderStack_layoutPositionedChild(child, t3, t4, t5) || _this._stack$_hasVisualOverflow; } child = t3.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paintStack$2(context, offset) { this.defaultPaint$2(context, offset); }, paint$2(context, offset) { var t3, _this = this, t1 = _this._clipBehavior !== B.Clip_0 && _this._stack$_hasVisualOverflow, t2 = _this._stack$_clipRectLayer; if (t1) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$paintStack(), _this._clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this.paintStack$2(context, offset); } }, dispose$0(_) { this._stack$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); }, describeApproximatePaintClip$1(child) { var t1; if (this._stack$_hasVisualOverflow) { t1 = this._box$_size; t1 = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; } }; A.RenderStack_computeMinIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 92 }; A.RenderStack_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 92 }; A.RenderStack_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 92 }; A.RenderStack_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 92 }; A.RenderIndexedStack.prototype = { visitChildrenForSemantics$1(visitor) { if (this._stack$_index != null && this.ContainerRenderObjectMixin__firstChild != null) visitor.call$1(this._childAtIndex$0()); }, _childAtIndex$0() { var t3, child = this.ContainerRenderObjectMixin__firstChild, t1 = type$.StackParentData, t2 = this._stack$_index, i = 0; while (true) { if (child != null) { t2.toString; t3 = i < t2; } else t3 = false; if (!t3) break; t3 = child.parentData; t3.toString; child = t1._as(t3).ContainerParentDataMixin_nextSibling; ++i; } child.toString; return child; }, hitTestChildren$2$position(result, position) { var child, t1; if (this.ContainerRenderObjectMixin__firstChild == null || this._stack$_index == null) return false; child = this._childAtIndex$0(); t1 = child.parentData; t1.toString; type$.StackParentData._as(t1); return result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderIndexedStack_hitTestChildren_closure(position, t1, child), t1.offset, position); }, paintStack$2(context, offset) { var child, t1; if (this.ContainerRenderObjectMixin__firstChild == null || this._stack$_index == null) return; child = this._childAtIndex$0(); t1 = child.parentData; t1.toString; context.paintChild$2(child, type$.StackParentData._as(t1).offset.$add(0, offset)); }, debugDescribeChildren$0() { var t1, i, i0, t2, children = A._setArrayType([], type$.JSArray_DiagnosticsNode), child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData, i = 0; child != null; i = i0) { i0 = i + 1; t2 = this._stack$_index; t2.toString; t2 = i !== t2 ? B.DiagnosticsTreeStyle_2 : null; children.push(new A.DiagnosticableTreeNode(child, "child " + i0, true, true, null, t2)); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return children; } }; A.RenderIndexedStack_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A._RenderStack_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.TableCellParentData.prototype = { toString$0(_) { var t1 = this.super$BoxParentData$toString(0), t2 = this.verticalAlignment; t2 = t2 == null ? "default vertical alignment" : t2.toString$0(0); return t1 + "; " + t2; } }; A.TableColumnWidth.prototype = { flex$1(_, cells) { return null; }, toString$0(_) { return "TableColumnWidth"; } }; A.IntrinsicColumnWidth.prototype = { minIntrinsicWidth$2(cells, containerWidth) { var t1, result, t2; for (t1 = new A._SyncStarIterator(cells._outerHelper(), cells.$ti._eval$1("_SyncStarIterator<1>")), result = 0; t1.moveNext$0();) { t2 = t1.get$current(t1); result = Math.max(result, A.checkNum(t2._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, t2.get$computeMinIntrinsicWidth()))); } return result; }, maxIntrinsicWidth$2(cells, containerWidth) { var t1, result, t2; for (t1 = new A._SyncStarIterator(cells._outerHelper(), cells.$ti._eval$1("_SyncStarIterator<1>")), result = 0; t1.moveNext$0();) { t2 = t1.get$current(t1); result = Math.max(result, A.checkNum(t2._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, t2.get$computeMaxIntrinsicWidth()))); } return result; }, flex$1(_, cells) { return this._flex; }, toString$0(_) { var t1 = this._flex; return "IntrinsicColumnWidth(flex: " + A.S(t1 == null ? null : B.JSInt_methods.toStringAsFixed$1(t1, 1)) + ")"; } }; A.FixedColumnWidth.prototype = { minIntrinsicWidth$2(cells, containerWidth) { return this.value; }, maxIntrinsicWidth$2(cells, containerWidth) { return this.value; }, toString$0(_) { return "FixedColumnWidth(" + A.debugFormatDouble(this.value) + ")"; }, get$value(receiver) { return this.value; } }; A.FlexColumnWidth.prototype = { minIntrinsicWidth$2(cells, containerWidth) { return 0; }, maxIntrinsicWidth$2(cells, containerWidth) { return 0; }, flex$1(_, cells) { return this.value; }, toString$0(_) { return "FlexColumnWidth(" + A.debugFormatDouble(this.value) + ")"; }, get$value(receiver) { return this.value; } }; A.TableCellVerticalAlignment.prototype = { toString$0(_) { return "TableCellVerticalAlignment." + this._core$_name; } }; A.RenderTable.prototype = { set$columnWidths(value) { var t1 = this._columnWidths; if (t1 === value) return; if (t1.get$isEmpty(t1) && value == null) return; this._columnWidths = value == null ? A.HashMap_HashMap(null, null, null, type$.int, type$.TableColumnWidth) : value; this.markNeedsLayout$0(); }, set$defaultColumnWidth(value) { if (this._defaultColumnWidth === value) return; this._defaultColumnWidth = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { if (this._table$_textDirection == value) return; this._table$_textDirection = value; this.markNeedsLayout$0(); }, set$border(_, value) { return; }, set$rowDecorations(value) { var t2, _i, painter, _this = this, t1 = _this._table$_rowDecorations; if (t1 == null ? value == null : t1 === value) return; _this._table$_rowDecorations = value; t1 = _this._rowDecorationPainters; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t2; ++_i) { painter = t1[_i]; if (painter != null) painter.dispose$0(0); } t1 = _this._table$_rowDecorations; _this._rowDecorationPainters = t1 != null ? A.List_List$filled(t1.length, null, false, type$.nullable_BoxPainter) : null; }, set$configuration(value) { if (value.$eq(0, this._table$_configuration)) return; this._table$_configuration = value; this.markNeedsPaint$0(); }, set$defaultVerticalAlignment(value) { if (this._defaultVerticalAlignment === value) return; this._defaultVerticalAlignment = value; this.markNeedsLayout$0(); }, set$textBaseline(_, value) { return; }, setupParentData$1(child) { if (!(child.parentData instanceof A.TableCellParentData)) child.parentData = new A.TableCellParentData(B.Offset_0_0); }, setFlatChildren$2(columns, cells) { var t2, _i, oldChild, lostChildren, y, x, xyOld, xyNew, t3, _this = this, t1 = _this._table$_children; if (cells === t1 && columns == _this._table$_columns) return; if (columns === 0 || cells.length === 0) { _this._table$_columns = columns; t2 = t1.length; if (t2 === 0) return; for (_i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { oldChild = t1[_i]; if (oldChild != null) _this.dropChild$1(oldChild); } _this._rows = 0; B.JSArray_methods.set$length(_this._table$_children, 0); _this.markNeedsLayout$0(); return; } lostChildren = A.HashSet_HashSet(type$.RenderBox); for (y = 0; y < _this._rows; ++y) for (x = 0; t1 = _this._table$_columns, x < t1; ++x) { xyOld = x + y * t1; xyNew = x + y * columns; t1 = _this._table$_children[xyOld]; if (t1 != null) t1 = x >= columns || xyNew >= cells.length || !J.$eq$(t1, cells[xyNew]); else t1 = false; if (t1) { t1 = _this._table$_children[xyOld]; t1.toString; lostChildren.add$1(0, t1); } } for (y = 0; t1 = y * columns, t1 < cells.length;) { for (x = 0; x < columns; ++x) { xyNew = x + t1; t2 = _this._table$_columns; t3 = cells[xyNew]; if (t3 != null) t2 = x >= t2 || y >= _this._rows || !J.$eq$(_this._table$_children[x + y * t2], t3); else t2 = false; if (t2) if (!lostChildren.remove$1(0, cells[xyNew])) { t2 = cells[xyNew]; t2.toString; _this.setupParentData$1(t2); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); _this.super$AbstractNode$adoptChild(t2); } } ++y; } lostChildren.forEach$1(0, _this.get$dropChild()); _this._table$_columns = columns; _this._rows = B.JSInt_methods.$tdiv(cells.length, columns); _this._table$_children = A.List_List$of(cells, true, type$.nullable_RenderBox); _this.markNeedsLayout$0(); }, setChild$3(x, y, value) { var _this = this, xy = x + y * _this._table$_columns, oldChild = _this._table$_children[xy]; if (oldChild == value) return; if (oldChild != null) _this.dropChild$1(oldChild); B.JSArray_methods.$indexSet(_this._table$_children, xy, value); if (value != null) _this.adoptChild$1(value); }, attach$1(owner) { var t1, t2, _i, child; this.super$RenderObject$attach(owner); for (t1 = this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.attach$1(owner); } }, detach$0(_) { var t1, t2, _i, painter, child, _this = this; _this.super$AbstractNode$detach(0); t1 = _this._rowDecorationPainters; if (t1 != null) { for (t2 = t1.length, _i = 0; _i < t2; ++_i) { painter = t1[_i]; if (painter != null) painter.dispose$0(0); } _this._rowDecorationPainters = A.List_List$filled(_this._table$_rowDecorations.length, null, false, type$.nullable_BoxPainter); } for (t1 = _this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) J.detach$0$z(child); } }, visitChildren$1(visitor) { var t1, t2, _i, child; for (t1 = this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) visitor.call$1(child); } }, computeMinIntrinsicWidth$1(height) { var totalMinWidth, x, columnWidth, _this = this; for (totalMinWidth = 0, x = 0; x < _this._table$_columns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; totalMinWidth += columnWidth.minIntrinsicWidth$2(_this.column$1(x), 1 / 0); } return totalMinWidth; }, computeMaxIntrinsicWidth$1(height) { var totalMaxWidth, x, columnWidth, _this = this; for (totalMaxWidth = 0, x = 0; x < _this._table$_columns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; totalMaxWidth += columnWidth.maxIntrinsicWidth$2(_this.column$1(x), 1 / 0); } return totalMaxWidth; }, computeMinIntrinsicHeight$1(width) { var rowTop, y, rowHeight, x, t1, child, _this = this, widths = _this._computeColumnWidths$1(A.BoxConstraints$tightForFinite(1 / 0, width)); for (rowTop = 0, y = 0; y < _this._rows; ++y) { for (rowHeight = 0, x = 0; t1 = _this._table$_columns, x < t1; ++x) { child = _this._table$_children[x + y * t1]; if (child != null) rowHeight = Math.max(rowHeight, A.checkNum(child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, widths[x], child.get$computeMaxIntrinsicHeight()))); } rowTop += rowHeight; } return rowTop; }, computeMaxIntrinsicHeight$1(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1(baseline) { return this._baselineDistance; }, column$1(x) { return this.column$body$RenderTable(x); }, column$body$RenderTable($async$x) { var $async$self = this; return A._makeSyncStarIterable(function() { var x = $async$x; var $async$goto = 0, $async$handler = 1, $async$currentError, y, t1, child; return function $async$column$1($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start y = 0; case 2: // for condition if (!(y < $async$self._rows)) { // goto after for $async$goto = 4; break; } t1 = $async$self._table$_columns; child = $async$self._table$_children[x + y * t1]; $async$goto = child != null ? 5 : 6; break; case 5: // then $async$goto = 7; return child; case 7: // after yield case 6: // join case 3: // for update ++y; // goto for condition $async$goto = 2; break; case 4: // after for // implicit return return A._IterationMarker_endOfIteration(); case 1: // rethrow return A._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderBox); }, _computeColumnWidths$1(constraints) { var tableWidth, unflexedTableWidth, totalFlex, x, availableColumns, columnWidth, columnCells, maxIntrinsicWidth, flex, maxWidthConstraint, minWidthConstraint, targetWidth, remainingWidth, flexedWidth, delta, deficit, availableColumns0, newTotalFlex, t2, newWidth, t3, newAvailableColumns, availableDelta, _this = this, t1 = type$.double, widths = A.List_List$filled(_this._table$_columns, 0, false, t1), minWidths = A.List_List$filled(_this._table$_columns, 0, false, t1), flexes = A.List_List$filled(_this._table$_columns, null, false, type$.nullable_double); for (tableWidth = 0, unflexedTableWidth = 0, totalFlex = 0, x = 0; availableColumns = _this._table$_columns, x < availableColumns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; columnCells = _this.column$1(x); t1 = constraints.maxWidth; maxIntrinsicWidth = columnWidth.maxIntrinsicWidth$2(columnCells, t1); widths[x] = maxIntrinsicWidth; tableWidth += maxIntrinsicWidth; minWidths[x] = columnWidth.minIntrinsicWidth$2(columnCells, t1); flex = columnWidth.flex$1(0, columnCells); if (flex != null) { flexes[x] = flex; totalFlex += flex; } else unflexedTableWidth += maxIntrinsicWidth; } maxWidthConstraint = constraints.maxWidth; minWidthConstraint = constraints.minWidth; if (totalFlex > 0) { maxWidthConstraint.toString; if (isFinite(maxWidthConstraint)) targetWidth = maxWidthConstraint; else targetWidth = minWidthConstraint; if (tableWidth < targetWidth) { remainingWidth = targetWidth - unflexedTableWidth; for (x = 0; x < availableColumns; ++x) { t1 = flexes[x]; if (t1 != null) { flexedWidth = remainingWidth * t1 / totalFlex; t1 = widths[x]; if (t1 < flexedWidth) { tableWidth += flexedWidth - t1; widths[x] = flexedWidth; } } } } } else if (tableWidth < minWidthConstraint) { delta = (minWidthConstraint - tableWidth) / availableColumns; for (x = 0; x < availableColumns; ++x) widths[x] = widths[x] + delta; tableWidth = minWidthConstraint; } if (tableWidth > maxWidthConstraint) { deficit = tableWidth - maxWidthConstraint; availableColumns0 = availableColumns; while (true) { if (!(deficit > 1e-10 && totalFlex > 1e-10)) break; for (newTotalFlex = 0, x = 0; x < availableColumns; ++x) { t1 = flexes[x]; if (t1 != null) { t2 = widths[x]; newWidth = t2 - deficit * t1 / totalFlex; t3 = minWidths[x]; if (newWidth <= t3) { deficit -= t2 - t3; widths[x] = t3; flexes[x] = null; --availableColumns0; } else { deficit -= t2 - newWidth; widths[x] = newWidth; newTotalFlex += t1; } } } totalFlex = newTotalFlex; } while (true) { if (!(deficit > 1e-10 && availableColumns0 > 0)) break; delta = deficit / availableColumns0; for (newAvailableColumns = 0, x = 0; x < availableColumns; ++x) { t1 = widths[x]; t2 = minWidths[x]; availableDelta = t1 - t2; if (availableDelta > 0) if (availableDelta <= delta) { deficit -= availableDelta; widths[x] = t2; } else { deficit -= delta; widths[x] = t1 - delta; ++newAvailableColumns; } } availableColumns0 = newAvailableColumns; } } return widths; }, getRowBox$1(row) { var t1 = this._rowTops; return new A.Rect(0, t1[row], this._box$_size._dx, t1[row + 1]); }, computeDryLayout$1(constraints) { var widths, tableWidth, t1, rowTop, y, rowHeight, x, t2, child, _this = this; if (_this._rows * _this._table$_columns === 0) return constraints.constrain$1(B.Size_0_0); widths = _this._computeColumnWidths$1(constraints); tableWidth = B.JSArray_methods.fold$1$2(widths, 0, new A.RenderTable_computeDryLayout_closure(), type$.double); for (t1 = type$.TableCellParentData, rowTop = 0, y = 0; y < _this._rows; ++y) { for (rowHeight = 0, x = 0; t2 = _this._table$_columns, x < t2; ++x) { child = _this._table$_children[x + y * t2]; if (child != null) { t2 = child.parentData; t2.toString; t2 = t1._as(t2).verticalAlignment; switch ((t2 == null ? _this._defaultVerticalAlignment : t2).index) { case 3: return B.Size_0_0; case 0: case 1: case 2: rowHeight = Math.max(rowHeight, A.checkNum(child.getDryLayout$1(A.BoxConstraints$tightFor(null, widths[x]))._dy)); break; case 4: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } } rowTop += rowHeight; } return constraints.constrain$1(new A.Size(tableWidth, rowTop)); }, performLayout$0() { var widths, t1, positions, x, t2, tableWidth, t3, rowTop, y, baselines, t4, rowHeight, haveBaseline, beforeBaselineDistance, afterBaselineDistance, child, t5, t6, childBaseline, rowTop0, t7, _this = this, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), rows = _this._rows, columns = _this._table$_columns; if (rows * columns === 0) { _this._box$_size = constraints.constrain$1(B.Size_0_0); return; } widths = _this._computeColumnWidths$1(constraints); t1 = type$.double; positions = A.List_List$filled(columns, 0, false, t1); switch (_this._table$_textDirection) { case B.TextDirection_0: positions[columns - 1] = 0; for (x = columns - 2; x >= 0; --x) { t2 = x + 1; positions[x] = positions[t2] + widths[t2]; } _this._columnLefts = new A.ReversedListIterable(positions, A._arrayInstanceType(positions)._eval$1("ReversedListIterable<1>")); tableWidth = B.JSArray_methods.get$first(positions) + B.JSArray_methods.get$first(widths); break; case B.TextDirection_1: positions[0] = 0; for (x = 1; x < columns; ++x) { t2 = x - 1; positions[x] = positions[t2] + widths[t2]; } _this._columnLefts = positions; tableWidth = B.JSArray_methods.get$last(positions) + B.JSArray_methods.get$last(widths); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t2 = _this._rowTops; B.JSArray_methods.set$length(t2, 0); _this._baselineDistance = null; for (t3 = type$.TableCellParentData, rowTop = 0, y = 0; y < rows; ++y, rowTop = rowTop0) { t2.push(rowTop); baselines = A.List_List$filled(columns, 0, false, t1); for (t4 = y * columns, rowHeight = 0, haveBaseline = false, beforeBaselineDistance = 0, afterBaselineDistance = 0, x = 0; x < columns; ++x) { child = _this._table$_children[x + t4]; if (child != null) { t5 = child.parentData; t5.toString; t3._as(t5); t5.y = y; t6 = t5.verticalAlignment; switch ((t6 == null ? _this._defaultVerticalAlignment : t6).index) { case 3: child.layout$2$parentUsesSize(0, A.BoxConstraints$tightFor(null, widths[x]), true); t6 = _this._table$_textBaseline; t6.toString; childBaseline = child.getDistanceToBaseline$2$onlyReal(t6, true); t6 = child._box$_size; if (childBaseline != null) { beforeBaselineDistance = Math.max(beforeBaselineDistance, childBaseline); afterBaselineDistance = Math.max(afterBaselineDistance, t6._dy - childBaseline); baselines[x] = childBaseline; haveBaseline = true; } else { rowHeight = Math.max(rowHeight, A.checkNum(t6._dy)); t5.offset = new A.Offset(positions[x], rowTop); } break; case 0: case 1: case 2: child.layout$2$parentUsesSize(0, A.BoxConstraints$tightFor(null, widths[x]), true); rowHeight = Math.max(rowHeight, A.checkNum(child._box$_size._dy)); break; case 4: break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } } if (haveBaseline) { if (y === 0) _this._baselineDistance = beforeBaselineDistance; rowHeight = Math.max(rowHeight, beforeBaselineDistance + afterBaselineDistance); } for (rowTop0 = rowTop + rowHeight, t5 = rowTop + beforeBaselineDistance, x = 0; x < columns; ++x) { child = _this._table$_children[x + t4]; if (child != null) { t6 = child.parentData; t6.toString; t3._as(t6); t7 = t6.verticalAlignment; switch ((t7 == null ? _this._defaultVerticalAlignment : t7).index) { case 3: t6.offset = new A.Offset(positions[x], t5 - baselines[x]); break; case 0: t6.offset = new A.Offset(positions[x], rowTop); break; case 1: t6.offset = new A.Offset(positions[x], rowTop + (rowHeight - child._box$_size._dy) / 2); break; case 2: t6.offset = new A.Offset(positions[x], rowTop0 - child._box$_size._dy); break; case 4: child.layout$1(0, A.BoxConstraints$tightFor(rowHeight, widths[x])); t6.offset = new A.Offset(positions[x], rowTop); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } } } t2.push(rowTop); _this._box$_size = constraints.constrain$1(new A.Size(tableWidth, rowTop)); }, hitTestChildren$2$position(result, position) { var index, t1, child, t2; for (index = this._table$_children.length - 1, t1 = type$.BoxParentData; index >= 0; --index) { child = this._table$_children[index]; if (child != null) { t2 = child.parentData; t2.toString; t1._as(t2); if (result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderTable_hitTestChildren_closure(position, t2, child), t2.offset, position)) return true; } } return false; }, paint$2(context, offset) { var canvas, t1, t2, t3, t4, y, t5, t6, index, child, _this = this; if (_this._rows * _this._table$_columns === 0) return; if (_this._table$_rowDecorations != null) { canvas = context.get$canvas(context); for (t1 = offset._dx, t2 = offset._dy, t3 = _this._rowTops, t4 = _this.get$markNeedsPaint(), y = 0; y < _this._rows; ++y) { t5 = _this._table$_rowDecorations; if (t5.length <= y) break; t5 = t5[y]; if (t5 != null) { t6 = _this._rowDecorationPainters; if (t6[y] == null) t6[y] = t5.createBoxPainter$1(t4); t5 = _this._rowDecorationPainters[y]; t5.toString; t6 = t3[y]; t5.paint$3(canvas, new A.Offset(t1, t2 + t6), _this._table$_configuration.copyWith$1$size(new A.Size(_this._box$_size._dx, t3[y + 1] - t6))); } } } for (t1 = type$.BoxParentData, t2 = offset._dx, t3 = offset._dy, index = 0; t4 = _this._table$_children, index < t4.length; ++index) { child = t4[index]; if (child != null) { t4 = child.parentData; t4.toString; t4 = t1._as(t4).offset; context.paintChild$2(child, new A.Offset(t4._dx + t2, t4._dy + t3)); } } }, debugDescribeChildren$0() { var children, t1, y, t2, x, t3, child, $name, _this = this, _null = null; if (_this._table$_children.length === 0) return A._setArrayType([A.DiagnosticsNode_DiagnosticsNode$message("table is empty", true, B.DiagnosticsTreeStyle_8)], type$.JSArray_DiagnosticsNode); children = A._setArrayType([], type$.JSArray_DiagnosticsNode); for (t1 = type$.DiagnosticsProperty_Object, y = 0; y < _this._rows; ++y) for (t2 = y, x = 0; t3 = _this._table$_columns, x < t3; ++x) { child = _this._table$_children[x + y * t3]; $name = "child (" + x + ", " + t2 + ")"; if (child != null) children.push(new A.DiagnosticableTreeNode(child, $name, true, true, _null, _null)); else children.push(new A.DiagnosticsProperty(_null, false, true, "is null", _null, _null, false, _null, true, B.C__NoDefaultValue, B.DiagnosticLevel_3, _null, $name, false, true, _null, B.DiagnosticsTreeStyle_8, t1)); } return children; } }; A.RenderTable_computeDryLayout_closure.prototype = { call$2(a, b) { return a + b; }, $signature: 356 }; A.RenderTable_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.AlignmentGeometryTween.prototype = { lerp$1(t) { return A.AlignmentGeometry_lerp(this.begin, this.end, t); } }; A.ViewConfiguration.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.ViewConfiguration && other.size.$eq(0, this.size) && other.devicePixelRatio === this.devicePixelRatio; }, get$hashCode(_) { return A.Object_hash(this.size, this.devicePixelRatio, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return this.size.toString$0(0) + " at " + A.debugFormatDouble(this.devicePixelRatio) + "x"; } }; A.RenderView.prototype = { set$configuration(value) { var t1, t2, t3, _this = this; if (_this._view$_configuration.$eq(0, value)) return; _this._view$_configuration = value; t1 = _this._updateMatricesAndCreateNewRootLayer$0(); t2 = _this._layerHandle; t3 = t2._layer; t3.toString; J.detach$0$z(t3); t2.set$layer(0, t1); _this.markNeedsPaint$0(); _this.markNeedsLayout$0(); }, _updateMatricesAndCreateNewRootLayer$0() { var rootLayer, t1 = this._view$_configuration.devicePixelRatio; t1 = A.Matrix4_Matrix4$diagonal3Values(t1, t1, 1); this._rootTransform = t1; rootLayer = A.TransformLayer$(t1); rootLayer.attach$1(this); return rootLayer; }, performResize$0() { }, performLayout$0() { var t2, t1 = this._view$_configuration.size; this._view$_size = t1; t2 = this.RenderObjectWithChildMixin__child; if (t2 != null) t2.layout$1(0, A.BoxConstraints$tight(t1)); }, hitTest$2$position(result, position) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.hitTest$2$position(A.BoxHitTestResult$wrap(result), position); result.add$1(0, new A.HitTestEntry(this, type$.HitTestEntry_HitTestTarget)); return true; }, hitTestMouseTrackers$1(position) { var result, t1 = A._setArrayType([], type$.JSArray_HitTestEntry_HitTestTarget), t2 = new A.Matrix4(new Float64Array(16)); t2.setIdentity$0(); result = new A.BoxHitTestResult(t1, A._setArrayType([t2], type$.JSArray_Matrix4_2), A._setArrayType([], type$.JSArray__TransformPart)); this.hitTest$2$position(result, position); return result; }, get$isRepaintBoundary() { return true; }, paint$2(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); }, applyPaintTransform$2(child, transform) { var t1 = this._rootTransform; t1.toString; transform.multiply$1(0, t1); this.super$RenderObject$applyPaintTransform(child, transform); }, compositeFrame$0() { var builder, scene, t1, bounds, t2, t3, t4, upperOverlayStyle, lowerOverlayStyle, t5, t6, t7, t8, _this = this, _null = null; A.Timeline_startSync("COMPOSITING", B.Map_9aZ6I, _null); try { builder = A.SceneBuilder_SceneBuilder(); t1 = _this._layerHandle; scene = t1._layer.buildScene$1(builder); if (_this.automaticSystemUiAdjustment) { bounds = _this.get$paintBounds(); t2 = bounds.get$center(); t3 = _this._window; t3.get$viewConfiguration(); t4 = bounds.get$center(); t3.get$viewConfiguration(); t3 = type$.SystemUiOverlayStyle; upperOverlayStyle = t1._layer.find$1$1(0, new A.Offset(t2._dx, 0), t3); switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: lowerOverlayStyle = t1._layer.find$1$1(0, new A.Offset(t4._dx, bounds.bottom - 1 - 0), t3); break; case B.TargetPlatform_1: case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: lowerOverlayStyle = _null; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); lowerOverlayStyle = _null; } t1 = upperOverlayStyle == null; if (!t1 || lowerOverlayStyle != null) { t2 = t1 ? _null : upperOverlayStyle.statusBarBrightness; t3 = t1 ? _null : upperOverlayStyle.statusBarIconBrightness; t4 = t1 ? _null : upperOverlayStyle.statusBarColor; t1 = t1 ? _null : upperOverlayStyle.systemStatusBarContrastEnforced; t5 = lowerOverlayStyle == null; t6 = t5 ? _null : lowerOverlayStyle.systemNavigationBarColor; t7 = t5 ? _null : lowerOverlayStyle.systemNavigationBarDividerColor; t8 = t5 ? _null : lowerOverlayStyle.systemNavigationBarIconBrightness; A.SystemChrome_setSystemUIOverlayStyle(new A.SystemUiOverlayStyle(t6, t7, t8, t5 ? _null : lowerOverlayStyle.systemNavigationBarContrastEnforced, t4, t2, t3, t1)); } } t1 = _this._window; t1.platformDispatcher.render$2(0, scene, t1); J.dispose$0$x(scene); } finally { A.Timeline_finishSync(); } }, get$paintBounds() { var t1 = this._view$_size.$mul(0, this._view$_configuration.devicePixelRatio); return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, get$semanticBounds() { var t2, t1 = this._rootTransform; t1.toString; t2 = this._view$_size; return A.MatrixUtils_transformRect(t1, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); } }; A._RenderView_RenderObject_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.CacheExtentStyle.prototype = { toString$0(_) { return "CacheExtentStyle." + this._core$_name; } }; A.RevealedOffset.prototype = { toString$0(_) { return "RevealedOffset(offset: " + A.S(this.offset) + ", rect: " + A.S(this.rect) + ")"; } }; A.RenderViewportBase.prototype = { describeSemanticsConfiguration$1(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.addTagForChildren$1(B.SemanticsTag_FIw); }, visitChildrenForSemantics$1(visitor) { var t1 = this.get$childrenInPaintOrder(); t1.toString; new A.WhereIterable(t1, new A.RenderViewportBase_visitChildrenForSemantics_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).forEach$1(0, visitor); }, set$axisDirection(value) { if (value === this._viewport$_axisDirection) return; this._viewport$_axisDirection = value; this.markNeedsLayout$0(); }, set$crossAxisDirection(value) { if (value === this._crossAxisDirection) return; this._crossAxisDirection = value; this.markNeedsLayout$0(); }, set$offset(_, value) { var _this = this, t1 = _this._viewport$_offset; if (value == t1) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$markNeedsLayout()); _this._viewport$_offset = value; if (_this._node$_owner != null) value.addListener$1(0, _this.get$markNeedsLayout()); _this.markNeedsLayout$0(); }, set$cacheExtent(value) { if (value == null) value = 250; if (value === this._cacheExtent) return; this._cacheExtent = value; this.markNeedsLayout$0(); }, set$cacheExtentStyle(value) { if (value === this._cacheExtentStyle) return; this._cacheExtentStyle = value; this.markNeedsLayout$0(); }, set$clipBehavior(value) { var _this = this; if (value !== _this._viewport$_clipBehavior) { _this._viewport$_clipBehavior = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); } }, attach$1(owner) { this.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$attach(owner); this._viewport$_offset.addListener$1(0, this.get$markNeedsLayout()); }, detach$0(_) { this._viewport$_offset.removeListener$1(0, this.get$markNeedsLayout()); this.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$detach(0); }, computeMinIntrinsicWidth$1(height) { return 0; }, computeMaxIntrinsicWidth$1(height) { return 0; }, computeMinIntrinsicHeight$1(width) { return 0; }, computeMaxIntrinsicHeight$1(width) { return 0; }, get$isRepaintBoundary() { return true; }, layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(advance, cacheOrigin, child, crossAxisExtent, growthDirection, layoutOffset, mainAxisExtent, overlap, remainingCacheExtent, remainingPaintExtent, scrollOffset) { var layoutOffset0, precedingScrollExtent, sliverScrollOffset, correctedCacheOrigin, cacheExtentCorrection, childLayoutGeometry, t1, effectiveLayoutOffset, _this = this, adjustedUserScrollDirection = A.applyGrowthDirectionToScrollDirection(_this._viewport$_offset._userScrollDirection, growthDirection), maxPaintOffset = layoutOffset + overlap; for (layoutOffset0 = layoutOffset, precedingScrollExtent = 0; child != null;) { sliverScrollOffset = scrollOffset <= 0 ? 0 : scrollOffset; correctedCacheOrigin = Math.max(cacheOrigin, -sliverScrollOffset); cacheExtentCorrection = cacheOrigin - correctedCacheOrigin; child.layout$2$parentUsesSize(0, new A.SliverConstraints(_this._viewport$_axisDirection, growthDirection, adjustedUserScrollDirection, sliverScrollOffset, precedingScrollExtent, maxPaintOffset - layoutOffset0, Math.max(0, remainingPaintExtent - layoutOffset0 + layoutOffset), crossAxisExtent, _this._crossAxisDirection, mainAxisExtent, correctedCacheOrigin, Math.max(0, remainingCacheExtent + cacheExtentCorrection)), true); childLayoutGeometry = child._geometry; t1 = childLayoutGeometry.scrollOffsetCorrection; if (t1 != null) return t1; effectiveLayoutOffset = layoutOffset0 + childLayoutGeometry.paintOrigin; if (childLayoutGeometry.visible || scrollOffset > 0) _this.updateChildLayoutOffset$3(child, effectiveLayoutOffset, growthDirection); else _this.updateChildLayoutOffset$3(child, -scrollOffset + layoutOffset, growthDirection); maxPaintOffset = Math.max(effectiveLayoutOffset + childLayoutGeometry.paintExtent, maxPaintOffset); t1 = childLayoutGeometry.scrollExtent; scrollOffset -= t1; precedingScrollExtent += t1; layoutOffset0 += childLayoutGeometry.layoutExtent; t1 = childLayoutGeometry.cacheExtent; if (t1 !== 0) { remainingCacheExtent -= t1 - cacheExtentCorrection; cacheOrigin = Math.min(correctedCacheOrigin + t1, 0); } _this.updateOutOfBandData$2(growthDirection, childLayoutGeometry); child = advance.call$1(child); } return 0; }, describeApproximatePaintClip$1(child) { var overlapCorrection, $top, left, t1 = this._box$_size, right = 0 + t1._dx, bottom = 0 + t1._dy; child.toString; t1 = type$.SliverConstraints; if (t1._as(A.RenderObject.prototype.get$constraints.call(child)).overlap === 0 || !isFinite(t1._as(A.RenderObject.prototype.get$constraints.call(child)).viewportMainAxisExtent)) return new A.Rect(0, 0, right, bottom); overlapCorrection = t1._as(A.RenderObject.prototype.get$constraints.call(child)).viewportMainAxisExtent - t1._as(A.RenderObject.prototype.get$constraints.call(child)).remainingPaintExtent + t1._as(A.RenderObject.prototype.get$constraints.call(child)).overlap; switch (A.applyGrowthDirectionToAxisDirection(this._viewport$_axisDirection, t1._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection).index) { case 2: $top = 0 + overlapCorrection; left = 0; break; case 0: bottom -= overlapCorrection; left = 0; $top = 0; break; case 1: left = 0 + overlapCorrection; $top = 0; break; case 3: right -= overlapCorrection; left = 0; $top = 0; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return new A.Rect(left, $top, right, bottom); }, describeSemanticsClip$1(child) { var t2, _this = this, t1 = _this._calculatedCacheExtent; if (t1 == null) { t1 = _this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: t2 = _this._box$_size; return new A.Rect(0, 0 - t1, 0 + t2._dx, 0 + t2._dy + t1); case 0: t2 = _this._box$_size; return new A.Rect(0 - t1, 0, 0 + t2._dx + t1, 0 + t2._dy); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(context, offset) { var t1, t2, t3, _this = this; if (_this.ContainerRenderObjectMixin__firstChild == null) return; t1 = _this.get$hasVisualOverflow() && _this._viewport$_clipBehavior !== B.Clip_0; t2 = _this._viewport$_clipRectLayer; if (t1) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$_paintContents(), _this._viewport$_clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this._paintContents$2(context, offset); } }, dispose$0(_) { this._viewport$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); }, _paintContents$2(context, offset) { var t1, t2, t3, t4, _i, child, t5; for (t1 = this.get$childrenInPaintOrder(), t2 = t1.length, t3 = offset._dx, t4 = offset._dy, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child._geometry.visible) { t5 = this.paintOffsetOf$1(child); context.paintChild$2(child, new A.Offset(t3 + t5._dx, t4 + t5._dy)); } } }, hitTestChildren$2$position(result, position) { var sliverResult, t1, t2, _i, child, transform, _this = this, _box_0 = {}; _box_0.crossAxisPosition = _box_0.mainAxisPosition = null; switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: _box_0.mainAxisPosition = position._dy; _box_0.crossAxisPosition = position._dx; break; case 0: _box_0.mainAxisPosition = position._dx; _box_0.crossAxisPosition = position._dy; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } sliverResult = new A.SliverHitTestResult(result._hit_test$_path, result._transforms, result._localTransforms); for (t1 = _this.get$childrenInHitTestOrder(), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (!child._geometry.visible) continue; transform = new A.Matrix4(new Float64Array(16)); transform.setIdentity$0(); _this.applyPaintTransform$2(child, transform); if (result.addWithOutOfBandPosition$2$hitTest$paintTransform(new A.RenderViewportBase_hitTestChildren_closure(_box_0, _this, child, sliverResult), transform)) return true; } return false; }, getOffsetToReveal$3$rect(target, alignment, rect) { var t1, child, leadingScrollOffset, pivot, t2, t3, growthDirection, pivotExtent, rectLocal, targetMainAxisExtent, isPinned, targetRect, extentOfPinnedSlivers, mainAxisExtent, targetOffset, offsetDifference, _this = this, _s80_ = string$.x60null_c, onlySlivers = target instanceof A.RenderSliver; for (t1 = type$.RenderObject, child = target, leadingScrollOffset = 0, pivot = null; child.get$parent(child) !== _this; child = t2) { t2 = child.get$parent(child); t2.toString; t1._as(t2); if (child instanceof A.RenderBox) pivot = child; if (t2 instanceof A.RenderSliver) { t3 = t2.childScrollOffset$1(child); t3.toString; leadingScrollOffset += t3; } else { leadingScrollOffset = 0; onlySlivers = false; } } if (pivot != null) { t1 = pivot.get$parent(pivot); t1.toString; type$.RenderSliver._as(t1); growthDirection = type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(t1)).growthDirection; switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 0: pivotExtent = pivot._box$_size._dx; break; case 1: pivotExtent = pivot._box$_size._dy; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (rect == null) rect = target.get$paintBounds(); rectLocal = A.MatrixUtils_transformRect(target.getTransformTo$1(0, pivot), rect); } else { if (onlySlivers) { type$.RenderSliver._as(target); target.toString; t1 = type$.SliverConstraints; growthDirection = t1._as(A.RenderObject.prototype.get$constraints.call(target)).growthDirection; pivotExtent = target._geometry.scrollExtent; if (rect == null) switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 0: rect = new A.Rect(0, 0, 0 + pivotExtent, 0 + t1._as(A.RenderObject.prototype.get$constraints.call(target)).crossAxisExtent); break; case 1: rect = new A.Rect(0, 0, 0 + t1._as(A.RenderObject.prototype.get$constraints.call(target)).crossAxisExtent, 0 + target._geometry.scrollExtent); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } else { t1 = _this._viewport$_offset._pixels; t1.toString; rect.toString; return new A.RevealedOffset(t1, rect); } rectLocal = rect; } type$.RenderSliver._as(child); switch (A.applyGrowthDirectionToAxisDirection(_this._viewport$_axisDirection, growthDirection).index) { case 0: t1 = rectLocal.bottom; leadingScrollOffset += pivotExtent - t1; targetMainAxisExtent = t1 - rectLocal.top; break; case 1: t1 = rectLocal.left; leadingScrollOffset += t1; targetMainAxisExtent = rectLocal.right - t1; break; case 2: t1 = rectLocal.top; leadingScrollOffset += t1; targetMainAxisExtent = rectLocal.bottom - t1; break; case 3: t1 = rectLocal.right; leadingScrollOffset += pivotExtent - t1; targetMainAxisExtent = t1 - rectLocal.left; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } isPinned = child._geometry.maxScrollObstructionExtent > 0 && leadingScrollOffset >= 0; leadingScrollOffset = _this.scrollOffsetOf$2(child, leadingScrollOffset); targetRect = A.MatrixUtils_transformRect(target.getTransformTo$1(0, _this), rect); extentOfPinnedSlivers = _this.maxScrollObstructionExtentBefore$1(child); switch (type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection.index) { case 0: if (isPinned && alignment <= 0) return new A.RevealedOffset(1 / 0, targetRect); leadingScrollOffset -= extentOfPinnedSlivers; break; case 1: if (isPinned && alignment >= 1) return new A.RevealedOffset(-1 / 0, targetRect); switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: leadingScrollOffset -= targetRect.bottom - targetRect.top; break; case 0: leadingScrollOffset -= targetRect.right - targetRect.left; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = _this._viewport$_axisDirection; switch (A.axisDirectionToAxis(t1).index) { case 0: mainAxisExtent = _this._box$_size._dx - extentOfPinnedSlivers; break; case 1: mainAxisExtent = _this._box$_size._dy - extentOfPinnedSlivers; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } targetOffset = leadingScrollOffset - (mainAxisExtent - targetMainAxisExtent) * alignment; t2 = _this._viewport$_offset._pixels; t2.toString; offsetDifference = t2 - targetOffset; switch (t1.index) { case 2: targetRect = targetRect.translate$2(0, 0, offsetDifference); break; case 1: targetRect = targetRect.translate$2(0, offsetDifference, 0); break; case 0: targetRect = targetRect.translate$2(0, 0, -offsetDifference); break; case 3: targetRect = targetRect.translate$2(0, -offsetDifference, 0); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return new A.RevealedOffset(targetOffset, targetRect); }, computeAbsolutePaintOffset$3(child, layoutOffset, growthDirection) { switch (A.applyGrowthDirectionToAxisDirection(this._viewport$_axisDirection, growthDirection).index) { case 0: return new A.Offset(0, this._box$_size._dy - (layoutOffset + child._geometry.paintExtent)); case 1: return new A.Offset(layoutOffset, 0); case 2: return new A.Offset(0, layoutOffset); case 3: return new A.Offset(this._box$_size._dx - (layoutOffset + child._geometry.paintExtent), 0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, debugDescribeChildren$0() { var count, t1, t2, _this = this, children = A._setArrayType([], type$.JSArray_DiagnosticsNode), child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return children; count = _this.get$indexOfFirstChild(); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); true;) { child.toString; children.push(new A.DiagnosticableTreeNode(child, _this.labelForChild$1(count), true, true, null, null)); if (child === _this.ContainerRenderObjectMixin__lastChild) break; ++count; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return children; }, showOnScreen$4$curve$descendant$duration$rect(curve, descendant, duration, rect) { var _this = this; if (!_this._viewport$_offset.physics.get$allowImplicitScrolling()) return _this.super$RenderObject$showOnScreen(curve, descendant, duration, rect); _this.super$RenderObject$showOnScreen(curve, null, duration, A.RenderViewportBase_showInViewport(curve, descendant, duration, _this._viewport$_offset, rect, _this)); }, showOnScreen$0() { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, null); }, showOnScreen$1$rect(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, rect); }, showOnScreen$3$curve$duration$rect(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, showOnScreen$2$descendant$rect(descendant, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, descendant, B.Duration_0, rect); }, $isRenderAbstractViewport: 1 }; A.RenderViewportBase_visitChildrenForSemantics_closure.prototype = { call$1(sliver) { var t1 = sliver._geometry; return t1.visible || t1.cacheExtent > 0; }, $signature: 2144 }; A.RenderViewportBase_hitTestChildren_closure.prototype = { call$1(result) { var _this = this, t1 = _this.child, t2 = _this._box_0, t3 = _this.$this.computeChildMainAxisPosition$2(t1, t2.mainAxisPosition); return t1.hitTest$3$crossAxisPosition$mainAxisPosition(_this.sliverResult, t2.crossAxisPosition, t3); }, $signature: 675 }; A.RenderViewport.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.SliverPhysicalContainerParentData)) child.parentData = new A.SliverPhysicalContainerParentData(null, null, B.Offset_0_0); }, set$anchor(value) { if (value === this._anchor) return; this._anchor = value; this.markNeedsLayout$0(); }, set$center(value) { if (value == this._viewport$_center) return; this._viewport$_center = value; this.markNeedsLayout$0(); }, get$sizedByParent() { return true; }, computeDryLayout$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t1, mainAxisExtent, crossAxisExtent, t2, correction, count, _this = this, _s80_ = string$.x60null_c; switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: _this._viewport$_offset.applyViewportDimension$1(_this._box$_size._dy); break; case 0: _this._viewport$_offset.applyViewportDimension$1(_this._box$_size._dx); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (_this._viewport$_center == null) { _this.__RenderViewport__maxScrollExtent = _this.__RenderViewport__minScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; _this._viewport$_offset.applyContentDimensions$2(0, 0); return; } switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: t1 = _this._box$_size; mainAxisExtent = t1._dy; crossAxisExtent = t1._dx; break; case 0: t1 = _this._box$_size; mainAxisExtent = t1._dx; crossAxisExtent = t1._dy; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = 0; do { t2 = _this._viewport$_offset._pixels; t2.toString; correction = _this._attemptLayout$3(mainAxisExtent, crossAxisExtent, t2 + 0); if (correction !== 0) _this._viewport$_offset.correctBy$1(correction); else if (_this._viewport$_offset.applyContentDimensions$2(Math.min(0, A._lateReadCheck(_this.__RenderViewport__minScrollExtent, "_minScrollExtent") + mainAxisExtent * _this._anchor), Math.max(0, A._lateReadCheck(_this.__RenderViewport__maxScrollExtent, "_maxScrollExtent") - mainAxisExtent * (1 - _this._anchor)))) break; count = t1 + 1; if (count < 10) { t1 = count; continue; } else break; } while (true); }, _attemptLayout$3(mainAxisExtent, crossAxisExtent, correctedOffset) { var centerOffset, reverseDirectionRemainingPaintExtent, t1, forwardDirectionRemainingPaintExtent, t2, fullCacheExtent, centerCacheOffset, reverseDirectionRemainingCacheExtent, forwardDirectionRemainingCacheExtent, leadingNegativeChild, t3, t4, result, t5, _this = this; _this.__RenderViewport__maxScrollExtent = _this.__RenderViewport__minScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; centerOffset = mainAxisExtent * _this._anchor - correctedOffset; reverseDirectionRemainingPaintExtent = B.JSNumber_methods.clamp$2(centerOffset, 0, mainAxisExtent); t1 = mainAxisExtent - centerOffset; forwardDirectionRemainingPaintExtent = B.JSNumber_methods.clamp$2(t1, 0, mainAxisExtent); switch (_this._cacheExtentStyle.index) { case 0: t2 = _this._calculatedCacheExtent = _this._cacheExtent; break; case 1: t2 = _this._calculatedCacheExtent = mainAxisExtent * _this._cacheExtent; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } fullCacheExtent = mainAxisExtent + 2 * t2; centerCacheOffset = centerOffset + t2; reverseDirectionRemainingCacheExtent = B.JSNumber_methods.clamp$2(centerCacheOffset, 0, fullCacheExtent); forwardDirectionRemainingCacheExtent = B.JSNumber_methods.clamp$2(fullCacheExtent - centerCacheOffset, 0, fullCacheExtent); t2 = _this._viewport$_center.parentData; t2.toString; leadingNegativeChild = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1")._as(t2).ContainerParentDataMixin_previousSibling; t2 = leadingNegativeChild == null; if (!t2) { t3 = Math.max(mainAxisExtent, centerOffset); t4 = _this._calculatedCacheExtent; t4.toString; result = _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(_this.get$childBefore(), B.JSNumber_methods.clamp$2(t1, -t4, 0), leadingNegativeChild, crossAxisExtent, B.GrowthDirection_1, forwardDirectionRemainingPaintExtent, mainAxisExtent, 0, reverseDirectionRemainingCacheExtent, reverseDirectionRemainingPaintExtent, t3 - mainAxisExtent); if (result !== 0) return -result; } t1 = _this._viewport$_center; t3 = -centerOffset; t4 = Math.max(0, t3); t2 = t2 ? Math.min(0, t3) : 0; t3 = centerOffset >= mainAxisExtent ? centerOffset : reverseDirectionRemainingPaintExtent; t5 = _this._calculatedCacheExtent; t5.toString; return _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(_this.get$childAfter(), B.JSNumber_methods.clamp$2(centerOffset, -t5, 0), t1, crossAxisExtent, B.GrowthDirection_0, t3, mainAxisExtent, t2, forwardDirectionRemainingCacheExtent, forwardDirectionRemainingPaintExtent, t4); }, get$hasVisualOverflow() { return this._viewport$_hasVisualOverflow; }, updateOutOfBandData$2(growthDirection, childLayoutGeometry) { var _this = this; switch (growthDirection.index) { case 0: _this.__RenderViewport__maxScrollExtent = A._lateReadCheck(_this.__RenderViewport__maxScrollExtent, "_maxScrollExtent") + childLayoutGeometry.scrollExtent; break; case 1: _this.__RenderViewport__minScrollExtent = A._lateReadCheck(_this.__RenderViewport__minScrollExtent, "_minScrollExtent") - childLayoutGeometry.scrollExtent; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (childLayoutGeometry.hasVisualOverflow) _this._viewport$_hasVisualOverflow = true; }, updateChildLayoutOffset$3(child, layoutOffset, growthDirection) { var t1 = child.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1).paintOffset = this.computeAbsolutePaintOffset$3(child, layoutOffset, growthDirection); }, paintOffsetOf$1(child) { var t1 = child.parentData; t1.toString; return type$.SliverPhysicalParentData._as(t1).paintOffset; }, scrollOffsetOf$2(child, scrollOffsetWithinChild) { var current, t1, scrollOffsetToChild, t2, _this = this; switch (type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection.index) { case 0: current = _this._viewport$_center; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild += current._geometry.scrollExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return scrollOffsetToChild + scrollOffsetWithinChild; case 1: t1 = _this._viewport$_center.parentData; t1.toString; t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); current = t2._as(t1).ContainerParentDataMixin_previousSibling; for (scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild -= current._geometry.scrollExtent; t1 = current.parentData; t1.toString; current = t2._as(t1).ContainerParentDataMixin_previousSibling; } return scrollOffsetToChild - scrollOffsetWithinChild; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, maxScrollObstructionExtentBefore$1(child) { var current, t1, pinnedExtent, t2, _this = this; switch (type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection.index) { case 0: current = _this._viewport$_center; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return pinnedExtent; case 1: t1 = _this._viewport$_center.parentData; t1.toString; t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); current = t2._as(t1).ContainerParentDataMixin_previousSibling; for (pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t1 = current.parentData; t1.toString; current = t2._as(t1).ContainerParentDataMixin_previousSibling; } return pinnedExtent; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, applyPaintTransform$2(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverPhysicalParentData._as(t1).paintOffset; transform.translate$2(0, t1._dx, t1._dy); }, computeChildMainAxisPosition$2(child, parentMainAxisPosition) { var t2, t1 = child.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1); t2 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t2._as(A.RenderObject.prototype.get$constraints.call(child)).axisDirection, t2._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection).index) { case 2: return parentMainAxisPosition - t1.paintOffset._dy; case 1: return parentMainAxisPosition - t1.paintOffset._dx; case 0: return child._geometry.paintExtent - (parentMainAxisPosition - t1.paintOffset._dy); case 3: return child._geometry.paintExtent - (parentMainAxisPosition - t1.paintOffset._dx); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$indexOfFirstChild() { var t1, t2, count, t3, child = this._viewport$_center; for (t1 = this.ContainerRenderObjectMixin__firstChild, t2 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), count = 0; child != t1;) { --count; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_previousSibling; } return count; }, labelForChild$1(index) { if (index === 0) return "center child"; return "child " + index; }, get$childrenInPaintOrder() { var t1, t2, _this = this, children = A._setArrayType([], type$.JSArray_RenderSliver), child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return children; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); child != _this._viewport$_center;) { child.toString; children.push(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } child = _this.ContainerRenderObjectMixin__lastChild; for (; true;) { child.toString; children.push(child); if (child === _this._viewport$_center) return children; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; } }, get$childrenInHitTestOrder() { var child, t1, t2, _this = this, children = A._setArrayType([], type$.JSArray_RenderSliver); if (_this.ContainerRenderObjectMixin__firstChild == null) return children; child = _this._viewport$_center; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { children.push(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } t2 = _this._viewport$_center.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; for (; child != null;) { children.push(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; } return children; } }; A.RenderShrinkWrappingViewport.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.SliverLogicalContainerParentData)) child.parentData = new A.SliverLogicalContainerParentData(null, null); }, performLayout$0() { var mainAxisExtent, crossAxisExtent, t1, effectiveExtent, t2, t3, t4, t5, t6, correction, didAcceptViewportDimension, didAcceptContentDimension, _this = this, _s80_ = string$.x60null_c, _s17_ = "_shrinkWrapExtent", constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); if (_this.ContainerRenderObjectMixin__firstChild == null) { switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: _this._box$_size = new A.Size(constraints.maxWidth, constraints.minHeight); break; case 0: _this._box$_size = new A.Size(constraints.minWidth, constraints.maxHeight); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this._viewport$_offset.applyViewportDimension$1(0); _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = _this.__RenderShrinkWrappingViewport__maxScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; _this._viewport$_offset.applyContentDimensions$2(0, 0); return; } switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: mainAxisExtent = constraints.maxHeight; crossAxisExtent = constraints.maxWidth; break; case 0: mainAxisExtent = constraints.maxWidth; crossAxisExtent = constraints.maxHeight; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = _this.get$childAfter(); effectiveExtent = null; do { t2 = _this._viewport$_offset._pixels; t2.toString; _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = _this.__RenderShrinkWrappingViewport__maxScrollExtent = 0; _this._viewport$_hasVisualOverflow = t2 < 0; switch (_this._cacheExtentStyle.index) { case 0: _this._calculatedCacheExtent = _this._cacheExtent; break; case 1: _this._calculatedCacheExtent = mainAxisExtent * _this._cacheExtent; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } t3 = _this.ContainerRenderObjectMixin__firstChild; t4 = Math.max(0, t2); t5 = Math.min(0, t2); t2 = Math.max(0, -t2); t6 = _this._calculatedCacheExtent; t6.toString; correction = _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(t1, -t6, t3, crossAxisExtent, B.GrowthDirection_0, t2, mainAxisExtent, t5, mainAxisExtent + 2 * t6, mainAxisExtent + t5, t4); if (correction !== 0) _this._viewport$_offset.correctBy$1(correction); else { switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: effectiveExtent = J.clamp$2$n(A._lateReadCheck(_this.__RenderShrinkWrappingViewport__shrinkWrapExtent, _s17_), constraints.minHeight, constraints.maxHeight); break; case 0: effectiveExtent = J.clamp$2$n(A._lateReadCheck(_this.__RenderShrinkWrappingViewport__shrinkWrapExtent, _s17_), constraints.minWidth, constraints.maxWidth); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } didAcceptViewportDimension = _this._viewport$_offset.applyViewportDimension$1(effectiveExtent); didAcceptContentDimension = _this._viewport$_offset.applyContentDimensions$2(0, Math.max(0, A._lateReadCheck(_this.__RenderShrinkWrappingViewport__maxScrollExtent, "_maxScrollExtent") - effectiveExtent)); if (didAcceptViewportDimension && didAcceptContentDimension) break; } } while (true); switch (A.axisDirectionToAxis(_this._viewport$_axisDirection).index) { case 1: _this._box$_size = new A.Size(J.clamp$2$n(crossAxisExtent, constraints.minWidth, constraints.maxWidth), J.clamp$2$n(effectiveExtent, constraints.minHeight, constraints.maxHeight)); break; case 0: _this._box$_size = new A.Size(J.clamp$2$n(effectiveExtent, constraints.minWidth, constraints.maxWidth), J.clamp$2$n(crossAxisExtent, constraints.minHeight, constraints.maxHeight)); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, get$hasVisualOverflow() { return this._viewport$_hasVisualOverflow; }, updateOutOfBandData$2(growthDirection, childLayoutGeometry) { var _this = this; _this.__RenderShrinkWrappingViewport__maxScrollExtent = A._lateReadCheck(_this.__RenderShrinkWrappingViewport__maxScrollExtent, "_maxScrollExtent") + childLayoutGeometry.scrollExtent; if (childLayoutGeometry.hasVisualOverflow) _this._viewport$_hasVisualOverflow = true; _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = A._lateReadCheck(_this.__RenderShrinkWrappingViewport__shrinkWrapExtent, "_shrinkWrapExtent") + childLayoutGeometry.maxPaintExtent; }, updateChildLayoutOffset$3(child, layoutOffset, growthDirection) { var t1 = child.parentData; t1.toString; type$.SliverLogicalParentData._as(t1).layoutOffset = layoutOffset; }, paintOffsetOf$1(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverLogicalParentData._as(t1).layoutOffset; t1.toString; return this.computeAbsolutePaintOffset$3(child, t1, B.GrowthDirection_0); }, scrollOffsetOf$2(child, scrollOffsetWithinChild) { var t1, scrollOffsetToChild, t2, current = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild += current._geometry.scrollExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return scrollOffsetToChild + scrollOffsetWithinChild; }, maxScrollObstructionExtentBefore$1(child) { var t1, pinnedExtent, t2, current = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return pinnedExtent; }, applyPaintTransform$2(child, transform) { var offset = this.paintOffsetOf$1(type$.RenderSliver._as(child)); transform.translate$2(0, offset._dx, offset._dy); }, computeChildMainAxisPosition$2(child, parentMainAxisPosition) { var t2, t1 = child.parentData; t1.toString; type$.SliverLogicalParentData._as(t1); t2 = type$.SliverConstraints; switch (A.applyGrowthDirectionToAxisDirection(t2._as(A.RenderObject.prototype.get$constraints.call(child)).axisDirection, t2._as(A.RenderObject.prototype.get$constraints.call(child)).growthDirection).index) { case 2: case 1: t1 = t1.layoutOffset; t1.toString; return parentMainAxisPosition - t1; case 0: t2 = this._box$_size._dy; t1 = t1.layoutOffset; t1.toString; return t2 - parentMainAxisPosition - t1; case 3: t2 = this._box$_size._dx; t1 = t1.layoutOffset; t1.toString; return t2 - parentMainAxisPosition - t1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$indexOfFirstChild() { return 0; }, labelForChild$1(index) { return "child " + index; }, get$childrenInPaintOrder() { var t1, t2, children = A._setArrayType([], type$.JSArray_RenderSliver), child = this.ContainerRenderObjectMixin__lastChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { children.push(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; } return children; }, get$childrenInHitTestOrder() { var t1, t2, children = A._setArrayType([], type$.JSArray_RenderSliver), child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { children.push(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return children; } }; A._RenderViewportBase_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0"); child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(this)._eval$1("_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0"); child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A.ScrollDirection.prototype = { toString$0(_) { return "ScrollDirection." + this._core$_name; } }; A.ViewportOffset.prototype = { moveTo$3$curve$duration(_, to, curve, duration) { var t1 = duration._duration === 0; if (t1) { this.jumpTo$1(to); return A.Future_Future$value(null, type$.void); } else return this.animateTo$3$curve$duration(to, curve, duration); }, toString$0(_) { var _this = this, description = A._setArrayType([], type$.JSArray_String); _this.super$ScrollPosition$debugFillDescription(description); description.push(A.getRuntimeType(_this.context).toString$0(0)); description.push(A.S(_this.physics)); description.push(A.S(_this._activity)); description.push(_this._userScrollDirection.toString$0(0)); return "#" + A.shortHash(_this) + "(" + B.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1(description) { var t1 = this._pixels; if (t1 != null) description.push("offset: " + B.JSNumber_methods.toStringAsFixed$1(t1, 1)); } }; A.WrapAlignment.prototype = { toString$0(_) { return "WrapAlignment." + this._core$_name; } }; A.WrapCrossAlignment.prototype = { toString$0(_) { return "WrapCrossAlignment." + this._core$_name; } }; A._RunMetrics.prototype = {}; A.WrapParentData.prototype = {}; A.RenderWrap.prototype = { set$direction(_, value) { if (this._wrap$_direction === value) return; this._wrap$_direction = value; this.markNeedsLayout$0(); }, set$alignment(value) { if (this._wrap$_alignment === value) return; this._wrap$_alignment = value; this.markNeedsLayout$0(); }, set$spacing(_, value) { if (this._wrap$_spacing === value) return; this._wrap$_spacing = value; this.markNeedsLayout$0(); }, set$runAlignment(value) { if (this._runAlignment === value) return; this._runAlignment = value; this.markNeedsLayout$0(); }, set$runSpacing(value) { if (this._runSpacing === value) return; this._runSpacing = value; this.markNeedsLayout$0(); }, set$crossAxisAlignment(value) { if (this._wrap$_crossAxisAlignment === value) return; this._wrap$_crossAxisAlignment = value; this.markNeedsLayout$0(); }, setupParentData$1(child) { if (!(child.parentData instanceof A.WrapParentData)) child.parentData = new A.WrapParentData(null, null, B.Offset_0_0); }, computeMinIntrinsicWidth$1(height) { var child, t1, width, t2, _this = this; switch (_this._wrap$_direction.index) { case 0: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width = Math.max(width, A.checkNum(child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width; case 1: return _this._computeDryLayout$1(new A.BoxConstraints(0, 1 / 0, 0, height))._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicWidth$1(height) { var child, t1, width, t2, _this = this; switch (_this._wrap$_direction.index) { case 0: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width; case 1: return _this._computeDryLayout$1(new A.BoxConstraints(0, 1 / 0, 0, height))._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicHeight$1(width) { var child, t1, height, t2, _this = this; switch (_this._wrap$_direction.index) { case 0: return _this._computeDryLayout$1(new A.BoxConstraints(0, width, 0, 1 / 0))._dy; case 1: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), height = 0; child != null;) { height = Math.max(height, A.checkNum(child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, 1 / 0, child.get$computeMinIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicHeight$1(width) { var child, t1, height, t2, _this = this; switch (_this._wrap$_direction.index) { case 0: return _this._computeDryLayout$1(new A.BoxConstraints(0, width, 0, 1 / 0))._dy; case 1: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), height = 0; child != null;) { height += child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, 1 / 0, child.get$computeMaxIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeDistanceToActualBaseline$1(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, _getMainAxisExtent$1(childSize) { switch (this._wrap$_direction.index) { case 0: return childSize._dx; case 1: return childSize._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getCrossAxisExtent$1(childSize) { switch (this._wrap$_direction.index) { case 0: return childSize._dy; case 1: return childSize._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getOffset$2(mainAxisOffset, crossAxisOffset) { switch (this._wrap$_direction.index) { case 0: return new A.Offset(mainAxisOffset, crossAxisOffset); case 1: return new A.Offset(crossAxisOffset, mainAxisOffset); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getChildCrossAxisOffset$3(flipCrossAxis, runCrossAxisExtent, childCrossAxisExtent) { var freeSpace = runCrossAxisExtent - childCrossAxisExtent; switch (this._wrap$_crossAxisAlignment.index) { case 0: return flipCrossAxis ? freeSpace : 0; case 1: return flipCrossAxis ? 0 : freeSpace; case 2: return freeSpace / 2; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeDryLayout$1(constraints) { return this._computeDryLayout$1(constraints); }, _computeDryLayout$1(constraints) { var mainAxisLimit, childConstraints, child, t1, mainAxisExtent, crossAxisExtent, runMainAxisExtent, runCrossAxisExtent, childCount, childSize, childMainAxisExtent, childCrossAxisExtent, t2, _this = this, _s80_ = string$.x60null_c; switch (_this._wrap$_direction.index) { case 0: mainAxisLimit = constraints.maxWidth; childConstraints = new A.BoxConstraints(0, mainAxisLimit, 0, 1 / 0); break; case 1: mainAxisLimit = constraints.maxHeight; childConstraints = new A.BoxConstraints(0, 1 / 0, 0, mainAxisLimit); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0, crossAxisExtent = 0, runMainAxisExtent = 0, runCrossAxisExtent = 0, childCount = 0; child != null;) { childSize = A.ChildLayoutHelper_dryLayoutChild(child, childConstraints); childMainAxisExtent = _this._getMainAxisExtent$1(childSize); childCrossAxisExtent = _this._getCrossAxisExtent$1(childSize); if (childCount > 0 && runMainAxisExtent + childMainAxisExtent + _this._wrap$_spacing > mainAxisLimit) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent + _this._runSpacing; runMainAxisExtent = 0; runCrossAxisExtent = 0; childCount = 0; } runMainAxisExtent += childMainAxisExtent; runCrossAxisExtent = Math.max(runCrossAxisExtent, A.checkNum(childCrossAxisExtent)); if (childCount > 0) runMainAxisExtent += _this._wrap$_spacing; ++childCount; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } crossAxisExtent += runCrossAxisExtent; mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); switch (_this._wrap$_direction.index) { case 0: return constraints.constrain$1(new A.Size(mainAxisExtent, crossAxisExtent)); case 1: return constraints.constrain$1(new A.Size(crossAxisExtent, mainAxisExtent)); default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, performLayout$0() { var child, mainAxisLimit, childConstraints, flipMainAxis, flipCrossAxis, spacing, runSpacing, runMetrics, t1, mainAxisExtent, crossAxisExtent, runMainAxisExtent, runCrossAxisExtent, childCount, t2, childMainAxisExtent, childCrossAxisExtent, runCount, containerMainAxisExtent, containerCrossAxisExtent, crossAxisFreeSpace, runLeadingSpace, runBetweenSpace, crossAxisOffset, i, metrics, mainAxisFreeSpace, childLeadingSpace, childBetweenSpace, childMainPosition, t3, childCrossAxisOffset, _this = this, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._wrap$_hasVisualOverflow = false; child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) { _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return; } switch (_this._wrap$_direction.index) { case 0: mainAxisLimit = constraints.maxWidth; childConstraints = new A.BoxConstraints(0, mainAxisLimit, 0, 1 / 0); flipMainAxis = _this._wrap$_textDirection === B.TextDirection_0 && true; flipCrossAxis = _this._wrap$_verticalDirection === B.VerticalDirection_0 && true; break; case 1: mainAxisLimit = constraints.maxHeight; childConstraints = new A.BoxConstraints(0, 1 / 0, 0, mainAxisLimit); flipMainAxis = _this._wrap$_verticalDirection === B.VerticalDirection_0 && true; flipCrossAxis = _this._wrap$_textDirection === B.TextDirection_0 && true; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } spacing = _this._wrap$_spacing; runSpacing = _this._runSpacing; runMetrics = A._setArrayType([], type$.JSArray__RunMetrics); for (t1 = type$.WrapParentData, mainAxisExtent = 0, crossAxisExtent = 0, runMainAxisExtent = 0, runCrossAxisExtent = 0, childCount = 0; child != null;) { child.layout$2$parentUsesSize(0, childConstraints, true); t2 = child._box$_size; t2.toString; childMainAxisExtent = _this._getMainAxisExtent$1(t2); t2 = child._box$_size; t2.toString; childCrossAxisExtent = _this._getCrossAxisExtent$1(t2); if (childCount > 0 && runMainAxisExtent + spacing + childMainAxisExtent > mainAxisLimit) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent; if (runMetrics.length !== 0) crossAxisExtent += runSpacing; runMetrics.push(new A._RunMetrics(runMainAxisExtent, runCrossAxisExtent, childCount)); runMainAxisExtent = 0; runCrossAxisExtent = 0; childCount = 0; } runMainAxisExtent += childMainAxisExtent; if (childCount > 0) runMainAxisExtent += spacing; runCrossAxisExtent = Math.max(runCrossAxisExtent, A.checkNum(childCrossAxisExtent)); ++childCount; t2 = child.parentData; t2.toString; t1._as(t2); t2._runIndex = runMetrics.length; child = t2.ContainerParentDataMixin_nextSibling; } if (childCount > 0) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent; if (runMetrics.length !== 0) crossAxisExtent += runSpacing; runMetrics.push(new A._RunMetrics(runMainAxisExtent, runCrossAxisExtent, childCount)); } runCount = runMetrics.length; switch (_this._wrap$_direction.index) { case 0: t2 = _this._box$_size = constraints.constrain$1(new A.Size(mainAxisExtent, crossAxisExtent)); containerMainAxisExtent = t2._dx; containerCrossAxisExtent = t2._dy; break; case 1: t2 = _this._box$_size = constraints.constrain$1(new A.Size(crossAxisExtent, mainAxisExtent)); containerMainAxisExtent = t2._dy; containerCrossAxisExtent = t2._dx; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this._wrap$_hasVisualOverflow = containerMainAxisExtent < mainAxisExtent || containerCrossAxisExtent < crossAxisExtent; crossAxisFreeSpace = Math.max(0, containerCrossAxisExtent - crossAxisExtent); switch (_this._runAlignment.index) { case 0: runLeadingSpace = 0; runBetweenSpace = 0; break; case 1: runLeadingSpace = crossAxisFreeSpace; runBetweenSpace = 0; break; case 2: runLeadingSpace = crossAxisFreeSpace / 2; runBetweenSpace = 0; break; case 3: runBetweenSpace = runCount > 1 ? crossAxisFreeSpace / (runCount - 1) : 0; runLeadingSpace = 0; break; case 4: runBetweenSpace = crossAxisFreeSpace / runCount; runLeadingSpace = runBetweenSpace / 2; break; case 5: runBetweenSpace = crossAxisFreeSpace / (runCount + 1); runLeadingSpace = runBetweenSpace; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } runBetweenSpace += runSpacing; crossAxisOffset = flipCrossAxis ? containerCrossAxisExtent - runLeadingSpace : runLeadingSpace; child = _this.ContainerRenderObjectMixin__firstChild; for (i = 0; i < runCount; ++i) { metrics = runMetrics[i]; runCrossAxisExtent = metrics.crossAxisExtent; childCount = metrics.childCount; mainAxisFreeSpace = Math.max(0, containerMainAxisExtent - metrics.mainAxisExtent); switch (_this._wrap$_alignment.index) { case 0: childLeadingSpace = 0; childBetweenSpace = 0; break; case 1: childLeadingSpace = mainAxisFreeSpace; childBetweenSpace = 0; break; case 2: childLeadingSpace = mainAxisFreeSpace / 2; childBetweenSpace = 0; break; case 3: childBetweenSpace = childCount > 1 ? mainAxisFreeSpace / (childCount - 1) : 0; childLeadingSpace = 0; break; case 4: childBetweenSpace = mainAxisFreeSpace / childCount; childLeadingSpace = childBetweenSpace / 2; break; case 5: childBetweenSpace = mainAxisFreeSpace / (childCount + 1); childLeadingSpace = childBetweenSpace; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } childBetweenSpace += spacing; childMainPosition = flipMainAxis ? containerMainAxisExtent - childLeadingSpace : childLeadingSpace; if (flipCrossAxis) crossAxisOffset -= runCrossAxisExtent; for (; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (t2._runIndex !== i) break; t3 = child._box$_size; t3.toString; childMainAxisExtent = _this._getMainAxisExtent$1(t3); t3 = child._box$_size; t3.toString; childCrossAxisOffset = _this._getChildCrossAxisOffset$3(flipCrossAxis, runCrossAxisExtent, _this._getCrossAxisExtent$1(t3)); if (flipMainAxis) childMainPosition -= childMainAxisExtent; t2.offset = _this._getOffset$2(childMainPosition, crossAxisOffset + childCrossAxisOffset); childMainPosition = flipMainAxis ? childMainPosition - childBetweenSpace : childMainPosition + (childMainAxisExtent + childBetweenSpace); child = t2.ContainerParentDataMixin_nextSibling; } crossAxisOffset = flipCrossAxis ? crossAxisOffset - runBetweenSpace : crossAxisOffset + (runCrossAxisExtent + runBetweenSpace); } }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2(context, offset) { var t3, _this = this, t1 = _this._wrap$_hasVisualOverflow && _this._wrap$_clipBehavior !== B.Clip_0, t2 = _this._wrap$_clipRectLayer; if (t1) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$defaultPaint(), _this._wrap$_clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this.defaultPaint$2(context, offset); } }, dispose$0(_) { this._wrap$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); } }; A._RenderWrap_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.WrapParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.WrapParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._TaskEntry.prototype = { run$0() { var t1 = this.debugLabel; if (t1 == null) t1 = "Scheduled Task"; A.Timeline_timeSync(t1, new A._TaskEntry_run_closure(this), null); }, get$task() { return this.task; } }; A._TaskEntry_run_closure.prototype = { call$0() { var t1 = this.$this; t1.completer.complete$1(0, t1.task.call$0()); }, $signature: 1 }; A._FrameCallbackEntry.prototype = {}; A.SchedulerPhase.prototype = { toString$0(_) { return "SchedulerPhase." + this._core$_name; } }; A.SchedulerBinding.prototype = { addTimingsCallback$1(callback) { var t1 = this.SchedulerBinding__timingsCallbacks; t1.push(callback); if (t1.length === 1) { t1 = $.$get$EnginePlatformDispatcher__instance(); t1._onReportTimings = this.get$_executeTimingsCallbacks(); t1._onReportTimingsZone = $.Zone__current; } }, removeTimingsCallback$1(callback) { var t1 = this.SchedulerBinding__timingsCallbacks; B.JSArray_methods.remove$1(t1, callback); if (t1.length === 0) { t1 = $.$get$EnginePlatformDispatcher__instance(); t1._onReportTimings = null; t1._onReportTimingsZone = $.Zone__current; } }, _executeTimingsCallbacks$1(timings) { var callback, exception, stack, t2, _i, exception0, t3, t4, t1 = this.SchedulerBinding__timingsCallbacks, clonedCallbacks = A.List_List$of(t1, true, type$.void_Function_List_FrameTiming); for (t2 = clonedCallbacks.length, _i = 0; _i < t2; ++_i) { callback = clonedCallbacks[_i]; try { if (B.JSArray_methods.contains$1(t1, callback)) callback.call$1(timings); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t3 = A.ErrorDescription$("while executing callbacks for FrameTiming"); t4 = $.$get$FlutterError_onError(); if (t4 != null) t4.call$1(new A.FlutterErrorDetails(exception, stack, "Flutter framework", t3, null, null, false)); } } }, handleAppLifecycleStateChanged$1(state) { this.SchedulerBinding__lifecycleState = state; switch (state) { case B.AppLifecycleState_0: case B.AppLifecycleState_1: this._setFramesEnabledState$1(true); break; case B.AppLifecycleState_2: case B.AppLifecycleState_3: this._setFramesEnabledState$1(false); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, scheduleTask$1$3$debugLabel(task, priority, debugLabel, $T) { var t1 = this.SchedulerBinding__taskQueue, t2 = t1._priority_queue$_length, t3 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1.add$1(0, new A._TaskEntry(task, priority._priority$_value, debugLabel, null, new A._AsyncCompleter(t3, $T._eval$1("_AsyncCompleter<0>")), $T._eval$1("_TaskEntry<0>"))); if (t2 === 0 && this._lockCount <= 0) this._ensureEventLoopCallback$0(); return t3; }, _ensureEventLoopCallback$0() { if (this.SchedulerBinding__hasRequestedAnEventLoopCallback) return; this.SchedulerBinding__hasRequestedAnEventLoopCallback = true; A.Timer_Timer(B.Duration_0, this.get$_runTasks()); }, _runTasks$0() { this.SchedulerBinding__hasRequestedAnEventLoopCallback = false; if (this.handleEventLoopCallback$0()) this._ensureEventLoopCallback$0(); }, handleEventLoopCallback$0() { var entry, exception, exceptionStack, t2, newLength, last, exception0, _this = this, t1 = _this.SchedulerBinding__taskQueue; if (t1._priority_queue$_length === 0 || _this._lockCount > 0) return false; entry = t1.get$first(t1); t2 = entry.priority; if (_this.SchedulerBinding_schedulingStrategy.call$2$priority$scheduler(t2, _this)) { try { if (t1._priority_queue$_length === 0) A.throwExpression(A.StateError$("No element")); ++t1._priority_queue$_modificationCount; t1._elementAt$1(0); newLength = t1._priority_queue$_length - 1; last = t1._elementAt$1(newLength); B.JSArray_methods.$indexSet(t1._priority_queue$_queue, newLength, null); t1._priority_queue$_length = newLength; if (newLength > 0) t1._bubbleDown$2(last, 0); entry.run$0(); } catch (exception0) { exception = A.unwrapException(exception0); exceptionStack = A.getTraceFromException(exception0); t2 = A.ErrorDescription$("during a task callback"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, exceptionStack, "scheduler library", t2, null, null, false)); } return t1._priority_queue$_length !== 0; } return false; }, scheduleFrameCallback$2$rescheduling(callback, rescheduling) { var t1, _this = this; _this.scheduleFrame$0(); t1 = ++_this.SchedulerBinding__nextFrameCallbackId; _this.SchedulerBinding__transientCallbacks.$indexSet(0, t1, new A._FrameCallbackEntry(callback)); return _this.SchedulerBinding__nextFrameCallbackId; }, scheduleFrameCallback$1(callback) { return this.scheduleFrameCallback$2$rescheduling(callback, false); }, get$endOfFrame() { var _this = this; if (_this.SchedulerBinding__nextFrameCompleter == null) { if (_this.SchedulerBinding__schedulerPhase === B.SchedulerPhase_0) _this.scheduleFrame$0(); _this.SchedulerBinding__nextFrameCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); _this.SchedulerBinding__postFrameCallbacks.push(new A.SchedulerBinding_endOfFrame_closure(_this)); } return _this.SchedulerBinding__nextFrameCompleter.future; }, get$framesEnabled() { return this.SchedulerBinding__framesEnabled; }, _setFramesEnabledState$1(enabled) { if (this.SchedulerBinding__framesEnabled === enabled) return; this.SchedulerBinding__framesEnabled = enabled; if (enabled) this.scheduleFrame$0(); }, ensureFrameCallbacksRegistered$0() { var t1 = $.$get$EnginePlatformDispatcher__instance(); if (t1._onBeginFrame == null) { t1._onBeginFrame = this.get$_handleBeginFrame(); t1._onBeginFrameZone = $.Zone__current; } if (t1._onDrawFrame == null) { t1._onDrawFrame = this.get$_handleDrawFrame(); t1._onDrawFrameZone = $.Zone__current; } }, ensureVisualUpdate$0() { switch (this.SchedulerBinding__schedulerPhase.index) { case 0: case 4: this.scheduleFrame$0(); return; case 1: case 2: case 3: return; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, scheduleFrame$0() { var t1, _this = this; if (!_this.SchedulerBinding__hasScheduledFrame) t1 = !(A.SchedulerBinding.prototype.get$framesEnabled.call(_this) && _this.WidgetsBinding__readyToProduceFrames); else t1 = true; if (t1) return; _this.ensureFrameCallbacksRegistered$0(); $.$get$EnginePlatformDispatcher__instance().scheduleFrame$0(); _this.SchedulerBinding__hasScheduledFrame = true; }, scheduleForcedFrame$0() { if (this.SchedulerBinding__hasScheduledFrame) return; this.ensureFrameCallbacksRegistered$0(); $.$get$EnginePlatformDispatcher__instance().scheduleFrame$0(); this.SchedulerBinding__hasScheduledFrame = true; }, scheduleWarmUpFrame$0() { var timelineTask, hadScheduledFrame, _this = this; if (_this.SchedulerBinding__warmUpFrame || _this.SchedulerBinding__schedulerPhase !== B.SchedulerPhase_0) return; _this.SchedulerBinding__warmUpFrame = true; timelineTask = new A.TimelineTask(null, 0, A._setArrayType([], type$.JSArray_nullable__AsyncBlock)); timelineTask.start$1(0, "Warm-up frame"); hadScheduledFrame = _this.SchedulerBinding__hasScheduledFrame; A.Timer_Timer(B.Duration_0, new A.SchedulerBinding_scheduleWarmUpFrame_closure(_this)); A.Timer_Timer(B.Duration_0, new A.SchedulerBinding_scheduleWarmUpFrame_closure0(_this, hadScheduledFrame)); _this.lockEvents$1(new A.SchedulerBinding_scheduleWarmUpFrame_closure1(_this, timelineTask)); }, resetEpoch$0() { var _this = this; _this.SchedulerBinding__epochStart = _this._adjustForEpoch$1(_this.SchedulerBinding__lastRawTimeStamp); _this.SchedulerBinding__firstRawTimeStampInEpoch = null; }, _adjustForEpoch$1(rawTimeStamp) { var t1 = this.SchedulerBinding__firstRawTimeStampInEpoch, rawDurationSinceEpoch = t1 == null ? B.Duration_0 : new A.Duration(rawTimeStamp._duration - t1._duration); return A.Duration$(0, 0, B.JSNumber_methods.round$0(rawDurationSinceEpoch._duration / $._timeDilation) + this.SchedulerBinding__epochStart._duration, 0, 0, 0); }, _handleBeginFrame$1(rawTimeStamp) { if (this.SchedulerBinding__warmUpFrame) { this.SchedulerBinding__rescheduleAfterWarmUpFrame = true; return; } this.handleBeginFrame$1(rawTimeStamp); }, _handleDrawFrame$0() { var _this = this; if (_this.SchedulerBinding__rescheduleAfterWarmUpFrame) { _this.SchedulerBinding__rescheduleAfterWarmUpFrame = false; _this.SchedulerBinding__postFrameCallbacks.push(new A.SchedulerBinding__handleDrawFrame_closure(_this)); return; } _this.handleDrawFrame$0(); }, handleBeginFrame$1(rawTimeStamp) { var callbacks, t3, _this = this, t1 = _this.SchedulerBinding__frameTimelineTask, t2 = t1 == null; if (!t2) t1.start$2$arguments(0, "Frame", B.Map_9aZ6I); if (_this.SchedulerBinding__firstRawTimeStampInEpoch == null) _this.SchedulerBinding__firstRawTimeStampInEpoch = rawTimeStamp; t3 = rawTimeStamp == null; _this.SchedulerBinding__currentFrameTimeStamp = _this._adjustForEpoch$1(t3 ? _this.SchedulerBinding__lastRawTimeStamp : rawTimeStamp); if (!t3) _this.SchedulerBinding__lastRawTimeStamp = rawTimeStamp; _this.SchedulerBinding__hasScheduledFrame = false; try { if (!t2) t1.start$2$arguments(0, "Animate", B.Map_9aZ6I); _this.SchedulerBinding__schedulerPhase = B.SchedulerPhase_1; callbacks = _this.SchedulerBinding__transientCallbacks; _this.SchedulerBinding__transientCallbacks = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._FrameCallbackEntry); J.forEach$1$ax(callbacks, new A.SchedulerBinding_handleBeginFrame_closure(_this)); _this.SchedulerBinding__removedIds.clear$0(0); } finally { _this.SchedulerBinding__schedulerPhase = B.SchedulerPhase_2; } }, handleDrawFrame$0() { var callback, localPostFrameCallbacks, callback0, t3, t4, _i, t5, _this = this, t1 = _this.SchedulerBinding__frameTimelineTask, t2 = t1 == null; if (!t2) t1.finish$0(0); try { _this.SchedulerBinding__schedulerPhase = B.SchedulerPhase_3; for (t3 = _this.SchedulerBinding__persistentCallbacks, t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { callback = t3[_i]; t5 = _this.SchedulerBinding__currentFrameTimeStamp; t5.toString; _this._invokeFrameCallback$2(callback, t5); } _this.SchedulerBinding__schedulerPhase = B.SchedulerPhase_4; t3 = _this.SchedulerBinding__postFrameCallbacks; localPostFrameCallbacks = A.List_List$of(t3, true, type$.void_Function_Duration); B.JSArray_methods.set$length(t3, 0); for (t3 = localPostFrameCallbacks, t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { callback0 = t3[_i]; t5 = _this.SchedulerBinding__currentFrameTimeStamp; t5.toString; _this._invokeFrameCallback$2(callback0, t5); } } finally { _this.SchedulerBinding__schedulerPhase = B.SchedulerPhase_0; if (!t2) t1.finish$0(0); _this.SchedulerBinding__currentFrameTimeStamp = null; } }, _profileFramePostEvent$1(frameTiming) { var t1 = frameTiming._ui$_data, t2 = B.JSArray_methods.get$last(t1), t3 = t1[1], t4 = t1[4], t5 = A.Duration$(0, 0, t4, 0, 0, 0), t6 = t1[0]; A.postEvent("Flutter.Frame", A.LinkedHashMap_LinkedHashMap$_literal(["number", t2, "startTime", t3, "elapsed", t5._duration - A.Duration$(0, 0, t6, 0, 0, 0)._duration, "build", A.Duration$(0, 0, t1[2], 0, 0, 0)._duration - A.Duration$(0, 0, t3, 0, 0, 0)._duration, "raster", A.Duration$(0, 0, t4, 0, 0, 0)._duration - A.Duration$(0, 0, t1[3], 0, 0, 0)._duration, "vsyncOverhead", A.Duration$(0, 0, t3, 0, 0, 0)._duration - A.Duration$(0, 0, t6, 0, 0, 0)._duration], type$.String, type$.dynamic)); }, _invokeFrameCallback$3(callback, timeStamp, callbackStack) { var exception, exceptionStack, exception0, t1; try { callback.call$1(timeStamp); } catch (exception0) { exception = A.unwrapException(exception0); exceptionStack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("during a scheduler callback"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, exceptionStack, "scheduler library", t1, null, null, false)); } }, _invokeFrameCallback$2(callback, timeStamp) { return this._invokeFrameCallback$3(callback, timeStamp, null); } }; A.SchedulerBinding_endOfFrame_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1.SchedulerBinding__nextFrameCompleter.complete$0(0); t1.SchedulerBinding__nextFrameCompleter = null; }, $signature: 22 }; A.SchedulerBinding_scheduleWarmUpFrame_closure.prototype = { call$0() { this.$this.handleBeginFrame$1(null); }, $signature: 0 }; A.SchedulerBinding_scheduleWarmUpFrame_closure0.prototype = { call$0() { var t1 = this.$this; t1.handleDrawFrame$0(); t1.resetEpoch$0(); t1.SchedulerBinding__warmUpFrame = false; if (this.hadScheduledFrame) t1.scheduleFrame$0(); }, $signature: 0 }; A.SchedulerBinding_scheduleWarmUpFrame_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self.$this.get$endOfFrame(), $async$call$0); case 2: // returning from await. $async$self.timelineTask.finish$0(0); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 100 }; A.SchedulerBinding__handleDrawFrame_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1.SchedulerBinding__hasScheduledFrame = false; t1.scheduleFrame$0(); }, $signature: 22 }; A.SchedulerBinding_handleBeginFrame_closure.prototype = { call$2(id, callbackEntry) { var t2, t3, t1 = this.$this; if (!t1.SchedulerBinding__removedIds.contains$1(0, id)) { t2 = callbackEntry.callback; t3 = t1.SchedulerBinding__currentFrameTimeStamp; t3.toString; t1._invokeFrameCallback$3(t2, t3, callbackEntry.debugStack); } }, $signature: 2139 }; A.Priority.prototype = { get$value(_) { return this._priority$_value; }, $add(_, offset) { if (Math.abs(offset) > 10000) offset = 10000 * B.JSInt_methods.get$sign(offset); return new A.Priority(this._priority$_value + offset); }, $sub(_, offset) { return this.$add(0, -offset); } }; A.Ticker.prototype = { set$muted(_, value) { var t1, _this = this; if (value === _this._muted) return; _this._muted = value; if (value) _this.unscheduleTick$0(); else { t1 = _this._ticker$_future != null && _this._animationId == null; if (t1) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), false); } }, get$isTicking() { if (this._ticker$_future == null) return false; if (this._muted) return false; var t1 = $.SchedulerBinding__instance; t1.toString; if (A.SchedulerBinding.prototype.get$framesEnabled.call(t1) && t1.WidgetsBinding__readyToProduceFrames) return true; if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase !== B.SchedulerPhase_0) return true; return false; }, start$0(_) { var t1, t2, _this = this; _this._ticker$_future = new A.TickerFuture(new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void)); if (!_this._muted) t1 = _this._animationId == null; else t1 = false; if (t1) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), false); t1 = $.SchedulerBinding__instance; t2 = t1.SchedulerBinding__schedulerPhase.index; if (t2 > 0 && t2 < 4) { t1 = t1.SchedulerBinding__currentFrameTimeStamp; t1.toString; _this._startTime = t1; } t1 = _this._ticker$_future; t1.toString; return t1; }, stop$1$canceled(_, canceled) { var _this = this, t1 = _this._ticker$_future; if (t1 == null) return; _this._startTime = _this._ticker$_future = null; _this.unscheduleTick$0(); if (canceled) t1._cancel$1(_this); else t1._ticker$_complete$0(); }, stop$0($receiver) { return this.stop$1$canceled($receiver, false); }, _ticker$_tick$1(timeStamp) { var t1, _this = this; _this._animationId = null; t1 = _this._startTime; if (t1 == null) t1 = _this._startTime = timeStamp; t1.toString; _this._onTick.call$1(new A.Duration(timeStamp._duration - t1._duration)); if (!_this._muted && _this._ticker$_future != null && _this._animationId == null) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), true); }, unscheduleTick$0() { var t2, t1 = this._animationId; if (t1 != null) { t2 = $.SchedulerBinding__instance; t2.SchedulerBinding__transientCallbacks.remove$1(0, t1); t2.SchedulerBinding__removedIds.add$1(0, t1); this._animationId = null; } }, dispose$0(_) { var _this = this, t1 = _this._ticker$_future; if (t1 != null) { _this._ticker$_future = null; _this.unscheduleTick$0(); t1._cancel$1(_this); } }, toString$1$debugIncludeStack(_, debugIncludeStack) { return "Ticker()".charCodeAt(0) == 0 ? "Ticker()" : "Ticker()"; }, toString$0($receiver) { return this.toString$1$debugIncludeStack($receiver, false); } }; A.TickerFuture.prototype = { _ticker$_complete$0() { this._completed = true; this._primaryCompleter.complete$0(0); var t1 = this._secondaryCompleter; if (t1 != null) t1.complete$0(0); }, _cancel$1(ticker) { var t1; this._completed = false; t1 = this._secondaryCompleter; if (t1 != null) t1.completeError$1(new A.TickerCanceled(ticker)); }, whenCompleteOrCancel$1(callback) { var t1 = new A.TickerFuture_whenCompleteOrCancel_thunk(callback); this.get$orCancel().then$1$2$onError(0, t1, t1, type$.void); }, get$orCancel() { var t1, t2, _this = this; if (_this._secondaryCompleter == null) { t1 = _this._secondaryCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t2 = _this._completed; if (t2 != null) if (t2) t1.complete$0(0); else t1.completeError$1(B.TickerCanceled_null); } return _this._secondaryCompleter.future; }, asStream$0() { var t1 = this._primaryCompleter.future; return A.Stream_Stream$fromFuture(t1, t1.$ti._precomputed1); }, catchError$2$test(onError, test) { return this._primaryCompleter.future.catchError$2$test(onError, test); }, catchError$1(onError) { return this.catchError$2$test(onError, null); }, then$1$2$onError(_, onValue, onError, $R) { return this._primaryCompleter.future.then$1$2$onError(0, onValue, onError, $R); }, then$1$1($receiver, onValue, $R) { return this.then$1$2$onError($receiver, onValue, null, $R); }, whenComplete$1(action) { return this._primaryCompleter.future.whenComplete$1(action); }, toString$0(_) { var t1 = A.shortHash(this), t2 = this._completed; if (t2 == null) t2 = "active"; else t2 = t2 ? "complete" : "canceled"; return "#" + t1 + "(" + t2 + ")"; }, $isFuture: 1 }; A.TickerFuture_whenCompleteOrCancel_thunk.prototype = { call$1(value) { this.callback.call$0(); }, $signature: 83 }; A.TickerCanceled.prototype = { toString$0(_) { var t1 = this.ticker; if (t1 != null) return "This ticker was canceled: " + t1.toString$0(0); return 'The ticker was canceled before the "orCancel" property was first used.'; }, $isException: 1 }; A.SemanticsBinding.prototype = {}; A.SemanticsTag.prototype = { toString$0(_) { return "SemanticsTag(" + this.name + ")"; }, get$name(receiver) { return this.name; } }; A.CustomSemanticsAction.prototype = { get$hashCode(_) { return A.Object_hash(this.label, this.hint, this.action, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.CustomSemanticsAction && other.label == _this.label && other.hint == _this.hint && other.action == _this.action; }, toString$0(_) { var _this = this; return "CustomSemanticsAction(" + A.S($.CustomSemanticsAction__ids.$index(0, _this)) + ", label:" + A.S(_this.label) + ", hint:" + A.S(_this.hint) + ", action:" + A.S(_this.action) + ")"; } }; A.AttributedString.prototype = { $add(_, other) { var t3, newAttributes, t4, t5, _i, attribute, t6, t1 = this.string, t2 = t1.length; if (t2 === 0) return other; t3 = other.string; if (t3.length === 0) return this; newAttributes = A.List_List$of(this.attributes, true, type$.StringAttribute); t4 = other.attributes; t5 = t4.length; if (t5 !== 0) for (_i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { attribute = t4[_i]; t6 = attribute.range; newAttributes.push(J.copy$1$range$x(attribute, new A.TextRange(t6.start + t2, t6.end + t2))); } return new A.AttributedString(t1 + t3, newAttributes); }, $eq(_, other) { if (other == null) return false; return J.get$runtimeType$(other) === A.getRuntimeType(this) && other instanceof A.AttributedString && other.string == this.string && A.listEquals0(other.attributes, this.attributes); }, get$hashCode(_) { return A.Object_hash(this.string, this.attributes, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "AttributedString('" + A.S(this.string) + "', attributes: " + A.S(this.attributes) + ")"; } }; A.SemanticsData.prototype = { get$value(_) { return this.attributedValue.string; }, toStringShort$0() { return "SemanticsData"; }, $eq(_, other) { var _this = this; if (other == null) return false; return other instanceof A.SemanticsData && other.flags === _this.flags && other.actions === _this.actions && J.$eq$(other.attributedLabel, _this.attributedLabel) && J.$eq$(other.attributedValue, _this.attributedValue) && J.$eq$(other.attributedIncreasedValue, _this.attributedIncreasedValue) && J.$eq$(other.attributedDecreasedValue, _this.attributedDecreasedValue) && J.$eq$(other.attributedHint, _this.attributedHint) && other.textDirection == _this.textDirection && other.rect.$eq(0, _this.rect) && A.setEquals(other.tags, _this.tags) && other.scrollChildCount == _this.scrollChildCount && other.scrollIndex == _this.scrollIndex && J.$eq$(other.textSelection, _this.textSelection) && other.scrollPosition == _this.scrollPosition && other.scrollExtentMax == _this.scrollExtentMax && other.scrollExtentMin == _this.scrollExtentMin && other.platformViewId == _this.platformViewId && other.maxValueLength == _this.maxValueLength && other.currentValueLength == _this.currentValueLength && J.$eq$(other.transform, _this.transform) && other.elevation == _this.elevation && other.thickness === _this.thickness && A.SemanticsData__sortedListsEqual(other.customSemanticsActionIds, _this.customSemanticsActionIds); }, get$hashCode(_) { var _this = this, t1 = A.Object_hashAll(_this.customSemanticsActionIds); return A.Object_hash(_this.flags, _this.actions, _this.attributedLabel, _this.attributedValue, _this.attributedIncreasedValue, _this.attributedDecreasedValue, _this.attributedHint, _this.textDirection, _this.rect, _this.tags, _this.textSelection, _this.scrollChildCount, _this.scrollIndex, _this.scrollPosition, _this.scrollExtentMax, _this.scrollExtentMin, _this.platformViewId, _this.maxValueLength, _this.currentValueLength, A.Object_hash(_this.transform, _this.elevation, _this.thickness, t1, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue)); } }; A._SemanticsDiagnosticableNode.prototype = { getChildren$0() { return this.value.debugDescribeChildren$1$childOrder(this.childOrder); } }; A.SemanticsHintOverrides.prototype = { get$hashCode(_) { return A.Object_hash(this.onTapHint, this.onLongPressHint, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.SemanticsHintOverrides && other.onTapHint == this.onTapHint && true; } }; A.SemanticsProperties.prototype = { toStringShort$0() { return "SemanticsProperties"; }, get$value(receiver) { return this.value; } }; A.SemanticsNode.prototype = { get$id(_) { return this._semantics$_id; }, set$transform(_, value) { if (!A.MatrixUtils_matrixEquals(this._semantics$_transform, value)) { this._semantics$_transform = value == null || A.MatrixUtils_isIdentity(value) ? null : value; this._semantics$_markDirty$0(); } }, set$rect(_, value) { if (!this._semantics$_rect.$eq(0, value)) { this._semantics$_rect = value; this._semantics$_markDirty$0(); } }, set$isMergedIntoParent(value) { if (this._isMergedIntoParent === value) return; this._isMergedIntoParent = value; this._semantics$_markDirty$0(); }, _replaceChildren$1(newChildren) { var t2, _i, t3, sawChange, child, t4, i, _this = this, t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._dead = true; for (t1 = newChildren.length, _i = 0; _i < t1; ++_i) newChildren[_i]._dead = false; t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, t3 = type$.nullable_SemanticsNode, sawChange = false, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child._dead) { t4 = J.getInterceptor$x(child); if (t3._as(A.AbstractNode.prototype.get$parent.call(t4, child)) === _this) { child._node$_parent = null; if (_this._node$_owner != null) child.detach$0(0); } sawChange = true; } } else sawChange = false; for (t1 = newChildren.length, t2 = type$.nullable_SemanticsNode, _i = 0; _i < newChildren.length; newChildren.length === t1 || (0, A.throwConcurrentModificationError)(newChildren), ++_i) { child = newChildren[_i]; child.toString; t3 = J.getInterceptor$x(child); if (t2._as(A.AbstractNode.prototype.get$parent.call(t3, child)) !== _this) { if (t2._as(A.AbstractNode.prototype.get$parent.call(t3, child)) != null) { t3 = t2._as(A.AbstractNode.prototype.get$parent.call(t3, child)); if (t3 != null) { child._node$_parent = null; if (t3._node$_owner != null) child.detach$0(0); } } child._node$_parent = _this; t3 = _this._node$_owner; if (t3 != null) child.attach$1(t3); t3 = child._depth; t4 = _this._depth; if (t3 <= t4) { child._depth = t4 + 1; child.redepthChildren$0(); } sawChange = true; } } if (!sawChange && _this._semantics$_children != null) for (t1 = _this._semantics$_children, t2 = t1.length, i = 0; i < t2; ++i) if (t1[i]._semantics$_id !== newChildren[i]._semantics$_id) { sawChange = true; break; } _this._semantics$_children = newChildren; if (sawChange) _this._semantics$_markDirty$0(); }, get$hasChildren() { var t1 = this._semantics$_children; t1 = t1 == null ? null : t1.length !== 0; return t1 === true; }, _visitDescendants$1(visitor) { var t2, _i, child, t1 = this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (!visitor.call$1(child) || !child._visitDescendants$1(visitor)) return false; } return true; }, redepthChildren$0() { var t1 = this._semantics$_children; if (t1 != null) B.JSArray_methods.forEach$1(t1, this.get$redepthChild()); }, attach$1(owner) { var t1, t2, _i, _this = this; _this.super$AbstractNode$attach(owner); for (t1 = owner._semantics$_nodes; t1.containsKey$1(0, _this._semantics$_id);) _this._semantics$_id = $.SemanticsNode__lastIdentifier = ($.SemanticsNode__lastIdentifier + 1) % 65535; t1.$indexSet(0, _this._semantics$_id, _this); owner._detachedNodes.remove$1(0, _this); if (_this._semantics$_dirty) { _this._semantics$_dirty = false; _this._semantics$_markDirty$0(); } t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].attach$1(owner); }, detach$0(_) { var t2, t3, _i, child, t4, _this = this, t1 = type$.nullable_SemanticsOwner; t1._as(A.AbstractNode.prototype.get$owner.call(_this))._semantics$_nodes.remove$1(0, _this._semantics$_id); t1._as(A.AbstractNode.prototype.get$owner.call(_this))._detachedNodes.add$1(0, _this); _this.super$AbstractNode$detach(0); t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, t3 = type$.nullable_SemanticsNode, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; child.toString; t4 = J.getInterceptor$x(child); if (t3._as(A.AbstractNode.prototype.get$parent.call(t4, child)) === _this) t4.detach$0(child); } _this._semantics$_markDirty$0(); }, _semantics$_markDirty$0() { var _this = this; if (_this._semantics$_dirty) return; _this._semantics$_dirty = true; if (_this._node$_owner != null) type$.nullable_SemanticsOwner._as(A.AbstractNode.prototype.get$owner.call(_this))._semantics$_dirtyNodes.add$1(0, _this); }, get$value(_) { return this._semantics$_attributedValue.string; }, updateWith$2$childrenInInversePaintOrder$config(_, childrenInInversePaintOrder, config) { var _this = this; if (config == null) config = $.$get$SemanticsNode__kEmptyConfig(); if (!J.$eq$(_this._semantics$_attributedLabel, config._semantics$_attributedLabel) || !J.$eq$(_this._semantics$_attributedHint, config._semantics$_attributedHint) || _this._semantics$_elevation != config._semantics$_elevation || _this._semantics$_thickness !== config._semantics$_thickness || !J.$eq$(_this._semantics$_attributedValue, config._semantics$_attributedValue) || !J.$eq$(_this._semantics$_attributedIncreasedValue, config._semantics$_attributedIncreasedValue) || !J.$eq$(_this._semantics$_attributedDecreasedValue, config._semantics$_attributedDecreasedValue) || _this._flags !== config._flags || _this._semantics$_textDirection != config._semantics$_textDirection || _this._semantics$_sortKey != config._semantics$_sortKey || !J.$eq$(_this._textSelection, config._textSelection) || _this._scrollPosition != config._scrollPosition || _this._scrollExtentMax != config._scrollExtentMax || _this._scrollExtentMin != config._scrollExtentMin || _this._actionsAsBits !== config._actionsAsBits || _this.indexInParent != config._indexInParent || _this._platformViewId != config._platformViewId || _this._semantics$_maxValueLength != config._semantics$_maxValueLength || _this._semantics$_currentValueLength != config._semantics$_currentValueLength || _this._mergeAllDescendantsIntoThisNode !== config._isMergingSemanticsOfDescendants) _this._semantics$_markDirty$0(); _this._semantics$_attributedLabel = config._semantics$_attributedLabel; _this._semantics$_attributedValue = config._semantics$_attributedValue; _this._semantics$_attributedIncreasedValue = config._semantics$_attributedIncreasedValue; _this._semantics$_attributedDecreasedValue = config._semantics$_attributedDecreasedValue; _this._semantics$_attributedHint = config._semantics$_attributedHint; _this._semantics$_hintOverrides = config._semantics$_hintOverrides; _this._semantics$_elevation = config._semantics$_elevation; _this._semantics$_thickness = config._semantics$_thickness; _this._flags = config._flags; _this._semantics$_textDirection = config._semantics$_textDirection; _this._semantics$_sortKey = config._semantics$_sortKey; _this._actions = A.LinkedHashMap_LinkedHashMap$of(config._actions, type$.SemanticsAction, type$.void_Function_nullable_Object); _this._semantics$_customSemanticsActions = A.LinkedHashMap_LinkedHashMap$of(config._semantics$_customSemanticsActions, type$.CustomSemanticsAction, type$.void_Function); _this._actionsAsBits = config._actionsAsBits; _this._textSelection = config._textSelection; _this._scrollPosition = config._scrollPosition; _this._scrollExtentMax = config._scrollExtentMax; _this._scrollExtentMin = config._scrollExtentMin; _this._mergeAllDescendantsIntoThisNode = config._isMergingSemanticsOfDescendants; _this._scrollChildCount = config._scrollChildCount; _this._scrollIndex = config._scrollIndex; _this.indexInParent = config._indexInParent; _this._platformViewId = config._platformViewId; _this._semantics$_maxValueLength = config._semantics$_maxValueLength; _this._semantics$_currentValueLength = config._semantics$_currentValueLength; _this._replaceChildren$1(childrenInInversePaintOrder == null ? B.List_empty21 : childrenInInversePaintOrder); }, updateWith$1$config($receiver, config) { return this.updateWith$2$childrenInInversePaintOrder$config($receiver, null, config); }, getSemanticsData$0() { var t1, elevation, customSemanticsActionIds, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _box_0 = {}; _box_0.flags = _this._flags; _box_0.actions = _this._actionsAsBits; _box_0.attributedLabel = _this._semantics$_attributedLabel; _box_0.attributedValue = _this._semantics$_attributedValue; _box_0.attributedIncreasedValue = _this._semantics$_attributedIncreasedValue; _box_0.attributedDecreasedValue = _this._semantics$_attributedDecreasedValue; _box_0.attributedHint = _this._semantics$_attributedHint; _box_0.textDirection = _this._semantics$_textDirection; t1 = _this.tags; _box_0.mergedTags = t1 == null ? null : A.LinkedHashSet_LinkedHashSet$of(t1, type$.SemanticsTag); _box_0.textSelection = _this._textSelection; _box_0.scrollChildCount = _this._scrollChildCount; _box_0.scrollIndex = _this._scrollIndex; _box_0.scrollPosition = _this._scrollPosition; _box_0.scrollExtentMax = _this._scrollExtentMax; _box_0.scrollExtentMin = _this._scrollExtentMin; _box_0.platformViewId = _this._platformViewId; _box_0.maxValueLength = _this._semantics$_maxValueLength; _box_0.currentValueLength = _this._semantics$_currentValueLength; elevation = _this._semantics$_elevation; _box_0.thickness = _this._semantics$_thickness; customSemanticsActionIds = A.LinkedHashSet_LinkedHashSet$_empty(type$.int); for (t1 = _this._semantics$_customSemanticsActions, t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) customSemanticsActionIds.add$1(0, A.CustomSemanticsAction_getIdentifier(t1.__js_helper$_current)); t1 = _this._semantics$_hintOverrides; if (t1 != null) { t1 = t1.onTapHint; if (t1 != null) customSemanticsActionIds.add$1(0, A.CustomSemanticsAction_getIdentifier(new A.CustomSemanticsAction(null, t1, B.SemanticsAction_1))); _this._semantics$_hintOverrides.toString; } if (_this._mergeAllDescendantsIntoThisNode) _this._visitDescendants$1(new A.SemanticsNode_getSemanticsData_closure(_box_0, _this, customSemanticsActionIds)); t1 = _box_0.flags; t2 = _box_0.actions; t3 = _box_0.attributedLabel; t4 = _box_0.attributedValue; t5 = _box_0.attributedIncreasedValue; t6 = _box_0.attributedDecreasedValue; t7 = _box_0.attributedHint; t8 = _box_0.textDirection; t9 = _this._semantics$_rect; t10 = _this._semantics$_transform; t11 = _box_0.thickness; t12 = _box_0.mergedTags; t13 = _box_0.textSelection; t14 = _box_0.scrollChildCount; t15 = _box_0.scrollIndex; t16 = _box_0.scrollPosition; t17 = _box_0.scrollExtentMax; t18 = _box_0.scrollExtentMin; t19 = _box_0.platformViewId; t20 = _box_0.maxValueLength; t21 = _box_0.currentValueLength; t22 = A.List_List$of(customSemanticsActionIds, true, customSemanticsActionIds.$ti._eval$1("SetMixin.E")); B.JSArray_methods.sort$0(t22); return new A.SemanticsData(t1, t2, t3, t4, t5, t6, t7, t8, t13, t14, t15, t16, t17, t18, t19, t20, t21, t9, t12, t10, elevation, t11, t22); }, _addToUpdate$2(builder, customSemanticsActionIdsUpdate) { var childrenInTraversalOrder, childrenInHitTestOrder, childCount, sortedChildren, i, t1, t2, customSemanticsActionIds, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, _this = this, data = _this.getSemanticsData$0(); if (!_this.get$hasChildren() || _this._mergeAllDescendantsIntoThisNode) { childrenInTraversalOrder = $.$get$SemanticsNode__kEmptyChildList(); childrenInHitTestOrder = childrenInTraversalOrder; } else { childCount = _this._semantics$_children.length; sortedChildren = _this._childrenInTraversalOrder$0(); childrenInTraversalOrder = new Int32Array(childCount); for (i = 0; i < childCount; ++i) childrenInTraversalOrder[i] = sortedChildren[i]._semantics$_id; childrenInHitTestOrder = new Int32Array(childCount); for (i = childCount - 1, t1 = _this._semantics$_children; i >= 0; --i) childrenInHitTestOrder[i] = t1[childCount - i - 1]._semantics$_id; } t1 = data.customSemanticsActionIds; t2 = t1.length; if (t2 !== 0) { customSemanticsActionIds = new Int32Array(t2); for (i = 0; i < t1.length; ++i) { t2 = t1[i]; customSemanticsActionIds[i] = t2; customSemanticsActionIdsUpdate.add$1(0, t2); } } else customSemanticsActionIds = null; t1 = _this._semantics$_id; t2 = data.attributedLabel; t3 = t2.string; t2 = t2.attributes; t4 = data.attributedValue; t5 = t4.string; t4 = t4.attributes; t6 = data.attributedIncreasedValue; t7 = t6.string; t6 = t6.attributes; t8 = data.attributedDecreasedValue; t9 = t8.string; t8 = t8.attributes; t10 = data.attributedHint; t11 = t10.string; t10 = t10.attributes; t12 = data.textSelection; t13 = t12 != null; t14 = t13 ? t12.baseOffset : -1; t12 = t13 ? t12.extentOffset : -1; t13 = data.scrollChildCount; if (t13 == null) t13 = 0; t15 = data.scrollIndex; if (t15 == null) t15 = 0; t16 = data.scrollPosition; if (t16 == null) t16 = 0 / 0; t17 = data.scrollExtentMax; if (t17 == null) t17 = 0 / 0; t18 = data.scrollExtentMin; if (t18 == null) t18 = 0 / 0; t19 = data.transform; t19 = t19 == null ? null : t19._m4storage; if (t19 == null) t19 = $.$get$SemanticsNode__kIdentityTransform(); t20 = customSemanticsActionIds == null ? $.$get$SemanticsNode__kEmptyCustomSemanticsActionsList() : customSemanticsActionIds; t19.toString; builder._nodeUpdates.push(new A.SemanticsNodeUpdate(t1, data.flags, data.actions, t14, t12, t13, t15, t16, t17, t18, data.rect, t3, t2, t11, t10, t5, t4, t7, t6, t9, t8, null, data.textDirection, A.toMatrix32(t19), childrenInTraversalOrder, childrenInHitTestOrder, t20, data.thickness)); _this._semantics$_dirty = false; }, _childrenInTraversalOrder$0() { var t2, childrenInDefaultOrder, everythingSorted, sortNodes, lastSortKey, position, child, sortKey, isCompatibleWithPreviousSortKey, _this = this, inheritedTextDirection = _this._semantics$_textDirection, t1 = type$.nullable_SemanticsNode, ancestor = t1._as(A.AbstractNode.prototype.get$parent.call(_this, _this)); while (true) { t2 = inheritedTextDirection == null; if (!(t2 && ancestor != null)) break; inheritedTextDirection = ancestor._semantics$_textDirection; ancestor = t1._as(A.AbstractNode.prototype.get$parent.call(ancestor, ancestor)); } childrenInDefaultOrder = _this._semantics$_children; if (!t2) { childrenInDefaultOrder.toString; childrenInDefaultOrder = A._childrenInDefaultOrder(childrenInDefaultOrder, inheritedTextDirection); } t1 = type$.JSArray__TraversalSortNode; everythingSorted = A._setArrayType([], t1); sortNodes = A._setArrayType([], t1); for (lastSortKey = null, position = 0; position < childrenInDefaultOrder.length; ++position) { child = childrenInDefaultOrder[position]; sortKey = child._semantics$_sortKey; lastSortKey = position > 0 ? childrenInDefaultOrder[position - 1]._semantics$_sortKey : null; if (position !== 0) if (J.get$runtimeType$(sortKey) === J.get$runtimeType$(lastSortKey)) { if (sortKey != null) lastSortKey.toString; isCompatibleWithPreviousSortKey = true; } else isCompatibleWithPreviousSortKey = false; else isCompatibleWithPreviousSortKey = true; if (!isCompatibleWithPreviousSortKey && sortNodes.length !== 0) { if (lastSortKey != null) { if (!!sortNodes.immutable$list) A.throwExpression(A.UnsupportedError$("sort")); t1 = sortNodes.length - 1; if (t1 - 0 <= 32) A.Sort__insertionSort(sortNodes, 0, t1, J._interceptors_JSArray__compareAny$closure()); else A.Sort__dualPivotQuicksort(sortNodes, 0, t1, J._interceptors_JSArray__compareAny$closure()); } B.JSArray_methods.addAll$1(everythingSorted, sortNodes); B.JSArray_methods.set$length(sortNodes, 0); } sortNodes.push(new A._TraversalSortNode(child, sortKey, position)); } if (lastSortKey != null) B.JSArray_methods.sort$0(sortNodes); B.JSArray_methods.addAll$1(everythingSorted, sortNodes); t1 = type$.MappedListIterable__TraversalSortNode_SemanticsNode; return A.List_List$of(new A.MappedListIterable(everythingSorted, new A.SemanticsNode__childrenInTraversalOrder_closure(), t1), true, t1._eval$1("ListIterable.E")); }, sendEvent$1($event) { if (this._node$_owner == null) return; B.BasicMessageChannel_QXb.send$1(0, $event.toMap$1$nodeId(this._semantics$_id)); }, toStringShort$0() { return "SemanticsNode#" + this._semantics$_id; }, toStringDeep$1$childOrder(childOrder) { A._SemanticsDiagnosticableNode$(childOrder, null, B.DiagnosticsTreeStyle_1, this); return ""; }, toStringDeep$0() { return this.toStringDeep$1$childOrder(B.DebugSemanticsDumpOrder_1); }, toDiagnosticsNode$3$childOrder$name$style(childOrder, $name, style) { return new A._SemanticsDiagnosticableNode(childOrder, this, $name, true, true, null, style); }, toDiagnosticsNode$1$style(style) { return this.toDiagnosticsNode$3$childOrder$name$style(B.DebugSemanticsDumpOrder_1, null, style); }, toDiagnosticsNode$0() { return this.toDiagnosticsNode$3$childOrder$name$style(B.DebugSemanticsDumpOrder_1, null, B.DiagnosticsTreeStyle_1); }, debugDescribeChildren$1$childOrder(childOrder) { var t2, t1 = this.debugListChildrenInOrder$1(childOrder); t1.toString; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return A.List_List$of(new A.MappedListIterable(t1, new A.SemanticsNode_debugDescribeChildren_closure(childOrder), t2), true, t2._eval$1("ListIterable.E")); }, debugDescribeChildren$0() { return this.debugDescribeChildren$1$childOrder(B.DebugSemanticsDumpOrder_0); }, debugListChildrenInOrder$1(childOrder) { var t1 = this._semantics$_children; if (t1 == null) return B.List_empty21; switch (childOrder.index) { case 0: return t1; case 1: return this._childrenInTraversalOrder$0(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $isDiagnosticableTree: 1 }; A.SemanticsNode_getSemanticsData_closure.prototype = { call$1(node) { var t2, t3, t1 = this._box_0; t1.flags = t1.flags | node._flags; t1.actions = t1.actions | node._actionsAsBits; if (t1.textDirection == null) t1.textDirection = node._semantics$_textDirection; if (t1.textSelection == null) t1.textSelection = node._textSelection; if (t1.scrollChildCount == null) t1.scrollChildCount = node._scrollChildCount; if (t1.scrollIndex == null) t1.scrollIndex = node._scrollIndex; if (t1.scrollPosition == null) t1.scrollPosition = node._scrollPosition; if (t1.scrollExtentMax == null) t1.scrollExtentMax = node._scrollExtentMax; if (t1.scrollExtentMin == null) t1.scrollExtentMin = node._scrollExtentMin; if (t1.platformViewId == null) t1.platformViewId = node._platformViewId; if (t1.maxValueLength == null) t1.maxValueLength = node._semantics$_maxValueLength; if (t1.currentValueLength == null) t1.currentValueLength = node._semantics$_currentValueLength; t2 = t1.attributedValue; if (t2 == null || t2.string === "") t1.attributedValue = node._semantics$_attributedValue; t2 = t1.attributedIncreasedValue; if (t2 == null || t2.string === "") t1.attributedIncreasedValue = node._semantics$_attributedIncreasedValue; t2 = t1.attributedDecreasedValue; if (t2 == null || t2.string === "") t1.attributedDecreasedValue = node._semantics$_attributedDecreasedValue; t2 = node.tags; if (t2 != null) { t3 = t1.mergedTags; (t3 == null ? t1.mergedTags = A.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t3).addAll$1(0, t2); } for (t2 = this.$this._semantics$_customSemanticsActions, t2 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t2)._precomputed1), t3 = this.customSemanticsActionIds; t2.moveNext$0();) t3.add$1(0, A.CustomSemanticsAction_getIdentifier(t2.__js_helper$_current)); t2 = node._semantics$_hintOverrides; if (t2 != null) { t2 = t2.onTapHint; if (t2 != null) t3.add$1(0, A.CustomSemanticsAction_getIdentifier(new A.CustomSemanticsAction(null, t2, B.SemanticsAction_1))); node._semantics$_hintOverrides.toString; } t2 = t1.attributedLabel; t3 = t1.textDirection; t1.attributedLabel = A._concatAttributedString(node._semantics$_attributedLabel, node._semantics$_textDirection, t2, t3); t3 = t1.attributedHint; t2 = t1.textDirection; t1.attributedHint = A._concatAttributedString(node._semantics$_attributedHint, node._semantics$_textDirection, t3, t2); t1.thickness = Math.max(t1.thickness, node._semantics$_thickness + node._semantics$_elevation); return true; }, $signature: 416 }; A.SemanticsNode__childrenInTraversalOrder_closure.prototype = { call$1(sortNode) { return sortNode.node; }, $signature: 2138 }; A.SemanticsNode_debugDescribeChildren_closure.prototype = { call$1(node) { node.toString; return A._SemanticsDiagnosticableNode$(this.childOrder, null, B.DiagnosticsTreeStyle_1, node); }, $signature: 2137 }; A._BoxEdge.prototype = { compareTo$1(_, other) { return J.compareTo$1$ns(this.offset, other.offset); }, $isComparable: 1 }; A._SemanticsSortGroup.prototype = { compareTo$1(_, other) { return J.compareTo$1$ns(this.startOffset, other.startOffset); }, sortedWithinVerticalGroup$0() { var t1, t2, _i, child, t3, horizontalGroups, group, depth, edge, edges = A._setArrayType([], type$.JSArray__BoxEdge); for (t1 = this.nodes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t3 = child._semantics$_rect; edges.push(new A._BoxEdge(true, A._pointInParentCoordinates(child, new A.Offset(t3.left - -0.1, t3.top - -0.1))._dx, child)); edges.push(new A._BoxEdge(false, A._pointInParentCoordinates(child, new A.Offset(t3.right + -0.1, t3.bottom + -0.1))._dx, child)); } B.JSArray_methods.sort$0(edges); horizontalGroups = A._setArrayType([], type$.JSArray__SemanticsSortGroup); for (t1 = edges.length, t2 = this.textDirection, t3 = type$.JSArray_SemanticsNode, group = null, depth = 0, _i = 0; _i < edges.length; edges.length === t1 || (0, A.throwConcurrentModificationError)(edges), ++_i) { edge = edges[_i]; if (edge.isLeadingEdge) { ++depth; if (group == null) group = new A._SemanticsSortGroup(edge.offset, t2, A._setArrayType([], t3)); group.nodes.push(edge.node); } else --depth; if (depth === 0) { group.toString; horizontalGroups.push(group); group = null; } } B.JSArray_methods.sort$0(horizontalGroups); if (t2 === B.TextDirection_0) { t1 = type$.ReversedListIterable__SemanticsSortGroup; horizontalGroups = A.List_List$of(new A.ReversedListIterable(horizontalGroups, t1), true, t1._eval$1("ListIterable.E")); } t1 = A._arrayInstanceType(horizontalGroups)._eval$1("ExpandIterable<1,SemanticsNode>"); return A.List_List$of(new A.ExpandIterable(horizontalGroups, new A._SemanticsSortGroup_sortedWithinVerticalGroup_closure(), t1), true, t1._eval$1("Iterable.E")); }, sortedWithinKnot$0() { var t3, nodeMap, edges, t4, t5, t6, _i, node, t7, t8, center, _i0, t9, nextNode, t10, t11, nextCenter, direction, isLtrAndForward, isRtlAndForward, sortedIds, startNodes, t1 = this.nodes, t2 = t1.length; if (t2 <= 1) return t1; t3 = type$.int; nodeMap = A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.SemanticsNode); edges = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); for (t4 = this.textDirection, t5 = t4 === B.TextDirection_0, t4 = t4 === B.TextDirection_1, t6 = t2, _i = 0; _i < t6; t9 === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i, t6 = t9) { node = t1[_i]; nodeMap.$indexSet(0, node._semantics$_id, node); t6 = node._semantics$_rect; t7 = t6.left; t8 = t6.top; center = A._pointInParentCoordinates(node, new A.Offset(t7 + (t6.right - t7) / 2, t8 + (t6.bottom - t8) / 2)); for (t6 = t1.length, t7 = center._dx, t8 = center._dy, _i0 = 0; t9 = t1.length, _i0 < t9; t1.length === t6 || (0, A.throwConcurrentModificationError)(t1), ++_i0) { nextNode = t1[_i0]; if ((node == null ? nextNode == null : node === nextNode) || edges.$index(0, nextNode._semantics$_id) === node._semantics$_id) continue; t9 = nextNode._semantics$_rect; t10 = t9.left; t11 = t9.top; nextCenter = A._pointInParentCoordinates(nextNode, new A.Offset(t10 + (t9.right - t10) / 2, t11 + (t9.bottom - t11) / 2)); direction = Math.atan2(nextCenter._dy - t8, nextCenter._dx - t7); isLtrAndForward = t4 && -0.7853981633974483 < direction && direction < 2.356194490192345; if (t5) isRtlAndForward = direction < -2.356194490192345 || direction > 2.356194490192345; else isRtlAndForward = false; if (isLtrAndForward || isRtlAndForward) edges.$indexSet(0, node._semantics$_id, nextNode._semantics$_id); } } sortedIds = A._setArrayType([], type$.JSArray_int); startNodes = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); B.JSArray_methods.sort$1(startNodes, new A._SemanticsSortGroup_sortedWithinKnot_closure()); new A.MappedListIterable(startNodes, new A._SemanticsSortGroup_sortedWithinKnot_closure0(), A._arrayInstanceType(startNodes)._eval$1("MappedListIterable<1,int>")).forEach$1(0, new A._SemanticsSortGroup_sortedWithinKnot_search(A.LinkedHashSet_LinkedHashSet$_empty(t3), edges, sortedIds)); t1 = type$.MappedListIterable_int_SemanticsNode; t1 = A.List_List$of(new A.MappedListIterable(sortedIds, new A._SemanticsSortGroup_sortedWithinKnot_closure1(nodeMap), t1), true, t1._eval$1("ListIterable.E")); t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); return A.List_List$of(new A.ReversedListIterable(t1, t2), true, t2._eval$1("ListIterable.E")); } }; A._SemanticsSortGroup_sortedWithinVerticalGroup_closure.prototype = { call$1(group) { return group.sortedWithinKnot$0(); }, $signature: 688 }; A._SemanticsSortGroup_sortedWithinKnot_closure.prototype = { call$2(a, b) { var bTopLeft, verticalDiff, t1 = a._semantics$_rect, aTopLeft = A._pointInParentCoordinates(a, new A.Offset(t1.left, t1.top)); t1 = b._semantics$_rect; bTopLeft = A._pointInParentCoordinates(b, new A.Offset(t1.left, t1.top)); verticalDiff = J.compareTo$1$ns(aTopLeft._dy, bTopLeft._dy); if (verticalDiff !== 0) return -verticalDiff; return -J.compareTo$1$ns(aTopLeft._dx, bTopLeft._dx); }, $signature: 413 }; A._SemanticsSortGroup_sortedWithinKnot_search.prototype = { call$1(id) { var _this = this, t1 = _this.visitedIds; if (t1.contains$1(0, id)) return; t1.add$1(0, id); t1 = _this.edges; if (t1.containsKey$1(0, id)) { t1 = t1.$index(0, id); t1.toString; _this.call$1(t1); } _this.sortedIds.push(id); }, $signature: 89 }; A._SemanticsSortGroup_sortedWithinKnot_closure0.prototype = { call$1(node) { return node._semantics$_id; }, $signature: 2132 }; A._SemanticsSortGroup_sortedWithinKnot_closure1.prototype = { call$1(id) { var t1 = this.nodeMap.$index(0, id); t1.toString; return t1; }, $signature: 2131 }; A._childrenInDefaultOrder_closure.prototype = { call$1(group) { return group.sortedWithinVerticalGroup$0(); }, $signature: 688 }; A._TraversalSortNode.prototype = { compareTo$1(_, other) { var t2, t1 = this.sortKey; if (t1 == null || other.sortKey == null) return this.position - other.position; t1.toString; t2 = other.sortKey; t2.toString; return t1.compareTo$1(0, t2); }, $isComparable: 1 }; A.SemanticsOwner.prototype = { dispose$0(_) { var _this = this; _this._semantics$_dirtyNodes.clear$0(0); _this._semantics$_nodes.clear$0(0); _this._detachedNodes.clear$0(0); _this.super$ChangeNotifier$dispose(0); }, sendSemanticsUpdate$0() { var customSemanticsActionIds, visitedNodes, t2, t3, t4, t5, localDirtyNodes, t6, t7, _i, node, t8, builder, _this = this, t1 = _this._semantics$_dirtyNodes; if (t1._collection$_length === 0) return; customSemanticsActionIds = A.LinkedHashSet_LinkedHashSet$_empty(type$.int); visitedNodes = A._setArrayType([], type$.JSArray_SemanticsNode); for (t2 = type$.nullable_SemanticsNode, t3 = A._instanceType(t1)._eval$1("WhereIterable"), t4 = t3._eval$1("Iterable.E"), t5 = _this._detachedNodes; t1._collection$_length !== 0;) { localDirtyNodes = A.List_List$of(new A.WhereIterable(t1, new A.SemanticsOwner_sendSemanticsUpdate_closure(_this), t3), true, t4); t1.clear$0(0); t5.clear$0(0); t6 = new A.SemanticsOwner_sendSemanticsUpdate_closure0(); if (!!localDirtyNodes.immutable$list) A.throwExpression(A.UnsupportedError$("sort")); t7 = localDirtyNodes.length - 1; if (t7 - 0 <= 32) A.Sort__insertionSort(localDirtyNodes, 0, t7, t6); else A.Sort__dualPivotQuicksort(localDirtyNodes, 0, t7, t6); B.JSArray_methods.addAll$1(visitedNodes, localDirtyNodes); for (t6 = localDirtyNodes.length, _i = 0; _i < localDirtyNodes.length; localDirtyNodes.length === t6 || (0, A.throwConcurrentModificationError)(localDirtyNodes), ++_i) { node = localDirtyNodes[_i]; if (node._mergeAllDescendantsIntoThisNode || node._isMergedIntoParent) { t7 = J.getInterceptor$x(node); if (t2._as(A.AbstractNode.prototype.get$parent.call(t7, node)) != null) { t8 = t2._as(A.AbstractNode.prototype.get$parent.call(t7, node)); t8 = t8._mergeAllDescendantsIntoThisNode || t8._isMergedIntoParent; } else t8 = false; if (t8) { t2._as(A.AbstractNode.prototype.get$parent.call(t7, node))._semantics$_markDirty$0(); node._semantics$_dirty = false; } } } } B.JSArray_methods.sort$1(visitedNodes, new A.SemanticsOwner_sendSemanticsUpdate_closure1()); $.SemanticsBinding__instance.toString; builder = new A.SemanticsUpdateBuilder(A._setArrayType([], type$.JSArray_SemanticsNodeUpdate)); for (t2 = visitedNodes.length, _i = 0; _i < visitedNodes.length; visitedNodes.length === t2 || (0, A.throwConcurrentModificationError)(visitedNodes), ++_i) { node = visitedNodes[_i]; if (node._semantics$_dirty && node._node$_owner != null) node._addToUpdate$2(builder, customSemanticsActionIds); } t1.clear$0(0); for (t1 = A._LinkedHashSetIterator$(customSemanticsActionIds, customSemanticsActionIds._collection$_modifications, customSemanticsActionIds.$ti._precomputed1); t1.moveNext$0();) $.CustomSemanticsAction__actions.$index(0, t1._collection$_current).toString; $.SemanticsBinding__instance.toString; $.$get$EnginePlatformDispatcher__instance().toString; t1 = $.EngineSemanticsOwner__instance; if (t1 == null) t1 = $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_(); t1.updateSemantics$1(new A.SemanticsUpdate(builder._nodeUpdates)); _this.notifyListeners$0(); }, _getSemanticsActionHandlerForId$2(id, action) { var t2, t1 = {}, result = t1.result = this._semantics$_nodes.$index(0, id); if (result != null) t2 = (result._mergeAllDescendantsIntoThisNode || result._isMergedIntoParent) && !result._actions.containsKey$1(0, action); else t2 = false; if (t2) result._visitDescendants$1(new A.SemanticsOwner__getSemanticsActionHandlerForId_closure(t1, action)); t2 = t1.result; if (t2 == null || !t2._actions.containsKey$1(0, action)) return null; return t1.result._actions.$index(0, action); }, performAction$3(id, action, args) { var handler = this._getSemanticsActionHandlerForId$2(id, action); if (handler != null) { handler.call$1(args); return; } if (action === B.SemanticsAction_256 && this._semantics$_nodes.$index(0, id)._showOnScreen != null) this._semantics$_nodes.$index(0, id)._showOnScreen.call$0(); }, toString$0(_) { return "#" + A.shortHash(this); } }; A.SemanticsOwner_sendSemanticsUpdate_closure.prototype = { call$1(node) { return !this.$this._detachedNodes.contains$1(0, node); }, $signature: 416 }; A.SemanticsOwner_sendSemanticsUpdate_closure0.prototype = { call$2(a, b) { return a._depth - b._depth; }, $signature: 413 }; A.SemanticsOwner_sendSemanticsUpdate_closure1.prototype = { call$2(a, b) { return a._depth - b._depth; }, $signature: 413 }; A.SemanticsOwner__getSemanticsActionHandlerForId_closure.prototype = { call$1(node) { if (node._actions.containsKey$1(0, this.action)) { this._box_0.result = node; return false; } return true; }, $signature: 416 }; A.SemanticsConfiguration.prototype = { _addAction$2(action, handler) { var _this = this; _this._actions.$indexSet(0, action, handler); _this._actionsAsBits = _this._actionsAsBits | action.index; _this._hasBeenAnnotated = true; }, _addArgumentlessAction$2(action, handler) { this._addAction$2(action, new A.SemanticsConfiguration__addArgumentlessAction_closure(handler)); }, set$onTap(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_1, value); this._semantics$_onTap = value; }, set$onLongPress(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_2, value); }, set$onScrollLeft(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_4, value); }, set$onDismiss(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_262144, value); }, set$onScrollRight(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_8, value); }, set$onScrollUp(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_16, value); }, set$onScrollDown(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_32, value); }, set$onIncrease(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_64, value); }, set$onDecrease(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_128, value); }, set$onCopy(_, value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_4096, value); }, set$onCut(_, value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_8192, value); }, set$onPaste(_, value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_16384, value); }, set$onMoveCursorForwardByCharacter(value) { this._addAction$2(B.SemanticsAction_512, new A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure(value)); }, set$onMoveCursorBackwardByCharacter(value) { this._addAction$2(B.SemanticsAction_1024, new A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure(value)); }, set$onMoveCursorForwardByWord(value) { this._addAction$2(B.SemanticsAction_524288, new A.SemanticsConfiguration_onMoveCursorForwardByWord_closure(value)); }, set$onMoveCursorBackwardByWord(value) { this._addAction$2(B.SemanticsAction_1048576, new A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure(value)); }, set$onSetSelection(value) { this._addAction$2(B.SemanticsAction_2048, new A.SemanticsConfiguration_onSetSelection_closure(value)); }, set$onSetText(value) { this._addAction$2(B.SemanticsAction_2097152, new A.SemanticsConfiguration_onSetText_closure(value)); }, set$onDidGainAccessibilityFocus(value) { value.toString; this._addArgumentlessAction$2(B.SemanticsAction_32768, value); }, set$scrollChildCount(value) { if (value == this._scrollChildCount) return; this._scrollChildCount = value; this._hasBeenAnnotated = true; }, set$scrollIndex(value) { if (value == this._scrollIndex) return; this._scrollIndex = value; this._hasBeenAnnotated = true; }, set$platformViewId(value) { if (value == this._platformViewId) return; this._platformViewId = value; this._hasBeenAnnotated = true; }, set$maxValueLength(value) { if (value == this._semantics$_maxValueLength) return; this._semantics$_maxValueLength = value; this._hasBeenAnnotated = true; }, set$currentValueLength(value) { if (value == this._semantics$_currentValueLength) return; this._semantics$_currentValueLength = value; this._hasBeenAnnotated = true; }, _onCustomSemanticsAction$1(args) { var action, callback; args.toString; action = $.CustomSemanticsAction__actions.$index(0, A._asIntS(args)); if (action == null) return; callback = this._semantics$_customSemanticsActions.$index(0, action); if (callback != null) callback.call$0(); }, get$value(_) { return this._semantics$_attributedValue.string; }, set$hintOverrides(value) { if (value == null) return; this._semantics$_hintOverrides = value; this._hasBeenAnnotated = true; }, set$elevation(_, value) { if (value == this._semantics$_elevation) return; this._semantics$_elevation = value; this._hasBeenAnnotated = true; }, addTagForChildren$1(tag) { var t1 = this._tagsForChildren; (t1 == null ? this._tagsForChildren = A.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t1).add$1(0, tag); }, _setFlag$2(flag, value) { var _this = this, t1 = _this._flags, t2 = flag.index; if (value) _this._flags = t1 | t2; else _this._flags = t1 & ~t2; _this._hasBeenAnnotated = true; }, isCompatibleWith$1(other) { var t1, _this = this; if (other == null || !other._hasBeenAnnotated || !_this._hasBeenAnnotated) return true; if ((_this._actionsAsBits & other._actionsAsBits) !== 0) return false; if ((_this._flags & other._flags) !== 0) return false; if (_this._platformViewId != null && other._platformViewId != null) return false; if (_this._semantics$_maxValueLength != null && other._semantics$_maxValueLength != null) return false; if (_this._semantics$_currentValueLength != null && other._semantics$_currentValueLength != null) return false; t1 = _this._semantics$_attributedValue; if (t1 != null) if (t1.string.length !== 0) { t1 = other._semantics$_attributedValue; t1 = t1 != null && t1.string.length !== 0; } else t1 = false; else t1 = false; if (t1) return false; return true; }, absorb$1(child) { var t1, t2, _this = this; if (!child._hasBeenAnnotated) return; _this._actions.addAll$1(0, child._actions); _this._semantics$_customSemanticsActions.addAll$1(0, child._semantics$_customSemanticsActions); _this._actionsAsBits = _this._actionsAsBits | child._actionsAsBits; _this._flags = _this._flags | child._flags; if (_this._textSelection == null) _this._textSelection = child._textSelection; if (_this._scrollPosition == null) _this._scrollPosition = child._scrollPosition; if (_this._scrollExtentMax == null) _this._scrollExtentMax = child._scrollExtentMax; if (_this._scrollExtentMin == null) _this._scrollExtentMin = child._scrollExtentMin; if (_this._semantics$_hintOverrides == null) _this._semantics$_hintOverrides = child._semantics$_hintOverrides; if (_this._indexInParent == null) _this._indexInParent = child._indexInParent; if (_this._scrollIndex == null) _this._scrollIndex = child._scrollIndex; if (_this._scrollChildCount == null) _this._scrollChildCount = child._scrollChildCount; if (_this._platformViewId == null) _this._platformViewId = child._platformViewId; if (_this._semantics$_maxValueLength == null) _this._semantics$_maxValueLength = child._semantics$_maxValueLength; if (_this._semantics$_currentValueLength == null) _this._semantics$_currentValueLength = child._semantics$_currentValueLength; t1 = _this._semantics$_textDirection; if (t1 == null) { t1 = _this._semantics$_textDirection = child._semantics$_textDirection; _this._hasBeenAnnotated = true; } if (_this._semantics$_sortKey == null) _this._semantics$_sortKey = child._semantics$_sortKey; t2 = _this._semantics$_attributedLabel; _this._semantics$_attributedLabel = A._concatAttributedString(child._semantics$_attributedLabel, child._semantics$_textDirection, t2, t1); t1 = _this._semantics$_attributedValue; if (t1 == null || t1.string === "") _this._semantics$_attributedValue = child._semantics$_attributedValue; t1 = _this._semantics$_attributedIncreasedValue; if (t1 == null || t1.string === "") _this._semantics$_attributedIncreasedValue = child._semantics$_attributedIncreasedValue; t1 = _this._semantics$_attributedDecreasedValue; if (t1 == null || t1.string === "") _this._semantics$_attributedDecreasedValue = child._semantics$_attributedDecreasedValue; t1 = _this._semantics$_attributedHint; t2 = _this._semantics$_textDirection; _this._semantics$_attributedHint = A._concatAttributedString(child._semantics$_attributedHint, child._semantics$_textDirection, t1, t2); _this._semantics$_thickness = Math.max(_this._semantics$_thickness, child._semantics$_thickness + child._semantics$_elevation); _this._hasBeenAnnotated = _this._hasBeenAnnotated || child._hasBeenAnnotated; }, copy$0(_) { var _this = this, t1 = A.SemanticsConfiguration$(); t1._isSemanticBoundary = _this._isSemanticBoundary; t1.explicitChildNodes = _this.explicitChildNodes; t1.isBlockingSemanticsOfPreviouslyPaintedNodes = _this.isBlockingSemanticsOfPreviouslyPaintedNodes; t1._hasBeenAnnotated = _this._hasBeenAnnotated; t1._isMergingSemanticsOfDescendants = _this._isMergingSemanticsOfDescendants; t1._semantics$_textDirection = _this._semantics$_textDirection; t1._semantics$_sortKey = _this._semantics$_sortKey; t1._semantics$_attributedLabel = _this._semantics$_attributedLabel; t1._semantics$_attributedIncreasedValue = _this._semantics$_attributedIncreasedValue; t1._semantics$_attributedValue = _this._semantics$_attributedValue; t1._semantics$_attributedDecreasedValue = _this._semantics$_attributedDecreasedValue; t1._semantics$_attributedHint = _this._semantics$_attributedHint; t1._semantics$_hintOverrides = _this._semantics$_hintOverrides; t1._semantics$_elevation = _this._semantics$_elevation; t1._semantics$_thickness = _this._semantics$_thickness; t1._flags = _this._flags; t1._tagsForChildren = _this._tagsForChildren; t1._textSelection = _this._textSelection; t1._scrollPosition = _this._scrollPosition; t1._scrollExtentMax = _this._scrollExtentMax; t1._scrollExtentMin = _this._scrollExtentMin; t1._actionsAsBits = _this._actionsAsBits; t1._indexInParent = _this._indexInParent; t1._scrollIndex = _this._scrollIndex; t1._scrollChildCount = _this._scrollChildCount; t1._platformViewId = _this._platformViewId; t1._semantics$_maxValueLength = _this._semantics$_maxValueLength; t1._semantics$_currentValueLength = _this._semantics$_currentValueLength; t1._actions.addAll$1(0, _this._actions); t1._semantics$_customSemanticsActions.addAll$1(0, _this._semantics$_customSemanticsActions); return t1; } }; A.SemanticsConfiguration__addArgumentlessAction_closure.prototype = { call$1(args) { this.handler.call$0(); }, $signature: 35 }; A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBoolS(args)); }, $signature: 35 }; A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBoolS(args)); }, $signature: 35 }; A.SemanticsConfiguration_onMoveCursorForwardByWord_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBoolS(args)); }, $signature: 35 }; A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBoolS(args)); }, $signature: 35 }; A.SemanticsConfiguration_onSetSelection_closure.prototype = { call$1(args) { var selection, t1, t2, t3; args.toString; selection = J.cast$2$0$ax(type$.Map_dynamic_dynamic._as(args), type$.String, type$.int); t1 = this.value; t1.toString; t2 = selection.$index(0, "base"); t2.toString; t3 = selection.$index(0, "extent"); t3.toString; t1.call$1(A.TextSelection$(B.TextAffinity_1, t2, t3, false)); }, $signature: 35 }; A.SemanticsConfiguration_onSetText_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asStringS(args)); }, $signature: 35 }; A.DebugSemanticsDumpOrder.prototype = { toString$0(_) { return "DebugSemanticsDumpOrder." + this._core$_name; } }; A.SemanticsSortKey.prototype = { compareTo$1(_, other) { var t1; other.toString; t1 = this.doCompare$1(other); return t1; }, $isComparable: 1, get$name(receiver) { return this.name; } }; A.OrdinalSortKey.prototype = { doCompare$1(other) { var t1 = other.order === this.order; if (t1) return 0; return B.JSInt_methods.compareTo$1(this.order, other.order); } }; A._SemanticsData_Object_Diagnosticable.prototype = {}; A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin.prototype = {}; A._SemanticsSortKey_Object_Diagnosticable.prototype = {}; A.SemanticsEvent.prototype = { toMap$1$nodeId(nodeId) { var $event = A.LinkedHashMap_LinkedHashMap$_literal(["type", this.type, "data", this.getDataMap$0()], type$.String, type$.dynamic); if (nodeId != null) $event.$indexSet(0, "nodeId", nodeId); return $event; }, toMap$0() { return this.toMap$1$nodeId(null); }, toString$0(_) { var t2, pairs = A._setArrayType([], type$.JSArray_String), dataMap = this.getDataMap$0(), sortedKeys = J.toList$0$ax(dataMap.get$keys(dataMap)), t1 = J.getInterceptor$ax(sortedKeys); t1.sort$0(sortedKeys); for (t1 = t1.get$iterator(sortedKeys); t1.moveNext$0();) { t2 = t1.get$current(t1); pairs.push(A.S(t2) + ": " + A.S(dataMap.$index(0, t2))); } return "SemanticsEvent(" + B.JSArray_methods.join$1(pairs, ", ") + ")"; } }; A.AnnounceSemanticsEvent.prototype = { getDataMap$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["message", this.message, "textDirection", this.textDirection.index], type$.String, type$.dynamic); }, get$message(receiver) { return this.message; } }; A.TooltipSemanticsEvent.prototype = { getDataMap$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["message", this.message], type$.String, type$.dynamic); }, get$message(receiver) { return this.message; } }; A.LongPressSemanticsEvent.prototype = { getDataMap$0() { return B.Map_empty4; } }; A.TapSemanticEvent.prototype = { getDataMap$0() { return B.Map_empty4; } }; A.AssetBundle.prototype = { loadString$2$cache(key, cache) { return this.loadString$body$AssetBundle(key, true); }, loadString$body$AssetBundle(key, cache) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.String), $async$returnValue, $async$self = this, t1, data; var $async$loadString$2$cache = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.load$1(0, key), $async$loadString$2$cache); case 3: // returning from await. data = $async$result; if (data == null) throw A.wrapException(A.FlutterError_FlutterError("Unable to load asset: " + key)); t1 = J.getInterceptor$x(data); if (t1.get$lengthInBytes(data) < 51200) { $async$returnValue = B.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(t1.get$buffer(data))); // goto return $async$goto = 1; break; } $async$returnValue = A.compute(A.asset_bundle_AssetBundle__utf8decode$closure(), data, 'UTF8 decode for "' + key + '"', type$.ByteData, type$.String); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadString$2$cache, $async$completer); }, toString$0(_) { return "#" + A.shortHash(this) + "()"; } }; A.CachingAssetBundle.prototype = { loadString$2$cache(key, cache) { return this.super$AssetBundle$loadString(key, true); }, loadStructuredData$1$2(key, parser, $T) { var t3, t1 = {}, t2 = this._structuredDataCache; if (t2.containsKey$1(0, key)) { t1 = t2.$index(0, key); t1.toString; return $T._eval$1("Future<0>")._as(t1); } t1.result = t1.completer = null; this.loadString$2$cache(key, false).then$1$1(0, parser, $T).then$1$1(0, new A.CachingAssetBundle_loadStructuredData_closure(t1, this, key, $T), type$.void); t3 = t1.result; if (t3 != null) return t3; t3 = new A._Future($.Zone__current, $T._eval$1("_Future<0>")); t1.completer = new A._AsyncCompleter(t3, $T._eval$1("_AsyncCompleter<0>")); t2.$indexSet(0, key, t3); return t1.completer.future; } }; A.CachingAssetBundle_loadStructuredData_closure.prototype = { call$1(value) { var _this = this, result = new A.SynchronousFuture(value, _this.T._eval$1("SynchronousFuture<0>")), t1 = _this._box_0; t1.result = result; _this.$this._structuredDataCache.$indexSet(0, _this.key, result); t1 = t1.completer; if (t1 != null) t1.complete$1(0, value); }, $signature() { return this.T._eval$1("Null(0)"); } }; A.PlatformAssetBundle.prototype = { load$1(_, key) { return this.load$body$PlatformAssetBundle(0, key); }, load$body$PlatformAssetBundle(_, key) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.ByteData), $async$returnValue, encoded, asset; var $async$load$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start encoded = B.C_Utf8Encoder.convert$1(A._Uri__Uri(null, A._Uri__uriEncode(B.List_gnE, key, B.C_Utf8Codec, false), null, null, null).path); $async$goto = 3; return A._asyncAwait(A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, "_defaultBinaryMessenger").send$2(0, "flutter/assets", A.NativeByteData_NativeByteData$view(encoded.buffer, 0, null)), $async$load$1); case 3: // returning from await. asset = $async$result; if (asset == null) throw A.wrapException(A.FlutterError_FlutterError("Unable to load asset: " + A.S(key))); $async$returnValue = asset; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$load$1, $async$completer); } }; A.AutofillConfiguration.prototype = { toJson$0() { var t1, t2, _this = this; if (_this.enabled) { t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t1.$indexSet(0, "uniqueIdentifier", _this.uniqueIdentifier); t1.$indexSet(0, "hints", _this.autofillHints); t1.$indexSet(0, "editingValue", _this.currentEditingValue.toJSON$0()); t2 = _this.hintText; if (t2 != null) t1.$indexSet(0, "hintText", t2); } else t1 = null; return t1; } }; A._AutofillScopeTextInputConfiguration.prototype = { toJson$0() { var result = this.super$TextInputConfiguration$toJson(), t1 = this.allConfigurations; t1 = A.MappedIterable_MappedIterable(t1, new A._AutofillScopeTextInputConfiguration_toJson_closure(), t1.$ti._eval$1("Iterable.E"), type$.Map_String_dynamic); result.$indexSet(0, "fields", A.List_List$of(t1, false, A._instanceType(t1)._eval$1("Iterable.E"))); return result; } }; A._AutofillScopeTextInputConfiguration_toJson_closure.prototype = { call$1(configuration) { return configuration.toJson$0(); }, $signature: 2130 }; A.AutofillScopeMixin.prototype = { attach$2(trigger, configuration) { var t1 = this.get$autofillClients(), connection = A.TextInputConnection$_(trigger); $.$get$TextInput__instance()._attach$2(connection, new A._AutofillScopeTextInputConfiguration(new A.MappedIterable(t1, new A.AutofillScopeMixin_attach_closure(), t1.$ti._eval$1("MappedIterable<1,TextInputConfiguration>")), configuration.inputType, false, configuration.obscureText, configuration.autocorrect, configuration.autofillConfiguration, configuration.smartDashesType, configuration.smartQuotesType, true, true, configuration.actionLabel, configuration.inputAction, configuration.textCapitalization, configuration.keyboardAppearance, true, false)); return connection; } }; A.AutofillScopeMixin_attach_closure.prototype = { call$1(client) { return client.get$textInputConfiguration(); }, $signature: 2129 }; A.BinaryMessenger.prototype = {}; A.ServicesBinding.prototype = { handleMemoryPressure$0() { var t1 = $.$get$rootBundle(); t1._stringCache.clear$0(0); t1._structuredDataCache.clear$0(0); }, handleSystemMessage$1(systemMessage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this; var $async$handleSystemMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start switch (A._asStringS(J.$index$asx(type$.Map_String_dynamic._as(systemMessage), "type"))) { case "memoryPressure": $async$self.handleMemoryPressure$0(); break; } // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleSystemMessage$1, $async$completer); }, _addLicenses$0() { var controller = A._Cell$named("controller"); controller.set$finalLocalValue(A.StreamController_StreamController(null, new A.ServicesBinding__addLicenses_closure(controller), null, false, type$.LicenseEntry)); return J.get$stream$z(controller._readLocal$0()); }, readInitialLifecycleStateFromNativeWindow$0() { if (this.SchedulerBinding__lifecycleState != null) return; $.$get$EnginePlatformDispatcher__instance().toString; var state = A.ServicesBinding__parseAppLifecycleMessage("AppLifecycleState.resumed"); if (state != null) this.handleAppLifecycleStateChanged$1(state); }, _handleLifecycleMessage$1(message) { return this._handleLifecycleMessage$body$ServicesBinding(message); }, _handleLifecycleMessage$body$ServicesBinding(message) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_String), $async$returnValue, $async$self = this, t1; var $async$_handleLifecycleMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start message.toString; t1 = A.ServicesBinding__parseAppLifecycleMessage(message); t1.toString; $async$self.handleAppLifecycleStateChanged$1(t1); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_handleLifecycleMessage$1, $async$completer); }, _handlePlatformMessage$1(methodCall) { return this._handlePlatformMessage$body$ServicesBinding(methodCall); }, _handlePlatformMessage$body$ServicesBinding(methodCall) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$_handlePlatformMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.List_dynamic._as(methodCall.$arguments); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_handlePlatformMessage$1, $async$completer); }, $isSchedulerBinding: 1 }; A.ServicesBinding__addLicenses_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, rawLicenses, $async$temp1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start rawLicenses = A._Cell$named("rawLicenses"); $async$temp1 = rawLicenses; $async$goto = 2; return A._asyncAwait($.$get$rootBundle().loadString$2$cache("NOTICES", false), $async$call$0); case 2: // returning from await. $async$temp1.set$finalLocalValue($async$result); t1 = $async$self.controller; $async$temp1 = J; $async$goto = 3; return A._asyncAwait(A.compute(A.binding1_ServicesBinding__parseLicenses$closure(), rawLicenses._readLocal$0(), "parseLicenses", type$.String, type$.List_LicenseEntry), $async$call$0); case 3: // returning from await. $async$temp1.forEach$1$ax($async$result, J.get$add$ax(t1._readLocal$0())); $async$goto = 4; return A._asyncAwait(J.close$0$x(t1._readLocal$0()), $async$call$0); case 4: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 100 }; A._DefaultBinaryMessenger.prototype = { send$2(_, channel, message) { var t1 = new A._Future($.Zone__current, type$._Future_nullable_ByteData), t2 = $.$get$EnginePlatformDispatcher__instance(); t2.toString; t2._sendPlatformMessage$3(channel, message, A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback(new A._DefaultBinaryMessenger_send_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_nullable_ByteData)))); return t1; }, setMessageHandler$2(channel, handler) { if (handler == null) { channel = $.$get$channelBuffers()._channels.$index(0, channel); if (channel != null) channel._channelCallbackRecord = null; } else $.$get$channelBuffers().setListener$2(channel, new A._DefaultBinaryMessenger_setMessageHandler_closure(handler)); } }; A._DefaultBinaryMessenger_send_closure.prototype = { call$1(reply) { var exception, stack, exception0, t1; try { this.completer.complete$1(0, reply); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("during a platform message response callback"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "services library", t1, null, null, false)); } }, $signature: 135 }; A._DefaultBinaryMessenger_setMessageHandler_closure.prototype = { call$2(data, callback) { return this.$call$body$_DefaultBinaryMessenger_setMessageHandler_closure(data, callback); }, $call$body$_DefaultBinaryMessenger_setMessageHandler_closure(data, callback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, response, $async$exception0; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start response = null; $async$handler = 3; $async$goto = 6; return A._asyncAwait($async$self.handler.call$1(data), $async$call$2); case 6: // returning from await. response = $async$result; $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); t1 = A.ErrorDescription$("during a platform message callback"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "services library", t1, null, null, false)); $async$next.push(5); // goto finally $async$goto = 4; break; case 2: // uncaught $async$next = [1]; case 4: // finally $async$handler = 1; callback.call$1(response); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 2124 }; A.ClipboardData.prototype = {}; A.KeyboardLockMode.prototype = {}; A.KeyEvent.prototype = {}; A.KeyDownEvent.prototype = {}; A.KeyUpEvent.prototype = {}; A.KeyRepeatEvent.prototype = {}; A.HardwareKeyboard.prototype = { _dispatchKeyEvent$1($event) { var handled, handler, thisResult, exception, stack, t1, _i, exception0, t2, t3; this._duringDispatch = true; handled = false; for (t1 = this._handlers, t1.length, _i = 0; false; ++_i) { handler = t1[_i]; try { thisResult = handler.call$1($event); handled = handled || thisResult; } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t2 = A.ErrorDescription$("while processing a key handler"); t3 = $.$get$FlutterError_onError(); if (t3 != null) t3.call$1(new A.FlutterErrorDetails(exception, stack, "services library", t2, null, null, false)); } } this._duringDispatch = false; return handled; }, handleKeyEvent$1($event) { var lockMode, t1, _this = this, physicalKey = $event.physicalKey, logicalKey = $event.logicalKey; if ($event instanceof A.KeyDownEvent) { _this._pressedKeys.$indexSet(0, physicalKey, logicalKey); lockMode = $.$get$KeyboardLockMode__knownLockModes().$index(0, logicalKey.keyId); if (lockMode != null) { t1 = _this._lockModes; if (t1.contains$1(0, lockMode)) t1.remove$1(0, lockMode); else t1.add$1(0, lockMode); } } else if ($event instanceof A.KeyUpEvent) _this._pressedKeys.remove$1(0, physicalKey); return _this._dispatchKeyEvent$1($event); } }; A.KeyDataTransitMode.prototype = { toString$0(_) { return "KeyDataTransitMode." + this._core$_name; } }; A.KeyMessage.prototype = { toString$0(_) { return "KeyMessage(" + A.S(this.events) + ")"; } }; A.KeyEventManager.prototype = { handleKeyData$1(data) { var $event, _this = this, t1 = _this._transitMode; switch ((t1 == null ? _this._transitMode = B.KeyDataTransitMode_1 : t1).index) { case 0: return false; case 1: if (data.physical === 0 && data.logical === 0) return false; $event = A.KeyEventManager__eventFromData(data); if (data.synthesized && _this._keyEventsSinceLastMessage.length === 0) { _this._hardwareKeyboard.handleKeyEvent$1($event); _this._dispatchKeyMessage$2(A._setArrayType([$event], type$.JSArray_KeyEvent), null); } else _this._keyEventsSinceLastMessage.push($event); return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _dispatchKeyMessage$2(keyEvents, rawEvent) { var message, exception, stack, exception0, t1 = this.keyMessageHandler; if (t1 != null) { message = new A.KeyMessage(keyEvents, rawEvent); try { t1 = t1.call$1(message); return t1; } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("while processing the key message handler"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "services library", t1, null, null, false)); } } return false; }, handleRawKeyMessage$1(message) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, rawEvent, handled, t1, t2, t3, _i; var $async$handleRawKeyMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._transitMode == null) { $async$self._transitMode = B.KeyDataTransitMode_0; $async$self._rawKeyboard._raw_keyboard$_listeners.push($async$self.get$_convertRawEventAndStore()); } rawEvent = A.RawKeyEvent_RawKeyEvent$fromMessage(type$.Map_String_dynamic._as(message)); handled = $async$self._rawKeyboard.handleRawKeyEvent$1(rawEvent); for (t1 = $async$self._keyEventsSinceLastMessage, t2 = t1.length, t3 = $async$self._hardwareKeyboard, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) handled = t3.handleKeyEvent$1(t1[_i]) || handled; handled = $async$self._dispatchKeyMessage$2(t1, rawEvent) || handled; B.JSArray_methods.set$length(t1, 0); $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["handled", handled], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleRawKeyMessage$1, $async$completer); }, _convertRawEventAndStore$1(rawEvent) { var t2, physicalKeysPressed, eventAfterwards, recordedLogicalMain, timeStamp, character, mainEvent, t3, t4, t5, t6, t7, t8, _null = null, t1 = rawEvent.data, physicalKey = t1.get$physicalKey(), logicalKey = t1.get$logicalKey(); t1 = this._hardwareKeyboard._pressedKeys; t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); physicalKeysPressed = A.LinkedHashSet_LinkedHashSet$of(new A.LinkedHashMapKeyIterable(t1, t2), t2._eval$1("Iterable.E")); eventAfterwards = A._setArrayType([], type$.JSArray_KeyEvent); recordedLogicalMain = t1.$index(0, physicalKey); timeStamp = $.ServicesBinding__instance.SchedulerBinding__lastRawTimeStamp; character = rawEvent.character; if (character === "") character = _null; if (rawEvent instanceof A.RawKeyDownEvent) if (recordedLogicalMain == null) { mainEvent = new A.KeyDownEvent(physicalKey, logicalKey, character, timeStamp, false); physicalKeysPressed.add$1(0, physicalKey); } else mainEvent = new A.KeyRepeatEvent(physicalKey, recordedLogicalMain, character, timeStamp, false); else if (recordedLogicalMain == null) mainEvent = _null; else { mainEvent = new A.KeyUpEvent(physicalKey, recordedLogicalMain, _null, timeStamp, false); physicalKeysPressed.remove$1(0, physicalKey); } for (t2 = this._rawKeyboard._keysPressed, t3 = A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>"), t4 = t3._eval$1("Iterable.E"), t5 = physicalKeysPressed.difference$1(A.LinkedHashSet_LinkedHashSet$of(new A.LinkedHashMapKeyIterable(t2, t3), t4)), t5 = t5.get$iterator(t5), t6 = this._keyEventsSinceLastMessage; t5.moveNext$0();) { t7 = t5.get$current(t5); if (J.$eq$(t7, physicalKey)) eventAfterwards.push(new A.KeyUpEvent(t7, logicalKey, _null, timeStamp, true)); else { t8 = t1.$index(0, t7); t8.toString; t6.push(new A.KeyUpEvent(t7, t8, _null, timeStamp, true)); } } for (t1 = A.LinkedHashSet_LinkedHashSet$of(new A.LinkedHashMapKeyIterable(t2, t3), t4).difference$1(physicalKeysPressed), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = t2.$index(0, t3); t4.toString; t6.push(new A.KeyDownEvent(t3, t4, _null, timeStamp, true)); } if (mainEvent != null) t6.push(mainEvent); B.JSArray_methods.addAll$1(t6, eventAfterwards); } }; A._KeyEvent_Object_Diagnosticable.prototype = {}; A.KeyboardKey.prototype = {}; A.LogicalKeyboardKey.prototype = { get$hashCode(_) { return J.get$hashCode$(this.keyId); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.LogicalKeyboardKey && other.keyId == this.keyId; } }; A.PhysicalKeyboardKey.prototype = { get$hashCode(_) { return J.get$hashCode$(this.usbHidUsage); }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.PhysicalKeyboardKey && other.usbHidUsage == this.usbHidUsage; } }; A._KeyboardKey_Object_Diagnosticable.prototype = {}; A.MethodCall0.prototype = { toString$0(_) { return "MethodCall(" + this.method + ", " + A.S(this.$arguments) + ")"; } }; A.PlatformException.prototype = { toString$0(_) { var _this = this; return "PlatformException(" + A.S(_this.code) + ", " + A.S(_this.message) + ", " + A.S(_this.details) + ", " + A.S(_this.stacktrace) + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.MissingPluginException.prototype = { toString$0(_) { return "MissingPluginException(" + A.S(this.message) + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.StringCodec.prototype = { decodeMessage$1(message) { var t1; if (message == null) return null; t1 = J.getInterceptor$x(message); return B.Utf8Decoder_false.convert$1(J.asUint8List$2$x(t1.get$buffer(message), t1.get$offsetInBytes(message), t1.get$lengthInBytes(message))); }, encodeMessage$1(message) { if (message == null) return null; return A.NativeByteData_NativeByteData$view(B.C_Utf8Encoder.convert$1(message).buffer, 0, null); } }; A.JSONMessageCodec0.prototype = { encodeMessage$1(message) { if (message == null) return null; return B.C_StringCodec.encodeMessage$1(B.C_JsonCodec.encode$1(message)); }, decodeMessage$1(message) { var t1; if (message == null) return message; t1 = B.C_StringCodec.decodeMessage$1(message); t1.toString; return B.C_JsonCodec.decode$1(0, t1); } }; A.JSONMethodCodec0.prototype = { encodeMethodCall$1(methodCall) { var t1 = B.C_JSONMessageCodec0.encodeMessage$1(A.LinkedHashMap_LinkedHashMap$_literal(["method", methodCall.method, "args", methodCall.$arguments], type$.String, type$.nullable_Object)); t1.toString; return t1; }, decodeMethodCall$1(methodCall) { var t1, method, $arguments, _null = null, decoded = B.C_JSONMessageCodec0.decodeMessage$1(methodCall); if (!type$.Map_dynamic_dynamic._is(decoded)) throw A.wrapException(A.FormatException$("Expected method call Map, got " + A.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); method = t1.$index(decoded, "method"); $arguments = t1.$index(decoded, "args"); if (typeof method == "string") return new A.MethodCall0(method, $arguments); throw A.wrapException(A.FormatException$("Invalid method call: " + A.S(decoded), _null, _null)); }, decodeEnvelope$1(envelope) { var t1, t2, t3, _null = null, decoded = B.C_JSONMessageCodec0.decodeMessage$1(envelope); if (!type$.List_dynamic._is(decoded)) throw A.wrapException(A.FormatException$("Expected envelope List, got " + A.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); if (t1.get$length(decoded) === 1) return t1.$index(decoded, 0); if (t1.get$length(decoded) === 3) if (typeof t1.$index(decoded, 0) == "string") t2 = t1.$index(decoded, 1) == null || typeof t1.$index(decoded, 1) == "string"; else t2 = false; else t2 = false; if (t2) { t2 = A._asStringS(t1.$index(decoded, 0)); t3 = A._asStringQ(t1.$index(decoded, 1)); throw A.wrapException(A.PlatformException$(t2, t1.$index(decoded, 2), t3, _null)); } if (t1.get$length(decoded) === 4) if (typeof t1.$index(decoded, 0) == "string") if (t1.$index(decoded, 1) == null || typeof t1.$index(decoded, 1) == "string") t2 = t1.$index(decoded, 3) == null || typeof t1.$index(decoded, 3) == "string"; else t2 = false; else t2 = false; else t2 = false; if (t2) { t2 = A._asStringS(t1.$index(decoded, 0)); t3 = A._asStringQ(t1.$index(decoded, 1)); throw A.wrapException(A.PlatformException$(t2, t1.$index(decoded, 2), t3, A._asStringQ(t1.$index(decoded, 3)))); } throw A.wrapException(A.FormatException$("Invalid envelope: " + A.S(decoded), _null, _null)); }, encodeSuccessEnvelope$1(result) { var t1 = B.C_JSONMessageCodec0.encodeMessage$1([result]); t1.toString; return t1; }, encodeErrorEnvelope$3$code$details$message(code, details, message) { var t1 = B.C_JSONMessageCodec0.encodeMessage$1([code, message, details]); t1.toString; return t1; }, encodeErrorEnvelope$2$code$message(code, message) { return this.encodeErrorEnvelope$3$code$details$message(code, null, message); } }; A.StandardMessageCodec0.prototype = { encodeMessage$1(message) { var buffer; if (message == null) return null; buffer = A.WriteBuffer_WriteBuffer(); this.writeValue$2(0, buffer, message); return buffer.done$0(); }, decodeMessage$1(message) { var buffer, result; if (message == null) return null; buffer = new A.ReadBuffer(message); result = this.readValue$1(0, buffer); if (buffer._serialization$_position < J.get$lengthInBytes$x(message)) throw A.wrapException(B.FormatException_oCg); return result; }, writeValue$2(_, buffer, value) { var t1, t2, bytes, _this = this; if (value == null) buffer._serialization$_add$1(0, 0); else if (A._isBool(value)) buffer._serialization$_add$1(0, value ? 1 : 2); else if (typeof value == "number") { buffer._serialization$_add$1(0, 6); buffer._alignTo$1(8); t1 = $.$get$Endian_host(); buffer._eightBytes.setFloat64(0, value, B.C_Endian === t1); buffer._addAll$1(buffer._eightBytesAsList); } else if (A._isInt(value)) { t1 = -2147483648 <= value && value <= 2147483647; t2 = buffer._eightBytes; if (t1) { buffer._serialization$_add$1(0, 3); t1 = $.$get$Endian_host(); t2.setInt32(0, value, B.C_Endian === t1); buffer._addAll$3(buffer._eightBytesAsList, 0, 4); } else { buffer._serialization$_add$1(0, 4); t1 = $.$get$Endian_host(); B.NativeByteData_methods.setInt64$3(t2, 0, value, t1); } } else if (typeof value == "string") { buffer._serialization$_add$1(0, 7); bytes = B.C_Utf8Encoder.convert$1(value); _this.writeSize$2(buffer, bytes.length); buffer._append$1(bytes); } else if (type$.Uint8List._is(value)) { buffer._serialization$_add$1(0, 8); _this.writeSize$2(buffer, J.get$length$asx(value)); buffer._append$1(value); } else if (type$.Int32List._is(value)) { buffer._serialization$_add$1(0, 9); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); buffer._alignTo$1(4); buffer._append$1(J.asUint8List$2$x(t1.get$buffer(value), t1.get$offsetInBytes(value), 4 * t1.get$length(value))); } else if (type$.Int64List._is(value)) { buffer._serialization$_add$1(0, 10); _this.writeSize$2(buffer, value.get$length(value)); } else if (type$.Float32List._is(value)) { buffer._serialization$_add$1(0, 14); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); buffer._alignTo$1(4); buffer._append$1(J.asUint8List$2$x(t1.get$buffer(value), t1.get$offsetInBytes(value), 4 * t1.get$length(value))); } else if (type$.Float64List._is(value)) { buffer._serialization$_add$1(0, 11); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); buffer._alignTo$1(8); buffer._append$1(J.asUint8List$2$x(t1.get$buffer(value), t1.get$offsetInBytes(value), 8 * t1.get$length(value))); } else if (type$.List_dynamic._is(value)) { buffer._serialization$_add$1(0, 12); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); for (t1 = t1.get$iterator(value); t1.moveNext$0();) _this.writeValue$2(0, buffer, t1.get$current(t1)); } else if (type$.Map_dynamic_dynamic._is(value)) { buffer._serialization$_add$1(0, 13); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); t1.forEach$1(value, new A.StandardMessageCodec_writeValue_closure(_this, buffer)); } else throw A.wrapException(A.ArgumentError$value(value, null, null)); }, readValue$1(_, buffer) { if (!(buffer._serialization$_position < J.get$lengthInBytes$x(buffer.data))) throw A.wrapException(B.FormatException_oCg); return this.readValueOfType$2(buffer.getUint8$0(0), buffer); }, readValueOfType$2(type, buffer) { var t1, t2, value, $length, list, result, i, t3, _this = this; switch (type) { case 0: return null; case 1: return true; case 2: return false; case 3: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getInt32$2$x(buffer.data, t1, t2); buffer._serialization$_position += 4; return value; case 4: return buffer.getInt64$0(0); case 6: buffer._alignTo$1(8); t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getFloat64$2$x(buffer.data, t1, t2); buffer._serialization$_position += 8; return value; case 5: case 7: $length = _this.readSize$1(buffer); return B.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)); case 8: return buffer.getUint8List$1(_this.readSize$1(buffer)); case 9: $length = _this.readSize$1(buffer); buffer._alignTo$1(4); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asInt32List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 4 * $length; return list; case 10: $length = _this.readSize$1(buffer); buffer._alignTo$1(8); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asInt64List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 8 * $length; return list; case 14: $length = _this.readSize$1(buffer); buffer._alignTo$1(4); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asFloat32List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 4 * $length; return list; case 11: $length = _this.readSize$1(buffer); buffer._alignTo$1(8); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asFloat64List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 8 * $length; return list; case 12: $length = _this.readSize$1(buffer); result = A.List_List$filled($length, null, false, type$.nullable_Object); for (t1 = buffer.data, t2 = J.getInterceptor$x(t1), i = 0; i < $length; ++i) { if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) A.throwExpression(B.FormatException_oCg); result[i] = _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer); } return result; case 13: $length = _this.readSize$1(buffer); t1 = type$.nullable_Object; result = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = buffer.data, t2 = J.getInterceptor$x(t1), i = 0; i < $length; ++i) { if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) A.throwExpression(B.FormatException_oCg); t3 = _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer); if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) A.throwExpression(B.FormatException_oCg); result.$indexSet(0, t3, _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer)); } return result; default: throw A.wrapException(B.FormatException_oCg); } }, writeSize$2(buffer, value) { var t1, t2; if (value < 254) buffer._serialization$_add$1(0, value); else { t1 = buffer._eightBytes; if (value <= 65535) { buffer._serialization$_add$1(0, 254); t2 = $.$get$Endian_host(); t1.setUint16(0, value, B.C_Endian === t2); buffer._addAll$3(buffer._eightBytesAsList, 0, 2); } else { buffer._serialization$_add$1(0, 255); t2 = $.$get$Endian_host(); t1.setUint32(0, value, B.C_Endian === t2); buffer._addAll$3(buffer._eightBytesAsList, 0, 4); } } }, readSize$1(buffer) { var t1, t2, value = buffer.getUint8$0(0); switch (value) { case 254: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getUint16$2$x(buffer.data, t1, t2); buffer._serialization$_position += 2; return value; case 255: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getUint32$2$x(buffer.data, t1, t2); buffer._serialization$_position += 4; return value; default: return value; } } }; A.StandardMessageCodec_writeValue_closure.prototype = { call$2(key, value) { var t1 = this.$this, t2 = this.buffer; t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, $signature: 262 }; A.StandardMethodCodec0.prototype = { encodeMethodCall$1(methodCall) { var buffer = A.WriteBuffer_WriteBuffer(); B.C_StandardMessageCodec.writeValue$2(0, buffer, methodCall.method); B.C_StandardMessageCodec.writeValue$2(0, buffer, methodCall.$arguments); return buffer.done$0(); }, decodeMethodCall$1(methodCall) { var buffer, method, $arguments; methodCall.toString; buffer = new A.ReadBuffer(methodCall); method = B.C_StandardMessageCodec.readValue$1(0, buffer); $arguments = B.C_StandardMessageCodec.readValue$1(0, buffer); if (typeof method == "string" && !(buffer._serialization$_position < J.get$lengthInBytes$x(methodCall))) return new A.MethodCall0(method, $arguments); else throw A.wrapException(B.FormatException_Qi2); }, encodeSuccessEnvelope$1(result) { var buffer = A.WriteBuffer_WriteBuffer(); buffer._serialization$_add$1(0, 0); B.C_StandardMessageCodec.writeValue$2(0, buffer, result); return buffer.done$0(); }, encodeErrorEnvelope$3$code$details$message(code, details, message) { var buffer = A.WriteBuffer_WriteBuffer(); buffer._serialization$_add$1(0, 1); B.C_StandardMessageCodec.writeValue$2(0, buffer, code); B.C_StandardMessageCodec.writeValue$2(0, buffer, message); B.C_StandardMessageCodec.writeValue$2(0, buffer, details); return buffer.done$0(); }, encodeErrorEnvelope$2$code$message(code, message) { return this.encodeErrorEnvelope$3$code$details$message(code, null, message); }, decodeEnvelope$1(envelope) { var buffer, errorCode, errorMessage, errorDetails, errorStacktrace, t1 = J.getInterceptor$x(envelope); if (t1.get$lengthInBytes(envelope) === 0) throw A.wrapException(B.FormatException_iDw); buffer = new A.ReadBuffer(envelope); if (buffer.getUint8$0(0) === 0) return B.C_StandardMessageCodec.readValue$1(0, buffer); errorCode = B.C_StandardMessageCodec.readValue$1(0, buffer); errorMessage = B.C_StandardMessageCodec.readValue$1(0, buffer); errorDetails = B.C_StandardMessageCodec.readValue$1(0, buffer); errorStacktrace = buffer._serialization$_position < t1.get$lengthInBytes(envelope) ? A._asStringQ(B.C_StandardMessageCodec.readValue$1(0, buffer)) : null; if (typeof errorCode == "string") t1 = (errorMessage == null || typeof errorMessage == "string") && !(buffer._serialization$_position < t1.get$lengthInBytes(envelope)); else t1 = false; if (t1) throw A.wrapException(A.PlatformException$(errorCode, errorDetails, A._asStringQ(errorMessage), errorStacktrace)); else throw A.wrapException(B.FormatException_pSr); } }; A.MouseCursorManager.prototype = { handleDeviceCursorUpdate$3(device, triggeringEvent, cursorCandidates) { var t1, lastSession, nextCursor, t2, nextSession; if (type$.PointerRemovedEvent._is(triggeringEvent)) { this._lastSession.remove$1(0, device); return; } t1 = this._lastSession; lastSession = t1.$index(0, device); nextCursor = A._DeferringMouseCursor_firstNonDeferred(cursorCandidates); if (nextCursor == null) nextCursor = this.fallbackMouseCursor; t2 = lastSession == null; if (J.$eq$(t2 ? null : lastSession.get$cursor(lastSession), nextCursor)) return; nextSession = nextCursor.createSession$1(device); t1.$indexSet(0, device, nextSession); if (!t2) lastSession.dispose$0(0); nextSession.activate$0(); } }; A.MouseCursorSession.prototype = { get$cursor(receiver) { return this.cursor; } }; A.MouseCursor0.prototype = { toString$0(_) { var debugDescription = this.get$debugDescription(); return debugDescription; } }; A._DeferringMouseCursor.prototype = { createSession$1(device) { throw A.wrapException(A.UnimplementedError$(null)); }, get$debugDescription() { return "defer"; } }; A._NoopMouseCursorSession.prototype = { activate$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$activate$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$activate$0, $async$completer); }, dispose$0(_) { } }; A._NoopMouseCursor.prototype = { createSession$1(device) { return new A._NoopMouseCursorSession(this, device); }, get$debugDescription() { return "uncontrolled"; } }; A._SystemMouseCursorSession.prototype = { get$cursor(_) { return type$.SystemMouseCursor._as(this.cursor); }, activate$0() { return B.OptionalMethodChannel_4Up.invokeMethod$1$2("activateSystemCursor", A.LinkedHashMap_LinkedHashMap$_literal(["device", this.device, "kind", type$.SystemMouseCursor._as(this.cursor).kind], type$.String, type$.dynamic), type$.void); }, dispose$0(_) { } }; A.SystemMouseCursor.prototype = { get$debugDescription() { return "SystemMouseCursor(" + this.kind + ")"; }, createSession$1(device) { return new A._SystemMouseCursorSession(this, device); }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.SystemMouseCursor && other.kind === this.kind; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.kind); } }; A._MouseCursor_Object_Diagnosticable.prototype = {}; A.BasicMessageChannel.prototype = { send$1(_, message) { return this.send$body$BasicMessageChannel(0, message, this.$ti._eval$1("1?")); }, send$body$BasicMessageChannel(_, message, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, t1, t2, $async$temp1; var $async$send$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.codec; t2 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, "_defaultBinaryMessenger"); t2 = t2; $async$temp1 = t1; $async$goto = 3; return A._asyncAwait(t2.send$2(0, $async$self.name, t1.encodeMessage$1(message)), $async$send$1); case 3: // returning from await. $async$returnValue = $async$temp1.decodeMessage$1($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$send$1, $async$completer); }, setMessageHandler$1(handler) { var t1, _s23_ = "_defaultBinaryMessenger"; if (handler == null) { t1 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, _s23_); t1 = t1; t1.setMessageHandler$2(this.name, null); } else { t1 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, _s23_); t1 = t1; t1.setMessageHandler$2(this.name, new A.BasicMessageChannel_setMessageHandler_closure(this, handler)); } }, get$name(receiver) { return this.name; } }; A.BasicMessageChannel_setMessageHandler_closure.prototype = { call$1(message) { return this.$call$body$BasicMessageChannel_setMessageHandler_closure(message); }, $call$body$BasicMessageChannel_setMessageHandler_closure(message) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_ByteData), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this.codec; $async$temp1 = t1; $async$goto = 3; return A._asyncAwait($async$self.handler.call$1(t1.decodeMessage$1(message)), $async$call$1); case 3: // returning from await. $async$returnValue = $async$temp1.encodeMessage$1($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 705 }; A.MethodChannel.prototype = { _invokeMethod$1$3$arguments$missingOk(method, $arguments, missingOk, $T) { return this._invokeMethod$body$MethodChannel(method, $arguments, missingOk, $T, $T._eval$1("0?")); }, _invokeMethod$body$MethodChannel(method, $arguments, missingOk, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, t2, t3, result, t1; var $async$_invokeMethod$1$3$arguments$missingOk = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._binaryMessenger; if (t1 == null) t1 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, "_defaultBinaryMessenger"); t2 = $async$self.name; t3 = $async$self.codec; $async$goto = 3; return A._asyncAwait(t1.send$2(0, t2, t3.encodeMethodCall$1(new A.MethodCall0(method, $arguments))), $async$_invokeMethod$1$3$arguments$missingOk); case 3: // returning from await. result = $async$result; if (result == null) { if (missingOk) { $async$returnValue = null; // goto return $async$goto = 1; break; } throw A.wrapException(A.MissingPluginException$("No implementation found for method " + method + " on channel " + t2)); } $async$returnValue = $T._eval$1("0?")._as(t3.decodeEnvelope$1(result)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_invokeMethod$1$3$arguments$missingOk, $async$completer); }, invokeMethod$1$2(method, $arguments, $T) { return this._invokeMethod$1$3$arguments$missingOk(method, $arguments, false, $T); }, invokeListMethod$1$2(method, $arguments, $T) { return this.invokeListMethod$body$MethodChannel(method, $arguments, $T, $T._eval$1("List<0>?")); }, invokeListMethod$1$1(method, $T) { return this.invokeListMethod$1$2(method, null, $T); }, invokeListMethod$body$MethodChannel(method, $arguments, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, result; var $async$invokeListMethod$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.invokeMethod$1$2(method, $arguments, type$.List_dynamic), $async$invokeListMethod$1$2); case 3: // returning from await. result = $async$result; $async$returnValue = result == null ? null : J.cast$1$0$ax(result, $T); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$invokeListMethod$1$2, $async$completer); }, invokeMapMethod$2$2(method, $arguments, $K, $V) { return this.invokeMapMethod$body$MethodChannel(method, $arguments, $K, $V, $K._eval$1("@<0>")._bind$1($V)._eval$1("Map<1,2>?")); }, invokeMapMethod$2$1(method, $K, $V) { return this.invokeMapMethod$2$2(method, null, $K, $V); }, invokeMapMethod$body$MethodChannel(method, $arguments, $K, $V, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, result; var $async$invokeMapMethod$2$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.invokeMethod$1$2(method, $arguments, type$.Map_dynamic_dynamic), $async$invokeMapMethod$2$2); case 3: // returning from await. result = $async$result; $async$returnValue = result == null ? null : J.cast$2$0$ax(result, $K, $V); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$invokeMapMethod$2$2, $async$completer); }, setMethodCallHandler$1(handler) { var t2, t1 = this._binaryMessenger; if (t1 == null) t1 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__defaultBinaryMessenger, "_defaultBinaryMessenger"); t2 = handler == null ? null : new A.MethodChannel_setMethodCallHandler_closure(this, handler); t1.setMessageHandler$2(this.name, t2); }, _handleAsMethodCall$2(message, handler) { return this._handleAsMethodCall$body$MethodChannel(message, handler); }, _handleAsMethodCall$body$MethodChannel(message, handler) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_ByteData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, error, t2, exception, t3, t1, $call, $async$exception, $async$temp1; var $async$_handleAsMethodCall$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.codec; $call = t1.decodeMethodCall$1(message); $async$handler = 4; $async$temp1 = t1; $async$goto = 7; return A._asyncAwait(handler.call$1($call), $async$_handleAsMethodCall$2); case 7: // returning from await. t2 = $async$temp1.encodeSuccessEnvelope$1($async$result); $async$returnValue = t2; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t2 = A.unwrapException($async$exception); if (t2 instanceof A.PlatformException) { e = t2; t2 = e.code; t3 = e.message; $async$returnValue = t1.encodeErrorEnvelope$3$code$details$message(t2, e.details, t3); // goto return $async$goto = 1; break; } else if (t2 instanceof A.MissingPluginException) { $async$returnValue = null; // goto return $async$goto = 1; break; } else { error = t2; t1 = t1.encodeErrorEnvelope$2$code$message("error", J.toString$0$(error)); $async$returnValue = t1; // goto return $async$goto = 1; break; } // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_handleAsMethodCall$2, $async$completer); }, get$name(receiver) { return this.name; } }; A.MethodChannel_setMethodCallHandler_closure.prototype = { call$1(message) { return this.$this._handleAsMethodCall$2(message, this.handler); }, $signature: 705 }; A.OptionalMethodChannel.prototype = { invokeMethod$1$2(method, $arguments, $T) { return this.invokeMethod$body$OptionalMethodChannel(method, $arguments, $T, $T._eval$1("0?")); }, invokeMethod$1$1(method, $T) { return this.invokeMethod$1$2(method, null, $T); }, invokeMethod$body$OptionalMethodChannel(method, $arguments, $T, $async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this; var $async$invokeMethod$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.super$MethodChannel$_invokeMethod(method, $arguments, true, $T); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$invokeMethod$1$2, $async$completer); } }; A.PlatformViewsRegistry.prototype = { getNextPlatformViewId$0() { return this._nextPlatformViewId++; } }; A.PlatformViewController.prototype = {}; A.KeyboardSide.prototype = { toString$0(_) { return "KeyboardSide." + this._core$_name; } }; A.ModifierKey.prototype = { toString$0(_) { return "ModifierKey." + this._core$_name; } }; A.RawKeyEventData.prototype = { get$modifiersPressed() { var _i, key, side, result = A.LinkedHashMap_LinkedHashMap$_empty(type$.ModifierKey, type$.KeyboardSide); for (_i = 0; _i < 9; ++_i) { key = B.List_4LR[_i]; if (this.isModifierPressed$1(key)) { side = this.getModifierSide$1(key); if (side != null) result.$indexSet(0, key, side); } } return result; }, shouldDispatchEvent$0() { return true; } }; A.RawKeyEvent.prototype = {}; A.RawKeyEvent_RawKeyEvent$fromMessage__dataFromWeb.prototype = { call$0() { var t4, t5, t6, t1 = this.message, t2 = J.getInterceptor$asx(t1), key = A._asStringQ(t2.$index(t1, "key")), t3 = key == null; if (!t3) { t4 = key.length; t4 = t4 !== 0 && t4 === 1; } else t4 = false; if (t4) this._box_0.character = key; t4 = A._asStringQ(t2.$index(t1, "code")); if (t4 == null) t4 = ""; t3 = t3 ? "" : key; t5 = A._asIntQ(t2.$index(t1, "location")); if (t5 == null) t5 = 0; t6 = A._asIntQ(t2.$index(t1, "metaState")); if (t6 == null) t6 = 0; t1 = A._asIntQ(t2.$index(t1, "keyCode")); return new A.RawKeyEventDataWeb(t4, t3, t5, t6, t1 == null ? 0 : t1); }, $signature: 2117 }; A.RawKeyDownEvent.prototype = {}; A.RawKeyUpEvent.prototype = {}; A.RawKeyboard.prototype = { addListener$1(_, listener) { this._raw_keyboard$_listeners.push(listener); }, removeListener$1(_, listener) { B.JSArray_methods.remove$1(this._raw_keyboard$_listeners, listener); }, handleRawKeyEvent$1($event) { var listener, exception, stack, t1, shouldDispatch, t2, t3, _i, exception0, t4, t5, _this = this; if ($event instanceof A.RawKeyDownEvent) { t1 = $event.data; if (t1.shouldDispatchEvent$0()) { _this._keysPressed.$indexSet(0, t1.get$physicalKey(), t1.get$logicalKey()); shouldDispatch = true; } else { _this._hiddenKeysPressed.add$1(0, t1.get$physicalKey()); shouldDispatch = false; } } else if ($event instanceof A.RawKeyUpEvent) { t1 = _this._hiddenKeysPressed; t2 = $event.data; if (!t1.contains$1(0, t2.get$physicalKey())) { _this._keysPressed.remove$1(0, t2.get$physicalKey()); shouldDispatch = true; } else { t1.remove$1(0, t2.get$physicalKey()); shouldDispatch = false; } } else shouldDispatch = true; if (!shouldDispatch) return true; _this._synchronizeModifiers$1($event); for (t1 = _this._raw_keyboard$_listeners, t2 = A.List_List$of(t1, true, type$.void_Function_RawKeyEvent), t3 = t2.length, _i = 0; _i < t3; ++_i) { listener = t2[_i]; try { if (B.JSArray_methods.contains$1(t1, listener)) listener.call$1($event); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t4 = A.ErrorDescription$("while processing a raw key listener"); t5 = $.$get$FlutterError_onError(); if (t5 != null) t5.call$1(new A.FlutterErrorDetails(exception, stack, "services library", t4, null, null, false)); } } return false; }, _synchronizeModifiers$1($event) { var thisKeyModifier, _i, key, t6, thisModifierKeys, mappedKeys, t7, t8, logicalKey, t1 = $event.data, modifiersPressed = t1.get$modifiersPressed(), t2 = type$.PhysicalKeyboardKey, modifierKeys = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.LogicalKeyboardKey), anySideKeys = A.LinkedHashSet_LinkedHashSet$_empty(t2), t3 = this._keysPressed, t4 = A.LinkedHashSet_LinkedHashSet$of(new A.LinkedHashMapKeyIterable(t3, A._instanceType(t3)._eval$1("LinkedHashMapKeyIterable<1>")), t2), t5 = $event instanceof A.RawKeyDownEvent; if (t5) t4.add$1(0, t1.get$physicalKey()); for (thisKeyModifier = null, _i = 0; _i < 9; ++_i) { key = B.List_4LR[_i]; t6 = $.$get$RawKeyboard__modifierKeyMap(); thisModifierKeys = t6.$index(0, new A._ModifierSidePair(key, B.KeyboardSide_3)); if (thisModifierKeys == null) continue; if (thisModifierKeys.contains$1(0, t1.get$physicalKey())) thisKeyModifier = key; if (modifiersPressed.$index(0, key) === B.KeyboardSide_0) { anySideKeys.addAll$1(0, thisModifierKeys); if (thisModifierKeys.any$1(0, t4.get$contains(t4))) continue; } mappedKeys = modifiersPressed.$index(0, key) == null ? A.LinkedHashSet_LinkedHashSet$_empty(t2) : t6.$index(0, new A._ModifierSidePair(key, modifiersPressed.$index(0, key))); if (mappedKeys == null) continue; for (t6 = new A._LinkedHashSetIterator(mappedKeys, mappedKeys._collection$_modifications, A._instanceType(mappedKeys)._eval$1("_LinkedHashSetIterator<1>")), t6._collection$_cell = mappedKeys._collection$_first; t6.moveNext$0();) { t7 = t6._collection$_current; t8 = $.$get$RawKeyboard__allModifiers().$index(0, t7); t8.toString; modifierKeys.$indexSet(0, t7, t8); } } t2 = $.$get$RawKeyboard__allModifiersExceptFn(); t4 = A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>"); new A.WhereIterable(new A.LinkedHashMapKeyIterable(t2, t4), new A.RawKeyboard__synchronizeModifiers_closure(anySideKeys), t4._eval$1("WhereIterable")).forEach$1(0, t3.get$remove(t3)); if (!(t1 instanceof A.RawKeyEventDataFuchsia) && !(t1 instanceof A.RawKeyEventDataMacOs)) t3.remove$1(0, B.PhysicalKeyboardKey_18); t3.addAll$1(0, modifierKeys); if (t5 && thisKeyModifier != null && !t3.containsKey$1(0, t1.get$physicalKey())) if (t1 instanceof A.RawKeyEventDataLinux && t1.get$physicalKey().$eq(0, B.PhysicalKeyboardKey_458982)) { logicalKey = t2.$index(0, t1.get$physicalKey()); if (logicalKey != null) t3.$indexSet(0, t1.get$physicalKey(), logicalKey); } } }; A.RawKeyboard__synchronizeModifiers_closure.prototype = { call$1(key) { return !this.anySideKeys.contains$1(0, key); }, $signature: 2115 }; A._ModifierSidePair.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._ModifierSidePair && other.modifier == this.modifier && other.side == this.side; }, get$hashCode(_) { return A.Object_hash(this.modifier, this.side, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._RawKeyEvent_Object_Diagnosticable.prototype = {}; A._RawKeyEventData_Object_Diagnosticable.prototype = {}; A.RawKeyEventDataFuchsia.prototype = {}; A.RawKeyEventDataLinux.prototype = {}; A.RawKeyEventDataMacOs.prototype = {}; A.RawKeyEventDataWeb.prototype = { get$physicalKey() { var t1 = this.code, t2 = B.Map_1k5Ax.$index(0, t1); return t2 == null ? new A.PhysicalKeyboardKey(98784247808 + B.JSString_methods.get$hashCode(t1)) : t2; }, get$logicalKey() { var newKey, t1 = this.key, t2 = B.Map_8Tc9P.$index(0, t1), maybeLocationKey = t2 == null ? null : t2[this.location]; if (maybeLocationKey != null) return maybeLocationKey; t2 = this.code; newKey = B.Map_0mOHH.$index(0, t2); if (newKey != null) return newKey; if (t1.length === 1) return new A.LogicalKeyboardKey(B.JSString_methods._codeUnitAt$1(t1.toLowerCase(), 0)); return new A.LogicalKeyboardKey(B.JSString_methods.get$hashCode(t2) + 98784247808); }, isModifierPressed$1(key) { var _this = this; switch (key) { case B.ModifierKey_0: return (_this.metaState & 4) !== 0; case B.ModifierKey_1: return (_this.metaState & 1) !== 0; case B.ModifierKey_2: return (_this.metaState & 2) !== 0; case B.ModifierKey_3: return (_this.metaState & 8) !== 0; case B.ModifierKey_5: return (_this.metaState & 16) !== 0; case B.ModifierKey_4: return (_this.metaState & 32) !== 0; case B.ModifierKey_6: return (_this.metaState & 64) !== 0; case B.ModifierKey_7: case B.ModifierKey_8: return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getModifierSide$1(key) { return B.KeyboardSide_0; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.RawKeyEventDataWeb && other.code === _this.code && other.key === _this.key && other.location === _this.location && other.metaState === _this.metaState && other.keyCode === _this.keyCode; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.code, _this.key, _this.location, _this.metaState, _this.keyCode, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.RestorationManager.prototype = { get$rootBucket() { var _this = this; if (_this._rootBucketIsValid) return new A.SynchronousFuture(_this._restoration$_rootBucket, type$.SynchronousFuture_nullable_RestorationBucket); if (_this._pendingRootBucket == null) { _this._pendingRootBucket = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_nullable_RestorationBucket), type$._AsyncCompleter_nullable_RestorationBucket); _this._getRootBucketFromEngine$0(); } return _this._pendingRootBucket.future; }, _getRootBucketFromEngine$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, config; var $async$_getRootBucketFromEngine$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.OptionalMethodChannel_wEo.invokeMethod$1$1("get", type$.Map_of_nullable_Object_and_nullable_Object), $async$_getRootBucketFromEngine$0); case 3: // returning from await. config = $async$result; if ($async$self._pendingRootBucket == null) { // goto return $async$goto = 1; break; } $async$self._parseAndHandleRestorationUpdateFromEngine$1(config); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_getRootBucketFromEngine$0, $async$completer); }, _parseAndHandleRestorationUpdateFromEngine$1(update) { var t2, t1 = update == null; if (!t1) { t2 = J.$index$asx(update, "enabled"); t2.toString; A._asBoolS(t2); } else t2 = false; this.handleRestorationUpdateFromEngine$2$data$enabled(t1 ? null : type$.nullable_Uint8List._as(J.$index$asx(update, "data")), t2); }, handleRestorationUpdateFromEngine$2$data$enabled(data, enabled) { var oldRoot, t2, _this = this, t1 = _this._rootBucketIsValid && enabled; _this._isReplacing = t1; if (t1) $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.RestorationManager_handleRestorationUpdateFromEngine_closure(_this)); oldRoot = _this._restoration$_rootBucket; if (enabled) { t1 = _this._decodeRestorationData$1(data); t2 = type$.String; if (t1 == null) { t1 = type$.nullable_Object; t1 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } t2 = new A.RestorationBucket(t1, _this, null, "root", A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.RestorationBucket), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_RestorationBucket)); t1 = t2; } else t1 = null; _this._restoration$_rootBucket = t1; _this._rootBucketIsValid = true; t2 = _this._pendingRootBucket; if (t2 != null) t2.complete$1(0, t1); _this._pendingRootBucket = null; if (_this._restoration$_rootBucket != oldRoot) { _this.notifyListeners$0(); if (oldRoot != null) oldRoot.dispose$0(0); } }, _methodHandler$1($call) { return this._methodHandler$body$RestorationManager($call); }, _methodHandler$body$RestorationManager($call) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$_methodHandler$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $call.method; switch (t1) { case "push": $async$self._parseAndHandleRestorationUpdateFromEngine$1(type$.Map_of_nullable_Object_and_nullable_Object._as($call.$arguments)); break; default: throw A.wrapException(A.UnimplementedError$(t1 + " was invoked but isn't implemented by " + A.getRuntimeType($async$self).toString$0(0))); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_methodHandler$1, $async$completer); }, _decodeRestorationData$1(data) { var t1; if (data == null) return null; t1 = J.getInterceptor$x(data); return type$.nullable_Map_of_nullable_Object_and_nullable_Object._as(B.C_StandardMessageCodec.decodeMessage$1(J.asByteData$2$x(t1.get$buffer(data), t1.get$offsetInBytes(data), t1.get$lengthInBytes(data)))); }, scheduleSerializationFor$1(bucket) { var _this = this; _this._bucketsNeedingSerialization.add$1(0, bucket); if (!_this._serializationScheduled) { _this._serializationScheduled = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.RestorationManager_scheduleSerializationFor_closure(_this)); } }, _doSerialization$0() { var t1, t2, encoded, _this = this; if (!_this._serializationScheduled) return; _this._serializationScheduled = false; for (t1 = _this._bucketsNeedingSerialization, t2 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t2.moveNext$0();) t2._collection$_current._needsSerialization = false; t1.clear$0(0); encoded = B.C_StandardMessageCodec.encodeMessage$1(_this._restoration$_rootBucket._rawData); B.OptionalMethodChannel_wEo.invokeMethod$1$2("put", A.NativeUint8List_NativeUint8List$view(encoded.buffer, encoded.byteOffset, encoded.byteLength), type$.void); }, flushData$0() { if ($.SchedulerBinding__instance.SchedulerBinding__hasScheduledFrame) return; this._doSerialization$0(); } }; A.RestorationManager_handleRestorationUpdateFromEngine_closure.prototype = { call$1(_) { this.$this._isReplacing = false; }, $signature: 22 }; A.RestorationManager_scheduleSerializationFor_closure.prototype = { call$1(_) { return this.$this._doSerialization$0(); }, $signature: 22 }; A.RestorationBucket.prototype = { get$_rawChildren() { var t1 = J.putIfAbsent$2$x(this._rawData, "c", new A.RestorationBucket__rawChildren_closure()); t1.toString; return type$.Map_of_nullable_Object_and_nullable_Object._as(t1); }, get$_rawValues() { var t1 = J.putIfAbsent$2$x(this._rawData, "v", new A.RestorationBucket__rawValues_closure()); t1.toString; return type$.Map_of_nullable_Object_and_nullable_Object._as(t1); }, remove$1$1(_, restorationId, $P) { var _this = this, needsUpdate = J.containsKey$1$x(_this.get$_rawValues(), restorationId), result = $P._eval$1("0?")._as(J.remove$1$ax(_this.get$_rawValues(), restorationId)); if (J.get$isEmpty$asx(_this.get$_rawValues())) J.remove$1$ax(_this._rawData, "v"); if (needsUpdate) _this._markNeedsSerialization$0(); return result; }, claimChild$2$debugOwner(restorationId, debugOwner) { var child, t2, t3, t4, _this = this, t1 = _this._claimedChildren; if (t1.containsKey$1(0, restorationId) || !J.containsKey$1$x(_this.get$_rawChildren(), restorationId)) { t1 = type$.String; child = new A.RestorationBucket(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.nullable_Object), null, null, restorationId, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.RestorationBucket), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_RestorationBucket)); _this.adoptChild$1(child); return child; } t2 = type$.String; t3 = _this._restoration$_manager; t4 = J.$index$asx(_this.get$_rawChildren(), restorationId); t4.toString; child = new A.RestorationBucket(type$.Map_of_nullable_Object_and_nullable_Object._as(t4), t3, _this, restorationId, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.RestorationBucket), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_RestorationBucket)); t1.$indexSet(0, restorationId, child); return child; }, adoptChild$1(child) { var _this = this, t1 = child._restoration$_parent; if (t1 !== _this) { if (t1 != null) t1._removeChildData$1(child); child._restoration$_parent = _this; _this._addChildData$1(child); if (child._restoration$_manager != _this._restoration$_manager) _this._recursivelyUpdateManager$1(child); } }, _dropChild$1(child) { this._removeChildData$1(child); child._restoration$_parent = null; if (child._restoration$_manager != null) { child._restoration$_updateManager$1(null); child._visitChildren$1(this.get$_recursivelyUpdateManager()); } }, _markNeedsSerialization$0() { var t1, _this = this; if (!_this._needsSerialization) { _this._needsSerialization = true; t1 = _this._restoration$_manager; if (t1 != null) t1.scheduleSerializationFor$1(_this); } }, _recursivelyUpdateManager$1(bucket) { bucket._restoration$_updateManager$1(this._restoration$_manager); bucket._visitChildren$1(this.get$_recursivelyUpdateManager()); }, _restoration$_updateManager$1(newManager) { var _this = this, t1 = _this._restoration$_manager; if (t1 == newManager) return; if (_this._needsSerialization) if (t1 != null) t1._bucketsNeedingSerialization.remove$1(0, _this); _this._restoration$_manager = newManager; if (_this._needsSerialization && newManager != null) { _this._needsSerialization = false; _this._markNeedsSerialization$0(); } }, _removeChildData$1(child) { var t1, pendingChildren, t2, _this = this; if (J.$eq$(_this._claimedChildren.remove$1(0, child._restorationId), child)) { J.remove$1$ax(_this.get$_rawChildren(), child._restorationId); t1 = _this._childrenToAdd; pendingChildren = t1.$index(0, child._restorationId); if (pendingChildren != null) { t2 = J.getInterceptor$ax(pendingChildren); _this._finalizeAddChildData$1(t2.removeLast$0(pendingChildren)); if (t2.get$isEmpty(pendingChildren)) t1.remove$1(0, child._restorationId); } if (J.get$isEmpty$asx(_this.get$_rawChildren())) J.remove$1$ax(_this._rawData, "c"); _this._markNeedsSerialization$0(); return; } t1 = _this._childrenToAdd; t2 = t1.$index(0, child._restorationId); if (t2 != null) J.remove$1$ax(t2, child); t2 = t1.$index(0, child._restorationId); t2 = t2 == null ? null : J.get$isEmpty$asx(t2); if (t2 === true) t1.remove$1(0, child._restorationId); }, _addChildData$1(child) { var _this = this; if (_this._claimedChildren.containsKey$1(0, child._restorationId)) { J.add$1$ax(_this._childrenToAdd.putIfAbsent$2(0, child._restorationId, new A.RestorationBucket__addChildData_closure()), child); _this._markNeedsSerialization$0(); return; } _this._finalizeAddChildData$1(child); _this._markNeedsSerialization$0(); }, _finalizeAddChildData$1(child) { this._claimedChildren.$indexSet(0, child._restorationId, child); J.$indexSet$ax(this.get$_rawChildren(), child._restorationId, child._rawData); }, _visitChildren$2$concurrentModification(visitor, concurrentModification) { var t2, children, t1 = this._claimedChildren; t1 = t1.get$values(t1); t2 = this._childrenToAdd; t2 = t2.get$values(t2); children = t1.followedBy$1(0, new A.ExpandIterable(t2, new A.RestorationBucket__visitChildren_closure(), A._instanceType(t2)._eval$1("ExpandIterable"))); J.forEach$1$ax(concurrentModification ? A.List_List$of(children, false, A._instanceType(children)._eval$1("Iterable.E")) : children, visitor); }, _visitChildren$1(visitor) { return this._visitChildren$2$concurrentModification(visitor, false); }, rename$1(newRestorationId) { var t1, _this = this; if (newRestorationId == _this._restorationId) return; t1 = _this._restoration$_parent; if (t1 != null) t1._removeChildData$1(_this); _this._restorationId = newRestorationId; t1 = _this._restoration$_parent; if (t1 != null) t1._addChildData$1(_this); }, dispose$0(_) { var t1, _this = this; _this._visitChildren$2$concurrentModification(_this.get$_dropChild(), true); _this._claimedChildren.clear$0(0); _this._childrenToAdd.clear$0(0); t1 = _this._restoration$_parent; if (t1 != null) t1._removeChildData$1(_this); _this._restoration$_parent = null; _this._restoration$_updateManager$1(null); _this._debugDisposed = true; }, toString$0(_) { return "RestorationBucket(restorationId: " + A.S(this._restorationId) + ", owner: " + A.S(this._debugOwner) + ")"; } }; A.RestorationBucket__rawChildren_closure.prototype = { call$0() { var t1 = type$.nullable_Object; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, $signature: 722 }; A.RestorationBucket__rawValues_closure.prototype = { call$0() { var t1 = type$.nullable_Object; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, $signature: 722 }; A.RestorationBucket__addChildData_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_RestorationBucket); }, $signature: 2113 }; A.RestorationBucket__visitChildren_closure.prototype = { call$1(buckets) { return buckets; }, $signature: 2111 }; A.ApplicationSwitcherDescription.prototype = {}; A.SystemUiOverlayStyle.prototype = { _toMap$0() { var t2, t3, t4, _this = this, _null = null, t1 = _this.systemNavigationBarColor; t1 = t1 == null ? _null : t1.value; t2 = _this.statusBarBrightness; t2 = t2 == null ? _null : "Brightness." + t2._core$_name; t3 = _this.statusBarIconBrightness; t3 = t3 == null ? _null : "Brightness." + t3._core$_name; t4 = _this.systemNavigationBarIconBrightness; t4 = t4 == null ? _null : "Brightness." + t4._core$_name; return A.LinkedHashMap_LinkedHashMap$_literal(["systemNavigationBarColor", t1, "systemNavigationBarDividerColor", null, "systemStatusBarContrastEnforced", _this.systemStatusBarContrastEnforced, "statusBarColor", null, "statusBarBrightness", t2, "statusBarIconBrightness", t3, "systemNavigationBarIconBrightness", t4, "systemNavigationBarContrastEnforced", _this.systemNavigationBarContrastEnforced], type$.String, type$.dynamic); }, toString$0(_) { return "SystemUiOverlayStyle(" + this._toMap$0().toString$0(0) + ")"; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.systemNavigationBarColor, _this.systemNavigationBarDividerColor, _this.systemNavigationBarContrastEnforced, _this.statusBarColor, _this.statusBarBrightness, _this.statusBarIconBrightness, _this.systemStatusBarContrastEnforced, _this.systemNavigationBarIconBrightness, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (other instanceof A.SystemUiOverlayStyle) if (J.$eq$(other.systemNavigationBarColor, _this.systemNavigationBarColor)) if (other.statusBarIconBrightness == _this.statusBarIconBrightness) if (other.statusBarBrightness == _this.statusBarBrightness) t1 = other.systemNavigationBarIconBrightness == _this.systemNavigationBarIconBrightness; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; A.SystemChrome_setSystemUIOverlayStyle_closure.prototype = { call$0() { if (!J.$eq$($.SystemChrome__pendingStyle, $.SystemChrome__latestStyle)) { B.OptionalMethodChannel_0.invokeMethod$1$2("SystemChrome.setSystemUIOverlayStyle", $.SystemChrome__pendingStyle._toMap$0(), type$.void); $.SystemChrome__latestStyle = $.SystemChrome__pendingStyle; } $.SystemChrome__pendingStyle = null; }, $signature: 0 }; A.SystemSoundType.prototype = { toString$0(_) { return "SystemSoundType." + this._core$_name; } }; A.TextSelection.prototype = { get$base() { var affinity, _this = this; if (!_this.get$isValid() || _this.baseOffset == _this.extentOffset) affinity = _this.affinity; else affinity = _this.baseOffset < _this.extentOffset ? B.TextAffinity_1 : B.TextAffinity_0; return new A.TextPosition(_this.baseOffset, affinity); }, get$extent() { var affinity, _this = this; if (!_this.get$isValid() || _this.baseOffset == _this.extentOffset) affinity = _this.affinity; else affinity = _this.baseOffset < _this.extentOffset ? B.TextAffinity_0 : B.TextAffinity_1; return new A.TextPosition(_this.extentOffset, affinity); }, toString$0(_) { var t1, t2, _this = this, _s17_ = ", isDirectional: "; if (!_this.get$isValid()) return "TextSelection.invalid"; t1 = A.S(_this.baseOffset); t2 = "" + _this.isDirectional; return _this.start == _this.end ? "TextSelection.collapsed(offset: " + t1 + ", affinity: " + _this.affinity.toString$0(0) + _s17_ + t2 + ")" : "TextSelection(baseOffset: " + t1 + ", extentOffset: " + A.S(_this.extentOffset) + _s17_ + t2 + ")"; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.TextSelection)) return false; if (!_this.get$isValid()) return !other.get$isValid(); if (other.baseOffset == _this.baseOffset) if (other.extentOffset == _this.extentOffset) t1 = (_this.start != _this.end || other.affinity === _this.affinity) && other.isDirectional === _this.isDirectional; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var affinityHash, _this = this; if (!_this.get$isValid()) return A.Object_hash(-B.JSInt_methods.get$hashCode(1), -B.JSInt_methods.get$hashCode(1), A.Primitives_objectHashCode(B.TextAffinity_1), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); affinityHash = _this.start == _this.end ? A.Primitives_objectHashCode(_this.affinity) : A.Primitives_objectHashCode(B.TextAffinity_1); return A.Object_hash(J.get$hashCode$(_this.baseOffset), J.get$hashCode$(_this.extentOffset), affinityHash, B.JSBool_methods.get$hashCode(_this.isDirectional), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, copyWith$3$affinity$baseOffset$extentOffset(affinity, baseOffset, extentOffset) { var _this = this, t1 = baseOffset == null ? _this.baseOffset : baseOffset, t2 = extentOffset == null ? _this.extentOffset : extentOffset, t3 = affinity == null ? _this.affinity : affinity; return A.TextSelection$(t3, t1, t2, _this.isDirectional); }, copyWith$2$baseOffset$extentOffset(baseOffset, extentOffset) { return this.copyWith$3$affinity$baseOffset$extentOffset(null, baseOffset, extentOffset); }, copyWith$2$affinity$extentOffset(affinity, extentOffset) { return this.copyWith$3$affinity$baseOffset$extentOffset(affinity, null, extentOffset); }, copyWith$1$extentOffset(extentOffset) { return this.copyWith$3$affinity$baseOffset$extentOffset(null, null, extentOffset); }, expandTo$2(position, extentAtIndex) { var t3, t4, normalized, _this = this, t1 = position.offset, t2 = _this.start; if (t1 >= t2 && t1 <= _this.end) return _this; t3 = _this.baseOffset; t4 = _this.extentOffset; normalized = t3 <= t4; if (t1 <= t2) { if (extentAtIndex) return _this.copyWith$3$affinity$baseOffset$extentOffset(position.affinity, _this.end, t1); t2 = normalized ? t1 : t3; return _this.copyWith$2$baseOffset$extentOffset(t2, normalized ? t4 : t1); } if (extentAtIndex) return _this.copyWith$3$affinity$baseOffset$extentOffset(position.affinity, t2, t1); t2 = normalized ? t3 : t1; return _this.copyWith$2$baseOffset$extentOffset(t2, normalized ? t1 : t4); }, extendTo$1(position) { var t1; if (this.get$extent().$eq(0, position)) return this; t1 = position.offset; return this.copyWith$2$affinity$extentOffset(position.affinity, t1); } }; A.TextEditingDelta.prototype = {}; A.TextEditingDeltaInsertion.prototype = {}; A.TextEditingDeltaDeletion.prototype = {}; A.TextEditingDeltaReplacement.prototype = {}; A.TextEditingDeltaNonTextUpdate.prototype = {}; A.MaxLengthEnforcement.prototype = { toString$0(_) { return "MaxLengthEnforcement." + this._core$_name; } }; A.TextInputFormatter.prototype = {}; A._MutableTextRange.prototype = {}; A._TextEditingValueAccumulator.prototype = {}; A.FilteringTextInputFormatter.prototype = { formatEditUpdate$2(oldValue, newValue) { var t2, formatState, matches, t3, t4, previousMatch, match, t5, selection, composingRegion, _this = this, _null = null, t1 = newValue.selection; t1 = t1.get$isValid() ? new A._MutableTextRange(t1.baseOffset, t1.extentOffset) : _null; t2 = newValue.composing; t2 = t2.get$isValid() && t2.start != t2.end ? new A._MutableTextRange(t2.start, t2.end) : _null; formatState = new A._TextEditingValueAccumulator(newValue, new A.StringBuffer(""), t1, t2); t2 = newValue.text; matches = J.allMatches$1$s(_this.filterPattern, t2); for (t1 = matches.get$iterator(matches), t3 = _this.allow, t4 = !t3, previousMatch = _null; t1.moveNext$0(); previousMatch = match) { match = t1.get$current(t1); t5 = previousMatch == null ? _null : previousMatch.get$end(previousMatch); if (t5 == null) t5 = 0; _this._processRegion$4(t3, t5, match.get$start(match), formatState); _this._processRegion$4(t4, match.get$start(match), match.get$end(match), formatState); } t1 = previousMatch == null ? _null : previousMatch.get$end(previousMatch); if (t1 == null) t1 = 0; _this._processRegion$4(t3, t1, t2.length, formatState); t2 = formatState.debugFinalized = true; selection = formatState.selection; composingRegion = formatState.composingRegion; t1 = formatState.stringBuffer._contents; t2 = (composingRegion != null ? composingRegion.base == composingRegion.extent : t2) ? B.TextRange_m1_m1 : new A.TextRange(composingRegion.base, composingRegion.extent); if (selection == null) t3 = B.TextSelection_ke5; else { t3 = selection.base; t4 = selection.extent; t5 = formatState.inputValue.selection; t5 = A.TextSelection$(t5.affinity, t3, t4, t5.isDirectional); t3 = t5; } return new A.TextEditingValue(t1.charCodeAt(0) == 0 ? t1 : t1, t3, t2); }, _processRegion$4(isBannedRegion, regionStart, regionEnd, state) { var replacementString, t1, t2, t3; if (isBannedRegion) replacementString = regionStart === regionEnd ? "" : this.replacementString; else replacementString = J.substring$2$s(state.inputValue.text, regionStart, regionEnd); state.stringBuffer._contents += replacementString; if (replacementString.length === regionEnd - regionStart) return; t1 = new A.FilteringTextInputFormatter__processRegion_adjustIndex(regionStart, regionEnd, replacementString); t2 = state.selection; t3 = t2 == null; if (!t3) t2.base = t2.base + t1.call$1(state.inputValue.selection.baseOffset); if (!t3) t2.extent = t2.extent + t1.call$1(state.inputValue.selection.extentOffset); t2 = state.composingRegion; t3 = t2 == null; if (!t3) t2.base = t2.base + t1.call$1(state.inputValue.composing.start); if (!t3) t2.extent = t2.extent + t1.call$1(state.inputValue.composing.end); } }; A.FilteringTextInputFormatter__processRegion_adjustIndex.prototype = { call$1(originalIndex) { var _this = this, t1 = _this.regionStart, replacedLength = originalIndex <= t1 && originalIndex < _this.regionEnd ? 0 : _this.replacementString.length; return replacedLength - (B.JSInt_methods.clamp$2(originalIndex, t1, _this.regionEnd) - t1); }, $signature: 121 }; A.LengthLimitingTextInputFormatter.prototype = { formatEditUpdate$2(oldValue, newValue) { var t1, maxLength = this.maxLength; if (maxLength != null) if (maxLength !== -1) { t1 = newValue.text; t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); t1 = t1.get$length(t1) <= maxLength; } else t1 = true; else t1 = true; if (t1) return newValue; t1 = this.maxLengthEnforcement; switch ((t1 == null ? A.LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement(null) : t1).index) { case 0: return newValue; case 1: t1 = oldValue.text; t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); if (t1.get$length(t1) === maxLength) { t1 = oldValue.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) return oldValue; return A.LengthLimitingTextInputFormatter_truncate(newValue, maxLength); case 2: t1 = oldValue.text; t1 = t1.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t1); if (t1.get$length(t1) === maxLength && !oldValue.composing.get$isValid()) return oldValue; if (newValue.composing.get$isValid()) return newValue; return A.LengthLimitingTextInputFormatter_truncate(newValue, maxLength); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.SmartDashesType.prototype = { toString$0(_) { return "SmartDashesType." + this._core$_name; } }; A.SmartQuotesType.prototype = { toString$0(_) { return "SmartQuotesType." + this._core$_name; } }; A.TextInputType.prototype = { toJson$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["name", "TextInputType." + B.List_GZw[this.index], "signed", this.signed, "decimal", this.decimal], type$.String, type$.dynamic); }, toString$0(_) { return "TextInputType(name: " + ("TextInputType." + B.List_GZw[this.index]) + ", signed: " + A.S(this.signed) + ", decimal: " + A.S(this.decimal) + ")"; }, $eq(_, other) { if (other == null) return false; return other instanceof A.TextInputType && other.index === this.index && other.signed == this.signed && other.decimal == this.decimal; }, get$hashCode(_) { return A.Object_hash(this.index, this.signed, this.decimal, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.TextInputAction.prototype = { toString$0(_) { return "TextInputAction." + this._core$_name; } }; A.TextCapitalization0.prototype = { toString$0(_) { return "TextCapitalization." + this._core$_name; } }; A.TextInputConfiguration.prototype = { toJson$0() { var _this = this, autofill = _this.autofillConfiguration.toJson$0(), t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t1.$indexSet(0, "inputType", _this.inputType.toJson$0()); t1.$indexSet(0, "readOnly", _this.readOnly); t1.$indexSet(0, "obscureText", _this.obscureText); t1.$indexSet(0, "autocorrect", _this.autocorrect); t1.$indexSet(0, "smartDashesType", B.JSInt_methods.toString$0(_this.smartDashesType.index)); t1.$indexSet(0, "smartQuotesType", B.JSInt_methods.toString$0(_this.smartQuotesType.index)); t1.$indexSet(0, "enableSuggestions", true); t1.$indexSet(0, "enableInteractiveSelection", _this.enableInteractiveSelection); t1.$indexSet(0, "actionLabel", _this.actionLabel); t1.$indexSet(0, "inputAction", "TextInputAction." + _this.inputAction._core$_name); t1.$indexSet(0, "textCapitalization", "TextCapitalization." + _this.textCapitalization._core$_name); t1.$indexSet(0, "keyboardAppearance", "Brightness." + _this.keyboardAppearance._core$_name); t1.$indexSet(0, "enableIMEPersonalizedLearning", true); if (autofill != null) t1.$indexSet(0, "autofill", autofill); t1.$indexSet(0, "enableDeltaModel", _this.enableDeltaModel); return t1; } }; A.FloatingCursorDragState.prototype = { toString$0(_) { return "FloatingCursorDragState." + this._core$_name; } }; A.RawFloatingCursorPoint.prototype = {}; A.TextEditingValue.prototype = { copyWith$3$composing$selection$text(composing, selection, text) { var t1 = text == null ? this.text : text, t2 = selection == null ? this.selection : selection; return new A.TextEditingValue(t1, t2, composing == null ? this.composing : composing); }, copyWith$2$selection$text(selection, text) { return this.copyWith$3$composing$selection$text(null, selection, text); }, copyWith$1$composing(composing) { return this.copyWith$3$composing$selection$text(composing, null, null); }, copyWith$1$selection(selection) { return this.copyWith$3$composing$selection$text(null, selection, null); }, copyWith$2$composing$selection(composing, selection) { return this.copyWith$3$composing$selection$text(composing, selection, null); }, copyWith$1$text(text) { return this.copyWith$3$composing$selection$text(null, null, text); }, replaced$2(replacementRange, replacementString) { var t1, t2, newText, t3, _this = this; if (!replacementRange.get$isValid()) return _this; t1 = replacementRange.start; t2 = replacementRange.end; newText = J.replaceRange$3$asx(_this.text, t1, t2, replacementString); if (t2 - t1 === replacementString.length) return _this.copyWith$1$text(newText); t1 = new A.TextEditingValue_replaced_adjustIndex(replacementRange, replacementString); t2 = _this.selection; t3 = _this.composing; return new A.TextEditingValue(newText, A.TextSelection$(B.TextAffinity_1, t1.call$1(t2.baseOffset), t1.call$1(t2.extentOffset), false), new A.TextRange(t1.call$1(t3.start), t1.call$1(t3.end))); }, toJSON$0() { var t1 = this.selection, t2 = this.composing; return A.LinkedHashMap_LinkedHashMap$_literal(["text", this.text, "selectionBase", t1.baseOffset, "selectionExtent", t1.extentOffset, "selectionAffinity", "TextAffinity." + t1.affinity._core$_name, "selectionIsDirectional", t1.isDirectional, "composingBase", t2.start, "composingExtent", t2.end], type$.String, type$.dynamic); }, toString$0(_) { return "TextEditingValue(text: \u2524" + A.S(this.text) + "\u251c, selection: " + this.selection.toString$0(0) + ", composing: " + this.composing.toString$0(0) + ")"; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof A.TextEditingValue && other.text == _this.text && other.selection.$eq(0, _this.selection) && other.composing.$eq(0, _this.composing); }, get$hashCode(_) { var t1 = this.selection, t2 = this.composing; return A.Object_hash(J.get$hashCode$(this.text), t1.get$hashCode(t1), A.hashValues(J.get$hashCode$(t2.start), J.get$hashCode$(t2.end), B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.TextEditingValue_replaced_adjustIndex.prototype = { call$1(originalIndex) { var t1 = this.replacementRange, t2 = t1.start, replacedLength = originalIndex <= t2 && originalIndex < t1.end ? 0 : this.replacementString.length; return originalIndex + replacedLength - (B.JSInt_methods.clamp$2(originalIndex, t2, t1.end) - t2); }, $signature: 121 }; A.SelectionChangedCause.prototype = { toString$0(_) { return "SelectionChangedCause." + this._core$_name; } }; A.TextSelectionDelegate.prototype = {}; A.SelectionRect.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (A.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof A.SelectionRect && other.position === _this.position && J.$eq$(other.bounds, _this.bounds); }, get$hashCode(_) { return A.Object_hash(this.position, this.bounds, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "SelectionRect(" + this.position + ", " + A.S(this.bounds) + ")"; } }; A.TextInputConnection.prototype = { setComposingRect$1(rect) { var validRect, t1, t2, t3; if (rect.$eq(0, this._cachedRect)) return; this._cachedRect = rect; validRect = rect.get$isFinite(rect) ? rect : new A.Rect(0, 0, -1, -1); t1 = $.$get$TextInput__instance(); t2 = validRect.left; t3 = validRect.top; t3 = A.LinkedHashMap_LinkedHashMap$_literal(["width", validRect.right - t2, "height", validRect.bottom - t3, "x", t2, "y", t3], type$.String, type$.dynamic); A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setMarkedTextRect", t3, type$.void); }, setCaretRect$1(rect) { var validRect, t1, t2, t3; if (rect.$eq(0, this._cachedCaretRect)) return; this._cachedCaretRect = rect; validRect = rect.get$isFinite(rect) ? rect : new A.Rect(0, 0, -1, -1); t1 = $.$get$TextInput__instance(); t2 = validRect.left; t3 = validRect.top; t3 = A.LinkedHashMap_LinkedHashMap$_literal(["width", validRect.right - t2, "height", validRect.bottom - t3, "x", t2, "y", t3], type$.String, type$.dynamic); A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setCaretRect", t3, type$.void); }, setSelectionRects$1(selectionRects) { var t1, t2; if (!A.listEquals0(this._cachedSelectionRects, selectionRects)) { this._cachedSelectionRects = selectionRects; t1 = $.$get$TextInput__instance(); t2 = A._arrayInstanceType(selectionRects)._eval$1("MappedListIterable<1,List>"); t2 = A.List_List$of(new A.MappedListIterable(selectionRects, new A.TextInputConnection_setSelectionRects_closure(), t2), true, t2._eval$1("ListIterable.E")); A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setSelectionRects", t2, type$.void); } }, setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(_, fontFamily, fontSize, fontWeight, textAlign, textDirection) { var t1 = $.$get$TextInput__instance(), t2 = fontWeight == null ? null : fontWeight.index; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["fontFamily", fontFamily, "fontSize", fontSize, "fontWeightIndex", t2, "textAlignIndex", textAlign.index, "textDirectionIndex", textDirection.index], type$.String, type$.dynamic); A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setStyle", t2, type$.void); } }; A.TextInputConnection_setSelectionRects_closure.prototype = { call$1(rect) { var t1 = rect.bounds, t2 = t1.left, t3 = t1.top; return A._setArrayType([t2, t3, t1.right - t2, t1.bottom - t3, rect.position], type$.JSArray_num); }, $signature: 2110 }; A.TextInput.prototype = { _attach$2(connection, configuration) { A._lateReadCheck(this.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setClient", [connection._text_input$_id, configuration.toJson$0()], type$.void); this._currentConnection = connection; this.__TextInput__currentConfiguration = configuration; }, get$_text_input$_channel() { return A._lateReadCheck(this.__TextInput__channel, "_channel"); }, _handleTextInputInvocation$1(methodCall) { return this._handleTextInputInvocation$body$TextInput(methodCall); }, _handleTextInputInvocation$body$TextInput(methodCall) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, args, t1, t2, t3, t4, editingValue, scope, t5, textEditingValue, client, deltas, firstArg, offset, method; var $async$_handleTextInputInvocation$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start method = methodCall.method; if (method === "TextInputClient.focusElement") { args = type$.List_dynamic._as(methodCall.$arguments); t1 = J.getInterceptor$asx(args); t2 = $async$self._scribbleClients.$index(0, t1.$index(args, 0)); if (t2 != null) { t3 = A._asNumS(t1.$index(args, 1)); t3.toString; t1 = A._asNumS(t1.$index(args, 2)); t1.toString; t2._widget.focusNode.requestFocus$0(); t4 = t2.get$renderEditable(); if (t4 != null) t4.selectPositionAt$2$cause$from(B.SelectionChangedCause_7, new A.Offset(t3, t1)); t2._widget.updateSelectionRects$0(); } // goto return $async$goto = 1; break; } else if (method === "TextInputClient.requestElementsInRect") { t1 = J.cast$1$0$ax(type$.List_dynamic._as(methodCall.$arguments), type$.num); t1 = t1.map$1$1(t1, new A.TextInput__handleTextInputInvocation_closure(), type$.double); t2 = $async$self._scribbleClients; t3 = A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = t3._eval$1("MappedIterable>"); $async$returnValue = A.List_List$of(new A.MappedIterable(new A.WhereIterable(new A.LinkedHashMapKeyIterable(t2, t3), new A.TextInput__handleTextInputInvocation_closure0($async$self, A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E"))), t3._eval$1("WhereIterable")), new A.TextInput__handleTextInputInvocation_closure1($async$self), t4), true, t4._eval$1("Iterable.E")); // goto return $async$goto = 1; break; } else if (method === "TextInputClient.scribbleInteractionBegan") { $async$self._scribbleInProgress = true; // goto return $async$goto = 1; break; } else if (method === "TextInputClient.scribbleInteractionFinished") { $async$self._scribbleInProgress = false; // goto return $async$goto = 1; break; } t1 = $async$self._currentConnection; if (t1 == null) { // goto return $async$goto = 1; break; } if (method === "TextInputClient.requestExistingInputState") { $async$self._attach$2(t1, A._lateReadCheck($async$self.__TextInput__currentConfiguration, "_currentConfiguration")); editingValue = $async$self._currentConnection._text_input$_client.get$currentTextEditingValue(); if (editingValue != null) A._lateReadCheck($async$self.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setEditingState", editingValue.toJSON$0(), type$.void); // goto return $async$goto = 1; break; } args = type$.List_dynamic._as(methodCall.$arguments); if (method === string$.TextInT) { scope = t1._text_input$_client.get$currentAutofillScope(); t1 = type$.Map_String_dynamic; editingValue = t1._as(J.$index$asx(args, 1)); for (t2 = J.getInterceptor$x(editingValue), t3 = J.get$iterator$ax(t2.get$keys(editingValue)), t4 = scope == null; t3.moveNext$0();) { t5 = t3.get$current(t3); textEditingValue = A.TextEditingValue_TextEditingValue$fromJSON(t1._as(t2.$index(editingValue, t5))); client = t4 ? null : scope._autofill$_clients.$index(0, t5); if (client != null && client.get$textInputConfiguration().autofillConfiguration.enabled) client.autofill$1(textEditingValue); } // goto return $async$goto = 1; break; } t1 = J.getInterceptor$asx(args); client = A._asIntS(t1.$index(args, 0)); t2 = $async$self._currentConnection; if (client !== t2._text_input$_id) { // goto return $async$goto = 1; break; } switch (method) { case "TextInputClient.updateEditingState": t2._text_input$_client.updateEditingValue$1(A.TextEditingValue_TextEditingValue$fromJSON(type$.Map_String_dynamic._as(t1.$index(args, 1)))); break; case string$.TextInD: deltas = A._setArrayType([], type$.JSArray_TextEditingDelta); t2 = type$.Map_String_dynamic; for (t1 = J.get$iterator$ax(J.$index$asx(t2._as(t1.$index(args, 1)), "deltas")); t1.moveNext$0();) deltas.push(A.TextEditingDelta_TextEditingDelta$fromJSON(t2._as(t1.get$current(t1)))); type$.DeltaTextInputClient._as($async$self._currentConnection._text_input$_client).updateEditingValueWithDeltas$1(deltas); break; case "TextInputClient.performAction": t2._text_input$_client.performAction$1(A._toTextInputAction(A._asStringS(t1.$index(args, 1)))); break; case "TextInputClient.performPrivateCommand": t2 = type$.Map_String_dynamic; firstArg = t2._as(t1.$index(args, 1)); t1 = J.getInterceptor$asx(firstArg); $async$self._currentConnection._text_input$_client.performPrivateCommand$2(A._asStringS(t1.$index(firstArg, "action")), t2._as(t1.$index(firstArg, "data"))); break; case "TextInputClient.updateFloatingCursor": t2 = t2._text_input$_client; t3 = A._toTextCursorAction(A._asStringS(t1.$index(args, 1))); t1 = type$.Map_String_dynamic._as(t1.$index(args, 2)); if (t3 === B.FloatingCursorDragState_1) { t4 = J.getInterceptor$asx(t1); offset = new A.Offset(A._asDoubleS(t4.$index(t1, "X")), A._asDoubleS(t4.$index(t1, "Y"))); } else offset = B.Offset_0_0; t2.updateFloatingCursor$1(new A.RawFloatingCursorPoint(offset, t3)); break; case "TextInputClient.onConnectionClosed": t2._text_input$_client.connectionClosed$0(); break; case "TextInputClient.showAutocorrectionPromptRect": t2._text_input$_client.showAutocorrectionPromptRect$2(A._asIntS(t1.$index(args, 1)), A._asIntS(t1.$index(args, 2))); break; case "TextInputClient.showToolbar": t2._text_input$_client.showToolbar$0(); break; case "TextInputClient.insertTextPlaceholder": t2 = t2._text_input$_client; t3 = A._asNumS(t1.$index(args, 1)); t3.toString; t1 = A._asNumS(t1.$index(args, 2)); t1.toString; t2.insertTextPlaceholder$1(new A.Size(t3, t1)); break; case "TextInputClient.removeTextPlaceholder": t2._text_input$_client.removeTextPlaceholder$0(); break; default: throw A.wrapException(A.MissingPluginException$(null)); } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_handleTextInputInvocation$1, $async$completer); }, _scheduleHide$0() { if (this._hidePending) return; this._hidePending = true; A.scheduleMicrotask(new A.TextInput__scheduleHide_closure(this)); }, _clearClient$0() { A._lateReadCheck(this.__TextInput__channel, "_channel").invokeMethod$1$1("TextInput.clearClient", type$.void); this._currentConnection = null; this._scheduleHide$0(); } }; A.TextInput__handleTextInputInvocation_closure.prototype = { call$1(value) { value.toString; return value; }, $signature: 2106 }; A.TextInput__handleTextInputInvocation_closure0.prototype = { call$1(elementIdentifier) { var t5, t6, bounds, t1 = this.args, t2 = t1[0], t3 = t1[1], t4 = t1[2]; t1 = t1[3]; t5 = this.$this._scribbleClients; t6 = t5.$index(0, elementIdentifier); t1 = t6 == null ? null : t6.isInScribbleRect$1(new A.Rect(t2, t3, t2 + t4, t3 + t1)); if (t1 !== true) return false; t1 = t5.$index(0, elementIdentifier); bounds = t1 == null ? null : t1.get$bounds(t1); if (bounds == null) bounds = B.Rect_0_0_0_0; if (!bounds.$eq(0, B.Rect_0_0_0_0)) { t1 = bounds.left; t1.toString; if (!isNaN(t1)) { t1 = bounds.top; t1.toString; if (!isNaN(t1)) { t1 = bounds.right; t1.toString; if (!isNaN(t1)) { t1 = bounds.bottom; t1.toString; t1 = isNaN(t1); } else t1 = true; } else t1 = true; } else t1 = true; t1 = t1 || bounds.get$isInfinite(bounds); } else t1 = true; return !t1; }, $signature: 52 }; A.TextInput__handleTextInputInvocation_closure1.prototype = { call$1(elementIdentifier) { var t2, t3, t1 = this.$this._scribbleClients.$index(0, elementIdentifier), bounds = t1.get$bounds(t1); t1 = [elementIdentifier]; t2 = bounds.left; t3 = bounds.top; B.JSArray_methods.addAll$1(t1, [t2, t3, bounds.right - t2, bounds.bottom - t3]); return t1; }, $signature: 2102 }; A.TextInput__scheduleHide_closure.prototype = { call$0() { var t1 = this.$this; t1._hidePending = false; if (t1._currentConnection == null) A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$1("TextInput.hide", type$.void); }, $signature: 0 }; A._getParent_closure.prototype = { call$1(ancestor) { this.parent.set$finalLocalValue(ancestor); return false; }, $signature: 249 }; A.Intent.prototype = {}; A.Action.prototype = { _updateCallingAction$1(value) { this._currentCallingAction = value; }, isEnabled$1(_, intent) { return this.get$isActionEnabled(); }, get$isActionEnabled() { return true; }, consumesKey$1(intent) { return true; }, addActionListener$1(listener) { var t1 = this._actions$_listeners; t1._isDirty = true; t1._observer_list$_list.push(listener); return null; }, removeActionListener$1(listener) { return this._actions$_listeners.remove$1(0, listener); }, _makeOverridableAction$1(context) { return A._OverridableAction$(this, context, A._instanceType(this)._eval$1("Action.T")); } }; A.ContextAction.prototype = { _makeOverridableAction$1(context) { return A._OverridableContextAction$(this, context, A._instanceType(this)._eval$1("ContextAction.T")); } }; A.CallbackAction.prototype = { invoke$1(intent) { return this.onInvoke.call$1(intent); } }; A.ActionDispatcher.prototype = { invokeAction$3(action, intent, context) { var t1; if (action instanceof A.ContextAction) { if (context == null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; context = t1 == null ? null : t1._context; } return action.invoke$2(intent, context); } else return action.invoke$1(intent); } }; A.Actions.prototype = { createState$0() { return new A._ActionsState(A.LinkedHashSet_LinkedHashSet$_empty(type$.Action_Intent), new A.Object(), B._StateLifecycle_0); } }; A.Actions__findDispatcher_closure.prototype = { call$1(element) { var t1 = element._widget; t1.toString; type$._ActionsMarker._as(t1); return false; }, $signature: 308 }; A.Actions_maybeFind_closure.prototype = { call$1(element) { var result, _this = this, t1 = element._widget; t1.toString; result = A.Actions__castAction(type$._ActionsMarker._as(t1), _this.intent, _this.T); if (result != null) { t1 = _this.context; t1.toString; t1.super$Element$dependOnInheritedElement(element, null); _this._box_0.action = result; return true; } return false; }, $signature: 308 }; A.Actions__maybeFindWithoutDependingOn_closure.prototype = { call$1(element) { var result, t1 = element._widget; t1.toString; result = A.Actions__castAction(type$._ActionsMarker._as(t1), this.intent, this.T); if (result != null) { this._box_0.action = result; return true; } return false; }, $signature: 308 }; A.Actions_invoke_closure.prototype = { call$1(element) { var t2, result, _this = this, t1 = element._widget; t1.toString; t2 = _this.intent; result = A.Actions__castAction(type$._ActionsMarker._as(t1), t2, _this.T); t1 = result != null; if (t1 && result.isEnabled$1(0, t2)) _this._box_0.returnValue = A.Actions__findDispatcher(element).invokeAction$3(result, t2, _this.context); return t1; }, $signature: 308 }; A._ActionsState.prototype = { initState$0() { this.super$State$initState(); this._updateActionListeners$0(); }, _handleActionChanged$1(action) { this.setState$1(new A._ActionsState__handleActionChanged_closure(this)); }, _updateActionListeners$0() { var widgetActions, removedActions, addedActions, t2, _this = this, t1 = _this._widget.actions; t1 = t1.get$values(t1); widgetActions = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")); removedActions = _this.listenedActions.difference$1(widgetActions); t1 = _this.listenedActions; t1.toString; addedActions = widgetActions.difference$1(t1); for (t1 = removedActions.get$iterator(removedActions), t2 = _this.get$_handleActionChanged(); t1.moveNext$0();) t1.get$current(t1).removeActionListener$1(t2); for (t1 = addedActions.get$iterator(addedActions); t1.moveNext$0();) t1.get$current(t1).addActionListener$1(t2); _this.listenedActions = widgetActions; }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateActionListeners$0(); }, dispose$0(_) { var t1, t2, _this = this; _this.super$State$dispose(0); for (t1 = _this.listenedActions, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1), t2 = _this.get$_handleActionChanged(); t1.moveNext$0();) t1._collection$_current.removeActionListener$1(t2); _this.listenedActions = null; }, build$1(_, context) { var t1 = this._widget; return new A._ActionsMarker(null, t1.actions, this.rebuildKey, t1.child, null); } }; A._ActionsState__handleActionChanged_closure.prototype = { call$0() { this.$this.rebuildKey = new A.Object(); }, $signature: 0 }; A._ActionsMarker.prototype = { updateShouldNotify$1(oldWidget) { var t1; if (this.rebuildKey === oldWidget.rebuildKey) t1 = !A.mapEquals(oldWidget.actions, this.actions); else t1 = true; return t1; } }; A.FocusableActionDetector.prototype = { createState$0() { return new A._FocusableActionDetectorState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A._FocusableActionDetectorState.prototype = { initState$0() { this.super$State$initState(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._FocusableActionDetectorState_initState_closure(this)); $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.add$1(0, this.get$_actions$_handleFocusHighlightModeChange()); }, dispose$0(_) { $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.remove$1(0, this.get$_actions$_handleFocusHighlightModeChange()); this.super$State$dispose(0); }, _updateHighlightMode$1(mode) { this._mayTriggerCallback$1$task(new A._FocusableActionDetectorState__updateHighlightMode_closure(this)); }, _actions$_handleFocusHighlightModeChange$1(mode) { if (this._framework$_element == null) return; this._updateHighlightMode$1(mode); }, _actions$_handleMouseEnter$1($event) { if (!this._actions$_hovering) this._mayTriggerCallback$1$task(new A._FocusableActionDetectorState__handleMouseEnter_closure(this)); }, _actions$_handleMouseExit$1($event) { if (this._actions$_hovering) this._mayTriggerCallback$1$task(new A._FocusableActionDetectorState__handleMouseExit_closure(this)); }, _handleFocusChange$1(focused) { var t1, _this = this; if (_this._actions$_focused !== focused) { _this._mayTriggerCallback$1$task(new A._FocusableActionDetectorState__handleFocusChange_closure(_this, focused)); t1 = _this._widget.onFocusChange; if (t1 != null) t1.call$1(_this._actions$_focused); } }, _mayTriggerCallback$2$oldWidget$task(oldWidget, task) { var t3, oldTarget, didShowHoverHighlight, didShowFocusHighlight, doShowHoverHighlight, doShowFocusHighlight, _this = this, t1 = new A._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight(_this), t2 = new A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight(_this, new A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus(_this)); if (oldWidget == null) { t3 = _this._widget; t3.toString; oldTarget = t3; } else oldTarget = oldWidget; didShowHoverHighlight = t1.call$1(oldTarget); didShowFocusHighlight = t2.call$1(oldTarget); if (task != null) task.call$0(); t3 = _this._widget; t3.toString; doShowHoverHighlight = t1.call$1(t3); t3 = _this._widget; t3.toString; doShowFocusHighlight = t2.call$1(t3); if (didShowFocusHighlight != doShowFocusHighlight) { t1 = _this._widget.onShowFocusHighlight; if (t1 != null) t1.call$1(doShowFocusHighlight); } if (didShowHoverHighlight != doShowHoverHighlight) { t1 = _this._widget.onShowHoverHighlight; if (t1 != null) t1.call$1(doShowHoverHighlight); } }, _mayTriggerCallback$1$task(task) { return this._mayTriggerCallback$2$oldWidget$task(null, task); }, _mayTriggerCallback$1$oldWidget(oldWidget) { return this._mayTriggerCallback$2$oldWidget$task(oldWidget, null); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.enabled !== oldWidget.enabled) $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._FocusableActionDetectorState_didUpdateWidget_closure(this, oldWidget)); }, get$_actions$_canRequestFocus() { var mode, t1 = this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: return this._widget.enabled; case 1: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var t3, t4, child, _this = this, _null = null, t1 = _this._widget, t2 = t1.mouseCursor; t1 = t1.focusNode; t3 = _this.get$_actions$_canRequestFocus(); t4 = _this._widget; child = A.MouseRegion$(A.Focus$(false, t3, t4.child, _null, true, true, t1, true, _null, _this.get$_handleFocusChange(), _null, _null, _null), t2, _this._mouseRegionKey, _this.get$_actions$_handleMouseEnter(), _this.get$_actions$_handleMouseExit(), _null); t1 = t4.enabled; if (t1) { t2 = t4.actions; t2 = t2 != null && t2._length !== 0; } else t2 = false; if (t2) { t2 = t4.actions; t2.toString; child = A.Actions$(t2, child); } if (t1) { t1 = t4.shortcuts; t1 = t1 != null && t1.get$isNotEmpty(t1); } else t1 = false; if (t1) { t1 = _this._widget.shortcuts; t1.toString; child = new A.Shortcuts(t1, child, _null, _null); } return child; } }; A._FocusableActionDetectorState_initState_closure.prototype = { call$1(duration) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; if (t1 == null) t1 = A.FocusManager__defaultModeForPlatform(); this.$this._updateHighlightMode$1(t1); }, $signature: 22 }; A._FocusableActionDetectorState__updateHighlightMode_closure.prototype = { call$0() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch ((t1 == null ? A.FocusManager__defaultModeForPlatform() : t1).index) { case 0: this.$this._canShowHighlight = false; break; case 1: this.$this._canShowHighlight = true; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; A._FocusableActionDetectorState__handleMouseEnter_closure.prototype = { call$0() { this.$this._actions$_hovering = true; }, $signature: 0 }; A._FocusableActionDetectorState__handleMouseExit_closure.prototype = { call$0() { this.$this._actions$_hovering = false; }, $signature: 0 }; A._FocusableActionDetectorState__handleFocusChange_closure.prototype = { call$0() { this.$this._actions$_focused = this.focused; }, $signature: 0 }; A._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight.prototype = { call$1(target) { var t1 = this.$this; return t1._actions$_hovering && target.enabled && t1._canShowHighlight; }, $signature: 400 }; A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus.prototype = { call$1(target) { var mode, t1 = this.$this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch ((mode == null ? B.NavigationMode_0 : mode).index) { case 0: return target.enabled; case 1: return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 400 }; A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight.prototype = { call$1(target) { var t1 = this.$this; return t1._actions$_focused && t1._canShowHighlight && this.canRequestFocus.call$1(target); }, $signature: 400 }; A._FocusableActionDetectorState_didUpdateWidget_closure.prototype = { call$1(duration) { this.$this._mayTriggerCallback$1$oldWidget(this.oldWidget); }, $signature: 22 }; A.DoNothingAction.prototype = { consumesKey$1(intent) { return this._consumesKey; }, invoke$1(intent) { } }; A.ActivateIntent.prototype = {}; A.ButtonActivateIntent.prototype = {}; A.DismissIntent.prototype = {}; A.DismissAction.prototype = {}; A.PrioritizedIntents.prototype = {}; A.PrioritizedAction.prototype = { isEnabled$1(_, intent) { var t1, _i, candidateIntent, t2, candidateAction, $focus = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; if ($focus == null || $focus._context == null) return false; intent.toString; t1 = type$.Intent; _i = 0; for (; _i < 2; ++_i) { candidateIntent = B.List_2WE[_i]; t2 = $focus._context; t2.toString; candidateAction = A.Actions_maybeFind(t2, candidateIntent, t1); if (candidateAction != null && candidateAction.isEnabled$1(0, candidateIntent)) { this.__PrioritizedAction__selectedAction = candidateAction; this.__PrioritizedAction__selectedIntent = candidateIntent; return true; } } return false; }, invoke$1(intent) { A._lateReadCheck(this.__PrioritizedAction__selectedAction, "_selectedAction").invoke$1(A._lateReadCheck(this.__PrioritizedAction__selectedIntent, "_selectedIntent")); } }; A._OverridableActionMixin.prototype = { _invokeOverride$3(overrideAction, intent, context) { var $returnValue; overrideAction._updateCallingAction$1(this.get$defaultAction()); $returnValue = A._instanceType(this)._eval$1("ContextAction<1>")._is(overrideAction) ? overrideAction.invoke$2(intent, context) : overrideAction.invoke$1(intent); overrideAction._updateCallingAction$1(null); return $returnValue; }, invoke$2(intent, context) { var _this = this, override = A.Actions__maybeFindWithoutDependingOn(_this.get$lookupContext(), A._instanceType(_this)._precomputed1); return override == null ? _this.invokeDefaultAction$3(intent, _this._currentCallingAction, context) : _this._invokeOverride$3(override, intent, context); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { var isOverrideEnabled, $returnValue, _this = this, override = A.Actions_maybeFind(_this.get$lookupContext(), null, A._instanceType(_this)._precomputed1); if (override != null) { override._updateCallingAction$1(_this.get$defaultAction()); isOverrideEnabled = override.get$isActionEnabled(); override._updateCallingAction$1(null); $returnValue = isOverrideEnabled; } else $returnValue = _this.get$defaultAction().get$isActionEnabled(); return $returnValue; }, isEnabled$1(_, intent) { var $returnValue, _this = this, override = A.Actions__maybeFindWithoutDependingOn(_this.get$lookupContext(), A._instanceType(_this)._precomputed1), t1 = override == null; if (!t1) override._updateCallingAction$1(_this.get$defaultAction()); $returnValue = (t1 ? _this.get$defaultAction() : override).isEnabled$1(0, intent); if (!t1) override._updateCallingAction$1(null); return $returnValue; }, consumesKey$1(intent) { var isEnabled, _this = this, override = A.Actions__maybeFindWithoutDependingOn(_this.get$lookupContext(), A._instanceType(_this)._precomputed1), t1 = override == null; if (!t1) override._updateCallingAction$1(_this.get$defaultAction()); isEnabled = (t1 ? _this.get$defaultAction() : override).consumesKey$1(intent); if (!t1) override._updateCallingAction$1(null); return isEnabled; } }; A._OverridableAction.prototype = { invokeDefaultAction$3(intent, fromAction, context) { var t1 = this.defaultAction; if (fromAction == null) return t1.invoke$1(intent); else return t1.invoke$1(intent); }, get$defaultAction() { return this.defaultAction; }, get$lookupContext() { return this.lookupContext; } }; A._OverridableContextAction.prototype = { _invokeOverride$3(overrideAction, intent, context) { var t1, $returnValue; context.toString; t1 = this.$ti; overrideAction._updateCallingAction$1(new A._ContextActionToActionAdapter(context, this.defaultAction, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), t1._eval$1("_ContextActionToActionAdapter<1>"))); $returnValue = t1._eval$1("ContextAction<1>")._is(overrideAction) ? overrideAction.invoke$2(intent, context) : overrideAction.invoke$1(intent); overrideAction._updateCallingAction$1(null); return $returnValue; }, invokeDefaultAction$3(intent, fromAction, context) { var t1 = this.defaultAction; if (fromAction == null) return t1.invoke$2(intent, context); else return t1.invoke$2(intent, context); }, get$defaultAction() { return this.defaultAction; }, get$lookupContext() { return this.lookupContext; } }; A._ContextActionToActionAdapter.prototype = { _updateCallingAction$1(value) { this.action._updateCallingAction$1(value); }, isEnabled$1(_, intent) { return this.action.isEnabled$1(0, intent); }, get$isActionEnabled() { return this.action.get$isActionEnabled(); }, consumesKey$1(intent) { return this.action.consumesKey$1(intent); }, addActionListener$1(listener) { var t1; this.super$Action$addActionListener(listener); t1 = this.action._actions$_listeners; t1._isDirty = true; t1._observer_list$_list.push(listener); }, removeActionListener$1(listener) { this.super$Action$removeActionListener(listener); this.action._actions$_listeners.remove$1(0, listener); }, invoke$1(intent) { return this.action.invoke$2(intent, this.invokeContext); } }; A._Action_Object_Diagnosticable.prototype = {}; A._ActionDispatcher_Object_Diagnosticable.prototype = {}; A._Intent_Object_Diagnosticable.prototype = {}; A.__OverridableAction_ContextAction__OverridableActionMixin.prototype = { _updateCallingAction$1(value) { this.super$Action$_updateCallingAction(value); this.defaultAction._updateCallingAction$1(value); } }; A.__OverridableContextAction_ContextAction__OverridableActionMixin.prototype = { _updateCallingAction$1(value) { this.super$Action$_updateCallingAction(value); this.defaultAction._updateCallingAction$1(value); } }; A.CrossFadeState.prototype = { toString$0(_) { return "CrossFadeState." + this._core$_name; } }; A.AnimatedCrossFade.prototype = { createState$0() { return new A._AnimatedCrossFadeState(null, null, B._StateLifecycle_0); }, layoutBuilder$4(arg0, arg1, arg2, arg3) { return A.animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure().call$4(arg0, arg1, arg2, arg3); } }; A._AnimatedCrossFadeState.prototype = { initState$0() { var t1, _this = this, _s11_ = "_controller"; _this.super$State$initState(); t1 = A.AnimationController$(null, _this._widget.duration, null, 1, null, _this); _this.___AnimatedCrossFadeState__controller = t1; if (_this._widget.crossFadeState === B.CrossFadeState_1) A._lateReadCheck(t1, _s11_).set$value(0, 1); _this.___AnimatedCrossFadeState__firstAnimation = _this._initAnimation$2(_this._widget.firstCurve, true); _this.___AnimatedCrossFadeState__secondAnimation = _this._initAnimation$2(_this._widget.secondCurve, false); A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).addStatusListener$1(new A._AnimatedCrossFadeState_initState_closure(_this)); }, _initAnimation$2(curve, inverted) { var t2, t1 = type$.Animation_double, result = new A._AnimatedEvaluation(t1._as(A._lateReadCheck(this.___AnimatedCrossFadeState__controller, "_controller")), new A.CurveTween(curve), type$.CurveTween._eval$1("_AnimatedEvaluation")); if (inverted) { t2 = type$.Tween_double; result = new A._AnimatedEvaluation(t1._as(result), new A.Tween(1, 0, t2), t2._eval$1("_AnimatedEvaluation")); } return result; }, dispose$0(_) { A._lateReadCheck(this.___AnimatedCrossFadeState__controller, "_controller").dispose$0(0); this.super$__AnimatedCrossFadeState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this, _s11_ = "_controller"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t2 = t1.duration; t3 = oldWidget.duration; if (t2._duration !== t3._duration) { t1 = A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_); t2 = _this._widget; t1.duration = t2.duration; t1 = t2; } t1 = t1.firstCurve; if (t1 !== oldWidget.firstCurve) _this.___AnimatedCrossFadeState__firstAnimation = _this._initAnimation$2(t1, true); t1 = _this._widget.secondCurve; if (t1 !== oldWidget.secondCurve) _this.___AnimatedCrossFadeState__secondAnimation = _this._initAnimation$2(t1, false); t1 = _this._widget.crossFadeState; if (t1 !== oldWidget.crossFadeState) switch (t1.index) { case 0: A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).reverse$0(0); break; case 1: A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).forward$0(0); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var topChild, topAnimation, bottomChild, bottomAnimation, topKey, bottomKey, t2, t3, _this = this, _null = null, _s11_ = "_controller", _s7_ = "_status", _s16_ = "_secondAnimation", _s15_ = "_firstAnimation", transitioningForwards = A._lateReadCheck(A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).__AnimationController__status, _s7_) === B.AnimationStatus_3 || A._lateReadCheck(A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).__AnimationController__status, _s7_) === B.AnimationStatus_1, t1 = _this._widget; if (transitioningForwards) { topChild = t1.secondChild; topAnimation = A._lateReadCheck(_this.___AnimatedCrossFadeState__secondAnimation, _s16_); bottomChild = _this._widget.firstChild; bottomAnimation = A._lateReadCheck(_this.___AnimatedCrossFadeState__firstAnimation, _s15_); topKey = B.ValueKey_CrossFadeState_1; bottomKey = B.ValueKey_CrossFadeState_0; } else { topChild = t1.firstChild; topAnimation = A._lateReadCheck(_this.___AnimatedCrossFadeState__firstAnimation, _s15_); bottomChild = _this._widget.secondChild; bottomAnimation = A._lateReadCheck(_this.___AnimatedCrossFadeState__secondAnimation, _s16_); topKey = B.ValueKey_CrossFadeState_0; bottomKey = B.ValueKey_CrossFadeState_1; } t1 = A._lateReadCheck(A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).__AnimationController__status, _s7_) === B.AnimationStatus_1 || A._lateReadCheck(A._lateReadCheck(_this.___AnimatedCrossFadeState__controller, _s11_).__AnimationController__status, _s7_) === B.AnimationStatus_2; t2 = _this._widget; t2.toString; t3 = A.FadeTransition$(false, bottomChild, bottomAnimation); return A.ClipRect$(A.AnimatedSize$(B.Alignment_0_m1, t2.layoutBuilder$4(new A.TickerMode(true, new A.IgnorePointer(false, _null, new A.ExcludeSemantics(false, new A.ExcludeFocus(false, A.FadeTransition$(false, topChild, topAnimation), _null), _null), _null), topKey), topKey, new A.TickerMode(t1, new A.IgnorePointer(true, _null, new A.ExcludeSemantics(true, new A.ExcludeFocus(true, t3, _null), _null), _null), bottomKey), bottomKey), t2.sizeCurve, t2.duration, _null), B.Clip_1, _null); } }; A._AnimatedCrossFadeState_initState_closure.prototype = { call$1($status) { this.$this.setState$1(new A._AnimatedCrossFadeState_initState__closure()); }, $signature: 42 }; A._AnimatedCrossFadeState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A.__AnimatedCrossFadeState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.AnimatedSize.prototype = { createState$0() { return new A._AnimatedSizeState(null, null, B._StateLifecycle_0); } }; A._AnimatedSizeState.prototype = { build$1(_, context) { var t1 = this._widget; return new A._AnimatedSize(t1.alignment, t1.curve, t1.duration, t1.reverseDuration, this, B.Clip_1, t1.child, null); } }; A._AnimatedSize.prototype = { createRenderObject$1(context) { var _this = this; return A.RenderAnimatedSize$(_this.alignment, _this.clipBehavior, _this.curve, _this.duration, _this.reverseDuration, A.Directionality_maybeOf(context), _this.vsync); }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$alignment(_this.alignment); renderObject.set$duration(0, _this.duration); renderObject.set$reverseDuration(_this.reverseDuration); renderObject.set$curve(0, _this.curve); renderObject.set$vsync(_this.vsync); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); t1 = _this.clipBehavior; if (t1 !== renderObject._animated_size$_clipBehavior) { renderObject._animated_size$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A.__AnimatedSizeState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A._ChildEntry.prototype = { toString$0(_) { return "Entry#" + A.shortHash(this) + "(" + this.widgetChild.toString$0(0) + ")"; } }; A.AnimatedSwitcher.prototype = { createState$0() { return new A._AnimatedSwitcherState(A.LinkedHashSet_LinkedHashSet$_empty(type$._ChildEntry), B.List_empty12, null, null, B._StateLifecycle_0); }, transitionBuilder$2(arg0, arg1) { return this.transitionBuilder.call$2(arg0, arg1); }, layoutBuilder$2(arg0, arg1) { return A.animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure().call$2(arg0, arg1); } }; A._AnimatedSwitcherState.prototype = { initState$0() { this.super$State$initState(); this._addEntryForNewChild$1$animate(false); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.transitionBuilder, oldWidget.transitionBuilder)) { _this._outgoingEntries.forEach$1(0, _this.get$_updateTransitionForEntry()); t1 = _this._currentEntry; if (t1 != null) _this._updateTransitionForEntry$1(t1); _this._outgoingWidgets = null; } t1 = _this._widget; t1.toString; t2 = _this._currentEntry; if (t2 != null) { t1 = t1.child; t2 = t2.widgetChild; t1 = !(t1.get$runtimeType(t1) === t2.get$runtimeType(t2) && J.$eq$(t1.key, t2.key)); } else t1 = true; if (t1) { ++_this._childNumber; _this._addEntryForNewChild$1$animate(true); } else { t1 = _this._currentEntry; if (t1 != null) { t1.widgetChild = _this._widget.child; _this._updateTransitionForEntry$1(t1); _this._outgoingWidgets = null; } } }, _addEntryForNewChild$1$animate(animate) { var controller, animation, t2, _this = this, t1 = _this._currentEntry; if (t1 != null) { _this._outgoingEntries.add$1(0, t1); _this._currentEntry.controller.reverse$0(0); _this._currentEntry = _this._outgoingWidgets = null; } t1 = _this._widget; controller = A.AnimationController$(null, t1.duration, null, 1, null, _this); _this._widget.toString; animation = A.CurvedAnimation$(B.C__Linear, controller, B.C__Linear); t1 = _this._widget; t2 = t1.child; _this._currentEntry = _this._newEntry$4$animation$builder$child$controller(animation, t1.transitionBuilder, t2, controller); if (animate) controller.forward$0(0); else controller.set$value(0, 1); }, _newEntry$4$animation$builder$child$controller(animation, builder, child, controller) { var entry = new A._ChildEntry(controller, animation, A.KeyedSubtree_KeyedSubtree$wrap(builder.call$2(child, animation), this._childNumber), child); animation.parent.addStatusListener$1(new A._AnimatedSwitcherState__newEntry_closure(this, entry, controller)); return entry; }, _updateTransitionForEntry$1(entry) { var t1 = entry.transition, t2 = this._widget; t2.toString; entry.transition = new A.KeyedSubtree(t2.transitionBuilder$2(entry.widgetChild, entry.animation), t1.key); }, _rebuildOutgoingWidgetsIfNeeded$0() { if (this._outgoingWidgets == null) { var t1 = this._outgoingEntries; this._outgoingWidgets = A.List_List$unmodifiable(new A.EfficientLengthMappedIterable(t1, new A._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure(), A._instanceType(t1)._eval$1("EfficientLengthMappedIterable")), type$.Widget); } }, dispose$0(_) { var t2, t3, value, result, t1 = this._currentEntry; if (t1 != null) t1.controller.dispose$0(0); for (t1 = this._outgoingEntries, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current.controller; t2._ticker.dispose$0(0); t2._ticker = null; t3 = t2.AnimationLocalStatusListenersMixin__statusListeners; t3._isDirty = false; B.JSArray_methods.set$length(t3._observer_list$_list, 0); value = t3.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t3.$ti._precomputed1); A._lateInitializeOnceCheck(t3.__ObserverList__set, "_set"); t3.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t3 = t2.AnimationLocalListenersMixin__listeners; t3._isDirty = false; B.JSArray_methods.set$length(t3._observer_list$_list, 0); value = t3.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t3.$ti._precomputed1); A._lateInitializeOnceCheck(t3.__ObserverList__set, "_set"); t3.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t2.super$AnimationEagerListenerMixin$dispose(0); } this.super$__AnimatedSwitcherState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t1, t2, t3, _this = this; _this._rebuildOutgoingWidgetsIfNeeded$0(); t1 = _this._widget; t1.toString; t2 = _this._currentEntry; t2 = t2 == null ? null : t2.transition; t3 = _this._outgoingWidgets; t3.toString; return t1.layoutBuilder$2(t2, t3); } }; A._AnimatedSwitcherState__newEntry_closure.prototype = { call$1($status) { var t1; if ($status === B.AnimationStatus_0) { t1 = this.$this; t1.setState$1(new A._AnimatedSwitcherState__newEntry__closure(t1, this.entry)); this.controller.dispose$0(0); } }, $signature: 42 }; A._AnimatedSwitcherState__newEntry__closure.prototype = { call$0() { var t1 = this.$this; t1._outgoingEntries.remove$1(0, this.entry); t1._outgoingWidgets = null; }, $signature: 0 }; A._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure.prototype = { call$1(entry) { return entry.transition; }, $signature: 2088 }; A.__AnimatedSwitcherState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.AnnotatedRegion.prototype = { createRenderObject$1(context) { var t1 = new A.RenderAnnotatedRegion(this.value, true, null, A.LayerHandle$(type$.ContainerLayer_2), this.$ti._eval$1("RenderAnnotatedRegion<1>")); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$value(0, this.value); renderObject.set$sized(true); }, get$value(receiver) { return this.value; } }; A.WidgetsApp.prototype = { createState$0() { return new A._WidgetsAppState(B._StateLifecycle_0); } }; A._WidgetsAppState.prototype = { get$_initialRouteName() { $.WidgetsBinding__instance.toString; var t1 = $.$get$EnginePlatformDispatcher__instance(); if (t1.get$defaultRouteName() !== "/") { $.WidgetsBinding__instance.toString; t1 = t1.get$defaultRouteName(); } else { this._widget.toString; $.WidgetsBinding__instance.toString; t1 = t1.get$defaultRouteName(); } return t1; }, initState$0() { var _this = this; _this.super$State$initState(); _this._updateRouting$0(); $.WidgetsBinding__instance.toString; _this._app$_locale = _this._resolveLocales$2($.$get$EnginePlatformDispatcher__instance()._configuration.locales, _this._widget.supportedLocales); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateRouting$1$oldWidget(oldWidget); }, dispose$0(_) { var t1; B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, this); t1 = this._defaultRouteInformationProvider; if (t1 != null) { if (t1.ChangeNotifier__count > 0) B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, t1); t1.super$ChangeNotifier$dispose(0); } this.super$State$dispose(0); }, _updateRouting$1$oldWidget(oldWidget) { var t1, _this = this; _this._widget.toString; if (_this.get$_usesNavigator()) { t1 = _this._defaultRouteInformationProvider; if (t1 != null) { if (t1.ChangeNotifier__count > 0) B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, t1); t1.super$ChangeNotifier$dispose(0); } _this._defaultRouteInformationProvider = null; if (_this._navigator == null || _this._widget.navigatorKey != oldWidget.navigatorKey) { t1 = _this._widget.navigatorKey; _this._navigator = t1 == null ? new A.GlobalObjectKey(_this, type$.GlobalObjectKey_NavigatorState) : t1; } } else { _this._navigator = null; t1 = _this._defaultRouteInformationProvider; if (t1 != null) { if (t1.ChangeNotifier__count > 0) B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, t1); t1.super$ChangeNotifier$dispose(0); } _this._defaultRouteInformationProvider = null; } }, _updateRouting$0() { return this._updateRouting$1$oldWidget(null); }, get$_usesNavigator() { var t2, t1 = this._widget; if (t1.home == null) { t2 = t1.routes; t2 = t2 == null ? null : t2._length !== 0; t1 = t2 === true || t1.onGenerateRoute != null || false; } else t1 = true; return t1; }, _onGenerateRoute$1(settings) { var t1, _this = this, $name = settings.name, pageContentBuilder = $name === "/" && _this._widget.home != null ? new A._WidgetsAppState__onGenerateRoute_closure(_this) : _this._widget.routes.$index(0, $name); if (pageContentBuilder != null) return _this._widget.pageRouteBuilder.call$1$2(settings, pageContentBuilder, type$.dynamic); t1 = _this._widget.onGenerateRoute; if (t1 != null) return t1.call$1(settings); return null; }, _onUnknownRoute$1(settings) { return this._widget.onUnknownRoute.call$1(settings); }, didPopRoute$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, $navigator; var $async$didPopRoute$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; t1 = $async$self._navigator; $navigator = t1 == null ? null : t1.get$currentState(); if ($navigator == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$returnValue = $navigator.maybePop$0(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$didPopRoute$0, $async$completer); }, didPushRoute$1(route) { return this.didPushRoute$body$_WidgetsAppState(route); }, didPushRoute$body$_WidgetsAppState(route) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, $navigator; var $async$didPushRoute$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; t1 = $async$self._navigator; $navigator = t1 == null ? null : t1.get$currentState(); if ($navigator == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $navigator.pushNamed$1$1(route, type$.nullable_Object); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$didPushRoute$1, $async$completer); }, _resolveLocales$2(preferredLocales, supportedLocales) { this._widget.toString; return A.basicLocaleListResolution(preferredLocales, supportedLocales); }, didChangeLocales$1(locales) { var _this = this, newLocale = _this._resolveLocales$2(locales, _this._widget.supportedLocales); if (!J.$eq$(newLocale, _this._app$_locale)) _this.setState$1(new A._WidgetsAppState_didChangeLocales_closure(_this, newLocale)); }, build$1(_, context) { var t2, t3, t4, result, performanceOverlay, appLocale, t5, t6, t7, _this = this, _null = null, t1 = {}; t1.routing = null; _this._widget.toString; if (_this.get$_usesNavigator()) { t2 = _this._navigator; t3 = _this.get$_initialRouteName(); t4 = _this._widget; t4 = t4.navigatorObservers; t4.toString; t1.routing = A.Navigator$(t3, t2, t4, A.navigator_Navigator_defaultGenerateInitialRoutes$closure(), _this.get$_onGenerateRoute(), _this.get$_onUnknownRoute(), true, "nav"); } t1.result = null; t2 = _this._widget; t2.toString; result = new A.Builder(new A._WidgetsAppState_build_closure(t1, _this), _null); t1.result = result; result = A.DefaultTextStyle$(result, _null, _null, B.TextOverflow_0, true, t2.textStyle, _null, _null, B.TextWidthBasis_0); t1.result = result; t2 = $.WidgetsApp_showPerformanceOverlayOverride; if (t2) performanceOverlay = new A.PerformanceOverlay(15, false, false, _null); else performanceOverlay = _null; if (performanceOverlay != null) t1.result = new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([result, A.Positioned$(_null, performanceOverlay, _null, _null, 0, 0, 0, _null)], type$.JSArray_Widget), _null); t2 = _this._widget; t3 = t2.title; t2 = t2.color; t2 = A.Color$fromARGB(255, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); t1 = t1.result; appLocale = _this._resolveLocales$2(A._setArrayType([_this._widget.locale], type$.JSArray_Locale), _this._widget.supportedLocales); t4 = type$.JSArray_LocalizationsDelegate_dynamic; t5 = A._setArrayType([], t4); B.JSArray_methods.addAll$1(t5, _this._widget.localizationsDelegates); t5.push(B.C__WidgetsLocalizationsDelegate0); t4 = A._setArrayType(t5.slice(0), t4); A.MediaQuery_maybeOf(context); t5 = _this._widget; t5 = t5.restorationScopeId; t6 = A.WidgetsApp_defaultShortcuts(); t7 = $.$get$WidgetsApp_defaultActions(); t1 = A.Actions$(t7, A.FocusTraversalGroup$(new A._MediaQueryFromWindow(new A.Localizations(appLocale, t4, new A.Title(t3, t2, t1, _null), _null), _null), true, true, new A.ReadingOrderTraversalPolicy(A.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData)))); return new A.RootRestorationScope(new A.SharedAppData(new A.Shortcuts(t6, new A.DefaultTextEditingShortcuts(A.DefaultTextEditingShortcuts__shortcuts(), t1, "", _null), "", _null), _null), t5, _null); } }; A._WidgetsAppState__onGenerateRoute_closure.prototype = { call$1(context) { var t1 = this.$this._widget.home; t1.toString; return t1; }, $signature: 78 }; A._WidgetsAppState_didChangeLocales_closure.prototype = { call$0() { this.$this._app$_locale = this.newLocale; }, $signature: 0 }; A._WidgetsAppState_build_closure.prototype = { call$1(context) { return this.$this._widget.builder.call$2(context, this._box_0.routing); }, $signature: 78 }; A.__WidgetsAppState_State_WidgetsBindingObserver.prototype = {}; A.StreamBuilderBase.prototype = { createState$0() { var t1 = this.$ti; return new A._StreamBuilderBaseState(B._StateLifecycle_0, t1._eval$1("@")._bind$1(t1._eval$1("StreamBuilderBase.S"))._eval$1("_StreamBuilderBaseState<1,2>")); } }; A._StreamBuilderBaseState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; t1.toString; t1 = A.AsyncSnapshot$nothing(A._instanceType(t1)._precomputed1); _this.___StreamBuilderBaseState__summary = t1; _this._subscribe$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!oldWidget.stream.$eq(0, _this._widget.stream)) { if (_this._subscription != null) { _this._async0$_unsubscribe$0(); _this._widget.toString; t1 = A._lateReadCheck(_this.___StreamBuilderBaseState__summary, "_summary"); _this.___StreamBuilderBaseState__summary = new A.AsyncSnapshot(B.ConnectionState_0, t1.data, t1.error, t1.stackTrace, A._instanceType(t1)); } _this._subscribe$0(); } }, build$1(_, context) { var t1 = this._widget; t1.toString; return t1.builder$2(context, A._lateReadCheck(this.___StreamBuilderBaseState__summary, "_summary")); }, dispose$0(_) { this._async0$_unsubscribe$0(); this.super$State$dispose(0); }, _subscribe$0() { var t1, _this = this; _this._subscription = _this._widget.stream.listen$3$onDone$onError(0, new A._StreamBuilderBaseState__subscribe_closure(_this), new A._StreamBuilderBaseState__subscribe_closure0(_this), new A._StreamBuilderBaseState__subscribe_closure1(_this)); _this._widget.toString; t1 = A._lateReadCheck(_this.___StreamBuilderBaseState__summary, "_summary"); _this.___StreamBuilderBaseState__summary = new A.AsyncSnapshot(B.ConnectionState_1, t1.data, t1.error, t1.stackTrace, A._instanceType(t1)); }, _async0$_unsubscribe$0() { var t1 = this._subscription; if (t1 != null) { t1.cancel$0(0); this._subscription = null; } } }; A._StreamBuilderBaseState__subscribe_closure.prototype = { call$1(data) { var t1 = this.$this; t1.setState$1(new A._StreamBuilderBaseState__subscribe__closure1(t1, data)); }, $signature() { return this.$this.$ti._eval$1("~(1)"); } }; A._StreamBuilderBaseState__subscribe__closure1.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget; t2.toString; A._lateReadCheck(t1.___StreamBuilderBaseState__summary, "_summary"); t1.___StreamBuilderBaseState__summary = new A.AsyncSnapshot(B.ConnectionState_2, this.data, null, null, A._instanceType(t2)._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; A._StreamBuilderBaseState__subscribe_closure1.prototype = { call$2(error, stackTrace) { var t1 = this.$this; t1.setState$1(new A._StreamBuilderBaseState__subscribe__closure(t1, error, stackTrace)); }, $signature: 120 }; A._StreamBuilderBaseState__subscribe__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget; t2.toString; A._lateReadCheck(t1.___StreamBuilderBaseState__summary, "_summary"); t1.___StreamBuilderBaseState__summary = new A.AsyncSnapshot(B.ConnectionState_2, null, this.error, this.stackTrace, A._instanceType(t2)._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; A._StreamBuilderBaseState__subscribe_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._StreamBuilderBaseState__subscribe__closure0(t1)); }, $signature: 0 }; A._StreamBuilderBaseState__subscribe__closure0.prototype = { call$0() { var t2, t1 = this.$this; t1._widget.toString; t2 = A._lateReadCheck(t1.___StreamBuilderBaseState__summary, "_summary"); t1.___StreamBuilderBaseState__summary = new A.AsyncSnapshot(B.ConnectionState_3, t2.data, t2.error, t2.stackTrace, A._instanceType(t2)); }, $signature: 0 }; A.ConnectionState.prototype = { toString$0(_) { return "ConnectionState." + this._core$_name; } }; A.AsyncSnapshot.prototype = { toString$0(_) { var _this = this; return "AsyncSnapshot(" + _this.connectionState.toString$0(0) + ", " + A.S(_this.data) + ", " + A.S(_this.error) + ", " + A.S(_this.stackTrace) + ")"; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return _this.$ti._is(other) && other.connectionState === _this.connectionState && J.$eq$(other.data, _this.data) && J.$eq$(other.error, _this.error) && other.stackTrace == _this.stackTrace; }, get$hashCode(_) { return A.Object_hash(this.connectionState, this.data, this.error, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.StreamBuilder.prototype = { builder$2(arg0, arg1) { return this.builder.call$2(arg0, arg1); } }; A.FutureBuilder.prototype = { createState$0() { return new A._FutureBuilderState(B._StateLifecycle_0, this.$ti._eval$1("_FutureBuilderState<1>")); } }; A._FutureBuilderState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; t1 = A.AsyncSnapshot$nothing(_this.$ti._precomputed1); _this.___FutureBuilderState__snapshot = t1; _this._subscribe$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.future != _this._widget.future) { if (_this._activeCallbackIdentity != null) { _this._activeCallbackIdentity = null; t1 = A._lateReadCheck(_this.___FutureBuilderState__snapshot, "_snapshot"); _this.___FutureBuilderState__snapshot = new A.AsyncSnapshot(B.ConnectionState_0, t1.data, t1.error, t1.stackTrace, A._instanceType(t1)); } _this._subscribe$0(); } }, build$1(_, context) { var t1 = this._widget; t1.toString; return t1.builder.call$2(context, A._lateReadCheck(this.___FutureBuilderState__snapshot, "_snapshot")); }, dispose$0(_) { this._activeCallbackIdentity = null; this.super$State$dispose(0); }, _subscribe$0() { var callbackIdentity, _this = this, t1 = _this._widget.future; if (t1 != null) { callbackIdentity = _this._activeCallbackIdentity = new A.Object(); t1.then$1$2$onError(0, new A._FutureBuilderState__subscribe_closure(_this, callbackIdentity), new A._FutureBuilderState__subscribe_closure0(_this, callbackIdentity), type$.void); t1 = A._lateReadCheck(_this.___FutureBuilderState__snapshot, "_snapshot"); _this.___FutureBuilderState__snapshot = new A.AsyncSnapshot(B.ConnectionState_1, t1.data, t1.error, t1.stackTrace, A._instanceType(t1)); } } }; A._FutureBuilderState__subscribe_closure.prototype = { call$1(data) { var t1 = this.$this; if (t1._activeCallbackIdentity === this.callbackIdentity) t1.setState$1(new A._FutureBuilderState__subscribe__closure0(t1, data)); }, $signature() { return this.$this.$ti._eval$1("Null(1)"); } }; A._FutureBuilderState__subscribe__closure0.prototype = { call$0() { var t1 = this.$this; t1.___FutureBuilderState__snapshot = new A.AsyncSnapshot(B.ConnectionState_3, this.data, null, null, t1.$ti._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; A._FutureBuilderState__subscribe_closure0.prototype = { call$2(error, stackTrace) { var t1 = this.$this; if (t1._activeCallbackIdentity === this.callbackIdentity) t1.setState$1(new A._FutureBuilderState__subscribe__closure(t1, error, stackTrace)); }, $signature: 120 }; A._FutureBuilderState__subscribe__closure.prototype = { call$0() { var t1 = this.$this; t1.___FutureBuilderState__snapshot = new A.AsyncSnapshot(B.ConnectionState_3, null, this.error, this.stackTrace, t1.$ti._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; A.RawAutocomplete.prototype = { createState$0() { var t1 = this.$ti; return new A._RawAutocompleteState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), new A.LayerLink(), new A.EmptyIterable(t1._eval$1("EmptyIterable<1>")), new A.ValueNotifier(0, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_int), B._StateLifecycle_0, t1._eval$1("_RawAutocompleteState<1>")); }, optionsBuilder$1(arg0) { return this.optionsBuilder.call$1(arg0); } }; A._RawAutocompleteState.prototype = { _onChangedField$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, value; var $async$_onChangedField$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start value = A._lateReadCheck($async$self.___RawAutocompleteState__textEditingController, "_textEditingController")._change_notifier$_value; $async$goto = 2; return A._asyncAwait($async$self._widget.optionsBuilder$1(value), $async$_onChangedField$0); case 2: // returning from await. $async$self._autocomplete$_options = $async$result; $async$self._updateHighlight$1($async$self._highlightedOptionIndex._change_notifier$_value); t1 = $async$self._autocomplete$_selection; if (t1 != null) { t2 = value.text; t1 = $async$self._widget.displayStringForOption.call$1(t1); t1 = t2 == null ? t1 != null : t2 !== t1; } else t1 = false; if (t1) $async$self._autocomplete$_selection = null; t1 = value.text; if (t1 != $async$self._lastFieldText) { $async$self._userHidOptions = false; $async$self._lastFieldText = t1; } $async$self._updateActions$0(); $async$self._updateOverlay$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_onChangedField$0, $async$completer); }, _onChangedFocus$0() { var _this = this; _this._userHidOptions = !A._lateReadCheck(_this.___RawAutocompleteState__focusNode, "_focusNode").get$hasFocus(); _this._updateActions$0(); _this._updateOverlay$0(); }, _onFieldSubmitted$0() { var _this = this; if (J.get$isEmpty$asx(_this._autocomplete$_options) || _this._userHidOptions) return; _this._select$1(J.elementAt$1$ax(_this._autocomplete$_options, _this._highlightedOptionIndex._change_notifier$_value)); }, _select$1(nextSelection) { var selectionString, t1, t2, _this = this; if (J.$eq$(nextSelection, _this._autocomplete$_selection)) return; _this._autocomplete$_selection = nextSelection; selectionString = _this._widget.displayStringForOption.call$1(nextSelection); t1 = A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, "_textEditingController"); t2 = A.TextSelection$collapsed(B.TextAffinity_1, selectionString.length); t1.toString; t1.super$ValueNotifier$value(0, new A.TextEditingValue(selectionString, t2, B.TextRange_m1_m1)); _this._updateActions$0(); _this._updateOverlay$0(); t2 = _this._widget.onSelected; t1 = _this._autocomplete$_selection; t1.toString; t2.call$1(t1); }, _updateHighlight$1(newIndex) { var t1 = J.get$isEmpty$asx(this._autocomplete$_options) ? 0 : B.JSInt_methods.$mod(newIndex, J.get$length$asx(this._autocomplete$_options)); this._highlightedOptionIndex.set$value(0, t1); }, _highlightPreviousOption$1(intent) { var _this = this; if (_this._userHidOptions) { _this._userHidOptions = false; _this._updateActions$0(); _this._updateOverlay$0(); return; } _this._updateHighlight$1(_this._highlightedOptionIndex._change_notifier$_value - 1); }, _highlightNextOption$1(intent) { var _this = this; if (_this._userHidOptions) { _this._userHidOptions = false; _this._updateActions$0(); _this._updateOverlay$0(); return; } _this._updateHighlight$1(_this._highlightedOptionIndex._change_notifier$_value + 1); }, _hideOptions$1(intent) { var t1, _this = this; if (!_this._userHidOptions) { _this._userHidOptions = true; _this._updateActions$0(); _this._updateOverlay$0(); return null; } t1 = _this._framework$_element; t1.toString; return A.Actions_invoke(t1, intent, type$.DismissIntent); }, _updateActions$0() { var _this = this, t1 = A._lateReadCheck(_this.___RawAutocompleteState__focusNode, "_focusNode").get$hasFocus() && _this._autocomplete$_selection == null && J.get$isNotEmpty$asx(_this._autocomplete$_options); A._lateReadCheck(_this.___RawAutocompleteState__previousOptionAction, "_previousOptionAction").enabled = t1; A._lateReadCheck(_this.___RawAutocompleteState__nextOptionAction, "_nextOptionAction").enabled = t1; A._lateReadCheck(_this.___RawAutocompleteState__hideOptionsAction, "_hideOptionsAction").enabled = t1; }, _updateOverlay$0() { var newFloatingOptions, result, _this = this, t1 = $.SchedulerBinding__instance; if (t1.SchedulerBinding__schedulerPhase === B.SchedulerPhase_3) { if (!_this._floatingOptionsUpdateScheduled) { _this._floatingOptionsUpdateScheduled = true; t1.SchedulerBinding__postFrameCallbacks.push(new A._RawAutocompleteState__updateOverlay_closure(_this)); } return; } t1 = _this._floatingOptions; if (t1 != null) t1.remove$0(0); if (!_this._userHidOptions && A._lateReadCheck(_this.___RawAutocompleteState__focusNode, "_focusNode").get$hasFocus() && _this._autocomplete$_selection == null && J.get$isNotEmpty$asx(_this._autocomplete$_options)) { newFloatingOptions = A.OverlayEntry$(new A._RawAutocompleteState__updateOverlay_closure0(_this), false); result = _this._framework$_element.findRootAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, newFloatingOptions); _this._floatingOptions = newFloatingOptions; } else _this._floatingOptions = null; }, _updateTextEditingController$2(old, current) { var t2, _this = this, _s22_ = "_textEditingController", t1 = old == null; if (t1 && current == null || old == current) return; if (t1) { A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, _s22_).removeListener$1(0, _this.get$_onChangedField()); t1 = A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, _s22_); t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; current.toString; t1 = _this.___RawAutocompleteState__textEditingController = current; } else { t1 = _this.get$_onChangedField(); t2 = _this.___RawAutocompleteState__textEditingController; if (current == null) { A._lateReadCheck(t2, _s22_).removeListener$1(0, t1); t1 = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); _this.___RawAutocompleteState__textEditingController = t1; } else { A._lateReadCheck(t2, _s22_).removeListener$1(0, t1); _this.___RawAutocompleteState__textEditingController = current; t1 = current; } } A._lateReadCheck(t1, _s22_).addListener$1(0, _this.get$_onChangedField()); }, _updateFocusNode$2(old, current) { var t2, _this = this, _s10_ = "_focusNode", t1 = old == null; if (t1 && current == null || old == current) return; if (t1) { A._lateReadCheck(_this.___RawAutocompleteState__focusNode, _s10_).removeListener$1(0, _this.get$_onChangedFocus()); A._lateReadCheck(_this.___RawAutocompleteState__focusNode, _s10_).dispose$0(0); current.toString; t1 = _this.___RawAutocompleteState__focusNode = current; } else { t1 = _this.get$_onChangedFocus(); t2 = _this.___RawAutocompleteState__focusNode; if (current == null) { A._lateReadCheck(t2, _s10_).removeListener$1(0, t1); t1 = A.FocusNode$(true, null, true, true, null, null, false); _this.___RawAutocompleteState__focusNode = t1; } else { A._lateReadCheck(t2, _s10_).removeListener$1(0, t1); _this.___RawAutocompleteState__focusNode = current; t1 = current; } } A._lateReadCheck(t1, _s10_).addListener$1(0, _this.get$_onChangedFocus()); }, initState$0() { var t1, t2, _this = this, _s21_ = "_previousOptionAction", _s17_ = "_nextOptionAction", _s18_ = "_hideOptionsAction"; _this.super$State$initState(); t1 = _this._widget; t2 = t1.textEditingController; t1 = t2 == null ? A.TextEditingController$fromValue(t1.initialValue) : t2; _this.___RawAutocompleteState__textEditingController = t1; A._lateReadCheck(t1, "_textEditingController").addListener$1(0, _this.get$_onChangedField()); t1 = _this._widget.focusNode; if (t1 == null) t1 = A.FocusNode$(true, null, true, true, null, null, false); _this.___RawAutocompleteState__focusNode = t1; A._lateReadCheck(t1, "_focusNode").addListener$1(0, _this.get$_onChangedFocus()); t1 = A._AutocompleteCallbackAction$(_this.get$_highlightPreviousOption(), type$.AutocompletePreviousOptionIntent); A._lateWriteOnceCheck(_this.___RawAutocompleteState__previousOptionAction, _s21_); _this.___RawAutocompleteState__previousOptionAction = t1; t1 = A._AutocompleteCallbackAction$(_this.get$_highlightNextOption(), type$.AutocompleteNextOptionIntent); A._lateWriteOnceCheck(_this.___RawAutocompleteState__nextOptionAction, _s17_); _this.___RawAutocompleteState__nextOptionAction = t1; t1 = A._AutocompleteCallbackAction$(_this.get$_hideOptions(), type$.DismissIntent); A._lateWriteOnceCheck(_this.___RawAutocompleteState__hideOptionsAction, _s18_); _this.___RawAutocompleteState__hideOptionsAction = t1; t1 = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_4mo, A._lateReadCheck(_this.___RawAutocompleteState__previousOptionAction, _s21_), B.Type_AutocompleteNextOptionIntent_n0f, A._lateReadCheck(_this.___RawAutocompleteState__nextOptionAction, _s17_), B.Type_DismissIntent_Fb0, A._lateReadCheck(_this.___RawAutocompleteState__hideOptionsAction, _s18_)], type$.Type, type$.Action_Intent); A._lateWriteOnceCheck(_this.___RawAutocompleteState__actionMap, "_actionMap"); _this.___RawAutocompleteState__actionMap = t1; _this._updateActions$0(); _this._updateOverlay$0(); }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); _this._updateTextEditingController$2(oldWidget.textEditingController, _this._widget.textEditingController); _this._updateFocusNode$2(oldWidget.focusNode, _this._widget.focusNode); _this._updateActions$0(); _this._updateOverlay$0(); }, dispose$0(_) { var t1, _this = this, _s22_ = "_textEditingController", _s10_ = "_focusNode"; A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, _s22_).removeListener$1(0, _this.get$_onChangedField()); if (_this._widget.textEditingController == null) { t1 = A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, _s22_); t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } A._lateReadCheck(_this.___RawAutocompleteState__focusNode, _s10_).removeListener$1(0, _this.get$_onChangedFocus()); if (_this._widget.focusNode == null) A._lateReadCheck(_this.___RawAutocompleteState__focusNode, _s10_).dispose$0(0); t1 = _this._floatingOptions; if (t1 != null) t1.remove$0(0); _this._floatingOptions = null; _this.super$State$dispose(0); }, build$1(_, context) { var _this = this, _null = null, t1 = A._lateReadCheck(_this.___RawAutocompleteState__actionMap, "_actionMap"), t2 = _this._widget.fieldViewBuilder, t3 = A._lateReadCheck(_this.___RawAutocompleteState__textEditingController, "_textEditingController"); t2 = t2.call$4(context, t3, A._lateReadCheck(_this.___RawAutocompleteState__focusNode, "_focusNode"), _this.get$_onFieldSubmitted()); return A.Container$(_null, new A.Shortcuts(B.Map_cW2No, A.Actions$(t1, new A.CompositedTransformTarget(_this._optionsLayerLink, t2, _null)), _null, _null), B.Clip_0, _null, _null, _null, _null, _null, _this._fieldKey, _null, _null, _null, _null, _null); } }; A._RawAutocompleteState__updateOverlay_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1._floatingOptionsUpdateScheduled = false; t1._updateOverlay$0(); }, $signature: 22 }; A._RawAutocompleteState__updateOverlay_closure0.prototype = { call$1(context) { var t1 = this.$this; return A.CompositedTransformFollower$(new A.AutocompleteHighlightedOption(t1._highlightedOptionIndex, new A.Builder(new A._RawAutocompleteState__updateOverlay__closure(t1), null), null), null, t1._optionsLayerLink, B.Offset_0_0, false, B.Alignment_m1_1); }, $signature: 2058 }; A._RawAutocompleteState__updateOverlay__closure.prototype = { call$1(context) { var t1 = this.$this, t2 = t1._widget, t3 = t1._autocomplete$_options; return t2.optionsViewBuilder.call$3(context, t1.get$_select(), t3); }, $signature: 78 }; A._AutocompleteCallbackAction.prototype = { isEnabled$1(_, intent) { return this.enabled; }, consumesKey$1(intent) { return this.enabled; } }; A.AutocompletePreviousOptionIntent.prototype = {}; A.AutocompleteNextOptionIntent.prototype = {}; A.AutocompleteHighlightedOption.prototype = {}; A.AutofillContextAction.prototype = { toString$0(_) { return "AutofillContextAction." + this._core$_name; } }; A.AutofillGroup.prototype = { createState$0() { return new A.AutofillGroupState(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.AutofillClient), B._StateLifecycle_0); } }; A.AutofillGroupState.prototype = { get$autofillClients() { var t1 = this._autofill$_clients; t1 = t1.get$values(t1); return new A.WhereIterable(t1, new A.AutofillGroupState_autofillClients_closure(), A._instanceType(t1)._eval$1("WhereIterable")); }, register$1(_, client) { this._autofill$_clients.putIfAbsent$2(0, client.get$autofillId(), new A.AutofillGroupState_register_closure(client)); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); var t1 = this._framework$_element; t1.toString; this._isTopmostAutofillGroup = A.AutofillGroup_of(t1) == null; }, build$1(_, context) { return new A._AutofillScope(this, this._widget.child, null); }, dispose$0(_) { var t1, _this = this; _this.super$State$dispose(0); if (_this._isTopmostAutofillGroup) { _this._widget.toString; t1 = false; } else t1 = true; if (t1) return; _this._widget.toString; switch (0) { case 0: A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.finishAutofillContext", true, type$.void); break; } } }; A.AutofillGroupState_autofillClients_closure.prototype = { call$1(client) { return client.get$textInputConfiguration().autofillConfiguration.enabled; }, $signature: 2057 }; A.AutofillGroupState_register_closure.prototype = { call$0() { return this.client; }, $signature: 2056 }; A._AutofillScope.prototype = { updateShouldNotify$1(old) { return this._scope !== old._scope; } }; A._AutofillGroupState_State_AutofillScopeMixin.prototype = {}; A.AutomaticKeepAlive.prototype = { createState$0() { return new A._AutomaticKeepAliveState(B._StateLifecycle_0); } }; A._AutomaticKeepAliveState.prototype = { initState$0() { this.super$State$initState(); this._updateChild$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateChild$0(); }, _updateChild$0() { this._automatic_keep_alive$_child = new A.NotificationListener(this.get$_addClient(), this._widget.child, null, type$.NotificationListener_KeepAliveNotification); }, dispose$0(_) { var t2, t3, t1 = this._automatic_keep_alive$_handles; if (t1 != null) for (t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1.__js_helper$_current; t3 = this._automatic_keep_alive$_handles.$index(0, t2); t3.toString; t2.removeListener$1(0, t3); } this.super$State$dispose(0); }, _addClient$1(notification) { var childElement, _this = this, handle = notification.handle, t1 = _this._automatic_keep_alive$_handles; if (t1 == null) t1 = _this._automatic_keep_alive$_handles = A.LinkedHashMap_LinkedHashMap$_empty(type$.Listenable, type$.void_Function); t1.$indexSet(0, handle, _this._createCallback$1(handle)); t1 = _this._automatic_keep_alive$_handles.$index(0, handle); t1.toString; handle.addListener$1(0, t1); if (!_this._keepingAlive) { _this._keepingAlive = true; childElement = _this._getChildElement$0(); if (childElement != null) _this._updateParentDataOfChild$1(childElement); else $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AutomaticKeepAliveState__addClient_closure(_this)); } return false; }, _getChildElement$0() { var t1 = {}, t2 = this._framework$_element; t2.toString; t1.childElement = null; t2.visitChildren$1(new A._AutomaticKeepAliveState__getChildElement_closure(t1)); return type$.nullable_ParentDataElement_KeepAliveParentDataMixin._as(t1.childElement); }, _updateParentDataOfChild$1(childElement) { var t1, t2; this._framework$_element.toString; t1 = this._keepingAlive; t2 = this._automatic_keep_alive$_child; t2.toString; childElement._applyParentData$1(type$.ParentDataWidget_KeepAliveParentDataMixin._as(A.KeepAlive$(t2, t1))); }, _createCallback$1(handle) { return new A._AutomaticKeepAliveState__createCallback_closure(this, handle); }, build$1(_, context) { var t1 = this._keepingAlive, t2 = this._automatic_keep_alive$_child; t2.toString; return new A.KeepAlive(t1, t2, null); } }; A._AutomaticKeepAliveState__addClient_closure.prototype = { call$1(timeStamp) { var childElement, t1 = this.$this; if (t1._framework$_element == null) return; childElement = t1._getChildElement$0(); childElement.toString; t1._updateParentDataOfChild$1(childElement); }, $signature: 22 }; A._AutomaticKeepAliveState__getChildElement_closure.prototype = { call$1(child) { this._box_0.childElement = child; }, $signature: 97 }; A._AutomaticKeepAliveState__createCallback_closure.prototype = { call$0() { var t1 = this.$this; t1._automatic_keep_alive$_handles.remove$1(0, this.handle); if (t1._automatic_keep_alive$_handles._length === 0) if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase.index < 3) t1.setState$1(new A._AutomaticKeepAliveState__createCallback__closure(t1)); else { t1._keepingAlive = false; A.scheduleMicrotask(new A._AutomaticKeepAliveState__createCallback__closure0(t1)); } }, $signature: 0 }; A._AutomaticKeepAliveState__createCallback__closure.prototype = { call$0() { this.$this._keepingAlive = false; }, $signature: 0 }; A._AutomaticKeepAliveState__createCallback__closure0.prototype = { call$0() { var t1 = this.$this; if (t1._framework$_element != null && t1._automatic_keep_alive$_handles._length === 0) t1.setState$1(new A._AutomaticKeepAliveState__createCallback___closure(t1)); }, $signature: 0 }; A._AutomaticKeepAliveState__createCallback___closure.prototype = { call$0() { }, $signature: 0 }; A.KeepAliveNotification.prototype = {}; A.KeepAliveHandle.prototype = {}; A.AutomaticKeepAliveClientMixin.prototype = { _ensureKeepAlive$0() { var t1 = new A.KeepAliveHandle($.$get$ChangeNotifier__emptyListeners()); this.AutomaticKeepAliveClientMixin__keepAliveHandle = t1; this._framework$_element.dispatchNotification$1(new A.KeepAliveNotification(t1)); }, updateKeepAlive$0() { var t1, _this = this; if (_this.get$wantKeepAlive()) { if (_this.AutomaticKeepAliveClientMixin__keepAliveHandle == null) _this._ensureKeepAlive$0(); } else { t1 = _this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); _this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } } }, build$1(_, context) { if (this.get$wantKeepAlive() && this.AutomaticKeepAliveClientMixin__keepAliveHandle == null) this._ensureKeepAlive$0(); return B._NullWidget_null0; } }; A._NullWidget0.prototype = { build$1(_, context) { throw A.wrapException(A.FlutterError_FlutterError("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass.")); } }; A.Directionality.prototype = { updateShouldNotify$1(oldWidget) { return this.textDirection != oldWidget.textDirection; } }; A.Opacity.prototype = { createRenderObject$1(context) { var t2, t1 = this.opacity; t1 = new A.RenderOpacity(B.JSNumber_methods.round$0(J.clamp$2$n(t1, 0, 1) * 255), t1, false, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t2 = t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = t2; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$opacity(0, this.opacity); renderObject.set$alwaysIncludeSemantics(false); } }; A.BackdropFilter.prototype = { createRenderObject$1(context) { var t2, t1 = new A.RenderBackdropFilter(this.filter, B.BlendMode_3, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t2 = t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = t2; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$filter(0, this.filter); renderObject.set$blendMode(B.BlendMode_3); } }; A.CustomPaint.prototype = { createRenderObject$1(context) { return A.RenderCustomPaint$(this.foregroundPainter, false, this.painter, this.size, false); }, updateRenderObject$2(context, renderObject) { renderObject.set$painter(this.painter); renderObject.set$foregroundPainter(this.foregroundPainter); renderObject.set$preferredSize(this.size); renderObject.willChange = renderObject.isComplex = false; }, didUnmountRenderObject$1(renderObject) { renderObject.set$painter(null); renderObject.set$foregroundPainter(null); } }; A.ClipRect.prototype = { createRenderObject$1(context) { var t1 = new A.RenderClipRect(this.clipper, this.clipBehavior, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$clipper(this.clipper); renderObject.set$clipBehavior(this.clipBehavior); }, didUnmountRenderObject$1(renderObject) { renderObject.set$clipper(null); } }; A.ClipRRect.prototype = { createRenderObject$1(context) { var t1 = new A.RenderClipRRect(this.borderRadius, null, B.Clip_2, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$borderRadius(0, this.borderRadius); renderObject.set$clipBehavior(B.Clip_2); renderObject.set$clipper(null); } }; A.ClipOval.prototype = { createRenderObject$1(context) { var t1 = new A.RenderClipOval(null, B.Clip_2, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$clipper(null); renderObject.set$clipBehavior(B.Clip_2); }, didUnmountRenderObject$1(renderObject) { renderObject.set$clipper(null); } }; A.ClipPath.prototype = { createRenderObject$1(context) { var t1 = new A.RenderClipPath(this.clipper, this.clipBehavior, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$clipper(this.clipper); renderObject.set$clipBehavior(this.clipBehavior); }, didUnmountRenderObject$1(renderObject) { renderObject.set$clipper(null); } }; A.ClipPath_shape_closure.prototype = { call$1(context) { return A.ClipPath$(this.child, this.clipBehavior, new A.ShapeBorderClipper(this.shape, A.Directionality_maybeOf(context), null)); }, $signature: 2048 }; A.PhysicalModel.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderPhysicalModel(_this.shape, _this.borderRadius, _this.elevation, _this.shadowColor, _this.color, null, _this.clipBehavior, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$shape(0, _this.shape); renderObject.set$clipBehavior(_this.clipBehavior); renderObject.set$borderRadius(0, _this.borderRadius); renderObject.set$elevation(0, _this.elevation); renderObject.set$color(0, _this.color); renderObject.set$shadowColor(0, _this.shadowColor); } }; A.PhysicalShape.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderPhysicalShape(_this.elevation, _this.shadowColor, _this.color, _this.clipper, _this.clipBehavior, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$clipper(_this.clipper); renderObject.set$clipBehavior(_this.clipBehavior); renderObject.set$elevation(0, _this.elevation); renderObject.set$color(0, _this.color); renderObject.set$shadowColor(0, _this.shadowColor); } }; A.Transform.prototype = { createRenderObject$1(context) { var t3, _this = this, t1 = A.Directionality_maybeOf(context), t2 = new A.RenderTransform(_this.transformHitTests, null, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t3 = t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = t3; t2.set$child(null); t2.set$transform(0, _this.transform); t2.set$alignment(_this.alignment); t2.set$textDirection(0, t1); t2.set$filterQuality(_this.filterQuality); t2.set$origin(0, null); return t2; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$transform(0, _this.transform); renderObject.set$origin(0, null); renderObject.set$alignment(_this.alignment); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); renderObject.transformHitTests = _this.transformHitTests; renderObject.set$filterQuality(_this.filterQuality); } }; A.CompositedTransformTarget.prototype = { createRenderObject$1(context) { var t1 = new A.RenderLeaderLayer(this.link, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$link(this.link); } }; A.CompositedTransformFollower.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderFollowerLayer(_this.link, _this.showWhenUnlinked, _this.offset, _this.targetAnchor, B.Alignment_m1_m1, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$link(_this.link); renderObject.set$showWhenUnlinked(_this.showWhenUnlinked); renderObject.set$offset(0, _this.offset); renderObject.set$leaderAnchor(_this.targetAnchor); renderObject.set$followerAnchor(B.Alignment_m1_m1); } }; A.FittedBox.prototype = { createRenderObject$1(context) { var t1 = new A.RenderFittedBox(B.BoxFit_1, B.Alignment_0_0, A.Directionality_maybeOf(context), B.Clip_0, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$fit(B.BoxFit_1); renderObject.set$alignment(B.Alignment_0_0); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); if (B.Clip_0 !== renderObject._proxy_box$_clipBehavior) { renderObject._proxy_box$_clipBehavior = B.Clip_0; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A.FractionalTranslation.prototype = { createRenderObject$1(context) { var t1 = new A.RenderFractionalTranslation(this.translation, this.transformHitTests, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$translation(this.translation); renderObject.transformHitTests = this.transformHitTests; } }; A.Padding.prototype = { createRenderObject$1(context) { var t1 = new A.RenderPadding(this.padding, A.Directionality_maybeOf(context), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$padding(0, this.padding); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); } }; A.Align.prototype = { createRenderObject$1(context) { var t1 = new A.RenderPositionedBox(this.widthFactor, this.heightFactor, this.alignment, A.Directionality_maybeOf(context), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$alignment(this.alignment); renderObject.set$widthFactor(this.widthFactor); renderObject.set$heightFactor(this.heightFactor); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); } }; A.Center.prototype = {}; A.CustomSingleChildLayout.prototype = { createRenderObject$1(context) { var t1 = new A.RenderCustomSingleChildLayoutBox(this.delegate, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$delegate(this.delegate); } }; A.LayoutId.prototype = { applyParentData$1(renderObject) { var t2, t3, targetParent, t1 = renderObject.parentData; t1.toString; type$.MultiChildLayoutParentData._as(t1); t2 = t1.id; t3 = this.id; if (t2 == null ? t3 != null : t2 !== t3) { t1.id = t3; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof A.RenderObject) targetParent.markNeedsLayout$0(); } }, get$id(receiver) { return this.id; } }; A.CustomMultiChildLayout.prototype = { createRenderObject$1(context) { var t1 = new A.RenderCustomMultiChildLayoutBox(this.delegate, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$delegate(this.delegate); } }; A.SizedBox.prototype = { createRenderObject$1(context) { return A.RenderConstrainedBox$(A.BoxConstraints$tightFor(this.height, this.width)); }, updateRenderObject$2(context, renderObject) { renderObject.set$additionalConstraints(A.BoxConstraints$tightFor(this.height, this.width)); }, toStringShort$0() { var type, _this = this, t1 = _this.width; if (t1 === 1 / 0 && _this.height === 1 / 0) type = "SizedBox.expand"; else type = t1 === 0 && _this.height === 0 ? "SizedBox.shrink" : "SizedBox"; t1 = _this.key; return t1 == null ? type : type + "-" + t1.toString$0(0); } }; A.ConstrainedBox.prototype = { createRenderObject$1(context) { return A.RenderConstrainedBox$(this.constraints); }, updateRenderObject$2(context, renderObject) { renderObject.set$additionalConstraints(this.constraints); } }; A.FractionallySizedBox.prototype = { createRenderObject$1(context) { var t1 = new A.RenderFractionallySizedOverflowBox(this.widthFactor, this.heightFactor, this.alignment, A.Directionality_maybeOf(context), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$alignment(this.alignment); renderObject.set$widthFactor(this.widthFactor); renderObject.set$heightFactor(this.heightFactor); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); } }; A.LimitedBox.prototype = { createRenderObject$1(context) { var t1 = new A.RenderLimitedBox(this.maxWidth, this.maxHeight, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$maxWidth(0, this.maxWidth); renderObject.set$maxHeight(0, this.maxHeight); } }; A.OverflowBox.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderConstrainedOverflowBox(_this.minWidth, _this.maxWidth, _this.minHeight, _this.maxHeight, _this.alignment, A.Directionality_maybeOf(context), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$alignment(_this.alignment); renderObject.set$minWidth(0, _this.minWidth); renderObject.set$maxWidth(0, _this.maxWidth); renderObject.set$minHeight(0, _this.minHeight); renderObject.set$maxHeight(0, _this.maxHeight); renderObject.set$textDirection(0, A.Directionality_maybeOf(context)); } }; A.Offstage.prototype = { createRenderObject$1(context) { var t1 = new A.RenderOffstage(this.offstage, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$offstage(this.offstage); }, createElement$0(_) { return new A._OffstageElement(this, B._ElementLifecycle_0); } }; A._OffstageElement.prototype = {}; A.AspectRatio.prototype = { createRenderObject$1(context) { var t1 = new A.RenderAspectRatio(this.aspectRatio, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$aspectRatio(0, this.aspectRatio); } }; A.IntrinsicWidth.prototype = { createRenderObject$1(context) { var _null = null, t1 = this.stepWidth; if (t1 === 0) t1 = _null; t1 = new A.RenderIntrinsicWidth(t1, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.stepWidth; renderObject.set$stepWidth(t1 === 0 ? null : t1); renderObject.set$stepHeight(null); } }; A.IntrinsicHeight.prototype = { createRenderObject$1(context) { var t1 = new A.RenderIntrinsicHeight(null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; A.SliverPadding.prototype = { createRenderObject$1(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new A.RenderSliverPadding(this.padding, t1.textDirection, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1; renderObject.set$padding(0, this.padding); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; A.ListBody.prototype = { createRenderObject$1(context) { return A.RenderListBody$(A.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false), null); }, updateRenderObject$2(context, renderObject) { renderObject.set$axisDirection(A.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false)); } }; A.Stack.prototype = { createRenderObject$1(context) { var t1 = A.Directionality_maybeOf(context); return A.RenderStack$(this.alignment, null, this.clipBehavior, this.fit, t1); }, updateRenderObject$2(context, renderObject) { var t1; renderObject.set$alignment(this.alignment); t1 = A.Directionality_maybeOf(context); renderObject.set$textDirection(0, t1); t1 = this.fit; if (renderObject._fit !== t1) { renderObject._fit = t1; renderObject.markNeedsLayout$0(); } t1 = this.clipBehavior; if (t1 !== renderObject._clipBehavior) { renderObject._clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A.IndexedStack.prototype = { createRenderObject$1(context) { var t1 = A.Directionality_maybeOf(context); t1 = new A.RenderIndexedStack(this.index, this.alignment, t1, B.StackFit_0, B.Clip_1, A.LayerHandle$(type$.ClipRectLayer), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.index; if (renderObject._stack$_index != t1) { renderObject._stack$_index = t1; renderObject.markNeedsLayout$0(); } renderObject.set$alignment(this.alignment); t1 = A.Directionality_maybeOf(context); renderObject.set$textDirection(0, t1); } }; A.Positioned.prototype = { applyParentData$1(renderObject) { var t2, needsLayout, targetParent, _this = this, t1 = renderObject.parentData; t1.toString; type$.StackParentData._as(t1); t2 = _this.left; if (t1.left != t2) { t1.left = t2; needsLayout = true; } else needsLayout = false; t2 = _this.top; if (t1.top != t2) { t1.top = t2; needsLayout = true; } t2 = _this.right; if (t1.right != t2) { t1.right = t2; needsLayout = true; } t2 = _this.bottom; if (t1.bottom != t2) { t1.bottom = t2; needsLayout = true; } t2 = _this.width; if (t1.width != t2) { t1.width = t2; needsLayout = true; } t2 = _this.height; if (t1.height != t2) { t1.height = t2; needsLayout = true; } if (needsLayout) { targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof A.RenderObject) targetParent.markNeedsLayout$0(); } } }; A.PositionedDirectional.prototype = { build$1(_, context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return A.Positioned_Positioned$directional(_this.bottom, _this.child, null, null, _this.start, t1.textDirection, _this.top, _this.width); } }; A.Flex.prototype = { get$_needTextDirection() { switch (this.direction.index) { case 0: return true; case 1: var t1 = this.crossAxisAlignment; return t1 === B.CrossAxisAlignment_0 || t1 === B.CrossAxisAlignment_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getEffectiveTextDirection$1(context) { var t1 = this.textDirection; if (t1 == null) t1 = this.get$_needTextDirection() ? A.Directionality_maybeOf(context) : null; return t1; }, createRenderObject$1(context) { var _this = this; return A.RenderFlex$(null, B.Clip_0, _this.crossAxisAlignment, _this.direction, _this.mainAxisAlignment, _this.mainAxisSize, _this.textBaseline, _this.getEffectiveTextDirection$1(context), _this.verticalDirection); }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.set$direction(0, _this.direction); renderObject.set$mainAxisAlignment(_this.mainAxisAlignment); renderObject.set$mainAxisSize(_this.mainAxisSize); renderObject.set$crossAxisAlignment(_this.crossAxisAlignment); renderObject.set$textDirection(0, _this.getEffectiveTextDirection$1(context)); renderObject.set$verticalDirection(_this.verticalDirection); renderObject.set$textBaseline(0, _this.textBaseline); if (B.Clip_0 !== renderObject._flex$_clipBehavior) { renderObject._flex$_clipBehavior = B.Clip_0; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A.Row.prototype = {}; A.Column.prototype = {}; A.Flexible.prototype = { applyParentData$1(renderObject) { var t2, needsLayout, targetParent, t1 = renderObject.parentData; t1.toString; type$.FlexParentData._as(t1); t2 = this.flex; if (t1.flex !== t2) { t1.flex = t2; needsLayout = true; } else needsLayout = false; t2 = this.fit; if (t1.fit !== t2) { t1.fit = t2; needsLayout = true; } if (needsLayout) { targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof A.RenderObject) targetParent.markNeedsLayout$0(); } } }; A.Expanded.prototype = {}; A.Wrap.prototype = { createRenderObject$1(context) { var _this = this, t1 = A.Directionality_maybeOf(context); t1 = new A.RenderWrap(B.Axis_0, _this.alignment, _this.spacing, B.WrapAlignment_0, 0, _this.crossAxisAlignment, t1, B.VerticalDirection_1, _this.clipBehavior, A.LayerHandle$(type$.ClipRectLayer), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$direction(0, B.Axis_0); renderObject.set$alignment(_this.alignment); renderObject.set$spacing(0, _this.spacing); renderObject.set$runAlignment(B.WrapAlignment_0); renderObject.set$runSpacing(0); renderObject.set$crossAxisAlignment(_this.crossAxisAlignment); t1 = A.Directionality_maybeOf(context); if (renderObject._wrap$_textDirection != t1) { renderObject._wrap$_textDirection = t1; renderObject.markNeedsLayout$0(); } if (renderObject._wrap$_verticalDirection !== B.VerticalDirection_1) { renderObject._wrap$_verticalDirection = B.VerticalDirection_1; renderObject.markNeedsLayout$0(); } t1 = _this.clipBehavior; if (t1 !== renderObject._wrap$_clipBehavior) { renderObject._wrap$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A.RichText.prototype = { createRenderObject$1(context) { var t2, _this = this, t1 = _this.textDirection; if (t1 == null) { t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; } t2 = A.Localizations_maybeLocaleOf(context); return A.RenderParagraph$(_this.text, null, t2, _this.maxLines, _this.overflow, _this.softWrap, _this.strutStyle, _this.textAlign, t1, _this.textHeightBehavior, _this.textScaleFactor, _this.textWidthBasis); }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$text(0, _this.text); renderObject.set$textAlign(0, _this.textAlign); t1 = _this.textDirection; if (t1 == null) { t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; } renderObject.set$textDirection(0, t1); renderObject.set$softWrap(_this.softWrap); renderObject.set$overflow(0, _this.overflow); renderObject.set$textScaleFactor(_this.textScaleFactor); renderObject.set$maxLines(0, _this.maxLines); renderObject.set$strutStyle(0, _this.strutStyle); renderObject.set$textWidthBasis(_this.textWidthBasis); renderObject.set$textHeightBehavior(0, _this.textHeightBehavior); t1 = A.Localizations_maybeLocaleOf(context); renderObject.set$locale(0, t1); } }; A.RichText__extractChildren_closure.prototype = { call$1(span) { var t1, _null = null; if (span instanceof A.WidgetSpan) { t1 = this._box_0.index++; this.result.push(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.PlaceholderSpanIndexSemanticsTag(t1, "PlaceholderSpanIndexSemanticsTag(" + t1 + ")"), _null, _null, _null, _null), false, false, false, span.child, _null)); } return true; }, $signature: 212 }; A.RawImage.prototype = { createRenderObject$1(context) { var _this = this, t1 = _this.image; t1 = t1 == null ? null : t1.clone$0(0); t1 = new A.RenderImage(t1, _this.debugImageLabel, _this.width, _this.height, _this.scale, _this.color, _this.opacity, _this.filterQuality, _this.colorBlendMode, _this.fit, _this.alignment, _this.repeat, _this.centerSlice, _this.invertColors, false, null, false, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1._updateColorFilter$0(); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this, t1 = _this.image; renderObject.set$image(0, t1 == null ? null : t1.clone$0(0)); renderObject.debugImageLabel = _this.debugImageLabel; renderObject.set$width(0, _this.width); renderObject.set$height(0, _this.height); renderObject.set$scale(0, _this.scale); renderObject.set$color(0, _this.color); renderObject.set$opacity(0, _this.opacity); renderObject.set$colorBlendMode(_this.colorBlendMode); renderObject.set$fit(_this.fit); renderObject.set$alignment(_this.alignment); renderObject.set$repeat(0, _this.repeat); renderObject.set$centerSlice(_this.centerSlice); renderObject.set$matchTextDirection(false); renderObject.set$textDirection(0, null); renderObject.set$invertColors(_this.invertColors); renderObject.set$isAntiAlias(false); renderObject.set$filterQuality(_this.filterQuality); }, didUnmountRenderObject$1(renderObject) { renderObject.set$image(0, null); } }; A.Listener.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderPointerListener(_this.onPointerDown, _this.onPointerMove, _this.onPointerUp, _this.onPointerHover, _this.onPointerCancel, _this.onPointerSignal, _this.behavior, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var _this = this; renderObject.onPointerDown = _this.onPointerDown; renderObject.onPointerMove = _this.onPointerMove; renderObject.onPointerUp = _this.onPointerUp; renderObject.onPointerHover = _this.onPointerHover; renderObject.onPointerCancel = _this.onPointerCancel; renderObject.onPointerSignal = _this.onPointerSignal; renderObject.behavior = _this.behavior; } }; A.MouseRegion.prototype = { createRenderObject$1(context) { var _this = this, t1 = new A.RenderMouseRegion(true, _this.onEnter, _this.onHover, _this.onExit, _this.cursor, B.HitTestBehavior_1, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.onEnter = _this.onEnter; renderObject.onHover = _this.onHover; renderObject.onExit = _this.onExit; t1 = _this.cursor; if (!J.$eq$(renderObject._cursor, t1)) { renderObject._cursor = t1; renderObject.markNeedsPaint$0(); } if (renderObject.behavior !== B.HitTestBehavior_1) { renderObject.behavior = B.HitTestBehavior_1; renderObject.markNeedsPaint$0(); } } }; A.RepaintBoundary.prototype = { createRenderObject$1(context) { var t1 = new A.RenderRepaintBoundary(null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; } }; A.IgnorePointer.prototype = { createRenderObject$1(context) { var t1 = new A.RenderIgnorePointer(this.ignoring, this.ignoringSemantics, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$ignoring(this.ignoring); renderObject.set$ignoringSemantics(this.ignoringSemantics); } }; A.AbsorbPointer.prototype = { createRenderObject$1(context) { var t1 = new A.RenderAbsorbPointer(this.absorbing, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$absorbing(this.absorbing); renderObject.set$ignoringSemantics(null); } }; A.Semantics.prototype = { get$_effectiveAttributedLabel() { var t1 = this.properties.label; t1 = t1 == null ? null : new A.AttributedString(t1, B.List_empty3); return t1; }, get$_effectiveAttributedValue() { var t1 = this.properties.value; t1 = t1 == null ? null : new A.AttributedString(t1, B.List_empty3); return t1; }, get$_effectiveAttributedIncreasedValue() { var t1 = this.properties.increasedValue; t1 = t1 == null ? null : new A.AttributedString(t1, B.List_empty3); return t1; }, get$_effectiveAttributedDecreasedValue() { var t1 = this.properties.decreasedValue; t1 = t1 == null ? null : new A.AttributedString(t1, B.List_empty3); return t1; }, get$_effectiveAttributedHint() { return null; }, createRenderObject$1(context) { var _this = this, _null = null, t1 = _this.properties; t1 = new A.RenderSemanticsAnnotations(_this.container, _this.explicitChildNodes, _this.excludeSemantics, t1.checked, t1.enabled, t1.selected, t1.button, t1.slider, t1.keyboardKey, t1.link, t1.header, t1.textField, t1.readOnly, t1.focusable, t1.focused, t1.inMutuallyExclusiveGroup, t1.obscured, t1.multiline, t1.scopesRoute, t1.namesRoute, t1.hidden, t1.image, t1.liveRegion, t1.maxValueLength, t1.currentValueLength, t1.toggled, _this.get$_effectiveAttributedLabel(), _this.get$_effectiveAttributedValue(), _this.get$_effectiveAttributedIncreasedValue(), _this.get$_effectiveAttributedDecreasedValue(), _this.get$_effectiveAttributedHint(), t1.hintOverrides, _this._getTextDirection$1(context), t1.sortKey, t1.tagForChildren, t1.onTap, t1.onDismiss, t1.onLongPress, t1.onScrollLeft, t1.onScrollRight, t1.onScrollUp, t1.onScrollDown, t1.onIncrease, t1.onDecrease, t1.onCopy, t1.onCut, t1.onPaste, t1.onMoveCursorForwardByCharacter, t1.onMoveCursorBackwardByCharacter, _null, _null, t1.onSetSelection, t1.onSetText, t1.onDidGainAccessibilityFocus, t1.onDidLoseAccessibilityFocus, t1.customSemanticsActions, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); return t1; }, _getTextDirection$1(context) { var containsText, t1 = this.properties, t2 = t1.textDirection; if (t2 != null) return t2; containsText = t1.label != null || t1.value != null || false; if (!containsText) return null; return A.Directionality_maybeOf(context); }, updateRenderObject$2(context, renderObject) { var t1, t2, _this = this; renderObject.set$container(_this.container); renderObject.set$explicitChildNodes(_this.explicitChildNodes); renderObject.set$excludeSemantics(_this.excludeSemantics); t1 = _this.properties; renderObject.set$scopesRoute(t1.scopesRoute); renderObject.set$enabled(0, t1.enabled); renderObject.set$checked(0, t1.checked); renderObject.set$toggled(t1.toggled); renderObject.set$selected(0, t1.selected); renderObject.set$button(0, t1.button); renderObject.set$slider(t1.slider); renderObject.set$keyboardKey(t1.keyboardKey); renderObject.set$link(t1.link); renderObject.set$header(t1.header); renderObject.set$textField(t1.textField); renderObject.set$readOnly(0, t1.readOnly); renderObject.set$focusable(t1.focusable); renderObject.set$focused(0, t1.focused); renderObject.set$inMutuallyExclusiveGroup(t1.inMutuallyExclusiveGroup); renderObject.set$obscured(t1.obscured); renderObject.set$multiline(0, t1.multiline); renderObject.set$hidden(0, t1.hidden); renderObject.set$image(0, t1.image); renderObject.set$liveRegion(t1.liveRegion); renderObject.set$maxValueLength(t1.maxValueLength); renderObject.set$currentValueLength(t1.currentValueLength); renderObject.set$attributedLabel(_this.get$_effectiveAttributedLabel()); renderObject.set$attributedValue(_this.get$_effectiveAttributedValue()); renderObject.set$attributedIncreasedValue(_this.get$_effectiveAttributedIncreasedValue()); renderObject.set$attributedDecreasedValue(_this.get$_effectiveAttributedDecreasedValue()); renderObject.set$attributedHint(_this.get$_effectiveAttributedHint()); renderObject.set$hintOverrides(t1.hintOverrides); renderObject.set$namesRoute(t1.namesRoute); renderObject.set$textDirection(0, _this._getTextDirection$1(context)); renderObject.set$sortKey(t1.sortKey); renderObject.set$tagForChildren(t1.tagForChildren); renderObject.set$onTap(t1.onTap); renderObject.set$onLongPress(t1.onLongPress); renderObject.set$onScrollLeft(t1.onScrollLeft); renderObject.set$onScrollRight(t1.onScrollRight); renderObject.set$onScrollUp(t1.onScrollUp); renderObject.set$onScrollDown(t1.onScrollDown); renderObject.set$onIncrease(t1.onIncrease); renderObject.set$onDismiss(t1.onDismiss); renderObject.set$onDecrease(t1.onDecrease); renderObject.set$onCopy(0, t1.onCopy); renderObject.set$onCut(0, t1.onCut); renderObject.set$onPaste(0, t1.onPaste); t2 = t1.onMoveCursorForwardByCharacter; renderObject.set$onMoveCursorForwardByCharacter(t2); renderObject.set$onMoveCursorBackwardByCharacter(t2); renderObject.set$onMoveCursorForwardByWord(null); renderObject.set$onMoveCursorBackwardByWord(null); renderObject.set$onSetSelection(t1.onSetSelection); renderObject.set$onSetText(t1.onSetText); renderObject.set$onDidGainAccessibilityFocus(t1.onDidGainAccessibilityFocus); renderObject.set$onDidLoseAccessibilityFocus(t1.onDidLoseAccessibilityFocus); renderObject.set$customSemanticsActions(t1.customSemanticsActions); } }; A.MergeSemantics.prototype = { createRenderObject$1(context) { var t1 = new A.RenderMergeSemantics(null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; A.BlockSemantics.prototype = { createRenderObject$1(context) { var t1 = new A.RenderBlockSemantics(true, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$blocking(true); } }; A.ExcludeSemantics.prototype = { createRenderObject$1(context) { var t1 = new A.RenderExcludeSemantics(this.excluding, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$excluding(this.excluding); } }; A.IndexedSemantics.prototype = { createRenderObject$1(context) { var t1 = new A.RenderIndexedSemantics(this.index, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$index(0, this.index); } }; A.KeyedSubtree.prototype = { build$1(_, context) { return this.child; } }; A.Builder.prototype = { build$1(_, context) { return this.builder.call$1(context); } }; A.ColoredBox.prototype = { createRenderObject$1(context) { var t1 = new A._RenderColoredBox(this.color, B.HitTestBehavior_1, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { type$._RenderColoredBox._as(renderObject).set$color(0, this.color); } }; A._RenderColoredBox.prototype = { set$color(_, value) { if (J.$eq$(value, this._basic$_color)) return; this._basic$_color = value; this.markNeedsPaint$0(); }, paint$2(context, offset) { var t1, t2, t3, t4, t5, t6, _this = this; if (_this._box$_size.$gt(0, B.Size_0_0)) { t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t6.set$color(0, _this._basic$_color); t1.drawRect$2(0, new A.Rect(t3, t4, t3 + t5, t4 + t2), t6); } t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure.prototype = { call$1(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._lateReadCheck($.RendererBinding__instance.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode; t1.toString; $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["data", t1.super$DiagnosticableTreeMixin$toStringDeep(B.DiagnosticLevel_2, "", "")], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 321 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0.prototype = { call$1(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, data; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._lateReadCheck($.RendererBinding__instance.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.get$debugSemantics(); data = t1 == null ? null : t1.toStringDeep$0(); $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["data", data == null ? "Semantics not collected." : data], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 321 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1.prototype = { call$1(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, data; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._lateReadCheck($.RendererBinding__instance.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.get$debugSemantics(); data = t1 == null ? null : t1.toStringDeep$1$childOrder(B.DebugSemanticsDumpOrder_0); $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["data", data == null ? "Semantics not collected." : data], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 321 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $.debugProfilePaintsEnabled; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3.prototype = { call$1(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0(value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.debugProfilePaintsEnabled !== value) $.debugProfilePaintsEnabled = value; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 391 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $.debugProfileLayoutsEnabled; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5.prototype = { call$1(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure(value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.debugProfileLayoutsEnabled !== value) $.debugProfileLayoutsEnabled = value; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 391 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure.prototype = { call$0() { var t2, result, _this = this, t1 = _this.hitTestResult; if (t1 == null || type$.PointerMoveEvent._is(_this.event)) { t1 = A._lateReadCheck(_this.$this.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode; t1.toString; t2 = _this.event; t2 = t2.get$position(t2); result = A.BoxHitTestResult$(); t1.hitTest$2$position(result, t2); t1 = result; } return t1; }, $signature: 2047 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure.prototype = { call$1(timings) { J.forEach$1$ax(timings, this.$this.get$_profileFramePostEvent()); }, $signature: 417 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.double), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $._timeDilation; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 2031 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0.prototype = { call$1(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure(value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start A.timeDilation(value); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 2019 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure.prototype = { call$1(message) { return this.$this.handleSystemMessage$1(message); }, $signature: 2018 }; A.WidgetsBindingObserver.prototype = { didPopRoute$0() { return A.Future_Future$value(false, type$.bool); }, didPushRoute$1(route) { return A.Future_Future$value(false, type$.bool); }, didPushRouteInformation$1(routeInformation) { var t1 = routeInformation.location; t1.toString; return this.didPushRoute$1(t1); }, didChangeMetrics$0() { }, didChangeTextScaleFactor$0() { }, didChangePlatformBrightness$0() { }, didChangeLocales$1(locales) { }, didChangeAppLifecycleState$1(state) { }, didHaveMemoryPressure$0() { } }; A.WidgetsBinding.prototype = { handleLocaleChanged$0() { this.dispatchLocalesChanged$1($.$get$EnginePlatformDispatcher__instance()._configuration.locales); }, dispatchLocalesChanged$1(locales) { var t1, t2, _i; for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeLocales$1(locales); }, handlePopRoute$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, _i; var $async$handlePopRoute$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.List_List$of($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return A._asyncAwait(t1[_i].didPopRoute$0(), $async$handlePopRoute$0); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for A.SystemNavigator_pop(); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handlePopRoute$0, $async$completer); }, handlePushRoute$1(route) { return this.handlePushRoute$body$WidgetsBinding(route); }, handlePushRoute$body$WidgetsBinding(route) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, _i; var $async$handlePushRoute$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.List_List$of($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return A._asyncAwait(t1[_i].didPushRoute$1(route), $async$handlePushRoute$1); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handlePushRoute$1, $async$completer); }, _handlePushRouteInformation$1(routeArguments) { return this._handlePushRouteInformation$body$WidgetsBinding(routeArguments); }, _handlePushRouteInformation$body$WidgetsBinding(routeArguments) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, t3, _i; var $async$_handlePushRouteInformation$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.List_List$of($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, t3 = J.getInterceptor$asx(routeArguments), _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return A._asyncAwait(t1[_i].didPushRouteInformation$1(new A.RouteInformation(A._asStringS(t3.$index(routeArguments, "location")), t3.$index(routeArguments, "state"))), $async$_handlePushRouteInformation$1); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_handlePushRouteInformation$1, $async$completer); }, _handleNavigationInvocation$1(methodCall) { switch (methodCall.method) { case "popRoute": return this.handlePopRoute$0(); case "pushRoute": return this.handlePushRoute$1(A._asStringS(methodCall.$arguments)); case "pushRouteInformation": return this._handlePushRouteInformation$1(type$.Map_dynamic_dynamic._as(methodCall.$arguments)); } return A.Future_Future$value(null, type$.dynamic); }, _handleBuildScheduled$0() { this.ensureVisualUpdate$0(); }, scheduleAttachRootWidget$1(rootWidget) { A.Timer_Timer(B.Duration_0, new A.WidgetsBinding_scheduleAttachRootWidget_closure(this, rootWidget)); }, $isHitTestTarget: 1, $isSchedulerBinding: 1 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure.prototype = { call$1(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3(parameters) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t2, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.WidgetsBinding__instance; t1 = t1.get$runtimeType(t1).toString$0(0) + " - PROFILE MODE\n"; t2 = $.WidgetsBinding__instance.WidgetsBinding__renderViewElement; if (t2 != null) { t2.toDiagnosticsNode$0(); t1 += "\n"; } else t1 += "\n"; $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["data", t1.charCodeAt(0) == 0 ? t1 : t1], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 321 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0.prototype = { call$1(_) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(_); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["enabled", $async$self.$this.WidgetsBinding__needToReportFirstFrame ? "false" : "true"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 259 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1.prototype = { call$1(_) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(_); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["enabled", ($async$self.$this.WidgetsBinding__firstFrameCompleter.future._state & 30) !== 0 ? "true" : "false"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 259 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2.prototype = { call$1(params) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(params); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(params) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_String), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, className; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start className = A._asStringQ(J.$index$asx(params, "className")); A.throwExpression(A.FlutterError_FlutterError("Cannot instantiate DebugReassembleConfig in profile or release mode.")); $.BindingBase_debugReassembleConfig = new A.DebugReassembleConfig(className); $async$handler = 3; t1 = $async$self.$this; $async$goto = 6; return A._asyncAwait(t1.lockEvents$1(t1.get$performReassemble()), $async$call$1); case 6: // returning from await. $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // uncaught $async$next = [2]; case 4: // finally $async$handler = 2; $.BindingBase_debugReassembleConfig = null; // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally t1 = type$.String; $async$returnValue = A.LinkedHashMap_LinkedHashMap$_literal(["type", "Success"], t1, t1); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 2017 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $.debugProfileBuildsEnabled; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 226 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4.prototype = { call$1(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure(value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.debugProfileBuildsEnabled !== value) $.debugProfileBuildsEnabled = value; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 391 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure.prototype = { call$1(timings) { var t2, t3, t1 = $.$get$_FakeUserTag__defaultTag(); t1.toString; $.$get$_currentTag(); $._currentTag = t1; A.Timeline_instantSync("Rasterized first useful frame", null); A.postEvent("Flutter.FirstFrame", A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1 = $.SchedulerBinding__instance; t1.toString; t2 = this._box_0; t3 = t2.firstFrameCallback; t3.toString; t1.removeTimingsCallback$1(t3); t2.firstFrameCallback = null; this.$this.WidgetsBinding__firstFrameCompleter.complete$0(0); }, $signature: 417 }; A.WidgetsBinding_scheduleAttachRootWidget_closure.prototype = { call$0() { var t3, t4, t1 = this.$this, t2 = t1.WidgetsBinding__renderViewElement; t1.WidgetsBinding__readyToProduceFrames = true; t3 = A._lateReadCheck(t1.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode; t3.toString; t4 = t1.WidgetsBinding__buildOwner; t4.toString; t1.WidgetsBinding__renderViewElement = new A.RenderObjectToWidgetAdapter(this.rootWidget, t3, "[root]", new A.GlobalObjectKey(t3, type$.GlobalObjectKey_State_StatefulWidget), type$.RenderObjectToWidgetAdapter_RenderBox).attachToRenderTree$2(t4, type$.nullable_RenderObjectToWidgetElement_RenderBox._as(t1.WidgetsBinding__renderViewElement)); if (t2 == null) $.SchedulerBinding__instance.ensureVisualUpdate$0(); }, $signature: 0 }; A.RenderObjectToWidgetAdapter.prototype = { createElement$0(_) { return new A.RenderObjectToWidgetElement(this, B._ElementLifecycle_0, this.$ti._eval$1("RenderObjectToWidgetElement<1>")); }, createRenderObject$1(context) { return this.container; }, updateRenderObject$2(context, renderObject) { }, attachToRenderTree$2(owner, element) { var t2, t1 = {}; t1.element = element; if (element == null) { owner.lockState$1(new A.RenderObjectToWidgetAdapter_attachToRenderTree_closure(t1, this, owner)); t2 = t1.element; t2.toString; owner.buildScope$2(t2, new A.RenderObjectToWidgetAdapter_attachToRenderTree_closure0(t1)); } else { element._newWidget = this; element.markNeedsBuild$0(); } t1 = t1.element; t1.toString; return t1; }, toStringShort$0() { return this.debugShortDescription; } }; A.RenderObjectToWidgetAdapter_attachToRenderTree_closure.prototype = { call$0() { var t1 = this.$this, element = A.RenderObjectToWidgetElement$(t1, t1.$ti._precomputed1); this._box_0.element = element; element._owner = this.owner; }, $signature: 0 }; A.RenderObjectToWidgetAdapter_attachToRenderTree_closure0.prototype = { call$0() { var t1 = this._box_0.element; t1.toString; t1.super$RootRenderObjectElement$mount(null, null); t1._rebuild$0(); }, $signature: 0 }; A.RenderObjectToWidgetElement.prototype = { visitChildren$1(visitor) { var t1 = this._child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1(child) { this._child = null; this.super$Element$forgetChild(child); }, mount$2($parent, newSlot) { this.super$RootRenderObjectElement$mount($parent, newSlot); this._rebuild$0(); }, update$1(_, newWidget) { this.super$RenderObjectElement$update(0, newWidget); this._rebuild$0(); }, performRebuild$0() { var _this = this, t1 = _this._newWidget; if (t1 != null) { _this._newWidget = null; _this.super$RenderObjectElement$update(0, _this.$ti._eval$1("RenderObjectToWidgetAdapter<1>")._as(t1)); _this._rebuild$0(); } _this.super$RenderObjectElement$performRebuild(); }, _rebuild$0() { var exception, stack, details, error, t1, t2, exception0, _this = this; try { t1 = _this._child; t2 = _this._widget; t2.toString; _this._child = _this.updateChild$3(t1, _this.$ti._eval$1("RenderObjectToWidgetAdapter<1>")._as(t2).child, B.C_Object); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("attaching to the render tree"); details = new A.FlutterErrorDetails(exception, stack, "widgets library", t1, null, null, false); A.FlutterError_reportError(details); error = A.ErrorWidget__defaultErrorWidgetBuilder(details); _this._child = _this.updateChild$3(null, error, B.C_Object); } }, get$renderObject() { return this.$ti._eval$1("RenderObjectWithChildMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, insertRenderObjectChild$2(child, slot) { var t1 = this.$ti; t1._eval$1("RenderObjectWithChildMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(t1._precomputed1._as(child)); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { this.$ti._eval$1("RenderObjectWithChildMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); } }; A.WidgetsFlutterBinding.prototype = {$isHitTestTarget: 1}; A._WidgetsFlutterBinding_BindingBase_GestureBinding.prototype = { initInstances$0() { this.super$BindingBase$initInstances(); $.GestureBinding__instance = this; var t1 = $.$get$EnginePlatformDispatcher__instance(); t1._onPointerDataPacket = this.get$_handlePointerDataPacket(); t1._onPointerDataPacketZone = $.Zone__current; }, unlocked$0() { this.super$BindingBase$unlocked(); this._flushPointerEventQueue$0(); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding.prototype = { initInstances$0() { var _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$initInstances(); $.SchedulerBinding__instance = _this; _this.addTimingsCallback$1(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure(_this)); }, initServiceExtensions$0() { this.super$BindingBase$initServiceExtensions(); this.registerNumericServiceExtension$3$getter$name$setter(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure(), "timeDilation", new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0()); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding.prototype = { initInstances$0() { var t1, t2, _this = this, _s9_ = "_keyboard", _s16_ = "_keyEventManager"; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initInstances(); $.ServicesBinding__instance = _this; A._lateWriteOnceCheck(_this.ServicesBinding___ServicesBinding__defaultBinaryMessenger, "_defaultBinaryMessenger"); _this.ServicesBinding___ServicesBinding__defaultBinaryMessenger = B.C__DefaultBinaryMessenger; t1 = new A.RestorationManager(A.LinkedHashSet_LinkedHashSet$_empty(type$.RestorationBucket), $.$get$ChangeNotifier__emptyListeners()); B.OptionalMethodChannel_wEo.setMethodCallHandler$1(t1.get$_methodHandler()); _this.ServicesBinding___ServicesBinding__restorationManager = t1; t1 = new A.HardwareKeyboard(A.LinkedHashMap_LinkedHashMap$_empty(type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey), A.LinkedHashSet_LinkedHashSet$_empty(type$.KeyboardLockMode), A._setArrayType([], type$.JSArray_of_bool_Function_KeyEvent)); A._lateWriteOnceCheck(_this.ServicesBinding___ServicesBinding__keyboard, _s9_); _this.ServicesBinding___ServicesBinding__keyboard = t1; t1 = new A.KeyEventManager(A._lateReadCheck(t1, _s9_), $.$get$RawKeyboard_instance(), A._setArrayType([], type$.JSArray_KeyEvent)); A._lateWriteOnceCheck(_this.ServicesBinding___ServicesBinding__keyEventManager, _s16_); _this.ServicesBinding___ServicesBinding__keyEventManager = t1; t2 = $.$get$EnginePlatformDispatcher__instance(); t2._onKeyData = A._lateReadCheck(t1, _s16_).get$handleKeyData(); t2._onKeyDataZone = $.Zone__current; B.BasicMessageChannel_kqo.setMessageHandler$1(A._lateReadCheck(_this.ServicesBinding___ServicesBinding__keyEventManager, _s16_).get$handleRawKeyMessage()); t1 = $.LicenseRegistry__collectors; if (t1 == null) t1 = $.LicenseRegistry__collectors = A._setArrayType([], type$.JSArray_of_Stream_LicenseEntry_Function); t1.push(_this.get$_addLicenses()); B.BasicMessageChannel_MYE.setMessageHandler$1(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure(_this)); B.BasicMessageChannel_5UB.setMessageHandler$1(_this.get$_handleLifecycleMessage()); B.OptionalMethodChannel_0.setMethodCallHandler$1(_this.get$_handlePlatformMessage()); _this.readInitialLifecycleStateFromNativeWindow$0(); }, initServiceExtensions$0() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initServiceExtensions(); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding.prototype = { initInstances$0() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initInstances(); $.PaintingBinding__instance = this; var t1 = type$.Object; this.PaintingBinding___PaintingBinding__imageCache = new A.ImageCache(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._PendingImage), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._CachedImage), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._LiveImage)); }, handleMemoryPressure$0() { this.super$ServicesBinding$handleMemoryPressure(); A._lateReadCheck(this.PaintingBinding___PaintingBinding__imageCache, "_imageCache").clear$0(0); }, handleSystemMessage$1(systemMessage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this; var $async$handleSystemMessage$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.super$ServicesBinding$handleSystemMessage(systemMessage), $async$handleSystemMessage$1); case 3: // returning from await. switch (A._asStringS(J.$index$asx(type$.Map_String_dynamic._as(systemMessage), "type"))) { case "fontsChange": $async$self.PaintingBinding__systemFonts.notifyListeners$0(); break; } // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleSystemMessage$1, $async$completer); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding.prototype = { initInstances$0() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$initInstances(); $.SemanticsBinding__instance = this; this.SemanticsBinding___SemanticsBinding__accessibilityFeatures = $.$get$EnginePlatformDispatcher__instance()._configuration.accessibilityFeatures; } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding.prototype = { initInstances$0() { var t1, t2, t3, t4, _this = this, _s14_ = "_pipelineOwner"; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding$initInstances(); $.RendererBinding__instance = _this; t1 = type$.JSArray_RenderObject; _this.RendererBinding___RendererBinding__pipelineOwner = new A.PipelineOwner(_this.get$ensureVisualUpdate(), _this.get$_handleSemanticsOwnerCreated(), _this.get$_handleSemanticsOwnerDisposed(), A._setArrayType([], t1), A._setArrayType([], t1), A._setArrayType([], t1), A.LinkedHashSet_LinkedHashSet$_empty(type$.RenderObject)); t1 = $.$get$EnginePlatformDispatcher__instance(); t1._onMetricsChanged = _this.get$handleMetricsChanged(); t2 = t1._onMetricsChangedZone = $.Zone__current; t1._onTextScaleFactorChanged = _this.get$handleTextScaleFactorChanged(); t1._onTextScaleFactorChangedZone = t2; t1._onPlatformBrightnessChanged = _this.get$handlePlatformBrightnessChanged(); t1._onPlatformBrightnessChangedZone = t2; t1._onSemanticsEnabledChanged = _this.get$_handleSemanticsEnabledChanged(); t1._onSemanticsEnabledChangedZone = t2; t1._onSemanticsAction = _this.get$_handleSemanticsAction(); t1._onSemanticsActionZone = t2; t2 = new A.RenderView(B.Size_0_0, _this.createViewConfiguration$0(), $.$get$window(), null, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t2.__RenderObject__needsCompositing = true; t2.set$child(null); A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_).set$rootNode(t2); t2 = A._lateReadCheck(_this.RendererBinding___RendererBinding__pipelineOwner, _s14_)._rootNode; t2._relayoutBoundary = t2; t3 = type$.nullable_PipelineOwner; t3._as(A.AbstractNode.prototype.get$owner.call(t2))._nodesNeedingLayout.push(t2); t4 = t2._updateMatricesAndCreateNewRootLayer$0(); t2._layerHandle.set$layer(0, t4); t3._as(A.AbstractNode.prototype.get$owner.call(t2))._nodesNeedingPaint.push(t2); _this.setSemanticsEnabled$1(t1._configuration.semanticsEnabled); _this.SchedulerBinding__persistentCallbacks.push(_this.get$_handlePersistentFrameCallback()); t1 = _this.RendererBinding__mouseTracker; if (t1 != null) { t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } t1 = type$.int; t2 = $.$get$ChangeNotifier__emptyListeners(); _this.RendererBinding__mouseTracker = new A.MouseTracker(new A.MouseCursorManager(B.SystemMouseCursor_basic, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.MouseCursorSession)), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._MouseState), t2); _this.SchedulerBinding__postFrameCallbacks.push(_this.get$_handleWebFirstFrame()); }, initServiceExtensions$0() { var _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initServiceExtensions(); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure(), "debugDumpRenderTree"); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0(), "debugDumpSemanticsTreeInTraversalOrder"); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1(), "debugDumpSemanticsTreeInInverseHitTestOrder"); _this.registerBoolServiceExtension$3$getter$name$setter(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2(), "profileRenderObjectPaints", new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3()); _this.registerBoolServiceExtension$3$getter$name$setter(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4(), "profileRenderObjectLayouts", new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5()); }, dispatchEvent$2(_, $event, hitTestResult) { this.RendererBinding__mouseTracker.updateWithEvent$2($event, new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure(this, hitTestResult, $event)); this.super$GestureBinding$dispatchEvent(0, $event, hitTestResult); }, performReassemble$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$next = [], $async$self = this, t1; var $async$performReassemble$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self.super$BindingBase$performReassemble(), $async$performReassemble$0); case 2: // returning from await. t1 = $.BindingBase_debugReassembleConfig; if ((t1 == null ? null : t1.widgetName) == null) { A.Timeline_startSync("Preparing Hot Reload (layout)", B.Map_9aZ6I, null); try { A._lateReadCheck($async$self.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.reassemble$0(); } finally { A.Timeline_finishSync(); } } $async$self.scheduleWarmUpFrame$0(); $async$goto = 3; return A._asyncAwait($async$self.get$endOfFrame(), $async$performReassemble$0); case 3: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$performReassemble$0, $async$completer); } }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding.prototype = { initServiceExtensions$0() { var _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initServiceExtensions(); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure(), "debugDumpApp"); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(_this), "didSendFirstFrameEvent"); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(_this), "didSendFirstFrameRasterizedEvent"); _this.registerServiceExtension$2$callback$name(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(_this), "fastReassemble"); _this.registerBoolServiceExtension$3$getter$name$setter(new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3(), "profileWidgetBuilds", new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4()); }, handleMetricsChanged$0() { var t1, t2, _i; this.super$RendererBinding$handleMetricsChanged(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeMetrics$0(); }, handleTextScaleFactorChanged$0() { var t1, t2, _i; this.super$RendererBinding$handleTextScaleFactorChanged(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeTextScaleFactor$0(); }, handlePlatformBrightnessChanged$0() { var t1, t2, _i; this.super$RendererBinding$handlePlatformBrightnessChanged(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangePlatformBrightness$0(); }, handleAppLifecycleStateChanged$1(state) { var t1, t2, _i; this.super$SchedulerBinding$handleAppLifecycleStateChanged(state); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeAppLifecycleState$1(state); }, handleMemoryPressure$0() { var t1, t2, _i; this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$handleMemoryPressure(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didHaveMemoryPressure$0(); }, drawFrame$0() { var firstFrameCallback, t2, _this = this, t1 = {}; t1.firstFrameCallback = null; if (_this.WidgetsBinding__needToReportFirstFrame) { firstFrameCallback = new A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure(t1, _this); t1.firstFrameCallback = firstFrameCallback; $.SchedulerBinding__instance.addTimingsCallback$1(firstFrameCallback); } try { t2 = _this.WidgetsBinding__renderViewElement; if (t2 != null) _this.WidgetsBinding__buildOwner.buildScope$1(t2); _this.super$RendererBinding$drawFrame(); _this.WidgetsBinding__buildOwner.finalizeTree$0(); } finally { } if (_this.WidgetsBinding__needToReportFirstFrame) t2 = _this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0; else t2 = false; if (t2) A.Timeline_instantSync("Widgets built first useful frame", null); t2 = _this.WidgetsBinding__needToReportFirstFrame = false; t1 = t1.firstFrameCallback; if (t1 != null) t2 = !(_this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0); if (t2) { _this.WidgetsBinding__needToReportFirstFrame = true; t2 = $.SchedulerBinding__instance; t2.toString; t1.toString; t2.removeTimingsCallback$1(t1); } }, performReassemble$0() { var t1 = this.WidgetsBinding__renderViewElement; if (t1 != null) this.WidgetsBinding__buildOwner.reassemble$2(t1, $.BindingBase_debugReassembleConfig); return this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$performReassemble(); } }; A.DecoratedBox.prototype = { createRenderObject$1(context) { var t1 = new A.RenderDecoratedBox(this.decoration, this.position, A.createLocalImageConfiguration(context, null), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$decoration(0, this.decoration); renderObject.set$configuration(A.createLocalImageConfiguration(context, null)); renderObject.set$position(0, this.position); } }; A.Container.prototype = { get$_paddingIncludingDecoration() { var decorationPadding, t1 = this.decoration; if (t1 == null || t1.get$padding(t1) == null) return this.padding; decorationPadding = t1.get$padding(t1); t1 = this.padding; if (t1 == null) return decorationPadding; decorationPadding.toString; return t1.add$1(0, decorationPadding); }, build$1(_, context) { var t1, effectivePadding, t2, t3, _this = this, _null = null, current = _this.child; if (current == null) { t1 = _this.constraints; if (t1 != null) t1 = !(t1.minWidth >= t1.maxWidth && t1.minHeight >= t1.maxHeight); else t1 = true; } else t1 = false; if (t1) current = A.LimitedBox$(new A.ConstrainedBox(B.BoxConstraints_ALM, _null, _null), 0, 0); else { t1 = _this.alignment; if (t1 != null) current = new A.Align(t1, _null, _null, current, _null); } effectivePadding = _this.get$_paddingIncludingDecoration(); if (effectivePadding != null) current = new A.Padding(effectivePadding, current, _null); t1 = _this.color; if (t1 != null) current = new A.ColoredBox(t1, current, _null); t1 = _this.clipBehavior; if (t1 !== B.Clip_0) { t2 = A.Directionality_maybeOf(context); t3 = _this.decoration; t3.toString; current = A.ClipPath$(current, t1, new A._DecorationClipper(t2 == null ? B.TextDirection_1 : t2, t3, _null)); } t1 = _this.decoration; if (t1 != null) current = A.DecoratedBox$(current, t1, B.DecorationPosition_0); t1 = _this.foregroundDecoration; if (t1 != null) current = A.DecoratedBox$(current, t1, B.DecorationPosition_1); t1 = _this.constraints; if (t1 != null) current = new A.ConstrainedBox(t1, current, _null); t1 = _this.margin; if (t1 != null) current = new A.Padding(t1, current, _null); t1 = _this.transform; if (t1 != null) current = A.Transform$(_this.transformAlignment, current, t1, true); current.toString; return current; } }; A._DecorationClipper.prototype = { getClip$1(size) { return this.decoration.getClipPath$2(new A.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldReclip$1(oldClipper) { return !J.$eq$(oldClipper.decoration, this.decoration) || oldClipper.textDirection !== this.textDirection; } }; A.DefaultTextEditingShortcuts.prototype = {}; A.DisplayFeatureSubScreen.prototype = { build$1(_, context) { var mediaQuery = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, parentSize = mediaQuery.size, t1 = parentSize._dx, t2 = parentSize._dy, t3 = A.DisplayFeatureSubScreen__fallbackAnchorPoint(context), resolvedAnchorPoint = A.DisplayFeatureSubScreen__capOffset(t3, parentSize), closestSubScreen = A.DisplayFeatureSubScreen__closestToAnchorPoint(A.DisplayFeatureSubScreen_subScreensInBounds(new A.Rect(0, 0, 0 + t1, 0 + t2), A.DisplayFeatureSubScreen_avoidBounds(mediaQuery)), resolvedAnchorPoint); return new A.Padding(new A.EdgeInsets(closestSubScreen.left, closestSubScreen.top, t1 - closestSubScreen.right, t2 - closestSubScreen.bottom), new A.MediaQuery(mediaQuery.removeDisplayFeatures$1(closestSubScreen), this.child, null), null); } }; A.DisplayFeatureSubScreen_avoidBounds_closure.prototype = { call$1(d) { var t1; if (!d.get$bounds(d).get$shortestSide().$gt(0, 0)) { d.get$state(d); t1 = false; } else t1 = true; return t1; }, $signature: 783 }; A.DisplayFeatureSubScreen_avoidBounds_closure0.prototype = { call$1(d) { return d.get$bounds(d); }, $signature: 2016 }; A.DisposableBuildContext.prototype = { get$context(_) { var t1 = this._disposable_build_context$_state; if (t1 == null) return null; t1 = t1._framework$_element; t1.toString; return t1; }, dispose$0(_) { this._disposable_build_context$_state = null; } }; A.DraggableScrollableSheet.prototype = { createState$0() { return new A._DraggableScrollableSheetState(B._StateLifecycle_0); }, builder$2(arg0, arg1) { return this.builder.call$2(arg0, arg1); } }; A.DraggableScrollableNotification.prototype = { debugFillDescription$1(description) { var _this = this; _this.super$_DraggableScrollableNotification_Notification_ViewportNotificationMixin$debugFillDescription(description); description.push("minExtent: " + A.S(_this.minExtent) + ", extent: " + A.S(_this.extent) + ", maxExtent: " + _this.maxExtent + ", initialExtent: " + A.S(_this.initialExtent)); } }; A._DraggableSheetExtent.prototype = { addPixelDelta$2(delta, context) { var t1, _this = this; _this._cancelActivity = null; _this.hasDragged = true; t1 = _this.availablePixels; if (t1 === 0) return; _this.updateSize$2(_this._draggable_scrollable_sheet$_currentSize._change_notifier$_value + delta / t1 * _this.maxSize, context); }, updateSize$2(newSize, context) { var _this = this, t1 = _this._draggable_scrollable_sheet$_currentSize, t2 = _this.minSize, t3 = _this.maxSize; t1.set$value(0, B.JSNumber_methods.clamp$2(newSize, t2, t3)); t1 = t1._change_notifier$_value; if (context != null) context.dispatchNotification$1(new A.DraggableScrollableNotification(t1, t2, t3, _this.initialSize, context, 0)); }, dispose$0(_) { this._draggable_scrollable_sheet$_currentSize.removeListener$1(0, this.onSizeChanged); } }; A._DraggableScrollableSheetState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget.minChildSize; t2 = _this._impliedSnapSizes$0(); t2 = A._DraggableSheetExtent$(null, null, _this._widget.initialChildSize, 1, t1, _this.get$_setExtent(), false, t2); _this.___DraggableScrollableSheetState__extent = t2; _this.___DraggableScrollableSheetState__scrollController = new A._DraggableScrollableSheetScrollController(A._lateReadCheck(t2, "_extent"), 0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); _this._widget.toString; }, _impliedSnapSizes$0() { var t1, index = 0; while (true) { t1 = this._widget; t1.toString; if (!false) break; null.$index(0, index); ++index; } t1 = A._setArrayType([t1.minChildSize, 1], type$.JSArray_double); return t1; }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._replaceExtent$0(); }, didChangeDependencies$0() { var t1, t2; this.super$State$didChangeDependencies(); t1 = this._framework$_element; t1.toString; if (A._InheritedResetNotifier_shouldReset(t1)) { t1 = A._lateReadCheck(this.___DraggableScrollableSheetState__scrollController, "_scrollController"); t1.extent.hasDragged = false; t2 = t1.get$position(t1)._pixels; t2.toString; if (t2 !== 0) t1.animateTo$3$curve$duration(0, B.C__Linear, B.Duration_1000); t2 = t1.extent; t1 = type$._DraggableScrollableSheetScrollPosition._as(A.ScrollController.prototype.get$position.call(t1, t1)).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; t2.updateSize$2(t2.initialSize, t1); } }, _setExtent$0() { this.setState$1(new A._DraggableScrollableSheetState__setExtent_closure()); }, build$1(_, context) { return new A.LayoutBuilder(new A._DraggableScrollableSheetState_build_closure(this), null); }, dispose$0(_) { var t1, _this = this; _this._widget.toString; A._lateReadCheck(_this.___DraggableScrollableSheetState__scrollController, "_scrollController").dispose$0(0); t1 = A._lateReadCheck(_this.___DraggableScrollableSheetState__extent, "_extent"); t1._draggable_scrollable_sheet$_currentSize.removeListener$1(0, t1.onSizeChanged); _this.super$State$dispose(0); }, _replaceExtent$0() { var t1, t2, t3, t4, t5, _this = this, _s7_ = "_extent"; A._lateReadCheck(_this.___DraggableScrollableSheetState__extent, _s7_); t1 = A._lateReadCheck(_this.___DraggableScrollableSheetState__extent, _s7_); t1._draggable_scrollable_sheet$_currentSize.removeListener$1(0, t1.onSizeChanged); t1 = A._lateReadCheck(_this.___DraggableScrollableSheetState__extent, _s7_); t2 = _this._widget.minChildSize; t3 = _this._impliedSnapSizes$0(); t4 = _this._widget.initialChildSize; t5 = t1.hasDragged ? J.clamp$2$n(t1._draggable_scrollable_sheet$_currentSize._change_notifier$_value, t2, 1) : t4; _this.___DraggableScrollableSheetState__extent = A._DraggableSheetExtent$(new A.ValueNotifier(t5, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_double), t1.hasDragged, t4, 1, t2, _this.get$_setExtent(), false, t3); A._lateReadCheck(_this.___DraggableScrollableSheetState__scrollController, "_scrollController").extent = A._lateReadCheck(_this.___DraggableScrollableSheetState__extent, _s7_); _this._widget.toString; } }; A._DraggableScrollableSheetState__setExtent_closure.prototype = { call$0() { }, $signature: 0 }; A._DraggableScrollableSheetState_build_closure.prototype = { call$2(context, constraints) { var t3, sheet, t1 = this.$this, t2 = A._lateReadCheck(t1.___DraggableScrollableSheetState__extent, "_extent"); t1._widget.toString; B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth); t2.availablePixels = B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight); t2 = A._lateReadCheck(t1.___DraggableScrollableSheetState__extent, "_extent")._draggable_scrollable_sheet$_currentSize._change_notifier$_value; t3 = t1._widget; t3.toString; sheet = A.FractionallySizedBox$(B.Alignment_0_1, t3.builder$2(context, A._lateReadCheck(t1.___DraggableScrollableSheetState__scrollController, "_scrollController")), t2, null); t1._widget.toString; return sheet; }, $signature: 276 }; A._DraggableScrollableSheetScrollController.prototype = { createScrollPosition$3(physics, context, oldPosition) { var t1 = $.$get$ChangeNotifier__emptyListeners(); t1 = new A._DraggableScrollableSheetScrollPosition(new A._DraggableScrollableSheetScrollController_createScrollPosition_closure(this), B.ScrollDirection_0, physics, context, true, null, new A.ValueNotifier(false, t1, type$.ValueNotifier_bool), t1); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, null, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, null, 0, true, oldPosition, physics); return t1; }, debugFillDescription$1(description) { this.super$ScrollController$debugFillDescription(description); description.push("extent: " + this.extent.toString$0(0)); }, get$position(_) { return type$._DraggableScrollableSheetScrollPosition._as(A.ScrollController.prototype.get$position.call(this, this)); } }; A._DraggableScrollableSheetScrollController_createScrollPosition_closure.prototype = { call$0() { return this.$this.extent; }, $signature: 2014 }; A._DraggableScrollableSheetScrollPosition.prototype = { beginActivity$1(newActivity) { var t1 = this._ballisticCancelCallback; if (t1 != null) t1.call$0(); this.super$ScrollPositionWithSingleContext$beginActivity(newActivity); }, applyContentDimensions$2(minScrollSize, maxScrollSize) { var t1 = this.getExtent, t2 = t1.call$0(); t2 = t2.minSize >= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value ? 0 : 1; t1 = t1.call$0(); t1 = t1.maxSize <= t1._draggable_scrollable_sheet$_currentSize._change_notifier$_value ? 0 : 1; return this.super$ScrollPosition$applyContentDimensions(minScrollSize - t2, maxScrollSize + t1); }, applyUserOffset$1(delta) { var t2, _this = this, t1 = _this._pixels; t1.toString; if (!(t1 > 0)) { t1 = _this.getExtent; t2 = t1.call$0(); if (!(t2.minSize >= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value)) { t2 = t1.call$0(); t2 = t2.maxSize <= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value; } else t2 = true; if (t2) { t2 = t1.call$0(); if (!(t2.minSize >= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value && delta < 0)) { t1 = t1.call$0(); t1 = t1.maxSize <= t1._draggable_scrollable_sheet$_currentSize._change_notifier$_value && delta > 0; } else t1 = true; } else t1 = true; } else t1 = false; if (t1) { t1 = _this.getExtent.call$0(); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t2.toString; t1.addPixelDelta$2(-delta, t2); } else _this.super$ScrollPositionWithSingleContext$applyUserOffset(delta); }, dispose$0(_) { var t1 = this._ballisticCancelCallback; if (t1 != null) t1.call$0(); this.super$ScrollPositionWithSingleContext$dispose(0); }, goBallistic$1(velocity) { var t2, simulation, t3, ballisticController, _this = this, t1 = {}; t1.velocity = velocity; if (velocity === 0) { _this.getExtent.call$0().toString; t2 = true; } else t2 = false; if (!t2) { if (velocity < 0) { t2 = _this._pixels; t2.toString; t2 = t2 > 0; } else t2 = false; if (!t2) if (velocity > 0) { t2 = _this.getExtent.call$0(); t2 = t2.maxSize <= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value; } else t2 = false; else t2 = true; } else t2 = true; if (t2) { _this.super$ScrollPositionWithSingleContext$goBallistic(velocity); return; } t2 = _this._dragCancelCallback; if (t2 != null) t2.call$0(); _this._dragCancelCallback = null; simulation = A._Cell$named("simulation"); t2 = _this.getExtent; t2.call$0().toString; t3 = t2.call$0(); simulation.set$finalLocalValue(A.ClampingScrollSimulation$(t3._draggable_scrollable_sheet$_currentSize._change_notifier$_value / t3.maxSize * t3.availablePixels, _this.physics.get$tolerance(), velocity)); ballisticController = A.AnimationController$unbounded("_DraggableScrollableSheetPosition", 0, _this.context); _this._ballisticCancelCallback = ballisticController.get$stop(ballisticController); t2 = t2.call$0(); t1.lastPosition = t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value / t2.maxSize * t2.availablePixels; ballisticController.didRegisterListener$0(); t2 = ballisticController.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(new A._DraggableScrollableSheetScrollPosition_goBallistic__tick(t1, _this, ballisticController)); ballisticController.animateWith$1(simulation._readLocal$0()).whenCompleteOrCancel$1(new A._DraggableScrollableSheetScrollPosition_goBallistic_closure(_this, ballisticController)); }, drag$2(details, dragCancelCallback) { this._dragCancelCallback = dragCancelCallback; return this.super$ScrollPositionWithSingleContext$drag(details, dragCancelCallback); } }; A._DraggableScrollableSheetScrollPosition_goBallistic__tick.prototype = { call$0() { var t5, t6, t7, t8, velocity, t1 = this.ballisticController, t2 = A._lateReadCheck(t1.__AnimationController__value, "_value"), t3 = this._box_0, t4 = t3.lastPosition; t3.lastPosition = A._lateReadCheck(t1.__AnimationController__value, "_value"); t5 = this.$this; t6 = t5.getExtent; t7 = t6.call$0(); t8 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t5.context._gestureDetectorKey); t8.toString; t7.addPixelDelta$2(t2 - t4, t8); if (t3.velocity > 0) { t2 = t6.call$0(); t2 = t2.maxSize <= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value; } else t2 = false; if (!t2) if (t3.velocity < 0) { t2 = t6.call$0(); t2 = t2.minSize >= t2._draggable_scrollable_sheet$_currentSize._change_notifier$_value; } else t2 = false; else t2 = true; if (t2) { velocity = t1.get$velocity() + t5.physics.get$tolerance().velocity * J.get$sign$in(t1.get$velocity()); t3.velocity = velocity; t5.super$ScrollPositionWithSingleContext$goBallistic(velocity); t1.stop$0(0); } else if (t1.get$status(t1) === B.AnimationStatus_3) t5.super$ScrollPositionWithSingleContext$goBallistic(0); }, $signature: 0 }; A._DraggableScrollableSheetScrollPosition_goBallistic_closure.prototype = { call$0() { this.$this._ballisticCancelCallback = null; this.ballisticController.dispose$0(0); }, $signature: 0 }; A._DraggableScrollableNotification_Notification_ViewportNotificationMixin.prototype = { debugFillDescription$1(description) { var t1, t2; this.super$Notification$debugFillDescription(description); t1 = this.ViewportNotificationMixin__depth; t2 = t1 === 0 ? "local" : "remote"; description.push("depth: " + t1 + " (" + t2 + ")"); } }; A.DualTransitionBuilder.prototype = { createState$0() { return new A._DualTransitionBuilderState(A.ProxyAnimation$(null), A.ProxyAnimation$(null), B._StateLifecycle_0); }, forwardBuilder$3(arg0, arg1, arg2) { return this.forwardBuilder.call$3(arg0, arg1, arg2); }, reverseBuilder$3(arg0, arg1, arg2) { return this.reverseBuilder.call$3(arg0, arg1, arg2); } }; A._DualTransitionBuilderState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.animation; _this.___DualTransitionBuilderState__effectiveAnimationStatus = t1.get$status(t1); _this._widget.animation.addStatusListener$1(_this.get$_animationListener()); _this._updateAnimations$0(); }, _animationListener$1(animationStatus) { var _this = this, _s25_ = "_effectiveAnimationStatus", t1 = A._lateReadCheck(_this.___DualTransitionBuilderState__effectiveAnimationStatus, _s25_), t2 = _this._calculateEffectiveAnimationStatus$2$current$lastEffective(animationStatus, A._lateReadCheck(_this.___DualTransitionBuilderState__effectiveAnimationStatus, _s25_)); _this.___DualTransitionBuilderState__effectiveAnimationStatus = t2; if (t1 != A._lateReadCheck(t2, _s25_)) _this._updateAnimations$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.animation; if (t1 != _this._widget.animation) { t2 = _this.get$_animationListener(); t1.removeStatusListener$1(t2); _this._widget.animation.addStatusListener$1(t2); t2 = _this._widget.animation; _this._animationListener$1(t2.get$status(t2)); } }, _calculateEffectiveAnimationStatus$2$current$lastEffective(current, lastEffective) { var _s80_ = string$.x60null_c; switch (current) { case B.AnimationStatus_0: case B.AnimationStatus_3: return current; case B.AnimationStatus_1: switch (lastEffective) { case B.AnimationStatus_0: case B.AnimationStatus_3: case B.AnimationStatus_1: return current; case B.AnimationStatus_2: return lastEffective; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case B.AnimationStatus_2: switch (lastEffective) { case B.AnimationStatus_0: case B.AnimationStatus_3: case B.AnimationStatus_2: return current; case B.AnimationStatus_1: return lastEffective; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, _updateAnimations$0() { var _this = this; switch (A._lateReadCheck(_this.___DualTransitionBuilderState__effectiveAnimationStatus, "_effectiveAnimationStatus")) { case B.AnimationStatus_0: case B.AnimationStatus_1: _this._forwardAnimation.set$parent(0, _this._widget.animation); _this._reverseAnimation.set$parent(0, B.C__AlwaysDismissedAnimation); break; case B.AnimationStatus_2: case B.AnimationStatus_3: _this._forwardAnimation.set$parent(0, B.C__AlwaysCompleteAnimation); _this._reverseAnimation.set$parent(0, new A.ReverseAnimation(_this._widget.animation, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), 0)); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, dispose$0(_) { this._widget.animation.removeStatusListener$1(this.get$_animationListener()); this.super$State$dispose(0); }, build$1(_, context) { var t1 = this._widget; return t1.forwardBuilder$3(context, this._forwardAnimation, t1.reverseBuilder$3(context, this._reverseAnimation, t1.child)); } }; A.TextEditingController.prototype = { set$text(_, newText) { this.super$ValueNotifier$value(0, this._change_notifier$_value.copyWith$3$composing$selection$text(B.TextRange_m1_m1, B.TextSelection_ke5, newText)); }, buildTextSpan$3$context$style$withComposing(context, style, withComposing) { var t3, composingStyle, _null = null, t1 = this._change_notifier$_value, t2 = t1.composing; if (t2.get$isValid()) { t3 = t2.end; t1 = t3 >= t2.start && t3 <= t1.text.length; } else t1 = false; if (!t1 || !withComposing) return A.TextSpan$(_null, _null, style, this._change_notifier$_value.text); composingStyle = style.merge$1(B.TextStyle_3WR); t1 = this._change_notifier$_value; t2 = t1.composing; t1 = t1.text; t3 = t2.start; t2 = t2.end; return A.TextSpan$(A._setArrayType([A.TextSpan$(_null, _null, _null, J.substring$2$s(t1, 0, t3)), A.TextSpan$(_null, _null, composingStyle, B.JSString_methods.substring$2(t1, t3, t2)), A.TextSpan$(_null, _null, _null, B.JSString_methods.substring$1(t1, t2))], type$.JSArray_TextSpan), _null, style, _null); }, set$selection(newSelection) { var t1, t2, t3, newComposing, _this = this; if (!_this.isSelectionWithinTextBounds$1(newSelection)) throw A.wrapException(A.FlutterError_FlutterError("invalid text selection: " + newSelection.toString$0(0))); t1 = newSelection.start; t2 = newSelection.end; if (t1 == t2) { t3 = _this._change_notifier$_value.composing; t1 = t1 >= t3.start && t2 <= t3.end; } else t1 = false; newComposing = t1 ? _this._change_notifier$_value.composing : B.TextRange_m1_m1; _this.super$ValueNotifier$value(0, _this._change_notifier$_value.copyWith$2$composing$selection(newComposing, newSelection)); }, isSelectionWithinTextBounds$1(selection) { var t1 = this._change_notifier$_value.text.length; return selection.start <= t1 && selection.end <= t1; } }; A.ToolbarOptions.prototype = {}; A.EditableText.prototype = { get$strutStyle(_) { var t2, t1 = this._editable_text$_strutStyle; if (t1 == null) { t1 = this.style; t2 = t1.get$fontFamilyFallback(); return new A.StrutStyle(t1.fontFamily, t2, t1.fontSize, t1.height, t1.fontWeight, t1.fontStyle, null, true, t1.debugLabel); } return t1.inheritFromTextStyle$1(this.style); }, createState$0() { var _null = null; return new A.EditableTextState(new A.ValueNotifier(true, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_bool), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.LayerLink(), new A.LayerLink(), new A.LayerLink(), B.Size_0_0, _null, _null, _null, B._StateLifecycle_0); } }; A.EditableTextState.prototype = { get$_scrollController() { this._widget.toString; var t1 = this._internalScrollController; if (t1 == null) { t1 = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); this._internalScrollController = t1; } return t1; }, get$currentAutofillScope() { return this._currentAutofillScope; }, get$wantKeepAlive() { return this._widget.focusNode.get$hasFocus(); }, get$cutEnabled() { var t1 = this._widget; return t1.toolbarOptions.cut && !t1.readOnly && !t1.obscureText; }, get$_textEditingValueforTextLayoutMetrics() { var editableWidget, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._editableKey); if (t1 == null) editableWidget = null; else { t1 = t1._widget; t1.toString; editableWidget = t1; } if (!(editableWidget instanceof A._Editable)) throw A.wrapException(A.StateError$("_Editable must be mounted.")); return editableWidget.value; }, copySelection$1(cause) { var _this = this, t1 = _this._widget, t2 = t1.controller._change_notifier$_value, selection = t2.selection, t3 = selection.start, t4 = selection.end; if (t3 == t4 || t1.obscureText) return; A.Clipboard_setData(new A.ClipboardData(J.substring$2$s(t2.text, t3, t4))); if (cause === B.SelectionChangedCause_5) { _this.bringIntoView$1(_this._widget.controller._change_notifier$_value.selection.get$extent()); _this.hideToolbar$1(false); switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: break; case B.TargetPlatform_4: case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = _this._widget.controller._change_notifier$_value; _this.userUpdateTextEditingValue$2(new A.TextEditingValue(t1.text, A.TextSelection$collapsed(B.TextAffinity_1, t1.selection.end), B.TextRange_m1_m1), B.SelectionChangedCause_5); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, cutSelection$1(cause) { var selection, text, t2, _this = this, t1 = _this._widget; if (t1.readOnly || t1.obscureText) return; t1 = t1.controller._change_notifier$_value; selection = t1.selection; text = t1.text; t1 = selection.start; t2 = selection.end; if (t1 == t2) return; A.Clipboard_setData(new A.ClipboardData(J.substring$2$s(text, t1, t2))); _this._replaceText$1(new A.ReplaceTextIntent(_this._widget.controller._change_notifier$_value, "", selection, cause)); if (cause === B.SelectionChangedCause_5) { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState_cutSelection_closure(_this)); _this.hideToolbar$0(); } }, pasteText$1(cause) { return this.pasteText$body$EditableTextState(cause); }, pasteText$body$EditableTextState(cause) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, selection, data, lastSelectionIndex, collapsedTextEditingValue, t1; var $async$pasteText$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget; if (t1.readOnly) { // goto return $async$goto = 1; break; } selection = t1.controller._change_notifier$_value.selection; if (!selection.get$isValid()) { // goto return $async$goto = 1; break; } $async$goto = 3; return A._asyncAwait(A.Clipboard_getData("text/plain"), $async$pasteText$1); case 3: // returning from await. data = $async$result; if (data == null) { // goto return $async$goto = 1; break; } lastSelectionIndex = Math.max(A.checkNum(selection.baseOffset), A.checkNum(selection.extentOffset)); collapsedTextEditingValue = $async$self._widget.controller._change_notifier$_value.copyWith$1$selection(A.TextSelection$collapsed(B.TextAffinity_1, lastSelectionIndex)); t1 = data.text; t1.toString; $async$self.userUpdateTextEditingValue$2(collapsedTextEditingValue.replaced$2(selection, t1), cause); if (cause === B.SelectionChangedCause_5) { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState_pasteText_closure($async$self)); $async$self.hideToolbar$0(); } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$pasteText$1, $async$completer); }, initState$0() { var t1, t2, _this = this; _this.super$_EditableTextState_State_AutomaticKeepAliveClientMixin$initState(); t1 = A.AnimationController$(null, B.Duration_250000, null, 1, null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_onCursorColorTick()); _this._cursorBlinkOpacityController = t1; _this._widget.controller.addListener$1(0, _this.get$_didChangeTextEditingValue()); _this._widget.focusNode.addListener$1(0, _this.get$_editable_text$_handleFocusChanged()); _this.get$_scrollController().addListener$1(0, _this.get$_updateSelectionOverlayForScroll()); _this._cursorVisibilityNotifier.set$value(0, _this._widget.showCursor); }, didChangeDependencies$0() { var t1, newAutofillGroup, t2, newTickerEnabled, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; newAutofillGroup = A.AutofillGroup_of(t1); t1 = _this._currentAutofillScope; if (t1 != newAutofillGroup) { if (t1 != null) { t2 = A.Primitives_objectHashCode(_this); t1._autofill$_clients.remove$1(0, "EditableText-" + t2); } _this._currentAutofillScope = newAutofillGroup; if (newAutofillGroup != null) { t1 = _this._widget.autofillClient; newAutofillGroup.register$1(0, t1 == null ? _this : t1); } } if (!_this._didAutoFocus && _this._widget.autofocus) { _this._didAutoFocus = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState_didChangeDependencies_closure(_this)); } t1 = _this._framework$_element; t1.toString; newTickerEnabled = A.TickerMode_of(t1); if (_this._tickersEnabled !== newTickerEnabled) { _this._tickersEnabled = newTickerEnabled; if (newTickerEnabled && _this._cursorActive) _this._startCursorTimer$0(); else if (!newTickerEnabled && _this._cursorTimer != null) { _this._cursorTimer.cancel$0(0); _this._cursorTimer = null; } } }, didUpdateWidget$1(oldWidget) { var t1, t2, style, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.controller; t2 = oldWidget.controller; if (t1 != t2) { t1 = _this.get$_didChangeTextEditingValue(); t2.removeListener$1(0, t1); _this._widget.controller.addListener$1(0, t1); _this._updateRemoteEditingValueIfNeeded$0(); } if (!_this._widget.controller._change_notifier$_value.selection.$eq(0, t2._change_notifier$_value.selection)) { t1 = _this._selectionOverlay; if (t1 != null) t1.update$1(0, _this._widget.controller._change_notifier$_value); } t1 = _this._selectionOverlay; if (t1 != null) t1.set$handlesVisible(_this._widget.showSelectionHandles); t1 = _this._widget.autofillClient; t2 = oldWidget.autofillClient; if (t1 != t2) { t1 = _this._currentAutofillScope; if (t1 != null) { if (t2 == null) t2 = null; else { t2 = t2.editableTextKey.get$currentState(); t2.toString; t2 = "EditableText-" + A.Primitives_objectHashCode(t2); } if (t2 == null) t2 = "EditableText-" + A.Primitives_objectHashCode(_this); t1._autofill$_clients.remove$1(0, t2); } t1 = _this._currentAutofillScope; if (t1 != null) { t2 = _this._widget.autofillClient; t1.register$1(0, t2 == null ? _this : t2); } } t1 = _this._widget.focusNode; t2 = oldWidget.focusNode; if (t1 !== t2) { t1 = _this.get$_editable_text$_handleFocusChanged(); t2.removeListener$1(0, t1); _this._widget.focusNode.addListener$1(0, t1); _this.updateKeepAlive$0(); } t1 = _this._widget; t1.toString; if (oldWidget.readOnly && t1.focusNode.get$hasFocus()) _this._openInputConnection$0(); t1 = _this.get$_hasInputConnection(); if (t1) { t1 = oldWidget.readOnly; t2 = _this._widget; if (t1 !== t2.readOnly) { _this._textInputConnection.toString; t1 = t2.autofillClient; t1 = (t1 == null ? _this : t1).get$textInputConfiguration(); A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.updateConfig", t1.toJson$0(), type$.void); } } if (!_this._widget.style.$eq(0, oldWidget.style)) { style = _this._widget.style; if (_this.get$_hasInputConnection()) { t1 = _this._textInputConnection; t1.toString; t2 = _this.get$_editable_text$_textDirection(); t1.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t2); } } t1 = _this._widget; if (t1.enableInteractiveSelection) { t2 = t1.toolbarOptions.paste; if (t2 && !t1.readOnly) { if (t1.selectionControls == null) t1 = null; else t1 = t2 && !t1.readOnly; t1 = t1 === true; } else t1 = false; } else t1 = false; t1; }, dispose$0(_) { var t2, _this = this, t1 = _this._internalScrollController; if (t1 != null) t1.dispose$0(0); t1 = _this._currentAutofillScope; if (t1 != null) { t2 = A.Primitives_objectHashCode(_this); t1._autofill$_clients.remove$1(0, "EditableText-" + t2); } _this._widget.controller.removeListener$1(0, _this.get$_didChangeTextEditingValue()); t1 = _this._floatingCursorResetController; if (t1 != null) t1.dispose$0(0); _this._floatingCursorResetController = null; _this._closeInputConnectionIfNeeded$0(); t1 = _this._cursorTimer; if (t1 != null) t1.cancel$0(0); _this._cursorTimer = null; t1 = _this._cursorBlinkOpacityController; if (t1 != null) t1.dispose$0(0); _this._cursorBlinkOpacityController = null; t1 = _this._selectionOverlay; if (t1 != null) t1.dispose$0(0); _this._selectionOverlay = null; _this._widget.focusNode.removeListener$1(0, _this.get$_editable_text$_handleFocusChanged()); B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$dispose(0); }, get$currentTextEditingValue() { return this._widget.controller._change_notifier$_value; }, updateEditingValue$1(value) { var t2, t3, revealObscuredInput, _this = this, t1 = _this._widget; if (t1.readOnly) value = t1.controller._change_notifier$_value.copyWith$1$selection(value.selection); _this._lastKnownRemoteTextEditingValue = value; if (value.$eq(0, _this._widget.controller._change_notifier$_value)) return; t1 = value.text; t2 = _this._widget.controller._change_notifier$_value; if (t1 == t2.text && value.composing.$eq(0, t2.composing)) { t1 = _this._textInputConnection == null ? null : $.$get$TextInput__instance()._scribbleInProgress; t1 = t1 === true ? B.SelectionChangedCause_7 : B.SelectionChangedCause_4; _this._editable_text$_handleSelectionChanged$2(value.selection, t1); } else { _this.hideToolbar$0(); t2 = _this._currentPromptRectRange = null; if (_this.get$_hasInputConnection()) { t3 = _this._widget; if (t3.obscureText) { $.WidgetsBinding__instance.toString; $.$get$EnginePlatformDispatcher__instance().toString; t1 = t1.length; t3 = t3.controller._change_notifier$_value; t1 = t1 === t3.text.length + 1; revealObscuredInput = t1; } else revealObscuredInput = false; } else revealObscuredInput = false; _this._obscureShowCharTicksPending = revealObscuredInput ? 3 : 0; _this._obscureLatestCharIndex = revealObscuredInput ? _this._widget.controller._change_notifier$_value.selection.baseOffset : t2; _this._formatAndSetValue$2(value, B.SelectionChangedCause_4); } _this._scheduleShowCaretOnScreen$1$withAnimation(true); if (_this.get$_hasInputConnection()) { _this._stopCursorTimer$1$resetCharTicks(false); _this._startCursorTimer$0(); } }, performAction$1(action) { var _this = this; switch (action.index) { case 12: if (_this._widget.maxLines === 1) _this._finalizeEditing$2$shouldUnfocus(action, true); break; case 2: case 3: case 6: case 7: case 4: case 5: _this._finalizeEditing$2$shouldUnfocus(action, true); break; case 8: case 11: case 9: case 0: case 10: case 1: _this._finalizeEditing$2$shouldUnfocus(action, false); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, performPrivateCommand$2(action, data) { this._widget.onAppPrivateCommand.call$2(action, data); }, updateFloatingCursor$1(point) { var t2, t3, t4, currentTextPosition, t5, centeredPoint, rawCursorOffset, t6, bottomBound, rightBound, deltaPosition, currentX, currentY, adjustedX, adjustedY, t7, _this = this, _null = null, t1 = _this._floatingCursorResetController; if (t1 == null) { t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_onFloatingCursorResetTick()); _this._floatingCursorResetController = t1; } t2 = point.state; switch (t2.index) { case 0: t3 = t1._ticker; if (t3 != null && t3._ticker$_future != null) { t1.stop$0(0); _this._onFloatingCursorResetTick$0(); } _this._pointOffsetOrigin = point.offset; t1 = _this._editableKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t3.toString; t4 = type$.RenderEditable; currentTextPosition = new A.TextPosition(t4._as(t3)._selection.baseOffset, B.TextAffinity_1); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t3.toString; t3 = t4._as(t3).getLocalRectForCaret$1(currentTextPosition); _this._startCaretRect = t3; t3 = t3.get$center(); t5 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t5.toString; _this._lastBoundedOffset = t3.$sub(0, new A.Offset(0, t4._as(t5)._editable$_textPainter.get$preferredLineHeight() / 2)); _this._lastTextPosition = currentTextPosition; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t4._as(t1); t4 = _this._lastBoundedOffset; t4.toString; t5 = _this._lastTextPosition; t5.toString; t1.setFloatingCursor$3(t2, t4, t5); break; case 1: t1 = _this._pointOffsetOrigin; t1.toString; centeredPoint = point.offset.$sub(0, t1); t1 = _this._startCaretRect.get$center().$add(0, centeredPoint); t3 = _this._editableKey; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t4.toString; t5 = type$.RenderEditable; rawCursorOffset = t1.$sub(0, new A.Offset(0, t5._as(t4)._editable$_textPainter.get$preferredLineHeight() / 2)); t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t4.toString; t5._as(t4); t1 = t4._editable$_textPainter; t6 = t1._paragraph; t6 = t6.get$height(t6); t6.toString; bottomBound = Math.ceil(t6) - t1.get$preferredLineHeight() + 5; rightBound = t1.get$width(t1) + 4; t1 = t4._previousOffset; deltaPosition = t1 != null ? rawCursorOffset.$sub(0, t1) : B.Offset_0_0; if (t4._resetOriginOnLeft && deltaPosition._dx > 0) { t4._relativeOrigin = new A.Offset(rawCursorOffset._dx - -4, t4._relativeOrigin._dy); t4._resetOriginOnLeft = false; } else if (t4._resetOriginOnRight && deltaPosition._dx < 0) { t4._relativeOrigin = new A.Offset(rawCursorOffset._dx - rightBound, t4._relativeOrigin._dy); t4._resetOriginOnRight = false; } if (t4._resetOriginOnTop && deltaPosition._dy > 0) { t4._relativeOrigin = new A.Offset(t4._relativeOrigin._dx, rawCursorOffset._dy - -4); t4._resetOriginOnTop = false; } else if (t4._resetOriginOnBottom && deltaPosition._dy < 0) { t4._relativeOrigin = new A.Offset(t4._relativeOrigin._dx, rawCursorOffset._dy - bottomBound); t4._resetOriginOnBottom = false; } t1 = t4._relativeOrigin; currentX = rawCursorOffset._dx - t1._dx; currentY = rawCursorOffset._dy - t1._dy; adjustedX = Math.min(Math.max(currentX, -4), rightBound); adjustedY = Math.min(Math.max(currentY, -4), bottomBound); if (currentX < -4 && deltaPosition._dx < 0) t4._resetOriginOnLeft = true; else if (currentX > rightBound && deltaPosition._dx > 0) t4._resetOriginOnRight = true; if (currentY < -4 && deltaPosition._dy < 0) t4._resetOriginOnTop = true; else if (currentY > bottomBound && deltaPosition._dy > 0) t4._resetOriginOnBottom = true; t4._previousOffset = rawCursorOffset; _this._lastBoundedOffset = new A.Offset(adjustedX, adjustedY); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t1.toString; t5._as(t1); t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t4.toString; t5._as(t4); t6 = _this._lastBoundedOffset; t6.toString; t7 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t7.toString; t7 = t6.$add(0, new A.Offset(0, t5._as(t7)._editable$_textPainter.get$preferredLineHeight() / 2)); _this._lastTextPosition = t1.getPositionForPoint$1(A.MatrixUtils_transformPoint(t4.getTransformTo$1(0, _null), t7)); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t3.toString; t5._as(t3); t5 = _this._lastBoundedOffset; t5.toString; t7 = _this._lastTextPosition; t7.toString; t3.setFloatingCursor$3(t2, t5, t7); break; case 2: if (_this._lastTextPosition != null && _this._lastBoundedOffset != null) { t1.set$value(0, 0); t1 = _this._floatingCursorResetController; t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, B.C__DecelerateCurve, B.Duration_125000); } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _onFloatingCursorResetTick$0() { var t3, t4, finalPosition, t5, _this = this, t1 = _this._editableKey, t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t4 = _this._lastTextPosition; t4.toString; t4 = t2.getLocalRectForCaret$1(t4).get$centerLeft(); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; finalPosition = t4.$sub(0, new A.Offset(0, t3._as(t2)._editable$_textPainter.get$preferredLineHeight() / 2)); t2 = _this._floatingCursorResetController; if (t2.get$status(t2) === B.AnimationStatus_3) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3._as(t2); t4 = _this._lastTextPosition; t4.toString; t2.setFloatingCursor$3(B.FloatingCursorDragState_2, finalPosition, t4); t2 = _this._lastTextPosition.offset; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; if (t2 != t3._as(t1)._selection.baseOffset) _this._editable_text$_handleSelectionChanged$2(A.TextSelection$collapsed(B.TextAffinity_1, _this._lastTextPosition.offset), B.SelectionChangedCause_3); _this._lastBoundedOffset = _this._pointOffsetOrigin = _this._lastTextPosition = _this._startCaretRect = null; } else { t2 = A._lateReadCheck(_this._floatingCursorResetController.__AnimationController__value, "_value"); t4 = _this._lastBoundedOffset; t5 = A.lerpDouble(t4._dx, finalPosition._dx, t2); t5.toString; t4 = A.lerpDouble(t4._dy, finalPosition._dy, t2); t4.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t3._as(t1); t3 = _this._lastTextPosition; t3.toString; t1.setFloatingCursor$4$resetLerpValue(B.FloatingCursorDragState_1, new A.Offset(t5, t4), t3, t2); } }, _finalizeEditing$2$shouldUnfocus(action, shouldUnfocus) { var exception, stack, onSubmitted, exception0, stack0, exception1, _this = this, _null = null, t1 = _this._widget, t2 = t1.onEditingComplete; if (t2 != null) try { t2.call$0(); } catch (exception1) { exception = A.unwrapException(exception1); stack = A.getTraceFromException(exception1); t1 = A.ErrorDescription$("while calling onEditingComplete for " + action.toString$0(0)); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "widgets", t1, _null, _null, false)); } else { t1 = t1.controller; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$composing(B.TextRange_m1_m1)); if (shouldUnfocus) { switch (action.index) { case 0: case 1: case 2: case 3: case 4: case 5: case 8: case 9: case 10: case 11: case 12: _this._widget.focusNode.unfocus$0(); break; case 6: t1 = _this._widget.focusNode; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); break; case 7: t1 = _this._widget.focusNode; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } shouldUnfocus = true; } } t1 = _this._widget; onSubmitted = t1.onSubmitted; if (onSubmitted == null) return; try { onSubmitted.call$1(t1.controller._change_notifier$_value.text); } catch (exception) { exception0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); t1 = A.ErrorDescription$("while calling onSubmitted for " + action.toString$0(0)); A.FlutterError_reportError(new A.FlutterErrorDetails(exception0, stack0, "widgets", t1, _null, _null, false)); } if (shouldUnfocus) _this._scheduleRestartConnection$0(); }, _updateRemoteEditingValueIfNeeded$0() { var t1, _this = this; if (_this._batchEditDepth > 0 || !_this.get$_hasInputConnection()) return; t1 = _this._widget.controller._change_notifier$_value; if (J.$eq$(t1, _this._lastKnownRemoteTextEditingValue)) return; _this._textInputConnection.toString; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), type$.void); _this._lastKnownRemoteTextEditingValue = t1; }, _getOffsetToRevealCaret$1(rect) { var t1, t2, t3, additionalOffset, unitOffset, t4, t5, t6, t7, t8, expandedRect, targetOffset, _this = this; if (!B.JSArray_methods.get$single(_this.get$_scrollController()._positions).physics.get$allowImplicitScrolling()) { t1 = _this.get$_scrollController(); t1 = t1.get$position(t1)._pixels; t1.toString; return new A.RevealedOffset(t1, rect); } t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._box$_size; t2.toString; if (_this._widget.maxLines === 1) { t1 = rect.right; t3 = rect.left; t2 = t2._dx; additionalOffset = t1 - t3 >= t2 ? t2 / 2 - rect.get$center()._dx : B.JSInt_methods.clamp$2(0, t1 - t2, t3); unitOffset = B.Offset_1_0; } else { t4 = rect.get$center(); t5 = rect.right; t6 = rect.left; t7 = rect.bottom; t8 = rect.top; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; expandedRect = A.Rect$fromCenter(t4, Math.max(t7 - t8, A.checkNum(t3._as(t1)._editable$_textPainter.get$preferredLineHeight())), t5 - t6); t1 = expandedRect.bottom; t3 = expandedRect.top; t2 = t2._dy; additionalOffset = t1 - t3 >= t2 ? t2 / 2 - expandedRect.get$center()._dy : B.JSInt_methods.clamp$2(0, t1 - t2, t3); unitOffset = B.Offset_0_1; } t1 = _this.get$_scrollController(); t1 = t1.get$position(t1)._pixels; t1.toString; t2 = B.JSArray_methods.get$single(_this.get$_scrollController()._positions)._minScrollExtent; t2.toString; t3 = B.JSArray_methods.get$single(_this.get$_scrollController()._positions)._maxScrollExtent; t3.toString; targetOffset = B.JSNumber_methods.clamp$2(additionalOffset + t1, t2, t3); t3 = _this.get$_scrollController(); t3 = t3.get$position(t3)._pixels; t3.toString; return new A.RevealedOffset(targetOffset, rect.shift$1(unitOffset.$mul(0, t3 - targetOffset))); }, get$_hasInputConnection() { var t1 = this._textInputConnection; t1 = t1 == null ? null : $.$get$TextInput__instance()._currentConnection === t1; return t1 === true; }, _openInputConnection$0() { var t1, t2, t3, connection, style, t4, _this = this, _s8_ = "_channel", _s14_ = "TextInput.show"; if (!_this.get$_hasInputConnection()) { t1 = _this._widget; t2 = t1.controller._change_notifier$_value; t1 = t1.autofillClient; t1 = (t1 == null ? _this : t1).get$textInputConfiguration().autofillConfiguration.enabled && _this._currentAutofillScope != null; t3 = _this._widget; if (t1) { t1 = _this._currentAutofillScope; t1.toString; t3 = t3.autofillClient; t1 = t1.attach$2(_this, (t3 == null ? _this : t3).get$textInputConfiguration()); } else { t1 = t3.autofillClient; t1 = (t1 == null ? _this : t1).get$textInputConfiguration(); connection = A.TextInputConnection$_(_this); $.$get$TextInput__instance()._attach$2(connection, t1); t1 = connection; } _this._textInputConnection = t1; _this._updateSizeAndTransform$0(); _this._updateComposingRectIfNeeded$0(); _this._updateCaretRectIfNeeded$0(); style = _this._widget.style; t1 = _this._textInputConnection; t1.toString; t3 = _this.get$_editable_text$_textDirection(); t1.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t3); t3 = $.$get$TextInput__instance(); t1 = type$.void; A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$2("TextInput.setEditingState", t2.toJSON$0(), t1); A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1(_s14_, t1); t4 = _this._widget.autofillClient; if ((t4 == null ? _this : t4).get$textInputConfiguration().autofillConfiguration.enabled) { _this._textInputConnection.toString; A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1("TextInput.requestAutofill", t1); } _this._lastKnownRemoteTextEditingValue = t2; } else { _this._textInputConnection.toString; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, _s8_).invokeMethod$1$1(_s14_, type$.void); } }, _closeInputConnectionIfNeeded$0() { var t1, t2, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._textInputConnection; t1.toString; t2 = $.$get$TextInput__instance(); if (t2._currentConnection === t1) t2._clearClient$0(); _this._lastKnownRemoteTextEditingValue = _this._textInputConnection = null; } }, _scheduleRestartConnection$0() { if (this._restartConnectionScheduled) return; this._restartConnectionScheduled = true; A.scheduleMicrotask(this.get$_restartConnectionIfNeeded()); }, _restartConnectionIfNeeded$0() { var t1, t2, currentAutofillScope, newConnection, connection, style, t3, _this = this, _s8_ = "_channel"; _this._restartConnectionScheduled = false; if (_this.get$_hasInputConnection()) t1 = false; else t1 = true; if (t1) return; t1 = _this._textInputConnection; t1.toString; t2 = $.$get$TextInput__instance(); if (t2._currentConnection === t1) t2._clearClient$0(); _this._lastKnownRemoteTextEditingValue = _this._textInputConnection = null; t1 = _this._widget.autofillClient; currentAutofillScope = (t1 == null ? _this : t1).get$textInputConfiguration().autofillConfiguration.enabled ? _this._currentAutofillScope : null; newConnection = currentAutofillScope == null ? null : currentAutofillScope.attach$2(_this, _this.get$textInputConfiguration()); if (newConnection == null) { t1 = _this._widget.autofillClient; t1 = (t1 == null ? _this : t1).get$textInputConfiguration(); connection = A.TextInputConnection$_(_this); t2._attach$2(connection, t1); newConnection = connection; } _this._textInputConnection = newConnection; style = _this._widget.style; t1 = type$.void; A._lateReadCheck(t2.__TextInput__channel, _s8_).invokeMethod$1$1("TextInput.show", t1); t3 = _this.get$_editable_text$_textDirection(); newConnection.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t3); t3 = _this._widget.controller._change_notifier$_value; A._lateReadCheck(t2.__TextInput__channel, _s8_).invokeMethod$1$2("TextInput.setEditingState", t3.toJSON$0(), t1); _this._lastKnownRemoteTextEditingValue = _this._widget.controller._change_notifier$_value; }, connectionClosed$0() { var _this = this; if (_this.get$_hasInputConnection()) { _this._textInputConnection.toString; _this._lastKnownRemoteTextEditingValue = _this._textInputConnection = $.$get$TextInput__instance()._currentConnection = null; _this._finalizeEditing$2$shouldUnfocus(B.TextInputAction_2, true); } }, requestKeyboard$0() { if (this._widget.focusNode.get$hasFocus()) this._openInputConnection$0(); else this._widget.focusNode.requestFocus$0(); }, _updateOrDisposeSelectionOverlayIfNeeded$0() { var t1, t2, _this = this; if (_this._selectionOverlay != null) { t1 = _this._widget.focusNode.get$hasFocus(); t2 = _this._selectionOverlay; if (t1) { t2.toString; t2.update$1(0, _this._widget.controller._change_notifier$_value); } else { t2.dispose$0(0); _this._selectionOverlay = null; } } }, _updateSelectionOverlayForScroll$0() { var t1 = this._selectionOverlay; if (t1 != null) t1._updateSelectionOverlay$0(); }, _editable_text$_handleSelectionChanged$2(selection, cause) { var exception, stack, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception0, _this = this, _s17_ = "_selectionOverlay"; if (!_this._widget.controller.isSelectionWithinTextBounds$1(selection)) return; _this._widget.controller.set$selection(selection); switch (cause) { case null: case B.SelectionChangedCause_1: case B.SelectionChangedCause_6: case B.SelectionChangedCause_3: case B.SelectionChangedCause_2: case B.SelectionChangedCause_7: case B.SelectionChangedCause_0: case B.SelectionChangedCause_5: _this.requestKeyboard$0(); break; case B.SelectionChangedCause_4: if (_this._widget.focusNode.get$hasFocus()) _this.requestKeyboard$0(); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this._widget; if (t1.selectionControls == null) { t1 = _this._selectionOverlay; if (t1 != null) t1.dispose$0(0); _this._selectionOverlay = null; } else { t2 = _this._selectionOverlay; t3 = t1.controller; if (t2 == null) { t2 = _this._framework$_element; t2.toString; t3 = t3._change_notifier$_value; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._editableKey).get$renderObject(); t4.toString; type$.RenderEditable._as(t4); t5 = _this._widget; t6 = t5.selectionControls; t7 = t5.dragStartBehavior; t5 = t5.onSelectionHandleTapped; t8 = $.$get$ChangeNotifier__emptyListeners(); t9 = type$.ValueNotifier_bool; t10 = new A.ValueNotifier(false, t8, t9); t11 = new A.ValueNotifier(false, t8, t9); t9 = new A.ValueNotifier(false, t8, t9); t3 = new A.TextSelectionOverlay(t4, t6, _this, t3, t10, t11, t9); t8 = t3.get$_updateTextSelectionOverlayVisibilities(); t4._selectionStartInViewport.addListener$1(0, t8); t4._selectionEndInViewport.addListener$1(0, t8); t3._updateTextSelectionOverlayVisibilities$0(); t4 = t4._lastSecondaryTapDownPosition; t2.findRootAncestorStateOfType$1$0(type$.OverlayState); A._lateWriteOnceCheck(t3.__TextSelectionOverlay__selectionOverlay, _s17_); t3.__TextSelectionOverlay__selectionOverlay = new A.SelectionOverlay(t2, B.TextSelectionHandleType_2, 0, t10, t3.get$_handleSelectionStartHandleDragStart(), t3.get$_handleSelectionStartHandleDragUpdate(), B.TextSelectionHandleType_2, 0, t11, t3.get$_handleSelectionEndHandleDragStart(), t3.get$_handleSelectionEndHandleDragUpdate(), t9, B.List_empty9, t1, _this._toolbarLayerLink, _this._startHandleLayerLink, _this._endHandleLayerLink, t6, _this, t7, t5, null, t4); _this._selectionOverlay = t3; } else t2.update$1(0, t3._change_notifier$_value); t1 = _this._selectionOverlay; t1.toString; t1.set$handlesVisible(_this._widget.showSelectionHandles); t1 = _this._selectionOverlay; t1._updateSelectionOverlay$0(); A._lateReadCheck(t1.__TextSelectionOverlay__selectionOverlay, _s17_).showHandles$0(); } try { _this._widget.onSelectionChanged.call$2(selection, cause); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("while calling onSelectionChanged for " + A.S(cause)); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "widgets", t1, null, null, false)); } if (_this._cursorTimer != null) { _this._stopCursorTimer$1$resetCharTicks(false); _this._startCursorTimer$0(); } }, _handleCaretChanged$1(caretRect) { this._currentCaretRect = caretRect; }, _scheduleShowCaretOnScreen$1$withAnimation(withAnimation) { if (this._showCaretOnScreenScheduled) return; this._showCaretOnScreenScheduled = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState__scheduleShowCaretOnScreen_closure(this, withAnimation)); }, didChangeMetrics$0() { var t2, _this = this, _s20_ = "_lastBottomViewInset", t1 = A._lateReadCheck(_this.__EditableTextState__lastBottomViewInset, _s20_); $.WidgetsBinding__instance.toString; t2 = $.$get$window(); if (t1 !== t2._viewInsets.bottom) { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState_didChangeMetrics_closure(_this)); t1 = A._lateReadCheck(_this.__EditableTextState__lastBottomViewInset, _s20_); $.WidgetsBinding__instance.toString; if (t1 < t2._viewInsets.bottom) _this._scheduleShowCaretOnScreen$1$withAnimation(false); } $.WidgetsBinding__instance.toString; _this.__EditableTextState__lastBottomViewInset = t2._viewInsets.bottom; }, _formatAndSetValue$3$userInteraction(value, cause, userInteraction) { var exception, stack, exception0, stack0, t1, t2, textChanged, value0, exception1, t3, _this = this, _null = null; value = value; t1 = _this._widget.controller._change_notifier$_value; if (t1.text == value.text) { t2 = t1.composing; if (t2.start != t2.end) { t2 = value.composing; t2 = t2.start == t2.end; textChanged = t2; } else textChanged = false; } else textChanged = true; t1 = t1.selection.$eq(0, value.selection); if (textChanged) try { t2 = _this._widget.inputFormatters; value0 = t2 == null ? _null : B.JSArray_methods.fold$1$2(t2, value, new A.EditableTextState__formatAndSetValue_closure(_this), type$.TextEditingValue); value = value0 == null ? value : value0; } catch (exception1) { exception = A.unwrapException(exception1); stack = A.getTraceFromException(exception1); t2 = A.ErrorDescription$("while applying input formatters"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "widgets", t2, _null, _null, false)); } ++_this._batchEditDepth; t2 = value; t3 = _this._widget.controller; t3.toString; t3.super$ValueNotifier$value(0, t2); if (t1) if (userInteraction) t1 = cause === B.SelectionChangedCause_2 || cause === B.SelectionChangedCause_4; else t1 = false; else t1 = true; if (t1) _this._editable_text$_handleSelectionChanged$2(_this._widget.controller._change_notifier$_value.selection, cause); if (textChanged) try { t1 = _this._widget; t2 = t1.onChanged; if (t2 != null) t2.call$1(t1.controller._change_notifier$_value.text); } catch (exception) { exception0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); t1 = A.ErrorDescription$("while calling onChanged"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception0, stack0, "widgets", t1, _null, _null, false)); } --_this._batchEditDepth; _this._updateRemoteEditingValueIfNeeded$0(); }, _formatAndSetValue$2(value, cause) { return this._formatAndSetValue$3$userInteraction(value, cause, false); }, _onCursorColorTick$0() { var t2, t3, _this = this, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = _this._widget.cursorColor; t3 = A._lateReadCheck(_this._cursorBlinkOpacityController.__AnimationController__value, "_value"); t2.toString; t2 = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t3), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); t1.get$_caretPainter().set$caretColor(t2); t1 = _this._widget.showCursor && A._lateReadCheck(_this._cursorBlinkOpacityController.__AnimationController__value, "_value") > 0; _this._cursorVisibilityNotifier.set$value(0, t1); }, _cursorTick$1(timer) { var targetOpacity, t2, _this = this, t1 = !_this._targetCursorVisibility; _this._targetCursorVisibility = t1; targetOpacity = t1 ? 1 : 0; t1 = _this._widget.cursorOpacityAnimates; t2 = _this._cursorBlinkOpacityController; if (t1) { t2._direction = B._AnimationDirection_0; t2._animateToInternal$3$curve$duration(targetOpacity, B.Cubic_xDo0, null); } else t2.set$value(0, targetOpacity); if (_this._obscureShowCharTicksPending > 0) _this.setState$1(new A.EditableTextState__cursorTick_closure(_this)); }, _cursorWaitForStart$1(timer) { var t1 = this._cursorTimer; if (t1 != null) t1.cancel$0(0); this._cursorTimer = A.Timer_Timer$periodic(B.Duration_500000, this.get$_cursorTick()); }, _startCursorTimer$0() { var _this = this; _this._cursorActive = true; if (!_this._tickersEnabled) return; _this._targetCursorVisibility = true; _this._cursorBlinkOpacityController.set$value(0, 1); if (_this._widget.cursorOpacityAnimates) _this._cursorTimer = A.Timer_Timer$periodic(B.Duration_150000, _this.get$_cursorWaitForStart()); else _this._cursorTimer = A.Timer_Timer$periodic(B.Duration_500000, _this.get$_cursorTick()); }, _stopCursorTimer$1$resetCharTicks(resetCharTicks) { var t1, _this = this; _this._cursorActive = false; t1 = _this._cursorTimer; if (t1 != null) t1.cancel$0(0); _this._cursorTimer = null; _this._targetCursorVisibility = false; _this._cursorBlinkOpacityController.set$value(0, 0); if (resetCharTicks) _this._obscureShowCharTicksPending = 0; if (_this._widget.cursorOpacityAnimates) { _this._cursorBlinkOpacityController.stop$0(0); _this._cursorBlinkOpacityController.set$value(0, 0); } }, _stopCursorTimer$0() { return this._stopCursorTimer$1$resetCharTicks(true); }, _startOrStopCursorTimerIfNeeded$0() { var t1, _this = this; if (_this._cursorTimer == null) if (_this._widget.focusNode.get$hasFocus()) { t1 = _this._widget.controller._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; else t1 = false; if (t1) _this._startCursorTimer$0(); else { if (_this._cursorActive) if (_this._widget.focusNode.get$hasFocus()) { t1 = _this._widget.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = true; else t1 = false; if (t1) _this._stopCursorTimer$0(); } }, _didChangeTextEditingValue$0() { var _this = this; _this._updateRemoteEditingValueIfNeeded$0(); _this._startOrStopCursorTimerIfNeeded$0(); _this._updateOrDisposeSelectionOverlayIfNeeded$0(); _this.setState$1(new A.EditableTextState__didChangeTextEditingValue_closure()); _this.get$_adjacentLineAction().stopCurrentVerticalRunIfSelectionChanges$0(); }, _editable_text$_handleFocusChanged$0() { var t1, t2, _this = this; if (_this._widget.focusNode.get$hasFocus() && _this._widget.focusNode.consumeKeyboardToken$0()) _this._openInputConnection$0(); else if (!_this._widget.focusNode.get$hasFocus()) { _this._closeInputConnectionIfNeeded$0(); t1 = _this._widget.controller; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$composing(B.TextRange_m1_m1)); } _this._startOrStopCursorTimerIfNeeded$0(); _this._updateOrDisposeSelectionOverlayIfNeeded$0(); t1 = _this._widget.focusNode.get$hasFocus(); t2 = $.WidgetsBinding__instance; if (t1) { t2.WidgetsBinding__observers.push(_this); $.WidgetsBinding__instance.toString; _this.__EditableTextState__lastBottomViewInset = $.$get$window()._viewInsets.bottom; if (!_this._widget.readOnly) _this._scheduleShowCaretOnScreen$1$withAnimation(true); if (!_this._widget.controller._change_notifier$_value.selection.get$isValid()) _this._editable_text$_handleSelectionChanged$2(A.TextSelection$collapsed(B.TextAffinity_1, _this._widget.controller._change_notifier$_value.text.length), null); _this._cachedText = ""; _this._cachedFirstRect = null; _this._editable_text$_cachedSize = B.Size_0_0; _this._cachedPlaceholder = -1; } else { B.JSArray_methods.remove$1(t2.WidgetsBinding__observers, _this); _this.setState$1(new A.EditableTextState__handleFocusChanged_closure(_this)); } _this.updateKeepAlive$0(); }, _updateSelectionRects$1$force(force) { var t2, t3, t4, text, firstSelectionBoxes, firstRect, scrollDirection, t5, t6, t7, t8, placeholderChanged, rects, _this = this, t1 = {}; _this._widget.toString; if (A.defaultTargetPlatform() !== B.TargetPlatform_2) return; $.WidgetsBinding__instance.toString; if ($.$get$window().get$physicalSize().get$shortestSide() < 1488) return; t2 = _this._editableKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t3.toString; t4 = type$.RenderEditable; t3 = t4._as(t3)._editable$_textPainter._text_painter$_text; text = t3 == null ? null : t3.toPlainText$1$includeSemanticsLabels(false); if (text == null) text = ""; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t3.toString; firstSelectionBoxes = t4._as(t3).getBoxesForSelection$1(B.TextSelection_3Ex); firstRect = firstSelectionBoxes.length !== 0 ? B.JSArray_methods.get$first(firstSelectionBoxes) : null; scrollDirection = B.JSArray_methods.get$single(_this.get$_scrollController()._positions)._userScrollDirection; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t2.toString; t2 = t4._as(t2)._box$_size; t2.toString; t4 = _this._cachedText; t3 = J.$eq$(_this._cachedTextStyle, _this._widget.style); t5 = J.$eq$(_this._cachedFirstRect, firstRect); t6 = J.$eq$(_this._editable_text$_cachedSize, t2); t7 = _this._cachedPlaceholder; t8 = _this._placeholderLocation; placeholderChanged = t7 !== t8; if (scrollDirection === B.ScrollDirection_0) t3 = force || text !== t4 || !t3 || !t5 || !t6 || placeholderChanged; else t3 = false; if (t3) { _this._cachedText = text; _this._cachedFirstRect = firstRect; _this._cachedTextStyle = _this._widget.style; _this._editable_text$_cachedSize = t2; _this._cachedPlaceholder = t8; t1.belowRenderEditableBottom = false; t2 = text.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(text); t1 = A.List_List$generate(t2.get$length(t2), new A.EditableTextState__updateSelectionRects_closure(t1, _this), true, type$.nullable_SelectionRect); t2 = A._arrayInstanceType(t1); t3 = t2._eval$1("MappedIterable<1,SelectionRect>"); rects = A.List_List$of(new A.MappedIterable(new A.WhereIterable(t1, new A.EditableTextState__updateSelectionRects_closure0(_this), t2._eval$1("WhereIterable<1>")), new A.EditableTextState__updateSelectionRects_closure1(), t3), true, t3._eval$1("Iterable.E")); _this._textInputConnection.setSelectionRects$1(rects); } }, _updateSelectionRects$0() { return this._updateSelectionRects$1$force(false); }, _updateSizeAndTransform$0() { var t1, t2, t3, transform, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._box$_size; t2.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; transform = t3._as(t1).getTransformTo$1(0, null); t1 = _this._textInputConnection; if (!t2.$eq(0, t1._cachedSize) || !transform.$eq(0, t1._cachedTransform)) { t1._cachedSize = t2; t1._cachedTransform = transform; t1 = $.$get$TextInput__instance(); t2 = A.LinkedHashMap_LinkedHashMap$_literal(["width", t2._dx, "height", t2._dy, "transform", transform._m4storage], type$.String, type$.dynamic); A._lateReadCheck(t1.__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setEditableSizeAndTransform", t2, type$.void); } _this._updateSelectionRects$0(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState__updateSizeAndTransform_closure(_this)); } else if (_this._placeholderLocation !== -1) _this.removeTextPlaceholder$0(); }, _updateComposingRectIfNeeded$0() { var t1, t2, t3, composingRect, offset, _this = this, composingRange = _this._widget.controller._change_notifier$_value.composing; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; composingRect = t3._as(t2).getRectForComposingRange$1(composingRange); if (composingRect == null) { offset = composingRange.get$isValid() ? composingRange.start : 0; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; composingRect = t3._as(t1).getLocalRectForCaret$1(new A.TextPosition(offset, B.TextAffinity_1)); } _this._textInputConnection.setComposingRect$1(composingRect); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState__updateComposingRectIfNeeded_closure(_this)); } }, _updateCaretRectIfNeeded$0() { var t1, t2, t3, caretRect, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; if (t3._as(t2)._selection.get$isValid()) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t2 = t3._as(t2)._selection; t2 = t2.start == t2.end; } else t2 = false; if (t2) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t2 = t3._as(t2)._selection; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; caretRect = t3._as(t1).getLocalRectForCaret$1(new A.TextPosition(t2.baseOffset, B.TextAffinity_1)); _this._textInputConnection.setCaretRect$1(caretRect); } $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.EditableTextState__updateCaretRectIfNeeded_closure(_this)); } }, get$_editable_text$_textDirection() { this._widget.toString; var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return t1.textDirection; }, userUpdateTextEditingValue$2(value, cause) { var t1 = this._widget, t2 = t1.readOnly; t1 = t1.controller; if (t2 ? !t1._change_notifier$_value.selection.$eq(0, value.selection) : !J.$eq$(t1._change_notifier$_value, value)) this._scheduleShowCaretOnScreen$1$withAnimation(true); this._formatAndSetValue$3$userInteraction(value, cause, true); }, bringIntoView$1(position) { var t3, targetOffset, t1 = this._editableKey, t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; targetOffset = this._getOffsetToRevealCaret$1(t3._as(t2).getLocalRectForCaret$1(position)); this.get$_scrollController().jumpTo$1(targetOffset.offset); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t3._as(t1).showOnScreen$1$rect(targetOffset.rect); }, showToolbar$0() { return false; }, hideToolbar$1(hideHandles) { var t1, _s17_ = "_selectionOverlay"; if (hideHandles) { t1 = this._selectionOverlay; if (t1 != null) A._lateReadCheck(t1.__TextSelectionOverlay__selectionOverlay, _s17_).hide$0(); } else { t1 = this._selectionOverlay; t1 = t1 == null ? null : A._lateReadCheck(t1.__TextSelectionOverlay__selectionOverlay, _s17_)._toolbar != null; if (t1 === true) { t1 = this._selectionOverlay; if (t1 != null) A._lateReadCheck(t1.__TextSelectionOverlay__selectionOverlay, _s17_).hideToolbar$0(); } } }, hideToolbar$0() { return this.hideToolbar$1(true); }, toggleToolbar$0() { if (A._lateReadCheck(this._selectionOverlay.__TextSelectionOverlay__selectionOverlay, "_selectionOverlay")._toolbar != null) this.hideToolbar$0(); else this.showToolbar$0(); }, insertTextPlaceholder$1(size) { var t1 = this._widget; if (!t1.controller._change_notifier$_value.selection.get$isValid()) return; this.setState$1(new A.EditableTextState_insertTextPlaceholder_closure(this)); }, removeTextPlaceholder$0() { this._widget.toString; this.setState$1(new A.EditableTextState_removeTextPlaceholder_closure(this)); }, get$autofillId() { return "EditableText-" + A.Primitives_objectHashCode(this); }, get$textInputConfiguration() { var autofillHints, autofillConfiguration, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, t1 = _this._widget.autofillHints; if (t1 == null) autofillHints = null; else autofillHints = J.JSArray_JSArray$markFixed(t1.slice(0), A._arrayInstanceType(t1)._precomputed1); autofillConfiguration = autofillHints != null ? new A.AutofillConfiguration(true, "EditableText-" + A.Primitives_objectHashCode(_this), autofillHints, _this._widget.controller._change_notifier$_value, null) : B.AutofillConfiguration_lYx; t1 = _this._widget; t2 = t1.keyboardType; t3 = t1.readOnly; t4 = t1.obscureText; t5 = t1.autocorrect; t6 = t1.smartDashesType; t7 = t1.smartQuotesType; if (t1.enableInteractiveSelection) t8 = !t3 || !t4; else t8 = false; t1 = t1.textInputAction; if (t1 == null) t1 = t2.$eq(0, B.TextInputType_1_null_null) ? B.TextInputAction_12 : B.TextInputAction_2; t9 = _this._widget; t10 = t9.textCapitalization; return A.TextInputConfiguration$(null, t5, autofillConfiguration, false, true, t8, true, t1, t2, t9.keyboardAppearance, t4, t3, t6, t7, t10); }, autofill$1(value) { return this.updateEditingValue$1(value); }, showAutocorrectionPromptRect$2(start, end) { this.setState$1(new A.EditableTextState_showAutocorrectionPromptRect_closure(this, start, end)); }, _semanticsOnCopy$1(controls) { var t1 = this._widget; if (t1.enableInteractiveSelection) if (t1.toolbarOptions.copy && !t1.obscureText) if (t1.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else { t1 = this._widget; if (t1.toolbarOptions.copy && !t1.obscureText) { t1 = t1.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = false; } t1 = t1 === true; } else t1 = false; else t1 = false; else t1 = false; return t1 ? new A.EditableTextState__semanticsOnCopy_closure(this, controls) : null; }, _semanticsOnCut$1(controls) { var t1, _this = this; if (_this._widget.enableInteractiveSelection) if (_this.get$cutEnabled()) if (_this._widget.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else if (_this.get$cutEnabled()) { t1 = _this._widget.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = false; t1 = t1 === true; } else t1 = false; else t1 = false; else t1 = false; return t1 ? new A.EditableTextState__semanticsOnCut_closure(_this, controls) : null; }, _semanticsOnPaste$1(controls) { var t1 = this._widget; if (t1.enableInteractiveSelection) if (t1.toolbarOptions.paste && !t1.readOnly) if (t1.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else { t1 = this._widget; t1 = t1.toolbarOptions.paste && !t1.readOnly; } if (t1 === true) t1 = true; else t1 = false; } else t1 = false; else t1 = false; else t1 = false; return t1 ? new A.EditableTextState__semanticsOnPaste_closure(this, controls) : null; }, _characterBoundary$1(intent) { var atomicTextBoundary, t1 = this._widget, t2 = t1.obscureText; t1 = t1.controller; atomicTextBoundary = t2 ? new A._CodeUnitBoundary(t1._change_notifier$_value) : new A._CharacterBoundary(t1._change_notifier$_value); return new A._CollapsedSelectionBoundary(atomicTextBoundary, intent.forward); }, _nextWordBoundary$1(intent) { var atomicTextBoundary, boundary, textEditingValue, t1 = this._widget; if (t1.obscureText) { t1 = t1.controller._change_notifier$_value; atomicTextBoundary = new A._CodeUnitBoundary(t1); boundary = new A._DocumentBoundary(t1); } else { textEditingValue = this.get$_textEditingValueforTextLayoutMetrics(); atomicTextBoundary = new A._CharacterBoundary(textEditingValue); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._editableKey).get$renderObject(); t1.toString; boundary = new A._ExpandedTextBoundary(new A._WhitespaceBoundary(textEditingValue), new A._WordBoundary(type$.RenderEditable._as(t1), textEditingValue)); } t1 = intent.forward; return new A._CollapsedSelectionBoundary(t1 ? new A._MixedBoundary(atomicTextBoundary, boundary) : new A._MixedBoundary(boundary, atomicTextBoundary), t1); }, _linebreak$1(intent) { var atomicTextBoundary, boundary, textEditingValue, t1 = this._widget; if (t1.obscureText) { t1 = t1.controller._change_notifier$_value; atomicTextBoundary = new A._CodeUnitBoundary(t1); boundary = new A._DocumentBoundary(t1); } else { textEditingValue = this.get$_textEditingValueforTextLayoutMetrics(); atomicTextBoundary = new A._CharacterBoundary(textEditingValue); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._editableKey).get$renderObject(); t1.toString; boundary = new A._LineBreak(type$.RenderEditable._as(t1), textEditingValue); } return intent.forward ? new A._MixedBoundary(new A._CollapsedSelectionBoundary(atomicTextBoundary, true), boundary) : new A._MixedBoundary(boundary, new A._CollapsedSelectionBoundary(atomicTextBoundary, false)); }, _documentBoundary$1(intent) { return new A._DocumentBoundary(this._widget.controller._change_notifier$_value); }, _replaceText$1(intent) { var t1 = this._widget.controller._change_notifier$_value, newValue = intent.currentTextEditingValue.replaced$2(intent.replacementRange, intent.replacementText); this.userUpdateTextEditingValue$2(newValue, intent.cause); if (newValue.$eq(0, t1)) this._didChangeTextEditingValue$0(); }, _scrollToDocumentBoundary$1(intent) { if (intent.forward) this.bringIntoView$1(new A.TextPosition(this._widget.controller._change_notifier$_value.text.length, B.TextAffinity_1)); else this.bringIntoView$1(B.TextPosition_0_TextAffinity_1); }, _updateSelection$1(intent) { var t1 = intent.newSelection; this.bringIntoView$1(t1.get$extent()); this.userUpdateTextEditingValue$2(intent.currentTextEditingValue.copyWith$1$selection(t1), intent.cause); }, get$_adjacentLineAction() { var t1, _this = this, value = _this.__EditableTextState__adjacentLineAction; if (value === $) { t1 = A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent); A._lateInitializeOnceCheck(_this.__EditableTextState__adjacentLineAction, "_adjacentLineAction"); value = _this.__EditableTextState__adjacentLineAction = new A._UpdateTextSelectionToAdjacentLineAction(_this, new A.ObserverList(t1, type$.ObserverList_of_void_Function_Action_Intent), type$._UpdateTextSelectionToAdjacentLineAction_ExtendSelectionVerticallyToAdjacentLineIntent); } return value; }, _expandSelectionToDocumentBoundary$1(intent) { var t1 = this._widget.controller._change_notifier$_value; this._expandSelection$3(intent.forward, new A._DocumentBoundary(t1), true); }, _expandSelectionToLinebreak$1(intent) { var textBoundary = this._linebreak$1(intent); this._expandSelection$2(intent.forward, textBoundary); }, _expandSelection$3($forward, textBoundary, extentAtIndex) { var position, newExtent, newSelection, textBoundarySelection = textBoundary.get$textEditingValue().selection; if (!textBoundarySelection.get$isValid()) return; position = $forward === textBoundarySelection.baseOffset <= textBoundarySelection.extentOffset ? textBoundarySelection.get$extent() : textBoundarySelection.get$base(); newExtent = $forward ? textBoundary.getTrailingTextBoundaryAt$1(position) : textBoundary.getLeadingTextBoundaryAt$1(position); newSelection = textBoundarySelection.expandTo$2(newExtent, textBoundarySelection.start == textBoundarySelection.end || extentAtIndex); this.userUpdateTextEditingValue$2(this._widget.controller._change_notifier$_value.copyWith$1$selection(newSelection), B.SelectionChangedCause_4); this.bringIntoView$1(newSelection.get$extent()); }, _expandSelection$2($forward, textBoundary) { return this._expandSelection$3($forward, textBoundary, false); }, _hideToolbarIfVisible$1(intent) { var t1 = this._selectionOverlay; t1 = t1 == null ? null : A._lateReadCheck(t1.__TextSelectionOverlay__selectionOverlay, "_selectionOverlay")._toolbar != null; if (t1 === true) { this.hideToolbar$1(false); return null; } t1 = this._framework$_element; t1.toString; return A.Actions_invoke(t1, intent, type$.DismissIntent); }, get$_editable_text$_actions() { var t1, t2, t3, t4, value0, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, result, _this = this, value = _this.__EditableTextState__actions; if (value === $) { t1 = type$.JSArray_of_void_Function_Action_Intent; t2 = A._setArrayType([], t1); t3 = type$.ObserverList_of_void_Function_Action_Intent; value = _this.__EditableTextState__replaceTextAction; if (value === $) { t4 = A._setArrayType([], t1); A._lateInitializeOnceCheck(_this.__EditableTextState__replaceTextAction, "_replaceTextAction"); value = _this.__EditableTextState__replaceTextAction = new A.CallbackAction(_this.get$_replaceText(), new A.ObserverList(t4, t3), type$.CallbackAction_ReplaceTextIntent); } value0 = _this.__EditableTextState__updateSelectionAction; if (value0 === $) { t4 = A._setArrayType([], t1); A._lateInitializeOnceCheck(_this.__EditableTextState__updateSelectionAction, "_updateSelectionAction"); value0 = _this.__EditableTextState__updateSelectionAction = new A.CallbackAction(_this.get$_updateSelection(), new A.ObserverList(t4, t3), type$.CallbackAction_UpdateSelectionIntent); } t4 = A._setArrayType([], t1); t5 = A._setArrayType([], t1); t6 = _this.get$_characterBoundary(); t7 = A._setArrayType([], t1); t8 = _this._framework$_element; t8.toString; t8 = new A._DeleteTextAction(_this, t6, new A.ObserverList(t7, t3), type$._DeleteTextAction_DeleteCharacterIntent)._makeOverridableAction$1(t8); t7 = _this.get$_nextWordBoundary(); t9 = A._setArrayType([], t1); t10 = _this._framework$_element; t10.toString; t10 = new A._DeleteTextAction(_this, t7, new A.ObserverList(t9, t3), type$._DeleteTextAction_DeleteToNextWordBoundaryIntent)._makeOverridableAction$1(t10); t9 = _this.get$_linebreak(); t11 = A._setArrayType([], t1); t12 = _this._framework$_element; t12.toString; t12 = new A._DeleteTextAction(_this, t9, new A.ObserverList(t11, t3), type$._DeleteTextAction_DeleteToLineBreakIntent)._makeOverridableAction$1(t12); t6 = A._UpdateTextSelectionAction$(_this, false, t6, type$.ExtendSelectionByCharacterIntent); t11 = _this._framework$_element; t11.toString; t11 = t6._makeOverridableAction$1(t11); t6 = A._UpdateTextSelectionAction$(_this, true, t7, type$.ExtendSelectionToNextWordBoundaryIntent); t13 = _this._framework$_element; t13.toString; t13 = t6._makeOverridableAction$1(t13); t9 = A._UpdateTextSelectionAction$(_this, true, t9, type$.ExtendSelectionToLineBreakIntent); t6 = _this._framework$_element; t6.toString; t6 = t9._makeOverridableAction$1(t6); t9 = A._setArrayType([], t1); t14 = _this._framework$_element; t14.toString; t14 = new A.CallbackAction(_this.get$_expandSelectionToLinebreak(), new A.ObserverList(t9, t3), type$.CallbackAction_ExpandSelectionToLineBreakIntent)._makeOverridableAction$1(t14); t9 = A._setArrayType([], t1); t15 = _this._framework$_element; t15.toString; t15 = new A.CallbackAction(_this.get$_expandSelectionToDocumentBoundary(), new A.ObserverList(t9, t3), type$.CallbackAction_ExpandSelectionToDocumentBoundaryIntent)._makeOverridableAction$1(t15); t9 = _this.get$_adjacentLineAction(); t16 = _this._framework$_element; t16.toString; t16 = t9._makeOverridableAction$1(t16); t9 = A._UpdateTextSelectionAction$(_this, true, _this.get$_documentBoundary(), type$.ExtendSelectionToDocumentBoundaryIntent); t17 = _this._framework$_element; t17.toString; t17 = t9._makeOverridableAction$1(t17); t9 = A._setArrayType([], t1); t18 = _this._framework$_element; t18.toString; t18 = new A._ExtendSelectionOrCaretPositionAction(_this, t7, new A.ObserverList(t9, t3))._makeOverridableAction$1(t18); t9 = A._setArrayType([], t1); t7 = _this._framework$_element; t7.toString; t7 = new A.CallbackAction(_this.get$_scrollToDocumentBoundary(), new A.ObserverList(t9, t3), type$.CallbackAction_ScrollToDocumentBoundaryIntent)._makeOverridableAction$1(t7); t9 = A._setArrayType([], t1); t19 = _this._framework$_element; t19.toString; t19 = new A._SelectAllAction(_this, new A.ObserverList(t9, t3))._makeOverridableAction$1(t19); t9 = A._setArrayType([], t1); t20 = _this._framework$_element; t20.toString; t20 = new A._CopySelectionAction(_this, new A.ObserverList(t9, t3))._makeOverridableAction$1(t20); t1 = A._setArrayType([], t1); t9 = _this._framework$_element; t9.toString; result = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_muk, new A.DoNothingAction(false, new A.ObserverList(t2, t3)), B.Type_ReplaceTextIntent_S40, value, B.Type_UpdateSelectionIntent_RH1, value0, B.Type_DirectionalFocusIntent_evN, new A.DirectionalFocusAction(true, new A.ObserverList(t4, t3)), B.Type_DismissIntent_Fb0, new A.CallbackAction(_this.get$_hideToolbarIfVisible(), new A.ObserverList(t5, t3), type$.CallbackAction_DismissIntent), B.Type_DeleteCharacterIntent_NYh, t8, B.Type_wu8, t10, B.Type_DeleteToLineBreakIntent_MEg, t12, B.Type_3dk, t11, B.Type_0Jp, t13, B.Type_23B, t6, B.Type_oyU, t14, B.Type_kr3, t15, B.Type_ejq, t16, B.Type_0Jp0, t17, B.Type_mya, t18, B.Type_46c, t7, B.Type_SelectAllTextIntent_5TD, t19, B.Type_CopySelectionTextIntent_T5o, t20, B.Type_PasteTextIntent_i6t, new A.CallbackAction(new A.EditableTextState__actions_closure(_this), new A.ObserverList(t1, t3), type$.CallbackAction_PasteTextIntent)._makeOverridableAction$1(t9)], type$.Type, type$.Action_Intent); A._lateInitializeOnceCheck(_this.__EditableTextState__actions, "_actions"); _this.__EditableTextState__actions = result; value = result; } return value; }, build$1(_, context) { var t1, controls, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null; _this.super$AutomaticKeepAliveClientMixin$build(0, context); t1 = _this._widget; controls = t1.selectionControls; t1 = t1.mouseCursor; if (t1 == null) t1 = B.SystemMouseCursor_text; t2 = _this.get$_editable_text$_actions(); t3 = _this._widget; t4 = t3.controller; t5 = t3.focusNode; t3 = t3.maxLines !== 1 ? B.AxisDirection_2 : B.AxisDirection_1; t6 = _this.get$_scrollController(); t7 = _this._widget; t8 = t7.scrollPhysics; t9 = t7.dragStartBehavior; t7 = t7.restorationId; t10 = A.ScrollConfiguration_of(context).copyWith$2$overscroll$scrollbars(false, _this._widget.maxLines !== 1); return A.MouseRegion$(A.Actions$(t2, new A._TextEditingHistory(A.Focus$(false, _null, A.Scrollable$(t3, t6, t9, true, t8, t7, t10, _null, new A.EditableTextState_build_closure(_this, controls)), "EditableText", _null, _null, t5, false, _null, _null, _null, _null, _null), t4, new A.EditableTextState_build_closure0(_this), _null)), t1, _null, _null, _null, _null); }, buildTextSpan$0() { var text, breiflyShowPassword, o, t2, placeholders, placeholderLocation, t3, t4, _this = this, _null = null, t1 = _this._widget; if (t1.obscureText) { text = t1.controller._change_notifier$_value.text; text = B.JSString_methods.$mul(t1.obscuringCharacter, text.length); $.WidgetsBinding__instance.toString; $.$get$EnginePlatformDispatcher__instance().toString; breiflyShowPassword = J.containsKey$1$x(B.Set_e2qq2._collection$_map, A.defaultTargetPlatform()); if (breiflyShowPassword) { o = _this._obscureShowCharTicksPending > 0 ? _this._obscureLatestCharIndex : _null; if (o != null && o >= 0 && o < text.length) { t1 = o + 1; text = B.JSString_methods.replaceRange$3(text, o, t1, J.substring$2$s(_this._widget.controller._change_notifier$_value.text, o, t1)); } } return A.TextSpan$(_null, _null, _this._widget.style, text); } t2 = _this._placeholderLocation; if (t2 >= 0 && t2 <= t1.controller._change_notifier$_value.text.length) { placeholders = A._setArrayType([], type$.JSArray__ScribblePlaceholder); t1 = _this._widget; placeholderLocation = t1.controller._change_notifier$_value.text.length - _this._placeholderLocation; if (t1.maxLines !== 1) { placeholders.push(B._ScribblePlaceholder_IBZ); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._editableKey).get$renderObject(); t1.toString; placeholders.push(new A._ScribblePlaceholder(new A.Size(type$.RenderEditable._as(t1)._box$_size._dx, 0), B.SizedBox_null_null_null_null, B.PlaceholderAlignment_4, _null, _null)); } else placeholders.push(B._ScribblePlaceholder_IBZ0); t1 = _this._widget; t2 = t1.style; t1 = A._setArrayType([A.TextSpan$(_null, _null, _null, J.substring$2$s(t1.controller._change_notifier$_value.text, 0, placeholderLocation))], type$.JSArray_InlineSpan); B.JSArray_methods.addAll$1(t1, placeholders); t1.push(A.TextSpan$(_null, _null, _null, J.substring$1$s(_this._widget.controller._change_notifier$_value.text, placeholderLocation))); return A.TextSpan$(t1, _null, t2, _null); } t2 = t1.controller; t3 = _this._framework$_element; t3.toString; t4 = t1.style; return t2.buildTextSpan$3$context$style$withComposing(t3, t4, !t1.readOnly && t1.focusNode.get$hasFocus()); }, $isAutofillClient: 1 }; A.EditableTextState_cutSelection_closure.prototype = { call$1(_) { var t1 = this.$this; if (t1._framework$_element != null) t1.bringIntoView$1(t1._widget.controller._change_notifier$_value.selection.get$extent()); }, $signature: 22 }; A.EditableTextState_pasteText_closure.prototype = { call$1(_) { var t1 = this.$this; if (t1._framework$_element != null) t1.bringIntoView$1(t1._widget.controller._change_notifier$_value.selection.get$extent()); }, $signature: 22 }; A.EditableTextState_didChangeDependencies_closure.prototype = { call$1(_) { var t2, t1 = this.$this; if (t1._framework$_element != null) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t2.toString; t2 = type$.RenderEditable._as(t2)._box$_size != null; } else t2 = false; if (t2) { t2 = t1._framework$_element; t2.toString; A.FocusScope_of(t2).autofocus$1(0, t1._widget.focusNode); } }, $signature: 22 }; A.EditableTextState__scheduleShowCaretOnScreen_closure.prototype = { call$1(_) { var t2, t3, t4, lineHeight, bottomSpacing, handleHeight, interactiveHandleHeight, caretPadding, targetOffset, t5, t1 = this.$this; t1._showCaretOnScreenScheduled = false; if (t1._currentCaretRect == null || t1.get$_scrollController()._positions.length === 0) return; t2 = t1._editableKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t3.toString; t4 = type$.RenderEditable; lineHeight = t4._as(t3)._editable$_textPainter.get$preferredLineHeight(); bottomSpacing = t1._widget.scrollPadding.bottom; t3 = t1._selectionOverlay; if ((t3 == null ? null : t3.selectionControls) != null) { handleHeight = t3.selectionControls.getHandleSize$1(lineHeight)._dy; interactiveHandleHeight = Math.max(A.checkNum(handleHeight), 48); bottomSpacing = Math.max(handleHeight / 2 - t1._selectionOverlay.selectionControls.getHandleAnchor$2(B.TextSelectionHandleType_2, lineHeight)._dy + interactiveHandleHeight / 2, A.checkNum(bottomSpacing)); } caretPadding = t1._widget.scrollPadding.copyWith$1$bottom(bottomSpacing); t3 = t1._currentCaretRect; t3.toString; targetOffset = t1._getOffsetToRevealCaret$1(t3); t3 = targetOffset.offset; t5 = targetOffset.rect; if (this.withAnimation) { t1.get$_scrollController().animateTo$3$curve$duration(t3, B.Cubic_ifx, B.Duration_100000); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t1.toString; t4._as(t1).showOnScreen$3$curve$duration$rect(B.Cubic_ifx, B.Duration_100000, caretPadding.inflateRect$1(t5)); } else { t1.get$_scrollController().jumpTo$1(t3); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t1.toString; t4._as(t1).showOnScreen$1$rect(caretPadding.inflateRect$1(t5)); } }, $signature: 22 }; A.EditableTextState_didChangeMetrics_closure.prototype = { call$1(_) { var t1 = this.$this._selectionOverlay; if (t1 != null) t1._updateSelectionOverlay$0(); }, $signature: 22 }; A.EditableTextState__formatAndSetValue_closure.prototype = { call$2(newValue, formatter) { return formatter.formatEditUpdate$2(this.$this._widget.controller._change_notifier$_value, newValue); }, $signature: 1902 }; A.EditableTextState__cursorTick_closure.prototype = { call$0() { var t2, t1 = this.$this; $.WidgetsBinding__instance.toString; $.$get$EnginePlatformDispatcher__instance().toString; t2 = t1._obscureShowCharTicksPending; t1._obscureShowCharTicksPending = t2 - 1; }, $signature: 0 }; A.EditableTextState__didChangeTextEditingValue_closure.prototype = { call$0() { }, $signature: 0 }; A.EditableTextState__handleFocusChanged_closure.prototype = { call$0() { this.$this._currentPromptRectRange = null; }, $signature: 0 }; A.EditableTextState__updateSelectionRects_closure.prototype = { call$1(i) { var t2, t3, offset, t4, t5, boxes, t1 = this._box_0; if (t1.belowRenderEditableBottom) return null; t2 = this.$this; t3 = t2._cachedText; offset = (t3.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t3)).getRange$2(0, 0, i).string.length; t3 = t2._editableKey; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t4.toString; t5 = type$.RenderEditable; t5._as(t4); t2 = t2._cachedText; boxes = t4.getBoxesForSelection$1(A.TextSelection$(B.TextAffinity_1, offset, offset + (t2.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(t2)).characterAt$1(i).string.length, false)); if (boxes.length === 0) return null; t2 = B.JSArray_methods.get$first(boxes); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t3.toString; t3 = t5._as(t3)._box$_size; t3._dx; if (0 + t3._dy < t2.top) { t1.belowRenderEditableBottom = true; return null; } return new A.SelectionRect(offset, t2); }, $signature: 1896 }; A.EditableTextState__updateSelectionRects_closure0.prototype = { call$1(selectionRect) { var t1, t2, t3, t4, t5; if (selectionRect == null) return false; t1 = this.$this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._box$_size; t4 = t2._dx; t2._dy; t2 = selectionRect.bounds; if (!(0 + t4 < t2.left)) { t4 = t2.right; t5 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t5.toString; t5 = t3._as(t5)._box$_size; t5._dx; t5._dy; t4 = t4 < 0; } else t4 = true; if (t4) return false; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t4.toString; t4 = t3._as(t4)._box$_size; t4._dx; if (!(0 + t4._dy < t2.top)) { t2 = t2.bottom; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t1 = t3._as(t1)._box$_size; t1._dx; t1._dy; t2 = t2 < 0; t1 = t2; } else t1 = true; if (t1) return false; return true; }, $signature: 1886 }; A.EditableTextState__updateSelectionRects_closure1.prototype = { call$1(selectionRect) { selectionRect.toString; return selectionRect; }, $signature: 1858 }; A.EditableTextState__updateSizeAndTransform_closure.prototype = { call$1(_) { return this.$this._updateSizeAndTransform$0(); }, $signature: 22 }; A.EditableTextState__updateComposingRectIfNeeded_closure.prototype = { call$1(_) { return this.$this._updateComposingRectIfNeeded$0(); }, $signature: 22 }; A.EditableTextState__updateCaretRectIfNeeded_closure.prototype = { call$1(_) { return this.$this._updateCaretRectIfNeeded$0(); }, $signature: 22 }; A.EditableTextState_insertTextPlaceholder_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.controller._change_notifier$_value; t1._placeholderLocation = t2.text.length - t2.selection.end; }, $signature: 0 }; A.EditableTextState_removeTextPlaceholder_closure.prototype = { call$0() { this.$this._placeholderLocation = -1; }, $signature: 0 }; A.EditableTextState_showAutocorrectionPromptRect_closure.prototype = { call$0() { this.$this._currentPromptRectRange = new A.TextRange(this.start, this.end); }, $signature: 0 }; A.EditableTextState__semanticsOnCopy_closure.prototype = { call$0() { this.controls.toString; this.$this.copySelection$1(B.SelectionChangedCause_5); return null; }, $signature: 0 }; A.EditableTextState__semanticsOnCut_closure.prototype = { call$0() { this.controls.toString; this.$this.cutSelection$1(B.SelectionChangedCause_5); return null; }, $signature: 0 }; A.EditableTextState__semanticsOnPaste_closure.prototype = { call$0() { return this.controls.handlePaste$1(this.$this); }, $signature: 0 }; A.EditableTextState__actions_closure.prototype = { call$1(intent) { intent.toString; return this.$this.pasteText$1(B.SelectionChangedCause_4); }, $signature: 1857 }; A.EditableTextState_build_closure0.prototype = { call$1(value) { this.$this.userUpdateTextEditingValue$2(value, B.SelectionChangedCause_4); }, $signature: 1856 }; A.EditableTextState_build_closure.prototype = { call$2(context, offset) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, _null = null, t1 = this.$this, t2 = this.controls, t3 = t1._semanticsOnCopy$1(t2), t4 = t1._semanticsOnCut$1(t2); t2 = t1._semanticsOnPaste$1(t2); t5 = t1._widget.focusNode; t6 = t1._editableKey; t7 = t1.buildTextSpan$0(); t8 = t1._widget; t9 = t8.controller._change_notifier$_value; t8 = t8.cursorColor; t10 = A._lateReadCheck(t1._cursorBlinkOpacityController.__AnimationController__value, "_value"); t8.toString; t8 = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t10), t8.get$value(t8) >>> 16 & 255, t8.get$value(t8) >>> 8 & 255, t8.get$value(t8) & 255); t10 = t1._widget; t11 = t10.backgroundCursorColor; t12 = t10.forceLine; t13 = t10.readOnly; t10 = t10.focusNode.get$hasFocus(); t14 = t1._widget; t15 = t14.maxLines; t16 = t14.minLines; t17 = t14.expands; t14 = t14.get$strutStyle(t14); t18 = t1._widget.selectionColor; t19 = A.MediaQuery_textScaleFactorOf(context); t20 = t1._widget.textAlign; t21 = t1.get$_editable_text$_textDirection(); t1._widget.toString; t22 = A.DefaultTextHeightBehavior_of(context); t23 = t1._widget; t24 = t23.textWidthBasis; t25 = t23.obscuringCharacter; t26 = t23.obscureText; t27 = t23.cursorWidth; t28 = t23.cursorHeight; t29 = t23.cursorRadius; t30 = t23.cursorOffset; if (t30 == null) t30 = B.Offset_0_0; t31 = t23.selectionHeightStyle; t32 = t23.selectionWidthStyle; t33 = t23.paintCursorAboveText; if (t23.enableInteractiveSelection) t23 = !t23.readOnly || !t26; else t23 = false; t34 = t1._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t35 = t1._currentPromptRectRange; t36 = t1._widget; t37 = t36.autocorrectionTextRectColor; t36 = t36.clipBehavior; t38 = A._Editable__extractChildren(t7); return new A.CompositedTransformTarget(t1._toolbarLayerLink, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, t4, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A._ScribbleFocusable(new A._Editable(t7, t9, t8, t1._startHandleLayerLink, t1._endHandleLayerLink, t11, t1._cursorVisibilityNotifier, t12, t13, t10, t15, t16, t17, t14, t18, t19, t20, t21, _null, t25, t26, t22, t24, offset, t1.get$_handleCaretChanged(), true, t27, t28, t29, t30, t33, t31, t32, t23, t1, t34.devicePixelRatio, t35, t37, t36, t38, t6), t5, t6, new A.EditableTextState_build__closure(t1), true, _null), _null), _null); }, $signature: 1832 }; A.EditableTextState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._openInputConnection$0(); t1._updateSelectionRects$1$force(true); }, $signature: 0 }; A._Editable.prototype = { createRenderObject$1(context) { var _this = this, _null = null, t1 = _this.inlineSpan, t2 = A.Localizations_maybeLocaleOf(context), t3 = _this.value.selection, t4 = A._TextHighlightPainter$(), t5 = A._TextHighlightPainter$(), t6 = $.$get$ChangeNotifier__emptyListeners(), t7 = type$.ValueNotifier_bool, t8 = A.LayerHandle$(type$.ClipRectLayer); t2 = A.TextPainter$(_null, t2, _null, _this.strutStyle, t1, _this.textAlign, _this.textDirection, _this.textHeightBehavior, _this.textScaleFactor, _this.textWidthBasis); t2 = new A.RenderEditable(t4, t5, _this.onCaretChanged, true, _this.devicePixelRatio, _this.obscuringCharacter, _this.obscureText, _this.textSelectionDelegate, new A.ValueNotifier(true, t6, t7), new A.ValueNotifier(true, t6, t7), t2, _this.showCursor, _this.hasFocus, _this.forceLine, _this.readOnly, _this.maxLines, _this.minLines, _this.expands, t3, _this.offset, _this.cursorWidth, _this.cursorHeight, _this.paintCursorAboveText, _this.startHandleLayerLink, _this.endHandleLayerLink, _this.enableInteractiveSelection, _this.clipBehavior, B.Offset_0_0, t8, 0, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t4.set$highlightColor(_this.selectionColor); t4.set$highlightedRange(t3); t4.set$selectionHeightStyle(_this.selectionHeightStyle); t4.set$selectionWidthStyle(_this.selectionWidthStyle); t5.set$highlightColor(_this.promptRectColor); t5.set$highlightedRange(_this.promptRectRange); t2.get$_caretPainter().set$caretColor(_this.cursorColor); t2.get$_caretPainter().set$cursorRadius(_this.cursorRadius); t2.get$_caretPainter().set$cursorOffset(_this.cursorOffset); t2.get$_caretPainter().set$backgroundCursorColor(_this.backgroundCursorColor); t2._updateForegroundPainter$1(_null); t2._updatePainter$1(_null); t2.addAll$1(0, _null); t2._editable$_extractPlaceholderSpans$1(t1); return t2; }, updateRenderObject$2(context, renderObject) { var t1, t2, _this = this; renderObject.set$text(0, _this.inlineSpan); renderObject.get$_caretPainter().set$caretColor(_this.cursorColor); renderObject.set$startHandleLayerLink(_this.startHandleLayerLink); renderObject.set$endHandleLayerLink(_this.endHandleLayerLink); renderObject.set$showCursor(_this.showCursor); renderObject.set$forceLine(_this.forceLine); renderObject.set$readOnly(0, _this.readOnly); renderObject.set$hasFocus(_this.hasFocus); renderObject.set$maxLines(0, _this.maxLines); renderObject.set$minLines(_this.minLines); renderObject.set$expands(_this.expands); renderObject.set$strutStyle(0, _this.strutStyle); t1 = renderObject._selectionPainter; t1.set$highlightColor(_this.selectionColor); renderObject.set$textScaleFactor(_this.textScaleFactor); renderObject.set$textAlign(0, _this.textAlign); renderObject.set$textDirection(0, _this.textDirection); t2 = A.Localizations_maybeLocaleOf(context); renderObject.set$locale(0, t2); renderObject.set$selection(_this.value.selection); renderObject.set$offset(0, _this.offset); renderObject.onCaretChanged = _this.onCaretChanged; renderObject.ignorePointer = true; renderObject.set$textHeightBehavior(0, _this.textHeightBehavior); renderObject.set$textWidthBasis(_this.textWidthBasis); renderObject.set$obscuringCharacter(_this.obscuringCharacter); renderObject.set$obscureText(_this.obscureText); renderObject.set$cursorWidth(_this.cursorWidth); renderObject.set$cursorHeight(_this.cursorHeight); renderObject.get$_caretPainter().set$cursorRadius(_this.cursorRadius); renderObject.get$_caretPainter().set$cursorOffset(_this.cursorOffset); t1.set$selectionHeightStyle(_this.selectionHeightStyle); t1.set$selectionWidthStyle(_this.selectionWidthStyle); renderObject.set$enableInteractiveSelection(_this.enableInteractiveSelection); renderObject.textSelectionDelegate = _this.textSelectionDelegate; renderObject.set$devicePixelRatio(0, _this.devicePixelRatio); renderObject.set$paintCursorAboveText(_this.paintCursorAboveText); t1 = renderObject._autocorrectHighlightPainter; t1.set$highlightColor(_this.promptRectColor); t2 = _this.clipBehavior; if (t2 !== renderObject._editable$_clipBehavior) { renderObject._editable$_clipBehavior = t2; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } t1.set$highlightedRange(_this.promptRectRange); }, get$value(receiver) { return this.value; } }; A._Editable__extractChildren_closure.prototype = { call$1(span) { if (span instanceof A.WidgetSpan) this.result.push(span.child); return true; }, $signature: 212 }; A._ScribbleFocusable.prototype = { createState$0() { var t1 = $._ScribbleFocusableState__nextElementIdentifier; $._ScribbleFocusableState__nextElementIdentifier = t1 + 1; return new A._ScribbleFocusableState(B.JSInt_methods.toString$0(t1), B._StateLifecycle_0); }, updateSelectionRects$0() { return this.updateSelectionRects.call$0(); } }; A._ScribbleFocusableState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._widget.toString; $.$get$TextInput__instance()._scribbleClients.$indexSet(0, _this._elementIdentifier, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; this._widget.toString; }, dispose$0(_) { $.$get$TextInput__instance()._scribbleClients.remove$1(0, this._elementIdentifier); this.super$State$dispose(0); }, get$renderEditable() { var t1 = this._widget.editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t1 = t1 == null ? null : t1.get$renderObject(); return type$.nullable_RenderEditable._as(t1); }, isInScribbleRect$1(rect) { var intersection, result, t2, _this = this, calculatedBounds = _this.get$bounds(_this), t1 = _this.get$renderEditable(); t1 = t1 == null ? null : t1._readOnly; if (t1 === true) return false; if (calculatedBounds.$eq(0, B.Rect_0_0_0_0)) return false; if (!calculatedBounds.overlaps$1(rect)) return false; intersection = calculatedBounds.intersect$1(rect); result = A.HitTestResult$(); t1 = $.WidgetsBinding__instance; t1.toString; t2 = intersection.get$center(); A._lateReadCheck(t1.RendererBinding___RendererBinding__pipelineOwner, "_pipelineOwner")._rootNode.hitTest$2$position(result, t2); t1.super$GestureBinding$hitTest(result, t2); return B.JSArray_methods.any$1(result._hit_test$_path, new A._ScribbleFocusableState_isInScribbleRect_closure(_this)); }, get$bounds(_) { var transform, t1, box = type$.nullable_RenderBox._as(this._framework$_element.get$renderObject()); if (box == null || this._framework$_element == null || box._node$_owner == null) return B.Rect_0_0_0_0; transform = box.getTransformTo$1(0, null); t1 = box._box$_size; return A.MatrixUtils_transformRect(transform, new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); }, build$1(_, context) { return this._widget.child; }, $isScribbleClient: 1 }; A._ScribbleFocusableState_isInScribbleRect_closure.prototype = { call$1(entry) { return entry.target.$eq(0, this.$this.get$renderEditable()); }, $signature: 1831 }; A._ScribblePlaceholder.prototype = { build$3$dimensions$textScaleFactor(_, builder, dimensions, textScaleFactor) { var t1 = this.style, hasStyle = t1 != null; if (hasStyle) builder.pushStyle$1(0, t1.getTextStyle$1$textScaleFactor(textScaleFactor)); t1 = this.size; builder.addPlaceholder$4$scale(0, t1._dx, t1._dy, this.alignment, textScaleFactor); if (hasStyle) builder.pop$0(0); } }; A._TextBoundary.prototype = { getTextBoundaryAt$1(position) { return new A.TextRange(this.getLeadingTextBoundaryAt$1(position).offset, this.getTrailingTextBoundaryAt$1(position).offset); } }; A._CodeUnitBoundary.prototype = { getLeadingTextBoundaryAt$1(position) { return new A.TextPosition(position.offset, B.TextAffinity_1); }, getTrailingTextBoundaryAt$1(position) { return new A.TextPosition(Math.min(position.offset + 1, this.textEditingValue.text.length), B.TextAffinity_1); }, get$textEditingValue() { return this.textEditingValue; } }; A._WhitespaceBoundary.prototype = { getLeadingTextBoundaryAt$1(position) { var index, t1; for (index = position.offset, t1 = this.textEditingValue; index >= 0; --index) if (!A.TextLayoutMetrics_isWhitespace(J.codeUnitAt$1$s(t1.text, index))) return new A.TextPosition(index, B.TextAffinity_1); return B.TextPosition_0_TextAffinity_1; }, getTrailingTextBoundaryAt$1(position) { var index, t1, t2; for (index = position.offset, t1 = this.textEditingValue.text, t2 = t1.length; index < t2; ++index) if (!A.TextLayoutMetrics_isWhitespace(B.JSString_methods.codeUnitAt$1(t1, index))) return new A.TextPosition(index + 1, B.TextAffinity_1); return new A.TextPosition(t2, B.TextAffinity_1); }, get$textEditingValue() { return this.textEditingValue; } }; A._CharacterBoundary.prototype = { getLeadingTextBoundaryAt$1(position) { var t1 = position.offset, t2 = this.textEditingValue.text; return new A.TextPosition(A.StringCharacterRange_StringCharacterRange$at(t2, t1, Math.min(t1 + 1, t2.length))._characters_impl$_start, B.TextAffinity_1); }, getTrailingTextBoundaryAt$1(position) { var t1 = position.offset, t2 = this.textEditingValue.text, t3 = t2.length, range = A.StringCharacterRange_StringCharacterRange$at(t2, t1, Math.min(t1 + 1, t3)); return new A.TextPosition(t3 - (range._characters_impl$_string.length - range._characters_impl$_end), B.TextAffinity_1); }, getTextBoundaryAt$1(position) { var t1 = position.offset, t2 = this.textEditingValue.text, t3 = t2.length, range = A.StringCharacterRange_StringCharacterRange$at(t2, t1, Math.min(t1 + 1, t3)); return new A.TextRange(range._characters_impl$_start, t3 - (range._characters_impl$_string.length - range._characters_impl$_end)); }, get$textEditingValue() { return this.textEditingValue; } }; A._WordBoundary.prototype = { getLeadingTextBoundaryAt$1(position) { return new A.TextPosition(this.textLayout._editable$_textPainter._paragraph.getWordBoundary$1(0, position).start, B.TextAffinity_1); }, getTrailingTextBoundaryAt$1(position) { return new A.TextPosition(this.textLayout._editable$_textPainter._paragraph.getWordBoundary$1(0, position).end, B.TextAffinity_1); }, get$textEditingValue() { return this.textEditingValue; } }; A._LineBreak.prototype = { getLeadingTextBoundaryAt$1(position) { return new A.TextPosition(this.textLayout.getLineAtOffset$1(position).start, B.TextAffinity_1); }, getTrailingTextBoundaryAt$1(position) { return new A.TextPosition(this.textLayout.getLineAtOffset$1(position).end, B.TextAffinity_0); }, get$textEditingValue() { return this.textEditingValue; } }; A._DocumentBoundary.prototype = { getLeadingTextBoundaryAt$1(position) { return B.TextPosition_0_TextAffinity_1; }, getTrailingTextBoundaryAt$1(position) { return new A.TextPosition(this.textEditingValue.text.length, B.TextAffinity_0); }, get$textEditingValue() { return this.textEditingValue; } }; A._ExpandedTextBoundary.prototype = { get$textEditingValue() { return this.innerTextBoundary.textEditingValue; }, getLeadingTextBoundaryAt$1(position) { var t1 = this.innerTextBoundary.getLeadingTextBoundaryAt$1(position); return new A.TextPosition(this.outerTextBoundary.textLayout._editable$_textPainter._paragraph.getWordBoundary$1(0, t1).start, B.TextAffinity_1); }, getTrailingTextBoundaryAt$1(position) { var t1 = this.innerTextBoundary.getTrailingTextBoundaryAt$1(position); return new A.TextPosition(this.outerTextBoundary.textLayout._editable$_textPainter._paragraph.getWordBoundary$1(0, t1).end, B.TextAffinity_1); } }; A._CollapsedSelectionBoundary.prototype = { get$textEditingValue() { return this.innerTextBoundary.get$textEditingValue(); }, getLeadingTextBoundaryAt$1(position) { var t1; if (this.isForward) t1 = this.innerTextBoundary.getLeadingTextBoundaryAt$1(position); else { t1 = position.offset; t1 = t1 <= 0 ? B.TextPosition_0_TextAffinity_1 : this.innerTextBoundary.getLeadingTextBoundaryAt$1(new A.TextPosition(t1 - 1, B.TextAffinity_1)); } return t1; }, getTrailingTextBoundaryAt$1(position) { var t1; if (this.isForward) t1 = this.innerTextBoundary.getTrailingTextBoundaryAt$1(position); else { t1 = position.offset; t1 = t1 <= 0 ? B.TextPosition_0_TextAffinity_1 : this.innerTextBoundary.getTrailingTextBoundaryAt$1(new A.TextPosition(t1 - 1, B.TextAffinity_1)); } return t1; } }; A._MixedBoundary.prototype = { get$textEditingValue() { return this.leadingTextBoundary.get$textEditingValue(); }, getLeadingTextBoundaryAt$1(position) { return this.leadingTextBoundary.getLeadingTextBoundaryAt$1(position); }, getTrailingTextBoundaryAt$1(position) { return this.trailingTextBoundary.getTrailingTextBoundaryAt$1(position); } }; A._DeleteTextAction.prototype = { _expandNonCollapsedRange$1(value) { var selection = value.selection, atomicBoundary = this.state._widget.obscureText ? new A._CodeUnitBoundary(value) : new A._CharacterBoundary(value); return new A.TextRange(atomicBoundary.getLeadingTextBoundaryAt$1(new A.TextPosition(selection.start, B.TextAffinity_1)).offset, atomicBoundary.getTrailingTextBoundaryAt$1(new A.TextPosition(selection.end - 1, B.TextAffinity_1)).offset); }, invoke$2(intent, context) { var textBoundary, _this = this, t1 = _this.state, t2 = t1._widget.controller._change_notifier$_value, selection = t2.selection; if (selection.start != selection.end) { context.toString; return A.Actions_invoke(context, new A.ReplaceTextIntent(t2, "", _this._expandNonCollapsedRange$1(t2), B.SelectionChangedCause_4), type$.ReplaceTextIntent); } textBoundary = _this.getTextBoundariesForIntent.call$1(intent); if (!textBoundary.get$textEditingValue().selection.get$isValid()) return null; t2 = textBoundary.get$textEditingValue().selection; if (t2.start != t2.end) { context.toString; return A.Actions_invoke(context, new A.ReplaceTextIntent(t1._widget.controller._change_notifier$_value, "", _this._expandNonCollapsedRange$1(textBoundary.get$textEditingValue()), B.SelectionChangedCause_4), type$.ReplaceTextIntent); } context.toString; return A.Actions_invoke(context, new A.ReplaceTextIntent(textBoundary.get$textEditingValue(), "", textBoundary.getTextBoundaryAt$1(textBoundary.get$textEditingValue().selection.get$base()), B.SelectionChangedCause_4), type$.ReplaceTextIntent); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { var t1 = this.state._widget; return !t1.readOnly && t1.controller._change_notifier$_value.selection.get$isValid(); } }; A._UpdateTextSelectionAction.prototype = { invoke$2(intent, context) { var t4, textBoundary, textBoundarySelection, extent, t5, newExtent, newSelection, _this = this, t1 = _this.state, t2 = t1._widget, t3 = t2.controller._change_notifier$_value, selection = t3.selection, collapseSelection = intent.collapseSelection || !t2.enableInteractiveSelection; t2 = new A._UpdateTextSelectionAction_invoke__collapse(intent); t4 = selection.start != selection.end; if (t4 && !_this.ignoreNonCollapsedSelection && collapseSelection) { context.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(t3, t2.call$1(selection), B.SelectionChangedCause_4), type$.UpdateSelectionIntent); } textBoundary = _this.getTextBoundariesForIntent.call$1(intent); textBoundarySelection = textBoundary.get$textEditingValue().selection; if (!textBoundarySelection.get$isValid()) return null; if (textBoundarySelection.start != textBoundarySelection.end && !_this.ignoreNonCollapsedSelection && collapseSelection) { context.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(t1._widget.controller._change_notifier$_value, t2.call$1(textBoundarySelection), B.SelectionChangedCause_4), type$.UpdateSelectionIntent); } extent = textBoundarySelection.get$extent(); if (intent.continuesAtWrap) { t2 = intent.forward; if (t2) { t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t3.toString; t3 = type$.RenderEditable._as(t3).getLineAtOffset$1(extent).end; if (new A.TextPosition(t3, B.TextAffinity_0).$eq(0, extent)) { t5 = t1._widget.controller._change_notifier$_value.text; t3 = t3 !== t5.length && B.JSString_methods.codeUnitAt$1(t5, extent.offset) !== 10; } else t3 = false; } else t3 = false; if (t3) extent = new A.TextPosition(extent.offset, B.TextAffinity_1); else { if (!t2) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t2.toString; t2 = type$.RenderEditable._as(t2).getLineAtOffset$1(extent).start; t2 = new A.TextPosition(t2, B.TextAffinity_1).$eq(0, extent) && t2 !== 0 && J.codeUnitAt$1$s(t1._widget.controller._change_notifier$_value.text, extent.offset - 1) !== 10; } else t2 = false; if (t2) extent = new A.TextPosition(extent.offset, B.TextAffinity_0); } } newExtent = intent.forward ? textBoundary.getTrailingTextBoundaryAt$1(extent) : textBoundary.getLeadingTextBoundaryAt$1(extent); newSelection = collapseSelection ? A.TextSelection$fromPosition(newExtent) : textBoundarySelection.extendTo$1(newExtent); if (t4 && intent.collapseAtReversal && selection.baseOffset < selection.extentOffset !== newSelection.baseOffset < newSelection.extentOffset) { context.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(t1._widget.controller._change_notifier$_value, A.TextSelection$fromPosition(selection.get$base()), B.SelectionChangedCause_4), type$.UpdateSelectionIntent); } context.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(textBoundary.get$textEditingValue(), newSelection, B.SelectionChangedCause_4), type$.UpdateSelectionIntent); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { return this.state._widget.controller._change_notifier$_value.selection.get$isValid(); } }; A._UpdateTextSelectionAction_invoke__collapse.prototype = { call$1(selection) { var t1 = this.intent.forward, t2 = t1 ? selection.end : selection.start; return selection.copyWith$2$baseOffset$extentOffset(t2, t1 ? selection.end : selection.start); }, $signature: 1830 }; A._ExtendSelectionOrCaretPositionAction.prototype = { invoke$2(intent, context) { var textBoundary, textBoundarySelection, extent, newExtent, t1, t2, newSelection; this.state._widget.controller._change_notifier$_value.toString; textBoundary = this.getTextBoundariesForIntent.call$1(intent); textBoundarySelection = textBoundary.get$textEditingValue().selection; if (!textBoundarySelection.get$isValid()) return null; extent = textBoundarySelection.get$extent(); newExtent = intent.forward ? textBoundary.getTrailingTextBoundaryAt$1(extent) : textBoundary.getLeadingTextBoundaryAt$1(extent); t1 = textBoundarySelection.baseOffset; t2 = textBoundarySelection.extentOffset; if ((newExtent.offset - t1) * (t2 - t1) < 0) newSelection = textBoundarySelection.copyWith$2$affinity$extentOffset(t2 > t1 ? B.TextAffinity_1 : B.TextAffinity_0, t1); else newSelection = textBoundarySelection.extendTo$1(newExtent); context.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(textBoundary.get$textEditingValue(), newSelection, B.SelectionChangedCause_4), type$.UpdateSelectionIntent); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { var t1 = this.state._widget; return t1.enableInteractiveSelection && t1.controller._change_notifier$_value.selection.get$isValid(); } }; A._UpdateTextSelectionToAdjacentLineAction.prototype = { stopCurrentVerticalRunIfSelectionChanges$0() { var t1, _this = this, runSelection = _this._runSelection; if (runSelection == null) return; t1 = _this._runSelection = _this.state._widget.controller._change_notifier$_value.selection; if (!(t1.get$isValid() && t1.start == t1.end && t1.baseOffset == runSelection.baseOffset && t1.extentOffset == runSelection.extentOffset)) _this._runSelection = _this._verticalMovementRun = null; }, invoke$2(intent, context) { var t3, currentRun, t4, t5, metrics, currentLine, newExtent, newSelection, _this = this, collapseSelection = intent.collapseSelection || !_this.state._widget.enableInteractiveSelection, t1 = _this.state, value = t1.get$_textEditingValueforTextLayoutMetrics(), t2 = value.selection; if (!t2.get$isValid()) return; t3 = _this._verticalMovementRun; if ((t3 == null ? null : t3.get$isValid()) === false) _this._runSelection = _this._verticalMovementRun = null; currentRun = _this._verticalMovementRun; if (currentRun == null) { t3 = t1._editableKey; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t4.toString; t5 = type$.RenderEditable; t5._as(t4); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject(); t3.toString; t3 = t5._as(t3)._selection.get$extent(); metrics = t4._editable$_textPainter.computeLineMetrics$0(); currentLine = t4._lineNumberFor$2(t3, metrics); currentRun = new A.VerticalCaretMovementRun(currentLine.value, currentLine.key, t3, metrics, t4, A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.MapEntry_Offset_TextPosition)); } t3 = intent.forward; if (t3 ? currentRun.moveNext$0() : currentRun.movePrevious$0()) newExtent = currentRun._currentTextPosition; else newExtent = t3 ? new A.TextPosition(t1._widget.controller._change_notifier$_value.text.length, B.TextAffinity_1) : B.TextPosition_0_TextAffinity_1; newSelection = collapseSelection ? A.TextSelection$fromPosition(newExtent) : t2.extendTo$1(newExtent); context.toString; A.Actions_invoke(context, new A.UpdateSelectionIntent(value, newSelection, B.SelectionChangedCause_4), type$.UpdateSelectionIntent); if (t1._widget.controller._change_notifier$_value.selection.$eq(0, newSelection)) { _this._verticalMovementRun = currentRun; _this._runSelection = newSelection; } }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { return this.state._widget.controller._change_notifier$_value.selection.get$isValid(); } }; A._SelectAllAction.prototype = { invoke$2(intent, context) { var t1, t2; context.toString; t1 = this.state._widget.controller._change_notifier$_value; t2 = A.TextSelection$(B.TextAffinity_1, 0, t1.text.length, false); intent.toString; return A.Actions_invoke(context, new A.UpdateSelectionIntent(t1, t2, B.SelectionChangedCause_4), type$.UpdateSelectionIntent); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { return this.state._widget.enableInteractiveSelection; } }; A._CopySelectionAction.prototype = { invoke$2(intent, context) { var t1 = this.state; if (intent.collapseSelection) t1.cutSelection$1(B.SelectionChangedCause_4); else t1.copySelection$1(B.SelectionChangedCause_4); }, invoke$1(intent) { return this.invoke$2(intent, null); }, get$isActionEnabled() { var t1 = this.state; if (t1._widget.controller._change_notifier$_value.selection.get$isValid()) { t1 = t1._widget.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = false; return t1; } }; A._TextEditingHistory.prototype = { createState$0() { return new A._TextEditingHistoryState(new A._UndoStack(A._setArrayType([], type$.JSArray_TextEditingValue), type$._UndoStack_TextEditingValue), B._StateLifecycle_0); }, onTriggered$1(arg0) { return this.onTriggered.call$1(arg0); } }; A._TextEditingHistoryState.prototype = { get$_throttledPush() { return A._lateReadCheck(this.___TextEditingHistoryState__throttledPush, "_throttledPush"); }, _undo$1(intent) { this._editable_text$_update$1(0, this._editable_text$_stack.undo$0()); }, _redo$1(intent) { this._editable_text$_update$1(0, this._editable_text$_stack.redo$0()); }, _editable_text$_update$1(_, nextValue) { var t1, t2, t3; if (nextValue == null) return; t1 = nextValue.text; t2 = this._widget; t3 = t2.controller._change_notifier$_value; if (t1 == t3.text) return; t2.onTriggered$1(t3.copyWith$2$selection$text(nextValue.selection, t1)); }, _push$0() { var _this = this; if (J.$eq$(_this._widget.controller._change_notifier$_value, B.TextEditingValue_li8)) return; _this._throttleTimer = _this._throttledPush$1(_this._widget.controller._change_notifier$_value); }, initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A._throttle(B.Duration_500000, _this._editable_text$_stack.get$push(), type$.TextEditingValue); A._lateWriteOnceCheck(_this.___TextEditingHistoryState__throttledPush, "_throttledPush"); _this.___TextEditingHistoryState__throttledPush = t1; _this._push$0(); _this._widget.controller.addListener$1(0, _this.get$_push()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.controller; t2 = oldWidget.controller; if (t1 != t2) { t1 = _this._editable_text$_stack; B.JSArray_methods.set$length(t1._editable_text$_list, 0); t1.___UndoStack__index = -1; t1 = _this.get$_push(); t2.removeListener$1(0, t1); _this._widget.controller.addListener$1(0, t1); } }, dispose$0(_) { var t1, _this = this; _this._widget.controller.removeListener$1(0, _this.get$_push()); t1 = _this._throttleTimer; if (t1 != null) t1.cancel$0(0); _this.super$State$dispose(0); }, build$1(_, context) { var t1 = type$.JSArray_of_void_Function_Action_Intent, t2 = type$.ObserverList_of_void_Function_Action_Intent; return A.Actions$(A.LinkedHashMap_LinkedHashMap$_literal([B.Type_UndoTextIntent_yzJ, new A.CallbackAction(this.get$_undo(), new A.ObserverList(A._setArrayType([], t1), t2), type$.CallbackAction_UndoTextIntent)._makeOverridableAction$1(context), B.Type_RedoTextIntent_yzJ, new A.CallbackAction(this.get$_redo(), new A.ObserverList(A._setArrayType([], t1), t2), type$.CallbackAction_RedoTextIntent)._makeOverridableAction$1(context)], type$.Type, type$.Action_Intent), this._widget.child); }, _throttledPush$1(arg0) { return this.get$_throttledPush().call$1(arg0); } }; A._UndoStack.prototype = { get$currentValue() { var t1 = this._editable_text$_list; return t1.length === 0 ? null : t1[A._lateReadCheck(this.___UndoStack__index, "_index")]; }, push$1(value) { var _this = this, _s6_ = "_index", t1 = _this._editable_text$_list; if (t1.length === 0) { _this.___UndoStack__index = 0; t1.push(value); return; } if (J.$eq$(value, _this.get$currentValue())) return; if (A._lateReadCheck(_this.___UndoStack__index, _s6_) != null && A._lateReadCheck(_this.___UndoStack__index, _s6_) !== t1.length - 1) B.JSArray_methods.removeRange$2(t1, A._lateReadCheck(_this.___UndoStack__index, _s6_) + 1, t1.length); t1.push(value); _this.___UndoStack__index = t1.length - 1; }, undo$0() { var _this = this; if (_this._editable_text$_list.length === 0) return null; if (A._lateReadCheck(_this.___UndoStack__index, "_index") !== 0) _this.___UndoStack__index = A._lateReadCheck(_this.___UndoStack__index, "_index") - 1; return _this.get$currentValue(); }, redo$0() { var _this = this, t1 = _this._editable_text$_list; if (t1.length === 0) return null; if (A._lateReadCheck(_this.___UndoStack__index, "_index") < t1.length - 1) _this.___UndoStack__index = A._lateReadCheck(_this.___UndoStack__index, "_index") + 1; return _this.get$currentValue(); }, toString$0(_) { return "_UndoStack " + A.S(this._editable_text$_list); } }; A._throttle_closure.prototype = { call$1(currentArg) { var t2, t3, timer, _this = this, t1 = _this.arg; t1.__late_helper$_value = currentArg; t2 = _this._box_0; t3 = t2.timer; if (t3 != null) { t2.calledDuringTimer = true; return t3; } t2.calledDuringTimer = false; timer = A.Timer_Timer(_this.duration, new A._throttle__closure(t2, _this.leadingEdge, _this.$function, t1)); t2.timer = timer; timer.toString; return timer; }, $signature() { return this.T._eval$1("Timer(0)"); } }; A._throttle__closure.prototype = { call$0() { this.$function.call$1(this.arg._readLocal$0()); this._box_0.timer = null; }, $signature: 0 }; A._EditableTextState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); if (this._widget.focusNode.get$hasFocus()) this._ensureKeepAlive$0(); }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver.prototype = {}; A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate.prototype = {}; A.KeyEventResult.prototype = { toString$0(_) { return "KeyEventResult." + this._core$_name; } }; A._Autofocus.prototype = {}; A.FocusAttachment.prototype = { detach$0(_) { var t2, t1 = this._node; if (t1._attachment === this) { if (!t1.get$hasPrimaryFocus()) { t2 = t1._manager; t2 = t2 != null && t2._markedForFocus === t1; } else t2 = true; if (t2) t1.unfocus$1$disposition(B.UnfocusDisposition_1); t2 = t1._manager; if (t2 != null) { if (t2._primaryFocus === t1) t2._primaryFocus = null; t2._dirtyNodes.remove$1(0, t1); } t2 = t1._focus_manager$_parent; if (t2 != null) t2._removeChild$1(0, t1); t1._attachment = null; } }, reparent$0() { var t2, $parent, t1 = this._node; if (t1._attachment === this) { t2 = t1._context; t2.toString; $parent = A.Focus_maybeOf(t2, true); ($parent == null ? t1._context._owner.focusManager.rootScope : $parent)._reparent$1(t1); } } }; A.UnfocusDisposition.prototype = { toString$0(_) { return "UnfocusDisposition." + this._core$_name; } }; A.FocusNode.prototype = { get$skipTraversal() { var t1, t2, _i; if (this._skipTraversal) return true; for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) if (!t1[_i]._descendantsAreTraversable) return true; return false; }, set$skipTraversal(value) { var t1, _this = this; if (value !== _this._skipTraversal) { _this._skipTraversal = value; t1 = _this._manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } } }, get$canRequestFocus() { var scope, t1, t2, _i; if (!this._focus_manager$_canRequestFocus) return false; scope = this.get$enclosingScope(); if (scope != null && !scope.get$canRequestFocus()) return false; for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) if (!t1[_i]._descendantsAreFocusable) return false; return true; }, set$canRequestFocus(value) { var t1, _this = this; if (value != _this._focus_manager$_canRequestFocus) { _this._focus_manager$_canRequestFocus = value; if (_this.get$hasFocus() && !value) _this.unfocus$1$disposition(B.UnfocusDisposition_1); t1 = _this._manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } } }, set$descendantsAreFocusable(value) { var t1, _this = this; if (value === _this._descendantsAreFocusable) return; _this._descendantsAreFocusable = value; if (!value && _this.get$hasFocus()) _this.unfocus$1$disposition(B.UnfocusDisposition_1); t1 = _this._manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } }, set$descendantsAreTraversable(value) { var t1, _this = this; if (value !== _this._descendantsAreTraversable) { _this._descendantsAreTraversable = value; t1 = _this._manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } } }, get$descendants() { var result, t2, _i, child, t1 = this._descendants; if (t1 == null) { result = A._setArrayType([], type$.JSArray_FocusNode); for (t1 = this._children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; B.JSArray_methods.addAll$1(result, child.get$descendants()); result.push(child); } this._descendants = result; t1 = result; } return t1; }, get$traversalDescendants() { if (!this._descendantsAreFocusable) return B.C_EmptyIterable; var t1 = this.get$descendants(); t1.toString; return new A.WhereIterable(t1, new A.FocusNode_traversalDescendants_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, get$ancestors() { var result, $parent, t1 = this._ancestors; if (t1 == null) { result = A._setArrayType([], type$.JSArray_FocusNode); $parent = this._focus_manager$_parent; for (; $parent != null;) { result.push($parent); $parent = $parent._focus_manager$_parent; } this._ancestors = result; t1 = result; } return t1; }, get$hasFocus() { if (!this.get$hasPrimaryFocus()) { var t1 = this._manager; if (t1 == null) t1 = null; else { t1 = t1._primaryFocus; if (t1 == null) t1 = null; else { t1 = t1.get$ancestors(); t1 = (t1 && B.JSArray_methods).contains$1(t1, this); } } t1 = t1 === true; } else t1 = true; return t1; }, get$hasPrimaryFocus() { var t1 = this._manager; return (t1 == null ? null : t1._primaryFocus) === this; }, get$nearestScope() { return this.get$enclosingScope(); }, get$enclosingScope() { var t1, t2, _i, node; for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) { node = t1[_i]; if (node instanceof A.FocusScopeNode) return node; } return null; }, get$rect(_) { var bottomRight, object = this._context.get$renderObject(), t1 = object.getTransformTo$1(0, null), t2 = object.get$semanticBounds(), topLeft = A.MatrixUtils_transformPoint(t1, new A.Offset(t2.left, t2.top)); t2 = object.getTransformTo$1(0, null); t1 = object.get$semanticBounds(); bottomRight = A.MatrixUtils_transformPoint(t2, new A.Offset(t1.right, t1.bottom)); return new A.Rect(topLeft._dx, topLeft._dy, bottomRight._dx, bottomRight._dy); }, unfocus$1$disposition(disposition) { var t1, scope, _this = this; if (!_this.get$hasFocus()) { t1 = _this._manager; t1 = t1 == null || t1._markedForFocus !== _this; } else t1 = false; if (t1) return; scope = _this.get$enclosingScope(); if (scope == null) return; switch (disposition.index) { case 0: if (scope.get$canRequestFocus()) B.JSArray_methods.set$length(scope._focusedChildren, 0); for (; !scope.get$canRequestFocus();) { scope = scope.get$enclosingScope(); if (scope == null) { t1 = _this._manager; scope = t1 == null ? null : t1.rootScope; } } scope._doRequestFocus$1$findFirstFocus(false); break; case 1: if (scope.get$canRequestFocus()) B.JSArray_methods.remove$1(scope._focusedChildren, _this); for (; !scope.get$canRequestFocus();) { t1 = scope.get$enclosingScope(); if (t1 != null) B.JSArray_methods.remove$1(t1._focusedChildren, scope); scope = scope.get$enclosingScope(); if (scope == null) { t1 = _this._manager; scope = t1 == null ? null : t1.rootScope; } } scope._doRequestFocus$1$findFirstFocus(true); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, unfocus$0() { return this.unfocus$1$disposition(B.UnfocusDisposition_0); }, consumeKeyboardToken$0() { if (!this._hasKeyboardToken) return false; this._hasKeyboardToken = false; return true; }, _markNextFocus$1(newFocus) { var _this = this, t1 = _this._manager; if (t1 != null) { if (t1._primaryFocus === _this) t1._markedForFocus = null; else { t1._markedForFocus = _this; t1._markNeedsUpdate$0(); } return; } newFocus._setAsFocusedChildForScope$0(); newFocus._notify$0(); if (newFocus !== _this) _this._notify$0(); }, _removeChild$2$removeScopeFocus(_, node, removeScopeFocus) { var t1, t2, _i; if (removeScopeFocus) { t1 = node.get$enclosingScope(); if (t1 != null) B.JSArray_methods.remove$1(t1._focusedChildren, node); } node._focus_manager$_parent = null; B.JSArray_methods.remove$1(this._children, node); for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._descendants = null; this._descendants = null; }, _removeChild$1($receiver, node) { return this._removeChild$2$removeScopeFocus($receiver, node, true); }, _updateManager$1(manager) { var t1, t2, _i, descendant; this._manager = manager; for (t1 = this.get$descendants(), t2 = t1.length, _i = 0; _i < t2; ++_i) { descendant = t1[_i]; descendant._manager = manager; descendant._ancestors = null; } }, _reparent$1(child) { var oldScope, hadFocus, t1, t2, _i, inherited, _this = this; if (child._focus_manager$_parent === _this) return; oldScope = child.get$enclosingScope(); hadFocus = child.get$hasFocus(); t1 = child._focus_manager$_parent; if (t1 != null) t1._removeChild$2$removeScopeFocus(0, child, oldScope != _this.get$nearestScope()); _this._children.push(child); child._focus_manager$_parent = _this; child._ancestors = null; child._updateManager$1(_this._manager); for (t1 = child.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._descendants = null; if (hadFocus) { t1 = _this._manager; if (t1 != null) { t1 = t1._primaryFocus; if (t1 != null) t1._setAsFocusedChildForScope$0(); } } if (oldScope != null && child._context != null && child.get$enclosingScope() !== oldScope) { inherited = child._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker); t1 = inherited == null ? null : inherited.policy; if (t1 != null) t1.changedScope$2$node$oldScope(child, oldScope); } if (child._requestFocusWhenReparented) { child._doRequestFocus$1$findFirstFocus(true); child._requestFocusWhenReparented = false; } }, dispose$0(_) { var t1 = this._attachment; if (t1 != null) t1.detach$0(0); this.super$ChangeNotifier$dispose(0); }, _notify$0() { var _this = this; if (_this._focus_manager$_parent == null) return; if (_this.get$hasPrimaryFocus()) _this._setAsFocusedChildForScope$0(); _this.notifyListeners$0(); }, requestFocus$1(node) { if (node != null) { if (node._focus_manager$_parent == null) this._reparent$1(node); node._doRequestFocus$1$findFirstFocus(true); return; } this._doRequestFocus$1$findFirstFocus(true); }, requestFocus$0() { return this.requestFocus$1(null); }, _doRequestFocus$1$findFirstFocus(findFirstFocus) { var t1, _this = this; if (!_this.get$canRequestFocus()) return; if (_this._focus_manager$_parent == null) { _this._requestFocusWhenReparented = true; return; } _this._setAsFocusedChildForScope$0(); if (_this.get$hasPrimaryFocus()) { t1 = _this._manager._markedForFocus; t1 = t1 == null || t1 === _this; } else t1 = false; if (t1) return; _this._hasKeyboardToken = true; _this._markNextFocus$1(_this); }, _setAsFocusedChildForScope$0() { var t2, t3, scopeFocus, scopeFocus0, t4, t1 = this.get$ancestors(); t1.toString; t1 = B.JSArray_methods.get$iterator(t1); t2 = new A.WhereTypeIterator(t1, type$.WhereTypeIterator_FocusScopeNode); t3 = type$.FocusScopeNode; scopeFocus = this; for (; t2.moveNext$0(); scopeFocus = scopeFocus0) { scopeFocus0 = t3._as(t1.get$current(t1)); t4 = scopeFocus0._focusedChildren; B.JSArray_methods.remove$1(t4, scopeFocus); t4.push(scopeFocus); } }, debugDescribeChildren$0() { var t2, t3, t1 = {}; t1.count = 1; t2 = this._children; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return A.List_List$of(new A.MappedListIterable(t2, new A.FocusNode_debugDescribeChildren_closure(t1), t3), true, t3._eval$1("ListIterable.E")); }, toStringShort$0() { var t1, extraData, t2, _this = this; _this.get$hasFocus(); t1 = _this.get$hasFocus() && !_this.get$hasPrimaryFocus() ? "[IN FOCUS PATH]" : ""; extraData = t1 + (_this.get$hasPrimaryFocus() ? "[PRIMARY FOCUS]" : ""); t1 = A.shortHash(_this); t2 = extraData.length !== 0 ? "(" + extraData + ")" : ""; return "#" + t1 + t2; }, $isListenable: 1, $isDiagnosticableTree: 1 }; A.FocusNode_traversalDescendants_closure.prototype = { call$1(node) { return !node.get$skipTraversal() && node.get$canRequestFocus(); }, $signature: 134 }; A.FocusNode_debugDescribeChildren_closure.prototype = { call$1(child) { var t1 = this._box_0.count++; child.toString; return A.DiagnosticableTreeNode$("Child " + t1, null, child); }, $signature: 1826 }; A.FocusScopeNode.prototype = { get$nearestScope() { return this; }, get$traversalDescendants() { if (!this.get$canRequestFocus()) return B.C_EmptyIterable; return A.FocusNode.prototype.get$traversalDescendants.call(this); }, setFirstFocus$1(scope) { if (scope._focus_manager$_parent == null) this._reparent$1(scope); if (this.get$hasFocus()) scope._doRequestFocus$1$findFirstFocus(true); else scope._setAsFocusedChildForScope$0(); }, autofocus$1(_, node) { var t1, _this = this; if (node._focus_manager$_parent == null) _this._reparent$1(node); t1 = _this._manager; if (t1 != null) t1._pendingAutofocuses.push(new A._Autofocus(_this, node)); t1 = _this._manager; if (t1 != null) t1._markNeedsUpdate$0(); }, _doRequestFocus$1$findFirstFocus(findFirstFocus) { var t2, focusedChild, _this = this, t1 = _this._focusedChildren; while (true) { if ((t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null) != null) t2 = !(t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null).get$canRequestFocus(); else t2 = false; if (!t2) break; t1.pop(); } focusedChild = t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null; if (!findFirstFocus || focusedChild == null) { if (_this.get$canRequestFocus()) { _this._setAsFocusedChildForScope$0(); _this._markNextFocus$1(_this); } return; } focusedChild._doRequestFocus$1$findFirstFocus(true); } }; A.FocusHighlightMode.prototype = { toString$0(_) { return "FocusHighlightMode." + this._core$_name; } }; A.FocusHighlightStrategy.prototype = { toString$0(_) { return "FocusHighlightStrategy." + this._core$_name; } }; A.FocusManager.prototype = { dispose$0(_) { var _s16_ = "_keyEventManager"; if (J.$eq$(A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__keyEventManager, _s16_).keyMessageHandler, this.get$_handleKeyMessage())) { A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__keyEventManager, _s16_).keyMessageHandler = null; $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.remove$1(0, this.get$_focus_manager$_handlePointerEvent()); } this.super$ChangeNotifier$dispose(0); }, _focus_manager$_updateHighlightMode$0() { var t1, newMode, oldMode, _this = this; switch (0) { case 0: t1 = _this._lastInteractionWasTouch; if (t1 == null) return; newMode = t1 ? B.FocusHighlightMode_0 : B.FocusHighlightMode_1; break; } oldMode = _this._highlightMode; if (oldMode == null) oldMode = A.FocusManager__defaultModeForPlatform(); _this._highlightMode = newMode; if (newMode !== oldMode) _this._notifyHighlightModeListeners$0(); }, _notifyHighlightModeListeners$0() { var listener, exception, stack, localListeners, _i, t3, exception0, rti, t4, _this = this, t1 = _this._focus_manager$_listeners, t2 = t1._observer_list$_map; if (t2._length === 0) return; localListeners = A.List_List$of(t1, true, type$.void_Function_FocusHighlightMode); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { listener = localListeners[_i]; try { if (t2.containsKey$1(0, listener)) { t3 = _this._highlightMode; if (t3 == null) t3 = A.FocusManager__defaultModeForPlatform(); listener.call$1(t3); } } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); rti = _this instanceof A.Closure ? A.closureFunctionType(_this) : null; t3 = A.ErrorDescription$("while dispatching notifications for " + A.createRuntimeType(rti == null ? A.instanceType(_this) : rti).toString$0(0)); t4 = $.$get$FlutterError_onError(); if (t4 != null) t4.call$1(new A.FlutterErrorDetails(exception, stack, "widgets library", t3, null, null, false)); } } }, _focus_manager$_handlePointerEvent$1($event) { var expectedMode, t1, _this = this; switch ($event.get$kind($event).index) { case 0: case 2: case 3: _this._lastInteractionWasTouch = true; expectedMode = B.FocusHighlightMode_0; break; case 1: case 5: default: _this._lastInteractionWasTouch = false; expectedMode = B.FocusHighlightMode_1; break; } t1 = _this._highlightMode; if (expectedMode !== (t1 == null ? A.FocusManager__defaultModeForPlatform() : t1)) _this._focus_manager$_updateHighlightMode$0(); }, _handleKeyMessage$1(message) { var t1, handled, t2, t3, _i, node, results, t4, t5, _this = this; _this._lastInteractionWasTouch = false; _this._focus_manager$_updateHighlightMode$0(); t1 = _this._primaryFocus; if (t1 == null) return false; t1 = A._setArrayType([t1], type$.JSArray_FocusNode); B.JSArray_methods.addAll$1(t1, _this._primaryFocus.get$ancestors()); t2 = t1.length; t3 = type$.JSArray_KeyEventResult; _i = 0; while (true) { if (!(_i < t1.length)) { handled = false; break; } c$1: { node = t1[_i]; results = A._setArrayType([], t3); t4 = node.onKey; if (t4 != null && message.rawEvent != null) { t4.toString; t5 = message.rawEvent; t5.toString; results.push(t4.call$2(node, t5)); } switch (A.combineKeyEventResults(results).index) { case 1: break c$1; case 0: handled = true; break; case 2: handled = false; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } break; } t1.length === t2 || (0, A.throwConcurrentModificationError)(t1); ++_i; } return handled; }, _markNeedsUpdate$0() { if (this._haveScheduledUpdate) return; this._haveScheduledUpdate = true; A.scheduleMicrotask(this.get$_applyFocusChange()); }, _applyFocusChange$0() { var previousFocus, t1, t2, t3, _i, autofocus, t4, t5, shouldApply, previousPath, nextPath, _this = this; _this._haveScheduledUpdate = false; previousFocus = _this._primaryFocus; for (t1 = _this._pendingAutofocuses, t2 = t1.length, t3 = _this.rootScope, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { autofocus = t1[_i]; t4 = autofocus.scope; if (t4._focus_manager$_parent != null || t4 === t3) if (t4._manager === _this) { t5 = t4._focusedChildren; if ((t5.length !== 0 ? B.JSArray_methods.get$last(t5) : null) == null) { t5 = autofocus.autofocusNode.get$ancestors(); t4 = (t5 && B.JSArray_methods).contains$1(t5, t4); } else t4 = false; shouldApply = t4; } else shouldApply = false; else shouldApply = false; if (shouldApply) autofocus.autofocusNode._doRequestFocus$1$findFirstFocus(true); } B.JSArray_methods.set$length(t1, 0); t1 = _this._primaryFocus; if (t1 == null && _this._markedForFocus == null) _this._markedForFocus = t3; t2 = _this._markedForFocus; if (t2 != null && t2 !== t1) { if (previousFocus == null) previousPath = null; else { t1 = previousFocus.get$ancestors(); t1.toString; t1 = A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); previousPath = t1; } if (previousPath == null) previousPath = A.LinkedHashSet_LinkedHashSet$_empty(type$.FocusNode); t1 = _this._markedForFocus.get$ancestors(); t1.toString; nextPath = A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); t1 = _this._dirtyNodes; t1.addAll$1(0, nextPath.difference$1(previousPath)); t1.addAll$1(0, previousPath.difference$1(nextPath)); t1 = _this._primaryFocus = _this._markedForFocus; _this._markedForFocus = null; } if (previousFocus != t1) { if (previousFocus != null) _this._dirtyNodes.add$1(0, previousFocus); t1 = _this._primaryFocus; if (t1 != null) _this._dirtyNodes.add$1(0, t1); } for (t1 = _this._dirtyNodes, t2 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t2.moveNext$0();) t2._collection$_current._notify$0(); t1.clear$0(0); if (previousFocus != _this._primaryFocus) _this.notifyListeners$0(); }, debugDescribeChildren$0() { return A._setArrayType([A.DiagnosticableTreeNode$("rootScope", null, this.rootScope)], type$.JSArray_DiagnosticsNode); }, $isListenable: 1, $isDiagnosticableTree: 1 }; A._FocusManager_Object_DiagnosticableTreeMixin.prototype = {}; A._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier.prototype = {}; A._FocusNode_Object_DiagnosticableTreeMixin.prototype = {}; A._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier.prototype = {}; A.Focus.prototype = { get$onKeyEvent() { var t1 = this.focusNode; t1 = t1 == null ? null : t1.onKeyEvent; return t1; }, get$onKey() { var t1 = this._onKey; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1.onKey; } return t1; }, get$canRequestFocus() { var t1 = this._canRequestFocus; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1.get$canRequestFocus(); } return t1 !== false; }, get$skipTraversal() { var t1 = this._focus_scope$_skipTraversal; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1.get$skipTraversal(); } return t1 === true; }, get$descendantsAreFocusable() { var t1 = this._focus_scope$_descendantsAreFocusable; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1._descendantsAreFocusable; } return t1 !== false; }, get$descendantsAreTraversable() { var t1 = this._focus_scope$_descendantsAreTraversable; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1._descendantsAreTraversable; } return t1 !== false; }, get$debugLabel() { var t1 = this._focus_scope$_debugLabel; if (t1 == null) { t1 = this.focusNode; t1 = t1 == null ? null : t1._focus_manager$_debugLabel; } return t1; }, createState$0() { return A._FocusState$(); } }; A._FocusState.prototype = { get$focusNode(_) { var t1 = this._widget.focusNode; if (t1 == null) { t1 = this._internalNode; t1.toString; } return t1; }, initState$0() { this.super$State$initState(); this._initNode$0(); }, _initNode$0() { var t1, t2, t3, _this = this; if (_this._widget.focusNode == null) if (_this._internalNode == null) _this._internalNode = _this._createNode$0(); _this.get$focusNode(_this).set$descendantsAreFocusable(_this._widget.get$descendantsAreFocusable()); _this.get$focusNode(_this).set$descendantsAreTraversable(_this._widget.get$descendantsAreTraversable()); _this._widget.get$skipTraversal(); _this.get$focusNode(_this).set$skipTraversal(_this._widget.get$skipTraversal()); if (_this._widget._canRequestFocus != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget._canRequestFocus; t2.toString; t1.set$canRequestFocus(t2); } _this.___FocusState__couldRequestFocus = _this.get$focusNode(_this).get$canRequestFocus(); _this.___FocusState__descendantsWereFocusable = _this.get$focusNode(_this)._descendantsAreFocusable; _this.___FocusState__descendantsWereTraversable = _this.get$focusNode(_this)._descendantsAreTraversable; _this.___FocusState__hadPrimaryFocus = _this.get$focusNode(_this).get$hasPrimaryFocus(); t1 = _this.get$focusNode(_this); t2 = _this._framework$_element; t2.toString; _this._widget.get$onKeyEvent(); t3 = _this._widget.get$onKey(); t1._context = t2; t1.onKey = t3 == null ? t1.onKey : t3; _this._focusAttachment = t1._attachment = new A.FocusAttachment(t1); _this.get$focusNode(_this).addListener$1(0, _this.get$_handleFocusChanged()); }, _createNode$0() { var _this = this, t1 = _this._widget.get$debugLabel(); return A.FocusNode$(_this._widget.get$canRequestFocus(), t1, _this._widget.get$descendantsAreFocusable(), _this._widget.get$descendantsAreTraversable(), null, null, _this._widget.get$skipTraversal()); }, dispose$0(_) { var t1, _this = this; _this.get$focusNode(_this).removeListener$1(0, _this.get$_handleFocusChanged()); _this._focusAttachment.detach$0(0); t1 = _this._internalNode; if (t1 != null) t1.dispose$0(0); _this.super$State$dispose(0); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); var t1 = this._focusAttachment; if (t1 != null) t1.reparent$0(); this._handleAutofocus$0(); }, _handleAutofocus$0() { var t1, _this = this; if (!_this._didAutofocus && _this._widget.autofocus) { t1 = _this._framework$_element; t1.toString; A.FocusScope_of(t1).autofocus$1(0, _this.get$focusNode(_this)); _this._didAutofocus = true; } }, deactivate$0() { this.super$State$deactivate(); var t1 = this._focusAttachment; if (t1 != null) t1.reparent$0(); this._didAutofocus = false; }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.focusNode; t2 = _this._widget; if (t1 == t2.focusNode) { if (!J.$eq$(t2.get$onKey(), _this.get$focusNode(_this).onKey)) _this.get$focusNode(_this).onKey = _this._widget.get$onKey(); _this._widget.get$onKeyEvent(); _this.get$focusNode(_this).toString; _this._widget.get$skipTraversal(); _this.get$focusNode(_this).set$skipTraversal(_this._widget.get$skipTraversal()); if (_this._widget._canRequestFocus != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget._canRequestFocus; t2.toString; t1.set$canRequestFocus(t2); } _this.get$focusNode(_this).set$descendantsAreFocusable(_this._widget.get$descendantsAreFocusable()); _this.get$focusNode(_this).set$descendantsAreTraversable(_this._widget.get$descendantsAreTraversable()); } else { _this._focusAttachment.detach$0(0); if (t1 != null) t1.removeListener$1(0, _this.get$_handleFocusChanged()); _this._initNode$0(); } if (oldWidget.autofocus !== _this._widget.autofocus) _this._handleAutofocus$0(); }, _handleFocusChanged$0() { var _this = this, hasPrimaryFocus = _this.get$focusNode(_this).get$hasPrimaryFocus(), canRequestFocus = _this.get$focusNode(_this).get$canRequestFocus(), descendantsAreFocusable = _this.get$focusNode(_this)._descendantsAreFocusable, descendantsAreTraversable = _this.get$focusNode(_this)._descendantsAreTraversable, t1 = _this._widget.onFocusChange; if (t1 != null) t1.call$1(_this.get$focusNode(_this).get$hasFocus()); if (A._lateReadCheck(_this.___FocusState__hadPrimaryFocus, "_hadPrimaryFocus") !== hasPrimaryFocus) _this.setState$1(new A._FocusState__handleFocusChanged_closure(_this, hasPrimaryFocus)); if (A._lateReadCheck(_this.___FocusState__couldRequestFocus, "_couldRequestFocus") !== canRequestFocus) _this.setState$1(new A._FocusState__handleFocusChanged_closure0(_this, canRequestFocus)); if (A._lateReadCheck(_this.___FocusState__descendantsWereFocusable, "_descendantsWereFocusable") !== descendantsAreFocusable) _this.setState$1(new A._FocusState__handleFocusChanged_closure1(_this, descendantsAreFocusable)); if (A._lateReadCheck(_this.___FocusState__descendantsWereTraversable, "_descendantsWereTraversable") !== descendantsAreTraversable) _this.setState$1(new A._FocusState__handleFocusChanged_closure2(_this, descendantsAreTraversable)); }, build$1(_, context) { var t1, child, t2, t3, _this = this, _null = null; _this._focusAttachment.reparent$0(); t1 = _this._widget; child = t1.child; if (t1.includeSemantics) { t1 = A._lateReadCheck(_this.___FocusState__couldRequestFocus, "_couldRequestFocus"); t2 = A._lateReadCheck(_this.___FocusState__hadPrimaryFocus, "_hadPrimaryFocus"); t3 = _this._widget.child; child = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t3, _null); } return A._FocusMarker$(child, _this.get$focusNode(_this)); } }; A._FocusState__handleFocusChanged_closure.prototype = { call$0() { this.$this.___FocusState__hadPrimaryFocus = this.hasPrimaryFocus; }, $signature: 0 }; A._FocusState__handleFocusChanged_closure0.prototype = { call$0() { this.$this.___FocusState__couldRequestFocus = this.canRequestFocus; }, $signature: 0 }; A._FocusState__handleFocusChanged_closure1.prototype = { call$0() { this.$this.___FocusState__descendantsWereFocusable = this.descendantsAreFocusable; }, $signature: 0 }; A._FocusState__handleFocusChanged_closure2.prototype = { call$0() { this.$this.___FocusState__descendantsWereTraversable = this.descendantsAreTraversable; }, $signature: 0 }; A.FocusScope.prototype = { createState$0() { return new A._FocusScopeState(B._StateLifecycle_0); } }; A._FocusScopeState.prototype = { _createNode$0() { var t1 = this._widget.get$debugLabel(); return A.FocusScopeNode$(this._widget.get$canRequestFocus(), t1, this._widget.get$skipTraversal()); }, build$1(_, context) { var t1, _this = this, _null = null; _this._focusAttachment.reparent$0(); t1 = _this.get$focusNode(_this); t1 = A._FocusMarker$(_this._widget.child, t1); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t1, _null); } }; A._FocusMarker.prototype = {}; A.ExcludeFocus.prototype = { build$1(_, context) { var _null = null; return A.Focus$(false, false, this.child, _null, !this.excluding, _null, _null, false, _null, _null, _null, _null, true); } }; A._getAncestor_closure.prototype = { call$1(ancestor) { var t1 = this._box_0; if (--t1.count === 0) { t1.target = ancestor; return false; } return true; }, $signature: 249 }; A._FocusTraversalGroupInfo.prototype = {}; A.TraversalDirection.prototype = { toString$0(_) { return "TraversalDirection." + this._core$_name; } }; A.FocusTraversalPolicy.prototype = { _findInitialFocus$2$fromEnd(currentNode, fromEnd) { var sorted, scope = currentNode.get$nearestScope(), t1 = scope._focusedChildren, candidate = t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null; if (candidate == null && scope.get$descendants().length !== 0) { sorted = this._sortAllDescendants$2(scope, currentNode); if (sorted.length === 0) candidate = null; else candidate = fromEnd ? B.JSArray_methods.get$last(sorted) : B.JSArray_methods.get$first(sorted); } return candidate == null ? currentNode : candidate; }, _findInitialFocus$1(currentNode) { return this._findInitialFocus$2$fromEnd(currentNode, false); }, invalidateScopeData$1(node) { }, changedScope$2$node$oldScope(node, oldScope) { }, _getMarker$1(context) { var t1; if (context == null) t1 = null; else { t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } } return type$.nullable__FocusTraversalGroupMarker._as(t1); }, _sortAllDescendants$2(scope, currentNode) { var groups, t2, t3, t4, t5, t6, _i, node, t7, ancestor, groupNode, parentContext, parentNode, sortedDescendants, _null = null, scopeGroupMarker = this._getMarker$1(scope._context), t1 = scopeGroupMarker == null, defaultPolicy = t1 ? _null : scopeGroupMarker.policy; if (defaultPolicy == null) defaultPolicy = new A.ReadingOrderTraversalPolicy(A.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData)); groups = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_FocusNode, type$._FocusTraversalGroupInfo); for (t2 = scope.get$descendants(), t3 = t2.length, t4 = type$.nullable__FocusTraversalGroupMarker, t5 = type$._FocusTraversalGroupMarker, t6 = type$.JSArray_FocusNode, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { node = t2[_i]; t7 = node._context; if (t7 == null) t7 = _null; else { t7 = t7._inheritedWidgets; ancestor = t7 == null ? _null : t7.$index(0, A.createRuntimeType(t5)); if (ancestor == null) t7 = _null; else { t7 = ancestor._widget; t7.toString; } } t4._as(t7); groupNode = t7 == null ? _null : t7.focusNode; if (J.$eq$(node, groupNode)) { t7 = groupNode._context; t7.toString; parentContext = A._getAncestor(t7, 2); if (parentContext == null) t7 = _null; else { t7 = parentContext._inheritedWidgets; ancestor = t7 == null ? _null : t7.$index(0, A.createRuntimeType(t5)); if (ancestor == null) t7 = _null; else { t7 = ancestor._widget; t7.toString; } } t4._as(t7); parentNode = t7 == null ? _null : t7.focusNode; if (groups.$index(0, parentNode) == null) groups.$indexSet(0, parentNode, A._FocusTraversalGroupInfo$(t7, defaultPolicy, A._setArrayType([], t6))); groups.$index(0, parentNode).members.push(groupNode); continue; } if (node.get$canRequestFocus() && !node.get$skipTraversal()) { if (groups.$index(0, groupNode) == null) groups.$indexSet(0, groupNode, A._FocusTraversalGroupInfo$(t7, defaultPolicy, A._setArrayType([], t6))); groups.$index(0, groupNode).members.push(node); } } for (t2 = A.LinkedHashMapKeyIterator$(groups, groups._modifications, groups.$ti._precomputed1); t2.moveNext$0();) { t3 = t2.__js_helper$_current; t4 = groups.$index(0, t3).policy.sortDescendants$2(groups.$index(0, t3).members, currentNode); t4 = A._setArrayType(t4.slice(0), A._arrayInstanceType(t4)); B.JSArray_methods.set$length(groups.$index(0, t3).members, 0); B.JSArray_methods.addAll$1(groups.$index(0, t3).members, t4); } sortedDescendants = A._setArrayType([], t6); if (groups._length !== 0) t2 = groups.containsKey$1(0, t1 ? _null : scopeGroupMarker.focusNode); else t2 = false; if (t2) { t2 = groups.$index(0, t1 ? _null : scopeGroupMarker.focusNode); t2.toString; new A.FocusTraversalPolicy__sortAllDescendants_visitGroups(groups, sortedDescendants).call$1(t2); } if (!!sortedDescendants.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(sortedDescendants, new A.FocusTraversalPolicy__sortAllDescendants_closure(), true); return sortedDescendants; }, _moveFocus$2$forward(currentNode, $forward) { var t2, focusedChild, firstFocus, sortedNodes, previousNode, previousNode0, _this = this, t1 = currentNode.get$nearestScope(); t1.toString; _this.super$FocusTraversalPolicy$invalidateScopeData(t1); _this.DirectionalFocusTraversalPolicyMixin__policyData.remove$1(0, t1); t2 = t1._focusedChildren; focusedChild = t2.length !== 0 ? B.JSArray_methods.get$last(t2) : null; if (focusedChild == null) { firstFocus = $forward ? _this._findInitialFocus$1(currentNode) : _this._findInitialFocus$2$fromEnd(currentNode, true); A._focusAndEnsureVisible(firstFocus, $forward ? B.ScrollPositionAlignmentPolicy_1 : B.ScrollPositionAlignmentPolicy_2); return true; } sortedNodes = _this._sortAllDescendants$2(t1, currentNode); if (sortedNodes.length === 0) return false; if ($forward && focusedChild == B.JSArray_methods.get$last(sortedNodes)) { A._focusAndEnsureVisible(B.JSArray_methods.get$first(sortedNodes), B.ScrollPositionAlignmentPolicy_1); return true; } if (!$forward && focusedChild == B.JSArray_methods.get$first(sortedNodes)) { A._focusAndEnsureVisible(B.JSArray_methods.get$last(sortedNodes), B.ScrollPositionAlignmentPolicy_2); return true; } for (t1 = J.get$iterator$ax($forward ? sortedNodes : new A.ReversedListIterable(sortedNodes, A._arrayInstanceType(sortedNodes)._eval$1("ReversedListIterable<1>"))), previousNode = null; t1.moveNext$0(); previousNode = previousNode0) { previousNode0 = t1.get$current(t1); if (previousNode == focusedChild) { t1 = $forward ? B.ScrollPositionAlignmentPolicy_1 : B.ScrollPositionAlignmentPolicy_2; previousNode0.requestFocus$0(); t2 = previousNode0._context; t2.toString; A.Scrollable_ensureVisible(t2, 1, t1); return true; } } return false; } }; A.FocusTraversalPolicy__sortAllDescendants_visitGroups.prototype = { call$1(info) { var t1, t2, t3, t4, _i, node, t5; for (t1 = info.members, t2 = t1.length, t3 = this.sortedDescendants, t4 = this.groups, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (t4.containsKey$1(0, node)) { t5 = t4.$index(0, node); t5.toString; this.call$1(t5); } else t3.push(node); } }, $signature: 1807 }; A.FocusTraversalPolicy__sortAllDescendants_closure.prototype = { call$1(node) { return !node.get$canRequestFocus() || node.get$skipTraversal(); }, $signature: 134 }; A._DirectionalPolicyDataEntry.prototype = {}; A._DirectionalPolicyData.prototype = {}; A.DirectionalFocusTraversalPolicyMixin.prototype = { findFirstFocusInDirection$2(currentNode, direction) { var _this = this; switch (direction.index) { case 0: return _this._sortAndFindInitial$3$first$vertical(currentNode, false, true); case 2: return _this._sortAndFindInitial$3$first$vertical(currentNode, true, true); case 3: return _this._sortAndFindInitial$3$first$vertical(currentNode, false, false); case 1: return _this._sortAndFindInitial$3$first$vertical(currentNode, true, false); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _sortAndFindInitial$3$first$vertical(currentNode, first, vertical) { var sorted = currentNode.get$nearestScope().get$traversalDescendants().toList$0(0); A.mergeSort(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure(vertical, first), type$.FocusNode); if (sorted.length !== 0) return B.JSArray_methods.get$first(sorted); return null; }, _sortAndFilterHorizontally$3(direction, target, nearestScope) { var result, sorted = nearestScope.get$traversalDescendants().toList$0(0); A.mergeSort(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure(), type$.FocusNode); switch (direction.index) { case 3: result = new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0(target), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); break; case 1: result = new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1(target), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); break; case 0: case 2: result = null; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return result; }, _sortAndFilterVertically$3(direction, target, nodes) { var sorted = nodes.toList$0(0); A.mergeSort(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure(), type$.FocusNode); switch (direction.index) { case 0: return new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0(target), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); case 2: return new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1(target), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); case 3: case 1: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return null; }, _popPolicyDataIfNeeded$3(direction, nearestScope, focusedChild) { var t3, popOrInvalidate, _this = this, _s80_ = string$.x60null_c, t1 = _this.DirectionalFocusTraversalPolicyMixin__policyData, policyData = t1.$index(0, nearestScope), t2 = policyData != null; if (t2) { t3 = policyData.history; t3 = t3.length !== 0 && B.JSArray_methods.get$first(t3).direction !== direction; } else t3 = false; if (t3) { t3 = policyData.history; if (B.JSArray_methods.get$last(t3).node._focus_manager$_parent == null) { _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); return false; } popOrInvalidate = new A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate(_this, policyData, nearestScope); switch (direction.index) { case 2: case 0: switch (B.JSArray_methods.get$first(t3).direction.index) { case 3: case 1: _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); break; case 0: case 2: if (popOrInvalidate.call$1(direction)) return true; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; case 3: case 1: switch (B.JSArray_methods.get$first(t3).direction.index) { case 3: case 1: if (popOrInvalidate.call$1(direction)) return true; break; case 0: case 2: _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } } if (t2 && policyData.history.length === 0) { _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); } return false; }, inDirection$2(currentNode, direction) { var firstFocus, focusedScrollable, eligibleNodes, filteredEligibleNodes, found, sorted, t2, inBand, policyData, newEntry, _this = this, _s80_ = string$.x60null_c, nearestScope = currentNode.get$nearestScope(), t1 = nearestScope._focusedChildren, focusedChild = t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null; if (focusedChild == null) { firstFocus = _this.findFirstFocusInDirection$2(currentNode, direction); if (firstFocus == null) firstFocus = currentNode; switch (direction.index) { case 0: case 3: A._focusAndEnsureVisible(firstFocus, B.ScrollPositionAlignmentPolicy_2); break; case 1: case 2: A._focusAndEnsureVisible(firstFocus, B.ScrollPositionAlignmentPolicy_1); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return true; } if (_this._popPolicyDataIfNeeded$3(direction, nearestScope, focusedChild)) return true; t1 = focusedChild._context; t1.toString; focusedScrollable = A.Scrollable_of(t1); t1 = direction.index; switch (t1) { case 2: case 0: eligibleNodes = _this._sortAndFilterVertically$3(direction, focusedChild.get$rect(focusedChild), nearestScope.get$traversalDescendants()); if (focusedScrollable != null && !focusedScrollable._scrollable$_position.get$atEdge()) { eligibleNodes.toString; filteredEligibleNodes = new A.WhereIterable(eligibleNodes, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure(focusedScrollable), eligibleNodes.$ti._eval$1("WhereIterable")); if (!filteredEligibleNodes.get$isEmpty(filteredEligibleNodes)) eligibleNodes = filteredEligibleNodes; } if (!eligibleNodes.get$iterator(eligibleNodes).moveNext$0()) { found = null; break; } sorted = A.List_List$of(eligibleNodes, true, A._instanceType(eligibleNodes)._eval$1("Iterable.E")); if (direction === B.TraversalDirection_0) { t2 = A._arrayInstanceType(sorted)._eval$1("ReversedListIterable<1>"); sorted = A.List_List$of(new A.ReversedListIterable(sorted, t2), true, t2._eval$1("ListIterable.E")); } inBand = new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0(new A.Rect(focusedChild.get$rect(focusedChild).left, -1 / 0, focusedChild.get$rect(focusedChild).right, 1 / 0)), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); if (!inBand.get$isEmpty(inBand)) { found = inBand.get$first(inBand); break; } A.mergeSort(sorted, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1(focusedChild), type$.FocusNode); found = B.JSArray_methods.get$first(sorted); break; case 1: case 3: eligibleNodes = _this._sortAndFilterHorizontally$3(direction, focusedChild.get$rect(focusedChild), nearestScope); if (focusedScrollable != null && !focusedScrollable._scrollable$_position.get$atEdge()) { eligibleNodes.toString; filteredEligibleNodes = new A.WhereIterable(eligibleNodes, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2(focusedScrollable), eligibleNodes.$ti._eval$1("WhereIterable")); if (!filteredEligibleNodes.get$isEmpty(filteredEligibleNodes)) eligibleNodes = filteredEligibleNodes; } if (!eligibleNodes.get$iterator(eligibleNodes).moveNext$0()) { found = null; break; } sorted = A.List_List$of(eligibleNodes, true, A._instanceType(eligibleNodes)._eval$1("Iterable.E")); if (direction === B.TraversalDirection_3) { t2 = A._arrayInstanceType(sorted)._eval$1("ReversedListIterable<1>"); sorted = A.List_List$of(new A.ReversedListIterable(sorted, t2), true, t2._eval$1("ListIterable.E")); } inBand = new A.WhereIterable(sorted, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure3(new A.Rect(-1 / 0, focusedChild.get$rect(focusedChild).top, 1 / 0, focusedChild.get$rect(focusedChild).bottom)), A._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); if (!inBand.get$isEmpty(inBand)) { found = inBand.get$first(inBand); break; } A.mergeSort(sorted, new A.DirectionalFocusTraversalPolicyMixin_inDirection_closure4(focusedChild), type$.FocusNode); found = B.JSArray_methods.get$first(sorted); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } if (found != null) { t2 = _this.DirectionalFocusTraversalPolicyMixin__policyData; policyData = t2.$index(0, nearestScope); newEntry = new A._DirectionalPolicyDataEntry(direction, focusedChild); if (policyData != null) policyData.history.push(newEntry); else t2.$indexSet(0, nearestScope, new A._DirectionalPolicyData(A._setArrayType([newEntry], type$.JSArray__DirectionalPolicyDataEntry))); switch (t1) { case 0: case 3: A._focusAndEnsureVisible(found, B.ScrollPositionAlignmentPolicy_2); break; case 2: case 1: A._focusAndEnsureVisible(found, B.ScrollPositionAlignmentPolicy_1); break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } return true; } return false; } }; A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure.prototype = { call$1(entry) { return entry.node === this.node; }, $signature: 1806 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure.prototype = { call$2(a, b) { if (this.vertical) if (this.first) return J.compareTo$1$ns(a.get$rect(a).top, b.get$rect(b).top); else return J.compareTo$1$ns(b.get$rect(b).bottom, a.get$rect(a).bottom); else if (this.first) return J.compareTo$1$ns(a.get$rect(a).left, b.get$rect(b).left); else return J.compareTo$1$ns(b.get$rect(b).right, a.get$rect(a).right); }, $signature: 269 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure.prototype = { call$2(a, b) { return J.compareTo$1$ns(a.get$rect(a).get$center()._dx, b.get$rect(b).get$center()._dx); }, $signature: 269 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx <= t1.left; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx >= t1.right; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure.prototype = { call$2(a, b) { return J.compareTo$1$ns(a.get$rect(a).get$center()._dy, b.get$rect(b).get$center()._dy); }, $signature: 269 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy <= t1.top; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy >= t1.bottom; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate.prototype = { call$1(direction) { var t2, alignmentPolicy, lastNode = this.policyData.history.pop().node, t1 = lastNode._context; t1.toString; t1 = A.Scrollable_of(t1); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t2.toString; if (t1 != A.Scrollable_of(t2)) { t1 = this.$this; t2 = this.nearestScope; t1.super$FocusTraversalPolicy$invalidateScopeData(t2); t1.DirectionalFocusTraversalPolicyMixin__policyData.remove$1(0, t2); return false; } switch (direction.index) { case 0: case 3: alignmentPolicy = B.ScrollPositionAlignmentPolicy_2; break; case 1: case 2: alignmentPolicy = B.ScrollPositionAlignmentPolicy_1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } A._focusAndEnsureVisible(lastNode, alignmentPolicy); return true; }, $signature: 1805 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure.prototype = { call$1(node) { var t1 = node._context; t1.toString; return A.Scrollable_of(t1) === this.focusedScrollable; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0.prototype = { call$1(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1.prototype = { call$2(a, b) { var t1 = this.focusedChild; return B.JSNumber_methods.compareTo$1(Math.abs(a.get$rect(a).get$center()._dx - t1.get$rect(t1).get$center()._dx), Math.abs(b.get$rect(b).get$center()._dx - t1.get$rect(t1).get$center()._dx)); }, $signature: 269 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2.prototype = { call$1(node) { var t1 = node._context; t1.toString; return A.Scrollable_of(t1) === this.focusedScrollable; }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure3.prototype = { call$1(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 134 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure4.prototype = { call$2(a, b) { var t1 = this.focusedChild; return B.JSNumber_methods.compareTo$1(Math.abs(a.get$rect(a).get$center()._dy - t1.get$rect(t1).get$center()._dy), Math.abs(b.get$rect(b).get$center()._dy - t1.get$rect(t1).get$center()._dy)); }, $signature: 269 }; A._ReadingOrderSortData.prototype = { get$directionalAncestors() { var t1 = this._directionalAncestors; if (t1 == null) { t1 = this.node._context; t1.toString; t1 = this._directionalAncestors = new A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors().call$1(t1); } t1.toString; return t1; } }; A._ReadingOrderSortData_commonDirectionalityOf_closure.prototype = { call$1(member) { var t1 = member.get$directionalAncestors(); t1.toString; return A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); }, $signature: 1799 }; A._ReadingOrderSortData_sortWithDirectionality_closure.prototype = { call$2(a, b) { switch (this.directionality) { case B.TextDirection_1: return J.compareTo$1$ns(a.rect.left, b.rect.left); case B.TextDirection_0: return J.compareTo$1$ns(b.rect.right, a.rect.right); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 527 }; A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors.prototype = { call$1(context) { var t2, ancestor, result = A._setArrayType([], type$.JSArray_Directionality), t1 = type$.Directionality, directionalityElement = context.getElementForInheritedWidgetOfExactType$1$0(t1); for (; directionalityElement != null;) { t2 = directionalityElement._widget; t2.toString; result.push(t1._as(t2)); t2 = A._getAncestor(directionalityElement, 1); if (t2 == null) directionalityElement = null; else { t2 = t2._inheritedWidgets; ancestor = t2 == null ? null : t2.$index(0, A.createRuntimeType(t1)); directionalityElement = ancestor; } } return result; }, $signature: 1798 }; A._ReadingOrderDirectionalGroupData.prototype = { get$rect(_) { var t1, t2, t3, _this = this; if (_this._rect == null) for (t1 = _this.members, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Rect>"), t1 = new A.MappedListIterable(t1, new A._ReadingOrderDirectionalGroupData_rect_closure(), t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); t2.moveNext$0();) { t1 = t2.__internal$_current; t3 = _this._rect; if (t3 == null) { _this._rect = t1; t3 = t1; } _this._rect = t3.expandToInclude$1(t1); } t1 = _this._rect; t1.toString; return t1; } }; A._ReadingOrderDirectionalGroupData_rect_closure.prototype = { call$1(data) { return data.rect; }, $signature: 1797 }; A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure.prototype = { call$2(a, b) { switch (this.directionality) { case B.TextDirection_1: return J.compareTo$1$ns(a.get$rect(a).left, b.get$rect(b).left); case B.TextDirection_0: return J.compareTo$1$ns(b.get$rect(b).right, a.get$rect(a).right); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 1773 }; A.ReadingOrderTraversalPolicy.prototype = { _collectDirectionalityGroups$1(candidates) { var t2, _i, candidate, currentDirection0, t3, currentDirection = B.JSArray_methods.get$first(candidates).directionality, t1 = type$.JSArray__ReadingOrderSortData, currentGroup = A._setArrayType([], t1), result = A._setArrayType([], type$.JSArray__ReadingOrderDirectionalGroupData); for (t2 = candidates.length, _i = 0; _i < candidates.length; candidates.length === t2 || (0, A.throwConcurrentModificationError)(candidates), ++_i) { candidate = candidates[_i]; currentDirection0 = candidate.directionality; if (currentDirection0 == currentDirection) { currentGroup.push(candidate); continue; } result.push(new A._ReadingOrderDirectionalGroupData(currentGroup)); currentGroup = A._setArrayType([candidate], t1); currentDirection = currentDirection0; } if (currentGroup.length !== 0) result.push(new A._ReadingOrderDirectionalGroupData(currentGroup)); for (t1 = result.length, _i = 0; _i < result.length; result.length === t1 || (0, A.throwConcurrentModificationError)(result), ++_i) { t2 = result[_i].members; if (t2.length === 1) continue; t3 = B.JSArray_methods.get$first(t2).directionality; t3.toString; A._ReadingOrderSortData_sortWithDirectionality(t2, t3); } return result; }, _pickNext$1(candidates) { var topmost, inBandOfTop, nearestCommonDirectionality, bandGroups; A.mergeSort(candidates, new A.ReadingOrderTraversalPolicy__pickNext_closure(), type$._ReadingOrderSortData); topmost = B.JSArray_methods.get$first(candidates); inBandOfTop = new A.ReadingOrderTraversalPolicy__pickNext_inBand().call$2(topmost, candidates); if (J.get$length$asx(inBandOfTop) <= 1) return topmost; nearestCommonDirectionality = A._ReadingOrderSortData_commonDirectionalityOf(inBandOfTop); nearestCommonDirectionality.toString; A._ReadingOrderSortData_sortWithDirectionality(inBandOfTop, nearestCommonDirectionality); bandGroups = this._collectDirectionalityGroups$1(inBandOfTop); if (bandGroups.length === 1) return B.JSArray_methods.get$first(B.JSArray_methods.get$first(bandGroups).members); A._ReadingOrderDirectionalGroupData_sortWithDirectionality(bandGroups, nearestCommonDirectionality); return B.JSArray_methods.get$first(B.JSArray_methods.get$first(bandGroups).members); }, sortDescendants$2(descendants, currentNode) { var t1, t2, t3, t4, _i, node, t5, t6, ancestor, sortedList, current, next; if (descendants.length <= 1) return descendants; t1 = A._setArrayType([], type$.JSArray__ReadingOrderSortData); for (t2 = descendants.length, t3 = type$.nullable_Directionality, t4 = type$.Directionality, _i = 0; _i < descendants.length; descendants.length === t2 || (0, A.throwConcurrentModificationError)(descendants), ++_i) { node = descendants[_i]; t5 = node.get$rect(node); t6 = node._context._inheritedWidgets; ancestor = t6 == null ? null : t6.$index(0, A.createRuntimeType(t4)); if (ancestor == null) t6 = null; else { t6 = ancestor._widget; t6.toString; } t3._as(t6); t1.push(new A._ReadingOrderSortData(t6 == null ? null : t6.textDirection, t5, node)); } sortedList = A._setArrayType([], type$.JSArray_FocusNode); current = this._pickNext$1(t1); sortedList.push(current.node); B.JSArray_methods.remove$1(t1, current); for (; t1.length !== 0;) { next = this._pickNext$1(t1); sortedList.push(next.node); B.JSArray_methods.remove$1(t1, next); } return sortedList; } }; A.ReadingOrderTraversalPolicy__pickNext_closure.prototype = { call$2(a, b) { return J.compareTo$1$ns(a.rect.top, b.rect.top); }, $signature: 527 }; A.ReadingOrderTraversalPolicy__pickNext_inBand.prototype = { call$2(current, candidates) { var t1 = current.rect, t2 = A._arrayInstanceType(candidates)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(candidates, new A.ReadingOrderTraversalPolicy__pickNext_inBand_closure(new A.Rect(-1 / 0, t1.top, 1 / 0, t1.bottom)), t2), true, t2._eval$1("Iterable.E")); }, $signature: 1772 }; A.ReadingOrderTraversalPolicy__pickNext_inBand_closure.prototype = { call$1(item) { var t1 = item.rect.intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 1771 }; A.FocusTraversalGroup.prototype = { createState$0() { return new A._FocusTraversalGroupState(B._StateLifecycle_0); } }; A._FocusTraversalGroupState.prototype = { initState$0() { this.super$State$initState(); this.focusNode = A.FocusNode$(false, "FocusTraversalGroup", true, true, null, null, true); }, dispose$0(_) { var t1 = this.focusNode; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t4, t5, _null = null, t1 = this._widget, t2 = t1.policy, t3 = this.focusNode; t3.toString; t4 = t1.descendantsAreFocusable; t5 = t1.descendantsAreTraversable; return new A._FocusTraversalGroupMarker(t2, t3, A.Focus$(false, false, t1.child, _null, t4, t5, t3, false, _null, _null, _null, _null, true), _null); } }; A._FocusTraversalGroupMarker.prototype = { updateShouldNotify$1(oldWidget) { return false; } }; A.RequestFocusAction.prototype = { invoke$1(intent) { A._focusAndEnsureVisible(intent.get$focusNode(intent), B.ScrollPositionAlignmentPolicy_0); } }; A.NextFocusIntent.prototype = {}; A.NextFocusAction.prototype = { invoke$1(intent) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); } }; A.PreviousFocusIntent.prototype = {}; A.PreviousFocusAction.prototype = { invoke$1(intent) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); } }; A.DirectionalFocusIntent.prototype = {}; A.DirectionalFocusAction.prototype = { invoke$1(intent) { var t1; intent.toString; if (!this._isForTextField) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy.inDirection$2(t1, intent.direction); } } }; A._FocusTraversalPolicy_Object_Diagnosticable.prototype = {}; A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin.prototype = { changedScope$2$node$oldScope(node, oldScope) { var t1; this.super$FocusTraversalPolicy$changedScope(node, oldScope); t1 = this.DirectionalFocusTraversalPolicyMixin__policyData.$index(0, oldScope); if (t1 != null) { t1 = t1.history; if (!!t1.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(t1, new A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure(node), true); } } }; A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable.prototype = {}; A.__ReadingOrderSortData_Object_Diagnosticable.prototype = {}; A.Form.prototype = { createState$0() { return new A.FormState(A.LinkedHashSet_LinkedHashSet$_empty(type$.FormFieldState_dynamic), B._StateLifecycle_0); } }; A.FormState.prototype = { _fieldDidChange$0() { var _this = this; _this._widget.toString; _this._hasInteractedByUser = _this._fields.any$1(0, new A.FormState__fieldDidChange_closure()); _this._forceRebuild$0(); }, _forceRebuild$0() { this.setState$1(new A.FormState__forceRebuild_closure(this)); }, build$1(_, context) { var t1, _this = this; switch (_this._widget.autovalidateMode.index) { case 1: _this._validate$0(); break; case 2: if (_this._hasInteractedByUser) _this._validate$0(); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this._widget; return new A.WillPopScope(new A._FormScope(_this, _this._generation, t1.child, null), null, null); }, save$0(_) { var t1, t2, t3, t4, value; for (t1 = this._fields, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current; t3 = t2._widget; t4 = t3.onSaved; if (t4 != null) { value = t2.__FormFieldState__value; t4.call$1(value === $ ? t2.__FormFieldState__value = t3.initialValue : value); } } }, validate$0() { this._hasInteractedByUser = true; this._forceRebuild$0(); return this._validate$0(); }, _validate$0() { var t1, hasError; for (t1 = this._fields, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1), hasError = false; t1.moveNext$0();) hasError = !t1._collection$_current.validate$0() || hasError; return !hasError; } }; A.FormState__fieldDidChange_closure.prototype = { call$1(field) { return field._hasInteractedByUser._restoration_properties$_value; }, $signature: 1769 }; A.FormState__forceRebuild_closure.prototype = { call$0() { ++this.$this._generation; }, $signature: 0 }; A._FormScope.prototype = { updateShouldNotify$1(old) { return this._generation !== old._generation; } }; A.FormField.prototype = { createState$0() { return A.FormFieldState$(A._instanceType(this)._eval$1("FormField.T")); } }; A.FormFieldState.prototype = { get$_form$_value() { var value = this.__FormFieldState__value; return value === $ ? this.__FormFieldState__value = this._widget.initialValue : value; }, get$value(_) { return this.get$_form$_value(); }, validate$0() { this.setState$1(new A.FormFieldState_validate_closure(this)); return this._errorText._restoration_properties$_value == null; }, _validate$0() { var t1 = this._widget.validator; if (t1 != null) this._errorText.set$value(0, t1.call$1(this.get$_form$_value())); }, didChange$1(value) { var t1; this.setState$1(new A.FormFieldState_didChange_closure(this, value)); t1 = this._framework$_element; t1.toString; t1 = A.Form_of(t1); if (t1 != null) t1._fieldDidChange$0(); }, get$restorationId() { return this._widget.restorationId; }, restoreState$2(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this._errorText, "error_text"); _this.registerForRestoration$2(_this._hasInteractedByUser, "has_interacted_by_user"); }, deactivate$0() { var t1 = this._framework$_element; t1.toString; t1 = A.Form_of(t1); if (t1 != null) t1._fields.remove$1(0, this); this.super$State$deactivate(); }, build$1(_, context) { var _this = this, t1 = _this._widget; if (t1.enabled) switch (t1.autovalidateMode.index) { case 1: _this._validate$0(); break; case 2: if (_this._hasInteractedByUser._restoration_properties$_value) _this._validate$0(); break; case 0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A.Form_of(context); if (t1 != null) t1._fields.add$1(0, _this); return _this._widget.builder.call$1(_this); } }; A.FormFieldState_validate_closure.prototype = { call$0() { this.$this._validate$0(); }, $signature: 0 }; A.FormFieldState_didChange_closure.prototype = { call$0() { var t1 = this.$this; t1.__FormFieldState__value = this.value; t1._hasInteractedByUser.super$RestorableValue$value(0, true); }, $signature: 0 }; A.AutovalidateMode.prototype = { toString$0(_) { return "AutovalidateMode." + this._core$_name; } }; A._FormFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A._FormFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A._FormFieldState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.ObjectKey.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.ObjectKey && other.value === this.value; }, get$hashCode(_) { return A.Object_hash(A.getRuntimeType(this), A.objectHashCode(this.value), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _s16_ = "#"; if (A.getRuntimeType(this) === B.Type_ObjectKey_Gsr) return "[" + (_s16_ + A.shortHash(this.value)) + "]"; return "[ObjectKey " + (_s16_ + A.shortHash(this.value)) + "]"; }, get$value(receiver) { return this.value; } }; A.GlobalKey.prototype = { get$currentState() { var t1, element = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this); if (element instanceof A.StatefulElement) { t1 = element._framework$_state; t1.toString; if (A._instanceType(this)._eval$1("GlobalKey.T")._is(t1)) return t1; } return null; } }; A.LabeledGlobalKey.prototype = { toString$0(_) { var _this = this, t1 = _this._debugLabel, label = t1 != null ? " " + t1 : ""; if (A.getRuntimeType(_this) === B.Type_LabeledGlobalKey_6TW) return "[GlobalKey#" + A.shortHash(_this) + label + "]"; return "[" + ("#" + A.shortHash(_this)) + label + "]"; } }; A.GlobalObjectKey.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return A._instanceType(this)._eval$1("GlobalObjectKey")._is(other) && other.value == this.value; }, get$hashCode(_) { return A.objectHashCode(this.value); }, toString$0(_) { var _s15_ = "GlobalObjectKey", selfType = B.JSString_methods.endsWith$1(_s15_, ">") ? B.JSString_methods.substring$2(_s15_, 0, -8) : _s15_; return "[" + selfType + " " + ("#" + A.shortHash(this.value)) + "]"; }, get$value(receiver) { return this.value; } }; A.Widget.prototype = { toStringShort$0() { var t1 = this.key; return t1 == null ? "Widget" : "Widget-" + t1.toString$0(0); }, $eq(_, other) { if (other == null) return false; return this.super$Object$$eq(0, other); }, get$hashCode(_) { return A.Object.prototype.get$hashCode.call(this, this); } }; A.StatelessWidget.prototype = { createElement$0(_) { return new A.StatelessElement(this, B._ElementLifecycle_0); } }; A.StatefulWidget.prototype = { createElement$0(_) { return A.StatefulElement$(this); } }; A._StateLifecycle.prototype = { toString$0(_) { return "_StateLifecycle." + this._core$_name; } }; A.State.prototype = { get$widget() { var t1 = this._widget; t1.toString; return t1; }, initState$0() { }, didUpdateWidget$1(oldWidget) { }, reassemble$0() { }, setState$1(fn) { fn.call$0(); this._framework$_element.markNeedsBuild$0(); }, deactivate$0() { }, activate$0() { }, dispose$0(_) { }, didChangeDependencies$0() { } }; A.ProxyWidget.prototype = { get$child() { return this.child; } }; A.ParentDataWidget.prototype = { createElement$0(_) { return new A.ParentDataElement(this, B._ElementLifecycle_0, A._instanceType(this)._eval$1("ParentDataElement")); } }; A.InheritedWidget.prototype = { createElement$0(_) { return A.InheritedElement$(this); } }; A.RenderObjectWidget.prototype = { updateRenderObject$2(context, renderObject) { }, didUnmountRenderObject$1(renderObject) { } }; A.LeafRenderObjectWidget.prototype = { createElement$0(_) { return new A.LeafRenderObjectElement(this, B._ElementLifecycle_0); } }; A.SingleChildRenderObjectWidget.prototype = { createElement$0(_) { return new A.SingleChildRenderObjectElement(this, B._ElementLifecycle_0); } }; A.MultiChildRenderObjectWidget.prototype = { createElement$0(_) { return A.MultiChildRenderObjectElement$(this); } }; A._ElementLifecycle.prototype = { toString$0(_) { return "_ElementLifecycle." + this._core$_name; } }; A._InactiveElements.prototype = { _unmount$1(element) { element.visitChildren$1(new A._InactiveElements__unmount_closure(this, element)); element.unmount$0(); }, _unmountAll$0() { var elements, t1, elements0, _this = this; _this._locked = true; t1 = _this._framework$_elements; elements0 = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); B.JSArray_methods.sort$1(elements0, A.framework_Element__sort$closure()); elements = elements0; t1.clear$0(0); try { t1 = elements; new A.ReversedListIterable(t1, A.instanceType(t1)._eval$1("ReversedListIterable<1>")).forEach$1(0, _this.get$_unmount()); } finally { _this._locked = false; } }, add$1(_, element) { if (element._lifecycleState === B._ElementLifecycle_1) { element.deactivate$0(); element.visitChildren$1(A.framework__InactiveElements__deactivateRecursively$closure()); } this._framework$_elements.add$1(0, element); } }; A._InactiveElements__unmount_closure.prototype = { call$1(child) { this.$this._unmount$1(child); }, $signature: 97 }; A.BuildOwner.prototype = { scheduleBuildFor$1(element) { var _this = this; if (element._inDirtyList) { _this._dirtyElementsNeedsResorting = true; return; } if (!_this._scheduledFlushDirtyElements && _this.onBuildScheduled != null) { _this._scheduledFlushDirtyElements = true; _this.onBuildScheduled.call$0(); } _this._dirtyElements.push(element); element._inDirtyList = true; }, lockState$1(callback) { try { callback.call$0(); } finally { } }, buildScope$2(context, callback) { var element, isTimelineTracked, e, stack, element0, t2, isTimelineTracked0, exception, t3, t4, _i, _this = this, _box_1 = {}, t1 = callback == null; if (t1 && _this._dirtyElements.length === 0) return; _box_1.debugTimelineArguments = B.Map_9aZ6I; A.Timeline_startSync("BUILD", B.Map_9aZ6I, null); try { _this._scheduledFlushDirtyElements = true; if (!t1) { _box_1.debugPreviousBuildTarget = null; _this._dirtyElementsNeedsResorting = false; try { callback.call$0(); } finally { } } t1 = _this._dirtyElements; B.JSArray_methods.sort$1(t1, A.framework_Element__sort$closure()); _this._dirtyElementsNeedsResorting = false; _box_1.dirtyCount = t1.length; _box_1.index = 0; for (t2 = 0; t2 < _box_1.dirtyCount;) { element = t1[t2]; element._widget.toString; if (!$.debugProfileBuildsEnabled) isTimelineTracked0 = false; else isTimelineTracked0 = true; isTimelineTracked = isTimelineTracked0; if (isTimelineTracked) { t2 = element._widget; A.Timeline_startSync(t2.get$runtimeType(t2).toString$0(0), B.Map_9aZ6I, null); } try { element.rebuild$0(); } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); t2 = A.ErrorDescription$("while rebuilding dirty elements"); t3 = $.$get$FlutterError_onError(); if (t3 != null) t3.call$1(new A.FlutterErrorDetails(e, stack, "widgets library", t2, null, new A.BuildOwner_buildScope_closure(_box_1, _this, element), false)); } if (isTimelineTracked) A.Timeline_finishSync(); t2 = ++_box_1.index; t3 = _box_1.dirtyCount; t4 = t1.length; if (t3 >= t4) { t3 = _this._dirtyElementsNeedsResorting; t3.toString; } else t3 = true; if (t3) { if (!!t1.immutable$list) A.throwExpression(A.UnsupportedError$("sort")); t2 = t4 - 1; if (t2 - 0 <= 32) A.Sort__insertionSort(t1, 0, t2, A.framework_Element__sort$closure()); else A.Sort__dualPivotQuicksort(t1, 0, t2, A.framework_Element__sort$closure()); t2 = _this._dirtyElementsNeedsResorting = false; _box_1.dirtyCount = t1.length; while (true) { t3 = _box_1.index; if (!(t3 > 0 ? t1[t3 - 1]._dirty : t2)) break; _box_1.index = t3 - 1; } t2 = t3; } } } finally { for (t1 = _this._dirtyElements, t2 = t1.length, _i = 0; _i < t2; ++_i) { element0 = t1[_i]; element0._inDirtyList = false; } B.JSArray_methods.set$length(t1, 0); _this._scheduledFlushDirtyElements = false; _this._dirtyElementsNeedsResorting = null; A.Timeline_finishSync(); } }, buildScope$1(context) { return this.buildScope$2(context, null); }, finalizeTree$0() { var e, stack, exception; A.Timeline_startSync("FINALIZE TREE", B.Map_9aZ6I, null); try { this.lockState$1(this._inactiveElements.get$_unmountAll()); } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); A._debugReportException(A.ErrorSummary$("while finalizing the widget tree"), e, stack, null); } finally { A.Timeline_finishSync(); } }, reassemble$2(root, reassembleConfig) { A.Timeline_startSync("Preparing Hot Reload (widgets)", null, null); try { root._debugReassembleConfig = reassembleConfig; root.reassemble$0(); } finally { A.Timeline_finishSync(); } } }; A.BuildOwner_buildScope_closure.prototype = { call$0() { var _null = null, t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode), t2 = this._box_1, t3 = t2.index, t4 = this.$this._dirtyElements.length, t5 = "The element being rebuilt at the time was index " + t3; t2 = "" + t2.dirtyCount; if (t3 < t4) J.add$1$ax(t1, A.DiagnosticsProperty$(t5 + " of " + t2, this.element, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.Element_2)); else J.add$1$ax(t1, A.ErrorHint$(t5 + " of " + t2 + ", but _dirtyElements only had " + t4 + " entries. This suggests some confusion in the framework internals.")); return t1; }, $signature: 138 }; A.NotifiableElementMixin.prototype = { attachNotificationTree$0() { var t1 = this._framework$_parent; this._notificationTree = new A._NotificationNode(this, t1 == null ? null : t1._notificationTree); } }; A._NotificationNode.prototype = { dispatchNotification$1(notification) { var t1 = this.current.onNotification$1(notification); if (t1 !== false) return; t1 = this.parent; if (t1 != null) t1.dispatchNotification$1(notification); } }; A.Element0.prototype = { $eq(_, other) { if (other == null) return false; return this === other; }, reassemble$0() { var _this = this; if (A._debugShouldReassemble(_this._debugReassembleConfig, _this._widget)) { _this.markNeedsBuild$0(); _this._debugReassembleConfig = null; } _this.visitChildren$1(new A.Element_reassemble_closure(_this)); _this._debugReassembleConfig = null; }, get$renderObject() { var t1 = {}; t1.result = null; new A.Element_renderObject_visit(t1).call$1(this); return t1.result; }, describeElement$1($name) { var _null = null; return A.DiagnosticsProperty$($name, this, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.Element_2); }, visitChildren$1(visitor) { }, updateChild$3(child, newWidget, newSlot) { var t1, isTimelineTracked, newChild, _this = this; if (newWidget == null) { if (child != null) _this.deactivateChild$1(child); return null; } if (child != null) { t1 = child._widget.$eq(0, newWidget); if (t1) { if (!J.$eq$(child._slot, newSlot)) _this.updateSlotForChild$2(child, newSlot); t1 = child; } else { t1 = child._widget; t1 = t1.get$runtimeType(t1) === newWidget.get$runtimeType(newWidget) && J.$eq$(t1.key, newWidget.key); if (t1) { if (!J.$eq$(child._slot, newSlot)) _this.updateSlotForChild$2(child, newSlot); if (!$.debugProfileBuildsEnabled) isTimelineTracked = false; else isTimelineTracked = true; if (isTimelineTracked) A.Timeline_startSync(A.getRuntimeType(newWidget).toString$0(0), B.Map_9aZ6I, null); child.update$1(0, newWidget); if (isTimelineTracked) A.Timeline_finishSync(); t1 = child; } else { _this.deactivateChild$1(child); newChild = _this.inflateWidget$2(newWidget, newSlot); t1 = newChild; } } } else { newChild = _this.inflateWidget$2(newWidget, newSlot); t1 = newChild; } return t1; }, mount$2($parent, newSlot) { var t1, key, _this = this; _this._framework$_parent = $parent; _this._slot = newSlot; _this._lifecycleState = B._ElementLifecycle_1; t1 = $parent != null; _this.__Element__depth = t1 ? A._lateReadCheck($parent.__Element__depth, "_depth") + 1 : 1; if (t1) _this._owner = $parent._owner; key = _this._widget.key; if (key instanceof A.GlobalKey) _this._owner._globalKeyRegistry.$indexSet(0, key, _this); _this._updateInheritance$0(); _this.attachNotificationTree$0(); }, update$1(_, newWidget) { this._widget = newWidget; }, updateSlotForChild$2(child, newSlot) { new A.Element_updateSlotForChild_visit(newSlot).call$1(child); }, _updateSlot$1(newSlot) { this._slot = newSlot; }, _updateDepth$1(parentDepth) { var expectedDepth = parentDepth + 1; if (A._lateReadCheck(this.__Element__depth, "_depth") < expectedDepth) { this.__Element__depth = expectedDepth; this.visitChildren$1(new A.Element__updateDepth_closure(expectedDepth)); } }, detachRenderObject$0() { this.visitChildren$1(new A.Element_detachRenderObject_closure()); this._slot = null; }, attachRenderObject$1(newSlot) { this.visitChildren$1(new A.Element_attachRenderObject_closure(newSlot)); this._slot = newSlot; }, _retakeInactiveElement$2(key, newWidget) { var t1, $parent, element = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key); if (element == null) return null; t1 = element._widget; if (!(t1.get$runtimeType(t1) === newWidget.get$runtimeType(newWidget) && J.$eq$(t1.key, newWidget.key))) return null; $parent = element._framework$_parent; if ($parent != null) { $parent.forgetChild$1(element); $parent.deactivateChild$1(element); } this._owner._inactiveElements._framework$_elements.remove$1(0, element); return element; }, inflateWidget$2(newWidget, newSlot) { var isTimelineTracked, key, newChild, updatedChild, newChild0, isTimelineTracked0, t1, _this = this; if (!$.debugProfileBuildsEnabled) isTimelineTracked0 = false; else isTimelineTracked0 = true; isTimelineTracked = isTimelineTracked0; if (isTimelineTracked) A.Timeline_startSync(J.get$runtimeType$(newWidget).toString$0(0), B.Map_9aZ6I, null); try { key = newWidget.key; if (key instanceof A.GlobalKey) { newChild = _this._retakeInactiveElement$2(key, newWidget); if (newChild != null) { t1 = newChild; t1._framework$_parent = _this; t1.toString; t1._updateDepth$1(A._lateReadCheck(_this.__Element__depth, "_depth")); t1.activate$0(); t1.visitChildren$1(A.framework_Element__activateRecursively$closure()); t1.attachRenderObject$1(newSlot); updatedChild = _this.updateChild$3(newChild, newWidget, newSlot); t1 = updatedChild; t1.toString; return t1; } } newChild0 = newWidget.createElement$0(0); newChild0.mount$2(_this, newSlot); return newChild0; } finally { if (isTimelineTracked) A.Timeline_finishSync(); } }, deactivateChild$1(child) { child._framework$_parent = null; child.detachRenderObject$0(); this._owner._inactiveElements.add$1(0, child); }, forgetChild$1(child) { }, activate$0() { var _this = this, t1 = _this._dependencies, t2 = t1 == null, hadDependencies = !t2 && t1._collection$_length !== 0 || _this._hadUnsatisfiedDependencies; _this._lifecycleState = B._ElementLifecycle_1; if (!t2) t1.clear$0(0); _this._hadUnsatisfiedDependencies = false; _this._updateInheritance$0(); _this.attachNotificationTree$0(); if (_this._dirty) _this._owner.scheduleBuildFor$1(_this); if (hadDependencies) _this.didChangeDependencies$0(); }, deactivate$0() { var _this = this, t1 = _this._dependencies; if (t1 != null && t1._collection$_length !== 0) for (t1 = new A._HashSetIterator(t1, t1._computeElements$0(), A._instanceType(t1)._eval$1("_HashSetIterator<1>")); t1.moveNext$0();) t1._collection$_current._dependents.remove$1(0, _this); _this._inheritedWidgets = null; _this._lifecycleState = B._ElementLifecycle_2; }, unmount$0() { var _this = this, t1 = _this._widget, key = t1 == null ? null : t1.key; if (key instanceof A.GlobalKey) { t1 = _this._owner._globalKeyRegistry; if (J.$eq$(t1.$index(0, key), _this)) t1.remove$1(0, key); } _this._dependencies = _this._widget = null; _this._lifecycleState = B._ElementLifecycle_3; }, get$size(_) { var t1, renderObject = this.get$renderObject(); if (renderObject instanceof A.RenderBox) { t1 = renderObject._box$_size; t1.toString; return t1; } return null; }, dependOnInheritedElement$2$aspect(ancestor, aspect) { var t1 = this._dependencies; (t1 == null ? this._dependencies = A.HashSet_HashSet(type$.InheritedElement) : t1).add$1(0, ancestor); ancestor.updateDependencies$2(this, aspect); t1 = ancestor._widget; t1.toString; return type$.InheritedWidget._as(t1); }, dependOnInheritedWidgetOfExactType$1$0($T) { var t1 = this._inheritedWidgets, ancestor = t1 == null ? null : t1.$index(0, A.createRuntimeType($T)); if (ancestor != null) return $T._as(this.dependOnInheritedElement$2$aspect(ancestor, null)); this._hadUnsatisfiedDependencies = true; return null; }, getElementForInheritedWidgetOfExactType$1$0($T) { var t1 = this._inheritedWidgets; return t1 == null ? null : t1.$index(0, A.createRuntimeType($T)); }, attachNotificationTree$0() { var t1 = this._framework$_parent; this._notificationTree = t1 == null ? null : t1._notificationTree; }, _updateInheritance$0() { var t1 = this._framework$_parent; this._inheritedWidgets = t1 == null ? null : t1._inheritedWidgets; }, findAncestorWidgetOfExactType$1$0($T) { var t1, t2, ancestor = this._framework$_parent; while (true) { t1 = ancestor == null; if (!t1) { t2 = ancestor._widget; t2 = t2.get$runtimeType(t2) !== A.createRuntimeType($T); } else t2 = false; if (!t2) break; ancestor = ancestor._framework$_parent; } if (t1) t1 = null; else { t1 = ancestor._widget; t1.toString; } return $T._eval$1("0?")._as(t1); }, findAncestorStateOfType$1$0($T) { var t1, t2, ancestor = this._framework$_parent; for (; t1 = ancestor == null, !t1;) { if (ancestor instanceof A.StatefulElement) { t2 = ancestor._framework$_state; t2.toString; t2 = $T._is(t2); } else t2 = false; if (t2) break; ancestor = ancestor._framework$_parent; } type$.nullable_StatefulElement._as(ancestor); if (t1) t1 = null; else { t1 = ancestor._framework$_state; t1.toString; } return $T._eval$1("0?")._as(t1); }, findRootAncestorStateOfType$1$0($T) { var statefulAncestor, t1, ancestor = this._framework$_parent; for (statefulAncestor = null; ancestor != null;) { if (ancestor instanceof A.StatefulElement) { t1 = ancestor._framework$_state; t1.toString; t1 = $T._is(t1); } else t1 = false; if (t1) statefulAncestor = ancestor; ancestor = ancestor._framework$_parent; } if (statefulAncestor == null) t1 = null; else { t1 = statefulAncestor._framework$_state; t1.toString; } return $T._eval$1("0?")._as(t1); }, findAncestorRenderObjectOfType$1$0($T) { var ancestor = this._framework$_parent; for (; ancestor != null;) { if (ancestor instanceof A.RenderObjectElement && $T._is(ancestor.get$renderObject())) return $T._as(ancestor.get$renderObject()); ancestor = ancestor._framework$_parent; } return null; }, visitAncestorElements$1(visitor) { var ancestor = this._framework$_parent; while (true) { if (!(ancestor != null && visitor.call$1(ancestor))) break; ancestor = ancestor._framework$_parent; } }, didChangeDependencies$0() { this.markNeedsBuild$0(); }, dispatchNotification$1(notification) { var t1 = this._notificationTree; if (t1 != null) t1.dispatchNotification$1(notification); }, toStringShort$0() { var t1 = this._widget; t1 = t1 == null ? null : t1.toStringShort$0(); return t1 == null ? "#" + A.shortHash(this) + "(DEFUNCT)" : t1; }, toDiagnosticsNode$2$name$style($name, style) { return A._ElementDiagnosticableTreeNode$($name, false, style, this); }, toDiagnosticsNode$0() { return this.toDiagnosticsNode$2$name$style(null, null); }, debugDescribeChildren$0() { var children = A._setArrayType([], type$.JSArray_DiagnosticsNode); this.visitChildren$1(new A.Element_debugDescribeChildren_closure(children)); return children; }, markNeedsBuild$0() { var _this = this; if (_this._lifecycleState !== B._ElementLifecycle_1) return; if (_this._dirty) return; _this._dirty = true; _this._owner.scheduleBuildFor$1(_this); }, rebuild$0() { if (this._lifecycleState !== B._ElementLifecycle_1 || !this._dirty) return; this.performRebuild$0(); }, $isBuildContext: 1 }; A.Element_reassemble_closure.prototype = { call$1(child) { child._debugReassembleConfig = this.$this._debugReassembleConfig; child.reassemble$0(); }, $signature: 97 }; A.Element_renderObject_visit.prototype = { call$1(element) { if (element._lifecycleState === B._ElementLifecycle_3) return; else if (element instanceof A.RenderObjectElement) this._box_0.result = element.get$renderObject(); else element.visitChildren$1(this); }, $signature: 97 }; A.Element_updateSlotForChild_visit.prototype = { call$1(element) { element._updateSlot$1(this.newSlot); if (!(element instanceof A.RenderObjectElement)) element.visitChildren$1(this); }, $signature: 97 }; A.Element__updateDepth_closure.prototype = { call$1(child) { child._updateDepth$1(this.expectedDepth); }, $signature: 97 }; A.Element_detachRenderObject_closure.prototype = { call$1(child) { child.detachRenderObject$0(); }, $signature: 97 }; A.Element_attachRenderObject_closure.prototype = { call$1(child) { child.attachRenderObject$1(this.newSlot); }, $signature: 97 }; A.Element_debugDescribeChildren_closure.prototype = { call$1(child) { this.children.push(child.toDiagnosticsNode$0()); }, $signature: 97 }; A._ElementDiagnosticableTreeNode.prototype = {}; A.ErrorWidget.prototype = { createRenderObject$1(context) { var t1 = this.message, t2 = new A.RenderErrorBox(t1, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.RenderErrorBox$1(t1); return t2; }, get$message(receiver) { return this.message; } }; A.ComponentElement.prototype = { mount$2($parent, newSlot) { this.super$Element$mount($parent, newSlot); this._firstBuild$0(); }, _firstBuild$0() { this.rebuild$0(); }, performRebuild$0() { var e, stack, e0, stack0, exception, built0, _this = this, built = null; try { built = _this.build$0(0); _this._widget.toString; } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); built0 = A.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException(A.ErrorDescription$("building " + _this.toString$0(0)), e, stack, new A.ComponentElement_performRebuild_closure(_this))); built = built0; } finally { _this._dirty = false; } try { _this._framework$_child = _this.updateChild$3(_this._framework$_child, built, _this._slot); } catch (exception) { e0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); built0 = A.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException(A.ErrorDescription$("building " + _this.toString$0(0)), e0, stack0, new A.ComponentElement_performRebuild_closure0(_this))); built = built0; _this._framework$_child = _this.updateChild$3(null, built, _this._slot); } }, visitChildren$1(visitor) { var t1 = this._framework$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1(child) { this._framework$_child = null; this.super$Element$forgetChild(child); } }; A.ComponentElement_performRebuild_closure.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, $signature: 138 }; A.ComponentElement_performRebuild_closure0.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, $signature: 138 }; A.StatelessElement.prototype = { build$0(_) { var t1 = this._widget; t1.toString; return type$.StatelessWidget._as(t1).build$1(0, this); }, update$1(_, newWidget) { this.super$Element$update(0, newWidget); this._dirty = true; this.rebuild$0(); } }; A.StatefulElement.prototype = { build$0(_) { return this._framework$_state.build$1(0, this); }, reassemble$0() { var _this = this; if (A._debugShouldReassemble(_this._debugReassembleConfig, _this._widget)) _this._framework$_state.reassemble$0(); _this.super$Element$reassemble(); }, _firstBuild$0() { var debugCheckForReturnedFuture, _this = this; try { _this._debugAllowIgnoredCallsToMarkNeedsBuild = true; debugCheckForReturnedFuture = _this._framework$_state.initState$0(); } finally { _this._debugAllowIgnoredCallsToMarkNeedsBuild = false; } _this._framework$_state.didChangeDependencies$0(); _this.super$ComponentElement$_firstBuild(); }, performRebuild$0() { var _this = this; if (_this._didChangeDependencies) { _this._framework$_state.didChangeDependencies$0(); _this._didChangeDependencies = false; } _this.super$ComponentElement$performRebuild(); }, update$1(_, newWidget) { var oldWidget, debugCheckForReturnedFuture, t1, t2, _this = this; _this.super$Element$update(0, newWidget); t1 = _this._framework$_state; t2 = t1._widget; t2.toString; oldWidget = t2; _this._dirty = true; t2 = _this._widget; t2.toString; t1._widget = type$.StatefulWidget._as(t2); try { _this._debugAllowIgnoredCallsToMarkNeedsBuild = true; debugCheckForReturnedFuture = t1.didUpdateWidget$1(oldWidget); } finally { _this._debugAllowIgnoredCallsToMarkNeedsBuild = false; } _this.rebuild$0(); }, activate$0() { this.super$Element$activate(); this._framework$_state.activate$0(); this.markNeedsBuild$0(); }, deactivate$0() { this._framework$_state.deactivate$0(); this.super$Element$deactivate(); }, unmount$0() { var _this = this; _this.super$Element$unmount(); _this._framework$_state.dispose$0(0); _this._framework$_state = _this._framework$_state._framework$_element = null; }, dependOnInheritedElement$2$aspect(ancestor, aspect) { return this.super$Element$dependOnInheritedElement(ancestor, aspect); }, didChangeDependencies$0() { this.super$Element$didChangeDependencies(); this._didChangeDependencies = true; }, toDiagnosticsNode$2$name$style($name, style) { return A._ElementDiagnosticableTreeNode$($name, true, style, this); }, toDiagnosticsNode$0() { return this.toDiagnosticsNode$2$name$style(null, null); } }; A.ProxyElement.prototype = { build$0(_) { var t1 = this._widget; t1.toString; return type$.ProxyWidget._as(t1).get$child(); }, update$1(_, newWidget) { var _this = this, t1 = _this._widget; t1.toString; type$.ProxyWidget._as(t1); _this.super$Element$update(0, newWidget); _this.updated$1(t1); _this._dirty = true; _this.rebuild$0(); }, updated$1(oldWidget) { this.notifyClients$1(oldWidget); } }; A.ParentDataElement.prototype = { _applyParentData$1(widget) { this.visitChildren$1(new A.ParentDataElement__applyParentData_applyParentDataToChild(widget)); }, notifyClients$1(oldWidget) { var t1 = this._widget; t1.toString; this._applyParentData$1(this.$ti._eval$1("ParentDataWidget<1>")._as(t1)); } }; A.ParentDataElement__applyParentData_applyParentDataToChild.prototype = { call$1(child) { if (child instanceof A.RenderObjectElement) this.widget.applyParentData$1(child.get$renderObject()); else child.visitChildren$1(this); }, $signature: 97 }; A.InheritedElement.prototype = { _updateInheritance$0() { var t2, _this = this, _null = null, t1 = _this._framework$_parent, incomingWidgets = t1 == null ? _null : t1._inheritedWidgets; t1 = type$.Type; t2 = type$.InheritedElement; if (incomingWidgets != null) { t1 = A.HashMap_HashMap(_null, _null, _null, t1, t2); t1.addAll$1(0, incomingWidgets); _this._inheritedWidgets = t1; } else t1 = _this._inheritedWidgets = A.HashMap_HashMap(_null, _null, _null, t1, t2); t2 = _this._widget; t1.$indexSet(0, t2.get$runtimeType(t2), _this); }, updateDependencies$2(dependent, aspect) { this._dependents.$indexSet(0, dependent, null); }, notifyDependent$2(oldWidget, dependent) { dependent.didChangeDependencies$0(); }, updated$1(oldWidget) { var t1 = this._widget; t1.toString; if (type$.InheritedWidget._as(t1).updateShouldNotify$1(oldWidget)) this.super$ProxyElement$updated(oldWidget); }, notifyClients$1(oldWidget) { var t1; for (t1 = this._dependents, t1 = new A._HashMapKeyIterator(t1, t1._computeKeys$0(), A._instanceType(t1)._eval$1("_HashMapKeyIterator<1>")); t1.moveNext$0();) this.notifyDependent$2(oldWidget, t1._collection$_current); } }; A.RenderObjectElement.prototype = { get$renderObject() { var t1 = this._renderObject; t1.toString; return t1; }, _findAncestorRenderObjectElement$0() { var ancestor = this._framework$_parent; while (true) { if (!(ancestor != null && !(ancestor instanceof A.RenderObjectElement))) break; ancestor = ancestor._framework$_parent; } return type$.nullable_RenderObjectElement._as(ancestor); }, _findAncestorParentDataElement$0() { var ancestor, _box_0 = {}, t1 = _box_0.ancestor = this._framework$_parent; _box_0.result = null; while (true) { if (!(t1 != null && !(t1 instanceof A.RenderObjectElement))) break; if (t1 instanceof A.ParentDataElement) { _box_0.result = t1; break; } ancestor = t1._framework$_parent; _box_0.ancestor = ancestor; t1 = ancestor; } return _box_0.result; }, mount$2($parent, newSlot) { var t1, _this = this; _this.super$Element$mount($parent, newSlot); t1 = _this._widget; t1.toString; _this._renderObject = type$.RenderObjectWidget._as(t1).createRenderObject$1(_this); _this.attachRenderObject$1(newSlot); _this._dirty = false; }, update$1(_, newWidget) { this.super$Element$update(0, newWidget); this._performRebuild$0(); }, performRebuild$0() { this._performRebuild$0(); }, _performRebuild$0() { var _this = this, t1 = _this._widget; t1.toString; type$.RenderObjectWidget._as(t1).updateRenderObject$2(_this, _this.get$renderObject()); _this._dirty = false; }, updateChildren$4$forgottenChildren$slots(oldChildren, newWidgets, forgottenChildren, slots) { var oldChild, newWidget, t4, haveOldChildren, oldKeyedChildren, key, _this = this, _null = null, replaceWithNullIfForgotten = new A.RenderObjectElement_updateChildren_replaceWithNullIfForgotten(forgottenChildren), slotFor = new A.RenderObjectElement_updateChildren_slotFor(slots), t1 = J.getInterceptor$asx(newWidgets), newChildrenBottom = t1.get$length(newWidgets) - 1, t2 = J.getInterceptor$asx(oldChildren), oldChildrenBottom = t2.get$length(oldChildren) - 1, newChildren = t2.get$length(oldChildren) == t1.get$length(newWidgets) ? oldChildren : A.List_List$filled(t1.get$length(newWidgets), $.$get$_NullElement_instance(), false, type$.Element_2), t3 = J.getInterceptor$ax(newChildren), previousChild = _null, newChildrenTop = 0, oldChildrenTop = 0; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenTop)); newWidget = t1.$index(newWidgets, newChildrenTop); if (oldChild != null) { t4 = oldChild._widget; t4 = !(t4.get$runtimeType(t4) === J.get$runtimeType$(newWidget) && J.$eq$(t4.key, newWidget.key)); } else t4 = true; if (t4) break; t4 = _this.updateChild$3(oldChild, newWidget, slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; ++oldChildrenTop; previousChild = t4; } while (true) { haveOldChildren = oldChildrenTop <= oldChildrenBottom; if (!(haveOldChildren && newChildrenTop <= newChildrenBottom)) break; oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenBottom)); newWidget = t1.$index(newWidgets, newChildrenBottom); if (oldChild != null) { t4 = oldChild._widget; t4 = !(t4.get$runtimeType(t4) === J.get$runtimeType$(newWidget) && J.$eq$(t4.key, newWidget.key)); } else t4 = true; if (t4) break; --oldChildrenBottom; --newChildrenBottom; } if (haveOldChildren) { oldKeyedChildren = A.LinkedHashMap_LinkedHashMap$_empty(type$.Key, type$.Element_2); for (; oldChildrenTop <= oldChildrenBottom;) { oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenTop)); if (oldChild != null) { t4 = oldChild._widget.key; if (t4 != null) oldKeyedChildren.$indexSet(0, t4, oldChild); else { oldChild._framework$_parent = null; oldChild.detachRenderObject$0(); t4 = _this._owner._inactiveElements; if (oldChild._lifecycleState === B._ElementLifecycle_1) { oldChild.deactivate$0(); oldChild.visitChildren$1(A.framework__InactiveElements__deactivateRecursively$closure()); } t4._framework$_elements.add$1(0, oldChild); } } ++oldChildrenTop; } haveOldChildren = true; } else oldKeyedChildren = _null; for (; newChildrenTop <= newChildrenBottom; previousChild = t4) { newWidget = t1.$index(newWidgets, newChildrenTop); if (haveOldChildren) { key = newWidget.key; if (key != null) { oldChild = oldKeyedChildren.$index(0, key); if (oldChild != null) { t4 = oldChild._widget; if (t4.get$runtimeType(t4) === newWidget.get$runtimeType(newWidget) && J.$eq$(t4.key, key)) oldKeyedChildren.remove$1(0, key); else oldChild = _null; } } else oldChild = _null; } else oldChild = _null; t4 = _this.updateChild$3(oldChild, newWidget, slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; } newChildrenBottom = t1.get$length(newWidgets) - 1; oldChildrenBottom = t2.get$length(oldChildren) - 1; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; t4 = _this.updateChild$3(t2.$index(oldChildren, oldChildrenTop), t1.$index(newWidgets, newChildrenTop), slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; ++oldChildrenTop; previousChild = t4; } if (haveOldChildren && oldKeyedChildren._length !== 0) for (t1 = oldKeyedChildren.get$values(oldKeyedChildren), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) { t1 = t2.__internal$_current; if (!forgottenChildren.contains$1(0, t1)) { t1._framework$_parent = null; t1.detachRenderObject$0(); t3 = _this._owner._inactiveElements; if (t1._lifecycleState === B._ElementLifecycle_1) { t1.deactivate$0(); t1.visitChildren$1(A.framework__InactiveElements__deactivateRecursively$closure()); } t3._framework$_elements.add$1(0, t1); } } return newChildren; }, updateChildren$3$forgottenChildren(oldChildren, newWidgets, forgottenChildren) { return this.updateChildren$4$forgottenChildren$slots(oldChildren, newWidgets, forgottenChildren, null); }, deactivate$0() { this.super$Element$deactivate(); }, unmount$0() { var _this = this, t1 = _this._widget; t1.toString; type$.RenderObjectWidget._as(t1); _this.super$Element$unmount(); t1.didUnmountRenderObject$1(_this.get$renderObject()); _this._renderObject.dispose$0(0); _this._renderObject = null; }, _updateSlot$1(newSlot) { var t1, _this = this, oldSlot = _this._slot; _this.super$Element$_updateSlot(newSlot); t1 = _this._ancestorRenderObjectElement; t1.toString; t1.moveRenderObjectChild$3(_this.get$renderObject(), oldSlot, _this._slot); }, attachRenderObject$1(newSlot) { var t1, parentDataElement, _this = this; _this._slot = newSlot; t1 = _this._ancestorRenderObjectElement = _this._findAncestorRenderObjectElement$0(); if (t1 != null) t1.insertRenderObjectChild$2(_this.get$renderObject(), newSlot); parentDataElement = _this._findAncestorParentDataElement$0(); if (parentDataElement != null) { t1 = parentDataElement._widget; t1.toString; type$.ParentDataWidget_ParentData._as(t1).applyParentData$1(_this.get$renderObject()); } }, detachRenderObject$0() { var _this = this, t1 = _this._ancestorRenderObjectElement; if (t1 != null) { t1.removeRenderObjectChild$2(_this.get$renderObject(), _this._slot); _this._ancestorRenderObjectElement = null; } _this._slot = null; }, insertRenderObjectChild$2(child, slot) { }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { } }; A.RenderObjectElement_updateChildren_replaceWithNullIfForgotten.prototype = { call$1(child) { var t1 = this.forgottenChildren.contains$1(0, child); return t1 ? null : child; }, $signature: 1768 }; A.RenderObjectElement_updateChildren_slotFor.prototype = { call$2(newChildIndex, previousChild) { var t1 = this.slots; return t1 != null ? t1[newChildIndex] : new A.IndexedSlot(previousChild, newChildIndex, type$.IndexedSlot_nullable_Element); }, $signature: 1766 }; A.RootRenderObjectElement.prototype = { mount$2($parent, newSlot) { this.super$RenderObjectElement$mount($parent, newSlot); } }; A.LeafRenderObjectElement.prototype = { forgetChild$1(child) { this.super$Element$forgetChild(child); }, insertRenderObjectChild$2(child, slot) { }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { }, debugDescribeChildren$0() { this._widget.toString; return B.List_empty1; } }; A.SingleChildRenderObjectElement.prototype = { visitChildren$1(visitor) { var t1 = this._framework$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1(child) { this._framework$_child = null; this.super$Element$forgetChild(child); }, mount$2($parent, newSlot) { var t1, t2, _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); t1 = _this._framework$_child; t2 = _this._widget; t2.toString; _this._framework$_child = _this.updateChild$3(t1, type$.SingleChildRenderObjectWidget._as(t2).child, null); }, update$1(_, newWidget) { var t1, t2, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = _this._framework$_child; t2 = _this._widget; t2.toString; _this._framework$_child = _this.updateChild$3(t1, type$.SingleChildRenderObjectWidget._as(t2).child, null); }, insertRenderObjectChild$2(child, slot) { var t1 = this._renderObject; t1.toString; type$.RenderObjectWithChildMixin_RenderObject._as(t1).set$child(child); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { var t1 = this._renderObject; t1.toString; type$.RenderObjectWithChildMixin_RenderObject._as(t1).set$child(null); } }; A.MultiChildRenderObjectElement.prototype = { get$renderObject() { return type$.ContainerRenderObjectMixin_of_RenderObject_and_ContainerParentDataMixin_RenderObject._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, get$children(_) { return J.where$1$ax(A._lateReadCheck(this.__MultiChildRenderObjectElement__children, "_children"), new A.MultiChildRenderObjectElement_children_closure(this)); }, insertRenderObjectChild$2(child, slot) { var renderObject = this.get$renderObject(), t1 = slot.value; renderObject.insert$2$after(0, child, t1 == null ? null : t1.get$renderObject()); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { var renderObject = this.get$renderObject(), t1 = newSlot.value; renderObject.move$2$after(child, t1 == null ? null : t1.get$renderObject()); }, removeRenderObjectChild$2(child, slot) { this.get$renderObject().remove$1(0, child); }, visitChildren$1(visitor) { var t1, t2, t3; for (t1 = J.get$iterator$ax(A._lateReadCheck(this.__MultiChildRenderObjectElement__children, "_children")), t2 = this._forgottenChildren; t1.moveNext$0();) { t3 = t1.get$current(t1); if (!t2.contains$1(0, t3)) visitor.call$1(t3); } }, forgetChild$1(child) { this._forgottenChildren.add$1(0, child); this.super$Element$forgetChild(child); }, inflateWidget$2(newWidget, newSlot) { return this.super$Element$inflateWidget(newWidget, newSlot); }, mount$2($parent, newSlot) { var t1, t2, children, t3, t4, previousChild, i, newChild, _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); t1 = _this._widget; t1.toString; t1 = type$.MultiChildRenderObjectWidget._as(t1).children; t2 = J.getInterceptor$asx(t1); children = A.List_List$filled(t2.get$length(t1), $.$get$_NullElement_instance(), false, type$.Element_2); for (t3 = children.length, t4 = type$.IndexedSlot_nullable_Element, previousChild = null, i = 0; i < t3; ++i, previousChild = newChild) { newChild = _this.super$Element$inflateWidget(t2.$index(t1, i), new A.IndexedSlot(previousChild, i, t4)); children[i] = newChild; } _this.__MultiChildRenderObjectElement__children = children; }, update$1(_, newWidget) { var t1, t2, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = _this._widget; t1.toString; type$.MultiChildRenderObjectWidget._as(t1); t2 = _this._forgottenChildren; _this.__MultiChildRenderObjectElement__children = _this.updateChildren$3$forgottenChildren(A._lateReadCheck(_this.__MultiChildRenderObjectElement__children, "_children"), t1.children, t2); t2.clear$0(0); } }; A.MultiChildRenderObjectElement_children_closure.prototype = { call$1(child) { return !this.$this._forgottenChildren.contains$1(0, child); }, $signature: 249 }; A.IndexedSlot.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.IndexedSlot && this.index === other.index && J.$eq$(this.value, other.value); }, get$hashCode(_) { return A.Object_hash(this.index, this.value, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, get$value(receiver) { return this.value; } }; A._NullElement.prototype = { performRebuild$0() { return A.throwExpression(A.UnimplementedError$(null)); } }; A._NullWidget1.prototype = { createElement$0(_) { return A.throwExpression(A.UnimplementedError$(null)); } }; A._State_Object_Diagnosticable.prototype = {}; A.GestureRecognizerFactory.prototype = {}; A.GestureRecognizerFactoryWithHandlers.prototype = { constructor$0(_) { return this._constructor.call$0(); }, initializer$1(instance) { return this._initializer.call$1(instance); } }; A.GestureDetector.prototype = { build$1(_, context) { var _this = this, gestures = A.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), t1 = A.MediaQuery_maybeOf(context), gestureSettings = t1 == null ? null : t1.gestureSettings; if (_this.onTapDown == null) if (_this.onTapUp == null) if (_this.onTap == null) if (_this.onTapCancel == null) t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) gestures.$indexSet(0, B.Type_TapGestureRecognizer_62h, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure(_this), new A.GestureDetector_build_closure0(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_TapGestureRecognizer)); if (_this.onDoubleTap != null) gestures.$indexSet(0, B.Type_DoubleTapGestureRecognizer_oyU, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure1(_this), new A.GestureDetector_build_closure2(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_DoubleTapGestureRecognizer)); if (_this.onLongPress == null) t1 = false; else t1 = true; if (t1) gestures.$indexSet(0, B.Type_LongPressGestureRecognizer_46y, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure3(_this), new A.GestureDetector_build_closure4(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer)); t1 = _this.onVerticalDragStart != null || _this.onVerticalDragUpdate != null || _this.onVerticalDragEnd != null || false; if (t1) gestures.$indexSet(0, B.Type_mLh, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure5(_this), new A.GestureDetector_build_closure6(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer)); if (_this.onHorizontalDragDown != null || _this.onHorizontalDragStart != null || _this.onHorizontalDragUpdate != null || _this.onHorizontalDragEnd != null || _this.onHorizontalDragCancel != null) gestures.$indexSet(0, B.Type_Vq1, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure7(_this), new A.GestureDetector_build_closure8(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer)); if (_this.onPanDown != null || _this.onPanStart != null || _this.onPanUpdate != null || _this.onPanEnd != null || _this.onPanCancel != null) gestures.$indexSet(0, B.Type_PanGestureRecognizer_bbH, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure9(_this), new A.GestureDetector_build_closure10(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_PanGestureRecognizer)); if (_this.onScaleStart != null || _this.onScaleUpdate != null || _this.onScaleEnd != null) gestures.$indexSet(0, B.Type_ScaleGestureRecognizer_s8I, new A.GestureRecognizerFactoryWithHandlers(new A.GestureDetector_build_closure11(_this), new A.GestureDetector_build_closure12(_this, gestureSettings), type$.GestureRecognizerFactoryWithHandlers_ScaleGestureRecognizer)); return new A.RawGestureDetector(_this.child, gestures, _this.behavior, _this.excludeFromSemantics, null, null); } }; A.GestureDetector_build_closure.prototype = { call$0() { return A.TapGestureRecognizer$(this.$this); }, $signature: 536 }; A.GestureDetector_build_closure0.prototype = { call$1(instance) { var t1 = this.$this; instance.onTapDown = t1.onTapDown; instance.onTapUp = t1.onTapUp; instance.onTap = t1.onTap; instance.onTapCancel = t1.onTapCancel; instance.onTertiaryTapCancel = instance.onTertiaryTapUp = instance.onTertiaryTapDown = instance.onSecondaryTapCancel = instance.onSecondaryTapUp = instance.onSecondaryTapDown = instance.onSecondaryTap = null; instance.gestureSettings = this.gestureSettings; }, $signature: 537 }; A.GestureDetector_build_closure1.prototype = { call$0() { var t1 = type$.int; return new A.DoubleTapGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._TapTracker), this.$this, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, $signature: 1765 }; A.GestureDetector_build_closure2.prototype = { call$1(instance) { instance.onDoubleTapDown = null; instance.onDoubleTap = this.$this.onDoubleTap; instance.onDoubleTapCancel = null; instance.gestureSettings = this.gestureSettings; }, $signature: 1732 }; A.GestureDetector_build_closure3.prototype = { call$0() { var _null = null; return A.LongPressGestureRecognizer$(this.$this, _null, _null, _null, _null); }, $signature: 540 }; A.GestureDetector_build_closure4.prototype = { call$1(instance) { instance.onLongPressCancel = instance.onLongPressDown = null; instance.onLongPress = this.$this.onLongPress; instance.onTertiaryLongPressEnd = instance.onTertiaryLongPressUp = instance.onTertiaryLongPressMoveUpdate = instance.onTertiaryLongPressStart = instance.onTertiaryLongPress = instance.onTertiaryLongPressCancel = instance.onTertiaryLongPressDown = instance.onSecondaryLongPressEnd = instance.onSecondaryLongPressUp = instance.onSecondaryLongPressMoveUpdate = instance.onSecondaryLongPressStart = instance.onSecondaryLongPress = instance.onSecondaryLongPressCancel = instance.onSecondaryLongPressDown = instance.onLongPressEnd = instance.onLongPressUp = instance.onLongPressMoveUpdate = instance.onLongPressStart = null; instance.gestureSettings = this.gestureSettings; }, $signature: 541 }; A.GestureDetector_build_closure5.prototype = { call$0() { return A.VerticalDragGestureRecognizer$(this.$this, null); }, $signature: 542 }; A.GestureDetector_build_closure6.prototype = { call$1(instance) { var t1; instance.onDown = null; t1 = this.$this; instance.onStart = t1.onVerticalDragStart; instance.onUpdate = t1.onVerticalDragUpdate; instance.onEnd = t1.onVerticalDragEnd; instance.onCancel = null; instance.dragStartBehavior = t1.dragStartBehavior; instance.gestureSettings = this.gestureSettings; }, $signature: 543 }; A.GestureDetector_build_closure7.prototype = { call$0() { return A.HorizontalDragGestureRecognizer$(this.$this, null); }, $signature: 544 }; A.GestureDetector_build_closure8.prototype = { call$1(instance) { var t1 = this.$this; instance.onDown = t1.onHorizontalDragDown; instance.onStart = t1.onHorizontalDragStart; instance.onUpdate = t1.onHorizontalDragUpdate; instance.onEnd = t1.onHorizontalDragEnd; instance.onCancel = t1.onHorizontalDragCancel; instance.dragStartBehavior = t1.dragStartBehavior; instance.gestureSettings = this.gestureSettings; }, $signature: 545 }; A.GestureDetector_build_closure9.prototype = { call$0() { return A.PanGestureRecognizer$(this.$this, null); }, $signature: 358 }; A.GestureDetector_build_closure10.prototype = { call$1(instance) { var t1 = this.$this; instance.onDown = t1.onPanDown; instance.onStart = t1.onPanStart; instance.onUpdate = t1.onPanUpdate; instance.onEnd = t1.onPanEnd; instance.onCancel = t1.onPanCancel; instance.dragStartBehavior = t1.dragStartBehavior; instance.gestureSettings = this.gestureSettings; }, $signature: 359 }; A.GestureDetector_build_closure11.prototype = { call$0() { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A.ScaleGestureRecognizer(B.DragStartBehavior_0, B._ScaleState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, this.$this, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, $signature: 1731 }; A.GestureDetector_build_closure12.prototype = { call$1(instance) { var t1 = this.$this; instance.onStart = t1.onScaleStart; instance.onUpdate = t1.onScaleUpdate; instance.onEnd = t1.onScaleEnd; instance.dragStartBehavior = t1.dragStartBehavior; instance.gestureSettings = this.gestureSettings; }, $signature: 1728 }; A.RawGestureDetector.prototype = { createState$0() { return new A.RawGestureDetectorState(B.Map_empty3, B._StateLifecycle_0); } }; A.RawGestureDetectorState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.semantics; _this._gesture_detector$_semantics = t2 == null ? new A._DefaultSemanticsGestureDelegate(_this) : t2; _this._syncAll$1(t1.gestures); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!(oldWidget.semantics == null && _this._widget.semantics == null)) { t1 = _this._widget.semantics; _this._gesture_detector$_semantics = t1 == null ? new A._DefaultSemanticsGestureDelegate(_this) : t1; } _this._syncAll$1(_this._widget.gestures); }, replaceSemanticsActions$1(actions) { if (this._widget.excludeFromSemantics) return; type$.nullable_RenderSemanticsGestureHandler._as(this._framework$_element.get$renderObject()).set$validActions(actions); }, dispose$0(_) { var t1; for (t1 = this._recognizers, t1 = J.get$iterator$ax(t1.get$values(t1)); t1.moveNext$0();) t1.get$current(t1).dispose$0(0); this._recognizers = null; this.super$State$dispose(0); }, _syncAll$1(gestures) { var t2, t3, t4, t5, _this = this, t1 = _this._recognizers; t1.toString; _this._recognizers = A.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizer); for (t2 = J.get$iterator$ax(gestures.get$keys(gestures)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = _this._recognizers; t4.toString; t5 = t1.$index(0, t3); t4.$indexSet(0, t3, t5 == null ? gestures.$index(0, t3).constructor$0(0) : t5); t4 = gestures.$index(0, t3); t4.toString; t3 = _this._recognizers.$index(0, t3); t3.toString; t4.initializer$1(t3); } for (t2 = J.get$iterator$ax(t1.get$keys(t1)); t2.moveNext$0();) { t3 = t2.get$current(t2); if (!_this._recognizers.containsKey$1(0, t3)) t1.$index(0, t3).dispose$0(0); } }, _gesture_detector$_handlePointerDown$1($event) { var t1, t2; for (t1 = this._recognizers, t1 = J.get$iterator$ax(t1.get$values(t1)); t1.moveNext$0();) { t2 = t1.get$current(t1); t2._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (t2.isPointerAllowed$1($event)) t2.addAllowedPointer$1($event); else t2.handleNonAllowedPointer$1($event); } }, _updateSemanticsForRenderObject$1(renderObject) { this._gesture_detector$_semantics.assignSemantics$1(renderObject); }, build$1(_, context) { var t4, t5, result, _null = null, t1 = this._widget, t2 = t1.behavior, t3 = t2 == null; if (t3) t4 = t1.child == null ? B.HitTestBehavior_2 : B.HitTestBehavior_0; else t4 = t2; t5 = t1.child; result = A.Listener$(t4, t5, _null, _null, this.get$_gesture_detector$_handlePointerDown(), _null, _null, _null, _null); if (!t1.excludeFromSemantics) { if (t3) t1 = t5 == null ? B.HitTestBehavior_2 : B.HitTestBehavior_0; else t1 = t2; result = new A._GestureSemantics(t1, this.get$_updateSemanticsForRenderObject(), result, _null); } return result; } }; A._GestureSemantics.prototype = { createRenderObject$1(context) { var renderObject = new A.RenderSemanticsGestureHandler(B.HitTestBehavior_0, null, A.LayerHandle$(type$.ContainerLayer_2)); renderObject.get$isRepaintBoundary(); renderObject.get$alwaysNeedsCompositing(); renderObject.__RenderObject__needsCompositing = false; renderObject.set$child(null); renderObject.behavior = this.behavior; this.assignSemantics.call$1(renderObject); return renderObject; }, updateRenderObject$2(context, renderObject) { renderObject.behavior = this.behavior; this.assignSemantics.call$1(renderObject); } }; A.SemanticsGestureDelegate.prototype = { toString$0(_) { return "SemanticsGestureDelegate()"; } }; A._DefaultSemanticsGestureDelegate.prototype = { assignSemantics$1(renderObject) { var _this = this, t1 = _this.detectorState._recognizers; t1.toString; renderObject.set$onTap(_this._getTapHandler$1(t1)); renderObject.set$onLongPress(_this._getLongPressHandler$1(t1)); renderObject.set$onHorizontalDragUpdate(_this._getHorizontalDragUpdateHandler$1(t1)); renderObject.set$onVerticalDragUpdate(_this._getVerticalDragUpdateHandler$1(t1)); }, _getTapHandler$1(recognizers) { var tap = type$.nullable_TapGestureRecognizer._as(recognizers.$index(0, B.Type_TapGestureRecognizer_62h)); if (tap == null) return null; return new A._DefaultSemanticsGestureDelegate__getTapHandler_closure(tap); }, _getLongPressHandler$1(recognizers) { var longPress = type$.nullable_LongPressGestureRecognizer._as(recognizers.$index(0, B.Type_LongPressGestureRecognizer_46y)); if (longPress == null) return null; return new A._DefaultSemanticsGestureDelegate__getLongPressHandler_closure(longPress); }, _getHorizontalDragUpdateHandler$1(recognizers) { var horizontal = type$.nullable_HorizontalDragGestureRecognizer._as(recognizers.$index(0, B.Type_Vq1)), pan = type$.nullable_PanGestureRecognizer._as(recognizers.$index(0, B.Type_PanGestureRecognizer_bbH)), horizontalHandler = horizontal == null ? null : new A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure(horizontal), panHandler = pan == null ? null : new A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0(pan); if (horizontalHandler == null && panHandler == null) return null; return new A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1(horizontalHandler, panHandler); }, _getVerticalDragUpdateHandler$1(recognizers) { var vertical = type$.nullable_VerticalDragGestureRecognizer._as(recognizers.$index(0, B.Type_mLh)), pan = type$.nullable_PanGestureRecognizer._as(recognizers.$index(0, B.Type_PanGestureRecognizer_bbH)), verticalHandler = vertical == null ? null : new A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure(vertical), panHandler = pan == null ? null : new A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0(pan); if (verticalHandler == null && panHandler == null) return null; return new A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1(verticalHandler, panHandler); } }; A._DefaultSemanticsGestureDelegate__getTapHandler_closure.prototype = { call$0() { var t1 = this.tap, t2 = t1.onTapDown; if (t2 != null) t2.call$1(new A.TapDownDetails(B.Offset_0_0, null, B.Offset_0_0)); t2 = t1.onTapUp; if (t2 != null) t2.call$1(new A.TapUpDetails(B.Offset_0_0, B.Offset_0_0, B.PointerDeviceKind_5)); t1 = t1.onTap; if (t1 != null) t1.call$0(); }, $signature: 0 }; A._DefaultSemanticsGestureDelegate__getLongPressHandler_closure.prototype = { call$0() { var t1 = this.longPress, t2 = t1.onLongPressStart; if (t2 != null) t2.call$1(B.LongPressStartDetails_aWR); t2 = t1.onLongPress; if (t2 != null) t2.call$0(); t1 = t1.onLongPressEnd; if (t1 != null) t1.call$1(B.LongPressEndDetails_aB0); }, $signature: 0 }; A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure.prototype = { call$1(details) { var t1 = this.horizontal, t2 = t1.onDown; if (t2 != null) t2.call$1(new A.DragDownDetails(B.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new A.DragStartDetails(null, B.Offset_0_0, B.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, 0)); }, $signature: 70 }; A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0.prototype = { call$1(details) { var t1 = this.pan, t2 = t1.onDown; if (t2 != null) t2.call$1(new A.DragDownDetails(B.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new A.DragStartDetails(null, B.Offset_0_0, B.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, null)); }, $signature: 70 }; A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1.prototype = { call$1(details) { var t1 = this.horizontalHandler; if (t1 != null) t1.call$1(details); t1 = this.panHandler; if (t1 != null) t1.call$1(details); }, $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure.prototype = { call$1(details) { var t1 = this.vertical, t2 = t1.onDown; if (t2 != null) t2.call$1(new A.DragDownDetails(B.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new A.DragStartDetails(null, B.Offset_0_0, B.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, 0)); }, $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0.prototype = { call$1(details) { var t1 = this.pan, t2 = t1.onDown; if (t2 != null) t2.call$1(new A.DragDownDetails(B.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new A.DragStartDetails(null, B.Offset_0_0, B.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, null)); }, $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1.prototype = { call$1(details) { var t1 = this.verticalHandler; if (t1 != null) t1.call$1(details); t1 = this.panHandler; if (t1 != null) t1.call$1(details); }, $signature: 70 }; A.HeroFlightDirection.prototype = { toString$0(_) { return "HeroFlightDirection." + this._core$_name; } }; A.Hero.prototype = { createState$0() { return new A._HeroState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A.Hero__allHeroesFor_inviteHero.prototype = { call$2(hero, tag) { var t1 = hero._widget; t1.toString; type$.Hero._as(t1); t1 = hero._framework$_state; t1.toString; type$._HeroState._as(t1); if (!this.isUserGestureTransition || false) this.result.$indexSet(0, tag, t1); else t1.endFlight$0(); }, $signature: 1701 }; A.Hero__allHeroesFor_visitor.prototype = { call$1(element) { var tag, heroRoute, _this = this, t1 = element._widget; t1.toString; if (t1 instanceof A.Hero) { type$.StatefulElement._as(element); tag = t1.tag; if (A.Navigator_of(element, false) === _this.navigator) _this.inviteHero.call$2(element, tag); else { heroRoute = A.ModalRoute_of(element, type$.nullable_Object); if (heroRoute != null && heroRoute instanceof A.PageRoute && heroRoute.get$isCurrent()) _this.inviteHero.call$2(element, tag); } } element.visitChildren$1(_this); }, $signature: 97 }; A._HeroState.prototype = { startFlight$1$shouldIncludedChildInPlaceholder(shouldIncludedChildInPlaceholder) { var t1, _this = this; _this._shouldIncludeChild = shouldIncludedChildInPlaceholder; t1 = _this._framework$_element.get$renderObject(); t1.toString; _this.setState$1(new A._HeroState_startFlight_closure(_this, type$.RenderBox._as(t1))); }, startFlight$0() { return this.startFlight$1$shouldIncludedChildInPlaceholder(false); }, endFlight$1$keepPlaceholder(keepPlaceholder) { var _this = this; if (keepPlaceholder || _this._placeholderSize == null) return; _this._placeholderSize = null; if (_this._framework$_element != null) _this.setState$1(new A._HeroState_endFlight_closure()); }, endFlight$0() { return this.endFlight$1$keepPlaceholder(false); }, build$1(_, context) { var t3, _this = this, _null = null, t1 = _this._placeholderSize, t2 = t1 == null, showPlaceholder = !t2; if (showPlaceholder) _this._widget.toString; if (showPlaceholder && !_this._shouldIncludeChild) return new A.SizedBox(t1._dx, t1._dy, _null, _null); t3 = t2 ? _null : t1._dx; t1 = t2 ? _null : t1._dy; return new A.SizedBox(t3, t1, new A.Offstage(showPlaceholder, new A.TickerMode(t2, new A.KeyedSubtree(_this._widget.child, _this._heroes$_key), _null), _null), _null); } }; A._HeroState_startFlight_closure.prototype = { call$0() { var t1 = this.box._box$_size; t1.toString; this.$this._placeholderSize = t1; }, $signature: 0 }; A._HeroState_endFlight_closure.prototype = { call$0() { }, $signature: 0 }; A._HeroFlightManifest.prototype = { get$animation(_) { var t1, _this = this; if (_this.type === B.HeroFlightDirection_0) { t1 = _this.toRoute._animationProxy; t1.toString; } else { t1 = _this.fromRoute._animationProxy; t1.toString; } return A.CurvedAnimation$(B.Cubic_ifx, t1, _this.isDiverted ? null : new A.FlippedCurve(B.Cubic_ifx)); }, createHeroRectTween$2$begin$end(begin, end) { var t1; this.toHero._widget.toString; t1 = this.createRectTween.call$2(begin, end); return t1 == null ? new A.RectTween(begin, end) : t1; }, get$fromHeroLocation() { var t1, result, _this = this, value = _this.___HeroFlightManifest_fromHeroLocation; if (value === $) { t1 = _this.fromHero._framework$_element; t1.toString; result = A._HeroFlightManifest__boundingBoxFor(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.fromRoute._subtreeKey)); A._lateInitializeOnceCheck(_this.___HeroFlightManifest_fromHeroLocation, "fromHeroLocation"); _this.___HeroFlightManifest_fromHeroLocation = result; value = result; } return value; }, get$toHeroLocation() { var t1, result, _this = this, value = _this.___HeroFlightManifest_toHeroLocation; if (value === $) { t1 = _this.toHero._framework$_element; t1.toString; result = A._HeroFlightManifest__boundingBoxFor(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.toRoute._subtreeKey)); A._lateInitializeOnceCheck(_this.___HeroFlightManifest_toHeroLocation, "toHeroLocation"); _this.___HeroFlightManifest_toHeroLocation = result; value = result; } return value; }, get$isValid() { var t1, result, _this = this, value = _this.___HeroFlightManifest_isValid; if (value === $) { t1 = _this.get$toHeroLocation(); if (t1.get$isFinite(t1)) if (!_this.isDiverted) { t1 = _this.get$fromHeroLocation(); t1 = t1.get$isFinite(t1); result = t1; } else result = true; else result = false; A._lateInitializeOnceCheck(_this.___HeroFlightManifest_isValid, "isValid"); value = _this.___HeroFlightManifest_isValid = result; } return value; }, toString$0(_) { var t6, t7, _this = this, t1 = _this.type.toString$0(0), t2 = _this.fromHero, t3 = A.S(t2._widget.tag), t4 = _this.fromRoute._navigator$_settings.toString$0(0), t5 = _this.toRoute._navigator$_settings.toString$0(0); t2 = t2.toString$0(0); t6 = _this.toHero.toString$0(0); t7 = _this.get$isValid() ? "" : ", INVALID"; return "_HeroFlightManifest(" + t1 + " tag: " + t3 + " from route: " + t4 + " to route: " + t5 + " with hero: " + t2 + " to " + t6 + ")" + t7; } }; A._HeroFlight.prototype = { _buildOverlay$1(context) { var t1, t2, t3, t4, t5, _this = this, _s8_ = "manifest"; if (_this.shuttle == null) { t1 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_); t2 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_); t2 = t2.get$animation(t2); t3 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).type; t4 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromHero._framework$_element; t4.toString; t5 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toHero._framework$_element; t5.toString; _this.shuttle = t1.shuttleBuilder.call$5(context, t2, t3, t4, t5); } return A.AnimatedBuilder$(A._lateReadCheck(_this.___HeroFlight__proxyAnimation, "_proxyAnimation"), new A._HeroFlight__buildOverlay_closure(_this), _this.shuttle); }, _performAnimationUpdate$1($status) { var _this = this, _s15_ = "_proxyAnimation", _s8_ = "manifest", t1 = $status === B.AnimationStatus_3; if (t1 || $status === B.AnimationStatus_0) { A._lateReadCheck(_this.___HeroFlight__proxyAnimation, _s15_).set$parent(0, null); _this.overlayEntry.remove$0(0); _this.overlayEntry = null; A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromHero.endFlight$1$keepPlaceholder(t1); A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toHero.endFlight$1$keepPlaceholder($status === B.AnimationStatus_0); _this.onFlightEnded.call$1(_this); A._lateReadCheck(_this.___HeroFlight__proxyAnimation, _s15_).removeListener$1(0, _this.get$onTick()); } }, _handleAnimationUpdate$1($status) { var _this = this, _s8_ = "manifest", t1 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromRoute._navigator$_navigator; if ((t1 == null ? null : t1.userGestureInProgressNotifier._change_notifier$_value) !== true) { _this._performAnimationUpdate$1($status); return; } if (_this._scheduledPerformAnimationUpdate) return; t1 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromRoute._navigator$_navigator; t1.toString; _this._scheduledPerformAnimationUpdate = true; t1.userGestureInProgressNotifier.addListener$1(0, new A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate(_this, t1)); }, onTick$0() { var t1, toHeroOrigin, t2, t3, t4, t5, t6, t7, _this = this, _s8_ = "manifest", _s13_ = "heroRectTween", _s15_ = "_proxyAnimation", toHeroBox = !_this._aborted && A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toHero._framework$_element != null ? type$.nullable_RenderBox._as(A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toHero._framework$_element.get$renderObject()) : null; if (toHeroBox != null && toHeroBox._node$_owner != null && toHeroBox._box$_size != null) { t1 = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toRoute; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._subtreeKey); t1 = t1 == null ? null : t1.get$renderObject(); toHeroOrigin = A.MatrixUtils_transformPoint(toHeroBox.getTransformTo$1(0, type$.nullable_RenderBox._as(t1)), B.Offset_0_0); } else toHeroOrigin = null; t1 = toHeroOrigin != null; if (t1) { t2 = toHeroOrigin._dx; t2.toString; if (isFinite(t2)) { t2 = toHeroOrigin._dy; t2.toString; t2 = isFinite(t2); } else t2 = false; } else t2 = false; if (t2) { t2 = A._lateReadCheck(_this.___HeroFlight_heroRectTween, _s13_).end; if (!J.$eq$(toHeroOrigin, new A.Offset(t2.left, t2.top))) { t2 = A._lateReadCheck(_this.___HeroFlight_heroRectTween, _s13_).end; t3 = t2.right; t4 = t2.left; t5 = t2.bottom; t2 = t2.top; t6 = toHeroOrigin._dx; t7 = toHeroOrigin._dy; _this.___HeroFlight_heroRectTween = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).createHeroRectTween$2$begin$end(A._lateReadCheck(_this.___HeroFlight_heroRectTween, _s13_).begin, new A.Rect(t6, t7, t6 + (t3 - t4), t7 + (t5 - t2))); } } else { t2 = _this._heroOpacity; if (t2.get$status(t2) === B.AnimationStatus_3) { t2 = A._lateReadCheck(_this.___HeroFlight__proxyAnimation, _s15_); t3 = $.$get$_HeroFlight__reverseTween(); t4 = A._lateReadCheck(_this.___HeroFlight__proxyAnimation, _s15_); t4 = t4.get$value(t4); t3.toString; t5 = t3.$ti._eval$1("_ChainedEvaluation"); _this._heroOpacity = new A._AnimatedEvaluation(type$.Animation_double._as(t2), new A._ChainedEvaluation(new A.CurveTween(new A.Interval(t4, 1, B.C__Linear)), t3, t5), t5._eval$1("_AnimatedEvaluation")); } } if (t1) { t1 = toHeroOrigin._dx; t1.toString; if (isFinite(t1)) { t1 = toHeroOrigin._dy; t1.toString; t1 = isFinite(t1); } else t1 = false; t1 = !t1; } else t1 = true; _this._aborted = t1; }, toString$0(_) { var _this = this, _s8_ = "manifest", from = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromRoute._navigator$_settings, to = A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).toRoute._navigator$_settings; return "HeroFlight(for: " + A.S(A._lateReadCheck(_this.___HeroFlight_manifest, _s8_).fromHero._widget.tag) + ", from: " + from.toString$0(0) + ", to: " + to.toString$0(0) + " " + A.S(A._lateReadCheck(_this.___HeroFlight__proxyAnimation, "_proxyAnimation")._animations$_parent) + ")"; } }; A._HeroFlight__buildOverlay_closure.prototype = { call$2(context, child) { var t4, _null = null, t1 = this.$this, t2 = A._lateReadCheck(t1.___HeroFlight_heroRectTween, "heroRectTween"), t3 = A._lateReadCheck(t1.___HeroFlight__proxyAnimation, "_proxyAnimation"); t3 = t2.transform$1(0, t3.get$value(t3)); t3.toString; t2 = A._lateReadCheck(t1.___HeroFlight_manifest, "manifest").navigatorSize; t4 = t2._dx; return A.Positioned$(t2._dy - t3.bottom, new A.IgnorePointer(true, _null, new A.RepaintBoundary(A.FadeTransition$(false, child, t1._heroOpacity), _null), _null), _null, _null, t3.left, t4 - t3.right, t3.top, _null); }, $signature: 552 }; A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate.prototype = { call$0() { var t2, t1 = this.$this; t1._scheduledPerformAnimationUpdate = false; this.navigator.userGestureInProgressNotifier.removeListener$1(0, this); t2 = A._lateReadCheck(t1.___HeroFlight__proxyAnimation, "_proxyAnimation"); t1._performAnimationUpdate$1(t2.get$status(t2)); }, $signature: 0 }; A.HeroController.prototype = { didPush$2(route, previousRoute) { this._maybeStartHeroTransition$4(previousRoute, route, B.HeroFlightDirection_0, false); }, didPop$2(route, previousRoute) { if (!this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) this._maybeStartHeroTransition$4(route, previousRoute, B.HeroFlightDirection_1, false); }, didReplace$2$newRoute$oldRoute(newRoute, oldRoute) { var t1 = newRoute == null ? null : newRoute.get$isCurrent(); if (t1 === true) this._maybeStartHeroTransition$4(oldRoute, newRoute, B.HeroFlightDirection_0, false); }, didStartUserGesture$2(route, previousRoute) { this._maybeStartHeroTransition$4(route, previousRoute, B.HeroFlightDirection_1, true); }, didStopUserGesture$0() { var t1, t2, invalidFlights, _i; if (this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) return; t1 = this._flights; t1 = t1.get$values(t1); t2 = A._instanceType(t1)._eval$1("WhereIterable"); invalidFlights = A.List_List$of(new A.WhereIterable(t1, new A.HeroController_didStopUserGesture_isInvalidFlight(), t2), false, t2._eval$1("Iterable.E")); for (t1 = invalidFlights.length, _i = 0; _i < t1; ++_i) invalidFlights[_i]._handleAnimationUpdate$1(B.AnimationStatus_0); }, _maybeStartHeroTransition$4(fromRoute, toRoute, flightType, isUserGestureTransition) { var t1; if (toRoute != fromRoute && toRoute instanceof A.PageRoute && fromRoute instanceof A.PageRoute) { switch (flightType.index) { case 1: t1 = fromRoute._animationProxy; if (t1.get$value(t1) === 0) return; break; case 0: t1 = toRoute._animationProxy; if (t1.get$value(t1) === 1) return; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } if (isUserGestureTransition) if (flightType === B.HeroFlightDirection_1) { toRoute.toString; t1 = true; } else t1 = false; else t1 = false; if (t1) this._startHeroTransition$4(fromRoute, toRoute, flightType, isUserGestureTransition); else { t1 = toRoute._animationProxy; toRoute.set$offstage(t1.get$value(t1) === 0); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.HeroController__maybeStartHeroTransition_closure(this, fromRoute, toRoute, flightType, isUserGestureTransition)); } } }, _startHeroTransition$4(from, to, flightType, isUserGestureTransition) { var $navigator, t1, overlay, navigatorRenderObject, fromSubtreeContext, fromHeroes, toSubtreeContext, toHeroes, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, tag, fromHero, toHero, existingFlight, manifest, t16, t17, t18, shouldIncludeChildInPlaceholder, _this = this, _null = null, _s8_ = "manifest", _s15_ = "_proxyAnimation", _s13_ = "heroRectTween"; to.set$offstage(false); $navigator = _this._navigator$_navigator; t1 = $navigator == null; overlay = t1 ? _null : A._lateReadCheck($navigator.__NavigatorState__overlayKey, "_overlayKey").get$currentState(); if (t1 || overlay == null) return; navigatorRenderObject = $navigator._framework$_element.get$renderObject(); if (!(navigatorRenderObject instanceof A.RenderBox)) return; fromSubtreeContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, from._subtreeKey); fromHeroes = fromSubtreeContext != null ? A.Hero__allHeroesFor(fromSubtreeContext, isUserGestureTransition, $navigator) : B.Map_empty2; toSubtreeContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, to._subtreeKey); toHeroes = toSubtreeContext != null ? A.Hero__allHeroesFor(toSubtreeContext, isUserGestureTransition, $navigator) : B.Map_empty2; for (t1 = fromHeroes.get$entries(fromHeroes), t1 = t1.get$iterator(t1), t2 = _this.get$_defaultHeroFlightShuttleBuilder(), t3 = _this.createRectTween, t4 = _this._flights, t5 = type$.LabeledGlobalKey__OverlayEntryWidgetState, t6 = _this.get$_handleFlightEnded(), t7 = type$.JSArray_of_void_Function_AnimationStatus, t8 = type$.ObserverList_of_void_Function_AnimationStatus, t9 = type$.JSArray_of_void_Function, t10 = type$.ObserverList_of_void_Function, t11 = type$.Tween_double, t12 = type$.Animation_double, t13 = t11._eval$1("_AnimatedEvaluation"), t14 = type$.ReverseTween_nullable_Rect; t1.moveNext$0();) { t15 = t1.get$current(t1); tag = t15.get$key(t15); fromHero = t15.get$value(t15); toHero = toHeroes.$index(0, tag); existingFlight = t4.$index(0, tag); if (toHero == null) manifest = _null; else { t15 = navigatorRenderObject._box$_size; t15.toString; toHero._widget.toString; fromHero._widget.toString; manifest = new A._HeroFlightManifest(flightType, overlay, t15, from, to, fromHero, toHero, t3, t2, isUserGestureTransition, existingFlight != null); } if (manifest != null && manifest.get$isValid()) { toHeroes.remove$1(0, tag); if (existingFlight != null) { if (A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).type === B.HeroFlightDirection_0 && manifest.type === B.HeroFlightDirection_1) { A._lateReadCheck(existingFlight.___HeroFlight__proxyAnimation, _s15_).set$parent(0, new A.ReverseAnimation(manifest.get$animation(manifest), new A.ObserverList(A._setArrayType([], t7), t8), 0)); t15 = A._lateReadCheck(existingFlight.___HeroFlight_heroRectTween, _s13_); existingFlight.___HeroFlight_heroRectTween = new A.ReverseTween(t15, t15.end, t15.begin, t14); } else if (A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).type === B.HeroFlightDirection_1 && manifest.type === B.HeroFlightDirection_0) { t15 = A._lateReadCheck(existingFlight.___HeroFlight__proxyAnimation, _s15_); t16 = manifest.get$animation(manifest); t17 = A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_); t17 = t17.get$animation(t17); t17 = t17.get$value(t17); t15.set$parent(0, new A._AnimatedEvaluation(t12._as(t16), new A.Tween(t17, 1, t11), t13)); t15 = A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).fromHero; t16 = manifest.toHero; t17 = existingFlight.___HeroFlight_manifest; if (t15 !== t16) { A._lateReadCheck(t17, _s8_).fromHero.endFlight$1$keepPlaceholder(true); t16.startFlight$0(); existingFlight.___HeroFlight_heroRectTween = A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).createHeroRectTween$2$begin$end(A._lateReadCheck(existingFlight.___HeroFlight_heroRectTween, _s13_).end, manifest.get$toHeroLocation()); } else existingFlight.___HeroFlight_heroRectTween = A._lateReadCheck(t17, _s8_).createHeroRectTween$2$begin$end(A._lateReadCheck(existingFlight.___HeroFlight_heroRectTween, _s13_).end, A._lateReadCheck(existingFlight.___HeroFlight_heroRectTween, _s13_).begin); } else { t15 = A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_); t16 = A._lateReadCheck(existingFlight.___HeroFlight_heroRectTween, _s13_); t17 = A._lateReadCheck(existingFlight.___HeroFlight__proxyAnimation, _s15_); existingFlight.___HeroFlight_heroRectTween = t15.createHeroRectTween$2$begin$end(t16.transform$1(0, t17.get$value(t17)), manifest.get$toHeroLocation()); existingFlight.shuttle = null; t15 = manifest.type; t16 = existingFlight.___HeroFlight__proxyAnimation; if (t15 === B.HeroFlightDirection_1) A._lateReadCheck(t16, _s15_).set$parent(0, new A.ReverseAnimation(manifest.get$animation(manifest), new A.ObserverList(A._setArrayType([], t7), t8), 0)); else A._lateReadCheck(t16, _s15_).set$parent(0, manifest.get$animation(manifest)); A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).fromHero.endFlight$1$keepPlaceholder(true); A._lateReadCheck(existingFlight.___HeroFlight_manifest, _s8_).toHero.endFlight$1$keepPlaceholder(true); manifest.fromHero.startFlight$1$shouldIncludedChildInPlaceholder(t15 === B.HeroFlightDirection_0); manifest.toHero.startFlight$0(); t15 = existingFlight.overlayEntry._key.get$currentState(); if (t15 != null) t15._markNeedsBuild$0(); } existingFlight.___HeroFlight_manifest = manifest; } else { t15 = new A._HeroFlight(t6, B.C__AlwaysCompleteAnimation); t16 = A._setArrayType([], t7); t17 = new A.ObserverList(t16, t8); t18 = new A.ProxyAnimation(t17, new A.ObserverList(A._setArrayType([], t9), t10), 0); t18._status = B.AnimationStatus_0; t18._animations$_value = 0; t18.didRegisterListener$0(); t17._isDirty = true; t16.push(t15.get$_handleAnimationUpdate()); t15.___HeroFlight__proxyAnimation = t18; t15.___HeroFlight_manifest = manifest; switch (A._lateReadCheck(manifest, _s8_).type.index) { case 1: t16 = A._lateReadCheck(t15.___HeroFlight__proxyAnimation, _s15_); t17 = A._lateReadCheck(t15.___HeroFlight_manifest, _s8_); t16.set$parent(0, new A.ReverseAnimation(t17.get$animation(t17), new A.ObserverList(A._setArrayType([], t7), t8), 0)); shouldIncludeChildInPlaceholder = false; break; case 0: t16 = A._lateReadCheck(t15.___HeroFlight__proxyAnimation, _s15_); t17 = A._lateReadCheck(t15.___HeroFlight_manifest, _s8_); t16.set$parent(0, t17.get$animation(t17)); shouldIncludeChildInPlaceholder = true; break; default: A.throwExpression(A.ReachabilityError$(string$.x60null_c)); shouldIncludeChildInPlaceholder = _null; } t15.___HeroFlight_heroRectTween = A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).createHeroRectTween$2$begin$end(A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).get$fromHeroLocation(), A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).get$toHeroLocation()); A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).fromHero.startFlight$1$shouldIncludedChildInPlaceholder(shouldIncludeChildInPlaceholder); A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).toHero.startFlight$0(); t16 = A._lateReadCheck(t15.___HeroFlight_manifest, _s8_).overlay; t17 = new A.OverlayEntry(t15.get$_buildOverlay(), false, new A.LabeledGlobalKey(_null, t5), $.$get$ChangeNotifier__emptyListeners()); t15.overlayEntry = t17; t16.insert$1(0, t17); t17 = A._lateReadCheck(t15.___HeroFlight__proxyAnimation, _s15_); t17.didRegisterListener$0(); t17 = t17.AnimationLocalListenersMixin__listeners; t17._isDirty = true; t17._observer_list$_list.push(t15.get$onTick()); t4.$indexSet(0, tag, t15); } } else if (existingFlight != null) existingFlight._aborted = true; } for (t1 = J.get$iterator$ax(toHeroes.get$values(toHeroes)); t1.moveNext$0();) t1.get$current(t1).endFlight$0(); }, _handleFlightEnded$1(flight) { this._flights.remove$1(0, A._lateReadCheck(flight.___HeroFlight_manifest, "manifest").fromHero._widget.tag); }, _defaultHeroFlightShuttleBuilder$5(flightContext, animation, flightDirection, fromHeroContext, toHeroContext) { var t1 = toHeroContext._widget; t1.toString; return type$.Hero._as(t1).child; } }; A.HeroController_didStopUserGesture_isInvalidFlight.prototype = { call$1(flight) { var t1, _s8_ = "manifest"; if (A._lateReadCheck(flight.___HeroFlight_manifest, _s8_).isUserGestureTransition) if (A._lateReadCheck(flight.___HeroFlight_manifest, _s8_).type === B.HeroFlightDirection_1) { t1 = A._lateReadCheck(flight.___HeroFlight__proxyAnimation, "_proxyAnimation"); t1 = t1.get$status(t1) === B.AnimationStatus_0; } else t1 = false; else t1 = false; return t1; }, $signature: 1661 }; A.HeroController__maybeStartHeroTransition_closure.prototype = { call$1(value) { var _this = this; _this.$this._startHeroTransition$4(_this.from, _this.to, _this.flightType, _this.isUserGestureTransition); }, $signature: 22 }; A.Icon.prototype = { build$1(_, context) { var textDirection, iconTheme, iconSize, iconOpacity, iconColor, t2, iconWidget, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; iconTheme = A.IconTheme_of(context); iconSize = this.size; if (iconSize == null) iconSize = iconTheme.size; t1 = this.icon; if (t1 == null) return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A.SizedBox(iconSize, iconSize, _null, _null), _null); iconOpacity = iconTheme.get$opacity(iconTheme); if (iconOpacity == null) iconOpacity = 1; iconColor = this.color; if (iconColor == null) { t2 = iconTheme.color; t2.toString; iconColor = t2; } if (iconOpacity !== 1) iconColor = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * ((iconColor.get$value(iconColor) >>> 24 & 255) / 255 * iconOpacity)), iconColor.get$value(iconColor) >>> 16 & 255, iconColor.get$value(iconColor) >>> 8 & 255, iconColor.get$value(iconColor) & 255); t2 = A.Primitives_stringFromCharCode(t1.codePoint); iconWidget = A.RichText$(_null, _null, _null, B.TextOverflow_3, true, _null, A.TextSpan$(_null, _null, A.TextStyle$(_null, _null, iconColor, _null, _null, _null, _null, _null, t1.fontFamily, _null, _null, iconSize, _null, _null, _null, _null, false, _null, _null, _null, _null, t1.fontPackage, iconTheme.shadows, _null, _null), t2), B.TextAlign_4, textDirection, _null, 1, B.TextWidthBasis_0); if (t1.matchTextDirection) switch (textDirection) { case B.TextDirection_0: t1 = new A.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t1.scale$3(0, -1, 1, 1); iconWidget = A.Transform$(B.Alignment_0_0, iconWidget, t1, false); break; case B.TextDirection_1: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = A.Center$(iconWidget, _null, _null); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A.ExcludeSemantics(true, new A.SizedBox(iconSize, iconSize, t1, _null), _null), _null); } }; A.IconData.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.IconData && other.codePoint === _this.codePoint && other.fontFamily === _this.fontFamily && other.fontPackage == _this.fontPackage && other.matchTextDirection === _this.matchTextDirection; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.codePoint, _this.fontFamily, _this.fontPackage, _this.matchTextDirection, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { return "IconData(U+" + B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(this.codePoint, 16).toUpperCase(), 5, "0") + ")"; } }; A.IconTheme.prototype = { updateShouldNotify$1(oldWidget) { return !this.data.$eq(0, oldWidget.data); }, wrap$2(_, context, child) { return A.IconTheme$(child, this.data, null); } }; A.IconTheme_merge_closure.prototype = { call$1(context) { return A.IconTheme$(this.child, A.IconTheme__getInheritedIconThemeData(context).merge$1(this.data), this.key); }, $signature: 1660 }; A.IconThemeData.prototype = { copyWith$4$color$opacity$shadows$size(color, opacity, shadows, size) { var _this = this, t1 = color == null ? _this.color : color, t2 = opacity == null ? _this.get$opacity(_this) : opacity, t3 = size == null ? _this.size : size; return new A.IconThemeData(t1, t2, t3, shadows == null ? _this.shadows : shadows); }, copyWith$1$color(color) { return this.copyWith$4$color$opacity$shadows$size(color, null, null, null); }, copyWith$1$opacity(opacity) { return this.copyWith$4$color$opacity$shadows$size(null, opacity, null, null); }, merge$1(other) { return this.copyWith$4$color$opacity$shadows$size(other.color, other.get$opacity(other), other.shadows, other.size); }, resolve$1(_, context) { return this; }, get$opacity(_) { var t1 = this._opacity; return t1 == null ? null : B.JSNumber_methods.clamp$2(t1, 0, 1); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.IconThemeData && J.$eq$(other.color, _this.color) && other.get$opacity(other) == _this.get$opacity(_this) && other.size == _this.size && A.listEquals0(other.shadows, _this.shadows); }, get$hashCode(_) { var _this = this, t1 = _this.get$opacity(_this), t2 = _this.shadows; t2 = t2 == null ? null : A.Object_hashAll(t2); return A.Object_hash(_this.color, t1, _this.size, t2, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._IconThemeData_Object_Diagnosticable.prototype = {}; A.Image.prototype = { createState$0() { return new A._ImageState(B._StateLifecycle_0); } }; A._ImageState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); _this.___ImageState__scrollAwareContext = new A.DisposableBuildContext(_this, type$.DisposableBuildContext_State_Image); }, dispose$0(_) { var t1, _this = this; B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._stopListeningToStream$0(); t1 = _this._completerHandle; if (t1 != null) t1.dispose$0(0); A._lateReadCheck(_this.___ImageState__scrollAwareContext, "_scrollAwareContext")._disposable_build_context$_state = null; _this._replaceImage$1$info(null); _this.super$State$dispose(0); }, didChangeDependencies$0() { var t1, _this = this; _this._updateInvertColors$0(); _this._resolveImage$0(); t1 = _this._framework$_element; t1.toString; if (A.TickerMode_of(t1)) _this._listenToStream$0(); else _this._stopListeningToStream$1$keepStreamAlive(true); _this.super$State$didChangeDependencies(); }, didUpdateWidget$1(oldWidget) { var oldListener, t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._isListeningToStream && _this._widget.loadingBuilder == null !== (oldWidget.loadingBuilder == null)) { oldListener = _this._getListener$0(); t1 = _this._imageStream; t1.toString; t1.addListener$1(0, _this._getListener$1$recreateListener(true)); _this._imageStream.removeListener$1(0, oldListener); } if (!_this._widget.image.$eq(0, oldWidget.image)) _this._resolveImage$0(); }, reassemble$0() { this._resolveImage$0(); this.super$State$reassemble(); }, _updateInvertColors$0() { var t1 = this._framework$_element; t1.toString; t1 = A.MediaQuery_maybeOf(t1); t1 = t1 == null ? null : t1.invertColors; if (t1 == null) { A._lateReadCheck($.SemanticsBinding__instance.SemanticsBinding___SemanticsBinding__accessibilityFeatures, "_accessibilityFeatures").toString; t1 = false; } this.___ImageState__invertColors = t1; }, _resolveImage$0() { var t5, _this = this, t1 = A._lateReadCheck(_this.___ImageState__scrollAwareContext, "_scrollAwareContext"), t2 = _this._widget, t3 = t2.image, t4 = _this._framework$_element; t4.toString; t5 = t2.width; if (t5 != null && t2.height != null) { t5.toString; t2 = t2.height; t2.toString; t2 = new A.Size(t5, t2); } else t2 = null; _this._updateSourceStream$1(new A.ScrollAwareImageProvider(t1, t3, type$.ScrollAwareImageProvider_Object).resolve$1(0, A.createLocalImageConfiguration(t4, t2))); }, _getListener$1$recreateListener(recreateListener) { var t2, _this = this, t1 = _this._imageStreamListener; if (t1 == null || recreateListener) { _this._lastStack = _this._lastException = null; t1 = _this._widget; t2 = t1.loadingBuilder == null ? null : _this.get$_handleImageChunk(); t1 = t1.errorBuilder != null || false ? new A._ImageState__getListener_closure(_this) : null; t1 = _this._imageStreamListener = new A.ImageStreamListener(_this.get$_handleImageFrame(), t2, t1); } t1.toString; return t1; }, _getListener$0() { return this._getListener$1$recreateListener(false); }, _handleImageFrame$2(imageInfo, synchronousCall) { this.setState$1(new A._ImageState__handleImageFrame_closure(this, imageInfo, synchronousCall)); }, _handleImageChunk$1($event) { this.setState$1(new A._ImageState__handleImageChunk_closure(this, $event)); }, _replaceImage$1$info(info) { var t1 = this._imageInfo; if (t1 != null) t1.image.dispose$0(0); this._imageInfo = info; }, _updateSourceStream$1(newStream) { var t2, t3, _this = this, t1 = _this._imageStream; if (t1 == null) t2 = null; else { t2 = t1._image_stream$_completer; if (t2 == null) t2 = t1; } t3 = newStream._image_stream$_completer; if (t2 === (t3 == null ? newStream : t3)) return; if (_this._isListeningToStream) { t1.toString; t1.removeListener$1(0, _this._getListener$0()); } _this._widget.toString; _this.setState$1(new A._ImageState__updateSourceStream_closure(_this)); _this.setState$1(new A._ImageState__updateSourceStream_closure0(_this)); _this._imageStream = newStream; if (_this._isListeningToStream) newStream.addListener$1(0, _this._getListener$0()); }, _listenToStream$0() { var t1, _this = this; if (_this._isListeningToStream) return; t1 = _this._imageStream; t1.toString; t1.addListener$1(0, _this._getListener$0()); t1 = _this._completerHandle; if (t1 != null) t1.dispose$0(0); _this._completerHandle = null; _this._isListeningToStream = true; }, _stopListeningToStream$1$keepStreamAlive(keepStreamAlive) { var t1, t2, _this = this; if (!_this._isListeningToStream) return; if (keepStreamAlive) if (_this._completerHandle == null) { t1 = _this._imageStream; t1 = (t1 == null ? null : t1._image_stream$_completer) != null; } else t1 = false; else t1 = false; if (t1) { t1 = _this._imageStream._image_stream$_completer; if (t1._image_stream$_disposed) A.throwExpression(A.StateError$(string$.Stream)); t2 = new A.ImageStreamCompleterHandle(t1); t2.ImageStreamCompleterHandle$_$1(t1); _this._completerHandle = t2; } t1 = _this._imageStream; t1.toString; t1.removeListener$1(0, _this._getListener$0()); _this._isListeningToStream = false; }, _stopListeningToStream$0() { return this._stopListeningToStream$1$keepStreamAlive(false); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, result, _this = this, _null = null, t1 = _this._lastException; if (t1 != null) { t2 = _this._widget.errorBuilder; if (t2 != null) return t2.call$3(context, t1, _this._lastStack); } t1 = _this._imageInfo; t2 = t1 == null; t3 = t2 ? _null : t1.image; t4 = t2 ? _null : t1.debugLabel; t5 = _this._widget; t6 = t5.width; t7 = t5.height; t1 = t2 ? _null : t1.scale; if (t1 == null) t1 = 1; t2 = t5.color; t8 = t5.colorBlendMode; t9 = t5.fit; t10 = t5.alignment; t5 = t5.repeat; t11 = A._lateReadCheck(_this.___ImageState__invertColors, "_invertColors"); t12 = _this._widget; t13 = t12.filterQuality; result = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, "", _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new A.RawImage(t3, t4, t6, t7, t1, t2, _null, t13, t8, t9, t10, t5, _null, false, t11, false, _null), _null); t1 = t12.frameBuilder; if (t1 != null) result = t1.call$4(context, result, _this._frameNumber, _this._wasSynchronouslyLoaded); t1 = _this._widget.loadingBuilder; return t1 != null ? t1.call$3(context, result, _this._loadingProgress) : result; } }; A._ImageState__getListener_closure.prototype = { call$2(error, stackTrace) { var t1 = this.$this; t1.setState$1(new A._ImageState__getListener__closure(t1, error, stackTrace)); }, $signature: 1659 }; A._ImageState__getListener__closure.prototype = { call$0() { var t1 = this.$this; t1._lastException = this.error; t1._lastStack = this.stackTrace; }, $signature: 0 }; A._ImageState__handleImageFrame_closure.prototype = { call$0() { var t2, t1 = this.$this; t1._replaceImage$1$info(this.imageInfo); t1._lastStack = t1._lastException = t1._loadingProgress = null; t2 = t1._frameNumber; t1._frameNumber = t2 == null ? 0 : t2 + 1; t1._wasSynchronouslyLoaded = B.JSBool_methods.$or(t1._wasSynchronouslyLoaded, this.synchronousCall); }, $signature: 0 }; A._ImageState__handleImageChunk_closure.prototype = { call$0() { var t1 = this.$this; t1._loadingProgress = this.event; t1._lastStack = t1._lastException = null; }, $signature: 0 }; A._ImageState__updateSourceStream_closure.prototype = { call$0() { this.$this._replaceImage$1$info(null); }, $signature: 0 }; A._ImageState__updateSourceStream_closure0.prototype = { call$0() { var t1 = this.$this; t1._frameNumber = t1._loadingProgress = null; t1._wasSynchronouslyLoaded = false; }, $signature: 0 }; A.__ImageState_State_WidgetsBindingObserver.prototype = {}; A.BoxConstraintsTween.prototype = { lerp$1(t) { var t1 = A.BoxConstraints_lerp(this.begin, this.end, t); t1.toString; return t1; } }; A.DecorationTween.prototype = { lerp$1(t) { var t1 = A.Decoration_lerp(this.begin, this.end, t); t1.toString; return t1; } }; A.EdgeInsetsGeometryTween.prototype = { lerp$1(t) { var t1 = A.EdgeInsetsGeometry_lerp(this.begin, this.end, t); t1.toString; return t1; } }; A.BorderRadiusTween.prototype = { lerp$1(t) { return A.BorderRadius_lerp(this.begin, this.end, t); } }; A.Matrix4Tween.prototype = { lerp$1(t) { var t1, lerpTranslation, t2, t3, lerpRotation, lerpScale, x, y, z, w, x2, y2, z2, xx, xy, xz, yy, yz, zz, wx, wy, wz, arg0Storage, beginTranslation = new A.Vector3(new Float64Array(3)), endTranslation = new A.Vector3(new Float64Array(3)), beginRotation = A.Quaternion_Quaternion$identity(), endRotation = A.Quaternion_Quaternion$identity(), beginScale = new A.Vector3(new Float64Array(3)), endScale = new A.Vector3(new Float64Array(3)); this.begin.decompose$3(beginTranslation, beginRotation, beginScale); this.end.decompose$3(endTranslation, endRotation, endScale); t1 = 1 - t; lerpTranslation = beginTranslation.scaled$1(t1).$add(0, endTranslation.scaled$1(t)); t2 = beginRotation.scaled$1(t1).$add(0, endRotation.scaled$1(t)); t3 = new Float64Array(4); lerpRotation = new A.Quaternion(t3); lerpRotation.setFrom$1(t2); lerpRotation.normalize$0(0); lerpScale = beginScale.scaled$1(t1).$add(0, endScale.scaled$1(t)); t1 = new Float64Array(16); t2 = new A.Matrix4(t1); x = t3[0]; y = t3[1]; z = t3[2]; w = t3[3]; x2 = x + x; y2 = y + y; z2 = z + z; xx = x * x2; xy = x * y2; xz = x * z2; yy = y * y2; yz = y * z2; zz = z * z2; wx = w * x2; wy = w * y2; wz = w * z2; arg0Storage = lerpTranslation._v3storage; t1[0] = 1 - (yy + zz); t1[1] = xy + wz; t1[2] = xz - wy; t1[3] = 0; t1[4] = xy - wz; t1[5] = 1 - (xx + zz); t1[6] = yz + wx; t1[7] = 0; t1[8] = xz + wy; t1[9] = yz - wx; t1[10] = 1 - (xx + yy); t1[11] = 0; t1[12] = arg0Storage[0]; t1[13] = arg0Storage[1]; t1[14] = arg0Storage[2]; t1[15] = 1; t2.scale$1(0, lerpScale); return t2; } }; A.TextStyleTween.prototype = { lerp$1(t) { var t1 = A.TextStyle_lerp(this.begin, this.end, t); t1.toString; return t1; } }; A.ImplicitlyAnimatedWidget.prototype = {}; A.ImplicitlyAnimatedWidgetState.prototype = { get$_controller() { var t1, result, _this = this, value = _this.__ImplicitlyAnimatedWidgetState__controller; if (value === $) { t1 = _this._widget.duration; result = A.AnimationController$(null, t1, null, 1, null, _this); A._lateInitializeOnceCheck(_this.__ImplicitlyAnimatedWidgetState__controller, "_controller"); _this.__ImplicitlyAnimatedWidgetState__controller = result; value = result; } return value; }, get$_animation() { var t1, _this = this, value = _this.__ImplicitlyAnimatedWidgetState__animation; if (value === $) { t1 = _this.get$_controller(); value = _this.__ImplicitlyAnimatedWidgetState__animation = A.CurvedAnimation$(_this._widget.curve, t1, null); } return value; }, initState$0() { var _this = this; _this.super$State$initState(); _this.get$_controller().addStatusListener$1(new A.ImplicitlyAnimatedWidgetState_initState_closure(_this)); _this._constructTweens$0(); _this.didUpdateTweens$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.curve !== oldWidget.curve) { _this.get$_animation().dispose$0(0); t1 = _this.get$_controller(); _this.__ImplicitlyAnimatedWidgetState__animation = A.CurvedAnimation$(_this._widget.curve, t1, null); } _this.get$_controller().duration = _this._widget.duration; if (_this._constructTweens$0()) { _this.forEachTween$1(new A.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure(_this)); t1 = _this.get$_controller(); t1.set$value(0, 0); t1.forward$0(0); _this.didUpdateTweens$0(); } }, dispose$0(_) { this.get$_animation().dispose$0(0); this.get$_controller().dispose$0(0); this.super$_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin$dispose(0); }, _updateTween$2(tween, targetValue) { var t1; if (tween == null) return; t1 = this.get$_animation(); tween.set$begin(tween.transform$1(0, t1.get$value(t1))); tween.set$end(0, targetValue); }, _constructTweens$0() { var t1 = {}; t1.shouldStartAnimation = false; this.forEachTween$1(new A.ImplicitlyAnimatedWidgetState__constructTweens_closure(t1, this)); return t1.shouldStartAnimation; }, didUpdateTweens$0() { } }; A.ImplicitlyAnimatedWidgetState_initState_closure.prototype = { call$1($status) { switch ($status) { case B.AnimationStatus_3: this.$this._widget.toString; break; case B.AnimationStatus_0: case B.AnimationStatus_1: case B.AnimationStatus_2: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 42 }; A.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure.prototype = { call$3(tween, targetValue, $constructor) { this.$this._updateTween$2(tween, targetValue); return tween; }, $signature: 558 }; A.ImplicitlyAnimatedWidgetState__constructTweens_closure.prototype = { call$3(tween, targetValue, $constructor) { var t1; if (targetValue != null) { if (tween == null) tween = $constructor.call$1(targetValue); t1 = tween.end; if (!J.$eq$(targetValue, t1 == null ? tween.begin : t1)) this._box_0.shouldStartAnimation = true; } else tween = null; return tween; }, $signature: 558 }; A.AnimatedWidgetBaseState.prototype = { initState$0() { this.super$ImplicitlyAnimatedWidgetState$initState(); var t1 = this.get$_controller(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(this.get$_handleAnimationChanged()); }, _handleAnimationChanged$0() { this.setState$1(new A.AnimatedWidgetBaseState__handleAnimationChanged_closure()); } }; A.AnimatedWidgetBaseState__handleAnimationChanged_closure.prototype = { call$0() { }, $signature: 0 }; A.AnimatedContainer.prototype = { createState$0() { return new A._AnimatedContainerState(null, null, B._StateLifecycle_0); } }; A._AnimatedContainerState.prototype = { forEachTween$1(visitor) { var t2, t3, t4, _this = this, _null = null, t1 = _this._implicit_animations$_alignment; _this._widget.toString; t2 = type$.nullable_AlignmentGeometryTween; _this._implicit_animations$_alignment = t2._as(visitor.call$3(t1, _null, new A._AnimatedContainerState_forEachTween_closure())); t1 = type$.nullable_EdgeInsetsGeometryTween; _this._implicit_animations$_padding = t1._as(visitor.call$3(_this._implicit_animations$_padding, _this._widget.padding, new A._AnimatedContainerState_forEachTween_closure0())); t3 = type$.nullable_DecorationTween; _this._implicit_animations$_decoration = t3._as(visitor.call$3(_this._implicit_animations$_decoration, _this._widget.decoration, new A._AnimatedContainerState_forEachTween_closure1())); t4 = _this._foregroundDecoration; _this._widget.toString; _this._foregroundDecoration = t3._as(visitor.call$3(t4, _null, new A._AnimatedContainerState_forEachTween_closure2())); _this._constraints = type$.nullable_BoxConstraintsTween._as(visitor.call$3(_this._constraints, _this._widget.constraints, new A._AnimatedContainerState_forEachTween_closure3())); _this._margin = t1._as(visitor.call$3(_this._margin, _this._widget.margin, new A._AnimatedContainerState_forEachTween_closure4())); t1 = _this._implicit_animations$_transform; _this._widget.toString; _this._implicit_animations$_transform = type$.nullable_Matrix4Tween._as(visitor.call$3(t1, _null, new A._AnimatedContainerState_forEachTween_closure5())); t1 = _this._transformAlignment; _this._widget.toString; _this._transformAlignment = t2._as(visitor.call$3(t1, _null, new A._AnimatedContainerState_forEachTween_closure6())); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, animation = _this.get$_animation(), t1 = _this._implicit_animations$_alignment; t1 = t1 == null ? _null : t1.transform$1(0, animation.get$value(animation)); t2 = _this._implicit_animations$_padding; t2 = t2 == null ? _null : t2.transform$1(0, animation.get$value(animation)); t3 = _this._implicit_animations$_decoration; t3 = t3 == null ? _null : t3.transform$1(0, animation.get$value(animation)); t4 = _this._foregroundDecoration; t4 = t4 == null ? _null : t4.transform$1(0, animation.get$value(animation)); t5 = _this._constraints; t5 = t5 == null ? _null : t5.transform$1(0, animation.get$value(animation)); t6 = _this._margin; t6 = t6 == null ? _null : t6.transform$1(0, animation.get$value(animation)); t7 = _this._implicit_animations$_transform; t7 = t7 == null ? _null : t7.transform$1(0, animation.get$value(animation)); t8 = _this._transformAlignment; t8 = t8 == null ? _null : t8.transform$1(0, animation.get$value(animation)); return A.Container$(t1, _this._widget.child, B.Clip_0, _null, t5, t3, t4, _null, _null, t6, t2, t7, t8, _null); } }; A._AnimatedContainerState_forEachTween_closure.prototype = { call$1(value) { return new A.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, $signature: 559 }; A._AnimatedContainerState_forEachTween_closure0.prototype = { call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 368 }; A._AnimatedContainerState_forEachTween_closure1.prototype = { call$1(value) { return new A.DecorationTween(type$.Decoration._as(value), null); }, $signature: 561 }; A._AnimatedContainerState_forEachTween_closure2.prototype = { call$1(value) { return new A.DecorationTween(type$.Decoration._as(value), null); }, $signature: 561 }; A._AnimatedContainerState_forEachTween_closure3.prototype = { call$1(value) { return new A.BoxConstraintsTween(type$.BoxConstraints._as(value), null); }, $signature: 1657 }; A._AnimatedContainerState_forEachTween_closure4.prototype = { call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 368 }; A._AnimatedContainerState_forEachTween_closure5.prototype = { call$1(value) { return new A.Matrix4Tween(type$.Matrix4._as(value), null); }, $signature: 1656 }; A._AnimatedContainerState_forEachTween_closure6.prototype = { call$1(value) { return new A.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, $signature: 559 }; A.AnimatedPadding.prototype = { createState$0() { return new A._AnimatedPaddingState(null, null, B._StateLifecycle_0); } }; A._AnimatedPaddingState.prototype = { forEachTween$1(visitor) { this._implicit_animations$_padding = type$.nullable_EdgeInsetsGeometryTween._as(visitor.call$3(this._implicit_animations$_padding, this._widget.padding, new A._AnimatedPaddingState_forEachTween_closure())); }, build$1(_, context) { var t2, t1 = this._implicit_animations$_padding; t1.toString; t2 = this.get$_animation(); return new A.Padding(J.clamp$2$n(t1.transform$1(0, t2.get$value(t2)), B.EdgeInsets_0_0_0_0, B._MixedEdgeInsets_QWq), this._widget.child, null); } }; A._AnimatedPaddingState_forEachTween_closure.prototype = { call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 368 }; A.AnimatedOpacity.prototype = { createState$0() { return new A._AnimatedOpacityState(null, null, B._StateLifecycle_0); } }; A._AnimatedOpacityState.prototype = { forEachTween$1(visitor) { this._implicit_animations$_opacity = type$.nullable_Tween_double._as(visitor.call$3(this._implicit_animations$_opacity, this._widget.opacity, new A._AnimatedOpacityState_forEachTween_closure())); }, didUpdateTweens$0() { var t1 = this.get$_animation(), t2 = this._implicit_animations$_opacity; t2.toString; this.___AnimatedOpacityState__opacityAnimation = new A._AnimatedEvaluation(type$.Animation_double._as(t1), t2, A._instanceType(t2)._eval$1("_AnimatedEvaluation")); }, build$1(_, context) { var t1 = A._lateReadCheck(this.___AnimatedOpacityState__opacityAnimation, "_opacityAnimation"), t2 = this._widget; return A.FadeTransition$(t2.alwaysIncludeSemantics, t2.child, t1); } }; A._AnimatedOpacityState_forEachTween_closure.prototype = { call$1(value) { return new A.Tween(A._asDoubleS(value), null, type$.Tween_double); }, $signature: 437 }; A.AnimatedDefaultTextStyle.prototype = { createState$0() { return new A._AnimatedDefaultTextStyleState(null, null, B._StateLifecycle_0); } }; A._AnimatedDefaultTextStyleState.prototype = { forEachTween$1(visitor) { this._implicit_animations$_style = type$.nullable_TextStyleTween._as(visitor.call$3(this._implicit_animations$_style, this._widget.style, new A._AnimatedDefaultTextStyleState_forEachTween_closure())); }, build$1(_, context) { var t2, t3, _null = null, t1 = this._implicit_animations$_style; t1.toString; t2 = this.get$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t1 = this._widget; t3 = t1.softWrap; return A.DefaultTextStyle$(t1.child, _null, _null, B.TextOverflow_0, t3, t2, _null, _null, B.TextWidthBasis_0); } }; A._AnimatedDefaultTextStyleState_forEachTween_closure.prototype = { call$1(value) { return new A.TextStyleTween(type$.TextStyle._as(value), null); }, $signature: 1649 }; A.AnimatedPhysicalModel.prototype = { createState$0() { return new A._AnimatedPhysicalModelState(null, null, B._StateLifecycle_0); } }; A._AnimatedPhysicalModelState.prototype = { forEachTween$1(visitor) { var _this = this, t1 = _this._borderRadius; _this._widget.toString; _this._borderRadius = type$.nullable_BorderRadiusTween._as(visitor.call$3(t1, B.BorderRadius_tLn, new A._AnimatedPhysicalModelState_forEachTween_closure())); _this._implicit_animations$_elevation = type$.nullable_Tween_double._as(visitor.call$3(_this._implicit_animations$_elevation, _this._widget.elevation, new A._AnimatedPhysicalModelState_forEachTween_closure0())); t1 = type$.nullable_ColorTween; _this._implicit_animations$_color = t1._as(visitor.call$3(_this._implicit_animations$_color, _this._widget.color, new A._AnimatedPhysicalModelState_forEachTween_closure1())); _this._implicit_animations$_shadowColor = t1._as(visitor.call$3(_this._implicit_animations$_shadowColor, _this._widget.shadowColor, new A._AnimatedPhysicalModelState_forEachTween_closure2())); }, build$1(_, context) { var t3, t4, t5, t6, t7, _this = this, t1 = _this._widget, t2 = t1.shape; t1 = t1.clipBehavior; t3 = _this._borderRadius; t3.toString; t4 = _this.get$_animation(); t4 = t3.transform$1(0, t4.get$value(t4)); t3 = _this._implicit_animations$_elevation; t3.toString; t5 = _this.get$_animation(); t5 = t3.transform$1(0, t5.get$value(t5)); t3 = _this._widget.color; t6 = _this._implicit_animations$_shadowColor; t6.toString; t7 = _this.get$_animation(); t7 = t6.transform$1(0, t7.get$value(t7)); t7.toString; return new A.PhysicalModel(t2, t1, t4, t5, t3, t7, _this._widget.child, null); } }; A._AnimatedPhysicalModelState_forEachTween_closure.prototype = { call$1(value) { return new A.BorderRadiusTween(type$.BorderRadius._as(value), null); }, $signature: 1648 }; A._AnimatedPhysicalModelState_forEachTween_closure0.prototype = { call$1(value) { return new A.Tween(A._asDoubleS(value), null, type$.Tween_double); }, $signature: 437 }; A._AnimatedPhysicalModelState_forEachTween_closure1.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, $signature: 281 }; A._AnimatedPhysicalModelState_forEachTween_closure2.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, $signature: 281 }; A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InheritedModel.prototype = { createElement$0(_) { return new A.InheritedModelElement(A.HashMap_HashMap(null, null, null, type$.Element_2, type$.nullable_Object), this, B._ElementLifecycle_0, A._instanceType(this)._eval$1("InheritedModelElement")); } }; A.InheritedModelElement.prototype = { updateDependencies$2(dependent, aspect) { var t1 = this._dependents, t2 = this.$ti, dependencies = t2._eval$1("Set<1>?")._as(t1.$index(0, dependent)); if (dependencies != null && dependencies.get$isEmpty(dependencies)) return; t1.$indexSet(0, dependent, A.HashSet_HashSet(t2._precomputed1)); }, notifyDependent$2(oldWidget, dependent) { var t2, t1 = this.$ti, dependencies = t1._eval$1("Set<1>?")._as(this._dependents.$index(0, dependent)); if (dependencies == null) return; if (!dependencies.get$isEmpty(dependencies)) { t2 = this._widget; t2.toString; t2 = t1._eval$1("InheritedModel<1>")._as(t2).updateShouldNotifyDependent$2(oldWidget, dependencies); t1 = t2; } else t1 = true; if (t1) dependent.didChangeDependencies$0(); } }; A.InheritedNotifier.prototype = { updateShouldNotify$1(oldWidget) { return !J.$eq$(oldWidget.notifier, this.notifier); }, createElement$0(_) { var t1 = new A._InheritedNotifierElement(A.HashMap_HashMap(null, null, null, type$.Element_2, type$.nullable_Object), this, B._ElementLifecycle_0, A._instanceType(this)._eval$1("_InheritedNotifierElement")), t2 = this.notifier; if (t2 != null) t2.addListener$1(0, t1.get$_handleUpdate()); return t1; } }; A._InheritedNotifierElement.prototype = { update$1(_, newWidget) { var oldNotifier, newNotifier, _this = this, t1 = _this._widget; t1.toString; oldNotifier = _this.$ti._eval$1("InheritedNotifier<1>")._as(t1).notifier; newNotifier = newWidget.notifier; if (!J.$eq$(oldNotifier, newNotifier)) { if (oldNotifier != null) oldNotifier.removeListener$1(0, _this.get$_handleUpdate()); if (newNotifier != null) newNotifier.addListener$1(0, _this.get$_handleUpdate()); } _this.super$ProxyElement$update(0, newWidget); }, build$0(_) { var t1, _this = this; if (_this._inherited_notifier$_dirty) { t1 = _this._widget; t1.toString; _this.super$InheritedElement$notifyClients(_this.$ti._eval$1("InheritedNotifier<1>")._as(t1)); _this._inherited_notifier$_dirty = false; } return _this.super$ProxyElement$build(0); }, _handleUpdate$0() { this._inherited_notifier$_dirty = true; this.markNeedsBuild$0(); }, notifyClients$1(oldWidget) { this.super$InheritedElement$notifyClients(oldWidget); this._inherited_notifier$_dirty = false; }, unmount$0() { var _this = this, t1 = _this._widget; t1.toString; t1 = _this.$ti._eval$1("InheritedNotifier<1>")._as(t1).notifier; if (t1 != null) t1.removeListener$1(0, _this.get$_handleUpdate()); _this.super$Element$unmount(); } }; A.InheritedTheme.prototype = {}; A.InheritedTheme_capture_closure.prototype = { call$1(ancestor) { var t1, themeType, t2; if (ancestor.$eq(0, this.to)) return false; if (ancestor instanceof A.InheritedElement) { t1 = ancestor._widget; t1.toString; t1 = t1 instanceof A.InheritedTheme; } else t1 = false; if (t1) { t1 = ancestor._widget; t1.toString; type$.InheritedTheme._as(t1); themeType = t1.get$runtimeType(t1); t2 = this.themeTypes; if (!t2.contains$1(0, themeType)) { t2.add$1(0, themeType); this.themes.push(t1); } } return true; }, $signature: 249 }; A.CapturedThemes.prototype = {}; A._CaptureAll.prototype = { build$1(_, context) { var t1, t2, _i, wrappedChild = this.child; for (t1 = this.themes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) wrappedChild = t1[_i].wrap$2(0, context, wrappedChild); return wrappedChild; } }; A.InteractiveViewer.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new A._InteractiveViewerState(new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), _null, _null, B._StateLifecycle_0); } }; A._InteractiveViewerState.prototype = { get$_boundaryRect() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._interactive_viewer$_childKey).get$renderObject(); t1.toString; t1 = type$.RenderBox._as(t1)._box$_size; t1.toString; this._widget.toString; return B.EdgeInsets_0_0_0_0.inflateRect$1(new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); }, get$_interactive_viewer$_viewport() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._parentKey).get$renderObject(); t1.toString; t1 = type$.RenderBox._as(t1)._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, _matrixTranslate$2(matrix, translation) { var t1, nextMatrix, nextViewport, t2, rotationMatrix, t3, t4, t5, t6, t7, t8, minX, minY, maxX, maxY, boundariesAabbQuad, offendingDistance, currentScale, correctedMatrix, offendingCorrectedDistance, _this = this; if (translation.$eq(0, B.Offset_0_0)) { matrix.toString; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); return t1; } _this._widget.toString; matrix.toString; nextMatrix = new A.Matrix4(new Float64Array(16)); nextMatrix.setFrom$1(matrix); nextMatrix.translate$2(0, translation._dx, translation._dy); nextViewport = A._transformViewport(nextMatrix, _this.get$_interactive_viewer$_viewport()); t1 = _this.get$_boundaryRect(); if (t1.get$isInfinite(t1)) return nextMatrix; t1 = _this.get$_boundaryRect(); t2 = _this._currentRotation; rotationMatrix = new A.Matrix4(new Float64Array(16)); rotationMatrix.setIdentity$0(); t3 = t1.right; t4 = t1.left; t5 = t3 - t4; t6 = t1.bottom; t1 = t1.top; t7 = t6 - t1; rotationMatrix.translate$2(0, t5 / 2, t7 / 2); rotationMatrix.rotateZ$1(t2); rotationMatrix.translate$2(0, -t5 / 2, -t7 / 2); t2 = new A.Vector3(new Float64Array(3)); t2.setValues$3(t4, t1, 0); t2 = rotationMatrix.transform3$1(t2); t5 = new A.Vector3(new Float64Array(3)); t5.setValues$3(t3, t1, 0); t5 = rotationMatrix.transform3$1(t5); t1 = new A.Vector3(new Float64Array(3)); t1.setValues$3(t3, t6, 0); t1 = rotationMatrix.transform3$1(t1); t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(t4, t6, 0); t3 = rotationMatrix.transform3$1(t3); t4 = new Float64Array(3); new A.Vector3(t4).setFrom$1(t2); t2 = new Float64Array(3); new A.Vector3(t2).setFrom$1(t5); t5 = new Float64Array(3); new A.Vector3(t5).setFrom$1(t1); t1 = new Float64Array(3); new A.Vector3(t1).setFrom$1(t3); t3 = t4[0]; t6 = t2[0]; t7 = t5[0]; t8 = t1[0]; minX = Math.min(t3, Math.min(t6, Math.min(t7, t8))); t4 = t4[1]; t2 = t2[1]; t5 = t5[1]; t1 = t1[1]; minY = Math.min(t4, Math.min(t2, Math.min(t5, t1))); maxX = Math.max(t3, Math.max(t6, Math.max(t7, t8))); maxY = Math.max(t4, Math.max(t2, Math.max(t5, t1))); t1 = new A.Vector3(new Float64Array(3)); t1.setValues$3(minX, minY, 0); t2 = new A.Vector3(new Float64Array(3)); t2.setValues$3(maxX, minY, 0); t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(maxX, maxY, 0); t4 = new A.Vector3(new Float64Array(3)); t4.setValues$3(minX, maxY, 0); t5 = new A.Vector3(new Float64Array(3)); t5.setFrom$1(t1); t1 = new A.Vector3(new Float64Array(3)); t1.setFrom$1(t2); t2 = new A.Vector3(new Float64Array(3)); t2.setFrom$1(t3); t3 = new A.Vector3(new Float64Array(3)); t3.setFrom$1(t4); boundariesAabbQuad = new A.Quad(t5, t1, t2, t3); offendingDistance = A._exceedsBy(boundariesAabbQuad, nextViewport); if (offendingDistance.$eq(0, B.Offset_0_0)) return nextMatrix; t1 = nextMatrix.getTranslation$0()._v3storage; t2 = t1[0]; t1 = t1[1]; currentScale = matrix.getMaxScaleOnAxis$0(); t2 -= offendingDistance._dx * currentScale; t1 -= offendingDistance._dy * currentScale; correctedMatrix = new A.Matrix4(new Float64Array(16)); correctedMatrix.setFrom$1(matrix); t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(t2, t1, 0); correctedMatrix.setTranslation$1(t3); offendingCorrectedDistance = A._exceedsBy(boundariesAabbQuad, A._transformViewport(correctedMatrix, _this.get$_interactive_viewer$_viewport())); if (offendingCorrectedDistance.$eq(0, B.Offset_0_0)) return correctedMatrix; t3 = offendingCorrectedDistance._dx === 0; if (!t3 && offendingCorrectedDistance._dy !== 0) { t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); return t1; } t2 = t3 ? t2 : 0; t1 = offendingCorrectedDistance._dy === 0 ? t1 : 0; t3 = new A.Matrix4(new Float64Array(16)); t3.setFrom$1(matrix); t4 = new A.Vector3(new Float64Array(3)); t4.setValues$3(t2, t1, 0); t3.setTranslation$1(t4); return t3; }, _matrixScale$2(matrix, scale) { var t1, currentScale, t2, t3, t4, clampedTotalScale, _this = this; if (scale === 1) { matrix.toString; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); return t1; } currentScale = _this._transformationController._change_notifier$_value.getMaxScaleOnAxis$0(); t1 = _this.get$_interactive_viewer$_viewport(); t2 = _this.get$_boundaryRect(); t3 = _this.get$_interactive_viewer$_viewport(); t4 = _this.get$_boundaryRect(); clampedTotalScale = B.JSNumber_methods.clamp$2(Math.max(currentScale * scale, Math.max((t1.right - t1.left) / (t2.right - t2.left), (t3.bottom - t3.top) / (t4.bottom - t4.top))), 0.8, _this._widget.maxScale); matrix.toString; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); t1.scale$1(0, clampedTotalScale / currentScale); return t1; }, _matrixRotate$3(matrix, rotation, focalPoint) { var t1, focalPointScene, t2, t3; if (rotation === 0) { matrix.toString; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); return t1; } focalPointScene = this._transformationController.toScene$1(focalPoint); matrix.toString; t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(matrix); t2 = focalPointScene._dx; t3 = focalPointScene._dy; t1.translate$2(0, t2, t3); t1.rotateZ$1(-rotation); t1.translate$2(0, -t2, -t3); return t1; }, _gestureIsSupported$1(gestureType) { switch (gestureType) { case B._GestureType_2: return false; case B._GestureType_1: this._widget.toString; return true; case B._GestureType_0: case null: this._widget.toString; return true; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getGestureType$1(details) { this._widget.toString; if (Math.abs(details.scale - 1) > Math.abs(0)) return B._GestureType_1; else return B._GestureType_0; }, _onScaleStart$1(details) { var t1, _this = this, _s11_ = "_controller"; _this._widget.toString; t1 = A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_)._ticker; if (t1 != null && t1._ticker$_future != null) { A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_).stop$0(0); t1 = A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_); t1.set$value(0, t1.lowerBound); t1 = _this._interactive_viewer$_animation; if (t1 != null) t1.parent.removeListener$1(0, _this.get$_onAnimate()); _this._interactive_viewer$_animation = null; } _this._panAxis = _this._gestureType = null; _this._scaleStart = _this._transformationController._change_notifier$_value.getMaxScaleOnAxis$0(); _this._referenceFocalPoint = _this._transformationController.toScene$1(details.localFocalPoint); _this._rotationStart = _this._currentRotation; }, _onScaleUpdate$1(details) { var t3, focalPointSceneScaled, t4, focalPointSceneCheck, desiredRotation, translationChange, _this = this, scale = _this._transformationController._change_notifier$_value.getMaxScaleOnAxis$0(), t1 = details.localFocalPoint, focalPointScene = _this._transformationController.toScene$1(t1), t2 = _this._gestureType; if (t2 === B._GestureType_0) t2 = _this._gestureType = _this._getGestureType$1(details); else if (t2 == null) { t2 = _this._getGestureType$1(details); _this._gestureType = t2; } if (!_this._gestureIsSupported$1(t2)) { _this._widget.toString; return; } switch (_this._gestureType.index) { case 1: t2 = _this._scaleStart; t2.toString; t3 = _this._transformationController; t3.set$value(0, _this._matrixScale$2(t3._change_notifier$_value, t2 * details.scale / scale)); focalPointSceneScaled = _this._transformationController.toScene$1(t1); t2 = _this._transformationController; t3 = t2._change_notifier$_value; t4 = _this._referenceFocalPoint; t4.toString; t2.set$value(0, _this._matrixTranslate$2(t3, focalPointSceneScaled.$sub(0, t4))); focalPointSceneCheck = _this._transformationController.toScene$1(t1); t1 = _this._referenceFocalPoint; t1.toString; if (!A._round(t1).$eq(0, A._round(focalPointSceneCheck))) _this._referenceFocalPoint = focalPointSceneCheck; break; case 2: t2 = details.rotation; if (t2 === 0) { _this._widget.toString; return; } t3 = _this._rotationStart; t3.toString; desiredRotation = t3 + t2; t2 = _this._transformationController; t2.set$value(0, _this._matrixRotate$3(t2._change_notifier$_value, _this._currentRotation - desiredRotation, t1)); _this._currentRotation = desiredRotation; break; case 0: if (details.scale !== 1) { _this._widget.toString; return; } if (_this._panAxis == null) { t2 = _this._referenceFocalPoint; t2.toString; _this._panAxis = A._getPanAxis(t2, focalPointScene); } t2 = _this._referenceFocalPoint; t2.toString; translationChange = focalPointScene.$sub(0, t2); t2 = _this._transformationController; t2.set$value(0, _this._matrixTranslate$2(t2._change_notifier$_value, translationChange)); _this._referenceFocalPoint = _this._transformationController.toScene$1(t1); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._widget.toString; }, _onScaleEnd$1(details) { var t1, t2, t3, t4, t5, t6, t7, _this = this, _s11_ = "_controller"; _this._widget.toString; _this._referenceFocalPoint = _this._rotationStart = _this._scaleStart = null; t1 = _this._interactive_viewer$_animation; if (t1 != null) t1.parent.removeListener$1(0, _this.get$_onAnimate()); t1 = A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_); t1.set$value(0, t1.lowerBound); if (!_this._gestureIsSupported$1(_this._gestureType)) { _this._panAxis = null; return; } if (_this._gestureType !== B._GestureType_0 || details.velocity.pixelsPerSecond.get$distance() < 50) { _this._panAxis = null; return; } t1 = _this._transformationController._change_notifier$_value.getTranslation$0()._v3storage; t2 = t1[0]; t1 = t1[1]; t3 = details.velocity.pixelsPerSecond; t4 = Math.log(0.0000135); t5 = Math.log(0.0000135); t6 = Math.log(10 / t3.get$distance()); t7 = Math.log(135e-9); t4 = new A.FrictionSimulation(0.0000135, t4, t2, t3._dx, B.Tolerance_Gdw).get$finalX(); t3 = new A.FrictionSimulation(0.0000135, t5, t1, t3._dy, B.Tolerance_Gdw).get$finalX(); t5 = type$.Tween_Offset; _this._interactive_viewer$_animation = new A._AnimatedEvaluation(A.CurvedAnimation$(B.C__DecelerateCurve, A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_), null), new A.Tween(new A.Offset(t2, t1), new A.Offset(t4, t3), t5), t5._eval$1("_AnimatedEvaluation")); A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_).duration = A.Duration$(0, 0, 0, B.JSNumber_methods.round$0(t6 / t7 * 1000), 0, 0); _this._interactive_viewer$_animation.parent.addListener$1(0, _this.get$_onAnimate()); A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_).forward$0(0); }, _interactive_viewer$_receivedPointerSignal$1($event) { var t1, scaleChange, focalPointScene, focalPointSceneScaled, _this = this; if (type$.PointerScrollEvent._is($event)) { if ($event.get$scrollDelta()._dy === 0) return; _this._widget.toString; t1 = $event.get$scrollDelta(); _this._widget.toString; scaleChange = Math.exp(-t1._dy / 200); if (!_this._gestureIsSupported$1(B._GestureType_1)) { _this._widget.toString; return; } t1 = _this._transformationController; t1.toString; focalPointScene = t1.toScene$1($event.get$localPosition()); t1 = _this._transformationController; t1.set$value(0, _this._matrixScale$2(t1._change_notifier$_value, scaleChange)); t1 = _this._transformationController; t1.toString; focalPointSceneScaled = t1.toScene$1($event.get$localPosition()); t1 = _this._transformationController; t1.set$value(0, _this._matrixTranslate$2(t1._change_notifier$_value, focalPointSceneScaled.$sub(0, focalPointScene))); _this._widget.toString; } }, _onAnimate$0() { var t2, translationScene, t3, translationChangeScene, _this = this, _s11_ = "_controller", t1 = A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_)._ticker; if (!(t1 != null && t1._ticker$_future != null)) { _this._panAxis = null; t1 = _this._interactive_viewer$_animation; if (t1 != null) t1.parent.removeListener$1(0, _this.get$_onAnimate()); _this._interactive_viewer$_animation = null; t1 = A._lateReadCheck(_this.___InteractiveViewerState__controller, _s11_); t1.set$value(0, t1.lowerBound); return; } t1 = _this._transformationController._change_notifier$_value.getTranslation$0()._v3storage; t2 = t1[0]; t1 = t1[1]; translationScene = _this._transformationController.toScene$1(new A.Offset(t2, t1)); t1 = _this._transformationController; t1.toString; t2 = _this._interactive_viewer$_animation; t3 = t2._evaluatable; t2 = t2.parent; translationChangeScene = t1.toScene$1(t3.transform$1(0, t2.get$value(t2))).$sub(0, translationScene); t2 = _this._transformationController; t2.set$value(0, _this._matrixTranslate$2(t2._change_notifier$_value, translationChangeScene)); }, _onTransformationControllerChange$0() { this.setState$1(new A._InteractiveViewerState__onTransformationControllerChange_closure()); }, initState$0() { var t1, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget.transformationController; _this._transformationController = t1; t1.addListener$1(0, _this.get$_onTransformationControllerChange()); _this.___InteractiveViewerState__controller = A.AnimationController$(_null, _null, _null, 1, _null, _this); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; t1 = _this._widget; if (t1.transformationController !== oldWidget.transformationController) { t1 = _this.get$_onTransformationControllerChange(); _this._transformationController.removeListener$1(0, t1); t2 = _this._widget.transformationController; _this._transformationController = t2; t2.addListener$1(0, t1); } }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.___InteractiveViewerState__controller, "_controller").dispose$0(0); _this._transformationController.removeListener$1(0, _this.get$_onTransformationControllerChange()); _this._widget.toString; _this.super$__InteractiveViewerState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t2, child, _this = this, _null = null, t1 = _this._widget; t1.toString; t2 = _this._transformationController._change_notifier$_value; child = new A._InteractiveViewerBuilt(t1.child, _this._interactive_viewer$_childKey, B.Clip_1, true, t2, _null); return A.Listener$(B.HitTestBehavior_0, A.GestureDetector$(B.HitTestBehavior_1, child, B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_onScaleEnd(), _this.get$_onScaleStart(), _this.get$_onScaleUpdate(), _null, _null, _null, _null, _null, _null, _null), _this._parentKey, _null, _null, _null, _null, _this.get$_interactive_viewer$_receivedPointerSignal(), _null); } }; A._InteractiveViewerState__onTransformationControllerChange_closure.prototype = { call$0() { }, $signature: 0 }; A._InteractiveViewerBuilt.prototype = { build$1(_, context) { var _this = this, child = A.Transform$(null, new A.KeyedSubtree(_this.child, _this.childKey), _this.matrix, true); return A.ClipRect$(child, _this.clipBehavior, null); } }; A.TransformationController.prototype = { toScene$1(viewportPoint) { var t2, t3, t1 = this._change_notifier$_value, r = new A.Matrix4(new Float64Array(16)); if (r.copyInverse$1(t1) === 0) A.throwExpression(A.ArgumentError$value(t1, "other", "Matrix cannot be inverted")); t1 = viewportPoint._dx; t2 = viewportPoint._dy; t3 = new A.Vector3(new Float64Array(3)); t3.setValues$3(t1, t2, 0); t3 = r.transform3$1(t3)._v3storage; return new A.Offset(t3[0], t3[1]); } }; A._GestureType.prototype = { toString$0(_) { return "_GestureType." + this._core$_name; } }; A.__InteractiveViewerState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.ConstrainedLayoutBuilder.prototype = { createElement$0(_) { return new A._LayoutBuilderElement(this, B._ElementLifecycle_0, A._instanceType(this)._eval$1("_LayoutBuilderElement")); }, get$builder() { return this.builder; } }; A._LayoutBuilderElement.prototype = { get$renderObject() { return this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, visitChildren$1(visitor) { var t1 = this._layout_builder$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1(child) { this._layout_builder$_child = null; this.super$Element$forgetChild(child); }, mount$2($parent, newSlot) { var _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); _this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(_this)).updateCallback$1(_this.get$_layout()); }, update$1(_, newWidget) { var t1, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = _this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>"); t1._as(A.RenderObjectElement.prototype.get$renderObject.call(_this)).updateCallback$1(_this.get$_layout()); t1 = t1._as(A.RenderObjectElement.prototype.get$renderObject.call(_this)); t1.RenderConstrainedLayoutBuilder__needsBuild = true; t1.markNeedsLayout$0(); }, performRebuild$0() { var t1 = this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); t1.RenderConstrainedLayoutBuilder__needsBuild = true; t1.markNeedsLayout$0(); this.super$RenderObjectElement$performRebuild(); }, unmount$0() { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).updateCallback$1(null); this.super$RenderObjectElement$unmount(); }, _layout$1(constraints) { this._owner.buildScope$2(this, new A._LayoutBuilderElement__layout_layoutCallback(this, constraints)); }, insertRenderObjectChild$2(child, slot) { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(child); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); } }; A._LayoutBuilderElement__layout_layoutCallback.prototype = { call$0() { var e, stack, e0, stack0, t1, t2, exception, built0, _this = this, built = null; try { t1 = _this.$this; t2 = t1._widget; t2.toString; built = t1.$ti._eval$1("ConstrainedLayoutBuilder<1>")._as(t2).get$builder().call$2(t1, _this.constraints); t1._widget.toString; } catch (exception) { e = A.unwrapException(exception); stack = A.getTraceFromException(exception); t1 = _this.$this; built0 = A.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException0(A.ErrorDescription$("building " + t1._widget.toString$0(0)), e, stack, new A._LayoutBuilderElement__layout_layoutCallback_closure(t1))); built = built0; } try { t1 = _this.$this; t1._layout_builder$_child = t1.updateChild$3(t1._layout_builder$_child, built, null); } catch (exception) { e0 = A.unwrapException(exception); stack0 = A.getTraceFromException(exception); t1 = _this.$this; built0 = A.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException0(A.ErrorDescription$("building " + t1._widget.toString$0(0)), e0, stack0, new A._LayoutBuilderElement__layout_layoutCallback_closure0(t1))); built = built0; t1._layout_builder$_child = t1.updateChild$3(null, built, t1._slot); } }, $signature: 0 }; A._LayoutBuilderElement__layout_layoutCallback_closure.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, $signature: 138 }; A._LayoutBuilderElement__layout_layoutCallback_closure0.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, $signature: 138 }; A.RenderConstrainedLayoutBuilder.prototype = { updateCallback$1(value) { if (J.$eq$(value, this.RenderConstrainedLayoutBuilder__callback)) return; this.RenderConstrainedLayoutBuilder__callback = value; this.markNeedsLayout$0(); }, rebuildIfNecessary$0() { var t1, _this = this; if (_this.RenderConstrainedLayoutBuilder__needsBuild || !J.$eq$(_this.get$constraints(), _this.RenderConstrainedLayoutBuilder__previousConstraints)) { _this.RenderConstrainedLayoutBuilder__previousConstraints = _this.get$constraints(); _this.RenderConstrainedLayoutBuilder__needsBuild = false; t1 = _this.RenderConstrainedLayoutBuilder__callback; t1.toString; _this.invokeLayoutCallback$1$1(t1, A._instanceType(_this)._eval$1("RenderConstrainedLayoutBuilder.0")); } } }; A.LayoutBuilder.prototype = { get$builder() { return this.builder; }, createRenderObject$1(context) { var t1 = new A._RenderLayoutBuilder(null, true, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; A._RenderLayoutBuilder.prototype = { computeMinIntrinsicWidth$1(height) { return 0; }, computeMaxIntrinsicWidth$1(height) { return 0; }, computeMinIntrinsicHeight$1(width) { return 0; }, computeMaxIntrinsicHeight$1(width) { return 0; }, computeDryLayout$1(constraints) { return B.Size_0_0; }, performLayout$0() { var t1, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this.rebuildIfNecessary$0(); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, constraints, true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } else _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, computeDistanceToActualBaseline$1(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$RenderBox$computeDistanceToActualBaseline(baseline); }, hitTestChildren$2$position(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, paint$2(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder.prototype = {}; A._Pending.prototype = {}; A._loadAll_closure.prototype = { call$1(value) { return this._box_0.completedValue = value; }, $signature: 12 }; A._loadAll_closure0.prototype = { call$1(p) { return p.futureValue; }, $signature: 1646 }; A._loadAll_closure1.prototype = { call$1(values) { var t1, t2, t3, i; for (t1 = J.getInterceptor$asx(values), t2 = this._box_1, t3 = this.output, i = 0; i < t1.get$length(values); ++i) t3.$indexSet(0, A.createRuntimeType(A._instanceType(t2.pendingList[i].delegate)._eval$1("LocalizationsDelegate.T")), t1.$index(values, i)); return t3; }, $signature: 1629 }; A.LocalizationsDelegate.prototype = { toString$0(_) { return "LocalizationsDelegate[" + A.createRuntimeType(A._instanceType(this)._eval$1("LocalizationsDelegate.T")).toString$0(0) + "]"; } }; A._WidgetsLocalizationsDelegate.prototype = { isSupported$1(locale) { return true; }, load$1(_, locale) { return new A.SynchronousFuture(B.C_DefaultWidgetsLocalizations, type$.SynchronousFuture_WidgetsLocalizations); }, shouldReload$1(old) { return false; }, toString$0(_) { return "DefaultWidgetsLocalizations.delegate(en_US)"; } }; A.DefaultWidgetsLocalizations.prototype = { get$textDirection(_) { return B.TextDirection_1; }, $isWidgetsLocalizations: 1 }; A._LocalizationsScope.prototype = { updateShouldNotify$1(old) { var t1 = this.typeToResources, t2 = old.typeToResources; return t1 == null ? t2 != null : t1 !== t2; } }; A.Localizations.prototype = { createState$0() { return new A._LocalizationsState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), A.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.dynamic), B._StateLifecycle_0); } }; A._LocalizationsState.prototype = { initState$0() { this.super$State$initState(); this.load$1(0, this._widget.locale); }, _anyDelegatesShouldReload$1(old) { var delegates, oldDelegates, i, delegate, oldDelegate, t1 = this._widget.delegates, t2 = old.delegates; if (t1.length !== t2.length) return true; delegates = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); oldDelegates = A._setArrayType(t2.slice(0), A._arrayInstanceType(t2)); for (i = 0; i < delegates.length; ++i) { delegate = delegates[i]; oldDelegate = oldDelegates[i]; if (J.get$runtimeType$(delegate) === J.get$runtimeType$(oldDelegate)) { delegate.shouldReload$1(oldDelegate); t1 = false; } else t1 = true; if (t1) return true; } return false; }, didUpdateWidget$1(old) { var t1, _this = this; _this.super$State$didUpdateWidget(old); if (J.$eq$(_this._widget.locale, old.locale)) { _this._widget.toString; t1 = _this._anyDelegatesShouldReload$1(old); } else t1 = true; if (t1) _this.load$1(0, _this._widget.locale); }, load$1(_, locale) { var typeToResourcesFuture, _this = this, t1 = {}, delegates = _this._widget.delegates, t2 = delegates.length; if (t2 === 0) { _this._localizations$_locale = locale; return; } t1.typeToResources = null; typeToResourcesFuture = A._loadAll(locale, delegates).then$1$1(0, new A._LocalizationsState_load_closure(t1), type$.Map_Type_dynamic); t1 = t1.typeToResources; if (t1 != null) { _this._typeToResources = t1; _this._localizations$_locale = locale; } else { ++$.RendererBinding__instance.RendererBinding__firstFrameDeferredCount; typeToResourcesFuture.then$1$1(0, new A._LocalizationsState_load_closure0(_this, locale), type$.void); } }, get$_textDirection() { var resources = type$.WidgetsLocalizations._as(J.$index$asx(this._typeToResources, B.Type_WidgetsLocalizations_43h)); return resources.get$textDirection(resources); }, build$1(_, context) { var t1, t2, t3, t4, _this = this, _null = null; if (_this._localizations$_locale == null) return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = _this.get$_textDirection(); _this._localizations$_locale.toString; t2 = _this._typeToResources; t3 = _this.get$_textDirection(); t4 = _this._widget.child; t4.toString; t3 = A.Directionality$(t4, t3); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null), false, false, false, new A._LocalizationsScope(_this, t2, t3, _this._localizedResourcesScopeKey), _null); } }; A._LocalizationsState_load_closure.prototype = { call$1(value) { return this._box_0.typeToResources = value; }, $signature: 1618 }; A._LocalizationsState_load_closure0.prototype = { call$1(value) { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new A._LocalizationsState_load__closure(t1, value, this.locale)); $.RendererBinding__instance.allowFirstFrame$0(); }, $signature: 1617 }; A._LocalizationsState_load__closure.prototype = { call$0() { var t1 = this.$this; t1._typeToResources = this.value; t1._localizations$_locale = this.locale; }, $signature: 0 }; A.Orientation.prototype = { toString$0(_) { return "Orientation." + this._core$_name; } }; A.MediaQueryData.prototype = { get$orientation(_) { var t1 = this.size; return t1._dx > t1._dy ? B.Orientation_1 : B.Orientation_0; }, copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(alwaysUse24HourFormat, displayFeatures, padding, platformBrightness, textScaleFactor, viewInsets, viewPadding) { var _this = this, t1 = textScaleFactor == null ? _this.textScaleFactor : textScaleFactor, t2 = padding == null ? _this.padding : padding, t3 = viewPadding == null ? _this.viewPadding : viewPadding, t4 = viewInsets == null ? _this.viewInsets : viewInsets, t5 = alwaysUse24HourFormat == null ? _this.alwaysUse24HourFormat : alwaysUse24HourFormat, t6 = displayFeatures == null ? _this.displayFeatures : displayFeatures; return A.MediaQueryData$(_this.accessibleNavigation, t5, _this.boldText, _this.devicePixelRatio, _this.disableAnimations, t6, _this.gestureSettings, _this.highContrast, _this.invertColors, _this.navigationMode, t2, _this.platformBrightness, _this.size, _this.systemGestureInsets, t1, t4, t3); }, copyWith$1$textScaleFactor(textScaleFactor) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(null, null, null, null, textScaleFactor, null, null); }, copyWith$1$platformBrightness(platformBrightness) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(null, null, null, platformBrightness, null, null, null); }, copyWith$4$displayFeatures$padding$viewInsets$viewPadding(displayFeatures, padding, viewInsets, viewPadding) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(null, displayFeatures, padding, null, null, viewInsets, viewPadding); }, copyWith$1$padding(padding) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(null, null, padding, null, null, null, null); }, copyWith$1$alwaysUse24HourFormat(alwaysUse24HourFormat) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(alwaysUse24HourFormat, null, null, null, null, null, null); }, copyWith$2$alwaysUse24HourFormat$textScaleFactor(alwaysUse24HourFormat, textScaleFactor) { return this.copyWith$7$alwaysUse24HourFormat$displayFeatures$padding$platformBrightness$textScaleFactor$viewInsets$viewPadding(alwaysUse24HourFormat, null, null, null, textScaleFactor, null, null); }, removePadding$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, removeLeft, removeRight, removeTop) { var t1, t2, t3, t4, t5, t6, _this = this, _null = null; if (!(removeLeft || removeTop || removeRight || removeBottom)) return _this; t1 = _this.padding; t2 = removeLeft ? 0 : _null; t3 = removeTop ? 0 : _null; t4 = removeRight ? 0 : _null; t2 = t1.copyWith$4$bottom$left$right$top(removeBottom ? 0 : _null, t2, t4, t3); t3 = _this.viewPadding; t4 = removeLeft ? Math.max(0, t3.left - t1.left) : _null; t5 = removeTop ? Math.max(0, t3.top - t1.top) : _null; t6 = removeRight ? Math.max(0, t3.right - t1.right) : _null; return A.MediaQueryData$(_this.accessibleNavigation, _this.alwaysUse24HourFormat, _this.boldText, _this.devicePixelRatio, _this.disableAnimations, _this.displayFeatures, _this.gestureSettings, _this.highContrast, _this.invertColors, B.NavigationMode_0, t2, _this.platformBrightness, _this.size, B.EdgeInsets_0_0_0_0, _this.textScaleFactor, _this.viewInsets, t3.copyWith$4$bottom$left$right$top(removeBottom ? Math.max(0, t3.bottom - t1.bottom) : _null, t4, t6, t5)); }, removePadding$1$removeTop(removeTop) { return this.removePadding$4$removeBottom$removeLeft$removeRight$removeTop(false, false, false, removeTop); }, removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, removeLeft, removeRight, removeTop) { var t1, t2, t3, t4, t5, t6, _this = this, _null = null; if (!removeLeft) !removeTop; t1 = _this.viewPadding; t2 = removeLeft ? Math.max(0, t1.left - _this.viewInsets.left) : _null; t3 = removeTop ? Math.max(0, t1.top - _this.viewInsets.top) : _null; t4 = removeRight ? Math.max(0, t1.right - _this.viewInsets.right) : _null; t5 = _this.viewInsets; t6 = Math.max(0, t1.bottom - t5.bottom); t1 = t1.copyWith$4$bottom$left$right$top(t6, t2, t4, t3); t2 = removeLeft ? 0 : _null; t3 = removeTop ? 0 : _null; t4 = removeRight ? 0 : _null; return A.MediaQueryData$(_this.accessibleNavigation, _this.alwaysUse24HourFormat, _this.boldText, _this.devicePixelRatio, _this.disableAnimations, _this.displayFeatures, _this.gestureSettings, _this.highContrast, _this.invertColors, B.NavigationMode_0, _this.padding, _this.platformBrightness, _this.size, B.EdgeInsets_0_0_0_0, _this.textScaleFactor, t5.copyWith$4$bottom$left$right$top(0, t2, t4, t3), t1); }, removeViewInsets$1$removeBottom(removeBottom) { return this.removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, false, false, false); }, removeDisplayFeatures$1(subScreen) { var rightInset, bottomInset, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, t1 = subScreen.right, t2 = subScreen.left, t3 = subScreen.bottom, t4 = subScreen.top, t5 = _this.size; if (new A.Size(t1 - t2, t3 - t4).$eq(0, t5) && new A.Offset(t2, t4).$eq(0, B.Offset_0_0)) return _this; rightInset = t5._dx - t1; bottomInset = t5._dy - t3; t1 = _this.padding; t3 = Math.max(0, t1.left - t2); t5 = Math.max(0, t1.top - t4); t6 = Math.max(0, t1.right - rightInset); t1 = Math.max(0, t1.bottom - bottomInset); t7 = _this.viewPadding; t8 = Math.max(0, t7.left - t2); t9 = Math.max(0, t7.top - t4); t10 = Math.max(0, t7.right - rightInset); t7 = Math.max(0, t7.bottom - bottomInset); t11 = _this.viewInsets; t2 = Math.max(0, t11.left - t2); t4 = Math.max(0, t11.top - t4); t12 = Math.max(0, t11.right - rightInset); t11 = Math.max(0, t11.bottom - bottomInset); t13 = _this.displayFeatures; t14 = A._arrayInstanceType(t13)._eval$1("WhereIterable<1>"); return _this.copyWith$4$displayFeatures$padding$viewInsets$viewPadding(A.List_List$of(new A.WhereIterable(t13, new A.MediaQueryData_removeDisplayFeatures_closure(subScreen), t14), true, t14._eval$1("Iterable.E")), new A.EdgeInsets(t3, t5, t6, t1), new A.EdgeInsets(t2, t4, t12, t11), new A.EdgeInsets(t8, t9, t10, t7)); }, $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A.MediaQueryData && other.size.$eq(0, _this.size) && other.devicePixelRatio === _this.devicePixelRatio && other.textScaleFactor === _this.textScaleFactor && other.platformBrightness === _this.platformBrightness && other.padding.$eq(0, _this.padding) && other.viewPadding.$eq(0, _this.viewPadding) && other.viewInsets.$eq(0, _this.viewInsets) && other.alwaysUse24HourFormat === _this.alwaysUse24HourFormat && other.highContrast === _this.highContrast && other.disableAnimations === _this.disableAnimations && other.invertColors === _this.invertColors && other.accessibleNavigation === _this.accessibleNavigation && other.boldText === _this.boldText && other.navigationMode === _this.navigationMode && other.gestureSettings.$eq(0, _this.gestureSettings) && A.listEquals0(other.displayFeatures, _this.displayFeatures); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.size, _this.devicePixelRatio, _this.textScaleFactor, _this.platformBrightness, _this.padding, _this.viewPadding, _this.viewInsets, _this.alwaysUse24HourFormat, _this.highContrast, _this.disableAnimations, _this.invertColors, _this.accessibleNavigation, _this.boldText, _this.navigationMode, _this.gestureSettings, A.Object_hashAll(_this.displayFeatures), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this; return "MediaQueryData(" + B.JSArray_methods.join$1(A._setArrayType(["size: " + _this.size.toString$0(0), "devicePixelRatio: " + B.JSNumber_methods.toStringAsFixed$1(_this.devicePixelRatio, 1), "textScaleFactor: " + B.JSNumber_methods.toStringAsFixed$1(_this.textScaleFactor, 1), "platformBrightness: " + _this.platformBrightness.toString$0(0), "padding: " + _this.padding.toString$0(0), "viewPadding: " + _this.viewPadding.toString$0(0), "viewInsets: " + _this.viewInsets.toString$0(0), "alwaysUse24HourFormat: " + _this.alwaysUse24HourFormat, "accessibleNavigation: " + _this.accessibleNavigation, "highContrast: " + _this.highContrast, "disableAnimations: " + _this.disableAnimations, "invertColors: " + _this.invertColors, "boldText: " + _this.boldText, "navigationMode: " + _this.navigationMode._core$_name, "gestureSettings: " + _this.gestureSettings.toString$0(0), "displayFeatures: " + A.S(_this.displayFeatures)], type$.JSArray_String), ", ") + ")"; } }; A.MediaQueryData_removeDisplayFeatures_closure.prototype = { call$1(displayFeature) { return this.subScreen.overlaps$1(displayFeature.get$bounds(displayFeature)); }, $signature: 783 }; A.MediaQuery.prototype = { updateShouldNotify$1(oldWidget) { return !this.data.$eq(0, oldWidget.data); } }; A.NavigationMode.prototype = { toString$0(_) { return "NavigationMode." + this._core$_name; } }; A._MediaQueryFromWindow.prototype = { createState$0() { return new A._MediaQueryFromWindowState(B._StateLifecycle_0); } }; A._MediaQueryFromWindowState.prototype = { initState$0() { this.super$State$initState(); $.WidgetsBinding__instance.WidgetsBinding__observers.push(this); }, didChangeMetrics$0() { this.setState$1(new A._MediaQueryFromWindowState_didChangeMetrics_closure()); }, didChangeTextScaleFactor$0() { this.setState$1(new A._MediaQueryFromWindowState_didChangeTextScaleFactor_closure()); }, didChangePlatformBrightness$0() { this.setState$1(new A._MediaQueryFromWindowState_didChangePlatformBrightness_closure()); }, build$1(_, context) { var data; $.WidgetsBinding__instance.toString; data = A.MediaQueryData$fromWindow($.$get$window()).copyWith$1$platformBrightness($.debugBrightnessOverride); return new A.MediaQuery(data, this._widget.child, null); }, dispose$0(_) { B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, this); this.super$State$dispose(0); } }; A._MediaQueryFromWindowState_didChangeMetrics_closure.prototype = { call$0() { }, $signature: 0 }; A._MediaQueryFromWindowState_didChangeTextScaleFactor_closure.prototype = { call$0() { }, $signature: 0 }; A._MediaQueryFromWindowState_didChangePlatformBrightness_closure.prototype = { call$0() { }, $signature: 0 }; A.__MediaQueryFromWindowState_State_WidgetsBindingObserver.prototype = {}; A.ModalBarrier.prototype = { build$1(_, context) { var platformSupportsDismissingBarrier, semanticsDismissible, t1, t2, t3, t4, t5, t6, _this = this, _null = null; switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: platformSupportsDismissingBarrier = false; break; case B.TargetPlatform_2: case B.TargetPlatform_4: platformSupportsDismissingBarrier = true; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } semanticsDismissible = _this.dismissible && platformSupportsDismissingBarrier; t1 = new A.ModalBarrier_build_handleDismiss(_this, context); t2 = !semanticsDismissible || false; t3 = semanticsDismissible ? _this.semanticsLabel : _null; t4 = semanticsDismissible ? t1 : _null; if (semanticsDismissible && _this.semanticsLabel != null) { t5 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t5.toString; t5 = t5.textDirection; } else t5 = _null; t6 = _this.color; t6 = A.MouseRegion$(new A.ConstrainedBox(B.BoxConstraints_ALM, t6 == null ? _null : new A.ColoredBox(t6, _null, _null), _null), B.SystemMouseCursor_basic, _null, _null, _null, _null); return A.BlockSemantics$(new A.ExcludeSemantics(t2, new A._ModalBarrierGestureDetector(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null), false, false, false, t6, _null), t1, _null), _null)); } }; A.ModalBarrier_build_handleDismiss.prototype = { call$0() { if (this.$this.dismissible) A.Navigator_maybePop(this.context); else A.SystemSound_play(B.SystemSoundType_1); }, $signature: 0 }; A.AnimatedModalBarrier.prototype = { build$1(_, context) { var t1 = type$.Animation_nullable_Color._as(this.listenable); return A.ModalBarrier$(true, t1.get$value(t1), this.dismissible, this.semanticsLabel); } }; A._AnyTapGestureRecognizer.prototype = { isPointerAllowed$1($event) { if (this.onAnyTapUp == null) return false; return this.super$GestureRecognizer$isPointerAllowed($event); }, handleTapDown$1$down(down) { }, handleTapUp$2$down$up(down, up) { var t1 = this.onAnyTapUp; if (t1 != null) t1.call$0(); }, handleTapCancel$3$cancel$down$reason(cancel, down, reason) { } }; A._ModalBarrierSemanticsDelegate.prototype = { assignSemantics$1(renderObject) { renderObject.set$onTap(this.onDismiss); } }; A._AnyTapGestureRecognizerFactory.prototype = { constructor$0(_) { var t1 = type$.int, t2 = A.HashSet_HashSet(t1); return new A._AnyTapGestureRecognizer(B.Duration_100000, 18, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, null, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, initializer$1(instance) { instance.onAnyTapUp = this.onAnyTapUp; } }; A._ModalBarrierGestureDetector.prototype = { build$1(_, context) { var t1 = this.onDismiss; return new A.RawGestureDetector(this.child, A.LinkedHashMap_LinkedHashMap$_literal([B.Type__AnyTapGestureRecognizer_5RQ, new A._AnyTapGestureRecognizerFactory(t1)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), B.HitTestBehavior_1, false, new A._ModalBarrierSemanticsDelegate(t1), null); } }; A.NavigationToolbar.prototype = { build$1(_, context) { var t2, t3, _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = A._setArrayType([], type$.JSArray_Widget); t3 = _this.leading; if (t3 != null) t2.push(A.LayoutId$(t3, B._ToolbarSlot_0)); t3 = _this.middle; if (t3 != null) t2.push(A.LayoutId$(t3, B._ToolbarSlot_1)); t3 = _this.trailing; if (t3 != null) t2.push(A.LayoutId$(t3, B._ToolbarSlot_2)); return new A.CustomMultiChildLayout(new A._ToolbarLayout(_this.centerMiddle, _this.middleSpacing, t1.textDirection), t2, null); } }; A._ToolbarSlot.prototype = { toString$0(_) { return "_ToolbarSlot." + this._core$_name; } }; A._ToolbarLayout.prototype = { performLayout$1(size) { var t1, t2, leadingWidth, leadingX, trailingSize, trailingX, trailingWidth, maxWidth, middleSize, middleStartMargin, t3, t4, middleStart, t5, middleX, _this = this, _s80_ = string$.x60null_c; if (_this._idToChild.$index(0, B._ToolbarSlot_0) != null) { t1 = size._dx; t2 = size._dy; leadingWidth = _this.layoutChild$2(B._ToolbarSlot_0, new A.BoxConstraints(0, t1 / 3, t2, t2))._dx; switch (_this.textDirection) { case B.TextDirection_0: leadingX = t1 - leadingWidth; break; case B.TextDirection_1: leadingX = 0; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this.positionChild$2(B._ToolbarSlot_0, new A.Offset(leadingX, 0)); } else leadingWidth = 0; if (_this._idToChild.$index(0, B._ToolbarSlot_2) != null) { trailingSize = _this.layoutChild$2(B._ToolbarSlot_2, A.BoxConstraints$loose(size)); switch (_this.textDirection) { case B.TextDirection_0: trailingX = 0; break; case B.TextDirection_1: trailingX = size._dx - trailingSize._dx; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t1 = size._dy; t2 = trailingSize._dy; trailingWidth = trailingSize._dx; _this.positionChild$2(B._ToolbarSlot_2, new A.Offset(trailingX, (t1 - t2) / 2)); } else trailingWidth = 0; if (_this._idToChild.$index(0, B._ToolbarSlot_1) != null) { t1 = size._dx; t2 = _this.middleSpacing; maxWidth = Math.max(t1 - leadingWidth - trailingWidth - t2 * 2, 0); middleSize = _this.layoutChild$2(B._ToolbarSlot_1, A.BoxConstraints$loose(size).copyWith$1$maxWidth(maxWidth)); middleStartMargin = leadingWidth + t2; t2 = size._dy; t3 = middleSize._dy; if (_this.centerMiddle) { t4 = middleSize._dx; middleStart = (t1 - t4) / 2; t5 = t1 - trailingWidth; if (middleStart + t4 > t5) middleStart = t5 - t4; else if (middleStart < middleStartMargin) middleStart = middleStartMargin; } else middleStart = middleStartMargin; switch (_this.textDirection) { case B.TextDirection_0: middleX = t1 - middleSize._dx - middleStart; break; case B.TextDirection_1: middleX = middleStart; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } _this.positionChild$2(B._ToolbarSlot_1, new A.Offset(middleX, (t2 - t3) / 2)); } }, shouldRelayout$1(oldDelegate) { return oldDelegate.centerMiddle !== this.centerMiddle || oldDelegate.middleSpacing !== this.middleSpacing || oldDelegate.textDirection != this.textDirection; } }; A.RoutePopDisposition.prototype = { toString$0(_) { return "RoutePopDisposition." + this._core$_name; } }; A.Route.prototype = { get$overlayEntries() { return B.List_empty6; }, install$0() { }, didPush$0() { var t1 = A.TickerFuture$complete(); t1.then$1$1(0, new A.Route_didPush_closure(this), type$.void); return t1; }, didAdd$0() { var t1 = this._navigator$_navigator; if (t1 == null) t1 = null; else { t1._widget.toString; t1 = true; } if (t1 === true) A.TickerFuture$complete().then$1$1(0, new A.Route_didAdd_closure(this), type$.void); }, didReplace$1(oldRoute) { }, willPop$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this; var $async$willPop$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.get$isFirst() ? B.RoutePopDisposition_2 : B.RoutePopDisposition_0; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$willPop$0, $async$completer); }, get$willHandlePopInternally() { return false; }, didPop$1(result) { this.didComplete$1(result); return true; }, didComplete$1(result) { var t1 = result == null ? null : result; this._popCompleter.complete$1(0, t1); }, didPopNext$1(nextRoute) { }, didChangeNext$1(nextRoute) { }, didChangePrevious$1(previousRoute) { }, changedInternalState$0() { }, changedExternalState$0() { }, dispose$0(_) { this._navigator$_navigator = null; }, get$isCurrent() { var currentRouteEntry, t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); currentRouteEntry = t1.lastWhere$2$orElse(t1, new A.Route_isCurrent_closure(), new A.Route_isCurrent_closure0()); if (currentRouteEntry == null) return false; return currentRouteEntry.route === this; }, get$isFirst() { var currentRouteEntry, t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); currentRouteEntry = t1.firstWhere$2$orElse(t1, new A.Route_isFirst_closure(), new A.Route_isFirst_closure0()); if (currentRouteEntry == null) return false; return currentRouteEntry.route === this; }, get$hasActiveRouteBelow() { var t2, _i, entry, t3, t1 = this._navigator$_navigator; if (t1 == null) return false; for (t1 = t1._history, t2 = t1.length, _i = 0; _i < t2; ++_i) { entry = t1[_i]; if (entry.route === this) return false; t3 = entry.currentState.index; if (t3 <= 10 && t3 >= 1) return true; } return false; }, get$isActive() { var t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); t1 = t1.firstWhere$2$orElse(t1, new A.Route_isActive_closure(this), new A.Route_isActive_closure0()); t1 = t1 == null ? null : t1.get$isPresent(); return t1 === true; } }; A.Route_didPush_closure.prototype = { call$1(_) { var t2, t1 = this.$this._navigator$_navigator; if (t1 == null) t2 = null; else { t1._widget.toString; t2 = true; } if (t2 === true) t1.focusScopeNode.requestFocus$0(); }, $signature: 86 }; A.Route_didAdd_closure.prototype = { call$1(_) { var t1 = this.$this._navigator$_navigator; if (t1 != null) t1.focusScopeNode.requestFocus$0(); }, $signature: 86 }; A.Route_isCurrent_closure.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.Route_isCurrent_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.Route_isFirst_closure.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.Route_isFirst_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.Route_isActive_closure.prototype = { call$1(e) { return e != null && A._RouteEntry_isRoutePredicate(this.$this).call$1(e); }, $signature: 195 }; A.Route_isActive_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.RouteSettings.prototype = { toString$0(_) { return 'RouteSettings("' + A.S(this.name) + '", ' + A.S(this.$arguments) + ")"; }, get$name(receiver) { return this.name; } }; A.NavigatorObserver.prototype = { didPush$2(route, previousRoute) { }, didPop$2(route, previousRoute) { }, didReplace$2$newRoute$oldRoute(newRoute, oldRoute) { }, didStartUserGesture$2(route, previousRoute) { }, didStopUserGesture$0() { } }; A.HeroControllerScope.prototype = { updateShouldNotify$1(oldWidget) { return oldWidget.controller != this.controller; } }; A.RouteTransitionRecord.prototype = {}; A.TransitionDelegate.prototype = {}; A.DefaultTransitionDelegate.prototype = {}; A.Navigator.prototype = { createState$0() { var _null = null, t1 = A._setArrayType([], type$.JSArray__RouteEntry), t2 = $.$get$ChangeNotifier__emptyListeners(), t3 = type$._NavigatorObservation; return new A.NavigatorState(t1, new A._HistoryProperty(t2), A.ListQueue$(_null, t3), A.ListQueue$(_null, t3), A.FocusScopeNode$(true, "Navigator Scope", false), new A.RestorableNum(0, t2, type$.RestorableNum_int), new A.ValueNotifier(false, t2, type$.ValueNotifier_bool), A.LinkedHashSet_LinkedHashSet$_empty(type$.int), _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, _null, B._StateLifecycle_0); }, onGenerateInitialRoutes$2(arg0, arg1) { return this.onGenerateInitialRoutes.call$2(arg0, arg1); } }; A.Navigator_defaultGenerateInitialRoutes_closure.prototype = { call$1(route) { return route == null; }, $signature: 1593 }; A._RouteLifecycle.prototype = { toString$0(_) { return "_RouteLifecycle." + this._core$_name; } }; A._NotAnnounced.prototype = {}; A._RouteEntry.prototype = { get$restorationId() { this.route.toString; var t1 = this.restorationInformation; if (t1 != null) return "r+" + A.S(t1.get$restorationScopeId()); return null; }, handlePush$4$isNewFirst$navigator$previous$previousPresent(isNewFirst, $navigator, previous, previousPresent) { var t2, routeFuture, t3, _this = this, previousState = _this.currentState, t1 = _this.route; t1._navigator$_navigator = $navigator; t1.install$0(); t2 = _this.currentState; if (t2 === B._RouteLifecycle_3 || t2 === B._RouteLifecycle_4) { routeFuture = t1.didPush$0(); _this.currentState = B._RouteLifecycle_5; routeFuture.whenCompleteOrCancel$1(new A._RouteEntry_handlePush_closure(_this, $navigator)); } else { t1.didReplace$1(previous); _this.currentState = B._RouteLifecycle_7; } if (isNewFirst) t1.didChangeNext$1(null); t2 = previousState === B._RouteLifecycle_6 || previousState === B._RouteLifecycle_4; t3 = $navigator._observedRouteAdditions; if (t2) t3._add$1(0, new A._NavigatorReplaceObservation(t1, previousPresent)); else t3._add$1(0, new A._NavigatorPushObservation(t1, previousPresent)); }, handlePop$2$navigator$previousPresent($navigator, previousPresent) { var t1, _this = this; _this.currentState = B._RouteLifecycle_11; t1 = _this.route; if ((t1._popCompleter.future._state & 30) !== 0) return true; if (!t1.didPop$1(_this.pendingResult)) { _this.currentState = B._RouteLifecycle_7; return false; } _this.pendingResult = null; return true; }, remove$0(_) { if (this.currentState.index >= 10) return; this._reportRemovalToObserver = true; this.currentState = B._RouteLifecycle_10; }, complete$1$2$isReplaced(_, result, isReplaced) { var _this = this; if (_this.currentState.index >= 10) return; _this._reportRemovalToObserver = !isReplaced; _this.pendingResult = result; _this.currentState = B._RouteLifecycle_9; }, complete$2$isReplaced($receiver, result, isReplaced) { return this.complete$1$2$isReplaced($receiver, result, isReplaced, type$.dynamic); }, dispose$0(_) { var t1, t2, t3, t4, mountedEntries, listener, _box_0 = {}; this.currentState = B._RouteLifecycle_14; t1 = this.route; t2 = t1.get$overlayEntries(); t3 = new A._RouteEntry_dispose_closure(); t4 = A._arrayInstanceType(t2); mountedEntries = new A.WhereIterable(t2, t3, t4._eval$1("WhereIterable<1>")); if (!mountedEntries.get$iterator(mountedEntries).moveNext$0()) t1.dispose$0(0); else { _box_0.mounted = mountedEntries.get$length(mountedEntries); for (t1 = B.JSArray_methods.get$iterator(t2), t4 = new A.WhereIterator(t1, t3, t4._eval$1("WhereIterator<1>")); t4.moveNext$0();) { t2 = t1.get$current(t1); listener = A._Cell$named("listener"); t3 = new A._RouteEntry_dispose_closure0(_box_0, this, t2, listener); listener.__late_helper$_value = t3; t2.addListener$1(0, t3); } } }, get$willBePresent() { var t1 = this.currentState.index; return t1 <= 7 && t1 >= 1; }, get$isPresent() { var t1 = this.currentState.index; return t1 <= 10 && t1 >= 1; } }; A._RouteEntry_handlePush_closure.prototype = { call$0() { var t1 = this.$this; if (t1.currentState === B._RouteLifecycle_5) { t1.currentState = B._RouteLifecycle_7; this.navigator._flushHistoryUpdates$0(); } }, $signature: 0 }; A._RouteEntry_dispose_closure.prototype = { call$1(e) { return e._mounted; }, $signature: 1592 }; A._RouteEntry_dispose_closure0.prototype = { call$0() { var _this = this, t1 = _this._box_0; --t1.mounted; _this.entry.removeListener$1(0, _this.listener._readLocal$0()); if (t1.mounted === 0) _this.$this.route.dispose$0(0); }, $signature: 0 }; A._RouteEntry_isRoutePredicate_closure.prototype = { call$1(entry) { return entry.route === this.route; }, $signature: 312 }; A._NavigatorObservation.prototype = {}; A._NavigatorPushObservation.prototype = { notify$1(observer) { observer.didPush$2(this.primaryRoute, this.secondaryRoute); } }; A._NavigatorPopObservation.prototype = { notify$1(observer) { observer.didPop$2(this.primaryRoute, this.secondaryRoute); } }; A._NavigatorRemoveObservation.prototype = { notify$1(observer) { observer.toString; } }; A._NavigatorReplaceObservation.prototype = { notify$1(observer) { observer.didReplace$2$newRoute$oldRoute(this.primaryRoute, this.secondaryRoute); } }; A.NavigatorState.prototype = { initState$0() { var t1, t2, _i, _this = this; _this.super$State$initState(); for (t1 = _this._widget.observers, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = _this; _this.__NavigatorState__effectiveObservers = _this._widget.observers; t1 = _this._framework$_element.getElementForInheritedWidgetOfExactType$1$0(type$.HeroControllerScope); if (t1 == null) t1 = null; else { t1 = t1._widget; t1.toString; } type$.nullable_HeroControllerScope._as(t1); _this._updateHeroController$1(t1 == null ? null : t1.controller); if (_this._widget.reportsRouteUpdateToEngine) B.OptionalMethodChannel_qNA.invokeMethod$1$1("selectSingleEntryHistory", type$.void); }, restoreState$2(oldBucket, initialRestore) { var t1, t2, _i, page, t3, entry, _this = this; _this.registerForRestoration$2(_this._rawNextPagelessRestorationScopeId, "id"); t1 = _this._serializableHistory; _this.registerForRestoration$2(t1, "history"); for (; t2 = _this._history, t2.length !== 0;) J.dispose$0$x(t2.pop()); _this.__NavigatorState__overlayKey = new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_OverlayState); B.JSArray_methods.addAll$1(t2, t1.restoreEntriesForPage$2(null, _this)); _this._widget.toString; _i = 0; for (; false; ++_i) { page = B.List_empty5[_i]; t2 = _this._framework$_element; t2.toString; t2 = page.createRoute$1(t2); t3 = $.$get$_RouteEntry_notAnnounced(); entry = new A._RouteEntry(t2, null, B._RouteLifecycle_1, t3, t3, t3); _this._history.push(entry); B.JSArray_methods.addAll$1(_this._history, t1.restoreEntriesForPage$2(entry, _this)); } if (t1._pageToPagelessRoutes == null) { t1 = _this._widget; t2 = _this._history; t3 = t1.initialRoute; B.JSArray_methods.addAll$1(t2, J.map$1$1$ax(t1.onGenerateInitialRoutes$2(_this, t3), new A.NavigatorState_restoreState_closure(_this), type$._RouteEntry)); } _this._flushHistoryUpdates$0(); }, didToggleBucket$1(oldBucket) { var t1, _this = this; _this.super$RestorationMixin$didToggleBucket(oldBucket); t1 = _this._serializableHistory; if (_this.RestorationMixin__bucket != null) t1.update$1(0, _this._history); else t1.clear$0(0); }, get$restorationId() { return this._widget.restorationScopeId; }, didChangeDependencies$0() { var host, t1, t2, _i, _this = this; _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); host = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.HeroControllerScope); _this._updateHeroController$1(host == null ? null : host.controller); for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].route.changedExternalState$0(); }, _updateHeroController$1(newHeroController) { var t2, _this = this, t1 = _this._heroControllerFromScope; if (t1 != newHeroController) { if (newHeroController != null) newHeroController._navigator$_navigator = _this; t2 = t1 == null; if ((t2 ? null : t1._navigator$_navigator) === _this) if (!t2) t1._navigator$_navigator = null; _this._heroControllerFromScope = newHeroController; _this._updateEffectiveObservers$0(); } }, _updateEffectiveObservers$0() { var _this = this, t1 = _this._heroControllerFromScope, t2 = _this._widget; if (t1 != null) { t2 = t2.observers; _this.__NavigatorState__effectiveObservers = (t2 && B.JSArray_methods).$add(t2, A._setArrayType([t1], type$.JSArray_NavigatorObserver)); } else _this.__NavigatorState__effectiveObservers = t2.observers; }, didUpdateWidget$1(oldWidget) { var t1, t2, _i, _this = this; _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); t1 = oldWidget.observers; t2 = _this._widget.observers; if (t1 == null ? t2 != null : t1 !== t2) { for (t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = null; for (t1 = _this._widget.observers, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = _this; _this._updateEffectiveObservers$0(); } _this._widget.toString; for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].route.changedExternalState$0(); }, deactivate$0() { var t1, t2, _i; for (t1 = A._lateReadCheck(this.__NavigatorState__effectiveObservers, "_effectiveObservers"), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = null; this.super$State$deactivate(); }, activate$0() { var t1, t2, _i; this.super$_NavigatorState_State_TickerProviderStateMixin$activate(); for (t1 = A._lateReadCheck(this.__NavigatorState__effectiveObservers, "_effectiveObservers"), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = this; }, dispose$0(_) { var t1, t2, _i, _this = this; _this._updateHeroController$1(null); _this.focusScopeNode.dispose$0(0); for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) J.dispose$0$x(t1[_i]); _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, get$_allRouteOverlayEntries() { var t2, t3, _i, t1 = A._setArrayType([], type$.JSArray_OverlayEntry); for (t2 = this._history, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) B.JSArray_methods.addAll$1(t1, t2[_i].route.get$overlayEntries()); return t1; }, _flushHistoryUpdates$1$rearrangeOverlay(rearrangeOverlay) { var t1, index, entry, previous, toBeDisposed, t2, poppedRoute, next, canRemoveOrAdd, seenTopActiveRoute, index0, t3, t4, previous0, lastEntry, routeName, _i, _i0, _this = this, _null = null; _this._flushingHistory = true; t1 = _this._history; index = t1.length - 1; entry = t1[index]; previous = index > 0 ? t1[index - 1] : _null; toBeDisposed = A._setArrayType([], type$.JSArray__RouteEntry); for (t1 = _this._observedRouteDeletions, t2 = _this._observedRouteAdditions, poppedRoute = _null, next = poppedRoute, canRemoveOrAdd = false, seenTopActiveRoute = false; index >= 0;) { switch (entry.currentState.index) { case 1: index0 = _this._getIndexBefore$2(index - 1, A.navigator__RouteEntry_isPresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; t3 = t3 == null ? _null : t3.route; t4 = entry.route; t4._navigator$_navigator = _this; t4.install$0(); entry.currentState = B._RouteLifecycle_2; t2._add$1(0, new A._NavigatorPushObservation(t4, t3)); continue; case 2: if (canRemoveOrAdd || next == null) { t3 = entry.route; t3.didAdd$0(); entry.currentState = B._RouteLifecycle_7; if (next == null) t3.didChangeNext$1(_null); continue; } break; case 3: case 4: case 6: t3 = previous == null ? _null : previous.route; index0 = _this._getIndexBefore$2(index - 1, A.navigator__RouteEntry_isPresentPredicate$closure()); t4 = index0 >= 0 ? _this._history[index0] : _null; t4 = t4 == null ? _null : t4.route; entry.handlePush$4$isNewFirst$navigator$previous$previousPresent(next == null, _this, t3, t4); if (entry.currentState === B._RouteLifecycle_7) continue; break; case 5: if (!seenTopActiveRoute && poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } seenTopActiveRoute = true; break; case 7: if (!seenTopActiveRoute && poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } canRemoveOrAdd = true; seenTopActiveRoute = true; break; case 8: index0 = _this._getIndexBefore$2(index, A.navigator__RouteEntry_willBePresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; if (!entry.handlePop$2$navigator$previousPresent(_this, t3 == null ? _null : t3.route)) continue; if (!seenTopActiveRoute) { if (poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } poppedRoute = entry.route; } t3 = entry.route; index0 = _this._getIndexBefore$2(index, A.navigator__RouteEntry_willBePresentPredicate$closure()); t4 = index0 >= 0 ? _this._history[index0] : _null; t1._add$1(0, new A._NavigatorPopObservation(t3, t4 == null ? _null : t4.route)); if (entry.currentState === B._RouteLifecycle_13) continue; canRemoveOrAdd = true; break; case 11: break; case 9: t3 = entry.route; t4 = entry.pendingResult; t3 = t3._popCompleter; if (t4 == null) t4 = _null; t3 = t3.future; if ((t3._state & 30) !== 0) A.throwExpression(A.StateError$("Future already completed")); t3._asyncComplete$1(t4); entry.pendingResult = null; entry.currentState = B._RouteLifecycle_10; continue; case 10: if (!seenTopActiveRoute) { if (poppedRoute != null) entry.route.didPopNext$1(poppedRoute); poppedRoute = _null; } index0 = _this._getIndexBefore$2(index, A.navigator__RouteEntry_willBePresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; t3 = t3 == null ? _null : t3.route; entry.currentState = B._RouteLifecycle_12; if (entry._reportRemovalToObserver) t1._add$1(0, new A._NavigatorRemoveObservation(entry.route, t3)); continue; case 12: if (!canRemoveOrAdd && next != null) break; entry.currentState = B._RouteLifecycle_13; continue; case 13: toBeDisposed.push(B.JSArray_methods.removeAt$1(_this._history, index)); entry = next; break; case 14: case 0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } --index; previous0 = index > 0 ? _this._history[index - 1] : _null; next = entry; entry = previous; previous = previous0; } _this._flushObserverNotifications$0(); _this._flushRouteAnnouncement$0(); if (_this._widget.reportsRouteUpdateToEngine) { t1 = _this._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); lastEntry = t1.lastWhere$2$orElse(t1, new A.NavigatorState__flushHistoryUpdates_closure(), new A.NavigatorState__flushHistoryUpdates_closure0()); routeName = lastEntry == null ? _null : lastEntry.route._navigator$_settings.name; if (routeName != null && routeName !== _this._lastAnnouncedRouteName) { A.SystemNavigator_routeInformationUpdated(routeName, false, _null); _this._lastAnnouncedRouteName = routeName; } } for (t1 = toBeDisposed.length, _i = 0; _i < toBeDisposed.length; toBeDisposed.length === t1 || (0, A.throwConcurrentModificationError)(toBeDisposed), ++_i) { entry = toBeDisposed[_i]; for (t2 = entry.route.get$overlayEntries(), t3 = t2.length, _i0 = 0; _i0 < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i0) J.remove$0$ax(t2[_i0]); entry.dispose$0(0); } if (rearrangeOverlay) { t1 = A._lateReadCheck(_this.__NavigatorState__overlayKey, "_overlayKey").get$currentState(); if (t1 != null) t1.rearrange$1(_this.get$_allRouteOverlayEntries()); } if (_this.RestorationMixin__bucket != null) _this._serializableHistory.update$1(0, _this._history); _this._flushingHistory = false; }, _flushHistoryUpdates$0() { return this._flushHistoryUpdates$1$rearrangeOverlay(true); }, _flushObserverNotifications$0() { var observation, _this = this, _s19_ = "_effectiveObservers", t1 = A._lateReadCheck(_this.__NavigatorState__effectiveObservers, _s19_); t1.toString; if (J.get$length$asx(t1) === 0) { _this._observedRouteDeletions.clear$0(0); _this._observedRouteAdditions.clear$0(0); return; } for (t1 = _this._observedRouteAdditions; !t1.get$isEmpty(t1);) { observation = t1.removeLast$0(0); J.forEach$1$ax(A._lateReadCheck(_this.__NavigatorState__effectiveObservers, _s19_), observation.get$notify()); } for (t1 = _this._observedRouteDeletions; !t1.get$isEmpty(t1);) { observation = t1.removeFirst$0(); J.forEach$1$ax(A._lateReadCheck(_this.__NavigatorState__effectiveObservers, _s19_), observation.get$notify()); } }, _flushRouteAnnouncement$0() { var entry, t1, next, t2, t3, index0, _this = this, _null = null, index = _this._history.length - 1; for (; index >= 0;) { entry = _this._history[index]; t1 = entry.currentState.index; if (!(t1 <= 12 && t1 >= 3)) { --index; continue; } next = _this._getRouteAfter$2(index + 1, A.navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure()); t1 = next == null; t2 = t1 ? _null : next.route; t3 = entry.lastAnnouncedNextRoute; if (t2 != t3) { if ((t1 ? _null : next.route) == null) { t2 = entry.lastAnnouncedPoppedNextRoute; t2 = t2 != null && t2 === t3; } else t2 = false; if (!t2) { t2 = entry.route; t2.didChangeNext$1(t1 ? _null : next.route); } entry.lastAnnouncedNextRoute = t1 ? _null : next.route; } --index; index0 = _this._getIndexBefore$2(index, A.navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure()); t1 = index0 >= 0 ? _this._history[index0] : _null; t2 = t1 == null; t3 = t2 ? _null : t1.route; if (t3 != entry.lastAnnouncedPreviousRoute) { t3 = entry.route; t3.didChangePrevious$1(t2 ? _null : t1.route); entry.lastAnnouncedPreviousRoute = t2 ? _null : t1.route; } } }, _getRouteBefore$2(index, predicate) { index = this._getIndexBefore$2(index, predicate); return index >= 0 ? this._history[index] : null; }, _getIndexBefore$2(index, predicate) { while (true) { if (!(index >= 0 && !predicate.call$1(this._history[index]))) break; --index; } return index; }, _getRouteAfter$2(index, predicate) { var t1; while (true) { t1 = this._history; if (!(index < t1.length && !predicate.call$1(t1[index]))) break; ++index; } t1 = this._history; return index < t1.length ? t1[index] : null; }, _routeNamed$1$3$allowNull$arguments($name, allowNull, $arguments, $T) { var settings, t1, route; if (allowNull) this._widget.toString; settings = new A.RouteSettings($name, $arguments); t1 = $T._eval$1("Route<0>?"); route = t1._as(this._widget.onGenerateRoute.call$1(settings)); return route == null && !allowNull ? t1._as(this._widget.onUnknownRoute.call$1(settings)) : route; }, _routeNamed$1$2$arguments($name, $arguments, $T) { return this._routeNamed$1$3$allowNull$arguments($name, false, $arguments, $T); }, pushNamed$1$2$arguments(routeName, $arguments, $T) { var t1 = this._routeNamed$1$2$arguments(routeName, $arguments, $T); t1.toString; return this.push$1(t1); }, pushNamed$1$1(routeName, $T) { return this.pushNamed$1$2$arguments(routeName, null, $T); }, pushReplacementNamed$2$1(routeName, $T, TO) { var t2, _this = this, t1 = _this._routeNamed$1$2$arguments(routeName, null, $T); t1.toString; t2 = A._RouteEntry$(t1, B._RouteLifecycle_4, null); J.complete$2$isReplaced$z(B.JSArray_methods.lastWhere$1(_this._history, A.navigator__RouteEntry_isPresentPredicate$closure()), null, true); _this._history.push(t2); _this._flushHistoryUpdates$0(); _this._afterNavigation$1(t2.route); return t1._popCompleter.future; }, pushNamedAndRemoveUntil$1$2(newRouteName, predicate, $T) { var t1 = this._routeNamed$1$2$arguments(newRouteName, null, $T); t1.toString; this._pushEntryAndRemoveUntil$2(A._RouteEntry$(t1, B._RouteLifecycle_3, null), predicate); return t1._popCompleter.future; }, push$1$1(route) { var t1 = A._RouteEntry$(route, B._RouteLifecycle_3, null); this._history.push(t1); this._flushHistoryUpdates$0(); this._afterNavigation$1(t1.route); return route._popCompleter.future; }, push$1(route) { return this.push$1$1(route, type$.nullable_Object); }, _afterNavigation$1(route) { var t1, t2, routeJsonable, settings, settingsJsonable; if (route != null) { t1 = type$.String; t2 = type$.dynamic; routeJsonable = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); routeJsonable.$indexSet(0, "description", route instanceof A.TransitionRoute ? route.get$debugLabel() : route.toString$0(0)); settings = route._navigator$_settings; settingsJsonable = A.LinkedHashMap_LinkedHashMap$_literal(["name", settings.name], t1, t2); t1 = settings.$arguments; if (t1 != null) settingsJsonable.$indexSet(0, "arguments", B.C_JsonCodec.encode$2$toEncodable(t1, new A.NavigatorState__afterNavigation_closure())); routeJsonable.$indexSet(0, "settings", settingsJsonable); } else routeJsonable = null; A.postEvent("Flutter.Navigation", A.LinkedHashMap_LinkedHashMap$_literal(["route", routeJsonable], type$.String, type$.dynamic)); this._cancelActivePointers$0(); }, _pushEntryAndRemoveUntil$2(entry, predicate) { var t2, _this = this, t1 = _this._history, index = t1.length - 1; t1.push(entry); while (true) { if (!(index >= 0 && !predicate.call$1(_this._history[index].route))) break; t1 = _this._history[index]; t2 = t1.currentState.index; if (t2 <= 10 && t2 >= 1) J.remove$0$ax(t1); --index; } _this._flushHistoryUpdates$0(); _this._afterNavigation$1(entry.route); }, canPop$0() { var t1 = this._history, t2 = B.JSArray_methods.get$iterator(t1), iterator = new A.WhereIterator(t2, A.navigator__RouteEntry_isPresentPredicate$closure(), A._arrayInstanceType(t1)._eval$1("WhereIterator<1>")); if (!iterator.moveNext$0()) return false; if (t2.get$current(t2).route.get$willHandlePopInternally()) return true; if (!iterator.moveNext$0()) return false; return true; }, maybePop$1$1(result) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, lastEntry, disposition, t1; var $async$maybePop$1$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) $async$outer: switch ($async$goto) { case 0: // Function start t1 = $async$self._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); lastEntry = t1.lastWhere$2$orElse(t1, new A.NavigatorState_maybePop_closure(), new A.NavigatorState_maybePop_closure0()); if (lastEntry == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$goto = 3; return A._asyncAwait(lastEntry.route.willPop$0(), $async$maybePop$1$1); case 3: // returning from await. disposition = $async$result; if ($async$self._framework$_element == null) { $async$returnValue = true; // goto return $async$goto = 1; break; } t1 = $async$self._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); if (lastEntry !== t1.lastWhere$2$orElse(t1, new A.NavigatorState_maybePop_closure1(), new A.NavigatorState_maybePop_closure2())) { $async$returnValue = true; // goto return $async$goto = 1; break; } switch (disposition) { case B.RoutePopDisposition_2: $async$returnValue = false; // goto return $async$goto = 1; break $async$outer; case B.RoutePopDisposition_0: $async$self.pop$1(0, result); $async$returnValue = true; // goto return $async$goto = 1; break $async$outer; case B.RoutePopDisposition_1: $async$returnValue = true; // goto return $async$goto = 1; break $async$outer; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$maybePop$1$1, $async$completer); }, maybePop$0() { return this.maybePop$1$1(null, type$.nullable_Object); }, maybePop$1(result) { return this.maybePop$1$1(result, type$.nullable_Object); }, pop$1$1(_, result) { var entry = B.JSArray_methods.lastWhere$1(this._history, A.navigator__RouteEntry_isPresentPredicate$closure()), t1 = entry.route; t1.toString; entry.pendingResult = result; entry.currentState = B._RouteLifecycle_8; this._flushHistoryUpdates$1$rearrangeOverlay(false); this._afterNavigation$1(t1); }, pop$1($receiver, result) { return this.pop$1$1($receiver, result, type$.nullable_Object); }, pop$0($receiver) { return this.pop$1$1($receiver, null, type$.nullable_Object); }, removeRoute$1(route) { var t1, _this = this, wasCurrent = route.get$isCurrent(); B.JSArray_methods.firstWhere$1(_this._history, A._RouteEntry_isRoutePredicate(route)).remove$0(0); _this._flushHistoryUpdates$1$rearrangeOverlay(false); if (wasCurrent) { t1 = _this._history; t1 = new A.CastList(t1, A._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); t1 = t1.lastWhere$2$orElse(t1, new A.NavigatorState_removeRoute_closure(), new A.NavigatorState_removeRoute_closure0()); _this._afterNavigation$1(t1 == null ? null : t1.route); } }, finalizeRoute$1(route) { var _this = this, index = B.JSArray_methods.indexWhere$1(_this._history, A._RouteEntry_isRoutePredicate(route)), entry = _this._history[index]; entry.route.toString; entry.currentState = B._RouteLifecycle_13; if (!_this._flushingHistory) _this._flushHistoryUpdates$1$rearrangeOverlay(false); }, set$_userGesturesInProgress(value) { this._userGesturesInProgressCount = value; this.userGestureInProgressNotifier.set$value(0, value > 0); }, didStartUserGesture$0() { var routeIndex, route, previousRoute, t1, t2, _i, _this = this; _this.set$_userGesturesInProgress(_this._userGesturesInProgressCount + 1); if (_this._userGesturesInProgressCount === 1) { routeIndex = _this._getIndexBefore$2(_this._history.length - 1, A.navigator__RouteEntry_willBePresentPredicate$closure()); route = _this._history[routeIndex].route; previousRoute = !route.get$willHandlePopInternally() && routeIndex > 0 ? _this._getRouteBefore$2(routeIndex - 1, A.navigator__RouteEntry_willBePresentPredicate$closure()).route : null; for (t1 = A._lateReadCheck(_this.__NavigatorState__effectiveObservers, "_effectiveObservers"), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didStartUserGesture$2(route, previousRoute); } }, didStopUserGesture$0() { var t1, t2, _i, _this = this; _this.set$_userGesturesInProgress(_this._userGesturesInProgressCount - 1); if (_this._userGesturesInProgressCount === 0) for (t1 = A._lateReadCheck(_this.__NavigatorState__effectiveObservers, "_effectiveObservers"), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].didStopUserGesture$0(); }, _handlePointerDown$1($event) { this._activePointers.add$1(0, $event.get$pointer()); }, _handlePointerUpOrCancel$1($event) { this._activePointers.remove$1(0, $event.get$pointer()); }, _cancelActivePointers$0() { if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase === B.SchedulerPhase_0) { var t1 = A._lateReadCheck(this.__NavigatorState__overlayKey, "_overlayKey"); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); this.setState$1(new A.NavigatorState__cancelActivePointers_closure(t1 == null ? null : t1.findAncestorRenderObjectOfType$1$0(type$.RenderAbsorbPointer))); } t1 = this._activePointers; B.JSArray_methods.forEach$1(A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")), $.WidgetsBinding__instance.get$cancelPointer()); }, build$1(_, context) { var t4, _this = this, _null = null, _s11_ = "_overlayKey", t1 = _this.get$_handlePointerUpOrCancel(), t2 = _this.RestorationMixin__bucket, t3 = A._lateReadCheck(_this.__NavigatorState__overlayKey, _s11_); if (A._lateReadCheck(_this.__NavigatorState__overlayKey, _s11_).get$currentState() == null) { t4 = _this.get$_allRouteOverlayEntries(); t4 = J.JSArray_JSArray$markFixed(t4.slice(0), A._arrayInstanceType(t4)._precomputed1); } else t4 = B.List_empty6; return new A.HeroControllerScope(_null, A.Listener$(B.HitTestBehavior_0, A.AbsorbPointer$(false, A.FocusScope$(true, A.UnmanagedRestorationScope$(t2, new A.Overlay(t4, t3)), _null, _this.focusScopeNode)), _null, t1, _this.get$_handlePointerDown(), _null, _null, _null, t1), _null); } }; A.NavigatorState_restoreState_closure.prototype = { call$1(route) { var t2, t3, t1 = route._navigator$_settings.name; if (t1 != null) { t2 = this.$this._rawNextPagelessRestorationScopeId; t3 = t2._restoration_properties$_value; t2.super$RestorableValue$value(0, t3 + 1); t1 = new A._NamedRestorationInformation(t3, t1, null, B._RouteRestorationType_0); } else t1 = null; return A._RouteEntry$(route, B._RouteLifecycle_1, t1); }, $signature: 1585 }; A.NavigatorState__flushHistoryUpdates_closure.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.NavigatorState__flushHistoryUpdates_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.NavigatorState__afterNavigation_closure.prototype = { call$1(object) { return A.S(object); }, $signature: 1584 }; A.NavigatorState_maybePop_closure.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.NavigatorState_maybePop_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.NavigatorState_maybePop_closure1.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.NavigatorState_maybePop_closure2.prototype = { call$0() { return null; }, $signature: 1 }; A.NavigatorState_removeRoute_closure.prototype = { call$1(e) { return e != null && e.get$isPresent(); }, $signature: 195 }; A.NavigatorState_removeRoute_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.NavigatorState__cancelActivePointers_closure.prototype = { call$0() { var t1 = this.absorber; if (t1 != null) t1.set$absorbing(true); }, $signature: 0 }; A._RouteRestorationType.prototype = { toString$0(_) { return "_RouteRestorationType." + this._core$_name; } }; A._RestorationInformation.prototype = { get$isRestorable() { return true; }, computeSerializableData$0() { return A._setArrayType([this.type.index], type$.JSArray_Object); } }; A._NamedRestorationInformation.prototype = { computeSerializableData$0() { var _this = this, t1 = _this.super$_RestorationInformation$computeSerializableData(), t2 = A._setArrayType([_this.restorationScopeId, _this.name], type$.JSArray_Object), t3 = _this.$arguments; if (t3 != null) t2.push(t3); B.JSArray_methods.addAll$1(t1, t2); return t1; }, createRoute$1($navigator) { var t1 = $navigator._routeNamed$1$3$allowNull$arguments(this.name, false, this.$arguments, type$.dynamic); t1.toString; return t1; }, get$restorationScopeId() { return this.restorationScopeId; }, get$name(receiver) { return this.name; } }; A._AnonymousRestorationInformation.prototype = { get$isRestorable() { return false; }, computeSerializableData$0() { A.PluginUtilities_getCallbackHandle(this.routeBuilder); }, createRoute$1($navigator) { var t1 = $navigator._framework$_element; t1.toString; return this.routeBuilder.call$2(t1, this.$arguments); }, get$restorationScopeId() { return this.restorationScopeId; } }; A._HistoryProperty.prototype = { update$1(_, $history) { var newRoutesForCurrentPage, t1, oldRoutesForCurrentPage, newMap, removedPages, currentPage, needsSerialization, restorationEnabled, _i, entry, t2, t3, serializedData, t4, _this = this, _null = null, wasUninitialized = _this._pageToPagelessRoutes == null; if (wasUninitialized) _this._pageToPagelessRoutes = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_Object); newRoutesForCurrentPage = A._setArrayType([], type$.JSArray_Object); t1 = _this._pageToPagelessRoutes; t1.toString; oldRoutesForCurrentPage = J.$index$asx(t1, null); if (oldRoutesForCurrentPage == null) oldRoutesForCurrentPage = B.List_empty; newMap = A.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, type$.List_Object); t1 = _this._pageToPagelessRoutes; t1.toString; removedPages = J.toSet$0$ax(J.get$keys$x(t1)); for (t1 = $history.length, currentPage = _null, needsSerialization = wasUninitialized, restorationEnabled = true, _i = 0; _i < $history.length; $history.length === t1 || (0, A.throwConcurrentModificationError)($history), ++_i) { entry = $history[_i]; if (entry.currentState.index > 7) { t2 = entry.route; t2._restorationScopeId.set$value(0, _null); continue; } t2 = entry.route; t2.toString; if (restorationEnabled) { t3 = entry.restorationInformation; t3 = t3 == null ? _null : t3.get$isRestorable(); restorationEnabled = t3 === true; } else restorationEnabled = false; t3 = restorationEnabled ? entry.get$restorationId() : _null; t2._restorationScopeId.set$value(0, t3); if (restorationEnabled) { t2 = entry.restorationInformation; serializedData = t2._serializableData; if (serializedData == null) serializedData = t2._serializableData = t2.computeSerializableData$0(); if (!needsSerialization) { t2 = J.getInterceptor$asx(oldRoutesForCurrentPage); t3 = t2.get$length(oldRoutesForCurrentPage); t4 = newRoutesForCurrentPage.length; needsSerialization = t3 <= t4 || !J.$eq$(t2.$index(oldRoutesForCurrentPage, t4), serializedData); } else needsSerialization = true; newRoutesForCurrentPage.push(serializedData); } } needsSerialization = needsSerialization || newRoutesForCurrentPage.length !== J.get$length$asx(oldRoutesForCurrentPage); _this._finalizePage$4(newRoutesForCurrentPage, currentPage, newMap, removedPages); if (needsSerialization || removedPages.get$isNotEmpty(removedPages)) { _this._pageToPagelessRoutes = newMap; _this.notifyListeners$0(); } }, _finalizePage$4(routes, page, pageToRoutes, pagesToRemove) { var restorationId, t1 = routes.length; if (t1 !== 0) { restorationId = page == null ? null : page.get$restorationId(); pageToRoutes.$indexSet(0, restorationId, routes); pagesToRemove.remove$1(0, restorationId); } }, clear$0(_) { if (this._pageToPagelessRoutes == null) return; this._pageToPagelessRoutes = null; this.notifyListeners$0(); }, restoreEntriesForPage$2(page, $navigator) { var t1, serializedData, t2, route, t3, result = A._setArrayType([], type$.JSArray__RouteEntry); if (this._pageToPagelessRoutes != null) t1 = page != null && page.get$restorationId() == null; else t1 = true; if (t1) return result; t1 = this._pageToPagelessRoutes; t1.toString; serializedData = J.$index$asx(t1, page == null ? null : page.get$restorationId()); if (serializedData == null) return result; for (t1 = J.get$iterator$ax(serializedData); t1.moveNext$0();) { t2 = A._RestorationInformation__RestorationInformation$fromSerializableData(t1.get$current(t1)); route = t2.createRoute$1($navigator); t3 = $.$get$_RouteEntry_notAnnounced(); result.push(new A._RouteEntry(route, t2, B._RouteLifecycle_1, t3, t3, t3)); } return result; }, createDefaultValue$0() { return null; }, fromPrimitives$1(data) { data.toString; return J.map$2$1$ax(type$.Map_dynamic_dynamic._as(data), new A._HistoryProperty_fromPrimitives_closure(), type$.nullable_String, type$.List_Object); }, initWithValue$1(value) { this._pageToPagelessRoutes = value; }, toPrimitives$0() { return this._pageToPagelessRoutes; }, get$enabled(_) { return this._pageToPagelessRoutes != null; } }; A._HistoryProperty_fromPrimitives_closure.prototype = { call$2(key, value) { return new A.MapEntry(A._asStringQ(key), A.List_List$from(type$.List_dynamic._as(value), true, type$.Object), type$.MapEntry_of_nullable_String_and_List_Object); }, $signature: 1582 }; A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A._NavigatorState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_NavigatorState_State_TickerProviderStateMixin$dispose(0); } }; A.Notification0.prototype = { toString$0(_) { var description = A._setArrayType([], type$.JSArray_String); this.debugFillDescription$1(description); return "Notification(" + B.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1(description) { } }; A.NotificationListener.prototype = { createElement$0(_) { return new A._NotificationElement(this, B._ElementLifecycle_0, this.$ti._eval$1("_NotificationElement<1>")); } }; A._NotificationElement.prototype = { onNotification$1(notification) { var t2, t1 = this._widget; t1.toString; t2 = this.$ti; t2._eval$1("NotificationListener<1>")._as(t1); if (t2._precomputed1._is(notification)) return t1.onNotification.call$1(notification); return false; }, notifyClients$1(oldWidget) { } }; A.LayoutChangedNotification.prototype = {}; A.__NotificationElement_ProxyElement_NotifiableElementMixin.prototype = {}; A.OverflowBarAlignment.prototype = { toString$0(_) { return "OverflowBarAlignment." + this._core$_name; } }; A.OverflowBar.prototype = { createRenderObject$1(context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; t1 = new A._RenderOverflowBar(_this.spacing, _this.alignment, _this.overflowSpacing, _this.overflowAlignment, _this.overflowDirection, t1, B.Clip_0, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; type$._RenderOverflowBar._as(renderObject); renderObject.set$spacing(0, _this.spacing); renderObject.set$alignment(_this.alignment); renderObject.set$overflowSpacing(_this.overflowSpacing); renderObject.set$overflowAlignment(_this.overflowAlignment); renderObject.set$overflowDirection(_this.overflowDirection); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); renderObject.set$clipBehavior(B.Clip_0); } }; A._OverflowBarParentData.prototype = {}; A._RenderOverflowBar.prototype = { set$spacing(_, value) { if (this._spacing === value) return; this._spacing = value; this.markNeedsLayout$0(); }, set$alignment(value) { if (this._overflow_bar$_alignment == value) return; this._overflow_bar$_alignment = value; this.markNeedsLayout$0(); }, set$overflowSpacing(value) { if (this._overflowSpacing === value) return; this._overflowSpacing = value; this.markNeedsLayout$0(); }, set$overflowAlignment(value) { if (this._overflowAlignment === value) return; this._overflowAlignment = value; this.markNeedsLayout$0(); }, set$overflowDirection(value) { if (this._overflowDirection === value) return; this._overflowDirection = value; this.markNeedsLayout$0(); }, set$textDirection(_, value) { if (this._overflow_bar$_textDirection == value) return; this._overflow_bar$_textDirection = value; this.markNeedsLayout$0(); }, set$clipBehavior(value) { var _this = this; if (value === _this._overflow_bar$_clipBehavior) return; _this._overflow_bar$_clipBehavior = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, setupParentData$1(child) { if (!(child.parentData instanceof A._OverflowBarParentData)) child.parentData = new A._OverflowBarParentData(null, null, B.Offset_0_0); }, computeMinIntrinsicHeight$1(width) { var t1, barWidth, t2, t3, height, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), barWidth = 0; child != null;) { barWidth += child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } t2 = _this._spacing; t3 = _this.ContainerRenderObjectMixin__childCount; child = _this.ContainerRenderObjectMixin__firstChild; if (barWidth + t2 * (t3 - 1) > width) { for (height = 0; child != null;) { height += child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, child.get$computeMinIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height + _this._overflowSpacing * (_this.ContainerRenderObjectMixin__childCount - 1); } else { for (height = 0; child != null;) { height = Math.max(height, A.checkNum(child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, child.get$computeMinIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; } }, computeMaxIntrinsicHeight$1(width) { var t1, barWidth, t2, t3, height, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), barWidth = 0; child != null;) { barWidth += child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } t2 = _this._spacing; t3 = _this.ContainerRenderObjectMixin__childCount; child = _this.ContainerRenderObjectMixin__firstChild; if (barWidth + t2 * (t3 - 1) > width) { for (height = 0; child != null;) { height += child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, child.get$computeMaxIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height + _this._overflowSpacing * (_this.ContainerRenderObjectMixin__childCount - 1); } else { for (height = 0; child != null;) { height = Math.max(height, A.checkNum(child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, child.get$computeMaxIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; } }, computeMinIntrinsicWidth$1(height) { var t1, width, t2, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width + _this._spacing * (_this.ContainerRenderObjectMixin__childCount - 1); }, computeMaxIntrinsicWidth$1(height) { var t1, width, t2, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width + _this._spacing * (_this.ContainerRenderObjectMixin__childCount - 1); }, computeDistanceToActualBaseline$1(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, computeDryLayout$1(constraints) { var overallWidth, childConstraints, t1, childrenWidth, maxChildHeight, y, childSize, t2, actualWidth, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); overallWidth = constraints.maxWidth; childConstraints = new A.BoxConstraints(0, overallWidth, 0, constraints.maxHeight); for (t1 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childrenWidth = 0, maxChildHeight = 0, y = 0; child != null;) { childSize = child.getDryLayout$1(childConstraints); childrenWidth += childSize._dx; t2 = childSize._dy; maxChildHeight = Math.max(maxChildHeight, A.checkNum(t2)); y += t2 + _this._overflowSpacing; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } actualWidth = childrenWidth + _this._spacing * (_this.ContainerRenderObjectMixin__childCount - 1); if (actualWidth > overallWidth) return constraints.constrain$1(new A.Size(overallWidth, y - _this._overflowSpacing)); else return constraints.constrain$1(new A.Size(_this._overflow_bar$_alignment == null ? actualWidth : overallWidth, maxChildHeight)); }, performLayout$0() { var t1, t2, childConstraints, t3, childrenWidth, maxChildHeight, maxChildWidth, t4, t5, rtl, actualWidth, nextChild, y, x, firstChildWidth, overallWidth, layoutSpacing, halfRemainingWidth, t6, _this = this, _s80_ = string$.x60null_c, _box_0 = {}, child = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) { t1 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(0, t1.minHeight, t1.maxHeight)); return; } t1 = type$.BoxConstraints; t2 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); childConstraints = new A.BoxConstraints(0, t2.maxWidth, 0, t2.maxHeight); for (t2 = A._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t3 = child, childrenWidth = 0, maxChildHeight = 0, maxChildWidth = 0; t3 != null; t3 = child) { t3.layout$2$parentUsesSize(0, childConstraints, true); t3 = _box_0.child; t4 = t3._box$_size; t5 = t4._dx; childrenWidth += t5; maxChildHeight = Math.max(maxChildHeight, A.checkNum(t4._dy)); maxChildWidth = Math.max(maxChildWidth, t5); t3 = t3.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; _box_0.child = child; } rtl = _this._overflow_bar$_textDirection === B.TextDirection_0; actualWidth = childrenWidth + _this._spacing * (_this.ContainerRenderObjectMixin__childCount - 1); if (actualWidth > t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth) { child = _this._overflowDirection === B.VerticalDirection_1 ? _this.ContainerRenderObjectMixin__firstChild : _this.ContainerRenderObjectMixin__lastChild; _box_0.child = child; nextChild = new A._RenderOverflowBar_performLayout_nextChild(_box_0, _this); for (t2 = type$._OverflowBarParentData, t3 = child, y = 0; t3 != null; t3 = child) { t4 = t3.parentData; t4.toString; t2._as(t4); switch (_this._overflowAlignment.index) { case 0: if (rtl) { t3 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = t3 - t5._box$_size._dx; t3 = t5; } else x = 0; break; case 2: t3 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = (t3 - t5._box$_size._dx) / 2; t3 = t5; break; case 1: if (rtl) x = 0; else { t3 = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = t3 - t5._box$_size._dx; t3 = t5; } break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } t4.offset = new A.Offset(x, y); y += t3._box$_size._dy + _this._overflowSpacing; child = nextChild.call$0(); _box_0.child = child; } _this._box$_size = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(new A.Size(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth, y - _this._overflowSpacing)); } else { child = _this.ContainerRenderObjectMixin__firstChild; _box_0.child = child; firstChildWidth = child._box$_size._dx; overallWidth = _this._overflow_bar$_alignment == null ? actualWidth : t1._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; _this._box$_size = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(new A.Size(overallWidth, maxChildHeight)); x = A._Cell$named("x"); layoutSpacing = _this._spacing; switch (_this._overflow_bar$_alignment) { case null: t1 = rtl ? _this._box$_size._dx - firstChildWidth : 0; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_0: t1 = rtl ? _this._box$_size._dx - firstChildWidth : 0; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_2: t1 = _this._box$_size._dx; halfRemainingWidth = (t1 - actualWidth) / 2; t1 = rtl ? t1 - halfRemainingWidth - firstChildWidth : halfRemainingWidth; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_1: t1 = rtl ? actualWidth - firstChildWidth : _this._box$_size._dx - actualWidth; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_3: t1 = _this._box$_size._dx; layoutSpacing = (t1 - childrenWidth) / (_this.ContainerRenderObjectMixin__childCount - 1); t1 = rtl ? t1 - firstChildWidth : 0; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_4: t1 = _this.ContainerRenderObjectMixin__childCount; layoutSpacing = t1 > 0 ? (_this._box$_size._dx - childrenWidth) / t1 : 0; t1 = layoutSpacing / 2; if (rtl) t1 = _this._box$_size._dx - t1 - firstChildWidth; x.__late_helper$_value = t1; break; case B.MainAxisAlignment_5: t1 = _this._box$_size._dx; layoutSpacing = (t1 - childrenWidth) / (_this.ContainerRenderObjectMixin__childCount + 1); t1 = rtl ? t1 - layoutSpacing - firstChildWidth : layoutSpacing; x.__late_helper$_value = t1; break; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } for (t3 = !rtl, t4 = type$._OverflowBarParentData; t5 = _box_0.child, t5 != null;) { t6 = t5.parentData; t6.toString; t4._as(t6); t5 = t5._box$_size; t6.offset = new A.Offset(t1, (maxChildHeight - t5._dy) / 2); if (t3) { t1 += t5._dx + layoutSpacing; x.__late_helper$_value = t1; } child = _box_0.child = t2._as(t6).ContainerParentDataMixin_nextSibling; if (rtl && child != null) { t1 -= child._box$_size._dx + layoutSpacing; x.__late_helper$_value = t1; } } } }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2(context, offset) { this.defaultPaint$2(context, offset); } }; A._RenderOverflowBar_performLayout_nextChild.prototype = { call$0() { var t1 = this.$this, t2 = t1._overflowDirection, t3 = this._box_0.child; t1 = A._instanceType(t1)._eval$1("ContainerRenderObjectMixin.1"); if (t2 === B.VerticalDirection_1) { t2 = t3.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_nextSibling; t1 = t2; } else { t2 = t3.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_previousSibling; t1 = t2; } return t1; }, $signature: 1565 }; A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._OverflowBarParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._OverflowBarParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.OverlayEntry.prototype = { set$opaque(value) { var t1; if (this._opaque === value) return; this._opaque = value; t1 = this._overlay; if (t1 != null) t1._didChangeEntryOpacity$0(); }, set$maintainState(value) { if (this._maintainState) return; this._maintainState = true; this._overlay._didChangeEntryOpacity$0(); }, _updateMounted$1(value) { if (value === this._mounted) return; this._mounted = value; this.notifyListeners$0(); }, remove$0(_) { var t2, t1 = this._overlay; t1.toString; this._overlay = null; if (t1._framework$_element == null) return; B.JSArray_methods.remove$1(t1._entries, this); t2 = $.SchedulerBinding__instance; if (t2.SchedulerBinding__schedulerPhase === B.SchedulerPhase_3) t2.SchedulerBinding__postFrameCallbacks.push(new A.OverlayEntry_remove_closure(t1)); else t1._markDirty$0(); }, markNeedsBuild$0() { var t1 = this._key.get$currentState(); if (t1 != null) t1._markNeedsBuild$0(); }, toString$0(_) { return "#" + A.shortHash(this) + "(opaque: " + this._opaque + "; maintainState: " + this._maintainState + ")"; } }; A.OverlayEntry_remove_closure.prototype = { call$1(duration) { this.overlay._markDirty$0(); }, $signature: 22 }; A._OverlayEntryWidget.prototype = { createState$0() { return new A._OverlayEntryWidgetState(B._StateLifecycle_0); } }; A._OverlayEntryWidgetState.prototype = { initState$0() { this.super$State$initState(); this._widget.entry._updateMounted$1(true); }, dispose$0(_) { this._widget.entry._updateMounted$1(false); this.super$State$dispose(0); }, build$1(_, context) { var t1 = this._widget; return new A.TickerMode(t1.tickerEnabled, t1.entry.builder.call$1(context), null); }, _markNeedsBuild$0() { this.setState$1(new A._OverlayEntryWidgetState__markNeedsBuild_closure()); } }; A._OverlayEntryWidgetState__markNeedsBuild_closure.prototype = { call$0() { }, $signature: 0 }; A.Overlay.prototype = { createState$0() { return new A.OverlayState(A._setArrayType([], type$.JSArray_OverlayEntry), null, null, B._StateLifecycle_0); } }; A.OverlayState.prototype = { initState$0() { this.super$State$initState(); this.insertAll$1(0, this._widget.initialEntries); }, _insertionIndex$2(below, above) { return this._entries.length; }, insert$1(_, entry) { entry._overlay = this; this.setState$1(new A.OverlayState_insert_closure(this, null, null, entry)); }, insertAll$1(_, entries) { var _i, t1 = entries.length; if (t1 === 0) return; for (_i = 0; _i < t1; ++_i) entries[_i]._overlay = this; this.setState$1(new A.OverlayState_insertAll_closure(this, null, null, entries)); }, rearrange$1(newEntries) { var newEntriesList, t1, old, _i, entry, _this = this; if (type$.List_OverlayEntry._is(newEntries)) newEntriesList = newEntries; else newEntriesList = J.JSArray_JSArray$markFixed(newEntries.slice(0), A._arrayInstanceType(newEntries)._precomputed1); if (newEntriesList.length === 0) return; t1 = _this._entries; if (A.listEquals0(t1, newEntriesList)) return; old = A.LinkedHashSet_LinkedHashSet$of(t1, type$.OverlayEntry); for (t1 = newEntriesList.length, _i = 0; _i < t1; ++_i) { entry = newEntriesList[_i]; if (entry._overlay == null) entry._overlay = _this; } _this.setState$1(new A.OverlayState_rearrange_closure(_this, newEntriesList, old, null, null)); }, _markDirty$0() { if (this._framework$_element != null) this.setState$1(new A.OverlayState__markDirty_closure()); }, _didChangeEntryOpacity$0() { this.setState$1(new A.OverlayState__didChangeEntryOpacity_closure()); }, build$1(_, context) { var t1, i, onstage, onstageCount, entry, t2, children = A._setArrayType([], type$.JSArray_Widget); for (t1 = this._entries, i = t1.length - 1, onstage = true, onstageCount = 0; i >= 0; --i) { entry = t1[i]; if (onstage) { ++onstageCount; children.push(new A._OverlayEntryWidget(entry, true, entry._key)); onstage = !entry._opaque || false; } else if (entry._maintainState) children.push(new A._OverlayEntryWidget(entry, false, entry._key)); } t1 = children.length; this._widget.toString; t2 = type$.ReversedListIterable_Widget; return new A._Theatre(t1 - onstageCount, B.Clip_1, A.List_List$of(new A.ReversedListIterable(children, t2), false, t2._eval$1("ListIterable.E")), null); } }; A.OverlayState_insert_closure.prototype = { call$0() { var _this = this, t1 = _this.$this; B.JSArray_methods.insert$2(t1._entries, t1._insertionIndex$2(_this.below, _this.above), _this.entry); }, $signature: 0 }; A.OverlayState_insertAll_closure.prototype = { call$0() { var _this = this, t1 = _this.$this; B.JSArray_methods.insertAll$2(t1._entries, t1._insertionIndex$2(_this.below, _this.above), _this.entries); }, $signature: 0 }; A.OverlayState_rearrange_closure.prototype = { call$0() { var t3, t4, _this = this, t1 = _this.$this, t2 = t1._entries; B.JSArray_methods.set$length(t2, 0); t3 = _this.newEntriesList; B.JSArray_methods.addAll$1(t2, t3); t4 = _this.old; t4.removeAll$1(t3); B.JSArray_methods.insertAll$2(t2, t1._insertionIndex$2(_this.below, _this.above), t4); }, $signature: 0 }; A.OverlayState__markDirty_closure.prototype = { call$0() { }, $signature: 0 }; A.OverlayState__didChangeEntryOpacity_closure.prototype = { call$0() { }, $signature: 0 }; A._Theatre.prototype = { createElement$0(_) { return new A._TheatreElement(A.HashSet_HashSet(type$.Element_2), this, B._ElementLifecycle_0); }, createRenderObject$1(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new A._RenderTheatre(t1.textDirection, this.skipCount, this.clipBehavior, A.LayerHandle$(type$.ClipRectLayer), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.skipCount; if (renderObject._overlay$_skipCount !== t1) { renderObject._overlay$_skipCount = t1; renderObject.markNeedsLayout$0(); } t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); t1 = this.clipBehavior; if (t1 !== renderObject._overlay$_clipBehavior) { renderObject._overlay$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; A._TheatreElement.prototype = { get$renderObject() { return type$._RenderTheatre._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(this)); } }; A._RenderTheatre.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.StackParentData)) child.parentData = new A.StackParentData(null, null, B.Offset_0_0); }, _overlay$_resolve$0() { if (this._overlay$_resolvedAlignment != null) return; this._overlay$_resolvedAlignment = B.AlignmentDirectional_m1_m1.resolve$1(0, this._overlay$_textDirection); }, set$textDirection(_, value) { var _this = this; if (_this._overlay$_textDirection == value) return; _this._overlay$_textDirection = value; _this._overlay$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, get$_firstOnstageChild() { var child, toSkip, t1, t2, _this = this; if (_this._overlay$_skipCount === A.ContainerRenderObjectMixin.prototype.get$childCount.call(_this)) return null; child = A.ContainerRenderObjectMixin.prototype.get$firstChild.call(_this, _this); for (toSkip = _this._overlay$_skipCount, t1 = type$.StackParentData; toSkip > 0; --toSkip) { t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return child; }, computeMinIntrinsicWidth$1(height) { return A.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new A._RenderTheatre_computeMinIntrinsicWidth_closure(height)); }, computeMaxIntrinsicWidth$1(height) { return A.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new A._RenderTheatre_computeMaxIntrinsicWidth_closure(height)); }, computeMinIntrinsicHeight$1(width) { return A.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new A._RenderTheatre_computeMinIntrinsicHeight_closure(width)); }, computeMaxIntrinsicHeight$1(width) { return A.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new A._RenderTheatre_computeMaxIntrinsicHeight_closure(width)); }, computeDistanceToActualBaseline$1(baseline) { var t1, result, t2, candidate, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, result = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); candidate = child.getDistanceToActualBaseline$1(baseline); if (candidate != null) { candidate += t2.offset._dy; result = result != null ? Math.min(result, candidate) : candidate; } child = t2.ContainerParentDataMixin_nextSibling; } return result; }, get$sizedByParent() { return true; }, computeDryLayout$1(constraints) { return new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0() { var t1, nonPositionedConstraints, child, t2, t3, t4, t5, t6, _this = this; _this._overlay$_hasVisualOverflow = false; if (_this.ContainerRenderObjectMixin__childCount - _this._overlay$_skipCount === 0) return; _this._overlay$_resolve$0(); t1 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); nonPositionedConstraints = A.BoxConstraints$tight(new A.Size(B.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight))); child = _this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, t2 = type$.Offset; child != null;) { t3 = child.parentData; t3.toString; t1._as(t3); if (!t3.get$isPositioned()) { child.layout$2$parentUsesSize(0, nonPositionedConstraints, true); t4 = _this._overlay$_resolvedAlignment; t4.toString; t5 = _this._box$_size; t5.toString; t6 = child._box$_size; t6.toString; t3.offset = t4.alongOffset$1(t2._as(t5.$sub(0, t6))); } else { t4 = _this._box$_size; t4.toString; t5 = _this._overlay$_resolvedAlignment; t5.toString; _this._overlay$_hasVisualOverflow = A.RenderStack_layoutPositionedChild(child, t3, t4, t5) || _this._overlay$_hasVisualOverflow; } child = t3.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position(result, position) { var t2, i, child, _this = this, _box_0 = {}, t1 = _box_0.child = _this._overlay$_skipCount === A.ContainerRenderObjectMixin.prototype.get$childCount.call(_this) ? null : _this.ContainerRenderObjectMixin__lastChild; for (t2 = type$.StackParentData, i = 0; i < _this.ContainerRenderObjectMixin__childCount - _this._overlay$_skipCount; ++i, t1 = child) { t1 = t1.parentData; t1.toString; t2._as(t1); if (result.addWithPaintOffset$3$hitTest$offset$position(new A._RenderTheatre_hitTestChildren_closure(_box_0, position, t1), t1.offset, position)) return true; child = t1.ContainerParentDataMixin_previousSibling; _box_0.child = child; } return false; }, paintStack$2(context, offset) { var t1, t2, t3, t4, t5, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, t2 = offset._dx, t3 = offset._dy; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; context.paintChild$2(child, new A.Offset(t5._dx + t2, t5._dy + t3)); child = t4.ContainerParentDataMixin_nextSibling; } }, paint$2(context, offset) { var t3, _this = this, t1 = _this._overlay$_hasVisualOverflow && _this._overlay$_clipBehavior !== B.Clip_0, t2 = _this._overlay$_clipRectLayer; if (t1) { t1 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; t2.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), _this.get$paintStack(), _this._overlay$_clipBehavior, t2._layer)); } else { t2.set$layer(0, null); _this.paintStack$2(context, offset); } }, dispose$0(_) { this._overlay$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); }, visitChildrenForSemantics$1(visitor) { var t1, t2, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData; child != null;) { visitor.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, describeApproximatePaintClip$1(child) { var t1; if (this._overlay$_hasVisualOverflow) { t1 = this._box$_size; t1 = new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, debugDescribeChildren$0() { var count, onstage, t2, t1 = type$.JSArray_DiagnosticsNode, offstageChildren = A._setArrayType([], t1), onstageChildren = A._setArrayType([], t1), child = this.ContainerRenderObjectMixin__firstChild, firstOnstageChild = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, count = 1, onstage = false; child != null;) { if (child === firstOnstageChild) { count = 1; onstage = true; } t2 = "" + count; if (onstage) onstageChildren.push(new A.DiagnosticableTreeNode(child, "onstage " + t2, true, true, null, null)); else offstageChildren.push(new A.DiagnosticableTreeNode(child, "offstage " + t2, true, true, null, B.DiagnosticsTreeStyle_2)); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++count; } t1 = A.List_List$of(onstageChildren, true, type$.DiagnosticsNode); if (offstageChildren.length !== 0) B.JSArray_methods.addAll$1(t1, offstageChildren); else t1.push(A.DiagnosticsNode_DiagnosticsNode$message("no offstage children", true, B.DiagnosticsTreeStyle_2)); return t1; } }; A._RenderTheatre_computeMinIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 92 }; A._RenderTheatre_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 92 }; A._RenderTheatre_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 92 }; A._RenderTheatre_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 92 }; A._RenderTheatre_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A._OverlayState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__RenderTheatre_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A.GlowingOverscrollIndicator.prototype = { createState$0() { var t1 = type$.bool; return new A._GlowingOverscrollIndicatorState(A.LinkedHashMap_LinkedHashMap$_literal([false, true, true, true], t1, t1), null, null, B._StateLifecycle_0); }, notificationPredicate$1(arg0) { return A.scroll_notification__defaultScrollNotificationPredicate$closure().call$1(arg0); } }; A._GlowingOverscrollIndicatorState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.color; _this._leadingController = A._GlowController$(A.axisDirectionToAxis(t1.axisDirection), t2, _this); t2 = _this._widget; t1 = t2.color; t1 = A._GlowController$(A.axisDirectionToAxis(t2.axisDirection), t1, _this); _this._trailingController = t1; t2 = _this._leadingController; t2.toString; _this._leadingAndTrailingListener = new A._MergingListenable(A._setArrayType([t2, t1], type$.JSArray_Listenable)); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(oldWidget.color, _this._widget.color) || A.axisDirectionToAxis(oldWidget.axisDirection) !== A.axisDirectionToAxis(_this._widget.axisDirection)) { t1 = _this._leadingController; t1.toString; t1.set$color(0, _this._widget.color); t1 = _this._leadingController; t1.toString; t1.set$axis(A.axisDirectionToAxis(_this._widget.axisDirection)); t1 = _this._trailingController; t1.toString; t1.set$color(0, _this._widget.color); t1 = _this._trailingController; t1.toString; t1.set$axis(A.axisDirectionToAxis(_this._widget.axisDirection)); } }, _overscroll_indicator$_handleScrollNotification$1(notification) { var t1, t2, t3, t4, t5, controller, isLeading, confirmationNotification, velocity, position, _this = this, _s15_ = "_glowController"; if (!_this._widget.notificationPredicate$1(notification)) return false; t1 = _this._leadingController; t1.toString; t2 = notification.metrics; t3 = t2._scroll_metrics$_pixels; t3.toString; t4 = t2._scroll_metrics$_minScrollExtent; t4.toString; t1._paintOffsetScrollPixels = -Math.min(t3 - t4, t1._paintOffset); t4 = _this._trailingController; t4.toString; t5 = t2._scroll_metrics$_maxScrollExtent; t5.toString; t4._paintOffsetScrollPixels = -Math.min(t5 - t3, t4._paintOffset); if (notification instanceof A.OverscrollNotification) { t3 = notification.overscroll; if (t3 < 0) controller = t1; else if (t3 > 0) controller = t4; else controller = null; isLeading = controller === t1; confirmationNotification = new A.OverscrollIndicatorNotification(isLeading, 0); t1 = _this._framework$_element; t1.dispatchNotification$1(confirmationNotification); t1 = _this._accepted; t1.$indexSet(0, isLeading, confirmationNotification._accepted); t1 = t1.$index(0, isLeading); t1.toString; if (t1) controller._paintOffset = 0; t1 = _this._accepted.$index(0, isLeading); t1.toString; if (t1) { t1 = notification.velocity; if (t1 !== 0) { t2 = controller._pullRecedeTimer; if (t2 != null) t2.cancel$0(0); controller._pullRecedeTimer = null; velocity = B.JSNumber_methods.clamp$2(Math.abs(t1), 100, 10000); t1 = controller._glowOpacityTween; if (controller._overscroll_indicator$_state === B._GlowState_0) t2 = 0.3; else { t2 = A._lateReadCheck(controller.___GlowController__glowOpacity, "_glowOpacity"); t3 = t2._evaluatable; t2 = t2.parent; t2 = t3.transform$1(0, t2.get$value(t2)); } t1.begin = t2; t2.toString; t1.end = B.JSNumber_methods.clamp$2(velocity * 0.00006, t2, 0.5); t2 = controller._glowSizeTween; t1 = A._lateReadCheck(controller.___GlowController__glowSize, "_glowSize"); t3 = t1._evaluatable; t1 = t1.parent; t2.begin = t3.transform$1(0, t1.get$value(t1)); t2.end = Math.min(0.025 + 75e-8 * velocity * velocity, 1); A._lateReadCheck(controller.___GlowController__glowController, _s15_).duration = A.Duration$(0, 0, 0, B.JSNumber_methods.round$0(0.15 + velocity * 0.02), 0, 0); A._lateReadCheck(controller.___GlowController__glowController, _s15_).forward$1$from(0, 0); controller._displacement = 0.5; controller._overscroll_indicator$_state = B._GlowState_1; } else { t1 = notification.dragDetails; if (t1 != null) { t4 = notification.context.get$renderObject(); t4.toString; type$.RenderBox._as(t4); t5 = t4._box$_size; t5.toString; position = t4.globalToLocal$1(t1.globalPosition); switch (A.axisDirectionToAxis(t2.axisDirection).index) { case 0: controller.toString; t1 = t5._dy; controller.pull$4(0, Math.abs(t3), t5._dx, J.clamp$2$n(position._dy, 0, t1), t1); break; case 1: controller.toString; t1 = t5._dx; controller.pull$4(0, Math.abs(t3), t5._dy, J.clamp$2$n(position._dx, 0, t1), t1); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } } } } else if (notification instanceof A.ScrollEndNotification || notification instanceof A.ScrollUpdateNotification) if (notification.get$dragDetails() != null) { t1 = _this._leadingController; if (t1._overscroll_indicator$_state === B._GlowState_2) t1._recede$1(B.Duration_600000); t1 = _this._trailingController; if (t1._overscroll_indicator$_state === B._GlowState_2) t1._recede$1(B.Duration_600000); } _this._lastNotificationType = A.getRuntimeType(notification); return false; }, dispose$0(_) { this._leadingController.dispose$0(0); this._trailingController.dispose$0(0); this.super$__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var _this = this, _null = null, t1 = _this._widget, t2 = _this._leadingController, t3 = _this._trailingController, t4 = t1.axisDirection, t5 = _this._leadingAndTrailingListener; return new A.NotificationListener(_this.get$_overscroll_indicator$_handleScrollNotification(), new A.RepaintBoundary(A.CustomPaint$(new A.RepaintBoundary(t1.child, _null), new A._GlowingOverscrollIndicatorPainter(t2, t3, t4, t5), _null, _null, B.Size_0_0), _null), _null, type$.NotificationListener_ScrollNotification); } }; A._GlowState.prototype = { toString$0(_) { return "_GlowState." + this._core$_name; } }; A._GlowController.prototype = { set$color(_, value) { if (J.$eq$(this._overscroll_indicator$_color, value)) return; this._overscroll_indicator$_color = value; this.notifyListeners$0(); }, set$axis(value) { if (this._axis === value) return; this._axis = value; this.notifyListeners$0(); }, dispose$0(_) { var t1, _this = this; A._lateReadCheck(_this.___GlowController__glowController, "_glowController").dispose$0(0); t1 = A._lateReadCheck(_this.___GlowController__displacementTicker, "_displacementTicker"); t1._creator.TickerProviderStateMixin__tickers.remove$1(0, t1); t1.super$Ticker$dispose(0); t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this.super$ChangeNotifier$dispose(0); }, pull$4(_, overscroll, extent, crossAxisOffset, crossExtent) { var t2, t3, height, t4, _this = this, _s12_ = "_glowOpacity", _s9_ = "_glowSize", _s19_ = "_displacementTicker", _s15_ = "_glowController", t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this._pullDistance = _this._pullDistance + overscroll / 200; t1 = _this._glowOpacityTween; t2 = A._lateReadCheck(_this.___GlowController__glowOpacity, _s12_); t3 = t2._evaluatable; t2 = t2.parent; t1.begin = t3.transform$1(0, t2.get$value(t2)); t2 = A._lateReadCheck(_this.___GlowController__glowOpacity, _s12_); t3 = t2._evaluatable; t2 = t2.parent; t1.end = Math.min(t3.transform$1(0, t2.get$value(t2)) + overscroll / extent * 0.8, 0.5); height = Math.min(extent, crossExtent * 0.20096189432249995); t2 = _this._glowSizeTween; t3 = A._lateReadCheck(_this.___GlowController__glowSize, _s9_); t1 = t3._evaluatable; t3 = t3.parent; t2.begin = t1.transform$1(0, t3.get$value(t3)); t3 = Math.sqrt(_this._pullDistance * height); t1 = A._lateReadCheck(_this.___GlowController__glowSize, _s9_); t4 = t1._evaluatable; t1 = t1.parent; t2.end = Math.max(1 - 1 / (0.7 * t3), A.checkNum(t4.transform$1(0, t1.get$value(t1)))); t1 = crossAxisOffset / crossExtent; _this._displacementTarget = t1; if (t1 !== _this._displacement) { if (!A._lateReadCheck(_this.___GlowController__displacementTicker, _s19_).get$isTicking()) A._lateReadCheck(_this.___GlowController__displacementTicker, _s19_).start$0(0); } else { A._lateReadCheck(_this.___GlowController__displacementTicker, _s19_).stop$0(0); _this._displacementTickerLastElapsed = null; } A._lateReadCheck(_this.___GlowController__glowController, _s15_).duration = B.Duration_167000; if (_this._overscroll_indicator$_state !== B._GlowState_2) { A._lateReadCheck(_this.___GlowController__glowController, _s15_).forward$1$from(0, 0); _this._overscroll_indicator$_state = B._GlowState_2; } else { t1 = A._lateReadCheck(_this.___GlowController__glowController, _s15_)._ticker; if (!(t1 != null && t1._ticker$_future != null)) _this.notifyListeners$0(); } _this._pullRecedeTimer = A.Timer_Timer(B.Duration_167000, new A._GlowController_pull_closure(_this)); }, _changePhase$1($status) { var _this = this; if ($status !== B.AnimationStatus_3) return; switch (_this._overscroll_indicator$_state.index) { case 1: _this._recede$1(B.Duration_600000); break; case 3: _this._overscroll_indicator$_state = B._GlowState_0; _this._pullDistance = 0; break; case 2: case 0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _recede$1(duration) { var t2, t3, _this = this, _s15_ = "_glowController", t1 = _this._overscroll_indicator$_state; if (t1 === B._GlowState_3 || t1 === B._GlowState_0) return; t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this._pullRecedeTimer = null; t1 = _this._glowOpacityTween; t2 = A._lateReadCheck(_this.___GlowController__glowOpacity, "_glowOpacity"); t3 = t2._evaluatable; t2 = t2.parent; t1.begin = t3.transform$1(0, t2.get$value(t2)); t1.end = 0; t1 = _this._glowSizeTween; t2 = A._lateReadCheck(_this.___GlowController__glowSize, "_glowSize"); t3 = t2._evaluatable; t2 = t2.parent; t1.begin = t3.transform$1(0, t2.get$value(t2)); t1.end = 0; A._lateReadCheck(_this.___GlowController__glowController, _s15_).duration = duration; A._lateReadCheck(_this.___GlowController__glowController, _s15_).forward$1$from(0, 0); _this._overscroll_indicator$_state = B._GlowState_3; }, _tickDisplacement$1(elapsed) { var t2, _this = this, t1 = _this._displacementTickerLastElapsed; if (t1 != null) { t1 = t1._duration; t2 = _this._displacementTarget; _this._displacement = t2 - (t2 - _this._displacement) * Math.pow(2, -(elapsed._duration - t1) / $.$get$_GlowController__crossAxisHalfTime()._duration); _this.notifyListeners$0(); } if (A.nearEqual(_this._displacementTarget, _this._displacement, 0.001)) { A._lateReadCheck(_this.___GlowController__displacementTicker, "_displacementTicker").stop$0(0); _this._displacementTickerLastElapsed = null; } else _this._displacementTickerLastElapsed = elapsed; }, paint$2(canvas, size) { var baseGlowScale, radius, height, t3, paint, t4, t5, t6, _this = this, _s12_ = "_glowOpacity", t1 = A._lateReadCheck(_this.___GlowController__glowOpacity, _s12_), t2 = t1._evaluatable; t1 = t1.parent; if (J.$eq$(t2.transform$1(0, t1.get$value(t1)), 0)) return; t1 = size._dx; t2 = size._dy; baseGlowScale = t1 > t2 ? t2 / t1 : 1; radius = t1 * 3 / 2; height = Math.min(t2, t1 * 0.20096189432249995); t2 = A._lateReadCheck(_this.___GlowController__glowSize, "_glowSize"); t3 = t2._evaluatable; t2 = t2.parent; t2 = t3.transform$1(0, t2.get$value(t2)); t3 = _this._displacement; paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t4 = _this._overscroll_indicator$_color; t5 = A._lateReadCheck(_this.___GlowController__glowOpacity, _s12_); t6 = t5._evaluatable; t5 = t5.parent; t5 = t6.transform$1(0, t5.get$value(t5)); t4.toString; paint.set$color(0, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t5), t4.get$value(t4) >>> 16 & 255, t4.get$value(t4) >>> 8 & 255, t4.get$value(t4) & 255)); canvas.save$0(0); canvas.translate$2(0, 0, _this._paintOffset + _this._paintOffsetScrollPixels); canvas.scale$2(0, 1, t2 * baseGlowScale); canvas.clipRect$1(0, new A.Rect(0, 0, 0 + t1, 0 + height)); canvas.drawCircle$3(0, new A.Offset(t1 / 2 * (0.5 + t3), height - radius), radius, paint); canvas.restore$0(0); }, toString$0(_) { return "_GlowController(color: " + A.S(this._overscroll_indicator$_color) + ", axis: " + A.describeEnum(this._axis) + ")"; } }; A._GlowController_pull_closure.prototype = { call$0() { return this.$this._recede$1(B.Duration_2000000); }, $signature: 0 }; A._GlowingOverscrollIndicatorPainter.prototype = { _paintSide$5(canvas, size, controller, axisDirection, growthDirection) { var t1; if (controller == null) return; switch (A.applyGrowthDirectionToAxisDirection(axisDirection, growthDirection).index) { case 0: controller.paint$2(canvas, size); break; case 2: canvas.save$0(0); canvas.translate$2(0, 0, size._dy); canvas.scale$2(0, 1, -1); controller.paint$2(canvas, size); canvas.restore$0(0); break; case 3: canvas.save$0(0); canvas.rotate$1(0, 1.5707963267948966); canvas.scale$2(0, 1, -1); controller.paint$2(canvas, new A.Size(size._dy, size._dx)); canvas.restore$0(0); break; case 1: canvas.save$0(0); t1 = size._dx; canvas.translate$2(0, t1, 0); canvas.rotate$1(0, 1.5707963267948966); controller.paint$2(canvas, new A.Size(size._dy, t1)); canvas.restore$0(0); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, paint$2(canvas, size) { var _this = this, t1 = _this.axisDirection; _this._paintSide$5(canvas, size, _this.leadingController, t1, B.GrowthDirection_1); _this._paintSide$5(canvas, size, _this.trailingController, t1, B.GrowthDirection_0); }, shouldRepaint$1(oldDelegate) { return oldDelegate.leadingController != this.leadingController || oldDelegate.trailingController != this.trailingController; }, toString$0(_) { return "_GlowingOverscrollIndicatorPainter(" + A.S(this.leadingController) + ", " + A.S(this.trailingController) + ")"; } }; A.StretchingOverscrollIndicator.prototype = { createState$0() { return new A._StretchingOverscrollIndicatorState(null, null, B._StateLifecycle_0); }, notificationPredicate$1(arg0) { return A.scroll_notification__defaultScrollNotificationPredicate$closure().call$1(arg0); } }; A._StretchingOverscrollIndicatorState.prototype = { get$_stretchController() { var t1, t2, result, t3, decelerator, _this = this, _null = null, _s18_ = "_stretchController", value = _this.___StretchingOverscrollIndicatorState__stretchController; if (value === $) { t1 = type$.Tween_double; t2 = new A.Tween(0, 0, t1); result = new A._StretchController(t2, B._StretchState_0, $.$get$ChangeNotifier__emptyListeners()); t3 = A.AnimationController$(_null, _null, _null, 1, _null, _this); t3.addStatusListener$1(result.get$_changePhase()); A._lateWriteOnceCheck(result.___StretchController__stretchController, _s18_); result.___StretchController__stretchController = t3; decelerator = A.CurvedAnimation$(B.C__DecelerateCurve, A._lateReadCheck(t3, _s18_), _null); decelerator.parent.addListener$1(0, result.get$notifyListeners()); type$.Animation_double._as(decelerator); A._lateWriteOnceCheck(result.___StretchController__stretchSize, "_stretchSize"); result.___StretchController__stretchSize = new A._AnimatedEvaluation(decelerator, t2, t1._eval$1("_AnimatedEvaluation")); A._lateInitializeOnceCheck(_this.___StretchingOverscrollIndicatorState__stretchController, _s18_); _this.___StretchingOverscrollIndicatorState__stretchController = result; value = result; } return value; }, _overscroll_indicator$_handleScrollNotification$1(notification) { var t1, confirmationNotification, t2, velocity, t3, t4, clampedOverscroll, _this = this, _s12_ = "_stretchSize", _s18_ = "_stretchController"; if (!_this._widget.notificationPredicate$1(notification)) return false; if (notification instanceof A.OverscrollNotification) { _this._lastOverscrollNotification = notification; J.get$runtimeType$(_this._lastNotification); t1 = notification.overscroll; confirmationNotification = new A.OverscrollIndicatorNotification(t1 < 0, 0); t2 = _this._framework$_element; t2.dispatchNotification$1(confirmationNotification); _this._accepted = confirmationNotification._accepted; if (_this._accepted) { t2 = notification.velocity; if (t2 !== 0) { t1 = _this.get$_stretchController(); velocity = B.JSNumber_methods.clamp$2(Math.abs(t2), 1, 10000); t2 = t1._stretchSizeTween; t3 = A._lateReadCheck(t1.___StretchController__stretchSize, _s12_); t4 = t3._evaluatable; t3 = t3.parent; t2.begin = t4.transform$1(0, t3.get$value(t3)); t2.end = Math.min(0.016 + 1.01 / velocity, 1); A._lateReadCheck(t1.___StretchController__stretchController, _s18_).duration = A.Duration$(0, 0, 0, B.JSNumber_methods.round$0(velocity * 0.02), 0, 0); A._lateReadCheck(t1.___StretchController__stretchController, _s18_).forward$1$from(0, 0); t1._overscroll_indicator$_state = B._StretchState_1; } else if (notification.dragDetails != null) { t2 = notification.metrics._scroll_metrics$_viewportDimension; t2.toString; clampedOverscroll = B.JSNumber_methods.clamp$2(Math.abs(t1) / t2 + _this.get$_stretchController()._pullDistance, 0, 1); t2 = _this.get$_stretchController(); t2._pullDistance = clampedOverscroll; t1 = t2._stretchSizeTween; t3 = A._lateReadCheck(t2.___StretchController__stretchSize, _s12_); t4 = t3._evaluatable; t3 = t3.parent; t1.begin = t4.transform$1(0, t3.get$value(t3)); t3 = t2._pullDistance; t1.end = 0.016 * t3 + 0.016 * (1 - Math.exp(-t3 * 8.237217661997105)); A._lateReadCheck(t2.___StretchController__stretchController, _s18_).duration = B.Duration_400000; if (t2._overscroll_indicator$_state !== B._StretchState_2) { A._lateReadCheck(t2.___StretchController__stretchController, _s18_).forward$1$from(0, 0); t2._overscroll_indicator$_state = B._StretchState_2; } else { t1 = A._lateReadCheck(t2.___StretchController__stretchController, _s18_)._ticker; if (!(t1 != null && t1._ticker$_future != null)) t2.notifyListeners$0(); } } } } else if (notification instanceof A.ScrollEndNotification || notification instanceof A.ScrollUpdateNotification) { t1 = _this.get$_stretchController(); if (t1._overscroll_indicator$_state === B._StretchState_2) t1._recede$1(B.Duration_400000); } _this._lastNotification = notification; return false; }, _getAlignmentForAxisDirection$1(overscroll) { switch (this._widget.axisDirection.index) { case 0: return overscroll > 0 ? B.AlignmentDirectional_0_m1 : B.AlignmentDirectional_0_1; case 1: return overscroll > 0 ? B.AlignmentDirectional_1_0 : B.AlignmentDirectional_m1_0; case 2: return overscroll > 0 ? B.AlignmentDirectional_0_1 : B.AlignmentDirectional_0_m1; case 3: return overscroll > 0 ? B.AlignmentDirectional_m1_0 : B.AlignmentDirectional_1_0; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, dispose$0(_) { var t1 = this.get$_stretchController(); A._lateReadCheck(t1.___StretchController__stretchController, "_stretchController").dispose$0(0); t1.super$ChangeNotifier$dispose(0); this.super$__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t1 = {}, t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t1.mainAxisSize = null; return new A.NotificationListener(this.get$_overscroll_indicator$_handleScrollNotification(), A.AnimatedBuilder$(this.get$_stretchController(), new A._StretchingOverscrollIndicatorState_build_closure(t1, this, t2.size), null), null, type$.NotificationListener_ScrollNotification); } }; A._StretchingOverscrollIndicatorState_build_closure.prototype = { call$2(context, child) { var x, y, t4, alignment, viewportDimension, transform, _this = this, t1 = _this.$this, t2 = A._lateReadCheck(t1.get$_stretchController().___StretchController__stretchSize, "_stretchSize"), t3 = t2._evaluatable; t2 = t2.parent; t2 = t3.transform$1(0, t2.get$value(t2)); switch (A.axisDirectionToAxis(t1._widget.axisDirection).index) { case 0: x = 1 + t2; t3 = _this._box_0; t3.mainAxisSize = _this.size._dx; y = 1; break; case 1: y = 1 + t2; t3 = _this._box_0; t3.mainAxisSize = _this.size._dy; x = 1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t4 = t1._lastOverscrollNotification; t4 = t4 == null ? null : t4.overscroll; alignment = t1._getAlignmentForAxisDirection$1(t4 == null ? 0 : t4); t4 = t1._lastOverscrollNotification; if (t4 == null) viewportDimension = null; else { t4 = t4.metrics._scroll_metrics$_viewportDimension; t4.toString; viewportDimension = t4; } if (viewportDimension == null) viewportDimension = t3.mainAxisSize; t4 = A.Matrix4_Matrix4$diagonal3Values(x, y, 1); transform = A.Transform$(alignment, t1._widget.child, t4, true); return A.ClipRect$(transform, t2 !== 0 && viewportDimension != t3.mainAxisSize ? B.Clip_1 : B.Clip_0, null); }, $signature: 1554 }; A._StretchState.prototype = { toString$0(_) { return "_StretchState." + this._core$_name; } }; A._StretchController.prototype = { get$value(_) { var t1 = A._lateReadCheck(this.___StretchController__stretchSize, "_stretchSize"), t2 = t1._evaluatable; t1 = t1.parent; return t2.transform$1(0, t1.get$value(t1)); }, _changePhase$1($status) { var _this = this; if ($status !== B.AnimationStatus_3) return; switch (_this._overscroll_indicator$_state.index) { case 1: _this._recede$1(B.Duration_400000); break; case 3: _this._overscroll_indicator$_state = B._StretchState_0; _this._pullDistance = 0; break; case 2: case 0: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _recede$1(duration) { var t2, t3, _this = this, _s18_ = "_stretchController", t1 = _this._overscroll_indicator$_state; if (t1 === B._StretchState_3 || t1 === B._StretchState_0) return; t1 = _this._stretchSizeTween; t2 = A._lateReadCheck(_this.___StretchController__stretchSize, "_stretchSize"); t3 = t2._evaluatable; t2 = t2.parent; t1.begin = t3.transform$1(0, t2.get$value(t2)); t1.end = 0; A._lateReadCheck(_this.___StretchController__stretchController, _s18_).duration = duration; A._lateReadCheck(_this.___StretchController__stretchController, _s18_).forward$1$from(0, 0); _this._overscroll_indicator$_state = B._StretchState_3; }, dispose$0(_) { A._lateReadCheck(this.___StretchController__stretchController, "_stretchController").dispose$0(0); this.super$ChangeNotifier$dispose(0); }, toString$0(_) { return "_StretchController()"; } }; A.OverscrollIndicatorNotification.prototype = { debugFillDescription$1(description) { this.super$_OverscrollIndicatorNotification_Notification_ViewportNotificationMixin$debugFillDescription(description); description.push("side: " + (this.leading ? "leading edge" : "trailing edge")); } }; A._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin.prototype = { debugFillDescription$1(description) { var t1, t2; this.super$Notification$debugFillDescription(description); t1 = this.ViewportNotificationMixin__depth; t2 = t1 === 0 ? "local" : "remote"; description.push("depth: " + t1 + " (" + t2 + ")"); } }; A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._StorageEntryIdentifier.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._StorageEntryIdentifier && A.listEquals0(other.keys, this.keys); }, get$hashCode(_) { return A.Object_hashAll(this.keys); }, toString$0(_) { return "StorageEntryIdentifier(" + B.JSArray_methods.join$1(this.keys, ":") + ")"; } }; A.PageStorageBucket.prototype = { _allKeys$1(context) { var keys = A._setArrayType([], type$.JSArray_PageStorageKey_dynamic); if (A.PageStorageBucket__maybeAddKey(context, keys)) context.visitAncestorElements$1(new A.PageStorageBucket__allKeys_closure(keys)); return keys; }, writeState$2(context, data) { var t1, _this = this; if (_this._storage == null) _this._storage = A.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$.dynamic); t1 = _this._allKeys$1(context); if (t1.length !== 0) _this._storage.$indexSet(0, new A._StorageEntryIdentifier(t1), data); }, readState$1(context) { var t1; if (this._storage == null) return null; t1 = this._allKeys$1(context); return t1.length !== 0 ? this._storage.$index(0, new A._StorageEntryIdentifier(t1)) : null; } }; A.PageStorageBucket__allKeys_closure.prototype = { call$1(element) { return A.PageStorageBucket__maybeAddKey(element, this.keys); }, $signature: 249 }; A.PageStorage.prototype = { build$1(_, context) { return this.child; } }; A.PageController.prototype = { animateToPage$3$curve$duration(page, curve, duration) { var position = type$._PagePosition._as(B.JSArray_methods.get$single(this._positions)); if (position._cachedPage != null) { page.toString; position._cachedPage = page; return A.Future_Future$value(null, type$.void); } page.toString; return position.animateTo$3$curve$duration(position.getPixelsFromPage$1(page), curve, duration); }, jumpToPage$1(page) { var position = type$._PagePosition._as(B.JSArray_methods.get$single(this._positions)); if (position._cachedPage != null) { page.toString; position._cachedPage = page; return; } page.toString; position.jumpTo$1(position.getPixelsFromPage$1(page)); }, createScrollPosition$3(physics, context, oldPosition) { var t2, _null = null, t1 = this.initialPage; t1.toString; t2 = $.$get$ChangeNotifier__emptyListeners(); t2 = new A._PagePosition(t1, this.viewportFraction, B.ScrollDirection_0, physics, context, true, _null, new A.ValueNotifier(false, t2, type$.ValueNotifier_bool), t2); t2.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, _null, true, oldPosition, physics); t2.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, _null, _null, true, oldPosition, physics); return t2; }, attach$1(position) { this.super$ScrollController$attach(position); type$._PagePosition._as(position).set$viewportFraction(this.viewportFraction); } }; A.PageMetrics.prototype = {}; A._PagePosition.prototype = { ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject(object, alignment, alignmentPolicy, curve, duration, targetRenderObject) { return this.super$ScrollPosition$ensureVisible(object, alignment, alignmentPolicy, curve, duration, null); }, set$viewportFraction(value) { var oldPage, _this = this; if (_this._viewportFraction === value) return; oldPage = _this.get$page(_this); _this._viewportFraction = value; if (oldPage != null) _this.forcePixels$1(_this.getPixelsFromPage$1(oldPage)); }, get$_initialPageOffset() { var t1 = this._viewportDimension; t1.toString; return Math.max(0, t1 * (this._viewportFraction - 1) / 2); }, getPageFromPixels$2(pixels, viewportDimension) { var actual = Math.max(0, pixels - this.get$_initialPageOffset()) / (viewportDimension * this._viewportFraction), round = B.JSNumber_methods.roundToDouble$0(actual); if (Math.abs(actual - round) < 1e-10) return round; return actual; }, getPixelsFromPage$1(page) { var t1 = this._viewportDimension; t1.toString; return page * t1 * this._viewportFraction + this.get$_initialPageOffset(); }, get$page(_) { var t2, t3, _this = this, t1 = _this._pixels; if (t1 != null) t2 = !(_this._minScrollExtent != null && _this._maxScrollExtent != null); else t2 = true; if (t2) t1 = null; else { t2 = _this._cachedPage; if (t2 == null) { t1.toString; t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; t3 = B.JSNumber_methods.clamp$2(t1, t2, t3); t2 = _this._viewportDimension; t2.toString; t2 = _this.getPageFromPixels$2(t3, t2); t1 = t2; } else t1 = t2; } return t1; }, saveScrollOffset$0() { var t3, t4, _this = this, t1 = _this.context, t2 = t1._framework$_element; t2.toString; t2 = A.PageStorage_of(t2); if (t2 != null) { t1 = t1._framework$_element; t1.toString; t3 = _this._cachedPage; if (t3 == null) { t3 = _this._pixels; t3.toString; t4 = _this._viewportDimension; t4.toString; t4 = _this.getPageFromPixels$2(t3, t4); t3 = t4; } t2.writeState$2(t1, t3); } }, restoreScrollOffset$0() { var t1, t2, value; if (this._pixels == null) { t1 = this.context; t2 = t1._framework$_element; t2.toString; t2 = A.PageStorage_of(t2); if (t2 == null) value = null; else { t1 = t1._framework$_element; t1.toString; value = t2.readState$1(t1); } if (value != null) this._pageToUseOnStartup = value; } }, saveOffset$0() { var t2, _this = this, t1 = _this._cachedPage; if (t1 == null) { t1 = _this._pixels; t1.toString; t2 = _this._viewportDimension; t2.toString; t2 = _this.getPageFromPixels$2(t1, t2); t1 = t2; } _this.context._persistedScrollOffset.set$value(0, t1); A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").flushData$0(); }, restoreOffset$2$initialRestore(offset, initialRestore) { if (initialRestore) this._pageToUseOnStartup = offset; else this.jumpTo$1(this.getPixelsFromPage$1(offset)); }, applyViewportDimension$1(viewportDimension) { var oldPixels, page, t1, newPixels, _this = this, oldViewportDimensions = _this._viewportDimension; oldViewportDimensions = oldViewportDimensions != null ? oldViewportDimensions : null; if (viewportDimension == oldViewportDimensions) return true; _this.super$ScrollPosition$applyViewportDimension(viewportDimension); oldPixels = _this._pixels; oldPixels = oldPixels != null ? oldPixels : null; if (oldPixels == null) page = _this._pageToUseOnStartup; else if (oldViewportDimensions === 0) { t1 = _this._cachedPage; t1.toString; page = t1; } else { oldViewportDimensions.toString; page = _this.getPageFromPixels$2(oldPixels, oldViewportDimensions); } newPixels = _this.getPixelsFromPage$1(page); _this._cachedPage = viewportDimension === 0 ? page : null; if (newPixels !== oldPixels) { _this._pixels = newPixels; return false; } return true; }, applyContentDimensions$2(minScrollExtent, maxScrollExtent) { var newMinScrollExtent = minScrollExtent + this.get$_initialPageOffset(); return this.super$ScrollPosition$applyContentDimensions(newMinScrollExtent, Math.max(newMinScrollExtent, maxScrollExtent - this.get$_initialPageOffset())); }, copyWith$0() { var t2, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._minScrollExtent; if (t1 != null && _this._maxScrollExtent != null) t1.toString; else t1 = _null; if (_this._minScrollExtent != null && _this._maxScrollExtent != null) { t2 = _this._maxScrollExtent; t2.toString; } else t2 = _null; t3 = _this._pixels; t3 = t3 != null ? t3 : _null; t4 = _this._viewportDimension; t4 = t4 != null ? t4 : _null; t5 = _this.context._widget.axisDirection; t6 = _this._viewportFraction; return new A.PageMetrics(t6, t1, t2, t3, t4, t5); }, $isPageMetrics: 1 }; A._ForceImplicitScrollPhysics.prototype = { applyTo$1(ancestor) { return new A._ForceImplicitScrollPhysics(false, this.buildParent$1(ancestor)); }, get$allowImplicitScrolling() { return this.allowImplicitScrolling; } }; A.PageScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.PageScrollPhysics(this.buildParent$1(ancestor)); }, _getPage$1(position) { var t1, t2; if (position instanceof A._PagePosition) { t1 = position.get$page(position); t1.toString; return t1; } t1 = position._pixels; t1.toString; t2 = position._viewportDimension; t2.toString; return t1 / t2; }, _getPixels$2(position, page) { var t1; if (position instanceof A._PagePosition) return position.getPixelsFromPage$1(page); t1 = position._viewportDimension; t1.toString; return page * t1; }, createBallisticSimulation$2(position, velocity) { var t1, t2, tolerance, page, target, _this = this; if (velocity <= 0) { t1 = position._pixels; t1.toString; t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; t1 = t2; } else t1 = false; if (!t1) if (velocity >= 0) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 >= t2; t1 = t2; } else t1 = false; else t1 = true; if (t1) return _this.super$ScrollPhysics$createBallisticSimulation(position, velocity); tolerance = _this.get$tolerance(); page = _this._getPage$1(position); t1 = tolerance.velocity; if (velocity < -t1) page -= 0.5; else if (velocity > t1) page += 0.5; target = _this._getPixels$2(position, J.roundToDouble$0$n(page)); t1 = position._pixels; t1.toString; if (target !== t1) { t1 = _this.get$spring(); t2 = position._pixels; t2.toString; return new A.ScrollSpringSimulation(target, A._SpringSolution__SpringSolution(t1, t2 - target, velocity), tolerance); } return null; }, get$allowImplicitScrolling() { return false; } }; A.PageView.prototype = { createState$0() { return new A._PageViewState(B._StateLifecycle_0); } }; A._PageViewState.prototype = { initState$0() { this.super$State$initState(); this._lastReportedPage = this._widget.controller.initialPage; }, _getDirection$1(context) { var t1, axisDirection; this._widget.toString; switch (0) { case 0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; axisDirection = A.textDirectionToAxisDirection(t1.textDirection); this._widget.toString; return axisDirection; } }, build$1(_, context) { var t2, t3, t4, _this = this, _null = null, axisDirection = _this._getDirection$1(context), t1 = _this._widget.physics; if (t1 == null) t1 = _null; t1 = new A.PageScrollPhysics(B.PageScrollPhysics_null.buildParent$1(t1)); t1 = new A._ForceImplicitScrollPhysics(false, _null).buildParent$1(t1); t2 = _this._widget; t3 = t2.dragStartBehavior; t2 = t2.controller; t4 = A.ScrollConfiguration_of(context).copyWith$1$scrollbars(false); return new A.NotificationListener(new A._PageViewState_build_closure(_this), A.Scrollable$(axisDirection, t2, t3, false, new A._ForceImplicitScrollPhysics(false, t1), _null, t4, _null, new A._PageViewState_build_closure0(_this, axisDirection)), _null, type$.NotificationListener_ScrollNotification); } }; A._PageViewState_build_closure.prototype = { call$1(notification) { var metrics, t1, t2, t3, currentPage; if (notification.ViewportNotificationMixin__depth === 0 && this.$this._widget.onPageChanged != null && notification instanceof A.ScrollUpdateNotification) { metrics = type$.PageMetrics._as(notification.metrics); t1 = metrics._scroll_metrics$_pixels; t1.toString; t2 = metrics._scroll_metrics$_minScrollExtent; t2.toString; t3 = metrics._scroll_metrics$_maxScrollExtent; t3.toString; t3 = Math.max(0, B.JSNumber_methods.clamp$2(t1, t2, t3)); t2 = metrics._scroll_metrics$_viewportDimension; t2.toString; currentPage = B.JSNumber_methods.round$0(t3 / Math.max(1, t2 * metrics.viewportFraction)); t1 = this.$this; if (currentPage !== t1._lastReportedPage) { t1._lastReportedPage = currentPage; t1._widget.onPageChanged.call$1(currentPage); } } return false; }, $signature: 162 }; A._PageViewState_build_closure0.prototype = { call$2(context, position) { var t1 = this.$this._widget; return A.Viewport$(0, this.axisDirection, 0, B.CacheExtentStyle_1, null, B.Clip_1, position, A._setArrayType([new A.SliverFillViewport(t1.controller.viewportFraction, true, t1.childrenDelegate, null)], type$.JSArray_Widget)); }, $signature: 1553 }; A.PageRoute.prototype = { get$opaque() { return true; }, get$barrierDismissible() { return false; }, canTransitionTo$1(nextRoute) { return nextRoute instanceof A.PageRoute; }, canTransitionFrom$1(previousRoute) { return previousRoute instanceof A.PageRoute; } }; A.PerformanceOverlay.prototype = { createRenderObject$1(context) { var t1 = new A.RenderPerformanceOverlay(this.optionsMask, 0, false, false, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$optionsMask(this.optionsMask); renderObject.set$rasterizerThreshold(0); } }; A._PlaceholderPainter.prototype = { paint$2(canvas, size) { var t1, t2, path, t3, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, this.color); paint.set$style(0, B.PaintingStyle_1); paint.set$strokeWidth(this.strokeWidth); t1 = 0 + size._dx; t2 = 0 + size._dy; path = A.Path_Path(); path.addRect$1(0, new A.Rect(0, 0, t1, t2)); t3 = type$.JSArray_Offset; path.addPolygon$2(A._setArrayType([new A.Offset(t1, 0), new A.Offset(0, t2)], t3), false); path.addPolygon$2(A._setArrayType([new A.Offset(0, 0), new A.Offset(t1, t2)], t3), false); canvas.drawPath$2(0, path, paint); }, shouldRepaint$1(oldPainter) { return !oldPainter.color.$eq(0, this.color) || oldPainter.strokeWidth !== this.strokeWidth; }, hitTest$1(position) { return false; } }; A.Placeholder.prototype = { build$1(_, context) { var _null = null; return A.LimitedBox$(A.CustomPaint$(_null, _null, _null, new A._PlaceholderPainter(this.color, 2, _null), B.Size_wjo), 400, 400); } }; A.MenuSerializableShortcut.prototype = {}; A.PlatformMenuDelegate.prototype = {}; A.DefaultPlatformMenuDelegate.prototype = { _methodCallHandler$1($call) { return this._methodCallHandler$body$DefaultPlatformMenuDelegate($call); }, _methodCallHandler$body$DefaultPlatformMenuDelegate($call) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t2, id, t1; var $async$_methodCallHandler$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start id = A._asIntS($call.$arguments); t1 = $async$self._idMap; if (!t1.containsKey$1(0, id)) { // goto return $async$goto = 1; break; } t1 = t1.$index(0, id); t1.toString; t2 = $call.method; if (t2 === "Menu.selectedCallback") t1.get$onSelected().call$0(); else if (t2 === "Menu.opened") t1.get$onOpen(t1).call$0(); else if (t2 === "Menu.closed") t1.get$onClose(t1).call$0(); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_methodCallHandler$1, $async$completer); } }; A.HtmlElementView.prototype = { build$1(_, context) { return new A.PlatformViewLink(new A.HtmlElementView_build_closure(), this.get$_createHtmlElementView(), this.viewType, null); }, _createHtmlElementView$1(params) { var controller = new A._HtmlElementViewController(params.id, this.viewType); controller._platform_view$_initialize$0().then$1$1(0, new A.HtmlElementView__createHtmlElementView_closure(this, params), type$.Null); return controller; } }; A.HtmlElementView_build_closure.prototype = { call$2(context, controller) { return new A.PlatformViewSurface(controller, B.Set_empty, B.PlatformViewHitTestBehavior_0, null); }, $signature: 1545 }; A.HtmlElementView__createHtmlElementView_closure.prototype = { call$1(_) { var t1 = this.params; t1.onPlatformViewCreated.call$1(t1.id); }, $signature: 86 }; A._HtmlElementViewController.prototype = { _platform_view$_initialize$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$_platform_view$_initialize$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.MethodChannel_qdG._invokeMethod$1$3$arguments$missingOk("create", A.LinkedHashMap_LinkedHashMap$_literal(["id", $async$self.viewId, "viewType", $async$self.viewType], type$.String, type$.dynamic), false, type$.void), $async$_platform_view$_initialize$0); case 2: // returning from await. $async$self._initialized = true; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_platform_view$_initialize$0, $async$completer); }, clearFocus$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$clearFocus$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$clearFocus$0, $async$completer); }, dispatchPointerEvent$1($event) { return this.dispatchPointerEvent$body$_HtmlElementViewController($event); }, dispatchPointerEvent$body$_HtmlElementViewController($event) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$dispatchPointerEvent$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$dispatchPointerEvent$1, $async$completer); }, dispose$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self._initialized ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait(B.MethodChannel_qdG._invokeMethod$1$3$arguments$missingOk("dispose", $async$self.viewId, false, type$.void), $async$dispose$0); case 4: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$dispose$0, $async$completer); }, get$viewId() { return this.viewId; } }; A.PlatformViewCreationParams.prototype = { get$id(receiver) { return this.id; } }; A.PlatformViewLink.prototype = { createState$0() { return new A._PlatformViewLinkState(B._StateLifecycle_0); }, _surfaceFactory$2(arg0, arg1) { return this._surfaceFactory.call$2(arg0, arg1); }, _onCreatePlatformView$1(arg0) { return this._onCreatePlatformView.call$1(arg0); } }; A._PlatformViewLinkState.prototype = { build$1(_, context) { var t2, _this = this, _null = null, t1 = _this._surface; if (t1 == null) { t1 = _this._widget; t1.toString; t2 = _this._platform_view$_controller; t2.toString; t2 = _this._surface = t1._surfaceFactory$2(context, t2); t1 = t2; } t2 = _this._focusNode; t1.toString; return A.Focus$(false, _null, t1, _null, _null, _null, t2, true, _null, _this.get$_handleFrameworkFocusChanged(), _null, _null, _null); }, initState$0() { var _this = this; _this._focusNode = A.FocusNode$(true, "PlatformView(id: " + A.S(_this._platform_view$_id) + ")", true, true, null, null, false); _this._platform_view$_initialize$0(); _this.super$State$initState(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.viewType != oldWidget.viewType) { t1 = _this._platform_view$_controller; if (t1 != null) t1.dispose$0(0); _this._surface = null; _this._platform_view$_initialize$0(); } }, _platform_view$_initialize$0() { var t1 = $.$get$platformViewsRegistry().getNextPlatformViewId$0(); this._platform_view$_id = t1; this._platform_view$_controller = this._widget._onCreatePlatformView$1(new A.PlatformViewCreationParams(t1, new A._PlatformViewLinkState__initialize_closure())); }, _handleFrameworkFocusChanged$1(isFocused) { var t1; if (!isFocused) { t1 = this._platform_view$_controller; if (t1 != null) t1.clearFocus$0(); } B.OptionalMethodChannel_L9J.invokeMethod$1$2("TextInput.setPlatformViewClient", A.LinkedHashMap_LinkedHashMap$_literal(["platformViewId", this._platform_view$_id], type$.String, type$.dynamic), type$.void); }, dispose$0(_) { var t1 = this._platform_view$_controller; if (t1 != null) t1.dispose$0(0); this._platform_view$_controller = null; this.super$State$dispose(0); } }; A._PlatformViewLinkState__initialize_closure.prototype = { call$1(_) { }, $signature: 89 }; A.PlatformViewSurface.prototype = { createRenderObject$1(context) { return A.PlatformViewRenderBox$(this.controller, this.gestureRecognizers, this.hitTestBehavior); }, updateRenderObject$2(context, renderObject) { renderObject.set$controller(0, this.controller); renderObject.set$hitTestBehavior(this.hitTestBehavior); renderObject._updateGestureRecognizersWithCallBack$2(this.gestureRecognizers, renderObject._platform_view0$_controller.get$dispatchPointerEvent()); } }; A.PreferredSize.prototype = { build$1(_, context) { return this.child; }, get$preferredSize() { return this.preferredSize; } }; A.PrimaryScrollController.prototype = { updateShouldNotify$1(oldWidget) { return this.controller != oldWidget.controller; } }; A.SliverReorderableList.prototype = { createState$0() { return new A.SliverReorderableListState(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._ReorderableItemState), null, null, B._StateLifecycle_0); }, itemBuilder$2(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); } }; A.SliverReorderableListState.prototype = { get$_reverse() { var _s11_ = "_scrollable"; return A._lateReadCheck(this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_0 || A._lateReadCheck(this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_3; }, didChangeDependencies$0() { var t1, t2, _this = this, _s11_ = "_scrollable"; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); t1.toString; _this.__SliverReorderableListState__scrollable = t1; t2 = _this._autoScroller; t2 = t2 == null ? null : t2.scrollable; if (t2 != A._lateReadCheck(t1, _s11_)) { t1 = _this._autoScroller; if (t1 != null) t1._scrolling = false; _this._autoScroller = new A._EdgeDraggingAutoScroller(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_), _this.get$_handleScrollableAutoScrolled()); } }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.itemCount != oldWidget.itemCount) this._dragReset$0(); }, dispose$0(_) { var t1 = this._dragInfo; if (t1 != null) t1.dispose$0(0); t1 = this._autoScroller; if (t1 != null) t1._scrolling = false; this.super$_SliverReorderableListState_State_TickerProviderStateMixin$dispose(0); }, startItemDragReorder$3$event$index$recognizer($event, index, recognizer) { this.setState$1(new A.SliverReorderableListState_startItemDragReorder_closure(this, $event, index, recognizer)); }, _registerItem$1(item) { var t1, t2; this._reorderable_list$_items.$indexSet(0, item._widget.index, item); t1 = item._widget.index; t2 = this._dragInfo; if (t1 == (t2 == null ? null : A._lateReadCheck(t2.___DragInfo_index, "index"))) { item.set$dragging(true); item.rebuild$0(); } }, _unregisterItem$2(index, item) { var t1 = this._reorderable_list$_items; if (t1.$index(0, index) === item) t1.remove$1(0, index); }, _dragStart$1(position) { var item, t3, t4, t5, result, _this = this, _s11_ = "_scrollable", t1 = _this._reorderable_list$_items, t2 = _this._dragIndex; t2.toString; item = t1.$index(0, t2); item.set$dragging(true); _this._widget.toString; item.rebuild$0(); _this._dragStartTransitionComplete = false; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.SliverReorderableListState__dragStart_closure(_this)); _this._insertIndex = item._widget.index; t2 = A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection); t3 = new A._DragInfo(t2, _this.get$_dragUpdate(), _this.get$_dragEnd(), _this.get$_dragCancel(), _this.get$_dropCompleted(), _this._widget.proxyDecorator, _this); t4 = item._framework$_element.get$renderObject(); t4.toString; type$.RenderBox._as(t4); t3.___DragInfo_listState = A._lateReadCheck(item.___ReorderableItemState__listState, "_listState"); t5 = item._widget; t3.___DragInfo_index = t5.index; t3.___DragInfo_child = t5.child; t3.___DragInfo_capturedThemes = t5.capturedThemes; t3.___DragInfo_dragPosition = position; t3.___DragInfo_dragOffset = t4.globalToLocal$1(position); t4 = item._framework$_element; t4 = t4.get$size(t4); t4.toString; t3.___DragInfo_itemSize = t4; t3.___DragInfo_itemExtent = A._sizeExtent(A._lateReadCheck(t4, "itemSize"), t2); t2 = item._framework$_element; t2.toString; A.Scrollable_of(t2); _this._dragInfo = t3; t3.startDrag$0(); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t2 = A.OverlayEntry$(_this._dragInfo.get$createProxy(), false); _this._overlayEntry = t2; result.insert$1(0, t2); for (t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) { t1 = t2.__internal$_current; if (t1 == item || t1._framework$_element == null) continue; t3 = _this._insertIndex; t3.toString; t4 = A._lateReadCheck(_this._dragInfo.___DragInfo_itemExtent, "itemExtent"); t1.updateForGap$4(t3, t4, false, A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_0 || A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_3); } return _this._dragInfo; }, _dragUpdate$3(item, position, delta) { this.setState$1(new A.SliverReorderableListState__dragUpdate_closure(this)); }, _dragCancel$1(item) { this._dragReset$0(); }, _dragEnd$1(item) { this.setState$1(new A.SliverReorderableListState__dragEnd_closure(this, item)); this._widget.toString; }, _dropCompleted$0() { var t2, _this = this, t1 = _this._dragIndex; t1.toString; t2 = _this._insertIndex; t2.toString; if (t1 !== t2) _this._widget.onReorder.call$2(t1, t2); _this._dragReset$0(); }, _dragReset$0() { this.setState$1(new A.SliverReorderableListState__dragReset_closure(this)); }, _resetItemGap$0() { var t1, t2, t3, t4, value, result; for (t1 = this._reorderable_list$_items, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")); t2.moveNext$0();) { t1 = t2.__internal$_current; t3 = t1._offsetAnimation; if (t3 != null) { t3._ticker.dispose$0(0); t3._ticker = null; t4 = t3.AnimationLocalStatusListenersMixin__statusListeners; t4._isDirty = false; B.JSArray_methods.set$length(t4._observer_list$_list, 0); value = t4.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t4.$ti._precomputed1); A._lateInitializeOnceCheck(t4.__ObserverList__set, "_set"); t4.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t4 = t3.AnimationLocalListenersMixin__listeners; t4._isDirty = false; B.JSArray_methods.set$length(t4._observer_list$_list, 0); value = t4.__ObserverList__set; if (value === $) { result = A.HashSet_HashSet(t4.$ti._precomputed1); A._lateInitializeOnceCheck(t4.__ObserverList__set, "_set"); t4.__ObserverList__set = result; value = result; } if (value._collection$_length > 0) { value._collection$_strings = value._collection$_nums = value._collection$_rest = value._elements = null; value._collection$_length = 0; } t3.super$AnimationEagerListenerMixin$dispose(0); t1._offsetAnimation = null; } t1._targetOffset = t1._startOffset = B.Offset_0_0; t1.rebuild$0(); } }, _handleScrollableAutoScrolled$0() { var t1, _this = this; if (_this._dragInfo == null) return; _this._dragUpdateItems$0(); t1 = _this._autoScroller; if (t1 != null) t1.startAutoScrollIfNecessary$1(_this.get$_dragTargetRect()); }, _dragUpdateItems$0() { var t3, t4, t5, t6, newIndex, t7, t8, t9, t10, geometry, t11, transitionOffset, t12, itemStart, itemExtent, itemEnd, itemMiddle, _this = this, _s11_ = "_scrollable", t1 = A._lateReadCheck(_this._dragInfo.___DragInfo_itemExtent, "itemExtent"), proxyItemStart = A._offsetExtent(A._lateReadCheck(_this._dragInfo.___DragInfo_dragPosition, "dragPosition").$sub(0, A._lateReadCheck(_this._dragInfo.___DragInfo_dragOffset, "dragOffset")), A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection)), proxyItemEnd = proxyItemStart + t1, t2 = _this._insertIndex; t2.toString; for (t3 = _this._reorderable_list$_items, t4 = t3.get$values(t3), t5 = A._instanceType(t4), t5 = new A.MappedIterator(J.get$iterator$ax(t4.__internal$_iterable), t4._f, t5._eval$1("@<1>")._bind$1(t5._rest[1])._eval$1("MappedIterator<1,2>")), t4 = type$.RenderBox, t6 = -t1, newIndex = t2; t5.moveNext$0();) { t2 = t5.__internal$_current; t7 = t2._widget.index; t8 = _this._dragIndex; t8.toString; if (t7 === t8 || t2._framework$_element == null) continue; t7 = t2._framework$_element.get$renderObject(); t7.toString; t4._as(t7); t8 = A.MatrixUtils_transformPoint(t7.getTransformTo$1(0, null), B.Offset_0_0); t9 = t2._targetOffset; t10 = t8._dx + t9._dx; t9 = t8._dy + t9._dy; t7 = t7._box$_size; t8 = t10 + t7._dx; t7 = t9 + t7._dy; geometry = new A.Rect(t10, t9, t8, t7); if (!_this._dragStartTransitionComplete) { t11 = _this._dragIndex; t11.toString; t11 = t11 <= t2._widget.index; } else t11 = false; if (t11) { t11 = A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_0 || A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_3 ? t6 : t1; transitionOffset = A._extentOffset(t11, A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection)); t11 = t10 - transitionOffset._dx; t12 = t9 - transitionOffset._dy; geometry = new A.Rect(t11, t12, t11 + (t8 - t10), t12 + (t7 - t9)); } itemStart = A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection) === B.Axis_1 ? geometry.top : geometry.left; itemExtent = A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection) === B.Axis_1 ? geometry.bottom - geometry.top : geometry.right - geometry.left; itemEnd = itemStart + itemExtent; itemMiddle = itemStart + itemExtent / 2; if (A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_0 || A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_3) { if (itemEnd >= proxyItemEnd && proxyItemEnd >= itemMiddle) { newIndex = t2._widget.index; break; } else if (itemMiddle >= proxyItemStart && proxyItemStart >= itemStart) { newIndex = t2._widget.index + 1; break; } else if (itemStart > proxyItemEnd && newIndex < t2._widget.index + 1) newIndex = t2._widget.index + 1; else if (proxyItemStart > itemEnd && newIndex > t2._widget.index) newIndex = t2._widget.index; } else if (itemStart <= proxyItemStart && proxyItemStart <= itemMiddle) { newIndex = t2._widget.index; break; } else if (itemMiddle <= proxyItemEnd && proxyItemEnd <= itemEnd) { newIndex = t2._widget.index + 1; break; } else if (itemEnd < proxyItemStart && newIndex < t2._widget.index + 1) newIndex = t2._widget.index + 1; else if (proxyItemEnd < itemStart && newIndex > t2._widget.index) newIndex = t2._widget.index; } if (newIndex != _this._insertIndex) { _this._insertIndex = newIndex; for (t2 = t3.get$values(t3), t3 = A._instanceType(t2), t3 = new A.MappedIterator(J.get$iterator$ax(t2.__internal$_iterable), t2._f, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MappedIterator<1,2>")); t3.moveNext$0();) { t2 = t3.__internal$_current; t4 = t2._widget.index; t5 = _this._dragIndex; t5.toString; if (t4 === t5 || t2._framework$_element == null) continue; t2.updateForGap$4(newIndex, t1, true, A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_0 || A._lateReadCheck(_this.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection === B.AxisDirection_3); } } }, get$_dragTargetRect() { var _this = this, _s8_ = "itemSize", origin = A._lateReadCheck(_this._dragInfo.___DragInfo_dragPosition, "dragPosition").$sub(0, A._lateReadCheck(_this._dragInfo.___DragInfo_dragOffset, "dragOffset")), t1 = origin._dx, t2 = origin._dy; return new A.Rect(t1, t2, t1 + A._lateReadCheck(_this._dragInfo.___DragInfo_itemSize, _s8_)._dx, t2 + A._lateReadCheck(_this._dragInfo.___DragInfo_itemSize, _s8_)._dy); }, _itemOffsetAt$1(index) { var t1 = this._reorderable_list$_items.$index(0, index)._framework$_element.get$renderObject(); t1.toString; return A.MatrixUtils_transformPoint(type$.RenderBox._as(t1).getTransformTo$1(0, null), B.Offset_0_0); }, _reorderable_list$_itemBuilder$2(context, index) { var child, result, t1, t2, _this = this, _null = null, _s10_ = "itemExtent"; if (_this._dragInfo != null && index >= _this._widget.itemCount) switch (A.axisDirectionToAxis(A._lateReadCheck(_this.__SliverReorderableListState__scrollable, "_scrollable")._widget.axisDirection).index) { case 0: return new A.SizedBox(A._lateReadCheck(_this._dragInfo.___DragInfo_itemExtent, _s10_), _null, _null, _null); case 1: return new A.SizedBox(_null, A._lateReadCheck(_this._dragInfo.___DragInfo_itemExtent, _s10_), _null, _null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } child = _this._widget.itemBuilder$2(context, index); result = context.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = child.key; t1.toString; t2 = result._framework$_element; t2.toString; return new A._ReorderableItem(index, child, A.InheritedTheme_capture(context, t2), new A._ReorderableItemGlobalKey(t1, index, _this, t1)); }, build$1(_, context) { var t1 = this._widget.itemCount, t2 = this._dragInfo != null ? 1 : 0; return A.SliverList$(new A.SliverChildBuilderDelegate(this.get$_reorderable_list$_itemBuilder(), t1 + t2, true, true, true, A.sliver___kDefaultSemanticIndexCallback$closure(), null)); } }; A.SliverReorderableListState_startItemDragReorder_closure.prototype = { call$0() { var t2, t3, _this = this, t1 = _this.$this; if (t1._dragInfo != null) t1._dragReset$0(); else if (t1._recognizer != null && t1._recognizerPointer != _this.event.get$pointer()) { t1._recognizer.dispose$0(0); t1._recognizerPointer = t1._recognizer = null; } t2 = _this.index; if (t1._reorderable_list$_items.containsKey$1(0, t2)) { t1._dragIndex = t2; t2 = _this.recognizer; t2.onStart = t1.get$_dragStart(); t3 = _this.event; t2.addPointer$1(t3); t1._recognizer = t2; t1._recognizerPointer = t3.get$pointer(); } else throw A.wrapException(A.Exception_Exception("Attempting to start a drag on a non-visible item")); }, $signature: 0 }; A.SliverReorderableListState__dragStart_closure.prototype = { call$1(duration) { this.$this._dragStartTransitionComplete = true; }, $signature: 22 }; A.SliverReorderableListState__dragUpdate_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._overlayEntry; if (t2 != null) t2.markNeedsBuild$0(); t1._dragUpdateItems$0(); t2 = t1._autoScroller; if (t2 != null) t2.startAutoScrollIfNecessary$1(t1.get$_dragTargetRect()); }, $signature: 0 }; A.SliverReorderableListState__dragEnd_closure.prototype = { call$0() { var itemIndex, _s10_ = "itemExtent", _s11_ = "_scrollable", t1 = this.$this, t2 = t1._insertIndex; t2.toString; if (t2 < t1._widget.itemCount - 1) t1._finalDropPosition = t1._itemOffsetAt$1(t2 + (t1.get$_reverse() ? 1 : 0)); else { if (t1._reorderable_list$_items._length > 1) itemIndex = t2 - 1; else itemIndex = t2; t2 = this.item; if (t1.get$_reverse()) t1._finalDropPosition = t1._itemOffsetAt$1(itemIndex).$sub(0, A._extentOffset(A._lateReadCheck(t2.___DragInfo_itemExtent, _s10_), A.axisDirectionToAxis(A._lateReadCheck(t1.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection))); else t1._finalDropPosition = t1._itemOffsetAt$1(itemIndex).$add(0, A._extentOffset(A._lateReadCheck(t2.___DragInfo_itemExtent, _s10_), A.axisDirectionToAxis(A._lateReadCheck(t1.__SliverReorderableListState__scrollable, _s11_)._widget.axisDirection))); } }, $signature: 0 }; A.SliverReorderableListState__dragReset_closure.prototype = { call$0() { var t2, dragItem, t1 = this.$this; if (t1._dragInfo != null) { t2 = t1._dragIndex; if (t2 != null && t1._reorderable_list$_items.containsKey$1(0, t2)) { t2 = t1._dragIndex; t2.toString; dragItem = t1._reorderable_list$_items.$index(0, t2); dragItem._dragging = false; dragItem.rebuild$0(); t1._dragIndex = null; } t2 = t1._dragInfo; if (t2 != null) t2.dispose$0(0); t1._dragInfo = null; t2 = t1._autoScroller; if (t2 != null) t2._scrolling = false; t1._resetItemGap$0(); t2 = t1._recognizer; if (t2 != null) t2.dispose$0(0); t1._recognizer = null; t2 = t1._overlayEntry; if (t2 != null) t2.remove$0(0); t1._finalDropPosition = t1._overlayEntry = null; } }, $signature: 0 }; A._EdgeDraggingAutoScroller.prototype = { _offsetExtent$2(offset, scrollDirection) { switch (scrollDirection.index) { case 0: return offset._dx; case 1: return offset._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _sizeExtent$2(size, scrollDirection) { switch (scrollDirection.index) { case 0: return size._dx; case 1: return size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, startAutoScrollIfNecessary$1(dragTarget) { var _this = this, deltaToOrigin = A._getDeltaToScrollOrigin(_this.scrollable); _this.___EdgeDraggingAutoScroller__dragTargetRelatedToScrollOrigin = dragTarget.translate$2(0, deltaToOrigin._dx, deltaToOrigin._dy); if (_this._scrolling) return; _this._scroll$0(); }, _scroll$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t3, globalRect, deltaToOrigin, viewportStart, viewportEnd, proxyStart, proxyEnd, overDrag, newOffset, duration, t1, t2; var $async$_scroll$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.scrollable; t2 = t1._framework$_element.get$renderObject(); t2.toString; type$.RenderBox._as(t2); t3 = t2.getTransformTo$1(0, null); t2 = t2._box$_size; globalRect = A.MatrixUtils_transformRect(t3, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); $async$self._scrolling = true; deltaToOrigin = A._getDeltaToScrollOrigin(t1); t2 = globalRect.left; t3 = globalRect.top; viewportStart = $async$self._offsetExtent$2(new A.Offset(t2 + deltaToOrigin._dx, t3 + deltaToOrigin._dy), A.axisDirectionToAxis(t1._widget.axisDirection)); viewportEnd = viewportStart + $async$self._sizeExtent$2(new A.Size(globalRect.right - t2, globalRect.bottom - t3), A.axisDirectionToAxis(t1._widget.axisDirection)); t3 = A._lateReadCheck($async$self.___EdgeDraggingAutoScroller__dragTargetRelatedToScrollOrigin, "_dragTargetRelatedToScrollOrigin"); proxyStart = $async$self._offsetExtent$2(new A.Offset(t3.left, t3.top), A.axisDirectionToAxis(t1._widget.axisDirection)); t3 = A._lateReadCheck($async$self.___EdgeDraggingAutoScroller__dragTargetRelatedToScrollOrigin, "_dragTargetRelatedToScrollOrigin"); proxyEnd = $async$self._offsetExtent$2(new A.Offset(t3.right, t3.bottom), A.axisDirectionToAxis(t1._widget.axisDirection)); overDrag = A._Cell$named("overDrag"); t2 = t1._widget.axisDirection; if (t2 === B.AxisDirection_0 || t2 === B.AxisDirection_3) { if (proxyEnd > viewportEnd) { t2 = t1._scrollable$_position; t3 = t2._pixels; t3.toString; t2 = t2._minScrollExtent; t2.toString; t2 = t3 > t2; } else t2 = false; if (t2) { overDrag.__late_helper$_value = Math.max(proxyEnd - viewportEnd, 20); t2 = t1._scrollable$_position; t3 = t2._minScrollExtent; t3.toString; t2 = t2._pixels; t2.toString; newOffset = Math.max(t3, t2 - overDrag._readLocal$0()); } else { if (proxyStart < viewportStart) { t2 = t1._scrollable$_position; t3 = t2._pixels; t3.toString; t2 = t2._maxScrollExtent; t2.toString; t2 = t3 < t2; } else t2 = false; if (t2) { overDrag.__late_helper$_value = Math.max(viewportStart - proxyStart, 20); t2 = t1._scrollable$_position; t3 = t2._maxScrollExtent; t3.toString; t2 = t2._pixels; t2.toString; newOffset = Math.min(t3, t2 + overDrag._readLocal$0()); } else newOffset = null; } } else { if (proxyStart < viewportStart) { t2 = t1._scrollable$_position; t3 = t2._pixels; t3.toString; t2 = t2._minScrollExtent; t2.toString; t2 = t3 > t2; } else t2 = false; if (t2) { overDrag.__late_helper$_value = Math.max(viewportStart - proxyStart, 20); t2 = t1._scrollable$_position; t3 = t2._minScrollExtent; t3.toString; t2 = t2._pixels; t2.toString; newOffset = Math.max(t3, t2 - overDrag._readLocal$0()); } else { if (proxyEnd > viewportEnd) { t2 = t1._scrollable$_position; t3 = t2._pixels; t3.toString; t2 = t2._maxScrollExtent; t2.toString; t2 = t3 < t2; } else t2 = false; if (t2) { overDrag.__late_helper$_value = Math.max(proxyEnd - viewportEnd, 20); t2 = t1._scrollable$_position; t3 = t2._maxScrollExtent; t3.toString; t2 = t2._pixels; t2.toString; newOffset = Math.min(t3, t2 + overDrag._readLocal$0()); } else newOffset = null; } } if (newOffset != null) { t2 = t1._scrollable$_position._pixels; t2.toString; t2 = Math.abs(newOffset - t2) < 1; } else t2 = true; if (t2) { $async$self._scrolling = false; // goto return $async$goto = 1; break; } duration = A.Duration$(0, 0, 0, 143, 0, 0); $async$goto = 3; return A._asyncAwait(t1._scrollable$_position.animateTo$3$curve$duration(newOffset, B.C__Linear, duration), $async$_scroll$0); case 3: // returning from await. $async$self.onScrollViewScrolled.call$0(); $async$goto = $async$self._scrolling ? 4 : 5; break; case 4: // then $async$goto = 6; return A._asyncAwait($async$self._scroll$0(), $async$_scroll$0); case 6: // returning from await. case 5: // join case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_scroll$0, $async$completer); } }; A._ReorderableItem.prototype = { createState$0() { return new A._ReorderableItemState(B.Offset_0_0, B.Offset_0_0, B._StateLifecycle_0); } }; A._ReorderableItemState.prototype = { set$dragging(dragging) { if (this._framework$_element != null) this.setState$1(new A._ReorderableItemState_dragging_closure(this, true)); }, initState$0() { var _this = this, result = _this._framework$_element.findAncestorStateOfType$1$0(type$.SliverReorderableListState); result.toString; _this.___ReorderableItemState__listState = result; A._lateReadCheck(result, "_listState")._registerItem$1(_this); _this.super$State$initState(); }, dispose$0(_) { var _this = this, t1 = _this._offsetAnimation; if (t1 != null) t1.dispose$0(0); A._lateReadCheck(_this.___ReorderableItemState__listState, "_listState")._unregisterItem$2(_this._widget.index, _this); _this.super$State$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this, _s10_ = "_listState"; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.index; if (t1 != _this._widget.index) { A._lateReadCheck(_this.___ReorderableItemState__listState, _s10_)._unregisterItem$2(t1, _this); A._lateReadCheck(_this.___ReorderableItemState__listState, _s10_)._registerItem$1(_this); } }, build$1(_, context) { var t1, _this = this; if (_this._dragging) return B.SizedBox_null_null_null_null; A._lateReadCheck(_this.___ReorderableItemState__listState, "_listState")._registerItem$1(_this); t1 = A.Matrix4_Matrix4$translationValues(_this.get$offset(_this)._dx, _this.get$offset(_this)._dy, 0); return A.Transform$(null, _this._widget.child, t1, true); }, deactivate$0() { var _this = this; A._lateReadCheck(_this.___ReorderableItemState__listState, "_listState")._unregisterItem$2(_this._widget.index, _this); _this.super$State$deactivate(); }, get$offset(_) { var animValue, _this = this, t1 = _this._offsetAnimation; if (t1 != null) { animValue = B.Cubic_xDo.transform$1(0, A._lateReadCheck(t1.__AnimationController__value, "_value")); t1 = A.Offset_lerp(_this._startOffset, _this._targetOffset, animValue); t1.toString; return t1; } return _this._targetOffset; }, updateForGap$4(gapIndex, gapExtent, animate, reverse) { var t1, newTargetOffset, t2, _this = this, _s10_ = "_listState"; if (gapIndex <= _this._widget.index) { t1 = reverse ? -gapExtent : gapExtent; newTargetOffset = A._extentOffset(t1, A.axisDirectionToAxis(A._lateReadCheck(A._lateReadCheck(_this.___ReorderableItemState__listState, _s10_).__SliverReorderableListState__scrollable, "_scrollable")._widget.axisDirection)); } else newTargetOffset = B.Offset_0_0; if (!newTargetOffset.$eq(0, _this._targetOffset)) { _this._targetOffset = newTargetOffset; if (animate) if (_this._offsetAnimation == null) { t1 = A.AnimationController$(null, B.Duration_250000, null, 1, null, A._lateReadCheck(_this.___ReorderableItemState__listState, _s10_)); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$rebuild()); t1.addStatusListener$1(new A._ReorderableItemState_updateForGap_closure(_this)); t1.forward$0(0); _this._offsetAnimation = t1; } else { _this._startOffset = _this.get$offset(_this); _this._offsetAnimation.forward$1$from(0, 0); } else { t1 = _this._offsetAnimation; if (t1 != null) { t1.dispose$0(0); _this._offsetAnimation = null; } _this._startOffset = _this._targetOffset; } _this.rebuild$0(); } }, rebuild$0() { if (this._framework$_element != null) this.setState$1(new A._ReorderableItemState_rebuild_closure()); } }; A._ReorderableItemState_dragging_closure.prototype = { call$0() { this.$this._dragging = this.dragging; }, $signature: 0 }; A._ReorderableItemState_updateForGap_closure.prototype = { call$1($status) { var t1; if ($status === B.AnimationStatus_3) { t1 = this.$this; t1._startOffset = t1._targetOffset; t1._offsetAnimation.dispose$0(0); t1._offsetAnimation = null; } }, $signature: 42 }; A._ReorderableItemState_rebuild_closure.prototype = { call$0() { }, $signature: 0 }; A.ReorderableDragStartListener.prototype = { build$1(_, context) { var _null = null; return A.Listener$(B.HitTestBehavior_0, this.child, _null, _null, new A.ReorderableDragStartListener_build_closure(this, context), _null, _null, _null, _null); }, createRecognizer$0() { var t1 = type$.int; return new A.ImmediateMultiDragGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.MultiDragPointerState), this, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); } }; A.ReorderableDragStartListener_build_closure.prototype = { call$1($event) { var t1 = this.$this, t2 = this.context, t3 = A.MediaQuery_maybeOf(t2), gestureSettings = t3 == null ? null : t3.gestureSettings; t2 = t2.findAncestorStateOfType$1$0(type$.SliverReorderableListState); if (t2 != null) { t3 = t1.createRecognizer$0(); t3.gestureSettings = gestureSettings; t2.startItemDragReorder$3$event$index$recognizer($event, t1.index, t3); } return null; }, $signature: 248 }; A.ReorderableDelayedDragStartListener.prototype = { createRecognizer$0() { var t1 = type$.int; return new A.DelayedMultiDragGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.MultiDragPointerState), this, null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); } }; A._DragInfo.prototype = { dispose$0(_) { var t1 = this._proxyAnimation; if (t1 != null) t1.dispose$0(0); }, startDrag$0() { var t1 = A.AnimationController$(null, B.Duration_250000, null, 1, null, this.tickerProvider); t1.addStatusListener$1(new A._DragInfo_startDrag_closure(this)); t1.forward$0(0); this._proxyAnimation = t1; }, update$1(_, details) { var _this = this, _s12_ = "dragPosition", t1 = details.delta, delta = A._restrictAxis(t1, _this.scrollDirection), t2 = A._lateReadCheck(_this.___DragInfo_dragPosition, _s12_).$add(0, delta); _this.___DragInfo_dragPosition = t2; t2 = A._lateReadCheck(t2, _s12_); _this.onUpdate.call$3(_this, t2, t1); }, end$1(_, details) { this._proxyAnimation.reverse$0(0); this.onEnd.call$1(this); }, cancel$0(_) { var _this = this, t1 = _this._proxyAnimation; if (t1 != null) t1.dispose$0(0); _this._proxyAnimation = null; _this.onCancel.call$1(_this); }, createProxy$1(context) { var t6, t7, _this = this, t1 = A._lateReadCheck(_this.___DragInfo_capturedThemes, "capturedThemes"), t2 = A._lateReadCheck(_this.___DragInfo_listState, "listState"), t3 = A._lateReadCheck(_this.___DragInfo_index, "index"), t4 = A._lateReadCheck(_this.___DragInfo_itemSize, "itemSize"), t5 = _this._proxyAnimation; t5.toString; t6 = A._lateReadCheck(_this.___DragInfo_dragPosition, "dragPosition").$sub(0, A._lateReadCheck(_this.___DragInfo_dragOffset, "dragOffset")).$sub(0, A._overlayOrigin(context)); t7 = A._lateReadCheck(_this.___DragInfo_child, "child"); return new A._CaptureAll(t1._themes, new A._DragItemProxy(t2, t3, t7, t6, t4, t5, _this.proxyDecorator, null), null); } }; A._DragInfo_startDrag_closure.prototype = { call$1($status) { var t1, t2; if ($status === B.AnimationStatus_0) { t1 = this.$this; t2 = t1._proxyAnimation; if (t2 != null) t2.dispose$0(0); t1._proxyAnimation = null; t1.onDropCompleted.call$0(); } }, $signature: 42 }; A._DragItemProxy.prototype = { build$1(_, context) { var proxyChild0, overlayOrigin, _this = this, proxyChild = _this.child, t1 = _this.animation; t1.toString; proxyChild0 = _this.proxyDecorator.call$3(proxyChild, _this.index, t1); proxyChild = proxyChild0 == null ? proxyChild : proxyChild0; overlayOrigin = A._overlayOrigin(context); return new A.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.removePadding$1$removeTop(true), A.AnimatedBuilder$(t1, new A._DragItemProxy_build_closure(_this, overlayOrigin), proxyChild), null); } }; A._DragItemProxy_build_closure.prototype = { call$2(context, child) { var t2, _null = null, t1 = this.$this, effectivePosition = t1.position, dropPosition = t1.listState._finalDropPosition; if (dropPosition != null) { t2 = A.Offset_lerp(dropPosition.$sub(0, this.overlayOrigin), effectivePosition, B.Cubic_xDo0.transform$1(0, A._lateReadCheck(t1.animation.__AnimationController__value, "_value"))); t2.toString; effectivePosition = t2; } t1 = t1.size; return A.Positioned$(_null, new A.SizedBox(t1._dx, t1._dy, child, _null), _null, _null, effectivePosition._dx, _null, effectivePosition._dy, _null); }, $signature: 552 }; A._ReorderableItemGlobalKey.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; return other instanceof A._ReorderableItemGlobalKey && J.$eq$(other.subKey, _this.subKey) && other.index == _this.index && other.state === _this.state; }, get$hashCode(_) { return A.Object_hash(this.subKey, this.index, this.state, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A._SliverReorderableListState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.RestorationScope.prototype = { createState$0() { return new A._RestorationScopeState(null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), null, true, null, B._StateLifecycle_0); } }; A._RestorationScopeState.prototype = { get$restorationId() { return this._widget.restorationId; }, restoreState$2(oldBucket, initialRestore) { }, build$1(_, context) { return A.UnmanagedRestorationScope$(this.RestorationMixin__bucket, this._widget.child); } }; A.UnmanagedRestorationScope.prototype = { updateShouldNotify$1(oldWidget) { return oldWidget.bucket != this.bucket; } }; A.RootRestorationScope.prototype = { createState$0() { return new A._RootRestorationScopeState(B._StateLifecycle_0); } }; A._RootRestorationScopeState.prototype = { didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; _this._ancestorBucket = A.RestorationScope_of(t1); _this._loadRootBucketIfNecessary$0(); if (_this._okToRenderBlankContainer == null) { _this._widget.toString; _this._okToRenderBlankContainer = false; } }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._loadRootBucketIfNecessary$0(); }, get$_isWaitingForRootBucket() { this._widget.toString; return false; }, _loadRootBucketIfNecessary$0() { var _this = this; if (_this.get$_isWaitingForRootBucket() && !_this._isLoadingRootBucket) { _this._isLoadingRootBucket = true; ++$.RendererBinding__instance.RendererBinding__firstFrameDeferredCount; A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").get$rootBucket().then$1$1(0, new A._RootRestorationScopeState__loadRootBucketIfNecessary_closure(_this), type$.Null); } }, _replaceRootBucket$0() { var _this = this; _this._rootBucketValid = false; _this._rootBucket = null; A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").removeListener$1(0, _this.get$_replaceRootBucket()); _this._loadRootBucketIfNecessary$0(); }, dispose$0(_) { if (this._rootBucketValid) A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").removeListener$1(0, this.get$_replaceRootBucket()); this.super$State$dispose(0); }, build$1(_, context) { var t2, t3, _this = this, t1 = _this._okToRenderBlankContainer; t1.toString; if (t1 && _this.get$_isWaitingForRootBucket()) return B.SizedBox_0_0_null_null; t1 = _this._ancestorBucket; if (t1 == null) t1 = _this._rootBucket; t2 = _this._widget; t3 = t2.restorationId; return A.UnmanagedRestorationScope$(t1, new A.RestorationScope(t2.child, t3, null)); } }; A._RootRestorationScopeState__loadRootBucketIfNecessary_closure.prototype = { call$1(bucket) { var t1 = this.$this; t1._isLoadingRootBucket = false; if (t1._framework$_element != null) { A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").addListener$1(0, t1.get$_replaceRootBucket()); t1.setState$1(new A._RootRestorationScopeState__loadRootBucketIfNecessary__closure(t1, bucket)); } $.RendererBinding__instance.allowFirstFrame$0(); }, $signature: 1513 }; A._RootRestorationScopeState__loadRootBucketIfNecessary__closure.prototype = { call$0() { var t1 = this.$this; t1._rootBucket = this.bucket; t1._rootBucketValid = true; t1._okToRenderBlankContainer = false; }, $signature: 0 }; A.RestorableProperty.prototype = { get$enabled(_) { return true; }, dispose$0(_) { var _this = this, t1 = _this._restoration0$_owner; if (t1 != null) t1._unregister$1(_this); _this.super$ChangeNotifier$dispose(0); _this._restoration0$_disposed = true; } }; A.RestorationMixin.prototype = { didToggleBucket$1(oldBucket) { }, registerForRestoration$2(property, restorationId) { var hasSerializedValue, initialValue, _this = this, t1 = _this.RestorationMixin__bucket; t1 = t1 == null ? null : J.containsKey$1$x(t1.get$_rawValues(), restorationId); hasSerializedValue = t1 === true; initialValue = hasSerializedValue ? property.fromPrimitives$1(J.$index$asx(_this.RestorationMixin__bucket.get$_rawValues(), restorationId)) : property.createDefaultValue$0(); if (property._restoration0$_restorationId == null) { property._restoration0$_restorationId = restorationId; property._restoration0$_owner = _this; t1 = new A.RestorationMixin_registerForRestoration_listener(_this, property); property.addListener$1(0, t1); _this.RestorationMixin__properties.$indexSet(0, property, t1); } property.initWithValue$1(initialValue); if (!hasSerializedValue && property.get$enabled(property) && _this.RestorationMixin__bucket != null) _this._updateProperty$1(property); }, unregisterFromRestoration$1(property) { var t2, t1 = this.RestorationMixin__bucket; if (t1 != null) { t2 = property._restoration0$_restorationId; t2.toString; t1.remove$1$1(0, t2, type$.nullable_Object); } this._unregister$1(property); }, didUpdateRestorationId$0() { var t1, oldBucket, _this = this; if (_this.RestorationMixin__currentParent != null) { t1 = _this.RestorationMixin__bucket; t1 = t1 == null ? null : t1._restorationId; t1 = t1 == _this.get$restorationId() || _this.get$restorePending(); } else t1 = true; if (t1) return; oldBucket = _this.RestorationMixin__bucket; if (_this._updateBucketIfNecessary$2$parent$restorePending(_this.RestorationMixin__currentParent, false)) if (oldBucket != null) oldBucket.dispose$0(0); }, get$restorePending() { var t1, potentialNewParent, _this = this; if (_this.RestorationMixin__firstRestorePending) return true; if (_this.get$restorationId() == null) return false; t1 = _this._framework$_element; t1.toString; potentialNewParent = A.RestorationScope_of(t1); if (potentialNewParent != _this.RestorationMixin__currentParent) { if (potentialNewParent == null) t1 = null; else { t1 = potentialNewParent._restoration$_manager; t1 = t1 == null ? null : t1._isReplacing; t1 = t1 === true; } t1 = t1 === true; } else t1 = false; return t1; }, _updateBucketIfNecessary$2$parent$restorePending($parent, restorePending) { var t1, t2, _this = this; if (_this.get$restorationId() == null || $parent == null) return _this._setNewBucketIfNecessary$2$newBucket$restorePending(null, restorePending); if (restorePending || _this.RestorationMixin__bucket == null) { t1 = _this.get$restorationId(); t1.toString; return _this._setNewBucketIfNecessary$2$newBucket$restorePending($parent.claimChild$2$debugOwner(t1, _this), restorePending); } t1 = _this.RestorationMixin__bucket; t1.toString; t2 = _this.get$restorationId(); t2.toString; t1.rename$1(t2); t2 = _this.RestorationMixin__bucket; t2.toString; $parent.adoptChild$1(t2); return false; }, _setNewBucketIfNecessary$2$newBucket$restorePending(newBucket, restorePending) { var t2, _this = this, t1 = _this.RestorationMixin__bucket; if (newBucket == t1) return false; _this.RestorationMixin__bucket = newBucket; if (!restorePending) { if (newBucket != null) { t2 = _this.RestorationMixin__properties; new A.LinkedHashMapKeyIterable(t2, A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, _this.get$_updateProperty()); } _this.didToggleBucket$1(t1); } return true; }, _updateProperty$1(property) { var t3, t1 = property.get$enabled(property), t2 = this.RestorationMixin__bucket; if (t1) { if (t2 != null) { t1 = property._restoration0$_restorationId; t1.toString; t3 = property.toPrimitives$0(); if (!J.$eq$(J.$index$asx(t2.get$_rawValues(), t1), t3) || !J.containsKey$1$x(t2.get$_rawValues(), t1)) { J.$indexSet$ax(t2.get$_rawValues(), t1, t3); t2._markNeedsSerialization$0(); } } } else if (t2 != null) { t1 = property._restoration0$_restorationId; t1.toString; t2.remove$1$1(0, t1, type$.Object); } }, _unregister$1(property) { var t1 = this.RestorationMixin__properties.remove$1(0, property); t1.toString; property.removeListener$1(0, t1); property._restoration0$_owner = property._restoration0$_restorationId = null; } }; A.RestorationMixin_registerForRestoration_listener.prototype = { call$0() { var t1 = this.$this; if (t1.RestorationMixin__bucket == null) return; t1._updateProperty$1(this.property); }, $signature: 0 }; A.__RestorationScopeState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.__RestorationScopeState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A.__RestorationScopeState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; A.RestorableValue.prototype = { get$value(_) { return this._restoration_properties$_value; }, set$value(_, newValue) { var oldValue, _this = this; if (!J.$eq$(newValue, _this._restoration_properties$_value)) { oldValue = _this._restoration_properties$_value; _this._restoration_properties$_value = newValue; _this.didUpdateValue$1(oldValue); } }, initWithValue$1(value) { this._restoration_properties$_value = value; } }; A._RestorablePrimitiveValueN.prototype = { createDefaultValue$0() { return this._defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(serialized) { return A._instanceType(this)._eval$1("_RestorablePrimitiveValueN.T")._as(serialized); }, toPrimitives$0() { return this._restoration_properties$_value; } }; A._RestorablePrimitiveValue.prototype = { fromPrimitives$1(serialized) { return this.super$_RestorablePrimitiveValueN$fromPrimitives(serialized); }, toPrimitives$0() { var t1 = this.super$_RestorablePrimitiveValueN$toPrimitives(); t1.toString; return t1; } }; A.RestorableNum.prototype = {}; A.RestorableBool.prototype = {}; A.RestorableBoolN.prototype = {}; A.RestorableStringN.prototype = {}; A.RestorableDateTime.prototype = { createDefaultValue$0() { return this._defaultValue; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return A.DateTime$fromMillisecondsSinceEpoch(A._asIntS(data), false); }, toPrimitives$0() { return this._restoration_properties$_value._value; } }; A.RestorableListenable.prototype = { get$value(_) { var t1 = this._restoration_properties$_value; t1.toString; return t1; }, initWithValue$1(value) { var _this = this, t1 = _this._restoration_properties$_value; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); _this._restoration_properties$_value = value; value.toString; J.addListener$1$x(value, _this.get$notifyListeners()); }, dispose$0(_) { var t1; this.super$RestorableProperty$dispose(0); t1 = this._restoration_properties$_value; if (t1 != null) t1.removeListener$1(0, this.get$notifyListeners()); } }; A.RestorableChangeNotifier.prototype = { initWithValue$1(value) { this._disposeOldValue$0(); this.super$RestorableListenable$initWithValue(value); }, dispose$0(_) { this._disposeOldValue$0(); this.super$RestorableListenable$dispose(0); }, _disposeOldValue$0() { var t1 = this._restoration_properties$_value; if (t1 != null) A.scheduleMicrotask(t1.get$dispose(t1)); } }; A.RestorableTextEditingController.prototype = { createDefaultValue$0() { return A.TextEditingController$fromValue(this._initialValue); }, fromPrimitives$1(data) { data.toString; A._asStringS(data); return new A.TextEditingController(new A.TextEditingValue(data, B.TextSelection_ke5, B.TextRange_m1_m1), $.$get$ChangeNotifier__emptyListeners()); }, toPrimitives$0() { return this._restoration_properties$_value._change_notifier$_value.text; } }; A.RouteInformation.prototype = {}; A.OverlayRoute.prototype = { get$overlayEntries() { return this._overlayEntries; }, install$0() { var t2, _this = this, t1 = A.OverlayEntry$(_this.get$_buildModalBarrier(), false); _this.__ModalRoute__modalBarrier = t1; _this.get$maintainState(); t2 = A.OverlayEntry$(_this.get$_buildModalScope(), true); _this.__ModalRoute__modalScope = t2; B.JSArray_methods.addAll$1(_this._overlayEntries, A._setArrayType([t1, t2], type$.JSArray_OverlayEntry)); _this.super$Route$install(); }, didPop$1(result) { var _this = this; _this.super$Route$didPop(result); if (A._lateReadCheck(_this._routes$_controller.__AnimationController__status, "_status") === B.AnimationStatus_0 && !_this._popFinalized) _this._navigator$_navigator.finalizeRoute$1(_this); return true; }, dispose$0(_) { B.JSArray_methods.set$length(this._overlayEntries, 0); this.super$Route$dispose(0); } }; A.TransitionRoute.prototype = { get$animation(_) { return this._routes$_animation; }, get$secondaryAnimation() { return this._secondaryAnimation; }, createAnimation$0() { var t1 = this._routes$_controller; t1.toString; return t1; }, _handleStatusChanged$1($status) { var t1, _this = this; switch ($status) { case B.AnimationStatus_3: t1 = _this._overlayEntries; if (t1.length !== 0) B.JSArray_methods.get$first(t1).set$opaque(_this.get$opaque()); break; case B.AnimationStatus_1: case B.AnimationStatus_2: t1 = _this._overlayEntries; if (t1.length !== 0) B.JSArray_methods.get$first(t1).set$opaque(false); break; case B.AnimationStatus_0: if (!_this.get$isActive()) { _this._navigator$_navigator.finalizeRoute$1(_this); _this._popFinalized = true; } break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, install$0() { var _this = this, duration = _this.get$transitionDuration(_this), reverseDuration = _this.get$transitionDuration(_this), t1 = _this.get$debugLabel(), t2 = _this._navigator$_navigator; t2.toString; _this._routes$_controller = A.AnimationController$(t1, duration, reverseDuration, 1, null, t2); t2 = _this.createAnimation$0(); t2.addStatusListener$1(_this.get$_handleStatusChanged()); _this._routes$_animation = t2; _this.super$OverlayRoute$install(); t1 = _this._routes$_animation; if (t1.get$status(t1) === B.AnimationStatus_3 && _this._overlayEntries.length !== 0) B.JSArray_methods.get$first(_this._overlayEntries).set$opaque(_this.get$opaque()); }, didPush$0() { this.super$Route$didPush(); return this._routes$_controller.forward$0(0); }, didAdd$0() { this.super$Route$didAdd(); var t1 = this._routes$_controller; t1.set$value(0, t1.upperBound); }, didReplace$1(oldRoute) { var t1; if (oldRoute instanceof A.TransitionRoute) { t1 = this._routes$_controller; t1.toString; t1.set$value(0, A._lateReadCheck(oldRoute._routes$_controller.__AnimationController__value, "_value")); } this.super$Route$didReplace(oldRoute); }, didPop$1(result) { this._routes$_result = result; this._routes$_controller.reverse$0(0); this.super$OverlayRoute$didPop(result); return true; }, didPopNext$1(nextRoute) { this._updateSecondaryAnimation$1(nextRoute); this.super$Route$didPopNext(nextRoute); }, didChangeNext$1(nextRoute) { this._updateSecondaryAnimation$1(nextRoute); this.super$Route$didChangeNext(nextRoute); }, _updateSecondaryAnimation$1(nextRoute) { var current, t2, t3, t4, t5, newAnimation, _this = this, t1 = {}, previousTrainHoppingListenerRemover = _this._trainHoppingListenerRemover; _this._trainHoppingListenerRemover = null; if (nextRoute instanceof A.TransitionRoute && _this.canTransitionTo$1(nextRoute) && nextRoute.canTransitionFrom$1(_this)) { current = _this._secondaryAnimation._animations$_parent; if (current != null) { t2 = current instanceof A.TrainHoppingAnimation ? current._currentTrain : current; t2.toString; t3 = nextRoute._routes$_animation; t3.toString; t4 = J.$eq$(t2.get$value(t2), t3.get$value(t3)) || t3.get$status(t3) === B.AnimationStatus_3 || t3.get$status(t3) === B.AnimationStatus_0; t5 = nextRoute._transitionCompleter.future; if (t4) _this._setSecondaryAnimation$2(t3, t5); else { t1.newAnimation = null; t4 = new A.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd(_this, t3, nextRoute); _this._trainHoppingListenerRemover = new A.TransitionRoute__updateSecondaryAnimation_closure(t1, t3, t4); t3.addStatusListener$1(t4); newAnimation = A.TrainHoppingAnimation$(t2, t3, new A.TransitionRoute__updateSecondaryAnimation_closure0(t1, _this, nextRoute)); t1.newAnimation = newAnimation; _this._setSecondaryAnimation$2(newAnimation, t5); } } else _this._setSecondaryAnimation$2(nextRoute._routes$_animation, nextRoute._transitionCompleter.future); } else _this._setSecondaryAnimation$1(B.C__AlwaysDismissedAnimation); if (previousTrainHoppingListenerRemover != null) previousTrainHoppingListenerRemover.call$0(); }, _setSecondaryAnimation$2(animation, disposed) { this._secondaryAnimation.set$parent(0, animation); if (disposed != null) disposed.then$1$1(0, new A.TransitionRoute__setSecondaryAnimation_closure(this, animation), type$.Null); }, _setSecondaryAnimation$1(animation) { return this._setSecondaryAnimation$2(animation, null); }, canTransitionTo$1(nextRoute) { return true; }, canTransitionFrom$1(previousRoute) { return true; }, dispose$0(_) { var _this = this, t1 = _this._routes$_animation; if (t1 != null) t1.removeStatusListener$1(_this.get$_handleStatusChanged()); t1 = _this._routes$_controller; if (t1 != null) t1.dispose$0(0); _this._transitionCompleter.complete$1(0, _this._routes$_result); _this.super$OverlayRoute$dispose(0); }, get$debugLabel() { return "TransitionRoute"; }, toString$0(_) { return "TransitionRoute(animation: " + A.S(this._routes$_controller) + ")"; } }; A.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd.prototype = { call$1($status) { var t1, t2; switch ($status) { case B.AnimationStatus_3: case B.AnimationStatus_0: t1 = this.$this; t1._setSecondaryAnimation$2(this.nextTrain, this.nextRoute._transitionCompleter.future); t2 = t1._trainHoppingListenerRemover; if (t2 != null) { t2.call$0(); t1._trainHoppingListenerRemover = null; } break; case B.AnimationStatus_1: case B.AnimationStatus_2: break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 42 }; A.TransitionRoute__updateSecondaryAnimation_closure.prototype = { call$0() { this.nextTrain.removeStatusListener$1(this._jumpOnAnimationEnd); var t1 = this._box_0.newAnimation; if (t1 != null) t1.dispose$0(0); }, $signature: 0 }; A.TransitionRoute__updateSecondaryAnimation_closure0.prototype = { call$0() { var t2, t1 = this.$this; t1._setSecondaryAnimation$2(this._box_0.newAnimation._currentTrain, this.nextRoute._transitionCompleter.future); t2 = t1._trainHoppingListenerRemover; if (t2 != null) { t2.call$0(); t1._trainHoppingListenerRemover = null; } }, $signature: 0 }; A.TransitionRoute__setSecondaryAnimation_closure.prototype = { call$1(_) { var t1 = this.$this._secondaryAnimation, t2 = this.animation; if (t1._animations$_parent == t2) { t1.set$parent(0, B.C__AlwaysDismissedAnimation); if (t2 instanceof A.TrainHoppingAnimation) t2.dispose$0(0); } }, $signature: 7 }; A.LocalHistoryEntry.prototype = { remove$0(_) { var t1 = this._routes$_owner; if (t1 != null) t1.removeLocalHistoryEntry$1(this); }, _notifyRemoved$0() { this.onRemove.call$0(); } }; A.LocalHistoryRoute.prototype = { addLocalHistoryEntry$1(entry) { var t1, t2, _this = this; entry._routes$_owner = _this; t1 = _this.LocalHistoryRoute__localHistory; if (t1 == null) t1 = _this.LocalHistoryRoute__localHistory = A._setArrayType([], type$.JSArray_LocalHistoryEntry); t2 = t1.length; t1.push(entry); if (t2 === 0) _this.changedInternalState$0(); }, removeLocalHistoryEntry$1(entry) { var _this = this, t1 = _this.LocalHistoryRoute__localHistory; t1.toString; B.JSArray_methods.remove$1(t1, entry); entry._routes$_owner = null; entry._notifyRemoved$0(); if (_this.LocalHistoryRoute__localHistory.length === 0) { t1 = $.SchedulerBinding__instance; if (t1.SchedulerBinding__schedulerPhase === B.SchedulerPhase_3) t1.SchedulerBinding__postFrameCallbacks.push(new A.LocalHistoryRoute_removeLocalHistoryEntry_closure(_this)); else _this.changedInternalState$0(); } }, get$willHandlePopInternally() { var t1 = this.LocalHistoryRoute__localHistory; return t1 != null && t1.length !== 0; } }; A.LocalHistoryRoute_removeLocalHistoryEntry_closure.prototype = { call$1(duration) { this.$this.changedInternalState$0(); }, $signature: 22 }; A._DismissModalAction.prototype = { isEnabled$1(_, intent) { return A.ModalRoute_of(this.context, type$.dynamic).get$barrierDismissible(); }, invoke$1(intent) { return A.Navigator_of(this.context, false).maybePop$0(); } }; A._ModalScopeStatus.prototype = { updateShouldNotify$1(old) { return this.isCurrent !== old.isCurrent || this.canPop !== old.canPop || this.route !== old.route; } }; A._ModalScope.prototype = { createState$0() { return new A._ModalScopeState(A.FocusScopeNode$(true, B.Type__ModalScopeState_Yap.toString$0(0) + " Focus Scope", false), new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0, this.$ti._eval$1("_ModalScopeState<1>")); } }; A._ModalScopeState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = A._setArrayType([], type$.JSArray_Listenable); t2 = _this._widget.route._animationProxy; if (t2 != null) t1.push(t2); t2 = _this._widget.route._secondaryAnimationProxy; if (t2 != null) t1.push(t2); _this.___ModalScopeState__listenable = new A._MergingListenable(t1); if (_this._widget.route.get$isCurrent()) { _this._widget.route._navigator$_navigator._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(_this.focusScopeNode); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.route.get$isCurrent()) { _this._widget.route._navigator$_navigator._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(_this.focusScopeNode); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._page = null; }, _forceRebuildPage$0() { this.setState$1(new A._ModalScopeState__forceRebuildPage_closure(this)); }, dispose$0(_) { this.focusScopeNode.dispose$0(0); this.super$State$dispose(0); }, get$_shouldIgnoreFocusRequest() { var t1 = this._widget.route._animationProxy; if ((t1 == null ? null : t1.get$status(t1)) !== B.AnimationStatus_2) { t1 = this._widget.route._navigator$_navigator; t1 = t1 == null ? null : t1.userGestureInProgressNotifier._change_notifier$_value; t1 = t1 === true; } else t1 = true; return t1; }, build$1(_, context) { var t4, _this = this, _null = null, t1 = _this._widget.route, t2 = t1.get$isCurrent(), t3 = _this._widget.route; if (!t3.get$hasActiveRouteBelow()) { t3 = t3.LocalHistoryRoute__localHistory; t3 = t3 != null && t3.length !== 0; } else t3 = true; t4 = _this._widget.route; return A.AnimatedBuilder$(t1._restorationScopeId, new A._ModalScopeState_build_closure(_this), new A._ModalScopeStatus(t2, t3, t1, new A.Offstage(t4._offstage, new A.PageStorage(new A.Builder(new A._ModalScopeState_build_closure0(_this), _null), t4._storageBucket, _null), _null), _null)); } }; A._ModalScopeState__forceRebuildPage_closure.prototype = { call$0() { this.$this._page = null; }, $signature: 0 }; A._ModalScopeState_build_closure.prototype = { call$2(context, child) { var t1 = this.$this._widget.route._restorationScopeId._change_notifier$_value; child.toString; return new A.RestorationScope(child, t1, null); }, $signature: 1509 }; A._ModalScopeState_build_closure0.prototype = { call$1(context) { var _null = null, t1 = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_DismissIntent_Fb0, new A._DismissModalAction(context, new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.Type, type$.Action_Intent), t2 = this.$this, t3 = t2.focusScopeNode, t4 = A._lateReadCheck(t2.___ModalScopeState__listenable, "_listenable"), t5 = t2._page; if (t5 == null) t5 = t2._page = new A.RepaintBoundary(new A.Builder(new A._ModalScopeState_build__closure(t2), _null), t2._widget.route._subtreeKey); return A.Actions$(t1, A.PrimaryScrollController$(A.FocusScope$(false, new A.FocusTrap(t3, new A.RepaintBoundary(A.AnimatedBuilder$(t4, new A._ModalScopeState_build__closure0(t2), t5), _null), _null), _null, t3), t2.primaryScrollController)); }, $signature: 1508 }; A._ModalScopeState_build__closure0.prototype = { call$2(context, child) { var t4, t5, t1 = this.$this, t2 = t1._widget.route, t3 = t2._animationProxy; t3.toString; t4 = t2._secondaryAnimationProxy; t4.toString; t5 = t2._navigator$_navigator; t5 = t5 == null ? null : t5.userGestureInProgressNotifier; if (t5 == null) t5 = new A.ValueNotifier(false, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_bool); return t2.buildTransitions$4(context, t3, t4, A.AnimatedBuilder$(t5, new A._ModalScopeState_build___closure(t1), child)); }, $signature: 211 }; A._ModalScopeState_build___closure.prototype = { call$2(context, child) { var t1 = this.$this, ignoreEvents = t1.get$_shouldIgnoreFocusRequest(); t1.focusScopeNode.set$canRequestFocus(!ignoreEvents); return new A.IgnorePointer(ignoreEvents, null, child, null); }, $signature: 1492 }; A._ModalScopeState_build__closure.prototype = { call$1(context) { var t3, t1 = this.$this._widget.route, t2 = t1._animationProxy; t2.toString; t3 = t1._secondaryAnimationProxy; t3.toString; return t1.buildPage$3(context, t2, t3); }, $signature: 78 }; A.ModalRoute.prototype = { setState$1(fn) { var t2, t1 = this._scopeKey; if (t1.get$currentState() != null) { t1 = t1.get$currentState(); if (t1._widget.route.get$isCurrent()) if (!t1.get$_shouldIgnoreFocusRequest()) { t1._widget.route._navigator$_navigator._widget.toString; t2 = true; } else t2 = false; else t2 = false; if (t2) t1._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.focusScopeNode); t1.setState$1(fn); } else fn.call$0(); }, buildTransitions$4(context, animation, secondaryAnimation, child) { return child; }, install$0() { var _this = this; _this.super$TransitionRoute$install(); _this._animationProxy = A.ProxyAnimation$(A.TransitionRoute.prototype.get$animation.call(_this, _this)); _this._secondaryAnimationProxy = A.ProxyAnimation$(A.TransitionRoute.prototype.get$secondaryAnimation.call(_this)); }, didPush$0() { var t2, _this = this, t1 = _this._scopeKey; if (t1.get$currentState() != null) { _this._navigator$_navigator._widget.toString; t2 = true; } else t2 = false; if (t2) _this._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.get$currentState().focusScopeNode); return _this.super$TransitionRoute$didPush(); }, didAdd$0() { var t2, _this = this, t1 = _this._scopeKey; if (t1.get$currentState() != null) { _this._navigator$_navigator._widget.toString; t2 = true; } else t2 = false; if (t2) _this._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.get$currentState().focusScopeNode); _this.super$TransitionRoute$didAdd(); }, set$offstage(value) { var t1, _this = this; if (_this._offstage === value) return; _this.setState$1(new A.ModalRoute_offstage_closure(_this, value)); t1 = _this._animationProxy; t1.toString; t1.set$parent(0, _this._offstage ? B.C__AlwaysCompleteAnimation : A.TransitionRoute.prototype.get$animation.call(_this, _this)); t1 = _this._secondaryAnimationProxy; t1.toString; t1.set$parent(0, _this._offstage ? B.C__AlwaysDismissedAnimation : A.TransitionRoute.prototype.get$secondaryAnimation.call(_this)); _this.changedInternalState$0(); }, willPop$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this, t1, t2, _i, $async$temp1; var $async$willPop$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._scopeKey.get$currentState(); t1 = A.List_List$of($async$self._willPopCallbacks, true, type$.Future_bool_Function), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$temp1 = J; $async$goto = 6; return A._asyncAwait(t1[_i].call$0(), $async$willPop$0); case 6: // returning from await. if (!$async$temp1.$eq$($async$result, true)) { $async$returnValue = B.RoutePopDisposition_1; // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$returnValue = $async$self.super$_ModalRoute_TransitionRoute_LocalHistoryRoute$willPop(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$willPop$0, $async$completer); }, didChangePrevious$1(previousRoute) { this.super$Route$didChangePrevious(previousRoute); this.changedInternalState$0(); }, changedInternalState$0() { var t1, _this = this; _this.super$Route$changedInternalState(); _this.setState$1(new A.ModalRoute_changedInternalState_closure()); A._lateReadCheck(_this.__ModalRoute__modalBarrier, "_modalBarrier").markNeedsBuild$0(); t1 = A._lateReadCheck(_this.__ModalRoute__modalScope, "_modalScope"); _this.get$maintainState(); t1.set$maintainState(true); }, changedExternalState$0() { this.super$Route$changedExternalState(); A._lateReadCheck(this.__ModalRoute__modalBarrier, "_modalBarrier").markNeedsBuild$0(); var t1 = this._scopeKey; if (t1.get$currentState() != null) t1.get$currentState()._forceRebuildPage$0(); }, _buildModalBarrier$1(context) { var t1, t2, t3, t4, barrier, _this = this, _null = null; if (_this.get$barrierColor() != null && (_this.get$barrierColor().value >>> 24 & 255) !== 0 && !_this._offstage) { t1 = _this._animationProxy; t1.toString; t2 = _this.get$barrierColor().value; t2 = A.Color$fromARGB(0, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); t3 = _this.get$barrierColor(); t4 = type$.ColorTween._eval$1("_ChainedEvaluation"); type$.Animation_double._as(t1); barrier = new A.AnimatedModalBarrier(_this.get$barrierDismissible(), _this.get$barrierLabel(), true, new A._AnimatedEvaluation(t1, new A._ChainedEvaluation(new A.CurveTween(B.Cubic_JUR), new A.ColorTween(t2, t3), t4), t4._eval$1("_AnimatedEvaluation")), _null); } else barrier = A.ModalBarrier$(true, _null, _this.get$barrierDismissible(), _this.get$barrierLabel()); t1 = _this._animationProxy; if (t1.get$status(t1) !== B.AnimationStatus_2) { t1 = _this._animationProxy; t1 = t1.get$status(t1) === B.AnimationStatus_0; } else t1 = true; barrier = new A.IgnorePointer(t1, _null, barrier, _null); t1 = _this.get$barrierDismissible(); if (t1) barrier = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.OrdinalSortKey_1_null, _null, _null, _null, _null, _null), false, false, false, barrier, _null); return barrier; }, _buildModalScope$1(context) { var _this = this, _null = null, t1 = _this._modalScopeCache; if (t1 == null) t1 = _this._modalScopeCache = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.OrdinalSortKey_0_null, _null, _null, _null, _null, _null), false, false, false, new A._ModalScope(_this, _this._scopeKey, A._instanceType(_this)._eval$1("_ModalScope")), _null); return t1; }, toString$0(_) { return "ModalRoute(" + this._navigator$_settings.toString$0(0) + ", animation: " + A.S(this._routes$_animation) + ")"; } }; A.ModalRoute_offstage_closure.prototype = { call$0() { this.$this._offstage = this.value; }, $signature: 0 }; A.ModalRoute_changedInternalState_closure.prototype = { call$0() { }, $signature: 0 }; A.PopupRoute.prototype = { get$opaque() { return false; }, get$maintainState() { return true; } }; A.RouteObserver.prototype = { didPop$2(route, previousRoute) { var t1 = A._instanceType(this)._eval$1("RouteObserver.R"); if (t1._is(route) && t1._is(previousRoute)) { t1 = this._routes$_listeners; t1.$index(0, previousRoute); t1.$index(0, route); } }, didPush$2(route, previousRoute) { var t1 = A._instanceType(this)._eval$1("RouteObserver.R"); if (t1._is(route) && t1._is(previousRoute)) this._routes$_listeners.$index(0, previousRoute); } }; A.RawDialogRoute.prototype = { get$barrierDismissible() { return this._barrierDismissible; }, get$barrierLabel() { return this._barrierLabel; }, get$barrierColor() { return this._barrierColor; }, get$transitionDuration(_) { return this._transitionDuration; }, buildPage$3(context, animation, secondaryAnimation) { var _null = null, t1 = this._pageBuilder.call$3(context, animation, secondaryAnimation); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, new A.DisplayFeatureSubScreen(this.anchorPoint, t1, _null), _null); }, buildTransitions$4(context, animation, secondaryAnimation, child) { return this._transitionBuilder.call$4(context, animation, secondaryAnimation, child); } }; A.FocusTrap.prototype = { createRenderObject$1(context) { var t1 = new A._RenderFocusTrap(new A.Expando(new WeakMap(), type$.Expando_BoxHitTestResult), this.focusScopeNode, B.HitTestBehavior_0, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { if (renderObject instanceof A._RenderFocusTrap) renderObject.set$focusScopeNode(this.focusScopeNode); } }; A.FocusTrapArea.prototype = { createRenderObject$1(context) { var t1 = new A._RenderFocusTrapArea(this.focusNode, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { if (renderObject instanceof A._RenderFocusTrapArea) renderObject.focusNode = this.focusNode; } }; A._RenderFocusTrapArea.prototype = {}; A._RenderFocusTrap.prototype = { set$focusScopeNode(value) { if (this._focusScopeNode === value) return; this._focusScopeNode = value; }, hitTest$2$position(result, position) { var hitTarget, entry, _this = this; if (_this._box$_size.contains$1(0, position)) { hitTarget = _this.hitTestChildren$2$position(result, position) || _this.behavior === B.HitTestBehavior_1; if (hitTarget) { entry = new A.BoxHitTestEntry(position, _this); _this.cachedResults._jsWeakMap.set(entry, result); result.add$1(0, entry); } } else hitTarget = false; return hitTarget; }, get$_shouldIgnoreEvents() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_2: return false; case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: case B.TargetPlatform_1: return false; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, handleEvent$2($event, entry) { var t1, result, focusNode, renderObject, hitCurrentFocus, t2, _i, target, _this = this; if (type$.PointerDownEvent._is($event)) if ($event.get$buttons($event) === 1) if ($event.get$kind($event) === B.PointerDeviceKind_1) { _this.get$_shouldIgnoreEvents(); t1 = _this._focusScopeNode; t1 = t1._focusedChildren; t1 = (t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null) == null; } else t1 = true; else t1 = true; else t1 = true; if (t1) return; A.Expando__checkType(entry); result = _this.cachedResults._jsWeakMap.get(entry); t1 = _this._focusScopeNode._focusedChildren; focusNode = t1.length !== 0 ? B.JSArray_methods.get$last(t1) : null; if (focusNode == null || result == null) return; t1 = focusNode._context; renderObject = t1 == null ? null : t1.get$renderObject(); if (renderObject == null) return; t1 = result._hit_test$_path; t2 = t1.length; _i = 0; while (true) { if (!(_i < t1.length)) { hitCurrentFocus = false; break; } target = t1[_i].target; if (target.$eq(0, renderObject)) { hitCurrentFocus = true; break; } if (target instanceof A._RenderFocusTrapArea && target.focusNode === focusNode) { hitCurrentFocus = true; break; } t1.length === t2 || (0, A.throwConcurrentModificationError)(t1); ++_i; } if (!hitCurrentFocus) focusNode.unfocus$0(); } }; A._ModalRoute_TransitionRoute_LocalHistoryRoute.prototype = { willPop$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this, t1; var $async$willPop$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) { $async$returnValue = B.RoutePopDisposition_0; // goto return $async$goto = 1; break; } $async$returnValue = $async$self.super$Route$willPop(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$willPop$0, $async$completer); }, didPop$1(result) { var entry, _this = this, t1 = _this.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) { entry = t1.pop(); entry._routes$_owner = null; entry._notifyRemoved$0(); if (_this.LocalHistoryRoute__localHistory.length === 0) _this.changedInternalState$0(); return false; } _this.super$TransitionRoute$didPop(result); return true; } }; A.SafeArea.prototype = { build$1(_, context) { var _this = this, padding = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding, t1 = _this.minimum, t2 = Math.max(A.checkNum(padding.left), A.checkNum(t1.left)), t3 = _this.top, t4 = Math.max(A.checkNum(t3 ? padding.top : 0), A.checkNum(t1.top)), t5 = Math.max(A.checkNum(padding.right), A.checkNum(t1.right)), t6 = _this.bottom; return new A.Padding(new A.EdgeInsets(t2, t4, t5, Math.max(A.checkNum(t6 ? padding.bottom : 0), A.checkNum(t1.bottom))), A.MediaQuery_MediaQuery$removePadding(_this.child, context, t6, true, true, t3), null); } }; A.ScrollActivity.prototype = { resetActivity$0() { }, dispatchScrollStartNotification$2(metrics, context) { if (context != null) context.dispatchNotification$1(new A.ScrollStartNotification(null, metrics, context, 0)); }, dispatchScrollUpdateNotification$3(metrics, context, scrollDelta) { var t1 = A.ScrollUpdateNotification$(context, null, null, metrics, scrollDelta); if (context != null) context.dispatchNotification$1(t1); }, dispatchOverscrollNotification$3(metrics, context, overscroll) { if (context != null) context.dispatchNotification$1(new A.OverscrollNotification(null, overscroll, 0, metrics, context, 0)); }, dispatchScrollEndNotification$2(metrics, context) { if (context != null) context.dispatchNotification$1(new A.ScrollEndNotification(null, metrics, context, 0)); }, applyNewDimensions$0() { }, dispose$0(_) { }, toString$0(_) { return "#" + A.shortHash(this); } }; A.IdleScrollActivity.prototype = { applyNewDimensions$0() { this._delegate.goBallistic$1(0); }, get$shouldIgnorePointer() { return false; }, get$isScrolling() { return false; }, get$velocity() { return 0; } }; A.HoldScrollActivity.prototype = { get$shouldIgnorePointer() { return false; }, get$isScrolling() { return false; }, get$velocity() { return 0; }, dispose$0(_) { this.onHoldCanceled.call$0(); this.super$ScrollActivity$dispose(0); } }; A.ScrollDragController.prototype = { _adjustForScrollStartThreshold$2(offset, timestamp) { var t1, t2, _this = this; if (timestamp == null) return offset; if (offset === 0) { if (_this.motionStartDistanceThreshold != null) if (_this._offsetSinceLastStop == null) { t1 = _this._lastNonStationaryTimestamp; t1 = timestamp._duration - t1._duration > 50000; } else t1 = false; else t1 = false; if (t1) _this._offsetSinceLastStop = 0; return 0; } else { t1 = _this._offsetSinceLastStop; if (t1 == null) return offset; else { t1 += offset; _this._offsetSinceLastStop = t1; t2 = _this.motionStartDistanceThreshold; t2.toString; if (Math.abs(t1) > t2) { _this._offsetSinceLastStop = null; t1 = Math.abs(offset); if (t1 > 24) return offset; else return Math.min(t2 / 3, t1) * J.get$sign$in(offset); } else return 0; } } }, update$1(_, details) { var t1, t2, t3, offset, _this = this; _this._lastDetails = details; t1 = details.primaryDelta; t1.toString; t2 = t1 === 0; if (!t2) _this._lastNonStationaryTimestamp = details.sourceTimeStamp; t3 = details.sourceTimeStamp; if (_this._retainMomentum) if (t2) if (t3 != null) { t2 = _this._lastNonStationaryTimestamp; t2 = t3._duration - t2._duration > 20000; } else t2 = true; else t2 = false; else t2 = false; if (t2) _this._retainMomentum = false; offset = _this._adjustForScrollStartThreshold$2(t1, t3); if (offset === 0) return; t1 = _this._delegate; t1.applyUserOffset$1(A.axisDirectionIsReversed(t1.context._widget.axisDirection) ? -offset : offset); }, end$1(_, details) { var velocity, isVelocityNotSubstantiallyLessThanCarriedMomentum, _this = this, t1 = details.primaryVelocity; t1.toString; velocity = -t1; if (A.axisDirectionIsReversed(_this._delegate.context._widget.axisDirection)) velocity = -velocity; _this._lastDetails = details; if (_this._retainMomentum) { t1 = _this.carriedVelocity; isVelocityNotSubstantiallyLessThanCarriedMomentum = Math.abs(velocity) > Math.abs(t1) * 0.5; if (J.get$sign$in(velocity) === J.get$sign$in(t1) && isVelocityNotSubstantiallyLessThanCarriedMomentum) velocity += t1; } _this._delegate.goBallistic$1(velocity); }, cancel$0(_) { this._delegate.goBallistic$1(0); }, dispose$0(_) { this._lastDetails = null; this.onDragCanceled.call$0(); }, toString$0(_) { return "#" + A.shortHash(this); } }; A.DragScrollActivity.prototype = { dispatchScrollStartNotification$2(metrics, context) { var t1 = type$.DragStartDetails._as(this._scroll_activity$_controller._lastDetails); if (context != null) context.dispatchNotification$1(new A.ScrollStartNotification(t1, metrics, context, 0)); }, dispatchScrollUpdateNotification$3(metrics, context, scrollDelta) { var t1 = A.ScrollUpdateNotification$(context, null, type$.DragUpdateDetails._as(this._scroll_activity$_controller._lastDetails), metrics, scrollDelta); if (context != null) context.dispatchNotification$1(t1); }, dispatchOverscrollNotification$3(metrics, context, overscroll) { var t1 = type$.DragUpdateDetails._as(this._scroll_activity$_controller._lastDetails); if (context != null) context.dispatchNotification$1(new A.OverscrollNotification(t1, overscroll, 0, metrics, context, 0)); }, dispatchScrollEndNotification$2(metrics, context) { var lastDetails = this._scroll_activity$_controller._lastDetails, t1 = lastDetails instanceof A.DragEndDetails ? lastDetails : null; if (context != null) context.dispatchNotification$1(new A.ScrollEndNotification(t1, metrics, context, 0)); }, get$shouldIgnorePointer() { return true; }, get$isScrolling() { return true; }, get$velocity() { return 0; }, dispose$0(_) { this._scroll_activity$_controller = null; this.super$ScrollActivity$dispose(0); }, toString$0(_) { return "#" + A.shortHash(this) + "(" + A.S(this._scroll_activity$_controller) + ")"; } }; A.BallisticScrollActivity.prototype = { resetActivity$0() { this._delegate.goBallistic$1(A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").get$velocity()); }, applyNewDimensions$0() { this._delegate.goBallistic$1(A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").get$velocity()); }, _scroll_activity$_tick$0() { var t1 = A._lateReadCheck(A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").__AnimationController__value, "_value"); if (!(Math.abs(this._delegate.super$ScrollPosition$setPixels(t1)) < 1e-10)) { t1 = this._delegate; t1.beginActivity$1(new A.IdleScrollActivity(t1)); } }, _scroll_activity$_end$0() { this._delegate.goBallistic$1(0); }, dispatchOverscrollNotification$3(metrics, context, overscroll) { var t1 = A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").get$velocity(); if (context != null) context.dispatchNotification$1(new A.OverscrollNotification(null, overscroll, t1, metrics, context, 0)); }, get$shouldIgnorePointer() { return true; }, get$isScrolling() { return true; }, get$velocity() { return A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").get$velocity(); }, dispose$0(_) { A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller").dispose$0(0); this.super$ScrollActivity$dispose(0); }, toString$0(_) { return "#" + A.shortHash(this) + "(" + A.S(A._lateReadCheck(this.__BallisticScrollActivity__controller, "_controller")) + ")"; } }; A.DrivenScrollActivity.prototype = { _scroll_activity$_tick$0() { if (this._delegate.super$ScrollPosition$setPixels(A._lateReadCheck(A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller").__AnimationController__value, "_value")) !== 0) { var t1 = this._delegate; t1.beginActivity$1(new A.IdleScrollActivity(t1)); } }, _scroll_activity$_end$0() { this._delegate.goBallistic$1(A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller").get$velocity()); }, dispatchOverscrollNotification$3(metrics, context, overscroll) { var t1 = A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller").get$velocity(); if (context != null) context.dispatchNotification$1(new A.OverscrollNotification(null, overscroll, t1, metrics, context, 0)); }, get$shouldIgnorePointer() { return true; }, get$isScrolling() { return true; }, get$velocity() { return A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller").get$velocity(); }, dispose$0(_) { A._lateReadCheck(this.__DrivenScrollActivity__completer, "_completer").complete$0(0); A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller").dispose$0(0); this.super$ScrollActivity$dispose(0); }, toString$0(_) { return "#" + A.shortHash(this) + "(" + A.S(A._lateReadCheck(this.__DrivenScrollActivity__controller, "_controller")) + ")"; } }; A.ScrollAwareImageProvider.prototype = { resolveStreamForKey$4(configuration, stream, key, handleError) { var t1, _this = this; if (stream._image_stream$_completer != null || A._lateReadCheck($.PaintingBinding__instance.PaintingBinding___PaintingBinding__imageCache, "_imageCache").containsKey$1(0, key)) { _this.imageProvider.resolveStreamForKey$4(configuration, stream, key, handleError); return; } t1 = _this.context; if (t1.get$context(t1) == null) return; t1 = t1.get$context(t1); t1.toString; if (A.Scrollable_recommendDeferredLoadingForContext(t1)) { $.SchedulerBinding__instance.scheduleFrameCallback$1(new A.ScrollAwareImageProvider_resolveStreamForKey_closure(_this, configuration, stream, key, handleError)); return; } _this.imageProvider.resolveStreamForKey$4(configuration, stream, key, handleError); }, load$2(_, key, decode) { return this.imageProvider.load$2(0, key, decode); }, obtainKey$1(configuration) { return this.imageProvider.obtainKey$1(configuration); } }; A.ScrollAwareImageProvider_resolveStreamForKey_closure.prototype = { call$1(_) { var _this = this; A.scheduleMicrotask(new A.ScrollAwareImageProvider_resolveStreamForKey__closure(_this.$this, _this.configuration, _this.stream, _this.key, _this.handleError)); }, $signature: 22 }; A.ScrollAwareImageProvider_resolveStreamForKey__closure.prototype = { call$0() { var _this = this; return _this.$this.resolveStreamForKey$4(_this.configuration, _this.stream, _this.key, _this.handleError); }, $signature: 0 }; A.AndroidOverscrollIndicator.prototype = { toString$0(_) { return "AndroidOverscrollIndicator." + this._core$_name; } }; A.ScrollBehavior.prototype = { copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(androidOverscrollIndicator, dragDevices, overscroll, physics, platform, $scrollbars) { return new A._WrappedScrollBehavior(this, $scrollbars !== false, overscroll !== false, physics, platform, dragDevices, androidOverscrollIndicator); }, copyWith$2$overscroll$scrollbars(overscroll, $scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, overscroll, null, null, $scrollbars); }, copyWith$1$scrollbars($scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, null, null, null, $scrollbars); }, copyWith$4$overscroll$physics$platform$scrollbars(overscroll, physics, platform, $scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, overscroll, physics, platform, $scrollbars); }, copyWith$1$dragDevices(dragDevices) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, dragDevices, null, null, null, null); }, getPlatform$1(context) { return A.defaultTargetPlatform(); }, get$dragDevices() { return B.Set_icQTf; }, buildViewportChrome$3(context, child, axisDirection) { var target, _s80_ = string$.x60null_c; switch (this.getPlatform$1(context)) { case B.TargetPlatform_2: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: target = 1; break; case B.TargetPlatform_0: target = 2; break; case B.TargetPlatform_1: target = 3; break; default: target = 4; break; } c$0: for (; true;) switch (target) { case 1: return child; case 2: switch (1) { case 0: target = 1; break; case 1: target = 2; break; default: target = 3; break; } c$1: for (; true;) switch (target) { case 1: return new A.StretchingOverscrollIndicator(axisDirection, child, null); case 2: target = 3; continue c$0; case 3: throw A.wrapException(A.ReachabilityError$(_s80_)); } break c$0; case 3: return new A.GlowingOverscrollIndicator(axisDirection, B.Color_4294967295, child, null); case 4: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, buildScrollbar$3(context, child, details) { var _null = null; switch (this.getPlatform$1(context)) { case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return A.RawScrollbar$(child, details.controller, B.Duration_300000, _null, _null, _null, A.scroll_notification__defaultScrollNotificationPredicate$closure(), B.Duration_0, _null, _null, _null, _null, B.Duration_600000, _null); case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_2: return child; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, buildOverscrollIndicator$3(context, child, details) { return this.buildViewportChrome$3(context, child, details.direction); }, velocityTrackerBuilder$1(context) { switch (this.getPlatform$1(context)) { case B.TargetPlatform_2: case B.TargetPlatform_4: return new A.ScrollBehavior_velocityTrackerBuilder_closure(); case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return new A.ScrollBehavior_velocityTrackerBuilder_closure0(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getScrollPhysics$1(context) { switch (this.getPlatform$1(context)) { case B.TargetPlatform_2: case B.TargetPlatform_4: return B.BouncingScrollPhysics_MuS; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: return B.ClampingScrollPhysics_KYr; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, shouldNotify$1(oldDelegate) { return false; }, toString$0(_) { return "ScrollBehavior"; } }; A.ScrollBehavior_velocityTrackerBuilder_closure.prototype = { call$1($event) { var t1 = $event.get$kind($event), t2 = type$.nullable__PointAtTime; return new A.IOSScrollViewFlingVelocityTracker(A.List_List$filled(20, null, false, t2), t1, A.List_List$filled(20, null, false, t2)); }, $signature: 1480 }; A.ScrollBehavior_velocityTrackerBuilder_closure0.prototype = { call$1($event) { return new A.VelocityTracker($event.get$kind($event), A.List_List$filled(20, null, false, type$.nullable__PointAtTime)); }, $signature: 593 }; A._WrappedScrollBehavior.prototype = { get$dragDevices() { var t1 = this._dragDevices; return t1 == null ? this.delegate.get$dragDevices() : t1; }, buildOverscrollIndicator$3(context, child, details) { if (this.overscroll) return this.delegate.buildOverscrollIndicator$3(context, child, details); return child; }, buildScrollbar$3(context, child, details) { if (this.scrollbars) return this.delegate.buildScrollbar$3(context, child, details); return child; }, copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(androidOverscrollIndicator, dragDevices, overscroll, physics, platform, $scrollbars) { var _this = this, t1 = $scrollbars == null ? _this.scrollbars : $scrollbars, t2 = overscroll == null ? _this.overscroll : overscroll, t3 = physics == null ? _this.physics : physics, t4 = platform == null ? _this.platform : platform, t5 = dragDevices == null ? _this.get$dragDevices() : dragDevices, t6 = _this._androidOverscrollIndicator; if (t6 == null) t6 = B.AndroidOverscrollIndicator_1; return _this.delegate.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(t6, t5, t2, t3, t4, t1); }, copyWith$2$overscroll$scrollbars(overscroll, $scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, overscroll, null, null, $scrollbars); }, copyWith$1$scrollbars($scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, null, null, null, $scrollbars); }, copyWith$4$overscroll$physics$platform$scrollbars(overscroll, physics, platform, $scrollbars) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, null, overscroll, physics, platform, $scrollbars); }, copyWith$1$dragDevices(dragDevices) { return this.copyWith$6$androidOverscrollIndicator$dragDevices$overscroll$physics$platform$scrollbars(null, dragDevices, null, null, null, null); }, getPlatform$1(context) { var t1 = this.platform; return t1 == null ? this.delegate.getPlatform$1(context) : t1; }, getScrollPhysics$1(context) { var t1 = this.physics; return t1 == null ? this.delegate.getScrollPhysics$1(context) : t1; }, shouldNotify$1(oldDelegate) { var _this = this; return A.getRuntimeType(oldDelegate.delegate) !== A.getRuntimeType(_this.delegate) || oldDelegate.scrollbars !== _this.scrollbars || oldDelegate.overscroll !== _this.overscroll || oldDelegate.physics != _this.physics || oldDelegate.platform != _this.platform || A.setEquals(oldDelegate.get$dragDevices(), _this.get$dragDevices()) || false; }, velocityTrackerBuilder$1(context) { return this.delegate.velocityTrackerBuilder$1(context); }, toString$0(_) { return "_WrappedScrollBehavior"; } }; A.ScrollConfiguration.prototype = { updateShouldNotify$1(oldWidget) { var t1 = this.behavior, t2 = A.getRuntimeType(t1), t3 = oldWidget.behavior; if (t2 === A.getRuntimeType(t3)) t1 = t1 !== t3 && t1.shouldNotify$1(t3); else t1 = true; return t1; } }; A.ScrollController.prototype = { get$position(_) { return B.JSArray_methods.get$single(this._positions); }, animateTo$3$curve$duration(offset, curve, duration) { return this.animateTo$body$ScrollController(offset, curve, duration); }, animateTo$body$ScrollController(offset, curve, duration) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t2, i, t1; var $async$animateTo$3$curve$duration = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._setArrayType([], type$.JSArray_Future_void); for (t2 = $async$self._positions, i = 0; i < t2.length; ++i) t1.push(t2[i].animateTo$3$curve$duration(offset, curve, duration)); $async$goto = 2; return A._asyncAwait(A.Future_wait(t1, type$.void), $async$animateTo$3$curve$duration); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$animateTo$3$curve$duration, $async$completer); }, jumpTo$1(value) { var t1, t2, _i; for (t1 = A.List_List$of(this._positions, true, type$.ScrollPosition), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].jumpTo$1(value); }, attach$1(position) { this._positions.push(position); position.addListener$1(0, this.get$notifyListeners()); }, detach$1(_, position) { position.removeListener$1(0, this.get$notifyListeners()); B.JSArray_methods.remove$1(this._positions, position); }, dispose$0(_) { var t1, t2, t3, _i; for (t1 = this._positions, t2 = t1.length, t3 = this.get$notifyListeners(), _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].removeListener$1(0, t3); this.super$ChangeNotifier$dispose(0); }, createScrollPosition$3(physics, context, oldPosition) { return A.ScrollPositionWithSingleContext$(context, this.debugLabel, this._initialScrollOffset, true, oldPosition, physics); }, toString$0(_) { var description = A._setArrayType([], type$.JSArray_String); this.debugFillDescription$1(description); return "#" + A.shortHash(this) + "(" + B.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1(description) { var _this = this, t1 = _this._initialScrollOffset; if (t1 !== 0) description.push("initialScrollOffset: " + B.JSNumber_methods.toStringAsFixed$1(t1, 1) + ", "); t1 = _this._positions.length; if (t1 === 0) description.push("no clients"); else if (t1 === 1) { t1 = _this.get$position(_this)._pixels; t1.toString; description.push("one client, offset " + B.JSNumber_methods.toStringAsFixed$1(t1, 1)); } else description.push("" + t1 + " clients"); } }; A.ScrollMetrics.prototype = { copyWith$0() { var _this = this, _null = null, t1 = _this.get$hasContentDimensions() ? _this.get$minScrollExtent() : _null, t2 = _this.get$hasContentDimensions() ? _this.get$maxScrollExtent() : _null, t3 = _this.get$hasPixels() ? _this.get$pixels() : _null, t4 = _this.get$hasViewportDimension() ? _this.get$viewportDimension() : _null, t5 = _this.get$axisDirection(); return new A.FixedScrollMetrics(t1, t2, t3, t4, t5); }, get$outOfRange() { var _this = this; return _this.get$pixels() < _this.get$minScrollExtent() || _this.get$pixels() > _this.get$maxScrollExtent(); }, get$atEdge() { var _this = this; return _this.get$pixels() == _this.get$minScrollExtent() || _this.get$pixels() == _this.get$maxScrollExtent(); }, get$extentInside() { var _this = this; return _this.get$viewportDimension() - B.JSNumber_methods.clamp$2(_this.get$minScrollExtent() - _this.get$pixels(), 0, _this.get$viewportDimension()) - B.JSNumber_methods.clamp$2(_this.get$pixels() - _this.get$maxScrollExtent(), 0, _this.get$viewportDimension()); } }; A.FixedScrollMetrics.prototype = { get$minScrollExtent() { var t1 = this._scroll_metrics$_minScrollExtent; t1.toString; return t1; }, get$maxScrollExtent() { var t1 = this._scroll_metrics$_maxScrollExtent; t1.toString; return t1; }, get$hasContentDimensions() { return this._scroll_metrics$_minScrollExtent != null && this._scroll_metrics$_maxScrollExtent != null; }, get$pixels() { var t1 = this._scroll_metrics$_pixels; t1.toString; return t1; }, get$hasPixels() { return this._scroll_metrics$_pixels != null; }, get$viewportDimension() { var t1 = this._scroll_metrics$_viewportDimension; t1.toString; return t1; }, get$hasViewportDimension() { return this._scroll_metrics$_viewportDimension != null; }, toString$0(_) { var _this = this; return "FixedScrollMetrics(" + B.JSNumber_methods.toStringAsFixed$1(Math.max(_this.get$pixels() - _this.get$minScrollExtent(), 0), 1) + "..[" + B.JSNumber_methods.toStringAsFixed$1(_this.get$extentInside(), 1) + "].." + B.JSNumber_methods.toStringAsFixed$1(Math.max(_this.get$maxScrollExtent() - _this.get$pixels(), 0), 1) + ")"; }, get$axisDirection() { return this.axisDirection; } }; A._FixedScrollMetrics_Object_ScrollMetrics.prototype = {}; A.ViewportNotificationMixin.prototype = {}; A.ViewportElementMixin.prototype = { onNotification$1(notification) { if (type$.ViewportNotificationMixin._is(notification)) ++notification.ViewportNotificationMixin__depth; return false; } }; A.ScrollNotification.prototype = { debugFillDescription$1(description) { this.super$_ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin$debugFillDescription(description); description.push(this.metrics.toString$0(0)); } }; A.ScrollStartNotification.prototype = { debugFillDescription$1(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); } }; A.ScrollUpdateNotification.prototype = { debugFillDescription$1(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); description.push("scrollDelta: " + A.S(this.scrollDelta)); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); }, get$dragDetails() { return this.dragDetails; } }; A.OverscrollNotification.prototype = { debugFillDescription$1(description) { var t1, _this = this; _this.super$ScrollNotification$debugFillDescription(description); description.push("overscroll: " + B.JSNumber_methods.toStringAsFixed$1(_this.overscroll, 1)); description.push("velocity: " + B.JSNumber_methods.toStringAsFixed$1(_this.velocity, 1)); t1 = _this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); } }; A.ScrollEndNotification.prototype = { debugFillDescription$1(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); }, get$dragDetails() { return this.dragDetails; } }; A.UserScrollNotification.prototype = { debugFillDescription$1(description) { this.super$ScrollNotification$debugFillDescription(description); description.push("direction: " + this.direction.toString$0(0)); } }; A._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin.prototype = { debugFillDescription$1(description) { var t1, t2; this.super$Notification$debugFillDescription(description); t1 = this.ViewportNotificationMixin__depth; t2 = t1 === 0 ? "local" : "remote"; description.push("depth: " + t1 + " (" + t2 + ")"); } }; A._ScrollNotificationObserverScope.prototype = { updateShouldNotify$1(old) { return this._scrollNotificationObserverState !== old._scrollNotificationObserverState; } }; A._ListenerEntry.prototype = { listener$1($receiver, arg0) { return this.listener.call$1(arg0); } }; A.ScrollNotificationObserver.prototype = { createState$0() { return new A.ScrollNotificationObserverState(new A.LinkedList(type$.LinkedList__ListenerEntry), B._StateLifecycle_0); } }; A.ScrollNotificationObserverState.prototype = { addListener$1(_, listener) { var t1 = this._scroll_notification_observer$_listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new A._ListenerEntry(listener), false); }, removeListener$1(_, listener) { var entry, t2, t3, t1 = this._scroll_notification_observer$_listeners; t1.toString; t1 = A._LinkedListIterator$(t1, t1.$ti._precomputed1); for (; t1.moveNext$0();) { entry = t1._collection$_current; if (J.$eq$(entry.listener, listener)) { t1 = entry._collection$_list; t1.toString; A._instanceType(entry)._eval$1("LinkedListEntry.E")._as(entry); ++t1._modificationCount; t2 = entry._collection$_next; t2._collection$_previous = entry._collection$_previous; entry._collection$_previous._collection$_next = t2; t3 = --t1._collection$_length; entry._collection$_list = entry._collection$_next = entry._collection$_previous = null; if (t3 === 0) t1._collection$_first = null; else if (entry === t1._collection$_first) t1._collection$_first = t2; return; } } }, _scroll_notification_observer$_notifyListeners$1(notification) { var entry, exception, stack, localListeners, _i, exception0, rti, t2, t3, _this = this, t1 = _this._scroll_notification_observer$_listeners; if (t1._collection$_length === 0) return; localListeners = A.List_List$of(t1, true, type$._ListenerEntry); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { entry = localListeners[_i]; try { if (entry._collection$_list != null) J.listener$1$z(entry, notification); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); rti = _this instanceof A.Closure ? A.closureFunctionType(_this) : null; t2 = A.ErrorDescription$("while dispatching notifications for " + A.createRuntimeType(rti == null ? A.instanceType(_this) : rti).toString$0(0)); t3 = $.$get$FlutterError_onError(); if (t3 != null) t3.call$1(new A.FlutterErrorDetails(exception, stack, "widget library", t2, null, new A.ScrollNotificationObserverState__notifyListeners_closure(_this), false)); } } }, build$1(_, context) { return new A.NotificationListener(new A.ScrollNotificationObserverState_build_closure(this), new A._ScrollNotificationObserverScope(this, this._widget.child, null), null, type$.NotificationListener_ScrollNotification); }, dispose$0(_) { this._scroll_notification_observer$_listeners = null; this.super$State$dispose(0); } }; A.ScrollNotificationObserverState__notifyListeners_closure.prototype = { call$0() { var _null = null, t1 = this.$this; return A._setArrayType([A.DiagnosticsProperty$("The " + A.getRuntimeType(t1).toString$0(0) + " sending notification was", t1, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.ScrollNotificationObserverState)], type$.JSArray_DiagnosticsNode); }, $signature: 138 }; A.ScrollNotificationObserverState_build_closure.prototype = { call$1(notification) { this.$this._scroll_notification_observer$_notifyListeners$1(notification); return false; }, $signature: 162 }; A.ScrollPhysics.prototype = { buildParent$1(ancestor) { var t1 = this.parent; t1 = t1 == null ? null : t1.applyTo$1(ancestor); return t1 == null ? ancestor : t1; }, applyTo$1(ancestor) { return new A.ScrollPhysics(this.buildParent$1(ancestor)); }, applyPhysicsToUserOffset$2(position, offset) { var t1 = this.parent; if (t1 == null) return offset; return t1.applyPhysicsToUserOffset$2(position, offset); }, shouldAcceptUserOffset$1(position) { var t2, t1 = this.parent; if (t1 == null) { t1 = position._pixels; t1.toString; if (t1 === 0) { t1 = position._minScrollExtent; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 !== t2; t1 = t2; } else t1 = true; return t1; } return t1.shouldAcceptUserOffset$1(position); }, recommendDeferredLoading$3(velocity, metrics, context) { var t1 = this.parent; if (t1 == null) { $.WidgetsBinding__instance.toString; return Math.abs(velocity) > $.$get$window().get$physicalSize().get$longestSide(); } return t1.recommendDeferredLoading$3(velocity, metrics, context); }, applyBoundaryConditions$2(position, value) { var t1 = this.parent; if (t1 == null) return 0; return t1.applyBoundaryConditions$2(position, value); }, adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(isScrolling, newPosition, oldPosition, velocity) { var t1 = this.parent; if (t1 == null) { t1 = newPosition._scroll_metrics$_pixels; t1.toString; return t1; } return t1.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(isScrolling, newPosition, oldPosition, velocity); }, createBallisticSimulation$2(position, velocity) { var t1 = this.parent; if (t1 == null) return null; return t1.createBallisticSimulation$2(position, velocity); }, get$spring() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$spring(); return t1 == null ? $.$get$ScrollPhysics__kDefaultSpring() : t1; }, get$tolerance() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$tolerance(); return t1 == null ? $.$get$ScrollPhysics__kDefaultTolerance() : t1; }, get$minFlingDistance() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$minFlingDistance(); return t1 == null ? 18 : t1; }, get$minFlingVelocity() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$minFlingVelocity(); return t1 == null ? 50 : t1; }, get$maxFlingVelocity() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$maxFlingVelocity(); return t1 == null ? 8000 : t1; }, carriedMomentum$1(existingVelocity) { var t1 = this.parent; if (t1 == null) return 0; return t1.carriedMomentum$1(existingVelocity); }, get$dragStartDistanceMotionThreshold() { var t1 = this.parent; return t1 == null ? null : t1.get$dragStartDistanceMotionThreshold(); }, get$allowImplicitScrolling() { return true; }, toString$0(_) { var t1 = this.parent; if (t1 == null) return "ScrollPhysics"; return "ScrollPhysics -> " + t1.toString$0(0); } }; A.RangeMaintainingScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.RangeMaintainingScrollPhysics(this.buildParent$1(ancestor)); }, adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(isScrolling, newPosition, oldPosition, velocity) { var maintainOverscroll, enforceBoundary, t1, t2, t3, t4, t5, result; if (velocity !== 0) { maintainOverscroll = false; enforceBoundary = false; } else { maintainOverscroll = true; enforceBoundary = true; } t1 = oldPosition._scroll_metrics$_minScrollExtent; t1.toString; t2 = newPosition._scroll_metrics$_minScrollExtent; t2.toString; if (t1 === t2) { t3 = oldPosition._scroll_metrics$_maxScrollExtent; t3.toString; t4 = newPosition._scroll_metrics$_maxScrollExtent; t4.toString; t4 = t3 === t4; t3 = t4; } else t3 = false; if (t3) maintainOverscroll = false; t3 = oldPosition._scroll_metrics$_pixels; t3.toString; t4 = newPosition._scroll_metrics$_pixels; t4.toString; if (t3 !== t4) { if (isFinite(t1)) { t4 = oldPosition._scroll_metrics$_maxScrollExtent; t4.toString; if (isFinite(t4)) if (isFinite(t2)) { t4 = newPosition._scroll_metrics$_maxScrollExtent; t4.toString; t4 = isFinite(t4); } else t4 = false; else t4 = false; } else t4 = false; if (t4) enforceBoundary = false; maintainOverscroll = false; } t4 = t3 < t1; if (!t4) { t5 = oldPosition._scroll_metrics$_maxScrollExtent; t5.toString; t5 = t3 > t5; } else t5 = true; if (t5) enforceBoundary = false; if (maintainOverscroll) { if (t4 && t2 > t1) return t2 - (t1 - t3); t1 = oldPosition._scroll_metrics$_maxScrollExtent; t1.toString; if (t3 > t1) { t4 = newPosition._scroll_metrics$_maxScrollExtent; t4.toString; t4 = t4 < t1; } else t4 = false; if (t4) { t2 = newPosition._scroll_metrics$_maxScrollExtent; t2.toString; return t2 + (t3 - t1); } } result = this.super$ScrollPhysics$adjustPositionForNewDimensions(isScrolling, newPosition, oldPosition, velocity); if (enforceBoundary) { t1 = newPosition._scroll_metrics$_maxScrollExtent; t1.toString; result = J.clamp$2$n(result, t2, t1); } return result; } }; A.BouncingScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.BouncingScrollPhysics(this.buildParent$1(ancestor)); }, applyPhysicsToUserOffset$2(position, offset) { var t1, t2, overscrollPastStart, overscrollPastEnd, overscrollPast, easing, friction; if (!position.get$outOfRange()) return offset; t1 = position._minScrollExtent; t1.toString; t2 = position._pixels; t2.toString; overscrollPastStart = Math.max(t1 - t2, 0); t1 = position._maxScrollExtent; t1.toString; overscrollPastEnd = Math.max(t2 - t1, 0); overscrollPast = Math.max(overscrollPastStart, overscrollPastEnd); if (!(overscrollPastStart > 0 && offset < 0)) easing = overscrollPastEnd > 0 && offset > 0; else easing = true; t1 = position._viewportDimension; if (easing) { t1.toString; friction = 0.52 * Math.pow(1 - (overscrollPast - Math.abs(offset)) / t1, 2); } else { t1.toString; friction = 0.52 * Math.pow(1 - overscrollPast / t1, 2); } return J.get$sign$in(offset) * A.BouncingScrollPhysics__applyFriction(overscrollPast, Math.abs(offset), friction); }, applyBoundaryConditions$2(position, value) { return 0; }, createBallisticSimulation$2(position, velocity) { var t1, t2, t3, t4, t5, finalX, t6, _s19_ = "_frictionSimulation", _s11_ = "_springTime", tolerance = this.get$tolerance(); if (Math.abs(velocity) >= tolerance.velocity || position.get$outOfRange()) { t1 = this.get$spring(); t2 = position._pixels; t2.toString; t3 = position._minScrollExtent; t3.toString; t4 = position._maxScrollExtent; t4.toString; t5 = new A.BouncingScrollSimulation(t3, t4, t1, tolerance); if (t2 < t3) { t5.__BouncingScrollSimulation__springSimulation = new A.ScrollSpringSimulation(t3, A._SpringSolution__SpringSolution(t1, t2 - t3, velocity), B.Tolerance_Gdw); t5.__BouncingScrollSimulation__springTime = -1 / 0; } else if (t2 > t4) { t5.__BouncingScrollSimulation__springSimulation = new A.ScrollSpringSimulation(t4, A._SpringSolution__SpringSolution(t1, t2 - t4, velocity), B.Tolerance_Gdw); t5.__BouncingScrollSimulation__springTime = -1 / 0; } else { t2 = t5.__BouncingScrollSimulation__frictionSimulation = new A.FrictionSimulation(0.135, Math.log(0.135), t2, velocity, B.Tolerance_Gdw); finalX = A._lateReadCheck(t2, _s19_).get$finalX(); if (velocity > 0 && finalX > t4) { t3 = A._lateReadCheck(t2, _s19_).timeAtX$1(t4); t5.__BouncingScrollSimulation__springTime = t3; t2 = A._lateReadCheck(t2, _s19_); t3 = A._lateReadCheck(t3, _s11_); t6 = t2._v; t2 = t2._drag; A.checkNum(t3); t5.__BouncingScrollSimulation__springSimulation = new A.ScrollSpringSimulation(t4, A._SpringSolution__SpringSolution(t1, t4 - t4, Math.min(t6 * Math.pow(t2, t3), 5000)), B.Tolerance_Gdw); } else if (velocity < 0 && finalX < t3) { t4 = A._lateReadCheck(t2, _s19_).timeAtX$1(t3); t5.__BouncingScrollSimulation__springTime = t4; t2 = A._lateReadCheck(t2, _s19_); t4 = A._lateReadCheck(t4, _s11_); t6 = t2._v; t2 = t2._drag; A.checkNum(t4); t5.__BouncingScrollSimulation__springSimulation = new A.ScrollSpringSimulation(t3, A._SpringSolution__SpringSolution(t1, t3 - t3, Math.min(t6 * Math.pow(t2, t4), 5000)), B.Tolerance_Gdw); } else t5.__BouncingScrollSimulation__springTime = 1 / 0; } return t5; } return null; }, get$minFlingVelocity() { return 100; }, carriedMomentum$1(existingVelocity) { return J.get$sign$in(existingVelocity) * Math.min(0.000816 * Math.pow(Math.abs(existingVelocity), 1.967), 40000); }, get$dragStartDistanceMotionThreshold() { return 3.5; } }; A.ClampingScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.ClampingScrollPhysics(this.buildParent$1(ancestor)); }, applyBoundaryConditions$2(position, value) { var t2, t3, t1 = position._pixels; t1.toString; if (value < t1) { t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; } else t2 = false; if (t2) return value - t1; t2 = position._maxScrollExtent; t2.toString; if (t2 <= t1 && t1 < value) return value - t1; t3 = position._minScrollExtent; t3.toString; if (value < t3 && t3 < t1) return value - t3; if (t1 < t2 && t2 < value) return value - t2; return 0; }, createBallisticSimulation$2(position, velocity) { var t1, t2, end, _null = null, tolerance = this.get$tolerance(); if (position.get$outOfRange()) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; if (t1 > t2) end = t2; else end = _null; t2 = position._minScrollExtent; t2.toString; if (t1 < t2) end = t2; t1 = this.get$spring(); t2 = position._pixels; t2.toString; end.toString; return new A.ScrollSpringSimulation(end, A._SpringSolution__SpringSolution(t1, t2 - end, Math.min(0, velocity)), tolerance); } if (Math.abs(velocity) < tolerance.velocity) return _null; if (velocity > 0) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 >= t2; t1 = t2; } else t1 = false; if (t1) return _null; if (velocity < 0) { t1 = position._pixels; t1.toString; t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; t1 = t2; } else t1 = false; if (t1) return _null; t1 = position._pixels; t1.toString; return A.ClampingScrollSimulation$(t1, tolerance, velocity); } }; A.AlwaysScrollableScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.AlwaysScrollableScrollPhysics(this.buildParent$1(ancestor)); }, shouldAcceptUserOffset$1(position) { return true; } }; A.NeverScrollableScrollPhysics.prototype = { applyTo$1(ancestor) { return new A.NeverScrollableScrollPhysics(this.buildParent$1(ancestor)); }, shouldAcceptUserOffset$1(position) { return false; }, get$allowImplicitScrolling() { return false; } }; A.ScrollPositionAlignmentPolicy.prototype = { toString$0(_) { return "ScrollPositionAlignmentPolicy." + this._core$_name; } }; A.ScrollPosition.prototype = { ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, debugLabel, keepScrollOffset, oldPosition, physics) { if (oldPosition != null) this.absorb$1(oldPosition); this.restoreScrollOffset$0(); }, get$minScrollExtent() { var t1 = this._minScrollExtent; t1.toString; return t1; }, get$maxScrollExtent() { var t1 = this._maxScrollExtent; t1.toString; return t1; }, get$hasContentDimensions() { return this._minScrollExtent != null && this._maxScrollExtent != null; }, get$pixels() { var t1 = this._pixels; t1.toString; return t1; }, get$hasPixels() { return this._pixels != null; }, get$viewportDimension() { var t1 = this._viewportDimension; t1.toString; return t1; }, get$hasViewportDimension() { return this._viewportDimension != null; }, absorb$1(other) { var _this = this, t1 = other._minScrollExtent; if (t1 != null && other._maxScrollExtent != null) { t1.toString; _this._minScrollExtent = t1; t1 = other._maxScrollExtent; t1.toString; _this._maxScrollExtent = t1; } t1 = other._pixels; if (t1 != null) _this._pixels = t1; t1 = other._viewportDimension; if (t1 != null) _this._viewportDimension = t1; _this._activity = other._activity; other._activity = null; if (A.getRuntimeType(other) !== A.getRuntimeType(_this)) _this._activity.resetActivity$0(); _this.context.setIgnorePointer$1(_this._activity.get$shouldIgnorePointer()); _this.isScrollingNotifier.set$value(0, _this._activity.get$isScrolling()); }, setPixels$1(newPixels) { var result, t2, t3, _this = this, t1 = _this._pixels; t1.toString; if (newPixels !== t1) { result = _this.physics.applyBoundaryConditions$2(_this, newPixels); t1 = _this._pixels; t1.toString; t2 = newPixels - result; _this._pixels = t2; if (t2 !== t1) { _this._updateSemanticActions$0(); _this.super$ChangeNotifier$notifyListeners(); t2 = _this._pixels; t2.toString; _this.didUpdateScrollPositionBy$1(t2 - t1); } if (result !== 0) { t1 = _this._activity; t1.toString; t2 = _this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t3.toString; t1.dispatchOverscrollNotification$3(t2, t3, result); return result; } } return 0; }, correctBy$1(correction) { var t1 = this._pixels; t1.toString; this._pixels = t1 + correction; this._didChangeViewportDimensionOrReceiveCorrection = true; }, forcePixels$1(value) { var _this = this, t1 = _this._pixels; t1.toString; _this._impliedVelocity = value - t1; _this._pixels = value; _this._updateSemanticActions$0(); _this.super$ChangeNotifier$notifyListeners(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ScrollPosition_forcePixels_closure(_this)); }, saveScrollOffset$0() { var t3, t1 = this.context, t2 = t1._framework$_element; t2.toString; t2 = A.PageStorage_of(t2); if (t2 != null) { t1 = t1._framework$_element; t1.toString; t3 = this._pixels; t3.toString; t2.writeState$2(t1, t3); } }, restoreScrollOffset$0() { var t1, t2, value; if (this._pixels == null) { t1 = this.context; t2 = t1._framework$_element; t2.toString; t2 = A.PageStorage_of(t2); if (t2 == null) value = null; else { t1 = t1._framework$_element; t1.toString; value = t2.readState$1(t1); } if (value != null) this._pixels = value; } }, restoreOffset$2$initialRestore(offset, initialRestore) { if (initialRestore) this._pixels = offset; else this.jumpTo$1(offset); }, saveOffset$0() { var t1 = this._pixels; t1.toString; this.context._persistedScrollOffset.set$value(0, t1); A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__restorationManager, "_restorationManager").flushData$0(); }, applyViewportDimension$1(viewportDimension) { if (this._viewportDimension != viewportDimension) { this._viewportDimension = viewportDimension; this._didChangeViewportDimensionOrReceiveCorrection = true; } return true; }, applyContentDimensions$2(minScrollExtent, maxScrollExtent) { var currentMetrics, t1, t2, _this = this; if (!A.nearEqual(_this._minScrollExtent, minScrollExtent, 0.001) || !A.nearEqual(_this._maxScrollExtent, maxScrollExtent, 0.001) || _this._didChangeViewportDimensionOrReceiveCorrection || _this._lastAxis !== A.axisDirectionToAxis(_this.get$axisDirection())) { _this._minScrollExtent = minScrollExtent; _this._maxScrollExtent = maxScrollExtent; _this._lastAxis = A.axisDirectionToAxis(_this.get$axisDirection()); currentMetrics = _this._haveDimensions ? _this.copyWith$0() : null; _this._didChangeViewportDimensionOrReceiveCorrection = false; _this._pendingDimensions = true; if (_this._haveDimensions) { t1 = _this._scroll_position$_lastMetrics; t1.toString; currentMetrics.toString; t1 = !_this.correctForNewDimensions$2(t1, currentMetrics); } else t1 = false; if (t1) return false; _this._haveDimensions = true; } if (_this._pendingDimensions) { _this.super$ScrollPosition$applyNewDimensions(); _this.context.setCanDrag$1(_this.physics.shouldAcceptUserOffset$1(_this)); _this._pendingDimensions = false; } currentMetrics = _this.copyWith$0(); if (_this._scroll_position$_lastMetrics != null) { t1 = Math.max(currentMetrics.get$pixels() - currentMetrics.get$minScrollExtent(), 0); t2 = _this._scroll_position$_lastMetrics; if (t1 === Math.max(t2.get$pixels() - t2.get$minScrollExtent(), 0)) if (currentMetrics.get$extentInside() === _this._scroll_position$_lastMetrics.get$extentInside()) { t1 = Math.max(currentMetrics.get$maxScrollExtent() - currentMetrics.get$pixels(), 0); t2 = _this._scroll_position$_lastMetrics; t1 = t1 === Math.max(t2.get$maxScrollExtent() - t2.get$pixels(), 0) && currentMetrics.axisDirection === _this._scroll_position$_lastMetrics.axisDirection; } else t1 = false; else t1 = false; t1 = !t1; } else t1 = true; if (t1) { if (!_this._haveScheduledUpdateNotification) { A.scheduleMicrotask(_this.get$didUpdateScrollMetrics()); _this._haveScheduledUpdateNotification = true; } _this._scroll_position$_lastMetrics = _this.copyWith$0(); } return true; }, correctForNewDimensions$2(oldPosition, newPosition) { var _this = this, newPixels = _this.physics.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(_this._activity.get$isScrolling(), newPosition, oldPosition, _this._activity.get$velocity()), t1 = _this._pixels; t1.toString; if (newPixels !== t1) { _this._pixels = newPixels; return false; } return true; }, applyNewDimensions$0() { this._activity.applyNewDimensions$0(); this._updateSemanticActions$0(); }, _updateSemanticActions$0() { var $forward, backward, actions, t2, t3, _this = this, t1 = _this.context; switch (t1._widget.axisDirection.index) { case 0: $forward = B.SemanticsAction_32; backward = B.SemanticsAction_16; break; case 1: $forward = B.SemanticsAction_4; backward = B.SemanticsAction_8; break; case 2: $forward = B.SemanticsAction_16; backward = B.SemanticsAction_32; break; case 3: $forward = B.SemanticsAction_8; backward = B.SemanticsAction_4; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } actions = A.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsAction); t2 = _this._pixels; t2.toString; t3 = _this._minScrollExtent; t3.toString; if (t2 > t3) actions.add$1(0, backward); t2 = _this._pixels; t2.toString; t3 = _this._maxScrollExtent; t3.toString; if (t2 < t3) actions.add$1(0, $forward); if (A.setEquals(actions, _this._semanticActions)) return; _this._semanticActions = actions; t1 = t1._gestureDetectorKey; if (t1.get$currentState() != null) t1.get$currentState().replaceSemanticsActions$1(actions); }, ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject(object, alignment, alignmentPolicy, curve, duration, targetRenderObject) { var targetRect, t2, t3, target, _this = this, t1 = A.RenderAbstractViewport_of(object); t1.toString; targetRect = targetRenderObject != null && targetRenderObject !== object ? A.MatrixUtils_transformRect(targetRenderObject.getTransformTo$1(0, object), object.get$paintBounds().intersect$1(targetRenderObject.get$paintBounds())) : null; switch (alignmentPolicy.index) { case 0: t1 = t1.getOffsetToReveal$3$rect(object, alignment, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); break; case 1: t1 = t1.getOffsetToReveal$3$rect(object, 1, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); t1 = _this._pixels; t1.toString; if (target < t1) target = t1; break; case 2: t1 = t1.getOffsetToReveal$3$rect(object, 0, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); t1 = _this._pixels; t1.toString; if (target > t1) target = t1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this._pixels; t1.toString; if (target === t1) return A.Future_Future$value(null, type$.void); if (duration._duration === 0) { _this.jumpTo$1(target); return A.Future_Future$value(null, type$.void); } return _this.animateTo$3$curve$duration(target, curve, duration); }, moveTo$3$curve$duration(_, to, curve, duration) { var t2, t1 = this._minScrollExtent; t1.toString; t2 = this._maxScrollExtent; t2.toString; to = J.clamp$2$n(to, t1, t2); return this.super$ViewportOffset$moveTo(0, to, curve, duration); }, beginActivity$1(newActivity) { var oldIgnorePointer, wasScrolling, _this = this, t1 = _this._activity; if (t1 != null) { oldIgnorePointer = t1.get$shouldIgnorePointer(); wasScrolling = _this._activity.get$isScrolling(); if (wasScrolling && !newActivity.get$isScrolling()) _this.didEndScroll$0(); _this._activity.dispose$0(0); } else { wasScrolling = false; oldIgnorePointer = false; } _this._activity = newActivity; if (oldIgnorePointer !== newActivity.get$shouldIgnorePointer()) _this.context.setIgnorePointer$1(_this._activity.get$shouldIgnorePointer()); _this.isScrollingNotifier.set$value(0, _this._activity.get$isScrolling()); if (!wasScrolling && _this._activity.get$isScrolling()) _this.didStartScroll$0(); }, didStartScroll$0() { var t1 = this._activity; t1.toString; t1.dispatchScrollStartNotification$2(this.copyWith$0(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.context._gestureDetectorKey)); }, didUpdateScrollPositionBy$1(delta) { var t2, t3, t1 = this._activity; t1.toString; t2 = this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.context._gestureDetectorKey); t3.toString; t1.dispatchScrollUpdateNotification$3(t2, t3, delta); }, didEndScroll$0() { var t2, t3, _this = this, t1 = _this._activity; t1.toString; t2 = _this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t3.toString; t1.dispatchScrollEndNotification$2(t2, t3); _this.saveOffset$0(); _this.saveScrollOffset$0(); }, didUpdateScrollMetrics$0() { var t1, t2, t3; this._haveScheduledUpdateNotification = false; t1 = this.context._gestureDetectorKey; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1) != null) { t2 = this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t3.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); if (t1 != null) t1.dispatchNotification$1(new A.ScrollMetricsNotification(t2, t3, 0)); } }, dispose$0(_) { var t1 = this._activity; if (t1 != null) t1.dispose$0(0); this._activity = null; this.super$ChangeNotifier$dispose(0); }, debugFillDescription$1(description) { var t1, t2, _this = this; _this.super$ViewportOffset$debugFillDescription(description); t1 = _this._minScrollExtent; t1 = t1 == null ? null : B.JSNumber_methods.toStringAsFixed$1(t1, 1); t2 = _this._maxScrollExtent; t2 = t2 == null ? null : B.JSNumber_methods.toStringAsFixed$1(t2, 1); description.push("range: " + A.S(t1) + ".." + A.S(t2)); t2 = _this._viewportDimension; description.push("viewport: " + A.S(t2 == null ? null : B.JSNumber_methods.toStringAsFixed$1(t2, 1))); } }; A.ScrollPosition_forcePixels_closure.prototype = { call$1(timeStamp) { this.$this._impliedVelocity = 0; }, $signature: 22 }; A.ScrollMetricsNotification.prototype = { debugFillDescription$1(description) { this.super$_ScrollMetricsNotification_Notification_ViewportNotificationMixin$debugFillDescription(description); description.push(this.metrics.toString$0(0)); } }; A._ScrollMetricsNotification_Notification_ViewportNotificationMixin.prototype = { debugFillDescription$1(description) { var t1, t2; this.super$Notification$debugFillDescription(description); t1 = this.ViewportNotificationMixin__depth; t2 = t1 === 0 ? "local" : "remote"; description.push("depth: " + t1 + " (" + t2 + ")"); } }; A._ScrollPosition_ViewportOffset_ScrollMetrics.prototype = {}; A.ScrollPositionWithSingleContext.prototype = { ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, debugLabel, initialPixels, keepScrollOffset, oldPosition, physics) { var _this = this; if (_this._pixels == null && initialPixels != null) _this._pixels = initialPixels; if (_this._activity == null) _this.beginActivity$1(new A.IdleScrollActivity(_this)); }, get$axisDirection() { return this.context._widget.axisDirection; }, absorb$1(other) { var t1, _this = this; _this.super$ScrollPosition$absorb(other); _this._activity._delegate = _this; _this._userScrollDirection = other._userScrollDirection; t1 = other._currentDrag; if (t1 != null) { _this._currentDrag = t1; t1._delegate = _this; other._currentDrag = null; } }, beginActivity$1(newActivity) { var t1, _this = this; _this._heldPreviousVelocity = 0; _this.super$ScrollPosition$beginActivity(newActivity); t1 = _this._currentDrag; if (t1 != null) t1.dispose$0(0); _this._currentDrag = null; if (!_this._activity.get$isScrolling()) _this.updateUserScrollDirection$1(B.ScrollDirection_0); }, applyUserOffset$1(delta) { var t1, _this = this; _this.updateUserScrollDirection$1(delta > 0 ? B.ScrollDirection_1 : B.ScrollDirection_2); t1 = _this._pixels; t1.toString; _this.super$ScrollPosition$setPixels(t1 - _this.physics.applyPhysicsToUserOffset$2(_this, delta)); }, goBallistic$1(velocity) { var t1, t2, t3, _this = this, simulation = _this.physics.createBallisticSimulation$2(_this, velocity); if (simulation != null) { t1 = new A.BallisticScrollActivity(_this); t2 = A.AnimationController$unbounded(null, 0, _this.context); t2.didRegisterListener$0(); t3 = t2.AnimationLocalListenersMixin__listeners; t3._isDirty = true; t3._observer_list$_list.push(t1.get$_scroll_activity$_tick()); t2.animateWith$1(simulation)._primaryCompleter.future.whenComplete$1(t1.get$_scroll_activity$_end()); t1.__BallisticScrollActivity__controller = t2; _this.beginActivity$1(t1); } else _this.beginActivity$1(new A.IdleScrollActivity(_this)); }, updateUserScrollDirection$1(value) { var t1, t2, t3, _this = this; if (_this._userScrollDirection === value) return; _this._userScrollDirection = value; t1 = _this.copyWith$0(); t2 = _this.context._gestureDetectorKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2); t3.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2); if (t2 != null) t2.dispatchNotification$1(new A.UserScrollNotification(value, t1, t3, 0)); }, animateTo$3$curve$duration(to, curve, duration) { var activity, t2, _this = this, _s10_ = "_completer", t1 = _this._pixels; t1.toString; if (A.nearEqual(to, t1, _this.physics.get$tolerance().distance)) { _this.jumpTo$1(to); return A.Future_Future$value(null, type$.void); } t1 = _this._pixels; t1.toString; activity = new A.DrivenScrollActivity(_this); t2 = $.Zone__current; A._lateWriteOnceCheck($, _s10_); activity.__DrivenScrollActivity__completer = new A._AsyncCompleter(new A._Future(t2, type$._Future_void), type$._AsyncCompleter_void); t1 = A.AnimationController$unbounded("DrivenScrollActivity", t1, _this.context); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(activity.get$_scroll_activity$_tick()); t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(to, curve, duration)._primaryCompleter.future.whenComplete$1(activity.get$_scroll_activity$_end()); A._lateWriteOnceCheck(activity.__DrivenScrollActivity__controller, "_controller"); activity.__DrivenScrollActivity__controller = t1; _this.beginActivity$1(activity); return A._lateReadCheck(activity.__DrivenScrollActivity__completer, _s10_).future; }, jumpTo$1(value) { var t1, t2, _this = this; _this.beginActivity$1(new A.IdleScrollActivity(_this)); t1 = _this._pixels; t1.toString; if (t1 !== value) { _this.forcePixels$1(value); _this.didStartScroll$0(); t2 = _this._pixels; t2.toString; _this.didUpdateScrollPositionBy$1(t2 - t1); _this.didEndScroll$0(); } _this.goBallistic$1(0); }, drag$2(details, dragCancelCallback) { var t3, drag, _this = this, t1 = _this.physics, t2 = t1.carriedMomentum$1(_this._heldPreviousVelocity); t1 = t1.get$dragStartDistanceMotionThreshold(); t3 = t1 == null ? null : 0; drag = new A.ScrollDragController(_this, dragCancelCallback, t2, t1, details.sourceTimeStamp, t2 !== 0, t3, details); _this.beginActivity$1(new A.DragScrollActivity(drag, _this)); return _this._currentDrag = drag; }, dispose$0(_) { var t1 = this._currentDrag; if (t1 != null) t1.dispose$0(0); this._currentDrag = null; this.super$ScrollPosition$dispose(0); } }; A.BouncingScrollSimulation.prototype = { _scroll_simulation$_simulation$1(time) { var simulation, _this = this, _s11_ = "_springTime"; if (time > A._lateReadCheck(_this.__BouncingScrollSimulation__springTime, _s11_)) { _this._timeOffset = isFinite(A._lateReadCheck(_this.__BouncingScrollSimulation__springTime, _s11_)) ? A._lateReadCheck(_this.__BouncingScrollSimulation__springTime, _s11_) : 0; simulation = A._lateReadCheck(_this.__BouncingScrollSimulation__springSimulation, "_springSimulation"); } else { _this._timeOffset = 0; simulation = A._lateReadCheck(_this.__BouncingScrollSimulation__frictionSimulation, "_frictionSimulation"); } simulation.tolerance = _this.tolerance; return simulation; }, x$1(_, time) { return this._scroll_simulation$_simulation$1(time).x$1(0, time - this._timeOffset); }, dx$1(_, time) { return this._scroll_simulation$_simulation$1(time).dx$1(0, time - this._timeOffset); }, isDone$1(time) { return this._scroll_simulation$_simulation$1(time).isDone$1(time - this._timeOffset); }, toString$0(_) { return "BouncingScrollSimulation(leadingExtent: " + A.S(this.leadingExtent) + ", trailingExtent: " + A.S(this.trailingExtent) + ")"; } }; A.ClampingScrollSimulation.prototype = { x$1(_, time) { var _this = this, t = B.JSNumber_methods.clamp$2(time / A._lateReadCheck(_this.__ClampingScrollSimulation__duration, "_duration"), 0, 1); return _this.position + A._lateReadCheck(_this.__ClampingScrollSimulation__distance, "_distance") * (1.2 * t * t * t - 3.27 * t * t + 3.065 * t) * J.get$sign$in(_this.velocity); }, dx$1(_, time) { var _this = this, _s9_ = "_duration", t = B.JSNumber_methods.clamp$2(time / A._lateReadCheck(_this.__ClampingScrollSimulation__duration, _s9_), 0, 1); return A._lateReadCheck(_this.__ClampingScrollSimulation__distance, "_distance") * (3.6 * t * t - 6.54 * t + 3.065) * J.get$sign$in(_this.velocity) / A._lateReadCheck(_this.__ClampingScrollSimulation__duration, _s9_); }, isDone$1(time) { return time >= A._lateReadCheck(this.__ClampingScrollSimulation__duration, "_duration"); } }; A.ScrollViewKeyboardDismissBehavior.prototype = { toString$0(_) { return "ScrollViewKeyboardDismissBehavior." + this._core$_name; } }; A.ScrollView.prototype = { buildViewport$4(context, offset, axisDirection, slivers) { var _this = this; if (_this.shrinkWrap) return new A.ShrinkWrappingViewport(axisDirection, offset, _this.clipBehavior, slivers, null); return A.Viewport$(_this.anchor, axisDirection, _this.cacheExtent, B.CacheExtentStyle_0, _this.center, _this.clipBehavior, offset, slivers); }, build$1(_, context) { var _this = this, slivers = _this.buildSlivers$1(context), axisDirection = A.getAxisDirectionFromAxisReverseAndDirectionality(context, _this.scrollDirection, false), t1 = _this.primary, scrollController = t1 ? A.PrimaryScrollController_of(context) : _this.controller, scrollable = A.Scrollable$(axisDirection, scrollController, _this.dragStartBehavior, false, _this.physics, _this.restorationId, _this.scrollBehavior, _this.semanticChildCount, new A.ScrollView_build_closure(_this, axisDirection, slivers)), scrollableResult = t1 && scrollController != null ? A.PrimaryScrollController$none(scrollable) : scrollable; if (_this.keyboardDismissBehavior === B.ScrollViewKeyboardDismissBehavior_1) return new A.NotificationListener(new A.ScrollView_build_closure0(context), scrollableResult, null, type$.NotificationListener_ScrollUpdateNotification); else return scrollableResult; } }; A.ScrollView_build_closure.prototype = { call$2(context, offset) { return this.$this.buildViewport$4(context, offset, this.axisDirection, this.slivers); }, $signature: 1479 }; A.ScrollView_build_closure0.prototype = { call$1(notification) { var focusScope = A.FocusScope_of(this.context); if (notification.dragDetails != null && focusScope.get$hasFocus()) focusScope.unfocus$0(); return false; }, $signature: 1474 }; A.CustomScrollView.prototype = { buildSlivers$1(context) { return this.slivers; } }; A.BoxScrollView.prototype = { buildSlivers$1(context) { var mediaQuery, t1, mediaQueryHorizontalPadding, mediaQueryVerticalPadding, sliver = this.buildChildLayout$1(context), effectivePadding = this.padding; if (effectivePadding == null) { mediaQuery = A.MediaQuery_maybeOf(context); if (mediaQuery != null) { t1 = mediaQuery.padding; mediaQueryHorizontalPadding = t1.copyWith$2$bottom$top(0, 0); mediaQueryVerticalPadding = t1.copyWith$2$left$right(0, 0); t1 = this.scrollDirection === B.Axis_1; effectivePadding = t1 ? mediaQueryVerticalPadding : mediaQueryHorizontalPadding; sliver = new A.MediaQuery(mediaQuery.copyWith$1$padding(t1 ? mediaQueryHorizontalPadding : mediaQueryVerticalPadding), sliver, null); } } return A._setArrayType([effectivePadding != null ? new A.SliverPadding(effectivePadding, sliver, null) : sliver], type$.JSArray_Widget); } }; A.ListView.prototype = { buildChildLayout$1(context) { return A.SliverList$(this.childrenDelegate); } }; A.ListView$separated_closure.prototype = { call$2(context, index) { var itemIndex = B.JSInt_methods._tdivFast$1(index, 2); return (index & 1) === 0 ? this.itemBuilder.call$2(context, itemIndex) : this.separatorBuilder.call$2(context, itemIndex); }, $signature: 159 }; A.ListView$separated_closure0.prototype = { call$2(_, index) { return (index & 1) === 0 ? B.JSInt_methods._tdivFast$1(index, 2) : null; }, $signature: 1788 }; A.GridView.prototype = { buildChildLayout$1(context) { return new A.SliverGrid(this.gridDelegate, this.childrenDelegate, null); } }; A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 130 }; A.Scrollable.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new A.ScrollableState(new A._RestorableScrollOffset($.$get$ChangeNotifier__emptyListeners()), new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_RawGestureDetectorState), new A.LabeledGlobalKey(_null, t1), B.Map_empty5, _null, A.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, _null, B._StateLifecycle_0); }, viewportBuilder$2(arg0, arg1) { return this.viewportBuilder.call$2(arg0, arg1); } }; A._ScrollableScope.prototype = { updateShouldNotify$1(old) { return this.position != old.position; } }; A.ScrollableState.prototype = { get$_effectiveScrollController() { var t1 = this._widget.controller; if (t1 == null) { t1 = this._fallbackScrollController; t1.toString; } return t1; }, _updatePosition$0() { var t2, t3, oldPosition, _this = this, t1 = _this._widget.scrollBehavior; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = A.ScrollConfiguration_of(t1); } _this.__ScrollableState__configuration = t1; t1 = A._lateReadCheck(t1, "_configuration"); t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); _this._physics = t2; t1 = _this._widget; t3 = t1.physics; if (t3 != null) _this._physics = t3.applyTo$1(t2); else { t1 = t1.scrollBehavior; if (t1 != null) { t2 = _this._framework$_element; t2.toString; _this._physics = t1.getScrollPhysics$1(t2).applyTo$1(_this._physics); } } oldPosition = _this._scrollable$_position; if (oldPosition != null) { _this.get$_effectiveScrollController().detach$1(0, oldPosition); A.scheduleMicrotask(oldPosition.get$dispose(oldPosition)); } t1 = _this.get$_effectiveScrollController(); t2 = _this._physics; t2.toString; _this._scrollable$_position = t1.createScrollPosition$3(t2, _this, oldPosition); t2 = _this.get$_effectiveScrollController(); t1 = _this._scrollable$_position; t1.toString; t2.attach$1(t1); }, restoreState$2(oldBucket, initialRestore) { var t1 = this._persistedScrollOffset; this.registerForRestoration$2(t1, "offset"); t1 = t1._restoration_properties$_value; if (t1 != null) this._scrollable$_position.restoreOffset$2$initialRestore(t1, initialRestore); }, initState$0() { if (this._widget.controller == null) this._fallbackScrollController = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); this.super$State$initState(); }, didChangeDependencies$0() { var _this = this, t1 = _this._framework$_element; t1.toString; _this._mediaQueryData = A.MediaQuery_maybeOf(t1); _this._updatePosition$0(); _this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); }, _shouldUpdatePosition$1(oldWidget) { var t2, oldPhysics, t3, _this = this, _null = null, t1 = _this._widget, newPhysics = t1.physics; if (newPhysics == null) { t1 = t1.scrollBehavior; if (t1 == null) newPhysics = _null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); newPhysics = t2; } } oldPhysics = oldWidget.physics; if (oldPhysics == null) { t1 = oldWidget.scrollBehavior; if (t1 == null) oldPhysics = _null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); oldPhysics = t2; } } do { t1 = newPhysics == null; t2 = t1 ? _null : A.getRuntimeType(newPhysics); t3 = oldPhysics == null; if (t2 != (t3 ? _null : A.getRuntimeType(oldPhysics))) return true; newPhysics = t1 ? _null : newPhysics.parent; oldPhysics = t3 ? _null : oldPhysics.parent; } while (newPhysics != null || oldPhysics != null); t1 = _this._widget.controller; t1 = t1 == null ? _null : A.getRuntimeType(t1); t2 = oldWidget.controller; return t1 != (t2 == null ? _null : A.getRuntimeType(t2)); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); t1 = _this._widget.controller; t2 = oldWidget.controller; if (t1 != t2) { if (t2 == null) { t1 = _this._fallbackScrollController; t1.toString; t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); _this._fallbackScrollController.dispose$0(0); _this._fallbackScrollController = null; } else { t1 = _this._scrollable$_position; t1.toString; t2.detach$1(0, t1); if (_this._widget.controller == null) _this._fallbackScrollController = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); } t1 = _this.get$_effectiveScrollController(); t2 = _this._scrollable$_position; t2.toString; t1.attach$1(t2); } if (_this._shouldUpdatePosition$1(oldWidget)) _this._updatePosition$0(); }, dispose$0(_) { var t2, _this = this, t1 = _this._widget.controller; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); } else { t1 = _this._fallbackScrollController; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); } t1 = _this._fallbackScrollController; if (t1 != null) t1.dispose$0(0); } _this._scrollable$_position.dispose$0(0); _this._persistedScrollOffset.dispose$0(0); _this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, setCanDrag$1(value) { var t1, t2, _this = this; if (value === _this._lastCanDrag) t1 = !value || A.axisDirectionToAxis(_this._widget.axisDirection) === _this._scrollable$_lastAxisDirection; else t1 = false; if (t1) return; if (!value) { _this._gestureRecognizers = B.Map_empty5; _this._scrollable$_handleDragCancel$0(); } else { switch (A.axisDirectionToAxis(_this._widget.axisDirection).index) { case 1: _this._gestureRecognizers = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_mLh, new A.GestureRecognizerFactoryWithHandlers(new A.ScrollableState_setCanDrag_closure(_this), new A.ScrollableState_setCanDrag_closure0(_this), type$.GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); break; case 0: _this._gestureRecognizers = A.LinkedHashMap_LinkedHashMap$_literal([B.Type_Vq1, new A.GestureRecognizerFactoryWithHandlers(new A.ScrollableState_setCanDrag_closure1(_this), new A.ScrollableState_setCanDrag_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } value = true; } _this._lastCanDrag = value; _this._scrollable$_lastAxisDirection = A.axisDirectionToAxis(_this._widget.axisDirection); t1 = _this._gestureDetectorKey; if (t1.get$currentState() != null) { t1 = t1.get$currentState(); t1._syncAll$1(_this._gestureRecognizers); if (!t1._widget.excludeFromSemantics) { t2 = t1._framework$_element.get$renderObject(); t2.toString; type$.RenderSemanticsGestureHandler._as(t2); t1._gesture_detector$_semantics.assignSemantics$1(t2); } } }, setIgnorePointer$1(value) { var t1, _this = this; if (_this._shouldIgnorePointer === value) return; _this._shouldIgnorePointer = value; t1 = _this._ignorePointerKey; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1) != null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderIgnorePointer._as(t1).set$ignoring(_this._shouldIgnorePointer); } }, _scrollable$_handleDragDown$1(details) { var t1 = this._scrollable$_position, previousVelocity = t1._activity.get$velocity(), holdActivity = new A.HoldScrollActivity(this.get$_disposeHold(), t1); t1.beginActivity$1(holdActivity); t1._heldPreviousVelocity = previousVelocity; this._hold = holdActivity; }, _scrollable$_handleDragStart$1(details) { this._scrollable$_drag = this._scrollable$_position.drag$2(details, this.get$_disposeDrag()); }, _scrollable$_handleDragUpdate$1(details) { var t1 = this._scrollable$_drag; if (t1 != null) t1.update$1(0, details); }, _scrollable$_handleDragEnd$1(details) { var t1 = this._scrollable$_drag; if (t1 != null) t1.end$1(0, details); }, _scrollable$_handleDragCancel$0() { var t1 = this._hold; if (t1 != null) t1._delegate.goBallistic$1(0); t1 = this._scrollable$_drag; if (t1 != null) t1._delegate.goBallistic$1(0); }, _disposeHold$0() { this._hold = null; }, _disposeDrag$0() { this._scrollable$_drag = null; }, _targetScrollOffsetForPointerScroll$1(delta) { var t3, t1 = this._scrollable$_position, t2 = t1._pixels; t2.toString; t3 = t1._minScrollExtent; t3.toString; t3 = Math.max(t2 + delta, t3); t1 = t1._maxScrollExtent; t1.toString; return Math.min(t3, t1); }, _pointerSignalEventDelta$1($event) { var delta = A.axisDirectionToAxis(this._widget.axisDirection) === B.Axis_0 ? $event.get$scrollDelta()._dx : $event.get$scrollDelta()._dy; return A.axisDirectionIsReversed(this._widget.axisDirection) ? delta * -1 : delta; }, _receivedPointerSignal$1($event) { var t1, t2, delta, targetScrollOffset, _this = this; if (type$.PointerScrollEvent._is($event) && _this._scrollable$_position != null) { t1 = _this._physics; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t2 = !t1.shouldAcceptUserOffset$1(t2); t1 = t2; } else t1 = false; if (t1) return; delta = _this._pointerSignalEventDelta$1($event); targetScrollOffset = _this._targetScrollOffsetForPointerScroll$1(delta); if (delta !== 0) { t1 = _this._scrollable$_position._pixels; t1.toString; t1 = targetScrollOffset !== t1; } else t1 = false; if (t1) $.GestureBinding__instance.GestureBinding_pointerSignalResolver.register$2(0, $event, _this.get$_handlePointerScroll()); } }, _handlePointerScroll$1($event) { var t1, t2, t3, t4, targetPixels, _this = this, delta = _this._pointerSignalEventDelta$1($event), targetScrollOffset = _this._targetScrollOffsetForPointerScroll$1(delta); if (delta !== 0) { t1 = _this._scrollable$_position._pixels; t1.toString; t1 = targetScrollOffset !== t1; } else t1 = false; if (t1) { t1 = _this._scrollable$_position; t2 = t1._pixels; t2.toString; t3 = t1._minScrollExtent; t3.toString; t3 = Math.max(t2 + delta, t3); t4 = t1._maxScrollExtent; t4.toString; targetPixels = Math.min(t3, t4); if (targetPixels !== t2) { t1.beginActivity$1(new A.IdleScrollActivity(t1)); t1.updateUserScrollDirection$1(-delta > 0 ? B.ScrollDirection_1 : B.ScrollDirection_2); t2 = t1._pixels; t2.toString; t1.forcePixels$1(targetPixels); t1.isScrollingNotifier.set$value(0, true); t1.didStartScroll$0(); t3 = t1._pixels; t3.toString; t1.didUpdateScrollPositionBy$1(t3 - t2); t1.didEndScroll$0(); t1.goBallistic$1(0); } } }, _handleScrollMetricsNotification$1(notification) { var t1, scrollSemanticsRenderObject; if (notification.ViewportNotificationMixin__depth === 0) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._scrollSemanticsKey); scrollSemanticsRenderObject = t1 == null ? null : t1.get$renderObject(); if (scrollSemanticsRenderObject != null) scrollSemanticsRenderObject.markNeedsSemanticsUpdate$0(); } return false; }, build$1(_, context) { var t2, t3, t4, t5, result, details, _this = this, _null = null, _s14_ = "_configuration", t1 = _this._scrollable$_position; t1.toString; t2 = _this._gestureRecognizers; t3 = _this._widget; t4 = t3.excludeFromSemantics; t5 = _this._shouldIgnorePointer; t3 = t3.viewportBuilder$2(context, t1); result = new A._ScrollableScope(_this, t1, A.Listener$(B.HitTestBehavior_0, new A.RawGestureDetector(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, !t4, false, new A.IgnorePointer(t5, false, t3, _this._ignorePointerKey), _null), t2, B.HitTestBehavior_1, t4, _null, _this._gestureDetectorKey), _null, _null, _null, _null, _null, _this.get$_receivedPointerSignal(), _null), _null); t1 = _this._widget; if (!t1.excludeFromSemantics) { t1 = _this._scrollable$_position; t1.toString; t2 = _this._physics.get$allowImplicitScrolling(); t3 = _this._widget; result = new A.NotificationListener(_this.get$_handleScrollMetricsNotification(), new A._ScrollSemantics(t1, t2, t3.semanticChildCount, result, _this._scrollSemanticsKey), _null, type$.NotificationListener_ScrollMetricsNotification); t1 = t3; } details = new A.ScrollableDetails(t1.axisDirection, _this.get$_effectiveScrollController()); return A._lateReadCheck(_this.__ScrollableState__configuration, _s14_).buildScrollbar$3(context, A._lateReadCheck(_this.__ScrollableState__configuration, _s14_).buildOverscrollIndicator$3(context, result, details), details); }, get$restorationId() { return this._widget.restorationId; } }; A.ScrollableState_setCanDrag_closure.prototype = { call$0() { return A.VerticalDragGestureRecognizer$(null, A._lateReadCheck(this.$this.__ScrollableState__configuration, "_configuration").get$dragDevices()); }, $signature: 542 }; A.ScrollableState_setCanDrag_closure0.prototype = { call$1(instance) { var t2, t3, _null = null, t1 = this.$this; instance.onDown = t1.get$_scrollable$_handleDragDown(); instance.onStart = t1.get$_scrollable$_handleDragStart(); instance.onUpdate = t1.get$_scrollable$_handleDragUpdate(); instance.onEnd = t1.get$_scrollable$_handleDragEnd(); instance.onCancel = t1.get$_scrollable$_handleDragCancel(); t2 = t1._physics; instance.minFlingDistance = t2 == null ? _null : t2.get$minFlingDistance(); t2 = t1._physics; instance.minFlingVelocity = t2 == null ? _null : t2.get$minFlingVelocity(); t2 = t1._physics; instance.maxFlingVelocity = t2 == null ? _null : t2.get$maxFlingVelocity(); t2 = A._lateReadCheck(t1.__ScrollableState__configuration, "_configuration"); t3 = t1._framework$_element; t3.toString; instance.velocityTrackerBuilder = t2.velocityTrackerBuilder$1(t3); instance.dragStartBehavior = t1._widget.dragStartBehavior; t1 = t1._mediaQueryData; instance.gestureSettings = t1 == null ? _null : t1.gestureSettings; }, $signature: 543 }; A.ScrollableState_setCanDrag_closure1.prototype = { call$0() { return A.HorizontalDragGestureRecognizer$(null, A._lateReadCheck(this.$this.__ScrollableState__configuration, "_configuration").get$dragDevices()); }, $signature: 544 }; A.ScrollableState_setCanDrag_closure2.prototype = { call$1(instance) { var t2, t3, _null = null, t1 = this.$this; instance.onDown = t1.get$_scrollable$_handleDragDown(); instance.onStart = t1.get$_scrollable$_handleDragStart(); instance.onUpdate = t1.get$_scrollable$_handleDragUpdate(); instance.onEnd = t1.get$_scrollable$_handleDragEnd(); instance.onCancel = t1.get$_scrollable$_handleDragCancel(); t2 = t1._physics; instance.minFlingDistance = t2 == null ? _null : t2.get$minFlingDistance(); t2 = t1._physics; instance.minFlingVelocity = t2 == null ? _null : t2.get$minFlingVelocity(); t2 = t1._physics; instance.maxFlingVelocity = t2 == null ? _null : t2.get$maxFlingVelocity(); t2 = A._lateReadCheck(t1.__ScrollableState__configuration, "_configuration"); t3 = t1._framework$_element; t3.toString; instance.velocityTrackerBuilder = t2.velocityTrackerBuilder$1(t3); instance.dragStartBehavior = t1._widget.dragStartBehavior; t1 = t1._mediaQueryData; instance.gestureSettings = t1 == null ? _null : t1.gestureSettings; }, $signature: 545 }; A.ScrollableDetails.prototype = {}; A._ScrollSemantics.prototype = { createRenderObject$1(context) { var t1 = this.position, t2 = new A._RenderScrollSemantics(t1, this.allowImplicitScrolling, this.semanticChildCount, null, A.LayerHandle$(type$.ContainerLayer_2)); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); t1.addListener$1(0, t2.get$markNeedsSemanticsUpdate()); return t2; }, updateRenderObject$2(context, renderObject) { renderObject.set$allowImplicitScrolling(this.allowImplicitScrolling); renderObject.set$position(0, this.position); renderObject.set$semanticChildCount(this.semanticChildCount); } }; A._RenderScrollSemantics.prototype = { set$position(_, value) { var t2, _this = this, t1 = _this._scrollable$_position; if (value == t1) return; t2 = _this.get$markNeedsSemanticsUpdate(); t1.removeListener$1(0, t2); _this._scrollable$_position = value; value.addListener$1(0, t2); _this.markNeedsSemanticsUpdate$0(); }, set$allowImplicitScrolling(value) { if (value === this._allowImplicitScrolling) return; this._allowImplicitScrolling = value; this.markNeedsSemanticsUpdate$0(); }, set$semanticChildCount(value) { if (value == this._semanticChildCount) return; this._semanticChildCount = value; this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1(config) { var t1, t2, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = true; if (_this._scrollable$_position._haveDimensions) { config._setFlag$2(B.SemanticsFlag_262144, _this._allowImplicitScrolling); t1 = _this._scrollable$_position; t2 = t1._pixels; t2.toString; config._scrollPosition = t2; config._hasBeenAnnotated = true; t2 = t1._maxScrollExtent; t2.toString; config._scrollExtentMax = t2; t1 = t1._minScrollExtent; t1.toString; config._scrollExtentMin = t1; config.set$scrollChildCount(_this._semanticChildCount); } }, assembleSemanticsNode$3(node, config, children) { var t1, t2, excluded, included, firstVisibleIndex, _i, child, _this = this; if (children.length !== 0) { t1 = B.JSArray_methods.get$first(children).tags; t1 = !(t1 != null && t1.contains$1(0, B.SemanticsTag_FIw)); } else t1 = true; if (t1) { _this.super$RenderObject$assembleSemanticsNode(node, config, children); return; } t1 = _this._innerNode; if (t1 == null) t1 = _this._innerNode = A.SemanticsNode$(null, _this.get$showOnScreen()); t1.set$isMergedIntoParent(node._mergeAllDescendantsIntoThisNode || node._isMergedIntoParent); t1.set$rect(0, node._semantics$_rect); t1 = _this._innerNode; t1.toString; t2 = type$.JSArray_SemanticsNode; excluded = A._setArrayType([t1], t2); included = A._setArrayType([], t2); for (t1 = children.length, firstVisibleIndex = null, _i = 0; _i < children.length; children.length === t1 || (0, A.throwConcurrentModificationError)(children), ++_i) { child = children[_i]; t2 = child.tags; if (t2 != null && t2.contains$1(0, B.SemanticsTag_bQQ)) excluded.push(child); else { if ((child._flags & 8192) === 0) firstVisibleIndex = firstVisibleIndex == null ? child.indexInParent : firstVisibleIndex; included.push(child); } } config.set$scrollIndex(firstVisibleIndex); node.updateWith$2$childrenInInversePaintOrder$config(0, excluded, null); _this._innerNode.updateWith$2$childrenInInversePaintOrder$config(0, included, config); }, clearSemantics$0() { this.super$RenderObject$clearSemantics(); this._innerNode = null; } }; A.ScrollIncrementType.prototype = { toString$0(_) { return "ScrollIncrementType." + this._core$_name; } }; A.ScrollIntent.prototype = {}; A.ScrollAction.prototype = { isEnabled$1(_, intent) { var t1, primaryScrollController, t2, $focus = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; if ($focus != null && $focus._context != null) { t1 = $focus._context; t1.toString; if (A.Scrollable_of(t1) != null) return true; t1 = $focus._context; t1.toString; if (A.PrimaryScrollController_of(t1) != null) { t1 = $focus._context; t1.toString; primaryScrollController = A.PrimaryScrollController_of(t1); if (primaryScrollController != null) { t1 = primaryScrollController._positions; if (t1.length !== 0) { t2 = B.JSArray_methods.get$single(t1).context; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._gestureDetectorKey) != null) { t1 = B.JSArray_methods.get$single(t1).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; t1 = A.Scrollable_of(t1) != null; } else t1 = false; } else t1 = false; } else t1 = false; return t1; } } return false; }, _calculateScrollIncrement$2$type(state, type) { var t1; state._widget.toString; switch (type.index) { case 0: return 50; case 1: t1 = state._scrollable$_position._viewportDimension; t1.toString; return 0.8 * t1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _getIncrement$2(state, intent) { var _s80_ = string$.x60null_c, increment = this._calculateScrollIncrement$2$type(state, intent.type); switch (intent.direction.index) { case 2: switch (state._widget.axisDirection.index) { case 0: return -increment; case 2: return increment; case 1: case 3: return 0; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case 0: switch (state._widget.axisDirection.index) { case 0: return increment; case 2: return -increment; case 1: case 3: return 0; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case 3: switch (state._widget.axisDirection.index) { case 1: return -increment; case 3: return increment; case 0: case 2: return 0; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } case 1: switch (state._widget.axisDirection.index) { case 1: return increment; case 3: return -increment; case 0: case 2: return 0; default: throw A.wrapException(A.ReachabilityError$(_s80_)); } default: throw A.wrapException(A.ReachabilityError$(_s80_)); } }, invoke$1(intent) { var state, t2, increment, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t1.toString; state = A.Scrollable_of(t1); if (state == null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t1.toString; t1 = B.JSArray_methods.get$single(A.PrimaryScrollController_of(t1)._positions).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; state = A.Scrollable_of(t1); } t1 = state._physics; if (t1 != null) { t2 = state._scrollable$_position; t2.toString; t2 = !t1.shouldAcceptUserOffset$1(t2); t1 = t2; } else t1 = false; if (t1) return; increment = this._getIncrement$2(state, intent); if (increment === 0) return; t1 = state._scrollable$_position; t2 = t1._pixels; t2.toString; t1.moveTo$3$curve$duration(0, t2 + increment, B.Cubic_xDo, B.Duration_100000); } }; A._RestorableScrollOffset.prototype = { createDefaultValue$0() { return null; }, didUpdateValue$1(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1(data) { data.toString; return A._asDoubleS(data); }, toPrimitives$0() { return this._restoration_properties$_value; }, get$enabled(_) { return this._restoration_properties$_value != null; } }; A._ScrollableState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = A.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_ScrollableState_State_TickerProviderStateMixin$dispose(0); } }; A.ScrollbarOrientation.prototype = { toString$0(_) { return "ScrollbarOrientation." + this._core$_name; } }; A.ScrollbarPainter.prototype = { set$color(_, value) { if (J.$eq$(this._scrollbar$_color, value)) return; this._scrollbar$_color = value; this.notifyListeners$0(); }, set$trackColor(value) { if (J.$eq$(this._trackColor, value)) return; this._trackColor = value; this.notifyListeners$0(); }, set$trackBorderColor(value) { if (J.$eq$(this._trackBorderColor, value)) return; this._trackBorderColor = value; this.notifyListeners$0(); }, set$trackRadius(value) { return; }, set$textDirection(_, value) { if (this._scrollbar$_textDirection == value) return; this._scrollbar$_textDirection = value; this.notifyListeners$0(); }, set$thickness(value) { if (this._thickness == value) return; this._thickness = value; this.notifyListeners$0(); }, set$mainAxisMargin(value) { if (this._mainAxisMargin === value) return; this._mainAxisMargin = value; this.notifyListeners$0(); }, set$crossAxisMargin(value) { if (this._crossAxisMargin === value) return; this._crossAxisMargin = value; this.notifyListeners$0(); }, set$radius(value) { if (J.$eq$(this._scrollbar$_radius, value)) return; this._scrollbar$_radius = value; this.notifyListeners$0(); }, set$shape(_, value) { return; }, set$padding(_, value) { if (this._scrollbar$_padding.$eq(0, value)) return; this._scrollbar$_padding = value; this.notifyListeners$0(); }, set$minLength(_, value) { if (this._minLength === value) return; this._minLength = value; this.notifyListeners$0(); }, set$minOverscrollLength(value) { if (this._minOverscrollLength === value) return; this._minOverscrollLength = value; this.notifyListeners$0(); }, set$scrollbarOrientation(value) { return; }, set$ignorePointer(value) { if (this._ignorePointer === value) return; this._ignorePointer = value; this.notifyListeners$0(); }, update$2(_, metrics, axisDirection) { var oldMetrics, _this = this, t1 = _this._lastMetrics; if (t1 != null) if (Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) === Math.max(metrics.get$pixels() - metrics.get$minScrollExtent(), 0)) if (_this._lastMetrics.get$extentInside() === metrics.get$extentInside()) { t1 = _this._lastMetrics; t1 = Math.max(t1.get$maxScrollExtent() - t1.get$pixels(), 0) === Math.max(metrics.get$maxScrollExtent() - metrics.get$pixels(), 0) && _this._lastAxisDirection === axisDirection; } else t1 = false; else t1 = false; else t1 = false; if (t1) return; oldMetrics = _this._lastMetrics; _this._lastMetrics = metrics; _this._lastAxisDirection = axisDirection; t1 = new A.ScrollbarPainter_update__needPaint(); if (!t1.call$1(oldMetrics) && !t1.call$1(metrics)) return; _this.notifyListeners$0(); }, get$_paintThumb() { var t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()), t2 = this._scrollbar$_color, t3 = this.fadeoutOpacityAnimation; t1.set$color(0, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); return t1; }, _paintTrack$1$isBorder(isBorder) { var t1, t2, t3, _this = this; if (isBorder) { t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = _this._trackBorderColor; t3 = _this.fadeoutOpacityAnimation; t1.set$color(0, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); t1.set$style(0, B.PaintingStyle_1); t1.set$strokeWidth(1); return t1; } t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = _this._trackColor; t3 = _this.fadeoutOpacityAnimation; t1.set$color(0, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); return t1; }, _paintTrack$0() { return this._paintTrack$1$isBorder(false); }, _paintScrollbar$4(canvas, size, thumbExtent, direction) { var resolvedOrientation, thumbSize, trackSize, x, y, t2, t3, trackOffset, borderStart, borderEnd, _this = this, _s12_ = "_thumbOffset", t1 = _this._lastAxisDirection; if (t1 === B.AxisDirection_2 || t1 === B.AxisDirection_0) resolvedOrientation = _this._scrollbar$_textDirection === B.TextDirection_1 ? B.ScrollbarOrientation_1 : B.ScrollbarOrientation_0; else resolvedOrientation = B.ScrollbarOrientation_3; switch (resolvedOrientation.index) { case 0: t1 = _this._thickness; thumbSize = new A.Size(t1, thumbExtent); t1 += 2 * _this._crossAxisMargin; trackSize = new A.Size(t1, _this.get$_trackExtent()); x = _this._crossAxisMargin + _this._scrollbar$_padding.left; y = A._lateReadCheck(_this.__ScrollbarPainter__thumbOffset, _s12_); t2 = x - _this._crossAxisMargin; t3 = _this._mainAxisMargin; trackOffset = new A.Offset(t2, t3); borderStart = trackOffset.$add(0, new A.Offset(t1, 0)); borderEnd = new A.Offset(t2 + t1, t3 + _this.get$_trackExtent()); break; case 1: t1 = _this._thickness; thumbSize = new A.Size(t1, thumbExtent); trackSize = new A.Size(t1 + 2 * _this._crossAxisMargin, _this.get$_trackExtent()); x = size._dx - _this._thickness - _this._crossAxisMargin - _this._scrollbar$_padding.right; y = A._lateReadCheck(_this.__ScrollbarPainter__thumbOffset, _s12_); t1 = x - _this._crossAxisMargin; t2 = _this._mainAxisMargin; trackOffset = new A.Offset(t1, t2); borderEnd = new A.Offset(t1, t2 + _this.get$_trackExtent()); borderStart = trackOffset; break; case 2: thumbSize = new A.Size(thumbExtent, _this._thickness); t1 = _this.get$_trackExtent(); t2 = _this._thickness + 2 * _this._crossAxisMargin; trackSize = new A.Size(t1, t2); x = A._lateReadCheck(_this.__ScrollbarPainter__thumbOffset, _s12_); t1 = _this._crossAxisMargin; y = t1 + _this._scrollbar$_padding.top; t3 = _this._mainAxisMargin; t1 = y - t1; trackOffset = new A.Offset(t3, t1); borderStart = trackOffset.$add(0, new A.Offset(0, t2)); borderEnd = new A.Offset(t3 + _this.get$_trackExtent(), t1 + t2); break; case 3: thumbSize = new A.Size(thumbExtent, _this._thickness); trackSize = new A.Size(_this.get$_trackExtent(), _this._thickness + 2 * _this._crossAxisMargin); x = A._lateReadCheck(_this.__ScrollbarPainter__thumbOffset, _s12_); t1 = size._dy; t2 = _this._thickness; t3 = _this._crossAxisMargin; y = t1 - t2 - t3 - _this._scrollbar$_padding.bottom; t2 = _this._mainAxisMargin; t3 = y - t3; trackOffset = new A.Offset(t2, t3); borderEnd = new A.Offset(t2 + _this.get$_trackExtent(), t3); borderStart = trackOffset; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = trackOffset._dx; t2 = trackOffset._dy; _this._trackRect = new A.Rect(t1, t2, t1 + trackSize._dx, t2 + trackSize._dy); _this._thumbRect = new A.Rect(x, y, x + thumbSize._dx, y + thumbSize._dy); t1 = _this.fadeoutOpacityAnimation; if (t1.get$value(t1) !== 0) { t1 = _this._trackRect; t1.toString; canvas.drawRect$2(0, t1, _this._paintTrack$0()); canvas.drawLine$3(0, borderStart, borderEnd, _this._paintTrack$1$isBorder(true)); t1 = _this._scrollbar$_radius; if (t1 != null) { t2 = _this._thumbRect; t2.toString; canvas.drawRRect$2(0, A.RRect$fromRectAndRadius(t2, t1), _this.get$_paintThumb()); return; } t1 = _this._thumbRect; t1.toString; canvas.drawRect$2(0, t1, _this.get$_paintThumb()); return; } }, _thumbExtent$0() { var t3, t4, t5, t6, t7, fractionVisible, thumbExtent, safeMinLength, newMinLength, _this = this, t1 = _this._lastMetrics.get$extentInside(), t2 = _this._lastAxisDirection; t2 = t2 === B.AxisDirection_2 || t2 === B.AxisDirection_0; t3 = _this._scrollbar$_padding; t2 = t2 ? t3.get$_top(t3) + t3.get$_bottom(t3) : t3.get$horizontal(); t3 = _this._lastMetrics; t4 = t3._scroll_metrics$_maxScrollExtent; t4.toString; t5 = t3._scroll_metrics$_minScrollExtent; t5.toString; t3 = t3._scroll_metrics$_viewportDimension; t3.toString; t6 = _this._lastAxisDirection; t6 = t6 === B.AxisDirection_2 || t6 === B.AxisDirection_0; t7 = _this._scrollbar$_padding; t6 = t6 ? t7.get$_top(t7) + t7.get$_bottom(t7) : t7.get$horizontal(); fractionVisible = B.JSNumber_methods.clamp$2((t1 - t2) / (t4 - t5 + t3 - t6), 0, 1); thumbExtent = Math.max(Math.min(_this.get$_trackExtent(), _this._minOverscrollLength), _this.get$_trackExtent() * fractionVisible); t6 = _this._lastMetrics.get$extentInside(); t3 = _this._lastMetrics._scroll_metrics$_viewportDimension; t3.toString; safeMinLength = Math.min(_this._minLength, _this.get$_trackExtent()); t1 = _this._lastAxisDirection; t1 = t1 === B.AxisDirection_0 || t1 === B.AxisDirection_3; t2 = _this._lastMetrics; if ((t1 ? Math.max(t2.get$maxScrollExtent() - t2.get$pixels(), 0) : Math.max(t2.get$pixels() - t2.get$minScrollExtent(), 0)) > 0) { t1 = _this._lastAxisDirection; t1 = t1 === B.AxisDirection_0 || t1 === B.AxisDirection_3; t2 = _this._lastMetrics; t2 = (t1 ? Math.max(t2.get$pixels() - t2.get$minScrollExtent(), 0) : Math.max(t2.get$maxScrollExtent() - t2.get$pixels(), 0)) > 0; t1 = t2; } else t1 = false; newMinLength = t1 ? safeMinLength : safeMinLength * (1 - B.JSNumber_methods.clamp$2(1 - t6 / t3, 0, 0.2) / 0.2); return B.JSNumber_methods.clamp$2(thumbExtent, newMinLength, _this.get$_trackExtent()); }, dispose$0(_) { this.fadeoutOpacityAnimation.parent.removeListener$1(0, this.get$notifyListeners()); this.super$ChangeNotifier$dispose(0); }, get$_trackExtent() { var t2, t3, t4, _this = this, t1 = _this._lastMetrics._scroll_metrics$_viewportDimension; t1.toString; t2 = _this._mainAxisMargin; t3 = _this._lastAxisDirection; t3 = t3 === B.AxisDirection_2 || t3 === B.AxisDirection_0; t4 = _this._scrollbar$_padding; t3 = t3 ? t4.get$_top(t4) + t4.get$_bottom(t4) : t4.get$horizontal(); return t1 - 2 * t2 - t3; }, paint$2(canvas, size) { var t2, t3, beforePadding, thumbExtent, scrollableExtent, fractionPast, _this = this, t1 = _this._lastAxisDirection; if (t1 != null) { t2 = _this._lastMetrics; if (t2 != null) { t3 = t2._scroll_metrics$_maxScrollExtent; t3.toString; t2 = t2._scroll_metrics$_minScrollExtent; t2.toString; t2 = t3 <= t2; } else t2 = true; } else t2 = true; if (t2) return; t2 = _this._lastMetrics._scroll_metrics$_viewportDimension; t2.toString; t1 = t1 === B.AxisDirection_2 || t1 === B.AxisDirection_0; t3 = _this._scrollbar$_padding; if (t2 <= (t1 ? t3.get$_top(t3) + t3.get$_bottom(t3) : t3.get$horizontal()) || _this.get$_trackExtent() <= 0) return; t1 = _this._lastAxisDirection; t1 = t1 === B.AxisDirection_2 || t1 === B.AxisDirection_0; t2 = _this._scrollbar$_padding; beforePadding = t1 ? t2.top : t2.left; thumbExtent = _this._thumbExtent$0(); t1 = _this._lastMetrics; t2 = t1._scroll_metrics$_maxScrollExtent; t2.toString; t3 = t1._scroll_metrics$_minScrollExtent; t3.toString; scrollableExtent = t2 - t3; if (scrollableExtent > 0) { t1 = t1._scroll_metrics$_pixels; t1.toString; fractionPast = B.JSNumber_methods.clamp$2((t1 - t3) / scrollableExtent, 0, 1); } else fractionPast = 0; t1 = _this._lastAxisDirection; t1 = t1 === B.AxisDirection_0 || t1 === B.AxisDirection_3 ? 1 - fractionPast : fractionPast; _this.__ScrollbarPainter__thumbOffset = t1 * (_this.get$_trackExtent() - thumbExtent) + _this._mainAxisMargin + beforePadding; t1 = _this._lastMetrics._scroll_metrics$_maxScrollExtent; t1.toString; if (t1 == 1 / 0 || t1 == -1 / 0) return; t1 = _this._lastAxisDirection; t1.toString; return _this._paintScrollbar$4(canvas, size, thumbExtent, t1); }, hitTestInteractive$3$forHover(position, kind, forHover) { var t2, t3, paddedRect, _this = this, t1 = _this._trackRect; if (t1 == null) return false; if (_this._ignorePointer) return false; t2 = _this._lastMetrics; t3 = t2._scroll_metrics$_minScrollExtent; t3.toString; t2 = t2._scroll_metrics$_maxScrollExtent; t2.toString; if (t3 === t2) return false; paddedRect = t1.expandToInclude$1(A.Rect$fromCircle(_this._thumbRect.get$center(), 24)); t2 = _this.fadeoutOpacityAnimation; if (t2.get$value(t2) === 0) { if (forHover && kind === B.PointerDeviceKind_1) return paddedRect.contains$1(0, position); return false; } switch (kind.index) { case 0: return paddedRect.contains$1(0, position); case 1: case 2: case 3: case 5: default: return t1.contains$1(0, position); } }, hitTestInteractive$2(position, kind) { return this.hitTestInteractive$3$forHover(position, kind, false); }, hitTestOnlyThumbInteractive$2(position, kind) { var t1, t2, _this = this; if (_this._thumbRect == null) return false; if (_this._ignorePointer) return false; t1 = _this.fadeoutOpacityAnimation; if (t1.get$value(t1) === 0) return false; t1 = _this._lastMetrics; t2 = t1._scroll_metrics$_minScrollExtent; t2.toString; t1 = t1._scroll_metrics$_maxScrollExtent; t1.toString; if (t2 === t1) return false; switch (kind.index) { case 0: t1 = _this._thumbRect; return t1.expandToInclude$1(A.Rect$fromCircle(t1.get$center(), 24)).contains$1(0, position); case 1: case 2: case 3: case 5: default: return _this._thumbRect.contains$1(0, position); } }, hitTest$1(position) { var t1, t2, _this = this; if (_this._thumbRect == null) return null; if (_this._ignorePointer) return false; t1 = _this.fadeoutOpacityAnimation; if (t1.get$value(t1) === 0) return false; t1 = _this._lastMetrics; t2 = t1._scroll_metrics$_minScrollExtent; t2.toString; t1 = t1._scroll_metrics$_maxScrollExtent; t1.toString; if (t2 === t1) return false; t1 = _this._trackRect; t1.toString; position.toString; return t1.contains$1(0, position); }, shouldRepaint$1(oldDelegate) { var t1, _this = this; if (J.$eq$(_this._scrollbar$_color, oldDelegate._scrollbar$_color)) if (J.$eq$(_this._trackColor, oldDelegate._trackColor)) if (J.$eq$(_this._trackBorderColor, oldDelegate._trackBorderColor)) if (_this._scrollbar$_textDirection == oldDelegate._scrollbar$_textDirection) if (_this._thickness == oldDelegate._thickness) if (_this.fadeoutOpacityAnimation === oldDelegate.fadeoutOpacityAnimation) if (_this._mainAxisMargin === oldDelegate._mainAxisMargin) if (_this._crossAxisMargin === oldDelegate._crossAxisMargin) if (J.$eq$(_this._scrollbar$_radius, oldDelegate._scrollbar$_radius)) if (_this._scrollbar$_padding.$eq(0, oldDelegate._scrollbar$_padding)) if (_this._minLength === oldDelegate._minLength) if (_this._minOverscrollLength === oldDelegate._minOverscrollLength) t1 = _this._ignorePointer !== oldDelegate._ignorePointer; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; }, shouldRebuildSemantics$1(oldDelegate) { return false; }, get$semanticsBuilder() { return null; }, toString$0(_) { return "#" + A.shortHash(this); } }; A.ScrollbarPainter_update__needPaint.prototype = { call$1(metrics) { var t1, t2; if (metrics != null) { t1 = metrics._scroll_metrics$_maxScrollExtent; t1.toString; t2 = metrics._scroll_metrics$_minScrollExtent; t2.toString; t2 = t1 > t2; t1 = t2; } else t1 = false; return t1; }, $signature: 1473 }; A.RawScrollbar.prototype = { createState$0() { return A.RawScrollbarState$(type$.RawScrollbar); }, notificationPredicate$1(arg0) { return this.notificationPredicate.call$1(arg0); } }; A.RawScrollbarState.prototype = { get$showScrollbar() { var t1 = this._widget, t2 = t1.isAlwaysShown; t1 = t2 == null ? t1.thumbVisibility : t2; return t1 === true; }, get$_showTrack() { if (this.get$showScrollbar()) this._widget.toString; return false; }, get$enableGestures() { this._widget.toString; return true; }, initState$0() { var t1, t2, t3, t4, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, _this._widget.fadeDuration, _null, 1, _null, _this); t1.addStatusListener$1(_this.get$_validateInteractions()); _this.__RawScrollbarState__fadeoutAnimationController = t1; t1 = A.CurvedAnimation$(B.Cubic_ifx, A._lateReadCheck(t1, "_fadeoutAnimationController"), _null); _this.__RawScrollbarState__fadeoutOpacityAnimation = t1; _this._widget.toString; t1 = A._lateReadCheck(t1, "_fadeoutOpacityAnimation"); t2 = _this._widget; t3 = t2.thickness; if (t3 == null) t3 = 6; t4 = t2.radius; t2 = t2.scrollbarOrientation; t2 = new A.ScrollbarPainter(B.Color_1723645116, B.Color_0, B.Color_0, _null, t3, t1, 0, 0, t4, _null, B.EdgeInsets_0_0_0_0, 18, 18, t2, $.$get$ChangeNotifier__emptyListeners()); t1.parent.addListener$1(0, t2.get$notifyListeners()); A._lateWriteOnceCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); _this.__RawScrollbarState_scrollbarPainter = t2; }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); }, _validateInteractions$1($status) { var t1, scrollController = this._widget.controller; if (scrollController == null) { t1 = this._framework$_element; t1.toString; scrollController = A.PrimaryScrollController_of(t1); } if ($status !== B.AnimationStatus_0) if (scrollController != null) this.get$enableGestures(); }, updateScrollbarPainter$0() { var t2, _this = this, t1 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); _this._widget.toString; t1.set$color(0, B.Color_1723645116); _this._widget.toString; t1.set$trackRadius(null); t1.set$trackColor(_this.get$_showTrack() ? B.Color_134217728 : B.Color_0); t1.set$trackBorderColor(_this.get$_showTrack() ? B.Color_436207616 : B.Color_0); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t2 = _this._widget.thickness; t1.set$thickness(t2 == null ? 6 : t2); t1.set$radius(_this._widget.radius); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); t1.set$scrollbarOrientation(_this._widget.scrollbarOrientation); _this._widget.toString; t1.set$mainAxisMargin(0); _this._widget.toString; t1.set$shape(0, null); _this._widget.toString; t1.set$crossAxisMargin(0); _this._widget.toString; t1.set$minLength(0, 18); _this._widget.toString; t1.set$minOverscrollLength(18); t1.set$ignorePointer(!_this.get$enableGestures()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s27_ = "_fadeoutAnimationController"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t2 = t1.isAlwaysShown; if (t2 != oldWidget.isAlwaysShown || t1.thumbVisibility != oldWidget.thumbVisibility) { if (t2 !== true) { t1 = t1.thumbVisibility; t1 = t1 === true; } else t1 = true; if (t1) { t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); t1 = A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_); t1._direction = B._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, B.C__Linear, null); } else A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).reverse$0(0); } }, _maybeStartFadeoutTimer$0() { var t1, _this = this; if (!_this.get$showScrollbar()) { t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); _this._fadeoutTimer = A.Timer_Timer(_this._widget.timeToFade, new A.RawScrollbarState__maybeStartFadeoutTimer_closure(_this)); } }, getScrollbarDirection$0() { var t1 = this._currentController; if (t1._positions.length !== 0) return A.axisDirectionToAxis(t1.get$position(t1).get$axisDirection()); return null; }, handleThumbPress$0() { if (this.getScrollbarDirection$0() == null) return; var t1 = this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); }, handleThumbPressStart$1(localPosition) { var _this = this, t1 = _this._widget.controller; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = A.PrimaryScrollController_of(t1); } _this._currentController = t1; if (_this.getScrollbarDirection$0() == null) return; t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, "_fadeoutAnimationController").forward$0(0); _this._dragScrollbarAxisOffset = localPosition; }, handleThumbPressUpdate$1(localPosition) { var t1, position, primaryDelta, t2, t3, t4, t5, t6, scrollOffsetGlobal, newPosition, _this = this, _s80_ = string$.x60null_c; if (_this.getScrollbarDirection$0() == null) return; t1 = _this._currentController; position = t1.get$position(t1); primaryDelta = A._Cell$named("primaryDelta"); switch (position.context._widget.axisDirection.index) { case 0: primaryDelta.__late_helper$_value = _this._dragScrollbarAxisOffset._dy - localPosition._dy; break; case 1: primaryDelta.__late_helper$_value = localPosition._dx - _this._dragScrollbarAxisOffset._dx; break; case 2: primaryDelta.__late_helper$_value = localPosition._dy - _this._dragScrollbarAxisOffset._dy; break; case 3: primaryDelta.__late_helper$_value = _this._dragScrollbarAxisOffset._dx - localPosition._dx; break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } t1 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); t2 = primaryDelta._readLocal$0(); t3 = t1._lastMetrics; t4 = t3._scroll_metrics$_maxScrollExtent; t4.toString; t3 = t3._scroll_metrics$_minScrollExtent; t3.toString; t5 = t1.get$_trackExtent(); t1 = t1._thumbExtent$0(); t6 = position._pixels; t6.toString; scrollOffsetGlobal = (t4 - t3) * t2 / (t5 - t1) + t6; if (scrollOffsetGlobal !== t6) { newPosition = scrollOffsetGlobal - position.physics.applyBoundaryConditions$2(position, scrollOffsetGlobal); t1 = _this._framework$_element; t1.toString; t1 = A.ScrollConfiguration_of(t1); t2 = _this._framework$_element; t2.toString; switch (t1.getPlatform$1(t2)) { case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: t1 = position._minScrollExtent; t1.toString; t2 = position._maxScrollExtent; t2.toString; newPosition = B.JSNumber_methods.clamp$2(newPosition, t1, t2); break; case B.TargetPlatform_2: case B.TargetPlatform_0: break; default: A.throwExpression(A.ReachabilityError$(_s80_)); } position.jumpTo$1(newPosition); } _this._dragScrollbarAxisOffset = localPosition; }, handleThumbPressEnd$2(localPosition, velocity) { var _this = this; if (_this.getScrollbarDirection$0() == null) return; _this._maybeStartFadeoutTimer$0(); _this._currentController = _this._dragScrollbarAxisOffset = null; }, _handleTrackTapDown$1(details) { var scrollIncrement, t2, _this = this, _s16_ = "scrollbarPainter", _s12_ = "_thumbOffset", t1 = _this._widget.controller; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = A.PrimaryScrollController_of(t1); } _this._currentController = t1; t1 = t1.get$position(t1).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; t1 = A.Scrollable_of(t1); if (t1 != null) t1._widget.toString; t1 = _this._currentController; t1 = t1.get$position(t1)._viewportDimension; t1.toString; scrollIncrement = 0.8 * t1; t1 = _this._currentController; switch (t1.get$position(t1).context._widget.axisDirection.index) { case 0: if (details.localPosition._dy > A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).__ScrollbarPainter__thumbOffset, _s12_)) scrollIncrement = -scrollIncrement; break; case 2: if (details.localPosition._dy < A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).__ScrollbarPainter__thumbOffset, _s12_)) scrollIncrement = -scrollIncrement; break; case 1: if (details.localPosition._dx < A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).__ScrollbarPainter__thumbOffset, _s12_)) scrollIncrement = -scrollIncrement; break; case 3: if (details.localPosition._dx > A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).__ScrollbarPainter__thumbOffset, _s12_)) scrollIncrement = -scrollIncrement; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = _this._currentController; t1 = t1.get$position(t1); t2 = _this._currentController; t2 = t2.get$position(t2)._pixels; t2.toString; t1.moveTo$3$curve$duration(0, t2 + scrollIncrement, B.Cubic_xDo, B.Duration_100000); }, _shouldUpdatePainter$1(notificationAxis) { var t1, scrollController = this._widget.controller; if (scrollController == null) { t1 = this._framework$_element; t1.toString; scrollController = A.PrimaryScrollController_of(t1); } if (scrollController == null) return true; t1 = scrollController._positions.length; if (t1 > 1) return false; return t1 === 0 || A.axisDirectionToAxis(scrollController.get$position(scrollController).get$axisDirection()) === notificationAxis; }, _scrollbar$_handleScrollMetricsNotification$1(notification) { var t2, _this = this, _s27_ = "_fadeoutAnimationController", t1 = _this._widget; t1.toString; t2 = notification.metrics; if (!t1.notificationPredicate$1(A.ScrollUpdateNotification$(notification.context, notification.ViewportNotificationMixin__depth, null, t2, null))) return false; if (_this.get$showScrollbar()) if (A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, "_status") !== B.AnimationStatus_1 && A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, "_status") !== B.AnimationStatus_3) A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).forward$0(0); t1 = t2.axisDirection; if (_this._shouldUpdatePainter$1(A.axisDirectionToAxis(t1))) A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter").update$2(0, t2, t1); return false; }, _handleScrollNotification$1(notification) { var metrics, t1, t2, _this = this, _s27_ = "_fadeoutAnimationController", _s7_ = "_status", _s16_ = "scrollbarPainter"; if (!_this._widget.notificationPredicate$1(notification)) return false; metrics = notification.metrics; t1 = metrics._scroll_metrics$_maxScrollExtent; t1.toString; t2 = metrics._scroll_metrics$_minScrollExtent; t2.toString; if (t1 <= t2) { if (A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, _s7_) !== B.AnimationStatus_0 && A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, _s7_) !== B.AnimationStatus_2) A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).reverse$0(0); t1 = metrics.axisDirection; if (_this._shouldUpdatePainter$1(A.axisDirectionToAxis(t1))) A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).update$2(0, metrics, t1); return false; } if (notification instanceof A.ScrollUpdateNotification || notification instanceof A.OverscrollNotification) { if (A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, _s7_) !== B.AnimationStatus_1 && A._lateReadCheck(A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).__AnimationController__status, _s7_) !== B.AnimationStatus_3) A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, _s27_).forward$0(0); t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); t1 = metrics.axisDirection; if (_this._shouldUpdatePainter$1(A.axisDirectionToAxis(t1))) A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, _s16_).update$2(0, metrics, t1); } else if (notification instanceof A.ScrollEndNotification) if (_this._dragScrollbarAxisOffset == null) _this._maybeStartFadeoutTimer$0(); return false; }, get$_gestures() { var t1, _this = this, gestures = A.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), controller = _this._widget.controller; if (controller == null) { t1 = _this._framework$_element; t1.toString; controller = A.PrimaryScrollController_of(t1); } if (controller == null || !_this.get$enableGestures()) return gestures; gestures.$indexSet(0, B.Type__ThumbPressGestureRecognizer_KUi, new A.GestureRecognizerFactoryWithHandlers(new A.RawScrollbarState__gestures_closure(_this), new A.RawScrollbarState__gestures_closure0(_this), type$.GestureRecognizerFactoryWithHandlers__ThumbPressGestureRecognizer)); gestures.$indexSet(0, B.Type__TrackTapGestureRecognizer_LjJ, new A.GestureRecognizerFactoryWithHandlers(new A.RawScrollbarState__gestures_closure1(_this), new A.RawScrollbarState__gestures_closure2(_this), type$.GestureRecognizerFactoryWithHandlers__TrackTapGestureRecognizer)); return gestures; }, isPointerOverScrollbar$3$forHover(position, kind, forHover) { var localOffset, t1 = this._scrollbarPainterKey; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1) == null) return false; localOffset = A._getLocalOffset(t1, position); return A._lateReadCheck(this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter").hitTestInteractive$3$forHover(localOffset, kind, true); }, handleHover$1($event) { var t1, _this = this; if (_this.isPointerOverScrollbar$3$forHover($event.get$position($event), $event.get$kind($event), true)) { _this._hoverIsActive = true; A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, "_fadeoutAnimationController").forward$0(0); t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); } else if (_this._hoverIsActive) { _this._hoverIsActive = false; _this._maybeStartFadeoutTimer$0(); } }, handleHoverExit$1($event) { this._hoverIsActive = false; this._maybeStartFadeoutTimer$0(); }, dispose$0(_) { var t1, _this = this; A._lateReadCheck(_this.__RawScrollbarState__fadeoutAnimationController, "_fadeoutAnimationController").dispose$0(0); t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); t1 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); t1.fadeoutOpacityAnimation.parent.removeListener$1(0, t1.get$notifyListeners()); t1.super$ChangeNotifier$dispose(0); _this.super$_RawScrollbarState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t1, t2, _this = this, _null = null; _this.updateScrollbarPainter$0(); t1 = _this.get$_gestures(); t2 = A._lateReadCheck(_this.__RawScrollbarState_scrollbarPainter, "scrollbarPainter"); return new A.NotificationListener(_this.get$_scrollbar$_handleScrollMetricsNotification(), new A.NotificationListener(_this.get$_handleScrollNotification(), new A.RepaintBoundary(new A.RawGestureDetector(A.MouseRegion$(A.CustomPaint$(new A.RepaintBoundary(_this._widget.child, _null), t2, _this._scrollbarPainterKey, _null, B.Size_0_0), B.C__DeferringMouseCursor, _null, _null, new A.RawScrollbarState_build_closure(_this), new A.RawScrollbarState_build_closure0(_this)), t1, _null, false, _null, _null), _null), _null, type$.NotificationListener_ScrollNotification), _null, type$.NotificationListener_ScrollMetricsNotification); } }; A.RawScrollbarState__maybeStartFadeoutTimer_closure.prototype = { call$0() { var t1 = this.$this; A._lateReadCheck(t1.__RawScrollbarState__fadeoutAnimationController, "_fadeoutAnimationController").reverse$0(0); t1._fadeoutTimer = null; }, $signature: 0 }; A.RawScrollbarState__gestures_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.pressDuration, t3 = type$.int, t4 = A.HashSet_HashSet(t3); return new A._ThumbPressGestureRecognizer(t1._scrollbarPainterKey, t2, null, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.GestureArenaEntry), t4, t1, null, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.PointerDeviceKind)); }, $signature: 1446 }; A.RawScrollbarState__gestures_closure0.prototype = { call$1(instance) { var t1 = this.$this; instance.onLongPress = t1.get$handleThumbPress(); instance.onLongPressStart = new A.RawScrollbarState__gestures__closure(t1); instance.onLongPressMoveUpdate = new A.RawScrollbarState__gestures__closure0(t1); instance.onLongPressEnd = new A.RawScrollbarState__gestures__closure1(t1); }, $signature: 1445 }; A.RawScrollbarState__gestures__closure.prototype = { call$1(details) { return this.$this.handleThumbPressStart$1(details.localPosition); }, $signature: 253 }; A.RawScrollbarState__gestures__closure0.prototype = { call$1(details) { return this.$this.handleThumbPressUpdate$1(details.localPosition); }, $signature: 238 }; A.RawScrollbarState__gestures__closure1.prototype = { call$1(details) { return this.$this.handleThumbPressEnd$2(details.localPosition, details.velocity); }, $signature: 390 }; A.RawScrollbarState__gestures_closure1.prototype = { call$0() { var t1 = this.$this, t2 = type$.int, t3 = A.HashSet_HashSet(t2); return new A._TrackTapGestureRecognizer(t1._scrollbarPainterKey, B.Duration_100000, 18, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), t3, t1, null, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, $signature: 1444 }; A.RawScrollbarState__gestures_closure2.prototype = { call$1(instance) { instance.onTapDown = this.$this.get$_handleTrackTapDown(); }, $signature: 1441 }; A.RawScrollbarState_build_closure.prototype = { call$1($event) { var t1; switch ($event.get$kind($event).index) { case 1: t1 = this.$this; if (t1.get$enableGestures()) t1.handleHoverExit$1($event); break; case 2: case 3: case 5: case 0: default: break; } }, $signature: 200 }; A.RawScrollbarState_build_closure0.prototype = { call$1($event) { var t1; switch ($event.get$kind($event).index) { case 1: t1 = this.$this; if (t1.get$enableGestures()) t1.handleHover$1($event); break; case 2: case 3: case 5: case 0: default: break; } }, $signature: 1440 }; A._ThumbPressGestureRecognizer.prototype = { isPointerAllowed$1($event) { if (!this._hitTestInteractive$3(this._customPaintKey, $event.get$position($event), $event.get$kind($event))) return false; return this.super$LongPressGestureRecognizer$isPointerAllowed($event); }, _hitTestInteractive$3(customPaintKey, offset, kind) { var t1; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey) == null) return false; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey)._widget; t1.toString; t1 = type$.CustomPaint._as(t1).foregroundPainter; t1.toString; return type$.ScrollbarPainter._as(t1).hitTestOnlyThumbInteractive$2(A._getLocalOffset(customPaintKey, offset), kind); } }; A._TrackTapGestureRecognizer.prototype = { isPointerAllowed$1($event) { if (!this._hitTestInteractive$3(this._customPaintKey, $event.get$position($event), $event.get$kind($event))) return false; return this.super$TapGestureRecognizer$isPointerAllowed($event); }, _hitTestInteractive$3(customPaintKey, offset, kind) { var t1, localOffset; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey) == null) return false; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey)._widget; t1.toString; t1 = type$.CustomPaint._as(t1).foregroundPainter; t1.toString; type$.ScrollbarPainter._as(t1); localOffset = A._getLocalOffset(customPaintKey, offset); return t1.hitTestInteractive$2(localOffset, kind) && !t1.hitTestOnlyThumbInteractive$2(localOffset, kind); } }; A._RawScrollbarState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.SharedAppData.prototype = { createState$0() { return new A._SharedAppDataState(B._StateLifecycle_0); } }; A._SharedAppDataState.prototype = { build$1(_, context) { var t1 = this._widget.child, value = this.___SharedAppDataState_data; return new A._SharedAppModel(value === $ ? this.___SharedAppDataState_data = A.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$.nullable_Object) : value, t1, null); } }; A._SharedAppModel.prototype = { updateShouldNotify$1(old) { return this.data !== old.data; }, updateShouldNotifyDependent$2(old, keys) { var t1, t2, key; for (t1 = keys.get$iterator(keys), t2 = this.data; t1.moveNext$0();) { key = t1.get$current(t1); if (!J.$eq$(t2.$index(0, key), old.data.$index(0, key))) return true; } return false; } }; A.KeySet.prototype = { KeySet$4(key1, key2, key3, key4, _box_0, $T) { _box_0.count = 1; }, $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return A._instanceType(this)._eval$1("KeySet")._is(other) && A.setEquals(other._shortcuts$_keys, this._shortcuts$_keys); }, get$hashCode(_) { var result, _this = this, value = _this.__KeySet_hashCode; if (value === $) { result = A.KeySet__computeHashCode(_this._shortcuts$_keys); A._lateInitializeOnceCheck(_this.__KeySet_hashCode, "hashCode"); _this.__KeySet_hashCode = result; value = result; } return value; } }; A.LogicalKeySet.prototype = { get$triggers() { return this.get$_triggers(); }, get$_triggers() { var t1, t2, result, _this = this, value = _this.__LogicalKeySet__triggers; if (value === $) { t1 = _this._shortcuts$_keys.toSet$0(0); t2 = A._instanceType(t1)._eval$1("ExpandIterable"); result = A.LinkedHashSet_LinkedHashSet$of(new A.ExpandIterable(t1, new A.LogicalKeySet__triggers_closure(), t2), t2._eval$1("Iterable.E")); A._lateInitializeOnceCheck(_this.__LogicalKeySet__triggers, "_triggers"); _this.__LogicalKeySet__triggers = result; value = result; } return value; }, accepts$2($event, state) { var collapsedRequired, t1, collapsedPressed; if (!($event instanceof A.RawKeyDownEvent)) return false; collapsedRequired = A.LogicalKeyboardKey_collapseSynonyms(this._shortcuts$_keys.toSet$0(0)); t1 = state._keysPressed; t1 = t1.get$values(t1); collapsedPressed = A.LogicalKeyboardKey_collapseSynonyms(A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E"))); t1 = collapsedRequired.difference$1(collapsedPressed); return t1.get$isEmpty(t1) && collapsedRequired._collection$_length === collapsedPressed._collection$_length; }, $isShortcutActivator: 1 }; A.LogicalKeySet__triggers_closure.prototype = { call$1(key) { var t1 = $.$get$LogicalKeySet__unmapSynonyms().$index(0, key); return t1 == null ? A._setArrayType([key], type$.JSArray_LogicalKeyboardKey) : t1; }, $signature: 1439 }; A.SingleActivator.prototype = { get$triggers() { return A._setArrayType([this.trigger], type$.JSArray_LogicalKeyboardKey); }, accepts$2($event, state) { var pressed, _this = this, t1 = state._keysPressed; t1 = t1.get$values(t1); pressed = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")); if ($event instanceof A.RawKeyDownEvent) { t1 = pressed.contains$1(0, B.LogicalKeyboardKey_8589934848) || pressed.contains$1(0, B.LogicalKeyboardKey_8589934849); if (_this.control === t1) { t1 = pressed.contains$1(0, B.LogicalKeyboardKey_8589934850) || pressed.contains$1(0, B.LogicalKeyboardKey_8589934851); if (_this.shift === t1) { t1 = pressed.contains$1(0, B.LogicalKeyboardKey_8589934852) || pressed.contains$1(0, B.LogicalKeyboardKey_8589934853); if (_this.alt === t1) { t1 = pressed.contains$1(0, B.LogicalKeyboardKey_8589934854) || pressed.contains$1(0, B.LogicalKeyboardKey_8589934855); t1 = _this.meta === t1; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, $isShortcutActivator: 1 }; A._ActivatorIntentPair.prototype = {}; A.ShortcutManager.prototype = { set$shortcuts(value) { var _this = this; if (!A.mapEquals(_this._shortcuts, value)) { _this._shortcuts = value; _this._indexedShortcutsCache = null; _this.notifyListeners$0(); } }, get$_indexedShortcuts() { var t1 = this._indexedShortcutsCache; return t1 == null ? this._indexedShortcutsCache = A.ShortcutManager__indexShortcuts(this._shortcuts) : t1; }, _find$2($event, state) { var t2, _i, activatorIntent, candidatesByKey = this.get$_indexedShortcuts().$index(0, $event.data.get$logicalKey()), candidatesByNull = this.get$_indexedShortcuts().$index(0, null), t1 = A._setArrayType([], type$.JSArray__ActivatorIntentPair); if (candidatesByKey != null) B.JSArray_methods.addAll$1(t1, candidatesByKey); if (candidatesByNull != null) B.JSArray_methods.addAll$1(t1, candidatesByNull); for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { activatorIntent = t1[_i]; if (activatorIntent.activator.accepts$2($event, state)) return activatorIntent.intent; } return null; }, handleKeypress$2(context, $event) { var t1, primaryContext, action, matchedIntent = this._find$2($event, $.$get$RawKeyboard_instance()); if (matchedIntent != null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; primaryContext = t1 == null ? null : t1._context; if (primaryContext != null) { action = A.Actions_maybeFind(primaryContext, matchedIntent, type$.Intent); if (action != null && action.isEnabled$1(0, matchedIntent)) { primaryContext.dependOnInheritedWidgetOfExactType$1$0(type$._ActionsMarker); t1 = A.Actions__findDispatcher(primaryContext); t1.invokeAction$3(action, matchedIntent, primaryContext); return action.consumesKey$1(matchedIntent) ? B.KeyEventResult_0 : B.KeyEventResult_2; } } } return B.KeyEventResult_1; } }; A.ShortcutManager__indexShortcuts_closure.prototype = { call$2(activator, intent) { var nullableTriggers = activator.get$triggers(), t1 = J.get$iterator$ax(nullableTriggers), t2 = this.result; for (; t1.moveNext$0();) J.add$1$ax(t2.putIfAbsent$2(0, t1.get$current(t1), new A.ShortcutManager__indexShortcuts__closure()), new A._ActivatorIntentPair(activator, intent)); }, $signature: 1438 }; A.ShortcutManager__indexShortcuts__closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray__ActivatorIntentPair); }, $signature: 1414 }; A.Shortcuts.prototype = { createState$0() { return new A._ShortcutsState(B._StateLifecycle_0); } }; A._ShortcutsState.prototype = { get$manager() { this._widget.toString; var t1 = this._internalManager; t1.toString; return t1; }, dispose$0(_) { var t1 = this._internalManager; if (t1 != null) { t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } this.super$State$dispose(0); }, initState$0() { var _this = this; _this.super$State$initState(); _this._widget.toString; _this._internalManager = new A.ShortcutManager(B.Map_empty1, $.$get$ChangeNotifier__emptyListeners()); _this.get$manager().set$shortcuts(_this._widget.shortcuts); }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); _this._widget.toString; oldWidget.toString; _this.get$manager().set$shortcuts(_this._widget.shortcuts); }, _handleOnKey$2(node, $event) { var t1, t2; if (node._context == null) return B.KeyEventResult_1; t1 = this.get$manager(); t2 = node._context; t2.toString; return t1.handleKeypress$2(t2, $event); }, build$1(_, context) { var _null = null, t1 = B.Type_Shortcuts_6TW.toString$0(0); return A.Focus$(false, false, new A._ShortcutsMarker(this.get$manager(), this._widget.child, _null), t1, _null, _null, _null, true, _null, _null, this.get$_handleOnKey(), _null, _null); } }; A._ShortcutsMarker.prototype = {}; A._LogicalKeySet_KeySet_Diagnosticable.prototype = {}; A._ShortcutManager_ChangeNotifier_Diagnosticable.prototype = {}; A._SingleActivator_Object_Diagnosticable.prototype = {}; A._SingleActivator_Object_Diagnosticable_MenuSerializableShortcut.prototype = {}; A.__ActivatorIntentPair_Object_Diagnosticable.prototype = {}; A.SingleChildScrollView.prototype = { build$1(_, context) { var t2, scrollController, scrollable, _this = this, t1 = {}, axisDirection = A.getAxisDirectionFromAxisReverseAndDirectionality(context, _this.scrollDirection, _this.reverse), contents = _this.child; t1.contents = contents; t2 = _this.padding; if (t2 != null) t1.contents = new A.Padding(t2, contents, null); t2 = _this.primary; scrollController = t2 ? A.PrimaryScrollController_of(context) : _this.controller; scrollable = A.Scrollable$(axisDirection, scrollController, _this.dragStartBehavior, false, _this.physics, _this.restorationId, null, null, new A.SingleChildScrollView_build_closure(t1, _this, axisDirection)); return t2 && scrollController != null ? A.PrimaryScrollController$none(scrollable) : scrollable; } }; A.SingleChildScrollView_build_closure.prototype = { call$2(context, offset) { return new A._SingleChildViewport(this.axisDirection, offset, B.Clip_1, this._box_0.contents, null); }, $signature: 1413 }; A._SingleChildViewport.prototype = { createRenderObject$1(context) { var t1 = new A._RenderSingleChildViewport(this.axisDirection, this.offset, this.clipBehavior, A.LayerHandle$(type$.ClipRectLayer), null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2(context, renderObject) { var t1; renderObject.set$axisDirection(this.axisDirection); renderObject.set$offset(0, this.offset); t1 = this.clipBehavior; if (t1 !== renderObject._single_child_scroll_view$_clipBehavior) { renderObject._single_child_scroll_view$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } }, createElement$0(_) { return new A._SingleChildViewportElement(this, B._ElementLifecycle_0); } }; A._SingleChildViewportElement.prototype = {}; A._RenderSingleChildViewport.prototype = { set$axisDirection(value) { if (value === this._single_child_scroll_view$_axisDirection) return; this._single_child_scroll_view$_axisDirection = value; this.markNeedsLayout$0(); }, set$offset(_, value) { var _this = this, t1 = _this._single_child_scroll_view$_offset; if (value == t1) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$_hasScrolled()); _this._single_child_scroll_view$_offset = value; if (_this._node$_owner != null) value.addListener$1(0, _this.get$_hasScrolled()); _this.markNeedsLayout$0(); }, _hasScrolled$0() { this.markNeedsPaint$0(); this.markNeedsSemanticsUpdate$0(); }, setupParentData$1(child) { if (!(child.parentData instanceof A.ParentData)) child.parentData = new A.ParentData(); }, attach$1(owner) { this.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$attach(owner); this._single_child_scroll_view$_offset.addListener$1(0, this.get$_hasScrolled()); }, detach$0(_) { this._single_child_scroll_view$_offset.removeListener$1(0, this.get$_hasScrolled()); this.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$detach(0); }, get$isRepaintBoundary() { return true; }, get$_viewportExtent() { switch (A.axisDirectionToAxis(this._single_child_scroll_view$_axisDirection).index) { case 0: return this._box$_size._dx; case 1: return this._box$_size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, get$_single_child_scroll_view$_maxScrollExtent() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; switch (A.axisDirectionToAxis(_this._single_child_scroll_view$_axisDirection).index) { case 0: return Math.max(0, t1._box$_size._dx - _this._box$_size._dx); case 1: return Math.max(0, t1._box$_size._dy - _this._box$_size._dy); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _single_child_scroll_view$_getInnerConstraints$1(constraints) { switch (A.axisDirectionToAxis(this._single_child_scroll_view$_axisDirection).index) { case 0: return new A.BoxConstraints(0, 1 / 0, constraints.minHeight, constraints.maxHeight); case 1: return new A.BoxConstraints(constraints.minWidth, constraints.maxWidth, 0, 1 / 0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(B._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDryLayout$1(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return constraints.constrain$1(t1.getDryLayout$1(this._single_child_scroll_view$_getInnerConstraints$1(constraints))); }, performLayout$0() { var _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); else { t1.layout$2$parentUsesSize(0, _this._single_child_scroll_view$_getInnerConstraints$1(constraints), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } _this._single_child_scroll_view$_offset.applyViewportDimension$1(_this.get$_viewportExtent()); _this._single_child_scroll_view$_offset.applyContentDimensions$2(0, _this.get$_single_child_scroll_view$_maxScrollExtent()); }, _paintOffsetForPosition$1(position) { var _this = this; switch (_this._single_child_scroll_view$_axisDirection.index) { case 0: return new A.Offset(0, position - _this.RenderObjectWithChildMixin__child._box$_size._dy + _this._box$_size._dy); case 2: return new A.Offset(0, -position); case 3: return new A.Offset(position - _this.RenderObjectWithChildMixin__child._box$_size._dx + _this._box$_size._dx, 0); case 1: return new A.Offset(-position, 0); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _shouldClipAtPaintOffset$1(paintOffset) { var t2, t3, t4, t5, t1 = paintOffset._dx; if (!(t1 < 0)) { t2 = paintOffset._dy; if (!(t2 < 0)) { t3 = this.RenderObjectWithChildMixin__child._box$_size; t4 = t3._dx; t5 = this._box$_size; t1 = t1 + t4 > t5._dx || t2 + t3._dy > t5._dy; } else t1 = true; } else t1 = true; return t1; }, paint$2(context, offset) { var t1, paintOffset, t2, t3, t4, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; paintOffset = _this._paintOffsetForPosition$1(t1); t1 = new A._RenderSingleChildViewport_paint_paintContents(_this, paintOffset); t2 = _this._shouldClipAtPaintOffset$1(paintOffset) && _this._single_child_scroll_view$_clipBehavior !== B.Clip_0; t3 = _this._single_child_scroll_view$_clipRectLayer; if (t2) { t2 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t4 = _this._box$_size; t3.set$layer(0, context.pushClipRect$6$clipBehavior$oldLayer(t2, offset, new A.Rect(0, 0, 0 + t4._dx, 0 + t4._dy), t1, _this._single_child_scroll_view$_clipBehavior, t3._layer)); } else { t3.set$layer(0, null); t1.call$2(context, offset); } } }, dispose$0(_) { this._single_child_scroll_view$_clipRectLayer.set$layer(0, null); this.super$RenderObject$dispose(0); }, applyPaintTransform$2(child, transform) { var paintOffset, t1 = this._single_child_scroll_view$_offset._pixels; t1.toString; paintOffset = this._paintOffsetForPosition$1(t1); transform.translate$2(0, paintOffset._dx, paintOffset._dy); }, describeApproximatePaintClip$1(child) { var t1, _this = this; if (child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; t1 = _this._shouldClipAtPaintOffset$1(_this._paintOffsetForPosition$1(t1)); } else t1 = false; if (t1) { t1 = _this._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } return null; }, hitTestChildren$2$position(result, position) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; return result.addWithPaintOffset$3$hitTest$offset$position(new A._RenderSingleChildViewport_hitTestChildren_closure(_this, position), _this._paintOffsetForPosition$1(t1), position); } return false; }, getOffsetToReveal$3$rect(target, alignment, rect) { var t1, bounds, mainAxisExtent, t2, leadingScrollOffset, targetMainAxisExtent, targetOffset, _this = this; if (rect == null) rect = target.get$paintBounds(); if (!(target instanceof A.RenderBox)) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; return new A.RevealedOffset(t1, rect); } bounds = A.MatrixUtils_transformRect(target.getTransformTo$1(0, _this.RenderObjectWithChildMixin__child), rect); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; switch (_this._single_child_scroll_view$_axisDirection.index) { case 0: mainAxisExtent = _this._box$_size._dy; t2 = bounds.bottom; leadingScrollOffset = t1._dy - t2; targetMainAxisExtent = t2 - bounds.top; break; case 1: mainAxisExtent = _this._box$_size._dx; leadingScrollOffset = bounds.left; targetMainAxisExtent = bounds.right - leadingScrollOffset; break; case 2: mainAxisExtent = _this._box$_size._dy; leadingScrollOffset = bounds.top; targetMainAxisExtent = bounds.bottom - leadingScrollOffset; break; case 3: mainAxisExtent = _this._box$_size._dx; t2 = bounds.right; leadingScrollOffset = t1._dx - t2; targetMainAxisExtent = t2 - bounds.left; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } targetOffset = leadingScrollOffset - (mainAxisExtent - targetMainAxisExtent) * alignment; return new A.RevealedOffset(targetOffset, bounds.shift$1(_this._paintOffsetForPosition$1(targetOffset))); }, showOnScreen$4$curve$descendant$duration$rect(curve, descendant, duration, rect) { var _this = this; if (!_this._single_child_scroll_view$_offset.physics.get$allowImplicitScrolling()) return _this.super$RenderObject$showOnScreen(curve, descendant, duration, rect); _this.super$RenderObject$showOnScreen(curve, null, duration, A.RenderViewportBase_showInViewport(curve, descendant, duration, _this._single_child_scroll_view$_offset, rect, _this)); }, showOnScreen$0() { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, null); }, showOnScreen$1$rect(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, null, B.Duration_0, rect); }, showOnScreen$3$curve$duration$rect(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, showOnScreen$2$descendant$rect(descendant, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(B.Cubic_JUR, descendant, B.Duration_0, rect); }, describeSemanticsClip$1(child) { var t1; switch (A.axisDirectionToAxis(this._single_child_scroll_view$_axisDirection).index) { case 1: t1 = this._box$_size; return new A.Rect(0, -250, 0 + t1._dx, 0 + t1._dy + 250); case 0: t1 = this._box$_size; return new A.Rect(-250, 0, 0 + t1._dx + 250, 0 + t1._dy); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $isRenderAbstractViewport: 1 }; A._RenderSingleChildViewport_paint_paintContents.prototype = { call$2(context, offset) { var t1 = this.$this.RenderObjectWithChildMixin__child; t1.toString; context.paintChild$2(t1, offset.$add(0, this.paintOffset)); }, $signature: 93 }; A._RenderSingleChildViewport_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin.prototype = {}; A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin.prototype = {}; A.SliverChildDelegate.prototype = { get$estimatedChildCount() { return null; }, toString$0(_) { var description = A._setArrayType([], type$.JSArray_String); this.debugFillDescription$1(description); return "#" + A.shortHash(this) + "(" + B.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1(description) { var children, e, exception; try { children = this.get$estimatedChildCount(); if (children != null) description.push("estimated child count: " + A.S(children)); } catch (exception) { e = A.unwrapException(exception); description.push("estimated child count: EXCEPTION (" + J.get$runtimeType$(e).toString$0(0) + ")"); } } }; A._SaltedValueKey.prototype = {}; A.SliverChildBuilderDelegate.prototype = { findIndexByKey$1(key) { return null; }, build$2(_, context, index) { var child, exception, stackTrace, t1, exception0, details, key, semanticIndex, _null = null; if (!(index < 0)) { t1 = this.childCount; t1 = t1 != null && index >= t1; } else t1 = true; if (t1) return _null; child = null; try { child = this.builder.call$2(context, index); } catch (exception0) { exception = A.unwrapException(exception0); stackTrace = A.getTraceFromException(exception0); details = new A.FlutterErrorDetails(exception, stackTrace, "widgets library", A.ErrorDescription$("building"), _null, _null, false); A.FlutterError_reportError(details); child = A.ErrorWidget__defaultErrorWidgetBuilder(details); } if (child == null) return _null; if (child.key != null) { t1 = child.key; t1.toString; key = new A._SaltedValueKey(t1); } else key = _null; t1 = child; child = new A.RepaintBoundary(t1, _null); semanticIndex = this.semanticIndexCallback.call$2(child, index); if (semanticIndex != null) child = new A.IndexedSemantics(semanticIndex, child, _null); t1 = child; child = new A.AutomaticKeepAlive(t1, _null); return new A.KeyedSubtree(child, key); }, get$estimatedChildCount() { return this.childCount; }, shouldRebuild$1(oldDelegate) { return true; } }; A.SliverChildListDelegate.prototype = { _findChildIndex$1(key) { var t2, t3, index, _null = null, t1 = this._keyToIndex; if (!t1.containsKey$1(0, key)) { t2 = t1.$index(0, _null); t2.toString; for (t3 = this.children, index = t2; index < t3.length;) { t2 = t3[index].key; if (t2 != null) t1.$indexSet(0, t2, index); if (J.$eq$(t2, key)) { t1.$indexSet(0, _null, index + 1); return index; } ++index; } t1.$indexSet(0, _null, index); } else return t1.$index(0, key); return _null; }, findIndexByKey$1(key) { return this._findChildIndex$1(key instanceof A._SaltedValueKey ? key.value : key); }, build$2(_, context, index) { var child, t1, key, semanticIndex, _null = null; if (index < 0 || index >= this.children.length) return _null; child = this.children[index]; t1 = child.key; key = t1 != null ? new A._SaltedValueKey(t1) : _null; if (this.addRepaintBoundaries) child = new A.RepaintBoundary(child, _null); semanticIndex = A._kDefaultSemanticIndexCallback(child, index); if (semanticIndex != null) child = new A.IndexedSemantics(semanticIndex, child, _null); return new A.KeyedSubtree(new A.AutomaticKeepAlive(child, _null), key); }, get$estimatedChildCount() { return this.children.length; }, shouldRebuild$1(oldDelegate) { var t1 = this.children, t2 = oldDelegate.children; return t1 == null ? t2 != null : t1 !== t2; } }; A.SliverWithKeepAliveWidget.prototype = {}; A.SliverMultiBoxAdaptorWidget.prototype = { createElement$0(_) { return A.SliverMultiBoxAdaptorElement$(this, false); }, estimateMaxScrollOffset$5(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { return null; } }; A.SliverList.prototype = { createElement$0(_) { return A.SliverMultiBoxAdaptorElement$(this, true); }, createRenderObject$1(context) { var t1 = new A.RenderSliverList(type$.SliverMultiBoxAdaptorElement._as(context), A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; A.SliverGrid.prototype = { createRenderObject$1(context) { var t1 = new A.RenderSliverGrid(this.gridDelegate, type$.SliverMultiBoxAdaptorElement._as(context), A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$gridDelegate(this.gridDelegate); }, estimateMaxScrollOffset$5(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { var t1, t2; this.super$SliverMultiBoxAdaptorWidget$estimateMaxScrollOffset(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset); t1 = this.gridDelegate.getLayout$1(constraints); t2 = this.delegate.get$estimatedChildCount(); t2.toString; t2 = t1.computeMaxScrollOffset$1(t2); return t2; } }; A.SliverMultiBoxAdaptorElement.prototype = { get$renderObject() { return type$.RenderSliverMultiBoxAdaptor._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, update$1(_, newWidget) { var newDelegate, oldDelegate, t1 = this._widget; t1.toString; type$.SliverMultiBoxAdaptorWidget._as(t1); this.super$RenderObjectElement$update(0, newWidget); newDelegate = newWidget.delegate; oldDelegate = t1.delegate; if (newDelegate !== oldDelegate) t1 = A.getRuntimeType(newDelegate) !== A.getRuntimeType(oldDelegate) || newDelegate.shouldRebuild$1(oldDelegate); else t1 = false; if (t1) this.performRebuild$0(); }, performRebuild$0() { var newChildren, indexToLayoutOffset, adaptorWidget, processElement, index, key, newIndex, childParentData, lastKey, rightBoundary, t1, t2, t3, t4, t5, _i, t6, lastKey0, _this = this, _null = null, _box_0 = {}; _this.super$RenderObjectElement$performRebuild(); _this._currentBeforeChild = null; _box_0.childrenUpdated = false; try { t1 = type$.int; newChildren = A.SplayTreeMap$(t1, type$.nullable_Element); indexToLayoutOffset = A.HashMap_HashMap(_null, _null, _null, t1, type$.double); t1 = _this._widget; t1.toString; adaptorWidget = type$.SliverMultiBoxAdaptorWidget._as(t1); processElement = new A.SliverMultiBoxAdaptorElement_performRebuild_processElement(_box_0, _this, newChildren, adaptorWidget, indexToLayoutOffset); for (t1 = _this._childElements, t2 = t1.$ti, t2 = t2._eval$1("@<1>")._bind$1(t2._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>"), t2 = A.List_List$of(new A._SplayTreeKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")), t3 = t2.length, t4 = type$.nullable_SliverMultiBoxAdaptorParentData, t5 = _this._replaceMovedChildren, _i = 0; _i < t3; ++_i) { index = t2[_i]; key = t1.$index(0, index)._widget.key; newIndex = key == null ? _null : adaptorWidget.delegate.findIndexByKey$1(key); t6 = t1.$index(0, index).get$renderObject(); childParentData = t4._as(t6 == null ? _null : t6.parentData); if (childParentData != null && childParentData.layoutOffset != null) { t6 = childParentData.layoutOffset; t6.toString; J.$indexSet$ax(indexToLayoutOffset, index, t6); } if (newIndex != null && !J.$eq$(newIndex, index)) { if (childParentData != null) childParentData.layoutOffset = null; J.$indexSet$ax(newChildren, newIndex, t1.$index(0, index)); if (t5) J.putIfAbsent$2$x(newChildren, index, new A.SliverMultiBoxAdaptorElement_performRebuild_closure()); t1.remove$1(0, index); } else J.putIfAbsent$2$x(newChildren, index, new A.SliverMultiBoxAdaptorElement_performRebuild_closure0(_this, index)); } _this.get$renderObject().toString; t2 = newChildren; t3 = A.instanceType(t2); new A._SplayTreeKeyIterable(t2, t3._eval$1("@<1>")._bind$1(t3._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>")).forEach$1(0, processElement); if (!_box_0.childrenUpdated && _this._didUnderflow) { lastKey0 = t1.lastKey$0(); lastKey = lastKey0 == null ? -1 : lastKey0; rightBoundary = lastKey + 1; J.$indexSet$ax(newChildren, rightBoundary, t1.$index(0, rightBoundary)); processElement.call$1(rightBoundary); } } finally { _this._currentlyUpdatingChildIndex = null; _this.get$renderObject().toString; } }, createChild$2$after(index, after) { this._owner.buildScope$2(this, new A.SliverMultiBoxAdaptorElement_createChild_closure(this, after, index)); }, updateChild$3(child, newWidget, newSlot) { var t1, t2, newChild, t3, _null = null; if (child == null) t1 = _null; else { t1 = child.get$renderObject(); t1 = t1 == null ? _null : t1.parentData; } t2 = type$.nullable_SliverMultiBoxAdaptorParentData; t2._as(t1); newChild = this.super$Element$updateChild(child, newWidget, newSlot); if (newChild == null) t3 = _null; else { t3 = newChild.get$renderObject(); t3 = t3 == null ? _null : t3.parentData; } t2._as(t3); if (t1 != t3 && t1 != null && t3 != null) t3.layoutOffset = t1.layoutOffset; return newChild; }, forgetChild$1(child) { this._childElements.remove$1(0, child._slot); this.super$Element$forgetChild(child); }, removeChild$1(child) { var t1, _this = this; _this.get$renderObject().toString; t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).index; t1.toString; _this._owner.buildScope$2(_this, new A.SliverMultiBoxAdaptorElement_removeChild_closure(_this, t1)); }, estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { var t2, childCount, t1 = this._widget; t1.toString; t2 = type$.SliverMultiBoxAdaptorWidget; childCount = t2._as(t1).delegate.get$estimatedChildCount(); if (childCount == null) return 1 / 0; t1 = this._widget; t1.toString; t2._as(t1); firstIndex.toString; lastIndex.toString; leadingScrollOffset.toString; t1 = t1.estimateMaxScrollOffset$5(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset); return t1 == null ? A.SliverMultiBoxAdaptorElement__extrapolateMaxScrollOffset(firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset, childCount) : t1; }, get$childCount() { var t2, result, lo, hi, lo0, mid, _this = this, t1 = _this._widget; t1.toString; t2 = type$.SliverMultiBoxAdaptorWidget; result = t2._as(t1).delegate.get$estimatedChildCount(); if (result == null) { t1 = _this._widget; t1.toString; for (t1 = t2._as(t1).delegate, lo = 0, hi = 1; lo0 = hi - 1, t1.build$2(0, _this, lo0) != null; lo = lo0) if (hi < 4503599627370496) hi *= 2; else { if (hi >= 9007199254740992) throw A.wrapException(A.FlutterError_FlutterError("Could not find the number of children in " + t1.toString$0(0) + ".\nThe childCount getter was called (implying that the delegate's builder returned null for a positive index), but even building the child with index " + hi + " (the maximum possible integer) did not return null. Consider implementing childCount to avoid the cost of searching for the final child.")); hi = 9007199254740992; } for (; t2 = hi - lo, t2 > 1;) { mid = B.JSInt_methods._tdivFast$1(t2, 2) + lo; if (t1.build$2(0, _this, mid - 1) == null) hi = mid; else lo = mid; } result = lo; } return result; }, didFinishLayout$0() { var t1 = this._childElements; t1.firstKey$0(); t1.lastKey$0(); t1 = this._widget; t1.toString; type$.SliverMultiBoxAdaptorWidget._as(t1); }, didAdoptChild$1(child) { var t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1).index = this._currentlyUpdatingChildIndex; }, insertRenderObjectChild$2(child, slot) { var t2, t1 = this.get$renderObject(); type$.RenderBox._as(child); t2 = this._currentBeforeChild; t1.toString; t1.super$ContainerRenderObjectMixin$insert(0, child, t2); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { this.get$renderObject().move$2$after(type$.RenderBox._as(child), this._currentBeforeChild); }, removeRenderObjectChild$2(child, slot) { this.get$renderObject().remove$1(0, type$.RenderBox._as(child)); }, visitChildren$1(visitor) { var t1 = this._childElements, t2 = t1.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_SplayTreeValueIterable<1,2>"); t2 = A.CastIterable_CastIterable(new A._SplayTreeValueIterable(t1, t2), t2._eval$1("Iterable.E"), type$.Element_2); B.JSArray_methods.forEach$1(A.List_List$of(t2, true, A._instanceType(t2)._eval$1("Iterable.E")), visitor); } }; A.SliverMultiBoxAdaptorElement_performRebuild_processElement.prototype = { call$1(index) { var newChild, parentData, t2, t3, _this = this, t1 = _this.$this; t1._currentlyUpdatingChildIndex = index; t2 = t1._childElements; if (t2.$index(0, index) != null && !J.$eq$(t2.$index(0, index), _this.newChildren.$index(0, index))) { t2.$indexSet(0, index, t1.updateChild$3(t2.$index(0, index), null, index)); _this._box_0.childrenUpdated = true; } newChild = t1.updateChild$3(_this.newChildren.$index(0, index), _this.adaptorWidget.delegate.build$2(0, t1, index), index); if (newChild != null) { t3 = _this._box_0; t3.childrenUpdated = t3.childrenUpdated || !J.$eq$(t2.$index(0, index), newChild); t2.$indexSet(0, index, newChild); t2 = newChild.get$renderObject().parentData; t2.toString; parentData = type$.SliverMultiBoxAdaptorParentData._as(t2); if (index === 0) parentData.layoutOffset = 0; else { t2 = _this.indexToLayoutOffset; if (t2.containsKey$1(0, index)) parentData.layoutOffset = t2.$index(0, index); } if (!parentData._keptAlive) t1._currentBeforeChild = type$.nullable_RenderBox._as(newChild.get$renderObject()); } else { _this._box_0.childrenUpdated = true; t2.remove$1(0, index); } }, $signature: 89 }; A.SliverMultiBoxAdaptorElement_performRebuild_closure.prototype = { call$0() { return null; }, $signature: 1 }; A.SliverMultiBoxAdaptorElement_performRebuild_closure0.prototype = { call$0() { return this.$this._childElements.$index(0, this.index); }, $signature: 1408 }; A.SliverMultiBoxAdaptorElement_createChild_closure.prototype = { call$0() { var newChild, adaptorWidget, t2, _this = this, t1 = _this.$this; t1._currentBeforeChild = _this.after == null ? null : type$.nullable_RenderBox._as(t1._childElements.$index(0, _this.index - 1).get$renderObject()); newChild = null; try { t2 = t1._widget; t2.toString; adaptorWidget = type$.SliverMultiBoxAdaptorWidget._as(t2); t2 = t1._currentlyUpdatingChildIndex = _this.index; newChild = t1.updateChild$3(t1._childElements.$index(0, t2), adaptorWidget.delegate.build$2(0, t1, t2), t2); } finally { t1._currentlyUpdatingChildIndex = null; } t2 = _this.index; t1 = t1._childElements; if (newChild != null) t1.$indexSet(0, t2, newChild); else t1.remove$1(0, t2); }, $signature: 0 }; A.SliverMultiBoxAdaptorElement_removeChild_closure.prototype = { call$0() { var result, t1, t2, _this = this; try { t1 = _this.$this; t2 = t1._currentlyUpdatingChildIndex = _this.index; result = t1.updateChild$3(t1._childElements.$index(0, t2), null, t2); } finally { _this.$this._currentlyUpdatingChildIndex = null; } _this.$this._childElements.remove$1(0, _this.index); }, $signature: 0 }; A.KeepAlive.prototype = { applyParentData$1(renderObject) { var t2, targetParent, t1 = renderObject.parentData; t1.toString; type$.KeepAliveParentDataMixin._as(t1); t2 = this.keepAlive; if (t1.KeepAliveParentDataMixin_keepAlive !== t2) { t1.KeepAliveParentDataMixin_keepAlive = t2; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof A.RenderObject && !t2) targetParent.markNeedsLayout$0(); } } }; A.SliverFillViewport.prototype = { build$1(_, context) { var t1 = this.viewportFraction, t2 = B.JSInt_methods.clamp$2(1 - t1, 0, 1); return new A._SliverFractionalPadding(t2 / 2, new A._SliverFillViewportRenderObjectWidget(t1, this.delegate, null), null); } }; A._SliverFillViewportRenderObjectWidget.prototype = { createRenderObject$1(context) { var t1 = new A.RenderSliverFillViewport(this.viewportFraction, type$.SliverMultiBoxAdaptorElement._as(context), A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$viewportFraction(this.viewportFraction); } }; A._SliverFractionalPadding.prototype = { createRenderObject$1(context) { var t1 = new A._RenderSliverFractionalPadding(this.viewportFraction, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$viewportFraction(this.viewportFraction); } }; A._RenderSliverFractionalPadding.prototype = { set$viewportFraction(newValue) { var _this = this; if (_this._sliver_fill$_viewportFraction === newValue) return; _this._sliver_fill$_viewportFraction = newValue; _this._sliver_fill$_resolvedPadding = null; _this.markNeedsLayout$0(); }, get$resolvedPadding() { return this._sliver_fill$_resolvedPadding; }, _sliver_fill$_resolve$0() { var t1, paddingValue, _this = this; if (_this._sliver_fill$_resolvedPadding != null && J.$eq$(_this._lastResolvedConstraints, type$.SliverConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)))) return; t1 = type$.SliverConstraints; paddingValue = t1._as(A.RenderObject.prototype.get$constraints.call(_this)).viewportMainAxisExtent * _this._sliver_fill$_viewportFraction; _this._lastResolvedConstraints = t1._as(A.RenderObject.prototype.get$constraints.call(_this)); switch (A.axisDirectionToAxis(t1._as(A.RenderObject.prototype.get$constraints.call(_this)).axisDirection).index) { case 0: _this._sliver_fill$_resolvedPadding = new A.EdgeInsets(paddingValue, 0, paddingValue, 0); break; case 1: _this._sliver_fill$_resolvedPadding = new A.EdgeInsets(0, paddingValue, 0, paddingValue); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } return; }, performLayout$0() { this._sliver_fill$_resolve$0(); this.super$RenderSliverEdgeInsetsPadding$performLayout(); } }; A.SliverPersistentHeaderDelegate.prototype = {}; A.SliverPersistentHeader.prototype = { build$1(_, context) { return new A._SliverPinnedPersistentHeader(this.delegate, false, null); } }; A._FloatingHeader.prototype = { createState$0() { return new A._FloatingHeaderState(B._StateLifecycle_0); } }; A._FloatingHeaderState.prototype = { didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._sliver_persistent_header$_position; if (t1 != null) t1.isScrollingNotifier.removeListener$1(0, _this.get$_isScrollingListener()); t1 = _this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); if (t1 == null) t1 = null; else { t1 = t1._scrollable$_position; t1.toString; } _this._sliver_persistent_header$_position = t1; if (t1 != null) t1.isScrollingNotifier.addListener$1(0, _this.get$_isScrollingListener()); }, dispose$0(_) { var t1 = this._sliver_persistent_header$_position; if (t1 != null) t1.isScrollingNotifier.removeListener$1(0, this.get$_isScrollingListener()); this.super$State$dispose(0); }, _isScrollingListener$0() { var t3, t1 = this._framework$_element.findAncestorRenderObjectOfType$1$0(type$.RenderSliverFloatingPersistentHeader), t2 = this._sliver_persistent_header$_position; if (t2.isScrollingNotifier._change_notifier$_value) { t3 = t1 == null; if (!t3) t1._lastStartedScrollDirection = t2._userScrollDirection; if (!t3) { t1 = t1._sliver_persistent_header0$_controller; if (t1 != null) t1.stop$0(0); } } else if (t1 != null) t1.maybeStartSnapAnimation$1(t2._userScrollDirection); }, build$1(_, context) { return this._widget.child; } }; A._SliverPersistentHeaderElement.prototype = { get$renderObject() { return type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2($parent, newSlot) { this.super$RenderObjectElement$mount($parent, newSlot); type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this))._RenderSliverPersistentHeaderForWidgetsMixin__element = this; }, unmount$0() { type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this))._RenderSliverPersistentHeaderForWidgetsMixin__element = null; this.super$RenderObjectElement$unmount(); }, update$1(_, newWidget) { var newDelegate, oldDelegate, t1 = this._widget; t1.toString; type$._SliverPersistentHeaderRenderObjectWidget._as(t1); this.super$RenderObjectElement$update(0, newWidget); newDelegate = newWidget.delegate; oldDelegate = t1.delegate; if (newDelegate !== oldDelegate) if (A.getRuntimeType(newDelegate) === A.getRuntimeType(oldDelegate)) if (newDelegate.title.super$Object$$eq(0, oldDelegate.title)) if (newDelegate._bottomHeight === oldDelegate._bottomHeight) if (J.$eq$(newDelegate.backgroundColor, oldDelegate.backgroundColor)) if (newDelegate.topPadding == oldDelegate.topPadding) if (newDelegate.vsync === oldDelegate.vsync) if (newDelegate.snapConfiguration == oldDelegate.snapConfiguration) if (newDelegate.stretchConfiguration == oldDelegate.stretchConfiguration) if (newDelegate.showOnScreenConfiguration == oldDelegate.showOnScreenConfiguration) if (newDelegate.toolbarHeight === oldDelegate.toolbarHeight) t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = false; if (t1) type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).markNeedsLayout$0(); }, performRebuild$0() { this.super$RenderObjectElement$performRebuild(); type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).markNeedsLayout$0(); }, _sliver_persistent_header$_build$2(shrinkOffset, overlapsContent) { this._owner.buildScope$2(this, new A._SliverPersistentHeaderElement__build_closure(this, shrinkOffset, overlapsContent)); }, forgetChild$1(child) { this.child = null; this.super$Element$forgetChild(child); }, insertRenderObjectChild$2(child, slot) { type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(child); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { type$._RenderSliverPersistentHeaderForWidgetsMixin._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); }, visitChildren$1(visitor) { var t1 = this.child; if (t1 != null) visitor.call$1(t1); } }; A._SliverPersistentHeaderElement__build_closure.prototype = { call$0() { var t3, t4, t5, t1 = this.$this, t2 = t1._widget; t2.toString; type$._SliverPersistentHeaderRenderObjectWidget._as(t2); t3 = t1.child; t4 = this.shrinkOffset; t5 = this.overlapsContent; t2 = t2.delegate; t1.child = t1.updateChild$3(t3, t1.floating ? new A._FloatingHeader(t2.build$3(0, t1, t4, t5), null) : t2.build$3(0, t1, t4, t5), null); }, $signature: 0 }; A._SliverPersistentHeaderRenderObjectWidget.prototype = { createElement$0(_) { return new A._SliverPersistentHeaderElement(this.floating, this, B._ElementLifecycle_0); } }; A._RenderSliverPersistentHeaderForWidgetsMixin.prototype = { get$minExtent() { var t1 = this._RenderSliverPersistentHeaderForWidgetsMixin__element._widget; t1.toString; return type$._SliverPersistentHeaderRenderObjectWidget._as(t1).delegate.collapsedHeight; }, get$maxExtent() { var t1 = this._RenderSliverPersistentHeaderForWidgetsMixin__element._widget; t1.toString; return type$._SliverPersistentHeaderRenderObjectWidget._as(t1).delegate.get$maxExtent(); }, updateChild$2(shrinkOffset, overlapsContent) { this._RenderSliverPersistentHeaderForWidgetsMixin__element._sliver_persistent_header$_build$2(shrinkOffset, overlapsContent); } }; A._SliverPinnedPersistentHeader.prototype = { createRenderObject$1(context) { var t1 = new A._RenderSliverPinnedPersistentHeaderForWidgets(null, this.delegate.stretchConfiguration, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; A._RenderSliverPinnedPersistentHeaderForWidgets.prototype = {}; A.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin.prototype = {}; A.SlottedMultiChildRenderObjectWidgetMixin.prototype = { createElement$0(_) { var t1 = A._instanceType(this); return new A.SlottedRenderObjectElement(A.LinkedHashMap_LinkedHashMap$_empty(t1._eval$1("SlottedMultiChildRenderObjectWidgetMixin.S"), type$.Element_2), this, B._ElementLifecycle_0, t1._eval$1("SlottedRenderObjectElement")); } }; A.SlottedContainerRenderObjectMixin.prototype = { get$children(_) { var t1 = this.SlottedContainerRenderObjectMixin__slotToChild; return t1.get$values(t1); }, debugNameForSlot$1(slot) { if (type$.Enum._is(slot)) return slot._core$_name; return J.toString$0$(slot); }, redepthChildren$0() { J.forEach$1$ax(this.get$children(this), this.get$redepthChild()); }, visitChildren$1(visitor) { J.forEach$1$ax(this.get$children(this), visitor); }, debugDescribeChildren$0() { var t3, _this = this, _null = null, value = A._setArrayType([], type$.JSArray_DiagnosticsNode), t1 = _this.SlottedContainerRenderObjectMixin__slotToChild, t2 = t1.get$values(t1), map = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.RenderBox, A._instanceType(_this)._eval$1("SlottedContainerRenderObjectMixin.S")); A.MapBase__fillMapWithIterables(map, t2, new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"))); for (t1 = J.get$iterator$ax(_this.get$children(_this)); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = _this.debugNameForSlot$1(map.$index(0, t2)); t2.toString; value.push(new A.DiagnosticableTreeNode(t2, t3, true, true, _null, _null)); } return value; }, _setChild$2(child, slot) { var t1 = this.SlottedContainerRenderObjectMixin__slotToChild, oldChild = t1.$index(0, slot); if (oldChild != null) { this.dropChild$1(oldChild); t1.remove$1(0, slot); } if (child != null) { t1.$indexSet(0, slot, child); this.adoptChild$1(child); } } }; A.SlottedRenderObjectElement.prototype = { get$renderObject() { return this.$ti._eval$1("SlottedContainerRenderObjectMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, visitChildren$1(visitor) { var t1 = this._slotToChild; t1.get$values(t1).forEach$1(0, visitor); }, forgetChild$1(child) { this._slotToChild.remove$1(0, child._slot); this.super$Element$forgetChild(child); }, mount$2($parent, newSlot) { this.super$RenderObjectElement$mount($parent, newSlot); this._updateChildren$0(); }, update$1(_, newWidget) { this.super$RenderObjectElement$update(0, newWidget); this._updateChildren$0(); }, _updateChildren$0() { var t2, t3, t4, _i, slot, t5, oldChild, newChild, _this = this, t1 = _this._widget; t1.toString; _this.$ti._eval$1("SlottedMultiChildRenderObjectWidgetMixin<1>")._as(t1); for (t2 = t1.get$slots(), t3 = t2.length, t4 = _this._slotToChild, _i = 0; _i < t3; ++_i) { slot = t2[_i]; t5 = t1.childForSlot$1(slot); oldChild = t4.$index(0, slot); newChild = _this.updateChild$3(oldChild, t5, slot); if (oldChild != null) t4.remove$1(0, slot); if (newChild != null) t4.$indexSet(0, slot, newChild); } }, insertRenderObjectChild$2(child, slot) { this.$ti._eval$1("SlottedContainerRenderObjectMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this))._setChild$2(child, slot); }, removeRenderObjectChild$2(child, slot) { this.$ti._eval$1("SlottedContainerRenderObjectMixin<1>")._as(A.RenderObjectElement.prototype.get$renderObject.call(this))._setChild$2(null, slot); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { } }; A.Spacer.prototype = { build$1(_, context) { return A.Expanded$(B.SizedBox_0_0_null_null, 1); } }; A.TableRow.prototype = { toString$0(_) { var t2, t1 = this.key; t1 = t1 != null ? "TableRow(" + (t1.toString$0(0) + ", ") : "TableRow("; t2 = this.decoration; if (t2 != null) t1 += t2.toString$0(0) + ", "; t2 = this.children; t1 = t2.length === 0 ? t1 + "no children" : t1 + A.S(t2); t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A._TableElementRow.prototype = {}; A.Table.prototype = { createElement$0(_) { return new A._TableElement(B.List_empty14, A.HashSet_HashSet(type$.Element_2), this, B._ElementLifecycle_0); }, createRenderObject$1(context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = _this.children, t2 = t1.length; t1 = t2 !== 0 ? t1[0].children.length : 0; t3 = _this.columnWidths; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t4.toString; t4 = t4.textDirection; t5 = A.createLocalImageConfiguration(context, _null); t6 = A._setArrayType([], type$.JSArray_double); if (t3 == null) t3 = A.HashMap_HashMap(_null, _null, _null, type$.int, type$.TableColumnWidth); t6 = new A.RenderTable(B.List_empty13, t1, t2, t3, _this.defaultColumnWidth, t4, _this.border, t5, _this.defaultVerticalAlignment, _null, t6, A.LayerHandle$(type$.ContainerLayer_2)); t6.get$isRepaintBoundary(); t6.get$alwaysNeedsCompositing(); t6.__RenderObject__needsCompositing = false; t1 = A._setArrayType([], type$.JSArray_nullable_RenderBox); B.JSArray_methods.set$length(t1, t6._table$_columns * t6._rows); t6._table$_children = t1; t6.set$rowDecorations(_this._rowDecorations); return t6; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$columnWidths(_this.columnWidths); renderObject.set$defaultColumnWidth(_this.defaultColumnWidth); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); renderObject.set$border(0, _this.border); renderObject.set$rowDecorations(_this._rowDecorations); renderObject.set$configuration(A.createLocalImageConfiguration(context, null)); renderObject.set$defaultVerticalAlignment(_this.defaultVerticalAlignment); renderObject.set$textBaseline(0, null); } }; A.Table_closure.prototype = { call$1(row) { return row.decoration != null; }, $signature: 1407 }; A.Table_closure0.prototype = { call$1(row) { return row.decoration; }, $signature: 1406 }; A._TableElement.prototype = { get$renderObject() { return type$.RenderTable._as(A.RenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2($parent, newSlot) { var t2, t3, _this = this, t1 = {}; _this._table0$_doingMountOrUpdate = true; _this.super$RenderObjectElement$mount($parent, newSlot); t1.rowIndex = -1; t2 = _this._widget; t2.toString; t2 = type$.Table._as(t2).children; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,_TableElementRow>"); _this._table0$_children = A.List_List$of(new A.MappedListIterable(t2, new A._TableElement_mount_closure(t1, _this), t3), false, t3._eval$1("ListIterable.E")); _this._updateRenderObjectChildren$0(); _this._table0$_doingMountOrUpdate = false; }, insertRenderObjectChild$2(child, slot) { var t1 = type$.RenderTable; t1._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).toString; if (!(child.parentData instanceof A.TableCellParentData)) child.parentData = new A.TableCellParentData(B.Offset_0_0); if (!this._table0$_doingMountOrUpdate) t1._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).setChild$3(slot.column, slot.row, child); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { }, removeRenderObjectChild$2(child, slot) { type$.RenderTable._as(A.RenderObjectElement.prototype.get$renderObject.call(this)).setChild$3(slot.column, slot.row, null); }, update$1(_, newWidget) { var t1, oldKeyedRows, t2, t3, _i, row, t4, oldUnkeyedRows, newChildren, taken, rowIndex, t5, t6, oldChildren, _length, slots, columnIndex, _this = this; _this._table0$_doingMountOrUpdate = true; t1 = type$.List_Element; oldKeyedRows = A.LinkedHashMap_LinkedHashMap$_empty(type$.LocalKey, t1); for (t2 = _this._table0$_children, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { row = t2[_i]; t4 = row.key; if (t4 != null) oldKeyedRows.$indexSet(0, t4, row.children); } t2 = _this._table0$_children; t3 = B.JSArray_methods.get$iterator(t2); oldUnkeyedRows = new A.WhereIterator(t3, new A._TableElement_update_closure(), A._arrayInstanceType(t2)._eval$1("WhereIterator<1>")); newChildren = A._setArrayType([], type$.JSArray__TableElementRow); taken = A.LinkedHashSet_LinkedHashSet$_empty(t1); for (t1 = newWidget.children, t2 = _this._table0$_forgottenChildren, t4 = type$.JSArray__TableSlot, rowIndex = 0; rowIndex < t1.length; ++rowIndex) { row = t1[rowIndex]; t5 = row.key; t6 = t5 == null; if (!t6 && oldKeyedRows.containsKey$1(0, t5)) { t6 = oldKeyedRows.$index(0, t5); t6.toString; taken.add$1(0, t6); oldChildren = t6; } else oldChildren = t6 && oldUnkeyedRows.moveNext$0() ? t3.get$current(t3).children : B.List_empty15; t6 = row.children; _length = t6.length; slots = A._setArrayType(new Array(_length), t4); for (columnIndex = 0; columnIndex < _length; ++columnIndex) slots[columnIndex] = new A._TableSlot(columnIndex, rowIndex); newChildren.push(new A._TableElementRow(t5, _this.updateChildren$4$forgottenChildren$slots(oldChildren, t6, t2, slots))); } for (; oldUnkeyedRows.moveNext$0();) _this.updateChildren$3$forgottenChildren(t3.get$current(t3).children, B.List_empty12, t2); for (t1 = oldKeyedRows.get$values(oldKeyedRows), t3 = t1.get$iterator(t1), t1 = new A.WhereIterator(t3, new A._TableElement_update_closure0(taken), A._instanceType(t1)._eval$1("WhereIterator")); t1.moveNext$0();) _this.updateChildren$3$forgottenChildren(t3.get$current(t3), B.List_empty12, t2); _this._table0$_children = newChildren; _this._updateRenderObjectChildren$0(); t2.clear$0(0); _this.super$RenderObjectElement$update(0, newWidget); _this._table0$_doingMountOrUpdate = false; }, _updateRenderObjectChildren$0() { var t3, t4, t1 = type$.RenderTable._as(A.RenderObjectElement.prototype.get$renderObject.call(this)), t2 = this._table0$_children; t2 = t2.length !== 0 ? J.get$length$asx(t2[0].children) : 0; t3 = this._table0$_children; t4 = A._arrayInstanceType(t3)._eval$1("ExpandIterable<1,RenderBox>"); t1.setFlatChildren$2(t2, A.List_List$of(new A.ExpandIterable(t3, new A._TableElement__updateRenderObjectChildren_closure(), t4), true, t4._eval$1("Iterable.E"))); }, visitChildren$1(visitor) { var t1, t2, t3; for (t1 = this._table0$_children, t2 = A._arrayInstanceType(t1), t2 = new A.ExpandIterator(B.JSArray_methods.get$iterator(t1), new A._TableElement_visitChildren_closure(), B.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._eval$1("Element0"))._eval$1("ExpandIterator<1,2>")), t1 = this._table0$_forgottenChildren; t2.moveNext$0();) { t3 = t2.__internal$_current; if (!t1.contains$1(0, t3)) visitor.call$1(t3); } }, forgetChild$1(child) { this._table0$_forgottenChildren.add$1(0, child); this.super$Element$forgetChild(child); return true; } }; A._TableElement_mount_closure.prototype = { call$1(row) { var t2, t3, t4, t5, t1 = {}; t1.columnIndex = 0; t2 = this._box_1; ++t2.rowIndex; t3 = row.key; t4 = row.children; t5 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,Element0>"); return new A._TableElementRow(t3, A.List_List$of(new A.MappedListIterable(t4, new A._TableElement_mount__closure(t1, t2, this.$this), t5), false, t5._eval$1("ListIterable.E"))); }, $signature: 1405 }; A._TableElement_mount__closure.prototype = { call$1(child) { return this.$this.inflateWidget$2(child, new A._TableSlot(this._box_0.columnIndex++, this._box_1.rowIndex)); }, $signature: 1378 }; A._TableElement_update_closure.prototype = { call$1(row) { return row.key == null; }, $signature: 1377 }; A._TableElement_update_closure0.prototype = { call$1(list) { return !this.taken.contains$1(0, list); }, $signature: 1376 }; A._TableElement__updateRenderObjectChildren_closure.prototype = { call$1(row) { return J.map$1$1$ax(row.children, new A._TableElement__updateRenderObjectChildren__closure(), type$.RenderBox); }, $signature: 1372 }; A._TableElement__updateRenderObjectChildren__closure.prototype = { call$1(child) { var t1 = child.get$renderObject(); t1.toString; return type$.RenderBox._as(t1); }, $signature: 1371 }; A._TableElement_visitChildren_closure.prototype = { call$1(row) { return row.children; }, $signature: 1364 }; A.TableCell.prototype = { applyParentData$1(renderObject) { var t2, targetParent, t1 = renderObject.parentData; t1.toString; type$.TableCellParentData._as(t1); t2 = this.verticalAlignment; if (t1.verticalAlignment !== t2) { t1.verticalAlignment = t2; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof A.RenderObject) targetParent.markNeedsLayout$0(); } } }; A._TableSlot.prototype = { $eq(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A._TableSlot && this.column === other.column && this.row === other.row; }, get$hashCode(_) { return A.Object_hash(this.column, this.row, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.__TableSlot_Object_Diagnosticable.prototype = {}; A.DefaultTextStyle.prototype = { updateShouldNotify$1(oldWidget) { var t1, _this = this; if (J.$eq$(_this.style, oldWidget.style)) if (_this.softWrap === oldWidget.softWrap) if (_this.overflow === oldWidget.overflow) t1 = _this.textWidthBasis !== oldWidget.textWidthBasis || false; else t1 = true; else t1 = true; else t1 = true; return t1; }, wrap$2(_, context, child) { var _this = this; return A.DefaultTextStyle$(child, null, _this.maxLines, _this.overflow, _this.softWrap, _this.style, _this.textAlign, _this.textHeightBehavior, _this.textWidthBasis); } }; A._NullWidget2.prototype = { build$1(_, context) { throw A.wrapException(A.FlutterError_FlutterError("A DefaultTextStyle constructed with DefaultTextStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultTextStyle.of() when no enclosing default text style is present in a BuildContext.")); } }; A.Text.prototype = { build$1(_, context) { var effectiveTextStyle, t2, t3, t4, t5, t6, t7, t8, t9, result, _this = this, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); if (t1 == null) t1 = B.DefaultTextStyle_40S; effectiveTextStyle = _this.style; if (effectiveTextStyle == null || effectiveTextStyle.inherit) effectiveTextStyle = t1.style.merge$1(effectiveTextStyle); if (A.MediaQuery_boldTextOverride(context)) effectiveTextStyle = effectiveTextStyle.merge$1(B.TextStyle_oqK); t2 = _this.textAlign; if (t2 == null) t2 = t1.textAlign; if (t2 == null) t2 = B.TextAlign_4; t3 = _this.textDirection; t4 = _this.softWrap; if (t4 == null) t4 = t1.softWrap; t5 = _this.overflow; if (t5 == null) t5 = effectiveTextStyle == null ? _null : effectiveTextStyle.overflow; if (t5 == null) t5 = t1.overflow; t6 = _this.textScaleFactor; if (t6 == null) t6 = A.MediaQuery_textScaleFactorOf(context); t7 = _this.maxLines; if (t7 == null) t7 = t1.maxLines; t8 = A.DefaultTextHeightBehavior_of(context); t9 = _this.textSpan; t9 = t9 != null ? A._setArrayType([t9], type$.JSArray_InlineSpan) : _null; result = A.RichText$(_null, _null, t7, t5, t4, _null, A.TextSpan$(t9, _null, effectiveTextStyle, _this.data), t2, t3, t8, t6, t1.textWidthBasis); t1 = _this.semanticsLabel; if (t1 != null) result = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null), false, false, false, new A.ExcludeSemantics(true, result, _null), _null); return result; } }; A.DoNothingAndStopPropagationTextIntent.prototype = {}; A.ReplaceTextIntent.prototype = {}; A.UpdateSelectionIntent.prototype = {}; A.TextSelectionHandleType.prototype = { toString$0(_) { return "TextSelectionHandleType." + this._core$_name; } }; A.TextSelectionControls.prototype = { handlePaste$1(delegate) { return this.handlePaste$body$TextSelectionControls(delegate); }, handlePaste$body$TextSelectionControls(delegate) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$handlePaste$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start delegate.pasteText$1(B.SelectionChangedCause_5); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$handlePaste$1, $async$completer); } }; A.TextSelectionOverlay.prototype = { get$value(_) { return this._text_selection$_value; }, _updateTextSelectionOverlayVisibilities$0() { var _this = this, t1 = _this._handlesVisible && _this.renderObject._selectionStartInViewport._change_notifier$_value; _this._effectiveStartHandleVisibility.set$value(0, t1); t1 = _this._handlesVisible && _this.renderObject._selectionEndInViewport._change_notifier$_value; _this._effectiveEndHandleVisibility.set$value(0, t1); t1 = _this.renderObject; t1 = t1._selectionStartInViewport._change_notifier$_value || t1._selectionEndInViewport._change_notifier$_value; _this._effectiveToolbarVisibility.set$value(0, t1); }, set$handlesVisible(visible) { if (this._handlesVisible === visible) return; this._handlesVisible = visible; this._updateTextSelectionOverlayVisibilities$0(); }, update$1(_, newValue) { if (J.$eq$(this._text_selection$_value, newValue)) return; this._text_selection$_value = newValue; this._updateSelectionOverlay$0(); }, _updateSelectionOverlay$0() { var prevText, currText, t5, selectedGraphemes, t6, startHandleRect, endHandleRect, _this = this, _null = null, t1 = A._lateReadCheck(_this.__TextSelectionOverlay__selectionOverlay, "_selectionOverlay"), t2 = _this.renderObject, t3 = t2._editable$_textPainter, t4 = t3._text_painter$_textDirection; t4.toString; t1.set$startHandleType(_this._chooseType$3(t4, B.TextSelectionHandleType_0, B.TextSelectionHandleType_1)); prevText = t3._text_painter$_text.toPlainText$0(); t4 = _this.selectionDelegate; currText = t4._widget.controller._change_notifier$_value.text; if (prevText === currText) { t5 = _this._text_selection$_value; if (t5.selection.get$isValid()) { t5 = _this._text_selection$_value.selection; t5 = t5.start != t5.end; } else t5 = false; } else t5 = false; if (t5) { t5 = _this._text_selection$_value.selection; selectedGraphemes = J.substring$2$s(currText, t5.start, t5.end); t5 = selectedGraphemes.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(selectedGraphemes); t5 = t5.get$first(t5); t6 = _this._text_selection$_value.selection.start; startHandleRect = t2.getRectForComposingRange$1(new A.TextRange(t6, t6 + t5.length)); } else startHandleRect = _null; t5 = startHandleRect == null ? _null : startHandleRect.bottom - startHandleRect.top; t1.set$lineHeightAtStart(t5 == null ? t3.get$preferredLineHeight() : t5); t5 = t3._text_painter$_textDirection; t5.toString; t1.set$endHandleType(_this._chooseType$3(t5, B.TextSelectionHandleType_1, B.TextSelectionHandleType_0)); prevText = t3._text_painter$_text.toPlainText$0(); currText = t4._widget.controller._change_notifier$_value.text; if (prevText === currText) { t4 = _this._text_selection$_value; if (t4.selection.get$isValid()) { t4 = _this._text_selection$_value.selection; t4 = t4.start != t4.end; } else t4 = false; } else t4 = false; if (t4) { t4 = _this._text_selection$_value.selection; selectedGraphemes = J.substring$2$s(currText, t4.start, t4.end); t4 = selectedGraphemes.length === 0 ? B.StringCharacters_ehH : new A.StringCharacters(selectedGraphemes); t4 = t4.get$last(t4); t5 = _this._text_selection$_value.selection.end; endHandleRect = t2.getRectForComposingRange$1(new A.TextRange(t5 - t4.length, t5)); } else endHandleRect = _null; t4 = endHandleRect == null ? _null : endHandleRect.bottom - endHandleRect.top; t1.set$lineHeightAtEnd(t4 == null ? t3.get$preferredLineHeight() : t4); t3 = t2.getEndpointsForSelection$1(_this._text_selection$_value.selection); if (!A.listEquals0(t1._selectionEndPoints, t3)) t1._text_selection$_markNeedsBuild$0(); t1._selectionEndPoints = t3; t1.set$toolbarLocation(t2._lastSecondaryTapDownPosition); }, dispose$0(_) { var t1, t2, _this = this; A._lateReadCheck(_this.__TextSelectionOverlay__selectionOverlay, "_selectionOverlay").hide$0(); t1 = _this.renderObject; t2 = _this.get$_updateTextSelectionOverlayVisibilities(); t1._selectionStartInViewport.removeListener$1(0, t2); t1._selectionEndInViewport.removeListener$1(0, t2); t2 = _this._effectiveToolbarVisibility; t1 = t2.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t2.ChangeNotifier__count = 0; t2 = _this._effectiveStartHandleVisibility; t2.ChangeNotifier__listeners = t1; t2.ChangeNotifier__count = 0; t2 = _this._effectiveEndHandleVisibility; t2.ChangeNotifier__listeners = t1; t2.ChangeNotifier__count = 0; }, _handleSelectionEndHandleDragStart$1(details) { var t1 = this.selectionControls; t1.toString; this.__TextSelectionOverlay__dragEndPosition = details.globalPosition.$add(0, new A.Offset(0, -t1.getHandleSize$1(this.renderObject._editable$_textPainter.get$preferredLineHeight())._dy)); }, _handleSelectionEndHandleDragUpdate$1(details) { var position, newSelection, _this = this, _s16_ = "_dragEndPosition", t1 = A._lateReadCheck(_this.__TextSelectionOverlay__dragEndPosition, _s16_).$add(0, details.delta); _this.__TextSelectionOverlay__dragEndPosition = t1; position = _this.renderObject.getPositionForPoint$1(A._lateReadCheck(t1, _s16_)); t1 = _this._text_selection$_value.selection; if (t1.start == t1.end) { _this._handleSelectionHandleChanged$2$isEnd(A.TextSelection$fromPosition(position), true); return; } newSelection = A.TextSelection$(B.TextAffinity_1, t1.baseOffset, position.offset, false); if (newSelection.baseOffset >= newSelection.extentOffset) return; _this._handleSelectionHandleChanged$2$isEnd(newSelection, true); }, _handleSelectionStartHandleDragStart$1(details) { var t1 = this.selectionControls; t1.toString; this.__TextSelectionOverlay__dragStartPosition = details.globalPosition.$add(0, new A.Offset(0, -t1.getHandleSize$1(this.renderObject._editable$_textPainter.get$preferredLineHeight())._dy)); }, _handleSelectionStartHandleDragUpdate$1(details) { var position, newSelection, _this = this, _s18_ = "_dragStartPosition", t1 = A._lateReadCheck(_this.__TextSelectionOverlay__dragStartPosition, _s18_).$add(0, details.delta); _this.__TextSelectionOverlay__dragStartPosition = t1; position = _this.renderObject.getPositionForPoint$1(A._lateReadCheck(t1, _s18_)); t1 = _this._text_selection$_value.selection; if (t1.start == t1.end) { _this._handleSelectionHandleChanged$2$isEnd(A.TextSelection$fromPosition(position), false); return; } newSelection = A.TextSelection$(B.TextAffinity_1, position.offset, t1.extentOffset, false); if (newSelection.baseOffset >= newSelection.extentOffset) return; _this._handleSelectionHandleChanged$2$isEnd(newSelection, false); }, _handleSelectionHandleChanged$2$isEnd(newSelection, isEnd) { var textPosition = isEnd ? newSelection.get$extent() : newSelection.get$base(), t1 = this.selectionDelegate; t1.userUpdateTextEditingValue$2(this._text_selection$_value.copyWith$1$selection(newSelection), B.SelectionChangedCause_6); t1.bringIntoView$1(textPosition); }, _chooseType$3(textDirection, ltrType, rtlType) { var t1 = this._text_selection$_value.selection; if (t1.start == t1.end) return B.TextSelectionHandleType_2; switch (textDirection) { case B.TextDirection_1: return ltrType; case B.TextDirection_0: return rtlType; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.SelectionOverlay.prototype = { set$startHandleType(value) { if (this._startHandleType === value) return; this._startHandleType = value; this._text_selection$_markNeedsBuild$0(); }, set$lineHeightAtStart(value) { if (this._lineHeightAtStart == value) return; this._lineHeightAtStart = value; this._text_selection$_markNeedsBuild$0(); }, set$endHandleType(value) { if (this._endHandleType === value) return; this._endHandleType = value; this._text_selection$_markNeedsBuild$0(); }, set$lineHeightAtEnd(value) { if (this._lineHeightAtEnd == value) return; this._lineHeightAtEnd = value; this._text_selection$_markNeedsBuild$0(); }, set$toolbarLocation(value) { if (J.$eq$(this._toolbarLocation, value)) return; this._toolbarLocation = value; this._text_selection$_markNeedsBuild$0(); }, showHandles$0() { var result, t1, _this = this; if (_this._handles != null) return; _this._handles = A._setArrayType([A.OverlayEntry$(_this.get$_buildStartHandle(), false), A.OverlayEntry$(_this.get$_buildEndHandle(), false)], type$.JSArray_OverlayEntry); result = _this.context.findRootAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._handles; t1.toString; result.insertAll$1(0, t1); }, _text_selection$_markNeedsBuild$0() { var t3, _this = this, t1 = _this._handles, t2 = t1 == null; if (t2 && _this._toolbar == null) return; t3 = $.SchedulerBinding__instance; if (t3.SchedulerBinding__schedulerPhase === B.SchedulerPhase_3) { if (_this._buildScheduled) return; _this._buildScheduled = true; t3.SchedulerBinding__postFrameCallbacks.push(new A.SelectionOverlay__markNeedsBuild_closure(_this)); } else { if (!t2) { t1[0].markNeedsBuild$0(); _this._handles[1].markNeedsBuild$0(); } t1 = _this._toolbar; if (t1 != null) t1.markNeedsBuild$0(); } }, hide$0() { var _this = this, t1 = _this._handles; if (t1 != null) { t1[0].remove$0(0); _this._handles[1].remove$0(0); _this._handles = null; } if (_this._toolbar != null) _this.hideToolbar$0(); }, hideToolbar$0() { var t1 = this._toolbar; if (t1 == null) return; t1.remove$0(0); this._toolbar = null; }, dispose$0(_) { this.hide$0(); }, _buildStartHandle$1(context) { var handle, t1, _this = this, _null = null, selectionControls = _this.selectionControls; if (selectionControls == null) handle = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t1 = _this._startHandleType; handle = A._SelectionHandleOverlay$(_this.dragStartBehavior, _this.startHandleLayerLink, _null, _this.onStartHandleDragStart, _this.onStartHandleDragUpdate, _this.onSelectionHandleTapped, _this._lineHeightAtStart, selectionControls, t1, _this.startHandlesVisible); } return new A.ExcludeSemantics(true, handle, _null); }, _buildEndHandle$1(context) { var handle, t1, _this = this, _null = null, selectionControls = _this.selectionControls; if (selectionControls == null || _this._startHandleType === B.TextSelectionHandleType_2) handle = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t1 = _this._endHandleType; handle = A._SelectionHandleOverlay$(_this.dragStartBehavior, _this.endHandleLayerLink, _null, _this.onEndHandleDragStart, _this.onEndHandleDragUpdate, _this.onSelectionHandleTapped, _this._lineHeightAtEnd, selectionControls, t1, _this.endHandlesVisible); } return new A.ExcludeSemantics(true, handle, _null); } }; A.SelectionOverlay__markNeedsBuild_closure.prototype = { call$1(duration) { var t2, t1 = this.$this; t1._buildScheduled = false; t2 = t1._handles; if (t2 != null) { t2[0].markNeedsBuild$0(); t1._handles[1].markNeedsBuild$0(); } t1 = t1._toolbar; if (t1 != null) t1.markNeedsBuild$0(); }, $signature: 22 }; A._SelectionHandleOverlay.prototype = { createState$0() { return new A._SelectionHandleOverlayState(null, null, B._StateLifecycle_0); } }; A._SelectionHandleOverlayState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this.___SelectionHandleOverlayState__controller = A.AnimationController$(null, B.Duration_150000, null, 1, null, _this); _this._handleVisibilityChanged$0(); _this._widget.visibility.addListener$1(0, _this.get$_handleVisibilityChanged()); }, _handleVisibilityChanged$0() { var t2, _s11_ = "_controller", t1 = this._widget.visibility._change_notifier$_value; if (t1 == null) t1 = true; t2 = this.___SelectionHandleOverlayState__controller; if (t1) A._lateReadCheck(t2, _s11_).forward$0(0); else A._lateReadCheck(t2, _s11_).reverse$0(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this.get$_handleVisibilityChanged(); oldWidget.visibility.removeListener$1(0, t1); _this._handleVisibilityChanged$0(); _this._widget.visibility.addListener$1(0, t1); }, dispose$0(_) { var _this = this; _this._widget.visibility.removeListener$1(0, _this.get$_handleVisibilityChanged()); A._lateReadCheck(_this.___SelectionHandleOverlayState__controller, "_controller").dispose$0(0); _this.super$__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var handleSize, t2, t3, t4, handleRect, interactiveRect, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = _this._widget, handleAnchor = t1.selectionControls.getHandleAnchor$2(t1.type, t1.preferredLineHeight); t1 = _this._widget; handleSize = t1.selectionControls.getHandleSize$1(t1.preferredLineHeight); t1 = -handleAnchor._dx; t2 = -handleAnchor._dy; t3 = t1 + handleSize._dx; t4 = t2 + handleSize._dy; handleRect = new A.Rect(t1, t2, t3, t4); interactiveRect = handleRect.expandToInclude$1(A.Rect$fromCircle(handleRect.get$center(), 24)); t5 = interactiveRect.left; t6 = interactiveRect.right - t5; t1 = Math.max((t6 - (t3 - t1)) / 2, 0); t3 = interactiveRect.top; t7 = interactiveRect.bottom - t3; t2 = Math.max((t7 - (t4 - t2)) / 2, 0); t4 = _this._widget.handleLayerLink; t8 = A._lateReadCheck(_this.___SelectionHandleOverlayState__controller, "_controller"); t9 = _this._widget; t10 = t9.dragStartBehavior; t11 = t9.onSelectionHandleDragStart; t12 = t9.onSelectionHandleDragUpdate; t13 = t9.onSelectionHandleDragEnd; return A.CompositedTransformFollower$(A.FadeTransition$(false, A.Container$(B.Alignment_m1_m1, A.GestureDetector$(B.HitTestBehavior_2, new A.Padding(new A.EdgeInsets(t1, t2, t1, t2), t9.selectionControls.buildHandle$4(context, t9.type, t9.preferredLineHeight, t9.onSelectionHandleTapped), _null), t10, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t13, t11, t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.Clip_0, _null, _null, _null, _null, t7, _null, _null, _null, _null, _null, t6), t8), _null, t4, new A.Offset(t5, t3), false, B.Alignment_m1_m1); } }; A.TextSelectionGestureDetectorBuilder.prototype = { get$_lastSecondaryTapWasOnSelection() { var t3, t4, textPosition, t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3._as(t2); t4 = t1.get$editableTextKey().get$currentState(); t4.toString; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4._editableKey).get$renderObject(); t4.toString; t4 = t3._as(t4)._lastSecondaryTapDownPosition; t4.toString; textPosition = t2.getPositionForPoint$1(t4); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t4 = textPosition.offset; if (t3._as(t2)._selection.start <= t4) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t4 = t3._as(t1)._selection.end >= t4; t1 = t4; } else t1 = false; return t1; }, _text_selection$_expandSelection$3(offset, cause, fromSelection) { var t3, tappedPosition, selection, t4, nextSelection, t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; tappedPosition = t3._as(t2).getPositionForPoint$1(offset); if (fromSelection == null) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; selection = t3._as(t2)._selection; } else selection = fromSelection; t2 = tappedPosition.offset; t3 = selection.baseOffset; t4 = selection.extentOffset; nextSelection = selection.copyWith$2$baseOffset$extentOffset(Math.abs(t2 - t3) < Math.abs(t2 - t4) ? t4 : t3, t2); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t2.userUpdateTextEditingValue$2(t1._widget.controller._change_notifier$_value.copyWith$1$selection(nextSelection), cause); }, _text_selection$_expandSelection$2(offset, cause) { return this._text_selection$_expandSelection$3(offset, cause, null); }, _extendSelection$2(offset, cause) { var t3, tappedPosition, nextSelection, t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; tappedPosition = t3._as(t2).getPositionForPoint$1(offset); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; nextSelection = t3._as(t2)._selection.copyWith$1$extentOffset(tappedPosition.offset); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t2.userUpdateTextEditingValue$2(t1._widget.controller._change_notifier$_value.copyWith$1$selection(nextSelection), cause); }, onTapDown$1(details) { var t3, kind, t4, t5, _this = this, t1 = _this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._lastTapDownPosition = details.globalPosition; kind = details.kind; _this._shouldShowSelectionToolbar = kind == null || kind === B.PointerDeviceKind_0 || kind === B.PointerDeviceKind_2; t4 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__keyboard, "_keyboard")._pressedKeys; t4 = t4.get$values(t4); t4 = A.LinkedHashSet_LinkedHashSet$of(t4, A._instanceType(t4)._eval$1("Iterable.E")); t5 = A.LinkedHashSet_LinkedHashSet$_literal([B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589934851], type$.LogicalKeyboardKey); if (t4.any$1(0, t5.get$contains(t5))) { t4 = t1.get$editableTextKey().get$currentState(); t4.toString; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4._editableKey).get$renderObject(); t4.toString; t4 = t3._as(t4)._selection; t4 = t4.baseOffset != null; } else t4 = false; if (t4) { _this._isShiftTapping = true; switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: case B.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; _this._text_selection$_expandSelection$3(t2, B.SelectionChangedCause_0, t3._as(t1)._editable$_hasFocus ? null : B.TextSelection_3Ex0); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: _this._extendSelection$2(t2, B.SelectionChangedCause_0); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }, onForcePressStart$1(details) { var t1; this._shouldShowSelectionToolbar = true; t1 = this.delegate; if (t1.get$selectionEnabled()) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordsInRange$2$cause$from(B.SelectionChangedCause_3, details.globalPosition); } }, onForcePressEnd$1(details) { var t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2).selectWordsInRange$2$cause$from(B.SelectionChangedCause_3, details.globalPosition); if (this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onSingleTapUp$1(details) { var t1, t2; if (this._isShiftTapping) { this._isShiftTapping = false; return; } t1 = this.delegate; if (t1.get$selectionEnabled()) switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: case B.TargetPlatform_4: switch (details.kind) { case B.PointerDeviceKind_1: case B.PointerDeviceKind_2: case B.PointerDeviceKind_3: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(B.SelectionChangedCause_0, t2); break; case B.PointerDeviceKind_0: case B.PointerDeviceKind_5: default: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordEdge$1$cause(B.SelectionChangedCause_0); break; } break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(B.SelectionChangedCause_0, t2); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, onSingleTapCancel$0() { }, onSingleLongTapStart$1(details) { var t1 = this.delegate; if (t1.get$selectionEnabled()) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(B.SelectionChangedCause_2, details.globalPosition); } }, onSingleLongTapMoveUpdate$1(details) { var t1 = this.delegate; if (t1.get$selectionEnabled()) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(B.SelectionChangedCause_2, details.globalPosition); } }, onSingleLongTapEnd$1(details) { var t1; if (this._shouldShowSelectionToolbar) { t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onSecondaryTap$0() { var t2, t3, t1 = this.delegate; if (t1.get$selectionEnabled()) { if (!this.get$_lastSecondaryTapWasOnSelection()) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2); t3 = t2._lastTapDownPosition; t3.toString; t2.selectWordsInRange$2$cause$from(B.SelectionChangedCause_0, t3); } if (this._shouldShowSelectionToolbar) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2.hideToolbar$0(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } } }, onSecondaryTapDown$1(details) { var t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t1._lastSecondaryTapDownPosition = t1._lastTapDownPosition = details.globalPosition; this._shouldShowSelectionToolbar = true; }, onDoubleTapDown$1(details) { var t2, t3, t1 = this.delegate; if (t1.get$selectionEnabled()) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2); t3 = t2._lastTapDownPosition; t3.toString; t2.selectWordsInRange$2$cause$from(B.SelectionChangedCause_0, t3); if (this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } } }, onDragSelectionStart$1(details) { var kind, t2, t3, _this = this, t1 = _this.delegate; if (!t1.get$selectionEnabled()) return; kind = details.kind; _this._shouldShowSelectionToolbar = kind == null || kind === B.PointerDeviceKind_0 || kind === B.PointerDeviceKind_2; t2 = A._lateReadCheck($.ServicesBinding__instance.ServicesBinding___ServicesBinding__keyboard, "_keyboard")._pressedKeys; t2 = t2.get$values(t2); t2 = A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")); t3 = A.LinkedHashSet_LinkedHashSet$_literal([B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589934851], type$.LogicalKeyboardKey); if (t2.any$1(0, t3.get$contains(t3))) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t2 = t3._as(t2)._selection.get$isValid(); } else t2 = false; if (t2) { _this._isShiftTapping = true; switch (A.defaultTargetPlatform()) { case B.TargetPlatform_2: case B.TargetPlatform_4: _this._text_selection$_expandSelection$2(details.globalPosition, B.SelectionChangedCause_6); break; case B.TargetPlatform_0: case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_5: _this._extendSelection$2(details.globalPosition, B.SelectionChangedCause_6); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; _this._shiftTapDragSelection = type$.RenderEditable._as(t2)._selection; } else { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2).selectPositionAt$2$cause$from(B.SelectionChangedCause_6, details.globalPosition); } t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t1 = type$.RenderEditable._as(t1)._editable$_offset._pixels; t1.toString; _this._dragStartViewportOffset = t1; }, onDragSelectionUpdate$2(startDetails, updateDetails) { var t2, t3, startOffset, selection, nextExtent, t4, t5, isInverted, _this = this, t1 = _this.delegate; if (!t1.get$selectionEnabled()) return; if (!_this._isShiftTapping) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; if (t3._as(t2)._editable$_maxLines === 1) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t2 = t3._as(t2)._editable$_offset._pixels; t2.toString; startOffset = new A.Offset(t2 - _this._dragStartViewportOffset, 0); } else { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t2 = t3._as(t2)._editable$_offset._pixels; t2.toString; startOffset = new A.Offset(0, t2 - _this._dragStartViewportOffset); } t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; return t3._as(t1).selectPositionAt$3$cause$from$to(B.SelectionChangedCause_6, startDetails.globalPosition.$sub(0, startOffset), updateDetails.globalPosition); } t2 = _this._shiftTapDragSelection; if (t2.start != t2.end) t2 = A.defaultTargetPlatform() !== B.TargetPlatform_2 && A.defaultTargetPlatform() !== B.TargetPlatform_4; else t2 = true; if (t2) return _this._extendSelection$2(updateDetails.globalPosition, B.SelectionChangedCause_6); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; selection = t2._widget.controller._change_notifier$_value.selection; t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2); t3 = updateDetails.globalPosition; nextExtent = t2.getPositionForPoint$1(t3); t2 = _this._shiftTapDragSelection; t4 = t2.baseOffset; t5 = nextExtent.offset; isInverted = t4 < t2.extentOffset ? t5 < t4 : t5 > t4; if (isInverted && selection.baseOffset === t4) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t2.userUpdateTextEditingValue$2(t1._widget.controller._change_notifier$_value.copyWith$1$selection(A.TextSelection$(B.TextAffinity_1, _this._shiftTapDragSelection.extentOffset, t5, false)), B.SelectionChangedCause_6); } else if (!isInverted && t5 !== t4 && selection.baseOffset !== t4) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t2.userUpdateTextEditingValue$2(t1._widget.controller._change_notifier$_value.copyWith$1$selection(A.TextSelection$(B.TextAffinity_1, _this._shiftTapDragSelection.baseOffset, t5, false)), B.SelectionChangedCause_6); } else _this._extendSelection$2(t3, B.SelectionChangedCause_6); }, onDragSelectionEnd$1(details) { if (this._isShiftTapping) { this._isShiftTapping = false; this._shiftTapDragSelection = null; } }, buildGestureDetector$2$behavior$child(behavior, child) { var _this = this, t1 = _this.delegate, t2 = t1.get$forcePressEnabled() ? _this.get$onForcePressStart() : null; t1 = t1.get$forcePressEnabled() ? _this.get$onForcePressEnd() : null; return new A.TextSelectionGestureDetector(_this.get$onTapDown(), t2, t1, _this.get$onSecondaryTap(), _this.get$onSecondaryTapDown(), _this.get$onSingleTapUp(), _this.get$onSingleTapCancel(), _this.get$onSingleLongTapStart(), _this.get$onSingleLongTapMoveUpdate(), _this.get$onSingleLongTapEnd(), _this.get$onDoubleTapDown(), _this.get$onDragSelectionStart(), _this.get$onDragSelectionUpdate(), _this.get$onDragSelectionEnd(), behavior, child, null); } }; A.TextSelectionGestureDetector.prototype = { createState$0() { return new A._TextSelectionGestureDetectorState(B._StateLifecycle_0); } }; A._TextSelectionGestureDetectorState.prototype = { dispose$0(_) { var t1 = this._text_selection$_doubleTapTimer; if (t1 != null) t1.cancel$0(0); t1 = this._dragUpdateThrottleTimer; if (t1 != null) t1.cancel$0(0); this.super$State$dispose(0); }, _text_selection$_handleTapDown$1(details) { var _this = this; _this._widget.onTapDown.call$1(details); if (_this._text_selection$_doubleTapTimer != null && _this._isWithinDoubleTapTolerance$1(details.globalPosition)) { _this._widget.onDoubleTapDown.call$1(details); _this._text_selection$_doubleTapTimer.cancel$0(0); _this._lastTapOffset = _this._text_selection$_doubleTapTimer = null; _this._isDoubleTap = true; } }, _text_selection$_handleTapUp$1(details) { var _this = this; if (!_this._isDoubleTap) { _this._widget.onSingleTapUp.call$1(details); _this._lastTapOffset = details.globalPosition; _this._text_selection$_doubleTapTimer = A.Timer_Timer(B.Duration_300000, _this.get$_doubleTapTimeout()); } _this._isDoubleTap = false; }, _text_selection$_handleTapCancel$0() { this._widget.onSingleTapCancel.call$0(); }, _handleDragStart$1(details) { this._lastDragStartDetails = details; this._widget.onDragSelectionStart.call$1(details); }, _handleDragUpdate$1(details) { var _this = this; _this._lastDragUpdateDetails = details; if (_this._dragUpdateThrottleTimer == null) _this._dragUpdateThrottleTimer = A.Timer_Timer(B.Duration_50000, _this.get$_handleDragUpdateThrottled()); }, _handleDragUpdateThrottled$0() { var t3, _this = this, t1 = _this._widget.onDragSelectionUpdate, t2 = _this._lastDragStartDetails; t2.toString; t3 = _this._lastDragUpdateDetails; t3.toString; t1.call$2(t2, t3); _this._lastDragUpdateDetails = _this._dragUpdateThrottleTimer = null; }, _handleDragEnd$1(details) { var _this = this, t1 = _this._dragUpdateThrottleTimer; if (t1 != null) { t1.cancel$0(0); _this._handleDragUpdateThrottled$0(); } _this._widget.onDragSelectionEnd.call$1(details); _this._lastDragUpdateDetails = _this._lastDragStartDetails = _this._dragUpdateThrottleTimer = null; }, _forcePressStarted$1(details) { var t1 = this._text_selection$_doubleTapTimer; if (t1 != null) t1.cancel$0(0); this._text_selection$_doubleTapTimer = null; t1 = this._widget.onForcePressStart; if (t1 != null) t1.call$1(details); }, _forcePressEnded$1(details) { var t1 = this._widget.onForcePressEnd; if (t1 != null) t1.call$1(details); }, _handleLongPressStart$1(details) { var t1; if (!this._isDoubleTap) { this._widget.toString; t1 = true; } else t1 = false; if (t1) this._widget.onSingleLongTapStart.call$1(details); }, _handleLongPressMoveUpdate$1(details) { var t1; if (!this._isDoubleTap) { this._widget.toString; t1 = true; } else t1 = false; if (t1) this._widget.onSingleLongTapMoveUpdate.call$1(details); }, _handleLongPressEnd$1(details) { var t1, _this = this; if (!_this._isDoubleTap) { _this._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.onSingleLongTapEnd.call$1(details); _this._isDoubleTap = false; }, _doubleTapTimeout$0() { this._lastTapOffset = this._text_selection$_doubleTapTimer = null; }, _isWithinDoubleTapTolerance$1(secondTapOffset) { var t1 = this._lastTapOffset; if (t1 == null) return false; return secondTapOffset.$sub(0, t1).get$distance() <= 100; }, build$1(_, context) { var t1, t2, _this = this, gestures = A.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); gestures.$indexSet(0, B.Type_TapGestureRecognizer_62h, new A.GestureRecognizerFactoryWithHandlers(new A._TextSelectionGestureDetectorState_build_closure(_this), new A._TextSelectionGestureDetectorState_build_closure0(_this), type$.GestureRecognizerFactoryWithHandlers_TapGestureRecognizer)); _this._widget.toString; gestures.$indexSet(0, B.Type_LongPressGestureRecognizer_46y, new A.GestureRecognizerFactoryWithHandlers(new A._TextSelectionGestureDetectorState_build_closure1(_this), new A._TextSelectionGestureDetectorState_build_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer)); _this._widget.toString; gestures.$indexSet(0, B.Type_PanGestureRecognizer_bbH, new A.GestureRecognizerFactoryWithHandlers(new A._TextSelectionGestureDetectorState_build_closure3(_this), new A._TextSelectionGestureDetectorState_build_closure4(_this), type$.GestureRecognizerFactoryWithHandlers_PanGestureRecognizer)); t1 = _this._widget; if (t1.onForcePressStart != null || t1.onForcePressEnd != null) gestures.$indexSet(0, B.Type_ForcePressGestureRecognizer_TN2, new A.GestureRecognizerFactoryWithHandlers(new A._TextSelectionGestureDetectorState_build_closure5(_this), new A._TextSelectionGestureDetectorState_build_closure6(_this), type$.GestureRecognizerFactoryWithHandlers_ForcePressGestureRecognizer)); t1 = _this._widget; t2 = t1.behavior; return new A.RawGestureDetector(t1.child, gestures, t2, true, null, null); } }; A._TextSelectionGestureDetectorState_build_closure.prototype = { call$0() { return A.TapGestureRecognizer$(this.$this); }, $signature: 536 }; A._TextSelectionGestureDetectorState_build_closure0.prototype = { call$1(instance) { var t1 = this.$this, t2 = t1._widget; instance.onSecondaryTap = t2.onSecondaryTap; instance.onSecondaryTapDown = t2.onSecondaryTapDown; instance.onTapDown = t1.get$_text_selection$_handleTapDown(); instance.onTapUp = t1.get$_text_selection$_handleTapUp(); instance.onTapCancel = t1.get$_text_selection$_handleTapCancel(); }, $signature: 537 }; A._TextSelectionGestureDetectorState_build_closure1.prototype = { call$0() { return A.LongPressGestureRecognizer$(this.$this, null, B.PointerDeviceKind_0, null, null); }, $signature: 540 }; A._TextSelectionGestureDetectorState_build_closure2.prototype = { call$1(instance) { var t1 = this.$this; instance.onLongPressStart = t1.get$_handleLongPressStart(); instance.onLongPressMoveUpdate = t1.get$_handleLongPressMoveUpdate(); instance.onLongPressEnd = t1.get$_handleLongPressEnd(); }, $signature: 541 }; A._TextSelectionGestureDetectorState_build_closure3.prototype = { call$0() { return A.PanGestureRecognizer$(this.$this, A.LinkedHashSet_LinkedHashSet$_literal([B.PointerDeviceKind_1], type$.PointerDeviceKind)); }, $signature: 358 }; A._TextSelectionGestureDetectorState_build_closure4.prototype = { call$1(instance) { var t1; instance.dragStartBehavior = B.DragStartBehavior_0; t1 = this.$this; instance.onStart = t1.get$_handleDragStart(); instance.onUpdate = t1.get$_handleDragUpdate(); instance.onEnd = t1.get$_handleDragEnd(); }, $signature: 359 }; A._TextSelectionGestureDetectorState_build_closure5.prototype = { call$0() { return A.ForcePressGestureRecognizer$(this.$this); }, $signature: 1361 }; A._TextSelectionGestureDetectorState_build_closure6.prototype = { call$1(instance) { var t1 = this.$this, t2 = t1._widget; instance.onStart = t2.onForcePressStart != null ? t1.get$_forcePressStarted() : null; instance.onEnd = t2.onForcePressEnd != null ? t1.get$_forcePressEnded() : null; }, $signature: 1344 }; A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TickerMode.prototype = { createState$0() { return new A._TickerModeState(new A.ValueNotifier(true, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_bool), B._StateLifecycle_0); } }; A._TickerModeState.prototype = { didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; _this._ancestorTicketMode = A.TickerMode_of(t1); _this._updateEffectiveMode$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateEffectiveMode$0(); }, dispose$0(_) { var t1 = this._effectiveMode; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, _updateEffectiveMode$0() { var t1 = this._ancestorTicketMode && this._widget.enabled; this._effectiveMode.set$value(0, t1); }, build$1(_, context) { var t1 = this._effectiveMode; return new A._EffectiveTickerMode(t1._change_notifier$_value, t1, this._widget.child, null); } }; A._EffectiveTickerMode.prototype = { updateShouldNotify$1(oldWidget) { return this.enabled != oldWidget.enabled; } }; A.SingleTickerProviderStateMixin.prototype = { createTicker$1(onTick) { var t1, _this = this; _this.SingleTickerProviderStateMixin__ticker = new A.Ticker(onTick, null); _this._updateTickerModeNotifier$0(); _this._updateTicker$0(); t1 = _this.SingleTickerProviderStateMixin__ticker; t1.toString; return t1; }, _updateTicker$0() { var t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) t1.set$muted(0, !this.SingleTickerProviderStateMixin__tickerModeNotifier._change_notifier$_value); }, _updateTickerModeNotifier$0() { var newNotifier, _this = this, t1 = _this._framework$_element; t1.toString; newNotifier = A.TickerMode_getNotifier(t1); t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (newNotifier === t1) return; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); newNotifier.addListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = newNotifier; } }; A.TickerProviderStateMixin.prototype = { createTicker$1(onTick) { var result, _this = this; if (_this.TickerProviderStateMixin__tickerModeNotifier == null) _this._updateTickerModeNotifier$0(); if (_this.TickerProviderStateMixin__tickers == null) _this.TickerProviderStateMixin__tickers = A.LinkedHashSet_LinkedHashSet$_empty(type$._WidgetTicker); result = new A._WidgetTicker(_this, onTick, null); result.set$muted(0, !_this.TickerProviderStateMixin__tickerModeNotifier._change_notifier$_value); _this.TickerProviderStateMixin__tickers.add$1(0, result); return result; }, _updateTickers$0() { var muted, t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) { muted = !this.TickerProviderStateMixin__tickerModeNotifier._change_notifier$_value; for (t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); } }, _updateTickerModeNotifier$0() { var newNotifier, _this = this, t1 = _this._framework$_element; t1.toString; newNotifier = A.TickerMode_getNotifier(t1); t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (newNotifier === t1) return; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); newNotifier.addListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = newNotifier; } }; A._WidgetTicker.prototype = { dispose$0(_) { this._creator.TickerProviderStateMixin__tickers.remove$1(0, this); this.super$Ticker$dispose(0); } }; A.Title.prototype = { build$1(_, context) { A.SystemChrome_setApplicationSwitcherDescription(new A.ApplicationSwitcherDescription(this.title, this.color.value)); return this.child; } }; A.AnimatedWidget.prototype = { createState$0() { return new A._AnimatedState(B._StateLifecycle_0); } }; A._AnimatedState.prototype = { initState$0() { this.super$State$initState(); this._widget.listenable.addListener$1(0, this.get$_handleChange()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.listenable; t2 = oldWidget.listenable; if (!J.$eq$(t1, t2)) { t1 = _this.get$_handleChange(); t2.removeListener$1(0, t1); _this._widget.listenable.addListener$1(0, t1); } }, dispose$0(_) { this._widget.listenable.removeListener$1(0, this.get$_handleChange()); this.super$State$dispose(0); }, _handleChange$0() { this.setState$1(new A._AnimatedState__handleChange_closure()); }, build$1(_, context) { return this._widget.build$1(0, context); } }; A._AnimatedState__handleChange_closure.prototype = { call$0() { }, $signature: 0 }; A.SlideTransition.prototype = { build$1(_, context) { var _this = this, t1 = type$.Animation_Offset._as(_this.listenable), offset = t1.get$value(t1); if (_this.textDirection === B.TextDirection_0) offset = new A.Offset(-offset._dx, offset._dy); return A.FractionalTranslation$(_this.child, _this.transformHitTests, offset); } }; A.ScaleTransition.prototype = { build$1(_, context) { var t2, t3, _null = null, t1 = type$.Animation_double._as(this.listenable); t1 = t1.get$value(t1); t2 = t1 == null; t3 = t2 ? _null : t1; if (t3 == null) t3 = 1; if (t2) t1 = _null; return new A.Transform(A.Matrix4_Matrix4$diagonal3Values(t3, t1 == null ? 1 : t1, 1), this.alignment, true, _null, this.child, _null); } }; A.RotationTransition.prototype = { build$1(_, context) { var t1 = type$.Animation_double._as(this.listenable); return A.Transform$rotate(this.alignment, t1.get$value(t1) * 3.141592653589793 * 2, this.child, null); } }; A.SizeTransition.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.axis, t2 = t1 === B.Axis_1, t3 = _this.axisAlignment, alignment = t2 ? new A.AlignmentDirectional(-1, t3) : new A.AlignmentDirectional(t3, -1); if (t2) { t2 = type$.Animation_double._as(_this.listenable); t2 = Math.max(A.checkNum(t2.get$value(t2)), 0); } else t2 = _null; if (t1 === B.Axis_0) { t1 = type$.Animation_double._as(_this.listenable); t1 = Math.max(A.checkNum(t1.get$value(t1)), 0); } else t1 = _null; return A.ClipRect$(new A.Align(alignment, t1, t2, _this.child, _null), B.Clip_1, _null); } }; A.FadeTransition.prototype = { createRenderObject$1(context) { var t2, _null = null, t1 = new A.RenderAnimatedOpacity(_null, _null, _null, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t2 = t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = t2; t1.set$child(_null); t1.set$opacity(0, this.opacity); t1.set$alwaysIncludeSemantics(this.alwaysIncludeSemantics); return t1; }, updateRenderObject$2(context, renderObject) { renderObject.set$opacity(0, this.opacity); renderObject.set$alwaysIncludeSemantics(this.alwaysIncludeSemantics); } }; A.DecoratedBoxTransition.prototype = { build$1(_, context) { var t1 = this.decoration, t2 = t1.parent; return A.DecoratedBox$(this.child, t1._evaluatable.transform$1(0, t2.get$value(t2)), B.DecorationPosition_0); } }; A.AnimatedBuilder.prototype = { build$1(_, context) { return this.builder.call$2(context, this.child); } }; A.ValueListenableBuilder.prototype = { createState$0() { return new A._ValueListenableBuilderState(B._StateLifecycle_0, this.$ti._eval$1("_ValueListenableBuilderState<1>")); } }; A._ValueListenableBuilderState.prototype = { get$value(_) { return A._lateReadCheck(this.___ValueListenableBuilderState_value, "value"); }, initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.valueListenable; _this.___ValueListenableBuilderState_value = t1._change_notifier$_value; t1.addListener$1(0, _this.get$_valueChanged()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.valueListenable; if (t1 !== _this._widget.valueListenable) { t2 = _this.get$_valueChanged(); t1.removeListener$1(0, t2); t1 = _this._widget.valueListenable; _this.___ValueListenableBuilderState_value = t1._change_notifier$_value; t1.addListener$1(0, t2); } }, dispose$0(_) { this._widget.valueListenable.removeListener$1(0, this.get$_valueChanged()); this.super$State$dispose(0); }, _valueChanged$0() { this.setState$1(new A._ValueListenableBuilderState__valueChanged_closure(this)); }, build$1(_, context) { var t2, t1 = this._widget; t1.toString; t2 = A._lateReadCheck(this.___ValueListenableBuilderState_value, "value"); this._widget.toString; return t1.builder.call$3(context, t2, null); } }; A._ValueListenableBuilderState__valueChanged_closure.prototype = { call$0() { var t1 = this.$this; t1.___ValueListenableBuilderState_value = t1._widget.valueListenable._change_notifier$_value; }, $signature: 0 }; A.Viewport.prototype = { createRenderObject$1(context) { var _this = this, t1 = _this.axisDirection, t2 = A.Viewport_getDefaultCrossAxisDirection(context, t1), t3 = _this.cacheExtent, t4 = A.LayerHandle$(type$.ClipRectLayer); if (t3 == null) t3 = 250; t4 = new A.RenderViewport(_this.anchor, t1, t2, _this.offset, t3, _this.cacheExtentStyle, _this.clipBehavior, t4, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t4.get$isRepaintBoundary(); t4.__RenderObject__needsCompositing = true; t4.addAll$1(0, null); t1 = t4.ContainerRenderObjectMixin__firstChild; if (t1 != null) t4._viewport$_center = t1; return t4; }, updateRenderObject$2(context, renderObject) { var _this = this, t1 = _this.axisDirection; renderObject.set$axisDirection(t1); t1 = A.Viewport_getDefaultCrossAxisDirection(context, t1); renderObject.set$crossAxisDirection(t1); renderObject.set$anchor(_this.anchor); renderObject.set$offset(0, _this.offset); renderObject.set$cacheExtent(_this.cacheExtent); renderObject.set$cacheExtentStyle(_this.cacheExtentStyle); renderObject.set$clipBehavior(_this.clipBehavior); }, createElement$0(_) { return new A._ViewportElement(A.HashSet_HashSet(type$.Element_2), this, B._ElementLifecycle_0); } }; A._ViewportElement.prototype = { get$renderObject() { return type$.RenderViewport._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2($parent, newSlot) { var _this = this; _this._doingMountOrUpdate = true; _this.super$MultiChildRenderObjectElement$mount($parent, newSlot); _this._updateCenter$0(); _this._doingMountOrUpdate = false; }, update$1(_, newWidget) { var _this = this; _this._doingMountOrUpdate = true; _this.super$MultiChildRenderObjectElement$update(0, newWidget); _this._updateCenter$0(); _this._doingMountOrUpdate = false; }, _updateCenter$0() { var t2, _this = this, t1 = _this._widget; t1.toString; type$.Viewport._as(t1); t1 = _this.get$children(_this); t2 = type$.RenderViewport; if (!t1.get$isEmpty(t1)) { t1 = t2._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)); t2 = _this.get$children(_this); t1.set$center(type$.nullable_RenderSliver._as(t2.get$first(t2).get$renderObject())); _this._centerSlotIndex = 0; } else { t2._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)).set$center(null); _this._centerSlotIndex = null; } }, insertRenderObjectChild$2(child, slot) { var _this = this; _this.super$MultiChildRenderObjectElement$insertRenderObjectChild(child, slot); if (!_this._doingMountOrUpdate && slot.index === _this._centerSlotIndex) type$.RenderViewport._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)).set$center(type$.nullable_RenderSliver._as(child)); }, moveRenderObjectChild$3(child, oldSlot, newSlot) { this.super$MultiChildRenderObjectElement$moveRenderObjectChild(child, oldSlot, newSlot); }, removeRenderObjectChild$2(child, slot) { var _this = this; _this.super$MultiChildRenderObjectElement$removeRenderObjectChild(child, slot); if (!_this._doingMountOrUpdate && type$.RenderViewport._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this))._viewport$_center == child) type$.RenderViewport._as(A.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)).set$center(null); } }; A.ShrinkWrappingViewport.prototype = { createRenderObject$1(context) { var t1 = this.axisDirection, t2 = A.Viewport_getDefaultCrossAxisDirection(context, t1), t3 = A.LayerHandle$(type$.ClipRectLayer); t1 = new A.RenderShrinkWrappingViewport(t1, t2, this.offset, 250, B.CacheExtentStyle_0, this.clipBehavior, t3, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.axisDirection; renderObject.set$axisDirection(t1); t1 = A.Viewport_getDefaultCrossAxisDirection(context, t1); renderObject.set$crossAxisDirection(t1); renderObject.set$offset(0, this.offset); renderObject.set$clipBehavior(this.clipBehavior); } }; A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin.prototype = {}; A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin.prototype = {}; A.WidgetSpan.prototype = { build$3$dimensions$textScaleFactor(_, builder, dimensions, textScaleFactor) { var currentDimensions, t1 = this.style, hasStyle = t1 != null; if (hasStyle) builder.pushStyle$1(0, t1.getTextStyle$1$textScaleFactor(textScaleFactor)); dimensions.toString; currentDimensions = dimensions[builder.get$placeholderCount()]; t1 = currentDimensions.size; builder.addPlaceholder$6$baseline$baselineOffset$scale(0, t1._dx, t1._dy, this.alignment, currentDimensions.baseline, currentDimensions.baselineOffset, textScaleFactor); if (hasStyle) builder.pop$0(0); }, visitChildren$1(visitor) { return visitor.call$1(this); }, getSpanForPositionVisitor$2(position, offset) { var t1 = offset._inline_span$_value; if (position.offset === t1) return this; offset._inline_span$_value = t1 + 1; return null; }, codeUnitAtVisitor$2(index, offset) { ++offset._inline_span$_value; return 65532; }, compareTo$1(_, other) { var t1, t2, t3, candidate, result, _this = this; if (_this === other) return B.RenderComparison_0; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return B.RenderComparison_3; t1 = _this.style; t2 = t1 == null; t3 = other.style; if (t2 !== (t3 == null)) return B.RenderComparison_3; type$.WidgetSpan._as(other); if (!_this.child.super$Object$$eq(0, other.child) || _this.alignment !== other.alignment) return B.RenderComparison_3; if (!t2) { t3.toString; candidate = t1.compareTo$1(0, t3); result = candidate.index > 0 ? candidate : B.RenderComparison_0; if (result === B.RenderComparison_3) return result; } else result = B.RenderComparison_0; return result; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(_this)) return false; if (!_this.super$InlineSpan$$eq(0, other)) return false; return other instanceof A.WidgetSpan && other.child.super$Object$$eq(0, _this.child) && other.alignment === _this.alignment && true; }, get$hashCode(_) { var _this = this; return A.Object_hash(A.InlineSpan.prototype.get$hashCode.call(_this, _this), _this.child, _this.alignment, _this.baseline, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); } }; A.WillPopScope.prototype = { createState$0() { return new A._WillPopScopeState(B._StateLifecycle_0); } }; A._WillPopScopeState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._widget.onWillPop; if (t1 != null) { t2 = _this._route; if (t2 != null) B.JSArray_methods.remove$1(t2._willPopCallbacks, t1); } t1 = _this._framework$_element; t1.toString; t1 = _this._route = A.ModalRoute_of(t1, type$.nullable_Object); t2 = _this._widget.onWillPop; if (t2 != null) if (t1 != null) t1._willPopCallbacks.push(t2); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.onWillPop; t2 = oldWidget.onWillPop; if (!J.$eq$(t1, t2) && _this._route != null) { if (t2 != null) B.JSArray_methods.remove$1(_this._route._willPopCallbacks, t2); t1 = _this._widget.onWillPop; if (t1 != null) _this._route._willPopCallbacks.push(t1); } }, dispose$0(_) { var t2, t1 = this._widget.onWillPop; if (t1 != null) { t2 = this._route; if (t2 != null) B.JSArray_methods.remove$1(t2._willPopCallbacks, t1); } this.super$State$dispose(0); }, build$1(_, context) { return this._widget.child; } }; A.CacheManager.prototype = { CacheManager$1(config) { var t1 = A.ListQueue$(null, type$.QueueItem); A._lateWriteOnceCheck(this.__CacheManager__webHelper, "_webHelper"); this.__CacheManager__webHelper = new A.WebHelper(this._cache_manager$_store, config.fileService, A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BehaviorSubject_FileResponse), t1); }, _pushFileToStream$5(streamController, url, key, headers, withProgress) { return this._pushFileToStream$body$CacheManager(streamController, url, key, headers, true); }, _pushFileToStream$body$CacheManager(streamController, url, key, headers, withProgress) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, cacheFile, e, response, e0, exception, t1, t2, subject, t3, controller, wrapper, t4, lastEvent, $async$exception, $async$exception1; var $async$_pushFileToStream$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start key = key; withProgress = withProgress; if (key == null) key = url; cacheFile = null; $async$handler = 3; $async$goto = 6; return A._asyncAwait($async$self._cache_manager$_store.getFile$2$ignoreMemCache(0, key, false), $async$_pushFileToStream$5); case 6: // returning from await. cacheFile = $async$result; if (cacheFile != null) { streamController.add$1(0, cacheFile); withProgress = false; } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = A.unwrapException($async$exception); t1 = $.$get$cacheLogger(); A.S(e); t1.toString; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (cacheFile != null) { t1 = cacheFile.validTill; t2 = Date.now(); t2 = t1._value < t2; t1 = t2; } else t1 = true; $async$goto = t1 ? 7 : 8; break; case 7: // then $async$handler = 10; t1 = A._lateReadCheck($async$self.__CacheManager__webHelper, "_webHelper"); key = key; if (key == null) key = url; t2 = t1._memCache; subject = t2.$index(0, key); if (subject == null || false) { t3 = type$.FileResponse; controller = new A._AsyncBroadcastStreamController(null, null, type$._AsyncBroadcastStreamController_FileResponse); wrapper = new A._Wrapper(false, B.C__Empty, type$._Wrapper_FileResponse); subject = new A.BehaviorSubject(wrapper, controller, A.DeferStream$(A.BehaviorSubject__deferStream(wrapper, controller, false, t3), true, t3), type$.BehaviorSubject_FileResponse); t2.$indexSet(0, key, subject); t1._downloadOrAddToQueue$3(url, key, headers); } t1 = new A._StreamIterator(A.checkNotNullable(subject, "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 13; t2 = A._instanceType(streamController)._eval$1("_DelayedData<1>"); case 16: // for condition $async$goto = 18; return A._asyncAwait(t1.moveNext$0(), $async$_pushFileToStream$5); case 18: // returning from await. if (!$async$result) { // goto after for $async$goto = 17; break; } response = t1.get$current(t1); if (response instanceof A.DownloadProgress && withProgress) { t3 = response; t4 = streamController._state; if (t4 >= 4) A.throwExpression(streamController._badEventState$0()); if ((t4 & 1) !== 0) streamController._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = streamController._ensurePendingEvents$0(); t3 = new A._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } if (response instanceof A.FileInfo) { t3 = response; t4 = streamController._state; if (t4 >= 4) A.throwExpression(streamController._badEventState$0()); if ((t4 & 1) !== 0) streamController._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = streamController._ensurePendingEvents$0(); t3 = new A._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } // goto for condition $async$goto = 16; break; case 17: // after for $async$next.push(15); // goto finally $async$goto = 14; break; case 13: // uncaught $async$next = [10]; case 14: // finally $async$handler = 10; $async$goto = 19; return A._asyncAwait(t1.cancel$0(0), $async$_pushFileToStream$5); case 19: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 15: // after finally $async$handler = 1; // goto after finally $async$goto = 12; break; case 10: // catch $async$handler = 9; $async$exception1 = $async$currentError; e0 = A.unwrapException($async$exception1); t1 = $.$get$cacheLogger(); A.S(e0); t1.toString; if (cacheFile == null && (streamController._state & 1) !== 0) streamController.addError$1(e0); // goto after finally $async$goto = 12; break; case 9: // uncaught // goto rethrow $async$goto = 1; break; case 12: // after finally case 8: // join streamController.close$0(0); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_pushFileToStream$5, $async$completer); }, dispose$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self._cache_manager$_config.repo.close$0(0), $async$dispose$0); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$dispose$0, $async$completer); } }; A.DefaultCacheManager.prototype = {}; A._DefaultCacheManager_CacheManager_ImageCacheManager.prototype = {}; A.ImageCacheManager.prototype = {}; A.CacheStore.prototype = { getFile$2$ignoreMemCache(_, key, ignoreMemCache) { return this.getFile$body$CacheStore(0, key, false); }, getFile$body$CacheStore(_, key, ignoreMemCache) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_FileInfo), $async$returnValue, $async$self = this, file, cacheObject; var $async$getFile$2$ignoreMemCache = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.retrieveCacheData$2$ignoreMemCache(key, false), $async$getFile$2$ignoreMemCache); case 3: // returning from await. cacheObject = $async$result; if (cacheObject == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$goto = 4; return A._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$getFile$2$ignoreMemCache); case 4: // returning from await. file = $async$result; $.$get$cacheLogger().toString; $async$returnValue = new A.FileInfo(file, cacheObject.validTill); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getFile$2$ignoreMemCache, $async$completer); }, putFile$1(cacheObject) { return this.putFile$body$CacheStore(cacheObject); }, putFile$body$CacheStore(cacheObject) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$putFile$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._cache_store$_memCache.$indexSet(0, cacheObject.key, cacheObject); $async$goto = 2; return A._asyncAwait($async$self._updateCacheDataInDatabase$1(cacheObject), $async$putFile$1); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$putFile$1, $async$completer); }, retrieveCacheData$2$ignoreMemCache(key, ignoreMemCache) { return this.retrieveCacheData$body$CacheStore(key, false); }, retrieveCacheData$1(key) { return this.retrieveCacheData$2$ignoreMemCache(key, false); }, retrieveCacheData$body$CacheStore(key, ignoreMemCache) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_CacheObject), $async$returnValue, $async$self = this, t1, t2; var $async$retrieveCacheData$2$ignoreMemCache = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._cache_store$_memCache; t2 = t1.containsKey$1(0, key); $async$goto = t2 ? 3 : 4; break; case 3: // then $async$goto = 5; return A._asyncAwait($async$self._fileExists$1(t1.$index(0, key)), $async$retrieveCacheData$2$ignoreMemCache); case 5: // returning from await. if ($async$result) { $async$returnValue = t1.$index(0, key); // goto return $async$goto = 1; break; } case 4: // join t1 = $async$self._futureCache; if (!t1.containsKey$1(0, key)) { t2 = new A._Future($.Zone__current, type$._Future_nullable_CacheObject); $async$self._getCacheDataFromDatabase$1(key).then$1$1(0, new A.CacheStore_retrieveCacheData_closure($async$self, key, new A._AsyncCompleter(t2, type$._AsyncCompleter_nullable_CacheObject)), type$.void); t1.$indexSet(0, key, t2); } $async$returnValue = t1.$index(0, key); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$retrieveCacheData$2$ignoreMemCache, $async$completer); }, _fileExists$1(cacheObject) { return this._fileExists$body$CacheStore(cacheObject); }, _fileExists$body$CacheStore(cacheObject) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$_fileExists$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (cacheObject == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$goto = 3; return A._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_fileExists$1); case 3: // returning from await. $async$returnValue = $async$result.exists$0(); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_fileExists$1, $async$completer); }, _getCacheDataFromDatabase$1(key) { return this._getCacheDataFromDatabase$body$CacheStore(key); }, _getCacheDataFromDatabase$body$CacheStore(key) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_CacheObject), $async$returnValue, $async$self = this, data; var $async$_getCacheDataFromDatabase$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._cacheInfoRepository, $async$_getCacheDataFromDatabase$1); case 3: // returning from await. $async$result.toString; $async$goto = 4; return A._asyncAwait(A.Future_Future$value(null, type$.nullable_CacheObject), $async$_getCacheDataFromDatabase$1); case 4: // returning from await. data = $async$result; $async$goto = 5; return A._asyncAwait($async$self._fileExists$1(data), $async$_getCacheDataFromDatabase$1); case 5: // returning from await. if ($async$result) { data.toString; $async$self._updateCacheDataInDatabase$1(data); } $async$self._scheduleCleanup$0(); $async$returnValue = data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_getCacheDataFromDatabase$1, $async$completer); }, _scheduleCleanup$0() { if (this._scheduledCleanup != null) return; this._scheduledCleanup = A.Timer_Timer(B.Duration_10000000, new A.CacheStore__scheduleCleanup_closure(this)); }, _updateCacheDataInDatabase$1(cacheObject) { return this._updateCacheDataInDatabase$body$CacheStore(cacheObject); }, _updateCacheDataInDatabase$body$CacheStore(cacheObject) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this; var $async$_updateCacheDataInDatabase$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._cacheInfoRepository, $async$_updateCacheDataInDatabase$1); case 3: // returning from await. $async$result.toString; $async$returnValue = A.Future_Future$value(null, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_updateCacheDataInDatabase$1, $async$completer); }, _cleanupCache$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3, toRemove, $async$temp1; var $async$_cleanupCache$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start toRemove = A._setArrayType([], type$.JSArray_int); $async$goto = 2; return A._asyncAwait($async$self._cacheInfoRepository, $async$_cleanupCache$0); case 2: // returning from await. $async$result.toString; t1 = type$.JSArray_CacheObject; t2 = type$.List_CacheObject; $async$temp1 = J; $async$goto = 3; return A._asyncAwait(A.Future_Future$value(A._setArrayType([], t1), t2), $async$_cleanupCache$0); case 3: // returning from await. t3 = $async$temp1.get$iterator$ax($async$result); case 4: // for condition if (!t3.moveNext$0()) { // goto after for $async$goto = 5; break; } $async$self._removeCachedFile$2(t3.get$current(t3), toRemove); // goto for condition $async$goto = 4; break; case 5: // after for $async$temp1 = J; $async$goto = 6; return A._asyncAwait(A.Future_Future$value(A._setArrayType([], t1), t2), $async$_cleanupCache$0); case 6: // returning from await. t1 = $async$temp1.get$iterator$ax($async$result); case 7: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 8; break; } $async$self._removeCachedFile$2(t1.get$current(t1), toRemove); // goto for condition $async$goto = 7; break; case 8: // after for $async$goto = 9; return A._asyncAwait(A.Future_Future$value(toRemove.length, type$.int), $async$_cleanupCache$0); case 9: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_cleanupCache$0, $async$completer); }, _removeCachedFile$2(cacheObject, toRemove) { return this._removeCachedFile$body$CacheStore(cacheObject, toRemove); }, _removeCachedFile$body$CacheStore(cacheObject, toRemove) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t2, file, t1; var $async$_removeCachedFile$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = cacheObject.id; if (B.JSArray_methods.contains$1(toRemove, t1)) { // goto return $async$goto = 1; break; } t1.toString; toRemove.push(t1); t1 = $async$self._cache_store$_memCache; t2 = cacheObject.key; if (t1.containsKey$1(0, t2)) t1.remove$1(0, t2); t1 = $async$self._futureCache; if (t1.containsKey$1(0, t2)) t1.remove$1(0, t2); $async$goto = 3; return A._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_removeCachedFile$2); case 3: // returning from await. file = $async$result; $async$goto = 6; return A._asyncAwait(file.exists$0(), $async$_removeCachedFile$2); case 6: // returning from await. $async$goto = $async$result ? 4 : 5; break; case 4: // then $async$goto = 7; return A._asyncAwait(file.delete$0(0), $async$_removeCachedFile$2); case 7: // returning from await. case 5: // join case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_removeCachedFile$2, $async$completer); }, dispose$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._cacheInfoRepository, $async$dispose$0); case 3: // returning from await. $async$goto = 2; return A._asyncAwait($async$result.close$0(0), $async$dispose$0); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$dispose$0, $async$completer); } }; A.CacheStore_closure.prototype = { call$1(value) { return this.config.repo; }, $signature: 1331 }; A.CacheStore_retrieveCacheData_closure.prototype = { call$1(cacheObject) { return this.$call$body$CacheStore_retrieveCacheData_closure(cacheObject); }, $call$body$CacheStore_retrieveCacheData_closure(cacheObject) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = $async$self.key; t3 = t1._cache_store$_memCache; if (cacheObject == null) t3.remove$1(0, t2); else t3.$indexSet(0, t2, cacheObject); $async$self.completer.complete$1(0, cacheObject); t1._futureCache.remove$1(0, t2); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 1330 }; A.CacheStore__scheduleCleanup_closure.prototype = { call$0() { var t1 = this.$this; t1._scheduledCleanup = null; t1._cleanupCache$0(); }, $signature: 0 }; A.Config.prototype = {}; A.CacheLogger.prototype = {}; A.DownloadProgress.prototype = {}; A.FileInfo.prototype = {}; A.FileResponse.prototype = {}; A.NonStoringObjectProvider.prototype = { close$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$close$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$close$0, $async$completer); }, open$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$open$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$open$0, $async$completer); }, $isCacheInfoRepository: 1 }; A.CacheObject.prototype = { copyWith$6$eTag$id$length$relativePath$url$validTill(eTag, id, $length, relativePath, url, validTill) { var _this = this, t1 = url == null ? _this.url : url, t2 = relativePath == null ? _this.relativePath : relativePath, t3 = validTill == null ? _this.validTill : validTill, t4 = eTag == null ? _this.eTag : eTag, t5 = $length == null ? _this.length : $length; return A.CacheObject$(t1, t4, _this.id, _this.key, t5, t2, _this.touched, t3); }, copyWith$1$url(url) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(null, null, null, null, url, null); }, copyWith$3$eTag$relativePath$validTill(eTag, relativePath, validTill) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(eTag, null, null, relativePath, null, validTill); }, copyWith$1$length($length) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(null, null, $length, null, null, null); }, get$id(receiver) { return this.id; }, get$length(receiver) { return this.length; } }; A.MemoryCacheSystem.prototype = { createFile$1(_, $name) { return this.createFile$body$MemoryCacheSystem(0, $name); }, createFile$body$MemoryCacheSystem(_, $name) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.File_2), $async$returnValue, $async$self = this, t1, t2; var $async$createFile$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.directory, $async$createFile$1); case 3: // returning from await. t1 = $async$result; t2 = t1.fileSystem; $async$returnValue = new A.MemoryFile(t2, t2.getPath$1(0, t2._memory_file_system$_context.join$2(0, t1.path, $name))); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$createFile$1, $async$completer); } }; A.FileService.prototype = {}; A.HttpFileService.prototype = { $get$2$headers(_, url, headers) { return this.$get$body$HttpFileService(0, url, headers); }, $get$body$HttpFileService(_, url, headers) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.FileServiceResponse), $async$returnValue, $async$self = this, httpResponse, req; var $async$$get$2$headers = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start req = A.Request$("GET", A.Uri_parse(url, 0, null)); req.headers.addAll$1(0, headers); $async$goto = 3; return A._asyncAwait($async$self._httpClient.send$1(0, req), $async$$get$2$headers); case 3: // returning from await. httpResponse = $async$result; A.clock(); $async$returnValue = new A.HttpGetResponse(A.systemTime(), httpResponse); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$$get$2$headers, $async$completer); } }; A.HttpGetResponse.prototype = { get$statusCode(_) { return this._file_service$_response.statusCode; }, get$validTill() { var controlSettings, t1, ageDuration, _i, sanitizedSetting, validSeconds, controlHeader = this._file_service$_response.headers.$index(0, "cache-control"); if (controlHeader != null) { controlSettings = controlHeader.split(","); for (t1 = controlSettings.length, ageDuration = B.Duration_604800000000, _i = 0; _i < t1; ++_i) { sanitizedSetting = J.trim$0$s(controlSettings[_i]).toLowerCase(); if (sanitizedSetting === "no-cache") ageDuration = B.Duration_0; if (B.JSString_methods.startsWith$1(sanitizedSetting, "max-age=")) { validSeconds = A.Primitives_parseInt(sanitizedSetting.split("=")[1], null); if (validSeconds == null) validSeconds = 0; if (validSeconds > 0) ageDuration = new A.Duration(1000000 * validSeconds); } } } else ageDuration = B.Duration_604800000000; return this._receivedTime.add$1(0, ageDuration); }, $isFileServiceResponse: 1 }; A.QueueItem.prototype = {}; A.WebHelper.prototype = { _downloadOrAddToQueue$3(url, key, authHeaders) { return this._downloadOrAddToQueue$body$WebHelper(url, key, authHeaders); }, _downloadOrAddToQueue$body$WebHelper(url, key, authHeaders) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, subject, result, e, stackTrace, t2, t3, t4, t5, exception, t1, $async$exception; var $async$_downloadOrAddToQueue$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.concurrentCalls; if (t1 >= 10) { $async$self._web_helper$_queue._add$1(0, new A.QueueItem(url, key, authHeaders)); // goto return $async$goto = 1; break; } $.$get$cacheLogger().toString; $async$self.concurrentCalls = t1 + 1; t1 = $async$self._memCache; t2 = t1.$index(0, key); t2.toString; subject = t2; $async$handler = 4; t2 = new A._StreamIterator(A.checkNotNullable($async$self._updateFile$3$authHeaders(url, key, authHeaders), "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 7; case 10: // for condition $async$goto = 12; return A._asyncAwait(t2.moveNext$0(), $async$_downloadOrAddToQueue$3); case 12: // returning from await. if (!$async$result) { // goto after for $async$goto = 11; break; } result = t2.get$current(t2); t3 = subject; t4 = result; if (t3._isAddingStreamItems) A.throwExpression(A.StateError$(string$.You_ca)); t5 = t3._wrapper; t5.value = t4; t5.isValue = true; t3 = t3._subject$_controller; if (!t3.get$_mayAddEvent()) A.throwExpression(t3._addEventError$0()); t3._sendData$1(t4); // goto for condition $async$goto = 10; break; case 11: // after for $async$next.push(9); // goto finally $async$goto = 8; break; case 7: // uncaught $async$next = [4]; case 8: // finally $async$handler = 4; $async$goto = 13; return A._asyncAwait(t2.cancel$0(0), $async$_downloadOrAddToQueue$3); case 13: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 9: // after finally $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); stackTrace = A.getTraceFromException($async$exception); subject.addError$2(e, stackTrace); $async$next.push(6); // goto finally $async$goto = 5; break; case 3: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; --$async$self.concurrentCalls; $async$goto = 14; return A._asyncAwait(J.close$0$x(subject), $async$_downloadOrAddToQueue$3); case 14: // returning from await. t1.remove$1(0, key); $async$self._checkQueue$0(); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_downloadOrAddToQueue$3, $async$completer); }, _checkQueue$0() { var next, t1 = this._web_helper$_queue; if (t1._head === t1._tail) return; next = t1.removeFirst$0(); this._downloadOrAddToQueue$3(next.url, next.key, next.headers); }, _updateFile$3$authHeaders(url, key, authHeaders) { return this._updateFile$body$WebHelper(url, key, authHeaders); }, _updateFile$body$WebHelper(url, key, authHeaders) { var $async$_updateFile$3$authHeaders = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncStarHelper($async$self._web_helper$_store.retrieveCacheData$1(key), $async$_updateFile$3$authHeaders, $async$controller); case 3: // returning from await. cacheObject = $async$result; if (cacheObject == null) { A.clock(); t1 = A.systemTime(); cacheObject = A.CacheObject$(url, null, null, key, null, B.C_Uuid.v1$0() + ".file", null, t1); } else cacheObject = cacheObject.copyWith$1$url(url); t1 = type$.String; headers = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); if (authHeaders != null) headers.addAll$1(0, authHeaders); $async$temp1 = cacheObject; $async$goto = 5; return A._asyncStarHelper($async$self.fileFetcher.$get$2$headers(0, cacheObject.url, headers), $async$_updateFile$3$authHeaders, $async$controller); case 5: // returning from await. $async$goto = 4; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldStar($async$self._manageResponse$2($async$temp1, $async$result)), $async$_updateFile$3$authHeaders, $async$controller); case 4: // after yield case 1: // return return A._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return A._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = A._makeAsyncStarStreamController($async$_updateFile$3$authHeaders, type$.FileResponse), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, headers, cacheObject, $async$temp1; return A._streamOfController($async$controller); }, _manageResponse$2(cacheObject, response) { return this._manageResponse$body$WebHelper(cacheObject, response); }, _manageResponse$body$WebHelper(cacheObject, response) { var $async$_manageResponse$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; t1 = response._file_service$_response; t2 = t1.statusCode; hasNewFile = B.JSArray_methods.contains$1(B.List_200_202, t2); keepOldFile = B.JSArray_methods.contains$1(B.List_304, t2); if (!hasNewFile && !keepOldFile) { response.get$statusCode(response); throw A.wrapException(new A.HttpExceptionWithStatus("Invalid statusCode: " + A.S(response.get$statusCode(response)), A.Uri_parse(cacheObject.url, 0, null))); } t3 = t1.headers; contentTypeHeader = t3.$index(0, "content-type"); if (contentTypeHeader != null) { result = new A._ContentType(); result._HeaderValue$2("", B.Map_empty7); result.__http$_parse$4(contentTypeHeader, ";", null, false); t4 = result.__http$_value; index = B.JSString_methods.indexOf$1(t4, "/"); if (index === -1 || index === t4.length - 1) t4 = result._primaryType = B.JSString_methods.trim$0(t4).toLowerCase(); else { t5 = result._primaryType = B.JSString_methods.trim$0(B.JSString_methods.substring$2(t4, 0, index)).toLowerCase(); result._subType = B.JSString_methods.trim$0(B.JSString_methods.substring$1(t4, index + 1)).toLowerCase(); t4 = t5; } fileExtension = B.Map_eyCh9.$index(0, t4 + "/" + result._subType); if (fileExtension == null) fileExtension = "." + result._subType; } else fileExtension = ""; filePath = cacheObject.relativePath; if (!B.JSArray_methods.contains$1(B.List_304, t2)) { if (!B.JSString_methods.endsWith$1(filePath, fileExtension)) $async$self._removeOldFile$1(filePath); filePath = B.C_Uuid.v1$0() + fileExtension; } t4 = response.get$validTill(); newCacheObject = _box_0.newCacheObject = cacheObject.copyWith$3$eTag$relativePath$validTill(t3.$index(0, "etag"), filePath, t4); $async$goto = B.JSArray_methods.contains$1(B.List_200_202, t2) ? 3 : 5; break; case 3: // then savedBytes = 0; receivedBytesResultController = A.StreamController_StreamController(null, null, null, false, type$.int); $async$self._saveFileAndPostUpdates$3(receivedBytesResultController, newCacheObject, response); t2 = new A._StreamIterator(A.checkNotNullable(new A._ControllerStream(receivedBytesResultController, A._instanceType(receivedBytesResultController)._eval$1("_ControllerStream<1>")), "stream", type$.Object), type$._StreamIterator_int); $async$handler = 6; t1 = t1.contentLength; case 9: // for condition $async$goto = 11; return A._asyncStarHelper(t2.moveNext$0(), $async$_manageResponse$2, $async$controller); case 11: // returning from await. if (!$async$result) { // goto after for $async$goto = 10; break; } progress = t2.get$current(t2); savedBytes = progress; $async$goto = 12; $async$nextWhenCanceled = [1, 7]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(new A.DownloadProgress(t1, progress)), $async$_manageResponse$2, $async$controller); case 12: // after yield // goto for condition $async$goto = 9; break; case 10: // after for $async$next.push(8); // goto finally $async$goto = 7; break; case 6: // uncaught $async$next = [2]; case 7: // finally $async$handler = 2; $async$goto = 13; return A._asyncStarHelper(t2.cancel$0(0), $async$_manageResponse$2, $async$controller); case 13: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 8: // after finally t1 = _box_0.newCacheObject = _box_0.newCacheObject.copyWith$1$length(savedBytes); // goto join $async$goto = 4; break; case 5: // else t1 = newCacheObject; case 4: // join t2 = $async$self._web_helper$_store; t2.putFile$1(t1).then$1$1(0, new A.WebHelper__manageResponse_closure(_box_0, $async$self, cacheObject), type$.void); $async$temp1 = A; $async$goto = 15; return A._asyncStarHelper(t2.fileSystem.createFile$1(0, _box_0.newCacheObject.relativePath), $async$_manageResponse$2, $async$controller); case 15: // returning from await. $async$goto = 14; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(new $async$temp1.FileInfo($async$result, _box_0.newCacheObject.validTill)), $async$_manageResponse$2, $async$controller); case 14: // after yield case 1: // return return A._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return A._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = A._makeAsyncStarStreamController($async$_manageResponse$2, type$.FileResponse), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, savedBytes, progress, t3, contentTypeHeader, result, t4, index, t5, fileExtension, filePath, newCacheObject, receivedBytesResultController, _box_0, t1, t2, hasNewFile, keepOldFile, $async$temp1; return A._streamOfController($async$controller); }, _saveFileAndPostUpdates$3(receivedBytesResultController, cacheObject, response) { return this._saveFileAndPostUpdates$body$WebHelper(receivedBytesResultController, cacheObject, response); }, _saveFileAndPostUpdates$body$WebHelper(receivedBytesResultController, cacheObject, response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, sink, e, stacktrace, t2, exception, t1, file, $async$exception; var $async$_saveFileAndPostUpdates$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = {}; $async$goto = 2; return A._asyncAwait($async$self._web_helper$_store.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_saveFileAndPostUpdates$3); case 2: // returning from await. file = $async$result; $async$handler = 4; t1.receivedBytes = 0; t2 = file; t2.fileSystem.opHandle.call$2(t2.path, B.FileSystemOp_4); sink = A._FileSink__FileSink$fromFile(t2, B.FileMode_1, B.C_Utf8Codec); t2 = response._file_service$_response.stream; $async$goto = 7; return A._asyncAwait(new A._MapStream(new A.WebHelper__saveFileAndPostUpdates_closure(t1, receivedBytesResultController), t2, A._instanceType(t2)._eval$1("_MapStream>")).pipe$1(sink), $async$_saveFileAndPostUpdates$3); case 7: // returning from await. $async$handler = 1; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); stacktrace = A.getTraceFromException($async$exception); receivedBytesResultController.addError$2(e, stacktrace); // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 1; break; case 6: // after finally $async$goto = 8; return A._asyncAwait(receivedBytesResultController.close$0(0), $async$_saveFileAndPostUpdates$3); case 8: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_saveFileAndPostUpdates$3, $async$completer); }, _removeOldFile$1(relativePath) { return this._removeOldFile$body$WebHelper(relativePath); }, _removeOldFile$body$WebHelper(relativePath) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, file; var $async$_removeOldFile$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait($async$self._web_helper$_store.fileSystem.createFile$1(0, relativePath), $async$_removeOldFile$1); case 2: // returning from await. file = $async$result; $async$goto = 5; return A._asyncAwait(file.exists$0(), $async$_removeOldFile$1); case 5: // returning from await. $async$goto = $async$result ? 3 : 4; break; case 3: // then $async$goto = 6; return A._asyncAwait(file.delete$0(0), $async$_removeOldFile$1); case 6: // returning from await. case 4: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_removeOldFile$1, $async$completer); } }; A.WebHelper__manageResponse_closure.prototype = { call$1(_) { var t1 = this.oldCacheObject.relativePath; if (this._box_0.newCacheObject.relativePath !== t1) this.$this._removeOldFile$1(t1); }, $signature: 86 }; A.WebHelper__saveFileAndPostUpdates_closure.prototype = { call$1(s) { var t1 = this._box_0, receivedBytes = t1.receivedBytes + J.get$length$asx(s); t1.receivedBytes = receivedBytes; this.receivedBytesResultController.add$1(0, receivedBytes); return s; }, $signature: 1329 }; A.HttpExceptionWithStatus.prototype = {}; A.BlockPicker.prototype = { createState$0() { return new A._BlockPickerState(B._StateLifecycle_0); }, onColorChanged$1(arg0) { return this.onColorChanged.call$1(arg0); }, layoutBuilder$3(arg0, arg1, arg2) { return A.block_picker___defaultLayoutBuilder$closure().call$3(arg0, arg1, arg2); }, itemBuilder$3(arg0, arg1, arg2) { return A.block_picker___defaultItemBuilder$closure().call$3(arg0, arg1, arg2); } }; A._BlockPickerState.prototype = { initState$0() { this.___BlockPickerState__currentColor = this._widget.pickerColor; this.super$State$initState(); }, changeColor$1(color) { this.setState$1(new A._BlockPickerState_changeColor_closure(this, color)); this._widget.onColorChanged$1(color); }, build$1(_, context) { var t1 = this._widget; return t1.layoutBuilder$3(context, t1.availableColors, new A._BlockPickerState_build_closure(this)); } }; A._BlockPickerState_changeColor_closure.prototype = { call$0() { return this.$this.___BlockPickerState__currentColor = this.color; }, $signature: 0 }; A._BlockPickerState_build_closure.prototype = { call$1(color) { var t3, t1 = this.$this, t2 = t1._widget; t2.toString; t3 = A._lateReadCheck(t1.___BlockPickerState__currentColor, "_currentColor"); if (t3.get$value(t3) === color.get$value(color)) { t1._widget.toString; t3 = true; } else t3 = false; return t2.itemBuilder$3(color, t3, new A._BlockPickerState_build__closure(t1, color)); }, $signature: 1328 }; A._BlockPickerState_build__closure.prototype = { call$0() { return this.$this.changeColor$1(this.color); }, $signature: 0 }; A.JsonViewer.prototype = { createState$0() { return new A._JsonViewerState(B._StateLifecycle_0); } }; A._JsonViewerState.prototype = { build$1(_, context) { return A._JsonViewerState_getContentWidget(this._widget.jsonObj); } }; A.JsonObjectViewer.prototype = { createState$0() { return new A.JsonObjectViewerState(new A.JsLinkedHashMap(type$.JsLinkedHashMap_String_bool), B._StateLifecycle_0); } }; A.JsonObjectViewerState.prototype = { build$1(_, context) { var _null = null; if (this._widget.notRoot) return A.Container$(_null, A.Column$(this._getList$0(), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(14, 0, 0, 0), _null, _null, _null); return A.Column$(this._getList$0(), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, _getList$0() { var t2, t3, t4, ex, ink, t5, t6, t7, _this = this, _null = null, t1 = type$.JSArray_Widget, list = A._setArrayType([], t1); for (t2 = J.get$entries$x(_this._widget.jsonObj), t2 = t2.get$iterator(t2), t3 = _this.openFlag; t2.moveNext$0();) { t4 = t2.get$current(t2); ex = A.JsonObjectViewerState_isExtensible(t4.get$value(t4)); ink = A.JsonObjectViewerState_isInkWell(t4.get$value(t4)); if (ex) { t5 = t3.$index(0, t4.get$key(t4)); t5 = (t5 == null ? false : t5) ? new A.Icon(B.IconData_57496_MaterialIcons_null_false, 14, B.Color_4284572001, _null) : new A.Icon(B.IconData_57502_MaterialIcons_null_true, 14, B.Color_4284572001, _null); } else t5 = B.Icon_kXN; if (ex && ink) { t6 = t4.get$key(t4); t6 = A.InkWell$(false, _null, true, new A.Text(t6, _null, new A.TextStyle(true, B.Color_4283045004, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState__getList_closure(_this, t4), _null, _null, _null, _null, _null, _null); } else { t6 = t4.get$key(t4); t7 = t4.get$value(t4) == null ? B.MaterialColor_Map_HFpTk_4288585374 : B.Color_4283045004; t6 = new A.Text(t6, _null, new A.TextStyle(true, t7, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null); } list.push(A.Row$(A._setArrayType([t5, t6, new A.Text(":", _null, new A.TextStyle(true, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null), B.SizedBox_3_null_null_null, _this.getValueWidget$1(t4)], t1), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); list.push(B.SizedBox_null_4_null_null); t5 = t3.$index(0, t4.get$key(t4)); if (t5 == null ? false : t5) list.push(A.JsonObjectViewerState_getContentWidget(t4.get$value(t4))); } return list; }, getValueWidget$1(entry) { var _null = null; if (entry.get$value(entry) == null) return A.Expanded$(A.Text$("undefined", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (A._isInt(entry.get$value(entry))) return A.Expanded$(A.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof entry.get$value(entry) == "string") return A.Expanded$(A.Text$(B.JSString_methods.$add('"', entry.get$value(entry)) + '"', _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialAccentColor_Map_iTECn_4294922834, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (A._isBool(entry.get$value(entry))) return A.Expanded$(A.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JNNS7_4288423856, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof entry.get$value(entry) == "number") return A.Expanded$(A.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (type$.List_dynamic._is(entry.get$value(entry))) if (J.get$isEmpty$asx(entry.get$value(entry))) return A.Text$("Array[0]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else return A.InkWell$(false, _null, true, A.Text$("Array<" + A.JsonObjectViewerState_getTypeName(J.$index$asx(entry.get$value(entry), 0)) + ">[" + A.S(J.get$length$asx(entry.get$value(entry))) + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState_getValueWidget_closure(this, entry), _null, _null, _null, _null, _null, _null); return A.InkWell$(false, _null, true, A.Text$("Object", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState_getValueWidget_closure0(this, entry), _null, _null, _null, _null, _null, _null); } }; A.JsonObjectViewerState__getList_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState__getList__closure(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState__getList__closure.prototype = { call$0() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState_getValueWidget__closure0(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget__closure0.prototype = { call$0() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState_getValueWidget__closure(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget__closure.prototype = { call$0() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonArrayViewer.prototype = { createState$0() { return new A._JsonArrayViewerState(B._StateLifecycle_0); } }; A._JsonArrayViewerState.prototype = { build$1(_, context) { var _null = null; if (this._widget.notRoot) return A.Container$(_null, A.Column$(this._getList$0(), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(14, 0, 0, 0), _null, _null, _null); return A.Column$(this._getList$0(), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, initState$0() { this.super$State$initState(); this.___JsonArrayViewerState_openFlag = A.List_List$filled(J.get$length$asx(this._widget.jsonArray), false, false, type$.bool); }, _getList$0() { var t2, i, $content, ex, ink, t3, t4, _this = this, _null = null, _s8_ = "openFlag", t1 = type$.JSArray_Widget, list = A._setArrayType([], t1); for (t2 = J.get$iterator$ax(_this._widget.jsonArray), i = 0; t2.moveNext$0();) { $content = t2.get$current(t2); ex = A.JsonObjectViewerState_isExtensible($content); ink = A.JsonObjectViewerState_isInkWell($content); if (ex) t3 = J.$index$asx(A._lateReadCheck(_this.___JsonArrayViewerState_openFlag, _s8_), i) ? new A.Icon(B.IconData_57496_MaterialIcons_null_false, 14, B.Color_4284572001, _null) : new A.Icon(B.IconData_57502_MaterialIcons_null_true, 14, B.Color_4284572001, _null); else t3 = B.Icon_kXN; if (ex && ink) t4 = _this.getInkWell$1(i); else { t4 = $content == null ? B.MaterialColor_Map_HFpTk_4288585374 : B.Color_4283045004; t4 = new A.Text("[" + i + "]", _null, new A.TextStyle(true, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null); } list.push(A.Row$(A._setArrayType([t3, t4, new A.Text(":", _null, new A.TextStyle(true, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null), B.SizedBox_3_null_null_null, _this.getValueWidget$2($content, i)], t1), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); list.push(B.SizedBox_null_4_null_null); if (J.$index$asx(A._lateReadCheck(_this.___JsonArrayViewerState_openFlag, _s8_), i)) list.push(A.JsonObjectViewerState_getContentWidget($content)); ++i; } return list; }, getInkWell$1(index) { var _null = null; return A.InkWell$(false, _null, true, A.Text$("[" + index + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4283045004, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getInkWell_closure(this, index), _null, _null, _null, _null, _null, _null); }, getValueWidget$2($content, index) { var t1, _null = null; if ($content == null) return A.Expanded$(A.Text$("undefined", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (A._isInt($content)) return A.Expanded$(A.Text$(B.JSInt_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof $content == "string") return A.Expanded$(A.Text$('"' + $content + '"', _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialAccentColor_Map_iTECn_4294922834, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (A._isBool($content)) return A.Expanded$(A.Text$(B.JSBool_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JNNS7_4288423856, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof $content == "number") return A.Expanded$(A.Text$(B.JSNumber_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (type$.List_dynamic._is($content)) { t1 = J.getInterceptor$asx($content); if (t1.get$isEmpty($content)) return A.Text$("Array[0]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else return A.InkWell$(false, _null, true, A.Text$("Array<" + A.JsonObjectViewerState_getTypeName($content) + ">[" + A.S(t1.get$length($content)) + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getValueWidget_closure(this, index), _null, _null, _null, _null, _null, _null); } return A.InkWell$(false, _null, true, A.Text$("Object", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getValueWidget_closure0(this, index), _null, _null, _null, _null, _null, _null); } }; A._JsonArrayViewerState_getInkWell_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getInkWell__closure(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getInkWell__closure.prototype = { call$0() { var _s8_ = "openFlag", t1 = this.$this, t2 = this.index; J.$indexSet$ax(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2, !J.$index$asx(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getValueWidget__closure0(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget__closure0.prototype = { call$0() { var _s8_ = "openFlag", t1 = this.$this, t2 = this.index; J.$indexSet$ax(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2, !J.$index$asx(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getValueWidget__closure(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget__closure.prototype = { call$0() { var _s8_ = "openFlag", t1 = this.$this, t2 = this.index; J.$indexSet$ax(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2, !J.$index$asx(A._lateReadCheck(t1.___JsonArrayViewerState_openFlag, _s8_), t2)); }, $signature: 0 }; A.GlobalCupertinoLocalizations.prototype = {$isCupertinoLocalizations: 1}; A._GlobalCupertinoLocalizationsDelegate.prototype = { isSupported$1(locale) { return $.$get$kCupertinoSupportedLanguages().contains$1(0, locale.get$languageCode(locale)); }, load$1(_, locale) { return $._GlobalCupertinoLocalizationsDelegate__loadedTranslations.putIfAbsent$2(0, locale, new A._GlobalCupertinoLocalizationsDelegate_load_closure(locale)); }, shouldReload$1(old) { return false; }, toString$0(_) { return "GlobalCupertinoLocalizations.delegate(" + $.$get$kCupertinoSupportedLanguages()._collection$_length + " locales)"; } }; A._GlobalCupertinoLocalizationsDelegate_load_closure.prototype = { call$0() { var t1, localeName, fullYearFormat, dayFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, doubleDigitMinuteFormat, singleDigitSecondFormat, decimalFormat, t2; A.loadDateIntlDataIfNotLoaded(); t1 = this.locale; localeName = A.canonicalizedLocale(J.toString$0$(t1)); fullYearFormat = A._Cell$named("fullYearFormat"); dayFormat = A._Cell$named("dayFormat"); mediumDateFormat = A._Cell$named("mediumDateFormat"); singleDigitHourFormat = A._Cell$named("singleDigitHourFormat"); singleDigitMinuteFormat = A._Cell$named("singleDigitMinuteFormat"); doubleDigitMinuteFormat = A._Cell$named("doubleDigitMinuteFormat"); singleDigitSecondFormat = A._Cell$named("singleDigitSecondFormat"); decimalFormat = A._Cell$named("decimalFormat"); t2 = new A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats(fullYearFormat, dayFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, doubleDigitMinuteFormat, singleDigitSecondFormat, decimalFormat); if (A.DateFormat_localeExists(localeName)) t2.call$1(localeName); else if (A.DateFormat_localeExists(t1.get$languageCode(t1))) t2.call$1(t1.get$languageCode(t1)); else t2.call$1(null); t1 = A.getCupertinoTranslation(t1, fullYearFormat._readLocal$0(), dayFormat._readLocal$0(), mediumDateFormat._readLocal$0(), singleDigitHourFormat._readLocal$0(), singleDigitMinuteFormat._readLocal$0(), doubleDigitMinuteFormat._readLocal$0(), singleDigitSecondFormat._readLocal$0(), decimalFormat._readLocal$0()); t1.toString; return new A.SynchronousFuture(t1, type$.SynchronousFuture_CupertinoLocalizations); }, $signature: 1310 }; A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats.prototype = { call$1(locale) { var _this = this; _this.fullYearFormat.__late_helper$_value = A.DateFormat$y(locale); _this.dayFormat.__late_helper$_value = A.DateFormat$d(locale); _this.mediumDateFormat.__late_helper$_value = A.DateFormat$MMMEd(locale); _this.singleDigitHourFormat.__late_helper$_value = A.DateFormat$("HH", locale); _this.singleDigitMinuteFormat.__late_helper$_value = A.DateFormat$m(locale); _this.doubleDigitMinuteFormat.__late_helper$_value = A.DateFormat$("mm", locale); _this.singleDigitSecondFormat.__late_helper$_value = A.DateFormat$s(locale); _this.decimalFormat.__late_helper$_value = A.NumberFormat_NumberFormat$decimalPattern(locale); }, $signature: 239 }; A.CupertinoLocalizationAf.prototype = {}; A.CupertinoLocalizationAm.prototype = {}; A.CupertinoLocalizationAr.prototype = {}; A.CupertinoLocalizationAs.prototype = {}; A.CupertinoLocalizationAz.prototype = {}; A.CupertinoLocalizationBe.prototype = {}; A.CupertinoLocalizationBg.prototype = {}; A.CupertinoLocalizationBn.prototype = {}; A.CupertinoLocalizationBs.prototype = {}; A.CupertinoLocalizationCa.prototype = {}; A.CupertinoLocalizationCs.prototype = {}; A.CupertinoLocalizationDa.prototype = {}; A.CupertinoLocalizationDe.prototype = {}; A.CupertinoLocalizationDeCh.prototype = {}; A.CupertinoLocalizationEl.prototype = {}; A.CupertinoLocalizationEn.prototype = {}; A.CupertinoLocalizationEnAu.prototype = {}; A.CupertinoLocalizationEnCa.prototype = {}; A.CupertinoLocalizationEnGb.prototype = {}; A.CupertinoLocalizationEnIe.prototype = {}; A.CupertinoLocalizationEnIn.prototype = {}; A.CupertinoLocalizationEnNz.prototype = {}; A.CupertinoLocalizationEnSg.prototype = {}; A.CupertinoLocalizationEnZa.prototype = {}; A.CupertinoLocalizationEs.prototype = {}; A.CupertinoLocalizationEs419.prototype = {}; A.CupertinoLocalizationEsAr.prototype = {}; A.CupertinoLocalizationEsBo.prototype = {}; A.CupertinoLocalizationEsCl.prototype = {}; A.CupertinoLocalizationEsCo.prototype = {}; A.CupertinoLocalizationEsCr.prototype = {}; A.CupertinoLocalizationEsDo.prototype = {}; A.CupertinoLocalizationEsEc.prototype = {}; A.CupertinoLocalizationEsGt.prototype = {}; A.CupertinoLocalizationEsHn.prototype = {}; A.CupertinoLocalizationEsMx.prototype = {}; A.CupertinoLocalizationEsNi.prototype = {}; A.CupertinoLocalizationEsPa.prototype = {}; A.CupertinoLocalizationEsPe.prototype = {}; A.CupertinoLocalizationEsPr.prototype = {}; A.CupertinoLocalizationEsPy.prototype = {}; A.CupertinoLocalizationEsSv.prototype = {}; A.CupertinoLocalizationEsUs.prototype = {}; A.CupertinoLocalizationEsUy.prototype = {}; A.CupertinoLocalizationEsVe.prototype = {}; A.CupertinoLocalizationEt.prototype = {}; A.CupertinoLocalizationEu.prototype = {}; A.CupertinoLocalizationFa.prototype = {}; A.CupertinoLocalizationFi.prototype = {}; A.CupertinoLocalizationFil.prototype = {}; A.CupertinoLocalizationFr.prototype = {}; A.CupertinoLocalizationFrCa.prototype = {}; A.CupertinoLocalizationGl.prototype = {}; A.CupertinoLocalizationGsw.prototype = {}; A.CupertinoLocalizationGu.prototype = {}; A.CupertinoLocalizationHe.prototype = {}; A.CupertinoLocalizationHi.prototype = {}; A.CupertinoLocalizationHr.prototype = {}; A.CupertinoLocalizationHu.prototype = {}; A.CupertinoLocalizationHy.prototype = {}; A.CupertinoLocalizationId.prototype = {}; A.CupertinoLocalizationIs.prototype = {}; A.CupertinoLocalizationIt.prototype = {}; A.CupertinoLocalizationJa.prototype = {}; A.CupertinoLocalizationKa.prototype = {}; A.CupertinoLocalizationKk.prototype = {}; A.CupertinoLocalizationKm.prototype = {}; A.CupertinoLocalizationKn.prototype = {}; A.CupertinoLocalizationKo.prototype = {}; A.CupertinoLocalizationKy.prototype = {}; A.CupertinoLocalizationLo.prototype = {}; A.CupertinoLocalizationLt.prototype = {}; A.CupertinoLocalizationLv.prototype = {}; A.CupertinoLocalizationMk.prototype = {}; A.CupertinoLocalizationMl.prototype = {}; A.CupertinoLocalizationMn.prototype = {}; A.CupertinoLocalizationMr.prototype = {}; A.CupertinoLocalizationMs.prototype = {}; A.CupertinoLocalizationMy.prototype = {}; A.CupertinoLocalizationNb.prototype = {}; A.CupertinoLocalizationNe.prototype = {}; A.CupertinoLocalizationNl.prototype = {}; A.CupertinoLocalizationNo.prototype = {}; A.CupertinoLocalizationOr.prototype = {}; A.CupertinoLocalizationPa.prototype = {}; A.CupertinoLocalizationPl.prototype = {}; A.CupertinoLocalizationPt.prototype = {}; A.CupertinoLocalizationPtPt.prototype = {}; A.CupertinoLocalizationRo.prototype = {}; A.CupertinoLocalizationRu.prototype = {}; A.CupertinoLocalizationSi.prototype = {}; A.CupertinoLocalizationSk.prototype = {}; A.CupertinoLocalizationSl.prototype = {}; A.CupertinoLocalizationSq.prototype = {}; A.CupertinoLocalizationSr.prototype = {}; A.CupertinoLocalizationSrCyrl.prototype = {}; A.CupertinoLocalizationSrLatn.prototype = {}; A.CupertinoLocalizationSv.prototype = {}; A.CupertinoLocalizationSw.prototype = {}; A.CupertinoLocalizationTa.prototype = {}; A.CupertinoLocalizationTe.prototype = {}; A.CupertinoLocalizationTh.prototype = {}; A.CupertinoLocalizationTl.prototype = {}; A.CupertinoLocalizationTr.prototype = {}; A.CupertinoLocalizationUk.prototype = {}; A.CupertinoLocalizationUr.prototype = {}; A.CupertinoLocalizationUz.prototype = {}; A.CupertinoLocalizationVi.prototype = {}; A.CupertinoLocalizationZh.prototype = {}; A.CupertinoLocalizationZhHans.prototype = {}; A.CupertinoLocalizationZhHant.prototype = {}; A.CupertinoLocalizationZhHantHk.prototype = {}; A.CupertinoLocalizationZhHantTw.prototype = {}; A.CupertinoLocalizationZu.prototype = {}; A.MaterialLocalizationAf.prototype = { get$alertDialogLabel() { return "Opletberig"; }, get$anteMeridiemAbbreviation() { return "vm."; }, get$backButtonTooltip() { return "Terug"; }, get$calendarModeButtonLabel() { return "Skakel oor na kalender"; }, get$cancelButtonLabel() { return "KANSELLEER"; }, get$collapsedIconTapHint() { return "Vou uit"; }, get$dateHelpText() { return "dd-mm-jjjj"; }, get$dateInputLabel() { return "Voer datum in"; }, get$dateOutOfRangeLabel() { return "Buite reeks."; }, get$datePickerHelpText() { return "KIES DATUM"; }, get$dialModeButtonLabel() { return "Skakel oor na wyserplaatkiesermodus"; }, get$dialogLabel() { return "Dialoog"; }, get$drawerLabel() { return "Navigasiekieslys"; }, get$expandedIconTapHint() { return "Vou in"; }, get$firstPageTooltip() { return "Eerste bladsy"; }, get$inputDateModeButtonLabel() { return "Skakel oor na invoer"; }, get$inputTimeModeButtonLabel() { return "Skakel oor na teksinvoermodus"; }, get$invalidDateFormatLabel() { return "Ongeldige formaat."; }, get$invalidTimeLabel() { return "Voer 'n geldige tyd in"; }, get$lastPageTooltip() { return "Laaste bladsy"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisensie"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisensies"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lisensies"; }, get$modalBarrierDismissLabel() { return "Maak toe"; }, get$nextMonthTooltip() { return "Volgende maand"; }, get$nextPageTooltip() { return "Volgende bladsy"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Maak navigasiekieslys oop"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow van $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow van ongeveer $rowCount"; }, get$popupMenuLabel() { return "Opspringkieslys"; }, get$postMeridiemAbbreviation() { return "nm."; }, get$previousMonthTooltip() { return "Vorige maand"; }, get$previousPageTooltip() { return "Vorige bladsy"; }, get$refreshIndicatorSemanticLabel() { return "Herlaai"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 karakter oor"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount karakters oor"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Skuif af"; }, get$reorderItemToEnd() { return "Skuif na die einde"; }, get$reorderItemToStart() { return "Skuif na die begin"; }, get$reorderItemUp() { return "Skuif op"; }, get$rowsPerPageTitle() { return "Rye per bladsy:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Kies jaar"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item is gekies"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount items is gekies"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Wys kieslys"; }, get$tabLabelRaw() { return "Oortjie $tabIndex van $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "KIES TYD"; }, get$timePickerHourLabel() { return "Uur"; }, get$timePickerHourModeAnnouncement() { return "Kies ure"; }, get$timePickerInputHelpText() { return "VOER TYD IN"; }, get$timePickerMinuteLabel() { return "Minuut"; }, get$timePickerMinuteModeAnnouncement() { return "Kies minute"; } }; A.MaterialLocalizationAm.prototype = { get$alertDialogLabel() { return "\u121b\u1295\u1242\u12eb"; }, get$anteMeridiemAbbreviation() { return "\u1325\u12cb\u1275"; }, get$backButtonTooltip() { return "\u1270\u1218\u1208\u1235"; }, get$calendarModeButtonLabel() { return "\u12c8\u12f0 \u12e8\u1240\u1295 \u1218\u1241\u1320\u122a\u12eb \u1240\u12ed\u122d"; }, get$cancelButtonLabel() { return "\u12ed\u1245\u122d"; }, get$collapsedIconTapHint() { return "\u12d8\u122d\u130b"; }, get$dateHelpText() { return "\u12c8\u12c8/\u1240\u1240/\u12d3\u12d3\u12d3\u12d3"; }, get$dateInputLabel() { return "\u1240\u1295 \u12eb\u1235\u1308\u1261"; }, get$dateOutOfRangeLabel() { return "\u12a8\u12ad\u120d\u120d \u12cd\u132a\u1362"; }, get$datePickerHelpText() { return "\u1240\u1295 \u12ed\u121d\u1228\u1321"; }, get$dialModeButtonLabel() { return "\u12c8\u12f0 \u1218\u12f0\u12c8\u12eb \u1218\u122b\u132d \u1201\u1290\u1273 \u1240\u12ed\u122d"; }, get$dialogLabel() { return "\u1218\u1308\u1293\u129b"; }, get$drawerLabel() { return "\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c"; }, get$expandedIconTapHint() { return "\u1230\u1265\u1235\u1265"; }, get$firstPageTooltip() { return "\u12e8\u1218\u1300\u1218\u122a\u12eb\u12cd \u1308\u133d"; }, get$inputDateModeButtonLabel() { return "\u12c8\u12f0 \u130d\u1264\u1275 \u1240\u12ed\u122d"; }, get$inputTimeModeButtonLabel() { return "\u12c8\u12f0 \u133d\u1211\u134d \u130d\u1264\u1275 \u1201\u1290\u1273 \u1240\u12ed\u122d"; }, get$invalidDateFormatLabel() { return "\u120d\u12ad \u12eb\u120d\u1206\u1290 \u1245\u122d\u1338\u1275\u1362"; }, get$invalidTimeLabel() { return "\u12e8\u121a\u1220\u122b \u1230\u12d3\u1275 \u12eb\u1235\u1308\u1261"; }, get$lastPageTooltip() { return "\u12e8\u1218\u1328\u1228\u123b\u12cd \u1308\u133d"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u1348\u1243\u12f5"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u1348\u1243\u12f6\u127d"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u1348\u1243\u12f6\u127d"; }, get$modalBarrierDismissLabel() { return "\u12a0\u1230\u1293\u1265\u1275"; }, get$nextMonthTooltip() { return "\u1240\u1323\u12ed \u12c8\u122d"; }, get$nextPageTooltip() { return "\u1240\u1323\u12ed \u1308\u133d"; }, get$okButtonLabel() { return "\u12a5\u123a"; }, get$openAppDrawerTooltip() { return "\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c\u1295 \u12ad\u1348\u1275"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u12a8$rowCount \u12cd\u1235\u1325"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u12a8$rowCount \u12eb\u1205\u120d \u12cd\u1235\u1325"; }, get$popupMenuLabel() { return "\u12e8\u1265\u1245-\u1263\u12ed \u121d\u1293\u120c"; }, get$postMeridiemAbbreviation() { return "\u12a8\u1230\u12d3\u1275"; }, get$previousMonthTooltip() { return "\u1240\u12f3\u121a \u12c8\u122d"; }, get$previousPageTooltip() { return "\u1240\u12f3\u121a \u1308\u133d"; }, get$refreshIndicatorSemanticLabel() { return "\u12a0\u12f5\u1235"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u1241\u121d\u134a \u12ed\u1240\u122b\u120d"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u1241\u121d\u134a\u12ce\u127d \u12ed\u1240\u122b\u1209"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u12c8\u12f0 \u1273\u127d \u12cd\u1230\u12f5"; }, get$reorderItemToEnd() { return "\u12c8\u12f0 \u1218\u1328\u1228\u123b \u12cd\u1230\u12f5"; }, get$reorderItemToStart() { return "\u12c8\u12f0 \u1218\u1300\u1218\u122a\u12eb \u12cd\u1230\u12f5"; }, get$reorderItemUp() { return "\u12c8\u12f0 \u120b\u12ed \u12cd\u1230\u12f5"; }, get$rowsPerPageTitle() { return "\u1228\u12f5\u134e\u127d \u1260\u1308\u133d\u1366"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u12d3\u1218\u1275 \u12ed\u121d\u1228\u1321"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u1295\u1325\u120d \u1270\u1218\u122d\u1327\u120d"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u1295\u1325\u120e\u127d \u1270\u1218\u122d\u1320\u12cb\u120d"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u121d\u1293\u120c\u1295 \u12a0\u1233\u12ed"; }, get$tabLabelRaw() { return "\u1275\u122d $tabIndex \u12a8$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u130a\u12dc \u12ed\u121d\u1228\u1321"; }, get$timePickerHourLabel() { return "\u1230\u12d3\u1275"; }, get$timePickerHourModeAnnouncement() { return "\u1230\u12d3\u1273\u1275\u1295 \u121d\u1228\u1325"; }, get$timePickerInputHelpText() { return "\u1230\u12d3\u1275 \u12eb\u1235\u1308\u1261"; }, get$timePickerMinuteLabel() { return "\u12f0\u1242\u1243"; }, get$timePickerMinuteModeAnnouncement() { return "\u12f0\u1242\u1243\u12ce\u127d\u1295 \u12ed\u121d\u1228\u1321"; } }; A.MaterialLocalizationAr.prototype = { get$alertDialogLabel() { return "\u062a\u0646\u0628\u064a\u0647"; }, get$anteMeridiemAbbreviation() { return "\u0635"; }, get$backButtonTooltip() { return "\u0631\u062c\u0648\u0639"; }, get$calendarModeButtonLabel() { return "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0627\u0644\u062a\u0642\u0648\u064a\u0645"; }, get$cancelButtonLabel() { return "\u0625\u0644\u063a\u0627\u0621"; }, get$collapsedIconTapHint() { return "\u062a\u0648\u0633\u064a\u0639"; }, get$dateHelpText() { return "yyyy/mm/dd"; }, get$dateInputLabel() { return "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"; }, get$dateOutOfRangeLabel() { return "\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u062e\u0627\u0631\u062c \u0627\u0644\u0646\u0637\u0627\u0642."; }, get$datePickerHelpText() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"; }, get$dialModeButtonLabel() { return '\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0648\u0636\u0639 "\u0645\u0646\u062a\u0642\u064a \u0642\u064f\u0631\u0635 \u0627\u0644\u0633\u0627\u0639\u0629"'; }, get$dialogLabel() { return "\u0645\u0631\u0628\u0639 \u062d\u0648\u0627\u0631"; }, get$drawerLabel() { return "\u0642\u0627\u0626\u0645\u0629 \u062a\u0646\u0642\u0644"; }, get$expandedIconTapHint() { return "\u062a\u0635\u063a\u064a\u0631"; }, get$firstPageTooltip() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u0648\u0644\u0649"; }, get$inputDateModeButtonLabel() { return "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0627\u0644\u0625\u062f\u062e\u0627\u0644"; }, get$inputTimeModeButtonLabel() { return '\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0648\u0636\u0639 "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0646\u0635"'; }, get$invalidDateFormatLabel() { return "\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d."; }, get$invalidTimeLabel() { return "\u064a\u064f\u0631\u062c\u0649 \u0625\u062f\u062e\u0627\u0644 \u0648\u0642\u062a \u0635\u0627\u0644\u062d."; }, get$lastPageTooltip() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629"; }, get$licensesPackageDetailTextFew() { return "$licenseCount \u062a\u0631\u0627\u062e\u064a\u0635"; }, get$licensesPackageDetailTextMany() { return "$licenseCount \u062a\u0631\u062e\u064a\u0635\u064b\u0627"; }, get$licensesPackageDetailTextOne() { return "\u062a\u0631\u062e\u064a\u0635 \u0648\u0627\u062d\u062f"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u062a\u0631\u062e\u064a\u0635"; }, get$licensesPackageDetailTextTwo() { return "\u062a\u0631\u062e\u064a\u0635\u0627\u0646 ($licenseCount)"; }, get$licensesPackageDetailTextZero() { return "\u0645\u0627 \u0645\u0650\u0646 \u062a\u0631\u0627\u062e\u064a\u0635"; }, get$licensesPageTitle() { return "\u0627\u0644\u062a\u0631\u0627\u062e\u064a\u0635"; }, get$modalBarrierDismissLabel() { return "\u0631\u0641\u0636"; }, get$nextMonthTooltip() { return "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u062a\u0627\u0644\u064a"; }, get$nextPageTooltip() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629"; }, get$okButtonLabel() { return "\u062d\u0633\u0646\u064b\u0627"; }, get$openAppDrawerTooltip() { return "\u0641\u062a\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0646\u0642\u0644"; }, get$pageRowsInfoTitleRaw() { return "\u0645\u0646 $firstRow \u0625\u0644\u0649 $lastRow \u0645\u0646 \u0625\u062c\u0645\u0627\u0644\u064a $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0645\u0646 $firstRow \u0625\u0644\u0649 $lastRow \u0645\u0646 \u0625\u062c\u0645\u0627\u0644\u064a $rowCount \u062a\u0642\u0631\u064a\u0628\u064b\u0627"; }, get$popupMenuLabel() { return "\u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0628\u062b\u0642\u0629"; }, get$postMeridiemAbbreviation() { return "\u0645"; }, get$previousMonthTooltip() { return "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0633\u0627\u0628\u0642"; }, get$previousPageTooltip() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629"; }, get$refreshIndicatorSemanticLabel() { return "\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644"; }, get$remainingTextFieldCharacterCountFew() { return "$remainingCount \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"; }, get$remainingTextFieldCharacterCountMany() { return "$remainingCount \u062d\u0631\u0641\u064b\u0627 \u0645\u062a\u0628\u0642\u064a\u064b\u0627"; }, get$remainingTextFieldCharacterCountOne() { return "\u062d\u0631\u0641 \u0648\u0627\u062d\u062f \u0645\u062a\u0628\u0642\u064d"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064d"; }, get$remainingTextFieldCharacterCountTwo() { return "\u062d\u0631\u0641\u0627\u0646 ($remainingCount) \u0645\u062a\u0628\u0642\u064a\u0627\u0646"; }, get$remainingTextFieldCharacterCountZero() { return "\u0644\u0627 \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"; }, get$reorderItemDown() { return "\u0646\u0642\u0644 \u0644\u0623\u0633\u0641\u0644"; }, get$reorderItemToEnd() { return "\u0646\u0642\u0644 \u0625\u0644\u0649 \u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$reorderItemToStart() { return "\u0646\u0642\u0644 \u0625\u0644\u0649 \u0628\u062f\u0627\u064a\u0629 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$reorderItemUp() { return "\u0646\u0642\u0644 \u0644\u0623\u0639\u0644\u0649"; }, get$rowsPerPageTitle() { return "\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641 \u0641\u064a \u0627\u0644\u0635\u0641\u062d\u0629:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0639\u0627\u0645"; }, get$selectedRowCountTitleFew() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631"; }, get$selectedRowCountTitleMany() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631\u064b\u0627"; }, get$selectedRowCountTitleOne() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0635\u0631 \u0648\u0627\u062d\u062f"; }, get$selectedRowCountTitleOther() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631"; }, get$selectedRowCountTitleTwo() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0635\u0631\u064a\u0646 ($selectedRowCount)"; }, get$selectedRowCountTitleZero() { return "\u0644\u0645 \u064a\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0623\u064a \u0639\u0646\u0635\u0631"; }, get$showMenuTooltip() { return "\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$tabLabelRaw() { return "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062a\u0628\u0648\u064a\u0628 $tabIndex \u0645\u0646 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0648\u0642\u062a"; }, get$timePickerHourLabel() { return "\u0633\u0627\u0639\u0629"; }, get$timePickerHourModeAnnouncement() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0627\u062a"; }, get$timePickerInputHelpText() { return "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0648\u0642\u062a"; }, get$timePickerMinuteLabel() { return "\u062f\u0642\u064a\u0642\u0629"; }, get$timePickerMinuteModeAnnouncement() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u062f\u0642\u0627\u0626\u0642"; } }; A.MaterialLocalizationAs.prototype = { get$alertDialogLabel() { return "\u09b8\u09a4\u09f0\u09cd\u0995\u09ac\u09be\u09f0\u09cd\u09a4\u09be"; }, get$anteMeridiemAbbreviation() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09be\u09b9\u09cd\u09a8"; }, get$backButtonTooltip() { return "\u0989\u09ad\u09a4\u09bf \u09af\u09be\u0993\u0995"; }, get$calendarModeButtonLabel() { return "\u0995\u09c7\u09b2\u09c7\u09a3\u09cd\u09a1\u09be\u09f0\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$cancelButtonLabel() { return "\u09ac\u09be\u09a4\u09bf\u09b2 \u0995\u09f0\u0995"; }, get$collapsedIconTapHint() { return "\u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09f0 \u0995\u09f0\u0995"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u09a4\u09be\u09f0\u09bf\u0996\u099f\u09cb \u09a6\u09bf\u09df\u0995"; }, get$dateOutOfRangeLabel() { return "\u09b8\u09c0\u09ae\u09be\u09f0 \u09ac\u09be\u09b9\u09bf\u09f0\u09a4\u0964"; }, get$datePickerHelpText() { return "\u09a4\u09be\u09f0\u09bf\u0996 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$dialModeButtonLabel() { return "\u09a1\u09be\u09df\u09c7\u09b2 \u09ac\u09be\u099b\u09a8\u09bf\u0995\u09f0\u09cd\u09a4\u09be\u09f0 \u09ae\u2019\u09a1\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$dialogLabel() { return "\u09a1\u09be\u09df\u09b2'\u0997"; }, get$drawerLabel() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1"; }, get$expandedIconTapHint() { return "\u09b8\u0982\u0995\u09cb\u099a\u09a8 \u0995\u09f0\u0995"; }, get$firstPageTooltip() { return "\u09aa\u09cd\u09b0\u09a5\u09ae \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$inputDateModeButtonLabel() { return "\u0987\u09a8\u09aa\u09c1\u099f\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$inputTimeModeButtonLabel() { return "\u09aa\u09be\u09a0 \u0987\u09a8\u09aa\u09c1\u099f\u09f0 \u09ae\u2019\u09a1\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$invalidDateFormatLabel() { return "\u0985\u09ae\u09be\u09a8\u09cd\u09af \u09ab\u09f0\u09cd\u09ae\u09c7\u099f\u0964"; }, get$invalidTimeLabel() { return "\u098f\u099f\u09be \u09ae\u09be\u09a8\u09cd\u09af \u09b8\u09ae\u09df \u09a6\u09bf\u09df\u0995"; }, get$lastPageTooltip() { return "\u0985\u09a8\u09cd\u09a4\u09bf\u09ae \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u09e7 \u0996\u09a8 \u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0996\u09a8 \u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0\u09b8\u09ae\u09c2\u09b9"; }, get$modalBarrierDismissLabel() { return "\u0985\u0997\u09cd\u09f0\u09be\u09b9\u09cd\u09af \u0995\u09f0\u0995"; }, get$nextMonthTooltip() { return "\u09aa\u09f0\u09f1\u09f0\u09cd\u09a4\u09c0 \u09ae\u09be\u09b9"; }, get$nextPageTooltip() { return "\u09aa\u09f0\u09f1\u09f0\u09cd\u09a4\u09c0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$okButtonLabel() { return "\u09a0\u09bf\u0995 \u0986\u099b\u09c7"; }, get$openAppDrawerTooltip() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09cb\u09b2\u0995"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u09f0 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount\u09f0 $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u09aa'\u09aa\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"; }, get$postMeridiemAbbreviation() { return "\u0985\u09aa\u09f0\u09be\u09b9\u09cd\u09a8"; }, get$previousMonthTooltip() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09f1\u09f0\u09cd\u09a4\u09c0 \u09ae\u09be\u09b9"; }, get$previousPageTooltip() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09f1\u09f0\u09cd\u09a4\u09c0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$refreshIndicatorSemanticLabel() { return "\u09f0\u09bf\u09ab\u09cd\u09f0\u09c7\u09b6\u09cd\u09ac \u0995\u09f0\u0995"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u09e7\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u09a4\u09b2\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemToEnd() { return "\u09b6\u09c7\u09b7\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemToStart() { return "\u0986\u09f0\u09ae\u09cd\u09ad\u09a3\u09bf\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemUp() { return "\u0993\u09aa\u09f0\u09b2\u09c8 \u09a8\u09bf\u09df\u0995"; }, get$rowsPerPageTitle() { return "\u09aa\u09cd\u09f0\u09a4\u09bf\u099f\u09cb \u09aa\u09c3\u09b7\u09cd\u09a0\u09be\u09a4 \u09a5\u0995\u09be \u09b6\u09be\u09f0\u09c0:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u09ac\u099b\u09f0 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u09e7\u099f\u09be \u09ac\u09b8\u09cd\u09a4\u09c1 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u09be \u09b9'\u09b2"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\u099f\u09be \u09ac\u09b8\u09cd\u09a4\u09c1 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u09be \u09b9\u2019\u09b2"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u09ae\u09c7\u09a8\u09c1\u0996\u09a8 \u09a6\u09c7\u0996\u09c1\u09f1\u09be\u0993\u0995"; }, get$tabLabelRaw() { return "$tabCount\u09f0 $tabIndex\u099f\u09be \u099f\u09c7\u09ac"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u09b8\u09ae\u09df \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$timePickerHourLabel() { return "\u0998\u09a3\u09cd\u099f\u09be"; }, get$timePickerHourModeAnnouncement() { return "\u09b8\u09ae\u09df \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$timePickerInputHelpText() { return "\u09b8\u09ae\u09df \u09a6\u09bf\u09df\u0995"; }, get$timePickerMinuteLabel() { return "\u09ae\u09bf\u09a8\u09bf\u099f"; }, get$timePickerMinuteModeAnnouncement() { return "\u09ae\u09bf\u09a8\u09bf\u099f \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; } }; A.MaterialLocalizationAz.prototype = { get$alertDialogLabel() { return "Bildiri\u015f"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Geri"; }, get$calendarModeButtonLabel() { return "T\u0259qvim\u0259 ke\xe7in"; }, get$cancelButtonLabel() { return "L\u018f\u011eV ED\u0130N"; }, get$collapsedIconTapHint() { return "Geni\u015fl\u0259ndirin"; }, get$dateHelpText() { return "aa.gg.iiii"; }, get$dateInputLabel() { return "Tarix daxil edin"; }, get$dateOutOfRangeLabel() { return "Aral\u0131qdan k\u0259nar."; }, get$datePickerHelpText() { return "TAR\u0130X SE\xc7\u0130N"; }, get$dialModeButtonLabel() { return "Y\u0131\u011f\u0131m se\xe7ici rejimin\u0259 ke\xe7in"; }, get$dialogLabel() { return "Dialoq"; }, get$drawerLabel() { return "Naviqasiya menyusu"; }, get$expandedIconTapHint() { return "Y\u0131\u011fcamla\u015fd\u0131r\u0131n"; }, get$firstPageTooltip() { return "Birinci s\u0259hif\u0259"; }, get$inputDateModeButtonLabel() { return "Daxiletm\u0259y\u0259 ke\xe7in"; }, get$inputTimeModeButtonLabel() { return "M\u0259tn daxiletm\u0259 rejimin\u0259 ke\xe7in"; }, get$invalidDateFormatLabel() { return "Yanl\u0131\u015f format."; }, get$invalidTimeLabel() { return "D\xfczg\xfcn vaxt daxil edin"; }, get$lastPageTooltip() { return "Son s\u0259hif\u0259"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisenziya"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisenziya"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lisenziyalar"; }, get$modalBarrierDismissLabel() { return "\u0130mtina edin"; }, get$nextMonthTooltip() { return "N\xf6vb\u0259ti ay"; }, get$nextPageTooltip() { return "N\xf6vb\u0259ti s\u0259hif\u0259"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Naviqasiya menyusunu a\xe7\u0131n"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow/$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow/ t\u0259xmin\u0259n $rowCount"; }, get$popupMenuLabel() { return "Popap menyusu"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Ke\xe7\u0259n ay"; }, get$previousPageTooltip() { return "\u018fvv\u0259lki s\u0259hif\u0259"; }, get$refreshIndicatorSemanticLabel() { return "Yenil\u0259yin"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 simvol qal\u0131r"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount simvol qal\u0131r"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "A\u015fa\u011f\u0131 k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemToEnd() { return "Sona k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemToStart() { return "\u018fvv\u0259l\u0259 k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemUp() { return "Yuxar\u0131 k\xf6\xe7\xfcr\xfcn"; }, get$rowsPerPageTitle() { return "H\u0259r s\u0259hif\u0259 \xfczr\u0259 s\u0131ra:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0130l se\xe7in"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 element se\xe7ildi"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount element se\xe7ildi"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Menyunu g\xf6st\u0259rin"; }, get$tabLabelRaw() { return "$tabIndex/$tabCount tab"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "VAXT SE\xc7\u0130N"; }, get$timePickerHourLabel() { return "Saat"; }, get$timePickerHourModeAnnouncement() { return "Saat se\xe7in"; }, get$timePickerInputHelpText() { return "VAXTI DAX\u0130L ED\u0130N"; }, get$timePickerMinuteLabel() { return "D\u0259qiq\u0259"; }, get$timePickerMinuteModeAnnouncement() { return "D\u0259qiq\u0259 se\xe7in"; } }; A.MaterialLocalizationBe.prototype = { get$alertDialogLabel() { return "\u0410\u0431\u0432\u0435\u0441\u0442\u043a\u0430"; }, get$anteMeridiemAbbreviation() { return "\u0440\u0430\u043d\u0456\u0446\u044b"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel() { return "\u0421\u041a\u0410\u0421\u0410\u0412\u0410\u0426\u042c"; }, get$collapsedIconTapHint() { return "\u0420\u0430\u0437\u0433\u0430\u0440\u043d\u0443\u0446\u044c"; }, get$dateHelpText() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel() { return "\u0423\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel() { return "\u041f\u0430-\u0437\u0430 \u043c\u0435\u0436\u0430\u043c\u0456 \u0434\u044b\u044f\u043f\u0430\u0437\u043e\u043d\u0443."; }, get$datePickerHelpText() { return "\u0412\u042b\u0411\u0410\u0420 \u0414\u0410\u0422\u042b"; }, get$dialModeButtonLabel() { return "\u041f\u0435\u0440\u0430\u0445\u043e\u0434 \u0443 \u0440\u044d\u0436\u044b\u043c \u0432\u044b\u0431\u0430\u0440\u0443 \u0447\u0430\u0441\u0443"; }, get$dialogLabel() { return "\u0414\u044b\u044f\u043b\u043e\u0433\u0430\u0432\u0430\u0435 \u0430\u043a\u043d\u043e"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"; }, get$expandedIconTapHint() { return "\u0417\u0433\u0430\u0440\u043d\u0443\u0446\u044c"; }, get$firstPageTooltip() { return "\u041d\u0430 \u043f\u0435\u0440\u0448\u0443\u044e \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0443"; }, get$inputDateModeButtonLabel() { return "\u041f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u045e\u0432\u043e\u0434 \u0442\u044d\u043a\u0441\u0442\u0443"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0435\u0440\u0430\u0445\u043e\u0434 \u0443 \u0440\u044d\u0436\u044b\u043c \u0443\u0432\u043e\u0434\u0443 \u0442\u044d\u043a\u0441\u0442\u0443"; }, get$invalidDateFormatLabel() { return "\u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u044b \u0444\u0430\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel() { return "\u0423\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u043f\u0443\u0448\u0447\u0430\u043b\u044c\u043d\u044b \u0447\u0430\u0441"; }, get$lastPageTooltip() { return "\u041d\u0430 \u0430\u043f\u043e\u0448\u043d\u044e\u044e \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0443"; }, get$licensesPackageDetailTextFew() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$licensesPackageDetailTextMany() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0439"; }, get$licensesPackageDetailTextOne() { return "1\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u044f"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$modalBarrierDismissLabel() { return "\u0410\u0434\u0445\u0456\u043b\u0456\u0446\u044c"; }, get$nextMonthTooltip() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u044b \u043c\u0435\u0441\u044f\u0446"; }, get$nextPageTooltip() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0430"; }, get$okButtonLabel() { return "\u041e\u041a"; }, get$openAppDrawerTooltip() { return "\u0410\u0434\u043a\u0440\u044b\u0446\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0437 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0437 \u043f\u0440\u044b\u0431\u043b\u0456\u0437\u043d\u0430 $rowCount"; }, get$popupMenuLabel() { return "\u041c\u0435\u043d\u044e \u045e\u0441\u043f\u043b\u044b\u0432\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u0430\u043a\u043d\u0430"; }, get$postMeridiemAbbreviation() { return "\u0432\u0435\u0447\u0430\u0440\u0430"; }, get$previousMonthTooltip() { return "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u0456 \u043c\u0435\u0441\u044f\u0446"; }, get$previousPageTooltip() { return "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u044f \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u0410\u0431\u043d\u0430\u0432\u0456\u0446\u044c"; }, get$remainingTextFieldCharacterCountFew() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u044b"; }, get$remainingTextFieldCharacterCountMany() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430\u045e"; }, get$remainingTextFieldCharacterCountOne() { return "\u0417\u0430\u0441\u0442\u0430\u045e\u0441\u044f 1\xa0\u0441\u0456\u043c\u0432\u0430\u043b"; }, get$remainingTextFieldCharacterCountOther() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443\u043d\u0456\u0437"; }, get$reorderItemToEnd() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443 \u043a\u0430\u043d\u0435\u0446"; }, get$reorderItemToStart() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443 \u043f\u0430\u0447\u0430\u0442\u0430\u043a"; }, get$reorderItemUp() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443\u0432\u0435\u0440\u0445"; }, get$rowsPerPageTitle() { return "\u0420\u0430\u0434\u043a\u043e\u045e \u043d\u0430 \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0443:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0433\u043e\u0434"; }, get$selectedRowCountTitleFew() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b"; }, get$selectedRowCountTitleMany() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u045e"; }, get$selectedRowCountTitleOne() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u044b 1\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041f\u0430\u043a\u0430\u0437\u0430\u0446\u044c \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw() { return "\u0423\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0412\u042b\u0411\u0415\u0420\u042b\u0426\u0415 \u0427\u0410\u0421"; }, get$timePickerHourLabel() { return "\u0413\u0430\u0434\u0437\u0456\u043d\u0430"; }, get$timePickerHourModeAnnouncement() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0433\u0430\u0434\u0437\u0456\u043d\u044b"; }, get$timePickerInputHelpText() { return "\u0423\u0412\u042f\u0414\u0417\u0406\u0426\u0415 \u0427\u0410\u0421"; }, get$timePickerMinuteLabel() { return "\u0425\u0432\u0456\u043b\u0456\u043d\u0430"; }, get$timePickerMinuteModeAnnouncement() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0445\u0432\u0456\u043b\u0456\u043d\u044b"; } }; A.MaterialLocalizationBg.prototype = { get$alertDialogLabel() { return "\u0421\u0438\u0433\u043d\u0430\u043b"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u0430"; }, get$cancelButtonLabel() { return "\u041e\u0422\u041a\u0410\u0417"; }, get$collapsedIconTapHint() { return "\u0420\u0430\u0437\u0433\u044a\u0432\u0430\u043d\u0435"; }, get$dateHelpText() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel() { return "\u0412\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430"; }, get$dateOutOfRangeLabel() { return "\u0418\u0437\u0432\u044a\u043d \u0432\u0430\u043b\u0438\u0434\u043d\u0438\u044f \u043f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442 \u0432\u0440\u0435\u043c\u0435."; }, get$datePickerHelpText() { return "\u0418\u0417\u0411\u0418\u0420\u0410\u041d\u0415 \u041d\u0410 \u0414\u0410\u0422\u0410"; }, get$dialModeButtonLabel() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0446\u0438\u0444\u0435\u0440\u0431\u043b\u0430\u0442"; }, get$dialogLabel() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u044e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"; }, get$expandedIconTapHint() { return "\u0421\u0432\u0438\u0432\u0430\u043d\u0435"; }, get$firstPageTooltip() { return "\u041f\u044a\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$inputDateModeButtonLabel() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442"; }, get$invalidDateFormatLabel() { return "\u041d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel() { return "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0447\u0430\u0441"; }, get$lastPageTooltip() { return "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0\u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0\u043b\u0438\u0446\u0435\u043d\u0437\u0430"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438"; }, get$modalBarrierDismissLabel() { return "\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435"; }, get$nextMonthTooltip() { return "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u044f\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip() { return "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow \u043e\u0442 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow \u043e\u0442 \u043e\u043a\u043e\u043b\u043e $rowCount"; }, get$popupMenuLabel() { return "\u0418\u0437\u0441\u043a\u0430\u0447\u0430\u0449\u043e \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u044f\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip() { return "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u041e\u0441\u0442\u0430\u0432\u0430 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther() { return "\u041e\u0441\u0442\u0430\u0432\u0430\u0442 $remainingCount \u0437\u043d\u0430\u043a\u0430"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430\u0434\u043e\u043b\u0443"; }, get$reorderItemToEnd() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u0432 \u043a\u0440\u0430\u044f"; }, get$reorderItemToStart() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u0432 \u043d\u0430\u0447\u0430\u043b\u043e\u0442\u043e"; }, get$reorderItemUp() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$rowsPerPageTitle() { return "\u0420\u0435\u0434\u043e\u0432\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0418\u0437\u0431\u0440\u0430\u043d \u0435 1 \u0435\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0438 \u0441\u0430 $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e"; }, get$tabLabelRaw() { return "\u0420\u0430\u0437\u0434\u0435\u043b $tabIndex \u043e\u0442 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0427\u0410\u0421"; }, get$timePickerHourLabel() { return "\u0427\u0430\u0441"; }, get$timePickerHourModeAnnouncement() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u0435"; }, get$timePickerInputHelpText() { return "\u0412\u042a\u0412\u0415\u0414\u0415\u0422\u0415 \u0427\u0410\u0421"; }, get$timePickerMinuteLabel() { return "\u041c\u0438\u043d\u0443\u0442\u0430"; }, get$timePickerMinuteModeAnnouncement() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u0438\u043d\u0443\u0442\u0438"; } }; A.MaterialLocalizationBn.prototype = { get$alertDialogLabel() { return "\u09b8\u09a4\u09b0\u09cd\u0995\u09a4\u09be"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u09ab\u09bf\u09b0\u09c7 \u09af\u09be\u09a8"; }, get$calendarModeButtonLabel() { return "\u0995\u09cd\u09af\u09be\u09b2\u09c7\u09a8\u09cd\u09a1\u09be\u09b0 \u09ae\u09c7\u09be\u09a1\u09c7 \u09ac\u09a6\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$cancelButtonLabel() { return "\u09ac\u09be\u09a4\u09bf\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$collapsedIconTapHint() { return "\u09ac\u09dc \u0995\u09b0\u09c1\u09a8"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u09a4\u09be\u09b0\u09bf\u0996 \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$dateOutOfRangeLabel() { return "\u09a4\u09be\u09b0\u09bf\u0996\u09c7\u09b0 \u09ac\u09cd\u09af\u09be\u09aa\u09cd\u09a4\u09bf\u09b0 \u09ac\u09be\u0987\u09b0\u09c7\u0964"; }, get$datePickerHelpText() { return "\u09a4\u09be\u09b0\u09bf\u0996 \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$dialModeButtonLabel() { return "\u09a1\u09be\u09df\u09be\u09b2 \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be\u09b0 \u09ae\u09cb\u09a1\u09c7 \u09aa\u09be\u09b2\u09cd\u099f\u09be\u09a8"; }, get$dialogLabel() { return "\u09a1\u09be\u09df\u09be\u09b2\u0997"; }, get$drawerLabel() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09be\u09a8 \u09ae\u09c7\u09a8\u09c1"; }, get$expandedIconTapHint() { return "\u0986\u09dc\u09be\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$firstPageTooltip() { return "\u09aa\u09cd\u09b0\u09a5\u09ae \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$inputDateModeButtonLabel() { return "\u0987\u09a8\u09aa\u09c1\u099f \u09ae\u09c7\u09be\u09a1\u09c7 \u09ac\u09a6\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$inputTimeModeButtonLabel() { return "\u099f\u09c7\u0995\u09cd\u09b8\u099f \u0987\u09a8\u09aa\u09c1\u099f \u09ae\u09cb\u09a1\u09c7 \u09aa\u09be\u09b2\u09cd\u099f\u09be\u09a8"; }, get$invalidDateFormatLabel() { return "\u09ad\u09c1\u09b2 \u09ab\u09b0\u09cd\u09ae\u09cd\u09af\u09be\u099f\u0964"; }, get$invalidTimeLabel() { return "\u09b8\u09a0\u09bf\u0995 \u09b8\u09ae\u09df \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$lastPageTooltip() { return "\u09b6\u09c7\u09b7 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u09e7\u099f\u09bf \u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\u099f\u09bf \u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$modalBarrierDismissLabel() { return "\u0996\u09be\u09b0\u09bf\u099c \u0995\u09b0\u09c1\u09a8"; }, get$nextMonthTooltip() { return "\u09aa\u09b0\u09c7\u09b0 \u09ae\u09be\u09b8"; }, get$nextPageTooltip() { return "\u09aa\u09b0\u09c7\u09b0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$okButtonLabel() { return "\u09a0\u09bf\u0995 \u0986\u099b\u09c7"; }, get$openAppDrawerTooltip() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09c1\u09b2\u09c1\u09a8"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u099f\u09bf\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $firstRow-$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u09aa\u09cd\u09b0\u09be\u09df $rowCount\u099f\u09bf\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $firstRow-$lastRow \u09a8\u09ae\u09cd\u09ac\u09b0"; }, get$popupMenuLabel() { return "\u09aa\u09aa-\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0986\u0997\u09c7\u09b0 \u09ae\u09be\u09b8"; }, get$previousPageTooltip() { return "\u0986\u0997\u09c7\u09b0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$refreshIndicatorSemanticLabel() { return "\u09b0\u09bf\u09ab\u09cd\u09b0\u09c7\u09b6 \u0995\u09b0\u09c1\u09a8"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0986\u09b0 \u09e7\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"; }, get$remainingTextFieldCharacterCountOther() { return "\u0986\u09b0 $remainingCount\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u09a8\u09bf\u099a\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$reorderItemToEnd() { return "\u098f\u0995\u09a6\u09ae \u09b6\u09c7\u09b7\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09af\u09be\u09a8"; }, get$reorderItemToStart() { return "\u099a\u09be\u09b2\u09c1 \u0995\u09b0\u09a4\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$reorderItemUp() { return "\u0989\u09aa\u09b0\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$rowsPerPageTitle() { return "\u09aa\u09cd\u09b0\u09a4\u09bf \u09aa\u09c3\u09b7\u09cd\u09a0\u09be\u09df \u09b8\u09be\u09b0\u09bf\u09b0 \u09b8\u0982\u0996\u09cd\u09af\u09be:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u09ac\u099b\u09b0 \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u09e7\u099f\u09bf \u0986\u0987\u099f\u09c7\u09ae \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be \u09b9\u09df\u09c7\u099b\u09c7"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\u099f\u09bf \u0986\u0987\u099f\u09c7\u09ae \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be \u09b9\u09df\u09c7\u099b\u09c7"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u09ae\u09c7\u09a8\u09c1 \u09a6\u09c7\u0996\u09be\u09a8"; }, get$tabLabelRaw() { return "$tabCount-\u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $tabIndex\u099f\u09bf \u099f\u09cd\u09af\u09be\u09ac"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u09b8\u09ae\u09df \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$timePickerHourLabel() { return "\u0998\u09a3\u09cd\u099f\u09be"; }, get$timePickerHourModeAnnouncement() { return "\u0998\u09a3\u09cd\u099f\u09be \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$timePickerInputHelpText() { return "\u09b8\u09ae\u09df \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$timePickerMinuteLabel() { return "\u09ae\u09bf\u09a8\u09bf\u099f"; }, get$timePickerMinuteModeAnnouncement() { return "\u09ae\u09bf\u09a8\u09bf\u099f \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; } }; A.MaterialLocalizationBs.prototype = { get$alertDialogLabel() { return "Upozorenje"; }, get$anteMeridiemAbbreviation() { return "prijepodne"; }, get$backButtonTooltip() { return "Nazad"; }, get$calendarModeButtonLabel() { return "Prebacite na kalendar"; }, get$cancelButtonLabel() { return "OTKA\u017dI"; }, get$collapsedIconTapHint() { return "Pro\u0161iri"; }, get$dateHelpText() { return "dd. mm. gggg."; }, get$dateInputLabel() { return "Unesite datum"; }, get$dateOutOfRangeLabel() { return "Izvan raspona."; }, get$datePickerHelpText() { return "ODABERITE DATUM"; }, get$dialModeButtonLabel() { return "Prebacivanje na na\u010din rada alata za biranje"; }, get$dialogLabel() { return "Dijalo\u0161ki okvir"; }, get$drawerLabel() { return "Meni za navigaciju"; }, get$expandedIconTapHint() { return "Suzi"; }, get$firstPageTooltip() { return "Prva stranica"; }, get$inputDateModeButtonLabel() { return "Prebacite na unos teksta"; }, get$inputTimeModeButtonLabel() { return "Prebacivanje na na\u010din rada unosa teksta"; }, get$invalidDateFormatLabel() { return "Neva\u017ee\u0107i format."; }, get$invalidTimeLabel() { return "Unesite ispravno vrijeme"; }, get$lastPageTooltip() { return "Posljednja stranica"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenca"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licence"; }, get$modalBarrierDismissLabel() { return "Odbaci"; }, get$nextMonthTooltip() { return "Sljede\u0107i mjesec"; }, get$nextPageTooltip() { return "Sljede\u0107a stranica"; }, get$okButtonLabel() { return "Uredu"; }, get$openAppDrawerTooltip() { return "Otvorite meni za navigaciju"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow od oko $rowCount"; }, get$popupMenuLabel() { return "Sko\u010dni meni"; }, get$postMeridiemAbbreviation() { return "poslijepodne"; }, get$previousMonthTooltip() { return "Prethodni mjesec"; }, get$previousPageTooltip() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel() { return "Osvje\u017ei"; }, get$remainingTextFieldCharacterCountFew() { return "Jo\u0161 $remainingCount znaka"; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Jo\u0161 jedan znak"; }, get$remainingTextFieldCharacterCountOther() { return "Jo\u0161 $remainingCount znakova"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Pomjeri nadolje"; }, get$reorderItemToEnd() { return "Pomjerite na kraj"; }, get$reorderItemToStart() { return "Pomjerite na po\u010detak"; }, get$reorderItemUp() { return "Pomjeri nagore"; }, get$rowsPerPageTitle() { return "Broj redova po stranici:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Odaberite godinu"; }, get$selectedRowCountTitleFew() { return "Odabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Odabrana je jedna stavka"; }, get$selectedRowCountTitleOther() { return "Odabrano je $selectedRowCount stavki"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Prika\u017ei meni"; }, get$tabLabelRaw() { return "$tabIndex. kartica od $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "ODABERITE VRIJEME"; }, get$timePickerHourLabel() { return "Sat"; }, get$timePickerHourModeAnnouncement() { return "Odaberite sat"; }, get$timePickerInputHelpText() { return "UNESITE VRIJEME"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Odaberite minute"; } }; A.MaterialLocalizationCa.prototype = { get$alertDialogLabel() { return "Alerta"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Enrere"; }, get$calendarModeButtonLabel() { return "Canvia al calendari"; }, get$cancelButtonLabel() { return "CANCEL\xb7LA"; }, get$collapsedIconTapHint() { return "Desplega"; }, get$dateHelpText() { return "mm/dd/aaaa"; }, get$dateInputLabel() { return "Introdueix una data"; }, get$dateOutOfRangeLabel() { return "Fora de l'abast."; }, get$datePickerHelpText() { return "SELECCIONA LA DATA"; }, get$dialModeButtonLabel() { return "Canvia al mode de selector de dial"; }, get$dialogLabel() { return "Di\xe0leg"; }, get$drawerLabel() { return "Men\xfa de navegaci\xf3"; }, get$expandedIconTapHint() { return "Replega"; }, get$firstPageTooltip() { return "Primera p\xe0gina"; }, get$inputDateModeButtonLabel() { return "Canvia a introducci\xf3 de text"; }, get$inputTimeModeButtonLabel() { return "Canvia al mode d'introducci\xf3 de text"; }, get$invalidDateFormatLabel() { return "El format no \xe9s v\xe0lid."; }, get$invalidTimeLabel() { return "Introdueix una hora v\xe0lida"; }, get$lastPageTooltip() { return "Darrera p\xe0gina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0llic\xe8ncia"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0llic\xe8ncies"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Llic\xe8ncies"; }, get$modalBarrierDismissLabel() { return "Ignora"; }, get$nextMonthTooltip() { return "Mes seg\xfcent"; }, get$nextPageTooltip() { return "P\xe0gina seg\xfcent"; }, get$okButtonLabel() { return "D'ACORD"; }, get$openAppDrawerTooltip() { return "Obre el men\xfa de navegaci\xf3"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow d'aproximadament $rowCount"; }, get$popupMenuLabel() { return "Men\xfa emergent"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Mes anterior"; }, get$previousPageTooltip() { return "P\xe0gina anterior"; }, get$refreshIndicatorSemanticLabel() { return "Actualitza"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Queda 1\xa0car\xe0cter"; }, get$remainingTextFieldCharacterCountOther() { return "Queden $remainingCount\xa0car\xe0cters"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Mou avall"; }, get$reorderItemToEnd() { return "Mou al final"; }, get$reorderItemToStart() { return "Mou al principi"; }, get$reorderItemUp() { return "Mou amunt"; }, get$rowsPerPageTitle() { return "Files per p\xe0gina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Selecciona un any"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "S'ha seleccionat 1\xa0element"; }, get$selectedRowCountTitleOther() { return "S'han seleccionat $selectedRowCount\xa0elements"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Mostra el men\xfa"; }, get$tabLabelRaw() { return "Pestanya $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SELECCIONA L'HORA"; }, get$timePickerHourLabel() { return "Hora"; }, get$timePickerHourModeAnnouncement() { return "Selecciona les hores"; }, get$timePickerInputHelpText() { return "INTRODUEIX L'HORA"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "Selecciona els minuts"; } }; A.MaterialLocalizationCs.prototype = { get$alertDialogLabel() { return "Upozorn\u011bn\xed"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Zp\u011bt"; }, get$calendarModeButtonLabel() { return "P\u0159epnout na kalend\xe1\u0159"; }, get$cancelButtonLabel() { return "ZRU\u0160IT"; }, get$collapsedIconTapHint() { return "Rozbalit"; }, get$dateHelpText() { return "mm.dd.rrrr"; }, get$dateInputLabel() { return "Zadejte datum"; }, get$dateOutOfRangeLabel() { return "Mimo rozsah."; }, get$datePickerHelpText() { return "VYBERTE DATUM"; }, get$dialModeButtonLabel() { return "P\u0159epnout na re\u017eim v\xfdb\u011bru \u010dasu"; }, get$dialogLabel() { return "Dialogov\xe9 okno"; }, get$drawerLabel() { return "Naviga\u010dn\xed nab\xeddka"; }, get$expandedIconTapHint() { return "Sbalit"; }, get$firstPageTooltip() { return "Prvn\xed str\xe1nka"; }, get$inputDateModeButtonLabel() { return "P\u0159epnout na zad\xe1v\xe1n\xed"; }, get$inputTimeModeButtonLabel() { return "P\u0159epnout na re\u017eim zad\xe1v\xe1n\xed textu"; }, get$invalidDateFormatLabel() { return "Neplatn\xfd form\xe1t."; }, get$invalidTimeLabel() { return "Zadejte platn\xfd \u010das"; }, get$lastPageTooltip() { return "Posledn\xed str\xe1nka"; }, get$licensesPackageDetailTextFew() { return "$licenseCount\xa0licence"; }, get$licensesPackageDetailTextMany() { return "$licenseCount\xa0licence"; }, get$licensesPackageDetailTextOne() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licenc\xed"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licence"; }, get$modalBarrierDismissLabel() { return "Zav\u0159\xedt"; }, get$nextMonthTooltip() { return "Dal\u0161\xed m\u011bs\xedc"; }, get$nextPageTooltip() { return "Dal\u0161\xed str\xe1nka"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Otev\u0159\xedt naviga\u010dn\xed nab\xeddku"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow z\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow z\xa0asi $rowCount"; }, get$popupMenuLabel() { return "Vyskakovac\xed nab\xeddka"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "P\u0159edchoz\xed m\u011bs\xedc"; }, get$previousPageTooltip() { return "P\u0159edchoz\xed str\xe1nka"; }, get$refreshIndicatorSemanticLabel() { return "Obnovit"; }, get$remainingTextFieldCharacterCountFew() { return "Zb\xfdvaj\xed $remainingCount znaky"; }, get$remainingTextFieldCharacterCountMany() { return "Zb\xfdv\xe1 $remainingCount znaku"; }, get$remainingTextFieldCharacterCountOne() { return "Zb\xfdv\xe1 1 znak"; }, get$remainingTextFieldCharacterCountOther() { return "Zb\xfdv\xe1 $remainingCount znak\u016f"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "P\u0159esunout dol\u016f"; }, get$reorderItemToEnd() { return "P\u0159esunout na konec"; }, get$reorderItemToStart() { return "P\u0159esunout na za\u010d\xe1tek"; }, get$reorderItemUp() { return "P\u0159esunout nahoru"; }, get$rowsPerPageTitle() { return "Po\u010det \u0159\xe1dk\u016f na str\xe1nku:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Vyberte rok"; }, get$selectedRowCountTitleFew() { return "Jsou vybr\xe1ny $selectedRowCount polo\u017eky"; }, get$selectedRowCountTitleMany() { return "Je vybr\xe1no $selectedRowCount polo\u017eky"; }, get$selectedRowCountTitleOne() { return "Je vybr\xe1na 1\xa0polo\u017eka"; }, get$selectedRowCountTitleOther() { return "Je vybr\xe1no $selectedRowCount polo\u017eek"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Zobrazit nab\xeddku"; }, get$tabLabelRaw() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VYBERTE \u010cAS"; }, get$timePickerHourLabel() { return "Hodina"; }, get$timePickerHourModeAnnouncement() { return "Vyberte hodiny"; }, get$timePickerInputHelpText() { return "ZADEJTE \u010cAS"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Vyberte minuty"; } }; A.MaterialLocalizationDa.prototype = { get$alertDialogLabel() { return "Underretning"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Tilbage"; }, get$calendarModeButtonLabel() { return "Skift til kalender"; }, get$cancelButtonLabel() { return "ANNULLER"; }, get$collapsedIconTapHint() { return "Udvid"; }, get$dateHelpText() { return "dd/mm/\xe5\xe5\xe5\xe5"; }, get$dateInputLabel() { return "Angiv en dato"; }, get$dateOutOfRangeLabel() { return "Uden for r\xe6kkevidde."; }, get$datePickerHelpText() { return "V\xc6LG DATO"; }, get$dialModeButtonLabel() { return "Skift til urskivev\xe6lger"; }, get$dialogLabel() { return "Dialogboks"; }, get$drawerLabel() { return "Navigationsmenu"; }, get$expandedIconTapHint() { return "Skjul"; }, get$firstPageTooltip() { return "F\xf8rste side"; }, get$inputDateModeButtonLabel() { return "Skift til input"; }, get$inputTimeModeButtonLabel() { return "Skift til indtastning"; }, get$invalidDateFormatLabel() { return "Ugyldigt format."; }, get$invalidTimeLabel() { return "Angiv et gyldigt tidspunkt"; }, get$lastPageTooltip() { return "Sidste side"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licens"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenser"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenser"; }, get$modalBarrierDismissLabel() { return "Afvis"; }, get$nextMonthTooltip() { return "N\xe6ste m\xe5ned"; }, get$nextPageTooltip() { return "N\xe6ste side"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\xc5bn navigationsmenuen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow af $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow af ca. $rowCount"; }, get$popupMenuLabel() { return "Pop op-menu"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Forrige m\xe5ned"; }, get$previousPageTooltip() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel() { return "Opdater"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\xc9t tegn tilbage"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount tegn tilbage"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Flyt ned"; }, get$reorderItemToEnd() { return "Flyt til sidst p\xe5 listen"; }, get$reorderItemToStart() { return "Flyt til f\xf8rst p\xe5 listen"; }, get$reorderItemUp() { return "Flyt op"; }, get$rowsPerPageTitle() { return "R\xe6kker pr. side:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "V\xe6lg \xe5r"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 element er valgt"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Vis menu"; }, get$tabLabelRaw() { return "Fane $tabIndex af $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "V\xc6LG TIDSPUNKT"; }, get$timePickerHourLabel() { return "Time"; }, get$timePickerHourModeAnnouncement() { return "V\xe6lg timer"; }, get$timePickerInputHelpText() { return "ANGIV TIDSPUNKT"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "V\xe6lg minutter"; } }; A.MaterialLocalizationDe.prototype = { get$alertDialogLabel() { return "Benachrichtigung"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Zur\xfcck"; }, get$calendarModeButtonLabel() { return "Zum Kalender wechseln"; }, get$cancelButtonLabel() { return "ABBRECHEN"; }, get$collapsedIconTapHint() { return "Maximieren"; }, get$dateHelpText() { return "tt.mm.jjjj"; }, get$dateInputLabel() { return "Datum eingeben"; }, get$dateOutOfRangeLabel() { return "Au\xdferhalb des Zeitraums."; }, get$datePickerHelpText() { return "DATUM AUSW\xc4HLEN"; }, get$dialModeButtonLabel() { return "Zur Uhrzeitauswahl wechseln"; }, get$dialogLabel() { return "Dialogfeld"; }, get$drawerLabel() { return "Navigationsmen\xfc"; }, get$expandedIconTapHint() { return "Minimieren"; }, get$firstPageTooltip() { return "Erste Seite"; }, get$inputDateModeButtonLabel() { return "Zur Texteingabe wechseln"; }, get$inputTimeModeButtonLabel() { return "Zum Texteingabemodus wechseln"; }, get$invalidDateFormatLabel() { return "Ung\xfcltiges Format."; }, get$invalidTimeLabel() { return "Geben Sie eine g\xfcltige Uhrzeit ein"; }, get$lastPageTooltip() { return "Letzte Seite"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0Lizenz"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0Lizenzen"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lizenzen"; }, get$modalBarrierDismissLabel() { return "Schlie\xdfen"; }, get$nextMonthTooltip() { return "N\xe4chster Monat"; }, get$nextPageTooltip() { return "N\xe4chste Seite"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Navigationsmen\xfc \xf6ffnen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow von $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow von etwa $rowCount"; }, get$popupMenuLabel() { return "Pop-up-Men\xfc"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Vorheriger Monat"; }, get$previousPageTooltip() { return "Vorherige Seite"; }, get$refreshIndicatorSemanticLabel() { return "Aktualisieren"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Noch 1\xa0Zeichen"; }, get$remainingTextFieldCharacterCountOther() { return "Noch $remainingCount\xa0Zeichen"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Nach unten verschieben"; }, get$reorderItemToEnd() { return "An das Ende verschieben"; }, get$reorderItemToStart() { return "An den Anfang verschieben"; }, get$reorderItemUp() { return "Nach oben verschieben"; }, get$rowsPerPageTitle() { return "Zeilen pro Seite:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Jahr ausw\xe4hlen"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\xa0Element ausgew\xe4hlt"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\xa0Elemente ausgew\xe4hlt"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Keine Objekte ausgew\xe4hlt"; }, get$showMenuTooltip() { return "Men\xfc anzeigen"; }, get$tabLabelRaw() { return "Tab $tabIndex von $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "UHRZEIT AUSW\xc4HLEN"; }, get$timePickerHourLabel() { return "Stunde"; }, get$timePickerHourModeAnnouncement() { return "Stunden ausw\xe4hlen"; }, get$timePickerInputHelpText() { return "ZEIT EINGEBEN"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$timePickerMinuteModeAnnouncement() { return "Minuten ausw\xe4hlen"; } }; A.MaterialLocalizationDeCh.prototype = { get$invalidTimeLabel() { return "Gib eine g\xfcltige Uhrzeit ein"; }, get$dateOutOfRangeLabel() { return "Ausserhalb des Zeitraums."; }, get$firstPageTooltip() { return "First page"; }, get$lastPageTooltip() { return "Last page"; }, get$modalBarrierDismissLabel() { return "Schliessen"; } }; A.MaterialLocalizationEl.prototype = { get$alertDialogLabel() { return "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"; }, get$anteMeridiemAbbreviation() { return "\u03c0.\u03bc."; }, get$backButtonTooltip() { return "\u03a0\u03af\u03c3\u03c9"; }, get$calendarModeButtonLabel() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf"; }, get$cancelButtonLabel() { return "\u0391\u039a\u03a5\u03a1\u03a9\u03a3\u0397"; }, get$collapsedIconTapHint() { return "\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7"; }, get$dateHelpText() { return "\u03bc\u03bc/\u03b7\u03b7/\u03b5\u03b5\u03b5\u03b5"; }, get$dateInputLabel() { return "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2"; }, get$dateOutOfRangeLabel() { return "\u0395\u03ba\u03c4\u03cc\u03c2 \u03b5\u03cd\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b9\u03bc\u03ce\u03bd."; }, get$datePickerHelpText() { return "\u0395\u03a0\u0399\u039b\u039f\u0393\u0397 \u0397\u039c\u0395\u03a1\u039f\u039c\u0397\u039d\u0399\u0391\u03a3"; }, get$dialModeButtonLabel() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03ba\u03bb\u03ae\u03c3\u03b7\u03c2"; }, get$dialogLabel() { return "\u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03b4\u03b9\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5"; }, get$drawerLabel() { return "\u039c\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"; }, get$expandedIconTapHint() { return "\u03a3\u03cd\u03bc\u03c0\u03c4\u03c5\u03be\u03b7"; }, get$firstPageTooltip() { return "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$inputDateModeButtonLabel() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b9\u03c3\u03b7"; }, get$inputTimeModeButtonLabel() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"; }, get$invalidDateFormatLabel() { return "\u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03bc\u03bf\u03c1\u03c6\u03ae."; }, get$invalidTimeLabel() { return "\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03ce\u03c1\u03b1"; }, get$lastPageTooltip() { return "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u03ac\u03b4\u03b5\u03b9\u03b1"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u03ac\u03b4\u03b5\u03b9\u03b5\u03c2"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0386\u03b4\u03b5\u03b9\u03b5\u03c2"; }, get$modalBarrierDismissLabel() { return "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7"; }, get$nextMonthTooltip() { return "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2"; }, get$nextPageTooltip() { return "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$okButtonLabel() { return "\u039f\u039a"; }, get$openAppDrawerTooltip() { return "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03bc\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow \u03b1\u03c0\u03cc $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow \u03b1\u03c0\u03cc \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 $rowCount"; }, get$popupMenuLabel() { return "\u0391\u03bd\u03b1\u03b4\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd"; }, get$postMeridiemAbbreviation() { return "\u03bc.\u03bc."; }, get$previousMonthTooltip() { return "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2"; }, get$previousPageTooltip() { return "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$refreshIndicatorSemanticLabel() { return "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03b5\u03b9 1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2"; }, get$remainingTextFieldCharacterCountOther() { return "\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd $remainingCount \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03ba\u03ac\u03c4\u03c9"; }, get$reorderItemToEnd() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2"; }, get$reorderItemToStart() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae"; }, get$reorderItemUp() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03ac\u03bd\u03c9"; }, get$rowsPerPageTitle() { return "\u03a3\u03b5\u03b9\u03c1\u03ad\u03c2 \u03b1\u03bd\u03ac \u03c3\u03b5\u03bb\u03af\u03b4\u03b1:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03ad\u03c4\u03bf\u03c5\u03c2"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 1 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf"; }, get$selectedRowCountTitleOther() { return "\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd $selectedRowCount \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03bc\u03b5\u03bd\u03bf\u03cd"; }, get$tabLabelRaw() { return "\u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 $tabIndex \u03b1\u03c0\u03cc $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "\u0395\u03a0\u0399\u039b\u039f\u0393\u0397 \u03a9\u03a1\u0391\u03a3"; }, get$timePickerHourLabel() { return "\u038f\u03c1\u03b1"; }, get$timePickerHourModeAnnouncement() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c9\u03c1\u03ce\u03bd"; }, get$timePickerInputHelpText() { return "\u0395\u0399\u03a3\u0391\u0393\u03a9\u0393\u0397 \u03a9\u03a1\u0391\u03a3"; }, get$timePickerMinuteLabel() { return "\u039b\u03b5\u03c0\u03c4\u03cc"; }, get$timePickerMinuteModeAnnouncement() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bb\u03b5\u03c0\u03c4\u03ce\u03bd"; } }; A.MaterialLocalizationEn.prototype = { get$alertDialogLabel() { return "Alert"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Back"; }, get$calendarModeButtonLabel() { return "Switch to calendar"; }, get$cancelButtonLabel() { return "CANCEL"; }, get$collapsedIconTapHint() { return "Expand"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Enter Date"; }, get$dateOutOfRangeLabel() { return "Out of range."; }, get$datePickerHelpText() { return "SELECT DATE"; }, get$dialModeButtonLabel() { return "Switch to dial picker mode"; }, get$dialogLabel() { return "Dialog"; }, get$drawerLabel() { return "Navigation menu"; }, get$expandedIconTapHint() { return "Collapse"; }, get$firstPageTooltip() { return "First page"; }, get$inputDateModeButtonLabel() { return "Switch to input"; }, get$inputTimeModeButtonLabel() { return "Switch to text input mode"; }, get$invalidDateFormatLabel() { return "Invalid format."; }, get$invalidTimeLabel() { return "Enter a valid time"; }, get$lastPageTooltip() { return "Last page"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 license"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenses"; }, get$modalBarrierDismissLabel() { return "Dismiss"; }, get$nextMonthTooltip() { return "Next month"; }, get$nextPageTooltip() { return "Next page"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Open navigation menu"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow of $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow of about $rowCount"; }, get$popupMenuLabel() { return "Popup menu"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Previous month"; }, get$previousPageTooltip() { return "Previous page"; }, get$refreshIndicatorSemanticLabel() { return "Refresh"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 character remaining"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "No characters remaining"; }, get$reorderItemDown() { return "Move down"; }, get$reorderItemToEnd() { return "Move to the end"; }, get$reorderItemToStart() { return "Move to the start"; }, get$reorderItemUp() { return "Move up"; }, get$rowsPerPageTitle() { return "Rows per page:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Select year"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item selected"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount items selected"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "No items selected"; }, get$showMenuTooltip() { return "Show menu"; }, get$tabLabelRaw() { return "Tab $tabIndex of $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "SELECT TIME"; }, get$timePickerHourLabel() { return "Hour"; }, get$timePickerHourModeAnnouncement() { return "Select hours"; }, get$timePickerInputHelpText() { return "ENTER TIME"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$timePickerMinuteModeAnnouncement() { return "Select minutes"; } }; A.MaterialLocalizationEnAu.prototype = { get$dateInputLabel() { return "Enter date"; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnCa.prototype = { get$dateInputLabel() { return "Enter date"; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnGb.prototype = { get$dateInputLabel() { return "Enter date"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnIe.prototype = { get$dateInputLabel() { return "Enter date"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnIn.prototype = { get$dateInputLabel() { return "Enter date"; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnNz.prototype = { get$dateInputLabel() { return "Enter date"; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnSg.prototype = { get$dateInputLabel() { return "Enter date"; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEnZa.prototype = { get$dateInputLabel() { return "Enter date"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$licensesPageTitle() { return "Licences"; }, get$licensesPackageDetailTextZero() { return "No licences"; }, get$licensesPackageDetailTextOne() { return "1 licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licences"; }, get$popupMenuLabel() { return "Pop-up menu"; }, get$dialogLabel() { return "Dialogue"; } }; A.MaterialLocalizationEs.prototype = { get$alertDialogLabel() { return "Alerta"; }, get$anteMeridiemAbbreviation() { return "a. m."; }, get$backButtonTooltip() { return "Atr\xe1s"; }, get$calendarModeButtonLabel() { return "Cambiar a calendario"; }, get$cancelButtonLabel() { return "CANCELAR"; }, get$collapsedIconTapHint() { return "Mostrar"; }, get$dateHelpText() { return "mm/dd/aaaa"; }, get$dateInputLabel() { return "Introduce una fecha"; }, get$dateOutOfRangeLabel() { return "Fuera del periodo v\xe1lido."; }, get$datePickerHelpText() { return "SELECCIONAR FECHA"; }, get$dialModeButtonLabel() { return "Cambiar al modo de selecci\xf3n de hora"; }, get$dialogLabel() { return "Cuadro de di\xe1logo"; }, get$drawerLabel() { return "Men\xfa de navegaci\xf3n"; }, get$expandedIconTapHint() { return "Ocultar"; }, get$firstPageTooltip() { return "Primera p\xe1gina"; }, get$inputDateModeButtonLabel() { return "Cambiar a cuadro de texto"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de introducci\xf3n de texto"; }, get$invalidDateFormatLabel() { return "Formato no v\xe1lido."; }, get$invalidTimeLabel() { return "Indica una hora v\xe1lida"; }, get$lastPageTooltip() { return "\xdaltima p\xe1gina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0licencia"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licencias"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencias"; }, get$modalBarrierDismissLabel() { return "Cerrar"; }, get$nextMonthTooltip() { return "Mes siguiente"; }, get$nextPageTooltip() { return "P\xe1gina siguiente"; }, get$okButtonLabel() { return "ACEPTAR"; }, get$openAppDrawerTooltip() { return "Abrir el men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2011$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2011$lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel() { return "Men\xfa emergente"; }, get$postMeridiemAbbreviation() { return "p. m."; }, get$previousMonthTooltip() { return "Mes anterior"; }, get$previousPageTooltip() { return "P\xe1gina anterior"; }, get$refreshIndicatorSemanticLabel() { return "Actualizar"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Queda 1 car\xe1cter."; }, get$remainingTextFieldCharacterCountOther() { return "Quedan $remainingCount caracteres"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Mover hacia abajo"; }, get$reorderItemToEnd() { return "Mover al final"; }, get$reorderItemToStart() { return "Mover al principio"; }, get$reorderItemUp() { return "Mover hacia arriba"; }, get$rowsPerPageTitle() { return "Filas por p\xe1gina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Seleccionar a\xf1o"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\xa0elemento seleccionado"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\xa0elementos seleccionados"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "No se han seleccionado elementos"; }, get$showMenuTooltip() { return "Mostrar men\xfa"; }, get$tabLabelRaw() { return "Pesta\xf1a $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "SELECCIONAR HORA"; }, get$timePickerHourLabel() { return "Hora"; }, get$timePickerHourModeAnnouncement() { return "Seleccionar horas"; }, get$timePickerInputHelpText() { return "INTRODUCIR HORA"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Seleccionar minutos"; } }; A.MaterialLocalizationEs419.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsAr.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsBo.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsCl.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsCo.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsCr.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsDo.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsEc.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsGt.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsHn.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsMx.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsNi.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsPa.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsPe.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsPr.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsPy.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsSv.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsUs.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsUy.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEsVe.prototype = { get$licensesPackageDetailTextOne() { return "1 licencia"; }, get$timePickerInputHelpText() { return "INGRESAR HORA"; }, get$invalidTimeLabel() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel() { return "Ingresar fecha"; }, get$calendarModeButtonLabel() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel() { return "Fuera de rango"; }, get$invalidDateFormatLabel() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel() { return "Cambiar a modo de entrada"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$reorderItemToStart() { return "Mover al inicio"; }, get$modalBarrierDismissLabel() { return "Descartar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstde; }, get$selectedRowCountTitleOne() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther() { return string$.Se_sel; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$dialogLabel() { return "Di\xe1logo"; }, get$expandedIconTapHint() { return "Contraer"; }, get$collapsedIconTapHint() { return "Expandir"; } }; A.MaterialLocalizationEt.prototype = { get$alertDialogLabel() { return "M\xe4rguanne"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Tagasi"; }, get$calendarModeButtonLabel() { return "Kalendrile l\xfclitumine"; }, get$cancelButtonLabel() { return "T\xdcHISTA"; }, get$collapsedIconTapHint() { return "Laienda"; }, get$dateHelpText() { return "pp.kk.aaaa"; }, get$dateInputLabel() { return "Sisestage kuup\xe4ev"; }, get$dateOutOfRangeLabel() { return "Vahemikust v\xe4ljas."; }, get$datePickerHelpText() { return "VALIGE KUUP\xc4EV"; }, get$dialModeButtonLabel() { return "L\xfclitumine valikuketta re\u017eiimile"; }, get$dialogLabel() { return "Dialoog"; }, get$drawerLabel() { return "Navigeerimismen\xfc\xfc"; }, get$expandedIconTapHint() { return "Ahenda"; }, get$firstPageTooltip() { return "Esimene leht"; }, get$inputDateModeButtonLabel() { return "Sisestusre\u017eiimile l\xfclitumine"; }, get$inputTimeModeButtonLabel() { return "L\xfclitumine tekstisisestusre\u017eiimile"; }, get$invalidDateFormatLabel() { return "Sobimatu vorming."; }, get$invalidTimeLabel() { return "Sisestage sobiv kellaaeg"; }, get$lastPageTooltip() { return "Viimane leht"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 litsents"; }, get$licensesPackageDetailTextOther() { return "$licenseCount litsentsi"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Litsentsid"; }, get$modalBarrierDismissLabel() { return "Loobu"; }, get$nextMonthTooltip() { return "J\xe4rgmine kuu"; }, get$nextPageTooltip() { return "J\xe4rgmine leht"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Ava navigeerimismen\xfc\xfc"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow $rowCount-st"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow umbes $rowCount-st"; }, get$popupMenuLabel() { return "H\xfcpikmen\xfc\xfc"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Eelmine kuu"; }, get$previousPageTooltip() { return "Eelmine leht"; }, get$refreshIndicatorSemanticLabel() { return "V\xe4rskendamine"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "J\xe4\xe4nud on 1 t\xe4hem\xe4rk"; }, get$remainingTextFieldCharacterCountOther() { return "J\xe4\xe4nud on $remainingCount t\xe4hem\xe4rki"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Teisalda alla"; }, get$reorderItemToEnd() { return "Teisalda l\xf5ppu"; }, get$reorderItemToStart() { return "Teisalda algusesse"; }, get$reorderItemUp() { return "Teisalda \xfcles"; }, get$rowsPerPageTitle() { return "Ridu lehe kohta:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Valige aasta"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Valitud on 1 \xfcksus"; }, get$selectedRowCountTitleOther() { return "Valitud on $selectedRowCount \xfcksust"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Kuva men\xfc\xfc"; }, get$tabLabelRaw() { return "$tabIndex. vahekaart $tabCount-st"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VALIGE AEG"; }, get$timePickerHourLabel() { return "Tund"; }, get$timePickerHourModeAnnouncement() { return "Tundide valimine"; }, get$timePickerInputHelpText() { return "SISESTAGE AEG"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "Minutite valimine"; } }; A.MaterialLocalizationEu.prototype = { get$alertDialogLabel() { return "Alerta"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Atzera"; }, get$calendarModeButtonLabel() { return "Aldatu egutegiaren modura"; }, get$cancelButtonLabel() { return "UTZI"; }, get$collapsedIconTapHint() { return "Zabaldu"; }, get$dateHelpText() { return "uuuu/hh/ee"; }, get$dateInputLabel() { return "Idatzi data"; }, get$dateOutOfRangeLabel() { return "Barrutitik kanpo."; }, get$datePickerHelpText() { return "HAUTATU DATA"; }, get$dialModeButtonLabel() { return "Aldatu esfera hautatzeko modura"; }, get$dialogLabel() { return "Leihoa"; }, get$drawerLabel() { return "Nabigazio-menua"; }, get$expandedIconTapHint() { return "Tolestu"; }, get$firstPageTooltip() { return "Lehenengo orria"; }, get$inputDateModeButtonLabel() { return "Aldatu datak aukeratzeko modura"; }, get$inputTimeModeButtonLabel() { return "Aldatu testua idazteko modura"; }, get$invalidDateFormatLabel() { return "Formatuak ez du balio."; }, get$invalidTimeLabel() { return "Idatzi balio duen ordu bat"; }, get$lastPageTooltip() { return "Azken orria"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lizentzia"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lizentzia"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lizentziak"; }, get$modalBarrierDismissLabel() { return "Baztertu"; }, get$nextMonthTooltip() { return "Hurrengo hilabetea"; }, get$nextPageTooltip() { return "Hurrengo orria"; }, get$okButtonLabel() { return "Ados"; }, get$openAppDrawerTooltip() { return "Ireki nabigazio-menua"; }, get$pageRowsInfoTitleRaw() { return "$firstRow - $lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow - $lastRow / $rowCount"; }, get$popupMenuLabel() { return "Menu gainerakorra"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Aurreko hilabetea"; }, get$previousPageTooltip() { return "Aurreko orria"; }, get$refreshIndicatorSemanticLabel() { return "Freskatu"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 karaktere geratzen da"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount karaktere geratzen dira"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Eraman behera"; }, get$reorderItemToEnd() { return "Eraman amaierara"; }, get$reorderItemToStart() { return "Eraman hasierara"; }, get$reorderItemUp() { return "Eraman gora"; }, get$rowsPerPageTitle() { return "Errenkadak orriko:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Hautatu urtea"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 elementu hautatu da"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elementu hautatu dira"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Erakutsi menua"; }, get$tabLabelRaw() { return "$tabIndex/$tabCount fitxa"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "HAUTATU ORDUA"; }, get$timePickerHourLabel() { return "Ordua"; }, get$timePickerHourModeAnnouncement() { return "Hautatu orduak"; }, get$timePickerInputHelpText() { return "IDATZI ORDUA"; }, get$timePickerMinuteLabel() { return "Minutua"; }, get$timePickerMinuteModeAnnouncement() { return "Hautatu minutuak"; } }; A.MaterialLocalizationFa.prototype = { get$alertDialogLabel() { return "\u0647\u0634\u062f\u0627\u0631"; }, get$anteMeridiemAbbreviation() { return "\u0642.\u0638."; }, get$backButtonTooltip() { return "\u0628\u0631\u06af\u0634\u062a"; }, get$calendarModeButtonLabel() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062a\u0642\u0648\u06cc\u0645"; }, get$cancelButtonLabel() { return "\u0644\u063a\u0648"; }, get$collapsedIconTapHint() { return "\u0628\u0632\u0631\u06af \u06a9\u0631\u062f\u0646"; }, get$dateHelpText() { return "\u0631\u0648\u0632/\u0645\u0627\u0647/\u0633\u0627\u0644"; }, get$dateInputLabel() { return "\u062a\u0627\u0631\u06cc\u062e \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$dateOutOfRangeLabel() { return "\u062e\u0627\u0631\u062c \u0627\u0632 \u0645\u062d\u062f\u0648\u062f\u0647."; }, get$datePickerHelpText() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e"; }, get$dialModeButtonLabel() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062d\u0627\u0644\u062a \u0627\u0646\u062a\u062e\u0627\u0628\u06af\u0631 \u0635\u0641\u062d\u0647 \u0633\u0627\u0639\u062a"; }, get$dialogLabel() { return "\u06a9\u0627\u062f\u0631 \u06af\u0641\u062a\u06af\u0648"; }, get$drawerLabel() { return "\u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"; }, get$expandedIconTapHint() { return "\u06a9\u0648\u0686\u06a9 \u06a9\u0631\u062f\u0646"; }, get$firstPageTooltip() { return "\u0635\u0641\u062d\u0647 \u0627\u0648\u0644"; }, get$inputDateModeButtonLabel() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u0648\u0631\u0648\u062f\u06cc"; }, get$inputTimeModeButtonLabel() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062d\u0627\u0644\u062a \u0648\u0631\u0648\u062f\u06cc \u0646\u0648\u0634\u062a\u0627\u0631\u06cc"; }, get$invalidDateFormatLabel() { return "\u0642\u0627\u0644\u0628 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."; }, get$invalidTimeLabel() { return "\u0632\u0645\u0627\u0646 \u0645\u0639\u062a\u0628\u0631\u06cc \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$lastPageTooltip() { return "\u0635\u0641\u062d\u0647 \u0622\u062e\u0631"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u06f1 \u067e\u0631\u0648\u0627\u0646\u0647"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u067e\u0631\u0648\u0627\u0646\u0647"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0645\u062c\u0648\u0632\u0647\u0627"; }, get$modalBarrierDismissLabel() { return "\u0646\u067e\u0630\u06cc\u0631\u0641\u062a\u0646"; }, get$nextMonthTooltip() { return "\u0645\u0627\u0647 \u0628\u0639\u062f"; }, get$nextPageTooltip() { return "\u0635\u0641\u062d\u0647 \u0628\u0639\u062f"; }, get$okButtonLabel() { return "\u062a\u0623\u06cc\u06cc\u062f"; }, get$openAppDrawerTooltip() { return "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0627\u0632 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0627\u0632 \u062d\u062f\u0648\u062f $rowCount"; }, get$popupMenuLabel() { return "\u0645\u0646\u0648\u06cc \u0628\u0627\u0632\u0634\u0648"; }, get$postMeridiemAbbreviation() { return "\u0628.\u0638."; }, get$previousMonthTooltip() { return "\u0645\u0627\u0647 \u0642\u0628\u0644"; }, get$previousPageTooltip() { return "\u0635\u0641\u062d\u0647 \u0642\u0628\u0644"; }, get$refreshIndicatorSemanticLabel() { return "\u0628\u0627\u0632\u062e\u0648\u0627\u0646\u06cc"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u06f1 \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u067e\u0627\u06cc\u06cc\u0646"; }, get$reorderItemToEnd() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0627\u0646\u062a\u0647\u0627"; }, get$reorderItemToStart() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0627\u0628\u062a\u062f\u0627"; }, get$reorderItemUp() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0628\u0627\u0644\u0627"; }, get$rowsPerPageTitle() { return "\u0631\u062f\u06cc\u0641 \u062f\u0631 \u0647\u0631 \u0635\u0641\u062d\u0647:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0627\u0644"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u06f1 \u0645\u0648\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0645\u0648\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0646\u062f"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648"; }, get$tabLabelRaw() { return "\u0628\u0631\u06af\u0647 $tabIndex \u0627\u0632 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0632\u0645\u0627\u0646"; }, get$timePickerHourLabel() { return "\u0633\u0627\u0639\u062a"; }, get$timePickerHourModeAnnouncement() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0627\u0639\u062a"; }, get$timePickerInputHelpText() { return "\u0632\u0645\u0627\u0646 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$timePickerMinuteLabel() { return "\u062f\u0642\u06cc\u0642\u0647"; }, get$timePickerMinuteModeAnnouncement() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0642\u06cc\u0642\u0647"; } }; A.MaterialLocalizationFi.prototype = { get$alertDialogLabel() { return "Ilmoitus"; }, get$anteMeridiemAbbreviation() { return "ap"; }, get$backButtonTooltip() { return "Takaisin"; }, get$calendarModeButtonLabel() { return "Vaihda kalenteriin"; }, get$cancelButtonLabel() { return "PERUUTA"; }, get$collapsedIconTapHint() { return "Laajenna"; }, get$dateHelpText() { return "pp/kk/vvvv"; }, get$dateInputLabel() { return "Lis\xe4\xe4 p\xe4iv\xe4m\xe4\xe4r\xe4"; }, get$dateOutOfRangeLabel() { return "P\xe4iv\xe4m\xe4\xe4r\xe4 ei kelpaa"; }, get$datePickerHelpText() { return "VALITSE P\xc4IV\xc4M\xc4\xc4R\xc4"; }, get$dialModeButtonLabel() { return "Valitse kellotauluvalitsin"; }, get$dialogLabel() { return "Valintaikkuna"; }, get$drawerLabel() { return "Navigointivalikko"; }, get$expandedIconTapHint() { return "Tiivist\xe4"; }, get$firstPageTooltip() { return "Ensimm\xe4inen sivu"; }, get$inputDateModeButtonLabel() { return "Vaihda tekstinsy\xf6tt\xf6\xf6n"; }, get$inputTimeModeButtonLabel() { return "Valitse sy\xf6tt\xf6tavaksi teksti"; }, get$invalidDateFormatLabel() { return "Virheellinen muoto"; }, get$invalidTimeLabel() { return "Lis\xe4\xe4 kelvollinen aika"; }, get$lastPageTooltip() { return "Viimeinen sivu"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisenssi"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisenssi\xe4"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lisenssit"; }, get$modalBarrierDismissLabel() { return "Ohita"; }, get$nextMonthTooltip() { return "Seuraava kuukausi"; }, get$nextPageTooltip() { return "Seuraava sivu"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Avaa navigointivalikko"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow/$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow/~$rowCount"; }, get$popupMenuLabel() { return "Ponnahdusvalikko"; }, get$postMeridiemAbbreviation() { return "ip"; }, get$previousMonthTooltip() { return "Edellinen kuukausi"; }, get$previousPageTooltip() { return "Edellinen sivu"; }, get$refreshIndicatorSemanticLabel() { return "P\xe4ivitys"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 merkki j\xe4ljell\xe4"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount merkki\xe4 j\xe4ljell\xe4"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Siirr\xe4 alas"; }, get$reorderItemToEnd() { return "Siirr\xe4 loppuun"; }, get$reorderItemToStart() { return "Siirr\xe4 alkuun"; }, get$reorderItemUp() { return "Siirr\xe4 yl\xf6s"; }, get$rowsPerPageTitle() { return "Rivi\xe4/sivu:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Valitse vuosi"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\xa0kohde valittu"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount kohdetta valittu"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "N\xe4yt\xe4 valikko"; }, get$tabLabelRaw() { return "V\xe4lilehti $tabIndex/$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VALITSE AIKA"; }, get$timePickerHourLabel() { return "Tunti"; }, get$timePickerHourModeAnnouncement() { return "Valitse tunnit"; }, get$timePickerInputHelpText() { return "LIS\xc4\xc4 AIKA"; }, get$timePickerMinuteLabel() { return "Minuutti"; }, get$timePickerMinuteModeAnnouncement() { return "Valitse minuutit"; } }; A.MaterialLocalizationFil.prototype = { get$alertDialogLabel() { return "Alerto"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Bumalik"; }, get$calendarModeButtonLabel() { return "Lumipat sa kalendaryo"; }, get$cancelButtonLabel() { return "KANSELAHIN"; }, get$collapsedIconTapHint() { return "I-expand"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Ilagay ang Petsa"; }, get$dateOutOfRangeLabel() { return "Wala sa hanay."; }, get$datePickerHelpText() { return "PUMILI NG PETSA"; }, get$dialModeButtonLabel() { return "Lumipat sa dial picker mode"; }, get$dialogLabel() { return "Dialog"; }, get$drawerLabel() { return "Menu ng navigation"; }, get$expandedIconTapHint() { return "I-collapse"; }, get$firstPageTooltip() { return "Unang page"; }, get$inputDateModeButtonLabel() { return "Lumipat sa input"; }, get$inputTimeModeButtonLabel() { return "Lumipat sa text input mode"; }, get$invalidDateFormatLabel() { return "Invalid ang format."; }, get$invalidTimeLabel() { return "Maglagay ng valid na oras"; }, get$lastPageTooltip() { return "Huling page"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisensya"; }, get$licensesPackageDetailTextOther() { return "$licenseCount na lisensya"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Mga Lisensya"; }, get$modalBarrierDismissLabel() { return "I-dismiss"; }, get$nextMonthTooltip() { return "Susunod na buwan"; }, get$nextPageTooltip() { return "Susunod na page"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Buksan ang menu ng navigation"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow ng $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstn; }, get$popupMenuLabel() { return "Popup na menu"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Nakaraang buwan"; }, get$previousPageTooltip() { return "Nakaraang page"; }, get$refreshIndicatorSemanticLabel() { return "Nagre-refresh"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 character ang natitira"; }, get$remainingTextFieldCharacterCountOther() { return string$.x24remai; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Ilipat pababa"; }, get$reorderItemToEnd() { return "Ilipat sa dulo"; }, get$reorderItemToStart() { return "Ilipat sa simula"; }, get$reorderItemUp() { return "Ilipat pataas"; }, get$rowsPerPageTitle() { return "Mga row bawat page:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Pumili ng taon"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item ang napili"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount na item ang napili"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Ipakita ang menu"; }, get$tabLabelRaw() { return "Tab $tabIndex ng $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "PUMILI NG ORAS"; }, get$timePickerHourLabel() { return "Oras"; }, get$timePickerHourModeAnnouncement() { return "Pumili ng mga oras"; }, get$timePickerInputHelpText() { return "MAGLAGAY NG ORAS"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Pumili ng mga minuto"; } }; A.MaterialLocalizationFr.prototype = { get$alertDialogLabel() { return "Alerte"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Retour"; }, get$calendarModeButtonLabel() { return "Passer \xe0 l'agenda"; }, get$cancelButtonLabel() { return "ANNULER"; }, get$collapsedIconTapHint() { return "D\xe9velopper"; }, get$dateHelpText() { return "jj/mm/aaaa"; }, get$dateInputLabel() { return "Saisir une date"; }, get$dateOutOfRangeLabel() { return "Hors de port\xe9e."; }, get$datePickerHelpText() { return "S\xc9LECTIONNER UNE DATE"; }, get$dialModeButtonLabel() { return "Passer au mode de s\xe9lection via le cadran"; }, get$dialogLabel() { return "Bo\xeete de dialogue"; }, get$drawerLabel() { return "Menu de navigation"; }, get$expandedIconTapHint() { return "R\xe9duire"; }, get$firstPageTooltip() { return "Premi\xe8re page"; }, get$inputDateModeButtonLabel() { return "Passer \xe0 la saisie"; }, get$inputTimeModeButtonLabel() { return "Passer au mode de saisie au format texte"; }, get$invalidDateFormatLabel() { return "Format non valide."; }, get$invalidTimeLabel() { return "Veuillez indiquer une heure valide"; }, get$lastPageTooltip() { return "Derni\xe8re page"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licences"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licences"; }, get$modalBarrierDismissLabel() { return "Ignorer"; }, get$nextMonthTooltip() { return "Mois suivant"; }, get$nextPageTooltip() { return "Page suivante"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Ouvrir le menu de navigation"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow sur $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow sur environ $rowCount"; }, get$popupMenuLabel() { return "Menu contextuel"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Mois pr\xe9c\xe9dent"; }, get$previousPageTooltip() { return "Page pr\xe9c\xe9dente"; }, get$refreshIndicatorSemanticLabel() { return "Actualiser"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1\xa0caract\xe8re restant"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount\xa0caract\xe8res restants"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "D\xe9placer vers le bas"; }, get$reorderItemToEnd() { return "D\xe9placer vers la fin"; }, get$reorderItemToStart() { return "D\xe9placer vers le d\xe9but"; }, get$reorderItemUp() { return "D\xe9placer vers le haut"; }, get$rowsPerPageTitle() { return "Lignes par page\xa0:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "S\xe9lectionner une ann\xe9e"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\xa0\xe9l\xe9ment s\xe9lectionn\xe9"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\xa0\xe9l\xe9ments s\xe9lectionn\xe9s"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Aucun \xe9l\xe9ment s\xe9lectionn\xe9"; }, get$showMenuTooltip() { return "Afficher le menu"; }, get$tabLabelRaw() { return "Onglet $tabIndex sur $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "S\xc9LECTIONNER UNE HEURE"; }, get$timePickerHourLabel() { return "Heure"; }, get$timePickerHourModeAnnouncement() { return "S\xe9lectionner une heure"; }, get$timePickerInputHelpText() { return "SAISIR UNE HEURE"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$timePickerMinuteModeAnnouncement() { return "S\xe9lectionner des minutes"; } }; A.MaterialLocalizationFrCa.prototype = { get$invalidTimeLabel() { return "Entrez une heure valide"; }, get$timePickerDialHelpText() { return "S\xc9LECTIONNER L'HEURE"; }, get$timePickerInputHelpText() { return "ENTRER L'HEURE"; }, get$timePickerMinuteLabel() { return "Minutes"; }, get$dialModeButtonLabel() { return "Passer au mode de s\xe9lection du cadran"; }, get$inputTimeModeButtonLabel() { return "Passer au mode d'entr\xe9e Texte"; }, get$datePickerHelpText() { return "S\xc9LECTIONNER LA DATE"; }, get$invalidDateFormatLabel() { return "Format incorrect"; }, get$inputDateModeButtonLabel() { return "Passer \xe0 l'entr\xe9e"; }, get$dateInputLabel() { return "Entrer une date"; }, get$dateHelpText() { return "jj-mm-aaaa"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \xe0 $lastRow sur $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \xe0 $lastRow sur environ\xa0$rowCount"; }, get$tabLabelRaw() { return "Onglet\xa0$tabIndex sur\xa0$tabCount"; }, get$anteMeridiemAbbreviation() { return "am"; }, get$postMeridiemAbbreviation() { return "pm"; }, get$timePickerHourModeAnnouncement() { return "S\xe9lectionnez les heures"; }, get$timePickerMinuteModeAnnouncement() { return "S\xe9lectionnez les minutes"; }, get$reorderItemToStart() { return "D\xe9placer au d\xe9but"; }, get$reorderItemToEnd() { return "D\xe9placer \xe0 la fin"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_2; } }; A.MaterialLocalizationGl.prototype = { get$alertDialogLabel() { return "Alerta"; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$backButtonTooltip() { return "Atr\xe1s"; }, get$calendarModeButtonLabel() { return "Cambiar ao modo de calendario"; }, get$cancelButtonLabel() { return "CANCELAR"; }, get$collapsedIconTapHint() { return "Despregar"; }, get$dateHelpText() { return "mm/dd/aaaa"; }, get$dateInputLabel() { return "Introduce a data"; }, get$dateOutOfRangeLabel() { return "A data est\xe1 f\xf3ra do intervalo."; }, get$datePickerHelpText() { return "SELECCIONAR UNHA DATA"; }, get$dialModeButtonLabel() { return "Cambiar a modo de selector en esfera"; }, get$dialogLabel() { return "Cadro de di\xe1logo"; }, get$drawerLabel() { return "Men\xfa de navegaci\xf3n"; }, get$expandedIconTapHint() { return "Contraer"; }, get$firstPageTooltip() { return "Primeira p\xe1xina"; }, get$inputDateModeButtonLabel() { return "Cambiar ao modo de introduci\xf3n de texto"; }, get$inputTimeModeButtonLabel() { return "Cambiar ao modo de escritura dos n\xfameros"; }, get$invalidDateFormatLabel() { return "O formato non \xe9 v\xe1lido."; }, get$invalidTimeLabel() { return "Escribe unha hora v\xe1lida"; }, get$lastPageTooltip() { return "\xdaltima p\xe1xina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenza"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenzas"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenzas"; }, get$modalBarrierDismissLabel() { return "Ignorar"; }, get$nextMonthTooltip() { return "Mes seguinte"; }, get$nextPageTooltip() { return "P\xe1xina seguinte"; }, get$okButtonLabel() { return "Aceptar"; }, get$openAppDrawerTooltip() { return "Abrir men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel() { return "Men\xfa emerxente"; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$previousMonthTooltip() { return "Mes anterior"; }, get$previousPageTooltip() { return "P\xe1xina anterior"; }, get$refreshIndicatorSemanticLabel() { return "Actualizar"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 car\xe1cter restante"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount caracteres restantes"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Mover cara abaixo"; }, get$reorderItemToEnd() { return "Mover ao final"; }, get$reorderItemToStart() { return "Mover ao inicio"; }, get$reorderItemUp() { return "Mover cara arriba"; }, get$rowsPerPageTitle() { return "Filas por p\xe1xina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Seleccionar ano"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Seleccionouse 1 elemento"; }, get$selectedRowCountTitleOther() { return "Seleccion\xe1ronse $selectedRowCount elementos"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Non se seleccionaron elementos"; }, get$showMenuTooltip() { return "Mostrar men\xfa"; }, get$tabLabelRaw() { return "Pestana $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "SELECCIONA A HORA"; }, get$timePickerHourLabel() { return "Hora"; }, get$timePickerHourModeAnnouncement() { return "Seleccionar horas"; }, get$timePickerInputHelpText() { return "INDICA A HORA"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Seleccionar minutos"; } }; A.MaterialLocalizationGsw.prototype = { get$alertDialogLabel() { return "Benachrichtigung"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Zur\xfcck"; }, get$calendarModeButtonLabel() { return "Zum Kalender wechseln"; }, get$cancelButtonLabel() { return "ABBRECHEN"; }, get$collapsedIconTapHint() { return "Maximieren"; }, get$dateHelpText() { return "tt.mm.jjjj"; }, get$dateInputLabel() { return "Datum eingeben"; }, get$dateOutOfRangeLabel() { return "Au\xdferhalb des Zeitraums."; }, get$datePickerHelpText() { return "DATUM AUSW\xc4HLEN"; }, get$dialModeButtonLabel() { return "Zur Uhrzeitauswahl wechseln"; }, get$dialogLabel() { return "Dialogfeld"; }, get$drawerLabel() { return "Navigationsmen\xfc"; }, get$expandedIconTapHint() { return "Minimieren"; }, get$firstPageTooltip() { return "Erste Seite"; }, get$inputDateModeButtonLabel() { return "Zur Texteingabe wechseln"; }, get$inputTimeModeButtonLabel() { return "Zum Texteingabemodus wechseln"; }, get$invalidDateFormatLabel() { return "Ung\xfcltiges Format."; }, get$invalidTimeLabel() { return "Geben Sie eine g\xfcltige Uhrzeit ein"; }, get$lastPageTooltip() { return "Letzte Seite"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0Lizenz"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0Lizenzen"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lizenzen"; }, get$modalBarrierDismissLabel() { return "Schlie\xdfen"; }, get$nextMonthTooltip() { return "N\xe4chster Monat"; }, get$nextPageTooltip() { return "N\xe4chste Seite"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Navigationsmen\xfc \xf6ffnen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow von $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow von etwa $rowCount"; }, get$popupMenuLabel() { return "Pop-up-Men\xfc"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Vorheriger Monat"; }, get$previousPageTooltip() { return "Vorherige Seite"; }, get$refreshIndicatorSemanticLabel() { return "Aktualisieren"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Noch 1\xa0Zeichen"; }, get$remainingTextFieldCharacterCountOther() { return "Noch $remainingCount\xa0Zeichen"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Nach unten verschieben"; }, get$reorderItemToEnd() { return "An das Ende verschieben"; }, get$reorderItemToStart() { return "An den Anfang verschieben"; }, get$reorderItemUp() { return "Nach oben verschieben"; }, get$rowsPerPageTitle() { return "Zeilen pro Seite:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Jahr ausw\xe4hlen"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\xa0Element ausgew\xe4hlt"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\xa0Elemente ausgew\xe4hlt"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Men\xfc anzeigen"; }, get$tabLabelRaw() { return "Tab $tabIndex von $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "UHRZEIT AUSW\xc4HLEN"; }, get$timePickerHourLabel() { return "Stunde"; }, get$timePickerHourModeAnnouncement() { return "Stunden ausw\xe4hlen"; }, get$timePickerInputHelpText() { return "ZEIT EINGEBEN"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$timePickerMinuteModeAnnouncement() { return "Minuten ausw\xe4hlen"; } }; A.MaterialLocalizationGu.prototype = { get$alertDialogLabel() { return "\u0a85\u0ab2\u0ab0\u0acd\u0a9f"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0aaa\u0abe\u0a9b\u0ab3"; }, get$calendarModeButtonLabel() { return "\u0a95\u0ac5\u0ab2\u0ac7\u0aa8\u0acd\u0aa1\u0ab0 \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$cancelButtonLabel() { return "\u0ab0\u0aa6 \u0a95\u0ab0\u0acb"; }, get$collapsedIconTapHint() { return "\u0ab5\u0abf\u0ab8\u0acd\u0aa4\u0ac3\u0aa4 \u0a95\u0ab0\u0acb"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u0aa4\u0abe\u0ab0\u0ac0\u0a96 \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$dateOutOfRangeLabel() { return "\u0ab0\u0ac7\u0a82\u0a9c\u0aae\u0abe\u0a82 \u0aa8\u0aa5\u0ac0."; }, get$datePickerHelpText() { return "\u0aa4\u0abe\u0ab0\u0ac0\u0a96 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$dialModeButtonLabel() { return "\u0aa1\u0abe\u0aaf\u0ab2 \u0aaa\u0abf\u0a95\u0ab0 \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$dialogLabel() { return "\u0ab8\u0a82\u0ab5\u0abe\u0aa6"; }, get$drawerLabel() { return "\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2"; }, get$expandedIconTapHint() { return "\u0ab8\u0a82\u0a95\u0ac1\u0a9a\u0abf\u0aa4 \u0a95\u0ab0\u0acb"; }, get$firstPageTooltip() { return "\u0aaa\u0ab9\u0ac7\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$inputDateModeButtonLabel() { return "\u0a87\u0aa8\u0aaa\u0ac1\u0a9f \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$inputTimeModeButtonLabel() { return "\u0a9f\u0ac7\u0a95\u0acd\u0ab8\u0acd\u0a9f \u0a87\u0aa8\u0aaa\u0ac1\u0a9f \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$invalidDateFormatLabel() { return "\u0a85\u0aae\u0abe\u0aa8\u0acd\u0aaf \u0aab\u0acb\u0ab0\u0acd\u0aae\u0ac7\u0a9f."; }, get$invalidTimeLabel() { return "\u0aae\u0abe\u0aa8\u0acd\u0aaf \u0ab8\u0aae\u0aaf \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$lastPageTooltip() { return "\u0a9b\u0ac7\u0ab2\u0acd\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$modalBarrierDismissLabel() { return "\u0a9b\u0acb\u0aa1\u0ac0 \u0aa6\u0acb"; }, get$nextMonthTooltip() { return "\u0a86\u0a97\u0ab2\u0acb \u0aae\u0ab9\u0abf\u0aa8\u0acb"; }, get$nextPageTooltip() { return "\u0a86\u0a97\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$okButtonLabel() { return "\u0a93\u0a95\u0ac7"; }, get$openAppDrawerTooltip() { return "\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2 \u0a96\u0acb\u0ab2\u0acb"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0a86\u0ab6\u0ab0\u0ac7 $rowCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0aaa\u0ac9\u0aaa\u0a85\u0aaa \u0aae\u0ac7\u0aa8\u0ac2"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0aaa\u0abe\u0a9b\u0ab2\u0acb \u0aae\u0ab9\u0abf\u0aa8\u0acb"; }, get$previousPageTooltip() { return "\u0aaa\u0abe\u0a9b\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$refreshIndicatorSemanticLabel() { return "\u0ab0\u0abf\u0aab\u0acd\u0ab0\u0ac7\u0ab6 \u0a95\u0ab0\u0acb"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0aa8\u0ac0\u0a9a\u0ac7 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemToEnd() { return "\u0a85\u0a82\u0aa4\u0aae\u0abe\u0a82 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemToStart() { return "\u0aaa\u0acd\u0ab0\u0abe\u0ab0\u0a82\u0aad\u0aae\u0abe\u0a82 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemUp() { return "\u0a89\u0aaa\u0ab0 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$rowsPerPageTitle() { return "\u0aaa\u0ac7\u0a9c \u0aa6\u0ac0\u0aa0 \u0aaa\u0a82\u0a95\u0acd\u0aa4\u0abf\u0a93:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0ab5\u0ab0\u0acd\u0ab7 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0a86\u0a87\u0a9f\u0aae \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0ac0"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0a86\u0a87\u0a9f\u0aae \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0ac0"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0aae\u0ac7\u0aa8\u0ac2 \u0aac\u0aa4\u0abe\u0ab5\u0acb"; }, get$tabLabelRaw() { return "$tabCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $tabIndex \u0a9f\u0ac5\u0aac"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0ab8\u0aae\u0aaf \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$timePickerHourLabel() { return "\u0a95\u0ab2\u0abe\u0a95"; }, get$timePickerHourModeAnnouncement() { return "\u0a95\u0ab2\u0abe\u0a95 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$timePickerInputHelpText() { return "\u0ab8\u0aae\u0aaf \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$timePickerMinuteLabel() { return "\u0aae\u0abf\u0aa8\u0abf\u0a9f"; }, get$timePickerMinuteModeAnnouncement() { return "\u0aae\u0abf\u0aa8\u0abf\u0a9f \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; } }; A.MaterialLocalizationHe.prototype = { get$alertDialogLabel() { return "\u05d4\u05ea\u05e8\u05d0\u05d4"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$calendarModeButtonLabel() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05de\u05e6\u05d1 \u05d4\u05d9\u05d5\u05de\u05df"; }, get$cancelButtonLabel() { return "\u05d1\u05d9\u05d8\u05d5\u05dc"; }, get$collapsedIconTapHint() { return "\u05d4\u05e8\u05d7\u05d1\u05d4"; }, get$dateHelpText() { return "dd.mm.yyyy"; }, get$dateInputLabel() { return "\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05ea\u05d0\u05e8\u05d9\u05da"; }, get$dateOutOfRangeLabel() { return "\u05de\u05d7\u05d5\u05e5 \u05dc\u05d8\u05d5\u05d5\u05d7."; }, get$datePickerHelpText() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05ea\u05d0\u05e8\u05d9\u05da"; }, get$dialModeButtonLabel() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05d1\u05d7\u05d9\u05e8\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d7\u05d5\u05d2\u05d4"; }, get$dialogLabel() { return "\u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7"; }, get$drawerLabel() { return "\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8"; }, get$expandedIconTapHint() { return "\u05db\u05d9\u05d5\u05d5\u05e5"; }, get$firstPageTooltip() { return "\u05dc\u05d3\u05e3 \u05d4\u05e8\u05d0\u05e9\u05d5\u05df"; }, get$inputDateModeButtonLabel() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05de\u05e6\u05d1 \u05d4\u05e7\u05dc\u05d8"; }, get$inputTimeModeButtonLabel() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05d4\u05d6\u05e0\u05ea \u05d8\u05e7\u05e1\u05d8"; }, get$invalidDateFormatLabel() { return "\u05e4\u05d5\u05e8\u05de\u05d8 \u05dc\u05d0 \u05d7\u05d5\u05e7\u05d9."; }, get$invalidTimeLabel() { return "\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e9\u05e2\u05d4 \u05ea\u05e7\u05d9\u05e0\u05d4"; }, get$lastPageTooltip() { return "\u05dc\u05d3\u05e3 \u05d4\u05d0\u05d7\u05e8\u05d5\u05df"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextOne() { return "\u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05d0\u05d7\u05d3"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextTwo() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$modalBarrierDismissLabel() { return "\u05e1\u05d2\u05d9\u05e8\u05d4"; }, get$nextMonthTooltip() { return "\u05d4\u05d7\u05d5\u05d3\u05e9 \u05d4\u05d1\u05d0"; }, get$nextPageTooltip() { return "\u05d4\u05d3\u05e3 \u05d4\u05d1\u05d0"; }, get$okButtonLabel() { return "\u05d0\u05d9\u05e9\u05d5\u05e8"; }, get$openAppDrawerTooltip() { return "\u05e4\u05ea\u05d9\u05d7\u05d4 \u05e9\u05dc \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8"; }, get$pageRowsInfoTitleRaw() { return "$lastRow\u2013$firstRow \u05de\u05ea\u05d5\u05da $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$lastRow\u2013$firstRow \u05de\u05ea\u05d5\u05da \u05db-$rowCount"; }, get$popupMenuLabel() { return "\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e7\u05d5\u05e4\u05e5"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u05d4\u05d7\u05d5\u05d3\u05e9 \u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$previousPageTooltip() { return "\u05d4\u05d3\u05e3 \u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$refreshIndicatorSemanticLabel() { return "\u05e8\u05e2\u05e0\u05d5\u05df"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountOne() { return "\u05e0\u05d5\u05ea\u05e8 \u05ea\u05d5 \u05d0\u05d7\u05d3"; }, get$remainingTextFieldCharacterCountOther() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountTwo() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05de\u05d8\u05d4"; }, get$reorderItemToEnd() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05e1\u05d5\u05e3"; }, get$reorderItemToStart() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05d4\u05ea\u05d7\u05dc\u05d4"; }, get$reorderItemUp() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05de\u05e2\u05dc\u05d4"; }, get$rowsPerPageTitle() { return "\u05e9\u05d5\u05e8\u05d5\u05ea \u05d1\u05db\u05dc \u05d3\u05e3:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e0\u05d4"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleOne() { return "\u05e4\u05e8\u05d9\u05d8 \u05d0\u05d7\u05d3 \u05e0\u05d1\u05d7\u05e8"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleTwo() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u05d4\u05e6\u05d2\u05ea \u05d4\u05ea\u05e4\u05e8\u05d9\u05d8"; }, get$tabLabelRaw() { return "\u05db\u05e8\u05d8\u05d9\u05e1\u05d9\u05d9\u05d4 $tabIndex \u05de\u05ea\u05d5\u05da $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e2\u05d4"; }, get$timePickerHourLabel() { return "\u05e9\u05e2\u05d4"; }, get$timePickerHourModeAnnouncement() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e2\u05d5\u05ea"; }, get$timePickerInputHelpText() { return "\u05d4\u05d6\u05e0\u05ea \u05e9\u05e2\u05d4"; }, get$timePickerMinuteLabel() { return "\u05d3\u05e7\u05d5\u05ea"; }, get$timePickerMinuteModeAnnouncement() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05d3\u05e7\u05d5\u05ea"; } }; A.MaterialLocalizationHi.prototype = { get$alertDialogLabel() { return "\u0905\u0932\u0930\u094d\u091f"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0935\u093e\u092a\u0938 \u091c\u093e\u090f\u0902"; }, get$calendarModeButtonLabel() { return "\u0915\u0948\u0932\u0947\u0902\u0921\u0930 \u092a\u0930 \u091c\u093e\u090f\u0902"; }, get$cancelButtonLabel() { return "\u0930\u0926\u094d\u0926 \u0915\u0930\u0947\u0902"; }, get$collapsedIconTapHint() { return "\u092c\u095c\u093e \u0915\u0930\u0947\u0902"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u0924\u093e\u0930\u0940\u0916 \u0921\u093e\u0932\u0947\u0902"; }, get$dateOutOfRangeLabel() { return "\u0938\u0940\u092e\u093e \u0938\u0947 \u091c\u093c\u094d\u092f\u093e\u0926\u093e."; }, get$datePickerHelpText() { return "\u0924\u093e\u0930\u0940\u0916 \u091a\u0941\u0928\u0947\u0902"; }, get$dialModeButtonLabel() { return "\u0921\u093e\u092f\u0932 \u092a\u093f\u0915\u0930 \u092e\u094b\u0921 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0947\u0902"; }, get$dialogLabel() { return "\u0938\u0902\u0935\u093e\u0926"; }, get$drawerLabel() { return "\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942"; }, get$expandedIconTapHint() { return "\u091b\u094b\u091f\u093e \u0915\u0930\u0947\u0902"; }, get$firstPageTooltip() { return "\u092a\u0939\u0932\u093e \u092a\u0947\u091c"; }, get$inputDateModeButtonLabel() { return "\u0907\u0928\u092a\u0941\u091f \u092a\u0930 \u091c\u093e\u090f\u0902"; }, get$inputTimeModeButtonLabel() { return "\u091f\u0947\u0915\u094d\u0938\u094d\u091f \u0915\u0947 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0947\u0902"; }, get$invalidDateFormatLabel() { return "\u0905\u092e\u093e\u0928\u094d\u092f \u095e\u0949\u0930\u094d\u092e\u0948\u091f."; }, get$invalidTimeLabel() { return "\u092e\u093e\u0928\u094d\u092f \u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902"; }, get$lastPageTooltip() { return "\u0906\u0916\u093f\u0930\u0940 \u092a\u0947\u091c"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$modalBarrierDismissLabel() { return "\u0916\u093e\u0930\u093f\u091c \u0915\u0930\u0947\u0902"; }, get$nextMonthTooltip() { return "\u0905\u0917\u0932\u093e \u092e\u0939\u0940\u0928\u093e"; }, get$nextPageTooltip() { return "\u0905\u0917\u0932\u093e \u092a\u0947\u091c"; }, get$okButtonLabel() { return "\u0920\u0940\u0915 \u0939\u0948"; }, get$openAppDrawerTooltip() { return "\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942 \u0916\u094b\u0932\u0947\u0902"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u0915\u093e $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount \u092e\u0947\u0902 \u0938\u0947 \u0915\u0930\u0940\u092c $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u094d\u092f\u0942"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u092a\u093f\u091b\u0932\u093e \u092e\u0939\u0940\u0928\u093e"; }, get$previousPageTooltip() { return "\u092a\u093f\u091b\u0932\u093e \u092a\u0947\u091c"; }, get$refreshIndicatorSemanticLabel() { return "\u0930\u0940\u092b\u093c\u094d\u0930\u0947\u0936 \u0915\u0930\u0947\u0902"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u090f\u0915 \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u0947 \u091c\u093e \u0938\u0915\u0924\u0947 \u0939\u0948\u0902"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u0928\u0940\u091a\u0947 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemToEnd() { return "\u0906\u0916\u093f\u0930 \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemToStart() { return "\u0936\u0941\u0930\u0941\u0906\u0924 \u092a\u0930 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemUp() { return "\u090a\u092a\u0930 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$rowsPerPageTitle() { return "\u0939\u0930 \u092a\u0947\u091c \u092e\u0947\u0902 \u092a\u0902\u0915\u094d\u0924\u093f\u092f\u094b\u0902 \u0915\u0940 \u0938\u0902\u0916\u094d\u092f\u093e:"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u0938\u093e\u0932 \u091a\u0941\u0928\u0947\u0902"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u091a\u0940\u091c\u093c \u091a\u0941\u0928\u0940 \u0917\u0908"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u091a\u0940\u091c\u093c\u0947\u0902 \u091a\u0941\u0928\u0940 \u0917\u0908\u0902"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u092e\u0947\u0928\u094d\u092f\u0942 \u0926\u093f\u0916\u093e\u090f\u0902"; }, get$tabLabelRaw() { return "$tabCount \u0915\u093e \u091f\u0948\u092c $tabIndex"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_5; }, get$timePickerDialHelpText() { return "\u0938\u092e\u092f \u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u091a\u0941\u0928\u0947\u0902"; }, get$timePickerHourLabel() { return "\u0918\u0902\u091f\u093e"; }, get$timePickerHourModeAnnouncement() { return "\u0918\u0902\u091f\u0947 \u0915\u0947 \u0939\u093f\u0938\u093e\u092c \u0938\u0947 \u0938\u092e\u092f \u091a\u0941\u0928\u0947\u0902"; }, get$timePickerInputHelpText() { return "\u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902"; }, get$timePickerMinuteLabel() { return "\u092e\u093f\u0928\u091f"; }, get$timePickerMinuteModeAnnouncement() { return "\u092e\u093f\u0928\u091f \u0915\u0947 \u0939\u093f\u0938\u093e\u092c \u0938\u0947 \u0938\u092e\u092f \u091a\u0941\u0928\u0947\u0902"; } }; A.MaterialLocalizationHr.prototype = { get$alertDialogLabel() { return "Upozorenje"; }, get$anteMeridiemAbbreviation() { return "prijepodne"; }, get$backButtonTooltip() { return "Natrag"; }, get$calendarModeButtonLabel() { return "Prije\u0111ite na kalendar"; }, get$cancelButtonLabel() { return "ODUSTANI"; }, get$collapsedIconTapHint() { return "Pro\u0161iri"; }, get$dateHelpText() { return "dd. mm. gggg."; }, get$dateInputLabel() { return "Unesite datum"; }, get$dateOutOfRangeLabel() { return "Izvan raspona."; }, get$datePickerHelpText() { return "ODABERITE DATUM"; }, get$dialModeButtonLabel() { return "Prijelaz na na\u010din alata za odabir biranja"; }, get$dialogLabel() { return "Dijalog"; }, get$drawerLabel() { return "Navigacijski izbornik"; }, get$expandedIconTapHint() { return "Sa\u017emi"; }, get$firstPageTooltip() { return "Prva stranica"; }, get$inputDateModeButtonLabel() { return "Prije\u0111ite na unos"; }, get$inputTimeModeButtonLabel() { return "Prijelaz na na\u010din unosa teksta"; }, get$invalidDateFormatLabel() { return "Format nije va\u017ee\u0107i."; }, get$invalidTimeLabel() { return "Unesite va\u017ee\u0107e vrijeme"; }, get$lastPageTooltip() { return "Posljednja stranica"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenca"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licence"; }, get$modalBarrierDismissLabel() { return "Odbaci"; }, get$nextMonthTooltip() { return "Sljede\u0107i mjesec"; }, get$nextPageTooltip() { return "Sljede\u0107a stranica"; }, get$okButtonLabel() { return "U REDU"; }, get$openAppDrawerTooltip() { return "Otvaranje izbornika za navigaciju"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow od otprilike $rowCount"; }, get$popupMenuLabel() { return "Sko\u010dni izbornik"; }, get$postMeridiemAbbreviation() { return "popodne"; }, get$previousMonthTooltip() { return "Prethodni mjesec"; }, get$previousPageTooltip() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel() { return "Osvje\u017ei"; }, get$remainingTextFieldCharacterCountFew() { return "Preostala su $remainingCount znaka"; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Preostao je 1 znak"; }, get$remainingTextFieldCharacterCountOther() { return "Preostalo je $remainingCount znakova"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Pomakni prema dolje"; }, get$reorderItemToEnd() { return "Premjesti na kraj"; }, get$reorderItemToStart() { return "Premjesti na po\u010detak"; }, get$reorderItemUp() { return "Pomakni prema gore"; }, get$rowsPerPageTitle() { return "Redaka po stranici:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Odaberite godinu"; }, get$selectedRowCountTitleFew() { return "Odabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Odabrana je jedna stavka"; }, get$selectedRowCountTitleOther() { return "Odabrano je $selectedRowCount stavki"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Prikaz izbornika"; }, get$tabLabelRaw() { return "Kartica $tabIndex od $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "ODABERITE VRIJEME"; }, get$timePickerHourLabel() { return "Sat"; }, get$timePickerHourModeAnnouncement() { return "Odaberite sate"; }, get$timePickerInputHelpText() { return "UNESITE VRIJEME"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Odaberite minute"; } }; A.MaterialLocalizationHu.prototype = { get$alertDialogLabel() { return "\xc9rtes\xedt\xe9s"; }, get$anteMeridiemAbbreviation() { return "de."; }, get$backButtonTooltip() { return "Vissza"; }, get$calendarModeButtonLabel() { return "V\xe1lt\xe1s napt\xe1rra"; }, get$cancelButtonLabel() { return "M\xc9GSE"; }, get$collapsedIconTapHint() { return "Kibont\xe1s"; }, get$dateHelpText() { return "\xe9\xe9\xe9\xe9. hh. nn."; }, get$dateInputLabel() { return "Adja meg a d\xe1tumot"; }, get$dateOutOfRangeLabel() { return "Tartom\xe1nyon k\xedv\xfcl."; }, get$datePickerHelpText() { return "D\xc1TUM KIV\xc1LASZT\xc1SA"; }, get$dialModeButtonLabel() { return "V\xe1lt\xe1s id\u0151pontv\xe1laszt\xf3 m\xf3dra"; }, get$dialogLabel() { return "P\xe1rbesz\xe9dablak"; }, get$drawerLabel() { return "Navig\xe1ci\xf3s men\xfc"; }, get$expandedIconTapHint() { return "\xd6sszecsuk\xe1s"; }, get$firstPageTooltip() { return "Els\u0151 oldal"; }, get$inputDateModeButtonLabel() { return "V\xe1lt\xe1s bevitelre"; }, get$inputTimeModeButtonLabel() { return "V\xe1lt\xe1s sz\xf6vegbeviteli m\xf3dra"; }, get$invalidDateFormatLabel() { return "\xc9rv\xe9nytelen form\xe1tum."; }, get$invalidTimeLabel() { return "\xc9rv\xe9nyes form\xe1tumban adja meg az id\u0151t"; }, get$lastPageTooltip() { return "Utols\xf3 oldal"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenc"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenc"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencek"; }, get$modalBarrierDismissLabel() { return "Elvet\xe9s"; }, get$nextMonthTooltip() { return "K\xf6vetkez\u0151 h\xf3nap"; }, get$nextPageTooltip() { return "K\xf6vetkez\u0151 oldal"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Navig\xe1ci\xf3s men\xfc megnyit\xe1sa"; }, get$pageRowsInfoTitleRaw() { return "$rowCount/$firstRow\u2013$lastRow."; }, get$pageRowsInfoTitleApproximateRaw() { return "K\xf6r\xfclbel\xfcl $rowCount/$firstRow\u2013$lastRow."; }, get$popupMenuLabel() { return "El\u0151ugr\xf3 men\xfc"; }, get$postMeridiemAbbreviation() { return "du."; }, get$previousMonthTooltip() { return "El\u0151z\u0151 h\xf3nap"; }, get$previousPageTooltip() { return "El\u0151z\u0151 oldal"; }, get$refreshIndicatorSemanticLabel() { return "Friss\xedt\xe9s"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 karakter maradt"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount karakter maradt"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\xc1thelyez\xe9s lefel\xe9"; }, get$reorderItemToEnd() { return "\xc1thelyez\xe9s a v\xe9g\xe9re"; }, get$reorderItemToStart() { return "\xc1thelyez\xe9s az elej\xe9re"; }, get$reorderItemUp() { return "\xc1thelyez\xe9s felfel\xe9"; }, get$rowsPerPageTitle() { return "Oldalank\xe9nti sorsz\xe1m:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "V\xe1lassza ki az \xe9vet"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 elem kiv\xe1lasztva"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elem kiv\xe1lasztva"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Men\xfc megjelen\xedt\xe9se"; }, get$tabLabelRaw() { return "$tabCount/$tabIndex. lap"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "ID\u0150PONT KIV\xc1LASZT\xc1SA"; }, get$timePickerHourLabel() { return "\xd3ra"; }, get$timePickerHourModeAnnouncement() { return "\xd3ra kiv\xe1laszt\xe1sa"; }, get$timePickerInputHelpText() { return "ID\u0150PONT MEGAD\xc1SA"; }, get$timePickerMinuteLabel() { return "Perc"; }, get$timePickerMinuteModeAnnouncement() { return "Perc kiv\xe1laszt\xe1sa"; } }; A.MaterialLocalizationHy.prototype = { get$alertDialogLabel() { return "\u053e\u0561\u0576\u0578\u0582\u0581\u0578\u0582\u0574"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0540\u0565\u057f"; }, get$calendarModeButtonLabel() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0585\u0580\u0561\u0581\u0578\u0582\u0575\u0581\u056b\u0576"; }, get$cancelButtonLabel() { return "\u0549\u0535\u0542\u0531\u0550\u053f\u0535\u053c"; }, get$collapsedIconTapHint() { return "\u053e\u0561\u057e\u0561\u056c\u0565\u056c"; }, get$dateHelpText() { return "\u0585\u0585.\u0561\u0561.\u057f\u057f\u057f\u057f"; }, get$dateInputLabel() { return "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u056c \u0561\u0574\u057d\u0561\u0569\u056b\u057e"; }, get$dateOutOfRangeLabel() { return "\u0539\u0578\u0582\u0575\u056c\u0561\u057f\u0580\u0565\u056c\u056b \u0568\u0576\u0564\u0563\u0580\u056f\u0578\u0582\u0575\u0569\u056b\u0581 \u0564\u0578\u0582\u0580\u057d \u0567\u0589"; }, get$datePickerHelpText() { return "\u0538\u0546\u054f\u0550\u0535\u053c \u0531\u0544\u054d\u0531\u0539\u053b\u054e"; }, get$dialModeButtonLabel() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0569\u057e\u0565\u0580\u056b \u0568\u0576\u057f\u0580\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$dialogLabel() { return "\u0535\u0580\u056f\u056d\u0578\u057d\u0578\u0582\u0569\u0575\u0561\u0576 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576"; }, get$drawerLabel() { return "\u0546\u0561\u057e\u056b\u0563\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"; }, get$expandedIconTapHint() { return "\u053e\u0561\u056c\u0565\u056c"; }, get$firstPageTooltip() { return "\u0531\u057c\u0561\u057b\u056b\u0576 \u0567\u057b"; }, get$inputDateModeButtonLabel() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0576\u0565\u0580\u0561\u056e\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$inputTimeModeButtonLabel() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u057f\u0565\u0584\u057d\u057f\u056b \u0574\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$invalidDateFormatLabel() { return "\u0541\u0587\u0561\u0579\u0561\u0583\u0576 \u0561\u0576\u057e\u0561\u057e\u0565\u0580 \u0567\u0589"; }, get$invalidTimeLabel() { return "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u0584 \u057e\u0561\u057e\u0565\u0580 \u056a\u0561\u0574"; }, get$lastPageTooltip() { return "\u054e\u0565\u0580\u057b\u056b\u0576 \u0567\u057b"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u056c\u056b\u0581\u0565\u0576\u0566\u056b\u0561"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u056c\u056b\u0581\u0565\u0576\u0566\u056b\u0561"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0531\u0580\u057f\u0578\u0576\u0561\u0563\u0580\u0565\u0580"; }, get$modalBarrierDismissLabel() { return "\u0553\u0561\u056f\u0565\u056c"; }, get$nextMonthTooltip() { return "\u0540\u0561\u057b\u0578\u0580\u0564 \u0561\u0574\u056b\u057d"; }, get$nextPageTooltip() { return "\u0540\u0561\u057b\u0578\u0580\u0564 \u0567\u057b"; }, get$okButtonLabel() { return "\u0535\u0572\u0561\u057e"; }, get$openAppDrawerTooltip() { return "\u0532\u0561\u0581\u0565\u056c \u0576\u0561\u057e\u056b\u0563\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow $rowCount-\u056b\u0581"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0574\u0578\u057f\u0561\u057e\u0578\u0580\u0561\u057a\u0565\u057d $rowCount-\u056b\u0581"; }, get$popupMenuLabel() { return "\u0535\u056c\u0576\u0578\u0572 \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0546\u0561\u056d\u0578\u0580\u0564 \u0561\u0574\u056b\u057d"; }, get$previousPageTooltip() { return "\u0546\u0561\u056d\u0578\u0580\u0564 \u0567\u057b"; }, get$refreshIndicatorSemanticLabel() { return "\u0539\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c"; }, get$remainingTextFieldCharacterCountFew() { return "\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountMany() { return "\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountOne() { return "\u0544\u0576\u0561\u0581\u0565\u056c \u0567 1 \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountOther() { return "\u0544\u0576\u0561\u0581\u0565\u056c \u0567 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "\u0546\u056b\u0577\u056b \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u056f\u0561"; }, get$reorderItemDown() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u0576\u0565\u0580\u0584\u0587"; }, get$reorderItemToEnd() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057e\u0565\u0580\u057b"; }, get$reorderItemToStart() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057d\u056f\u056b\u0566\u0562"; }, get$reorderItemUp() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057e\u0565\u0580\u0587"; }, get$rowsPerPageTitle() { return "\u0544\u0565\u056f \u0567\u057b\u056b \u057f\u0578\u0572\u0565\u0580\u0568\u055d"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0538\u0576\u057f\u0580\u0565\u056c \u057f\u0561\u0580\u056b\u0576"; }, get$selectedRowCountTitleFew() { return "\u0538\u0576\u057f\u0580\u057e\u0561\u056e \u0567 $selectedRowCount \u0585\u0562\u0575\u0565\u056f\u057f"; }, get$selectedRowCountTitleMany() { return "\u0538\u0576\u057f\u0580\u057e\u0561\u056e \u0567 $selectedRowCount \u0585\u0562\u0575\u0565\u056f\u057f"; }, get$selectedRowCountTitleOne() { return "\u0538\u0576\u057f\u0580\u057e\u0565\u056c \u0567 1 \u057f\u0561\u0580\u0580"; }, get$selectedRowCountTitleOther() { return "\u0538\u0576\u057f\u0580\u057e\u0565\u056c \u0567 $selectedRowCount \u057f\u0561\u0580\u0580"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u054f\u0578\u0572\u0565\u0580\u0568 \u0568\u0576\u057f\u0580\u057e\u0561\u056e \u0579\u0565\u0576"; }, get$showMenuTooltip() { return "\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"; }, get$tabLabelRaw() { return "\u0546\u0565\u0580\u0564\u056b\u0580 $tabIndex\u055d $tabCount-\u056b\u0581"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0538\u0546\u054f\u0550\u0535\u0554 \u053a\u0531\u0544\u0538"; }, get$timePickerHourLabel() { return "\u053a\u0561\u0574"; }, get$timePickerHourModeAnnouncement() { return "\u0538\u0576\u057f\u0580\u0565\u0584 \u056a\u0561\u0574\u0568"; }, get$timePickerInputHelpText() { return "\u0544\u0548\u0552\u054f\u0554\u0531\u0533\u0550\u0535\u0554 \u053a\u0531\u0544\u0538"; }, get$timePickerMinuteLabel() { return "\u0550\u0578\u057a\u0565"; }, get$timePickerMinuteModeAnnouncement() { return "\u0538\u0576\u057f\u0580\u0565\u0584 \u0580\u0578\u057a\u0565\u0576\u0565\u0580\u0568"; } }; A.MaterialLocalizationId.prototype = { get$alertDialogLabel() { return "Notifikasi"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Kembali"; }, get$calendarModeButtonLabel() { return "Beralih ke kalender"; }, get$cancelButtonLabel() { return "BATAL"; }, get$collapsedIconTapHint() { return "Luaskan"; }, get$dateHelpText() { return "hh/bb/tttt"; }, get$dateInputLabel() { return "Masukkan Tanggal"; }, get$dateOutOfRangeLabel() { return "Di luar rentang."; }, get$datePickerHelpText() { return "PILIH TANGGAL"; }, get$dialModeButtonLabel() { return "Beralih ke mode tampilan jam"; }, get$dialogLabel() { return "Dialog"; }, get$drawerLabel() { return "Menu navigasi"; }, get$expandedIconTapHint() { return "Ciutkan"; }, get$firstPageTooltip() { return "Halaman pertama"; }, get$inputDateModeButtonLabel() { return "Beralih ke masukan"; }, get$inputTimeModeButtonLabel() { return "Beralih ke mode input teks"; }, get$invalidDateFormatLabel() { return "Format tidak valid."; }, get$invalidTimeLabel() { return "Masukkan waktu yang valid"; }, get$lastPageTooltip() { return "Halaman terakhir"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisensi"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisensi"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lisensi"; }, get$modalBarrierDismissLabel() { return "Tutup"; }, get$nextMonthTooltip() { return "Bulan berikutnya"; }, get$nextPageTooltip() { return "Halaman berikutnya"; }, get$okButtonLabel() { return "OKE"; }, get$openAppDrawerTooltip() { return "Buka menu navigasi"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow dari $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstda; }, get$popupMenuLabel() { return "Menu pop-up"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Bulan sebelumnya"; }, get$previousPageTooltip() { return "Halaman sebelumnya"; }, get$refreshIndicatorSemanticLabel() { return "Memuat ulang"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Sisa 1 karakter"; }, get$remainingTextFieldCharacterCountOther() { return "Sisa $remainingCount karakter"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Turunkan"; }, get$reorderItemToEnd() { return "Pindahkan ke akhir"; }, get$reorderItemToStart() { return "Pindahkan ke awal"; }, get$reorderItemUp() { return "Naikkan"; }, get$rowsPerPageTitle() { return "Baris per halaman:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Pilih tahun"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item dipilih"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount item dipilih"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Tampilkan menu"; }, get$tabLabelRaw() { return "Tab $tabIndex dari $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "PILIH WAKTU"; }, get$timePickerHourLabel() { return "Jam"; }, get$timePickerHourModeAnnouncement() { return "Pilih jam"; }, get$timePickerInputHelpText() { return "MASUKKAN WAKTU"; }, get$timePickerMinuteLabel() { return "Menit"; }, get$timePickerMinuteModeAnnouncement() { return "Pilih menit"; } }; A.MaterialLocalizationIs.prototype = { get$alertDialogLabel() { return "Tilkynning"; }, get$anteMeridiemAbbreviation() { return "f.h."; }, get$backButtonTooltip() { return "Til baka"; }, get$calendarModeButtonLabel() { return "Skipta yfir \xed dagatal"; }, get$cancelButtonLabel() { return "H\xc6TTA"; }, get$collapsedIconTapHint() { return "St\xe6kka"; }, get$dateHelpText() { return "dd.mm.\xe1\xe1\xe1\xe1"; }, get$dateInputLabel() { return "Sl\xe1 inn dagsetningu"; }, get$dateOutOfRangeLabel() { return "Utan svi\xf0s."; }, get$datePickerHelpText() { return "VELJA DAGSETNINGU"; }, get$dialModeButtonLabel() { return "Skiptu yfir \xed sk\xedfuval"; }, get$dialogLabel() { return "Gluggi"; }, get$drawerLabel() { return "Yfirlitsvalmynd"; }, get$expandedIconTapHint() { return "Draga saman"; }, get$firstPageTooltip() { return "Fyrsta s\xed\xf0a"; }, get$inputDateModeButtonLabel() { return "Skipta yfir \xed innsl\xe1tt"; }, get$inputTimeModeButtonLabel() { return "Skiptu yfir \xed textainnsl\xe1tt"; }, get$invalidDateFormatLabel() { return "\xd3gilt sni\xf0."; }, get$invalidTimeLabel() { return "F\xe6r\xf0u inn gildan t\xedma"; }, get$lastPageTooltip() { return "S\xed\xf0asta s\xed\xf0a"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 leyfi"; }, get$licensesPackageDetailTextOther() { return "$licenseCount leyfi"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Leyfi"; }, get$modalBarrierDismissLabel() { return "Hunsa"; }, get$nextMonthTooltip() { return "N\xe6sti m\xe1nu\xf0ur"; }, get$nextPageTooltip() { return "N\xe6sta s\xed\xf0a"; }, get$okButtonLabel() { return "\xcd lagi"; }, get$openAppDrawerTooltip() { return "Opna yfirlitsvalmynd"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow af $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow af um \xfea\xf0 bil $rowCount"; }, get$popupMenuLabel() { return "Sprettivalmynd"; }, get$postMeridiemAbbreviation() { return "e.h."; }, get$previousMonthTooltip() { return "Fyrri m\xe1nu\xf0ur"; }, get$previousPageTooltip() { return "Fyrri s\xed\xf0a"; }, get$refreshIndicatorSemanticLabel() { return "Endurn\xfdja"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 stafur eftir"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount stafir eftir"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "F\xe6ra ni\xf0ur"; }, get$reorderItemToEnd() { return "F\xe6ra aftast"; }, get$reorderItemToStart() { return "F\xe6ra fremst"; }, get$reorderItemUp() { return "F\xe6ra upp"; }, get$rowsPerPageTitle() { return "L\xednur \xe1 s\xed\xf0u:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Velja \xe1r"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 atri\xf0i vali\xf0"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount atri\xf0i valin"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "S\xfdna valmynd"; }, get$tabLabelRaw() { return "Flipi $tabIndex af $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "VELJA T\xcdMA"; }, get$timePickerHourLabel() { return "Klukkustund"; }, get$timePickerHourModeAnnouncement() { return "Velja klukkustundir"; }, get$timePickerInputHelpText() { return "F\xc6RA INN T\xcdMA"; }, get$timePickerMinuteLabel() { return "M\xedn\xfata"; }, get$timePickerMinuteModeAnnouncement() { return "Velja m\xedn\xfatur"; } }; A.MaterialLocalizationIt.prototype = { get$alertDialogLabel() { return "Avviso"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Indietro"; }, get$calendarModeButtonLabel() { return "Passa al calendario"; }, get$cancelButtonLabel() { return "ANNULLA"; }, get$collapsedIconTapHint() { return "Espandi"; }, get$dateHelpText() { return "mm/gg/aaaa"; }, get$dateInputLabel() { return "Inserisci data"; }, get$dateOutOfRangeLabel() { return "Fuori intervallo."; }, get$datePickerHelpText() { return "SELEZIONA DATA"; }, get$dialModeButtonLabel() { return "Passa alla modalit\xe0 selettore del quadrante"; }, get$dialogLabel() { return "Finestra di dialogo"; }, get$drawerLabel() { return "Menu di navigazione"; }, get$expandedIconTapHint() { return "Comprimi"; }, get$firstPageTooltip() { return "Prima pagina"; }, get$inputDateModeButtonLabel() { return "Passa alla modalit\xe0 di immissione"; }, get$inputTimeModeButtonLabel() { return "Passa alla modalit\xe0 immissione testo"; }, get$invalidDateFormatLabel() { return "Formato non valido."; }, get$invalidTimeLabel() { return "Inserisci un orario valido"; }, get$lastPageTooltip() { return "Ultima pagina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenza"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenze"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenze"; }, get$modalBarrierDismissLabel() { return "Ignora"; }, get$nextMonthTooltip() { return "Mese successivo"; }, get$nextPageTooltip() { return "Pagina successiva"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Apri il menu di navigazione"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow di $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow di circa $rowCount"; }, get$popupMenuLabel() { return "Menu popup"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Mese precedente"; }, get$previousPageTooltip() { return "Pagina precedente"; }, get$refreshIndicatorSemanticLabel() { return "Aggiorna"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 carattere rimanente"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount caratteri rimanenti"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Sposta gi\xf9"; }, get$reorderItemToEnd() { return "Sposta alla fine"; }, get$reorderItemToStart() { return "Sposta all'inizio"; }, get$reorderItemUp() { return "Sposta su"; }, get$rowsPerPageTitle() { return "Righe per pagina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Seleziona anno"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 elemento selezionato"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elementi selezionati"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Mostra il menu"; }, get$tabLabelRaw() { return "Scheda $tabIndex di $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SELEZIONA L'ORA"; }, get$timePickerHourLabel() { return "Ora"; }, get$timePickerHourModeAnnouncement() { return "Seleziona le ore"; }, get$timePickerInputHelpText() { return "INSERISCI L'ORA"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Seleziona i minuti"; } }; A.MaterialLocalizationJa.prototype = { get$alertDialogLabel() { return "\u901a\u77e5"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u623b\u308b"; }, get$calendarModeButtonLabel() { return "\u30ab\u30ec\u30f3\u30c0\u30fc\u306b\u5207\u308a\u66ff\u3048"; }, get$cancelButtonLabel() { return "\u30ad\u30e3\u30f3\u30bb\u30eb"; }, get$collapsedIconTapHint() { return "\u5c55\u958b"; }, get$dateHelpText() { return "yyyy/mm/dd"; }, get$dateInputLabel() { return "\u65e5\u4ed8\u3092\u5165\u529b"; }, get$dateOutOfRangeLabel() { return "\u7bc4\u56f2\u5916\u3067\u3059\u3002"; }, get$datePickerHelpText() { return "\u65e5\u4ed8\u306e\u9078\u629e"; }, get$dialModeButtonLabel() { return "\u30c0\u30a4\u30e4\u30eb\u9078\u629e\u30c4\u30fc\u30eb \u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u3048\u307e\u3059"; }, get$dialogLabel() { return "\u30c0\u30a4\u30a2\u30ed\u30b0"; }, get$drawerLabel() { return "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc"; }, get$expandedIconTapHint() { return "\u6298\u308a\u305f\u305f\u3080"; }, get$firstPageTooltip() { return "\u6700\u521d\u306e\u30da\u30fc\u30b8"; }, get$inputDateModeButtonLabel() { return "\u5165\u529b\u306b\u5207\u308a\u66ff\u3048"; }, get$inputTimeModeButtonLabel() { return "\u30c6\u30ad\u30b9\u30c8\u5165\u529b\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u3048\u307e\u3059"; }, get$invalidDateFormatLabel() { return "\u5f62\u5f0f\u304c\u7121\u52b9\u3067\u3059\u3002"; }, get$invalidTimeLabel() { return "\u6709\u52b9\u306a\u6642\u523b\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044"; }, get$lastPageTooltip() { return "\u6700\u5f8c\u306e\u30da\u30fc\u30b8"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u30e9\u30a4\u30bb\u30f3\u30b9: 1 \u4ef6"; }, get$licensesPackageDetailTextOther() { return "\u30e9\u30a4\u30bb\u30f3\u30b9: $licenseCount \u4ef6"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u30e9\u30a4\u30bb\u30f3\u30b9"; }, get$modalBarrierDismissLabel() { return "\u9589\u3058\u308b"; }, get$nextMonthTooltip() { return "\u6765\u6708"; }, get$nextPageTooltip() { return "\u6b21\u306e\u30da\u30fc\u30b8"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f"; }, get$pageRowsInfoTitleRaw() { return "$firstRow - $lastRow \u884c\uff08\u5408\u8a08 $rowCount \u884c\uff09"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow \u884c\uff08\u5408\u8a08\u7d04 $rowCount \u884c\uff09"; }, get$popupMenuLabel() { return "\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7 \u30e1\u30cb\u30e5\u30fc"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u524d\u6708"; }, get$previousPageTooltip() { return "\u524d\u306e\u30da\u30fc\u30b8"; }, get$refreshIndicatorSemanticLabel() { return "\u66f4\u65b0"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u6b8b\u308a 1 \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"; }, get$remainingTextFieldCharacterCountOther() { return "\u6b8b\u308a $remainingCount \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u4e0b\u306b\u79fb\u52d5"; }, get$reorderItemToEnd() { return "\u6700\u5f8c\u306b\u79fb\u52d5"; }, get$reorderItemToStart() { return "\u5148\u982d\u306b\u79fb\u52d5"; }, get$reorderItemUp() { return "\u4e0a\u306b\u79fb\u52d5"; }, get$rowsPerPageTitle() { return "\u30da\u30fc\u30b8\u3042\u305f\u308a\u306e\u884c\u6570:"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u5e74\u3092\u9078\u629e"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u4ef6\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u9078\u629e\u4e2d"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u4ef6\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u9078\u629e\u4e2d"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a"; }, get$tabLabelRaw() { return "\u30bf\u30d6: $tabIndex/$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u6642\u523b\u306e\u9078\u629e"; }, get$timePickerHourLabel() { return "\u6642"; }, get$timePickerHourModeAnnouncement() { return "\u6642\u9593\u3092\u9078\u629e"; }, get$timePickerInputHelpText() { return "\u6642\u523b\u306e\u5165\u529b"; }, get$timePickerMinuteLabel() { return "\u5206"; }, get$timePickerMinuteModeAnnouncement() { return "\u5206\u3092\u9078\u629e"; } }; A.MaterialLocalizationKa.prototype = { get$alertDialogLabel() { return "\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u10e3\u10d9\u10d0\u10dc"; }, get$calendarModeButtonLabel() { return "\u10d9\u10d0\u10da\u10d4\u10dc\u10d3\u10d0\u10e0\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$cancelButtonLabel() { return "\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0"; }, get$collapsedIconTapHint() { return "\u10d2\u10d0\u10e8\u10da\u10d0"; }, get$dateHelpText() { return "\u10d3\u10d3.\u10d7\u10d7.\u10ec\u10ec\u10ec\u10ec"; }, get$dateInputLabel() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8"; }, get$dateOutOfRangeLabel() { return "\u10d3\u10d8\u10d0\u10de\u10d0\u10d6\u10dd\u10dc\u10e1 \u10db\u10d8\u10e6\u10db\u10d0\u10d0."; }, get$datePickerHelpText() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8"; }, get$dialModeButtonLabel() { return "\u10ea\u10d8\u10e4\u10d4\u10e0\u10d1\u10da\u10d0\u10e2\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$dialogLabel() { return "\u10d3\u10d8\u10d0\u10da\u10dd\u10d2\u10d8"; }, get$drawerLabel() { return "\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10d8\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3"; }, get$expandedIconTapHint() { return "\u10e9\u10d0\u10d9\u10d4\u10ea\u10d5\u10d0"; }, get$firstPageTooltip() { return "\u10de\u10d8\u10e0\u10d5\u10d4\u10da\u10d8 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$inputDateModeButtonLabel() { return "\u10e8\u10d4\u10e7\u10d5\u10d0\u10dc\u10d0\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$inputTimeModeButtonLabel() { return "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e8\u10d4\u10e7\u10d5\u10d0\u10dc\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$invalidDateFormatLabel() { return "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8 \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8\u10d0."; }, get$invalidTimeLabel() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10e1\u10ec\u10dd\u10e0\u10d8 \u10d3\u10e0\u10dd"; }, get$lastPageTooltip() { return "\u10d1\u10dd\u10da\u10dd \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d0"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d0"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d4\u10d1\u10d8"; }, get$modalBarrierDismissLabel() { return "\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"; }, get$nextMonthTooltip() { return "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d7\u10d5\u10d4"; }, get$nextPageTooltip() { return "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$okButtonLabel() { return "\u10d9\u10d0\u10e0\u10d2\u10d8"; }, get$openAppDrawerTooltip() { return "\u10e1\u10d0\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10dd \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow / $rowCount-\u10d3\u10d0\u10dc"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow / \u10d3\u10d0\u10d0\u10ee\u10da\u10dd\u10d4\u10d1\u10d8\u10d7 $rowCount-\u10d3\u10d0\u10dc"; }, get$popupMenuLabel() { return "\u10d0\u10db\u10dd\u10db\u10ee\u10e2\u10d0\u10e0\u10d8 \u10db\u10d4\u10dc\u10d8\u10e3"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u10ec\u10d8\u10dc\u10d0 \u10d7\u10d5\u10d4"; }, get$previousPageTooltip() { return "\u10ec\u10d8\u10dc\u10d0 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$refreshIndicatorSemanticLabel() { return "\u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u10d3\u10d0\u10e0\u10e9\u10d0 1 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"; }, get$remainingTextFieldCharacterCountOther() { return "\u10d3\u10d0\u10e0\u10e9\u10d0 $remainingCount \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u10e5\u10d5\u10d4\u10db\u10dd\u10d7 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemToEnd() { return "\u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemToStart() { return "\u10d3\u10d0\u10e1\u10d0\u10ec\u10e7\u10d8\u10e1\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemUp() { return "\u10d6\u10d4\u10db\u10dd\u10d7 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$rowsPerPageTitle() { return "\u10db\u10ec\u10d9\u10e0\u10d8\u10d5\u10d8 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d6\u10d4:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10ec\u10d4\u10da\u10d8"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 1 \u10d4\u10e0\u10d7\u10d4\u10e3\u10da\u10d8"; }, get$selectedRowCountTitleOther() { return "\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 $selectedRowCount \u10d4\u10e0\u10d7\u10d4\u10e3\u10da\u10d8"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"; }, get$tabLabelRaw() { return "\u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10d8 $tabIndex / $tabCount-\u10d3\u10d0\u10dc"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d3\u10e0\u10dd"; }, get$timePickerHourLabel() { return "\u10e1\u10d0\u10d0\u10d7\u10d8"; }, get$timePickerHourModeAnnouncement() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e1\u10d0\u10d0\u10d7\u10d4\u10d1\u10d8"; }, get$timePickerInputHelpText() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10d3\u10e0\u10dd"; }, get$timePickerMinuteLabel() { return "\u10ec\u10e3\u10d7\u10d8"; }, get$timePickerMinuteModeAnnouncement() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10ec\u10e3\u10d7\u10d4\u10d1\u10d8"; } }; A.MaterialLocalizationKk.prototype = { get$alertDialogLabel() { return "\u0414\u0430\u0431\u044b\u043b"; }, get$anteMeridiemAbbreviation() { return "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"; }, get$backButtonTooltip() { return "\u0410\u0440\u0442\u049b\u0430"; }, get$calendarModeButtonLabel() { return "\u041a\u04af\u043d\u0442\u0456\u0437\u0431\u0435\u0433\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$cancelButtonLabel() { return "\u0411\u0410\u0421 \u0422\u0410\u0420\u0422\u0423"; }, get$collapsedIconTapHint() { return "\u0416\u0430\u044e"; }, get$dateHelpText() { return "\u043a\u043a.\u0430\u0430.\u0436\u0436\u0436\u0436"; }, get$dateInputLabel() { return "\u041a\u04af\u043d\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443"; }, get$dateOutOfRangeLabel() { return "\u0410\u0443\u049b\u044b\u043c\u043d\u0430\u043d \u0442\u044bc."; }, get$datePickerHelpText() { return "\u041a\u04ae\u041d\u0414\u0406 \u0422\u0410\u04a2\u0414\u0410\u0423"; }, get$dialModeButtonLabel() { return "\u0422\u0430\u04a3\u0434\u0430\u0443 \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$dialogLabel() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u0440\u0435\u0437\u0435"; }, get$drawerLabel() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456"; }, get$expandedIconTapHint() { return "\u0416\u0438\u044e"; }, get$firstPageTooltip() { return "\u0411\u0456\u0440\u0456\u043d\u0448\u0456 \u0431\u0435\u0442"; }, get$inputDateModeButtonLabel() { return "\u041c\u04d9\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0443\u0433\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$inputTimeModeButtonLabel() { return "\u041c\u04d9\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0443 \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$invalidDateFormatLabel() { return "\u0424\u043e\u0440\u043c\u0430\u0442 \u0436\u0430\u0440\u0430\u043c\u0441\u044b\u0437."; }, get$invalidTimeLabel() { return "\u0416\u0430\u0440\u0430\u043c\u0434\u044b \u0443\u0430\u049b\u044b\u0442 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437."; }, get$lastPageTooltip() { return "\u0421\u043e\u04a3\u0493\u044b \u0431\u0435\u0442"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f\u043b\u0430\u0440"; }, get$modalBarrierDismissLabel() { return "\u0416\u0430\u0431\u0443"; }, get$nextMonthTooltip() { return "\u041a\u0435\u043b\u0435\u0441\u0456 \u0430\u0439"; }, get$nextPageTooltip() { return "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0435\u0442"; }, get$okButtonLabel() { return "\u0418\u04d9"; }, get$openAppDrawerTooltip() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456\u043d \u0430\u0448\u0443"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u0456\u0448\u0456\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0428\u0430\u043c\u0430\u043c\u0435\u043d $rowCount \u0456\u0448\u0456\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u049a\u0430\u043b\u049b\u044b\u043c\u0430\u043b\u044b \u0442\u0435\u0440\u0435\u0437\u0435 \u043c\u04d9\u0437\u0456\u0440\u0456"; }, get$postMeridiemAbbreviation() { return "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"; }, get$previousMonthTooltip() { return "\u04e8\u0442\u043a\u0435\u043d \u0430\u0439"; }, get$previousPageTooltip() { return "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0431\u0435\u0442"; }, get$refreshIndicatorSemanticLabel() { return "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440 \u049b\u0430\u043b\u043c\u0430\u0434\u044b"; }, get$reorderItemDown() { return "\u0422\u04e9\u043c\u0435\u043d\u0433\u0435 \u0436\u044b\u043b\u0436\u044b\u0442\u0443"; }, get$reorderItemToEnd() { return "\u0421\u043e\u04a3\u044b\u043d\u0430 \u04e9\u0442\u0443"; }, get$reorderItemToStart() { return "\u0411\u0430\u0441\u044b\u043d\u0430 \u04e9\u0442\u0443"; }, get$reorderItemUp() { return "\u0416\u043e\u0493\u0430\u0440\u044b\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443"; }, get$rowsPerPageTitle() { return "\u04d8\u0440 \u0431\u0435\u0442\u0442\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u0430\u0440 \u0441\u0430\u043d\u044b:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0416\u044b\u043b\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u04a3\u0434\u0430\u043b\u0434\u044b."; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u04a3\u0434\u0430\u043b\u0434\u044b."; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u0422\u0430\u0440\u043c\u0430\u049b \u0442\u0430\u04a3\u0434\u0430\u043b\u043c\u0430\u0493\u0430\u043d"; }, get$showMenuTooltip() { return "\u041c\u04d9\u0437\u0456\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443"; }, get$tabLabelRaw() { return "$tabCount/$tabIndex \u049b\u043e\u0439\u044b\u043d\u0434\u044b"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0423\u0410\u049a\u042b\u0422\u0422\u042b \u0422\u0410\u04a2\u0414\u0410\u04a2\u042b\u0417"; }, get$timePickerHourLabel() { return "\u0421\u0430\u0493\u0430\u0442"; }, get$timePickerHourModeAnnouncement() { return "\u0421\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437"; }, get$timePickerInputHelpText() { return "\u0423\u0410\u049a\u042b\u0422\u0422\u042b \u0415\u041d\u0413\u0406\u0417\u0406\u04a2\u0406\u0417"; }, get$timePickerMinuteLabel() { return "M\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement() { return "\u041c\u0438\u043d\u0443\u0442\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437"; } }; A.MaterialLocalizationKm.prototype = { get$alertDialogLabel() { return "\u1787\u17bc\u1793\u178a\u17c6\u178e\u17b9\u1784"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u1790\u1799\u1780\u17d2\u179a\u17c4\u1799"; }, get$calendarModeButtonLabel() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1794\u17d2\u179a\u178f\u17b7\u1791\u17b7\u1793"; }, get$cancelButtonLabel() { return "\u1794\u17c4\u17c7\u1794\u1784\u17cb"; }, get$collapsedIconTapHint() { return "\u1796\u1784\u17d2\u179a\u17b8\u1780"; }, get$dateHelpText() { return "\u1790\u17d2\u1784\u17c3/\u1781\u17c2/\u1786\u17d2\u1793\u17b6\u17c6"; }, get$dateInputLabel() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17b6\u179b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791"; }, get$dateOutOfRangeLabel() { return "\u1780\u17d2\u179a\u17c5\u1785\u1793\u17d2\u179b\u17c4\u17c7\u17d4"; }, get$datePickerHelpText() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1780\u17b6\u179b\u200b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791"; }, get$dialModeButtonLabel() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u1798\u17bb\u1781\u1784\u17b6\u179a\u1795\u17d2\u1791\u17b6\u17c6\u1784\u200b\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u179b\u17c1\u1781"; }, get$dialogLabel() { return "\u1794\u17d2\u179a\u17a2\u1794\u17cb"; }, get$drawerLabel() { return "\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"; }, get$expandedIconTapHint() { return "\u1794\u1784\u17d2\u179a\u17bd\u1798"; }, get$firstPageTooltip() { return "\u1791\u17c6\u1796\u17d0\u179a\u200b\u178a\u17c6\u1794\u17bc\u1784"; }, get$inputDateModeButtonLabel() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1780\u17b6\u179a\u1794\u1789\u17d2\u1785\u17bc\u179b"; }, get$inputTimeModeButtonLabel() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1798\u17bb\u1781\u1784\u17b6\u179a\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u17a2\u1780\u17d2\u179f\u179a"; }, get$invalidDateFormatLabel() { return "\u1791\u1798\u17d2\u179a\u1784\u17cb\u1798\u17b7\u1793\u200b\u178f\u17d2\u179a\u17b9\u1798\u178f\u17d2\u179a\u17bc\u179c\u1791\u17c1\u17d4"; }, get$invalidTimeLabel() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6\u200b\u178a\u17c2\u179b\u200b\u178f\u17d2\u179a\u17b9\u1798\u178f\u17d2\u179a\u17bc\u179c"; }, get$lastPageTooltip() { return "\u1791\u17c6\u1796\u17d0\u179a\u200b\u1785\u17bb\u1784\u200b\u1780\u17d2\u179a\u17c4\u1799"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e 1"; }, get$licensesPackageDetailTextOther() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e $licenseCount"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e"; }, get$modalBarrierDismissLabel() { return "\u1785\u17d2\u179a\u17b6\u1793\u200b\u1785\u17c4\u179b"; }, get$nextMonthTooltip() { return "\u1781\u17c2\u200b\u200b\u1780\u17d2\u179a\u17c4\u1799"; }, get$nextPageTooltip() { return "\u1791\u17c6\u1796\u17d0\u179a\u1794\u1793\u17d2\u1791\u17b6\u1794\u17cb"; }, get$okButtonLabel() { return "\u1799\u179b\u17cb\u1796\u17d2\u179a\u1798"; }, get$openAppDrawerTooltip() { return "\u1794\u17be\u1780\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b\u1794\u17d2\u179a\u17a0\u17c2\u179b $rowCount"; }, get$popupMenuLabel() { return "\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u200b\u179b\u17c4\u178f\u200b\u17a1\u17be\u1784"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u1781\u17c2\u1798\u17bb\u1793"; }, get$previousPageTooltip() { return "\u1791\u17c6\u1796\u17d0\u179a\u1798\u17bb\u1793"; }, get$refreshIndicatorSemanticLabel() { return "\u1795\u17d2\u1791\u17bb\u1780\u17a1\u17be\u1784\u179c\u17b7\u1789"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u1793\u17c5\u179f\u179b\u17cb\u200b 1 \u178f\u17bd\u200b\u1791\u17c0\u178f"; }, get$remainingTextFieldCharacterCountOther() { return "\u1793\u17c5\u179f\u179b\u17cb $remainingCount \u178f\u17bd\u200b\u1791\u17c0\u178f"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u200b\u1785\u17bb\u17c7\u200b\u1780\u17d2\u179a\u17c4\u1798"; }, get$reorderItemToEnd() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u1791\u17c5\u200b\u1785\u17c6\u178e\u17bb\u1785\u1794\u1789\u17d2\u1785\u1794\u17cb"; }, get$reorderItemToStart() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u1791\u17c5\u200b\u1785\u17c6\u178e\u17bb\u1785\u200b\u1785\u17b6\u1794\u17cb\u1795\u17d2\u178a\u17be\u1798"; }, get$reorderItemUp() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u200b\u17a1\u17be\u1784\u200b\u179b\u17be"; }, get$rowsPerPageTitle() { return "\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1780\u17d2\u1793\u17bb\u1784\u200b\u1798\u17bd\u1799\u200b\u1791\u17c6\u1796\u17d0\u179a\u17d6"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u1786\u17d2\u1793\u17b6\u17c6"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u1794\u17b6\u1793\u200b\u1787\u17d2\u179a\u17be\u179f\u200b\u179a\u17be\u179f\u200b\u1792\u17b6\u178f\u17bb 1"; }, get$selectedRowCountTitleOther() { return "\u1794\u17b6\u1793\u200b\u1787\u17d2\u179a\u17be\u179f\u200b\u179a\u17be\u179f\u200b\u1792\u17b6\u178f\u17bb $selectedRowCount"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799"; }, get$tabLabelRaw() { return "\u1795\u17d2\u1791\u17b6\u17c6\u1784 $tabIndex \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6"; }, get$timePickerHourLabel() { return "\u1798\u17c9\u17c4\u1784"; }, get$timePickerHourModeAnnouncement() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1798\u17c9\u17c4\u1784"; }, get$timePickerInputHelpText() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6"; }, get$timePickerMinuteLabel() { return "\u1793\u17b6\u1791\u17b8\u200b"; }, get$timePickerMinuteModeAnnouncement() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1793\u17b6\u1791\u17b8"; } }; A.MaterialLocalizationKn.prototype = { get$alertDialogLabel() { return "\u0c8e\u0c9a\u0ccd\u0c9a\u0cb0\u0cbf\u0c95\u0cc6"; }, get$anteMeridiemAbbreviation() { return "\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"; }, get$backButtonTooltip() { return "\u0cb9\u0cbf\u0c82\u0ca4\u0cbf\u0cb0\u0cc1\u0c97\u0cbf"; }, get$calendarModeButtonLabel() { return "\u0c95\u0ccd\u0caf\u0cbe\u0cb2\u0cc6\u0c82\u0ca1\u0cb0\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbf\u0cb8\u0cbf"; }, get$cancelButtonLabel() { return "\u0cb0\u0ca6\u0ccd\u0ca6\u0cc1\u0cae\u0cbe\u0ca1\u0cbf"; }, get$collapsedIconTapHint() { return "\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0ca6\u0cbf\u0ca8\u0cbe\u0c82\u0c95 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$dateOutOfRangeLabel() { return "\u0cb5\u0ccd\u0caf\u0cbe\u0caa\u0ccd\u0ca4\u0cbf\u0caf \u0cb9\u0cca\u0cb0\u0c97\u0cbf\u0ca6\u0cc6"; }, get$datePickerHelpText() { return "\u0ca6\u0cbf\u0ca8\u0cbe\u0c82\u0c95\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$dialModeButtonLabel() { return "\u0ca1\u0caf\u0cb2\u0ccd \u0caa\u0cbf\u0c95\u0cb0\u0ccd\u200c \u0cae\u0ccb\u0ca1\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbe\u0caf\u0cbf\u0cb8\u0cbf"; }, get$dialogLabel() { return "\u0ca1\u0cc8\u0cb2\u0cbe\u0c97\u0ccd"; }, get$drawerLabel() { return "\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1"; }, get$expandedIconTapHint() { return "\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cbf"; }, get$firstPageTooltip() { return "\u0cae\u0cca\u0ca6\u0cb2 \u0caa\u0cc1\u0c9f"; }, get$inputDateModeButtonLabel() { return "\u0c87\u0ca8\u0ccd\u200c\u0caa\u0cc1\u0c9f\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbf\u0cb8\u0cbf"; }, get$inputTimeModeButtonLabel() { return "\u0caa\u0ca0\u0ccd\u0caf \u0c87\u0ca8\u0ccd\u200c\u0caa\u0cc1\u0c9f\u0ccd \u0cae\u0ccb\u0ca1\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbe\u0caf\u0cbf\u0cb8\u0cbf"; }, get$invalidDateFormatLabel() { return "\u0c85\u0cae\u0cbe\u0ca8\u0ccd\u0caf\u0cb5\u0cbe\u0ca6 \u0cab\u0cbe\u0cb0\u0ccd\u0cae\u0ccd\u0caf\u0cbe\u0c9f\u0ccd."; }, get$invalidTimeLabel() { return "\u0cae\u0cbe\u0ca8\u0ccd\u0caf\u0cb5\u0cbe\u0ca6 \u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$lastPageTooltip() { return "\u0c95\u0cca\u0ca8\u0cc6\u0caf \u0caa\u0cc1\u0c9f"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf\u0c97\u0cb3\u0cc1"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf\u0c97\u0cb3\u0cc1"; }, get$modalBarrierDismissLabel() { return "\u0cb5\u0c9c\u0cbe\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf"; }, get$nextMonthTooltip() { return "\u0cae\u0cc1\u0c82\u0ca6\u0cbf\u0ca8 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1"; }, get$nextPageTooltip() { return "\u0cae\u0cc1\u0c82\u0ca6\u0cbf\u0ca8 \u0caa\u0cc1\u0c9f"; }, get$okButtonLabel() { return "\u0cb8\u0cb0\u0cbf"; }, get$openAppDrawerTooltip() { return "\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0cc6\u0cb0\u0cc6\u0caf\u0cbf\u0cb0\u0cbf"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0caa\u0cbe\u0caa\u0ccd\u0c85\u0caa\u0ccd \u0cae\u0cc6\u0ca8\u0cc1"; }, get$postMeridiemAbbreviation() { return "\u0cb8\u0c82\u0c9c\u0cc6"; }, get$previousMonthTooltip() { return "\u0cb9\u0cbf\u0c82\u0ca6\u0cbf\u0ca8 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1"; }, get$previousPageTooltip() { return "\u0cb9\u0cbf\u0c82\u0ca6\u0cbf\u0ca8 \u0caa\u0cc1\u0c9f"; }, get$refreshIndicatorSemanticLabel() { return "\u0cb0\u0cbf\u0cab\u0ccd\u0cb0\u0cc6\u0cb6\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0c85\u0c95\u0ccd\u0cb7\u0cb0 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0ca6\u0cc6"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0c85\u0c95\u0ccd\u0cb7\u0cb0\u0c97\u0cb3\u0cc1 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0cb5\u0cc6"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0c95\u0cc6\u0cb3\u0c97\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemToEnd() { return "\u0c95\u0cca\u0ca8\u0cc6\u0c97\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemToStart() { return "\u0caa\u0ccd\u0cb0\u0cbe\u0cb0\u0c82\u0cad\u0c95\u0ccd\u0c95\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemUp() { return "\u0cae\u0cc7\u0cb2\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$rowsPerPageTitle() { return "\u0caa\u0ccd\u0cb0\u0ca4\u0cbf \u0caa\u0cc1\u0c9f\u0c95\u0ccd\u0c95\u0cc6 \u0cb8\u0cbe\u0cb2\u0cc1\u0c97\u0cb3\u0cc1:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0cb5\u0cb0\u0ccd\u0cb7\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0c90\u0c9f\u0c82 \u0c86\u0caf\u0ccd\u0c95\u0cc6 \u0cae\u0cbe\u0ca1\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0c90\u0c9f\u0c82\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6 \u0cae\u0cbe\u0ca1\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0ccb\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$tabLabelRaw() { return "$tabCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf\u0ca8 $tabIndex \u0c9f\u0ccd\u0caf\u0cbe\u0cac\u0ccd"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$timePickerHourLabel() { return "\u0c97\u0c82\u0c9f\u0cc6"; }, get$timePickerHourModeAnnouncement() { return "\u0c97\u0c82\u0c9f\u0cc6\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$timePickerInputHelpText() { return "\u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$timePickerMinuteLabel() { return "\u0ca8\u0cbf\u0cae\u0cbf\u0cb7"; }, get$timePickerMinuteModeAnnouncement() { return "\u0ca8\u0cbf\u0cae\u0cbf\u0cb7\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; } }; A.MaterialLocalizationKo.prototype = { get$alertDialogLabel() { return "\uc54c\ub9bc"; }, get$anteMeridiemAbbreviation() { return "\uc624\uc804"; }, get$backButtonTooltip() { return "\ub4a4\ub85c"; }, get$calendarModeButtonLabel() { return "\uce98\ub9b0\ub354 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$cancelButtonLabel() { return "\ucde8\uc18c"; }, get$collapsedIconTapHint() { return "\ud3bc\uce58\uae30"; }, get$dateHelpText() { return "yyyy.mm.dd"; }, get$dateInputLabel() { return "\ub0a0\uc9dc \uc785\ub825"; }, get$dateOutOfRangeLabel() { return "\ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4."; }, get$datePickerHelpText() { return "\ub0a0\uc9dc \uc120\ud0dd"; }, get$dialModeButtonLabel() { return "\ub2e4\uc774\uc5bc \uc120\ud0dd \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$dialogLabel() { return "\ub300\ud654\uc0c1\uc790"; }, get$drawerLabel() { return "\ud0d0\uc0c9 \uba54\ub274"; }, get$expandedIconTapHint() { return "\uc811\uae30"; }, get$firstPageTooltip() { return "\uccab \ud398\uc774\uc9c0"; }, get$inputDateModeButtonLabel() { return "\uc785\ub825 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$inputTimeModeButtonLabel() { return "\ud14d\uc2a4\ud2b8 \uc785\ub825 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$invalidDateFormatLabel() { return "\ud615\uc2dd\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4."; }, get$invalidTimeLabel() { return "\uc720\ud6a8\ud55c \uc2dc\uac04\uc744 \uc785\ub825\ud558\uc138\uc694."; }, get$lastPageTooltip() { return "\ub9c8\uc9c0\ub9c9 \ud398\uc774\uc9c0"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\ub77c\uc774\uc120\uc2a4 1\uac1c"; }, get$licensesPackageDetailTextOther() { return "\ub77c\uc774\uc120\uc2a4 $licenseCount\uac1c"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\ub77c\uc774\uc120\uc2a4"; }, get$modalBarrierDismissLabel() { return "\ub2eb\uae30"; }, get$nextMonthTooltip() { return "\ub2e4\uc74c \ub2ec"; }, get$nextPageTooltip() { return "\ub2e4\uc74c \ud398\uc774\uc9c0"; }, get$okButtonLabel() { return "\ud655\uc778"; }, get$openAppDrawerTooltip() { return "\ud0d0\uc0c9 \uba54\ub274 \uc5f4\uae30"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\ud589 \uc911 $firstRow~$lastRow\ud589"; }, get$pageRowsInfoTitleApproximateRaw() { return "\uc57d $rowCount\ud589 \uc911 $firstRow~$lastRow\ud589"; }, get$popupMenuLabel() { return "\ud31d\uc5c5 \uba54\ub274"; }, get$postMeridiemAbbreviation() { return "\uc624\ud6c4"; }, get$previousMonthTooltip() { return "\uc9c0\ub09c\ub2ec"; }, get$previousPageTooltip() { return "\uc774\uc804 \ud398\uc774\uc9c0"; }, get$refreshIndicatorSemanticLabel() { return "\uc0c8\ub85c\uace0\uce68"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1\uc790 \ub0a8\uc74c"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount\uc790 \ub0a8\uc74c"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\uc544\ub798\ub85c \uc774\ub3d9"; }, get$reorderItemToEnd() { return "\ub05d\uc73c\ub85c \uc774\ub3d9"; }, get$reorderItemToStart() { return "\uc2dc\uc791\uc73c\ub85c \uc774\ub3d9"; }, get$reorderItemUp() { return "\uc704\ub85c \uc774\ub3d9"; }, get$rowsPerPageTitle() { return "\ud398\uc774\uc9c0\ub2f9 \ud589 \uc218:"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\uc5f0\ub3c4 \uc120\ud0dd"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\ud56d\ubaa9 1\uac1c \uc120\ud0dd\ub428"; }, get$selectedRowCountTitleOther() { return "\ud56d\ubaa9 $selectedRowCount\uac1c \uc120\ud0dd\ub428"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\uba54\ub274 \ud45c\uc2dc"; }, get$tabLabelRaw() { return "\ud0ed $tabCount\uac1c \uc911 $tabIndex\ubc88\uc9f8"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_5; }, get$timePickerDialHelpText() { return "\uc2dc\uac04 \uc120\ud0dd"; }, get$timePickerHourLabel() { return "\uc2dc\uac04"; }, get$timePickerHourModeAnnouncement() { return "\uc2dc\uac04 \uc120\ud0dd"; }, get$timePickerInputHelpText() { return "\uc2dc\uac04 \uc785\ub825"; }, get$timePickerMinuteLabel() { return "\ubd84"; }, get$timePickerMinuteModeAnnouncement() { return "\ubd84 \uc120\ud0dd"; } }; A.MaterialLocalizationKy.prototype = { get$alertDialogLabel() { return "\u042d\u0441\u043a\u0435\u0440\u0442\u04af\u04af"; }, get$anteMeridiemAbbreviation() { return "\u0442\u04af\u0448\u043a\u04e9 \u0447\u0435\u0439\u0438\u043d"; }, get$backButtonTooltip() { return "\u0410\u0440\u0442\u043a\u0430"; }, get$calendarModeButtonLabel() { return "\u0416\u044b\u043b\u043d\u0430\u0430\u043c\u0430\u0433\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u04a3\u0443\u0437"; }, get$cancelButtonLabel() { return "\u0416\u041e\u041a\u041a\u041e \u0427\u042b\u0413\u0410\u0420\u0423\u0423"; }, get$collapsedIconTapHint() { return "\u0416\u0430\u0439\u044b\u043f \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af"; }, get$dateHelpText() { return "\u043a\u043a.\u0430\u0430.\u0436\u0436\u0436\u0436"; }, get$dateInputLabel() { return "\u041a\u04af\u043d\u0434\u04af \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af"; }, get$dateOutOfRangeLabel() { return "\u0410\u0440\u0430\u043a\u0435\u0442 \u0447\u0435\u0433\u0438\u043d\u0435\u043d \u0442\u044b\u0448\u043a\u0430\u0440\u044b."; }, get$datePickerHelpText() { return "\u041a\u04ae\u041d\u0414\u04ae \u0422\u0410\u041d\u0414\u041e\u041e"; }, get$dialModeButtonLabel() { return "\u0422\u0435\u0440\u04af\u04af\u043d\u04af \u0442\u0430\u043d\u0434\u0430\u0433\u044b\u0447 \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u0443"; }, get$dialogLabel() { return "\u0414\u0438\u0430\u043b\u043e\u0433"; }, get$drawerLabel() { return "\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443"; }, get$expandedIconTapHint() { return "\u0416\u044b\u0439\u044b\u0448\u0442\u044b\u0440\u0443\u0443"; }, get$firstPageTooltip() { return "\u0411\u0438\u0440\u0438\u043d\u0447\u0438 \u0431\u0435\u0442"; }, get$inputDateModeButtonLabel() { return "\u0422\u0435\u0440\u0438\u043f \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u04a3\u0443\u0437"; }, get$inputTimeModeButtonLabel() { return "\u0422\u0435\u043a\u0441\u0442 \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u0443"; }, get$invalidDateFormatLabel() { return "\u0416\u0430\u0440\u0430\u043a\u0441\u044b\u0437 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel() { return "\u0423\u0431\u0430\u043a\u044b\u0442\u0442\u044b \u0442\u0443\u0443\u0440\u0430 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04a3\u04af\u0437"; }, get$lastPageTooltip() { return "\u0410\u043a\u044b\u0440\u043a\u044b \u0431\u0435\u0442"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0443\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0443\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0423\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440"; }, get$modalBarrierDismissLabel() { return "\u0416\u0430\u0431\u0443\u0443"; }, get$nextMonthTooltip() { return "\u041a\u0438\u0439\u0438\u043d\u043a\u0438 \u0430\u0439"; }, get$nextPageTooltip() { return "\u041a\u0438\u0439\u0438\u043d\u043a\u0438 \u0431\u0435\u0442"; }, get$okButtonLabel() { return "\u041c\u0430\u043a\u0443\u043b"; }, get$openAppDrawerTooltip() { return "\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443\u043d \u0430\u0447\u0443\u0443"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u0438\u0447\u0438\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0411\u043e\u043b\u0436\u043e\u043b \u043c\u0435\u043d\u0435\u043d $rowCount \u0438\u0447\u0438\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u041a\u0430\u043b\u043a\u044b\u043f \u0447\u044b\u0433\u0443\u0443\u0447\u0443 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation() { return "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d"; }, get$previousMonthTooltip() { return "\u041c\u0443\u0440\u0443\u043d\u043a\u0443 \u0430\u0439"; }, get$previousPageTooltip() { return "\u041c\u0443\u0440\u0443\u043d\u043a\u0443 \u0431\u0435\u0442"; }, get$refreshIndicatorSemanticLabel() { return "\u0416\u0430\u04a3\u044b\u0440\u0442\u0443\u0443"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0422\u04e9\u043c\u04e9\u043d \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemToEnd() { return "\u0410\u044f\u0433\u044b\u043d\u0430 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemToStart() { return "\u0411\u0430\u0448\u044b\u043d\u0430 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemUp() { return "\u0416\u043e\u0433\u043e\u0440\u0443 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$rowsPerPageTitle() { return "\u0411\u0438\u0440 \u0431\u0435\u0442\u0442\u0435 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u043b\u04af\u04af\u0447\u04af \u0441\u0430\u043f\u0442\u0430\u0440\u0434\u044b\u043d \u0441\u0430\u043d\u044b:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0416\u044b\u043b\u0434\u044b \u0442\u0430\u043d\u0434\u043e\u043e"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u043d\u0435\u0440\u0441\u0435 \u0442\u0430\u043d\u0434\u0430\u043b\u0434\u044b"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u043d\u0435\u0440\u0441\u0435 \u0442\u0430\u043d\u0434\u0430\u043b\u0434\u044b"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041c\u0435\u043d\u044e\u043d\u0443 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af"; }, get$tabLabelRaw() { return "$tabCount \u043a\u044b\u043d\u0430\u043b\u043c\u0430 \u0438\u0447\u0438\u043d\u0435\u043d $tabIndex"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0423\u0411\u0410\u041a\u042b\u0422 \u0422\u0410\u041d\u0414\u041e\u041e"; }, get$timePickerHourLabel() { return "\u0421\u0430\u0430\u0442"; }, get$timePickerHourModeAnnouncement() { return "\u0421\u0430\u0430\u0442\u0442\u044b \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437"; }, get$timePickerInputHelpText() { return "\u0423\u0411\u0410\u041a\u042b\u0422 \u041a\u0418\u0420\u0413\u0418\u0417\u04ae\u04ae"; }, get$timePickerMinuteLabel() { return "\u041c\u04af\u043d\u04e9\u0442"; }, get$timePickerMinuteModeAnnouncement() { return "\u041c\u04af\u043d\u04e9\u0442\u0442\u04e9\u0440\u0434\u04af \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437"; } }; A.MaterialLocalizationLo.prototype = { get$alertDialogLabel() { return "\u0e81\u0eb2\u0e99\u0ec0\u0e95\u0eb7\u0ead\u0e99"; }, get$anteMeridiemAbbreviation() { return "\u0e81\u0ec8\u0ead\u0e99\u0e97\u0ec8\u0ebd\u0e87"; }, get$backButtonTooltip() { return "\u0e81\u0eb1\u0e9a\u0e84\u0eb7\u0e99"; }, get$calendarModeButtonLabel() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0e9b\u0eb0\u0e95\u0eb4\u0e97\u0eb4\u0e99"; }, get$cancelButtonLabel() { return "\u0e8d\u0ebb\u0e81\u0ec0\u0ea5\u0eb5\u0e81"; }, get$collapsedIconTapHint() { return "\u0e82\u0eb0\u0eab\u0e8d\u0eb2\u0e8d"; }, get$dateHelpText() { return "\u0e94\u0e94/\u0ea7\u0ea7/\u0e9b\u0e9b\u0e9b\u0e9b"; }, get$dateInputLabel() { return "\u0ec3\u0eaa\u0ec8\u0ea7\u0eb1\u0e99\u0e97\u0eb5"; }, get$dateOutOfRangeLabel() { return "\u0ea2\u0eb9\u0ec8\u0e99\u0ead\u0e81\u0ec4\u0ea5\u0e8d\u0eb0."; }, get$datePickerHelpText() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ea7\u0eb1\u0e99\u0e97\u0eb5"; }, get$dialModeButtonLabel() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0ec3\u0e8a\u0ec9\u0ec2\u0edd\u0e94\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e95\u0ebb\u0ea7\u0ec0\u0ea5\u0e81"; }, get$dialogLabel() { return "\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"; }, get$drawerLabel() { return "\u0ec0\u0ea1\u0e99\u0eb9\u0e99\u0eb3\u0e97\u0eb2\u0e87"; }, get$expandedIconTapHint() { return "\u0eab\u0e8d\u0ecd\u0ec9\u0ec0\u0e82\u0ebb\u0ec9\u0eb2"; }, get$firstPageTooltip() { return "\u0edc\u0ec9\u0eb2\u0e97\u0eb3\u0ead\u0eb4\u0e94"; }, get$inputDateModeButtonLabel() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0e81\u0eb2\u0e99\u0e9b\u0ec9\u0ead\u0e99\u0e82\u0ecd\u0ec9\u0ea1\u0eb9\u0e99"; }, get$inputTimeModeButtonLabel() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0ec3\u0e8a\u0ec9\u0ec2\u0edd\u0e94\u0e9b\u0ec9\u0ead\u0e99\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"; }, get$invalidDateFormatLabel() { return "\u0eae\u0eb9\u0e9a\u0ec1\u0e9a\u0e9a\u0e9a\u0ecd\u0ec8\u0e96\u0eb7\u0e81\u0e95\u0ec9\u0ead\u0e87."; }, get$invalidTimeLabel() { return "\u0ea5\u0eb0\u0e9a\u0eb8\u0ec0\u0ea7\u0ea5\u0eb2\u0e97\u0eb5\u0ec8\u0e96\u0eb7\u0e81\u0e95\u0ec9\u0ead\u0e87"; }, get$lastPageTooltip() { return "\u0edc\u0ec9\u0eb2\u0eaa\u0eb8\u0e94\u0e97\u0ec9\u0eb2\u0e8d"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$modalBarrierDismissLabel() { return "\u0e9b\u0eb4\u0e94\u0ec4\u0ea7\u0ec9"; }, get$nextMonthTooltip() { return "\u0ec0\u0e94\u0eb7\u0ead\u0e99\u0edc\u0ec9\u0eb2"; }, get$nextPageTooltip() { return "\u0edc\u0ec9\u0eb2\u0e95\u0ecd\u0ec8\u0ec4\u0e9b"; }, get$okButtonLabel() { return "\u0e95\u0ebb\u0e81\u0ea5\u0ebb\u0e87"; }, get$openAppDrawerTooltip() { return "\u0ec0\u0e9b\u0eb5\u0e94\u0ec0\u0ea1\u0e99\u0eb9\u0e81\u0eb2\u0e99\u0e99\u0eb3\u0e97\u0eb2\u0e87"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0e88\u0eb2\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0e88\u0eb2\u0e81\u0e9b\u0eb0\u0ea1\u0eb2\u0e99 $rowCount"; }, get$popupMenuLabel() { return "\u0ec0\u0ea1\u0e99\u0eb9\u0e9b\u0eb1\u0ead\u0e9a\u0ead\u0eb1\u0e9a"; }, get$postMeridiemAbbreviation() { return "\u0eab\u0ebc\u0eb1\u0e87\u0e97\u0ec8\u0ebd\u0e87"; }, get$previousMonthTooltip() { return "\u0ec0\u0e94\u0eb7\u0ead\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$previousPageTooltip() { return "\u0edc\u0ec9\u0eb2\u0e81\u0ec8\u0ead\u0e99\u0edc\u0ec9\u0eb2"; }, get$refreshIndicatorSemanticLabel() { return "\u0ec2\u0eab\u0ebc\u0e94\u0e84\u0eb7\u0e99\u0ec3\u0edd\u0ec8"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 1 \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"; }, get$remainingTextFieldCharacterCountOther() { return "\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 $remainingCount \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ea5\u0ebb\u0e87"; }, get$reorderItemToEnd() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ec4\u0e9b\u0eaa\u0eb4\u0ec9\u0e99\u0eaa\u0eb8\u0e94"; }, get$reorderItemToStart() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ec4\u0e9b\u0ec0\u0ea5\u0eb5\u0ec8\u0ea1\u0e95\u0ebb\u0ec9\u0e99"; }, get$reorderItemUp() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0e82\u0eb6\u0ec9\u0e99"; }, get$rowsPerPageTitle() { return "\u0ec1\u0e96\u0ea7\u0e95\u0ecd\u0ec8\u0edc\u0ec9\u0eb2:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u200b\u0e9b\u0eb5"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81 1 \u0ea5\u0eb2\u0e8d\u0e81\u0eb2\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$selectedRowCountTitleOther() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81 $selectedRowCount \u0ea5\u0eb2\u0e8d\u0e81\u0eb2\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0eaa\u0eb0\u0ec1\u0e94\u0e87\u0ec0\u0ea1\u0e99\u0eb9"; }, get$tabLabelRaw() { return "\u0ec1\u0e96\u0e9a\u0e97\u0eb5 $tabIndex \u0e88\u0eb2\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ec0\u0ea7\u0ea5\u0eb2"; }, get$timePickerHourLabel() { return "\u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87"; }, get$timePickerHourModeAnnouncement() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ec2\u0ea1\u0e87"; }, get$timePickerInputHelpText() { return "\u0ea5\u0eb0\u0e9a\u0eb8\u0ec0\u0ea7\u0ea5\u0eb2"; }, get$timePickerMinuteLabel() { return "\u0e99\u0eb2\u0e97\u0eb5"; }, get$timePickerMinuteModeAnnouncement() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e99\u0eb2\u0e97\u0eb5"; } }; A.MaterialLocalizationLt.prototype = { get$alertDialogLabel() { return "\u012esp\u0117jimas"; }, get$anteMeridiemAbbreviation() { return "prie\u0161piet"; }, get$backButtonTooltip() { return "Atgal"; }, get$calendarModeButtonLabel() { return "Perjungti \u012f kalendori\u0173"; }, get$cancelButtonLabel() { return "AT\u0160AUKTI"; }, get$collapsedIconTapHint() { return "I\u0161skleisti"; }, get$dateHelpText() { return "yyyy/mm/dd/"; }, get$dateInputLabel() { return "\u012eveskite dat\u0105"; }, get$dateOutOfRangeLabel() { return "Nepatenka \u012f diapazon\u0105."; }, get$datePickerHelpText() { return "PASIRINKITE DAT\u0104"; }, get$dialModeButtonLabel() { return "Perjungti \u012f ciferblato parinkiklio re\u017eim\u0105"; }, get$dialogLabel() { return "Dialogo langas"; }, get$drawerLabel() { return "Nar\u0161ymo meniu"; }, get$expandedIconTapHint() { return "Sutraukti"; }, get$firstPageTooltip() { return "Pirmas puslapis"; }, get$inputDateModeButtonLabel() { return "Perjungti \u012f \u012fvest\u012f"; }, get$inputTimeModeButtonLabel() { return "Perjungti \u012f teksto \u012fvesties re\u017eim\u0105"; }, get$invalidDateFormatLabel() { return "Netinkamas formatas."; }, get$invalidTimeLabel() { return "\u012eveskite tinkam\u0105 laik\u0105"; }, get$lastPageTooltip() { return "Paskutinis puslapis"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licencijos"; }, get$licensesPackageDetailTextMany() { return "$licenseCount licencijos"; }, get$licensesPackageDetailTextOne() { return "1 licencija"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licencij\u0173"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencijos"; }, get$modalBarrierDismissLabel() { return "Atsisakyti"; }, get$nextMonthTooltip() { return "Kitas m\u0117nuo"; }, get$nextPageTooltip() { return "Kitas puslapis"; }, get$okButtonLabel() { return "GERAI"; }, get$openAppDrawerTooltip() { return "Atidaryti nar\u0161ymo meniu"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow i\u0161 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow i\u0161 ma\u017edaug $rowCount"; }, get$popupMenuLabel() { return "I\u0161\u0161okantysis meniu"; }, get$postMeridiemAbbreviation() { return "popiet"; }, get$previousMonthTooltip() { return "Ankstesnis m\u0117nuo"; }, get$previousPageTooltip() { return "Ankstesnis puslapis"; }, get$refreshIndicatorSemanticLabel() { return "Atnaujinti"; }, get$remainingTextFieldCharacterCountFew() { return "Liko $remainingCount simboliai"; }, get$remainingTextFieldCharacterCountMany() { return "Liko $remainingCount simbolio"; }, get$remainingTextFieldCharacterCountOne() { return "Liko 1 simbolis"; }, get$remainingTextFieldCharacterCountOther() { return "Liko $remainingCount simboli\u0173"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Perkelti \u017eemyn"; }, get$reorderItemToEnd() { return "Perkelti \u012f pabaig\u0105"; }, get$reorderItemToStart() { return "Perkelti \u012f prad\u017ei\u0105"; }, get$reorderItemUp() { return "Perkelti auk\u0161tyn"; }, get$rowsPerPageTitle() { return "Eilu\u010di\u0173 puslapyje:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Pasirinkite metus"; }, get$selectedRowCountTitleFew() { return "Pasirinkti $selectedRowCount elementai"; }, get$selectedRowCountTitleMany() { return "Pasirinkta $selectedRowCount elemento"; }, get$selectedRowCountTitleOne() { return "Pasirinktas 1 elementas"; }, get$selectedRowCountTitleOther() { return "Pasirinkta $selectedRowCount element\u0173"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Rodyti meniu"; }, get$tabLabelRaw() { return "$tabIndex skirtukas i\u0161 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "PASIRINKITE LAIK\u0104"; }, get$timePickerHourLabel() { return "Valandos"; }, get$timePickerHourModeAnnouncement() { return "Pasirinkite valandas"; }, get$timePickerInputHelpText() { return "\u012eVESKITE LAIK\u0104"; }, get$timePickerMinuteLabel() { return "Minut\u0117s"; }, get$timePickerMinuteModeAnnouncement() { return "Pasirinkite minutes"; } }; A.MaterialLocalizationLv.prototype = { get$alertDialogLabel() { return "Br\u012bdin\u0101jums"; }, get$anteMeridiemAbbreviation() { return "priek\u0161pusdien\u0101"; }, get$backButtonTooltip() { return "Atpaka\u013c"; }, get$calendarModeButtonLabel() { return "P\u0101rsl\u0113gties uz kalend\u0101ru"; }, get$cancelButtonLabel() { return "ATCELT"; }, get$collapsedIconTapHint() { return "Izv\u0113rst"; }, get$dateHelpText() { return "dd/mm/gggg"; }, get$dateInputLabel() { return "Ievadiet datumu"; }, get$dateOutOfRangeLabel() { return "\u0100rpus diapazona."; }, get$datePickerHelpText() { return "ATLASIET DATUMU"; }, get$dialModeButtonLabel() { return "P\u0101rsl\u0113gties uz ciparn\u012bcas atlas\u012bt\u0101ja re\u017e\u012bmu"; }, get$dialogLabel() { return "Dialoglodzi\u0146\u0161"; }, get$drawerLabel() { return "Navig\u0101cijas izv\u0113lne"; }, get$expandedIconTapHint() { return "Sak\u013caut"; }, get$firstPageTooltip() { return "Pirm\u0101 lapa"; }, get$inputDateModeButtonLabel() { return "P\u0101rsl\u0113gties uz ievadi"; }, get$inputTimeModeButtonLabel() { return "P\u0101rsl\u0113gties uz teksta ievades re\u017e\u012bmu"; }, get$invalidDateFormatLabel() { return "Neder\u012bgs form\u0101ts."; }, get$invalidTimeLabel() { return "Ievadiet der\u012bgu laiku."; }, get$lastPageTooltip() { return "P\u0113d\u0113j\u0101 lapa"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licences"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "Nav licen\u010du"; }, get$licensesPageTitle() { return "Licences"; }, get$modalBarrierDismissLabel() { return "Ner\u0101d\u012bt"; }, get$nextMonthTooltip() { return "N\u0101kamais m\u0113nesis"; }, get$nextPageTooltip() { return "N\u0101kam\u0101 lapa"; }, get$okButtonLabel() { return "LABI"; }, get$openAppDrawerTooltip() { return "Atv\u0113rt navig\u0101cijas izv\u0113lni"; }, get$pageRowsInfoTitleRaw() { return "$firstRow.\u2013$lastRow.\xa0no\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow.\u2013$lastRow.\xa0no aptuveni\xa0$rowCount"; }, get$popupMenuLabel() { return "Uznirsto\u0161\u0101 izv\u0113lne"; }, get$postMeridiemAbbreviation() { return "p\u0113cpusdien\u0101"; }, get$previousMonthTooltip() { return "Iepriek\u0161\u0113jais m\u0113nesis"; }, get$previousPageTooltip() { return "Iepriek\u0161\u0113j\u0101 lapa"; }, get$refreshIndicatorSemanticLabel() { return "Atsvaidzin\u0101t"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Atlikusi 1\xa0rakstz\u012bme."; }, get$remainingTextFieldCharacterCountOther() { return "Atliku\u0161as $remainingCount\xa0rakstz\u012bmes."; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "Nav atlikusi neviena rakstz\u012bme."; }, get$reorderItemDown() { return "P\u0101rvietot uz leju"; }, get$reorderItemToEnd() { return "P\u0101rvietot uz beig\u0101m"; }, get$reorderItemToStart() { return "P\u0101rvietot uz s\u0101kumu"; }, get$reorderItemUp() { return "P\u0101rvietot uz aug\u0161u"; }, get$rowsPerPageTitle() { return "Rindas lap\u0101:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Atlasiet gadu"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Atlas\u012bts 1\xa0vienums"; }, get$selectedRowCountTitleOther() { return "Atlas\u012bti $selectedRowCount\xa0vienumi"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Nav atlas\u012btu vienumu"; }, get$showMenuTooltip() { return "R\u0101d\u012bt izv\u0113lni"; }, get$tabLabelRaw() { return "$tabIndex.\xa0cilne no\xa0$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "ATLASIET LAIKU"; }, get$timePickerHourLabel() { return "Stunda"; }, get$timePickerHourModeAnnouncement() { return "Atlasiet stundas"; }, get$timePickerInputHelpText() { return "IEVADIET LAIKU"; }, get$timePickerMinuteLabel() { return "Min\u016bte"; }, get$timePickerMinuteModeAnnouncement() { return "Atlasiet min\u016btes"; } }; A.MaterialLocalizationMk.prototype = { get$alertDialogLabel() { return "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435"; }, get$anteMeridiemAbbreviation() { return "\u041f\u0420\u0415\u0422\u041f\u041b\u0410\u0414\u041d\u0415"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0438 \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel() { return "\u041e\u0422\u041a\u0410\u0416\u0418"; }, get$collapsedIconTapHint() { return "\u041f\u0440\u043e\u0448\u0438\u0440\u0438"; }, get$dateHelpText() { return "dd.mm.yyyy"; }, get$dateInputLabel() { return "\u0412\u043d\u0435\u0441\u0435\u0442\u0435 \u0434\u0430\u0442\u0443\u043c"; }, get$dateOutOfRangeLabel() { return "\u041d\u0430\u0434\u0432\u043e\u0440 \u043e\u0434 \u043e\u043f\u0441\u0435\u0433."; }, get$datePickerHelpText() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0414\u0410\u0422\u0423\u041c"; }, get$dialModeButtonLabel() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u043d\u0430 \u0438\u0437\u0431\u0438\u0440\u0430\u0447"; }, get$dialogLabel() { return "\u0414\u0438\u0458\u0430\u043b\u043e\u0433"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"; }, get$expandedIconTapHint() { return "\u0421\u043e\u0431\u0435\u0440\u0438"; }, get$firstPageTooltip() { return "\u041f\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$inputDateModeButtonLabel() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0438 \u043d\u0430 \u0432\u043d\u0435\u0441\u0443\u0432\u0430\u045a\u0435"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0432\u043d\u0435\u0441\u0443\u0432\u0430\u045a\u0435 \u0442\u0435\u043a\u0441\u0442"; }, get$invalidDateFormatLabel() { return "\u041d\u0435\u0432\u0430\u0436\u0435\u0447\u043a\u0438 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel() { return "\u0412\u043d\u0435\u0441\u0435\u0442\u0435 \u0432\u0430\u0436\u0435\u0447\u043a\u043e \u0432\u0440\u0435\u043c\u0435"; }, get$lastPageTooltip() { return "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0438\u0446\u0435\u043d\u0446\u0430"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$modalBarrierDismissLabel() { return "\u041e\u0442\u0444\u0440\u043b\u0438"; }, get$nextMonthTooltip() { return "\u0421\u043b\u0435\u0434\u043d\u0438\u043e\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip() { return "\u0421\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel() { return "\u0412\u043e \u0440\u0435\u0434"; }, get$openAppDrawerTooltip() { return "\u041e\u0442\u0432\u043e\u0440\u0435\u0442\u0435 \u0433\u043e \u043c\u0435\u043d\u0438\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"; }, get$pageRowsInfoTitleRaw() { return "$firstRow - $lastRow \u043e\u0434 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow - $lastRow \u043e\u0434 \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u043d\u043e $rowCount"; }, get$popupMenuLabel() { return "\u0421\u043a\u043e\u043a\u0430\u0447\u043a\u043e \u043c\u0435\u043d\u0438"; }, get$postMeridiemAbbreviation() { return "\u041f\u041e\u041f\u041b\u0410\u0414\u041d\u0415"; }, get$previousMonthTooltip() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438\u043e\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u041e\u0441\u0432\u0435\u0436\u0438"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430 \u0443\u0448\u0442\u0435 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430\u0430\u0442 \u0443\u0448\u0442\u0435 $remainingCount \u0437\u043d\u0430\u0446\u0438"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430\u0434\u043e\u043b\u0443"; }, get$reorderItemToEnd() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430 \u043a\u0440\u0430\u0458\u043e\u0442"; }, get$reorderItemToStart() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430 \u043f\u043e\u0447\u0435\u0442\u043e\u043a"; }, get$reorderItemUp() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$rowsPerPageTitle() { return "\u0420\u0435\u0434\u043e\u0432\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0433\u043e\u0434\u0438\u043d\u0430"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0430 \u0435 1 \u0441\u0442\u0430\u0432\u043a\u0430"; }, get$selectedRowCountTitleOther() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0438 \u0441\u0435 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0438"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"; }, get$tabLabelRaw() { return "\u041a\u0430\u0440\u0442\u0438\u0447\u043a\u0430 $tabIndex \u043e\u0434 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerHourLabel() { return "\u0427\u0430\u0441"; }, get$timePickerHourModeAnnouncement() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0447\u0430\u0441\u043e\u0432\u0438"; }, get$timePickerInputHelpText() { return "\u0412\u041d\u0415\u0421\u0415\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerMinuteLabel() { return "\u041c\u0438\u043d\u0443\u0442\u0430"; }, get$timePickerMinuteModeAnnouncement() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u0438"; } }; A.MaterialLocalizationMl.prototype = { get$alertDialogLabel() { return "\u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d31\u0d3f\u0d2f\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0d2e\u0d1f\u0d19\u0d4d\u0d19\u0d41\u0d15"; }, get$calendarModeButtonLabel() { return "\u0d15\u0d32\u0d23\u0d4d\u0d1f\u0d31\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$cancelButtonLabel() { return "\u0d31\u0d26\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$collapsedIconTapHint() { return "\u0d35\u0d3f\u0d15\u0d38\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$dateOutOfRangeLabel() { return "\u0d38\u0d3e\u0d27\u0d41\u0d35\u0d3e\u0d2f \u0d36\u0d4d\u0d30\u0d47\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d41\u0d31\u0d24\u0d4d\u0d24\u0d3e\u0d23\u0d4d."; }, get$datePickerHelpText() { return "\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$dialModeButtonLabel() { return "\u0d21\u0d2f\u0d7d \u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d7c \u0d2e\u0d4b\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$dialogLabel() { return "\u0d21\u0d2f\u0d32\u0d4b\u0d17\u0d4d"; }, get$drawerLabel() { return "\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41"; }, get$expandedIconTapHint() { return "\u0d1a\u0d41\u0d30\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$firstPageTooltip() { return "\u0d06\u0d26\u0d4d\u0d2f \u0d2a\u0d47\u0d1c\u0d4d"; }, get$inputDateModeButtonLabel() { return "\u0d07\u0d7b\u0d2a\u0d41\u0d1f\u0d4d\u0d1f\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$inputTimeModeButtonLabel() { return "\u0d1f\u0d46\u0d15\u0d4d\u200c\u0d38\u0d4d\u200c\u0d31\u0d4d\u0d31\u0d4d \u0d07\u0d7b\u0d2a\u0d41\u0d1f\u0d4d\u0d1f\u0d4d \u0d2e\u0d4b\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$invalidDateFormatLabel() { return "\u0d24\u0d46\u0d31\u0d4d\u0d31\u0d3e\u0d2f \u0d2b\u0d47\u0d3e\u0d7c\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d4d."; }, get$invalidTimeLabel() { return "\u0d38\u0d3e\u0d27\u0d41\u0d35\u0d3e\u0d2f \u0d38\u0d2e\u0d2f\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$lastPageTooltip() { return "\u0d05\u0d35\u0d38\u0d3e\u0d28 \u0d2a\u0d47\u0d1c\u0d4d"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u0d12\u0d30\u0d41 \u0d32\u0d48\u0d38\u0d7b\u0d38\u0d4d"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0d32\u0d48\u0d38\u0d7b\u0d38\u0d41\u0d15\u0d7e"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0d32\u0d48\u0d38\u0d7b\u0d38\u0d41\u0d15\u0d7e"; }, get$modalBarrierDismissLabel() { return "\u0d28\u0d3f\u0d30\u0d38\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$nextMonthTooltip() { return "\u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d2e\u0d3e\u0d38\u0d02"; }, get$nextPageTooltip() { return "\u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d2a\u0d47\u0d1c\u0d4d"; }, get$okButtonLabel() { return "\u0d36\u0d30\u0d3f"; }, get$openAppDrawerTooltip() { return "\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41 \u0d24\u0d41\u0d31\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$pageRowsInfoTitleRaw() { return "$rowCount-\u0d7d $firstRow \u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0d0f\u0d15\u0d26\u0d47\u0d36\u0d02 $rowCount-\u0d7d $firstRow \u2013$lastRow"; }, get$popupMenuLabel() { return "\u0d2a\u0d4b\u0d2a\u0d4d\u0d2a\u0d4d \u0d05\u0d2a\u0d4d\u0d2a\u0d4d \u0d2e\u0d46\u0d28\u0d41"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d24\u0d4d\u0d24\u0d46 \u0d2e\u0d3e\u0d38\u0d02"; }, get$previousPageTooltip() { return "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d24\u0d4d\u0d24\u0d46 \u0d2a\u0d47\u0d1c\u0d4d"; }, get$refreshIndicatorSemanticLabel() { return "\u0d31\u0d40\u0d2b\u0d4d\u0d30\u0d37\u0d4d \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0d12\u0d30\u0d41 \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d02 \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d19\u0d4d\u0d19\u0d7e \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0d24\u0d3e\u0d34\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d \u0d28\u0d40\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$reorderItemToEnd() { return "\u0d05\u0d35\u0d38\u0d3e\u0d28 \u0d2d\u0d3e\u0d17\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4b\u0d35\u0d41\u0d15"; }, get$reorderItemToStart() { return "\u0d24\u0d41\u0d1f\u0d15\u0d4d\u0d15\u0d24\u0d4d\u0d24\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4b\u0d35\u0d41\u0d15"; }, get$reorderItemUp() { return "\u0d2e\u0d41\u0d15\u0d33\u0d3f\u0d32\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d \u0d28\u0d40\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$rowsPerPageTitle() { return "\u0d13\u0d30\u0d4b \u0d2a\u0d47\u0d1c\u0d3f\u0d32\u0d41\u0d2e\u0d41\u0d33\u0d4d\u0d33 \u0d35\u0d30\u0d3f\u0d15\u0d7e:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0d35\u0d7c\u0d37\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0d12\u0d30\u0d41 \u0d07\u0d28\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0d07\u0d28\u0d19\u0d4d\u0d19\u0d7e \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0d2e\u0d46\u0d28\u0d41 \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$tabLabelRaw() { return "$tabCount-\u0d7d $tabIndex"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0d38\u0d2e\u0d2f\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$timePickerHourLabel() { return "\u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c"; }, get$timePickerHourModeAnnouncement() { return "\u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$timePickerInputHelpText() { return "\u0d38\u0d2e\u0d2f\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$timePickerMinuteLabel() { return "\u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d"; }, get$timePickerMinuteModeAnnouncement() { return "\u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; } }; A.MaterialLocalizationMn.prototype = { get$alertDialogLabel() { return "\u0421\u044d\u0440\u044d\u043c\u0436\u043b\u04af\u04af\u043b\u044d\u0433"; }, get$anteMeridiemAbbreviation() { return "\u04e8\u0413\u041b\u04e8\u04e8"; }, get$backButtonTooltip() { return "\u0411\u0443\u0446\u0430\u0445"; }, get$calendarModeButtonLabel() { return "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u043b\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$cancelButtonLabel() { return "\u0411\u041e\u041b\u0418\u0425"; }, get$collapsedIconTapHint() { return "\u0414\u044d\u043b\u0433\u044d\u0445"; }, get$dateHelpText() { return "\u0436\u0436\u0436\u0436.\u0441\u0441.\u04e9\u04e9"; }, get$dateInputLabel() { return "\u041e\u0433\u043d\u043e\u043e \u043e\u0440\u0443\u0443\u043b\u0430\u0445"; }, get$dateOutOfRangeLabel() { return "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u0430\u0441 \u0433\u0430\u0434\u0443\u0443\u0440 \u0431\u0430\u0439\u043d\u0430."; }, get$datePickerHelpText() { return "\u041e\u0413\u041d\u041e\u041e \u0421\u041e\u041d\u0413\u041e\u0425"; }, get$dialModeButtonLabel() { return "\u0426\u0430\u0433 \u0441\u043e\u043d\u0433\u043e\u0433\u0447 \u0433\u043e\u0440\u0438\u043c \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$dialogLabel() { return "\u0425\u0430\u0440\u0438\u043b\u0446\u0430\u0445 \u0446\u043e\u043d\u0445"; }, get$drawerLabel() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441"; }, get$expandedIconTapHint() { return "\u0411\u0443\u0443\u043b\u0433\u0430\u0445"; }, get$firstPageTooltip() { return "\u042d\u0445\u043d\u0438\u0439 \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$inputDateModeButtonLabel() { return "\u041e\u0440\u043e\u043b\u0442 \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$inputTimeModeButtonLabel() { return "\u0422\u0435\u043a\u0441\u0442 \u043e\u0440\u0443\u0443\u043b\u0430\u0445 \u0433\u043e\u0440\u0438\u043c \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$invalidDateFormatLabel() { return "\u0411\u0443\u0440\u0443\u0443 \u0444\u043e\u0440\u043c\u0430\u0442 \u0431\u0430\u0439\u043d\u0430."; }, get$invalidTimeLabel() { return "\u0426\u0430\u0433\u0438\u0439\u0433 \u0437\u04e9\u0432 \u043e\u0440\u0443\u0443\u043b\u043d\u0430 \u0443\u0443"; }, get$lastPageTooltip() { return "\u0421\u04af\u04af\u043b\u0438\u0439\u043d \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0437"; }, get$modalBarrierDismissLabel() { return "\u04ae\u043b \u0445\u044d\u0440\u044d\u0433\u0441\u044d\u0445"; }, get$nextMonthTooltip() { return "\u0414\u0430\u0440\u0430\u0430\u0445 \u0441\u0430\u0440"; }, get$nextPageTooltip() { return "\u0414\u0430\u0440\u0430\u0430\u0445 \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441\u0438\u0439\u0433 \u043d\u044d\u044d\u0445"; }, get$pageRowsInfoTitleRaw() { return "$rowCount-\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u041e\u0439\u0440\u043e\u043b\u0446\u043e\u043e\u0433\u043e\u043e\u0440 $rowCount-\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u041f\u043e\u043f\u0430\u043f \u0446\u044d\u0441"; }, get$postMeridiemAbbreviation() { return "\u041e\u0420\u041e\u0419"; }, get$previousMonthTooltip() { return "\u04e8\u043c\u043d\u04e9\u0445 \u0441\u0430\u0440"; }, get$previousPageTooltip() { return "\u04e8\u043c\u043d\u04e9\u0445 \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$refreshIndicatorSemanticLabel() { return "\u0421\u044d\u0440\u0433\u044d\u044d\u0445"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "No characters remaining"; }, get$reorderItemDown() { return "\u0414\u043e\u043e\u0448 \u0437\u04e9\u04e9\u0445"; }, get$reorderItemToEnd() { return "\u0422\u04e9\u0433\u0441\u0433\u04e9\u043b \u0440\u04af\u04af \u0437\u04e9\u04e9\u0445"; }, get$reorderItemToStart() { return "\u042d\u0445\u043b\u044d\u043b \u0440\u04af\u04af \u0437\u04e9\u04e9\u0445"; }, get$reorderItemUp() { return "\u0414\u044d\u044d\u0448 \u0437\u04e9\u04e9\u0445"; }, get$rowsPerPageTitle() { return "\u0425\u0443\u0443\u0434\u0441\u0430\u043d \u0434\u0430\u0445\u044c \u043c\u04e9\u0440\u0438\u0439\u043d \u0442\u043e\u043e:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0416\u0438\u043b \u0441\u043e\u043d\u0433\u043e\u0445"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0437\u04af\u0439\u043b \u0441\u043e\u043d\u0433\u043e\u0441\u043e\u043d"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0437\u04af\u0439\u043b \u0441\u043e\u043d\u0433\u043e\u0441\u043e\u043d"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u0411\u0438\u0447\u043b\u044d\u0433 \u0441\u043e\u043d\u0433\u043e\u043e\u0433\u04af\u0439 \u0431\u0430\u0439\u043d\u0430"; }, get$showMenuTooltip() { return "\u0426\u044d\u0441\u0438\u0439\u0433 \u0445\u0430\u0440\u0443\u0443\u043b\u0430\u0445"; }, get$tabLabelRaw() { return "$tabCount-\u043d $tabIndex-\u0440 \u0442\u0430\u0431"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "\u0426\u0410\u0413 \u0421\u041e\u041d\u0413\u041e\u0425"; }, get$timePickerHourLabel() { return "\u0426\u0430\u0433"; }, get$timePickerHourModeAnnouncement() { return "\u0426\u0430\u0433 \u0441\u043e\u043d\u0433\u043e\u043d\u043e \u0443\u0443"; }, get$timePickerInputHelpText() { return "\u0426\u0410\u0413 \u041e\u0420\u0423\u0423\u041b\u0410\u0425"; }, get$timePickerMinuteLabel() { return "\u041c\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement() { return "\u041c\u0438\u043d\u0443\u0442 \u0441\u043e\u043d\u0433\u043e\u043d\u043e \u0443\u0443"; } }; A.MaterialLocalizationMr.prototype = { get$alertDialogLabel() { return "\u0938\u0942\u091a\u0928\u093e"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u092e\u093e\u0917\u0947"; }, get$calendarModeButtonLabel() { return "\u0915\u0945\u0932\u0947\u0902\u0921\u0930\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$cancelButtonLabel() { return "\u0930\u0926\u094d\u0926 \u0915\u0930\u093e"; }, get$collapsedIconTapHint() { return "\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0930\u093e"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u0924\u093e\u0930\u0940\u0916 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$dateOutOfRangeLabel() { return "\u0936\u094d\u0930\u0947\u0923\u0940\u091a\u094d\u092f\u093e \u092c\u093e\u0939\u0947\u0930 \u0906\u0939\u0947."; }, get$datePickerHelpText() { return "\u0924\u093e\u0930\u0940\u0916 \u0928\u093f\u0935\u0921\u093e"; }, get$dialModeButtonLabel() { return "\u0921\u093e\u092f\u0932 \u092a\u093f\u0915\u0930 \u092e\u094b\u0921\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$dialogLabel() { return "\u0921\u093e\u092f\u0932\u0949\u0917"; }, get$drawerLabel() { return "\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942"; }, get$expandedIconTapHint() { return "\u0915\u094b\u0932\u0945\u092a\u094d\u0938 \u0915\u0930\u093e"; }, get$firstPageTooltip() { return "\u092a\u0939\u093f\u0932\u0947 \u092a\u0947\u091c"; }, get$inputDateModeButtonLabel() { return "\u0907\u0928\u092a\u0941\u091f\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$inputTimeModeButtonLabel() { return "\u092e\u091c\u0915\u0942\u0930 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$invalidDateFormatLabel() { return "\u092b\u0949\u0930\u092e\u0945\u091f \u091a\u0941\u0915\u0940\u091a\u093e \u0906\u0939\u0947."; }, get$invalidTimeLabel() { return "\u092f\u094b\u0917\u094d\u092f \u0935\u0947\u0933 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$lastPageTooltip() { return "\u0936\u0947\u0935\u091f\u091a\u0947 \u092a\u0947\u091c"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u090f\u0915 \u092a\u0930\u0935\u093e\u0928\u093e"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u092a\u0930\u0935\u093e\u0928\u0947"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u092a\u0930\u0935\u093e\u0928\u0947"; }, get$modalBarrierDismissLabel() { return "\u0921\u093f\u0938\u092e\u093f\u0938 \u0915\u0930\u093e"; }, get$nextMonthTooltip() { return "\u092a\u0941\u0922\u0940\u0932 \u092e\u0939\u093f\u0928\u093e"; }, get$nextPageTooltip() { return "\u092a\u0941\u0922\u0940\u0932 \u092a\u0947\u091c"; }, get$okButtonLabel() { return "\u0913\u0915\u0947"; }, get$openAppDrawerTooltip() { return "\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942 \u0909\u0918\u0921\u093e"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u092a\u0948\u0915\u0940 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount \u091a\u094d\u092f\u093e \u092c\u0926\u094d\u0926\u0932 $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u0942"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u092e\u093e\u0917\u0940\u0932 \u092e\u0939\u093f\u0928\u093e"; }, get$previousPageTooltip() { return "\u092e\u093e\u0917\u0940\u0932 \u092a\u0947\u091c"; }, get$refreshIndicatorSemanticLabel() { return "\u0930\u093f\u092b\u094d\u0930\u0947\u0936 \u0915\u0930\u093e"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u090f\u0915 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "\u0915\u094b\u0923\u0924\u0947\u0939\u0940 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915 \u0928\u093e\u0939\u0940\u0924"; }, get$reorderItemDown() { return "\u0916\u093e\u0932\u0940 \u0939\u0932\u0935\u093e"; }, get$reorderItemToEnd() { return "\u0936\u0947\u0935\u091f\u093e\u0915\u0921\u0947 \u0939\u0932\u0935\u093e"; }, get$reorderItemToStart() { return "\u0938\u0941\u0930\u0941\u0935\u093e\u0924\u0940\u0932\u093e \u0939\u0932\u0935\u093e"; }, get$reorderItemUp() { return "\u0935\u0930 \u0939\u0932\u0935\u093e"; }, get$rowsPerPageTitle() { return "\u092a\u094d\u0930\u0924\u093f \u092a\u0947\u091c \u092a\u0902\u0915\u094d\u0924\u0940:"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u0935\u0930\u094d\u0937 \u0928\u093f\u0935\u0921\u093e"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u090f\u0915 \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u093e"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u0947"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u0915\u094b\u0923\u0924\u0947\u0939\u0940 \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u0947\u0932\u0947 \u0928\u093e\u0939\u0940\u0924"; }, get$showMenuTooltip() { return "\u092e\u0947\u0928\u0942 \u0926\u093e\u0916\u0935\u093e"; }, get$tabLabelRaw() { return "$tabCount \u092a\u0948\u0915\u0940 $tabIndex \u091f\u0945\u092c"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "\u0935\u0947\u0933 \u0928\u093f\u0935\u0921\u093e"; }, get$timePickerHourLabel() { return "\u0924\u093e\u0938"; }, get$timePickerHourModeAnnouncement() { return "\u0924\u093e\u0938 \u0928\u093f\u0935\u0921\u093e"; }, get$timePickerInputHelpText() { return "\u0935\u0947\u0933 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$timePickerMinuteLabel() { return "\u092e\u093f\u0928\u093f\u091f"; }, get$timePickerMinuteModeAnnouncement() { return "\u092e\u093f\u0928\u093f\u091f\u0947 \u0928\u093f\u0935\u0921\u093e"; } }; A.MaterialLocalizationMs.prototype = { get$alertDialogLabel() { return "Makluman"; }, get$anteMeridiemAbbreviation() { return "PG"; }, get$backButtonTooltip() { return "Kembali"; }, get$calendarModeButtonLabel() { return "Tukar kepada kalendar"; }, get$cancelButtonLabel() { return "BATAL"; }, get$collapsedIconTapHint() { return "Kembangkan"; }, get$dateHelpText() { return "bb/hh/tttt"; }, get$dateInputLabel() { return "Masukkan Tarikh"; }, get$dateOutOfRangeLabel() { return "Di luar julat."; }, get$datePickerHelpText() { return "PILIH TARIKH"; }, get$dialModeButtonLabel() { return "Beralih kepada mod pemilih dail"; }, get$dialogLabel() { return "Dialog"; }, get$drawerLabel() { return "Menu navigasi"; }, get$expandedIconTapHint() { return "Runtuhkan"; }, get$firstPageTooltip() { return "Halaman pertama"; }, get$inputDateModeButtonLabel() { return "Tukar kepada input"; }, get$inputTimeModeButtonLabel() { return "Beralih kepada mod input teks"; }, get$invalidDateFormatLabel() { return "Format tidak sah."; }, get$invalidTimeLabel() { return "Masukkan masa yang sah"; }, get$lastPageTooltip() { return "Halaman terakhir"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lesen"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lesen"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lesen"; }, get$modalBarrierDismissLabel() { return "Tolak"; }, get$nextMonthTooltip() { return "Bulan depan"; }, get$nextPageTooltip() { return "Halaman seterusnya"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Buka menu navigasi"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow dari $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstda; }, get$popupMenuLabel() { return "Menu pop timbul"; }, get$postMeridiemAbbreviation() { return "PTG"; }, get$previousMonthTooltip() { return "Bulan sebelumnya"; }, get$previousPageTooltip() { return "Halaman sebelumnya"; }, get$refreshIndicatorSemanticLabel() { return "Muat semula"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 aksara lagi"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount aksara lagi"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Alih ke bawah"; }, get$reorderItemToEnd() { return "Alih ke penghujung"; }, get$reorderItemToStart() { return "Alih ke permulaan"; }, get$reorderItemUp() { return "Alih ke atas"; }, get$rowsPerPageTitle() { return "Baris setiap halaman:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Pilih tahun"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item dipilih"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount item dipilih"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Tiada item dipilih"; }, get$showMenuTooltip() { return "Tunjukkan menu"; }, get$tabLabelRaw() { return "Tab $tabIndex dari $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "PILIH MASA"; }, get$timePickerHourLabel() { return "Jam"; }, get$timePickerHourModeAnnouncement() { return "Pilih jam"; }, get$timePickerInputHelpText() { return "MASUKKAN MASA"; }, get$timePickerMinuteLabel() { return "Minit"; }, get$timePickerMinuteModeAnnouncement() { return "Pilih minit"; } }; A.MaterialLocalizationMy.prototype = { get$alertDialogLabel() { return "\u101e\u1010\u102d\u1015\u1031\u1038\u1001\u103b\u1000\u103a"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u1014\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037"; }, get$calendarModeButtonLabel() { return "\u1015\u103c\u1000\u1039\u1001\u1012\u102d\u1014\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$cancelButtonLabel() { return "\u1019\u101c\u102f\u1015\u103a\u1010\u1031\u102c\u1037"; }, get$collapsedIconTapHint() { return "\u1001\u103b\u1032\u1037\u101b\u1014\u103a"; }, get$dateHelpText() { return "dd-mm-yyyy"; }, get$dateInputLabel() { return "\u101b\u1000\u103a\u1005\u103d\u1032 \u1011\u100a\u1037\u103a\u101b\u1014\u103a"; }, get$dateOutOfRangeLabel() { return "\u1021\u1015\u102d\u102f\u1004\u103a\u1038\u1021\u1001\u103c\u102c\u1038 \u1015\u103c\u1004\u103a\u1015\u1010\u103d\u1004\u103a\u1016\u103c\u1005\u103a\u1014\u1031\u101e\u100a\u103a\u104b"; }, get$datePickerHelpText() { return "\u101b\u1000\u103a\u1005\u103d\u1032\u101b\u103d\u1031\u1038\u1015\u102b"; }, get$dialModeButtonLabel() { return "\u1014\u1036\u1015\u102b\u1010\u103a\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1001\u103c\u1004\u103a\u1038\u1019\u102f\u1012\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$dialogLabel() { return "\u1012\u102d\u102f\u1004\u103a\u101a\u102c\u101c\u1031\u102c\u1037"; }, get$drawerLabel() { return "\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a \u1019\u102e\u1014\u1030\u1038"; }, get$expandedIconTapHint() { return "\u101c\u103b\u103e\u1031\u102c\u1037\u1015\u103c\u101b\u1014\u103a"; }, get$firstPageTooltip() { return "\u1015\u1011\u1019 \u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$inputDateModeButtonLabel() { return "\u1011\u100a\u103a\u1037\u101e\u103d\u1004\u103a\u1038\u1019\u103e\u102f\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$inputTimeModeButtonLabel() { return "\u1005\u102c\u101e\u102c\u1038 \u1011\u100a\u103a\u1037\u101e\u103d\u1004\u103a\u1038\u1019\u103e\u102f\u1019\u102f\u1012\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$invalidDateFormatLabel() { return "\u1016\u1031\u102c\u103a\u1019\u1000\u103a \u1019\u1019\u103e\u1014\u103a\u1000\u1014\u103a\u1015\u102b\u104b"; }, get$invalidTimeLabel() { return "\u1019\u103e\u1014\u103a\u1000\u1014\u103a\u101e\u100a\u1037\u103a\u1021\u1001\u103b\u102d\u1014\u103a \u1011\u100a\u1037\u103a\u1015\u102b"; }, get$lastPageTooltip() { return "\u1014\u1031\u102c\u1000\u103a\u1006\u102f\u1036\u1038 \u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a 1 \u1001\u102f"; }, get$licensesPackageDetailTextOther() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a $licenseCount \u1001\u102f"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a\u1019\u103b\u102c\u1038"; }, get$modalBarrierDismissLabel() { return "\u1015\u101a\u103a\u101b\u1014\u103a"; }, get$nextMonthTooltip() { return "\u1014\u1031\u102c\u1000\u103a\u101c"; }, get$nextPageTooltip() { return "\u1014\u1031\u102c\u1000\u103a\u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a\u1019\u102e\u1014\u1030\u1038\u1000\u102d\u102f \u1016\u103d\u1004\u1037\u103a\u101b\u1014\u103a"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u1021\u1014\u1000\u103a $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount \u1001\u1014\u103a\u1037\u1019\u103e $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u1015\u1031\u102b\u1037\u1015\u103a\u1021\u1015\u103a\u1019\u102e\u1014\u1030\u1038"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u101a\u1001\u1004\u103a\u101c"; }, get$previousPageTooltip() { return "\u101a\u1001\u1004\u103a\u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$refreshIndicatorSemanticLabel() { return "\u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1005\u1010\u1004\u103a\u101b\u1014\u103a"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u1021\u1000\u1039\u1001\u101b\u102c \u1041 \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"; }, get$remainingTextFieldCharacterCountOther() { return "\u1021\u1000\u1039\u1001\u101b\u102c $remainingCount \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u1021\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037\u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemToEnd() { return "\u1021\u1006\u102f\u1036\u1038\u101e\u102d\u102f\u1037 \u200c\u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemToStart() { return "\u1021\u1005\u101e\u102d\u102f\u1037 \u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemUp() { return "\u1021\u1015\u1031\u102b\u103a\u101e\u102d\u102f\u1037 \u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$rowsPerPageTitle() { return "\u1005\u102c\u1010\u1005\u103a\u1019\u103b\u1000\u103a\u1014\u103e\u102c\u1015\u102b \u101c\u102d\u102f\u1004\u103a\u1038\u1021\u101b\u1031\u1021\u1010\u103d\u1000\u103a\u2212"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u1001\u102f\u1014\u103e\u1005\u103a \u101b\u103d\u1031\u1038\u101b\u1014\u103a"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u1041 \u1001\u102f \u101b\u103d\u1031\u1038\u1011\u102c\u1038\u101e\u100a\u103a"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u1001\u102f \u101b\u103d\u1031\u1038\u1011\u102c\u1038\u101e\u100a\u103a"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u1019\u102e\u1014\u1030\u1038 \u1015\u103c\u101b\u1014\u103a"; }, get$tabLabelRaw() { return "\u1010\u1018\u103a $tabCount \u1021\u1014\u1000\u103a $tabIndex \u1001\u102f"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u1021\u1001\u103b\u102d\u1014\u103a\u101b\u103d\u1031\u1038\u101b\u1014\u103a"; }, get$timePickerHourLabel() { return "\u1014\u102c\u101b\u102e"; }, get$timePickerHourModeAnnouncement() { return "\u1014\u102c\u101b\u102e\u1000\u102d\u102f \u101b\u103d\u1031\u1038\u1015\u102b"; }, get$timePickerInputHelpText() { return "\u1021\u1001\u103b\u102d\u1014\u103a\u1011\u100a\u103a\u1037\u101b\u1014\u103a"; }, get$timePickerMinuteLabel() { return "\u1019\u102d\u1014\u1005\u103a"; }, get$timePickerMinuteModeAnnouncement() { return "\u1019\u102d\u1014\u1005\u103a\u1000\u102d\u102f \u101b\u103d\u1031\u1038\u1015\u102b"; } }; A.MaterialLocalizationNb.prototype = { get$alertDialogLabel() { return "Varsel"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Tilbake"; }, get$calendarModeButtonLabel() { return "Bytt til kalender"; }, get$cancelButtonLabel() { return "AVBRYT"; }, get$collapsedIconTapHint() { return "Vis"; }, get$dateHelpText() { return "dd.mm.\xe5\xe5\xe5\xe5"; }, get$dateInputLabel() { return "Skriv inn datoen"; }, get$dateOutOfRangeLabel() { return "Utenfor perioden."; }, get$datePickerHelpText() { return "VELG DATOEN"; }, get$dialModeButtonLabel() { return "Bytt til modus for valg fra urskive"; }, get$dialogLabel() { return "Dialogboks"; }, get$drawerLabel() { return "Navigasjonsmeny"; }, get$expandedIconTapHint() { return "Skjul"; }, get$firstPageTooltip() { return "F\xf8rste side"; }, get$inputDateModeButtonLabel() { return "Bytt til innskriving"; }, get$inputTimeModeButtonLabel() { return "Bytt til tekstinndatamodus"; }, get$invalidDateFormatLabel() { return "Ugyldig format."; }, get$invalidTimeLabel() { return "Angi et gyldig klokkeslett"; }, get$lastPageTooltip() { return "Siste side"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisens"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisenser"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return null; }, get$licensesPageTitle() { return "Lisenser"; }, get$modalBarrierDismissLabel() { return "Avvis"; }, get$nextMonthTooltip() { return "Neste m\xe5ned"; }, get$nextPageTooltip() { return "Neste side"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\xc5pne navigasjonsmenyen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow av omtrent $rowCount"; }, get$popupMenuLabel() { return "Forgrunnsmeny"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Forrige m\xe5ned"; }, get$previousPageTooltip() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel() { return "Laster inn p\xe5 nytt"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Flytt ned"; }, get$reorderItemToEnd() { return "Flytt til slutten"; }, get$reorderItemToStart() { return "Flytt til starten"; }, get$reorderItemUp() { return "Flytt opp"; }, get$rowsPerPageTitle() { return "Rader per side:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Velg \xe5ret"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 element er valgt"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Vis meny"; }, get$tabLabelRaw() { return "Fane $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VELG KLOKKESLETT"; }, get$timePickerHourLabel() { return "Time"; }, get$timePickerHourModeAnnouncement() { return "Angi timer"; }, get$timePickerInputHelpText() { return "ANGI ET KLOKKESLETT"; }, get$timePickerMinuteLabel() { return "Minutt"; }, get$timePickerMinuteModeAnnouncement() { return "Angi minutter"; } }; A.MaterialLocalizationNe.prototype = { get$alertDialogLabel() { return "\u0905\u0932\u0930\u094d\u091f"; }, get$anteMeridiemAbbreviation() { return "\u092a\u0942\u0930\u094d\u0935\u093e\u0939\u094d\u0928"; }, get$backButtonTooltip() { return "\u092a\u091b\u093e\u0921\u093f \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$calendarModeButtonLabel() { return "\u092a\u093e\u0924\u094d\u0930\u094b \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$cancelButtonLabel() { return "\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$collapsedIconTapHint() { return "\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dateHelpText() { return "yyyy/mm/dd"; }, get$dateInputLabel() { return "\u092e\u093f\u0924\u093f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dateOutOfRangeLabel() { return "\u0926\u093e\u092f\u0930\u093e\u092d\u0928\u094d\u0926\u093e \u092c\u093e\u0939\u093f\u0930"; }, get$datePickerHelpText() { return "\u092e\u093f\u0924\u093f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dialModeButtonLabel() { return "\u0921\u093e\u092f\u0932 \u091a\u092f\u0928\u0915\u0930\u094d\u0924\u093e \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dialogLabel() { return "\u0938\u0902\u0935\u093e\u0926"; }, get$drawerLabel() { return "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941"; }, get$expandedIconTapHint() { return "\u0938\u0902\u0915\u094d\u0937\u093f\u092a\u094d\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$firstPageTooltip() { return "\u092a\u094d\u0930\u0925\u092e \u092a\u0947\u091c"; }, get$inputDateModeButtonLabel() { return "\u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$inputTimeModeButtonLabel() { return "\u092a\u093e\u0920 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$invalidDateFormatLabel() { return "\u0905\u0935\u0948\u0927 \u0922\u093e\u0901\u091a\u093e\u0964"; }, get$invalidTimeLabel() { return "\u0935\u0948\u0927 \u0938\u092e\u092f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$lastPageTooltip() { return "\u0905\u0928\u094d\u0924\u093f\u092e \u092a\u0947\u091c"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u090f\u0909\u091f\u093e \u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0935\u091f\u093e \u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930\u0939\u0930\u0942"; }, get$modalBarrierDismissLabel() { return "\u0916\u093e\u0930\u0947\u091c \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$nextMonthTooltip() { return "\u0905\u0930\u094d\u0915\u094b \u092e\u0939\u093f\u0928\u093e"; }, get$nextPageTooltip() { return "\u0905\u0930\u094d\u0915\u094b \u092a\u0943\u0937\u094d\u0920"; }, get$okButtonLabel() { return "\u0920\u093f\u0915 \u091b"; }, get$openAppDrawerTooltip() { return "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941 \u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u092e\u0927\u094d\u092f\u0947 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0932\u0917\u092d\u0917 $rowCount \u0915\u094b $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u092a\u092a\u0905\u092a \u092e\u0947\u0928\u0941"; }, get$postMeridiemAbbreviation() { return "\u0905\u092a\u0930\u093e\u0939\u094d\u0928"; }, get$previousMonthTooltip() { return "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u092e\u0939\u093f\u0928\u093e"; }, get$previousPageTooltip() { return "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u092a\u0943\u0937\u094d\u0920"; }, get$refreshIndicatorSemanticLabel() { return "\u092a\u0941\u0928\u0903 \u0924\u093e\u091c\u093e \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0967 \u0935\u0930\u094d\u0923 \u092c\u093e\u0901\u0915\u0940"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0935\u0930\u094d\u0923\u0939\u0930\u0942 \u092c\u093e\u0901\u0915\u0940"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0924\u0932 \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemToEnd() { return "\u0905\u0928\u094d\u0924\u094d\u092f\u092e\u093e \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemToStart() { return "\u0938\u0941\u0930\u0941\u092e\u093e \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemUp() { return "\u092e\u093e\u0925\u093f \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$rowsPerPageTitle() { return "\u092a\u094d\u0930\u0924\u094d\u092f\u0947\u0915 \u092a\u0943\u0937\u094d\u0920\u092e\u093e \u0930\u0939\u0947\u0915\u093e \u092a\u0919\u094d\u0915\u094d\u0924\u093f\u0939\u0930\u0942\u0915\u094b \u0938\u0919\u094d\u0916\u094d\u092f\u093e:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0935\u0930\u094d\u0937 \u091b\u093e\u0928\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0967 \u0935\u0938\u094d\u0924\u0941 \u091a\u092f\u0928 \u0917\u0930\u093f\u092f\u094b"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0935\u0938\u094d\u0924\u0941\u0939\u0930\u0942 \u091a\u092f\u0928 \u0917\u0930\u093f\u090f"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u092e\u0947\u0928\u0941 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$tabLabelRaw() { return "$tabCount \u092e\u0927\u094d\u092f\u0947 $tabIndex \u091f\u094d\u092f\u093e\u092c"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0938\u092e\u092f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerHourLabel() { return "\u0918\u0928\u094d\u091f\u093e"; }, get$timePickerHourModeAnnouncement() { return "\u0918\u0928\u094d\u091f\u093e \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerInputHelpText() { return "\u0938\u092e\u092f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerMinuteLabel() { return "\u092e\u093f\u0928\u0947\u091f"; }, get$timePickerMinuteModeAnnouncement() { return "\u092e\u093f\u0928\u0947\u091f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; } }; A.MaterialLocalizationNl.prototype = { get$alertDialogLabel() { return "Melding"; }, get$anteMeridiemAbbreviation() { return "am"; }, get$backButtonTooltip() { return "Terug"; }, get$calendarModeButtonLabel() { return "Overschakelen naar kalender"; }, get$cancelButtonLabel() { return "ANNULEREN"; }, get$collapsedIconTapHint() { return "Uitvouwen"; }, get$dateHelpText() { return "dd-mm-jjjj"; }, get$dateInputLabel() { return "Datum opgeven"; }, get$dateOutOfRangeLabel() { return "Buiten bereik."; }, get$datePickerHelpText() { return "DATUM SELECTEREN"; }, get$dialModeButtonLabel() { return "Overschakelen naar klok"; }, get$dialogLabel() { return "Dialoogvenster"; }, get$drawerLabel() { return "Navigatiemenu"; }, get$expandedIconTapHint() { return "Samenvouwen"; }, get$firstPageTooltip() { return "Eerste pagina"; }, get$inputDateModeButtonLabel() { return "Overschakelen naar invoer"; }, get$inputTimeModeButtonLabel() { return "Overschakelen naar tekstinvoer"; }, get$invalidDateFormatLabel() { return "Ongeldige indeling."; }, get$invalidTimeLabel() { return "Geef een geldige tijd op"; }, get$lastPageTooltip() { return "Laatste pagina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licentie"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenties"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenties"; }, get$modalBarrierDismissLabel() { return "Sluiten"; }, get$nextMonthTooltip() { return "Volgende maand"; }, get$nextPageTooltip() { return "Volgende pagina"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Navigatiemenu openen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow van $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow van ongeveer $rowCount"; }, get$popupMenuLabel() { return "Pop-upmenu"; }, get$postMeridiemAbbreviation() { return "pm"; }, get$previousMonthTooltip() { return "Vorige maand"; }, get$previousPageTooltip() { return "Vorige pagina"; }, get$refreshIndicatorSemanticLabel() { return "Vernieuwen"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 teken resterend"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount tekens resterend"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Omlaag verplaatsen"; }, get$reorderItemToEnd() { return "Naar het einde verplaatsen"; }, get$reorderItemToStart() { return "Naar het begin verplaatsen"; }, get$reorderItemUp() { return "Omhoog verplaatsen"; }, get$rowsPerPageTitle() { return "Rijen per pagina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Jaar selecteren"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item geselecteerd"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount items geselecteerd"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Menu tonen"; }, get$tabLabelRaw() { return "Tabblad $tabIndex van $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "TIJD SELECTEREN"; }, get$timePickerHourLabel() { return "Uur"; }, get$timePickerHourModeAnnouncement() { return "Uren selecteren"; }, get$timePickerInputHelpText() { return "TIJD OPGEVEN"; }, get$timePickerMinuteLabel() { return "Minuut"; }, get$timePickerMinuteModeAnnouncement() { return "Minuten selecteren"; } }; A.MaterialLocalizationNo.prototype = { get$alertDialogLabel() { return "Varsel"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Tilbake"; }, get$calendarModeButtonLabel() { return "Bytt til kalender"; }, get$cancelButtonLabel() { return "AVBRYT"; }, get$collapsedIconTapHint() { return "Vis"; }, get$dateHelpText() { return "dd.mm.\xe5\xe5\xe5\xe5"; }, get$dateInputLabel() { return "Skriv inn datoen"; }, get$dateOutOfRangeLabel() { return "Utenfor perioden."; }, get$datePickerHelpText() { return "VELG DATOEN"; }, get$dialModeButtonLabel() { return "Bytt til modus for valg fra urskive"; }, get$dialogLabel() { return "Dialogboks"; }, get$drawerLabel() { return "Navigasjonsmeny"; }, get$expandedIconTapHint() { return "Skjul"; }, get$firstPageTooltip() { return "F\xf8rste side"; }, get$inputDateModeButtonLabel() { return "Bytt til innskriving"; }, get$inputTimeModeButtonLabel() { return "Bytt til tekstinndatamodus"; }, get$invalidDateFormatLabel() { return "Ugyldig format."; }, get$invalidTimeLabel() { return "Angi et gyldig klokkeslett"; }, get$lastPageTooltip() { return "Siste side"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisens"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisenser"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return null; }, get$licensesPageTitle() { return "Lisenser"; }, get$modalBarrierDismissLabel() { return "Avvis"; }, get$nextMonthTooltip() { return "Neste m\xe5ned"; }, get$nextPageTooltip() { return "Neste side"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\xc5pne navigasjonsmenyen"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow av omtrent $rowCount"; }, get$popupMenuLabel() { return "Forgrunnsmeny"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Forrige m\xe5ned"; }, get$previousPageTooltip() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel() { return "Laster inn p\xe5 nytt"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Flytt ned"; }, get$reorderItemToEnd() { return "Flytt til slutten"; }, get$reorderItemToStart() { return "Flytt til starten"; }, get$reorderItemUp() { return "Flytt opp"; }, get$rowsPerPageTitle() { return "Rader per side:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Velg \xe5ret"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 element er valgt"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Vis meny"; }, get$tabLabelRaw() { return "Fane $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VELG KLOKKESLETT"; }, get$timePickerHourLabel() { return "Time"; }, get$timePickerHourModeAnnouncement() { return "Angi timer"; }, get$timePickerInputHelpText() { return "ANGI ET KLOKKESLETT"; }, get$timePickerMinuteLabel() { return "Minutt"; }, get$timePickerMinuteModeAnnouncement() { return "Angi minutter"; } }; A.MaterialLocalizationOr.prototype = { get$alertDialogLabel() { return "\u0b06\u0b32\u0b30\u0b4d\u0b1f"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0b2a\u0b1b\u0b15\u0b41 \u0b2b\u0b47\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$calendarModeButtonLabel() { return "\u0b15\u0b4d\u0b5f\u0b3e\u0b32\u0b47\u0b23\u0b4d\u0b21\u0b30\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$cancelButtonLabel() { return "\u0b2c\u0b3e\u0b24\u0b3f\u0b32\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$collapsedIconTapHint() { return "\u0b2a\u0b4d\u0b30\u0b38\u0b3e\u0b30\u0b3f\u0b24 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0b24\u0b3e\u0b30\u0b3f\u0b16 \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$dateOutOfRangeLabel() { return "\u0b38\u0b40\u0b2e\u0b3e \u0b2c\u0b3e\u0b39\u0b3e\u0b30\u0b47\u0964"; }, get$datePickerHelpText() { return "\u0b24\u0b3e\u0b30\u0b3f\u0b16 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dialModeButtonLabel() { return "\u0b21\u0b3e\u0b0f\u0b32\u0b4d \u0b2a\u0b3f\u0b15\u0b30\u0b4d \u0b2e\u0b4b\u0b21\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dialogLabel() { return "\u0b21\u0b3e\u0b5f\u0b32\u0b17\u0b4d"; }, get$drawerLabel() { return "\u0b28\u0b47\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41"; }, get$expandedIconTapHint() { return "\u0b38\u0b19\u0b4d\u0b15\u0b41\u0b1a\u0b3f\u0b24 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$firstPageTooltip() { return "\u0b2a\u0b4d\u0b30\u0b25\u0b2e \u0b2a\u0b43\u0b37\u0b4d\u0b20\u0b3e"; }, get$inputDateModeButtonLabel() { return "\u0b07\u0b28\u0b2a\u0b41\u0b1f\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$inputTimeModeButtonLabel() { return "\u0b1f\u0b47\u0b15\u0b4d\u0b38\u0b1f\u0b4d \u0b07\u0b28\u0b2a\u0b41\u0b1f\u0b4d \u0b2e\u0b4b\u0b21\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$invalidDateFormatLabel() { return "\u0b05\u0b2c\u0b48\u0b27 \u0b2b\u0b30\u0b4d\u0b2e\u0b3e\u0b1f\u0b4d\u0964"; }, get$invalidTimeLabel() { return "\u0b0f\u0b15 \u0b2c\u0b48\u0b27 \u0b38\u0b2e\u0b5f \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$lastPageTooltip() { return "\u0b36\u0b47\u0b37 \u0b2a\u0b43\u0b37\u0b4d\u0b20\u0b3e"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1\u0b1f\u0b3f \u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\u0b1f\u0b3f \u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38\u0b17\u0b41\u0b21\u0b3c\u0b15"; }, get$modalBarrierDismissLabel() { return "\u0b16\u0b3e\u0b30\u0b1c \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$nextMonthTooltip() { return "\u0b2a\u0b30\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2e\u0b3e\u0b38"; }, get$nextPageTooltip() { return "\u0b2a\u0b30\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2a\u0b47\u0b1c\u0b4d"; }, get$okButtonLabel() { return "\u0b20\u0b3f\u0b15\u0b4d \u0b05\u0b1b\u0b3f"; }, get$openAppDrawerTooltip() { return "\u0b28\u0b3e\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41 \u0b16\u0b4b\u0b32\u0b28\u0b4d\u0b24\u0b41"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u0b30 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0b2a\u0b3e\u0b16\u0b3e\u0b2a\u0b3e\u0b16\u0b3f $rowCount\u0b30 $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0b2a\u0b2a\u0b4d-\u0b05\u0b2a\u0b4d \u0b2e\u0b47\u0b28\u0b41"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0b2a\u0b42\u0b30\u0b4d\u0b2c \u0b2e\u0b3e\u0b38"; }, get$previousPageTooltip() { return "\u0b2a\u0b42\u0b30\u0b4d\u0b2c\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2a\u0b47\u0b1c\u0b4d"; }, get$refreshIndicatorSemanticLabel() { return "\u0b30\u0b3f\u0b2b\u0b4d\u0b30\u0b47\u0b38\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0b24\u0b33\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemToEnd() { return "\u0b36\u0b47\u0b37\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemToStart() { return "\u0b06\u0b30\u0b2e\u0b4d\u0b2d\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemUp() { return "\u0b09\u0b2a\u0b30\u0b15\u0b41 \u0b28\u0b3f\u0b05\u0b28\u0b4d\u0b24\u0b41"; }, get$rowsPerPageTitle() { return "\u0b2a\u0b43\u0b37\u0b4d\u0b20\u0b3e \u0b2a\u0b3f\u0b1b\u0b3e \u0b27\u0b3e\u0b5c\u0b3f:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0b2c\u0b30\u0b4d\u0b37 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1\u0b1f\u0b3f \u0b06\u0b07\u0b1f\u0b2e\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount\u0b1f\u0b3f \u0b06\u0b07\u0b1f\u0b2e\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0b2e\u0b47\u0b28\u0b41 \u0b26\u0b47\u0b16\u0b3e\u0b28\u0b4d\u0b24\u0b41"; }, get$tabLabelRaw() { return "$tabCount\u0b30 $tabIndex \u0b1f\u0b3e\u0b2c\u0b4d"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0b38\u0b2e\u0b5f \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerHourLabel() { return "\u0b18\u0b23\u0b4d\u0b1f\u0b3e"; }, get$timePickerHourModeAnnouncement() { return "\u0b18\u0b23\u0b4d\u0b1f\u0b3e \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerInputHelpText() { return "\u0b38\u0b2e\u0b5f \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerMinuteLabel() { return "\u0b2e\u0b3f\u0b28\u0b3f\u0b1f\u0b4d"; }, get$timePickerMinuteModeAnnouncement() { return "\u0b2e\u0b3f\u0b28\u0b3f\u0b1f\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; } }; A.MaterialLocalizationPa.prototype = { get$alertDialogLabel() { return "\u0a38\u0a41\u0a1a\u0a47\u0a24\u0a28\u0a3e"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0a2a\u0a3f\u0a71\u0a1b\u0a47"; }, get$calendarModeButtonLabel() { return "\u0a15\u0a48\u0a32\u0a70\u0a21\u0a30 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$cancelButtonLabel() { return "\u0a30\u0a71\u0a26 \u0a15\u0a30\u0a4b"; }, get$collapsedIconTapHint() { return "\u0a35\u0a3f\u0a38\u0a24\u0a3e\u0a30 \u0a15\u0a30\u0a4b"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0a24\u0a3e\u0a30\u0a40\u0a16 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$dateOutOfRangeLabel() { return "\u0a30\u0a47\u0a02\u0a1c-\u0a24\u0a4b\u0a02-\u0a2c\u0a3e\u0a39\u0a30\u0964"; }, get$datePickerHelpText() { return "\u0a24\u0a3e\u0a30\u0a40\u0a16 \u0a1a\u0a41\u0a23\u0a4b"; }, get$dialModeButtonLabel() { return "\u0a21\u0a3e\u0a07\u0a32 \u0a1a\u0a4b\u0a23\u0a15\u0a3e\u0a30 \u0a2e\u0a4b\u0a21 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$dialogLabel() { return "\u0a35\u0a3f\u0a70\u0a21\u0a4b"; }, get$drawerLabel() { return "\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a38\u0a3c\u0a28 \u0a2e\u0a40\u0a28\u0a42"; }, get$expandedIconTapHint() { return "\u0a38\u0a2e\u0a47\u0a1f\u0a4b"; }, get$firstPageTooltip() { return "\u0a2a\u0a39\u0a3f\u0a32\u0a3e \u0a2a\u0a70\u0a28\u0a3e"; }, get$inputDateModeButtonLabel() { return "\u0a07\u0a28\u0a2a\u0a41\u0a71\u0a1f '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$inputTimeModeButtonLabel() { return "\u0a32\u0a3f\u0a16\u0a24 \u0a07\u0a28\u0a2a\u0a41\u0a71\u0a1f \u0a2e\u0a4b\u0a21 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$invalidDateFormatLabel() { return "\u0a05\u0a35\u0a48\u0a27 \u0a2b\u0a3e\u0a30\u0a2e\u0a48\u0a1f\u0964"; }, get$invalidTimeLabel() { return "\u0a35\u0a48\u0a27 \u0a38\u0a2e\u0a3e\u0a02 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$lastPageTooltip() { return "\u0a06\u0a16\u0a30\u0a40 \u0a2a\u0a70\u0a28\u0a3e"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$modalBarrierDismissLabel() { return "\u0a16\u0a3e\u0a30\u0a1c \u0a15\u0a30\u0a4b"; }, get$nextMonthTooltip() { return "\u0a05\u0a17\u0a32\u0a3e \u0a2e\u0a39\u0a40\u0a28\u0a3e"; }, get$nextPageTooltip() { return "\u0a05\u0a17\u0a32\u0a3e \u0a2a\u0a70\u0a28\u0a3e"; }, get$okButtonLabel() { return "\u0a20\u0a40\u0a15 \u0a39\u0a48"; }, get$openAppDrawerTooltip() { return "\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a36\u0a28 \u0a2e\u0a40\u0a28\u0a42 \u0a16\u0a4b\u0a32\u0a4d\u0a39\u0a4b"; }, get$pageRowsInfoTitleRaw() { return "$rowCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u0a32\u0a17\u0a2d\u0a17 $rowCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0a2a\u0a4c\u0a2a\u0a05\u0a71\u0a2a \u0a2e\u0a40\u0a28\u0a42"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0a2a\u0a3f\u0a1b\u0a32\u0a3e \u0a2e\u0a39\u0a40\u0a28\u0a3e"; }, get$previousPageTooltip() { return "\u0a2a\u0a3f\u0a1b\u0a32\u0a3e \u0a2a\u0a70\u0a28\u0a3e"; }, get$refreshIndicatorSemanticLabel() { return "\u0a30\u0a3f\u0a2b\u0a4d\u0a30\u0a48\u0a36 \u0a15\u0a30\u0a4b"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0a39\u0a47\u0a20\u0a3e\u0a02 \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemToEnd() { return "\u0a05\u0a70\u0a24 \u0a35\u0a3f\u0a71\u0a1a \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemToStart() { return "\u0a36\u0a41\u0a30\u0a42 \u0a35\u0a3f\u0a71\u0a1a \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemUp() { return "\u0a09\u0a71\u0a2a\u0a30 \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$rowsPerPageTitle() { return "\u0a39\u0a30 \u0a2a\u0a70\u0a28\u0a47 '\u0a24\u0a47 \u0a15\u0a24\u0a3e\u0a30\u0a3e\u0a02:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0a38\u0a3e\u0a32 \u0a1a\u0a41\u0a23\u0a4b"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0a06\u0a08\u0a1f\u0a2e \u0a1a\u0a41\u0a23\u0a40 \u0a17\u0a08"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0a06\u0a08\u0a1f\u0a2e\u0a3e\u0a02 \u0a1a\u0a41\u0a23\u0a40\u0a06\u0a02 \u0a17\u0a08\u0a06\u0a02"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0a2e\u0a40\u0a28\u0a42 \u0a26\u0a3f\u0a16\u0a3e\u0a13"; }, get$tabLabelRaw() { return "$tabCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $tabIndex \u0a1f\u0a48\u0a2c"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0a38\u0a2e\u0a3e\u0a02 \u0a1a\u0a41\u0a23\u0a4b"; }, get$timePickerHourLabel() { return "\u0a18\u0a70\u0a1f\u0a3e"; }, get$timePickerHourModeAnnouncement() { return "\u0a18\u0a70\u0a1f\u0a47 \u0a1a\u0a41\u0a23\u0a4b"; }, get$timePickerInputHelpText() { return "\u0a38\u0a2e\u0a3e\u0a02 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$timePickerMinuteLabel() { return "\u0a2e\u0a3f\u0a70\u0a1f"; }, get$timePickerMinuteModeAnnouncement() { return "\u0a2e\u0a3f\u0a70\u0a1f \u0a1a\u0a41\u0a23\u0a4b"; } }; A.MaterialLocalizationPl.prototype = { get$alertDialogLabel() { return "Alert"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Wstecz"; }, get$calendarModeButtonLabel() { return "Prze\u0142\u0105cz na kalendarz"; }, get$cancelButtonLabel() { return "ANULUJ"; }, get$collapsedIconTapHint() { return "Rozwi\u0144"; }, get$dateHelpText() { return "dd.mm.rrrr"; }, get$dateInputLabel() { return "Wpisz dat\u0119"; }, get$dateOutOfRangeLabel() { return "Poza zakresem."; }, get$datePickerHelpText() { return "WYBIERZ DAT\u0118"; }, get$dialModeButtonLabel() { return "W\u0142\u0105cz tryb selektora"; }, get$dialogLabel() { return "Okno dialogowe"; }, get$drawerLabel() { return "Menu nawigacyjne"; }, get$expandedIconTapHint() { return "Zwi\u0144"; }, get$firstPageTooltip() { return "Pierwsza strona"; }, get$inputDateModeButtonLabel() { return "Prze\u0142\u0105cz na wpisywanie"; }, get$inputTimeModeButtonLabel() { return "W\u0142\u0105cz tryb wprowadzania tekstu"; }, get$invalidDateFormatLabel() { return "Nieprawid\u0142owy format."; }, get$invalidTimeLabel() { return "Wpisz prawid\u0142ow\u0105 godzin\u0119"; }, get$lastPageTooltip() { return "Ostatnia strona"; }, get$licensesPackageDetailTextFew() { return "$licenseCount\xa0licencje"; }, get$licensesPackageDetailTextMany() { return "$licenseCount\xa0licencji"; }, get$licensesPackageDetailTextOne() { return "1\xa0licencja"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licencji"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencje"; }, get$modalBarrierDismissLabel() { return "Zamknij"; }, get$nextMonthTooltip() { return "Nast\u0119pny miesi\u0105c"; }, get$nextPageTooltip() { return "Nast\u0119pna strona"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Otw\xf3rz menu nawigacyjne"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow z $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow z oko\u0142o $rowCount"; }, get$popupMenuLabel() { return "Menu kontekstowe"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Poprzedni miesi\u0105c"; }, get$previousPageTooltip() { return "Poprzednia strona"; }, get$refreshIndicatorSemanticLabel() { return "Od\u015bwie\u017c"; }, get$remainingTextFieldCharacterCountFew() { return "Pozosta\u0142y $remainingCount znaki"; }, get$remainingTextFieldCharacterCountMany() { return "Pozosta\u0142o $remainingCount znak\xf3w"; }, get$remainingTextFieldCharacterCountOne() { return "Jeszcze 1 znak"; }, get$remainingTextFieldCharacterCountOther() { return "Pozosta\u0142o $remainingCount znak\xf3w"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Przenie\u015b w d\xf3\u0142"; }, get$reorderItemToEnd() { return "Przenie\u015b na koniec"; }, get$reorderItemToStart() { return "Przenie\u015b na pocz\u0105tek"; }, get$reorderItemUp() { return "Przenie\u015b w g\xf3r\u0119"; }, get$rowsPerPageTitle() { return "Wiersze na stronie:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Wybierz rok"; }, get$selectedRowCountTitleFew() { return "$selectedRowCount wybrane elementy"; }, get$selectedRowCountTitleMany() { return "$selectedRowCount wybranych element\xf3w"; }, get$selectedRowCountTitleOne() { return "1 wybrany element"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount wybranych element\xf3w"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Poka\u017c menu"; }, get$tabLabelRaw() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "WYBIERZ GODZIN\u0118"; }, get$timePickerHourLabel() { return "Godzina"; }, get$timePickerHourModeAnnouncement() { return "Wybierz godziny"; }, get$timePickerInputHelpText() { return "WPISZ GODZIN\u0118"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Wybierz minuty"; } }; A.MaterialLocalizationPs.prototype = { get$alertDialogLabel() { return "\u062e\u0628\u0631\u062a\u06cc\u0627"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0634\u0627\u062a\u0647"; }, get$calendarModeButtonLabel() { return "Switch to calendar"; }, get$cancelButtonLabel() { return "\u0644\u063a\u0648\u0647 \u06a9\u0648\u0644"; }, get$collapsedIconTapHint() { return "Expand"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Enter Date"; }, get$dateOutOfRangeLabel() { return "Out of range."; }, get$datePickerHelpText() { return "SELECT DATE"; }, get$dialModeButtonLabel() { return "Switch to dial picker mode"; }, get$dialogLabel() { return "\u062e\u0628\u0631\u06d0 \u0627\u062a\u0631\u06d0"; }, get$drawerLabel() { return "\u062f \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648"; }, get$expandedIconTapHint() { return "Collapse"; }, get$firstPageTooltip() { return "First page"; }, get$inputDateModeButtonLabel() { return "Switch to input"; }, get$inputTimeModeButtonLabel() { return "Switch to text input mode"; }, get$invalidDateFormatLabel() { return "Invalid format."; }, get$invalidTimeLabel() { return "Enter a valid time"; }, get$lastPageTooltip() { return "Last page"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 license"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u062c\u0648\u0627\u0632\u0648\u0646\u0647"; }, get$modalBarrierDismissLabel() { return "\u0631\u062f \u06a9\u0693\u0647"; }, get$nextMonthTooltip() { return "\u0628\u0644\u0647 \u0645\u06cc\u0627\u0634\u062a"; }, get$nextPageTooltip() { return "\u0628\u0644\u0647 \u067e\u0627\u06bc\u0647"; }, get$okButtonLabel() { return "\u0633\u0645\u0647 \u062f\u0647"; }, get$openAppDrawerTooltip() { return "\u062f \u067e\u0631\u0627\u0646\u06cc\u0633\u062a\u06cc \u0646\u06cc\u06cc\u0646\u06ab \u0645\u06cc\u0646\u0648"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u062f $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0685\u062e\u0647 $rowCount \u062f"; }, get$popupMenuLabel() { return "\u062f \u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u0648"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u062a\u06cc\u0631\u0647 \u0645\u06cc\u0627\u0634\u062a"; }, get$previousPageTooltip() { return "\u0645\u062e\u06a9\u06cc\u0646\u06cc \u0645\u062e"; }, get$refreshIndicatorSemanticLabel() { return "Refresh"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 character remaining"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "No characters remaining"; }, get$reorderItemDown() { return "Move down"; }, get$reorderItemToEnd() { return "Move to the end"; }, get$reorderItemToStart() { return "Move to the start"; }, get$reorderItemUp() { return "Move up"; }, get$rowsPerPageTitle() { return "\u062f \u0647\u0631\u06d0 \u067e\u0627\u06bc\u06d0 \u067e\u0627\u06bc\u06d0:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "Select year"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return null; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u062a\u0648\u06a9\u064a \u063a\u0648\u0631\u0647 \u0634\u0648\u064a"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u063a\u0648\u0631\u0646\u06cd \u069a\u0648\u062f\u0644"; }, get$tabLabelRaw() { return "$tabIndex \u062f $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SELECT TIME"; }, get$timePickerHourLabel() { return "Hour"; }, get$timePickerHourModeAnnouncement() { return "\u0648\u062e\u062a\u0648\u0646\u0647 \u0648\u067c\u0627\u06a9\u0626"; }, get$timePickerInputHelpText() { return "ENTER TIME"; }, get$timePickerMinuteLabel() { return "Minute"; }, get$timePickerMinuteModeAnnouncement() { return "\u0645\u0646\u06d0 \u063a\u0648\u0631\u0647 \u06a9\u0693\u0626"; } }; A.MaterialLocalizationPt.prototype = { get$alertDialogLabel() { return "Alerta"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Voltar"; }, get$calendarModeButtonLabel() { return "Mudar para agenda"; }, get$cancelButtonLabel() { return "CANCELAR"; }, get$collapsedIconTapHint() { return "Abrir"; }, get$dateHelpText() { return "dd/mm/aaaa"; }, get$dateInputLabel() { return "Inserir data"; }, get$dateOutOfRangeLabel() { return "Fora de alcance."; }, get$datePickerHelpText() { return "SELECIONAR DATA"; }, get$dialModeButtonLabel() { return "Alternar para o modo de sele\xe7\xe3o de discagem"; }, get$dialogLabel() { return "Caixa de di\xe1logo"; }, get$drawerLabel() { return "Menu de navega\xe7\xe3o"; }, get$expandedIconTapHint() { return "Recolher"; }, get$firstPageTooltip() { return "Primeira p\xe1gina"; }, get$inputDateModeButtonLabel() { return "Mudar para modo de entrada"; }, get$inputTimeModeButtonLabel() { return "Alternar para o modo de entrada de texto"; }, get$invalidDateFormatLabel() { return "Formato inv\xe1lido."; }, get$invalidTimeLabel() { return "Insira um hor\xe1rio v\xe1lido"; }, get$lastPageTooltip() { return "\xdaltima p\xe1gina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licen\xe7a"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licen\xe7as"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licen\xe7as"; }, get$modalBarrierDismissLabel() { return "Dispensar"; }, get$nextMonthTooltip() { return "Pr\xf3ximo m\xeas"; }, get$nextPageTooltip() { return "Pr\xf3xima p\xe1gina"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Abrir menu de navega\xe7\xe3o"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel() { return "Menu pop-up"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "M\xeas anterior"; }, get$previousPageTooltip() { return "P\xe1gina anterior"; }, get$refreshIndicatorSemanticLabel() { return "Atualizar"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 caractere restante"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount caracteres restantes"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Mover para baixo"; }, get$reorderItemToEnd() { return "Mover para o final"; }, get$reorderItemToStart() { return "Mover para o in\xedcio"; }, get$reorderItemUp() { return "Mover para cima"; }, get$rowsPerPageTitle() { return "Linhas por p\xe1gina:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Selecione o ano"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item selecionado"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount itens selecionados"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Mostrar menu"; }, get$tabLabelRaw() { return "Guia $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SELECIONAR HOR\xc1RIO"; }, get$timePickerHourLabel() { return "Hora"; }, get$timePickerHourModeAnnouncement() { return "Selecione as horas"; }, get$timePickerInputHelpText() { return "INSERIR HOR\xc1RIO"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Selecione os minutos"; } }; A.MaterialLocalizationPtPt.prototype = { get$dialModeButtonLabel() { return "Mude para o modo de seletor de mostrador"; }, get$timePickerDialHelpText() { return "SELECIONAR HORA"; }, get$timePickerInputHelpText() { return "INTRODUZIR HORA"; }, get$invalidTimeLabel() { return "Introduza uma hora v\xe1lida."; }, get$inputTimeModeButtonLabel() { return "Mude para o m\xe9todo de introdu\xe7\xe3o de texto"; }, get$dateInputLabel() { return "Introduzir data"; }, get$calendarModeButtonLabel() { return "Mude para o calend\xe1rio"; }, get$dateOutOfRangeLabel() { return "Fora do intervalo."; }, get$inputDateModeButtonLabel() { return "Mude para a introdu\xe7\xe3o"; }, get$selectYearSemanticsLabel() { return "Selecionar ano"; }, get$tabLabelRaw() { return "Separador $tabIndex de $tabCount"; }, get$timePickerMinuteModeAnnouncement() { return "Selecionar minutos"; }, get$timePickerHourModeAnnouncement() { return "Selecionar horas"; }, get$nextMonthTooltip() { return "M\xeas seguinte"; }, get$nextPageTooltip() { return "P\xe1gina seguinte"; }, get$pageRowsInfoTitleRaw() { return "$firstRow a $lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow a $lastRow de cerca de $rowCount"; }, get$modalBarrierDismissLabel() { return "Ignorar"; }, get$reorderItemToEnd() { return "Mover para o fim"; }, get$expandedIconTapHint() { return "Reduzir"; }, get$collapsedIconTapHint() { return "Expandir"; }, get$remainingTextFieldCharacterCountOne() { return "Resta 1 car\xe1ter"; }, get$remainingTextFieldCharacterCountOther() { return "Restam $remainingCount carateres"; } }; A.MaterialLocalizationRo.prototype = { get$alertDialogLabel() { return "Alert\u0103"; }, get$anteMeridiemAbbreviation() { return "a.m."; }, get$backButtonTooltip() { return "\xcenapoi"; }, get$calendarModeButtonLabel() { return "Comuta\u021bi la calendar"; }, get$cancelButtonLabel() { return "ANULA\u021aI"; }, get$collapsedIconTapHint() { return "Extinde\u021bi"; }, get$dateHelpText() { return "zz.ll.aaaa"; }, get$dateInputLabel() { return "Introduce\u021bi data"; }, get$dateOutOfRangeLabel() { return "F\u0103r\u0103 acoperire."; }, get$datePickerHelpText() { return "SELECTA\u021aI DATA"; }, get$dialModeButtonLabel() { return "Comuta\u021bi la modul selector cadran"; }, get$dialogLabel() { return "Caset\u0103 de dialog"; }, get$drawerLabel() { return "Meniu de navigare"; }, get$expandedIconTapHint() { return "Restr\xe2nge\u021bi"; }, get$firstPageTooltip() { return "Prima pagin\u0103"; }, get$inputDateModeButtonLabel() { return "Comuta\u021bi la introducerea textului"; }, get$inputTimeModeButtonLabel() { return "Comuta\u021bi la modul de introducere a textului"; }, get$invalidDateFormatLabel() { return "Format nevalid."; }, get$invalidTimeLabel() { return "Introduce\u021bi o or\u0103 valid\u0103"; }, get$lastPageTooltip() { return "Ultima pagin\u0103"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licen\u021be"; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "O licen\u021b\u0103"; }, get$licensesPackageDetailTextOther() { return "$licenseCount de licen\u021be"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licen\u021be"; }, get$modalBarrierDismissLabel() { return "\xcenchide\u021bi"; }, get$nextMonthTooltip() { return "Luna viitoare"; }, get$nextPageTooltip() { return "Pagina urm\u0103toare"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Deschide\u021bi meniul de navigare"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow din $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow din aproximativ $rowCount"; }, get$popupMenuLabel() { return "Meniu pop-up"; }, get$postMeridiemAbbreviation() { return "p.m."; }, get$previousMonthTooltip() { return "Luna trecut\u0103"; }, get$previousPageTooltip() { return "Pagina anterioar\u0103"; }, get$refreshIndicatorSemanticLabel() { return "Actualiza\u021bi"; }, get$remainingTextFieldCharacterCountFew() { return "$remainingCount caractere r\u0103mase"; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "un caracter r\u0103mas"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount de caractere r\u0103mase"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Muta\u021bi \xeen jos"; }, get$reorderItemToEnd() { return "Muta\u021bi la sf\xe2r\u0219it"; }, get$reorderItemToStart() { return "Muta\u021bi la \xeenceput"; }, get$reorderItemUp() { return "Muta\u021bi \xeen sus"; }, get$rowsPerPageTitle() { return "R\xe2nduri pe pagin\u0103:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Selecta\u021bi anul"; }, get$selectedRowCountTitleFew() { return "$selectedRowCount articole selectate"; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Un articol selectat"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount de articole selectate"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Nu exist\u0103 elemente selectate"; }, get$showMenuTooltip() { return "Afi\u0219a\u021bi meniul"; }, get$tabLabelRaw() { return "Fila $tabIndex din $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SELECTA\u021aI ORA"; }, get$timePickerHourLabel() { return "Or\u0103"; }, get$timePickerHourModeAnnouncement() { return "Selecta\u021bi orele"; }, get$timePickerInputHelpText() { return "INTRODUCE\u021aI ORA"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "Selecta\u021bi minutele"; } }; A.MaterialLocalizationRu.prototype = { get$alertDialogLabel() { return "\u041e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435"; }, get$anteMeridiemAbbreviation() { return "\u0410\u041c"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c"; }, get$cancelButtonLabel() { return "\u041e\u0422\u041c\u0415\u041d\u0410"; }, get$collapsedIconTapHint() { return "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c"; }, get$dateHelpText() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel() { return "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel() { return "\u0414\u0430\u0442\u0430 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432\u043d\u0435 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0433\u043e \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430."; }, get$datePickerHelpText() { return "\u0412\u042b\u0411\u0415\u0420\u0418\u0422\u0415 \u0414\u0410\u0422\u0423"; }, get$dialModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u044b\u0431\u043e\u0440\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438"; }, get$dialogLabel() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"; }, get$expandedIconTapHint() { return "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c"; }, get$firstPageTooltip() { return "\u041f\u0435\u0440\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$inputDateModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u0440\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0432\u043e\u0434\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"; }, get$invalidDateFormatLabel() { return "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u044b."; }, get$invalidTimeLabel() { return "\u0423\u043a\u0430\u0437\u0430\u043d\u043e \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0432\u0440\u0435\u043c\u044f."; }, get$lastPageTooltip() { return "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$licensesPackageDetailTextFew() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$licensesPackageDetailTextMany() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0439"; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$modalBarrierDismissLabel() { return "\u0417\u0430\u043a\u0440\u044b\u0442\u044c"; }, get$nextMonthTooltip() { return "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446"; }, get$nextPageTooltip() { return "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel() { return "\u041e\u041a"; }, get$openAppDrawerTooltip() { return "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0438\u0437\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0438\u0437 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\xa0$rowCount"; }, get$popupMenuLabel() { return "\u0412\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446"; }, get$previousPageTooltip() { return "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435"; }, get$remainingTextFieldCharacterCountFew() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"; }, get$remainingTextFieldCharacterCountMany() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432"; }, get$remainingTextFieldCharacterCountOne() { return "\u041e\u0441\u0442\u0430\u043b\u0441\u044f 1\xa0\u0441\u0438\u043c\u0432\u043e\u043b"; }, get$remainingTextFieldCharacterCountOther() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u043d\u0438\u0437"; }, get$reorderItemToEnd() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u043a\u043e\u043d\u0435\u0446"; }, get$reorderItemToStart() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u043d\u0430\u0447\u0430\u043b\u043e"; }, get$reorderItemUp() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u0432\u0435\u0440\u0445"; }, get$rowsPerPageTitle() { return "\u0421\u0442\u0440\u043e\u043a \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u043e\u0434"; }, get$selectedRowCountTitleFew() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u0430"; }, get$selectedRowCountTitleMany() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432"; }, get$selectedRowCountTitleOne() { return "\u0412\u044b\u0431\u0440\u0430\u043d 1\xa0\u043e\u0431\u044a\u0435\u043a\u0442"; }, get$selectedRowCountTitleOther() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u0430"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u0421\u0442\u0440\u043e\u043a\u0438 \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u044b"; }, get$showMenuTooltip() { return "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw() { return "\u0412\u043a\u043b\u0430\u0434\u043a\u0430\xa0$tabIndex \u0438\u0437\xa0$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0412\u042b\u0411\u0415\u0420\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u042f"; }, get$timePickerHourLabel() { return "\u0427\u0430\u0441\u044b"; }, get$timePickerHourModeAnnouncement() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0447\u0430\u0441\u044b"; }, get$timePickerInputHelpText() { return "\u0412\u0412\u0415\u0414\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u042f"; }, get$timePickerMinuteLabel() { return "\u041c\u0438\u043d\u0443\u0442\u044b"; }, get$timePickerMinuteModeAnnouncement() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u044b"; } }; A.MaterialLocalizationSi.prototype = { get$alertDialogLabel() { return "\u0d87\u0d9f\u0dc0\u0dd3\u0db8"; }, get$anteMeridiemAbbreviation() { return "\u0db4\u0dd9.\u0dc0."; }, get$backButtonTooltip() { return "\u0d86\u0db4\u0dc3\u0dd4"; }, get$calendarModeButtonLabel() { return "\u0daf\u0dd2\u0db1 \u0daf\u0dbb\u0dca\u0dc1\u0db1\u0dba \u0dc0\u0dd9\u0dad \u0db8\u0dcf\u0dbb\u0dd4 \u0dc0\u0db1\u0dca\u0db1"; }, get$cancelButtonLabel() { return "\u0d85\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$collapsedIconTapHint() { return "\u0daf\u0dd2\u0d9c \u0dc4\u0dbb\u0dd2\u0db1\u0dca\u0db1"; }, get$dateHelpText() { return "mm.dd.yyyy"; }, get$dateInputLabel() { return "\u0daf\u0dd2\u0db1\u0dba \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$dateOutOfRangeLabel() { return "\u0db4\u0dbb\u0dcf\u0dc3\u0dba\u0dd9\u0db1\u0dca \u0db4\u0dd2\u0da7\u0dad."; }, get$datePickerHelpText() { return "\u0daf\u0dd2\u0db1\u0dba \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$dialModeButtonLabel() { return "\u0da9\u0dba\u0dbd\u0db1 \u0dad\u0ddd\u0dbb\u0d9a \u0db4\u0dca\u200d\u0dbb\u0d9a\u0dcf\u0dbb\u0dba\u0da7 \u0db8\u0dcf\u0dbb\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$dialogLabel() { return "\u0dc3\u0d82\u0dc0\u0dcf\u0daf\u0dba"; }, get$drawerLabel() { return "\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"; }, get$expandedIconTapHint() { return "\u0dc4\u0d9a\u0dd4\u0dc5\u0db1\u0dca\u0db1"; }, get$firstPageTooltip() { return "\u0db4\u0dc5\u0db8\u0dd4 \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$inputDateModeButtonLabel() { return "\u0d86\u0daf\u0dcf\u0db1\u0dba \u0dc0\u0dd9\u0dad \u0db8\u0dcf\u0dbb\u0dd4 \u0dc0\u0db1\u0dca\u0db1"; }, get$inputTimeModeButtonLabel() { return "\u0db4\u0dd9\u0dc5 \u0d86\u0daf\u0dcf\u0db1 \u0db4\u0dca\u200d\u0dbb\u0d9a\u0dcf\u0dbb\u0dba\u0da7 \u0db8\u0dcf\u0dbb\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$invalidDateFormatLabel() { return "\u0d85\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0d86\u0d9a\u0dd8\u0dad\u0dd2\u0dba\u0d9a\u0dd2."; }, get$invalidTimeLabel() { return "\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0dc0\u0dda\u0dbd\u0dcf\u0dc0\u0d9a\u0dca \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$lastPageTooltip() { return "\u0d85\u0dc0\u0dc3\u0db1\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb 1"; }, get$licensesPackageDetailTextOther() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb $licenseCount"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb"; }, get$modalBarrierDismissLabel() { return "\u0d89\u0dc0\u0dad \u0dbd\u0db1\u0dca\u0db1"; }, get$nextMonthTooltip() { return "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dc3\u0dba"; }, get$nextPageTooltip() { return "\u0d8a\u0dc5\u0d9f \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$okButtonLabel() { return "\u0dc4\u0dbb\u0dd2"; }, get$openAppDrawerTooltip() { return "\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0dc0\u0dd2\u0dc0\u0dd8\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u0db1\u0dca $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount\u0d9a\u0dd2\u0db1\u0dca \u0db4\u0db8\u0dab $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0d8b\u0dad\u0dca\u0db4\u0dad\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"; }, get$postMeridiemAbbreviation() { return "\u0db4.\u0dc0."; }, get$previousMonthTooltip() { return "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dc3\u0dba"; }, get$previousPageTooltip() { return "\u0db4\u0dd9\u0dbb \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$refreshIndicatorSemanticLabel() { return "\u0db1\u0dd0\u0dc0\u0dd4\u0db8\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 1\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"; }, get$remainingTextFieldCharacterCountOther() { return "\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 $remainingCount\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0db4\u0dc4\u0dc5\u0da7 \u0d9c\u0dd9\u0db1 \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemToEnd() { return "\u0d85\u0dc0\u0dc3\u0dcf\u0db1\u0dba\u0da7 \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemToStart() { return "\u0d86\u0dbb\u0db8\u0dca\u0db7\u0dba \u0dc0\u0dd9\u0dad \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemUp() { return "\u0d89\u0dc4\u0dc5\u0da7 \u0d9c\u0dd9\u0db1 \u0dba\u0db1\u0dca\u0db1"; }, get$rowsPerPageTitle() { return "\u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0d9a\u0da7 \u0db4\u0dda\u0dc5\u0dd2:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0dc0\u0dbb\u0dca\u0dc2\u0dba \u0dad\u0ddc\u0dca\u0dbb\u0db1\u0dca\u0db1"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0d85\u0dba\u0dd2\u0dad\u0db8 1\u0d9a\u0dca \u0dad\u0ddd\u0dbb\u0db1 \u0dbd\u0daf\u0dd3"; }, get$selectedRowCountTitleOther() { return "\u0d85\u0dba\u0dd2\u0dad\u0db8 $selectedRowCount\u0d9a\u0dca \u0dad\u0ddd\u0dbb\u0db1 \u0dbd\u0daf\u0dd3"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1"; }, get$tabLabelRaw() { return "\u0da7\u0dd0\u0db6 $tabIndex\u0d9a\u0dd2\u0db1\u0dca $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0dc0\u0dda\u0dbd\u0dcf\u0dc0 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerHourLabel() { return "\u0db4\u0dd0\u0dba"; }, get$timePickerHourModeAnnouncement() { return "\u0db4\u0dd0\u0dba \u0d9c\u0dab\u0db1 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerInputHelpText() { return "\u0daf\u0dd2\u0db1\u0dba \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerMinuteLabel() { return "\u0db8\u0dd2\u0db1\u0dd2\u0dad\u0dca\u0dad\u0dd4"; }, get$timePickerMinuteModeAnnouncement() { return "\u0db8\u0dd2\u0db1\u0dd2\u0dad\u0dca\u0dad\u0dd4 \u0d9c\u0dab\u0db1 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; } }; A.MaterialLocalizationSk.prototype = { get$alertDialogLabel() { return "Upozornenie"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Sp\xe4\u0165"; }, get$calendarModeButtonLabel() { return "Prepn\xfa\u0165 na kalend\xe1r"; }, get$cancelButtonLabel() { return "ZRU\u0160I\u0164"; }, get$collapsedIconTapHint() { return "Rozbali\u0165"; }, get$dateHelpText() { return "mm.dd.yyyy"; }, get$dateInputLabel() { return "Zadajte d\xe1tum"; }, get$dateOutOfRangeLabel() { return "Mimo rozsahu."; }, get$datePickerHelpText() { return "VYBERTE D\xc1TUM"; }, get$dialModeButtonLabel() { return "Prepn\xfa\u0165 na re\u017eim v\xfdberu \u010dasu"; }, get$dialogLabel() { return "Dial\xf3gov\xe9 okno"; }, get$drawerLabel() { return "Naviga\u010dn\xe1 ponuka"; }, get$expandedIconTapHint() { return "Zbali\u0165"; }, get$firstPageTooltip() { return "Prv\xe1 strana"; }, get$inputDateModeButtonLabel() { return "Prepn\xfa\u0165 na zad\xe1vanie"; }, get$inputTimeModeButtonLabel() { return "Prepn\xfa\u0165 na textov\xfd re\u017eim vstupu"; }, get$invalidDateFormatLabel() { return "Neplatn\xfd form\xe1t."; }, get$invalidTimeLabel() { return "Zadajte platn\xfd \u010das"; }, get$lastPageTooltip() { return "Posledn\xe1 strana"; }, get$licensesPackageDetailTextFew() { return "$licenseCount\xa0licencie"; }, get$licensesPackageDetailTextMany() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextOne() { return "1\xa0licencia"; }, get$licensesPackageDetailTextOther() { return "$licenseCount\xa0licenci\xed"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencie"; }, get$modalBarrierDismissLabel() { return "Odmietnu\u0165"; }, get$nextMonthTooltip() { return "Bud\xfaci mesiac"; }, get$nextPageTooltip() { return "\u010eal\u0161ia strana"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Otvori\u0165 naviga\u010dn\xfa ponuku"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\xa0\u2013\xa0$lastRow z\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\xa0\u2013\xa0$lastRow z\xa0pribli\u017ene $rowCount"; }, get$popupMenuLabel() { return "Kontextov\xe1 ponuka"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Predo\u0161l\xfd mesiac"; }, get$previousPageTooltip() { return "Predch\xe1dzaj\xfaca str\xe1nka"; }, get$refreshIndicatorSemanticLabel() { return "Obnovi\u0165"; }, get$remainingTextFieldCharacterCountFew() { return "Zost\xe1vaj\xfa $remainingCount\xa0znaky"; }, get$remainingTextFieldCharacterCountMany() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountOne() { return "Zost\xe1va 1\xa0znak"; }, get$remainingTextFieldCharacterCountOther() { return "Zost\xe1va $remainingCount\xa0znakov"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Presun\xfa\u0165 nadol"; }, get$reorderItemToEnd() { return "Presun\xfa\u0165 na koniec"; }, get$reorderItemToStart() { return "Presun\xfa\u0165 na za\u010diatok"; }, get$reorderItemUp() { return "Presun\xfa\u0165 nahor"; }, get$rowsPerPageTitle() { return "Po\u010det riadkov na str\xe1nku:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Vyberte rok"; }, get$selectedRowCountTitleFew() { return "$selectedRowCount vybrat\xe9 polo\u017eky"; }, get$selectedRowCountTitleMany() { return "$selectedRowCount items selected"; }, get$selectedRowCountTitleOne() { return "1\xa0vybrat\xe1 polo\u017eka"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount vybrat\xfdch polo\u017eiek"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Zobrazi\u0165 ponuku"; }, get$tabLabelRaw() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "VYBERTE \u010cAS"; }, get$timePickerHourLabel() { return "Hodina"; }, get$timePickerHourModeAnnouncement() { return "Vybra\u0165 hodiny"; }, get$timePickerInputHelpText() { return "ZADAJTE \u010cAS"; }, get$timePickerMinuteLabel() { return "Min\xfata"; }, get$timePickerMinuteModeAnnouncement() { return "Vybra\u0165 min\xfaty"; } }; A.MaterialLocalizationSl.prototype = { get$alertDialogLabel() { return "Opozorilo"; }, get$anteMeridiemAbbreviation() { return "DOP."; }, get$backButtonTooltip() { return "Nazaj"; }, get$calendarModeButtonLabel() { return "Preklop na koledar"; }, get$cancelButtonLabel() { return "PREKLI\u010cI"; }, get$collapsedIconTapHint() { return "Raz\u0161iriti"; }, get$dateHelpText() { return "dd. mm. llll"; }, get$dateInputLabel() { return "Vnesite datum"; }, get$dateOutOfRangeLabel() { return "Zunaj dovoljenega obdobja"; }, get$datePickerHelpText() { return "IZBIRA DATUMA"; }, get$dialModeButtonLabel() { return "Preklop na na\u010din izbirnika s \u0161tevil\u010dnico"; }, get$dialogLabel() { return "Pogovorno okno"; }, get$drawerLabel() { return "Meni za krmarjenje"; }, get$expandedIconTapHint() { return "Strniti"; }, get$firstPageTooltip() { return "Prva stran"; }, get$inputDateModeButtonLabel() { return "Preklop na vnos"; }, get$inputTimeModeButtonLabel() { return "Preklop na na\u010din vnosa besedila"; }, get$invalidDateFormatLabel() { return "Neveljavna oblika"; }, get$invalidTimeLabel() { return "Vnesite veljaven \u010das"; }, get$lastPageTooltip() { return "Zadnja stran"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenca"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenc"; }, get$licensesPackageDetailTextTwo() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licence"; }, get$modalBarrierDismissLabel() { return "Opusti"; }, get$nextMonthTooltip() { return "Naslednji mesec"; }, get$nextPageTooltip() { return "Naslednja stran"; }, get$okButtonLabel() { return "V REDU"; }, get$openAppDrawerTooltip() { return "Odpiranje menija za krmarjenje"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow od pribli\u017eno $rowCount"; }, get$popupMenuLabel() { return "Pojavni meni"; }, get$postMeridiemAbbreviation() { return "POP."; }, get$previousMonthTooltip() { return "Prej\u0161nji mesec"; }, get$previousPageTooltip() { return "Prej\u0161nja stran"; }, get$refreshIndicatorSemanticLabel() { return "Osve\u017ei"; }, get$remainingTextFieldCharacterCountFew() { return "\u0160e $remainingCount znaki"; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0160e 1 znak"; }, get$remainingTextFieldCharacterCountOther() { return "\u0160e $remainingCount znakov"; }, get$remainingTextFieldCharacterCountTwo() { return "\u0160e $remainingCount znaka"; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Premakni navzdol"; }, get$reorderItemToEnd() { return "Premakni na konec"; }, get$reorderItemToStart() { return "Premakni na za\u010detek"; }, get$reorderItemUp() { return "Premakni navzgor"; }, get$rowsPerPageTitle() { return "Vrstice na stran:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Izberite leto"; }, get$selectedRowCountTitleFew() { return "Izbrani so $selectedRowCount elementi"; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Izbran je 1 element"; }, get$selectedRowCountTitleOther() { return "Izbranih je $selectedRowCount elementov"; }, get$selectedRowCountTitleTwo() { return "Izbrana sta $selectedRowCount elementa"; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Prikaz menija"; }, get$tabLabelRaw() { return "Zavihek $tabIndex od $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "IZBERITE \u010cAS"; }, get$timePickerHourLabel() { return "Ura"; }, get$timePickerHourModeAnnouncement() { return "Izberite ure"; }, get$timePickerInputHelpText() { return "VNESITE \u010cAS"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Izberite minute"; } }; A.MaterialLocalizationSq.prototype = { get$alertDialogLabel() { return "Sinjalizim"; }, get$anteMeridiemAbbreviation() { return "paradite"; }, get$backButtonTooltip() { return "Prapa"; }, get$calendarModeButtonLabel() { return "Kalo te kalendari"; }, get$cancelButtonLabel() { return "ANULO"; }, get$collapsedIconTapHint() { return "Zgjero"; }, get$dateHelpText() { return "dd.mm.yyyy"; }, get$dateInputLabel() { return "Vendos dat\xebn"; }, get$dateOutOfRangeLabel() { return "Jasht\xeb rrezes."; }, get$datePickerHelpText() { return "ZGJIDH DAT\xcbN"; }, get$dialModeButtonLabel() { return "Kalo te modaliteti i zgjedh\xebsit t\xeb or\xebs"; }, get$dialogLabel() { return "Dialogu"; }, get$drawerLabel() { return "Menyja e navigimit"; }, get$expandedIconTapHint() { return "Palos"; }, get$firstPageTooltip() { return "Faqja e par\xeb"; }, get$inputDateModeButtonLabel() { return "Kalo te hyrja"; }, get$inputTimeModeButtonLabel() { return "Kalo te modaliteti i hyrjes s\xeb tekstit"; }, get$invalidDateFormatLabel() { return "Format i pavlefsh\xebm."; }, get$invalidTimeLabel() { return "Fut nj\xeb koh\xeb t\xeb vlefshme"; }, get$lastPageTooltip() { return "Faqja e fundit"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licenc\xeb"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenca"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licencat"; }, get$modalBarrierDismissLabel() { return "Hiq"; }, get$nextMonthTooltip() { return "Muaji i ardhsh\xebm"; }, get$nextPageTooltip() { return "Faqja tjet\xebr"; }, get$okButtonLabel() { return "N\xeb rregull"; }, get$openAppDrawerTooltip() { return "Hap menyn\xeb e navigimit"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow nga $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow nga rreth $rowCount"; }, get$popupMenuLabel() { return "Menyja k\xebrcyese"; }, get$postMeridiemAbbreviation() { return "pasdite"; }, get$previousMonthTooltip() { return "Muaji i m\xebparsh\xebm"; }, get$previousPageTooltip() { return "Faqja e m\xebparshme"; }, get$refreshIndicatorSemanticLabel() { return "Rifresko"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 karakter i mbetur"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount karaktere t\xeb mbetura"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "L\xebvize posht\xeb"; }, get$reorderItemToEnd() { return "L\xebvize n\xeb fund"; }, get$reorderItemToStart() { return "L\xebvize n\xeb fillim"; }, get$reorderItemUp() { return "L\xebvize lart"; }, get$rowsPerPageTitle() { return "Rreshtat p\xebr faqe:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Zgjidh vitin"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "U zgjodh 1 artikull"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount artikuj u zgjodh\xebn"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Shfaq menyn\xeb"; }, get$tabLabelRaw() { return "Skeda $tabIndex nga $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "ZGJIDH OR\xcbN"; }, get$timePickerHourLabel() { return "Ora"; }, get$timePickerHourModeAnnouncement() { return "Zgjidh or\xebt"; }, get$timePickerInputHelpText() { return "VENDOS OR\xcbN"; }, get$timePickerMinuteLabel() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement() { return "Zgjidh minutat"; } }; A.MaterialLocalizationSr.prototype = { get$alertDialogLabel() { return "\u041e\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045a\u0435"; }, get$anteMeridiemAbbreviation() { return "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel() { return "\u041e\u0422\u041a\u0410\u0416\u0418"; }, get$collapsedIconTapHint() { return "\u041f\u0440\u043e\u0448\u0438\u0440\u0438"; }, get$dateHelpText() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433."; }, get$dateInputLabel() { return "\u0423\u043d\u0435\u0441\u0438\u0442\u0435 \u0434\u0430\u0442\u0443\u043c"; }, get$dateOutOfRangeLabel() { return "\u0418\u0437\u0432\u0430\u043d \u043f\u0435\u0440\u0438\u043e\u0434\u0430."; }, get$datePickerHelpText() { return "\u0418\u0417\u0410\u0411\u0415\u0420\u0418\u0422\u0415 \u0414\u0410\u0422\u0423\u041c"; }, get$dialModeButtonLabel() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0431\u0438\u0440\u0430\u0447\u0430 \u0431\u0440\u043e\u0458\u0447\u0430\u043d\u0438\u043a\u0430"; }, get$dialogLabel() { return "\u0414\u0438\u0458\u0430\u043b\u043e\u0433"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"; }, get$expandedIconTapHint() { return "\u0421\u043a\u0443\u043f\u0438"; }, get$firstPageTooltip() { return "\u041f\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$inputDateModeButtonLabel() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0443\u043d\u043e\u0441"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0443\u043d\u043e\u0441\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"; }, get$invalidDateFormatLabel() { return "\u0424\u043e\u0440\u043c\u0430\u0442 \u0458\u0435 \u043d\u0435\u0432\u0430\u0436\u0435\u045b\u0438."; }, get$invalidTimeLabel() { return "\u0423\u043d\u0435\u0441\u0438\u0442\u0435 \u0432\u0430\u0436\u0435\u045b\u0435 \u0432\u0440\u0435\u043c\u0435"; }, get$lastPageTooltip() { return "\u041f\u043e\u0441\u043b\u0435\u0434\u045a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$licensesPackageDetailTextFew() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0435"; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0438\u0446\u0435\u043d\u0446\u0430"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0438\u0446\u0435\u043d\u0446\u0435"; }, get$modalBarrierDismissLabel() { return "\u041e\u0434\u0431\u0430\u0446\u0438"; }, get$nextMonthTooltip() { return "\u0421\u043b\u0435\u0434\u0435\u045b\u0438 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip() { return "\u0421\u043b\u0435\u0434\u0435\u045b\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel() { return "\u041f\u043e\u0442\u0432\u0440\u0434\u0438"; }, get$openAppDrawerTooltip() { return "\u041e\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u043c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow o\u0434 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow o\u0434 \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u043d\u043e $rowCount"; }, get$popupMenuLabel() { return "\u0418\u0441\u043a\u0430\u0447\u0443\u045b\u0438 \u043c\u0435\u043d\u0438"; }, get$postMeridiemAbbreviation() { return "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"; }, get$previousMonthTooltip() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u041e\u0441\u0432\u0435\u0436\u0438"; }, get$remainingTextFieldCharacterCountFew() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u0430 \u0441\u0443 $remainingCount \u0437\u043d\u0430\u043a\u0430"; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043e \u0458\u0435 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u043e \u0458\u0435 $remainingCount \u0437\u043d\u0430\u043a\u043e\u0432\u0430"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0434\u043e\u043b\u0435"; }, get$reorderItemToEnd() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430 \u043a\u0440\u0430\u0458"; }, get$reorderItemToStart() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u0447\u0435\u0442\u0430\u043a"; }, get$reorderItemUp() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$rowsPerPageTitle() { return "\u0420\u0435\u0434\u043e\u0432\u0430 \u043f\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u043e\u0434\u0438\u043d\u0443"; }, get$selectedRowCountTitleFew() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u0435 \u0441\u0443 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0435"; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u0430 \u0458\u0435 1 \u0441\u0442\u0430\u0432\u043a\u0430"; }, get$selectedRowCountTitleOther() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u043e \u0458\u0435 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0438"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"; }, get$tabLabelRaw() { return "$tabIndex. \u043a\u0430\u0440\u0442\u0438\u0446\u0430 \u043e\u0434 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "\u0418\u0417\u0410\u0411\u0415\u0420\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerHourLabel() { return "\u0421\u0430\u0442"; }, get$timePickerHourModeAnnouncement() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u0430\u0442\u0435"; }, get$timePickerInputHelpText() { return "\u0423\u041d\u0415\u0421\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerMinuteLabel() { return "\u041c\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"; } }; A.MaterialLocalizationSrCyrl.prototype = {}; A.MaterialLocalizationSrLatn.prototype = { get$alertDialogLabel() { return "Obave\u0161tenje"; }, get$anteMeridiemAbbreviation() { return "pre podne"; }, get$backButtonTooltip() { return "Nazad"; }, get$calendarModeButtonLabel() { return "Pre\u0111ite na kalendar"; }, get$cancelButtonLabel() { return "OTKA\u017dI"; }, get$collapsedIconTapHint() { return "Pro\u0161iri"; }, get$dateHelpText() { return "dd.mm.gggg."; }, get$dateInputLabel() { return "Unesite datum"; }, get$dateOutOfRangeLabel() { return "Izvan perioda."; }, get$datePickerHelpText() { return "IZABERITE DATUM"; }, get$dialModeButtonLabel() { return "Pre\u0111ite na re\u017eim bira\u010da broj\u010danika"; }, get$dialogLabel() { return "Dijalog"; }, get$drawerLabel() { return "Meni za navigaciju"; }, get$expandedIconTapHint() { return "Skupi"; }, get$firstPageTooltip() { return "Prva stranica"; }, get$inputDateModeButtonLabel() { return "Pre\u0111ite na unos"; }, get$inputTimeModeButtonLabel() { return "Pre\u0111ite na re\u017eim unosa teksta"; }, get$invalidDateFormatLabel() { return "Format je neva\u017eec\u0301i."; }, get$invalidTimeLabel() { return "Unesite va\u017eec\u0301e vreme"; }, get$lastPageTooltip() { return "Poslednja stranica"; }, get$licensesPackageDetailTextFew() { return "$licenseCount licence"; }, get$licensesPackageDetailTextOne() { return "1 licenca"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenci"; }, get$licensesPageTitle() { return "Licence"; }, get$modalBarrierDismissLabel() { return "Odbaci"; }, get$nextMonthTooltip() { return "Sledec\u0301i mesec"; }, get$nextPageTooltip() { return "Sledec\u0301a stranica"; }, get$okButtonLabel() { return "Potvrdi"; }, get$openAppDrawerTooltip() { return "Otvorite meni za navigaciju"; }, get$pageRowsInfoTitleRaw() { return "$firstRow \u2013 $lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow \u2013 $lastRow od pribli\u017eno $rowCount"; }, get$popupMenuLabel() { return "Iska\u010duc\u0301i meni"; }, get$postMeridiemAbbreviation() { return "po podne"; }, get$previousMonthTooltip() { return "Prethodni mesec"; }, get$previousPageTooltip() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel() { return "Osve\u017ei"; }, get$remainingTextFieldCharacterCountFew() { return "Preostala su $remainingCount znaka"; }, get$remainingTextFieldCharacterCountOne() { return "Preostao je 1 znak"; }, get$remainingTextFieldCharacterCountOther() { return "Preostalo je $remainingCount znakova"; }, get$reorderItemDown() { return "Pomerite nadole"; }, get$reorderItemToEnd() { return "Pomerite na kraj"; }, get$reorderItemToStart() { return "Pomerite na po\u010detak"; }, get$reorderItemUp() { return "Pomerite nagore"; }, get$rowsPerPageTitle() { return "Redova po stranici:"; }, get$selectYearSemanticsLabel() { return "Izaberite godinu"; }, get$selectedRowCountTitleFew() { return "Izabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleOne() { return "Izabrana je 1 stavka"; }, get$selectedRowCountTitleOther() { return "Izabrano je $selectedRowCount stavki"; }, get$showMenuTooltip() { return "Prika\u017ei meni"; }, get$tabLabelRaw() { return "$tabIndex. kartica od $tabCount"; }, get$timePickerDialHelpText() { return "IZABERITE VREME"; }, get$timePickerHourLabel() { return "Sat"; }, get$timePickerHourModeAnnouncement() { return "Izaberite sate"; }, get$timePickerInputHelpText() { return "UNESITE VREME"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "Izaberite minute"; } }; A.MaterialLocalizationSv.prototype = { get$alertDialogLabel() { return "Varning"; }, get$anteMeridiemAbbreviation() { return "FM"; }, get$backButtonTooltip() { return "Tillbaka"; }, get$calendarModeButtonLabel() { return "Byt till kalender"; }, get$cancelButtonLabel() { return "AVBRYT"; }, get$collapsedIconTapHint() { return "Ut\xf6ka"; }, get$dateHelpText() { return "\xe5\xe5\xe5\xe5-mm-dd"; }, get$dateInputLabel() { return "Ange datum"; }, get$dateOutOfRangeLabel() { return "Utanf\xf6r intervallet."; }, get$datePickerHelpText() { return "V\xc4LJ DATUM"; }, get$dialModeButtonLabel() { return "Byt till l\xe4get urtavlev\xe4ljare"; }, get$dialogLabel() { return "Dialogruta"; }, get$drawerLabel() { return "Navigeringsmeny"; }, get$expandedIconTapHint() { return "D\xf6lj"; }, get$firstPageTooltip() { return "F\xf6rsta sidan"; }, get$inputDateModeButtonLabel() { return "Byt till inmatning"; }, get$inputTimeModeButtonLabel() { return "Byt till text som inmatningsl\xe4ge"; }, get$invalidDateFormatLabel() { return "Ogiltigt format."; }, get$invalidTimeLabel() { return "Ange en giltig tid"; }, get$lastPageTooltip() { return "Sista sidan"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 licens"; }, get$licensesPackageDetailTextOther() { return "$licenseCount licenser"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Licenser"; }, get$modalBarrierDismissLabel() { return "St\xe4ng"; }, get$nextMonthTooltip() { return "N\xe4sta m\xe5nad"; }, get$nextPageTooltip() { return "N\xe4sta sida"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\xd6ppna navigeringsmenyn"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow av ungef\xe4r $rowCount"; }, get$popupMenuLabel() { return "Popup-meny"; }, get$postMeridiemAbbreviation() { return "EM"; }, get$previousMonthTooltip() { return "F\xf6reg\xe5ende m\xe5nad"; }, get$previousPageTooltip() { return "F\xf6reg\xe5ende sida"; }, get$refreshIndicatorSemanticLabel() { return "Uppdatera"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 tecken kvar"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount tecken kvar"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Flytta ned\xe5t"; }, get$reorderItemToEnd() { return "Flytta till slutet"; }, get$reorderItemToStart() { return "Flytta till b\xf6rjan"; }, get$reorderItemUp() { return "Flytta upp\xe5t"; }, get$rowsPerPageTitle() { return "Rader per sida:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "V\xe4lj \xe5r"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 objekt har markerats"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount objekt har markerats"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Visa meny"; }, get$tabLabelRaw() { return "Flik $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "V\xc4LJ TID"; }, get$timePickerHourLabel() { return "Timme"; }, get$timePickerHourModeAnnouncement() { return "V\xe4lj timmar"; }, get$timePickerInputHelpText() { return "ANGE TID"; }, get$timePickerMinuteLabel() { return "Minut"; }, get$timePickerMinuteModeAnnouncement() { return "V\xe4lj minuter"; } }; A.MaterialLocalizationSw.prototype = { get$alertDialogLabel() { return "Arifa"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Rudi Nyuma"; }, get$calendarModeButtonLabel() { return "Badili utumie hali ya kalenda"; }, get$cancelButtonLabel() { return "GHAIRI"; }, get$collapsedIconTapHint() { return "Panua"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "Weka Tarehe"; }, get$dateOutOfRangeLabel() { return "Umechagua tarehe iliyo nje ya kipindi."; }, get$datePickerHelpText() { return "CHAGUA TAREHE"; }, get$dialModeButtonLabel() { return "Badilisha ili utumie hali ya kiteuzi cha kupiga simu"; }, get$dialogLabel() { return "Kidirisha"; }, get$drawerLabel() { return "Menyu ya kusogeza"; }, get$expandedIconTapHint() { return "Kunja"; }, get$firstPageTooltip() { return "Ukurasa wa kwanza"; }, get$inputDateModeButtonLabel() { return "Badili utumie hali ya kuweka maandishi"; }, get$inputTimeModeButtonLabel() { return "Tumia programu ya kuingiza data ya maandishi"; }, get$invalidDateFormatLabel() { return "Muundo si sahihi."; }, get$invalidTimeLabel() { return "Weka saa sahihi"; }, get$lastPageTooltip() { return "Ukurasa wa mwisho"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "Leseni moja"; }, get$licensesPackageDetailTextOther() { return "Leseni $licenseCount"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Leseni"; }, get$modalBarrierDismissLabel() { return "Ondoa"; }, get$nextMonthTooltip() { return "Mwezi ujao"; }, get$nextPageTooltip() { return "Ukurasa unaofuata"; }, get$okButtonLabel() { return "Sawa"; }, get$openAppDrawerTooltip() { return "Fungua menyu ya kusogeza"; }, get$pageRowsInfoTitleRaw() { return "$firstRow hadi $lastRow kati ya $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow hadi $lastRow kati ya takriban $rowCount"; }, get$popupMenuLabel() { return "Menyu ibukizi"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Mwezi uliopita"; }, get$previousPageTooltip() { return "Ukurasa uliotangulia"; }, get$refreshIndicatorSemanticLabel() { return "Onyesha upya"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Imesalia herufi 1"; }, get$remainingTextFieldCharacterCountOther() { return "Zimesalia herufi $remainingCount"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "Hapana herufi zilizo baki"; }, get$reorderItemDown() { return "Sogeza chini"; }, get$reorderItemToEnd() { return "Sogeza hadi mwisho"; }, get$reorderItemToStart() { return "Sogeza hadi mwanzo"; }, get$reorderItemUp() { return "Sogeza juu"; }, get$rowsPerPageTitle() { return "Safu mlalo kwa kila ukurasa:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Chagua mwaka"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "Umechagua kipengee 1"; }, get$selectedRowCountTitleOther() { return "Umechagua vipengee $selectedRowCount"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "Hamna kilicho chaguliwa"; }, get$showMenuTooltip() { return "Onyesha menyu"; }, get$tabLabelRaw() { return "Kichupo cha $tabIndex kati ya $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "CHAGUA SAA"; }, get$timePickerHourLabel() { return "Saa"; }, get$timePickerHourModeAnnouncement() { return "Chagua saa"; }, get$timePickerInputHelpText() { return "WEKA SAA"; }, get$timePickerMinuteLabel() { return "Dakika"; }, get$timePickerMinuteModeAnnouncement() { return "Chagua dakika"; } }; A.MaterialLocalizationTa.prototype = { get$alertDialogLabel() { return "\u0bb5\u0bbf\u0bb4\u0bbf\u0baa\u0bcd\u0baa\u0bc2\u0b9f\u0bcd\u0b9f\u0bb2\u0bcd"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$calendarModeButtonLabel() { return "\u0b95\u0bc7\u0bb2\u0bc6\u0ba3\u0bcd\u0b9f\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1"; }, get$cancelButtonLabel() { return "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1\u0b9a\u0bc6\u0baf\u0bcd"; }, get$collapsedIconTapHint() { return "\u0bb5\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0ba4\u0bc7\u0ba4\u0bbf\u0baf\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bc1\u0b95"; }, get$dateOutOfRangeLabel() { return "\u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1."; }, get$datePickerHelpText() { return "\u0ba4\u0bc7\u0ba4\u0bbf\u0baf\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$dialModeButtonLabel() { return "\u0b9f\u0baf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b95\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0baa\u0baf\u0ba9\u0bcd\u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd"; }, get$dialogLabel() { return "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd"; }, get$drawerLabel() { return "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"; }, get$expandedIconTapHint() { return "\u0b9a\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$firstPageTooltip() { return "\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1\u0b9a\u0bcd \u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0bc1\u0bae\u0bcd"; }, get$inputDateModeButtonLabel() { return "\u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1"; }, get$inputTimeModeButtonLabel() { return "\u0b89\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd"; }, get$invalidDateFormatLabel() { return "\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd."; }, get$invalidTimeLabel() { return "\u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bb5\u0bc1\u0bae\u0bcd"; }, get$lastPageTooltip() { return "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baa\u0bcd \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1\u0b9a\u0bcd \u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0bc1\u0bae\u0bcd"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0b89\u0bb0\u0bbf\u0bae\u0bae\u0bcd"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0b89\u0bb0\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0b89\u0bb0\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd"; }, get$modalBarrierDismissLabel() { return "\u0ba8\u0bbf\u0bb0\u0bbe\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$nextMonthTooltip() { return "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bbe\u0ba4\u0bae\u0bcd"; }, get$nextPageTooltip() { return "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$okButtonLabel() { return "\u0b9a\u0bb0\u0bbf"; }, get$openAppDrawerTooltip() { return "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow / $rowCount"; }, get$popupMenuLabel() { return "\u0baa\u0bbe\u0baa\u0bcd-\u0b85\u0baa\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0bae\u0bbe\u0ba4\u0bae\u0bcd"; }, get$previousPageTooltip() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$refreshIndicatorSemanticLabel() { return "\u0bb0\u0bc6\u0b83\u0baa\u0bcd\u0bb0\u0bc6\u0bb7\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8"; }, get$reorderItemDown() { return "\u0b95\u0bc0\u0bb4\u0bc7 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemToEnd() { return "\u0b87\u0bb1\u0bc1\u0ba4\u0bbf\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemToStart() { return "\u0ba4\u0bca\u0b9f\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemUp() { return "\u0bae\u0bc7\u0bb2\u0bc7 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$rowsPerPageTitle() { return "\u0b92\u0bb0\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bbe\u0ba9 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd:"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u0b86\u0ba3\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba9"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return "\u0b8e\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8"; }, get$showMenuTooltip() { return "\u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0b95\u0bcd \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1"; }, get$tabLabelRaw() { return "\u0ba4\u0bbe\u0bb5\u0bb2\u0bcd $tabIndex / $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_5; }, get$timePickerDialHelpText() { return "\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0b95"; }, get$timePickerHourLabel() { return "\u0bae\u0ba3\u0bbf\u0ba8\u0bc7\u0bb0\u0bae\u0bcd"; }, get$timePickerHourModeAnnouncement() { return "\u0bae\u0ba3\u0bbf\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$timePickerInputHelpText() { return "\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bc1\u0b95"; }, get$timePickerMinuteLabel() { return "\u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0bae\u0bcd"; }, get$timePickerMinuteModeAnnouncement() { return "\u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; } }; A.MaterialLocalizationTe.prototype = { get$alertDialogLabel() { return "\u0c05\u0c32\u0c30\u0c4d\u0c1f\u0c4d"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0c35\u0c46\u0c28\u0c41\u0c15\u0c15\u0c41"; }, get$calendarModeButtonLabel() { return "\u0c15\u0c4d\u0c2f\u0c3e\u0c32\u0c46\u0c02\u0c21\u0c30\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c02\u0c21\u0c3f"; }, get$cancelButtonLabel() { return "\u0c30\u0c26\u0c4d\u0c26\u0c41 \u0c1a\u0c47\u0c2f\u0c3f"; }, get$collapsedIconTapHint() { return "\u0c35\u0c3f\u0c38\u0c4d\u0c24\u0c30\u0c3f\u0c02\u0c1a\u0c41"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "\u0c24\u0c47\u0c26\u0c40\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$dateOutOfRangeLabel() { return "\u0c2a\u0c30\u0c3f\u0c27\u0c3f \u0c35\u0c46\u0c32\u0c41\u0c2a\u0c32 \u0c09\u0c02\u0c26\u0c3f."; }, get$datePickerHelpText() { return "\u0c24\u0c47\u0c26\u0c40\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$dialModeButtonLabel() { return "\u0c21\u0c2f\u0c32\u0c4d \u0c2a\u0c3f\u0c15\u0c30\u0c4d \u0c2e\u0c4b\u0c21\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c41\u0c38\u0c4d\u0c24\u0c41\u0c02\u0c26\u0c3f"; }, get$dialogLabel() { return "\u0c21\u0c48\u0c32\u0c3e\u0c17\u0c4d"; }, get$drawerLabel() { return "\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42"; }, get$expandedIconTapHint() { return "\u0c15\u0c41\u0c26\u0c3f\u0c02\u0c1a\u0c41"; }, get$firstPageTooltip() { return "\u0c2e\u0c4a\u0c26\u0c1f\u0c3f \u0c2a\u0c47\u0c1c\u0c40"; }, get$inputDateModeButtonLabel() { return "\u0c07\u0c28\u0c4d\u200c\u0c2a\u0c41\u0c1f\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c02\u0c21\u0c3f"; }, get$inputTimeModeButtonLabel() { return "\u0c1f\u0c46\u0c15\u0c4d\u0c38\u0c4d\u0c1f\u0c4d \u0c07\u0c28\u0c4d\u200c\u0c2a\u0c41\u0c1f\u0c4d \u0c2e\u0c4b\u0c21\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c41\u0c38\u0c4d\u0c24\u0c41\u0c02\u0c26\u0c3f"; }, get$invalidDateFormatLabel() { return "\u0c2b\u0c3e\u0c30\u0c4d\u0c2e\u0c3e\u0c1f\u0c4d \u0c1a\u0c46\u0c32\u0c4d\u0c32\u0c26\u0c41."; }, get$invalidTimeLabel() { return "\u0c1a\u0c46\u0c32\u0c4d\u0c32\u0c41\u0c2c\u0c3e\u0c1f\u0c41 \u0c05\u0c2f\u0c4d\u0c2f\u0c47 \u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$lastPageTooltip() { return "\u0c1a\u0c3f\u0c35\u0c30\u0c3f \u0c2a\u0c47\u0c1c\u0c40"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d\u200c\u0c32\u0c41"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d\u200c\u0c32\u0c41"; }, get$modalBarrierDismissLabel() { return "\u0c35\u0c3f\u0c38\u0c4d\u0c2e\u0c30\u0c3f\u0c02\u0c1a\u0c41"; }, get$nextMonthTooltip() { return "\u0c24\u0c30\u0c4d\u0c35\u0c3e\u0c24 \u0c28\u0c46\u0c32"; }, get$nextPageTooltip() { return "\u0c24\u0c30\u0c4d\u0c35\u0c3e\u0c24 \u0c2a\u0c47\u0c1c\u0c40"; }, get$okButtonLabel() { return "\u0c38\u0c30\u0c47"; }, get$openAppDrawerTooltip() { return "\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c24\u0c46\u0c30\u0c41\u0c35\u0c41"; }, get$pageRowsInfoTitleRaw() { return "$rowCount\u0c32\u0c4b $firstRow - $lastRow"; }, get$pageRowsInfoTitleApproximateRaw() { return "$rowCount\u0c32\u0c4b $firstRow\u2013$lastRow"; }, get$popupMenuLabel() { return "\u0c2a\u0c3e\u0c2a\u0c4d\u200c\u0c05\u0c2a\u0c4d \u0c2e\u0c46\u0c28\u0c42"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0c2e\u0c41\u0c28\u0c41\u0c2a\u0c1f\u0c3f \u0c28\u0c46\u0c32"; }, get$previousPageTooltip() { return "\u0c2e\u0c41\u0c28\u0c41\u0c2a\u0c1f\u0c3f \u0c2a\u0c47\u0c1c\u0c40"; }, get$refreshIndicatorSemanticLabel() { return "\u0c30\u0c3f\u0c2b\u0c4d\u0c30\u0c46\u0c37\u0c4d \u0c1a\u0c47\u0c2f\u0c3f"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c02 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c02\u0c26\u0c3f"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c3e\u0c32\u0c41 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c28\u0c4d\u0c28\u0c3e\u0c2f\u0c3f"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "\u0c15\u0c3f\u0c02\u0c26\u0c3f\u0c15\u0c41 \u0c1c\u0c30\u0c41\u0c2a\u0c41"; }, get$reorderItemToEnd() { return "\u0c1a\u0c3f\u0c35\u0c30\u0c15\u0c41 \u0c24\u0c30\u0c32\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"; }, get$reorderItemToStart() { return "\u0c2a\u0c4d\u0c30\u0c3e\u0c30\u0c02\u0c2d\u0c3e\u0c28\u0c3f\u0c15\u0c3f \u0c24\u0c30\u0c32\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"; }, get$reorderItemUp() { return "\u0c2a\u0c48\u0c15\u0c3f \u0c1c\u0c30\u0c2a\u0c02\u0c21\u0c3f"; }, get$rowsPerPageTitle() { return "\u0c2a\u0c47\u0c1c\u0c40\u0c15\u0c3f \u0c09\u0c02\u0c21\u0c47 \u0c05\u0c21\u0c4d\u0c21\u0c41 \u0c35\u0c30\u0c41\u0c38\u0c32\u0c41:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0c05\u0c02\u0c36\u0c02 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0c05\u0c02\u0c36\u0c3e\u0c32\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c2c\u0c21\u0c4d\u0c21\u0c3e\u0c2f\u0c3f"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c1a\u0c42\u0c2a\u0c41"; }, get$tabLabelRaw() { return "$tabCount\u0c32\u0c4b $tabIndex\u0c35 \u0c1f\u0c4d\u0c2f\u0c3e\u0c2c\u0c4d"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "\u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$timePickerHourLabel() { return "\u0c17\u0c02\u0c1f"; }, get$timePickerHourModeAnnouncement() { return "\u0c17\u0c02\u0c1f\u0c32\u0c28\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$timePickerInputHelpText() { return "\u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$timePickerMinuteLabel() { return "\u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c02"; }, get$timePickerMinuteModeAnnouncement() { return "\u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c3e\u0c32\u0c28\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; } }; A.MaterialLocalizationTh.prototype = { get$alertDialogLabel() { return "\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u0e01\u0e25\u0e31\u0e1a"; }, get$calendarModeButtonLabel() { return "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19"; }, get$cancelButtonLabel() { return "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01"; }, get$collapsedIconTapHint() { return "\u0e02\u0e22\u0e32\u0e22"; }, get$dateHelpText() { return "\u0e14\u0e14/\u0e27\u0e27/\u0e1b\u0e1b\u0e1b\u0e1b"; }, get$dateInputLabel() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48"; }, get$dateOutOfRangeLabel() { return "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07"; }, get$datePickerHelpText() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48"; }, get$dialModeButtonLabel() { return "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e2b\u0e21\u0e38\u0e19"; }, get$dialogLabel() { return "\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e42\u0e15\u0e49\u0e15\u0e2d\u0e1a"; }, get$drawerLabel() { return "\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"; }, get$expandedIconTapHint() { return "\u0e22\u0e38\u0e1a"; }, get$firstPageTooltip() { return "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01"; }, get$inputDateModeButtonLabel() { return "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"; }, get$inputTimeModeButtonLabel() { return "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e21\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"; }, get$invalidDateFormatLabel() { return "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"; }, get$invalidTimeLabel() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"; }, get$lastPageTooltip() { return "\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15 1 \u0e43\u0e1a"; }, get$licensesPackageDetailTextOther() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15 $licenseCount \u0e43\u0e1a"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15"; }, get$modalBarrierDismissLabel() { return "\u0e1b\u0e34\u0e14"; }, get$nextMonthTooltip() { return "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32"; }, get$nextPageTooltip() { return "\u0e2b\u0e19\u0e49\u0e32\u0e16\u0e31\u0e14\u0e44\u0e1b"; }, get$okButtonLabel() { return "\u0e15\u0e01\u0e25\u0e07"; }, get$openAppDrawerTooltip() { return "\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow \u0e08\u0e32\u0e01 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0e08\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 $rowCount"; }, get$popupMenuLabel() { return "\u0e40\u0e21\u0e19\u0e39\u0e1b\u0e4a\u0e2d\u0e1b\u0e2d\u0e31\u0e1b"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27"; }, get$previousPageTooltip() { return "\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e48\u0e2d\u0e19"; }, get$refreshIndicatorSemanticLabel() { return "\u0e23\u0e35\u0e40\u0e1f\u0e23\u0e0a"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u0e40\u0e2b\u0e25\u0e37\u0e2d 1 \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"; }, get$remainingTextFieldCharacterCountOther() { return "\u0e40\u0e2b\u0e25\u0e37\u0e2d $remainingCount \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u0e22\u0e49\u0e32\u0e22\u0e25\u0e07"; }, get$reorderItemToEnd() { return "\u0e22\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e17\u0e49\u0e32\u0e22\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$reorderItemToStart() { return "\u0e22\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e15\u0e49\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$reorderItemUp() { return "\u0e22\u0e49\u0e32\u0e22\u0e02\u0e36\u0e49\u0e19"; }, get$rowsPerPageTitle() { return "\u0e41\u0e16\u0e27\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1b\u0e35"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27 1 \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$selectedRowCountTitleOther() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27 $selectedRowCount \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e21\u0e19\u0e39"; }, get$tabLabelRaw() { return "\u0e41\u0e17\u0e47\u0e1a\u0e17\u0e35\u0e48 $tabIndex \u0e08\u0e32\u0e01 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_5; }, get$timePickerDialHelpText() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e27\u0e25\u0e32"; }, get$timePickerHourLabel() { return "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, get$timePickerHourModeAnnouncement() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, get$timePickerInputHelpText() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32"; }, get$timePickerMinuteLabel() { return "\u0e19\u0e32\u0e17\u0e35"; }, get$timePickerMinuteModeAnnouncement() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e32\u0e17\u0e35"; } }; A.MaterialLocalizationTl.prototype = { get$alertDialogLabel() { return "Alerto"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Bumalik"; }, get$calendarModeButtonLabel() { return "Lumipat sa kalendaryo"; }, get$cancelButtonLabel() { return "KANSELAHIN"; }, get$collapsedIconTapHint() { return "I-expand"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Ilagay ang Petsa"; }, get$dateOutOfRangeLabel() { return "Wala sa hanay."; }, get$datePickerHelpText() { return "PUMILI NG PETSA"; }, get$dialModeButtonLabel() { return "Lumipat sa dial picker mode"; }, get$dialogLabel() { return "Dialog"; }, get$drawerLabel() { return "Menu ng navigation"; }, get$expandedIconTapHint() { return "I-collapse"; }, get$firstPageTooltip() { return "Unang page"; }, get$inputDateModeButtonLabel() { return "Lumipat sa input"; }, get$inputTimeModeButtonLabel() { return "Lumipat sa text input mode"; }, get$invalidDateFormatLabel() { return "Invalid ang format."; }, get$invalidTimeLabel() { return "Maglagay ng valid na oras"; }, get$lastPageTooltip() { return "Huling page"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisensya"; }, get$licensesPackageDetailTextOther() { return "$licenseCount na lisensya"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Mga Lisensya"; }, get$modalBarrierDismissLabel() { return "I-dismiss"; }, get$nextMonthTooltip() { return "Susunod na buwan"; }, get$nextPageTooltip() { return "Susunod na page"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Buksan ang menu ng navigation"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow ng $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return string$.x24firstn; }, get$popupMenuLabel() { return "Popup na menu"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Nakaraang buwan"; }, get$previousPageTooltip() { return "Nakaraang page"; }, get$refreshIndicatorSemanticLabel() { return "Nagre-refresh"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 character ang natitira"; }, get$remainingTextFieldCharacterCountOther() { return string$.x24remai; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Ilipat pababa"; }, get$reorderItemToEnd() { return "Ilipat sa dulo"; }, get$reorderItemToStart() { return "Ilipat sa simula"; }, get$reorderItemUp() { return "Ilipat pataas"; }, get$rowsPerPageTitle() { return "Mga row bawat page:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Pumili ng taon"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 item ang napili"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount na item ang napili"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Ipakita ang menu"; }, get$tabLabelRaw() { return "Tab $tabIndex ng $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "PUMILI NG ORAS"; }, get$timePickerHourLabel() { return "Oras"; }, get$timePickerHourModeAnnouncement() { return "Pumili ng mga oras"; }, get$timePickerInputHelpText() { return "MAGLAGAY NG ORAS"; }, get$timePickerMinuteLabel() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement() { return "Pumili ng mga minuto"; } }; A.MaterialLocalizationTr.prototype = { get$alertDialogLabel() { return "Uyar\u0131"; }, get$anteMeridiemAbbreviation() { return "\xd6\xd6"; }, get$backButtonTooltip() { return "Geri"; }, get$calendarModeButtonLabel() { return "Takvime ge\xe7"; }, get$cancelButtonLabel() { return "\u0130PTAL"; }, get$collapsedIconTapHint() { return "Geni\u015flet"; }, get$dateHelpText() { return "gg.aa.yyyy"; }, get$dateInputLabel() { return "Tarih Girin"; }, get$dateOutOfRangeLabel() { return "Kapsama alan\u0131 d\u0131\u015f\u0131nda."; }, get$datePickerHelpText() { return "TAR\u0130H SE\xc7\u0130N"; }, get$dialModeButtonLabel() { return "Dairesel se\xe7ici moduna ge\xe7"; }, get$dialogLabel() { return "\u0130leti\u015fim kutusu"; }, get$drawerLabel() { return "Gezinme men\xfcs\xfc"; }, get$expandedIconTapHint() { return "Daralt"; }, get$firstPageTooltip() { return "\u0130lk sayfa"; }, get$inputDateModeButtonLabel() { return "Giri\u015fe ge\xe7"; }, get$inputTimeModeButtonLabel() { return "Metin giri\u015f moduna ge\xe7"; }, get$invalidDateFormatLabel() { return "Ge\xe7ersiz bi\xe7im."; }, get$invalidTimeLabel() { return "Ge\xe7erli bir saat girin"; }, get$lastPageTooltip() { return "Son sayfa"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 lisans"; }, get$licensesPackageDetailTextOther() { return "$licenseCount lisans"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Lisanslar"; }, get$modalBarrierDismissLabel() { return "Kapat"; }, get$nextMonthTooltip() { return "Gelecek ay"; }, get$nextPageTooltip() { return "Sonraki sayfa"; }, get$okButtonLabel() { return "Tamam"; }, get$openAppDrawerTooltip() { return "Gezinme men\xfcs\xfcn\xfc a\xe7"; }, get$pageRowsInfoTitleRaw() { return "$firstRow-$lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow-$lastRow / $rowCount"; }, get$popupMenuLabel() { return "Popup men\xfc"; }, get$postMeridiemAbbreviation() { return "\xd6S"; }, get$previousMonthTooltip() { return "\xd6nceki ay"; }, get$previousPageTooltip() { return "\xd6nceki sayfa"; }, get$refreshIndicatorSemanticLabel() { return "Yenile"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 karakter kald\u0131"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount karakter kald\u0131"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "A\u015fa\u011f\u0131 ta\u015f\u0131"; }, get$reorderItemToEnd() { return "Sona ta\u015f\u0131"; }, get$reorderItemToStart() { return "Ba\u015fa ta\u015f\u0131"; }, get$reorderItemUp() { return "Yukar\u0131 ta\u015f\u0131"; }, get$rowsPerPageTitle() { return "Sayfa ba\u015f\u0131na sat\u0131r say\u0131s\u0131:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Y\u0131l\u0131 se\xe7in"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \xf6\u011fe se\xe7ildi"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \xf6\u011fe se\xe7ildi"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Men\xfcy\xfc g\xf6ster"; }, get$tabLabelRaw() { return "Sekme $tabIndex / $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "SAAT\u0130 SE\xc7\u0130N"; }, get$timePickerHourLabel() { return "Saat"; }, get$timePickerHourModeAnnouncement() { return "Saati se\xe7in"; }, get$timePickerInputHelpText() { return "SAAT\u0130 G\u0130R\u0130N"; }, get$timePickerMinuteLabel() { return "Dakika"; }, get$timePickerMinuteModeAnnouncement() { return "Dakikay\u0131 se\xe7in"; } }; A.MaterialLocalizationUk.prototype = { get$alertDialogLabel() { return "\u0421\u043f\u043e\u0432\u0456\u0449\u0435\u043d\u043d\u044f"; }, get$anteMeridiemAbbreviation() { return "\u0434\u043f"; }, get$backButtonTooltip() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044f"; }, get$cancelButtonLabel() { return "\u0421\u041a\u0410\u0421\u0423\u0412\u0410\u0422\u0418"; }, get$collapsedIconTapHint() { return "\u0420\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438"; }, get$dateHelpText() { return "\u0434\u0434.\u043c\u043c.\u0440\u0440\u0440\u0440"; }, get$dateInputLabel() { return "\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel() { return "\u0417\u0430 \u043c\u0435\u0436\u0430\u043c\u0438 \u0434\u0456\u0430\u043f\u0430\u0437\u043e\u043d\u0443."; }, get$datePickerHelpText() { return "\u0412\u0418\u0411\u0420\u0410\u0422\u0418 \u0414\u0410\u0422\u0423"; }, get$dialModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0438\u0431\u043e\u0440\u0443 \u043d\u0430 \u0446\u0438\u0444\u0435\u0440\u0431\u043b\u0430\u0442\u0456"; }, get$dialogLabel() { return "\u0412\u0456\u043a\u043d\u043e"; }, get$drawerLabel() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"; }, get$expandedIconTapHint() { return "\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u0438"; }, get$firstPageTooltip() { return "\u041f\u0435\u0440\u0448\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$inputDateModeButtonLabel() { return "\u0412\u0432\u0435\u0441\u0442\u0438 \u0432\u0440\u0443\u0447\u043d\u0443"; }, get$inputTimeModeButtonLabel() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0446\u0438\u0444\u0440"; }, get$invalidDateFormatLabel() { return "\u041d\u0435\u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel() { return "\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0447\u0430\u0441"; }, get$lastPageTooltip() { return "\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$licensesPackageDetailTextFew() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$licensesPackageDetailTextMany() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0439"; }, get$licensesPackageDetailTextOne() { return "1 \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u044f"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u041b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$modalBarrierDismissLabel() { return "\u0417\u0430\u043a\u0440\u0438\u0442\u0438"; }, get$nextMonthTooltip() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u043c\u0456\u0441\u044f\u0446\u044c"; }, get$nextPageTooltip() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0437 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow \u0437 \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u043d\u043e $rowCount"; }, get$popupMenuLabel() { return "\u0421\u043f\u043b\u0438\u0432\u0430\u044e\u0447\u0435 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation() { return "\u043f\u043f"; }, get$previousMonthTooltip() { return "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043c\u0456\u0441\u044f\u0446\u044c"; }, get$previousPageTooltip() { return "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$refreshIndicatorSemanticLabel() { return "\u041e\u043d\u043e\u0432\u0438\u0442\u0438"; }, get$remainingTextFieldCharacterCountFew() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0438"; }, get$remainingTextFieldCharacterCountMany() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432"; }, get$remainingTextFieldCharacterCountOne() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u0432\u0441\u044f 1 \u0441\u0438\u043c\u0432\u043e\u043b"; }, get$remainingTextFieldCharacterCountOther() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0443"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u043d\u0438\u0437"; }, get$reorderItemToEnd() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432 \u043a\u0456\u043d\u0435\u0446\u044c"; }, get$reorderItemToStart() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043d\u0430 \u043f\u043e\u0447\u0430\u0442\u043e\u043a"; }, get$reorderItemUp() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u0433\u043e\u0440\u0443"; }, get$rowsPerPageTitle() { return "\u0420\u044f\u0434\u043a\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0440\u0456\u043a"; }, get$selectedRowCountTitleFew() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0438"; }, get$selectedRowCountTitleMany() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432"; }, get$selectedRowCountTitleOne() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e 1 \u0435\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw() { return "\u0412\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "\u0412\u0418\u0411\u0415\u0420\u0406\u0422\u042c \u0427\u0410\u0421"; }, get$timePickerHourLabel() { return "\u0413\u043e\u0434\u0438\u043d\u0438"; }, get$timePickerHourModeAnnouncement() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0433\u043e\u0434\u0438\u043d\u0438"; }, get$timePickerInputHelpText() { return "\u0412\u0412\u0415\u0414\u0406\u0422\u042c \u0427\u0410\u0421"; }, get$timePickerMinuteLabel() { return "\u0425\u0432\u0438\u043b\u0438\u043d\u0438"; }, get$timePickerMinuteModeAnnouncement() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0445\u0432\u0438\u043b\u0438\u043d\u0438"; } }; A.MaterialLocalizationUr.prototype = { get$alertDialogLabel() { return "\u0627\u0644\u0631\u0679"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "\u067e\u06cc\u0686\u06be\u06d2"; }, get$calendarModeButtonLabel() { return "\u06a9\u06cc\u0644\u0646\u0688\u0631 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$cancelButtonLabel() { return "\u0645\u0646\u0633\u0648\u062e \u06a9\u0631\u06cc\u06ba"; }, get$collapsedIconTapHint() { return "\u067e\u06be\u06cc\u0644\u0627\u0626\u06cc\u06ba"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u062a\u0627\u0631\u06cc\u062e \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$dateOutOfRangeLabel() { return "\u062d\u062f \u0633\u06d2 \u0628\u0627\u06c1\u0631\u06d4"; }, get$datePickerHelpText() { return "\u062a\u0627\u0631\u06cc\u062e \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$dialModeButtonLabel() { return "\u0688\u0627\u0626\u0644 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0646\u0646\u062f\u06c1 \u0648\u0636\u0639 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$dialogLabel() { return "\u0688\u0627\u0626\u0644\u0627\u06af"; }, get$drawerLabel() { return "\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648"; }, get$expandedIconTapHint() { return "\u0633\u06a9\u06cc\u0691\u06cc\u06ba"; }, get$firstPageTooltip() { return "\u067e\u06c1\u0644\u0627 \u0635\u0641\u062d\u06c1"; }, get$inputDateModeButtonLabel() { return "\u0627\u0646 \u067e\u0679 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$inputTimeModeButtonLabel() { return "\u0679\u06cc\u06a9\u0633\u0679 \u0627\u0646 \u067e\u0679 \u0648\u0636\u0639 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$invalidDateFormatLabel() { return "\u063a\u0644\u0637 \u0641\u0627\u0631\u0645\u06cc\u0679\u06d4"; }, get$invalidTimeLabel() { return "\u062f\u0631\u0633\u062a \u0648\u0642\u062a \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$lastPageTooltip() { return "\u0622\u062e\u0631\u06cc \u0635\u0641\u062d\u06c1"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u0644\u0627\u0626\u0633\u0646\u0633"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u0644\u0627\u0626\u0633\u0646\u0633\u0632"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u0644\u0627\u0626\u0633\u0646\u0633\u0632"; }, get$modalBarrierDismissLabel() { return "\u0628\u0631\u062e\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba"; }, get$nextMonthTooltip() { return "\u0627\u06af\u0644\u0627 \u0645\u06c1\u06cc\u0646\u06c1"; }, get$nextPageTooltip() { return "\u0627\u06af\u0644\u0627 \u0635\u0641\u062d\u06c1"; }, get$okButtonLabel() { return "\u0679\u06be\u06cc\u06a9 \u06c1\u06d2"; }, get$openAppDrawerTooltip() { return "\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648 \u06a9\u06be\u0648\u0644\u06cc\u06ba"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow \u0627\u0632 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow $rowCount \u0645\u06cc\u06ba \u0633\u06d2 \u062a\u0642\u0631\u06cc\u0628\u0627\u064b"; }, get$popupMenuLabel() { return "\u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u0648"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "\u067e\u0686\u06be\u0644\u0627 \u0645\u06c1\u06cc\u0646\u06c1"; }, get$previousPageTooltip() { return "\u06af\u0632\u0634\u062a\u06c1 \u0635\u0641\u062d\u06c1"; }, get$refreshIndicatorSemanticLabel() { return "\u0631\u06cc\u0641\u0631\u06cc\u0634 \u06a9\u0631\u06cc\u06ba"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 \u062d\u0631\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06d2"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount \u062d\u0631\u0648\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06cc\u06ba"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u0646\u06cc\u0686\u06d2 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemToEnd() { return "\u0622\u062e\u0631 \u0645\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemToStart() { return "\u0634\u0631\u0648\u0639 \u0645\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemUp() { return "\u0627\u0648\u067e\u0631 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$rowsPerPageTitle() { return "\u0642\u0637\u0627\u0631\u06cc\u06ba \u0641\u06cc \u0635\u0641\u062d\u06c1:"; }, get$scriptCategory() { return B.ScriptCategory_2; }, get$selectYearSemanticsLabel() { return "\u0633\u0627\u0644 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 \u0622\u0626\u0679\u0645 \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u0627 \u06af\u06cc\u0627"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount \u0622\u0626\u0679\u0645\u0632 \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u06d2 \u06af\u0626\u06d2"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u0645\u06cc\u0646\u0648 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"; }, get$tabLabelRaw() { return "$tabCount \u0645\u06cc\u06ba \u0633\u06d2 $tabIndex \u0679\u06cc\u0628"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_4; }, get$timePickerDialHelpText() { return "\u0648\u0642\u062a \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$timePickerHourLabel() { return "\u06af\u06be\u0646\u0679\u06c1"; }, get$timePickerHourModeAnnouncement() { return "\u06af\u06be\u0646\u0679\u06d2 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$timePickerInputHelpText() { return "\u0648\u0642\u062a \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$timePickerMinuteLabel() { return "\u0645\u0646\u0679"; }, get$timePickerMinuteModeAnnouncement() { return "\u0645\u0646\u0679 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; } }; A.MaterialLocalizationUz.prototype = { get$alertDialogLabel() { return "Ogohlantirish"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Orqaga"; }, get$calendarModeButtonLabel() { return "Taqvimda ochish"; }, get$cancelButtonLabel() { return "BEKOR QILISH"; }, get$collapsedIconTapHint() { return "Yoyish"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Sanani kiriting"; }, get$dateOutOfRangeLabel() { return "Diapazondan tashqarida."; }, get$datePickerHelpText() { return "SANANI TANLANG"; }, get$dialModeButtonLabel() { return "Vaqtni burab tanlash rejimi"; }, get$dialogLabel() { return "Muloqot oynasi"; }, get$drawerLabel() { return "Navigatsiya menyusi"; }, get$expandedIconTapHint() { return "Kichraytirish"; }, get$firstPageTooltip() { return "Birinchi sahifa"; }, get$inputDateModeButtonLabel() { return "Mustaqil kiritish"; }, get$inputTimeModeButtonLabel() { return "Vaqtni yozib tanlash rejimi"; }, get$invalidDateFormatLabel() { return "Yaroqsiz format."; }, get$invalidTimeLabel() { return "Vaqt xato kiritildi"; }, get$lastPageTooltip() { return "Oxirgi sahifa"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 ta litsenziya"; }, get$licensesPackageDetailTextOther() { return "$licenseCount ta litsenziya"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Litsenziyalar"; }, get$modalBarrierDismissLabel() { return "Yopish"; }, get$nextMonthTooltip() { return "Keyingi oy"; }, get$nextPageTooltip() { return "Keyingi sahifa"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "Navigatsiya menyusini ochish"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow, jami: $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow, jami: $rowCount"; }, get$popupMenuLabel() { return "Pop-ap menyusi"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Avvalgi oy"; }, get$previousPageTooltip() { return "Avvalgi sahifa"; }, get$refreshIndicatorSemanticLabel() { return "Yangilash"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 ta belgi qoldi"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount ta belgi qoldi"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Pastga siljitish"; }, get$reorderItemToEnd() { return "Oxiriga siljitish"; }, get$reorderItemToStart() { return "Boshiga siljitish"; }, get$reorderItemUp() { return "Tepaga siljitish"; }, get$rowsPerPageTitle() { return "Har bir sahifadagi qatorlar soni:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Yilni tanlang"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 ta element tanlandi"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount ta element tanlandi"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Menyuni ko\u02bbrsatish"; }, get$tabLabelRaw() { return "$tabCount varaqdan $tabIndex"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "VAQTNI TANLANG"; }, get$timePickerHourLabel() { return "Soat"; }, get$timePickerHourModeAnnouncement() { return "Soatni tanlang"; }, get$timePickerInputHelpText() { return "VAQTNI KIRITING"; }, get$timePickerMinuteLabel() { return "Daqiqa"; }, get$timePickerMinuteModeAnnouncement() { return "Daqiqani tanlang"; } }; A.MaterialLocalizationVi.prototype = { get$alertDialogLabel() { return "Th\xf4ng b\xe1o"; }, get$anteMeridiemAbbreviation() { return "S\xc1NG"; }, get$backButtonTooltip() { return "Quay l\u1ea1i"; }, get$calendarModeButtonLabel() { return "Chuy\u1ec3n sang l\u1ecbch"; }, get$cancelButtonLabel() { return "H\u1ee6Y"; }, get$collapsedIconTapHint() { return "M\u1edf r\u1ed9ng"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Nh\u1eadp ng\xe0y"; }, get$dateOutOfRangeLabel() { return "Ngo\xe0i ph\u1ea1m vi."; }, get$datePickerHelpText() { return "CH\u1eccN NG\xc0Y"; }, get$dialModeButtonLabel() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 ch\u1ecdn m\u1eb7t \u0111\u1ed3ng h\u1ed3"; }, get$dialogLabel() { return "H\u1ed9p tho\u1ea1i"; }, get$drawerLabel() { return "Menu di chuy\u1ec3n"; }, get$expandedIconTapHint() { return "Thu g\u1ecdn"; }, get$firstPageTooltip() { return "Trang \u0111\u1ea7u"; }, get$inputDateModeButtonLabel() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 nh\u1eadp"; }, get$inputTimeModeButtonLabel() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 nh\u1eadp v\u0103n b\u1ea3n"; }, get$invalidDateFormatLabel() { return "\u0110\u1ecbnh d\u1ea1ng kh\xf4ng h\u1ee3p l\u1ec7."; }, get$invalidTimeLabel() { return "Nh\u1eadp th\u1eddi gian h\u1ee3p l\u1ec7"; }, get$lastPageTooltip() { return "Trang cu\u1ed1i"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 gi\u1ea5y ph\xe9p"; }, get$licensesPackageDetailTextOther() { return "$licenseCount gi\u1ea5y ph\xe9p"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Gi\u1ea5y ph\xe9p"; }, get$modalBarrierDismissLabel() { return "B\u1ecf qua"; }, get$nextMonthTooltip() { return "Th\xe1ng sau"; }, get$nextPageTooltip() { return "Trang ti\u1ebfp theo"; }, get$okButtonLabel() { return "OK"; }, get$openAppDrawerTooltip() { return "M\u1edf menu di chuy\u1ec3n"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow trong t\u1ed5ng s\u1ed1 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow trong t\u1ed5ng s\u1ed1 kho\u1ea3ng $rowCount"; }, get$popupMenuLabel() { return "Menu b\u1eadt l\xean"; }, get$postMeridiemAbbreviation() { return "CHI\u1ec0U"; }, get$previousMonthTooltip() { return "Th\xe1ng tr\u01b0\u1edbc"; }, get$previousPageTooltip() { return "Trang tr\u01b0\u1edbc"; }, get$refreshIndicatorSemanticLabel() { return "L\xe0m m\u1edbi"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "Co\u0300n la\u0323i 1 k\xfd t\u1ef1"; }, get$remainingTextFieldCharacterCountOther() { return "Co\u0300n la\u0323i $remainingCount k\xfd t\u1ef1"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "Di chuy\xea\u0309n xu\xf4\u0301ng"; }, get$reorderItemToEnd() { return "Di chuy\u1ec3n xu\u1ed1ng cu\u1ed1i danh s\xe1ch"; }, get$reorderItemToStart() { return "Di chuy\u1ec3n l\xean \u0111\u1ea7u danh s\xe1ch"; }, get$reorderItemUp() { return "Di chuy\u1ec3n l\xean"; }, get$rowsPerPageTitle() { return "S\u1ed1 h\xe0ng m\u1ed7i trang:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Ch\u1ecdn n\u0103m"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u0110\xe3 ch\u1ecdn 1 m\u1ee5c"; }, get$selectedRowCountTitleOther() { return "\u0110\xe3 ch\u1ecdn $selectedRowCount m\u1ee5c"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Hi\u1ec3n th\u1ecb menu"; }, get$tabLabelRaw() { return "Tab $tabIndex trong t\u1ed5ng s\u1ed1 $tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_0; }, get$timePickerDialHelpText() { return "CH\u1eccN TH\u1edcI GIAN"; }, get$timePickerHourLabel() { return "Gi\u1edd"; }, get$timePickerHourModeAnnouncement() { return "Ch\u1ecdn gi\u1edd"; }, get$timePickerInputHelpText() { return "NH\u1eacP TH\u1edcI GIAN"; }, get$timePickerMinuteLabel() { return "Ph\xfat"; }, get$timePickerMinuteModeAnnouncement() { return "Ch\u1ecdn ph\xfat"; } }; A.MaterialLocalizationZh.prototype = { get$alertDialogLabel() { return "\u63d0\u9192"; }, get$anteMeridiemAbbreviation() { return "\u4e0a\u5348"; }, get$backButtonTooltip() { return "\u8fd4\u56de"; }, get$calendarModeButtonLabel() { return "\u5207\u6362\u5230\u65e5\u5386\u6a21\u5f0f"; }, get$cancelButtonLabel() { return "\u53d6\u6d88"; }, get$collapsedIconTapHint() { return "\u5c55\u5f00"; }, get$dateHelpText() { return "yyyy/mm/dd"; }, get$dateInputLabel() { return "\u8f93\u5165\u65e5\u671f"; }, get$dateOutOfRangeLabel() { return "\u8d85\u51fa\u8303\u56f4\u3002"; }, get$datePickerHelpText() { return "\u9009\u62e9\u65e5\u671f"; }, get$dialModeButtonLabel() { return "\u5207\u6362\u5230\u8868\u76d8\u9009\u62e9\u5668\u6a21\u5f0f"; }, get$dialogLabel() { return "\u5bf9\u8bdd\u6846"; }, get$drawerLabel() { return "\u5bfc\u822a\u83dc\u5355"; }, get$expandedIconTapHint() { return "\u6536\u8d77"; }, get$firstPageTooltip() { return "\u7b2c\u4e00\u9875"; }, get$inputDateModeButtonLabel() { return "\u5207\u6362\u5230\u8f93\u5165\u6a21\u5f0f"; }, get$inputTimeModeButtonLabel() { return "\u5207\u6362\u5230\u6587\u672c\u8f93\u5165\u6a21\u5f0f"; }, get$invalidDateFormatLabel() { return "\u683c\u5f0f\u65e0\u6548\u3002"; }, get$invalidTimeLabel() { return "\u8bf7\u8f93\u5165\u6709\u6548\u7684\u65f6\u95f4"; }, get$lastPageTooltip() { return "\u6700\u540e\u4e00\u9875"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "1 \u4efd\u8bb8\u53ef"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u4efd\u8bb8\u53ef"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "\u8bb8\u53ef"; }, get$modalBarrierDismissLabel() { return "\u5173\u95ed"; }, get$nextMonthTooltip() { return "\u4e0b\u4e2a\u6708"; }, get$nextPageTooltip() { return "\u4e0b\u4e00\u9875"; }, get$okButtonLabel() { return "\u786e\u5b9a"; }, get$openAppDrawerTooltip() { return "\u6253\u5f00\u5bfc\u822a\u83dc\u5355"; }, get$pageRowsInfoTitleRaw() { return "\u7b2c $firstRow-$lastRow \u884c\uff08\u5171 $rowCount \u884c\uff09"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u7b2c $firstRow-$lastRow \u884c\uff08\u5171\u7ea6 $rowCount \u884c\uff09"; }, get$popupMenuLabel() { return "\u5f39\u51fa\u83dc\u5355"; }, get$postMeridiemAbbreviation() { return "\u4e0b\u5348"; }, get$previousMonthTooltip() { return "\u4e0a\u4e2a\u6708"; }, get$previousPageTooltip() { return "\u4e0a\u4e00\u9875"; }, get$refreshIndicatorSemanticLabel() { return "\u5237\u65b0"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "\u8fd8\u53ef\u8f93\u5165 1 \u4e2a\u5b57\u7b26"; }, get$remainingTextFieldCharacterCountOther() { return "\u8fd8\u53ef\u8f93\u5165 $remainingCount \u4e2a\u5b57\u7b26"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return "TBD"; }, get$reorderItemDown() { return "\u4e0b\u79fb"; }, get$reorderItemToEnd() { return "\u79fb\u5230\u672b\u5c3e"; }, get$reorderItemToStart() { return "\u79fb\u5230\u5f00\u5934"; }, get$reorderItemUp() { return "\u4e0a\u79fb"; }, get$rowsPerPageTitle() { return "\u6bcf\u9875\u884c\u6570\uff1a"; }, get$scriptCategory() { return B.ScriptCategory_1; }, get$selectYearSemanticsLabel() { return "\u9009\u62e9\u5e74\u4efd"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "\u5df2\u9009\u62e9 1 \u9879\u5185\u5bb9"; }, get$selectedRowCountTitleOther() { return "\u5df2\u9009\u62e9 $selectedRowCount \u9879\u5185\u5bb9"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "\u663e\u793a\u83dc\u5355"; }, get$tabLabelRaw() { return "\u7b2c $tabIndex \u4e2a\u6807\u7b7e\uff0c\u5171 $tabCount \u4e2a"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_5; }, get$timePickerDialHelpText() { return "\u9009\u62e9\u65f6\u95f4"; }, get$timePickerHourLabel() { return "\u5c0f\u65f6"; }, get$timePickerHourModeAnnouncement() { return "\u9009\u62e9\u5c0f\u65f6"; }, get$timePickerInputHelpText() { return "\u8f93\u5165\u65f6\u95f4"; }, get$timePickerMinuteLabel() { return "\u5206\u949f"; }, get$timePickerMinuteModeAnnouncement() { return "\u9009\u62e9\u5206\u949f"; } }; A.MaterialLocalizationZhHans.prototype = {}; A.MaterialLocalizationZhHant.prototype = { get$alertDialogLabel() { return "\u901a\u77e5"; }, get$calendarModeButtonLabel() { return "\u5207\u63db\u81f3\u65e5\u66c6"; }, get$collapsedIconTapHint() { return "\u5c55\u958b"; }, get$dateHelpText() { return "dd/mm/yyyy"; }, get$dateInputLabel() { return "\u8f38\u5165\u65e5\u671f"; }, get$dateOutOfRangeLabel() { return "\u8d85\u51fa\u7bc4\u570d\u3002"; }, get$datePickerHelpText() { return "\u9078\u53d6\u65e5\u671f"; }, get$dialModeButtonLabel() { return "\u5207\u63db\u81f3\u9418\u9762\u9ede\u9078\u5668\u6a21\u5f0f"; }, get$dialogLabel() { return "\u5c0d\u8a71\u65b9\u584a"; }, get$drawerLabel() { return "\u5c0e\u89bd\u9078\u55ae"; }, get$expandedIconTapHint() { return "\u6536\u5408"; }, get$firstPageTooltip() { return "\u7b2c\u4e00\u9801"; }, get$inputDateModeButtonLabel() { return "\u5207\u63db\u81f3\u8f38\u5165"; }, get$inputTimeModeButtonLabel() { return "\u5207\u63db\u81f3\u6587\u5b57\u8f38\u5165\u6a21\u5f0f"; }, get$invalidDateFormatLabel() { return "\u683c\u5f0f\u7121\u6548\u3002"; }, get$invalidTimeLabel() { return "\u8acb\u8f38\u5165\u6709\u6548\u7684\u6642\u9593"; }, get$lastPageTooltip() { return "\u6700\u5f8c\u4e00\u9801"; }, get$licensesPackageDetailTextOne() { return "1 \u9805\u6388\u6b0a"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u9805\u6388\u6b0a"; }, get$licensesPageTitle() { return "\u6388\u6b0a"; }, get$modalBarrierDismissLabel() { return "\u62d2\u7d55"; }, get$nextMonthTooltip() { return "\u4e0b\u500b\u6708"; }, get$nextPageTooltip() { return "\u4e0b\u4e00\u9801"; }, get$okButtonLabel() { return "\u78ba\u5b9a"; }, get$openAppDrawerTooltip() { return "\u958b\u555f\u5c0e\u89bd\u9078\u55ae"; }, get$pageRowsInfoTitleRaw() { return "\u7b2c $firstRow \u81f3 $lastRow \u5217\uff0c\u5171 $rowCount \u5217"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u7b2c $firstRow \u81f3 $lastRow \u5217\uff0c\u5171\u7d04 $rowCount \u5217"; }, get$popupMenuLabel() { return "\u5f48\u51fa\u5f0f\u9078\u55ae"; }, get$previousMonthTooltip() { return "\u4e0a\u500b\u6708"; }, get$previousPageTooltip() { return "\u4e0a\u4e00\u9801"; }, get$refreshIndicatorSemanticLabel() { return "\u91cd\u65b0\u6574\u7406"; }, get$remainingTextFieldCharacterCountOne() { return "\u5c1a\u9918 1 \u500b\u5b57\u5143"; }, get$remainingTextFieldCharacterCountOther() { return "\u5c1a\u9918 $remainingCount \u500b\u5b57\u5143"; }, get$reorderItemDown() { return "\u5411\u4e0b\u79fb"; }, get$reorderItemToEnd() { return "\u79fb\u5230\u6700\u5f8c"; }, get$reorderItemToStart() { return "\u79fb\u5230\u958b\u982d"; }, get$reorderItemUp() { return "\u5411\u4e0a\u79fb"; }, get$rowsPerPageTitle() { return "\u6bcf\u9801\u5217\u6578\uff1a"; }, get$selectYearSemanticsLabel() { return "\u63c0\u5e74\u4efd"; }, get$selectedRowCountTitleOne() { return "\u5df2\u9078\u53d6 1 \u500b\u9805\u76ee"; }, get$selectedRowCountTitleOther() { return "\u5df2\u9078\u53d6 $selectedRowCount \u500b\u9805\u76ee"; }, get$showMenuTooltip() { return "\u986f\u793a\u9078\u55ae"; }, get$tabLabelRaw() { return "\u7b2c $tabIndex \u500b\u6a19\u7c64\uff0c\u7e3d\u5171 $tabCount \u500b"; }, get$timePickerDialHelpText() { return "\u9078\u53d6\u6642\u9593"; }, get$timePickerHourLabel() { return "\u5c0f\u6642"; }, get$timePickerHourModeAnnouncement() { return "\u63c0\u9078\u5c0f\u6642"; }, get$timePickerInputHelpText() { return "\u8f38\u5165\u6642\u9593"; }, get$timePickerMinuteLabel() { return "\u5206\u9418"; }, get$timePickerMinuteModeAnnouncement() { return "\u63c0\u9078\u5206\u9418"; } }; A.MaterialLocalizationZhHantHk.prototype = {}; A.MaterialLocalizationZhHantTw.prototype = { get$dialModeButtonLabel() { return "\u5207\u63db\u81f3\u9418\u9762\u6311\u9078\u5668\u6a21\u5f0f"; }, get$licensesPackageDetailTextOne() { return "1 \u500b\u6388\u6b0a"; }, get$timePickerHourLabel() { return "\u6642"; }, get$timePickerMinuteLabel() { return "\u5206"; }, get$licensesPackageDetailTextOther() { return "$licenseCount \u500b\u6388\u6b0a"; }, get$calendarModeButtonLabel() { return "\u5207\u63db\u5230\u65e5\u66c6\u6a21\u5f0f"; }, get$inputDateModeButtonLabel() { return "\u5207\u63db\u5230\u8f38\u5165\u6a21\u5f0f"; }, get$selectYearSemanticsLabel() { return "\u9078\u53d6\u5e74\u4efd"; }, get$dateHelpText() { return "yyyy/mm/dd"; }, get$tabLabelRaw() { return "\u7b2c $tabIndex \u500b\u5206\u9801 (\u5171 $tabCount \u500b)"; }, get$modalBarrierDismissLabel() { return "\u95dc\u9589"; }, get$pageRowsInfoTitleRaw() { return "\u7b2c $firstRow - $lastRow \u5217 (\u7e3d\u5171 $rowCount \u5217)"; }, get$pageRowsInfoTitleApproximateRaw() { return "\u7b2c $firstRow - $lastRow \u5217 (\u7e3d\u5171\u7d04 $rowCount \u5217)"; }, get$timePickerHourModeAnnouncement() { return "\u9078\u53d6\u5c0f\u6642\u6578"; }, get$timePickerMinuteModeAnnouncement() { return "\u9078\u53d6\u5206\u9418\u6578"; }, get$alertDialogLabel() { return "\u5feb\u8a0a"; }, get$reorderItemToStart() { return "\u79fb\u81f3\u958b\u982d"; }, get$reorderItemToEnd() { return "\u79fb\u81f3\u7d50\u5c3e"; }, get$remainingTextFieldCharacterCountOne() { return "\u9084\u53ef\u8f38\u5165 1 \u500b\u5b57\u5143"; }, get$remainingTextFieldCharacterCountOther() { return "\u9084\u53ef\u8f38\u5165 $remainingCount \u500b\u5b57\u5143"; } }; A.MaterialLocalizationZu.prototype = { get$alertDialogLabel() { return "Isexwayiso"; }, get$anteMeridiemAbbreviation() { return "AM"; }, get$backButtonTooltip() { return "Emuva"; }, get$calendarModeButtonLabel() { return "Shintshela kukhalenda"; }, get$cancelButtonLabel() { return "KHANSELA"; }, get$collapsedIconTapHint() { return "Nweba"; }, get$dateHelpText() { return "mm/dd/yyyy"; }, get$dateInputLabel() { return "Faka idethi"; }, get$dateOutOfRangeLabel() { return "Ikude kubanga."; }, get$datePickerHelpText() { return "KHETHA IDETHI"; }, get$dialModeButtonLabel() { return "Shintshela kwimodi yesikhi sokudayela"; }, get$dialogLabel() { return "Ingxoxo"; }, get$drawerLabel() { return "Imenyu yokuzulazula"; }, get$expandedIconTapHint() { return "Goqa"; }, get$firstPageTooltip() { return "Ikhasi lokuqala"; }, get$inputDateModeButtonLabel() { return "Shintshela kokokufaka"; }, get$inputTimeModeButtonLabel() { return "Shintshela kwimodi yokufaka yombhalo"; }, get$invalidDateFormatLabel() { return "Ifomethi engavumelekile."; }, get$invalidTimeLabel() { return "Faka igama elivumelekile"; }, get$lastPageTooltip() { return "Ikhasi lokugcina"; }, get$licensesPackageDetailTextFew() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextOne() { return "ilayisense e-1"; }, get$licensesPackageDetailTextOther() { return "amalayisense angu-$licenseCount"; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextZero() { return "No licenses"; }, get$licensesPageTitle() { return "Amalayisense"; }, get$modalBarrierDismissLabel() { return "Cashisa"; }, get$nextMonthTooltip() { return "Inyanga ezayo"; }, get$nextPageTooltip() { return "Ikhasi elilandelayo"; }, get$okButtonLabel() { return "KULUNGILE"; }, get$openAppDrawerTooltip() { return "Vula imenyu yokuzulazula"; }, get$pageRowsInfoTitleRaw() { return "$firstRow\u2013$lastRow kokungu-$rowCount"; }, get$pageRowsInfoTitleApproximateRaw() { return "$firstRow\u2013$lastRow cishe kokungu-$rowCount"; }, get$popupMenuLabel() { return "Imenyu ye-popup"; }, get$postMeridiemAbbreviation() { return "PM"; }, get$previousMonthTooltip() { return "Inyanga edlule"; }, get$previousPageTooltip() { return "Ikhasi elidlule"; }, get$refreshIndicatorSemanticLabel() { return "Vuselela"; }, get$remainingTextFieldCharacterCountFew() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountOne() { return "1 uhlamvu olusele"; }, get$remainingTextFieldCharacterCountOther() { return "$remainingCount izinhlamvu ezisele"; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountZero() { return null; }, get$reorderItemDown() { return "Iya phansi"; }, get$reorderItemToEnd() { return "Yisa ekugcineni"; }, get$reorderItemToStart() { return "Yisa ekuqaleni"; }, get$reorderItemUp() { return "Iya phezulu"; }, get$rowsPerPageTitle() { return "Imigqa ekhasini ngalinye:"; }, get$scriptCategory() { return B.ScriptCategory_0; }, get$selectYearSemanticsLabel() { return "Khetha unyaka"; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, get$selectedRowCountTitleOne() { return "1 into ekhethiwe"; }, get$selectedRowCountTitleOther() { return "$selectedRowCount izinto ezikhethiwe"; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleZero() { return null; }, get$showMenuTooltip() { return "Bonisa imenyu"; }, get$tabLabelRaw() { return "Ithebhu $tabIndex kwangu-$tabCount"; }, get$timeOfDayFormatRaw() { return B.TimeOfDayFormat_3; }, get$timePickerDialHelpText() { return "KHETHA ISIKHATHI"; }, get$timePickerHourLabel() { return "Ihora"; }, get$timePickerHourModeAnnouncement() { return "Khetha amahora"; }, get$timePickerInputHelpText() { return "FAKA ISIKHATHI"; }, get$timePickerMinuteLabel() { return "Iminithi"; }, get$timePickerMinuteModeAnnouncement() { return "Khetha amaminithi"; } }; A.GlobalMaterialLocalizations.prototype = { formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat) { var hour, t1, _this = this; switch (A.hourFormat(_this.timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat)).index) { case 0: return _this._twoDigitZeroPaddedFormat.format$1(0, timeOfDay.hour); case 1: return _this._decimalFormat.format$1(0, timeOfDay.hour); case 2: hour = timeOfDay.get$hourOfPeriod(); t1 = hour === 0 ? 12 : hour; return _this._decimalFormat.format$1(0, t1); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, formatMinute$1(timeOfDay) { return this._twoDigitZeroPaddedFormat.format$1(0, timeOfDay.minute); }, formatYear$1(date) { return this._fullYearFormat.format$1(0, date); }, formatCompactDate$1(date) { return this._compactDateFormat.format$1(0, date); }, formatMediumDate$1(date) { return this._mediumDateFormat.format$1(0, date); }, formatFullDate$1(date) { return this._longDateFormat.format$1(0, date); }, formatMonthYear$1(date) { return this._yearMonthFormat.format$1(0, date); }, parseCompactDate$1(inputString) { var t1, exception; try { t1 = inputString != null ? this._compactDateFormat._date_format$_parse$3$strict$utc(inputString, true, false) : null; return t1; } catch (exception) { if (type$.FormatException._is(A.unwrapException(exception))) return null; else throw exception; } }, get$narrowWeekdays() { return this._longDateFormat.get$dateSymbols().NARROWWEEKDAYS; }, get$firstDayOfWeekIndex() { return B.JSInt_methods.$mod(this._longDateFormat.get$dateSymbols().FIRSTDAYOFWEEK + 1, 7); }, formatDecimal$1(number) { return this._decimalFormat.format$1(0, number); }, formatTimeOfDay$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat) { var _this = this, hour = _this.formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat), minute = _this._twoDigitZeroPaddedFormat.format$1(0, timeOfDay.minute); switch (_this.timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat).index) { case 4: return hour + ":" + minute + " " + _this._material_localizations0$_formatDayPeriod$1(timeOfDay); case 3: case 0: return hour + ":" + minute; case 1: return hour + "." + minute; case 5: return _this._material_localizations0$_formatDayPeriod$1(timeOfDay) + " " + hour + ":" + minute; case 2: return hour + " h " + minute; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _material_localizations0$_formatDayPeriod$1(timeOfDay) { switch ((timeOfDay.hour < 12 ? B.DayPeriod_0 : B.DayPeriod_1).index) { case 0: return this.get$anteMeridiemAbbreviation(); case 1: return this.get$postMeridiemAbbreviation(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, pageRowsInfoTitle$4(firstRow, lastRow, rowCount, rowCountIsApproximate) { var t1, text = rowCountIsApproximate ? this.get$pageRowsInfoTitleApproximateRaw() : null; if (text == null) text = this.get$pageRowsInfoTitleRaw(); t1 = this._decimalFormat; return B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(text, "$firstRow", t1.format$1(0, firstRow)), "$lastRow", t1.format$1(0, lastRow)), "$rowCount", t1.format$1(0, rowCount)); }, tabLabel$2$tabCount$tabIndex(tabCount, tabIndex) { var t1 = this._decimalFormat; return B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(this.get$tabLabelRaw(), "$tabIndex", t1.format$1(0, tabIndex)), "$tabCount", t1.format$1(0, tabCount)); }, get$selectedRowCountTitleZero() { return null; }, get$selectedRowCountTitleOne() { return null; }, get$selectedRowCountTitleTwo() { return null; }, get$selectedRowCountTitleFew() { return null; }, get$selectedRowCountTitleMany() { return null; }, selectedRowCountTitle$1(selectedRowCount) { var _this = this, t1 = _this.get$selectedRowCountTitleZero(), t2 = _this.get$selectedRowCountTitleOne(), t3 = _this.get$selectedRowCountTitleTwo(); return B.JSString_methods.replaceFirst$2(A.Intl_pluralLogic(selectedRowCount, _this.get$selectedRowCountTitleFew(), _this._localeName, _this.get$selectedRowCountTitleMany(), t2, _this.get$selectedRowCountTitleOther(), t3, t1), "$selectedRowCount", _this._decimalFormat.format$1(0, selectedRowCount)); }, timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat) { if (alwaysUse24HourFormat) return A._get24HourVersionOf(this.get$timeOfDayFormatRaw()); return this.get$timeOfDayFormatRaw(); }, get$licensesPackageDetailTextZero() { return null; }, get$licensesPackageDetailTextOne() { return null; }, get$licensesPackageDetailTextTwo() { return null; }, get$licensesPackageDetailTextMany() { return null; }, get$licensesPackageDetailTextFew() { return null; }, licensesPackageDetailText$1(licenseCount) { var _this = this, t1 = _this.get$licensesPackageDetailTextZero(), t2 = _this.get$licensesPackageDetailTextOne(), t3 = _this.get$licensesPackageDetailTextTwo(), t4 = _this.get$licensesPackageDetailTextMany(); return B.JSString_methods.replaceFirst$2(A.Intl_pluralLogic(licenseCount, _this.get$licensesPackageDetailTextFew(), _this._localeName, t4, t2, _this.get$licensesPackageDetailTextOther(), t3, t1), "$licenseCount", _this._decimalFormat.format$1(0, licenseCount)); }, get$remainingTextFieldCharacterCountZero() { return null; }, get$remainingTextFieldCharacterCountOne() { return null; }, get$remainingTextFieldCharacterCountTwo() { return null; }, get$remainingTextFieldCharacterCountMany() { return null; }, get$remainingTextFieldCharacterCountFew() { return null; }, remainingTextFieldCharacterCount$1(remaining) { var _this = this, t1 = _this.get$remainingTextFieldCharacterCountZero(), t2 = _this.get$remainingTextFieldCharacterCountOne(), t3 = _this.get$remainingTextFieldCharacterCountTwo(), t4 = _this.get$remainingTextFieldCharacterCountMany(); return B.JSString_methods.replaceFirst$2(A.Intl_pluralLogic(remaining, _this.get$remainingTextFieldCharacterCountFew(), _this._localeName, t4, t2, _this.get$remainingTextFieldCharacterCountOther(), t3, t1), "$remainingCount", _this._decimalFormat.format$1(0, remaining)); }, $isMaterialLocalizations: 1 }; A._MaterialLocalizationsDelegate0.prototype = { isSupported$1(locale) { return $.$get$kMaterialSupportedLanguages().contains$1(0, locale.get$languageCode(locale)); }, load$1(_, locale) { return $._MaterialLocalizationsDelegate__loadedTranslations.putIfAbsent$2(0, locale, new A._MaterialLocalizationsDelegate_load_closure(locale)); }, shouldReload$1(old) { return false; }, toString$0(_) { return "GlobalMaterialLocalizations.delegate(" + $.$get$kMaterialSupportedLanguages()._collection$_length + " locales)"; } }; A._MaterialLocalizationsDelegate_load_closure.prototype = { call$0() { var t1, localeName, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat, _null = null; A.loadDateIntlDataIfNotLoaded(); t1 = this.locale; localeName = A.canonicalizedLocale(J.toString$0$(t1)); if (A.DateFormat_localeExists(localeName)) { fullYearFormat = A.DateFormat$y(localeName); compactDateFormat = A.DateFormat$yMd(localeName); shortDateFormat = A.DateFormat$yMMMd(localeName); mediumDateFormat = A.DateFormat$MMMEd(localeName); longDateFormat = A.DateFormat$yMMMMEEEEd(localeName); yearMonthFormat = A.DateFormat$yMMMM(localeName); shortMonthDayFormat = A.DateFormat$MMMd(localeName); } else if (A.DateFormat_localeExists(t1.get$languageCode(t1))) { fullYearFormat = A.DateFormat$y(t1.get$languageCode(t1)); compactDateFormat = A.DateFormat$yMd(t1.get$languageCode(t1)); shortDateFormat = A.DateFormat$yMMMd(t1.get$languageCode(t1)); mediumDateFormat = A.DateFormat$MMMEd(t1.get$languageCode(t1)); longDateFormat = A.DateFormat$yMMMMEEEEd(t1.get$languageCode(t1)); yearMonthFormat = A.DateFormat$yMMMM(t1.get$languageCode(t1)); shortMonthDayFormat = A.DateFormat$MMMd(t1.get$languageCode(t1)); } else { fullYearFormat = A.DateFormat$y(_null); compactDateFormat = A.DateFormat$yMd(_null); shortDateFormat = A.DateFormat$yMMMd(_null); mediumDateFormat = A.DateFormat$MMMEd(_null); longDateFormat = A.DateFormat$yMMMMEEEEd(_null); yearMonthFormat = A.DateFormat$yMMMM(_null); shortMonthDayFormat = A.DateFormat$MMMd(_null); } if (A.NumberFormat_localeExists(localeName)) { decimalFormat = A.NumberFormat_NumberFormat$decimalPattern(localeName); twoDigitZeroPaddedFormat = A.NumberFormat_NumberFormat("00", localeName); } else if (A.NumberFormat_localeExists(t1.get$languageCode(t1))) { decimalFormat = A.NumberFormat_NumberFormat$decimalPattern(t1.get$languageCode(t1)); twoDigitZeroPaddedFormat = A.NumberFormat_NumberFormat("00", t1.get$languageCode(t1)); } else { decimalFormat = A.NumberFormat_NumberFormat$decimalPattern(_null); twoDigitZeroPaddedFormat = A.NumberFormat_NumberFormat("00", _null); } t1 = A.getMaterialTranslation(t1, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat); t1.toString; return new A.SynchronousFuture(t1, type$.SynchronousFuture_MaterialLocalizations); }, $signature: 1309 }; A.loadDateIntlDataIfNotLoaded_closure.prototype = { call$2(locale, data) { var t2, symbols = A.DateSymbols_DateSymbols$deserializeFromMap(data), t1 = B.Map_2zurD.$index(0, locale); if ($.$get$_dateTimeSymbols() instanceof A.UninitializedLocaleData) { $._dateTimeSymbols = A._emptySymbols(); $.lastDateSymbolLocale = $.cachedDateSymbols = null; } if ($.$get$dateTimePatterns() instanceof A.UninitializedLocaleData) $.dateTimePatterns = A._emptyPatterns(); if (t1 == null) A.throwExpression(A.ArgumentError$("Missing DateTime formatting patterns", null)); t2 = symbols.NAME; if (locale != t2) A.throwExpression(A.ArgumentError$value(A._setArrayType([locale, t2], type$.JSArray_nullable_String), "Locale does not match symbols.NAME", null)); J.$indexSet$ax($.$get$_dateTimeSymbols(), t2, symbols); J.$indexSet$ax($.$get$dateTimePatterns(), t2, t1); }, $signature: 1308 }; A.GlobalWidgetsLocalizations.prototype = { get$textDirection(_) { return A._lateReadCheck(this.__GlobalWidgetsLocalizations__textDirection, "_textDirection"); }, $isWidgetsLocalizations: 1 }; A._WidgetsLocalizationsDelegate0.prototype = { isSupported$1(locale) { return true; }, load$1(_, locale) { var t1 = new A.GlobalWidgetsLocalizations(locale); t1.__GlobalWidgetsLocalizations__textDirection = B.JSArray_methods.contains$1(B.List_SL9, locale.get$languageCode(locale).toLowerCase()) ? B.TextDirection_0 : B.TextDirection_1; return new A.SynchronousFuture(t1, type$.SynchronousFuture_WidgetsLocalizations); }, shouldReload$1(old) { return false; }, toString$0(_) { return "GlobalWidgetsLocalizations.delegate(all locales)"; } }; A.StoreProvider.prototype = { updateShouldNotify$1(oldWidget) { return this._store !== oldWidget._store; } }; A.StoreConnector.prototype = { build$1(_, context) { var _this = this, t1 = _this.$ti; return new A._StoreStreamListener(_this.builder, _this.converter, A.StoreProvider_of(context, t1._precomputed1), true, false, _this.onInit, _this.onDispose, null, _this.onWillChange, _this.onDidChange, _this.onInitialBuild, null, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_StoreStreamListener<1,2>")); } }; A.StoreBuilder.prototype = { build$1(_, context) { var _null = null, t1 = this.$ti, t2 = t1._precomputed1; return A.StoreConnector$(this.builder, A.instantiate1(A.flutter_redux_StoreBuilder__identity$closure(), t2), _null, _null, this.onInit, _null, _null, true, t2, t1._eval$1("Store<1>")); } }; A._StoreStreamListener.prototype = { createState$0() { var t1 = this.$ti; return new A._StoreStreamListenerState(B._StateLifecycle_0, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_StoreStreamListenerState<1,2>")); } }; A._StoreStreamListenerState.prototype = { initState$0() { var _this = this, t1 = _this._widget, t2 = t1.onInit; if (t2 != null) t2.call$1(t1.store); _this._computeLatestValue$0(); _this._widget.toString; _this._createStream$0(); _this.super$State$initState(); }, dispose$0(_) { this._widget.toString; this.super$State$dispose(0); }, didUpdateWidget$1(oldWidget) { var _this = this; _this._computeLatestValue$0(); if (_this._widget.store !== oldWidget.store) _this._createStream$0(); _this.super$State$didUpdateWidget(oldWidget); }, _computeLatestValue$0() { var e, s, t1, t2, exception, _this = this; try { _this._latestError = null; t1 = _this._widget; t2 = t1.store; _this._latestValue = t1.converter.call$1(t2); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); _this._latestValue = null; _this._latestError = new A.ConverterError(e, s); } }, build$1(_, context) { var t1, _this = this; _this._widget.toString; t1 = A._lateReadCheck(_this.___StoreStreamListenerState__stream, "_stream"); t1 = A.StreamBuilder$(new A._StoreStreamListenerState_build_closure(_this), t1, _this.$ti._rest[1]); return t1; }, _mapConverter$1(state) { var t1 = this._widget, t2 = t1.store; return t1.converter.call$1(t2); }, _whereDistinct$1(vm) { this._widget.toString; return true; }, _ignoreChange$1(state) { this._widget.toString; return true; }, _createStream$0() { var _this = this, t1 = _this._widget.store._changeController, t2 = A._instanceType(t1)._eval$1("_BroadcastStream<1>"), t3 = t2._eval$1("_WhereStream"), t4 = _this.$ti._rest[1], t5 = t3._eval$1("@")._bind$1(t4)._eval$1("_MapStream<1,2>"); _this.___StoreStreamListenerState__stream = A._StreamHandlerTransformer$(_this.get$_flutter_redux$_handleChange(), null, _this.get$_handleError(), t4, t4).bind$1(0, new A._WhereStream(_this.get$_whereDistinct(), new A._MapStream(_this.get$_mapConverter(), new A._WhereStream(_this.get$_ignoreChange(), new A._BroadcastStream(t1, t2), t3), t5), t5._eval$1("_WhereStream"))); }, _flutter_redux$_handleChange$2(vm, sink) { var t1; this._latestError = null; this._widget.toString; this._latestValue = vm; t1 = sink._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, vm); }, _handleError$3(error, stackTrace, sink) { this._latestValue = null; this._latestError = new A.ConverterError(error, stackTrace); sink.addError$2(error, stackTrace); } }; A._StoreStreamListenerState_build_closure.prototype = { call$2(context, snapshot) { var t1 = this.$this, t2 = t1._latestError; if (t2 != null) throw A.wrapException(t2); t2 = t1._widget; t1 = t1._latestValue; return t2.builder.call$2(context, t1); }, $signature() { return this.$this.$ti._eval$1("Widget(BuildContext,AsyncSnapshot<2>)"); } }; A.StoreProviderError.prototype = { toString$0(_) { return "Error: No " + A.createRuntimeType(this.$ti._precomputed1).toString$0(0) + " found. To fix, please try:\n \n * Wrapping your MaterialApp with the StoreProvider, \n rather than an individual Route\n * Providing full type information to your Store, \n StoreProvider and StoreConnector\n * Ensure you are using consistent and complete imports. \n E.g. always use `import 'package:my_app/app_state.dart';\n \nIf none of these solutions work, please file a bug at:\nhttps://github.com/brianegan/flutter_redux/issues/new\n "; } }; A.ConverterError.prototype = { toString$0(_) { return "Converter Function Error: " + A.S(this.error) + "\n \n" + A.S(this.stackTrace) + ";\n"; }, get$stackTrace() { return this.stackTrace; } }; A.ActionPaneConfiguration.prototype = { updateShouldNotify$1(oldWidget) { return !this.alignment.$eq(0, oldWidget.alignment) || this.direction !== oldWidget.direction || this.isStartActionPane !== oldWidget.isStartActionPane; } }; A.DrawerMotion.prototype = { build$1(_, context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$._ActionPaneScope); t1 = t1 == null ? null : t1.actionPaneData; t1.toString; return new A.FlexEntranceTransition(t1.direction, t1.fromStart, new A._AnimatedEvaluation(type$.Animation_double._as(A.Slidable_of(context)._animationController), new A.CurveTween(new A.Interval(0, t1.extentRatio, B.C__Linear)), type$.CurveTween._eval$1("_AnimatedEvaluation")), t1.children, null); } }; A.CustomSlidableAction.prototype = { build$1(_, context) { var _this = this, _null = null, effectiveForegroundColor = _this.foregroundColor; return A.Expanded$(A.SizedBox$expand(A.OutlinedButton$(_this.child, _null, new A.CustomSlidableAction_build_closure(_this, context), A.OutlinedButton_styleFrom(_null, _null, _this.backgroundColor, _null, _null, _null, _null, _null, _null, effectiveForegroundColor, _null, effectiveForegroundColor, _null, B.RoundedRectangleBorder_LkV1, B.BorderSide_0CF, _null, _null, _null, _null))), _this.flex); } }; A.CustomSlidableAction_build_closure.prototype = { call$0() { var t1 = this.context; this.$this.onPressed.call$1(t1); t1 = A.Slidable_of(t1); if (t1 != null) t1.close$0(0); return null; }, $signature: 0 }; A.SlidableAction.prototype = { build$1(_, context) { var child, _this = this, _null = null, children = A._setArrayType([], type$.JSArray_Widget); children.push(A.Icon$(_this.icon, _null, _null)); if (children.length !== 0) children.push(new A.SizedBox(_null, 4, _null, _null)); children.push(A.Text$(_this.label, _null, _null, B.TextOverflow_2, _null, _null, _null, _null, _null, _null)); child = children.length === 1 ? B.JSArray_methods.get$first(children) : A.Column$(A.List_List$of(new A.MappedListIterable(children, new A.SlidableAction_build_closure(), type$.MappedListIterable_Widget_Widget), true, type$.Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); return new A.CustomSlidableAction(1, _this.backgroundColor, _this.foregroundColor, true, _this.onPressed, child, _null); } }; A.SlidableAction_build_closure.prototype = { call$1(child) { return new A.Flexible(1, B.FlexFit_1, child, null); }, $signature: 1303 }; A.SlidableAutoCloseBehaviorInteractor.prototype = { build$1(_, context) { var t1 = this.groupTag, t2 = this.controller; return new A.SlidableAutoCloseInteractor(t1, t2, new A.SlidableAutoCloseBarrierInteractor(t1, t2, this.child, null), null); } }; A.SlidableAutoCloseNotification.prototype = {}; A.SlidableAutoCloseInteractor.prototype = { build$1(_, context) { var t1 = this.groupTag, t2 = this.controller; return new A.SlidableAutoCloseNotificationSender(t1, t2, new A.SlidableAutoCloseBehaviorListener(t1, t2, this.child, null), null); } }; A.SlidableAutoCloseBehaviorListener.prototype = { build$1(_, context) { return new A.SlidableGroupBehaviorListener(new A.SlidableAutoCloseBehaviorListener_build_closure(this), this.child, null, type$.SlidableGroupBehaviorListener_SlidableAutoCloseNotification); } }; A.SlidableAutoCloseBehaviorListener_build_closure.prototype = { call$1(notification) { notification.get$groupTag(); }, $signature: 1302 }; A.SlidableAutoCloseNotificationSender.prototype = { build$1(_, context) { context.dependOnInheritedWidgetOfExactType$1$0(type$._SlidableAutoCloseData); return new A._SlidableNotificationSender(this.controller, new A.SlidableAutoCloseNotificationSender_build_closure(this, context), this.child, false, null); } }; A.SlidableAutoCloseNotificationSender_build_closure.prototype = { call$1($status) { var t1 = this.$this; if (($status === B.AnimationStatus_1 || $status === B.AnimationStatus_2) && !t1.controller._closing) A.SlidableGroupNotification_dispatch(this.context, new A.SlidableAutoCloseNotification(t1.groupTag, t1.controller, false), false, type$.SlidableAutoCloseNotification); return null; }, $signature: 42 }; A.SlidableAutoCloseBarrierNotification.prototype = {}; A.SlidableAutoCloseBarrierInteractor.prototype = { build$1(_, context) { var t1 = this.groupTag, t2 = this.controller; return new A.SlidableAutoCloseBarrierNotificationSender(t1, t2, new A.SlidableAutoCloseBarrierBehaviorListener(t1, t2, this.child, null), null); } }; A.SlidableAutoCloseBarrierNotificationSender.prototype = { createState$0() { return new A._SlidableAutoCloseBarrierNotificationSenderState(B._StateLifecycle_0); } }; A._SlidableAutoCloseBarrierNotificationSenderState.prototype = { _auto_close_behavior$_handleStatusChanged$1($status) { var t2, _this = this, t1 = $status === B.AnimationStatus_0, willBarrierBeEnabled = !t1; if (willBarrierBeEnabled !== (_this.dispatcher != null)) { t2 = _this._framework$_element; t2.toString; _this.dispatcher = A.SlidableGroupNotification_createDispatcher(t2, false, type$.SlidableAutoCloseBarrierNotification); _this.dispatchSlidableAutoCloseBarrierNotification$1$enabled(willBarrierBeEnabled); if (t1) _this.dispatcher = null; } }, dispatchSlidableAutoCloseBarrierNotification$1$enabled(enabled) { var t3, t1 = this._widget, t2 = t1.groupTag; t1 = t1.controller; t3 = this.dispatcher; if (t3 != null) t3.dispatch$1(new A.SlidableAutoCloseBarrierNotification(t2, t1, enabled)); }, dispose$0(_) { if (this.dispatcher != null) $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SlidableAutoCloseBarrierNotificationSenderState_dispose_closure(this)); this.super$State$dispose(0); }, build$1(_, context) { var t1 = this._widget.controller; context.dependOnInheritedWidgetOfExactType$1$0(type$._SlidableAutoCloseData); return new A._SlidableNotificationSender(t1, this.get$_auto_close_behavior$_handleStatusChanged(), this._widget.child, false, null); } }; A._SlidableAutoCloseBarrierNotificationSenderState_dispose_closure.prototype = { call$1(_) { this.$this.dispatchSlidableAutoCloseBarrierNotification$1$enabled(false); }, $signature: 22 }; A.SlidableAutoCloseBarrierBehaviorListener.prototype = { createState$0() { return new A._SlidableAutoCloseBarrierBehaviorListenerState(B._StateLifecycle_0); } }; A._SlidableAutoCloseBarrierBehaviorListenerState.prototype = { build$1(_, context) { var _null = null; return new A.SlidableGroupBehaviorListener(new A._SlidableAutoCloseBarrierBehaviorListenerState_build_closure(this), A.GestureDetector$(_null, A.AbsorbPointer$(false, this._widget.child), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, type$.SlidableGroupBehaviorListener_SlidableAutoCloseBarrierNotification); } }; A._SlidableAutoCloseBarrierBehaviorListenerState_build_closure.prototype = { call$1(notification) { this.$this._widget.toString; notification.get$groupTag(); }, $signature: 1278 }; A._SlidableNotificationSender.prototype = { createState$0() { return new A._SlidableNotificationSenderState0(B._StateLifecycle_0); } }; A._SlidableNotificationSenderState0.prototype = { initState$0() { this.super$State$initState(); var t1 = this._widget; t1.toString; t1.controller._animationController.addStatusListener$1(this.get$handleStatusChanged()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.controller; t2 = _this._widget; if (t1 !== t2.controller || !J.$eq$(oldWidget.onStatusChanged, t2.onStatusChanged)) { t2 = _this.get$handleStatusChanged(); t1._animationController.addStatusListener$1(t2); t1 = _this._widget; t1.toString; t1.controller._animationController.addStatusListener$1(t2); } }, dispose$0(_) { var t1 = this._widget; t1.toString; t1.controller._animationController.addStatusListener$1(this.get$handleStatusChanged()); this.super$State$dispose(0); }, handleStatusChanged$1($status) { this._widget.toString; }, build$1(_, context) { return this._widget.child; } }; A.ActionPaneType.prototype = { toString$0(_) { return "ActionPaneType." + this._core$_name; } }; A.GestureDirection.prototype = { toString$0(_) { return "GestureDirection." + this._core$_name; } }; A.EndGesture.prototype = {}; A.OpeningGesture.prototype = {}; A.ClosingGesture.prototype = {}; A.StillGesture.prototype = {}; A.SlidableController.prototype = { set$actionPaneConfigurator(value) { var _this = this; if (_this._actionPaneConfigurator != value) { _this._actionPaneConfigurator = value; if (_this._replayEndGesture && value != null) { _this._replayEndGesture = false; value.handleEndGestureChanged$0(); } } }, set$ratio(_, value) { var _this = this, t1 = _this._actionPaneConfigurator, newRatio = t1 == null ? null : t1.normalizeRatio$1(value); if (newRatio == null) newRatio = value; if (!_this._closing) if (newRatio !== 0) { if (newRatio > 0) t1 = _this.isLeftToRight ? _this.enableStartActionPane : _this.enableEndActionPane; else t1 = false; if (!t1) if (newRatio < 0) t1 = _this.isLeftToRight ? _this.enableEndActionPane : _this.enableStartActionPane; else t1 = false; else t1 = true; } else t1 = true; else t1 = false; if (t1 && newRatio !== A._lateReadCheck(_this._animationController.__AnimationController__value, "_value") * _this.direction._change_notifier$_value) { _this.direction.set$value(0, B.JSNumber_methods.toInt$0(J.get$sign$in(newRatio))); _this._animationController.set$value(0, Math.abs(newRatio)); } }, _onDirectionChanged$0() { var mulitiplier = this.isLeftToRight ? 1 : -1; this.actionPaneType.set$value(0, B.List_I2K[this.direction._change_notifier$_value * mulitiplier + 1]); }, close$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$close$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._closing = true; t1 = $async$self._animationController; t1._direction = B._AnimationDirection_1; $async$goto = 2; return A._asyncAwait(t1._animateToInternal$3$curve$duration(0, B.Cubic_JUR, B.Duration_200000), $async$close$0); case 2: // returning from await. $async$self.direction.set$value(0, 0); $async$self._closing = false; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$close$0, $async$completer); }, openCurrentActionPane$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this; var $async$openCurrentActionPane$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._actionPaneConfigurator._widget.toString; $async$returnValue = $async$self.openTo$3$curve$duration(0.5, B.Cubic_JUR, B.Duration_200000); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$openCurrentActionPane$0, $async$completer); }, openTo$3$curve$duration(ratio, curve, duration) { return this.openTo$body$SlidableController(ratio, curve, duration); }, openTo$body$SlidableController(ratio, curve, duration) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$openTo$3$curve$duration = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._closing) { // goto return $async$goto = 1; break; } t1 = $async$self._animationController; if (A._lateReadCheck(t1.__AnimationController__value, "_value") === 0) $async$self.set$ratio(0, 0.05 * J.get$sign$in(ratio)); t1._direction = B._AnimationDirection_0; $async$returnValue = t1._animateToInternal$3$curve$duration(Math.abs(ratio), curve, duration); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$openTo$3$curve$duration, $async$completer); }, dispose$0(_) { var t1 = this._animationController; t1.stop$0(0); t1.dispose$0(0); t1 = this.direction; t1.removeListener$1(0, this.get$_onDirectionChanged()); t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } }; A._ValueNotifier.prototype = {}; A.SlidableDismissal.prototype = { createState$0() { return new A._SlidableDismissalState(null, null, B._StateLifecycle_0); } }; A._SlidableDismissalState.prototype = { initState$0() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); _this.___SlidableDismissalState_animationController = t1; t2 = type$.Tween_double; _this.___SlidableDismissalState_resizeAnimation = new A._AnimatedEvaluation(type$.Animation_double._as(A._lateReadCheck(t1, "animationController")), new A.Tween(1, 0, t2), t2._eval$1("_AnimatedEvaluation")); _this._widget.controller.resizeRequest.addListener$1(0, _this.get$handleResizeRequestChanged()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.controller; if (t1 !== _this._widget.controller) { t2 = _this.get$handleResizeRequestChanged(); t1.resizeRequest.removeListener$1(0, t2); _this._widget.controller.resizeRequest.addListener$1(0, t2); } }, dispose$0(_) { var _this = this; _this._widget.controller.resizeRequest.removeListener$1(0, _this.get$handleResizeRequestChanged()); A._lateReadCheck(_this.___SlidableDismissalState_animationController, "animationController").dispose$0(0); _this.super$__SlidableDismissalState_State_SingleTickerProviderStateMixin$dispose(0); }, handleResizeRequestChanged$0() { var _this = this, _s19_ = "animationController", t1 = _this._widget.controller, resizeRequest = t1.resizeRequest._change_notifier$_value; if (A._lateReadCheck(t1._animationController.__AnimationController__status, "_status") === B.AnimationStatus_3) { A._lateReadCheck(_this.___SlidableDismissalState_animationController, _s19_).duration = resizeRequest.get$duration(resizeRequest); A._lateReadCheck(_this.___SlidableDismissalState_animationController, _s19_).forward$1$from(0, 0).then$1$1(0, new A._SlidableDismissalState_handleResizeRequestChanged_closure(resizeRequest), type$.Null); _this.setState$1(new A._SlidableDismissalState_handleResizeRequestChanged_closure0(_this)); } }, build$1(_, context) { var t1 = A._lateReadCheck(this.___SlidableDismissalState_resizeAnimation, "resizeAnimation"), t2 = this._widget; return A.SizeTransition$(t2.axis, 0, t2.child, t1); } }; A._SlidableDismissalState_handleResizeRequestChanged_closure.prototype = { call$1(_) { this.resizeRequest.get$onDismissed().call$0(); }, $signature: 86 }; A._SlidableDismissalState_handleResizeRequestChanged_closure0.prototype = { call$0() { this.$this.resized = true; }, $signature: 0 }; A.__SlidableDismissalState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.FlexEntranceTransition.prototype = { createRenderObject$1(context) { var t1 = new A._RenderFlexEntranceTransition(this.direction, this.startToEnd, this.mainAxisPosition, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t3, t1 = this.mainAxisPosition, t2 = renderObject._mainAxisPosition; if (t2 !== t1) { if (renderObject._node$_owner != null) { t3 = renderObject.get$markNeedsOffsets(); t2.parent.removeListener$1(0, t3); t1.parent.addListener$1(0, t3); } renderObject._mainAxisPosition = t1; renderObject.visitChildren$1(renderObject.get$updateChildOffsets()); renderObject.markNeedsPaint$0(); } t1 = this.direction; if (renderObject._flex_entrance_transition$_direction !== t1) { renderObject._flex_entrance_transition$_direction = t1; renderObject.markNeedsLayout$0(); } t1 = this.startToEnd; if (renderObject._startToEnd !== t1) { renderObject._startToEnd = t1; renderObject.markNeedsLayout$0(); } } }; A._FlexEntranceTransitionParentData.prototype = {}; A._RenderFlexEntranceTransition.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A._FlexEntranceTransitionParentData)) child.parentData = new A._FlexEntranceTransitionParentData(null, null, B.Offset_0_0); }, attach$1(owner) { this.super$__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin$attach(owner); this._mainAxisPosition.parent.addListener$1(0, this.get$markNeedsOffsets()); }, detach$0(_) { this._mainAxisPosition.parent.removeListener$1(0, this.get$markNeedsOffsets()); this.super$__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin$detach(0); }, markNeedsOffsets$0() { this.visitChildren$1(this.get$updateChildOffsets()); this.markNeedsPaint$0(); }, updateChildOffsets$1(child) { var parentData = type$.nullable__FlexEntranceTransitionParentData._as(child.parentData), t1 = A._lateReadCheck(parentData.___FlexEntranceTransitionParentData_mainAxisPosition, "mainAxisPosition"), t2 = this._mainAxisPosition, mainAxisPosition = t1.transform$1(0, t2.get$value(t2)); switch (this._flex_entrance_transition$_direction.index) { case 0: parentData.offset = new A.Offset(mainAxisPosition, 0); break; case 1: parentData.offset = new A.Offset(0, mainAxisPosition); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getTotalFlex$0() { var t1 = {}; t1.totalFlex = 0; this.visitChildren$1(new A._RenderFlexEntranceTransition_getTotalFlex_closure(t1)); return t1.totalFlex; }, performLayout$0() { var t2, _this = this, t1 = {}, totalFlex = _this.getTotalFlex$0(); t1.totalMainAxisExtent = 0; t2 = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(1 / 0, t2.minWidth, t2.maxWidth), B.JSInt_methods.clamp$2(1 / 0, t2.minHeight, t2.maxHeight)); _this.visitChildren$1(new A._RenderFlexEntranceTransition_performLayout_closure(t1, _this, totalFlex)); }, hitTestChildren$2$position(result, position) { var t2, childParentData, child, _this = this, _box_0 = {}, t1 = _box_0.child = _this._startToEnd ? _this.ContainerRenderObjectMixin__firstChild : _this.ContainerRenderObjectMixin__lastChild; for (t2 = type$.nullable__FlexEntranceTransitionParentData; t1 != null; t1 = child) { childParentData = t2._as(t1.parentData); if (result.addWithPaintOffset$3$hitTest$offset$position(new A._RenderFlexEntranceTransition_hitTestChildren_closure(_box_0, position, childParentData), childParentData.offset, position)) return true; child = _this._startToEnd ? childParentData.ContainerParentDataMixin_nextSibling : childParentData.ContainerParentDataMixin_previousSibling; _box_0.child = child; } return false; }, paint$2(context, offset) { var t1, t2, t3, childParentData, t4, _this = this, child = _this._startToEnd ? _this.ContainerRenderObjectMixin__lastChild : _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.nullable__FlexEntranceTransitionParentData, t2 = offset._dx, t3 = offset._dy; child != null;) { childParentData = t1._as(child.parentData); t4 = childParentData.offset; context.paintChild$2(child, new A.Offset(t4._dx + t2, t4._dy + t3)); child = _this._startToEnd ? childParentData.ContainerParentDataMixin_previousSibling : childParentData.ContainerParentDataMixin_nextSibling; } } }; A._RenderFlexEntranceTransition_getTotalFlex_closure.prototype = { call$1(child) { var parentData = type$.nullable__FlexEntranceTransitionParentData._as(child.parentData), t1 = this._box_0, t2 = t1.totalFlex, t3 = parentData.flex; t3.toString; t1.totalFlex = t2 + t3; }, $signature: 110 }; A._RenderFlexEntranceTransition_performLayout_closure.prototype = { call$1(child) { var extentFactor, innerConstraints, t2, mainAxisExtent, begin, parentData = type$.nullable__FlexEntranceTransitionParentData._as(child.parentData), t1 = parentData.flex; t1.toString; extentFactor = t1 / this.totalFlex; innerConstraints = A._Cell$named("innerConstraints"); t1 = this.$this; switch (t1._flex_entrance_transition$_direction.index) { case 0: t2 = type$.BoxConstraints; mainAxisExtent = t2._as(A.RenderObject.prototype.get$constraints.call(t1)).maxWidth * extentFactor; begin = t1._startToEnd ? -mainAxisExtent : t1._box$_size._dx; innerConstraints.__late_helper$_value = A.BoxConstraints$tightFor(t2._as(A.RenderObject.prototype.get$constraints.call(t1)).maxHeight, mainAxisExtent); break; case 1: t2 = type$.BoxConstraints; mainAxisExtent = t2._as(A.RenderObject.prototype.get$constraints.call(t1)).maxHeight * extentFactor; begin = t1._startToEnd ? -mainAxisExtent : t1._box$_size._dy; innerConstraints.__late_helper$_value = A.BoxConstraints$tightFor(mainAxisExtent, t2._as(A.RenderObject.prototype.get$constraints.call(t1)).maxWidth); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t2 = this._box_0; parentData.___FlexEntranceTransitionParentData_mainAxisPosition = new A.Tween(begin, t2.totalMainAxisExtent, type$.Tween_double); child.layout$1(0, innerConstraints._readLocal$0()); t1.updateChildOffsets$1(child); t2.totalMainAxisExtent += mainAxisExtent; }, $signature: 110 }; A._RenderFlexEntranceTransition_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._FlexEntranceTransitionParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._FlexEntranceTransitionParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.SlidableGestureDetector.prototype = { createState$0() { return new A._SlidableGestureDetectorState(B._StateLifecycle_0); } }; A._SlidableGestureDetectorState.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this._widget, t2 = t1.direction === B.Axis_0, canDragHorizontally = t2 && true, canDragVertically = !t2 && true; t2 = canDragHorizontally ? _this.get$handleDragStart() : _null; t3 = canDragHorizontally ? _this.get$handleDragUpdate() : _null; t4 = canDragHorizontally ? _this.get$handleDragEnd() : _null; t5 = canDragVertically ? _this.get$handleDragStart() : _null; t6 = canDragVertically ? _this.get$handleDragUpdate() : _null; t7 = canDragVertically ? _this.get$handleDragEnd() : _null; t8 = t1.dragStartBehavior; return A.GestureDetector$(B.HitTestBehavior_1, t1.child, t8, false, _null, _null, _null, _null, t4, t2, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t7, t5, t6); }, get$overallDragAxisExtent() { var t1 = this._framework$_element, size = t1.get$size(t1); return this._widget.direction === B.Axis_0 ? size._dx : size._dy; }, handleDragStart$1(details) { var t2, t3, _this = this, t1 = details.localPosition; _this.___SlidableGestureDetectorState_startPosition = t1; _this.___SlidableGestureDetectorState_lastPosition = A._lateReadCheck(t1, "startPosition"); t1 = J.get$sign$in(_this.dragExtent); t2 = _this.get$overallDragAxisExtent(); t3 = _this._widget.controller; _this.dragExtent = t1 * t2 * (A._lateReadCheck(t3._animationController.__AnimationController__value, "_value") * t3.direction._change_notifier$_value) * _this._widget.controller.direction._change_notifier$_value; }, handleDragUpdate$1(details) { var _this = this, t1 = details.primaryDelta; t1.toString; t1 = _this.dragExtent += t1; _this.___SlidableGestureDetectorState_lastPosition = details.localPosition; _this._widget.controller.set$ratio(0, t1 / _this.get$overallDragAxisExtent()); }, handleDragEnd$1(details) { var t2, t3, delta = A._lateReadCheck(this.___SlidableGestureDetectorState_lastPosition, "lastPosition").$sub(0, A._lateReadCheck(this.___SlidableGestureDetectorState_startPosition, "startPosition")), t1 = this._widget, gestureDirection = (t1.direction === B.Axis_0 ? delta._dx : delta._dy) >= 0 ? B.GestureDirection_0 : B.GestureDirection_1; t1 = t1.controller; t2 = details.primaryVelocity; if (t2 === 0 || t2 == null) t1.endGesture.set$value(0, new A.StillGesture(gestureDirection)); else { t3 = t1.endGesture; if (J.get$sign$in(t2) === t1.direction._change_notifier$_value) t3.set$value(0, new A.OpeningGesture()); else t3.set$value(0, new A.ClosingGesture()); } if (t1._actionPaneConfigurator == null) t1._replayEndGesture = true; } }; A.SlidableGroupBehaviorListener.prototype = { createState$0() { return new A._SlidableGroupBehaviorListenerState(B._StateLifecycle_0, this.$ti._eval$1("_SlidableGroupBehaviorListenerState<1>")); } }; A._SlidableGroupBehaviorListenerState.prototype = { didChangeDependencies$0() { this.super$State$didChangeDependencies(); var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(this.$ti._eval$1("_InheritedSlidableNotification<1>")); if (t1 != null) t1.get$notifier(); }, dispose$0(_) { this.super$State$dispose(0); }, build$1(_, context) { return this._widget.child; } }; A.SlidableNotificationSender.prototype = { createState$0() { return new A._SlidableNotificationSenderState(B._StateLifecycle_0); } }; A._SlidableNotificationSenderState.prototype = { didChangeDependencies$0() { this.super$State$didChangeDependencies(); var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._SlidableNotificationListenerScope); if (t1 != null) t1.get$state(t1); }, dispose$0(_) { this.super$State$dispose(0); }, build$1(_, context) { return this._widget.child; } }; A.SlidableScrollingBehavior.prototype = { createState$0() { return new A._SlidableScrollingBehaviorState(B._StateLifecycle_0); } }; A._SlidableScrollingBehaviorState.prototype = { didChangeDependencies$0() { this.super$State$didChangeDependencies(); this.removeScrollingNotifierListener$0(); this.addScrollingNotifierListener$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; this._widget.toString; }, dispose$0(_) { this.removeScrollingNotifierListener$0(); this.super$State$dispose(0); }, addScrollingNotifierListener$0() { var t1, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); if (t1 == null) t1 = null; else { t1 = t1._scrollable$_position; t1.toString; } _this.scrollPosition = t1; if (t1 != null) t1.isScrollingNotifier.addListener$1(0, _this.get$handleScrollingChanged()); }, removeScrollingNotifierListener$0() { var t1 = this.scrollPosition; if (t1 != null) t1.isScrollingNotifier.removeListener$1(0, this.get$handleScrollingChanged()); }, handleScrollingChanged$0() { var t2, t1 = this._widget; t1.toString; t2 = this.scrollPosition; t2 = t2 != null && t2.isScrollingNotifier._change_notifier$_value; if (t2) t1.controller.close$0(0); }, build$1(_, context) { return this._widget.child; } }; A.ActionPaneData.prototype = {}; A.ActionPane.prototype = { createState$0() { return new A._ActionPaneState(B._StateLifecycle_0); } }; A._ActionPaneState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; t1 = A.Slidable_of(t1); _this.controller = t1; t1.endGesture.addListener$1(0, _this.get$handleEndGestureChanged()); _this._widget.toString; _this.updateThresholds$0(); _this.controller.set$actionPaneConfigurator(_this); }, updateThresholds$0() { this._widget.toString; this.___ActionPaneState_openThreshold = 0.25; this.___ActionPaneState_closeThreshold = 0.25; }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; _this._widget.toString; _this.showMotion = true; _this.updateThresholds$0(); }, dispose$0(_) { var _this = this; _this.controller.endGesture.removeListener$1(0, _this.get$handleEndGestureChanged()); _this.controller._animationController.removeListener$1(0, _this.get$handleRatioChanged()); _this.controller.set$actionPaneConfigurator(null); _this.super$State$dispose(0); }, normalizeRatio$1(ratio) { var absoluteRatio; this._widget.toString; absoluteRatio = B.JSNumber_methods.clamp$2(Math.abs(ratio), 0, 0.5); if (ratio < 0) return -absoluteRatio; return absoluteRatio; }, handleEndGestureChanged$0() { var t2, _this = this, _s13_ = "openThreshold", t1 = _this.controller, gesture = t1.endGesture._change_notifier$_value; t1 = A._lateReadCheck(t1._animationController.__AnimationController__value, "_value"); _this._widget.toString; if (gesture instanceof A.OpeningGesture) { t2 = A._lateReadCheck(_this.___ActionPaneState_openThreshold, _s13_); _this._widget.toString; t2 = t2 <= 0.5; } else t2 = false; if (!t2) if (gesture instanceof A.StillGesture) { t2 = gesture.direction; if (!(t2 === B.GestureDirection_0 && t1 >= A._lateReadCheck(_this.___ActionPaneState_openThreshold, _s13_))) t1 = t2 === B.GestureDirection_1 && t1 > A._lateReadCheck(_this.___ActionPaneState_closeThreshold, "closeThreshold"); else t1 = true; } else t1 = false; else t1 = true; if (t1) { _this.controller.openCurrentActionPane$0(); return; } _this.controller.close$0(0); }, handleRatioChanged$0() { var show, _this = this, t1 = _this.controller, t2 = A._lateReadCheck(t1._animationController.__AnimationController__value, "_value"); t1 = t1.direction._change_notifier$_value; _this._widget.toString; show = Math.abs(t2 * t1) <= 0.5 && _this.controller._dismissGesture.ChangeNotifier__count <= 0; if (show !== _this.showMotion) _this.setState$1(new A._ActionPaneState_handleRatioChanged_closure(_this, show)); }, build$1(_, context) { var t2, t3, t4, child, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.ActionPaneConfiguration); t1.toString; t2 = this.showMotion; t3 = this._widget; if (t2) { t3.toString; t2 = t1.direction === B.Axis_0; t4 = t2 ? 0.5 : _null; t2 = t2 ? _null : 0.5; child = A.FractionallySizedBox$(t1.alignment, t3.motion, t2, t4); } else { t3.toString; child = _null; } t2 = t3.children; child.toString; return new A._ActionPaneScope(new A.ActionPaneData(0.5, t1.direction, t1.isStartActionPane, t2), child, _null); } }; A._ActionPaneState_handleRatioChanged_closure.prototype = { call$0() { this.$this.showMotion = this.show; }, $signature: 0 }; A._ActionPaneScope.prototype = { updateShouldNotify$1(oldWidget) { return oldWidget.actionPaneData !== this.actionPaneData; } }; A.Slidable.prototype = { createState$0() { return new A._SlidableState(null, null, null, B._StateLifecycle_0); } }; A._SlidableState.prototype = { get$wantKeepAlive() { this._widget.toString; return false; }, initState$0() { var t1, t2, t3, t4, _this = this, _null = null; _this.super$__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin$initState(); t1 = A.AnimationController$(_null, _null, _null, 1, _null, _this); t2 = $.$get$ChangeNotifier__emptyListeners(); t3 = new A.ValueNotifier(B.ActionPaneType_1, t2, type$.ValueNotifier_ActionPaneType); t4 = new A.ValueNotifier(0, t2, type$.ValueNotifier_int); t2 = new A.SlidableController(t1, new A._ValueNotifier(_null, t2, type$._ValueNotifier_nullable_DismissGesture), new A.ValueNotifier(_null, t2, type$.ValueNotifier_nullable_EndGesture), new A.ValueNotifier(_null, t2, type$.ValueNotifier_nullable_ResizeRequest), t3, t4); t4.addListener$1(0, t2.get$_onDirectionChanged()); t3.addListener$1(0, _this.get$handleActionPanelTypeChanged()); A._lateWriteOnceCheck(_this.___SlidableState_controller, "controller"); _this.___SlidableState_controller = t2; }, didChangeDependencies$0() { var _this = this; _this.super$State$didChangeDependencies(); _this.updateIsLeftToRight$0(); _this.updateController$0(); _this.updateMoveAnimation$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.updateIsLeftToRight$0(); this.updateController$0(); }, dispose$0(_) { var _this = this, _s10_ = "controller"; A._lateReadCheck(_this.___SlidableState_controller, _s10_).actionPaneType.removeListener$1(0, _this.get$handleActionPanelTypeChanged()); A._lateReadCheck(_this.___SlidableState_controller, _s10_).dispose$0(0); _this.super$__SlidableState_State_TickerProviderStateMixin$dispose(0); }, updateController$0() { var t2, _this = this, _s10_ = "controller", t1 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); _this._widget.toString; t1.enableStartActionPane = true; t2 = 0.5; if (t1._startActionPaneExtentRatio !== t2 && t2 >= 0 && t2 <= 1) t1._startActionPaneExtentRatio = t2; t1 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); _this._widget.toString; t1.enableEndActionPane = true; t2 = 0.5; if (t1._endActionPaneExtentRatio !== t2 && t2 >= 0 && t2 <= 1) t1._endActionPaneExtentRatio = t2; }, updateIsLeftToRight$0() { var t2, t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = A._lateReadCheck(this.___SlidableState_controller, "controller"); this._widget.toString; t1 = t1.textDirection === B.TextDirection_1; t2.isLeftToRight = t1; }, handleActionPanelTypeChanged$0() { this.setState$1(new A._SlidableState_handleActionPanelTypeChanged_closure(this)); }, updateMoveAnimation$0() { var t2, t3, _this = this, _s10_ = "controller", t1 = A._lateReadCheck(_this.___SlidableState_controller, _s10_).direction._change_notifier$_value; t1.toString; t2 = A._lateReadCheck(_this.___SlidableState_controller, _s10_)._animationController; _this._widget.toString; t3 = type$.Tween_Offset; _this.___SlidableState_moveAnimation = new A._AnimatedEvaluation(type$.Animation_double._as(t2), new A.Tween(B.Offset_0_0, new A.Offset(t1, 0), t3), t3._eval$1("_AnimatedEvaluation")); }, get$actionPane() { switch (A._lateReadCheck(this.___SlidableState_controller, "controller").actionPaneType._change_notifier$_value) { case B.ActionPaneType_2: return this._widget.startActionPane; case B.ActionPaneType_0: return this._widget.endActionPane; default: return null; } }, get$actionPaneAlignment() { var t1 = A._lateReadCheck(this.___SlidableState_controller, "controller").direction._change_notifier$_value; t1.toString; this._widget.toString; return new A.Alignment(-t1, 0); }, build$1(_, context) { var t1, $content, t2, t3, t4, t5, t6, t7, _this = this, _null = null, _s10_ = "controller"; _this.super$AutomaticKeepAliveClientMixin$build(0, context); t1 = A._lateReadCheck(_this.___SlidableState_moveAnimation, "moveAnimation"); _this._widget.toString; $content = A.SlideTransition$(new A.SlidableAutoCloseBehaviorInteractor(_null, A._lateReadCheck(_this.___SlidableState_controller, _s10_), _this._widget.child, _null), t1, _null, true); t1 = A._setArrayType([], type$.JSArray_Widget); if (_this.get$actionPane() != null) { _this._widget.toString; t2 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); t3 = t2._animationController; t1.push(A.Positioned$fill(A.ClipRect$(_this.get$actionPane(), B.Clip_1, new A._SlidableClipper(B.Axis_0, t2, t3)))); } t1.push($content); _this._widget.toString; t2 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); _this._widget.toString; t3 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); t4 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); _this._widget.toString; t5 = A.flipAxis(B.Axis_0); t6 = A._lateReadCheck(_this.___SlidableState_controller, _s10_); t7 = _this.get$actionPaneAlignment(); _this._widget.toString; return new A.SlidableGestureDetector(t2, new A.SlidableNotificationSender(_null, t3, new A.SlidableScrollingBehavior(t4, true, new A.SlidableDismissal(t5, new A.ActionPaneConfiguration(t7, B.Axis_0, J.$eq$(A._lateReadCheck(_this.___SlidableState_controller, _s10_).actionPaneType._change_notifier$_value, B.ActionPaneType_2), new A._SlidableControllerScope(A._lateReadCheck(_this.___SlidableState_controller, _s10_), new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null), _null), _null), t6, _null), _null), _null), B.Axis_0, true, B.DragStartBehavior_0, _null); } }; A._SlidableState_handleActionPanelTypeChanged_closure.prototype = { call$0() { this.$this.updateMoveAnimation$0(); }, $signature: 0 }; A._SlidableControllerScope.prototype = { updateShouldNotify$1(old) { return this.controller !== old.controller; } }; A._SlidableClipper.prototype = { getClip$1(size) { var t1, t2, t3, offset; switch (this.axis.index) { case 0: t1 = this.controller; t2 = A._lateReadCheck(t1._animationController.__AnimationController__value, "_value"); t1 = t1.direction._change_notifier$_value; t3 = size._dx; offset = t2 * t1 * t3; if (offset < 0) return new A.Rect(t3 + offset, 0, t3, size._dy); return new A.Rect(0, 0, offset, size._dy); case 1: t1 = this.controller; t2 = A._lateReadCheck(t1._animationController.__AnimationController__value, "_value"); t1 = t1.direction._change_notifier$_value; t3 = size._dy; offset = t2 * t1 * t3; if (offset < 0) return new A.Rect(0, t3 + offset, size._dx, t3); return new A.Rect(0, 0, size._dx, offset); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, getApproximateClipRect$1(size) { return this.getClip$1(size); }, shouldReclip$1(oldClipper) { return oldClipper.axis !== this.axis; } }; A.__SlidableState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin.prototype = { initState$0() { this.super$State$initState(); this._widget.toString; }, deactivate$0() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; A.CustomSizeTransition.prototype = { build$1(_, context) { var t2, _this = this, _null = null, t1 = _this.axis; if (t1 === B.Axis_1) { t2 = type$.Animation_double._as(_this.listenable); t2 = Math.max(A.checkNum(t2.get$value(t2)), 0); } else t2 = _null; if (t1 === B.Axis_0) { t1 = type$.Animation_double._as(_this.listenable); t1 = Math.max(A.checkNum(t1.get$value(t1)), 0); } else t1 = _null; return A.ClipRect$(new A.Align(_this.alignment, t1, t2, _this.child, _null), B.Clip_1, _null); } }; A.showToastWidget_closure.prototype = { call$1(ctx) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = this._box_0, t2 = t1.isIgnoring; t2.toString; t3 = t1.duration; t3.toString; t4 = t1.animDuration; t4.toString; t5 = t1.position; t6 = t1.animation; t7 = t1.reverseAnimation; t8 = t1.alignment; t9 = t1.axis; t10 = t1.startOffset; t11 = t1.endOffset; t12 = t1.reverseStartOffset; t13 = t1.reverseEndOffset; t14 = t1.curve; t14.toString; t15 = t1.reverseCurve; t15.toString; t16 = t1.animationBuilder; t17 = t1.reverseAnimBuilder; t18 = t1.onInitState; t1 = t1.textDirection; t1.toString; return new A.IgnorePointer(t2, _null, new A._StyledToastWidget(A.Directionality$(A.Material$(B.Duration_200000, true, _null, this.widget, B.Clip_0, B.Color_0, 0, _null, _null, _null, _null, _null, B.MaterialType_0), t1), t3, t4, t14, t15, t5, t8, t9, t10, t11, t12, t13, t6, t7, t16, t17, t18, this.key), _null); }, $signature: 1277 }; A.StyledToast.prototype = { createState$0() { return new A._StyledToastState(B._StateLifecycle_0); } }; A._StyledToastState.prototype = { initState$0() { this.super$State$initState(); }, dispose$0(_) { this.super$State$dispose(0); }, build$1(_, context) { var wrapper, mTextStyle, mBackgroundColor, mBorderRadius, t2, t3, _this = this, _null = null, t1 = A._setArrayType([A.OverlayEntry$(new A._StyledToastState_build_closure(_this), false)], type$.JSArray_OverlayEntry); _this._widget.toString; wrapper = A.Directionality$(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([new A.Overlay(t1, _null)], type$.JSArray_Widget), _null), B.TextDirection_1); t1 = _this._widget; mTextStyle = t1.textStyle; mBackgroundColor = t1.backgroundColor; mBorderRadius = A.BorderRadius$circular(5); t1 = A._setArrayType([B.C__MaterialLocalizationsDelegate, B.C__GlobalCupertinoLocalizationsDelegate, B.C__WidgetsLocalizationsDelegate], type$.JSArray_LocalizationsDelegate_dynamic); t2 = _this._widget; t3 = t2.locale; t2 = t2.duration; $.WidgetsBinding__instance.toString; return new A.MediaQuery(A.MediaQueryData$fromWindow($.$get$window()), new A.Localizations(t3, t1, new A.StyledToastTheme(wrapper, B.TextAlign_2, B.TextDirection_1, mBorderRadius, mBackgroundColor, B.EdgeInsets_17_8_17_8, mTextStyle, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, true, _null, wrapper, _null), _null), _null); } }; A._StyledToastState_build_closure.prototype = { call$1(ctx) { $.currentContext = ctx; return this.$this._widget.child; }, $signature: 78 }; A._StyledToastWidget.prototype = { createState$0() { return new A.StyledToastWidgetState(null, null, B._StateLifecycle_0); } }; A.StyledToastWidgetState.prototype = { get$offset(_) { return this._widget.position == null ? null : 20; }, get$positionAlignment() { return this._widget.position == null ? null : B.Alignment_0_1; }, initState$0() { var t1, t2, t3, t4, _this = this, _null = null, _s20_ = "_animationController", _s22_ = "_reverseAnimController"; _this.super$State$initState(); _this.__StyledToastWidgetState__animationController = A.AnimationController$(_null, _this._widget.animDuration, _null, 1, _null, _this); _this.__StyledToastWidgetState__reverseAnimController = A.AnimationController$(_null, _this._widget.animDuration, _null, 1, _null, _this); switch (_this._widget.animation) { case B.StyledToastAnimation_0: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_1: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromTopAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(0, -1), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_2: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromTopAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(0, -1), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new A.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_3: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromBottomAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(0, 1), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_4: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromBottomAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(0, 1), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new A.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_5: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromLeftAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(-1, 0), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_6: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromLeftAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(-1, 0), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new A.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_7: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromRightAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(1, 0), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_8: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideFromRightAnim = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(new A.Offset(1, 0), B.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new A.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_18: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; _this.__StyledToastWidgetState_sizeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_19: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_sizeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t4); t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new A.Tween(0, 1, t1), t4); break; case B.StyledToastAnimation_17: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; _this.__StyledToastWidgetState_scaleAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_20: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t3.curve), t2, new A.Interval(0, 1, t3.reverseCurve)), new A.Tween(0, 1, t1), t4); t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_scaleAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t2.curve), t3, new A.Interval(0, 1, t2.reverseCurve)), new A.Tween(0, 1, t1), t4); break; case B.StyledToastAnimation_21: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case B.StyledToastAnimation_23: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_scaleAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t3.curve), t2, new A.Interval(0, 1, t3.reverseCurve)), new A.Tween(0, 1, t1), t4); t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t2.curve), t3, new A.Interval(0, 1, t2.reverseCurve)), new A.Tween(0, 1, t1), t4); break; case B.StyledToastAnimation_22: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t3.curve), t2, new A.Interval(0, 1, t3.reverseCurve)), new A.Tween(0, 1, t1), t4); t3 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t2 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, t2.curve), t3, new A.Interval(0, 1, t2.reverseCurve)), new A.Tween(0, 1, t1), t4); break; case B.StyledToastAnimation_24: break; default: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_); t3 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new A._AnimatedEvaluation(A.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new A.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; } t1 = _this._widget.reverseAnimation; if (t1 != null) switch (t1.index) { case 0: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case 9: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToTopAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(0, -1), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case 10: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToTopAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(0, -1), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new A.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case 11: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToBottomAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(0, 1), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case 12: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToBottomAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(0, 1), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new A.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case 13: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToLeftAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(-1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case 14: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToLeftAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(-1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new A.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case 15: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToRightAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case 16: t1 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); _this.__StyledToastWidgetState_slideToRightAnimReverse = new A._AnimatedEvaluation(type$.Animation_double._as(t1), new A._ChainedEvaluation(new A.CurveTween(t2), new A.Tween(B.Offset_0_0, new A.Offset(1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new A.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case 18: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t3 = _this._widget.reverseCurve; _this.__StyledToastWidgetState_sizeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(t3, t2, t3), new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case 19: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t3 = _this._widget.reverseCurve; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_sizeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(t3, t2, t3), new A.Tween(1, 0, t1), t4); t3 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t2 = _this._widget.reverseCurve; _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(t2, t3, t2), new A.Tween(1, 0, t1), t4); break; case 17: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_scaleAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case 20: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_scaleAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); break; case 21: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_rotateAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case 23: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_scaleAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_rotateAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); break; case 22: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_rotateAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(new A.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new A.Tween(1, 0, t1), t3); break; case 24: break; default: t1 = type$.Tween_double; t2 = A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, _s22_); _this.__StyledToastWidgetState_fadeAnimReverse = new A._AnimatedEvaluation(A.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new A.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; } A._lateReadCheck(_this.__StyledToastWidgetState__animationController, _s20_).forward$0(0); t1 = _this._widget; if (!J.$eq$(t1.duration, B.Duration_0)) { t1 = _this._widget; t2 = t1.duration; t1 = t1.animDuration; _this._toastTimer = A.Timer_Timer(new A.Duration(t2._duration - t1._duration), new A.StyledToastWidgetState_initState_closure(_this)); } $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, build$1(_, context) { var t2, t3, t4, _this = this, _null = null, _s8_ = "fadeAnim", _s16_ = "slideFromTopAnim", _s19_ = "slideFromBottomAnim", _s17_ = "slideFromLeftAnim", _s18_ = "slideFromRightAnim", _s8_0 = "sizeAnim", _s9_ = "scaleAnim", _s10_ = "rotateAnim", _s15_ = "fadeAnimReverse", _s21_ = "slideToTopAnimReverse", _s24_ = "slideToBottomAnimReverse", _s22_ = "slideToLeftAnimReverse", _s23_ = "slideToRightAnimReverse", _s15_0 = "sizeAnimReverse", _s16_0 = "scaleAnimReverse", _s17_0 = "rotateAnimReverse", t1 = _this._widget, w = t1.child; switch (t1.animation) { case B.StyledToastAnimation_0: w = A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)); break; case B.StyledToastAnimation_1: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideFromTopAnim, _s16_), _null, true); break; case B.StyledToastAnimation_2: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideFromTopAnim, _s16_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)), t1, _null, true); break; case B.StyledToastAnimation_3: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideFromBottomAnim, _s19_), _null, true); break; case B.StyledToastAnimation_4: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideFromBottomAnim, _s19_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)), t1, _null, true); break; case B.StyledToastAnimation_5: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideFromLeftAnim, _s17_), _null, true); break; case B.StyledToastAnimation_6: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideFromLeftAnim, _s17_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)), t1, _null, true); break; case B.StyledToastAnimation_7: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideFromRightAnim, _s18_), _null, true); break; case B.StyledToastAnimation_8: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideFromRightAnim, _s18_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)), t1, _null, true); break; case B.StyledToastAnimation_18: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_sizeAnim, _s8_0); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = B.Alignment_0_0; t3 = _this._widget.axis; w = A.CustomSizeTransition$(t2, t3 == null ? B.Axis_0 : t3, 0, w, t1); break; case B.StyledToastAnimation_19: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_sizeAnim, _s8_0); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = B.Alignment_0_0; t3 = _this._widget.axis; if (t3 == null) t3 = B.Axis_0; w = A.CustomSizeTransition$(t2, t3, 0, A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)), t1); break; case B.StyledToastAnimation_17: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnim, _s9_); t2 = _this._widget.alignment; w = A.ScaleTransition$(t2 == null ? B.Alignment_0_0 : t2, w, t1); break; case B.StyledToastAnimation_20: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_); t2 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnim, _s9_); t3 = _this._widget.alignment; w = A.FadeTransition$(false, A.ScaleTransition$(t3 == null ? B.Alignment_0_0 : t3, w, t2), t1); break; case B.StyledToastAnimation_21: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnim, _s10_); t2 = _this._widget.alignment; w = A.RotationTransition$(t2 == null ? B.FractionalOffset_0_0 : t2, w, t1); break; case B.StyledToastAnimation_22: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_); t2 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnim, _s10_); t3 = _this._widget.alignment; w = A.FadeTransition$(false, A.RotationTransition$(t3 == null ? B.FractionalOffset_0_0 : t3, w, t2), t1); break; case B.StyledToastAnimation_23: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnim, _s9_); t2 = _this._widget.alignment; if (t2 == null) t2 = B.Alignment_0_0; t3 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnim, _s10_); t4 = _this._widget.alignment; w = A.ScaleTransition$(t2, A.RotationTransition$(t4 == null ? B.FractionalOffset_0_0 : t4, w, t3), t1); break; case B.StyledToastAnimation_24: w = A.Container$(_null, w, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); break; default: w = A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnim, _s8_)); break; } t1 = _this._widget; t2 = t1.reverseAnimation; if (t2 != null && t1.animation !== t2) switch (t2) { case B.StyledToastAnimation_0: w = A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_)); break; case B.StyledToastAnimation_9: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideToTopAnimReverse, _s21_), _null, true); break; case B.StyledToastAnimation_10: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideToTopAnimReverse, _s21_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_)), t1, _null, true); break; case B.StyledToastAnimation_11: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideToBottomAnimReverse, _s24_), _null, true); break; case B.StyledToastAnimation_12: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideToBottomAnimReverse, _s24_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_)), t1, _null, true); break; case B.StyledToastAnimation_13: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideToLeftAnimReverse, _s22_), _null, true); break; case B.StyledToastAnimation_14: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideToLeftAnimReverse, _s22_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_)), t1, _null, true); break; case B.StyledToastAnimation_15: w = A.SlideTransition$(w, A._lateReadCheck(_this.__StyledToastWidgetState_slideToRightAnimReverse, _s23_), _null, true); break; case B.StyledToastAnimation_16: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_slideToRightAnimReverse, _s23_); w = A.SlideTransition$(A.FadeTransition$(false, w, A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_)), t1, _null, true); break; case B.StyledToastAnimation_18: t1 = _this.get$positionAlignment(); if (t1 == null) t1 = B.Alignment_0_0; t2 = _this._widget.axis; if (t2 == null) t2 = B.Axis_0; w = A.CustomSizeTransition$(t1, t2, 0, w, A._lateReadCheck(_this.__StyledToastWidgetState_sizeAnimReverse, _s15_0)); break; case B.StyledToastAnimation_19: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = B.Alignment_0_0; t3 = _this._widget.axis; if (t3 == null) t3 = B.Axis_0; w = A.FadeTransition$(false, A.CustomSizeTransition$(t2, t3, 0, w, A._lateReadCheck(_this.__StyledToastWidgetState_sizeAnimReverse, _s15_0)), t1); break; case B.StyledToastAnimation_17: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnimReverse, _s16_0); t2 = _this._widget.alignment; w = A.ScaleTransition$(t2 == null ? B.Alignment_0_0 : t2, w, t1); break; case B.StyledToastAnimation_20: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_); t2 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnimReverse, _s16_0); t3 = _this._widget.alignment; w = A.FadeTransition$(false, A.ScaleTransition$(t3 == null ? B.Alignment_0_0 : t3, w, t2), t1); break; case B.StyledToastAnimation_21: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnimReverse, _s17_0); t2 = _this._widget.alignment; w = A.RotationTransition$(t2 == null ? B.FractionalOffset_0_0 : t2, w, t1); break; case B.StyledToastAnimation_22: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_fadeAnimReverse, _s15_); t2 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnimReverse, _s17_0); t3 = _this._widget.alignment; w = A.FadeTransition$(false, A.RotationTransition$(t3 == null ? B.FractionalOffset_0_0 : t3, w, t2), t1); break; case B.StyledToastAnimation_23: t1 = A._lateReadCheck(_this.__StyledToastWidgetState_scaleAnimReverse, _s16_0); t2 = A._lateReadCheck(_this.__StyledToastWidgetState_rotateAnimReverse, _s17_0); t3 = _this._widget.alignment; w = A.ScaleTransition$(B.Alignment_0_0, A.RotationTransition$(t3 == null ? B.FractionalOffset_0_0 : t3, w, t2), t1); break; case B.StyledToastAnimation_24: break; default: break; } w = A.Opacity$(w, _this.opacity); t1 = A.MediaQueryData$fromWindow($.$get$window()).padding; w = A.Container$(_this.get$positionAlignment(), w, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(0, t1.top, 0, t1.bottom), _null, _null, _null); if (!B.Alignment_0_0.$eq(0, _this.get$positionAlignment())) if (B.Alignment_0_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, 0, 0, t1), w, _null); } else if (B.Alignment_0_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, t1, 0, 0), w, _null); } else if (B.Alignment_m1_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, t1, 0, 0), w, _null); } else if (B.Alignment_1_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, t1, 0, 0), w, _null); } else if (B.Alignment_m1_0.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(t1, 0, 0, 0), w, _null); } else if (B.Alignment_1_0.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, 0, t1, 0), w, _null); } else if (B.Alignment_m1_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, 0, 0, t1), w, _null); } else if (B.Alignment_1_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(0, 0, 0, t1), w, _null); } else { t1 = _this.get$offset(_this); t1.toString; w = new A.Padding(new A.EdgeInsets(t1, t1, t1, t1), w, _null); } return w; }, dismissToast$0() { var t1, _this = this; if (_this._framework$_element == null) return; t1 = _this._toastTimer; if (t1 != null) t1.cancel$0(0); _this.setState$1(new A.StyledToastWidgetState_dismissToast_closure(_this)); }, dismissToastAnim$0() { var onAnimationEnd = null; return this.dismissToastAnim$body$StyledToastWidgetState(); }, dismissToastAnim$body$StyledToastWidgetState() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, exception, onAnimationEnd, $async$exception; var $async$dismissToastAnim$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start onAnimationEnd = null; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } t1 = $async$self._toastTimer; if (t1 != null) t1.cancel$0(0); $async$handler = 4; t1 = $async$self._widget; $async$goto = t1.animation != t1.reverseAnimation || false ? 7 : 9; break; case 7: // then $async$goto = 10; return A._asyncAwait(A._lateReadCheck($async$self.__StyledToastWidgetState__reverseAnimController, "_reverseAnimController").forward$0(0).get$orCancel(), $async$dismissToastAnim$0); case 10: // returning from await. // goto join $async$goto = 8; break; case 9: // else $async$goto = 11; return A._asyncAwait(A._lateReadCheck($async$self.__StyledToastWidgetState__animationController, "_animationController").reverse$0(0).get$orCancel(), $async$dismissToastAnim$0); case 11: // returning from await. case 8: // join t1 = onAnimationEnd; if (t1 != null) t1.call$0(); $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; if (!(A.unwrapException($async$exception) instanceof A.TickerCanceled)) throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$dismissToastAnim$0, $async$completer); }, dispose$0(_) { var _this = this, t1 = _this._toastTimer; if (t1 != null) t1.cancel$0(0); B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); A._lateReadCheck(_this.__StyledToastWidgetState__animationController, "_animationController").dispose$0(0); A._lateReadCheck(_this.__StyledToastWidgetState__reverseAnimController, "_reverseAnimController").dispose$0(0); _this.super$_StyledToastWidgetState_State_TickerProviderStateMixin$dispose(0); }, didChangeMetrics$0() { this.super$WidgetsBindingObserver$didChangeMetrics(); if (this._framework$_element != null) this.setState$1(new A.StyledToastWidgetState_didChangeMetrics_closure()); } }; A.StyledToastWidgetState_initState_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1._widget.reverseAnimation === B.StyledToastAnimation_24) t1.dismissToast$0(); else t1.dismissToastAnim$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 100 }; A.StyledToastWidgetState_dismissToast_closure.prototype = { call$0() { this.$this.opacity = 0; }, $signature: 0 }; A.StyledToastWidgetState_didChangeMetrics_closure.prototype = { call$0() { }, $signature: 0 }; A._StyledToastWidgetState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver.prototype = {}; A.StyledToastPosition.prototype = {}; A.StyledToastAnimation.prototype = { toString$0(_) { return "StyledToastAnimation." + this._core$_name; } }; A.ToastFuture.prototype = { ToastFuture$create$4(duration, _entry, _onDismiss, _containerKey) { if (!J.$eq$(duration, B.Duration_0)) this._styled_toast_manage$_timer = A.Timer_Timer(duration, new A.ToastFuture$create_closure(this)); }, dismiss$1$showAnim(showAnim) { return this.dismiss$body$ToastFuture(false); }, dismiss$0() { return this.dismiss$1$showAnim(false); }, dismiss$body$ToastFuture(showAnim) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$dismiss$1$showAnim = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$async$self._isShow) { // goto return $async$goto = 1; break; } $async$self._isShow = false; t1 = $async$self._styled_toast_manage$_timer; if (t1 != null) t1.cancel$0(0); t1 = $.ToastManager__instance; (t1 == null ? $.ToastManager__instance = new A.ToastManager(A.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t1).toastSet.remove$1(0, $async$self); t1 = $async$self._containerKey.get$currentState(); if (t1 != null) t1.dismissToast$0(); $async$self._styled_toast_manage$_entry.remove$0(0); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$dismiss$1$showAnim, $async$completer); } }; A.ToastFuture$create_closure.prototype = { call$0() { return this.$this.dismiss$0(); }, $signature: 0 }; A.ToastManager.prototype = { dismissAll$1$showAnim(showAnim) { var t1 = this.toastSet; B.JSArray_methods.forEach$1(A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")), new A.ToastManager_dismissAll_closure(false)); } }; A.ToastManager_dismissAll_closure.prototype = { call$1(v) { v.dismiss$1$showAnim(this.showAnim); }, $signature: 1276 }; A.StyledToastTheme.prototype = { updateShouldNotify$1(oldWidget) { return true; }, get$child() { return this.StyledToastTheme_child; } }; A.JsUrlStrategy0.prototype = {}; A.Registrar.prototype = { handleFrameworkMessage$3(channel, data, callback) { return this.handleFrameworkMessage$body$Registrar(channel, data, callback); }, handleFrameworkMessage$body$Registrar(channel, data, callback) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, handler, exception, stack, exception0, t1, response, $async$exception0; var $async$handleFrameworkMessage$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start response = null; $async$handler = 3; handler = $async$self._plugin_registry$_handlers.$index(0, channel); $async$goto = handler != null ? 6 : 7; break; case 6: // then $async$goto = 8; return A._asyncAwait(handler.call$1(data), $async$handleFrameworkMessage$3); case 8: // returning from await. response = $async$result; case 7: // join $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); t1 = A.ErrorDescription$("during a framework-to-plugin message"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "flutter web plugins", t1, null, null, false)); $async$next.push(5); // goto finally $async$goto = 4; break; case 2: // uncaught $async$next = [1]; case 4: // finally $async$handler = 1; if (callback != null) callback.call$1(response); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$handleFrameworkMessage$3, $async$completer); }, send$2(_, channel, message) { var t1 = new A._Future($.Zone__current, type$._Future_nullable_ByteData); $.$get$channelBuffers().push$3(channel, message, new A.Registrar_send_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_nullable_ByteData))); return t1; }, setMessageHandler$2(channel, handler) { var t1 = this._plugin_registry$_handlers; if (handler == null) t1.remove$1(0, channel); else t1.$indexSet(0, channel, handler); } }; A.Registrar_send_closure.prototype = { call$1(reply) { var exception, stack, exception0, t1; try { this.completer.complete$1(0, reply); } catch (exception0) { exception = A.unwrapException(exception0); stack = A.getTraceFromException(exception0); t1 = A.ErrorDescription$("during a plugin-to-framework message"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "flutter web plugins", t1, null, null, false)); } }, $signature: 135 }; A.PluginRegistry.prototype = {}; A.GoogleSignInAuthentication.prototype = { toString$0(_) { return "GoogleSignInAuthentication:" + A.S(this._google_sign_in$_data); } }; A.GoogleSignInAccount.prototype = { get$authentication() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.GoogleSignInAuthentication), $async$returnValue, $async$self = this, response; var $async$get$authentication = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!J.$eq$($async$self._googleSignIn._currentUser, $async$self)) throw A.wrapException(A.StateError$("User is no longer signed in.")); $async$goto = 3; return A._asyncAwait($.$get$GoogleSignInPlatform__instance().getTokens$2$email$shouldRecoverAuth($async$self.email, true), $async$get$authentication); case 3: // returning from await. response = $async$result; if (response.idToken == null) response.idToken = $async$self._idToken; $async$returnValue = new A.GoogleSignInAuthentication(response); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$get$authentication, $async$completer); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.GoogleSignInAccount)) return false; return _this.displayName == other.displayName && _this.email == other.email && _this.id == other.id && _this.photoUrl == other.photoUrl && _this.serverAuthCode == other.serverAuthCode && _this._idToken == other._idToken; }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.displayName, _this.email, _this.id, _this.photoUrl, _this._idToken, _this.serverAuthCode, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this; return "GoogleSignInAccount:" + A.LinkedHashMap_LinkedHashMap$_literal(["displayName", _this.displayName, "email", _this.email, "id", _this.id, "photoUrl", _this.photoUrl, "serverAuthCode", _this.serverAuthCode], type$.String, type$.dynamic).toString$0(0); }, get$id(receiver) { return this.id; } }; A.GoogleSignIn.prototype = { _callMethod$1(method) { return this._callMethod$body$GoogleSignIn(method); }, _callMethod$body$GoogleSignIn(method) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$self = this, response, t1; var $async$_callMethod$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._google_sign_in$_ensureInitialized$0(), $async$_callMethod$1); case 3: // returning from await. $async$goto = 4; return A._asyncAwait(method.call$0(), $async$_callMethod$1); case 4: // returning from await. response = $async$result; t1 = response != null && response instanceof A.GoogleSignInUserData ? new A.GoogleSignInAccount(response.displayName, response.email, response.id, response.photoUrl, response.serverAuthCode, response.idToken, $async$self) : null; if (!J.$eq$(t1, $async$self._currentUser)) { $async$self._currentUser = t1; $async$self._currentUserController.add$1(0, t1); } $async$returnValue = $async$self._currentUser; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_callMethod$1, $async$completer); }, _google_sign_in$_ensureInitialized$0() { var _this = this, t1 = _this._initialization; if (t1 == null) { t1 = $.$get$GoogleSignInPlatform__instance().init$4$clientId$hostedDomain$scopes$signInOption(null, null, _this.scopes, B.SignInOption_0); t1.catchError$1(new A.GoogleSignIn__ensureInitialized_closure(_this)); _this._initialization = t1; } return t1; }, _addMethodCall$2$canSkipCall(method, canSkipCall) { return this._addMethodCall$body$GoogleSignIn(method, canSkipCall); }, _addMethodCall$1(method) { return this._addMethodCall$2$canSkipCall(method, false); }, _addMethodCall$body$GoogleSignIn(method, canSkipCall) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$self = this, t1, response; var $async$_addMethodCall$2$canSkipCall = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._lastMethodCall; response = t1 == null ? $async$self._callMethod$1(method) : t1.then$1$1(0, new A.GoogleSignIn__addMethodCall_closure($async$self, canSkipCall, method), type$.nullable_GoogleSignInAccount); $async$self._lastMethodCall = A.GoogleSignIn__waitFor(response); $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_addMethodCall$2$canSkipCall, $async$completer); }, signInSilently$0() { var reAuthenticate = false, suppressErrors = true; return this.signInSilently$body$GoogleSignIn(); }, signInSilently$body$GoogleSignIn() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, exception, reAuthenticate, suppressErrors, $async$exception; var $async$signInSilently$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start reAuthenticate = false; suppressErrors = true; $async$handler = 4; $async$goto = 7; return A._asyncAwait($async$self._addMethodCall$2$canSkipCall($.$get$GoogleSignInPlatform__instance().get$signInSilently(), !reAuthenticate), $async$signInSilently$0); case 7: // returning from await. t1 = $async$result; $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; if (suppressErrors) { $async$returnValue = null; // goto return $async$goto = 1; break; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$signInSilently$0, $async$completer); }, signIn$0(_) { var t1 = $.$get$GoogleSignInPlatform__instance(); return this._addMethodCall$2$canSkipCall(t1.get$signIn(t1), true).catchError$2$test(new A.GoogleSignIn_signIn_closure(), new A.GoogleSignIn_signIn_isCanceled()); } }; A.GoogleSignIn__ensureInitialized_closure.prototype = { call$1(_) { this.$this._initialization = null; }, $signature: 7 }; A.GoogleSignIn__waitFor_closure.prototype = { call$1(_) { }, $signature: 7 }; A.GoogleSignIn__addMethodCall_closure.prototype = { call$1(_) { var _this = this; if (_this.canSkipCall && _this.$this._currentUser != null) return _this.$this._currentUser; return _this.$this._callMethod$1(_this.method); }, $signature: 1273 }; A.GoogleSignIn_signIn_isCanceled.prototype = { call$1(error) { return error instanceof A.PlatformException && error.code === "sign_in_canceled"; }, $signature: 125 }; A.GoogleSignIn_signIn_closure.prototype = { call$1(_) { return null; }, $signature: 7 }; A.GoogleSignInPlatform.prototype = {}; A.MethodChannelGoogleSignIn.prototype = { init$4$clientId$hostedDomain$scopes$signInOption(clientId, hostedDomain, scopes, signInOption) { return B.MethodChannel_Kf8._invokeMethod$1$3$arguments$missingOk("init", A.LinkedHashMap_LinkedHashMap$_literal(["signInOption", "SignInOption." + signInOption._core$_name, "scopes", scopes, "hostedDomain", hostedDomain, "clientId", clientId], type$.String, type$.dynamic), false, type$.void); }, signInSilently$0() { return B.MethodChannel_Kf8.invokeMapMethod$2$1("signInSilently", type$.String, type$.dynamic).then$1$1(0, A.utils__getUserDataFromMap$closure(), type$.nullable_GoogleSignInUserData); }, signIn$0(_) { return B.MethodChannel_Kf8.invokeMapMethod$2$1("signIn", type$.String, type$.dynamic).then$1$1(0, A.utils__getUserDataFromMap$closure(), type$.nullable_GoogleSignInUserData); }, getTokens$2$email$shouldRecoverAuth(email, shouldRecoverAuth) { var t1 = type$.String, t2 = type$.dynamic; return B.MethodChannel_Kf8.invokeMapMethod$2$2("getTokens", A.LinkedHashMap_LinkedHashMap$_literal(["email", email, "shouldRecoverAuth", true], t1, t2), t1, t2).then$1$1(0, new A.MethodChannelGoogleSignIn_getTokens_closure(), type$.GoogleSignInTokenData); }, signOut$0(_) { return B.MethodChannel_Kf8.invokeMapMethod$2$1("signOut", type$.String, type$.dynamic); }, disconnect$0(_) { return B.MethodChannel_Kf8.invokeMapMethod$2$1("disconnect", type$.String, type$.dynamic); } }; A.MethodChannelGoogleSignIn_getTokens_closure.prototype = { call$1(result) { var t1; result.toString; t1 = J.getInterceptor$asx(result); return new A.GoogleSignInTokenData(A._asStringQ(t1.$index(result, "idToken")), A._asStringQ(t1.$index(result, "accessToken")), A._asStringQ(t1.$index(result, "serverAuthCode"))); }, $signature: 1272 }; A.SignInOption.prototype = { toString$0(_) { return "SignInOption." + this._core$_name; } }; A.GoogleSignInUserData.prototype = { get$hashCode(_) { var _this = this; return A.hashObjects0(A._setArrayType([_this.displayName, _this.email, _this.id, _this.photoUrl, _this.idToken, _this.serverAuthCode], type$.JSArray_nullable_String)); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.GoogleSignInUserData)) return false; return other.displayName == _this.displayName && other.email == _this.email && other.id == _this.id && other.photoUrl == _this.photoUrl && other.idToken == _this.idToken && other.serverAuthCode == _this.serverAuthCode; }, get$id(receiver) { return this.id; } }; A.GoogleSignInTokenData.prototype = { get$hashCode(_) { return A._finish0(A._combine0(A._combine0(A._combine0(0, J.get$hashCode$(this.idToken)), J.get$hashCode$(this.accessToken)), J.get$hashCode$(this.serverAuthCode))); }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof A.GoogleSignInTokenData)) return false; return other.idToken == _this.idToken && other.accessToken == _this.accessToken && other.serverAuthCode == _this.serverAuthCode; } }; A.GoogleSignInPlugin.prototype = { GoogleSignInPlugin$0() { var t1 = document.querySelector("meta[name=google-signin-client_id]"); this._autoDetectedClientId = t1 == null ? null : t1.getAttribute("content"); this.__GoogleSignInPlugin__isGapiInitialized = A.inject("https://apis.google.com/js/platform.js").then$1$1(0, new A.GoogleSignInPlugin_closure(), type$.void); }, get$initialized() { if (!this._isInitCalled) A.throwExpression(A.StateError$("GoogleSignInPlugin::init() must be called before any other method in this plugin.")); return A.Future_wait(A._setArrayType([A._lateReadCheck(this.__GoogleSignInPlugin__isGapiInitialized, "_isGapiInitialized"), A._lateReadCheck(this.__GoogleSignInPlugin__isAuthInitialized, "_isAuthInitialized")], type$.JSArray_Future_void), type$.void); }, init$4$clientId$hostedDomain$scopes$signInOption(clientId, hostedDomain, scopes, signInOption) { return this.init$body$GoogleSignInPlugin(clientId, hostedDomain, scopes, signInOption); }, init$body$GoogleSignInPlugin(clientId, hostedDomain, scopes, signInOption) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, auth, isAuthInitialized, appClientId; var $async$init$4$clientId$hostedDomain$scopes$signInOption = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start appClientId = $async$self._autoDetectedClientId; $async$goto = 3; return A._asyncAwait(A._lateReadCheck($async$self.__GoogleSignInPlugin__isGapiInitialized, "_isGapiInitialized"), $async$init$4$clientId$hostedDomain$scopes$signInOption); case 3: // returning from await. t1 = B.JSArray_methods.join$1(scopes, " "); appClientId.toString; auth = self.gapi.auth2.init({client_id: appClientId, scope: t1, hosted_domain: hostedDomain, plugin_name: "dart-google_sign_in_web"}); t1 = new A._Future($.Zone__current, type$._Future_void); isAuthInitialized = new A._AsyncCompleter(t1, type$._AsyncCompleter_void); $async$self.__GoogleSignInPlugin__isAuthInitialized = t1; $async$self._isInitCalled = true; J.then$2$x(auth, A.allowInterop(new A.GoogleSignInPlugin_init_closure(isAuthInitialized)), A.allowInterop(new A.GoogleSignInPlugin_init_closure0(isAuthInitialized))); $async$returnValue = A._lateReadCheck($async$self.__GoogleSignInPlugin__isAuthInitialized, "_isAuthInitialized"); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$init$4$clientId$hostedDomain$scopes$signInOption, $async$completer); }, signInSilently$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInUserData), $async$returnValue, $async$self = this, t1; var $async$signInSilently$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.get$initialized(), $async$signInSilently$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) t1 = null; else { t1 = J.get$currentUser$x(t1); t1 = t1 == null ? null : J.$get$0$x(t1); } $async$returnValue = A.gapiUserToPluginUserData(t1); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$signInSilently$0, $async$completer); }, signIn$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInUserData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, reason, t1, exception, $async$exception, $async$temp1; var $async$signIn$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.get$initialized(), $async$signIn$0); case 3: // returning from await. $async$handler = 5; t1 = self.gapi.auth2.getAuthInstance(); $async$temp1 = A; $async$goto = 8; return A._asyncAwait(t1 == null ? null : A.promiseToFuture(J.signIn$1$x(t1, null), type$.GoogleUser), $async$signIn$0); case 8: // returning from await. t1 = $async$temp1.gapiUserToPluginUserData($async$result); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception = $async$currentError; t1 = A.unwrapException($async$exception); if (type$.GoogleAuthSignInError._is(t1)) { reason = t1; throw A.wrapException(A.PlatformException$(J.get$error$x(reason), "https://developers.google.com/identity/sign-in/web/reference#error_codes_2", "Exception raised from GoogleAuth.signIn()", null)); } else throw $async$exception; // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$signIn$0, $async$completer); }, getTokens$2$email$shouldRecoverAuth(email, shouldRecoverAuth) { return this.getTokens$body$GoogleSignInPlugin(email, true); }, getTokens$body$GoogleSignInPlugin(email, shouldRecoverAuth) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.GoogleSignInTokenData), $async$returnValue, $async$self = this, t1, currentUser, response, t2; var $async$getTokens$2$email$shouldRecoverAuth = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.get$initialized(), $async$getTokens$2$email$shouldRecoverAuth); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) currentUser = null; else { t1 = J.get$currentUser$x(t1); currentUser = t1 == null ? null : J.$get$0$x(t1); } response = currentUser == null ? null : J.getAuthResponse$0$x(currentUser); t1 = response == null; t2 = t1 ? null : J.get$id_token$x(response); $async$returnValue = new A.GoogleSignInTokenData(t2, t1 ? null : J.get$access_token$x(response), null); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getTokens$2$email$shouldRecoverAuth, $async$completer); }, signOut$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$signOut$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.get$initialized(), $async$signOut$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); $async$returnValue = t1 == null ? null : J.signOut$0$x(t1); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$signOut$0, $async$completer); }, disconnect$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, currentUser; var $async$disconnect$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.get$initialized(), $async$disconnect$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) currentUser = null; else { t1 = J.get$currentUser$x(t1); currentUser = t1 == null ? null : J.$get$0$x(t1); } if (currentUser == null) { // goto return $async$goto = 1; break; } $async$returnValue = J.disconnect$0$x(currentUser); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$disconnect$0, $async$completer); } }; A.GoogleSignInPlugin_closure.prototype = { call$1(_) { return A.init(); }, $signature: 570 }; A.GoogleSignInPlugin_init_closure.prototype = { call$1(initializedAuth) { this.isAuthInitialized.complete$0(0); }, $signature: 1270 }; A.GoogleSignInPlugin_init_closure0.prototype = { call$1(reason) { var t1 = J.getInterceptor$x(reason); this.isAuthInitialized.completeError$1(new A.PlatformException(t1.get$error(reason), t1.get$details(reason), "https://developers.google.com/identity/sign-in/web/reference#error_codes", null)); }, $signature: 1269 }; A.LoadConfig.prototype = {}; A.GoogleAuthInitFailureError.prototype = {}; A.GoogleAuthSignInError.prototype = {}; A.OfflineAccessResponse.prototype = {}; A.GoogleAuth.prototype = {}; A._GoogleAuth.prototype = {}; A.IsSignedIn.prototype = {}; A.CurrentUser.prototype = {}; A.SigninOptions.prototype = {}; A.OfflineAccessOptions.prototype = {}; A.ClientConfig.prototype = {}; A.SigninOptionsBuilder.prototype = {}; A.BasicProfile.prototype = {}; A.AuthResponse.prototype = {}; A.AuthorizeConfig.prototype = {}; A.AuthorizeResponse.prototype = {}; A.GoogleUser.prototype = {}; A._GoogleUser.prototype = {}; A.Promise0.prototype = {}; A.inject_closure.prototype = { call$0() { this.gapiOnLoad.complete$0(0); }, $signature: 1 }; A.init_closure.prototype = { call$0() { this.gapiLoadCompleter.complete$0(0); }, $signature: 1 }; A.AttributeName.prototype = { toString$0(_) { var t1 = this.prefix, t2 = this.name; return t1 != null ? t1 + ":" + t2 : t2; }, get$hashCode(_) { return 37 * (37 * (J.get$hashCode$(this.prefix) & 2097151) + B.JSString_methods.get$hashCode(this.name) & 2097151) + B.JSString_methods.get$hashCode(this.namespace) & 1073741823; }, compareTo$1(_, other) { var t1, t2, cmp; if (!(other instanceof A.AttributeName)) return 1; t1 = this.prefix; if (t1 == null) t1 = ""; t2 = other.prefix; cmp = B.JSString_methods.compareTo$1(t1, t2 == null ? "" : t2); if (cmp !== 0) return cmp; cmp = B.JSString_methods.compareTo$1(this.name, other.name); if (cmp !== 0) return cmp; return B.JSString_methods.compareTo$1(this.namespace, other.namespace); }, $eq(_, x) { if (x == null) return false; if (!(x instanceof A.AttributeName)) return false; return this.prefix == x.prefix && this.name === x.name && this.namespace === x.namespace; }, $isComparable: 1, get$name(receiver) { return this.name; } }; A._ParentNode.prototype = {}; A._NonElementParentNode.prototype = {}; A._ElementAndDocument.prototype = {}; A.Node0.prototype = { get$nodes(_) { var t1, _this = this, value = _this.__Node_nodes; if (value === $) { t1 = A._setArrayType([], type$.JSArray_Node_2); A._lateInitializeOnceCheck(_this.__Node_nodes, "nodes"); value = _this.__Node_nodes = new A.NodeList(_this, t1); } return value; }, get$children(_) { var _this = this, t1 = _this._dom$_elements; return t1 == null ? _this._dom$_elements = new A.FilteredElementList(_this.get$nodes(_this)) : t1; }, _addInnerHtml$1(str) { var t1; for (t1 = this.get$nodes(this)._list_proxy$_list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) t1.__interceptors$_current._addOuterHtml$1(str); }, remove$0(_) { var t1 = this.parentNode; if (t1 != null) B.JSArray_methods.remove$1(t1.get$nodes(t1)._list_proxy$_list, this); return this; }, insertBefore$2(_, node, refNode) { var t1, t2, _this = this; if (refNode == null) _this.get$nodes(_this).add$1(0, node); else { t1 = _this.get$nodes(_this); t2 = _this.get$nodes(_this); t1.insert$2(0, t2.indexOf$1(t2, refNode), node); } }, _dom$_clone$1$2(shallowClone, deep) { var t1, t2, t3, value, t4, value0, t5; if (deep) for (t1 = this.get$nodes(this)._list_proxy$_list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = type$.JSArray_Node_2; t1.moveNext$0();) { t3 = t1.__interceptors$_current.clone$1(0, true); value = shallowClone.__Node_nodes; if (value === $) { t4 = A._setArrayType([], t2); A._lateInitializeOnceCheck(shallowClone.__Node_nodes, "nodes"); value = shallowClone.__Node_nodes = new A.NodeList(shallowClone, t4); } t4 = t3.parentNode; if (t4 != null) { value0 = t4.__Node_nodes; if (value0 === $) { t5 = A._setArrayType([], t2); A._lateInitializeOnceCheck(t4.__Node_nodes, "nodes"); value0 = t4.__Node_nodes = new A.NodeList(t4, t5); } B.JSArray_methods.remove$1(value0._list_proxy$_list, t3); } t3.parentNode = value._dom$_parent; value.super$ListProxy$add(0, t3); } return shallowClone; }, _dom$_clone$2(shallowClone, deep) { return this._dom$_clone$1$2(shallowClone, deep, type$.Node_2); } }; A.Document.prototype = { get$nodeType(_) { return 9; }, get$body(_) { var t1 = new A.SelectorEvaluator().querySelector$2(0, this, A._parseSelectorList("html")); return t1 == null ? null : new A.SelectorEvaluator().querySelector$2(0, t1, A._parseSelectorList("body")); }, toString$0(_) { return "#document"; }, _addOuterHtml$1(str) { return this._addInnerHtml$1(str); }, clone$1(_, deep) { return this._dom$_clone$2(A.Document$(), true); }, createElement$1(_, tag) { return new A.Element("http://www.w3.org/1999/xhtml", tag, A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); } }; A.DocumentType.prototype = { get$nodeType(_) { return 10; }, toString$0(_) { var sid, _this = this, pid = _this.publicId, t1 = pid == null; if (!t1 || _this.systemId != null) { if (t1) pid = ""; sid = _this.systemId; if (sid == null) sid = ""; return "'; } else return ""; }, _addOuterHtml$1(str) { str._contents += this.toString$0(0); }, clone$1(_, deep) { return A.DocumentType$(this.name, this.publicId, this.systemId); }, get$name(receiver) { return this.name; } }; A.Text0.prototype = { get$nodeType(_) { return 3; }, toString$0(_) { var t1 = J.toString$0$(this._dom$_data); this._dom$_data = t1; return '"' + t1 + '"'; }, _addOuterHtml$1(str) { return A.writeTextNodeAsHtml(str, this); }, clone$1(_, deep) { var t1 = J.toString$0$(this._dom$_data); this._dom$_data = t1; return A.Text$0(t1); }, appendData$1(_, data) { var sb = this._dom$_data; if (!(sb instanceof A.StringBuffer)) sb = this._dom$_data = new A.StringBuffer(A.S(sb)); sb._contents += A.S(data); } }; A.Element.prototype = { get$nodeType(_) { return 1; }, get$previousElementSibling(_) { var siblings, i, s, t1 = this.parentNode; if (t1 == null) return null; siblings = t1.get$nodes(t1); for (i = siblings.indexOf$1(siblings, this) - 1, t1 = siblings._list_proxy$_list; i >= 0; --i) { s = t1[i]; if (s instanceof A.Element) return s; } return null; }, get$nextElementSibling(_) { var siblings, i, t1, t2, s, parentNode = this.parentNode; if (parentNode == null) return null; siblings = parentNode.get$nodes(parentNode); for (i = siblings.indexOf$1(siblings, this) + 1, t1 = siblings._list_proxy$_list, t2 = t1.length; i < t2; ++i) { s = t1[i]; if (s instanceof A.Element) return s; } return null; }, toString$0(_) { var prefix = A.Namespaces_getPrefix(this.namespaceUri); return "<" + (prefix == null ? "" : prefix + " ") + A.S(this.localName) + ">"; }, _addOuterHtml$1(str) { var t1, t2, t3, first, _this = this; str._contents += "<"; t1 = str._contents += A.Element__getSerializationPrefix(_this.namespaceUri); t2 = _this.localName; t3 = A.S(t2); str._contents = t1 + t3; t1 = _this.attributes; if (t1._length !== 0) t1.forEach$1(0, new A.Element__addOuterHtml_closure(str)); str._contents += ">"; t1 = _this.get$nodes(_this); if (!t1.get$isEmpty(t1)) { if (t2 === "pre" || t2 === "textarea" || t2 === "listing") { first = _this.get$nodes(_this)._list_proxy$_list[0]; if (first instanceof A.Text0) { t1 = J.toString$0$(first._dom$_data); first._dom$_data = t1; t1 = B.JSString_methods.startsWith$1(t1, "\n"); } else t1 = false; if (t1) str._contents += "\n"; } _this._addInnerHtml$1(str); } if (!A.isVoidElement(t2)) str._contents += ""; }, clone$1(_, deep) { var _this = this, result = A.Element$_(_this.localName, _this.namespaceUri); result.attributes = A.LinkedHashMap_LinkedHashMap$from(_this.attributes, type$.Object, type$.String); return _this._dom$_clone$2(result, deep); }, get$id(_) { var result = this.attributes.$index(0, "id"); return result == null ? "" : result; }, get$className(_) { var result = this.attributes.$index(0, "class"); return result == null ? "" : result; } }; A.Element__addOuterHtml_closure.prototype = { call$2(key, v) { var t2, t1 = this.str; t1._contents += " "; t2 = t1._contents += A.S(key); t1._contents = t2 + '="'; t2 = t1._contents += A.S(A.htmlSerializeEscape(v, true)); t1._contents = t2 + '"'; }, $signature: 420 }; A.Comment.prototype = { get$nodeType(_) { return 8; }, toString$0(_) { return ""; }, _addOuterHtml$1(str) { str._contents += ""; }, clone$1(_, deep) { return new A.Comment(this.data, A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); } }; A.NodeList.prototype = { add$1(_, value) { value.remove$0(0); value.parentNode = this._dom$_parent; this.super$ListProxy$add(0, value); }, addAll$1(_, collection) { var t1, t2, t3, t4, t5, value, t6, list = this._flattenDocFragments$1(collection); for (t1 = A._arrayInstanceType(list)._eval$1("ReversedListIterable<1>"), t2 = new A.ReversedListIterable(list, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")), t2 = this._dom$_parent, t3 = type$.JSArray_Node_2; t1.moveNext$0();) { t4 = t1.__internal$_current; t5 = t4.parentNode; if (t5 != null) { value = t5.__Node_nodes; if (value === $) { t6 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t5.__Node_nodes, "nodes"); value = t5.__Node_nodes = new A.NodeList(t5, t6); } B.JSArray_methods.remove$1(value._list_proxy$_list, t4); } t4.parentNode = t2; } this.super$ListProxy$addAll(0, list); }, insert$2(_, index, value) { value.remove$0(0); value.parentNode = this._dom$_parent; this.super$ListProxy$insert(0, index, value); }, removeLast$0(_) { var t1 = this.super$ListMixin$removeLast(this); t1.parentNode = null; return t1; }, removeAt$1(_, i) { var t1 = this.super$ListProxy$removeAt(0, i); t1.parentNode = null; return t1; }, clear$0(_) { var t1; for (t1 = this._list_proxy$_list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) t1.__interceptors$_current.parentNode = null; this.super$ListMixin$clear(this); }, $indexSet(_, index, value) { this._list_proxy$_list[index].parentNode = null; value.remove$0(0); value.parentNode = this._dom$_parent; this.super$ListProxy$$indexSet(0, index, value); }, setRange$4(_, start, rangeLength, from, startFrom) { var fromVar, i, t1; type$.List_Node._as(from); fromVar = from instanceof A.NodeList ? from.sublist$2(from, startFrom, startFrom + rangeLength) : from; for (i = rangeLength - 1, t1 = J.getInterceptor$asx(fromVar); i >= 0; --i) this.$indexSet(0, start + i, t1.$index(fromVar, startFrom + i)); }, setRange$3($receiver, start, rangeLength, from) { return this.setRange$4($receiver, start, rangeLength, from, 0); }, removeRange$2(_, start, rangeLength) { var t1, i; for (t1 = this._list_proxy$_list, i = start; i < rangeLength; ++i) t1[i].parentNode = null; this.super$ListProxy$removeRange(0, start, rangeLength); }, removeWhere$1(_, test) { var t1, t2, _this = this; for (t1 = _this.get$iterator(_this), t2 = new A.WhereIterator(t1, test, A._instanceType(_this)._eval$1("WhereIterator")); t2.moveNext$0();) t1.get$current(t1).parentNode = null; _this.super$ListMixin$removeWhere(_this, test); }, retainWhere$1(_, test) { var t1, t2, _this = this; for (t1 = _this.get$iterator(_this), t2 = new A.WhereIterator(t1, new A.NodeList_retainWhere_closure(test), A._instanceType(_this)._eval$1("WhereIterator")); t2.moveNext$0();) t1.get$current(t1).parentNode = null; _this.super$ListMixin$retainWhere(_this, test); }, insertAll$2(_, index, collection) { var t1, t2, t3, t4, t5, value, t6, list = this._flattenDocFragments$1(collection); for (t1 = A._arrayInstanceType(list)._eval$1("ReversedListIterable<1>"), t2 = new A.ReversedListIterable(list, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")), t2 = this._dom$_parent, t3 = type$.JSArray_Node_2; t1.moveNext$0();) { t4 = t1.__internal$_current; t5 = t4.parentNode; if (t5 != null) { value = t5.__Node_nodes; if (value === $) { t6 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t5.__Node_nodes, "nodes"); value = t5.__Node_nodes = new A.NodeList(t5, t6); } B.JSArray_methods.remove$1(value._list_proxy$_list, t4); } t4.parentNode = t2; } this.super$ListProxy$insertAll(0, index, list); }, _flattenDocFragments$1(collection) { var t1, result = A._setArrayType([], type$.JSArray_Node_2); for (t1 = J.get$iterator$ax(collection); t1.moveNext$0();) result.push(t1.get$current(t1)); return result; } }; A.NodeList_retainWhere_closure.prototype = { call$1(n) { return !this.test.call$1(n); }, $signature: 421 }; A.FilteredElementList.prototype = { forEach$1(_, f) { var t1 = type$.WhereTypeIterable_Element; B.JSArray_methods.forEach$1(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), f); }, $indexSet(_, index, value) { var t2, t3, t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))[index]; t2 = t1.parentNode; if (t2 == null) A.throwExpression(A.UnsupportedError$("Node must have a parent to replace it.")); t2 = t2.get$nodes(t2); t3 = t1.parentNode; t3 = t3.get$nodes(t3); t2.$indexSet(0, t3.indexOf$1(t3, t1), value); }, set$length(_, newLength) { var t1 = type$.WhereTypeIterable_Element, len = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")).length; if (newLength >= len) return; else if (newLength < 0) throw A.wrapException(A.ArgumentError$("Invalid list length", null)); this.removeRange$2(0, newLength, len); }, join$1(_, separator) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.join$1(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), separator); }, join$0($receiver) { return this.join$1($receiver, ""); }, add$1(_, value) { this._childNodes.add$1(0, value); }, addAll$1(_, iterable) { var t1, t2, t3, t4, t5, value, t6; for (t1 = J.get$iterator$ax(iterable), t2 = this._childNodes, t3 = type$.JSArray_Node_2; t1.moveNext$0();) { t4 = t1.get$current(t1); t5 = t4.parentNode; if (t5 != null) { value = t5.__Node_nodes; if (value === $) { t6 = A._setArrayType([], t3); A._lateInitializeOnceCheck(t5.__Node_nodes, "nodes"); value = t5.__Node_nodes = new A.NodeList(t5, t6); } B.JSArray_methods.remove$1(value._list_proxy$_list, t4); } t4.parentNode = t2._dom$_parent; t2.super$ListProxy$add(0, t4); } }, contains$1(_, element) { var t1; if (element instanceof A.Element) { t1 = this._childNodes; t1 = t1.contains$1(t1, element); } else t1 = false; return t1; }, get$reversed(_) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")); return new A.ReversedListIterable(t1, A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")); }, sort$1(_, compare) { throw A.wrapException(A.UnsupportedError$("TODO(jacobr): should we impl?")); }, setRange$4(_, start, end, iterable, skipCount) { throw A.wrapException(A.UnimplementedError$(null)); }, setRange$3($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2(_, start, end) { var t1 = type$.WhereTypeIterable_Element; B.JSArray_methods.forEach$1(B.JSArray_methods.sublist$2(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), start, end), new A.FilteredElementList_removeRange_closure()); }, removeLast$0(_) { var t1 = type$.WhereTypeIterable_Element; t1 = B.JSArray_methods.get$last(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))); t1.remove$0(0); return t1; }, map$1$1(_, f, $T) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")); return new A.MappedListIterable(t1, f, A._arrayInstanceType(t1)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1(_, f) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")); return new A.WhereIterable(t1, f, A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, insert$2(_, index, value) { this._childNodes.insert$2(0, index, value); }, insertAll$2(_, index, iterable) { this._childNodes.insertAll$2(0, index, iterable); }, removeAt$1(_, index) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))[index]; t1.remove$0(0); return t1; }, remove$1(_, element) { var t1, t2, t3, i, t4, value; if (!(element instanceof A.Element)) return false; for (t1 = this._childNodes, t2 = type$.WhereTypeIterable_Element, t3 = t2._eval$1("Iterable.E"), i = 0; i < A.List_List$of(new A.WhereTypeIterable(t1, t2), true, t3).length; ++i) { t4 = A.List_List$of(new A.WhereTypeIterable(t1, t2), true, t3)[i]; if (t4 === element) { t1 = t4.parentNode; if (t1 != null) { value = t1.__Node_nodes; if (value === $) { t2 = A._setArrayType([], type$.JSArray_Node_2); A._lateInitializeOnceCheck(t1.__Node_nodes, "nodes"); value = t1.__Node_nodes = new A.NodeList(t1, t2); } B.JSArray_methods.remove$1(value._list_proxy$_list, t4); } return true; } } return false; }, fold$1$2(_, initialValue, combine, $T) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.fold$1$2(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), initialValue, combine, $T); }, any$1(_, f) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.any$1(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), f); }, toList$1$growable(_, growable) { return A.List_List$from(this, growable, type$.Element_3); }, toList$0($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0(_) { return A.LinkedHashSet_LinkedHashSet$from(this, type$.Element_3); }, elementAt$1(_, index) { var t1 = type$.WhereTypeIterable_Element; return A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))[index]; }, get$isEmpty(_) { var t1 = type$.WhereTypeIterable_Element; return A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")).length === 0; }, get$length(_) { var t1 = type$.WhereTypeIterable_Element; return A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")).length; }, $index(_, index) { var t1 = type$.WhereTypeIterable_Element; return A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))[index]; }, get$iterator(_) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")); return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, sublist$2(_, start, end) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.sublist$2(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), start, end); }, sublist$1($receiver, start) { return this.sublist$2($receiver, start, null); }, getRange$2(_, start, end) { var t1 = type$.WhereTypeIterable_Element; t1 = A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")); A.RangeError_checkValidRange(start, end, t1.length, null, null); return A.SubListIterable$(t1, start, end, A._arrayInstanceType(t1)._precomputed1); }, indexOf$2(_, element, start) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.indexOf$2(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E")), type$.Element_3._as(element), start); }, indexOf$1($receiver, element) { return this.indexOf$2($receiver, element, 0); }, get$first(_) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.get$first(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))); }, get$last(_) { var t1 = type$.WhereTypeIterable_Element; return B.JSArray_methods.get$last(A.List_List$of(new A.WhereTypeIterable(this._childNodes, t1), true, t1._eval$1("Iterable.E"))); }, $isEfficientLengthIterable: 1, $isList: 1 }; A.FilteredElementList_removeRange_closure.prototype = { call$1(el) { return el.remove$0(0); }, $signature: 1242 }; A._ConcatTextVisitor.prototype = { toString$0(_) { var t1 = this._str._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A._Document_Node__ParentNode.prototype = {}; A._Document_Node__ParentNode__NonElementParentNode.prototype = {}; A._Document_Node__ParentNode__NonElementParentNode__ElementAndDocument.prototype = {}; A._Element_Node__ParentNode.prototype = {}; A._Element_Node__ParentNode__ElementAndDocument.prototype = {}; A._FilteredElementList_IterableBase_ListMixin.prototype = {}; A.TreeVisitor.prototype = { visit$1(node) { var t1, _this = this; switch (node.get$nodeType(node)) { case 1: return _this.visitChildren$1(type$.Element_3._as(node)); case 3: type$.Text._as(node); t1 = J.toString$0$(node._dom$_data); node._dom$_data = t1; _this._str._contents += t1; return null; case 8: return _this.visitChildren$1(type$.Comment._as(node)); case 11: return _this.visitChildren$1(type$.DocumentFragment._as(node)); case 9: return _this.visitChildren$1(type$.Document._as(node)); case 10: return _this.visitChildren$1(type$.DocumentType._as(node)); default: throw A.wrapException(A.UnsupportedError$("DOM node type " + node.get$nodeType(node))); } }, visitChildren$1(node) { var t1, t2, _i; for (t1 = node.get$nodes(node), t1 = t1.toList$0(t1), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) this.visit$1(t1[_i]); } }; A.HtmlParser.prototype = { get$phase() { var value = this.__HtmlParser_phase; return value === $ ? this.__HtmlParser_phase = this.get$_initialPhase() : value; }, get$_initialPhase() { var _this = this, value = _this.__HtmlParser__initialPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_initialPhase"); value = _this.__HtmlParser__initialPhase = new A.InitialPhase(_this, _this.tree); } return value; }, get$_beforeHtmlPhase() { var _this = this, value = _this.__HtmlParser__beforeHtmlPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_beforeHtmlPhase"); value = _this.__HtmlParser__beforeHtmlPhase = new A.BeforeHtmlPhase(_this, _this.tree); } return value; }, get$_beforeHeadPhase() { var _this = this, value = _this.__HtmlParser__beforeHeadPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_beforeHeadPhase"); value = _this.__HtmlParser__beforeHeadPhase = new A.BeforeHeadPhase(_this, _this.tree); } return value; }, get$_inHeadPhase() { var _this = this, value = _this.__HtmlParser__inHeadPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inHeadPhase"); value = _this.__HtmlParser__inHeadPhase = new A.InHeadPhase(_this, _this.tree); } return value; }, get$_inBodyPhase() { var _this = this, value = _this.__HtmlParser__inBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inBodyPhase"); value = _this.__HtmlParser__inBodyPhase = new A.InBodyPhase(_this, _this.tree); } return value; }, get$_textPhase() { var _this = this, value = _this.__HtmlParser__textPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_textPhase"); value = _this.__HtmlParser__textPhase = new A.TextPhase(_this, _this.tree); } return value; }, get$_inTablePhase() { var _this = this, value = _this.__HtmlParser__inTablePhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inTablePhase"); value = _this.__HtmlParser__inTablePhase = new A.InTablePhase(_this, _this.tree); } return value; }, get$_inTableTextPhase() { var t1, _this = this, value = _this.__HtmlParser__inTableTextPhase; if (value === $) { t1 = A._setArrayType([], type$.JSArray_StringToken); A._lateInitializeOnceCheck(_this.__HtmlParser__inTableTextPhase, "_inTableTextPhase"); value = _this.__HtmlParser__inTableTextPhase = new A.InTableTextPhase(t1, _this, _this.tree); } return value; }, get$_inCaptionPhase() { var _this = this, value = _this.__HtmlParser__inCaptionPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inCaptionPhase"); value = _this.__HtmlParser__inCaptionPhase = new A.InCaptionPhase(_this, _this.tree); } return value; }, get$_inColumnGroupPhase() { var _this = this, value = _this.__HtmlParser__inColumnGroupPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inColumnGroupPhase"); value = _this.__HtmlParser__inColumnGroupPhase = new A.InColumnGroupPhase(_this, _this.tree); } return value; }, get$_inTableBodyPhase() { var _this = this, value = _this.__HtmlParser__inTableBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inTableBodyPhase"); value = _this.__HtmlParser__inTableBodyPhase = new A.InTableBodyPhase(_this, _this.tree); } return value; }, get$_inRowPhase() { var _this = this, value = _this.__HtmlParser__inRowPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inRowPhase"); value = _this.__HtmlParser__inRowPhase = new A.InRowPhase(_this, _this.tree); } return value; }, get$_inCellPhase() { var _this = this, value = _this.__HtmlParser__inCellPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inCellPhase"); value = _this.__HtmlParser__inCellPhase = new A.InCellPhase(_this, _this.tree); } return value; }, get$_inSelectPhase() { var _this = this, value = _this.__HtmlParser__inSelectPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inSelectPhase"); value = _this.__HtmlParser__inSelectPhase = new A.InSelectPhase(_this, _this.tree); } return value; }, get$_inFramesetPhase() { var _this = this, value = _this.__HtmlParser__inFramesetPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inFramesetPhase"); value = _this.__HtmlParser__inFramesetPhase = new A.InFramesetPhase(_this, _this.tree); } return value; }, _parser$_parse$0() { var exception; this.reset$0(0); for (; true;) try { this.mainLoop$0(); break; } catch (exception) { if (A.unwrapException(exception) instanceof A.ReparseException) this.reset$0(0); else throw exception; } }, reset$0(_) { var _this = this; _this.tokenizer.reset$0(0); _this.tree.reset$0(0); _this.firstStartTag = false; B.JSArray_methods.set$length(_this.errors, 0); _this.compatMode = "no quirks"; _this.__HtmlParser_phase = _this.get$_initialPhase(); _this.framesetOK = true; }, isHTMLIntegrationPoint$1(element) { var enc, t1 = element.localName; if (t1 === "annotation-xml" && element.namespaceUri === "http://www.w3.org/1998/Math/MathML") { t1 = element.attributes.$index(0, "encoding"); enc = t1 == null ? null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t1), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, null); return enc === "text/html" || enc === "application/xhtml+xml"; } else return B.JSArray_methods.contains$1(B.List_mzi, new A.Pair(element.namespaceUri, t1, type$.Pair_of_nullable_String_and_nullable_String)); }, inForeignContent$2(token, type) { var node, t1 = this.tree, t2 = t1.openElements; if (t2.length === 0) return false; node = B.JSArray_methods.get$last(t2); t2 = node.namespaceUri; if (t2 == t1.defaultNamespace) return false; t1 = node.localName; if (B.JSArray_methods.contains$1(B.List_cjm, new A.Pair(t2, t1, type$.Pair_of_nullable_String_and_nullable_String))) { if (type === 2) { t2 = type$.StartTagToken._as(token).name; t2 = t2 !== "mglyph" && t2 !== "malignmark"; } else t2 = false; if (t2) return false; if (type === 1 || type === 0) return false; } if (t1 === "annotation-xml" && type === 2 && type$.StartTagToken._as(token).name === "svg") return false; if (this.isHTMLIntegrationPoint$1(node)) if (type === 2 || type === 1 || type === 0) return false; return true; }, mainLoop$0() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, newToken, type, span, t14, t15, t16, value, result, localPhase, reprocessPhases, reprocess, _this = this, _s13_ = "_initialPhase"; for (t1 = _this.tokenizer, t2 = _this.tree, t3 = type$.DoctypeToken, t4 = type$.CommentToken, t5 = type$.EndTagToken, t6 = type$.StartTagToken, t7 = type$.SpaceCharactersToken, t8 = type$.CharactersToken, t9 = _this.errors, t10 = type$.ParseErrorToken, t11 = t1.stream, t12 = type$.dynamic; t1.moveNext$0();) { t13 = t1._tokenizer$_current; t13.toString; for (newToken = t13; newToken != null;) { type = newToken.get$kind(newToken); if (type === 6) { t10._as(newToken); span = newToken.span; t14 = newToken._token$_string; if (t14 == null) { t14 = newToken._token$_string = J.toString$0$(newToken._token$_buffer); newToken._token$_buffer = null; } if (span == null) { t15 = t11.fileInfo; if (t15 == null) span = null; else { t16 = t11._html_input_stream$_offset; new A.FileLocation(t15, t16).FileLocation$_$2(t15, t16); span = new A._FileSpan(t15, t16, t16); span._FileSpan$3(t15, t16, t16); } } t9.push(new A.ParseError(t14, span, newToken.messageParams)); newToken = null; } else { value = _this.__HtmlParser_phase; if (value === $) { value = _this.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(_this, t2); A._lateInitializeOnceCheck(value, _s13_); _this.__HtmlParser__initialPhase = result; value = result; } _this.__HtmlParser_phase = value; } if (_this.inForeignContent$2(t13, type)) { value = _this.__HtmlParser__inForeignContentPhase; if (value === $) { result = new A.InForeignContentPhase(_this, t2); A._lateInitializeOnceCheck(value, "_inForeignContentPhase"); _this.__HtmlParser__inForeignContentPhase = result; value = result; } localPhase = value; } else localPhase = value; switch (type) { case 1: newToken = localPhase.processCharacters$1(t8._as(newToken)); break; case 0: newToken = localPhase.processSpaceCharacters$1(t7._as(newToken)); break; case 2: newToken = localPhase.processStartTag$1(t6._as(newToken)); break; case 3: newToken = localPhase.processEndTag$1(t5._as(newToken)); break; case 4: newToken = localPhase.processComment$1(t4._as(newToken)); break; case 5: newToken = localPhase.processDoctype$1(t3._as(newToken)); break; } } } if (t13 instanceof A.StartTagToken) if (t13.selfClosing && !t13.selfClosingAcknowledged) { span = t13.span; t13 = A.LinkedHashMap_LinkedHashMap$_literal(["name", t13.name], t12, t12); if (span == null) { t14 = t11.fileInfo; if (t14 == null) span = null; else { t15 = t11._html_input_stream$_offset; new A.FileLocation(t14, t15).FileLocation$_$2(t14, t15); span = new A._FileSpan(t14, t15, t15); span._FileSpan$3(t14, t15, t15); } } t9.push(new A.ParseError("non-void-element-with-trailing-solidus", span, t13)); } } reprocessPhases = []; for (reprocess = true; reprocess;) { value = _this.__HtmlParser_phase; if (value === $) { value = _this.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(_this, t2); A._lateInitializeOnceCheck(value, _s13_); _this.__HtmlParser__initialPhase = result; value = result; } value = _this.__HtmlParser_phase = value; } reprocessPhases.push(value); value = _this.__HtmlParser_phase; if (value === $) { value = _this.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(_this, t2); A._lateInitializeOnceCheck(value, _s13_); _this.__HtmlParser__initialPhase = result; value = result; } value = _this.__HtmlParser_phase = value; } reprocess = value.processEOF$0(); } }, get$_lastSpan() { var t1 = this.tokenizer.stream, t2 = t1.fileInfo; if (t2 == null) t1 = null; else { t1 = A.FileLocation$_(t2, t1._html_input_stream$_offset); t2 = t1.offset; t2 = A._FileSpan$(t1.file, t2, t2); t1 = t2; } return t1; }, parseError$3(span, errorcode, datavars) { var err = new A.ParseError(errorcode, span == null ? this.get$_lastSpan() : span, datavars); this.errors.push(err); }, parseError$2(span, errorcode) { return this.parseError$3(span, errorcode, B.Map_empty0); }, adjustMathMLAttributes$1(token) { var orig = token.data.remove$1(0, "definitionurl"); if (orig != null) token.data.$indexSet(0, "definitionURL", orig); }, adjustSVGAttributes$1(token) { var t1, t2, _i, t3, svgName, t4; for (t1 = token.data, t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"), t2 = A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")), t1 = t2.length, _i = 0; _i < t1; ++_i) { t3 = A._asStringS(t2[_i]); svgName = B.Map_fbSNt.$index(0, t3); if (svgName != null) { t4 = token.data; t3 = t4.remove$1(0, t3); t3.toString; t4.$indexSet(0, svgName, t3); } } }, adjustForeignAttributes$1(token) { var t1, t2, _i, t3, foreignName, t4; for (t1 = token.data, t2 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"), t2 = A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")), t1 = t2.length, _i = 0; _i < t1; ++_i) { t3 = A._asStringS(t2[_i]); foreignName = B.Map_VIbiD.$index(0, t3); if (foreignName != null) { t4 = token.data; t3 = t4.remove$1(0, t3); t3.toString; t4.$indexSet(0, foreignName, t3); } } }, resetInsertionMode$0() { var t1, t2, t3, t4, t5, nodeName, t6, last, value, _this = this, _s12_ = "_inCellPhase", _s17_ = "_inTableBodyPhase", _s12_0 = "_inBodyPhase"; for (t1 = _this.tree, t2 = t1.openElements, t3 = A._arrayInstanceType(t2)._eval$1("ReversedListIterable<1>"), t4 = new A.ReversedListIterable(t2, t3), t3 = new A.ListIterator(t4, t4.get$length(t4), t3._eval$1("ListIterator")), t4 = t1.defaultNamespace; t3.moveNext$0();) { t5 = t3.__internal$_current; nodeName = t5.localName; t6 = t2[0]; last = t5 == null ? t6 == null : t5 === t6; if (last) nodeName = _this.innerHTML; switch (nodeName) { case "select": case "colgroup": case "head": case "html": break; } if (!last && t5.namespaceUri != t4) continue; switch (nodeName) { case "select": value = _this.__HtmlParser__inSelectPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inSelectPhase"); value = _this.__HtmlParser__inSelectPhase = new A.InSelectPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "td": value = _this.__HtmlParser__inCellPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s12_); value = _this.__HtmlParser__inCellPhase = new A.InCellPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "th": value = _this.__HtmlParser__inCellPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s12_); value = _this.__HtmlParser__inCellPhase = new A.InCellPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "tr": value = _this.__HtmlParser__inRowPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inRowPhase"); value = _this.__HtmlParser__inRowPhase = new A.InRowPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "tbody": value = _this.__HtmlParser__inTableBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s17_); value = _this.__HtmlParser__inTableBodyPhase = new A.InTableBodyPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "thead": value = _this.__HtmlParser__inTableBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s17_); value = _this.__HtmlParser__inTableBodyPhase = new A.InTableBodyPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "tfoot": value = _this.__HtmlParser__inTableBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s17_); value = _this.__HtmlParser__inTableBodyPhase = new A.InTableBodyPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "caption": value = _this.__HtmlParser__inCaptionPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inCaptionPhase"); value = _this.__HtmlParser__inCaptionPhase = new A.InCaptionPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "colgroup": value = _this.__HtmlParser__inColumnGroupPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inColumnGroupPhase"); value = _this.__HtmlParser__inColumnGroupPhase = new A.InColumnGroupPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "table": value = _this.__HtmlParser__inTablePhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inTablePhase"); value = _this.__HtmlParser__inTablePhase = new A.InTablePhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "head": value = _this.__HtmlParser__inBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s12_0); value = _this.__HtmlParser__inBodyPhase = new A.InBodyPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "body": value = _this.__HtmlParser__inBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, _s12_0); value = _this.__HtmlParser__inBodyPhase = new A.InBodyPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "frameset": value = _this.__HtmlParser__inFramesetPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inFramesetPhase"); value = _this.__HtmlParser__inFramesetPhase = new A.InFramesetPhase(_this, t1); } _this.__HtmlParser_phase = value; return; case "html": value = _this.__HtmlParser__beforeHeadPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_beforeHeadPhase"); value = _this.__HtmlParser__beforeHeadPhase = new A.BeforeHeadPhase(_this, t1); } _this.__HtmlParser_phase = value; return; } } _this.__HtmlParser_phase = _this.get$_inBodyPhase(); }, parseRCDataRawtext$2(token, contentType) { var t1, _this = this; _this.tree.insertElement$1(token); t1 = _this.tokenizer; if (contentType === "RAWTEXT") t1.__HtmlTokenizer_state = t1.get$rawtextState(); else t1.__HtmlTokenizer_state = t1.get$rcdataState(); _this.originalPhase = _this.get$phase(); _this.__HtmlParser_phase = _this.get$_textPhase(); } }; A.Phase.prototype = { processEOF$0() { throw A.wrapException(A.UnimplementedError$(null)); }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, B.JSArray_methods.get$last(t1.openElements)); return null; }, processDoctype$1(token) { this.parser.parseError$2(token.span, "unexpected-doctype"); return null; }, processCharacters$1(token) { this.tree.insertText$2(token.get$data(token), token.span); return null; }, processSpaceCharacters$1(token) { this.tree.insertText$2(token.get$data(token), token.span); return null; }, processStartTag$1(token) { throw A.wrapException(A.UnimplementedError$(null)); }, startTagHtml$1(token) { var t1 = this.parser; if (!t1.firstStartTag && token.name === "html") t1.parseError$2(token.span, "non-html-root"); this.tree.openElements[0].sourceSpan = token.span; token.data.forEach$1(0, new A.Phase_startTagHtml_closure(this)); t1.firstStartTag = false; return null; }, processEndTag$1(token) { throw A.wrapException(A.UnimplementedError$(null)); }, popOpenElementsUntil$1(token) { var $name = token.name, t1 = this.tree.openElements, node = t1.pop(); for (; node.localName != $name;) node = t1.pop(); } }; A.Phase_startTagHtml_closure.prototype = { call$2(attr, value) { this.$this.tree.openElements[0].attributes.putIfAbsent$2(0, attr, new A.Phase_startTagHtml__closure(value)); }, $signature: 420 }; A.Phase_startTagHtml__closure.prototype = { call$0() { return this.value; }, $signature: 65 }; A.InitialPhase.prototype = { processSpaceCharacters$1(token) { return null; }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, A._lateReadCheck(t1.__TreeBuilder_document, "document")); return null; }, processDoctype$1(token) { var doctype, _this = this, $name = token.name, t1 = token.publicId, publicId = t1 == null ? null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t1), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, null), systemId = token.systemId, correct = token.correct; if ($name === "html") if (publicId == null) t1 = systemId != null && systemId !== "about:legacy-compat"; else t1 = true; else t1 = true; if (t1) _this.parser.parseError$2(token.span, "unknown-doctype"); if (publicId == null) publicId = ""; doctype = A.DocumentType$(token.name, token.publicId, token.systemId); doctype.sourceSpan = token.span; t1 = A._lateReadCheck(_this.tree.__TreeBuilder_document, "document"); t1.get$nodes(t1).add$1(0, doctype); if (correct) if (token.name === "html") { t1 = B.JSString_methods.get$startsWith(publicId); if (!B.JSArray_methods.any$1(B.List_E7S, t1)) if (!B.JSArray_methods.contains$1(B.List_ijq, publicId)) if (!(B.JSArray_methods.any$1(B.List_WxT, t1) && systemId == null)) t1 = systemId != null && systemId.toLowerCase() === "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"; else t1 = true; else t1 = true; else t1 = true; } else t1 = true; else t1 = true; if (t1) _this.parser.compatMode = "quirks"; else { t1 = B.JSString_methods.get$startsWith(publicId); if (!B.JSArray_methods.any$1(B.List_omi, t1)) t1 = B.JSArray_methods.any$1(B.List_WxT, t1) && systemId != null; else t1 = true; if (t1) _this.parser.compatMode = "limited quirks"; } t1 = _this.parser; t1.__HtmlParser_phase = t1.get$_beforeHtmlPhase(); return null; }, anythingElse$0() { var t1 = this.parser; t1.compatMode = "quirks"; t1.__HtmlParser_phase = t1.get$_beforeHtmlPhase(); }, processCharacters$1(token) { this.parser.parseError$2(token.span, "expected-doctype-but-got-chars"); this.anythingElse$0(); return token; }, processStartTag$1(token) { var t1 = type$.dynamic; this.parser.parseError$3(token.span, "expected-doctype-but-got-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t1, t1)); this.anythingElse$0(); return token; }, processEndTag$1(token) { var t1 = type$.dynamic; this.parser.parseError$3(token.span, "expected-doctype-but-got-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t1, t1)); this.anythingElse$0(); return token; }, processEOF$0() { var t1 = this.parser; t1.parseError$2(t1.get$_lastSpan(), "expected-doctype-but-got-eof"); this.anythingElse$0(); return true; } }; A.BeforeHtmlPhase.prototype = { insertHtmlElement$0() { var _null = null, t1 = this.tree, element = t1.createElement$1(0, A.StartTagToken$("html", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); t1.openElements.push(element); t1 = A._lateReadCheck(t1.__TreeBuilder_document, "document"); t1.get$nodes(t1).add$1(0, element); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_beforeHeadPhase(); }, processEOF$0() { this.insertHtmlElement$0(); return true; }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, A._lateReadCheck(t1.__TreeBuilder_document, "document")); return null; }, processSpaceCharacters$1(token) { return null; }, processCharacters$1(token) { this.insertHtmlElement$0(); return token; }, processStartTag$1(token) { if (token.name === "html") this.parser.firstStartTag = true; this.insertHtmlElement$0(); return token; }, processEndTag$1(token) { var t2, t1 = token.name; switch (t1) { case "head": case "body": case "html": case "br": this.insertHtmlElement$0(); return token; default: t2 = type$.dynamic; this.parser.parseError$3(token.span, "unexpected-end-tag-before-html", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } } }; A.BeforeHeadPhase.prototype = { processStartTag$1(token) { var _null = null; switch (token.name) { case "html": return this.parser.get$_inBodyPhase().processStartTag$1(token); case "head": this.startTagHead$1(token); return _null; default: this.startTagHead$1(A.StartTagToken$("head", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; } }, processEndTag$1(token) { var t2, _null = null, t1 = token.name; switch (t1) { case "head": case "body": case "html": case "br": this.startTagHead$1(A.StartTagToken$("head", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; default: t2 = type$.dynamic; this.parser.parseError$3(token.span, "end-tag-after-implied-root", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return _null; } }, processEOF$0() { var _null = null; this.startTagHead$1(A.StartTagToken$("head", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return true; }, processSpaceCharacters$1(token) { return null; }, processCharacters$1(token) { var _null = null; this.startTagHead$1(A.StartTagToken$("head", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; }, startTagHead$1(token) { var t1 = this.tree; t1.insertElement$1(token); t1.headPointer = B.JSArray_methods.get$last(t1.openElements); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_inHeadPhase(); } }; A.InHeadPhase.prototype = { processStartTag$1(token) { var t1, t2, attributes, charset, $content, _this = this, _null = null; switch (token.name) { case "html": return _this.parser.get$_inBodyPhase().processStartTag$1(token); case "title": _this.parser.parseRCDataRawtext$2(token, "RCDATA"); return _null; case "noscript": case "noframes": case "style": _this.parser.parseRCDataRawtext$2(token, "RAWTEXT"); return _null; case "script": _this.tree.insertElement$1(token); t1 = _this.parser; t2 = t1.tokenizer; t2.__HtmlTokenizer_state = t2.get$scriptDataState(); t1.originalPhase = t1.get$phase(); t1.__HtmlParser_phase = t1.get$_textPhase(); return _null; case "base": case "basefont": case "bgsound": case "command": case "link": t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); token.selfClosingAcknowledged = true; return _null; case "meta": t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); token.selfClosingAcknowledged = true; attributes = token.data; t1 = _this.parser.tokenizer.stream; if (!t1.charEncodingCertain) { charset = attributes.$index(0, "charset"); $content = attributes.$index(0, "content"); if (charset != null) t1.changeEncoding$1(charset); else if ($content != null) t1.changeEncoding$1(new A.ContentAttrParser(new A.EncodingBytes($content)).parse$0(0)); } return _null; case "head": _this.parser.parseError$2(token.span, "two-heads-are-not-better-than-one"); return _null; default: _this.endTagHead$1(new A.EndTagToken("head", false)); return token; } }, processEndTag$1(token) { var t2, t1 = token.name; switch (t1) { case "head": this.endTagHead$1(token); return null; case "br": case "html": case "body": this.endTagHead$1(new A.EndTagToken("head", false)); return token; default: t2 = type$.dynamic; this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } }, processEOF$0() { this.endTagHead$1(new A.EndTagToken("head", false)); return true; }, processCharacters$1(token) { this.endTagHead$1(new A.EndTagToken("head", false)); return token; }, endTagHead$1(token) { var value, t1 = this.parser, t2 = t1.tree; t2.openElements.pop(); value = t1.__HtmlParser__afterHeadPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_afterHeadPhase"); value = t1.__HtmlParser__afterHeadPhase = new A.AfterHeadPhase(t1, t2); } t1.__HtmlParser_phase = value; } }; A.AfterHeadPhase.prototype = { processStartTag$1(token) { var t2, _this = this, _null = null, t1 = token.name; switch (t1) { case "html": return _this.parser.get$_inBodyPhase().processStartTag$1(token); case "body": t1 = _this.parser; t1.framesetOK = false; _this.tree.insertElement$1(token); t1.__HtmlParser_phase = t1.get$_inBodyPhase(); return _null; case "frameset": _this.tree.insertElement$1(token); t1 = _this.parser; t1.__HtmlParser_phase = t1.get$_inFramesetPhase(); return _null; case "base": case "basefont": case "bgsound": case "link": case "meta": case "noframes": case "script": case "style": case "title": _this.startTagFromHead$1(token); return _null; case "head": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return _null; default: _this.anythingElse$0(); return token; } }, processEndTag$1(token) { var t2, t1 = token.name; switch (t1) { case "body": case "html": case "br": this.anythingElse$0(); return token; default: t2 = type$.dynamic; this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } }, processEOF$0() { this.anythingElse$0(); return true; }, processCharacters$1(token) { this.anythingElse$0(); return token; }, startTagFromHead$1(token) { var t3, t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, "unexpected-start-tag-out-of-my-head", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t2, t2)); t2 = this.tree; t3 = t2.openElements; t3.push(t2.headPointer); t1.get$_inHeadPhase().processStartTag$1(token); for (t1 = A._arrayInstanceType(t3)._eval$1("ReversedListIterable<1>"), t2 = new A.ReversedListIterable(t3, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2.localName === "head") { B.JSArray_methods.remove$1(t3, t2); break; } } }, anythingElse$0() { var t1, _null = null; this.tree.insertElement$1(A.StartTagToken$("body", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_inBodyPhase(); t1.framesetOK = true; } }; A.InBodyPhase.prototype = { processStartTag$1(token) { var t2, t3, afeAElement, savedFramesetOK, value, last, _this = this, _null = null, _s1_ = "p", _s6_ = "button", _s20_ = "unexpected-start-tag", _s36_ = "unexpected-start-tag-implies-end-tag", _s7_ = "RAWTEXT", t1 = token.name; switch (t1) { case "html": return _this.startTagHtml$1(token); case "base": case "basefont": case "bgsound": case "command": case "link": case "meta": case "noframes": case "script": case "style": case "title": return _this.parser.get$_inHeadPhase().processStartTag$1(token); case "body": _this.startTagBody$1(token); return _null; case "frameset": _this.startTagFrameset$1(token); return _null; case "address": case "article": case "aside": case "blockquote": case "center": case "details": case "dir": case "div": case "dl": case "fieldset": case "figcaption": case "figure": case "footer": case "header": case "hgroup": case "menu": case "nav": case "ol": case "p": case "section": case "summary": case "ul": _this.startTagCloseP$1(token); return _null; case "h1": case "h2": case "h3": case "h4": case "h5": case "h6": t1 = _this.tree; if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t2 = t1.openElements; if (B.JSArray_methods.contains$1(B.List_8eb, B.JSArray_methods.get$last(t2).localName)) { t3 = type$.dynamic; _this.parser.parseError$3(token.span, _s20_, A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t3, t3)); t2.pop(); } t1.insertElement$1(token); return _null; case "pre": case "listing": t1 = _this.tree; if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t1.insertElement$1(token); _this.parser.framesetOK = false; _this.dropNewline = true; return _null; case "form": t1 = _this.tree; if (t1.formPointer != null) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s20_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "form"], t1, t1)); } else { if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t1.insertElement$1(token); t1.formPointer = B.JSArray_methods.get$last(t1.openElements); } return _null; case "li": case "dd": case "dt": _this.startTagListItem$1(token); return _null; case "plaintext": t1 = _this.tree; if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t1.insertElement$1(token); t1 = _this.parser.tokenizer; t1.__HtmlTokenizer_state = t1.get$plaintextState(); return _null; case "a": t1 = _this.tree; afeAElement = t1.elementInActiveFormattingElements$1("a"); if (afeAElement != null) { t2 = type$.dynamic; _this.parser.parseError$3(token.span, _s36_, A.LinkedHashMap_LinkedHashMap$_literal(["startName", "a", "endName", "a"], t2, t2)); _this.endTagFormatting$1(new A.EndTagToken("a", false)); B.JSArray_methods.remove$1(t1.openElements, afeAElement); B.JSArray_methods.remove$1(t1.activeFormattingElements._list_proxy$_list, afeAElement); } t1.reconstructActiveFormattingElements$0(); _this.addFormattingElement$1(token); return _null; case "b": case "big": case "code": case "em": case "font": case "i": case "s": case "small": case "strike": case "strong": case "tt": case "u": _this.tree.reconstructActiveFormattingElements$0(); _this.addFormattingElement$1(token); return _null; case "nobr": t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); if (t1.elementInScope$1("nobr")) { t2 = type$.dynamic; _this.parser.parseError$3(token.span, _s36_, A.LinkedHashMap_LinkedHashMap$_literal(["startName", "nobr", "endName", "nobr"], t2, t2)); _this.processEndTag$1(new A.EndTagToken("nobr", false)); t1.reconstructActiveFormattingElements$0(); } _this.addFormattingElement$1(token); return _null; case "button": return _this.startTagButton$1(token); case "applet": case "marquee": case "object": t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(token); t1.activeFormattingElements.add$1(0, _null); _this.parser.framesetOK = false; return _null; case "xmp": t1 = _this.tree; if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t1.reconstructActiveFormattingElements$0(); t1 = _this.parser; t1.framesetOK = false; t1.parseRCDataRawtext$2(token, _s7_); return _null; case "table": t1 = _this.parser; if (t1.compatMode !== "quirks") if (_this.tree.elementInScope$2$variant(_s1_, _s6_)) _this.processEndTag$1(new A.EndTagToken(_s1_, false)); _this.tree.insertElement$1(token); t1.framesetOK = false; t1.__HtmlParser_phase = t1.get$_inTablePhase(); return _null; case "area": case "br": case "embed": case "img": case "keygen": case "wbr": _this.startTagVoidFormatting$1(token); return _null; case "param": case "source": case "track": t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); token.selfClosingAcknowledged = true; return _null; case "input": t1 = _this.parser; savedFramesetOK = t1.framesetOK; _this.startTagVoidFormatting$1(token); t2 = token.data.$index(0, "type"); if ((t2 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t2), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null)) === "hidden") t1.framesetOK = savedFramesetOK; return _null; case "hr": t1 = _this.tree; if (t1.elementInScope$2$variant(_s1_, _s6_)) _this.endTagP$1(new A.EndTagToken(_s1_, false)); t1.insertElement$1(token); t1.openElements.pop(); token.selfClosingAcknowledged = true; _this.parser.framesetOK = false; return _null; case "image": t1 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-start-tag-treated-as", A.LinkedHashMap_LinkedHashMap$_literal(["originalName", "image", "newName", "img"], t1, t1)); _this.processStartTag$1(A.StartTagToken$("img", token.data, _null, token.selfClosing)); return _null; case "isindex": _this.startTagIsIndex$1(token); return _null; case "textarea": _this.tree.insertElement$1(token); t1 = _this.parser; t2 = t1.tokenizer; t2.__HtmlTokenizer_state = t2.get$rcdataState(); _this.dropNewline = true; t1.framesetOK = false; return _null; case "iframe": t1 = _this.parser; t1.framesetOK = false; t1.parseRCDataRawtext$2(token, _s7_); return _null; case "noembed": case "noscript": _this.parser.parseRCDataRawtext$2(token, _s7_); return _null; case "select": t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(token); t1 = _this.parser; t1.framesetOK = false; if (t1.get$_inTablePhase() === t1.get$phase() || t1.get$_inCaptionPhase() === t1.get$phase() || t1.get$_inColumnGroupPhase() === t1.get$phase() || t1.get$_inTableBodyPhase() === t1.get$phase() || t1.get$_inRowPhase() === t1.get$phase() || t1.get$_inCellPhase() === t1.get$phase()) { value = t1.__HtmlParser__inSelectInTablePhase; if (value === $) { A._lateInitializeOnceCheck(value, "_inSelectInTablePhase"); value = t1.__HtmlParser__inSelectInTablePhase = new A.InSelectInTablePhase(t1, t1.tree); } t1.__HtmlParser_phase = value; } else t1.__HtmlParser_phase = t1.get$_inSelectPhase(); return _null; case "rp": case "rt": t1 = _this.tree; if (t1.elementInScope$1("ruby")) { t1.generateImpliedEndTags$0(); last = B.JSArray_methods.get$last(t1.openElements); if (last.localName !== "ruby") _this.parser.parseError$2(last.sourceSpan, "undefined-error"); } t1.insertElement$1(token); return _null; case "option": case "optgroup": t1 = _this.tree; if (B.JSArray_methods.get$last(t1.openElements).localName === "option") _this.parser.get$phase().processEndTag$1(new A.EndTagToken("option", false)); t1.reconstructActiveFormattingElements$0(); _this.parser.tree.insertElement$1(token); return _null; case "math": t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t2 = _this.parser; t2.adjustMathMLAttributes$1(token); t2.adjustForeignAttributes$1(token); token.namespace = "http://www.w3.org/1998/Math/MathML"; t1.insertElement$1(token); if (token.selfClosing) { t1.openElements.pop(); token.selfClosingAcknowledged = true; } return _null; case "svg": t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t2 = _this.parser; t2.adjustSVGAttributes$1(token); t2.adjustForeignAttributes$1(token); token.namespace = "http://www.w3.org/2000/svg"; t1.insertElement$1(token); if (token.selfClosing) { t1.openElements.pop(); token.selfClosingAcknowledged = true; } return _null; case "caption": case "col": case "colgroup": case "frame": case "head": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-start-tag-ignored", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return _null; default: t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(token); return _null; } }, processEndTag$1(token) { var t2, inScope, node, variant, t3, _this = this, _null = null, _s17_ = "end-tag-too-early", _s18_ = "unexpected-end-tag", t1 = token.name; switch (t1) { case "body": _this.endTagBody$1(token); return _null; case "html": return _this.endTagHtml$1(token); case "address": case "article": case "aside": case "blockquote": case "button": case "center": case "details": case "dir": case "div": case "dl": case "fieldset": case "figcaption": case "figure": case "footer": case "header": case "hgroup": case "listing": case "menu": case "nav": case "ol": case "pre": case "section": case "summary": case "ul": if (t1 === "pre") _this.dropNewline = false; t2 = _this.tree; inScope = t2.elementInScope$1(t1); if (inScope) t2.generateImpliedEndTags$0(); t1 = B.JSArray_methods.get$last(t2.openElements).localName; t2 = token.name; if (t1 != t2) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s17_, A.LinkedHashMap_LinkedHashMap$_literal(["name", t2], t1, t1)); } if (inScope) _this.popOpenElementsUntil$1(token); return _null; case "form": t1 = _this.tree; node = t1.formPointer; t1.formPointer = null; if (node == null || !t1.elementInScope$1(node)) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s18_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "form"], t1, t1)); } else { t1.generateImpliedEndTags$0(); t1 = t1.openElements; if (!J.$eq$(B.JSArray_methods.get$last(t1), node)) { t2 = type$.dynamic; _this.parser.parseError$3(token.span, "end-tag-too-early-ignored", A.LinkedHashMap_LinkedHashMap$_literal(["name", "form"], t2, t2)); } B.JSArray_methods.remove$1(t1, node); } return _null; case "p": _this.endTagP$1(token); return _null; case "dd": case "dt": case "li": variant = t1 === "li" ? "list" : _null; t2 = _this.tree; t1 = t2.elementInScope$2$variant(t1, variant); t3 = token.name; if (!t1) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s18_, A.LinkedHashMap_LinkedHashMap$_literal(["name", t3], t1, t1)); } else { t2.generateImpliedEndTags$1(t3); t1 = B.JSArray_methods.get$last(t2.openElements).localName; t2 = token.name; if (t1 != t2) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s17_, A.LinkedHashMap_LinkedHashMap$_literal(["name", t2], t1, t1)); } _this.popOpenElementsUntil$1(token); } return _null; case "h1": case "h2": case "h3": case "h4": case "h5": case "h6": _this.endTagHeading$1(token); return _null; case "a": case "b": case "big": case "code": case "em": case "font": case "i": case "nobr": case "s": case "small": case "strike": case "strong": case "tt": case "u": _this.endTagFormatting$1(token); return _null; case "applet": case "marquee": case "object": t2 = _this.tree; if (t2.elementInScope$1(t1)) t2.generateImpliedEndTags$0(); t1 = B.JSArray_methods.get$last(t2.openElements).localName; t3 = token.name; if (t1 != t3) { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s17_, A.LinkedHashMap_LinkedHashMap$_literal(["name", t3], t1, t1)); } if (t2.elementInScope$1(token.name)) { _this.popOpenElementsUntil$1(token); t2.clearActiveFormattingElements$0(); } return _null; case "br": t1 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag-treated-as", A.LinkedHashMap_LinkedHashMap$_literal(["originalName", "br", "newName", "br element"], t1, t1)); t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(A.StartTagToken$("br", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); t1.openElements.pop(); return _null; default: _this.endTagOther$1(token); return _null; } }, isMatchingFormattingElement$2(node1, node2) { var t1, key; if (node1.localName != node2.localName || node1.namespaceUri != node2.namespaceUri) return false; else { t1 = node1.attributes; if (t1._length !== node2.attributes._length) return false; else for (t1 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { key = t1.__js_helper$_current; if (!J.$eq$(node1.attributes.$index(0, key), node2.attributes.$index(0, key))) return false; } } return true; }, addFormattingElement$1(token) { var element, matchingElements, t2, t3, t4, t1 = this.tree; t1.insertElement$1(token); element = B.JSArray_methods.get$last(t1.openElements); matchingElements = []; for (t1 = t1.activeFormattingElements, t2 = A._instanceType(t1)._eval$1("ReversedListIterable"), t3 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t3, t3.get$length(t3), t2._eval$1("ListIterator")), t3 = type$.Element_3; t2.moveNext$0();) { t4 = t2.__internal$_current; if (t4 == null) break; else { t3._as(t4); if (this.isMatchingFormattingElement$2(t4, element)) matchingElements.push(t4); } } if (matchingElements.length === 3) B.JSArray_methods.remove$1(t1._list_proxy$_list, B.JSArray_methods.get$last(matchingElements)); t1.add$1(0, element); }, processEOF$0() { var t1, t2, span, t3; for (t1 = this.tree.openElements, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); t2.moveNext$0();) { t1 = t2.__internal$_current; switch (t1.localName) { case "dd": case "dt": case "li": case "p": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": case "body": case "html": continue; } t2 = this.parser; span = t1.sourceSpan; if (span == null) { t1 = t2.tokenizer.stream; t3 = t1.fileInfo; if (t3 == null) span = null; else { t1 = t1._html_input_stream$_offset; new A.FileLocation(t3, t1).FileLocation$_$2(t3, t1); span = new A._FileSpan(t3, t1, t1); span._FileSpan$3(t3, t1, t1); } } t2.errors.push(new A.ParseError("expected-closing-tag-but-got-eof", span, B.Map_empty0)); break; } return false; }, processCharacters$1(token) { var t1; if (token.get$data(token) === "\x00") return null; t1 = this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertText$2(token.get$data(token), token.span); t1 = this.parser; if (t1.framesetOK && !A.allWhitespace(token.get$data(token))) t1.framesetOK = false; return null; }, processSpaceCharacters$1(token) { var data, t1, lastOpen, _this = this; if (_this.dropNewline) { data = token.get$data(token); t1 = _this.dropNewline = false; if (J.startsWith$1$s(data, "\n")) { lastOpen = B.JSArray_methods.get$last(_this.tree.openElements); if (B.JSArray_methods.contains$1(B.List_pre_listing_textarea, lastOpen.localName)) { t1 = lastOpen.get$nodes(lastOpen); t1 = t1.get$isEmpty(t1); } if (t1) data = B.JSString_methods.substring$1(data, 1); } if (data.length !== 0) { t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertText$2(data, token.span); } } else { t1 = _this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertText$2(token.get$data(token), token.span); } return null; }, startTagBody$1(token) { var t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, "unexpected-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", "body"], t2, t2)); t2 = this.tree.openElements; if (!(t2.length === 1 || t2[1].localName !== "body")) { t1.framesetOK = false; token.data.forEach$1(0, new A.InBodyPhase_startTagBody_closure(this)); } }, startTagFrameset$1(token) { var t3, t4, t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, "unexpected-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", "frameset"], t2, t2)); t2 = this.tree; t3 = t2.openElements; if (!(t3.length === 1 || t3[1].localName !== "body")) if (t1.framesetOK) { t4 = t3[1].parentNode; if (t4 != null) B.JSArray_methods.remove$1(t4.get$nodes(t4)._list_proxy$_list, t3[1]); for (; B.JSArray_methods.get$last(t3).localName !== "html";) t3.pop(); t2.insertElement$1(token); t1.__HtmlParser_phase = t1.get$_inFramesetPhase(); } }, startTagCloseP$1(token) { var t1 = this.tree; if (t1.elementInScope$2$variant("p", "button")) this.endTagP$1(new A.EndTagToken("p", false)); t1.insertElement$1(token); }, startTagListItem$1(token) { var t2, t3, t4, t5, t6, t7, value, result, ns, t1 = this.parser; t1.framesetOK = false; t2 = token.name; t2.toString; t2 = B.Map_q1wwi.$index(0, t2); t2.toString; for (t3 = this.tree, t4 = t3.openElements, t5 = A._arrayInstanceType(t4)._eval$1("ReversedListIterable<1>"), t4 = new A.ReversedListIterable(t4, t5), t5 = new A.ListIterator(t4, t4.get$length(t4), t5._eval$1("ListIterator")), t4 = type$.Pair_of_String_and_nullable_String; t5.moveNext$0();) { t6 = t5.__internal$_current; t7 = t6.localName; if (B.JSArray_methods.contains$1(t2, t7)) { value = t1.__HtmlParser_phase; if (value === $) { value = t1.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(t1, t1.tree); A._lateInitializeOnceCheck(value, "_initialPhase"); t1.__HtmlParser__initialPhase = result; value = result; } value = t1.__HtmlParser_phase = value; } value.processEndTag$1(new A.EndTagToken(t7, false)); break; } ns = t6.namespaceUri; if (B.JSArray_methods.contains$1(B.List_yTE, new A.Pair(ns == null ? "http://www.w3.org/1999/xhtml" : ns, t7, t4)) && !B.JSArray_methods.contains$1(B.List_address_div_p, t7)) break; } if (t3.elementInScope$2$variant("p", "button")) t1.get$phase().processEndTag$1(new A.EndTagToken("p", false)); t3.insertElement$1(token); }, startTagButton$1(token) { var t1 = this.tree, t2 = this.parser; if (t1.elementInScope$1("button")) { t1 = type$.dynamic; t2.parseError$3(token.span, "unexpected-start-tag-implies-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["startName", "button", "endName", "button"], t1, t1)); this.processEndTag$1(new A.EndTagToken("button", false)); return token; } else { t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(token); t2.framesetOK = false; } return null; }, startTagVoidFormatting$1(token) { var t1 = this.tree; t1.reconstructActiveFormattingElements$0(); t1.insertElement$1(token); t1.openElements.pop(); token.selfClosingAcknowledged = true; this.parser.framesetOK = false; }, startTagIsIndex$1(token) { var t2, formAttrs, dataAction, $prompt, attributes, _this = this, _null = null, _s6_ = "action", t1 = type$.dynamic; _this.parser.parseError$3(token.span, "deprecated-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", "isindex"], t1, t1)); if (_this.tree.formPointer != null) return; t1 = type$.Object; t2 = type$.String; formAttrs = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t1, t2); dataAction = token.data.$index(0, _s6_); if (dataAction != null) formAttrs.$indexSet(0, _s6_, dataAction); _this.processStartTag$1(A.StartTagToken$("form", formAttrs, _null, false)); _this.processStartTag$1(A.StartTagToken$("hr", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t1, t2), _null, false)); _this.processStartTag$1(A.StartTagToken$("label", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t1, t2), _null, false)); $prompt = token.data.$index(0, "prompt"); if ($prompt == null) $prompt = "This is a searchable index. Enter search keywords: "; _this.processCharacters$1(new A.CharactersToken(_null, $prompt)); attributes = A.LinkedHashMap_LinkedHashMap$from(token.data, t1, t2); attributes.remove$1(0, _s6_); attributes.remove$1(0, "prompt"); attributes.$indexSet(0, "name", "isindex"); _this.processStartTag$1(A.StartTagToken$("input", attributes, _null, token.selfClosing)); _this.processEndTag$1(new A.EndTagToken("label", false)); _this.processStartTag$1(A.StartTagToken$("hr", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t1, t2), _null, false)); _this.processEndTag$1(new A.EndTagToken("form", false)); }, endTagP$1(token) { var _this = this, _null = null, _s18_ = "unexpected-end-tag", t1 = _this.tree; if (!t1.elementInScope$2$variant("p", "button")) { _this.startTagCloseP$1(A.StartTagToken$("p", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s18_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "p"], t1, t1)); _this.endTagP$1(new A.EndTagToken("p", false)); } else { t1.generateImpliedEndTags$1("p"); if (B.JSArray_methods.get$last(t1.openElements).localName !== "p") { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s18_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "p"], t1, t1)); } _this.popOpenElementsUntil$1(token); } }, endTagBody$1(token) { var t2, _i, t3, span, t4, value, _this = this, t1 = _this.tree; if (!t1.elementInScope$1("body")) { _this.parser.parseError$2(token.span, "undefined-error"); return; } else { t1 = t1.openElements; if (B.JSArray_methods.get$last(t1).localName === "body") B.JSArray_methods.get$last(t1); else for (t1 = A.slice(t1, 2, null), t2 = t1.length, _i = 0; _i < t2; ++_i) { t3 = t1[_i].localName; switch (t3) { case "dd": case "dt": case "li": case "optgroup": case "option": case "p": case "rp": case "rt": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": case "body": case "html": continue; } t1 = _this.parser; span = token.span; t2 = type$.dynamic; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["gotName", "body", "expectedName", t3], t2, t2); if (span == null) { t3 = t1.tokenizer.stream; t4 = t3.fileInfo; if (t4 == null) span = null; else { t3 = t3._html_input_stream$_offset; new A.FileLocation(t4, t3).FileLocation$_$2(t4, t3); span = new A._FileSpan(t4, t3, t3); span._FileSpan$3(t4, t3, t3); } } t1.errors.push(new A.ParseError("expected-one-end-tag-but-got-another", span, t2)); break; } } t1 = _this.parser; value = t1.__HtmlParser__afterBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_afterBodyPhase"); value = t1.__HtmlParser__afterBodyPhase = new A.AfterBodyPhase(t1, t1.tree); } t1.__HtmlParser_phase = value; }, endTagHtml$1(token) { if (this.tree.elementInScope$1("body")) { this.endTagBody$1(new A.EndTagToken("body", false)); return token; } return null; }, endTagHeading$1(token) { var t1, _i, t2, $name, t3, t4, node; for (t1 = this.tree, _i = 0; _i < 6; ++_i) if (t1.elementInScope$1(B.List_8eb[_i])) { t2 = t1.openElements; $name = B.JSArray_methods.get$last(t2).localName; if ($name != null && B.JSArray_methods.contains$1(B.List_8oN, $name)) { t2.pop(); t1.generateImpliedEndTags$1(null); } break; } t2 = t1.openElements; t3 = B.JSArray_methods.get$last(t2).localName; t4 = token.name; if (t3 != t4) { t3 = type$.dynamic; this.parser.parseError$3(token.span, "end-tag-too-early", A.LinkedHashMap_LinkedHashMap$_literal(["name", t4], t3, t3)); } for (_i = 0; _i < 6; ++_i) if (t1.elementInScope$1(B.List_8eb[_i])) { node = t2.pop(); for (; !B.JSArray_methods.contains$1(B.List_8eb, node.localName);) node = t2.pop(); break; } }, endTagFormatting$1(token) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, outerLoopCounter, formattingElement, t12, span, t13, t14, afeIndex, furthestBlock, _i, element, ns, commonAncestor, bookmark, index, lastNode, innerLoopCounter, node, result, lastNode0, value, value0, nodePos, _null = null, _s5_ = "nodes"; for (t1 = this.tree, t2 = t1.activeFormattingElements, t3 = t2._list_proxy$_list, t4 = t1.openElements, t5 = type$.Object, t6 = type$.String, t7 = type$.JSArray_Node_2, t8 = type$.Pair_of_String_and_nullable_String, t9 = this.parser, t10 = type$.dynamic, t11 = t9.tokenizer.stream, t9 = t9.errors, outerLoopCounter = 0; outerLoopCounter < 8;) { ++outerLoopCounter; formattingElement = t1.elementInActiveFormattingElements$1(token.name); if (formattingElement != null) t12 = B.JSArray_methods.contains$1(t4, formattingElement) && !t1.elementInScope$1(formattingElement.localName); else t12 = true; if (t12) { span = token.span; t1 = A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t10, t10); if (span == null) { t2 = t11.fileInfo; if (t2 == null) span = _null; else { t3 = t11._html_input_stream$_offset; new A.FileLocation(t2, t3).FileLocation$_$2(t2, t3); span = new A._FileSpan(t2, t3, t3); span._FileSpan$3(t2, t3, t3); } } t9.push(new A.ParseError("adoption-agency-1.1", span, t1)); return; } else if (!B.JSArray_methods.contains$1(t4, formattingElement)) { span = token.span; t1 = A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t10, t10); if (span == null) { t2 = t11.fileInfo; if (t2 == null) span = _null; else { t4 = t11._html_input_stream$_offset; new A.FileLocation(t2, t4).FileLocation$_$2(t2, t4); span = new A._FileSpan(t2, t4, t4); span._FileSpan$3(t2, t4, t4); } } t9.push(new A.ParseError("adoption-agency-1.2", span, t1)); B.JSArray_methods.remove$1(t3, formattingElement); return; } t12 = B.JSArray_methods.get$last(t4); if (formattingElement == null ? t12 != null : formattingElement !== t12) { span = token.span; t12 = A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t10, t10); if (span == null) { t13 = t11.fileInfo; if (t13 == null) span = _null; else { t14 = t11._html_input_stream$_offset; new A.FileLocation(t13, t14).FileLocation$_$2(t13, t14); span = new A._FileSpan(t13, t14, t14); span._FileSpan$3(t13, t14, t14); } } t9.push(new A.ParseError("adoption-agency-1.3", span, t12)); } afeIndex = B.JSArray_methods.indexOf$1(t4, formattingElement); t12 = A.slice(t4, afeIndex, _null); t13 = t12.length; _i = 0; while (true) { if (!(_i < t12.length)) { furthestBlock = _null; break; } element = t12[_i]; ns = element.namespaceUri; if (ns == null) ns = "http://www.w3.org/1999/xhtml"; if (B.JSArray_methods.contains$1(B.List_yTE, new A.Pair(ns, element.localName, t8))) { furthestBlock = element; break; } t12.length === t13 || (0, A.throwConcurrentModificationError)(t12); ++_i; } if (furthestBlock == null) { element = t4.pop(); for (; element != formattingElement;) element = t4.pop(); B.JSArray_methods.remove$1(t3, element); return; } commonAncestor = t4[afeIndex - 1]; bookmark = t2.indexOf$1(t2, formattingElement); index = B.JSArray_methods.indexOf$1(t4, furthestBlock); for (lastNode = furthestBlock, innerLoopCounter = 0; innerLoopCounter < 3;) { ++innerLoopCounter; --index; node = t4[index]; if (!t2.contains$1(t2, node)) { B.JSArray_methods.remove$1(t4, node); continue; } if (node == formattingElement) break; if (lastNode === furthestBlock) bookmark = t2.indexOf$1(t2, node) + 1; t12 = node.localName; result = new A.Element(node.namespaceUri, t12, A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t5, t6)); result.attributes = A.LinkedHashMap_LinkedHashMap$from(node.attributes, t5, t6); lastNode0 = node._dom$_clone$2(result, false); t3[t2.indexOf$1(t2, node)] = lastNode0; t4[B.JSArray_methods.indexOf$1(t4, node)] = lastNode0; t12 = lastNode.parentNode; if (t12 != null) { value = t12.__Node_nodes; if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value = t12.__Node_nodes = new A.NodeList(t12, t13); } B.JSArray_methods.remove$1(value._list_proxy$_list, lastNode); } value = lastNode0.__Node_nodes; if (value === $) { t12 = A._setArrayType([], t7); A._lateInitializeOnceCheck(lastNode0.__Node_nodes, _s5_); value = lastNode0.__Node_nodes = new A.NodeList(lastNode0, t12); } t12 = lastNode.parentNode; if (t12 != null) { value0 = t12.__Node_nodes; if (value0 === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value0 = t12.__Node_nodes = new A.NodeList(t12, t13); } B.JSArray_methods.remove$1(value0._list_proxy$_list, lastNode); } lastNode.parentNode = value._dom$_parent; value.super$ListProxy$add(0, lastNode); lastNode = lastNode0; } t12 = lastNode.parentNode; if (t12 != null) { value = t12.__Node_nodes; if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value = t12.__Node_nodes = new A.NodeList(t12, t13); } B.JSArray_methods.remove$1(value._list_proxy$_list, lastNode); } if (B.JSArray_methods.contains$1(B.List_QcX, commonAncestor.localName)) { nodePos = t1.getTableMisnestedNodePosition$0(); t12 = nodePos[0]; t13 = nodePos[1]; value = t12.__Node_nodes; if (t13 == null) { if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value = t12.__Node_nodes = new A.NodeList(t12, t13); } t12 = lastNode.parentNode; if (t12 != null) { value0 = t12.__Node_nodes; if (value0 === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value0 = t12.__Node_nodes = new A.NodeList(t12, t13); } B.JSArray_methods.remove$1(value0._list_proxy$_list, lastNode); } lastNode.parentNode = value._dom$_parent; value.super$ListProxy$add(0, lastNode); } else { if (value === $) { t14 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); result = t12.__Node_nodes = new A.NodeList(t12, t14); value0 = result; value = value0; } else value0 = value; if (value0 === $) { t14 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value0 = t12.__Node_nodes = new A.NodeList(t12, t14); } t12 = value0.indexOf$1(value0, t13); t13 = lastNode.parentNode; if (t13 != null) { value0 = t13.__Node_nodes; if (value0 === $) { t14 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t13.__Node_nodes, _s5_); value0 = t13.__Node_nodes = new A.NodeList(t13, t14); } B.JSArray_methods.remove$1(value0._list_proxy$_list, lastNode); } lastNode.parentNode = value._dom$_parent; value.super$ListProxy$insert(0, t12, lastNode); } } else { value = commonAncestor.__Node_nodes; if (value === $) { t12 = A._setArrayType([], t7); A._lateInitializeOnceCheck(commonAncestor.__Node_nodes, _s5_); value = commonAncestor.__Node_nodes = new A.NodeList(commonAncestor, t12); } t12 = lastNode.parentNode; if (t12 != null) { value0 = t12.__Node_nodes; if (value0 === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value0 = t12.__Node_nodes = new A.NodeList(t12, t13); } B.JSArray_methods.remove$1(value0._list_proxy$_list, lastNode); } lastNode.parentNode = value._dom$_parent; value.super$ListProxy$add(0, lastNode); } t12 = formattingElement.localName; result = new A.Element(formattingElement.namespaceUri, t12, A.LinkedHashMap_LinkedHashMap(_null, _null, _null, t5, t6)); result.attributes = A.LinkedHashMap_LinkedHashMap$from(formattingElement.attributes, t5, t6); t12 = formattingElement._dom$_clone$2(result, false); value = t12.__Node_nodes; if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t12.__Node_nodes, _s5_); value = t12.__Node_nodes = new A.NodeList(t12, t13); } value0 = furthestBlock.__Node_nodes; if (value0 === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(furthestBlock.__Node_nodes, _s5_); value0 = furthestBlock.__Node_nodes = new A.NodeList(furthestBlock, t13); } value.addAll$1(0, value0); value = furthestBlock.__Node_nodes; if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(furthestBlock.__Node_nodes, _s5_); value = furthestBlock.__Node_nodes = new A.NodeList(furthestBlock, t13); } value.clear$0(0); value = furthestBlock.__Node_nodes; if (value === $) { t13 = A._setArrayType([], t7); A._lateInitializeOnceCheck(furthestBlock.__Node_nodes, _s5_); value = furthestBlock.__Node_nodes = new A.NodeList(furthestBlock, t13); } t13 = t12.parentNode; if (t13 != null) { value0 = t13.__Node_nodes; if (value0 === $) { t14 = A._setArrayType([], t7); A._lateInitializeOnceCheck(t13.__Node_nodes, _s5_); value0 = t13.__Node_nodes = new A.NodeList(t13, t14); } B.JSArray_methods.remove$1(value0._list_proxy$_list, t12); } t12.parentNode = value._dom$_parent; value.super$ListProxy$add(0, t12); B.JSArray_methods.remove$1(t3, formattingElement); B.JSArray_methods.insert$2(t3, Math.min(bookmark, t3.length), t12); B.JSArray_methods.remove$1(t4, formattingElement); B.JSArray_methods.insert$2(t4, B.JSArray_methods.indexOf$1(t4, furthestBlock) + 1, t12); } }, endTagOther$1(token) { var t1, t2, t3, t4, t5, t6, t7, $name, span, ns, _s18_ = "unexpected-end-tag"; for (t1 = this.tree, t2 = t1.openElements, t3 = A._arrayInstanceType(t2)._eval$1("ReversedListIterable<1>"), t4 = new A.ReversedListIterable(t2, t3), t3 = new A.ListIterator(t4, t4.get$length(t4), t3._eval$1("ListIterator")), t4 = type$.Pair_of_String_and_nullable_String; t3.moveNext$0();) { t5 = t3.__internal$_current; t6 = t5.localName; t7 = token.name; if (t6 == t7) { $name = B.JSArray_methods.get$last(t2).localName; if ($name != t7 && B.JSArray_methods.contains$1(B.List_8oN, $name)) { t2.pop(); t1.generateImpliedEndTags$1(t7); } t1 = B.JSArray_methods.get$last(t2).localName; t3 = token.name; if (t1 != t3) { t1 = this.parser; span = token.span; t4 = type$.dynamic; t4 = A.LinkedHashMap_LinkedHashMap$_literal(["name", t3], t4, t4); if (span == null) { t3 = t1.tokenizer.stream; t6 = t3.fileInfo; if (t6 == null) span = null; else { t3 = t3._html_input_stream$_offset; new A.FileLocation(t6, t3).FileLocation$_$2(t6, t3); span = new A._FileSpan(t6, t3, t3); span._FileSpan$3(t6, t3, t3); } } t1.errors.push(new A.ParseError(_s18_, span, t4)); } for (; !J.$eq$(t2.pop(), t5);) ; break; } else { ns = t5.namespaceUri; if (B.JSArray_methods.contains$1(B.List_yTE, new A.Pair(ns == null ? "http://www.w3.org/1999/xhtml" : ns, t6, t4))) { t1 = this.parser; span = token.span; t2 = type$.dynamic; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t2, t2); if (span == null) { t3 = t1.tokenizer.stream; t4 = t3.fileInfo; if (t4 == null) span = null; else { t3 = t3._html_input_stream$_offset; new A.FileLocation(t4, t3).FileLocation$_$2(t4, t3); span = new A._FileSpan(t4, t3, t3); span._FileSpan$3(t4, t3, t3); } } t1.errors.push(new A.ParseError(_s18_, span, t2)); break; } } } } }; A.InBodyPhase_startTagBody_closure.prototype = { call$2(attr, value) { this.$this.tree.openElements[1].attributes.putIfAbsent$2(0, attr, new A.InBodyPhase_startTagBody__closure(value)); }, $signature: 420 }; A.InBodyPhase_startTagBody__closure.prototype = { call$0() { return this.value; }, $signature: 65 }; A.TextPhase.prototype = { processStartTag$1(token) { throw A.wrapException(A.StateError$("Cannot process start stag in text phase")); }, processEndTag$1(token) { var t1, t2, _this = this; if (token.name === "script") { _this.tree.openElements.pop(); t1 = _this.parser; t2 = t1.originalPhase; t2.toString; t1.__HtmlParser_phase = t2; return null; } _this.tree.openElements.pop(); t1 = _this.parser; t2 = t1.originalPhase; t2.toString; t1.__HtmlParser_phase = t2; return null; }, processCharacters$1(token) { this.tree.insertText$2(token.get$data(token), token.span); return null; }, processEOF$0() { var t1 = this.tree.openElements, last = B.JSArray_methods.get$last(t1), t2 = this.parser, t3 = type$.dynamic; t2.parseError$3(last.sourceSpan, "expected-named-closing-tag-but-got-eof", A.LinkedHashMap_LinkedHashMap$_literal(["name", last.localName], t3, t3)); t1.pop(); t1 = t2.originalPhase; t1.toString; t2.__HtmlParser_phase = t1; return true; } }; A.InTablePhase.prototype = { processStartTag$1(token) { var t1, t2, _this = this, _null = null; switch (token.name) { case "html": return _this.startTagHtml$1(token); case "caption": _this.clearStackToTableContext$0(); t1 = _this.tree; t1.activeFormattingElements.add$1(0, _null); t1.insertElement$1(token); t1 = _this.parser; t1.__HtmlParser_phase = t1.get$_inCaptionPhase(); return _null; case "colgroup": _this.startTagColgroup$1(token); return _null; case "col": _this.startTagColgroup$1(A.StartTagToken$("colgroup", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; case "tbody": case "tfoot": case "thead": _this.startTagRowGroup$1(token); return _null; case "td": case "th": case "tr": _this.startTagRowGroup$1(A.StartTagToken$("tbody", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; case "table": return _this.startTagTable$1(token); case "style": case "script": return _this.parser.get$_inHeadPhase().processStartTag$1(token); case "input": t1 = token.data.$index(0, "type"); if ((t1 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t1), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null)) === "hidden") { _this.parser.parseError$2(token.span, "unexpected-hidden-input-in-table"); t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); } else _this.startTagOther$1(token); return _null; case "form": _this.parser.parseError$2(token.span, "unexpected-form-in-table"); t1 = _this.tree; if (t1.formPointer == null) { t1.insertElement$1(token); t2 = t1.openElements; t1.formPointer = B.JSArray_methods.get$last(t2); t2.pop(); } return _null; default: _this.startTagOther$1(token); return _null; } }, processEndTag$1(token) { var t2, t3, _this = this, t1 = token.name; switch (t1) { case "table": _this.endTagTable$1(token); return null; case "body": case "caption": case "col": case "colgroup": case "html": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; default: t2 = _this.parser; t3 = type$.dynamic; t2.parseError$3(token.span, "unexpected-end-tag-implies-table-voodoo", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); t3 = _this.tree; t3.insertFromTable = true; t2.get$_inBodyPhase().processEndTag$1(token); t3.insertFromTable = false; return null; } }, clearStackToTableContext$0() { var t1 = this.tree.openElements; while (true) { if (!(B.JSArray_methods.get$last(t1).localName !== "table" && B.JSArray_methods.get$last(t1).localName !== "html")) break; t1.pop(); } }, processEOF$0() { var last = B.JSArray_methods.get$last(this.tree.openElements); if (last.localName !== "html") this.parser.parseError$2(last.sourceSpan, "eof-in-table"); return false; }, processSpaceCharacters$1(token) { var t1 = this.parser, originalPhase = t1.get$phase(); t1.__HtmlParser_phase = t1.get$_inTableTextPhase(); t1.get$_inTableTextPhase().originalPhase = originalPhase; t1.get$phase().processSpaceCharacters$1(token); return null; }, processCharacters$1(token) { var t1 = this.parser, originalPhase = t1.get$phase(); t1.__HtmlParser_phase = t1.get$_inTableTextPhase(); t1.get$_inTableTextPhase().originalPhase = originalPhase; t1.get$phase().processCharacters$1(token); return null; }, startTagColgroup$1(token) { var t1; this.clearStackToTableContext$0(); this.tree.insertElement$1(token); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_inColumnGroupPhase(); }, startTagRowGroup$1(token) { var t1; this.clearStackToTableContext$0(); this.tree.insertElement$1(token); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_inTableBodyPhase(); }, startTagTable$1(token) { var t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, "unexpected-start-tag-implies-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["startName", "table", "endName", "table"], t2, t2)); t1.get$phase().processEndTag$1(new A.EndTagToken("table", false)); return token; }, startTagOther$1(token) { var t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, string$.x75nexpes, A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t2, t2)); t2 = this.tree; t2.insertFromTable = true; t1.get$_inBodyPhase().processStartTag$1(token); t2.insertFromTable = false; }, endTagTable$1(token) { var t2, t3, _this = this, t1 = _this.tree; if (t1.elementInScope$2$variant("table", "table")) { t1.generateImpliedEndTags$0(); t1 = t1.openElements; t2 = B.JSArray_methods.get$last(t1).localName; if (t2 !== "table") { t3 = type$.dynamic; _this.parser.parseError$3(token.span, "end-tag-too-early-named", A.LinkedHashMap_LinkedHashMap$_literal(["gotName", "table", "expectedName", t2], t3, t3)); } for (; B.JSArray_methods.get$last(t1).localName !== "table";) t1.pop(); t1.pop(); _this.parser.resetInsertionMode$0(); } else _this.parser.parseError$2(token.span, "undefined-error"); } }; A.InTableTextPhase.prototype = { flushCharacters$0() { var data, t2, _this = this, t1 = _this.characterTokens; if (t1.length === 0) return; data = new A.MappedListIterable(t1, new A.InTableTextPhase_flushCharacters_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$1(0, ""); if (!A.allWhitespace(data)) { t1 = _this.parser.get$_inTablePhase(); t2 = t1.tree; t2.insertFromTable = true; t1.parser.get$_inBodyPhase().processCharacters$1(new A.CharactersToken(null, data)); t2.insertFromTable = false; } else if (data.length !== 0) _this.tree.insertText$2(data, null); _this.characterTokens = A._setArrayType([], type$.JSArray_StringToken); }, processComment$1(token) { var t1; this.flushCharacters$0(); t1 = this.originalPhase; t1.toString; this.parser.__HtmlParser_phase = t1; return token; }, processEOF$0() { this.flushCharacters$0(); var t1 = this.originalPhase; t1.toString; this.parser.__HtmlParser_phase = t1; return true; }, processCharacters$1(token) { if (token.get$data(token) === "\x00") return null; this.characterTokens.push(token); return null; }, processSpaceCharacters$1(token) { this.characterTokens.push(token); return null; }, processStartTag$1(token) { var t1; this.flushCharacters$0(); t1 = this.originalPhase; t1.toString; this.parser.__HtmlParser_phase = t1; return token; }, processEndTag$1(token) { var t1; this.flushCharacters$0(); t1 = this.originalPhase; t1.toString; this.parser.__HtmlParser_phase = t1; return token; } }; A.InTableTextPhase_flushCharacters_closure.prototype = { call$1(t) { return t.get$data(t); }, $signature: 1241 }; A.InCaptionPhase.prototype = { processStartTag$1(token) { switch (token.name) { case "html": return this.startTagHtml$1(token); case "caption": case "col": case "colgroup": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": return this.startTagTableElement$1(token); default: return this.parser.get$_inBodyPhase().processStartTag$1(token); } }, processEndTag$1(token) { var t2, _this = this, t1 = token.name; switch (t1) { case "caption": _this.endTagCaption$1(token); return null; case "table": return _this.endTagTable$1(token); case "body": case "col": case "colgroup": case "html": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; default: return _this.parser.get$_inBodyPhase().processEndTag$1(token); } }, processEOF$0() { this.parser.get$_inBodyPhase().processEOF$0(); return false; }, processCharacters$1(token) { return this.parser.get$_inBodyPhase().processCharacters$1(token); }, startTagTableElement$1(token) { var t2, t1 = this.parser; t1.parseError$2(token.span, "undefined-error"); t2 = this.tree.elementInScope$2$variant("caption", "table"); t1.get$phase().processEndTag$1(new A.EndTagToken("caption", false)); if (t2) return token; return null; }, endTagCaption$1(token) { var t2, t3, _this = this, t1 = _this.tree; if (t1.elementInScope$2$variant("caption", "table")) { t1.generateImpliedEndTags$0(); t2 = t1.openElements; if (B.JSArray_methods.get$last(t2).localName !== "caption") { t3 = type$.dynamic; _this.parser.parseError$3(token.span, "expected-one-end-tag-but-got-another", A.LinkedHashMap_LinkedHashMap$_literal(["gotName", "caption", "expectedName", B.JSArray_methods.get$last(t2).localName], t3, t3)); } for (; B.JSArray_methods.get$last(t2).localName !== "caption";) t2.pop(); t2.pop(); t1.clearActiveFormattingElements$0(); t1 = _this.parser; t1.__HtmlParser_phase = t1.get$_inTablePhase(); } else _this.parser.parseError$2(token.span, "undefined-error"); }, endTagTable$1(token) { var t2, t1 = this.parser; t1.parseError$2(token.span, "undefined-error"); t2 = this.tree.elementInScope$2$variant("caption", "table"); t1.get$phase().processEndTag$1(new A.EndTagToken("caption", false)); if (t2) return token; return null; } }; A.InColumnGroupPhase.prototype = { processStartTag$1(token) { var t1, _this = this; switch (token.name) { case "html": return _this.startTagHtml$1(token); case "col": t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); return null; default: t1 = B.JSArray_methods.get$last(_this.tree.openElements).localName; _this.endTagColgroup$1(new A.EndTagToken("colgroup", false)); return t1 === "html" ? null : token; } }, processEndTag$1(token) { var t1, _this = this; switch (token.name) { case "colgroup": _this.endTagColgroup$1(token); return null; case "col": t1 = type$.dynamic; _this.parser.parseError$3(token.span, "no-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", "col"], t1, t1)); return null; default: t1 = B.JSArray_methods.get$last(_this.tree.openElements).localName; _this.endTagColgroup$1(new A.EndTagToken("colgroup", false)); return t1 === "html" ? null : token; } }, processEOF$0() { if (B.JSArray_methods.get$last(this.tree.openElements).localName === "html") return false; else { this.endTagColgroup$1(new A.EndTagToken("colgroup", false)); return true; } }, processCharacters$1(token) { var t1 = B.JSArray_methods.get$last(this.tree.openElements).localName; this.endTagColgroup$1(new A.EndTagToken("colgroup", false)); return t1 === "html" ? null : token; }, endTagColgroup$1(token) { var t1 = this.tree.openElements, t2 = this.parser; if (B.JSArray_methods.get$last(t1).localName === "html") t2.parseError$2(token.span, "undefined-error"); else { t1.pop(); t2.__HtmlParser_phase = t2.get$_inTablePhase(); } } }; A.InTableBodyPhase.prototype = { processStartTag$1(token) { var t2, _this = this, _null = null, t1 = token.name; switch (t1) { case "html": return _this.startTagHtml$1(token); case "tr": _this.startTagTr$1(token); return _null; case "td": case "th": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-cell-in-table-body", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); _this.startTagTr$1(A.StartTagToken$("tr", A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String), _null, false)); return token; case "caption": case "col": case "colgroup": case "tbody": case "tfoot": case "thead": return _this.endTagTable$1(token); default: return _this.parser.get$_inTablePhase().processStartTag$1(token); } }, processEndTag$1(token) { var t2, _this = this, t1 = token.name; switch (t1) { case "tbody": case "tfoot": case "thead": _this.endTagTableRowGroup$1(token); return null; case "table": return _this.endTagTable$1(token); case "body": case "caption": case "col": case "colgroup": case "html": case "td": case "th": case "tr": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag-in-table-body", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; default: return _this.parser.get$_inTablePhase().processEndTag$1(token); } }, clearStackToTableBodyContext$0() { for (var t1 = this.tree.openElements; !B.JSArray_methods.contains$1(B.List_tbody_tfoot_thead_html, B.JSArray_methods.get$last(t1).localName);) t1.pop(); B.JSArray_methods.get$last(t1).toString; }, processEOF$0() { this.parser.get$_inTablePhase().processEOF$0(); return false; }, processSpaceCharacters$1(token) { return this.parser.get$_inTablePhase().processSpaceCharacters$1(token); }, processCharacters$1(token) { return this.parser.get$_inTablePhase().processCharacters$1(token); }, startTagTr$1(token) { var t1; this.clearStackToTableBodyContext$0(); this.tree.insertElement$1(token); t1 = this.parser; t1.__HtmlParser_phase = t1.get$_inRowPhase(); }, endTagTableRowGroup$1(token) { var t1 = this.tree, t2 = this.parser; if (t1.elementInScope$2$variant(token.name, "table")) { this.clearStackToTableBodyContext$0(); t1.openElements.pop(); t2.__HtmlParser_phase = t2.get$_inTablePhase(); } else { t1 = type$.dynamic; t2.parseError$3(token.span, "unexpected-end-tag-in-table-body", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t1, t1)); } }, endTagTable$1(token) { var _this = this, _s5_ = "table", t1 = _this.tree; if (t1.elementInScope$2$variant("tbody", _s5_) || t1.elementInScope$2$variant("thead", _s5_) || t1.elementInScope$2$variant("tfoot", _s5_)) { _this.clearStackToTableBodyContext$0(); _this.endTagTableRowGroup$1(new A.EndTagToken(B.JSArray_methods.get$last(t1.openElements).localName, false)); return token; } else _this.parser.parseError$2(token.span, "undefined-error"); return null; } }; A.InRowPhase.prototype = { processStartTag$1(token) { var t1, t2, _this = this; switch (token.name) { case "html": return _this.startTagHtml$1(token); case "td": case "th": _this.clearStackToTableRowContext$0(); t1 = _this.tree; t1.insertElement$1(token); t2 = _this.parser; t2.__HtmlParser_phase = t2.get$_inCellPhase(); t1.activeFormattingElements.add$1(0, null); return null; case "caption": case "col": case "colgroup": case "tbody": case "tfoot": case "thead": case "tr": t1 = _this.tree.elementInScope$2$variant("tr", "table"); _this.endTagTr$1(new A.EndTagToken("tr", false)); return !t1 ? null : token; default: return _this.parser.get$_inTablePhase().processStartTag$1(token); } }, processEndTag$1(token) { var t2, _this = this, t1 = token.name; switch (t1) { case "tr": _this.endTagTr$1(token); return null; case "table": t1 = _this.tree.elementInScope$2$variant("tr", "table"); _this.endTagTr$1(new A.EndTagToken("tr", false)); return !t1 ? null : token; case "tbody": case "tfoot": case "thead": return _this.endTagTableRowGroup$1(token); case "body": case "caption": case "col": case "colgroup": case "html": case "td": case "th": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag-in-table-row", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; default: return _this.parser.get$_inTablePhase().processEndTag$1(token); } }, clearStackToTableRowContext$0() { var t1, t2, t3, t4, last, t5, span, t6, t7; for (t1 = this.tree.openElements, t2 = this.parser, t3 = type$.dynamic, t4 = t2.tokenizer.stream; true;) { last = B.JSArray_methods.get$last(t1); t5 = last.localName; if (t5 === "tr" || t5 === "html") break; span = last.sourceSpan; t5 = A.LinkedHashMap_LinkedHashMap$_literal(["name", B.JSArray_methods.get$last(t1).localName], t3, t3); if (span == null) { t6 = t4.fileInfo; if (t6 == null) span = null; else { t7 = t4._html_input_stream$_offset; new A.FileLocation(t6, t7).FileLocation$_$2(t6, t7); span = new A._FileSpan(t6, t7, t7); span._FileSpan$3(t6, t7, t7); } } t2.errors.push(new A.ParseError("unexpected-implied-end-tag-in-table-row", span, t5)); t1.pop(); } }, processEOF$0() { this.parser.get$_inTablePhase().processEOF$0(); return false; }, processSpaceCharacters$1(token) { return this.parser.get$_inTablePhase().processSpaceCharacters$1(token); }, processCharacters$1(token) { return this.parser.get$_inTablePhase().processCharacters$1(token); }, endTagTr$1(token) { var t1 = this.tree, t2 = this.parser; if (t1.elementInScope$2$variant("tr", "table")) { this.clearStackToTableRowContext$0(); t1.openElements.pop(); t2.__HtmlParser_phase = t2.get$_inTableBodyPhase(); } else t2.parseError$2(token.span, "undefined-error"); }, endTagTableRowGroup$1(token) { if (this.tree.elementInScope$2$variant(token.name, "table")) { this.endTagTr$1(new A.EndTagToken("tr", false)); return token; } else { this.parser.parseError$2(token.span, "undefined-error"); return null; } } }; A.InCellPhase.prototype = { processStartTag$1(token) { switch (token.name) { case "html": return this.startTagHtml$1(token); case "caption": case "col": case "colgroup": case "tbody": case "td": case "tfoot": case "th": case "thead": case "tr": return this.startTagTableOther$1(token); default: return this.parser.get$_inBodyPhase().processStartTag$1(token); } }, processEndTag$1(token) { var t2, _this = this, t1 = token.name; switch (t1) { case "td": case "th": _this.endTagTableCell$1(token); return null; case "body": case "caption": case "col": case "colgroup": case "html": t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; case "table": case "tbody": case "tfoot": case "thead": case "tr": return _this.endTagImply$1(token); default: return _this.parser.get$_inBodyPhase().processEndTag$1(token); } }, closeCell$0() { var t1 = this.tree; if (t1.elementInScope$2$variant("td", "table")) this.endTagTableCell$1(new A.EndTagToken("td", false)); else if (t1.elementInScope$2$variant("th", "table")) this.endTagTableCell$1(new A.EndTagToken("th", false)); }, processEOF$0() { this.parser.get$_inBodyPhase().processEOF$0(); return false; }, processCharacters$1(token) { return this.parser.get$_inBodyPhase().processCharacters$1(token); }, startTagTableOther$1(token) { var t1 = this.tree; if (t1.elementInScope$2$variant("td", "table") || t1.elementInScope$2$variant("th", "table")) { this.closeCell$0(); return token; } else { this.parser.parseError$2(token.span, "undefined-error"); return null; } }, endTagTableCell$1(token) { var t4, _this = this, t1 = _this.tree, t2 = t1.elementInScope$2$variant(token.name, "table"), t3 = token.name; if (t2) { t1.generateImpliedEndTags$1(t3); t2 = t1.openElements; t3 = B.JSArray_methods.get$last(t2).localName; t4 = token.name; if (t3 != t4) { t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-cell-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t4], t2, t2)); _this.popOpenElementsUntil$1(token); } else t2.pop(); t1.clearActiveFormattingElements$0(); t1 = _this.parser; t1.__HtmlParser_phase = t1.get$_inRowPhase(); } else { t1 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t3], t1, t1)); } }, endTagImply$1(token) { if (this.tree.elementInScope$2$variant(token.name, "table")) { this.closeCell$0(); return token; } else this.parser.parseError$2(token.span, "undefined-error"); return null; } }; A.InSelectPhase.prototype = { processStartTag$1(token) { var t2, _this = this, _null = null, t1 = token.name; switch (t1) { case "html": return _this.startTagHtml$1(token); case "option": t1 = _this.tree; t2 = t1.openElements; if (B.JSArray_methods.get$last(t2).localName === "option") t2.pop(); t1.insertElement$1(token); return _null; case "optgroup": t1 = _this.tree; t2 = t1.openElements; if (B.JSArray_methods.get$last(t2).localName === "option") t2.pop(); if (B.JSArray_methods.get$last(t2).localName === "optgroup") t2.pop(); t1.insertElement$1(token); return _null; case "select": _this.parser.parseError$2(token.span, "unexpected-select-in-select"); _this.endTagSelect$1(new A.EndTagToken("select", false)); return _null; case "input": case "keygen": case "textarea": return _this.startTagInput$1(token); case "script": return _this.parser.get$_inHeadPhase().processStartTag$1(token); default: t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-start-tag-in-select", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return _null; } }, processEndTag$1(token) { var t2, _this = this, _null = null, _s28_ = "unexpected-end-tag-in-select", t1 = token.name; switch (t1) { case "option": t1 = _this.tree.openElements; if (B.JSArray_methods.get$last(t1).localName === "option") t1.pop(); else { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s28_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "option"], t1, t1)); } return _null; case "optgroup": t1 = _this.tree.openElements; if (B.JSArray_methods.get$last(t1).localName === "option" && t1[t1.length - 2].localName === "optgroup") t1.pop(); if (B.JSArray_methods.get$last(t1).localName === "optgroup") t1.pop(); else { t1 = type$.dynamic; _this.parser.parseError$3(token.span, _s28_, A.LinkedHashMap_LinkedHashMap$_literal(["name", "optgroup"], t1, t1)); } return _null; case "select": _this.endTagSelect$1(token); return _null; default: t2 = type$.dynamic; _this.parser.parseError$3(token.span, _s28_, A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return _null; } }, processEOF$0() { var last = B.JSArray_methods.get$last(this.tree.openElements); if (last.localName !== "html") this.parser.parseError$2(last.sourceSpan, "eof-in-select"); return false; }, processCharacters$1(token) { if (token.get$data(token) === "\x00") return null; this.tree.insertText$2(token.get$data(token), token.span); return null; }, startTagInput$1(token) { var _s6_ = "select"; this.parser.parseError$2(token.span, "unexpected-input-in-select"); if (this.tree.elementInScope$2$variant(_s6_, _s6_)) { this.endTagSelect$1(new A.EndTagToken(_s6_, false)); return token; } return null; }, endTagSelect$1(token) { var t1 = this.parser; if (this.tree.elementInScope$2$variant("select", "select")) { this.popOpenElementsUntil$1(token); t1.resetInsertionMode$0(); } else t1.parseError$2(token.span, "undefined-error"); } }; A.InSelectInTablePhase.prototype = { processStartTag$1(token) { var t2, t3, t1 = token.name; switch (t1) { case "caption": case "table": case "tbody": case "tfoot": case "thead": case "tr": case "td": case "th": t2 = this.parser; t3 = type$.dynamic; t2.parseError$3(token.span, string$.x75nexpets, A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); t2.get$_inSelectPhase().processEndTag$1(new A.EndTagToken("select", false)); return token; default: return this.parser.get$_inSelectPhase().processStartTag$1(token); } }, processEndTag$1(token) { switch (token.name) { case "caption": case "table": case "tbody": case "tfoot": case "thead": case "tr": case "td": case "th": return this.endTagTable$1(token); default: return this.parser.get$_inSelectPhase().processEndTag$1(token); } }, processEOF$0() { this.parser.get$_inSelectPhase().processEOF$0(); return false; }, processCharacters$1(token) { return this.parser.get$_inSelectPhase().processCharacters$1(token); }, endTagTable$1(token) { var t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, string$.x75nexpete, A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t2, t2)); if (this.tree.elementInScope$2$variant(token.name, "table")) { t1.get$_inSelectPhase().processEndTag$1(new A.EndTagToken("select", false)); return token; } return null; } }; A.InForeignContentPhase.prototype = { processCharacters$1(token) { var t1; if (token.get$data(token) === "\x00") { token._token$_string = "\ufffd"; token._token$_buffer = null; } else { t1 = this.parser; if (t1.framesetOK && !A.allWhitespace(token.get$data(token))) t1.framesetOK = false; } return this.super$Phase$processCharacters(token); }, processStartTag$1(token) { var t3, t4, t5, replace, _this = this, t1 = _this.tree, t2 = t1.openElements, currentNode = B.JSArray_methods.get$last(t2); if (!B.JSArray_methods.contains$1(B.List_4md, token.name)) if (token.name === "font") t3 = token.data.containsKey$1(0, "color") || token.data.containsKey$1(0, "face") || token.data.containsKey$1(0, "size"); else t3 = false; else t3 = true; if (t3) { t3 = _this.parser; t4 = type$.dynamic; t3.parseError$3(token.span, string$.x75nexpeh, A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t4, t4)); t1 = t1.defaultNamespace; t4 = type$.Pair_of_nullable_String_and_nullable_String; while (true) { if (B.JSArray_methods.get$last(t2).namespaceUri != t1) if (!t3.isHTMLIntegrationPoint$1(B.JSArray_methods.get$last(t2))) { t5 = B.JSArray_methods.get$last(t2); t5 = !B.JSArray_methods.contains$1(B.List_cjm, new A.Pair(t5.namespaceUri, t5.localName, t4)); } else t5 = false; else t5 = false; if (!t5) break; t2.pop(); } return token; } else { t3 = currentNode.namespaceUri; if (t3 === "http://www.w3.org/1998/Math/MathML") _this.parser.adjustMathMLAttributes$1(token); else if (t3 === "http://www.w3.org/2000/svg") { replace = B.Map_D1Fp5.$index(0, token.name); if (replace != null) token.name = replace; _this.parser.adjustSVGAttributes$1(token); } _this.parser.adjustForeignAttributes$1(token); token.namespace = t3; t1.insertElement$1(token); if (token.selfClosing) { t2.pop(); token.selfClosingAcknowledged = true; } return null; } }, processEndTag$1(token) { var t4, newToken, value, result, value0, _this = this, _null = null, _s13_ = "_initialPhase", t1 = _this.tree, t2 = t1.openElements, nodeIndex = t2.length - 1, node = B.JSArray_methods.get$last(t2), t3 = node.localName; t3 = t3 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t3), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); t4 = token.name; if (t3 != t4) { t3 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t4], t3, t3)); } t1 = t1.defaultNamespace; t3 = type$.CodeUnits._eval$1("MappedListIterable"); while (true) { if (!true) { newToken = _null; break; } c$0: { t4 = node.localName; t4 = t4 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t4), A.constants__AsciiUpperToLower__asciiToLower$closure(), t3), 0, _null); if (t4 == token.name) { t1 = _this.parser; value = t1.__HtmlParser_phase; if (value === $) { value = t1.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(t1, t1.tree); A._lateInitializeOnceCheck(value, _s13_); t1.__HtmlParser__initialPhase = result; value = result; } value = t1.__HtmlParser_phase = value; } value0 = t1.__HtmlParser__inTableTextPhase; if (value0 === $) { t3 = A._setArrayType([], type$.JSArray_StringToken); A._lateInitializeOnceCheck(t1.__HtmlParser__inTableTextPhase, "_inTableTextPhase"); value0 = t1.__HtmlParser__inTableTextPhase = new A.InTableTextPhase(t3, t1, t1.tree); } if (value === value0) { value = t1.__HtmlParser_phase; if (value === $) { value = t1.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(t1, t1.tree); A._lateInitializeOnceCheck(value, _s13_); t1.__HtmlParser__initialPhase = result; value = result; } value = t1.__HtmlParser_phase = value; } type$.InTableTextPhase._as(value); value.flushCharacters$0(); t3 = value.originalPhase; t3.toString; t1.__HtmlParser_phase = t3; } for (; !J.$eq$(t2.pop(), node);) ; newToken = _null; break; } --nodeIndex; node = t2[nodeIndex]; if (node.namespaceUri != t1) break c$0; else { t1 = _this.parser; value = t1.__HtmlParser_phase; if (value === $) { value = t1.__HtmlParser__initialPhase; if (value === $) { result = new A.InitialPhase(t1, t1.tree); A._lateInitializeOnceCheck(value, _s13_); t1.__HtmlParser__initialPhase = result; value = result; } value = t1.__HtmlParser_phase = value; } newToken = value.processEndTag$1(token); break; } } } return newToken; } }; A.AfterBodyPhase.prototype = { processStartTag$1(token) { var t2, t3, t1 = token.name; if (t1 === "html") return this.parser.get$_inBodyPhase().processStartTag$1(token); t2 = this.parser; t3 = type$.dynamic; t2.parseError$3(token.span, "unexpected-start-tag-after-body", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); t2.__HtmlParser_phase = t2.get$_inBodyPhase(); return token; }, processEndTag$1(token) { var t2, t3, t1 = token.name; if (t1 === "html") { this.endTagHtml$1(token); return null; } t2 = this.parser; t3 = type$.dynamic; t2.parseError$3(token.span, "unexpected-end-tag-after-body", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); t2.__HtmlParser_phase = t2.get$_inBodyPhase(); return token; }, processEOF$0() { return false; }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, t1.openElements[0]); return null; }, processCharacters$1(token) { var t1 = this.parser; t1.parseError$2(token.span, "unexpected-char-after-body"); t1.__HtmlParser_phase = t1.get$_inBodyPhase(); return token; }, endTagHtml$1(token) { var t1, t2, value; for (t1 = this.tree.openElements, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); t2.moveNext$0();) if (t2.__internal$_current.localName === "html") break; t1 = this.parser; value = t1.__HtmlParser__afterAfterBodyPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_afterAfterBodyPhase"); value = t1.__HtmlParser__afterAfterBodyPhase = new A.AfterAfterBodyPhase(t1, t1.tree); } t1.__HtmlParser_phase = value; } }; A.InFramesetPhase.prototype = { processStartTag$1(token) { var t2, _this = this, t1 = token.name; switch (t1) { case "html": return _this.startTagHtml$1(token); case "frameset": _this.tree.insertElement$1(token); return null; case "frame": t1 = _this.tree; t1.insertElement$1(token); t1.openElements.pop(); return null; case "noframes": return _this.parser.get$_inBodyPhase().processStartTag$1(token); default: t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-start-tag-in-frameset", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } }, processEndTag$1(token) { var value, t2, _this = this, t1 = token.name; switch (t1) { case "frameset": t1 = _this.tree.openElements; if (B.JSArray_methods.get$last(t1).localName === "html") _this.parser.parseError$2(token.span, string$.x75nexpef); else t1.pop(); t1 = B.JSArray_methods.get$last(t1).localName; if (t1 !== "frameset") { t1 = _this.parser; value = t1.__HtmlParser__afterFramesetPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_afterFramesetPhase"); value = t1.__HtmlParser__afterFramesetPhase = new A.AfterFramesetPhase(t1, t1.tree); } t1.__HtmlParser_phase = value; } return null; default: t2 = type$.dynamic; _this.parser.parseError$3(token.span, "unexpected-end-tag-in-frameset", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } }, processEOF$0() { var last = B.JSArray_methods.get$last(this.tree.openElements); if (last.localName !== "html") this.parser.parseError$2(last.sourceSpan, "eof-in-frameset"); return false; }, processCharacters$1(token) { this.parser.parseError$2(token.span, "unexpected-char-in-frameset"); return null; } }; A.AfterFramesetPhase.prototype = { processStartTag$1(token) { var t2, t1 = token.name; switch (t1) { case "html": return this.startTagHtml$1(token); case "noframes": return this.parser.get$_inHeadPhase().processStartTag$1(token); default: t2 = type$.dynamic; this.parser.parseError$3(token.span, "unexpected-start-tag-after-frameset", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t2, t2)); return null; } }, processEndTag$1(token) { var value, t3, t1 = token.name, t2 = this.parser; switch (t1) { case "html": value = t2.__HtmlParser__afterAfterFramesetPhase; if (value === $) { A._lateInitializeOnceCheck(value, "_afterAfterFramesetPhase"); value = t2.__HtmlParser__afterAfterFramesetPhase = new A.AfterAfterFramesetPhase(t2, t2.tree); } t2.__HtmlParser_phase = value; return null; default: t3 = type$.dynamic; t2.parseError$3(token.span, "unexpected-end-tag-after-frameset", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); return null; } }, processEOF$0() { return false; }, processCharacters$1(token) { this.parser.parseError$2(token.span, "unexpected-char-after-frameset"); return null; } }; A.AfterAfterBodyPhase.prototype = { processStartTag$1(token) { var t2, t3, t1 = token.name; if (t1 === "html") return this.parser.get$_inBodyPhase().processStartTag$1(token); t2 = this.parser; t3 = type$.dynamic; t2.parseError$3(token.span, "expected-eof-but-got-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); t2.__HtmlParser_phase = t2.get$_inBodyPhase(); return token; }, processEOF$0() { return false; }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, A._lateReadCheck(t1.__TreeBuilder_document, "document")); return null; }, processSpaceCharacters$1(token) { return this.parser.get$_inBodyPhase().processSpaceCharacters$1(token); }, processCharacters$1(token) { var t1 = this.parser; t1.parseError$2(token.span, "expected-eof-but-got-char"); t1.__HtmlParser_phase = t1.get$_inBodyPhase(); return token; }, processEndTag$1(token) { var t1 = this.parser, t2 = type$.dynamic; t1.parseError$3(token.span, "expected-eof-but-got-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t2, t2)); t1.__HtmlParser_phase = t1.get$_inBodyPhase(); return token; } }; A.AfterAfterFramesetPhase.prototype = { processStartTag$1(token) { var t3, t1 = token.name, t2 = this.parser; switch (t1) { case "html": return t2.get$_inBodyPhase().processStartTag$1(token); case "noframes": return t2.get$_inHeadPhase().processStartTag$1(token); default: t3 = type$.dynamic; t2.parseError$3(token.span, "expected-eof-but-got-start-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", t1], t3, t3)); return null; } }, processEOF$0() { return false; }, processComment$1(token) { var t1 = this.tree; t1.insertComment$2(token, A._lateReadCheck(t1.__TreeBuilder_document, "document")); return null; }, processSpaceCharacters$1(token) { return this.parser.get$_inBodyPhase().processSpaceCharacters$1(token); }, processCharacters$1(token) { this.parser.parseError$2(token.span, "expected-eof-but-got-char"); return null; }, processEndTag$1(token) { var t1 = type$.dynamic; this.parser.parseError$3(token.span, "expected-eof-but-got-end-tag", A.LinkedHashMap_LinkedHashMap$_literal(["name", token.name], t1, t1)); return null; } }; A.ParseError.prototype = { get$message(_) { var t1 = B.Map_ARy3D.$index(0, this.errorCode); t1.toString; return A.formatStr(t1, this.data); }, toString$0(_) { var t2, res, t1 = this.span; t1.toString; t2 = B.Map_ARy3D.$index(0, this.errorCode); t2.toString; res = t1.message$2$color(0, A.formatStr(t2, this.data), null); return t1.file.url == null ? "ParserError on " + res : "On " + res; }, $isException: 1 }; A.ReparseException.prototype = {}; A.ElementCssClassSet.prototype = { readClasses$0() { var t2, _i, trimmed, s = A.LinkedHashSet_LinkedHashSet(type$.String), t1 = this._css_class_set$_element; for (t1 = t1.get$className(t1).split(" "), t2 = t1.length, _i = 0; _i < t2; ++_i) { trimmed = J.trim$0$s(t1[_i]); if (trimmed.length !== 0) s.add$1(0, trimmed); } return s; } }; A._CssClassSetImpl.prototype = { toString$0(_) { return this.readClasses$0().join$1(0, " "); }, get$iterator(_) { var t1 = this.readClasses$0(); return A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); }, get$length(_) { return this.readClasses$0()._collection$_length; }, contains$1(_, value) { return this.readClasses$0().contains$1(0, value); }, toSet$0(_) { return this.readClasses$0().toSet$0(0); }, add$1(_, value) { var s = this.readClasses$0(), ret = new A._CssClassSetImpl_add_closure(value).call$1(s), t1 = s.join$1(0, " "); this._css_class_set$_element.attributes.$indexSet(0, "class", t1); return ret; }, remove$1(_, value) { var s, result, t1; if (typeof value != "string") return false; s = this.readClasses$0(); result = s.remove$1(0, value); t1 = s.join$1(0, " "); this._css_class_set$_element.attributes.$indexSet(0, "class", t1); return result; } }; A._CssClassSetImpl_add_closure.prototype = { call$1(s) { return s.add$1(0, this.value); }, $signature: 1240 }; A.EncodingBytes.prototype = { set$_encoding_parser$_position(_, value) { if (this.__position >= this._encoding_parser$_bytes.length) throw A.wrapException(A.StateError$("No more elements")); this.__position = value; }, get$_encoding_parser$_position(_) { var t1 = this.__position; if (t1 >= this._encoding_parser$_bytes.length) throw A.wrapException(A.StateError$("No more elements")); if (t1 >= 0) return t1; else return 0; }, _skipChars$1(skipChars) { var p, t1, t2, c, _this = this; if (skipChars == null) skipChars = A.constants__isWhitespace$closure(); p = _this.get$_encoding_parser$_position(_this); for (t1 = _this._encoding_parser$_bytes, t2 = t1.length; p < t2;) { c = t1[p]; if (!skipChars.call$1(c)) { _this.__position = p; return c; } ++p; } _this.__position = p; return null; }, _skipChars$0() { return this._skipChars$1(null); }, _skipUntil$1(untilChars) { var t1, t2, c, _this = this, p = _this.get$_encoding_parser$_position(_this); for (t1 = _this._encoding_parser$_bytes, t2 = t1.length; p < t2;) { c = t1[p]; if (untilChars.call$1(c)) { _this.__position = p; return c; } ++p; } return null; }, _jumpTo$1(bytes) { var _this = this, newPosition = B.JSString_methods.indexOf$2(_this._encoding_parser$_bytes, bytes, _this.get$_encoding_parser$_position(_this)); if (newPosition >= 0) { _this.__position = newPosition + bytes.length - 1; return true; } else throw A.wrapException(A.StateError$("No more elements")); }, _slice$2(start, end) { if (end == null) end = this._encoding_parser$_bytes.length; if (end < 0) end += this._encoding_parser$_bytes.length; return B.JSString_methods.substring$2(this._encoding_parser$_bytes, start, end); }, _slice$1(start) { return this._slice$2(start, null); } }; A.ContentAttrParser.prototype = { parse$0(_) { var quoteMark, oldPosition, oldPosition0, t1, t2, exception; try { t1 = this.data; t1._jumpTo$1("charset"); t1.set$_encoding_parser$_position(0, t1.get$_encoding_parser$_position(t1) + 1); t1._skipChars$0(); t2 = t1._encoding_parser$_bytes; if (t2[t1.get$_encoding_parser$_position(t1)] !== "=") return null; t1.set$_encoding_parser$_position(0, t1.get$_encoding_parser$_position(t1) + 1); t1._skipChars$0(); if (t2[t1.get$_encoding_parser$_position(t1)] === '"' || t2[t1.get$_encoding_parser$_position(t1)] === "'") { quoteMark = t2[t1.get$_encoding_parser$_position(t1)]; t1.set$_encoding_parser$_position(0, t1.get$_encoding_parser$_position(t1) + 1); oldPosition = t1.get$_encoding_parser$_position(t1); t1._jumpTo$1(quoteMark); t1 = t1._slice$2(oldPosition, t1.get$_encoding_parser$_position(t1)); return t1; } else { oldPosition0 = t1.get$_encoding_parser$_position(t1); try { t1._skipUntil$1(A.constants__isWhitespace$closure()); t2 = t1._slice$2(oldPosition0, t1.get$_encoding_parser$_position(t1)); return t2; } catch (exception) { if (A.unwrapException(exception) instanceof A.StateError) { t1 = t1._slice$1(oldPosition0); return t1; } else throw exception; } } } catch (exception) { if (A.unwrapException(exception) instanceof A.StateError) return null; else throw exception; } } }; A.HtmlInputStream.prototype = { reset$0(_) { var i, rawChars, t1, t2, skipNewline, wasSurrogatePair, c, t3, isSurrogatePair, _this = this; _this.errors = A.ListQueue$(null, type$.String); i = _this._html_input_stream$_offset = 0; _this._chars = A._setArrayType([], type$.JSArray_int); rawChars = _this._rawChars; if (rawChars == null) { t1 = _this.charEncodingName; t1.toString; t2 = _this._rawBytes; t2.toString; rawChars = _this._rawChars = A._decodeBytes(t1, t2); } for (t1 = rawChars._string, t2 = t1.length, skipNewline = false, wasSurrogatePair = false; i < t2; ++i) { c = B.JSString_methods._codeUnitAt$1(t1, i); if (skipNewline) { if (c === 10) { skipNewline = false; continue; } skipNewline = false; } t3 = i + 1; isSurrogatePair = t3 < rawChars.get$length(rawChars) && (rawChars.$index(0, i) & 64512) === 55296 && (rawChars.$index(0, t3) & 64512) === 56320; if (!isSurrogatePair && !wasSurrogatePair) if (A._invalidUnicode(c)) { _this.errors._add$1(0, "invalid-codepoint"); if (55296 <= c && c <= 57343) c = 65533; } if (c === 13) { skipNewline = true; c = 10; } _this._chars.push(c); wasSurrogatePair = isSurrogatePair; } _this.fileInfo = A.SourceFile$decoded(_this._chars, _this.sourceUrl); }, changeEncoding$1(newEncoding) { var t1 = A.StateError$("cannot change encoding when parsing a String."); throw A.wrapException(t1); }, char$0() { var t3, t4, _this = this, t1 = _this._html_input_stream$_offset, t2 = _this._chars; if (t1 >= t2.length) return null; t1 = _this._isSurrogatePair$2(t2, t1); t2 = _this._chars; t3 = _this._html_input_stream$_offset; t4 = t3 + 1; if (t1) { _this._html_input_stream$_offset = t4; t1 = t2[t3]; _this._html_input_stream$_offset = t4 + 1; t4 = A.String_String$fromCharCodes(A._setArrayType([t1, t2[t4]], type$.JSArray_int), 0, null); t1 = t4; } else { _this._html_input_stream$_offset = t4; t1 = A.Primitives_stringFromCharCode(t2[t3]); } return t1; }, peekChar$0() { var t3, _this = this, t1 = _this._html_input_stream$_offset, t2 = _this._chars; if (t1 >= t2.length) return null; t1 = _this._isSurrogatePair$2(t2, t1); t2 = _this._chars; t3 = _this._html_input_stream$_offset; return t1 ? A.String_String$fromCharCodes(A._setArrayType([t2[t3], t2[t3 + 1]], type$.JSArray_int), 0, null) : A.Primitives_stringFromCharCode(t2[t3]); }, _isSurrogatePair$2(chars, i) { var t1 = i + 1, t2 = J.getInterceptor$asx(chars); return t1 < t2.get$length(chars) && (t2.$index(chars, i) & 64512) === 55296 && (t2.$index(chars, t1) & 64512) === 56320; }, charsUntil$2(characters, opposite) { var c, t1, _this = this, start = _this._html_input_stream$_offset; while (true) { c = _this.peekChar$0(); if (c != null) t1 = A.stringContainsUnchecked(characters, c, 0) === opposite; else t1 = false; if (!t1) break; _this._html_input_stream$_offset = _this._html_input_stream$_offset + c.length; } return A.String_String$fromCharCodes(B.JSArray_methods.sublist$2(_this._chars, start, _this._html_input_stream$_offset), 0, null); }, charsUntil$1(characters) { return this.charsUntil$2(characters, false); }, unget$1(ch) { if (ch != null) this._html_input_stream$_offset = this._html_input_stream$_offset - ch.length; } }; A.ListProxy.prototype = { remove$1(_, item) { return B.JSArray_methods.remove$1(this._list_proxy$_list, item); }, get$length(_) { return this._list_proxy$_list.length; }, get$iterator(_) { var t1 = this._list_proxy$_list; return new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, $index(_, index) { return this._list_proxy$_list[index]; }, $indexSet(_, index, value) { this._list_proxy$_list[index] = value; }, set$length(_, value) { B.JSArray_methods.set$length(this._list_proxy$_list, value); }, add$1(_, value) { this._list_proxy$_list.push(value); }, insert$2(_, index, item) { return B.JSArray_methods.insert$2(this._list_proxy$_list, index, item); }, addAll$1(_, collection) { B.JSArray_methods.addAll$1(this._list_proxy$_list, collection); }, insertAll$2(_, index, iterable) { B.JSArray_methods.insertAll$2(this._list_proxy$_list, index, iterable); }, removeAt$1(_, index) { return B.JSArray_methods.removeAt$1(this._list_proxy$_list, index); }, removeRange$2(_, start, $length) { B.JSArray_methods.removeRange$2(this._list_proxy$_list, start, $length); } }; A.SelectorEvaluator.prototype = { querySelector$2(_, root, selector) { var t1, t2, t3, t4, t5, t6, result; for (t1 = root.get$nodes(root), t1 = t1.get$iterator(t1), t2 = new A.WhereTypeIterator(t1, type$.WhereTypeIterator_Element), t3 = selector.selectors, t4 = this.get$visitSelector(), t5 = type$.Element_3; t2.moveNext$0();) { t6 = t5._as(t1.get$current(t1)); this._query_selector$_element = t6; if (B.JSArray_methods.any$1(t3, t4)) return t6; result = this.querySelector$2(0, t6, selector); if (result != null) return result; } return null; }, querySelectorAll$3(_, root, selector, results) { var t1, t2, t3, t4, t5, t6; for (t1 = root.get$nodes(root), t1 = t1.get$iterator(t1), t2 = new A.WhereTypeIterator(t1, type$.WhereTypeIterator_Element), t3 = selector.selectors, t4 = this.get$visitSelector(), t5 = type$.Element_3; t2.moveNext$0();) { t6 = t5._as(t1.get$current(t1)); this._query_selector$_element = t6; if (B.JSArray_methods.any$1(t3, t4)) results.push(t6); this.querySelectorAll$3(0, t6, selector, results); } }, visitSelector$1(selector) { var t1, t2, result, combinator, parentNode, t3, combinator0, _this = this, old = _this._query_selector$_element; for (t1 = selector.simpleSelectorSequences, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), result = true, combinator = null; t2.moveNext$0();) { t1 = t2.__internal$_current; if (combinator == null) result = t1.simpleSelector.visit$1(_this); else if (combinator === 514) { do { parentNode = _this._query_selector$_element.parentNode; t3 = parentNode instanceof A.Element ? parentNode : null; _this._query_selector$_element = t3; } while (t3 != null && !t1.simpleSelector.visit$1(_this)); if (_this._query_selector$_element == null) result = false; } else if (combinator === 517) { do { t3 = _this._query_selector$_element; t3 = t3.get$previousElementSibling(t3); _this._query_selector$_element = t3; } while (t3 != null && !t1.simpleSelector.visit$1(_this)); if (_this._query_selector$_element == null) result = false; } if (!result) break; combinator0 = t1.combinator; switch (combinator0) { case 515: t1 = _this._query_selector$_element; _this._query_selector$_element = t1.get$previousElementSibling(t1); break; case 516: parentNode = _this._query_selector$_element.parentNode; _this._query_selector$_element = parentNode instanceof A.Element ? parentNode : null; break; case 514: case 517: combinator = combinator0; break; case 513: break; default: throw A.wrapException(_this._unsupported$1(selector)); } if (_this._query_selector$_element == null) { result = false; break; } } _this._query_selector$_element = old; return result; }, _unimplemented$1(selector) { return new A.UnimplementedError("'" + selector.toString$0(0) + "' selector of type " + A.getRuntimeType(selector).toString$0(0) + " is not implemented"); }, _unsupported$1(selector) { return new A.FormatException("'" + selector.toString$0(0) + "' is not a valid selector", null, null); }, visitPseudoClassSelector$1(selector) { var _this = this, t1 = selector._visitor$_name; switch (t1.get$name(t1)) { case "root": t1 = _this._query_selector$_element; return t1.localName === "html" && t1.parentNode == null; case "empty": t1 = _this._query_selector$_element; t1 = t1.get$nodes(t1); return t1.any$1(t1, new A.SelectorEvaluator_visitPseudoClassSelector_closure()); case "blank": t1 = _this._query_selector$_element; t1 = t1.get$nodes(t1); return t1.any$1(t1, new A.SelectorEvaluator_visitPseudoClassSelector_closure0()); case "first-child": t1 = _this._query_selector$_element; return t1.get$previousElementSibling(t1) == null; case "last-child": t1 = _this._query_selector$_element; return t1.get$nextElementSibling(t1) == null; case "only-child": t1 = _this._query_selector$_element; if (t1.get$previousElementSibling(t1) == null) { t1 = _this._query_selector$_element; t1 = t1.get$nextElementSibling(t1) == null; } else t1 = false; return t1; case "link": return _this._query_selector$_element.attributes.$index(0, "href") != null; case "visited": return false; } if (A.SelectorEvaluator__isLegacyPsuedoClass(t1.get$name(t1))) return false; throw A.wrapException(_this._unimplemented$1(selector)); }, visitPseudoElementSelector$1(selector) { var t1 = selector._visitor$_name; if (A.SelectorEvaluator__isLegacyPsuedoClass(t1.get$name(t1))) return false; throw A.wrapException(this._unimplemented$1(selector)); }, visitPseudoElementFunctionSelector$1(s) { return A.throwExpression(this._unimplemented$1(s)); }, visitPseudoClassFunctionSelector$1(selector) { var exprs, literal, $parent, t2, toMatch, lang, _this = this, t1 = selector._visitor$_name; switch (t1.get$name(t1)) { case "nth-child": exprs = type$.SelectorExpression._as(selector.argument).expressions; if (exprs.length === 1 && exprs[0] instanceof A.LiteralTerm) { literal = type$.LiteralTerm._as(exprs[0]); $parent = _this._query_selector$_element.parentNode; if ($parent != null) { t1 = A._asNumS(literal.value); if (t1 > 0) { t2 = $parent.get$nodes($parent); t1 = t2.indexOf$1(t2, _this._query_selector$_element) === t1; } else t1 = false; } else t1 = false; return t1; } break; case "lang": t1 = type$.SelectorExpression._as(selector.argument); t1 = t1.span; t1.toString; toMatch = A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._file$_end), 0, null); lang = A.SelectorEvaluator__getInheritedLanguage(_this._query_selector$_element); return lang != null && B.JSString_methods.startsWith$1(lang, toMatch); } throw A.wrapException(_this._unimplemented$1(selector)); }, visitNamespaceSelector$1(selector) { if (!type$.nullable_SimpleSelector._as(selector._visitor$_name).visit$1(this)) return false; if (selector._namespace instanceof A.Wildcard) return true; if (selector.get$namespace() === "") return this._query_selector$_element.namespaceUri == null; throw A.wrapException(this._unimplemented$1(selector)); }, visitAttributeSelector$1(selector) { var select, t1 = selector._visitor$_name, value = this._query_selector$_element.attributes.$index(0, t1.get$name(t1).toLowerCase()); if (value == null) return false; t1 = selector._op; if (t1 === 535) return true; select = A.S(selector.value); switch (t1) { case 28: return value === select; case 530: return B.JSArray_methods.any$1(A._setArrayType(value.split(" "), type$.JSArray_String), new A.SelectorEvaluator_visitAttributeSelector_closure(select)); case 531: if (B.JSString_methods.startsWith$1(value, select)) { t1 = select.length; t1 = value.length === t1 || value[t1] === "-"; } else t1 = false; return t1; case 532: return B.JSString_methods.startsWith$1(value, select); case 533: return B.JSString_methods.endsWith$1(value, select); case 534: return B.JSString_methods.contains$1(value, select); default: throw A.wrapException(this._unsupported$1(selector)); } } }; A.SelectorEvaluator_visitPseudoClassSelector_closure.prototype = { call$1(n) { var t1; if (!(n instanceof A.Element)) if (n instanceof A.Text0) { t1 = J.toString$0$(n._dom$_data); n._dom$_data = t1; t1 = t1.length !== 0; } else t1 = false; else t1 = true; return !t1; }, $signature: 421 }; A.SelectorEvaluator_visitPseudoClassSelector_closure0.prototype = { call$1(n) { var t1; if (!(n instanceof A.Element)) if (n instanceof A.Text0) { t1 = J.toString$0$(n._dom$_data); n._dom$_data = t1; t1 = new A.Runes(t1).any$1(0, new A.SelectorEvaluator_visitPseudoClassSelector__closure()); } else t1 = false; else t1 = true; return !t1; }, $signature: 421 }; A.SelectorEvaluator_visitPseudoClassSelector__closure.prototype = { call$1(r) { return !A.isWhitespaceCC(r); }, $signature: 178 }; A.SelectorEvaluator_visitAttributeSelector_closure.prototype = { call$1(v) { return v.length !== 0 && v === this.select; }, $signature: 52 }; A.Token0.prototype = {}; A.TagToken.prototype = { get$name(receiver) { return this.name; } }; A.StartTagToken.prototype = { get$kind(_) { return 2; } }; A.EndTagToken.prototype = { get$kind(_) { return 3; } }; A.StringToken.prototype = { get$data(_) { var _this = this, t1 = _this._token$_string; if (t1 == null) { t1 = _this._token$_string = J.toString$0$(_this._token$_buffer); _this._token$_buffer = null; } return t1; } }; A.ParseErrorToken.prototype = { get$kind(_) { return 6; } }; A.CharactersToken.prototype = { get$kind(_) { return 1; } }; A.SpaceCharactersToken.prototype = { get$kind(_) { return 0; } }; A.CommentToken.prototype = { get$kind(_) { return 4; } }; A.DoctypeToken.prototype = { get$kind(_) { return 5; }, get$name(receiver) { return this.name; } }; A.TagAttribute.prototype = { get$value(_) { return A._lateReadCheck(this.__TagAttribute_value, "value"); }, get$name(receiver) { return this.name; } }; A.entitiesByFirstChar_closure.prototype = { call$0() { var t1, t2, result = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_String); for (t1 = J.get$iterator$ax(B.Map_0uQj.get$keys(B.Map_0uQj)); t1.moveNext$0();) { t2 = t1.get$current(t1); J.add$1$ax(result.putIfAbsent$2(0, t2[0], new A.entitiesByFirstChar__closure()), t2); } return result; }, $signature: 1237 }; A.entitiesByFirstChar__closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_String); }, $signature: 1234 }; A.HtmlTokenizer.prototype = { get$state(_) { return A._lateReadCheck(this.__HtmlTokenizer_state, "state"); }, get$current(_) { var t1 = this._tokenizer$_current; t1.toString; return t1; }, _markAttributeEnd$1(offset) { var t1 = this._attributes; t1.toString; B.JSArray_methods.get$last(t1).__TagAttribute_value = this._attributeValue.toString$0(0); }, _markAttributeValueStart$1(offset) { }, _markAttributeValueEnd$1(offset) { this._markAttributeEnd$1(offset); }, _addAttribute$1($name) { var t2, _this = this, t1 = _this._attributes; if (t1 == null) t1 = _this._attributes = A._setArrayType([], type$.JSArray_TagAttribute); t2 = _this._attributeName; t2._contents = ""; t2._contents = A.S($name); _this._attributeValue._contents = ""; t1.push(new A.TagAttribute()); }, moveNext$0() { var t3, _this = this, t1 = _this.stream, t2 = _this.tokenQueue; while (true) { t3 = t1.errors; if (!(t3._head === t3._tail && t2._head === t2._tail)) break; if (!_this.state$0(0)) { _this._tokenizer$_current = null; return false; } } if (!t3.get$isEmpty(t3)) { t1 = t1.errors.removeFirst$0(); _this._tokenizer$_current = new A.ParseErrorToken(null, t1 == null ? new A.StringBuffer("") : null, t1); } else _this._tokenizer$_current = t2.removeFirst$0(); return true; }, reset$0(_) { var _this = this; _this.__HtmlTokenizer__lastOffset = 0; _this.tokenQueue.clear$0(0); _this.currentToken = null; _this._tokenizer$_buffer._contents = ""; _this._attributeNames = _this._attributes = null; _this.__HtmlTokenizer_state = _this.get$dataState(); }, _addToken$1(token) { this.tokenQueue._add$1(0, token); }, consumeNumberEntity$1(isHex) { var allowed, radix, charStack, t1, c, charAsInt, char, t2, _this = this, _null = null, _s36_ = "illegal-codepoint-for-numeric-entity"; if (isHex) { allowed = A.constants__isHexDigit$closure(); radix = 16; } else { allowed = A.constants__isDigit$closure(); radix = 10; } charStack = []; t1 = _this.stream; c = t1.char$0(); while (true) { if (!(allowed.call$1(c) && c != null)) break; charStack.push(c); c = t1.char$0(); } charAsInt = A.int_parse(B.JSArray_methods.join$0(charStack), radix); char = B.Map_DmM2k.$index(0, charAsInt); if (char != null) { t2 = type$.dynamic; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["charAsInt", charAsInt], t2, t2); _this._addToken$1(new A.ParseErrorToken(t2, _null, _s36_)); } else if (55296 <= charAsInt && charAsInt <= 57343 || charAsInt > 1114111) { t2 = type$.dynamic; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["charAsInt", charAsInt], t2, t2); _this._addToken$1(new A.ParseErrorToken(t2, _null, _s36_)); char = "\ufffd"; } else { if (!(1 <= charAsInt && charAsInt <= 8)) if (!(14 <= charAsInt && charAsInt <= 31)) if (!(127 <= charAsInt && charAsInt <= 159)) t2 = 64976 <= charAsInt && charAsInt <= 65007 || B.JSArray_methods.contains$1(B.List_QLF, charAsInt); else t2 = true; else t2 = true; else t2 = true; if (t2) { t2 = type$.dynamic; t2 = A.LinkedHashMap_LinkedHashMap$_literal(["charAsInt", charAsInt], t2, t2); _this._addToken$1(new A.ParseErrorToken(t2, _null, _s36_)); } char = A.String_String$fromCharCodes(A._setArrayType([charAsInt], type$.JSArray_int), 0, _null); } if (c !== ";") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "numeric-entity-without-semicolon")); t1.unget$1(c); } return char; }, consumeEntity$2$allowedChar$fromAttribute(allowedChar, fromAttribute) { var t2, output, hex, t3, filteredEntityList, entityName, entityLen, possibleEntityName, token, _this = this, _null = null, t1 = _this.stream, charStack = A._setArrayType([t1.char$0()], type$.JSArray_nullable_String); if (!A.isWhitespace(charStack[0])) { t2 = charStack[0]; t2 = t2 === "<" || t2 === "&" || t2 == null || allowedChar === t2; } else t2 = true; if (t2) { t1.unget$1(charStack[0]); output = "&"; } else { t2 = charStack[0]; if (t2 === "#") { charStack.push(t1.char$0()); if (B.JSArray_methods.get$last(charStack) === "x" || B.JSArray_methods.get$last(charStack) === "X") { charStack.push(t1.char$0()); hex = true; } else hex = false; if (!(hex && A.isHexDigit(B.JSArray_methods.get$last(charStack)))) t2 = !hex && A.isDigit(B.JSArray_methods.get$last(charStack)); else t2 = true; if (t2) { t1.unget$1(B.JSArray_methods.get$last(charStack)); output = _this.consumeNumberEntity$1(hex); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-numeric-entity")); t1.unget$1(charStack.pop()); output = "&" + B.JSArray_methods.join$0(charStack); } } else { t3 = $.$get$entitiesByFirstChar(); t2.toString; filteredEntityList = J.$index$asx(t3, t2); if (filteredEntityList == null) filteredEntityList = B.List_empty0; for (; B.JSArray_methods.get$last(charStack) != null;) { t2 = J.where$1$ax(filteredEntityList, new A.HtmlTokenizer_consumeEntity_closure(B.JSArray_methods.join$0(charStack))); filteredEntityList = A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); if (filteredEntityList.length === 0) break; charStack.push(t1.char$0()); } entityLen = charStack.length - 1; while (true) { if (!(entityLen > 1)) { entityName = _null; break; } possibleEntityName = B.JSArray_methods.join$0(B.JSArray_methods.sublist$2(charStack, 0, entityLen)); if (B.Map_0uQj.containsKey$1(0, possibleEntityName)) { entityName = possibleEntityName; break; } --entityLen; } if (entityName != null) { t2 = entityName[entityName.length - 1] !== ";"; if (t2) _this._addToken$1(new A.ParseErrorToken(_null, _null, "named-entity-without-semicolon")); if (t2) if (fromAttribute) { t2 = charStack[entityLen]; t2 = A.isLetter(t2) || A.isDigit(t2) || charStack[entityLen] === "="; } else t2 = false; else t2 = false; if (t2) { t1.unget$1(charStack.pop()); output = "&" + B.JSArray_methods.join$0(charStack); } else { output = B.Map_0uQj.$index(0, entityName); t1.unget$1(charStack.pop()); output = A.S(output) + B.JSArray_methods.join$0(A.slice(charStack, entityLen, _null)); } } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-named-entity")); t1.unget$1(charStack.pop()); output = "&" + B.JSArray_methods.join$0(charStack); } } } if (fromAttribute) _this._attributeValue._contents += output; else { if (A.isWhitespace(output)) token = new A.SpaceCharactersToken(_null, output); else token = new A.CharactersToken(_null, output); _this._addToken$1(token); } }, consumeEntity$0() { return this.consumeEntity$2$allowedChar$fromAttribute(null, false); }, emitCurrentToken$0() { var t2, token, t3, _i, attr, t4, t5, _this = this, _null = null, t1 = _this.currentToken; t1.toString; if (t1 instanceof A.TagToken) { t2 = t1.name; t1.name = t2 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t2), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); if (t1 instanceof A.EndTagToken) { if (_this._attributes != null) _this._addToken$1(new A.ParseErrorToken(_null, _null, "attributes-in-end-tag")); if (t1.selfClosing) _this._addToken$1(new A.ParseErrorToken(_null, _null, "this-closing-flag-on-end-tag")); token = t1; } else if (t1 instanceof A.StartTagToken) { t1.data = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.Object, type$.String); t2 = _this._attributes; if (t2 != null) for (t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { attr = t2[_i]; t4 = t1.data; t5 = attr.name; t5.toString; t4.putIfAbsent$2(0, t5, new A.HtmlTokenizer_emitCurrentToken_closure(attr)); } token = t1; } else token = t1; _this._attributeNames = _this._attributes = null; } else token = t1; _this._addToken$1(token); _this.__HtmlTokenizer_state = _this.get$dataState(); }, dataState$0() { var chars, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "&") _this.__HtmlTokenizer_state = _this.get$entityDataState(); else if (data === "<") _this.__HtmlTokenizer_state = _this.get$tagOpenState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\x00")); } else if (data == null) return false; else if (A.isWhitespace(data)) { t1 = t1.charsUntil$2(" \n\r\t\f", true); _this._addToken$1(new A.SpaceCharactersToken(_null, data + t1)); } else { chars = t1.charsUntil$1("&<\x00"); _this._addToken$1(new A.CharactersToken(_null, data + chars)); } return true; }, entityDataState$0() { this.consumeEntity$0(); this.__HtmlTokenizer_state = this.get$dataState(); return true; }, rcdataState$0() { var chars, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "&") _this.__HtmlTokenizer_state = _this.get$characterReferenceInRcdata(); else if (data === "<") _this.__HtmlTokenizer_state = _this.get$rcdataLessThanSignState(); else if (data == null) return false; else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); } else if (A.isWhitespace(data)) { t1 = t1.charsUntil$2(" \n\r\t\f", true); _this._addToken$1(new A.SpaceCharactersToken(_null, data + t1)); } else { chars = t1.charsUntil$1("&<"); _this._addToken$1(new A.CharactersToken(_null, data + chars)); } return true; }, characterReferenceInRcdata$0() { this.consumeEntity$0(); this.__HtmlTokenizer_state = this.get$rcdataState(); return true; }, rawtextState$0() { var chars, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "<") _this.__HtmlTokenizer_state = _this.get$rawtextLessThanSignState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); } else if (data == null) return false; else { chars = t1.charsUntil$1("<\x00"); _this._addToken$1(new A.CharactersToken(_null, data + chars)); } return true; }, scriptDataState$0() { var chars, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "<") _this.__HtmlTokenizer_state = _this.get$scriptDataLessThanSignState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); } else if (data == null) return false; else { chars = t1.charsUntil$1("<\x00"); _this._addToken$1(new A.CharactersToken(_null, data + chars)); } return true; }, plaintextState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data == null) return false; else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); } else { t1 = t1.charsUntil$1("\x00"); _this._addToken$1(new A.CharactersToken(_null, data + t1)); } return true; }, tagOpenState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "!") _this.__HtmlTokenizer_state = _this.get$markupDeclarationOpenState(); else if (data === "/") _this.__HtmlTokenizer_state = _this.get$closeTagOpenState(); else if (A.isLetter(data)) { _this.currentToken = A.StartTagToken$(data, _null, _null, false); _this.__HtmlTokenizer_state = _this.get$tagNameState(); } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-tag-name-but-got-right-bracket")); _this._addToken$1(new A.CharactersToken(_null, "<>")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "?") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-tag-name-but-got-question-mark")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$bogusCommentState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-tag-name")); _this._addToken$1(new A.CharactersToken(_null, "<")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$dataState(); } return true; }, closeTagOpenState$0() { var t2, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isLetter(data)) { _this.currentToken = new A.EndTagToken(data, false); _this.__HtmlTokenizer_state = _this.get$tagNameState(); } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.expectc)); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-closing-tag-but-got-eof")); _this._addToken$1(new A.CharactersToken(_null, "") _this.emitCurrentToken$0(); else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-tag-name")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "/") _this.__HtmlTokenizer_state = _this.get$selfClosingStartTagState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.TagToken._as(_this.currentToken); t1.name = A.S(t1.name) + "\ufffd"; } else { t1 = type$.TagToken._as(_this.currentToken); t1.name = A.S(t1.name) + data; } return true; }, rcdataLessThanSignState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (data === "/") { _this._tokenizer$_buffer._contents = ""; _this.__HtmlTokenizer_state = _this.get$rcdataEndTagOpenState(); } else { _this._addToken$1(new A.CharactersToken(null, "<")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$rcdataState(); } return true; }, rcdataEndTagOpenState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (A.isLetter(data)) { _this._tokenizer$_buffer._contents += A.S(data); _this.__HtmlTokenizer_state = _this.get$rcdataEndTagNameState(); } else { _this._addToken$1(new A.CharactersToken(null, "" && appropriate) { _this.currentToken = new A.EndTagToken(_this._tokenizer$_buffer.toString$0(0), false); _this.emitCurrentToken$0(); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._tokenizer$_buffer; if (A.isLetter(data)) t2._contents += A.S(data); else { t2 = t2.toString$0(0); _this._addToken$1(new A.CharactersToken(null, "" && appropriate) { _this.currentToken = new A.EndTagToken(_this._tokenizer$_buffer.toString$0(0), false); _this.emitCurrentToken$0(); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._tokenizer$_buffer; if (A.isLetter(data)) t2._contents += A.S(data); else { t2 = t2.toString$0(0); _this._addToken$1(new A.CharactersToken(null, "" && appropriate) { _this.currentToken = new A.EndTagToken(_this._tokenizer$_buffer.toString$0(0), false); _this.emitCurrentToken$0(); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._tokenizer$_buffer; if (A.isLetter(data)) t2._contents += A.S(data); else { t2 = t2.toString$0(0); _this._addToken$1(new A.CharactersToken(null, "") { _this._addToken$1(new A.CharactersToken(_null, ">")); _this.__HtmlTokenizer_state = _this.get$scriptDataState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); } else if (data == null) _this.__HtmlTokenizer_state = _this.get$dataState(); else { _this._addToken$1(new A.CharactersToken(_null, data)); _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); } return true; }, scriptDataEscapedLessThanSignState$0() { var t2, _this = this, t1 = _this.stream, data = t1.char$0(); if (data === "/") { _this._tokenizer$_buffer._contents = ""; _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedEndTagOpenState(); } else if (A.isLetter(data)) { t1 = A.S(data); _this._addToken$1(new A.CharactersToken(null, "<" + t1)); t2 = _this._tokenizer$_buffer; t2._contents = ""; t2._contents = t1; _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapeStartState(); } else { _this._addToken$1(new A.CharactersToken(null, "<")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); } return true; }, scriptDataEscapedEndTagOpenState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (A.isLetter(data)) { t1 = _this._tokenizer$_buffer; t1._contents = ""; t1._contents = A.S(data); _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedEndTagNameState(); } else { _this._addToken$1(new A.CharactersToken(null, "" && appropriate) { _this.currentToken = new A.EndTagToken(_this._tokenizer$_buffer.toString$0(0), false); _this.emitCurrentToken$0(); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._tokenizer$_buffer; if (A.isLetter(data)) t2._contents += A.S(data); else { t2 = t2.toString$0(0); _this._addToken$1(new A.CharactersToken(null, "") { _this._addToken$1(new A.CharactersToken(data == null ? new A.StringBuffer("") : null, data)); if (_this._tokenizer$_buffer.toString$0(0).toLowerCase() === "script") _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); else _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); } else if (A.isLetter(data)) { _this._addToken$1(new A.CharactersToken(data == null ? new A.StringBuffer("") : null, data)); _this._tokenizer$_buffer._contents += A.S(data); } else { t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); } return true; }, scriptDataDoubleEscapedState$0() { var _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") { _this._addToken$1(new A.CharactersToken(_null, "-")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedDashState(); } else if (data === "<") { _this._addToken$1(new A.CharactersToken(_null, "<")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedLessThanSignState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-script-in-script")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else _this._addToken$1(new A.CharactersToken(_null, data)); return true; }, scriptDataDoubleEscapedDashState$0() { var _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") { _this._addToken$1(new A.CharactersToken(_null, "-")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedDashDashState(); } else if (data === "<") { _this._addToken$1(new A.CharactersToken(_null, "<")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedLessThanSignState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-script-in-script")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.CharactersToken(_null, data)); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } return true; }, scriptDataDoubleEscapedDashDashState$0() { var _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") _this._addToken$1(new A.CharactersToken(_null, "-")); else if (data === "<") { _this._addToken$1(new A.CharactersToken(_null, "<")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedLessThanSignState(); } else if (data === ">") { _this._addToken$1(new A.CharactersToken(_null, ">")); _this.__HtmlTokenizer_state = _this.get$scriptDataState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addToken$1(new A.CharactersToken(_null, "\ufffd")); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-script-in-script")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.CharactersToken(_null, data)); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } return true; }, scriptDataDoubleEscapedLessThanSignState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (data === "/") { _this._addToken$1(new A.CharactersToken(null, "/")); _this._tokenizer$_buffer._contents = ""; _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapeEndState(); } else { t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } return true; }, scriptDataDoubleEscapeEndState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data) || data === "/" || data === ">") { _this._addToken$1(new A.CharactersToken(data == null ? new A.StringBuffer("") : null, data)); if (_this._tokenizer$_buffer.toString$0(0).toLowerCase() === "script") _this.__HtmlTokenizer_state = _this.get$scriptDataEscapedState(); else _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } else if (A.isLetter(data)) { _this._addToken$1(new A.CharactersToken(data == null ? new A.StringBuffer("") : null, data)); _this._tokenizer$_buffer._contents += A.S(data); } else { t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$scriptDataDoubleEscapedState(); } return true; }, beforeAttributeNameState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) t1.charsUntil$2(" \n\r\t\f", true); else { t1 = data == null; if (!t1 && A.isLetter(data)) { _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else if (data === ">") _this.emitCurrentToken$0(); else if (data === "/") _this.__HtmlTokenizer_state = _this.get$selfClosingStartTagState(); else if (t1) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-attribute-name-but-got-eof")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (B.JSString_methods.contains$1("'\"=<", data)) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-character-in-attribute-name")); _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addAttribute$1("\ufffd"); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else { _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } } return true; }, attributeNameState$0() { var leavingThisState, emitToken, t2, attrName, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "=") { _this.__HtmlTokenizer_state = _this.get$beforeAttributeValueState(); leavingThisState = true; emitToken = false; } else if (A.isLetter(data)) { t2 = _this._attributeName; t2._contents += A.S(data); t2._contents += t1.charsUntil$2("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", true); leavingThisState = false; emitToken = false; } else if (data === ">") { leavingThisState = true; emitToken = true; } else { if (A.isWhitespace(data)) { _this.__HtmlTokenizer_state = _this.get$afterAttributeNameState(); leavingThisState = true; } else if (data === "/") { _this.__HtmlTokenizer_state = _this.get$selfClosingStartTagState(); leavingThisState = true; } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._attributeName._contents += "\ufffd"; leavingThisState = false; } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-attribute-name")); _this.__HtmlTokenizer_state = _this.get$dataState(); leavingThisState = true; } else { if (B.JSString_methods.contains$1("'\"<", data)) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-character-in-attribute-name")); _this._attributeName._contents += data; } else _this._attributeName._contents += data; leavingThisState = false; } emitToken = false; } if (leavingThisState) { _this._markAttributeEnd$1(-1); t1 = _this._attributeName._contents; attrName = A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t1.charCodeAt(0) == 0 ? t1 : t1), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); t1 = _this._attributes; t1.toString; B.JSArray_methods.get$last(t1).name = attrName; t1 = _this._attributeNames; if ((t1 == null ? _this._attributeNames = A.LinkedHashSet_LinkedHashSet$_empty(type$.String) : t1).contains$1(0, attrName)) _this._addToken$1(new A.ParseErrorToken(_null, _null, "duplicate-attribute")); _this._attributeNames.add$1(0, attrName); if (emitToken) _this.emitCurrentToken$0(); } return true; }, afterAttributeNameState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) t1.charsUntil$2(" \n\r\t\f", true); else if (data === "=") _this.__HtmlTokenizer_state = _this.get$beforeAttributeValueState(); else if (data === ">") _this.emitCurrentToken$0(); else { t1 = data == null; if (!t1 && A.isLetter(data)) { _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else if (data === "/") _this.__HtmlTokenizer_state = _this.get$selfClosingStartTagState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._addAttribute$1("\ufffd"); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else if (t1) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-end-of-tag-but-got-eof")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (B.JSString_methods.contains$1("'\"<", data)) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-character-after-attribute-name")); _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } else { _this._addAttribute$1(data); _this.__HtmlTokenizer_state = _this.get$attributeNameState(); } } return true; }, beforeAttributeValueState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) t1.charsUntil$2(" \n\r\t\f", true); else if (data === '"') { _this._markAttributeValueStart$1(0); _this.__HtmlTokenizer_state = _this.get$attributeValueDoubleQuotedState(); } else if (data === "&") { _this.__HtmlTokenizer_state = _this.get$attributeValueUnQuotedState(); t1.unget$1(data); _this._markAttributeValueStart$1(0); } else if (data === "'") { _this._markAttributeValueStart$1(0); _this.__HtmlTokenizer_state = _this.get$attributeValueSingleQuotedState(); } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.expecta)); _this.emitCurrentToken$0(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._markAttributeValueStart$1(-1); _this._attributeValue._contents += "\ufffd"; _this.__HtmlTokenizer_state = _this.get$attributeValueUnQuotedState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-attribute-value-but-got-eof")); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (B.JSString_methods.contains$1("=<`", data)) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "equals-in-unquoted-attribute-value")); _this._markAttributeValueStart$1(-1); _this._attributeValue._contents += data; _this.__HtmlTokenizer_state = _this.get$attributeValueUnQuotedState(); } else { _this._markAttributeValueStart$1(-1); _this._attributeValue._contents += data; _this.__HtmlTokenizer_state = _this.get$attributeValueUnQuotedState(); } return true; }, attributeValueDoubleQuotedState$0() { var t2, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === '"') { _this._markAttributeValueEnd$1(-1); _this._markAttributeEnd$1(0); _this.__HtmlTokenizer_state = _this.get$afterAttributeValueState(); } else if (data === "&") _this.consumeEntity$2$allowedChar$fromAttribute('"', true); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._attributeValue._contents += "\ufffd"; } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-attribute-value-double-quote")); _this._markAttributeValueEnd$1(-1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._attributeValue; t2._contents += data; t2._contents += t1.charsUntil$1('"&'); } return true; }, attributeValueSingleQuotedState$0() { var t2, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "'") { _this._markAttributeValueEnd$1(-1); _this._markAttributeEnd$1(0); _this.__HtmlTokenizer_state = _this.get$afterAttributeValueState(); } else if (data === "&") _this.consumeEntity$2$allowedChar$fromAttribute("'", true); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._attributeValue._contents += "\ufffd"; } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-attribute-value-single-quote")); _this._markAttributeValueEnd$1(-1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = _this._attributeValue; t2._contents += data; t2._contents += t1.charsUntil$1("'&"); } return true; }, attributeValueUnQuotedState$0() { var t2, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) { _this._markAttributeValueEnd$1(-1); _this.__HtmlTokenizer_state = _this.get$beforeAttributeNameState(); } else if (data === "&") _this.consumeEntity$2$allowedChar$fromAttribute(">", true); else if (data === ">") { _this._markAttributeValueEnd$1(-1); _this.emitCurrentToken$0(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-attribute-value-no-quotes")); _this._markAttributeValueEnd$1(-1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (B.JSString_methods.contains$1("\"'=<`", data)) { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.x75nexpeci)); _this._attributeValue._contents += data; } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); _this._attributeValue._contents += "\ufffd"; } else { t2 = _this._attributeValue; t2._contents += data; t2._contents += t1.charsUntil$1("&>\"'=<` \n\r\t\f"); } return true; }, afterAttributeValueState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) _this.__HtmlTokenizer_state = _this.get$beforeAttributeNameState(); else if (data === ">") _this.emitCurrentToken$0(); else if (data === "/") _this.__HtmlTokenizer_state = _this.get$selfClosingStartTagState(); else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-EOF-after-attribute-value")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.x75nexpecaa)); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeAttributeNameState(); } return true; }, selfClosingStartTagState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === ">") { type$.TagToken._as(_this.currentToken).selfClosing = true; _this.emitCurrentToken$0(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-EOF-after-solidus-in-tag")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.x75nexpecas)); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeAttributeNameState(); } return true; }, bogusCommentState$0() { var _this = this, t1 = _this.stream, data = t1.charsUntil$1(">"); data = A.stringReplaceAllUnchecked(data, "\x00", "\ufffd"); _this._addToken$1(new A.CommentToken(null, data)); t1.char$0(); _this.__HtmlTokenizer_state = _this.get$dataState(); return true; }, markupDeclarationOpenState$0() { var matched, _i, expected, char, t2, _this = this, t1 = _this.stream, charStack = A._setArrayType([t1.char$0()], type$.JSArray_nullable_String); if (B.JSArray_methods.get$last(charStack) === "-") { charStack.push(t1.char$0()); if (B.JSArray_methods.get$last(charStack) === "-") { _this.currentToken = new A.CommentToken(new A.StringBuffer(""), null); _this.__HtmlTokenizer_state = _this.get$commentStartState(); return true; } } else if (B.JSArray_methods.get$last(charStack) === "d" || B.JSArray_methods.get$last(charStack) === "D") { _i = 0; while (true) { if (!(_i < 6)) { matched = true; break; } expected = B.List_hbB[_i]; char = t1.char$0(); charStack.push(char); if (char != null) t2 = !A.stringContainsUnchecked(expected, char, 0); else t2 = true; if (t2) { matched = false; break; } ++_i; } if (matched) { _this.currentToken = new A.DoctypeToken(true); _this.__HtmlTokenizer_state = _this.get$doctypeState(); return true; } } else { if (B.JSArray_methods.get$last(charStack) === "[") { t2 = _this.parser; if (t2 != null) { t2 = t2.tree.openElements; t2 = t2.length !== 0 && B.JSArray_methods.get$last(t2).namespaceUri != _this.parser.tree.defaultNamespace; } else t2 = false; } else t2 = false; if (t2) { _i = 0; while (true) { if (!(_i < 6)) { matched = true; break; } expected = B.List_sDr[_i]; charStack.push(t1.char$0()); if (B.JSArray_methods.get$last(charStack) !== expected) { matched = false; break; } ++_i; } if (matched) { _this.__HtmlTokenizer_state = _this.get$cdataSectionState(); return true; } } } _this._addToken$1(new A.ParseErrorToken(null, null, "expected-dashes-or-doctype")); for (; charStack.length !== 0;) { t2 = charStack.pop(); if (t2 != null) t1._html_input_stream$_offset = t1._html_input_stream$_offset - t2.length; } _this.__HtmlTokenizer_state = _this.get$bogusCommentState(); return true; }, commentStartState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") _this.__HtmlTokenizer_state = _this.get$commentStartDashState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "incorrect-comment")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { type$.StringToken._as(_this.currentToken)._token$_buffer._contents += data; _this.__HtmlTokenizer_state = _this.get$commentState(); } return true; }, commentStartDashState$0() { var t1, t2, _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") _this.__HtmlTokenizer_state = _this.get$commentEndState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "-\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "incorrect-comment")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.StringToken._as(_this.currentToken)._token$_buffer; t2 = t1._contents += "-"; t1._contents = t2 + data; _this.__HtmlTokenizer_state = _this.get$commentState(); } return true; }, commentState$0() { var t2, _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (data === "-") _this.__HtmlTokenizer_state = _this.get$commentEndDashState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "\ufffd"; } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t2 = type$.StringToken._as(_this.currentToken); t2._token$_buffer._contents += data; t1 = t1.charsUntil$1("-\x00"); t2._token$_buffer._contents += t1; } return true; }, commentEndDashState$0() { var t1, t2, _this = this, _null = null, data = _this.stream.char$0(); if (data === "-") _this.__HtmlTokenizer_state = _this.get$commentEndState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "-\ufffd"; _this.__HtmlTokenizer_state = _this.get$commentState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment-end-dash")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.StringToken._as(_this.currentToken)._token$_buffer; t2 = t1._contents += "-"; t1._contents = t2 + data; _this.__HtmlTokenizer_state = _this.get$commentState(); } return true; }, commentEndState$0() { var t1, t2, _this = this, _null = null, data = _this.stream.char$0(); if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "--\ufffd"; _this.__HtmlTokenizer_state = _this.get$commentState(); } else if (data === "!") { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.x75nexpeb)); _this.__HtmlTokenizer_state = _this.get$commentEndBangState(); } else if (data === "-") { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.x75nexped)); t1 = type$.StringToken._as(_this.currentToken); data.toString; t1._token$_buffer._contents += data; } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment-double-dash")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-comment")); t1 = type$.StringToken._as(_this.currentToken)._token$_buffer; t2 = t1._contents += "--"; t1._contents = t2 + data; _this.__HtmlTokenizer_state = _this.get$commentState(); } return true; }, commentEndBangState$0() { var t1, t2, _this = this, _null = null, data = _this.stream.char$0(); if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "-") { type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "--!"; _this.__HtmlTokenizer_state = _this.get$commentEndDashState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.StringToken._as(_this.currentToken)._token$_buffer._contents += "--!\ufffd"; _this.__HtmlTokenizer_state = _this.get$commentState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-comment-end-bang-state")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.StringToken._as(_this.currentToken)._token$_buffer; t2 = t1._contents += "--!"; t1._contents = t2 + data; _this.__HtmlTokenizer_state = _this.get$commentState(); } return true; }, doctypeState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) _this.__HtmlTokenizer_state = _this.get$beforeDoctypeNameState(); else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-doctype-name-but-got-eof")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "need-space-after-doctype")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeDoctypeNameState(); } return true; }, beforeDoctypeNameState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (A.isWhitespace(data)) return true; else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, string$.expectd)); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); type$.DoctypeToken._as(_this.currentToken).name = "\ufffd"; _this.__HtmlTokenizer_state = _this.get$doctypeNameState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "expected-doctype-name-but-got-eof")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { type$.DoctypeToken._as(_this.currentToken).name = data; _this.__HtmlTokenizer_state = _this.get$doctypeNameState(); } return true; }, doctypeNameState$0() { var t1, t2, _this = this, _null = null, data = _this.stream.char$0(); if (A.isWhitespace(data)) { t1 = type$.DoctypeToken._as(_this.currentToken); t2 = t1.name; t1.name = t2 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t2), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); _this.__HtmlTokenizer_state = _this.get$afterDoctypeNameState(); } else if (data === ">") { t1 = type$.DoctypeToken._as(_this.currentToken); t2 = t1.name; t1.name = t2 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t2), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.name = A.S(t1.name) + "\ufffd"; _this.__HtmlTokenizer_state = _this.get$doctypeNameState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype-name")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t2 = t1.name; t1.name = t2 == null ? _null : A.String_String$fromCharCodes(new A.MappedListIterable(new A.CodeUnits(t2), A.constants__AsciiUpperToLower__asciiToLower$closure(), type$.CodeUnits._eval$1("MappedListIterable")), 0, _null); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.DoctypeToken._as(_this.currentToken); t1.name = A.S(t1.name) + data; } return true; }, afterDoctypeNameState$0() { var matched, _i, expected, t2, _this = this, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) return true; else if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { type$.DoctypeToken._as(_this.currentToken).correct = false; t1.unget$1(data); _this._addToken$1(new A.ParseErrorToken(null, null, "eof-in-doctype")); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { if (data === "p" || data === "P") { _i = 0; while (true) { if (!(_i < 5)) { matched = true; break; } expected = B.List_Ka6[_i]; data = t1.char$0(); if (data != null) t2 = !A.stringContainsUnchecked(expected, data, 0); else t2 = true; if (t2) { matched = false; break; } ++_i; } if (matched) { _this.__HtmlTokenizer_state = _this.get$afterDoctypePublicKeywordState(); return true; } } else if (data === "s" || data === "S") { _i = 0; while (true) { if (!(_i < 5)) { matched = true; break; } expected = B.List_kaS[_i]; data = t1.char$0(); if (data != null) t2 = !A.stringContainsUnchecked(expected, data, 0); else t2 = true; if (t2) { matched = false; break; } ++_i; } if (matched) { _this.__HtmlTokenizer_state = _this.get$afterDoctypeSystemKeywordState(); return true; } } t1.unget$1(data); t1 = type$.dynamic; t1 = A.LinkedHashMap_LinkedHashMap$_literal(["data", data], t1, t1); _this._addToken$1(new A.ParseErrorToken(t1, null, string$.expects)); type$.DoctypeToken._as(_this.currentToken).correct = false; _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, afterDoctypePublicKeywordState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) _this.__HtmlTokenizer_state = _this.get$beforeDoctypePublicIdentifierState(); else if (data === "'" || data === '"') { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-doctype")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeDoctypePublicIdentifierState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeDoctypePublicIdentifierState(); } return true; }, beforeDoctypePublicIdentifierState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (A.isWhitespace(data)) return true; else if (data === '"') { type$.DoctypeToken._as(_this.currentToken).publicId = ""; _this.__HtmlTokenizer_state = _this.get$doctypePublicIdentifierDoubleQuotedState(); } else if (data === "'") { type$.DoctypeToken._as(_this.currentToken).publicId = ""; _this.__HtmlTokenizer_state = _this.get$doctypePublicIdentifierSingleQuotedState(); } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-end-of-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-doctype")); type$.DoctypeToken._as(_this.currentToken).correct = false; _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, doctypePublicIdentifierDoubleQuotedState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (data === '"') _this.__HtmlTokenizer_state = _this.get$afterDoctypePublicIdentifierState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.publicId = A.S(t1.publicId) + "\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-end-of-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.DoctypeToken._as(_this.currentToken); t1.publicId = A.S(t1.publicId) + data; } return true; }, doctypePublicIdentifierSingleQuotedState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (data === "'") _this.__HtmlTokenizer_state = _this.get$afterDoctypePublicIdentifierState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.publicId = A.S(t1.publicId) + "\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-end-of-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.DoctypeToken._as(_this.currentToken); t1.publicId = A.S(t1.publicId) + data; } return true; }, afterDoctypePublicIdentifierState$0() { var t1, _this = this, _null = null, _s26_ = "unexpected-char-in-doctype", data = _this.stream.char$0(); if (A.isWhitespace(data)) _this.__HtmlTokenizer_state = _this.get$betweenDoctypePublicAndSystemIdentifiersState(); else if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === '"') { _this._addToken$1(new A.ParseErrorToken(_null, _null, _s26_)); type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierDoubleQuotedState(); } else if (data === "'") { _this._addToken$1(new A.ParseErrorToken(_null, _null, _s26_)); type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierSingleQuotedState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, _s26_)); type$.DoctypeToken._as(_this.currentToken).correct = false; _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, betweenDoctypePublicAndSystemIdentifiersState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (A.isWhitespace(data)) return true; else if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data === '"') { type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierDoubleQuotedState(); } else if (data === "'") { type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierSingleQuotedState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-doctype")); type$.DoctypeToken._as(_this.currentToken).correct = false; _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, afterDoctypeSystemKeywordState$0() { var _this = this, _null = null, t1 = _this.stream, data = t1.char$0(); if (A.isWhitespace(data)) _this.__HtmlTokenizer_state = _this.get$beforeDoctypeSystemIdentifierState(); else if (data === "'" || data === '"') { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-doctype")); t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeDoctypeSystemIdentifierState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1.unget$1(data); _this.__HtmlTokenizer_state = _this.get$beforeDoctypeSystemIdentifierState(); } return true; }, beforeDoctypeSystemIdentifierState$0() { var t1, _this = this, _null = null, _s26_ = "unexpected-char-in-doctype", data = _this.stream.char$0(); if (A.isWhitespace(data)) return true; else if (data === '"') { type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierDoubleQuotedState(); } else if (data === "'") { type$.DoctypeToken._as(_this.currentToken).systemId = ""; _this.__HtmlTokenizer_state = _this.get$doctypeSystemIdentifierSingleQuotedState(); } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, _s26_)); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, _s26_)); type$.DoctypeToken._as(_this.currentToken).correct = false; _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, doctypeSystemIdentifierDoubleQuotedState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (data === '"') _this.__HtmlTokenizer_state = _this.get$afterDoctypeSystemIdentifierState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.systemId = A.S(t1.systemId) + "\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-end-of-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.DoctypeToken._as(_this.currentToken); t1.systemId = A.S(t1.systemId) + data; } return true; }, doctypeSystemIdentifierSingleQuotedState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (data === "'") _this.__HtmlTokenizer_state = _this.get$afterDoctypeSystemIdentifierState(); else if (data === "\x00") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "invalid-codepoint")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.systemId = A.S(t1.systemId) + "\ufffd"; } else if (data === ">") { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-end-of-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { t1 = type$.DoctypeToken._as(_this.currentToken); t1.systemId = A.S(t1.systemId) + data; } return true; }, afterDoctypeSystemIdentifierState$0() { var t1, _this = this, _null = null, data = _this.stream.char$0(); if (A.isWhitespace(data)) return true; else if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { _this._addToken$1(new A.ParseErrorToken(_null, _null, "eof-in-doctype")); t1 = type$.DoctypeToken._as(_this.currentToken); t1.correct = false; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else { _this._addToken$1(new A.ParseErrorToken(_null, _null, "unexpected-char-in-doctype")); _this.__HtmlTokenizer_state = _this.get$bogusDoctypeState(); } return true; }, bogusDoctypeState$0() { var _this = this, t1 = _this.stream, data = t1.char$0(); if (data === ">") { t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } else if (data == null) { t1.unget$1(data); t1 = _this.currentToken; t1.toString; _this._addToken$1(t1); _this.__HtmlTokenizer_state = _this.get$dataState(); } return true; }, cdataSectionState$0() { var t1, matchedEnd, ch, _this = this, data = A._setArrayType([], type$.JSArray_String); for (t1 = _this.stream, matchedEnd = 0; true;) { ch = t1.char$0(); if (ch == null) break; if (ch === "\x00") { _this._addToken$1(new A.ParseErrorToken(null, null, "invalid-codepoint")); ch = "\ufffd"; } data.push(ch); if (ch === "]" && matchedEnd < 2) ++matchedEnd; else { if (ch === ">" && matchedEnd === 2) { data.pop(); data.pop(); data.pop(); break; } matchedEnd = 0; } } if (data.length !== 0) { t1 = B.JSArray_methods.join$0(data); _this._addToken$1(new A.CharactersToken(null, t1)); } _this.__HtmlTokenizer_state = _this.get$dataState(); return true; }, state$0($receiver) { return this.get$state(this).call$0(); } }; A.HtmlTokenizer_consumeEntity_closure.prototype = { call$1(e) { return J.startsWith$1$s(e, this.name); }, $signature: 52 }; A.HtmlTokenizer_emitCurrentToken_closure.prototype = { call$0() { return A._lateReadCheck(this.attr.__TagAttribute_value, "value"); }, $signature: 65 }; A.ActiveFormattingElements.prototype = { add$1(_, node) { var t1, t2, t3, ns, equalCount, t4, ns0, t5, ns1, _this = this, _s28_ = "http://www.w3.org/1999/xhtml"; if (node != null) for (t1 = A._instanceType(_this)._eval$1("ReversedListIterable"), t2 = new A.ReversedListIterable(_this, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")), t2 = node.localName, t3 = type$.Pair_of_String_and_nullable_String, ns = node.namespaceUri, equalCount = 0; t1.moveNext$0();) { t4 = t1.__internal$_current; if (t4 == null) break; ns0 = t4.namespaceUri; if (ns0 == null) ns0 = _s28_; t5 = t4.localName; ns1 = ns == null ? _s28_ : ns; if (new A.Pair(ns0, t5, t3).$eq(0, new A.Pair(ns1, t2, t3)) && A._mapEquals(t4.attributes, node.attributes)) ++equalCount; if (equalCount === 3) { B.JSArray_methods.remove$1(_this._list_proxy$_list, t4); break; } } _this.super$ListProxy$add(0, node); } }; A.TreeBuilder.prototype = { get$document(_) { return A._lateReadCheck(this.__TreeBuilder_document, "document"); }, reset$0(_) { var _this = this; B.JSArray_methods.set$length(_this.openElements, 0); _this.activeFormattingElements.set$length(0, 0); _this.formPointer = _this.headPointer = null; _this.insertFromTable = false; _this.__TreeBuilder_document = A.Document$(); }, elementInScope$2$variant(target, variant) { var listElements1, listElements2, invert, t1, t2, t3, t4, t5, ns, ns0, _s32_ = "We should never reach this point", _s28_ = "http://www.w3.org/1999/xhtml", exactNode = target instanceof A.Node0; if (variant != null) switch (variant) { case "button": listElements1 = B.List_46y; listElements2 = B.List_4CA; invert = false; break; case "list": listElements1 = B.List_46y; listElements2 = B.List_RXb; invert = false; break; case "table": listElements1 = B.List_wwd; listElements2 = B.List_empty; invert = false; break; case "select": listElements1 = B.List_sEs; listElements2 = B.List_empty; invert = true; break; default: throw A.wrapException(A.StateError$(_s32_)); } else { listElements1 = B.List_46y; listElements2 = B.List_empty; invert = false; } for (t1 = this.openElements, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), t1 = type$.Pair_of_String_and_nullable_String, t3 = !exactNode; t2.moveNext$0();) { t4 = t2.__internal$_current; if (t3) { t5 = t4.localName; t5 = t5 == null ? target == null : t5 === target; } else t5 = false; if (!t5) t5 = exactNode && t4 === target; else t5 = true; if (t5) return true; else { ns = t4.namespaceUri; t5 = ns == null; ns0 = t5 ? _s28_ : ns; t4 = t4.localName; if (!B.JSArray_methods.contains$1(listElements1, new A.Pair(ns0, t4, t1))) t4 = B.JSArray_methods.contains$1(listElements2, new A.Pair(t5 ? _s28_ : ns, t4, t1)); else t4 = true; if (invert !== t4) return false; } } throw A.wrapException(A.StateError$(_s32_)); }, elementInScope$1(target) { return this.elementInScope$2$variant(target, null); }, reconstructActiveFormattingElements$0() { var t2, i, entry, t3, t4, t5, t6, t7, cloneToken, element, _this = this, t1 = _this.activeFormattingElements; if (t1.get$length(t1) === 0) return; t2 = t1._list_proxy$_list; i = t2.length - 1; entry = t2[i]; if (entry == null || B.JSArray_methods.contains$1(_this.openElements, entry)) return; t3 = _this.openElements; while (true) { if (!(entry != null && !B.JSArray_methods.contains$1(t3, entry))) break; if (i === 0) { i = -1; break; } --i; entry = t2[i]; } for (t3 = type$.Object, t4 = type$.String; true;) { ++i; entry = t2[i]; t5 = entry.localName; t6 = entry.namespaceUri; t7 = A.LinkedHashMap_LinkedHashMap$from(entry.attributes, t3, t4); cloneToken = new A.StartTagToken(t7, t6, t5, false); cloneToken.span = entry.sourceSpan; element = _this.insertElement$1(cloneToken); t2[i] = element; if (t1.get$length(t1) === 0) A.throwExpression(A.IterableElementError_noElement()); if (element === t1.$index(0, t1.get$length(t1) - 1)) break; } }, clearActiveFormattingElements$0() { var t1 = this.activeFormattingElements, entry = t1.removeLast$0(t1); while (true) { if (!(!t1.get$isEmpty(t1) && entry != null)) break; entry = t1.removeLast$0(t1); } }, elementInActiveFormattingElements$1($name) { var t1, t2; for (t1 = this.activeFormattingElements, t2 = A._instanceType(t1)._eval$1("ReversedListIterable"), t1 = new A.ReversedListIterable(t1, t2), t2 = new A.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); t2.moveNext$0();) { t1 = t2.__internal$_current; if (t1 == null) break; else if (t1.localName == $name) return t1; } return null; }, insertComment$2(token, $parent) { var t1, t2; if ($parent == null) $parent = B.JSArray_methods.get$last(this.openElements); t1 = $parent.get$nodes($parent); t2 = new A.Comment(token.get$data(token), A.LinkedHashMap_LinkedHashMap(null, null, null, type$.Object, type$.String)); t2.sourceSpan = token.span; t1.add$1(0, t2); }, createElement$1(_, token) { var element, $name = token.name, namespace = token.namespace; if (namespace == null) namespace = this.defaultNamespace; A._lateReadCheck(this.__TreeBuilder_document, "document"); element = A.Element$_($name, namespace === "" ? null : namespace); element.attributes = token.data; element.sourceSpan = token.span; return element; }, insertElement$1(token) { if (this.insertFromTable) return this.insertElementTable$1(token); return this.insertElementNormal$1(token); }, insertElementNormal$1(token) { var element, t1, $name = token.name, namespace = token.namespace; if (namespace == null) namespace = this.defaultNamespace; A._lateReadCheck(this.__TreeBuilder_document, "document"); element = A.Element$_($name, namespace === "" ? null : namespace); element.attributes = token.data; element.sourceSpan = token.span; t1 = this.openElements; J.get$nodes$x(B.JSArray_methods.get$last(t1)).add$1(0, element); t1.push(element); return element; }, insertElementTable$1(token) { var nodePos, t2, _this = this, element = _this.createElement$1(0, token), t1 = _this.openElements; if (!B.JSArray_methods.contains$1(B.List_QcX, B.JSArray_methods.get$last(t1).localName)) return _this.insertElementNormal$1(token); else { nodePos = _this.getTableMisnestedNodePosition$0(); t2 = nodePos[1]; if (t2 == null) { t2 = nodePos[0]; t2.get$nodes(t2).add$1(0, element); } else nodePos[0].insertBefore$2(0, element, t2); t1.push(element); } return element; }, insertText$2(data, span) { var nodePos, t1 = this.openElements, $parent = B.JSArray_methods.get$last(t1); if (this.insertFromTable) t1 = !B.JSArray_methods.contains$1(B.List_QcX, B.JSArray_methods.get$last(t1).localName); else t1 = true; if (t1) A.TreeBuilder__insertText($parent, data, span, null); else { nodePos = this.getTableMisnestedNodePosition$0(); t1 = nodePos[0]; t1.toString; A.TreeBuilder__insertText(t1, data, span, type$.nullable_Element_2._as(nodePos[1])); } }, getTableMisnestedNodePosition$0() { var lastTable, fosterParent, insertBefore, t1 = this.openElements, t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t3 = new A.ReversedListIterable(t1, t2); t2 = new A.ListIterator(t3, t3.get$length(t3), t2._eval$1("ListIterator")); while (true) { if (!t2.moveNext$0()) { lastTable = null; break; } lastTable = t2.__internal$_current; if (lastTable.localName === "table") break; } if (lastTable != null) { fosterParent = lastTable.parentNode; if (fosterParent != null) insertBefore = lastTable; else { fosterParent = t1[B.JSArray_methods.indexOf$1(t1, lastTable) - 1]; insertBefore = null; } } else { fosterParent = t1[0]; insertBefore = null; } return A._setArrayType([fosterParent, insertBefore], type$.JSArray_nullable_Node); }, generateImpliedEndTags$1(exclude) { var t1 = this.openElements, $name = B.JSArray_methods.get$last(t1).localName; if ($name != exclude && B.JSArray_methods.contains$1(B.List_8oN, $name)) { t1.pop(); this.generateImpliedEndTags$1(exclude); } }, generateImpliedEndTags$0() { return this.generateImpliedEndTags$1(null); } }; A.Pair.prototype = { get$hashCode(_) { return 37 * J.get$hashCode$(this.first) + J.get$hashCode$(this.second); }, $eq(_, other) { if (other == null) return false; return other instanceof A.Pair && other.first == this.first && other.second == this.second; } }; A.formatStr_closure.prototype = { call$2(key, value) { var t1, t2, t3, last, t4, t5, match, digits, numberSize, result = new A.StringBuffer(""), search = "%(" + A.S(key) + ")"; for (t1 = this._box_0, t2 = search.length, t3 = J.getInterceptor$(value), last = 0, t4 = ""; t5 = t1.format, match = J.indexOf$2$asx(t5, search, last), match >= 0;) { result._contents = t4 + B.JSString_methods.substring$2(t5, last, match); match += t2; for (digits = match; A.isDigit(t1.format[digits]);) ++digits; if (digits > match) { numberSize = A.int_parse(J.substring$2$s(t1.format, match, digits), null); match = digits; } else numberSize = 0; t4 = t1.format[match]; switch (t4) { case "s": t4 = result._contents += A.S(value); break; case "d": t4 = result._contents += A.padWithZeros(t3.toString$0(value), numberSize); break; case "x": t4 = result._contents += A.padWithZeros(t3.toRadixString$1(A._asIntS(value), 16), numberSize); break; default: throw A.wrapException(A.UnsupportedError$("formatStr does not support format character " + t4)); } last = match + 1; } t2 = result._contents = t4 + B.JSString_methods.substring$2(t5, last, t5.length); t1.format = t2.charCodeAt(0) == 0 ? t2 : t2; }, $signature: 123 }; A._escape_closure.prototype = { call$1(match) { return "\\\\" + A.S(match.$index(0, 1)); }, $signature: 112 }; A._escape_closure0.prototype = { call$1(match) { return "\\" + A.S(match.$index(0, 1)); }, $signature: 112 }; A._escape_closure1.prototype = { call$1(match) { var t2, t1 = match.$index(0, 0); t1.toString; t2 = match.$index(0, 1); t2.toString; return B.JSArray_methods.join$1(A._setArrayType(t1.split(t2), type$.JSArray_String), "\\" + A.S(match.$index(0, 1))); }, $signature: 112 }; A._escape_closure2.prototype = { call$1(match) { return A.S(match.$index(0, 1)) + A.S(match.$index(0, 2)) + "\\. "; }, $signature: 112 }; A._escape_closure3.prototype = { call$1(match) { var t1 = match.$index(0, 0); t1.toString; return A.stringReplaceAllFuncUnchecked(t1, A.RegExp_RegExp("([*+-])", true, false, false, false), new A._escape__closure(), null); }, $signature: 112 }; A._escape__closure.prototype = { call$1(match) { return "\\" + A.S(match.$index(0, 1)); }, $signature: 112 }; A._escape_closure4.prototype = { call$1(match) { return A.S(match.$index(0, 1)) + "\\> "; }, $signature: 112 }; A._escape_closure5.prototype = { call$1(match) { var t2, t1 = match.$index(0, 0); t1.toString; t2 = A.RegExp_RegExp("\\*", true, false, false, false); return A.stringReplaceAllUnchecked(t1, t2, "\\*"); }, $signature: 112 }; A._escape_closure6.prototype = { call$1(match) { var t2, t1 = match.$index(0, 0); t1.toString; t2 = A.RegExp_RegExp("_", true, false, false, false); return A.stringReplaceAllUnchecked(t1, t2, "\\_"); }, $signature: 112 }; A._escape_closure7.prototype = { call$1(match) { var t2, t1 = match.$index(0, 0); t1.toString; t2 = A.RegExp_RegExp("`", true, false, false, false); return A.stringReplaceAllUnchecked(t1, t2, "\\`"); }, $signature: 112 }; A._escape_closure8.prototype = { call$1(match) { return "\\" + A.S(match.$index(0, 0)); }, $signature: 112 }; A._postProcess_closure.prototype = { call$1(rule) { var t1 = this._box_0; t1.input = A._join(t1.input, rule.append.call$0()); }, $signature: 1232 }; A._separatingNewlines_closure.prototype = { call$2(a, b) { a.toString; b.toString; return B.JSString_methods.compareTo$1(a, b); }, $signature: 1209 }; A.Node.prototype = { Node$1(domNode) { this._node0$_node = domNode; if (domNode instanceof A.Element) this._el = domNode; if (domNode instanceof A.Text0) this._node0$_text = domNode; }, get$firstChild(_) { var t2, t1 = this._el; if (t1 != null) { t2 = t1.get$nodes(t1); t1 = (!t2.get$isEmpty(t2) ? t1.get$nodes(t1)._list_proxy$_list[0] : null) != null; } else t1 = false; if (t1) { t1 = this._el; t2 = t1.get$nodes(t1); t1 = !t2.get$isEmpty(t2) ? t1.get$nodes(t1)._list_proxy$_list[0] : null; t2 = new A.Node(); t2.Node$1(t1); return t2; } return null; }, get$isCode() { var parentNode, t2, t1 = this._el; if (t1 == null) return false; if (t1.localName.toLowerCase() !== "code") { parentNode = t1.parentNode; t1 = parentNode instanceof A.Element; if ((t1 ? parentNode : null) != null) { t2 = (t1 ? parentNode : null).localName.toLowerCase() === "code"; t1 = t2; } else t1 = false; } else t1 = true; return t1; }, get$isParentFirstChild() { var parentNode = this._node0$_node.parentNode, t1 = parentNode instanceof A.Element ? parentNode : null, t2 = type$.WhereTypeIterable_Element; return B.JSArray_methods.get$first(A.List_List$of(new A.WhereTypeIterable(t1.get$children(t1)._childNodes, t2), true, t2._eval$1("Iterable.E"))) == this._el; }, get$isParentLastChild() { var parentNode = this._node0$_node.parentNode, t1 = parentNode instanceof A.Element ? parentNode : null, t2 = type$.WhereTypeIterable_Element; return B.JSArray_methods.get$last(A.List_List$of(new A.WhereTypeIterable(t1.get$children(t1)._childNodes, t2), true, t2._eval$1("Iterable.E"))) == this._el; }, get$nodeName(_) { var t1 = this._el; return t1 != null ? t1.localName.toLowerCase() : ""; }, get$parentChildIndex() { var t2, t3, parentNode = this._node0$_node.parentNode, t1 = parentNode instanceof A.Element; if ((t1 ? parentNode : null) != null) { t1 = t1 ? parentNode : null; t1 = t1.get$children(t1); t2 = this._el; t2.toString; t3 = type$.WhereTypeIterable_Element; t2 = B.JSArray_methods.indexOf$2(A.List_List$of(new A.WhereTypeIterable(t1._childNodes, t3), true, t3._eval$1("Iterable.E")), t2, 0); t1 = t2; } else t1 = -1; return t1; }, get$parentElName() { var parentNode, t2, t1 = this._el; if (t1 != null) { parentNode = t1.parentNode; t2 = (parentNode instanceof A.Element ? parentNode : null) != null; } else t2 = false; if (t2) { parentNode = t1.parentNode; t1 = (parentNode instanceof A.Element ? parentNode : null).localName.toLowerCase(); } else t1 = ""; return t1; }, get$textContent() { var t2, t1 = this._node0$_text; if (t1 == null) t1 = null; else { t2 = J.toString$0$(t1._dom$_data); t1._dom$_data = t2; t1 = t2; } if (t1 == null) { t1 = this._el; if (t1 == null) t1 = null; else { t2 = new A.StringBuffer(""); new A._ConcatTextVisitor(t2).visit$1(t1); t2 = t2._contents; t2 = t2.charCodeAt(0) == 0 ? t2 : t2; t1 = t2; } } return t1 == null ? "" : t1; }, childNodes$0($async$_) { var $async$self = this; return A._makeSyncStarIterable(function() { var _ = $async$_; var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, t3; return function $async$childNodes$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._el, t1 = t1.get$nodes(t1)._list_proxy$_list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); case 2: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 3; break; } t2 = t1.__interceptors$_current; t3 = new A.Node(); t3._node0$_node = t2; if (t2 instanceof A.Element) t3._el = t2; if (t2 instanceof A.Text0) t3._node0$_text = t2; $async$goto = 4; return t3; case 4: // after yield // goto for condition $async$goto = 2; break; case 3: // after for // implicit return return A._IterationMarker_endOfIteration(); case 1: // rethrow return A._IterationMarker_uncaughtError($async$currentError); } }; }, type$.Node_3); } }; A._StyleOption.prototype = {}; A.Rule.prototype = { get$hashCode(_) { return 629 + B.JSString_methods.get$hashCode(this.name); }, $eq(_, other) { if (other == null) return false; if (!(other instanceof A.Rule)) return false; return other.name === this.name; }, get$name(receiver) { return this.name; } }; A.Rule_findRule_closure.prototype = { call$1(rule) { var t1 = rule._realFilterFn; return t1 == null ? false : t1.call$1(this.node); }, $signature: 653 }; A.Rule_findRule_closure0.prototype = { call$1(rule) { var t1 = rule._realFilterFn; return t1 == null ? false : t1.call$1(this.node); }, $signature: 653 }; A.Rule_findRule_closure1.prototype = { call$0() { return $.$get$_BaseRules_defaultRule(); }, $signature: 1208 }; A.Rule__buildFilterFn_closure.prototype = { call$1(node) { return B.JSArray_methods.contains$1(this.filters, node.get$nodeName(node).toLowerCase()); }, $signature: 210 }; A._BaseRules_blankRule_closure.prototype = { call$2($content, node) { return A.isBlock(node._el) ? "\n\n" : ""; }, $signature: 62 }; A._BaseRules_defaultRule_closure.prototype = { call$2($content, node) { return A.isBlock(node._el) ? "\n\n" + $content + "\n\n" : $content; }, $signature: 62 }; A._CommonRules_paragraph_closure.prototype = { call$2($content, node) { return "\n\n" + $content + "\n\n"; }, $signature: 62 }; A._CommonRules_lineBreak_closure.prototype = { call$2($content, node) { return A.getStyleOption("br") + "\n"; }, $signature: 62 }; A._CommonRules_heading_closure.prototype = { call$2($content, node) { var t1, hLevel = A.int_parse(B.JSString_methods.substring$2(node.get$nodeName(node), 1, 2), null); if (A.getStyleOption("headingStyle") === "setext" && hLevel < 3) { t1 = hLevel === 1 ? "=" : "-"; return "\n\n" + $content + "\n" + B.JSArray_methods.join$0(A.List_List$filled($content.length, t1, false, type$.String)) + "\n\n"; } else return "\n\n" + B.JSArray_methods.join$0(A.List_List$filled(hLevel, "#", false, type$.String)) + " " + $content + "\n\n"; }, $signature: 62 }; A._CommonRules_blockquote_closure.prototype = { call$2($content, node) { var t2, t1 = A.RegExp_RegExp("^\\n+|\\n+$", true, false, false, false); t1 = A.stringReplaceAllUnchecked($content, t1, ""); t2 = A.RegExp_RegExp("^", true, false, true, false); return "\n\n" + A.stringReplaceAllUnchecked(t1, t2, "> ") + "\n\n"; }, $signature: 62 }; A._CommonRules_list_closure.prototype = { call$2($content, node) { if (node.get$parentElName() === "li" && node.get$isParentLastChild()) return "\n" + $content; else return "\n\n" + $content + "\n\n"; }, $signature: 62 }; A._CommonRules_listItem_closure.prototype = { call$2($content, node) { var start, startAttr, e, t2, convertContent, prefix, parentNode, exception, postfix, t1 = A.RegExp_RegExp("^\\n+", true, false, false, false); t1 = A.stringReplaceAllUnchecked($content, t1, ""); t2 = A.RegExp_RegExp("\\n+$", true, false, false, false); t1 = A.stringReplaceAllUnchecked(t1, t2, "\n"); t2 = A.RegExp_RegExp("\n", true, false, true, false); convertContent = A.stringReplaceAllUnchecked(t1, t2, "\n "); prefix = A.getStyleOption("bulletListMarker") + " "; if (node.get$parentElName() === "ol") { start = -1; parentNode = node._el.parentNode; startAttr = (parentNode instanceof A.Element ? parentNode : null).attributes.$index(0, "start"); if (startAttr != null && J.get$length$asx(startAttr) !== 0) try { start = A.int_parse(startAttr, null); } catch (exception) { e = A.unwrapException(exception); A.print("listItem parse start error " + A.S(e)); } prefix = A.S(start > -1 ? start + node.get$parentChildIndex() : node.get$parentChildIndex() + 1) + ". "; } t1 = node._node0$_node; t1.toString; if (A.nextSibling(t1) != null) { t1 = A.RegExp_RegExp("\\n$", true, false, false, false); t1 = !t1._nativeRegExp.test(convertContent); } else t1 = false; postfix = t1 ? "\n" : ""; return prefix + convertContent + postfix; }, $signature: 62 }; A._CommonRules_indentedCodeBlock_closure.prototype = { call$1(node) { var t1; if (A.getStyleOption("codeBlockStyle") === "indented") if (node.get$nodeName(node) === "pre") if (node.get$firstChild(node) != null) { t1 = node.get$firstChild(node); t1 = t1.get$nodeName(t1) === "code"; } else t1 = false; else t1 = false; else t1 = false; return t1; }, $signature: 210 }; A._CommonRules_indentedCodeBlock_closure0.prototype = { call$2($content, node) { var t2, result, _i, child, text, t1 = node.childNodes$0(0), children = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); t1 = children.length; if (t1 === 1) { t1 = B.JSArray_methods.get$first(children).get$textContent(); t2 = A.RegExp_RegExp("\\n", true, false, false, false); return "\n\n " + A.stringReplaceAllUnchecked(t1, t2, "\n ") + "\n\n"; } else { for (result = "\n\n ", _i = 0; _i < children.length; children.length === t1 || (0, A.throwConcurrentModificationError)(children), ++_i) { child = children[_i]; text = child.get$textContent(); if (!J.$eq$(child, B.JSArray_methods.get$last(children))) { t2 = A.RegExp_RegExp("\\n", true, false, false, false); text = A.stringReplaceAllUnchecked(text, t2, "\n "); } result += text; } return result + "\n\n"; } }, $signature: 62 }; A._CommonRules_fencedCodeBlock_closure.prototype = { call$1(node) { var t1; if (A.getStyleOption("codeBlockStyle") === "fenced") if (node.get$nodeName(node) === "pre") if (node.get$firstChild(node) != null) { t1 = node.get$firstChild(node); t1 = t1.get$nodeName(t1) === "code"; } else t1 = false; else t1 = false; else t1 = false; return t1; }, $signature: 210 }; A._CommonRules_fencedCodeBlock_closure0.prototype = { call$2($content, node) { var languageMatched, language, t1 = node.get$firstChild(node)._el, className = t1 == null ? null : t1.get$className(t1); if (className == null) className = ""; languageMatched = A.RegExp_RegExp("language-(\\S+)", true, false, false, false).firstMatch$1(className); if (languageMatched != null) { t1 = languageMatched._match[1]; t1.toString; language = t1; } else language = className; return "\n\n" + A.getStyleOption("fence") + language + "\n" + node.get$firstChild(node).get$textContent() + "\n" + A.getStyleOption("fence") + "\n\n"; }, $signature: 62 }; A._CommonRules_horizontalRule_closure.prototype = { call$2($content, node) { return A.getStyleOption("hr") + "\n"; }, $signature: 62 }; A._CommonRules_inlineLink_closure.prototype = { call$1(node) { return A.getStyleOption("linkStyle") === "inlined" && node.get$nodeName(node) === "a" && node._el.attributes.$index(0, "href") != null; }, $signature: 210 }; A._CommonRules_inlineLink_closure0.prototype = { call$2($content, node) { var title, renderedTitle, t1 = node._el.attributes.$index(0, "href"); t1.toString; title = node._el.attributes.$index(0, "title"); if (title == null) title = ""; renderedTitle = title.length === 0 ? title : ' "' + title + '"'; return "[" + $content + "](" + t1 + renderedTitle + ")"; }, $signature: 62 }; A._CommonRules_referenceLink_closure0.prototype = { call$1(node) { return A.getStyleOption("linkStyle") === "referenced" && node.get$nodeName(node) === "a" && node._el.attributes.$index(0, "href") != null; }, $signature: 210 }; A._CommonRules_referenceLink_closure1.prototype = { call$2($content, node) { var renderedTitle, t2, result, reference, id, t1 = node._el.attributes.$index(0, "href"), title = node._el.attributes.$index(0, "title"); if (title == null) title = ""; renderedTitle = title.length === 0 ? title : ' "' + title + '"'; t2 = "[" + $content; switch (A.getStyleOption("linkReferenceStyle")) { case "collapsed": result = t2 + "][]"; t1.toString; reference = t2 + "]: " + t1 + renderedTitle; break; case "shortcut": result = t2 + "]"; t1.toString; reference = t2 + "]: " + t1 + renderedTitle; break; default: id = $._linkReferences.length + 1; result = t2 + "][" + B.JSInt_methods.toString$0(id) + "]"; t2 = B.JSInt_methods.toString$0(id); t1.toString; reference = "[" + t2 + "]: " + t1 + renderedTitle; } $._linkReferences.push(reference); return result; }, $signature: 62 }; A._CommonRules_referenceLink_closure.prototype = { call$0() { if ($._linkReferences.length !== 0) { var result = "\n\n" + B.JSArray_methods.join$1($._linkReferences, "\n") + "\n\n"; B.JSArray_methods.set$length($._linkReferences, 0); } else result = ""; return result; }, $signature: 65 }; A._CommonRules_emphasis_closure.prototype = { call$2($content, node) { var _s11_ = "emDelimiter"; if (B.JSString_methods.trim$0($content).length === 0) return ""; return A.getStyleOption(_s11_) + $content + A.getStyleOption(_s11_); }, $signature: 62 }; A._CommonRules_strong_closure.prototype = { call$2($content, node) { var _s15_ = "strongDelimiter"; if (B.JSString_methods.trim$0($content).length === 0) return ""; return A.getStyleOption(_s15_) + $content + A.getStyleOption(_s15_); }, $signature: 62 }; A._CommonRules_strike_closure.prototype = { call$2($content, node) { if (B.JSString_methods.trim$0($content).length === 0) return ""; return "~~" + $content + "~~"; }, $signature: 62 }; A._CommonRules_code_closure.prototype = { call$1(node) { var t1, isCodeBlock; if (node.get$nodeName(node) === "pre") { t1 = node._node0$_node; t1.toString; if (A.nextSibling(t1) == null) { t1 = node._node0$_node; t1.toString; t1 = A.previousSibling(t1) != null; } else t1 = true; isCodeBlock = !t1; } else isCodeBlock = false; return node.get$nodeName(node) === "code" && !isCodeBlock; }, $signature: 210 }; A._CommonRules_code_closure0.prototype = { call$2($content, node) { var t1, matches, leadingSpace, trailingSpace, delimiter; if (B.JSString_methods.trim$0($content).length === 0) return ""; t1 = A.RegExp_RegExp("`+", true, false, false, false).allMatches$1(0, $content); t1 = A.MappedIterable_MappedIterable(t1, new A._CommonRules_code__closure(), A._instanceType(t1)._eval$1("Iterable.E"), type$.nullable_String); matches = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E")); if (matches.length !== 0) { t1 = A.RegExp_RegExp("^`", true, false, false, false); leadingSpace = t1._nativeRegExp.test($content) ? " " : ""; t1 = A.RegExp_RegExp("`$", true, false, false, false); trailingSpace = t1._nativeRegExp.test($content) ? " " : ""; for (delimiter = "`"; B.JSArray_methods.contains$1(matches, delimiter);) delimiter += "`"; } else { delimiter = "`"; leadingSpace = ""; trailingSpace = ""; } return delimiter + leadingSpace + $content + trailingSpace + delimiter; }, $signature: 62 }; A._CommonRules_code__closure.prototype = { call$1(match) { return match._match[0]; }, $signature: 1205 }; A._CommonRules_image_closure.prototype = { call$2($content, node) { var src, title, titlePart, alt = node._el.attributes.$index(0, "alt"); if (alt == null) alt = ""; src = node._el.attributes.$index(0, "src"); if (src == null) src = ""; title = node._el.attributes.$index(0, "title"); if (title == null) title = ""; titlePart = title.length !== 0 ? ' "' + title + '"' : ""; return src.length !== 0 ? "![" + alt + "](" + src + titlePart + ")" : ""; }, $signature: 62 }; A._TableRules_table_closure.prototype = { call$2($content, node) { return "\n" + $content + "\n"; }, $signature: 62 }; A._TableRules_tr_closure.prototype = { call$2($content, node) { return $content + "\n"; }, $signature: 62 }; A._TableRules_tHeadBody_closure.prototype = { call$2($content, node) { return $content; }, $signature: 62 }; A._TableRules_th_closure.prototype = { call$2($content, node) { var i, t1, t2, result = " " + $content + " |"; if (node.get$isParentFirstChild()) result = "| " + $content + " |"; if (node.get$isParentLastChild()) { i = 0; t1 = "|"; while (true) { t2 = node._node0$_node; t2.toString; if (!(i < A.countSiblingEl(t2))) break; t1 += " ----- |"; ++i; } result = result + "\n" + (t1.charCodeAt(0) == 0 ? t1 : t1); } return result; }, $signature: 62 }; A._TableRules_td_closure.prototype = { call$2($content, node) { var result = " " + $content + " |"; return node.get$isParentFirstChild() ? "| " + $content + " |" : result; }, $signature: 62 }; A.countSiblingEl_closure.prototype = { call$1(node) { if (node instanceof A.Element) ++this._box_0.count; }, $signature: 1204 }; A.get_closure.prototype = { call$1(client) { return client._sendUnstreamed$3("GET", this.url, this.headers); }, $signature: 1179 }; A.readBytes_closure.prototype = { call$1(client) { return client.readBytes$2$headers(this.url, this.headers); }, $signature: 1178 }; A.BaseClient.prototype = { readBytes$2$headers(url, headers) { return this.readBytes$body$BaseClient(url, headers); }, readBytes$body$BaseClient(url, headers) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this, response; var $async$readBytes$2$headers = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._sendUnstreamed$3("GET", url, headers), $async$readBytes$2$headers); case 3: // returning from await. response = $async$result; $async$self._checkResponseSuccess$2(url, response); $async$returnValue = response.bodyBytes; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$readBytes$2$headers, $async$completer); }, _sendUnstreamed$5(method, url, headers, body, encoding) { return this._sendUnstreamed$body$BaseClient(method, url, headers, body, encoding); }, _sendUnstreamed$3(method, url, headers) { return this._sendUnstreamed$5(method, url, headers, null, null); }, _sendUnstreamed$body$BaseClient(method, url, headers, body, encoding) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Response), $async$returnValue, $async$self = this, t1, contentType, request, $async$temp1; var $async$_sendUnstreamed$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start request = A.Request$(method, url); if (headers != null) request.headers.addAll$1(0, headers); if (body != null) if (typeof body == "string") request.set$body(0, body); else if (type$.Map_dynamic_dynamic._is(body)) { t1 = type$.String; t1 = body.cast$2$0(body, t1, t1); contentType = request.get$_contentType(); if (contentType == null) request.set$_contentType(A.MediaType$("application", "x-www-form-urlencoded", null)); else if (contentType.type + "/" + contentType.subtype !== "application/x-www-form-urlencoded") A.throwExpression(A.StateError$('Cannot set the body fields of a Request with content-type "' + contentType.get$mimeType(contentType) + '".')); request.set$body(0, A.mapToQuery(t1, request.get$encoding(request))); } else throw A.wrapException(A.ArgumentError$('Invalid request body "' + A.S(body) + '".', null)); $async$temp1 = A; $async$goto = 3; return A._asyncAwait($async$self.send$1(0, request), $async$_sendUnstreamed$5); case 3: // returning from await. $async$returnValue = $async$temp1.Response_fromStream($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_sendUnstreamed$5, $async$completer); }, _checkResponseSuccess$2(url, response) { var message, t1 = response.statusCode; if (t1 < 400) return; message = "Request to " + url.toString$0(0) + " failed with status " + A.S(t1); t1 = response.reasonPhrase; throw A.wrapException(A.ClientException$((t1 != null ? message + ": " + t1 : message) + ".", url)); }, $isClient0: 1 }; A.BaseRequest.prototype = { finalize$0() { if (this._finalized) throw A.wrapException(A.StateError$("Can't finalize a finalized Request.")); this._finalized = true; return B.ByteStream__EmptyStream; }, send$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.StreamedResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, response, stream, t1, t2, t3, t4, exception, client, $async$exception; var $async$send$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$handler = 4; $async$goto = 7; return A._asyncAwait(J.send$1$x(client, $async$self), $async$send$0); case 7: // returning from await. response = $async$result; stream = A.onDone(response.stream, J.get$close$x(client), type$.List_int); t1 = response.statusCode; t2 = response.contentLength; t3 = response.request; t4 = response.headers; response.toString; response.toString; t3 = A.StreamedResponse$(new A.ByteStream(stream), t1, t2, t4, false, true, response.reasonPhrase, t3); $async$returnValue = t3; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; J.close$0$x(client); throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$send$0, $async$completer); }, toString$0(_) { return this.method + " " + this.url.toString$0(0); } }; A.BaseRequest_closure.prototype = { call$2(key1, key2) { return key1.toLowerCase() === key2.toLowerCase(); }, $signature: 1177 }; A.BaseRequest_closure0.prototype = { call$1(key) { return B.JSString_methods.get$hashCode(key.toLowerCase()); }, $signature: 1176 }; A.BaseResponse.prototype = { BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, contentLength, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = this.statusCode; if (t1 < 100) throw A.wrapException(A.ArgumentError$("Invalid status code " + A.S(t1) + ".", null)); else { t1 = this.contentLength; if (t1 != null && t1 < 0) throw A.wrapException(A.ArgumentError$("Invalid content length " + A.S(t1) + ".", null)); } } }; A.BrowserClient.prototype = { send$1(_, request) { return this.send$body$BrowserClient(0, request); }, send$body$BrowserClient(_, request) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.StreamedResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, completer, t2, t3, t4, bytes, xhr, t1; var $async$send$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(request.finalize$0().toBytes$0(), $async$send$1); case 3: // returning from await. bytes = $async$result; xhr = new XMLHttpRequest(); t1 = $async$self._xhrs; t1.add$1(0, xhr); t2 = xhr; J.open$3$async$x(t2, request.method, request.url.toString$0(0), true); t2.responseType = "arraybuffer"; t2.withCredentials = false; request.headers.forEach$1(0, J.get$setRequestHeader$x(xhr)); completer = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_StreamedResponse), type$._AsyncCompleter_StreamedResponse); t2 = type$._EventStream_legacy_ProgressEvent; t3 = new A._EventStream(xhr, "load", false, t2); t4 = type$.void; t3.get$first(t3).then$1$1(0, new A.BrowserClient_send_closure(xhr, completer, request), t4); t2 = new A._EventStream(xhr, "error", false, t2); t2.get$first(t2).then$1$1(0, new A.BrowserClient_send_closure0(completer, request), t4); J.send$1$x(xhr, bytes); $async$handler = 4; $async$goto = 7; return A._asyncAwait(completer.future, $async$send$1); case 7: // returning from await. t2 = $async$result; $async$returnValue = t2; $async$next = [1]; // goto finally $async$goto = 5; break; $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; t1.remove$1(0, xhr); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$send$1, $async$completer); }, close$0(_) { var t1; for (t1 = this._xhrs, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.abort(); } }; A.BrowserClient_send_closure.prototype = { call$1(_) { var t1 = this.xhr, body = J.asUint8List$0$x(type$.ByteBuffer._as(A._convertNativeToDart_XHR_Response(t1.response))), t2 = A.Stream_Stream$value(body, type$.List_int), t3 = t1.status; t3.toString; this.completer.complete$1(0, A.StreamedResponse$(new A.ByteStream(t2), t3, J.get$length$asx(body), B.HttpRequest_methods.get$responseHeaders(t1), false, true, t1.statusText, this.request)); }, $signature: 663 }; A.BrowserClient_send_closure0.prototype = { call$1(_) { this.completer.completeError$2(new A.ClientException("XMLHttpRequest error."), A.StackTrace_current()); }, $signature: 663 }; A.ByteStream.prototype = { toBytes$0() { var t1 = new A._Future($.Zone__current, type$._Future_Uint8List), completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_Uint8List), sink = new A._ByteCallbackSink(new A.ByteStream_toBytes_closure(completer), new Uint8Array(1024)); this.listen$4$cancelOnError$onDone$onError(0, sink.get$add(sink), true, sink.get$close(sink), completer.get$completeError()); return t1; } }; A.ByteStream_toBytes_closure.prototype = { call$1(bytes) { return this.completer.complete$1(0, new Uint8Array(A._ensureNativeList(bytes))); }, $signature: 528 }; A.ClientException.prototype = { toString$0(_) { return this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A.MultipartFile.prototype = { get$length(receiver) { return this.length; } }; A.MultipartRequest.prototype = { finalize$0() { var _this = this, boundary = _this._boundaryString$0(); _this.headers.$indexSet(0, "content-type", "multipart/form-data; boundary=" + boundary); _this.super$BaseRequest$finalize(); return new A.ByteStream(_this._finalize$1(boundary)); }, _finalize$1(boundary) { return this._finalize$body$MultipartRequest(boundary); }, _finalize$body$MultipartRequest(boundary) { var $async$_finalize$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = "--" + boundary; separator = B.C_Utf8Codec.get$encoder().convert$1(t1 + "\r\n"); $close = B.C_Utf8Codec.get$encoder().convert$1(t1 + "--\r\n"); t1 = $async$self.fields, t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1); case 3: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 4; break; } t2 = t1.get$current(t1); $async$goto = 5; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(separator), $async$_finalize$1, $async$controller); case 5: // after yield t3 = t2.get$key(t2); t4 = t2.get$value(t2); t5 = $.$get$_newlineRegExp(); t3.toString; t3 = A.stringReplaceAllUnchecked(t3, t5, "%0D%0A"); header = 'content-disposition: form-data; name="' + A.stringReplaceAllUnchecked(t3, '"', "%22") + '"'; t3 = $.$get$_asciiOnly()._nativeRegExp; if (typeof t4 != "string") A.throwExpression(A.argumentErrorValue(t4)); if (!t3.test(t4)) header += "\r\ncontent-type: text/plain; charset=utf-8\r\ncontent-transfer-encoding: binary"; $async$goto = 6; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(B.C_Utf8Codec.get$encoder().convert$1(header + "\r\n\r\n")), $async$_finalize$1, $async$controller); case 6: // after yield t2 = t2.get$value(t2); $async$goto = 7; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(B.C_Utf8Codec.get$encoder().convert$1(t2)), $async$_finalize$1, $async$controller); case 7: // after yield $async$goto = 8; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(B.List_13_10), $async$_finalize$1, $async$controller); case 8: // after yield // goto for condition $async$goto = 3; break; case 4: // after for t1 = $async$self.files, t2 = t1.length, _i = 0; case 9: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 11; break; } file = t1[_i]; $async$goto = 12; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(separator), $async$_finalize$1, $async$controller); case 12: // after yield t3 = file.contentType.toString$0(0); t4 = file.field; t5 = $.$get$_newlineRegExp(); t4 = A.stringReplaceAllUnchecked(t4, t5, "%0D%0A"); header = "content-type: " + t3 + '\r\ncontent-disposition: form-data; name="' + A.stringReplaceAllUnchecked(t4, '"', "%22") + '"'; t3 = file.filename; if (t3 != null) { t3 = A.stringReplaceAllUnchecked(t3, t5, "%0D%0A"); header = header + '; filename="' + A.stringReplaceAllUnchecked(t3, '"', "%22") + '"'; } $async$goto = 13; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(B.C_Utf8Codec.get$encoder().convert$1(header + "\r\n\r\n")), $async$_finalize$1, $async$controller); case 13: // after yield if (file._isFinalized) A.throwExpression(A.StateError$("Can't finalize a finalized MultipartFile.")); file._isFinalized = true; $async$goto = 14; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldStar(file._multipart_file$_stream), $async$_finalize$1, $async$controller); case 14: // after yield $async$goto = 15; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(B.List_13_10), $async$_finalize$1, $async$controller); case 15: // after yield case 10: // for update t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 9; break; case 11: // after for $async$goto = 16; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle($close), $async$_finalize$1, $async$controller); case 16: // after yield case 1: // return return A._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return A._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = A._makeAsyncStarStreamController($async$_finalize$1, type$.List_int), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t2, t3, t4, t5, header, _i, file, t1, separator, $close; return A._streamOfController($async$controller); }, _boundaryString$0() { var index, list = J.JSArray_JSArray$allocateFixed(51, type$.int); for (index = 0; index < 51; ++index) list[index] = B.List_Kxv[$.$get$MultipartRequest__random().nextInt$1(66)]; return "dart-http-boundary-" + A.String_String$fromCharCodes(list, 0, null); } }; A.Request.prototype = { get$encoding(_) { var t1, t2, _this = this; if (_this.get$_contentType() == null || !J.containsKey$1$x(_this.get$_contentType().parameters._collection$_map, "charset")) return _this._defaultEncoding; t1 = J.$index$asx(_this.get$_contentType().parameters._collection$_map, "charset"); t1.toString; t2 = A.Encoding_getByName(t1); return t2 == null ? A.throwExpression(A.FormatException$('Unsupported encoding "' + t1 + '".', null, null)) : t2; }, get$bodyBytes() { return this._bodyBytes; }, get$body(_) { return this.get$encoding(this).decode$1(0, this._bodyBytes); }, set$body(_, value) { var contentType, t2, _this = this, t1 = _this.get$encoding(_this).encode$1(value); _this._checkFinalized$0(); _this._bodyBytes = A.toUint8List(t1); contentType = _this.get$_contentType(); if (contentType == null) { t1 = _this.get$encoding(_this); t2 = type$.String; _this.set$_contentType(A.MediaType$("text", "plain", A.LinkedHashMap_LinkedHashMap$_literal(["charset", t1.get$name(t1)], t2, t2))); } else if (!J.containsKey$1$x(contentType.parameters._collection$_map, "charset")) { t1 = _this.get$encoding(_this); t2 = type$.String; _this.set$_contentType(contentType.change$1$parameters(A.LinkedHashMap_LinkedHashMap$_literal(["charset", t1.get$name(t1)], t2, t2))); } }, finalize$0() { this.super$BaseRequest$finalize(); return new A.ByteStream(A.Stream_Stream$value(this._bodyBytes, type$.List_int)); }, get$_contentType() { var contentType = this.headers.$index(0, "content-type"); if (contentType == null) return null; return A.MediaType_MediaType$parse(contentType); }, set$_contentType(value) { this.headers.$indexSet(0, "content-type", value.toString$0(0)); }, _checkFinalized$0() { if (!this._finalized) return; throw A.wrapException(A.StateError$("Can't modify a finalized Request.")); } }; A.Response.prototype = { get$body(_) { return A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(this.headers).parameters._collection$_map, "charset")).decode$1(0, this.bodyBytes); }, get$bodyBytes() { return this.bodyBytes; } }; A.StreamedResponse.prototype = {}; A.mapToQuery_closure.prototype = { call$2(key, value) { var t1 = this.encoding, t2 = A._Uri__uriEncode(B.List_nxB, key, t1, true); return this.pairs.push(A._setArrayType([t2, A._Uri__uriEncode(B.List_nxB, value, t1, true)], type$.JSArray_String)); }, $signature: 173 }; A.mapToQuery_closure0.prototype = { call$1(pair) { var t1 = J.getInterceptor$asx(pair); return A.S(t1.$index(pair, 0)) + "=" + A.S(t1.$index(pair, 1)); }, $signature: 1175 }; A.onDone_closure.prototype = { call$1(sink) { var t1 = sink._async$_sink; if ((t1._state & 2) !== 0) A.throwExpression(A.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); this.onDone.call$0(); }, $signature() { return this.T._eval$1("~(EventSink<0>)"); } }; A.CaseInsensitiveMap.prototype = {}; A.CaseInsensitiveMap$from_closure.prototype = { call$1(key) { return key.toLowerCase(); }, $signature: 108 }; A.MediaType.prototype = { get$mimeType(_) { return this.type + "/" + this.subtype; }, change$1$parameters(parameters) { var t1 = type$.String, parameters0 = A.LinkedHashMap_LinkedHashMap$from(this.parameters, t1, t1); parameters0.addAll$1(0, parameters); return A.MediaType$(this.type, this.subtype, parameters0); }, toString$0(_) { var buffer = new A.StringBuffer(""), t1 = this.type; buffer._contents = t1; t1 += "/"; buffer._contents = t1; buffer._contents = t1 + this.subtype; J.forEach$1$ax(this.parameters._collection$_map, new A.MediaType_toString_closure(buffer)); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.MediaType_MediaType$parse_closure.prototype = { call$0() { var t3, t4, t5, t6, parameters, t7, success, t8, value, t1 = this.mediaType, scanner = new A.StringScanner(null, t1), t2 = $.$get$whitespace(); scanner.scan$1(t2); t3 = $.$get$token(); scanner.expect$1(t3); t4 = scanner.get$lastMatch().$index(0, 0); t4.toString; scanner.expect$1("/"); scanner.expect$1(t3); t5 = scanner.get$lastMatch().$index(0, 0); t5.toString; scanner.scan$1(t2); t6 = type$.String; parameters = A.LinkedHashMap_LinkedHashMap$_empty(t6, t6); while (true) { t6 = scanner._lastMatch = B.JSString_methods.matchAsPrefix$2(";", t1, scanner._string_scanner$_position); t7 = scanner._lastMatchPosition = scanner._string_scanner$_position; success = t6 != null; t6 = success ? scanner._lastMatchPosition = scanner._string_scanner$_position = t6.get$end(t6) : t7; if (!success) break; t6 = scanner._lastMatch = t2.matchAsPrefix$2(0, t1, t6); scanner._lastMatchPosition = scanner._string_scanner$_position; if (t6 != null) scanner._lastMatchPosition = scanner._string_scanner$_position = t6.get$end(t6); scanner.expect$1(t3); if (scanner._string_scanner$_position !== scanner._lastMatchPosition) scanner._lastMatch = null; t6 = scanner._lastMatch.$index(0, 0); t6.toString; scanner.expect$1("="); t7 = scanner._lastMatch = t3.matchAsPrefix$2(0, t1, scanner._string_scanner$_position); t8 = scanner._lastMatchPosition = scanner._string_scanner$_position; success = t7 != null; if (success) { t7 = scanner._lastMatchPosition = scanner._string_scanner$_position = t7.get$end(t7); t8 = t7; } else t7 = t8; if (success) { if (t7 !== t8) scanner._lastMatch = null; t7 = scanner._lastMatch.$index(0, 0); t7.toString; value = t7; } else value = A.expectQuotedString(scanner); t7 = scanner._lastMatch = t2.matchAsPrefix$2(0, t1, scanner._string_scanner$_position); scanner._lastMatchPosition = scanner._string_scanner$_position; if (t7 != null) scanner._lastMatchPosition = scanner._string_scanner$_position = t7.get$end(t7); parameters.$indexSet(0, t6, value); } scanner.expectDone$0(); return A.MediaType$(t4, t5, parameters); }, $signature: 1173 }; A.MediaType_toString_closure.prototype = { call$2(attribute, value) { var t2, t3, t1 = this.buffer; t1._contents += "; " + A.S(attribute) + "="; t2 = $.$get$nonToken()._nativeRegExp; if (typeof value != "string") A.throwExpression(A.argumentErrorValue(value)); t2 = t2.test(value); t3 = t1._contents; if (t2) { t1._contents = t3 + '"'; t2 = $.$get$_escapedChar(); value.toString; t2 = t1._contents += A.stringReplaceAllFuncUnchecked(value, t2, new A.MediaType_toString__closure(), null); t1._contents = t2 + '"'; } else t1._contents = t3 + A.S(value); }, $signature: 173 }; A.MediaType_toString__closure.prototype = { call$1(match) { return "\\" + A.S(match.$index(0, 0)); }, $signature: 112 }; A.expectQuotedString_closure.prototype = { call$1(match) { var t1 = match.$index(0, 1); t1.toString; return t1; }, $signature: 112 }; A.ExifData.prototype = { ExifData$from$1(other) { } }; A.DecodeInfo.prototype = {}; A.Decoder.prototype = {}; A.PngFrame.prototype = { dispose$0($receiver) { return this.dispose.call$0(); } }; A.InternalPngFrame.prototype = {}; A.PngInfo.prototype = {}; A.InternalPngInfo.prototype = {}; A.PngDecoder.prototype = { startDecode$1(data) { var pngHeader, t2, i, t3, inputPos, chunkSize, chunkType, bytes, t4, t5, hdr, hdrBytes, crc, gammaInt, frame, p3, r, g, b, _this = this, _null = null, _s6_ = "_input", t1 = A.InputBuffer$(data, true, _null, 0); _this.__PngDecoder__input = t1; pngHeader = A._lateReadCheck(t1, _s6_).readBytes$1(8); for (t1 = pngHeader.buffer, t2 = J.getInterceptor$asx(t1), i = 0; i < 8; ++i) if (t2.$index(t1, pngHeader.offset + i) !== B.List_2Vk1[i]) return _null; for (t1 = type$.JSArray_int, t2 = type$.JSArray_PngFrame; true;) { t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); inputPos = t3.offset - t3.start; chunkSize = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); chunkType = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readString$1(4); switch (chunkType) { case "IHDR": t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t3.subset$1(chunkSize); t4 = bytes.end; t3.offset = t3.offset + (t4 - bytes.offset); t3 = bytes.buffer; t5 = bytes.offset; hdr = new A.InputBuffer(t3, bytes.start, t4, t5, true); hdrBytes = hdr.toUint8List$0(); t4 = new A.InternalPngInfo(A._setArrayType([], t2), A._setArrayType([], t1)); _this._info = t4; t4.width = hdr.readUint32$0(); t4 = _this._info; t4.toString; t4.height = hdr.readUint32$0(); t4 = _this._info; t4.toString; t5 = J.getInterceptor$asx(t3); t4.bits = t5.$index(t3, hdr.offset++); t4 = _this._info; t4.toString; t4.colorType = t5.$index(t3, hdr.offset++); _this._info.toString; t5.$index(t3, hdr.offset++); t4 = _this._info; t4.toString; t4.filterMethod = t5.$index(t3, hdr.offset++); t4 = _this._info; t4.toString; t4.interlaceMethod = t5.$index(t3, hdr.offset++); if (!B.JSArray_methods.contains$1(A._setArrayType([0, 2, 3, 4, 6], t1), _this._info.colorType)) return _null; t3 = _this._info; if (t3.filterMethod !== 0) return _null; switch (t3.colorType) { case 0: if (!B.JSArray_methods.contains$1(A._setArrayType([1, 2, 4, 8, 16], t1), _this._info.bits)) return _null; break; case 2: if (!B.JSArray_methods.contains$1(A._setArrayType([8, 16], t1), _this._info.bits)) return _null; break; case 3: if (!B.JSArray_methods.contains$1(A._setArrayType([1, 2, 4, 8], t1), _this._info.bits)) return _null; break; case 4: if (!B.JSArray_methods.contains$1(A._setArrayType([8, 16], t1), _this._info.bits)) return _null; break; case 6: if (!B.JSArray_methods.contains$1(A._setArrayType([8, 16], t1), _this._info.bits)) return _null; break; } if (A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0() !== A.getCrc32(hdrBytes, A.getCrc32(new A.CodeUnits(chunkType), 0))) throw A.wrapException(A.ImageException$("Invalid " + chunkType + " checksum")); break; case "PLTE": t3 = _this._info; t3.toString; t4 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t4.subset$1(chunkSize); t4.offset = t4.offset + (bytes.end - bytes.offset); t3.palette = bytes.toUint8List$0(); if (A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0() !== A.getCrc32(_this._info.palette, A.getCrc32(new A.CodeUnits(chunkType), 0))) throw A.wrapException(A.ImageException$("Invalid " + chunkType + " checksum")); break; case "tRNS": t3 = _this._info; t3.toString; t4 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t4.subset$1(chunkSize); t4.offset = t4.offset + (bytes.end - bytes.offset); t3.transparency = bytes.toUint8List$0(); crc = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); t3 = _this._info.transparency; t3.toString; if (crc !== A.getCrc32(t3, A.getCrc32(new A.CodeUnits(chunkType), 0))) throw A.wrapException(A.ImageException$("Invalid " + chunkType + " checksum")); break; case "IEND": A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "gAMA": if (chunkSize !== 4) throw A.wrapException(A.ImageException$("Invalid gAMA chunk")); gammaInt = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; if (gammaInt !== 100000) _this._info.gamma = gammaInt / 100000; break; case "IDAT": _this._info._idat.push(inputPos); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += chunkSize; A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "acTL": _this._info.toString; A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); _this._info.toString; A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "fcTL": frame = new A.InternalPngFrame(A._setArrayType([], t1)); _this._info.frames.push(frame); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); frame.width = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); frame.height = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); frame.dispose = J.$index$asx(t3.buffer, t3.offset++); t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); J.$index$asx(t3.buffer, t3.offset++); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "fdAT": A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); B.JSArray_methods.get$last(_this._info.frames)._fdat.push(inputPos); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += chunkSize - 4; A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "bKGD": t3 = _this._info.colorType; if (t3 === 3) { t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); --chunkSize; p3 = J.$index$asx(t3.buffer, t3.offset++) * 3; t3 = _this._info.palette; t3.toString; r = J.$index$asx(t3, p3); t3 = _this._info.palette; t3.toString; g = J.$index$asx(t3, p3 + 1); t3 = _this._info.palette; t3.toString; b = J.$index$asx(t3, p3 + 2); _this._info.toString; B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2(255, 0, 255)); B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2(b, 0, 255)); B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2(g, 0, 255)); B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2(r, 0, 255)); } else if (t3 === 0 || t3 === 4) { A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); chunkSize -= 2; } else if (t3 === 2 || t3 === 6) { A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint16$0(); chunkSize -= 24; } if (chunkSize > 0) A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += chunkSize; A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; case "iCCP": t3 = _this._info; t3.toString; t3.iCCPName = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readString$0(); _this._info.toString; t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); J.$index$asx(t3.buffer, t3.offset++); t3 = _this._info.iCCPName; t4 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t4.subset$1(chunkSize - (t3.length + 2)); t4.offset = t4.offset + (bytes.end - bytes.offset); t4 = _this._info; t4.toString; t4.iCCPData = bytes.toUint8List$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; default: A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += chunkSize; A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; break; } if (chunkType === "IEND") break; t3 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); if (t3.offset >= t3.end) return _null; } return _this._info; }, decodeFrame$1(frame) { var imageData, t1, width, height, t2, t3, len, i, chunkSize, chunkType, bytes, data, f, image, cmf, flg, method, buffer, input, origW, origH, _this = this, _null = null, _s6_ = "_input"; if (_this._info == null) return _null; imageData = A._setArrayType([], type$.JSArray_int); t1 = _this._info; width = t1.width; height = t1.height; t2 = t1.frames; t3 = t2.length; if (t3 === 0 || frame === 0) for (len = t1._idat.length, i = 0; i < len; ++i) { A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset = _this._info._idat[i]; chunkSize = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); chunkType = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readString$1(4); t1 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t1.subset$1(chunkSize); t1.offset = t1.offset + (bytes.end - bytes.offset); data = bytes.toUint8List$0(); B.JSArray_methods.addAll$1(imageData, data); if (A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0() !== A.getCrc32(data, A.getCrc32(new A.CodeUnits(chunkType), 0))) throw A.wrapException(A.ImageException$("Invalid " + chunkType + " checksum")); } else { if (frame >= t3) throw A.wrapException(A.ImageException$("Invalid Frame Number: " + frame)); f = t2[frame]; width = f.width; height = f.height; for (t1 = f._fdat, i = 0; i < t1.length; ++i) { A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset = t1[i]; chunkSize = A._lateReadCheck(_this.__PngDecoder__input, _s6_).readUint32$0(); A._lateReadCheck(_this.__PngDecoder__input, _s6_).readString$1(4); A._lateReadCheck(_this.__PngDecoder__input, _s6_).offset += 4; t2 = A._lateReadCheck(_this.__PngDecoder__input, _s6_); bytes = t2.subset$1(chunkSize); t2.offset = t2.offset + (bytes.end - bytes.offset); B.JSArray_methods.addAll$1(imageData, bytes.toUint8List$0()); } } _this._info.colorType !== 4; width.toString; height.toString; t1 = new Uint32Array(width * height); t2 = type$.int; new A.ExifData(A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.dynamic)).ExifData$from$1(_null); image = new A.Image0(width, height, t1); t1 = A.InputStream$(imageData, 1, _null, 0); cmf = t1.readByte$0(); flg = t1.readByte$0(); method = cmf & 8; B.JSInt_methods._shrOtherPositive$1(cmf, 3); if (method !== 8) A.throwExpression(A.ArchiveException$("Only DEFLATE compression supported: " + method)); if (B.JSInt_methods.$mod((cmf << 8 >>> 0) + flg, 31) !== 0) A.throwExpression(A.ArchiveException$("Invalid FCHECK")); if ((flg >>> 5 & 1) !== 0) { t1.readUint32$0(); A.throwExpression(A.ArchiveException$("FDICT Encoding not currently supported")); } t3 = A.Inflate$buffer(t1).output; buffer = type$.List_int._as(B.NativeByteBuffer_methods.asUint8List$2(t3._output_stream$_buffer.buffer, 0, t3.length)); t1.readUint32$0(); input = A.InputBuffer$(buffer, true, _null, 0); _this._png_decoder$_bitBufferLen = _this._png_decoder$_bitBuffer = 0; t1 = _this._info; if (t1.colorLut == null) { t1.colorLut = A.List_List$generate(256, new A.PngDecoder_decodeFrame_closure(), false, t2); t1 = _this._info; if (t1.palette != null && t1.gamma != null) { i = 0; while (true) { t1 = _this._info.palette; t1.toString; if (!(i < J.get$length$asx(t1))) break; t1 = _this._info; t2 = t1.palette; t2.toString; t1 = t1.colorLut; t1.toString; t3 = J.getInterceptor$asx(t2); t3.$indexSet(t2, i, t1[t3.$index(t2, i)]); ++i; } } } t1 = _this._info; origW = t1.width; origH = t1.height; t1.width = width; t1.height = height; _this._progressY = 0; if (t1.interlaceMethod !== 0) { t1 = height + 7 >>> 3; _this._processPass$8(input, image, 0, 0, 8, 8, width + 7 >>> 3, t1); t2 = width + 3; _this._processPass$8(input, image, 4, 0, 8, 8, t2 >>> 3, t1); t1 = height + 3; _this._processPass$8(input, image, 0, 4, 4, 8, t2 >>> 2, t1 >>> 3); t2 = width + 1; _this._processPass$8(input, image, 2, 0, 4, 4, t2 >>> 2, t1 >>> 2); t1 = height + 1; _this._processPass$8(input, image, 0, 2, 2, 4, t2 >>> 1, t1 >>> 2); _this._processPass$8(input, image, 1, 0, 2, 2, width >>> 1, t1 >>> 1); _this._processPass$8(input, image, 0, 1, 1, 2, width, height >>> 1); } else _this._png_decoder$_process$2(input, image); t1 = _this._info; t1.width = origW; t1.height = origH; return image; }, decodeImage$1(bytes) { if (this.startDecode$1(bytes) == null) return null; return this.decodeFrame$1(0); }, _processPass$8(input, image, xOffset, yOffset, xStep, yStep, passWidth, passHeight) { var channels, pixelDepth, bpp, rowBytes, line, inData, pixel, t3, t4, blockWidth, t5, t6, t7, dstY, srcY, ri, t8, bytes, t9, rowInput, dstX, srcX, c, i, j, t10, _this = this, t1 = _this._info, t2 = t1.colorType; if (t2 === 4) channels = 2; else if (t2 === 2) channels = 3; else { t2 = t2 === 6 ? 4 : 1; channels = t2; } t1 = t1.bits; t1.toString; pixelDepth = channels * t1; bpp = B.JSInt_methods._shrOtherPositive$1(pixelDepth + 7, 3); rowBytes = B.JSInt_methods._shrOtherPositive$1(pixelDepth * passWidth + 7, 3); line = A.List_List$filled(rowBytes, 0, false, type$.int); inData = A._setArrayType([line, line], type$.JSArray_List_int); pixel = A._setArrayType([0, 0, 0, 0], type$.JSArray_int); for (t1 = image.data, t2 = image.width, t3 = xStep > 1, t4 = image.height, blockWidth = xStep - xOffset, t5 = input.buffer, t6 = J.getInterceptor$asx(t5), t7 = blockWidth <= 1, dstY = yOffset, srcY = 0, ri = 0; srcY < passHeight; ++srcY, dstY += yStep, ++_this._progressY) { t8 = t6.$index(t5, input.offset++); bytes = input.subset$1(rowBytes); input.offset = input.offset + (bytes.end - bytes.offset); t9 = bytes.toUint8List$0(); inData[ri] = t9; ri = 1 - ri; _this._unfilter$4(t8, bpp, t9, inData[ri]); _this._png_decoder$_bitBufferLen = _this._png_decoder$_bitBuffer = 0; t8 = J.get$length$asx(t9); rowInput = new A.InputBuffer(t9, 0, t8, 0, true); for (dstX = xOffset, srcX = 0; srcX < passWidth; ++srcX, dstX += xStep) { _this._readPixel$2(rowInput, pixel); c = _this._getColor$1(pixel); t1[dstY * t2 + dstX] = c; if (!t7 || t3) for (i = 0; i < xStep; ++i) for (j = 0; j < blockWidth; ++j) { t8 = dstX + j; t9 = dstY + j; if (t8 < t2) t10 = t9 < t4; else t10 = false; if (t10) t1[t9 * t2 + t8] = c; } } } }, _png_decoder$_process$2(input, image) { var channels, pixelDepth, w, h, rowBytes, bpp, line, inData, pixel, t3, y, pi, ri, t4, bytes, t5, ri0, rowInput, x, pi0, _this = this, t1 = _this._info, t2 = t1.colorType; if (t2 === 4) channels = 2; else if (t2 === 2) channels = 3; else { t2 = t2 === 6 ? 4 : 1; channels = t2; } t2 = t1.bits; t2.toString; pixelDepth = channels * t2; w = t1.width; h = t1.height; rowBytes = B.JSInt_methods._shrOtherPositive$1(w * pixelDepth + 7, 3); bpp = B.JSInt_methods._shrOtherPositive$1(pixelDepth + 7, 3); line = A.List_List$filled(rowBytes, 0, false, type$.int); inData = A._setArrayType([line, line], type$.JSArray_List_int); pixel = A._setArrayType([0, 0, 0, 0], type$.JSArray_int); for (t1 = image.data, t2 = input.buffer, t3 = J.getInterceptor$asx(t2), y = 0, pi = 0, ri = 0; y < h; ++y, ri = ri0) { t4 = t3.$index(t2, input.offset++); bytes = input.subset$1(rowBytes); input.offset = input.offset + (bytes.end - bytes.offset); t5 = bytes.toUint8List$0(); inData[ri] = t5; ri0 = 1 - ri; _this._unfilter$4(t4, bpp, t5, inData[ri0]); _this._png_decoder$_bitBufferLen = _this._png_decoder$_bitBuffer = 0; t5 = inData[ri]; t4 = J.get$length$asx(t5); rowInput = new A.InputBuffer(t5, 0, t4, 0, true); for (x = 0; x < w; ++x, pi = pi0) { _this._readPixel$2(rowInput, pixel); pi0 = pi + 1; t1[pi] = _this._getColor$1(pixel); } } }, _unfilter$4(filterType, bpp, row, prevRow) { var x, t2, a, b, t3, c, p, pa, pb, pc, paeth, t1 = J.getInterceptor$asx(row), rowBytes = t1.get$length(row); switch (filterType) { case 0: break; case 1: for (x = bpp; x < rowBytes; ++x) t1.$indexSet(row, x, t1.$index(row, x) + t1.$index(row, x - bpp) & 255); break; case 2: for (t2 = J.getInterceptor$asx(prevRow), x = 0; x < rowBytes; ++x) t1.$indexSet(row, x, t1.$index(row, x) + t2.$index(prevRow, x) & 255); break; case 3: for (t2 = J.getInterceptor$asx(prevRow), x = 0; x < rowBytes; ++x) { a = x < bpp ? 0 : t1.$index(row, x - bpp); b = t2.$index(prevRow, x); t1.$indexSet(row, x, t1.$index(row, x) + B.JSInt_methods._shrOtherPositive$1(a + b, 1) & 255); } break; case 4: for (t2 = J.getInterceptor$asx(prevRow), x = 0; x < rowBytes; ++x) { t3 = x < bpp; a = t3 ? 0 : t1.$index(row, x - bpp); b = t2.$index(prevRow, x); c = t3 ? 0 : t2.$index(prevRow, x - bpp); p = a + b - c; pa = Math.abs(p - a); pb = Math.abs(p - b); pc = Math.abs(p - c); if (pa <= pb && pa <= pc) paeth = a; else paeth = pb <= pc ? b : c; t1.$indexSet(row, x, t1.$index(row, x) + paeth & 255); } break; default: throw A.wrapException(A.ImageException$("Invalid filter value: " + A.S(filterType))); } }, _png_decoder$_readBits$2(input, numBits) { var t1, t2, t3, t4, t5, mask, _this = this; if (numBits === 0) return 0; if (numBits === 8) return input.readByte$0(); if (numBits === 16) return input.readUint16$0(); for (t1 = input.buffer, t2 = J.getInterceptor$asx(t1), t3 = input.end; t4 = _this._png_decoder$_bitBufferLen, t4 < numBits;) { t4 = input.offset; if (t4 >= t3) throw A.wrapException(A.ImageException$("Invalid PNG data.")); input.offset = t4 + 1; t4 = t2.$index(t1, t4); t5 = _this._png_decoder$_bitBufferLen; _this._png_decoder$_bitBuffer = B.JSInt_methods.$shl(t4, t5); _this._png_decoder$_bitBufferLen = t5 + 8; } if (numBits === 1) mask = 1; else if (numBits === 2) mask = 3; else { if (numBits === 4) t1 = 15; else t1 = 0; mask = t1; } t1 = t4 - numBits; t2 = B.JSInt_methods._shrReceiverPositive$1(_this._png_decoder$_bitBuffer, t1); _this._png_decoder$_bitBufferLen = t1; return t2 & mask; }, _readPixel$2(input, pixel) { var _this = this, t1 = _this._info, t2 = t1.colorType; switch (t2) { case 0: t1 = t1.bits; t1.toString; pixel[0] = _this._png_decoder$_readBits$2(input, t1); return; case 2: t1 = t1.bits; t1.toString; pixel[0] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[1] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[2] = _this._png_decoder$_readBits$2(input, t1); return; case 3: t1 = t1.bits; t1.toString; pixel[0] = _this._png_decoder$_readBits$2(input, t1); return; case 4: t1 = t1.bits; t1.toString; pixel[0] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[1] = _this._png_decoder$_readBits$2(input, t1); return; case 6: t1 = t1.bits; t1.toString; pixel[0] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[1] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[2] = _this._png_decoder$_readBits$2(input, t1); t1 = _this._info.bits; t1.toString; pixel[3] = _this._png_decoder$_readBits$2(input, t1); return; } throw A.wrapException(A.ImageException$("Invalid color type: " + A.S(t2) + ".")); }, _getColor$1(raw) { var g, r, b, t3, t4, t5, t6, p, a, _this = this, t1 = _this._info, t2 = t1.colorType; switch (t2) { case 0: g = A._Cell$named("g"); t1 = _this._info; switch (t1.bits) { case 1: g.__late_helper$_value = raw[0] === 0 ? 0 : 255; break; case 2: g.__late_helper$_value = raw[0] * 85; break; case 4: g.__late_helper$_value = raw[0] << 4 >>> 0; break; case 8: g.__late_helper$_value = raw[0]; break; case 16: g.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[0], 8); break; } t1 = t1.colorLut; t1.toString; g.__late_helper$_value = t1[g._readLocal$0()]; t1 = _this._info.transparency; if (t1 != null) { t1 = J.$index$asx(t1, 0); t2 = _this._info.transparency; t2.toString; t2 = J.$index$asx(t2, 1); if (raw[0] === ((t1 & 255) << 24 | t2 & 255) >>> 0) return A.getColor(g._readLocal$0(), g._readLocal$0(), g._readLocal$0(), 0); } return A.getColor(g._readLocal$0(), g._readLocal$0(), g._readLocal$0(), 255); case 2: r = A._Cell$named("r"); g = A._Cell$named("g"); b = A._Cell$named("b"); t1 = _this._info; switch (t1.bits) { case 1: r.__late_helper$_value = raw[0] === 0 ? 0 : 255; g.__late_helper$_value = raw[1] === 0 ? 0 : 255; b.__late_helper$_value = raw[2] === 0 ? 0 : 255; break; case 2: r.__late_helper$_value = raw[0] * 85; g.__late_helper$_value = raw[1] * 85; b.__late_helper$_value = raw[2] * 85; break; case 4: r.__late_helper$_value = raw[0] << 4 >>> 0; g.__late_helper$_value = raw[1] << 4 >>> 0; b.__late_helper$_value = raw[2] << 4 >>> 0; break; case 8: r.__late_helper$_value = raw[0]; g.__late_helper$_value = raw[1]; b.__late_helper$_value = raw[2]; break; case 16: r.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[0], 8); g.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[1], 8); b.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[2], 8); break; } t1 = t1.colorLut; t1.toString; r.__late_helper$_value = t1[r._readLocal$0()]; t1 = _this._info.colorLut; t1.toString; g.__late_helper$_value = t1[g._readLocal$0()]; t1 = _this._info.colorLut; t1.toString; b.__late_helper$_value = t1[b._readLocal$0()]; t1 = _this._info.transparency; if (t1 != null) { t1 = J.$index$asx(t1, 0); t2 = _this._info.transparency; t2.toString; t2 = J.$index$asx(t2, 1); t3 = _this._info.transparency; t3.toString; t3 = J.$index$asx(t3, 2); t4 = _this._info.transparency; t4.toString; t4 = J.$index$asx(t4, 3); t5 = _this._info.transparency; t5.toString; t5 = J.$index$asx(t5, 4); t6 = _this._info.transparency; t6.toString; t6 = J.$index$asx(t6, 5); if (raw[0] === ((t1 & 255) << 8 | t2 & 255) && raw[1] === ((t3 & 255) << 8 | t4 & 255) && raw[2] === ((t5 & 255) << 8 | t6 & 255)) return A.getColor(r._readLocal$0(), g._readLocal$0(), b._readLocal$0(), 0); } return A.getColor(r._readLocal$0(), g._readLocal$0(), b._readLocal$0(), 255); case 3: t2 = raw[0]; p = t2 * 3; t1 = t1.transparency; if (t1 != null && t2 < J.get$length$asx(t1)) { t1 = _this._info.transparency; t1.toString; a = J.$index$asx(t1, raw[0]); } else a = 255; t1 = _this._info.palette; t1.toString; if (p >= J.get$length$asx(t1)) return A.getColor(255, 255, 255, a); t1 = _this._info.palette; t1.toString; r = J.$index$asx(t1, p); t1 = _this._info.palette; t1.toString; g = J.$index$asx(t1, p + 1); t1 = _this._info.palette; t1.toString; return A.getColor(r, g, J.$index$asx(t1, p + 2), a); case 4: g = A._Cell$named("g"); a = A._Cell$named("a"); t1 = _this._info; switch (t1.bits) { case 1: g.__late_helper$_value = raw[0] === 0 ? 0 : 255; a.__late_helper$_value = raw[1] === 0 ? 0 : 255; break; case 2: g.__late_helper$_value = raw[0] * 85; a.__late_helper$_value = raw[1] * 85; break; case 4: g.__late_helper$_value = raw[0] << 4 >>> 0; a.__late_helper$_value = raw[1] << 4 >>> 0; break; case 8: g.__late_helper$_value = raw[0]; a.__late_helper$_value = raw[1]; break; case 16: g.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[0], 8); a.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[1], 8); break; } t1 = t1.colorLut; t1.toString; g.__late_helper$_value = t1[g._readLocal$0()]; return A.getColor(g._readLocal$0(), g._readLocal$0(), g._readLocal$0(), a._readLocal$0()); case 6: r = A._Cell$named("r"); g = A._Cell$named("g"); b = A._Cell$named("b"); a = A._Cell$named("a"); t1 = _this._info; switch (t1.bits) { case 1: r.__late_helper$_value = raw[0] === 0 ? 0 : 255; g.__late_helper$_value = raw[1] === 0 ? 0 : 255; b.__late_helper$_value = raw[2] === 0 ? 0 : 255; a.__late_helper$_value = raw[3] === 0 ? 0 : 255; break; case 2: r.__late_helper$_value = raw[0] * 85; g.__late_helper$_value = raw[1] * 85; b.__late_helper$_value = raw[2] * 85; a.__late_helper$_value = raw[3] * 85; break; case 4: r.__late_helper$_value = raw[0] << 4 >>> 0; g.__late_helper$_value = raw[1] << 4 >>> 0; b.__late_helper$_value = raw[2] << 4 >>> 0; a.__late_helper$_value = raw[3] << 4 >>> 0; break; case 8: r.__late_helper$_value = raw[0]; g.__late_helper$_value = raw[1]; b.__late_helper$_value = raw[2]; a.__late_helper$_value = raw[3]; break; case 16: r.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[0], 8); g.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[1], 8); b.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[2], 8); a.__late_helper$_value = B.JSInt_methods._shrOtherPositive$1(raw[3], 8); break; } t1 = t1.colorLut; t1.toString; r.__late_helper$_value = t1[r._readLocal$0()]; t1 = _this._info.colorLut; t1.toString; g.__late_helper$_value = t1[g._readLocal$0()]; t1 = _this._info.colorLut; t1.toString; b.__late_helper$_value = t1[b._readLocal$0()]; return A.getColor(r._readLocal$0(), g._readLocal$0(), b._readLocal$0(), a._readLocal$0()); } throw A.wrapException(A.ImageException$("Invalid color type: " + A.S(t2) + ".")); } }; A.PngDecoder_decodeFrame_closure.prototype = { call$1(i) { return i; }, $signature: 121 }; A.Image0.prototype = { $add(_, other) { var t2, w, t3, t4, y, x, t5, c1, c2, _this = this, t1 = other.height, h = Math.min(A.checkNum(_this.height), A.checkNum(t1)); t1 = _this.width; t2 = other.width; w = Math.min(A.checkNum(t1), A.checkNum(t2)); for (t3 = _this.data, t4 = other.data, y = 0; y < h; ++y) for (x = 0; x < w; ++x) { t5 = y * t1 + x; c1 = t3[t5]; c2 = t4[y * t2 + x]; t3[t5] = (B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 24 & 255) + (c2 >>> 24 & 255), 0, 255)) << 24 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 16 & 255) + (c2 >>> 16 & 255), 0, 255)) << 16 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 8 & 255) + (c2 >>> 8 & 255), 0, 255)) << 8 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 & 255) + (c2 & 255), 0, 255))) >>> 0; } return _this; }, $sub(_, other) { var t2, w, t3, t4, y, x, t5, c1, c2, _this = this, t1 = other.height, h = Math.min(A.checkNum(_this.height), A.checkNum(t1)); t1 = _this.width; t2 = other.width; w = Math.min(A.checkNum(t1), A.checkNum(t2)); for (t3 = _this.data, t4 = other.data, y = 0; y < h; ++y) for (x = 0; x < w; ++x) { t5 = y * t1 + x; c1 = t3[t5]; c2 = t4[y * t2 + x]; t3[t5] = (B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 24 & 255) - (c2 >>> 24 & 255), 0, 255)) << 24 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 16 & 255) - (c2 >>> 16 & 255), 0, 255)) << 16 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 8 & 255) - (c2 >>> 8 & 255), 0, 255)) << 8 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 & 255) - (c2 & 255), 0, 255))) >>> 0; } return _this; }, $mul(_, other) { var t2, w, y, x, t3, c1, c2, r2, t4, t5, _this = this, t1 = other.get$height(other), h = Math.min(A.checkNum(_this.height), A.checkNum(t1)); t1 = _this.width; t2 = other.get$width(other); w = Math.min(A.checkNum(t1), A.checkNum(t2)); for (t2 = _this.data, y = 0; y < h; ++y) for (x = 0; x < w; ++x) { t3 = y * t1 + x; c1 = t2[t3]; c2 = other.getPixel$2(x, y); r2 = c2.$and(0, 255); t4 = c2.$shr(0, 8); t5 = c2.$shr(0, 16); t2[t3] = (B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 24 & 255) * (c2.$shr(0, 24) & 255), 0, 255)) << 24 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 16 & 255) * (t5 & 255), 0, 255)) << 16 | B.JSNumber_methods.toInt$0(B.JSInt_methods.clamp$2((c1 >>> 8 & 255) * (t4 & 255), 0, 255)) << 8 | B.JSNumber_methods.toInt$0(B.JSNumber_methods.clamp$2((c1 & 255) * r2, 0, 255))) >>> 0; } return _this; }, get$length(_) { return this.data.length; }, $index(_, index) { return this.data[index]; }, $indexSet(_, index, color) { this.data[index] = color; } }; A.ImageException.prototype = { toString$0(_) { return "ImageException: " + this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A.InputBuffer.prototype = { get$length(_) { return this.end - this.offset; }, $index(_, index) { return J.$index$asx(this.buffer, this.offset + index); }, $indexSet(_, index, value) { J.$indexSet$ax(this.buffer, this.offset + index, value); return value; }, subset$1(count) { var pos = this.offset; return A.InputBuffer$(this.buffer, true, count, pos); }, readByte$0() { return J.$index$asx(this.buffer, this.offset++); }, readBytes$1(count) { var _this = this, pos = _this.offset, bytes = A.InputBuffer$(_this.buffer, true, count, pos); _this.offset = _this.offset + (bytes.end - bytes.offset); return bytes; }, readString$1(len) { var codes, t1, t2, t3, t4, _this = this; if (len == null) { codes = A._setArrayType([], type$.JSArray_int); for (t1 = _this.end, t2 = _this.buffer, t3 = J.getInterceptor$asx(t2); t4 = _this.offset, t4 < t1;) { _this.offset = t4 + 1; t4 = t3.$index(t2, t4); if (t4 === 0) return A.String_String$fromCharCodes(codes, 0, null); codes.push(t4); } throw A.wrapException(A.ImageException$("EOF reached without finding string terminator")); } return A.String_String$fromCharCodes(_this.readBytes$1(len).toUint8List$0(), 0, null); }, readString$0() { return this.readString$1(null); }, readUint16$0() { var t1 = this.buffer, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, this.offset++); t1 = t2.$index(t1, this.offset++); return (t3 & 255) << 8 | t1 & 255; }, readUint32$0() { var _this = this, t1 = _this.buffer, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, _this.offset++), t4 = t2.$index(t1, _this.offset++), t5 = t2.$index(t1, _this.offset++); t1 = t2.$index(t1, _this.offset++); return ((t3 & 255) << 24 | (t4 & 255) << 16 | (t5 & 255) << 8 | t1 & 255) >>> 0; }, toUint8List$0() { var _this = this, t1 = _this.offset, len = _this.end - t1 - 0, t2 = _this.buffer; if (type$.Uint8List._is(t2)) { t1 = J.getInterceptor$x(t2); return J.asUint8List$2$x(t1.get$buffer(t2), t1.get$offsetInBytes(t2) + _this.offset, len); } t1 = J.sublist$2$ax(t2, t1, t1 + len); return new Uint8Array(A._ensureNativeList(t1)); } }; A.ImageCropper.prototype = { cropImage$1$sourcePath(sourcePath) { var _null = null; return $.$get$ImageCropperPlatform__instance().cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings(_null, B.List_EGJ, B.ImageCompressFormat_0, 90, B.CropStyle_0, _null, _null, sourcePath, _null); } }; A.ImageCropperPlugin.prototype = { cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings) { return this.cropImage$body$ImageCropperPlugin(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings); }, cropImage$body$ImageCropperPlugin(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_CroppedFile); var $async$cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start for (; false;) break; throw A.wrapException("must provide WebUiSettings to run on Web"); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings, $async$completer); } }; A.Promise1.prototype = {}; A.BindConfiguration.prototype = {}; A.Data.prototype = {}; A.Boundary.prototype = {}; A.ViewPort.prototype = {}; A.Options.prototype = {}; A.CroppieJS.prototype = {}; A.MethodChannelImageCropper.prototype = { cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings) { return this.cropImage$body$MethodChannelImageCropper(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings); }, cropImage$body$MethodChannelImageCropper(aspectRatio, aspectRatioPresets, compressFormat, compressQuality, cropStyle, maxHeight, maxWidth, sourcePath, uiSettings) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_CroppedFile), $async$returnValue, t1, t2, $arguments, resultPath; var $async$cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._arrayInstanceType(aspectRatioPresets)._eval$1("MappedListIterable<1,String>"); t2 = type$.String; $arguments = A.LinkedHashMap_LinkedHashMap$_literal(["source_path", sourcePath, "max_width", maxWidth, "max_height", maxHeight, "ratio_x", null, "ratio_y", null, "aspect_ratio_presets", A.List_List$of(new A.MappedListIterable(aspectRatioPresets, A.settings__aspectRatioPresetName$closure(), t1), true, t1._eval$1("ListIterable.E")), "crop_style", A.cropStyleName(cropStyle), "compress_format", A.compressFormatName(compressFormat), "compress_quality", compressQuality], t2, type$.dynamic); $async$goto = 3; return A._asyncAwait(B.MethodChannel_U8c._invokeMethod$1$3$arguments$missingOk("cropImage", $arguments, false, t2), $async$cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings); case 3: // returning from await. resultPath = $async$result; $async$returnValue = resultPath == null ? null : new A.CroppedFile(resultPath); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$cropImage$9$aspectRatio$aspectRatioPresets$compressFormat$compressQuality$cropStyle$maxHeight$maxWidth$sourcePath$uiSettings, $async$completer); } }; A.CroppedFileBase.prototype = {}; A.CroppedFile.prototype = { get$_html0$_bytes() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this; var $async$get$_html0$_bytes = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = A.readBytes(A.Uri_parse($async$self.path, 0, null)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$get$_html0$_bytes, $async$completer); }, readAsBytes$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this, $async$temp1; var $async$readAsBytes$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = A; $async$goto = 3; return A._asyncAwait($async$self.get$_html0$_bytes(), $async$readAsBytes$0); case 3: // returning from await. $async$returnValue = $async$temp1.Future_Future$value($async$result, type$.Uint8List); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$readAsBytes$0, $async$completer); } }; A.CropAspectRatioPreset.prototype = { toString$0(_) { return "CropAspectRatioPreset." + this._core$_name; } }; A.CropStyle.prototype = { toString$0(_) { return "CropStyle." + this._core$_name; } }; A.ImageCompressFormat.prototype = { toString$0(_) { return "ImageCompressFormat." + this._core$_name; } }; A.ImageCropperPlatform.prototype = {}; A.ImagePicker.prototype = { pickImage$1$source(source) { return $.$get$ImagePickerPlatform__instance().getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source(null, null, null, B.CameraDevice_0, source); } }; A.ImagePickerPlugin.prototype = { getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { return this.getImage$body$ImagePickerPlugin(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source); }, getImage$body$ImagePickerPlugin(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.XFile), $async$returnValue, $async$self = this, files, input; var $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start input = $async$self.createInputElement$3$multiple("image/*", $async$self.computeCaptureAttribute$2(source, preferredCameraDevice), false); J.get$children$x(A._lateReadCheck($async$self.__ImagePickerPlugin__target, "_target")).clear$0(0); J.get$children$x(A._lateReadCheck($async$self.__ImagePickerPlugin__target, "_target")).add$1(0, input); input.click(); $async$goto = 3; return A._asyncAwait($async$self._getSelectedXFiles$1(input), $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source); case 3: // returning from await. files = $async$result; $async$returnValue = A._lateReadCheck($async$self.__ImagePickerPlugin__imageResizer, "_imageResizer").resizeImageIfNeeded$4(J.get$first$ax(files), maxWidth, maxHeight, imageQuality); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source, $async$completer); }, computeCaptureAttribute$2(source, device) { if (source === B.ImageSource_0) return device === B.CameraDevice_1 ? "user" : "environment"; return null; }, _getFilesFromInput$1(input) { return input.files; }, _getSelectedXFiles$1(input) { var t1 = new A._Future($.Zone__current, type$._Future_List_XFile), _completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_List_XFile), t2 = type$._ElementEventStreamImpl_legacy_Event, t3 = new A._ElementEventStreamImpl(input, "change", false, t2), t4 = type$.Null; t3.get$first(t3).then$1$1(0, new A.ImagePickerPlugin__getSelectedXFiles_closure(this, _completer), t4); t2 = new A._ElementEventStreamImpl(input, "error", false, t2); t2.get$first(t2).then$1$1(0, new A.ImagePickerPlugin__getSelectedXFiles_closure0(_completer), t4); return t1; }, createInputElement$3$multiple(accept, capture, multiple) { var element = A.InputElement_InputElement("file"); element.accept = accept; element.multiple = false; if (capture != null) element.setAttribute("capture", capture); return element; } }; A.ImagePickerPlugin__getSelectedXFiles_closure.prototype = { call$1($event) { var t2, input = type$.nullable_FileUploadInputElement._as(J.get$target$x($event)), files = input == null ? null : this.$this._getFilesFromInput$1(input), t1 = this._completer; if ((t1.future._state & 30) === 0 && files != null) { t2 = A.instanceType(files)._eval$1("MappedListIterable"); t1.complete$1(0, A.List_List$of(new A.MappedListIterable(files, new A.ImagePickerPlugin__getSelectedXFiles__closure(), t2), true, t2._eval$1("ListIterable.E"))); } }, $signature: 80 }; A.ImagePickerPlugin__getSelectedXFiles__closure.prototype = { call$1(file) { var t1 = (self.URL || self.webkitURL).createObjectURL(file), t2 = file.name, t3 = file.size, t4 = file.lastModified; return A.XFile$(t1, A.DateTime$fromMillisecondsSinceEpoch(t4 == null ? Date.now() : t4, false), t3, file.type, t2); }, $signature: 1172 }; A.ImagePickerPlugin__getSelectedXFiles_closure0.prototype = { call$1($event) { var t1 = this._completer; if ((t1.future._state & 30) === 0) t1.completeError$1($event); }, $signature: 80 }; A.ImageResizer.prototype = { resizeImageIfNeeded$4(file, maxWidth, maxHeight, imageQuality) { return this.resizeImageIfNeeded$body$ImageResizer(file, maxWidth, maxHeight, imageQuality); }, resizeImageIfNeeded$body$ImageResizer(file, maxWidth, maxHeight, imageQuality) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.XFile), $async$returnValue; var $async$resizeImageIfNeeded$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = file; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$resizeImageIfNeeded$4, $async$completer); } }; A.MethodChannelImagePicker.prototype = { getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { return this.getImage$body$MethodChannelImagePicker(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source); }, getImage$body$MethodChannelImagePicker(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_XFile), $async$returnValue, t1, path; var $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; $async$goto = 3; return A._asyncAwait(B.MethodChannel_eVZ._invokeMethod$1$3$arguments$missingOk("pickImage", A.LinkedHashMap_LinkedHashMap$_literal(["source", source.index, "maxWidth", maxWidth, "maxHeight", maxHeight, "imageQuality", imageQuality, "cameraDevice", preferredCameraDevice.index], t1, type$.dynamic), false, t1), $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source); case 3: // returning from await. path = $async$result; $async$returnValue = path != null ? A.XFile$(path, null, null, null, null) : null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source, $async$completer); } }; A.ImagePickerPlatform.prototype = {}; A.CameraDevice.prototype = { toString$0(_) { return "CameraDevice." + this._core$_name; } }; A.ImageSource.prototype = { toString$0(_) { return "ImageSource." + this._core$_name; } }; A.DateSymbols.prototype = { toString$0(_) { return this.NAME; } }; A.DateSymbols_DateSymbols$deserializeFromMap__getStringList.prototype = { call$1($name) { return A.List_List$from(J.$index$asx(this.map, $name), true, type$.String); }, $signature: 1169 }; A.Intl__pluralRule_closure.prototype = { call$1(locale) { return "default"; }, $signature: 108 }; A.NumberSymbols.prototype = { toString$0(_) { return this.NAME; } }; A.DateBuilder.prototype = { setYear$1(x) { this.year = x; }, setMonth$1(x) { this.month = x; }, setDay$1(x) { this.day = x; }, setDayOfYear$1(x) { this.dayOfYear = x; }, setHour$1(x) { this.hour = x; }, setMinute$1(x) { this.minute = x; }, setSecond$1(x) { this.second = x; }, setFractionalSecond$1(x) { this.fractionalSecond = x; }, _verify$6(value, min, max, desc, originalInput, parsed) { var t1, parsedDescription, errorDescription; if (value < min || value > max) { t1 = parsed == null; parsedDescription = t1 ? "" : " Date parsed as " + parsed.toString$0(0) + "."; t1 = t1 ? null : parsed.get$timeZoneOffset(); errorDescription = "Error parsing " + originalInput + ", invalid " + desc + " value: " + value + " in " + A.S(this._date_builder$_locale) + " with time zone offset " + A.S(t1 == null ? "unknown" : t1) + ". Expected value between " + min + " and " + max + "." + parsedDescription + "."; t1 = this._retried; throw A.wrapException(A.FormatException$(t1 > 0 ? errorDescription + (" Failed after " + t1 + " retries.") : errorDescription, null, null)); } }, _verify$5(value, min, max, desc, originalInput) { return this._verify$6(value, min, max, desc, originalInput, null); }, _offsetYear$2(dateTime, offsetYears) { return this._dateTimeConstructor.call$8(A.Primitives_getYear(dateTime) + offsetYears, A.Primitives_getMonth(dateTime), A.Primitives_getDay(dateTime), A.Primitives_getHours(dateTime), A.Primitives_getMinutes(dateTime), A.Primitives_getSeconds(dateTime), A.Primitives_getMilliseconds(dateTime), dateTime.isUtc); }, asDate$1$retries(retries) { var hasCentury, t2, t3, t4, t5, preliminaryResult, now, lowerDate, upperDate, t6, t7, _this = this, t1 = _this._date_builder$_date; if (t1 != null) return t1; if (_this._hasAmbiguousCentury) { t1 = _this.year; hasCentury = t1 < 0 || t1 >= 100; } else hasCentury = true; if (hasCentury) { t1 = _this.year; t2 = _this.month; t3 = _this.dayOfYear; if (t3 === 0) t3 = _this.day; t4 = _this.pm; t5 = _this.hour; t4 = t4 ? t5 + 12 : t5; preliminaryResult = _this._dateTimeConstructor.call$8(t1, t2, t3, t4, _this.minute, _this.second, _this.fractionalSecond, _this.utc); } else { A.clock(); now = A.systemTime(); if (_this.utc) now = now.toUtc$0(); lowerDate = _this._offsetYear$2(now, -80); upperDate = _this._offsetYear$2(now, 20); lowerDate.toString; t1 = B.JSInt_methods._tdivFast$1(A.Primitives_getYear(lowerDate), 100); upperDate.toString; t2 = B.JSInt_methods._tdivFast$1(A.Primitives_getYear(upperDate), 100); t3 = _this.year; t4 = _this.month; t5 = _this.dayOfYear; if (t5 === 0) t5 = _this.day; t6 = _this.pm; t7 = _this.hour; t6 = t6 ? t7 + 12 : t7; t7 = _this._dateTimeConstructor; preliminaryResult = t7.call$8(t2 * 100 + t3, t4, t5, t6, _this.minute, _this.second, _this.fractionalSecond, _this.utc); if (!(B.JSInt_methods.compareTo$1(preliminaryResult._value, upperDate._value) <= 0)) { t2 = _this.year; t3 = _this.month; t4 = _this.dayOfYear; if (t4 === 0) t4 = _this.day; t5 = _this.pm; t6 = _this.hour; t5 = t5 ? t6 + 12 : t6; preliminaryResult = t7.call$8(t1 * 100 + t2, t3, t4, t5, _this.minute, _this.second, _this.fractionalSecond, _this.utc); } } if (_this.utc && hasCentury) { _this._date_builder$_date = preliminaryResult; t1 = preliminaryResult; } else t1 = _this._date_builder$_date = _this._correctForErrors$2(preliminaryResult, retries); t1.toString; return t1; }, asDate$0() { return this.asDate$1$retries(3); }, _correctForErrors$2(result, retries) { var t1, leapYear, resultDayOfYear, t2, tryAgain, expectedDayOfYear, adjusted, _this = this; if (retries <= 0) return result; result.toString; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(result), 2, 29, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); leapYear = A.Primitives_getMonth(new A.DateTime(t1, false)) === 2; resultDayOfYear = A.dayOfYear(A.Primitives_getMonth(result), A.Primitives_getDay(result), leapYear); if (!_this.utc) if (result.isUtc) { t1 = _this.pm; t2 = _this.hour; t1 = t1 ? t2 + 12 : t2; if (A.Primitives_getHours(result) === t1) if (A.Primitives_getDay(result) === resultDayOfYear) Date.now(); t1 = true; } else t1 = false; else t1 = false; if (t1) { ++_this._retried; return _this.asDate$1$retries(retries - 1); } if (_this.dateOnly && A.Primitives_getHours(result) !== 0) { tryAgain = _this.asDate$1$retries(retries - 1); if (!J.$eq$(tryAgain, result)) return tryAgain; expectedDayOfYear = _this.dayOfYear; if (expectedDayOfYear === 0) expectedDayOfYear = A.dayOfYear(_this.month, _this.day, leapYear); adjusted = result.add$1(0, A.Duration$(0, (expectedDayOfYear - resultDayOfYear) * 24 - A.Primitives_getHours(result), 0, 0, 0, 0)); if (A.Primitives_getHours(adjusted) === 0) return adjusted; if (A.dayOfYear(A.Primitives_getMonth(adjusted), A.Primitives_getDay(adjusted), leapYear) !== expectedDayOfYear) return result; return adjusted; } return result; } }; A.DateFormat.prototype = { format$1(_, date) { var t1, t2, _i, t3; for (t1 = this.get$_formatFields(), t2 = t1.length, _i = 0, t3 = ""; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t3 += A.S(J.format$1$x(t1[_i], date)); return t3.charCodeAt(0) == 0 ? t3 : t3; }, _date_format$_parse$3$strict$utc(inputString, strict, utc) { var stream, t2, _i, date, minimumDate, correspondingDay, _this = this, dateFields = new A.DateBuilder(_this._date_format$_locale, _this.dateTimeConstructor), t1 = _this._dateOnly; dateFields.dateOnly = t1 == null ? _this._dateOnly = _this.get$_checkDateOnly() : t1; stream = new A.IntlStream(inputString); for (t1 = _this.get$_formatFields(), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) J.parse$2$z(t1[_i], stream, dateFields); if (strict && stream.index < stream.contents.length) throw A.wrapException(A.FormatException$("Characters remaining after date parsing in " + inputString, null, null)); if (strict) { dateFields._verify$5(dateFields.month, 1, 12, "month", inputString); t1 = dateFields.pm; t2 = dateFields.hour; dateFields._verify$5(t1 ? t2 + 12 : t2, 0, 23, "hour", inputString); dateFields._verify$5(dateFields.minute, 0, 59, "minute", inputString); dateFields._verify$5(dateFields.second, 0, 59, "second", inputString); dateFields._verify$5(dateFields.fractionalSecond, 0, 999, "fractional second", inputString); date = dateFields.asDate$0(); if (dateFields.dateOnly) { date.toString; t1 = A.Primitives_getHours(date) === 1; } else t1 = false; if (t1) minimumDate = 0; else { date.toString; minimumDate = A.Primitives_getHours(date); } t1 = dateFields.pm; t2 = dateFields.hour; t1 = t1 ? t2 + 12 : t2; dateFields._verify$6(t1, minimumDate, A.Primitives_getHours(date), "hour", inputString, date); if (dateFields.dayOfYear > 0) { date.toString; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date), 2, 29, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); correspondingDay = A.dayOfYear(A.Primitives_getMonth(date), A.Primitives_getDay(date), A.Primitives_getMonth(new A.DateTime(t1, false)) === 2); dateFields._verify$6(dateFields.dayOfYear, correspondingDay, correspondingDay, "dayOfYear", inputString, date); } else dateFields._verify$6(dateFields.day, A.Primitives_getDay(date), A.Primitives_getDay(date), "day", inputString, date); dateFields._verify$6(dateFields.year, A.Primitives_getYear(date), A.Primitives_getYear(date), "year", inputString, date); } return dateFields.asDate$0(); }, get$_checkDateOnly() { var t1 = this.get$_formatFields(); return (t1 && B.JSArray_methods).every$1(t1, new A.DateFormat__checkDateOnly_closure()); }, get$_formatFields() { var t2, _this = this, t1 = _this._formatFieldsPrivate; if (t1 == null) { if (_this._date_format$_pattern == null) { _this.addPattern$1("yMMMMd"); _this.addPattern$1("jms"); } t1 = _this._date_format$_pattern; t1.toString; t1 = _this._parsePatternHelper$1(t1); t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); t2 = _this._formatFieldsPrivate = A.List_List$of(new A.ReversedListIterable(t1, t2), true, t2._eval$1("ListIterable.E")); t1 = t2; } return t1; }, _appendPattern$2(inputPattern, separator) { var t1 = this._date_format$_pattern; this._date_format$_pattern = t1 == null ? inputPattern : t1 + separator + A.S(inputPattern); }, addPattern$1(inputPattern) { var t1, _this = this; _this._formatFieldsPrivate = null; t1 = _this._date_format$_locale; if (!J.containsKey$1$x(J.$index$asx($.$get$dateTimePatterns(), t1), inputPattern)) _this._appendPattern$2(inputPattern, " "); else _this._appendPattern$2(J.$index$asx(J.$index$asx($.$get$dateTimePatterns(), t1), inputPattern), " "); return _this; }, get$dateSymbols() { var t1 = this._date_format$_locale; if (t1 != $.lastDateSymbolLocale) { $.lastDateSymbolLocale = t1; $.cachedDateSymbols = J.$index$asx($.$get$_dateTimeSymbols(), t1); } t1 = $.cachedDateSymbols; t1.toString; return t1; }, get$useNativeDigits() { var t1 = this._useNativeDigits; if (t1 == null) { $.DateFormat__useNativeDigitsByDefault.$index(0, this._date_format$_locale); t1 = this._useNativeDigits = true; } return t1; }, get$digitMatcher() { var _this = this, t1 = _this._digitMatcher; if (t1 != null) return t1; t1 = $.DateFormat__digitMatchers.putIfAbsent$2(0, _this.get$localeZero(), _this.get$_initDigitMatcher()); _this._digitMatcher = t1; t1.toString; return t1; }, get$localeZeroCodeUnit() { var t1 = this._localeZeroCodeUnit; return t1 == null ? this._localeZeroCodeUnit = J._codeUnitAt$1$s(this.get$localeZero(), 0) : t1; }, get$localeZero() { var _this = this, t1 = _this._localeZero; if (t1 == null) { if (_this.get$useNativeDigits()) { t1 = _this.get$dateSymbols().ZERODIGIT; if (t1 == null) t1 = "0"; } else t1 = "0"; t1 = _this._localeZero = t1; } return t1; }, _localizeDigits$1(numberString) { var t1, newDigits, t2, i, t3, t4, _this = this; if (!(_this.get$useNativeDigits() && _this._localeZeroCodeUnit != $.$get$asciiZeroCodeUnit())) return numberString; t1 = numberString.length; newDigits = A.List_List$filled(t1, 0, false, type$.int); for (t2 = _this._date_format$_locale, i = 0; i < t1; ++i) { t3 = B.JSString_methods._codeUnitAt$1(numberString, i); t4 = _this._localeZeroCodeUnit; if (t4 == null) { t4 = _this._localeZero; if (t4 == null) { t4 = _this._useNativeDigits; if (t4 == null) { $.DateFormat__useNativeDigitsByDefault.$index(0, t2); t4 = _this._useNativeDigits = true; } if (t4) { if (t2 != $.lastDateSymbolLocale) { $.lastDateSymbolLocale = t2; $.cachedDateSymbols = J.$index$asx($.$get$_dateTimeSymbols(), t2); } t4 = $.cachedDateSymbols.ZERODIGIT; if (t4 == null) t4 = "0"; } else t4 = "0"; t4 = _this._localeZero = t4; } t4 = _this._localeZeroCodeUnit = B.JSString_methods._codeUnitAt$1(t4, 0); } newDigits[i] = t3 + t4 - $.$get$asciiZeroCodeUnit(); } return A.String_String$fromCharCodes(newDigits, 0, null); }, _initDigitMatcher$0() { if (!(this.get$useNativeDigits() && this._localeZeroCodeUnit != $.$get$asciiZeroCodeUnit())) return $.$get$asciiDigitMatcher(); var t1 = type$.int; return A.RegExp_RegExp("^[" + A.String_String$fromCharCodes(A.Iterable_Iterable$generate(10, new A.DateFormat__initDigitMatcher_closure(), t1).map$1$1(0, new A.DateFormat__initDigitMatcher_closure0(this), t1).toList$0(0), 0, null) + "]+", true, false, false, false); }, _parsePatternHelper$1(pattern) { var matched, parsed; if (pattern.length === 0) return A._setArrayType([], type$.JSArray__DateFormatField); matched = this._date_format$_match$1(pattern); if (matched == null) return A._setArrayType([], type$.JSArray__DateFormatField); parsed = this._parsePatternHelper$1(B.JSString_methods.substring$1(pattern, matched.fullPattern$0().length)); parsed.push(matched); return parsed; }, _date_format$_match$1(pattern) { var i, t1, match, t2; for (i = 0; t1 = $.$get$DateFormat__matchers(), i < 3; ++i) { match = t1[i].firstMatch$1(pattern); if (match != null) { t1 = A.DateFormat__fieldConstructors()[i]; t2 = match._match[0]; t2.toString; return t1.call$2(t2, this); } } return null; } }; A.DateFormat_dateTimeConstructor_closure.prototype = { call$8(year, month, day, hour24, minute, second, fractionalSecond, utc) { var t1; if (utc) { t1 = A.Primitives_valueFromDecomposedDate(year, month, day, hour24, minute, second, fractionalSecond, true); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, true); } else { t1 = A.Primitives_valueFromDecomposedDate(year, month, day, hour24, minute, second, fractionalSecond, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return new A.DateTime(t1, false); } }, "call*": "call$8", $requiredArgCount: 8, $signature: 1166 }; A.DateFormat__checkDateOnly_closure.prototype = { call$1(each) { return each.get$forDate(); }, $signature: 1163 }; A.DateFormat__initDigitMatcher_closure.prototype = { call$1(i) { return i; }, $signature: 121 }; A.DateFormat__initDigitMatcher_closure0.prototype = { call$1(i) { return this.$this.get$localeZeroCodeUnit() + i; }, $signature: 121 }; A.DateFormat__fieldConstructors_closure.prototype = { call$2(pattern, $parent) { var t1 = A._DateFormatQuotedField__patchQuotes(pattern); B.JSString_methods.trim$0(t1); return new A._DateFormatQuotedField(pattern, t1, $parent); }, $signature: 1162 }; A.DateFormat__fieldConstructors_closure0.prototype = { call$2(pattern, $parent) { J.trim$0$s(pattern); return new A._DateFormatPatternField(pattern, $parent); }, $signature: 1161 }; A.DateFormat__fieldConstructors_closure1.prototype = { call$2(pattern, $parent) { J.trim$0$s(pattern); return new A._DateFormatLiteralField(pattern, $parent); }, $signature: 1160 }; A._DateFormatField.prototype = { get$forDate() { return true; }, fullPattern$0() { return this.pattern; }, toString$0(_) { return this.pattern; }, format$1(_, date) { return this.pattern; }, parseLiteral$1(input) { var t1 = this.pattern; if (input.read$1(0, t1.length) !== t1) { this.throwFormatException$1(input); A.ReachabilityError$(string$.x60null_t); } }, throwFormatException$1(stream) { throw A.wrapException(A.FormatException$("Trying to read " + this.toString$0(0) + " from " + A.S(stream.contents) + " at position " + stream.index, null, null)); } }; A._DateFormatLiteralField.prototype = { parse$2(_, input, dateFields) { this.parseLiteral$1(input); } }; A._DateFormatQuotedField.prototype = { fullPattern$0() { return this._fullPattern; }, parse$2(_, input, dateFields) { this.parseLiteral$1(input); } }; A._DateFormatPatternField.prototype = { format$1(_, date) { return this.formatField$1(date); }, parse$2(_, input, dateFields) { this.parseField$2(input, dateFields); }, get$forDate() { var t1 = this._forDate; return t1 == null ? this._forDate = B.JSString_methods.contains$1("cdDEGLMQvyZz", this.pattern[0]) : t1; }, parseField$2(input, builder) { var t1, t2, exception, _this = this; try { t1 = _this.pattern; switch (t1[0]) { case "a": if (_this.parseEnumeratedString$2(input, _this.parent.get$dateSymbols().AMPMS) === 1) builder.pm = true; break; case "c": _this.parseStandaloneDay$1(input); break; case "d": _this.handleNumericField$2(input, builder.get$setDay()); break; case "D": _this.handleNumericField$2(input, builder.get$setDayOfYear()); break; case "E": t2 = _this.parent; _this.parseEnumeratedString$2(input, t1.length >= 4 ? t2.get$dateSymbols().WEEKDAYS : t2.get$dateSymbols().SHORTWEEKDAYS); break; case "G": t2 = _this.parent; _this.parseEnumeratedString$2(input, t1.length >= 4 ? t2.get$dateSymbols().ERANAMES : t2.get$dateSymbols().ERAS); break; case "h": _this.handleNumericField$2(input, builder.get$setHour()); if (builder.hour === 12) builder.hour = 0; break; case "H": _this.handleNumericField$2(input, builder.get$setHour()); break; case "K": _this.handleNumericField$2(input, builder.get$setHour()); break; case "k": _this.handleNumericField$3(input, builder.get$setHour(), -1); break; case "L": _this.parseStandaloneMonth$2(input, builder); break; case "M": _this.parseMonth$2(input, builder); break; case "m": _this.handleNumericField$2(input, builder.get$setMinute()); break; case "Q": break; case "S": _this.handleNumericField$2(input, builder.get$setFractionalSecond()); break; case "s": _this.handleNumericField$2(input, builder.get$setSecond()); break; case "v": break; case "y": _this.handleNumericField$2(input, builder.get$setYear()); builder._hasAmbiguousCentury = t1.length === 2; break; case "z": break; case "Z": break; default: return; } } catch (exception) { _this.throwFormatException$1(input); A.ReachabilityError$(string$.x60null_t); } }, formatField$1(date) { var hours, index, t2, era, hour, year, _this = this, _s1_ = "0", t1 = _this.pattern; switch (t1[0]) { case "a": date.toString; hours = A.Primitives_getHours(date); index = hours >= 12 && hours < 24 ? 1 : 0; return _this.parent.get$dateSymbols().AMPMS[index]; case "c": return _this.formatStandaloneDay$1(date); case "d": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getDay(date), t1, _s1_)); case "D": t1 = t1.length; date.toString; t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date), 2, 29, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.dayOfYear(A.Primitives_getMonth(date), A.Primitives_getDay(date), A.Primitives_getMonth(new A.DateTime(t2, false)) === 2), t1, _s1_)); case "E": t2 = _this.parent; t1 = t1.length >= 4 ? t2.get$dateSymbols().WEEKDAYS : t2.get$dateSymbols().SHORTWEEKDAYS; date.toString; return t1[B.JSInt_methods.$mod(A.Primitives_getWeekday(date), 7)]; case "G": date.toString; era = A.Primitives_getYear(date) > 0 ? 1 : 0; t2 = _this.parent; return t1.length >= 4 ? t2.get$dateSymbols().ERANAMES[era] : t2.get$dateSymbols().ERAS[era]; case "h": date.toString; hours = A.Primitives_getHours(date); if (A.Primitives_getHours(date) > 12) hours -= 12; if (hours === 0) hours = 12; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + hours, t1.length, _s1_)); case "H": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getHours(date), t1, _s1_)); case "K": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + B.JSInt_methods.$mod(A.Primitives_getHours(date), 12), t1, _s1_)); case "k": date.toString; hour = A.Primitives_getHours(date) === 0 ? 24 : A.Primitives_getHours(date); return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + hour, t1.length, _s1_)); case "L": return _this.formatStandaloneMonth$1(date); case "M": return _this.formatMonth$1(date); case "m": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getMinutes(date), t1, _s1_)); case "Q": return _this.formatQuarter$1(date); case "S": return _this.formatFractionalSeconds$1(date); case "s": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getSeconds(date), t1, _s1_)); case "v": return _this.formatTimeZoneId$1(date); case "y": date.toString; year = A.Primitives_getYear(date); if (year < 0) year = -year; t1 = t1.length; t2 = _this.parent; return t1 === 2 ? t2._localizeDigits$1(B.JSString_methods.padLeft$2("" + B.JSInt_methods.$mod(year, 100), 2, _s1_)) : t2._localizeDigits$1(B.JSString_methods.padLeft$2("" + year, t1, _s1_)); case "z": return _this.formatTimeZone$1(date); case "Z": return _this.formatTimeZoneRFC$1(date); default: return ""; } }, handleNumericField$3(input, setter, offset) { var t1 = this.parent, result = input.nextInteger$2$digitMatcher$zeroDigit(t1.get$digitMatcher(), t1.get$localeZeroCodeUnit()); if (result == null) { this.throwFormatException$1(input); A.ReachabilityError$(string$.x60null_t); } setter.call$1(result + offset); }, handleNumericField$2(input, setter) { return this.handleNumericField$3(input, setter, 0); }, parseEnumeratedString$2(input, possibilities) { var longestResult, results = new A.IntlStream(possibilities).findIndexes$1(new A._DateFormatPatternField_parseEnumeratedString_closure(input)); if (results.length === 0) { this.throwFormatException$1(input); A.ReachabilityError$(string$.x60null_t); } B.JSArray_methods.sort$1(results, new A._DateFormatPatternField_parseEnumeratedString_closure0(possibilities)); longestResult = B.JSArray_methods.get$last(results); input.read$1(0, J.get$length$asx(possibilities[longestResult])); return longestResult; }, formatMonth$1(date) { var t1 = this.pattern.length, t2 = this.parent; switch (t1) { case 5: t1 = t2.get$dateSymbols().NARROWMONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; case 4: t1 = t2.get$dateSymbols().MONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; case 3: t1 = t2.get$dateSymbols().SHORTMONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; default: date.toString; return t2._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getMonth(date), t1, "0")); } }, parseMonth$2(input, dateFields) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().NARROWMONTHS; break; case 4: possibilities = _this.parent.get$dateSymbols().MONTHS; break; case 3: possibilities = _this.parent.get$dateSymbols().SHORTMONTHS; break; default: return _this.handleNumericField$2(input, dateFields.get$setMonth()); } dateFields.month = _this.parseEnumeratedString$2(input, possibilities) + 1; }, formatFractionalSeconds$1(date) { var t1, basic, t2; date.toString; t1 = this.parent; basic = t1._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getMilliseconds(date), 3, "0")); t2 = this.pattern.length - 3; if (t2 > 0) return basic + t1._localizeDigits$1(B.JSString_methods.padLeft$2("0", t2, "0")); else return basic; }, formatStandaloneDay$1(date) { var t1 = this.parent; switch (this.pattern.length) { case 5: t1 = t1.get$dateSymbols().STANDALONENARROWWEEKDAYS; date.toString; return t1[B.JSInt_methods.$mod(A.Primitives_getWeekday(date), 7)]; case 4: t1 = t1.get$dateSymbols().STANDALONEWEEKDAYS; date.toString; return t1[B.JSInt_methods.$mod(A.Primitives_getWeekday(date), 7)]; case 3: t1 = t1.get$dateSymbols().STANDALONESHORTWEEKDAYS; date.toString; return t1[B.JSInt_methods.$mod(A.Primitives_getWeekday(date), 7)]; default: date.toString; return t1._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getDay(date), 1, "0")); } }, parseStandaloneDay$1(input) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().STANDALONENARROWWEEKDAYS; break; case 4: possibilities = _this.parent.get$dateSymbols().STANDALONEWEEKDAYS; break; case 3: possibilities = _this.parent.get$dateSymbols().STANDALONESHORTWEEKDAYS; break; default: return _this.handleNumericField$2(input, new A._DateFormatPatternField_parseStandaloneDay_closure()); } _this.parseEnumeratedString$2(input, possibilities); }, formatStandaloneMonth$1(date) { var t1 = this.pattern.length, t2 = this.parent; switch (t1) { case 5: t1 = t2.get$dateSymbols().STANDALONENARROWMONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; case 4: t1 = t2.get$dateSymbols().STANDALONEMONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; case 3: t1 = t2.get$dateSymbols().STANDALONESHORTMONTHS; date.toString; return t1[A.Primitives_getMonth(date) - 1]; default: date.toString; return t2._localizeDigits$1(B.JSString_methods.padLeft$2("" + A.Primitives_getMonth(date), t1, "0")); } }, parseStandaloneMonth$2(input, dateFields) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().STANDALONENARROWMONTHS; break; case 4: possibilities = _this.parent.get$dateSymbols().STANDALONEMONTHS; break; case 3: possibilities = _this.parent.get$dateSymbols().STANDALONESHORTMONTHS; break; default: return _this.handleNumericField$2(input, dateFields.get$setMonth()); } dateFields.month = _this.parseEnumeratedString$2(input, possibilities) + 1; }, formatQuarter$1(date) { var quarter, t1, t2; date.toString; quarter = B.JSNumber_methods.toInt$0((A.Primitives_getMonth(date) - 1) / 3); t1 = this.pattern.length; t2 = this.parent; switch (t1) { case 4: return t2.get$dateSymbols().QUARTERS[quarter]; case 3: return t2.get$dateSymbols().SHORTQUARTERS[quarter]; default: return t2._localizeDigits$1(B.JSString_methods.padLeft$2("" + (quarter + 1), t1, "0")); } }, formatTimeZoneId$1(date) { throw A.wrapException(A.UnimplementedError$(null)); }, formatTimeZone$1(date) { throw A.wrapException(A.UnimplementedError$(null)); }, formatTimeZoneRFC$1(date) { throw A.wrapException(A.UnimplementedError$(null)); } }; A._DateFormatPatternField_parseEnumeratedString_closure.prototype = { call$1(each) { return this.input.peek$1(J.get$length$asx(each)) === each; }, $signature: 125 }; A._DateFormatPatternField_parseEnumeratedString_closure0.prototype = { call$2(a, b) { var t1 = this.possibilities; return B.JSInt_methods.compareTo$1(J.get$length$asx(t1[a]), J.get$length$asx(t1[b])); }, $signature: 327 }; A._DateFormatPatternField_parseStandaloneDay_closure.prototype = { call$1(x) { return x; }, $signature: 89 }; A.IntlStream.prototype = { read$1(_, howMany) { var result = this.peek$1(howMany); this.index += howMany; return result; }, peek$1(howMany) { var t1 = this.contents, t2 = this.index; return typeof t1 == "string" ? B.JSString_methods.substring$2(t1, t2, Math.min(t2 + howMany, t1.length)) : J.sublist$2$ax(t1, t2, t2 + howMany); }, findIndexes$1(f) { var t1, t2, _this = this, results = []; for (t1 = _this.contents; t2 = _this.index, t2 < t1.length;) { _this.index = t2 + 1; if (f.call$1(t1[t2])) results.push(_this.index - 1); } return results; }, nextInteger$2$digitMatcher$zeroDigit(digitMatcher, zeroDigit) { var newDigits, i, _this = this, t1 = digitMatcher == null ? $.$get$asciiDigitMatcher() : digitMatcher, string = t1.stringMatch$1(_this.peek$1(_this.contents.length - _this.index)); if (string == null || string.length === 0) return null; t1 = string.length; _this.read$1(0, t1); if (zeroDigit != null && zeroDigit !== $.$get$asciiZeroCodeUnit()) { newDigits = A.List_List$filled(t1, 0, false, type$.int); for (i = 0; i < t1; ++i) newDigits[i] = B.JSString_methods._codeUnitAt$1(string, i) - zeroDigit + $.$get$asciiZeroCodeUnit(); string = A.String_String$fromCharCodes(newDigits, 0, null); } return A.int_parse(string, null); } }; A.NumberFormat.prototype = { format$1(_, number) { var t2, t3, _this = this, t1 = typeof number == "number"; if (t1 && isNaN(number)) return _this._symbols.NAN; if (t1) t1 = number == 1 / 0 || number == -1 / 0; else t1 = false; if (t1) { t1 = J.get$isNegative$n(number) ? _this.negativePrefix : _this.positivePrefix; return t1 + _this._symbols.INFINITY; } t1 = J.getInterceptor$in(number); t2 = t1.get$isNegative(number) ? _this.negativePrefix : _this.positivePrefix; t3 = _this._number_format$_buffer; t3._contents += t2; t2 = t1.abs$0(number); if (_this._useExponentialNotation) _this._formatExponential$1(t2); else _this._formatFixed$1(t2); t2 = t3._contents += t1.get$isNegative(number) ? _this.negativeSuffix : _this.positiveSuffix; t3._contents = ""; return t2.charCodeAt(0) == 0 ? t2 : t2; }, _formatExponential$1(number) { var exponent, mantissa, t1, _this = this; if (number === 0) { _this._formatFixed$1(number); _this._formatExponent$1(0); return; } exponent = B.JSNumber_methods.floor$0(Math.log(number) / $.$get$_ln100()); mantissa = number / Math.pow(10, exponent); t1 = _this.maximumIntegerDigits; if (t1 > 1 && t1 > _this.minimumIntegerDigits) for (; B.JSInt_methods.$mod(exponent, t1) !== 0;) { mantissa *= 10; --exponent; } else { t1 = _this.minimumIntegerDigits; if (t1 < 1) { ++exponent; mantissa /= 10; } else { --t1; exponent -= t1; mantissa *= Math.pow(10, t1); } } _this._formatFixed$1(mantissa); _this._formatExponent$1(exponent); }, _formatExponent$1(exponent) { var _this = this, t1 = _this._symbols, t2 = _this._number_format$_buffer, t3 = t2._contents += t1.EXP_SYMBOL; if (exponent < 0) { exponent = -exponent; t2._contents = t3 + t1.MINUS_SIGN; } else if (_this._useSignForPositiveExponent) t2._contents = t3 + t1.PLUS_SIGN; t1 = _this.minimumExponentDigits; t3 = B.JSInt_methods.toString$0(exponent); if (_this._zeroOffset === 0) t2._contents += B.JSString_methods.padLeft$2(t3, t1, "0"); else _this._slowPad$2(t1, t3); }, _floor$1(number) { var t1 = J.getInterceptor$in(number); if (t1.get$isNegative(number) && !J.get$isNegative$n(t1.abs$0(number))) throw A.wrapException(A.ArgumentError$("Internal error: expected positive number, got " + A.S(number), null)); return typeof number == "number" ? t1.floor$0(number) : t1.$tdiv(number, 1); }, _round$1(number) { var t1, fraction; if (typeof number == "number") if (number == 1 / 0 || number == -1 / 0) return $.$get$NumberFormat__maxInt(); else return B.JSNumber_methods.round$0(number); else { t1 = J.getInterceptor$n(number); if (J.$eq$(t1.remainder$1(number, 1), 0)) return number; else { fraction = B.JSNumber_methods.round$0(J.toDouble$0$n(t1.$sub(number, this._floor$1(number)))); return fraction === 0 ? number : t1.$add(number, fraction); } } }, _formatFixed$1(number) { var t1, t2, integerPart, fractionPart, extraIntegerDigits, power, fraction, digitMultiplier, remainingDigits, howManyDigitsTooBig, divisor, paddingDigits, extra, intDigits, integerDigits, digitLength, fractionPresent, i, _this = this, fractionDigits = _this.maximumFractionDigits; if (typeof number == "number") t1 = number == 1 / 0 || number == -1 / 0; else t1 = false; t2 = J.getInterceptor$n(number); if (t1) { integerPart = t2.toInt$0(number); fractionPart = 0; extraIntegerDigits = 0; power = 0; } else { integerPart = _this._floor$1(number); fraction = t2.$sub(number, integerPart); if (J.toInt$0$n(fraction) !== 0) { integerPart = number; fraction = 0; } A.checkNum(fractionDigits); power = A._asIntS(Math.pow(10, fractionDigits)); digitMultiplier = power * _this.multiplier; remainingDigits = J.toInt$0$n(_this._round$1(J.$mul$ns(fraction, digitMultiplier))); if (remainingDigits >= digitMultiplier) { integerPart = J.$add$ansx(integerPart, 1); remainingDigits -= digitMultiplier; } extraIntegerDigits = B.JSInt_methods.$tdiv(remainingDigits, power); fractionPart = B.JSInt_methods.$mod(remainingDigits, power); } if (typeof integerPart == "number" && integerPart > $.$get$NumberFormat__maxInt()) { howManyDigitsTooBig = B.JSNumber_methods.ceil$0(Math.log(A.checkNum(integerPart)) / $.$get$_ln100()) - $.$get$NumberFormat__maxDigits(); divisor = B.JSNumber_methods.round$0(Math.pow(10, howManyDigitsTooBig)); if (divisor === 0) divisor = Math.pow(10, howManyDigitsTooBig); paddingDigits = B.JSString_methods.$mul("0", B.JSInt_methods.toInt$0(howManyDigitsTooBig)); integerPart = B.JSNumber_methods.toInt$0(integerPart / divisor); } else paddingDigits = ""; extra = extraIntegerDigits === 0 ? "" : B.JSInt_methods.toString$0(extraIntegerDigits); intDigits = _this._mainIntegerDigits$1(integerPart); integerDigits = intDigits + (intDigits.length === 0 ? extra : B.JSString_methods.padLeft$2(extra, _this._multiplierDigits, "0")) + paddingDigits; digitLength = integerDigits.length; if (fractionDigits > 0) fractionPresent = _this.minimumFractionDigits > 0 || fractionPart > 0; else fractionPresent = false; if (digitLength !== 0 || _this.minimumIntegerDigits > 0) { integerDigits = B.JSString_methods.$mul("0", _this.minimumIntegerDigits - digitLength) + integerDigits; digitLength = integerDigits.length; for (t1 = _this._number_format$_buffer, t2 = _this._zeroOffset, i = 0; i < digitLength; ++i) { t1._contents += A.Primitives_stringFromCharCode(B.JSString_methods._codeUnitAt$1(integerDigits, i) + t2); _this._number_format$_group$2(digitLength, i); } } else if (!fractionPresent) _this._number_format$_buffer._contents += _this._symbols.ZERO_DIGIT; if (_this._decimalSeparatorAlwaysShown || fractionPresent) _this._number_format$_buffer._contents += _this._symbols.DECIMAL_SEP; _this._formatFractionPart$1(B.JSInt_methods.toString$0(fractionPart + power)); }, _mainIntegerDigits$1(integer) { var digits, t1 = J.getInterceptor$(integer); if (t1.$eq(integer, 0)) return ""; digits = t1.toString$0(integer); return B.JSString_methods.startsWith$1(digits, "-") ? B.JSString_methods.substring$1(digits, 1) : digits; }, _formatFractionPart$1(fractionPart) { var fractionLength0, t2, i, fractionLength = fractionPart.length, t1 = this.minimumFractionDigits; while (true) { fractionLength0 = fractionLength - 1; if (!(B.JSString_methods.codeUnitAt$1(fractionPart, fractionLength0) === $.$get$asciiZeroCodeUnit() && fractionLength > t1 + 1)) break; fractionLength = fractionLength0; } for (t1 = this._number_format$_buffer, t2 = this._zeroOffset, i = 1; i < fractionLength; ++i) t1._contents += A.Primitives_stringFromCharCode(B.JSString_methods._codeUnitAt$1(fractionPart, i) + t2); }, _slowPad$2(numberOfDigits, basic) { var t1, t2, t3, t4, i; for (t1 = basic.length, t2 = numberOfDigits - t1, t3 = this._symbols.ZERO_DIGIT, t4 = this._number_format$_buffer, i = 0; i < t2; ++i) t4._contents += t3; for (t2 = this._zeroOffset, i = 0; i < t1; ++i) t4._contents += A.Primitives_stringFromCharCode(B.JSString_methods._codeUnitAt$1(basic, i) + t2); }, _number_format$_group$2(totalLength, position) { var t1, _this = this, distanceFromEnd = totalLength - position; if (distanceFromEnd <= 1 || _this._groupingSize <= 0) return; t1 = _this._finalGroupingSize; if (distanceFromEnd === t1 + 1) _this._number_format$_buffer._contents += _this._symbols.GROUP_SEP; else if (distanceFromEnd > t1 && B.JSInt_methods.$mod(distanceFromEnd - t1, _this._groupingSize) === 1) _this._number_format$_buffer._contents += _this._symbols.GROUP_SEP; }, toString$0(_) { return "NumberFormat(" + A.S(this._number_format$_locale) + ", " + A.S(this._number_format$_pattern) + ")"; } }; A.NumberFormat_NumberFormat_closure.prototype = { call$1(x) { return this.newPattern; }, $signature: 1159 }; A.NumberFormat_NumberFormat$decimalPattern_closure.prototype = { call$1(x) { return x.DECIMAL_PATTERN; }, $signature: 1155 }; A.NumberFormatParseResult.prototype = {}; A.NumberFormatParser.prototype = { _parse$0() { var trunk, t2, t3, trunkIterator, each, _this = this, t1 = _this.result; t1.positivePrefix = _this._parseAffix$0(); trunk = _this._parseTrunk$0(); t2 = _this._parseAffix$0(); t1.positiveSuffix = t2; t3 = _this.pattern; if (t3._string_iterator$_current === ";") { t3.moveNext$0(); t1.negativePrefix = _this._parseAffix$0(); trunkIterator = new A.StringIterator(trunk); for (; trunkIterator.moveNext$0();) { each = trunkIterator._string_iterator$_current; t2 = t3._string_iterator$_current; if (t2 != each && t2 != null) throw A.wrapException(A.FormatException$("Positive and negative trunks must be the same", trunk, null)); t3.moveNext$0(); } t1.negativeSuffix = _this._parseAffix$0(); } else { t1.negativePrefix = t1.negativePrefix + t1.positivePrefix; t1.negativeSuffix = t2 + t1.negativeSuffix; } t2 = t1.decimalDigits; if (t2 != null) t1.maximumFractionDigits = t1.minimumFractionDigits = t2; }, _parseAffix$0() { var affix = new A.StringBuffer(""), t1 = this.inQuote = false, t2 = this.pattern; while (true) if (!(this.parseCharacterAffix$1(affix) ? t2.moveNext$0() : t1)) break; t1 = affix._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, parseCharacterAffix$1(affix) { var t2, t3, _this = this, t1 = _this.pattern, ch = t1._string_iterator$_current; if (ch == null) return false; if (ch === "'") { t2 = t1.nextIndex; t3 = t1.input; if ((t2 >= t3.length ? null : t3[t2]) === "'") { t1.moveNext$0(); affix._contents += "'"; } else _this.inQuote = !_this.inQuote; return true; } if (_this.inQuote) affix._contents += ch; else switch (ch) { case "#": case "0": case ",": case ".": case ";": return false; case "\xa4": affix._contents += _this.currencySymbol; break; case "%": t1 = _this.result; t2 = t1.multiplier; if (t2 !== 1 && t2 !== 100) throw A.wrapException(B.FormatException_oQ2); t1.multiplier = 100; affix._contents += _this.symbols.PERCENT; break; case "\u2030": t1 = _this.result; t2 = t1.multiplier; if (t2 !== 1 && t2 !== 1000) throw A.wrapException(B.FormatException_oQ2); t1.multiplier = 1000; affix._contents += _this.symbols.PERMILL; break; default: affix._contents += ch; } return true; }, _parseTrunk$0() { var t2, n, effectiveDecimalPos, t3, totalDigits, t4, t5, _this = this, trunk = new A.StringBuffer(""), t1 = _this.pattern, loop = true; while (true) { if (!(t1._string_iterator$_current != null && loop)) break; loop = _this.parseTrunkCharacter$1(trunk); } t2 = _this.zeroDigitCount; if (t2 === 0 && _this.digitLeftCount > 0 && _this.decimalPos >= 0) { n = _this.decimalPos; if (n === 0) n = 1; _this.digitRightCount = _this.digitLeftCount - n; _this.digitLeftCount = n - 1; t2 = _this.zeroDigitCount = 1; } effectiveDecimalPos = _this.decimalPos; if (!(effectiveDecimalPos < 0 && _this.digitRightCount > 0)) { if (effectiveDecimalPos >= 0) { t3 = _this.digitLeftCount; t3 = effectiveDecimalPos < t3 || effectiveDecimalPos > t3 + t2; } else t3 = false; t3 = t3 || _this.groupingCount === 0; } else t3 = true; if (t3) throw A.wrapException(A.FormatException$('Malformed pattern "' + t1.input + '"', null, null)); t1 = _this.digitLeftCount; t2 = t1 + t2; totalDigits = t2 + _this.digitRightCount; t3 = _this.result; t4 = effectiveDecimalPos >= 0; t5 = t4 ? totalDigits - effectiveDecimalPos : 0; t3.maximumFractionDigits = t5; if (t4) { t2 -= effectiveDecimalPos; t3.minimumFractionDigits = t2; if (t2 < 0) t3.minimumFractionDigits = 0; } t2 = t3.minimumIntegerDigits = (t4 ? effectiveDecimalPos : totalDigits) - t1; if (t3.useExponentialNotation) { t3.maximumIntegerDigits = t1 + t2; if (t5 === 0 && t2 === 0) t3.minimumIntegerDigits = 1; } t1 = Math.max(0, _this.groupingCount); t3.finalGroupingSize = t1; if (!_this.groupingSizeSetExplicitly) t3.groupingSize = t1; t3.decimalSeparatorAlwaysShown = effectiveDecimalPos === 0 || effectiveDecimalPos === totalDigits; t1 = trunk._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, parseTrunkCharacter$1(trunk) { var t2, nextChar, t3, _this = this, _null = null, t1 = _this.pattern, ch = t1._string_iterator$_current; switch (ch) { case "#": if (_this.zeroDigitCount > 0) ++_this.digitRightCount; else ++_this.digitLeftCount; t2 = _this.groupingCount; if (t2 >= 0 && _this.decimalPos < 0) _this.groupingCount = t2 + 1; break; case "0": if (_this.digitRightCount > 0) throw A.wrapException(A.FormatException$('Unexpected "0" in pattern "' + t1.input, _null, _null)); ++_this.zeroDigitCount; t2 = _this.groupingCount; if (t2 >= 0 && _this.decimalPos < 0) _this.groupingCount = t2 + 1; break; case ",": t2 = _this.groupingCount; if (t2 > 0) { _this.groupingSizeSetExplicitly = true; _this.result.groupingSize = t2; } _this.groupingCount = 0; break; case ".": if (_this.decimalPos >= 0) throw A.wrapException(A.FormatException$('Multiple decimal separators in pattern "' + t1.toString$0(0) + '"', _null, _null)); _this.decimalPos = _this.digitLeftCount + _this.zeroDigitCount + _this.digitRightCount; break; case "E": trunk._contents += A.S(ch); t2 = _this.result; if (t2.useExponentialNotation) throw A.wrapException(A.FormatException$('Multiple exponential symbols in pattern "' + t1.toString$0(0) + '"', _null, _null)); t2.useExponentialNotation = true; t2.minimumExponentDigits = 0; t1.moveNext$0(); nextChar = t1._string_iterator$_current; if (nextChar === "+") { trunk._contents += A.S(nextChar); t1.moveNext$0(); t2.useSignForPositiveExponent = true; } for (; t3 = t1._string_iterator$_current, t3 === "0";) { trunk._contents += A.S(t3); t1.moveNext$0(); ++t2.minimumExponentDigits; } if (_this.digitLeftCount + _this.zeroDigitCount < 1 || t2.minimumExponentDigits < 1) throw A.wrapException(A.FormatException$('Malformed exponential pattern "' + t1.toString$0(0) + '"', _null, _null)); return false; default: return false; } trunk._contents += A.S(ch); t1.moveNext$0(); return true; } }; A.StringIterator.prototype = { moveNext$0() { var _this = this, t1 = _this.nextIndex, t2 = _this.input; if (t1 >= t2.length) { _this._string_iterator$_current = null; return false; } _this.nextIndex = t1 + 1; _this._string_iterator$_current = t2[t1]; return true; } }; A.UninitializedLocaleData.prototype = { $index(_, key) { return A.canonicalizedLocale(key) === "en_US" ? this.fallbackData : this._throwException$0(); }, containsKey$1(_, key) { if (A.canonicalizedLocale(key) !== "en_US") this._throwException$0(); return true; }, _throwException$0() { throw A.wrapException(new A.LocaleDataException("Locale data has not been initialized, call " + this.message + ".")); }, get$message(receiver) { return this.message; } }; A.LocaleDataException.prototype = { toString$0(_) { return "LocaleDataException: " + this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A.PluralCase.prototype = { toString$0(_) { return "PluralCase." + this._core$_name; } }; A.InvoiceStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess, "-1", t1.colorDanger, "5", B.Color_4287137928, "6", B.Color_4287137928, "-3", t1.colorWarning], type$.legacy_String, type$.legacy_Color); } }; A.RecurringInvoiceStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme.colorSuccess; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1, "3", B.Color_4287137928, "4", t1, "-1", B.Color_4287137928], type$.legacy_String, type$.legacy_Color); } }; A.CreditStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess], type$.legacy_String, type$.legacy_Color); } }; A.PurchaseOrderStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess, "5", t1.colorDanger], type$.legacy_String, type$.legacy_Color); } }; A.QuoteStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess, "-1", t1.colorDanger, "-2", t1.colorWarning], type$.legacy_String, type$.legacy_Color); } }; A.PaymentStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", B.Color_4287137928, "3", t1.colorDanger, "4", t1.colorSuccess, "5", t1.colorPrimary, "6", B.Color_4287137928, "-1", B.Color_4287137928, "-2", B.Color_4287137928], type$.legacy_String, type$.legacy_Color); } }; A.ExpenseStatusColors.prototype = { get$colors() { var t1 = this._colors0$_colorTheme; return A.LinkedHashMap_LinkedHashMap$_literal(["1", B.Color_4287137928, "2", t1.colorPrimary, "3", t1.colorSuccess, "5", t1.colorInfo], type$.legacy_String, type$.legacy_Color); } }; A.FileStorage.prototype = { load$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, flags, buffer, prefs, t1, t2, t3, value; var $async$load$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$load$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; t2 = prefs._preferenceCache; t3 = J.getInterceptor$asx(t2); value = A._asStringQ(t3.$index(t2, t1)); if (value != null) { $async$returnValue = value; // goto return $async$goto = 1; break; } value = A._asStringQ(t3.$index(t2, t1 + "_gzip")); if (value != null) { t1 = A.InputStream$(B.C_Base64Decoder.convert$1(value), 0, null, 0); if (t1.readUint16$0() !== 35615) A.throwExpression(A.ArchiveException$("Invalid GZip Signature")); if (t1.readByte$0() !== 8) A.throwExpression(A.ArchiveException$("Invalid GZip Compression Methos")); flags = t1.readByte$0(); t1.readUint32$0(); t1.readByte$0(); t1.readByte$0(); if ((flags & 4) !== 0) t1.readBytes$1(t1.readUint16$0()); if ((flags & 8) !== 0) t1.readString$0(); if ((flags & 16) !== 0) t1.readString$0(); if ((flags & 2) !== 0) t1.readUint16$0(); t1 = A.Inflate$buffer(t1).output; buffer = type$.List_int._as(B.NativeByteBuffer_methods.asUint8List$2(t1._output_stream$_buffer.buffer, 0, t1.length)); $async$returnValue = B.C_Utf8Codec.decode$1(0, buffer); // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$load$0, $async$completer); }, save$1(_, data) { return this.save$body$FileStorage(0, data); }, save$body$FileStorage(_, data) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, gzipBytes, zipped, e0, exception, t1, prefs0, prefs, $async$exception, $async$exception1; var $async$save$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$save$1); case 3: // returning from await. prefs0 = $async$result; prefs = prefs0; $async$handler = 5; $async$goto = 8; return A._asyncAwait(prefs._setValue$3("String", $async$self.tag, data), $async$save$1); case 8: // returning from await. $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception = $async$currentError; e = A.unwrapException($async$exception); $async$goto = B.JSString_methods.contains$1(A.S(e), "QuotaExceededError") ? 9 : 10; break; case 9: // then t1 = $async$self.tag; $async$goto = 11; return A._asyncAwait(J.remove$1$ax(prefs, t1), $async$save$1); case 11: // returning from await. gzipBytes = new A.GZipEncoder().encode$1(B.C_Utf8Codec.get$encoder().convert$1(data)); zipped = B.C_Base64Codec.get$encoder().convert$1(gzipBytes); $async$handler = 13; $async$goto = 16; return A._asyncAwait(prefs._setValue$3("String", t1 + "_gzip", zipped), $async$save$1); case 16: // returning from await. $async$handler = 4; // goto after finally $async$goto = 15; break; case 13: // catch $async$handler = 12; $async$exception1 = $async$currentError; e0 = A.unwrapException($async$exception1); $async$goto = B.JSString_methods.contains$1(A.S(e0), "QuotaExceededError") ? 17 : 18; break; case 17: // then $async$goto = 19; return A._asyncAwait(J.remove$1$ax(prefs, t1 + "_gzip"), $async$save$1); case 19: // returning from await. case 18: // join // goto after finally $async$goto = 15; break; case 12: // uncaught // goto uncaught $async$goto = 4; break; case 15: // after finally case 10: // join // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$save$1, $async$completer); }, delete$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_FileSystemEntity), $async$returnValue, $async$self = this, prefs, t1; var $async$delete$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$delete$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; prefs.remove$1(0, t1); prefs.remove$1(0, t1 + "_gzip"); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$delete$0, $async$completer); }, exists$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this, prefs, t1, t2, t3; var $async$exists$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$exists$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; t2 = prefs._preferenceCache; t3 = J.getInterceptor$x(t2); $async$returnValue = t3.containsKey$1(t2, t1) || t3.containsKey$1(t2, t1 + "_gzip"); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$exists$0, $async$completer); } }; A.AccountEntity.prototype = { get$isUpdateAvailable() { if (this.disableAutoUpdate) return false; var t1 = A.Version__compare(A.Version_parse(this.currentVersion), A.Version_parse(this.latestVersion)); return t1 < 0; } }; A._$AccountEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "trial_started", serializers.serialize$2$specifiedType(object.trialStarted, B.FullType_h8g), "default_url", serializers.serialize$2$specifiedType(object.defaultUrl, B.FullType_h8g), "report_errors", serializers.serialize$2$specifiedType(object.reportErrors, B.FullType_MtR), "plan", serializers.serialize$2$specifiedType(object.plan, B.FullType_h8g), "plan_expires", serializers.serialize$2$specifiedType(object.planExpires, B.FullType_h8g), "latest_version", serializers.serialize$2$specifiedType(object.latestVersion, B.FullType_h8g), "current_version", serializers.serialize$2$specifiedType(object.currentVersion, B.FullType_h8g), "debug_enabled", serializers.serialize$2$specifiedType(object.debugEnabled, B.FullType_MtR), "is_docker", serializers.serialize$2$specifiedType(object.isDocker, B.FullType_MtR), "is_migrated", serializers.serialize$2$specifiedType(object.isMigrated, B.FullType_MtR), "is_hosted", serializers.serialize$2$specifiedType(object.isHosted, B.FullType_MtR), "is_scheduler_running", serializers.serialize$2$specifiedType(object.isSchedulerRunning, B.FullType_MtR), "disable_auto_update", serializers.serialize$2$specifiedType(object.disableAutoUpdate, B.FullType_MtR), "default_company_id", serializers.serialize$2$specifiedType(object.defaultCompanyId, B.FullType_h8g), "hosted_client_count", serializers.serialize$2$specifiedType(object.hostedClientCount, B.FullType_kjq), "hosted_company_count", serializers.serialize$2$specifiedType(object.hostedCompanyCount, B.FullType_kjq), "set_react_as_default_ap", serializers.serialize$2$specifiedType(object.setReactAsDefaultAP, B.FullType_MtR), "account_sms_verified", serializers.serialize$2$specifiedType(object.accountSmsVerified, B.FullType_MtR), "trial_days_left", serializers.serialize$2$specifiedType(object.trialDaysLeft, B.FullType_kjq)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.AccountEntityBuilder(); A.AccountEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._account_model$_id = t1; break; case "trial_started": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._trialStarted = t1; break; case "default_url": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._defaultUrl = t1; break; case "report_errors": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._reportErrors = t1; break; case "plan": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._plan = t1; break; case "plan_expires": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._planExpires = t1; break; case "latest_version": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._latestVersion = t1; break; case "current_version": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._currentVersion = t1; break; case "debug_enabled": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._debugEnabled = t1; break; case "is_docker": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._isDocker = t1; break; case "is_migrated": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._isMigrated = t1; break; case "is_hosted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._isHosted = t1; break; case "is_scheduler_running": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._isSchedulerRunning = t1; break; case "disable_auto_update": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._disableAutoUpdate = t1; break; case "default_company_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_account_model$_$this()._defaultCompanyId = t1; break; case "hosted_client_count": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_account_model$_$this()._hostedClientCount = t1; break; case "hosted_company_count": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_account_model$_$this()._hostedCompanyCount = t1; break; case "set_react_as_default_ap": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._setReactAsDefaultAP = t1; break; case "account_sms_verified": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_account_model$_$this()._accountSmsVerified = t1; break; case "trial_days_left": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_account_model$_$this()._trialDaysLeft = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uv0; }, get$wireName() { return "AccountEntity"; } }; A._$AccountEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.AccountEntity && _this.id === other.id && _this.trialStarted === other.trialStarted && _this.defaultUrl === other.defaultUrl && _this.reportErrors === other.reportErrors && _this.plan === other.plan && _this.planExpires === other.planExpires && _this.latestVersion === other.latestVersion && _this.currentVersion === other.currentVersion && _this.debugEnabled === other.debugEnabled && _this.isDocker === other.isDocker && _this.isMigrated === other.isMigrated && _this.isHosted === other.isHosted && _this.isSchedulerRunning === other.isSchedulerRunning && _this.disableAutoUpdate === other.disableAutoUpdate && _this.defaultCompanyId === other.defaultCompanyId && _this.hostedClientCount === other.hostedClientCount && _this.hostedCompanyCount === other.hostedCompanyCount && _this.setReactAsDefaultAP === other.setReactAsDefaultAP && _this.accountSmsVerified === other.accountSmsVerified && _this.trialDaysLeft === other.trialDaysLeft; }, get$hashCode(_) { var _this = this, t1 = _this._account_model$__hashCode; return t1 == null ? _this._account_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.trialStarted)), B.JSString_methods.get$hashCode(_this.defaultUrl)), B.JSBool_methods.get$hashCode(_this.reportErrors)), B.JSString_methods.get$hashCode(_this.plan)), B.JSString_methods.get$hashCode(_this.planExpires)), B.JSString_methods.get$hashCode(_this.latestVersion)), B.JSString_methods.get$hashCode(_this.currentVersion)), B.JSBool_methods.get$hashCode(_this.debugEnabled)), B.JSBool_methods.get$hashCode(_this.isDocker)), B.JSBool_methods.get$hashCode(_this.isMigrated)), B.JSBool_methods.get$hashCode(_this.isHosted)), B.JSBool_methods.get$hashCode(_this.isSchedulerRunning)), B.JSBool_methods.get$hashCode(_this.disableAutoUpdate)), B.JSString_methods.get$hashCode(_this.defaultCompanyId)), B.JSInt_methods.get$hashCode(_this.hostedClientCount)), B.JSInt_methods.get$hashCode(_this.hostedCompanyCount)), B.JSBool_methods.get$hashCode(_this.setReactAsDefaultAP)), B.JSBool_methods.get$hashCode(_this.accountSmsVerified)), B.JSInt_methods.get$hashCode(_this.trialDaysLeft))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("AccountEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "trialStarted", _this.trialStarted); t2.add$2(t1, "defaultUrl", _this.defaultUrl); t2.add$2(t1, "reportErrors", _this.reportErrors); t2.add$2(t1, "plan", _this.plan); t2.add$2(t1, "planExpires", _this.planExpires); t2.add$2(t1, "latestVersion", _this.latestVersion); t2.add$2(t1, "currentVersion", _this.currentVersion); t2.add$2(t1, "debugEnabled", _this.debugEnabled); t2.add$2(t1, "isDocker", _this.isDocker); t2.add$2(t1, "isMigrated", _this.isMigrated); t2.add$2(t1, "isHosted", _this.isHosted); t2.add$2(t1, "isSchedulerRunning", _this.isSchedulerRunning); t2.add$2(t1, "disableAutoUpdate", _this.disableAutoUpdate); t2.add$2(t1, "defaultCompanyId", _this.defaultCompanyId); t2.add$2(t1, "hostedClientCount", _this.hostedClientCount); t2.add$2(t1, "hostedCompanyCount", _this.hostedCompanyCount); t2.add$2(t1, "setReactAsDefaultAP", _this.setReactAsDefaultAP); t2.add$2(t1, "accountSmsVerified", _this.accountSmsVerified); t2.add$2(t1, "trialDaysLeft", _this.trialDaysLeft); return t2.toString$0(t1); }, get$id(receiver) { return this.id; } }; A.AccountEntityBuilder.prototype = { get$id(_) { return this.get$_account_model$_$this()._account_model$_id; }, get$_account_model$_$this() { var _this = this, $$v = _this._account_model$_$v; if ($$v != null) { _this._account_model$_id = $$v.id; _this._trialStarted = $$v.trialStarted; _this._defaultUrl = $$v.defaultUrl; _this._reportErrors = $$v.reportErrors; _this._plan = $$v.plan; _this._planExpires = $$v.planExpires; _this._latestVersion = $$v.latestVersion; _this._currentVersion = $$v.currentVersion; _this._debugEnabled = $$v.debugEnabled; _this._isDocker = $$v.isDocker; _this._isMigrated = $$v.isMigrated; _this._isHosted = $$v.isHosted; _this._isSchedulerRunning = $$v.isSchedulerRunning; _this._disableAutoUpdate = $$v.disableAutoUpdate; _this._defaultCompanyId = $$v.defaultCompanyId; _this._hostedClientCount = $$v.hostedClientCount; _this._hostedCompanyCount = $$v.hostedCompanyCount; _this._setReactAsDefaultAP = $$v.setReactAsDefaultAP; _this._accountSmsVerified = $$v.accountSmsVerified; _this._trialDaysLeft = $$v.trialDaysLeft; _this._account_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, _this = this, _s13_ = "AccountEntity", _$result = _this._account_model$_$v; if (_$result == null) { t1 = _this.get$_account_model$_$this()._account_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); t2 = _this.get$_account_model$_$this()._trialStarted; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "trialStarted")); t3 = _this.get$_account_model$_$this()._defaultUrl; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "defaultUrl")); t4 = _this.get$_account_model$_$this()._reportErrors; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "reportErrors")); t5 = _this.get$_account_model$_$this()._plan; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "plan")); t6 = _this.get$_account_model$_$this()._planExpires; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "planExpires")); t7 = _this.get$_account_model$_$this()._latestVersion; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "latestVersion")); t8 = _this.get$_account_model$_$this()._currentVersion; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "currentVersion")); t9 = _this.get$_account_model$_$this()._debugEnabled; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "debugEnabled")); t10 = _this.get$_account_model$_$this()._isDocker; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isDocker")); t11 = _this.get$_account_model$_$this()._isMigrated; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isMigrated")); t12 = _this.get$_account_model$_$this()._isHosted; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isHosted")); t13 = _this.get$_account_model$_$this()._isSchedulerRunning; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isSchedulerRunning")); t14 = _this.get$_account_model$_$this()._disableAutoUpdate; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "disableAutoUpdate")); t15 = _this.get$_account_model$_$this()._defaultCompanyId; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "defaultCompanyId")); t16 = _this.get$_account_model$_$this()._hostedClientCount; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "hostedClientCount")); t17 = _this.get$_account_model$_$this()._hostedCompanyCount; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "hostedCompanyCount")); t18 = _this.get$_account_model$_$this()._setReactAsDefaultAP; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "setReactAsDefaultAP")); t19 = _this.get$_account_model$_$this()._accountSmsVerified; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "accountSmsVerified")); t20 = _this.get$_account_model$_$this()._trialDaysLeft; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "trialDaysLeft")); _$result = A._$AccountEntity$_(t19, t8, t9, t15, t3, t14, t16, t17, t1, t10, t12, t11, t13, t7, t5, t6, t4, t18, t20, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._account_model$_$v = _$result; } }; A.ClientListResponse.prototype = {}; A.ClientItemResponse.prototype = {}; A.ClientEntity.prototype = { get$isStale() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$entityType() { return B.EntityType_client; }, get$listDisplayName() { return this.displayName; }, get$primaryContact() { return B.JSArray_methods.firstWhere$2$orElse(this.contacts._list, new A.ClientEntity_primaryContact_closure(), new A.ClientEntity_primaryContact_closure0()); }, get$emailContacts() { var t1 = this.contacts._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.ClientEntity_emailContacts_closure(), t2), true, t2._eval$1("Iterable.E")); return list.length === 0 ? A._setArrayType([this.get$primaryContact()], type$.JSArray_legacy_ClientContactEntity) : list; }, get$hasEmailAddress() { var t1 = this.contacts._list; t1 = new A.WhereIterable(t1, new A.ClientEntity_hasEmailAddress_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); return !t1.get$isEmpty(t1); }, compareTo$5(_, client, sortField, sortAscending, userMap, staticState) { var response, t1, t2, userA, userB, countryA, countryB, currencyA, currencyB, stateA, stateB, languageA, languageB, _null = null, _s8_ = "archived", clientA = sortAscending ? this : client, clientB = sortAscending ? client : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.displayName)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.displayName)), 0, _null).toLowerCase()); break; case "contact_name": response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.get$primaryContact().get$fullName())), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.get$primaryContact().get$fullName())), 0, _null).toLowerCase()); break; case "contact_email": response = B.JSString_methods.compareTo$1(clientA.get$primaryContact().email.toLowerCase(), clientB.get$primaryContact().email.toLowerCase()); break; case "balance": response = B.JSNumber_methods.compareTo$1(clientA.balance, clientB.balance); break; case "credit_balance": response = B.JSNumber_methods.compareTo$1(clientA.creditBalance, clientB.creditBalance); break; case "paid_to_date": response = B.JSNumber_methods.compareTo$1(clientA.paidToDate, clientB.paidToDate); break; case "updated_at": response = B.JSInt_methods.compareTo$1(clientA.updatedAt, clientB.updatedAt); break; case "id_number": response = B.JSString_methods.compareTo$1(clientA.idNumber, clientB.idNumber); break; case "number": response = A.compareNatural(clientA.number.toLowerCase(), clientB.number.toLowerCase()); break; case "website": response = B.JSString_methods.compareTo$1(clientA.website.toLowerCase(), clientB.website.toLowerCase()); break; case "address1": response = B.JSString_methods.compareTo$1(clientA.address1.toLowerCase(), clientB.address1.toLowerCase()); break; case "address2": response = B.JSString_methods.compareTo$1(clientA.address2.toLowerCase(), clientB.address2.toLowerCase()); break; case "phone": response = B.JSString_methods.compareTo$1(clientA.phone.toLowerCase(), clientB.phone.toLowerCase()); break; case "public_notes": response = B.JSString_methods.compareTo$1(clientA.publicNotes.toLowerCase(), clientB.publicNotes.toLowerCase()); break; case "private_notes": response = B.JSString_methods.compareTo$1(clientA.privateNotes.toLowerCase(), clientB.privateNotes.toLowerCase()); break; case "vat_number": response = B.JSString_methods.compareTo$1(clientA.vatNumber.toLowerCase(), clientB.vatNumber.toLowerCase()); break; case "assigned_to_id": case "assigned_to": t1 = clientA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, clientB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by_id": case "created_by": t1 = clientA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, clientB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "country": t1 = staticState.countryMap; t2 = clientA.countryId; t1 = t1._map$_map; countryA = t1.$index(0, t2); if (countryA == null) countryA = A.CountryEntity_CountryEntity(); countryB = t1.$index(0, clientB.countryId); if (countryB == null) countryB = A.CountryEntity_CountryEntity(); response = B.JSString_methods.compareTo$1(countryA.name.toLowerCase(), countryB.name.toLowerCase()); break; case "currency": t1 = staticState.currencyMap; t2 = clientA.settings.currencyId; t1 = t1._map$_map; currencyA = t1.$index(0, t2); if (currencyA == null) currencyA = A.CurrencyEntity_CurrencyEntity(); currencyB = t1.$index(0, clientB.settings.currencyId); if (currencyB == null) currencyB = A.CurrencyEntity_CurrencyEntity(); response = B.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "entity_state": case "state": if (!clientA.get$isArchived() && !clientA.isDeleted) t1 = "active"; else t1 = clientA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!clientB.get$isArchived() && !clientB.isDeleted) t1 = "active"; else t1 = clientB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "language": t1 = staticState.languageMap; t2 = clientA.settings.languageId; t1 = t1._map$_map; languageA = t1.$index(0, t2); if (languageA == null) languageA = A._$LanguageEntity$_("", "", ""); languageB = t1.$index(0, clientB.settings.languageId); if (languageB == null) languageB = A._$LanguageEntity$_("", "", ""); response = B.JSString_methods.compareTo$1(languageA.name.toLowerCase(), languageB.name.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(clientA.createdAt, clientB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(clientA.archivedAt, clientB.archivedAt); break; case "last_login_at": response = B.JSInt_methods.compareTo$1(clientA.lastLogin, clientB.lastLogin); break; case "custom1": response = B.JSString_methods.compareTo$1(clientA.customValue1.toLowerCase(), clientB.customValue1.toLowerCase()); break; case "custom2": response = B.JSString_methods.compareTo$1(clientA.customValue2.toLowerCase(), clientB.customValue2.toLowerCase()); break; case "custom3": response = B.JSString_methods.compareTo$1(clientA.customValue3.toLowerCase(), clientB.customValue3.toLowerCase()); break; case "custom4": response = B.JSString_methods.compareTo$1(clientA.customValue4.toLowerCase(), clientB.customValue4.toLowerCase()); break; case "documents": clientA.documents.toString; response = 0; break; case "group": response = B.JSString_methods.compareTo$1(clientA.groupId, clientB.groupId); break; default: A.print("## ERROR: sort by client." + sortField + " not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(client.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesNameOrEmail$1(filter) { var t1, i, contact; if (A.matchesString(this.name, filter)) return true; for (t1 = this.contacts._list, i = 0; i < t1.length; ++i) { contact = t1[i]; if (A.matchesString(B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName), filter)) return true; if (A.matchesString(contact.email, filter)) return true; } return false; }, matchesFilter$1(filter) { var t1, i, _this = this; for (t1 = _this.contacts._list, i = 0; i < t1.length; ++i) if (t1[i].matchesFilter$1(filter)) return true; return A.matchesStrings(A._setArrayType([_this.displayName, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.city, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var t1, i, value, _this = this; for (t1 = _this.contacts._list, i = 0; i < t1.length; ++i) { value = t1[i].matchesFilterValue$1(filter); if (value != null) return value; } return A.matchesStringsValue(A._setArrayType([_this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.city, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1 && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_edit); actions.push(B.EntityAction_viewStatement); actions.push(B.EntityAction_clientPortal); if (userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_settings); } if (t1 && multiselect) actions.push(B.EntityAction_documents); if (t1 && !multiselect) { if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) actions.push(B.EntityAction_newInvoice); if (userCompany.can$2(B.UserPermission_create, B.EntityType_payment)) actions.push(B.EntityAction_newPayment); if (userCompany.can$2(B.UserPermission_create, B.EntityType_task)) actions.push(B.EntityAction_newTask); if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense)) actions.push(B.EntityAction_newExpense); } if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); t1 = userCompany.isAdmin; if (t1 && !multiselect) actions.push(B.EntityAction_merge); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); if (t1 && !multiselect) actions.push(B.EntityAction_purge); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, get$calculateDisplayName() { var t1 = this.name; if (t1.length !== 0) return t1; else return this.get$primaryContact().get$fullNameOrEmail(); }, get$areAddressesDifferent() { var _this = this; return _this.address1 !== _this.shippingAddress1 || _this.address2 !== _this.shippingAddress2 || _this.city !== _this.shippingCity || _this.state !== _this.shippingState || _this.postalCode !== _this.shippingPostalCode || _this.countryId !== _this.shippingCountryId; }, get$hasCurrency() { var t1 = this.settings.currencyId; return t1 != null && t1.length !== 0; }, getContact$1(contactId) { return B.JSArray_methods.firstWhere$2$orElse(this.contacts._list, new A.ClientEntity_getContact_closure(contactId), new A.ClientEntity_getContact_closure0()); }, get$hasNameSet() { var contact, t1 = this.contacts._list; if (t1.length === 0) return false; contact = B.JSArray_methods.get$first(t1); return this.name.length !== 0 || contact.get$fullName().length !== 0 || contact.email.length !== 0; } }; A.ClientEntity_ClientEntity_closure.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_isPrimary = true; return b; }, $signature: 363 }; A.ClientEntity_primaryContact_closure.prototype = { call$1(contact) { return contact.isPrimary; }, $signature: 144 }; A.ClientEntity_primaryContact_closure0.prototype = { call$0() { return A.ClientContactEntity_ClientContactEntity(); }, $signature: 445 }; A.ClientEntity_emailContacts_closure.prototype = { call$1(contact) { return contact.sendEmail; }, $signature: 144 }; A.ClientEntity_hasEmailAddress_closure.prototype = { call$1(contact) { var t1 = contact.email; return t1.length !== 0; }, $signature: 144 }; A.ClientEntity_getContact_closure.prototype = { call$1(contact) { return contact.id === this.contactId; }, $signature: 144 }; A.ClientEntity_getContact_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.ClientContactEntity.prototype = { get$fullName() { return B.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, get$fullNameOrEmail() { if (this.get$fullName().length !== 0) return this.get$fullName(); else return this.email; }, get$entityType() { return B.EntityType_contact; }, matchesFilter$1(filter) { var _this = this; if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(_this.firstName.toLowerCase(), filter)) return true; if (B.JSString_methods.contains$1(_this.lastName.toLowerCase(), filter)) return true; if (B.JSString_methods.contains$1(_this.phone.toLowerCase(), filter)) return true; if (B.JSString_methods.contains$1(_this.email.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { var t1, _this = this; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(_this.get$fullName().toLowerCase(), filter)) return _this.get$fullName(); else { t1 = _this.email; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = _this.phone; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } } return null; }, get$listDisplayName() { return this.get$fullNameOrEmail(); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; } }; A._$ClientListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Ag3)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ClientListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ClientEntity, t3 = type$.ListBuilder_legacy_ClientEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._client_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._client_model$_data = t6; result._client_model$_$v = null; } t4 = result._client_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._client_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Ag3)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_EkK; }, get$wireName() { return "ClientListResponse"; } }; A._$ClientItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_W34)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ClientItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ClientEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._client_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ClientEntityBuilder(); t3.get$_client_model$_$this()._number = ""; t3._client_model$_$v = t2; result._client_model$_data = t3; result._client_model$_$v = null; } t2 = result._client_model$_data; if (t2 == null) { t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; result._client_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_W34)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._client_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_a5W; }, get$wireName() { return "ClientItemResponse"; } }; A._$ClientEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["group_settings_id", serializers.serialize$2$specifiedType(object.groupId, B.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "display_name", serializers.serialize$2$specifiedType(object.displayName, B.FullType_h8g), "balance", serializers.serialize$2$specifiedType(object.balance, B.FullType_MME), "credit_balance", serializers.serialize$2$specifiedType(object.creditBalance, B.FullType_MME), "paid_to_date", serializers.serialize$2$specifiedType(object.paidToDate, B.FullType_MME), "client_hash", serializers.serialize$2$specifiedType(object.clientHash, B.FullType_h8g), "address1", serializers.serialize$2$specifiedType(object.address1, B.FullType_h8g), "address2", serializers.serialize$2$specifiedType(object.address2, B.FullType_h8g), "city", serializers.serialize$2$specifiedType(object.city, B.FullType_h8g), "state", serializers.serialize$2$specifiedType(object.state, B.FullType_h8g), "postal_code", serializers.serialize$2$specifiedType(object.postalCode, B.FullType_h8g), "country_id", serializers.serialize$2$specifiedType(object.countryId, B.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, B.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, B.FullType_h8g), "website", serializers.serialize$2$specifiedType(object.website, B.FullType_h8g), "industry_id", serializers.serialize$2$specifiedType(object.industryId, B.FullType_h8g), "size_id", serializers.serialize$2$specifiedType(object.sizeId, B.FullType_h8g), "vat_number", serializers.serialize$2$specifiedType(object.vatNumber, B.FullType_h8g), "id_number", serializers.serialize$2$specifiedType(object.idNumber, B.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "shipping_address1", serializers.serialize$2$specifiedType(object.shippingAddress1, B.FullType_h8g), "shipping_address2", serializers.serialize$2$specifiedType(object.shippingAddress2, B.FullType_h8g), "shipping_city", serializers.serialize$2$specifiedType(object.shippingCity, B.FullType_h8g), "shipping_state", serializers.serialize$2$specifiedType(object.shippingState, B.FullType_h8g), "shipping_postal_code", serializers.serialize$2$specifiedType(object.shippingPostalCode, B.FullType_h8g), "shipping_country_id", serializers.serialize$2$specifiedType(object.shippingCountryId, B.FullType_h8g), "settings", serializers.serialize$2$specifiedType(object.settings, B.FullType_Iqz0), "last_login", serializers.serialize$2$specifiedType(object.lastLogin, B.FullType_kjq), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "contacts", serializers.serialize$2$specifiedType(object.contacts, B.FullType_4pa), "activities", serializers.serialize$2$specifiedType(object.activities, B.FullType_QWw), "ledger", serializers.serialize$2$specifiedType(object.ledger, B.FullType_2jN), "gateway_tokens", serializers.serialize$2$specifiedType(object.gatewayTokens, B.FullType_kr3), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, B.FullType_oGx), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, key, value, t15, t16, t17, result = new A.ClientEntityBuilder(); result.get$_client_model$_$this()._number = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SystemLogEntity, t3 = type$.ListBuilder_legacy_SystemLogEntity, t4 = type$.legacy_DocumentEntity, t5 = type$.ListBuilder_legacy_DocumentEntity, t6 = type$.legacy_GatewayTokenEntity, t7 = type$.ListBuilder_legacy_GatewayTokenEntity, t8 = type$.legacy_LedgerEntity, t9 = type$.ListBuilder_legacy_LedgerEntity, t10 = type$.legacy_ActivityEntity, t11 = type$.ListBuilder_legacy_ActivityEntity, t12 = type$.legacy_ClientContactEntity, t13 = type$.ListBuilder_legacy_ClientContactEntity, t14 = type$.legacy_SettingsEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "group_settings_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._groupId = t15; break; case "loadedAt": t15 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._loadedAt = t15; break; case "name": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_name = t15; break; case "display_name": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._displayName = t15; break; case "balance": t15 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_client_model$_$this()._balance = t15; break; case "credit_balance": t15 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_client_model$_$this()._creditBalance = t15; break; case "paid_to_date": t15 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_client_model$_$this()._paidToDate = t15; break; case "client_hash": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._clientHash = t15; break; case "address1": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_address1 = t15; break; case "address2": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_address2 = t15; break; case "city": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_city = t15; break; case "state": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_state = t15; break; case "postal_code": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_postalCode = t15; break; case "country_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_countryId = t15; break; case "phone": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_phone = t15; break; case "private_notes": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._privateNotes = t15; break; case "public_notes": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._publicNotes = t15; break; case "website": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_website = t15; break; case "industry_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._industryId = t15; break; case "size_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._sizeId = t15; break; case "vat_number": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_vatNumber = t15; break; case "id_number": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_idNumber = t15; break; case "number": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._number = t15; break; case "shipping_address1": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingAddress1 = t15; break; case "shipping_address2": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingAddress2 = t15; break; case "shipping_city": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingCity = t15; break; case "shipping_state": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingState = t15; break; case "shipping_postal_code": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingPostalCode = t15; break; case "shipping_country_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._shippingCountryId = t15; break; case "settings": t15 = result.get$_client_model$_$this(); t16 = t15._client_model$_settings; t15 = t16 == null ? t15._client_model$_settings = new A.SettingsEntityBuilder() : t16; t16 = t14._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz0)); if (t16 == null) A.throwExpression(A.ArgumentError$notNull("other")); t15._settings_model$_$v = t16; break; case "last_login": t15 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._lastLogin = t15; break; case "custom_value1": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue1 = t15; break; case "custom_value2": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue2 = t15; break; case "custom_value3": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue3 = t15; break; case "custom_value4": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue4 = t15; break; case "contacts": t15 = result.get$_client_model$_$this(); t16 = t15._contacts; if (t16 == null) { t16 = new A.ListBuilder(t13); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t12); t15._contacts = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_4pa)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "activities": t15 = result.get$_client_model$_$this(); t16 = t15._activities; if (t16 == null) { t16 = new A.ListBuilder(t11); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t10); t15._activities = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_QWw)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "ledger": t15 = result.get$_client_model$_$this(); t16 = t15._ledger; if (t16 == null) { t16 = new A.ListBuilder(t9); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t8); t15._ledger = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_2jN)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "gateway_tokens": t15 = result.get$_client_model$_$this(); t16 = t15._gatewayTokens; if (t16 == null) { t16 = new A.ListBuilder(t7); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t6); t15._gatewayTokens = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_kr3)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "documents": t15 = result.get$_client_model$_$this(); t16 = t15._client_model$_documents; if (t16 == null) { t16 = new A.ListBuilder(t5); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t4); t15._client_model$_documents = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "system_logs": t15 = result.get$_client_model$_$this(); t16 = t15._systemLogs; if (t16 == null) { t16 = new A.ListBuilder(t3); t16.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t15._systemLogs = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_oGx)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = A.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "isChanged": t15 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isChanged = t15; break; case "created_at": t15 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_createdAt = t15; break; case "updated_at": t15 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_updatedAt = t15; break; case "archived_at": t15 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_archivedAt = t15; break; case "is_deleted": t15 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isDeleted = t15; break; case "user_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_createdUserId = t15; break; case "assigned_user_id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_assignedUserId = t15; break; case "id": t15 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_id = t15; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_u3D; }, get$wireName() { return "ClientEntity"; } }; A._$ClientContactEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["first_name", serializers.serialize$2$specifiedType(object.firstName, B.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, B.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, B.FullType_h8g), "password", serializers.serialize$2$specifiedType(object.password, B.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, B.FullType_h8g), "contact_key", serializers.serialize$2$specifiedType(object.contactKey, B.FullType_h8g), "is_primary", serializers.serialize$2$specifiedType(object.isPrimary, B.FullType_MtR), "send_email", serializers.serialize$2$specifiedType(object.sendEmail, B.FullType_MtR), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "last_login", serializers.serialize$2$specifiedType(object.lastLogin, B.FullType_kjq), "link", serializers.serialize$2$specifiedType(object.link, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.ClientContactEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_firstName = t1; break; case "last_name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_lastName = t1; break; case "email": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_email = t1; break; case "password": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_password = t1; break; case "phone": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_phone = t1; break; case "contact_key": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._contactKey = t1; break; case "is_primary": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isPrimary = t1; break; case "send_email": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_sendEmail = t1; break; case "custom_value1": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue1 = t1; break; case "custom_value2": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue2 = t1; break; case "custom_value3": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue3 = t1; break; case "custom_value4": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue4 = t1; break; case "last_login": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._lastLogin = t1; break; case "link": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._link = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_model$_$this()._client_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_model$_$this()._client_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_MUw; }, get$wireName() { return "ClientContactEntity"; } }; A._$ClientListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ClientListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._client_model$__hashCode; return t1 == null ? this._client_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ClientListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._client_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._client_model$_$v = null; } t1 = _this._client_model$_data; return t1 == null ? _this._client_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "ClientListResponse", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ClientListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._client_model$_$v = t1; return _$result; } }; A._$ClientItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ClientItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._client_model$__hashCode; return t1 == null ? this._client_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ClientItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._client_model$_$v = t1; _this._client_model$_data = t2; _this._client_model$_$v = null; } t1 = _this._client_model$_data; if (t1 == null) { t1 = new A.ClientEntityBuilder(); t1.get$_client_model$_$this()._number = ""; _this._client_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "ClientItemResponse", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ClientItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._client_model$_$v = t1; return _$result; } }; A._$ClientEntity.prototype = { rebuild$1(updates) { var t1 = new A.ClientEntityBuilder(); t1.get$_client_model$_$this()._number = ""; A.ArgumentError_checkNotNull(this, "other"); t1._client_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ClientEntity && _this.groupId === other.groupId && _this.name === other.name && _this.displayName === other.displayName && _this.balance === other.balance && _this.creditBalance === other.creditBalance && _this.paidToDate === other.paidToDate && _this.clientHash === other.clientHash && _this.address1 === other.address1 && _this.address2 === other.address2 && _this.city === other.city && _this.state === other.state && _this.postalCode === other.postalCode && _this.countryId === other.countryId && _this.phone === other.phone && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.website === other.website && _this.industryId === other.industryId && _this.sizeId === other.sizeId && _this.vatNumber === other.vatNumber && _this.idNumber === other.idNumber && _this.number === other.number && _this.shippingAddress1 === other.shippingAddress1 && _this.shippingAddress2 === other.shippingAddress2 && _this.shippingCity === other.shippingCity && _this.shippingState === other.shippingState && _this.shippingPostalCode === other.shippingPostalCode && _this.shippingCountryId === other.shippingCountryId && J.$eq$(_this.settings, other.settings) && _this.lastLogin === other.lastLogin && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && J.$eq$(_this.contacts, other.contacts) && J.$eq$(_this.activities, other.activities) && J.$eq$(_this.ledger, other.ledger) && J.$eq$(_this.gatewayTokens, other.gatewayTokens) && J.$eq$(_this.documents, other.documents) && J.$eq$(_this.systemLogs, other.systemLogs) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._client_model$__hashCode; return t1 == null ? _this._client_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.groupId)), B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.displayName)), B.JSNumber_methods.get$hashCode(_this.balance)), B.JSNumber_methods.get$hashCode(_this.creditBalance)), B.JSNumber_methods.get$hashCode(_this.paidToDate)), B.JSString_methods.get$hashCode(_this.clientHash)), B.JSString_methods.get$hashCode(_this.address1)), B.JSString_methods.get$hashCode(_this.address2)), B.JSString_methods.get$hashCode(_this.city)), B.JSString_methods.get$hashCode(_this.state)), B.JSString_methods.get$hashCode(_this.postalCode)), B.JSString_methods.get$hashCode(_this.countryId)), B.JSString_methods.get$hashCode(_this.phone)), B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.publicNotes)), B.JSString_methods.get$hashCode(_this.website)), B.JSString_methods.get$hashCode(_this.industryId)), B.JSString_methods.get$hashCode(_this.sizeId)), B.JSString_methods.get$hashCode(_this.vatNumber)), B.JSString_methods.get$hashCode(_this.idNumber)), B.JSString_methods.get$hashCode(_this.number)), B.JSString_methods.get$hashCode(_this.shippingAddress1)), B.JSString_methods.get$hashCode(_this.shippingAddress2)), B.JSString_methods.get$hashCode(_this.shippingCity)), B.JSString_methods.get$hashCode(_this.shippingState)), B.JSString_methods.get$hashCode(_this.shippingPostalCode)), B.JSString_methods.get$hashCode(_this.shippingCountryId)), J.get$hashCode$(_this.settings)), B.JSInt_methods.get$hashCode(_this.lastLogin)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.contacts)), J.get$hashCode$(_this.activities)), J.get$hashCode$(_this.ledger)), J.get$hashCode$(_this.gatewayTokens)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.systemLogs)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "groupId", _this.groupId); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "displayName", _this.displayName); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "creditBalance", _this.creditBalance); t2.add$2(t1, "paidToDate", _this.paidToDate); t2.add$2(t1, "clientHash", _this.clientHash); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "industryId", _this.industryId); t2.add$2(t1, "sizeId", _this.sizeId); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "shippingAddress1", _this.shippingAddress1); t2.add$2(t1, "shippingAddress2", _this.shippingAddress2); t2.add$2(t1, "shippingCity", _this.shippingCity); t2.add$2(t1, "shippingState", _this.shippingState); t2.add$2(t1, "shippingPostalCode", _this.shippingPostalCode); t2.add$2(t1, "shippingCountryId", _this.shippingCountryId); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "lastLogin", _this.lastLogin); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "contacts", _this.contacts); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "ledger", _this.ledger); t2.add$2(t1, "gatewayTokens", _this.gatewayTokens); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$address1() { return this.address1; }, get$address2() { return this.address2; }, get$city(receiver) { return this.city; }, get$state(receiver) { return this.state; }, get$postalCode(receiver) { return this.postalCode; }, get$countryId() { return this.countryId; }, get$shippingAddress1() { return this.shippingAddress1; }, get$shippingAddress2() { return this.shippingAddress2; }, get$shippingCity() { return this.shippingCity; }, get$shippingState() { return this.shippingState; }, get$shippingPostalCode() { return this.shippingPostalCode; }, get$shippingCountryId() { return this.shippingCountryId; }, get$activities() { return this.activities; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.ClientEntityBuilder.prototype = { get$name(_) { return this.get$_client_model$_$this()._client_model$_name; }, get$settings() { var t1 = this.get$_client_model$_$this(), t2 = t1._client_model$_settings; return t2 == null ? t1._client_model$_settings = new A.SettingsEntityBuilder() : t2; }, get$contacts() { var t1 = this.get$_client_model$_$this(), t2 = t1._contacts; return t2 == null ? t1._contacts = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientContactEntity) : t2; }, get$activities() { var t1 = this.get$_client_model$_$this(), t2 = t1._activities; return t2 == null ? t1._activities = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity) : t2; }, get$ledger() { var t1 = this.get$_client_model$_$this(), t2 = t1._ledger; return t2 == null ? t1._ledger = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LedgerEntity) : t2; }, get$gatewayTokens() { var t1 = this.get$_client_model$_$this(), t2 = t1._gatewayTokens; return t2 == null ? t1._gatewayTokens = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayTokenEntity) : t2; }, get$documents() { var t1 = this.get$_client_model$_$this(), t2 = t1._client_model$_documents; return t2 == null ? t1._client_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$systemLogs() { var t1 = this.get$_client_model$_$this(), t2 = t1._systemLogs; return t2 == null ? t1._systemLogs = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$id(_) { return this.get$_client_model$_$this()._client_model$_id; }, get$_client_model$_$this() { var t1, t2, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { _this._groupId = $$v.groupId; _this._loadedAt = $$v.loadedAt; _this._client_model$_name = $$v.name; _this._displayName = $$v.displayName; _this._balance = $$v.balance; _this._creditBalance = $$v.creditBalance; _this._paidToDate = $$v.paidToDate; _this._clientHash = $$v.clientHash; _this._client_model$_address1 = $$v.address1; _this._client_model$_address2 = $$v.address2; _this._client_model$_city = $$v.city; _this._client_model$_state = $$v.state; _this._client_model$_postalCode = $$v.postalCode; _this._client_model$_countryId = $$v.countryId; _this._client_model$_phone = $$v.phone; _this._privateNotes = $$v.privateNotes; _this._publicNotes = $$v.publicNotes; _this._client_model$_website = $$v.website; _this._industryId = $$v.industryId; _this._sizeId = $$v.sizeId; _this._client_model$_vatNumber = $$v.vatNumber; _this._client_model$_idNumber = $$v.idNumber; _this._number = $$v.number; _this._shippingAddress1 = $$v.shippingAddress1; _this._shippingAddress2 = $$v.shippingAddress2; _this._shippingCity = $$v.shippingCity; _this._shippingState = $$v.shippingState; _this._shippingPostalCode = $$v.shippingPostalCode; _this._shippingCountryId = $$v.shippingCountryId; t1 = $$v.settings; t1.toString; t2 = new A.SettingsEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._settings_model$_$v = t1; _this._client_model$_settings = t2; _this._lastLogin = $$v.lastLogin; _this._client_model$_customValue1 = $$v.customValue1; _this._client_model$_customValue2 = $$v.customValue2; _this._client_model$_customValue3 = $$v.customValue3; _this._client_model$_customValue4 = $$v.customValue4; t2 = $$v.contacts; t2.toString; _this._contacts = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.activities; t2.toString; _this._activities = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.ledger; t2.toString; _this._ledger = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.gatewayTokens; t2.toString; _this._gatewayTokens = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.documents; t2.toString; _this._client_model$_documents = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.systemLogs; t2.toString; _this._systemLogs = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._client_model$_isChanged = $$v.isChanged; _this._client_model$_createdAt = $$v.createdAt; _this._client_model$_updatedAt = $$v.updatedAt; _this._client_model$_archivedAt = $$v.archivedAt; _this._client_model$_isDeleted = $$v.isDeleted; _this._client_model$_createdUserId = $$v.createdUserId; _this._client_model$_assignedUserId = $$v.assignedUserId; _this._client_model$_id = $$v.id; _this._client_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, exception, _this = this, _s12_ = "ClientEntity", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$_client_model$_$this()._groupId; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "groupId")); t2 = _this.get$_client_model$_$this()._loadedAt; t3 = _this.get$_client_model$_$this()._client_model$_name; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "name")); t4 = _this.get$_client_model$_$this()._displayName; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "displayName")); t5 = _this.get$_client_model$_$this()._balance; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "balance")); t6 = _this.get$_client_model$_$this()._creditBalance; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "creditBalance")); t7 = _this.get$_client_model$_$this()._paidToDate; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "paidToDate")); t8 = _this.get$_client_model$_$this()._clientHash; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "clientHash")); t9 = _this.get$_client_model$_$this()._client_model$_address1; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "address1")); t10 = _this.get$_client_model$_$this()._client_model$_address2; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "address2")); t11 = _this.get$_client_model$_$this()._client_model$_city; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "city")); t12 = _this.get$_client_model$_$this()._client_model$_state; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "state")); t13 = _this.get$_client_model$_$this()._client_model$_postalCode; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "postalCode")); t14 = _this.get$_client_model$_$this()._client_model$_countryId; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "countryId")); t15 = _this.get$_client_model$_$this()._client_model$_phone; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "phone")); t16 = _this.get$_client_model$_$this()._privateNotes; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "privateNotes")); t17 = _this.get$_client_model$_$this()._publicNotes; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "publicNotes")); t18 = _this.get$_client_model$_$this()._client_model$_website; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "website")); t19 = _this.get$_client_model$_$this()._industryId; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "industryId")); t20 = _this.get$_client_model$_$this()._sizeId; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "sizeId")); t21 = _this.get$_client_model$_$this()._client_model$_vatNumber; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "vatNumber")); t22 = _this.get$_client_model$_$this()._client_model$_idNumber; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "idNumber")); t23 = _this.get$_client_model$_$this()._number; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "number")); t24 = _this.get$_client_model$_$this()._shippingAddress1; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingAddress1")); t25 = _this.get$_client_model$_$this()._shippingAddress2; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingAddress2")); t26 = _this.get$_client_model$_$this()._shippingCity; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingCity")); t27 = _this.get$_client_model$_$this()._shippingState; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingState")); t28 = _this.get$_client_model$_$this()._shippingPostalCode; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingPostalCode")); t29 = _this.get$_client_model$_$this()._shippingCountryId; if (t29 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "shippingCountryId")); t30 = _this.get$settings().build$0(0); t31 = _this.get$_client_model$_$this()._lastLogin; if (t31 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "lastLogin")); t32 = _this.get$_client_model$_$this()._client_model$_customValue1; if (t32 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue1")); t33 = _this.get$_client_model$_$this()._client_model$_customValue2; if (t33 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue2")); t34 = _this.get$_client_model$_$this()._client_model$_customValue3; if (t34 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue3")); t35 = _this.get$_client_model$_$this()._client_model$_customValue4; if (t35 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue4")); t36 = _this.get$contacts().build$0(0); t37 = _this.get$activities().build$0(0); t38 = _this.get$ledger().build$0(0); t39 = _this.get$gatewayTokens().build$0(0); t40 = _this.get$documents().build$0(0); t41 = _this.get$systemLogs().build$0(0); t42 = _this.get$_client_model$_$this()._client_model$_isChanged; t43 = _this.get$_client_model$_$this()._client_model$_createdAt; if (t43 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "createdAt")); t44 = _this.get$_client_model$_$this()._client_model$_updatedAt; if (t44 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "updatedAt")); t45 = _this.get$_client_model$_$this()._client_model$_archivedAt; if (t45 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "archivedAt")); t46 = _this.get$_client_model$_$this()._client_model$_isDeleted; t47 = _this.get$_client_model$_$this()._client_model$_createdUserId; t48 = _this.get$_client_model$_$this()._client_model$_assignedUserId; t49 = _this.get$_client_model$_$this()._client_model$_id; if (t49 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = A._$ClientEntity$_(t37, t9, t10, t45, t48, t5, t11, t8, t36, t14, t43, t47, t6, t32, t33, t34, t35, t4, t40, t39, t1, t49, t22, t19, t42, t46, t31, t38, t2, t3, t23, t7, t15, t13, t16, t17, t30, t24, t25, t26, t29, t28, t27, t20, t12, t41, t44, t21, t18); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "contacts"; _this.get$contacts().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); _$failedField = "ledger"; _this.get$ledger().build$0(0); _$failedField = "gatewayTokens"; _this.get$gatewayTokens().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._client_model$_$v = t1; return _$result; } }; A._$ClientContactEntity.prototype = { rebuild$1(updates) { var t1 = new A.ClientContactEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._client_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ClientContactEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.password === other.password && _this.phone === other.phone && _this.contactKey === other.contactKey && _this.isPrimary === other.isPrimary && _this.sendEmail === other.sendEmail && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.lastLogin === other.lastLogin && _this.link === other.link && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._client_model$__hashCode; return t1 == null ? _this._client_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.firstName)), B.JSString_methods.get$hashCode(_this.lastName)), B.JSString_methods.get$hashCode(_this.email)), B.JSString_methods.get$hashCode(_this.password)), B.JSString_methods.get$hashCode(_this.phone)), B.JSString_methods.get$hashCode(_this.contactKey)), B.JSBool_methods.get$hashCode(_this.isPrimary)), B.JSBool_methods.get$hashCode(_this.sendEmail)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSInt_methods.get$hashCode(_this.lastLogin)), B.JSString_methods.get$hashCode(_this.link)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientContactEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "password", _this.password); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "contactKey", _this.contactKey); t2.add$2(t1, "isPrimary", _this.isPrimary); t2.add$2(t1, "sendEmail", _this.sendEmail); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "lastLogin", _this.lastLogin); t2.add$2(t1, "link", _this.link); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.ClientContactEntityBuilder.prototype = { get$id(_) { return this.get$_client_model$_$this()._client_model$_id; }, get$_client_model$_$this() { var _this = this, $$v = _this._client_model$_$v; if ($$v != null) { _this._client_model$_firstName = $$v.firstName; _this._client_model$_lastName = $$v.lastName; _this._client_model$_email = $$v.email; _this._client_model$_password = $$v.password; _this._client_model$_phone = $$v.phone; _this._contactKey = $$v.contactKey; _this._client_model$_isPrimary = $$v.isPrimary; _this._client_model$_sendEmail = $$v.sendEmail; _this._client_model$_customValue1 = $$v.customValue1; _this._client_model$_customValue2 = $$v.customValue2; _this._client_model$_customValue3 = $$v.customValue3; _this._client_model$_customValue4 = $$v.customValue4; _this._lastLogin = $$v.lastLogin; _this._link = $$v.link; _this._client_model$_isChanged = $$v.isChanged; _this._client_model$_createdAt = $$v.createdAt; _this._client_model$_updatedAt = $$v.updatedAt; _this._client_model$_archivedAt = $$v.archivedAt; _this._client_model$_isDeleted = $$v.isDeleted; _this._client_model$_createdUserId = $$v.createdUserId; _this._client_model$_assignedUserId = $$v.assignedUserId; _this._client_model$_id = $$v.id; _this._client_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _s19_ = "ClientContactEntity", _$result = _this._client_model$_$v; if (_$result == null) { t1 = _this.get$_client_model$_$this()._client_model$_firstName; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "firstName")); t2 = _this.get$_client_model$_$this()._client_model$_lastName; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "lastName")); t3 = _this.get$_client_model$_$this()._client_model$_email; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "email")); t4 = _this.get$_client_model$_$this()._client_model$_password; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "password")); t5 = _this.get$_client_model$_$this()._client_model$_phone; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "phone")); t6 = _this.get$_client_model$_$this()._contactKey; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "contactKey")); t7 = _this.get$_client_model$_$this()._client_model$_isPrimary; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "isPrimary")); t8 = _this.get$_client_model$_$this()._client_model$_sendEmail; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "sendEmail")); t9 = _this.get$_client_model$_$this()._client_model$_customValue1; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customValue1")); t10 = _this.get$_client_model$_$this()._client_model$_customValue2; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customValue2")); t11 = _this.get$_client_model$_$this()._client_model$_customValue3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customValue3")); t12 = _this.get$_client_model$_$this()._client_model$_customValue4; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customValue4")); t13 = _this.get$_client_model$_$this()._lastLogin; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "lastLogin")); t14 = _this.get$_client_model$_$this()._link; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "link")); t15 = _this.get$_client_model$_$this()._client_model$_isChanged; t16 = _this.get$_client_model$_$this()._client_model$_createdAt; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "createdAt")); t17 = _this.get$_client_model$_$this()._client_model$_updatedAt; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "updatedAt")); t18 = _this.get$_client_model$_$this()._client_model$_archivedAt; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "archivedAt")); t19 = _this.get$_client_model$_$this()._client_model$_isDeleted; t20 = _this.get$_client_model$_$this()._client_model$_createdUserId; t21 = _this.get$_client_model$_$this()._client_model$_assignedUserId; t22 = _this.get$_client_model$_$this()._client_model$_id; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "id")); _$result = A._$ClientContactEntity$_(t18, t21, t6, t16, t20, t9, t10, t11, t12, t3, t1, t22, t15, t19, t7, t13, t2, t14, t4, t5, t8, t17); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._client_model$_$v = _$result; } }; A._ClientContactEntity_Object_BaseEntity.prototype = {}; A._ClientContactEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._ClientEntity_Object_BaseEntity.prototype = {}; A._ClientEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities.prototype = {}; A.CompanyGatewayListResponse.prototype = {}; A.CompanyGatewayItemResponse.prototype = {}; A.CompanyGatewayEntity.prototype = { get$isStale() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$entityType() { return B.EntityType_companyGateway; }, get$parsedConfig() { var t1 = this.config; return t1.length === 0 ? A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : B.C_JsonCodec.decode$2$reviver(0, t1, null); }, getSettingsForGatewayTypeId$1(gatewayTypeId) { var t1 = this.feesAndLimitsMap._map$_map.$index(0, gatewayTypeId); return t1 == null ? A.FeesAndLimitsSettings_FeesAndLimitsSettings(null) : t1; }, get$listDisplayName() { var _this = this, t1 = _this.gatewayId === "54faab2ab6e3223dbe848b1686490baa" ? J.$index$asx(_this.get$parsedConfig(), "name") : _this.label; return t1 == null ? _this.label : t1; }, get$isConnected(_) { var t1; if (this.gatewayId !== "d14dd26a47cecc30fdd65700bfb67b34") return true; t1 = J.$index$asx(this.get$parsedConfig(), "account_id"); return J.toString$0$(t1 == null ? "" : t1).length !== 0; }, updateConfig$2(field, value) { var t2, updatedConfig = this.get$parsedConfig(), t1 = J.getInterceptor$(value); t1 = t1.get$runtimeType(value) === B.Type_String_k8F && t1.$eq(value, ""); t2 = J.getInterceptor$ax(updatedConfig); if (t1) t2.remove$1(updatedConfig, field); else t2.$indexSet(updatedConfig, field, value); return this.rebuild$1(new A.CompanyGatewayEntity_updateConfig_closure(updatedConfig)); }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.label, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect && userCompany.canEditEntity$1(_this)) { if (includeEdit) actions.push(B.EntityAction_edit); if (_this.gatewayId === "d14dd26a47cecc30fdd65700bfb67b34" && !_this.get$isConnected(_this)) actions.push(B.EntityAction_disconnect); } if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A.CompanyGatewayEntity_updateConfig_closure.prototype = { call$1(b) { var t1 = B.C_JsonCodec.encode$2$toEncodable(this.updatedConfig, null); b.get$_company_gateway_model$_$this()._config = t1; return b; }, $signature: 60 }; A.FeesAndLimitsSettings.prototype = {}; A._$CompanyGatewayListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_A8J)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.CompanyGatewayListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CompanyGatewayEntity, t3 = type$.ListBuilder_legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_gateway_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._company_gateway_model$_data = t6; result._company_gateway_model$_$v = null; } t4 = result._company_gateway_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._company_gateway_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_A8J)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2Vk2; }, get$wireName() { return "CompanyGatewayListResponse"; } }; A._$CompanyGatewayItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_UQL)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CompanyGatewayItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_gateway_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.CompanyGatewayEntityBuilder(); t3._company_gateway_model$_$v = t2; result._company_gateway_model$_data = t3; result._company_gateway_model$_$v = null; } t2 = result._company_gateway_model$_data; if (t2 == null) t2 = result._company_gateway_model$_data = new A.CompanyGatewayEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_UQL)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._company_gateway_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_U3i; }, get$wireName() { return "CompanyGatewayItemResponse"; } }; A._$CompanyGatewayEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["gateway_key", serializers.serialize$2$specifiedType(object.gatewayId, B.FullType_h8g), "accepted_credit_cards", serializers.serialize$2$specifiedType(object.acceptedCreditCards, B.FullType_kjq), "require_shipping_address", serializers.serialize$2$specifiedType(object.requireShippingAddress, B.FullType_MtR), "require_billing_address", serializers.serialize$2$specifiedType(object.requireBillingAddress, B.FullType_MtR), "require_client_name", serializers.serialize$2$specifiedType(object.requireClientName, B.FullType_MtR), "require_client_phone", serializers.serialize$2$specifiedType(object.requireClientPhone, B.FullType_MtR), "require_contact_name", serializers.serialize$2$specifiedType(object.requireContactName, B.FullType_MtR), "require_contact_email", serializers.serialize$2$specifiedType(object.requireContactEmail, B.FullType_MtR), "require_cvv", serializers.serialize$2$specifiedType(object.requireCvv, B.FullType_MtR), "update_details", serializers.serialize$2$specifiedType(object.updateDetails, B.FullType_MtR), "fees_and_limits", serializers.serialize$2$specifiedType(object.feesAndLimitsMap, B.FullType_oCX), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, B.FullType_oGx), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "config", serializers.serialize$2$specifiedType(object.config, B.FullType_h8g), "token_billing", serializers.serialize$2$specifiedType(object.tokenBilling, B.FullType_h8g), "test_mode", serializers.serialize$2$specifiedType(object.isTestMode, B.FullType_MtR), "label", serializers.serialize$2$specifiedType(object.label, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.requirePostalCode; if (value != null) { result.push("require_postal_code"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.CompanyGatewayEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SystemLogEntity, t3 = type$.ListBuilder_legacy_SystemLogEntity, t4 = type$.MapBuilder_of_legacy_String_and_legacy_FeesAndLimitsSettings; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "loadedAt": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t5; break; case "gateway_key": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._gatewayId = t5; break; case "accepted_credit_cards": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_model$_$this()._acceptedCreditCards = t5; break; case "require_shipping_address": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireShippingAddress = t5; break; case "require_billing_address": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireBillingAddress = t5; break; case "require_client_name": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireClientName = t5; break; case "require_postal_code": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requirePostalCode = t5; break; case "require_client_phone": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireClientPhone = t5; break; case "require_contact_name": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireContactName = t5; break; case "require_contact_email": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireContactEmail = t5; break; case "require_cvv": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireCvv = t5; break; case "update_details": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._updateDetails = t5; break; case "fees_and_limits": t5 = result.get$_company_gateway_model$_$this(); t6 = t5._feesAndLimitsMap; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._feesAndLimitsMap = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_oCX)); break; case "system_logs": t5 = result.get$_company_gateway_model$_$this(); t6 = t5._company_gateway_model$_systemLogs; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._company_gateway_model$_systemLogs = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_oGx)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "custom_value1": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue1 = t5; break; case "custom_value2": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue2 = t5; break; case "custom_value3": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue3 = t5; break; case "custom_value4": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue4 = t5; break; case "config": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._config = t5; break; case "token_billing": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._tokenBilling = t5; break; case "test_mode": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._isTestMode = t5; break; case "label": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._label = t5; break; case "isChanged": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged = t5; break; case "created_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_createdAt = t5; break; case "updated_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_updatedAt = t5; break; case "archived_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_archivedAt = t5; break; case "is_deleted": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isDeleted = t5; break; case "user_id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_createdUserId = t5; break; case "assigned_user_id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_assignedUserId = t5; break; case "id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_id = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2uL; }, get$wireName() { return "CompanyGatewayEntity"; } }; A._$FeesAndLimitsSettingsSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["min_limit", serializers.serialize$2$specifiedType(object.minLimit, B.FullType_MME), "max_limit", serializers.serialize$2$specifiedType(object.maxLimit, B.FullType_MME), "fee_amount", serializers.serialize$2$specifiedType(object.feeAmount, B.FullType_MME), "fee_percent", serializers.serialize$2$specifiedType(object.feePercent, B.FullType_MME), "fee_cap", serializers.serialize$2$specifiedType(object.feeCap, B.FullType_MME), "fee_tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, B.FullType_MME), "fee_tax_name1", serializers.serialize$2$specifiedType(object.taxName1, B.FullType_h8g), "fee_tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, B.FullType_MME), "fee_tax_name2", serializers.serialize$2$specifiedType(object.taxName2, B.FullType_h8g), "fee_tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, B.FullType_MME), "fee_tax_name3", serializers.serialize$2$specifiedType(object.taxName3, B.FullType_h8g), "adjust_fee_percent", serializers.serialize$2$specifiedType(object.adjustFeePercent, B.FullType_MtR), "is_enabled", serializers.serialize$2$specifiedType(object.isEnabled, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.FeesAndLimitsSettingsBuilder(); result.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = false; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "min_limit": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._minLimit = t1; break; case "max_limit": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._maxLimit = t1; break; case "fee_amount": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._feeAmount = t1; break; case "fee_percent": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._feePercent = t1; break; case "fee_cap": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._feeCap = t1; break; case "fee_tax_rate1": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1 = t1; break; case "fee_tax_name1": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1 = t1; break; case "fee_tax_rate2": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2 = t1; break; case "fee_tax_name2": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2 = t1; break; case "fee_tax_rate3": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3 = t1; break; case "fee_tax_name3": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3 = t1; break; case "adjust_fee_percent": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._adjustFeePercent = t1; break; case "is_enabled": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_AcR; }, get$wireName() { return "FeesAndLimitsSettings"; } }; A._$CompanyGatewayListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyGatewayListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._company_gateway_model$__hashCode; return t1 == null ? this._company_gateway_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CompanyGatewayListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._company_gateway_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_gateway_model$_$v = null; } t1 = _this._company_gateway_model$_data; return t1 == null ? _this._company_gateway_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CompanyGatewayEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "CompanyGatewayListResponse", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CompanyGatewayListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_gateway_model$_$v = t1; return _$result; } }; A._$CompanyGatewayItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyGatewayItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._company_gateway_model$__hashCode; return t1 == null ? this._company_gateway_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CompanyGatewayItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.CompanyGatewayEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._company_gateway_model$_$v = t1; _this._company_gateway_model$_data = t2; _this._company_gateway_model$_$v = null; } t1 = _this._company_gateway_model$_data; return t1 == null ? _this._company_gateway_model$_data = new A.CompanyGatewayEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "CompanyGatewayItemResponse", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CompanyGatewayItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_gateway_model$_$v = t1; return _$result; } }; A._$CompanyGatewayEntity.prototype = { rebuild$1(updates) { var t1 = new A.CompanyGatewayEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._company_gateway_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.CompanyGatewayEntity && _this.gatewayId === other.gatewayId && _this.acceptedCreditCards === other.acceptedCreditCards && _this.requireShippingAddress === other.requireShippingAddress && _this.requireBillingAddress === other.requireBillingAddress && _this.requireClientName === other.requireClientName && _this.requirePostalCode == other.requirePostalCode && _this.requireClientPhone === other.requireClientPhone && _this.requireContactName === other.requireContactName && _this.requireContactEmail === other.requireContactEmail && _this.requireCvv === other.requireCvv && _this.updateDetails === other.updateDetails && J.$eq$(_this.feesAndLimitsMap, other.feesAndLimitsMap) && J.$eq$(_this.systemLogs, other.systemLogs) && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.config === other.config && _this.tokenBilling === other.tokenBilling && _this.isTestMode === other.isTestMode && _this.label === other.label && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._company_gateway_model$__hashCode; return t1 == null ? _this._company_gateway_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.gatewayId)), B.JSInt_methods.get$hashCode(_this.acceptedCreditCards)), B.JSBool_methods.get$hashCode(_this.requireShippingAddress)), B.JSBool_methods.get$hashCode(_this.requireBillingAddress)), B.JSBool_methods.get$hashCode(_this.requireClientName)), J.get$hashCode$(_this.requirePostalCode)), B.JSBool_methods.get$hashCode(_this.requireClientPhone)), B.JSBool_methods.get$hashCode(_this.requireContactName)), B.JSBool_methods.get$hashCode(_this.requireContactEmail)), B.JSBool_methods.get$hashCode(_this.requireCvv)), B.JSBool_methods.get$hashCode(_this.updateDetails)), J.get$hashCode$(_this.feesAndLimitsMap)), J.get$hashCode$(_this.systemLogs)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSString_methods.get$hashCode(_this.config)), B.JSString_methods.get$hashCode(_this.tokenBilling)), B.JSBool_methods.get$hashCode(_this.isTestMode)), B.JSString_methods.get$hashCode(_this.label)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "gatewayId", _this.gatewayId); t2.add$2(t1, "acceptedCreditCards", _this.acceptedCreditCards); t2.add$2(t1, "requireShippingAddress", _this.requireShippingAddress); t2.add$2(t1, "requireBillingAddress", _this.requireBillingAddress); t2.add$2(t1, "requireClientName", _this.requireClientName); t2.add$2(t1, "requirePostalCode", _this.requirePostalCode); t2.add$2(t1, "requireClientPhone", _this.requireClientPhone); t2.add$2(t1, "requireContactName", _this.requireContactName); t2.add$2(t1, "requireContactEmail", _this.requireContactEmail); t2.add$2(t1, "requireCvv", _this.requireCvv); t2.add$2(t1, "updateDetails", _this.updateDetails); t2.add$2(t1, "feesAndLimitsMap", _this.feesAndLimitsMap); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "config", _this.config); t2.add$2(t1, "tokenBilling", _this.tokenBilling); t2.add$2(t1, "isTestMode", _this.isTestMode); t2.add$2(t1, "label", _this.label); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.CompanyGatewayEntityBuilder.prototype = { get$feesAndLimitsMap() { var t1 = this.get$_company_gateway_model$_$this(), t2 = t1._feesAndLimitsMap; return t2 == null ? t1._feesAndLimitsMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_FeesAndLimitsSettings) : t2; }, get$systemLogs() { var t1 = this.get$_company_gateway_model$_$this(), t2 = t1._company_gateway_model$_systemLogs; return t2 == null ? t1._company_gateway_model$_systemLogs = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$id(_) { return this.get$_company_gateway_model$_$this()._company_gateway_model$_id; }, get$_company_gateway_model$_$this() { var t1, t2, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { _this._company_gateway_model$_loadedAt = $$v.loadedAt; _this._gatewayId = $$v.gatewayId; _this._acceptedCreditCards = $$v.acceptedCreditCards; _this._requireShippingAddress = $$v.requireShippingAddress; _this._requireBillingAddress = $$v.requireBillingAddress; _this._requireClientName = $$v.requireClientName; _this._requirePostalCode = $$v.requirePostalCode; _this._requireClientPhone = $$v.requireClientPhone; _this._requireContactName = $$v.requireContactName; _this._requireContactEmail = $$v.requireContactEmail; _this._requireCvv = $$v.requireCvv; _this._updateDetails = $$v.updateDetails; t1 = $$v.feesAndLimitsMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._feesAndLimitsMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.systemLogs; t2.toString; _this._company_gateway_model$_systemLogs = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._company_gateway_model$_customValue1 = $$v.customValue1; _this._company_gateway_model$_customValue2 = $$v.customValue2; _this._company_gateway_model$_customValue3 = $$v.customValue3; _this._company_gateway_model$_customValue4 = $$v.customValue4; _this._config = $$v.config; _this._tokenBilling = $$v.tokenBilling; _this._isTestMode = $$v.isTestMode; _this._label = $$v.label; _this._company_gateway_model$_isChanged = $$v.isChanged; _this._company_gateway_model$_createdAt = $$v.createdAt; _this._company_gateway_model$_updatedAt = $$v.updatedAt; _this._company_gateway_model$_archivedAt = $$v.archivedAt; _this._company_gateway_model$_isDeleted = $$v.isDeleted; _this._company_gateway_model$_createdUserId = $$v.createdUserId; _this._company_gateway_model$_assignedUserId = $$v.assignedUserId; _this._company_gateway_model$_id = $$v.id; _this._company_gateway_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, exception, _this = this, _s20_ = "CompanyGatewayEntity", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt; t2 = _this.get$_company_gateway_model$_$this()._gatewayId; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "gatewayId")); t3 = _this.get$_company_gateway_model$_$this()._acceptedCreditCards; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "acceptedCreditCards")); t4 = _this.get$_company_gateway_model$_$this()._requireShippingAddress; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireShippingAddress")); t5 = _this.get$_company_gateway_model$_$this()._requireBillingAddress; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireBillingAddress")); t6 = _this.get$_company_gateway_model$_$this()._requireClientName; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireClientName")); t7 = _this.get$_company_gateway_model$_$this()._requirePostalCode; t8 = _this.get$_company_gateway_model$_$this()._requireClientPhone; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireClientPhone")); t9 = _this.get$_company_gateway_model$_$this()._requireContactName; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireContactName")); t10 = _this.get$_company_gateway_model$_$this()._requireContactEmail; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireContactEmail")); t11 = _this.get$_company_gateway_model$_$this()._requireCvv; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "requireCvv")); t12 = _this.get$_company_gateway_model$_$this()._updateDetails; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "updateDetails")); t13 = _this.get$feesAndLimitsMap().build$0(0); t14 = _this.get$systemLogs().build$0(0); t15 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue1; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "customValue1")); t16 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue2; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "customValue2")); t17 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue3; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "customValue3")); t18 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue4; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "customValue4")); t19 = _this.get$_company_gateway_model$_$this()._config; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "config")); t20 = _this.get$_company_gateway_model$_$this()._tokenBilling; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "tokenBilling")); t21 = _this.get$_company_gateway_model$_$this()._isTestMode; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "isTestMode")); t22 = _this.get$_company_gateway_model$_$this()._label; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "label")); t23 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged; t24 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_createdAt; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "createdAt")); t25 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_updatedAt; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "updatedAt")); t26 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_archivedAt; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "archivedAt")); t27 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isDeleted; t28 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_createdUserId; t29 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_assignedUserId; t30 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_id; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "id")); _$result0 = A._$CompanyGatewayEntity$_(t3, t26, t29, t19, t24, t28, t15, t16, t17, t18, t13, t2, t30, t23, t27, t21, t22, t1, t5, t6, t8, t10, t9, t11, t7, t4, t14, t20, t12, t25); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "feesAndLimitsMap"; _this.get$feesAndLimitsMap().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_gateway_model$_$v = t1; return _$result; } }; A._$FeesAndLimitsSettings.prototype = { rebuild$1(updates) { var t1 = new A.FeesAndLimitsSettingsBuilder(); t1.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = false; A.ArgumentError_checkNotNull(this, "other"); t1._company_gateway_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.FeesAndLimitsSettings && _this.minLimit === other.minLimit && _this.maxLimit === other.maxLimit && _this.feeAmount === other.feeAmount && _this.feePercent === other.feePercent && _this.feeCap === other.feeCap && _this.taxRate1 === other.taxRate1 && _this.taxName1 === other.taxName1 && _this.taxRate2 === other.taxRate2 && _this.taxName2 === other.taxName2 && _this.taxRate3 === other.taxRate3 && _this.taxName3 === other.taxName3 && _this.adjustFeePercent === other.adjustFeePercent && _this.isEnabled === other.isEnabled; }, get$hashCode(_) { var _this = this, t1 = _this._company_gateway_model$__hashCode; return t1 == null ? _this._company_gateway_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSNumber_methods.get$hashCode(_this.minLimit)), B.JSNumber_methods.get$hashCode(_this.maxLimit)), B.JSNumber_methods.get$hashCode(_this.feeAmount)), B.JSNumber_methods.get$hashCode(_this.feePercent)), B.JSNumber_methods.get$hashCode(_this.feeCap)), B.JSNumber_methods.get$hashCode(_this.taxRate1)), B.JSString_methods.get$hashCode(_this.taxName1)), B.JSNumber_methods.get$hashCode(_this.taxRate2)), B.JSString_methods.get$hashCode(_this.taxName2)), B.JSNumber_methods.get$hashCode(_this.taxRate3)), B.JSString_methods.get$hashCode(_this.taxName3)), B.JSBool_methods.get$hashCode(_this.adjustFeePercent)), B.JSBool_methods.get$hashCode(_this.isEnabled))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("FeesAndLimitsSettings"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "minLimit", _this.minLimit); t2.add$2(t1, "maxLimit", _this.maxLimit); t2.add$2(t1, "feeAmount", _this.feeAmount); t2.add$2(t1, "feePercent", _this.feePercent); t2.add$2(t1, "feeCap", _this.feeCap); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "adjustFeePercent", _this.adjustFeePercent); t2.add$2(t1, "isEnabled", _this.isEnabled); return t2.toString$0(t1); } }; A.FeesAndLimitsSettingsBuilder.prototype = { get$_company_gateway_model$_$this() { var _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { _this._minLimit = $$v.minLimit; _this._maxLimit = $$v.maxLimit; _this._feeAmount = $$v.feeAmount; _this._feePercent = $$v.feePercent; _this._feeCap = $$v.feeCap; _this._company_gateway_model$_taxRate1 = $$v.taxRate1; _this._company_gateway_model$_taxName1 = $$v.taxName1; _this._company_gateway_model$_taxRate2 = $$v.taxRate2; _this._company_gateway_model$_taxName2 = $$v.taxName2; _this._company_gateway_model$_taxRate3 = $$v.taxRate3; _this._company_gateway_model$_taxName3 = $$v.taxName3; _this._adjustFeePercent = $$v.adjustFeePercent; _this._company_gateway_model$_isEnabled = $$v.isEnabled; _this._company_gateway_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _s21_ = "FeesAndLimitsSettings", _$result = _this._company_gateway_model$_$v; if (_$result == null) { t1 = _this.get$_company_gateway_model$_$this()._minLimit; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "minLimit")); t2 = _this.get$_company_gateway_model$_$this()._maxLimit; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "maxLimit")); t3 = _this.get$_company_gateway_model$_$this()._feeAmount; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "feeAmount")); t4 = _this.get$_company_gateway_model$_$this()._feePercent; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "feePercent")); t5 = _this.get$_company_gateway_model$_$this()._feeCap; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "feeCap")); t6 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxRate1")); t7 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxName1")); t8 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxRate2")); t9 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxName2")); t10 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxRate3")); t11 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "taxName3")); t12 = _this.get$_company_gateway_model$_$this()._adjustFeePercent; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "adjustFeePercent")); t13 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "isEnabled")); _$result = A._$FeesAndLimitsSettings$_(t12, t3, t5, t4, t13, t2, t1, t7, t9, t11, t6, t8, t10); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._company_gateway_model$_$v = _$result; } }; A._CompanyGatewayEntity_Object_BaseEntity.prototype = {}; A._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.CompanyEntity.prototype = { matchesFilter$1(filter) { var t1, t2, t3, _this = this; for (t1 = _this.users._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = type$.JSArray_legacy_String; t1.moveNext$0();) { t3 = t1.__interceptors$_current; if (A.matchesStrings(A._setArrayType([t3.firstName, t3.lastName, t3.email, t3.phone, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } for (t1 = _this.projects._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { t3 = t1.__interceptors$_current; if (A.matchesStrings(A._setArrayType([t3.name, t3.number, t3.publicNotes, t3.privateNotes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } for (t1 = _this.products._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { t3 = t1.__interceptors$_current; if (A.matchesStrings(A._setArrayType([t3.productKey, t3.notes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } t1 = _this.settings.name; if (t1 == null) t1 = ""; return A.matchesStrings(A._setArrayType([_this.subdomain, t1, _this.companyKey], t2), filter); }, matchesFilterValue$1(filter) { var t1, t2, t3, value, _this = this; for (t1 = _this.users._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = type$.JSArray_legacy_String; t1.moveNext$0();) { t3 = t1.__interceptors$_current; value = A.matchesStringsValue(A._setArrayType([t3.firstName, t3.lastName, t3.email, t3.phone, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } for (t1 = _this.projects._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { t3 = t1.__interceptors$_current; value = A.matchesStringsValue(A._setArrayType([t3.name, t3.number, t3.publicNotes, t3.privateNotes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } for (t1 = _this.products._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { t3 = t1.__interceptors$_current; value = A.matchesStringsValue(A._setArrayType([t3.notes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } t1 = _this.settings.name; if (t1 == null) t1 = ""; return A.matchesStringsValue(A._setArrayType([_this.subdomain, t1, _this.companyKey], t2), filter); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; }, get$listDisplayName() { return null; }, get$enableFirstInvoiceTaxRate() { return this.numberOfInvoiceTaxRates >= 1; }, get$enableSecondInvoiceTaxRate() { return this.numberOfInvoiceTaxRates >= 2; }, get$enableThirdInvoiceTaxRate() { return this.numberOfInvoiceTaxRates >= 3; }, get$enableFirstItemTaxRate() { return this.numberOfItemTaxRates >= 1; }, get$enableSecondItemTaxRate() { return this.numberOfItemTaxRates >= 2; }, get$enableThirdItemTaxRate() { return this.numberOfItemTaxRates >= 3; }, get$hasCustomSurcharge() { var _this = this; return _this.getCustomFieldLabel$1("surcharge1").length !== 0 || _this.getCustomFieldLabel$1("surcharge2").length !== 0 || _this.getCustomFieldLabel$1("surcharge3").length !== 0 || _this.getCustomFieldLabel$1("surcharge4").length !== 0; }, getCustomFieldLabel$1(field) { var t1, _s8_ = ".product", _s7_ = "invoice", _s17_ = "recurring_invoice", _s14_ = "purchase_order", _s17_0 = "recurring_expense"; field = J.replaceFirst$2$s(field, "$", ""); if (B.JSString_methods.contains$1(field, ".custom")) field = B.JSString_methods.replaceFirst$2(field, ".custom", ""); if (B.JSString_methods.contains$1(field, _s8_)) field = B.JSString_methods.replaceFirst$2(field, _s8_, ""); else if (B.JSString_methods.contains$1(field, ".task")) field = B.JSString_methods.replaceFirst$2(field, ".task", ""); if (B.JSString_methods.contains$1(field, "quote")) field = B.JSString_methods.replaceFirst$2(field, "quote", _s7_); else if (B.JSString_methods.contains$1(field, "credit")) field = B.JSString_methods.replaceFirst$2(field, "credit", _s7_); else if (B.JSString_methods.contains$1(field, _s17_)) field = B.JSString_methods.replaceFirst$2(field, _s17_, _s7_); else if (B.JSString_methods.contains$1(field, _s14_)) field = B.JSString_methods.replaceFirst$2(field, _s14_, _s7_); if (B.JSString_methods.contains$1(field, _s17_0)) field = B.JSString_methods.replaceFirst$2(field, _s17_0, "expense"); t1 = this.customFields._map$_map; if (t1.containsKey$1(0, field)) return B.JSArray_methods.get$first(J.split$1$s(t1.$index(0, field), "|")); else return ""; }, getCustomFieldType$1(field) { var value, t1 = this.customFields._map$_map, t2 = t1.$index(0, field); if (J.contains$1$asx(t2 == null ? "" : t2, "|")) { value = B.JSArray_methods.get$last(J.split$1$s(t1.$index(0, field), "|")); if (B.JSArray_methods.contains$1(A._setArrayType(["single_line_text", "date", "switch"], type$.JSArray_legacy_String), value)) return value; else return "dropdown"; } else return "multi_line_text"; }, getCustomFieldValues$2$excludeBlank(field, excludeBlank) { var parts, data, t1, values = this.customFields._map$_map.$index(0, field); if (values == null || !B.JSString_methods.contains$1(values, "|")) return A._setArrayType([], type$.JSArray_legacy_String); else { parts = values.split("|"); data = J.split$1$s(B.JSArray_methods.get$last(parts), ","); if (parts.length === 2) { t1 = type$.JSArray_legacy_String; if (B.JSArray_methods.contains$1(A._setArrayType(["date", "switch", "single_line_text"], t1), parts[1])) return A._setArrayType([], t1); } if (excludeBlank) { t1 = A._arrayInstanceType(data)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(data, new A.CompanyEntity_getCustomFieldValues_closure(), t1), true, t1._eval$1("Iterable.E")); } else return data; } }, getCustomFieldValues$1(field) { return this.getCustomFieldValues$2$excludeBlank(field, false); }, get$coreCompany() { return this.rebuild$1(new A.CompanyEntity_coreCompany_closure()); }, isModuleEnabled$1(entityType) { var _this = this; if ((entityType === B.EntityType_invoice || entityType === B.EntityType_payment) && (_this.enabledModules & 4096) === 0) return false; else if (entityType === B.EntityType_credit && (_this.enabledModules & 2) === 0) return false; else if (entityType === B.EntityType_quote && (_this.enabledModules & 4) === 0) return false; else if (entityType === B.EntityType_task && (_this.enabledModules & 8) === 0) return false; else if (entityType === B.EntityType_project && (_this.enabledModules & 32) === 0) return false; else if (entityType === B.EntityType_vendor && (_this.enabledModules & 64) === 0) return false; else if (entityType === B.EntityType_expense && (_this.enabledModules & 16) === 0) return false; else if (entityType === B.EntityType_recurringInvoice && (_this.enabledModules & 1) === 0) return false; else if (entityType === B.EntityType_recurringExpense && (_this.enabledModules & 512) === 0) return false; else if (entityType === B.EntityType_purchaseOrder && (_this.enabledModules & 16384) === 0) return false; return true; }, $isSelectableEntity: 1 }; A.CompanyEntity_getCustomFieldValues_closure.prototype = { call$1(data) { return data.length !== 0; }, $signature: 16 }; A.CompanyEntity_coreCompany_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$clients(b).get$_safeList(), 0); B.JSArray_methods.set$length(b.get$products().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$invoices().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$payments().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$quotes(b).get$_safeList(), 0); B.JSArray_methods.set$length(b.get$purchaseOrders().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$credits().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$tasks().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$projects().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$vendors().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$expenses().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$webhooks().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$designs().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$companyGateways().get$_safeList(), 0); return b; }, $signature: 23 }; A.GatewayEntity.prototype = { get$supportsTokenBilling() { var t1 = this.options; t1 = t1.get$keys(t1); t1.toString; t1 = new A.WhereIterable(t1, new A.GatewayEntity_supportsTokenBilling_closure(this), t1.$ti._eval$1("WhereIterable")); return !t1.get$isEmpty(t1); }, get$supportsRefunds() { var t1 = this.options; t1 = t1.get$keys(t1); t1.toString; t1 = new A.WhereIterable(t1, new A.GatewayEntity_supportsRefunds_closure(this), t1.$ti._eval$1("WhereIterable")); return !t1.get$isEmpty(t1); }, get$parsedFields() { var t1 = this.fields; return t1.length === 0 ? A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : B.C_JsonCodec.decode$2$reviver(0, t1, null); }, matchesFilter$1(filter) { var t1, gatewayIds, i, t2; if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; t1 = this.options; t1 = t1.get$keys(t1); t1.toString; gatewayIds = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); t1 = $.$get$navigatorKey(); t1.toString; t1 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (i = 0; i < gatewayIds.length; ++i) { t2 = t1.lookup$1(B.Map_IYMYu.$index(0, gatewayIds[i])).toLowerCase(); if (A.stringContainsUnchecked(t2, filter, 0)) return true; } return false; }, matchesFilterValue$1(filter) { var t2, gatewayIds, i, gatewayType, t3, t1 = filter == null; if (t1 || filter.length === 0) return null; t2 = this.options; t2 = t2.get$keys(t2); t2.toString; gatewayIds = A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); t2 = $.$get$navigatorKey(); t2.toString; t2 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (i = 0; i < gatewayIds.length; ++i) { gatewayType = t2.lookup$1(B.Map_IYMYu.$index(0, gatewayIds[i])); t3 = gatewayType.toLowerCase(); if (t1) A.throwExpression(A.argumentErrorValue(filter)); if (A.stringContainsUnchecked(t3, filter, 0)) return gatewayType; } return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, supportedEvents$0() { var t1, events = A._setArrayType([], type$.JSArray_legacy_String); this.options._map$_map.forEach$1(0, new A.GatewayEntity_supportedEvents_closure(events)); t1 = A.LinkedHashSet_LinkedHashSet$from(events, type$.legacy_String); return A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); }, get$listDisplayAmountType() { return null; } }; A.GatewayEntity_supportsTokenBilling_closure.prototype = { call$1(typeId) { return this.$this.options._map$_map.$index(0, typeId).supportTokenBilling; }, $signature: 16 }; A.GatewayEntity_supportsRefunds_closure.prototype = { call$1(typeId) { return this.$this.options._map$_map.$index(0, typeId).supportRefunds; }, $signature: 16 }; A.GatewayEntity_supportedEvents_closure.prototype = { call$2(key, option) { var t1 = option.webhooks; B.JSArray_methods.addAll$1(this.events, J.toList$0$ax(t1 == null ? A._setArrayType([], type$.JSArray_legacy_String) : t1)); }, $signature: 1147 }; A.GatewayOptionsEntity.prototype = {}; A.UserCompanyEntity.prototype = { can$2(permission, entityType) { var t1; if (entityType == null) return false; if (!this.company.isModuleEnabled$1(entityType)) return false; if (this.isAdmin) return true; t1 = this.permissions; return B.JSString_methods.contains$1(t1, permission.toString$0(0) + "_all") || B.JSString_methods.contains$1(t1, permission.toString$0(0) + "_" + A.toSnakeCase(entityType.name)); }, canEditEntity$1(entity) { var t1; if (entity == null) return false; if (entity.get$isNew()) return this.can$2(B.UserPermission_create, entity.get$entityType()); else { if (!this.can$2(B.UserPermission_edit, entity.get$entityType())) { t1 = this.user; t1.toString; t1 = t1.id; t1 = entity.get$createdUserId() === t1 || entity.get$assignedUserId() === t1; } else t1 = true; return t1; } } }; A.UserCompanyEntity_UserCompanyEntity_closure.prototype = { call$1(b) { b.$indexSet(0, "email", A.BuiltList_BuiltList$from(A._setArrayType(["all_notifications"], type$.JSArray_legacy_String), type$.legacy_String)); return b; }, $signature: 684 }; A.UserCompanyEntity__initializeBuilder_closure.prototype = { call$1(b) { b.$indexSet(0, "email", A.BuiltList_BuiltList$from(A._setArrayType(["all_notifications"], type$.JSArray_legacy_String), type$.legacy_String)); return b; }, $signature: 684 }; A.UserSettingsEntity.prototype = { getTableColumns$1(entityType) { var t2, t1 = this.tableColumns; if (t1 != null) { t2 = entityType.toString$0(0); t2 = t1._map$_map.containsKey$1(0, t2); } else t2 = false; if (t2) { t2 = entityType.toString$0(0); t2 = t1._map$_map.$index(0, t2); return new A.CopyOnWriteList(true, t2._list, A.instanceType(t2)._eval$1("CopyOnWriteList<1>")); } else return null; } }; A.ReportSettingsEntity.prototype = {}; A.CompanyItemResponse.prototype = {}; A.RegistrationFieldEntity.prototype = {}; A._$CompanyEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["custom_surcharge_taxes1", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes1, B.FullType_MtR), "custom_surcharge_taxes2", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes2, B.FullType_MtR), "custom_surcharge_taxes3", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes3, B.FullType_MtR), "custom_surcharge_taxes4", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes4, B.FullType_MtR), "size_id", serializers.serialize$2$specifiedType(object.sizeId, B.FullType_h8g), "industry_id", serializers.serialize$2$specifiedType(object.industryId, B.FullType_h8g), "subdomain", serializers.serialize$2$specifiedType(object.subdomain, B.FullType_h8g), "portal_mode", serializers.serialize$2$specifiedType(object.portalMode, B.FullType_h8g), "portal_domain", serializers.serialize$2$specifiedType(object.portalDomain, B.FullType_h8g), "update_products", serializers.serialize$2$specifiedType(object.updateProducts, B.FullType_MtR), "convert_products", serializers.serialize$2$specifiedType(object.convertProductExchangeRate, B.FullType_MtR), "convert_rate_to_client", serializers.serialize$2$specifiedType(object.convertRateToClient, B.FullType_MtR), "fill_products", serializers.serialize$2$specifiedType(object.fillProducts, B.FullType_MtR), "enable_product_cost", serializers.serialize$2$specifiedType(object.enableProductCost, B.FullType_MtR), "enable_product_quantity", serializers.serialize$2$specifiedType(object.enableProductQuantity, B.FullType_MtR), "enable_product_discount", serializers.serialize$2$specifiedType(object.enableProductDiscount, B.FullType_MtR), "default_task_is_date_based", serializers.serialize$2$specifiedType(object.defaultTaskIsDateBased, B.FullType_MtR), "default_quantity", serializers.serialize$2$specifiedType(object.defaultQuantity, B.FullType_MtR), "show_product_details", serializers.serialize$2$specifiedType(object.showProductDetails, B.FullType_MtR), "client_can_register", serializers.serialize$2$specifiedType(object.clientCanRegister, B.FullType_MtR), "is_large", serializers.serialize$2$specifiedType(object.isLarge, B.FullType_MtR), "is_disabled", serializers.serialize$2$specifiedType(object.isDisabled, B.FullType_MtR), "enable_shop_api", serializers.serialize$2$specifiedType(object.enableShopApi, B.FullType_MtR), "company_key", serializers.serialize$2$specifiedType(object.companyKey, B.FullType_h8g), "first_day_of_week", serializers.serialize$2$specifiedType(object.firstDayOfWeek, B.FullType_h8g), "first_month_of_year", serializers.serialize$2$specifiedType(object.firstMonthOfYear, B.FullType_h8g), "enabled_tax_rates", serializers.serialize$2$specifiedType(object.numberOfInvoiceTaxRates, B.FullType_kjq), "enabled_item_tax_rates", serializers.serialize$2$specifiedType(object.numberOfItemTaxRates, B.FullType_kjq), "expense_inclusive_taxes", serializers.serialize$2$specifiedType(object.expenseInclusiveTaxes, B.FullType_MtR), "session_timeout", serializers.serialize$2$specifiedType(object.sessionTimeout, B.FullType_kjq), "default_password_timeout", serializers.serialize$2$specifiedType(object.passwordTimeout, B.FullType_kjq), "oauth_password_required", serializers.serialize$2$specifiedType(object.oauthPasswordRequired, B.FullType_MtR), "markdown_enabled", serializers.serialize$2$specifiedType(object.markdownEnabled, B.FullType_MtR), "markdown_email_enabled", serializers.serialize$2$specifiedType(object.markdownEmailEnabled, B.FullType_MtR), "use_comma_as_decimal_place", serializers.serialize$2$specifiedType(object.useCommaAsDecimalPlace, B.FullType_MtR), "report_include_drafts", serializers.serialize$2$specifiedType(object.reportIncludeDrafts, B.FullType_MtR), "use_quote_terms_on_conversion", serializers.serialize$2$specifiedType(object.useQuoteTermsOnConversion, B.FullType_MtR), "enable_applying_payments", serializers.serialize$2$specifiedType(object.enableApplyingPayments, B.FullType_MtR), "track_inventory", serializers.serialize$2$specifiedType(object.trackInventory, B.FullType_MtR), "inventory_notification_threshold", serializers.serialize$2$specifiedType(object.stockNotificationThreshold, B.FullType_kjq), "stock_notification", serializers.serialize$2$specifiedType(object.stockNotification, B.FullType_MtR), "groups", serializers.serialize$2$specifiedType(object.groups, B.FullType_EOZ), "activities", serializers.serialize$2$specifiedType(object.activities, B.FullType_QWw), "tax_rates", serializers.serialize$2$specifiedType(object.taxRates, B.FullType_IIj), "task_statuses", serializers.serialize$2$specifiedType(object.taskStatuses, B.FullType_WVg), "taskStatusMap", serializers.serialize$2$specifiedType(object.taskStatusMap, B.FullType_woc), "company_gateways", serializers.serialize$2$specifiedType(object.companyGateways, B.FullType_A8J), "expense_categories", serializers.serialize$2$specifiedType(object.expenseCategories, B.FullType_8cq), "users", serializers.serialize$2$specifiedType(object.users, B.FullType_e7r), "clients", serializers.serialize$2$specifiedType(object.clients, B.FullType_Ag3), "products", serializers.serialize$2$specifiedType(object.products, B.FullType_GBo), "invoices", serializers.serialize$2$specifiedType(object.invoices, B.FullType_xS5), "recurring_invoices", serializers.serialize$2$specifiedType(object.recurringInvoices, B.FullType_xS5), "recurring_expenses", serializers.serialize$2$specifiedType(object.recurringExpenses, B.FullType_0vR), "payments", serializers.serialize$2$specifiedType(object.payments, B.FullType_ORM), "quotes", serializers.serialize$2$specifiedType(object.quotes, B.FullType_xS5), "credits", serializers.serialize$2$specifiedType(object.credits, B.FullType_xS5), "purchase_orders", serializers.serialize$2$specifiedType(object.purchaseOrders, B.FullType_xS5), "tasks", serializers.serialize$2$specifiedType(object.tasks, B.FullType_UWS), "projects", serializers.serialize$2$specifiedType(object.projects, B.FullType_KEc), "expenses", serializers.serialize$2$specifiedType(object.expenses, B.FullType_0vR), "vendors", serializers.serialize$2$specifiedType(object.vendors, B.FullType_Pss), "designs", serializers.serialize$2$specifiedType(object.designs, B.FullType_8sg), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "tokens_hashed", serializers.serialize$2$specifiedType(object.tokens, B.FullType_mKc), "webhooks", serializers.serialize$2$specifiedType(object.webhooks, B.FullType_46c), "subscriptions", serializers.serialize$2$specifiedType(object.subscriptions, B.FullType_NIe), "payment_terms", serializers.serialize$2$specifiedType(object.paymentTerms, B.FullType_kvD), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, B.FullType_oGx), "client_registration_fields", serializers.serialize$2$specifiedType(object.clientRegistrationFields, B.FullType_pjG), "custom_fields", serializers.serialize$2$specifiedType(object.customFields, B.FullType_LNO), "slack_webhook_url", serializers.serialize$2$specifiedType(object.slackWebhookUrl, B.FullType_h8g), "google_analytics_key", serializers.serialize$2$specifiedType(object.googleAnalyticsKey, B.FullType_h8g), "mark_expenses_invoiceable", serializers.serialize$2$specifiedType(object.markExpensesInvoiceable, B.FullType_MtR), "mark_expenses_paid", serializers.serialize$2$specifiedType(object.markExpensesPaid, B.FullType_MtR), "invoice_expense_documents", serializers.serialize$2$specifiedType(object.invoiceExpenseDocuments, B.FullType_MtR), "invoice_task_documents", serializers.serialize$2$specifiedType(object.invoiceTaskDocuments, B.FullType_MtR), "invoice_task_timelog", serializers.serialize$2$specifiedType(object.invoiceTaskTimelog, B.FullType_MtR), "invoice_task_datelog", serializers.serialize$2$specifiedType(object.invoiceTaskDatelog, B.FullType_MtR), "auto_start_tasks", serializers.serialize$2$specifiedType(object.autoStartTasks, B.FullType_MtR), "show_tasks_table", serializers.serialize$2$specifiedType(object.showTasksTable, B.FullType_MtR), "show_task_end_date", serializers.serialize$2$specifiedType(object.showTaskEndDate, B.FullType_MtR), "settings", serializers.serialize$2$specifiedType(object.settings, B.FullType_Iqz0), "enabled_modules", serializers.serialize$2$specifiedType(object.enabledModules, B.FullType_kjq), "calculate_expense_tax_by_amount", serializers.serialize$2$specifiedType(object.calculateExpenseTaxByAmount, B.FullType_MtR), "stop_on_unpaid_recurring ", serializers.serialize$2$specifiedType(object.stopOnUnpaidRecurring, B.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_qBb)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, key, value, t52, t53, t54, _null = null, result = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_SettingsEntity, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String, t4 = type$.legacy_BuiltList_legacy_Object, t5 = type$.legacy_RegistrationFieldEntity, t6 = type$.ListBuilder_legacy_RegistrationFieldEntity, t7 = type$.legacy_SystemLogEntity, t8 = type$.ListBuilder_legacy_SystemLogEntity, t9 = type$.legacy_PaymentTermEntity, t10 = type$.ListBuilder_legacy_PaymentTermEntity, t11 = type$.legacy_SubscriptionEntity, t12 = type$.ListBuilder_legacy_SubscriptionEntity, t13 = type$.legacy_WebhookEntity, t14 = type$.ListBuilder_legacy_WebhookEntity, t15 = type$.legacy_TokenEntity, t16 = type$.ListBuilder_legacy_TokenEntity, t17 = type$.legacy_DocumentEntity, t18 = type$.ListBuilder_legacy_DocumentEntity, t19 = type$.legacy_DesignEntity, t20 = type$.ListBuilder_legacy_DesignEntity, t21 = type$.legacy_VendorEntity, t22 = type$.ListBuilder_legacy_VendorEntity, t23 = type$.legacy_ExpenseEntity, t24 = type$.ListBuilder_legacy_ExpenseEntity, t25 = type$.legacy_ProjectEntity, t26 = type$.ListBuilder_legacy_ProjectEntity, t27 = type$.legacy_TaskEntity, t28 = type$.ListBuilder_legacy_TaskEntity, t29 = type$.legacy_InvoiceEntity, t30 = type$.ListBuilder_legacy_InvoiceEntity, t31 = type$.legacy_PaymentEntity, t32 = type$.ListBuilder_legacy_PaymentEntity, t33 = type$.legacy_ProductEntity, t34 = type$.ListBuilder_legacy_ProductEntity, t35 = type$.legacy_ClientEntity, t36 = type$.ListBuilder_legacy_ClientEntity, t37 = type$.legacy_UserEntity, t38 = type$.ListBuilder_legacy_UserEntity, t39 = type$.legacy_ExpenseCategoryEntity, t40 = type$.ListBuilder_legacy_ExpenseCategoryEntity, t41 = type$.legacy_CompanyGatewayEntity, t42 = type$.ListBuilder_legacy_CompanyGatewayEntity, t43 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity, t44 = type$.legacy_TaskStatusEntity, t45 = type$.ListBuilder_legacy_TaskStatusEntity, t46 = type$.legacy_TaxRateEntity, t47 = type$.ListBuilder_legacy_TaxRateEntity, t48 = type$.legacy_ActivityEntity, t49 = type$.ListBuilder_legacy_ActivityEntity, t50 = type$.legacy_GroupEntity, t51 = type$.ListBuilder_legacy_GroupEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "custom_surcharge_taxes1": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes1 = t52; break; case "custom_surcharge_taxes2": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes2 = t52; break; case "custom_surcharge_taxes3": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes3 = t52; break; case "custom_surcharge_taxes4": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes4 = t52; break; case "size_id": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_sizeId = t52; break; case "industry_id": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_industryId = t52; break; case "subdomain": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._subdomain = t52; break; case "portal_mode": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._portalMode = t52; break; case "portal_domain": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._portalDomain = t52; break; case "update_products": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._updateProducts = t52; break; case "convert_products": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._convertProductExchangeRate = t52; break; case "convert_rate_to_client": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._convertRateToClient = t52; break; case "fill_products": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._fillProducts = t52; break; case "enable_product_cost": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableProductCost = t52; break; case "enable_product_quantity": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableProductQuantity = t52; break; case "enable_product_discount": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableProductDiscount = t52; break; case "default_task_is_date_based": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._defaultTaskIsDateBased = t52; break; case "default_quantity": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._defaultQuantity = t52; break; case "show_product_details": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._showProductDetails = t52; break; case "client_can_register": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._clientCanRegister = t52; break; case "is_large": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isLarge = t52; break; case "is_disabled": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isDisabled = t52; break; case "enable_shop_api": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableShopApi = t52; break; case "company_key": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._companyKey = t52; break; case "first_day_of_week": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._firstDayOfWeek = t52; break; case "first_month_of_year": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._firstMonthOfYear = t52; break; case "enabled_tax_rates": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._numberOfInvoiceTaxRates = t52; break; case "enabled_item_tax_rates": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._numberOfItemTaxRates = t52; break; case "expense_inclusive_taxes": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._expenseInclusiveTaxes = t52; break; case "session_timeout": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._sessionTimeout = t52; break; case "default_password_timeout": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._passwordTimeout = t52; break; case "oauth_password_required": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._oauthPasswordRequired = t52; break; case "markdown_enabled": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._markdownEnabled = t52; break; case "markdown_email_enabled": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._markdownEmailEnabled = t52; break; case "use_comma_as_decimal_place": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._useCommaAsDecimalPlace = t52; break; case "report_include_drafts": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._reportIncludeDrafts = t52; break; case "use_quote_terms_on_conversion": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._useQuoteTermsOnConversion = t52; break; case "enable_applying_payments": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._enableApplyingPayments = t52; break; case "track_inventory": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._trackInventory = t52; break; case "inventory_notification_threshold": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._stockNotificationThreshold = t52; break; case "stock_notification": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._stockNotification = t52; break; case "groups": t52 = result.get$_company_model$_$this(); t53 = t52._groups; if (t53 == null) { t53 = new A.ListBuilder(t51); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t50); t52._groups = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_EOZ)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "activities": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_activities; if (t53 == null) { t53 = new A.ListBuilder(t49); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t48); t52._company_model$_activities = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_QWw)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tax_rates": t52 = result.get$_company_model$_$this(); t53 = t52._taxRates; if (t53 == null) { t53 = new A.ListBuilder(t47); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t46); t52._taxRates = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_IIj)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "task_statuses": t52 = result.get$_company_model$_$this(); t53 = t52._taskStatuses; if (t53 == null) { t53 = new A.ListBuilder(t45); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t44); t52._taskStatuses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_WVg)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "taskStatusMap": t52 = result.get$_company_model$_$this(); t53 = t52._taskStatusMap; if (t53 == null) { t53 = new A.MapBuilder(_null, $, _null, t43); t53.replace$1(0, B.Map_empty0); t52._taskStatusMap = t53; t52 = t53; } else t52 = t53; t52.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_woc)); break; case "company_gateways": t52 = result.get$_company_model$_$this(); t53 = t52._companyGateways; if (t53 == null) { t53 = new A.ListBuilder(t42); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t41); t52._companyGateways = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_A8J)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "expense_categories": t52 = result.get$_company_model$_$this(); t53 = t52._expenseCategories; if (t53 == null) { t53 = new A.ListBuilder(t40); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t39); t52._expenseCategories = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_8cq)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "users": t52 = result.get$_company_model$_$this(); t53 = t52._users; if (t53 == null) { t53 = new A.ListBuilder(t38); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t37); t52._users = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_e7r)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "clients": t52 = result.get$_company_model$_$this(); t53 = t52._clients; if (t53 == null) { t53 = new A.ListBuilder(t36); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t35); t52._clients = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_Ag3)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "products": t52 = result.get$_company_model$_$this(); t53 = t52._products; if (t53 == null) { t53 = new A.ListBuilder(t34); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t33); t52._products = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_GBo)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "invoices": t52 = result.get$_company_model$_$this(); t53 = t52._invoices; if (t53 == null) { t53 = new A.ListBuilder(t30); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t29); t52._invoices = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "recurring_invoices": t52 = result.get$_company_model$_$this(); t53 = t52._recurringInvoices; if (t53 == null) { t53 = new A.ListBuilder(t30); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t29); t52._recurringInvoices = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "recurring_expenses": t52 = result.get$_company_model$_$this(); t53 = t52._recurringExpenses; if (t53 == null) { t53 = new A.ListBuilder(t24); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t23); t52._recurringExpenses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_0vR)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "payments": t52 = result.get$_company_model$_$this(); t53 = t52._payments; if (t53 == null) { t53 = new A.ListBuilder(t32); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t31); t52._payments = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_ORM)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "quotes": t52 = result.get$_company_model$_$this(); t53 = t52._quotes; if (t53 == null) { t53 = new A.ListBuilder(t30); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t29); t52._quotes = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "credits": t52 = result.get$_company_model$_$this(); t53 = t52._credits; if (t53 == null) { t53 = new A.ListBuilder(t30); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t29); t52._credits = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "purchase_orders": t52 = result.get$_company_model$_$this(); t53 = t52._purchaseOrders; if (t53 == null) { t53 = new A.ListBuilder(t30); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t29); t52._purchaseOrders = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tasks": t52 = result.get$_company_model$_$this(); t53 = t52._tasks; if (t53 == null) { t53 = new A.ListBuilder(t28); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t27); t52._tasks = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_UWS)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "projects": t52 = result.get$_company_model$_$this(); t53 = t52._projects; if (t53 == null) { t53 = new A.ListBuilder(t26); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t25); t52._projects = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_KEc)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "expenses": t52 = result.get$_company_model$_$this(); t53 = t52._expenses; if (t53 == null) { t53 = new A.ListBuilder(t24); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t23); t52._expenses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_0vR)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "vendors": t52 = result.get$_company_model$_$this(); t53 = t52._vendors; if (t53 == null) { t53 = new A.ListBuilder(t22); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t21); t52._vendors = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_Pss)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "designs": t52 = result.get$_company_model$_$this(); t53 = t52._designs; if (t53 == null) { t53 = new A.ListBuilder(t20); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t19); t52._designs = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_8sg)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "documents": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_documents; if (t53 == null) { t53 = new A.ListBuilder(t18); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t17); t52._company_model$_documents = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tokens_hashed": t52 = result.get$_company_model$_$this(); t53 = t52._tokens; if (t53 == null) { t53 = new A.ListBuilder(t16); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t15); t52._tokens = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_mKc)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "webhooks": t52 = result.get$_company_model$_$this(); t53 = t52._webhooks; if (t53 == null) { t53 = new A.ListBuilder(t14); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t13); t52._webhooks = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_46c)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "subscriptions": t52 = result.get$_company_model$_$this(); t53 = t52._subscriptions; if (t53 == null) { t53 = new A.ListBuilder(t12); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t11); t52._subscriptions = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_NIe)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "payment_terms": t52 = result.get$_company_model$_$this(); t53 = t52._paymentTerms; if (t53 == null) { t53 = new A.ListBuilder(t10); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t9); t52._paymentTerms = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_kvD)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "system_logs": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_systemLogs; if (t53 == null) { t53 = new A.ListBuilder(t8); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t7); t52._company_model$_systemLogs = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_oGx)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "client_registration_fields": t52 = result.get$_company_model$_$this(); t53 = t52._clientRegistrationFields; if (t53 == null) { t53 = new A.ListBuilder(t6); t53.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t52._clientRegistrationFields = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_pjG)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = A.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "custom_fields": t52 = result.get$_company_model$_$this(); t53 = t52._customFields; if (t53 == null) { t53 = new A.MapBuilder(_null, $, _null, t3); t53.replace$1(0, B.Map_empty0); t52._customFields = t53; t52 = t53; } else t52 = t53; t52.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "slack_webhook_url": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._slackWebhookUrl = t52; break; case "google_analytics_key": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._googleAnalyticsKey = t52; break; case "mark_expenses_invoiceable": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._markExpensesInvoiceable = t52; break; case "mark_expenses_paid": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._markExpensesPaid = t52; break; case "invoice_expense_documents": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._invoiceExpenseDocuments = t52; break; case "invoice_task_documents": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskDocuments = t52; break; case "invoice_task_timelog": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskTimelog = t52; break; case "invoice_task_datelog": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskDatelog = t52; break; case "auto_start_tasks": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._autoStartTasks = t52; break; case "show_tasks_table": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._showTasksTable = t52; break; case "show_task_end_date": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._showTaskEndDate = t52; break; case "settings": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_settings; t52 = t53 == null ? t52._company_model$_settings = new A.SettingsEntityBuilder() : t53; t53 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz0)); if (t53 == null) A.throwExpression(A.ArgumentError$notNull("other")); t52._settings_model$_$v = t53; break; case "enabled_modules": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._enabledModules = t52; break; case "calculate_expense_tax_by_amount": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._calculateExpenseTaxByAmount = t52; break; case "stop_on_unpaid_recurring ": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._stopOnUnpaidRecurring = t52; break; case "isChanged": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._company_model$_isChanged = t52; break; case "created_at": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._company_model$_createdAt = t52; break; case "updated_at": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._company_model$_updatedAt = t52; break; case "archived_at": t52 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._company_model$_archivedAt = t52; break; case "is_deleted": t52 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._company_model$_isDeleted = t52; break; case "user_id": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_createdUserId = t52; break; case "assigned_user_id": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_assignedUserId = t52; break; case "entity_type": t52 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_company_model$_$this()._company_model$_entityType = t52; break; case "id": t52 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_id = t52; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ChN; }, get$wireName() { return "CompanyEntity"; } }; A._$GatewayEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["key", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "is_offsite", serializers.serialize$2$specifiedType(object.isOffsite, B.FullType_MtR), "visible", serializers.serialize$2$specifiedType(object.isVisible, B.FullType_MtR), "sort_order", serializers.serialize$2$specifiedType(object.sortOrder, B.FullType_kjq), "default_gateway_type_id", serializers.serialize$2$specifiedType(object.defaultGatewayTypeId, B.FullType_h8g), "site_url", serializers.serialize$2$specifiedType(object.siteUrl, B.FullType_h8g), "options", serializers.serialize$2$specifiedType(object.options, B.FullType_sm9), "fields", serializers.serialize$2$specifiedType(object.fields, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.GatewayEntityBuilder(); result.get$_company_model$_$this()._siteUrl = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_GatewayOptionsEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_id = t2; break; case "name": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_name = t2; break; case "is_offsite": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isOffsite = t2; break; case "visible": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isVisible = t2; break; case "sort_order": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._sortOrder = t2; break; case "default_gateway_type_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._defaultGatewayTypeId = t2; break; case "site_url": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._siteUrl = t2; break; case "options": t2 = result.get$_company_model$_$this(); t3 = t2._company_model$_options; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._company_model$_options = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_sm9)); break; case "fields": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._company_model$_fields = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_oW3; }, get$wireName() { return "GatewayEntity"; } }; A._$GatewayOptionsEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["refund", serializers.serialize$2$specifiedType(object.supportRefunds, B.FullType_MtR), "token_billing", serializers.serialize$2$specifiedType(object.supportTokenBilling, B.FullType_MtR)], type$.JSArray_legacy_Object), value = object.webhooks; if (value != null) { result.push("webhooks"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_6m4)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new A.GatewayOptionsEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "refund": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._supportRefunds = t4; break; case "token_billing": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._supportTokenBilling = t4; break; case "webhooks": t4 = result.get$_company_model$_$this(); t5 = t4._webhooks; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._webhooks = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_hWW; }, get$wireName() { return "GatewayOptionsEntity"; } }; A._$UserCompanyEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["is_admin", serializers.serialize$2$specifiedType(object.isAdmin, B.FullType_MtR), "is_owner", serializers.serialize$2$specifiedType(object.isOwner, B.FullType_MtR), "permissions_updated_at", serializers.serialize$2$specifiedType(object.permissionsUpdatedAt, B.FullType_kjq), "permissions", serializers.serialize$2$specifiedType(object.permissions, B.FullType_h8g), "ninja_portal_url", serializers.serialize$2$specifiedType(object.ninjaPortalUrl, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.notifications; if (value != null) { result.push("notifications"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_mZn)); } value = object.company; if (value != null) { result.push("company"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_a9P)); } value = object.user; if (value != null) { result.push("user"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_oyU)); } value = object.token; if (value != null) { result.push("token"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_Azp)); } value = object.account; if (value != null) { result.push("account"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_wg3)); } value = object.settings; if (value != null) { result.push("settings"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_Ymm)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, key, value, t7, t8, _s5_ = "other", result = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserSettingsEntity, t2 = type$.legacy_AccountEntity, t3 = type$.legacy_TokenEntity, t4 = type$.legacy_UserEntity, t5 = type$.legacy_CompanyEntity, t6 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "is_admin": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isAdmin = t7; break; case "is_owner": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._isOwner = t7; break; case "permissions_updated_at": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._permissionsUpdatedAt = t7; break; case "permissions": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._permissions = t7; break; case "notifications": t7 = result.get$_company_model$_$this(); t8 = t7._notifications; if (t8 == null) { t8 = new A.MapBuilder(null, $, null, t6); t8.replace$1(0, B.Map_empty0); t7._notifications = t8; t7 = t8; } else t7 = t8; t7.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mZn)); break; case "company": t7 = result.get$_company_model$_$this(); t8 = t7._company_model$_company; if (t8 == null) { t8 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t8); t7._company_model$_company = t8; t7 = t8; } else t7 = t8; t8 = t5._as(serializers.deserialize$2$specifiedType(value, B.FullType_a9P)); if (t8 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t7._company_model$_$v = t8; break; case "user": t7 = result.get$_company_model$_$this(); t8 = t7._company_model$_user; if (t8 == null) { t8 = new A.UserEntityBuilder(); t8.get$_user_model$_$this()._isTwoFactorEnabled = false; t8.get$_user_model$_$this()._hasPassword = false; t8.get$_user_model$_$this()._password = ""; t8.get$_user_model$_$this()._lastEmailAddress = ""; t8.get$_user_model$_$this()._oauthUserToken = ""; t7._company_model$_user = t8; t7 = t8; } else t7 = t8; t8 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_oyU)); if (t8 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t7._user_model$_$v = t8; break; case "token": t7 = result.get$_company_model$_$this(); t8 = t7._token; t7 = t8 == null ? t7._token = new A.TokenEntityBuilder() : t8; t8 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_Azp)); if (t8 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t7._token_model$_$v = t8; break; case "account": t7 = result.get$_company_model$_$this(); t8 = t7._account; if (t8 == null) { t8 = new A.AccountEntityBuilder(); A.AccountEntity__initializeBuilder(t8); t7._account = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_wg3)); if (t8 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t7._account_model$_$v = t8; break; case "settings": t7 = result.get$_company_model$_$this(); t8 = t7._company_model$_settings; if (t8 == null) { t8 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t8); t7._company_model$_settings = t8; t7 = t8; } else t7 = t8; t8 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Ymm)); if (t8 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t7._company_model$_$v = t8; break; case "ninja_portal_url": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._ninjaPortalUrl = t7; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_m3m; }, get$wireName() { return "UserCompanyEntity"; } }; A._$UserSettingsEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["table_columns", serializers.serialize$2$specifiedType(object.tableColumns, B.FullType_mZn), "report_settings", serializers.serialize$2$specifiedType(object.reportSettings, B.FullType_Nhy), "number_years_active", serializers.serialize$2$specifiedType(object.numberYearsActive, B.FullType_kjq), "include_deleted_clients", serializers.serialize$2$specifiedType(object.includeDeletedClients, B.FullType_MtR)], type$.JSArray_legacy_Object), value = object.accentColor; if (value != null) { result.push("accent_color"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, key, value, t3, t4, _null = null, result = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_ReportSettingsEntity, t2 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "accent_color": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._accentColor = t3; break; case "table_columns": t3 = result.get$_company_model$_$this(); t4 = t3._tableColumns; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t2); t4.replace$1(0, B.Map_empty0); t3._tableColumns = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mZn)); break; case "report_settings": t3 = result.get$_company_model$_$this(); t4 = t3._reportSettings; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t1); t4.replace$1(0, B.Map_empty0); t3._reportSettings = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_Nhy)); break; case "number_years_active": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._numberYearsActive = t3; break; case "include_deleted_clients": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._includeDeletedClients = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_XBZ; }, get$wireName() { return "UserSettingsEntity"; } }; A._$ReportSettingsEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["sort_column", serializers.serialize$2$specifiedType(object.sortColumn, B.FullType_h8g), "sort_ascending", serializers.serialize$2$specifiedType(object.sortAscending, B.FullType_MtR), "sort_totals_index", serializers.serialize$2$specifiedType(object.sortTotalsIndex, B.FullType_kjq), "sort_totals_ascending", serializers.serialize$2$specifiedType(object.sortTotalsAscending, B.FullType_MtR), "columns", serializers.serialize$2$specifiedType(object.columns, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new A.ReportSettingsEntityBuilder(); A.ReportSettingsEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "sort_column": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_model$_$this()._sortColumn = t4; break; case "sort_ascending": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._company_model$_sortAscending = t4; break; case "sort_totals_index": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_model$_$this()._sortTotalsIndex = t4; break; case "sort_totals_ascending": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_model$_$this()._sortTotalsAscending = t4; break; case "columns": t4 = result.get$_company_model$_$this(); t5 = t4._columns; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._columns = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_QLF0; }, get$wireName() { return "ReportSettingsEntity"; } }; A._$CompanyItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_a9P)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CompanyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t3); t3._company_model$_$v = t2; result._company_model$_data = t3; result._company_model$_$v = null; } t2 = result._company_model$_data; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); result._company_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_a9P)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_1ru; }, get$wireName() { return "CompanyItemResponse"; } }; A._$RegistrationFieldEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["key", serializers.serialize$2$specifiedType(object.key, B.FullType_h8g), "required", serializers.serialize$2$specifiedType(object.required, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.RegistrationFieldEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._company_model$_$v; if ($$v != null) { result._company_model$_key = $$v.key; result._required = $$v.required; result._company_model$_$v = null; } result._company_model$_key = t1; break; case "required": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); $$v = result._company_model$_$v; if ($$v != null) { result._company_model$_key = $$v.key; result._required = $$v.required; result._company_model$_$v = null; } result._required = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_awF; }, get$wireName() { return "RegistrationFieldEntity"; } }; A._$CompanyEntity.prototype = { rebuild$1(updates) { var t1 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.CompanyEntity && _this.enableCustomSurchargeTaxes1 === other.enableCustomSurchargeTaxes1 && _this.enableCustomSurchargeTaxes2 === other.enableCustomSurchargeTaxes2 && _this.enableCustomSurchargeTaxes3 === other.enableCustomSurchargeTaxes3 && _this.enableCustomSurchargeTaxes4 === other.enableCustomSurchargeTaxes4 && _this.sizeId === other.sizeId && _this.industryId === other.industryId && _this.subdomain === other.subdomain && _this.portalMode === other.portalMode && _this.portalDomain === other.portalDomain && _this.updateProducts === other.updateProducts && _this.convertProductExchangeRate === other.convertProductExchangeRate && _this.convertRateToClient === other.convertRateToClient && _this.fillProducts === other.fillProducts && _this.enableProductCost === other.enableProductCost && _this.enableProductQuantity === other.enableProductQuantity && _this.enableProductDiscount === other.enableProductDiscount && _this.defaultTaskIsDateBased === other.defaultTaskIsDateBased && _this.defaultQuantity === other.defaultQuantity && _this.showProductDetails === other.showProductDetails && _this.clientCanRegister === other.clientCanRegister && _this.isLarge === other.isLarge && _this.isDisabled === other.isDisabled && _this.enableShopApi === other.enableShopApi && _this.companyKey === other.companyKey && _this.firstDayOfWeek === other.firstDayOfWeek && _this.firstMonthOfYear === other.firstMonthOfYear && _this.numberOfInvoiceTaxRates === other.numberOfInvoiceTaxRates && _this.numberOfItemTaxRates === other.numberOfItemTaxRates && _this.expenseInclusiveTaxes === other.expenseInclusiveTaxes && _this.sessionTimeout === other.sessionTimeout && _this.passwordTimeout === other.passwordTimeout && _this.oauthPasswordRequired === other.oauthPasswordRequired && _this.markdownEnabled === other.markdownEnabled && _this.markdownEmailEnabled === other.markdownEmailEnabled && _this.useCommaAsDecimalPlace === other.useCommaAsDecimalPlace && _this.reportIncludeDrafts === other.reportIncludeDrafts && _this.useQuoteTermsOnConversion === other.useQuoteTermsOnConversion && _this.enableApplyingPayments === other.enableApplyingPayments && _this.trackInventory === other.trackInventory && _this.stockNotificationThreshold === other.stockNotificationThreshold && _this.stockNotification === other.stockNotification && J.$eq$(_this.groups, other.groups) && J.$eq$(_this.activities, other.activities) && J.$eq$(_this.taxRates, other.taxRates) && J.$eq$(_this.taskStatuses, other.taskStatuses) && J.$eq$(_this.taskStatusMap, other.taskStatusMap) && J.$eq$(_this.companyGateways, other.companyGateways) && J.$eq$(_this.expenseCategories, other.expenseCategories) && J.$eq$(_this.users, other.users) && J.$eq$(_this.clients, other.clients) && J.$eq$(_this.products, other.products) && J.$eq$(_this.invoices, other.invoices) && J.$eq$(_this.recurringInvoices, other.recurringInvoices) && J.$eq$(_this.recurringExpenses, other.recurringExpenses) && J.$eq$(_this.payments, other.payments) && J.$eq$(_this.quotes, other.quotes) && J.$eq$(_this.credits, other.credits) && J.$eq$(_this.purchaseOrders, other.purchaseOrders) && J.$eq$(_this.tasks, other.tasks) && J.$eq$(_this.projects, other.projects) && J.$eq$(_this.expenses, other.expenses) && J.$eq$(_this.vendors, other.vendors) && J.$eq$(_this.designs, other.designs) && J.$eq$(_this.documents, other.documents) && J.$eq$(_this.tokens, other.tokens) && J.$eq$(_this.webhooks, other.webhooks) && J.$eq$(_this.subscriptions, other.subscriptions) && J.$eq$(_this.paymentTerms, other.paymentTerms) && J.$eq$(_this.systemLogs, other.systemLogs) && J.$eq$(_this.clientRegistrationFields, other.clientRegistrationFields) && J.$eq$(_this.customFields, other.customFields) && _this.slackWebhookUrl === other.slackWebhookUrl && _this.googleAnalyticsKey === other.googleAnalyticsKey && _this.markExpensesInvoiceable === other.markExpensesInvoiceable && _this.markExpensesPaid === other.markExpensesPaid && _this.invoiceExpenseDocuments === other.invoiceExpenseDocuments && _this.invoiceTaskDocuments === other.invoiceTaskDocuments && _this.invoiceTaskTimelog === other.invoiceTaskTimelog && _this.invoiceTaskDatelog === other.invoiceTaskDatelog && _this.autoStartTasks === other.autoStartTasks && _this.showTasksTable === other.showTasksTable && _this.showTaskEndDate === other.showTaskEndDate && J.$eq$(_this.settings, other.settings) && _this.enabledModules === other.enabledModules && _this.calculateExpenseTaxByAmount === other.calculateExpenseTaxByAmount && _this.stopOnUnpaidRecurring === other.stopOnUnpaidRecurring && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes1)), B.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes2)), B.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes3)), B.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes4)), B.JSString_methods.get$hashCode(_this.sizeId)), B.JSString_methods.get$hashCode(_this.industryId)), B.JSString_methods.get$hashCode(_this.subdomain)), B.JSString_methods.get$hashCode(_this.portalMode)), B.JSString_methods.get$hashCode(_this.portalDomain)), B.JSBool_methods.get$hashCode(_this.updateProducts)), B.JSBool_methods.get$hashCode(_this.convertProductExchangeRate)), B.JSBool_methods.get$hashCode(_this.convertRateToClient)), B.JSBool_methods.get$hashCode(_this.fillProducts)), B.JSBool_methods.get$hashCode(_this.enableProductCost)), B.JSBool_methods.get$hashCode(_this.enableProductQuantity)), B.JSBool_methods.get$hashCode(_this.enableProductDiscount)), B.JSBool_methods.get$hashCode(_this.defaultTaskIsDateBased)), B.JSBool_methods.get$hashCode(_this.defaultQuantity)), B.JSBool_methods.get$hashCode(_this.showProductDetails)), B.JSBool_methods.get$hashCode(_this.clientCanRegister)), B.JSBool_methods.get$hashCode(_this.isLarge)), B.JSBool_methods.get$hashCode(_this.isDisabled)), B.JSBool_methods.get$hashCode(_this.enableShopApi)), B.JSString_methods.get$hashCode(_this.companyKey)), B.JSString_methods.get$hashCode(_this.firstDayOfWeek)), B.JSString_methods.get$hashCode(_this.firstMonthOfYear)), B.JSInt_methods.get$hashCode(_this.numberOfInvoiceTaxRates)), B.JSInt_methods.get$hashCode(_this.numberOfItemTaxRates)), B.JSBool_methods.get$hashCode(_this.expenseInclusiveTaxes)), B.JSInt_methods.get$hashCode(_this.sessionTimeout)), B.JSInt_methods.get$hashCode(_this.passwordTimeout)), B.JSBool_methods.get$hashCode(_this.oauthPasswordRequired)), B.JSBool_methods.get$hashCode(_this.markdownEnabled)), B.JSBool_methods.get$hashCode(_this.markdownEmailEnabled)), B.JSBool_methods.get$hashCode(_this.useCommaAsDecimalPlace)), B.JSBool_methods.get$hashCode(_this.reportIncludeDrafts)), B.JSBool_methods.get$hashCode(_this.useQuoteTermsOnConversion)), B.JSBool_methods.get$hashCode(_this.enableApplyingPayments)), B.JSBool_methods.get$hashCode(_this.trackInventory)), B.JSInt_methods.get$hashCode(_this.stockNotificationThreshold)), B.JSBool_methods.get$hashCode(_this.stockNotification)), J.get$hashCode$(_this.groups)), J.get$hashCode$(_this.activities)), J.get$hashCode$(_this.taxRates)), J.get$hashCode$(_this.taskStatuses)), J.get$hashCode$(_this.taskStatusMap)), J.get$hashCode$(_this.companyGateways)), J.get$hashCode$(_this.expenseCategories)), J.get$hashCode$(_this.users)), J.get$hashCode$(_this.clients)), J.get$hashCode$(_this.products)), J.get$hashCode$(_this.invoices)), J.get$hashCode$(_this.recurringInvoices)), J.get$hashCode$(_this.recurringExpenses)), J.get$hashCode$(_this.payments)), J.get$hashCode$(_this.quotes)), J.get$hashCode$(_this.credits)), J.get$hashCode$(_this.purchaseOrders)), J.get$hashCode$(_this.tasks)), J.get$hashCode$(_this.projects)), J.get$hashCode$(_this.expenses)), J.get$hashCode$(_this.vendors)), J.get$hashCode$(_this.designs)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.tokens)), J.get$hashCode$(_this.webhooks)), J.get$hashCode$(_this.subscriptions)), J.get$hashCode$(_this.paymentTerms)), J.get$hashCode$(_this.systemLogs)), J.get$hashCode$(_this.clientRegistrationFields)), J.get$hashCode$(_this.customFields)), B.JSString_methods.get$hashCode(_this.slackWebhookUrl)), B.JSString_methods.get$hashCode(_this.googleAnalyticsKey)), B.JSBool_methods.get$hashCode(_this.markExpensesInvoiceable)), B.JSBool_methods.get$hashCode(_this.markExpensesPaid)), B.JSBool_methods.get$hashCode(_this.invoiceExpenseDocuments)), B.JSBool_methods.get$hashCode(_this.invoiceTaskDocuments)), B.JSBool_methods.get$hashCode(_this.invoiceTaskTimelog)), B.JSBool_methods.get$hashCode(_this.invoiceTaskDatelog)), B.JSBool_methods.get$hashCode(_this.autoStartTasks)), B.JSBool_methods.get$hashCode(_this.showTasksTable)), B.JSBool_methods.get$hashCode(_this.showTaskEndDate)), J.get$hashCode$(_this.settings)), B.JSInt_methods.get$hashCode(_this.enabledModules)), B.JSBool_methods.get$hashCode(_this.calculateExpenseTaxByAmount)), B.JSBool_methods.get$hashCode(_this.stopOnUnpaidRecurring)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "enableCustomSurchargeTaxes1", _this.enableCustomSurchargeTaxes1); t2.add$2(t1, "enableCustomSurchargeTaxes2", _this.enableCustomSurchargeTaxes2); t2.add$2(t1, "enableCustomSurchargeTaxes3", _this.enableCustomSurchargeTaxes3); t2.add$2(t1, "enableCustomSurchargeTaxes4", _this.enableCustomSurchargeTaxes4); t2.add$2(t1, "sizeId", _this.sizeId); t2.add$2(t1, "industryId", _this.industryId); t2.add$2(t1, "subdomain", _this.subdomain); t2.add$2(t1, "portalMode", _this.portalMode); t2.add$2(t1, "portalDomain", _this.portalDomain); t2.add$2(t1, "updateProducts", _this.updateProducts); t2.add$2(t1, "convertProductExchangeRate", _this.convertProductExchangeRate); t2.add$2(t1, "convertRateToClient", _this.convertRateToClient); t2.add$2(t1, "fillProducts", _this.fillProducts); t2.add$2(t1, "enableProductCost", _this.enableProductCost); t2.add$2(t1, "enableProductQuantity", _this.enableProductQuantity); t2.add$2(t1, "enableProductDiscount", _this.enableProductDiscount); t2.add$2(t1, "defaultTaskIsDateBased", _this.defaultTaskIsDateBased); t2.add$2(t1, "defaultQuantity", _this.defaultQuantity); t2.add$2(t1, "showProductDetails", _this.showProductDetails); t2.add$2(t1, "clientCanRegister", _this.clientCanRegister); t2.add$2(t1, "isLarge", _this.isLarge); t2.add$2(t1, "isDisabled", _this.isDisabled); t2.add$2(t1, "enableShopApi", _this.enableShopApi); t2.add$2(t1, "companyKey", _this.companyKey); t2.add$2(t1, "firstDayOfWeek", _this.firstDayOfWeek); t2.add$2(t1, "firstMonthOfYear", _this.firstMonthOfYear); t2.add$2(t1, "numberOfInvoiceTaxRates", _this.numberOfInvoiceTaxRates); t2.add$2(t1, "numberOfItemTaxRates", _this.numberOfItemTaxRates); t2.add$2(t1, "expenseInclusiveTaxes", _this.expenseInclusiveTaxes); t2.add$2(t1, "sessionTimeout", _this.sessionTimeout); t2.add$2(t1, "passwordTimeout", _this.passwordTimeout); t2.add$2(t1, "oauthPasswordRequired", _this.oauthPasswordRequired); t2.add$2(t1, "markdownEnabled", _this.markdownEnabled); t2.add$2(t1, "markdownEmailEnabled", _this.markdownEmailEnabled); t2.add$2(t1, "useCommaAsDecimalPlace", _this.useCommaAsDecimalPlace); t2.add$2(t1, "reportIncludeDrafts", _this.reportIncludeDrafts); t2.add$2(t1, "useQuoteTermsOnConversion", _this.useQuoteTermsOnConversion); t2.add$2(t1, "enableApplyingPayments", _this.enableApplyingPayments); t2.add$2(t1, "trackInventory", _this.trackInventory); t2.add$2(t1, "stockNotificationThreshold", _this.stockNotificationThreshold); t2.add$2(t1, "stockNotification", _this.stockNotification); t2.add$2(t1, "groups", _this.groups); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "taxRates", _this.taxRates); t2.add$2(t1, "taskStatuses", _this.taskStatuses); t2.add$2(t1, "taskStatusMap", _this.taskStatusMap); t2.add$2(t1, "companyGateways", _this.companyGateways); t2.add$2(t1, "expenseCategories", _this.expenseCategories); t2.add$2(t1, "users", _this.users); t2.add$2(t1, "clients", _this.clients); t2.add$2(t1, "products", _this.products); t2.add$2(t1, "invoices", _this.invoices); t2.add$2(t1, "recurringInvoices", _this.recurringInvoices); t2.add$2(t1, "recurringExpenses", _this.recurringExpenses); t2.add$2(t1, "payments", _this.payments); t2.add$2(t1, "quotes", _this.quotes); t2.add$2(t1, "credits", _this.credits); t2.add$2(t1, "purchaseOrders", _this.purchaseOrders); t2.add$2(t1, "tasks", _this.tasks); t2.add$2(t1, "projects", _this.projects); t2.add$2(t1, "expenses", _this.expenses); t2.add$2(t1, "vendors", _this.vendors); t2.add$2(t1, "designs", _this.designs); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "tokens", _this.tokens); t2.add$2(t1, "webhooks", _this.webhooks); t2.add$2(t1, "subscriptions", _this.subscriptions); t2.add$2(t1, "paymentTerms", _this.paymentTerms); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "clientRegistrationFields", _this.clientRegistrationFields); t2.add$2(t1, "customFields", _this.customFields); t2.add$2(t1, "slackWebhookUrl", _this.slackWebhookUrl); t2.add$2(t1, "googleAnalyticsKey", _this.googleAnalyticsKey); t2.add$2(t1, "markExpensesInvoiceable", _this.markExpensesInvoiceable); t2.add$2(t1, "markExpensesPaid", _this.markExpensesPaid); t2.add$2(t1, "invoiceExpenseDocuments", _this.invoiceExpenseDocuments); t2.add$2(t1, "invoiceTaskDocuments", _this.invoiceTaskDocuments); t2.add$2(t1, "invoiceTaskTimelog", _this.invoiceTaskTimelog); t2.add$2(t1, "invoiceTaskDatelog", _this.invoiceTaskDatelog); t2.add$2(t1, "autoStartTasks", _this.autoStartTasks); t2.add$2(t1, "showTasksTable", _this.showTasksTable); t2.add$2(t1, "showTaskEndDate", _this.showTaskEndDate); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "enabledModules", _this.enabledModules); t2.add$2(t1, "calculateExpenseTaxByAmount", _this.calculateExpenseTaxByAmount); t2.add$2(t1, "stopOnUnpaidRecurring", _this.stopOnUnpaidRecurring); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$entityType() { return this.entityType; }, get$id(receiver) { return this.id; } }; A.CompanyEntityBuilder.prototype = { get$groups() { var t1 = this.get$_company_model$_$this(), t2 = t1._groups; return t2 == null ? t1._groups = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GroupEntity) : t2; }, get$activities() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_activities; return t2 == null ? t1._company_model$_activities = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity) : t2; }, get$taxRates() { var t1 = this.get$_company_model$_$this(), t2 = t1._taxRates; return t2 == null ? t1._taxRates = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaxRateEntity) : t2; }, get$taskStatuses() { var t1 = this.get$_company_model$_$this(), t2 = t1._taskStatuses; return t2 == null ? t1._taskStatuses = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskStatusEntity) : t2; }, get$taskStatusMap() { var t1 = this.get$_company_model$_$this(), t2 = t1._taskStatusMap; return t2 == null ? t1._taskStatusMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity) : t2; }, get$companyGateways() { var t1 = this.get$_company_model$_$this(), t2 = t1._companyGateways; return t2 == null ? t1._companyGateways = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CompanyGatewayEntity) : t2; }, get$expenseCategories() { var t1 = this.get$_company_model$_$this(), t2 = t1._expenseCategories; return t2 == null ? t1._expenseCategories = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseCategoryEntity) : t2; }, get$users() { var t1 = this.get$_company_model$_$this(), t2 = t1._users; return t2 == null ? t1._users = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserEntity) : t2; }, get$clients(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._clients; return t2 == null ? t1._clients = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientEntity) : t2; }, get$products() { var t1 = this.get$_company_model$_$this(), t2 = t1._products; return t2 == null ? t1._products = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProductEntity) : t2; }, get$invoices() { var t1 = this.get$_company_model$_$this(), t2 = t1._invoices; return t2 == null ? t1._invoices = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$recurringInvoices() { var t1 = this.get$_company_model$_$this(), t2 = t1._recurringInvoices; return t2 == null ? t1._recurringInvoices = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$recurringExpenses() { var t1 = this.get$_company_model$_$this(), t2 = t1._recurringExpenses; return t2 == null ? t1._recurringExpenses = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity) : t2; }, get$payments() { var t1 = this.get$_company_model$_$this(), t2 = t1._payments; return t2 == null ? t1._payments = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentEntity) : t2; }, get$quotes(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._quotes; return t2 == null ? t1._quotes = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$credits() { var t1 = this.get$_company_model$_$this(), t2 = t1._credits; return t2 == null ? t1._credits = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$purchaseOrders() { var t1 = this.get$_company_model$_$this(), t2 = t1._purchaseOrders; return t2 == null ? t1._purchaseOrders = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$tasks() { var t1 = this.get$_company_model$_$this(), t2 = t1._tasks; return t2 == null ? t1._tasks = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskEntity) : t2; }, get$projects() { var t1 = this.get$_company_model$_$this(), t2 = t1._projects; return t2 == null ? t1._projects = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProjectEntity) : t2; }, get$expenses() { var t1 = this.get$_company_model$_$this(), t2 = t1._expenses; return t2 == null ? t1._expenses = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity) : t2; }, get$vendors() { var t1 = this.get$_company_model$_$this(), t2 = t1._vendors; return t2 == null ? t1._vendors = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorEntity) : t2; }, get$designs() { var t1 = this.get$_company_model$_$this(), t2 = t1._designs; return t2 == null ? t1._designs = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DesignEntity) : t2; }, get$documents() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_documents; return t2 == null ? t1._company_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$tokens() { var t1 = this.get$_company_model$_$this(), t2 = t1._tokens; return t2 == null ? t1._tokens = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TokenEntity) : t2; }, get$webhooks() { var t1 = this.get$_company_model$_$this(), t2 = t1._webhooks; return t2 == null ? t1._webhooks = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_WebhookEntity) : t2; }, get$subscriptions() { var t1 = this.get$_company_model$_$this(), t2 = t1._subscriptions; return t2 == null ? t1._subscriptions = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SubscriptionEntity) : t2; }, get$paymentTerms() { var t1 = this.get$_company_model$_$this(), t2 = t1._paymentTerms; return t2 == null ? t1._paymentTerms = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTermEntity) : t2; }, get$systemLogs() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_systemLogs; return t2 == null ? t1._company_model$_systemLogs = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$clientRegistrationFields() { var t1 = this.get$_company_model$_$this(), t2 = t1._clientRegistrationFields; return t2 == null ? t1._clientRegistrationFields = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_RegistrationFieldEntity) : t2; }, get$customFields() { var t1 = this.get$_company_model$_$this(), t2 = t1._customFields; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._customFields = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$settings() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_settings; return t2 == null ? t1._company_model$_settings = new A.SettingsEntityBuilder() : t2; }, get$id(_) { return this.get$_company_model$_$this()._company_model$_id; }, get$_company_model$_$this() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._enableCustomSurchargeTaxes1 = $$v.enableCustomSurchargeTaxes1; _this._enableCustomSurchargeTaxes2 = $$v.enableCustomSurchargeTaxes2; _this._enableCustomSurchargeTaxes3 = $$v.enableCustomSurchargeTaxes3; _this._enableCustomSurchargeTaxes4 = $$v.enableCustomSurchargeTaxes4; _this._company_model$_sizeId = $$v.sizeId; _this._company_model$_industryId = $$v.industryId; _this._subdomain = $$v.subdomain; _this._portalMode = $$v.portalMode; _this._portalDomain = $$v.portalDomain; _this._updateProducts = $$v.updateProducts; _this._convertProductExchangeRate = $$v.convertProductExchangeRate; _this._convertRateToClient = $$v.convertRateToClient; _this._fillProducts = $$v.fillProducts; _this._enableProductCost = $$v.enableProductCost; _this._enableProductQuantity = $$v.enableProductQuantity; _this._enableProductDiscount = $$v.enableProductDiscount; _this._defaultTaskIsDateBased = $$v.defaultTaskIsDateBased; _this._defaultQuantity = $$v.defaultQuantity; _this._showProductDetails = $$v.showProductDetails; _this._clientCanRegister = $$v.clientCanRegister; _this._isLarge = $$v.isLarge; _this._isDisabled = $$v.isDisabled; _this._enableShopApi = $$v.enableShopApi; _this._companyKey = $$v.companyKey; _this._firstDayOfWeek = $$v.firstDayOfWeek; _this._firstMonthOfYear = $$v.firstMonthOfYear; _this._numberOfInvoiceTaxRates = $$v.numberOfInvoiceTaxRates; _this._numberOfItemTaxRates = $$v.numberOfItemTaxRates; _this._expenseInclusiveTaxes = $$v.expenseInclusiveTaxes; _this._sessionTimeout = $$v.sessionTimeout; _this._passwordTimeout = $$v.passwordTimeout; _this._oauthPasswordRequired = $$v.oauthPasswordRequired; _this._markdownEnabled = $$v.markdownEnabled; _this._markdownEmailEnabled = $$v.markdownEmailEnabled; _this._useCommaAsDecimalPlace = $$v.useCommaAsDecimalPlace; _this._reportIncludeDrafts = $$v.reportIncludeDrafts; _this._useQuoteTermsOnConversion = $$v.useQuoteTermsOnConversion; _this._enableApplyingPayments = $$v.enableApplyingPayments; _this._trackInventory = $$v.trackInventory; _this._stockNotificationThreshold = $$v.stockNotificationThreshold; _this._stockNotification = $$v.stockNotification; t1 = $$v.groups; t1.toString; _this._groups = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._company_model$_activities = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taxRates; t1.toString; _this._taxRates = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taskStatuses; t1.toString; _this._taskStatuses = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taskStatusMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._taskStatusMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.companyGateways; t2.toString; _this._companyGateways = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.expenseCategories; t2.toString; _this._expenseCategories = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.users; t2.toString; _this._users = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.clients; t2.toString; _this._clients = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.products; t2.toString; _this._products = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.invoices; t2.toString; _this._invoices = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.recurringInvoices; t2.toString; _this._recurringInvoices = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.recurringExpenses; t2.toString; _this._recurringExpenses = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.payments; t2.toString; _this._payments = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.quotes; t2.toString; _this._quotes = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.credits; t2.toString; _this._credits = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.purchaseOrders; t2.toString; _this._purchaseOrders = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.tasks; t2.toString; _this._tasks = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.projects; t2.toString; _this._projects = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.expenses; t2.toString; _this._expenses = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.vendors; t2.toString; _this._vendors = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.designs; t2.toString; _this._designs = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.documents; t2.toString; _this._company_model$_documents = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.tokens; t2.toString; _this._tokens = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.webhooks; t2.toString; _this._webhooks = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.subscriptions; t2.toString; _this._subscriptions = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.paymentTerms; t2.toString; _this._paymentTerms = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.systemLogs; t2.toString; _this._company_model$_systemLogs = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.clientRegistrationFields; t2.toString; _this._clientRegistrationFields = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.customFields; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._customFields = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._slackWebhookUrl = $$v.slackWebhookUrl; _this._googleAnalyticsKey = $$v.googleAnalyticsKey; _this._markExpensesInvoiceable = $$v.markExpensesInvoiceable; _this._markExpensesPaid = $$v.markExpensesPaid; _this._invoiceExpenseDocuments = $$v.invoiceExpenseDocuments; _this._invoiceTaskDocuments = $$v.invoiceTaskDocuments; _this._invoiceTaskTimelog = $$v.invoiceTaskTimelog; _this._invoiceTaskDatelog = $$v.invoiceTaskDatelog; _this._autoStartTasks = $$v.autoStartTasks; _this._showTasksTable = $$v.showTasksTable; _this._showTaskEndDate = $$v.showTaskEndDate; t1 = $$v.settings; t1.toString; t2 = new A.SettingsEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._settings_model$_$v = t1; _this._company_model$_settings = t2; _this._enabledModules = $$v.enabledModules; _this._calculateExpenseTaxByAmount = $$v.calculateExpenseTaxByAmount; _this._stopOnUnpaidRecurring = $$v.stopOnUnpaidRecurring; _this._company_model$_isChanged = $$v.isChanged; _this._company_model$_createdAt = $$v.createdAt; _this._company_model$_updatedAt = $$v.updatedAt; _this._company_model$_archivedAt = $$v.archivedAt; _this._company_model$_isDeleted = $$v.isDeleted; _this._company_model$_createdUserId = $$v.createdUserId; _this._company_model$_assignedUserId = $$v.assignedUserId; _this._company_model$_entityType = $$v.entityType; _this._company_model$_id = $$v.id; _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, exception, _this = this, _s13_ = "CompanyEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes1; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes1")); t2 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes2; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes2")); t3 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes3; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes3")); t4 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes4; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes4")); t5 = _this.get$_company_model$_$this()._company_model$_sizeId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "sizeId")); t6 = _this.get$_company_model$_$this()._company_model$_industryId; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "industryId")); t7 = _this.get$_company_model$_$this()._subdomain; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "subdomain")); t8 = _this.get$_company_model$_$this()._portalMode; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "portalMode")); t9 = _this.get$_company_model$_$this()._portalDomain; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "portalDomain")); t10 = _this.get$_company_model$_$this()._updateProducts; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updateProducts")); t11 = _this.get$_company_model$_$this()._convertProductExchangeRate; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "convertProductExchangeRate")); t12 = _this.get$_company_model$_$this()._convertRateToClient; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "convertRateToClient")); t13 = _this.get$_company_model$_$this()._fillProducts; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "fillProducts")); t14 = _this.get$_company_model$_$this()._enableProductCost; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableProductCost")); t15 = _this.get$_company_model$_$this()._enableProductQuantity; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableProductQuantity")); t16 = _this.get$_company_model$_$this()._enableProductDiscount; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableProductDiscount")); t17 = _this.get$_company_model$_$this()._defaultTaskIsDateBased; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "defaultTaskIsDateBased")); t18 = _this.get$_company_model$_$this()._defaultQuantity; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "defaultQuantity")); t19 = _this.get$_company_model$_$this()._showProductDetails; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "showProductDetails")); t20 = _this.get$_company_model$_$this()._clientCanRegister; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientCanRegister")); t21 = _this.get$_company_model$_$this()._isLarge; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isLarge")); t22 = _this.get$_company_model$_$this()._isDisabled; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isDisabled")); t23 = _this.get$_company_model$_$this()._enableShopApi; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableShopApi")); t24 = _this.get$_company_model$_$this()._companyKey; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "companyKey")); t25 = _this.get$_company_model$_$this()._firstDayOfWeek; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "firstDayOfWeek")); t26 = _this.get$_company_model$_$this()._firstMonthOfYear; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "firstMonthOfYear")); t27 = _this.get$_company_model$_$this()._numberOfInvoiceTaxRates; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "numberOfInvoiceTaxRates")); t28 = _this.get$_company_model$_$this()._numberOfItemTaxRates; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "numberOfItemTaxRates")); t29 = _this.get$_company_model$_$this()._expenseInclusiveTaxes; if (t29 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "expenseInclusiveTaxes")); t30 = _this.get$_company_model$_$this()._sessionTimeout; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "sessionTimeout")); t31 = _this.get$_company_model$_$this()._passwordTimeout; if (t31 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "passwordTimeout")); t32 = _this.get$_company_model$_$this()._oauthPasswordRequired; if (t32 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "oauthPasswordRequired")); t33 = _this.get$_company_model$_$this()._markdownEnabled; if (t33 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "markdownEnabled")); t34 = _this.get$_company_model$_$this()._markdownEmailEnabled; if (t34 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "markdownEmailEnabled")); t35 = _this.get$_company_model$_$this()._useCommaAsDecimalPlace; if (t35 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "useCommaAsDecimalPlace")); t36 = _this.get$_company_model$_$this()._reportIncludeDrafts; if (t36 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "reportIncludeDrafts")); t37 = _this.get$_company_model$_$this()._useQuoteTermsOnConversion; if (t37 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "useQuoteTermsOnConversion")); t38 = _this.get$_company_model$_$this()._enableApplyingPayments; if (t38 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enableApplyingPayments")); t39 = _this.get$_company_model$_$this()._trackInventory; if (t39 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "trackInventory")); t40 = _this.get$_company_model$_$this()._stockNotificationThreshold; if (t40 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stockNotificationThreshold")); t41 = _this.get$_company_model$_$this()._stockNotification; if (t41 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stockNotification")); t42 = _this.get$groups().build$0(0); t43 = _this.get$activities().build$0(0); t44 = _this.get$taxRates().build$0(0); t45 = _this.get$taskStatuses().build$0(0); t46 = _this.get$taskStatusMap().build$0(0); t47 = _this.get$companyGateways().build$0(0); t48 = _this.get$expenseCategories().build$0(0); t49 = _this.get$users().build$0(0); t50 = _this.get$clients(_this).build$0(0); t51 = _this.get$products().build$0(0); t52 = _this.get$invoices().build$0(0); t53 = _this.get$recurringInvoices().build$0(0); t54 = _this.get$recurringExpenses().build$0(0); t55 = _this.get$payments().build$0(0); t56 = _this.get$quotes(_this).build$0(0); t57 = _this.get$credits().build$0(0); t58 = _this.get$purchaseOrders().build$0(0); t59 = _this.get$tasks().build$0(0); t60 = _this.get$projects().build$0(0); t61 = _this.get$expenses().build$0(0); t62 = _this.get$vendors().build$0(0); t63 = _this.get$designs().build$0(0); t64 = _this.get$documents().build$0(0); t65 = _this.get$tokens().build$0(0); t66 = _this.get$webhooks().build$0(0); t67 = _this.get$subscriptions().build$0(0); t68 = _this.get$paymentTerms().build$0(0); t69 = _this.get$systemLogs().build$0(0); t70 = _this.get$clientRegistrationFields().build$0(0); t71 = _this.get$customFields().build$0(0); t72 = _this.get$_company_model$_$this()._slackWebhookUrl; if (t72 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "slackWebhookUrl")); t73 = _this.get$_company_model$_$this()._googleAnalyticsKey; if (t73 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "googleAnalyticsKey")); t74 = _this.get$_company_model$_$this()._markExpensesInvoiceable; if (t74 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "markExpensesInvoiceable")); t75 = _this.get$_company_model$_$this()._markExpensesPaid; if (t75 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "markExpensesPaid")); t76 = _this.get$_company_model$_$this()._invoiceExpenseDocuments; if (t76 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceExpenseDocuments")); t77 = _this.get$_company_model$_$this()._invoiceTaskDocuments; if (t77 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceTaskDocuments")); t78 = _this.get$_company_model$_$this()._invoiceTaskTimelog; if (t78 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceTaskTimelog")); t79 = _this.get$_company_model$_$this()._invoiceTaskDatelog; if (t79 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceTaskDatelog")); t80 = _this.get$_company_model$_$this()._autoStartTasks; if (t80 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "autoStartTasks")); t81 = _this.get$_company_model$_$this()._showTasksTable; if (t81 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "showTasksTable")); t82 = _this.get$_company_model$_$this()._showTaskEndDate; if (t82 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "showTaskEndDate")); t83 = _this.get$settings().build$0(0); t84 = _this.get$_company_model$_$this()._enabledModules; if (t84 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "enabledModules")); t85 = _this.get$_company_model$_$this()._calculateExpenseTaxByAmount; if (t85 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "calculateExpenseTaxByAmount")); t86 = _this.get$_company_model$_$this()._stopOnUnpaidRecurring; if (t86 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stopOnUnpaidRecurring")); t87 = _this.get$_company_model$_$this()._company_model$_isChanged; t88 = _this.get$_company_model$_$this()._company_model$_createdAt; if (t88 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t89 = _this.get$_company_model$_$this()._company_model$_updatedAt; if (t89 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t90 = _this.get$_company_model$_$this()._company_model$_archivedAt; if (t90 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t91 = _this.get$_company_model$_$this()._company_model$_isDeleted; t92 = _this.get$_company_model$_$this()._company_model$_createdUserId; t93 = _this.get$_company_model$_$this()._company_model$_assignedUserId; t94 = _this.get$_company_model$_$this()._company_model$_entityType; t95 = _this.get$_company_model$_$this()._company_model$_id; if (t95 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$CompanyEntity$_(t43, t90, t93, t80, t85, t20, t70, t50, t47, t24, t11, t12, t88, t92, t57, t71, t18, t17, t63, t64, t38, t1, t2, t3, t4, t14, t16, t15, t23, t84, t94, t48, t29, t61, t13, t25, t26, t73, t42, t95, t6, t76, t79, t77, t78, t52, t87, t91, t22, t21, t74, t75, t34, t33, t27, t28, t32, t31, t68, t55, t9, t8, t51, t60, t58, t56, t54, t53, t36, t30, t83, t19, t82, t81, t5, t72, t41, t40, t86, t7, t67, t69, t46, t45, t59, t44, t65, t39, t10, t89, t35, t37, t49, t62, t66); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "groups"; _this.get$groups().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); _$failedField = "taxRates"; _this.get$taxRates().build$0(0); _$failedField = "taskStatuses"; _this.get$taskStatuses().build$0(0); _$failedField = "taskStatusMap"; _this.get$taskStatusMap().build$0(0); _$failedField = "companyGateways"; _this.get$companyGateways().build$0(0); _$failedField = "expenseCategories"; _this.get$expenseCategories().build$0(0); _$failedField = "users"; _this.get$users().build$0(0); _$failedField = "clients"; _this.get$clients(_this).build$0(0); _$failedField = "products"; _this.get$products().build$0(0); _$failedField = "invoices"; _this.get$invoices().build$0(0); _$failedField = "recurringInvoices"; _this.get$recurringInvoices().build$0(0); _$failedField = "recurringExpenses"; _this.get$recurringExpenses().build$0(0); _$failedField = "payments"; _this.get$payments().build$0(0); _$failedField = "quotes"; _this.get$quotes(_this).build$0(0); _$failedField = "credits"; _this.get$credits().build$0(0); _$failedField = "purchaseOrders"; _this.get$purchaseOrders().build$0(0); _$failedField = "tasks"; _this.get$tasks().build$0(0); _$failedField = "projects"; _this.get$projects().build$0(0); _$failedField = "expenses"; _this.get$expenses().build$0(0); _$failedField = "vendors"; _this.get$vendors().build$0(0); _$failedField = "designs"; _this.get$designs().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "tokens"; _this.get$tokens().build$0(0); _$failedField = "webhooks"; _this.get$webhooks().build$0(0); _$failedField = "subscriptions"; _this.get$subscriptions().build$0(0); _$failedField = "paymentTerms"; _this.get$paymentTerms().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); _$failedField = "clientRegistrationFields"; _this.get$clientRegistrationFields().build$0(0); _$failedField = "customFields"; _this.get$customFields().build$0(0); _$failedField = "settings"; _this.get$settings().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$GatewayEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayEntity && _this.id === other.id && _this.name === other.name && _this.isOffsite === other.isOffsite && _this.isVisible === other.isVisible && _this.sortOrder === other.sortOrder && _this.defaultGatewayTypeId === other.defaultGatewayTypeId && _this.siteUrl === other.siteUrl && J.$eq$(_this.options, other.options) && _this.fields === other.fields; }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.name)), B.JSBool_methods.get$hashCode(_this.isOffsite)), B.JSBool_methods.get$hashCode(_this.isVisible)), B.JSInt_methods.get$hashCode(_this.sortOrder)), B.JSString_methods.get$hashCode(_this.defaultGatewayTypeId)), B.JSString_methods.get$hashCode(_this.siteUrl)), J.get$hashCode$(_this.options)), B.JSString_methods.get$hashCode(_this.fields))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "isOffsite", _this.isOffsite); t2.add$2(t1, "isVisible", _this.isVisible); t2.add$2(t1, "sortOrder", _this.sortOrder); t2.add$2(t1, "defaultGatewayTypeId", _this.defaultGatewayTypeId); t2.add$2(t1, "siteUrl", _this.siteUrl); t2.add$2(t1, "options", _this.options); t2.add$2(t1, "fields", _this.fields); return t2.toString$0(t1); }, get$id(receiver) { return this.id; }, get$name(receiver) { return this.name; } }; A.GatewayEntityBuilder.prototype = { get$id(_) { return this.get$_company_model$_$this()._company_model$_id; }, get$name(_) { return this.get$_company_model$_$this()._company_model$_name; }, get$options(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_options; return t2 == null ? t1._company_model$_options = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayOptionsEntity) : t2; }, get$_company_model$_$this() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._company_model$_id = $$v.id; _this._company_model$_name = $$v.name; _this._isOffsite = $$v.isOffsite; _this._isVisible = $$v.isVisible; _this._sortOrder = $$v.sortOrder; _this._defaultGatewayTypeId = $$v.defaultGatewayTypeId; _this._siteUrl = $$v.siteUrl; t1 = $$v.options; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._company_model$_options = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._company_model$_fields = $$v.fields; _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, exception, _this = this, _s13_ = "GatewayEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._company_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); t2 = _this.get$_company_model$_$this()._company_model$_name; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "name")); t3 = _this.get$_company_model$_$this()._isOffsite; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isOffsite")); t4 = _this.get$_company_model$_$this()._isVisible; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isVisible")); t5 = _this.get$_company_model$_$this()._sortOrder; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "sortOrder")); t6 = _this.get$_company_model$_$this()._defaultGatewayTypeId; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "defaultGatewayTypeId")); t7 = _this.get$_company_model$_$this()._siteUrl; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "siteUrl")); t8 = _this.get$options(_this).build$0(0); t9 = _this.get$_company_model$_$this()._company_model$_fields; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "fields")); _$result0 = A._$GatewayEntity$_(t6, t9, t1, t3, t4, t2, t8, t7, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "options"; _this.get$options(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$GatewayOptionsEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayOptionsEntity && _this.supportRefunds === other.supportRefunds && _this.supportTokenBilling === other.supportTokenBilling && J.$eq$(_this.webhooks, other.webhooks); }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.supportRefunds)), B.JSBool_methods.get$hashCode(_this.supportTokenBilling)), J.get$hashCode$(_this.webhooks))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayOptionsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "supportRefunds", this.supportRefunds); t2.add$2(t1, "supportTokenBilling", this.supportTokenBilling); t2.add$2(t1, "webhooks", this.webhooks); return t2.toString$0(t1); } }; A.GatewayOptionsEntityBuilder.prototype = { get$_company_model$_$this() { var t1, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._supportRefunds = $$v.supportRefunds; _this._supportTokenBilling = $$v.supportTokenBilling; t1 = $$v.webhooks; _this._webhooks = t1 == null ? null : A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, exception, _this = this, _s20_ = "GatewayOptionsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._supportRefunds; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "supportRefunds")); t2 = _this.get$_company_model$_$this()._supportTokenBilling; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "supportTokenBilling")); t3 = _this._webhooks; _$result0 = new A._$GatewayOptionsEntity(t1, t2, t3 == null ? null : t3.build$0(0)); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "webhooks"; t1 = _this._webhooks; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$UserCompanyEntity.prototype = { rebuild$1(updates) { var t1 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserCompanyEntity && _this.isAdmin === other.isAdmin && _this.isOwner === other.isOwner && _this.permissionsUpdatedAt === other.permissionsUpdatedAt && _this.permissions === other.permissions && J.$eq$(_this.notifications, other.notifications) && J.$eq$(_this.company, other.company) && J.$eq$(_this.user, other.user) && J.$eq$(_this.token, other.token) && J.$eq$(_this.account, other.account) && J.$eq$(_this.settings, other.settings) && _this.ninjaPortalUrl === other.ninjaPortalUrl; }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.isAdmin)), B.JSBool_methods.get$hashCode(_this.isOwner)), B.JSInt_methods.get$hashCode(_this.permissionsUpdatedAt)), B.JSString_methods.get$hashCode(_this.permissions)), J.get$hashCode$(_this.notifications)), J.get$hashCode$(_this.company)), J.get$hashCode$(_this.user)), J.get$hashCode$(_this.token)), J.get$hashCode$(_this.account)), J.get$hashCode$(_this.settings)), B.JSString_methods.get$hashCode(_this.ninjaPortalUrl))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "isAdmin", _this.isAdmin); t2.add$2(t1, "isOwner", _this.isOwner); t2.add$2(t1, "permissionsUpdatedAt", _this.permissionsUpdatedAt); t2.add$2(t1, "permissions", _this.permissions); t2.add$2(t1, "notifications", _this.notifications); t2.add$2(t1, "company", _this.company); t2.add$2(t1, "user", _this.user); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "account", _this.account); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "ninjaPortalUrl", _this.ninjaPortalUrl); return t2.toString$0(t1); }, get$company() { return this.company; }, get$user(receiver) { return this.user; }, get$token() { return this.token; } }; A.UserCompanyEntityBuilder.prototype = { get$notifications() { var t1 = this.get$_company_model$_$this(), t2 = t1._notifications; return t2 == null ? t1._notifications = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$company() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_company; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._company_model$_company = t2; t1 = t2; } else t1 = t2; return t1; }, get$user(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_user; if (t2 == null) { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); t1._company_model$_user = t2; t1 = t2; } else t1 = t2; return t1; }, get$token() { var t1 = this.get$_company_model$_$this(), t2 = t1._token; return t2 == null ? t1._token = new A.TokenEntityBuilder() : t2; }, get$settings() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_settings; if (t2 == null) { t2 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t2); t1._company_model$_settings = t2; t1 = t2; } else t1 = t2; return t1; }, get$_company_model$_$this() { var t1, t2, _this = this, _null = null, _s5_ = "other", $$v = _this._company_model$_$v; if ($$v != null) { _this._isAdmin = $$v.isAdmin; _this._isOwner = $$v.isOwner; _this._permissionsUpdatedAt = $$v.permissionsUpdatedAt; _this._permissions = $$v.permissions; t1 = $$v.notifications; if (t1 == null) t1 = _null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._notifications = t1; t1 = $$v.company; if (t1 == null) t1 = _null; else { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._company_model$_$v = t1; t1 = t2; } _this._company_model$_company = t1; t1 = $$v.user; if (t1 == null) t1 = _null; else { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._user_model$_$v = t1; t1 = t2; } _this._company_model$_user = t1; t1 = $$v.token; if (t1 == null) t1 = _null; else { t2 = new A.TokenEntityBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._token_model$_$v = t1; t1 = t2; } _this._token = t1; t1 = $$v.account; if (t1 == null) t1 = _null; else { t2 = new A.AccountEntityBuilder(); A.AccountEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._account_model$_$v = t1; t1 = t2; } _this._account = t1; t1 = $$v.settings; if (t1 == null) t1 = _null; else { t2 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._company_model$_$v = t1; t1 = t2; } _this._company_model$_settings = t1; _this._ninjaPortalUrl = $$v.ninjaPortalUrl; _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _null = null, _s17_ = "UserCompanyEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._isAdmin; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "isAdmin")); t2 = _this.get$_company_model$_$this()._isOwner; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "isOwner")); t3 = _this.get$_company_model$_$this()._permissionsUpdatedAt; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "permissionsUpdatedAt")); t4 = _this.get$_company_model$_$this()._permissions; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "permissions")); t5 = _this._notifications; t5 = t5 == null ? _null : t5.build$0(0); t6 = _this._company_model$_company; t6 = t6 == null ? _null : t6.build$0(0); t7 = _this._company_model$_user; t7 = t7 == null ? _null : t7.build$0(0); t8 = _this._token; t8 = t8 == null ? _null : t8.build$0(0); t9 = _this._account; t9 = t9 == null ? _null : t9.build$0(0); t10 = _this._company_model$_settings; t10 = t10 == null ? _null : t10.build$0(0); t11 = _this.get$_company_model$_$this()._ninjaPortalUrl; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "ninjaPortalUrl")); _$result0 = A._$UserCompanyEntity$_(t9, t6, t1, t2, t11, t5, t4, t3, t10, t8, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "notifications"; t1 = _this._notifications; if (t1 != null) t1.build$0(0); _$failedField = "company"; t1 = _this._company_model$_company; if (t1 != null) t1.build$0(0); _$failedField = "user"; t1 = _this._company_model$_user; if (t1 != null) t1.build$0(0); _$failedField = "token"; t1 = _this._token; if (t1 != null) t1.build$0(0); _$failedField = "account"; t1 = _this._account; if (t1 != null) t1.build$0(0); _$failedField = "settings"; t1 = _this._company_model$_settings; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$UserSettingsEntity.prototype = { rebuild$1(updates) { var t1 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserSettingsEntity && _this.accentColor == other.accentColor && J.$eq$(_this.tableColumns, other.tableColumns) && J.$eq$(_this.reportSettings, other.reportSettings) && _this.numberYearsActive === other.numberYearsActive && _this.includeDeletedClients === other.includeDeletedClients; }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.accentColor)), J.get$hashCode$(_this.tableColumns)), J.get$hashCode$(_this.reportSettings)), B.JSInt_methods.get$hashCode(_this.numberYearsActive)), B.JSBool_methods.get$hashCode(_this.includeDeletedClients))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserSettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "accentColor", _this.accentColor); t2.add$2(t1, "tableColumns", _this.tableColumns); t2.add$2(t1, "reportSettings", _this.reportSettings); t2.add$2(t1, "numberYearsActive", _this.numberYearsActive); t2.add$2(t1, "includeDeletedClients", _this.includeDeletedClients); return t2.toString$0(t1); } }; A.UserSettingsEntityBuilder.prototype = { get$tableColumns() { var t1 = this.get$_company_model$_$this(), t2 = t1._tableColumns; return t2 == null ? t1._tableColumns = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$reportSettings() { var t1 = this.get$_company_model$_$this(), t2 = t1._reportSettings; return t2 == null ? t1._reportSettings = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ReportSettingsEntity) : t2; }, get$_company_model$_$this() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._accentColor = $$v.accentColor; t1 = $$v.tableColumns; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._tableColumns = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.reportSettings; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._reportSettings = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._numberYearsActive = $$v.numberYearsActive; _this._includeDeletedClients = $$v.includeDeletedClients; _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, exception, _this = this, _s18_ = "UserSettingsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._accentColor; t2 = _this.get$tableColumns().build$0(0); t3 = _this.get$reportSettings().build$0(0); t4 = _this.get$_company_model$_$this()._numberYearsActive; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "numberYearsActive")); t5 = _this.get$_company_model$_$this()._includeDeletedClients; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "includeDeletedClients")); _$result0 = A._$UserSettingsEntity$_(t1, t5, t4, t3, t2); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "tableColumns"; _this.get$tableColumns().build$0(0); _$failedField = "reportSettings"; _this.get$reportSettings().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$ReportSettingsEntity.prototype = { rebuild$1(updates) { var t1 = new A.ReportSettingsEntityBuilder(); A.ReportSettingsEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ReportSettingsEntity && _this.sortColumn === other.sortColumn && _this.sortAscending === other.sortAscending && _this.sortTotalsIndex === other.sortTotalsIndex && _this.sortTotalsAscending === other.sortTotalsAscending && J.$eq$(_this.columns, other.columns); }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.sortColumn)), B.JSBool_methods.get$hashCode(_this.sortAscending)), B.JSInt_methods.get$hashCode(_this.sortTotalsIndex)), B.JSBool_methods.get$hashCode(_this.sortTotalsAscending)), J.get$hashCode$(_this.columns))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ReportSettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sortColumn", _this.sortColumn); t2.add$2(t1, "sortAscending", _this.sortAscending); t2.add$2(t1, "sortTotalsIndex", _this.sortTotalsIndex); t2.add$2(t1, "sortTotalsAscending", _this.sortTotalsAscending); t2.add$2(t1, "columns", _this.columns); return t2.toString$0(t1); } }; A.ReportSettingsEntityBuilder.prototype = { get$columns(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._columns; return t2 == null ? t1._columns = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_company_model$_$this() { var t1, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._sortColumn = $$v.sortColumn; _this._company_model$_sortAscending = $$v.sortAscending; _this._sortTotalsIndex = $$v.sortTotalsIndex; _this._sortTotalsAscending = $$v.sortTotalsAscending; t1 = $$v.columns; t1.toString; _this._columns = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, exception, _this = this, _s20_ = "ReportSettingsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._sortColumn; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "sortColumn")); t2 = _this.get$_company_model$_$this()._company_model$_sortAscending; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "sortAscending")); t3 = _this.get$_company_model$_$this()._sortTotalsIndex; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "sortTotalsIndex")); t4 = _this.get$_company_model$_$this()._sortTotalsAscending; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "sortTotalsAscending")); _$result0 = A._$ReportSettingsEntity$_(_this.get$columns(_this).build$0(0), t2, t1, t4, t3); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "columns"; _this.get$columns(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$CompanyItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._company_model$__hashCode; return t1 == null ? this._company_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CompanyItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._company_model$_$v = t1; _this._company_model$_data = t2; _this._company_model$_$v = null; } t1 = _this._company_model$_data; if (t1 == null) { t1 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t1); _this._company_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "CompanyItemResponse", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CompanyItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_model$_$v = t1; return _$result; } }; A._$RegistrationFieldEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.RegistrationFieldEntity && this.key === other.key && this.required === other.required; }, get$hashCode(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.key)), B.JSBool_methods.get$hashCode(_this.required))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RegistrationFieldEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "key", this.key); t2.add$2(t1, "required", this.required); return t2.toString$0(t1); } }; A.RegistrationFieldEntityBuilder.prototype = { get$_company_model$_$this() { var _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._company_model$_key = $$v.key; _this._required = $$v.required; _this._company_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s23_ = "RegistrationFieldEntity", _$result = _this._company_model$_$v; if (_$result == null) { t1 = _this.get$_company_model$_$this()._company_model$_key; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "key")); t2 = _this.get$_company_model$_$this()._required; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "required")); _$result = new A._$RegistrationFieldEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._company_model$_$v = _$result; } }; A._CompanyEntity_Object_BaseEntity.prototype = {}; A._GatewayEntity_Object_SelectableEntity.prototype = {}; A.CreditListResponse.prototype = {}; A.CreditItemResponse.prototype = {}; A._$CreditListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_xS5)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.CreditListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_InvoiceEntity, t3 = type$.ListBuilder_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._credit_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._credit_model$_data = t6; result._credit_model$_$v = null; } t4 = result._credit_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._credit_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_86y; }, get$wireName() { return "CreditListResponse"; } }; A._$CreditItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_fXI)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CreditItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._credit_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t3); t3._invoice_model$_$v = t2; result._credit_model$_data = t3; result._credit_model$_$v = null; } t2 = result._credit_model$_data; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); result._credit_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._invoice_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ypO; }, get$wireName() { return "CreditItemResponse"; } }; A._$CreditListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CreditListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._credit_model$__hashCode; return t1 == null ? this._credit_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CreditListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._credit_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._credit_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._credit_model$_$v = null; } t1 = _this._credit_model$_data; return t1 == null ? _this._credit_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "CreditListResponse", _$result = null; try { _$result0 = _this._credit_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CreditListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._credit_model$_$v = t1; return _$result; } }; A._$CreditItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CreditItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._credit_model$__hashCode; return t1 == null ? this._credit_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CreditItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._credit_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; _this._credit_model$_data = t2; _this._credit_model$_$v = null; } t1 = _this._credit_model$_data; if (t1 == null) { t1 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t1); _this._credit_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "CreditItemResponse", _$result = null; try { _$result0 = _this._credit_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CreditItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._credit_model$_$v = t1; return _$result; } }; A.DateRange.prototype = {}; A.DateRangeComparison.prototype = {}; A.DashboardSettings.prototype = {}; A._$DateRangeSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$valueOf0(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_DateRange_avx; }, get$wireName() { return "DateRange"; } }; A._$DateRangeComparisonSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$comparisonValueOf(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_DateRangeComparison_wco; }, get$wireName() { return "DateRangeComparison"; } }; A.DesignListResponse.prototype = {}; A.DesignItemResponse.prototype = {}; A.DesignPreviewRequest.prototype = {}; A.DesignEntity.prototype = { get$entityType() { return B.EntityType_design; }, get$clone(_) { return this.rebuild$1(new A.DesignEntity_clone_closure()); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) actions.push(B.EntityAction_newInvoice); if (userCompany.can$2(B.UserPermission_create, B.EntityType_quote)) actions.push(B.EntityAction_newQuote); if (userCompany.can$2(B.UserPermission_create, B.EntityType_credit)) actions.push(B.EntityAction_newClient); if (userCompany.can$2(B.UserPermission_create, B.EntityType_recurringInvoice)) actions.push(B.EntityAction_newRecurringInvoice); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_design) && !multiselect) actions.push(B.EntityAction_clone); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$3(_, design, sortField, sortAscending) { var response, designA = sortAscending ? this : design, designB = sortAscending ? design : this; switch (sortField) { case "updated_at": response = B.JSInt_methods.compareTo$1(designA.updatedAt, designB.updatedAt); break; default: response = 0; } if (response === 0) return B.JSString_methods.compareTo$1(designA.name.toLowerCase(), designB.name.toLowerCase()); else return response; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; }, $isSelectableEntity: 1 }; A.DesignEntity_clone_closure.prototype = { call$1(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_design_model$_$this()._design_model$_id = "" + t1; b.get$_design_model$_$this()._design_model$_isChanged = false; b.get$_design_model$_$this()._design_model$_isDeleted = false; return b; }, $signature: 449 }; A._$DesignListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_8sg)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.DesignListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DesignEntity, t3 = type$.ListBuilder_legacy_DesignEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._design_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._design_model$_data = t6; result._design_model$_$v = null; } t4 = result._design_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._design_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_8sg)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_0O2; }, get$wireName() { return "DesignListResponse"; } }; A._$DesignItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_CNd)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.DesignItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DesignEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._design_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.DesignEntityBuilder(); t3.get$_design_model$_$this()._isFree = true; t3._design_model$_$v = t2; result._design_model$_data = t3; result._design_model$_$v = null; } t2 = result._design_model$_data; if (t2 == null) { t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; result._design_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_CNd)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._design_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_VgL; }, get$wireName() { return "DesignItemResponse"; } }; A._$DesignPreviewRequestSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["entity_type", serializers.serialize$2$specifiedType(object.entityType, B.FullType_qBb), "entity_id", serializers.serialize$2$specifiedType(object.entityId, B.FullType_h8g), "design", serializers.serialize$2$specifiedType(object.design, B.FullType_CNd)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.DesignPreviewRequestBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DesignEntity, t2 = type$.legacy_EntityType; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "entity_type": t3 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_design_model$_$this()._design_model$_entityType = t3; break; case "entity_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_model$_$this()._entityId = t3; break; case "design": t3 = result.get$_design_model$_$this(); t4 = t3._design; if (t4 == null) { t4 = new A.DesignEntityBuilder(); t4.get$_design_model$_$this()._isFree = true; t3._design = t4; t3 = t4; } else t3 = t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_CNd)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._design_model$_$v = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Hx4; }, get$wireName() { return "DesignPreviewRequest"; } }; A._$DesignEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "design", serializers.serialize$2$specifiedType(object.design, B.FullType_LNO), "is_custom", serializers.serialize$2$specifiedType(object.isCustom, B.FullType_MtR), "is_free", serializers.serialize$2$specifiedType(object.isFree, B.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.DesignEntityBuilder(); result.get$_design_model$_$this()._isFree = true; iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_model$_$this()._design_model$_name = t2; break; case "design": t2 = result.get$_design_model$_$this(); t3 = t2._design; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._design = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "is_custom": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_design_model$_$this()._isCustom = t2; break; case "is_free": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_design_model$_$this()._isFree = t2; break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_design_model$_$this()._design_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_design_model$_$this()._design_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_design_model$_$this()._design_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_design_model$_$this()._design_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_design_model$_$this()._design_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_model$_$this()._design_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_model$_$this()._design_model$_assignedUserId = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_model$_$this()._design_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_O9m; }, get$wireName() { return "DesignEntity"; } }; A._$DesignListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DesignListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._design_model$__hashCode; return t1 == null ? this._design_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DesignListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._design_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._design_model$_$v = null; } t1 = _this._design_model$_data; return t1 == null ? _this._design_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DesignEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "DesignListResponse", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$DesignListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_model$_$v = t1; return _$result; } }; A._$DesignItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DesignItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._design_model$__hashCode; return t1 == null ? this._design_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DesignItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; A.ArgumentError_checkNotNull(t1, "other"); t2._design_model$_$v = t1; _this._design_model$_data = t2; _this._design_model$_$v = null; } t1 = _this._design_model$_data; if (t1 == null) { t1 = new A.DesignEntityBuilder(); t1.get$_design_model$_$this()._isFree = true; _this._design_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "DesignItemResponse", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$DesignItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_model$_$v = t1; return _$result; } }; A._$DesignPreviewRequest.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.DesignPreviewRequest && _this.entityType === other.entityType && _this.entityId === other.entityId && J.$eq$(_this.design, other.design); }, get$hashCode(_) { var _this = this, t1 = _this._design_model$__hashCode; return t1 == null ? _this._design_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(0, A.Primitives_objectHashCode(_this.entityType)), B.JSString_methods.get$hashCode(_this.entityId)), J.get$hashCode$(_this.design))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignPreviewRequest"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "entityType", this.entityType); t2.add$2(t1, "entityId", this.entityId); t2.add$2(t1, "design", this.design); return t2.toString$0(t1); }, get$design() { return this.design; } }; A.DesignPreviewRequestBuilder.prototype = { get$design() { var t1 = this.get$_design_model$_$this(), t2 = t1._design; if (t2 == null) { t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t1._design = t2; t1 = t2; } else t1 = t2; return t1; }, get$_design_model$_$this() { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { _this._design_model$_entityType = $$v.entityType; _this._entityId = $$v.entityId; t1 = $$v.design; t1.toString; t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; A.ArgumentError_checkNotNull(t1, "other"); t2._design_model$_$v = t1; _this._design = t2; _this._design_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s20_ = "DesignPreviewRequest", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$_design_model$_$this()._design_model$_entityType; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "entityType")); t2 = _this.get$_design_model$_$this()._entityId; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "entityId")); _$result0 = A._$DesignPreviewRequest$_(_this.get$design().build$0(0), t2, t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "design"; _this.get$design().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_model$_$v = t1; return _$result; } }; A._$DesignEntity.prototype = { rebuild$1(updates) { var t1 = new A.DesignEntityBuilder(); t1.get$_design_model$_$this()._isFree = true; A.ArgumentError_checkNotNull(this, "other"); t1._design_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.DesignEntity && _this.name === other.name && J.$eq$(_this.design, other.design) && _this.isCustom === other.isCustom && _this.isFree === other.isFree && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._design_model$__hashCode; return t1 == null ? _this._design_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.design)), B.JSBool_methods.get$hashCode(_this.isCustom)), B.JSBool_methods.get$hashCode(_this.isFree)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "design", _this.design); t2.add$2(t1, "isCustom", _this.isCustom); t2.add$2(t1, "isFree", _this.isFree); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$design() { return this.design; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.DesignEntityBuilder.prototype = { get$name(_) { return this.get$_design_model$_$this()._design_model$_name; }, get$design() { var t1 = this.get$_design_model$_$this(), t2 = t1._design; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._design = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$id(_) { return this.get$_design_model$_$this()._design_model$_id; }, get$_design_model$_$this() { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { _this._design_model$_name = $$v.name; t1 = $$v.design; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._design = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._isCustom = $$v.isCustom; _this._isFree = $$v.isFree; _this._design_model$_isChanged = $$v.isChanged; _this._design_model$_createdAt = $$v.createdAt; _this._design_model$_updatedAt = $$v.updatedAt; _this._design_model$_archivedAt = $$v.archivedAt; _this._design_model$_isDeleted = $$v.isDeleted; _this._design_model$_createdUserId = $$v.createdUserId; _this._design_model$_assignedUserId = $$v.assignedUserId; _this._design_model$_id = $$v.id; _this._design_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, exception, _this = this, _s12_ = "DesignEntity", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$_design_model$_$this()._design_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "name")); t2 = _this.get$design().build$0(0); t3 = _this.get$_design_model$_$this()._isCustom; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "isCustom")); t4 = _this.get$_design_model$_$this()._isFree; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "isFree")); t5 = _this.get$_design_model$_$this()._design_model$_isChanged; t6 = _this.get$_design_model$_$this()._design_model$_createdAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "createdAt")); t7 = _this.get$_design_model$_$this()._design_model$_updatedAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "updatedAt")); t8 = _this.get$_design_model$_$this()._design_model$_archivedAt; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "archivedAt")); t9 = _this.get$_design_model$_$this()._design_model$_isDeleted; t10 = _this.get$_design_model$_$this()._design_model$_createdUserId; t11 = _this.get$_design_model$_$this()._design_model$_assignedUserId; t12 = _this.get$_design_model$_$this()._design_model$_id; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = A._$DesignEntity$_(t8, t11, t6, t10, t2, t12, t5, t3, t9, t4, t1, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "design"; _this.get$design().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_model$_$v = t1; return _$result; } }; A._DesignEntity_Object_BaseEntity.prototype = {}; A.DocumentListResponse.prototype = {}; A.DocumentItemResponse.prototype = {}; A.DocumentEntity.prototype = { get$entityType() { return B.EntityType_document; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, compareTo$3(_, $document, sortField, sortAscending) { var response, documentA = sortAscending ? this : $document, documentB = sortAscending ? $document : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(documentA.name.toLowerCase(), documentB.name.toLowerCase()); break; case "updated_at": response = B.JSInt_methods.compareTo$1(documentA.updatedAt, documentB.updatedAt); break; default: A.print("## ERROR: sort by documents." + A.S(sortField) + " is not implemented"); response = 0; break; } return response; }, compareTo$1($receiver, $document) { return this.compareTo$3($receiver, $document, null, true); }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name, this.type, this.preview], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.name, this.type, this.preview], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !this.isDeleted; if (t1 && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) actions.push(B.EntityAction_newInvoice); } if (t1 && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); } }; A._$DocumentListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_EBZ)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.DocumentListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._document_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._document_model$_data = t6; result._document_model$_$v = null; } t4 = result._document_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._document_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_MYA; }, get$wireName() { return "DocumentListResponse"; } }; A._$DocumentItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_uzh)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.DocumentItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._document_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.DocumentEntityBuilder(); t3._document_model$_$v = t2; result._document_model$_data = t3; result._document_model$_$v = null; } t2 = result._document_model$_data; if (t2 == null) t2 = result._document_model$_data = new A.DocumentEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_uzh)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._document_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_65l; }, get$wireName() { return "DocumentItemResponse"; } }; A._$DocumentEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "hash", serializers.serialize$2$specifiedType(object.hash, B.FullType_h8g), "type", serializers.serialize$2$specifiedType(object.type, B.FullType_h8g), "url", serializers.serialize$2$specifiedType(object.url, B.FullType_h8g), "width", serializers.serialize$2$specifiedType(object.width, B.FullType_kjq), "height", serializers.serialize$2$specifiedType(object.height, B.FullType_kjq), "size", serializers.serialize$2$specifiedType(object.size, B.FullType_kjq), "preview", serializers.serialize$2$specifiedType(object.preview, B.FullType_h8g), "is_default", serializers.serialize$2$specifiedType(object.isDefault, B.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.DocumentEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._document_model$_name = t1; break; case "hash": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._hash = t1; break; case "type": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._type = t1; break; case "url": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._url = t1; break; case "width": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._document_model$_width = t1; break; case "height": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._document_model$_height = t1; break; case "size": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._size = t1; break; case "preview": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._preview = t1; break; case "is_default": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_document_model$_$this()._isDefault = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_document_model$_$this()._document_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._document_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._document_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_model$_$this()._document_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_document_model$_$this()._document_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._document_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._document_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_model$_$this()._document_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_iDT; }, get$wireName() { return "DocumentEntity"; } }; A._$DocumentListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DocumentListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._document_model$__hashCode; return t1 == null ? this._document_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DocumentListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._document_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._document_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._document_model$_$v = null; } t1 = _this._document_model$_data; return t1 == null ? _this._document_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "DocumentListResponse", _$result = null; try { _$result0 = _this._document_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$DocumentListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._document_model$_$v = t1; return _$result; } }; A._$DocumentItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DocumentItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._document_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._document_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DocumentItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._document_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.DocumentEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._document_model$_$v = t1; _this._document_model$_data = t2; _this._document_model$_$v = null; } t1 = _this._document_model$_data; return t1 == null ? _this._document_model$_data = new A.DocumentEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._document_model$_$v; if (_$result0 == null) _$result0 = new A._$DocumentItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("DocumentItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._document_model$_$v = t1; return _$result; } }; A._$DocumentEntity.prototype = { rebuild$1(updates) { var t1 = new A.DocumentEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._document_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.DocumentEntity && _this.name === other.name && _this.hash === other.hash && _this.type === other.type && _this.url === other.url && _this.width === other.width && _this.height === other.height && _this.size === other.size && _this.preview === other.preview && _this.isDefault === other.isDefault && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._document_model$__hashCode; return t1 == null ? _this._document_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.hash)), B.JSString_methods.get$hashCode(_this.type)), B.JSString_methods.get$hashCode(_this.url)), B.JSInt_methods.get$hashCode(_this.width)), B.JSInt_methods.get$hashCode(_this.height)), B.JSInt_methods.get$hashCode(_this.size)), B.JSString_methods.get$hashCode(_this.preview)), B.JSBool_methods.get$hashCode(_this.isDefault)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "hash", _this.hash); t2.add$2(t1, "type", _this.type); t2.add$2(t1, "url", _this.url); t2.add$2(t1, "width", _this.width); t2.add$2(t1, "height", _this.height); t2.add$2(t1, "size", _this.size); t2.add$2(t1, "preview", _this.preview); t2.add$2(t1, "isDefault", _this.isDefault); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.DocumentEntityBuilder.prototype = { get$name(_) { return this.get$_document_model$_$this()._document_model$_name; }, get$id(_) { return this.get$_document_model$_$this()._document_model$_id; }, get$_document_model$_$this() { var _this = this, $$v = _this._document_model$_$v; if ($$v != null) { _this._document_model$_name = $$v.name; _this._hash = $$v.hash; _this._type = $$v.type; _this._url = $$v.url; _this._document_model$_width = $$v.width; _this._document_model$_height = $$v.height; _this._size = $$v.size; _this._preview = $$v.preview; _this._isDefault = $$v.isDefault; _this._document_model$_isChanged = $$v.isChanged; _this._document_model$_createdAt = $$v.createdAt; _this._document_model$_updatedAt = $$v.updatedAt; _this._document_model$_archivedAt = $$v.archivedAt; _this._document_model$_isDeleted = $$v.isDeleted; _this._document_model$_createdUserId = $$v.createdUserId; _this._document_model$_assignedUserId = $$v.assignedUserId; _this._document_model$_id = $$v.id; _this._document_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, _s14_ = "DocumentEntity", _$result = _this._document_model$_$v; if (_$result == null) { t1 = _this.get$_document_model$_$this()._document_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_document_model$_$this()._hash; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "hash")); t3 = _this.get$_document_model$_$this()._type; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "type")); t4 = _this.get$_document_model$_$this()._url; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "url")); t5 = _this.get$_document_model$_$this()._document_model$_width; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "width")); t6 = _this.get$_document_model$_$this()._document_model$_height; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "height")); t7 = _this.get$_document_model$_$this()._size; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "size")); t8 = _this.get$_document_model$_$this()._preview; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "preview")); t9 = _this.get$_document_model$_$this()._isDefault; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "isDefault")); t10 = _this.get$_document_model$_$this()._document_model$_isChanged; t11 = _this.get$_document_model$_$this()._document_model$_createdAt; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "createdAt")); t12 = _this.get$_document_model$_$this()._document_model$_updatedAt; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "updatedAt")); t13 = _this.get$_document_model$_$this()._document_model$_archivedAt; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "archivedAt")); t14 = _this.get$_document_model$_$this()._document_model$_isDeleted; t15 = _this.get$_document_model$_$this()._document_model$_createdUserId; t16 = _this.get$_document_model$_$this()._document_model$_assignedUserId; t17 = _this.get$_document_model$_$this()._document_model$_id; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "id")); _$result = A._$DocumentEntity$_(t13, t16, t11, t15, t2, t6, t17, t10, t9, t14, t1, t8, t7, t3, t12, t4, t5); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._document_model$_$v = _$result; } }; A._DocumentEntity_Object_BaseEntity.prototype = {}; A._DocumentEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.EntityType.prototype = { get$plural() { if (this === B.EntityType_expenseCategory) return "expenseCategories"; else if (this === B.EntityType_taskStatus) return "taskStatuses"; return this.name + "s"; }, get$isSetting() { return B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_paymentTerm, B.EntityType_taxRate, B.EntityType_companyGateway, B.EntityType_user, B.EntityType_group, B.EntityType_design, B.EntityType_token, B.EntityType_webhook, B.EntityType_expenseCategory, B.EntityType_taskStatus, B.EntityType_subscription], type$.JSArray_legacy_EntityType), this); }, get$relatedTypes() { var t1 = type$.JSArray_legacy_EntityType; switch (this) { case B.EntityType_client: return A._setArrayType([B.EntityType_invoice, B.EntityType_task, B.EntityType_expense, B.EntityType_payment, B.EntityType_quote, B.EntityType_credit, B.EntityType_project, B.EntityType_recurringInvoice, B.EntityType_recurringExpense], t1); case B.EntityType_invoice: return A._setArrayType([B.EntityType_payment], t1); case B.EntityType_quote: return A._setArrayType([B.EntityType_invoice], t1); case B.EntityType_recurringInvoice: return A._setArrayType([B.EntityType_invoice], t1); case B.EntityType_payment: return A._setArrayType([B.EntityType_invoice], t1); case B.EntityType_project: return A._setArrayType([B.EntityType_task, B.EntityType_expense, B.EntityType_invoice], t1); case B.EntityType_group: return A._setArrayType([B.EntityType_client, B.EntityType_invoice, B.EntityType_quote, B.EntityType_credit, B.EntityType_task, B.EntityType_project, B.EntityType_expense, B.EntityType_recurringInvoice], t1); case B.EntityType_user: return A._setArrayType([B.EntityType_client, B.EntityType_invoice, B.EntityType_quote, B.EntityType_credit, B.EntityType_task, B.EntityType_project, B.EntityType_expense, B.EntityType_vendor, B.EntityType_recurringInvoice, B.EntityType_recurringExpense], t1); case B.EntityType_companyGateway: return A._setArrayType([B.EntityType_client, B.EntityType_payment], t1); case B.EntityType_vendor: return A._setArrayType([B.EntityType_purchaseOrder, B.EntityType_expense, B.EntityType_recurringExpense], t1); case B.EntityType_task: return A._setArrayType([B.EntityType_project], t1); case B.EntityType_expense: return A._setArrayType([B.EntityType_vendor, B.EntityType_project, B.EntityType_expenseCategory], t1); case B.EntityType_expenseCategory: return A._setArrayType([B.EntityType_expense], t1); case B.EntityType_recurringExpense: return A._setArrayType([B.EntityType_expense], t1); case B.EntityType_design: return A._setArrayType([B.EntityType_invoice, B.EntityType_quote, B.EntityType_credit, B.EntityType_recurringInvoice], t1); default: return A._setArrayType([], t1); } }, get$baseType() { var t1 = type$.JSArray_legacy_EntityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_credit, B.EntityType_quote, B.EntityType_recurringInvoice], t1), this)) return B.EntityType_invoice; else if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t1), this)) return B.EntityType_expense; return this; } }; A.EntityState.prototype = {}; A.EmailTemplate.prototype = {}; A.UserPermission.prototype = {}; A.EntityStatus.prototype = {}; A.EntityStats.prototype = { present$2(activeLabel, archivedLabel) { var str, t1 = this.countActive; if (t1 > 0) { str = "" + t1 + " " + activeLabel; if (this.countArchived > 0) str += " \u2022 "; } else str = ""; t1 = this.countArchived; return t1 > 0 ? str + ("" + t1 + " " + archivedLabel) : str; } }; A.SelectableEntity.prototype = { matchesFilter$1(filter) { return true; }, matchesFilterValue$1(filter) { return null; }, get$listDisplayName() { return "Error: listDisplayName not set"; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; } }; A.BaseEntity.prototype = { get$isNew() { var _this = this, t1 = _this.get$id(_this); if (t1.length !== 0) { t1 = A.Primitives_parseInt(_this.get$id(_this), null); t1 = (t1 == null ? 0 : t1) < 0; } else t1 = true; return t1; }, get$isArchived() { var t1, _this = this; _this.get$archivedAt(); t1 = _this.get$archivedAt() > 0 && !_this.get$isDeleted(_this); return t1; }, get$isEditable() { return !this.get$isDeleted(this); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions, t1, _this = this; if (_this.get$isNew()) return A._setArrayType([], type$.JSArray_legacy_EntityAction); actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (userCompany.canEditEntity$1(_this)) t1 = _this.get$isArchived() || _this.get$isDeleted(_this); else t1 = false; if (t1) actions.push(B.EntityAction_restore); if (userCompany.canEditEntity$1(_this) && !_this.get$isArchived() && !_this.get$isDeleted(_this)) actions.push(B.EntityAction_archive); if (userCompany.canEditEntity$1(_this)) t1 = !_this.get$isArchived() && !_this.get$isDeleted(_this) || _this.get$isArchived(); else t1 = false; if (t1) actions.push(B.EntityAction_delete); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, matchesStates$1(states) { var _this = this, t1 = states._list; if (t1.length === 0) return true; if (B.JSArray_methods.contains$1(t1, B.EntityState_active) && !_this.get$isArchived() && !_this.get$isDeleted(_this)) return true; if (B.JSArray_methods.contains$1(t1, B.EntityState_archived) && _this.get$isArchived()) return true; if (B.JSArray_methods.contains$1(t1, B.EntityState_deleted) && _this.get$isDeleted(_this)) return true; return false; }, $isSelectableEntity: 1 }; A.HasActivities.prototype = { getActivities$2$invoiceId$typeId(invoiceId, typeId) { var t1 = this.get$activities()._list; return new A.WhereIterable(t1, new A.HasActivities_getActivities_closure(invoiceId, typeId), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); } }; A.HasActivities_getActivities_closure.prototype = { call$1(activity) { var t1 = activity.invoiceId; if (t1 !== this.invoiceId) return false; t1 = activity.activityTypeId; if (t1 !== this.typeId) return false; return true; }, $signature: 450 }; A.BelongsToClient.prototype = {}; A.BelongsToVendor.prototype = {}; A.LoginResponse.prototype = {}; A.ActivityEntity.prototype = { get$entityType() { var t1 = type$.JSArray_legacy_String, t2 = this.activityTypeId; if (B.JSArray_methods.contains$1(A._setArrayType(["1", "61", "2", "3", "26"], t1), t2)) return B.EntityType_client; else if (B.JSArray_methods.contains$1(A._setArrayType(["4", "5", "6", "7", "8", "9", "25", "53", "58", "59", "63", "64", "65", "66", "57"], t1), t2)) return B.EntityType_invoice; else if (B.JSArray_methods.contains$1(A._setArrayType(["10", "11", "12", "13", "27", "41", "54"], t1), t2)) return B.EntityType_payment; else if (B.JSArray_methods.contains$1(A._setArrayType(["14", "15", "16", "17", "28", "39", "40", "60"], t1), t2)) return B.EntityType_credit; else if (B.JSArray_methods.contains$1(A._setArrayType(["18", "19", "20", "21", "22", "23", "24", "29"], t1), t2)) return B.EntityType_quote; else if (B.JSArray_methods.contains$1(A._setArrayType(["30", "31", "62", "32", "33"], t1), t2)) return B.EntityType_vendor; else if (B.JSArray_methods.contains$1(A._setArrayType(["34", "35", "36", "37", "47"], t1), t2)) return B.EntityType_expense; else if (B.JSArray_methods.contains$1(A._setArrayType(["42", "43", "44", "45", "46"], t1), t2)) return B.EntityType_task; else if (B.JSArray_methods.contains$1(A._setArrayType(["48", "49", "50", "51", "52"], t1), t2)) return B.EntityType_user; else if (B.JSArray_methods.contains$1(A._setArrayType(["80", "81", "82", "83", "84"], t1), t2)) return B.EntityType_subscription; else if (B.JSArray_methods.contains$1(A._setArrayType(["100", "101", "102", "103", "104"], t1), t2)) return B.EntityType_recurringInvoice; else if (B.JSArray_methods.contains$1(A._setArrayType(["120", "121", "122", "123", "124"], t1), t2)) return B.EntityType_recurringExpense; else { A.print("## ERROR: failed to resolve entity type - activity_type_id: " + t2); return null; } } }; A.LedgerEntity.prototype = { get$entityType() { if (this.creditId != null) return B.EntityType_credit; else if (this.paymentId != null) return B.EntityType_payment; else return B.EntityType_invoice; }, get$entityId() { var t1 = this.creditId; if (t1 != null) return t1; else { t1 = this.paymentId; if (t1 != null) return t1; else return this.invoiceId; } } }; A._$EntityTypeSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$typeValueOf(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_EntityType_6qb; }, get$wireName() { return "EntityType"; } }; A._$EntityStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$valueOf(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_EntityState_NQk; }, get$wireName() { return "EntityState"; } }; A._$EmailTemplateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$templateValueOf(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_EmailTemplate_GAI; }, get$wireName() { return "EmailTemplate"; } }; A._$LoginResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.userCompanies, B.FullType_89t), "static", serializers.serialize$2$specifiedType(object.$static, B.FullType_Met)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.LoginResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_StaticDataEntity, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_UserCompanyEntity, t4 = type$.ListBuilder_legacy_UserCompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": t5 = result.get$_entities$_$this(); t6 = t5._userCompanies; if (t6 == null) { t6 = new A.ListBuilder(t4); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t3); t5._userCompanies = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_89t)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "static": t5 = result.get$_entities$_$this(); t6 = t5._static; t5 = t6 == null ? t5._static = new A.StaticDataEntityBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Met)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._static_data_model$_$v = t6; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_K9P; }, get$wireName() { return "LoginResponse"; } }; A._$ActivityEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["notes", serializers.serialize$2$specifiedType(object.notes, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.key, B.FullType_h8g), "activity_type_id", serializers.serialize$2$specifiedType(object.activityTypeId, B.FullType_h8g), "user_id", serializers.serialize$2$specifiedType(object.userId, B.FullType_h8g), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.clientId; if (value != null) { result.push("client_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringInvoiceId; if (value != null) { result.push("recurring_invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringExpenseId; if (value != null) { result.push("recurring_expense_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.quoteId; if (value != null) { result.push("quote_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.paymentId; if (value != null) { result.push("payment_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.expenseId; if (value != null) { result.push("expense_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.isSystem; if (value != null) { result.push("is_system"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.ip; if (value != null) { result.push("ip"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.contactId; if (value != null) { result.push("contact_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.taskId; if (value != null) { result.push("task_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.projectId; if (value != null) { result.push("project_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.vendorId; if (value != null) { result.push("vendor_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.tokenId; if (value != null) { result.push("token_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.history; if (value != null) { result.push("history"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_bLp)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.ActivityEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceHistoryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "notes": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_notes = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_key = t2; break; case "activity_type_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._activityTypeId = t2; break; case "client_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_clientId = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_userId = t2; break; case "invoice_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_invoiceId = t2; break; case "recurring_invoice_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._recurringInvoiceId = t2; break; case "recurring_expense_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._recurringExpenseId = t2; break; case "quote_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._quoteId = t2; break; case "payment_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._paymentId = t2; break; case "credit_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_creditId = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_entities$_$this()._entities$_updatedAt = t2; break; case "expense_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_expenseId = t2; break; case "is_system": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_entities$_$this()._entities$_isSystem = t2; break; case "ip": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._ip = t2; break; case "contact_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._contactId = t2; break; case "task_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_taskId = t2; break; case "project_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_projectId = t2; break; case "vendor_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_vendorId = t2; break; case "token_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._tokenId = t2; break; case "history": t2 = result.get$_entities$_$this(); t3 = t2._entities$_history; t2 = t3 == null ? t2._entities$_history = new A.InvoiceHistoryEntityBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_bLp)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._invoice_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uPE; }, get$wireName() { return "ActivityEntity"; } }; A._$LedgerEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["notes", serializers.serialize$2$specifiedType(object.notes, B.FullType_h8g), "balance", serializers.serialize$2$specifiedType(object.balance, B.FullType_MME), "adjustment", serializers.serialize$2$specifiedType(object.adjustment, B.FullType_MME), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.paymentId; if (value != null) { result.push("payment_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, _$result, t2, t3, t4, _s12_ = "LedgerEntity", result = new A.LedgerEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "notes": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_notes = t1; break; case "balance": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_entities$_$this()._entities$_balance = t1; break; case "adjustment": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_entities$_$this()._adjustment = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_entities$_$this()._entities$_createdAt = t1; break; case "invoice_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_invoiceId = t1; break; case "credit_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._entities$_creditId = t1; break; case "payment_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_entities$_$this()._paymentId = t1; break; } } _$result = result._entities$_$v; if (_$result == null) { t1 = result.get$_entities$_$this()._entities$_notes; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "notes")); t2 = result.get$_entities$_$this()._entities$_balance; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "balance")); t3 = result.get$_entities$_$this()._adjustment; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "adjustment")); t4 = result.get$_entities$_$this()._entities$_createdAt; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "createdAt")); _$result = new A._$LedgerEntity(t1, t2, t3, t4, result.get$_entities$_$this()._entities$_invoiceId, result.get$_entities$_$this()._entities$_creditId, result.get$_entities$_$this()._paymentId); } A.ArgumentError_checkNotNull(_$result, "other"); return result._entities$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_P7V; }, get$wireName() { return "LedgerEntity"; } }; A._$LoginResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.LoginResponse && J.$eq$(this.userCompanies, other.userCompanies) && J.$eq$(this.$static, other.$static); }, get$hashCode(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.userCompanies)), J.get$hashCode$(_this.$static))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LoginResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "userCompanies", this.userCompanies); t2.add$2(t1, "static", this.$static); return t2.toString$0(t1); } }; A.LoginResponseBuilder.prototype = { get$userCompanies() { var t1 = this.get$_entities$_$this(), t2 = t1._userCompanies; return t2 == null ? t1._userCompanies = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserCompanyEntity) : t2; }, get$$static() { var t1 = this.get$_entities$_$this(), t2 = t1._static; return t2 == null ? t1._static = new A.StaticDataEntityBuilder() : t2; }, get$_entities$_$this() { var t1, t2, _this = this, $$v = _this._entities$_$v; if ($$v != null) { t1 = $$v.userCompanies; t1.toString; _this._userCompanies = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.$static; t1.toString; t2 = new A.StaticDataEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._static_data_model$_$v = t1; _this._static = t2; _this._entities$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s13_ = "LoginResponse", _$result = null; try { _$result0 = _this._entities$_$v; if (_$result0 == null) { t1 = _this.get$userCompanies().build$0(0); t2 = _this.get$$static().build$0(0); _$result0 = new A._$LoginResponse(t1, t2); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "userCompanies")); if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "static")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "userCompanies"; _this.get$userCompanies().build$0(0); _$failedField = "static"; _this.get$$static().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._entities$_$v = t1; return _$result; } }; A._$ActivityEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ActivityEntity && _this.notes === other.notes && _this.key === other.key && _this.activityTypeId === other.activityTypeId && _this.clientId == other.clientId && _this.userId === other.userId && _this.invoiceId == other.invoiceId && _this.recurringInvoiceId == other.recurringInvoiceId && _this.recurringExpenseId == other.recurringExpenseId && _this.quoteId == other.quoteId && _this.paymentId == other.paymentId && _this.creditId == other.creditId && _this.updatedAt === other.updatedAt && _this.expenseId == other.expenseId && _this.isSystem == other.isSystem && _this.ip == other.ip && _this.contactId == other.contactId && _this.taskId == other.taskId && _this.projectId == other.projectId && _this.vendorId == other.vendorId && _this.tokenId == other.tokenId && J.$eq$(_this.history, other.history); }, get$hashCode(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.notes)), B.JSString_methods.get$hashCode(_this.key)), B.JSString_methods.get$hashCode(_this.activityTypeId)), J.get$hashCode$(_this.clientId)), B.JSString_methods.get$hashCode(_this.userId)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.recurringInvoiceId)), J.get$hashCode$(_this.recurringExpenseId)), J.get$hashCode$(_this.quoteId)), J.get$hashCode$(_this.paymentId)), J.get$hashCode$(_this.creditId)), B.JSInt_methods.get$hashCode(_this.updatedAt)), J.get$hashCode$(_this.expenseId)), J.get$hashCode$(_this.isSystem)), J.get$hashCode$(_this.ip)), J.get$hashCode$(_this.contactId)), J.get$hashCode$(_this.taskId)), J.get$hashCode$(_this.projectId)), J.get$hashCode$(_this.vendorId)), J.get$hashCode$(_this.tokenId)), J.get$hashCode$(_this.history))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ActivityEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "key", _this.key); t2.add$2(t1, "activityTypeId", _this.activityTypeId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "userId", _this.userId); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "recurringInvoiceId", _this.recurringInvoiceId); t2.add$2(t1, "recurringExpenseId", _this.recurringExpenseId); t2.add$2(t1, "quoteId", _this.quoteId); t2.add$2(t1, "paymentId", _this.paymentId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "expenseId", _this.expenseId); t2.add$2(t1, "isSystem", _this.isSystem); t2.add$2(t1, "ip", _this.ip); t2.add$2(t1, "contactId", _this.contactId); t2.add$2(t1, "taskId", _this.taskId); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "tokenId", _this.tokenId); t2.add$2(t1, "history", _this.history); return t2.toString$0(t1); }, get$recurringExpenseId() { return this.recurringExpenseId; }, get$tokenId() { return this.tokenId; } }; A.ActivityEntityBuilder.prototype = { get$recurringExpenseId() { return this.get$_entities$_$this()._recurringExpenseId; }, get$tokenId() { return this.get$_entities$_$this()._tokenId; }, get$_entities$_$this() { var t1, t2, _this = this, $$v = _this._entities$_$v; if ($$v != null) { _this._entities$_notes = $$v.notes; _this._entities$_key = $$v.key; _this._activityTypeId = $$v.activityTypeId; _this._entities$_clientId = $$v.clientId; _this._entities$_userId = $$v.userId; _this._entities$_invoiceId = $$v.invoiceId; _this._recurringInvoiceId = $$v.recurringInvoiceId; _this._recurringExpenseId = $$v.recurringExpenseId; _this._quoteId = $$v.quoteId; _this._paymentId = $$v.paymentId; _this._entities$_creditId = $$v.creditId; _this._entities$_updatedAt = $$v.updatedAt; _this._entities$_expenseId = $$v.expenseId; _this._entities$_isSystem = $$v.isSystem; _this._ip = $$v.ip; _this._contactId = $$v.contactId; _this._entities$_taskId = $$v.taskId; _this._entities$_projectId = $$v.projectId; _this._entities$_vendorId = $$v.vendorId; _this._tokenId = $$v.tokenId; t1 = $$v.history; if (t1 == null) t1 = null; else { t2 = new A.InvoiceHistoryEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._entities$_history = t1; _this._entities$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, exception, _this = this, _s14_ = "ActivityEntity", _$result = null; try { _$result0 = _this._entities$_$v; if (_$result0 == null) { t1 = _this.get$_entities$_$this()._entities$_notes; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "notes")); t2 = _this.get$_entities$_$this()._entities$_key; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "key")); t3 = _this.get$_entities$_$this()._activityTypeId; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "activityTypeId")); t4 = _this.get$_entities$_$this()._entities$_clientId; t5 = _this.get$_entities$_$this()._entities$_userId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "userId")); t6 = _this.get$_entities$_$this()._entities$_invoiceId; t7 = _this.get$_entities$_$this()._recurringInvoiceId; t8 = _this.get$_entities$_$this()._recurringExpenseId; t9 = _this.get$_entities$_$this()._quoteId; t10 = _this.get$_entities$_$this()._paymentId; t11 = _this.get$_entities$_$this()._entities$_creditId; t12 = _this.get$_entities$_$this()._entities$_updatedAt; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "updatedAt")); t13 = _this.get$_entities$_$this()._entities$_expenseId; t14 = _this.get$_entities$_$this()._entities$_isSystem; t15 = _this.get$_entities$_$this()._ip; t16 = _this.get$_entities$_$this()._contactId; t17 = _this.get$_entities$_$this()._entities$_taskId; t18 = _this.get$_entities$_$this()._entities$_projectId; t19 = _this.get$_entities$_$this()._entities$_vendorId; t20 = _this.get$_entities$_$this()._tokenId; t21 = _this._entities$_history; _$result0 = new A._$ActivityEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21 == null ? null : t21.build$0(0)); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "history"; t1 = _this._entities$_history; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._entities$_$v = t1; return _$result; } }; A._$LedgerEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.LedgerEntity && _this.notes === other.notes && _this.balance === other.balance && _this.adjustment === other.adjustment && _this.createdAt === other.createdAt && _this.invoiceId == other.invoiceId && _this.creditId == other.creditId && _this.paymentId == other.paymentId; }, get$hashCode(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.notes)), B.JSNumber_methods.get$hashCode(_this.balance)), B.JSNumber_methods.get$hashCode(_this.adjustment)), B.JSInt_methods.get$hashCode(_this.createdAt)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.creditId)), J.get$hashCode$(_this.paymentId))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("LedgerEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "adjustment", _this.adjustment); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "paymentId", _this.paymentId); return t2.toString$0(t1); } }; A.LedgerEntityBuilder.prototype = { get$_entities$_$this() { var _this = this, $$v = _this._entities$_$v; if ($$v != null) { _this._entities$_notes = $$v.notes; _this._entities$_balance = $$v.balance; _this._adjustment = $$v.adjustment; _this._entities$_createdAt = $$v.createdAt; _this._entities$_invoiceId = $$v.invoiceId; _this._entities$_creditId = $$v.creditId; _this._paymentId = $$v.paymentId; _this._entities$_$v = null; } return _this; } }; A.ExpenseCategoryListResponse.prototype = {}; A.ExpenseCategoryItemResponse.prototype = {}; A.ExpenseCategoryEntity.prototype = { get$entityType() { return B.EntityType_expenseCategory; }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); } B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, compareTo$3$expenseCategory$sortAscending$sortField(_, expenseCategory, sortAscending, sortField) { var response, categoryA = sortAscending ? this : expenseCategory, categoryB = sortAscending ? expenseCategory : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(categoryA.name.toLowerCase(), categoryB.name.toLowerCase()); break; default: A.print("## ERROR: sort by expoense_category." + sortField + " is not implemented"); response = 0; break; } return response; } }; A._$ExpenseCategoryListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_8cq)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ExpenseCategoryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ExpenseCategoryEntity, t3 = type$.ListBuilder_legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_category_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._expense_category_model$_data = t6; result._expense_category_model$_$v = null; } t4 = result._expense_category_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._expense_category_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_8cq)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_vnU0; }, get$wireName() { return "ExpenseCategoryListResponse"; } }; A._$ExpenseCategoryItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_M6L)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ExpenseCategoryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_category_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.ExpenseCategoryEntityBuilder(); t3.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t3._expense_category_model$_$v = t2; result._expense_category_model$_data = t3; result._expense_category_model$_$v = null; } t2 = result._expense_category_model$_data; if (t2 == null) { t2 = new A.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; result._expense_category_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_M6L)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._expense_category_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_vnU; }, get$wireName() { return "ExpenseCategoryItemResponse"; } }; A._$ExpenseCategoryEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.ExpenseCategoryEntityBuilder(); result.get$_expense_category_model$_$this()._expense_category_model$_color = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_name = t1; break; case "color": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_color = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_category_model$_$this()._expense_category_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_category_model$_$this()._expense_category_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_QoN; }, get$wireName() { return "ExpenseCategoryEntity"; } }; A._$ExpenseCategoryListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseCategoryListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._expense_category_model$__hashCode; return t1 == null ? this._expense_category_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ExpenseCategoryListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._expense_category_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_category_model$_$v = null; } t1 = _this._expense_category_model$_data; return t1 == null ? _this._expense_category_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseCategoryEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s27_ = "ExpenseCategoryListResponse", _$result = null; try { _$result0 = _this._expense_category_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ExpenseCategoryListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s27_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s27_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_category_model$_$v = t1; return _$result; } }; A._$ExpenseCategoryItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseCategoryItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._expense_category_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._expense_category_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ExpenseCategoryItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._expense_category_model$_$v = t1; _this._expense_category_model$_data = t2; _this._expense_category_model$_$v = null; } t1 = _this._expense_category_model$_data; if (t1 == null) { t1 = new A.ExpenseCategoryEntityBuilder(); t1.get$_expense_category_model$_$this()._expense_category_model$_color = ""; _this._expense_category_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._expense_category_model$_$v; if (_$result0 == null) _$result0 = new A._$ExpenseCategoryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ExpenseCategoryItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_category_model$_$v = t1; return _$result; } }; A._$ExpenseCategoryEntity.prototype = { rebuild$1(updates) { var t1 = new A.ExpenseCategoryEntityBuilder(); t1.get$_expense_category_model$_$this()._expense_category_model$_color = ""; A.ArgumentError_checkNotNull(this, "other"); t1._expense_category_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ExpenseCategoryEntity && _this.name === other.name && _this.color === other.color && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._expense_category_model$__hashCode; return t1 == null ? _this._expense_category_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.color)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.ExpenseCategoryEntityBuilder.prototype = { get$name(_) { return this.get$_expense_category_model$_$this()._expense_category_model$_name; }, get$id(_) { return this.get$_expense_category_model$_$this()._expense_category_model$_id; }, get$_expense_category_model$_$this() { var _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { _this._expense_category_model$_name = $$v.name; _this._expense_category_model$_color = $$v.color; _this._expense_category_model$_isChanged = $$v.isChanged; _this._expense_category_model$_createdAt = $$v.createdAt; _this._expense_category_model$_updatedAt = $$v.updatedAt; _this._expense_category_model$_archivedAt = $$v.archivedAt; _this._expense_category_model$_isDeleted = $$v.isDeleted; _this._expense_category_model$_createdUserId = $$v.createdUserId; _this._expense_category_model$_assignedUserId = $$v.assignedUserId; _this._expense_category_model$_id = $$v.id; _this._expense_category_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s21_ = "ExpenseCategoryEntity", _$result = _this._expense_category_model$_$v; if (_$result == null) { t1 = _this.get$_expense_category_model$_$this()._expense_category_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "name")); t2 = _this.get$_expense_category_model$_$this()._expense_category_model$_color; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "color")); t3 = _this.get$_expense_category_model$_$this()._expense_category_model$_isChanged; t4 = _this.get$_expense_category_model$_$this()._expense_category_model$_createdAt; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "createdAt")); t5 = _this.get$_expense_category_model$_$this()._expense_category_model$_updatedAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "updatedAt")); t6 = _this.get$_expense_category_model$_$this()._expense_category_model$_archivedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "archivedAt")); t7 = _this.get$_expense_category_model$_$this()._expense_category_model$_isDeleted; t8 = _this.get$_expense_category_model$_$this()._expense_category_model$_createdUserId; t9 = _this.get$_expense_category_model$_$this()._expense_category_model$_assignedUserId; t10 = _this.get$_expense_category_model$_$this()._expense_category_model$_id; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "id")); _$result = A._$ExpenseCategoryEntity$_(t6, t9, t2, t4, t8, t10, t3, t7, t1, t5); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._expense_category_model$_$v = _$result; } }; A._ExpenseCategoryEntity_Object_BaseEntity.prototype = {}; A._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.ExpenseListResponse.prototype = {}; A.ExpenseItemResponse.prototype = {}; A.ExpenseEntity.prototype = { get$clone(_) { return this.rebuild$1(new A.ExpenseEntity_clone_closure()); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var t2, t3, t4, superActions, _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1) { if (includeEdit && !multiselect && userCompany.canEditEntity$1(_this) && true) actions.push(B.EntityAction_edit); t2 = type$.JSArray_legacy_EntityType; t3 = _this.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t2), t3)) if (_this.get$canBeStarted()) actions.push(B.EntityAction_start); else if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t2), t3) && B.JSArray_methods.contains$1(A._setArrayType(["-1", "2"], type$.JSArray_legacy_String), _this.get$calculatedStatusId())) actions.push(B.EntityAction_stop); t4 = _this.invoiceId; if (!(t4 != null && t4.length !== 0) && !B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t2), t3) && _this.shouldBeInvoiced && userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) { actions.push(B.EntityAction_invoiceExpense); t2 = _this.clientId; if ((t2 == null ? "" : t2).length !== 0) actions.push(B.EntityAction_addToInvoice); } } if (!multiselect && !_this.get$isNew()) { if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense) && !B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) actions.push(B.EntityAction_cloneToExpense); if (userCompany.can$2(B.UserPermission_create, B.EntityType_recurringExpense)) actions.push(B.EntityAction_cloneToRecurring); if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense) && B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) actions.push(B.EntityAction_cloneToExpense); } if (t1 && multiselect) actions.push(B.EntityAction_documents); superActions = _this.super$BaseEntity$getActions(null, false, false, userCompany); if (actions.length !== 0 && superActions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, superActions); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$9(_, expense, sortField, sortAscending, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState) { var response, t1, t2, userA, userB, clientA, clientB, vendorA, vendorB, stateA, stateB, currencyMap, currencyA, currencyB, categoryA, categoryB, invoiceA, invoiceB, _null = null, _s8_ = "archived", expenseA = sortAscending ? this : expense, expenseB = sortAscending ? expense : this; switch (sortField) { case "net_amount": response = B.JSNumber_methods.compareTo$1(expenseA.get$netAmount(), expenseB.get$netAmount()); break; case "amount": response = B.JSNumber_methods.compareTo$1(expenseA.amount, expenseB.amount); break; case "assigned_to": t1 = expenseA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, expenseB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = expenseA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, expenseB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "client_id": case "client": t1 = expenseA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, expenseB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.displayName)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.displayName)), 0, _null).toLowerCase()); break; case "vendor_id": case "vendor": t1 = expenseA.vendorId; t2 = vendorMap._map$_map; vendorA = t2.$index(0, t1); if (vendorA == null) vendorA = A.VendorEntity_VendorEntity(_null, _null, _null); vendorB = t2.$index(0, expenseB.vendorId); if (vendorB == null) vendorB = A.VendorEntity_VendorEntity(_null, _null, _null); response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(vendorA.name)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(vendorB.name)), 0, _null).toLowerCase()); break; case "entity_state": if (!expenseA.get$isArchived() && !expenseA.isDeleted) t1 = "active"; else t1 = expenseA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!expenseB.get$isArchived() && !expenseB.isDeleted) t1 = "active"; else t1 = expenseB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "public_notes": response = B.JSString_methods.compareTo$1(expenseA.publicNotes.toLowerCase(), expenseB.publicNotes.toLowerCase()); break; case "date": response = B.JSString_methods.compareTo$1(expenseA.date.toLowerCase(), expenseB.date.toLowerCase()); break; case "payment_date": response = B.JSString_methods.compareTo$1(expenseA.paymentDate.toLowerCase(), expenseB.paymentDate.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(expenseA.createdAt, expenseB.createdAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(expenseA.updatedAt, expenseB.updatedAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(expenseA.archivedAt, expenseB.archivedAt); break; case "documents": response = B.JSInt_methods.compareTo$1(expenseA.documents._list.length, expenseB.documents._list.length); break; case "number": response = A.compareNatural(expenseA.number.toLowerCase(), expenseB.number.toLowerCase()); break; case "private_notes": response = B.JSString_methods.compareTo$1(expenseA.privateNotes, expenseB.privateNotes); break; case "transaction_id": response = B.JSString_methods.compareTo$1(expenseA.transactionId, expenseB.transactionId); break; case "transaction_reference": response = B.JSString_methods.compareTo$1(expenseA.transactionReference, expenseB.transactionReference); break; case "bank_id": response = B.JSString_methods.compareTo$1(expenseA.bankId, expenseB.bankId); break; case "currency_id": currencyMap = staticState.currencyMap; t1 = expenseA.currencyId; t2 = currencyMap._map$_map; currencyA = t2.$index(0, t1); if (currencyA == null) currencyA = A.CurrencyEntity_CurrencyEntity(); currencyB = t2.$index(0, expenseB.currencyId); if (currencyB == null) currencyB = A.CurrencyEntity_CurrencyEntity(); response = B.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "category_id": case "category": t1 = expenseA.categoryId; t2 = expenseCategoryMap._map$_map; categoryA = t2.$index(0, t1); if (categoryA == null) categoryA = A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); categoryB = t2.$index(0, expenseB.categoryId); if (categoryB == null) categoryB = A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); response = B.JSString_methods.compareTo$1(categoryA.name.toLowerCase(), categoryB.name.toLowerCase()); break; case "exchange_rate": response = B.JSNumber_methods.compareTo$1(expenseA.exchangeRate, expenseB.exchangeRate); break; case "invoice_currency_id": currencyMap = staticState.currencyMap; t1 = expenseA.invoiceCurrencyId; t2 = currencyMap._map$_map; currencyA = t2.$index(0, t1); if (currencyA == null) currencyA = A.CurrencyEntity_CurrencyEntity(); currencyB = t2.$index(0, expenseB.invoiceCurrencyId); if (currencyB == null) currencyB = A.CurrencyEntity_CurrencyEntity(); response = B.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "tax_name1": response = B.JSString_methods.compareTo$1(expenseA.taxName1, expenseB.taxName1); break; case "tax_name2": response = B.JSString_methods.compareTo$1(expenseA.taxName2, expenseB.taxName2); break; case "tax_rate1": response = B.JSNumber_methods.compareTo$1(expenseA.taxRate1, expenseB.taxRate1); break; case "tax_rate2": response = B.JSNumber_methods.compareTo$1(expenseA.taxRate2, expenseB.taxRate2); break; case "invoice_id": t1 = expenseA.invoiceId; t2 = invoiceMap._map$_map; invoiceA = t2.$index(0, t1); if (invoiceA == null) invoiceA = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); invoiceB = t2.$index(0, expenseB.invoiceId); if (invoiceB == null) invoiceB = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); response = B.JSString_methods.compareTo$1(invoiceA.number, invoiceB.number); break; case "custom1": response = B.JSString_methods.compareTo$1(expenseA.customValue1, expenseB.customValue1); break; case "custom2": response = B.JSString_methods.compareTo$1(expenseA.customValue2, expenseB.customValue2); break; case "custom3": response = B.JSString_methods.compareTo$1(expenseA.customValue3, expenseB.customValue3); break; case "custom4": response = B.JSString_methods.compareTo$1(expenseA.customValue4, expenseB.customValue4); break; case "frequency": response = B.JSString_methods.compareTo$1(expenseA.frequencyId, expenseB.frequencyId); break; case "next_send_date": response = J.compareTo$1$ns(expenseA.nextSendDate, expenseB.nextSendDate); break; default: A.print("## ERROR: sort by expense." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(expense.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.number, _this.publicNotes, _this.privateNotes, _this.transactionReference, _this.taxName1, _this.taxName2, _this.taxName3, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.number, _this.publicNotes, _this.privateNotes, _this.transactionReference, _this.taxName1, _this.taxName2, _this.taxName3, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesStatuses$1(statuses) { var t3, t4, t5, t6, _this = this, t1 = statuses._list, t2 = t1.length; if (t2 === 0) return true; for (t1 = new J.ArrayIterator(t1, t2, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = _this.invoiceId, t3 = t2 != null, t4 = _this.paymentDate; t1.moveNext$0();) { t5 = t1.__interceptors$_current; if (t5.get$id(t5) === "3" && t3 && t2.length !== 0) return true; else if (t5.get$id(t5) === "2" && _this.get$isPending()) return true; else { if (t5.get$id(t5) === "1") t6 = !(t3 && t2.length !== 0) && !_this.get$isPending(); else t6 = false; if (t6) return true; else if (t5.get$id(t5) === "4" && t4.length === 0) return true; else if (t5.get$id(t5) === "5" && t4.length !== 0) return true; } } return false; }, get$listDisplayName() { return this.number; }, get$isStale() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$canBeStarted() { if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), this.entityType)) var t1 = B.JSArray_methods.contains$1(A._setArrayType(["1", "3"], type$.JSArray_legacy_String), this.get$calculatedStatusId()) || this.statusId == null; else t1 = false; return t1; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, get$calculatetaxRate1() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) { t1 = _this.taxAmount1; t2 = _this.amount; if (_this.usesInclusiveTaxes) return t1 / (t2 - t1) * 100; else return t1 / t2 * 100; } else return _this.taxRate1; }, get$calculatetaxRate2() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) { t1 = _this.taxAmount2; t2 = _this.amount; if (_this.usesInclusiveTaxes) return t1 / (t2 - t1) * 100; else return t1 / t2 * 100; } else return _this.taxRate2; }, get$calculatetaxRate3() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) { t1 = _this.taxAmount3; t2 = _this.amount; if (_this.usesInclusiveTaxes) return t1 / (t2 - t1) * 100; else return t1 / t2 * 100; } else return _this.taxRate3; }, get$taxAmount() { return this.get$calculateTaxAmount1() + this.get$calculateTaxAmount2() + this.get$calculateTaxAmount3(); }, get$calculateTaxAmount1() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) return _this.taxAmount1; if (_this.usesInclusiveTaxes) { t1 = _this.taxRate1; if (t1 !== 0) { t2 = _this.amount; return A.round(t2 - t2 / (1 + t1 / 100), 2); } } else { t1 = _this.taxRate1; if (t1 !== 0) return A.round(_this.amount * t1 / 100, 2); } return 0; }, get$calculateTaxAmount2() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) return _this.taxAmount2; if (_this.usesInclusiveTaxes) { t1 = _this.taxRate2; if (t1 !== 0) { t2 = _this.amount; return A.round(t2 - t2 / (1 + t1 / 100), 2); } } else { t1 = _this.taxRate2; if (t1 !== 0) return A.round(_this.amount * t1 / 100, 2); } return 0; }, get$calculateTaxAmount3() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) return _this.taxAmount3; if (_this.usesInclusiveTaxes) { t1 = _this.taxRate3; if (t1 !== 0) { t2 = _this.amount; return A.round(t2 - t2 / (1 + t1 / 100), 2); } } else { t1 = _this.taxRate3; if (t1 !== 0) return A.round(_this.amount * t1 / 100, 2); } return 0; }, get$netAmount() { var t1 = this.amount; return this.usesInclusiveTaxes ? t1 - this.get$taxAmount() : t1; }, get$grossAmount() { var t1 = this.amount; return this.usesInclusiveTaxes ? t1 : t1 + this.get$taxAmount(); }, get$calculatedStatusId() { var t1, _this = this; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) if (_this.get$isPending()) return "-1"; else return _this.statusId; else { t1 = _this.invoiceId; if (t1 != null && t1.length !== 0) return "3"; else if (_this.shouldBeInvoiced) return "2"; else if (_this.paymentDate.length !== 0 || _this.paymentTypeId.length !== 0 || _this.transactionReference.length !== 0) return "5"; else return "1"; } }, get$isPending() { var t1, _this = this; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) return _this.statusId === "-1"; else { t1 = _this.invoiceId; return !(t1 != null && t1.length !== 0) && _this.shouldBeInvoiced; } } }; A.ExpenseEntity_clone_closure.prototype = { call$1(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_expense_model$_$this()._expense_model$_id = "" + t1; b.get$_expense_model$_$this()._expense_model$_number = ""; b.get$_expense_model$_$this()._expense_model$_isChanged = false; b.get$_expense_model$_$this()._expense_model$_isDeleted = false; b.get$_expense_model$_$this()._expense_model$_invoiceId = null; t1 = A.convertDateTimeToSqlDate(null); b.get$_expense_model$_$this()._expense_model$_date = t1; B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); b.get$_expense_model$_$this()._expense_model$_transactionReference = ""; b.get$_expense_model$_$this()._paymentTypeId = ""; b.get$_expense_model$_$this()._paymentDate = ""; return b; }, $signature: 29 }; A.ExpenseScheduleEntity.prototype = {}; A.ExpenseStatusEntity.prototype = { get$listDisplayName() { return this.name; } }; A._$ExpenseListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_0vR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ExpenseListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ExpenseEntity, t3 = type$.ListBuilder_legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._expense_model$_data = t6; result._expense_model$_$v = null; } t4 = result._expense_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._expense_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_0vR)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2nm; }, get$wireName() { return "ExpenseListResponse"; } }; A._$ExpenseItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_UcG)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ExpenseItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ExpenseEntityBuilder(); t3.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; t3.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t3.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t3.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t3.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._expense_model$_$v = t2; result._expense_model$_data = t3; result._expense_model$_$v = null; } t2 = result._expense_model$_data; if (t2 == null) { t2 = new A.ExpenseEntityBuilder(); t2.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; t2.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t2.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t2.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t2.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; result._expense_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_UcG)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._expense_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_iEE; }, get$wireName() { return "ExpenseItemResponse"; } }; A._$ExpenseEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, B.FullType_h8g), "should_be_invoiced", serializers.serialize$2$specifiedType(object.shouldBeInvoiced, B.FullType_MtR), "invoice_documents", serializers.serialize$2$specifiedType(object.invoiceDocuments, B.FullType_MtR), "transaction_id", serializers.serialize$2$specifiedType(object.transactionId, B.FullType_h8g), "transaction_reference", serializers.serialize$2$specifiedType(object.transactionReference, B.FullType_h8g), "bank_id", serializers.serialize$2$specifiedType(object.bankId, B.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, B.FullType_h8g), "category_id", serializers.serialize$2$specifiedType(object.categoryId, B.FullType_h8g), "amount", serializers.serialize$2$specifiedType(object.amount, B.FullType_MME), "payment_date", serializers.serialize$2$specifiedType(object.paymentDate, B.FullType_h8g), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, B.FullType_MME), "invoice_currency_id", serializers.serialize$2$specifiedType(object.invoiceCurrencyId, B.FullType_h8g), "payment_type_id", serializers.serialize$2$specifiedType(object.paymentTypeId, B.FullType_h8g), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, B.FullType_h8g), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, B.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, B.FullType_MME), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, B.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, B.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, B.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "tax_amount1", serializers.serialize$2$specifiedType(object.taxAmount1, B.FullType_MME), "tax_amount2", serializers.serialize$2$specifiedType(object.taxAmount2, B.FullType_MME), "tax_amount3", serializers.serialize$2$specifiedType(object.taxAmount3, B.FullType_MME), "uses_inclusive_taxes", serializers.serialize$2$specifiedType(object.usesInclusiveTaxes, B.FullType_MtR), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "frequency_id", serializers.serialize$2$specifiedType(object.frequencyId, B.FullType_h8g), "last_sent_date", serializers.serialize$2$specifiedType(object.lastSentDate, B.FullType_h8g), "next_send_date", serializers.serialize$2$specifiedType(object.nextSendDate, B.FullType_h8g), "remaining_cycles", serializers.serialize$2$specifiedType(object.remainingCycles, B.FullType_kjq), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.date; if (value != null) { result.push("date"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientId; if (value != null) { result.push("client_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.vendorId; if (value != null) { result.push("vendor_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.projectId; if (value != null) { result.push("project_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.statusId; if (value != null) { result.push("status_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.calculateTaxByAmount; if (value != null) { result.push("calculate_tax_by_amount"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.recurringId; if (value != null) { result.push("recurring_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringDates; if (value != null) { result.push("recurring_dates"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_aXU)); } value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_qBb)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, key, value, t7, t8, t9, result = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_ExpenseScheduleEntity, t4 = type$.ListBuilder_legacy_ExpenseScheduleEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "private_notes": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_privateNotes = t7; break; case "public_notes": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_publicNotes = t7; break; case "should_be_invoiced": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._shouldBeInvoiced = t7; break; case "invoice_documents": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._invoiceDocuments = t7; break; case "transaction_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._transactionId = t7; break; case "transaction_reference": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_transactionReference = t7; break; case "bank_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._bankId = t7; break; case "currency_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_currencyId = t7; break; case "category_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._categoryId = t7; break; case "amount": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_amount = t7; break; case "date": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_date = t7; break; case "payment_date": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._paymentDate = t7; break; case "exchange_rate": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_exchangeRate = t7; break; case "invoice_currency_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._invoiceCurrencyId = t7; break; case "payment_type_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._paymentTypeId = t7; break; case "tax_name1": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName1 = t7; break; case "tax_name2": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName2 = t7; break; case "tax_rate1": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate1 = t7; break; case "tax_rate2": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate2 = t7; break; case "tax_name3": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName3 = t7; break; case "tax_rate3": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate3 = t7; break; case "client_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_clientId = t7; break; case "invoice_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_invoiceId = t7; break; case "vendor_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_vendorId = t7; break; case "project_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_projectId = t7; break; case "status_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_statusId = t7; break; case "custom_value1": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue1 = t7; break; case "custom_value2": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue2 = t7; break; case "custom_value3": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue3 = t7; break; case "custom_value4": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue4 = t7; break; case "tax_amount1": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._taxAmount1 = t7; break; case "tax_amount2": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._taxAmount2 = t7; break; case "tax_amount3": t7 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_expense_model$_$this()._taxAmount3 = t7; break; case "uses_inclusive_taxes": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes = t7; break; case "calculate_tax_by_amount": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._calculateTaxByAmount = t7; break; case "documents": t7 = result.get$_expense_model$_$this(); t8 = t7._expense_model$_documents; if (t8 == null) { t8 = new A.ListBuilder(t6); t8.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t7._expense_model$_documents = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = A.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } break; case "number": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_number = t7; break; case "recurring_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_recurringId = t7; break; case "frequency_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_frequencyId = t7; break; case "last_sent_date": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_lastSentDate = t7; break; case "next_send_date": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_nextSendDate = t7; break; case "remaining_cycles": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_remainingCycles = t7; break; case "recurring_dates": t7 = result.get$_expense_model$_$this(); t8 = t7._expense_model$_recurringDates; if (t8 == null) { t8 = new A.ListBuilder(t4); t8.__ListBuilder__list = A.List_List$from(B.List_empty, true, t3); t7._expense_model$_recurringDates = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_aXU)); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = A.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } break; case "loadedAt": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_loadedAt = t7; break; case "isChanged": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_isChanged = t7; break; case "created_at": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_createdAt = t7; break; case "updated_at": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_updatedAt = t7; break; case "archived_at": t7 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_archivedAt = t7; break; case "is_deleted": t7 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_isDeleted = t7; break; case "user_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_createdUserId = t7; break; case "assigned_user_id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_assignedUserId = t7; break; case "entity_type": t7 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_expense_model$_$this()._expense_model$_entityType = t7; break; case "id": t7 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_id = t7; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_iFM; }, get$wireName() { return "ExpenseEntity"; } }; A._$ExpenseScheduleEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["send_date", serializers.serialize$2$specifiedType(object.sendDate, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, result = new A.ExpenseScheduleEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "send_date": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_sendDate = $$v.sendDate; result._expense_model$_$v = null; } result._expense_model$_sendDate = t1; break; } } _$result = result._expense_model$_$v; if (_$result == null) { t1 = result.get$_expense_model$_$this()._expense_model$_sendDate; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$("ExpenseScheduleEntity", "sendDate")); _$result = new A._$ExpenseScheduleEntity(t1); } A.ArgumentError_checkNotNull(_$result, "other"); return result._expense_model$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2Z6; }, get$wireName() { return "ExpenseScheduleEntity"; } }; A._$ExpenseStatusEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.ExpenseStatusEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_id = $$v.id; result._expense_model$_name = $$v.name; result._expense_model$_$v = null; } result._expense_model$_id = t1; break; case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_id = $$v.id; result._expense_model$_name = $$v.name; result._expense_model$_$v = null; } result._expense_model$_name = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_23h; }, get$wireName() { return "ExpenseStatusEntity"; } }; A._$ExpenseListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ExpenseListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._expense_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_$v = null; } t1 = _this._expense_model$_data; return t1 == null ? _this._expense_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ExpenseListResponse", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ExpenseListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_model$_$v = t1; return _$result; } }; A._$ExpenseItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ExpenseItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._expense_model$_$v = t1; _this._expense_model$_data = t2; _this._expense_model$_$v = null; } t1 = _this._expense_model$_data; if (t1 == null) { t1 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t1); _this._expense_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ExpenseItemResponse", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ExpenseItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_model$_$v = t1; return _$result; } }; A._$ExpenseEntity.prototype = { rebuild$1(updates) { var t1 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._expense_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ExpenseEntity && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.shouldBeInvoiced === other.shouldBeInvoiced && _this.invoiceDocuments === other.invoiceDocuments && _this.transactionId === other.transactionId && _this.transactionReference === other.transactionReference && _this.bankId === other.bankId && _this.currencyId === other.currencyId && _this.categoryId === other.categoryId && _this.amount === other.amount && _this.date == other.date && _this.paymentDate == other.paymentDate && _this.exchangeRate === other.exchangeRate && _this.invoiceCurrencyId == other.invoiceCurrencyId && _this.paymentTypeId === other.paymentTypeId && _this.taxName1 === other.taxName1 && _this.taxName2 === other.taxName2 && _this.taxRate1 === other.taxRate1 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.clientId == other.clientId && _this.invoiceId == other.invoiceId && _this.vendorId == other.vendorId && _this.projectId == other.projectId && _this.statusId == other.statusId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.taxAmount1 === other.taxAmount1 && _this.taxAmount2 === other.taxAmount2 && _this.taxAmount3 === other.taxAmount3 && _this.usesInclusiveTaxes === other.usesInclusiveTaxes && _this.calculateTaxByAmount == other.calculateTaxByAmount && J.$eq$(_this.documents, other.documents) && _this.number === other.number && _this.recurringId == other.recurringId && _this.frequencyId === other.frequencyId && _this.lastSentDate === other.lastSentDate && _this.nextSendDate == other.nextSendDate && _this.remainingCycles === other.remainingCycles && J.$eq$(_this.recurringDates, other.recurringDates) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._expense_model$__hashCode; return t1 == null ? _this._expense_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.publicNotes)), B.JSBool_methods.get$hashCode(_this.shouldBeInvoiced)), B.JSBool_methods.get$hashCode(_this.invoiceDocuments)), B.JSString_methods.get$hashCode(_this.transactionId)), B.JSString_methods.get$hashCode(_this.transactionReference)), B.JSString_methods.get$hashCode(_this.bankId)), B.JSString_methods.get$hashCode(_this.currencyId)), B.JSString_methods.get$hashCode(_this.categoryId)), B.JSNumber_methods.get$hashCode(_this.amount)), J.get$hashCode$(_this.date)), J.get$hashCode$(_this.paymentDate)), B.JSNumber_methods.get$hashCode(_this.exchangeRate)), J.get$hashCode$(_this.invoiceCurrencyId)), B.JSString_methods.get$hashCode(_this.paymentTypeId)), B.JSString_methods.get$hashCode(_this.taxName1)), B.JSString_methods.get$hashCode(_this.taxName2)), B.JSNumber_methods.get$hashCode(_this.taxRate1)), B.JSNumber_methods.get$hashCode(_this.taxRate2)), B.JSString_methods.get$hashCode(_this.taxName3)), B.JSNumber_methods.get$hashCode(_this.taxRate3)), J.get$hashCode$(_this.clientId)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.vendorId)), J.get$hashCode$(_this.projectId)), J.get$hashCode$(_this.statusId)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSNumber_methods.get$hashCode(_this.taxAmount1)), B.JSNumber_methods.get$hashCode(_this.taxAmount2)), B.JSNumber_methods.get$hashCode(_this.taxAmount3)), B.JSBool_methods.get$hashCode(_this.usesInclusiveTaxes)), J.get$hashCode$(_this.calculateTaxByAmount)), J.get$hashCode$(_this.documents)), B.JSString_methods.get$hashCode(_this.number)), J.get$hashCode$(_this.recurringId)), B.JSString_methods.get$hashCode(_this.frequencyId)), B.JSString_methods.get$hashCode(_this.lastSentDate)), J.get$hashCode$(_this.nextSendDate)), B.JSInt_methods.get$hashCode(_this.remainingCycles)), J.get$hashCode$(_this.recurringDates)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "shouldBeInvoiced", _this.shouldBeInvoiced); t2.add$2(t1, "invoiceDocuments", _this.invoiceDocuments); t2.add$2(t1, "transactionId", _this.transactionId); t2.add$2(t1, "transactionReference", _this.transactionReference); t2.add$2(t1, "bankId", _this.bankId); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "categoryId", _this.categoryId); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "paymentDate", _this.paymentDate); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "invoiceCurrencyId", _this.invoiceCurrencyId); t2.add$2(t1, "paymentTypeId", _this.paymentTypeId); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "taxAmount1", _this.taxAmount1); t2.add$2(t1, "taxAmount2", _this.taxAmount2); t2.add$2(t1, "taxAmount3", _this.taxAmount3); t2.add$2(t1, "usesInclusiveTaxes", _this.usesInclusiveTaxes); t2.add$2(t1, "calculateTaxByAmount", _this.calculateTaxByAmount); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "recurringId", _this.recurringId); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "lastSentDate", _this.lastSentDate); t2.add$2(t1, "nextSendDate", _this.nextSendDate); t2.add$2(t1, "remainingCycles", _this.remainingCycles); t2.add$2(t1, "recurringDates", _this.recurringDates); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount() { return this.amount; }, get$date() { return this.date; }, get$clientId(receiver) { return this.clientId; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$entityType() { return this.entityType; }, get$id(receiver) { return this.id; } }; A.ExpenseEntityBuilder.prototype = { get$amount() { return this.get$_expense_model$_$this()._expense_model$_amount; }, get$date() { return this.get$_expense_model$_$this()._expense_model$_date; }, get$documents() { var t1 = this.get$_expense_model$_$this(), t2 = t1._expense_model$_documents; return t2 == null ? t1._expense_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_expense_model$_$this()._expense_model$_id; }, get$_expense_model$_$this() { var t1, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_privateNotes = $$v.privateNotes; _this._expense_model$_publicNotes = $$v.publicNotes; _this._shouldBeInvoiced = $$v.shouldBeInvoiced; _this._invoiceDocuments = $$v.invoiceDocuments; _this._transactionId = $$v.transactionId; _this._expense_model$_transactionReference = $$v.transactionReference; _this._bankId = $$v.bankId; _this._expense_model$_currencyId = $$v.currencyId; _this._categoryId = $$v.categoryId; _this._expense_model$_amount = $$v.amount; _this._expense_model$_date = $$v.date; _this._paymentDate = $$v.paymentDate; _this._expense_model$_exchangeRate = $$v.exchangeRate; _this._invoiceCurrencyId = $$v.invoiceCurrencyId; _this._paymentTypeId = $$v.paymentTypeId; _this._expense_model$_taxName1 = $$v.taxName1; _this._expense_model$_taxName2 = $$v.taxName2; _this._expense_model$_taxRate1 = $$v.taxRate1; _this._expense_model$_taxRate2 = $$v.taxRate2; _this._expense_model$_taxName3 = $$v.taxName3; _this._expense_model$_taxRate3 = $$v.taxRate3; _this._expense_model$_clientId = $$v.clientId; _this._expense_model$_invoiceId = $$v.invoiceId; _this._expense_model$_vendorId = $$v.vendorId; _this._expense_model$_projectId = $$v.projectId; _this._expense_model$_statusId = $$v.statusId; _this._expense_model$_customValue1 = $$v.customValue1; _this._expense_model$_customValue2 = $$v.customValue2; _this._expense_model$_customValue3 = $$v.customValue3; _this._expense_model$_customValue4 = $$v.customValue4; _this._taxAmount1 = $$v.taxAmount1; _this._taxAmount2 = $$v.taxAmount2; _this._taxAmount3 = $$v.taxAmount3; _this._expense_model$_usesInclusiveTaxes = $$v.usesInclusiveTaxes; _this._calculateTaxByAmount = $$v.calculateTaxByAmount; t1 = $$v.documents; t1.toString; _this._expense_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_number = $$v.number; _this._expense_model$_recurringId = $$v.recurringId; _this._expense_model$_frequencyId = $$v.frequencyId; _this._expense_model$_lastSentDate = $$v.lastSentDate; _this._expense_model$_nextSendDate = $$v.nextSendDate; _this._expense_model$_remainingCycles = $$v.remainingCycles; t1 = $$v.recurringDates; _this._expense_model$_recurringDates = t1 == null ? null : A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_loadedAt = $$v.loadedAt; _this._expense_model$_isChanged = $$v.isChanged; _this._expense_model$_createdAt = $$v.createdAt; _this._expense_model$_updatedAt = $$v.updatedAt; _this._expense_model$_archivedAt = $$v.archivedAt; _this._expense_model$_isDeleted = $$v.isDeleted; _this._expense_model$_createdUserId = $$v.createdUserId; _this._expense_model$_assignedUserId = $$v.assignedUserId; _this._expense_model$_entityType = $$v.entityType; _this._expense_model$_id = $$v.id; _this._expense_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, exception, _this = this, _s13_ = "ExpenseEntity", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$_expense_model$_$this()._expense_model$_privateNotes; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "privateNotes")); t2 = _this.get$_expense_model$_$this()._expense_model$_publicNotes; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "publicNotes")); t3 = _this.get$_expense_model$_$this()._shouldBeInvoiced; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "shouldBeInvoiced")); t4 = _this.get$_expense_model$_$this()._invoiceDocuments; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceDocuments")); t5 = _this.get$_expense_model$_$this()._transactionId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "transactionId")); t6 = _this.get$_expense_model$_$this()._expense_model$_transactionReference; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "transactionReference")); t7 = _this.get$_expense_model$_$this()._bankId; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "bankId")); t8 = _this.get$_expense_model$_$this()._expense_model$_currencyId; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "currencyId")); t9 = _this.get$_expense_model$_$this()._categoryId; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "categoryId")); t10 = _this.get$_expense_model$_$this()._expense_model$_amount; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "amount")); t11 = _this.get$_expense_model$_$this()._expense_model$_date; t12 = _this.get$_expense_model$_$this()._paymentDate; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paymentDate")); t13 = _this.get$_expense_model$_$this()._expense_model$_exchangeRate; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t14 = _this.get$_expense_model$_$this()._invoiceCurrencyId; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invoiceCurrencyId")); t15 = _this.get$_expense_model$_$this()._paymentTypeId; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paymentTypeId")); t16 = _this.get$_expense_model$_$this()._expense_model$_taxName1; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName1")); t17 = _this.get$_expense_model$_$this()._expense_model$_taxName2; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName2")); t18 = _this.get$_expense_model$_$this()._expense_model$_taxRate1; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate1")); t19 = _this.get$_expense_model$_$this()._expense_model$_taxRate2; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate2")); t20 = _this.get$_expense_model$_$this()._expense_model$_taxName3; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName3")); t21 = _this.get$_expense_model$_$this()._expense_model$_taxRate3; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate3")); t22 = _this.get$_expense_model$_$this()._expense_model$_clientId; t23 = _this.get$_expense_model$_$this()._expense_model$_invoiceId; t24 = _this.get$_expense_model$_$this()._expense_model$_vendorId; t25 = _this.get$_expense_model$_$this()._expense_model$_projectId; t26 = _this.get$_expense_model$_$this()._expense_model$_statusId; t27 = _this.get$_expense_model$_$this()._expense_model$_customValue1; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue1")); t28 = _this.get$_expense_model$_$this()._expense_model$_customValue2; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue2")); t29 = _this.get$_expense_model$_$this()._expense_model$_customValue3; if (t29 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue3")); t30 = _this.get$_expense_model$_$this()._expense_model$_customValue4; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue4")); t31 = _this.get$_expense_model$_$this()._taxAmount1; if (t31 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxAmount1")); t32 = _this.get$_expense_model$_$this()._taxAmount2; if (t32 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxAmount2")); t33 = _this.get$_expense_model$_$this()._taxAmount3; if (t33 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxAmount3")); t34 = _this.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes; if (t34 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "usesInclusiveTaxes")); t35 = _this.get$_expense_model$_$this()._calculateTaxByAmount; t36 = _this.get$documents().build$0(0); t37 = _this.get$_expense_model$_$this()._expense_model$_number; if (t37 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "number")); t38 = _this.get$_expense_model$_$this()._expense_model$_recurringId; t39 = _this.get$_expense_model$_$this()._expense_model$_frequencyId; if (t39 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "frequencyId")); t40 = _this.get$_expense_model$_$this()._expense_model$_lastSentDate; if (t40 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "lastSentDate")); t41 = _this.get$_expense_model$_$this()._expense_model$_nextSendDate; if (t41 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "nextSendDate")); t42 = _this.get$_expense_model$_$this()._expense_model$_remainingCycles; if (t42 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "remainingCycles")); t43 = _this._expense_model$_recurringDates; t43 = t43 == null ? null : t43.build$0(0); t44 = _this.get$_expense_model$_$this()._expense_model$_loadedAt; t45 = _this.get$_expense_model$_$this()._expense_model$_isChanged; t46 = _this.get$_expense_model$_$this()._expense_model$_createdAt; if (t46 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t47 = _this.get$_expense_model$_$this()._expense_model$_updatedAt; if (t47 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t48 = _this.get$_expense_model$_$this()._expense_model$_archivedAt; if (t48 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t49 = _this.get$_expense_model$_$this()._expense_model$_isDeleted; t50 = _this.get$_expense_model$_$this()._expense_model$_createdUserId; t51 = _this.get$_expense_model$_$this()._expense_model$_assignedUserId; t52 = _this.get$_expense_model$_$this()._expense_model$_entityType; t53 = _this.get$_expense_model$_$this()._expense_model$_id; if (t53 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$ExpenseEntity$_(t10, t48, t51, t7, t35, t9, t22, t46, t50, t8, t27, t28, t29, t30, t11, t36, t52, t13, t39, t53, t14, t4, t23, t45, t49, t40, t44, t41, t37, t12, t15, t1, t25, t2, t43, t38, t42, t3, t26, t31, t32, t33, t16, t17, t20, t18, t19, t21, t5, t6, t47, t34, t24); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "recurringDates"; t1 = _this._expense_model$_recurringDates; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_model$_$v = t1; return _$result; } }; A._$ExpenseScheduleEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseScheduleEntity && this.sendDate === other.sendDate; }, get$hashCode(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = A.$jf(A.$jc(0, B.JSString_methods.get$hashCode(this.sendDate))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseScheduleEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sendDate", this.sendDate); return t2.toString$0(t1); } }; A.ExpenseScheduleEntityBuilder.prototype = { get$_expense_model$_$this() { var _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_sendDate = $$v.sendDate; _this._expense_model$_$v = null; } return _this; } }; A._$ExpenseStatusEntity.prototype = { rebuild$1(updates) { var t1 = new A.ExpenseStatusEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._expense_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseStatusEntity && this.id === other.id && this.name === other.name; }, get$hashCode(_) { var _this = this, t1 = _this._expense_model$__hashCode; return t1 == null ? _this._expense_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.name))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "name", this.name); return t2.toString$0(t1); }, get$id(receiver) { return this.id; }, get$name(receiver) { return this.name; } }; A.ExpenseStatusEntityBuilder.prototype = { get$id(_) { return this.get$_expense_model$_$this()._expense_model$_id; }, get$name(_) { return this.get$_expense_model$_$this()._expense_model$_name; }, get$_expense_model$_$this() { var _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_id = $$v.id; _this._expense_model$_name = $$v.name; _this._expense_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s19_ = "ExpenseStatusEntity", _$result = _this._expense_model$_$v; if (_$result == null) { t1 = _this.get$_expense_model$_$this()._expense_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "id")); t2 = _this.get$_expense_model$_$this()._expense_model$_name; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "name")); _$result = A._$ExpenseStatusEntity$_(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._expense_model$_$v = _$result; } }; A._ExpenseEntity_Object_BaseEntity.prototype = {}; A._ExpenseEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; A._ExpenseStatusEntity_Object_EntityStatus.prototype = {}; A._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity.prototype = {}; A.GatewayTokenListResponse.prototype = {}; A.GatewayTokenItemResponse.prototype = {}; A.GatewayTokenEntity.prototype = { get$entityType() { return B.EntityType_gatewayToken; }, get$listDisplayName() { return this.customerReference; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.customerReference], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.customerReference], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A.GatewayTokenMetaEntity.prototype = {}; A._$GatewayTokenListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_kr3)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.GatewayTokenListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_GatewayTokenEntity, t3 = type$.ListBuilder_legacy_GatewayTokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._gateway_token_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._gateway_token_model$_data = t6; result._gateway_token_model$_$v = null; } t4 = result._gateway_token_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._gateway_token_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_kr3)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_qNu; }, get$wireName() { return "GatewayTokenListResponse"; } }; A._$GatewayTokenItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_C0V)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.GatewayTokenItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GatewayTokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._gateway_token_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.GatewayTokenEntityBuilder(); t3._gateway_token_model$_$v = t2; result._gateway_token_model$_data = t3; result._gateway_token_model$_$v = null; } t2 = result._gateway_token_model$_data; if (t2 == null) t2 = result._gateway_token_model$_data = new A.GatewayTokenEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_C0V)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._gateway_token_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yK7; }, get$wireName() { return "GatewayTokenItemResponse"; } }; A._$GatewayTokenEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["token", serializers.serialize$2$specifiedType(object.token, B.FullType_h8g), "gateway_customer_reference", serializers.serialize$2$specifiedType(object.customerReference, B.FullType_h8g), "company_gateway_id", serializers.serialize$2$specifiedType(object.companyGatewayId, B.FullType_h8g), "gateway_type_id", serializers.serialize$2$specifiedType(object.gatewayTypeId, B.FullType_h8g), "is_default", serializers.serialize$2$specifiedType(object.isDefault, B.FullType_MtR), "meta", serializers.serialize$2$specifiedType(object.meta, B.FullType_e10), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.GatewayTokenEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GatewayTokenMetaEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "token": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_token = t2; break; case "gateway_customer_reference": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._customerReference = t2; break; case "company_gateway_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_companyGatewayId = t2; break; case "gateway_type_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gatewayTypeId = t2; break; case "is_default": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isDefault = t2; break; case "meta": t2 = result.get$_gateway_token_model$_$this(); t3 = t2._meta; t2 = t3 == null ? t2._meta = new A.GatewayTokenMetaEntityBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_e10)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._gateway_token_model$_$v = t3; break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_assignedUserId = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Now; }, get$wireName() { return "GatewayTokenEntity"; } }; A._$GatewayTokenMetaEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType([], type$.JSArray_legacy_Object), value = object.brand; if (value != null) { result.push("brand"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.last4; if (value != null) { result.push("last4"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.type; if (value != null) { result.push("type"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.expMonth; if (value != null) { result.push("exp_month"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.expYear; if (value != null) { result.push("exp_year"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.GatewayTokenMetaEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "brand": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._brand = t1; break; case "last4": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._last4 = t1; break; case "type": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_type = t1; break; case "exp_month": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._expMonth = t1; break; case "exp_year": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_gateway_token_model$_$this()._expYear = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Ks3; }, get$wireName() { return "GatewayTokenMetaEntity"; } }; A._$GatewayTokenListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.GatewayTokenListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._gateway_token_model$__hashCode; return t1 == null ? this._gateway_token_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.GatewayTokenListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._gateway_token_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._gateway_token_model$_$v = null; } t1 = _this._gateway_token_model$_data; return t1 == null ? _this._gateway_token_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayTokenEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "GatewayTokenListResponse", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$GatewayTokenListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._gateway_token_model$_$v = t1; return _$result; } }; A._$GatewayTokenItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.GatewayTokenItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._gateway_token_model$__hashCode; return t1 == null ? this._gateway_token_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.GatewayTokenItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.GatewayTokenEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._gateway_token_model$_$v = t1; _this._gateway_token_model$_data = t2; _this._gateway_token_model$_$v = null; } t1 = _this._gateway_token_model$_data; return t1 == null ? _this._gateway_token_model$_data = new A.GatewayTokenEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "GatewayTokenItemResponse", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$GatewayTokenItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._gateway_token_model$_$v = t1; return _$result; } }; A._$GatewayTokenEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayTokenEntity && _this.token === other.token && _this.customerReference === other.customerReference && _this.companyGatewayId === other.companyGatewayId && _this.gatewayTypeId === other.gatewayTypeId && _this.isDefault === other.isDefault && _this.meta.$eq(0, other.meta) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._gateway_token_model$__hashCode; if (t1 == null) { t1 = _this.meta; t1 = _this._gateway_token_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.token)), B.JSString_methods.get$hashCode(_this.customerReference)), B.JSString_methods.get$hashCode(_this.companyGatewayId)), B.JSString_methods.get$hashCode(_this.gatewayTypeId)), B.JSBool_methods.get$hashCode(_this.isDefault)), t1.get$hashCode(t1)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))); } return t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "customerReference", _this.customerReference); t2.add$2(t1, "companyGatewayId", _this.companyGatewayId); t2.add$2(t1, "gatewayTypeId", _this.gatewayTypeId); t2.add$2(t1, "isDefault", _this.isDefault); t2.add$2(t1, "meta", _this.meta); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$token() { return this.token; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.GatewayTokenEntityBuilder.prototype = { get$token() { return this.get$_gateway_token_model$_$this()._gateway_token_model$_token; }, get$meta() { var t1 = this.get$_gateway_token_model$_$this(), t2 = t1._meta; return t2 == null ? t1._meta = new A.GatewayTokenMetaEntityBuilder() : t2; }, get$id(_) { return this.get$_gateway_token_model$_$this()._gateway_token_model$_id; }, get$_gateway_token_model$_$this() { var t1, t2, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { _this._gateway_token_model$_token = $$v.token; _this._customerReference = $$v.customerReference; _this._gateway_token_model$_companyGatewayId = $$v.companyGatewayId; _this._gatewayTypeId = $$v.gatewayTypeId; _this._gateway_token_model$_isDefault = $$v.isDefault; t1 = $$v.meta; t2 = new A.GatewayTokenMetaEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._gateway_token_model$_$v = t1; _this._meta = t2; _this._gateway_token_model$_isChanged = $$v.isChanged; _this._gateway_token_model$_createdAt = $$v.createdAt; _this._gateway_token_model$_updatedAt = $$v.updatedAt; _this._gateway_token_model$_archivedAt = $$v.archivedAt; _this._gateway_token_model$_isDeleted = $$v.isDeleted; _this._gateway_token_model$_createdUserId = $$v.createdUserId; _this._gateway_token_model$_assignedUserId = $$v.assignedUserId; _this._gateway_token_model$_id = $$v.id; _this._gateway_token_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, exception, _this = this, _s18_ = "GatewayTokenEntity", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_token; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "token")); t2 = _this.get$_gateway_token_model$_$this()._customerReference; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "customerReference")); t3 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_companyGatewayId; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "companyGatewayId")); t4 = _this.get$_gateway_token_model$_$this()._gatewayTypeId; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "gatewayTypeId")); t5 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isDefault; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "isDefault")); t6 = _this.get$meta().build$0(0); t7 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isChanged; t8 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_createdAt; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "createdAt")); t9 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_updatedAt; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "updatedAt")); t10 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_archivedAt; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "archivedAt")); t11 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isDeleted; t12 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_createdUserId; t13 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_assignedUserId; t14 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_id; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "id")); _$result0 = new A._$GatewayTokenEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "meta"; _this.get$meta().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._gateway_token_model$_$v = t1; return _$result; } }; A._$GatewayTokenMetaEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayTokenMetaEntity && _this.brand == other.brand && _this.last4 == other.last4 && _this.type == other.type && _this.expMonth == other.expMonth && _this.expYear == other.expYear; }, get$hashCode(_) { var _this = this, t1 = _this._gateway_token_model$__hashCode; return t1 == null ? _this._gateway_token_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.brand)), J.get$hashCode$(_this.last4)), J.get$hashCode$(_this.type)), J.get$hashCode$(_this.expMonth)), J.get$hashCode$(_this.expYear))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenMetaEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "brand", _this.brand); t2.add$2(t1, "last4", _this.last4); t2.add$2(t1, "type", _this.type); t2.add$2(t1, "expMonth", _this.expMonth); t2.add$2(t1, "expYear", _this.expYear); return t2.toString$0(t1); } }; A.GatewayTokenMetaEntityBuilder.prototype = { get$_gateway_token_model$_$this() { var _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { _this._brand = $$v.brand; _this._last4 = $$v.last4; _this._gateway_token_model$_type = $$v.type; _this._expMonth = $$v.expMonth; _this._expYear = $$v.expYear; _this._gateway_token_model$_$v = null; } return _this; }, build$0(_) { var _this = this, _$result = _this._gateway_token_model$_$v; if (_$result == null) _$result = new A._$GatewayTokenMetaEntity(_this.get$_gateway_token_model$_$this()._brand, _this.get$_gateway_token_model$_$this()._last4, _this.get$_gateway_token_model$_$this()._gateway_token_model$_type, _this.get$_gateway_token_model$_$this()._expMonth, _this.get$_gateway_token_model$_$this()._expYear); A.ArgumentError_checkNotNull(_$result, "other"); return _this._gateway_token_model$_$v = _$result; } }; A._GatewayTokenEntity_Object_BaseEntity.prototype = {}; A._GatewayTokenEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.GroupListResponse.prototype = {}; A.GroupItemResponse.prototype = {}; A.GroupEntity.prototype = { get$entityType() { return B.EntityType_group; }, get$listDisplayName() { return this.name; }, get$hasCurrency() { var t1 = this.settings.currencyId; return t1 != null && t1.length !== 0; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_edit); if (userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_settings); if (userCompany.can$2(B.UserPermission_create, B.EntityType_client)) actions.push(B.EntityAction_newClient); } if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A._$GroupListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_EOZ)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.GroupListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_GroupEntity, t3 = type$.ListBuilder_legacy_GroupEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._group_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._group_model$_data = t6; result._group_model$_$v = null; } t4 = result._group_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._group_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EOZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_MUw0; }, get$wireName() { return "GroupListResponse"; } }; A._$GroupItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Iiu)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, t8, result = new A.GroupItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GroupEntity, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._group_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new A.GroupEntityBuilder(); t6 = t5.get$_group_model$_$this(); t7 = t6._documents; if (t7 == null) { t7 = new A.ListBuilder(t3); t7.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t6._documents = t7; t6 = t7; } else t6 = t7; t7 = A.BuiltList_BuiltList$from(B.List_empty, t2); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = A.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } t5._group_model$_$v = t4; result._group_model$_data = t5; result._group_model$_$v = null; } t4 = result._group_model$_data; if (t4 == null) { t4 = new A.GroupEntityBuilder(); t5 = t4.get$_group_model$_$this(); t6 = t5._documents; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._documents = t6; t5 = t6; } else t5 = t6; t6 = A.BuiltList_BuiltList$from(B.List_empty, t2); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } result._group_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iiu)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull("other")); t4._group_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_SLW; }, get$wireName() { return "GroupItemResponse"; } }; A._$GroupEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "settings", serializers.serialize$2$specifiedType(object.settings, B.FullType_Iqz0), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity, t4 = type$.legacy_SettingsEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_group_model$_$this()._group_model$_name = t5; break; case "settings": t5 = result.get$_group_model$_$this(); t6 = t5._settings; t5 = t6 == null ? t5._settings = new A.SettingsEntityBuilder() : t6; t6 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz0)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._settings_model$_$v = t6; break; case "documents": t5 = result.get$_group_model$_$this(); t6 = t5._documents; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._documents = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "isChanged": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_group_model$_$this()._group_model$_isChanged = t5; break; case "created_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_group_model$_$this()._createdAt = t5; break; case "updated_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_group_model$_$this()._group_model$_updatedAt = t5; break; case "archived_at": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_group_model$_$this()._archivedAt = t5; break; case "is_deleted": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_group_model$_$this()._isDeleted = t5; break; case "user_id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_group_model$_$this()._createdUserId = t5; break; case "assigned_user_id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_group_model$_$this()._assignedUserId = t5; break; case "id": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_group_model$_$this()._id = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wIq; }, get$wireName() { return "GroupEntity"; } }; A._$GroupListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.GroupListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._group_model$__hashCode; return t1 == null ? this._group_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.GroupListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._group_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._group_model$_$v = null; } t1 = _this._group_model$_data; return t1 == null ? _this._group_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GroupEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "GroupListResponse", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$GroupListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._group_model$_$v = t1; return _$result; } }; A._$GroupItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.GroupItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._group_model$__hashCode; return t1 == null ? this._group_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.GroupItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._group_model$_$v = t1; _this._group_model$_data = t2; _this._group_model$_$v = null; } t1 = _this._group_model$_data; if (t1 == null) { t1 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t1); _this._group_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "GroupItemResponse", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$GroupItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._group_model$_$v = t1; return _$result; } }; A._$GroupEntity.prototype = { rebuild$1(updates) { var t1 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._group_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GroupEntity && _this.name === other.name && J.$eq$(_this.settings, other.settings) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._group_model$__hashCode; return t1 == null ? _this._group_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.settings)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.GroupEntityBuilder.prototype = { get$name(_) { return this.get$_group_model$_$this()._group_model$_name; }, get$settings() { var t1 = this.get$_group_model$_$this(), t2 = t1._settings; return t2 == null ? t1._settings = new A.SettingsEntityBuilder() : t2; }, get$documents() { var t1 = this.get$_group_model$_$this(), t2 = t1._documents; return t2 == null ? t1._documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_group_model$_$this()._id; }, get$_group_model$_$this() { var t1, t2, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { _this._group_model$_name = $$v.name; t1 = $$v.settings; t1.toString; t2 = new A.SettingsEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._settings_model$_$v = t1; _this._settings = t2; t2 = $$v.documents; t2.toString; _this._documents = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._group_model$_isChanged = $$v.isChanged; _this._createdAt = $$v.createdAt; _this._group_model$_updatedAt = $$v.updatedAt; _this._archivedAt = $$v.archivedAt; _this._isDeleted = $$v.isDeleted; _this._createdUserId = $$v.createdUserId; _this._assignedUserId = $$v.assignedUserId; _this._id = $$v.id; _this._group_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _s11_ = "GroupEntity", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$_group_model$_$this()._group_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "name")); t2 = _this.get$settings().build$0(0); t3 = _this.get$documents().build$0(0); t4 = _this.get$_group_model$_$this()._group_model$_isChanged; t5 = _this.get$_group_model$_$this()._createdAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "createdAt")); t6 = _this.get$_group_model$_$this()._group_model$_updatedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "updatedAt")); t7 = _this.get$_group_model$_$this()._archivedAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "archivedAt")); t8 = _this.get$_group_model$_$this()._isDeleted; t9 = _this.get$_group_model$_$this()._createdUserId; t10 = _this.get$_group_model$_$this()._assignedUserId; t11 = _this.get$_group_model$_$this()._id; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "id")); _$result0 = A._$GroupEntity$_(t7, t10, t5, t9, t3, t11, t4, t8, t1, t2, t6); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._group_model$_$v = t1; return _$result; } }; A._GroupEntity_Object_BaseEntity.prototype = {}; A._GroupEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.HealthCheckResponse.prototype = {}; A.HealthCheckPHPResponse.prototype = {}; A._$HealthCheckResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["system_health", serializers.serialize$2$specifiedType(object.systemHealth, B.FullType_MtR), "php_version", serializers.serialize$2$specifiedType(object.phpVersion, B.FullType_uRN), "env_writable", serializers.serialize$2$specifiedType(object.envWritable, B.FullType_MtR), "simple_db_check", serializers.serialize$2$specifiedType(object.dbCheck, B.FullType_MtR), "cache_enabled", serializers.serialize$2$specifiedType(object.cacheEnabled, B.FullType_MtR), "phantom_enabled", serializers.serialize$2$specifiedType(object.phantomEnabled, B.FullType_MtR), "open_basedir", serializers.serialize$2$specifiedType(object.openBasedir, B.FullType_MtR), "file_permissions", serializers.serialize$2$specifiedType(object.filePermissions, B.FullType_h8g), "exec", serializers.serialize$2$specifiedType(object.execEnabled, B.FullType_MtR), "mail_mailer", serializers.serialize$2$specifiedType(object.emailDriver, B.FullType_h8g), "jobs_pending", serializers.serialize$2$specifiedType(object.pendingJobs, B.FullType_kjq), "pdf_engine", serializers.serialize$2$specifiedType(object.pdfEngine, B.FullType_h8g), "trailing_slash", serializers.serialize$2$specifiedType(object.trailingSlash, B.FullType_MtR), "queue", serializers.serialize$2$specifiedType(object.queue, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.HealthCheckResponseBuilder(); result.get$_health_check_model$_$this()._trailingSlash = false; result.get$_health_check_model$_$this()._filePermissions = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_HealthCheckPHPResponse; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "system_health": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._systemHealth = t2; break; case "php_version": t2 = result.get$_health_check_model$_$this(); t3 = t2._phpVersion; t2 = t3 == null ? t2._phpVersion = new A.HealthCheckPHPResponseBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_uRN)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._health_check_model$_$v = t3; break; case "env_writable": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._envWritable = t2; break; case "simple_db_check": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._dbCheck = t2; break; case "cache_enabled": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._cacheEnabled = t2; break; case "phantom_enabled": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._phantomEnabled = t2; break; case "open_basedir": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._openBasedir = t2; break; case "file_permissions": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._filePermissions = t2; break; case "exec": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._execEnabled = t2; break; case "mail_mailer": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._emailDriver = t2; break; case "jobs_pending": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_health_check_model$_$this()._pendingJobs = t2; break; case "pdf_engine": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._pdfEngine = t2; break; case "trailing_slash": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._trailingSlash = t2; break; case "queue": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._health_check_model$_queue = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_woD; }, get$wireName() { return "HealthCheckResponse"; } }; A._$HealthCheckPHPResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["minimum_php_version", serializers.serialize$2$specifiedType(object.minimumPHPVersion, B.FullType_h8g), "current_php_version", serializers.serialize$2$specifiedType(object.currentPHPVersion, B.FullType_h8g), "current_php_cli_version", serializers.serialize$2$specifiedType(object.currentPHPCLIVersion, B.FullType_h8g), "is_okay", serializers.serialize$2$specifiedType(object.isOkay, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.HealthCheckPHPResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "minimum_php_version": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._minimumPHPVersion = t1; break; case "current_php_version": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._currentPHPVersion = t1; break; case "current_php_cli_version": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_health_check_model$_$this()._currentPHPCLIVersion = t1; break; case "is_okay": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_health_check_model$_$this()._isOkay = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_JQT; }, get$wireName() { return "HealthCheckPHPResponse"; } }; A._$HealthCheckResponse.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.HealthCheckResponse && _this.systemHealth === other.systemHealth && _this.phpVersion.$eq(0, other.phpVersion) && _this.envWritable === other.envWritable && _this.dbCheck === other.dbCheck && _this.cacheEnabled === other.cacheEnabled && _this.phantomEnabled === other.phantomEnabled && _this.openBasedir === other.openBasedir && _this.filePermissions === other.filePermissions && _this.execEnabled === other.execEnabled && _this.emailDriver === other.emailDriver && _this.pendingJobs === other.pendingJobs && _this.pdfEngine === other.pdfEngine && _this.trailingSlash === other.trailingSlash && _this.queue === other.queue; }, get$hashCode(_) { var _this = this, t1 = _this._health_check_model$__hashCode; if (t1 == null) { t1 = _this.phpVersion; t1 = _this._health_check_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.systemHealth)), t1.get$hashCode(t1)), B.JSBool_methods.get$hashCode(_this.envWritable)), B.JSBool_methods.get$hashCode(_this.dbCheck)), B.JSBool_methods.get$hashCode(_this.cacheEnabled)), B.JSBool_methods.get$hashCode(_this.phantomEnabled)), B.JSBool_methods.get$hashCode(_this.openBasedir)), B.JSString_methods.get$hashCode(_this.filePermissions)), B.JSBool_methods.get$hashCode(_this.execEnabled)), B.JSString_methods.get$hashCode(_this.emailDriver)), B.JSInt_methods.get$hashCode(_this.pendingJobs)), B.JSString_methods.get$hashCode(_this.pdfEngine)), B.JSBool_methods.get$hashCode(_this.trailingSlash)), B.JSString_methods.get$hashCode(_this.queue))); } return t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("HealthCheckResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "systemHealth", _this.systemHealth); t2.add$2(t1, "phpVersion", _this.phpVersion); t2.add$2(t1, "envWritable", _this.envWritable); t2.add$2(t1, "dbCheck", _this.dbCheck); t2.add$2(t1, "cacheEnabled", _this.cacheEnabled); t2.add$2(t1, "phantomEnabled", _this.phantomEnabled); t2.add$2(t1, "openBasedir", _this.openBasedir); t2.add$2(t1, "filePermissions", _this.filePermissions); t2.add$2(t1, "execEnabled", _this.execEnabled); t2.add$2(t1, "emailDriver", _this.emailDriver); t2.add$2(t1, "pendingJobs", _this.pendingJobs); t2.add$2(t1, "pdfEngine", _this.pdfEngine); t2.add$2(t1, "trailingSlash", _this.trailingSlash); t2.add$2(t1, "queue", _this.queue); return t2.toString$0(t1); } }; A.HealthCheckResponseBuilder.prototype = { get$phpVersion() { var t1 = this.get$_health_check_model$_$this(), t2 = t1._phpVersion; return t2 == null ? t1._phpVersion = new A.HealthCheckPHPResponseBuilder() : t2; }, get$_health_check_model$_$this() { var t1, t2, _this = this, $$v = _this._health_check_model$_$v; if ($$v != null) { _this._systemHealth = $$v.systemHealth; t1 = $$v.phpVersion; t2 = new A.HealthCheckPHPResponseBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._health_check_model$_$v = t1; _this._phpVersion = t2; _this._envWritable = $$v.envWritable; _this._dbCheck = $$v.dbCheck; _this._cacheEnabled = $$v.cacheEnabled; _this._phantomEnabled = $$v.phantomEnabled; _this._openBasedir = $$v.openBasedir; _this._filePermissions = $$v.filePermissions; _this._execEnabled = $$v.execEnabled; _this._emailDriver = $$v.emailDriver; _this._pendingJobs = $$v.pendingJobs; _this._pdfEngine = $$v.pdfEngine; _this._trailingSlash = $$v.trailingSlash; _this._health_check_model$_queue = $$v.queue; _this._health_check_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, exception, _this = this, _s19_ = "HealthCheckResponse", _$result = null; try { _$result0 = _this._health_check_model$_$v; if (_$result0 == null) { t1 = _this.get$_health_check_model$_$this()._systemHealth; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "systemHealth")); t2 = _this.get$phpVersion().build$0(0); t3 = _this.get$_health_check_model$_$this()._envWritable; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "envWritable")); t4 = _this.get$_health_check_model$_$this()._dbCheck; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "dbCheck")); t5 = _this.get$_health_check_model$_$this()._cacheEnabled; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "cacheEnabled")); t6 = _this.get$_health_check_model$_$this()._phantomEnabled; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "phantomEnabled")); t7 = _this.get$_health_check_model$_$this()._openBasedir; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "openBasedir")); t8 = _this.get$_health_check_model$_$this()._filePermissions; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "filePermissions")); t9 = _this.get$_health_check_model$_$this()._execEnabled; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "execEnabled")); t10 = _this.get$_health_check_model$_$this()._emailDriver; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "emailDriver")); t11 = _this.get$_health_check_model$_$this()._pendingJobs; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "pendingJobs")); t12 = _this.get$_health_check_model$_$this()._pdfEngine; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "pdfEngine")); t13 = _this.get$_health_check_model$_$this()._trailingSlash; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "trailingSlash")); t14 = _this.get$_health_check_model$_$this()._health_check_model$_queue; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "queue")); _$result0 = new A._$HealthCheckResponse(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "phpVersion"; _this.get$phpVersion().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._health_check_model$_$v = t1; return _$result; } }; A._$HealthCheckPHPResponse.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.HealthCheckPHPResponse && _this.minimumPHPVersion === other.minimumPHPVersion && _this.currentPHPVersion === other.currentPHPVersion && _this.currentPHPCLIVersion === other.currentPHPCLIVersion && _this.isOkay === other.isOkay; }, get$hashCode(_) { var _this = this, t1 = _this._health_check_model$__hashCode; return t1 == null ? _this._health_check_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.minimumPHPVersion)), B.JSString_methods.get$hashCode(_this.currentPHPVersion)), B.JSString_methods.get$hashCode(_this.currentPHPCLIVersion)), B.JSBool_methods.get$hashCode(_this.isOkay))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("HealthCheckPHPResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "minimumPHPVersion", _this.minimumPHPVersion); t2.add$2(t1, "currentPHPVersion", _this.currentPHPVersion); t2.add$2(t1, "currentPHPCLIVersion", _this.currentPHPCLIVersion); t2.add$2(t1, "isOkay", _this.isOkay); return t2.toString$0(t1); } }; A.HealthCheckPHPResponseBuilder.prototype = { get$_health_check_model$_$this() { var _this = this, $$v = _this._health_check_model$_$v; if ($$v != null) { _this._minimumPHPVersion = $$v.minimumPHPVersion; _this._currentPHPVersion = $$v.currentPHPVersion; _this._currentPHPCLIVersion = $$v.currentPHPCLIVersion; _this._isOkay = $$v.isOkay; _this._health_check_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, _this = this, _s22_ = "HealthCheckPHPResponse", _$result = _this._health_check_model$_$v; if (_$result == null) { t1 = _this.get$_health_check_model$_$this()._minimumPHPVersion; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "minimumPHPVersion")); t2 = _this.get$_health_check_model$_$this()._currentPHPVersion; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "currentPHPVersion")); t3 = _this.get$_health_check_model$_$this()._currentPHPCLIVersion; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "currentPHPCLIVersion")); t4 = _this.get$_health_check_model$_$this()._isOkay; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "isOkay")); _$result = new A._$HealthCheckPHPResponse(t1, t2, t3, t4); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._health_check_model$_$v = _$result; } }; A.PreImportResponse.prototype = {}; A.PreImportResponseEntityDetails.prototype = {}; A.ImportRequest.prototype = {}; A.ImportRequestMapping.prototype = {}; A.ImportType.prototype = { get$uploadParts() { switch (this) { case B.ImportType_json: var t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["json", "json"], t1, t1); case B.ImportType_csv: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "invoices", "payment", "payments", "product", "products", "vendor", "vendors", "expense", "expenses"], t1, t1); case B.ImportType_freshbooks: case B.ImportType_invoicely: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "invoices"], t1, t1); case B.ImportType_waveaccounting: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "accounting"], t1, t1); case B.ImportType_zoho: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["client", "contacts", "invoice", "invoices"], t1, t1); case B.ImportType_invoice2go: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["invoice", "invoices"], t1, t1); default: t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } } }; A.ExportType.prototype = {}; A._$PreImportResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["hash", serializers.serialize$2$specifiedType(object.hash, B.FullType_h8g), "mappings", serializers.serialize$2$specifiedType(object.mappings, B.FullType_blF)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.PreImportResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_PreImportResponseEntityDetails; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "hash": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_import_model$_$this()._import_model$_hash = t2; break; case "mappings": t2 = result.get$_import_model$_$this(); t3 = t2._mappings; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._mappings = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_blF)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_vx7; }, get$wireName() { return "PreImportResponse"; } }; A._$PreImportResponseEntityDetailsSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["available", serializers.serialize$2$specifiedType(object.available, B.FullType_6m4), "headers", serializers.serialize$2$specifiedType(object.headers, B.FullType_qwt)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, key, value, t6, t7, t8, result = new A.PreImportResponseEntityDetailsBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_BuiltList_legacy_String, t3 = type$.ListBuilder_legacy_BuiltList_legacy_String, t4 = type$.legacy_String, t5 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "available": t6 = result.get$_import_model$_$this(); t7 = t6._available; if (t7 == null) { t7 = new A.ListBuilder(t5); t7.__ListBuilder__list = A.List_List$from(B.List_empty, true, t4); t6._available = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = A.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; case "headers": t6 = result.get$_import_model$_$this(); t7 = t6._import_model$_headers; if (t7 == null) { t7 = new A.ListBuilder(t3); t7.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t6._import_model$_headers = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qwt)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = A.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_5U9; }, get$wireName() { return "PreImportResponseEntityDetails"; } }; A._$ImportRequestSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["hash", serializers.serialize$2$specifiedType(object.hash, B.FullType_h8g), "import_type", serializers.serialize$2$specifiedType(object.importType, B.FullType_h8g), "skip_header", serializers.serialize$2$specifiedType(object.skipHeader, B.FullType_MtR), "column_map", serializers.serialize$2$specifiedType(object.columnMap, B.FullType_Yup)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.ImportRequestBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_ImportRequestMapping; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "hash": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_import_model$_$this()._import_model$_hash = t2; break; case "import_type": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_import_model$_$this()._importType = t2; break; case "skip_header": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_import_model$_$this()._skipHeader = t2; break; case "column_map": t2 = result.get$_import_model$_$this(); t3 = t2._columnMap; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._columnMap = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_Yup)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yvL; }, get$wireName() { return "ImportRequest"; } }; A._$ImportRequestMappingSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["mapping", serializers.serialize$2$specifiedType(object.mapping, B.FullType_5FV)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ImportRequestMappingBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_int_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "mapping": $$v = result._import_model$_$v; if ($$v != null) { t2 = $$v.mapping; t2.toString; t3 = t2.$ti; t3._eval$1("_BuiltMap<1,2>")._as(t2); result._mapping = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MapBuilder<1,2>")); result._import_model$_$v = null; } t2 = result._mapping; if (t2 == null) { t2 = new A.MapBuilder(null, $, null, t1); t2.replace$1(0, B.Map_empty0); result._mapping = t2; } t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_5FV)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_gg4; }, get$wireName() { return "ImportRequestMapping"; } }; A._$PreImportResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PreImportResponse && this.hash === other.hash && J.$eq$(this.mappings, other.mappings); }, get$hashCode(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.hash)), J.get$hashCode$(_this.mappings))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PreImportResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "hash", this.hash); t2.add$2(t1, "mappings", this.mappings); return t2.toString$0(t1); } }; A.PreImportResponseBuilder.prototype = { get$mappings() { var t1 = this.get$_import_model$_$this(), t2 = t1._mappings; return t2 == null ? t1._mappings = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PreImportResponseEntityDetails) : t2; }, get$_import_model$_$this() { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { _this._import_model$_hash = $$v.hash; t1 = $$v.mappings; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._mappings = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s17_ = "PreImportResponse", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$_import_model$_$this()._import_model$_hash; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "hash")); t2 = _this.get$mappings().build$0(0); _$result0 = new A._$PreImportResponse(t1, t2); if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "mappings")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "mappings"; _this.get$mappings().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._import_model$_$v = t1; return _$result; } }; A._$PreImportResponseEntityDetails.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PreImportResponseEntityDetails && J.$eq$(this.available, other.available) && J.$eq$(this.headers, other.headers); }, get$hashCode(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.available)), J.get$hashCode$(_this.headers))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PreImportResponseEntityDetails"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "available", this.available); t2.add$2(t1, "headers", this.headers); return t2.toString$0(t1); } }; A.PreImportResponseEntityDetailsBuilder.prototype = { get$available(_) { var t1 = this.get$_import_model$_$this(), t2 = t1._available; return t2 == null ? t1._available = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$headers(_) { var t1 = this.get$_import_model$_$this(), t2 = t1._import_model$_headers; return t2 == null ? t1._import_model$_headers = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_BuiltList_legacy_String) : t2; }, get$_import_model$_$this() { var t1, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { t1 = $$v.available; t1.toString; _this._available = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.headers; t1.toString; _this._import_model$_headers = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._import_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s30_ = "PreImportResponseEntityDetails", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$available(_this).build$0(0); t2 = _this.get$headers(_this).build$0(0); _$result0 = new A._$PreImportResponseEntityDetails(t1, t2); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s30_, "available")); if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s30_, "headers")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "available"; _this.get$available(_this).build$0(0); _$failedField = "headers"; _this.get$headers(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s30_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._import_model$_$v = t1; return _$result; } }; A._$ImportRequest.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ImportRequest && _this.hash === other.hash && _this.importType === other.importType && _this.skipHeader == other.skipHeader && J.$eq$(_this.columnMap, other.columnMap); }, get$hashCode(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.hash)), B.JSString_methods.get$hashCode(_this.importType)), J.get$hashCode$(_this.skipHeader)), J.get$hashCode$(_this.columnMap))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ImportRequest"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "hash", _this.hash); t2.add$2(t1, "importType", _this.importType); t2.add$2(t1, "skipHeader", _this.skipHeader); t2.add$2(t1, "columnMap", _this.columnMap); return t2.toString$0(t1); } }; A.ImportRequestBuilder.prototype = { get$columnMap() { var t1 = this.get$_import_model$_$this(), t2 = t1._columnMap; return t2 == null ? t1._columnMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ImportRequestMapping) : t2; }, get$_import_model$_$this() { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { _this._import_model$_hash = $$v.hash; _this._importType = $$v.importType; _this._skipHeader = $$v.skipHeader; t1 = $$v.columnMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._columnMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, exception, _this = this, _s13_ = "ImportRequest", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$_import_model$_$this()._import_model$_hash; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "hash")); t2 = _this.get$_import_model$_$this()._importType; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "importType")); t3 = _this.get$_import_model$_$this()._skipHeader; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "skipHeader")); _$result0 = A._$ImportRequest$_(_this.get$columnMap().build$0(0), t1, t2, t3); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "columnMap"; _this.get$columnMap().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._import_model$_$v = t1; return _$result; } }; A._$ImportRequestMapping.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ImportRequestMapping && J.$eq$(this.mapping, other.mapping); }, get$hashCode(_) { var t1 = this._import_model$__hashCode; return t1 == null ? this._import_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.mapping))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ImportRequestMapping"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "mapping", this.mapping); return t2.toString$0(t1); } }; A.ImportRequestMappingBuilder.prototype = { get$mapping(_) { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { t1 = $$v.mapping; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._mapping = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } t1 = _this._mapping; return t1 == null ? _this._mapping = A.MapBuilder_MapBuilder(type$.legacy_int, type$.legacy_String) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "ImportRequestMapping", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$mapping(_this).build$0(0); _$result0 = new A._$ImportRequestMapping(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "mapping")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "mapping"; _this.get$mapping(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._import_model$_$v = t1; return _$result; } }; A.InvoiceListResponse.prototype = {}; A.InvoiceItemResponse.prototype = {}; A.InvoiceEntity.prototype = { moveLineItem$2(oldIndex, newIndex) { var t1 = {}, lineItem = this.lineItems._list[oldIndex], invoice = this.rebuild$1(new A.InvoiceEntity_moveLineItem_closure(oldIndex)); t1.invoice = invoice; return t1.invoice = invoice.rebuild$1(new A.InvoiceEntity_moveLineItem_closure0(t1, newIndex, lineItem)); }, recreateInvitations$1(state) { var t2, t3, _this = this, t1 = type$.legacy_InvitationEntity; if (_this.entityType === B.EntityType_purchaseOrder) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].vendorState.$get$1(0, _this.vendorId).contacts._list; return _this.rebuild$1(new A.InvoiceEntity_recreateInvitations_closure(A.BuiltList_BuiltList$of(new A.MappedListIterable(t3, new A.InvoiceEntity_recreateInvitations_closure0(), A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,InvitationEntity*>")), t1))); } else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].clientState.$get$1(0, _this.clientId).contacts._list; return _this.rebuild$1(new A.InvoiceEntity_recreateInvitations_closure1(A.BuiltList_BuiltList$of(new A.MappedListIterable(t3, new A.InvoiceEntity_recreateInvitations_closure2(), A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,InvitationEntity*>")), t1))); } }, get$clone(_) { return this.rebuild$1(new A.InvoiceEntity_clone_closure(this)); }, applyClient$2(state, client) { var t1, t2, _null = null; if (client == null) client = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t1 = state.staticState.currencyMap; t2 = state.uiState.selectedCompanyIndex; t2 = state.userCompanyStates._list[t2].userCompany.company.settings.currencyId; if (t2 == null) t2 = "1"; return this.rebuild$1(new A.InvoiceEntity_applyClient_closure(this, A.getExchangeRate(t1, t2, client.settings.currencyId), state, A.getClientSettings(state, client))); }, applyVendor$2(state, vendor) { var t1, t2, t3, t4; if (vendor == null) vendor = A.VendorEntity_VendorEntity(null, null, null); t1 = state.staticState.currencyMap; t2 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list; t4 = t3[t2].userCompany.company.settings.currencyId; if (t4 == null) t4 = "1"; return this.rebuild$1(new A.InvoiceEntity_applyVendor_closure(this, A.getExchangeRate(t1, t4, vendor.currencyId), state, t3[t2].userCompany.company.settings)); }, get$netBalance() { var t2, t1 = this.amount; if (t1 === 0) return 0; t2 = this.balance; return t2 - this.taxAmount * t2 / t1; }, get$netBalanceOrAmount() { var t2, t3, _this = this, t1 = _this.amount; if (t1 === 0) return 0; t2 = _this.statusId !== "1"; t3 = t2 ? _this.balance : t1; t2 = t2 ? _this.balance : t1; return t3 - _this.taxAmount * t2 / t1; }, get$history(_) { var t1 = this.activities._list, t2 = A._arrayInstanceType(t1), t3 = t2._eval$1("MappedIterable<1,InvoiceHistoryEntity*>"); return A.List_List$of(new A.MappedIterable(new A.WhereIterable(t1, new A.InvoiceEntity_history_closure(), t2._eval$1("WhereIterable<1>")), new A.InvoiceEntity_history_closure0(), t3), true, t3._eval$1("Iterable.E")); }, get$isStale() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$hasTasks() { return B.JSArray_methods.any$1(this.lineItems._list, new A.InvoiceEntity_hasTasks_closure()); }, get$hasProducts() { return B.JSArray_methods.any$1(this.lineItems._list, new A.InvoiceEntity_hasProducts_closure()); }, get$hasExpenses() { return B.JSArray_methods.any$1(this.lineItems._list, new A.InvoiceEntity_hasExpenses_closure()); }, get$isEditable() { if (this.isDeleted) return false; if (this.entityType === B.EntityType_invoice) if (this.get$isCancelledOrReversed()) return false; return true; }, get$age() { var t1, t2, dueDate, ageInDays; if (this.get$isPastDue()) { t1 = Date.now(); t2 = this.partialDueDate; dueDate = A.DateTime_tryParse(t2.length === 0 ? this.dueDate : t2); ageInDays = dueDate != null ? B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, t1 - dueDate._value, 0, 0)._duration, 864e8) : 0; } else ageInDays = 0; return ageInDays; }, compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap(_, clientMap, invoice, recurringPrefix, sortAscending, sortField, userMap, vendorMap) { var clientB, vendorA, vendorB, invoiceANumber, invoiceBNumber, response, stateA, stateB, userA, userB, _null = null, _s10_ = "ZZZZZZZZZZ", _s8_ = "archived", invoiceA = sortAscending ? this : invoice, invoiceB = sortAscending ? invoice : this, t1 = invoiceA.clientId, t2 = clientMap._map$_map, clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, invoiceB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); t1 = invoiceA.vendorId; t2 = vendorMap._map$_map; vendorA = t2.$index(0, t1); if (vendorA == null) vendorA = A.VendorEntity_VendorEntity(_null, _null, _null); vendorB = t2.$index(0, invoiceB.vendorId); if (vendorB == null) vendorB = A.VendorEntity_VendorEntity(_null, _null, _null); switch (sortField) { case "number": invoiceANumber = invoiceA.number; if (invoiceANumber.length === 0) invoiceANumber = _s10_; invoiceBNumber = invoiceB.number; if (invoiceBNumber.length === 0) invoiceBNumber = _s10_; t1 = recurringPrefix.length !== 0; if (t1 && B.JSString_methods.startsWith$1(invoiceANumber, recurringPrefix)) invoiceANumber = B.JSString_methods.replaceFirst$2(invoiceANumber, recurringPrefix, ""); if (t1 && B.JSString_methods.startsWith$1(invoiceBNumber, recurringPrefix)) invoiceBNumber = B.JSString_methods.replaceFirst$2(invoiceBNumber, recurringPrefix, ""); response = A.compareNatural(invoiceANumber.toLowerCase(), invoiceBNumber.toLowerCase()); break; case "amount": response = B.JSNumber_methods.compareTo$1(invoiceA.amount, invoiceB.amount); break; case "created_at": response = B.JSInt_methods.compareTo$1(invoiceA.createdAt, invoiceB.createdAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(invoiceA.updatedAt, invoiceB.updatedAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(invoiceA.archivedAt, invoiceB.archivedAt); break; case "date": response = J.compareTo$1$ns(invoiceA.date, invoiceB.date); break; case "last_sent_date": response = B.JSString_methods.compareTo$1(invoiceA.lastSentDate, invoiceB.lastSentDate); break; case "reminder1_sent": response = J.compareTo$1$ns(invoiceA.reminder1Sent, invoiceB.reminder1Sent); break; case "reminder2_sent": response = J.compareTo$1$ns(invoiceA.reminder2Sent, invoiceB.reminder2Sent); break; case "reminder3_sent": response = J.compareTo$1$ns(invoiceA.reminder3Sent, invoiceB.reminder3Sent); break; case "reminder_last_sent": response = J.compareTo$1$ns(invoiceA.reminderLastSent, invoiceB.reminderLastSent); break; case "balance": t1 = invoiceA.statusId !== "1" ? invoiceA.balance : invoiceA.amount; response = B.JSNumber_methods.compareTo$1(t1, invoiceB.statusId !== "1" ? invoiceB.balance : invoiceB.amount); break; case "discount": response = B.JSNumber_methods.compareTo$1(invoiceA.discount, invoiceB.discount); break; case "documents": response = B.JSInt_methods.compareTo$1(invoiceA.documents._list.length, invoiceB.documents._list.length); break; case "po_number": response = B.JSString_methods.compareTo$1(invoiceA.poNumber, invoiceB.poNumber); break; case "status": response = B.JSString_methods.compareTo$1(invoiceA.get$calculatedStatusId(), invoiceB.get$calculatedStatusId()); break; case "entity_state": if (!invoiceA.get$isArchived() && !invoiceA.isDeleted) t1 = "active"; else t1 = invoiceA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!invoiceB.get$isArchived() && !invoiceB.isDeleted) t1 = "active"; else t1 = invoiceB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "due_date": case "valid_until": response = B.JSString_methods.compareTo$1(invoiceA.dueDate, invoiceB.dueDate); break; case "next_send_date": response = J.compareTo$1$ns(invoiceA.nextSendDate, invoiceB.nextSendDate); break; case "assigned_to": t1 = invoiceA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, invoiceB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = invoiceA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, invoiceB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "public_notes": response = B.JSString_methods.compareTo$1(invoiceA.publicNotes.toLowerCase(), invoiceB.publicNotes.toLowerCase()); break; case "private_notes": response = B.JSString_methods.compareTo$1(invoiceA.privateNotes.toLowerCase(), invoiceB.privateNotes.toLowerCase()); break; case "custom1": response = B.JSString_methods.compareTo$1(invoiceA.customValue1.toLowerCase(), invoiceB.customValue1.toLowerCase()); break; case "custom2": response = B.JSString_methods.compareTo$1(invoiceA.customValue2.toLowerCase(), invoiceB.customValue2.toLowerCase()); break; case "custom3": response = B.JSString_methods.compareTo$1(invoiceA.customValue3.toLowerCase(), invoiceB.customValue3.toLowerCase()); break; case "custom4": response = B.JSString_methods.compareTo$1(invoiceA.customValue4.toLowerCase(), invoiceB.customValue4.toLowerCase()); break; case "client": response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.displayName)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.displayName)), 0, _null).toLowerCase()); break; case "is_viewed": response = invoiceB.get$isViewed() ? 1 : -1; break; case "remaining_cycles": response = J.compareTo$1$ns(invoiceA.remainingCycles, invoiceB.remainingCycles); break; case "frequency": response = J.compareTo$1$ns(invoiceA.frequencyId, invoiceB.frequencyId); break; case "auto_bill": response = J.compareTo$1$ns(invoiceA.autoBill, invoiceB.autoBill); break; case "client_city": response = B.JSString_methods.compareTo$1(clientA.city, clientB.city); break; case "client_state": response = B.JSString_methods.compareTo$1(clientA.state, clientB.state); break; case "client_postal_code": response = B.JSString_methods.compareTo$1(clientA.postalCode, clientB.postalCode); break; case "client_country": response = B.JSString_methods.compareTo$1(clientA.countryId, clientB.countryId); break; case "partial_due": response = B.JSNumber_methods.compareTo$1(invoiceA.partial, invoiceB.partial); break; case "partial_due_date": response = B.JSString_methods.compareTo$1(invoiceA.partialDueDate, invoiceB.partialDueDate); break; case "vendor": response = B.JSString_methods.compareTo$1(vendorA.name.toLowerCase(), vendorB.name.toLowerCase()); break; default: A.print("## ERROR: sort by invoice." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(invoice.number.toLowerCase(), this.number.toLowerCase()) : response; }, compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap($receiver, clientMap, invoice, sortAscending, sortField, userMap, vendorMap) { return this.compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap($receiver, clientMap, invoice, "", sortAscending, sortField, userMap, vendorMap); }, matchesStatuses$1(statuses) { var t3, t4, t5, t6, t7, t8, t9, _this = this, t1 = statuses._list, t2 = t1.length; if (t2 === 0) return true; for (t1 = new J.ArrayIterator(t1, t2, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = _this.statusId, t3 = t2 !== "1", t4 = _this.entityType, t5 = t4 === B.EntityType_invoice, t6 = !t5, t4 = t4 === B.EntityType_purchaseOrder, t7 = t2 === "5", t8 = t2 === "6"; t1.moveNext$0();) { t9 = t1.__interceptors$_current; if (t9.get$id(t9) === t2 || t9.get$id(t9) === _this.get$calculatedStatusId()) return true; else { if (t9.get$id(t9) === "-2") if (_this.get$isUnpaid()) if (t3) { if (!t6 || t4) { if (!(t5 && t7)) t9 = t4 && t7; else t9 = true; if (!t9) t9 = t5 && t8; else t9 = true; } else t9 = false; t9 = !t9; } else t9 = false; else t9 = false; else t9 = false; if (t9) return true; } } return false; }, matchesFilter$1(filter) { var t1, t2, i, lineItem, _this = this; for (t1 = _this.lineItems._list, t2 = type$.JSArray_legacy_String, i = 0; i < t1.length; ++i) { lineItem = t1[i]; if (A.matchesStrings(A._setArrayType([lineItem.productKey, lineItem.notes, lineItem.customValue1, lineItem.customValue2, lineItem.customValue3, lineItem.customValue4], t2), filter)) return true; } return A.matchesStrings(A._setArrayType([_this.number, _this.poNumber, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], t2), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.poNumber, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var t3, t4, t5, t6, t7, countOtherTypes, _this = this, t1 = type$.JSArray_legacy_EntityAction, actions = A._setArrayType([], t1), t2 = !_this.isDeleted; if (t2) { if (userCompany.canEditEntity$1(_this)) { if (includeEdit && !multiselect) actions.push(B.EntityAction_edit); if (_this.entityType === B.EntityType_recurringInvoice) { t3 = type$.JSArray_legacy_String; t4 = _this.statusId; if (B.JSArray_methods.contains$1(A._setArrayType(["1", "-1"], t3), t4)) actions.push(B.EntityAction_sendNow); if (B.JSArray_methods.contains$1(A._setArrayType(["1", "3", "4"], t3), t4)) actions.push(B.EntityAction_start); else if (B.JSArray_methods.contains$1(A._setArrayType(["-1", "2"], t3), t4)) actions.push(B.EntityAction_stop); } else if (!_this.get$isCancelledOrReversed()) if (multiselect) actions.push(B.EntityAction_bulkSendEmail); else actions.push(B.EntityAction_sendEmail); } if (multiselect) { t3 = _this.entityType; if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3)) actions.push(B.EntityAction_bulkDownload); } else { actions.push(B.EntityAction_viewPdf); t3 = _this.entityType; if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3)) { actions.push(B.EntityAction_printPdf); actions.push(B.EntityAction_download); } } if (userCompany.canEditEntity$1(_this) && !_this.get$isCancelledOrReversed()) { t4 = _this.statusId; t5 = t4 === "1"; if (t5 && !B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3)) actions.push(B.EntityAction_markSent); t6 = t3 === B.EntityType_purchaseOrder; if (t6) { if (_this.expenseId.length === 0) { if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense)) actions.push(B.EntityAction_convertToExpense); } else actions.push(B.EntityAction_viewExpense); if (t4 === "3") actions.push(B.EntityAction_addToInventory); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_payment)) { t7 = t3 === B.EntityType_invoice; if (!(t7 && t4 === "4") && t3 !== B.EntityType_quote && t3 !== B.EntityType_recurringInvoice && !_this.get$isCancelledOrReversed() && t7) B.JSArray_methods.addAll$1(actions, A._setArrayType([B.EntityAction_markPaid, B.EntityAction_newPayment], t1)); else if (t3 === B.EntityType_credit) { t1 = !t5; if ((t1 ? _this.balance : _this.amount) < 0) actions.push(B.EntityAction_markPaid); else if ((t1 ? _this.balance : _this.amount) > 0) actions.push(B.EntityAction_applyCredit); } } if (t3 === B.EntityType_quote) { t1 = _this.invoiceId; if ((t1 == null ? "" : t1).length === 0) { t1 = B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], type$.JSArray_legacy_String), t4); if (!t1) actions.push(B.EntityAction_approve); actions.push(B.EntityAction_convertToInvoice); } else actions.push(B.EntityAction_viewInvoice); } else if (t6) _this.get$isCancelled(); } if (!multiselect) actions.push(B.EntityAction_clientPortal); } if (t2 && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); if (!multiselect && !_this.get$isNew()) { if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) { if (_this.entityType === B.EntityType_invoice) actions.push(B.EntityAction_cloneToInvoice); countOtherTypes = 1; } else countOtherTypes = 0; if (userCompany.can$2(B.UserPermission_create, B.EntityType_quote)) { ++countOtherTypes; if (_this.entityType === B.EntityType_quote) actions.push(B.EntityAction_cloneToQuote); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_credit)) { ++countOtherTypes; if (_this.entityType === B.EntityType_credit) actions.push(B.EntityAction_cloneToCredit); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_recurringInvoice)) { ++countOtherTypes; if (_this.entityType === B.EntityType_recurringInvoice) actions.push(B.EntityAction_cloneToRecurring); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_purchaseOrder)) { ++countOtherTypes; if (_this.entityType === B.EntityType_purchaseOrder) actions.push(B.EntityAction_cloneToPurchaseOrder); } if (countOtherTypes === 2) { if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice) && _this.entityType !== B.EntityType_invoice) actions.push(B.EntityAction_cloneToInvoice); if (userCompany.can$2(B.UserPermission_create, B.EntityType_quote) && _this.entityType !== B.EntityType_quote) actions.push(B.EntityAction_cloneToQuote); if (userCompany.can$2(B.UserPermission_create, B.EntityType_credit) && _this.entityType !== B.EntityType_credit) actions.push(B.EntityAction_cloneToCredit); if (userCompany.can$2(B.UserPermission_create, B.EntityType_recurringInvoice) && _this.entityType !== B.EntityType_recurringInvoice) actions.push(B.EntityAction_cloneToRecurring); } else if (countOtherTypes > 2) actions.push(B.EntityAction_cloneToOther); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); } if (userCompany.canEditEntity$1(_this) && t2 && !_this.get$isCancelledOrReversed()) { t1 = _this.entityType === B.EntityType_invoice; if (t1 && _this.statusId !== "1") { if (!(t1 && _this.statusId === "4")) actions.push(B.EntityAction_cancelInvoice); if (!(t1 && _this.statusId === "4")) t1 = t1 && _this.statusId === "3"; else t1 = true; if (t1 && userCompany.can$2(B.UserPermission_create, B.EntityType_credit)) actions.push(B.EntityAction_reverse); } } B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, applyTax$3$isSecond$isThird(taxRate, isSecond, isThird) { var invoice; if (isThird) invoice = this.rebuild$1(new A.InvoiceEntity_applyTax_closure(taxRate)); else invoice = isSecond ? this.rebuild$1(new A.InvoiceEntity_applyTax_closure0(taxRate)) : this.rebuild$1(new A.InvoiceEntity_applyTax_closure1(taxRate)); return invoice; }, applyTax$1(taxRate) { return this.applyTax$3$isSecond$isThird(taxRate, false, false); }, applyTax$2$isSecond(taxRate, isSecond) { return this.applyTax$3$isSecond$isThird(taxRate, isSecond, false); }, applyTax$2$isThird(taxRate, isThird) { return this.applyTax$3$isSecond$isThird(taxRate, false, isThird); }, get$listDisplayName() { return this.number; }, get$listDisplayAmount() { return this.statusId !== "1" ? this.balance : this.amount; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, get$primaryDate() { var t2, _this = this, t1 = _this.partialDueDate; if (t1.length !== 0 && _this.partial !== 0) return t1; else { t1 = _this.dueDate; if (t1.length !== 0) t2 = !(_this.entityType === B.EntityType_invoice && _this.statusId === "4"); else t2 = false; if (t2) return t1; else return _this.date; } }, isBetween$2(startDate, endDate) { var t1 = this.date; return J.compareTo$1$ns(startDate, t1) <= 0 && J.compareTo$1$ns(endDate, t1) >= 0; }, get$isUnpaid() { var t1 = this.entityType; if (t1 === B.EntityType_quote) { t1 = B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], type$.JSArray_legacy_String), this.statusId); return !t1; } else return !(t1 === B.EntityType_invoice && this.statusId === "4"); }, get$isViewed() { return B.JSArray_methods.any$1(this.invitations._list, new A.InvoiceEntity_isViewed_closure()); }, get$isCancelled() { var t1 = this.entityType; if (!(t1 === B.EntityType_invoice && this.statusId === "5")) t1 = t1 === B.EntityType_purchaseOrder && this.statusId === "5"; else t1 = true; return t1; }, get$isCancelledOrReversed() { var t1 = this.entityType, t2 = t1 === B.EntityType_invoice; if (t2 || t1 === B.EntityType_purchaseOrder) if (!this.get$isCancelled()) t1 = t2 && this.statusId === "6"; else t1 = true; else t1 = false; return t1; }, get$isUpcoming() { var t1, _this = this; if (!_this.get$isArchived() && !_this.isDeleted) t1 = !(_this.entityType === B.EntityType_invoice && _this.statusId === "4") && !_this.get$isPastDue() && _this.statusId !== "1"; else t1 = false; return t1; }, get$calculatedStatusId() { var t3, _this = this, t1 = type$.JSArray_legacy_EntityType, t2 = _this.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t1), t2)) { t3 = _this.statusId; if (t3 !== "1" && _this.remainingCycles === 0) return "4"; else { if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t1), t2)) if (t3 === "2") t1 = _this.lastSentDate.length === 0; else t1 = false; else t1 = false; if (t1) return "-1"; } } else { if (_this.get$isPastDue() && !_this.get$isCancelledOrReversed()) return "-1"; if (_this.get$isViewed()) if (_this.get$isUnpaid()) if (!(t2 === B.EntityType_invoice && _this.statusId === "3")) if (!_this.get$isCancelledOrReversed()) t1 = !(t2 === B.EntityType_quote && B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], type$.JSArray_legacy_String), _this.statusId)); else t1 = false; else t1 = false; else t1 = false; else t1 = false; if (t1) return t2 === B.EntityType_invoice ? "-3" : "-2"; } return _this.statusId; }, get$isPastDue() { var t1, t2, _this = this, date = _this.partial !== 0 && _this.partialDueDate.length !== 0 ? _this.partialDueDate : _this.dueDate; if (date.length === 0 || _this.balance === 0) return false; if (!_this.isDeleted) if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), _this.entityType)) if (_this.statusId !== "1") if (_this.get$isUnpaid()) { t1 = A.DateTime_tryParse(date); t2 = new A.DateTime(Date.now(), false).subtract$1(A.Duration$(1, 0, 0, 0, 0, 0)); t2 = t1._value < t2._value; t1 = t2; } else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, getInvitationForClientContact$1(contact) { return B.JSArray_methods.firstWhere$2$orElse(this.invitations._list, new A.InvoiceEntity_getInvitationForClientContact_closure(contact), new A.InvoiceEntity_getInvitationForClientContact_closure0()); }, getInvitationForVendorContact$1(contact) { return B.JSArray_methods.firstWhere$2$orElse(this.invitations._list, new A.InvoiceEntity_getInvitationForVendorContact_closure(contact), new A.InvoiceEntity_getInvitationForVendorContact_closure0()); }, getTaxes$1(precision) { var t2, invoiceTaxAmount, t3, t4, itemTaxable, t5, t6, itemTaxAmount, t7, _this = this, taxes = A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_Map_of_legacy_String_and_dynamic), taxable = _this.getTaxable$0(), calculateAmount = new A.InvoiceEntity_getTaxes_calculateAmount(_this), t1 = _this.taxName1; if (t1.length !== 0) { t2 = _this.taxRate1; invoiceTaxAmount = calculateAmount.call$2(taxable, t2); t3 = _this.amount; _this._calculateTax$5(taxes, t1, t2, invoiceTaxAmount, t3 * invoiceTaxAmount !== 0 ? _this.paidToDate / t3 * invoiceTaxAmount : 0); } t1 = _this.taxName2; if (t1.length !== 0) { t2 = _this.taxRate2; invoiceTaxAmount = calculateAmount.call$2(taxable, t2); t3 = _this.amount; _this._calculateTax$5(taxes, t1, t2, invoiceTaxAmount, t3 * invoiceTaxAmount !== 0 ? _this.paidToDate / t3 * invoiceTaxAmount : 0); } t1 = _this.taxName3; if (t1.length !== 0) { t2 = _this.taxRate3; invoiceTaxAmount = calculateAmount.call$2(taxable, t2); t3 = _this.amount; _this._calculateTax$5(taxes, t1, t2, invoiceTaxAmount, t3 * invoiceTaxAmount !== 0 ? _this.paidToDate / t3 * invoiceTaxAmount : 0); } for (t1 = _this.lineItems._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = _this.amount, t3 = _this.paidToDate / t2; t1.moveNext$0();) { t4 = t1.__interceptors$_current; itemTaxable = _this.getItemTaxable$3(t4, t2, precision); t5 = t4.taxName1; if (t5.length !== 0) { t6 = t4.taxRate1; itemTaxAmount = calculateAmount.call$2(itemTaxable, t6); t7 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; _this._calculateTax$5(taxes, t5, t6, itemTaxAmount, t7 ? t3 * itemTaxAmount : 0); } t5 = t4.taxName2; if (t5.length !== 0) { t6 = t4.taxRate2; itemTaxAmount = calculateAmount.call$2(itemTaxable, t6); t7 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; _this._calculateTax$5(taxes, t5, t6, itemTaxAmount, t7 ? t3 * itemTaxAmount : 0); } t5 = t4.taxName3; if (t5.length !== 0) { t4 = t4.taxRate3; itemTaxAmount = calculateAmount.call$2(itemTaxable, t4); t6 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; _this._calculateTax$5(taxes, t5, t4, itemTaxAmount, t6 ? t3 * itemTaxAmount : 0); } } if (taxes._length === 0) _this._calculateTax$5(taxes, "", 0, 0, 0); return taxes; }, _calculateTax$5(map, $name, rate, amount, paid) { var key, t1, t2; if (amount == null) return; key = B.JSNumber_methods.toString$0(rate) + " " + $name; map.putIfAbsent$2(0, key, new A.InvoiceEntity__calculateTax_closure($name, rate)); t1 = map.$index(0, key); t2 = J.getInterceptor$asx(t1); t2.$indexSet(t1, "amount", J.$add$ansx(t2.$index(t1, "amount"), amount)); t1 = map.$index(0, key); t2 = J.getInterceptor$asx(t1); t2.$indexSet(t1, "paid", J.$add$ansx(t2.$index(t1, "paid"), paid)); } }; A.InvoiceEntity_InvoiceEntity_closure.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.InvoiceEntity_InvoiceEntity_closure0.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, $signature: 453 }; A.InvoiceEntity_moveLineItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.oldIndex); return b; }, $signature: 6 }; A.InvoiceEntity_moveLineItem_closure0.prototype = { call$1(b) { var t5, t1 = b.get$lineItems(), t2 = this._box_0, t3 = t2.invoice.lineItems, t4 = this.newIndex; t3 = A.List_List$of(new A._BuiltList(B.JSArray_methods.sublist$2(t3._list, 0, t4), A._instanceType(t3)._eval$1("_BuiltList<1>")), true, type$.legacy_InvoiceItemEntity); t3.push(this.lineItem); t2 = t2.invoice.lineItems; t5 = t2._list; B.JSArray_methods.addAll$1(t3, new A._BuiltList(B.JSArray_methods.sublist$2(t5, t4, t5.length), A._instanceType(t2)._eval$1("_BuiltList<1>"))); t1.replace$1(0, t3); b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.InvoiceEntity_recreateInvitations_closure0.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, $signature: 453 }; A.InvoiceEntity_recreateInvitations_closure.prototype = { call$1(b) { b.get$invitations().replace$1(0, this.invitations); return b; }, $signature: 6 }; A.InvoiceEntity_recreateInvitations_closure2.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.InvoiceEntity_recreateInvitations_closure1.prototype = { call$1(b) { b.get$invitations().replace$1(0, this.invitations); return b; }, $signature: 6 }; A.InvoiceEntity_clone_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_invoice_model$_$this()._invoice_model$_id = "" + t1; b.get$_invoice_model$_$this()._invoice_model$_isChanged = false; b.get$_invoice_model$_$this()._invoice_model$_isDeleted = false; b.get$_invoice_model$_$this()._statusId = "1"; b.get$_invoice_model$_$this()._invoice_model$_balance = 0; b.get$_invoice_model$_$this()._amount = 0; b.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; b.get$_invoice_model$_$this()._remainingCycles = -1; b.get$_invoice_model$_$this()._invoiceId = ""; b.get$_invoice_model$_$this()._projectId = ""; b.get$_invoice_model$_$this()._expenseId = ""; b.get$_invoice_model$_$this()._subscriptionId = ""; b.get$_invoice_model$_$this()._invoice_model$_number = ""; t1 = A.convertDateTimeToSqlDate(null); b.get$_invoice_model$_$this()._date = t1; b.get$_invoice_model$_$this()._dueDate = ""; B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); t1 = b.get$lineItems(); t2 = this.$this; t3 = t2.lineItems._list; t4 = A._arrayInstanceType(t3)._eval$1("WhereIterable<1>"); t1.replace$1(0, A.List_List$of(new A.WhereIterable(t3, new A.InvoiceEntity_clone__closure(), t4), true, t4._eval$1("Iterable.E"))); t4 = b.get$invitations(); t2 = t2.invitations._list; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,InvitationEntity*>"); t4.replace$1(0, A.List_List$of(new A.MappedListIterable(t2, new A.InvoiceEntity_clone__closure0(), t3), true, t3._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.InvoiceEntity_clone__closure.prototype = { call$1(lineItem) { return lineItem.typeId !== "3"; }, $signature: 57 }; A.InvoiceEntity_clone__closure0.prototype = { call$1(invitation) { return A.InvitationEntity_InvitationEntity(invitation.clientContactId, invitation.vendorContactId); }, $signature: 1137 }; A.InvoiceEntity_applyClient_closure.prototype = { call$1(b) { var t1, t2, t3, _this = this; b.get$_invoice_model$_$this()._exchangeRate = _this.exchangeRate; t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 1) { t3 = _this.settings.defaultTaxName1; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName1 : _this.$this.taxName1; b.get$_invoice_model$_$this()._taxName1 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 1) { t3 = _this.settings.defaultTaxName1; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxRate1 : _this.$this.taxRate1; b.get$_invoice_model$_$this()._taxRate1 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 2) { t3 = _this.settings.defaultTaxName2; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName2 : _this.$this.taxName2; b.get$_invoice_model$_$this()._taxName2 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 2) { t3 = _this.settings.defaultTaxName2; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxRate2 : _this.$this.taxRate2; b.get$_invoice_model$_$this()._taxRate2 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 3) { t3 = _this.settings.defaultTaxName3; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName3 : _this.$this.taxName3; b.get$_invoice_model$_$this()._taxName3 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 3) { t1 = _this.settings.defaultTaxName3; t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = false; t1 = t1 ? _this.settings.defaultTaxRate3 : _this.$this.taxRate3; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 6 }; A.InvoiceEntity_applyVendor_closure.prototype = { call$1(b) { var t1, t2, t3, _this = this; b.get$_invoice_model$_$this()._exchangeRate = _this.exchangeRate; t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 1) { t3 = _this.settings.defaultTaxName1; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName1 : _this.$this.taxName1; b.get$_invoice_model$_$this()._taxName1 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 1) { t3 = _this.settings.defaultTaxName1; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxRate1 : _this.$this.taxRate1; b.get$_invoice_model$_$this()._taxRate1 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 2) { t3 = _this.settings.defaultTaxName2; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName2 : _this.$this.taxName2; b.get$_invoice_model$_$this()._taxName2 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 2) { t3 = _this.settings.defaultTaxName2; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxRate2 : _this.$this.taxRate2; b.get$_invoice_model$_$this()._taxRate2 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 3) { t3 = _this.settings.defaultTaxName3; t3 = (t3 == null ? "" : t3).length !== 0; } else t3 = false; t3 = t3 ? _this.settings.defaultTaxName3 : _this.$this.taxName3; b.get$_invoice_model$_$this()._taxName3 = t3; if (t1[t2].userCompany.company.numberOfInvoiceTaxRates >= 3) { t1 = _this.settings.defaultTaxName3; t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = false; t1 = t1 ? _this.settings.defaultTaxRate3 : _this.$this.taxRate3; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 6 }; A.InvoiceEntity_history_closure.prototype = { call$1(activity) { var t1 = activity.history; if (t1 != null) { t1 = t1.id; t1 = t1.length !== 0; } else t1 = false; return t1; }, $signature: 450 }; A.InvoiceEntity_history_closure0.prototype = { call$1(activity) { return activity.history; }, $signature: 1135 }; A.InvoiceEntity_hasTasks_closure.prototype = { call$1(item) { return item.typeId === "2"; }, $signature: 57 }; A.InvoiceEntity_hasProducts_closure.prototype = { call$1(item) { return item.typeId !== "2"; }, $signature: 57 }; A.InvoiceEntity_hasExpenses_closure.prototype = { call$1(item) { return item.typeId === "6"; }, $signature: 57 }; A.InvoiceEntity_applyTax_closure.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t1; return b; }, $signature: 6 }; A.InvoiceEntity_applyTax_closure0.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t1; return b; }, $signature: 6 }; A.InvoiceEntity_applyTax_closure1.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t1; return b; }, $signature: 6 }; A.InvoiceEntity_isViewed_closure.prototype = { call$1(invitation) { return invitation.viewedDate.length !== 0; }, $signature: 455 }; A.InvoiceEntity_getInvitationForClientContact_closure.prototype = { call$1(invitation) { return invitation.clientContactId === this.contact.id; }, $signature: 455 }; A.InvoiceEntity_getInvitationForClientContact_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.InvoiceEntity_getInvitationForVendorContact_closure.prototype = { call$1(invitation) { return invitation.vendorContactId === this.contact.id; }, $signature: 455 }; A.InvoiceEntity_getInvitationForVendorContact_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.InvoiceEntity_getTaxes_calculateAmount.prototype = { call$2(taxable, rate) { var t1 = rate / 100; if (this.$this.usesInclusiveTaxes) return A.round(taxable - taxable / (1 + t1), 2); else return A.round(taxable * t1, 2); }, $signature: 1118 }; A.InvoiceEntity__calculateTax_closure.prototype = { call$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["name", this.name, "rate", this.rate, "amount", 0, "paid", 0], type$.legacy_String, type$.dynamic); }, $signature: 1107 }; A.InvoiceItemEntity.prototype = { taxAmount$2(invoice, precision) { var _this = this, t1 = new A.InvoiceItemEntity_taxAmount_calculateTaxAmount(_this, invoice, precision); return t1.call$1(_this.taxRate1) + t1.call$1(_this.taxRate2) + t1.call$1(_this.taxRate3); }, total$2(_, invoice, precision) { var total = this.quantity * this.cost, t1 = this.discount; if (t1 !== 0) total = invoice.isAmountDiscount ? total - t1 : total - t1 / 100 * total; return A.round(total, precision); }, get$isEmpty(_) { var t1, _this = this; if (_this.productKey.length === 0) if (_this.notes.length === 0) if (_this.cost === 0) { t1 = _this.quantity; t1 = (t1 === 0 || t1 === 1) && _this.taxName1.length === 0 && _this.taxRate1 === 0 && _this.taxName2.length === 0 && _this.taxRate2 === 0 && _this.taxName3.length === 0 && _this.taxRate3 === 0 && _this.customValue1.length === 0 && _this.customValue2.length === 0 && _this.customValue3.length === 0 && _this.customValue4.length === 0; } else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hasTaxes() { var _this = this; return _this.taxRate1 !== 0 || _this.taxRate2 !== 0 || _this.taxRate3 !== 0 || _this.taxName1.length !== 0 || _this.taxName2.length !== 0 || _this.taxName3.length !== 0; }, get$taxRates() { var parts = A._setArrayType([], type$.JSArray_legacy_String), t1 = this.taxName1; if (t1.length !== 0) parts.push(t1); t1 = this.taxName2; if (t1.length !== 0) parts.push(t1); t1 = this.taxName3; if (t1.length !== 0) parts.push(t1); return B.JSArray_methods.join$1(parts, ", "); }, applyTax$3$isSecond$isThird(taxRate, isSecond, isThird) { var item; if (isThird) item = this.rebuild$1(new A.InvoiceItemEntity_applyTax_closure(taxRate)); else item = isSecond ? this.rebuild$1(new A.InvoiceItemEntity_applyTax_closure0(taxRate)) : this.rebuild$1(new A.InvoiceItemEntity_applyTax_closure1(taxRate)); return item; }, applyTax$1(taxRate) { return this.applyTax$3$isSecond$isThird(taxRate, false, false); }, applyTax$2$isSecond(taxRate, isSecond) { return this.applyTax$3$isSecond$isThird(taxRate, isSecond, false); }, applyTax$2$isThird(taxRate, isThird) { return this.applyTax$3$isSecond$isThird(taxRate, false, isThird); } }; A.InvoiceItemEntity_taxAmount_calculateTaxAmount.prototype = { call$1(rate) { var t1, t2, lineTotal; if (rate === 0) return 0; t1 = this.invoice; t2 = this.precision; lineTotal = this.$this.total$2(0, t1, t2); return A.round(t1.usesInclusiveTaxes ? lineTotal - lineTotal / (1 + rate / 100) : lineTotal * rate / 100, t2); }, $signature: 198 }; A.InvoiceItemEntity_applyTax_closure.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t1; return b; }, $signature: 58 }; A.InvoiceItemEntity_applyTax_closure0.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t1; return b; }, $signature: 58 }; A.InvoiceItemEntity_applyTax_closure1.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t1; return b; }, $signature: 58 }; A.InvitationEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; return null; }, get$listDisplayName() { return ""; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; } }; A.InvoiceScheduleEntity.prototype = {}; A.InvoiceHistoryEntity.prototype = {}; A._$InvoiceListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_xS5)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.InvoiceListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_InvoiceEntity, t3 = type$.ListBuilder_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._invoice_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._invoice_model$_data = t6; result._invoice_model$_$v = null; } t4 = result._invoice_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._invoice_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_xS5)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_0qh; }, get$wireName() { return "InvoiceListResponse"; } }; A._$InvoiceItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_fXI)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.InvoiceItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._invoice_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t3); t3._invoice_model$_$v = t2; result._invoice_model$_data = t3; result._invoice_model$_$v = null; } t2 = result._invoice_model$_data; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); result._invoice_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._invoice_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Mkn; }, get$wireName() { return "InvoiceItemResponse"; } }; A._$InvoiceEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["amount", serializers.serialize$2$specifiedType(object.amount, B.FullType_MME), "balance", serializers.serialize$2$specifiedType(object.balance, B.FullType_MME), "paid_to_date", serializers.serialize$2$specifiedType(object.paidToDate, B.FullType_MME), "client_id", serializers.serialize$2$specifiedType(object.clientId, B.FullType_h8g), "project_id", serializers.serialize$2$specifiedType(object.projectId, B.FullType_h8g), "expense_id", serializers.serialize$2$specifiedType(object.expenseId, B.FullType_h8g), "vendor_id", serializers.serialize$2$specifiedType(object.vendorId, B.FullType_h8g), "subscription_id", serializers.serialize$2$specifiedType(object.subscriptionId, B.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, B.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "discount", serializers.serialize$2$specifiedType(object.discount, B.FullType_MME), "po_number", serializers.serialize$2$specifiedType(object.poNumber, B.FullType_h8g), "date", serializers.serialize$2$specifiedType(object.date, B.FullType_h8g), "due_date", serializers.serialize$2$specifiedType(object.dueDate, B.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, B.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "terms", serializers.serialize$2$specifiedType(object.terms, B.FullType_h8g), "footer", serializers.serialize$2$specifiedType(object.footer, B.FullType_h8g), "design_id", serializers.serialize$2$specifiedType(object.designId, B.FullType_h8g), "uses_inclusive_taxes", serializers.serialize$2$specifiedType(object.usesInclusiveTaxes, B.FullType_MtR), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, B.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, B.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, B.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, B.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, B.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, B.FullType_MME), "is_amount_discount", serializers.serialize$2$specifiedType(object.isAmountDiscount, B.FullType_MtR), "partial", serializers.serialize$2$specifiedType(object.partial, B.FullType_MME), "total_taxes", serializers.serialize$2$specifiedType(object.taxAmount, B.FullType_MME), "partial_due_date", serializers.serialize$2$specifiedType(object.partialDueDate, B.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "custom_surcharge1", serializers.serialize$2$specifiedType(object.customSurcharge1, B.FullType_MME), "custom_surcharge2", serializers.serialize$2$specifiedType(object.customSurcharge2, B.FullType_MME), "custom_surcharge3", serializers.serialize$2$specifiedType(object.customSurcharge3, B.FullType_MME), "custom_surcharge4", serializers.serialize$2$specifiedType(object.customSurcharge4, B.FullType_MME), "custom_surcharge_tax1", serializers.serialize$2$specifiedType(object.customTaxes1, B.FullType_MtR), "custom_surcharge_tax2", serializers.serialize$2$specifiedType(object.customTaxes2, B.FullType_MtR), "custom_surcharge_tax3", serializers.serialize$2$specifiedType(object.customTaxes3, B.FullType_MtR), "custom_surcharge_tax4", serializers.serialize$2$specifiedType(object.customTaxes4, B.FullType_MtR), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, B.FullType_MME), "last_sent_date", serializers.serialize$2$specifiedType(object.lastSentDate, B.FullType_h8g), "next_send_date", serializers.serialize$2$specifiedType(object.nextSendDate, B.FullType_h8g), "auto_bill_enabled", serializers.serialize$2$specifiedType(object.autoBillEnabled, B.FullType_MtR), "line_items", serializers.serialize$2$specifiedType(object.lineItems, B.FullType_JhS), "invitations", serializers.serialize$2$specifiedType(object.invitations, B.FullType_koo), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "activities", serializers.serialize$2$specifiedType(object.activities, B.FullType_QWw), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.autoBill; if (value != null) { result.push("auto_bill"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.reminder1Sent; if (value != null) { result.push("reminder1_sent"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.reminder2Sent; if (value != null) { result.push("reminder2_sent"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.reminder3Sent; if (value != null) { result.push("reminder3_sent"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.reminderLastSent; if (value != null) { result.push("reminder_last_sent"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.frequencyId; if (value != null) { result.push("frequency_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.remainingCycles; if (value != null) { result.push("remaining_cycles"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.dueDateDays; if (value != null) { result.push("due_date_days"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringId; if (value != null) { result.push("recurring_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.filename; if (value != null) { result.push("filename"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringDates; if (value != null) { result.push("recurring_dates"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_RDC)); } value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_qBb)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, key, value, t13, t14, t15, result = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity, t7 = type$.legacy_InvitationEntity, t8 = type$.ListBuilder_legacy_InvitationEntity, t9 = type$.legacy_InvoiceItemEntity, t10 = type$.ListBuilder_legacy_InvoiceItemEntity, t11 = type$.legacy_InvoiceScheduleEntity, t12 = type$.ListBuilder_legacy_InvoiceScheduleEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "amount": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._amount = t13; break; case "balance": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_balance = t13; break; case "paid_to_date": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_paidToDate = t13; break; case "client_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._clientId = t13; break; case "project_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._projectId = t13; break; case "expense_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._expenseId = t13; break; case "vendor_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._vendorId = t13; break; case "subscription_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._subscriptionId = t13; break; case "status_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._statusId = t13; break; case "number": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_number = t13; break; case "discount": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._discount = t13; break; case "po_number": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._poNumber = t13; break; case "date": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._date = t13; break; case "due_date": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._dueDate = t13; break; case "public_notes": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_publicNotes = t13; break; case "private_notes": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_privateNotes = t13; break; case "terms": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._terms = t13; break; case "footer": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._footer = t13; break; case "design_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._designId = t13; break; case "uses_inclusive_taxes": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._usesInclusiveTaxes = t13; break; case "tax_name1": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName1 = t13; break; case "tax_rate1": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate1 = t13; break; case "tax_name2": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName2 = t13; break; case "tax_rate2": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate2 = t13; break; case "tax_name3": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName3 = t13; break; case "tax_rate3": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate3 = t13; break; case "is_amount_discount": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._isAmountDiscount = t13; break; case "partial": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._partial = t13; break; case "total_taxes": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxAmount = t13; break; case "partial_due_date": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._partialDueDate = t13; break; case "auto_bill": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_autoBill = t13; break; case "custom_value1": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue1 = t13; break; case "custom_value2": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue2 = t13; break; case "custom_value3": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue3 = t13; break; case "custom_value4": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue4 = t13; break; case "custom_surcharge1": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge1 = t13; break; case "custom_surcharge2": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge2 = t13; break; case "custom_surcharge3": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge3 = t13; break; case "custom_surcharge4": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge4 = t13; break; case "custom_surcharge_tax1": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes1 = t13; break; case "custom_surcharge_tax2": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes2 = t13; break; case "custom_surcharge_tax3": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes3 = t13; break; case "custom_surcharge_tax4": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes4 = t13; break; case "exchange_rate": t13 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._exchangeRate = t13; break; case "reminder1_sent": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._reminder1Sent = t13; break; case "reminder2_sent": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._reminder2Sent = t13; break; case "reminder3_sent": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._reminder3Sent = t13; break; case "reminder_last_sent": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._reminderLastSent = t13; break; case "frequency_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._frequencyId = t13; break; case "last_sent_date": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._lastSentDate = t13; break; case "next_send_date": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._nextSendDate = t13; break; case "remaining_cycles": t13 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._remainingCycles = t13; break; case "due_date_days": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._dueDateDays = t13; break; case "invoice_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoiceId = t13; break; case "recurring_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._recurringId = t13; break; case "auto_bill_enabled": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._autoBillEnabled = t13; break; case "filename": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._filename = t13; break; case "recurring_dates": t13 = result.get$_invoice_model$_$this(); t14 = t13._recurringDates; if (t14 == null) { t14 = new A.ListBuilder(t12); t14.__ListBuilder__list = A.List_List$from(B.List_empty, true, t11); t13._recurringDates = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_RDC)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = A.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "line_items": t13 = result.get$_invoice_model$_$this(); t14 = t13._lineItems; if (t14 == null) { t14 = new A.ListBuilder(t10); t14.__ListBuilder__list = A.List_List$from(B.List_empty, true, t9); t13._lineItems = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_JhS)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = A.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "invitations": t13 = result.get$_invoice_model$_$this(); t14 = t13._invitations; if (t14 == null) { t14 = new A.ListBuilder(t8); t14.__ListBuilder__list = A.List_List$from(B.List_empty, true, t7); t13._invitations = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_koo)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = A.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "documents": t13 = result.get$_invoice_model$_$this(); t14 = t13._invoice_model$_documents; if (t14 == null) { t14 = new A.ListBuilder(t6); t14.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t13._invoice_model$_documents = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = A.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "activities": t13 = result.get$_invoice_model$_$this(); t14 = t13._invoice_model$_activities; if (t14 == null) { t14 = new A.ListBuilder(t4); t14.__ListBuilder__list = A.List_List$from(B.List_empty, true, t3); t13._invoice_model$_activities = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_QWw)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = A.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "loadedAt": t13 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_loadedAt = t13; break; case "isChanged": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isChanged = t13; break; case "created_at": t13 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t13; break; case "updated_at": t13 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_updatedAt = t13; break; case "archived_at": t13 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_archivedAt = t13; break; case "is_deleted": t13 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isDeleted = t13; break; case "user_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_createdUserId = t13; break; case "assigned_user_id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t13; break; case "entity_type": t13 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_invoice_model$_$this()._invoice_model$_entityType = t13; break; case "id": t13 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t13; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kuc; }, get$wireName() { return "InvoiceEntity"; } }; A._$InvoiceItemEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["product_key", serializers.serialize$2$specifiedType(object.productKey, B.FullType_h8g), "notes", serializers.serialize$2$specifiedType(object.notes, B.FullType_h8g), "cost", serializers.serialize$2$specifiedType(object.cost, B.FullType_MME), "product_cost", serializers.serialize$2$specifiedType(object.productCost, B.FullType_MME), "quantity", serializers.serialize$2$specifiedType(object.quantity, B.FullType_MME), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, B.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, B.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, B.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, B.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, B.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, B.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "discount", serializers.serialize$2$specifiedType(object.discount, B.FullType_MME)], type$.JSArray_legacy_Object), value = object.typeId; if (value != null) { result.push("type_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.taskId; if (value != null) { result.push("task_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.expenseId; if (value != null) { result.push("expense_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.createdAt; if (value != null) { result.push("createdAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.InvoiceItemEntityBuilder(); result.get$_invoice_model$_$this()._productCost = 0; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "product_key": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_productKey = t1; break; case "notes": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_notes = t1; break; case "cost": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_cost = t1; break; case "product_cost": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._productCost = t1; break; case "quantity": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_quantity = t1; break; case "tax_name1": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName1 = t1; break; case "tax_rate1": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate1 = t1; break; case "tax_name2": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName2 = t1; break; case "tax_rate2": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate2 = t1; break; case "tax_name3": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taxName3 = t1; break; case "tax_rate3": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._taxRate3 = t1; break; case "type_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_typeId = t1; break; case "custom_value1": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1; break; case "custom_value2": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1; break; case "custom_value3": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1; break; case "custom_value4": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1; break; case "discount": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._discount = t1; break; case "task_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._taskId = t1; break; case "expense_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._expenseId = t1; break; case "createdAt": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Tph; }, get$wireName() { return "InvoiceItemEntity"; } }; A._$InvitationEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["key", serializers.serialize$2$specifiedType(object.key, B.FullType_h8g), "link", serializers.serialize$2$specifiedType(object.link, B.FullType_h8g), "client_contact_id", serializers.serialize$2$specifiedType(object.clientContactId, B.FullType_h8g), "vendor_contact_id", serializers.serialize$2$specifiedType(object.vendorContactId, B.FullType_h8g), "sent_date", serializers.serialize$2$specifiedType(object.sentDate, B.FullType_h8g), "viewed_date", serializers.serialize$2$specifiedType(object.viewedDate, B.FullType_h8g), "opened_date", serializers.serialize$2$specifiedType(object.openedDate, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.emailStatus; if (value != null) { result.push("email_status"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_qBb)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, _$result, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _s16_ = "InvitationEntity", result = new A.InvitationEntityBuilder(); result.get$_invoice_model$_$this()._invoice_model$_clientContactId = ""; result.get$_invoice_model$_$this()._vendorContactId = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_key = t2; break; case "link": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_link = t2; break; case "client_contact_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_clientContactId = t2; break; case "vendor_contact_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._vendorContactId = t2; break; case "sent_date": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._sentDate = t2; break; case "viewed_date": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._viewedDate = t2; break; case "opened_date": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._openedDate = t2; break; case "email_status": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._emailStatus = t2; break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t2; break; case "entity_type": t2 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_invoice_model$_$this()._invoice_model$_entityType = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t2; break; } } _$result = result._invoice_model$_$v; if (_$result == null) { t1 = result.get$_invoice_model$_$this()._invoice_model$_key; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "key")); t2 = result.get$_invoice_model$_$this()._invoice_model$_link; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "link")); t3 = result.get$_invoice_model$_$this()._invoice_model$_clientContactId; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "clientContactId")); t4 = result.get$_invoice_model$_$this()._vendorContactId; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "vendorContactId")); t5 = result.get$_invoice_model$_$this()._sentDate; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "sentDate")); t6 = result.get$_invoice_model$_$this()._viewedDate; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "viewedDate")); t7 = result.get$_invoice_model$_$this()._openedDate; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "openedDate")); t8 = result.get$_invoice_model$_$this()._emailStatus; t9 = result.get$_invoice_model$_$this()._invoice_model$_isChanged; t10 = result.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "createdAt")); t11 = result.get$_invoice_model$_$this()._invoice_model$_updatedAt; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "updatedAt")); t12 = result.get$_invoice_model$_$this()._invoice_model$_archivedAt; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "archivedAt")); t13 = result.get$_invoice_model$_$this()._invoice_model$_isDeleted; t14 = result.get$_invoice_model$_$this()._invoice_model$_createdUserId; t15 = result.get$_invoice_model$_$this()._invoice_model$_assignedUserId; t16 = result.get$_invoice_model$_$this()._invoice_model$_entityType; t17 = result.get$_invoice_model$_$this()._invoice_model$_id; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "id")); _$result = A._$InvitationEntity$_(t12, t15, t3, t10, t14, t8, t16, t17, t9, t13, t1, t2, t7, t5, t11, t4, t6); } A.ArgumentError_checkNotNull(_$result, "other"); return result._invoice_model$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_NQk; }, get$wireName() { return "InvitationEntity"; } }; A._$InvoiceScheduleEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["send_date", serializers.serialize$2$specifiedType(object.sendDate, B.FullType_h8g), "due_date", serializers.serialize$2$specifiedType(object.dueDate, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, t2, _s21_ = "InvoiceScheduleEntity", result = new A.InvoiceScheduleEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "send_date": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._invoice_model$_$v; if ($$v != null) { result._sendDate = $$v.sendDate; result._dueDate = $$v.dueDate; result._invoice_model$_$v = null; } result._sendDate = t1; break; case "due_date": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._invoice_model$_$v; if ($$v != null) { result._sendDate = $$v.sendDate; result._dueDate = $$v.dueDate; result._invoice_model$_$v = null; } result._dueDate = t1; break; } } _$result = result._invoice_model$_$v; if (_$result == null) { t1 = result.get$_invoice_model$_$this()._sendDate; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "sendDate")); t2 = result.get$_invoice_model$_$this()._dueDate; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "dueDate")); _$result = new A._$InvoiceScheduleEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return result._invoice_model$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_gkc1; }, get$wireName() { return "InvoiceScheduleEntity"; } }; A._$InvoiceHistoryEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "activity_id", serializers.serialize$2$specifiedType(object.activityId, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "amount", serializers.serialize$2$specifiedType(object.amount, B.FullType_MME)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.InvoiceHistoryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t1; break; case "activity_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_model$_$this()._activityId = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t1; break; case "amount": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_invoice_model$_$this()._amount = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_AKW; }, get$wireName() { return "InvoiceHistoryEntity"; } }; A._$InvoiceListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.InvoiceListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._invoice_model$__hashCode; return t1 == null ? this._invoice_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.InvoiceListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._invoice_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._invoice_model$_$v = null; } t1 = _this._invoice_model$_data; return t1 == null ? _this._invoice_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "InvoiceListResponse", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$InvoiceListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._invoice_model$_$v = t1; return _$result; } }; A._$InvoiceItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.InvoiceItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._invoice_model$__hashCode; return t1 == null ? this._invoice_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.InvoiceItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; _this._invoice_model$_data = t2; _this._invoice_model$_$v = null; } t1 = _this._invoice_model$_data; if (t1 == null) { t1 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t1); _this._invoice_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "InvoiceItemResponse", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$InvoiceItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._invoice_model$_$v = t1; return _$result; } }; A._$InvoiceEntity.prototype = { rebuild$1(updates) { var t1 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._invoice_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.InvoiceEntity && _this.amount === other.amount && _this.balance === other.balance && _this.paidToDate === other.paidToDate && _this.clientId === other.clientId && _this.projectId === other.projectId && _this.expenseId === other.expenseId && _this.vendorId === other.vendorId && _this.subscriptionId === other.subscriptionId && _this.statusId === other.statusId && _this.number === other.number && _this.discount === other.discount && _this.poNumber === other.poNumber && _this.date == other.date && _this.dueDate === other.dueDate && _this.publicNotes === other.publicNotes && _this.privateNotes === other.privateNotes && _this.terms === other.terms && _this.footer === other.footer && _this.designId === other.designId && _this.usesInclusiveTaxes === other.usesInclusiveTaxes && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.isAmountDiscount === other.isAmountDiscount && _this.partial === other.partial && _this.taxAmount === other.taxAmount && _this.partialDueDate === other.partialDueDate && _this.autoBill == other.autoBill && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.customSurcharge1 === other.customSurcharge1 && _this.customSurcharge2 === other.customSurcharge2 && _this.customSurcharge3 === other.customSurcharge3 && _this.customSurcharge4 === other.customSurcharge4 && _this.customTaxes1 === other.customTaxes1 && _this.customTaxes2 === other.customTaxes2 && _this.customTaxes3 === other.customTaxes3 && _this.customTaxes4 === other.customTaxes4 && _this.exchangeRate === other.exchangeRate && _this.reminder1Sent == other.reminder1Sent && _this.reminder2Sent == other.reminder2Sent && _this.reminder3Sent == other.reminder3Sent && _this.reminderLastSent == other.reminderLastSent && _this.frequencyId == other.frequencyId && _this.lastSentDate === other.lastSentDate && _this.nextSendDate == other.nextSendDate && _this.remainingCycles == other.remainingCycles && _this.dueDateDays == other.dueDateDays && _this.invoiceId == other.invoiceId && _this.recurringId == other.recurringId && _this.autoBillEnabled === other.autoBillEnabled && _this.filename == other.filename && J.$eq$(_this.recurringDates, other.recurringDates) && J.$eq$(_this.lineItems, other.lineItems) && J.$eq$(_this.invitations, other.invitations) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSNumber_methods.get$hashCode(_this.amount)), B.JSNumber_methods.get$hashCode(_this.balance)), B.JSNumber_methods.get$hashCode(_this.paidToDate)), B.JSString_methods.get$hashCode(_this.clientId)), B.JSString_methods.get$hashCode(_this.projectId)), B.JSString_methods.get$hashCode(_this.expenseId)), B.JSString_methods.get$hashCode(_this.vendorId)), B.JSString_methods.get$hashCode(_this.subscriptionId)), B.JSString_methods.get$hashCode(_this.statusId)), B.JSString_methods.get$hashCode(_this.number)), B.JSNumber_methods.get$hashCode(_this.discount)), B.JSString_methods.get$hashCode(_this.poNumber)), J.get$hashCode$(_this.date)), B.JSString_methods.get$hashCode(_this.dueDate)), B.JSString_methods.get$hashCode(_this.publicNotes)), B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.terms)), B.JSString_methods.get$hashCode(_this.footer)), B.JSString_methods.get$hashCode(_this.designId)), B.JSBool_methods.get$hashCode(_this.usesInclusiveTaxes)), B.JSString_methods.get$hashCode(_this.taxName1)), B.JSNumber_methods.get$hashCode(_this.taxRate1)), B.JSString_methods.get$hashCode(_this.taxName2)), B.JSNumber_methods.get$hashCode(_this.taxRate2)), B.JSString_methods.get$hashCode(_this.taxName3)), B.JSNumber_methods.get$hashCode(_this.taxRate3)), B.JSBool_methods.get$hashCode(_this.isAmountDiscount)), B.JSNumber_methods.get$hashCode(_this.partial)), B.JSNumber_methods.get$hashCode(_this.taxAmount)), B.JSString_methods.get$hashCode(_this.partialDueDate)), J.get$hashCode$(_this.autoBill)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSNumber_methods.get$hashCode(_this.customSurcharge1)), B.JSNumber_methods.get$hashCode(_this.customSurcharge2)), B.JSNumber_methods.get$hashCode(_this.customSurcharge3)), B.JSNumber_methods.get$hashCode(_this.customSurcharge4)), B.JSBool_methods.get$hashCode(_this.customTaxes1)), B.JSBool_methods.get$hashCode(_this.customTaxes2)), B.JSBool_methods.get$hashCode(_this.customTaxes3)), B.JSBool_methods.get$hashCode(_this.customTaxes4)), B.JSNumber_methods.get$hashCode(_this.exchangeRate)), J.get$hashCode$(_this.reminder1Sent)), J.get$hashCode$(_this.reminder2Sent)), J.get$hashCode$(_this.reminder3Sent)), J.get$hashCode$(_this.reminderLastSent)), J.get$hashCode$(_this.frequencyId)), B.JSString_methods.get$hashCode(_this.lastSentDate)), J.get$hashCode$(_this.nextSendDate)), J.get$hashCode$(_this.remainingCycles)), J.get$hashCode$(_this.dueDateDays)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.recurringId)), B.JSBool_methods.get$hashCode(_this.autoBillEnabled)), J.get$hashCode$(_this.filename)), J.get$hashCode$(_this.recurringDates)), J.get$hashCode$(_this.lineItems)), J.get$hashCode$(_this.invitations)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "paidToDate", _this.paidToDate); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "expenseId", _this.expenseId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "subscriptionId", _this.subscriptionId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "discount", _this.discount); t2.add$2(t1, "poNumber", _this.poNumber); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "dueDate", _this.dueDate); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "terms", _this.terms); t2.add$2(t1, "footer", _this.footer); t2.add$2(t1, "designId", _this.designId); t2.add$2(t1, "usesInclusiveTaxes", _this.usesInclusiveTaxes); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "isAmountDiscount", _this.isAmountDiscount); t2.add$2(t1, "partial", _this.partial); t2.add$2(t1, "taxAmount", _this.taxAmount); t2.add$2(t1, "partialDueDate", _this.partialDueDate); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "customSurcharge1", _this.customSurcharge1); t2.add$2(t1, "customSurcharge2", _this.customSurcharge2); t2.add$2(t1, "customSurcharge3", _this.customSurcharge3); t2.add$2(t1, "customSurcharge4", _this.customSurcharge4); t2.add$2(t1, "customTaxes1", _this.customTaxes1); t2.add$2(t1, "customTaxes2", _this.customTaxes2); t2.add$2(t1, "customTaxes3", _this.customTaxes3); t2.add$2(t1, "customTaxes4", _this.customTaxes4); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "reminder1Sent", _this.reminder1Sent); t2.add$2(t1, "reminder2Sent", _this.reminder2Sent); t2.add$2(t1, "reminder3Sent", _this.reminder3Sent); t2.add$2(t1, "reminderLastSent", _this.reminderLastSent); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "lastSentDate", _this.lastSentDate); t2.add$2(t1, "nextSendDate", _this.nextSendDate); t2.add$2(t1, "remainingCycles", _this.remainingCycles); t2.add$2(t1, "dueDateDays", _this.dueDateDays); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "recurringId", _this.recurringId); t2.add$2(t1, "autoBillEnabled", _this.autoBillEnabled); t2.add$2(t1, "filename", _this.filename); t2.add$2(t1, "recurringDates", _this.recurringDates); t2.add$2(t1, "lineItems", _this.lineItems); t2.add$2(t1, "invitations", _this.invitations); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount() { return this.amount; }, get$clientId(receiver) { return this.clientId; }, get$subscriptionId() { return this.subscriptionId; }, get$date() { return this.date; }, get$designId() { return this.designId; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$entityType() { return this.entityType; }, get$id(receiver) { return this.id; } }; A.InvoiceEntityBuilder.prototype = { get$amount() { return this.get$_invoice_model$_$this()._amount; }, get$subscriptionId() { return this.get$_invoice_model$_$this()._subscriptionId; }, get$date() { return this.get$_invoice_model$_$this()._date; }, get$designId() { return this.get$_invoice_model$_$this()._designId; }, get$lineItems() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._lineItems; return t2 == null ? t1._lineItems = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceItemEntity) : t2; }, get$invitations() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invitations; return t2 == null ? t1._invitations = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvitationEntity) : t2; }, get$documents() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invoice_model$_documents; return t2 == null ? t1._invoice_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$activities() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invoice_model$_activities; return t2 == null ? t1._invoice_model$_activities = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity) : t2; }, get$id(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$_invoice_model$_$this() { var t1, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._amount = $$v.amount; _this._invoice_model$_balance = $$v.balance; _this._invoice_model$_paidToDate = $$v.paidToDate; _this._clientId = $$v.clientId; _this._projectId = $$v.projectId; _this._expenseId = $$v.expenseId; _this._vendorId = $$v.vendorId; _this._subscriptionId = $$v.subscriptionId; _this._statusId = $$v.statusId; _this._invoice_model$_number = $$v.number; _this._discount = $$v.discount; _this._poNumber = $$v.poNumber; _this._date = $$v.date; _this._dueDate = $$v.dueDate; _this._invoice_model$_publicNotes = $$v.publicNotes; _this._invoice_model$_privateNotes = $$v.privateNotes; _this._terms = $$v.terms; _this._footer = $$v.footer; _this._designId = $$v.designId; _this._usesInclusiveTaxes = $$v.usesInclusiveTaxes; _this._taxName1 = $$v.taxName1; _this._taxRate1 = $$v.taxRate1; _this._taxName2 = $$v.taxName2; _this._taxRate2 = $$v.taxRate2; _this._taxName3 = $$v.taxName3; _this._taxRate3 = $$v.taxRate3; _this._isAmountDiscount = $$v.isAmountDiscount; _this._partial = $$v.partial; _this._taxAmount = $$v.taxAmount; _this._partialDueDate = $$v.partialDueDate; _this._invoice_model$_autoBill = $$v.autoBill; _this._invoice_model$_customValue1 = $$v.customValue1; _this._invoice_model$_customValue2 = $$v.customValue2; _this._invoice_model$_customValue3 = $$v.customValue3; _this._invoice_model$_customValue4 = $$v.customValue4; _this._customSurcharge1 = $$v.customSurcharge1; _this._customSurcharge2 = $$v.customSurcharge2; _this._customSurcharge3 = $$v.customSurcharge3; _this._customSurcharge4 = $$v.customSurcharge4; _this._customTaxes1 = $$v.customTaxes1; _this._customTaxes2 = $$v.customTaxes2; _this._customTaxes3 = $$v.customTaxes3; _this._customTaxes4 = $$v.customTaxes4; _this._exchangeRate = $$v.exchangeRate; _this._reminder1Sent = $$v.reminder1Sent; _this._reminder2Sent = $$v.reminder2Sent; _this._reminder3Sent = $$v.reminder3Sent; _this._reminderLastSent = $$v.reminderLastSent; _this._frequencyId = $$v.frequencyId; _this._lastSentDate = $$v.lastSentDate; _this._nextSendDate = $$v.nextSendDate; _this._remainingCycles = $$v.remainingCycles; _this._dueDateDays = $$v.dueDateDays; _this._invoiceId = $$v.invoiceId; _this._recurringId = $$v.recurringId; _this._autoBillEnabled = $$v.autoBillEnabled; _this._filename = $$v.filename; t1 = $$v.recurringDates; _this._recurringDates = t1 == null ? null : A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.lineItems; t1.toString; _this._lineItems = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invitations; t1.toString; _this._invitations = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.documents; t1.toString; _this._invoice_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._invoice_model$_activities = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._invoice_model$_loadedAt = $$v.loadedAt; _this._invoice_model$_isChanged = $$v.isChanged; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_updatedAt = $$v.updatedAt; _this._invoice_model$_archivedAt = $$v.archivedAt; _this._invoice_model$_isDeleted = $$v.isDeleted; _this._invoice_model$_createdUserId = $$v.createdUserId; _this._invoice_model$_assignedUserId = $$v.assignedUserId; _this._invoice_model$_entityType = $$v.entityType; _this._invoice_model$_id = $$v.id; _this._invoice_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, exception, _this = this, _s13_ = "InvoiceEntity", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$_invoice_model$_$this()._amount; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "amount")); t2 = _this.get$_invoice_model$_$this()._invoice_model$_balance; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "balance")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_paidToDate; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "paidToDate")); t4 = _this.get$_invoice_model$_$this()._clientId; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientId")); t5 = _this.get$_invoice_model$_$this()._projectId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "projectId")); t6 = _this.get$_invoice_model$_$this()._expenseId; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "expenseId")); t7 = _this.get$_invoice_model$_$this()._vendorId; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "vendorId")); t8 = _this.get$_invoice_model$_$this()._subscriptionId; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "subscriptionId")); t9 = _this.get$_invoice_model$_$this()._statusId; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "statusId")); t10 = _this.get$_invoice_model$_$this()._invoice_model$_number; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "number")); t11 = _this.get$_invoice_model$_$this()._discount; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "discount")); t12 = _this.get$_invoice_model$_$this()._poNumber; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "poNumber")); t13 = _this.get$_invoice_model$_$this()._date; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "date")); t14 = _this.get$_invoice_model$_$this()._dueDate; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "dueDate")); t15 = _this.get$_invoice_model$_$this()._invoice_model$_publicNotes; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "publicNotes")); t16 = _this.get$_invoice_model$_$this()._invoice_model$_privateNotes; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "privateNotes")); t17 = _this.get$_invoice_model$_$this()._terms; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "terms")); t18 = _this.get$_invoice_model$_$this()._footer; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "footer")); t19 = _this.get$_invoice_model$_$this()._designId; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "designId")); t20 = _this.get$_invoice_model$_$this()._usesInclusiveTaxes; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "usesInclusiveTaxes")); t21 = _this.get$_invoice_model$_$this()._taxName1; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName1")); t22 = _this.get$_invoice_model$_$this()._taxRate1; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate1")); t23 = _this.get$_invoice_model$_$this()._taxName2; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName2")); t24 = _this.get$_invoice_model$_$this()._taxRate2; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate2")); t25 = _this.get$_invoice_model$_$this()._taxName3; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName3")); t26 = _this.get$_invoice_model$_$this()._taxRate3; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate3")); t27 = _this.get$_invoice_model$_$this()._isAmountDiscount; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isAmountDiscount")); t28 = _this.get$_invoice_model$_$this()._partial; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "partial")); t29 = _this.get$_invoice_model$_$this()._taxAmount; if (t29 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxAmount")); t30 = _this.get$_invoice_model$_$this()._partialDueDate; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "partialDueDate")); t31 = _this.get$_invoice_model$_$this()._invoice_model$_autoBill; t32 = _this.get$_invoice_model$_$this()._invoice_model$_customValue1; if (t32 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue1")); t33 = _this.get$_invoice_model$_$this()._invoice_model$_customValue2; if (t33 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue2")); t34 = _this.get$_invoice_model$_$this()._invoice_model$_customValue3; if (t34 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue3")); t35 = _this.get$_invoice_model$_$this()._invoice_model$_customValue4; if (t35 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue4")); t36 = _this.get$_invoice_model$_$this()._customSurcharge1; if (t36 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customSurcharge1")); t37 = _this.get$_invoice_model$_$this()._customSurcharge2; if (t37 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customSurcharge2")); t38 = _this.get$_invoice_model$_$this()._customSurcharge3; if (t38 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customSurcharge3")); t39 = _this.get$_invoice_model$_$this()._customSurcharge4; if (t39 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customSurcharge4")); t40 = _this.get$_invoice_model$_$this()._customTaxes1; if (t40 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customTaxes1")); t41 = _this.get$_invoice_model$_$this()._customTaxes2; if (t41 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customTaxes2")); t42 = _this.get$_invoice_model$_$this()._customTaxes3; if (t42 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customTaxes3")); t43 = _this.get$_invoice_model$_$this()._customTaxes4; if (t43 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customTaxes4")); t44 = _this.get$_invoice_model$_$this()._exchangeRate; if (t44 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t45 = _this.get$_invoice_model$_$this()._reminder1Sent; t46 = _this.get$_invoice_model$_$this()._reminder2Sent; t47 = _this.get$_invoice_model$_$this()._reminder3Sent; t48 = _this.get$_invoice_model$_$this()._reminderLastSent; t49 = _this.get$_invoice_model$_$this()._frequencyId; t50 = _this.get$_invoice_model$_$this()._lastSentDate; if (t50 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "lastSentDate")); t51 = _this.get$_invoice_model$_$this()._nextSendDate; if (t51 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "nextSendDate")); t52 = _this.get$_invoice_model$_$this()._remainingCycles; t53 = _this.get$_invoice_model$_$this()._dueDateDays; t54 = _this.get$_invoice_model$_$this()._invoiceId; t55 = _this.get$_invoice_model$_$this()._recurringId; t56 = _this.get$_invoice_model$_$this()._autoBillEnabled; if (t56 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "autoBillEnabled")); t57 = _this.get$_invoice_model$_$this()._filename; t58 = _this._recurringDates; t58 = t58 == null ? null : t58.build$0(0); t59 = _this.get$lineItems().build$0(0); t60 = _this.get$invitations().build$0(0); t61 = _this.get$documents().build$0(0); t62 = _this.get$activities().build$0(0); t63 = _this.get$_invoice_model$_$this()._invoice_model$_loadedAt; t64 = _this.get$_invoice_model$_$this()._invoice_model$_isChanged; t65 = _this.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t65 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t66 = _this.get$_invoice_model$_$this()._invoice_model$_updatedAt; if (t66 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t67 = _this.get$_invoice_model$_$this()._invoice_model$_archivedAt; if (t67 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t68 = _this.get$_invoice_model$_$this()._invoice_model$_isDeleted; t69 = _this.get$_invoice_model$_$this()._invoice_model$_createdUserId; t70 = _this.get$_invoice_model$_$this()._invoice_model$_assignedUserId; t71 = _this.get$_invoice_model$_$this()._invoice_model$_entityType; t72 = _this.get$_invoice_model$_$this()._invoice_model$_id; if (t72 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$InvoiceEntity$_(t62, t1, t67, t70, t31, t56, t2, t4, t65, t69, t36, t37, t38, t39, t40, t41, t42, t43, t32, t33, t34, t35, t13, t19, t11, t61, t14, t53, t71, t44, t6, t57, t18, t49, t72, t60, t54, t27, t64, t68, t50, t59, t63, t51, t10, t3, t28, t30, t12, t16, t5, t15, t58, t55, t52, t45, t46, t47, t48, t9, t8, t29, t21, t23, t25, t22, t24, t26, t17, t66, t20, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "recurringDates"; t1 = _this._recurringDates; if (t1 != null) t1.build$0(0); _$failedField = "lineItems"; _this.get$lineItems().build$0(0); _$failedField = "invitations"; _this.get$invitations().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._invoice_model$_$v = t1; return _$result; } }; A._$InvoiceItemEntity.prototype = { rebuild$1(updates) { var t1 = new A.InvoiceItemEntityBuilder(); t1.get$_invoice_model$_$this()._productCost = 0; A.ArgumentError_checkNotNull(this, "other"); t1._invoice_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.InvoiceItemEntity && _this.productKey === other.productKey && _this.notes === other.notes && _this.cost === other.cost && _this.productCost === other.productCost && _this.quantity === other.quantity && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.typeId == other.typeId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.discount === other.discount && _this.taskId == other.taskId && _this.expenseId == other.expenseId && _this.createdAt == other.createdAt; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.productKey)), B.JSString_methods.get$hashCode(_this.notes)), B.JSNumber_methods.get$hashCode(_this.cost)), B.JSNumber_methods.get$hashCode(_this.productCost)), B.JSNumber_methods.get$hashCode(_this.quantity)), B.JSString_methods.get$hashCode(_this.taxName1)), B.JSNumber_methods.get$hashCode(_this.taxRate1)), B.JSString_methods.get$hashCode(_this.taxName2)), B.JSNumber_methods.get$hashCode(_this.taxRate2)), B.JSString_methods.get$hashCode(_this.taxName3)), B.JSNumber_methods.get$hashCode(_this.taxRate3)), J.get$hashCode$(_this.typeId)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSNumber_methods.get$hashCode(_this.discount)), J.get$hashCode$(_this.taskId)), J.get$hashCode$(_this.expenseId)), J.get$hashCode$(_this.createdAt))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceItemEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "productKey", _this.productKey); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "cost", _this.cost); t2.add$2(t1, "productCost", _this.productCost); t2.add$2(t1, "quantity", _this.quantity); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "discount", _this.discount); t2.add$2(t1, "taskId", _this.taskId); t2.add$2(t1, "expenseId", _this.expenseId); t2.add$2(t1, "createdAt", _this.createdAt); return t2.toString$0(t1); } }; A.InvoiceItemEntityBuilder.prototype = { get$_invoice_model$_$this() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_productKey = $$v.productKey; _this._invoice_model$_notes = $$v.notes; _this._invoice_model$_cost = $$v.cost; _this._productCost = $$v.productCost; _this._invoice_model$_quantity = $$v.quantity; _this._taxName1 = $$v.taxName1; _this._taxRate1 = $$v.taxRate1; _this._taxName2 = $$v.taxName2; _this._taxRate2 = $$v.taxRate2; _this._taxName3 = $$v.taxName3; _this._taxRate3 = $$v.taxRate3; _this._invoice_model$_typeId = $$v.typeId; _this._invoice_model$_customValue1 = $$v.customValue1; _this._invoice_model$_customValue2 = $$v.customValue2; _this._invoice_model$_customValue3 = $$v.customValue3; _this._invoice_model$_customValue4 = $$v.customValue4; _this._discount = $$v.discount; _this._taskId = $$v.taskId; _this._expenseId = $$v.expenseId; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, _this = this, _s17_ = "InvoiceItemEntity", _$result = _this._invoice_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_model$_$this()._invoice_model$_productKey; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "productKey")); t2 = _this.get$_invoice_model$_$this()._invoice_model$_notes; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "notes")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_cost; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "cost")); t4 = _this.get$_invoice_model$_$this()._productCost; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "productCost")); t5 = _this.get$_invoice_model$_$this()._invoice_model$_quantity; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "quantity")); t6 = _this.get$_invoice_model$_$this()._taxName1; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxName1")); t7 = _this.get$_invoice_model$_$this()._taxRate1; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxRate1")); t8 = _this.get$_invoice_model$_$this()._taxName2; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxName2")); t9 = _this.get$_invoice_model$_$this()._taxRate2; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxRate2")); t10 = _this.get$_invoice_model$_$this()._taxName3; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxName3")); t11 = _this.get$_invoice_model$_$this()._taxRate3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "taxRate3")); t12 = _this.get$_invoice_model$_$this()._invoice_model$_typeId; t13 = _this.get$_invoice_model$_$this()._invoice_model$_customValue1; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "customValue1")); t14 = _this.get$_invoice_model$_$this()._invoice_model$_customValue2; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "customValue2")); t15 = _this.get$_invoice_model$_$this()._invoice_model$_customValue3; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "customValue3")); t16 = _this.get$_invoice_model$_$this()._invoice_model$_customValue4; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "customValue4")); t17 = _this.get$_invoice_model$_$this()._discount; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "discount")); t18 = _this.get$_invoice_model$_$this()._taskId; t19 = _this.get$_invoice_model$_$this()._expenseId; _$result = A._$InvoiceItemEntity$_(t3, _this.get$_invoice_model$_$this()._invoice_model$_createdAt, t13, t14, t15, t16, t17, t19, t2, t4, t1, t5, t18, t6, t8, t10, t7, t9, t11, t12); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._invoice_model$_$v = _$result; } }; A._$InvitationEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.InvitationEntity && _this.key === other.key && _this.link === other.link && _this.clientContactId === other.clientContactId && _this.vendorContactId === other.vendorContactId && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.key)), B.JSString_methods.get$hashCode(_this.link)), B.JSString_methods.get$hashCode(_this.clientContactId)), B.JSString_methods.get$hashCode(_this.vendorContactId)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvitationEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "key", _this.key); t2.add$2(t1, "link", _this.link); t2.add$2(t1, "clientContactId", _this.clientContactId); t2.add$2(t1, "vendorContactId", _this.vendorContactId); t2.add$2(t1, "sentDate", _this.sentDate); t2.add$2(t1, "viewedDate", _this.viewedDate); t2.add$2(t1, "openedDate", _this.openedDate); t2.add$2(t1, "emailStatus", _this.emailStatus); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$entityType() { return this.entityType; }, get$id(receiver) { return this.id; } }; A.InvitationEntityBuilder.prototype = { get$id(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$_invoice_model$_$this() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_key = $$v.key; _this._invoice_model$_link = $$v.link; _this._invoice_model$_clientContactId = $$v.clientContactId; _this._vendorContactId = $$v.vendorContactId; _this._sentDate = $$v.sentDate; _this._viewedDate = $$v.viewedDate; _this._openedDate = $$v.openedDate; _this._emailStatus = $$v.emailStatus; _this._invoice_model$_isChanged = $$v.isChanged; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_updatedAt = $$v.updatedAt; _this._invoice_model$_archivedAt = $$v.archivedAt; _this._invoice_model$_isDeleted = $$v.isDeleted; _this._invoice_model$_createdUserId = $$v.createdUserId; _this._invoice_model$_assignedUserId = $$v.assignedUserId; _this._invoice_model$_entityType = $$v.entityType; _this._invoice_model$_id = $$v.id; _this._invoice_model$_$v = null; } return _this; } }; A._$InvoiceScheduleEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.InvoiceScheduleEntity && this.sendDate === other.sendDate && this.dueDate === other.dueDate; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.sendDate)), B.JSString_methods.get$hashCode(_this.dueDate))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceScheduleEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sendDate", this.sendDate); t2.add$2(t1, "dueDate", this.dueDate); return t2.toString$0(t1); } }; A.InvoiceScheduleEntityBuilder.prototype = { get$_invoice_model$_$this() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._sendDate = $$v.sendDate; _this._dueDate = $$v.dueDate; _this._invoice_model$_$v = null; } return _this; } }; A._$InvoiceHistoryEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.InvoiceHistoryEntity && _this.id === other.id && _this.activityId === other.activityId && _this.createdAt === other.createdAt && _this.amount === other.amount; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.activityId)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSNumber_methods.get$hashCode(_this.amount))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceHistoryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "activityId", _this.activityId); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "amount", _this.amount); return t2.toString$0(t1); }, get$id(receiver) { return this.id; }, get$amount() { return this.amount; } }; A.InvoiceHistoryEntityBuilder.prototype = { get$id(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$amount() { return this.get$_invoice_model$_$this()._amount; }, get$_invoice_model$_$this() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_id = $$v.id; _this._activityId = $$v.activityId; _this._invoice_model$_createdAt = $$v.createdAt; _this._amount = $$v.amount; _this._invoice_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, _this = this, _s20_ = "InvoiceHistoryEntity", _$result = _this._invoice_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_model$_$this()._invoice_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "id")); t2 = _this.get$_invoice_model$_$this()._activityId; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "activityId")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "createdAt")); t4 = _this.get$_invoice_model$_$this()._amount; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "amount")); _$result = new A._$InvoiceHistoryEntity(t1, t2, t3, t4); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._invoice_model$_$v = _$result; } }; A._InvitationEntity_Object_BaseEntity.prototype = {}; A._InvitationEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._InvoiceEntity_Object_BaseEntity.prototype = {}; A._InvoiceEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal.prototype = {}; A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient.prototype = {}; A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor.prototype = {}; A.CalculateInvoiceTotal.prototype = { _calculateTaxAmount$4(amount, rate, useInclusiveTaxes, precision) { return A.round(useInclusiveTaxes ? amount - amount / (1 + rate / 100) : amount * rate / 100, precision); }, calculateTaxes$2$precision$useInclusiveTaxes(precision, useInclusiveTaxes) { var map, t2, t3, _this = this, t1 = {}; t1.total = _this.calculateSubtotal$1$precision(precision); t1.taxAmount = null; map = A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_double); B.JSArray_methods.forEach$1(_this.lineItems._list, new A.CalculateInvoiceTotal_calculateTaxes_closure(t1, _this, precision, useInclusiveTaxes, map)); t2 = _this.discount; if (t2 !== 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - A.round(t2, precision); else t1.total = t3 - A.round(t3 * t2 / 100, precision); } t2 = _this.customSurcharge1; if (t2 !== 0 && _this.customTaxes1) t1.total = t1.total + A.round(t2, precision); t2 = _this.customSurcharge2; if (t2 !== 0 && _this.customTaxes2) t1.total = t1.total + A.round(t2, precision); t2 = _this.customSurcharge3; if (t2 !== 0 && _this.customTaxes3) t1.total = t1.total + A.round(t2, precision); t2 = _this.customSurcharge4; if (t2 !== 0 && _this.customTaxes4) t1.total = t1.total + A.round(t2, precision); t2 = _this.taxRate1; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName1, new A.CalculateInvoiceTotal_calculateTaxes_closure0(t1), new A.CalculateInvoiceTotal_calculateTaxes_closure1(t1)); } t2 = _this.taxRate2; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName2, new A.CalculateInvoiceTotal_calculateTaxes_closure2(t1), new A.CalculateInvoiceTotal_calculateTaxes_closure3(t1)); } t2 = _this.taxRate3; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName3, new A.CalculateInvoiceTotal_calculateTaxes_closure4(t1), new A.CalculateInvoiceTotal_calculateTaxes_closure5(t1)); } return map; }, getTaxable$0() { var t2, t3, total, _this = this, t1 = {}; t1.total = 0; B.JSArray_methods.forEach$1(_this.lineItems._list, new A.CalculateInvoiceTotal_getTaxable_closure(t1, _this)); t2 = _this.discount; if (t2 > 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - t2; else { total = t3 * ((100 - t2) / 100); t1.total = total; t1.total = A.round(total, 2); } } if (_this.customTaxes1) t1.total = t1.total + _this.customSurcharge1; if (_this.customTaxes2) t1.total = t1.total + _this.customSurcharge2; if (_this.customTaxes3) t1.total = t1.total + _this.customSurcharge3; if (_this.customTaxes4) t1.total = t1.total + _this.customSurcharge4; return t1.total; }, getItemTaxable$3(item, invoiceTotal, precision) { var t2, qty = A.round(item.quantity, 5), cost = A.round(item.cost, 5), itemDiscount = A.round(item.discount, 5), lineTotal = qty * cost, t1 = this.discount; if (t1 !== 0) if (this.isAmountDiscount) { t2 = invoiceTotal + t1; if (t2 !== 0) lineTotal -= invoiceTotal !== 0 ? lineTotal / t2 * t1 : 0; } else lineTotal *= (100 - t1) / 100; if (itemDiscount !== 0) lineTotal = this.isAmountDiscount ? lineTotal - itemDiscount : lineTotal - lineTotal * itemDiscount / 100; return A.round(lineTotal, precision); }, calculateTotal$1$precision(precision) { var t2, t3, t4, t5, t6, t7, t8, t9, taxAmount1, taxAmount2, taxAmount3, _this = this, t1 = {}; t1.total = _this.calculateSubtotal$1$precision(precision); t1.itemTax = 0; B.JSArray_methods.forEach$1(_this.lineItems._list, new A.CalculateInvoiceTotal_calculateTotal_closure(t1, _this, precision)); t2 = _this.discount; if (t2 !== 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - A.round(t2, precision); else t1.total = t3 - A.round(t3 * t2 / 100, precision); } t2 = _this.customSurcharge1; t3 = t2 !== 0; if (t3 && _this.customTaxes1) t1.total = t1.total + A.round(t2, precision); t4 = _this.customSurcharge2; t5 = t4 !== 0; if (t5 && _this.customTaxes2) t1.total = t1.total + A.round(t4, precision); t6 = _this.customSurcharge3; t7 = t6 !== 0; if (t7 && _this.customTaxes3) t1.total = t1.total + A.round(t6, precision); t8 = _this.customSurcharge4; t9 = t8 !== 0; if (t9 && _this.customTaxes4) t1.total = t1.total + A.round(t8, precision); if (!_this.usesInclusiveTaxes) { taxAmount1 = A.round(t1.total * _this.taxRate1 / 100, precision); taxAmount2 = A.round(t1.total * _this.taxRate2 / 100, precision); taxAmount3 = A.round(t1.total * _this.taxRate3 / 100, precision); t1.total = t1.total + (t1.itemTax + taxAmount1 + taxAmount2 + taxAmount3); } if (t3 && !_this.customTaxes1) t1.total = t1.total + A.round(t2, precision); if (t5 && !_this.customTaxes2) t1.total = t1.total + A.round(t4, precision); if (t7 && !_this.customTaxes3) t1.total = t1.total + A.round(t6, precision); if (t9 && !_this.customTaxes4) t1.total = t1.total + A.round(t8, precision); return t1.total; }, calculateSubtotal$1$precision(precision) { var t1 = {}; t1.total = 0; B.JSArray_methods.forEach$1(this.lineItems._list, new A.CalculateInvoiceTotal_calculateSubtotal_closure(t1, this, precision)); return t1.total; } }; A.CalculateInvoiceTotal_calculateTaxes_closure.prototype = { call$1(item) { var t4, _this = this, taxRate1 = A.round(item.taxRate1, 3), taxRate2 = A.round(item.taxRate2, 3), taxRate3 = A.round(item.taxRate3, 3), t1 = _this.$this, t2 = _this._box_0, t3 = _this.precision, lineTotal = t1.getItemTaxable$3(item, t2.total, t3); if (taxRate1 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate1, _this.useInclusiveTaxes, t3); t4 = _this.map; t4.update$3$ifAbsent(t4, item.taxName1, new A.CalculateInvoiceTotal_calculateTaxes__closure(t2), new A.CalculateInvoiceTotal_calculateTaxes__closure0(t2)); } if (taxRate2 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate2, _this.useInclusiveTaxes, t3); t4 = _this.map; t4.update$3$ifAbsent(t4, item.taxName2, new A.CalculateInvoiceTotal_calculateTaxes__closure1(t2), new A.CalculateInvoiceTotal_calculateTaxes__closure2(t2)); } if (taxRate3 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate3, _this.useInclusiveTaxes, t3); t1 = _this.map; t1.update$3$ifAbsent(t1, item.taxName3, new A.CalculateInvoiceTotal_calculateTaxes__closure3(t2), new A.CalculateInvoiceTotal_calculateTaxes__closure4(t2)); } }, $signature: 232 }; A.CalculateInvoiceTotal_calculateTaxes__closure.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes__closure0.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_calculateTaxes__closure1.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes__closure2.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_calculateTaxes__closure3.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes__closure4.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_calculateTaxes_closure0.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes_closure1.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_calculateTaxes_closure2.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes_closure3.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_calculateTaxes_closure4.prototype = { call$1(value) { return value + this._box_0.taxAmount; }, $signature: 198 }; A.CalculateInvoiceTotal_calculateTaxes_closure5.prototype = { call$0() { return this._box_0.taxAmount; }, $signature: 230 }; A.CalculateInvoiceTotal_getTaxable_closure.prototype = { call$1(invoiceItem) { var lineTotal = invoiceItem.quantity * invoiceItem.cost, t1 = invoiceItem.discount; if (t1 !== 0) lineTotal = this.$this.isAmountDiscount ? lineTotal - t1 : lineTotal - lineTotal * t1 / 100; this._box_0.total += lineTotal; }, $signature: 232 }; A.CalculateInvoiceTotal_calculateTotal_closure.prototype = { call$1(item) { var t1, t2, _this = this, qty = A.round(item.quantity, 5), cost = A.round(item.cost, 5), itemDiscount = A.round(item.discount, 5), taxRate1 = A.round(item.taxRate1, 3), taxRate2 = A.round(item.taxRate2, 3), taxRate3 = A.round(item.taxRate3, 3), lineTotal = qty * cost; if (itemDiscount !== 0) lineTotal = _this.$this.isAmountDiscount ? lineTotal - itemDiscount : lineTotal - A.round(lineTotal * itemDiscount / 100, _this.precision); t1 = _this.$this; t2 = t1.discount; if (t2 !== 0) if (t1.isAmountDiscount) { t1 = _this._box_0.total; if (t1 !== 0) lineTotal -= A.round(lineTotal / t1 * t2, _this.precision); } if (taxRate1 !== 0) { t1 = _this._box_0; t1.itemTax = t1.itemTax + A.round(lineTotal * taxRate1 / 100, _this.precision); } if (taxRate2 !== 0) { t1 = _this._box_0; t1.itemTax = t1.itemTax + A.round(lineTotal * taxRate2 / 100, _this.precision); } if (taxRate3 !== 0) { t1 = _this._box_0; t1.itemTax = t1.itemTax + A.round(lineTotal * taxRate3 / 100, _this.precision); } }, $signature: 232 }; A.CalculateInvoiceTotal_calculateSubtotal_closure.prototype = { call$1(item) { var t1, _this = this, qty = A.round(item.quantity, 5), cost = A.round(item.cost, 5), discount = A.round(item.discount, 5), lineTotal = qty * cost; if (discount !== 0) lineTotal = _this.$this.isAmountDiscount ? lineTotal - discount : lineTotal - A.round(lineTotal * discount / 100, _this.precision); t1 = _this._box_0; t1.total = t1.total + A.round(lineTotal, _this.precision); }, $signature: 232 }; A.EntityAction.prototype = { toString$0(_) { return A.toSnakeCase(this.super$EnumClass$toString(0)); }, get$isServerSide() { return B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_start, B.EntityAction_stop, B.EntityAction_markPaid, B.EntityAction_markSent, B.EntityAction_convertToInvoice, B.EntityAction_approve, B.EntityAction_cancelInvoice, B.EntityAction_resume, B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore, B.EntityAction_purge, B.EntityAction_sendNow], type$.JSArray_legacy_EntityAction), this); }, toApiParam$0() { var _this = this, value = A.toSnakeCase(_this.super$EnumClass$toString(0)); if (_this === B.EntityAction_sendEmail || _this === B.EntityAction_bulkSendEmail) return "email"; else if (_this === B.EntityAction_cancelInvoice) return "cancel"; else if (_this === B.EntityAction_convertToExpense) return "expense"; return value; } }; A.PaymentListResponse.prototype = {}; A.PaymentItemResponse.prototype = {}; A.PaymentEntity.prototype = { get$entityType() { return B.EntityType_payment; }, get$calculatedStatusId() { var t1 = this.applied; if (t1 < this.amount) return t1 === 0 ? "-1" : "-2"; return this.statusId; }, compareTo$7$clientMap$invoiceMap$payment$paymentTypeMap$sortAscending$sortField$userMap(_, clientMap, invoiceMap, payment, paymentTypeMap, sortAscending, sortField, userMap) { var response, t1, t2, invoiceA, invoiceB, clientA, clientB, typeA, typeB, userA, userB, stateA, stateB, _null = null, _s8_ = "archived", paymentA = sortAscending ? this : payment, paymentB = sortAscending ? payment : this; switch (sortField) { case "amount": response = B.JSNumber_methods.compareTo$1(paymentA.amount, paymentB.amount); break; case "exchange_rate": response = B.JSNumber_methods.compareTo$1(paymentA.exchangeRate, paymentB.exchangeRate); break; case "refunded": response = B.JSNumber_methods.compareTo$1(paymentA.refunded, paymentB.refunded); break; case "number": response = B.JSString_methods.compareTo$1(paymentA.number.toLowerCase(), paymentB.number.toLowerCase()); break; case "transaction_reference": response = B.JSString_methods.compareTo$1(paymentA.transactionReference, paymentB.transactionReference); break; case "date": response = J.compareTo$1$ns(paymentA.date, paymentB.date); break; case "private_notes": response = B.JSString_methods.compareTo$1(paymentA.privateNotes.toLowerCase(), paymentB.date.toLowerCase()); break; case "updated_at": response = B.JSInt_methods.compareTo$1(paymentA.updatedAt, paymentB.updatedAt); break; case "created_at": response = B.JSInt_methods.compareTo$1(paymentA.createdAt, paymentB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(paymentA.archivedAt, paymentB.archivedAt); break; case "status": response = B.JSString_methods.compareTo$1(paymentA.statusId, paymentB.statusId); break; case "custom1": response = B.JSString_methods.compareTo$1(paymentA.customValue1.toLowerCase(), paymentB.customValue1.toLowerCase()); break; case "custom2": response = B.JSString_methods.compareTo$1(paymentA.customValue2.toLowerCase(), paymentB.customValue2.toLowerCase()); break; case "custom3": response = B.JSString_methods.compareTo$1(paymentA.customValue3.toLowerCase(), paymentB.customValue3.toLowerCase()); break; case "custom4": response = B.JSString_methods.compareTo$1(paymentA.customValue4.toLowerCase(), paymentB.customValue4.toLowerCase()); break; case "invoice_number": t1 = paymentA.get$invoiceId(); t2 = invoiceMap._map$_map; invoiceA = t2.$index(0, t1); if (invoiceA == null) invoiceA = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); invoiceB = t2.$index(0, paymentB.get$invoiceId()); if (invoiceB == null) invoiceB = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); response = B.JSString_methods.compareTo$1(invoiceA.number.toLowerCase(), invoiceB.number.toLowerCase()); break; case "client": t1 = paymentA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, paymentB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "type": t1 = paymentA.typeId; t2 = paymentTypeMap._map$_map; typeA = t2.$index(0, t1); if (typeA == null) typeA = A._$PaymentTypeEntity$_("", ""); typeB = t2.$index(0, paymentB.typeId); if (typeB == null) typeB = A._$PaymentTypeEntity$_("", ""); return B.JSString_methods.compareTo$1(typeA.name.toLowerCase(), typeB.name.toLowerCase()); case "assigned_to": t1 = paymentA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, paymentB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = paymentA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, paymentB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "entity_state": if (!paymentA.get$isArchived() && !paymentA.isDeleted) t1 = "active"; else t1 = paymentA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!paymentB.get$isArchived() && !paymentB.isDeleted) t1 = "active"; else t1 = paymentB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; default: A.print("## ERROR: sort by payment." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(payment.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.number, _this.transactionReference, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.number, _this.transactionReference, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1) if (userCompany.canEditEntity$1(_this)) { if (!multiselect) { if (includeEdit) actions.push(B.EntityAction_edit); if (_this.applied < _this.amount) actions.push(B.EntityAction_applyPayment); if (_this.get$completedAmount() > 0) actions.push(B.EntityAction_refundPayment); } if (client != null && client.get$hasEmailAddress()) actions.push(B.EntityAction_sendEmail); } if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); if (userCompany.canEditEntity$1(_this) && _this.get$isArchived()) actions.push(B.EntityAction_restore); if (userCompany.canEditEntity$1(_this) && !_this.get$isArchived() && t1) actions.push(B.EntityAction_archive); if (userCompany.canEditEntity$1(_this)) t1 = !_this.get$isArchived() && t1 || _this.get$isArchived(); else t1 = false; if (t1) actions.push(B.EntityAction_delete); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayName() { return this.number; }, get$listDisplayAmount() { return this.amount; }, get$invoicePaymentables() { var t1 = this.paymentables._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(t1, new A.PaymentEntity_invoicePaymentables_closure(), t2), true, t2._eval$1("Iterable.E")); }, get$creditPaymentables() { var t1 = this.paymentables._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(t1, new A.PaymentEntity_creditPaymentables_closure(), t2), true, t2._eval$1("Iterable.E")); }, get$invoiceId() { var invoicePaymentables = B.JSArray_methods.firstWhere$2$orElse(this.paymentables._list, new A.PaymentEntity_invoiceId_closure(), new A.PaymentEntity_invoiceId_closure0()); if (invoicePaymentables == null) return null; return invoicePaymentables.get$isEmpty(invoicePaymentables) ? null : invoicePaymentables.invoiceId; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, get$completedAmount() { var _this = this; if (_this.isDeleted) return 0; if (B.JSArray_methods.contains$1(A._setArrayType(["2", "3"], type$.JSArray_legacy_String), _this.statusId)) return 0; return _this.amount - _this.refunded; } }; A.PaymentEntity_invoicePaymentables_closure.prototype = { call$1(p) { return p.get$entityType() === B.EntityType_invoice; }, $signature: 206 }; A.PaymentEntity_creditPaymentables_closure.prototype = { call$1(p) { return p.get$entityType() === B.EntityType_credit; }, $signature: 206 }; A.PaymentEntity_invoiceId_closure.prototype = { call$1(p) { return p.get$entityType() === B.EntityType_invoice; }, $signature: 206 }; A.PaymentEntity_invoiceId_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.PaymentableEntity.prototype = { get$isEmpty(_) { var t1 = this.invoiceId; if ((t1 == null ? "" : t1).length === 0) { t1 = this.creditId; t1 = (t1 == null ? "" : t1).length === 0 && this.amount === 0; } else t1 = false; return t1; }, get$entityType() { var t1 = this.invoiceId; return (t1 == null ? "" : t1).length === 0 ? B.EntityType_credit : B.EntityType_invoice; } }; A._$PaymentListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_ORM)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.PaymentListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentEntity, t3 = type$.ListBuilder_legacy_PaymentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._payment_model$_data = t6; result._payment_model$_$v = null; } t4 = result._payment_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._payment_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_ORM)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_NQk0; }, get$wireName() { return "PaymentListResponse"; } }; A._$PaymentItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_CxZ0)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.PaymentItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.PaymentEntityBuilder(); t3._payment_model$_$v = t2; result._payment_model$_data = t3; result._payment_model$_$v = null; } t2 = result._payment_model$_data; if (t2 == null) t2 = result._payment_model$_data = new A.PaymentEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_CxZ0)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._payment_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_puA; }, get$wireName() { return "PaymentItemResponse"; } }; A._$PaymentEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["amount", serializers.serialize$2$specifiedType(object.amount, B.FullType_MME), "applied", serializers.serialize$2$specifiedType(object.applied, B.FullType_MME), "refunded", serializers.serialize$2$specifiedType(object.refunded, B.FullType_MME), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, B.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, B.FullType_h8g), "transaction_reference", serializers.serialize$2$specifiedType(object.transactionReference, B.FullType_h8g), "date", serializers.serialize$2$specifiedType(object.date, B.FullType_h8g), "type_id", serializers.serialize$2$specifiedType(object.typeId, B.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, B.FullType_MME), "exchange_currency_id", serializers.serialize$2$specifiedType(object.exchangeCurrencyId, B.FullType_h8g), "is_manual", serializers.serialize$2$specifiedType(object.isManual, B.FullType_MtR), "project_id", serializers.serialize$2$specifiedType(object.projectId, B.FullType_h8g), "vendor_id", serializers.serialize$2$specifiedType(object.vendorId, B.FullType_h8g), "invitation_id", serializers.serialize$2$specifiedType(object.invitationId, B.FullType_h8g), "client_contact_id", serializers.serialize$2$specifiedType(object.clientContactId, B.FullType_h8g), "company_gateway_id", serializers.serialize$2$specifiedType(object.companyGatewayId, B.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, B.FullType_h8g), "paymentables", serializers.serialize$2$specifiedType(object.paymentables, B.FullType_U06), "invoices", serializers.serialize$2$specifiedType(object.invoices, B.FullType_U06), "credits", serializers.serialize$2$specifiedType(object.credits, B.FullType_U06), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isApplying; if (value != null) { result.push("isApplying"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.sendEmail; if (value != null) { result.push("sendEmail"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.gatewayRefund; if (value != null) { result.push("gatewayRefund"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new A.PaymentEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentableEntity, t3 = type$.ListBuilder_legacy_PaymentableEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "amount": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_amount = t4; break; case "applied": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_payment_model$_$this()._applied = t4; break; case "refunded": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_payment_model$_$this()._refunded = t4; break; case "number": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_number = t4; break; case "client_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_clientId = t4; break; case "status_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_statusId = t4; break; case "transaction_reference": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._transactionReference = t4; break; case "date": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_date = t4; break; case "type_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._typeId = t4; break; case "private_notes": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_privateNotes = t4; break; case "custom_value1": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue1 = t4; break; case "custom_value2": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue2 = t4; break; case "custom_value3": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue3 = t4; break; case "custom_value4": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue4 = t4; break; case "exchange_rate": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_exchangeRate = t4; break; case "exchange_currency_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._exchangeCurrencyId = t4; break; case "is_manual": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._isManual = t4; break; case "project_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_projectId = t4; break; case "vendor_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_vendorId = t4; break; case "invitation_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._invitationId = t4; break; case "client_contact_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._clientContactId = t4; break; case "company_gateway_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._companyGatewayId = t4; break; case "currency_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_currencyId = t4; break; case "isApplying": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._isApplying = t4; break; case "sendEmail": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._sendEmail = t4; break; case "gatewayRefund": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._gatewayRefund = t4; break; case "paymentables": t4 = result.get$_payment_model$_$this(); t5 = t4._paymentables; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._paymentables = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "invoices": t4 = result.get$_payment_model$_$this(); t5 = t4._payment_model$_invoices; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._payment_model$_invoices = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "credits": t4 = result.get$_payment_model$_$this(); t5 = t4._payment_model$_credits; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._payment_model$_credits = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._payment_model$_isChanged = t4; break; case "created_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_createdAt = t4; break; case "updated_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_updatedAt = t4; break; case "archived_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_archivedAt = t4; break; case "is_deleted": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_model$_$this()._payment_model$_isDeleted = t4; break; case "user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_createdUserId = t4; break; case "assigned_user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_assignedUserId = t4; break; case "id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_6PY; }, get$wireName() { return "PaymentEntity"; } }; A._$PaymentableEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["amount", serializers.serialize$2$specifiedType(object.amount, B.FullType_MME), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.createdAt; if (value != null) { result.push("created_at"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.updatedAt; if (value != null) { result.push("updated_at"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.PaymentableEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_updatedAt = t1; break; case "invoice_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_invoiceId = t1; break; case "credit_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._creditId = t1; break; case "amount": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_amount = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_FIw; }, get$wireName() { return "PaymentableEntity"; } }; A._$PaymentListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._payment_model$__hashCode; return t1 == null ? this._payment_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_model$_$v = null; } t1 = _this._payment_model$_data; return t1 == null ? _this._payment_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "PaymentListResponse", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$PaymentListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_model$_$v = t1; return _$result; } }; A._$PaymentItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._payment_model$__hashCode; return t1 == null ? this._payment_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.PaymentEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._payment_model$_$v = t1; _this._payment_model$_data = t2; _this._payment_model$_$v = null; } t1 = _this._payment_model$_data; return t1 == null ? _this._payment_model$_data = new A.PaymentEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "PaymentItemResponse", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$PaymentItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_model$_$v = t1; return _$result; } }; A._$PaymentEntity.prototype = { rebuild$1(updates) { var t1 = new A.PaymentEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._payment_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.PaymentEntity && _this.amount === other.amount && _this.applied === other.applied && _this.refunded === other.refunded && _this.number === other.number && _this.clientId === other.clientId && _this.statusId === other.statusId && _this.transactionReference === other.transactionReference && _this.date == other.date && _this.typeId == other.typeId && _this.privateNotes === other.privateNotes && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.exchangeRate === other.exchangeRate && _this.exchangeCurrencyId === other.exchangeCurrencyId && _this.isManual === other.isManual && _this.projectId === other.projectId && _this.vendorId === other.vendorId && _this.invitationId === other.invitationId && _this.clientContactId === other.clientContactId && _this.companyGatewayId === other.companyGatewayId && _this.currencyId === other.currencyId && _this.isApplying == other.isApplying && _this.sendEmail == other.sendEmail && _this.gatewayRefund == other.gatewayRefund && J.$eq$(_this.paymentables, other.paymentables) && J.$eq$(_this.invoices, other.invoices) && J.$eq$(_this.credits, other.credits) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._payment_model$__hashCode; return t1 == null ? _this._payment_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSNumber_methods.get$hashCode(_this.amount)), B.JSNumber_methods.get$hashCode(_this.applied)), B.JSNumber_methods.get$hashCode(_this.refunded)), B.JSString_methods.get$hashCode(_this.number)), B.JSString_methods.get$hashCode(_this.clientId)), B.JSString_methods.get$hashCode(_this.statusId)), B.JSString_methods.get$hashCode(_this.transactionReference)), J.get$hashCode$(_this.date)), J.get$hashCode$(_this.typeId)), B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSNumber_methods.get$hashCode(_this.exchangeRate)), B.JSString_methods.get$hashCode(_this.exchangeCurrencyId)), B.JSBool_methods.get$hashCode(_this.isManual)), B.JSString_methods.get$hashCode(_this.projectId)), B.JSString_methods.get$hashCode(_this.vendorId)), B.JSString_methods.get$hashCode(_this.invitationId)), B.JSString_methods.get$hashCode(_this.clientContactId)), B.JSString_methods.get$hashCode(_this.companyGatewayId)), B.JSString_methods.get$hashCode(_this.currencyId)), J.get$hashCode$(_this.isApplying)), J.get$hashCode$(_this.sendEmail)), J.get$hashCode$(_this.gatewayRefund)), J.get$hashCode$(_this.paymentables)), J.get$hashCode$(_this.invoices)), J.get$hashCode$(_this.credits)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "applied", _this.applied); t2.add$2(t1, "refunded", _this.refunded); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "transactionReference", _this.transactionReference); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "exchangeCurrencyId", _this.exchangeCurrencyId); t2.add$2(t1, "isManual", _this.isManual); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "invitationId", _this.invitationId); t2.add$2(t1, "clientContactId", _this.clientContactId); t2.add$2(t1, "companyGatewayId", _this.companyGatewayId); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "isApplying", _this.isApplying); t2.add$2(t1, "sendEmail", _this.sendEmail); t2.add$2(t1, "gatewayRefund", _this.gatewayRefund); t2.add$2(t1, "paymentables", _this.paymentables); t2.add$2(t1, "invoices", _this.invoices); t2.add$2(t1, "credits", _this.credits); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount() { return this.amount; }, get$clientId(receiver) { return this.clientId; }, get$date() { return this.date; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.PaymentEntityBuilder.prototype = { get$amount() { return this.get$_payment_model$_$this()._payment_model$_amount; }, get$date() { return this.get$_payment_model$_$this()._payment_model$_date; }, get$paymentables() { var t1 = this.get$_payment_model$_$this(), t2 = t1._paymentables; return t2 == null ? t1._paymentables = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$invoices() { var t1 = this.get$_payment_model$_$this(), t2 = t1._payment_model$_invoices; return t2 == null ? t1._payment_model$_invoices = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$credits() { var t1 = this.get$_payment_model$_$this(), t2 = t1._payment_model$_credits; return t2 == null ? t1._payment_model$_credits = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$id(_) { return this.get$_payment_model$_$this()._payment_model$_id; }, get$_payment_model$_$this() { var t1, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { _this._payment_model$_amount = $$v.amount; _this._applied = $$v.applied; _this._refunded = $$v.refunded; _this._payment_model$_number = $$v.number; _this._payment_model$_clientId = $$v.clientId; _this._payment_model$_statusId = $$v.statusId; _this._transactionReference = $$v.transactionReference; _this._payment_model$_date = $$v.date; _this._typeId = $$v.typeId; _this._payment_model$_privateNotes = $$v.privateNotes; _this._payment_model$_customValue1 = $$v.customValue1; _this._payment_model$_customValue2 = $$v.customValue2; _this._payment_model$_customValue3 = $$v.customValue3; _this._payment_model$_customValue4 = $$v.customValue4; _this._payment_model$_exchangeRate = $$v.exchangeRate; _this._exchangeCurrencyId = $$v.exchangeCurrencyId; _this._isManual = $$v.isManual; _this._payment_model$_projectId = $$v.projectId; _this._payment_model$_vendorId = $$v.vendorId; _this._invitationId = $$v.invitationId; _this._clientContactId = $$v.clientContactId; _this._companyGatewayId = $$v.companyGatewayId; _this._payment_model$_currencyId = $$v.currencyId; _this._isApplying = $$v.isApplying; _this._sendEmail = $$v.sendEmail; _this._gatewayRefund = $$v.gatewayRefund; t1 = $$v.paymentables; t1.toString; _this._paymentables = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invoices; t1.toString; _this._payment_model$_invoices = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.credits; t1.toString; _this._payment_model$_credits = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_model$_isChanged = $$v.isChanged; _this._payment_model$_createdAt = $$v.createdAt; _this._payment_model$_updatedAt = $$v.updatedAt; _this._payment_model$_archivedAt = $$v.archivedAt; _this._payment_model$_isDeleted = $$v.isDeleted; _this._payment_model$_createdUserId = $$v.createdUserId; _this._payment_model$_assignedUserId = $$v.assignedUserId; _this._payment_model$_id = $$v.id; _this._payment_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, exception, _this = this, _s13_ = "PaymentEntity", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$_payment_model$_$this()._payment_model$_amount; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "amount")); t2 = _this.get$_payment_model$_$this()._applied; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "applied")); t3 = _this.get$_payment_model$_$this()._refunded; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "refunded")); t4 = _this.get$_payment_model$_$this()._payment_model$_number; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "number")); t5 = _this.get$_payment_model$_$this()._payment_model$_clientId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientId")); t6 = _this.get$_payment_model$_$this()._payment_model$_statusId; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "statusId")); t7 = _this.get$_payment_model$_$this()._transactionReference; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "transactionReference")); t8 = _this.get$_payment_model$_$this()._payment_model$_date; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "date")); t9 = _this.get$_payment_model$_$this()._typeId; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "typeId")); t10 = _this.get$_payment_model$_$this()._payment_model$_privateNotes; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "privateNotes")); t11 = _this.get$_payment_model$_$this()._payment_model$_customValue1; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue1")); t12 = _this.get$_payment_model$_$this()._payment_model$_customValue2; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue2")); t13 = _this.get$_payment_model$_$this()._payment_model$_customValue3; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue3")); t14 = _this.get$_payment_model$_$this()._payment_model$_customValue4; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue4")); t15 = _this.get$_payment_model$_$this()._payment_model$_exchangeRate; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t16 = _this.get$_payment_model$_$this()._exchangeCurrencyId; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "exchangeCurrencyId")); t17 = _this.get$_payment_model$_$this()._isManual; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "isManual")); t18 = _this.get$_payment_model$_$this()._payment_model$_projectId; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "projectId")); t19 = _this.get$_payment_model$_$this()._payment_model$_vendorId; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "vendorId")); t20 = _this.get$_payment_model$_$this()._invitationId; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "invitationId")); t21 = _this.get$_payment_model$_$this()._clientContactId; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientContactId")); t22 = _this.get$_payment_model$_$this()._companyGatewayId; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "companyGatewayId")); t23 = _this.get$_payment_model$_$this()._payment_model$_currencyId; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "currencyId")); t24 = _this.get$_payment_model$_$this()._isApplying; t25 = _this.get$_payment_model$_$this()._sendEmail; t26 = _this.get$_payment_model$_$this()._gatewayRefund; t27 = _this.get$paymentables().build$0(0); t28 = _this.get$invoices().build$0(0); t29 = _this.get$credits().build$0(0); t30 = _this.get$_payment_model$_$this()._payment_model$_isChanged; t31 = _this.get$_payment_model$_$this()._payment_model$_createdAt; if (t31 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t32 = _this.get$_payment_model$_$this()._payment_model$_updatedAt; if (t32 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t33 = _this.get$_payment_model$_$this()._payment_model$_archivedAt; if (t33 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t34 = _this.get$_payment_model$_$this()._payment_model$_isDeleted; t35 = _this.get$_payment_model$_$this()._payment_model$_createdUserId; t36 = _this.get$_payment_model$_$this()._payment_model$_assignedUserId; t37 = _this.get$_payment_model$_$this()._payment_model$_id; if (t37 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$PaymentEntity$_(t1, t2, t33, t36, t21, t5, t22, t31, t35, t29, t23, t11, t12, t13, t14, t8, t16, t15, t26, t37, t20, t28, t24, t30, t34, t17, t4, t27, t10, t18, t3, t25, t6, t7, t9, t32, t19); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "paymentables"; _this.get$paymentables().build$0(0); _$failedField = "invoices"; _this.get$invoices().build$0(0); _$failedField = "credits"; _this.get$credits().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_model$_$v = t1; return _$result; } }; A._$PaymentableEntity.prototype = { rebuild$1(updates) { var t1 = new A.PaymentableEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._payment_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.PaymentableEntity && _this.createdAt == other.createdAt && _this.updatedAt == other.updatedAt && _this.invoiceId == other.invoiceId && _this.creditId == other.creditId && _this.amount === other.amount && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._payment_model$__hashCode; return t1 == null ? _this._payment_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.createdAt)), J.get$hashCode$(_this.updatedAt)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.creditId)), B.JSNumber_methods.get$hashCode(_this.amount)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentableEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount() { return this.amount; }, get$id(receiver) { return this.id; } }; A.PaymentableEntityBuilder.prototype = { get$amount() { return this.get$_payment_model$_$this()._payment_model$_amount; }, get$id(_) { return this.get$_payment_model$_$this()._payment_model$_id; }, get$_payment_model$_$this() { var _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { _this._payment_model$_createdAt = $$v.createdAt; _this._payment_model$_updatedAt = $$v.updatedAt; _this._payment_model$_invoiceId = $$v.invoiceId; _this._creditId = $$v.creditId; _this._payment_model$_amount = $$v.amount; _this._payment_model$_id = $$v.id; _this._payment_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, _this = this, _s17_ = "PaymentableEntity", _$result = _this._payment_model$_$v; if (_$result == null) { t1 = _this.get$_payment_model$_$this()._payment_model$_createdAt; t2 = _this.get$_payment_model$_$this()._payment_model$_updatedAt; t3 = _this.get$_payment_model$_$this()._payment_model$_invoiceId; t4 = _this.get$_payment_model$_$this()._creditId; t5 = _this.get$_payment_model$_$this()._payment_model$_amount; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "amount")); t6 = _this.get$_payment_model$_$this()._payment_model$_id; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "id")); _$result = A._$PaymentableEntity$_(t5, t1, t4, t6, t3, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._payment_model$_$v = _$result; } }; A._PaymentEntity_Object_BaseEntity.prototype = {}; A._PaymentEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; A._PaymentableEntity_Object_SelectableEntity.prototype = {}; A.PaymentTermListResponse.prototype = {}; A.PaymentTermItemResponse.prototype = {}; A.PaymentTermEntity.prototype = { get$entityType() { return B.EntityType_paymentTerm; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType(["" + this.numDays], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; } }; A._$PaymentTermListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_kvD)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.PaymentTermListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentTermEntity, t3 = type$.ListBuilder_legacy_PaymentTermEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_term_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._payment_term_model$_data = t6; result._payment_term_model$_$v = null; } t4 = result._payment_term_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._payment_term_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_kvD)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yNA0; }, get$wireName() { return "PaymentTermListResponse"; } }; A._$PaymentTermItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_y87)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.PaymentTermItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentTermEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_term_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.PaymentTermEntityBuilder(); t3._payment_term_model$_$v = t2; result._payment_term_model$_data = t3; result._payment_term_model$_$v = null; } t2 = result._payment_term_model$_data; if (t2 == null) t2 = result._payment_term_model$_data = new A.PaymentTermEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_y87)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._payment_term_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yNA; }, get$wireName() { return "PaymentTermItemResponse"; } }; A._$PaymentTermEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "num_days", serializers.serialize$2$specifiedType(object.numDays, B.FullType_kjq), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.PaymentTermEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_name = t1; break; case "num_days": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_term_model$_$this()._numDays = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_term_model$_$this()._payment_term_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_term_model$_$this()._payment_term_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wTh; }, get$wireName() { return "PaymentTermEntity"; } }; A._$PaymentTermListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTermListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._payment_term_model$__hashCode; return t1 == null ? this._payment_term_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentTermListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_term_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_term_model$_$v = null; } t1 = _this._payment_term_model$_data; return t1 == null ? _this._payment_term_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTermEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "PaymentTermListResponse", _$result = null; try { _$result0 = _this._payment_term_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$PaymentTermListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_term_model$_$v = t1; return _$result; } }; A._$PaymentTermItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTermItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._payment_term_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._payment_term_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentTermItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.PaymentTermEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._payment_term_model$_$v = t1; _this._payment_term_model$_data = t2; _this._payment_term_model$_$v = null; } t1 = _this._payment_term_model$_data; return t1 == null ? _this._payment_term_model$_data = new A.PaymentTermEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._payment_term_model$_$v; if (_$result0 == null) _$result0 = new A._$PaymentTermItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("PaymentTermItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_term_model$_$v = t1; return _$result; } }; A._$PaymentTermEntity.prototype = { rebuild$1(updates) { var t1 = new A.PaymentTermEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._payment_term_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.PaymentTermEntity && _this.name === other.name && _this.numDays === other.numDays && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._payment_term_model$__hashCode; return t1 == null ? _this._payment_term_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSInt_methods.get$hashCode(_this.numDays)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "numDays", _this.numDays); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.PaymentTermEntityBuilder.prototype = { get$name(_) { return this.get$_payment_term_model$_$this()._payment_term_model$_name; }, get$id(_) { return this.get$_payment_term_model$_$this()._payment_term_model$_id; }, get$_payment_term_model$_$this() { var _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { _this._payment_term_model$_name = $$v.name; _this._numDays = $$v.numDays; _this._payment_term_model$_isChanged = $$v.isChanged; _this._payment_term_model$_createdAt = $$v.createdAt; _this._payment_term_model$_updatedAt = $$v.updatedAt; _this._payment_term_model$_archivedAt = $$v.archivedAt; _this._payment_term_model$_isDeleted = $$v.isDeleted; _this._payment_term_model$_createdUserId = $$v.createdUserId; _this._payment_term_model$_assignedUserId = $$v.assignedUserId; _this._payment_term_model$_id = $$v.id; _this._payment_term_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s17_ = "PaymentTermEntity", _$result = _this._payment_term_model$_$v; if (_$result == null) { t1 = _this.get$_payment_term_model$_$this()._payment_term_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "name")); t2 = _this.get$_payment_term_model$_$this()._numDays; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "numDays")); t3 = _this.get$_payment_term_model$_$this()._payment_term_model$_isChanged; t4 = _this.get$_payment_term_model$_$this()._payment_term_model$_createdAt; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "createdAt")); t5 = _this.get$_payment_term_model$_$this()._payment_term_model$_updatedAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "updatedAt")); t6 = _this.get$_payment_term_model$_$this()._payment_term_model$_archivedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "archivedAt")); t7 = _this.get$_payment_term_model$_$this()._payment_term_model$_isDeleted; t8 = _this.get$_payment_term_model$_$this()._payment_term_model$_createdUserId; t9 = _this.get$_payment_term_model$_$this()._payment_term_model$_assignedUserId; t10 = _this.get$_payment_term_model$_$this()._payment_term_model$_id; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "id")); _$result = A._$PaymentTermEntity$_(t6, t9, t4, t8, t10, t3, t7, t1, t2, t5); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._payment_term_model$_$v = _$result; } }; A._PaymentTermEntity_Object_BaseEntity.prototype = {}; A._PaymentTermEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.ProductListResponse.prototype = {}; A.ProductItemResponse.prototype = {}; A.ProductEntity.prototype = { get$clone(_) { return this.rebuild$1(new A.ProductEntity_clone_closure()); }, get$entityType() { return B.EntityType_product; }, get$listDisplayName() { return this.productKey; }, get$listDisplayAmount() { return this.price; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, compareTo$4(_, product, sortField, sortAscending, userMap) { var response, t1, t2, userA, userB, stateA, stateB, _null = null, _s8_ = "archived", productA = sortAscending ? this : product, productB = sortAscending ? product : this; switch (sortField) { case "product_key": response = B.JSString_methods.compareTo$1(productA.productKey.toLowerCase(), productB.productKey.toLowerCase()); break; case "price": response = B.JSNumber_methods.compareTo$1(productA.price, productB.price); break; case "cost": response = B.JSNumber_methods.compareTo$1(productA.cost, productB.cost); break; case "quantity": response = B.JSNumber_methods.compareTo$1(productA.quantity, productB.quantity); break; case "updated_at": response = B.JSInt_methods.compareTo$1(productA.updatedAt, productB.updatedAt); break; case "created_at": response = B.JSInt_methods.compareTo$1(productA.createdAt, productB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(productA.archivedAt, productB.archivedAt); break; case "description": response = B.JSString_methods.compareTo$1(productA.notes.toLowerCase(), productB.notes.toLowerCase()); break; case "assigned_to": t1 = productA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, productB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = productA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, productB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "entity_state": if (!productA.get$isArchived() && !productA.isDeleted) t1 = "active"; else t1 = productA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!productB.get$isArchived() && !productB.isDeleted) t1 = "active"; else t1 = productB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "custom1": response = B.JSString_methods.compareTo$1(productA.customValue1.toLowerCase(), productB.customValue1.toLowerCase()); break; case "custom2": response = B.JSString_methods.compareTo$1(productA.customValue2.toLowerCase(), productB.customValue2.toLowerCase()); break; case "custom3": response = B.JSString_methods.compareTo$1(productA.customValue3.toLowerCase(), productB.customValue3.toLowerCase()); break; case "custom4": response = B.JSString_methods.compareTo$1(productA.customValue4.toLowerCase(), productB.customValue4.toLowerCase()); break; case "documents": response = B.JSInt_methods.compareTo$1(productA.documents._list.length, productB.documents._list.length); break; default: A.print("## ERROR: sort by product." + A.S(sortField) + " is not implemented"); response = 0; break; } return response === 0 ? B.JSInt_methods.compareTo$1(product.createdAt, this.createdAt) : response; }, compareTo$1($receiver, product) { return this.compareTo$4($receiver, product, null, true, null); }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.productKey, _this.notes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.notes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var t2, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !this.isDeleted; if (t1) { if (!multiselect) t2 = includeEdit && userCompany.canEditEntity$1(this); else t2 = false; if (t2) actions.push(B.EntityAction_edit); if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice) && true) actions.push(B.EntityAction_newInvoice); if (userCompany.can$2(B.UserPermission_create, B.EntityType_purchaseOrder) && true) actions.push(B.EntityAction_newPurchaseOrder); } if (userCompany.can$2(B.UserPermission_create, B.EntityType_product) && !multiselect) actions.push(B.EntityAction_clone); if (t1 && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); } }; A.ProductEntity_clone_closure.prototype = { call$1(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_product_model$_$this()._product_model$_id = "" + t1; B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); b.get$_product_model$_$this()._product_model$_isChanged = false; b.get$_product_model$_$this()._product_model$_isDeleted = false; return b; }, $signature: 169 }; A._$ProductListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_GBo)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ProductListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ProductEntity, t3 = type$.ListBuilder_legacy_ProductEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._product_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._product_model$_data = t6; result._product_model$_$v = null; } t4 = result._product_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._product_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_GBo)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ooa; }, get$wireName() { return "ProductListResponse"; } }; A._$ProductItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Art)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ProductItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ProductEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._product_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ProductEntityBuilder(); t3.get$_product_model$_$this()._stockQuantity = 0; t3.get$_product_model$_$this()._product_model$_stockNotification = true; t3.get$_product_model$_$this()._product_model$_stockNotificationThreshold = 0; t3._product_model$_$v = t2; result._product_model$_data = t3; result._product_model$_$v = null; } t2 = result._product_model$_data; if (t2 == null) { t2 = new A.ProductEntityBuilder(); t2.get$_product_model$_$this()._stockQuantity = 0; t2.get$_product_model$_$this()._product_model$_stockNotification = true; t2.get$_product_model$_$this()._product_model$_stockNotificationThreshold = 0; result._product_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Art)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._product_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_mxd; }, get$wireName() { return "ProductItemResponse"; } }; A._$ProductEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["product_key", serializers.serialize$2$specifiedType(object.productKey, B.FullType_h8g), "notes", serializers.serialize$2$specifiedType(object.notes, B.FullType_h8g), "cost", serializers.serialize$2$specifiedType(object.cost, B.FullType_MME), "price", serializers.serialize$2$specifiedType(object.price, B.FullType_MME), "quantity", serializers.serialize$2$specifiedType(object.quantity, B.FullType_MME), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, B.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, B.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, B.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, B.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, B.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, B.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "in_stock_quantity", serializers.serialize$2$specifiedType(object.stockQuantity, B.FullType_kjq), "stock_notification_threshold", serializers.serialize$2$specifiedType(object.stockNotificationThreshold, B.FullType_kjq), "stock_notification", serializers.serialize$2$specifiedType(object.stockNotification, B.FullType_MtR), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "product_key": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._productKey = t4; break; case "notes": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._notes = t4; break; case "cost": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._cost = t4; break; case "price": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._product_model$_price = t4; break; case "quantity": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._quantity = t4; break; case "tax_name1": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName1 = t4; break; case "tax_rate1": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate1 = t4; break; case "tax_name2": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName2 = t4; break; case "tax_rate2": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate2 = t4; break; case "tax_name3": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName3 = t4; break; case "tax_rate3": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate3 = t4; break; case "custom_value1": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue1 = t4; break; case "custom_value2": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue2 = t4; break; case "custom_value3": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue3 = t4; break; case "custom_value4": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue4 = t4; break; case "in_stock_quantity": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_model$_$this()._stockQuantity = t4; break; case "stock_notification_threshold": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_model$_$this()._product_model$_stockNotificationThreshold = t4; break; case "stock_notification": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_product_model$_$this()._product_model$_stockNotification = t4; break; case "documents": t4 = result.get$_product_model$_$this(); t5 = t4._product_model$_documents; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._product_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_product_model$_$this()._product_model$_isChanged = t4; break; case "created_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_model$_$this()._product_model$_createdAt = t4; break; case "updated_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_model$_$this()._product_model$_updatedAt = t4; break; case "archived_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_model$_$this()._product_model$_archivedAt = t4; break; case "is_deleted": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_product_model$_$this()._product_model$_isDeleted = t4; break; case "user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_createdUserId = t4; break; case "assigned_user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_assignedUserId = t4; break; case "id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_model$_$this()._product_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_PiJ; }, get$wireName() { return "ProductEntity"; } }; A._$ProductListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProductListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._product_model$__hashCode; return t1 == null ? this._product_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProductListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._product_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._product_model$_$v = null; } t1 = _this._product_model$_data; return t1 == null ? _this._product_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProductEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProductListResponse", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProductListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._product_model$_$v = t1; return _$result; } }; A._$ProductItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProductItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._product_model$__hashCode; return t1 == null ? this._product_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProductItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._product_model$_$v = t1; _this._product_model$_data = t2; _this._product_model$_$v = null; } t1 = _this._product_model$_data; if (t1 == null) { t1 = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(t1); _this._product_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProductItemResponse", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProductItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._product_model$_$v = t1; return _$result; } }; A._$ProductEntity.prototype = { rebuild$1(updates) { var t1 = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._product_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ProductEntity && _this.productKey === other.productKey && _this.notes === other.notes && _this.cost === other.cost && _this.price === other.price && _this.quantity === other.quantity && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.stockQuantity === other.stockQuantity && _this.stockNotificationThreshold === other.stockNotificationThreshold && _this.stockNotification === other.stockNotification && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._product_model$__hashCode; return t1 == null ? _this._product_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.productKey)), B.JSString_methods.get$hashCode(_this.notes)), B.JSNumber_methods.get$hashCode(_this.cost)), B.JSNumber_methods.get$hashCode(_this.price)), B.JSNumber_methods.get$hashCode(_this.quantity)), B.JSString_methods.get$hashCode(_this.taxName1)), B.JSNumber_methods.get$hashCode(_this.taxRate1)), B.JSString_methods.get$hashCode(_this.taxName2)), B.JSNumber_methods.get$hashCode(_this.taxRate2)), B.JSString_methods.get$hashCode(_this.taxName3)), B.JSNumber_methods.get$hashCode(_this.taxRate3)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSInt_methods.get$hashCode(_this.stockQuantity)), B.JSInt_methods.get$hashCode(_this.stockNotificationThreshold)), B.JSBool_methods.get$hashCode(_this.stockNotification)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "productKey", _this.productKey); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "cost", _this.cost); t2.add$2(t1, "price", _this.price); t2.add$2(t1, "quantity", _this.quantity); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "stockQuantity", _this.stockQuantity); t2.add$2(t1, "stockNotificationThreshold", _this.stockNotificationThreshold); t2.add$2(t1, "stockNotification", _this.stockNotification); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.ProductEntityBuilder.prototype = { get$documents() { var t1 = this.get$_product_model$_$this(), t2 = t1._product_model$_documents; return t2 == null ? t1._product_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_product_model$_$this()._product_model$_id; }, get$_product_model$_$this() { var t1, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { _this._productKey = $$v.productKey; _this._notes = $$v.notes; _this._cost = $$v.cost; _this._product_model$_price = $$v.price; _this._quantity = $$v.quantity; _this._product_model$_taxName1 = $$v.taxName1; _this._product_model$_taxRate1 = $$v.taxRate1; _this._product_model$_taxName2 = $$v.taxName2; _this._product_model$_taxRate2 = $$v.taxRate2; _this._product_model$_taxName3 = $$v.taxName3; _this._product_model$_taxRate3 = $$v.taxRate3; _this._product_model$_customValue1 = $$v.customValue1; _this._product_model$_customValue2 = $$v.customValue2; _this._product_model$_customValue3 = $$v.customValue3; _this._product_model$_customValue4 = $$v.customValue4; _this._stockQuantity = $$v.stockQuantity; _this._product_model$_stockNotificationThreshold = $$v.stockNotificationThreshold; _this._product_model$_stockNotification = $$v.stockNotification; t1 = $$v.documents; t1.toString; _this._product_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._product_model$_isChanged = $$v.isChanged; _this._product_model$_createdAt = $$v.createdAt; _this._product_model$_updatedAt = $$v.updatedAt; _this._product_model$_archivedAt = $$v.archivedAt; _this._product_model$_isDeleted = $$v.isDeleted; _this._product_model$_createdUserId = $$v.createdUserId; _this._product_model$_assignedUserId = $$v.assignedUserId; _this._product_model$_id = $$v.id; _this._product_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, exception, _this = this, _s13_ = "ProductEntity", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$_product_model$_$this()._productKey; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "productKey")); t2 = _this.get$_product_model$_$this()._notes; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "notes")); t3 = _this.get$_product_model$_$this()._cost; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "cost")); t4 = _this.get$_product_model$_$this()._product_model$_price; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "price")); t5 = _this.get$_product_model$_$this()._quantity; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "quantity")); t6 = _this.get$_product_model$_$this()._product_model$_taxName1; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName1")); t7 = _this.get$_product_model$_$this()._product_model$_taxRate1; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate1")); t8 = _this.get$_product_model$_$this()._product_model$_taxName2; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName2")); t9 = _this.get$_product_model$_$this()._product_model$_taxRate2; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate2")); t10 = _this.get$_product_model$_$this()._product_model$_taxName3; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxName3")); t11 = _this.get$_product_model$_$this()._product_model$_taxRate3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taxRate3")); t12 = _this.get$_product_model$_$this()._product_model$_customValue1; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue1")); t13 = _this.get$_product_model$_$this()._product_model$_customValue2; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue2")); t14 = _this.get$_product_model$_$this()._product_model$_customValue3; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue3")); t15 = _this.get$_product_model$_$this()._product_model$_customValue4; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue4")); t16 = _this.get$_product_model$_$this()._stockQuantity; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stockQuantity")); t17 = _this.get$_product_model$_$this()._product_model$_stockNotificationThreshold; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stockNotificationThreshold")); t18 = _this.get$_product_model$_$this()._product_model$_stockNotification; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "stockNotification")); t19 = _this.get$documents().build$0(0); t20 = _this.get$_product_model$_$this()._product_model$_isChanged; t21 = _this.get$_product_model$_$this()._product_model$_createdAt; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t22 = _this.get$_product_model$_$this()._product_model$_updatedAt; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t23 = _this.get$_product_model$_$this()._product_model$_archivedAt; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t24 = _this.get$_product_model$_$this()._product_model$_isDeleted; t25 = _this.get$_product_model$_$this()._product_model$_createdUserId; t26 = _this.get$_product_model$_$this()._product_model$_assignedUserId; t27 = _this.get$_product_model$_$this()._product_model$_id; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$ProductEntity$_(t23, t26, t3, t21, t25, t12, t13, t14, t15, t19, t27, t20, t24, t2, t4, t1, t5, t18, t17, t16, t6, t8, t10, t7, t9, t11, t22); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._product_model$_$v = t1; return _$result; } }; A._ProductEntity_Object_BaseEntity.prototype = {}; A._ProductEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.ProjectListResponse.prototype = {}; A.ProjectItemResponse.prototype = {}; A.ProjectEntity.prototype = { get$clone(_) { return this.rebuild$1(new A.ProjectEntity_clone_closure()); }, get$entityType() { return B.EntityType_project; }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!multiselect && !_this.isDeleted) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_edit); if (!_this.get$isArchived() && !_this.isDeleted) { if (userCompany.can$2(B.UserPermission_create, B.EntityType_task)) actions.push(B.EntityAction_newTask); if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense)) actions.push(B.EntityAction_newExpense); } } if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice) && !_this.isDeleted) actions.push(B.EntityAction_invoiceProject); if (userCompany.can$2(B.UserPermission_create, B.EntityType_project)) actions.push(B.EntityAction_clone); if (!_this.isDeleted && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$5(_, project, sortField, sortAscending, userMap, clientMap) { var response, t1, t2, clientA, clientB, stateA, stateB, userA, userB, _null = null, _s8_ = "archived", projectA = sortAscending ? this : project, projectB = sortAscending ? project : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(projectA.name.toLowerCase(), projectB.name.toLowerCase()); break; case "task_rate": response = B.JSNumber_methods.compareTo$1(projectA.taskRate, projectB.taskRate); break; case "client": t1 = projectA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, projectB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.displayName)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.displayName)), 0, _null).toLowerCase()); break; case "client_number": t1 = projectA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, projectB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(clientA.number.toLowerCase(), clientB.number.toLowerCase()); break; case "client_id_number": t1 = projectA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, projectB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(clientA.idNumber.toLowerCase(), clientB.idNumber.toLowerCase()); break; case "due_date": response = B.JSString_methods.compareTo$1(projectA.dueDate, projectB.dueDate); break; case "private_notes": response = B.JSString_methods.compareTo$1(projectA.privateNotes, projectB.privateNotes); break; case "public_notes": response = B.JSString_methods.compareTo$1(projectA.publicNotes, projectB.publicNotes); break; case "budgeted_hours": response = B.JSNumber_methods.compareTo$1(projectA.budgetedHours, projectB.budgetedHours); break; case "entity_state": if (!projectA.get$isArchived() && !projectA.isDeleted) t1 = "active"; else t1 = projectA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!projectB.get$isArchived() && !projectB.isDeleted) t1 = "active"; else t1 = projectB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(projectA.createdAt, projectB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(projectA.archivedAt, projectB.archivedAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(projectA.updatedAt, projectB.updatedAt); break; case "assigned_to": t1 = projectA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, projectB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = projectA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, projectB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "documents": response = B.JSInt_methods.compareTo$1(projectA.documents._list.length, projectB.documents._list.length); break; case "number": t1 = projectA.number; t2 = projectB.number; response = B.JSString_methods.compareTo$1(t1, t2); break; case "custom1": response = B.JSString_methods.compareTo$1(projectA.customValue1, projectB.customValue1); break; case "custom2": response = B.JSString_methods.compareTo$1(projectA.customValue2, projectB.customValue2); break; case "custom3": response = B.JSString_methods.compareTo$1(projectA.customValue3, projectB.customValue3); break; case "custom4": response = B.JSString_methods.compareTo$1(projectA.customValue4, projectB.customValue4); break; default: A.print("## ERROR: sort by project." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(project.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.name, _this.number, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.name, _this.number, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; } }; A.ProjectEntity_clone_closure.prototype = { call$1(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_project_model$_$this()._project_model$_id = "" + t1; b.get$_project_model$_$this()._project_model$_number = ""; B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); b.get$_project_model$_$this()._project_model$_isChanged = false; b.get$_project_model$_$this()._project_model$_isDeleted = false; return b; }, $signature: 164 }; A._$ProjectListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_KEc)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ProjectListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ProjectEntity, t3 = type$.ListBuilder_legacy_ProjectEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._project_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._project_model$_data = t6; result._project_model$_$v = null; } t4 = result._project_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._project_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_KEc)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_bfP; }, get$wireName() { return "ProjectListResponse"; } }; A._$ProjectItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_vbG)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ProjectItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ProjectEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._project_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ProjectEntityBuilder(); t3.get$_project_model$_$this()._color = ""; t3._project_model$_$v = t2; result._project_model$_data = t3; result._project_model$_$v = null; } t2 = result._project_model$_data; if (t2 == null) { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; result._project_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_vbG)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._project_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_vhP; }, get$wireName() { return "ProjectItemResponse"; } }; A._$ProjectEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, B.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, B.FullType_h8g), "task_rate", serializers.serialize$2$specifiedType(object.taskRate, B.FullType_MME), "due_date", serializers.serialize$2$specifiedType(object.dueDate, B.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, B.FullType_h8g), "budgeted_hours", serializers.serialize$2$specifiedType(object.budgetedHours, B.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new A.ProjectEntityBuilder(); result.get$_project_model$_$this()._color = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_name = t4; break; case "color": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._color = t4; break; case "client_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_clientId = t4; break; case "task_rate": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_project_model$_$this()._taskRate = t4; break; case "due_date": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_dueDate = t4; break; case "private_notes": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_privateNotes = t4; break; case "public_notes": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_publicNotes = t4; break; case "budgeted_hours": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_project_model$_$this()._budgetedHours = t4; break; case "custom_value1": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue1 = t4; break; case "custom_value2": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue2 = t4; break; case "custom_value3": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue3 = t4; break; case "custom_value4": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue4 = t4; break; case "number": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_number = t4; break; case "documents": t4 = result.get$_project_model$_$this(); t5 = t4._project_model$_documents; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._project_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_project_model$_$this()._project_model$_isChanged = t4; break; case "created_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_project_model$_$this()._project_model$_createdAt = t4; break; case "updated_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_project_model$_$this()._project_model$_updatedAt = t4; break; case "archived_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_project_model$_$this()._project_model$_archivedAt = t4; break; case "is_deleted": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_project_model$_$this()._project_model$_isDeleted = t4; break; case "user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_createdUserId = t4; break; case "assigned_user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_assignedUserId = t4; break; case "id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_model$_$this()._project_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_02; }, get$wireName() { return "ProjectEntity"; } }; A._$ProjectListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProjectListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._project_model$__hashCode; return t1 == null ? this._project_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProjectListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._project_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._project_model$_$v = null; } t1 = _this._project_model$_data; return t1 == null ? _this._project_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProjectEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProjectListResponse", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProjectListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._project_model$_$v = t1; return _$result; } }; A._$ProjectItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProjectItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._project_model$__hashCode; return t1 == null ? this._project_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProjectItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._project_model$_$v = t1; _this._project_model$_data = t2; _this._project_model$_$v = null; } t1 = _this._project_model$_data; if (t1 == null) { t1 = new A.ProjectEntityBuilder(); t1.get$_project_model$_$this()._color = ""; _this._project_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProjectItemResponse", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProjectItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._project_model$_$v = t1; return _$result; } }; A._$ProjectEntity.prototype = { rebuild$1(updates) { var t1 = new A.ProjectEntityBuilder(); t1.get$_project_model$_$this()._color = ""; A.ArgumentError_checkNotNull(this, "other"); t1._project_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ProjectEntity && _this.name === other.name && _this.color === other.color && _this.clientId === other.clientId && _this.taskRate === other.taskRate && _this.dueDate === other.dueDate && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.budgetedHours === other.budgetedHours && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.number === other.number && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._project_model$__hashCode; return t1 == null ? _this._project_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.color)), B.JSString_methods.get$hashCode(_this.clientId)), B.JSNumber_methods.get$hashCode(_this.taskRate)), B.JSString_methods.get$hashCode(_this.dueDate)), B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.publicNotes)), B.JSNumber_methods.get$hashCode(_this.budgetedHours)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSString_methods.get$hashCode(_this.number)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "taskRate", _this.taskRate); t2.add$2(t1, "dueDate", _this.dueDate); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "budgetedHours", _this.budgetedHours); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$clientId(receiver) { return this.clientId; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.ProjectEntityBuilder.prototype = { get$name(_) { return this.get$_project_model$_$this()._project_model$_name; }, get$documents() { var t1 = this.get$_project_model$_$this(), t2 = t1._project_model$_documents; return t2 == null ? t1._project_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_project_model$_$this()._project_model$_id; }, get$_project_model$_$this() { var t1, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { _this._project_model$_name = $$v.name; _this._color = $$v.color; _this._project_model$_clientId = $$v.clientId; _this._taskRate = $$v.taskRate; _this._project_model$_dueDate = $$v.dueDate; _this._project_model$_privateNotes = $$v.privateNotes; _this._project_model$_publicNotes = $$v.publicNotes; _this._budgetedHours = $$v.budgetedHours; _this._project_model$_customValue1 = $$v.customValue1; _this._project_model$_customValue2 = $$v.customValue2; _this._project_model$_customValue3 = $$v.customValue3; _this._project_model$_customValue4 = $$v.customValue4; _this._project_model$_number = $$v.number; t1 = $$v.documents; t1.toString; _this._project_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._project_model$_isChanged = $$v.isChanged; _this._project_model$_createdAt = $$v.createdAt; _this._project_model$_updatedAt = $$v.updatedAt; _this._project_model$_archivedAt = $$v.archivedAt; _this._project_model$_isDeleted = $$v.isDeleted; _this._project_model$_createdUserId = $$v.createdUserId; _this._project_model$_assignedUserId = $$v.assignedUserId; _this._project_model$_id = $$v.id; _this._project_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, exception, _this = this, _s13_ = "ProjectEntity", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$_project_model$_$this()._project_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_project_model$_$this()._color; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "color")); t3 = _this.get$_project_model$_$this()._project_model$_clientId; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "clientId")); t4 = _this.get$_project_model$_$this()._taskRate; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "taskRate")); t5 = _this.get$_project_model$_$this()._project_model$_dueDate; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "dueDate")); t6 = _this.get$_project_model$_$this()._project_model$_privateNotes; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "privateNotes")); t7 = _this.get$_project_model$_$this()._project_model$_publicNotes; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "publicNotes")); t8 = _this.get$_project_model$_$this()._budgetedHours; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "budgetedHours")); t9 = _this.get$_project_model$_$this()._project_model$_customValue1; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue1")); t10 = _this.get$_project_model$_$this()._project_model$_customValue2; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue2")); t11 = _this.get$_project_model$_$this()._project_model$_customValue3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue3")); t12 = _this.get$_project_model$_$this()._project_model$_customValue4; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "customValue4")); t13 = _this.get$_project_model$_$this()._project_model$_number; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "number")); t14 = _this.get$documents().build$0(0); t15 = _this.get$_project_model$_$this()._project_model$_isChanged; t16 = _this.get$_project_model$_$this()._project_model$_createdAt; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t17 = _this.get$_project_model$_$this()._project_model$_updatedAt; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t18 = _this.get$_project_model$_$this()._project_model$_archivedAt; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t19 = _this.get$_project_model$_$this()._project_model$_isDeleted; t20 = _this.get$_project_model$_$this()._project_model$_createdUserId; t21 = _this.get$_project_model$_$this()._project_model$_assignedUserId; t22 = _this.get$_project_model$_$this()._project_model$_id; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$ProjectEntity$_(t18, t21, t8, t3, t2, t16, t20, t9, t10, t11, t12, t14, t5, t22, t15, t19, t1, t13, t6, t7, t4, t17); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._project_model$_$v = t1; return _$result; } }; A._ProjectEntity_Object_BaseEntity.prototype = {}; A._ProjectEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; A._$serializers_closure.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientContactEntity); }, $signature: 1105 }; A._$serializers_closure0.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity); }, $signature: 332 }; A._$serializers_closure1.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LedgerEntity); }, $signature: 1104 }; A._$serializers_closure2.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayTokenEntity); }, $signature: 707 }; A._$serializers_closure3.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure4.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity); }, $signature: 467 }; A._$serializers_closure5.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientEntity); }, $signature: 710 }; A._$serializers_closure6.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CompanyGatewayEntity); }, $signature: 711 }; A._$serializers_closure7.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CountryEntity); }, $signature: 712 }; A._$serializers_closure8.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CurrencyEntity); }, $signature: 713 }; A._$serializers_closure9.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CurrencyEntity); }, $signature: 713 }; A._$serializers_closure10.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SizeEntity); }, $signature: 714 }; A._$serializers_closure11.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_IndustryEntity); }, $signature: 715 }; A._$serializers_closure12.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TimezoneEntity); }, $signature: 716 }; A._$serializers_closure13.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayEntity); }, $signature: 1103 }; A._$serializers_closure14.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DateFormatEntity); }, $signature: 718 }; A._$serializers_closure15.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DatetimeFormatEntity); }, $signature: 719 }; A._$serializers_closure16.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LanguageEntity); }, $signature: 720 }; A._$serializers_closure17.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTypeEntity); }, $signature: 721 }; A._$serializers_closure18.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CountryEntity); }, $signature: 712 }; A._$serializers_closure19.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceStatusEntity); }, $signature: 1102 }; A._$serializers_closure20.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity); }, $signature: 723 }; A._$serializers_closure21.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DateFormatEntity); }, $signature: 718 }; A._$serializers_closure22.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DatetimeFormatEntity); }, $signature: 719 }; A._$serializers_closure23.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DesignEntity); }, $signature: 724 }; A._$serializers_closure24.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure25.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure26.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure27.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure28.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure29.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure30.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseScheduleEntity); }, $signature: 1101 }; A._$serializers_closure31.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityState); }, $signature: 1098 }; A._$serializers_closure32.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityStatus); }, $signature: 1095 }; A._$serializers_closure33.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure34.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure35.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure36.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure37.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure38.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityType); }, $signature: 1093 }; A._$serializers_closure39.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_BaseEntity); }, $signature: 1067 }; A._$serializers_closure40.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseCategoryEntity); }, $signature: 731 }; A._$serializers_closure41.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity); }, $signature: 474 }; A._$serializers_closure42.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayTokenEntity); }, $signature: 707 }; A._$serializers_closure43.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GroupEntity); }, $signature: 733 }; A._$serializers_closure44.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GroupEntity); }, $signature: 733 }; A._$serializers_closure45.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity); }, $signature: 332 }; A._$serializers_closure46.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaxRateEntity); }, $signature: 734 }; A._$serializers_closure47.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskStatusEntity); }, $signature: 735 }; A._$serializers_closure48.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity); }, $signature: 736 }; A._$serializers_closure49.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CompanyGatewayEntity); }, $signature: 711 }; A._$serializers_closure50.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseCategoryEntity); }, $signature: 731 }; A._$serializers_closure51.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserEntity); }, $signature: 737 }; A._$serializers_closure52.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ClientEntity); }, $signature: 710 }; A._$serializers_closure53.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProductEntity); }, $signature: 738 }; A._$serializers_closure54.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure55.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure56.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity); }, $signature: 474 }; A._$serializers_closure57.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentEntity); }, $signature: 740 }; A._$serializers_closure58.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure59.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure60.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure61.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskEntity); }, $signature: 741 }; A._$serializers_closure62.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProjectEntity); }, $signature: 742 }; A._$serializers_closure63.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ExpenseEntity); }, $signature: 474 }; A._$serializers_closure64.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorEntity); }, $signature: 743 }; A._$serializers_closure65.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DesignEntity); }, $signature: 724 }; A._$serializers_closure66.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure67.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TokenEntity); }, $signature: 744 }; A._$serializers_closure68.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_WebhookEntity); }, $signature: 745 }; A._$serializers_closure69.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SubscriptionEntity); }, $signature: 746 }; A._$serializers_closure70.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTermEntity); }, $signature: 747 }; A._$serializers_closure71.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity); }, $signature: 467 }; A._$serializers_closure72.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_RegistrationFieldEntity); }, $signature: 1066 }; A._$serializers_closure73.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure74.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_HistoryRecord); }, $signature: 1065 }; A._$serializers_closure75.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_IndustryEntity); }, $signature: 715 }; A._$serializers_closure76.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure77.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceEntity); }, $signature: 187 }; A._$serializers_closure78.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceScheduleEntity); }, $signature: 1064 }; A._$serializers_closure79.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceItemEntity); }, $signature: 1062 }; A._$serializers_closure80.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvitationEntity); }, $signature: 1060 }; A._$serializers_closure81.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure82.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity); }, $signature: 332 }; A._$serializers_closure83.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LanguageEntity); }, $signature: 720 }; A._$serializers_closure84.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentEntity); }, $signature: 740 }; A._$serializers_closure85.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTermEntity); }, $signature: 747 }; A._$serializers_closure86.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTypeEntity); }, $signature: 721 }; A._$serializers_closure87.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity); }, $signature: 481 }; A._$serializers_closure88.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity); }, $signature: 481 }; A._$serializers_closure89.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentableEntity); }, $signature: 481 }; A._$serializers_closure90.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProductEntity); }, $signature: 738 }; A._$serializers_closure91.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ProjectEntity); }, $signature: 742 }; A._$serializers_closure92.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SizeEntity); }, $signature: 714 }; A._$serializers_closure93.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure94.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure95.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure96.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_BuiltList_legacy_String); }, $signature: 1059 }; A._$serializers_closure97.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SubscriptionEntity); }, $signature: 746 }; A._$serializers_closure98.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskEntity); }, $signature: 741 }; A._$serializers_closure99.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskStatusEntity); }, $signature: 735 }; A._$serializers_closure100.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaxRateEntity); }, $signature: 734 }; A._$serializers_closure101.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TimezoneEntity); }, $signature: 716 }; A._$serializers_closure102.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TokenEntity); }, $signature: 744 }; A._$serializers_closure103.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserCompanyEntity); }, $signature: 1058 }; A._$serializers_closure104.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserCompanyState); }, $signature: 1057 }; A._$serializers_closure105.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserEntity); }, $signature: 737 }; A._$serializers_closure106.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorContactEntity); }, $signature: 1054 }; A._$serializers_closure107.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity); }, $signature: 332 }; A._$serializers_closure108.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity); }, $signature: 146 }; A._$serializers_closure109.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorEntity); }, $signature: 743 }; A._$serializers_closure110.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_WebhookEntity); }, $signature: 745 }; A._$serializers_closure111.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_BuiltList_legacy_String); }, $signature: 1053 }; A._$serializers_closure112.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool); }, $signature: 760 }; A._$serializers_closure113.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool); }, $signature: 760 }; A._$serializers_closure114.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure115.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_PrefStateSortField); }, $signature: 1039 }; A._$serializers_closure116.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyPrefState); }, $signature: 1033 }; A._$serializers_closure117.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, $signature: 486 }; A._$serializers_closure118.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, $signature: 486 }; A._$serializers_closure119.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ReportSettingsEntity); }, $signature: 1031 }; A._$serializers_closure120.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ClientEntity); }, $signature: 1030 }; A._$serializers_closure121.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure122.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyGatewayEntity); }, $signature: 1027 }; A._$serializers_closure123.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure124.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CurrencyEntity); }, $signature: 1026 }; A._$serializers_closure125.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SizeEntity); }, $signature: 1009 }; A._$serializers_closure126.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayEntity); }, $signature: 991 }; A._$serializers_closure127.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_IndustryEntity); }, $signature: 990 }; A._$serializers_closure128.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TimezoneEntity); }, $signature: 977 }; A._$serializers_closure129.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DateFormatEntity); }, $signature: 976 }; A._$serializers_closure130.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_LanguageEntity); }, $signature: 975 }; A._$serializers_closure131.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTypeEntity); }, $signature: 974 }; A._$serializers_closure132.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CountryEntity); }, $signature: 973 }; A._$serializers_closure133.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity); }, $signature: 723 }; A._$serializers_closure134.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DesignEntity); }, $signature: 971 }; A._$serializers_closure135.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure136.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DocumentEntity); }, $signature: 970 }; A._$serializers_closure137.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure138.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseCategoryEntity); }, $signature: 969 }; A._$serializers_closure139.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure140.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity); }, $signature: 779 }; A._$serializers_closure141.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure142.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity); }, $signature: 779 }; A._$serializers_closure143.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure144.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_FeesAndLimitsSettings); }, $signature: 968 }; A._$serializers_closure145.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SystemLogEntity); }, $signature: 467 }; A._$serializers_closure146.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayOptionsEntity); }, $signature: 966 }; A._$serializers_closure147.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GroupEntity); }, $signature: 965 }; A._$serializers_closure148.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure149.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ImportRequestMapping); }, $signature: 964 }; A._$serializers_closure150.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, $signature: 254 }; A._$serializers_closure151.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure152.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, $signature: 254 }; A._$serializers_closure153.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure154.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, $signature: 254 }; A._$serializers_closure155.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure156.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, $signature: 254 }; A._$serializers_closure157.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure158.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, $signature: 254 }; A._$serializers_closure159.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure160.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentEntity); }, $signature: 963 }; A._$serializers_closure161.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure162.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTermEntity); }, $signature: 962 }; A._$serializers_closure163.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure164.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PreImportResponseEntityDetails); }, $signature: 960 }; A._$serializers_closure165.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProductEntity); }, $signature: 937 }; A._$serializers_closure166.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure167.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProjectEntity); }, $signature: 936 }; A._$serializers_closure168.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure169.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure170.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure171.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure172.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure173.prototype = { call$0() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, $signature: 189 }; A._$serializers_closure174.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, $signature: 486 }; A._$serializers_closure175.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SubscriptionEntity); }, $signature: 934 }; A._$serializers_closure176.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure177.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskEntity); }, $signature: 932 }; A._$serializers_closure178.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure179.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity); }, $signature: 736 }; A._$serializers_closure180.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure181.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaxRateEntity); }, $signature: 930 }; A._$serializers_closure182.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure183.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TokenEntity); }, $signature: 929 }; A._$serializers_closure184.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure185.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_UserEntity); }, $signature: 927 }; A._$serializers_closure186.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure187.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_VendorEntity); }, $signature: 926 }; A._$serializers_closure188.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure189.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_WebhookEntity); }, $signature: 850 }; A._$serializers_closure190.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); }, $signature: 39 }; A._$serializers_closure191.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.legacy_int, type$.legacy_String); }, $signature: 849 }; A.SettingsEntity.prototype = { getFieldsForSection$1(section) { var t1 = this.pdfVariables; if (t1 != null && t1._map$_map.containsKey$1(0, section)) { t1 = t1._map$_map.$index(0, section); t1 = new A.CopyOnWriteList(true, t1._list, A.instanceType(t1)._eval$1("CopyOnWriteList<1>")); } else t1 = A._setArrayType([], type$.JSArray_legacy_String); return t1; }, setFieldsForSection$2(section, fields) { if (this.pdfVariables == null) return this.rebuild$1(new A.SettingsEntity_setFieldsForSection_closure(section, fields)); else return this.rebuild$1(new A.SettingsEntity_setFieldsForSection_closure0(section, fields)); }, getDesignId$1(entityType) { var _this = this; switch (entityType) { case B.EntityType_invoice: return _this.defaultInvoiceDesignId; case B.EntityType_quote: return _this.defaultQuoteDesignId; case B.EntityType_credit: return _this.defaultCreditDesignId; case B.EntityType_purchaseOrder: return _this.defaultPurchaseOrderDesignId; } A.print("## Error: unhandled entity type: " + entityType.toString$0(0) + " for design id"); return ""; }, getDefaultTerms$1(entityType) { var _this = this; switch (entityType) { case B.EntityType_invoice: case B.EntityType_recurringInvoice: return _this.defaultInvoiceTerms; case B.EntityType_quote: return _this.defaultQuoteTerms; case B.EntityType_credit: return _this.defaultCreditTerms; case B.EntityType_purchaseOrder: return _this.defaultPurchaseOrderTerms; default: A.print("## ERROR: getDefaultTerms not defined for " + A.S(entityType)); return ""; } }, getDefaultFooter$1(entityType) { var _this = this; switch (entityType) { case B.EntityType_invoice: case B.EntityType_recurringInvoice: return _this.defaultInvoiceFooter; case B.EntityType_quote: return _this.defaultQuoteFooter; case B.EntityType_credit: return _this.defaultCreditFooter; case B.EntityType_purchaseOrder: return _this.defaultPurchaseOrderFooter; default: A.print("## ERROR: getDefaultFooter not defined for " + A.S(entityType)); return ""; } }, getEmailSubject$1(emailTemplate) { var _this = this; switch (emailTemplate) { case B.EmailTemplate_invoice: return _this.emailSubjectInvoice; case B.EmailTemplate_quote: return _this.emailSubjectQuote; case B.EmailTemplate_credit: return _this.emailSubjectCredit; case B.EmailTemplate_payment: return _this.emailSubjectPayment; case B.EmailTemplate_payment_partial: return _this.emailSubjectPaymentPartial; case B.EmailTemplate_reminder1: return _this.emailSubjectReminder1; case B.EmailTemplate_reminder2: return _this.emailSubjectReminder2; case B.EmailTemplate_reminder3: return _this.emailSubjectReminder3; case B.EmailTemplate_reminder_endless: return _this.emailSubjectReminderEndless; case B.EmailTemplate_custom1: return _this.emailSubjectCustom1; case B.EmailTemplate_custom2: return _this.emailSubjectCustom2; case B.EmailTemplate_custom3: return _this.emailSubjectCustom3; case B.EmailTemplate_purchase_order: return _this.emailSubjectPurchaseOrder; default: return "Error: template not defined for " + emailTemplate.toString$0(0); } }, getEmailBody$1(template) { var _this = this; switch (template) { case B.EmailTemplate_invoice: return _this.emailBodyInvoice; case B.EmailTemplate_quote: return _this.emailBodyQuote; case B.EmailTemplate_credit: return _this.emailBodyCredit; case B.EmailTemplate_payment: return _this.emailBodyPayment; case B.EmailTemplate_payment_partial: return _this.emailBodyPaymentPartial; case B.EmailTemplate_reminder1: return _this.emailBodyReminder1; case B.EmailTemplate_reminder2: return _this.emailBodyReminder2; case B.EmailTemplate_reminder3: return _this.emailBodyReminder3; case B.EmailTemplate_reminder_endless: return _this.emailBodyReminderEndless; case B.EmailTemplate_custom1: return _this.emailBodyCustom1; case B.EmailTemplate_custom2: return _this.emailBodyCustom2; case B.EmailTemplate_custom3: return _this.emailBodyCustom3; case B.EmailTemplate_purchase_order: return _this.emailBodyPurchaseOrder; default: return "Error: template not defined for " + template.toString$0(0); } } }; A.SettingsEntity_setFieldsForSection_closure.prototype = { call$1(b) { b.get$pdfVariables().replace$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.section, this.fields], type$.legacy_String, type$.legacy_List_legacy_String)); return b; }, $signature: 13 }; A.SettingsEntity_setFieldsForSection_closure0.prototype = { call$1(b) { b.get$pdfVariables().$indexSet(0, this.section, A.BuiltList_BuiltList$from(this.fields, type$.legacy_String)); return b; }, $signature: 13 }; A._$SettingsEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType([], type$.JSArray_legacy_Object), value = object.timezoneId; if (value != null) { result.push("timezone_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.dateFormatId; if (value != null) { result.push("date_format_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.enableMilitaryTime; if (value != null) { result.push("military_time"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.languageId; if (value != null) { result.push("language_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.showCurrencyCode; if (value != null) { result.push("show_currency_code"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.currencyId; if (value != null) { result.push("currency_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customValue1; if (value != null) { result.push("custom_value1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customValue2; if (value != null) { result.push("custom_value2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customValue3; if (value != null) { result.push("custom_value3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customValue4; if (value != null) { result.push("custom_value4"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultPaymentTerms; if (value != null) { result.push("payment_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultValidUntil; if (value != null) { result.push("valid_until"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.companyGatewayIds; if (value != null) { result.push("company_gateway_ids"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultTaskRate; if (value != null) { result.push("default_task_rate"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.sendReminders; if (value != null) { result.push("send_reminders"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enablePortal; if (value != null) { result.push("enable_client_portal"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enablePortalDashboard; if (value != null) { result.push("enable_client_portal_dashboard"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enablePortalTasks; if (value != null) { result.push("enable_client_portal_tasks"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableClientPortalUploads; if (value != null) { result.push("client_portal_enable_uploads"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableVendorPortalUploads; if (value != null) { result.push("vendor_portal_enable_uploads"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.emailStyle; if (value != null) { result.push("email_style"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.replyToEmail; if (value != null) { result.push("reply_to_email"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.replyToName; if (value != null) { result.push("reply_to_name"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailFromName; if (value != null) { result.push("email_from_name"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.bccEmail; if (value != null) { result.push("bcc_email"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.pdfEmailAttachment; if (value != null) { result.push("pdf_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.ublEmailAttachment; if (value != null) { result.push("ubl_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.documentEmailAttachment; if (value != null) { result.push("document_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.emailStyleCustom; if (value != null) { result.push("email_style_custom"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customMessageDashboard; if (value != null) { result.push("custom_message_dashboard"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customMessageUnpaidInvoice; if (value != null) { result.push("custom_message_unpaid_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customMessagePaidInvoice; if (value != null) { result.push("custom_message_paid_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.customMessageUnapprovedQuote; if (value != null) { result.push("custom_message_unapproved_quote"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.autoArchiveInvoice; if (value != null) { result.push("auto_archive_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.autoArchiveInvoiceCancelled; if (value != null) { result.push("auto_archive_invoice_cancelled"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.autoArchiveQuote; if (value != null) { result.push("auto_archive_quote"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.autoEmailInvoice; if (value != null) { result.push("auto_email_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.autoConvertQuote; if (value != null) { result.push("auto_convert_quote"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableInclusiveTaxes; if (value != null) { result.push("inclusive_taxes"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.translations; if (value != null) { result.push("translations"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_LNO)); } value = object.taskNumberPattern; if (value != null) { result.push("task_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.taskNumberCounter; if (value != null) { result.push("task_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.expenseNumberPattern; if (value != null) { result.push("expense_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.expenseNumberCounter; if (value != null) { result.push("expense_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.recurringExpenseNumberPattern; if (value != null) { result.push("recurring_expense_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringExpenseNumberCounter; if (value != null) { result.push("recurring_expense_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.vendorNumberPattern; if (value != null) { result.push("vendor_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.vendorNumberCounter; if (value != null) { result.push("vendor_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.ticketNumberPattern; if (value != null) { result.push("ticket_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.ticketNumberCounter; if (value != null) { result.push("ticket_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.paymentNumberPattern; if (value != null) { result.push("payment_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.paymentNumberCounter; if (value != null) { result.push("payment_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.projectNumberPattern; if (value != null) { result.push("project_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.projectNumberCounter; if (value != null) { result.push("project_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.invoiceNumberPattern; if (value != null) { result.push("invoice_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.invoiceNumberCounter; if (value != null) { result.push("invoice_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.recurringInvoiceNumberPattern; if (value != null) { result.push("recurring_invoice_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.recurringInvoiceNumberCounter; if (value != null) { result.push("recurring_invoice_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.quoteNumberPattern; if (value != null) { result.push("quote_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.quoteNumberCounter; if (value != null) { result.push("quote_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.clientNumberPattern; if (value != null) { result.push("client_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientNumberCounter; if (value != null) { result.push("client_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.creditNumberPattern; if (value != null) { result.push("credit_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.creditNumberCounter; if (value != null) { result.push("credit_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.recurringNumberPrefix; if (value != null) { result.push("recurring_number_prefix"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.resetCounterFrequencyId; if (value != null) { result.push("reset_counter_frequency_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.resetCounterDate; if (value != null) { result.push("reset_counter_date"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.counterPadding; if (value != null) { result.push("counter_padding"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.sharedInvoiceQuoteCounter; if (value != null) { result.push("shared_invoice_quote_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.sharedInvoiceCreditCounter; if (value != null) { result.push("shared_invoice_credit_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.defaultInvoiceTerms; if (value != null) { result.push("invoice_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultQuoteTerms; if (value != null) { result.push("quote_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultQuoteFooter; if (value != null) { result.push("quote_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultCreditTerms; if (value != null) { result.push("credit_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultCreditFooter; if (value != null) { result.push("credit_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultInvoiceDesignId; if (value != null) { result.push("invoice_design_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultQuoteDesignId; if (value != null) { result.push("quote_design_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultCreditDesignId; if (value != null) { result.push("credit_design_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultInvoiceFooter; if (value != null) { result.push("invoice_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultTaxName1; if (value != null) { result.push("tax_name1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultTaxRate1; if (value != null) { result.push("tax_rate1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.defaultTaxName2; if (value != null) { result.push("tax_name2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultTaxRate2; if (value != null) { result.push("tax_rate2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.defaultTaxName3; if (value != null) { result.push("tax_name3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultTaxRate3; if (value != null) { result.push("tax_rate3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.defaultPaymentTypeId; if (value != null) { result.push("payment_type_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.pdfVariables; if (value != null) { result.push("pdf_variables"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_mZn)); } value = object.emailSignature; if (value != null) { result.push("email_signature"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectInvoice; if (value != null) { result.push("email_subject_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectQuote; if (value != null) { result.push("email_subject_quote"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectCredit; if (value != null) { result.push("email_subject_credit"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectPayment; if (value != null) { result.push("email_subject_payment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectPaymentPartial; if (value != null) { result.push("email_subject_payment_partial"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyInvoice; if (value != null) { result.push("email_template_invoice"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyQuote; if (value != null) { result.push("email_template_quote"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyCredit; if (value != null) { result.push("email_template_credit"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyPayment; if (value != null) { result.push("email_template_payment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyPaymentPartial; if (value != null) { result.push("email_template_payment_partial"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectReminder1; if (value != null) { result.push("email_subject_reminder1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectReminder2; if (value != null) { result.push("email_subject_reminder2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectReminder3; if (value != null) { result.push("email_subject_reminder3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyReminder1; if (value != null) { result.push("email_template_reminder1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyReminder2; if (value != null) { result.push("email_template_reminder2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyReminder3; if (value != null) { result.push("email_template_reminder3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectCustom1; if (value != null) { result.push("email_subject_custom1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyCustom1; if (value != null) { result.push("email_template_custom1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectCustom2; if (value != null) { result.push("email_subject_custom2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyCustom2; if (value != null) { result.push("email_template_custom2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectCustom3; if (value != null) { result.push("email_subject_custom3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyCustom3; if (value != null) { result.push("email_template_custom3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectStatement; if (value != null) { result.push("email_subject_statement"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyStatement; if (value != null) { result.push("email_template_statement"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSubjectPurchaseOrder; if (value != null) { result.push("email_subject_purchase_order"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyPurchaseOrder; if (value != null) { result.push("email_template_purchase_order"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.enablePortalPassword; if (value != null) { result.push("enable_client_portal_password"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.signatureOnPdf; if (value != null) { result.push("signature_on_pdf"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableEmailMarkup; if (value != null) { result.push("enable_email_markup"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.showAcceptInvoiceTerms; if (value != null) { result.push("show_accept_invoice_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.showAcceptQuoteTerms; if (value != null) { result.push("show_accept_quote_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.requireInvoiceSignature; if (value != null) { result.push("require_invoice_signature"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.requireQuoteSignature; if (value != null) { result.push("require_quote_signature"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.name; if (value != null) { result.push("name"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.companyLogo; if (value != null) { result.push("company_logo"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.website; if (value != null) { result.push("website"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.address1; if (value != null) { result.push("address1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.address2; if (value != null) { result.push("address2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.city; if (value != null) { result.push("city"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.state; if (value != null) { result.push("state"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.postalCode; if (value != null) { result.push("postal_code"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.phone; if (value != null) { result.push("phone"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.email; if (value != null) { result.push("email"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.countryId; if (value != null) { result.push("country_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.vatNumber; if (value != null) { result.push("vat_number"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.idNumber; if (value != null) { result.push("id_number"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.pageSize; if (value != null) { result.push("page_size"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.pageLayout; if (value != null) { result.push("page_layout"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.fontSize; if (value != null) { result.push("font_size"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.primaryColor; if (value != null) { result.push("primary_color"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.secondaryColor; if (value != null) { result.push("secondary_color"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.primaryFont; if (value != null) { result.push("primary_font"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.secondaryFont; if (value != null) { result.push("secondary_font"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.hidePaidToDate; if (value != null) { result.push("hide_paid_to_date"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.embedDocuments; if (value != null) { result.push("embed_documents"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.allPagesHeader; if (value != null) { result.push("all_pages_header"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.allPagesFooter; if (value != null) { result.push("all_pages_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableReminder1; if (value != null) { result.push("enable_reminder1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableReminder2; if (value != null) { result.push("enable_reminder2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableReminder3; if (value != null) { result.push("enable_reminder3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.enableReminderEndless; if (value != null) { result.push("enable_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.numDaysReminder1; if (value != null) { result.push("num_days_reminder1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.numDaysReminder2; if (value != null) { result.push("num_days_reminder2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.numDaysReminder3; if (value != null) { result.push("num_days_reminder3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.scheduleReminder1; if (value != null) { result.push("schedule_reminder1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.scheduleReminder2; if (value != null) { result.push("schedule_reminder2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.scheduleReminder3; if (value != null) { result.push("schedule_reminder3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.endlessReminderFrequencyId; if (value != null) { result.push("endless_reminder_frequency_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.lateFeeAmount1; if (value != null) { result.push("late_fee_amount1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeeAmount2; if (value != null) { result.push("late_fee_amount2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeeAmount3; if (value != null) { result.push("late_fee_amount3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeeAmountEndless; if (value != null) { result.push("late_fee_endless_amount"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeePercent1; if (value != null) { result.push("late_fee_percent1"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeePercent2; if (value != null) { result.push("late_fee_percent2"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeePercent3; if (value != null) { result.push("late_fee_percent3"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.lateFeePercentEndless; if (value != null) { result.push("late_fee_endless_percent"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.emailSubjectReminderEndless; if (value != null) { result.push("email_subject_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailBodyReminderEndless; if (value != null) { result.push("email_template_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientOnlinePaymentNotification; if (value != null) { result.push("client_online_payment_notification"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.clientManualPaymentNotification; if (value != null) { result.push("client_manual_payment_notification"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.counterNumberApplied; if (value != null) { result.push("counter_number_applied"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.emailSendingMethod; if (value != null) { result.push("email_sending_method"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.gmailSendingUserId; if (value != null) { result.push("gmail_sending_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalTerms; if (value != null) { result.push("client_portal_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalPrivacy; if (value != null) { result.push("client_portal_privacy_policy"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.lockInvoices; if (value != null) { result.push("lock_invoices"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.autoBill; if (value != null) { result.push("auto_bill"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalAllowUnderPayment; if (value != null) { result.push("client_portal_allow_under_payment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.clientPortalAllowOverPayment; if (value != null) { result.push("client_portal_allow_over_payment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.autoBillDate; if (value != null) { result.push("auto_bill_date"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalUnderPaymentMinimum; if (value != null) { result.push("client_portal_under_payment_minimum"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MME)); } value = object.useCreditsPayment; if (value != null) { result.push("use_credits_payment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalCustomHeader; if (value != null) { result.push("portal_custom_head"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalCustomCss; if (value != null) { result.push("portal_custom_css"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalCustomFooter; if (value != null) { result.push("portal_custom_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.clientPortalCustomJs; if (value != null) { result.push("portal_custom_js"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.hideEmptyColumnsOnPdf; if (value != null) { result.push("hide_empty_columns_on_pdf"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.entitySendTime; if (value != null) { result.push("entity_send_time"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.clientPortalTasks; if (value != null) { result.push("show_all_tasks_client_portal"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.pageNumbering; if (value != null) { result.push("page_numbering"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.pageNumberingAlignment; if (value != null) { result.push("page_numbering_alignment"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.requirePurchaseOrderSignature; if (value != null) { result.push("require_purchase_order_signature"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.defaultPurchaseOrderTerms; if (value != null) { result.push("purchase_order_terms"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultPurchaseOrderDesignId; if (value != null) { result.push("purchase_order_design_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.defaultPurchaseOrderFooter; if (value != null) { result.push("purchase_order_footer"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.purchaseOrderNumberPattern; if (value != null) { result.push("purchase_order_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.purchaseOrderNumberCounter; if (value != null) { result.push("purchase_order_number_counter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.qrIban; if (value != null) { result.push("qr_iban"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.besrId; if (value != null) { result.push("besr_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, _null = null, result = new A.SettingsEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String, t2 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "timezone_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._timezoneId = t3; break; case "date_format_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._dateFormatId = t3; break; case "military_time": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableMilitaryTime = t3; break; case "language_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._languageId = t3; break; case "show_currency_code": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._showCurrencyCode = t3; break; case "currency_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._currencyId = t3; break; case "custom_value1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customValue1 = t3; break; case "custom_value2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customValue2 = t3; break; case "custom_value3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customValue3 = t3; break; case "custom_value4": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customValue4 = t3; break; case "payment_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultPaymentTerms = t3; break; case "valid_until": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultValidUntil = t3; break; case "company_gateway_ids": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._companyGatewayIds = t3; break; case "default_task_rate": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._defaultTaskRate = t3; break; case "send_reminders": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._sendReminders = t3; break; case "enable_client_portal": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enablePortal = t3; break; case "enable_client_portal_dashboard": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalDashboard = t3; break; case "enable_client_portal_tasks": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalTasks = t3; break; case "client_portal_enable_uploads": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableClientPortalUploads = t3; break; case "vendor_portal_enable_uploads": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableVendorPortalUploads = t3; break; case "email_style": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailStyle = t3; break; case "reply_to_email": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._replyToEmail = t3; break; case "reply_to_name": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._replyToName = t3; break; case "email_from_name": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailFromName = t3; break; case "bcc_email": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._bccEmail = t3; break; case "pdf_email_attachment": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._pdfEmailAttachment = t3; break; case "ubl_email_attachment": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._ublEmailAttachment = t3; break; case "document_email_attachment": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._documentEmailAttachment = t3; break; case "email_style_custom": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailStyleCustom = t3; break; case "custom_message_dashboard": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customMessageDashboard = t3; break; case "custom_message_unpaid_invoice": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customMessageUnpaidInvoice = t3; break; case "custom_message_paid_invoice": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customMessagePaidInvoice = t3; break; case "custom_message_unapproved_quote": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._customMessageUnapprovedQuote = t3; break; case "auto_archive_invoice": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._autoArchiveInvoice = t3; break; case "auto_archive_invoice_cancelled": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._autoArchiveInvoiceCancelled = t3; break; case "auto_archive_quote": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._autoArchiveQuote = t3; break; case "auto_email_invoice": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._autoEmailInvoice = t3; break; case "auto_convert_quote": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._autoConvertQuote = t3; break; case "inclusive_taxes": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableInclusiveTaxes = t3; break; case "translations": t3 = result.get$_settings_model$_$this(); t4 = t3._translations; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t2); t4.replace$1(0, B.Map_empty0); t3._translations = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "task_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._taskNumberPattern = t3; break; case "task_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._taskNumberCounter = t3; break; case "expense_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._expenseNumberPattern = t3; break; case "expense_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._expenseNumberCounter = t3; break; case "recurring_expense_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._recurringExpenseNumberPattern = t3; break; case "recurring_expense_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._recurringExpenseNumberCounter = t3; break; case "vendor_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._vendorNumberPattern = t3; break; case "vendor_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._vendorNumberCounter = t3; break; case "ticket_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._ticketNumberPattern = t3; break; case "ticket_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._ticketNumberCounter = t3; break; case "payment_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._paymentNumberPattern = t3; break; case "payment_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._paymentNumberCounter = t3; break; case "project_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._projectNumberPattern = t3; break; case "project_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._projectNumberCounter = t3; break; case "invoice_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._invoiceNumberPattern = t3; break; case "invoice_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._invoiceNumberCounter = t3; break; case "recurring_invoice_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._recurringInvoiceNumberPattern = t3; break; case "recurring_invoice_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._recurringInvoiceNumberCounter = t3; break; case "quote_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._quoteNumberPattern = t3; break; case "quote_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._quoteNumberCounter = t3; break; case "client_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientNumberPattern = t3; break; case "client_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._clientNumberCounter = t3; break; case "credit_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._creditNumberPattern = t3; break; case "credit_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._creditNumberCounter = t3; break; case "recurring_number_prefix": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._recurringNumberPrefix = t3; break; case "reset_counter_frequency_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._resetCounterFrequencyId = t3; break; case "reset_counter_date": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._resetCounterDate = t3; break; case "counter_padding": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._counterPadding = t3; break; case "shared_invoice_quote_counter": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._sharedInvoiceQuoteCounter = t3; break; case "shared_invoice_credit_counter": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._sharedInvoiceCreditCounter = t3; break; case "invoice_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceTerms = t3; break; case "quote_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteTerms = t3; break; case "quote_footer": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteFooter = t3; break; case "credit_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditTerms = t3; break; case "credit_footer": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditFooter = t3; break; case "invoice_design_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceDesignId = t3; break; case "quote_design_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteDesignId = t3; break; case "credit_design_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditDesignId = t3; break; case "invoice_footer": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceFooter = t3; break; case "tax_name1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName1 = t3; break; case "tax_rate1": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate1 = t3; break; case "tax_name2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName2 = t3; break; case "tax_rate2": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate2 = t3; break; case "tax_name3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName3 = t3; break; case "tax_rate3": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate3 = t3; break; case "payment_type_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultPaymentTypeId = t3; break; case "pdf_variables": t3 = result.get$_settings_model$_$this(); t4 = t3._pdfVariables; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t1); t4.replace$1(0, B.Map_empty0); t3._pdfVariables = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mZn)); break; case "email_signature": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSignature = t3; break; case "email_subject_invoice": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectInvoice = t3; break; case "email_subject_quote": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectQuote = t3; break; case "email_subject_credit": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCredit = t3; break; case "email_subject_payment": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectPayment = t3; break; case "email_subject_payment_partial": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectPaymentPartial = t3; break; case "email_template_invoice": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyInvoice = t3; break; case "email_template_quote": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyQuote = t3; break; case "email_template_credit": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCredit = t3; break; case "email_template_payment": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyPayment = t3; break; case "email_template_payment_partial": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyPaymentPartial = t3; break; case "email_subject_reminder1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder1 = t3; break; case "email_subject_reminder2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder2 = t3; break; case "email_subject_reminder3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder3 = t3; break; case "email_template_reminder1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder1 = t3; break; case "email_template_reminder2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder2 = t3; break; case "email_template_reminder3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder3 = t3; break; case "email_subject_custom1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom1 = t3; break; case "email_template_custom1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom1 = t3; break; case "email_subject_custom2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom2 = t3; break; case "email_template_custom2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom2 = t3; break; case "email_subject_custom3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom3 = t3; break; case "email_template_custom3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom3 = t3; break; case "email_subject_statement": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectStatement = t3; break; case "email_template_statement": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyStatement = t3; break; case "email_subject_purchase_order": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectPurchaseOrder = t3; break; case "email_template_purchase_order": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyPurchaseOrder = t3; break; case "enable_client_portal_password": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalPassword = t3; break; case "signature_on_pdf": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._signatureOnPdf = t3; break; case "enable_email_markup": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableEmailMarkup = t3; break; case "show_accept_invoice_terms": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._showAcceptInvoiceTerms = t3; break; case "show_accept_quote_terms": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._showAcceptQuoteTerms = t3; break; case "require_invoice_signature": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._requireInvoiceSignature = t3; break; case "require_quote_signature": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._requireQuoteSignature = t3; break; case "name": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_name = t3; break; case "company_logo": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._companyLogo = t3; break; case "website": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._website = t3; break; case "address1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._address1 = t3; break; case "address2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._address2 = t3; break; case "city": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._city = t3; break; case "state": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_state = t3; break; case "postal_code": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._postalCode = t3; break; case "phone": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._phone = t3; break; case "email": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._email = t3; break; case "country_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._countryId = t3; break; case "vat_number": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._vatNumber = t3; break; case "id_number": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._idNumber = t3; break; case "page_size": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._pageSize = t3; break; case "page_layout": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._pageLayout = t3; break; case "font_size": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._fontSize = t3; break; case "primary_color": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._primaryColor = t3; break; case "secondary_color": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._secondaryColor = t3; break; case "primary_font": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._primaryFont = t3; break; case "secondary_font": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._secondaryFont = t3; break; case "hide_paid_to_date": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._hidePaidToDate = t3; break; case "embed_documents": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._embedDocuments = t3; break; case "all_pages_header": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._allPagesHeader = t3; break; case "all_pages_footer": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._allPagesFooter = t3; break; case "enable_reminder1": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder1 = t3; break; case "enable_reminder2": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder2 = t3; break; case "enable_reminder3": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder3 = t3; break; case "enable_reminder_endless": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._enableReminderEndless = t3; break; case "num_days_reminder1": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder1 = t3; break; case "num_days_reminder2": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder2 = t3; break; case "num_days_reminder3": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder3 = t3; break; case "schedule_reminder1": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder1 = t3; break; case "schedule_reminder2": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder2 = t3; break; case "schedule_reminder3": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder3 = t3; break; case "endless_reminder_frequency_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._endlessReminderFrequencyId = t3; break; case "late_fee_amount1": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount1 = t3; break; case "late_fee_amount2": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount2 = t3; break; case "late_fee_amount3": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount3 = t3; break; case "late_fee_endless_amount": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmountEndless = t3; break; case "late_fee_percent1": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent1 = t3; break; case "late_fee_percent2": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent2 = t3; break; case "late_fee_percent3": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent3 = t3; break; case "late_fee_endless_percent": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercentEndless = t3; break; case "email_subject_reminder_endless": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminderEndless = t3; break; case "email_template_reminder_endless": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminderEndless = t3; break; case "client_online_payment_notification": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._clientOnlinePaymentNotification = t3; break; case "client_manual_payment_notification": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._clientManualPaymentNotification = t3; break; case "counter_number_applied": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._counterNumberApplied = t3; break; case "email_sending_method": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._emailSendingMethod = t3; break; case "gmail_sending_user_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._gmailSendingUserId = t3; break; case "client_portal_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalTerms = t3; break; case "client_portal_privacy_policy": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalPrivacy = t3; break; case "lock_invoices": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._lockInvoices = t3; break; case "auto_bill": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._autoBill = t3; break; case "client_portal_allow_under_payment": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._clientPortalAllowUnderPayment = t3; break; case "client_portal_allow_over_payment": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._clientPortalAllowOverPayment = t3; break; case "auto_bill_date": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._autoBillDate = t3; break; case "client_portal_under_payment_minimum": t3 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum = t3; break; case "use_credits_payment": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._useCreditsPayment = t3; break; case "portal_custom_head": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomHeader = t3; break; case "portal_custom_css": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomCss = t3; break; case "portal_custom_footer": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomFooter = t3; break; case "portal_custom_js": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomJs = t3; break; case "hide_empty_columns_on_pdf": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._hideEmptyColumnsOnPdf = t3; break; case "entity_send_time": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._entitySendTime = t3; break; case "show_all_tasks_client_portal": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalTasks = t3; break; case "page_numbering": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._pageNumbering = t3; break; case "page_numbering_alignment": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._pageNumberingAlignment = t3; break; case "require_purchase_order_signature": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_settings_model$_$this()._requirePurchaseOrderSignature = t3; break; case "purchase_order_terms": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultPurchaseOrderTerms = t3; break; case "purchase_order_design_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultPurchaseOrderDesignId = t3; break; case "purchase_order_footer": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._defaultPurchaseOrderFooter = t3; break; case "purchase_order_number_pattern": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._purchaseOrderNumberPattern = t3; break; case "purchase_order_number_counter": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_settings_model$_$this()._purchaseOrderNumberCounter = t3; break; case "qr_iban": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._qrIban = t3; break; case "besr_id": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_settings_model$_$this()._besrId = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_GXp; }, get$wireName() { return "SettingsEntity"; } }; A._$SettingsEntity.prototype = { rebuild$1(updates) { var t1 = new A.SettingsEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._settings_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.SettingsEntity && _this.timezoneId == other.timezoneId && _this.dateFormatId == other.dateFormatId && _this.enableMilitaryTime == other.enableMilitaryTime && _this.languageId == other.languageId && _this.showCurrencyCode == other.showCurrencyCode && _this.currencyId == other.currencyId && _this.customValue1 == other.customValue1 && _this.customValue2 == other.customValue2 && _this.customValue3 == other.customValue3 && _this.customValue4 == other.customValue4 && _this.defaultPaymentTerms == other.defaultPaymentTerms && _this.defaultValidUntil == other.defaultValidUntil && _this.companyGatewayIds == other.companyGatewayIds && _this.defaultTaskRate == other.defaultTaskRate && _this.sendReminders == other.sendReminders && _this.enablePortal == other.enablePortal && _this.enablePortalDashboard == other.enablePortalDashboard && _this.enablePortalTasks == other.enablePortalTasks && _this.enableClientPortalUploads == other.enableClientPortalUploads && _this.enableVendorPortalUploads == other.enableVendorPortalUploads && _this.emailStyle == other.emailStyle && _this.replyToEmail == other.replyToEmail && _this.replyToName == other.replyToName && _this.emailFromName == other.emailFromName && _this.bccEmail == other.bccEmail && _this.pdfEmailAttachment == other.pdfEmailAttachment && _this.ublEmailAttachment == other.ublEmailAttachment && _this.documentEmailAttachment == other.documentEmailAttachment && _this.emailStyleCustom == other.emailStyleCustom && _this.customMessageDashboard == other.customMessageDashboard && _this.customMessageUnpaidInvoice == other.customMessageUnpaidInvoice && _this.customMessagePaidInvoice == other.customMessagePaidInvoice && _this.customMessageUnapprovedQuote == other.customMessageUnapprovedQuote && _this.autoArchiveInvoice == other.autoArchiveInvoice && _this.autoArchiveInvoiceCancelled == other.autoArchiveInvoiceCancelled && _this.autoArchiveQuote == other.autoArchiveQuote && _this.autoEmailInvoice == other.autoEmailInvoice && _this.autoConvertQuote == other.autoConvertQuote && _this.enableInclusiveTaxes == other.enableInclusiveTaxes && J.$eq$(_this.translations, other.translations) && _this.taskNumberPattern == other.taskNumberPattern && _this.taskNumberCounter == other.taskNumberCounter && _this.expenseNumberPattern == other.expenseNumberPattern && _this.expenseNumberCounter == other.expenseNumberCounter && _this.recurringExpenseNumberPattern == other.recurringExpenseNumberPattern && _this.recurringExpenseNumberCounter == other.recurringExpenseNumberCounter && _this.vendorNumberPattern == other.vendorNumberPattern && _this.vendorNumberCounter == other.vendorNumberCounter && _this.ticketNumberPattern == other.ticketNumberPattern && _this.ticketNumberCounter == other.ticketNumberCounter && _this.paymentNumberPattern == other.paymentNumberPattern && _this.paymentNumberCounter == other.paymentNumberCounter && _this.projectNumberPattern == other.projectNumberPattern && _this.projectNumberCounter == other.projectNumberCounter && _this.invoiceNumberPattern == other.invoiceNumberPattern && _this.invoiceNumberCounter == other.invoiceNumberCounter && _this.recurringInvoiceNumberPattern == other.recurringInvoiceNumberPattern && _this.recurringInvoiceNumberCounter == other.recurringInvoiceNumberCounter && _this.quoteNumberPattern == other.quoteNumberPattern && _this.quoteNumberCounter == other.quoteNumberCounter && _this.clientNumberPattern == other.clientNumberPattern && _this.clientNumberCounter == other.clientNumberCounter && _this.creditNumberPattern == other.creditNumberPattern && _this.creditNumberCounter == other.creditNumberCounter && _this.recurringNumberPrefix == other.recurringNumberPrefix && _this.resetCounterFrequencyId == other.resetCounterFrequencyId && _this.resetCounterDate == other.resetCounterDate && _this.counterPadding == other.counterPadding && _this.sharedInvoiceQuoteCounter == other.sharedInvoiceQuoteCounter && _this.sharedInvoiceCreditCounter == other.sharedInvoiceCreditCounter && _this.defaultInvoiceTerms == other.defaultInvoiceTerms && _this.defaultQuoteTerms == other.defaultQuoteTerms && _this.defaultQuoteFooter == other.defaultQuoteFooter && _this.defaultCreditTerms == other.defaultCreditTerms && _this.defaultCreditFooter == other.defaultCreditFooter && _this.defaultInvoiceDesignId == other.defaultInvoiceDesignId && _this.defaultQuoteDesignId == other.defaultQuoteDesignId && _this.defaultCreditDesignId == other.defaultCreditDesignId && _this.defaultInvoiceFooter == other.defaultInvoiceFooter && _this.defaultTaxName1 == other.defaultTaxName1 && _this.defaultTaxRate1 == other.defaultTaxRate1 && _this.defaultTaxName2 == other.defaultTaxName2 && _this.defaultTaxRate2 == other.defaultTaxRate2 && _this.defaultTaxName3 == other.defaultTaxName3 && _this.defaultTaxRate3 == other.defaultTaxRate3 && _this.defaultPaymentTypeId == other.defaultPaymentTypeId && J.$eq$(_this.pdfVariables, other.pdfVariables) && _this.emailSignature == other.emailSignature && _this.emailSubjectInvoice == other.emailSubjectInvoice && _this.emailSubjectQuote == other.emailSubjectQuote && _this.emailSubjectCredit == other.emailSubjectCredit && _this.emailSubjectPayment == other.emailSubjectPayment && _this.emailSubjectPaymentPartial == other.emailSubjectPaymentPartial && _this.emailBodyInvoice == other.emailBodyInvoice && _this.emailBodyQuote == other.emailBodyQuote && _this.emailBodyCredit == other.emailBodyCredit && _this.emailBodyPayment == other.emailBodyPayment && _this.emailBodyPaymentPartial == other.emailBodyPaymentPartial && _this.emailSubjectReminder1 == other.emailSubjectReminder1 && _this.emailSubjectReminder2 == other.emailSubjectReminder2 && _this.emailSubjectReminder3 == other.emailSubjectReminder3 && _this.emailBodyReminder1 == other.emailBodyReminder1 && _this.emailBodyReminder2 == other.emailBodyReminder2 && _this.emailBodyReminder3 == other.emailBodyReminder3 && _this.emailSubjectCustom1 == other.emailSubjectCustom1 && _this.emailBodyCustom1 == other.emailBodyCustom1 && _this.emailSubjectCustom2 == other.emailSubjectCustom2 && _this.emailBodyCustom2 == other.emailBodyCustom2 && _this.emailSubjectCustom3 == other.emailSubjectCustom3 && _this.emailBodyCustom3 == other.emailBodyCustom3 && _this.emailSubjectStatement == other.emailSubjectStatement && _this.emailBodyStatement == other.emailBodyStatement && _this.emailSubjectPurchaseOrder == other.emailSubjectPurchaseOrder && _this.emailBodyPurchaseOrder == other.emailBodyPurchaseOrder && _this.enablePortalPassword == other.enablePortalPassword && _this.signatureOnPdf == other.signatureOnPdf && _this.enableEmailMarkup == other.enableEmailMarkup && _this.showAcceptInvoiceTerms == other.showAcceptInvoiceTerms && _this.showAcceptQuoteTerms == other.showAcceptQuoteTerms && _this.requireInvoiceSignature == other.requireInvoiceSignature && _this.requireQuoteSignature == other.requireQuoteSignature && _this.name == other.name && _this.companyLogo == other.companyLogo && _this.website == other.website && _this.address1 == other.address1 && _this.address2 == other.address2 && _this.city == other.city && _this.state == other.state && _this.postalCode == other.postalCode && _this.phone == other.phone && _this.email == other.email && _this.countryId == other.countryId && _this.vatNumber == other.vatNumber && _this.idNumber == other.idNumber && _this.pageSize == other.pageSize && _this.pageLayout == other.pageLayout && _this.fontSize == other.fontSize && _this.primaryColor == other.primaryColor && _this.secondaryColor == other.secondaryColor && _this.primaryFont == other.primaryFont && _this.secondaryFont == other.secondaryFont && _this.hidePaidToDate == other.hidePaidToDate && _this.embedDocuments == other.embedDocuments && _this.allPagesHeader == other.allPagesHeader && _this.allPagesFooter == other.allPagesFooter && _this.enableReminder1 == other.enableReminder1 && _this.enableReminder2 == other.enableReminder2 && _this.enableReminder3 == other.enableReminder3 && _this.enableReminderEndless == other.enableReminderEndless && _this.numDaysReminder1 == other.numDaysReminder1 && _this.numDaysReminder2 == other.numDaysReminder2 && _this.numDaysReminder3 == other.numDaysReminder3 && _this.scheduleReminder1 == other.scheduleReminder1 && _this.scheduleReminder2 == other.scheduleReminder2 && _this.scheduleReminder3 == other.scheduleReminder3 && _this.endlessReminderFrequencyId == other.endlessReminderFrequencyId && _this.lateFeeAmount1 == other.lateFeeAmount1 && _this.lateFeeAmount2 == other.lateFeeAmount2 && _this.lateFeeAmount3 == other.lateFeeAmount3 && _this.lateFeeAmountEndless == other.lateFeeAmountEndless && _this.lateFeePercent1 == other.lateFeePercent1 && _this.lateFeePercent2 == other.lateFeePercent2 && _this.lateFeePercent3 == other.lateFeePercent3 && _this.lateFeePercentEndless == other.lateFeePercentEndless && _this.emailSubjectReminderEndless == other.emailSubjectReminderEndless && _this.emailBodyReminderEndless == other.emailBodyReminderEndless && _this.clientOnlinePaymentNotification == other.clientOnlinePaymentNotification && _this.clientManualPaymentNotification == other.clientManualPaymentNotification && _this.counterNumberApplied == other.counterNumberApplied && _this.emailSendingMethod == other.emailSendingMethod && _this.gmailSendingUserId == other.gmailSendingUserId && _this.clientPortalTerms == other.clientPortalTerms && _this.clientPortalPrivacy == other.clientPortalPrivacy && _this.lockInvoices == other.lockInvoices && _this.autoBill == other.autoBill && _this.clientPortalAllowUnderPayment == other.clientPortalAllowUnderPayment && _this.clientPortalAllowOverPayment == other.clientPortalAllowOverPayment && _this.autoBillDate == other.autoBillDate && _this.clientPortalUnderPaymentMinimum == other.clientPortalUnderPaymentMinimum && _this.useCreditsPayment == other.useCreditsPayment && _this.clientPortalCustomHeader == other.clientPortalCustomHeader && _this.clientPortalCustomCss == other.clientPortalCustomCss && _this.clientPortalCustomFooter == other.clientPortalCustomFooter && _this.clientPortalCustomJs == other.clientPortalCustomJs && _this.hideEmptyColumnsOnPdf == other.hideEmptyColumnsOnPdf && _this.entitySendTime == other.entitySendTime && _this.clientPortalTasks == other.clientPortalTasks && _this.pageNumbering == other.pageNumbering && _this.pageNumberingAlignment == other.pageNumberingAlignment && _this.requirePurchaseOrderSignature == other.requirePurchaseOrderSignature && _this.defaultPurchaseOrderTerms == other.defaultPurchaseOrderTerms && _this.defaultPurchaseOrderDesignId == other.defaultPurchaseOrderDesignId && _this.defaultPurchaseOrderFooter == other.defaultPurchaseOrderFooter && _this.purchaseOrderNumberPattern == other.purchaseOrderNumberPattern && _this.purchaseOrderNumberCounter == other.purchaseOrderNumberCounter && _this.qrIban == other.qrIban && _this.besrId == other.besrId; }, get$hashCode(_) { var _this = this, t1 = _this._settings_model$__hashCode; return t1 == null ? _this._settings_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.timezoneId)), J.get$hashCode$(_this.dateFormatId)), J.get$hashCode$(_this.enableMilitaryTime)), J.get$hashCode$(_this.languageId)), J.get$hashCode$(_this.showCurrencyCode)), J.get$hashCode$(_this.currencyId)), J.get$hashCode$(_this.customValue1)), J.get$hashCode$(_this.customValue2)), J.get$hashCode$(_this.customValue3)), J.get$hashCode$(_this.customValue4)), J.get$hashCode$(_this.defaultPaymentTerms)), J.get$hashCode$(_this.defaultValidUntil)), J.get$hashCode$(_this.companyGatewayIds)), J.get$hashCode$(_this.defaultTaskRate)), J.get$hashCode$(_this.sendReminders)), J.get$hashCode$(_this.enablePortal)), J.get$hashCode$(_this.enablePortalDashboard)), J.get$hashCode$(_this.enablePortalTasks)), J.get$hashCode$(_this.enableClientPortalUploads)), J.get$hashCode$(_this.enableVendorPortalUploads)), J.get$hashCode$(_this.emailStyle)), J.get$hashCode$(_this.replyToEmail)), J.get$hashCode$(_this.replyToName)), J.get$hashCode$(_this.emailFromName)), J.get$hashCode$(_this.bccEmail)), J.get$hashCode$(_this.pdfEmailAttachment)), J.get$hashCode$(_this.ublEmailAttachment)), J.get$hashCode$(_this.documentEmailAttachment)), J.get$hashCode$(_this.emailStyleCustom)), J.get$hashCode$(_this.customMessageDashboard)), J.get$hashCode$(_this.customMessageUnpaidInvoice)), J.get$hashCode$(_this.customMessagePaidInvoice)), J.get$hashCode$(_this.customMessageUnapprovedQuote)), J.get$hashCode$(_this.autoArchiveInvoice)), J.get$hashCode$(_this.autoArchiveInvoiceCancelled)), J.get$hashCode$(_this.autoArchiveQuote)), J.get$hashCode$(_this.autoEmailInvoice)), J.get$hashCode$(_this.autoConvertQuote)), J.get$hashCode$(_this.enableInclusiveTaxes)), J.get$hashCode$(_this.translations)), J.get$hashCode$(_this.taskNumberPattern)), J.get$hashCode$(_this.taskNumberCounter)), J.get$hashCode$(_this.expenseNumberPattern)), J.get$hashCode$(_this.expenseNumberCounter)), J.get$hashCode$(_this.recurringExpenseNumberPattern)), J.get$hashCode$(_this.recurringExpenseNumberCounter)), J.get$hashCode$(_this.vendorNumberPattern)), J.get$hashCode$(_this.vendorNumberCounter)), J.get$hashCode$(_this.ticketNumberPattern)), J.get$hashCode$(_this.ticketNumberCounter)), J.get$hashCode$(_this.paymentNumberPattern)), J.get$hashCode$(_this.paymentNumberCounter)), J.get$hashCode$(_this.projectNumberPattern)), J.get$hashCode$(_this.projectNumberCounter)), J.get$hashCode$(_this.invoiceNumberPattern)), J.get$hashCode$(_this.invoiceNumberCounter)), J.get$hashCode$(_this.recurringInvoiceNumberPattern)), J.get$hashCode$(_this.recurringInvoiceNumberCounter)), J.get$hashCode$(_this.quoteNumberPattern)), J.get$hashCode$(_this.quoteNumberCounter)), J.get$hashCode$(_this.clientNumberPattern)), J.get$hashCode$(_this.clientNumberCounter)), J.get$hashCode$(_this.creditNumberPattern)), J.get$hashCode$(_this.creditNumberCounter)), J.get$hashCode$(_this.recurringNumberPrefix)), J.get$hashCode$(_this.resetCounterFrequencyId)), J.get$hashCode$(_this.resetCounterDate)), J.get$hashCode$(_this.counterPadding)), J.get$hashCode$(_this.sharedInvoiceQuoteCounter)), J.get$hashCode$(_this.sharedInvoiceCreditCounter)), J.get$hashCode$(_this.defaultInvoiceTerms)), J.get$hashCode$(_this.defaultQuoteTerms)), J.get$hashCode$(_this.defaultQuoteFooter)), J.get$hashCode$(_this.defaultCreditTerms)), J.get$hashCode$(_this.defaultCreditFooter)), J.get$hashCode$(_this.defaultInvoiceDesignId)), J.get$hashCode$(_this.defaultQuoteDesignId)), J.get$hashCode$(_this.defaultCreditDesignId)), J.get$hashCode$(_this.defaultInvoiceFooter)), J.get$hashCode$(_this.defaultTaxName1)), J.get$hashCode$(_this.defaultTaxRate1)), J.get$hashCode$(_this.defaultTaxName2)), J.get$hashCode$(_this.defaultTaxRate2)), J.get$hashCode$(_this.defaultTaxName3)), J.get$hashCode$(_this.defaultTaxRate3)), J.get$hashCode$(_this.defaultPaymentTypeId)), J.get$hashCode$(_this.pdfVariables)), J.get$hashCode$(_this.emailSignature)), J.get$hashCode$(_this.emailSubjectInvoice)), J.get$hashCode$(_this.emailSubjectQuote)), J.get$hashCode$(_this.emailSubjectCredit)), J.get$hashCode$(_this.emailSubjectPayment)), J.get$hashCode$(_this.emailSubjectPaymentPartial)), J.get$hashCode$(_this.emailBodyInvoice)), J.get$hashCode$(_this.emailBodyQuote)), J.get$hashCode$(_this.emailBodyCredit)), J.get$hashCode$(_this.emailBodyPayment)), J.get$hashCode$(_this.emailBodyPaymentPartial)), J.get$hashCode$(_this.emailSubjectReminder1)), J.get$hashCode$(_this.emailSubjectReminder2)), J.get$hashCode$(_this.emailSubjectReminder3)), J.get$hashCode$(_this.emailBodyReminder1)), J.get$hashCode$(_this.emailBodyReminder2)), J.get$hashCode$(_this.emailBodyReminder3)), J.get$hashCode$(_this.emailSubjectCustom1)), J.get$hashCode$(_this.emailBodyCustom1)), J.get$hashCode$(_this.emailSubjectCustom2)), J.get$hashCode$(_this.emailBodyCustom2)), J.get$hashCode$(_this.emailSubjectCustom3)), J.get$hashCode$(_this.emailBodyCustom3)), J.get$hashCode$(_this.emailSubjectStatement)), J.get$hashCode$(_this.emailBodyStatement)), J.get$hashCode$(_this.emailSubjectPurchaseOrder)), J.get$hashCode$(_this.emailBodyPurchaseOrder)), J.get$hashCode$(_this.enablePortalPassword)), J.get$hashCode$(_this.signatureOnPdf)), J.get$hashCode$(_this.enableEmailMarkup)), J.get$hashCode$(_this.showAcceptInvoiceTerms)), J.get$hashCode$(_this.showAcceptQuoteTerms)), J.get$hashCode$(_this.requireInvoiceSignature)), J.get$hashCode$(_this.requireQuoteSignature)), J.get$hashCode$(_this.name)), J.get$hashCode$(_this.companyLogo)), J.get$hashCode$(_this.website)), J.get$hashCode$(_this.address1)), J.get$hashCode$(_this.address2)), J.get$hashCode$(_this.city)), J.get$hashCode$(_this.state)), J.get$hashCode$(_this.postalCode)), J.get$hashCode$(_this.phone)), J.get$hashCode$(_this.email)), J.get$hashCode$(_this.countryId)), J.get$hashCode$(_this.vatNumber)), J.get$hashCode$(_this.idNumber)), J.get$hashCode$(_this.pageSize)), J.get$hashCode$(_this.pageLayout)), J.get$hashCode$(_this.fontSize)), J.get$hashCode$(_this.primaryColor)), J.get$hashCode$(_this.secondaryColor)), J.get$hashCode$(_this.primaryFont)), J.get$hashCode$(_this.secondaryFont)), J.get$hashCode$(_this.hidePaidToDate)), J.get$hashCode$(_this.embedDocuments)), J.get$hashCode$(_this.allPagesHeader)), J.get$hashCode$(_this.allPagesFooter)), J.get$hashCode$(_this.enableReminder1)), J.get$hashCode$(_this.enableReminder2)), J.get$hashCode$(_this.enableReminder3)), J.get$hashCode$(_this.enableReminderEndless)), J.get$hashCode$(_this.numDaysReminder1)), J.get$hashCode$(_this.numDaysReminder2)), J.get$hashCode$(_this.numDaysReminder3)), J.get$hashCode$(_this.scheduleReminder1)), J.get$hashCode$(_this.scheduleReminder2)), J.get$hashCode$(_this.scheduleReminder3)), J.get$hashCode$(_this.endlessReminderFrequencyId)), J.get$hashCode$(_this.lateFeeAmount1)), J.get$hashCode$(_this.lateFeeAmount2)), J.get$hashCode$(_this.lateFeeAmount3)), J.get$hashCode$(_this.lateFeeAmountEndless)), J.get$hashCode$(_this.lateFeePercent1)), J.get$hashCode$(_this.lateFeePercent2)), J.get$hashCode$(_this.lateFeePercent3)), J.get$hashCode$(_this.lateFeePercentEndless)), J.get$hashCode$(_this.emailSubjectReminderEndless)), J.get$hashCode$(_this.emailBodyReminderEndless)), J.get$hashCode$(_this.clientOnlinePaymentNotification)), J.get$hashCode$(_this.clientManualPaymentNotification)), J.get$hashCode$(_this.counterNumberApplied)), J.get$hashCode$(_this.emailSendingMethod)), J.get$hashCode$(_this.gmailSendingUserId)), J.get$hashCode$(_this.clientPortalTerms)), J.get$hashCode$(_this.clientPortalPrivacy)), J.get$hashCode$(_this.lockInvoices)), J.get$hashCode$(_this.autoBill)), J.get$hashCode$(_this.clientPortalAllowUnderPayment)), J.get$hashCode$(_this.clientPortalAllowOverPayment)), J.get$hashCode$(_this.autoBillDate)), J.get$hashCode$(_this.clientPortalUnderPaymentMinimum)), J.get$hashCode$(_this.useCreditsPayment)), J.get$hashCode$(_this.clientPortalCustomHeader)), J.get$hashCode$(_this.clientPortalCustomCss)), J.get$hashCode$(_this.clientPortalCustomFooter)), J.get$hashCode$(_this.clientPortalCustomJs)), J.get$hashCode$(_this.hideEmptyColumnsOnPdf)), J.get$hashCode$(_this.entitySendTime)), J.get$hashCode$(_this.clientPortalTasks)), J.get$hashCode$(_this.pageNumbering)), J.get$hashCode$(_this.pageNumberingAlignment)), J.get$hashCode$(_this.requirePurchaseOrderSignature)), J.get$hashCode$(_this.defaultPurchaseOrderTerms)), J.get$hashCode$(_this.defaultPurchaseOrderDesignId)), J.get$hashCode$(_this.defaultPurchaseOrderFooter)), J.get$hashCode$(_this.purchaseOrderNumberPattern)), J.get$hashCode$(_this.purchaseOrderNumberCounter)), J.get$hashCode$(_this.qrIban)), J.get$hashCode$(_this.besrId))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "timezoneId", _this.timezoneId); t2.add$2(t1, "dateFormatId", _this.dateFormatId); t2.add$2(t1, "enableMilitaryTime", _this.enableMilitaryTime); t2.add$2(t1, "languageId", _this.languageId); t2.add$2(t1, "showCurrencyCode", _this.showCurrencyCode); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "defaultPaymentTerms", _this.defaultPaymentTerms); t2.add$2(t1, "defaultValidUntil", _this.defaultValidUntil); t2.add$2(t1, "companyGatewayIds", _this.companyGatewayIds); t2.add$2(t1, "defaultTaskRate", _this.defaultTaskRate); t2.add$2(t1, "sendReminders", _this.sendReminders); t2.add$2(t1, "enablePortal", _this.enablePortal); t2.add$2(t1, "enablePortalDashboard", _this.enablePortalDashboard); t2.add$2(t1, "enablePortalTasks", _this.enablePortalTasks); t2.add$2(t1, "enableClientPortalUploads", _this.enableClientPortalUploads); t2.add$2(t1, "enableVendorPortalUploads", _this.enableVendorPortalUploads); t2.add$2(t1, "emailStyle", _this.emailStyle); t2.add$2(t1, "replyToEmail", _this.replyToEmail); t2.add$2(t1, "replyToName", _this.replyToName); t2.add$2(t1, "emailFromName", _this.emailFromName); t2.add$2(t1, "bccEmail", _this.bccEmail); t2.add$2(t1, "pdfEmailAttachment", _this.pdfEmailAttachment); t2.add$2(t1, "ublEmailAttachment", _this.ublEmailAttachment); t2.add$2(t1, "documentEmailAttachment", _this.documentEmailAttachment); t2.add$2(t1, "emailStyleCustom", _this.emailStyleCustom); t2.add$2(t1, "customMessageDashboard", _this.customMessageDashboard); t2.add$2(t1, "customMessageUnpaidInvoice", _this.customMessageUnpaidInvoice); t2.add$2(t1, "customMessagePaidInvoice", _this.customMessagePaidInvoice); t2.add$2(t1, "customMessageUnapprovedQuote", _this.customMessageUnapprovedQuote); t2.add$2(t1, "autoArchiveInvoice", _this.autoArchiveInvoice); t2.add$2(t1, "autoArchiveInvoiceCancelled", _this.autoArchiveInvoiceCancelled); t2.add$2(t1, "autoArchiveQuote", _this.autoArchiveQuote); t2.add$2(t1, "autoEmailInvoice", _this.autoEmailInvoice); t2.add$2(t1, "autoConvertQuote", _this.autoConvertQuote); t2.add$2(t1, "enableInclusiveTaxes", _this.enableInclusiveTaxes); t2.add$2(t1, "translations", _this.translations); t2.add$2(t1, "taskNumberPattern", _this.taskNumberPattern); t2.add$2(t1, "taskNumberCounter", _this.taskNumberCounter); t2.add$2(t1, "expenseNumberPattern", _this.expenseNumberPattern); t2.add$2(t1, "expenseNumberCounter", _this.expenseNumberCounter); t2.add$2(t1, "recurringExpenseNumberPattern", _this.recurringExpenseNumberPattern); t2.add$2(t1, "recurringExpenseNumberCounter", _this.recurringExpenseNumberCounter); t2.add$2(t1, "vendorNumberPattern", _this.vendorNumberPattern); t2.add$2(t1, "vendorNumberCounter", _this.vendorNumberCounter); t2.add$2(t1, "ticketNumberPattern", _this.ticketNumberPattern); t2.add$2(t1, "ticketNumberCounter", _this.ticketNumberCounter); t2.add$2(t1, "paymentNumberPattern", _this.paymentNumberPattern); t2.add$2(t1, "paymentNumberCounter", _this.paymentNumberCounter); t2.add$2(t1, "projectNumberPattern", _this.projectNumberPattern); t2.add$2(t1, "projectNumberCounter", _this.projectNumberCounter); t2.add$2(t1, "invoiceNumberPattern", _this.invoiceNumberPattern); t2.add$2(t1, "invoiceNumberCounter", _this.invoiceNumberCounter); t2.add$2(t1, "recurringInvoiceNumberPattern", _this.recurringInvoiceNumberPattern); t2.add$2(t1, "recurringInvoiceNumberCounter", _this.recurringInvoiceNumberCounter); t2.add$2(t1, "quoteNumberPattern", _this.quoteNumberPattern); t2.add$2(t1, "quoteNumberCounter", _this.quoteNumberCounter); t2.add$2(t1, "clientNumberPattern", _this.clientNumberPattern); t2.add$2(t1, "clientNumberCounter", _this.clientNumberCounter); t2.add$2(t1, "creditNumberPattern", _this.creditNumberPattern); t2.add$2(t1, "creditNumberCounter", _this.creditNumberCounter); t2.add$2(t1, "recurringNumberPrefix", _this.recurringNumberPrefix); t2.add$2(t1, "resetCounterFrequencyId", _this.resetCounterFrequencyId); t2.add$2(t1, "resetCounterDate", _this.resetCounterDate); t2.add$2(t1, "counterPadding", _this.counterPadding); t2.add$2(t1, "sharedInvoiceQuoteCounter", _this.sharedInvoiceQuoteCounter); t2.add$2(t1, "sharedInvoiceCreditCounter", _this.sharedInvoiceCreditCounter); t2.add$2(t1, "defaultInvoiceTerms", _this.defaultInvoiceTerms); t2.add$2(t1, "defaultQuoteTerms", _this.defaultQuoteTerms); t2.add$2(t1, "defaultQuoteFooter", _this.defaultQuoteFooter); t2.add$2(t1, "defaultCreditTerms", _this.defaultCreditTerms); t2.add$2(t1, "defaultCreditFooter", _this.defaultCreditFooter); t2.add$2(t1, "defaultInvoiceDesignId", _this.defaultInvoiceDesignId); t2.add$2(t1, "defaultQuoteDesignId", _this.defaultQuoteDesignId); t2.add$2(t1, "defaultCreditDesignId", _this.defaultCreditDesignId); t2.add$2(t1, "defaultInvoiceFooter", _this.defaultInvoiceFooter); t2.add$2(t1, "defaultTaxName1", _this.defaultTaxName1); t2.add$2(t1, "defaultTaxRate1", _this.defaultTaxRate1); t2.add$2(t1, "defaultTaxName2", _this.defaultTaxName2); t2.add$2(t1, "defaultTaxRate2", _this.defaultTaxRate2); t2.add$2(t1, "defaultTaxName3", _this.defaultTaxName3); t2.add$2(t1, "defaultTaxRate3", _this.defaultTaxRate3); t2.add$2(t1, "defaultPaymentTypeId", _this.defaultPaymentTypeId); t2.add$2(t1, "pdfVariables", _this.pdfVariables); t2.add$2(t1, "emailSignature", _this.emailSignature); t2.add$2(t1, "emailSubjectInvoice", _this.emailSubjectInvoice); t2.add$2(t1, "emailSubjectQuote", _this.emailSubjectQuote); t2.add$2(t1, "emailSubjectCredit", _this.emailSubjectCredit); t2.add$2(t1, "emailSubjectPayment", _this.emailSubjectPayment); t2.add$2(t1, "emailSubjectPaymentPartial", _this.emailSubjectPaymentPartial); t2.add$2(t1, "emailBodyInvoice", _this.emailBodyInvoice); t2.add$2(t1, "emailBodyQuote", _this.emailBodyQuote); t2.add$2(t1, "emailBodyCredit", _this.emailBodyCredit); t2.add$2(t1, "emailBodyPayment", _this.emailBodyPayment); t2.add$2(t1, "emailBodyPaymentPartial", _this.emailBodyPaymentPartial); t2.add$2(t1, "emailSubjectReminder1", _this.emailSubjectReminder1); t2.add$2(t1, "emailSubjectReminder2", _this.emailSubjectReminder2); t2.add$2(t1, "emailSubjectReminder3", _this.emailSubjectReminder3); t2.add$2(t1, "emailBodyReminder1", _this.emailBodyReminder1); t2.add$2(t1, "emailBodyReminder2", _this.emailBodyReminder2); t2.add$2(t1, "emailBodyReminder3", _this.emailBodyReminder3); t2.add$2(t1, "emailSubjectCustom1", _this.emailSubjectCustom1); t2.add$2(t1, "emailBodyCustom1", _this.emailBodyCustom1); t2.add$2(t1, "emailSubjectCustom2", _this.emailSubjectCustom2); t2.add$2(t1, "emailBodyCustom2", _this.emailBodyCustom2); t2.add$2(t1, "emailSubjectCustom3", _this.emailSubjectCustom3); t2.add$2(t1, "emailBodyCustom3", _this.emailBodyCustom3); t2.add$2(t1, "emailSubjectStatement", _this.emailSubjectStatement); t2.add$2(t1, "emailBodyStatement", _this.emailBodyStatement); t2.add$2(t1, "emailSubjectPurchaseOrder", _this.emailSubjectPurchaseOrder); t2.add$2(t1, "emailBodyPurchaseOrder", _this.emailBodyPurchaseOrder); t2.add$2(t1, "enablePortalPassword", _this.enablePortalPassword); t2.add$2(t1, "signatureOnPdf", _this.signatureOnPdf); t2.add$2(t1, "enableEmailMarkup", _this.enableEmailMarkup); t2.add$2(t1, "showAcceptInvoiceTerms", _this.showAcceptInvoiceTerms); t2.add$2(t1, "showAcceptQuoteTerms", _this.showAcceptQuoteTerms); t2.add$2(t1, "requireInvoiceSignature", _this.requireInvoiceSignature); t2.add$2(t1, "requireQuoteSignature", _this.requireQuoteSignature); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "companyLogo", _this.companyLogo); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "pageSize", _this.pageSize); t2.add$2(t1, "pageLayout", _this.pageLayout); t2.add$2(t1, "fontSize", _this.fontSize); t2.add$2(t1, "primaryColor", _this.primaryColor); t2.add$2(t1, "secondaryColor", _this.secondaryColor); t2.add$2(t1, "primaryFont", _this.primaryFont); t2.add$2(t1, "secondaryFont", _this.secondaryFont); t2.add$2(t1, "hidePaidToDate", _this.hidePaidToDate); t2.add$2(t1, "embedDocuments", _this.embedDocuments); t2.add$2(t1, "allPagesHeader", _this.allPagesHeader); t2.add$2(t1, "allPagesFooter", _this.allPagesFooter); t2.add$2(t1, "enableReminder1", _this.enableReminder1); t2.add$2(t1, "enableReminder2", _this.enableReminder2); t2.add$2(t1, "enableReminder3", _this.enableReminder3); t2.add$2(t1, "enableReminderEndless", _this.enableReminderEndless); t2.add$2(t1, "numDaysReminder1", _this.numDaysReminder1); t2.add$2(t1, "numDaysReminder2", _this.numDaysReminder2); t2.add$2(t1, "numDaysReminder3", _this.numDaysReminder3); t2.add$2(t1, "scheduleReminder1", _this.scheduleReminder1); t2.add$2(t1, "scheduleReminder2", _this.scheduleReminder2); t2.add$2(t1, "scheduleReminder3", _this.scheduleReminder3); t2.add$2(t1, "endlessReminderFrequencyId", _this.endlessReminderFrequencyId); t2.add$2(t1, "lateFeeAmount1", _this.lateFeeAmount1); t2.add$2(t1, "lateFeeAmount2", _this.lateFeeAmount2); t2.add$2(t1, "lateFeeAmount3", _this.lateFeeAmount3); t2.add$2(t1, "lateFeeAmountEndless", _this.lateFeeAmountEndless); t2.add$2(t1, "lateFeePercent1", _this.lateFeePercent1); t2.add$2(t1, "lateFeePercent2", _this.lateFeePercent2); t2.add$2(t1, "lateFeePercent3", _this.lateFeePercent3); t2.add$2(t1, "lateFeePercentEndless", _this.lateFeePercentEndless); t2.add$2(t1, "emailSubjectReminderEndless", _this.emailSubjectReminderEndless); t2.add$2(t1, "emailBodyReminderEndless", _this.emailBodyReminderEndless); t2.add$2(t1, "clientOnlinePaymentNotification", _this.clientOnlinePaymentNotification); t2.add$2(t1, "clientManualPaymentNotification", _this.clientManualPaymentNotification); t2.add$2(t1, "counterNumberApplied", _this.counterNumberApplied); t2.add$2(t1, "emailSendingMethod", _this.emailSendingMethod); t2.add$2(t1, "gmailSendingUserId", _this.gmailSendingUserId); t2.add$2(t1, "clientPortalTerms", _this.clientPortalTerms); t2.add$2(t1, "clientPortalPrivacy", _this.clientPortalPrivacy); t2.add$2(t1, "lockInvoices", _this.lockInvoices); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "clientPortalAllowUnderPayment", _this.clientPortalAllowUnderPayment); t2.add$2(t1, "clientPortalAllowOverPayment", _this.clientPortalAllowOverPayment); t2.add$2(t1, "autoBillDate", _this.autoBillDate); t2.add$2(t1, "clientPortalUnderPaymentMinimum", _this.clientPortalUnderPaymentMinimum); t2.add$2(t1, "useCreditsPayment", _this.useCreditsPayment); t2.add$2(t1, "clientPortalCustomHeader", _this.clientPortalCustomHeader); t2.add$2(t1, "clientPortalCustomCss", _this.clientPortalCustomCss); t2.add$2(t1, "clientPortalCustomFooter", _this.clientPortalCustomFooter); t2.add$2(t1, "clientPortalCustomJs", _this.clientPortalCustomJs); t2.add$2(t1, "hideEmptyColumnsOnPdf", _this.hideEmptyColumnsOnPdf); t2.add$2(t1, "entitySendTime", _this.entitySendTime); t2.add$2(t1, "clientPortalTasks", _this.clientPortalTasks); t2.add$2(t1, "pageNumbering", _this.pageNumbering); t2.add$2(t1, "pageNumberingAlignment", _this.pageNumberingAlignment); t2.add$2(t1, "requirePurchaseOrderSignature", _this.requirePurchaseOrderSignature); t2.add$2(t1, "defaultPurchaseOrderTerms", _this.defaultPurchaseOrderTerms); t2.add$2(t1, "defaultPurchaseOrderDesignId", _this.defaultPurchaseOrderDesignId); t2.add$2(t1, "defaultPurchaseOrderFooter", _this.defaultPurchaseOrderFooter); t2.add$2(t1, "purchaseOrderNumberPattern", _this.purchaseOrderNumberPattern); t2.add$2(t1, "purchaseOrderNumberCounter", _this.purchaseOrderNumberCounter); t2.add$2(t1, "qrIban", _this.qrIban); t2.add$2(t1, "besrId", _this.besrId); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$address1() { return this.address1; }, get$address2() { return this.address2; }, get$city(receiver) { return this.city; }, get$state(receiver) { return this.state; }, get$postalCode(receiver) { return this.postalCode; }, get$countryId() { return this.countryId; } }; A.SettingsEntityBuilder.prototype = { get$translations() { var t1 = this.get$_settings_model$_$this(), t2 = t1._translations; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._translations = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$pdfVariables() { var t1 = this.get$_settings_model$_$this(), t2 = t1._pdfVariables; return t2 == null ? t1._pdfVariables = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$name(_) { return this.get$_settings_model$_$this()._settings_model$_name; }, get$_settings_model$_$this() { var t1, t2, _this = this, $$v = _this._settings_model$_$v; if ($$v != null) { _this._timezoneId = $$v.timezoneId; _this._dateFormatId = $$v.dateFormatId; _this._enableMilitaryTime = $$v.enableMilitaryTime; _this._languageId = $$v.languageId; _this._showCurrencyCode = $$v.showCurrencyCode; _this._currencyId = $$v.currencyId; _this._customValue1 = $$v.customValue1; _this._customValue2 = $$v.customValue2; _this._customValue3 = $$v.customValue3; _this._customValue4 = $$v.customValue4; _this._defaultPaymentTerms = $$v.defaultPaymentTerms; _this._defaultValidUntil = $$v.defaultValidUntil; _this._companyGatewayIds = $$v.companyGatewayIds; _this._defaultTaskRate = $$v.defaultTaskRate; _this._sendReminders = $$v.sendReminders; _this._enablePortal = $$v.enablePortal; _this._enablePortalDashboard = $$v.enablePortalDashboard; _this._enablePortalTasks = $$v.enablePortalTasks; _this._enableClientPortalUploads = $$v.enableClientPortalUploads; _this._enableVendorPortalUploads = $$v.enableVendorPortalUploads; _this._emailStyle = $$v.emailStyle; _this._replyToEmail = $$v.replyToEmail; _this._replyToName = $$v.replyToName; _this._emailFromName = $$v.emailFromName; _this._bccEmail = $$v.bccEmail; _this._pdfEmailAttachment = $$v.pdfEmailAttachment; _this._ublEmailAttachment = $$v.ublEmailAttachment; _this._documentEmailAttachment = $$v.documentEmailAttachment; _this._emailStyleCustom = $$v.emailStyleCustom; _this._customMessageDashboard = $$v.customMessageDashboard; _this._customMessageUnpaidInvoice = $$v.customMessageUnpaidInvoice; _this._customMessagePaidInvoice = $$v.customMessagePaidInvoice; _this._customMessageUnapprovedQuote = $$v.customMessageUnapprovedQuote; _this._autoArchiveInvoice = $$v.autoArchiveInvoice; _this._autoArchiveInvoiceCancelled = $$v.autoArchiveInvoiceCancelled; _this._autoArchiveQuote = $$v.autoArchiveQuote; _this._autoEmailInvoice = $$v.autoEmailInvoice; _this._autoConvertQuote = $$v.autoConvertQuote; _this._enableInclusiveTaxes = $$v.enableInclusiveTaxes; t1 = $$v.translations; if (t1 == null) t1 = null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._translations = t1; _this._taskNumberPattern = $$v.taskNumberPattern; _this._taskNumberCounter = $$v.taskNumberCounter; _this._expenseNumberPattern = $$v.expenseNumberPattern; _this._expenseNumberCounter = $$v.expenseNumberCounter; _this._recurringExpenseNumberPattern = $$v.recurringExpenseNumberPattern; _this._recurringExpenseNumberCounter = $$v.recurringExpenseNumberCounter; _this._vendorNumberPattern = $$v.vendorNumberPattern; _this._vendorNumberCounter = $$v.vendorNumberCounter; _this._ticketNumberPattern = $$v.ticketNumberPattern; _this._ticketNumberCounter = $$v.ticketNumberCounter; _this._paymentNumberPattern = $$v.paymentNumberPattern; _this._paymentNumberCounter = $$v.paymentNumberCounter; _this._projectNumberPattern = $$v.projectNumberPattern; _this._projectNumberCounter = $$v.projectNumberCounter; _this._invoiceNumberPattern = $$v.invoiceNumberPattern; _this._invoiceNumberCounter = $$v.invoiceNumberCounter; _this._recurringInvoiceNumberPattern = $$v.recurringInvoiceNumberPattern; _this._recurringInvoiceNumberCounter = $$v.recurringInvoiceNumberCounter; _this._quoteNumberPattern = $$v.quoteNumberPattern; _this._quoteNumberCounter = $$v.quoteNumberCounter; _this._clientNumberPattern = $$v.clientNumberPattern; _this._clientNumberCounter = $$v.clientNumberCounter; _this._creditNumberPattern = $$v.creditNumberPattern; _this._creditNumberCounter = $$v.creditNumberCounter; _this._recurringNumberPrefix = $$v.recurringNumberPrefix; _this._resetCounterFrequencyId = $$v.resetCounterFrequencyId; _this._resetCounterDate = $$v.resetCounterDate; _this._counterPadding = $$v.counterPadding; _this._sharedInvoiceQuoteCounter = $$v.sharedInvoiceQuoteCounter; _this._sharedInvoiceCreditCounter = $$v.sharedInvoiceCreditCounter; _this._defaultInvoiceTerms = $$v.defaultInvoiceTerms; _this._defaultQuoteTerms = $$v.defaultQuoteTerms; _this._defaultQuoteFooter = $$v.defaultQuoteFooter; _this._defaultCreditTerms = $$v.defaultCreditTerms; _this._defaultCreditFooter = $$v.defaultCreditFooter; _this._defaultInvoiceDesignId = $$v.defaultInvoiceDesignId; _this._defaultQuoteDesignId = $$v.defaultQuoteDesignId; _this._defaultCreditDesignId = $$v.defaultCreditDesignId; _this._defaultInvoiceFooter = $$v.defaultInvoiceFooter; _this._defaultTaxName1 = $$v.defaultTaxName1; _this._defaultTaxRate1 = $$v.defaultTaxRate1; _this._defaultTaxName2 = $$v.defaultTaxName2; _this._defaultTaxRate2 = $$v.defaultTaxRate2; _this._defaultTaxName3 = $$v.defaultTaxName3; _this._defaultTaxRate3 = $$v.defaultTaxRate3; _this._defaultPaymentTypeId = $$v.defaultPaymentTypeId; t1 = $$v.pdfVariables; if (t1 == null) t1 = null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._pdfVariables = t1; _this._emailSignature = $$v.emailSignature; _this._emailSubjectInvoice = $$v.emailSubjectInvoice; _this._emailSubjectQuote = $$v.emailSubjectQuote; _this._emailSubjectCredit = $$v.emailSubjectCredit; _this._emailSubjectPayment = $$v.emailSubjectPayment; _this._emailSubjectPaymentPartial = $$v.emailSubjectPaymentPartial; _this._emailBodyInvoice = $$v.emailBodyInvoice; _this._emailBodyQuote = $$v.emailBodyQuote; _this._emailBodyCredit = $$v.emailBodyCredit; _this._emailBodyPayment = $$v.emailBodyPayment; _this._emailBodyPaymentPartial = $$v.emailBodyPaymentPartial; _this._emailSubjectReminder1 = $$v.emailSubjectReminder1; _this._emailSubjectReminder2 = $$v.emailSubjectReminder2; _this._emailSubjectReminder3 = $$v.emailSubjectReminder3; _this._emailBodyReminder1 = $$v.emailBodyReminder1; _this._emailBodyReminder2 = $$v.emailBodyReminder2; _this._emailBodyReminder3 = $$v.emailBodyReminder3; _this._emailSubjectCustom1 = $$v.emailSubjectCustom1; _this._emailBodyCustom1 = $$v.emailBodyCustom1; _this._emailSubjectCustom2 = $$v.emailSubjectCustom2; _this._emailBodyCustom2 = $$v.emailBodyCustom2; _this._emailSubjectCustom3 = $$v.emailSubjectCustom3; _this._emailBodyCustom3 = $$v.emailBodyCustom3; _this._emailSubjectStatement = $$v.emailSubjectStatement; _this._emailBodyStatement = $$v.emailBodyStatement; _this._emailSubjectPurchaseOrder = $$v.emailSubjectPurchaseOrder; _this._emailBodyPurchaseOrder = $$v.emailBodyPurchaseOrder; _this._enablePortalPassword = $$v.enablePortalPassword; _this._signatureOnPdf = $$v.signatureOnPdf; _this._enableEmailMarkup = $$v.enableEmailMarkup; _this._showAcceptInvoiceTerms = $$v.showAcceptInvoiceTerms; _this._showAcceptQuoteTerms = $$v.showAcceptQuoteTerms; _this._requireInvoiceSignature = $$v.requireInvoiceSignature; _this._requireQuoteSignature = $$v.requireQuoteSignature; _this._settings_model$_name = $$v.name; _this._companyLogo = $$v.companyLogo; _this._website = $$v.website; _this._address1 = $$v.address1; _this._address2 = $$v.address2; _this._city = $$v.city; _this._settings_model$_state = $$v.state; _this._postalCode = $$v.postalCode; _this._phone = $$v.phone; _this._email = $$v.email; _this._countryId = $$v.countryId; _this._vatNumber = $$v.vatNumber; _this._idNumber = $$v.idNumber; _this._pageSize = $$v.pageSize; _this._pageLayout = $$v.pageLayout; _this._fontSize = $$v.fontSize; _this._primaryColor = $$v.primaryColor; _this._secondaryColor = $$v.secondaryColor; _this._primaryFont = $$v.primaryFont; _this._secondaryFont = $$v.secondaryFont; _this._hidePaidToDate = $$v.hidePaidToDate; _this._embedDocuments = $$v.embedDocuments; _this._allPagesHeader = $$v.allPagesHeader; _this._allPagesFooter = $$v.allPagesFooter; _this._enableReminder1 = $$v.enableReminder1; _this._enableReminder2 = $$v.enableReminder2; _this._enableReminder3 = $$v.enableReminder3; _this._enableReminderEndless = $$v.enableReminderEndless; _this._numDaysReminder1 = $$v.numDaysReminder1; _this._numDaysReminder2 = $$v.numDaysReminder2; _this._numDaysReminder3 = $$v.numDaysReminder3; _this._scheduleReminder1 = $$v.scheduleReminder1; _this._scheduleReminder2 = $$v.scheduleReminder2; _this._scheduleReminder3 = $$v.scheduleReminder3; _this._endlessReminderFrequencyId = $$v.endlessReminderFrequencyId; _this._lateFeeAmount1 = $$v.lateFeeAmount1; _this._lateFeeAmount2 = $$v.lateFeeAmount2; _this._lateFeeAmount3 = $$v.lateFeeAmount3; _this._lateFeeAmountEndless = $$v.lateFeeAmountEndless; _this._lateFeePercent1 = $$v.lateFeePercent1; _this._lateFeePercent2 = $$v.lateFeePercent2; _this._lateFeePercent3 = $$v.lateFeePercent3; _this._lateFeePercentEndless = $$v.lateFeePercentEndless; _this._emailSubjectReminderEndless = $$v.emailSubjectReminderEndless; _this._emailBodyReminderEndless = $$v.emailBodyReminderEndless; _this._clientOnlinePaymentNotification = $$v.clientOnlinePaymentNotification; _this._clientManualPaymentNotification = $$v.clientManualPaymentNotification; _this._counterNumberApplied = $$v.counterNumberApplied; _this._emailSendingMethod = $$v.emailSendingMethod; _this._gmailSendingUserId = $$v.gmailSendingUserId; _this._clientPortalTerms = $$v.clientPortalTerms; _this._clientPortalPrivacy = $$v.clientPortalPrivacy; _this._lockInvoices = $$v.lockInvoices; _this._autoBill = $$v.autoBill; _this._clientPortalAllowUnderPayment = $$v.clientPortalAllowUnderPayment; _this._clientPortalAllowOverPayment = $$v.clientPortalAllowOverPayment; _this._autoBillDate = $$v.autoBillDate; _this._clientPortalUnderPaymentMinimum = $$v.clientPortalUnderPaymentMinimum; _this._useCreditsPayment = $$v.useCreditsPayment; _this._clientPortalCustomHeader = $$v.clientPortalCustomHeader; _this._clientPortalCustomCss = $$v.clientPortalCustomCss; _this._clientPortalCustomFooter = $$v.clientPortalCustomFooter; _this._clientPortalCustomJs = $$v.clientPortalCustomJs; _this._hideEmptyColumnsOnPdf = $$v.hideEmptyColumnsOnPdf; _this._entitySendTime = $$v.entitySendTime; _this._clientPortalTasks = $$v.clientPortalTasks; _this._pageNumbering = $$v.pageNumbering; _this._pageNumberingAlignment = $$v.pageNumberingAlignment; _this._requirePurchaseOrderSignature = $$v.requirePurchaseOrderSignature; _this._defaultPurchaseOrderTerms = $$v.defaultPurchaseOrderTerms; _this._defaultPurchaseOrderDesignId = $$v.defaultPurchaseOrderDesignId; _this._defaultPurchaseOrderFooter = $$v.defaultPurchaseOrderFooter; _this._purchaseOrderNumberPattern = $$v.purchaseOrderNumberPattern; _this._purchaseOrderNumberCounter = $$v.purchaseOrderNumberCounter; _this._qrIban = $$v.qrIban; _this._besrId = $$v.besrId; _this._settings_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, exception, _this = this, _$result = null; try { _$result0 = _this._settings_model$_$v; if (_$result0 == null) { t1 = _this.get$_settings_model$_$this()._timezoneId; t2 = _this.get$_settings_model$_$this()._dateFormatId; t3 = _this.get$_settings_model$_$this()._enableMilitaryTime; t4 = _this.get$_settings_model$_$this()._languageId; t5 = _this.get$_settings_model$_$this()._showCurrencyCode; t6 = _this.get$_settings_model$_$this()._currencyId; t7 = _this.get$_settings_model$_$this()._customValue1; t8 = _this.get$_settings_model$_$this()._customValue2; t9 = _this.get$_settings_model$_$this()._customValue3; t10 = _this.get$_settings_model$_$this()._customValue4; t11 = _this.get$_settings_model$_$this()._defaultPaymentTerms; t12 = _this.get$_settings_model$_$this()._defaultValidUntil; t13 = _this.get$_settings_model$_$this()._companyGatewayIds; t14 = _this.get$_settings_model$_$this()._defaultTaskRate; t15 = _this.get$_settings_model$_$this()._sendReminders; t16 = _this.get$_settings_model$_$this()._enablePortal; t17 = _this.get$_settings_model$_$this()._enablePortalDashboard; t18 = _this.get$_settings_model$_$this()._enablePortalTasks; t19 = _this.get$_settings_model$_$this()._enableClientPortalUploads; t20 = _this.get$_settings_model$_$this()._enableVendorPortalUploads; t21 = _this.get$_settings_model$_$this()._emailStyle; t22 = _this.get$_settings_model$_$this()._replyToEmail; t23 = _this.get$_settings_model$_$this()._replyToName; t24 = _this.get$_settings_model$_$this()._emailFromName; t25 = _this.get$_settings_model$_$this()._bccEmail; t26 = _this.get$_settings_model$_$this()._pdfEmailAttachment; t27 = _this.get$_settings_model$_$this()._ublEmailAttachment; t28 = _this.get$_settings_model$_$this()._documentEmailAttachment; t29 = _this.get$_settings_model$_$this()._emailStyleCustom; t30 = _this.get$_settings_model$_$this()._customMessageDashboard; t31 = _this.get$_settings_model$_$this()._customMessageUnpaidInvoice; t32 = _this.get$_settings_model$_$this()._customMessagePaidInvoice; t33 = _this.get$_settings_model$_$this()._customMessageUnapprovedQuote; t34 = _this.get$_settings_model$_$this()._autoArchiveInvoice; t35 = _this.get$_settings_model$_$this()._autoArchiveInvoiceCancelled; t36 = _this.get$_settings_model$_$this()._autoArchiveQuote; t37 = _this.get$_settings_model$_$this()._autoEmailInvoice; t38 = _this.get$_settings_model$_$this()._autoConvertQuote; t39 = _this.get$_settings_model$_$this()._enableInclusiveTaxes; t40 = _this._translations; t40 = t40 == null ? null : t40.build$0(0); t41 = _this.get$_settings_model$_$this()._taskNumberPattern; t42 = _this.get$_settings_model$_$this()._taskNumberCounter; t43 = _this.get$_settings_model$_$this()._expenseNumberPattern; t44 = _this.get$_settings_model$_$this()._expenseNumberCounter; t45 = _this.get$_settings_model$_$this()._recurringExpenseNumberPattern; t46 = _this.get$_settings_model$_$this()._recurringExpenseNumberCounter; t47 = _this.get$_settings_model$_$this()._vendorNumberPattern; t48 = _this.get$_settings_model$_$this()._vendorNumberCounter; t49 = _this.get$_settings_model$_$this()._ticketNumberPattern; t50 = _this.get$_settings_model$_$this()._ticketNumberCounter; t51 = _this.get$_settings_model$_$this()._paymentNumberPattern; t52 = _this.get$_settings_model$_$this()._paymentNumberCounter; t53 = _this.get$_settings_model$_$this()._projectNumberPattern; t54 = _this.get$_settings_model$_$this()._projectNumberCounter; t55 = _this.get$_settings_model$_$this()._invoiceNumberPattern; t56 = _this.get$_settings_model$_$this()._invoiceNumberCounter; t57 = _this.get$_settings_model$_$this()._recurringInvoiceNumberPattern; t58 = _this.get$_settings_model$_$this()._recurringInvoiceNumberCounter; t59 = _this.get$_settings_model$_$this()._quoteNumberPattern; t60 = _this.get$_settings_model$_$this()._quoteNumberCounter; t61 = _this.get$_settings_model$_$this()._clientNumberPattern; t62 = _this.get$_settings_model$_$this()._clientNumberCounter; t63 = _this.get$_settings_model$_$this()._creditNumberPattern; t64 = _this.get$_settings_model$_$this()._creditNumberCounter; t65 = _this.get$_settings_model$_$this()._recurringNumberPrefix; t66 = _this.get$_settings_model$_$this()._resetCounterFrequencyId; t67 = _this.get$_settings_model$_$this()._resetCounterDate; t68 = _this.get$_settings_model$_$this()._counterPadding; t69 = _this.get$_settings_model$_$this()._sharedInvoiceQuoteCounter; t70 = _this.get$_settings_model$_$this()._sharedInvoiceCreditCounter; t71 = _this.get$_settings_model$_$this()._defaultInvoiceTerms; t72 = _this.get$_settings_model$_$this()._defaultQuoteTerms; t73 = _this.get$_settings_model$_$this()._defaultQuoteFooter; t74 = _this.get$_settings_model$_$this()._defaultCreditTerms; t75 = _this.get$_settings_model$_$this()._defaultCreditFooter; t76 = _this.get$_settings_model$_$this()._defaultInvoiceDesignId; t77 = _this.get$_settings_model$_$this()._defaultQuoteDesignId; t78 = _this.get$_settings_model$_$this()._defaultCreditDesignId; t79 = _this.get$_settings_model$_$this()._defaultInvoiceFooter; t80 = _this.get$_settings_model$_$this()._defaultTaxName1; t81 = _this.get$_settings_model$_$this()._defaultTaxRate1; t82 = _this.get$_settings_model$_$this()._defaultTaxName2; t83 = _this.get$_settings_model$_$this()._defaultTaxRate2; t84 = _this.get$_settings_model$_$this()._defaultTaxName3; t85 = _this.get$_settings_model$_$this()._defaultTaxRate3; t86 = _this.get$_settings_model$_$this()._defaultPaymentTypeId; t87 = _this._pdfVariables; t87 = t87 == null ? null : t87.build$0(0); t88 = _this.get$_settings_model$_$this()._emailSignature; t89 = _this.get$_settings_model$_$this()._emailSubjectInvoice; t90 = _this.get$_settings_model$_$this()._emailSubjectQuote; t91 = _this.get$_settings_model$_$this()._emailSubjectCredit; t92 = _this.get$_settings_model$_$this()._emailSubjectPayment; t93 = _this.get$_settings_model$_$this()._emailSubjectPaymentPartial; t94 = _this.get$_settings_model$_$this()._emailBodyInvoice; t95 = _this.get$_settings_model$_$this()._emailBodyQuote; t96 = _this.get$_settings_model$_$this()._emailBodyCredit; t97 = _this.get$_settings_model$_$this()._emailBodyPayment; t98 = _this.get$_settings_model$_$this()._emailBodyPaymentPartial; t99 = _this.get$_settings_model$_$this()._emailSubjectReminder1; t100 = _this.get$_settings_model$_$this()._emailSubjectReminder2; t101 = _this.get$_settings_model$_$this()._emailSubjectReminder3; t102 = _this.get$_settings_model$_$this()._emailBodyReminder1; t103 = _this.get$_settings_model$_$this()._emailBodyReminder2; t104 = _this.get$_settings_model$_$this()._emailBodyReminder3; t105 = _this.get$_settings_model$_$this()._emailSubjectCustom1; t106 = _this.get$_settings_model$_$this()._emailBodyCustom1; t107 = _this.get$_settings_model$_$this()._emailSubjectCustom2; t108 = _this.get$_settings_model$_$this()._emailBodyCustom2; t109 = _this.get$_settings_model$_$this()._emailSubjectCustom3; t110 = _this.get$_settings_model$_$this()._emailBodyCustom3; t111 = _this.get$_settings_model$_$this()._emailSubjectStatement; t112 = _this.get$_settings_model$_$this()._emailBodyStatement; t113 = _this.get$_settings_model$_$this()._emailSubjectPurchaseOrder; t114 = _this.get$_settings_model$_$this()._emailBodyPurchaseOrder; t115 = _this.get$_settings_model$_$this()._enablePortalPassword; t116 = _this.get$_settings_model$_$this()._signatureOnPdf; t117 = _this.get$_settings_model$_$this()._enableEmailMarkup; t118 = _this.get$_settings_model$_$this()._showAcceptInvoiceTerms; t119 = _this.get$_settings_model$_$this()._showAcceptQuoteTerms; t120 = _this.get$_settings_model$_$this()._requireInvoiceSignature; t121 = _this.get$_settings_model$_$this()._requireQuoteSignature; t122 = _this.get$_settings_model$_$this()._settings_model$_name; t123 = _this.get$_settings_model$_$this()._companyLogo; t124 = _this.get$_settings_model$_$this()._website; t125 = _this.get$_settings_model$_$this()._address1; t126 = _this.get$_settings_model$_$this()._address2; t127 = _this.get$_settings_model$_$this()._city; t128 = _this.get$_settings_model$_$this()._settings_model$_state; t129 = _this.get$_settings_model$_$this()._postalCode; t130 = _this.get$_settings_model$_$this()._phone; t131 = _this.get$_settings_model$_$this()._email; t132 = _this.get$_settings_model$_$this()._countryId; t133 = _this.get$_settings_model$_$this()._vatNumber; t134 = _this.get$_settings_model$_$this()._idNumber; t135 = _this.get$_settings_model$_$this()._pageSize; t136 = _this.get$_settings_model$_$this()._pageLayout; t137 = _this.get$_settings_model$_$this()._fontSize; t138 = _this.get$_settings_model$_$this()._primaryColor; t139 = _this.get$_settings_model$_$this()._secondaryColor; t140 = _this.get$_settings_model$_$this()._primaryFont; t141 = _this.get$_settings_model$_$this()._secondaryFont; t142 = _this.get$_settings_model$_$this()._hidePaidToDate; t143 = _this.get$_settings_model$_$this()._embedDocuments; t144 = _this.get$_settings_model$_$this()._allPagesHeader; t145 = _this.get$_settings_model$_$this()._allPagesFooter; t146 = _this.get$_settings_model$_$this()._enableReminder1; t147 = _this.get$_settings_model$_$this()._enableReminder2; t148 = _this.get$_settings_model$_$this()._enableReminder3; t149 = _this.get$_settings_model$_$this()._enableReminderEndless; t150 = _this.get$_settings_model$_$this()._numDaysReminder1; t151 = _this.get$_settings_model$_$this()._numDaysReminder2; t152 = _this.get$_settings_model$_$this()._numDaysReminder3; t153 = _this.get$_settings_model$_$this()._scheduleReminder1; t154 = _this.get$_settings_model$_$this()._scheduleReminder2; t155 = _this.get$_settings_model$_$this()._scheduleReminder3; t156 = _this.get$_settings_model$_$this()._endlessReminderFrequencyId; t157 = _this.get$_settings_model$_$this()._lateFeeAmount1; t158 = _this.get$_settings_model$_$this()._lateFeeAmount2; t159 = _this.get$_settings_model$_$this()._lateFeeAmount3; t160 = _this.get$_settings_model$_$this()._lateFeeAmountEndless; t161 = _this.get$_settings_model$_$this()._lateFeePercent1; t162 = _this.get$_settings_model$_$this()._lateFeePercent2; t163 = _this.get$_settings_model$_$this()._lateFeePercent3; t164 = _this.get$_settings_model$_$this()._lateFeePercentEndless; t165 = _this.get$_settings_model$_$this()._emailSubjectReminderEndless; t166 = _this.get$_settings_model$_$this()._emailBodyReminderEndless; t167 = _this.get$_settings_model$_$this()._clientOnlinePaymentNotification; t168 = _this.get$_settings_model$_$this()._clientManualPaymentNotification; t169 = _this.get$_settings_model$_$this()._counterNumberApplied; t170 = _this.get$_settings_model$_$this()._emailSendingMethod; t171 = _this.get$_settings_model$_$this()._gmailSendingUserId; t172 = _this.get$_settings_model$_$this()._clientPortalTerms; t173 = _this.get$_settings_model$_$this()._clientPortalPrivacy; t174 = _this.get$_settings_model$_$this()._lockInvoices; t175 = _this.get$_settings_model$_$this()._autoBill; t176 = _this.get$_settings_model$_$this()._clientPortalAllowUnderPayment; t177 = _this.get$_settings_model$_$this()._clientPortalAllowOverPayment; t178 = _this.get$_settings_model$_$this()._autoBillDate; t179 = _this.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum; t180 = _this.get$_settings_model$_$this()._useCreditsPayment; t181 = _this.get$_settings_model$_$this()._clientPortalCustomHeader; t182 = _this.get$_settings_model$_$this()._clientPortalCustomCss; t183 = _this.get$_settings_model$_$this()._clientPortalCustomFooter; t184 = _this.get$_settings_model$_$this()._clientPortalCustomJs; t185 = _this.get$_settings_model$_$this()._hideEmptyColumnsOnPdf; t186 = _this.get$_settings_model$_$this()._entitySendTime; t187 = _this.get$_settings_model$_$this()._clientPortalTasks; t188 = _this.get$_settings_model$_$this()._pageNumbering; t189 = _this.get$_settings_model$_$this()._pageNumberingAlignment; t190 = _this.get$_settings_model$_$this()._requirePurchaseOrderSignature; t191 = _this.get$_settings_model$_$this()._defaultPurchaseOrderTerms; t192 = _this.get$_settings_model$_$this()._defaultPurchaseOrderDesignId; t193 = _this.get$_settings_model$_$this()._defaultPurchaseOrderFooter; t194 = _this.get$_settings_model$_$this()._purchaseOrderNumberPattern; t195 = _this.get$_settings_model$_$this()._purchaseOrderNumberCounter; t196 = _this.get$_settings_model$_$this()._qrIban; _$result0 = A._$SettingsEntity$_(t125, t126, t145, t144, t34, t35, t36, t175, t178, t38, t37, t25, _this.get$_settings_model$_$this()._besrId, t127, t168, t62, t61, t167, t177, t176, t182, t183, t181, t184, t173, t187, t172, t179, t13, t123, t169, t68, t132, t64, t63, t6, t30, t32, t33, t31, t7, t8, t9, t10, t2, t78, t75, t74, t76, t79, t71, t11, t86, t192, t193, t191, t77, t73, t72, t14, t80, t82, t84, t81, t83, t85, t12, t28, t131, t96, t106, t108, t110, t94, t97, t98, t114, t95, t102, t103, t104, t166, t112, t24, t170, t88, t21, t29, t91, t105, t107, t109, t89, t92, t93, t113, t90, t99, t100, t101, t165, t111, t143, t19, t117, t39, t3, t16, t17, t115, t18, t146, t147, t148, t149, t20, t156, t186, t44, t43, t137, t171, t185, t142, t134, t56, t55, t4, t157, t158, t159, t160, t161, t162, t163, t164, t174, t122, t150, t151, t152, t136, t188, t189, t135, t52, t51, t26, t87, t130, t129, t138, t140, t54, t53, t195, t194, t196, t60, t59, t46, t45, t58, t57, t65, t22, t23, t120, t190, t121, t67, t66, t153, t154, t155, t139, t141, t15, t70, t69, t118, t119, t5, t116, t128, t42, t41, t50, t49, t1, t40, t27, t180, t133, t48, t47, t124); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "translations"; t1 = _this._translations; if (t1 != null) t1.build$0(0); _$failedField = "pdfVariables"; t1 = _this._pdfVariables; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("SettingsEntity", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._settings_model$_$v = t1; return _$result; } }; A.ColorTheme.prototype = {}; A.CountryListResponse.prototype = {}; A.CountryItemResponse.prototype = {}; A.CountryEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (B.JSString_methods.contains$1(this.iso2.toLowerCase(), filter)) return true; else if (B.JSString_methods.contains$1(this.iso3.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { var t1; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); t1 = this.iso2; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = this.iso3; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$CountryListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_kr30)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.CountryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CountryEntity, t3 = type$.ListBuilder_legacy_CountryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._country_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._country_model$_data = t6; result._country_model$_$v = null; } t4 = result._country_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._country_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_kr30)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_nXg; }, get$wireName() { return "CountryListResponse"; } }; A._$CountryItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_i9j)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CountryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CountryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._country_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.CountryEntityBuilder(); t3._country_model$_$v = t2; result._country_model$_data = t3; result._country_model$_$v = null; } t2 = result._country_model$_data; if (t2 == null) t2 = result._country_model$_data = new A.CountryEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_i9j)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._country_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_cKo; }, get$wireName() { return "CountryItemResponse"; } }; A._$CountryEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "swap_postal_code", serializers.serialize$2$specifiedType(object.swapPostalCode, B.FullType_MtR), "swap_currency_symbol", serializers.serialize$2$specifiedType(object.swapCurrencySymbol, B.FullType_MtR), "thousand_separator", serializers.serialize$2$specifiedType(object.thousandSeparator, B.FullType_h8g), "decimal_separator", serializers.serialize$2$specifiedType(object.decimalSeparator, B.FullType_h8g), "iso_3166_2", serializers.serialize$2$specifiedType(object.iso2, B.FullType_h8g), "iso_3166_3", serializers.serialize$2$specifiedType(object.iso3, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.CountryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._country_model$_name = t1; break; case "swap_postal_code": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_country_model$_$this()._swapPostalCode = t1; break; case "swap_currency_symbol": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_country_model$_$this()._country_model$_swapCurrencySymbol = t1; break; case "thousand_separator": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._country_model$_thousandSeparator = t1; break; case "decimal_separator": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._country_model$_decimalSeparator = t1; break; case "iso_3166_2": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._iso2 = t1; break; case "iso_3166_3": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._iso3 = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_country_model$_$this()._country_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_THJ; }, get$wireName() { return "CountryEntity"; } }; A._$CountryListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CountryListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._country_model$__hashCode; return t1 == null ? this._country_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CountryListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._country_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._country_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._country_model$_$v = null; } t1 = _this._country_model$_data; return t1 == null ? _this._country_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CountryEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "CountryListResponse", _$result = null; try { _$result0 = _this._country_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CountryListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._country_model$_$v = t1; return _$result; } }; A._$CountryItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CountryItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._country_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._country_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CountryItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._country_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.CountryEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._country_model$_$v = t1; _this._country_model$_data = t2; _this._country_model$_$v = null; } t1 = _this._country_model$_data; return t1 == null ? _this._country_model$_data = new A.CountryEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._country_model$_$v; if (_$result0 == null) _$result0 = new A._$CountryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("CountryItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._country_model$_$v = t1; return _$result; } }; A._$CountryEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.CountryEntity && _this.name === other.name && _this.swapPostalCode === other.swapPostalCode && _this.swapCurrencySymbol === other.swapCurrencySymbol && _this.thousandSeparator === other.thousandSeparator && _this.decimalSeparator === other.decimalSeparator && _this.iso2 === other.iso2 && _this.iso3 === other.iso3 && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._country_model$__hashCode; return t1 == null ? _this._country_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSBool_methods.get$hashCode(_this.swapPostalCode)), B.JSBool_methods.get$hashCode(_this.swapCurrencySymbol)), B.JSString_methods.get$hashCode(_this.thousandSeparator)), B.JSString_methods.get$hashCode(_this.decimalSeparator)), B.JSString_methods.get$hashCode(_this.iso2)), B.JSString_methods.get$hashCode(_this.iso3)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "swapPostalCode", _this.swapPostalCode); t2.add$2(t1, "swapCurrencySymbol", _this.swapCurrencySymbol); t2.add$2(t1, "thousandSeparator", _this.thousandSeparator); t2.add$2(t1, "decimalSeparator", _this.decimalSeparator); t2.add$2(t1, "iso2", _this.iso2); t2.add$2(t1, "iso3", _this.iso3); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.CountryEntityBuilder.prototype = { get$name(_) { return this.get$_country_model$_$this()._country_model$_name; }, get$id(_) { return this.get$_country_model$_$this()._country_model$_id; }, get$_country_model$_$this() { var _this = this, $$v = _this._country_model$_$v; if ($$v != null) { _this._country_model$_name = $$v.name; _this._swapPostalCode = $$v.swapPostalCode; _this._country_model$_swapCurrencySymbol = $$v.swapCurrencySymbol; _this._country_model$_thousandSeparator = $$v.thousandSeparator; _this._country_model$_decimalSeparator = $$v.decimalSeparator; _this._iso2 = $$v.iso2; _this._iso3 = $$v.iso3; _this._country_model$_id = $$v.id; _this._country_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, _this = this, _s13_ = "CountryEntity", _$result = _this._country_model$_$v; if (_$result == null) { t1 = _this.get$_country_model$_$this()._country_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_country_model$_$this()._swapPostalCode; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "swapPostalCode")); t3 = _this.get$_country_model$_$this()._country_model$_swapCurrencySymbol; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "swapCurrencySymbol")); t4 = _this.get$_country_model$_$this()._country_model$_thousandSeparator; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "thousandSeparator")); t5 = _this.get$_country_model$_$this()._country_model$_decimalSeparator; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "decimalSeparator")); t6 = _this.get$_country_model$_$this()._iso2; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "iso2")); t7 = _this.get$_country_model$_$this()._iso3; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "iso3")); t8 = _this.get$_country_model$_$this()._country_model$_id; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result = A._$CountryEntity$_(t5, t8, t6, t7, t1, t3, t2, t4); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._country_model$_$v = _$result; } }; A._CountryEntity_Object_SelectableEntity.prototype = {}; A.CurrencyListResponse.prototype = {}; A.CurrencyItemResponse.prototype = {}; A.CurrencyEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (B.JSString_methods.contains$1(this.code.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.code; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$CurrencyListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_4uk)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.CurrencyListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CurrencyEntity, t3 = type$.ListBuilder_legacy_CurrencyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._currency_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._currency_model$_data = t6; result._currency_model$_$v = null; } t4 = result._currency_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._currency_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_4uk)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_mb4; }, get$wireName() { return "CurrencyListResponse"; } }; A._$CurrencyItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Yio)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CurrencyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CurrencyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._currency_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.CurrencyEntityBuilder(); t3._currency_model$_$v = t2; result._currency_model$_data = t3; result._currency_model$_$v = null; } t2 = result._currency_model$_data; if (t2 == null) t2 = result._currency_model$_data = new A.CurrencyEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Yio)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._currency_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uUY; }, get$wireName() { return "CurrencyItemResponse"; } }; A._$CurrencyEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "symbol", serializers.serialize$2$specifiedType(object.symbol, B.FullType_h8g), "precision", serializers.serialize$2$specifiedType(object.precision, B.FullType_kjq), "thousand_separator", serializers.serialize$2$specifiedType(object.thousandSeparator, B.FullType_h8g), "decimal_separator", serializers.serialize$2$specifiedType(object.decimalSeparator, B.FullType_h8g), "code", serializers.serialize$2$specifiedType(object.code, B.FullType_h8g), "swap_currency_symbol", serializers.serialize$2$specifiedType(object.swapCurrencySymbol, B.FullType_MtR), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, B.FullType_MME), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.CurrencyEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._currency_model$_name = t1; break; case "symbol": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._symbol = t1; break; case "precision": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_currency_model$_$this()._precision = t1; break; case "thousand_separator": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._thousandSeparator = t1; break; case "decimal_separator": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._decimalSeparator = t1; break; case "code": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._code = t1; break; case "swap_currency_symbol": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_currency_model$_$this()._swapCurrencySymbol = t1; break; case "exchange_rate": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_currency_model$_$this()._currency_model$_exchangeRate = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_currency_model$_$this()._currency_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_0sW; }, get$wireName() { return "CurrencyEntity"; } }; A._$CurrencyListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CurrencyListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._currency_model$__hashCode; return t1 == null ? this._currency_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CurrencyListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._currency_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._currency_model$_$v = null; } t1 = _this._currency_model$_data; return t1 == null ? _this._currency_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CurrencyEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "CurrencyListResponse", _$result = null; try { _$result0 = _this._currency_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CurrencyListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._currency_model$_$v = t1; return _$result; } }; A._$CurrencyItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CurrencyItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._currency_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._currency_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CurrencyItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.CurrencyEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._currency_model$_$v = t1; _this._currency_model$_data = t2; _this._currency_model$_$v = null; } t1 = _this._currency_model$_data; return t1 == null ? _this._currency_model$_data = new A.CurrencyEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._currency_model$_$v; if (_$result0 == null) _$result0 = new A._$CurrencyItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("CurrencyItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._currency_model$_$v = t1; return _$result; } }; A._$CurrencyEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.CurrencyEntity && _this.name === other.name && _this.symbol === other.symbol && _this.precision === other.precision && _this.thousandSeparator === other.thousandSeparator && _this.decimalSeparator === other.decimalSeparator && _this.code === other.code && _this.swapCurrencySymbol === other.swapCurrencySymbol && _this.exchangeRate === other.exchangeRate && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._currency_model$__hashCode; return t1 == null ? _this._currency_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.symbol)), B.JSInt_methods.get$hashCode(_this.precision)), B.JSString_methods.get$hashCode(_this.thousandSeparator)), B.JSString_methods.get$hashCode(_this.decimalSeparator)), B.JSString_methods.get$hashCode(_this.code)), B.JSBool_methods.get$hashCode(_this.swapCurrencySymbol)), B.JSNumber_methods.get$hashCode(_this.exchangeRate)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "symbol", _this.symbol); t2.add$2(t1, "precision", _this.precision); t2.add$2(t1, "thousandSeparator", _this.thousandSeparator); t2.add$2(t1, "decimalSeparator", _this.decimalSeparator); t2.add$2(t1, "code", _this.code); t2.add$2(t1, "swapCurrencySymbol", _this.swapCurrencySymbol); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.CurrencyEntityBuilder.prototype = { get$name(_) { return this.get$_currency_model$_$this()._currency_model$_name; }, get$id(_) { return this.get$_currency_model$_$this()._currency_model$_id; }, get$_currency_model$_$this() { var _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { _this._currency_model$_name = $$v.name; _this._symbol = $$v.symbol; _this._precision = $$v.precision; _this._thousandSeparator = $$v.thousandSeparator; _this._decimalSeparator = $$v.decimalSeparator; _this._code = $$v.code; _this._swapCurrencySymbol = $$v.swapCurrencySymbol; _this._currency_model$_exchangeRate = $$v.exchangeRate; _this._currency_model$_id = $$v.id; _this._currency_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _s14_ = "CurrencyEntity", _$result = _this._currency_model$_$v; if (_$result == null) { t1 = _this.get$_currency_model$_$this()._currency_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_currency_model$_$this()._symbol; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "symbol")); t3 = _this.get$_currency_model$_$this()._precision; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "precision")); t4 = _this.get$_currency_model$_$this()._thousandSeparator; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "thousandSeparator")); t5 = _this.get$_currency_model$_$this()._decimalSeparator; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "decimalSeparator")); t6 = _this.get$_currency_model$_$this()._code; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "code")); t7 = _this.get$_currency_model$_$this()._swapCurrencySymbol; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "swapCurrencySymbol")); t8 = _this.get$_currency_model$_$this()._currency_model$_exchangeRate; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "exchangeRate")); t9 = _this.get$_currency_model$_$this()._currency_model$_id; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "id")); _$result = A._$CurrencyEntity$_(t6, t5, t8, t9, t1, t3, t7, t2, t4); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._currency_model$_$v = _$result; } }; A._CurrencyEntity_Object_SelectableEntity.prototype = {}; A.DateFormatListResponse.prototype = {}; A.DateFormatItemResponse.prototype = {}; A.DateFormatEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(filter.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$preview() { return A.DateFormat$(this.format, "en").format$1(0, A.DateTime_parse("2000-01-31")); }, get$listDisplayName() { return A.DateFormat$(this.format, "en").format$1(0, A.DateTime_parse("2000-01-31")); }, get$listDisplayAmount() { return null; } }; A._$DateFormatListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_rQK)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.DateFormatListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DateFormatEntity, t3 = type$.ListBuilder_legacy_DateFormatEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._date_format_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._date_format_model$_data = t6; result._date_format_model$_$v = null; } t4 = result._date_format_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._date_format_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_rQK)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_jjG; }, get$wireName() { return "DateFormatListResponse"; } }; A._$DateFormatItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_gg9)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.DateFormatItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DateFormatEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._date_format_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.DateFormatEntityBuilder(); t3._date_format_model$_$v = t2; result._date_format_model$_data = t3; result._date_format_model$_$v = null; } t2 = result._date_format_model$_data; if (t2 == null) t2 = result._date_format_model$_data = new A.DateFormatEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_gg9)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._date_format_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_5dG; }, get$wireName() { return "DateFormatItemResponse"; } }; A._$DateFormatEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["format_dart", serializers.serialize$2$specifiedType(object.format, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.DateFormatEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "format_dart": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._date_format_model$_$v; if ($$v != null) { result._date_format_model$_format = $$v.format; result._date_format_model$_id = $$v.id; result._date_format_model$_$v = null; } result._date_format_model$_format = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._date_format_model$_$v; if ($$v != null) { result._date_format_model$_format = $$v.format; result._date_format_model$_id = $$v.id; result._date_format_model$_$v = null; } result._date_format_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_SJx; }, get$wireName() { return "DateFormatEntity"; } }; A._$DateFormatListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DateFormatListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._date_format_model$__hashCode; return t1 == null ? this._date_format_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DateFormatListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._date_format_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._date_format_model$_$v = null; } t1 = _this._date_format_model$_data; return t1 == null ? _this._date_format_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DateFormatEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "DateFormatListResponse", _$result = null; try { _$result0 = _this._date_format_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$DateFormatListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._date_format_model$_$v = t1; return _$result; } }; A._$DateFormatItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DateFormatItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._date_format_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._date_format_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DateFormatItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.DateFormatEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._date_format_model$_$v = t1; _this._date_format_model$_data = t2; _this._date_format_model$_$v = null; } t1 = _this._date_format_model$_data; return t1 == null ? _this._date_format_model$_data = new A.DateFormatEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._date_format_model$_$v; if (_$result0 == null) _$result0 = new A._$DateFormatItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("DateFormatItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._date_format_model$_$v = t1; return _$result; } }; A._$DateFormatEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DateFormatEntity && this.format === other.format && this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._date_format_model$__hashCode; return t1 == null ? _this._date_format_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.format)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "format", this.format); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$id(receiver) { return this.id; } }; A.DateFormatEntityBuilder.prototype = { get$id(_) { return this.get$_date_format_model$_$this()._date_format_model$_id; }, get$_date_format_model$_$this() { var _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { _this._date_format_model$_format = $$v.format; _this._date_format_model$_id = $$v.id; _this._date_format_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s16_ = "DateFormatEntity", _$result = _this._date_format_model$_$v; if (_$result == null) { t1 = _this.get$_date_format_model$_$this()._date_format_model$_format; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "format")); t2 = _this.get$_date_format_model$_$this()._date_format_model$_id; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "id")); _$result = new A._$DateFormatEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._date_format_model$_$v = _$result; } }; A._DateFormatEntity_Object_SelectableEntity.prototype = {}; A.DatetimeFormatListResponse.prototype = {}; A.DatetimeFormatItemResponse.prototype = {}; A.DatetimeFormatEntity.prototype = {}; A._$DatetimeFormatListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_gsm)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.DatetimeFormatListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DatetimeFormatEntity, t3 = type$.ListBuilder_legacy_DatetimeFormatEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._datetime_format_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._datetime_format_model$_data = t6; result._datetime_format_model$_$v = null; } t4 = result._datetime_format_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._datetime_format_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_gsm)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_aYE; }, get$wireName() { return "DatetimeFormatListResponse"; } }; A._$DatetimeFormatItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_kqZ)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.DatetimeFormatItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DatetimeFormatEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._datetime_format_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.DatetimeFormatEntityBuilder(); t3._datetime_format_model$_$v = t2; result._datetime_format_model$_data = t3; result._datetime_format_model$_$v = null; } t2 = result._datetime_format_model$_data; if (t2 == null) t2 = result._datetime_format_model$_data = new A.DatetimeFormatEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_kqZ)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._datetime_format_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_3GN; }, get$wireName() { return "DatetimeFormatItemResponse"; } }; A._$DatetimeFormatEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "format_dart", serializers.serialize$2$specifiedType(object.format, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.DatetimeFormatEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._datetime_format_model$_$v; if ($$v != null) { result._datetime_format_model$_id = $$v.id; result._datetime_format_model$_format = $$v.format; result._datetime_format_model$_$v = null; } result._datetime_format_model$_id = t1; break; case "format_dart": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._datetime_format_model$_$v; if ($$v != null) { result._datetime_format_model$_id = $$v.id; result._datetime_format_model$_format = $$v.format; result._datetime_format_model$_$v = null; } result._datetime_format_model$_format = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_myU; }, get$wireName() { return "DatetimeFormatEntity"; } }; A._$DatetimeFormatListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DatetimeFormatListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._datetime_format_model$__hashCode; return t1 == null ? this._datetime_format_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DatetimeFormatListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._datetime_format_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._datetime_format_model$_$v = null; } t1 = _this._datetime_format_model$_data; return t1 == null ? _this._datetime_format_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DatetimeFormatEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "DatetimeFormatListResponse", _$result = null; try { _$result0 = _this._datetime_format_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$DatetimeFormatListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._datetime_format_model$_$v = t1; return _$result; } }; A._$DatetimeFormatItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DatetimeFormatItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._datetime_format_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._datetime_format_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.DatetimeFormatItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.DatetimeFormatEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._datetime_format_model$_$v = t1; _this._datetime_format_model$_data = t2; _this._datetime_format_model$_$v = null; } t1 = _this._datetime_format_model$_data; return t1 == null ? _this._datetime_format_model$_data = new A.DatetimeFormatEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._datetime_format_model$_$v; if (_$result0 == null) _$result0 = new A._$DatetimeFormatItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("DatetimeFormatItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._datetime_format_model$_$v = t1; return _$result; } }; A._$DatetimeFormatEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DatetimeFormatEntity && this.id === other.id && this.format === other.format; }, get$hashCode(_) { var _this = this, t1 = _this._datetime_format_model$__hashCode; return t1 == null ? _this._datetime_format_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.format))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "format", this.format); return t2.toString$0(t1); }, get$id(receiver) { return this.id; } }; A.DatetimeFormatEntityBuilder.prototype = { get$id(_) { return this.get$_datetime_format_model$_$this()._datetime_format_model$_id; }, get$_datetime_format_model$_$this() { var _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { _this._datetime_format_model$_id = $$v.id; _this._datetime_format_model$_format = $$v.format; _this._datetime_format_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s20_ = "DatetimeFormatEntity", _$result = _this._datetime_format_model$_$v; if (_$result == null) { t1 = _this.get$_datetime_format_model$_$this()._datetime_format_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "id")); t2 = _this.get$_datetime_format_model$_$this()._datetime_format_model$_format; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "format")); _$result = new A._$DatetimeFormatEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._datetime_format_model$_$v = _$result; } }; A.FontEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$FontEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.FontEntity && this.name === other.name && this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._font_model$__hashCode; return t1 == null ? _this._font_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("FontEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A._FontEntity_Object_SelectableEntity.prototype = {}; A.IndustryListResponse.prototype = {}; A.IndustryItemResponse.prototype = {}; A.IndustryEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$IndustryListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_l2n)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.IndustryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_IndustryEntity, t3 = type$.ListBuilder_legacy_IndustryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._industry_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._industry_model$_data = t6; result._industry_model$_$v = null; } t4 = result._industry_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._industry_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_l2n)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_0kz; }, get$wireName() { return "IndustryListResponse"; } }; A._$IndustryItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_8h5)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.IndustryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_IndustryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._industry_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.IndustryEntityBuilder(); t3._industry_model$_$v = t2; result._industry_model$_data = t3; result._industry_model$_$v = null; } t2 = result._industry_model$_data; if (t2 == null) t2 = result._industry_model$_data = new A.IndustryEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_8h5)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._industry_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_GBj; }, get$wireName() { return "IndustryItemResponse"; } }; A._$IndustryEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.IndustryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._industry_model$_$v; if ($$v != null) { result._industry_model$_name = $$v.name; result._industry_model$_id = $$v.id; result._industry_model$_$v = null; } result._industry_model$_name = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._industry_model$_$v; if ($$v != null) { result._industry_model$_name = $$v.name; result._industry_model$_id = $$v.id; result._industry_model$_$v = null; } result._industry_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_6n0; }, get$wireName() { return "IndustryEntity"; } }; A._$IndustryListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.IndustryListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._industry_model$__hashCode; return t1 == null ? this._industry_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.IndustryListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._industry_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._industry_model$_$v = null; } t1 = _this._industry_model$_data; return t1 == null ? _this._industry_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_IndustryEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "IndustryListResponse", _$result = null; try { _$result0 = _this._industry_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$IndustryListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._industry_model$_$v = t1; return _$result; } }; A._$IndustryItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.IndustryItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._industry_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._industry_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.IndustryItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.IndustryEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._industry_model$_$v = t1; _this._industry_model$_data = t2; _this._industry_model$_$v = null; } t1 = _this._industry_model$_data; return t1 == null ? _this._industry_model$_data = new A.IndustryEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._industry_model$_$v; if (_$result0 == null) _$result0 = new A._$IndustryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("IndustryItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._industry_model$_$v = t1; return _$result; } }; A._$IndustryEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.IndustryEntity && this.name === other.name && this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._industry_model$__hashCode; return t1 == null ? _this._industry_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.IndustryEntityBuilder.prototype = { get$name(_) { return this.get$_industry_model$_$this()._industry_model$_name; }, get$id(_) { return this.get$_industry_model$_$this()._industry_model$_id; }, get$_industry_model$_$this() { var _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { _this._industry_model$_name = $$v.name; _this._industry_model$_id = $$v.id; _this._industry_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s14_ = "IndustryEntity", _$result = _this._industry_model$_$v; if (_$result == null) { t1 = _this.get$_industry_model$_$this()._industry_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_industry_model$_$this()._industry_model$_id; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "id")); _$result = new A._$IndustryEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._industry_model$_$v = _$result; } }; A._IndustryEntity_Object_SelectableEntity.prototype = {}; A.InvoiceStatusEntity.prototype = {}; A._$InvoiceStatusEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.InvoiceStatusEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._invoice_status_model$_$v; if ($$v != null) { result._invoice_status_model$_id = $$v.id; result._invoice_status_model$_name = $$v.name; result._invoice_status_model$_$v = null; } result._invoice_status_model$_id = t1; break; case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._invoice_status_model$_$v; if ($$v != null) { result._invoice_status_model$_id = $$v.id; result._invoice_status_model$_name = $$v.name; result._invoice_status_model$_$v = null; } result._invoice_status_model$_name = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_8aB0; }, get$wireName() { return "InvoiceStatusEntity"; } }; A._$InvoiceStatusEntity.prototype = { rebuild$1(updates) { var t1 = new A.InvoiceStatusEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._invoice_status_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.InvoiceStatusEntity && this.id === other.id && this.name === other.name; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_status_model$__hashCode; return t1 == null ? _this._invoice_status_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.name))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "name", this.name); return t2.toString$0(t1); }, get$id(receiver) { return this.id; }, get$name(receiver) { return this.name; } }; A.InvoiceStatusEntityBuilder.prototype = { get$id(_) { return this.get$_invoice_status_model$_$this()._invoice_status_model$_id; }, get$name(_) { return this.get$_invoice_status_model$_$this()._invoice_status_model$_name; }, get$_invoice_status_model$_$this() { var _this = this, $$v = _this._invoice_status_model$_$v; if ($$v != null) { _this._invoice_status_model$_id = $$v.id; _this._invoice_status_model$_name = $$v.name; _this._invoice_status_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s19_ = "InvoiceStatusEntity", _$result = _this._invoice_status_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_status_model$_$this()._invoice_status_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "id")); t2 = _this.get$_invoice_status_model$_$this()._invoice_status_model$_name; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "name")); _$result = A._$InvoiceStatusEntity$_(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._invoice_status_model$_$v = _$result; } }; A._InvoiceStatusEntity_Object_EntityStatus.prototype = {}; A.LanguageListResponse.prototype = {}; A.LanguageItemResponse.prototype = {}; A.LanguageEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (B.JSString_methods.contains$1(this.locale.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.locale; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$LanguageListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_r6h)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.LanguageListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_LanguageEntity, t3 = type$.ListBuilder_legacy_LanguageEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._language_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._language_model$_data = t6; result._language_model$_$v = null; } t4 = result._language_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._language_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_r6h)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_y6N; }, get$wireName() { return "LanguageListResponse"; } }; A._$LanguageItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_DZ5)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.LanguageItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_LanguageEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._language_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.LanguageEntityBuilder(); t3._language_model$_$v = t2; result._language_model$_data = t3; result._language_model$_$v = null; } t2 = result._language_model$_data; if (t2 == null) t2 = result._language_model$_data = new A.LanguageEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_DZ5)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._language_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_NcA; }, get$wireName() { return "LanguageItemResponse"; } }; A._$LanguageEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "locale", serializers.serialize$2$specifiedType(object.locale, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.LanguageEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_language_model$_$this()._language_model$_name = t1; break; case "locale": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_language_model$_$this()._language_model$_locale = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_language_model$_$this()._language_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Ohq; }, get$wireName() { return "LanguageEntity"; } }; A._$LanguageListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.LanguageListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._language_model$__hashCode; return t1 == null ? this._language_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.LanguageListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._language_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._language_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._language_model$_$v = null; } t1 = _this._language_model$_data; return t1 == null ? _this._language_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LanguageEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "LanguageListResponse", _$result = null; try { _$result0 = _this._language_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$LanguageListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._language_model$_$v = t1; return _$result; } }; A._$LanguageItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.LanguageItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._language_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._language_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.LanguageItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._language_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.LanguageEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._language_model$_$v = t1; _this._language_model$_data = t2; _this._language_model$_$v = null; } t1 = _this._language_model$_data; return t1 == null ? _this._language_model$_data = new A.LanguageEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._language_model$_$v; if (_$result0 == null) _$result0 = new A._$LanguageItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("LanguageItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._language_model$_$v = t1; return _$result; } }; A._$LanguageEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.LanguageEntity && _this.name === other.name && _this.locale === other.locale && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._language_model$__hashCode; return t1 == null ? _this._language_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.locale)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "locale", this.locale); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.LanguageEntityBuilder.prototype = { get$name(_) { return this.get$_language_model$_$this()._language_model$_name; }, get$id(_) { return this.get$_language_model$_$this()._language_model$_id; }, get$_language_model$_$this() { var _this = this, $$v = _this._language_model$_$v; if ($$v != null) { _this._language_model$_name = $$v.name; _this._language_model$_locale = $$v.locale; _this._language_model$_id = $$v.id; _this._language_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, _this = this, _s14_ = "LanguageEntity", _$result = _this._language_model$_$v; if (_$result == null) { t1 = _this.get$_language_model$_$this()._language_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_language_model$_$this()._language_model$_locale; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "locale")); t3 = _this.get$_language_model$_$this()._language_model$_id; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "id")); _$result = A._$LanguageEntity$_(t3, t2, t1); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._language_model$_$v = _$result; } }; A._LanguageEntity_Object_SelectableEntity.prototype = {}; A.PaymentTypeListResponse.prototype = {}; A.PaymentTypeItemResponse.prototype = {}; A.PaymentTypeEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$PaymentTypeListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_mJb)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.PaymentTypeListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentTypeEntity, t3 = type$.ListBuilder_legacy_PaymentTypeEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_type_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._payment_type_model$_data = t6; result._payment_type_model$_$v = null; } t4 = result._payment_type_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._payment_type_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_mJb)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_mNZ0; }, get$wireName() { return "PaymentTypeListResponse"; } }; A._$PaymentTypeItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_G05)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.PaymentTypeItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentTypeEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_type_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.PaymentTypeEntityBuilder(); t3._payment_type_model$_$v = t2; result._payment_type_model$_data = t3; result._payment_type_model$_$v = null; } t2 = result._payment_type_model$_data; if (t2 == null) t2 = result._payment_type_model$_data = new A.PaymentTypeEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_G05)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._payment_type_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_mNZ; }, get$wireName() { return "PaymentTypeItemResponse"; } }; A._$PaymentTypeEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.PaymentTypeEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._payment_type_model$_$v; if ($$v != null) { result._payment_type_model$_name = $$v.name; result._payment_type_model$_id = $$v.id; result._payment_type_model$_$v = null; } result._payment_type_model$_name = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._payment_type_model$_$v; if ($$v != null) { result._payment_type_model$_name = $$v.name; result._payment_type_model$_id = $$v.id; result._payment_type_model$_$v = null; } result._payment_type_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_zgG; }, get$wireName() { return "PaymentTypeEntity"; } }; A._$PaymentTypeListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTypeListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._payment_type_model$__hashCode; return t1 == null ? this._payment_type_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentTypeListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_type_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_type_model$_$v = null; } t1 = _this._payment_type_model$_data; return t1 == null ? _this._payment_type_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTypeEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "PaymentTypeListResponse", _$result = null; try { _$result0 = _this._payment_type_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$PaymentTypeListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_type_model$_$v = t1; return _$result; } }; A._$PaymentTypeItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTypeItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._payment_type_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._payment_type_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.PaymentTypeItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.PaymentTypeEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._payment_type_model$_$v = t1; _this._payment_type_model$_data = t2; _this._payment_type_model$_$v = null; } t1 = _this._payment_type_model$_data; return t1 == null ? _this._payment_type_model$_data = new A.PaymentTypeEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._payment_type_model$_$v; if (_$result0 == null) _$result0 = new A._$PaymentTypeItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("PaymentTypeItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_type_model$_$v = t1; return _$result; } }; A._$PaymentTypeEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTypeEntity && this.name === other.name && this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._payment_type_model$__hashCode; return t1 == null ? _this._payment_type_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.PaymentTypeEntityBuilder.prototype = { get$name(_) { return this.get$_payment_type_model$_$this()._payment_type_model$_name; }, get$id(_) { return this.get$_payment_type_model$_$this()._payment_type_model$_id; }, get$_payment_type_model$_$this() { var _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { _this._payment_type_model$_name = $$v.name; _this._payment_type_model$_id = $$v.id; _this._payment_type_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s17_ = "PaymentTypeEntity", _$result = _this._payment_type_model$_$v; if (_$result == null) { t1 = _this.get$_payment_type_model$_$this()._payment_type_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "name")); t2 = _this.get$_payment_type_model$_$this()._payment_type_model$_id; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "id")); _$result = A._$PaymentTypeEntity$_(t2, t1); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._payment_type_model$_$v = _$result; } }; A._PaymentTypeEntity_Object_SelectableEntity.prototype = {}; A.SizeListResponse.prototype = {}; A.SizeItemResponse.prototype = {}; A.SizeEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$SizeListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_wsa)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.SizeListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SizeEntity, t3 = type$.ListBuilder_legacy_SizeEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._size_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._size_model$_data = t6; result._size_model$_$v = null; } t4 = result._size_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._size_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_wsa)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_8Gh; }, get$wireName() { return "SizeListResponse"; } }; A._$SizeItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_paV)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.SizeItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_SizeEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._size_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.SizeEntityBuilder(); t3._size_model$_$v = t2; result._size_model$_data = t3; result._size_model$_$v = null; } t2 = result._size_model$_data; if (t2 == null) t2 = result._size_model$_data = new A.SizeEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_paV)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._size_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_USZ; }, get$wireName() { return "SizeItemResponse"; } }; A._$SizeEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.SizeEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._size_model$_$v; if ($$v != null) { result._size_model$_name = $$v.name; result._size_model$_id = $$v.id; result._size_model$_$v = null; } result._size_model$_name = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._size_model$_$v; if ($$v != null) { result._size_model$_name = $$v.name; result._size_model$_id = $$v.id; result._size_model$_$v = null; } result._size_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wMy1; }, get$wireName() { return "SizeEntity"; } }; A._$SizeListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SizeListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._size_model$__hashCode; return t1 == null ? this._size_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.SizeListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._size_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._size_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._size_model$_$v = null; } t1 = _this._size_model$_data; return t1 == null ? _this._size_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SizeEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "SizeListResponse", _$result = null; try { _$result0 = _this._size_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$SizeListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._size_model$_$v = t1; return _$result; } }; A._$SizeItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SizeItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._size_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._size_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.SizeItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._size_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.SizeEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._size_model$_$v = t1; _this._size_model$_data = t2; _this._size_model$_$v = null; } t1 = _this._size_model$_data; return t1 == null ? _this._size_model$_data = new A.SizeEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._size_model$_$v; if (_$result0 == null) _$result0 = new A._$SizeItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("SizeItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._size_model$_$v = t1; return _$result; } }; A._$SizeEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SizeEntity && this.name === other.name && this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._size_model$__hashCode; return t1 == null ? _this._size_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.SizeEntityBuilder.prototype = { get$name(_) { return this.get$_size_model$_$this()._size_model$_name; }, get$id(_) { return this.get$_size_model$_$this()._size_model$_id; }, get$_size_model$_$this() { var _this = this, $$v = _this._size_model$_$v; if ($$v != null) { _this._size_model$_name = $$v.name; _this._size_model$_id = $$v.id; _this._size_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s10_ = "SizeEntity", _$result = _this._size_model$_$v; if (_$result == null) { t1 = _this.get$_size_model$_$this()._size_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "name")); t2 = _this.get$_size_model$_$this()._size_model$_id; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "id")); _$result = new A._$SizeEntity(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._size_model$_$v = _$result; } }; A._SizeEntity_Object_SelectableEntity.prototype = {}; A.StaticDataItemResponse.prototype = {}; A.StaticDataEntity.prototype = {}; A.TemplateEntity.prototype = {}; A._$StaticDataItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Met)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.StaticDataItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_StaticDataEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._static_data_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.StaticDataEntityBuilder(); t3._static_data_model$_$v = t2; result._static_data_model$_data = t3; result._static_data_model$_$v = null; } t2 = result._static_data_model$_data; if (t2 == null) t2 = result._static_data_model$_data = new A.StaticDataEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Met)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._static_data_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_UNp; }, get$wireName() { return "StaticDataItemResponse"; } }; A._$StaticDataEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["currencies", serializers.serialize$2$specifiedType(object.currencies, B.FullType_4uk), "sizes", serializers.serialize$2$specifiedType(object.sizes, B.FullType_wsa), "industries", serializers.serialize$2$specifiedType(object.industries, B.FullType_l2n), "timezones", serializers.serialize$2$specifiedType(object.timezones, B.FullType_NYu), "gateways", serializers.serialize$2$specifiedType(object.gateways, B.FullType_N80), "date_formats", serializers.serialize$2$specifiedType(object.dateFormats, B.FullType_rQK), "datetime_formats", serializers.serialize$2$specifiedType(object.datetimeFormats, B.FullType_gsm), "languages", serializers.serialize$2$specifiedType(object.languages, B.FullType_r6h), "payment_types", serializers.serialize$2$specifiedType(object.paymentTypes, B.FullType_mJb), "countries", serializers.serialize$2$specifiedType(object.countries, B.FullType_kr30), "invoice_status", serializers.serialize$2$specifiedType(object.invoiceStatus, B.FullType_cL3), "templates", serializers.serialize$2$specifiedType(object.templates, B.FullType_IWk)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, key, value, t25, t26, t27, result = new A.StaticDataEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_TemplateEntity, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_InvoiceStatusEntity, t4 = type$.ListBuilder_legacy_InvoiceStatusEntity, t5 = type$.legacy_CountryEntity, t6 = type$.ListBuilder_legacy_CountryEntity, t7 = type$.legacy_PaymentTypeEntity, t8 = type$.ListBuilder_legacy_PaymentTypeEntity, t9 = type$.legacy_LanguageEntity, t10 = type$.ListBuilder_legacy_LanguageEntity, t11 = type$.legacy_DatetimeFormatEntity, t12 = type$.ListBuilder_legacy_DatetimeFormatEntity, t13 = type$.legacy_DateFormatEntity, t14 = type$.ListBuilder_legacy_DateFormatEntity, t15 = type$.legacy_GatewayEntity, t16 = type$.ListBuilder_legacy_GatewayEntity, t17 = type$.legacy_TimezoneEntity, t18 = type$.ListBuilder_legacy_TimezoneEntity, t19 = type$.legacy_IndustryEntity, t20 = type$.ListBuilder_legacy_IndustryEntity, t21 = type$.legacy_SizeEntity, t22 = type$.ListBuilder_legacy_SizeEntity, t23 = type$.legacy_CurrencyEntity, t24 = type$.ListBuilder_legacy_CurrencyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "currencies": t25 = result.get$_static_data_model$_$this(); t26 = t25._currencies; if (t26 == null) { t26 = new A.ListBuilder(t24); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t23); t25._currencies = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_4uk)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "sizes": t25 = result.get$_static_data_model$_$this(); t26 = t25._sizes; if (t26 == null) { t26 = new A.ListBuilder(t22); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t21); t25._sizes = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_wsa)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "industries": t25 = result.get$_static_data_model$_$this(); t26 = t25._industries; if (t26 == null) { t26 = new A.ListBuilder(t20); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t19); t25._industries = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_l2n)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "timezones": t25 = result.get$_static_data_model$_$this(); t26 = t25._timezones; if (t26 == null) { t26 = new A.ListBuilder(t18); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t17); t25._timezones = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_NYu)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "gateways": t25 = result.get$_static_data_model$_$this(); t26 = t25._gateways; if (t26 == null) { t26 = new A.ListBuilder(t16); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t15); t25._gateways = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_N80)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "date_formats": t25 = result.get$_static_data_model$_$this(); t26 = t25._dateFormats; if (t26 == null) { t26 = new A.ListBuilder(t14); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t13); t25._dateFormats = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_rQK)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "datetime_formats": t25 = result.get$_static_data_model$_$this(); t26 = t25._datetimeFormats; if (t26 == null) { t26 = new A.ListBuilder(t12); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t11); t25._datetimeFormats = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_gsm)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "languages": t25 = result.get$_static_data_model$_$this(); t26 = t25._languages; if (t26 == null) { t26 = new A.ListBuilder(t10); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t9); t25._languages = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_r6h)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "payment_types": t25 = result.get$_static_data_model$_$this(); t26 = t25._paymentTypes; if (t26 == null) { t26 = new A.ListBuilder(t8); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t7); t25._paymentTypes = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_mJb)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "countries": t25 = result.get$_static_data_model$_$this(); t26 = t25._countries; if (t26 == null) { t26 = new A.ListBuilder(t6); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t25._countries = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_kr30)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "invoice_status": t25 = result.get$_static_data_model$_$this(); t26 = t25._invoiceStatus; if (t26 == null) { t26 = new A.ListBuilder(t4); t26.__ListBuilder__list = A.List_List$from(B.List_empty, true, t3); t25._invoiceStatus = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_cL3)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = A.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "templates": t25 = result.get$_static_data_model$_$this(); t26 = t25._templates; if (t26 == null) { t26 = new A.MapBuilder(null, $, null, t1); t26.replace$1(0, B.Map_empty0); t25._templates = t26; t25 = t26; } else t25 = t26; t25.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_IWk)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_K12; }, get$wireName() { return "StaticDataEntity"; } }; A._$TemplateEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["subject", serializers.serialize$2$specifiedType(object.subject, B.FullType_h8g), "body", serializers.serialize$2$specifiedType(object.body, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, t2, _s14_ = "TemplateEntity", result = new A.TemplateEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "subject": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._static_data_model$_$v; if ($$v != null) { result._subject = $$v.subject; result._static_data_model$_body = $$v.body; result._static_data_model$_$v = null; } result._subject = t1; break; case "body": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._static_data_model$_$v; if ($$v != null) { result._subject = $$v.subject; result._static_data_model$_body = $$v.body; result._static_data_model$_$v = null; } result._static_data_model$_body = t1; break; } } _$result = result._static_data_model$_$v; if (_$result == null) { t1 = result.get$_static_data_model$_$this()._subject; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "subject")); t2 = result.get$_static_data_model$_$this()._static_data_model$_body; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "body")); _$result = A._$TemplateEntity$_(t2, t1); } A.ArgumentError_checkNotNull(_$result, "other"); return result._static_data_model$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_9e5; }, get$wireName() { return "TemplateEntity"; } }; A._$StaticDataItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.StaticDataItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._static_data_model$__hashCode; return t1 == null ? this._static_data_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticDataItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.StaticDataItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.StaticDataEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._static_data_model$_$v = t1; _this._static_data_model$_data = t2; _this._static_data_model$_$v = null; } t1 = _this._static_data_model$_data; return t1 == null ? _this._static_data_model$_data = new A.StaticDataEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "StaticDataItemResponse", _$result = null; try { _$result0 = _this._static_data_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$StaticDataItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._static_data_model$_$v = t1; return _$result; } }; A._$StaticDataEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.StaticDataEntity && J.$eq$(_this.currencies, other.currencies) && J.$eq$(_this.sizes, other.sizes) && J.$eq$(_this.industries, other.industries) && J.$eq$(_this.timezones, other.timezones) && J.$eq$(_this.gateways, other.gateways) && J.$eq$(_this.dateFormats, other.dateFormats) && J.$eq$(_this.datetimeFormats, other.datetimeFormats) && J.$eq$(_this.languages, other.languages) && J.$eq$(_this.paymentTypes, other.paymentTypes) && J.$eq$(_this.countries, other.countries) && J.$eq$(_this.invoiceStatus, other.invoiceStatus) && J.$eq$(_this.templates, other.templates); }, get$hashCode(_) { var _this = this, t1 = _this._static_data_model$__hashCode; return t1 == null ? _this._static_data_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.currencies)), J.get$hashCode$(_this.sizes)), J.get$hashCode$(_this.industries)), J.get$hashCode$(_this.timezones)), J.get$hashCode$(_this.gateways)), J.get$hashCode$(_this.dateFormats)), J.get$hashCode$(_this.datetimeFormats)), J.get$hashCode$(_this.languages)), J.get$hashCode$(_this.paymentTypes)), J.get$hashCode$(_this.countries)), J.get$hashCode$(_this.invoiceStatus)), J.get$hashCode$(_this.templates))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticDataEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "currencies", _this.currencies); t2.add$2(t1, "sizes", _this.sizes); t2.add$2(t1, "industries", _this.industries); t2.add$2(t1, "timezones", _this.timezones); t2.add$2(t1, "gateways", _this.gateways); t2.add$2(t1, "dateFormats", _this.dateFormats); t2.add$2(t1, "datetimeFormats", _this.datetimeFormats); t2.add$2(t1, "languages", _this.languages); t2.add$2(t1, "paymentTypes", _this.paymentTypes); t2.add$2(t1, "countries", _this.countries); t2.add$2(t1, "invoiceStatus", _this.invoiceStatus); t2.add$2(t1, "templates", _this.templates); return t2.toString$0(t1); } }; A.StaticDataEntityBuilder.prototype = { get$currencies() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._currencies; return t2 == null ? t1._currencies = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CurrencyEntity) : t2; }, get$sizes(_) { var t1 = this.get$_static_data_model$_$this(), t2 = t1._sizes; return t2 == null ? t1._sizes = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SizeEntity) : t2; }, get$industries() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._industries; return t2 == null ? t1._industries = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_IndustryEntity) : t2; }, get$timezones() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._timezones; return t2 == null ? t1._timezones = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TimezoneEntity) : t2; }, get$gateways() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._gateways; return t2 == null ? t1._gateways = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_GatewayEntity) : t2; }, get$dateFormats() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._dateFormats; return t2 == null ? t1._dateFormats = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DateFormatEntity) : t2; }, get$datetimeFormats() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._datetimeFormats; return t2 == null ? t1._datetimeFormats = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DatetimeFormatEntity) : t2; }, get$languages(_) { var t1 = this.get$_static_data_model$_$this(), t2 = t1._languages; return t2 == null ? t1._languages = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_LanguageEntity) : t2; }, get$paymentTypes() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._paymentTypes; return t2 == null ? t1._paymentTypes = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_PaymentTypeEntity) : t2; }, get$countries() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._countries; return t2 == null ? t1._countries = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_CountryEntity) : t2; }, get$invoiceStatus() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._invoiceStatus; return t2 == null ? t1._invoiceStatus = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_InvoiceStatusEntity) : t2; }, get$templates() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._templates; return t2 == null ? t1._templates = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity) : t2; }, get$_static_data_model$_$this() { var t1, t2, _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { t1 = $$v.currencies; t1.toString; _this._currencies = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.sizes; t1.toString; _this._sizes = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.industries; t1.toString; _this._industries = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.timezones; t1.toString; _this._timezones = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.gateways; t1.toString; _this._gateways = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.dateFormats; t1.toString; _this._dateFormats = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.datetimeFormats; t1.toString; _this._datetimeFormats = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.languages; t1.toString; _this._languages = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.paymentTypes; t1.toString; _this._paymentTypes = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.countries; t1.toString; _this._countries = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invoiceStatus; t1.toString; _this._invoiceStatus = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.templates; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._templates = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._static_data_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, exception, _this = this, _s16_ = "StaticDataEntity", _$result = null; try { _$result0 = _this._static_data_model$_$v; if (_$result0 == null) { t1 = _this.get$currencies().build$0(0); t2 = _this.get$sizes(_this).build$0(0); t3 = _this.get$industries().build$0(0); t4 = _this.get$timezones().build$0(0); t5 = _this.get$gateways().build$0(0); t6 = _this.get$dateFormats().build$0(0); t7 = _this.get$datetimeFormats().build$0(0); t8 = _this.get$languages(_this).build$0(0); t9 = _this.get$paymentTypes().build$0(0); t10 = _this.get$countries().build$0(0); t11 = _this.get$invoiceStatus().build$0(0); t12 = _this.get$templates().build$0(0); _$result0 = new A._$StaticDataEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "currencies")); if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "sizes")); if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "industries")); if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "timezones")); if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "gateways")); if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "dateFormats")); if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "datetimeFormats")); if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "languages")); if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "paymentTypes")); if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "countries")); if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "invoiceStatus")); if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "templates")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "currencies"; _this.get$currencies().build$0(0); _$failedField = "sizes"; _this.get$sizes(_this).build$0(0); _$failedField = "industries"; _this.get$industries().build$0(0); _$failedField = "timezones"; _this.get$timezones().build$0(0); _$failedField = "gateways"; _this.get$gateways().build$0(0); _$failedField = "dateFormats"; _this.get$dateFormats().build$0(0); _$failedField = "datetimeFormats"; _this.get$datetimeFormats().build$0(0); _$failedField = "languages"; _this.get$languages(_this).build$0(0); _$failedField = "paymentTypes"; _this.get$paymentTypes().build$0(0); _$failedField = "countries"; _this.get$countries().build$0(0); _$failedField = "invoiceStatus"; _this.get$invoiceStatus().build$0(0); _$failedField = "templates"; _this.get$templates().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._static_data_model$_$v = t1; return _$result; } }; A._$TemplateEntity.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TemplateEntity && this.subject === other.subject && this.body === other.body; }, get$hashCode(_) { var _this = this, t1 = _this._static_data_model$__hashCode; return t1 == null ? _this._static_data_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.subject)), B.JSString_methods.get$hashCode(_this.body))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TemplateEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "subject", this.subject); t2.add$2(t1, "body", this.body); return t2.toString$0(t1); }, get$body(receiver) { return this.body; } }; A.TemplateEntityBuilder.prototype = { get$body(_) { return this.get$_static_data_model$_$this()._static_data_model$_body; }, get$_static_data_model$_$this() { var _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { _this._subject = $$v.subject; _this._static_data_model$_body = $$v.body; _this._static_data_model$_$v = null; } return _this; } }; A.TimezoneListResponse.prototype = {}; A.TimezoneItemResponse.prototype = {}; A.TimezoneEntity.prototype = { matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (B.JSString_methods.contains$1(this.location.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.location; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; } }; A._$TimezoneListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_NYu)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.TimezoneListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TimezoneEntity, t3 = type$.ListBuilder_legacy_TimezoneEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._timezone_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._timezone_model$_data = t6; result._timezone_model$_$v = null; } t4 = result._timezone_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._timezone_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_NYu)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_FeN; }, get$wireName() { return "TimezoneListResponse"; } }; A._$TimezoneItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_bTj)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.TimezoneItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TimezoneEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._timezone_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.TimezoneEntityBuilder(); t3._timezone_model$_$v = t2; result._timezone_model$_data = t3; result._timezone_model$_$v = null; } t2 = result._timezone_model$_data; if (t2 == null) t2 = result._timezone_model$_data = new A.TimezoneEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_bTj)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._timezone_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Phi; }, get$wireName() { return "TimezoneItemResponse"; } }; A._$TimezoneEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "location", serializers.serialize$2$specifiedType(object.location, B.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.TimezoneEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_timezone_model$_$this()._timezone_model$_name = t1; break; case "location": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_timezone_model$_$this()._location = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_timezone_model$_$this()._timezone_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_U8b; }, get$wireName() { return "TimezoneEntity"; } }; A._$TimezoneListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TimezoneListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._timezone_model$__hashCode; return t1 == null ? this._timezone_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TimezoneListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._timezone_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._timezone_model$_$v = null; } t1 = _this._timezone_model$_data; return t1 == null ? _this._timezone_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TimezoneEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "TimezoneListResponse", _$result = null; try { _$result0 = _this._timezone_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TimezoneListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._timezone_model$_$v = t1; return _$result; } }; A._$TimezoneItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TimezoneItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._timezone_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._timezone_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TimezoneItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.TimezoneEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._timezone_model$_$v = t1; _this._timezone_model$_data = t2; _this._timezone_model$_$v = null; } t1 = _this._timezone_model$_data; return t1 == null ? _this._timezone_model$_data = new A.TimezoneEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._timezone_model$_$v; if (_$result0 == null) _$result0 = new A._$TimezoneItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TimezoneItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._timezone_model$_$v = t1; return _$result; } }; A._$TimezoneEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.TimezoneEntity && _this.name === other.name && _this.location === other.location && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._timezone_model$__hashCode; return t1 == null ? _this._timezone_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.location)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "location", this.location); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$id(receiver) { return this.id; } }; A.TimezoneEntityBuilder.prototype = { get$name(_) { return this.get$_timezone_model$_$this()._timezone_model$_name; }, get$id(_) { return this.get$_timezone_model$_$this()._timezone_model$_id; }, get$_timezone_model$_$this() { var _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { _this._timezone_model$_name = $$v.name; _this._location = $$v.location; _this._timezone_model$_id = $$v.id; _this._timezone_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, _this = this, _s14_ = "TimezoneEntity", _$result = _this._timezone_model$_$v; if (_$result == null) { t1 = _this.get$_timezone_model$_$this()._timezone_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_timezone_model$_$this()._location; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "location")); t3 = _this.get$_timezone_model$_$this()._timezone_model$_id; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "id")); _$result = new A._$TimezoneEntity(t1, t2, t3); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._timezone_model$_$v = _$result; } }; A._TimezoneEntity_Object_SelectableEntity.prototype = {}; A.SubscriptionListResponse.prototype = {}; A.SubscriptionItemResponse.prototype = {}; A.SubscriptionEntity.prototype = { get$entityType() { return B.EntityType_subscription; }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted) if (!multiselect && includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$3(_, subscription, sortField, sortAscending) { var response, subscriptionA = sortAscending ? this : subscription, subscriptionB = sortAscending ? subscription : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(subscriptionA.id.toLowerCase(), subscriptionB.id.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(subscriptionA.createdAt, subscriptionB.createdAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(subscriptionA.updatedAt, subscriptionB.updatedAt); break; default: A.print("## ERROR: sort by subscription." + sortField + " is not implemented"); response = 0; break; } if (response === 0) return B.JSInt_methods.compareTo$1(subscriptionA.createdAt, subscriptionB.createdAt); else return response; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; }, $isSelectableEntity: 1 }; A.WebhookConfigurationEntity.prototype = {}; A._$SubscriptionListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_NIe)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.SubscriptionListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SubscriptionEntity, t3 = type$.ListBuilder_legacy_SubscriptionEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._subscription_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._subscription_model$_data = t6; result._subscription_model$_$v = null; } t4 = result._subscription_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._subscription_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_NIe)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_QgW0; }, get$wireName() { return "SubscriptionListResponse"; } }; A._$SubscriptionItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_VCV)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.SubscriptionItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_SubscriptionEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._subscription_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.SubscriptionEntityBuilder(); t3._subscription_model$_$v = t2; result._subscription_model$_data = t3; result._subscription_model$_$v = null; } t2 = result._subscription_model$_data; if (t2 == null) t2 = result._subscription_model$_data = new A.SubscriptionEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_VCV)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._subscription_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_QgW; }, get$wireName() { return "SubscriptionItemResponse"; } }; A._$SubscriptionEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "group_id", serializers.serialize$2$specifiedType(object.groupId, B.FullType_h8g), "product_ids", serializers.serialize$2$specifiedType(object.productIds, B.FullType_h8g), "recurring_product_ids", serializers.serialize$2$specifiedType(object.recurringProductIds, B.FullType_h8g), "frequency_id", serializers.serialize$2$specifiedType(object.frequencyId, B.FullType_h8g), "auto_bill", serializers.serialize$2$specifiedType(object.autoBill, B.FullType_h8g), "promo_code", serializers.serialize$2$specifiedType(object.promoCode, B.FullType_h8g), "promo_discount", serializers.serialize$2$specifiedType(object.promoDiscount, B.FullType_MME), "price", serializers.serialize$2$specifiedType(object.price, B.FullType_MME), "is_amount_discount", serializers.serialize$2$specifiedType(object.isAmountDiscount, B.FullType_MtR), "allow_cancellation", serializers.serialize$2$specifiedType(object.allowCancellation, B.FullType_MtR), "per_seat_enabled", serializers.serialize$2$specifiedType(object.perSeatEnabled, B.FullType_MtR), "max_seats_limit", serializers.serialize$2$specifiedType(object.maxSeatsLimit, B.FullType_kjq), "trial_enabled", serializers.serialize$2$specifiedType(object.trialEnabled, B.FullType_MtR), "trial_duration", serializers.serialize$2$specifiedType(object.trialDuration, B.FullType_kjq), "allow_query_overrides", serializers.serialize$2$specifiedType(object.allowQueryOverrides, B.FullType_MtR), "allow_plan_changes", serializers.serialize$2$specifiedType(object.allowPlanChanges, B.FullType_MtR), "refund_period", serializers.serialize$2$specifiedType(object.refundPeriod, B.FullType_kjq), "webhook_configuration", serializers.serialize$2$specifiedType(object.webhookConfiguration, B.FullType_dct), "purchase_page", serializers.serialize$2$specifiedType(object.purchasePage, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.SubscriptionEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_WebhookConfigurationEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_name = t2; break; case "group_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_groupId = t2; break; case "product_ids": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._productIds = t2; break; case "recurring_product_ids": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._recurringProductIds = t2; break; case "frequency_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_frequencyId = t2; break; case "auto_bill": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_autoBill = t2; break; case "promo_code": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._promoCode = t2; break; case "promo_discount": t2 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_subscription_model$_$this()._promoDiscount = t2; break; case "price": t2 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_subscription_model$_$this()._price = t2; break; case "is_amount_discount": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount = t2; break; case "allow_cancellation": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._allowCancellation = t2; break; case "per_seat_enabled": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._perSeatEnabled = t2; break; case "max_seats_limit": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._maxSeatsLimit = t2; break; case "trial_enabled": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._trialEnabled = t2; break; case "trial_duration": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._trialDuration = t2; break; case "allow_query_overrides": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._allowQueryOverrides = t2; break; case "allow_plan_changes": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._allowPlanChanges = t2; break; case "refund_period": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._refundPeriod = t2; break; case "webhook_configuration": t2 = result.get$_subscription_model$_$this(); t3 = t2._webhookConfiguration; if (t3 == null) { t3 = new A.WebhookConfigurationEntityBuilder(); A.WebhookConfigurationEntity__initializeBuilder(t3); t2._webhookConfiguration = t3; t2 = t3; } else t2 = t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_dct)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._subscription_model$_$v = t3; break; case "purchase_page": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._purchasePage = t2; break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_assignedUserId = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2No; }, get$wireName() { return "SubscriptionEntity"; } }; A._$WebhookConfigurationEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["return_url", serializers.serialize$2$specifiedType(object.returnUrl, B.FullType_h8g), "post_purchase_url", serializers.serialize$2$specifiedType(object.postPurchaseUrl, B.FullType_h8g), "post_purchase_rest_method", serializers.serialize$2$specifiedType(object.postPurchaseRestMethod, B.FullType_h8g), "post_purchase_headers", serializers.serialize$2$specifiedType(object.postPurchaseHeaders, B.FullType_LNO), "post_purchase_body", serializers.serialize$2$specifiedType(object.postPurchaseBody, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.WebhookConfigurationEntityBuilder(); A.WebhookConfigurationEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "return_url": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._returnUrl = t2; break; case "post_purchase_url": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseUrl = t2; break; case "post_purchase_rest_method": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseRestMethod = t2; break; case "post_purchase_headers": t2 = result.get$_subscription_model$_$this(); t3 = t2._postPurchaseHeaders; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._postPurchaseHeaders = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "post_purchase_body": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseBody = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_n7e; }, get$wireName() { return "WebhookConfigurationEntity"; } }; A._$SubscriptionListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SubscriptionListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._subscription_model$__hashCode; return t1 == null ? this._subscription_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.SubscriptionListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._subscription_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._subscription_model$_$v = null; } t1 = _this._subscription_model$_data; return t1 == null ? _this._subscription_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_SubscriptionEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "SubscriptionListResponse", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$SubscriptionListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_model$_$v = t1; return _$result; } }; A._$SubscriptionItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SubscriptionItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._subscription_model$__hashCode; return t1 == null ? this._subscription_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.SubscriptionItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.SubscriptionEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._subscription_model$_$v = t1; _this._subscription_model$_data = t2; _this._subscription_model$_$v = null; } t1 = _this._subscription_model$_data; return t1 == null ? _this._subscription_model$_data = new A.SubscriptionEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "SubscriptionItemResponse", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$SubscriptionItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_model$_$v = t1; return _$result; } }; A._$SubscriptionEntity.prototype = { rebuild$1(updates) { var t1 = new A.SubscriptionEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._subscription_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.SubscriptionEntity && _this.name === other.name && _this.groupId === other.groupId && _this.productIds === other.productIds && _this.recurringProductIds === other.recurringProductIds && _this.frequencyId === other.frequencyId && _this.autoBill === other.autoBill && _this.promoCode === other.promoCode && _this.promoDiscount === other.promoDiscount && _this.price === other.price && _this.isAmountDiscount === other.isAmountDiscount && _this.allowCancellation === other.allowCancellation && _this.perSeatEnabled === other.perSeatEnabled && _this.maxSeatsLimit === other.maxSeatsLimit && _this.trialEnabled === other.trialEnabled && _this.trialDuration === other.trialDuration && _this.allowQueryOverrides === other.allowQueryOverrides && _this.allowPlanChanges === other.allowPlanChanges && _this.refundPeriod === other.refundPeriod && J.$eq$(_this.webhookConfiguration, other.webhookConfiguration) && _this.purchasePage === other.purchasePage && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._subscription_model$__hashCode; return t1 == null ? _this._subscription_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.groupId)), B.JSString_methods.get$hashCode(_this.productIds)), B.JSString_methods.get$hashCode(_this.recurringProductIds)), B.JSString_methods.get$hashCode(_this.frequencyId)), B.JSString_methods.get$hashCode(_this.autoBill)), B.JSString_methods.get$hashCode(_this.promoCode)), B.JSNumber_methods.get$hashCode(_this.promoDiscount)), B.JSNumber_methods.get$hashCode(_this.price)), B.JSBool_methods.get$hashCode(_this.isAmountDiscount)), B.JSBool_methods.get$hashCode(_this.allowCancellation)), B.JSBool_methods.get$hashCode(_this.perSeatEnabled)), B.JSInt_methods.get$hashCode(_this.maxSeatsLimit)), B.JSBool_methods.get$hashCode(_this.trialEnabled)), B.JSInt_methods.get$hashCode(_this.trialDuration)), B.JSBool_methods.get$hashCode(_this.allowQueryOverrides)), B.JSBool_methods.get$hashCode(_this.allowPlanChanges)), B.JSInt_methods.get$hashCode(_this.refundPeriod)), J.get$hashCode$(_this.webhookConfiguration)), B.JSString_methods.get$hashCode(_this.purchasePage)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "groupId", _this.groupId); t2.add$2(t1, "productIds", _this.productIds); t2.add$2(t1, "recurringProductIds", _this.recurringProductIds); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "promoCode", _this.promoCode); t2.add$2(t1, "promoDiscount", _this.promoDiscount); t2.add$2(t1, "price", _this.price); t2.add$2(t1, "isAmountDiscount", _this.isAmountDiscount); t2.add$2(t1, "allowCancellation", _this.allowCancellation); t2.add$2(t1, "perSeatEnabled", _this.perSeatEnabled); t2.add$2(t1, "maxSeatsLimit", _this.maxSeatsLimit); t2.add$2(t1, "trialEnabled", _this.trialEnabled); t2.add$2(t1, "trialDuration", _this.trialDuration); t2.add$2(t1, "allowQueryOverrides", _this.allowQueryOverrides); t2.add$2(t1, "allowPlanChanges", _this.allowPlanChanges); t2.add$2(t1, "refundPeriod", _this.refundPeriod); t2.add$2(t1, "webhookConfiguration", _this.webhookConfiguration); t2.add$2(t1, "purchasePage", _this.purchasePage); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.SubscriptionEntityBuilder.prototype = { get$name(_) { return this.get$_subscription_model$_$this()._subscription_model$_name; }, get$webhookConfiguration() { var t1 = this.get$_subscription_model$_$this(), t2 = t1._webhookConfiguration; if (t2 == null) { t2 = new A.WebhookConfigurationEntityBuilder(); A.WebhookConfigurationEntity__initializeBuilder(t2); t1._webhookConfiguration = t2; t1 = t2; } else t1 = t2; return t1; }, get$id(_) { return this.get$_subscription_model$_$this()._subscription_model$_id; }, get$_subscription_model$_$this() { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { _this._subscription_model$_name = $$v.name; _this._subscription_model$_groupId = $$v.groupId; _this._productIds = $$v.productIds; _this._recurringProductIds = $$v.recurringProductIds; _this._subscription_model$_frequencyId = $$v.frequencyId; _this._subscription_model$_autoBill = $$v.autoBill; _this._promoCode = $$v.promoCode; _this._promoDiscount = $$v.promoDiscount; _this._price = $$v.price; _this._subscription_model$_isAmountDiscount = $$v.isAmountDiscount; _this._allowCancellation = $$v.allowCancellation; _this._perSeatEnabled = $$v.perSeatEnabled; _this._maxSeatsLimit = $$v.maxSeatsLimit; _this._trialEnabled = $$v.trialEnabled; _this._trialDuration = $$v.trialDuration; _this._allowQueryOverrides = $$v.allowQueryOverrides; _this._allowPlanChanges = $$v.allowPlanChanges; _this._refundPeriod = $$v.refundPeriod; t1 = $$v.webhookConfiguration; t1.toString; t2 = new A.WebhookConfigurationEntityBuilder(); A.WebhookConfigurationEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._subscription_model$_$v = t1; _this._webhookConfiguration = t2; _this._purchasePage = $$v.purchasePage; _this._subscription_model$_isChanged = $$v.isChanged; _this._subscription_model$_createdAt = $$v.createdAt; _this._subscription_model$_updatedAt = $$v.updatedAt; _this._subscription_model$_archivedAt = $$v.archivedAt; _this._subscription_model$_isDeleted = $$v.isDeleted; _this._subscription_model$_createdUserId = $$v.createdUserId; _this._subscription_model$_assignedUserId = $$v.assignedUserId; _this._subscription_model$_id = $$v.id; _this._subscription_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, exception, _this = this, _s18_ = "SubscriptionEntity", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$_subscription_model$_$this()._subscription_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "name")); t2 = _this.get$_subscription_model$_$this()._subscription_model$_groupId; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "groupId")); t3 = _this.get$_subscription_model$_$this()._productIds; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "productIds")); t4 = _this.get$_subscription_model$_$this()._recurringProductIds; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "recurringProductIds")); t5 = _this.get$_subscription_model$_$this()._subscription_model$_frequencyId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "frequencyId")); t6 = _this.get$_subscription_model$_$this()._subscription_model$_autoBill; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "autoBill")); t7 = _this.get$_subscription_model$_$this()._promoCode; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "promoCode")); t8 = _this.get$_subscription_model$_$this()._promoDiscount; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "promoDiscount")); t9 = _this.get$_subscription_model$_$this()._price; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "price")); t10 = _this.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "isAmountDiscount")); t11 = _this.get$_subscription_model$_$this()._allowCancellation; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "allowCancellation")); t12 = _this.get$_subscription_model$_$this()._perSeatEnabled; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "perSeatEnabled")); t13 = _this.get$_subscription_model$_$this()._maxSeatsLimit; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "maxSeatsLimit")); t14 = _this.get$_subscription_model$_$this()._trialEnabled; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "trialEnabled")); t15 = _this.get$_subscription_model$_$this()._trialDuration; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "trialDuration")); t16 = _this.get$_subscription_model$_$this()._allowQueryOverrides; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "allowQueryOverrides")); t17 = _this.get$_subscription_model$_$this()._allowPlanChanges; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "allowPlanChanges")); t18 = _this.get$_subscription_model$_$this()._refundPeriod; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "refundPeriod")); t19 = _this.get$webhookConfiguration().build$0(0); t20 = _this.get$_subscription_model$_$this()._purchasePage; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "purchasePage")); t21 = _this.get$_subscription_model$_$this()._subscription_model$_isChanged; t22 = _this.get$_subscription_model$_$this()._subscription_model$_createdAt; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "createdAt")); t23 = _this.get$_subscription_model$_$this()._subscription_model$_updatedAt; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "updatedAt")); t24 = _this.get$_subscription_model$_$this()._subscription_model$_archivedAt; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "archivedAt")); t25 = _this.get$_subscription_model$_$this()._subscription_model$_isDeleted; t26 = _this.get$_subscription_model$_$this()._subscription_model$_createdUserId; t27 = _this.get$_subscription_model$_$this()._subscription_model$_assignedUserId; t28 = _this.get$_subscription_model$_$this()._subscription_model$_id; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "id")); _$result0 = A._$SubscriptionEntity$_(t11, t17, t16, t24, t27, t6, t22, t26, t5, t2, t28, t10, t21, t25, t13, t1, t12, t9, t3, t7, t8, t20, t4, t18, t15, t14, t23, t19); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "webhookConfiguration"; _this.get$webhookConfiguration().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_model$_$v = t1; return _$result; } }; A._$WebhookConfigurationEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.WebhookConfigurationEntity && _this.returnUrl === other.returnUrl && _this.postPurchaseUrl === other.postPurchaseUrl && _this.postPurchaseRestMethod === other.postPurchaseRestMethod && J.$eq$(_this.postPurchaseHeaders, other.postPurchaseHeaders) && _this.postPurchaseBody === other.postPurchaseBody; }, get$hashCode(_) { var _this = this, t1 = _this._subscription_model$__hashCode; return t1 == null ? _this._subscription_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.returnUrl)), B.JSString_methods.get$hashCode(_this.postPurchaseUrl)), B.JSString_methods.get$hashCode(_this.postPurchaseRestMethod)), J.get$hashCode$(_this.postPurchaseHeaders)), B.JSString_methods.get$hashCode(_this.postPurchaseBody))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookConfigurationEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "returnUrl", _this.returnUrl); t2.add$2(t1, "postPurchaseUrl", _this.postPurchaseUrl); t2.add$2(t1, "postPurchaseRestMethod", _this.postPurchaseRestMethod); t2.add$2(t1, "postPurchaseHeaders", _this.postPurchaseHeaders); t2.add$2(t1, "postPurchaseBody", _this.postPurchaseBody); return t2.toString$0(t1); } }; A.WebhookConfigurationEntityBuilder.prototype = { get$postPurchaseHeaders() { var t1 = this.get$_subscription_model$_$this(), t2 = t1._postPurchaseHeaders; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._postPurchaseHeaders = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$_subscription_model$_$this() { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { _this._returnUrl = $$v.returnUrl; _this._postPurchaseUrl = $$v.postPurchaseUrl; _this._postPurchaseRestMethod = $$v.postPurchaseRestMethod; t1 = $$v.postPurchaseHeaders; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._postPurchaseHeaders = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._postPurchaseBody = $$v.postPurchaseBody; _this._subscription_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, exception, _this = this, _s26_ = "WebhookConfigurationEntity", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$_subscription_model$_$this()._returnUrl; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "returnUrl")); t2 = _this.get$_subscription_model$_$this()._postPurchaseUrl; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "postPurchaseUrl")); t3 = _this.get$_subscription_model$_$this()._postPurchaseRestMethod; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "postPurchaseRestMethod")); t4 = _this.get$postPurchaseHeaders().build$0(0); t5 = _this.get$_subscription_model$_$this()._postPurchaseBody; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s26_, "postPurchaseBody")); _$result0 = A._$WebhookConfigurationEntity$_(t5, t4, t3, t2, t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "postPurchaseHeaders"; _this.get$postPurchaseHeaders().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_model$_$v = t1; return _$result; } }; A._SubscriptionEntity_Object_BaseEntity.prototype = {}; A.SystemLogEntity.prototype = { get$category() { switch (this.categoryId) { case 1: return "payment"; case 2: return "email"; case 4: return "pdf"; case 5: return "security"; case 3: return "webhook"; } return ""; }, get$event() { var t1 = this.eventId; switch (t1) { case 10: return "payment_reconciliation_failure"; case 11: return "payment_reconciliation_success"; case 21: return "gateway_success"; case 22: return "gateway_failure"; case 23: return "gateway_error"; case 30: return "email_send"; case 31: return "email_retry_queue"; case 32: return "email_bounced"; case 33: return "email_spam_complaint"; case 34: return "email_delivery"; case 40: return "webhook_response"; case 41: return "webhook_success"; case 50: return "pdf_response"; case 60: return "authentication_failure"; case 61: return "user"; } return "Unknown " + t1; }, get$type(_) { var t1 = this.typeId; switch (t1) { case 300: return "PayPal"; case 301: return "Stripe"; case 302: return "ledger"; case 303: return "failure"; case 304: return "Checkout.com"; case 305: return "Authorize.net"; case 306: return "custom"; case 307: return "Braintree"; case 309: return "WePay"; case 310: return "PayFast"; case 311: return "PayTrace"; case 312: return "Mollie"; case 313: return "eWay"; case 320: return "Square"; case 400: return "quota_exceeded"; case 401: return "upstream_failure"; case 500: return "webhook_response"; case 600: return "pdf_failed"; case 601: return "pdf_success"; case 701: return "modified"; case 702: return "deleted"; case 800: return "login_success"; case 801: return "login_failure"; } return "Unknown " + t1; } }; A._$SystemLogEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g), "company_id", serializers.serialize$2$specifiedType(object.companyId, B.FullType_h8g), "user_id", serializers.serialize$2$specifiedType(object.userId, B.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, B.FullType_h8g), "event_id", serializers.serialize$2$specifiedType(object.eventId, B.FullType_kjq), "category_id", serializers.serialize$2$specifiedType(object.categoryId, B.FullType_kjq), "type_id", serializers.serialize$2$specifiedType(object.typeId, B.FullType_kjq), "log", serializers.serialize$2$specifiedType(object.log, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, _$result, t2, t3, t4, t5, t6, t7, t8, t9, _s15_ = "SystemLogEntity", result = new A.SystemLogEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_system_log_model$_$this()._system_log_model$_id = t1; break; case "company_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_system_log_model$_$this()._companyId = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_system_log_model$_$this()._userId = t1; break; case "client_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_system_log_model$_$this()._system_log_model$_clientId = t1; break; case "event_id": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_eventId = t1; break; case "category_id": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_categoryId = t1; break; case "type_id": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_typeId = t1; break; case "log": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_system_log_model$_$this()._log = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_createdAt = t1; break; } } _$result = result._system_log_model$_$v; if (_$result == null) { t1 = result.get$_system_log_model$_$this()._system_log_model$_id; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "id")); t2 = result.get$_system_log_model$_$this()._companyId; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "companyId")); t3 = result.get$_system_log_model$_$this()._userId; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "userId")); t4 = result.get$_system_log_model$_$this()._system_log_model$_clientId; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "clientId")); t5 = result.get$_system_log_model$_$this()._system_log_model$_eventId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "eventId")); t6 = result.get$_system_log_model$_$this()._system_log_model$_categoryId; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "categoryId")); t7 = result.get$_system_log_model$_$this()._system_log_model$_typeId; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "typeId")); t8 = result.get$_system_log_model$_$this()._log; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "log")); t9 = result.get$_system_log_model$_$this()._system_log_model$_createdAt; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "createdAt")); _$result = new A._$SystemLogEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9); } A.ArgumentError_checkNotNull(_$result, "other"); return result._system_log_model$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_m2M; }, get$wireName() { return "SystemLogEntity"; } }; A._$SystemLogEntity.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.SystemLogEntity && _this.id === other.id && _this.companyId === other.companyId && _this.userId === other.userId && _this.clientId === other.clientId && _this.eventId === other.eventId && _this.categoryId === other.categoryId && _this.typeId === other.typeId && _this.log === other.log && _this.createdAt === other.createdAt; }, get$hashCode(_) { var _this = this, t1 = _this._system_log_model$__hashCode; return t1 == null ? _this._system_log_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.id)), B.JSString_methods.get$hashCode(_this.companyId)), B.JSString_methods.get$hashCode(_this.userId)), B.JSString_methods.get$hashCode(_this.clientId)), B.JSInt_methods.get$hashCode(_this.eventId)), B.JSInt_methods.get$hashCode(_this.categoryId)), B.JSInt_methods.get$hashCode(_this.typeId)), B.JSString_methods.get$hashCode(_this.log)), B.JSInt_methods.get$hashCode(_this.createdAt))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SystemLogEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "companyId", _this.companyId); t2.add$2(t1, "userId", _this.userId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "eventId", _this.eventId); t2.add$2(t1, "categoryId", _this.categoryId); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "log", _this.log); t2.add$2(t1, "createdAt", _this.createdAt); return t2.toString$0(t1); }, get$id(receiver) { return this.id; } }; A.SystemLogEntityBuilder.prototype = { get$id(_) { return this.get$_system_log_model$_$this()._system_log_model$_id; }, get$_system_log_model$_$this() { var _this = this, $$v = _this._system_log_model$_$v; if ($$v != null) { _this._system_log_model$_id = $$v.id; _this._companyId = $$v.companyId; _this._userId = $$v.userId; _this._system_log_model$_clientId = $$v.clientId; _this._system_log_model$_eventId = $$v.eventId; _this._system_log_model$_categoryId = $$v.categoryId; _this._system_log_model$_typeId = $$v.typeId; _this._log = $$v.log; _this._system_log_model$_createdAt = $$v.createdAt; _this._system_log_model$_$v = null; } return _this; } }; A.TaskListResponse.prototype = {}; A.TaskItemResponse.prototype = {}; A.TaskTime.prototype = { get$duration(_) { var t1 = this.endDate; if (t1 == null) t1 = new A.DateTime(Date.now(), false); return A.Duration$(0, 0, 0, t1._value - this.startDate._value, 0, 0); }, get$asList() { var t1 = B.JSNumber_methods.floor$0(this.startDate._value / 1000), t2 = this.endDate; return [t1, t2 != null ? B.JSNumber_methods.floor$0(t2._value / 1000) : 0]; }, get$stop(_) { return this.rebuild$1(new A.TaskTime_stop_closure()); }, get$isEmpty(_) { return this.startDate == null && this.endDate == null; }, getParts$0() { var dates, offset, t2, nextDate, duration, _this = this, localStartDate = _this.startDate.toLocal$0(), t1 = _this.endDate, localEndDate = (t1 == null ? new A.DateTime(Date.now(), false) : t1).toLocal$0(), startSqlDate = A.convertDateTimeToSqlDate(localStartDate); if (startSqlDate == A.convertDateTimeToSqlDate(localEndDate)) return A.LinkedHashMap_LinkedHashMap$_literal([startSqlDate, _this.get$duration(_this)], type$.legacy_String, type$.legacy_Duration); t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(localStartDate), A.Primitives_getMonth(localStartDate), A.Primitives_getDay(localStartDate), 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); dates = A.LinkedHashMap_LinkedHashMap$_literal([startSqlDate, A.Duration$(0, 0, 0, new A.DateTime(t1, false).add$1(0, A.Duration$(1, 0, 0, 0, 0, 0))._value - localStartDate._value, 0, 0)], type$.legacy_String, type$.legacy_Duration); t1 = localEndDate._value; offset = 1; do { t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(localStartDate), A.Primitives_getMonth(localStartDate), A.Primitives_getDay(localStartDate), 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); nextDate = new A.DateTime(t2, false).add$1(0, A.Duration$(offset, 0, 0, 0, 0, 0)); ++offset; t2 = nextDate._value; duration = A.Duration$(0, 0, 0, t1 - t2, 0, 0); if (B.JSInt_methods._tdivFast$1(duration._duration, 3600000000) > 24) duration = A.Duration$(0, 24, 0, 0, 0, 0); dates.$indexSet(0, A.convertDateTimeToSqlDate(nextDate), duration); } while (t2 < localEndDate.subtract$1(A.Duration$(1, 0, 0, 0, 0, 0))._value); return dates; }, copyWithStartDate$2$syncDates(date, syncDates) { var dateTime, now, t1, t2, t3, t4, t5, t6, t7, _this = this, _null = null; if ((date == null ? "" : date).length === 0) return _this; dateTime = A.DateTime_tryParse(date); if (dateTime == null) dateTime = new A.DateTime(Date.now(), false); now = new A.DateTime(Date.now(), false); t1 = dateTime.toLocal$0(); t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = _this.startDate; t5 = t4 == null; t6 = t5 ? _null : t4.toLocal$0(); t6 = t6 == null ? _null : A.Primitives_getHours(t6); if (t6 == null) t6 = A.Primitives_getHours(now); t7 = t5 ? _null : t4.toLocal$0(); t7 = t7 == null ? _null : A.Primitives_getMinutes(t7); if (t7 == null) t7 = A.Primitives_getMinutes(now); t4 = t5 ? _null : t4.toLocal$0(); t4 = t4 == null ? _null : A.Primitives_getSeconds(t4); if (t4 == null) t4 = A.Primitives_getSeconds(now); t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t1), A.Primitives_getMonth(t2), A.Primitives_getDay(t3), t6, t7, t4, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); t1 = new A.DateTime(t1, false).toUtc$0(); if (syncDates && _this.endDate != null) { t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = dateTime.toLocal$0(); t5 = _this.endDate; t6 = t5.toLocal$0(); t7 = t5.toLocal$0(); t5 = t5.toLocal$0(); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t2), A.Primitives_getMonth(t3), A.Primitives_getDay(t4), A.Primitives_getHours(t6), A.Primitives_getMinutes(t7), A.Primitives_getSeconds(t5), 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t2 = new A.DateTime(t2, false); } else t2 = _this.endDate; return A.TaskTime_TaskTime(t2, t1); }, copyWithEndDate$1(date) { var dateTime, now, t1, t2, t3, t4, t5, t6, t7, _null = null; if ((date == null ? "" : date).length === 0) return this; dateTime = A.DateTime_tryParse(date); if (dateTime == null) dateTime = new A.DateTime(Date.now(), false); now = new A.DateTime(Date.now(), false); t1 = dateTime.toLocal$0(); t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = this.endDate; t5 = t4 == null; t6 = t5 ? _null : t4.toLocal$0(); t6 = t6 == null ? _null : A.Primitives_getHours(t6); if (t6 == null) t6 = A.Primitives_getHours(now); t7 = t5 ? _null : t4.toLocal$0(); t7 = t7 == null ? _null : A.Primitives_getMinutes(t7); if (t7 == null) t7 = A.Primitives_getMinutes(now); t4 = t5 ? _null : t4.toLocal$0(); t4 = t4 == null ? _null : A.Primitives_getSeconds(t4); if (t4 == null) t4 = A.Primitives_getSeconds(now); t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(t1), A.Primitives_getMonth(t2), A.Primitives_getDay(t3), t6, t7, t4, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.TaskTime_TaskTime(new A.DateTime(t1, false).toUtc$0(), this.startDate); }, copyWithStartTime$1(dateTime) { var t4, t5, t6, _null = null, now = new A.DateTime(Date.now(), false), t1 = this.startDate, t2 = t1 == null, t3 = t2 ? _null : t1.toLocal$0(); t3 = t3 == null ? _null : A.Primitives_getYear(t3); if (t3 == null) t3 = A.Primitives_getYear(now); t4 = t2 ? _null : t1.toLocal$0(); t4 = t4 == null ? _null : A.Primitives_getMonth(t4); if (t4 == null) t4 = A.Primitives_getMonth(now); t1 = t2 ? _null : t1.toLocal$0(); t1 = t1 == null ? _null : A.Primitives_getDay(t1); if (t1 == null) t1 = A.Primitives_getDay(now); t2 = dateTime.toLocal$0(); t5 = dateTime.toLocal$0(); t6 = dateTime.toLocal$0(); t1 = A.Primitives_valueFromDecomposedDate(t3, t4, t1, A.Primitives_getHours(t2), A.Primitives_getMinutes(t5), A.Primitives_getSeconds(t6), 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); return A.TaskTime_TaskTime(this.endDate, new A.DateTime(t1, false).toUtc$0()); }, copyWithEndTime$1(dateTime) { var t5, t6, t7, _null = null, now = new A.DateTime(Date.now(), false), t1 = this.startDate, t2 = this.endDate, t3 = t2 == null, t4 = t3 ? _null : t2.toLocal$0(); t4 = t4 == null ? _null : A.Primitives_getYear(t4); if (t4 == null) { t4 = t1 == null ? _null : t1.toLocal$0(); t4 = t4 == null ? _null : A.Primitives_getYear(t4); } if (t4 == null) t4 = A.Primitives_getYear(now); t5 = t3 ? _null : t2.toLocal$0(); t5 = t5 == null ? _null : A.Primitives_getMonth(t5); if (t5 == null) { t5 = t1 == null ? _null : t1.toLocal$0(); t5 = t5 == null ? _null : A.Primitives_getMonth(t5); } if (t5 == null) t5 = A.Primitives_getMonth(now); t2 = t3 ? _null : t2.toLocal$0(); t2 = t2 == null ? _null : A.Primitives_getDay(t2); if (t2 == null) { t2 = t1 == null ? _null : t1.toLocal$0(); t2 = t2 == null ? _null : A.Primitives_getDay(t2); } if (t2 == null) t2 = A.Primitives_getDay(now); t3 = dateTime.toLocal$0(); t6 = dateTime.toLocal$0(); t7 = dateTime.toLocal$0(); t2 = A.Primitives_valueFromDecomposedDate(t4, t5, t2, A.Primitives_getHours(t3), A.Primitives_getMinutes(t6), A.Primitives_getSeconds(t7), 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); return A.TaskTime_TaskTime(new A.DateTime(t2, false).toUtc$0(), t1); }, copyWithDuration$1(duration) { var start = this.startDate; if (start == null) start = new A.DateTime(Date.now(), false).subtract$1(duration); return A.TaskTime_TaskTime(start.add$1(0, duration), start); } }; A.TaskTime_stop_closure.prototype = { call$1(b) { var t1 = new A.DateTime(Date.now(), false).toUtc$0(); b.get$_task_model$_$this()._endDate = t1; return b; }, $signature: 799 }; A.TaskEntity.prototype = { get$clone(_) { return this.rebuild$1(new A.TaskEntity_clone_closure()); }, get$entityType() { return B.EntityType_task; }, get$areTimesValid() { var t1 = {}, times = this.getTaskTimes$0(), t2 = A.Primitives_valueFromDecomposedDate(2000, 1, 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t1.lastDateTime = new A.DateTime(t2, false); t1.countRunning = 0; t1.isValid = true; B.JSArray_methods.forEach$1(times, new A.TaskEntity_areTimesValid_closure(t1)); return t1.isValid && t1.countRunning <= 1; }, get$getInvalidTimeIndices() { var indices, t1 = {}, times = this.getTaskTimes$0(), t2 = A.Primitives_valueFromDecomposedDate(2000, 1, 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); t1.lastDateTime = new A.DateTime(t2, false); indices = A._setArrayType([], type$.JSArray_legacy_int); t1.counter = 0; B.JSArray_methods.forEach$1(times, new A.TaskEntity_getInvalidTimeIndices_closure(t1, indices)); return indices; }, get$isRunning() { var taskTimes = this.getTaskTimes$0(); if (taskTimes.length === 0) return false; return B.JSArray_methods.any$1(taskTimes, new A.TaskEntity_isRunning_closure()); }, isBetween$2(startDate, endDate) { var date, taskTimes = this.getTaskTimes$0(); if (taskTimes.length === 0) return false; date = A.convertDateTimeToSqlDate(B.JSArray_methods.get$first(taskTimes).startDate.toLocal$0()); return J.compareTo$1$ns(startDate, date) <= 0 && J.compareTo$1$ns(endDate, date) >= 0; }, get$startTimestamp() { var log, t1 = this.timeLog; if (t1.length === 0) return null; log = B.C_JsonCodec.decode$2$reviver(0, t1, null); t1 = J.getInterceptor$asx(log); if (t1.get$isEmpty(log)) return null; return J.$index$asx(type$.legacy_List_dynamic._as(t1.get$first(log)), 0); }, get$endTimestamp() { var log, last, _null = null, t1 = this.timeLog; if (t1.length === 0) return _null; log = B.C_JsonCodec.decode$2$reviver(0, t1, _null); t1 = J.getInterceptor$asx(log); if (t1.get$isEmpty(log)) return _null; last = type$.legacy_List_dynamic._as(t1.get$last(log)); t1 = J.getInterceptor$asx(last); if (t1.get$length(last) < 2) return _null; return J.round$0$n(t1.$index(last, 1)); }, getTaskTimes$1$sort(sort) { var details = A._setArrayType([], type$.JSArray_legacy_TaskTime), t1 = this.timeLog; if (t1.length === 0) return details; J.forEach$1$ax(B.C_JsonCodec.decode$2$reviver(0, t1, null), new A.TaskEntity_getTaskTimes_closure(details)); if (sort) B.JSArray_methods.sort$1(details, new A.TaskEntity_getTaskTimes_closure0()); return details; }, getTaskTimes$0() { return this.getTaskTimes$1$sort(true); }, addTaskTime$1(time) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? B.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.add$1$ax(taskTimes, time.get$asList()); return this.rebuild$1(new A.TaskEntity_addTaskTime_closure(taskTimes)); }, updateTaskTime$2(time, index) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? B.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.$indexSet$ax(taskTimes, index, time.get$asList()); return this.rebuild$1(new A.TaskEntity_updateTaskTime_closure(taskTimes)); }, deleteTaskTime$1(index) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? B.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.removeAt$1$ax(taskTimes, index); return this.rebuild$1(new A.TaskEntity_deleteTaskTime_closure(taskTimes)); }, calculateDuration$0() { var t1 = {}; t1.seconds = 0; B.JSArray_methods.forEach$1(this.getTaskTimes$0(), new A.TaskEntity_calculateDuration_closure(t1)); return A.Duration$(0, 0, 0, 0, 0, t1.seconds); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var t2, _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1) { if (includeEdit) if (userCompany.canEditEntity$1(_this)) t2 = !multiselect; else t2 = false; else t2 = false; if (t2) actions.push(B.EntityAction_edit); t2 = _this.invoiceId.length === 0; if (t2) if (_this.get$isRunning()) actions.push(B.EntityAction_stop); else if (_this.duration > 0) actions.push(B.EntityAction_resume); else actions.push(B.EntityAction_start); if (!multiselect && !_this.get$isNew()) if (userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_changeStatus); if (t2 && !_this.get$isRunning()) if (userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) { actions.push(B.EntityAction_invoiceTask); if (_this.clientId.length !== 0) actions.push(B.EntityAction_addToInvoice); } } if (!multiselect && !_this.get$isNew()) if (userCompany.can$2(B.UserPermission_create, B.EntityType_task)) actions.push(B.EntityAction_clone); if (t1 && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$8(_, task, sortField, sortAscending, userMap, clientMap, projectMap, invoiceMap, taskStatusMap) { var response, t1, t2, clientA, clientB, projectA, projectB, invoiceA, invoiceB, stateA, stateB, taskAStatus, taskBStatus, _null = null, _s8_ = "archived", taskA = sortAscending ? this : task, taskB = sortAscending ? task : this; switch (sortField) { case "duration": response = B.JSInt_methods.compareTo$1(taskA.duration, taskB.duration); break; case "description": response = B.JSString_methods.compareTo$1(taskA.description, taskB.description); break; case "custom1": response = B.JSString_methods.compareTo$1(taskA.customValue1, taskB.customValue1); break; case "custom2": response = B.JSString_methods.compareTo$1(taskA.customValue2, taskB.customValue2); break; case "custom3": response = B.JSString_methods.compareTo$1(taskA.customValue3, taskB.customValue3); break; case "custom4": response = B.JSString_methods.compareTo$1(taskA.customValue4, taskB.customValue4); break; case "client_id": case "client": t1 = taskA.clientId; t2 = clientMap._map$_map; clientA = t2.$index(0, t1); if (clientA == null) clientA = A.ClientEntity_ClientEntity(_null, _null, _null, _null); clientB = t2.$index(0, taskB.clientId); if (clientB == null) clientB = A.ClientEntity_ClientEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientA.displayName)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(clientB.displayName)), 0, _null).toLowerCase()); break; case "project_id": case "project": t1 = taskA.projectId; t2 = projectMap._map$_map; projectA = t2.$index(0, t1); if (projectA == null) projectA = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); projectB = t2.$index(0, taskB.projectId); if (projectB == null) projectB = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); response = B.JSString_methods.compareTo$1(projectA.name.toLowerCase(), projectB.name.toLowerCase()); break; case "invoice_id": t1 = taskA.invoiceId; t2 = invoiceMap._map$_map; invoiceA = t2.$index(0, t1); if (invoiceA == null) invoiceA = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); invoiceB = t2.$index(0, taskB.invoiceId); if (invoiceB == null) invoiceB = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); response = B.JSString_methods.compareTo$1(invoiceA.number.toLowerCase(), invoiceB.number.toLowerCase()); break; case "entity_state": if (!taskA.get$isArchived() && !taskA.isDeleted) t1 = "active"; else t1 = taskA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!taskB.get$isArchived() && !taskB.isDeleted) t1 = "active"; else t1 = taskB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "date": case "time_log": response = B.JSString_methods.compareTo$1(taskA.timeLog.toLowerCase(), taskB.timeLog.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(taskA.createdAt, taskB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(taskA.archivedAt, taskB.archivedAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(taskA.updatedAt, taskB.updatedAt); break; case "documents": response = B.JSInt_methods.compareTo$1(taskA.documents._list.length, taskB.documents._list.length); break; case "number": response = A.compareNatural(taskA.number.toLowerCase(), taskB.number.toLowerCase()); break; case "status": if (taskA.get$isRunning()) taskAStatus = -1; else { t1 = taskA.invoiceId; if (t1.length !== 0) taskAStatus = 999999; else { t1 = taskA.statusId; t1 = taskStatusMap._map$_map.$index(0, t1); t1 = t1 == null ? _null : t1.statusOrder; if (t1 == null) t1 = 0; taskAStatus = t1; } } if (taskB.get$isRunning()) taskBStatus = -1; else { t1 = taskB.invoiceId; if (t1.length !== 0) taskBStatus = 999999; else { t1 = taskB.statusId; t1 = taskStatusMap._map$_map.$index(0, t1); t1 = t1 == null ? _null : t1.statusOrder; if (t1 == null) t1 = 0; taskBStatus = t1; } } response = B.JSInt_methods.compareTo$1(taskAStatus, taskBStatus); break; default: A.print("## ERROR: sort by task." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(task.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.number, _this.description, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesStatuses$1(statuses) { var t3, t4, t5, t1 = statuses._list, t2 = t1.length; if (t2 === 0) return true; for (t1 = new J.ArrayIterator(t1, t2, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = this.invoiceId.length === 0, t3 = !t2; t1.moveNext$0();) { t4 = t1.__interceptors$_current; if (t4.get$id(t4) === "-2" && this.get$isRunning()) return true; else { if (t4.get$id(t4) === "-3") t5 = t3; else t5 = false; if (t5) return true; else { if (t4.get$id(t4) === "-1") if (!this.get$isRunning()) t4 = t2; else t4 = false; else t4 = false; if (t4) return true; } } } return false; }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.number, _this.description, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.number; }, get$listDisplayAmount() { return B.JSInt_methods._tdivFast$1(this.calculateDuration$0()._duration, 1000000); }, get$listDisplayAmountType() { return B.FormatNumberType_6; }, get$calculateStatusId() { if (this.invoiceId.length !== 0) return "-3"; else if (this.get$isRunning()) return "-2"; else return "-1"; } }; A.TaskEntity_clone_closure.prototype = { call$1(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; b.get$_task_model$_$this()._task_model$_id = "" + t1; b.get$_task_model$_$this()._task_model$_number = ""; b.get$_task_model$_$this()._task_model$_isChanged = false; b.get$_task_model$_$this()._task_model$_isDeleted = false; b.get$_task_model$_$this()._task_model$_invoiceId = ""; b.get$_task_model$_$this()._task_model$_duration = 0; B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 50 }; A.TaskEntity_areTimesValid_closure.prototype = { call$1(time) { var t1, t2, lastDateTime, t3, t4, startDate = time.startDate, endDate = time.endDate; if (endDate == null) { t1 = this._box_0; ++t1.countRunning; t2 = t1.lastDateTime; if (startDate._value < t2._value) t1.isValid = false; } else { t1 = this._box_0; lastDateTime = t1.lastDateTime; t2 = startDate._value; t3 = lastDateTime._value; if (t2 < t3 || t2 > endDate._value) t1.isValid = false; t4 = endDate._value; if (t4 < t2 || t4 < t3) t1.isValid = false; t1.lastDateTime = t3 > t4 ? lastDateTime : endDate; } }, $signature: 197 }; A.TaskEntity_getInvalidTimeIndices_closure.prototype = { call$1(time) { var t1, t2, t3, lastDateTime, _this = this, startDate = time.startDate, endDate = time.endDate; if (endDate == null) { t1 = _this._box_0; t2 = t1.lastDateTime; if (startDate._value < t2._value) _this.indices.push(t1.counter); } else { t1 = _this._box_0; t2 = t1.lastDateTime; t3 = startDate._value; if (t3 < t2._value || t3 > endDate._value) _this.indices.push(t1.counter); t2 = endDate._value; if (t2 < t3 || t2 < t1.lastDateTime._value) _this.indices.push(t1.counter); lastDateTime = t1.lastDateTime; t1.lastDateTime = lastDateTime._value > t2 ? lastDateTime : endDate; } ++t1.counter; }, $signature: 197 }; A.TaskEntity_isRunning_closure.prototype = { call$1(taskTime) { return taskTime.endDate == null; }, $signature: 204 }; A.TaskEntity_getTaskTimes_closure.prototype = { call$1(detail) { var t1, startDate, endDate; type$.legacy_List_dynamic._as(detail); t1 = J.getInterceptor$asx(detail); startDate = J.$eq$(t1.$index(detail, 0), false) || t1.$index(detail, 0) == null ? 0 : J.round$0$n(t1.$index(detail, 0)); if (startDate !== 0) { endDate = J.$eq$(t1.$index(detail, 1), false) || t1.$index(detail, 1) == null ? 0 : J.round$0$n(t1.$index(detail, 1)); t1 = A.convertTimestampToDate(startDate).toUtc$0(); this.details.push(A.TaskTime_TaskTime((endDate == null ? 0 : endDate) > 0 ? A.convertTimestampToDate(endDate).toUtc$0() : null, t1)); } }, $signature: 7 }; A.TaskEntity_getTaskTimes_closure0.prototype = { call$2(timeA, timeB) { var t1 = timeA.startDate, t2 = timeB.startDate; return B.JSInt_methods.compareTo$1(t1._value, t2._value); }, $signature: 817 }; A.TaskEntity_addTaskTime_closure.prototype = { call$1(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = B.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 50 }; A.TaskEntity_updateTaskTime_closure.prototype = { call$1(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = B.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 50 }; A.TaskEntity_deleteTaskTime_closure.prototype = { call$1(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = B.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 50 }; A.TaskEntity_calculateDuration_closure.prototype = { call$1(taskTime) { var t1 = this._box_0; t1.seconds = t1.seconds + B.JSInt_methods._tdivFast$1(taskTime.get$duration(taskTime)._duration, 1000000); }, $signature: 197 }; A._$TaskListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_UWS)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.TaskListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaskEntity, t3 = type$.ListBuilder_legacy_TaskEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._task_model$_data = t6; result._task_model$_$v = null; } t4 = result._task_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._task_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_UWS)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_86y0; }, get$wireName() { return "TaskListResponse"; } }; A._$TaskItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_4QF0)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.TaskItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaskEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.TaskEntityBuilder(); t3._task_model$_$v = t2; result._task_model$_data = t3; result._task_model$_$v = null; } t2 = result._task_model$_data; if (t2 == null) t2 = result._task_model$_data = new A.TaskEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_4QF0)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._task_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_2DL; }, get$wireName() { return "TaskItemResponse"; } }; A._$TaskEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["description", serializers.serialize$2$specifiedType(object.description, B.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "duration", serializers.serialize$2$specifiedType(object.duration, B.FullType_kjq), "invoice_id", serializers.serialize$2$specifiedType(object.invoiceId, B.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, B.FullType_h8g), "rate", serializers.serialize$2$specifiedType(object.rate, B.FullType_MME), "project_id", serializers.serialize$2$specifiedType(object.projectId, B.FullType_h8g), "time_log", serializers.serialize$2$specifiedType(object.timeLog, B.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, B.FullType_h8g), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.statusOrder; if (value != null) { result.push("status_order"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new A.TaskEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "description": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._description = t4; break; case "number": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_number = t4; break; case "duration": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_model$_$this()._task_model$_duration = t4; break; case "invoice_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_invoiceId = t4; break; case "client_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_clientId = t4; break; case "rate": t4 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_task_model$_$this()._rate = t4; break; case "project_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_projectId = t4; break; case "time_log": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._timeLog = t4; break; case "custom_value1": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue1 = t4; break; case "custom_value2": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue2 = t4; break; case "custom_value3": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue3 = t4; break; case "custom_value4": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue4 = t4; break; case "status_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_statusId = t4; break; case "status_order": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_model$_$this()._statusOrder = t4; break; case "documents": t4 = result.get$_task_model$_$this(); t5 = t4._task_model$_documents; if (t5 == null) { t5 = new A.ListBuilder(t3); t5.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t4._task_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_model$_$this()._task_model$_isChanged = t4; break; case "created_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_model$_$this()._task_model$_createdAt = t4; break; case "updated_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_model$_$this()._task_model$_updatedAt = t4; break; case "archived_at": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_model$_$this()._task_model$_archivedAt = t4; break; case "is_deleted": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_model$_$this()._task_model$_isDeleted = t4; break; case "user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_createdUserId = t4; break; case "assigned_user_id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_assignedUserId = t4; break; case "id": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_model$_$this()._task_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ckJ; }, get$wireName() { return "TaskEntity"; } }; A._$TaskListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._task_model$__hashCode; return t1 == null ? this._task_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaskListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._task_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._task_model$_$v = null; } t1 = _this._task_model$_data; return t1 == null ? _this._task_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "TaskListResponse", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TaskListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_model$_$v = t1; return _$result; } }; A._$TaskItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._task_model$__hashCode; return t1 == null ? this._task_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaskItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.TaskEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._task_model$_$v = t1; _this._task_model$_data = t2; _this._task_model$_$v = null; } t1 = _this._task_model$_data; return t1 == null ? _this._task_model$_data = new A.TaskEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "TaskItemResponse", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TaskItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_model$_$v = t1; return _$result; } }; A._$TaskTime.prototype = { rebuild$1(updates) { var _$result, t1 = new A.TaskTimeBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._task_model$_$v = this; updates.call$1(t1); _$result = t1._task_model$_$v; if (_$result == null) _$result = new A._$TaskTime(t1.get$_task_model$_$this()._startDate, t1.get$_task_model$_$this()._endDate); A.ArgumentError_checkNotNull(_$result, "other"); return t1._task_model$_$v = _$result; }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskTime && J.$eq$(this.startDate, other.startDate) && J.$eq$(this.endDate, other.endDate); }, get$hashCode(_) { var _this = this, t1 = _this._task_model$__hashCode; return t1 == null ? _this._task_model$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.startDate)), J.get$hashCode$(_this.endDate))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskTime"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "startDate", this.startDate); t2.add$2(t1, "endDate", this.endDate); return t2.toString$0(t1); } }; A.TaskTimeBuilder.prototype = { get$_task_model$_$this() { var _this = this, $$v = _this._task_model$_$v; if ($$v != null) { _this._startDate = $$v.startDate; _this._endDate = $$v.endDate; _this._task_model$_$v = null; } return _this; } }; A._$TaskEntity.prototype = { rebuild$1(updates) { var t1 = new A.TaskEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._task_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.TaskEntity && _this.description === other.description && _this.number === other.number && _this.duration === other.duration && _this.invoiceId === other.invoiceId && _this.clientId === other.clientId && _this.rate === other.rate && _this.projectId === other.projectId && _this.timeLog === other.timeLog && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.statusId == other.statusId && _this.statusOrder == other.statusOrder && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._task_model$__hashCode; return t1 == null ? _this._task_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.description)), B.JSString_methods.get$hashCode(_this.number)), B.JSInt_methods.get$hashCode(_this.duration)), B.JSString_methods.get$hashCode(_this.invoiceId)), B.JSString_methods.get$hashCode(_this.clientId)), B.JSNumber_methods.get$hashCode(_this.rate)), B.JSString_methods.get$hashCode(_this.projectId)), B.JSString_methods.get$hashCode(_this.timeLog)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.statusId)), J.get$hashCode$(_this.statusOrder)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "description", _this.description); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "duration", _this.duration); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "rate", _this.rate); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "timeLog", _this.timeLog); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "statusOrder", _this.statusOrder); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$clientId(receiver) { return this.clientId; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.TaskEntityBuilder.prototype = { get$documents() { var t1 = this.get$_task_model$_$this(), t2 = t1._task_model$_documents; return t2 == null ? t1._task_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_task_model$_$this()._task_model$_id; }, get$_task_model$_$this() { var t1, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { _this._description = $$v.description; _this._task_model$_number = $$v.number; _this._task_model$_duration = $$v.duration; _this._task_model$_invoiceId = $$v.invoiceId; _this._task_model$_clientId = $$v.clientId; _this._rate = $$v.rate; _this._task_model$_projectId = $$v.projectId; _this._timeLog = $$v.timeLog; _this._task_model$_customValue1 = $$v.customValue1; _this._task_model$_customValue2 = $$v.customValue2; _this._task_model$_customValue3 = $$v.customValue3; _this._task_model$_customValue4 = $$v.customValue4; _this._task_model$_statusId = $$v.statusId; _this._statusOrder = $$v.statusOrder; t1 = $$v.documents; t1.toString; _this._task_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._task_model$_isChanged = $$v.isChanged; _this._task_model$_createdAt = $$v.createdAt; _this._task_model$_updatedAt = $$v.updatedAt; _this._task_model$_archivedAt = $$v.archivedAt; _this._task_model$_isDeleted = $$v.isDeleted; _this._task_model$_createdUserId = $$v.createdUserId; _this._task_model$_assignedUserId = $$v.assignedUserId; _this._task_model$_id = $$v.id; _this._task_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, exception, _this = this, _s10_ = "TaskEntity", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$_task_model$_$this()._description; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "description")); t2 = _this.get$_task_model$_$this()._task_model$_number; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "number")); t3 = _this.get$_task_model$_$this()._task_model$_duration; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "duration")); t4 = _this.get$_task_model$_$this()._task_model$_invoiceId; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "invoiceId")); t5 = _this.get$_task_model$_$this()._task_model$_clientId; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "clientId")); t6 = _this.get$_task_model$_$this()._rate; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "rate")); t7 = _this.get$_task_model$_$this()._task_model$_projectId; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "projectId")); t8 = _this.get$_task_model$_$this()._timeLog; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "timeLog")); t9 = _this.get$_task_model$_$this()._task_model$_customValue1; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue1")); t10 = _this.get$_task_model$_$this()._task_model$_customValue2; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue2")); t11 = _this.get$_task_model$_$this()._task_model$_customValue3; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue3")); t12 = _this.get$_task_model$_$this()._task_model$_customValue4; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue4")); t13 = _this.get$_task_model$_$this()._task_model$_statusId; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "statusId")); t14 = _this.get$_task_model$_$this()._statusOrder; t15 = _this.get$documents().build$0(0); t16 = _this.get$_task_model$_$this()._task_model$_isChanged; t17 = _this.get$_task_model$_$this()._task_model$_createdAt; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "createdAt")); t18 = _this.get$_task_model$_$this()._task_model$_updatedAt; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "updatedAt")); t19 = _this.get$_task_model$_$this()._task_model$_archivedAt; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "archivedAt")); t20 = _this.get$_task_model$_$this()._task_model$_isDeleted; t21 = _this.get$_task_model$_$this()._task_model$_createdUserId; t22 = _this.get$_task_model$_$this()._task_model$_assignedUserId; t23 = _this.get$_task_model$_$this()._task_model$_id; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "id")); _$result0 = A._$TaskEntity$_(t19, t22, t5, t17, t21, t9, t10, t11, t12, t1, t15, t3, t23, t4, t16, t20, t2, t7, t6, t13, t14, t8, t18); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s10_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_model$_$v = t1; return _$result; } }; A._TaskEntity_Object_BaseEntity.prototype = {}; A._TaskEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; A.TaskStatusListResponse.prototype = {}; A.TaskStatusItemResponse.prototype = {}; A.TaskStatusEntity.prototype = { get$entityType() { return B.EntityType_taskStatus; }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect && includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$3$sortAscending$sortField$taskStatus(_, sortAscending, sortField, taskStatus) { var response, t1, t2, taskStatusA = sortAscending ? this : taskStatus, taskStatusB = sortAscending ? taskStatus : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(taskStatusA.name, taskStatusB.name); break; case "order": t1 = taskStatusA.statusOrder; if (t1 == null) t1 = 99999; t2 = taskStatusB.statusOrder; response = B.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); break; case "updated_at": response = B.JSInt_methods.compareTo$1(taskStatusA.updatedAt, taskStatusB.updatedAt); break; default: A.print("## ERROR: sort by taskStatus." + sortField + " is not implemented"); response = 0; break; } return response; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; } }; A._$TaskStatusListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_WVg)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.TaskStatusListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaskStatusEntity, t3 = type$.ListBuilder_legacy_TaskStatusEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_status_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._task_status_model$_data = t6; result._task_status_model$_$v = null; } t4 = result._task_status_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._task_status_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_WVg)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ouA; }, get$wireName() { return "TaskStatusListResponse"; } }; A._$TaskStatusItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_ef4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.TaskStatusItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaskStatusEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_status_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.TaskStatusEntityBuilder(); t3.get$_task_status_model$_$this()._task_status_model$_color = ""; t3._task_status_model$_$v = t2; result._task_status_model$_data = t3; result._task_status_model$_$v = null; } t2 = result._task_status_model$_data; if (t2 == null) { t2 = new A.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; result._task_status_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_ef4)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._task_status_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_n7k; }, get$wireName() { return "TaskStatusItemResponse"; } }; A._$TaskStatusEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.statusOrder; if (value != null) { result.push("status_order"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.TaskStatusEntityBuilder(); result.get$_task_status_model$_$this()._task_status_model$_color = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_name = t1; break; case "color": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_color = t1; break; case "status_order": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_status_model$_$this()._task_status_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_status_model$_$this()._task_status_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_4MM; }, get$wireName() { return "TaskStatusEntity"; } }; A._$TaskStatusListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskStatusListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._task_status_model$__hashCode; return t1 == null ? this._task_status_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaskStatusListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._task_status_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._task_status_model$_$v = null; } t1 = _this._task_status_model$_data; return t1 == null ? _this._task_status_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaskStatusEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "TaskStatusListResponse", _$result = null; try { _$result0 = _this._task_status_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TaskStatusListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_status_model$_$v = t1; return _$result; } }; A._$TaskStatusItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskStatusItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._task_status_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._task_status_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaskStatusItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._task_status_model$_$v = t1; _this._task_status_model$_data = t2; _this._task_status_model$_$v = null; } t1 = _this._task_status_model$_data; if (t1 == null) { t1 = new A.TaskStatusEntityBuilder(); t1.get$_task_status_model$_$this()._task_status_model$_color = ""; _this._task_status_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._task_status_model$_$v; if (_$result0 == null) _$result0 = new A._$TaskStatusItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TaskStatusItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_status_model$_$v = t1; return _$result; } }; A._$TaskStatusEntity.prototype = { rebuild$1(updates) { var t1 = new A.TaskStatusEntityBuilder(); t1.get$_task_status_model$_$this()._task_status_model$_color = ""; A.ArgumentError_checkNotNull(this, "other"); t1._task_status_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.TaskStatusEntity && _this.name === other.name && _this.color === other.color && _this.statusOrder == other.statusOrder && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._task_status_model$__hashCode; return t1 == null ? _this._task_status_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.color)), J.get$hashCode$(_this.statusOrder)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "statusOrder", _this.statusOrder); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.TaskStatusEntityBuilder.prototype = { get$name(_) { return this.get$_task_status_model$_$this()._task_status_model$_name; }, get$id(_) { return this.get$_task_status_model$_$this()._task_status_model$_id; }, get$_task_status_model$_$this() { var _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { _this._task_status_model$_name = $$v.name; _this._task_status_model$_color = $$v.color; _this._task_status_model$_statusOrder = $$v.statusOrder; _this._task_status_model$_isChanged = $$v.isChanged; _this._task_status_model$_createdAt = $$v.createdAt; _this._task_status_model$_updatedAt = $$v.updatedAt; _this._task_status_model$_archivedAt = $$v.archivedAt; _this._task_status_model$_isDeleted = $$v.isDeleted; _this._task_status_model$_createdUserId = $$v.createdUserId; _this._task_status_model$_assignedUserId = $$v.assignedUserId; _this._task_status_model$_id = $$v.id; _this._task_status_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _s16_ = "TaskStatusEntity", _$result = _this._task_status_model$_$v; if (_$result == null) { t1 = _this.get$_task_status_model$_$this()._task_status_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "name")); t2 = _this.get$_task_status_model$_$this()._task_status_model$_color; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "color")); t3 = _this.get$_task_status_model$_$this()._task_status_model$_statusOrder; t4 = _this.get$_task_status_model$_$this()._task_status_model$_isChanged; t5 = _this.get$_task_status_model$_$this()._task_status_model$_createdAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "createdAt")); t6 = _this.get$_task_status_model$_$this()._task_status_model$_updatedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "updatedAt")); t7 = _this.get$_task_status_model$_$this()._task_status_model$_archivedAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "archivedAt")); t8 = _this.get$_task_status_model$_$this()._task_status_model$_isDeleted; t9 = _this.get$_task_status_model$_$this()._task_status_model$_createdUserId; t10 = _this.get$_task_status_model$_$this()._task_status_model$_assignedUserId; t11 = _this.get$_task_status_model$_$this()._task_status_model$_id; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "id")); _$result = A._$TaskStatusEntity$_(t7, t10, t2, t5, t9, t11, t4, t8, t1, t3, t6); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._task_status_model$_$v = _$result; } }; A._TaskStatusEntity_Object_BaseEntity.prototype = {}; A._TaskStatusEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus.prototype = {}; A.TaxRateListResponse.prototype = {}; A.TaxRateItemResponse.prototype = {}; A.TaxRateEntity.prototype = { get$entityType() { return B.EntityType_taxRate; }, get$listDisplayName() { return this.name; }, get$isEmpty(_) { return this.rate === 0 && this.name.length === 0; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A._$TaxRateListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_IIj)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.TaxRateListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaxRateEntity, t3 = type$.ListBuilder_legacy_TaxRateEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._tax_rate_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._tax_rate_model$_data = t6; result._tax_rate_model$_$v = null; } t4 = result._tax_rate_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._tax_rate_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_IIj)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Qwv; }, get$wireName() { return "TaxRateListResponse"; } }; A._$TaxRateItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_ML3)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.TaxRateItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaxRateEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._tax_rate_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.TaxRateEntityBuilder(); t3._tax_rate_model$_$v = t2; result._tax_rate_model$_data = t3; result._tax_rate_model$_$v = null; } t2 = result._tax_rate_model$_data; if (t2 == null) t2 = result._tax_rate_model$_data = new A.TaxRateEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_ML3)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._tax_rate_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wEo0; }, get$wireName() { return "TaxRateItemResponse"; } }; A._$TaxRateEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "rate", serializers.serialize$2$specifiedType(object.rate, B.FullType_MME), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.TaxRateEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_name = t1; break; case "rate": t1 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_tax_rate_model$_$this()._tax_rate_model$_rate = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_tax_rate_model$_$this()._tax_rate_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_AOK; }, get$wireName() { return "TaxRateEntity"; } }; A._$TaxRateListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaxRateListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._tax_rate_model$__hashCode; return t1 == null ? this._tax_rate_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaxRateListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._tax_rate_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._tax_rate_model$_$v = null; } t1 = _this._tax_rate_model$_data; return t1 == null ? _this._tax_rate_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TaxRateEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "TaxRateListResponse", _$result = null; try { _$result0 = _this._tax_rate_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TaxRateListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._tax_rate_model$_$v = t1; return _$result; } }; A._$TaxRateItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaxRateItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._tax_rate_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._tax_rate_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TaxRateItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.TaxRateEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._tax_rate_model$_$v = t1; _this._tax_rate_model$_data = t2; _this._tax_rate_model$_$v = null; } t1 = _this._tax_rate_model$_data; return t1 == null ? _this._tax_rate_model$_data = new A.TaxRateEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._tax_rate_model$_$v; if (_$result0 == null) _$result0 = new A._$TaxRateItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TaxRateItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._tax_rate_model$_$v = t1; return _$result; } }; A._$TaxRateEntity.prototype = { rebuild$1(updates) { var t1 = new A.TaxRateEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._tax_rate_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.TaxRateEntity && _this.name === other.name && _this.rate === other.rate && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._tax_rate_model$__hashCode; return t1 == null ? _this._tax_rate_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSNumber_methods.get$hashCode(_this.rate)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "rate", _this.rate); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.TaxRateEntityBuilder.prototype = { get$name(_) { return this.get$_tax_rate_model$_$this()._tax_rate_model$_name; }, get$id(_) { return this.get$_tax_rate_model$_$this()._tax_rate_model$_id; }, get$_tax_rate_model$_$this() { var _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { _this._tax_rate_model$_name = $$v.name; _this._tax_rate_model$_rate = $$v.rate; _this._tax_rate_model$_isChanged = $$v.isChanged; _this._tax_rate_model$_createdAt = $$v.createdAt; _this._tax_rate_model$_updatedAt = $$v.updatedAt; _this._tax_rate_model$_archivedAt = $$v.archivedAt; _this._tax_rate_model$_isDeleted = $$v.isDeleted; _this._tax_rate_model$_createdUserId = $$v.createdUserId; _this._tax_rate_model$_assignedUserId = $$v.assignedUserId; _this._tax_rate_model$_id = $$v.id; _this._tax_rate_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s13_ = "TaxRateEntity", _$result = _this._tax_rate_model$_$v; if (_$result == null) { t1 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_rate; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "rate")); t3 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged; t4 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_createdAt; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t5 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_updatedAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t6 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_archivedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t7 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_isDeleted; t8 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_createdUserId; t9 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_assignedUserId; t10 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_id; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result = A._$TaxRateEntity$_(t6, t9, t4, t8, t10, t3, t7, t1, t2, t5); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._tax_rate_model$_$v = _$result; } }; A._TaxRateEntity_Object_BaseEntity.prototype = {}; A._TaxRateEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.TokenListResponse.prototype = {}; A.TokenItemResponse.prototype = {}; A.TokenEntity.prototype = { get$entityType() { return B.EntityType_token; }, get$listDisplayName() { return this.name; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (B.JSString_methods.substring$1(_this.token, 10) !== "xxxxxxxxxxx" && !multiselect) actions.push(B.EntityAction_copy); if (!_this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A._$TokenListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_mKc)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.TokenListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TokenEntity, t3 = type$.ListBuilder_legacy_TokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._token_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._token_model$_data = t6; result._token_model$_$v = null; } t4 = result._token_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._token_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_mKc)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_vzd; }, get$wireName() { return "TokenListResponse"; } }; A._$TokenItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Azp)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.TokenItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._token_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.TokenEntityBuilder(); t3._token_model$_$v = t2; result._token_model$_data = t3; result._token_model$_$v = null; } t2 = result._token_model$_data; if (t2 == null) t2 = result._token_model$_data = new A.TokenEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Azp)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._token_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ZAJ; }, get$wireName() { return "TokenItemResponse"; } }; A._$TokenEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["is_system", serializers.serialize$2$specifiedType(object.isSystem, B.FullType_MtR), "token", serializers.serialize$2$specifiedType(object.token, B.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.TokenEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "is_system": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_token_model$_$this()._isSystem = t1; break; case "token": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_model$_$this()._token_model$_token = t1; break; case "name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_model$_$this()._token_model$_name = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_token_model$_$this()._token_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_token_model$_$this()._token_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_token_model$_$this()._token_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_token_model$_$this()._token_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_token_model$_$this()._token_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_model$_$this()._token_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_model$_$this()._token_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_model$_$this()._token_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_HFE; }, get$wireName() { return "TokenEntity"; } }; A._$TokenListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TokenListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._token_model$__hashCode; return t1 == null ? this._token_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TokenListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._token_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._token_model$_$v = null; } t1 = _this._token_model$_data; return t1 == null ? _this._token_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_TokenEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "TokenListResponse", _$result = null; try { _$result0 = _this._token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$TokenListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._token_model$_$v = t1; return _$result; } }; A._$TokenItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TokenItemResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._token_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._token_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.TokenItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._token_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.TokenEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._token_model$_$v = t1; _this._token_model$_data = t2; _this._token_model$_$v = null; } t1 = _this._token_model$_data; return t1 == null ? _this._token_model$_data = new A.TokenEntityBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._token_model$_$v; if (_$result0 == null) _$result0 = new A._$TokenItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TokenItemResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._token_model$_$v = t1; return _$result; } }; A._$TokenEntity.prototype = { rebuild$1(updates) { var t1 = new A.TokenEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._token_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.TokenEntity && _this.isSystem === other.isSystem && _this.token === other.token && _this.name === other.name && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._token_model$__hashCode; return t1 == null ? _this._token_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.isSystem)), B.JSString_methods.get$hashCode(_this.token)), B.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "isSystem", _this.isSystem); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$token() { return this.token; }, get$name(receiver) { return this.name; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.TokenEntityBuilder.prototype = { get$token() { return this.get$_token_model$_$this()._token_model$_token; }, get$name(_) { return this.get$_token_model$_$this()._token_model$_name; }, get$id(_) { return this.get$_token_model$_$this()._token_model$_id; }, get$_token_model$_$this() { var _this = this, $$v = _this._token_model$_$v; if ($$v != null) { _this._isSystem = $$v.isSystem; _this._token_model$_token = $$v.token; _this._token_model$_name = $$v.name; _this._token_model$_isChanged = $$v.isChanged; _this._token_model$_createdAt = $$v.createdAt; _this._token_model$_updatedAt = $$v.updatedAt; _this._token_model$_archivedAt = $$v.archivedAt; _this._token_model$_isDeleted = $$v.isDeleted; _this._token_model$_createdUserId = $$v.createdUserId; _this._token_model$_assignedUserId = $$v.assignedUserId; _this._token_model$_id = $$v.id; _this._token_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _s11_ = "TokenEntity", _$result = _this._token_model$_$v; if (_$result == null) { t1 = _this.get$_token_model$_$this()._isSystem; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "isSystem")); t2 = _this.get$_token_model$_$this()._token_model$_token; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "token")); t3 = _this.get$_token_model$_$this()._token_model$_name; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "name")); t4 = _this.get$_token_model$_$this()._token_model$_isChanged; t5 = _this.get$_token_model$_$this()._token_model$_createdAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "createdAt")); t6 = _this.get$_token_model$_$this()._token_model$_updatedAt; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "updatedAt")); t7 = _this.get$_token_model$_$this()._token_model$_archivedAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "archivedAt")); t8 = _this.get$_token_model$_$this()._token_model$_isDeleted; t9 = _this.get$_token_model$_$this()._token_model$_createdUserId; t10 = _this.get$_token_model$_$this()._token_model$_assignedUserId; t11 = _this.get$_token_model$_$this()._token_model$_id; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "id")); _$result = A._$TokenEntity$_(t7, t10, t5, t9, t11, t4, t8, t1, t3, t2, t6); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._token_model$_$v = _$result; } }; A._TokenEntity_Object_BaseEntity.prototype = {}; A._TokenEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.UserListResponse.prototype = {}; A.UserItemResponse.prototype = {}; A.UserTwoFactorResponse.prototype = {}; A.UserTwoFactorData.prototype = {}; A.UserCompanyItemResponse.prototype = {}; A.UserEntity.prototype = { get$entityType() { return B.EntityType_user; }, get$fullName() { return B.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, get$listDisplayName() { return this.get$fullName().length !== 0 ? this.get$fullName() : this.email; }, matchesFilter$1(filter) { var _this = this; return A.matchesStrings(A._setArrayType([_this.firstName, _this.lastName, _this.email, _this.phone, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var _this = this; return A.matchesStringsValue(A._setArrayType([_this.firstName, _this.lastName, _this.email, _this.phone, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var _this = this, actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(B.EntityAction_edit); if (userCompany.isAdmin || userCompany.isOwner) { if (_this.emailVerifiedAt == null) actions.push(B.EntityAction_resendInvite); actions.push(B.EntityAction_remove); } if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A._$UserListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_e7r)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.UserListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_UserEntity, t3 = type$.ListBuilder_legacy_UserEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._user_model$_data = t6; result._user_model$_$v = null; } t4 = result._user_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._user_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_e7r)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_RsV0; }, get$wireName() { return "UserListResponse"; } }; A._$UserItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_oyU)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.UserItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.UserEntityBuilder(); t3.get$_user_model$_$this()._isTwoFactorEnabled = false; t3.get$_user_model$_$this()._hasPassword = false; t3.get$_user_model$_$this()._password = ""; t3.get$_user_model$_$this()._lastEmailAddress = ""; t3.get$_user_model$_$this()._oauthUserToken = ""; t3._user_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) { t2 = new A.UserEntityBuilder(); t2.get$_user_model$_$this()._isTwoFactorEnabled = false; t2.get$_user_model$_$this()._hasPassword = false; t2.get$_user_model$_$this()._password = ""; t2.get$_user_model$_$this()._lastEmailAddress = ""; t2.get$_user_model$_$this()._oauthUserToken = ""; result._user_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_oyU)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._user_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_bti; }, get$wireName() { return "UserItemResponse"; } }; A._$UserTwoFactorResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_CyS)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.UserTwoFactorResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserTwoFactorData; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.UserTwoFactorDataBuilder(); t3._user_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) t2 = result._user_model$_data = new A.UserTwoFactorDataBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_CyS)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._user_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yHZ; }, get$wireName() { return "UserTwoFactorResponse"; } }; A._$UserTwoFactorDataSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["secret", serializers.serialize$2$specifiedType(object.secret, B.FullType_h8g), "qrCode", serializers.serialize$2$specifiedType(object.qrCode, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.UserTwoFactorDataBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "secret": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._user_model$_$v; if ($$v != null) { result._secret = $$v.secret; result._qrCode = $$v.qrCode; result._user_model$_$v = null; } result._secret = t1; break; case "qrCode": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._user_model$_$v; if ($$v != null) { result._secret = $$v.secret; result._qrCode = $$v.qrCode; result._user_model$_$v = null; } result._qrCode = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Vet; }, get$wireName() { return "UserTwoFactorData"; } }; A._$UserCompanyItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_whX)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.UserCompanyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t3); t3._company_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); result._user_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_whX)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_nTi; }, get$wireName() { return "UserCompanyItemResponse"; } }; A._$UserEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["first_name", serializers.serialize$2$specifiedType(object.firstName, B.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, B.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, B.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, B.FullType_h8g), "password", serializers.serialize$2$specifiedType(object.password, B.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "google_2fa_secret", serializers.serialize$2$specifiedType(object.isTwoFactorEnabled, B.FullType_MtR), "has_password", serializers.serialize$2$specifiedType(object.hasPassword, B.FullType_MtR), "last_confirmed_email_address", serializers.serialize$2$specifiedType(object.lastEmailAddress, B.FullType_h8g), "oauth_user_token", serializers.serialize$2$specifiedType(object.oauthUserToken, B.FullType_h8g), "oauth_provider_id", serializers.serialize$2$specifiedType(object.oauthProvider, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.emailVerifiedAt; if (value != null) { result.push("email_verified_at"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.userCompany; if (value != null) { result.push("company_user"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_whX)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._firstName = t2; break; case "last_name": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._lastName = t2; break; case "email": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_email = t2; break; case "phone": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_phone = t2; break; case "password": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._password = t2; break; case "email_verified_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_user_model$_$this()._emailVerifiedAt = t2; break; case "custom_value1": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_customValue1 = t2; break; case "custom_value2": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_customValue2 = t2; break; case "custom_value3": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_customValue3 = t2; break; case "custom_value4": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_customValue4 = t2; break; case "google_2fa_secret": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_user_model$_$this()._isTwoFactorEnabled = t2; break; case "has_password": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_user_model$_$this()._hasPassword = t2; break; case "last_confirmed_email_address": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._lastEmailAddress = t2; break; case "oauth_user_token": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._oauthUserToken = t2; break; case "company_user": t2 = result.get$_user_model$_$this(); t3 = t2._userCompany; if (t3 == null) { t3 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t3); t2._userCompany = t3; t2 = t3; } else t2 = t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_whX)); if (t3 == null) A.throwExpression(A.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; case "oauth_provider_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._oauthProvider = t2; break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_user_model$_$this()._user_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_user_model$_$this()._user_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_user_model$_$this()._user_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_user_model$_$this()._user_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_user_model$_$this()._user_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_assignedUserId = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_model$_$this()._user_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_IU1; }, get$wireName() { return "UserEntity"; } }; A._$UserListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.UserListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._user_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._user_model$_$v = null; } t1 = _this._user_model$_data; return t1 == null ? _this._user_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "UserListResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$UserListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_model$_$v = t1; return _$result; } }; A._$UserItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.UserItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._user_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; if (t1 == null) { t1 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t1); _this._user_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "UserItemResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$UserItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_model$_$v = t1; return _$result; } }; A._$UserTwoFactorResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserTwoFactorResponse && this.data.$eq(0, other.data); }, get$hashCode(_) { var t1 = this._user_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._user_model$__hashCode = A.$jf(A.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserTwoFactorResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.UserTwoFactorResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.UserTwoFactorDataBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._user_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; return t1 == null ? _this._user_model$_data = new A.UserTwoFactorDataBuilder() : t1; }, build$0(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) _$result0 = new A._$UserTwoFactorResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("UserTwoFactorResponse", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_model$_$v = t1; return _$result; } }; A._$UserTwoFactorData.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserTwoFactorData && this.secret === other.secret && this.qrCode === other.qrCode; }, get$hashCode(_) { var _this = this, t1 = _this._user_model$__hashCode; return t1 == null ? _this._user_model$__hashCode = A.$jf(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.secret)), B.JSString_methods.get$hashCode(_this.qrCode))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserTwoFactorData"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "secret", this.secret); t2.add$2(t1, "qrCode", this.qrCode); return t2.toString$0(t1); } }; A.UserTwoFactorDataBuilder.prototype = { get$_user_model$_$this() { var _this = this, $$v = _this._user_model$_$v; if ($$v != null) { _this._secret = $$v.secret; _this._qrCode = $$v.qrCode; _this._user_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s17_ = "UserTwoFactorData", _$result = _this._user_model$_$v; if (_$result == null) { t1 = _this.get$_user_model$_$this()._secret; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "secret")); t2 = _this.get$_user_model$_$this()._qrCode; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "qrCode")); _$result = new A._$UserTwoFactorData(t1, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._user_model$_$v = _$result; } }; A._$UserCompanyItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserCompanyItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.UserCompanyItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._company_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; if (t1 == null) { t1 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t1); _this._user_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "UserCompanyItemResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$UserCompanyItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_model$_$v = t1; return _$result; } }; A._$UserEntity.prototype = { rebuild$1(updates) { var t1 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._user_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.phone === other.phone && _this.password === other.password && _this.emailVerifiedAt == other.emailVerifiedAt && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.isTwoFactorEnabled === other.isTwoFactorEnabled && _this.hasPassword === other.hasPassword && _this.lastEmailAddress === other.lastEmailAddress && _this.oauthUserToken === other.oauthUserToken && J.$eq$(_this.userCompany, other.userCompany) && _this.oauthProvider === other.oauthProvider && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._user_model$__hashCode; return t1 == null ? _this._user_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.firstName)), B.JSString_methods.get$hashCode(_this.lastName)), B.JSString_methods.get$hashCode(_this.email)), B.JSString_methods.get$hashCode(_this.phone)), B.JSString_methods.get$hashCode(_this.password)), J.get$hashCode$(_this.emailVerifiedAt)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), B.JSBool_methods.get$hashCode(_this.isTwoFactorEnabled)), B.JSBool_methods.get$hashCode(_this.hasPassword)), B.JSString_methods.get$hashCode(_this.lastEmailAddress)), B.JSString_methods.get$hashCode(_this.oauthUserToken)), J.get$hashCode$(_this.userCompany)), B.JSString_methods.get$hashCode(_this.oauthProvider)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "password", _this.password); t2.add$2(t1, "emailVerifiedAt", _this.emailVerifiedAt); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "isTwoFactorEnabled", _this.isTwoFactorEnabled); t2.add$2(t1, "hasPassword", _this.hasPassword); t2.add$2(t1, "lastEmailAddress", _this.lastEmailAddress); t2.add$2(t1, "oauthUserToken", _this.oauthUserToken); t2.add$2(t1, "userCompany", _this.userCompany); t2.add$2(t1, "oauthProvider", _this.oauthProvider); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.UserEntityBuilder.prototype = { get$userCompany() { var t1 = this.get$_user_model$_$this(), t2 = t1._userCompany; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t1._userCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$id(_) { return this.get$_user_model$_$this()._user_model$_id; }, get$_user_model$_$this() { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { _this._firstName = $$v.firstName; _this._lastName = $$v.lastName; _this._user_model$_email = $$v.email; _this._user_model$_phone = $$v.phone; _this._password = $$v.password; _this._emailVerifiedAt = $$v.emailVerifiedAt; _this._user_model$_customValue1 = $$v.customValue1; _this._user_model$_customValue2 = $$v.customValue2; _this._user_model$_customValue3 = $$v.customValue3; _this._user_model$_customValue4 = $$v.customValue4; _this._isTwoFactorEnabled = $$v.isTwoFactorEnabled; _this._hasPassword = $$v.hasPassword; _this._lastEmailAddress = $$v.lastEmailAddress; _this._oauthUserToken = $$v.oauthUserToken; t1 = $$v.userCompany; if (t1 == null) t1 = null; else { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._company_model$_$v = t1; t1 = t2; } _this._userCompany = t1; _this._oauthProvider = $$v.oauthProvider; _this._user_model$_isChanged = $$v.isChanged; _this._user_model$_createdAt = $$v.createdAt; _this._user_model$_updatedAt = $$v.updatedAt; _this._user_model$_archivedAt = $$v.archivedAt; _this._user_model$_isDeleted = $$v.isDeleted; _this._user_model$_createdUserId = $$v.createdUserId; _this._user_model$_assignedUserId = $$v.assignedUserId; _this._user_model$_id = $$v.id; _this._user_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, exception, _this = this, _s10_ = "UserEntity", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$_user_model$_$this()._firstName; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "firstName")); t2 = _this.get$_user_model$_$this()._lastName; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "lastName")); t3 = _this.get$_user_model$_$this()._user_model$_email; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "email")); t4 = _this.get$_user_model$_$this()._user_model$_phone; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "phone")); t5 = _this.get$_user_model$_$this()._password; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "password")); t6 = _this.get$_user_model$_$this()._emailVerifiedAt; t7 = _this.get$_user_model$_$this()._user_model$_customValue1; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue1")); t8 = _this.get$_user_model$_$this()._user_model$_customValue2; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue2")); t9 = _this.get$_user_model$_$this()._user_model$_customValue3; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue3")); t10 = _this.get$_user_model$_$this()._user_model$_customValue4; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "customValue4")); t11 = _this.get$_user_model$_$this()._isTwoFactorEnabled; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "isTwoFactorEnabled")); t12 = _this.get$_user_model$_$this()._hasPassword; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "hasPassword")); t13 = _this.get$_user_model$_$this()._lastEmailAddress; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "lastEmailAddress")); t14 = _this.get$_user_model$_$this()._oauthUserToken; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "oauthUserToken")); t15 = _this._userCompany; t15 = t15 == null ? null : t15.build$0(0); t16 = _this.get$_user_model$_$this()._oauthProvider; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "oauthProvider")); t17 = _this.get$_user_model$_$this()._user_model$_isChanged; t18 = _this.get$_user_model$_$this()._user_model$_createdAt; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "createdAt")); t19 = _this.get$_user_model$_$this()._user_model$_updatedAt; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "updatedAt")); t20 = _this.get$_user_model$_$this()._user_model$_archivedAt; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "archivedAt")); t21 = _this.get$_user_model$_$this()._user_model$_isDeleted; t22 = _this.get$_user_model$_$this()._user_model$_createdUserId; t23 = _this.get$_user_model$_$this()._user_model$_assignedUserId; t24 = _this.get$_user_model$_$this()._user_model$_id; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s10_, "id")); _$result0 = A._$UserEntity$_(t20, t23, t18, t22, t7, t8, t9, t10, t3, t6, t1, t12, t24, t17, t21, t11, t13, t2, t16, t14, t5, t4, t19, t15); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "userCompany"; t1 = _this._userCompany; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s10_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_model$_$v = t1; return _$result; } }; A._UserEntity_Object_BaseEntity.prototype = {}; A._UserEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.VendorListResponse.prototype = {}; A.VendorItemResponse.prototype = {}; A.VendorEntity.prototype = { get$entityType() { return B.EntityType_vendor; }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction), t1 = !this.isDeleted; if (t1 && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (userCompany.can$2(B.UserPermission_create, B.EntityType_purchaseOrder)) actions.push(B.EntityAction_newPurchaseOrder); if (userCompany.can$2(B.UserPermission_create, B.EntityType_expense)) actions.push(B.EntityAction_newExpense); if (userCompany.can$2(B.UserPermission_create, B.EntityType_recurringExpense)) actions.push(B.EntityAction_newRecurringExpense); } if (t1 && multiselect) actions.push(B.EntityAction_documents); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, compareTo$5(_, vendor, sortField, sortAscending, userMap, staticState) { var response, t1, stateA, stateB, t2, userA, userB, currencyMap, _null = null, _s8_ = "archived", vendorA = sortAscending ? this : vendor, vendorB = sortAscending ? vendor : this; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(vendorA.name)), 0, _null).toLowerCase(), A.String_String$fromCharCodes(A.replaceCodeUnits(new A.CodeUnits(vendorB.name)), 0, _null).toLowerCase()); break; case "city": response = B.JSString_methods.compareTo$1(vendorA.city.toLowerCase(), vendorB.city.toLowerCase()); break; case "phone": response = B.JSString_methods.compareTo$1(vendorA.phone.toLowerCase(), vendorB.phone.toLowerCase()); break; case "entity_state": case "state": if (!vendorA.get$isArchived() && !vendorA.isDeleted) t1 = "active"; else t1 = vendorA.get$isArchived() ? _s8_ : "deleted"; stateA = A._$valueOf(t1); if (!vendorB.get$isArchived() && !vendorB.isDeleted) t1 = "active"; else t1 = vendorB.get$isArchived() ? _s8_ : "deleted"; stateB = A._$valueOf(t1); response = B.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "assigned_to": t1 = vendorA.assignedUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, vendorB.assignedUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = vendorA.createdUserId; t2 = userMap._map$_map; userA = t2.$index(0, t1); if (userA == null) userA = A.UserEntity_UserEntity(_null, _null, _null); userB = t2.$index(0, vendorB.createdUserId); if (userB == null) userB = A.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = B.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_at": response = B.JSInt_methods.compareTo$1(vendorA.createdAt, vendorB.createdAt); break; case "archived_at": response = B.JSInt_methods.compareTo$1(vendorA.archivedAt, vendorB.archivedAt); break; case "updated_at": response = B.JSInt_methods.compareTo$1(vendorA.updatedAt, vendorB.updatedAt); break; case "documents": response = B.JSInt_methods.compareTo$1(vendorA.documents._list.length, vendorB.documents._list.length); break; case "number": response = A.compareNatural(vendorA.number.toLowerCase(), vendorB.number.toLowerCase()); break; case "address1": response = B.JSString_methods.compareTo$1(vendorA.address1, vendorB.address1); break; case "address2": response = B.JSString_methods.compareTo$1(vendorA.address2, vendorB.address2); break; case "postal_code": response = B.JSString_methods.compareTo$1(vendorA.postalCode, vendorB.postalCode); break; case "country_id": response = B.JSString_methods.compareTo$1(vendorA.countryId, vendorB.countryId); break; case "private_notes": response = B.JSString_methods.compareTo$1(vendorA.privateNotes, vendorB.privateNotes); break; case "public_notes": response = B.JSString_methods.compareTo$1(vendorA.publicNotes, vendorB.publicNotes); break; case "website": response = B.JSString_methods.compareTo$1(vendorA.website, vendorB.website); break; case "vat_number": response = B.JSString_methods.compareTo$1(vendorA.vatNumber, vendorB.vatNumber); break; case "id_number": response = B.JSString_methods.compareTo$1(vendorA.idNumber, vendorB.idNumber); break; case "currency_id": currencyMap = staticState.currencyMap; t1 = vendorA.currencyId; t2 = currencyMap._map$_map; response = B.JSString_methods.compareTo$1(t2.$index(0, t1).name, t2.$index(0, vendorB.currencyId).name); break; case "custom1": response = B.JSString_methods.compareTo$1(vendorA.customValue1, vendorB.customValue1); break; case "custom2": response = B.JSString_methods.compareTo$1(vendorA.customValue2, vendorB.customValue2); break; case "custom3": response = B.JSString_methods.compareTo$1(vendorA.customValue3, vendorB.customValue3); break; case "custom4": response = B.JSString_methods.compareTo$1(vendorA.customValue4, vendorB.customValue4); break; default: A.print("## ERROR: sort by vendor." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? B.JSString_methods.compareTo$1(vendor.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesNameOrEmail$1(filter) { var t1, i, contact; if (A.matchesString(this.name, filter)) return true; for (t1 = this.contacts._list, i = 0; i < t1.length; ++i) { contact = t1[i]; if (A.matchesString(B.JSString_methods.trim$0(contact.firstName + " " + contact.lastName), filter)) return true; if (A.matchesString(contact.email, filter)) return true; } return false; }, matchesFilter$1(filter) { var t1, _this = this; for (t1 = _this.contacts._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) if (t1.__interceptors$_current.matchesFilter$1(filter)) return true; return A.matchesStrings(A._setArrayType([_this.name, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.address2, _this.city, _this.state, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { var t1, value, _this = this; for (t1 = _this.contacts._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { value = t1.__interceptors$_current.matchesFilterValue$1(filter); if (value != null) return value; } return A.matchesStringsValue(A._setArrayType([_this.name, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.address2, _this.city, _this.state, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName() { return this.name; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, get$emailContacts() { var t1 = this.contacts._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), list = A.List_List$of(new A.WhereIterable(t1, new A.VendorEntity_emailContacts_closure(), t2), true, t2._eval$1("Iterable.E")); return list.length === 0 ? A._setArrayType([this.get$primaryContact()], type$.JSArray_legacy_VendorContactEntity) : list; }, get$primaryContact() { return B.JSArray_methods.firstWhere$2$orElse(this.contacts._list, new A.VendorEntity_primaryContact_closure(), new A.VendorEntity_primaryContact_closure0()); }, get$hasEmailAddress() { var t1 = this.contacts._list; t1 = new A.WhereIterable(t1, new A.VendorEntity_hasEmailAddress_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); return !t1.get$isEmpty(t1); }, getContact$1(contactId) { return B.JSArray_methods.firstWhere$2$orElse(this.contacts._list, new A.VendorEntity_getContact_closure(contactId), new A.VendorEntity_getContact_closure0()); } }; A.VendorEntity_VendorEntity_closure.prototype = { call$1(b) { b.get$_vendor_model$_$this()._isPrimary = true; return b; }, $signature: 804 }; A.VendorEntity_emailContacts_closure.prototype = { call$1(contact) { return true; }, $signature: 194 }; A.VendorEntity_primaryContact_closure.prototype = { call$1(contact) { return contact.isPrimary; }, $signature: 194 }; A.VendorEntity_primaryContact_closure0.prototype = { call$0() { return A.VendorContactEntity_VendorContactEntity(); }, $signature: 806 }; A.VendorEntity_hasEmailAddress_closure.prototype = { call$1(contact) { var t1 = contact.email; return t1.length !== 0; }, $signature: 194 }; A.VendorEntity_getContact_closure.prototype = { call$1(contact) { return contact.id === this.contactId; }, $signature: 194 }; A.VendorEntity_getContact_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.VendorContactEntity.prototype = { get$entityType() { return B.EntityType_vendorContact; }, get$fullName() { return B.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, get$fullNameOrEmail() { if (this.get$fullName().length !== 0) return this.get$fullName(); else return this.email; }, matchesFilter$1(filter) { if (filter == null || filter.length === 0) return true; return false; }, matchesFilterValue$1(filter) { var t1, _this = this; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); if (B.JSString_methods.contains$1(_this.get$fullName().toLowerCase(), filter)) return _this.get$fullName(); else { t1 = _this.email; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = _this.phone; if (B.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } } return null; }, get$listDisplayName() { return ""; }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return B.FormatNumberType_0; }, $isSelectableEntity: 1 }; A._$VendorListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_Pss)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.VendorListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_VendorEntity, t3 = type$.ListBuilder_legacy_VendorEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._vendor_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._vendor_model$_data = t6; result._vendor_model$_$v = null; } t4 = result._vendor_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._vendor_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Pss)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_MQk; }, get$wireName() { return "VendorListResponse"; } }; A._$VendorItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_efs)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, t8, result = new A.VendorItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_VendorEntity, t2 = type$.legacy_ActivityEntity, t3 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._vendor_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new A.VendorEntityBuilder(); t6 = t5.get$_vendor_model$_$this(); t7 = t6._vendor_model$_activities; if (t7 == null) { t7 = new A.ListBuilder(t3); t7.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t6._vendor_model$_activities = t7; t6 = t7; } else t6 = t7; t7 = A.BuiltList_BuiltList$from(B.List_empty, t2); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = A.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } t5._vendor_model$_$v = t4; result._vendor_model$_data = t5; result._vendor_model$_$v = null; } t4 = result._vendor_model$_data; if (t4 == null) { t4 = new A.VendorEntityBuilder(); t5 = t4.get$_vendor_model$_$this(); t6 = t5._vendor_model$_activities; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._vendor_model$_activities = t6; t5 = t6; } else t5 = t6; t6 = A.BuiltList_BuiltList$from(B.List_empty, t2); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } result._vendor_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_efs)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull("other")); t4._vendor_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uae; }, get$wireName() { return "VendorItemResponse"; } }; A._$VendorEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["name", serializers.serialize$2$specifiedType(object.name, B.FullType_h8g), "address1", serializers.serialize$2$specifiedType(object.address1, B.FullType_h8g), "address2", serializers.serialize$2$specifiedType(object.address2, B.FullType_h8g), "city", serializers.serialize$2$specifiedType(object.city, B.FullType_h8g), "state", serializers.serialize$2$specifiedType(object.state, B.FullType_h8g), "postal_code", serializers.serialize$2$specifiedType(object.postalCode, B.FullType_h8g), "country_id", serializers.serialize$2$specifiedType(object.countryId, B.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, B.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, B.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, B.FullType_h8g), "website", serializers.serialize$2$specifiedType(object.website, B.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, B.FullType_h8g), "vat_number", serializers.serialize$2$specifiedType(object.vatNumber, B.FullType_h8g), "id_number", serializers.serialize$2$specifiedType(object.idNumber, B.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, B.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, B.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, B.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, B.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, B.FullType_h8g), "contacts", serializers.serialize$2$specifiedType(object.contacts, B.FullType_MO9), "activities", serializers.serialize$2$specifiedType(object.activities, B.FullType_QWw), "documents", serializers.serialize$2$specifiedType(object.documents, B.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, key, value, t8, t9, t10, result = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity, t4 = type$.legacy_ActivityEntity, t5 = type$.ListBuilder_legacy_ActivityEntity, t6 = type$.legacy_VendorContactEntity, t7 = type$.ListBuilder_legacy_VendorContactEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_name = t8; break; case "address1": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_address1 = t8; break; case "address2": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_address2 = t8; break; case "city": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_city = t8; break; case "state": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_state = t8; break; case "postal_code": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_postalCode = t8; break; case "country_id": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_countryId = t8; break; case "phone": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_phone = t8; break; case "private_notes": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_privateNotes = t8; break; case "public_notes": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_publicNotes = t8; break; case "website": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_website = t8; break; case "number": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_number = t8; break; case "vat_number": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_vatNumber = t8; break; case "id_number": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_idNumber = t8; break; case "currency_id": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_currencyId = t8; break; case "custom_value1": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue1 = t8; break; case "custom_value2": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue2 = t8; break; case "custom_value3": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue3 = t8; break; case "custom_value4": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue4 = t8; break; case "contacts": t8 = result.get$_vendor_model$_$this(); t9 = t8._vendor_model$_contacts; if (t9 == null) { t9 = new A.ListBuilder(t7); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t6); t8._vendor_model$_contacts = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_MO9)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "activities": t8 = result.get$_vendor_model$_$this(); t9 = t8._vendor_model$_activities; if (t9 == null) { t9 = new A.ListBuilder(t5); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t4); t8._vendor_model$_activities = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_QWw)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "documents": t8 = result.get$_vendor_model$_$this(); t9 = t8._vendor_model$_documents; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._vendor_model$_documents = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_EBZ)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "isChanged": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isChanged = t8; break; case "created_at": t8 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_createdAt = t8; break; case "updated_at": t8 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_updatedAt = t8; break; case "archived_at": t8 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_archivedAt = t8; break; case "is_deleted": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isDeleted = t8; break; case "user_id": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_createdUserId = t8; break; case "assigned_user_id": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t8; break; case "id": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_id = t8; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uUY0; }, get$wireName() { return "VendorEntity"; } }; A._$VendorContactEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["first_name", serializers.serialize$2$specifiedType(object.firstName, B.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, B.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, B.FullType_h8g), "is_primary", serializers.serialize$2$specifiedType(object.isPrimary, B.FullType_MtR), "phone", serializers.serialize$2$specifiedType(object.phone, B.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, result = new A.VendorContactEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_firstName = t1; break; case "last_name": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_lastName = t1; break; case "email": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_email = t1; break; case "is_primary": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_model$_$this()._isPrimary = t1; break; case "phone": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_phone = t1; break; case "isChanged": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isChanged = t1; break; case "created_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_createdAt = t1; break; case "updated_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_updatedAt = t1; break; case "archived_at": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_archivedAt = t1; break; case "is_deleted": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isDeleted = t1; break; case "user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_createdUserId = t1; break; case "assigned_user_id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t1; break; case "id": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_yjH; }, get$wireName() { return "VendorContactEntity"; } }; A._$VendorListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.VendorListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._vendor_model$__hashCode; return t1 == null ? this._vendor_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.VendorListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._vendor_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._vendor_model$_$v = null; } t1 = _this._vendor_model$_data; return t1 == null ? _this._vendor_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "VendorListResponse", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$VendorListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._vendor_model$_$v = t1; return _$result; } }; A._$VendorItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.VendorItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._vendor_model$__hashCode; return t1 == null ? this._vendor_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.VendorItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._vendor_model$_$v = t1; _this._vendor_model$_data = t2; _this._vendor_model$_$v = null; } t1 = _this._vendor_model$_data; if (t1 == null) { t1 = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(t1); _this._vendor_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "VendorItemResponse", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$VendorItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._vendor_model$_$v = t1; return _$result; } }; A._$VendorEntity.prototype = { rebuild$1(updates) { var t1 = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._vendor_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.VendorEntity && _this.name === other.name && _this.address1 === other.address1 && _this.address2 === other.address2 && _this.city === other.city && _this.state === other.state && _this.postalCode === other.postalCode && _this.countryId === other.countryId && _this.phone === other.phone && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.website === other.website && _this.number === other.number && _this.vatNumber === other.vatNumber && _this.idNumber === other.idNumber && _this.currencyId === other.currencyId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && J.$eq$(_this.contacts, other.contacts) && J.$eq$(_this.activities, other.activities) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._vendor_model$__hashCode; return t1 == null ? _this._vendor_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.name)), B.JSString_methods.get$hashCode(_this.address1)), B.JSString_methods.get$hashCode(_this.address2)), B.JSString_methods.get$hashCode(_this.city)), B.JSString_methods.get$hashCode(_this.state)), B.JSString_methods.get$hashCode(_this.postalCode)), B.JSString_methods.get$hashCode(_this.countryId)), B.JSString_methods.get$hashCode(_this.phone)), B.JSString_methods.get$hashCode(_this.privateNotes)), B.JSString_methods.get$hashCode(_this.publicNotes)), B.JSString_methods.get$hashCode(_this.website)), B.JSString_methods.get$hashCode(_this.number)), B.JSString_methods.get$hashCode(_this.vatNumber)), B.JSString_methods.get$hashCode(_this.idNumber)), B.JSString_methods.get$hashCode(_this.currencyId)), B.JSString_methods.get$hashCode(_this.customValue1)), B.JSString_methods.get$hashCode(_this.customValue2)), B.JSString_methods.get$hashCode(_this.customValue3)), B.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.contacts)), J.get$hashCode$(_this.activities)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "contacts", _this.contacts); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name(receiver) { return this.name; }, get$address1() { return this.address1; }, get$address2() { return this.address2; }, get$city(receiver) { return this.city; }, get$state(receiver) { return this.state; }, get$postalCode(receiver) { return this.postalCode; }, get$countryId() { return this.countryId; }, get$activities() { return this.activities; }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.VendorEntityBuilder.prototype = { get$name(_) { return this.get$_vendor_model$_$this()._vendor_model$_name; }, get$contacts() { var t1 = this.get$_vendor_model$_$this(), t2 = t1._vendor_model$_contacts; return t2 == null ? t1._vendor_model$_contacts = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_VendorContactEntity) : t2; }, get$activities() { var t1 = this.get$_vendor_model$_$this(), t2 = t1._vendor_model$_activities; return t2 == null ? t1._vendor_model$_activities = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_ActivityEntity) : t2; }, get$documents() { var t1 = this.get$_vendor_model$_$this(), t2 = t1._vendor_model$_documents; return t2 == null ? t1._vendor_model$_documents = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id(_) { return this.get$_vendor_model$_$this()._vendor_model$_id; }, get$_vendor_model$_$this() { var t1, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { _this._vendor_model$_name = $$v.name; _this._vendor_model$_address1 = $$v.address1; _this._vendor_model$_address2 = $$v.address2; _this._vendor_model$_city = $$v.city; _this._vendor_model$_state = $$v.state; _this._vendor_model$_postalCode = $$v.postalCode; _this._vendor_model$_countryId = $$v.countryId; _this._vendor_model$_phone = $$v.phone; _this._vendor_model$_privateNotes = $$v.privateNotes; _this._vendor_model$_publicNotes = $$v.publicNotes; _this._vendor_model$_website = $$v.website; _this._vendor_model$_number = $$v.number; _this._vendor_model$_vatNumber = $$v.vatNumber; _this._vendor_model$_idNumber = $$v.idNumber; _this._vendor_model$_currencyId = $$v.currencyId; _this._vendor_model$_customValue1 = $$v.customValue1; _this._vendor_model$_customValue2 = $$v.customValue2; _this._vendor_model$_customValue3 = $$v.customValue3; _this._vendor_model$_customValue4 = $$v.customValue4; t1 = $$v.contacts; t1.toString; _this._vendor_model$_contacts = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._vendor_model$_activities = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.documents; t1.toString; _this._vendor_model$_documents = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._vendor_model$_isChanged = $$v.isChanged; _this._vendor_model$_createdAt = $$v.createdAt; _this._vendor_model$_updatedAt = $$v.updatedAt; _this._vendor_model$_archivedAt = $$v.archivedAt; _this._vendor_model$_isDeleted = $$v.isDeleted; _this._vendor_model$_createdUserId = $$v.createdUserId; _this._vendor_model$_assignedUserId = $$v.assignedUserId; _this._vendor_model$_id = $$v.id; _this._vendor_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, exception, _this = this, _s12_ = "VendorEntity", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$_vendor_model$_$this()._vendor_model$_name; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "name")); t2 = _this.get$_vendor_model$_$this()._vendor_model$_address1; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "address1")); t3 = _this.get$_vendor_model$_$this()._vendor_model$_address2; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "address2")); t4 = _this.get$_vendor_model$_$this()._vendor_model$_city; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "city")); t5 = _this.get$_vendor_model$_$this()._vendor_model$_state; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "state")); t6 = _this.get$_vendor_model$_$this()._vendor_model$_postalCode; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "postalCode")); t7 = _this.get$_vendor_model$_$this()._vendor_model$_countryId; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "countryId")); t8 = _this.get$_vendor_model$_$this()._vendor_model$_phone; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "phone")); t9 = _this.get$_vendor_model$_$this()._vendor_model$_privateNotes; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "privateNotes")); t10 = _this.get$_vendor_model$_$this()._vendor_model$_publicNotes; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "publicNotes")); t11 = _this.get$_vendor_model$_$this()._vendor_model$_website; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "website")); t12 = _this.get$_vendor_model$_$this()._vendor_model$_number; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "number")); t13 = _this.get$_vendor_model$_$this()._vendor_model$_vatNumber; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "vatNumber")); t14 = _this.get$_vendor_model$_$this()._vendor_model$_idNumber; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "idNumber")); t15 = _this.get$_vendor_model$_$this()._vendor_model$_currencyId; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "currencyId")); t16 = _this.get$_vendor_model$_$this()._vendor_model$_customValue1; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue1")); t17 = _this.get$_vendor_model$_$this()._vendor_model$_customValue2; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue2")); t18 = _this.get$_vendor_model$_$this()._vendor_model$_customValue3; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue3")); t19 = _this.get$_vendor_model$_$this()._vendor_model$_customValue4; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "customValue4")); t20 = _this.get$contacts().build$0(0); t21 = _this.get$activities().build$0(0); t22 = _this.get$documents().build$0(0); t23 = _this.get$_vendor_model$_$this()._vendor_model$_isChanged; t24 = _this.get$_vendor_model$_$this()._vendor_model$_createdAt; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "createdAt")); t25 = _this.get$_vendor_model$_$this()._vendor_model$_updatedAt; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "updatedAt")); t26 = _this.get$_vendor_model$_$this()._vendor_model$_archivedAt; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "archivedAt")); t27 = _this.get$_vendor_model$_$this()._vendor_model$_isDeleted; t28 = _this.get$_vendor_model$_$this()._vendor_model$_createdUserId; t29 = _this.get$_vendor_model$_$this()._vendor_model$_assignedUserId; t30 = _this.get$_vendor_model$_$this()._vendor_model$_id; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = A._$VendorEntity$_(t21, t2, t3, t26, t29, t4, t20, t7, t24, t28, t15, t16, t17, t18, t19, t22, t30, t14, t23, t27, t1, t12, t8, t6, t9, t10, t5, t25, t13, t11); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "contacts"; _this.get$contacts().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._vendor_model$_$v = t1; return _$result; } }; A._$VendorContactEntity.prototype = { rebuild$1(updates) { var t1 = new A.VendorContactEntityBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._vendor_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.VendorContactEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.isPrimary === other.isPrimary && _this.phone === other.phone && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._vendor_model$__hashCode; return t1 == null ? _this._vendor_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.firstName)), B.JSString_methods.get$hashCode(_this.lastName)), B.JSString_methods.get$hashCode(_this.email)), B.JSBool_methods.get$hashCode(_this.isPrimary)), B.JSString_methods.get$hashCode(_this.phone)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorContactEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "isPrimary", _this.isPrimary); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.VendorContactEntityBuilder.prototype = { get$id(_) { return this.get$_vendor_model$_$this()._vendor_model$_id; }, get$_vendor_model$_$this() { var _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { _this._vendor_model$_firstName = $$v.firstName; _this._vendor_model$_lastName = $$v.lastName; _this._vendor_model$_email = $$v.email; _this._isPrimary = $$v.isPrimary; _this._vendor_model$_phone = $$v.phone; _this._vendor_model$_isChanged = $$v.isChanged; _this._vendor_model$_createdAt = $$v.createdAt; _this._vendor_model$_updatedAt = $$v.updatedAt; _this._vendor_model$_archivedAt = $$v.archivedAt; _this._vendor_model$_isDeleted = $$v.isDeleted; _this._vendor_model$_createdUserId = $$v.createdUserId; _this._vendor_model$_assignedUserId = $$v.assignedUserId; _this._vendor_model$_id = $$v.id; _this._vendor_model$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _s19_ = "VendorContactEntity", _$result = _this._vendor_model$_$v; if (_$result == null) { t1 = _this.get$_vendor_model$_$this()._vendor_model$_firstName; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "firstName")); t2 = _this.get$_vendor_model$_$this()._vendor_model$_lastName; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "lastName")); t3 = _this.get$_vendor_model$_$this()._vendor_model$_email; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "email")); t4 = _this.get$_vendor_model$_$this()._isPrimary; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "isPrimary")); t5 = _this.get$_vendor_model$_$this()._vendor_model$_phone; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "phone")); t6 = _this.get$_vendor_model$_$this()._vendor_model$_isChanged; t7 = _this.get$_vendor_model$_$this()._vendor_model$_createdAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "createdAt")); t8 = _this.get$_vendor_model$_$this()._vendor_model$_updatedAt; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "updatedAt")); t9 = _this.get$_vendor_model$_$this()._vendor_model$_archivedAt; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "archivedAt")); t10 = _this.get$_vendor_model$_$this()._vendor_model$_isDeleted; t11 = _this.get$_vendor_model$_$this()._vendor_model$_createdUserId; t12 = _this.get$_vendor_model$_$this()._vendor_model$_assignedUserId; t13 = _this.get$_vendor_model$_$this()._vendor_model$_id; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "id")); _$result = A._$VendorContactEntity$_(t9, t12, t7, t11, t3, t1, t13, t6, t10, t4, t2, t5, t8); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._vendor_model$_$v = _$result; } }; A._VendorContactEntity_Object_BaseEntity.prototype = {}; A._VendorEntity_Object_BaseEntity.prototype = {}; A._VendorEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities.prototype = {}; A.WebhookListResponse.prototype = {}; A.WebhookItemResponse.prototype = {}; A.WebhookEntity.prototype = { get$entityType() { return B.EntityType_webhook; }, get$listDisplayName() { return this.targetUrl; }, matchesFilter$1(filter) { return A.matchesStrings(A._setArrayType([this.targetUrl], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1(filter) { return A.matchesStringsValue(A._setArrayType([this.targetUrl], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, multiselect, userCompany) { var actions = A._setArrayType([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(B.EntityAction_edit); if (actions.length !== 0 && B.JSArray_methods.get$last(actions) != null) actions.push(null); B.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$multiselect$userCompany(multiselect, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, multiselect, userCompany); }, getActions$2$client$userCompany(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$2$includeEdit$userCompany(includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, includeEdit, false, userCompany); }, get$listDisplayAmount() { return null; }, get$listDisplayAmountType() { return null; } }; A._$WebhookListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_46c)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.WebhookListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_WebhookEntity, t3 = type$.ListBuilder_legacy_WebhookEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._webhook_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._webhook_model$_data = t6; result._webhook_model$_$v = null; } t4 = result._webhook_model$_data; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._webhook_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_46c)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_XRi; }, get$wireName() { return "WebhookListResponse"; } }; A._$WebhookItemResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["data", serializers.serialize$2$specifiedType(object.data, B.FullType_iL9)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, _null = null, result = new A.WebhookItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_WebhookEntity, t2 = type$.legacy_String, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._webhook_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new A.WebhookEntityBuilder(); t6 = t5.get$_webhook_model$_$this(); t7 = t6._headers; if (t7 == null) { t7 = new A.MapBuilder(_null, $, _null, t3); t7.replace$1(0, B.Map_empty0); t6._headers = t7; t6 = t7; } else t6 = t7; t6.replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2)); t5.get$_webhook_model$_$this()._restMethod = ""; t5._webhook_model$_$v = t4; result._webhook_model$_data = t5; result._webhook_model$_$v = null; } t4 = result._webhook_model$_data; if (t4 == null) { t4 = new A.WebhookEntityBuilder(); t5 = t4.get$_webhook_model$_$this(); t6 = t5._headers; if (t6 == null) { t6 = new A.MapBuilder(_null, $, _null, t3); t6.replace$1(0, B.Map_empty0); t5._headers = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2)); t4.get$_webhook_model$_$this()._restMethod = ""; result._webhook_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_iL9)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull("other")); t4._webhook_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_IMQ; }, get$wireName() { return "WebhookItemResponse"; } }; A._$WebhookEntitySerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["event_id", serializers.serialize$2$specifiedType(object.eventId, B.FullType_h8g), "target_url", serializers.serialize$2$specifiedType(object.targetUrl, B.FullType_h8g), "format", serializers.serialize$2$specifiedType(object.format, B.FullType_h8g), "rest_method", serializers.serialize$2$specifiedType(object.restMethod, B.FullType_h8g), "headers", serializers.serialize$2$specifiedType(object.headers, B.FullType_LNO), "created_at", serializers.serialize$2$specifiedType(object.createdAt, B.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, B.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, B.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "event_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._eventId = t2; break; case "target_url": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._targetUrl = t2; break; case "format": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._format = t2; break; case "rest_method": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._restMethod = t2; break; case "headers": t2 = result.get$_webhook_model$_$this(); t3 = t2._headers; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._headers = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "isChanged": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_webhook_model$_$this()._webhook_model$_isChanged = t2; break; case "created_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_createdAt = t2; break; case "updated_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_updatedAt = t2; break; case "archived_at": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_archivedAt = t2; break; case "is_deleted": t2 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_webhook_model$_$this()._webhook_model$_isDeleted = t2; break; case "user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_createdUserId = t2; break; case "assigned_user_id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_assignedUserId = t2; break; case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_VOT; }, get$wireName() { return "WebhookEntity"; } }; A._$WebhookListResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.WebhookListResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._webhook_model$__hashCode; return t1 == null ? this._webhook_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.WebhookListResponseBuilder.prototype = { get$data(_) { var t1, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._webhook_model$_data = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._webhook_model$_$v = null; } t1 = _this._webhook_model$_data; return t1 == null ? _this._webhook_model$_data = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_WebhookEntity) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "WebhookListResponse", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$WebhookListResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._webhook_model$_$v = t1; return _$result; } }; A._$WebhookItemResponse.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.WebhookItemResponse && J.$eq$(this.data, other.data); }, get$hashCode(_) { var t1 = this._webhook_model$__hashCode; return t1 == null ? this._webhook_model$__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.WebhookItemResponseBuilder.prototype = { get$data(_) { var t1, t2, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._webhook_model$_$v = t1; _this._webhook_model$_data = t2; _this._webhook_model$_$v = null; } t1 = _this._webhook_model$_data; if (t1 == null) { t1 = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(t1); _this._webhook_model$_data = t1; } return t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "WebhookItemResponse", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$WebhookItemResponse(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._webhook_model$_$v = t1; return _$result; } }; A._$WebhookEntity.prototype = { rebuild$1(updates) { var t1 = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._webhook_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.WebhookEntity && _this.eventId === other.eventId && _this.targetUrl === other.targetUrl && _this.format === other.format && _this.restMethod === other.restMethod && J.$eq$(_this.headers, other.headers) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode(_) { var _this = this, t1 = _this._webhook_model$__hashCode; return t1 == null ? _this._webhook_model$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.eventId)), B.JSString_methods.get$hashCode(_this.targetUrl)), B.JSString_methods.get$hashCode(_this.format)), B.JSString_methods.get$hashCode(_this.restMethod)), J.get$hashCode$(_this.headers)), J.get$hashCode$(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.createdAt)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), B.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "eventId", _this.eventId); t2.add$2(t1, "targetUrl", _this.targetUrl); t2.add$2(t1, "format", _this.format); t2.add$2(t1, "restMethod", _this.restMethod); t2.add$2(t1, "headers", _this.headers); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt() { return this.createdAt; }, get$updatedAt() { return this.updatedAt; }, get$archivedAt() { return this.archivedAt; }, get$isDeleted(receiver) { return this.isDeleted; }, get$createdUserId() { return this.createdUserId; }, get$assignedUserId() { return this.assignedUserId; }, get$id(receiver) { return this.id; } }; A.WebhookEntityBuilder.prototype = { get$headers(_) { var t1 = this.get$_webhook_model$_$this(), t2 = t1._headers; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._headers = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$id(_) { return this.get$_webhook_model$_$this()._webhook_model$_id; }, get$_webhook_model$_$this() { var t1, t2, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { _this._eventId = $$v.eventId; _this._targetUrl = $$v.targetUrl; _this._format = $$v.format; _this._restMethod = $$v.restMethod; t1 = $$v.headers; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._headers = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._webhook_model$_isChanged = $$v.isChanged; _this._webhook_model$_createdAt = $$v.createdAt; _this._webhook_model$_updatedAt = $$v.updatedAt; _this._webhook_model$_archivedAt = $$v.archivedAt; _this._webhook_model$_isDeleted = $$v.isDeleted; _this._webhook_model$_createdUserId = $$v.createdUserId; _this._webhook_model$_assignedUserId = $$v.assignedUserId; _this._webhook_model$_id = $$v.id; _this._webhook_model$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, exception, _this = this, _s13_ = "WebhookEntity", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$_webhook_model$_$this()._eventId; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "eventId")); t2 = _this.get$_webhook_model$_$this()._targetUrl; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "targetUrl")); t3 = _this.get$_webhook_model$_$this()._format; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "format")); t4 = _this.get$_webhook_model$_$this()._restMethod; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "restMethod")); t5 = _this.get$headers(_this).build$0(0); t6 = _this.get$_webhook_model$_$this()._webhook_model$_isChanged; t7 = _this.get$_webhook_model$_$this()._webhook_model$_createdAt; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "createdAt")); t8 = _this.get$_webhook_model$_$this()._webhook_model$_updatedAt; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "updatedAt")); t9 = _this.get$_webhook_model$_$this()._webhook_model$_archivedAt; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "archivedAt")); t10 = _this.get$_webhook_model$_$this()._webhook_model$_isDeleted; t11 = _this.get$_webhook_model$_$this()._webhook_model$_createdUserId; t12 = _this.get$_webhook_model$_$this()._webhook_model$_assignedUserId; t13 = _this.get$_webhook_model$_$this()._webhook_model$_id; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$WebhookEntity$_(t9, t12, t7, t11, t1, t3, t5, t13, t6, t10, t4, t2, t8); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "headers"; _this.get$headers(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._webhook_model$_$v = t1; return _$result; } }; A._WebhookEntity_Object_BaseEntity.prototype = {}; A._WebhookEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.AuthRepository.prototype = { signUp$3$email$password$referralCode(email, password, referralCode) { return this.signUp$body$AuthRepository(email, password, referralCode); }, signUp$body$AuthRepository(email, password, referralCode) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, credentials; var $async$signUp$3$email$password$referralCode = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start credentials = A.LinkedHashMap_LinkedHashMap$_literal(["email", email, "password", password, "terms_of_service", true, "privacy_policy", true, "token_name", "web_client", "platform", A.getPlatformName()], type$.legacy_String, type$.legacy_Object); $async$returnValue = $async$self.sendRequest$3$data$secret$url(credentials, null, A.formatApiUrl("https://invoicing.co") + ("/signup?rc=" + referralCode)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$signUp$3$email$password$referralCode, $async$completer); }, oauthSignUp$5$accessToken$idToken$provider$referralCode$url(accessToken, idToken, provider, referralCode, url) { return this.oauthSignUp$body$AuthRepository(accessToken, idToken, provider, referralCode, url); }, oauthSignUp$body$AuthRepository(accessToken, idToken, provider, referralCode, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this; var $async$oauthSignUp$5$accessToken$idToken$provider$referralCode$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.sendRequest$3$data$secret$url(A.LinkedHashMap_LinkedHashMap$_literal(["terms_of_service", true, "privacy_policy", true, "token_name", "web_client", "id_token", idToken, "access_token", accessToken, "provider", provider, "platform", A.getPlatformName()], type$.legacy_String, type$.legacy_Object), "", A.formatApiUrl(url) + ("/oauth_login?create=true&rc=" + referralCode)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$oauthSignUp$5$accessToken$idToken$provider$referralCode$url, $async$completer); }, login$6$email$oneTimePassword$password$platform$secret$url(email, oneTimePassword, password, platform, secret, url) { return this.login$body$AuthRepository(email, oneTimePassword, password, platform, secret, url); }, login$body$AuthRepository(email, oneTimePassword, password, platform, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$login$6$email$oneTimePassword$password$platform$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$3$data$secret$url(A.LinkedHashMap_LinkedHashMap$_literal(["email", email, "password", password, "one_time_password", oneTimePassword], t1, t1), secret, A.formatApiUrl(url) + "/login"); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$login$6$email$oneTimePassword$password$platform$secret$url, $async$completer); }, logout$1$credentials(credentials) { return this.logout$body$AuthRepository(credentials); }, logout$body$AuthRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$logout$1$credentials = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = B.C_WebClient.post$2(credentials.url + "/logout", credentials.token); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$logout$1$credentials, $async$completer); }, oauthLogin$8$accessToken$authCode$email$idToken$platform$provider$secret$url(accessToken, authCode, email, idToken, platform, provider, secret, url) { return this.oauthLogin$body$AuthRepository(accessToken, authCode, email, idToken, platform, provider, secret, url); }, oauthLogin$body$AuthRepository(accessToken, authCode, email, idToken, platform, provider, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$oauthLogin$8$accessToken$authCode$email$idToken$platform$provider$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$3$data$secret$url(A.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "provider", provider, "access_token", accessToken, "email", email, "auth_code", authCode], t1, t1), secret, A.formatApiUrl(url) + "/oauth_login"); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$oauthLogin$8$accessToken$authCode$email$idToken$platform$provider$secret$url, $async$completer); }, refresh$5$currentCompany$includeStatic$token$updatedAt$url(_, currentCompany, includeStatic, token, updatedAt, url) { return this.refresh$body$AuthRepository(0, currentCompany, includeStatic, token, updatedAt, url); }, refresh$body$AuthRepository(_, currentCompany, includeStatic, token, updatedAt, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this; var $async$refresh$5$currentCompany$includeStatic$token$updatedAt$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = A.formatApiUrl(url) + "/refresh?"; if (currentCompany) url += "current_company=true"; if (updatedAt > 0) { url += "&updated_at=" + updatedAt; includeStatic = includeStatic || Date.now() - updatedAt * 1000 > 86400000; } else includeStatic = true; $async$returnValue = $async$self.sendRequest$3$includeStatic$token$url(includeStatic, token, url); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$refresh$5$currentCompany$includeStatic$token$updatedAt$url, $async$completer); }, recoverPassword$3$email$secret$url(email, secret, url) { return this.recoverPassword$body$AuthRepository(email, secret, url); }, recoverPassword$body$AuthRepository(email, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$recoverPassword$3$email$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$2$data$url(A.LinkedHashMap_LinkedHashMap$_literal(["email", email], t1, t1), A.formatApiUrl(url) + "/reset_password"); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$recoverPassword$3$email$secret$url, $async$completer); }, setDefaultCompany$2$companyId$credentials(companyId, credentials) { return this.setDefaultCompany$body$AuthRepository(companyId, credentials); }, setDefaultCompany$body$AuthRepository(companyId, credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue; var $async$setDefaultCompany$2$companyId$credentials = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = B.C_WebClient.post$2(credentials.url + "/companies/" + companyId + "/default", credentials.token); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$setDefaultCompany$2$companyId$credentials, $async$completer); }, addCompany$1$credentials(credentials) { return this.addCompany$body$AuthRepository(credentials); }, addCompany$body$AuthRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, t1; var $async$addCompany$1$credentials = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = B.C_WebClient.post$3$data(credentials.url + "/companies", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["token_name", "web_client"], t1, t1))); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$addCompany$1$credentials, $async$completer); }, deleteCompany$4$companyId$credentials$password$reason(companyId, credentials, password, reason) { return this.deleteCompany$body$AuthRepository(companyId, credentials, password, reason); }, deleteCompany$body$AuthRepository(companyId, credentials, password, reason) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, t1; var $async$deleteCompany$4$companyId$credentials$password$reason = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = B.C_WebClient.delete$4$data$password(0, credentials.url + "/companies/" + companyId, credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["cancellation_message", reason], t1, t1)), password); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$deleteCompany$4$companyId$credentials$password$reason, $async$completer); }, purgeData$4$companyId$credentials$idToken$password(companyId, credentials, idToken, password) { return this.purgeData$body$AuthRepository(companyId, credentials, idToken, password); }, purgeData$body$AuthRepository(companyId, credentials, idToken, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$purgeData$4$companyId$credentials$idToken$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = B.C_WebClient.post$4$idToken$password(credentials.url + "/companies/purge_save_settings/" + companyId, credentials.token, idToken, password); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$purgeData$4$companyId$credentials$idToken$password, $async$completer); }, resendConfirmation$2$credentials$userId(credentials, userId) { return this.resendConfirmation$body$AuthRepository(credentials, userId); }, resendConfirmation$body$AuthRepository(credentials, userId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$resendConfirmation$2$credentials$userId = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = B.C_WebClient.post$2(credentials.url + "/user/" + userId + "/reconfirm", credentials.token); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$resendConfirmation$2$credentials$userId, $async$completer); }, sendRequest$5$data$includeStatic$secret$token$url(data, includeStatic, secret, token, url) { return this.sendRequest$body$AuthRepository(data, includeStatic, secret, token, url); }, sendRequest$2$data$url(data, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(data, true, null, null, url); }, sendRequest$3$includeStatic$token$url(includeStatic, token, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(null, includeStatic, null, token, url); }, sendRequest$3$data$secret$url(data, secret, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(data, true, secret, null, url); }, sendRequest$body$AuthRepository(data, includeStatic, secret, token, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, t1, response; var $async$sendRequest$5$data$includeStatic$secret$token$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = (B.JSString_methods.contains$1(url, "?") ? url + "&" : url + "?") + "first_load=true"; if (includeStatic) url += "&include_static=true"; t1 = token == null ? "" : token; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$secret(url, t1, B.C_JsonCodec.encode$1(data), secret), $async$sendRequest$5$data$includeStatic$secret$token$url); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$loginResponseSerializer(), response], t1, t1), $async$sendRequest$5$data$includeStatic$secret$token$url); case 4: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$sendRequest$5$data$includeStatic$secret$token$url, $async$completer); } }; A.ClientRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$ClientRepository(credentials, entityId); }, loadItem$body$ClientRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/clients/" + entityId + string$.x3finclug, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$clientItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, page, recordsPerPage) { return this.loadList$body$ClientRepository(credentials, page, recordsPerPage); }, loadList$body$ClientRepository(credentials, page, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ClientEntity), $async$returnValue, response, t1; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + ("/clients?per_page=" + recordsPerPage + "&page=" + page), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$clientListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ClientRepository(credentials, ids, action); }, bulkAction$body$ClientRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ClientEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/clients/bulk?per_page=100&include=gateway_tokens,activities,ledger,system_logs,documents", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$clientListResponseSerializer(), response, type$.legacy_ClientListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, purge$4$clientId$credentials$idToken$password(clientId, credentials, idToken, password) { return this.purge$body$ClientRepository(clientId, credentials, idToken, password); }, purge$body$ClientRepository(clientId, credentials, idToken, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$purge$4$clientId$credentials$idToken$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$idToken$password(credentials.url + ("/clients/" + clientId + "/purge"), credentials.token, idToken, password), $async$purge$4$clientId$credentials$idToken$password); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$purge$4$clientId$credentials$idToken$password, $async$completer); }, merge$5$clientId$credentials$idToken$mergeIntoClientId$password(clientId, credentials, idToken, mergeIntoClientId, password) { return this.merge$body$ClientRepository(clientId, credentials, idToken, mergeIntoClientId, password); }, merge$body$ClientRepository(clientId, credentials, idToken, mergeIntoClientId, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, response; var $async$merge$5$clientId$credentials$idToken$mergeIntoClientId$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$idToken$password(credentials.url + ("/clients/" + A.S(mergeIntoClientId) + "/" + clientId + "/merge"), credentials.token, idToken, password), $async$merge$5$clientId$credentials$idToken$mergeIntoClientId$password); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$merge$5$clientId$credentials$idToken$mergeIntoClientId$password, $async$completer); }, saveData$2(credentials, client) { return this.saveData$body$ClientRepository(credentials, client); }, saveData$body$ClientRepository(credentials, client) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start client = client.rebuild$1(new A.ClientRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$clientEntitySerializer(), client); t2 = credentials.url; t3 = credentials.token; $async$goto = client.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/clients?include=gateway_tokens,activities,ledger,system_logs,documents", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/clients/" + client.id + string$.x3finclug), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$ClientRepository(credentials, entity, multipartFile); }, uploadDocument$body$ClientRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/clients/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.ClientRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 48 }; A.CompanyGatewayRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$CompanyGatewayRepository(credentials, entityId); }, loadItem$body$CompanyGatewayRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_CompanyGatewayEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/company_gateways/" + entityId + "?include=system_logs", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayItemResponseSerializer(), response, type$.legacy_CompanyGatewayItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$CompanyGatewayRepository(credentials); }, loadList$body$CompanyGatewayRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_CompanyGatewayEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/company_gateways", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayListResponseSerializer(), response, type$.legacy_CompanyGatewayListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$CompanyGatewayRepository(credentials, ids, action); }, bulkAction$body$CompanyGatewayRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_CompanyGatewayEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/company_gateways/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayListResponseSerializer(), response, type$.legacy_CompanyGatewayListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, disconnect$4(_, credentials, id, password, idToken) { return this.disconnect$body$CompanyGatewayRepository(0, credentials, id, password, idToken); }, disconnect$body$CompanyGatewayRepository(_, credentials, id, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$disconnect$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(B.C_WebClient.post$4$idToken$password(credentials.url + ("/stripe/disconnect/" + id), credentials.token, idToken, password), $async$disconnect$4); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$disconnect$4, $async$completer); }, saveData$2(credentials, companyGateway) { return this.saveData$body$CompanyGatewayRepository(credentials, companyGateway); }, saveData$body$CompanyGatewayRepository(credentials, companyGateway) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_CompanyGatewayEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$companyGatewayEntitySerializer(), companyGateway); t2 = credentials.url; t3 = credentials.token; $async$goto = companyGateway.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/company_gateways", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/company_gateways/" + companyGateway.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$companyGatewayItemResponseSerializer(), response, type$.legacy_CompanyGatewayItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.CreditRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$CreditRepository(credentials, entityId); }, loadItem$body$CreditRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/credits/" + entityId + "?include=history,activities", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, createdAt, filterDeleted) { return this.loadList$body$CreditRepository(credentials, createdAt, filterDeleted); }, loadList$body$CreditRepository(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/credits?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$CreditRepository(credentials, ids, action); }, bulkAction$body$CreditRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/credits/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3(credentials, credit, action) { return this.saveData$body$CreditRepository(credentials, credit, action); }, saveData$body$CreditRepository(credentials, credit, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start credit = credit.rebuild$1(new A.CreditRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), credit); t2 = credentials.url; url = credit.get$isNew() ? t2 + "/credits?include=history,activities" : t2 + "/credits/" + credit.id + "?include=history,activities"; if (action === B.EntityAction_markSent) url += "&mark_sent=true"; t2 = credentials.token; $async$goto = credit.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3, $async$completer); }, emailCredit$5(credentials, credit, template, subject, body) { return this.emailCredit$body$CreditRepository(credentials, credit, template, subject, body); }, emailCredit$body$CreditRepository(credentials, credit, template, subject, body) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$emailCredit$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.S(credit.entityType), "entity_id", credit.id, "template", "email_template_" + A.S(template), "body", body, "subject", subject], t1, t1))), $async$emailCredit$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$emailCredit$5, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$CreditRepository(credentials, entity, multipartFile); }, uploadDocument$body$CreditRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/credits/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.CreditRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 6 }; A.DesignRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$DesignRepository(credentials, entityId); }, loadItem$body$DesignRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_DesignEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/designs/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$designItemResponseSerializer(), response, type$.legacy_DesignItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$DesignRepository(credentials); }, loadList$body$DesignRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_DesignEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/designs?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$designListResponseSerializer(), response, type$.legacy_DesignListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$DesignRepository(credentials, ids, action); }, bulkAction$body$DesignRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_DesignEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/designs/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$designListResponseSerializer(), response, type$.legacy_DesignListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, design) { return this.saveData$body$DesignRepository(credentials, design); }, saveData$body$DesignRepository(credentials, design) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_DesignEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$designEntitySerializer(), design); t2 = credentials.url; t3 = credentials.token; $async$goto = design.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/designs", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/designs/" + design.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$designItemResponseSerializer(), response, type$.legacy_DesignItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.DocumentRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$DocumentRepository(credentials, entityId); }, loadItem$body$DocumentRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_DocumentEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/documents/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$documentItemResponseSerializer(), response, type$.legacy_DocumentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$DocumentRepository(credentials); }, loadList$body$DocumentRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_DocumentEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/documents?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$documentListResponseSerializer(), response, type$.legacy_DocumentListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$DocumentRepository(credentials, ids, action); }, bulkAction$body$DocumentRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_DocumentEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/documents/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$documentListResponseSerializer(), response, type$.legacy_DocumentListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, delete$4(_, credentials, documentId, password, idToken) { return this.delete$body$DocumentRepository(0, credentials, documentId, password, idToken); }, delete$body$DocumentRepository(_, credentials, documentId, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$delete$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.delete$4$idToken$password(0, credentials.url + "/documents/" + documentId, credentials.token, idToken, password), $async$delete$4); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$delete$4, $async$completer); } }; A.ExpenseCategoryRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$ExpenseCategoryRepository(credentials, entityId); }, loadItem$body$ExpenseCategoryRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseCategoryEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/expense_categories/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryItemResponseSerializer(), response, type$.legacy_ExpenseCategoryItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$ExpenseCategoryRepository(credentials); }, loadList$body$ExpenseCategoryRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseCategoryEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/expense_categories?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryListResponseSerializer(), response, type$.legacy_ExpenseCategoryListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ExpenseCategoryRepository(credentials, ids, action); }, bulkAction$body$ExpenseCategoryRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseCategoryEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/expense_categories/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryListResponseSerializer(), response, type$.legacy_ExpenseCategoryListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, expenseCategory) { return this.saveData$body$ExpenseCategoryRepository(credentials, expenseCategory); }, saveData$body$ExpenseCategoryRepository(credentials, expenseCategory) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseCategoryEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseCategoryEntitySerializer(), expenseCategory); t2 = credentials.url; t3 = credentials.token; $async$goto = expenseCategory.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/expense_categories", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + "/expense_categories/" + expenseCategory.id, t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseCategoryItemResponseSerializer(), response, type$.legacy_ExpenseCategoryItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.ExpenseRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$ExpenseRepository(credentials, entityId); }, loadItem$body$ExpenseRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/expenses/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$expenseItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, createdAt, filterDeleted) { return this.loadList$body$ExpenseRepository(credentials, createdAt, filterDeleted); }, loadList$body$ExpenseRepository(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + ("/expenses?created_at=" + createdAt), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$expenseListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ExpenseRepository(credentials, ids, action); }, bulkAction$body$ExpenseRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/expenses/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, expense) { return this.saveData$body$ExpenseRepository(credentials, expense); }, saveData$body$ExpenseRepository(credentials, expense) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseEntitySerializer(), expense); t2 = credentials.url; t3 = credentials.token; $async$goto = expense.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/expenses", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/expenses/" + expense.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$ExpenseRepository(credentials, entity, multipartFile); }, uploadDocument$body$ExpenseRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/expenses/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.GroupRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$GroupRepository(credentials, entityId); }, loadItem$body$GroupRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/group_settings/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$GroupRepository(credentials); }, loadList$body$GroupRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_GroupEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/group_settings?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupListResponseSerializer(), response, type$.legacy_GroupListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$GroupRepository(credentials, ids, action); }, bulkAction$body$GroupRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_GroupEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/group_settings/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$groupListResponseSerializer(), response, type$.legacy_GroupListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, group) { return this.saveData$body$GroupRepository(credentials, group); }, saveData$body$GroupRepository(credentials, group) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$groupEntitySerializer(), group); t2 = credentials.url; t3 = credentials.token; $async$goto = group.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/group_settings", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/group_settings/" + group.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$GroupRepository(credentials, entity, multipartFile); }, uploadDocument$body$GroupRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/group_settings/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.InvoiceRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$InvoiceRepository(credentials, entityId); }, loadItem$body$InvoiceRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/invoices/" + entityId + "?include=activities.history", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$5(credentials, page, createdAt, filterDeleted, recordsPerPage) { return this.loadList$body$InvoiceRepository(credentials, page, createdAt, filterDeleted, recordsPerPage); }, loadList$body$InvoiceRepository(credentials, page, createdAt, filterDeleted, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/invoices?per_page=" + recordsPerPage + "&page=" + page + "&created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$5); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$5); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$5, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$InvoiceRepository(credentials, ids, action); }, bulkAction$body$InvoiceRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/invoices/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$action(credentials, invoice, action) { return this.saveData$body$InvoiceRepository(credentials, invoice, action); }, saveData$body$InvoiceRepository(credentials, invoice, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3$action = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start invoice = invoice.rebuild$1(new A.InvoiceRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), invoice); t2 = credentials.url; url = invoice.get$isNew() ? t2 + "/invoices?include=activities.history" : t2 + "/invoices/" + invoice.id + "?include=activities.history"; if (action === B.EntityAction_markPaid) url += "&paid=true"; else if (action === B.EntityAction_markSent) url += "&mark_sent=true"; else if (action === B.EntityAction_cancelInvoice) url += "&cancel=true"; t2 = credentials.token; $async$goto = invoice.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$action, $async$completer); }, emailInvoice$5(credentials, invoice, template, subject, body) { return this.emailInvoice$body$InvoiceRepository(credentials, invoice, template, subject, body); }, emailInvoice$body$InvoiceRepository(credentials, invoice, template, subject, body) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$emailInvoice$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.S(invoice.entityType), "entity_id", invoice.id, "template", "email_template_" + A.S(template), "body", body, "subject", subject], t1, t1))), $async$emailInvoice$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$emailInvoice$5, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$InvoiceRepository(credentials, entity, multipartFile); }, uploadDocument$body$InvoiceRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/invoices/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.InvoiceRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 6 }; A.PaymentRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$PaymentRepository(credentials, entityId); }, loadItem$body$PaymentRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/payments/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$paymentItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$5(credentials, page, createdAt, filterDeleted, recordsPerPage) { return this.loadList$body$PaymentRepository(credentials, page, createdAt, filterDeleted, recordsPerPage); }, loadList$body$PaymentRepository(credentials, page, createdAt, filterDeleted, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_PaymentEntity), $async$returnValue, response, t1, url; var $async$loadList$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/payments?per_page=" + recordsPerPage + "&page=" + page + "&created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$5); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$paymentListResponseSerializer(), response], t1, t1), $async$loadList$5); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$5, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$PaymentRepository(credentials, ids, action); }, bulkAction$body$PaymentRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_PaymentEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/payments/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentListResponseSerializer(), response, type$.legacy_PaymentListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$sendEmail(credentials, payment, sendEmail) { return this.saveData$body$PaymentRepository(credentials, payment, sendEmail); }, saveData$body$PaymentRepository(credentials, payment, sendEmail) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, url, t1, data, t2; var $async$saveData$3$sendEmail = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentEntitySerializer(), payment); t2 = credentials.url; $async$goto = payment.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/payments?email_receipt=" + A.S(sendEmail), credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveData$3$sendEmail); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else url = t2 + "/payments/" + payment.id + "?"; if (sendEmail) url += "&email_receipt=true"; $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveData$3$sendEmail); case 7: // returning from await. response = $async$result; case 4: // join $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentItemResponseSerializer(), response, type$.legacy_PaymentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$sendEmail, $async$completer); }, refundPayment$2(credentials, payment) { return this.refundPayment$body$PaymentRepository(credentials, payment); }, refundPayment$body$PaymentRepository(credentials, payment) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, t1, data, url; var $async$refundPayment$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentEntitySerializer(), payment); url = credentials.url + "/payments/refund?"; if (payment.sendEmail === true) url += "&email_receipt=true"; if (payment.gatewayRefund === true) url += "&gateway_refund=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(url, credentials.token, B.C_JsonCodec.encode$1(data)), $async$refundPayment$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentItemResponseSerializer(), response, type$.legacy_PaymentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$refundPayment$2, $async$completer); } }; A.PaymentTermRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$PaymentTermRepository(credentials, entityId); }, loadItem$body$PaymentTermRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_PaymentTermEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/payment_terms/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermItemResponseSerializer(), response, type$.legacy_PaymentTermItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$PaymentTermRepository(credentials); }, loadList$body$PaymentTermRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_PaymentTermEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/payment_terms?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermListResponseSerializer(), response, type$.legacy_PaymentTermListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$PaymentTermRepository(credentials, ids, action); }, bulkAction$body$PaymentTermRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_PaymentTermEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/payment_terms/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermListResponseSerializer(), response, type$.legacy_PaymentTermListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, paymentTerm) { return this.saveData$body$PaymentTermRepository(credentials, paymentTerm); }, saveData$body$PaymentTermRepository(credentials, paymentTerm) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_PaymentTermEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentTermEntitySerializer(), paymentTerm); t2 = credentials.url; t3 = credentials.token; $async$goto = paymentTerm.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/payment_terms", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + "/payment_terms/" + paymentTerm.id, t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentTermItemResponseSerializer(), response, type$.legacy_PaymentTermItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.PersistenceRepository.prototype = { saveCompanyState$1(state) { return this.saveCompanyState$body$PersistenceRepository(state); }, saveCompanyState$body$PersistenceRepository(state) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveCompanyState$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.save$1(0, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$userCompanyStateSerializer(), state))), $async$saveCompanyState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveCompanyState$1, $async$completer); }, loadCompanyState$1(index) { return this.loadCompanyState$body$PersistenceRepository(index); }, loadCompanyState$body$PersistenceRepository(index) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserCompanyState), $async$returnValue, $async$self = this, data; var $async$loadCompanyState$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.load$0(0), $async$loadCompanyState$1); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userCompanyStateSerializer(), B.C_JsonCodec.decode$1(0, data), type$.legacy_UserCompanyState); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadCompanyState$1, $async$completer); }, saveAuthState$1(state) { return this.saveAuthState$body$PersistenceRepository(state); }, saveAuthState$body$PersistenceRepository(state) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveAuthState$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.save$1(0, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$authStateSerializer(), state))), $async$saveAuthState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveAuthState$1, $async$completer); }, loadAuthState$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_AuthState), $async$returnValue, $async$self = this, data, t1; var $async$loadAuthState$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.fileStorage; $async$goto = 6; return A._asyncAwait(t1.exists$0(), $async$loadAuthState$0); case 6: // returning from await. $async$goto = $async$result ? 3 : 5; break; case 3: // then $async$goto = 7; return A._asyncAwait(t1.load$0(0), $async$loadAuthState$0); case 7: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$authStateSerializer(), B.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_AuthState); // goto return $async$goto = 1; break; // goto join $async$goto = 4; break; case 5: // else throw A.wrapException("State does not exist on file"); case 4: // join case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadAuthState$0, $async$completer); }, saveStaticState$1(state) { return this.saveStaticState$body$PersistenceRepository(state); }, saveStaticState$body$PersistenceRepository(state) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveStaticState$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.save$1(0, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$staticStateSerializer(), state))), $async$saveStaticState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveStaticState$1, $async$completer); }, loadStaticState$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_StaticState), $async$returnValue, $async$self = this, data; var $async$loadStaticState$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.load$0(0), $async$loadStaticState$0); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$staticStateSerializer(), B.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_StaticState); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadStaticState$0, $async$completer); }, saveUIState$1(state) { return this.saveUIState$body$PersistenceRepository(state); }, saveUIState$body$PersistenceRepository(state) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveUIState$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.save$1(0, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$uIStateSerializer(), state))), $async$saveUIState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveUIState$1, $async$completer); }, loadUIState$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UIState), $async$returnValue, $async$self = this, data; var $async$loadUIState$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self.fileStorage.load$0(0), $async$loadUIState$0); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$uIStateSerializer(), B.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_UIState); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadUIState$0, $async$completer); }, delete$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, t1; var $async$delete$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.fileStorage; $async$goto = 2; return A._asyncAwait(t1.exists$0(), $async$delete$0); case 2: // returning from await. if ($async$result) t1.delete$0(0); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$delete$0, $async$completer); } }; A.ProductRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$ProductRepository(credentials, entityId); }, loadItem$body$ProductRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/products/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$productItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, page, recordsPerPage) { return this.loadList$body$ProductRepository(credentials, page, recordsPerPage); }, loadList$body$ProductRepository(credentials, page, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ProductEntity), $async$returnValue, response, t1; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + ("/products?per_page=" + recordsPerPage + "&page=" + page), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$productListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ProductRepository(credentials, ids, action); }, bulkAction$body$ProductRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ProductEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/products/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$productListResponseSerializer(), response, type$.legacy_ProductListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$changedStock(credentials, product, changedStock) { return this.saveData$body$ProductRepository(credentials, product, changedStock); }, saveData$body$ProductRepository(credentials, product, changedStock) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, t1, data, t2, response, url; var $async$saveData$3$changedStock = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start product = product.rebuild$1(new A.ProductRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$productEntitySerializer(), product); t2 = credentials.url; $async$goto = product.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/products", credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveData$3$changedStock); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else url = t2 + ("/products/" + product.id); if (changedStock) url += "?update_in_stock_quantity=true"; $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveData$3$changedStock); case 7: // returning from await. response = $async$result; case 4: // join $async$returnValue = t1.deserializeWith$1$2($.$get$_$productItemResponseSerializer(), response, type$.legacy_ProductItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$changedStock, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$ProductRepository(credentials, entity, multipartFile); }, uploadDocument$body$ProductRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/products/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$productItemResponseSerializer(), response, type$.legacy_ProductItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.ProductRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 169 }; A.ProjectRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$ProjectRepository(credentials, entityId); }, loadItem$body$ProjectRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/projects/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$projectItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, createdAt, filterDeleted) { return this.loadList$body$ProjectRepository(credentials, createdAt, filterDeleted); }, loadList$body$ProjectRepository(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ProjectEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/projects?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$projectListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ProjectRepository(credentials, ids, action); }, bulkAction$body$ProjectRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ProjectEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/projects/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$projectListResponseSerializer(), response, type$.legacy_ProjectListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, project) { return this.saveData$body$ProjectRepository(credentials, project); }, saveData$body$ProjectRepository(credentials, project) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$projectEntitySerializer(), project); t2 = credentials.url; t3 = credentials.token; $async$goto = project.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/projects", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/projects/" + project.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$projectItemResponseSerializer(), response, type$.legacy_ProjectItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$ProjectRepository(credentials, entity, multipartFile); }, uploadDocument$body$ProjectRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/projects/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$projectItemResponseSerializer(), response, type$.legacy_ProjectItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.PurchaseOrderRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$PurchaseOrderRepository(credentials, entityId); }, loadItem$body$PurchaseOrderRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/purchase_orders/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$4(credentials, page, createdAt, recordsPerPage) { return this.loadList$body$PurchaseOrderRepository(credentials, page, createdAt, recordsPerPage); }, loadList$body$PurchaseOrderRepository(credentials, page, createdAt, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response; var $async$loadList$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + ("/purchase_orders?per_page=" + recordsPerPage + "&page=" + page + "&created_at=" + createdAt), credentials.token), $async$loadList$4); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$4, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$PurchaseOrderRepository(credentials, ids, action); }, bulkAction$body$PurchaseOrderRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, t1, t2, response; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); t1 = type$.legacy_String; t2 = type$.legacy_Object; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/purchase_orders/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], t1, t2))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; A.print("## DATA: " + B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], t1, t2))); t2 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t2._list, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3(credentials, purchaseOrder, action) { return this.saveData$body$PurchaseOrderRepository(credentials, purchaseOrder, action); }, saveData$body$PurchaseOrderRepository(credentials, purchaseOrder, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start purchaseOrder = purchaseOrder.rebuild$1(new A.PurchaseOrderRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), purchaseOrder); t2 = credentials.url; url = purchaseOrder.get$isNew() ? t2 + "/purchase_orders?include=activities" : t2 + "/purchase_orders/" + purchaseOrder.id + "?include=activities"; if (action === B.EntityAction_markSent) url += "&mark_sent=true"; else if (action === B.EntityAction_accept) url += "&accept=true"; t2 = credentials.token; $async$goto = purchaseOrder.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3, $async$completer); }, emailPurchaseOrder$5(credentials, purchaseOrder, template, subject, body) { return this.emailPurchaseOrder$body$PurchaseOrderRepository(credentials, purchaseOrder, template, subject, body); }, emailPurchaseOrder$body$PurchaseOrderRepository(credentials, purchaseOrder, template, subject, body) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$emailPurchaseOrder$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.S(purchaseOrder.entityType), "entity_id", purchaseOrder.id, "template", "email_template_" + A.S(template), "body", body, "subject", subject], t1, t1))), $async$emailPurchaseOrder$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$emailPurchaseOrder$5, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$PurchaseOrderRepository(credentials, entity, multipartFile); }, uploadDocument$body$PurchaseOrderRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/purchase_orders/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.PurchaseOrderRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 6 }; A.QuoteRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$QuoteRepository(credentials, entityId); }, loadItem$body$QuoteRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/quotes/" + entityId + "?include=history,activities", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$5(credentials, page, createdAt, filterDeleted, recordsPerPage) { return this.loadList$body$QuoteRepository(credentials, page, createdAt, filterDeleted, recordsPerPage); }, loadList$body$QuoteRepository(credentials, page, createdAt, filterDeleted, recordsPerPage) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/quotes?per_page=" + recordsPerPage + "&page=" + page + "&created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$5); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$5); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$5, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$QuoteRepository(credentials, ids, action); }, bulkAction$body$QuoteRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/quotes/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3(credentials, quote, action) { return this.saveData$body$QuoteRepository(credentials, quote, action); }, saveData$body$QuoteRepository(credentials, quote, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start quote = quote.rebuild$1(new A.QuoteRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), quote); t2 = credentials.url; url = quote.get$isNew() ? t2 + "/quotes?include=history,activities" : t2 + "/quotes/" + quote.id + "?include=history,activities"; if (action === B.EntityAction_convertToInvoice) url += "&convert=true"; else if (action === B.EntityAction_markSent) url += "&mark_sent=true"; else if (action === B.EntityAction_approve) url += "&approve=true"; t2 = credentials.token; $async$goto = quote.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3, $async$completer); }, emailQuote$5(credentials, quote, template, subject, body) { return this.emailQuote$body$QuoteRepository(credentials, quote, template, subject, body); }, emailQuote$body$QuoteRepository(credentials, quote, template, subject, body) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$emailQuote$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.S(quote.entityType), "entity_id", quote.id, "template", "email_template_" + A.S(template), "body", body, "subject", subject], t1, t1))), $async$emailQuote$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$emailQuote$5, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$QuoteRepository(credentials, entity, multipartFile); }, uploadDocument$body$QuoteRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/quotes/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.QuoteRepository_saveData_closure.prototype = { call$1(b) { B.JSArray_methods.set$length(b.get$documents().get$_safeList(), 0); return b; }, $signature: 6 }; A.RecurringExpenseRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$RecurringExpenseRepository(credentials, entityId); }, loadItem$body$RecurringExpenseRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/recurring_expenses/" + entityId + "?show_dates=true", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$RecurringExpenseRepository(credentials); }, loadList$body$RecurringExpenseRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/recurring_expenses?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$RecurringExpenseRepository(credentials, ids, action); }, bulkAction$body$RecurringExpenseRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/recurring_expenses/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$action(credentials, recurringExpense, action) { return this.saveData$body$RecurringExpenseRepository(credentials, recurringExpense, action); }, saveData$body$RecurringExpenseRepository(credentials, recurringExpense, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, response, t1, data, t2, url; var $async$saveData$3$action = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseEntitySerializer(), recurringExpense); t2 = credentials.url; url = recurringExpense.get$isNew() ? t2 + "/recurring_expenses?show_dates=true" : t2 + "/recurring_expenses/" + recurringExpense.id + "?show_dates=true"; if (action === B.EntityAction_start) url += "&start=true"; else if (action === B.EntityAction_stop) url += "&stop=true"; t2 = credentials.token; $async$goto = recurringExpense.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$action, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$RecurringExpenseRepository(credentials, entity, multipartFile); }, uploadDocument$body$RecurringExpenseRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/recurring_expenses/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.RecurringInvoiceRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$RecurringInvoiceRepository(credentials, entityId); }, loadItem$body$RecurringInvoiceRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/recurring_invoices/" + entityId + string$.x3finclua, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$2(credentials, filterDeleted) { return this.loadList$body$RecurringInvoiceRepository(credentials, filterDeleted); }, loadList$body$RecurringInvoiceRepository(credentials, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, url; var $async$loadList$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + "/recurring_invoices?include=invitations,documents,client.gateway_tokens,client.group_settings"; if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$2, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$RecurringInvoiceRepository(credentials, ids, action); }, bulkAction$body$RecurringInvoiceRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/recurring_invoices/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$action(credentials, recurringInvoice, action) { return this.saveData$body$RecurringInvoiceRepository(credentials, recurringInvoice, action); }, saveData$body$RecurringInvoiceRepository(credentials, recurringInvoice, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1, data, t2, url; var $async$saveData$3$action = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), recurringInvoice); t2 = credentials.url; url = recurringInvoice.get$isNew() ? t2 + "/recurring_invoices?include=activities,history&show_dates=true" : t2 + "/recurring_invoices/" + recurringInvoice.id + string$.x3finclua; if (action === B.EntityAction_start) url += "&start=true"; else if (action === B.EntityAction_stop) url += "&stop=true"; else if (action === B.EntityAction_sendNow) url += "&send_now=true"; t2 = credentials.token; $async$goto = recurringInvoice.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$action, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$RecurringInvoiceRepository(credentials, entity, multipartFile); }, uploadDocument$body$RecurringInvoiceRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/recurring_invoices/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.SettingsRepository.prototype = { saveCompany$2(credentials, company) { return this.saveCompany$body$SettingsRepository(credentials, company); }, saveCompany$body$SettingsRepository(credentials, company) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_CompanyEntity), $async$returnValue, t1, data, response; var $async$saveCompany$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$companyEntitySerializer(), company); $async$goto = 3; return A._asyncAwait(B.C_WebClient.put$3$data(0, credentials.url + ("/companies/" + company.id), credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveCompany$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveCompany$2, $async$completer); }, saveAuthUser$4(credentials, user, password, idToken) { return this.saveAuthUser$body$SettingsRepository(credentials, user, password, idToken); }, saveAuthUser$body$SettingsRepository(credentials, user, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, data, response; var $async$saveAuthUser$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); $async$goto = 3; return A._asyncAwait(B.C_WebClient.put$5$data$idToken$password(0, credentials.url + ("/users/" + user.id + "?include=company_user"), credentials.token, B.C_JsonCodec.encode$1(data), idToken, password), $async$saveAuthUser$4); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveAuthUser$4, $async$completer); }, connectOAuthUser$5(credentials, provider, password, idToken, accessToken) { return this.connectOAuthUser$body$SettingsRepository(credentials, provider, password, idToken, accessToken); }, connectOAuthUser$body$SettingsRepository(credentials, provider, password, idToken, accessToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, response; var $async$connectOAuthUser$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$password(credentials.url + "/connected_account?include=company_user", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "access_token", accessToken, "provider", provider], t1, t1)), password), $async$connectOAuthUser$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$connectOAuthUser$5, $async$completer); }, connectGmailUser$4(credentials, password, idToken, serverAuthCode) { return this.connectGmailUser$body$SettingsRepository(credentials, password, idToken, serverAuthCode); }, connectGmailUser$body$SettingsRepository(credentials, password, idToken, serverAuthCode) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, response; var $async$connectGmailUser$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$5$data$idToken$password(credentials.url + "/connected_account/gmail?include=company_user", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "server_auth_code", serverAuthCode], t1, t1)), idToken, password), $async$connectGmailUser$4); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$connectGmailUser$4, $async$completer); }, saveUserSettings$2(credentials, user) { return this.saveUserSettings$body$SettingsRepository(credentials, user); }, saveUserSettings$body$SettingsRepository(credentials, user) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserCompanyEntity), $async$returnValue, t1, data, response; var $async$saveUserSettings$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); $async$goto = 3; return A._asyncAwait(B.C_WebClient.put$3$data(0, credentials.url + ("/company_users/" + user.id), credentials.token, B.C_JsonCodec.encode$1(data)), $async$saveUserSettings$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userCompanyItemResponseSerializer(), response, type$.legacy_UserCompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveUserSettings$2, $async$completer); }, uploadLogo$4(credentials, entityId, multipartFile, type) { return this.uploadLogo$body$SettingsRepository(credentials, entityId, multipartFile, type); }, uploadLogo$body$SettingsRepository(credentials, entityId, multipartFile, type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BaseEntity), $async$returnValue, route, t1, response; var $async$uploadLogo$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (type === B.EntityType_company) route = "companies"; else route = type === B.EntityType_group ? "group_settings" : "clients"; t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/" + route + "/" + entityId, credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "PUT"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadLogo$4); case 3: // returning from await. response = $async$result; if (type === B.EntityType_client) { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; } else if (type === B.EntityType_group) { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; } else { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; } case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadLogo$4, $async$completer); }, uploadDocument$3(credentials, company, multipartFile) { return this.uploadDocument$body$SettingsRepository(credentials, company, multipartFile); }, uploadDocument$body$SettingsRepository(credentials, company, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_CompanyEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/companies/" + company.id + "/upload", credentials.token, fields, A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); }, disableTwoFactor$3(credentials, password, idToken) { return this.disableTwoFactor$body$SettingsRepository(credentials, password, idToken); }, disableTwoFactor$body$SettingsRepository(credentials, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$disableTwoFactor$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$idToken$password(credentials.url + "/settings/disable_two_factor", credentials.token, idToken, password), $async$disableTwoFactor$3); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$disableTwoFactor$3, $async$completer); } }; A.SubscriptionRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$SubscriptionRepository(credentials, entityId); }, loadItem$body$SubscriptionRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_SubscriptionEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/subscriptions/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionItemResponseSerializer(), response, type$.legacy_SubscriptionItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$SubscriptionRepository(credentials); }, loadList$body$SubscriptionRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_SubscriptionEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/subscriptions?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionListResponseSerializer(), response, type$.legacy_SubscriptionListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$SubscriptionRepository(credentials, ids, action); }, bulkAction$body$SubscriptionRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_SubscriptionEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/subscriptions/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionListResponseSerializer(), response, type$.legacy_SubscriptionListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, subscription) { return this.saveData$body$SubscriptionRepository(credentials, subscription); }, saveData$body$SubscriptionRepository(credentials, subscription) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_SubscriptionEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$subscriptionEntitySerializer(), subscription); t2 = credentials.url; t3 = credentials.token; $async$goto = subscription.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/subscriptions", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + "/subscriptions/" + subscription.id, t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$subscriptionItemResponseSerializer(), response, type$.legacy_SubscriptionItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.TaskRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$TaskRepository(credentials, entityId); }, loadItem$body$TaskRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/tasks/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$taskItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3(credentials, createdAt, filterDeleted) { return this.loadList$body$TaskRepository(credentials, createdAt, filterDeleted); }, loadList$body$TaskRepository(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaskEntity), $async$returnValue, response, t1; var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + ("/tasks?created_at=" + createdAt), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$taskListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$TaskRepository(credentials, ids, action); }, bulkAction$body$TaskRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaskEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/tasks/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taskListResponseSerializer(), response, type$.legacy_TaskListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, sortTasks$3(credentials, statusIds, taskIds) { return this.sortTasks$body$TaskRepository(credentials, statusIds, taskIds); }, sortTasks$body$TaskRepository(credentials, statusIds, taskIds) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$sortTasks$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/tasks/sort", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["status_ids", statusIds, "task_ids", taskIds], type$.legacy_String, type$.legacy_Object))), $async$sortTasks$3); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$sortTasks$3, $async$completer); }, saveData$3$action(credentials, task, action) { return this.saveData$body$TaskRepository(credentials, task, action); }, saveData$body$TaskRepository(credentials, task, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, response, t1, data, t2, url; var $async$saveData$3$action = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taskEntitySerializer(), task); t2 = credentials.url; url = task.get$isNew() ? t2 + "/tasks?" : t2 + ("/tasks/" + task.id + "?"); if (action === B.EntityAction_start) url += "&start=true"; else if (action === B.EntityAction_stop) url += "&stop=true"; t2 = credentials.token; $async$goto = task.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, url, t2, B.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taskItemResponseSerializer(), response, type$.legacy_TaskItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$3$action, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$TaskRepository(credentials, entity, multipartFile); }, uploadDocument$body$TaskRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/tasks/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskItemResponseSerializer(), response, type$.legacy_TaskItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.TaskStatusRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$TaskStatusRepository(credentials, entityId); }, loadItem$body$TaskStatusRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaskStatusEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/task_statuses/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusItemResponseSerializer(), response, type$.legacy_TaskStatusItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$TaskStatusRepository(credentials); }, loadList$body$TaskStatusRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaskStatusEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/task_statuses?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusListResponseSerializer(), response, type$.legacy_TaskStatusListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$TaskStatusRepository(credentials, ids, action); }, bulkAction$body$TaskStatusRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaskStatusEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/task_statuses/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusListResponseSerializer(), response, type$.legacy_TaskStatusListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, taskStatus) { return this.saveData$body$TaskStatusRepository(credentials, taskStatus); }, saveData$body$TaskStatusRepository(credentials, taskStatus) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaskStatusEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taskStatusEntitySerializer(), taskStatus); t2 = credentials.url; t3 = credentials.token; $async$goto = taskStatus.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/task_statuses", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + "/task_statuses/" + taskStatus.id, t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taskStatusItemResponseSerializer(), response, type$.legacy_TaskStatusItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.TaxRateRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$TaxRateRepository(credentials, entityId); }, loadItem$body$TaxRateRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaxRateEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/tax_rates/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateItemResponseSerializer(), response, type$.legacy_TaxRateItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$TaxRateRepository(credentials); }, loadList$body$TaxRateRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaxRateEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/tax_rates?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateListResponseSerializer(), response, type$.legacy_TaxRateListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$TaxRateRepository(credentials, ids, action); }, bulkAction$body$TaxRateRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaxRateEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/tax_rates/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateListResponseSerializer(), response, type$.legacy_TaxRateListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, taxRate) { return this.saveData$body$TaxRateRepository(credentials, taxRate); }, saveData$body$TaxRateRepository(credentials, taxRate) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TaxRateEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taxRateEntitySerializer(), taxRate); t2 = credentials.url; t3 = credentials.token; $async$goto = taxRate.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/tax_rates", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/tax_rates/" + taxRate.id), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taxRateItemResponseSerializer(), response, type$.legacy_TaxRateItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.TokenRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$TokenRepository(credentials, entityId); }, loadItem$body$TokenRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TokenEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/tokens/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenItemResponseSerializer(), response, type$.legacy_TokenItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$TokenRepository(credentials); }, loadList$body$TokenRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TokenEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/tokens?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenListResponseSerializer(), response, type$.legacy_TokenListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$TokenRepository(credentials, ids, action); }, bulkAction$body$TokenRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TokenEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/tokens/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenListResponseSerializer(), response, type$.legacy_TokenListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$4(credentials, token, password, idToken) { return this.saveData$body$TokenRepository(credentials, token, password, idToken); }, saveData$body$TokenRepository(credentials, token, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_TokenEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$tokenEntitySerializer(), token); t2 = credentials.url; t3 = credentials.token; $async$goto = token.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$5$data$idToken$password(t2 + "/tokens", t3, B.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$5$data$idToken$password(0, t2 + "/tokens/" + token.id, t3, B.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$tokenItemResponseSerializer(), response, type$.legacy_TokenItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$4, $async$completer); } }; A.UserRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$UserRepository(credentials, entityId); }, loadItem$body$UserRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/users/" + entityId + "?include=company_user", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$UserRepository(credentials); }, loadList$body$UserRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_UserEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/users?include=company_user", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$5(credentials, ids, action, password, idToken) { return this.bulkAction$body$UserRepository(credentials, ids, action, password, idToken); }, bulkAction$body$UserRepository(credentials, ids, action, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, response, t1; var $async$bulkAction$5 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$5$data$idToken$password(credentials.url + "/users/bulk?per_page=100&include=company_user", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object)), idToken, password), $async$bulkAction$5); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$5, $async$completer); }, detachFromCompany$4(credentials, userId, password, idToken) { return this.detachFromCompany$body$UserRepository(credentials, userId, password, idToken); }, detachFromCompany$body$UserRepository(credentials, userId, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, response, t1; var $async$detachFromCompany$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.delete$4$idToken$password(0, credentials.url + ("/users/" + userId + "/detach_from_company"), credentials.token, idToken, password), $async$detachFromCompany$4); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$detachFromCompany$4, $async$completer); }, resendInvite$4(credentials, userId, password, idToken) { return this.resendInvite$body$UserRepository(credentials, userId, password, idToken); }, resendInvite$body$UserRepository(credentials, userId, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, $async$temp1, $async$temp2, $async$temp3; var $async$resendInvite$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = A; $async$temp2 = "## invite: "; $async$temp3 = A; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$idToken$password(credentials.url + ("/users/" + userId + "/invite"), credentials.token, idToken, password), $async$resendInvite$4); case 3: // returning from await. $async$temp1.print($async$temp2 + $async$temp3.S($async$result)); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$resendInvite$4, $async$completer); }, saveData$4(credentials, user, password, idToken) { return this.saveData$body$UserRepository(credentials, user, password, idToken); }, saveData$body$UserRepository(credentials, user, password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); t2 = credentials.url; t3 = credentials.token; $async$goto = user.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$5$data$idToken$password(t2 + "/users?include=company_user", t3, B.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$5$data$idToken$password(0, t2 + ("/users/" + user.id + "?include=company_user"), t3, B.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$4, $async$completer); } }; A.VendorRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$VendorRepository(credentials, entityId); }, loadItem$body$VendorRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, response, t1; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/vendors/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$vendorItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$VendorRepository(credentials); }, loadList$body$VendorRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_VendorEntity), $async$returnValue, response, t1; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/vendors?include=activities", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return A._asyncAwait(A._isolates_web__compute$closure().call$2$2(A.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$vendorListResponseSerializer(), response], t1, t1), $async$loadList$1); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$VendorRepository(credentials, ids, action); }, bulkAction$body$VendorRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_VendorEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/vendors/bulk?per_page=100&include=activities", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$vendorListResponseSerializer(), response, type$.legacy_VendorListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, vendor) { return this.saveData$body$VendorRepository(credentials, vendor); }, saveData$body$VendorRepository(credentials, vendor) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$vendorEntitySerializer(), vendor); t2 = credentials.url; t3 = credentials.token; $async$goto = vendor.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/vendors?include=activities", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + ("/vendors/" + vendor.id + "?include=activities"), t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$vendorItemResponseSerializer(), response, type$.legacy_VendorItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3(credentials, entity, multipartFile) { return this.uploadDocument$body$VendorRepository(credentials, entity, multipartFile); }, uploadDocument$body$VendorRepository(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, t1, response; var $async$uploadDocument$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$4$data$multipartFiles(credentials.url + "/vendors/" + entity.id + "/upload", credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1), A._setArrayType([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$vendorItemResponseSerializer(), response, type$.legacy_VendorItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$uploadDocument$3, $async$completer); } }; A.WebhookRepository.prototype = { loadItem$2(credentials, entityId) { return this.loadItem$body$WebhookRepository(credentials, entityId); }, loadItem$body$WebhookRepository(credentials, entityId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_WebhookEntity), $async$returnValue, response; var $async$loadItem$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/webhooks/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookItemResponseSerializer(), response, type$.legacy_WebhookItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1(credentials) { return this.loadList$body$WebhookRepository(credentials); }, loadList$body$WebhookRepository(credentials) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_WebhookEntity), $async$returnValue, response; var $async$loadList$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.C_WebClient.$get$2(0, credentials.url + "/webhooks?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookListResponseSerializer(), response, type$.legacy_WebhookListResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$WebhookRepository(credentials, ids, action); }, bulkAction$body$WebhookRepository(credentials, ids, action) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_List_legacy_WebhookEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = B.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return A._asyncAwait(B.C_WebClient.post$3$data(credentials.url + "/webhooks/bulk?per_page=100", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookListResponseSerializer(), response, type$.legacy_WebhookListResponse).data; $async$returnValue = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2(credentials, webhook) { return this.saveData$body$WebhookRepository(credentials, webhook); }, saveData$body$WebhookRepository(credentials, webhook) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_WebhookEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$webhookEntitySerializer(), webhook); t2 = credentials.url; t3 = credentials.token; $async$goto = webhook.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(B.C_WebClient.post$3$data(t2 + "/webhooks", t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return A._asyncAwait(B.C_WebClient.put$3$data(0, t2 + "/webhooks/" + webhook.id, t3, B.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$webhookItemResponseSerializer(), response, type$.legacy_WebhookItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$saveData$2, $async$completer); } }; A.WebClient.prototype = { $get$3$rawResponse(_, url, token, rawResponse) { return this.$get$body$WebClient(0, url, token, rawResponse); }, $get$2($receiver, url, token) { return this.$get$3$rawResponse($receiver, url, token, false); }, $get$body$WebClient(_, url, token, rawResponse) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$$get$3$rawResponse = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.contains$1(url, "?")) url += "?"; if (B.JSString_methods.contains$1(url, "/api/") && !B.JSString_methods.contains$1(url, "per_page")) url += "&per_page=999999"; url += "&t=" + Date.now(); A.print("GET: " + url); client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return A._asyncAwait(client._sendUnstreamed$3("GET", A.Uri_parse(url, 0, null), A._getHeaders(url, token, null, null, null)), $async$$get$3$rawResponse); case 3: // returning from await. response = $async$result; client.close$0(0); if (rawResponse) { $async$returnValue = response; // goto return $async$goto = 1; break; } A._checkResponse(response); $async$returnValue = B.C_JsonCodec.decode$1(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$$get$3$rawResponse, $async$completer); }, post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, idToken, multipartFiles, password, rawResponse, secret) { return this.post$body$WebClient(url, token, data, idToken, multipartFiles, password, rawResponse, secret); }, post$5$idToken$password$rawResponse(url, token, idToken, password, rawResponse) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, idToken, null, password, rawResponse, null); }, post$3$data(url, token, data) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, false, null); }, post$2(url, token) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, null, null, null, false, null); }, post$4$data$rawResponse(url, token, data, rawResponse) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, rawResponse, null); }, post$4$data$multipartFiles(url, token, data, multipartFiles) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, multipartFiles, null, false, null); }, post$3$multipartFiles(url, token, multipartFiles) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, null, multipartFiles, null, false, null); }, post$4$idToken$password(url, token, idToken, password) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, idToken, null, password, false, null); }, post$5$data$idToken$password(url, token, data, idToken, password) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, idToken, null, password, false, null); }, post$4$data$password(url, token, data, password) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, password, false, null); }, post$4$data$secret(url, token, data, secret) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, false, secret); }, post$body$WebClient(url, token, data, idToken, multipartFiles, password, rawResponse, secret) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, response, headers, client, t1; var $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.contains$1(url, "?")) url += "?"; A.print("POST: " + url); $async$goto = multipartFiles != null ? 3 : 5; break; case 3: // then $async$goto = 6; return A._asyncAwait(A._uploadFiles(url, token, multipartFiles, data, "file", "POST"), $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else headers = A._getHeaders(url, token, idToken, password, secret); client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); t1 = client._sendUnstreamed$5("POST", A.Uri_parse(url, 0, null), headers, data, null); $async$goto = 7; return A._asyncAwait(t1.timeout$1(0, A.Duration$(0, 0, 0, 0, 0, rawResponse ? 300 : 60)), $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret); case 7: // returning from await. response = $async$result; client.close$0(0); case 4: // join if (rawResponse) { $async$returnValue = response; // goto return $async$goto = 1; break; } A._checkResponse(response); $async$returnValue = B.C_JsonCodec.decode$1(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$post$8$data$idToken$multipartFiles$password$rawResponse$secret, $async$completer); }, put$5$data$idToken$password(_, url, token, data, idToken, password) { return this.put$body$WebClient(0, url, token, data, idToken, password); }, put$3$data($receiver, url, token, data) { return this.put$5$data$idToken$password($receiver, url, token, data, null, null); }, put$body$WebClient(_, url, token, data, idToken, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$put$5$data$idToken$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.contains$1(url, "?")) url += "?"; A.print("PUT: " + url); client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return A._asyncAwait(client._sendUnstreamed$5("PUT", A.Uri_parse(url, 0, null), A._getHeaders(url, token, idToken, password, null), data, null), $async$put$5$data$idToken$password); case 3: // returning from await. response = $async$result; client.close$0(0); A._checkResponse(response); $async$returnValue = B.C_JsonCodec.decode$1(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$put$5$data$idToken$password, $async$completer); }, delete$5$data$idToken$password(_, url, token, data, idToken, password) { return this.delete$body$WebClient(0, url, token, data, idToken, password); }, delete$4$idToken$password($receiver, url, token, idToken, password) { return this.delete$5$data$idToken$password($receiver, url, token, null, idToken, password); }, delete$4$data$password($receiver, url, token, data, password) { return this.delete$5$data$idToken$password($receiver, url, token, data, null, password); }, delete$body$WebClient(_, url, token, data, idToken, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$delete$5$data$idToken$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.contains$1(url, "?")) url += "?"; A.print("Delete: " + url); client = new A.BrowserClient(A.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return A._asyncAwait(client._sendUnstreamed$5("DELETE", A.Uri_parse(url, 0, null), A._getHeaders(url, token, idToken, password, null), data, null), $async$delete$5$data$idToken$password); case 3: // returning from await. response = $async$result; client.close$0(0); A._checkResponse(response); $async$returnValue = B.C_JsonCodec.decode$1(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$delete$5$data$idToken$password, $async$completer); } }; A._parseError_closure.prototype = { call$2(field, errors) { J.forEach$1$ax(type$.legacy_List_dynamic._as(errors), new A._parseError__closure(this._box_0)); }, $signature: 815 }; A._parseError__closure.prototype = { call$1(error) { var t1 = this._box_0; return t1.message = J.$add$ansx(t1.message, "\n \u2022 " + A.S(error)); }, $signature: 12 }; A._initialState_closure.prototype = { call$1(b) { b.get$_pref_state$_$this()._showKanban = true; b.get$useSidebarEditor().$indexSet(0, B.EntityType_task, true); return b; }, $signature: 809 }; A.InvoiceNinjaApp.prototype = { createState$0() { return new A.InvoiceNinjaAppState(B._StateLifecycle_0); } }; A.InvoiceNinjaAppState.prototype = { _authenticate$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, e, exception, authenticated, $async$exception; var $async$_authenticate$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start authenticated = false; $async$handler = 3; $async$goto = 6; return A._asyncAwait(new A.LocalAuthentication().authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs(true, "Please authenticate to access the app", false, true), $async$_authenticate$0); case 6: // returning from await. authenticated = $async$result; $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = A.unwrapException($async$exception); A.print(e); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (authenticated) $async$self.setState$1(new A.InvoiceNinjaAppState__authenticate_closure($async$self)); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_authenticate$0, $async$completer); }, initState$0() { this.super$State$initState(); A.WebUtils_warnChanges(this._widget.store); A.Timer_Timer$periodic(A.Duration$(0, 0, 0, 300000, 0, 0), new A.InvoiceNinjaAppState_initState_closure(this)); }, didChangeDependencies$0() { var _this = this; if (A._lateReadCheck(_this._widget.store.__Store__state, "_state").prefState.requireAuthentication && !_this._authenticated) _this._authenticate$0(); _this.super$State$didChangeDependencies(); }, generateRoute$1(settings) { var t1 = type$.dynamic; switch (settings.name) { case "/login": return A.MaterialPageRoute$(new A.InvoiceNinjaAppState_generateRoute_closure(), null, t1); default: return A.MaterialPageRoute$(new A.InvoiceNinjaAppState_generateRoute_closure0(), null, t1); } }, build$1(_, context) { return new A.StoreProvider(this._widget.store, new A.WebSessionTimeout(new A.AppBuilder(new A.InvoiceNinjaAppState_build_closure(this), null), null), null, type$.StoreProvider_legacy_AppState); } }; A.InvoiceNinjaAppState__authenticate_closure.prototype = { call$0() { return this.$this._authenticated = true; }, $signature: 21 }; A.InvoiceNinjaAppState_initState_closure.prototype = { call$1(_) { var t1, t2, t3, store = this.$this._widget.store, state = A._lateReadCheck(store.__Store__state, "_state"); if (!state.authState.isAuthenticated) return; t1 = state.uiState; if (!t1.get$hasRecentActivity()) return; t2 = Date.now(); t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; if (t2 - t3._list[t1].lastUpdated > 300000) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 379 }; A.InvoiceNinjaAppState_generateRoute_closure.prototype = { call$1(_) { return new A.LoginScreen(null); }, $signature: 810 }; A.InvoiceNinjaAppState_generateRoute_closure0.prototype = { call$1(_) { return new A.MainScreen(null); }, $signature: 808 }; A.InvoiceNinjaAppState_build_closure.prototype = { call$1(context) { var locale, locale0, textButtonTheme, t2, t3, outlinedButtonTheme, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = this.$this, state = A._lateReadCheck(t1._widget.store.__Store__state, "_state"), hasAccentColor = state.get$hasAccentColor(), accentColor = state.get$accentColor(), pageTransitionsTheme = new A.PageTransitionsTheme(A.LinkedHashMap_LinkedHashMap$_literal([B.TargetPlatform_0, new A.ZoomPageTransitionsBuilder()], type$.legacy_TargetPlatform, type$.legacy_PageTransitionsBuilder)); $._defaultLocale = A.localeSelector(state, false); locale = A.AppLocalization_createLocale(A.localeSelector(state, false)); locale0 = A.localeSelector(A._lateReadCheck(t1._widget.store.__Store__state, "_state"), true); if (locale0 === "ar") { $.$get$_lookupMessagesMap().$indexSet(0, "ar", new A.ArMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "ar_short", new A.ArMessages()); } else if (locale0 === "ca") { $.$get$_lookupMessagesMap().$indexSet(0, "ca", new A.CaMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "ca_short", new A.CaMessages()); } else if (locale0 === "cs") { $.$get$_lookupMessagesMap().$indexSet(0, "cs", new A.CsMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "cs_short", new A.CsMessages()); } else if (locale0 === "da") { $.$get$_lookupMessagesMap().$indexSet(0, "da", new A.DaMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "da_short", new A.DaMessages()); } else if (locale0 === "de") { $.$get$_lookupMessagesMap().$indexSet(0, "de", new A.DeMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "de_short", new A.DeMessages()); } else if (locale0 === "en") { $.$get$_lookupMessagesMap().$indexSet(0, "en", new A.EnMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "en_short", new A.EnMessages()); } else if (locale0 === "es") { $.$get$_lookupMessagesMap().$indexSet(0, "es", new A.EsMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "es_short", new A.EsMessages()); } else if (locale0 === "fa") $.$get$_lookupMessagesMap().$indexSet(0, "fa", new A.FaMessages()); else if (locale0 === "fr") { $.$get$_lookupMessagesMap().$indexSet(0, "fr", new A.FrMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "fr_short", new A.FrShortMessages()); } else if (locale0 === "it") { $.$get$_lookupMessagesMap().$indexSet(0, "it", new A.ItMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "it_short", new A.ItShortMessages()); } else if (locale0 === "ja") $.$get$_lookupMessagesMap().$indexSet(0, "ja", new A.JaMessages()); else if (locale0 === "nb") { $.$get$_lookupMessagesMap().$indexSet(0, "nb", new A.NbNoMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "nb_short", new A.NbNoShortMessages()); } else if (locale0 === "nl") { $.$get$_lookupMessagesMap().$indexSet(0, "nl", new A.NlMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "nl_short", new A.NlShortMessages()); } else if (locale0 === "pl") $.$get$_lookupMessagesMap().$indexSet(0, "pl", new A.PlMessages()); else if (locale0 === "pt") { $.$get$_lookupMessagesMap().$indexSet(0, "pt", new A.PtBrMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "pt_short", new A.PtBrShortMessages()); } else if (locale0 === "ro") { $.$get$_lookupMessagesMap().$indexSet(0, "ro", new A.RoMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "ro_short", new A.RoShortMessages()); } else if (locale0 === "ru") { $.$get$_lookupMessagesMap().$indexSet(0, "ru", new A.RuMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "ru_short", new A.RuShortMessages()); } else if (locale0 === "sv") { $.$get$_lookupMessagesMap().$indexSet(0, "sv", new A.SvMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "sv_short", new A.SvShortMessages()); } else if (locale0 === "th") { $.$get$_lookupMessagesMap().$indexSet(0, "th", new A.ThMessages()); $.$get$_lookupMessagesMap().$indexSet(0, "th_short", new A.ThShortMessages()); } else if (locale0 === "zh") $.$get$_lookupMessagesMap().$indexSet(0, "zh", new A.ZhMessages()); textButtonTheme = A.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, new A.Size(88, 36), _null, new A.EdgeInsets(16, 0, 16, 0), _null, _null, B.RoundedRectangleBorder_LkV, _null, _null, _null, _null); t2 = state.prefState; t3 = t2.enableDarkMode; outlinedButtonTheme = A.OutlinedButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3 ? B.Color_4294967295 : B.Color_3707764736, _null, _null, _null, _null, _null, _null, _null); t4 = A.Duration$(0, 0, 0, 0, 0, 3); t5 = t3 ? B.Color_4294967295 : B.Color_4278190080; t6 = A.TextStyle$(_null, _null, t3 ? B.Color_3707764736 : B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; t7._list[t8].userCompany.toString; t7 = t2.enableTouchEvents ? new A.MyCustomScrollBehavior(_null) : _null; t8 = $.$get$navigatorKey(); t9 = type$.MappedListIterable_of_legacy_String_and_legacy_Locale; t9 = A.List_List$of(new A.MappedListIterable(B.List_KAC, new A.InvoiceNinjaAppState_build__closure(), t9), true, t9._eval$1("ListIterable.E")); t10 = $.$get$HubAdapter__instance(); t10 = A._setArrayType([new A.SentryNavigatorObserver(t10, $.$get$SentryNative__instance(), A.LinkedHashMap_LinkedHashMap$_empty(type$.PageRoute_dynamic, type$.Set_RouteAware))], type$.JSArray_legacy_NavigatorObserver); t11 = A._setArrayType([B.C_AppLocalizationsDelegate, B.C__GlobalCupertinoLocalizationsDelegate, B.C__WidgetsLocalizationsDelegate, B.C__MaterialLocalizationsDelegate], type$.JSArray_legacy_LocalizationsDelegate_dynamic); t2 = t2.requireAuthentication && !t1._authenticated ? new A.LockScreen(t1.get$_authenticate(), _null) : new A.InitScreen(_null); if (t3) t3 = A.ThemeData_ThemeData(_null, B.Color_4278190080, B.Color_4279966750, _null, B.Color_4278190080, B.Color_4279966750, new A.ColorScheme(B.Brightness_0, B.Color_4290479868, B.Color_4278190080, _null, _null, B.Color_4278442694, B.Color_4278190080, _null, _null, _null, _null, _null, _null, B.Color_4291782265, B.Color_4278190080, _null, _null, B.Color_4279374354, B.Color_4294967295, B.Color_4279374354, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, B.Color_4281794739, B.Color_4278442694).copyWith$2$primary$secondary(accentColor, accentColor), "Roboto", _null, accentColor, new A.OutlinedButtonThemeData(outlinedButtonTheme), pageTransitionsTheme, _null, B.Color_4278190080, _null, _null, _null, new A.TextButtonThemeData(textButtonTheme), new A.TextSelectionThemeData(_null, _null, accentColor), _null); else { t3 = A.ColorScheme_ColorScheme$fromSwatch(_null, _null, B.Brightness_1, _null, _null, _null, B.MaterialColor_Map_JNwaj_4280391411).copyWith$1$secondary(accentColor); t12 = hasAccentColor ? accentColor : B.Color_4279066001; t13 = hasAccentColor ? accentColor : B.Color_4284328948; t14 = hasAccentColor ? B.Color_4294967295 : B.Color_4278190080; t15 = hasAccentColor ? A.Color$fromARGB(166, 255, 255, 255) : A.Color$fromARGB(166, 0, 0, 0); t16 = hasAccentColor ? _null : accentColor; t17 = hasAccentColor ? accentColor : B.Color_4294967295; t18 = hasAccentColor ? B.Color_4294967295 : accentColor; t3 = A.ThemeData_ThemeData(A.AppBarTheme$(_null, _null, _null, _null, _null, t17, _null, _null, new A.IconThemeData(t18, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, hasAccentColor ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), B.Color_4294967295, B.Color_4294967295, _null, B.Color_4294967295, B.Color_4294967295, t3, "Roboto", new A.IconThemeData(t16, _null, _null, _null), accentColor, new A.OutlinedButtonThemeData(outlinedButtonTheme), pageTransitionsTheme, accentColor, t12, t13, B.Color_4294178038, new A.TabBarTheme(_null, _null, t14, _null, _null, t15, _null, _null, _null, _null), new A.TextButtonThemeData(textButtonTheme), new A.TextSelectionThemeData(_null, accentColor, _null), _null); } t1 = A.getLayout(context) === B.AppLayout_mobile ? _null : t1.get$generateRoute(); t12 = type$.legacy_String; t13 = type$.legacy_legacy_Widget_Function_legacy_BuildContext; t12 = A.getLayout(context) === B.AppLayout_mobile ? A.LinkedHashMap_LinkedHashMap$_literal(["/login", new A.InvoiceNinjaAppState_build__closure0(), "/main", new A.InvoiceNinjaAppState_build__closure1(), "/dashboard", new A.InvoiceNinjaAppState_build__closure2(state), "/product", new A.InvoiceNinjaAppState_build__closure3(), "/product/view", new A.InvoiceNinjaAppState_build__closure4(), "/product/edit", new A.InvoiceNinjaAppState_build__closure5(), "/client", new A.InvoiceNinjaAppState_build__closure6(), "/client/view", new A.InvoiceNinjaAppState_build__closure7(), "/client/edit", new A.InvoiceNinjaAppState_build__closure8(), "/client/pdf", new A.InvoiceNinjaAppState_build__closure9(), "/invoice", new A.InvoiceNinjaAppState_build__closure10(), "/invoice/view", new A.InvoiceNinjaAppState_build__closure11(), "/invoice/edit", new A.InvoiceNinjaAppState_build__closure12(), "/invoice/email", new A.InvoiceNinjaAppState_build__closure13(), "/invoice/pdf", new A.InvoiceNinjaAppState_build__closure14(), "/document", new A.InvoiceNinjaAppState_build__closure15(), "/document/view", new A.InvoiceNinjaAppState_build__closure16(), "/document/edit", new A.InvoiceNinjaAppState_build__closure17(), "/expense", new A.InvoiceNinjaAppState_build__closure18(), "/expense/view", new A.InvoiceNinjaAppState_build__closure19(), "/expense/edit", new A.InvoiceNinjaAppState_build__closure20(), "/vendor", new A.InvoiceNinjaAppState_build__closure21(), "/vendor/view", new A.InvoiceNinjaAppState_build__closure22(), "/vendor/edit", new A.InvoiceNinjaAppState_build__closure23(), "/task", new A.InvoiceNinjaAppState_build__closure24(), "/task/view", new A.InvoiceNinjaAppState_build__closure25(), "/task/edit", new A.InvoiceNinjaAppState_build__closure26(), "/project", new A.InvoiceNinjaAppState_build__closure27(), "/project/view", new A.InvoiceNinjaAppState_build__closure28(), "/project/edit", new A.InvoiceNinjaAppState_build__closure29(), "/payment", new A.InvoiceNinjaAppState_build__closure30(), "/payment/view", new A.InvoiceNinjaAppState_build__closure31(), "/payment/edit", new A.InvoiceNinjaAppState_build__closure32(), "/payment/refund", new A.InvoiceNinjaAppState_build__closure33(), "/quote", new A.InvoiceNinjaAppState_build__closure34(), "/quote/view", new A.InvoiceNinjaAppState_build__closure35(), "/quote/edit", new A.InvoiceNinjaAppState_build__closure36(), "/quote/email", new A.InvoiceNinjaAppState_build__closure37(), "/quote/pdf", new A.InvoiceNinjaAppState_build__closure38(), "/purchase_order", new A.InvoiceNinjaAppState_build__closure39(), "/purchase_order/view", new A.InvoiceNinjaAppState_build__closure40(), "/purchase_order/edit", new A.InvoiceNinjaAppState_build__closure41(), "/recurring_expense", new A.InvoiceNinjaAppState_build__closure42(), "/recurring_expense/view", new A.InvoiceNinjaAppState_build__closure43(), "/recurring_expense/edit", new A.InvoiceNinjaAppState_build__closure44(), "/settings/subscriptions", new A.InvoiceNinjaAppState_build__closure45(), "/settings/subscriptions/view", new A.InvoiceNinjaAppState_build__closure46(), "/settings/subscriptions/edit", new A.InvoiceNinjaAppState_build__closure47(), "/settings/task_status", new A.InvoiceNinjaAppState_build__closure48(), "/settings/task_status/view", new A.InvoiceNinjaAppState_build__closure49(), "/settings/task_status/edit", new A.InvoiceNinjaAppState_build__closure50(), "/settings/expense_category", new A.InvoiceNinjaAppState_build__closure51(), "/settings/expense_category/view", new A.InvoiceNinjaAppState_build__closure52(), "/settings/expense_category/edit", new A.InvoiceNinjaAppState_build__closure53(), "/recurring_invoice", new A.InvoiceNinjaAppState_build__closure54(), "/recurring_invoice/view", new A.InvoiceNinjaAppState_build__closure55(), "/recurring_invoice/edit", new A.InvoiceNinjaAppState_build__closure56(), "/recurring_invoice/pdf", new A.InvoiceNinjaAppState_build__closure57(), "/settings/webhook", new A.InvoiceNinjaAppState_build__closure58(), "/settings/webhook/view", new A.InvoiceNinjaAppState_build__closure59(), "/settings/webhook/edit", new A.InvoiceNinjaAppState_build__closure60(), "/settings/tokens", new A.InvoiceNinjaAppState_build__closure61(), "/settings/token/view", new A.InvoiceNinjaAppState_build__closure62(), "/settings/token/edit", new A.InvoiceNinjaAppState_build__closure63(), "/settings/payment_terms", new A.InvoiceNinjaAppState_build__closure64(), "/settings/payment_term/edit", new A.InvoiceNinjaAppState_build__closure65(), "/settings/payment_term/view", new A.InvoiceNinjaAppState_build__closure66(), "/settings/custom_designs", new A.InvoiceNinjaAppState_build__closure67(), "/settings/custom_designs/view", new A.InvoiceNinjaAppState_build__closure68(), "/settings/custom_designs/edit", new A.InvoiceNinjaAppState_build__closure69(), "/credit", new A.InvoiceNinjaAppState_build__closure70(), "/credit/view", new A.InvoiceNinjaAppState_build__closure71(), "/credit/edit", new A.InvoiceNinjaAppState_build__closure72(), "/credit/email", new A.InvoiceNinjaAppState_build__closure73(), "/credit/pdf", new A.InvoiceNinjaAppState_build__closure74(), "/settings/user_management", new A.InvoiceNinjaAppState_build__closure75(), "/settings/user_management/view", new A.InvoiceNinjaAppState_build__closure76(), "/settings/user_management/edit", new A.InvoiceNinjaAppState_build__closure77(), "/settings/group_settings", new A.InvoiceNinjaAppState_build__closure78(), "/settings/group_settings/view", new A.InvoiceNinjaAppState_build__closure79(), "/settings/group_settings/edit", new A.InvoiceNinjaAppState_build__closure80(), "/settings", new A.InvoiceNinjaAppState_build__closure81(), "/reports", new A.InvoiceNinjaAppState_build__closure82(), "/settings/company_details", new A.InvoiceNinjaAppState_build__closure83(), "/settings/user_details", new A.InvoiceNinjaAppState_build__closure84(), "/settings/localization", new A.InvoiceNinjaAppState_build__closure85(), "/settings/payment_settings", new A.InvoiceNinjaAppState_build__closure86(), "/settings/company_gateways", new A.InvoiceNinjaAppState_build__closure87(), "/settings/company_gateways/view", new A.InvoiceNinjaAppState_build__closure88(), "/settings/company_gateways/edit", new A.InvoiceNinjaAppState_build__closure89(), "/settings/tax_settings", new A.InvoiceNinjaAppState_build__closure90(), "/settings/tax_settings_rates", new A.InvoiceNinjaAppState_build__closure91(), "/settings/tax_settings_rates/view", new A.InvoiceNinjaAppState_build__closure92(), "/settings/tax_settings_rates/edit", new A.InvoiceNinjaAppState_build__closure93(), "/settings/product_settings", new A.InvoiceNinjaAppState_build__closure94(), "/settings/expense_settings", new A.InvoiceNinjaAppState_build__closure95(), "/settings/task_settings", new A.InvoiceNinjaAppState_build__closure96(), "/settings/import_export", new A.InvoiceNinjaAppState_build__closure97(), "/settings/device_settings", new A.InvoiceNinjaAppState_build__closure98(), "/settings/account_management", new A.InvoiceNinjaAppState_build__closure99(), "/settings/custom_fields", new A.InvoiceNinjaAppState_build__closure100(), "/settings/generated_numbers", new A.InvoiceNinjaAppState_build__closure101(), "/settings/workflow_settings", new A.InvoiceNinjaAppState_build__closure102(), "/settings/invoice_design", new A.InvoiceNinjaAppState_build__closure103(), "/settings/client_portal", new A.InvoiceNinjaAppState_build__closure104(), "/settings/email_settings", new A.InvoiceNinjaAppState_build__closure105(), "/settings/templates_and_reminders", new A.InvoiceNinjaAppState_build__closure106(), "/settings/credit_cards_and_banks", new A.InvoiceNinjaAppState_build__closure107(), "/settings/data_visualizations", new A.InvoiceNinjaAppState_build__closure108()], t12, t13) : A.LinkedHashMap_LinkedHashMap$_empty(t12, t13); return new A.StyledToast(new A.WebSocketRefresh(new A.MaterialApp(t8, t2, t12, t1, t10, new A.InvoiceNinjaAppState_build__closure109(state), "Invoice Ninja", t3, locale, t11, t9, false, t7, _null), _null), t5, t6, t4, locale, _null); }, $signature: 816 }; A.InvoiceNinjaAppState_build__closure109.prototype = { call$2(context, child) { var data = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t1 = this.state, t2 = t1.prefState.textScaleFactor, t3 = t1.uiState.selectedCompanyIndex; t3 = t1.userCompanyStates._list[t3].userCompany.company; t1 = t3 == null ? null : t3.settings; t1 = t1 == null ? null : t1.enableMilitaryTime; return new A.MediaQuery(data.copyWith$2$alwaysUse24HourFormat$textScaleFactor(t1 === true, t2), child, null); }, $signature: 803 }; A.InvoiceNinjaAppState_build__closure.prototype = { call$1(locale) { return A.AppLocalization_createLocale(locale); }, $signature: 818 }; A.InvoiceNinjaAppState_build__closure0.prototype = { call$1(context) { return new A.LoginScreen(null); }, $signature: 810 }; A.InvoiceNinjaAppState_build__closure1.prototype = { call$1(context) { return new A.MainScreen(null); }, $signature: 808 }; A.InvoiceNinjaAppState_build__closure2.prototype = { call$1(context) { return new A.ChangeLayoutBanner(new A.DashboardScreenBuilder(null), this.state.prefState.appLayout, B.AppLayout_mobile, null); }, $signature: 819 }; A.InvoiceNinjaAppState_build__closure3.prototype = { call$1(context) { return new A.ProductScreenBuilder(null); }, $signature: 820 }; A.InvoiceNinjaAppState_build__closure4.prototype = { call$1(context) { return new A.ProductViewScreen(null); }, $signature: 821 }; A.InvoiceNinjaAppState_build__closure5.prototype = { call$1(context) { return new A.ProductEditScreen(null); }, $signature: 822 }; A.InvoiceNinjaAppState_build__closure6.prototype = { call$1(context) { return new A.ClientScreenBuilder(null); }, $signature: 823 }; A.InvoiceNinjaAppState_build__closure7.prototype = { call$1(context) { return new A.ClientViewScreen(false, false, null); }, $signature: 824 }; A.InvoiceNinjaAppState_build__closure8.prototype = { call$1(context) { return new A.ClientEditScreen(null); }, $signature: 825 }; A.InvoiceNinjaAppState_build__closure9.prototype = { call$1(context) { return new A.ClientPdfScreen(null); }, $signature: 826 }; A.InvoiceNinjaAppState_build__closure10.prototype = { call$1(context) { return new A.InvoiceScreenBuilder(null); }, $signature: 827 }; A.InvoiceNinjaAppState_build__closure11.prototype = { call$1(context) { return new A.InvoiceViewScreen(false, null); }, $signature: 828 }; A.InvoiceNinjaAppState_build__closure12.prototype = { call$1(context) { return new A.InvoiceEditScreen(null); }, $signature: 829 }; A.InvoiceNinjaAppState_build__closure13.prototype = { call$1(context) { return new A.InvoiceEmailScreen(null); }, $signature: 830 }; A.InvoiceNinjaAppState_build__closure14.prototype = { call$1(context) { return new A.InvoicePdfScreen(true, null); }, $signature: 831 }; A.InvoiceNinjaAppState_build__closure15.prototype = { call$1(context) { return new A.DocumentScreenBuilder(null); }, $signature: 832 }; A.InvoiceNinjaAppState_build__closure16.prototype = { call$1(context) { return new A.DocumentViewScreen(null); }, $signature: 833 }; A.InvoiceNinjaAppState_build__closure17.prototype = { call$1(context) { return new A.DocumentEditScreen(null); }, $signature: 834 }; A.InvoiceNinjaAppState_build__closure18.prototype = { call$1(context) { return new A.ExpenseScreenBuilder(null); }, $signature: 835 }; A.InvoiceNinjaAppState_build__closure19.prototype = { call$1(context) { return new A.ExpenseViewScreen(null); }, $signature: 836 }; A.InvoiceNinjaAppState_build__closure20.prototype = { call$1(context) { return new A.ExpenseEditScreen(null); }, $signature: 837 }; A.InvoiceNinjaAppState_build__closure21.prototype = { call$1(context) { return new A.VendorScreenBuilder(null); }, $signature: 838 }; A.InvoiceNinjaAppState_build__closure22.prototype = { call$1(context) { return new A.VendorViewScreen(false, false, null); }, $signature: 839 }; A.InvoiceNinjaAppState_build__closure23.prototype = { call$1(context) { return new A.VendorEditScreen(null); }, $signature: 840 }; A.InvoiceNinjaAppState_build__closure24.prototype = { call$1(context) { return new A.TaskScreenBuilder(null); }, $signature: 841 }; A.InvoiceNinjaAppState_build__closure25.prototype = { call$1(context) { return new A.TaskViewScreen(null); }, $signature: 842 }; A.InvoiceNinjaAppState_build__closure26.prototype = { call$1(context) { return new A.TaskEditScreen(null); }, $signature: 843 }; A.InvoiceNinjaAppState_build__closure27.prototype = { call$1(context) { return new A.ProjectScreenBuilder(null); }, $signature: 844 }; A.InvoiceNinjaAppState_build__closure28.prototype = { call$1(context) { return new A.ProjectViewScreen(false, null); }, $signature: 845 }; A.InvoiceNinjaAppState_build__closure29.prototype = { call$1(context) { return new A.ProjectEditScreen(null); }, $signature: 846 }; A.InvoiceNinjaAppState_build__closure30.prototype = { call$1(context) { return new A.PaymentScreenBuilder(null); }, $signature: 847 }; A.InvoiceNinjaAppState_build__closure31.prototype = { call$1(context) { return new A.PaymentViewScreen(false, null); }, $signature: 848 }; A.InvoiceNinjaAppState_build__closure32.prototype = { call$1(context) { return new A.PaymentEditScreen(null); }, $signature: 797 }; A.InvoiceNinjaAppState_build__closure33.prototype = { call$1(context) { return new A.PaymentRefundScreen(null); }, $signature: 796 }; A.InvoiceNinjaAppState_build__closure34.prototype = { call$1(context) { return new A.QuoteScreenBuilder(null); }, $signature: 851 }; A.InvoiceNinjaAppState_build__closure35.prototype = { call$1(context) { return new A.QuoteViewScreen(false, null); }, $signature: 852 }; A.InvoiceNinjaAppState_build__closure36.prototype = { call$1(context) { return new A.QuoteEditScreen(null); }, $signature: 853 }; A.InvoiceNinjaAppState_build__closure37.prototype = { call$1(context) { return new A.QuoteEmailScreen(null); }, $signature: 854 }; A.InvoiceNinjaAppState_build__closure38.prototype = { call$1(context) { return new A.QuotePdfScreen(true, null); }, $signature: 855 }; A.InvoiceNinjaAppState_build__closure39.prototype = { call$1(context) { return new A.PurchaseOrderScreenBuilder(null); }, $signature: 856 }; A.InvoiceNinjaAppState_build__closure40.prototype = { call$1(context) { return new A.PurchaseOrderViewScreen(false, null); }, $signature: 857 }; A.InvoiceNinjaAppState_build__closure41.prototype = { call$1(context) { return new A.PurchaseOrderEditScreen(null); }, $signature: 858 }; A.InvoiceNinjaAppState_build__closure42.prototype = { call$1(context) { return new A.RecurringExpenseScreenBuilder(null); }, $signature: 859 }; A.InvoiceNinjaAppState_build__closure43.prototype = { call$1(context) { return new A.RecurringExpenseViewScreen(null); }, $signature: 860 }; A.InvoiceNinjaAppState_build__closure44.prototype = { call$1(context) { return new A.RecurringExpenseEditScreen(null); }, $signature: 861 }; A.InvoiceNinjaAppState_build__closure45.prototype = { call$1(context) { return new A.SubscriptionScreenBuilder(null); }, $signature: 862 }; A.InvoiceNinjaAppState_build__closure46.prototype = { call$1(context) { return new A.SubscriptionViewScreen(false, null); }, $signature: 863 }; A.InvoiceNinjaAppState_build__closure47.prototype = { call$1(context) { return new A.SubscriptionEditScreen(null); }, $signature: 864 }; A.InvoiceNinjaAppState_build__closure48.prototype = { call$1(context) { return new A.TaskStatusScreenBuilder(null); }, $signature: 865 }; A.InvoiceNinjaAppState_build__closure49.prototype = { call$1(context) { return new A.TaskStatusViewScreen(false, null); }, $signature: 866 }; A.InvoiceNinjaAppState_build__closure50.prototype = { call$1(context) { return new A.TaskStatusEditScreen(null); }, $signature: 867 }; A.InvoiceNinjaAppState_build__closure51.prototype = { call$1(context) { return new A.ExpenseCategoryScreenBuilder(null); }, $signature: 868 }; A.InvoiceNinjaAppState_build__closure52.prototype = { call$1(context) { return new A.ExpenseCategoryViewScreen(false, null); }, $signature: 869 }; A.InvoiceNinjaAppState_build__closure53.prototype = { call$1(context) { return new A.ExpenseCategoryEditScreen(null); }, $signature: 870 }; A.InvoiceNinjaAppState_build__closure54.prototype = { call$1(context) { return new A.RecurringInvoiceScreenBuilder(null); }, $signature: 871 }; A.InvoiceNinjaAppState_build__closure55.prototype = { call$1(context) { return new A.RecurringInvoiceViewScreen(false, null); }, $signature: 872 }; A.InvoiceNinjaAppState_build__closure56.prototype = { call$1(context) { return new A.RecurringInvoiceEditScreen(null); }, $signature: 873 }; A.InvoiceNinjaAppState_build__closure57.prototype = { call$1(context) { return new A.RecurringInvoicePdfScreen(null); }, $signature: 874 }; A.InvoiceNinjaAppState_build__closure58.prototype = { call$1(context) { return new A.WebhookScreenBuilder(null); }, $signature: 875 }; A.InvoiceNinjaAppState_build__closure59.prototype = { call$1(context) { return new A.WebhookViewScreen(null); }, $signature: 876 }; A.InvoiceNinjaAppState_build__closure60.prototype = { call$1(context) { return new A.WebhookEditScreen(null); }, $signature: 877 }; A.InvoiceNinjaAppState_build__closure61.prototype = { call$1(context) { return new A.TokenScreenBuilder(null); }, $signature: 878 }; A.InvoiceNinjaAppState_build__closure62.prototype = { call$1(context) { return new A.TokenViewScreen(null); }, $signature: 879 }; A.InvoiceNinjaAppState_build__closure63.prototype = { call$1(context) { return new A.TokenEditScreen(null); }, $signature: 880 }; A.InvoiceNinjaAppState_build__closure64.prototype = { call$1(context) { return new A.PaymentTermScreenBuilder(null); }, $signature: 881 }; A.InvoiceNinjaAppState_build__closure65.prototype = { call$1(context) { return new A.PaymentTermEditScreen(null); }, $signature: 882 }; A.InvoiceNinjaAppState_build__closure66.prototype = { call$1(context) { return new A.PaymentTermViewScreen(null); }, $signature: 883 }; A.InvoiceNinjaAppState_build__closure67.prototype = { call$1(context) { return new A.DesignScreenBuilder(null); }, $signature: 884 }; A.InvoiceNinjaAppState_build__closure68.prototype = { call$1(context) { return new A.DesignViewScreen(false, null); }, $signature: 885 }; A.InvoiceNinjaAppState_build__closure69.prototype = { call$1(context) { return new A.DesignEditScreen(null); }, $signature: 886 }; A.InvoiceNinjaAppState_build__closure70.prototype = { call$1(context) { return new A.CreditScreenBuilder(null); }, $signature: 887 }; A.InvoiceNinjaAppState_build__closure71.prototype = { call$1(context) { return new A.CreditViewScreen(false, null); }, $signature: 888 }; A.InvoiceNinjaAppState_build__closure72.prototype = { call$1(context) { return new A.CreditEditScreen(null); }, $signature: 889 }; A.InvoiceNinjaAppState_build__closure73.prototype = { call$1(context) { return new A.CreditEmailScreen(null); }, $signature: 890 }; A.InvoiceNinjaAppState_build__closure74.prototype = { call$1(context) { return new A.CreditPdfScreen(true, null); }, $signature: 891 }; A.InvoiceNinjaAppState_build__closure75.prototype = { call$1(context) { return new A.UserScreenBuilder(null); }, $signature: 892 }; A.InvoiceNinjaAppState_build__closure76.prototype = { call$1(context) { return new A.UserViewScreen(false, null); }, $signature: 893 }; A.InvoiceNinjaAppState_build__closure77.prototype = { call$1(context) { return new A.UserEditScreen(null); }, $signature: 894 }; A.InvoiceNinjaAppState_build__closure78.prototype = { call$1(context) { return new A.GroupScreenBuilder(null); }, $signature: 895 }; A.InvoiceNinjaAppState_build__closure79.prototype = { call$1(context) { return new A.GroupViewScreen(false, null); }, $signature: 896 }; A.InvoiceNinjaAppState_build__closure80.prototype = { call$1(context) { return new A.GroupEditScreen(null); }, $signature: 897 }; A.InvoiceNinjaAppState_build__closure81.prototype = { call$1(context) { return new A.SettingsScreenBuilder(null); }, $signature: 898 }; A.InvoiceNinjaAppState_build__closure82.prototype = { call$1(context) { return new A.ReportsScreenBuilder(null); }, $signature: 899 }; A.InvoiceNinjaAppState_build__closure83.prototype = { call$1(context) { return new A.CompanyDetailsScreen(null); }, $signature: 900 }; A.InvoiceNinjaAppState_build__closure84.prototype = { call$1(context) { return new A.UserDetailsScreen(null); }, $signature: 901 }; A.InvoiceNinjaAppState_build__closure85.prototype = { call$1(context) { return new A.LocalizationScreen(null); }, $signature: 902 }; A.InvoiceNinjaAppState_build__closure86.prototype = { call$1(context) { return new A.PaymentsSettingsScreen(null); }, $signature: 903 }; A.InvoiceNinjaAppState_build__closure87.prototype = { call$1(context) { return new A.CompanyGatewayScreenBuilder(null); }, $signature: 904 }; A.InvoiceNinjaAppState_build__closure88.prototype = { call$1(context) { return new A.CompanyGatewayViewScreen(false, null); }, $signature: 905 }; A.InvoiceNinjaAppState_build__closure89.prototype = { call$1(context) { return new A.CompanyGatewayEditScreen(null); }, $signature: 906 }; A.InvoiceNinjaAppState_build__closure90.prototype = { call$1(context) { return new A.TaxSettingsScreen(null); }, $signature: 907 }; A.InvoiceNinjaAppState_build__closure91.prototype = { call$1(context) { return new A.TaxRateScreenBuilder(null); }, $signature: 908 }; A.InvoiceNinjaAppState_build__closure92.prototype = { call$1(context) { return new A.TaxRateViewScreen(null); }, $signature: 909 }; A.InvoiceNinjaAppState_build__closure93.prototype = { call$1(context) { return new A.TaxRateEditScreen(null); }, $signature: 910 }; A.InvoiceNinjaAppState_build__closure94.prototype = { call$1(context) { return new A.ProductSettingsScreen(null); }, $signature: 911 }; A.InvoiceNinjaAppState_build__closure95.prototype = { call$1(context) { return new A.ExpenseSettingsScreen(null); }, $signature: 912 }; A.InvoiceNinjaAppState_build__closure96.prototype = { call$1(context) { return new A.TaskSettingsScreen(null); }, $signature: 913 }; A.InvoiceNinjaAppState_build__closure97.prototype = { call$1(context) { return new A.ImportExportScreen(null); }, $signature: 914 }; A.InvoiceNinjaAppState_build__closure98.prototype = { call$1(context) { return new A.DeviceSettingsScreen(null); }, $signature: 915 }; A.InvoiceNinjaAppState_build__closure99.prototype = { call$1(context) { return new A.AccountManagementScreen(null); }, $signature: 916 }; A.InvoiceNinjaAppState_build__closure100.prototype = { call$1(context) { return new A.CustomFieldsScreen(null); }, $signature: 917 }; A.InvoiceNinjaAppState_build__closure101.prototype = { call$1(context) { return new A.GeneratedNumbersScreen(null); }, $signature: 918 }; A.InvoiceNinjaAppState_build__closure102.prototype = { call$1(context) { return new A.WorkflowSettingsScreen(null); }, $signature: 919 }; A.InvoiceNinjaAppState_build__closure103.prototype = { call$1(context) { return new A.InvoiceDesignScreen(null); }, $signature: 920 }; A.InvoiceNinjaAppState_build__closure104.prototype = { call$1(context) { return new A.ClientPortalScreen(null); }, $signature: 921 }; A.InvoiceNinjaAppState_build__closure105.prototype = { call$1(context) { return new A.EmailSettingsScreen(null); }, $signature: 922 }; A.InvoiceNinjaAppState_build__closure106.prototype = { call$1(context) { return new A.TemplatesAndRemindersScreen(null); }, $signature: 923 }; A.InvoiceNinjaAppState_build__closure107.prototype = { call$1(context) { return new A.CreditCardsAndBanksScreen(null); }, $signature: 924 }; A.InvoiceNinjaAppState_build__closure108.prototype = { call$1(context) { return new A.DataVisualizationsScreen(null); }, $signature: 925 }; A.MyCustomScrollBehavior.prototype = { get$dragDevices() { return A.LinkedHashSet_LinkedHashSet$_literal([B.PointerDeviceKind_0, B.PointerDeviceKind_1], type$.legacy_PointerDeviceKind); } }; A.PersistData.prototype = {}; A.ClearPersistedData.prototype = {}; A.SwitchListTableLayout.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.PopLastHistory.prototype = {$isPersistUI: 1}; A.DismissNativeWarning.prototype = {$isPersistUI: 1}; A.DismissNativeWarningPermanently.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.DismissGatewayWarningPermanently.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.ViewMainScreen.prototype = {}; A.StartSaving.prototype = {}; A.StopSaving.prototype = {}; A.LoadStaticSuccess.prototype = {$isPersistStatic: 1}; A.ToggleEditorLayout.prototype = {$isPersistPrefs: 1}; A.ToggleViewerLayout.prototype = {$isPersistPrefs: 1}; A.TogglePreviewSidebar.prototype = {}; A.UpdateUserPreferences.prototype = {$isPersistPrefs: 1}; A.LoadAccountSuccess.prototype = {$isStopLoading: 1}; A.ResendConfirmation.prototype = {$isStartLoading: 1}; A.ResendConfirmationFailure.prototype = {$isStopLoading: 1}; A.ResendConfirmationSuccess.prototype = {$isStopLoading: 1}; A.RefreshData.prototype = {$isStartLoading: 1}; A.RefreshDataSuccess.prototype = {$isStopLoading: 1}; A.RefreshDataFailure.prototype = {$isStopLoading: 1}; A.PreviewEntity.prototype = {}; A.ClearPreviewStack.prototype = {}; A.PopPreviewStack.prototype = {}; A.PopFilterStack.prototype = {}; A.ClearData.prototype = {}; A.ClearLastError.prototype = {}; A.DiscardChanges.prototype = {}; A.ClearEntityFilter.prototype = {}; A.ClearEntitySelection.prototype = {}; A.FilterByEntity.prototype = {$isPersistUI: 1}; A.FilterCompany.prototype = {$isPersistUI: 1}; A.viewEntitiesByType_closure.prototype = { call$0() { var t2, t3, t4, _this = this, _null = null, _s6_ = "_state", t1 = _this.filterEntity; if (t1 != null) { t2 = _this.uiState; t3 = t2.filterStack._list; t4 = t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType(); if (t4 == t1.get$entityType()) { if (t3.length === 0) t3 = _null; else { t3 = B.JSArray_methods.get$last(t3); t3 = t3.get$id(t3); } t3 = t3 !== t1.get$id(t1); } else t3 = true; if (t3) { t3 = _this.store; t3.get$_dispatchers()[0].call$1(new A.ClearEntitySelection(_this.entityType)); t3.get$_dispatchers()[0].call$1(new A.FilterByEntity(t1, false)); } t1 = t2; } else { t1 = _this.uiState; t2 = t1.filterStack._list; if ((t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) != null) _this.store.get$_dispatchers()[0].call$1(new A.ClearEntityFilter()); } if (t1.previewStack._list.length !== 0) _this.store.get$_dispatchers()[0].call$1(new A.ClearPreviewStack()); t1 = _this.store; if (A._lateReadCheck(t1.__Store__state, _s6_).prefState.isPreviewVisible && A._lateReadCheck(t1.__Store__state, _s6_).prefState.moduleLayout === B.ModuleLayout_table) t1.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); switch (_this.entityType) { case B.EntityType_dashboard: _this._box_0.action = new A.ViewDashboard(false, _null); break; case B.EntityType_reports: _this._box_0.action = new A.ViewReports(); break; case B.EntityType_settings: t2 = A._lateReadCheck(t1.__Store__state, _s6_); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = t3._list[t2].userCompany.company; t3 = A._lateReadCheck(t1.__Store__state, _s6_); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; _this._box_0.action = new A.ViewSettings(t2, _null, _null, t4._list[t3].userCompany.user, false, _null, true, _null); break; case B.EntityType_client: _this._box_0.action = new A.ViewClientList(); break; case B.EntityType_user: _this._box_0.action = new A.ViewUserList(); break; case B.EntityType_project: _this._box_0.action = new A.ViewProjectList(); break; case B.EntityType_taxRate: _this._box_0.action = new A.ViewTaxRateList(); break; case B.EntityType_companyGateway: _this._box_0.action = new A.ViewCompanyGatewayList(); break; case B.EntityType_invoice: _this._box_0.action = new A.ViewInvoiceList(); break; case B.EntityType_quote: _this._box_0.action = new A.ViewQuoteList(); break; case B.EntityType_vendor: _this._box_0.action = new A.ViewVendorList(); break; case B.EntityType_product: _this._box_0.action = new A.ViewProductList(); break; case B.EntityType_task: _this._box_0.action = new A.ViewTaskList(); break; case B.EntityType_expense: _this._box_0.action = new A.ViewExpenseList(); break; case B.EntityType_payment: _this._box_0.action = new A.ViewPaymentList(); break; case B.EntityType_group: _this._box_0.action = new A.ViewGroupList(); break; case B.EntityType_purchaseOrder: _this._box_0.action = new A.ViewPurchaseOrderList(); break; case B.EntityType_recurringExpense: _this._box_0.action = new A.ViewRecurringExpenseList(); break; case B.EntityType_subscription: _this._box_0.action = new A.ViewSubscriptionList(); break; case B.EntityType_taskStatus: _this._box_0.action = new A.ViewTaskStatusList(); break; case B.EntityType_expenseCategory: _this._box_0.action = new A.ViewExpenseCategoryList(); break; case B.EntityType_recurringInvoice: _this._box_0.action = new A.ViewRecurringInvoiceList(); break; case B.EntityType_webhook: _this._box_0.action = new A.ViewWebhookList(); break; case B.EntityType_token: _this._box_0.action = new A.ViewTokenList(); break; case B.EntityType_paymentTerm: _this._box_0.action = new A.ViewPaymentTermList(); break; case B.EntityType_design: _this._box_0.action = new A.ViewDesignList(); break; case B.EntityType_credit: _this._box_0.action = new A.ViewCreditList(); break; } t2 = _this._box_0.action; if (t2 != null) t1.get$_dispatchers()[0].call$1(t2); }, $signature: 1 }; A.viewEntityById_closure.prototype = { call$0() { var t1, t2, t3, t4, t5, filterEntity, _this = this, _null = null; if (_this.addToStack) { _this.store.get$_dispatchers()[0].call$1(new A.PreviewEntity(_this.entityId, _this.entityType)); return; } else { t1 = _this.state; if (t1.uiState.previewStack._list.length !== 0) _this.store.get$_dispatchers()[0].call$1(new A.ClearPreviewStack()); } t2 = t1.prefState; if (t2.appLayout === B.AppLayout_desktop && !t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); t3 = _this.filterEntity; if (t3 != null) { t4 = _this.uiState.filterStack._list; t5 = t4.length === 0 ? _null : B.JSArray_methods.get$last(t4).get$entityType(); if (t5 == t3.get$entityType()) { if (t4.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t4); t4 = t4.get$id(t4); } t4 = t4 !== t3.get$id(t3); } else t4 = true; } else t4 = false; if (t4) { t4 = _this.store; t4.get$_dispatchers()[0].call$1(new A.ClearEntitySelection(_this.entityType)); t4.get$_dispatchers()[0].call$1(new A.FilterByEntity(t3, false)); } else { t3 = _this.uiState.filterStack._list; if ((t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType()) != null) { if (t3.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t3); t4 = t4.get$id(t4); } if (t4 != _this.entityId) { t4 = t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType(); t4 = t4 == _this.entityType; } else t4 = false; } else t4 = false; if (t4) { t3 = B.JSArray_methods.get$last(t3); _this.store.get$_dispatchers()[0].call$1(new A.FilterByEntity(t3, true)); } } t3 = _this.entityId; if (t3 != null && _this.showError && !A._lateReadCheck(_this.store.__Store__state, "_state").getEntityMap$1(_this.entityType)._map$_map.containsKey$1(0, t3)) { t1 = $.$get$navigatorKey(); t1.toString; t2 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "failed_to_find_record"); A.showErrorDialog(false, t1, t2 == null ? "" : t2); return; } t4 = $.$get$navigatorKey(); t4.toString; if (A.getLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4)) === B.AppLayout_desktop) { t4 = _this.entityType; t4.toString; t4 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), t4); } else t4 = false; if (t4) { t4 = _this.entityType; if (!t2.isViewerFullScreen$1(t4)) _this.store.get$_dispatchers()[0].call$1(new A.ToggleViewerLayout(t4)); filterEntity = type$.legacy_BaseEntity._as(A._lateReadCheck(_this.store.__Store__state, "_state").getEntityMap$1(t4)._map$_map.$index(0, t3)); t2 = filterEntity.get$entityType().get$relatedTypes(); t2 = new A.WhereIterable(t2, new A.viewEntityById__closure(t1), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>")); A.viewEntitiesByType(t2.get$first(t2), filterEntity); return; } switch (_this.entityType) { case B.EntityType_client: _this.store.get$_dispatchers()[0].call$1(new A.ViewClient(t3)); break; case B.EntityType_user: _this.store.get$_dispatchers()[0].call$1(new A.ViewUser(t3)); break; case B.EntityType_project: _this.store.get$_dispatchers()[0].call$1(new A.ViewProject(t3)); break; case B.EntityType_taxRate: _this.store.get$_dispatchers()[0].call$1(new A.ViewTaxRate(t3)); break; case B.EntityType_companyGateway: _this.store.get$_dispatchers()[0].call$1(new A.ViewCompanyGateway(t3)); break; case B.EntityType_invoice: _this.store.get$_dispatchers()[0].call$1(new A.ViewInvoice(t3)); break; case B.EntityType_quote: _this.store.get$_dispatchers()[0].call$1(new A.ViewQuote(t3)); break; case B.EntityType_vendor: _this.store.get$_dispatchers()[0].call$1(new A.ViewVendor(t3)); break; case B.EntityType_product: _this.store.get$_dispatchers()[0].call$1(new A.ViewProduct(t3)); break; case B.EntityType_task: _this.store.get$_dispatchers()[0].call$1(new A.ViewTask(t3)); break; case B.EntityType_expense: _this.store.get$_dispatchers()[0].call$1(new A.ViewExpense(t3)); break; case B.EntityType_payment: _this.store.get$_dispatchers()[0].call$1(new A.ViewPayment(t3)); break; case B.EntityType_group: _this.store.get$_dispatchers()[0].call$1(new A.ViewGroup(t3)); break; case B.EntityType_purchaseOrder: _this.store.get$_dispatchers()[0].call$1(new A.ViewPurchaseOrder(t3)); break; case B.EntityType_recurringExpense: _this.store.get$_dispatchers()[0].call$1(new A.ViewRecurringExpense(t3)); break; case B.EntityType_subscription: _this.store.get$_dispatchers()[0].call$1(new A.ViewSubscription(t3)); break; case B.EntityType_taskStatus: _this.store.get$_dispatchers()[0].call$1(new A.ViewTaskStatus(t3)); break; case B.EntityType_expenseCategory: _this.store.get$_dispatchers()[0].call$1(new A.ViewExpenseCategory(t3)); break; case B.EntityType_recurringInvoice: _this.store.get$_dispatchers()[0].call$1(new A.ViewRecurringInvoice(t3)); break; case B.EntityType_webhook: _this.store.get$_dispatchers()[0].call$1(new A.ViewWebhook(t3)); break; case B.EntityType_token: _this.store.get$_dispatchers()[0].call$1(new A.ViewToken(t3)); break; case B.EntityType_paymentTerm: _this.store.get$_dispatchers()[0].call$1(new A.ViewPaymentTerm(t3)); break; case B.EntityType_design: _this.store.get$_dispatchers()[0].call$1(new A.ViewDesign(t3)); break; case B.EntityType_credit: _this.store.get$_dispatchers()[0].call$1(new A.ViewCredit(t3)); break; } }, $signature: 1 }; A.viewEntityById__closure.prototype = { call$1(entityType) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany; return t2.can$2(B.UserPermission_view, entityType) || t2.can$2(B.UserPermission_create, entityType); }, $signature: 273 }; A.createEntityByType_closure.prototype = { call$0() { var t3, filterEntityId, t4, filterEntityType, client, group, user, vendor, project, _this = this, _null = null, t1 = _this.state, t2 = t1.uiState; if (t2.previewStack._list.length !== 0) _this.store.get$_dispatchers()[0].call$1(new A.ClearPreviewStack()); t3 = t1.prefState; if (t3.appLayout === B.AppLayout_desktop && !t3.isEditorFullScreen$1(_this.entityType)) _this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(_this.entityType)); t3 = t2.filterStack._list; if (t3.length === 0) filterEntityId = _null; else { t4 = B.JSArray_methods.get$last(t3); filterEntityId = t4.get$id(t4); } filterEntityType = t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType(); if (_this.applyFilter && filterEntityType != null) switch (filterEntityType) { case B.EntityType_client: t2 = t2.selectedCompanyIndex; client = t1.userCompanyStates._list[t2].clientState.$get$1(0, filterEntityId); group = _null; user = group; vendor = user; project = vendor; break; case B.EntityType_project: t2 = t2.selectedCompanyIndex; t3 = t1.userCompanyStates._list; project = t3[t2].projectState.$get$1(0, filterEntityId); client = t3[t2].clientState.$get$1(0, project.clientId); group = _null; user = group; vendor = user; break; case B.EntityType_vendor: t2 = t2.selectedCompanyIndex; vendor = t1.userCompanyStates._list[t2].vendorState.$get$1(0, filterEntityId); group = _null; user = group; project = user; client = project; break; case B.EntityType_user: t2 = t2.selectedCompanyIndex; user = t1.userCompanyStates._list[t2].userState.$get$1(0, filterEntityId); group = _null; vendor = group; project = vendor; client = project; break; case B.EntityType_group: t2 = t2.selectedCompanyIndex; group = t1.userCompanyStates._list[t2].groupState.$get$1(0, filterEntityId); user = _null; vendor = user; project = vendor; client = project; break; default: group = _null; user = group; vendor = user; project = vendor; client = project; } else { group = _null; user = group; vendor = user; project = vendor; client = project; } switch (_this.entityType) { case B.EntityType_client: t1 = A.ClientEntity_ClientEntity(group, _null, t1, user); _this.store.get$_dispatchers()[0].call$1(new A.EditClient(t1, _null, _null)); break; case B.EntityType_user: t1 = A.UserEntity_UserEntity(_null, t1, A.UserCompanyEntity_UserCompanyEntity(false)); _this.store.get$_dispatchers()[0].call$1(new A.EditUser(t1)); break; case B.EntityType_project: t1 = A.ProjectEntity_ProjectEntity(client, _null, t1, user); _this.store.get$_dispatchers()[0].call$1(new A.EditProject(t1, _null, _null)); break; case B.EntityType_taxRate: t1 = A.TaxRateEntity_TaxRateEntity(_null, _null, _null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditTaxRate(t1)); break; case B.EntityType_companyGateway: t1 = A.CompanyGatewayEntity_CompanyGatewayEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditCompanyGateway(t1)); break; case B.EntityType_invoice: t1 = A.InvoiceEntity_InvoiceEntity(client, _null, _null, t1, user, _null); _this.store.get$_dispatchers()[0].call$1(new A.EditInvoice(t1, _null)); break; case B.EntityType_quote: t1 = A.InvoiceEntity_InvoiceEntity(client, B.EntityType_quote, _null, t1, user, _null); _this.store.get$_dispatchers()[0].call$1(new A.EditQuote(t1, _null)); break; case B.EntityType_vendor: t1 = A.VendorEntity_VendorEntity(_null, t1, user); _this.store.get$_dispatchers()[0].call$1(new A.EditVendor(t1, _null, _null)); break; case B.EntityType_product: t1 = A.ProductEntity_ProductEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditProduct(t1)); break; case B.EntityType_task: t1 = A.TaskEntity_TaskEntity(client, _null, project, t1, user); _this.store.get$_dispatchers()[0].call$1(new A.EditTask(_null, t1)); break; case B.EntityType_expense: t1 = A.ExpenseEntity_ExpenseEntity(client, _null, _null, project, t1, user, vendor); _this.store.get$_dispatchers()[0].call$1(new A.EditExpense(t1)); break; case B.EntityType_payment: t1 = A.PaymentEntity_PaymentEntity(client, _null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditPayment(t1)); break; case B.EntityType_group: t1 = A.GroupEntity_GroupEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditGroup(t1)); break; case B.EntityType_purchaseOrder: t1 = A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_purchaseOrder, _null, t1, _null, vendor); _this.store.get$_dispatchers()[0].call$1(new A.EditPurchaseOrder(t1)); break; case B.EntityType_recurringExpense: t1 = A.ExpenseEntity_ExpenseEntity(client, B.EntityType_recurringExpense, _null, project, t1, user, vendor); _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringExpense(t1)); break; case B.EntityType_subscription: t1 = A.SubscriptionEntity_SubscriptionEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditSubscription(t1)); break; case B.EntityType_taskStatus: t1 = A.TaskStatusEntity_TaskStatusEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditTaskStatus(t1)); break; case B.EntityType_expenseCategory: t1 = A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditExpenseCategory(t1)); break; case B.EntityType_recurringInvoice: t1 = A.InvoiceEntity_InvoiceEntity(client, B.EntityType_recurringInvoice, _null, t1, user, _null); _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringInvoice(t1)); break; case B.EntityType_webhook: t1 = A.WebhookEntity_WebhookEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditWebhook(t1)); break; case B.EntityType_token: t1 = A.TokenEntity_TokenEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditToken(t1)); break; case B.EntityType_paymentTerm: t1 = A.PaymentTermEntity_PaymentTermEntity(_null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditPaymentTerm(t1)); break; case B.EntityType_design: t1 = A.DesignEntity_DesignEntity(_null, _null, t1); _this.store.get$_dispatchers()[0].call$1(new A.EditDesign(t1)); break; case B.EntityType_credit: t1 = A.InvoiceEntity_InvoiceEntity(client, B.EntityType_credit, _null, t1, user, _null); _this.store.get$_dispatchers()[0].call$1(new A.EditCredit(t1)); break; } }, $signature: 1 }; A.createEntity_closure.prototype = { call$0() { var t1, _this = this; if (_this.uiState.previewStack._list.length !== 0) _this.store.get$_dispatchers()[0].call$1(new A.ClearPreviewStack()); t1 = _this.state.prefState; if (t1.appLayout === B.AppLayout_desktop && !t1.isEditorFullScreen$1(_this.entity.get$entityType())) { t1 = _this.entity.get$entityType(); _this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(t1)); } t1 = _this.entity; switch (t1.get$entityType()) { case B.EntityType_client: _this.store.get$_dispatchers()[0].call$1(new A.EditClient(t1, _this.completer, _this.cancelCompleter)); break; case B.EntityType_user: _this.store.get$_dispatchers()[0].call$1(new A.EditUser(t1)); break; case B.EntityType_project: _this.store.get$_dispatchers()[0].call$1(new A.EditProject(t1, _this.completer, _this.cancelCompleter)); break; case B.EntityType_taxRate: _this.store.get$_dispatchers()[0].call$1(new A.EditTaxRate(t1)); break; case B.EntityType_companyGateway: _this.store.get$_dispatchers()[0].call$1(new A.EditCompanyGateway(t1)); break; case B.EntityType_invoice: _this.store.get$_dispatchers()[0].call$1(new A.EditInvoice(t1, null)); break; case B.EntityType_quote: _this.store.get$_dispatchers()[0].call$1(new A.EditQuote(t1, null)); break; case B.EntityType_vendor: _this.store.get$_dispatchers()[0].call$1(new A.EditVendor(t1, _this.completer, _this.cancelCompleter)); break; case B.EntityType_product: _this.store.get$_dispatchers()[0].call$1(new A.EditProduct(t1)); break; case B.EntityType_task: _this.store.get$_dispatchers()[0].call$1(new A.EditTask(null, t1)); break; case B.EntityType_expense: _this.store.get$_dispatchers()[0].call$1(new A.EditExpense(t1)); break; case B.EntityType_payment: _this.store.get$_dispatchers()[0].call$1(new A.EditPayment(t1)); break; case B.EntityType_group: _this.store.get$_dispatchers()[0].call$1(new A.EditGroup(t1)); break; case B.EntityType_purchaseOrder: _this.store.get$_dispatchers()[0].call$1(new A.EditPurchaseOrder(t1)); break; case B.EntityType_recurringExpense: _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringExpense(t1)); break; case B.EntityType_subscription: _this.store.get$_dispatchers()[0].call$1(new A.EditSubscription(t1)); break; case B.EntityType_taskStatus: _this.store.get$_dispatchers()[0].call$1(new A.EditTaskStatus(t1)); break; case B.EntityType_expenseCategory: _this.store.get$_dispatchers()[0].call$1(new A.EditExpenseCategory(t1)); break; case B.EntityType_recurringInvoice: _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringInvoice(t1)); break; case B.EntityType_webhook: _this.store.get$_dispatchers()[0].call$1(new A.EditWebhook(t1)); break; case B.EntityType_token: _this.store.get$_dispatchers()[0].call$1(new A.EditToken(t1)); break; case B.EntityType_paymentTerm: _this.store.get$_dispatchers()[0].call$1(new A.EditPaymentTerm(t1)); break; case B.EntityType_design: _this.store.get$_dispatchers()[0].call$1(new A.EditDesign(t1)); break; case B.EntityType_credit: _this.store.get$_dispatchers()[0].call$1(new A.EditCredit(t1)); break; } }, $signature: 1 }; A.editEntity_closure.prototype = { call$0() { var t3, isFullScreen, invoice, _this = this, _null = null, t1 = _this.state, t2 = t1.prefState; if (t2.appLayout === B.AppLayout_desktop) { t3 = _this.entityType; isFullScreen = t2.isEditorFullScreen$1(t3); if (!(isFullScreen && !_this.fullScreen)) t2 = !isFullScreen && _this.fullScreen; else t2 = true; if (t2) _this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(t3)); } switch (_this.entityType) { case B.EntityType_client: _this.store.get$_dispatchers()[0].call$1(new A.EditClient(_this.entity, _this.completer, _null)); break; case B.EntityType_user: _this.store.get$_dispatchers()[0].call$1(new A.EditUser(_this.entity)); break; case B.EntityType_project: _this.store.get$_dispatchers()[0].call$1(new A.EditProject(_this.entity, _this.completer, _null)); break; case B.EntityType_taxRate: _this.store.get$_dispatchers()[0].call$1(new A.EditTaxRate(_this.entity)); break; case B.EntityType_companyGateway: _this.store.get$_dispatchers()[0].call$1(new A.EditCompanyGateway(_this.entity)); break; case B.EntityType_invoice: invoice = type$.legacy_InvoiceEntity._as(_this.entity); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; t1 = A.getClientSettings(t1, t2._list[t3].clientState.$get$1(0, invoice.clientId)).lockInvoices; if (t1 === "when_paid" && invoice.entityType === B.EntityType_invoice && invoice.statusId === "4") { t1 = _this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "paid_invoices_are_locked"); if (t1 == null) t1 = ""; A.showMessageDialog(_this.context, t1, _null, _null); } else if (t1 === "when_sent" && invoice.statusId !== "1") { t1 = _this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "sent_invoices_are_locked"); if (t1 == null) t1 = ""; A.showMessageDialog(_this.context, t1, _null, _null); } else _this.store.get$_dispatchers()[0].call$1(new A.EditInvoice(invoice, _this.subIndex)); break; case B.EntityType_quote: _this.store.get$_dispatchers()[0].call$1(new A.EditQuote(_this.entity, _this.subIndex)); break; case B.EntityType_vendor: _this.store.get$_dispatchers()[0].call$1(new A.EditVendor(_this.entity, _this.completer, _null)); break; case B.EntityType_product: _this.store.get$_dispatchers()[0].call$1(new A.EditProduct(_this.entity)); break; case B.EntityType_task: _this.store.get$_dispatchers()[0].call$1(new A.EditTask(_this.subIndex, _this.entity)); break; case B.EntityType_expense: _this.store.get$_dispatchers()[0].call$1(new A.EditExpense(_this.entity)); break; case B.EntityType_payment: _this.store.get$_dispatchers()[0].call$1(new A.EditPayment(_this.entity)); break; case B.EntityType_group: _this.store.get$_dispatchers()[0].call$1(new A.EditGroup(_this.entity)); break; case B.EntityType_purchaseOrder: _this.store.get$_dispatchers()[0].call$1(new A.EditPurchaseOrder(_this.entity)); break; case B.EntityType_recurringExpense: _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringExpense(_this.entity)); break; case B.EntityType_subscription: _this.store.get$_dispatchers()[0].call$1(new A.EditSubscription(_this.entity)); break; case B.EntityType_taskStatus: _this.store.get$_dispatchers()[0].call$1(new A.EditTaskStatus(_this.entity)); break; case B.EntityType_expenseCategory: _this.store.get$_dispatchers()[0].call$1(new A.EditExpenseCategory(_this.entity)); break; case B.EntityType_recurringInvoice: _this.store.get$_dispatchers()[0].call$1(new A.EditRecurringInvoice(_this.entity)); break; case B.EntityType_webhook: _this.store.get$_dispatchers()[0].call$1(new A.EditWebhook(_this.entity)); break; case B.EntityType_token: _this.store.get$_dispatchers()[0].call$1(new A.EditToken(_this.entity)); break; case B.EntityType_paymentTerm: _this.store.get$_dispatchers()[0].call$1(new A.EditPaymentTerm(_this.entity)); break; case B.EntityType_design: _this.store.get$_dispatchers()[0].call$1(new A.EditDesign(_this.entity)); break; case B.EntityType_credit: _this.store.get$_dispatchers()[0].call$1(new A.EditCredit(_this.entity)); break; } }, $signature: 1 }; A.checkForChanges_closure.prototype = { call$1(dialogContext) { var t1 = A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$errorUnsavedChanges(); t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "continue_editing"); if (t1 == null) t1 = ""; return new A.MessageDialog(t2, t1, null, null, new A.checkForChanges__closure(this.store, this.callback), null); }, $signature: 294 }; A.checkForChanges__closure.prototype = { call$0() { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.DiscardChanges()); t1.get$_dispatchers()[0].call$1(new A.ResetSettings()); this.callback.call$0(); }, $signature: 1 }; A._createLoadState_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_createLoadState_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createLoadState_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, state, prefState, i, companyState, appState, $navigator, routes, error, token, prefs, t1, t2, t3, t4, t5, exception, token0, _box_0, $async$exception, $async$exception1, $async$temp1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; type$.legacy_LoadStateRequest._as(dynamicAction); $async$handler = 3; state = A._lateReadCheck(store.__Store__state, "_state"); prefState = state.prefState; t1 = $async$self._box_1; $async$temp1 = t1; $async$goto = 6; return A._asyncAwait($async$self.authRepository.loadAuthState$0(), $async$call$3); case 6: // returning from await. $async$temp1.authState = $async$result; $async$temp1 = t1; $async$goto = 7; return A._asyncAwait($async$self.uiRepository.loadUIState$0(), $async$call$3); case 7: // returning from await. $async$temp1.uiState = $async$result; $async$temp1 = t1; $async$goto = 8; return A._asyncAwait($async$self.staticRepository.loadStaticState$0(), $async$call$3); case 8: // returning from await. $async$temp1.staticState = $async$result; i = 0, t2 = $async$self.companyStates, t3 = $async$self.companyRepositories; case 9: // for condition if (!(i < 10)) { // goto after for $async$goto = 11; break; } t4 = state; t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; t4 = t5._list[t4].userCompany.account; t4 = t4 == null ? null : t4.reportErrors; companyState = A.UserCompanyState_UserCompanyState(t4 === true); $async$handler = 13; $async$goto = 16; return A._asyncAwait(t3[i].loadCompanyState$1(i), $async$call$3); case 16: // returning from await. companyState = $async$result; $async$handler = 3; // goto after finally $async$goto = 15; break; case 13: // catch $async$handler = 12; $async$exception = $async$currentError; // goto after finally $async$goto = 15; break; case 12: // uncaught // goto catch $async$goto = 3; break; case 15: // after finally t2.push(companyState); case 10: // for update ++i; // goto for condition $async$goto = 9; break; case 11: // after for if (state.uiState.currentRoute !== "/login") t1.uiState = t1.uiState.rebuild$1(new A._createLoadState__closure(state)); t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; appState = A.AppState_AppState(null, prefState, null, t4._list[t3].userCompany.account.reportErrors, null).rebuild$1(new A._createLoadState__closure0(t1, t2)); t2 = $.$get$navigatorKey(); t2.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); store.get$_dispatchers()[0].call$1(new A.LoadStateSuccess(appState)); t3 = new A._Future($.Zone__current, type$._Future_Null); t3.then$1$1(0, new A._createLoadState__closure1(store), type$.Null); store.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t3, type$._AsyncCompleter_Null), false, false, false)); t1 = t1.uiState.currentRoute; if (t1 !== "/login" && t1.length !== 0 && prefState.persistUI) { $navigator = t2.get$currentState(); routes = A._getRoutes(appState); if (appState.prefState.appLayout === B.AppLayout_mobile) { _box_0.isFirst = true; J.forEach$1$ax(routes, new A._createLoadState__closure2(_box_0, $navigator)); } else { if (J.get$length$asx(routes) === 0 || J.get$last$ax(routes) === "/dashboard") store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); else { t1 = J.get$last$ax(routes); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } store.get$_dispatchers()[0].call$1(new A.ViewMainScreen()); } } else throw A.wrapException("Unknown page: " + t1); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception1 = $async$currentError; error = A.unwrapException($async$exception1); A.print("## ERROR (app_middleware - load state): " + A.S(error)); token = null; t1 = A.cleanApiUrl(A._lateReadCheck(store.__Store__state, "_state").authState.url); $async$goto = t1 === "https://demo.invoiceninja.com" ? 17 : 19; break; case 17: // then token = "TOKEN"; // goto join $async$goto = 18; break; case 19: // else $async$goto = 20; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3); case 20: // returning from await. prefs = $async$result; token0 = A._asStringQ(J.$index$asx(prefs._preferenceCache, "checksum")); token = token0 == null ? "" : token0; if (J.get$length$asx(token) !== 0) token = A.TokenEntity_unobscureToken(token); case 18: // join t1 = token; t1.toString; if (J.get$length$asx(t1) !== 0) { t1 = $.$get$navigatorKey(); t1.toString; if (A.calculateLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1)) === B.AppLayout_mobile) { t2 = A.UpdateUserPreferences$(B.AppLayout_mobile, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); store.get$_dispatchers()[0].call$1(t2); } else store.get$_dispatchers()[0].call$1(new A.ViewMainScreen()); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._createLoadState__closure3(store)); $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); } else store.get$_dispatchers()[0].call$1(new A.UserLogout()); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createLoadState__closure.prototype = { call$1(b) { var t1 = this.state.uiState.currentRoute; b.get$_ui_state$_$this()._currentRoute = t1; return b; }, $signature: 793 }; A._createLoadState__closure0.prototype = { call$1(b) { var _s5_ = "other", t1 = b.get$authState(), t2 = this._box_1, t3 = t2.authState; A.ArgumentError_checkNotNull(t3, _s5_); t1._$v = t3; t3 = b.get$uiState(); t1 = t2.uiState; A.ArgumentError_checkNotNull(t1, _s5_); t3._ui_state$_$v = t1; t1 = b.get$staticState(); t2 = t2.staticState; A.ArgumentError_checkNotNull(t2, _s5_); t1._static_state$_$v = t2; b.get$userCompanyStates().replace$1(0, this.companyStates); return b; }, $signature: 255 }; A._createLoadState__closure1.prototype = { call$1(value) { var t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); this.store.get$_dispatchers()[0].call$1(new A.UpdatedSetting()); }, $signature: 3 }; A._createLoadState__closure2.prototype = { call$1(route) { var t1 = this._box_0, t2 = this.navigator, t3 = type$.legacy_Object; if (t1.isFirst) t2.pushReplacementNamed$2$1(route, t3, t3); else t2.pushNamed$1$1(route, t3); t1.isFirst = false; }, $signature: 11 }; A._createLoadState__closure3.prototype = { call$1(duration) { this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); }, $signature: 36 }; A._getRoutes_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A._getRoutes_closure0.prototype = { call$1(part) { var t1, t2, exception, _this = this; if (part === "edit") { t1 = _this._box_0; t2 = _this.state.getUIState$1(t1.entityType); t2 = t2 == null ? null : t2.get$isCreatingNew(); if (t2 === true) t1.route += "/edit"; } else if (part !== "view") { if (!B.JSArray_methods.contains$1(A._setArrayType(["main", "dashboard", "settings"], type$.JSArray_legacy_String), part) && _this._box_0.entityType == null) try { _this._box_0.entityType = A._$typeValueOf(part); } catch (exception) { } t1 = _this._box_0; t1.route = t1.route + B.JSString_methods.$add("/", part); } _this.routes.push(_this._box_0.route); }, $signature: 11 }; A._createUserLoggedIn_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, i, _this = this; next.call$1(type$.legacy_UserLoginSuccess._as(dynamicAction)); state = A._lateReadCheck(store.__Store__state, "_state"); _this.authRepository.saveAuthState$1(state.authState); _this.uiRepository.saveUIState$1(state.uiState); _this.staticRepository.saveStaticState$1(state.staticState); if (state.prefState.persistData) for (t1 = state.userCompanyStates._list, t2 = _this.companyRepositories, i = 0; i < t1.length; ++i) t2[i].saveCompanyState$1(t1[i]); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createPersistData_closure.prototype = { call$3(store, dynamicAction, next) { var state, index, companyState; next.call$1(type$.legacy_PersistData._as(dynamicAction)); state = A._lateReadCheck(store.__Store__state, "_state"); index = state.uiState.selectedCompanyIndex; companyState = state.userCompanyStates._list[index]; if (state.prefState.persistData) this.companyRepositories[index].saveCompanyState$1(companyState); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createPersistUI_closure.prototype = { call$3(store, dynamicAction, next) { next.call$1(type$.legacy_PersistUI._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.persistUI) $.$get$_persistUIDebouncer().run$1(new A._createPersistUI__closure(this.uiRepository, store)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createPersistUI__closure.prototype = { call$0() { this.uiRepository.saveUIState$1(A._lateReadCheck(this.store.__Store__state, "_state").uiState); }, $signature: 1 }; A._createPersistPrefs_closure.prototype = { call$3(store, dynamicAction, next) { var string; next.call$1(type$.legacy_PersistPrefs._as(dynamicAction)); string = $.$get$serializers().serializeWith$2($.$get$_$prefStateSerializer(), A._lateReadCheck(store.__Store__state, "_state").prefState); A.SharedPreferences_getInstance().then$1$1(0, new A._createPersistPrefs__closure(string), type$.legacy_bool); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createPersistPrefs__closure.prototype = { call$1(prefs) { return prefs._setValue$3("String", "shared_prefs", B.C_JsonCodec.encode$1(this.string)); }, $signature: 935 }; A._createAccountLoaded_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_createAccountLoaded_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createAccountLoaded_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], selectedCompanyIndex, i, userCompany, prefs, error, t1, t2, exception, action, response, loadedStaticData, $async$exception; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start action = type$.legacy_LoadAccountSuccess._as(dynamicAction); response = action.loginResponse; loadedStaticData = response.$static.currencies._list.length !== 0; if (loadedStaticData) { t1 = response.$static; store.get$_dispatchers()[0].call$1(new A.LoadStaticSuccess(t1)); } selectedCompanyIndex = 0; $async$handler = 3; A.print("## Account Loaded: " + response.userCompanies._list.length); i = 0; case 6: // for condition if (!(i < Math.min(response.userCompanies._list.length, 10))) { // goto after for $async$goto = 8; break; } t1 = response.userCompanies; t2 = i; userCompany = t1._list[t2]; $async$goto = J.$eq$(i, 0) ? 9 : 10; break; case 9: // then $async$goto = 11; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3); case 11: // returning from await. prefs = $async$result; t1 = userCompany.token.token; t1 = B.C_Utf8Codec.get$encoder().convert$1(t1); prefs._setValue$3("String", "checksum", B.C_Base64Codec.get$encoder().convert$1(t1)); case 10: // join t1 = i; J.$index$asx(A._lateReadCheck(store.__Store__dispatchers, "_dispatchers"), 0).call$1(new A.SelectCompany(t1, loadedStaticData)); J.$index$asx(A._lateReadCheck(store.__Store__dispatchers, "_dispatchers"), 0).call$1(new A.LoadCompanySuccess(userCompany)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (t2._list[t1].userCompany.account.defaultCompanyId === userCompany.company.id) selectedCompanyIndex = i; case 7: // for update ++i; // goto for condition $async$goto = 6; break; case 8: // after for $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); t1 = action.completer; t1.completeError$1(error); throw $async$exception; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally t1 = selectedCompanyIndex; store.get$_dispatchers()[0].call$1(new A.SelectCompany(t1, loadedStaticData)); store.get$_dispatchers()[0].call$1(new A.UserLoginSuccess()); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].lastUpdated; if (t1 <= 0) if (response.userCompanies._list.length !== 0) if (response.userCompanies._list.length > selectedCompanyIndex) { t1 = response.userCompanies; t2 = selectedCompanyIndex; t2 = t1._list[t2].company.isLarge; t1 = t2; } else t1 = false; else t1 = false; else t1 = false; if (t1) store.get$_dispatchers()[0].call$1(new A.LoadClients(null, 1)); action.toString; action.completer.complete$1(0, null); next.call$1(action); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createDataRefreshed_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_createDataRefreshed_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createDataRefreshed_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], userCompany, i, userCompany0, prefs, error, t1, t2, exception, action, response, loadedStaticData, selectedCompanyIndex, $async$exception; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start action = type$.legacy_RefreshDataSuccess._as(dynamicAction); response = action.data; loadedStaticData = response.$static.currencies._list.length !== 0; selectedCompanyIndex = A._lateReadCheck(store.__Store__state, "_state").uiState.selectedCompanyIndex; if (loadedStaticData) { t1 = response.$static; store.get$_dispatchers()[0].call$1(new A.LoadStaticSuccess(t1)); } $async$handler = 3; $async$goto = response.userCompanies._list.length === 1 ? 6 : 8; break; case 6: // then userCompany = B.JSArray_methods.get$first(response.userCompanies._list); store.get$_dispatchers()[0].call$1(new A.LoadCompanySuccess(userCompany)); // goto join $async$goto = 7; break; case 8: // else i = 0; case 9: // for condition if (!(i < Math.min(response.userCompanies._list.length, 10))) { // goto after for $async$goto = 11; break; } t1 = response.userCompanies; t2 = i; userCompany0 = t1._list[t2]; $async$goto = J.$eq$(i, 0) ? 12 : 13; break; case 12: // then $async$goto = 14; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3); case 14: // returning from await. prefs = $async$result; t1 = userCompany0.token.token; t1 = B.C_Utf8Codec.get$encoder().convert$1(t1); prefs._setValue$3("String", "checksum", B.C_Base64Codec.get$encoder().convert$1(t1)); case 13: // join t1 = i; J.$index$asx(A._lateReadCheck(store.__Store__dispatchers, "_dispatchers"), 0).call$1(new A.SelectCompany(t1, loadedStaticData)); J.$index$asx(A._lateReadCheck(store.__Store__dispatchers, "_dispatchers"), 0).call$1(new A.LoadCompanySuccess(userCompany0)); case 10: // for update ++i; // goto for condition $async$goto = 9; break; case 11: // after for if (A._lateReadCheck(store.__Store__state, "_state").uiState.selectedCompanyIndex !== selectedCompanyIndex) store.get$_dispatchers()[0].call$1(new A.SelectCompany(selectedCompanyIndex, true)); case 7: // join $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); t1 = action.completer; if (t1 != null) t1.completeError$1(error); throw $async$exception; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally store.get$_dispatchers()[0].call$1(new A.PersistData()); if (action.completer != null) action.completer.complete$1(0, null); next.call$1(action); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (t2._list[t1].userCompany.company.isLarge) { t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].lastUpdated; t1 = t1 <= 0; } else t1 = false; if (t1) store.get$_dispatchers()[0].call$1(new A.LoadClients(null, 1)); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createPersistStatic_closure.prototype = { call$3(store, dynamicAction, next) { next.call$1(type$.legacy_PersistStatic._as(dynamicAction)); this.staticRepository.saveStaticState$1(A._lateReadCheck(store.__Store__state, "_state").staticState); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createDeleteState_closure.prototype = { call$3(store, action, next) { return this.$call$body$_createDeleteState_closure(store, action, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createDeleteState_closure(store, action, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, prefs; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.authRepository.delete$0(0); $async$self.uiRepository.delete$0(0); $async$self.staticRepository.delete$0(0); B.JSArray_methods.forEach$1($async$self.companyRepositories, new A._createDeleteState__closure()); $async$goto = 2; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3); case 2: // returning from await. prefs = $async$result; prefs.remove$1(0, "checksum"); prefs.remove$1(0, "url"); next.call$1(action); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createDeleteState__closure.prototype = { call$1(repo) { return repo.delete$0(0); }, $signature: 789 }; A._createViewMainScreen_closure.prototype = { call$3(store, dynamicAction, next) { var t1; type$.legacy_ViewMainScreen._as(dynamicAction); if (A._lateReadCheck(store.__Store__state, "_state").uiState.currentRoute === "/login") store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/dashboard")); for (; t1 = $.$get$navigatorKey(), t1.get$currentState().canPop$0();) t1.get$currentState().pop$0(0); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._createViewMainScreen__closure()); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createViewMainScreen__closure.prototype = { call$1(duration) { $.$get$navigatorKey().get$currentState().pushNamed$1$1("/main", type$.legacy_Object); }, $signature: 36 }; A._createClearData_closure.prototype = { call$3(store, action, next) { return this.$call$body$_createClearData_closure(store, action, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createClearData_closure(store, action, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start B.JSArray_methods.forEach$1($async$self.companyRepositories, new A._createClearData__closure()); next.call$1(action); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createClearData__closure.prototype = { call$1(repo) { return repo.delete$0(0); }, $signature: 789 }; A.appReducer_closure.prototype = { call$1(b) { var t1 = b.get$authState(), t2 = this.state, t3 = t2.authState.rebuild$1(new A.appReducer__closure()); A.ArgumentError_checkNotNull(t3, "other"); t1._$v = t3; b.get$_$this()._isTesting = t2.isTesting; return b; }, $signature: 255 }; A.appReducer__closure.prototype = { call$1(b) { b.get$_auth_state$_$this()._isAuthenticated = false; b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, $signature: 158 }; A.appReducer_closure0.prototype = { call$1(b) { b.get$_$this()._isLoading = false; b.get$_$this()._isSaving = false; return b; }, $signature: 255 }; A.appReducer_closure1.prototype = { call$1(b) { var t1 = b.get$userCompanyStates(), t2 = this.state, t3 = t2.uiState.selectedCompanyIndex; t2 = A.UserCompanyState_UserCompanyState(t2.userCompanyStates._list[t3].userCompany.account.reportErrors); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t3] = t2; return b; }, $signature: 255 }; A.appReducer_closure2.prototype = { call$1(b) { var t4, t5, t6, t7, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$loadingReducer().call$2(t1.isLoading, t2); b.get$_$this()._isLoading = t3; t3 = $.$get$savingReducer().call$2(t1.isSaving, t2); b.get$_$this()._isSaving = t3; t3 = $.$get$dismissedNativeWarningReducer().call$2(t1.dismissedNativeWarning, t2); b.get$_$this()._dismissedNativeWarning = t3; t3 = $.$get$lastErrorReducer().call$2(t1.lastError, t2); b.get$_$this()._lastError = t3; t3 = b.get$authState(); t4 = $.$get$authReducer().call$2(t1.authState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._$v = t4; t4 = b.get$staticState(); t3 = $.$get$staticReducer().call$2(t1.staticState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._static_state$_$v = t3; t3 = b.get$userCompanyStates(); t4 = t1.uiState; t5 = t4.selectedCompanyIndex; t6 = t1.userCompanyStates._list; t7 = A.companyReducer(t6[t5], t2); if (!$.$get$isSoundMode() && !t3.$ti._precomputed1._is(null)) if (t7 == null) A.throwExpression(A.ArgumentError$("null element", null)); t3.get$_safeList()[t5] = t7; t3 = b.get$uiState(); t4 = A.uiReducer(t4, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._ui_state$_$v = t4; t4 = b.get$prefState(); t5 = A.prefReducer(t1.prefState, t2, t6[t5].userCompany.company.id); A.ArgumentError_checkNotNull(t5, _s5_); t4._pref_state$_$v = t5; return b; }, $signature: 255 }; A.lastErrorReducer_closure.prototype = { call$2(state, action) { return ""; }, $signature: 938 }; A.lastErrorReducer_closure0.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 939 }; A.lastErrorReducer_closure1.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 940 }; A.lastErrorReducer_closure2.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 941 }; A.lastErrorReducer_closure3.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 942 }; A.lastErrorReducer_closure4.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 943 }; A.lastErrorReducer_closure5.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 944 }; A.lastErrorReducer_closure6.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 945 }; A.lastErrorReducer_closure7.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 946 }; A.lastErrorReducer_closure8.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 947 }; A.lastErrorReducer_closure9.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 948 }; A.lastErrorReducer_closure10.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 949 }; A.lastErrorReducer_closure11.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 950 }; A.lastErrorReducer_closure12.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 951 }; A.lastErrorReducer_closure13.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 952 }; A.lastErrorReducer_closure14.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 953 }; A.lastErrorReducer_closure15.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 954 }; A.lastErrorReducer_closure16.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 955 }; A.lastErrorReducer_closure17.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 956 }; A.lastErrorReducer_closure18.prototype = { call$2(state, action) { return A.S(action.error); }, $signature: 957 }; A.lastErrorReducer_closure19.prototype = { call$2(state, action) { return action.error; }, $signature: 958 }; A.dismissedNativeWarningReducer_closure.prototype = { call$2(state, action) { return true; }, $signature: 959 }; A.dismissedNativeWarningReducer_closure0.prototype = { call$2(state, action) { return true; }, $signature: 787 }; A.AppState.prototype = { get$company() { var t1 = this.uiState.selectedCompanyIndex; return this.userCompanyStates._list[t1].userCompany.company; }, get$companies() { var t1, t2, list = A._setArrayType([], type$.JSArray_legacy_CompanyEntity); for (t1 = this.userCompanyStates._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1.moveNext$0();) { t2 = t1.__interceptors$_current.userCompany.company; if (t2 != null) list.push(t2); } t1 = type$.WhereIterable_legacy_CompanyEntity; return A.List_List$of(new A.WhereIterable(list, new A.AppState_companies_closure(), t1), true, t1._eval$1("Iterable.E")); }, get$user(_) { var t1 = this.uiState.selectedCompanyIndex; return this.userCompanyStates._list[t1].userCompany.user; }, get$credentials(_) { var t1 = this.uiState.selectedCompanyIndex; return new A.Credentials(this.authState.url, this.userCompanyStates._list[t1].userCompany.token.token); }, get$hasAccentColor() { var t1, color, _this = this; if (A.cleanApiUrl(_this.authState.url) === "https://demo.invoiceninja.com") return true; t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany; t1 = t1 == null ? null : t1.settings; color = t1 == null ? null : t1.accentColor; if (color == null) color = ""; if (color === "#ffffff" && !_this.prefState.enableDarkMode) return false; return color.length !== 0; }, get$headerTextColor() { return this.prefState.enableDarkMode || this.get$hasAccentColor() ? A.convertHexStringToColor("#FFFFFF") : A.convertHexStringToColor("#000000"); }, get$accentColor() { var color, _this = this, _s7_ = "#2F7DC3", t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany; t1 = t1 == null ? null : t1.settings; color = t1 == null ? null : t1.accentColor; if (color == null) color = _s7_; if (color === "#ffffff" && !_this.prefState.enableDarkMode) color = _s7_; else if (color === "#000000" && _this.prefState.enableDarkMode) color = _s7_; return A.convertHexStringToColor(color); }, get$appVersion(_) { var version, t1 = this.uiState.selectedCompanyIndex; t1 = this.userCompanyStates._list[t1].userCompany.account; t1 = t1 == null ? null : t1.currentVersion; version = "v" + (t1 == null ? "" : t1); if (version.length !== 0) version += "-"; return B.JSString_methods.$add(version + A.getPlatformLetter(), B.JSArray_methods.get$last("5.0.88".split("."))); }, get$historyList() { var _this = this, t1 = _this.prefState.companyPrefs, t2 = _this.uiState.selectedCompanyIndex; t2 = _this.userCompanyStates._list[t2].userCompany.company.id; t2 = t1._map$_map.$index(0, t2).historyList._list; t1 = A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(t2, new A.AppState_historyList_closure(_this), t1), true, t1._eval$1("Iterable.E")); }, get$unfilteredHistoryList() { var t1 = this.prefState.companyPrefs, t2 = this.uiState.selectedCompanyIndex; t2 = this.userCompanyStates._list[t2].userCompany.company.id; t2 = t1._map$_map.$index(0, t2).historyList; return new A.CopyOnWriteList(true, t2._list, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")); }, shouldSelectEntity$2$entityList$entityType(entityList, entityType) { var _this = this, entityUIState = _this.getUIState$1(entityType), t1 = _this.prefState; if (t1.appLayout !== B.AppLayout_mobile) if (t1.isPreviewVisible) if (!_this.uiState.get$isEditing()) if (!(t1.moduleLayout === B.ModuleLayout_list && B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), entityType))) if (!entityType.get$isSetting()) if (J.get$isEmpty$asx(entityList)) { t1 = entityUIState.get$selectedId(); t1 = (t1 == null ? "" : t1).length === 0; } else t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return false; t1 = entityUIState.get$selectedId(); if ((t1 == null ? "" : t1).length === 0 || !J.contains$1$asx(entityList, entityUIState.get$selectedId())) return true; else { if (J.get$isNotEmpty$asx(_this.get$unfilteredHistoryList()._copy_on_write_list$_list)) { t1 = _this.uiState; t1 = !t1.get$isEditing() && !B.JSString_methods.endsWith$1(t1.currentRoute, "/email") && J.get$first$ax(_this.get$unfilteredHistoryList()._copy_on_write_list$_list).entityType !== entityType; } else t1 = false; if (t1) return null; } return false; }, getEntity$2(type, id) { var map = this.getEntityMap$1(type); return map != null ? map._map$_map.$index(0, id) : null; }, getEntityMap$1(type) { var t1, _this = this; switch (type) { case B.EntityType_product: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].productState.map; case B.EntityType_client: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].clientState.map; case B.EntityType_invoice: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].invoiceState.map; case B.EntityType_purchaseOrder: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].purchaseOrderState.map; case B.EntityType_recurringExpense: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].recurringExpenseState.map; case B.EntityType_subscription: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].subscriptionState.map; case B.EntityType_taskStatus: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].taskStatusState.map; case B.EntityType_expenseCategory: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].expenseCategoryState.map; case B.EntityType_recurringInvoice: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].recurringInvoiceState.map; case B.EntityType_webhook: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].webhookState.map; case B.EntityType_token: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].tokenState.map; case B.EntityType_paymentTerm: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].paymentTermState.map; case B.EntityType_design: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].designState.map; case B.EntityType_credit: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].creditState.map; case B.EntityType_user: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].userState.map; case B.EntityType_taxRate: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].taxRateState.map; case B.EntityType_companyGateway: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].companyGatewayState.map; case B.EntityType_group: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].groupState.map; case B.EntityType_document: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].documentState.map; case B.EntityType_expense: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].expenseState.map; case B.EntityType_vendor: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].vendorState.map; case B.EntityType_task: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].taskState.map; case B.EntityType_project: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].projectState.map; case B.EntityType_payment: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].paymentState.map; case B.EntityType_quote: t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].quoteState.map; case B.EntityType_paymentType: return _this.staticState.paymentTypeMap; case B.EntityType_currency: return _this.staticState.currencyMap; case B.EntityType_country: return _this.staticState.countryMap; case B.EntityType_language: return _this.staticState.languageMap; case B.EntityType_industry: return _this.staticState.industryMap; case B.EntityType_size: return _this.staticState.sizeMap; case B.EntityType_gateway: return _this.staticState.gatewayMap; case B.EntityType_dateFormat: return _this.staticState.dateFormatMap; case B.EntityType_timezone: return _this.staticState.timezoneMap; case B.EntityType_dashboard: case B.EntityType_reports: case B.EntityType_settings: return null; default: A.print("## ERROR: getEntityMap " + A.S(type) + " not found"); return null; } }, getUISelection$1(type) { var t3, entityUIState = this.getUIState$1(type), t1 = entityUIState.get$forceSelected() === true ? entityUIState.get$selectedId() : null, t2 = this.uiState.filterStack._list; if (t2.length === 0) t3 = null; else { t3 = B.JSArray_methods.get$last(t2); t3 = t3.get$id(t3); } return new A.SelectionState(t1, t3, t2.length === 0 ? null : B.JSArray_methods.get$last(t2).get$entityType()); }, getUIState$1(type) { var _this = this; switch (type) { case B.EntityType_product: return _this.uiState.productUIState; case B.EntityType_client: return _this.uiState.clientUIState; case B.EntityType_invoice: return _this.uiState.invoiceUIState; case B.EntityType_purchaseOrder: return _this.uiState.purchaseOrderUIState; case B.EntityType_recurringExpense: return _this.uiState.recurringExpenseUIState; case B.EntityType_subscription: return _this.uiState.subscriptionUIState; case B.EntityType_taskStatus: return _this.uiState.taskStatusUIState; case B.EntityType_expenseCategory: return _this.uiState.expenseCategoryUIState; case B.EntityType_recurringInvoice: return _this.uiState.recurringInvoiceUIState; case B.EntityType_webhook: return _this.uiState.webhookUIState; case B.EntityType_token: return _this.uiState.tokenUIState; case B.EntityType_paymentTerm: return _this.uiState.paymentTermUIState; case B.EntityType_design: return _this.uiState.designUIState; case B.EntityType_credit: return _this.uiState.creditUIState; case B.EntityType_user: return _this.uiState.userUIState; case B.EntityType_taxRate: return _this.uiState.taxRateUIState; case B.EntityType_companyGateway: return _this.uiState.companyGatewayUIState; case B.EntityType_group: return _this.uiState.groupUIState; case B.EntityType_document: return _this.uiState.documentUIState; case B.EntityType_expense: return _this.uiState.expenseUIState; case B.EntityType_vendor: return _this.uiState.vendorUIState; case B.EntityType_task: return _this.uiState.taskUIState; case B.EntityType_project: return _this.uiState.projectUIState; case B.EntityType_payment: return _this.uiState.paymentUIState; case B.EntityType_quote: return _this.uiState.quoteUIState; default: return null; } }, hasChanges$0() { var t3, _this = this, t1 = _this.uiState, t2 = t1.currentRoute; switch (t2) { case "/client/edit": t2 = t1.clientUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].clientState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/product/edit": t2 = t1.productUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].productState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/invoice/edit": t2 = t1.invoiceUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasInvoiceChanges(t2, _this.userCompanyStates._list[t1].invoiceState.map); case "/payment/edit": t2 = t1.paymentUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].paymentState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/quote/edit": t2 = t1.quoteUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasQuoteChanges(t2, _this.userCompanyStates._list[t1].quoteState.map); case "/project/edit": t2 = t1.projectUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].projectState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/task/edit": t2 = t1.taskUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasTaskChanges(t2, _this.userCompanyStates._list[t1].taskState.map); case "/vendor/edit": t2 = t1.vendorUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].vendorState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/expense/edit": t2 = t1.expenseUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasExpenseChanges(t2, _this.userCompanyStates._list[t1].expenseState.map); case "/settings/group_settings/edit": t2 = t1.groupUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].groupState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/tax_settings_rates/edit": t2 = t1.taxRateUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].taxRateState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/company_gateways/edit": t2 = t1.companyGatewayUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].companyGatewayState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/credit/edit": t2 = t1.creditUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasCreditChanges(t2, _this.userCompanyStates._list[t1].creditState.map); case "/purchase_order/edit": t2 = t1.purchaseOrderUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasPurchaseOrderChanges(t2, _this.userCompanyStates._list[t1].purchaseOrderState.map); case "/recurring_expense/edit": t2 = t1.recurringExpenseUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasRecurringExpenseChanges(t2, _this.userCompanyStates._list[t1].recurringExpenseState.map); case "/settings/subscriptions/edit": t2 = t1.subscriptionUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].subscriptionState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/task_status/edit": t2 = t1.taskStatusUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].taskStatusState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/expense_category/edit": t2 = t1.expenseCategoryUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].expenseCategoryState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/recurring_invoice/edit": t2 = t1.recurringInvoiceUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasRecurringInvoiceChanges(t2, _this.userCompanyStates._list[t1].recurringInvoiceState.map); case "/settings/webhook/edit": t2 = t1.webhookUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].webhookState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/token/edit": t2 = t1.tokenUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].tokenState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/payment_term/edit": t2 = t1.paymentTermUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].paymentTermState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; case "/settings/custom_designs/edit": t2 = t1.designUIState.editing; t1 = t1.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].designState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, t1._map$_map.$index(0, t3)); t1 = t3; } return t1; } if (B.JSString_methods.startsWith$1(t2, "/settings")) return t1.settingsUIState.isChanged; if (B.JSString_methods.endsWith$1(t2, "/edit")) throw A.wrapException("AppState.hasChanges is not defined for " + t2); return false; }, get$isHosted() { var t1 = this.uiState.selectedCompanyIndex; t1 = this.userCompanyStates._list[t1].userCompany.account; return t1 == null ? this.authState.get$isHosted() : t1.isHosted; }, get$isPaidAccount() { var t1, _this = this; if (!_this.get$isHosted()) { t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany.account.plan === "white_label"; } else { if (_this.get$isHosted()) { t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (!t1) { t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany.account.plan === "pro"; } else t1 = true; if (!t1) if (_this.get$isHosted()) { t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; else t1 = true; if (t1) { if (_this.get$isHosted()) { t1 = _this.uiState.selectedCompanyIndex; t1 = _this.userCompanyStates._list[t1].userCompany.account.trialDaysLeft > 0; } else t1 = false; t1 = !t1; } else t1 = false; } return t1; }, get$isUpdateAvailable() { var t1, t2; if (!this.get$isHosted()) { t1 = this.uiState.selectedCompanyIndex; t2 = this.userCompanyStates._list; t1 = t2[t1].userCompany.account.get$isUpdateAvailable() && t2[t1].userCompany.isAdmin; } else t1 = false; return t1; }, get$isUserConfirmed() { if (!this.get$isHosted()) return true; var t1 = this.uiState.selectedCompanyIndex; t1 = this.userCompanyStates._list[t1].userCompany.user.emailVerifiedAt; return (t1 == null ? 0 : t1) > 0; }, get$createdAtLimit() { var t2, numberYearsActive, t1 = this.uiState.selectedCompanyIndex; t1 = this.userCompanyStates._list[t1].userCompany; t2 = t1.settings; numberYearsActive = t2 == null ? null : t2.numberYearsActive; if (numberYearsActive == null) numberYearsActive = 0; if (!t1.company.isLarge || numberYearsActive === 0) return 0; return B.JSNumber_methods.round$0(Date.now() / 1000) - numberYearsActive * 31536000; }, get$filterDeletedClients() { var t1 = this.uiState.selectedCompanyIndex; t1 = this.userCompanyStates._list[t1].userCompany; if (!t1.company.isLarge) return false; return !t1.settings.includeDeletedClients; }, get$canAddCompany() { var _this = this, t1 = _this.uiState.selectedCompanyIndex; return _this.userCompanyStates._list[t1].userCompany.isOwner && _this.get$companies().length < 10 && A.cleanApiUrl(_this.authState.url) !== "https://demo.invoiceninja.com"; }, get$isMenuCollapsed() { var t2, t1 = this.prefState; if (t1.appLayout === B.AppLayout_mobile) return false; if (t1.isFilterVisible) if (t1.get$showMenu()) { t2 = this.uiState; if (!B.JSString_methods.startsWith$1(t2.currentRoute, "/settings")) { t2 = t2.filterStack._list; t2 = (t2.length === 0 ? null : B.JSArray_methods.get$last(t2).get$entityType()) != null; } else t2 = false; } else t2 = false; else t2 = false; if (!t2) t1 = t1.menuSidebarMode === B.AppSidebarMode_collapse && !t1.isMenuVisible; else t1 = true; return t1; }, get$isFullScreen() { var isFullScreen, t2, t3, _this = this, _s18_ = "/recurring_expense", t1 = _this.uiState, mainRoute = B.JSString_methods.$add("/", t1.get$mainRoute()), subRoute = t1.get$subRoute(), isPdf = subRoute === "pdf"; if (B.JSArray_methods.contains$1(A._setArrayType(["/client", "/vendor", "/expense", "/invoice", "/quote", "/credit", "/recurring_invoice", _s18_, "/task", "/purchase_order"], type$.JSArray_legacy_String), mainRoute)) if (subRoute === "email" || isPdf) isFullScreen = true; else if (subRoute === "edit") if (mainRoute === "/task") isFullScreen = _this.prefState.isEditorFullScreen$1(B.EntityType_task); else if (mainRoute === "/client") isFullScreen = _this.prefState.isEditorFullScreen$1(B.EntityType_client); else if (mainRoute === "/vendor") isFullScreen = _this.prefState.isEditorFullScreen$1(B.EntityType_vendor); else { t2 = mainRoute === "/expense" || mainRoute === _s18_; t3 = _this.prefState; isFullScreen = t2 ? t3.isEditorFullScreen$1(B.EntityType_expense) : t3.isEditorFullScreen$1(B.EntityType_invoice); } else isFullScreen = false; else isFullScreen = false; return "/settings/custom_designs/edit" === t1.currentRoute ? true : isFullScreen; }, get$hasRecentlyEnteredPassword() { var t2, t3, t1 = this.authState.lastEnteredPasswordAt; if (t1 === 0) return false; t2 = Date.now(); t3 = this.uiState.selectedCompanyIndex; return t2 - t1 < this.userCompanyStates._list[t3].userCompany.company.passwordTimeout; }, toString$0(_) { var t5, staticUpdated, t6, passwordUpdated, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, _null = null, _s5_ = "Blank", _s3_ = "Yes", _s2_ = "No", _s4_ = " [S]", t1 = _this.uiState, t2 = t1.selectedCompanyIndex, t3 = _this.userCompanyStates._list, t4 = t3[t2].lastUpdated, companyUpdated = t4 === 0 ? _s5_ : A.format(A.convertTimestampToDate(B.JSNumber_methods.round$0(t4 / 1000)), _null); t4 = _this.staticState; t5 = t4.updatedAt; staticUpdated = t5 == null || t5 === 0 ? _s5_ : A.format(A.convertTimestampToDate(B.JSNumber_methods.round$0(t5 / 1000)), _null); t5 = _this.authState; t6 = t5.lastEnteredPasswordAt; passwordUpdated = t6 === 0 ? _s5_ : A.format(A.convertTimestampToDate(B.JSNumber_methods.round$0(t6 / 1000)), _null); t6 = t1.clientUIState.forceSelected; t7 = t1.currentRoute; t8 = t1.previousRoute; t9 = A.S(t1.previewStack); t1 = t1.filterStack._list; t10 = A.S(t1.length === 0 ? _null : B.JSArray_methods.get$last(t1).get$entityType()); if (t1.length === 0) t1 = _null; else { t1 = B.JSArray_methods.get$last(t1); t1 = t1.get$id(t1); } t11 = _this.isLoading ? _s3_ : _s2_; t12 = _this.isSaving ? _s3_ : _s2_; t13 = t3[t2]; t14 = t13.lastUpdated; t14 = t14 > 0 ? _s3_ : _s2_; t15 = t13.userCompany.company; t15 = t15 == null ? _null : t15.isLarge; t15 = t15 === true ? _s3_ : _s2_; t13 = t13.get$isStale() ? _s4_ : ""; t4 = t4.get$isStale() ? _s4_ : ""; t16 = _this.get$hasRecentlyEnteredPassword() ? "" : _s4_; t17 = _this.get$hasAccentColor(); t2 = t3[t2].userCompany; t2 = t2 == null ? _null : t2.settings; t2 = t2 == null ? _null : t2.accentColor; if (t2 == null) t2 = ""; return "\n\nForce: " + A.S(t6) + "\n\nURL: " + t5.url + "\nRoute: " + t7 + "\nPrevious: " + t8 + "\nPreview: " + t9 + "\nFilter: " + t10 + " " + A.S(t1) + "\nIs Loading: " + t11 + "\nIs Saving: " + t12 + "\nIs Loaded: " + t14 + "\nis Large: " + t15 + "\nCompany: " + companyUpdated + t13 + "\nStatic: " + staticUpdated + t4 + "\nPassword: " + passwordUpdated + t16 + "\nAccent: " + t17 + " " + t2 + "\n"; } }; A.AppState_AppState_closure.prototype = { call$1(index) { return A.UserCompanyState_UserCompanyState(this.reportErrors); }, $signature: 961 }; A.AppState_companies_closure.prototype = { call$1(company) { var t1 = company.id; return t1.length !== 0; }, $signature: 786 }; A.AppState_historyList_closure.prototype = { call$1($history) { var t1, entity, entityMap = this.$this.getEntityMap$1($history.entityType); if (entityMap != null) { t1 = $history.id; entity = type$.legacy_BaseEntity._as(entityMap._map$_map.$index(0, t1)); if ((entity == null ? null : entity.get$isDeleted(entity)) === true) return false; } return true; }, $signature: 785 }; A.Credentials.prototype = { get$token() { return this.token; } }; A.SelectionState.prototype = {}; A._$AppStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["isLoading", serializers.serialize$2$specifiedType(object.isLoading, B.FullType_MtR), "isSaving", serializers.serialize$2$specifiedType(object.isSaving, B.FullType_MtR), "isTesting", serializers.serialize$2$specifiedType(object.isTesting, B.FullType_MtR), "dismissedNativeWarning", serializers.serialize$2$specifiedType(object.dismissedNativeWarning, B.FullType_MtR), "lastError", serializers.serialize$2$specifiedType(object.lastError, B.FullType_h8g), "authState", serializers.serialize$2$specifiedType(object.authState, B.FullType_DFh), "staticState", serializers.serialize$2$specifiedType(object.staticState, B.FullType_SQp0), "prefState", serializers.serialize$2$specifiedType(object.prefState, B.FullType_qBb0), "uiState", serializers.serialize$2$specifiedType(object.uiState, B.FullType_69P), "userCompanyStates", serializers.serialize$2$specifiedType(object.userCompanyStates, B.FullType_UH2)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, key, value, t10, t11, t12, t13, t14, _s5_ = "other", result = new A.AppStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_UserCompanyState, t3 = type$.ListBuilder_legacy_UserCompanyState, t4 = type$.legacy_UIState, t5 = type$.legacy_BaseEntity, t6 = type$.ListBuilder_legacy_BaseEntity, t7 = type$.legacy_PrefState, t8 = type$.legacy_StaticState, t9 = type$.legacy_AuthState; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "isLoading": t10 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_$this()._isLoading = t10; break; case "isSaving": t10 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_$this()._isSaving = t10; break; case "isTesting": t10 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_$this()._isTesting = t10; break; case "dismissedNativeWarning": t10 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_$this()._dismissedNativeWarning = t10; break; case "lastError": t10 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_$this()._lastError = t10; break; case "authState": t10 = result.get$_$this(); t11 = t10._authState; if (t11 == null) { t11 = new A.AuthStateBuilder(); t11.get$_auth_state$_$this()._referralCode = ""; t10._authState = t11; t10 = t11; } else t10 = t11; t11 = t9._as(serializers.deserialize$2$specifiedType(value, B.FullType_DFh)); if (t11 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t10._$v = t11; break; case "staticState": t10 = result.get$_$this(); t11 = t10._staticState; t10 = t11 == null ? t10._staticState = new A.StaticStateBuilder() : t11; t11 = t8._as(serializers.deserialize$2$specifiedType(value, B.FullType_SQp0)); if (t11 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t10._static_state$_$v = t11; break; case "prefState": t10 = result.get$_$this(); t11 = t10._prefState; if (t11 == null) { t11 = new A.PrefStateBuilder(); A.PrefState__initializeBuilder(t11); t10._prefState = t11; t10 = t11; } else t10 = t11; t11 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb0)); if (t11 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t10._pref_state$_$v = t11; break; case "uiState": t10 = result.get$_$this(); t11 = t10._uiState; if (t11 == null) { t11 = new A.UIStateBuilder(); t11.get$_ui_state$_$this()._lastActivityAt = 0; t12 = t11.get$_ui_state$_$this(); t13 = t12._filterStack; if (t13 == null) { t13 = new A.ListBuilder(t6); t13.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t12._filterStack = t13; t12 = t13; } else t12 = t13; t13 = A.BuiltList_BuiltList$from(B.List_empty, t5); t14 = t12.$ti; if (t14._eval$1("_BuiltList<1>")._is(t13)) { t12.__ListBuilder__list = t13._list; t12._listOwner = t13; } else { t12.__ListBuilder__list = A.List_List$from(t13, true, t14._precomputed1); t12._listOwner = null; } t10._uiState = t11; t10 = t11; } else t10 = t11; t11 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_69P)); if (t11 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t10._ui_state$_$v = t11; break; case "userCompanyStates": t10 = result.get$_$this(); t11 = t10._userCompanyStates; if (t11 == null) { t11 = new A.ListBuilder(t3); t11.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t10._userCompanyStates = t11; t10 = t11; } else t10 = t11; t11 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_UH2)); t12 = t10.$ti; if (t12._eval$1("_BuiltList<1>")._is(t11)) { t10.__ListBuilder__list = t11._list; t10._listOwner = t11; } else { t10.__ListBuilder__list = A.List_List$from(t11, true, t12._precomputed1); t10._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_FeV; }, get$wireName() { return "AppState"; } }; A._$AppState.prototype = { rebuild$1(updates) { var t1 = new A.AppStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._app_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.AppState && _this.isLoading === other.isLoading && _this.isSaving === other.isSaving && _this.isTesting === other.isTesting && _this.dismissedNativeWarning === other.dismissedNativeWarning && _this.lastError === other.lastError && _this.authState.$eq(0, other.authState) && J.$eq$(_this.staticState, other.staticState) && J.$eq$(_this.prefState, other.prefState) && J.$eq$(_this.uiState, other.uiState) && J.$eq$(_this.userCompanyStates, other.userCompanyStates); }, get$hashCode(_) { var _this = this, t1 = _this._app_state$__hashCode; if (t1 == null) { t1 = _this.authState; t1 = _this._app_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSBool_methods.get$hashCode(_this.isLoading)), B.JSBool_methods.get$hashCode(_this.isSaving)), B.JSBool_methods.get$hashCode(_this.isTesting)), B.JSBool_methods.get$hashCode(_this.dismissedNativeWarning)), B.JSString_methods.get$hashCode(_this.lastError)), t1.get$hashCode(t1)), J.get$hashCode$(_this.staticState)), J.get$hashCode$(_this.prefState)), J.get$hashCode$(_this.uiState)), J.get$hashCode$(_this.userCompanyStates))); } return t1; } }; A.AppStateBuilder.prototype = { get$authState() { var t1 = this.get$_$this(), t2 = t1._authState; if (t2 == null) { t2 = new A.AuthStateBuilder(); t2.get$_auth_state$_$this()._referralCode = ""; t1._authState = t2; t1 = t2; } else t1 = t2; return t1; }, get$staticState() { var t1 = this.get$_$this(), t2 = t1._staticState; return t2 == null ? t1._staticState = new A.StaticStateBuilder() : t2; }, get$prefState() { var t1 = this.get$_$this(), t2 = t1._prefState; if (t2 == null) { t2 = new A.PrefStateBuilder(); A.PrefState__initializeBuilder(t2); t1._prefState = t2; t1 = t2; } else t1 = t2; return t1; }, get$uiState() { var t1 = this.get$_$this(), t2 = t1._uiState; if (t2 == null) { t2 = new A.UIStateBuilder(); A.UIState__initializeBuilder(t2); t1._uiState = t2; t1 = t2; } else t1 = t2; return t1; }, get$userCompanyStates() { var t1 = this.get$_$this(), t2 = t1._userCompanyStates; return t2 == null ? t1._userCompanyStates = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_UserCompanyState) : t2; }, get$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._app_state$_$v; if ($$v != null) { _this._isLoading = $$v.isLoading; _this._isSaving = $$v.isSaving; _this._isTesting = $$v.isTesting; _this._dismissedNativeWarning = $$v.dismissedNativeWarning; _this._lastError = $$v.lastError; t1 = $$v.authState; t2 = new A.AuthStateBuilder(); t2.get$_auth_state$_$this()._referralCode = ""; A.ArgumentError_checkNotNull(t1, _s5_); t2._$v = t1; _this._authState = t2; t2 = $$v.staticState; t2.toString; t1 = new A.StaticStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._static_state$_$v = t2; _this._staticState = t1; t1 = $$v.prefState; t1.toString; t2 = new A.PrefStateBuilder(); A.PrefState__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._pref_state$_$v = t1; _this._prefState = t2; t2 = $$v.uiState; t2.toString; t1 = new A.UIStateBuilder(); A.UIState__initializeBuilder(t1); A.ArgumentError_checkNotNull(t2, _s5_); t1._ui_state$_$v = t2; _this._uiState = t1; t1 = $$v.userCompanyStates; t1.toString; _this._userCompanyStates = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._app_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s8_ = "AppState", _$result = null; try { _$result0 = _this._app_state$_$v; if (_$result0 == null) { t1 = _this.get$_$this()._isLoading; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "isLoading")); t2 = _this.get$_$this()._isSaving; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "isSaving")); t3 = _this.get$_$this()._isTesting; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "isTesting")); t4 = _this.get$_$this()._dismissedNativeWarning; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "dismissedNativeWarning")); t5 = _this.get$_$this()._lastError; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s8_, "lastError")); t6 = _this.get$authState().build$0(0); t7 = _this.get$staticState().build$0(0); _$result0 = A._$AppState$_(t6, t4, t1, t2, t3, t5, _this.get$prefState().build$0(0), t7, _this.get$uiState().build$0(0), _this.get$userCompanyStates().build$0(0)); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "authState"; _this.get$authState().build$0(0); _$failedField = "staticState"; _this.get$staticState().build$0(0); _$failedField = "prefState"; _this.get$prefState().build$0(0); _$failedField = "uiState"; _this.get$uiState().build$0(0); _$failedField = "userCompanyStates"; _this.get$userCompanyStates().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s8_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._app_state$_$v = t1; return _$result; } }; A.LoadStateRequest.prototype = {}; A.LoadStateSuccess.prototype = {}; A.OAuthLoginRequest.prototype = {$isStartLoading: 1}; A.UserLoadUrl.prototype = {}; A.UserLoginRequest.prototype = {$isStartLoading: 1}; A.UserLoginSuccess.prototype = {$isStopLoading: 1}; A.UserLoginFailure.prototype = {$isStopLoading: 1}; A.RecoverPasswordRequest.prototype = {$isStartLoading: 1}; A.RecoverPasswordSuccess.prototype = {$isStopLoading: 1}; A.RecoverPasswordFailure.prototype = {$isStopLoading: 1}; A.UserLogout.prototype = {$isPersistUI: 1, $isPersistData: 1}; A.UserLogoutAll.prototype = {$isStartLoading: 1}; A.UserLogoutAllSuccess.prototype = {$isStopLoading: 1}; A.UserLogoutAllFailure.prototype = {$isStopLoading: 1}; A.UserSignUpRequest.prototype = {$isStartLoading: 1}; A.OAuthSignUpRequest.prototype = {$isStartLoading: 1}; A.UserVerifiedPassword.prototype = {}; A.UserUnverifiedPassword.prototype = {}; A._createUserLogout_closure.prototype = { call$3(store, dynamicAction, next) { next.call$1(type$.legacy_UserLogout._as(dynamicAction)); $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/login", new A._createUserLogout__closure(), type$.legacy_Object); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/login")); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createUserLogout__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._createUserLogoutAll_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_UserLogoutAll._as(dynamicAction); this.repository.logout$1$credentials(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state"))).then$1$1(0, new A._createUserLogoutAll__closure(store), type$.Null).catchError$1(new A._createUserLogoutAll__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createUserLogoutAll__closure.prototype = { call$1(response) { var t1; A.print("## DONE MIDDLE"); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.UserLogoutAllSuccess()); t1.get$_dispatchers()[0].call$1(new A.UserLogout()); }, $signature: 7 }; A._createUserLogoutAll__closure0.prototype = { call$1(error) { this.action.completer.completeError$1(error); this.store.get$_dispatchers()[0].call$1(new A.UserLogoutAllFailure()); }, $signature: 3 }; A._createLoginRequest_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, t4, t5; type$.legacy_UserLoginRequest._as(dynamicAction); t1 = dynamicAction.email; t2 = dynamicAction.password; t3 = dynamicAction.url; t4 = dynamicAction.secret; t5 = dynamicAction.platform; this.repository.login$6$email$oneTimePassword$password$platform$secret$url(t1, dynamicAction.oneTimePassword, t2, t5, t4, t3).then$1$1(0, new A._createLoginRequest__closure(dynamicAction, store), type$.Null).catchError$1(new A._createLoginRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createLoginRequest__closure.prototype = { call$1(data) { var t2, t1 = this.action; A._saveAuthLocal(t1.url); t2 = this.store; t2.get$_dispatchers()[0].call$1(new A.LoadAccountSuccess(t1.completer, data)); t2.get$_dispatchers()[0].call$1(new A.UserVerifiedPassword()); }, $signature: 217 }; A._createLoginRequest__closure0.prototype = { call$1(error) { A.print("## Login error: " + A.S(error)); this.action.completer.completeError$1(A._parseError0(A.S(error))); this.store.get$_dispatchers()[0].call$1(new A.UserLoginFailure()); if (B.JSString_methods.startsWith$1(A.S(error), "Error ::")) throw A.wrapException(error); }, $signature: 3 }; A._createSignUpRequest_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_UserSignUpRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); this.repository.signUp$3$email$password$referralCode(dynamicAction.email, dynamicAction.password, state.authState.referralCode).then$1$1(0, new A._createSignUpRequest__closure(store, dynamicAction), type$.Null).catchError$1(new A._createSignUpRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createSignUpRequest__closure.prototype = { call$1(data) { var t1; A._saveAuthLocal("https://invoicing.co"); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadAccountSuccess(this.action.completer, data)); t1.get$_dispatchers()[0].call$1(new A.UserVerifiedPassword()); }, $signature: 217 }; A._createSignUpRequest__closure0.prototype = { call$1(error) { A.print("## Signup error: " + A.S(error)); this.action.completer.completeError$1(A._parseError0(A.S(error))); this.store.get$_dispatchers()[0].call$1(new A.UserLoginFailure()); if (B.JSString_methods.startsWith$1(A.S(error), "Error ::")) throw A.wrapException(error); }, $signature: 3 }; A._createOAuthLoginRequest_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, t4, t5, t6; type$.legacy_OAuthLoginRequest._as(dynamicAction); t1 = dynamicAction.idToken; t2 = dynamicAction.accessToken; t3 = dynamicAction.url; t4 = dynamicAction.secret; t5 = dynamicAction.provider; t6 = dynamicAction.platform; this.repository.oauthLogin$8$accessToken$authCode$email$idToken$platform$provider$secret$url(t2, dynamicAction.authCode, dynamicAction.email, t1, t6, t5, t4, t3).then$1$1(0, new A._createOAuthLoginRequest__closure(dynamicAction, store), type$.Null).catchError$1(new A._createOAuthLoginRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createOAuthLoginRequest__closure.prototype = { call$1(data) { var t2, t1 = this.action; A._saveAuthLocal(t1.url); t2 = this.store; t2.get$_dispatchers()[0].call$1(new A.LoadAccountSuccess(t1.completer, data)); t2.get$_dispatchers()[0].call$1(new A.UserVerifiedPassword()); }, $signature: 217 }; A._createOAuthLoginRequest__closure0.prototype = { call$1(error) { A.print("## Oauth login error: " + A.S(error)); this.action.completer.completeError$1(A._parseError0(A.S(error))); this.store.get$_dispatchers()[0].call$1(new A.UserLoginFailure()); if (B.JSString_methods.startsWith$1(A.S(error), "Error ::")) throw A.wrapException(error); }, $signature: 3 }; A._createOAuthSignUpRequest_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1; type$.legacy_OAuthSignUpRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = dynamicAction.url; this.repository.oauthSignUp$5$accessToken$idToken$provider$referralCode$url(dynamicAction.accessToken, dynamicAction.idToken, dynamicAction.provider, state.authState.referralCode, t1).then$1$1(0, new A._createOAuthSignUpRequest__closure(store, dynamicAction), type$.Null).catchError$1(new A._createOAuthSignUpRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createOAuthSignUpRequest__closure.prototype = { call$1(data) { var t1; A._saveAuthLocal("https://invoicing.co"); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadAccountSuccess(this.action.completer, data)); t1.get$_dispatchers()[0].call$1(new A.UserVerifiedPassword()); }, $signature: 217 }; A._createOAuthSignUpRequest__closure0.prototype = { call$1(error) { A.print("## OAuth signup error: " + A.S(error)); this.action.completer.completeError$1(A._parseError0(A.S(error))); this.store.get$_dispatchers()[0].call$1(new A.UserLoginFailure()); if (B.JSString_methods.startsWith$1(A.S(error), "Error ::")) throw A.wrapException(error); }, $signature: 3 }; A._createRefreshRequest_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_createRefreshRequest_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createRefreshRequest_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, state, t1, t2, t3, t4, url, t5, token, hasToken, updatedAt; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_RefreshData._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = dynamicAction.clearData; if (!t1) if (state.isSaving) { A.print("## Skipping refresh request - pending save"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } else if (state.isLoading) { A.print("## Skipping refresh request - pending load"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3]; if (t3.userCompany.company.isLarge) { t2 = t3.lastUpdated; t2 = t2 <= 0; } else t2 = false; if (t2) { A.print("## Skipping refresh request - not loaded"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } } $async$goto = 3; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3); case 3: // returning from await. t2 = $async$result._preferenceCache; t3 = J.getInterceptor$asx(t2); t4 = A._asStringQ(t3.$index(t2, "url")); url = A.formatApiUrl(t4 == null ? state.authState.url : t4); if (state == null) t4 = null; else { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = t4._list[t5].userCompany; t4 = t5; } t4 = t4 == null ? null : t4.token; t4 = t4 == null ? null : t4.token; if ((t4 == null ? "" : t4).length !== 0) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; token = t2._list[t3].userCompany.token.token; hasToken = true; } else { token = A.TokenEntity_unobscureToken(A._asStringQ(t3.$index(t2, "checksum"))); if (token == null) token = "TOKEN"; hasToken = false; } if (t1) updatedAt = 0; else { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; updatedAt = B.JSNumber_methods.round$0((t1._list[t2].lastUpdated - 900000) / 1000); } store.get$_dispatchers()[0].call$1(new A.UserLoadUrl(url)); t1 = dynamicAction.includeStatic || state.staticState.get$isStale(); t2 = hasToken && !dynamicAction.allCompanies; $async$self.repository.refresh$5$currentCompany$includeStatic$token$updatedAt$url(0, t2, t1, token, updatedAt - 600, url).then$1$1(0, new A._createRefreshRequest__closure(state, dynamicAction, store), type$.Null).catchError$1(new A._createRefreshRequest__closure0(store, dynamicAction)); next.call$1(dynamicAction); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createRefreshRequest__closure.prototype = { call$1(data) { var _this = this, t1 = {}; t1.permissionsWereChanged = false; B.JSArray_methods.forEach$1(data.userCompanies._list, new A._createRefreshRequest___closure(t1, _this.state)); if (t1.permissionsWereChanged && !_this.action.clearData) _this.store.get$_dispatchers()[0].call$1(new A.RefreshData(_this.action.completer, true, false, false)); else { t1 = _this.action; if (t1.clearData) _this.store.get$_dispatchers()[0].call$1(new A.ClearData()); _this.store.get$_dispatchers()[0].call$1(new A.RefreshDataSuccess(t1.completer, data)); } t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 217 }; A._createRefreshRequest___closure.prototype = { call$1(userCompany) { B.JSArray_methods.forEach$1(this.state.userCompanyStates._list, new A._createRefreshRequest____closure(this._box_0, userCompany)); }, $signature: 781 }; A._createRefreshRequest____closure.prototype = { call$1(userCompanyState) { var t1 = this.userCompany, t2 = t1.company.id, t3 = userCompanyState.userCompany; if (t2 === t3.company.id) { t2 = t3.permissionsUpdatedAt; if (t2 > 0 && t1.permissionsUpdatedAt !== t2) this._box_0.permissionsWereChanged = true; } }, $signature: 967 }; A._createRefreshRequest__closure0.prototype = { call$1(error) { var message, t1; if (B.JSString_methods.startsWith$1(A.S(error), "403") || B.JSString_methods.startsWith$1(A.S(error), "429")) this.store.get$_dispatchers()[0].call$1(new A.UserLogout()); else { message = A._parseError0(A.S(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(message); this.store.get$_dispatchers()[0].call$1(new A.RefreshDataFailure(message)); if (B.JSString_methods.startsWith$1(A.S(error), "Error ::")) throw A.wrapException(error); } }, $signature: 3 }; A._createRecoverRequest_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_RecoverPasswordRequest._as(dynamicAction); t1 = dynamicAction.email; t2 = dynamicAction.url; this.repository.recoverPassword$3$email$secret$url(t1, dynamicAction.secret, t2).then$1$1(0, new A._createRecoverRequest__closure(store, dynamicAction), type$.Null).catchError$1(new A._createRecoverRequest__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createRecoverRequest__closure.prototype = { call$1(data) { this.store.get$_dispatchers()[0].call$1(new A.RecoverPasswordSuccess()); this.action.completer.complete$1(0, null); }, $signature: 217 }; A._createRecoverRequest__closure0.prototype = { call$1(error) { J.toString$0$(error); this.store.get$_dispatchers()[0].call$1(new A.RecoverPasswordFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._createCompany_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_createCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createCompany_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_AddCompany._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); $async$self.repository.addCompany$1$credentials(state.get$credentials(state)).then$1$1(0, new A._createCompany__closure(store, state, dynamicAction), type$.Null); next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._createCompany__closure.prototype = { call$1(value) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.AddCompanySuccess()); t2 = new A._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new A._createCompany___closure(t1, this.state, this.action), type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), false, false, true)); }, $signature: 7 }; A._createCompany___closure.prototype = { call$1(_) { var t1 = this.store, t2 = this.state.get$companies().length; t1.get$_dispatchers()[0].call$1(new A.SelectCompany(t2, true)); t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(true, null)); this.action.completer.complete$0(0); }, $signature: 3 }; A._setDefaultCompany_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_setDefaultCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_setDefaultCompany_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_SetDefaultCompanyRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; $async$self.repository.setDefaultCompany$2$companyId$credentials(t1._list[t2].userCompany.company.id, state.get$credentials(state)).then$1$1(0, new A._setDefaultCompany__closure(store, dynamicAction), type$.Null).catchError$1(new A._setDefaultCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._setDefaultCompany__closure.prototype = { call$1(_) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SetDefaultCompanySuccess()); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, true)); this.action.completer.complete$0(0); }, $signature: 86 }; A._setDefaultCompany__closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.SetDefaultCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteCompany_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_deleteCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_deleteCompany_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3, t4; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_DeleteCompanyRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.get$credentials(state); t2 = dynamicAction.password; t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; $async$self.repository.deleteCompany$4$companyId$credentials$password$reason(t3._list[t4].userCompany.company.id, t1, t2, dynamicAction.reason).then$1$1(0, new A._deleteCompany__closure(store, dynamicAction), type$.Null).catchError$1(new A._deleteCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._deleteCompany__closure.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.DeleteCompanySuccess()); this.action.completer.complete$1(0, null); }, $signature: 7 }; A._deleteCompany__closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.DeleteCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._purgeData_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_purgeData_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_purgeData_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3, t4, t5; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_PurgeDataRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.get$credentials(state); t2 = dynamicAction.password; t3 = dynamicAction.idToken; t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; $async$self.repository.purgeData$4$companyId$credentials$idToken$password(t4._list[t5].userCompany.company.id, t1, t3, t2).then$1$1(0, new A._purgeData__closure(store, dynamicAction), type$.Null).catchError$1(new A._purgeData__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._purgeData__closure.prototype = { call$1(value) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.PurgeDataSuccess()); t2 = new A._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new A._purgeData___closure(this.action), type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), true, false, false)); }, $signature: 7 }; A._purgeData___closure.prototype = { call$1(value) { this.action.completer.complete$1(0, null); }, $signature: 3 }; A._purgeData__closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.PurgeDataFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._resendConfirmation_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_resendConfirmation_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_resendConfirmation_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ResendConfirmation._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.get$credentials(state); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; $async$self.repository.resendConfirmation$2$credentials$userId(t1, t2._list[t3].userCompany.user.id).then$1$1(0, new A._resendConfirmation__closure(store), type$.Null).catchError$1(new A._resendConfirmation__closure0(store)); next.call$1(dynamicAction); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._resendConfirmation__closure.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.ResendConfirmationSuccess()); }, $signature: 7 }; A._resendConfirmation__closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.ResendConfirmationFailure()); }, $signature: 3 }; A.userLoadUrlReducer_closure.prototype = { call$1(b) { var t1 = A.formatApiUrl(this.action.url); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 158 }; A.userSignUpRequestReducer_closure.prototype = { call$1(b) { var t1 = A.formatApiUrl("https://invoicing.co"); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 158 }; A.userLoginRequestReducer_closure.prototype = { call$1(b) { var t1 = this.action, t2 = A.formatApiUrl(t1.url); b.get$_auth_state$_$this()._auth_state$_url = t2; t1 = t1.email; b.get$_auth_state$_$this()._auth_state$_email = t1; return b; }, $signature: 158 }; A.oauthLoginRequestReducer_closure.prototype = { call$1(b) { var t1 = A.formatApiUrl(this.action.url); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 158 }; A.oauthSignUpRequestReducer_closure.prototype = { call$1(b) { var t1 = A.formatApiUrl("https://invoicing.co"); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 158 }; A.userLoginSuccessReducer_closure.prototype = { call$1(b) { b.get$_auth_state$_$this()._isAuthenticated = true; return b; }, $signature: 158 }; A.userVerifiedPasswordReducer_closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_auth_state$_$this()._lastEnteredPasswordAt = t1; return b; }, $signature: 158 }; A.userUnverifiedPasswordReducer_closure.prototype = { call$1(b) { b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, $signature: 158 }; A.AuthState.prototype = { get$isHosted() { var cleanUrl = A.cleanApiUrl(this.url); if (cleanUrl.length === 0) return true; if (B.JSArray_methods.contains$1(A._setArrayType(["https://invoicing.co", "https://demo.invoiceninja.com", "https://staging.invoicing.co"], type$.JSArray_legacy_String), cleanUrl)) return true; if (B.JSString_methods.endsWith$1(cleanUrl, ".invoicing.co")) return true; return false; } }; A._$AuthStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["email", serializers.serialize$2$specifiedType(object.email, B.FullType_h8g), "url", serializers.serialize$2$specifiedType(object.url, B.FullType_h8g), "isInitialized", serializers.serialize$2$specifiedType(object.isInitialized, B.FullType_MtR), "isAuthenticated", serializers.serialize$2$specifiedType(object.isAuthenticated, B.FullType_MtR), "lastEnteredPasswordAt", serializers.serialize$2$specifiedType(object.lastEnteredPasswordAt, B.FullType_kjq), "referralCode", serializers.serialize$2$specifiedType(object.referralCode, B.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new A.AuthStateBuilder(); result.get$_auth_state$_$this()._referralCode = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "email": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_auth_state$_$this()._auth_state$_email = t1; break; case "url": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_auth_state$_$this()._auth_state$_url = t1; break; case "isInitialized": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_auth_state$_$this()._isInitialized = t1; break; case "isAuthenticated": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_auth_state$_$this()._isAuthenticated = t1; break; case "lastEnteredPasswordAt": t1 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_auth_state$_$this()._lastEnteredPasswordAt = t1; break; case "referralCode": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_auth_state$_$this()._referralCode = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_cYh; }, get$wireName() { return "AuthState"; } }; A._$AuthState.prototype = { rebuild$1(updates) { var t1 = new A.AuthStateBuilder(); t1.get$_auth_state$_$this()._referralCode = ""; A.ArgumentError_checkNotNull(this, "other"); t1._$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.AuthState && _this.email === other.email && _this.url === other.url && _this.isInitialized === other.isInitialized && _this.isAuthenticated === other.isAuthenticated && _this.lastEnteredPasswordAt === other.lastEnteredPasswordAt && _this.referralCode === other.referralCode; }, get$hashCode(_) { var _this = this, t1 = _this._auth_state$__hashCode; return t1 == null ? _this._auth_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.email)), B.JSString_methods.get$hashCode(_this.url)), B.JSBool_methods.get$hashCode(_this.isInitialized)), B.JSBool_methods.get$hashCode(_this.isAuthenticated)), B.JSInt_methods.get$hashCode(_this.lastEnteredPasswordAt)), B.JSString_methods.get$hashCode(_this.referralCode))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("AuthState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "url", _this.url); t2.add$2(t1, "isInitialized", _this.isInitialized); t2.add$2(t1, "isAuthenticated", _this.isAuthenticated); t2.add$2(t1, "lastEnteredPasswordAt", _this.lastEnteredPasswordAt); t2.add$2(t1, "referralCode", _this.referralCode); return t2.toString$0(t1); } }; A.AuthStateBuilder.prototype = { get$_auth_state$_$this() { var _this = this, $$v = _this._$v; if ($$v != null) { _this._auth_state$_email = $$v.email; _this._auth_state$_url = $$v.url; _this._isInitialized = $$v.isInitialized; _this._isAuthenticated = $$v.isAuthenticated; _this._lastEnteredPasswordAt = $$v.lastEnteredPasswordAt; _this._referralCode = $$v.referralCode; _this._$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, _this = this, _s9_ = "AuthState", _$result = _this._$v; if (_$result == null) { t1 = _this.get$_auth_state$_$this()._auth_state$_email; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "email")); t2 = _this.get$_auth_state$_$this()._auth_state$_url; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "url")); t3 = _this.get$_auth_state$_$this()._isInitialized; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isInitialized")); t4 = _this.get$_auth_state$_$this()._isAuthenticated; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isAuthenticated")); t5 = _this.get$_auth_state$_$this()._lastEnteredPasswordAt; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "lastEnteredPasswordAt")); t6 = _this.get$_auth_state$_$this()._referralCode; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "referralCode")); _$result = A._$AuthState$_(t1, t4, t3, t5, t6, t2); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._$v = _$result; } }; A.ViewClientList.prototype = {$isPersistUI: 1}; A.ViewClient.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditClient.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$contact() { return null; } }; A.EditContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.ShowPdfClient.prototype = {}; A.UpdateClient.prototype = {$isPersistUI: 1}; A.LoadClient.prototype = {}; A.LoadClients.prototype = {}; A.LoadClientRequest.prototype = {$isStartLoading: 1}; A.LoadClientFailure.prototype = { toString$0(_) { return "LoadClientFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadClientSuccess.prototype = { toString$0(_) { return "LoadClientSuccess{client: " + A.S(this.client) + "}"; }, $isPersistData: 1, $isStopLoading: 1 }; A.LoadClientsRequest.prototype = {$isStartLoading: 1}; A.LoadClientsFailure.prototype = { toString$0(_) { return "LoadClientsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadClientsSuccess.prototype = { toString$0(_) { return "LoadClientsSuccess{clients: " + A.S(this.clients) + "}"; }, $isStopLoading: 1 }; A.AddContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.UpdateContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.DeleteContact.prototype = {$isPersistUI: 1}; A.SaveClientRequest.prototype = {$isStartSaving: 1}; A.SaveClientSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.AddClientSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.SaveClientFailure.prototype = {$isStopSaving: 1}; A.ArchiveClientsRequest.prototype = {$isStartSaving: 1}; A.ArchiveClientsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveClientsFailure.prototype = {$isStopSaving: 1}; A.MergeClientsRequest.prototype = {$isStartSaving: 1}; A.MergeClientsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.MergeClientsFailure.prototype = {$isStopSaving: 1}; A.DeleteClientsRequest.prototype = {$isStartSaving: 1}; A.DeleteClientsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteClientsFailure.prototype = {$isStopSaving: 1}; A.PurgeClientRequest.prototype = {$isStartSaving: 1}; A.PurgeClientSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.PurgeClientFailure.prototype = {$isStopSaving: 1}; A.RestoreClientsRequest.prototype = {$isStartSaving: 1}; A.RestoreClientSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreClientFailure.prototype = {$isStopSaving: 1}; A.FilterClients.prototype = {$isPersistUI: 1}; A.SortClients.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterClientsByState.prototype = {$isPersistUI: 1}; A.FilterClientsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterClientsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterClientsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterClientsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleClientAction_closure.prototype = { call$1(client) { return client.get$id(client); }, $signature: 41 }; A.handleClientAction_closure0.prototype = { call$1(contact) { return contact.link.length !== 0; }, $signature: 144 }; A.handleClientAction_closure1.prototype = { call$1(b) { var t1 = this.client.id; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 50 }; A.handleClientAction_closure2.prototype = { call$1(b) { var t1 = this.client.id; return b.get$_payment_model$_$this()._payment_model$_clientId = t1; }, $signature: 778 }; A.handleClientAction_closure3.prototype = { call$1(b) { var t1 = this.client.id; return b.get$_project_model$_$this()._project_model$_clientId = t1; }, $signature: 777 }; A.handleClientAction_closure4.prototype = { call$1(_) { var _this = this, t1 = _this.context; A.passwordCallback(true, new A.handleClientAction__closure(_this.store, t1, _this.localization, _this.client), t1, false); }, $signature: 11 }; A.handleClientAction__closure.prototype = { call$2(password, idToken) { var _this = this, _s13_ = "purged_client", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, _this.localization.localeCode), _s13_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; t1 = A.snackBarCompleter(_this.context, t1, false, type$.Null); t2 = _this.client.id; _this.store.get$_dispatchers()[0].call$1(new A.PurgeClientRequest(t1, t2, password, idToken)); }, $signature: 38 }; A.handleClientAction_closure5.prototype = { call$1(context) { return new A._MergClientPicker(this.client, null); }, $signature: 972 }; A.StartClientMultiselect.prototype = {}; A.AddToClientMultiselect.prototype = {}; A.RemoveFromClientMultiselect.prototype = {}; A.ClearClientMultiselect.prototype = {}; A.SaveClientDocumentRequest.prototype = {$isStartSaving: 1}; A.SaveClientDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateClientTab.prototype = {$isPersistUI: 1}; A._MergClientPicker.prototype = { createState$0() { return new A.__MergClientPickerState(B._StateLifecycle_0); } }; A.__MergClientPickerState.prototype = { build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, _s10_ = "merge_into", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), _s10_); t4 = A.Text$(t4 == null ? J.$index$asx(t2.$index(0, "en"), _s10_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = _this._mergeIntoClientId; t6 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t8 = type$.JSArray_legacy_Widget; t7 = A.Column$(A._setArrayType([new A.ClientPicker(t5, t6._list[t7].clientState, new A.__MergClientPickerState_build_closure(_this), _null, _null, A._setArrayType([_this._widget.client.id], type$.JSArray_legacy_String), _null)], t8), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); t6 = A.TextButton$(false, A.Text$(t1.get$close(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__MergClientPickerState_build_closure0(context), _null); t3 = J.$index$asx(t2.$index(0, t3), "merge"); return A.AlertDialog$(A._setArrayType([t6, A.TextButton$(false, A.Text$(t3 == null ? J.$index$asx(t2.$index(0, "en"), "merge") : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__MergClientPickerState_build_closure1(_this, context, store, t1), _null)], t8), B.EdgeInsets_0_0_0_0, _null, t7, B.EdgeInsets_24_20_24_24, _null, _null, t4); } }; A.__MergClientPickerState_build_closure.prototype = { call$1(client) { var t1 = this.$this; return t1.setState$1(new A.__MergClientPickerState_build__closure0(t1, client)); }, $signature: 155 }; A.__MergClientPickerState_build__closure0.prototype = { call$0() { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); return this.$this._mergeIntoClientId = t1; }, $signature: 127 }; A.__MergClientPickerState_build_closure0.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.__MergClientPickerState_build_closure1.prototype = { call$0() { var _this = this, t1 = _this.context; A.passwordCallback(false, new A.__MergClientPickerState_build__closure(_this.$this, _this.store, t1, _this.localization), t1, false); }, $signature: 1 }; A.__MergClientPickerState_build__closure.prototype = { call$2(password, idToken) { var t3, t4, t5, _this = this, _s14_ = "merged_clients", t1 = _this.$this, t2 = t1._widget.client.id; t1 = t1._mergeIntoClientId; t3 = _this.context; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = J.$index$asx(t4.$index(0, _this.localization.localeCode), _s14_); t4 = t5 == null ? J.$index$asx(t4.$index(0, "en"), _s14_) : t5; t4 = A.snackBarCompleter(t3, t4, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.MergeClientsRequest(t4, t2, t1, password, idToken)); A.Navigator_of(t3, false).pop$0(0); }, $signature: 38 }; A._editClient_closure.prototype = { call$3(store, dynamicAction, next) { var _s12_ = "/client/edit"; next.call$1(type$.legacy_EditClient._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewClient_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewClient_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewClient_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewClient._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/client/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/client/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewClientList_closure1.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewClientList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/client")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/client", new A._viewClientList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewClientList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveClient_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_ArchiveClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = A.List_List$of(new A.MappedListIterable(t1, new A._archiveClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveClient__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveClient__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].clientState.map._map$_map.$index(0, id); }, $signature: 342 }; A._archiveClient__closure0.prototype = { call$1(clients) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 492 }; A._archiveClient__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveClientsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._mergeClients_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; type$.legacy_MergeClientsRequest._as(dynamicAction); t1 = J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")); t2 = dynamicAction.clientId; t3 = dynamicAction.mergeIntoClientId; this.repository.merge$5$clientId$credentials$idToken$mergeIntoClientId$password(t2, t1, dynamicAction.idToken, t3, dynamicAction.password).then$1$1(0, new A._mergeClients__closure(store, dynamicAction), type$.Null).catchError$1(new A._mergeClients__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._mergeClients__closure.prototype = { call$1(client) { var t1 = this.store, t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.MergeClientsSuccess(t2.clientId)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t2.completer.complete$1(0, null); }, $signature: 250 }; A._mergeClients__closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.MergeClientsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteClient_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_DeleteClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = A.List_List$of(new A.MappedListIterable(t1, new A._deleteClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteClient__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteClient__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].clientState.map._map$_map.$index(0, id); }, $signature: 342 }; A._deleteClient__closure0.prototype = { call$1(clients) { this.store.get$_dispatchers()[0].call$1(new A.DeleteClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 492 }; A._deleteClient__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteClientsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._purgeClient_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; type$.legacy_PurgeClientRequest._as(dynamicAction); t1 = J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")); t2 = dynamicAction.clientId; t3 = dynamicAction.password; this.repository.purge$4$clientId$credentials$idToken$password(t2, t1, dynamicAction.idToken, t3).then$1$1(0, new A._purgeClient__closure(store, dynamicAction), type$.Null).catchError$1(new A._purgeClient__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._purgeClient__closure.prototype = { call$1(_) { var t1 = this.action; this.store.get$_dispatchers()[0].call$1(new A.PurgeClientSuccess(t1.clientId)); t1.completer.complete$1(0, null); }, $signature: 20 }; A._purgeClient__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.PurgeClientFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreClient_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_RestoreClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = A.List_List$of(new A.MappedListIterable(t1, new A._restoreClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreClient__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreClient__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].clientState.map._map$_map.$index(0, id); }, $signature: 342 }; A._restoreClient__closure0.prototype = { call$1(clients) { this.store.get$_dispatchers()[0].call$1(new A.RestoreClientSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 492 }; A._restoreClient__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreClientFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveClient_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveClientRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.client).then$1$1(0, new A._saveClient__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveClient__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveClient__closure.prototype = { call$1(client) { var t1 = this.action, t2 = this.store; if (t1.client.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddClientSuccess(client)); else t2.get$_dispatchers()[0].call$1(new A.SaveClientSuccess(client)); t1.completer.complete$1(0, client); t1 = A._lateReadCheck(t2.__Store__state, "_state").uiState.clientUIState.saveCompleter; if (t1 != null) t1.complete$1(0, client); }, $signature: 250 }; A._saveClient__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveClientFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadClient_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadClient._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadClientRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.clientId).then$1$1(0, new A._loadClient__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadClient__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadClient__closure.prototype = { call$1(client) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadClientSuccess(client)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 250 }; A._loadClient__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadClientFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadClients_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3; type$.legacy_LoadClients._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadClientsRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$3(t1, t2, t3).then$1$1(0, new A._loadClients__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadClients__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadClients__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadClientsSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadClients(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadProducts(null, 1)); }, $signature: 979 }; A._loadClients__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadClientsFailure(error)); }, $signature: 3 }; A._saveDocument_closure11.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveClientDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.client, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure23(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure24(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveClientDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure23.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.SaveClientSuccess(client)); this.action.completer.complete$1(0, null); }, $signature: 250 }; A._saveDocument__closure24.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveClientDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._showPdfClient_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfClient_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfClient_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfClient._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/client/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/client/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A.clientUIReducer_closure.prototype = { call$1(b) { var _s5_ = "other", t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$clientListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, _s5_); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer22().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, _s5_); t4._client_model$_$v = t1; t1 = b.get$editingContact(); t4 = $.$get$editingContactReducer().call$2(t2.editingContact, t3); A.ArgumentError_checkNotNull(t4, _s5_); t1._client_model$_$v = t4; t4 = $.$get$selectedIdReducer22().call$2(t2.selectedId, t3); b.get$_client_state$_$this()._client_state$_selectedId = t4; t4 = $.$get$forceSelectedReducer22().call$2(t2.forceSelected, t3); b.get$_client_state$_$this()._client_state$_forceSelected = t4; t4 = $.$get$tabIndexReducer11().call$2(t2.tabIndex, t3); b.get$_client_state$_$this()._client_state$_tabIndex = t4; t4 = $.$get$saveCompleterReducer1().call$2(t2.saveCompleter, t3); b.get$_client_state$_$this()._client_state$_saveCompleter = t4; t3 = $.$get$cancelCompleterReducer1().call$2(t2.cancelCompleter, t3); b.get$_client_state$_$this()._client_state$_cancelCompleter = t3; return b; }, $signature: 980 }; A.forceSelectedReducer_closure175.prototype = { call$2(completer, action) { return true; }, $signature: 981 }; A.forceSelectedReducer_closure176.prototype = { call$2(completer, action) { return false; }, $signature: 982 }; A.forceSelectedReducer_closure177.prototype = { call$2(completer, action) { return false; }, $signature: 983 }; A.forceSelectedReducer_closure178.prototype = { call$2(completer, action) { return false; }, $signature: 984 }; A.forceSelectedReducer_closure179.prototype = { call$2(completer, action) { return false; }, $signature: 985 }; A.forceSelectedReducer_closure180.prototype = { call$2(completer, action) { return false; }, $signature: 986 }; A.forceSelectedReducer_closure181.prototype = { call$2(completer, action) { return false; }, $signature: 987 }; A.forceSelectedReducer_closure182.prototype = { call$2(completer, action) { return false; }, $signature: 988 }; A.tabIndexReducer_closure23.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 989 }; A.tabIndexReducer_closure24.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.saveCompleterReducer_closure1.prototype = { call$2(completer, action) { return action.completer; }, $signature: 769 }; A.cancelCompleterReducer_closure1.prototype = { call$2(completer, action) { return action.cancelCompleter; }, $signature: 769 }; A.editingContactReducer_closure.prototype = { call$2(contact, action) { var t1; action.toString; t1 = A.ClientContactEntity_ClientContactEntity(); return t1; }, $signature: 992 }; A.editingContactReducer_closure0.prototype = { call$2(contact, action) { var t1 = action.contact; return t1 == null ? A.ClientContactEntity_ClientContactEntity() : t1; }, $signature: 993 }; A.selectedIdReducer_closure354.prototype = { call$2(completer, action) { return ""; }, $signature: 994 }; A.selectedIdReducer_closure355.prototype = { call$2(completer, action) { return ""; }, $signature: 995 }; A.selectedIdReducer_closure356.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_client ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure357.prototype = { call$2(selectedId, action) { return action.clientId; }, $signature: 997 }; A.selectedIdReducer_closure358.prototype = { call$2(selectedId, action) { return action.client.id; }, $signature: 998 }; A.selectedIdReducer_closure359.prototype = { call$2(selectedId, action) { return action.client.id; }, $signature: 999 }; A.selectedIdReducer_closure360.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure361.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure362.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1002 }; A.selectedIdReducer_closure363.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1003 }; A.selectedIdReducer_closure364.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1004 }; A.selectedIdReducer_closure365.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1005 }; A.selectedIdReducer_closure366.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1006 }; A.selectedIdReducer_closure367.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1007 }; A.selectedIdReducer_closure368.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1008 }; A.selectedIdReducer_closure369.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_client ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure370.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_client ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure125.prototype = { call$2(client, action) { return action.client; }, $signature: 1011 }; A.editingReducer_closure126.prototype = { call$2(client, action) { return action.client; }, $signature: 1012 }; A.editingReducer_closure127.prototype = { call$2(clients, action) { return J.$index$asx(action.clients, 0); }, $signature: 1013 }; A.editingReducer_closure128.prototype = { call$2(clients, action) { return J.$index$asx(action.clients, 0); }, $signature: 1014 }; A.editingReducer_closure129.prototype = { call$2(clients, action) { return J.$index$asx(action.clients, 0); }, $signature: 1015 }; A.editingReducer_closure130.prototype = { call$2(client, action) { return action.client; }, $signature: 1016 }; A.editingReducer_closure131.prototype = { call$2(client, action) { return action.client.rebuild$1(new A.editingReducer__closure55()); }, $signature: 1017 }; A.editingReducer__closure55.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_isChanged = true; return b; }, $signature: 48 }; A.editingReducer_closure132.prototype = { call$2(client, action) { return client.rebuild$1(new A.editingReducer__closure54(action)); }, $signature: 1018 }; A.editingReducer__closure54.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 48 }; A.editingReducer_closure133.prototype = { call$2(client, action) { return client.rebuild$1(new A.editingReducer__closure53(action)); }, $signature: 1019 }; A.editingReducer__closure53.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action.index; B.JSArray_methods.removeAt$1(t1.get$_safeList(), t2); return b; }, $signature: 48 }; A.editingReducer_closure134.prototype = { call$2(client, action) { return client.rebuild$1(new A.editingReducer__closure52(action)); }, $signature: 1020 }; A.editingReducer__closure52.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action, t3 = t2.index; t2 = t2.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t3] = t2; return b; }, $signature: 48 }; A.editingReducer_closure135.prototype = { call$2(client, action) { var _null = null; return A.ClientEntity_ClientEntity(_null, _null, _null, _null); }, $signature: 1021 }; A.editingReducer_closure136.prototype = { call$2(client, action) { var _null = null; return A.ClientEntity_ClientEntity(_null, _null, _null, _null); }, $signature: 1022 }; A.editingReducer_closure137.prototype = { call$2(client, action) { var _null = null; return A.ClientEntity_ClientEntity(_null, _null, _null, _null); }, $signature: 1023 }; A.editingReducer_closure138.prototype = { call$2(client, action) { var _null = null; return A.ClientEntity_ClientEntity(_null, _null, _null, _null); }, $signature: 1024 }; A._viewClientList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterClientsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterClientsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterClientsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterClientsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterClientsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterClientsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterClientsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterClientsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterClientsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterClientsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterClients_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.clientListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortClients_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure22.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure22.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure22.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure22.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveClientSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 489 }; A._deleteClientSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 489 }; A._restoreClientSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 489 }; A._addClient_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.client, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addClient__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 208 }; A._addClient__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 48 }; A._updateClient_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.client; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._updateClient__closure())); return b; }, $signature: 208 }; A._updateClient__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 48 }; A._setLoadedClient_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.client; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._setLoadedClient__closure())); return b; }, $signature: 208 }; A._setLoadedClient__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 48 }; A._mergeClientSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.clientId; t1.get$_safeMap().remove$1(0, t2); B.JSArray_methods.remove$1(b.get$list(b).get$_safeList(), t2); return b; }, $signature: 208 }; A._purgeClientSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.clientId; t1.get$_safeMap().remove$1(0, t2); B.JSArray_methods.remove$1(b.get$list(b).get$_safeList(), t2); return b; }, $signature: 208 }; A.memoizedDropdownClientList_closure.prototype = { call$4(clientMap, clientList, userMap, staticState) { return A.dropdownClientsSelector(clientMap, clientList, userMap, staticState); }, $signature: 1028 }; A.dropdownClientsSelector_closure.prototype = { call$1(clientId) { var t1 = this.clientMap._map$_map.$index(0, clientId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.dropdownClientsSelector_closure0.prototype = { call$2(clientAId, clientBId) { var t1 = this.clientMap._map$_map; return t1.$index(0, clientAId).compareTo$5(0, t1.$index(0, clientBId), "name", true, this.userMap, this.staticState); }, $signature: 19 }; A.memoizedClientStatsForUser_closure.prototype = { call$2(userId, clientMap) { return A.clientStatsForUser(userId, clientMap); }, $signature: 765 }; A.clientStatsForUser_closure.prototype = { call$2(clientId, client) { if (client.assignedUserId == this.userId) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.isDeleted) ++this._box_0.countArchived; }, $signature: 240 }; A.memoizedFilteredClientList_closure.prototype = { call$7(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState) { return A.filteredClientsSelector(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState); }, $signature: 1032 }; A.filteredClientsSelector_closure.prototype = { call$1(clientId) { var t2, _this = this, client = _this.clientMap._map$_map.$index(0, clientId), t1 = client.groupId, group = _this.groupMap._map$_map.$index(0, t1); if (group == null) group = A.GroupEntity_GroupEntity(t1, null); if (client.id === _this.selectionState.selectedId) return true; t1 = _this.filterEntityType; if (t1 === B.EntityType_group && group.id !== _this.filterEntityId) return false; else if (t1 === B.EntityType_user && client.assignedUserId != _this.filterEntityId) return false; else if (t1 === B.EntityType_companyGateway && !B.JSArray_methods.any$1(client.gatewayTokens._list, new A.filteredClientsSelector__closure(_this.filterEntityId))) return false; t1 = _this.clientListState; if (!client.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, client.customValue1)) return false; t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, client.customValue2)) return false; t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, client.customValue3)) return false; t2 = t1.custom4Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, client.customValue4)) return false; t1 = t1.filter; if (!client.matchesFilter$1(t1) && !A.matchesStrings(A._setArrayType([group.name], type$.JSArray_legacy_String), t1)) return false; return true; }, $signature: 16 }; A.filteredClientsSelector__closure.prototype = { call$1(token) { return token.companyGatewayId === this.filterEntityId; }, $signature: 762 }; A.filteredClientsSelector_closure0.prototype = { call$2(clientAId, clientBId) { var _this = this, t1 = _this.clientMap._map$_map, t2 = _this.clientListState; return t1.$index(0, clientAId).compareTo$5(0, t1.$index(0, clientBId), t2.sortField, t2.sortAscending, _this.userMap, _this.staticState); }, $signature: 19 }; A.ClientState.prototype = { $get$1(_, clientId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, clientId)) return t1.$index(0, clientId); else return A.ClientEntity_ClientEntity(null, clientId, null, null); }, loadClients$1(clients) { return this.rebuild$1(new A.ClientState_loadClients_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.ClientState_loadClients_closure0(), new A.ClientState_loadClients_closure1(), type$.legacy_String, type$.legacy_ClientEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.ClientState_loadClients_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.ClientState_loadClients_closure1.prototype = { call$1(item) { return item; }, $signature: 1035 }; A.ClientState_loadClients_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 208 }; A.ClientUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$ClientStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_wHc), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.ClientStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_client_state$_$this(); t6 = t5._client_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._client_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_wHc)); break; case "list": t5 = result.get$_client_state$_$this(); t6 = t5._client_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._client_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_K9i; }, get$wireName() { return "ClientState"; } }; A._$ClientUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_W34)); } value = object.editingContact; if (value != null) { result.push("editingContact"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_CqM)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, _s5_ = "other", result = new A.ClientUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ClientContactEntity, t3 = type$.legacy_ClientEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_editing; if (t5 == null) { t5 = new A.ClientEntityBuilder(); t5.get$_client_model$_$this()._number = ""; t4._client_state$_editing = t5; t4 = t5; } else t4 = t5; t5 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_W34)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t4._client_model$_$v = t5; break; case "editingContact": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_editingContact; t4 = t5 == null ? t4._client_state$_editingContact = new A.ClientContactEntityBuilder() : t5; t5 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_CqM)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t4._client_model$_$v = t5; break; case "listUIState": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_listUIState; t4 = t5 == null ? t4._client_state$_listUIState = new A.ListUIStateBuilder() : t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t4._list_ui_state$_$v = t5; break; case "selectedId": t4 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_client_state$_$this()._client_state$_selectedId = t4; break; case "forceSelected": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_client_state$_$this()._client_state$_forceSelected = t4; break; case "tabIndex": t4 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_client_state$_$this()._client_state$_tabIndex = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kya; }, get$wireName() { return "ClientUIState"; } }; A._$ClientState.prototype = { rebuild$1(updates) { var t1 = new A.ClientStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._client_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ClientState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._client_state$__hashCode; return t1 == null ? _this._client_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.ClientStateBuilder.prototype = { get$map(_) { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_map; return t2 == null ? t1._client_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ClientEntity) : t2; }, get$list(_) { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_list; return t2 == null ? t1._client_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_client_state$_$this() { var t1, t2, _this = this, $$v = _this._client_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._client_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._client_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._client_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._client_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$ClientState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ClientState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._client_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$ClientUIState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ClientUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.editingContact, other.editingContact) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode(_) { var _this = this, t1 = _this._client_state$__hashCode; return t1 == null ? _this._client_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingContact)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingContact", _this.editingContact); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.ClientUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_editing; if (t2 == null) { t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._client_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$editingContact() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_editingContact; return t2 == null ? t1._client_state$_editingContact = new A.ClientContactEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_listUIState; return t2 == null ? t1._client_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_client_state$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._client_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; A.ArgumentError_checkNotNull(t1, _s5_); t2._client_model$_$v = t1; t1 = t2; } _this._client_state$_editing = t1; t1 = $$v.editingContact; if (t1 == null) t1 = null; else { t2 = new A.ClientContactEntityBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._client_model$_$v = t1; t1 = t2; } _this._client_state$_editingContact = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._list_ui_state$_$v = t1; _this._client_state$_listUIState = t2; _this._client_state$_selectedId = $$v.selectedId; _this._client_state$_forceSelected = $$v.forceSelected; _this._client_state$_tabIndex = $$v.tabIndex; _this._client_state$_saveCompleter = $$v.saveCompleter; _this._client_state$_cancelCompleter = $$v.cancelCompleter; _this._client_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s13_ = "ClientUIState", _$result = null; try { _$result0 = _this._client_state$_$v; if (_$result0 == null) { t1 = _this._client_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this._client_state$_editingContact; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$listUIState().build$0(0); t4 = _this.get$_client_state$_$this()._client_state$_selectedId; t5 = _this.get$_client_state$_$this()._client_state$_forceSelected; t6 = _this.get$_client_state$_$this()._client_state$_tabIndex; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tabIndex")); t7 = _this.get$_client_state$_$this()._client_state$_saveCompleter; _$result0 = A._$ClientUIState$_(_this.get$_client_state$_$this()._client_state$_cancelCompleter, t1, t2, t5, t3, t7, t4, t6); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._client_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "editingContact"; t1 = _this._client_state$_editingContact; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._client_state$_$v = t1; return _$result; } }; A._ClientUIState_Object_EntityUIState.prototype = {}; A.SelectCompany.prototype = {$isClearClientMultiselect: 1}; A.LoadCompanySuccess.prototype = {}; A.UpdateCompany.prototype = {$isPersistUI: 1, get$company() { return this.company; } }; A.SaveCompanyRequest.prototype = {$isStartSaving: 1, get$company() { return this.company; } }; A.SaveCompanySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$company() { return this.company; } }; A.SaveCompanyFailure.prototype = {$isStopSaving: 1}; A.AddCompany.prototype = {$isStartSaving: 1}; A.AddCompanySuccess.prototype = {$isStopSaving: 1}; A.DeleteCompanyRequest.prototype = {$isStartSaving: 1}; A.DeleteCompanySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteCompanyFailure.prototype = {$isStopSaving: 1}; A.PurgeDataRequest.prototype = {$isStartSaving: 1}; A.PurgeDataSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.PurgeDataFailure.prototype = {$isStopSaving: 1}; A.UpdateCompanyLanguage.prototype = {}; A.SaveCompanyDocumentRequest.prototype = {$isStartSaving: 1}; A.SaveCompanyDocumentFailure.prototype = {$isStopSaving: 1}; A.SetDefaultCompanyRequest.prototype = {$isStartSaving: 1}; A.SetDefaultCompanySuccess.prototype = {$isStopSaving: 1}; A.SetDefaultCompanyFailure.prototype = {$isStopSaving: 1}; A.companyReducer_closure.prototype = { call$1(b) { var t4, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$lastUpdatedReducer().call$2(t1.lastUpdated, t2); b.get$_company_state$_$this()._lastUpdated = t3; t3 = b.get$userCompany(); t4 = $.$get$userCompanyEntityReducer().call$2(t1.userCompany, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._company_model$_$v = t4; t4 = b.get$documentState(); t3 = $.$get$documentsReducer().call$2(t1.documentState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._document_state$_$v = t3; t3 = b.get$clientState(); t4 = $.$get$clientsReducer().call$2(t1.clientState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._client_state$_$v = t4; t4 = b.get$productState(); t3 = $.$get$productsReducer().call$2(t1.productState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._product_state$_$v = t3; t3 = b.get$invoiceState(); t4 = $.$get$invoicesReducer().call$2(t1.invoiceState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._invoice_state$_$v = t4; t4 = b.get$expenseState(); t3 = $.$get$expensesReducer().call$2(t1.expenseState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._expense_state$_$v = t3; t3 = b.get$vendorState(); t4 = $.$get$vendorsReducer().call$2(t1.vendorState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._vendor_state$_$v = t4; t4 = b.get$taskState(); t3 = $.$get$tasksReducer().call$2(t1.taskState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._task_state$_$v = t3; t3 = b.get$purchaseOrderState(); t4 = $.$get$purchaseOrdersReducer().call$2(t1.purchaseOrderState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._purchase_order_state$_$v = t4; t4 = b.get$recurringExpenseState(); t3 = $.$get$recurringExpensesReducer().call$2(t1.recurringExpenseState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._recurring_expense_state$_$v = t3; t3 = b.get$subscriptionState(); t4 = $.$get$subscriptionsReducer().call$2(t1.subscriptionState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._subscription_state$_$v = t4; t4 = b.get$taskStatusState(); t3 = $.$get$taskStatusesReducer().call$2(t1.taskStatusState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._task_status_state$_$v = t3; t3 = b.get$expenseCategoryState(); t4 = $.$get$expenseCategoriesReducer().call$2(t1.expenseCategoryState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._expense_category_state$_$v = t4; t4 = b.get$recurringInvoiceState(); t3 = $.$get$recurringInvoicesReducer().call$2(t1.recurringInvoiceState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._recurring_invoice_state$_$v = t3; t3 = b.get$webhookState(); t4 = $.$get$webhooksReducer().call$2(t1.webhookState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._webhook_state$_$v = t4; t4 = b.get$tokenState(); t3 = $.$get$tokensReducer().call$2(t1.tokenState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._token_state$_$v = t3; t3 = b.get$paymentTermState(); t4 = $.$get$paymentTermsReducer().call$2(t1.paymentTermState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._payment_term_state$_$v = t4; t4 = b.get$designState(); t3 = $.$get$designsReducer().call$2(t1.designState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._design_state$_$v = t3; t3 = b.get$creditState(); t4 = $.$get$creditsReducer().call$2(t1.creditState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._credit_state$_$v = t4; t4 = b.get$userState(); t3 = $.$get$usersReducer().call$2(t1.userState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._user_state$_$v = t3; t3 = b.get$taxRateState(); t4 = $.$get$taxRatesReducer().call$2(t1.taxRateState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._tax_rate_state$_$v = t4; t4 = b.get$companyGatewayState(); t3 = $.$get$companyGatewaysReducer().call$2(t1.companyGatewayState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._company_gateway_state$_$v = t3; t3 = b.get$projectState(); t4 = $.$get$projectsReducer().call$2(t1.projectState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._project_state$_$v = t4; t4 = b.get$paymentState(); t3 = $.$get$paymentsReducer().call$2(t1.paymentState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._payment_state$_$v = t3; t3 = b.get$quoteState(); t4 = $.$get$quotesReducer().call$2(t1.quoteState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._quote_state$_$v = t4; t4 = b.get$groupState(); t2 = $.$get$groupsReducer().call$2(t1.groupState, t2); A.ArgumentError_checkNotNull(t2, _s5_); t4._group_state$_$v = t2; return b; }, $signature: 1036 }; A.userCompanyEntityReducer_closure.prototype = { call$2(userCompany, action) { var t1 = userCompany.settings.reportSettings, t2 = action.report; t1 = t1._map$_map; if (t1.containsKey$1(0, t2)) return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure5(action, t1.$index(0, t2))); else return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure6(action)); }, $signature: 1037 }; A.userCompanyEntityReducer__closure5.prototype = { call$1(b) { var t1 = this.action, t2 = this.settings; b.get$settings().get$reportSettings().$indexSet(0, t1.report, t2.rebuild$1(new A.userCompanyEntityReducer___closure(t1, t2))); return b; }, $signature: 111 }; A.userCompanyEntityReducer___closure.prototype = { call$1(b) { var t4, t5, t0, t6, t1 = this.action, t2 = t1.sortColumn, t3 = t2 == null; if (t3) { t4 = this.settings; t5 = t4.sortAscending; t0 = t5; t5 = t4; t4 = t0; } else { t4 = this.settings; t5 = t2 !== t4.sortColumn || !t4.sortAscending; t0 = t5; t5 = t4; t4 = t0; } b.get$_company_model$_$this()._company_model$_sortAscending = t4; t1 = t1.sortTotalsIndex; t4 = t1 == null; if (t4) t6 = t5.sortTotalsAscending; else t6 = t1 !== t5.sortTotalsIndex || !t5.sortTotalsAscending; b.get$_company_model$_$this()._sortTotalsAscending = t6; if (t3) t2 = t5.sortColumn; b.get$_company_model$_$this()._sortColumn = t2; if (t4) t1 = t5.sortTotalsIndex; b.get$_company_model$_$this()._sortTotalsIndex = t1; return b; }, $signature: 761 }; A.userCompanyEntityReducer__closure6.prototype = { call$1(b) { var t1 = this.action; b.get$settings().get$reportSettings().$indexSet(0, t1.report, A.ReportSettingsEntity_ReportSettingsEntity(t1.sortColumn, t1.sortTotalsIndex)); return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure0.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure4(action)); }, $signature: 1040 }; A.userCompanyEntityReducer__closure4.prototype = { call$1(b) { var t1 = b.get$user(b), t2 = this.action.user; A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; t1 = b.get$settings(); t2 = t2.userCompany.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure1.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure3(action)); }, $signature: 1041 }; A.userCompanyEntityReducer__closure3.prototype = { call$1(b) { var t1 = b.get$user(b), t2 = this.action.user; A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure2.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure2(action)); }, $signature: 1042 }; A.userCompanyEntityReducer__closure2.prototype = { call$1(b) { var t1 = b.get$user(b), t2 = this.action.user; A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure3.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure1()); }, $signature: 1043 }; A.userCompanyEntityReducer__closure1.prototype = { call$1(b) { b.get$user(b).get$_user_model$_$this()._isTwoFactorEnabled = false; return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure4.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure0(action)); }, $signature: 1044 }; A.userCompanyEntityReducer__closure0.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.action.userCompany.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A.userCompanyEntityReducer_closure5.prototype = { call$2(userCompany, action) { return userCompany.rebuild$1(new A.userCompanyEntityReducer__closure(action)); }, $signature: 1045 }; A.userCompanyEntityReducer__closure.prototype = { call$1(b) { var t1 = b.get$company().get$settings(), t2 = this.action.languageId; t1.get$_settings_model$_$this()._languageId = t2; return b; }, $signature: 111 }; A.loadCompanySuccessReducer_closure.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = A.UserSettingsEntity_UserSettingsEntity(); A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; b.get$user(b).get$userCompany().get$notifications().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String)); return b; }, $signature: 111 }; A.loadCompanySuccessReducer_closure0.prototype = { call$1(b) { var t1 = b.get$company(); t1.get$taskStatuses().replace$1(0, A._setArrayType([], type$.JSArray_legacy_TaskStatusEntity)); t1.get$taskStatusMap().replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_TaskStatusEntity)); t1.get$expenseCategories().replace$1(0, A._setArrayType([], type$.JSArray_legacy_ExpenseCategoryEntity)); return t1; }, $signature: 1046 }; A.loadCompanySuccessReducer_closure1.prototype = { call$1(b) { var t1 = b.get$company(), t2 = this._box_0.userCompany.company.get$coreCompany(); A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A.saveCompanySuccessReducer_closure.prototype = { call$1(b) { var t1 = this._box_0; b.get$taxRates().replace$1(0, t1.userCompany.company.taxRates); b.get$taskStatuses().replace$1(0, t1.userCompany.company.taskStatuses); b.get$taskStatusMap().replace$1(0, t1.userCompany.company.taskStatusMap); b.get$expenseCategories().replace$1(0, t1.userCompany.company.expenseCategories); b.get$users().replace$1(0, t1.userCompany.company.users); return b; }, $signature: 23 }; A.saveCompanySuccessReducer_closure0.prototype = { call$1(b) { var t1 = b.get$company(), t2 = this.company; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A.lastUpdatedReducer_closure.prototype = { call$2(state, action) { return action.userCompany.company.isLarge && state === 0 ? 0 : Date.now(); }, $signature: 1047 }; A.lastUpdatedReducer_closure0.prototype = { call$2(state, action) { return Date.now(); }, $signature: 1048 }; A.memoizedDropdownExpenseCategoriesList_closure.prototype = { call$2(categoryMap, categoryList) { return A.dropdownExpenseCategoriesSelector(categoryMap, categoryList); }, $signature: 1049 }; A.dropdownExpenseCategoriesSelector_closure.prototype = { call$1(categoryId) { var t1 = this.categoryMap._map$_map.$index(0, categoryId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.dropdownExpenseCategoriesSelector_closure0.prototype = { call$2(categoryAId, categoryBId) { var t1 = this.categoryMap._map$_map; return t1.$index(0, categoryAId).compareTo$3$expenseCategory$sortAscending$sortField(0, t1.$index(0, categoryBId), true, "name"); }, $signature: 19 }; A.memoizedHasMultipleCurrencies_closure.prototype = { call$3(company, clientMap, groupMap) { return J.get$length$asx($.$get$memoizedGetCurrencyIds().call$3(company, clientMap, groupMap)) > 1; }, $signature: 1050 }; A.memoizedGetCurrencyIds_closure.prototype = { call$3(company, clientMap, groupMap) { return A.getCurrencyIds(company, clientMap, groupMap); }, $signature: 1051 }; A.getCurrencyIds_closure.prototype = { call$2(clientId, client) { var currencyId, t1 = client.groupId, group = this.groupMap._map$_map.$index(0, t1); if (!client.isDeleted) { if (client.get$hasCurrency()) currencyId = client.settings.currencyId; else currencyId = group != null && group.get$hasCurrency() ? group.settings.currencyId : null; if (currencyId != null && !B.JSArray_methods.contains$1(this.currencyIds, currencyId)) this.currencyIds.push(currencyId); } }, $signature: 240 }; A.memoizedFilteredSelector_closure.prototype = { call$2(filter, state) { return A.filteredSelector(filter, state); }, $signature: 1052 }; A.filteredSelector_closure.prototype = { call$1(productId) { return this.state.productState.map._map$_map.$index(0, productId); }, $signature: 242 }; A.filteredSelector_closure0.prototype = { call$1(product) { return product.matchesFilter$1(this.filter); }, $signature: 758 }; A.filteredSelector_closure1.prototype = { call$1(clientId) { return this.state.clientState.map._map$_map.$index(0, clientId); }, $signature: 342 }; A.filteredSelector_closure2.prototype = { call$1(client) { return client.matchesFilter$1(this.filter); }, $signature: 1055 }; A.filteredSelector_closure3.prototype = { call$1(quoteId) { return this.state.quoteState.map._map$_map.$index(0, quoteId); }, $signature: 68 }; A.filteredSelector_closure4.prototype = { call$1(quote) { return quote.matchesFilter$1(this.filter); }, $signature: 163 }; A.filteredSelector_closure5.prototype = { call$1(paymentId) { return this.state.paymentState.map._map$_map.$index(0, paymentId); }, $signature: 218 }; A.filteredSelector_closure6.prototype = { call$1(payment) { return payment.matchesFilter$1(this.filter); }, $signature: 482 }; A.filteredSelector_closure7.prototype = { call$1(projectId) { return this.state.projectState.map._map$_map.$index(0, projectId); }, $signature: 331 }; A.filteredSelector_closure8.prototype = { call$1(project) { return project.matchesFilter$1(this.filter); }, $signature: 1061 }; A.filteredSelector_closure9.prototype = { call$1(taskId) { return this.state.taskState.map._map$_map.$index(0, taskId); }, $signature: 188 }; A.filteredSelector_closure10.prototype = { call$1(task) { return task.matchesFilter$1(this.filter); }, $signature: 1063 }; A.filteredSelector_closure11.prototype = { call$1(invoiceId) { return this.state.invoiceState.map._map$_map.$index(0, invoiceId); }, $signature: 68 }; A.filteredSelector_closure12.prototype = { call$1(invoice) { return invoice.matchesFilter$1(this.filter); }, $signature: 163 }; A.filteredSelector_closure13.prototype = { call$2(entityA, entityB) { return J.compareTo$1$ns(entityA.get$listDisplayName(), entityB.get$listDisplayName()); }, $signature: 751 }; A.UserCompanyState.prototype = { get$company() { return this.userCompany.company; }, get$user(_) { return this.userCompany.user; }, get$token() { return this.userCompany.token; }, get$isStale() { var t1 = this.lastUpdated; if (t1 <= 0) return true; return Date.now() - t1 > 900000; } }; A.SettingsUIState.prototype = { get$settings() { var _this = this, t1 = _this.entityType; if (t1 === B.EntityType_client && _this.client != null) return _this.client.settings; else if (t1 === B.EntityType_group && _this.group != null) return _this.group.settings; else return _this.company.settings; } }; A._$UserCompanyStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["lastUpdated", serializers.serialize$2$specifiedType(object.lastUpdated, B.FullType_kjq), "documentState", serializers.serialize$2$specifiedType(object.documentState, B.FullType_61h), "productState", serializers.serialize$2$specifiedType(object.productState, B.FullType_HZ2), "clientState", serializers.serialize$2$specifiedType(object.clientState, B.FullType_MIo), "invoiceState", serializers.serialize$2$specifiedType(object.invoiceState, B.FullType_mXg), "expenseState", serializers.serialize$2$specifiedType(object.expenseState, B.FullType_5OF), "vendorState", serializers.serialize$2$specifiedType(object.vendorState, B.FullType_xI0), "taskState", serializers.serialize$2$specifiedType(object.taskState, B.FullType_SQp), "projectState", serializers.serialize$2$specifiedType(object.projectState, B.FullType_cEX), "paymentState", serializers.serialize$2$specifiedType(object.paymentState, B.FullType_sgl), "quoteState", serializers.serialize$2$specifiedType(object.quoteState, B.FullType_yqa), "purchaseOrderState", serializers.serialize$2$specifiedType(object.purchaseOrderState, B.FullType_kGC), "recurringExpenseState", serializers.serialize$2$specifiedType(object.recurringExpenseState, B.FullType_nrV), "subscriptionState", serializers.serialize$2$specifiedType(object.subscriptionState, B.FullType_3BG), "taskStatusState", serializers.serialize$2$specifiedType(object.taskStatusState, B.FullType_A6W), "expenseCategoryState", serializers.serialize$2$specifiedType(object.expenseCategoryState, B.FullType_4qm), "recurringInvoiceState", serializers.serialize$2$specifiedType(object.recurringInvoiceState, B.FullType_Elr), "webhookState", serializers.serialize$2$specifiedType(object.webhookState, B.FullType_EAC), "tokenState", serializers.serialize$2$specifiedType(object.tokenState, B.FullType_ouN), "paymentTermState", serializers.serialize$2$specifiedType(object.paymentTermState, B.FullType_KIj), "designState", serializers.serialize$2$specifiedType(object.designState, B.FullType_QKT), "creditState", serializers.serialize$2$specifiedType(object.creditState, B.FullType_lqU), "userState", serializers.serialize$2$specifiedType(object.userState, B.FullType_d4x), "taxRateState", serializers.serialize$2$specifiedType(object.taxRateState, B.FullType_dIX), "companyGatewayState", serializers.serialize$2$specifiedType(object.companyGatewayState, B.FullType_gGD), "groupState", serializers.serialize$2$specifiedType(object.groupState, B.FullType_SNv)], type$.JSArray_legacy_Object), value = object.userCompany; if (value != null) { result.push("userCompany"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_whX)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, key, value, t27, t28, _s5_ = "other", result = new A.UserCompanyStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GroupState, t2 = type$.legacy_CompanyGatewayState, t3 = type$.legacy_TaxRateState, t4 = type$.legacy_UserState, t5 = type$.legacy_CreditState, t6 = type$.legacy_DesignState, t7 = type$.legacy_PaymentTermState, t8 = type$.legacy_TokenState, t9 = type$.legacy_WebhookState, t10 = type$.legacy_RecurringInvoiceState, t11 = type$.legacy_ExpenseCategoryState, t12 = type$.legacy_TaskStatusState, t13 = type$.legacy_SubscriptionState, t14 = type$.legacy_RecurringExpenseState, t15 = type$.legacy_PurchaseOrderState, t16 = type$.legacy_QuoteState, t17 = type$.legacy_PaymentState, t18 = type$.legacy_ProjectState, t19 = type$.legacy_TaskState, t20 = type$.legacy_VendorState, t21 = type$.legacy_ExpenseState, t22 = type$.legacy_InvoiceState, t23 = type$.legacy_ClientState, t24 = type$.legacy_ProductState, t25 = type$.legacy_DocumentState, t26 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "lastUpdated": t27 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_state$_$this()._lastUpdated = t27; break; case "userCompany": t27 = result.get$_company_state$_$this(); t28 = t27._company_state$_userCompany; if (t28 == null) { t28 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t28); t27._company_state$_userCompany = t28; t27 = t28; } else t27 = t28; t28 = t26._as(serializers.deserialize$2$specifiedType(value, B.FullType_whX)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._company_model$_$v = t28; break; case "documentState": t27 = result.get$_company_state$_$this(); t28 = t27._documentState; t27 = t28 == null ? t27._documentState = new A.DocumentStateBuilder() : t28; t28 = t25._as(serializers.deserialize$2$specifiedType(value, B.FullType_61h)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._document_state$_$v = t28; break; case "productState": t27 = result.get$_company_state$_$this(); t28 = t27._productState; t27 = t28 == null ? t27._productState = new A.ProductStateBuilder() : t28; t28 = t24._as(serializers.deserialize$2$specifiedType(value, B.FullType_HZ2)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._product_state$_$v = t28; break; case "clientState": t27 = result.get$_company_state$_$this(); t28 = t27._clientState; t27 = t28 == null ? t27._clientState = new A.ClientStateBuilder() : t28; t28 = t23._as(serializers.deserialize$2$specifiedType(value, B.FullType_MIo)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._client_state$_$v = t28; break; case "invoiceState": t27 = result.get$_company_state$_$this(); t28 = t27._invoiceState; t27 = t28 == null ? t27._invoiceState = new A.InvoiceStateBuilder() : t28; t28 = t22._as(serializers.deserialize$2$specifiedType(value, B.FullType_mXg)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._invoice_state$_$v = t28; break; case "expenseState": t27 = result.get$_company_state$_$this(); t28 = t27._expenseState; t27 = t28 == null ? t27._expenseState = new A.ExpenseStateBuilder() : t28; t28 = t21._as(serializers.deserialize$2$specifiedType(value, B.FullType_5OF)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._expense_state$_$v = t28; break; case "vendorState": t27 = result.get$_company_state$_$this(); t28 = t27._vendorState; t27 = t28 == null ? t27._vendorState = new A.VendorStateBuilder() : t28; t28 = t20._as(serializers.deserialize$2$specifiedType(value, B.FullType_xI0)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._vendor_state$_$v = t28; break; case "taskState": t27 = result.get$_company_state$_$this(); t28 = t27._taskState; t27 = t28 == null ? t27._taskState = new A.TaskStateBuilder() : t28; t28 = t19._as(serializers.deserialize$2$specifiedType(value, B.FullType_SQp)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._task_state$_$v = t28; break; case "projectState": t27 = result.get$_company_state$_$this(); t28 = t27._projectState; t27 = t28 == null ? t27._projectState = new A.ProjectStateBuilder() : t28; t28 = t18._as(serializers.deserialize$2$specifiedType(value, B.FullType_cEX)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._project_state$_$v = t28; break; case "paymentState": t27 = result.get$_company_state$_$this(); t28 = t27._paymentState; t27 = t28 == null ? t27._paymentState = new A.PaymentStateBuilder() : t28; t28 = t17._as(serializers.deserialize$2$specifiedType(value, B.FullType_sgl)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._payment_state$_$v = t28; break; case "quoteState": t27 = result.get$_company_state$_$this(); t28 = t27._quoteState; t27 = t28 == null ? t27._quoteState = new A.QuoteStateBuilder() : t28; t28 = t16._as(serializers.deserialize$2$specifiedType(value, B.FullType_yqa)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._quote_state$_$v = t28; break; case "purchaseOrderState": t27 = result.get$_company_state$_$this(); t28 = t27._purchaseOrderState; t27 = t28 == null ? t27._purchaseOrderState = new A.PurchaseOrderStateBuilder() : t28; t28 = t15._as(serializers.deserialize$2$specifiedType(value, B.FullType_kGC)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._purchase_order_state$_$v = t28; break; case "recurringExpenseState": t27 = result.get$_company_state$_$this(); t28 = t27._recurringExpenseState; t27 = t28 == null ? t27._recurringExpenseState = new A.RecurringExpenseStateBuilder() : t28; t28 = t14._as(serializers.deserialize$2$specifiedType(value, B.FullType_nrV)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._recurring_expense_state$_$v = t28; break; case "subscriptionState": t27 = result.get$_company_state$_$this(); t28 = t27._subscriptionState; t27 = t28 == null ? t27._subscriptionState = new A.SubscriptionStateBuilder() : t28; t28 = t13._as(serializers.deserialize$2$specifiedType(value, B.FullType_3BG)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._subscription_state$_$v = t28; break; case "taskStatusState": t27 = result.get$_company_state$_$this(); t28 = t27._taskStatusState; t27 = t28 == null ? t27._taskStatusState = new A.TaskStatusStateBuilder() : t28; t28 = t12._as(serializers.deserialize$2$specifiedType(value, B.FullType_A6W)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._task_status_state$_$v = t28; break; case "expenseCategoryState": t27 = result.get$_company_state$_$this(); t28 = t27._expenseCategoryState; t27 = t28 == null ? t27._expenseCategoryState = new A.ExpenseCategoryStateBuilder() : t28; t28 = t11._as(serializers.deserialize$2$specifiedType(value, B.FullType_4qm)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._expense_category_state$_$v = t28; break; case "recurringInvoiceState": t27 = result.get$_company_state$_$this(); t28 = t27._recurringInvoiceState; t27 = t28 == null ? t27._recurringInvoiceState = new A.RecurringInvoiceStateBuilder() : t28; t28 = t10._as(serializers.deserialize$2$specifiedType(value, B.FullType_Elr)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._recurring_invoice_state$_$v = t28; break; case "webhookState": t27 = result.get$_company_state$_$this(); t28 = t27._webhookState; t27 = t28 == null ? t27._webhookState = new A.WebhookStateBuilder() : t28; t28 = t9._as(serializers.deserialize$2$specifiedType(value, B.FullType_EAC)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._webhook_state$_$v = t28; break; case "tokenState": t27 = result.get$_company_state$_$this(); t28 = t27._tokenState; t27 = t28 == null ? t27._tokenState = new A.TokenStateBuilder() : t28; t28 = t8._as(serializers.deserialize$2$specifiedType(value, B.FullType_ouN)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._token_state$_$v = t28; break; case "paymentTermState": t27 = result.get$_company_state$_$this(); t28 = t27._paymentTermState; t27 = t28 == null ? t27._paymentTermState = new A.PaymentTermStateBuilder() : t28; t28 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_KIj)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._payment_term_state$_$v = t28; break; case "designState": t27 = result.get$_company_state$_$this(); t28 = t27._designState; t27 = t28 == null ? t27._designState = new A.DesignStateBuilder() : t28; t28 = t6._as(serializers.deserialize$2$specifiedType(value, B.FullType_QKT)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._design_state$_$v = t28; break; case "creditState": t27 = result.get$_company_state$_$this(); t28 = t27._creditState; t27 = t28 == null ? t27._creditState = new A.CreditStateBuilder() : t28; t28 = t5._as(serializers.deserialize$2$specifiedType(value, B.FullType_lqU)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._credit_state$_$v = t28; break; case "userState": t27 = result.get$_company_state$_$this(); t28 = t27._userState; t27 = t28 == null ? t27._userState = new A.UserStateBuilder() : t28; t28 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_d4x)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._user_state$_$v = t28; break; case "taxRateState": t27 = result.get$_company_state$_$this(); t28 = t27._taxRateState; t27 = t28 == null ? t27._taxRateState = new A.TaxRateStateBuilder() : t28; t28 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_dIX)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._tax_rate_state$_$v = t28; break; case "companyGatewayState": t27 = result.get$_company_state$_$this(); t28 = t27._companyGatewayState; t27 = t28 == null ? t27._companyGatewayState = new A.CompanyGatewayStateBuilder() : t28; t28 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_gGD)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._company_gateway_state$_$v = t28; break; case "groupState": t27 = result.get$_company_state$_$this(); t28 = t27._groupState; t27 = t28 == null ? t27._groupState = new A.GroupStateBuilder() : t28; t28 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_SNv)); if (t28 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t27._group_state$_$v = t28; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uEs; }, get$wireName() { return "UserCompanyState"; } }; A._$SettingsUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["company", serializers.serialize$2$specifiedType(object.company, B.FullType_a9P), "origCompany", serializers.serialize$2$specifiedType(object.origCompany, B.FullType_a9P), "client", serializers.serialize$2$specifiedType(object.client, B.FullType_W34), "origClient", serializers.serialize$2$specifiedType(object.origClient, B.FullType_W34), "group", serializers.serialize$2$specifiedType(object.group, B.FullType_Iiu), "origGroup", serializers.serialize$2$specifiedType(object.origGroup, B.FullType_Iiu), "user", serializers.serialize$2$specifiedType(object.user, B.FullType_oyU), "origUser", serializers.serialize$2$specifiedType(object.origUser, B.FullType_oyU), "entityType", serializers.serialize$2$specifiedType(object.entityType, B.FullType_qBb), "isChanged", serializers.serialize$2$specifiedType(object.isChanged, B.FullType_MtR), "updatedAt", serializers.serialize$2$specifiedType(object.updatedAt, B.FullType_kjq), "section", serializers.serialize$2$specifiedType(object.section, B.FullType_h8g), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq), "selectedTemplate", serializers.serialize$2$specifiedType(object.selectedTemplate, B.FullType_t81), "filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, key, value, t9, t10, t11, t12, t13, _s5_ = "other", result = new A.SettingsUIStateBuilder(); result.get$_company_state$_$this()._selectedTemplate = B.EmailTemplate_invoice; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EmailTemplate, t2 = type$.legacy_EntityType, t3 = type$.legacy_UserEntity, t4 = type$.legacy_GroupEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity, t7 = type$.legacy_ClientEntity, t8 = type$.legacy_CompanyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "company": t9 = result.get$_company_state$_$this(); t10 = t9._company; if (t10 == null) { t10 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t10); t9._company = t10; t9 = t10; } else t9 = t10; t10 = t8._as(serializers.deserialize$2$specifiedType(value, B.FullType_a9P)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._company_model$_$v = t10; break; case "origCompany": t9 = result.get$_company_state$_$this(); t10 = t9._origCompany; if (t10 == null) { t10 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t10); t9._origCompany = t10; t9 = t10; } else t9 = t10; t10 = t8._as(serializers.deserialize$2$specifiedType(value, B.FullType_a9P)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._company_model$_$v = t10; break; case "client": t9 = result.get$_company_state$_$this(); t10 = t9._client; if (t10 == null) { t10 = new A.ClientEntityBuilder(); t10.get$_client_model$_$this()._number = ""; t9._client = t10; t9 = t10; } else t9 = t10; t10 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_W34)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._client_model$_$v = t10; break; case "origClient": t9 = result.get$_company_state$_$this(); t10 = t9._origClient; if (t10 == null) { t10 = new A.ClientEntityBuilder(); t10.get$_client_model$_$this()._number = ""; t9._origClient = t10; t9 = t10; } else t9 = t10; t10 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_W34)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._client_model$_$v = t10; break; case "group": t9 = result.get$_company_state$_$this(); t10 = t9._company_state$_group; if (t10 == null) { t10 = new A.GroupEntityBuilder(); t11 = t10.get$_group_model$_$this(); t12 = t11._documents; if (t12 == null) { t12 = new A.ListBuilder(t6); t12.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t11._documents = t12; t11 = t12; } else t11 = t12; t12 = A.BuiltList_BuiltList$from(B.List_empty, t5); t13 = t11.$ti; if (t13._eval$1("_BuiltList<1>")._is(t12)) { t11.__ListBuilder__list = t12._list; t11._listOwner = t12; } else { t11.__ListBuilder__list = A.List_List$from(t12, true, t13._precomputed1); t11._listOwner = null; } t9._company_state$_group = t10; t9 = t10; } else t9 = t10; t10 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iiu)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._group_model$_$v = t10; break; case "origGroup": t9 = result.get$_company_state$_$this(); t10 = t9._origGroup; if (t10 == null) { t10 = new A.GroupEntityBuilder(); t11 = t10.get$_group_model$_$this(); t12 = t11._documents; if (t12 == null) { t12 = new A.ListBuilder(t6); t12.__ListBuilder__list = A.List_List$from(B.List_empty, true, t5); t11._documents = t12; t11 = t12; } else t11 = t12; t12 = A.BuiltList_BuiltList$from(B.List_empty, t5); t13 = t11.$ti; if (t13._eval$1("_BuiltList<1>")._is(t12)) { t11.__ListBuilder__list = t12._list; t11._listOwner = t12; } else { t11.__ListBuilder__list = A.List_List$from(t12, true, t13._precomputed1); t11._listOwner = null; } t9._origGroup = t10; t9 = t10; } else t9 = t10; t10 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iiu)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._group_model$_$v = t10; break; case "user": t9 = result.get$_company_state$_$this(); t10 = t9._user; if (t10 == null) { t10 = new A.UserEntityBuilder(); t10.get$_user_model$_$this()._isTwoFactorEnabled = false; t10.get$_user_model$_$this()._hasPassword = false; t10.get$_user_model$_$this()._password = ""; t10.get$_user_model$_$this()._lastEmailAddress = ""; t10.get$_user_model$_$this()._oauthUserToken = ""; t9._user = t10; t9 = t10; } else t9 = t10; t10 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_oyU)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._user_model$_$v = t10; break; case "origUser": t9 = result.get$_company_state$_$this(); t10 = t9._origUser; if (t10 == null) { t10 = new A.UserEntityBuilder(); t10.get$_user_model$_$this()._isTwoFactorEnabled = false; t10.get$_user_model$_$this()._hasPassword = false; t10.get$_user_model$_$this()._password = ""; t10.get$_user_model$_$this()._lastEmailAddress = ""; t10.get$_user_model$_$this()._oauthUserToken = ""; t9._origUser = t10; t9 = t10; } else t9 = t10; t10 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_oyU)); if (t10 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t9._user_model$_$v = t10; break; case "entityType": t9 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_company_state$_$this()._entityType = t9; break; case "isChanged": t9 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_state$_$this()._isChanged = t9; break; case "updatedAt": t9 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_state$_$this()._updatedAt = t9; break; case "section": t9 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_state$_$this()._section = t9; break; case "tabIndex": t9 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_state$_$this()._tabIndex = t9; break; case "selectedTemplate": t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_t81)); result.get$_company_state$_$this()._selectedTemplate = t9; break; case "filter": t9 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_state$_$this()._company_state$_filter = t9; break; case "filterClearedAt": t9 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_state$_$this()._company_state$_filterClearedAt = t9; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_SFj; }, get$wireName() { return "SettingsUIState"; } }; A._$UserCompanyState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserCompanyState && _this.lastUpdated === other.lastUpdated && J.$eq$(_this.userCompany, other.userCompany) && J.$eq$(_this.documentState, other.documentState) && J.$eq$(_this.productState, other.productState) && J.$eq$(_this.clientState, other.clientState) && J.$eq$(_this.invoiceState, other.invoiceState) && J.$eq$(_this.expenseState, other.expenseState) && J.$eq$(_this.vendorState, other.vendorState) && J.$eq$(_this.taskState, other.taskState) && J.$eq$(_this.projectState, other.projectState) && J.$eq$(_this.paymentState, other.paymentState) && J.$eq$(_this.quoteState, other.quoteState) && J.$eq$(_this.purchaseOrderState, other.purchaseOrderState) && J.$eq$(_this.recurringExpenseState, other.recurringExpenseState) && J.$eq$(_this.subscriptionState, other.subscriptionState) && J.$eq$(_this.taskStatusState, other.taskStatusState) && J.$eq$(_this.expenseCategoryState, other.expenseCategoryState) && J.$eq$(_this.recurringInvoiceState, other.recurringInvoiceState) && J.$eq$(_this.webhookState, other.webhookState) && J.$eq$(_this.tokenState, other.tokenState) && J.$eq$(_this.paymentTermState, other.paymentTermState) && J.$eq$(_this.designState, other.designState) && J.$eq$(_this.creditState, other.creditState) && J.$eq$(_this.userState, other.userState) && J.$eq$(_this.taxRateState, other.taxRateState) && J.$eq$(_this.companyGatewayState, other.companyGatewayState) && J.$eq$(_this.groupState, other.groupState); }, get$hashCode(_) { var _this = this, t1 = _this._company_state$__hashCode; return t1 == null ? _this._company_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSInt_methods.get$hashCode(_this.lastUpdated)), J.get$hashCode$(_this.userCompany)), J.get$hashCode$(_this.documentState)), J.get$hashCode$(_this.productState)), J.get$hashCode$(_this.clientState)), J.get$hashCode$(_this.invoiceState)), J.get$hashCode$(_this.expenseState)), J.get$hashCode$(_this.vendorState)), J.get$hashCode$(_this.taskState)), J.get$hashCode$(_this.projectState)), J.get$hashCode$(_this.paymentState)), J.get$hashCode$(_this.quoteState)), J.get$hashCode$(_this.purchaseOrderState)), J.get$hashCode$(_this.recurringExpenseState)), J.get$hashCode$(_this.subscriptionState)), J.get$hashCode$(_this.taskStatusState)), J.get$hashCode$(_this.expenseCategoryState)), J.get$hashCode$(_this.recurringInvoiceState)), J.get$hashCode$(_this.webhookState)), J.get$hashCode$(_this.tokenState)), J.get$hashCode$(_this.paymentTermState)), J.get$hashCode$(_this.designState)), J.get$hashCode$(_this.creditState)), J.get$hashCode$(_this.userState)), J.get$hashCode$(_this.taxRateState)), J.get$hashCode$(_this.companyGatewayState)), J.get$hashCode$(_this.groupState))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "lastUpdated", _this.lastUpdated); t2.add$2(t1, "userCompany", _this.userCompany); t2.add$2(t1, "documentState", _this.documentState); t2.add$2(t1, "productState", _this.productState); t2.add$2(t1, "clientState", _this.clientState); t2.add$2(t1, "invoiceState", _this.invoiceState); t2.add$2(t1, "expenseState", _this.expenseState); t2.add$2(t1, "vendorState", _this.vendorState); t2.add$2(t1, "taskState", _this.taskState); t2.add$2(t1, "projectState", _this.projectState); t2.add$2(t1, "paymentState", _this.paymentState); t2.add$2(t1, "quoteState", _this.quoteState); t2.add$2(t1, "purchaseOrderState", _this.purchaseOrderState); t2.add$2(t1, "recurringExpenseState", _this.recurringExpenseState); t2.add$2(t1, "subscriptionState", _this.subscriptionState); t2.add$2(t1, "taskStatusState", _this.taskStatusState); t2.add$2(t1, "expenseCategoryState", _this.expenseCategoryState); t2.add$2(t1, "recurringInvoiceState", _this.recurringInvoiceState); t2.add$2(t1, "webhookState", _this.webhookState); t2.add$2(t1, "tokenState", _this.tokenState); t2.add$2(t1, "paymentTermState", _this.paymentTermState); t2.add$2(t1, "designState", _this.designState); t2.add$2(t1, "creditState", _this.creditState); t2.add$2(t1, "userState", _this.userState); t2.add$2(t1, "taxRateState", _this.taxRateState); t2.add$2(t1, "companyGatewayState", _this.companyGatewayState); t2.add$2(t1, "groupState", _this.groupState); return t2.toString$0(t1); } }; A.UserCompanyStateBuilder.prototype = { get$userCompany() { var t1 = this.get$_company_state$_$this(), t2 = t1._company_state$_userCompany; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t1._company_state$_userCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$documentState() { var t1 = this.get$_company_state$_$this(), t2 = t1._documentState; return t2 == null ? t1._documentState = new A.DocumentStateBuilder() : t2; }, get$productState() { var t1 = this.get$_company_state$_$this(), t2 = t1._productState; return t2 == null ? t1._productState = new A.ProductStateBuilder() : t2; }, get$clientState() { var t1 = this.get$_company_state$_$this(), t2 = t1._clientState; return t2 == null ? t1._clientState = new A.ClientStateBuilder() : t2; }, get$invoiceState() { var t1 = this.get$_company_state$_$this(), t2 = t1._invoiceState; return t2 == null ? t1._invoiceState = new A.InvoiceStateBuilder() : t2; }, get$expenseState() { var t1 = this.get$_company_state$_$this(), t2 = t1._expenseState; return t2 == null ? t1._expenseState = new A.ExpenseStateBuilder() : t2; }, get$vendorState() { var t1 = this.get$_company_state$_$this(), t2 = t1._vendorState; return t2 == null ? t1._vendorState = new A.VendorStateBuilder() : t2; }, get$taskState() { var t1 = this.get$_company_state$_$this(), t2 = t1._taskState; return t2 == null ? t1._taskState = new A.TaskStateBuilder() : t2; }, get$projectState() { var t1 = this.get$_company_state$_$this(), t2 = t1._projectState; return t2 == null ? t1._projectState = new A.ProjectStateBuilder() : t2; }, get$paymentState() { var t1 = this.get$_company_state$_$this(), t2 = t1._paymentState; return t2 == null ? t1._paymentState = new A.PaymentStateBuilder() : t2; }, get$quoteState() { var t1 = this.get$_company_state$_$this(), t2 = t1._quoteState; return t2 == null ? t1._quoteState = new A.QuoteStateBuilder() : t2; }, get$purchaseOrderState() { var t1 = this.get$_company_state$_$this(), t2 = t1._purchaseOrderState; return t2 == null ? t1._purchaseOrderState = new A.PurchaseOrderStateBuilder() : t2; }, get$recurringExpenseState() { var t1 = this.get$_company_state$_$this(), t2 = t1._recurringExpenseState; return t2 == null ? t1._recurringExpenseState = new A.RecurringExpenseStateBuilder() : t2; }, get$subscriptionState() { var t1 = this.get$_company_state$_$this(), t2 = t1._subscriptionState; return t2 == null ? t1._subscriptionState = new A.SubscriptionStateBuilder() : t2; }, get$taskStatusState() { var t1 = this.get$_company_state$_$this(), t2 = t1._taskStatusState; return t2 == null ? t1._taskStatusState = new A.TaskStatusStateBuilder() : t2; }, get$expenseCategoryState() { var t1 = this.get$_company_state$_$this(), t2 = t1._expenseCategoryState; return t2 == null ? t1._expenseCategoryState = new A.ExpenseCategoryStateBuilder() : t2; }, get$recurringInvoiceState() { var t1 = this.get$_company_state$_$this(), t2 = t1._recurringInvoiceState; return t2 == null ? t1._recurringInvoiceState = new A.RecurringInvoiceStateBuilder() : t2; }, get$webhookState() { var t1 = this.get$_company_state$_$this(), t2 = t1._webhookState; return t2 == null ? t1._webhookState = new A.WebhookStateBuilder() : t2; }, get$tokenState() { var t1 = this.get$_company_state$_$this(), t2 = t1._tokenState; return t2 == null ? t1._tokenState = new A.TokenStateBuilder() : t2; }, get$paymentTermState() { var t1 = this.get$_company_state$_$this(), t2 = t1._paymentTermState; return t2 == null ? t1._paymentTermState = new A.PaymentTermStateBuilder() : t2; }, get$designState() { var t1 = this.get$_company_state$_$this(), t2 = t1._designState; return t2 == null ? t1._designState = new A.DesignStateBuilder() : t2; }, get$creditState() { var t1 = this.get$_company_state$_$this(), t2 = t1._creditState; return t2 == null ? t1._creditState = new A.CreditStateBuilder() : t2; }, get$userState() { var t1 = this.get$_company_state$_$this(), t2 = t1._userState; return t2 == null ? t1._userState = new A.UserStateBuilder() : t2; }, get$taxRateState() { var t1 = this.get$_company_state$_$this(), t2 = t1._taxRateState; return t2 == null ? t1._taxRateState = new A.TaxRateStateBuilder() : t2; }, get$companyGatewayState() { var t1 = this.get$_company_state$_$this(), t2 = t1._companyGatewayState; return t2 == null ? t1._companyGatewayState = new A.CompanyGatewayStateBuilder() : t2; }, get$groupState() { var t1 = this.get$_company_state$_$this(), t2 = t1._groupState; return t2 == null ? t1._groupState = new A.GroupStateBuilder() : t2; }, get$_company_state$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._company_state$_$v; if ($$v != null) { _this._lastUpdated = $$v.lastUpdated; t1 = $$v.userCompany; if (t1 == null) t1 = null; else { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._company_model$_$v = t1; t1 = t2; } _this._company_state$_userCompany = t1; t1 = $$v.documentState; t1.toString; t2 = new A.DocumentStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._document_state$_$v = t1; _this._documentState = t2; t2 = $$v.productState; t2.toString; t1 = new A.ProductStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._product_state$_$v = t2; _this._productState = t1; t1 = $$v.clientState; t1.toString; t2 = new A.ClientStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._client_state$_$v = t1; _this._clientState = t2; t2 = $$v.invoiceState; t2.toString; t1 = new A.InvoiceStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._invoice_state$_$v = t2; _this._invoiceState = t1; t1 = $$v.expenseState; t1.toString; t2 = new A.ExpenseStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._expense_state$_$v = t1; _this._expenseState = t2; t2 = $$v.vendorState; t2.toString; t1 = new A.VendorStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._vendor_state$_$v = t2; _this._vendorState = t1; t1 = $$v.taskState; t1.toString; t2 = new A.TaskStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._task_state$_$v = t1; _this._taskState = t2; t2 = $$v.projectState; t2.toString; t1 = new A.ProjectStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._project_state$_$v = t2; _this._projectState = t1; t1 = $$v.paymentState; t1.toString; t2 = new A.PaymentStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._payment_state$_$v = t1; _this._paymentState = t2; t2 = $$v.quoteState; t2.toString; t1 = new A.QuoteStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._quote_state$_$v = t2; _this._quoteState = t1; t1 = $$v.purchaseOrderState; t1.toString; t2 = new A.PurchaseOrderStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._purchase_order_state$_$v = t1; _this._purchaseOrderState = t2; t2 = $$v.recurringExpenseState; t2.toString; t1 = new A.RecurringExpenseStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._recurring_expense_state$_$v = t2; _this._recurringExpenseState = t1; t1 = $$v.subscriptionState; t1.toString; t2 = new A.SubscriptionStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._subscription_state$_$v = t1; _this._subscriptionState = t2; t2 = $$v.taskStatusState; t2.toString; t1 = new A.TaskStatusStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._task_status_state$_$v = t2; _this._taskStatusState = t1; t1 = $$v.expenseCategoryState; t1.toString; t2 = new A.ExpenseCategoryStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._expense_category_state$_$v = t1; _this._expenseCategoryState = t2; t2 = $$v.recurringInvoiceState; t2.toString; t1 = new A.RecurringInvoiceStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._recurring_invoice_state$_$v = t2; _this._recurringInvoiceState = t1; t1 = $$v.webhookState; t1.toString; t2 = new A.WebhookStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._webhook_state$_$v = t1; _this._webhookState = t2; t2 = $$v.tokenState; t2.toString; t1 = new A.TokenStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._token_state$_$v = t2; _this._tokenState = t1; t1 = $$v.paymentTermState; t1.toString; t2 = new A.PaymentTermStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._payment_term_state$_$v = t1; _this._paymentTermState = t2; t2 = $$v.designState; t2.toString; t1 = new A.DesignStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._design_state$_$v = t2; _this._designState = t1; t1 = $$v.creditState; t1.toString; t2 = new A.CreditStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._credit_state$_$v = t1; _this._creditState = t2; t2 = $$v.userState; t2.toString; t1 = new A.UserStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._user_state$_$v = t2; _this._userState = t1; t1 = $$v.taxRateState; t1.toString; t2 = new A.TaxRateStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._tax_rate_state$_$v = t1; _this._taxRateState = t2; t2 = $$v.companyGatewayState; t2.toString; t1 = new A.CompanyGatewayStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._company_gateway_state$_$v = t2; _this._companyGatewayState = t1; t1 = $$v.groupState; t1.toString; t2 = new A.GroupStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._group_state$_$v = t1; _this._groupState = t2; _this._company_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, exception, _this = this, _s16_ = "UserCompanyState", _$result = null; try { _$result0 = _this._company_state$_$v; if (_$result0 == null) { t1 = _this.get$_company_state$_$this()._lastUpdated; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "lastUpdated")); t2 = _this._company_state$_userCompany; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$documentState().build$0(0); t4 = _this.get$productState().build$0(0); t5 = _this.get$clientState().build$0(0); t6 = _this.get$invoiceState().build$0(0); t7 = _this.get$expenseState().build$0(0); t8 = _this.get$vendorState().build$0(0); t9 = _this.get$taskState().build$0(0); t10 = _this.get$projectState().build$0(0); t11 = _this.get$paymentState().build$0(0); t12 = _this.get$quoteState().build$0(0); t13 = _this.get$purchaseOrderState().build$0(0); t14 = _this.get$recurringExpenseState().build$0(0); t15 = _this.get$subscriptionState().build$0(0); t16 = _this.get$taskStatusState().build$0(0); t17 = _this.get$expenseCategoryState().build$0(0); t18 = _this.get$recurringInvoiceState().build$0(0); t19 = _this.get$webhookState().build$0(0); t20 = _this.get$tokenState().build$0(0); t21 = _this.get$paymentTermState().build$0(0); t22 = _this.get$designState().build$0(0); t23 = _this.get$creditState().build$0(0); t24 = _this.get$userState().build$0(0); t25 = _this.get$taxRateState().build$0(0); _$result0 = A._$UserCompanyState$_(t5, _this.get$companyGatewayState().build$0(0), t23, t22, t3, t17, t7, _this.get$groupState().build$0(0), t6, t1, t11, t21, t4, t10, t13, t12, t14, t18, t15, t9, t16, t25, t20, t2, t24, t8, t19); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "userCompany"; t1 = _this._company_state$_userCompany; if (t1 != null) t1.build$0(0); _$failedField = "documentState"; _this.get$documentState().build$0(0); _$failedField = "productState"; _this.get$productState().build$0(0); _$failedField = "clientState"; _this.get$clientState().build$0(0); _$failedField = "invoiceState"; _this.get$invoiceState().build$0(0); _$failedField = "expenseState"; _this.get$expenseState().build$0(0); _$failedField = "vendorState"; _this.get$vendorState().build$0(0); _$failedField = "taskState"; _this.get$taskState().build$0(0); _$failedField = "projectState"; _this.get$projectState().build$0(0); _$failedField = "paymentState"; _this.get$paymentState().build$0(0); _$failedField = "quoteState"; _this.get$quoteState().build$0(0); _$failedField = "purchaseOrderState"; _this.get$purchaseOrderState().build$0(0); _$failedField = "recurringExpenseState"; _this.get$recurringExpenseState().build$0(0); _$failedField = "subscriptionState"; _this.get$subscriptionState().build$0(0); _$failedField = "taskStatusState"; _this.get$taskStatusState().build$0(0); _$failedField = "expenseCategoryState"; _this.get$expenseCategoryState().build$0(0); _$failedField = "recurringInvoiceState"; _this.get$recurringInvoiceState().build$0(0); _$failedField = "webhookState"; _this.get$webhookState().build$0(0); _$failedField = "tokenState"; _this.get$tokenState().build$0(0); _$failedField = "paymentTermState"; _this.get$paymentTermState().build$0(0); _$failedField = "designState"; _this.get$designState().build$0(0); _$failedField = "creditState"; _this.get$creditState().build$0(0); _$failedField = "userState"; _this.get$userState().build$0(0); _$failedField = "taxRateState"; _this.get$taxRateState().build$0(0); _$failedField = "companyGatewayState"; _this.get$companyGatewayState().build$0(0); _$failedField = "groupState"; _this.get$groupState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_state$_$v = t1; return _$result; } }; A._$SettingsUIState.prototype = { rebuild$1(updates) { var t1 = new A.SettingsUIStateBuilder(); t1.get$_company_state$_$this()._selectedTemplate = B.EmailTemplate_invoice; A.ArgumentError_checkNotNull(this, "other"); t1._company_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.SettingsUIState && J.$eq$(_this.company, other.company) && J.$eq$(_this.origCompany, other.origCompany) && J.$eq$(_this.client, other.client) && J.$eq$(_this.origClient, other.origClient) && J.$eq$(_this.group, other.group) && J.$eq$(_this.origGroup, other.origGroup) && J.$eq$(_this.user, other.user) && J.$eq$(_this.origUser, other.origUser) && _this.entityType === other.entityType && _this.isChanged === other.isChanged && _this.updatedAt === other.updatedAt && _this.section === other.section && _this.tabIndex === other.tabIndex && _this.selectedTemplate === other.selectedTemplate && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt; }, get$hashCode(_) { var _this = this, t1 = _this._company_state$__hashCode; return t1 == null ? _this._company_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.company)), J.get$hashCode$(_this.origCompany)), J.get$hashCode$(_this.client)), J.get$hashCode$(_this.origClient)), J.get$hashCode$(_this.group)), J.get$hashCode$(_this.origGroup)), J.get$hashCode$(_this.user)), J.get$hashCode$(_this.origUser)), A.Primitives_objectHashCode(_this.entityType)), B.JSBool_methods.get$hashCode(_this.isChanged)), B.JSInt_methods.get$hashCode(_this.updatedAt)), B.JSString_methods.get$hashCode(_this.section)), B.JSInt_methods.get$hashCode(_this.tabIndex)), A.Primitives_objectHashCode(_this.selectedTemplate)), J.get$hashCode$(_this.filter)), B.JSInt_methods.get$hashCode(_this.filterClearedAt))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SettingsUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "company", _this.company); t2.add$2(t1, "origCompany", _this.origCompany); t2.add$2(t1, "client", _this.client); t2.add$2(t1, "origClient", _this.origClient); t2.add$2(t1, "group", _this.group); t2.add$2(t1, "origGroup", _this.origGroup); t2.add$2(t1, "user", _this.user); t2.add$2(t1, "origUser", _this.origUser); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "section", _this.section); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "selectedTemplate", _this.selectedTemplate); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); return t2.toString$0(t1); }, get$company() { return this.company; }, get$group() { return this.group; }, get$user(receiver) { return this.user; } }; A.SettingsUIStateBuilder.prototype = { get$company() { var t1 = this.get$_company_state$_$this(), t2 = t1._company; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._company = t2; t1 = t2; } else t1 = t2; return t1; }, get$origCompany() { var t1 = this.get$_company_state$_$this(), t2 = t1._origCompany; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._origCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$client(_) { var t1 = this.get$_company_state$_$this(), t2 = t1._client; if (t2 == null) { t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._client = t2; t1 = t2; } else t1 = t2; return t1; }, get$origClient() { var t1 = this.get$_company_state$_$this(), t2 = t1._origClient; if (t2 == null) { t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._origClient = t2; t1 = t2; } else t1 = t2; return t1; }, get$group() { var t1 = this.get$_company_state$_$this(), t2 = t1._company_state$_group; if (t2 == null) { t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); t1._company_state$_group = t2; t1 = t2; } else t1 = t2; return t1; }, get$origGroup() { var t1 = this.get$_company_state$_$this(), t2 = t1._origGroup; if (t2 == null) { t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); t1._origGroup = t2; t1 = t2; } else t1 = t2; return t1; }, get$user(_) { var t1 = this.get$_company_state$_$this(), t2 = t1._user; if (t2 == null) { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); t1._user = t2; t1 = t2; } else t1 = t2; return t1; }, get$origUser() { var t1 = this.get$_company_state$_$this(), t2 = t1._origUser; if (t2 == null) { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); t1._origUser = t2; t1 = t2; } else t1 = t2; return t1; }, get$_company_state$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._company_state$_$v; if ($$v != null) { t1 = $$v.company; t1.toString; t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._company_model$_$v = t1; _this._company = t2; t2 = $$v.origCompany; t2.toString; t1 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(t2, _s5_); t1._company_model$_$v = t2; _this._origCompany = t1; t1 = $$v.client; t1.toString; t2 = new A.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; A.ArgumentError_checkNotNull(t1, _s5_); t2._client_model$_$v = t1; _this._client = t2; t2 = $$v.origClient; t2.toString; t1 = new A.ClientEntityBuilder(); t1.get$_client_model$_$this()._number = ""; A.ArgumentError_checkNotNull(t2, _s5_); t1._client_model$_$v = t2; _this._origClient = t1; t1 = $$v.group; t1.toString; t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._group_model$_$v = t1; _this._company_state$_group = t2; t2 = $$v.origGroup; t2.toString; t1 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(t2, _s5_); t1._group_model$_$v = t2; _this._origGroup = t1; t1 = $$v.user; t1.toString; t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._user_model$_$v = t1; _this._user = t2; t2 = $$v.origUser; t2.toString; t1 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(t2, _s5_); t1._user_model$_$v = t2; _this._origUser = t1; _this._entityType = $$v.entityType; _this._isChanged = $$v.isChanged; _this._updatedAt = $$v.updatedAt; _this._section = $$v.section; _this._tabIndex = $$v.tabIndex; _this._selectedTemplate = $$v.selectedTemplate; _this._company_state$_filter = $$v.filter; _this._company_state$_filterClearedAt = $$v.filterClearedAt; _this._company_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, exception, _this = this, _s15_ = "SettingsUIState", _$result = null; try { _$result0 = _this._company_state$_$v; if (_$result0 == null) { t1 = _this.get$company().build$0(0); t2 = _this.get$origCompany().build$0(0); t3 = _this.get$client(_this).build$0(0); t4 = _this.get$origClient().build$0(0); t5 = _this.get$group().build$0(0); t6 = _this.get$origGroup().build$0(0); t7 = _this.get$user(_this).build$0(0); t8 = _this.get$origUser().build$0(0); t9 = _this.get$_company_state$_$this()._entityType; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "entityType")); t10 = _this.get$_company_state$_$this()._isChanged; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "isChanged")); t11 = _this.get$_company_state$_$this()._updatedAt; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "updatedAt")); t12 = _this.get$_company_state$_$this()._section; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "section")); t13 = _this.get$_company_state$_$this()._tabIndex; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "tabIndex")); t14 = _this.get$_company_state$_$this()._selectedTemplate; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "selectedTemplate")); t15 = _this.get$_company_state$_$this()._company_state$_filter; t16 = _this.get$_company_state$_$this()._company_state$_filterClearedAt; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "filterClearedAt")); _$result0 = A._$SettingsUIState$_(t3, t1, t9, t15, t16, t5, t10, t4, t2, t6, t8, t12, t14, t13, t11, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "company"; _this.get$company().build$0(0); _$failedField = "origCompany"; _this.get$origCompany().build$0(0); _$failedField = "client"; _this.get$client(_this).build$0(0); _$failedField = "origClient"; _this.get$origClient().build$0(0); _$failedField = "group"; _this.get$group().build$0(0); _$failedField = "origGroup"; _this.get$origGroup().build$0(0); _$failedField = "user"; _this.get$user(_this).build$0(0); _$failedField = "origUser"; _this.get$origUser().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s15_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_state$_$v = t1; return _$result; } }; A.ViewCompanyGatewayList.prototype = {$isPersistUI: 1}; A.ViewCompanyGateway.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditCompanyGateway.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$companyGateway() { return this.companyGateway; } }; A.UpdateCompanyGateway.prototype = {$isPersistUI: 1, get$companyGateway() { return this.companyGateway; } }; A.LoadCompanyGateway.prototype = {}; A.LoadCompanyGatewayRequest.prototype = {$isStartLoading: 1}; A.LoadCompanyGatewayFailure.prototype = { toString$0(_) { return "LoadCompanyGatewayFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadCompanyGatewaySuccess.prototype = { toString$0(_) { return "LoadCompanyGatewaySuccess{companyGateway: " + A.S(this.companyGateway) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$companyGateway() { return this.companyGateway; } }; A.LoadCompanyGatewaysRequest.prototype = {$isStartLoading: 1}; A.LoadCompanyGatewaysFailure.prototype = { toString$0(_) { return "LoadCompanyGatewaysFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadCompanyGatewaysSuccess.prototype = { toString$0(_) { return "LoadCompanyGatewaysSuccess{companyGateways: " + A.S(this.companyGateways) + "}"; }, $isStopLoading: 1 }; A.SaveCompanyGatewayRequest.prototype = {$isStartSaving: 1, get$companyGateway() { return this.companyGateway; } }; A.SaveCompanyGatewaySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$companyGateway() { return this.companyGateway; } }; A.AddCompanyGatewaySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$companyGateway() { return this.companyGateway; } }; A.SaveCompanyGatewayFailure.prototype = {$isStopSaving: 1}; A.ArchiveCompanyGatewayRequest.prototype = {$isStartSaving: 1}; A.ArchiveCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveCompanyGatewayFailure.prototype = {$isStopSaving: 1}; A.DeleteCompanyGatewayRequest.prototype = {$isStartSaving: 1}; A.DeleteCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteCompanyGatewayFailure.prototype = {$isStopSaving: 1}; A.DisconnectCompanyGatewayRequest.prototype = {$isStartSaving: 1}; A.DisconnectCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DisconnectCompanyGatewayFailure.prototype = {$isStopSaving: 1}; A.RestoreCompanyGatewayRequest.prototype = {$isStartSaving: 1}; A.RestoreCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreCompanyGatewayFailure.prototype = {$isStopSaving: 1}; A.FilterCompanyGatewaysByState.prototype = {$isPersistUI: 1}; A.FilterCompanyGatewaysByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCompanyGatewaysByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCompanyGatewaysByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCompanyGatewaysByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleCompanyGatewayAction_closure.prototype = { call$1(companyGateway) { return companyGateway.get$id(companyGateway); }, $signature: 41 }; A.handleCompanyGatewayAction_closure0.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 3 }; A.handleCompanyGatewayAction_closure1.prototype = { call$1(_) { var _this = this; A.passwordCallback(false, new A.handleCompanyGatewayAction__closure(_this.store, _this.completer, _this.companyGateway), _this.context, false); }, $signature: 11 }; A.handleCompanyGatewayAction__closure.prototype = { call$2(password, idToken) { var t1 = this.companyGateway; t1 = t1.get$id(t1); this.store.get$_dispatchers()[0].call$1(new A.DisconnectCompanyGatewayRequest(this.completer, t1, password, idToken)); }, $signature: 38 }; A.StartCompanyGatewayMultiselect.prototype = {}; A.AddToCompanyGatewayMultiselect.prototype = {}; A.RemoveFromCompanyGatewayMultiselect.prototype = {}; A.ClearCompanyGatewayMultiselect.prototype = {}; A._editCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { var _s31_ = "/settings/company_gateways/edit"; next.call$1(type$.legacy_EditCompanyGateway._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s31_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s31_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewCompanyGateway_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewCompanyGateway_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewCompanyGateway._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/company_gateways/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/company_gateways/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewCompanyGatewayList_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s26_ = "/settings/company_gateways"; next.call$1(type$.legacy_ViewCompanyGatewayList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s26_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s26_, new A._viewCompanyGatewayList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewCompanyGatewayList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_ArchiveCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = A.List_List$of(new A.MappedListIterable(t1, new A._archiveCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveCompanyGateway__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].companyGatewayState.map._map$_map.$index(0, id); }, $signature: 350 }; A._archiveCompanyGateway__closure0.prototype = { call$1(companyGateways) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 476 }; A._archiveCompanyGateway__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_DeleteCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = A.List_List$of(new A.MappedListIterable(t1, new A._deleteCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteCompanyGateway__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].companyGatewayState.map._map$_map.$index(0, id); }, $signature: 350 }; A._deleteCompanyGateway__closure0.prototype = { call$1(companyGateways) { this.store.get$_dispatchers()[0].call$1(new A.DeleteCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 476 }; A._deleteCompanyGateway__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_RestoreCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = A.List_List$of(new A.MappedListIterable(t1, new A._restoreCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreCompanyGateway__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].companyGatewayState.map._map$_map.$index(0, id); }, $signature: 350 }; A._restoreCompanyGateway__closure0.prototype = { call$1(companyGateways) { this.store.get$_dispatchers()[0].call$1(new A.RestoreCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 476 }; A._restoreCompanyGateway__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._disconnectCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DisconnectCompanyGatewayRequest._as(dynamicAction); this.repository.disconnect$4(0, J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.companyGatewayId, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._disconnectCompanyGateway__closure(store, dynamicAction), type$.Null).catchError$1(new A._disconnectCompanyGateway__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._disconnectCompanyGateway__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.DisconnectCompanyGatewaySuccess()); this.action.completer.complete$1(0, null); }, $signature: 86 }; A._disconnectCompanyGateway__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DisconnectCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveCompanyGatewayRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.companyGateway).then$1$1(0, new A._saveCompanyGateway__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveCompanyGateway__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveCompanyGateway__closure.prototype = { call$1(companyGateway) { var t1 = this.action, t2 = this.store; if (t1.companyGateway.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddCompanyGatewaySuccess(companyGateway)); else t2.get$_dispatchers()[0].call$1(new A.SaveCompanyGatewaySuccess(companyGateway)); t1.completer.complete$1(0, companyGateway); }, $signature: 279 }; A._saveCompanyGateway__closure0.prototype = { call$1(error) { A.print(error); A.StackTrace_current(); this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadCompanyGateway_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadCompanyGateway._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewayRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.companyGatewayId).then$1$1(0, new A._loadCompanyGateway__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadCompanyGateway__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadCompanyGateway__closure.prototype = { call$1(companyGateway) { this.store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewaySuccess(companyGateway)); this.action.completer.complete$1(0, null); }, $signature: 279 }; A._loadCompanyGateway__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewayFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadCompanyGateways_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadCompanyGateways._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewaysRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadCompanyGateways__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadCompanyGateways__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadCompanyGateways__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewaysSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1068 }; A._loadCompanyGateways__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadCompanyGatewaysFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.companyGatewayUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$companyGatewayListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer7().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._company_gateway_model$_$v = t1; t1 = $.$get$selectedIdReducer7().call$2(t2.selectedId, t3); b.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer7().call$2(t2.forceSelected, t3); b.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected = t3; return b; }, $signature: 1069 }; A.forceSelectedReducer_closure59.prototype = { call$2(completer, action) { return true; }, $signature: 1070 }; A.forceSelectedReducer_closure60.prototype = { call$2(completer, action) { return false; }, $signature: 1071 }; A.forceSelectedReducer_closure61.prototype = { call$2(completer, action) { return false; }, $signature: 1072 }; A.forceSelectedReducer_closure62.prototype = { call$2(completer, action) { return false; }, $signature: 1073 }; A.forceSelectedReducer_closure63.prototype = { call$2(completer, action) { return false; }, $signature: 1074 }; A.forceSelectedReducer_closure64.prototype = { call$2(completer, action) { return false; }, $signature: 1075 }; A.forceSelectedReducer_closure65.prototype = { call$2(completer, action) { return false; }, $signature: 1076 }; A.forceSelectedReducer_closure66.prototype = { call$2(completer, action) { return false; }, $signature: 1077 }; A.selectedIdReducer_closure119.prototype = { call$2(completer, action) { return ""; }, $signature: 1078 }; A.selectedIdReducer_closure120.prototype = { call$2(completer, action) { return ""; }, $signature: 1079 }; A.selectedIdReducer_closure121.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_companyGateway ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure122.prototype = { call$2(selectedId, action) { return action.companyGatewayId; }, $signature: 1080 }; A.selectedIdReducer_closure123.prototype = { call$2(selectedId, action) { return action.companyGateway.id; }, $signature: 1081 }; A.selectedIdReducer_closure124.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure125.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure126.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1082 }; A.selectedIdReducer_closure127.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1083 }; A.selectedIdReducer_closure128.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1084 }; A.selectedIdReducer_closure129.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1085 }; A.selectedIdReducer_closure130.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1086 }; A.selectedIdReducer_closure131.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1087 }; A.selectedIdReducer_closure132.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1088 }; A.selectedIdReducer_closure133.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_companyGateway ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure37.prototype = { call$2(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, $signature: 1089 }; A.editingReducer_closure38.prototype = { call$2(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, $signature: 1090 }; A.editingReducer_closure39.prototype = { call$2(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, $signature: 1091 }; A.editingReducer_closure40.prototype = { call$2(companyGateway, action) { return action.companyGateway.rebuild$1(new A.editingReducer__closure13()); }, $signature: 1092 }; A.editingReducer__closure13.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged = true; return b; }, $signature: 60 }; A._filterCompanyGatewaysByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCompanyGatewaysByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCompanyGatewaysByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCompanyGatewaysByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCompanyGatewaysByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterCompanyGatewaysByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCompanyGateways_closure.prototype = { call$1(b) { var t1 = this.action, t2 = t1.get$filter(t1); b.get$_list_ui_state$_$this()._list_ui_state$_filter = t2; t1.get$filter(t1); t1 = this.companyGatewayListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortCompanyGateways_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this(); t1 = this.action; t1.get$field(); b.get$_list_ui_state$_$this()._sortAscending = true; t1 = t1.get$field(); b.get$_list_ui_state$_$this()._sortField = t1; return b; }, $signature: 2 }; A._startListMultiselect_closure7.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure7.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure7.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure7.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveCompanyGatewaySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 472 }; A._deleteCompanyGatewaySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 472 }; A._restoreCompanyGatewaySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 472 }; A._addCompanyGateway_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addCompanyGateway__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 186 }; A._addCompanyGateway__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 60 }; A._updateCompanyGateway_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._updateCompanyGateway__closure())); return b; }, $signature: 186 }; A._updateCompanyGateway__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 60 }; A._setLoadedCompanyGateway_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._setLoadedCompanyGateway__closure())); return b; }, $signature: 186 }; A._setLoadedCompanyGateway__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 60 }; A._setLoadedCompany_closure1.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.companyGateways, new A._setLoadedCompany__closure1(), new A._setLoadedCompany__closure2(), type$.legacy_String, type$.legacy_CompanyGatewayEntity)); return b; }, $signature: 186 }; A._setLoadedCompany__closure1.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompany__closure2.prototype = { call$1(item) { return item; }, $signature: 727 }; A._setLoadedCompany_closure2.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 186 }; A._setLoadedCompanyGateways_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.companyGateways, new A._setLoadedCompanyGateways__closure(), new A._setLoadedCompanyGateways__closure0(), type$.legacy_String, type$.legacy_CompanyGatewayEntity)); return b; }, $signature: 186 }; A._setLoadedCompanyGateways__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompanyGateways__closure0.prototype = { call$1(item) { return item; }, $signature: 727 }; A._setLoadedCompanyGateways_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 186 }; A.memoizedFilteredCompanyGatewayList_closure.prototype = { call$5(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll) { return A.filteredCompanyGatewaysSelector(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll); }, $signature: 1096 }; A.filteredCompanyGatewaysSelector_closure.prototype = { call$1(companyGatewayId) { if (!this.companyGatewayMap._map$_map.$index(0, companyGatewayId).matchesStates$1(this.companyGatewayListState.stateFilters)) return false; return true; }, $signature: 16 }; A.filteredCompanyGatewaysSelector_closure0.prototype = { call$1(id) { var t1; if (id.length !== 0) { t1 = this.companyGatewayMap._map$_map; t1 = t1.containsKey$1(0, id) && t1.$index(0, id).matchesStates$1(this.companyGatewayListState.stateFilters); } else t1 = false; return t1; }, $signature: 16 }; A.filteredCompanyGatewaysSelector_closure1.prototype = { call$1(id) { var t1 = this.gatewaysIds; if (!B.JSArray_methods.contains$1(t1, id)) B.JSArray_methods.add$1(t1, id); }, $signature: 11 }; A.memoizedCalculateCompanyGatewayProcessed_closure.prototype = { call$2(companyGatewayId, paymentMap) { return A.calculateCompanyGatewayProcessed(companyGatewayId, paymentMap); }, $signature: 1097 }; A.calculateCompanyGatewayProcessed_closure.prototype = { call$2(paymentId, payment) { var t1; if (payment.companyGatewayId === this.companyGatewayId) { t1 = this._box_0; t1.total = t1.total + payment.get$completedAmount() * payment.exchangeRate; } }, $signature: 205 }; A.memoizedClientStatsForCompanyGateway_closure.prototype = { call$2(companyGatewayId, clientMap) { return A.clientStatsForCompanyGateway(companyGatewayId, clientMap); }, $signature: 765 }; A.clientStatsForCompanyGateway_closure.prototype = { call$2(clientId, client) { var t1 = client.gatewayTokens._list; t1 = new A.WhereIterable(t1, new A.clientStatsForCompanyGateway__closure(this.companyGatewayId), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); if (!t1.get$isEmpty(t1)) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.get$isArchived()) ++this._box_0.countArchived; }, $signature: 240 }; A.clientStatsForCompanyGateway__closure.prototype = { call$1(token) { return token.companyGatewayId === this.companyGatewayId; }, $signature: 762 }; A.memoizedPaymentStatsForCompanyGateway_closure.prototype = { call$2(companyGatewayId, paymentMap) { return A.paymentStatsForCompanyGateway(companyGatewayId, paymentMap); }, $signature: 1099 }; A.paymentStatsForCompanyGateway_closure.prototype = { call$2(paymentId, payment) { if (payment.companyGatewayId === this.companyGatewayId) if (!payment.get$isArchived() && !payment.isDeleted) ++this._box_0.countActive; else if (payment.get$isArchived()) ++this._box_0.countArchived; }, $signature: 205 }; A.getUnconnectedStripeAccount_closure.prototype = { call$2(id, gateway) { var t1; if (gateway.gatewayId === "d14dd26a47cecc30fdd65700bfb67b34" && !gateway.get$isArchived() && !gateway.isDeleted) { t1 = J.$index$asx(gateway.get$parsedConfig(), "account_id"); if (J.toString$0$(t1 == null ? "" : t1).length === 0) this._box_0.unconnectedGateway = gateway; } }, $signature: 1100 }; A.CompanyGatewayState.prototype = { $get$1(_, companyGatewayId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, companyGatewayId)) return t1.$index(0, companyGatewayId); else return A.CompanyGatewayEntity_CompanyGatewayEntity(companyGatewayId, null); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.CompanyGatewayUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$CompanyGatewayStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_6Re), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.CompanyGatewayStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_company_gateway_state$_$this(); t6 = t5._company_gateway_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._company_gateway_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_6Re)); break; case "list": t5 = result.get$_company_gateway_state$_$this(); t6 = t5._company_gateway_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._company_gateway_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Jwp; }, get$wireName() { return "CompanyGatewayState"; } }; A._$CompanyGatewayUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_UQL)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.CompanyGatewayUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_company_gateway_state$_$this(); t4 = t3._company_gateway_state$_editing; t3 = t4 == null ? t3._company_gateway_state$_editing = new A.CompanyGatewayEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_UQL)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._company_gateway_model$_$v = t4; break; case "listUIState": t3 = result.get$_company_gateway_state$_$this(); t4 = t3._company_gateway_state$_listUIState; t3 = t4 == null ? t3._company_gateway_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_company_gateway_state$_$this()._company_gateway_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_56s; }, get$wireName() { return "CompanyGatewayUIState"; } }; A._$CompanyGatewayState.prototype = { rebuild$1(updates) { var t1 = new A.CompanyGatewayStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._company_gateway_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyGatewayState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._company_gateway_state$__hashCode; return t1 == null ? _this._company_gateway_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.CompanyGatewayStateBuilder.prototype = { get$map(_) { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_map; return t2 == null ? t1._company_gateway_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyGatewayEntity) : t2; }, get$list(_) { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_list; return t2 == null ? t1._company_gateway_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_company_gateway_state$_$this() { var t1, t2, _this = this, $$v = _this._company_gateway_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._company_gateway_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._company_gateway_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._company_gateway_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._company_gateway_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$CompanyGatewayState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("CompanyGatewayState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_gateway_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$CompanyGatewayUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.CompanyGatewayUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._company_gateway_state$__hashCode; return t1 == null ? _this._company_gateway_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.CompanyGatewayUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_editing; return t2 == null ? t1._company_gateway_state$_editing = new A.CompanyGatewayEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_listUIState; return t2 == null ? t1._company_gateway_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_company_gateway_state$_$this() { var t1, t2, _this = this, $$v = _this._company_gateway_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.CompanyGatewayEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._company_gateway_model$_$v = t1; t1 = t2; } _this._company_gateway_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._company_gateway_state$_listUIState = t2; _this._company_gateway_state$_selectedId = $$v.selectedId; _this._company_gateway_state$_forceSelected = $$v.forceSelected; _this._company_gateway_state$_tabIndex = $$v.tabIndex; _this._company_gateway_state$_saveCompleter = $$v.saveCompleter; _this._company_gateway_state$_cancelCompleter = $$v.cancelCompleter; _this._company_gateway_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s21_ = "CompanyGatewayUIState", _$result = null; try { _$result0 = _this._company_gateway_state$_$v; if (_$result0 == null) { t1 = _this._company_gateway_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId; t4 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected; t5 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s21_, "tabIndex")); t6 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_saveCompleter; _$result0 = A._$CompanyGatewayUIState$_(_this.get$_company_gateway_state$_$this()._company_gateway_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._company_gateway_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s21_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._company_gateway_state$_$v = t1; return _$result; } }; A._CompanyGatewayUIState_Object_EntityUIState.prototype = {}; A.ViewCreditList.prototype = {$isPersistUI: 1}; A.ViewCredit.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditCredit.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$credit() { return this.credit; } }; A.ShowEmailCredit.prototype = { get$credit() { return this.credit; } }; A.ShowPdfCredit.prototype = { get$credit() { return this.credit; } }; A.EditCreditItem.prototype = {$isPersistUI: 1}; A.UpdateCredit.prototype = {$isPersistUI: 1, get$credit() { return this.credit; } }; A.UpdateCreditClient.prototype = {$isPersistUI: 1}; A.LoadCredit.prototype = {}; A.LoadCredits.prototype = {}; A.LoadCreditRequest.prototype = {$isStartLoading: 1}; A.LoadCreditFailure.prototype = { toString$0(_) { return "LoadCreditFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadCreditSuccess.prototype = { toString$0(_) { return "LoadCreditSuccess{credit: " + A.S(this.credit) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$credit() { return this.credit; } }; A.LoadCreditsRequest.prototype = {$isStartLoading: 1}; A.LoadCreditsFailure.prototype = { toString$0(_) { return "LoadCreditsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadCreditsSuccess.prototype = { toString$0(_) { return "LoadCreditsSuccess{credits: " + A.S(this.credits) + "}"; }, $isStopLoading: 1 }; A.AddCreditContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.RemoveCreditContact.prototype = {$isPersistUI: 1}; A.AddCreditItem.prototype = {$isPersistUI: 1}; A.MoveCreditItem.prototype = {$isPersistUI: 1}; A.AddCreditItems.prototype = {$isPersistUI: 1}; A.UpdateCreditItem.prototype = {$isPersistUI: 1}; A.DeleteCreditItem.prototype = {$isPersistUI: 1}; A.SaveCreditRequest.prototype = {$isStartSaving: 1, get$credit() { return this.credit; } }; A.SaveCreditSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$credit() { return this.credit; } }; A.AddCreditSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$credit() { return this.credit; } }; A.SaveCreditFailure.prototype = {$isStopSaving: 1}; A.EmailCreditRequest.prototype = {$isStartSaving: 1, get$body(receiver) { return this.body; } }; A.EmailCreditSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.EmailCreditFailure.prototype = {$isStopSaving: 1}; A.MarkSentCreditRequest.prototype = {$isStartSaving: 1}; A.MarkSentCreditSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.MarkSentCreditFailure.prototype = {$isStopSaving: 1}; A.BulkEmailCreditsRequest.prototype = {$isStartSaving: 1}; A.BulkEmailCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.BulkEmailCreditsFailure.prototype = {$isStopSaving: 1}; A.MarkCreditsPaidRequest.prototype = {$isStartSaving: 1}; A.MarkCreditsPaidSuccess.prototype = {$isStopSaving: 1}; A.MarkCreditsPaidFailure.prototype = {$isStopSaving: 1}; A.ArchiveCreditsRequest.prototype = {$isStartSaving: 1}; A.ArchiveCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveCreditsFailure.prototype = {$isStopSaving: 1}; A.DeleteCreditsRequest.prototype = {$isStartSaving: 1}; A.DeleteCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteCreditsFailure.prototype = {$isStopSaving: 1}; A.DownloadCreditsRequest.prototype = {$isStartSaving: 1}; A.DownloadCreditsSuccess.prototype = {$isStopSaving: 1}; A.DownloadCreditsFailure.prototype = {$isStopSaving: 1}; A.RestoreCreditsRequest.prototype = {$isStartSaving: 1}; A.RestoreCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreCreditsFailure.prototype = {$isStopSaving: 1}; A.FilterCredits.prototype = {$isPersistUI: 1}; A.SortCredits.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterCreditsByState.prototype = {$isPersistUI: 1}; A.FilterCreditsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCreditsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCreditsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterCreditsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.SaveCreditDocumentRequest.prototype = {$isStartSaving: 1, get$credit() { return this.credit; } }; A.SaveCreditDocumentFailure.prototype = {$isStopSaving: 1}; A.handleCreditAction_closure.prototype = { call$1(credit) { return credit.get$id(credit); }, $signature: 41 }; A.handleCreditAction_closure0.prototype = { call$1(credit) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!t2._list[t1].clientState.$get$1(0, type$.legacy_InvoiceEntity._as(credit).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 145 }; A.handleCreditAction_closure1.prototype = { call$0() { var t1, t2; A.Navigator_of(this.context, false).pop$0(0); t1 = this.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; A.editEntity(null, t2._list[t1].clientState.$get$1(0, this.credit.clientId), true, null); }, $signature: 1 }; A.handleCreditAction_closure2.prototype = { call$1(_) { var _this = this, t1 = _this.creditIds, t2 = _this.localization; if (t1.length === 1) t2 = t2.get$emailedCredit(); else { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "emailed_credits"); if (t2 == null) t2 = ""; } t2 = A.snackBarCompleter(_this.context, t2, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.BulkEmailCreditsRequest(t2, t1)); }, $signature: 11 }; A.handleCreditAction_closure3.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_purchaseOrder; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleCreditAction_closure4.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_invoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleCreditAction_closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleCreditAction_closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_recurringInvoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleCreditAction_closure7.prototype = { call$1(b) { var t1; b.get$_payment_model$_$this()._typeId = "32"; t1 = this.credit.clientId; b.get$_payment_model$_$this()._payment_model$_clientId = t1; b.get$credits().addAll$1(0, J.map$1$1$ax(this.credits, new A.handleCreditAction__closure(), type$.legacy_PaymentableEntity).toList$0(0)); return b; }, $signature: 44 }; A.handleCreditAction__closure.prototype = { call$1(credit) { var t1 = credit.id, t2 = credit.partial; if (!(t2 !== 0)) t2 = credit.statusId !== "1" ? credit.balance : credit.amount; return A.PaymentableEntity_PaymentableEntity(t2, t1, null); }, $signature: 717 }; A.handleCreditAction_closure8.prototype = { call$1(_) { return this.response.bodyBytes; }, $signature: 246 }; A.StartCreditMultiselect.prototype = {}; A.AddToCreditMultiselect.prototype = {}; A.RemoveFromCreditMultiselect.prototype = {}; A.ClearCreditMultiselect.prototype = {}; A.UpdateCreditTab.prototype = {$isPersistUI: 1}; A._viewCredit_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewCredit_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewCredit._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit/view")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewCreditList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewCreditList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/credit", new A._viewCreditList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewCreditList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._editCredit_closure.prototype = { call$3(store, dynamicAction, next) { var _s12_ = "/credit/edit"; next.call$1(type$.legacy_EditCredit._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._showEmailCredit_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showEmailCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailCredit_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailCredit._as(dynamicAction); next.call$1(dynamicAction); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit/email")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._showPdfCredit_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfCredit_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfCredit._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._archiveCredit_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_ArchiveCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = A.List_List$of(new A.MappedListIterable(t1, new A._archiveCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveCredit__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].creditState.map._map$_map.$index(0, id); }, $signature: 68 }; A._archiveCredit__closure0.prototype = { call$1(credits) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._archiveCredit__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteCredit_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_DeleteCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = A.List_List$of(new A.MappedListIterable(t1, new A._deleteCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteCredit__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].creditState.map._map$_map.$index(0, id); }, $signature: 68 }; A._deleteCredit__closure0.prototype = { call$1(credits) { this.store.get$_dispatchers()[0].call$1(new A.DeleteCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._deleteCredit__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreCredit_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_RestoreCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = A.List_List$of(new A.MappedListIterable(t1, new A._restoreCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreCredit__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].creditState.map._map$_map.$index(0, id); }, $signature: 68 }; A._restoreCredit__closure0.prototype = { call$1(credits) { this.store.get$_dispatchers()[0].call$1(new A.RestoreCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._restoreCredit__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._markSentCredit_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkSentCreditRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.creditIds, B.EntityAction_markSent).then$1$1(0, new A._markSentCredit__closure(store, dynamicAction), type$.Null).catchError$1(new A._markSentCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markSentCredit__closure.prototype = { call$1(credits) { this.store.get$_dispatchers()[0].call$1(new A.MarkSentCreditSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markSentCredit__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkSentCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._markPaidCredit_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkCreditsPaidRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_markPaid).then$1$1(0, new A._markPaidCredit__closure(store, dynamicAction), type$.Null).catchError$1(new A._markPaidCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markPaidCredit__closure.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.MarkCreditsPaidSuccess()); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markPaidCredit__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkCreditsPaidFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._emailCredit_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, origCredit; type$.legacy_EmailCreditRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].creditState.map; t2 = dynamicAction.creditId; origCredit = t1._map$_map.$index(0, t2); this.repository.emailCredit$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), origCredit, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new A._emailCredit__closure(store, dynamicAction), type$.Null).catchError$1(new A._emailCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._emailCredit__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.EmailCreditSuccess()); this.action.completer.complete$1(0, null); }, $signature: 86 }; A._emailCredit__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.EmailCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveCredit_closure.prototype = { call$3(store, dynamicAction, next) { var updatedCredit; type$.legacy_SaveCreditRequest._as(dynamicAction); updatedCredit = dynamicAction.credit.rebuild$1(new A._saveCredit__closure(dynamicAction)); this.repository.saveData$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), updatedCredit, dynamicAction.action).then$1$1(0, new A._saveCredit__closure0(dynamicAction, store), type$.Null).catchError$1(new A._saveCredit__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveCredit__closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.credit.lineItems._list; t1.replace$1(0, new A.WhereIterable(t2, new A._saveCredit___closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); return b; }, $signature: 6 }; A._saveCredit___closure.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._saveCredit__closure0.prototype = { call$1(credit) { var t1 = this.action, t2 = this.store; if (t1.credit.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddCreditSuccess(credit)); else t2.get$_dispatchers()[0].call$1(new A.SaveCreditSuccess(credit)); t1.completer.complete$1(0, credit); }, $signature: 64 }; A._saveCredit__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadCredit_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadCredit._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadCreditRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.creditId).then$1$1(0, new A._loadCredit__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadCredit__closure.prototype = { call$1(credit) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadCreditSuccess(credit)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 64 }; A._loadCredit__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadCreditFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadCredits_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadCredits._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadCreditsRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new A._loadCredits__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadCredits__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadCreditsSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadProjects()); }, $signature: 231 }; A._loadCredits__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadCreditsFailure(error)); this.action.toString; }, $signature: 3 }; A._downloadCredits_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DownloadCreditsRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.creditIds, B.EntityAction_bulkDownload).then$1$1(0, new A._downloadCredits__closure(store, dynamicAction), type$.Null).catchError$1(new A._downloadCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._downloadCredits__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.DownloadCreditsSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._downloadCredits__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DownloadCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._bulkEmailCredits_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_BulkEmailCreditsRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.creditIds, B.EntityAction_sendEmail).then$1$1(0, new A._bulkEmailCredits__closure(store, dynamicAction), type$.Null).catchError$1(new A._bulkEmailCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._bulkEmailCredits__closure.prototype = { call$1(credits) { this.store.get$_dispatchers()[0].call$1(new A.BulkEmailCreditsSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._bulkEmailCredits__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.BulkEmailCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveDocument_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveCreditDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.credit, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure1(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure2(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveCreditDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure1.prototype = { call$1(credit) { this.store.get$_dispatchers()[0].call$1(new A.SaveCreditSuccess(credit)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._saveDocument__closure2.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveCreditDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.creditUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$creditListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer10().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._invoice_model$_$v = t1; t1 = $.$get$editingItemReducer0().call$2(t2.editingItemIndex, t3); b.get$_credit_state$_$this()._credit_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer10().call$2(t2.selectedId, t3); b.get$_credit_state$_$this()._credit_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer10().call$2(t2.forceSelected, t3); b.get$_credit_state$_$this()._credit_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer5().call$2(t2.tabIndex, t3); b.get$_credit_state$_$this()._credit_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer0().call$2(t2.historyActivityId, t3); b.get$_credit_state$_$this()._credit_state$_historyActivityId = t3; return b; }, $signature: 1108 }; A.forceSelectedReducer_closure79.prototype = { call$2(completer, action) { return true; }, $signature: 1109 }; A.forceSelectedReducer_closure80.prototype = { call$2(completer, action) { return false; }, $signature: 1110 }; A.forceSelectedReducer_closure81.prototype = { call$2(completer, action) { return false; }, $signature: 1111 }; A.forceSelectedReducer_closure82.prototype = { call$2(completer, action) { return false; }, $signature: 1112 }; A.forceSelectedReducer_closure83.prototype = { call$2(completer, action) { return false; }, $signature: 1113 }; A.forceSelectedReducer_closure84.prototype = { call$2(completer, action) { return false; }, $signature: 1114 }; A.forceSelectedReducer_closure85.prototype = { call$2(completer, action) { return false; }, $signature: 1115 }; A.forceSelectedReducer_closure86.prototype = { call$2(completer, action) { return false; }, $signature: 1116 }; A.tabIndexReducer_closure11.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1117 }; A.tabIndexReducer_closure12.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.historyActivityIdReducer_closure0.prototype = { call$2(index, action) { return action.activityId; }, $signature: 695 }; A.editingItemReducer_closure1.prototype = { call$2(index, action) { action.toString; return null; }, $signature: 1119 }; A.editingItemReducer_closure2.prototype = { call$2(index, action) { return action.creditItemIndex; }, $signature: 1120 }; A.selectedIdReducer_closure160.prototype = { call$2(completer, action) { return ""; }, $signature: 1121 }; A.selectedIdReducer_closure161.prototype = { call$2(completer, action) { return ""; }, $signature: 1122 }; A.selectedIdReducer_closure162.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_credit ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure163.prototype = { call$2(selectedId, action) { return action.creditId; }, $signature: 1123 }; A.selectedIdReducer_closure164.prototype = { call$2(selectedId, action) { return action.credit.id; }, $signature: 1124 }; A.selectedIdReducer_closure165.prototype = { call$2(selectedId, action) { return action.credit.id; }, $signature: 1125 }; A.selectedIdReducer_closure166.prototype = { call$2(selectedId, action) { return action.credit.id; }, $signature: 695 }; A.selectedIdReducer_closure167.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure168.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure169.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1126 }; A.selectedIdReducer_closure170.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1127 }; A.selectedIdReducer_closure171.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1128 }; A.selectedIdReducer_closure172.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1129 }; A.selectedIdReducer_closure173.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1130 }; A.selectedIdReducer_closure174.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1131 }; A.selectedIdReducer_closure175.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1132 }; A.selectedIdReducer_closure176.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1133 }; A.selectedIdReducer_closure177.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_credit ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure178.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_credit ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure49.prototype = { call$2(credit, action) { return action.credit.rebuild$1(new A.editingReducer__closure22()); }, $signature: 1134 }; A.editingReducer__closure22.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure50.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure21()); }, $signature: 693 }; A.editingReducer__closure21.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure51.prototype = { call$2(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, $signature: 1136 }; A.editingReducer_closure52.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure20()); }, $signature: 692 }; A.editingReducer__closure20.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure53.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure19()); }, $signature: 691 }; A.editingReducer__closure19.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure54.prototype = { call$2(credit, action) { return credit.rebuild$1(new A.editingReducer__closure18(action.client)); }, $signature: 1139 }; A.editingReducer__closure18.prototype = { call$1(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_ClientContactEntity); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, A.List_List$of(new A.MappedListIterable(t1, new A.editingReducer___closure0(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.editingReducer___closure0.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.editingReducer_closure55.prototype = { call$2(credits, action) { return J.$index$asx(action.credits, 0); }, $signature: 1140 }; A.editingReducer_closure56.prototype = { call$2(credits, action) { return J.$index$asx(action.credits, 0); }, $signature: 1141 }; A.editingReducer_closure57.prototype = { call$2(credits, action) { return J.$index$asx(action.credits, 0); }, $signature: 1142 }; A.editingReducer_closure58.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure17(action)); }, $signature: 1143 }; A.editingReducer__closure17.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? A.InvitationEntity_InvitationEntity(t2.contact.id, null) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A.editingReducer_closure59.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure16(action)); }, $signature: 1144 }; A.editingReducer__closure16.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addCreditItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.creditItem; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addCreditItems_closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.action.creditItems); return b; }, $signature: 6 }; A._removeCreditItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 6 }; A._updateCreditItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2.index] = t2.creditItem; return b; }, $signature: 6 }; A._viewCreditList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterCreditsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCreditsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCreditsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCreditsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterCreditsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterCreditsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByStatus_closure.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action; t2 = t2.get$status(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCreditsByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action; t2 = t2.get$status(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterCredits_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.creditListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortCredits_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure10.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure10.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure10.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure10.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._markSentCreditSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._markSentCreditSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._markSentCreditSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.creditMap); return b; }, $signature: 310 }; A._archiveCreditSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 448 }; A._deleteCreditSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 448 }; A._restoreCreditSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 448 }; A._addCredit_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.credit, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addCredit__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 310 }; A._addCredit__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A._updateCredit_closure.prototype = { call$1(b) { var t1 = this.credit; b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateCredit__closure())); return b; }, $signature: 310 }; A._updateCredit__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A.creditContactSelector_closure.prototype = { call$1(invitation) { return invitation.clientContactId; }, $signature: 313 }; A.creditContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, $signature: 144 }; A.memoizedDropdownCreditList_closure.prototype = { call$7(creditMap, clientMap, vendorMap, creditList, clientId, userMap, excludedIds) { return A.dropdownCreditSelector(creditMap, clientMap, vendorMap, creditList, clientId, userMap, excludedIds); }, $signature: 1149 }; A.dropdownCreditSelector_closure.prototype = { call$1(creditId) { var t2, _this = this, credit = _this.creditMap._map$_map.$index(0, creditId), t1 = _this.excludedIds; if ((t1 && B.JSArray_methods).contains$1(t1, creditId)) return false; t1 = _this.clientId; if (t1 != null && t1.length !== 0 && credit.clientId !== t1) return false; t1 = credit.clientId; t2 = _this.clientMap._map$_map; if (t2.containsKey$1(0, t1)) { t1 = t2.$index(0, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = true; if (t1) return false; if ((credit.statusId !== "1" ? credit.balance : credit.amount) === 0) return false; return !credit.get$isArchived() && !credit.isDeleted && credit.get$isUnpaid(); }, $signature: 16 }; A.dropdownCreditSelector_closure0.prototype = { call$2(creditAId, creditBId) { var _this = this, t1 = _this.creditMap._map$_map; return t1.$index(0, creditAId).compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, creditBId), true, "number", _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedFilteredCreditList_closure.prototype = { call$7(selectionState, creditMap, creditList, clientMap, vendorMap, creditListState, userMap) { return A.filteredCreditsSelector(selectionState, creditMap, creditList, clientMap, vendorMap, creditListState, userMap); }, $signature: 446 }; A.filteredCreditsSelector_closure.prototype = { call$1(creditId) { var t2, _this = this, credit = _this.creditMap._map$_map.$index(0, creditId), t1 = credit.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (credit.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = _this.filterEntityType; if (t1 === B.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t1 === B.EntityType_user && credit.assignedUserId != _this.filterEntityId) return false; else if (t1 === B.EntityType_design && credit.designId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; t1 = _this.creditListState; if (!credit.matchesStates$1(t1.stateFilters)) return false; if (!credit.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!credit.matchesFilter$1(t2) && !client.matchesNameOrEmail$1(t2)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, credit.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, credit.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, credit.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, credit.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredCreditsSelector_closure0.prototype = { call$2(creditAId, creditBId) { var t3, t4, _this = this, t1 = _this.creditMap._map$_map, t2 = t1.$index(0, creditAId); t1 = t1.$index(0, creditBId); t3 = _this.creditListState; t4 = t3.sortField; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1, t3.sortAscending, t4, _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedCreditStatsForDesign_closure.prototype = { call$2(designId, creditMap) { return A.creditStatsForDesign(designId, creditMap); }, $signature: 87 }; A.creditStatsForDesign_closure.prototype = { call$2(creditId, credit) { if (credit.designId === this.designId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedCreditStatsForClient_closure.prototype = { call$2(clientId, creditMap) { return A.creditStatsForClient(clientId, creditMap); }, $signature: 87 }; A.creditStatsForClient_closure.prototype = { call$2(creditId, credit) { if (credit.clientId === this.clientId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedCreditStatsForUser_closure.prototype = { call$2(userId, creditMap) { return A.creditStatsForUser(userId, creditMap); }, $signature: 87 }; A.creditStatsForUser_closure.prototype = { call$2(creditId, credit) { if (credit.assignedUserId == this.userId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.CreditState.prototype = { $get$1(_, creditId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, creditId)) return t1.$index(0, creditId); else return A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_credit, creditId, _null, _null, _null); }, loadCredits$1(clients) { return this.rebuild$1(new A.CreditState_loadCredits_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.CreditState_loadCredits_closure0(), new A.CreditState_loadCredits_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.CreditState_loadCredits_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.CreditState_loadCredits_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A.CreditState_loadCredits_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 310 }; A.CreditUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$CreditStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.CreditStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._credit_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_n67)); break; case "list": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._credit_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kQR; }, get$wireName() { return "CreditState"; } }; A._$CreditUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.CreditUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_credit_state$_$this(); t4 = t3._credit_state$_editing; if (t4 == null) { t4 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t4); t3._credit_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._invoice_model$_$v = t4; break; case "listUIState": t3 = result.get$_credit_state$_$this(); t4 = t3._credit_state$_listUIState; t3 = t4 == null ? t3._credit_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_credit_state$_$this()._credit_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_credit_state$_$this()._credit_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_credit_state$_$this()._credit_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_uQd; }, get$wireName() { return "CreditUIState"; } }; A._$CreditState.prototype = { rebuild$1(updates) { var t1 = new A.CreditStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._credit_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CreditState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._credit_state$__hashCode; return t1 == null ? _this._credit_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.CreditStateBuilder.prototype = { get$map(_) { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_map; return t2 == null ? t1._credit_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list(_) { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_list; return t2 == null ? t1._credit_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_credit_state$_$this() { var t1, t2, _this = this, $$v = _this._credit_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._credit_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._credit_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._credit_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._credit_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$CreditState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("CreditState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._credit_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$CreditUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.CreditUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._credit_state$__hashCode; return t1 == null ? _this._credit_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.CreditUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_editing; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); t1._credit_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_listUIState; return t2 == null ? t1._credit_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_credit_state$_$this() { var t1, t2, _this = this, $$v = _this._credit_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._credit_state$_editing = t1; _this._credit_state$_editingItemIndex = $$v.editingItemIndex; _this._credit_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._credit_state$_listUIState = t2; _this._credit_state$_selectedId = $$v.selectedId; _this._credit_state$_forceSelected = $$v.forceSelected; _this._credit_state$_tabIndex = $$v.tabIndex; _this._credit_state$_saveCompleter = $$v.saveCompleter; _this._credit_state$_cancelCompleter = $$v.cancelCompleter; _this._credit_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s13_ = "CreditUIState", _$result = null; try { _$result0 = _this._credit_state$_$v; if (_$result0 == null) { t1 = _this._credit_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_credit_state$_$this()._credit_state$_editingItemIndex; t3 = _this.get$_credit_state$_$this()._credit_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_credit_state$_$this()._credit_state$_selectedId; t6 = _this.get$_credit_state$_$this()._credit_state$_forceSelected; t7 = _this.get$_credit_state$_$this()._credit_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tabIndex")); t8 = _this.get$_credit_state$_$this()._credit_state$_saveCompleter; _$result0 = A._$CreditUIState$_(_this.get$_credit_state$_$this()._credit_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._credit_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._credit_state$_$v = t1; return _$result; } }; A._CreditUIState_Object_EntityUIState.prototype = {}; A.ViewDashboard.prototype = {$isPersistUI: 1}; A.UpdateDashboardSettings.prototype = {$isPersistUI: 1}; A.UpdateDashboardSelection.prototype = {$isPersistUI: 1}; A.UpdateDashboardEntityType.prototype = {$isPersistUI: 1}; A.UpdateDashboardSidebar.prototype = {$isPersistUI: 1}; A._createViewDashboard_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ViewDashboard._as(dynamicAction); A.checkForChanges(new A._createViewDashboard__closure(store, next, dynamicAction), dynamicAction.force, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._createViewDashboard__closure.prototype = { call$0() { var _s10_ = "/dashboard", t1 = this.store, t2 = A._lateReadCheck(t1.__Store__state, "_state"), t3 = t2.userCompanyStates, t4 = t2.uiState.selectedCompanyIndex; if (t3._list[t4].get$isStale() || t2.staticState.get$isStale()) t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s10_)); this.next.call$1(this.action); if (A._lateReadCheck(t1.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s10_, new A._createViewDashboard___closure(), type$.legacy_Object); }, $signature: 1 }; A._createViewDashboard___closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A.dashboardUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.state, t3 = this.action, t4 = A.dashboardSettingsReducer(t2.settings, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._dashboard_state$_$v = t4; b.get$selectedEntities().replace$1(0, $.$get$selectedEntitiesReducer().call$2(t2.selectedEntities, t3)); t4 = $.$get$selectedEntityTypeReducer().call$2(t2.selectedEntityType, t3); b.get$_dashboard_state$_$this()._selectedEntityType = t4; t3 = $.$get$showSidebarReducer().call$2(t2.showSidebar, t3); b.get$_dashboard_state$_$this()._showSidebar = t3; return b; }, $signature: 1153 }; A.selectedEntitiesReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.selectedEntitiesReducer__closure0(action)); }, $signature: 1154 }; A.selectedEntitiesReducer__closure0.prototype = { call$1(b) { var t1 = this.action, t2 = t1.entityType; t1 = t1.entityIds; if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_String); b.$indexSet(0, t2, A.BuiltList_BuiltList$from(t1, type$.legacy_String)); return b; }, $signature: 676 }; A.selectedEntitiesReducer_closure0.prototype = { call$2(state, action) { return state.rebuild$1(new A.selectedEntitiesReducer__closure()); }, $signature: 1156 }; A.selectedEntitiesReducer__closure.prototype = { call$1(b) { b.get$_safeMap().clear$0(0); return b; }, $signature: 676 }; A.selectedEntityTypeReducer_closure.prototype = { call$2(state, action) { return action.entityType; }, $signature: 1157 }; A.showSidebarReducer_closure.prototype = { call$2(state, action) { return action.showSidebar; }, $signature: 1158 }; A.dashboardSettingsReducer_closure.prototype = { call$1(b) { var t1 = this.settings, t2 = t1.dateRange; b.get$_dashboard_state$_$this()._dateRange = t2; t2 = t1.startDate; b.get$_dashboard_state$_$this()._dashboard_state$_customStartDate = t2; t2 = t1.endDate; b.get$_dashboard_state$_$this()._dashboard_state$_customEndDate = t2; t2 = t1.enableComparison; b.get$_dashboard_state$_$this()._enableComparison = t2; t2 = t1.compareDateRange; b.get$_dashboard_state$_$this()._compareDateRange = t2; t2 = t1.compareStartDate; b.get$_dashboard_state$_$this()._compareCustomStartDate = t2; t1 = t1.compareEndDate; b.get$_dashboard_state$_$this()._compareCustomStartDate = t1; b.get$_dashboard_state$_$this()._dashboard_state$_offset = 0; return b; }, $signature: 150 }; A.dashboardSettingsReducer_closure0.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._includeTaxes = this.action.includeTaxes; return b; }, $signature: 150 }; A.dashboardSettingsReducer_closure1.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + this.action.offset; return b; }, $signature: 150 }; A.dashboardSettingsReducer_closure2.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_currencyId = this.action.currencyId; return b; }, $signature: 150 }; A.ChartDataGroup.prototype = { get$name(receiver) { return this.name; } }; A.ChartMoneyData.prototype = { get$date() { return this.date; }, get$amount() { return this.amount; } }; A.memoizedChartInvoices_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, clientMap) { return A._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, $signature: 329 }; A.memoizedPreviousChartInvoices_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, clientMap) { return A._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, $signature: 329 }; A._chartInvoices_closure.prototype = { call$2(int, invoice) { var t2, t3, date, t4, t5, amount, balance, exchangeRate, _this = this, _s6_ = "active", _s11_ = "outstanding", t1 = invoice.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(invoice.statusId === "1" || invoice.isDeleted || invoice.get$isCancelledOrReversed() || client.isDeleted)) { t1 = _this.settings; t2 = _this.company; if (invoice.isBetween$2(t1.startDate$1(t2), t1.endDate$1(t2))) { t3 = client.settings.currencyId; if (t1.matchesCurrency$1(t3)) { date = invoice.date.split("T")[0]; t4 = _this.totals; if (t4.$index(0, _s6_).$index(0, date) == null) { t4.$index(0, _s6_).$indexSet(0, date, 0); t4.$index(0, _s11_).$indexSet(0, date, 0); t5 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, A._setArrayType([], t5)); _this.outstandingData.entityMap.$indexSet(0, date, A._setArrayType([], t5)); } t5 = t1.includeTaxes; amount = invoice.amount; amount = t5 ? amount : amount - invoice.taxAmount; balance = t5 ? invoice.balance : invoice.get$netBalance(); if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = t3 !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { t1 = invoice.exchangeRate; if (t1 !== 1 && t1 !== 0) exchangeRate = 1 / t1; else { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = A.getExchangeRate(_this.currencyMap, t3, t1); } amount *= exchangeRate; balance *= exchangeRate; } t1 = t4.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t4 = t4.$index(0, _s11_); t4.$indexSet(0, date, t4.$index(0, date) + balance); t4 = _this.counts; t4.$indexSet(0, _s6_, t4.$index(0, _s6_) + 1); t1 = _this.activeData.entityMap.$index(0, date); t2 = invoice.id; J.add$1$ax(t1, t2); if (invoice.balance > 0) { t4.$indexSet(0, _s11_, t4.$index(0, _s11_) + 1); J.add$1$ax(_this.outstandingData.entityMap.$index(0, date), t2); } } } } }, $signature: 49 }; A.memoizedChartQuotes_closure.prototype = { call$5(currencyMap, company, settings, quoteMap, clientMap) { return A.chartQuotes(clientMap, company, currencyMap, quoteMap, settings); }, $signature: 329 }; A.memoizedPreviousChartQuotes_closure.prototype = { call$5(currencyMap, company, settings, quoteMap, clientMap) { return A.chartQuotes(clientMap, company, currencyMap, quoteMap, settings); }, $signature: 329 }; A.chartQuotes_closure.prototype = { call$2(int, quote) { var date, t2, t3, t4, t5, t6, amount, exchangeRate, _this = this, _s6_ = "active", _s8_ = "approved", _s10_ = "unapproved", t1 = quote.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); date = quote.date; t1 = quote.statusId; if (!(t1 === "1" || quote.isDeleted || client.isDeleted)) { t2 = _this.settings; t3 = _this.company; if (quote.isBetween$2(t2.startDate$1(t3), t2.endDate$1(t3))) { t4 = client.settings.currencyId; if (t2.matchesCurrency$1(t4)) { t5 = _this.totals; if (t5.$index(0, _s6_).$index(0, date) == null) { t5.$index(0, _s6_).$indexSet(0, date, 0); t5.$index(0, _s8_).$indexSet(0, date, 0); t5.$index(0, _s10_).$indexSet(0, date, 0); t6 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, A._setArrayType([], t6)); _this.approvedData.entityMap.$indexSet(0, date, A._setArrayType([], t6)); _this.unapprovedData.entityMap.$indexSet(0, date, A._setArrayType([], t6)); } t6 = t2.includeTaxes; amount = quote.amount; amount = t6 ? amount : amount - quote.taxAmount; if (t2.currencyId === "-1") { t2 = t3.settings.currencyId; t2 = t4 !== (t2 == null ? "1" : t2); } else t2 = false; if (t2) { t2 = quote.exchangeRate; if (t2 !== 1 && t2 !== 0) exchangeRate = 1 / t2; else { t2 = t3.settings.currencyId; if (t2 == null) t2 = "1"; exchangeRate = A.getExchangeRate(_this.currencyMap, t4, t2); } amount *= exchangeRate; } t2 = t5.$index(0, _s6_); t2.$indexSet(0, date, t2.$index(0, date) + amount); t2 = _this.counts; t2.$indexSet(0, _s6_, t2.$index(0, _s6_) + 1); t3 = _this.activeData.entityMap.$index(0, date); t4 = quote.id; J.add$1$ax(t3, t4); if (quote.entityType === B.EntityType_quote && B.JSArray_methods.contains$1(A._setArrayType(["3", "4"], type$.JSArray_legacy_String), t1)) { t1 = t5.$index(0, _s8_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s8_, t2.$index(0, _s8_) + 1); J.add$1$ax(_this.approvedData.entityMap.$index(0, date), t4); } else { t1 = t5.$index(0, _s10_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s10_, t2.$index(0, _s10_) + 1); J.add$1$ax(_this.unapprovedData.entityMap.$index(0, date), t4); } } } } }, $signature: 49 }; A.memoizedChartPayments_closure.prototype = { call$6(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return A.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, $signature: 672 }; A.memoizedPreviousChartPayments_closure.prototype = { call$6(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return A.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, $signature: 672 }; A.chartPayments_closure.prototype = { call$2(int, payment) { var date, t2, t3, t4, t5, completedAmount, refunded, exchangeRate, refunded0, _this = this, _s6_ = "active", _s8_ = "refunded", t1 = payment.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); date = payment.date; if (!(payment.isDeleted || !B.JSArray_methods.contains$1(A._setArrayType(["4", "5"], type$.JSArray_legacy_String), payment.statusId) || client.isDeleted)) { t1 = _this.settings; t2 = _this.company; t3 = t1.startDate$1(t2); t4 = t1.endDate$1(t2); if (J.compareTo$1$ns(t3, date) <= 0 && J.compareTo$1$ns(t4, date) >= 0) { t3 = client.settings.currencyId; if (t1.matchesCurrency$1(t3)) { t4 = _this.totals; if (t4.$index(0, _s6_).$index(0, date) == null) { t4.$index(0, _s6_).$indexSet(0, date, 0); t4.$index(0, _s8_).$indexSet(0, date, 0); t5 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, A._setArrayType([], t5)); _this.refundedData.entityMap.$indexSet(0, date, A._setArrayType([], t5)); } completedAmount = payment.get$completedAmount(); refunded = payment.refunded; if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = t3 !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { exchangeRate = payment.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = A.getExchangeRate(_this.currencyMap, t3, t1); } completedAmount *= exchangeRate; refunded0 = refunded * exchangeRate; } else refunded0 = refunded; t1 = t4.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + completedAmount); t4 = t4.$index(0, _s8_); t1 = t4.$index(0, date); t4.$indexSet(0, date, t1 + refunded0); t1 = _this.counts; t1.$indexSet(0, _s6_, t1.$index(0, _s6_) + 1); t2 = _this.activeData.entityMap.$index(0, date); t3 = payment.id; J.add$1$ax(t2, t3); if (refunded > 0) { t1.$indexSet(0, _s8_, t1.$index(0, _s8_) + 1); J.add$1$ax(_this.refundedData.entityMap.$index(0, date), t3); } } } } }, $signature: 205 }; A.memoizedChartTasks_closure.prototype = { call$8(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return A.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, $signature: 671 }; A.memoizedPreviousChartTasks_closure.prototype = { call$8(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return A.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, $signature: 671 }; A.chartTasks_closure.prototype = { call$2(int, task) { var t2, t3, t4, invoice, project, group, t5, _this = this, _null = null, _s8_ = "invoiced", t1 = task.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(_null, t1, _null, _null); t2 = _this.invoiceMap; t3 = task.invoiceId; t4 = t2._map$_map; invoice = t4.$index(0, t3); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, t1, _null, _null, _null); t1 = task.projectId; project = _this.projectMap._map$_map.$index(0, t1); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t1, _null, _null); t1 = client.groupId; group = _this.groupMap._map$_map.$index(0, t1); if (group == null) group = A.GroupEntity_GroupEntity(t1, _null); if (!(task.isDeleted || client.isDeleted || project.isDeleted)) { t1 = _this.settings; t5 = _this.company; if (task.isBetween$2(t1.startDate$1(t5), t1.endDate$1(t5))) if (t1.matchesCurrency$1(client.settings.currencyId)) { B.JSArray_methods.forEach$1(task.getTaskTimes$0(), new A.chartTasks__closure(_this.totals, _this.loggedData, _this.invoicedData, _this.paidData, t5, project, client, task, group, t1, invoice, _this.currencyMap, t2)); if (t3.length !== 0) { if (t4.containsKey$1(0, t3)) { t1 = t4.$index(0, t3); t1 = t1.entityType === B.EntityType_invoice && t1.statusId === "4"; } else t1 = false; t2 = _this.counts; if (t1) t2.$indexSet(0, "paid", t2.$index(0, "paid") + 1); else t2.$indexSet(0, _s8_, t2.$index(0, _s8_) + 1); } else { t1 = _this.counts; t1.$indexSet(0, "logged", t1.$index(0, "logged") + 1); } } } }, $signature: 143 }; A.chartTasks__closure.prototype = { call$1(taskTime) { var _this = this; taskTime.getParts$0().forEach$1(0, new A.chartTasks___closure(_this.totals, _this.loggedData, _this.invoicedData, _this.paidData, _this.company, _this.project, _this.client, _this.task, _this.group, _this.settings, _this.invoice, _this.currencyMap, _this.invoiceMap)); }, $signature: 197 }; A.chartTasks___closure.prototype = { call$2(date, duration) { var t2, t3, t4, amount, t5, t6, exchangeRate, _this = this, _s6_ = "logged", _s8_ = "invoiced", t1 = _this.totals; if (t1.$index(0, _s6_).$index(0, date) == null) { t1.$index(0, _s6_).$indexSet(0, date, 0); t1.$index(0, _s8_).$indexSet(0, date, 0); t1.$index(0, "paid").$indexSet(0, date, 0); t2 = type$.JSArray_legacy_String; _this.loggedData.entityMap.$indexSet(0, date, A._setArrayType([], t2)); _this.invoicedData.entityMap.$indexSet(0, date, A._setArrayType([], t2)); _this.paidData.entityMap.$indexSet(0, date, A._setArrayType([], t2)); } t2 = _this.company; t3 = _this.client; t4 = _this.task; amount = A.taskRateSelector(t3, t2, _this.group, _this.project, t4) * A.round(B.JSInt_methods._tdivFast$1(duration._duration, 1000000) / 3600, 3); if (_this.settings.currencyId === "-1") { t5 = t3.settings.currencyId; t6 = t2.settings.currencyId; t5 = t5 !== (t6 == null ? "1" : t6); } else t5 = false; if (t5) { t5 = _this.invoice.exchangeRate; if (t5 !== 1 && t5 !== 0) exchangeRate = 1 / t5; else { t3 = t3.settings.currencyId; t2 = t2.settings.currencyId; if (t2 == null) t2 = "1"; exchangeRate = A.getExchangeRate(_this.currencyMap, t3, t2); } amount *= exchangeRate; } t2 = t4.invoiceId; if (t2.length !== 0) { t3 = _this.invoiceMap._map$_map; if (t3.containsKey$1(0, t2)) { t2 = t3.$index(0, t2); t2 = t2.entityType === B.EntityType_invoice && t2.statusId === "4"; } else t2 = false; t4 = t4.id; if (t2) { t1 = t1.$index(0, "paid"); t1.$indexSet(0, date, t1.$index(0, date) + amount); J.add$1$ax(_this.paidData.entityMap.$index(0, date), t4); } else { t1 = t1.$index(0, _s8_); t1.$indexSet(0, date, t1.$index(0, date) + amount); J.add$1$ax(_this.invoicedData.entityMap.$index(0, date), t4); } } else { t1 = t1.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); J.add$1$ax(_this.loggedData.entityMap.$index(0, date), t4.id); } }, $signature: 1164 }; A.chartExpenses_closure.prototype = { call$2(int, expense) { var t2, t3, t4, t5, exchangeRate, invoice, _this = this, _null = null, _s6_ = "logged", _s7_ = "pending", _s8_ = "invoiced", _s12_ = "invoice_paid", currencyId = expense.currencyId, date = expense.date, t1 = _this.settings, amount = t1.includeTaxes ? expense.get$grossAmount() : expense.get$netAmount(); if (!expense.isDeleted) { t2 = _this.company; t3 = t1.startDate$1(t2); t4 = t1.endDate$1(t2); if (t3 == null) t3 = ""; t5 = date == null; if (B.JSString_methods.compareTo$1(t3, t5 ? "" : date) <= 0) { t3 = t4 == null ? "" : t4; t3 = B.JSString_methods.compareTo$1(t3, t5 ? "" : date) >= 0; } else t3 = false; if (t3) if (t1.matchesCurrency$1(currencyId)) { t3 = _this.totals; if (t3.$index(0, _s6_).$index(0, date) == null) { t3.$index(0, _s6_).$indexSet(0, date, 0); t3.$index(0, _s7_).$indexSet(0, date, 0); t3.$index(0, _s8_).$indexSet(0, date, 0); t3.$index(0, _s12_).$indexSet(0, date, 0); t4 = type$.JSArray_legacy_String; _this.loggedData.entityMap.$indexSet(0, date, A._setArrayType([], t4)); _this.pendingData.entityMap.$indexSet(0, date, A._setArrayType([], t4)); _this.invoicedData.entityMap.$indexSet(0, date, A._setArrayType([], t4)); _this.paidData.entityMap.$indexSet(0, date, A._setArrayType([], t4)); } if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = currencyId !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { exchangeRate = expense.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = A.getExchangeRate(_this.currencyMap, currencyId, t1); } amount *= exchangeRate; } t1 = expense.invoiceId; if (t1 != null && t1.length !== 0) { invoice = _this.invoiceMap._map$_map.$index(0, t1); if (invoice == null) invoice = A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null); t1 = invoice.entityType === B.EntityType_invoice && invoice.statusId === "4"; t2 = _this.counts; t4 = expense.id; if (t1) { t1 = t3.$index(0, _s12_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s12_, t2.$index(0, _s12_) + 1); J.add$1$ax(_this.paidData.entityMap.$index(0, date), t4); } else { t1 = t3.$index(0, _s8_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s8_, t2.$index(0, _s8_) + 1); J.add$1$ax(_this.invoicedData.entityMap.$index(0, date), t4); } } else { t1 = expense.get$isPending(); t2 = _this.counts; t4 = expense.id; if (t1) { t1 = t3.$index(0, _s7_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s7_, t2.$index(0, _s7_) + 1); J.add$1$ax(_this.pendingData.entityMap.$index(0, date), t4); } else { t1 = t3.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s6_, t2.$index(0, _s6_) + 1); J.add$1$ax(_this.loggedData.entityMap.$index(0, date), t4); } } } } }, $signature: 113 }; A.memoizedChartExpenses_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, expenseMap) { return A.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, $signature: 669 }; A.memoizedPreviousChartExpenses_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, expenseMap) { return A.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, $signature: 669 }; A.memoizedRunningTasks_closure0.prototype = { call$2(taskMap, userId) { return A.runningTasks(taskMap, userId); }, $signature: 1167 }; A.runningTasks_closure.prototype = { call$2(taskId, task) { var t1; if (task.get$isRunning()) if (!task.isDeleted) { t1 = this.userId; t1 = task.createdUserId == t1 || task.assignedUserId == t1; } else t1 = false; else t1 = false; if (t1) this.tasks.push(task); }, $signature: 143 }; A.memoizedUpcomingInvoices_closure.prototype = { call$2(invoiceMap, clientMap) { return A._upcomingInvoices(clientMap, invoiceMap); }, $signature: 352 }; A._upcomingInvoices_closure.prototype = { call$2(index, invoice) { var t1 = invoice.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(invoice.get$isArchived() || invoice.isDeleted || invoice.get$isCancelledOrReversed() || client.get$isArchived() || client.isDeleted)) if (invoice.get$isUpcoming()) this.invoices.push(invoice); }, $signature: 49 }; A._upcomingInvoices_closure0.prototype = { call$2(invoiceA, invoiceB) { return J.compareTo$1$ns(invoiceA.get$primaryDate(), invoiceB.get$primaryDate()); }, $signature: 280 }; A.memoizedPastDueInvoices_closure.prototype = { call$2(invoiceMap, clientMap) { return A._pastDueInvoices(clientMap, invoiceMap); }, $signature: 352 }; A._pastDueInvoices_closure.prototype = { call$2(index, invoice) { var t1 = invoice.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(invoice.get$isArchived() || invoice.isDeleted || invoice.get$isCancelledOrReversed() || client.get$isArchived() || client.isDeleted)) if (invoice.get$isPastDue()) this.invoices.push(invoice); }, $signature: 49 }; A._pastDueInvoices_closure0.prototype = { call$2(invoiceA, invoiceB) { return J.compareTo$1$ns(invoiceA.get$primaryDate(), invoiceB.get$primaryDate()); }, $signature: 280 }; A.memoizedRecentPayments_closure.prototype = { call$2(paymentMap, clientMap) { return A._recentPayments(clientMap, paymentMap); }, $signature: 1170 }; A._recentPayments_closure.prototype = { call$2(index, payment) { var t1 = payment.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(payment.get$isArchived() || payment.isDeleted || client.get$isArchived() || client.isDeleted)) if (!payment.get$isArchived() && !payment.isDeleted && payment.createdAt > this.threeMonthsAgo) this.payments.push(payment); }, $signature: 205 }; A._recentPayments_closure0.prototype = { call$2(paymentA, paymentB) { var t1 = paymentA.date, t2 = paymentB.date; if (t1 == t2) return B.JSInt_methods.compareTo$1(paymentB.createdAt, paymentA.createdAt); else return J.compareTo$1$ns(t2, t1); }, $signature: 1171 }; A.memoizedUpcomingQuotes_closure.prototype = { call$2(quoteMap, clientMap) { return A._upcomingQuotes(clientMap, quoteMap); }, $signature: 352 }; A._upcomingQuotes_closure.prototype = { call$2(index, quote) { var t1 = quote.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(quote.get$isArchived() || quote.isDeleted || client.get$isArchived() || client.isDeleted)) if (quote.get$isUpcoming()) this.quotes.push(quote); }, $signature: 49 }; A._upcomingQuotes_closure0.prototype = { call$2(quoteA, quoteB) { return J.compareTo$1$ns(quoteA.get$primaryDate(), quoteB.get$primaryDate()); }, $signature: 280 }; A.memoizedExpiredQuotes_closure.prototype = { call$2(quoteMap, clientMap) { return A._expiredQuotes(clientMap, quoteMap); }, $signature: 352 }; A._expiredQuotes_closure.prototype = { call$2(index, quote) { var t1 = quote.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(quote.get$isArchived() || quote.isDeleted || client.get$isArchived() || client.isDeleted)) if (quote.get$isPastDue()) this.quotes.push(quote); }, $signature: 49 }; A._expiredQuotes_closure0.prototype = { call$2(quoteA, quoteB) { return J.compareTo$1$ns(quoteA.get$primaryDate(), quoteB.get$primaryDate()); }, $signature: 280 }; A.memoizedRunningTasks_closure.prototype = { call$2(taskMap, clientMap) { return A._runningTasks(clientMap, taskMap); }, $signature: 666 }; A._runningTasks_closure.prototype = { call$2(index, task) { var t1 = task.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(task.get$isArchived() || task.isDeleted || client.get$isArchived() || client.isDeleted)) if (task.get$isRunning()) this.tasks.push(task); }, $signature: 143 }; A._runningTasks_closure0.prototype = { call$2(taskA, taskB) { var t1 = taskB.updatedAt, t2 = taskA.updatedAt; return B.JSInt_methods.compareTo$1(t1, t2); }, $signature: 436 }; A.memoizedRecentTasks_closure.prototype = { call$2(taskMap, clientMap) { return A._recentTasks(clientMap, taskMap); }, $signature: 666 }; A._recentTasks_closure.prototype = { call$2(index, task) { var t1 = task.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(task.get$isArchived() || task.isDeleted || client.get$isArchived() || client.isDeleted)) if (!task.get$isRunning()) this.tasks.push(task); }, $signature: 143 }; A._recentTasks_closure0.prototype = { call$2(taskA, taskB) { var t1 = taskB.updatedAt, t2 = taskA.updatedAt; return B.JSInt_methods.compareTo$1(t1, t2); }, $signature: 436 }; A.memoizedRecentExpenses_closure.prototype = { call$2(expenseMap, clientMap) { return A._recentExpenses(clientMap, expenseMap); }, $signature: 1174 }; A._recentExpenses_closure.prototype = { call$2(index, expense) { var t1 = expense.clientId, client = this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(client.get$isArchived() || client.isDeleted)) if (!(expense.get$isArchived() || expense.isDeleted)) { t1 = expense.invoiceId; t1 = t1 != null && t1.length !== 0; } else t1 = true; else t1 = true; if (!t1) this.expenses.push(expense); }, $signature: 113 }; A._recentExpenses_closure0.prototype = { call$2(expenseA, expenseB) { var expenseBdate, expenseAdate = expenseA.date; if (expenseAdate == null) expenseAdate = ""; expenseBdate = expenseB.date; if (expenseBdate == null) expenseBdate = ""; if (expenseAdate === expenseBdate) return B.JSString_methods.compareTo$1(expenseB.number, expenseA.number); else return B.JSString_methods.compareTo$1(expenseBdate, expenseAdate); }, $signature: 664 }; A.DashboardUIState.prototype = {}; A.DashboardUISettings.prototype = { matchesCurrency$1(match) { var t1 = this.currencyId; t1 = t1.length === 0 || t1 === "-1"; if (t1) return true; return this.currencyId === match; }, startDate$1(company) { var _this = this; return A.calculateStartDate(company, _this.customEndDate, _this.customStartDate, _this.dateRange, _this.offset); }, endDate$1(company) { var _this = this; return A.calculateEndDate(company, _this.customEndDate, _this.customStartDate, _this.dateRange, _this.offset); } }; A._$DashboardUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["settings", serializers.serialize$2$specifiedType(object.settings, B.FullType_86y), "selectedEntityType", serializers.serialize$2$specifiedType(object.selectedEntityType, B.FullType_qBb), "selectedEntities", serializers.serialize$2$specifiedType(object.selectedEntities, B.FullType_mVA), "showSidebar", serializers.serialize$2$specifiedType(object.showSidebar, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, result = new A.DashboardUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_EntityType_and_legacy_BuiltList_legacy_String, t2 = type$.legacy_EntityType, t3 = type$.legacy_DashboardUISettings; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "settings": t4 = result.get$_dashboard_state$_$this(); t5 = t4._dashboard_state$_settings; t4 = t5 == null ? t4._dashboard_state$_settings = new A.DashboardUISettingsBuilder() : t5; t5 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_86y)); if (t5 == null) A.throwExpression(A.ArgumentError$notNull("other")); t4._dashboard_state$_$v = t5; break; case "selectedEntityType": t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_dashboard_state$_$this()._selectedEntityType = t4; break; case "selectedEntities": t4 = result.get$_dashboard_state$_$this(); t5 = t4._selectedEntities; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t1); t5.replace$1(0, B.Map_empty0); t4._selectedEntities = t5; t4 = t5; } else t4 = t5; t4.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mVA)); break; case "showSidebar": t4 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_dashboard_state$_$this()._showSidebar = t4; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_qjZ; }, get$wireName() { return "DashboardUIState"; } }; A._$DashboardUISettingsSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["dateRange", serializers.serialize$2$specifiedType(object.dateRange, B.FullType_AaU), "customStartDate", serializers.serialize$2$specifiedType(object.customStartDate, B.FullType_h8g), "customEndDate", serializers.serialize$2$specifiedType(object.customEndDate, B.FullType_h8g), "enableComparison", serializers.serialize$2$specifiedType(object.enableComparison, B.FullType_MtR), "compareDateRange", serializers.serialize$2$specifiedType(object.compareDateRange, B.FullType_oEc), "compareCustomStartDate", serializers.serialize$2$specifiedType(object.compareCustomStartDate, B.FullType_h8g), "compareCustomEndDate", serializers.serialize$2$specifiedType(object.compareCustomEndDate, B.FullType_h8g), "offset", serializers.serialize$2$specifiedType(object.offset, B.FullType_kjq), "currencyId", serializers.serialize$2$specifiedType(object.currencyId, B.FullType_h8g), "includeTaxes", serializers.serialize$2$specifiedType(object.includeTaxes, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, result = new A.DashboardUISettingsBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DateRangeComparison, t2 = type$.legacy_DateRange; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "dateRange": t3 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_AaU)); result.get$_dashboard_state$_$this()._dateRange = t3; break; case "customStartDate": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_customStartDate = t3; break; case "customEndDate": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_customEndDate = t3; break; case "enableComparison": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_dashboard_state$_$this()._enableComparison = t3; break; case "compareDateRange": t3 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_oEc)); result.get$_dashboard_state$_$this()._compareDateRange = t3; break; case "compareCustomStartDate": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_dashboard_state$_$this()._compareCustomStartDate = t3; break; case "compareCustomEndDate": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_dashboard_state$_$this()._compareCustomEndDate = t3; break; case "offset": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_dashboard_state$_$this()._dashboard_state$_offset = t3; break; case "currencyId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_currencyId = t3; break; case "includeTaxes": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_dashboard_state$_$this()._includeTaxes = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_MYE; }, get$wireName() { return "DashboardUISettings"; } }; A._$DashboardUIState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.DashboardUIState && _this.settings.$eq(0, other.settings) && _this.selectedEntityType === other.selectedEntityType && J.$eq$(_this.selectedEntities, other.selectedEntities) && _this.showSidebar === other.showSidebar; }, get$hashCode(_) { var _this = this, t1 = _this._dashboard_state$__hashCode; if (t1 == null) { t1 = _this.settings; t1 = _this._dashboard_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(0, t1.get$hashCode(t1)), A.Primitives_objectHashCode(_this.selectedEntityType)), J.get$hashCode$(_this.selectedEntities)), B.JSBool_methods.get$hashCode(_this.showSidebar))); } return t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DashboardUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "selectedEntityType", _this.selectedEntityType); t2.add$2(t1, "selectedEntities", _this.selectedEntities); t2.add$2(t1, "showSidebar", _this.showSidebar); return t2.toString$0(t1); } }; A.DashboardUIStateBuilder.prototype = { get$settings() { var t1 = this.get$_dashboard_state$_$this(), t2 = t1._dashboard_state$_settings; return t2 == null ? t1._dashboard_state$_settings = new A.DashboardUISettingsBuilder() : t2; }, get$selectedEntities() { var t1 = this.get$_dashboard_state$_$this(), t2 = t1._selectedEntities; return t2 == null ? t1._selectedEntities = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_BuiltList_legacy_String) : t2; }, get$_dashboard_state$_$this() { var t1, t2, _this = this, $$v = _this._dashboard_state$_$v; if ($$v != null) { t1 = $$v.settings; t2 = new A.DashboardUISettingsBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._dashboard_state$_$v = t1; _this._dashboard_state$_settings = t2; _this._selectedEntityType = $$v.selectedEntityType; t2 = $$v.selectedEntities; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._selectedEntities = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._showSidebar = $$v.showSidebar; _this._dashboard_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, exception, _this = this, _s16_ = "DashboardUIState", _$result = null; try { _$result0 = _this._dashboard_state$_$v; if (_$result0 == null) { t1 = _this.get$settings().build$0(0); t2 = _this.get$_dashboard_state$_$this()._selectedEntityType; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "selectedEntityType")); t3 = _this.get$selectedEntities().build$0(0); t4 = _this.get$_dashboard_state$_$this()._showSidebar; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "showSidebar")); _$result0 = A._$DashboardUIState$_(t3, t2, t1, t4); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "selectedEntities"; _this.get$selectedEntities().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._dashboard_state$_$v = t1; return _$result; } }; A._$DashboardUISettings.prototype = { rebuild$1(updates) { var t1 = new A.DashboardUISettingsBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._dashboard_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.DashboardUISettings && _this.dateRange === other.dateRange && _this.customStartDate === other.customStartDate && _this.customEndDate == other.customEndDate && _this.enableComparison === other.enableComparison && _this.compareDateRange === other.compareDateRange && _this.compareCustomStartDate === other.compareCustomStartDate && _this.compareCustomEndDate == other.compareCustomEndDate && _this.offset === other.offset && _this.currencyId === other.currencyId && _this.includeTaxes === other.includeTaxes; }, get$hashCode(_) { var _this = this, t1 = _this._dashboard_state$__hashCode; return t1 == null ? _this._dashboard_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, A.Primitives_objectHashCode(_this.dateRange)), B.JSString_methods.get$hashCode(_this.customStartDate)), J.get$hashCode$(_this.customEndDate)), B.JSBool_methods.get$hashCode(_this.enableComparison)), A.Primitives_objectHashCode(_this.compareDateRange)), B.JSString_methods.get$hashCode(_this.compareCustomStartDate)), J.get$hashCode$(_this.compareCustomEndDate)), B.JSInt_methods.get$hashCode(_this.offset)), B.JSString_methods.get$hashCode(_this.currencyId)), B.JSBool_methods.get$hashCode(_this.includeTaxes))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DashboardUISettings"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "dateRange", _this.dateRange); t2.add$2(t1, "customStartDate", _this.customStartDate); t2.add$2(t1, "customEndDate", _this.customEndDate); t2.add$2(t1, "enableComparison", _this.enableComparison); t2.add$2(t1, "compareDateRange", _this.compareDateRange); t2.add$2(t1, "compareCustomStartDate", _this.compareCustomStartDate); t2.add$2(t1, "compareCustomEndDate", _this.compareCustomEndDate); t2.add$2(t1, "offset", _this.offset); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "includeTaxes", _this.includeTaxes); return t2.toString$0(t1); } }; A.DashboardUISettingsBuilder.prototype = { get$_dashboard_state$_$this() { var _this = this, $$v = _this._dashboard_state$_$v; if ($$v != null) { _this._dateRange = $$v.dateRange; _this._dashboard_state$_customStartDate = $$v.customStartDate; _this._dashboard_state$_customEndDate = $$v.customEndDate; _this._enableComparison = $$v.enableComparison; _this._compareDateRange = $$v.compareDateRange; _this._compareCustomStartDate = $$v.compareCustomStartDate; _this._compareCustomEndDate = $$v.compareCustomEndDate; _this._dashboard_state$_offset = $$v.offset; _this._dashboard_state$_currencyId = $$v.currencyId; _this._includeTaxes = $$v.includeTaxes; _this._dashboard_state$_$v = null; } return _this; }, build$0(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s19_ = "DashboardUISettings", _$result = _this._dashboard_state$_$v; if (_$result == null) { t1 = _this.get$_dashboard_state$_$this()._dateRange; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "dateRange")); t2 = _this.get$_dashboard_state$_$this()._dashboard_state$_customStartDate; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customStartDate")); t3 = _this.get$_dashboard_state$_$this()._dashboard_state$_customEndDate; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "customEndDate")); t4 = _this.get$_dashboard_state$_$this()._enableComparison; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "enableComparison")); t5 = _this.get$_dashboard_state$_$this()._compareDateRange; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "compareDateRange")); t6 = _this.get$_dashboard_state$_$this()._compareCustomStartDate; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "compareCustomStartDate")); t7 = _this.get$_dashboard_state$_$this()._compareCustomEndDate; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "compareCustomEndDate")); t8 = _this.get$_dashboard_state$_$this()._dashboard_state$_offset; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "offset")); t9 = _this.get$_dashboard_state$_$this()._dashboard_state$_currencyId; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "currencyId")); t10 = _this.get$_dashboard_state$_$this()._includeTaxes; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "includeTaxes")); _$result = A._$DashboardUISettings$_(t7, t6, t5, t9, t3, t2, t1, t4, t10, t8); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._dashboard_state$_$v = _$result; } }; A.ViewDesignList.prototype = {$isPersistUI: 1}; A.ViewDesign.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$designId() { return this.designId; } }; A.EditDesign.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$design() { return this.design; } }; A.UpdateDesign.prototype = {$isPersistUI: 1, get$design() { return this.design; } }; A.LoadDesignRequest.prototype = {$isStartLoading: 1}; A.LoadDesignFailure.prototype = { toString$0(_) { return "LoadDesignFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadDesignSuccess.prototype = { toString$0(_) { return "LoadDesignSuccess{design: " + A.S(this.design) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$design() { return this.design; } }; A.LoadDesignsRequest.prototype = {$isStartLoading: 1}; A.LoadDesignsFailure.prototype = { toString$0(_) { return "LoadDesignsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadDesignsSuccess.prototype = { toString$0(_) { return "LoadDesignsSuccess{designs: " + A.S(this.designs) + "}"; }, $isStopLoading: 1 }; A.SaveDesignRequest.prototype = {$isStartSaving: 1, get$design() { return this.design; } }; A.SaveDesignSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$design() { return this.design; } }; A.AddDesignSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$design() { return this.design; } }; A.SaveDesignFailure.prototype = {$isStopSaving: 1}; A.ArchiveDesignsRequest.prototype = {$isStartSaving: 1}; A.ArchiveDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveDesignsFailure.prototype = {$isStopSaving: 1}; A.DeleteDesignsRequest.prototype = {$isStartSaving: 1}; A.DeleteDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteDesignsFailure.prototype = {$isStopSaving: 1}; A.RestoreDesignsRequest.prototype = {$isStartSaving: 1}; A.RestoreDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreDesignsFailure.prototype = {$isStopSaving: 1}; A.FilterDesigns.prototype = {$isPersistUI: 1}; A.SortDesigns.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterDesignsByState.prototype = {$isPersistUI: 1}; A.FilterDesignsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDesignsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDesignsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDesignsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleDesignAction_closure.prototype = { call$1(design) { return design.get$id(design); }, $signature: 41 }; A.handleDesignAction_closure0.prototype = { call$1(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 136 }; A.handleDesignAction_closure1.prototype = { call$1(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 136 }; A.handleDesignAction_closure2.prototype = { call$1(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 136 }; A.handleDesignAction_closure3.prototype = { call$1(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 136 }; A.StartDesignMultiselect.prototype = {}; A.AddToDesignMultiselect.prototype = {}; A.RemoveFromDesignMultiselect.prototype = {}; A.ClearDesignMultiselect.prototype = {}; A._editDesign_closure.prototype = { call$3(store, dynamicAction, next) { var _s29_ = "/settings/custom_designs/edit"; next.call$1(type$.legacy_EditDesign._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s29_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s29_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewDesign_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewDesign_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewDesign_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewDesign._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/custom_designs/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/custom_designs/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewDesignList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s24_ = "/settings/custom_designs"; next.call$1(type$.legacy_ViewDesignList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s24_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s24_, new A._viewDesignList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewDesignList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveDesign_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_ArchiveDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = A.List_List$of(new A.MappedListIterable(t1, new A._archiveDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveDesign__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].designState.map._map$_map.$index(0, id); }, $signature: 301 }; A._archiveDesign__closure0.prototype = { call$1(designs) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 433 }; A._archiveDesign__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteDesign_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_DeleteDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = A.List_List$of(new A.MappedListIterable(t1, new A._deleteDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteDesign__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].designState.map._map$_map.$index(0, id); }, $signature: 301 }; A._deleteDesign__closure0.prototype = { call$1(designs) { this.store.get$_dispatchers()[0].call$1(new A.DeleteDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 433 }; A._deleteDesign__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreDesign_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_RestoreDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = A.List_List$of(new A.MappedListIterable(t1, new A._restoreDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreDesign__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].designState.map._map$_map.$index(0, id); }, $signature: 301 }; A._restoreDesign__closure0.prototype = { call$1(designs) { this.store.get$_dispatchers()[0].call$1(new A.RestoreDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 433 }; A._restoreDesign__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveDesign_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveDesignRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.design).then$1$1(0, new A._saveDesign__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveDesign__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDesign__closure.prototype = { call$1(design) { var t1 = this.action, t2 = this.store; if (t1.design.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddDesignSuccess(design)); else t2.get$_dispatchers()[0].call$1(new A.SaveDesignSuccess(design)); t1.completer.complete$1(0, design); }, $signature: 153 }; A._saveDesign__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveDesignFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadDesign_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadDesign._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadDesignRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.designId).then$1$1(0, new A._loadDesign__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadDesign__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadDesign__closure.prototype = { call$1(design) { this.store.get$_dispatchers()[0].call$1(new A.LoadDesignSuccess(design)); this.action.completer.complete$1(0, null); }, $signature: 153 }; A._loadDesign__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadDesignFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadDesigns_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadDesigns._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadDesignsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadDesigns__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadDesigns__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadDesigns__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadDesignsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1180 }; A._loadDesigns__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadDesignsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.designUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$designListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer11().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._design_model$_$v = t1; t1 = $.$get$selectedIdReducer11().call$2(t2.selectedId, t3); b.get$_design_state$_$this()._design_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer11().call$2(t2.forceSelected, t3); b.get$_design_state$_$this()._design_state$_forceSelected = t3; return b; }, $signature: 1181 }; A.forceSelectedReducer_closure87.prototype = { call$2(completer, action) { return true; }, $signature: 1182 }; A.forceSelectedReducer_closure88.prototype = { call$2(completer, action) { return false; }, $signature: 1183 }; A.forceSelectedReducer_closure89.prototype = { call$2(completer, action) { return false; }, $signature: 1184 }; A.forceSelectedReducer_closure90.prototype = { call$2(completer, action) { return false; }, $signature: 1185 }; A.forceSelectedReducer_closure91.prototype = { call$2(completer, action) { return false; }, $signature: 1186 }; A.forceSelectedReducer_closure92.prototype = { call$2(completer, action) { return false; }, $signature: 1187 }; A.forceSelectedReducer_closure93.prototype = { call$2(completer, action) { return false; }, $signature: 1188 }; A.forceSelectedReducer_closure94.prototype = { call$2(completer, action) { return false; }, $signature: 1189 }; A.selectedIdReducer_closure179.prototype = { call$2(completer, action) { return ""; }, $signature: 1190 }; A.selectedIdReducer_closure180.prototype = { call$2(completer, action) { return ""; }, $signature: 1191 }; A.selectedIdReducer_closure181.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_design ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure182.prototype = { call$2(selectedId, action) { return action.get$designId(); }, $signature: 90 }; A.selectedIdReducer_closure183.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$design()); }, $signature: 90 }; A.selectedIdReducer_closure184.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure185.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure186.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1193 }; A.selectedIdReducer_closure187.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1194 }; A.selectedIdReducer_closure188.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1195 }; A.selectedIdReducer_closure189.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1196 }; A.selectedIdReducer_closure190.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1197 }; A.selectedIdReducer_closure191.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1198 }; A.selectedIdReducer_closure192.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1199 }; A.editingReducer_closure60.prototype = { call$2(designs, action) { return J.$index$asx(action.designs, 0); }, $signature: 1200 }; A.editingReducer_closure61.prototype = { call$2(designs, action) { return J.$index$asx(action.designs, 0); }, $signature: 1201 }; A.editingReducer_closure62.prototype = { call$2(designs, action) { return J.$index$asx(action.designs, 0); }, $signature: 1202 }; A.editingReducer_closure63.prototype = { call$2(design, action) { return action.design.rebuild$1(new A.editingReducer__closure23()); }, $signature: 1203 }; A.editingReducer__closure23.prototype = { call$1(b) { b.get$_design_model$_$this()._design_model$_isChanged = true; return b; }, $signature: 449 }; A._viewDesignList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterDesignsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterDesignsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDesignsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterDesignsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDesignsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterDesignsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDesigns_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.designListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortDesigns_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure11.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure11.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure11.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure11.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveDesignSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 431 }; A._deleteDesignSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 431 }; A._restoreDesignSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 431 }; A._addDesign_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.design, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 324 }; A._updateDesign_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.design; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 324 }; A._setLoadedDesign_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.design; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 324 }; A.memoizedFilteredDesignList_closure.prototype = { call$3(designMap, designList, designListState) { return A.filteredDesignsSelector(designMap, designList, designListState); }, $signature: 1206 }; A.filteredDesignsSelector_closure.prototype = { call$1(designId) { var t1, design = this.designMap._map$_map.$index(0, designId); if (!design.isCustom) return false; t1 = this.designListState; if (!design.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([design.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredDesignsSelector_closure0.prototype = { call$2(designAId, designBId) { var t1 = this.designMap._map$_map, t2 = this.designListState; return t1.$index(0, designAId).compareTo$3(0, t1.$index(0, designBId), t2.sortField, t2.sortAscending); }, $signature: 19 }; A.DesignState.prototype = { get$cleanDesign() { var t1 = B.JSArray_methods.firstWhere$2$orElse(this.list._list, new A.DesignState_cleanDesign_closure(this), new A.DesignState_cleanDesign_closure0()); t1 = this.map._map$_map.$index(0, t1); return t1 == null ? A.DesignEntity_DesignEntity(null, null, null) : t1; }, get$customDesigns() { var t1 = this.list._list, t2 = A._arrayInstanceType(t1), t3 = t2._eval$1("MappedIterable<1,DesignEntity*>"); return A.List_List$of(new A.MappedIterable(new A.WhereIterable(t1, new A.DesignState_customDesigns_closure(this), t2._eval$1("WhereIterable<1>")), new A.DesignState_customDesigns_closure0(this), t3), true, t3._eval$1("Iterable.E")); }, loadDesigns$1(clients) { return this.rebuild$1(new A.DesignState_loadDesigns_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.DesignState_loadDesigns_closure0(), new A.DesignState_loadDesigns_closure1(), type$.legacy_String, type$.legacy_DesignEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.DesignState_cleanDesign_closure.prototype = { call$1(id) { var t1 = this.$this.map._map$_map; return !t1.$index(0, id).isCustom && t1.$index(0, id).name === "Clean"; }, $signature: 16 }; A.DesignState_cleanDesign_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.DesignState_customDesigns_closure.prototype = { call$1(designId) { return this.$this.map._map$_map.$index(0, designId).isCustom; }, $signature: 16 }; A.DesignState_customDesigns_closure0.prototype = { call$1(designId) { return this.$this.map._map$_map.$index(0, designId); }, $signature: 301 }; A.DesignState_loadDesigns_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.DesignState_loadDesigns_closure1.prototype = { call$1(item) { return item; }, $signature: 1207 }; A.DesignState_loadDesigns_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 324 }; A.DesignUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$DesignStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_4ig), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.DesignStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_design_state$_$this(); t6 = t5._design_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._design_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_4ig)); break; case "list": t5 = result.get$_design_state$_$this(); t6 = t5._design_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._design_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_CCG; }, get$wireName() { return "DesignState"; } }; A._$DesignUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_CNd)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.DesignUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_DesignEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_design_state$_$this(); t4 = t3._design_state$_editing; if (t4 == null) { t4 = new A.DesignEntityBuilder(); t4.get$_design_model$_$this()._isFree = true; t3._design_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_CNd)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._design_model$_$v = t4; break; case "listUIState": t3 = result.get$_design_state$_$this(); t4 = t3._design_state$_listUIState; t3 = t4 == null ? t3._design_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_design_state$_$this()._design_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_design_state$_$this()._design_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_design_state$_$this()._design_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_5uk; }, get$wireName() { return "DesignUIState"; } }; A._$DesignState.prototype = { rebuild$1(updates) { var t1 = new A.DesignStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._design_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DesignState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._design_state$__hashCode; return t1 == null ? _this._design_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.DesignStateBuilder.prototype = { get$map(_) { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_map; return t2 == null ? t1._design_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DesignEntity) : t2; }, get$list(_) { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_list; return t2 == null ? t1._design_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_design_state$_$this() { var t1, t2, _this = this, $$v = _this._design_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._design_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._design_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._design_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._design_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$DesignState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("DesignState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$DesignUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.DesignUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._design_state$__hashCode; return t1 == null ? _this._design_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.DesignUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_editing; if (t2 == null) { t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t1._design_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_listUIState; return t2 == null ? t1._design_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_design_state$_$this() { var t1, t2, _this = this, $$v = _this._design_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; A.ArgumentError_checkNotNull(t1, "other"); t2._design_model$_$v = t1; t1 = t2; } _this._design_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._design_state$_listUIState = t2; _this._design_state$_selectedId = $$v.selectedId; _this._design_state$_forceSelected = $$v.forceSelected; _this._design_state$_tabIndex = $$v.tabIndex; _this._design_state$_saveCompleter = $$v.saveCompleter; _this._design_state$_cancelCompleter = $$v.cancelCompleter; _this._design_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s13_ = "DesignUIState", _$result = null; try { _$result0 = _this._design_state$_$v; if (_$result0 == null) { t1 = _this._design_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_design_state$_$this()._design_state$_selectedId; t4 = _this.get$_design_state$_$this()._design_state$_forceSelected; t5 = _this.get$_design_state$_$this()._design_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tabIndex")); t6 = _this.get$_design_state$_$this()._design_state$_saveCompleter; _$result0 = A._$DesignUIState$_(_this.get$_design_state$_$this()._design_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._design_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._design_state$_$v = t1; return _$result; } }; A._DesignUIState_Object_EntityUIState.prototype = {}; A.UpdateDocument.prototype = {$isPersistUI: 1, get$document(receiver) { return this.document; } }; A.LoadDocumentRequest.prototype = {$isStartLoading: 1}; A.LoadDocumentFailure.prototype = { toString$0(_) { return "LoadDocumentFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadDocumentSuccess.prototype = { toString$0(_) { return "LoadDocumentSuccess{document: " + A.S(this.document) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$document(receiver) { return this.document; } }; A.LoadDocumentsRequest.prototype = {$isStartLoading: 1}; A.LoadDocumentsFailure.prototype = { toString$0(_) { return "LoadDocumentsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadDocumentsSuccess.prototype = { toString$0(_) { return "LoadDocumentsSuccess{documents: " + A.S(this.documents) + "}"; }, $isStopLoading: 1 }; A.DownloadDocumentsRequest.prototype = {$isStartSaving: 1}; A.DownloadDocumentsSuccess.prototype = {$isStopSaving: 1}; A.DownloadDocumentsFailure.prototype = {$isStopSaving: 1}; A.ArchiveDocumentRequest.prototype = {$isStartSaving: 1}; A.ArchiveDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveDocumentFailure.prototype = {$isStopSaving: 1}; A.DeleteDocumentRequest.prototype = {$isStartSaving: 1}; A.DeleteDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteDocumentFailure.prototype = {$isStopSaving: 1}; A.RestoreDocumentRequest.prototype = {$isStartSaving: 1}; A.RestoreDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreDocumentFailure.prototype = {$isStopSaving: 1}; A.FilterDocuments.prototype = {$isPersistUI: 1}; A.SortDocuments.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterDocumentsByState.prototype = {$isPersistUI: 1}; A.FilterDocumentsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDocumentsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDocumentsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterDocumentsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleDocumentAction_closure.prototype = { call$1($document) { return $document.get$id($document); }, $signature: 41 }; A.StartDocumentMultiselect.prototype = {}; A.AddToDocumentMultiselect.prototype = {}; A.RemoveFromDocumentMultiselect.prototype = {}; A.ClearDocumentMultiselect.prototype = {}; A._editDocument_closure.prototype = { call$3(store, dynamicAction, next) { var _s14_ = "/document/edit"; next.call$1(type$.legacy_EditDocument._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s14_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s14_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewDocument_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewDocument_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewDocument_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewDocument._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/document/view")); $.$get$navigatorKey().get$currentState().pushNamed$1$1("/document/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewDocumentList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s9_ = "/document"; next.call$1(type$.legacy_ViewDocumentList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s9_)); $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s9_, new A._viewDocumentList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewDocumentList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveDocument_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevDocuments; type$.legacy_ArchiveDocumentRequest._as(dynamicAction); t1 = dynamicAction.documentIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DocumentEntity*>"); prevDocuments = A.List_List$of(new A.MappedListIterable(t1, new A._archiveDocument__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveDocument__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveDocument__closure1(store, prevDocuments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveDocument__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].documentState.map._map$_map.$index(0, id); }, $signature: 654 }; A._archiveDocument__closure0.prototype = { call$1(documents) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, $signature: 427 }; A._archiveDocument__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._downloadDocuments_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DownloadDocumentsRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.documentIds, B.EntityAction_download).then$1$1(0, new A._downloadDocuments__closure(store, dynamicAction), type$.Null).catchError$1(new A._downloadDocuments__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._downloadDocuments__closure.prototype = { call$1(documents) { this.store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsSuccess()); this.action.completer.complete$1(0, null); }, $signature: 427 }; A._downloadDocuments__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DownloadDocumentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteDocument_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DeleteDocumentRequest._as(dynamicAction); this.repository.delete$4(0, J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), B.JSArray_methods.get$first(dynamicAction.documentIds), dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._deleteDocument__closure(store, dynamicAction), type$.Null).catchError$1(new A._deleteDocument__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteDocument__closure.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.DeleteDocumentSuccess()); this.action.completer.complete$1(0, null); }, $signature: 20 }; A._deleteDocument__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreDocument_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevDocuments; type$.legacy_RestoreDocumentRequest._as(dynamicAction); t1 = dynamicAction.documentIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DocumentEntity*>"); prevDocuments = A.List_List$of(new A.MappedListIterable(t1, new A._restoreDocument__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreDocument__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreDocument__closure1(store, prevDocuments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreDocument__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].documentState.map._map$_map.$index(0, id); }, $signature: 654 }; A._restoreDocument__closure0.prototype = { call$1(documents) { this.store.get$_dispatchers()[0].call$1(new A.RestoreDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, $signature: 427 }; A._restoreDocument__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadDocument_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadDocument._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadDocumentRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.documentId).then$1$1(0, new A._loadDocument__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadDocument__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadDocument__closure.prototype = { call$1($document) { this.store.get$_dispatchers()[0].call$1(new A.LoadDocumentSuccess($document)); this.action.completer.complete$1(0, null); }, $signature: 72 }; A._loadDocument__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadDocumentFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadDocuments_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadDocuments._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadDocumentsRequest()); this.repository.loadList$1(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state"))).then$1$1(0, new A._loadDocuments__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadDocuments__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadDocuments__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadDocumentsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1211 }; A._loadDocuments__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadDocumentsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.documentUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$documentListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer5().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._document_model$_$v = t1; t1 = $.$get$selectedIdReducer5().call$2(t2.selectedId, t3); b.get$_document_state$_$this()._document_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer5().call$2(t2.forceSelected, t3); b.get$_document_state$_$this()._document_state$_forceSelected = t3; return b; }, $signature: 1212 }; A.forceSelectedReducer_closure47.prototype = { call$2(completer, action) { return true; }, $signature: 1213 }; A.forceSelectedReducer_closure48.prototype = { call$2(completer, action) { return false; }, $signature: 1214 }; A.forceSelectedReducer_closure49.prototype = { call$2(completer, action) { return false; }, $signature: 1215 }; A.forceSelectedReducer_closure50.prototype = { call$2(completer, action) { return false; }, $signature: 1216 }; A.forceSelectedReducer_closure51.prototype = { call$2(completer, action) { return false; }, $signature: 1217 }; A.forceSelectedReducer_closure52.prototype = { call$2(completer, action) { return false; }, $signature: 1218 }; A.forceSelectedReducer_closure53.prototype = { call$2(completer, action) { return false; }, $signature: 1219 }; A.forceSelectedReducer_closure54.prototype = { call$2(completer, action) { return false; }, $signature: 1220 }; A.selectedIdReducer_closure94.prototype = { call$2(completer, action) { return ""; }, $signature: 1221 }; A.selectedIdReducer_closure95.prototype = { call$2(completer, action) { return ""; }, $signature: 1222 }; A.selectedIdReducer_closure96.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_document ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure97.prototype = { call$2(selectedId, action) { return action.get$documentId(); }, $signature: 1223 }; A.selectedIdReducer_closure98.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure99.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure100.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1224 }; A.selectedIdReducer_closure101.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1225 }; A.selectedIdReducer_closure102.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1226 }; A.selectedIdReducer_closure103.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1227 }; A.selectedIdReducer_closure104.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1228 }; A.selectedIdReducer_closure105.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1229 }; A.selectedIdReducer_closure106.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1230 }; A.editingReducer_closure32.prototype = { call$2($document, action) { return action.document.rebuild$1(new A.editingReducer__closure11()); }, $signature: 1231 }; A.editingReducer__closure11.prototype = { call$1(b) { b.get$_document_model$_$this()._document_model$_isChanged = true; return b; }, $signature: 651 }; A._viewDocumentList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterDocumentsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterDocumentsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDocumentsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterDocumentsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDocumentsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterDocumentsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterDocuments_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.documentListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortDocuments_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure5.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure5.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure5.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure5.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveDocumentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.documents), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_document_state$_$this(); t5 = t4._document_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._document_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 650 }; A._deleteDocumentSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b); this.action.toString; t1.get$_safeMap().remove$1(0, null); return b; }, $signature: 236 }; A._restoreDocumentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.documents), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_document_state$_$this(); t5 = t4._document_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._document_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 650 }; A._updateDocument_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action, t3 = t2.get$document(t2); t1.$indexSet(0, t3.get$id(t3), t2.get$document(t2)); return b; }, $signature: 236 }; A._setLoadedDocument_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.document; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 236 }; A._setLoadedDocuments_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.documents, new A._setLoadedDocuments__closure(), new A._setLoadedDocuments__closure0(), type$.legacy_String, type$.legacy_DocumentEntity)); return b; }, $signature: 236 }; A._setLoadedDocuments__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedDocuments__closure0.prototype = { call$1(item) { return item; }, $signature: 1235 }; A._setLoadedDocuments_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 236 }; A.memoizedFilteredDocumentList_closure.prototype = { call$3(documentMap, documentList, documentListState) { return A.filteredDocumentsSelector(documentMap, documentList, documentListState); }, $signature: 1236 }; A.filteredDocumentsSelector_closure.prototype = { call$1(documentId) { var $document = this.documentMap._map$_map.$index(0, documentId), t1 = this.documentListState; if (!$document.matchesStates$1(t1.stateFilters)) return false; return $document.matchesFilter$1(t1.filter); }, $signature: 16 }; A.filteredDocumentsSelector_closure0.prototype = { call$2(documentAId, documentBId) { var t1 = this.documentMap._map$_map, t2 = this.documentListState; return t1.$index(0, documentAId).compareTo$3(0, t1.$index(0, documentBId), t2.sortField, t2.sortAscending); }, $signature: 19 }; A.DocumentState.prototype = { map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.DocumentUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$DocumentStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_0), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.DocumentStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_document_state$_$this(); t6 = t5._document_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._document_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_0)); break; case "list": t5 = result.get$_document_state$_$this(); t6 = t5._document_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._document_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kHh; }, get$wireName() { return "DocumentState"; } }; A._$DocumentUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_uzh)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.DocumentUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_document_state$_$this(); t4 = t3._document_state$_editing; t3 = t4 == null ? t3._document_state$_editing = new A.DocumentEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_uzh)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._document_model$_$v = t4; break; case "listUIState": t3 = result.get$_document_state$_$this(); t4 = t3._document_state$_listUIState; t3 = t4 == null ? t3._document_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_document_state$_$this()._document_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_document_state$_$this()._document_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_document_state$_$this()._document_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ROa; }, get$wireName() { return "DocumentUIState"; } }; A._$DocumentState.prototype = { rebuild$1(updates) { var t1 = new A.DocumentStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._document_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.DocumentState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._document_state$__hashCode; return t1 == null ? _this._document_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.DocumentStateBuilder.prototype = { get$map(_) { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_map; return t2 == null ? t1._document_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DocumentEntity) : t2; }, get$list(_) { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_list; return t2 == null ? t1._document_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_document_state$_$this() { var t1, t2, _this = this, $$v = _this._document_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._document_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._document_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._document_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._document_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$DocumentState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("DocumentState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._document_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$DocumentUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.DocumentUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._document_state$__hashCode; return t1 == null ? _this._document_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.DocumentUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_editing; return t2 == null ? t1._document_state$_editing = new A.DocumentEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_listUIState; return t2 == null ? t1._document_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_document_state$_$this() { var t1, t2, _this = this, $$v = _this._document_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.DocumentEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._document_model$_$v = t1; t1 = t2; } _this._document_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._document_state$_listUIState = t2; _this._document_state$_selectedId = $$v.selectedId; _this._document_state$_forceSelected = $$v.forceSelected; _this._document_state$_tabIndex = $$v.tabIndex; _this._document_state$_saveCompleter = $$v.saveCompleter; _this._document_state$_cancelCompleter = $$v.cancelCompleter; _this._document_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s15_ = "DocumentUIState", _$result = null; try { _$result0 = _this._document_state$_$v; if (_$result0 == null) { t1 = _this._document_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_document_state$_$this()._document_state$_selectedId; t4 = _this.get$_document_state$_$this()._document_state$_forceSelected; t5 = _this.get$_document_state$_$this()._document_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s15_, "tabIndex")); t6 = _this.get$_document_state$_$this()._document_state$_saveCompleter; _$result0 = A._$DocumentUIState$_(_this.get$_document_state$_$this()._document_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._document_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s15_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._document_state$_$v = t1; return _$result; } }; A._DocumentUIState_Object_EntityUIState.prototype = {}; A.ViewExpenseList.prototype = {$isPersistUI: 1}; A.ViewExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expense() { return this.expense; } }; A.UpdateExpense.prototype = {$isPersistUI: 1, get$expense() { return this.expense; } }; A.LoadExpense.prototype = {}; A.LoadExpenses.prototype = {}; A.LoadExpenseRequest.prototype = {$isStartLoading: 1}; A.LoadExpenseFailure.prototype = { toString$0(_) { return "LoadExpenseFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadExpenseSuccess.prototype = { toString$0(_) { return "LoadExpenseSuccess{expense: " + A.S(this.expense) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$expense() { return this.expense; } }; A.LoadExpensesRequest.prototype = {$isStartLoading: 1}; A.LoadExpensesFailure.prototype = { toString$0(_) { return "LoadExpensesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadExpensesSuccess.prototype = { toString$0(_) { return "LoadExpensesSuccess{expenses: " + A.S(this.expenses) + "}"; }, $isStopLoading: 1 }; A.SaveExpenseRequest.prototype = {$isStartSaving: 1, get$expense() { return this.expense; } }; A.SaveExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expense() { return this.expense; } }; A.AddExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expense() { return this.expense; } }; A.SaveExpenseFailure.prototype = {$isStopSaving: 1}; A.ArchiveExpenseRequest.prototype = {$isStartSaving: 1}; A.ArchiveExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveExpenseFailure.prototype = {$isStopSaving: 1}; A.DeleteExpenseRequest.prototype = {$isStartSaving: 1}; A.DeleteExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteExpenseFailure.prototype = {$isStopSaving: 1}; A.RestoreExpenseRequest.prototype = {$isStartSaving: 1}; A.RestoreExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreExpenseFailure.prototype = {$isStopSaving: 1}; A.FilterExpenses.prototype = {$isPersistUI: 1}; A.SortExpenses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterExpensesByState.prototype = {$isPersistUI: 1}; A.FilterExpensesByStatus.prototype = {$isPersistUI: 1}; A.FilterExpensesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpensesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpensesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpensesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleExpenseAction_closure.prototype = { call$1(expense) { return expense.get$id(expense); }, $signature: 41 }; A.handleExpenseAction_closure0.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; return b; }, $signature: 29 }; A.handleExpenseAction_closure1.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_recurringExpense; return b; }, $signature: 29 }; A.handleExpenseAction_closure2.prototype = { call$1(entity) { var t1; type$.legacy_ExpenseEntity._as(entity); if (!entity.isDeleted) { t1 = entity.invoiceId; t1 = !(t1 != null && t1.length !== 0); } else t1 = false; return t1; }, $signature: 171 }; A.handleExpenseAction_closure3.prototype = { call$1(expense) { return A.convertExpenseToInvoiceItem(this.context, expense); }, $signature: 1238 }; A.handleExpenseAction_closure4.prototype = { call$1(b) { var t1, t2; b.get$lineItems().addAll$1(0, this.items); t1 = this._box_0; t2 = t1.projectId; b.get$_invoice_model$_$this()._projectId = t2; t1 = t1.vendorId; b.get$_invoice_model$_$this()._vendorId = t1; return b; }, $signature: 6 }; A.StartExpenseMultiselect.prototype = {}; A.AddToExpenseMultiselect.prototype = {}; A.RemoveFromExpenseMultiselect.prototype = {}; A.ClearExpenseMultiselect.prototype = {}; A.SaveExpenseDocumentRequest.prototype = {$isStartSaving: 1, get$expense() { return this.expense; } }; A.SaveExpenseDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateExpenseTab.prototype = {$isPersistUI: 1}; A._editExpense_closure.prototype = { call$3(store, dynamicAction, next) { var _s13_ = "/expense/edit"; next.call$1(type$.legacy_EditExpense._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewExpense_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewExpense_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewExpense_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewExpense._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/expense/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/expense/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewExpenseList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/expense"; next.call$1(type$.legacy_ViewExpenseList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewExpenseList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewExpenseList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_ArchiveExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._archiveExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._archiveExpense__closure0.prototype = { call$1(expenses) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._archiveExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_DeleteExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._deleteExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._deleteExpense__closure0.prototype = { call$1(expenses) { this.store.get$_dispatchers()[0].call$1(new A.DeleteExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._deleteExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_RestoreExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._restoreExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._restoreExpense__closure0.prototype = { call$1(expenses) { this.store.get$_dispatchers()[0].call$1(new A.RestoreExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._restoreExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveExpenseRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expense).then$1$1(0, new A._saveExpense__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveExpense__closure.prototype = { call$1(expense) { var t1 = this.action, t2 = this.store; if (t1.expense.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddExpenseSuccess(expense)); else t2.get$_dispatchers()[0].call$1(new A.SaveExpenseSuccess(expense)); t1.completer.complete$1(0, expense); }, $signature: 140 }; A._saveExpense__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadExpense._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadExpenseRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expenseId).then$1$1(0, new A._loadExpense__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadExpense__closure.prototype = { call$1(expense) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseSuccess(expense)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 140 }; A._loadExpense__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadExpenses_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadExpenses._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadExpensesRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new A._loadExpenses__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadExpenses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadExpenses__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadExpensesSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadRecurringExpenses()); }, $signature: 644 }; A._loadExpenses__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadExpensesFailure(error)); this.action.toString; }, $signature: 3 }; A._saveDocument_closure9.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveExpenseDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expense, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure19(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure20(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveExpenseDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure19.prototype = { call$1(expense) { this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseSuccess(expense)); this.action.completer.complete$1(0, null); }, $signature: 140 }; A._saveDocument__closure20.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.expenseUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$expenseListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer4().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._expense_model$_$v = t1; t1 = $.$get$selectedIdReducer4().call$2(t2.selectedId, t3); b.get$_expense_state$_$this()._expense_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer4().call$2(t2.forceSelected, t3); b.get$_expense_state$_$this()._expense_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer4().call$2(t2.tabIndex, t3); b.get$_expense_state$_$this()._expense_state$_tabIndex = t3; return b; }, $signature: 1243 }; A.forceSelectedReducer_closure39.prototype = { call$2(completer, action) { return true; }, $signature: 1244 }; A.forceSelectedReducer_closure40.prototype = { call$2(completer, action) { return false; }, $signature: 1245 }; A.forceSelectedReducer_closure41.prototype = { call$2(completer, action) { return false; }, $signature: 1246 }; A.forceSelectedReducer_closure42.prototype = { call$2(completer, action) { return false; }, $signature: 1247 }; A.forceSelectedReducer_closure43.prototype = { call$2(completer, action) { return false; }, $signature: 1248 }; A.forceSelectedReducer_closure44.prototype = { call$2(completer, action) { return false; }, $signature: 1249 }; A.forceSelectedReducer_closure45.prototype = { call$2(completer, action) { return false; }, $signature: 1250 }; A.forceSelectedReducer_closure46.prototype = { call$2(completer, action) { return false; }, $signature: 1251 }; A.tabIndexReducer_closure9.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1252 }; A.tabIndexReducer_closure10.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.selectedIdReducer_closure79.prototype = { call$2(completer, action) { return ""; }, $signature: 1253 }; A.selectedIdReducer_closure80.prototype = { call$2(completer, action) { return ""; }, $signature: 1254 }; A.selectedIdReducer_closure81.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_expense ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure82.prototype = { call$2(selectedId, action) { return action.expenseId; }, $signature: 1255 }; A.selectedIdReducer_closure83.prototype = { call$2(selectedId, action) { return action.expense.id; }, $signature: 1256 }; A.selectedIdReducer_closure84.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure85.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure86.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1257 }; A.selectedIdReducer_closure87.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1258 }; A.selectedIdReducer_closure88.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1259 }; A.selectedIdReducer_closure89.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1260 }; A.selectedIdReducer_closure90.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1261 }; A.selectedIdReducer_closure91.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1262 }; A.selectedIdReducer_closure92.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1263 }; A.selectedIdReducer_closure93.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1264 }; A.editingReducer_closure28.prototype = { call$2(expenses, action) { return J.$index$asx(action.expenses, 0); }, $signature: 1265 }; A.editingReducer_closure29.prototype = { call$2(expenses, action) { return J.$index$asx(action.expenses, 0); }, $signature: 1266 }; A.editingReducer_closure30.prototype = { call$2(expenses, action) { return J.$index$asx(action.expenses, 0); }, $signature: 1267 }; A.editingReducer_closure31.prototype = { call$2(expense, action) { return action.expense.rebuild$1(new A.editingReducer__closure10()); }, $signature: 1268 }; A.editingReducer__closure10.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_isChanged = true; return b; }, $signature: 29 }; A._viewExpenseList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterExpensesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpensesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpensesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpensesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpensesByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpensesByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpensesByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpensesByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpensesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterExpensesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpensesByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterExpensesByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpenses_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.expenseListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortExpenses_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure4.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure4.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure4.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure4.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 419 }; A._deleteExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 419 }; A._restoreExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 419 }; A._addExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expense, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 283 }; A._updateExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expense; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 283 }; A._setLoadedExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expense; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 283 }; A.memoizedExpensePurchaseOrderSelector_closure.prototype = { call$2(expense, purchaseOrderMap) { return A.expensePurchaseOrderSelector(expense, purchaseOrderMap); }, $signature: 1271 }; A.expensePurchaseOrderSelector_closure.prototype = { call$2(purchaseOrderId, purchaseOrder) { purchaseOrder.toString; this.expense.toString; }, $signature: 49 }; A.convertExpenseToInvoiceItem_closure.prototype = { call$1(b) { var t1, t2, t3, t4, _this = this; b.get$_invoice_model$_$this()._invoice_model$_typeId = "6"; t1 = _this.expense; b.get$_invoice_model$_$this()._expenseId = t1.id; t2 = _this.categoryMap._map$_map.$index(0, t1.categoryId); t2 = t2 == null ? null : t2.name; if (t2 == null) t2 = ""; b.get$_invoice_model$_$this()._invoice_model$_productKey = t2; b.get$_invoice_model$_$this()._invoice_model$_notes = t1.publicNotes; b.get$_invoice_model$_$this()._invoice_model$_quantity = 1; t2 = _this.company; if (t2.settings.enableInclusiveTaxes) { t3 = t1.get$grossAmount(); t4 = t1.exchangeRate; t3 *= t4 === 0 ? 1 : t4; } else { t3 = t1.get$netAmount(); t4 = t1.exchangeRate; t3 *= t4 === 0 ? 1 : t4; } b.get$_invoice_model$_$this()._invoice_model$_cost = t3; t3 = _this._box_0; t4 = t3.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t4; t4 = t3.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t4; t4 = t3.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t4; t3 = t3.customValue4; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t3; t2 = t2.numberOfItemTaxRates; t3 = t2 >= 1; t4 = t3 ? t1.taxName1 : ""; b.get$_invoice_model$_$this()._taxName1 = t4; t3 = t3 ? t1.get$calculatetaxRate1() : 0; b.get$_invoice_model$_$this()._taxRate1 = t3; t3 = t2 >= 2; t4 = t3 ? t1.taxName2 : ""; b.get$_invoice_model$_$this()._taxName2 = t4; t3 = t3 ? t1.get$calculatetaxRate2() : 0; b.get$_invoice_model$_$this()._taxRate2 = t3; t2 = t2 >= 3; t3 = t2 ? t1.taxName3 : ""; b.get$_invoice_model$_$this()._taxName3 = t3; t1 = t2 ? t1.get$calculatetaxRate3() : 0; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 58 }; A.memoizedFilteredExpenseList_closure.prototype = { call$9(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return A.filteredExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, $signature: 639 }; A.filteredExpensesSelector_closure.prototype = { call$1(expenseId) { var t2, vendor, t3, client, t4, _this = this, _null = null, expense = _this.expenseMap._map$_map.$index(0, expenseId), t1 = expense.categoryId, expenseCategory = _this.expenseCategoryMap._map$_map.$index(0, t1); if (expenseCategory == null) expenseCategory = A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); t2 = expense.vendorId; vendor = _this.vendorMap._map$_map.$index(0, t2); if (vendor == null) vendor = A.VendorEntity_VendorEntity(t2, _null, _null); t3 = expense.clientId; client = _this.clientMap._map$_map.$index(0, t3); if (client == null) client = A.ClientEntity_ClientEntity(_null, t3, _null, _null); if (expense.id === _this.selectionState.selectedId) return true; t4 = _this.filterEntityType; if (t4 != null) { if (t4 === B.EntityType_client && t3 != _this.filterEntityId) return false; else if (t4 === B.EntityType_vendor && t2 != _this.filterEntityId) return false; else if (t4 === B.EntityType_expenseCategory && t1 !== _this.filterEntityId) return false; else if (t4 === B.EntityType_user && expense.assignedUserId != _this.filterEntityId) return false; else if (t4 === B.EntityType_project && expense.projectId != _this.filterEntityId) return false; else if (t4 === B.EntityType_invoice && expense.invoiceId != _this.filterEntityId) return false; else if (t4 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t4 === B.EntityType_recurringExpense && expense.recurringId != _this.filterEntityId) return false; } else { if (t2 != null) t1 = !(!vendor.get$isArchived() && !vendor.isDeleted); else t1 = false; if (t1) return false; else { if (t3 != null) t1 = !(!client.get$isArchived() && !client.isDeleted); else t1 = false; if (t1) return false; } } t1 = _this.expenseListState; if (!expense.matchesStates$1(t1.stateFilters)) return false; if (!expense.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue3)) return false; else { t2 = t1.custom4Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue4)) return false; } } } t1 = t1.filter; return expense.matchesFilter$1(t1) || expenseCategory.matchesFilter$1(t1) || client.matchesNameOrEmail$1(t1) || vendor.matchesNameOrEmail$1(t1); }, $signature: 16 }; A.filteredExpensesSelector_closure0.prototype = { call$2(expenseAId, expenseBId) { var _this = this, t1 = _this.expenseMap._map$_map, t2 = _this.expenseListState; return t1.$index(0, expenseAId).compareTo$9(0, t1.$index(0, expenseBId), t2.sortField, t2.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, $signature: 19 }; A.memoizedExpenseStatsForVendor_closure.prototype = { call$2(vendorId, expenseMap) { return A.expenseStatsForVendor(vendorId, expenseMap); }, $signature: 156 }; A.expenseStatsForVendor_closure.prototype = { call$2(expenseId, expense) { if (expense.vendorId == this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedExpenseStatsForClient_closure.prototype = { call$2(clientId, expenseMap) { return A.expenseStatsForClient(clientId, expenseMap); }, $signature: 156 }; A.expenseStatsForClient_closure.prototype = { call$2(expenseId, expense) { if (expense.clientId == this.clientId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedClientExpenseList_closure.prototype = { call$2(expenseMap, clientId) { return A.clientExpenseList(expenseMap, clientId); }, $signature: 1274 }; A.clientExpenseList_closure.prototype = { call$1(expenseid) { var t2, expense = this.expenseMap._map$_map.$index(0, expenseid), t1 = this.clientId; if ((t1 == null ? "" : t1).length !== 0) { t2 = expense.clientId; t1 = (t2 == null ? "" : t2).length !== 0 && t2 != t1; } else t1 = false; if (t1) return false; if (!expense.get$isArchived() && !expense.isDeleted) { t1 = expense.invoiceId; t1 = !(t1 != null && t1.length !== 0) && expense.shouldBeInvoiced; } else t1 = false; return t1; }, $signature: 16 }; A.clientExpenseList_closure0.prototype = { call$2(idA, idB) { var t1 = this.expenseMap._map$_map, t2 = t1.$index(0, idA).number; t1 = t1.$index(0, idB).number; return B.JSString_methods.compareTo$1(t2, t1); }, $signature: 19 }; A.memoizedExpenseStatsForProject_closure.prototype = { call$2(projectId, expenseMap) { return A.expenseStatsForProject(projectId, expenseMap); }, $signature: 156 }; A.expenseStatsForProject_closure.prototype = { call$2(expenseId, expense) { if (expense.projectId == this.projectId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedExpenseStatsForUser_closure.prototype = { call$2(userId, expenseMap) { return A.expenseStatsForUser(userId, expenseMap); }, $signature: 156 }; A.expenseStatsForUser_closure.prototype = { call$2(expenseId, expense) { if (expense.assignedUserId == this.userId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.ExpenseState.prototype = { $get$1(_, expenseId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, expenseId)) return t1.$index(0, expenseId); else return A.ExpenseEntity_ExpenseEntity(_null, _null, expenseId, _null, _null, _null, _null); }, loadExpenses$1(clients) { return this.rebuild$1(new A.ExpenseState_loadExpenses_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.ExpenseState_loadExpenses_closure0(), new A.ExpenseState_loadExpenses_closure1(), type$.legacy_String, type$.legacy_ExpenseEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.ExpenseState_loadExpenses_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.ExpenseState_loadExpenses_closure1.prototype = { call$1(item) { return item; }, $signature: 636 }; A.ExpenseState_loadExpenses_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 283 }; A.ExpenseUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$ExpenseStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_6Ps), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.ExpenseStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_expense_state$_$this(); t6 = t5._expense_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._expense_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_6Ps)); break; case "list": t5 = result.get$_expense_state$_$this(); t6 = t5._expense_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._expense_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_OXO; }, get$wireName() { return "ExpenseState"; } }; A._$ExpenseUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_UcG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.ExpenseUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_expense_state$_$this(); t4 = t3._expense_state$_editing; if (t4 == null) { t4 = new A.ExpenseEntityBuilder(); t4.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; t4.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t4.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t4.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t4.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._expense_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_UcG)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._expense_model$_$v = t4; break; case "listUIState": t3 = result.get$_expense_state$_$this(); t4 = t3._expense_state$_listUIState; t3 = t4 == null ? t3._expense_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_state$_$this()._expense_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_state$_$this()._expense_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_state$_$this()._expense_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_fkg; }, get$wireName() { return "ExpenseUIState"; } }; A._$ExpenseState.prototype = { rebuild$1(updates) { var t1 = new A.ExpenseStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._expense_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._expense_state$__hashCode; return t1 == null ? _this._expense_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.ExpenseStateBuilder.prototype = { get$map(_) { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_map; return t2 == null ? t1._expense_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity) : t2; }, get$list(_) { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_list; return t2 == null ? t1._expense_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_expense_state$_$this() { var t1, t2, _this = this, $$v = _this._expense_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._expense_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._expense_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._expense_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._expense_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$ExpenseState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ExpenseState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$ExpenseUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.ExpenseUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._expense_state$__hashCode; return t1 == null ? _this._expense_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.ExpenseUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_editing; if (t2 == null) { t2 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t2); t1._expense_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_listUIState; return t2 == null ? t1._expense_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_expense_state$_$this() { var t1, t2, _this = this, $$v = _this._expense_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._expense_model$_$v = t1; t1 = t2; } _this._expense_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._expense_state$_listUIState = t2; _this._expense_state$_selectedId = $$v.selectedId; _this._expense_state$_forceSelected = $$v.forceSelected; _this._expense_state$_tabIndex = $$v.tabIndex; _this._expense_state$_saveCompleter = $$v.saveCompleter; _this._expense_state$_cancelCompleter = $$v.cancelCompleter; _this._expense_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ExpenseUIState", _$result = null; try { _$result0 = _this._expense_state$_$v; if (_$result0 == null) { t1 = _this._expense_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_expense_state$_$this()._expense_state$_selectedId; t4 = _this.get$_expense_state$_$this()._expense_state$_forceSelected; t5 = _this.get$_expense_state$_$this()._expense_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_expense_state$_$this()._expense_state$_saveCompleter; _$result0 = A._$ExpenseUIState$_(_this.get$_expense_state$_$this()._expense_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._expense_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_state$_$v = t1; return _$result; } }; A._ExpenseUIState_Object_EntityUIState.prototype = {}; A.ViewExpenseCategoryList.prototype = {$isPersistUI: 1}; A.ViewExpenseCategory.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expenseCategoryId() { return this.expenseCategoryId; } }; A.EditExpenseCategory.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expenseCategory() { return this.expenseCategory; } }; A.UpdateExpenseCategory.prototype = {$isPersistUI: 1, get$expenseCategory() { return this.expenseCategory; } }; A.LoadExpenseCategoryRequest.prototype = {$isStartLoading: 1}; A.LoadExpenseCategoryFailure.prototype = { toString$0(_) { return "LoadExpenseCategoryFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadExpenseCategorySuccess.prototype = { toString$0(_) { return "LoadExpenseCategorySuccess{expenseCategory: " + A.S(this.expenseCategory) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$expenseCategory() { return this.expenseCategory; } }; A.LoadExpenseCategoriesRequest.prototype = {$isStartLoading: 1}; A.LoadExpenseCategoriesFailure.prototype = { toString$0(_) { return "LoadExpenseCategoriesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadExpenseCategoriesSuccess.prototype = { toString$0(_) { return "LoadExpenseCategoriesSuccess{expenseCategories: " + A.S(this.expenseCategories) + "}"; }, $isStopLoading: 1 }; A.SaveExpenseCategoryRequest.prototype = {$isStartSaving: 1, get$expenseCategory() { return this.expenseCategory; } }; A.SaveExpenseCategorySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expenseCategory() { return this.expenseCategory; } }; A.AddExpenseCategorySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expenseCategory() { return this.expenseCategory; } }; A.SaveExpenseCategoryFailure.prototype = {$isStopSaving: 1}; A.ArchiveExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; A.ArchiveExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; A.DeleteExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; A.DeleteExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; A.RestoreExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; A.RestoreExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; A.FilterExpenseCategories.prototype = {$isPersistUI: 1}; A.SortExpenseCategories.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterExpenseCategoriesByState.prototype = {$isPersistUI: 1}; A.FilterExpenseCategoriesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpenseCategoriesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpenseCategoriesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterExpenseCategoriesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartExpenseCategoryMultiselect.prototype = {}; A.AddToExpenseCategoryMultiselect.prototype = {}; A.RemoveFromExpenseCategoryMultiselect.prototype = {}; A.ClearExpenseCategoryMultiselect.prototype = {}; A.handleExpenseCategoryAction_closure.prototype = { call$1(expenseCategory) { return expenseCategory.get$id(expenseCategory); }, $signature: 41 }; A.handleExpenseCategoryAction_closure0.prototype = { call$1(b) { var t1 = this.expenseCategory.id; b.get$_expense_model$_$this()._categoryId = t1; return b; }, $signature: 29 }; A._editExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { var _s31_ = "/settings/expense_category/edit"; next.call$1(type$.legacy_EditExpenseCategory._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s31_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s31_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewExpenseCategory_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewExpenseCategory_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewExpenseCategory._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/expense_category/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/expense_category/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewExpenseCategoryList_closure.prototype = { call$3(store, dynamicAction, next) { var _s26_ = "/settings/expense_category"; next.call$1(type$.legacy_ViewExpenseCategoryList._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s26_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s26_, new A._viewExpenseCategoryList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewExpenseCategoryList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_ArchiveExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = A.List_List$of(new A.MappedListIterable(t1, new A._archiveExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveExpenseCategory__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseCategoryState.map._map$_map.$index(0, id); }, $signature: 415 }; A._archiveExpenseCategory__closure0.prototype = { call$1(expenseCategories) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 414 }; A._archiveExpenseCategory__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_DeleteExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = A.List_List$of(new A.MappedListIterable(t1, new A._deleteExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteExpenseCategory__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseCategoryState.map._map$_map.$index(0, id); }, $signature: 415 }; A._deleteExpenseCategory__closure0.prototype = { call$1(expenseCategories) { this.store.get$_dispatchers()[0].call$1(new A.DeleteExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 414 }; A._deleteExpenseCategory__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_RestoreExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = A.List_List$of(new A.MappedListIterable(t1, new A._restoreExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreExpenseCategory__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].expenseCategoryState.map._map$_map.$index(0, id); }, $signature: 415 }; A._restoreExpenseCategory__closure0.prototype = { call$1(expenseCategories) { this.store.get$_dispatchers()[0].call$1(new A.RestoreExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 414 }; A._restoreExpenseCategory__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveExpenseCategoryRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expenseCategory).then$1$1(0, new A._saveExpenseCategory__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveExpenseCategory__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveExpenseCategory__closure.prototype = { call$1(expenseCategory) { var t1 = this.action, t2 = this.store; if (t1.expenseCategory.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddExpenseCategorySuccess(expenseCategory)); else t2.get$_dispatchers()[0].call$1(new A.SaveExpenseCategorySuccess(expenseCategory)); t1.completer.complete$1(0, expenseCategory); }, $signature: 291 }; A._saveExpenseCategory__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseCategoryFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadExpenseCategory._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategoryRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.expenseCategoryId).then$1$1(0, new A._loadExpenseCategory__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadExpenseCategory__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadExpenseCategory__closure.prototype = { call$1(expenseCategory) { this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategorySuccess(expenseCategory)); this.action.completer.complete$1(0, null); }, $signature: 291 }; A._loadExpenseCategory__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategoryFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadExpenseCategories_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadExpenseCategories._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategoriesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadExpenseCategories__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadExpenseCategories__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadExpenseCategories__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategoriesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1279 }; A._loadExpenseCategories__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadExpenseCategoriesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.expenseCategoryUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$expenseCategoryListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer16().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._expense_category_model$_$v = t1; t1 = $.$get$selectedIdReducer16().call$2(t2.selectedId, t3); b.get$_expense_category_state$_$this()._expense_category_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer16().call$2(t2.forceSelected, t3); b.get$_expense_category_state$_$this()._expense_category_state$_forceSelected = t3; return b; }, $signature: 1280 }; A.forceSelectedReducer_closure127.prototype = { call$2(completer, action) { return true; }, $signature: 1281 }; A.forceSelectedReducer_closure128.prototype = { call$2(completer, action) { return false; }, $signature: 1282 }; A.forceSelectedReducer_closure129.prototype = { call$2(completer, action) { return false; }, $signature: 1283 }; A.forceSelectedReducer_closure130.prototype = { call$2(completer, action) { return false; }, $signature: 1284 }; A.forceSelectedReducer_closure131.prototype = { call$2(completer, action) { return false; }, $signature: 1285 }; A.forceSelectedReducer_closure132.prototype = { call$2(completer, action) { return false; }, $signature: 1286 }; A.forceSelectedReducer_closure133.prototype = { call$2(completer, action) { return false; }, $signature: 1287 }; A.forceSelectedReducer_closure134.prototype = { call$2(completer, action) { return false; }, $signature: 1288 }; A.selectedIdReducer_closure256.prototype = { call$2(completer, action) { return ""; }, $signature: 1289 }; A.selectedIdReducer_closure257.prototype = { call$2(completer, action) { return ""; }, $signature: 1290 }; A.selectedIdReducer_closure258.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_expenseCategory ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure259.prototype = { call$2(selectedId, action) { return action.get$expenseCategoryId(); }, $signature: 90 }; A.selectedIdReducer_closure260.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$expenseCategory()); }, $signature: 90 }; A.selectedIdReducer_closure261.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure262.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure263.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1291 }; A.selectedIdReducer_closure264.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1292 }; A.selectedIdReducer_closure265.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1293 }; A.selectedIdReducer_closure266.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1294 }; A.selectedIdReducer_closure267.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1295 }; A.selectedIdReducer_closure268.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1296 }; A.selectedIdReducer_closure269.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1297 }; A.selectedIdReducer_closure270.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_expenseCategory ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure87.prototype = { call$2(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, $signature: 1298 }; A.editingReducer_closure88.prototype = { call$2(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, $signature: 1299 }; A.editingReducer_closure89.prototype = { call$2(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, $signature: 1300 }; A.editingReducer_closure90.prototype = { call$2(expenseCategory, action) { return action.expenseCategory.rebuild$1(new A.editingReducer__closure34()); }, $signature: 1301 }; A.editingReducer__closure34.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_isChanged = true; return b; }, $signature: 292 }; A._filterExpenseCategoriesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpenseCategoriesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpenseCategoriesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterExpenseCategoriesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpenseCategoriesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterExpenseCategoriesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterExpenseCategories_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.expenseCategoryListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortExpenseCategories_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure16.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure16.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure16.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure16.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveExpenseCategorySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 411 }; A._deleteExpenseCategorySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 411 }; A._restoreExpenseCategorySuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 411 }; A._addExpenseCategory_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 293 }; A._updateExpenseCategory_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 293 }; A._setLoadedExpenseCategory_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 293 }; A.memoizedFilteredExpenseCategoryList_closure.prototype = { call$4(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState) { return A.filteredExpenseCategoriesSelector(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState); }, $signature: 1305 }; A.filteredExpenseCategoriesSelector_closure.prototype = { call$1(expenseCategoryId) { var t1, expenseCategory = this.expenseCategoryMap._map$_map.$index(0, expenseCategoryId); if (expenseCategory.id === this.selectionState.selectedId) return true; t1 = this.expenseCategoryListState; if (!expenseCategory.matchesStates$1(t1.stateFilters)) return false; return expenseCategory.matchesFilter$1(t1.filter); }, $signature: 16 }; A.filteredExpenseCategoriesSelector_closure0.prototype = { call$2(expenseCategoryAId, expenseCategoryBId) { var t3, t4, t1 = this.expenseCategoryMap._map$_map, t2 = t1.$index(0, expenseCategoryAId); t1 = t1.$index(0, expenseCategoryBId); t3 = this.expenseCategoryListState; t4 = t3.sortField; return J.compareTo$3$expenseCategory$sortAscending$sortField$ns(t2, t1, t3.sortAscending, t4); }, $signature: 19 }; A.memoizedCalculateExpenseCategoryAmount_closure.prototype = { call$2(categoryId, expenseMap) { return A.calculateExpenseCategoryAmount(categoryId, expenseMap); }, $signature: 1306 }; A.calculateExpenseCategoryAmount_closure.prototype = { call$2(expenseId, expense) { var t1; if (expense.categoryId === this.categoryId) { t1 = this._box_0; t1.total = t1.total + expense.get$grossAmount(); } }, $signature: 113 }; A.memoizedExpenseStatsForExpenseCategory_closure.prototype = { call$2(companyGatewayId, expenseMap) { return A.expenseStatsForExpenseCategory(companyGatewayId, expenseMap); }, $signature: 156 }; A.expenseStatsForExpenseCategory_closure.prototype = { call$2(expenseId, expense) { if (expense.categoryId === this.categoryId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.ExpenseCategoryState.prototype = { $get$1(_, categoryId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, categoryId)) return t1.$index(0, categoryId); else return A.ExpenseCategoryEntity_ExpenseCategoryEntity(categoryId, null); }, loadExpenseCategories$1(clients) { return this.rebuild$1(new A.ExpenseCategoryState_loadExpenseCategories_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.ExpenseCategoryState_loadExpenseCategories_closure0(), new A.ExpenseCategoryState_loadExpenseCategories_closure1(), type$.legacy_String, type$.legacy_ExpenseCategoryEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.ExpenseCategoryState_loadExpenseCategories_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.ExpenseCategoryState_loadExpenseCategories_closure1.prototype = { call$1(item) { return item; }, $signature: 1307 }; A.ExpenseCategoryState_loadExpenseCategories_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 293 }; A.ExpenseCategoryUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$ExpenseCategoryStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_HZS), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.ExpenseCategoryStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_expense_category_state$_$this(); t6 = t5._expense_category_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._expense_category_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_HZS)); break; case "list": t5 = result.get$_expense_category_state$_$this(); t6 = t5._expense_category_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._expense_category_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_01; }, get$wireName() { return "ExpenseCategoryState"; } }; A._$ExpenseCategoryUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_M6L)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.ExpenseCategoryUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_expense_category_state$_$this(); t4 = t3._expense_category_state$_editing; if (t4 == null) { t4 = new A.ExpenseCategoryEntityBuilder(); t4.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t3._expense_category_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_M6L)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._expense_category_model$_$v = t4; break; case "listUIState": t3 = result.get$_expense_category_state$_$this(); t4 = t3._expense_category_state$_listUIState; t3 = t4 == null ? t3._expense_category_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_expense_category_state$_$this()._expense_category_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_expense_category_state$_$this()._expense_category_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_expense_category_state$_$this()._expense_category_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_FcO; }, get$wireName() { return "ExpenseCategoryUIState"; } }; A._$ExpenseCategoryState.prototype = { rebuild$1(updates) { var t1 = new A.ExpenseCategoryStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._expense_category_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ExpenseCategoryState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._expense_category_state$__hashCode; return t1 == null ? _this._expense_category_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.ExpenseCategoryStateBuilder.prototype = { get$map(_) { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_map; return t2 == null ? t1._expense_category_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseCategoryEntity) : t2; }, get$list(_) { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_list; return t2 == null ? t1._expense_category_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_expense_category_state$_$this() { var t1, t2, _this = this, $$v = _this._expense_category_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._expense_category_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._expense_category_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._expense_category_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._expense_category_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$ExpenseCategoryState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ExpenseCategoryState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_category_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$ExpenseCategoryUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.ExpenseCategoryUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._expense_category_state$__hashCode; return t1 == null ? _this._expense_category_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.ExpenseCategoryUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_editing; if (t2 == null) { t2 = new A.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t1._expense_category_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_listUIState; return t2 == null ? t1._expense_category_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_expense_category_state$_$this() { var t1, t2, _this = this, $$v = _this._expense_category_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._expense_category_model$_$v = t1; t1 = t2; } _this._expense_category_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._expense_category_state$_listUIState = t2; _this._expense_category_state$_selectedId = $$v.selectedId; _this._expense_category_state$_forceSelected = $$v.forceSelected; _this._expense_category_state$_tabIndex = $$v.tabIndex; _this._expense_category_state$_saveCompleter = $$v.saveCompleter; _this._expense_category_state$_cancelCompleter = $$v.cancelCompleter; _this._expense_category_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s22_ = "ExpenseCategoryUIState", _$result = null; try { _$result0 = _this._expense_category_state$_$v; if (_$result0 == null) { t1 = _this._expense_category_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_expense_category_state$_$this()._expense_category_state$_selectedId; t4 = _this.get$_expense_category_state$_$this()._expense_category_state$_forceSelected; t5 = _this.get$_expense_category_state$_$this()._expense_category_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s22_, "tabIndex")); t6 = _this.get$_expense_category_state$_$this()._expense_category_state$_saveCompleter; _$result0 = A._$ExpenseCategoryUIState$_(_this.get$_expense_category_state$_$this()._expense_category_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._expense_category_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._expense_category_state$_$v = t1; return _$result; } }; A._ExpenseCategoryUIState_Object_EntityUIState.prototype = {}; A.ViewGroupList.prototype = {$isPersistUI: 1}; A.ViewGroup.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditGroup.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$group() { return this.group; } }; A.UpdateGroup.prototype = {$isPersistUI: 1, get$group() { return this.group; } }; A.LoadGroup.prototype = {}; A.LoadGroupRequest.prototype = {$isStartLoading: 1}; A.LoadGroupFailure.prototype = { toString$0(_) { return "LoadGroupFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadGroupSuccess.prototype = { toString$0(_) { return "LoadGroupSuccess{group: " + A.S(this.group) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$group() { return this.group; } }; A.LoadGroupsRequest.prototype = {$isStartLoading: 1}; A.LoadGroupsFailure.prototype = { toString$0(_) { return "LoadGroupsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadGroupsSuccess.prototype = { toString$0(_) { return "LoadGroupsSuccess{groups: " + A.S(this.groups) + "}"; }, $isStopLoading: 1 }; A.SaveGroupRequest.prototype = {$isStartSaving: 1, get$group() { return this.group; } }; A.SaveGroupSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$group() { return this.group; } }; A.AddGroupSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$group() { return this.group; } }; A.SaveGroupFailure.prototype = {$isStopSaving: 1}; A.ArchiveGroupRequest.prototype = {$isStartSaving: 1}; A.ArchiveGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveGroupFailure.prototype = {$isStopSaving: 1}; A.DeleteGroupRequest.prototype = {$isStartSaving: 1}; A.DeleteGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteGroupFailure.prototype = {$isStopSaving: 1}; A.RestoreGroupRequest.prototype = {$isStartSaving: 1}; A.RestoreGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreGroupFailure.prototype = {$isStopSaving: 1}; A.FilterGroups.prototype = {$isPersistUI: 1}; A.SortGroups.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterGroupsByState.prototype = {$isPersistUI: 1}; A.handleGroupAction_closure.prototype = { call$1(group) { return group.get$id(group); }, $signature: 41 }; A.handleGroupAction_closure0.prototype = { call$1(b) { var t1 = this.group; t1 = t1.get$id(t1); b.get$_client_model$_$this()._groupId = t1; return b; }, $signature: 48 }; A.StartGroupMultiselect.prototype = {}; A.AddToGroupMultiselect.prototype = {}; A.RemoveFromGroupMultiselect.prototype = {}; A.ClearGroupMultiselect.prototype = {}; A.SaveGroupDocumentRequest.prototype = {$isStartSaving: 1, get$group() { return this.group; } }; A.SaveGroupDocumentFailure.prototype = {$isStopSaving: 1}; A._editGroup_closure.prototype = { call$3(store, dynamicAction, next) { var _s29_ = "/settings/group_settings/edit"; next.call$1(type$.legacy_EditGroup._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s29_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s29_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewGroup_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewGroup_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewGroup_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewGroup._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/group_settings/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/group_settings/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewGroupList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s24_ = "/settings/group_settings"; next.call$1(type$.legacy_ViewGroupList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s24_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s24_, new A._viewGroupList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewGroupList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveGroup_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_ArchiveGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = A.List_List$of(new A.MappedListIterable(t1, new A._archiveGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveGroup__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].groupState.map._map$_map.$index(0, id); }, $signature: 409 }; A._archiveGroup__closure0.prototype = { call$1(groups) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 408 }; A._archiveGroup__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteGroup_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_DeleteGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = A.List_List$of(new A.MappedListIterable(t1, new A._deleteGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteGroup__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].groupState.map._map$_map.$index(0, id); }, $signature: 409 }; A._deleteGroup__closure0.prototype = { call$1(groups) { this.store.get$_dispatchers()[0].call$1(new A.DeleteGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 408 }; A._deleteGroup__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreGroup_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_RestoreGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = A.List_List$of(new A.MappedListIterable(t1, new A._restoreGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreGroup__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].groupState.map._map$_map.$index(0, id); }, $signature: 409 }; A._restoreGroup__closure0.prototype = { call$1(groups) { this.store.get$_dispatchers()[0].call$1(new A.RestoreGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 408 }; A._restoreGroup__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveGroup_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveGroupRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.group).then$1$1(0, new A._saveGroup__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveGroup__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveGroup__closure.prototype = { call$1(group) { var t1 = this.action, t2 = this.store; if (t1.group.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddGroupSuccess(group)); else t2.get$_dispatchers()[0].call$1(new A.SaveGroupSuccess(group)); t1.completer.complete$1(0, group); }, $signature: 241 }; A._saveGroup__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadGroup_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadGroup._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadGroupRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.groupId).then$1$1(0, new A._loadGroup__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadGroup__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadGroup__closure.prototype = { call$1(group) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadGroupSuccess(group)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 241 }; A._loadGroup__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadGroupFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadGroups_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadGroups._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadGroupsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadGroups__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadGroups__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadGroups__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadGroupsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1311 }; A._loadGroups__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadGroupsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A._saveDocument_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveGroupDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.group, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure0(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveGroupDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure.prototype = { call$1(group) { this.store.get$_dispatchers()[0].call$1(new A.SaveGroupSuccess(group)); this.action.completer.complete$1(0, null); }, $signature: 241 }; A._saveDocument__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveGroupDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.groupUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$groupListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer6().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._group_model$_$v = t1; t1 = $.$get$selectedIdReducer6().call$2(t2.selectedId, t3); b.get$_group_state$_$this()._group_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer6().call$2(t2.forceSelected, t3); b.get$_group_state$_$this()._group_state$_forceSelected = t3; return b; }, $signature: 1312 }; A.forceSelectedReducer_closure55.prototype = { call$2(completer, action) { return true; }, $signature: 1313 }; A.forceSelectedReducer_closure56.prototype = { call$2(completer, action) { return false; }, $signature: 1314 }; A.forceSelectedReducer_closure57.prototype = { call$2(completer, action) { return false; }, $signature: 1315 }; A.forceSelectedReducer_closure58.prototype = { call$2(completer, action) { return false; }, $signature: 1316 }; A.selectedIdReducer_closure107.prototype = { call$2(completer, action) { return ""; }, $signature: 1317 }; A.selectedIdReducer_closure108.prototype = { call$2(completer, action) { return ""; }, $signature: 1318 }; A.selectedIdReducer_closure109.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_group ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure110.prototype = { call$2(selectedId, action) { return action.groupId; }, $signature: 1319 }; A.selectedIdReducer_closure111.prototype = { call$2(selectedId, action) { return action.group.id; }, $signature: 1320 }; A.selectedIdReducer_closure112.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure113.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure114.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1321 }; A.selectedIdReducer_closure115.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1322 }; A.selectedIdReducer_closure116.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1323 }; A.selectedIdReducer_closure117.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_group ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure118.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_group ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure33.prototype = { call$2(groups, action) { return J.$index$asx(action.groups, 0); }, $signature: 1324 }; A.editingReducer_closure34.prototype = { call$2(groups, action) { return J.$index$asx(action.groups, 0); }, $signature: 1325 }; A.editingReducer_closure35.prototype = { call$2(groups, action) { return J.$index$asx(action.groups, 0); }, $signature: 1326 }; A.editingReducer_closure36.prototype = { call$2(group, action) { return action.group.rebuild$1(new A.editingReducer__closure12()); }, $signature: 1327 }; A.editingReducer__closure12.prototype = { call$1(b) { b.get$_group_model$_$this()._group_model$_isChanged = true; return b; }, $signature: 406 }; A._viewGroupList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterGroupsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterGroupsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterGroups_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.groupListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortGroups_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure6.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure6.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure6.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure6.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveGroupSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 405 }; A._deleteGroupSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 405 }; A._restoreGroupSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 405 }; A._addGroup_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.group, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 192 }; A._updateGroup_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.group; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 192 }; A._setLoadedGroup_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.group; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 192 }; A._setLoadedGroups_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.groups, new A._setLoadedGroups__closure(), new A._setLoadedGroups__closure0(), type$.legacy_String, type$.legacy_GroupEntity)); return b; }, $signature: 192 }; A._setLoadedGroups__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedGroups__closure0.prototype = { call$1(item) { return item; }, $signature: 623 }; A._setLoadedGroups_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 192 }; A._setLoadedCompany_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.groups, new A._setLoadedCompany__closure(), new A._setLoadedCompany__closure0(), type$.legacy_String, type$.legacy_GroupEntity)); return b; }, $signature: 192 }; A._setLoadedCompany__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompany__closure0.prototype = { call$1(item) { return item; }, $signature: 623 }; A._setLoadedCompany_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 192 }; A.memoizedFilteredGroupList_closure.prototype = { call$4(selectionState, groupMap, groupList, groupListState) { return A.filteredGroupsSelector(selectionState, groupMap, groupList, groupListState); }, $signature: 1332 }; A.filteredGroupsSelector_closure.prototype = { call$1(groupId) { var t1, group = this.groupMap._map$_map.$index(0, groupId); if (group.id === this.selectionState.selectedId) return true; t1 = this.groupListState; if (!group.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([group.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredGroupsSelector_closure0.prototype = { call$2(groupAId, groupBId) { var sortField, sortAscending, groupA0, response, t1 = this.groupMap._map$_map, groupA = t1.$index(0, groupAId), groupB = t1.$index(0, groupBId); t1 = this.groupListState; sortField = t1.sortField; sortAscending = t1.sortAscending; groupA.toString; if (sortAscending) groupA0 = groupA; else groupA0 = groupB; if (!sortAscending) groupB = groupA; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(groupA0.name.toLowerCase(), groupB.name.toLowerCase()); break; default: A.print("## ERROR: sort by group." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 19 }; A.memoizedClientStatsForGroup_closure.prototype = { call$2(clientMap, groupId) { return A.clientStatsForGroup(clientMap, groupId); }, $signature: 1333 }; A.clientStatsForGroup_closure.prototype = { call$2(clientId, client) { if (client.groupId === this.groupId) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.get$isArchived()) ++this._box_0.countArchived; }, $signature: 240 }; A.GroupState.prototype = { $get$1(_, groupId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, groupId)) return t1.$index(0, groupId); else return A.GroupEntity_GroupEntity(groupId, null); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.GroupUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$GroupStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_CxZ), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.GroupStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._group_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_CxZ)); break; case "list": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._group_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_3IR; }, get$wireName() { return "GroupState"; } }; A._$GroupUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_Iiu)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new A.GroupUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_GroupEntity, t3 = type$.legacy_DocumentEntity, t4 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_editing; if (t6 == null) { t6 = new A.GroupEntityBuilder(); t7 = t6.get$_group_model$_$this(); t8 = t7._documents; if (t8 == null) { t8 = new A.ListBuilder(t4); t8.__ListBuilder__list = A.List_List$from(B.List_empty, true, t3); t7._documents = t8; t7 = t8; } else t7 = t8; t8 = A.BuiltList_BuiltList$from(B.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = A.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t5._group_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iiu)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._group_model$_$v = t6; break; case "listUIState": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_listUIState; t5 = t6 == null ? t5._group_state$_listUIState = new A.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_group_state$_$this()._group_state$_selectedId = t5; break; case "forceSelected": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_group_state$_$this()._group_state$_forceSelected = t5; break; case "tabIndex": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_group_state$_$this()._group_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_FVt; }, get$wireName() { return "GroupUIState"; } }; A._$GroupState.prototype = { rebuild$1(updates) { var t1 = new A.GroupStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._group_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.GroupState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._group_state$__hashCode; return t1 == null ? _this._group_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.GroupStateBuilder.prototype = { get$map(_) { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_map; return t2 == null ? t1._group_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GroupEntity) : t2; }, get$list(_) { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_list; return t2 == null ? t1._group_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_group_state$_$this() { var t1, t2, _this = this, $$v = _this._group_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._group_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._group_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._group_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._group_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$GroupState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("GroupState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._group_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$GroupUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.GroupUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._group_state$__hashCode; return t1 == null ? _this._group_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.GroupUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_editing; if (t2 == null) { t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); t1._group_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_listUIState; return t2 == null ? t1._group_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_group_state$_$this() { var t1, t2, _this = this, $$v = _this._group_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.GroupEntityBuilder(); A.GroupEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._group_model$_$v = t1; t1 = t2; } _this._group_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._group_state$_listUIState = t2; _this._group_state$_selectedId = $$v.selectedId; _this._group_state$_forceSelected = $$v.forceSelected; _this._group_state$_tabIndex = $$v.tabIndex; _this._group_state$_saveCompleter = $$v.saveCompleter; _this._group_state$_cancelCompleter = $$v.cancelCompleter; _this._group_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s12_ = "GroupUIState", _$result = null; try { _$result0 = _this._group_state$_$v; if (_$result0 == null) { t1 = _this._group_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_group_state$_$this()._group_state$_selectedId; t4 = _this.get$_group_state$_$this()._group_state$_forceSelected; t5 = _this.get$_group_state$_$this()._group_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "tabIndex")); t6 = _this.get$_group_state$_$this()._group_state$_saveCompleter; _$result0 = A._$GroupUIState$_(_this.get$_group_state$_$this()._group_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._group_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._group_state$_$v = t1; return _$result; } }; A._GroupUIState_Object_EntityUIState.prototype = {}; A.ViewInvoiceList.prototype = {$isPersistUI: 1}; A.ViewInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$invoice() { return this.invoice; } }; A.ShowEmailInvoice.prototype = { get$invoice() { return this.invoice; } }; A.ShowPdfInvoice.prototype = { get$invoice() { return this.invoice; } }; A.EditInvoiceItem.prototype = {$isPersistUI: 1}; A.UpdateInvoice.prototype = {$isPersistUI: 1, get$invoice() { return this.invoice; } }; A.UpdateInvoiceClient.prototype = {$isPersistUI: 1}; A.LoadInvoice.prototype = {}; A.LoadInvoices.prototype = {}; A.LoadInvoiceRequest.prototype = {$isStartLoading: 1}; A.LoadInvoiceFailure.prototype = { toString$0(_) { return "LoadInvoiceFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadInvoiceSuccess.prototype = { toString$0(_) { return "LoadInvoiceSuccess{invoice: " + A.S(this.invoice) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$invoice() { return this.invoice; } }; A.LoadInvoicesRequest.prototype = {$isStartLoading: 1}; A.LoadInvoicesFailure.prototype = { toString$0(_) { return "LoadInvoicesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadInvoicesSuccess.prototype = { toString$0(_) { return "LoadInvoicesSuccess{invoices: " + A.S(this.invoices) + "}"; }, $isStopLoading: 1 }; A.AddInvoiceContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.RemoveInvoiceContact.prototype = {$isPersistUI: 1}; A.AddInvoiceItem.prototype = {$isPersistUI: 1}; A.MoveInvoiceItem.prototype = {$isPersistUI: 1}; A.AddInvoiceItems.prototype = {$isPersistUI: 1}; A.UpdateInvoiceItem.prototype = {$isPersistUI: 1}; A.DeleteInvoiceItem.prototype = {$isPersistUI: 1}; A.SaveInvoiceRequest.prototype = {$isStartSaving: 1, get$invoice() { return this.invoice; } }; A.SaveInvoiceSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$invoice() { return this.invoice; } }; A.AddInvoiceSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$invoice() { return this.invoice; } }; A.SaveInvoiceFailure.prototype = {$isStopSaving: 1}; A.EmailInvoiceRequest.prototype = {$isStartSaving: 1, get$body(receiver) { return this.body; } }; A.EmailInvoiceSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, get$invoice() { return this.invoice; } }; A.EmailInvoiceFailure.prototype = {$isStopSaving: 1}; A.MarkInvoicesSentRequest.prototype = {$isStartSaving: 1}; A.MarkInvoicesSentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.MarkInvoicesSentFailure.prototype = {$isStopSaving: 1}; A.BulkEmailInvoicesRequest.prototype = {$isStartSaving: 1}; A.BulkEmailInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.BulkEmailInvoicesFailure.prototype = {$isStopSaving: 1}; A.MarkInvoicesPaidRequest.prototype = {$isStartSaving: 1}; A.MarkInvoicesPaidSuccess.prototype = {$isStopSaving: 1}; A.MarkInvoicesPaidFailure.prototype = {$isStopSaving: 1}; A.CancelInvoicesRequest.prototype = {$isStartSaving: 1}; A.CancelInvoicesSuccess.prototype = {$isStopSaving: 1}; A.CancelInvoicesFailure.prototype = {$isStopSaving: 1}; A.ArchiveInvoicesRequest.prototype = {$isStartSaving: 1}; A.ArchiveInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveInvoicesFailure.prototype = {$isStopSaving: 1}; A.DeleteInvoicesRequest.prototype = {$isStartSaving: 1}; A.DeleteInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteInvoicesFailure.prototype = {$isStopSaving: 1}; A.DownloadInvoicesRequest.prototype = {$isStartSaving: 1}; A.DownloadInvoicesSuccess.prototype = {$isStopSaving: 1}; A.DownloadInvoicesFailure.prototype = {$isStopSaving: 1}; A.RestoreInvoicesRequest.prototype = {$isStartSaving: 1}; A.RestoreInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreInvoicesFailure.prototype = {$isStopSaving: 1}; A.FilterInvoices.prototype = {$isPersistUI: 1}; A.SortInvoices.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterInvoicesByState.prototype = {$isPersistUI: 1}; A.FilterInvoicesByStatus.prototype = {$isPersistUI: 1}; A.FilterInvoicesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterInvoicesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterInvoicesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterInvoicesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartInvoiceMultiselect.prototype = {}; A.AddToInvoiceMultiselect.prototype = {}; A.RemoveFromInvoiceMultiselect.prototype = {}; A.ClearInvoiceMultiselect.prototype = {}; A.SaveInvoiceDocumentRequest.prototype = {$isStartSaving: 1, get$invoice() { return this.invoice; } }; A.SaveInvoiceDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateInvoiceTab.prototype = {$isPersistUI: 1}; A.handleInvoiceAction_closure.prototype = { call$1(invoice) { return invoice.get$id(invoice); }, $signature: 41 }; A.handleInvoiceAction_closure0.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoiceId = this.invoice.id; b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleInvoiceAction_closure1.prototype = { call$1(_) { var _this = this, t1 = _this.invoiceIds, t2 = _this.localization.localeCode; if (t1.length === 1) { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2), "cancelled_invoice"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2), "cancelled_invoices"); if (t2 == null) t2 = ""; } t2 = A.snackBarCompleter(_this.context, t2, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.CancelInvoicesRequest(t2, t1)); }, $signature: 11 }; A.handleInvoiceAction_closure2.prototype = { call$1(invoice) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!t2._list[t1].clientState.$get$1(0, type$.legacy_InvoiceEntity._as(invoice).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 145 }; A.handleInvoiceAction_closure3.prototype = { call$0() { var t1, t2; A.Navigator_of(this.context, false).pop$0(0); t1 = this.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; A.editEntity(null, t2._list[t1].clientState.$get$1(0, this.invoice.clientId), true, null); }, $signature: 1 }; A.handleInvoiceAction_closure4.prototype = { call$1(_) { var _this = this, t1 = _this.invoiceIds, t2 = _this.localization; if (t1.length === 1) t2 = t2.get$emailedInvoice(); else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "emailed_invoices"); if (t2 == null) t2 = ""; } t2 = A.snackBarCompleter(_this.context, t2, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.BulkEmailInvoicesRequest(t2, t1)); }, $signature: 11 }; A.handleInvoiceAction_closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleInvoiceAction_closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleInvoiceAction_closure7.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_purchaseOrder; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleInvoiceAction_closure8.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_recurringInvoice; return b; }, $signature: 6 }; A.handleInvoiceAction_closure9.prototype = { call$1(b) { var t2, t3, t1 = this.invoice.clientId; b.get$_payment_model$_$this()._payment_model$_clientId = t1; t1 = b.get$invoices(); t2 = J.where$1$ax(this.invoices, new A.handleInvoiceAction__closure()); t3 = t2.$ti._eval$1("MappedIterable<1,PaymentableEntity*>"); t1.addAll$1(0, A.List_List$of(new A.MappedIterable(t2, new A.handleInvoiceAction__closure0(), t3), true, t3._eval$1("Iterable.E"))); return b; }, $signature: 44 }; A.handleInvoiceAction__closure.prototype = { call$1(invoice) { type$.legacy_InvoiceEntity._as(invoice); return !(invoice.entityType === B.EntityType_invoice && invoice.statusId === "4"); }, $signature: 171 }; A.handleInvoiceAction__closure0.prototype = { call$1(invoice) { var t1 = invoice.id, t2 = invoice.partial; if (!(t2 !== 0)) t2 = invoice.statusId !== "1" ? invoice.balance : invoice.amount; return A.PaymentableEntity_PaymentableEntity(t2, null, t1); }, $signature: 717 }; A.handleInvoiceAction_closure10.prototype = { call$1(_) { return this.response.bodyBytes; }, $signature: 246 }; A._viewInvoiceList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/invoice"; next.call$1(type$.legacy_ViewInvoiceList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewInvoiceList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewInvoiceList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._viewInvoice_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewInvoice_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/invoice/view")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._editInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var _s13_ = "/invoice/edit"; next.call$1(type$.legacy_EditInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._showEmailInvoice_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showEmailInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailInvoice_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailInvoice._as(dynamicAction); next.call$1(dynamicAction); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/invoice/email")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._showPdfInvoice_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfInvoice_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/invoice/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._cancelInvoices_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_CancelInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_cancelInvoice).then$1$1(0, new A._cancelInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new A._cancelInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._cancelInvoices__closure.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.CancelInvoicesSuccess(invoices)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._cancelInvoices__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.CancelInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._archiveInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_ArchiveInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._archiveInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].invoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._archiveInvoice__closure0.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._archiveInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_DeleteInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._deleteInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].invoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._deleteInvoice__closure0.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.DeleteInvoicesSuccess(invoices)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._deleteInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_RestoreInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._restoreInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].invoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._restoreInvoice__closure0.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.RestoreInvoicesSuccess(invoices)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._restoreInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._markInvoiceSent_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkInvoicesSentRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_markSent).then$1$1(0, new A._markInvoiceSent__closure(store, dynamicAction), type$.Null).catchError$1(new A._markInvoiceSent__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markInvoiceSent__closure.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.MarkInvoicesSentSuccess(invoices)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markInvoiceSent__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkInvoicesSentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._markInvoicePaid_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkInvoicesPaidRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_markPaid).then$1$1(0, new A._markInvoicePaid__closure(store, dynamicAction), type$.Null).catchError$1(new A._markInvoicePaid__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markInvoicePaid__closure.prototype = { call$1(invoices) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.MarkInvoicesPaidSuccess(invoices)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markInvoicePaid__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkInvoicesPaidFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._downloadInvoices_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DownloadInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_bulkDownload).then$1$1(0, new A._downloadInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new A._downloadInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._downloadInvoices__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.DownloadInvoicesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._downloadInvoices__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DownloadInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._emailInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, origInvoice; type$.legacy_EmailInvoiceRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].invoiceState.map; t2 = dynamicAction.invoiceId; origInvoice = t1._map$_map.$index(0, t2); this.repository.emailInvoice$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), origInvoice, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new A._emailInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._emailInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._emailInvoice__closure.prototype = { call$1(invoice) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.EmailInvoiceSuccess(invoice)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._emailInvoice__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.EmailInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._bulkEmailInvoices_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_BulkEmailInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_sendEmail).then$1$1(0, new A._bulkEmailInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new A._bulkEmailInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._bulkEmailInvoices__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.BulkEmailInvoicesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._bulkEmailInvoices__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.BulkEmailInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var updatedInvoice; type$.legacy_SaveInvoiceRequest._as(dynamicAction); updatedInvoice = dynamicAction.invoice.rebuild$1(new A._saveInvoice__closure(dynamicAction)); this.repository.saveData$3$action(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), updatedInvoice, dynamicAction.entityAction).then$1$1(0, new A._saveInvoice__closure0(dynamicAction, store), type$.Null).catchError$1(new A._saveInvoice__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveInvoice__closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.invoice.lineItems._list; t1.replace$1(0, new A.WhereIterable(t2, new A._saveInvoice___closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); return b; }, $signature: 6 }; A._saveInvoice___closure.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._saveInvoice__closure0.prototype = { call$1(invoice) { var t1 = this.action, t2 = this.store; if (t1.invoice.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddInvoiceSuccess(invoice)); else t2.get$_dispatchers()[0].call$1(new A.SaveInvoiceSuccess(invoice)); t2.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, invoice); }, $signature: 64 }; A._saveInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadInvoice_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadInvoice._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadInvoiceRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceId).then$1$1(0, new A._loadInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadInvoice__closure.prototype = { call$1(invoice) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadInvoiceSuccess(invoice)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 64 }; A._loadInvoice__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadInvoiceFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadInvoices_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3, t4, t5; type$.legacy_LoadInvoices._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadInvoicesRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$createdAtLimit(); t4 = state.get$filterDeletedClients(); t5 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$5(t1, t2, t3, t4, t5).then$1$1(0, new A._loadInvoices__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadInvoices__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadInvoicesSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadInvoices(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoices()); }, $signature: 231 }; A._loadInvoices__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadInvoicesFailure(error)); }, $signature: 3 }; A._saveDocument_closure10.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveInvoiceDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoice, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure21(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure22(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveInvoiceDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure21.prototype = { call$1(invoice) { this.store.get$_dispatchers()[0].call$1(new A.SaveInvoiceSuccess(invoice)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._saveDocument__closure22.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveInvoiceDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.invoiceUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$invoiceListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer21().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._invoice_model$_$v = t1; t1 = $.$get$editingItemIndexReducer0().call$2(t2.editingItemIndex, t3); b.get$_invoice_state$_$this()._invoice_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer21().call$2(t2.selectedId, t3); b.get$_invoice_state$_$this()._invoice_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer21().call$2(t2.forceSelected, t3); b.get$_invoice_state$_$this()._invoice_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer10().call$2(t2.tabIndex, t3); b.get$_invoice_state$_$this()._invoice_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer3().call$2(t2.historyActivityId, t3); b.get$_invoice_state$_$this()._invoice_state$_historyActivityId = t3; return b; }, $signature: 1334 }; A.forceSelectedReducer_closure167.prototype = { call$2(completer, action) { return true; }, $signature: 1335 }; A.forceSelectedReducer_closure168.prototype = { call$2(completer, action) { return false; }, $signature: 1336 }; A.forceSelectedReducer_closure169.prototype = { call$2(completer, action) { return false; }, $signature: 1337 }; A.forceSelectedReducer_closure170.prototype = { call$2(completer, action) { return false; }, $signature: 1338 }; A.forceSelectedReducer_closure171.prototype = { call$2(completer, action) { return false; }, $signature: 1339 }; A.forceSelectedReducer_closure172.prototype = { call$2(completer, action) { return false; }, $signature: 1340 }; A.forceSelectedReducer_closure173.prototype = { call$2(completer, action) { return false; }, $signature: 1341 }; A.forceSelectedReducer_closure174.prototype = { call$2(completer, action) { return false; }, $signature: 1342 }; A.tabIndexReducer_closure21.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1343 }; A.tabIndexReducer_closure22.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.historyActivityIdReducer_closure3.prototype = { call$2(index, action) { return action.activityId; }, $signature: 622 }; A.editingItemIndexReducer_closure1.prototype = { call$2(index, action) { return action.invoiceItemIndex; }, $signature: 1345 }; A.editingItemIndexReducer_closure2.prototype = { call$2(index, action) { return action.invoiceItemIndex; }, $signature: 1346 }; A.selectedIdReducer_closure335.prototype = { call$2(completer, action) { return ""; }, $signature: 1347 }; A.selectedIdReducer_closure336.prototype = { call$2(completer, action) { return ""; }, $signature: 1348 }; A.selectedIdReducer_closure337.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_invoice ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure338.prototype = { call$2(selectedId, action) { return action.invoiceId; }, $signature: 1349 }; A.selectedIdReducer_closure339.prototype = { call$2(selectedId, action) { return action.invoice.id; }, $signature: 1350 }; A.selectedIdReducer_closure340.prototype = { call$2(selectedId, action) { return action.invoice.id; }, $signature: 1351 }; A.selectedIdReducer_closure341.prototype = { call$2(selectedId, action) { return action.invoice.id; }, $signature: 622 }; A.selectedIdReducer_closure342.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure343.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure344.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1352 }; A.selectedIdReducer_closure345.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1353 }; A.selectedIdReducer_closure346.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1354 }; A.selectedIdReducer_closure347.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1355 }; A.selectedIdReducer_closure348.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1356 }; A.selectedIdReducer_closure349.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1357 }; A.selectedIdReducer_closure350.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1358 }; A.selectedIdReducer_closure351.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1359 }; A.selectedIdReducer_closure352.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_invoice ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure353.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_invoice ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure114.prototype = { call$2(invoice, action) { return action.invoice.rebuild$1(new A.editingReducer__closure51()); }, $signature: 1360 }; A.editingReducer__closure51.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure115.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure50()); }, $signature: 621 }; A.editingReducer__closure50.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure116.prototype = { call$2(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, $signature: 1362 }; A.editingReducer_closure117.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure49()); }, $signature: 620 }; A.editingReducer__closure49.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure118.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure48()); }, $signature: 619 }; A.editingReducer__closure48.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure119.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure47(action.client)); }, $signature: 1365 }; A.editingReducer__closure47.prototype = { call$1(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_ClientContactEntity); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, A.List_List$of(new A.MappedListIterable(t1, new A.editingReducer___closure3(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.editingReducer___closure3.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.editingReducer_closure120.prototype = { call$2(invoices, action) { return J.$index$asx(action.invoices, 0); }, $signature: 1366 }; A.editingReducer_closure121.prototype = { call$2(invoices, action) { return J.$index$asx(action.invoices, 0); }, $signature: 1367 }; A.editingReducer_closure122.prototype = { call$2(invoices, action) { return J.$index$asx(action.invoices, 0); }, $signature: 1368 }; A.editingReducer_closure123.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure46(action)); }, $signature: 1369 }; A.editingReducer__closure46.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? A.InvitationEntity_InvitationEntity(t2.contact.id, null) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A.editingReducer_closure124.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure45(action)); }, $signature: 1370 }; A.editingReducer__closure45.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addInvoiceItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), this.item); return b; }, $signature: 6 }; A._addInvoiceItems_closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.action.lineItems); return b; }, $signature: 6 }; A._removeInvoiceItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 6 }; A._updateInvoiceItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2.index] = t2.invoiceItem; return b; }, $signature: 6 }; A._viewInvoiceList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterInvoicesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterInvoicesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoicesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterInvoicesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoicesByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterInvoicesByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoicesByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterInvoicesByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoicesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterInvoicesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoicesByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterInvoicesByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterInvoices_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.invoiceListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortInvoices_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure21.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure21.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure21.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure21.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._markInvoicesSentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._markInvoicesPaidSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._cancelInvoicesSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._archiveInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._deleteInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._emailInvoiceSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.invoice; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 297 }; A._restoreInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 222 }; A._addInvoice_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.invoice, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addInvoice__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 297 }; A._addInvoice__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A._updateInvoice_closure.prototype = { call$1(b) { b.get$map(b).$indexSet(0, J.get$id$x(this.action.get$invoice()), this.invoice.rebuild$1(new A._updateInvoice__closure())); return b; }, $signature: 297 }; A._updateInvoice__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A.memoizedInvoiceQuoteSelector_closure.prototype = { call$2(invoice, quoteMap) { return A.invoiceQuoteSelector(invoice, quoteMap); }, $signature: 1373 }; A.invoiceQuoteSelector_closure.prototype = { call$2(quoteId, quote) { if (quote.invoiceId === this.invoice.id) this._box_0.invoiceQuote = quote; }, $signature: 49 }; A.invoiceContactSelector_closure.prototype = { call$1(invitation) { return invitation.clientContactId; }, $signature: 313 }; A.invoiceContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, $signature: 144 }; A.memoizedDropdownInvoiceList_closure.prototype = { call$8(invoiceMap, clientMap, vendorMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix) { return A.dropdownInvoiceSelector(invoiceMap, clientMap, vendorMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix); }, $signature: 1374 }; A.dropdownInvoiceSelector_closure.prototype = { call$1(invoiceId) { var t2, _this = this, invoice = _this.invoiceMap._map$_map.$index(0, invoiceId), t1 = _this.excludedIds; if ((t1 && B.JSArray_methods).contains$1(t1, invoiceId)) return false; t1 = _this.clientId; if (t1 != null && t1.length !== 0 && invoice.clientId !== t1) return false; t1 = invoice.clientId; t2 = _this.clientMap._map$_map; if (t2.containsKey$1(0, t1)) { t1 = t2.$index(0, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = true; if (t1) return false; return !invoice.get$isArchived() && !invoice.isDeleted && invoice.get$isUnpaid() && !invoice.get$isCancelledOrReversed(); }, $signature: 16 }; A.dropdownInvoiceSelector_closure0.prototype = { call$2(invoiceAId, invoiceBId) { var _this = this, t1 = _this.invoiceMap._map$_map; return t1.$index(0, invoiceAId).compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, invoiceBId), _this.recurringPrefix, false, "number", _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedFilteredInvoiceList_closure.prototype = { call$9(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, paymentMap, invoiceListState, userMap, recurringPrefix) { return A.filteredInvoicesSelector(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, paymentMap, invoiceListState, userMap, recurringPrefix); }, $signature: 1375 }; A.filteredInvoicesSelector_closure.prototype = { call$2(paymentId, payment) { B.JSArray_methods.forEach$1(payment.get$invoicePaymentables(), new A.filteredInvoicesSelector__closure0(this.invoicePaymentMap, payment)); }, $signature: 205 }; A.filteredInvoicesSelector__closure0.prototype = { call$1(invoicePaymentable) { var t1 = this.invoicePaymentMap, t2 = invoicePaymentable.invoiceId, paymentIds = t1.$index(0, t2); if (paymentIds == null) paymentIds = A._setArrayType([], type$.JSArray_legacy_String); paymentIds.push(this.payment.id); t1.$indexSet(0, t2, paymentIds); }, $signature: 244 }; A.filteredInvoicesSelector_closure0.prototype = { call$1(invoiceId) { var _this = this, t1 = {}, invoice = _this.invoiceMap._map$_map.$index(0, invoiceId), t2 = invoice.clientId, client = _this.clientMap._map$_map.$index(0, t2); if (client == null) client = A.ClientEntity_ClientEntity(null, t2, null, null); if (invoice.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t2 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t2 = false; if (t2) return false; t2 = _this.filterEntityType; if (t2 === B.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t2 === B.EntityType_user && invoice.assignedUserId != _this.filterEntityId) return false; else if (t2 === B.EntityType_recurringInvoice && invoice.recurringId != _this.filterEntityId) return false; else if (t2 === B.EntityType_subscription && invoice.subscriptionId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_design && invoice.designId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_project && invoice.projectId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_quote && invoice.invoiceId != _this.filterEntityId) return false; else if (t2 === B.EntityType_payment) { t1.isMatch = false; t2 = _this.invoicePaymentMap.$index(0, invoiceId); if (t2 == null) t2 = A._setArrayType([], type$.JSArray_legacy_String); B.JSArray_methods.forEach$1(t2, new A.filteredInvoicesSelector__closure(t1, _this.filterEntityId)); if (!t1.isMatch) return false; } t1 = _this.invoiceListState; if (!invoice.matchesStates$1(t1.stateFilters)) return false; if (!invoice.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!invoice.matchesFilter$1(t2) && !client.matchesNameOrEmail$1(t2)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, invoice.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredInvoicesSelector__closure.prototype = { call$1(paymentId) { if (this.filterEntityId == paymentId) this._box_0.isMatch = true; }, $signature: 11 }; A.filteredInvoicesSelector_closure1.prototype = { call$2(invoiceAId, invoiceBId) { var t3, t4, _this = this, t1 = _this.invoiceMap._map$_map, t2 = t1.$index(0, invoiceAId); t1 = t1.$index(0, invoiceBId); t3 = _this.invoiceListState; t4 = t3.sortField; return J.compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1, _this.recurringPrefix, t3.sortAscending, t4, _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedInvoiceStatsForClient_closure.prototype = { call$2(clientId, invoiceMap) { return A.invoiceStatsForClient(clientId, invoiceMap); }, $signature: 87 }; A.invoiceStatsForClient_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.clientId === this.clientId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedInvoiceStatsForDesign_closure.prototype = { call$2(designId, invoiceMap) { return A.invoiceStatsForDesign(designId, invoiceMap); }, $signature: 87 }; A.invoiceStatsForDesign_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.designId === this.designId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedInvoiceStatsForSubscription_closure.prototype = { call$2(subscriptionId, invoiceMap) { return A.invoiceStatsForSubscription(subscriptionId, invoiceMap); }, $signature: 87 }; A.invoiceStatsForSubscription_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.subscriptionId === this.subscriptionId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedInvoiceStatsForProject_closure.prototype = { call$2(projectId, invoiceMap) { return A.invoiceStatsForProject(projectId, invoiceMap); }, $signature: 87 }; A.invoiceStatsForProject_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.projectId === this.projectId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedInvoiceStatsForUser_closure.prototype = { call$2(userId, invoiceMap) { return A.invoiceStatsForUser(userId, invoiceMap); }, $signature: 87 }; A.invoiceStatsForUser_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.assignedUserId == this.userId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 49 }; A.InvoiceState.prototype = { $get$1(_, invoiceId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, invoiceId)) return t1.$index(0, invoiceId); else return A.InvoiceEntity_InvoiceEntity(_null, _null, invoiceId, _null, _null, _null); }, loadInvoices$1(clients) { return this.rebuild$1(new A.InvoiceState_loadInvoices_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.InvoiceState_loadInvoices_closure0(), new A.InvoiceState_loadInvoices_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.InvoiceState_loadInvoices_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.InvoiceState_loadInvoices_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A.InvoiceState_loadInvoices_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 297 }; A.InvoiceUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$InvoiceStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.InvoiceStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._invoice_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_n67)); break; case "list": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._invoice_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Js5; }, get$wireName() { return "InvoiceState"; } }; A._$InvoiceUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.InvoiceUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_invoice_state$_$this(); t4 = t3._invoice_state$_editing; if (t4 == null) { t4 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t4); t3._invoice_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._invoice_model$_$v = t4; break; case "listUIState": t3 = result.get$_invoice_state$_$this(); t4 = t3._invoice_state$_listUIState; t3 = t4 == null ? t3._invoice_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_invoice_state$_$this()._invoice_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_invoice_state$_$this()._invoice_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_invoice_state$_$this()._invoice_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kMT; }, get$wireName() { return "InvoiceUIState"; } }; A._$InvoiceState.prototype = { rebuild$1(updates) { var t1 = new A.InvoiceStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._invoice_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.InvoiceState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._invoice_state$__hashCode; return t1 == null ? _this._invoice_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.InvoiceStateBuilder.prototype = { get$map(_) { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_map; return t2 == null ? t1._invoice_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list(_) { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_list; return t2 == null ? t1._invoice_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_invoice_state$_$this() { var t1, t2, _this = this, $$v = _this._invoice_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._invoice_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._invoice_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._invoice_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._invoice_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$InvoiceState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("InvoiceState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._invoice_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$InvoiceUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.InvoiceUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._invoice_state$__hashCode; return t1 == null ? _this._invoice_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.InvoiceUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_editing; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); t1._invoice_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_listUIState; return t2 == null ? t1._invoice_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_invoice_state$_$this() { var t1, t2, _this = this, $$v = _this._invoice_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._invoice_state$_editing = t1; _this._invoice_state$_editingItemIndex = $$v.editingItemIndex; _this._invoice_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._invoice_state$_listUIState = t2; _this._invoice_state$_selectedId = $$v.selectedId; _this._invoice_state$_forceSelected = $$v.forceSelected; _this._invoice_state$_tabIndex = $$v.tabIndex; _this._invoice_state$_saveCompleter = $$v.saveCompleter; _this._invoice_state$_cancelCompleter = $$v.cancelCompleter; _this._invoice_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s14_ = "InvoiceUIState", _$result = null; try { _$result0 = _this._invoice_state$_$v; if (_$result0 == null) { t1 = _this._invoice_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_invoice_state$_$this()._invoice_state$_editingItemIndex; t3 = _this.get$_invoice_state$_$this()._invoice_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_invoice_state$_$this()._invoice_state$_selectedId; t6 = _this.get$_invoice_state$_$this()._invoice_state$_forceSelected; t7 = _this.get$_invoice_state$_$this()._invoice_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t8 = _this.get$_invoice_state$_$this()._invoice_state$_saveCompleter; _$result0 = A._$InvoiceUIState$_(_this.get$_invoice_state$_$this()._invoice_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._invoice_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._invoice_state$_$v = t1; return _$result; } }; A._InvoiceUIState_Object_EntityUIState.prototype = {}; A.ViewPaymentList.prototype = {$isPersistUI: 1}; A.ViewPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$payment() { return this.payment; } }; A.ViewRefundPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$payment() { return this.payment; } }; A.UpdatePayment.prototype = {$isPersistUI: 1, get$payment() { return this.payment; } }; A.LoadPayment.prototype = {}; A.LoadPayments.prototype = {}; A.LoadPaymentRequest.prototype = {$isStartLoading: 1}; A.LoadPaymentFailure.prototype = { toString$0(_) { return "LoadPaymentFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPaymentSuccess.prototype = { toString$0(_) { return "LoadPaymentSuccess{payment: " + A.S(this.payment) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$payment() { return this.payment; } }; A.LoadPaymentsRequest.prototype = {$isStartLoading: 1}; A.LoadPaymentsFailure.prototype = { toString$0(_) { return "LoadPaymentsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPaymentsSuccess.prototype = { toString$0(_) { return "LoadPaymentsSuccess{payments: " + A.S(this.payments) + "}"; }, $isStopLoading: 1 }; A.SavePaymentRequest.prototype = {$isStartSaving: 1, get$payment() { return this.payment; } }; A.SavePaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment() { return this.payment; } }; A.AddPaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment() { return this.payment; } }; A.SavePaymentFailure.prototype = {$isStopSaving: 1}; A.RefundPaymentRequest.prototype = {$isStartSaving: 1, get$payment() { return this.payment; } }; A.RefundPaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment() { return this.payment; } }; A.RefundPaymentFailure.prototype = {$isStopSaving: 1}; A.ArchivePaymentsRequest.prototype = {$isStartSaving: 1}; A.ArchivePaymentsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchivePaymentsFailure.prototype = {$isStopSaving: 1}; A.DeletePaymentsRequest.prototype = {$isStartSaving: 1}; A.DeletePaymentsSuccess.prototype = {$isStopSaving: 1}; A.DeletePaymentsFailure.prototype = {$isStopSaving: 1}; A.RestorePaymentsRequest.prototype = {$isStartSaving: 1}; A.RestorePaymentsSuccess.prototype = {$isStopSaving: 1}; A.RestorePaymentsFailure.prototype = {$isStopSaving: 1}; A.EmailPaymentRequest.prototype = {$isStartSaving: 1}; A.EmailPaymentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.FilterPayments.prototype = {$isPersistUI: 1}; A.SortPayments.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterPaymentsByState.prototype = {$isPersistUI: 1}; A.FilterPaymentsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartPaymentMultiselect.prototype = {}; A.AddToPaymentMultiselect.prototype = {}; A.RemoveFromPaymentMultiselect.prototype = {}; A.ClearPaymentMultiselect.prototype = {}; A.handlePaymentAction_closure.prototype = { call$1(payment) { return payment.get$id(payment); }, $signature: 41 }; A.handlePaymentAction_closure0.prototype = { call$1(duration) { A.editEntity(null, this._box_0.payment.rebuild$1(new A.handlePaymentAction__closure1()), true, null); }, $signature: 36 }; A.handlePaymentAction__closure1.prototype = { call$1(b) { b.get$_payment_model$_$this()._isApplying = true; return b; }, $signature: 44 }; A.handlePaymentAction_closure1.prototype = { call$1(duration) { var t1 = this._box_0; if (t1.payment.get$invoicePaymentables().length === 1) t1.payment = t1.payment.rebuild$1(new A.handlePaymentAction__closure(t1)); t1 = t1.payment.rebuild$1(new A.handlePaymentAction__closure0(this.company)); this.store.get$_dispatchers()[0].call$1(new A.ViewRefundPayment(t1)); }, $signature: 36 }; A.handlePaymentAction__closure.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this._box_0, t3 = t2.payment.get$invoiceId(); t3 = A.PaymentableEntity_PaymentableEntity(t2.payment.get$completedAmount(), null, t3); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t3); return b; }, $signature: 44 }; A.handlePaymentAction__closure0.prototype = { call$1(b) { var t1 = this.company.settings.clientManualPaymentNotification; b.get$_payment_model$_$this()._sendEmail = t1; return b; }, $signature: 44 }; A._editPayment_closure.prototype = { call$3(store, dynamicAction, next) { var t1, _s13_ = "/payment/edit"; type$.legacy_EditPayment._as(dynamicAction); next.call$1(dynamicAction); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile || dynamicAction.payment.isApplying !== true) { store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); } else { t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, false, new A._editPayment__closure(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_PaymentEditScreen); } }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._editPayment__closure.prototype = { call$1(context) { return new A.PaymentEditScreen(null); }, $signature: 797 }; A._viewRefundPayment_closure.prototype = { call$3(store, dynamicAction, next) { var t1, _s15_ = "/payment/refund"; next.call$1(type$.legacy_ViewRefundPayment._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) { store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s15_)); $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s15_, type$.legacy_Object); } else { t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, false, new A._viewRefundPayment__closure(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_PaymentRefundScreen); } }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewRefundPayment__closure.prototype = { call$1(context) { return new A.PaymentRefundScreen(null); }, $signature: 796 }; A._viewPayment_closure.prototype = { call$3(store, action, next) { return this.$call$body$_viewPayment_closure(store, action, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewPayment_closure(store, action, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(action); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/payment/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/payment/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewPaymentList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/payment"; next.call$1(type$.legacy_ViewPaymentList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewPaymentList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewPaymentList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archivePayment_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_ArchivePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = A.List_List$of(new A.MappedListIterable(t1, new A._archivePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archivePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archivePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archivePayment__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentState.map._map$_map.$index(0, id); }, $signature: 218 }; A._archivePayment__closure0.prototype = { call$1(payments) { this.store.get$_dispatchers()[0].call$1(new A.ArchivePaymentsSuccess(payments)); this.action.completer.complete$1(0, null); }, $signature: 309 }; A._archivePayment__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchivePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deletePayment_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_DeletePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = A.List_List$of(new A.MappedListIterable(t1, new A._deletePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deletePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deletePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deletePayment__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentState.map._map$_map.$index(0, id); }, $signature: 218 }; A._deletePayment__closure0.prototype = { call$1(payments) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.DeletePaymentsSuccess(payments)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 309 }; A._deletePayment__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeletePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restorePayment_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_RestorePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = A.List_List$of(new A.MappedListIterable(t1, new A._restorePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restorePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restorePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restorePayment__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentState.map._map$_map.$index(0, id); }, $signature: 218 }; A._restorePayment__closure0.prototype = { call$1(payments) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.RestorePaymentsSuccess(payments)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 309 }; A._restorePayment__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestorePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._savePayment_closure.prototype = { call$3(store, dynamicAction, next) { var payment, sendEmail; type$.legacy_SavePaymentRequest._as(dynamicAction); payment = dynamicAction.payment; sendEmail = payment.get$isNew() && payment.sendEmail; this.repository.saveData$3$sendEmail(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), payment, sendEmail).then$1$1(0, new A._savePayment__closure(dynamicAction, store), type$.Null).catchError$1(new A._savePayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._savePayment__closure.prototype = { call$1(payment) { var t1 = this.action, t2 = this.store; if (t1.payment.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddPaymentSuccess(payment)); else t2.get$_dispatchers()[0].call$1(new A.SavePaymentSuccess(payment)); t2.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, payment); }, $signature: 148 }; A._savePayment__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SavePaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._refundPayment_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_RefundPaymentRequest._as(dynamicAction); this.repository.refundPayment$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.payment).then$1$1(0, new A._refundPayment__closure(store, dynamicAction), type$.Null).catchError$1(new A._refundPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._refundPayment__closure.prototype = { call$1(payment) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SavePaymentSuccess(payment)); t1.get$_dispatchers()[0].call$1(new A.RefundPaymentSuccess(payment)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, payment); }, $signature: 148 }; A._refundPayment__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RefundPaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._emailPayment_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_EmailPaymentRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.paymentIds, B.EntityAction_sendEmail).then$1$1(0, new A._emailPayment__closure(store, dynamicAction), type$.Null).catchError$1(new A._emailPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._emailPayment__closure.prototype = { call$1(payments) { this.store.get$_dispatchers()[0].call$1(new A.EmailPaymentSuccess()); this.action.completer.complete$1(0, null); }, $signature: 309 }; A._emailPayment__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SavePaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPayment_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadPayment._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadPaymentRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.paymentId).then$1$1(0, new A._loadPayment__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPayment__closure.prototype = { call$1(payment) { this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentSuccess(payment)); this.action.completer.complete$1(0, null); }, $signature: 148 }; A._loadPayment__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPayments_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3, t4, t5; type$.legacy_LoadPayments._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadPaymentsRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$createdAtLimit(); t4 = state.get$filterDeletedClients(); t5 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$5(t1, t2, t3, t4, t5).then$1$1(0, new A._loadPayments__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadPayments__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPayments__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadPaymentsSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadPayments(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadQuotes(null, 1)); }, $signature: 1379 }; A._loadPayments__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentsFailure(error)); }, $signature: 3 }; A.paymentUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$paymentListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer0().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._payment_model$_$v = t1; t1 = $.$get$selectedIdReducer0().call$2(t2.selectedId, t3); b.get$_payment_state$_$this()._payment_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer0().call$2(t2.forceSelected, t3); b.get$_payment_state$_$this()._payment_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer0().call$2(t2.tabIndex, t3); b.get$_payment_state$_$this()._payment_state$_tabIndex = t3; return b; }, $signature: 1380 }; A.forceSelectedReducer_closure7.prototype = { call$2(completer, action) { return true; }, $signature: 1381 }; A.forceSelectedReducer_closure8.prototype = { call$2(completer, action) { return false; }, $signature: 1382 }; A.forceSelectedReducer_closure9.prototype = { call$2(completer, action) { return false; }, $signature: 1383 }; A.forceSelectedReducer_closure10.prototype = { call$2(completer, action) { return false; }, $signature: 1384 }; A.forceSelectedReducer_closure11.prototype = { call$2(completer, action) { return false; }, $signature: 1385 }; A.forceSelectedReducer_closure12.prototype = { call$2(completer, action) { return false; }, $signature: 1386 }; A.forceSelectedReducer_closure13.prototype = { call$2(completer, action) { return false; }, $signature: 1387 }; A.forceSelectedReducer_closure14.prototype = { call$2(completer, action) { return false; }, $signature: 1388 }; A.tabIndexReducer_closure1.prototype = { call$2(completer, action) { return action.get$tabIndex(action); }, $signature: 1389 }; A.tabIndexReducer_closure2.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.selectedIdReducer_closure18.prototype = { call$2(completer, action) { return ""; }, $signature: 1390 }; A.selectedIdReducer_closure19.prototype = { call$2(completer, action) { return ""; }, $signature: 1391 }; A.selectedIdReducer_closure20.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_payment ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure21.prototype = { call$2(selectedId, action) { return action.paymentId; }, $signature: 1392 }; A.selectedIdReducer_closure22.prototype = { call$2(selectedId, action) { return action.payment.id; }, $signature: 1393 }; A.selectedIdReducer_closure23.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure24.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure25.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1394 }; A.selectedIdReducer_closure26.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1395 }; A.selectedIdReducer_closure27.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1396 }; A.selectedIdReducer_closure28.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1397 }; A.selectedIdReducer_closure29.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1398 }; A.selectedIdReducer_closure30.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1399 }; A.selectedIdReducer_closure31.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1400 }; A.selectedIdReducer_closure32.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_payment ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure33.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_payment ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure10.prototype = { call$2(payments, action) { return J.$index$asx(action.payments, 0); }, $signature: 1401 }; A.editingReducer_closure11.prototype = { call$2(payments, action) { return J.$index$asx(action.payments, 0); }, $signature: 1402 }; A.editingReducer_closure12.prototype = { call$2(payments, action) { return J.$index$asx(action.payments, 0); }, $signature: 1403 }; A.editingReducer_closure13.prototype = { call$2(payment, action) { return action.payment.rebuild$1(new A.editingReducer__closure6()); }, $signature: 1404 }; A.editingReducer__closure6.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_isChanged = true; return b; }, $signature: 44 }; A._viewPaymentList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterPaymentsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterPaymentsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPayments_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.paymentListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortPayments_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure0.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure0.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure0.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure0.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archivePaymentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 398 }; A._deletePaymentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 398 }; A._restorePaymentSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 398 }; A._addPayment_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.payment, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 316 }; A._updatePayment_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.payment; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 316 }; A._setLoadedPayment_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.payment; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 316 }; A.memoizedPaymentsByInvoice_closure.prototype = { call$3(invoiceId, paymentMap, paymentList) { return A.paymentsByInvoiceSelector(invoiceId, paymentMap, paymentList); }, $signature: 611 }; A.paymentsByInvoiceSelector_closure.prototype = { call$1(paymentId) { return this.paymentMap._map$_map.$index(0, paymentId); }, $signature: 218 }; A.paymentsByInvoiceSelector_closure0.prototype = { call$1(payment) { var t1 = payment.paymentables._list; return new A.MappedListIterable(t1, new A.paymentsByInvoiceSelector__closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>")).contains$1(0, this.invoiceId) && !payment.isDeleted; }, $signature: 482 }; A.paymentsByInvoiceSelector__closure.prototype = { call$1(p) { return p.invoiceId; }, $signature: 190 }; A.memoizedPaymentsByCredit_closure.prototype = { call$3(invoiceId, paymentMap, paymentList) { return A.paymentsByCreditSelector(invoiceId, paymentMap, paymentList); }, $signature: 611 }; A.paymentsByCreditSelector_closure.prototype = { call$1(paymentId) { return this.paymentMap._map$_map.$index(0, paymentId); }, $signature: 218 }; A.paymentsByCreditSelector_closure0.prototype = { call$1(payment) { var t1 = payment.paymentables._list; return new A.MappedListIterable(t1, new A.paymentsByCreditSelector__closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>")).contains$1(0, this.creditId) && !payment.isDeleted; }, $signature: 482 }; A.paymentsByCreditSelector__closure.prototype = { call$1(p) { return p.creditId; }, $signature: 190 }; A.memoizedFilteredPaymentList_closure.prototype = { call$8(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentTypeMap, paymentListState) { return A.filteredPaymentsSelector(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentTypeMap, paymentListState); }, $signature: 1409 }; A.filteredPaymentsSelector_closure.prototype = { call$1(paymentId) { var t2, client, t3, _this = this, payment = _this.paymentMap._map$_map.$index(0, paymentId), t1 = _this.paymentListState; if (!payment.matchesStates$1(t1.stateFilters)) return false; t2 = payment.clientId; client = _this.clientMap._map$_map.$index(0, t2); if (client == null) client = A.ClientEntity_ClientEntity(null, t2, null, null); if (payment.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t3 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t3 = false; if (t3) return false; t3 = _this.filterEntityType; if (t3 === B.EntityType_client && t2 !== _this.filterEntityId) return false; else if (t3 === B.EntityType_invoice) { t2 = payment.paymentables._list; if (!new A.MappedListIterable(t2, new A.filteredPaymentsSelector__closure(), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String*>")).contains$1(0, _this.filterEntityId)) return false; } else if (t3 === B.EntityType_user && payment.assignedUserId != _this.filterEntityId) return false; else if (t3 === B.EntityType_companyGateway && payment.companyGatewayId !== _this.filterEntityId) return false; t1 = t1.filter; if (!payment.matchesFilter$1(t1) && !client.matchesNameOrEmail$1(t1)) return false; return true; }, $signature: 16 }; A.filteredPaymentsSelector__closure.prototype = { call$1(p) { return p.invoiceId; }, $signature: 190 }; A.filteredPaymentsSelector_closure0.prototype = { call$2(paymentAId, paymentBId) { var _this = this, t1 = _this.paymentMap._map$_map, t2 = _this.paymentListState; return t1.$index(0, paymentAId).compareTo$7$clientMap$invoiceMap$payment$paymentTypeMap$sortAscending$sortField$userMap(0, _this.clientMap, _this.invoiceMap, t1.$index(0, paymentBId), _this.paymentTypeMap, t2.sortAscending, t2.sortField, _this.userMap); }, $signature: 19 }; A.memoizedPaymentStatsForClient_closure.prototype = { call$3(clientId, paymentMap, invoiceMap) { return A.paymentStatsForClient(clientId, paymentMap, invoiceMap); }, $signature: 1410 }; A.paymentStatsForClient_closure.prototype = { call$2(paymentId, payment) { if (payment.clientId === this.clientId) if (!payment.get$isArchived() && !payment.isDeleted) ++this._box_0.countActive; else if (payment.get$isArchived()) ++this._box_0.countArchived; }, $signature: 205 }; A.PaymentState.prototype = { loadPayments$1(clients) { return this.rebuild$1(new A.PaymentState_loadPayments_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.PaymentState_loadPayments_closure0(), new A.PaymentState_loadPayments_closure1(), type$.legacy_String, type$.legacy_PaymentEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.PaymentState_loadPayments_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.PaymentState_loadPayments_closure1.prototype = { call$1(item) { return item; }, $signature: 1411 }; A.PaymentState_loadPayments_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 316 }; A.PaymentUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$PaymentStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_mC7), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.PaymentStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_payment_state$_$this(); t6 = t5._payment_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._payment_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mC7)); break; case "list": t5 = result.get$_payment_state$_$this(); t6 = t5._payment_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._payment_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_UOT; }, get$wireName() { return "PaymentState"; } }; A._$PaymentUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_CxZ0)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.PaymentUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_PaymentEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_payment_state$_$this(); t4 = t3._payment_state$_editing; t3 = t4 == null ? t3._payment_state$_editing = new A.PaymentEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_CxZ0)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._payment_model$_$v = t4; break; case "listUIState": t3 = result.get$_payment_state$_$this(); t4 = t3._payment_state$_listUIState; t3 = t4 == null ? t3._payment_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_state$_$this()._payment_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_state$_$this()._payment_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_state$_$this()._payment_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_HTT; }, get$wireName() { return "PaymentUIState"; } }; A._$PaymentState.prototype = { rebuild$1(updates) { var t1 = new A.PaymentStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._payment_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._payment_state$__hashCode; return t1 == null ? _this._payment_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.PaymentStateBuilder.prototype = { get$map(_) { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_map; return t2 == null ? t1._payment_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentEntity) : t2; }, get$list(_) { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_list; return t2 == null ? t1._payment_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_payment_state$_$this() { var t1, t2, _this = this, $$v = _this._payment_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._payment_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._payment_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._payment_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._payment_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$PaymentState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("PaymentState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$PaymentUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.PaymentUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._payment_state$__hashCode; return t1 == null ? _this._payment_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.PaymentUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_editing; return t2 == null ? t1._payment_state$_editing = new A.PaymentEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_listUIState; return t2 == null ? t1._payment_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_payment_state$_$this() { var t1, t2, _this = this, $$v = _this._payment_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.PaymentEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._payment_model$_$v = t1; t1 = t2; } _this._payment_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._payment_state$_listUIState = t2; _this._payment_state$_selectedId = $$v.selectedId; _this._payment_state$_forceSelected = $$v.forceSelected; _this._payment_state$_tabIndex = $$v.tabIndex; _this._payment_state$_saveCompleter = $$v.saveCompleter; _this._payment_state$_cancelCompleter = $$v.cancelCompleter; _this._payment_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "PaymentUIState", _$result = null; try { _$result0 = _this._payment_state$_$v; if (_$result0 == null) { t1 = _this._payment_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_payment_state$_$this()._payment_state$_selectedId; t4 = _this.get$_payment_state$_$this()._payment_state$_forceSelected; t5 = _this.get$_payment_state$_$this()._payment_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_payment_state$_$this()._payment_state$_saveCompleter; _$result0 = A._$PaymentUIState$_(_this.get$_payment_state$_$this()._payment_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._payment_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_state$_$v = t1; return _$result; } }; A._PaymentUIState_Object_EntityUIState.prototype = {}; A.ViewPaymentTermList.prototype = {$isPersistUI: 1}; A.ViewPaymentTerm.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$paymentTermId() { return this.paymentTermId; } }; A.EditPaymentTerm.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$paymentTerm() { return this.paymentTerm; } }; A.UpdatePaymentTerm.prototype = {$isPersistUI: 1, get$paymentTerm() { return this.paymentTerm; } }; A.LoadPaymentTermRequest.prototype = {$isStartLoading: 1}; A.LoadPaymentTermFailure.prototype = { toString$0(_) { return "LoadPaymentTermFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPaymentTermSuccess.prototype = { toString$0(_) { return "LoadPaymentTermSuccess{paymentTerm: " + A.S(this.paymentTerm) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$paymentTerm() { return this.paymentTerm; } }; A.LoadPaymentTermsRequest.prototype = {$isStartLoading: 1}; A.LoadPaymentTermsFailure.prototype = { toString$0(_) { return "LoadPaymentTermsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPaymentTermsSuccess.prototype = { toString$0(_) { return "LoadPaymentTermsSuccess{paymentTerms: " + A.S(this.paymentTerms) + "}"; }, $isStopLoading: 1 }; A.SavePaymentTermRequest.prototype = {$isStartSaving: 1, get$paymentTerm() { return this.paymentTerm; } }; A.SavePaymentTermSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$paymentTerm() { return this.paymentTerm; } }; A.AddPaymentTermSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$paymentTerm() { return this.paymentTerm; } }; A.SavePaymentTermFailure.prototype = {$isStopSaving: 1}; A.ArchivePaymentTermsRequest.prototype = {$isStartSaving: 1}; A.ArchivePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchivePaymentTermsFailure.prototype = {$isStopSaving: 1}; A.DeletePaymentTermsRequest.prototype = {$isStartSaving: 1}; A.DeletePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeletePaymentTermsFailure.prototype = {$isStopSaving: 1}; A.RestorePaymentTermsRequest.prototype = {$isStartSaving: 1}; A.RestorePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestorePaymentTermsFailure.prototype = {$isStopSaving: 1}; A.FilterPaymentTerms.prototype = {$isPersistUI: 1}; A.SortPaymentTerms.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterPaymentTermsByState.prototype = {$isPersistUI: 1}; A.FilterPaymentTermsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentTermsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentTermsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPaymentTermsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handlePaymentTermAction_closure.prototype = { call$1(paymentTerm) { return paymentTerm.get$id(paymentTerm); }, $signature: 41 }; A.StartPaymentTermMultiselect.prototype = {}; A.AddToPaymentTermMultiselect.prototype = {}; A.RemoveFromPaymentTermMultiselect.prototype = {}; A.ClearPaymentTermMultiselect.prototype = {}; A._editPaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { var _s27_ = "/settings/payment_term/edit"; next.call$1(type$.legacy_EditPaymentTerm._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s27_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s27_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewPaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewPaymentTerm_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewPaymentTerm_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewPaymentTerm._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/payment_term/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/payment_term/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewPaymentTermList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s23_ = "/settings/payment_terms"; next.call$1(type$.legacy_ViewPaymentTermList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s23_, new A._viewPaymentTermList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewPaymentTermList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archivePaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_ArchivePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = A.List_List$of(new A.MappedListIterable(t1, new A._archivePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archivePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archivePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archivePaymentTerm__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentTermState.map._map$_map.$index(0, id); }, $signature: 395 }; A._archivePaymentTerm__closure0.prototype = { call$1(paymentTerms) { this.store.get$_dispatchers()[0].call$1(new A.ArchivePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 394 }; A._archivePaymentTerm__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchivePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deletePaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_DeletePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = A.List_List$of(new A.MappedListIterable(t1, new A._deletePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deletePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deletePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deletePaymentTerm__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentTermState.map._map$_map.$index(0, id); }, $signature: 395 }; A._deletePaymentTerm__closure0.prototype = { call$1(paymentTerms) { this.store.get$_dispatchers()[0].call$1(new A.DeletePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 394 }; A._deletePaymentTerm__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeletePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restorePaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_RestorePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = A.List_List$of(new A.MappedListIterable(t1, new A._restorePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restorePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restorePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restorePaymentTerm__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].paymentTermState.map._map$_map.$index(0, id); }, $signature: 395 }; A._restorePaymentTerm__closure0.prototype = { call$1(paymentTerms) { this.store.get$_dispatchers()[0].call$1(new A.RestorePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 394 }; A._restorePaymentTerm__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestorePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._savePaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SavePaymentTermRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.paymentTerm).then$1$1(0, new A._savePaymentTerm__closure(dynamicAction, store), type$.Null).catchError$1(new A._savePaymentTerm__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._savePaymentTerm__closure.prototype = { call$1(paymentTerm) { var t1 = this.action, t2 = this.store; if (t1.paymentTerm.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddPaymentTermSuccess(paymentTerm)); else t2.get$_dispatchers()[0].call$1(new A.SavePaymentTermSuccess(paymentTerm)); t1.completer.complete$1(0, paymentTerm); }, $signature: 320 }; A._savePaymentTerm__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SavePaymentTermFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPaymentTerm_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadPaymentTerm._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.paymentTermId).then$1$1(0, new A._loadPaymentTerm__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadPaymentTerm__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPaymentTerm__closure.prototype = { call$1(paymentTerm) { this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermSuccess(paymentTerm)); this.action.completer.complete$1(0, null); }, $signature: 320 }; A._loadPaymentTerm__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPaymentTerms_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadPaymentTerms._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadPaymentTerms__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadPaymentTerms__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPaymentTerms__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1415 }; A._loadPaymentTerms__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPaymentTermsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.paymentTermUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$paymentTermListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer12().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._payment_term_model$_$v = t1; t1 = $.$get$selectedIdReducer12().call$2(t2.selectedId, t3); b.get$_payment_term_state$_$this()._payment_term_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer12().call$2(t2.forceSelected, t3); b.get$_payment_term_state$_$this()._payment_term_state$_forceSelected = t3; return b; }, $signature: 1416 }; A.forceSelectedReducer_closure95.prototype = { call$2(completer, action) { return true; }, $signature: 1417 }; A.forceSelectedReducer_closure96.prototype = { call$2(completer, action) { return false; }, $signature: 1418 }; A.forceSelectedReducer_closure97.prototype = { call$2(completer, action) { return false; }, $signature: 1419 }; A.forceSelectedReducer_closure98.prototype = { call$2(completer, action) { return false; }, $signature: 1420 }; A.forceSelectedReducer_closure99.prototype = { call$2(completer, action) { return false; }, $signature: 1421 }; A.forceSelectedReducer_closure100.prototype = { call$2(completer, action) { return false; }, $signature: 1422 }; A.forceSelectedReducer_closure101.prototype = { call$2(completer, action) { return false; }, $signature: 1423 }; A.forceSelectedReducer_closure102.prototype = { call$2(completer, action) { return false; }, $signature: 1424 }; A.selectedIdReducer_closure193.prototype = { call$2(completer, action) { return ""; }, $signature: 1425 }; A.selectedIdReducer_closure194.prototype = { call$2(completer, action) { return ""; }, $signature: 1426 }; A.selectedIdReducer_closure195.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_paymentTerm ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure196.prototype = { call$2(selectedId, action) { return action.get$paymentTermId(); }, $signature: 90 }; A.selectedIdReducer_closure197.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$paymentTerm()); }, $signature: 90 }; A.selectedIdReducer_closure198.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure199.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure200.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1427 }; A.selectedIdReducer_closure201.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1428 }; A.selectedIdReducer_closure202.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1429 }; A.selectedIdReducer_closure203.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1430 }; A.selectedIdReducer_closure204.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1431 }; A.selectedIdReducer_closure205.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1432 }; A.selectedIdReducer_closure206.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1433 }; A.editingReducer_closure64.prototype = { call$2(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, $signature: 1434 }; A.editingReducer_closure65.prototype = { call$2(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, $signature: 1435 }; A.editingReducer_closure66.prototype = { call$2(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, $signature: 1436 }; A.editingReducer_closure67.prototype = { call$2(paymentTerm, action) { return action.paymentTerm.rebuild$1(new A.editingReducer__closure24()); }, $signature: 1437 }; A.editingReducer__closure24.prototype = { call$1(b) { b.get$_payment_term_model$_$this()._payment_term_model$_isChanged = true; return b; }, $signature: 606 }; A._viewPaymentTermList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterPaymentTermsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentTermsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentTermsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPaymentTermsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentTermsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterPaymentTermsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPaymentTerms_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.paymentTermListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortPaymentTerms_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure12.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure12.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure12.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure12.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archivePaymentTermSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 392 }; A._deletePaymentTermSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 392 }; A._restorePaymentTermSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 392 }; A._addPaymentTerm_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 223 }; A._updatePaymentTerm_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 223 }; A._setLoadedPaymentTerm_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 223 }; A._setLoadedCompany_closure7.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.paymentTerms, new A._setLoadedCompany__closure7(), new A._setLoadedCompany__closure8(), type$.legacy_String, type$.legacy_PaymentTermEntity)); return b; }, $signature: 223 }; A._setLoadedCompany__closure7.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompany__closure8.prototype = { call$1(item) { return item; }, $signature: 603 }; A._setLoadedCompany_closure8.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 223 }; A.memoizedDropdownPaymentTermList_closure.prototype = { call$2(paymentTermMap, paymentTermList) { return A.dropdownPaymentTermsSelector(paymentTermMap, paymentTermList); }, $signature: 1442 }; A.dropdownPaymentTermsSelector_closure.prototype = { call$1(paymentTermId) { var paymentTerm = this.paymentTermMap._map$_map.$index(0, paymentTermId), t1 = this.numDays, t2 = paymentTerm.numDays; if (t1.containsKey$1(0, t2)) return false; t1.$indexSet(0, t2, true); return !paymentTerm.get$isArchived() && !paymentTerm.isDeleted; }, $signature: 16 }; A.dropdownPaymentTermsSelector_closure0.prototype = { call$2(paymentTermAId, paymentTermBId) { var t1 = this.paymentTermMap._map$_map, paymentTermA = t1.$index(0, paymentTermAId), paymentTermB = t1.$index(0, paymentTermBId); return B.JSInt_methods.compareTo$1(paymentTermA.numDays, paymentTermB.numDays); }, $signature: 19 }; A.memoizedFilteredPaymentTermList_closure.prototype = { call$4(selectionState, paymentTermMap, paymentTermList, paymentTermListState) { return A.filteredPaymentTermsSelector(selectionState, paymentTermMap, paymentTermList, paymentTermListState); }, $signature: 1443 }; A.filteredPaymentTermsSelector_closure.prototype = { call$1(paymentTermId) { var t1, paymentTerm = this.paymentTermMap._map$_map.$index(0, paymentTermId); if (paymentTerm.id === this.selectionState.selectedId) return true; t1 = this.paymentTermListState; if (!paymentTerm.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType(["" + paymentTerm.numDays], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredPaymentTermsSelector_closure0.prototype = { call$2(paymentTermAId, paymentTermBId) { var t1 = this.paymentTermMap._map$_map, paymentTermA = t1.$index(0, paymentTermAId), paymentTermB = t1.$index(0, paymentTermBId); this.paymentTermListState.toString; return B.JSInt_methods.compareTo$1(paymentTermA.numDays, paymentTermB.numDays); }, $signature: 19 }; A.PaymentTermState.prototype = { loadPaymentTerms$1(clients) { return this.rebuild$1(new A.PaymentTermState_loadPaymentTerms_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.PaymentTermState_loadPaymentTerms_closure0(), new A.PaymentTermState_loadPaymentTerms_closure1(), type$.legacy_String, type$.legacy_PaymentTermEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.PaymentTermState_loadPaymentTerms_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.PaymentTermState_loadPaymentTerms_closure1.prototype = { call$1(item) { return item; }, $signature: 603 }; A.PaymentTermState_loadPaymentTerms_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 223 }; A.PaymentTermUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$PaymentTermStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_weg), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.PaymentTermStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_payment_term_state$_$this(); t6 = t5._payment_term_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._payment_term_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_weg)); break; case "list": t5 = result.get$_payment_term_state$_$this(); t6 = t5._payment_term_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._payment_term_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_LCF; }, get$wireName() { return "PaymentTermState"; } }; A._$PaymentTermUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_y87)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.PaymentTermUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_PaymentTermEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_payment_term_state$_$this(); t4 = t3._payment_term_state$_editing; t3 = t4 == null ? t3._payment_term_state$_editing = new A.PaymentTermEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_y87)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._payment_term_model$_$v = t4; break; case "listUIState": t3 = result.get$_payment_term_state$_$this(); t4 = t3._payment_term_state$_listUIState; t3 = t4 == null ? t3._payment_term_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_payment_term_state$_$this()._payment_term_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_payment_term_state$_$this()._payment_term_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_payment_term_state$_$this()._payment_term_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_oyU0; }, get$wireName() { return "PaymentTermUIState"; } }; A._$PaymentTermState.prototype = { rebuild$1(updates) { var t1 = new A.PaymentTermStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._payment_term_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PaymentTermState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._payment_term_state$__hashCode; return t1 == null ? _this._payment_term_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.PaymentTermStateBuilder.prototype = { get$map(_) { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_map; return t2 == null ? t1._payment_term_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTermEntity) : t2; }, get$list(_) { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_list; return t2 == null ? t1._payment_term_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_payment_term_state$_$this() { var t1, t2, _this = this, $$v = _this._payment_term_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._payment_term_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._payment_term_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._payment_term_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._payment_term_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$PaymentTermState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("PaymentTermState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_term_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$PaymentTermUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.PaymentTermUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._payment_term_state$__hashCode; return t1 == null ? _this._payment_term_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.PaymentTermUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_editing; return t2 == null ? t1._payment_term_state$_editing = new A.PaymentTermEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_listUIState; return t2 == null ? t1._payment_term_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_payment_term_state$_$this() { var t1, t2, _this = this, $$v = _this._payment_term_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.PaymentTermEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._payment_term_model$_$v = t1; t1 = t2; } _this._payment_term_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._payment_term_state$_listUIState = t2; _this._payment_term_state$_selectedId = $$v.selectedId; _this._payment_term_state$_forceSelected = $$v.forceSelected; _this._payment_term_state$_tabIndex = $$v.tabIndex; _this._payment_term_state$_saveCompleter = $$v.saveCompleter; _this._payment_term_state$_cancelCompleter = $$v.cancelCompleter; _this._payment_term_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s18_ = "PaymentTermUIState", _$result = null; try { _$result0 = _this._payment_term_state$_$v; if (_$result0 == null) { t1 = _this._payment_term_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_payment_term_state$_$this()._payment_term_state$_selectedId; t4 = _this.get$_payment_term_state$_$this()._payment_term_state$_forceSelected; t5 = _this.get$_payment_term_state$_$this()._payment_term_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "tabIndex")); t6 = _this.get$_payment_term_state$_$this()._payment_term_state$_saveCompleter; _$result0 = A._$PaymentTermUIState$_(_this.get$_payment_term_state$_$this()._payment_term_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._payment_term_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._payment_term_state$_$v = t1; return _$result; } }; A._PaymentTermUIState_Object_EntityUIState.prototype = {}; A.ViewProductList.prototype = {$isPersistUI: 1}; A.ViewProduct.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditProduct.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$product(receiver) { return this.product; } }; A.UpdateProduct.prototype = {$isPersistUI: 1, get$product(receiver) { return this.product; } }; A.LoadProductRequest.prototype = {$isStartLoading: 1}; A.LoadProduct.prototype = {}; A.LoadProductSuccess.prototype = { toString$0(_) { return "LoadProductSuccess{product: " + A.S(this.product) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$product(receiver) { return this.product; } }; A.LoadProductFailure.prototype = { toString$0(_) { return "LoadProductFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadProducts.prototype = {}; A.LoadProductsRequest.prototype = {$isStartLoading: 1}; A.LoadProductsFailure.prototype = { toString$0(_) { return "LoadProductsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadProductsSuccess.prototype = { toString$0(_) { return "LoadProductsSuccess{products: " + A.S(this.products) + "}"; }, $isStopLoading: 1 }; A.SaveProductRequest.prototype = {$isStartSaving: 1, get$product(receiver) { return this.product; } }; A.SaveProductSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$product(receiver) { return this.product; } }; A.AddProductSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$product(receiver) { return this.product; } }; A.SaveProductFailure.prototype = {$isStopSaving: 1}; A.ArchiveProductsRequest.prototype = {$isStartSaving: 1}; A.ArchiveProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveProductsFailure.prototype = {$isStopSaving: 1}; A.DeleteProductsRequest.prototype = {$isStartSaving: 1}; A.DeleteProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteProductsFailure.prototype = {$isStopSaving: 1}; A.RestoreProductsRequest.prototype = {$isStartSaving: 1}; A.RestoreProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreProductsFailure.prototype = {$isStopSaving: 1}; A.FilterProducts.prototype = {$isPersistUI: 1}; A.SortProducts.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterProductsByState.prototype = {$isPersistUI: 1}; A.FilterProductsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProductsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProductsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProductsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleProductAction_closure.prototype = { call$1(product) { return product.get$id(product); }, $signature: 41 }; A.handleProductAction_closure0.prototype = { call$1(b) { var t1 = this.productIds; b.get$lineItems().addAll$1(0, new A.MappedListIterable(t1, new A.handleProductAction__closure0(this.state, this.invoice), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceItemEntity*>"))); return b; }, $signature: 6 }; A.handleProductAction__closure0.prototype = { call$1(productId) { var t1 = this.state, t2 = t1.userCompanyStates, t3 = t1.uiState.selectedCompanyIndex; t3 = t2._list[t3]; t2 = t3.userCompany.company; t3 = t3.productState.map._map$_map.$index(0, productId); return A.convertProductToInvoiceItem(null, t2, t1.staticState.currencyMap, this.invoice, t3); }, $signature: 602 }; A.handleProductAction_closure1.prototype = { call$1(b) { var t1 = this.productIds; b.get$lineItems().addAll$1(0, new A.MappedListIterable(t1, new A.handleProductAction__closure(this.state, this.invoice), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceItemEntity*>"))); return b; }, $signature: 6 }; A.handleProductAction__closure.prototype = { call$1(productId) { var t1 = this.state, t2 = t1.userCompanyStates, t3 = t1.uiState.selectedCompanyIndex; t3 = t2._list[t3]; t2 = t3.userCompany.company; t3 = t3.productState.map._map$_map.$index(0, productId); return A.convertProductToInvoiceItem(null, t2, t1.staticState.currencyMap, this.invoice, t3); }, $signature: 602 }; A.StartProductMultiselect.prototype = {}; A.AddToProductMultiselect.prototype = {}; A.RemoveFromProductMultiselect.prototype = {}; A.ClearProductMultiselect.prototype = {}; A.SaveProductDocumentRequest.prototype = {$isStartSaving: 1, get$product(receiver) { return this.product; } }; A.SaveProductDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateProductTab.prototype = {$isPersistUI: 1}; A._editProduct_closure.prototype = { call$3(store, dynamicAction, next) { var _s13_ = "/product/edit"; next.call$1(type$.legacy_EditProduct._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewProduct_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewProduct_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewProduct_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewProduct._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/product/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/product/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewProductList_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/product"; next.call$1(type$.legacy_ViewProductList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewProductList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewProductList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveProduct_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_ArchiveProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = A.List_List$of(new A.MappedListIterable(t1, new A._archiveProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveProduct__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].productState.map._map$_map.$index(0, id); }, $signature: 242 }; A._archiveProduct__closure0.prototype = { call$1(products) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 389 }; A._archiveProduct__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 7 }; A._deleteProduct_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_DeleteProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = A.List_List$of(new A.MappedListIterable(t1, new A._deleteProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteProduct__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].productState.map._map$_map.$index(0, id); }, $signature: 242 }; A._deleteProduct__closure0.prototype = { call$1(products) { this.store.get$_dispatchers()[0].call$1(new A.DeleteProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 389 }; A._deleteProduct__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreProduct_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_RestoreProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = A.List_List$of(new A.MappedListIterable(t1, new A._restoreProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreProduct__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].productState.map._map$_map.$index(0, id); }, $signature: 242 }; A._restoreProduct__closure0.prototype = { call$1(products) { this.store.get$_dispatchers()[0].call$1(new A.RestoreProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 389 }; A._restoreProduct__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveProduct_closure.prototype = { call$3(store, dynamicAction, next) { var product, t1, t2, origProduct; type$.legacy_SaveProductRequest._as(dynamicAction); product = dynamicAction.product; t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; origProduct = t2._list[t1].productState.$get$1(0, product.id); t1 = product.stockQuantity; t2 = origProduct.stockQuantity; this.repository.saveData$3$changedStock(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), product, t1 !== t2).then$1$1(0, new A._saveProduct__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveProduct__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveProduct__closure.prototype = { call$1(product) { var t1 = this.action, t2 = this.store; if (t1.product.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddProductSuccess(product)); else t2.get$_dispatchers()[0].call$1(new A.SaveProductSuccess(product)); t1.completer.complete$1(0, product); }, $signature: 228 }; A._saveProduct__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveProductFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadProduct_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadProduct._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadProductRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.productId).then$1$1(0, new A._loadProduct__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadProduct__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadProduct__closure.prototype = { call$1(product) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadProductSuccess(product)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 228 }; A._loadProduct__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadProductFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadProducts_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3; type$.legacy_LoadProducts._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadProductsRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$3(t1, t2, t3).then$1$1(0, new A._loadProducts__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadProducts__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadProducts__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadProductsSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadProducts(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadInvoices(null, 1)); }, $signature: 1447 }; A._loadProducts__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadProductsFailure(error)); }, $signature: 3 }; A._saveDocument_closure12.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveProductDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.product, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure25(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure26(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveProductDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure25.prototype = { call$1(product) { this.store.get$_dispatchers()[0].call$1(new A.SaveProductSuccess(product)); this.action.completer.complete$1(0, null); }, $signature: 228 }; A._saveDocument__closure26.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveProductDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.productUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$productListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer23().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._product_model$_$v = t1; t1 = $.$get$tabIndexReducer12().call$2(t2.tabIndex, t3); b.get$_product_state$_$this()._product_state$_tabIndex = t1; t1 = $.$get$selectedIdReducer23().call$2(t2.selectedId, t3); b.get$_product_state$_$this()._product_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer23().call$2(t2.forceSelected, t3); b.get$_product_state$_$this()._product_state$_forceSelected = t3; return b; }, $signature: 1448 }; A.forceSelectedReducer_closure183.prototype = { call$2(completer, action) { return true; }, $signature: 1449 }; A.forceSelectedReducer_closure184.prototype = { call$2(completer, action) { return false; }, $signature: 1450 }; A.forceSelectedReducer_closure185.prototype = { call$2(completer, action) { return false; }, $signature: 1451 }; A.forceSelectedReducer_closure186.prototype = { call$2(completer, action) { return false; }, $signature: 1452 }; A.forceSelectedReducer_closure187.prototype = { call$2(completer, action) { return false; }, $signature: 1453 }; A.forceSelectedReducer_closure188.prototype = { call$2(completer, action) { return false; }, $signature: 1454 }; A.forceSelectedReducer_closure189.prototype = { call$2(completer, action) { return false; }, $signature: 1455 }; A.forceSelectedReducer_closure190.prototype = { call$2(completer, action) { return false; }, $signature: 1456 }; A.tabIndexReducer_closure25.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1457 }; A.tabIndexReducer_closure26.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.editingReducer_closure139.prototype = { call$2(product, action) { return action.product.rebuild$1(new A.editingReducer__closure56()); }, $signature: 1458 }; A.editingReducer__closure56.prototype = { call$1(b) { b.get$_product_model$_$this()._product_model$_isChanged = true; return b; }, $signature: 169 }; A.editingReducer_closure140.prototype = { call$2(products, action) { return J.$index$asx(action.products, 0); }, $signature: 1459 }; A.editingReducer_closure141.prototype = { call$2(products, action) { return J.$index$asx(action.products, 0); }, $signature: 1460 }; A.editingReducer_closure142.prototype = { call$2(products, action) { return J.$index$asx(action.products, 0); }, $signature: 1461 }; A.selectedIdReducer_closure371.prototype = { call$2(completer, action) { return ""; }, $signature: 1462 }; A.selectedIdReducer_closure372.prototype = { call$2(completer, action) { return ""; }, $signature: 1463 }; A.selectedIdReducer_closure373.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_product ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure374.prototype = { call$2(selectedId, action) { return action.productId; }, $signature: 1464 }; A.selectedIdReducer_closure375.prototype = { call$2(selectedId, action) { return action.product.id; }, $signature: 1465 }; A.selectedIdReducer_closure376.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure377.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure378.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1466 }; A.selectedIdReducer_closure379.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1467 }; A.selectedIdReducer_closure380.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1468 }; A.selectedIdReducer_closure381.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1469 }; A.selectedIdReducer_closure382.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1470 }; A.selectedIdReducer_closure383.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1471 }; A.selectedIdReducer_closure384.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1472 }; A._viewClientList_closure0.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterProductsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterProductsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProductsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProductsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProductsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProductsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProductsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProductsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProductsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProductsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProducts_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.productListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortProducts_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure23.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure23.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure23.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure23.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveProductSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 387 }; A._deleteProductSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 387 }; A._restoreProductSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 387 }; A._addProduct_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.product, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 326 }; A._updateProduct_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.product; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 326 }; A._setLoadedProduct_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.product; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 326 }; A.convertProductToInvoiceItem_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.product; b.get$_invoice_model$_$this()._invoice_model$_productKey = t1.productKey; b.get$_invoice_model$_$this()._invoice_model$_notes = t1.notes; t2 = this._box_0.cost; b.get$_invoice_model$_$this()._invoice_model$_cost = t2; b.get$_invoice_model$_$this()._productCost = t1.cost; t2 = t1.quantity; if (t2 === 0) t2 = 1; b.get$_invoice_model$_$this()._invoice_model$_quantity = t2; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1.customValue4; t2 = this.company.numberOfItemTaxRates; t3 = t2 >= 1; t4 = t3 ? t1.taxName1 : ""; b.get$_invoice_model$_$this()._taxName1 = t4; t3 = t3 ? t1.taxRate1 : 0; b.get$_invoice_model$_$this()._taxRate1 = t3; t3 = t2 >= 2; t4 = t3 ? t1.taxName2 : ""; b.get$_invoice_model$_$this()._taxName2 = t4; t3 = t3 ? t1.taxRate2 : 0; b.get$_invoice_model$_$this()._taxRate2 = t3; t2 = t2 >= 3; t3 = t2 ? t1.taxName3 : ""; b.get$_invoice_model$_$this()._taxName3 = t3; t1 = t2 ? t1.taxRate3 : 0; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 58 }; A.memoizedDropdownProductList_closure.prototype = { call$3(productMap, productList, userMap) { return A.dropdownProductsSelector(productMap, productList, userMap); }, $signature: 1475 }; A.dropdownProductsSelector_closure.prototype = { call$1(productId) { var t1 = this.productMap._map$_map.$index(0, productId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.dropdownProductsSelector_closure0.prototype = { call$2(productAId, productBId) { var t1 = this.productMap._map$_map; return t1.$index(0, productAId).compareTo$4(0, t1.$index(0, productBId), "product_key", true, this.userMap); }, $signature: 19 }; A.memoizedProductList_closure.prototype = { call$1(productMap) { return A.productList(productMap); }, $signature: 1476 }; A.productList_closure.prototype = { call$1(productId) { var t1 = this.productMap._map$_map.$index(0, productId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.productList_closure0.prototype = { call$2(idA, idB) { var t1 = this.productMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).productKey, t1.$index(0, idB).productKey); }, $signature: 19 }; A.memoizedFilteredProductList_closure.prototype = { call$5(selectionState, productMap, productList, productListState, userMap) { return A.filteredProductsSelector(selectionState, productMap, productList, productListState, userMap); }, $signature: 1477 }; A.filteredProductsSelector_closure.prototype = { call$1(productId) { var t1, t2, product = this.productMap._map$_map.$index(0, productId); if (product.id === this.selectionState.selectedId) return true; t1 = this.productListState; if (!product.matchesStates$1(t1.stateFilters)) return false; if (!product.matchesFilter$1(t1.filter)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, product.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, product.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, product.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, product.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredProductsSelector_closure0.prototype = { call$2(productAId, productBId) { var t1 = this.productMap._map$_map, t2 = this.productListState; return t1.$index(0, productAId).compareTo$4(0, t1.$index(0, productBId), t2.sortField, t2.sortAscending, this.userMap); }, $signature: 19 }; A.ProductState.prototype = { $get$1(_, productId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, productId)) return t1.$index(0, productId); else return A.ProductEntity_ProductEntity(productId, null); }, loadProducts$1(clients) { return this.rebuild$1(new A.ProductState_loadProducts_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.ProductState_loadProducts_closure0(), new A.ProductState_loadProducts_closure1(), type$.legacy_String, type$.legacy_ProductEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.ProductState_loadProducts_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.ProductState_loadProducts_closure1.prototype = { call$1(item) { return item; }, $signature: 1478 }; A.ProductState_loadProducts_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 326 }; A.ProductUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$ProductStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_woD), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.ProductStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_product_state$_$this(); t6 = t5._product_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._product_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_woD)); break; case "list": t5 = result.get$_product_state$_$this(); t6 = t5._product_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._product_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_E4Q; }, get$wireName() { return "ProductState"; } }; A._$ProductUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_Art)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.ProductUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ProductEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_product_state$_$this(); t4 = t3._product_state$_editing; if (t4 == null) { t4 = new A.ProductEntityBuilder(); t4.get$_product_model$_$this()._stockQuantity = 0; t4.get$_product_model$_$this()._product_model$_stockNotification = true; t4.get$_product_model$_$this()._product_model$_stockNotificationThreshold = 0; t3._product_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_Art)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._product_model$_$v = t4; break; case "listUIState": t3 = result.get$_product_state$_$this(); t4 = t3._product_state$_listUIState; t3 = t4 == null ? t3._product_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_product_state$_$this()._product_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_product_state$_$this()._product_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_product_state$_$this()._product_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_6H2; }, get$wireName() { return "ProductUIState"; } }; A._$ProductState.prototype = { rebuild$1(updates) { var t1 = new A.ProductStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._product_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProductState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._product_state$__hashCode; return t1 == null ? _this._product_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.ProductStateBuilder.prototype = { get$map(_) { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_map; return t2 == null ? t1._product_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProductEntity) : t2; }, get$list(_) { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_list; return t2 == null ? t1._product_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_product_state$_$this() { var t1, t2, _this = this, $$v = _this._product_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._product_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._product_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._product_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._product_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$ProductState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ProductState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._product_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$ProductUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.ProductUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._product_state$__hashCode; return t1 == null ? _this._product_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.ProductUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_editing; if (t2 == null) { t2 = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(t2); t1._product_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_listUIState; return t2 == null ? t1._product_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_product_state$_$this() { var t1, t2, _this = this, $$v = _this._product_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ProductEntityBuilder(); A.ProductEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._product_model$_$v = t1; t1 = t2; } _this._product_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._product_state$_listUIState = t2; _this._product_state$_selectedId = $$v.selectedId; _this._product_state$_forceSelected = $$v.forceSelected; _this._product_state$_tabIndex = $$v.tabIndex; _this._product_state$_saveCompleter = $$v.saveCompleter; _this._product_state$_cancelCompleter = $$v.cancelCompleter; _this._product_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ProductUIState", _$result = null; try { _$result0 = _this._product_state$_$v; if (_$result0 == null) { t1 = _this._product_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_product_state$_$this()._product_state$_selectedId; t4 = _this.get$_product_state$_$this()._product_state$_forceSelected; t5 = _this.get$_product_state$_$this()._product_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_product_state$_$this()._product_state$_saveCompleter; _$result0 = A._$ProductUIState$_(_this.get$_product_state$_$this()._product_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._product_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._product_state$_$v = t1; return _$result; } }; A._ProductUIState_Object_EntityUIState.prototype = {}; A.ViewProjectList.prototype = {$isPersistUI: 1}; A.ViewProject.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditProject.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$project() { return this.project; } }; A.UpdateProject.prototype = {$isPersistUI: 1, get$project() { return this.project; } }; A.LoadProject.prototype = {}; A.LoadProjects.prototype = {}; A.LoadProjectRequest.prototype = {$isStartLoading: 1}; A.LoadProjectFailure.prototype = { toString$0(_) { return "LoadProjectFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadProjectSuccess.prototype = { toString$0(_) { return "LoadProjectSuccess{project: " + A.S(this.project) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$project() { return this.project; } }; A.LoadProjectsRequest.prototype = {$isStartLoading: 1}; A.LoadProjectsFailure.prototype = { toString$0(_) { return "LoadProjectsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadProjectsSuccess.prototype = { toString$0(_) { return "LoadProjectsSuccess{projects: " + A.S(this.projects) + "}"; }, $isStopLoading: 1 }; A.SaveProjectRequest.prototype = {$isStartSaving: 1, get$project() { return this.project; } }; A.SaveProjectSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$project() { return this.project; } }; A.AddProjectSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$project() { return this.project; } }; A.SaveProjectFailure.prototype = {$isStopSaving: 1}; A.ArchiveProjectRequest.prototype = {$isStartSaving: 1}; A.ArchiveProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveProjectFailure.prototype = {$isStopSaving: 1}; A.DeleteProjectRequest.prototype = {$isStartSaving: 1}; A.DeleteProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteProjectFailure.prototype = {$isStopSaving: 1}; A.RestoreProjectRequest.prototype = {$isStartSaving: 1}; A.RestoreProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreProjectFailure.prototype = {$isStopSaving: 1}; A.FilterProjects.prototype = {$isPersistUI: 1}; A.SortProjects.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterProjectsByState.prototype = {$isPersistUI: 1}; A.FilterProjectsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProjectsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProjectsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterProjectsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleProjectAction_closure.prototype = { call$1(project) { return project.get$id(project); }, $signature: 41 }; A.handleProjectAction_closure0.prototype = { call$1(b) { var t1 = this.project; b.get$_task_model$_$this()._task_model$_projectId = t1.id; b.get$_task_model$_$this()._task_model$_clientId = t1.clientId; return b; }, $signature: 50 }; A.handleProjectAction_closure1.prototype = { call$1(project) { var t1, t2, clientId = type$.legacy_ProjectEntity._as(project).clientId; if (clientId.length !== 0) { t1 = this._box_0; t2 = t1.lastClientId; if (t2.length !== 0 && t2 !== clientId) t1.hasMultipleClients = true; t1.lastClientId = clientId; } }, $signature: 145 }; A.handleProjectAction_closure2.prototype = { call$1(project) { B.JSArray_methods.addAll$1(this.items, A.convertProjectToInvoiceItem(this.context, project)); }, $signature: 145 }; A.handleProjectAction_closure3.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.items); b.get$_invoice_model$_$this()._projectId = this.project.id; return b; }, $signature: 6 }; A.handleProjectAction_closure4.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_projectId = this.project.id; return b; }, $signature: 29 }; A.StartProjectMultiselect.prototype = {}; A.AddToProjectMultiselect.prototype = {}; A.RemoveFromProjectMultiselect.prototype = {}; A.ClearProjectMultiselect.prototype = {}; A.SaveProjectDocumentRequest.prototype = {$isStartSaving: 1, get$project() { return this.project; } }; A.SaveProjectDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateProjectTab.prototype = {$isPersistUI: 1}; A._editProject_closure.prototype = { call$3(store, dynamicAction, next) { var _s13_ = "/project/edit"; next.call$1(type$.legacy_EditProject._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewProject_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewProject_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewProject_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewProject._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/project/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/project/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewProjectList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/project"; next.call$1(type$.legacy_ViewProjectList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewProjectList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewProjectList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveProject_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_ArchiveProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = A.List_List$of(new A.MappedListIterable(t1, new A._archiveProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveProject__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveProject__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].projectState.map._map$_map.$index(0, id); }, $signature: 331 }; A._archiveProject__closure0.prototype = { call$1(projects) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 385 }; A._archiveProject__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteProject_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_DeleteProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = A.List_List$of(new A.MappedListIterable(t1, new A._deleteProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteProject__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteProject__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].projectState.map._map$_map.$index(0, id); }, $signature: 331 }; A._deleteProject__closure0.prototype = { call$1(projects) { this.store.get$_dispatchers()[0].call$1(new A.DeleteProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 385 }; A._deleteProject__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreProject_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_RestoreProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = A.List_List$of(new A.MappedListIterable(t1, new A._restoreProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreProject__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreProject__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].projectState.map._map$_map.$index(0, id); }, $signature: 331 }; A._restoreProject__closure0.prototype = { call$1(projects) { this.store.get$_dispatchers()[0].call$1(new A.RestoreProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 385 }; A._restoreProject__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveProject_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveProjectRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.project).then$1$1(0, new A._saveProject__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveProject__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveProject__closure.prototype = { call$1(project) { var t1 = this.action, t2 = this.store; if (t1.project.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddProjectSuccess(project)); else t2.get$_dispatchers()[0].call$1(new A.SaveProjectSuccess(project)); t1.completer.complete$1(0, project); t1 = A._lateReadCheck(t2.__Store__state, "_state").uiState.projectUIState.saveCompleter; if (t1 != null) t1.complete$1(0, project); }, $signature: 258 }; A._saveProject__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadProject_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadProject._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadProjectRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.projectId).then$1$1(0, new A._loadProject__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadProject__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadProject__closure.prototype = { call$1(project) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadProjectSuccess(project)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 258 }; A._loadProject__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadProjectFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadProjects_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadProjects._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadProjectsRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new A._loadProjects__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadProjects__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadProjects__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadProjectsSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadTasks()); }, $signature: 1481 }; A._loadProjects__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadProjectsFailure(error)); this.action.toString; }, $signature: 3 }; A._saveDocument_closure6.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveProjectDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.project, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure13(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure14(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveProjectDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure13.prototype = { call$1(project) { this.store.get$_dispatchers()[0].call$1(new A.SaveProjectSuccess(project)); this.action.completer.complete$1(0, null); }, $signature: 258 }; A._saveDocument__closure14.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveProjectDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.projectUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$projectListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer1().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._project_model$_$v = t1; t1 = $.$get$selectedIdReducer1().call$2(t2.selectedId, t3); b.get$_project_state$_$this()._project_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer1().call$2(t2.forceSelected, t3); b.get$_project_state$_$this()._project_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer1().call$2(t2.tabIndex, t3); b.get$_project_state$_$this()._project_state$_tabIndex = t1; t1 = $.$get$saveCompleterReducer().call$2(t2.saveCompleter, t3); b.get$_project_state$_$this()._project_state$_saveCompleter = t1; t3 = $.$get$cancelCompleterReducer().call$2(t2.cancelCompleter, t3); b.get$_project_state$_$this()._project_state$_cancelCompleter = t3; return b; }, $signature: 1482 }; A.forceSelectedReducer_closure15.prototype = { call$2(completer, action) { return true; }, $signature: 1483 }; A.forceSelectedReducer_closure16.prototype = { call$2(completer, action) { return false; }, $signature: 1484 }; A.forceSelectedReducer_closure17.prototype = { call$2(completer, action) { return false; }, $signature: 1485 }; A.forceSelectedReducer_closure18.prototype = { call$2(completer, action) { return false; }, $signature: 1486 }; A.forceSelectedReducer_closure19.prototype = { call$2(completer, action) { return false; }, $signature: 1487 }; A.forceSelectedReducer_closure20.prototype = { call$2(completer, action) { return false; }, $signature: 1488 }; A.forceSelectedReducer_closure21.prototype = { call$2(completer, action) { return false; }, $signature: 1489 }; A.forceSelectedReducer_closure22.prototype = { call$2(completer, action) { return false; }, $signature: 1490 }; A.tabIndexReducer_closure3.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1491 }; A.tabIndexReducer_closure4.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.saveCompleterReducer_closure.prototype = { call$2(completer, action) { return action.completer; }, $signature: 591 }; A.cancelCompleterReducer_closure.prototype = { call$2(completer, action) { return action.cancelCompleter; }, $signature: 591 }; A.selectedIdReducer_closure34.prototype = { call$2(completer, action) { return ""; }, $signature: 1493 }; A.selectedIdReducer_closure35.prototype = { call$2(completer, action) { return ""; }, $signature: 1494 }; A.selectedIdReducer_closure36.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_project ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure37.prototype = { call$2(selectedId, action) { return action.projectId; }, $signature: 1495 }; A.selectedIdReducer_closure38.prototype = { call$2(selectedId, action) { return action.project.id; }, $signature: 1496 }; A.selectedIdReducer_closure39.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure40.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure41.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1497 }; A.selectedIdReducer_closure42.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1498 }; A.selectedIdReducer_closure43.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1499 }; A.selectedIdReducer_closure44.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1500 }; A.selectedIdReducer_closure45.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1501 }; A.selectedIdReducer_closure46.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1502 }; A.selectedIdReducer_closure47.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1503 }; A.selectedIdReducer_closure48.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_project ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure14.prototype = { call$2(projects, action) { return J.$index$asx(action.projects, 0); }, $signature: 1504 }; A.editingReducer_closure15.prototype = { call$2(projects, action) { return J.$index$asx(action.projects, 0); }, $signature: 1505 }; A.editingReducer_closure16.prototype = { call$2(projects, action) { return J.$index$asx(action.projects, 0); }, $signature: 1506 }; A.editingReducer_closure17.prototype = { call$2(project, action) { return action.project.rebuild$1(new A.editingReducer__closure7()); }, $signature: 1507 }; A.editingReducer__closure7.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_isChanged = true; return b; }, $signature: 164 }; A._viewProjectList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterProjectsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProjectsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProjectsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProjectsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProjectsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProjectsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProjectsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterProjectsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProjectsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterProjectsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterProjects_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.projectListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortProjects_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure1.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure1.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure1.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure1.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveProjectSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 383 }; A._deleteProjectSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 383 }; A._restoreProjectSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 383 }; A._addProject_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.project, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 330 }; A._updateProject_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.project; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 330 }; A._setLoadedProject_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.project; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 330 }; A.convertProjectToInvoiceItem_closure.prototype = { call$2(index, task) { var t1; if (!task.get$isArchived() && !task.isDeleted) if (!task.get$isRunning()) { t1 = task.invoiceId; t1 = t1.length === 0 && task.projectId === this.project.id; } else t1 = false; else t1 = false; if (t1) this.tasks.push(task); }, $signature: 143 }; A.convertProjectToInvoiceItem_closure0.prototype = { call$2(index, expense) { if (!expense.get$isArchived() && !expense.isDeleted && expense.projectId === this.project.id && expense.get$isPending()) this.expenses.push(expense); }, $signature: 113 }; A.convertProjectToInvoiceItem_closure1.prototype = { call$2(taskA, taskB) { var taskTimesA = taskA.getTaskTimes$0(), taskTimesB = taskB.getTaskTimes$0(), taskADate = taskTimesA.length === 0 ? null : B.JSArray_methods.get$first(taskTimesA).startDate, taskBDate = taskTimesB.length === 0 ? null : B.JSArray_methods.get$first(taskTimesB).startDate; if (taskADate == null) return 1; else if (taskBDate == null) return -1; return B.JSInt_methods.compareTo$1(taskADate._value, taskBDate._value); }, $signature: 436 }; A.convertProjectToInvoiceItem_closure2.prototype = { call$2(expenseA, expenseB) { return J.compareTo$1$ns(expenseA.date, expenseB.date); }, $signature: 664 }; A.convertProjectToInvoiceItem_closure3.prototype = { call$1(b) { var t1 = this._box_0.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, $signature: 588 }; A.convertProjectToInvoiceItem_closure4.prototype = { call$1(b) { var t1 = this._box_1.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, $signature: 588 }; A.memoizedDropdownProjectList_closure.prototype = { call$5(projectMap, projectList, clientMap, userMap, clientId) { return A.dropdownProjectsSelector(projectMap, projectList, clientMap, userMap, clientId); }, $signature: 1511 }; A.dropdownProjectsSelector_closure.prototype = { call$1(projectId) { var t2, project = this.projectMap._map$_map.$index(0, projectId), t1 = this.clientId; if (t1 != null && t1.length !== 0 && project.clientId !== t1) return false; t1 = project.clientId; if (t1.length !== 0) { t2 = this.clientMap._map$_map; if (t2.containsKey$1(0, t1)) { t1 = t2.$index(0, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = false; } else t1 = false; if (t1) return false; return !project.get$isArchived() && !project.isDeleted; }, $signature: 16 }; A.dropdownProjectsSelector_closure0.prototype = { call$2(projectAId, projectBId) { var t1 = this.projectMap._map$_map; return t1.$index(0, projectAId).compareTo$5(0, t1.$index(0, projectBId), "name", true, this.userMap, this.clientMap); }, $signature: 19 }; A.memoizedFilteredProjectList_closure.prototype = { call$6(selectionState, projectMap, projectList, projectListState, clientMap, userMap) { return A.filteredProjectsSelector(selectionState, projectMap, projectList, projectListState, clientMap, userMap); }, $signature: 1512 }; A.filteredProjectsSelector_closure.prototype = { call$1(projectId) { var user, t2, t3, _this = this, _null = null, project = _this.projectMap._map$_map.$index(0, projectId), t1 = project.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(_null, t1, _null, _null); t1 = project.assignedUserId; user = _this.userMap._map$_map.$index(0, t1); if (user == null) user = A.UserEntity_UserEntity(t1, _null, _null); if (project.id === _this.selectionState.selectedId) return true; t1 = _this.filterEntityId; if (t1 != null) { t2 = _this.filterEntityType; if (t2 === B.EntityType_client) t3 = !(client.id === t1 && client.get$entityType() === t2); else t3 = false; if (t3) return false; else { if (t2 === B.EntityType_user) t3 = !(user.id === t1 && user.get$entityType() === t2); else t3 = false; if (t3) return false; else if (t2 === B.EntityType_group && client.groupId !== t1) return false; } } else if (!(!client.get$isArchived() && !client.isDeleted)) return false; t1 = _this.projectListState; t2 = t1.filter; if (!project.matchesFilter$1(t2) && !client.matchesNameOrEmail$1(t2)) return false; if (!project.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, project.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, project.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, project.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, project.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredProjectsSelector_closure0.prototype = { call$2(projectAId, projectBId) { var _this = this, t1 = _this.projectMap._map$_map, t2 = _this.projectListState; return t1.$index(0, projectAId).compareTo$5(0, t1.$index(0, projectBId), t2.sortField, t2.sortAscending, _this.userMap, _this.clientMap); }, $signature: 19 }; A.taskDurationForProject_closure.prototype = { call$2(index, task) { var t1; if (!task.isDeleted && task.projectId === this.project.id) { t1 = this._box_0; t1.total = t1.total + B.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, $signature: 143 }; A.memoizedProjectStatsForClient_closure.prototype = { call$2(clientId, projectMap) { return A.projectStatsForClient(clientId, projectMap); }, $signature: 587 }; A.projectStatsForClient_closure.prototype = { call$2(projectId, project) { if (project.clientId === this.clientId) if (!project.get$isArchived() && !project.isDeleted) ++this._box_0.countActive; else if (project.get$isArchived()) ++this._box_0.countArchived; }, $signature: 1514 }; A.memoizedProjectStatsForUser_closure.prototype = { call$2(userId, projectMap) { return A.projectStatsForClient(userId, projectMap); }, $signature: 587 }; A.ProjectState.prototype = { $get$1(_, projectId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, projectId)) return t1.$index(0, projectId); else return A.ProjectEntity_ProjectEntity(null, projectId, null, null); }, loadProjects$1(clients) { return this.rebuild$1(new A.ProjectState_loadProjects_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.ProjectState_loadProjects_closure0(), new A.ProjectState_loadProjects_closure1(), type$.legacy_String, type$.legacy_ProjectEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.ProjectState_loadProjects_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.ProjectState_loadProjects_closure1.prototype = { call$1(item) { return item; }, $signature: 1515 }; A.ProjectState_loadProjects_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 330 }; A.ProjectUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$ProjectStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_qFt), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.ProjectStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_project_state$_$this(); t6 = t5._project_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._project_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_qFt)); break; case "list": t5 = result.get$_project_state$_$this(); t6 = t5._project_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._project_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Fgs; }, get$wireName() { return "ProjectState"; } }; A._$ProjectUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_vbG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.ProjectUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ProjectEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_project_state$_$this(); t4 = t3._project_state$_editing; if (t4 == null) { t4 = new A.ProjectEntityBuilder(); t4.get$_project_model$_$this()._color = ""; t3._project_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_vbG)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._project_model$_$v = t4; break; case "listUIState": t3 = result.get$_project_state$_$this(); t4 = t3._project_state$_listUIState; t3 = t4 == null ? t3._project_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_project_state$_$this()._project_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_project_state$_$this()._project_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_project_state$_$this()._project_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_gg40; }, get$wireName() { return "ProjectUIState"; } }; A._$ProjectState.prototype = { rebuild$1(updates) { var t1 = new A.ProjectStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._project_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProjectState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._project_state$__hashCode; return t1 == null ? _this._project_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.ProjectStateBuilder.prototype = { get$map(_) { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_map; return t2 == null ? t1._project_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProjectEntity) : t2; }, get$list(_) { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_list; return t2 == null ? t1._project_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_project_state$_$this() { var t1, t2, _this = this, $$v = _this._project_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._project_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._project_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._project_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._project_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$ProjectState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("ProjectState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._project_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$ProjectUIState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ProjectUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode(_) { var _this = this, t1 = _this._project_state$__hashCode; return t1 == null ? _this._project_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.ProjectUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_editing; if (t2 == null) { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; t1._project_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_listUIState; return t2 == null ? t1._project_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_project_state$_$this() { var t1, t2, _this = this, $$v = _this._project_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._project_model$_$v = t1; t1 = t2; } _this._project_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._project_state$_listUIState = t2; _this._project_state$_selectedId = $$v.selectedId; _this._project_state$_forceSelected = $$v.forceSelected; _this._project_state$_tabIndex = $$v.tabIndex; _this._project_state$_saveCompleter = $$v.saveCompleter; _this._project_state$_cancelCompleter = $$v.cancelCompleter; _this._project_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ProjectUIState", _$result = null; try { _$result0 = _this._project_state$_$v; if (_$result0 == null) { t1 = _this._project_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_project_state$_$this()._project_state$_selectedId; t4 = _this.get$_project_state$_$this()._project_state$_forceSelected; t5 = _this.get$_project_state$_$this()._project_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_project_state$_$this()._project_state$_saveCompleter; _$result0 = A._$ProjectUIState$_(_this.get$_project_state$_$this()._project_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._project_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._project_state$_$v = t1; return _$result; } }; A._ProjectUIState_Object_EntityUIState.prototype = {}; A.ViewPurchaseOrderList.prototype = {$isPersistUI: 1}; A.ViewPurchaseOrder.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditPurchaseOrder.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.ShowEmailPurchaseOrder.prototype = { get$purchaseOrder() { return this.purchaseOrder; } }; A.ShowPdfPurchaseOrder.prototype = { get$purchaseOrder() { return this.purchaseOrder; } }; A.EditPurchaseOrderItem.prototype = {$isPersistUI: 1}; A.UpdatePurchaseOrder.prototype = {$isPersistUI: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.UpdatePurchaseOrderVendor.prototype = {$isPersistUI: 1, get$vendor(receiver) { return this.vendor; } }; A.LoadPurchaseOrder.prototype = {}; A.LoadPurchaseOrders.prototype = {}; A.LoadPurchaseOrderRequest.prototype = {$isStartLoading: 1}; A.LoadPurchaseOrderFailure.prototype = { toString$0(_) { return "LoadPurchaseOrderFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPurchaseOrderSuccess.prototype = { toString$0(_) { return "LoadPurchaseOrderSuccess{purchaseOrder: " + A.S(this.purchaseOrder) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.LoadPurchaseOrdersRequest.prototype = {$isStartLoading: 1}; A.LoadPurchaseOrdersFailure.prototype = { toString$0(_) { return "LoadPurchaseOrdersFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadPurchaseOrdersSuccess.prototype = { toString$0(_) { return "LoadPurchaseOrdersSuccess{purchaseOrders: " + A.S(this.purchaseOrders) + "}"; }, $isStopLoading: 1 }; A.SavePurchaseOrderDocumentRequest.prototype = {$isStartSaving: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.SavePurchaseOrderDocumentFailure.prototype = {$isStopSaving: 1}; A.SavePurchaseOrderRequest.prototype = {$isStartSaving: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.SavePurchaseOrderSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.AddPurchaseOrderSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.SavePurchaseOrderFailure.prototype = {$isStopSaving: 1}; A.BulkEmailPurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.BulkEmailPurchaseOrdersSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.BulkEmailPurchaseOrdersFailure.prototype = {$isStopSaving: 1}; A.ArchivePurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.ArchivePurchaseOrdersSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchivePurchaseOrdersFailure.prototype = {$isStopSaving: 1}; A.DeletePurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.DeletePurchaseOrdersSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeletePurchaseOrdersFailure.prototype = {$isStopSaving: 1}; A.DownloadPurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.DownloadPurchaseOrdersSuccess.prototype = {$isStopSaving: 1}; A.DownloadPurchaseOrdersFailure.prototype = {$isStopSaving: 1}; A.AcceptPurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.AcceptPurchaseOrderSuccess.prototype = {$isStopSaving: 1}; A.AcceptPurchaseOrderFailure.prototype = {$isStopSaving: 1}; A.CancelPurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.CancelPurchaseOrderSuccess.prototype = {$isStopSaving: 1}; A.CancelPurchaseOrderFailure.prototype = {$isStopSaving: 1}; A.RestorePurchaseOrdersRequest.prototype = {$isStartSaving: 1}; A.RestorePurchaseOrdersSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestorePurchaseOrdersFailure.prototype = {$isStopSaving: 1}; A.EmailPurchaseOrderRequest.prototype = {$isStartSaving: 1, get$body(receiver) { return this.body; } }; A.EmailPurchaseOrderSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, get$purchaseOrder() { return this.purchaseOrder; } }; A.EmailPurchaseOrderFailure.prototype = {$isStopSaving: 1}; A.MarkPurchaseOrdersSentRequest.prototype = {$isStartSaving: 1}; A.MarkPurchaseOrderSentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.MarkPurchaseOrderSentFailure.prototype = {$isStopSaving: 1}; A.ConvertPurchaseOrdersToExpensesRequest.prototype = {$isStartSaving: 1}; A.ConvertPurchaseOrdersToExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ConvertPurchaseOrdersToExpensesFailure.prototype = {$isStopSaving: 1}; A.AddPurchaseOrdersToInventoryRequest.prototype = {$isStartSaving: 1}; A.AddPurchaseOrdersToInventorySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.AddPurchaseOrdersToInventoryFailure.prototype = {$isStopSaving: 1}; A.ApprovePurchaseOrderSuccess.prototype = {$isStopSaving: 1}; A.ApprovePurchaseOrderFailure.prototype = {$isStopSaving: 1}; A.AddPurchaseOrderContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.RemovePurchaseOrderContact.prototype = {$isPersistUI: 1}; A.AddPurchaseOrderItem.prototype = {$isPersistUI: 1}; A.MovePurchaseOrderItem.prototype = {$isPersistUI: 1}; A.AddPurchaseOrderItems.prototype = {$isPersistUI: 1}; A.UpdatePurchaseOrderItem.prototype = {$isPersistUI: 1}; A.DeletePurchaseOrderItem.prototype = {$isPersistUI: 1}; A.FilterPurchaseOrders.prototype = {$isPersistUI: 1}; A.SortPurchaseOrders.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterPurchaseOrdersByState.prototype = {$isPersistUI: 1}; A.FilterPurchaseOrdersByStatus.prototype = {$isPersistUI: 1}; A.FilterPurchaseOrdersByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPurchaseOrdersByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPurchaseOrdersByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterPurchaseOrdersByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartPurchaseOrderMultiselect.prototype = {}; A.AddToPurchaseOrderMultiselect.prototype = {}; A.RemoveFromPurchaseOrderMultiselect.prototype = {}; A.ClearPurchaseOrderMultiselect.prototype = {}; A.UpdatePurchaseOrderTab.prototype = {$isPersistUI: 1}; A.handlePurchaseOrderAction_closure.prototype = { call$1(purchaseOrder) { return purchaseOrder.get$id(purchaseOrder); }, $signature: 41 }; A.handlePurchaseOrderAction_closure0.prototype = { call$1(purchaseOrder) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!t2._list[t1].vendorState.$get$1(0, type$.legacy_InvoiceEntity._as(purchaseOrder).vendorId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 145 }; A.handlePurchaseOrderAction_closure1.prototype = { call$0() { var t1, t2; A.Navigator_of(this.context, false).pop$0(0); t1 = this.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; A.editEntity(null, t2._list[t1].vendorState.$get$1(0, this.purchaseOrder.vendorId), true, null); }, $signature: 1 }; A.handlePurchaseOrderAction_closure2.prototype = { call$1(_) { var t3, _this = this, _s23_ = "emailed_purchase_orders", t1 = _this.purchaseOrderIds, t2 = _this.localization; if (t1.length === 1) t2 = t2.get$emailedPurchaseOrder(); else { t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t2.localeCode), _s23_); if (t2 == null) t2 = J.$index$asx(t3.$index(0, "en"), _s23_); } t2 = A.snackBarCompleter(_this.context, t2, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.BulkEmailPurchaseOrdersRequest(t2, t1)); }, $signature: 11 }; A.handlePurchaseOrderAction_closure3.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handlePurchaseOrderAction_closure4.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_invoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handlePurchaseOrderAction_closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handlePurchaseOrderAction_closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_recurringInvoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A._viewPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewPurchaseOrder_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewPurchaseOrder_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewPurchaseOrder._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/purchase_order/view")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/purchase_order/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewPurchaseOrderList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s15_ = "/purchase_order"; next.call$1(type$.legacy_ViewPurchaseOrderList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s15_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s15_, new A._viewPurchaseOrderList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewPurchaseOrderList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._editPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var _s20_ = "/purchase_order/edit"; next.call$1(type$.legacy_EditPurchaseOrder._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s20_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s20_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._showEmailPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showEmailPurchaseOrder_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailPurchaseOrder_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailPurchaseOrder._as(dynamicAction); next.call$1(dynamicAction); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/purchase_order/email")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/purchase_order/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._showPdfPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfPurchaseOrder_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfPurchaseOrder_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfPurchaseOrder._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/purchase_order/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/purchase_order/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._archivePurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPurchaseOrders; type$.legacy_ArchivePurchaseOrdersRequest._as(dynamicAction); t1 = dynamicAction.purchaseOrderIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevPurchaseOrders = A.List_List$of(new A.MappedListIterable(t1, new A._archivePurchaseOrder__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archivePurchaseOrder__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archivePurchaseOrder__closure1(store, prevPurchaseOrders, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archivePurchaseOrder__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].purchaseOrderState.map._map$_map.$index(0, id); }, $signature: 68 }; A._archivePurchaseOrder__closure0.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.ArchivePurchaseOrdersSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._archivePurchaseOrder__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchivePurchaseOrdersFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deletePurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPurchaseOrders; type$.legacy_DeletePurchaseOrdersRequest._as(dynamicAction); t1 = dynamicAction.purchaseOrderIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevPurchaseOrders = A.List_List$of(new A.MappedListIterable(t1, new A._deletePurchaseOrder__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deletePurchaseOrder__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deletePurchaseOrder__closure1(store, prevPurchaseOrders, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deletePurchaseOrder__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].purchaseOrderState.map._map$_map.$index(0, id); }, $signature: 68 }; A._deletePurchaseOrder__closure0.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.DeletePurchaseOrdersSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._deletePurchaseOrder__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeletePurchaseOrdersFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restorePurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevPurchaseOrders; type$.legacy_RestorePurchaseOrdersRequest._as(dynamicAction); t1 = dynamicAction.purchaseOrderIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevPurchaseOrders = A.List_List$of(new A.MappedListIterable(t1, new A._restorePurchaseOrder__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restorePurchaseOrder__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restorePurchaseOrder__closure1(store, prevPurchaseOrders, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restorePurchaseOrder__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].purchaseOrderState.map._map$_map.$index(0, id); }, $signature: 68 }; A._restorePurchaseOrder__closure0.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.RestorePurchaseOrdersSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._restorePurchaseOrder__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestorePurchaseOrdersFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._approvePurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ApprovePurchaseOrders._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.get$purchaseOrderIds(), B.EntityAction_approve).then$1$1(0, new A._approvePurchaseOrder__closure(store, dynamicAction), type$.Null).catchError$1(new A._approvePurchaseOrder__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._approvePurchaseOrder__closure.prototype = { call$1(purchaseOrders) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ApprovePurchaseOrderSuccess(purchaseOrders)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.get$completer().complete$1(0, null); }, $signature: 32 }; A._approvePurchaseOrder__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ApprovePurchaseOrderFailure()); this.action.get$completer().completeError$1(error); }, $signature: 3 }; A._markSentPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkPurchaseOrdersSentRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_markSent).then$1$1(0, new A._markSentPurchaseOrder__closure(store, dynamicAction), type$.Null).catchError$1(new A._markSentPurchaseOrder__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markSentPurchaseOrder__closure.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.MarkPurchaseOrderSentSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markSentPurchaseOrder__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkPurchaseOrderSentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._convertPurchaseOrdersToExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ConvertPurchaseOrdersToExpensesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_convertToExpense).then$1$1(0, new A._convertPurchaseOrdersToExpense__closure(store, dynamicAction), type$.Null).catchError$1(new A._convertPurchaseOrdersToExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._convertPurchaseOrdersToExpense__closure.prototype = { call$1(purchaseOrders) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ConvertPurchaseOrdersToExpensesSuccess(purchaseOrders)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._convertPurchaseOrdersToExpense__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ConvertPurchaseOrdersToExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._addPurchaseOrdersToInventory_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_AddPurchaseOrdersToInventoryRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_addToInventory).then$1$1(0, new A._addPurchaseOrdersToInventory__closure(store, dynamicAction), type$.Null).catchError$1(new A._addPurchaseOrdersToInventory__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._addPurchaseOrdersToInventory__closure.prototype = { call$1(purchaseOrders) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.AddPurchaseOrdersToInventorySuccess(purchaseOrders)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._addPurchaseOrdersToInventory__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.AddPurchaseOrdersToInventoryFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._acceptPurchaseOrders_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_AcceptPurchaseOrdersRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_accept).then$1$1(0, new A._acceptPurchaseOrders__closure(store, dynamicAction), type$.Null).catchError$1(new A._acceptPurchaseOrders__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._acceptPurchaseOrders__closure.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.AcceptPurchaseOrderSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._acceptPurchaseOrders__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.AcceptPurchaseOrderFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._cancelPurchaseOrders_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_CancelPurchaseOrdersRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_cancel).then$1$1(0, new A._cancelPurchaseOrders__closure(store, dynamicAction), type$.Null).catchError$1(new A._cancelPurchaseOrders__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._cancelPurchaseOrders__closure.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.CancelPurchaseOrderSuccess(purchaseOrders)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._cancelPurchaseOrders__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.CancelPurchaseOrderFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._emailPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, origPurchaseOrder; type$.legacy_EmailPurchaseOrderRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].purchaseOrderState.map; t2 = dynamicAction.purchaseOrderId; origPurchaseOrder = t1._map$_map.$index(0, t2); this.repository.emailPurchaseOrder$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), origPurchaseOrder, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new A._emailPurchaseOrder__closure(store, dynamicAction), type$.Null).catchError$1(new A._emailPurchaseOrder__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._emailPurchaseOrder__closure.prototype = { call$1(purchaseOrder) { this.store.get$_dispatchers()[0].call$1(new A.EmailPurchaseOrderSuccess(purchaseOrder)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._emailPurchaseOrder__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.EmailPurchaseOrderFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._savePurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { var updatedPurchaseOrder; type$.legacy_SavePurchaseOrderRequest._as(dynamicAction); updatedPurchaseOrder = dynamicAction.purchaseOrder.rebuild$1(new A._savePurchaseOrder__closure(dynamicAction)); this.repository.saveData$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), updatedPurchaseOrder, dynamicAction.action).then$1$1(0, new A._savePurchaseOrder__closure0(dynamicAction, store), type$.Null).catchError$1(new A._savePurchaseOrder__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._savePurchaseOrder__closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.purchaseOrder.lineItems._list; t1.replace$1(0, new A.WhereIterable(t2, new A._savePurchaseOrder___closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); return b; }, $signature: 6 }; A._savePurchaseOrder___closure.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._savePurchaseOrder__closure0.prototype = { call$1(purchaseOrder) { var t1 = this.action, t2 = this.store; if (t1.purchaseOrder.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddPurchaseOrderSuccess(purchaseOrder)); else t2.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderSuccess(purchaseOrder)); if (t1.action === B.EntityAction_convertToInvoice) t2.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, purchaseOrder); }, $signature: 64 }; A._savePurchaseOrder__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPurchaseOrder_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadPurchaseOrder._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrderRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderId).then$1$1(0, new A._loadPurchaseOrder__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadPurchaseOrder__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPurchaseOrder__closure.prototype = { call$1(purchaseOrder) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrderSuccess(purchaseOrder)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 64 }; A._loadPurchaseOrder__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrderFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._downloadPurchaseOrders_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DownloadPurchaseOrdersRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_bulkDownload).then$1$1(0, new A._downloadPurchaseOrders__closure(store, dynamicAction), type$.Null).catchError$1(new A._downloadPurchaseOrders__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._downloadPurchaseOrders__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.DownloadPurchaseOrdersSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._downloadPurchaseOrders__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DownloadPurchaseOrdersFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._bulkEmailPurchaseOrders_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_BulkEmailPurchaseOrdersRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrderIds, B.EntityAction_sendEmail).then$1$1(0, new A._bulkEmailPurchaseOrders__closure(store, dynamicAction), type$.Null).catchError$1(new A._bulkEmailPurchaseOrders__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._bulkEmailPurchaseOrders__closure.prototype = { call$1(purchaseOrders) { this.store.get$_dispatchers()[0].call$1(new A.BulkEmailPurchaseOrdersSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._bulkEmailPurchaseOrders__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.BulkEmailPurchaseOrdersFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadPurchaseOrders_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3, t4; type$.legacy_LoadPurchaseOrders._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrdersRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$createdAtLimit(); t4 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$4(t1, t2, t3, t4).then$1$1(0, new A._loadPurchaseOrders__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadPurchaseOrders__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadPurchaseOrders__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrdersSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrders(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadExpenses()); }, $signature: 231 }; A._loadPurchaseOrders__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrdersFailure(error)); }, $signature: 3 }; A._saveDocument_closure3.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SavePurchaseOrderDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.purchaseOrder, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure7(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure8(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure7.prototype = { call$1(purchaseOrder) { this.store.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderSuccess(purchaseOrder)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._saveDocument__closure8.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.purchaseOrderUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$purchaseOrderListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer20().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._invoice_model$_$v = t1; t1 = $.$get$editingItemReducer1().call$2(t2.editingItemIndex, t3); b.get$_purchase_order_state$_$this()._purchase_order_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer20().call$2(t2.selectedId, t3); b.get$_purchase_order_state$_$this()._purchase_order_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer20().call$2(t2.forceSelected, t3); b.get$_purchase_order_state$_$this()._purchase_order_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer9().call$2(t2.tabIndex, t3); b.get$_purchase_order_state$_$this()._purchase_order_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer2().call$2(t2.historyActivityId, t3); b.get$_purchase_order_state$_$this()._purchase_order_state$_historyActivityId = t3; return b; }, $signature: 1516 }; A.forceSelectedReducer_closure159.prototype = { call$2(completer, action) { return true; }, $signature: 1517 }; A.forceSelectedReducer_closure160.prototype = { call$2(completer, action) { return false; }, $signature: 1518 }; A.forceSelectedReducer_closure161.prototype = { call$2(completer, action) { return false; }, $signature: 1519 }; A.forceSelectedReducer_closure162.prototype = { call$2(completer, action) { return false; }, $signature: 1520 }; A.forceSelectedReducer_closure163.prototype = { call$2(completer, action) { return false; }, $signature: 1521 }; A.forceSelectedReducer_closure164.prototype = { call$2(completer, action) { return false; }, $signature: 1522 }; A.forceSelectedReducer_closure165.prototype = { call$2(completer, action) { return false; }, $signature: 1523 }; A.forceSelectedReducer_closure166.prototype = { call$2(completer, action) { return false; }, $signature: 1524 }; A.tabIndexReducer_closure19.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1525 }; A.tabIndexReducer_closure20.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.historyActivityIdReducer_closure2.prototype = { call$2(index, action) { return action.activityId; }, $signature: 585 }; A.editingItemReducer_closure3.prototype = { call$2(index, action) { action.toString; return null; }, $signature: 1527 }; A.editingItemReducer_closure4.prototype = { call$2(index, action) { return action.itemIndex; }, $signature: 1528 }; A.selectedIdReducer_closure316.prototype = { call$2(completer, action) { return ""; }, $signature: 1529 }; A.selectedIdReducer_closure317.prototype = { call$2(completer, action) { return ""; }, $signature: 1530 }; A.selectedIdReducer_closure318.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_purchaseOrder ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure319.prototype = { call$2(selectedId, action) { return action.purchaseOrderId; }, $signature: 1531 }; A.selectedIdReducer_closure320.prototype = { call$2(selectedId, action) { return action.purchaseOrder.id; }, $signature: 1532 }; A.selectedIdReducer_closure321.prototype = { call$2(selectedId, action) { return action.purchaseOrder.id; }, $signature: 1533 }; A.selectedIdReducer_closure322.prototype = { call$2(selectedId, action) { return action.purchaseOrder.id; }, $signature: 585 }; A.selectedIdReducer_closure323.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure324.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure325.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1534 }; A.selectedIdReducer_closure326.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1535 }; A.selectedIdReducer_closure327.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1536 }; A.selectedIdReducer_closure328.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1537 }; A.selectedIdReducer_closure329.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1538 }; A.selectedIdReducer_closure330.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1539 }; A.selectedIdReducer_closure331.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1540 }; A.selectedIdReducer_closure332.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1541 }; A.selectedIdReducer_closure333.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_purchaseOrder ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure334.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_purchaseOrder ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure103.prototype = { call$2(purchaseOrder, action) { return action.purchaseOrder.rebuild$1(new A.editingReducer__closure44()); }, $signature: 1542 }; A.editingReducer__closure44.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure104.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure43()); }, $signature: 584 }; A.editingReducer__closure43.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure105.prototype = { call$2(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, $signature: 1544 }; A.editingReducer_closure106.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure42()); }, $signature: 583 }; A.editingReducer__closure42.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure107.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure41()); }, $signature: 582 }; A.editingReducer__closure41.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure108.prototype = { call$2(purchaseOrder, action) { return purchaseOrder.rebuild$1(new A.editingReducer__closure40(action.vendor)); }, $signature: 1547 }; A.editingReducer__closure40.prototype = { call$1(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.vendor; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._vendorId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_VendorContactEntity); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, A.List_List$of(new A.MappedListIterable(t1, new A.editingReducer___closure2(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.editingReducer___closure2.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, $signature: 453 }; A.editingReducer_closure109.prototype = { call$2(purchaseOrders, action) { return J.$index$asx(action.purchaseOrders, 0); }, $signature: 1548 }; A.editingReducer_closure110.prototype = { call$2(purchaseOrders, action) { return J.$index$asx(action.purchaseOrders, 0); }, $signature: 1549 }; A.editingReducer_closure111.prototype = { call$2(purchaseOrders, action) { return J.$index$asx(action.purchaseOrders, 0); }, $signature: 1550 }; A.editingReducer_closure112.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure39(action)); }, $signature: 1551 }; A.editingReducer__closure39.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? A.InvitationEntity_InvitationEntity(null, t2.contact.id) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A.editingReducer_closure113.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure38(action)); }, $signature: 1552 }; A.editingReducer__closure38.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addPurchaseOrderItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.purchaseOrderItem; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addPurchaseOrderItems_closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.action.lineItems); return b; }, $signature: 6 }; A._removePurchaseOrderItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 6 }; A._updatePurchaseOrderItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2.index] = t2.purchaseOrderItem; return b; }, $signature: 6 }; A._viewPurchaseOrderList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterPurchaseOrdersByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrdersByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterPurchaseOrdersByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrdersByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterPurchaseOrdersByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterPurchaseOrders_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.purchaseOrderListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortPurchaseOrders_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure20.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure20.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure20.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure20.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._markSentPurchaseOrderSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._markSentPurchaseOrderSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._markSentPurchaseOrderSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._convertPurchaseOrdersToExpenses_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._convertPurchaseOrdersToExpenses_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._convertPurchaseOrdersToExpenses_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._addPurchaseOrdersToInventorySuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._addPurchaseOrdersToInventorySuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._addPurchaseOrdersToInventorySuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._acceptPurchaseOrderSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._acceptPurchaseOrderSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._acceptPurchaseOrderSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._cancelPurchaseOrderSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._cancelPurchaseOrderSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._cancelPurchaseOrderSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._archivePurchaseOrderSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.purchaseOrders), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_purchase_order_state$_$this(); t5 = t4._purchase_order_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._purchase_order_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 380 }; A._deletePurchaseOrderSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.purchaseOrders), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_purchase_order_state$_$this(); t5 = t4._purchase_order_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._purchase_order_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 380 }; A._restorePurchaseOrderSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.purchaseOrders), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_purchase_order_state$_$this(); t5 = t4._purchase_order_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._purchase_order_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 380 }; A._emailPurchaseOrderSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.purchaseOrder; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 139 }; A._approvePurchaseOrderSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._approvePurchaseOrderSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._approvePurchaseOrderSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, $signature: 139 }; A._addPurchaseOrder_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.purchaseOrder, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addPurchaseOrder__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 139 }; A._addPurchaseOrder__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A._updatePurchaseOrder_closure.prototype = { call$1(b) { var t1 = this.purchaseOrder; b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updatePurchaseOrder__closure())); return b; }, $signature: 139 }; A._updatePurchaseOrder__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A.purchaseOrderContactSelector_closure.prototype = { call$1(invitation) { return invitation.clientContactId; }, $signature: 313 }; A.purchaseOrderContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, $signature: 194 }; A.memoizedFilteredPurchaseOrderList_closure.prototype = { call$7(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, invoiceListState, userMap) { return A.filteredPurchaseOrdersSelector(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, invoiceListState, userMap); }, $signature: 446 }; A.filteredPurchaseOrdersSelector_closure.prototype = { call$1(invoiceId) { var t2, _this = this, invoice = _this.invoiceMap._map$_map.$index(0, invoiceId), t1 = invoice.vendorId, vendor = _this.vendorMap._map$_map.$index(0, t1); if (vendor == null) vendor = A.VendorEntity_VendorEntity(t1, null, null); if (invoice.id === _this.selectionState.selectedId) return true; if (!(!vendor.get$isArchived() && !vendor.isDeleted)) t1 = !(vendor.id === _this.filterEntityId && vendor.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = _this.filterEntityType; if (t1 === B.EntityType_vendor && vendor.id !== _this.filterEntityId) return false; else if (t1 === B.EntityType_user && invoice.assignedUserId != _this.filterEntityId) return false; else if (t1 === B.EntityType_recurringInvoice && invoice.recurringId != _this.filterEntityId) return false; else if (t1 === B.EntityType_subscription && invoice.subscriptionId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_design && invoice.designId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_project && invoice.projectId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_quote && invoice.invoiceId != _this.filterEntityId) return false; else if (t1 === B.EntityType_client && invoice.clientId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_expense && invoice.expenseId !== _this.filterEntityId) return false; t1 = _this.invoiceListState; if (!invoice.matchesStates$1(t1.stateFilters)) return false; if (!invoice.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!invoice.matchesFilter$1(t2) && !vendor.matchesNameOrEmail$1(t2)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, invoice.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredPurchaseOrdersSelector_closure0.prototype = { call$2(invoiceAId, invoiceBId) { var t3, t4, _this = this, t1 = _this.invoiceMap._map$_map, t2 = t1.$index(0, invoiceAId); t1 = t1.$index(0, invoiceBId); t3 = _this.invoiceListState; t4 = t3.sortField; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1, t3.sortAscending, t4, _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedPurchaseOrderStatsForVendor_closure.prototype = { call$2(vendorId, purchaseOrderMap) { return A.purchaseOrderStatsForVendor(vendorId, purchaseOrderMap); }, $signature: 87 }; A.purchaseOrderStatsForVendor_closure.prototype = { call$2(purchaseOrderId, purchaseOrder) { if (purchaseOrder.vendorId === this.vendorId) if (!purchaseOrder.get$isArchived() && !purchaseOrder.isDeleted) ++this._box_0.countActive; else if (purchaseOrder.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.PurchaseOrderState.prototype = { $get$1(_, purchaseOrderId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, purchaseOrderId)) return t1.$index(0, purchaseOrderId); else return A.InvoiceEntity_InvoiceEntity(_null, _null, purchaseOrderId, _null, _null, _null); }, loadPurchaseOrders$1(clients) { return this.rebuild$1(new A.PurchaseOrderState_loadPurchaseOrders_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.PurchaseOrderState_loadPurchaseOrders_closure0(), new A.PurchaseOrderState_loadPurchaseOrders_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.PurchaseOrderState_loadPurchaseOrders_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.PurchaseOrderState_loadPurchaseOrders_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A.PurchaseOrderState_loadPurchaseOrders_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 139 }; A.PurchaseOrderUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$PurchaseOrderStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.PurchaseOrderStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_purchase_order_state$_$this(); t6 = t5._purchase_order_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._purchase_order_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_n67)); break; case "list": t5 = result.get$_purchase_order_state$_$this(); t6 = t5._purchase_order_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._purchase_order_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_apR; }, get$wireName() { return "PurchaseOrderState"; } }; A._$PurchaseOrderUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.PurchaseOrderUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_purchase_order_state$_$this(); t4 = t3._purchase_order_state$_editing; if (t4 == null) { t4 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t4); t3._purchase_order_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._invoice_model$_$v = t4; break; case "listUIState": t3 = result.get$_purchase_order_state$_$this(); t4 = t3._purchase_order_state$_listUIState; t3 = t4 == null ? t3._purchase_order_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_purchase_order_state$_$this()._purchase_order_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_purchase_order_state$_$this()._purchase_order_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_purchase_order_state$_$this()._purchase_order_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_AGi; }, get$wireName() { return "PurchaseOrderUIState"; } }; A._$PurchaseOrderState.prototype = { rebuild$1(updates) { var t1 = new A.PurchaseOrderStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._purchase_order_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PurchaseOrderState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._purchase_order_state$__hashCode; return t1 == null ? _this._purchase_order_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PurchaseOrderState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.PurchaseOrderStateBuilder.prototype = { get$map(_) { var t1 = this.get$_purchase_order_state$_$this(), t2 = t1._purchase_order_state$_map; return t2 == null ? t1._purchase_order_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list(_) { var t1 = this.get$_purchase_order_state$_$this(), t2 = t1._purchase_order_state$_list; return t2 == null ? t1._purchase_order_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_purchase_order_state$_$this() { var t1, t2, _this = this, $$v = _this._purchase_order_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._purchase_order_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._purchase_order_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._purchase_order_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._purchase_order_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$PurchaseOrderState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("PurchaseOrderState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._purchase_order_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$PurchaseOrderUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.PurchaseOrderUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._purchase_order_state$__hashCode; return t1 == null ? _this._purchase_order_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PurchaseOrderUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.PurchaseOrderUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_purchase_order_state$_$this(), t2 = t1._purchase_order_state$_editing; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); t1._purchase_order_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_purchase_order_state$_$this(), t2 = t1._purchase_order_state$_listUIState; return t2 == null ? t1._purchase_order_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_purchase_order_state$_$this() { var t1, t2, _this = this, $$v = _this._purchase_order_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._purchase_order_state$_editing = t1; _this._purchase_order_state$_editingItemIndex = $$v.editingItemIndex; _this._purchase_order_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._purchase_order_state$_listUIState = t2; _this._purchase_order_state$_selectedId = $$v.selectedId; _this._purchase_order_state$_forceSelected = $$v.forceSelected; _this._purchase_order_state$_tabIndex = $$v.tabIndex; _this._purchase_order_state$_saveCompleter = $$v.saveCompleter; _this._purchase_order_state$_cancelCompleter = $$v.cancelCompleter; _this._purchase_order_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s20_ = "PurchaseOrderUIState", _$result = null; try { _$result0 = _this._purchase_order_state$_$v; if (_$result0 == null) { t1 = _this._purchase_order_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_editingItemIndex; t3 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_selectedId; t6 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_forceSelected; t7 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s20_, "tabIndex")); t8 = _this.get$_purchase_order_state$_$this()._purchase_order_state$_saveCompleter; _$result0 = A._$PurchaseOrderUIState$_(_this.get$_purchase_order_state$_$this()._purchase_order_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._purchase_order_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._purchase_order_state$_$v = t1; return _$result; } }; A._PurchaseOrderUIState_Object_EntityUIState.prototype = {}; A.ViewQuoteList.prototype = {$isPersistUI: 1}; A.ViewQuote.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditQuote.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$quote() { return this.quote; } }; A.ShowEmailQuote.prototype = { get$quote() { return this.quote; } }; A.ShowPdfQuote.prototype = { get$quote() { return this.quote; } }; A.EditQuoteItem.prototype = {$isPersistUI: 1}; A.UpdateQuote.prototype = {$isPersistUI: 1, get$quote() { return this.quote; } }; A.UpdateQuoteClient.prototype = {$isPersistUI: 1}; A.LoadQuote.prototype = {}; A.LoadQuotes.prototype = {}; A.LoadQuoteRequest.prototype = {$isStartLoading: 1}; A.LoadQuoteFailure.prototype = { toString$0(_) { return "LoadQuoteFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadQuoteSuccess.prototype = { toString$0(_) { return "LoadQuoteSuccess{quote: " + A.S(this.quote) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$quote() { return this.quote; } }; A.LoadQuotesRequest.prototype = {$isStartLoading: 1}; A.LoadQuotesFailure.prototype = { toString$0(_) { return "LoadQuotesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadQuotesSuccess.prototype = { toString$0(_) { return "LoadQuotesSuccess{quotes: " + A.S(this.quotes) + "}"; }, $isStopLoading: 1 }; A.AddQuoteContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.RemoveQuoteContact.prototype = {$isPersistUI: 1}; A.AddQuoteItem.prototype = {$isPersistUI: 1}; A.MoveQuoteItem.prototype = {$isPersistUI: 1}; A.AddQuoteItems.prototype = {$isPersistUI: 1}; A.UpdateQuoteItem.prototype = {$isPersistUI: 1}; A.DeleteQuoteItem.prototype = {$isPersistUI: 1}; A.SaveQuoteRequest.prototype = {$isStartSaving: 1, get$quote() { return this.quote; } }; A.SaveQuoteSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$quote() { return this.quote; } }; A.AddQuoteSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$quote() { return this.quote; } }; A.SaveQuoteFailure.prototype = {$isStopSaving: 1}; A.EmailQuoteRequest.prototype = {$isStartSaving: 1, get$body(receiver) { return this.body; } }; A.EmailQuoteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, get$quote() { return this.quote; } }; A.EmailQuoteFailure.prototype = {$isStopSaving: 1}; A.MarkSentQuotesRequest.prototype = {$isStartSaving: 1}; A.MarkSentQuoteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.MarkSentQuoteFailure.prototype = {$isStopSaving: 1}; A.BulkEmailQuotesRequest.prototype = {$isStartSaving: 1}; A.BulkEmailQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.BulkEmailQuotesFailure.prototype = {$isStopSaving: 1}; A.ArchiveQuotesRequest.prototype = {$isStartSaving: 1}; A.ArchiveQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveQuotesFailure.prototype = {$isStopSaving: 1}; A.DeleteQuotesRequest.prototype = {$isStartSaving: 1}; A.DeleteQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteQuotesFailure.prototype = {$isStopSaving: 1}; A.DownloadQuotesRequest.prototype = {$isStartSaving: 1}; A.DownloadQuotesSuccess.prototype = {$isStopSaving: 1}; A.DownloadQuotesFailure.prototype = {$isStopSaving: 1}; A.RestoreQuotesRequest.prototype = {$isStartSaving: 1}; A.RestoreQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreQuotesFailure.prototype = {$isStopSaving: 1}; A.FilterQuotes.prototype = {$isPersistUI: 1}; A.SortQuotes.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterQuotesByState.prototype = {$isPersistUI: 1}; A.FilterQuotesByStatus.prototype = {$isPersistUI: 1}; A.FilterQuotesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterQuotesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterQuotesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterQuotesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.ConvertQuotes.prototype = {$isStartSaving: 1}; A.ConvertQuoteSuccess.prototype = {$isStopSaving: 1}; A.ConvertQuoteFailure.prototype = {$isStopSaving: 1}; A.ApproveQuotes.prototype = {$isStartSaving: 1}; A.ApproveQuoteSuccess.prototype = {$isStopSaving: 1}; A.ApproveQuoteFailure.prototype = {$isStopSaving: 1}; A.SaveQuoteDocumentRequest.prototype = {$isStartSaving: 1, get$quote() { return this.quote; } }; A.SaveQuoteDocumentFailure.prototype = {$isStopSaving: 1}; A.handleQuoteAction_closure.prototype = { call$1(quote) { return quote.get$id(quote); }, $signature: 41 }; A.handleQuoteAction_closure0.prototype = { call$1(quote) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!t2._list[t1].clientState.$get$1(0, type$.legacy_InvoiceEntity._as(quote).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 145 }; A.handleQuoteAction_closure1.prototype = { call$0() { var t1, t2; A.Navigator_of(this.context, false).pop$0(0); t1 = this.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; A.editEntity(null, t2._list[t1].clientState.$get$1(0, this.quote.clientId), true, null); }, $signature: 1 }; A.handleQuoteAction_closure2.prototype = { call$1(_) { var _this = this, t1 = _this.quoteIds, t2 = _this.localization; if (t1.length === 1) t2 = t2.get$emailedQuote(); else { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "emailed_quotes"); if (t2 == null) t2 = ""; } t2 = A.snackBarCompleter(_this.context, t2, false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.BulkEmailQuotesRequest(t2, t1)); }, $signature: 11 }; A.handleQuoteAction_closure3.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_purchaseOrder; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleQuoteAction_closure4.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_invoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleQuoteAction_closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleQuoteAction_closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_recurringInvoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleQuoteAction_closure7.prototype = { call$1(_) { return this.response.bodyBytes; }, $signature: 246 }; A.StartQuoteMultiselect.prototype = {}; A.AddToQuoteMultiselect.prototype = {}; A.RemoveFromQuoteMultiselect.prototype = {}; A.ClearQuoteMultiselect.prototype = {}; A.UpdateQuoteTab.prototype = {$isPersistUI: 1}; A._viewQuote_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewQuote_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewQuote._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote/view")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewQuoteList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewQuoteList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/quote", new A._viewQuoteList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewQuoteList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._editQuote_closure.prototype = { call$3(store, dynamicAction, next) { var _s11_ = "/quote/edit"; next.call$1(type$.legacy_EditQuote._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s11_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s11_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._showEmailQuote_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showEmailQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailQuote_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailQuote._as(dynamicAction); next.call$1(dynamicAction); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote/email")); $async$goto = A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return A._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._showPdfQuote_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfQuote_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfQuote._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._archiveQuote_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_ArchiveQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = A.List_List$of(new A.MappedListIterable(t1, new A._archiveQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveQuote__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].quoteState.map._map$_map.$index(0, id); }, $signature: 68 }; A._archiveQuote__closure0.prototype = { call$1(quotes) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._archiveQuote__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteQuote_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_DeleteQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = A.List_List$of(new A.MappedListIterable(t1, new A._deleteQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteQuote__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].quoteState.map._map$_map.$index(0, id); }, $signature: 68 }; A._deleteQuote__closure0.prototype = { call$1(quotes) { this.store.get$_dispatchers()[0].call$1(new A.DeleteQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._deleteQuote__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreQuote_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_RestoreQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = A.List_List$of(new A.MappedListIterable(t1, new A._restoreQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreQuote__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].quoteState.map._map$_map.$index(0, id); }, $signature: 68 }; A._restoreQuote__closure0.prototype = { call$1(quotes) { this.store.get$_dispatchers()[0].call$1(new A.RestoreQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._restoreQuote__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._convertQuote_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ConvertQuotes._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quoteIds, B.EntityAction_convertToInvoice).then$1$1(0, new A._convertQuote__closure(store, dynamicAction), type$.Null).catchError$1(new A._convertQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._convertQuote__closure.prototype = { call$1(quotes) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ConvertQuoteSuccess(quotes)); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._convertQuote__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ConvertQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._approveQuote_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ApproveQuotes._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quoteIds, B.EntityAction_approve).then$1$1(0, new A._approveQuote__closure(store, dynamicAction), type$.Null).catchError$1(new A._approveQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._approveQuote__closure.prototype = { call$1(quotes) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ApproveQuoteSuccess()); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._approveQuote__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ApproveQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._markSentQuote_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_MarkSentQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quoteIds, B.EntityAction_markSent).then$1$1(0, new A._markSentQuote__closure(store, dynamicAction), type$.Null).catchError$1(new A._markSentQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._markSentQuote__closure.prototype = { call$1(quotes) { this.store.get$_dispatchers()[0].call$1(new A.MarkSentQuoteSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._markSentQuote__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.MarkSentQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._emailQuote_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, origQuote; type$.legacy_EmailQuoteRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].quoteState.map; t2 = dynamicAction.quoteId; origQuote = t1._map$_map.$index(0, t2); this.repository.emailQuote$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), origQuote, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new A._emailQuote__closure(store, dynamicAction), type$.Null).catchError$1(new A._emailQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._emailQuote__closure.prototype = { call$1(quote) { this.store.get$_dispatchers()[0].call$1(new A.EmailQuoteSuccess(quote)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._emailQuote__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.EmailQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveQuote_closure.prototype = { call$3(store, dynamicAction, next) { var updatedQuote; type$.legacy_SaveQuoteRequest._as(dynamicAction); updatedQuote = dynamicAction.quote.rebuild$1(new A._saveQuote__closure(dynamicAction)); this.repository.saveData$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), updatedQuote, dynamicAction.action).then$1$1(0, new A._saveQuote__closure0(dynamicAction, store), type$.Null).catchError$1(new A._saveQuote__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveQuote__closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.quote.lineItems._list; t1.replace$1(0, new A.WhereIterable(t2, new A._saveQuote___closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); return b; }, $signature: 6 }; A._saveQuote___closure.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._saveQuote__closure0.prototype = { call$1(quote) { var t1 = this.action, t2 = this.store; if (t1.quote.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddQuoteSuccess(quote)); else t2.get$_dispatchers()[0].call$1(new A.SaveQuoteSuccess(quote)); if (t1.action === B.EntityAction_convertToInvoice) t2.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, quote); }, $signature: 64 }; A._saveQuote__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadQuote_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadQuote._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadQuoteRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quoteId).then$1$1(0, new A._loadQuote__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadQuote__closure.prototype = { call$1(quote) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadQuoteSuccess(quote)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 64 }; A._loadQuote__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadQuoteFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._downloadQuotes_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DownloadQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_bulkDownload).then$1$1(0, new A._downloadQuotes__closure(store, dynamicAction), type$.Null).catchError$1(new A._downloadQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._downloadQuotes__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.DownloadQuotesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._downloadQuotes__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DownloadQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._bulkEmailQuotes_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_BulkEmailQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quoteIds, B.EntityAction_sendEmail).then$1$1(0, new A._bulkEmailQuotes__closure(store, dynamicAction), type$.Null).catchError$1(new A._bulkEmailQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._bulkEmailQuotes__closure.prototype = { call$1(quotes) { this.store.get$_dispatchers()[0].call$1(new A.BulkEmailQuotesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._bulkEmailQuotes__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.BulkEmailQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadQuotes_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3, t4, t5; type$.legacy_LoadQuotes._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadQuotesRequest()); t1 = state.get$credentials(state); t2 = dynamicAction.page; t3 = state.get$createdAtLimit(); t4 = state.get$filterDeletedClients(); t5 = state.get$isHosted() ? 20000 : 5000; this.repository.loadList$5(t1, t2, t3, t4, t5).then$1$1(0, new A._loadQuotes__closure(store, state, dynamicAction), type$.Null).catchError$1(new A._loadQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadQuotes__closure.prototype = { call$1(data) { var t2, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadQuotesSuccess(data)); t2 = data._list.length; if (t2 === (this.state.get$isHosted() ? 20000 : 5000)) { t2 = this.action; t1.get$_dispatchers()[0].call$1(new A.LoadQuotes(t2.completer, t2.page + 1)); } else t1.get$_dispatchers()[0].call$1(new A.LoadCredits()); }, $signature: 231 }; A._loadQuotes__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadQuotesFailure(error)); }, $signature: 3 }; A._saveDocument_closure5.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveQuoteDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.quote, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure11(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure12(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveQuoteDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure11.prototype = { call$1(quote) { this.store.get$_dispatchers()[0].call$1(new A.SaveQuoteSuccess(quote)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._saveDocument__closure12.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveQuoteDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.quoteUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$quoteListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._invoice_model$_$v = t1; t1 = $.$get$editingItemReducer().call$2(t2.editingItemIndex, t3); b.get$_quote_state$_$this()._editingItemIndex = t1; t1 = $.$get$selectedIdReducer().call$2(t2.selectedId, t3); b.get$_quote_state$_$this()._selectedId = t1; t1 = $.$get$forceSelectedReducer().call$2(t2.forceSelected, t3); b.get$_quote_state$_$this()._forceSelected = t1; t1 = $.$get$tabIndexReducer().call$2(t2.tabIndex, t3); b.get$_quote_state$_$this()._quote_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer().call$2(t2.historyActivityId, t3); b.get$_quote_state$_$this()._historyActivityId = t3; return b; }, $signature: 1555 }; A.forceSelectedReducer_closure.prototype = { call$2(completer, action) { return true; }, $signature: 1556 }; A.forceSelectedReducer_closure0.prototype = { call$2(completer, action) { return false; }, $signature: 1557 }; A.forceSelectedReducer_closure1.prototype = { call$2(completer, action) { return false; }, $signature: 1558 }; A.forceSelectedReducer_closure2.prototype = { call$2(completer, action) { return false; }, $signature: 1559 }; A.forceSelectedReducer_closure3.prototype = { call$2(completer, action) { return false; }, $signature: 1560 }; A.forceSelectedReducer_closure4.prototype = { call$2(completer, action) { return false; }, $signature: 1561 }; A.forceSelectedReducer_closure5.prototype = { call$2(completer, action) { return false; }, $signature: 1562 }; A.forceSelectedReducer_closure6.prototype = { call$2(completer, action) { return false; }, $signature: 1563 }; A.tabIndexReducer_closure.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1564 }; A.tabIndexReducer_closure0.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.historyActivityIdReducer_closure.prototype = { call$2(index, action) { return action.activityId; }, $signature: 696 }; A.editingItemReducer_closure.prototype = { call$2(index, action) { return action.quoteItemIndex; }, $signature: 1566 }; A.editingItemReducer_closure0.prototype = { call$2(index, action) { return action.quoteItemIndex; }, $signature: 1567 }; A.selectedIdReducer_closure.prototype = { call$2(completer, action) { return ""; }, $signature: 1568 }; A.selectedIdReducer_closure0.prototype = { call$2(completer, action) { return ""; }, $signature: 1569 }; A.selectedIdReducer_closure1.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_quote ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure2.prototype = { call$2(selectedId, action) { return action.quoteId; }, $signature: 1570 }; A.selectedIdReducer_closure3.prototype = { call$2(selectedId, action) { return action.quote.id; }, $signature: 1571 }; A.selectedIdReducer_closure4.prototype = { call$2(selectedId, action) { return action.quote.id; }, $signature: 1572 }; A.selectedIdReducer_closure5.prototype = { call$2(selectedId, action) { return action.quote.id; }, $signature: 696 }; A.selectedIdReducer_closure6.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure7.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure8.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1573 }; A.selectedIdReducer_closure9.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1574 }; A.selectedIdReducer_closure10.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1575 }; A.selectedIdReducer_closure11.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1576 }; A.selectedIdReducer_closure12.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1577 }; A.selectedIdReducer_closure13.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1578 }; A.selectedIdReducer_closure14.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1579 }; A.selectedIdReducer_closure15.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1580 }; A.selectedIdReducer_closure16.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_quote ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure17.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_quote ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure.prototype = { call$2(quote, action) { return action.quote.rebuild$1(new A.editingReducer__closure5()); }, $signature: 1581 }; A.editingReducer__closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure0.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure4()); }, $signature: 578 }; A.editingReducer__closure4.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure1.prototype = { call$2(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, $signature: 1583 }; A.editingReducer_closure2.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure3()); }, $signature: 577 }; A.editingReducer__closure3.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure3.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure2()); }, $signature: 576 }; A.editingReducer__closure2.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure4.prototype = { call$2(quote, action) { return quote.rebuild$1(new A.editingReducer__closure1(action.client)); }, $signature: 1586 }; A.editingReducer__closure1.prototype = { call$1(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_ClientContactEntity); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, A.List_List$of(new A.MappedListIterable(t1, new A.editingReducer___closure(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.editingReducer___closure.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.editingReducer_closure5.prototype = { call$2(quotes, action) { return J.$index$asx(action.quotes, 0); }, $signature: 1587 }; A.editingReducer_closure6.prototype = { call$2(quotes, action) { return J.$index$asx(action.quotes, 0); }, $signature: 1588 }; A.editingReducer_closure7.prototype = { call$2(quotes, action) { return J.$index$asx(action.quotes, 0); }, $signature: 1589 }; A.editingReducer_closure8.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure0(action)); }, $signature: 1590 }; A.editingReducer__closure0.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? A.InvitationEntity_InvitationEntity(t2.contact.id, null) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A.editingReducer_closure9.prototype = { call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure(action)); }, $signature: 1591 }; A.editingReducer__closure.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addQuoteItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.quoteItem; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addQuoteItems_closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.action.quoteItems); return b; }, $signature: 6 }; A._removeQuoteItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 6 }; A._updateQuoteItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2.index] = t2.quoteItem; return b; }, $signature: 6 }; A._viewQuoteList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterQuotesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterQuotesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterQuotesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotesByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterQuotesByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotesByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterQuotesByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterQuotesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotesByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterQuotesByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterQuotes_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.quoteListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortQuotes_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._markSentQuoteSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._markSentQuoteSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._markSentQuoteSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.quoteMap); return b; }, $signature: 201 }; A._archiveQuoteSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 375 }; A._deleteQuoteSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 375 }; A._restoreQuoteSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 375 }; A._emailQuoteSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.quote; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 201 }; A._convertQuoteSuccess_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._convertQuoteSuccess_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A._convertQuoteSuccess_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, this.quoteMap); return b; }, $signature: 201 }; A._addQuote_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.quote, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addQuote__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 201 }; A._addQuote__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A._updateQuote_closure.prototype = { call$1(b) { var t1 = this.quote; b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateQuote__closure())); return b; }, $signature: 201 }; A._updateQuote__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A.quoteContactSelector_closure.prototype = { call$1(invitation) { return invitation.clientContactId; }, $signature: 313 }; A.quoteContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, $signature: 144 }; A.memoizedFilteredQuoteList_closure.prototype = { call$7(selectionState, quoteMap, quoteList, clientMap, vendorMap, quoteListState, userMap) { return A.filteredQuotesSelector(selectionState, quoteMap, quoteList, clientMap, vendorMap, quoteListState, userMap); }, $signature: 446 }; A.filteredQuotesSelector_closure.prototype = { call$1(quoteId) { var t2, _this = this, quote = _this.quoteMap._map$_map.$index(0, quoteId), t1 = quote.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (quote.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t2 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t2 = false; if (t2) return false; t2 = _this.filterEntityType; if (t2 === B.EntityType_client && t1 !== _this.filterEntityId) return false; else if (t2 === B.EntityType_user && quote.assignedUserId != _this.filterEntityId) return false; else if (t2 === B.EntityType_design && quote.designId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t2 === B.EntityType_invoice && quote.invoiceId != _this.filterEntityId) return false; t1 = _this.quoteListState; if (!quote.matchesStates$1(t1.stateFilters)) return false; else if (!quote.matchesStatuses$1(t1.statusFilters)) return false; else { t2 = t1.filter; if (!quote.matchesFilter$1(t2) && !client.matchesNameOrEmail$1(t2)) return false; } t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, quote.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, quote.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, quote.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, quote.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredQuotesSelector_closure0.prototype = { call$2(quoteAId, quoteBId) { var t3, t4, _this = this, t1 = _this.quoteMap._map$_map, t2 = t1.$index(0, quoteAId); t1 = t1.$index(0, quoteBId); t3 = _this.quoteListState; t4 = t3.sortField; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1, t3.sortAscending, t4, _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedQuoteStatsForClient_closure.prototype = { call$2(clientId, quoteMap) { return A.quoteStatsForClient(clientId, quoteMap); }, $signature: 87 }; A.quoteStatsForClient_closure.prototype = { call$2(quoteId, quote) { if (quote.clientId === this.clientId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedQuoteStatsForDesign_closure.prototype = { call$2(designId, quoteMap) { return A.quoteStatsForDesign(designId, quoteMap); }, $signature: 87 }; A.quoteStatsForDesign_closure.prototype = { call$2(quoteId, quote) { if (quote.designId === this.designId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedQuoteStatsForUser_closure.prototype = { call$2(userId, quoteMap) { return A.quoteStatsForUser(userId, quoteMap); }, $signature: 87 }; A.quoteStatsForUser_closure.prototype = { call$2(quoteId, quote) { if (quote.assignedUserId == this.userId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.QuoteState.prototype = { $get$1(_, quoteId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, quoteId)) return t1.$index(0, quoteId); else return A.InvoiceEntity_InvoiceEntity(_null, B.EntityType_quote, quoteId, _null, _null, _null); }, loadQuotes$1(quotes) { return this.rebuild$1(new A.QuoteState_loadQuotes_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(quotes, new A.QuoteState_loadQuotes_closure0(), new A.QuoteState_loadQuotes_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.QuoteState_loadQuotes_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.QuoteState_loadQuotes_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A.QuoteState_loadQuotes_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 201 }; A.QuoteUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$QuoteStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.QuoteStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_quote_state$_$this(); t6 = t5._quote_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._quote_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_n67)); break; case "list": t5 = result.get$_quote_state$_$this(); t6 = t5._quote_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._quote_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ad2; }, get$wireName() { return "QuoteState"; } }; A._$QuoteUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.QuoteUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_quote_state$_$this(); t4 = t3._editing; if (t4 == null) { t4 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t4); t3._editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._invoice_model$_$v = t4; break; case "listUIState": t3 = result.get$_quote_state$_$this(); t4 = t3._listUIState; t3 = t4 == null ? t3._listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_quote_state$_$this()._selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_quote_state$_$this()._forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_quote_state$_$this()._quote_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_SIL; }, get$wireName() { return "QuoteUIState"; } }; A._$QuoteState.prototype = { rebuild$1(updates) { var t1 = new A.QuoteStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._quote_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.QuoteState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._quote_state$__hashCode; return t1 == null ? _this._quote_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("QuoteState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.QuoteStateBuilder.prototype = { get$map(_) { var t1 = this.get$_quote_state$_$this(), t2 = t1._quote_state$_map; return t2 == null ? t1._quote_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list(_) { var t1 = this.get$_quote_state$_$this(), t2 = t1._quote_state$_list; return t2 == null ? t1._quote_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_quote_state$_$this() { var t1, t2, _this = this, $$v = _this._quote_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._quote_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._quote_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._quote_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._quote_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$QuoteState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("QuoteState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._quote_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$QuoteUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.QuoteUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._quote_state$__hashCode; return t1 == null ? _this._quote_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("QuoteUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.QuoteUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_quote_state$_$this(), t2 = t1._editing; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); t1._editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_quote_state$_$this(), t2 = t1._listUIState; return t2 == null ? t1._listUIState = new A.ListUIStateBuilder() : t2; }, get$_quote_state$_$this() { var t1, t2, _this = this, $$v = _this._quote_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._editing = t1; _this._editingItemIndex = $$v.editingItemIndex; _this._historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._listUIState = t2; _this._selectedId = $$v.selectedId; _this._forceSelected = $$v.forceSelected; _this._quote_state$_tabIndex = $$v.tabIndex; _this._saveCompleter = $$v.saveCompleter; _this._cancelCompleter = $$v.cancelCompleter; _this._quote_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s12_ = "QuoteUIState", _$result = null; try { _$result0 = _this._quote_state$_$v; if (_$result0 == null) { t1 = _this._editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_quote_state$_$this()._editingItemIndex; t3 = _this.get$_quote_state$_$this()._historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_quote_state$_$this()._selectedId; t6 = _this.get$_quote_state$_$this()._forceSelected; t7 = _this.get$_quote_state$_$this()._quote_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "tabIndex")); t8 = _this.get$_quote_state$_$this()._saveCompleter; _$result0 = A._$QuoteUIState$_(_this.get$_quote_state$_$this()._cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._quote_state$_$v = t1; return _$result; } }; A._QuoteUIState_Object_EntityUIState.prototype = {}; A.ViewRecurringExpenseList.prototype = {$isPersistUI: 1}; A.ViewRecurringExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringExpenseId() { return this.recurringExpenseId; } }; A.EditRecurringExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringExpense() { return this.recurringExpense; } }; A.UpdateRecurringExpense.prototype = {$isPersistUI: 1, get$recurringExpense() { return this.recurringExpense; } }; A.LoadRecurringExpense.prototype = { get$recurringExpenseId() { return this.recurringExpenseId; } }; A.LoadRecurringExpenses.prototype = {}; A.LoadRecurringExpenseRequest.prototype = {$isStartLoading: 1}; A.LoadRecurringExpenseFailure.prototype = { toString$0(_) { return "LoadRecurringExpenseFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadRecurringExpenseSuccess.prototype = { toString$0(_) { return "LoadRecurringExpenseSuccess{recurringExpense: " + A.S(this.recurringExpense) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$recurringExpense() { return this.recurringExpense; } }; A.LoadRecurringExpensesRequest.prototype = {$isStartLoading: 1}; A.LoadRecurringExpensesFailure.prototype = { toString$0(_) { return "LoadRecurringExpensesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadRecurringExpensesSuccess.prototype = { toString$0(_) { return "LoadRecurringExpensesSuccess{recurringExpenses: " + A.S(this.recurringExpenses) + "}"; }, $isStopLoading: 1 }; A.SaveRecurringExpenseRequest.prototype = {$isStartSaving: 1, get$recurringExpense() { return this.recurringExpense; } }; A.SaveRecurringExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringExpense() { return this.recurringExpense; } }; A.AddRecurringExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringExpense() { return this.recurringExpense; } }; A.SaveRecurringExpenseFailure.prototype = {$isStopSaving: 1}; A.ArchiveRecurringExpensesRequest.prototype = {$isStartSaving: 1}; A.ArchiveRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveRecurringExpensesFailure.prototype = {$isStopSaving: 1}; A.DeleteRecurringExpensesRequest.prototype = {$isStartSaving: 1}; A.DeleteRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteRecurringExpensesFailure.prototype = {$isStopSaving: 1}; A.RestoreRecurringExpensesRequest.prototype = {$isStartSaving: 1}; A.RestoreRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreRecurringExpensesFailure.prototype = {$isStopSaving: 1}; A.FilterRecurringExpenses.prototype = {$isPersistUI: 1}; A.SortRecurringExpenses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterRecurringExpensesByState.prototype = {$isPersistUI: 1}; A.FilterRecurringExpensesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringExpensesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringExpensesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringExpensesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartRecurringExpenseMultiselect.prototype = {}; A.AddToRecurringExpenseMultiselect.prototype = {}; A.RemoveFromRecurringExpenseMultiselect.prototype = {}; A.ClearRecurringExpenseMultiselect.prototype = {}; A.UpdateRecurringExpenseTab.prototype = {$isPersistUI: 1}; A.StartRecurringExpensesRequest.prototype = {$isStartSaving: 1}; A.StartRecurringExpensesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.StartRecurringExpensesFailure.prototype = {$isStopSaving: 1}; A.StopRecurringExpensesRequest.prototype = {$isStartSaving: 1}; A.StopRecurringExpensesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.StopRecurringExpensesFailure.prototype = {$isStopSaving: 1}; A.SaveRecurringExpenseDocumentRequest.prototype = {$isStartSaving: 1, get$expense() { return this.expense; } }; A.SaveRecurringExpenseDocumentFailure.prototype = {$isStopSaving: 1}; A.handleRecurringExpenseAction_closure.prototype = { call$1(recurringExpense) { return recurringExpense.get$id(recurringExpense); }, $signature: 41 }; A.handleRecurringExpenseAction_closure0.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; return b; }, $signature: 29 }; A.handleRecurringExpenseAction_closure1.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_recurringExpense; return b; }, $signature: 29 }; A._editRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { var _s23_ = "/recurring_expense/edit"; next.call$1(type$.legacy_EditRecurringExpense._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s23_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewRecurringExpense_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewRecurringExpense_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewRecurringExpense._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_expense/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewRecurringExpenseList_closure0.prototype = { call$3(store, dynamicAction, next) { var _s18_ = "/recurring_expense"; next.call$1(type$.legacy_ViewRecurringExpenseList._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s18_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s18_, new A._viewRecurringExpenseList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewRecurringExpenseList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_ArchiveRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._archiveRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveRecurringExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringExpenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._archiveRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._archiveRecurringExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_DeleteRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._deleteRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteRecurringExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringExpenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._deleteRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { this.store.get$_dispatchers()[0].call$1(new A.DeleteRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._deleteRecurringExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_RestoreRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = A.List_List$of(new A.MappedListIterable(t1, new A._restoreRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreRecurringExpense__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringExpenseState.map._map$_map.$index(0, id); }, $signature: 213 }; A._restoreRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { this.store.get$_dispatchers()[0].call$1(new A.RestoreRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._restoreRecurringExpense__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveRecurringExpenseRequest._as(dynamicAction); this.repository.saveData$3$action(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.recurringExpense, dynamicAction.action).then$1$1(0, new A._saveRecurringExpense__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveRecurringExpense__closure.prototype = { call$1(recurringExpense) { var t1 = this.action, t2 = this.store; if (t1.recurringExpense.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddRecurringExpenseSuccess(recurringExpense)); else t2.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseSuccess(recurringExpense)); t1.completer.complete$1(0, recurringExpense); }, $signature: 140 }; A._saveRecurringExpense__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringExpense._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpenseRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.recurringExpenseId).then$1$1(0, new A._loadRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadRecurringExpense__closure.prototype = { call$1(recurringExpense) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpenseSuccess(recurringExpense)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 140 }; A._loadRecurringExpense__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpenseFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadRecurringExpenses_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringExpenses._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpensesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadRecurringExpenses__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadRecurringExpenses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadRecurringExpenses__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadRecurringExpensesSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.PersistData()); }, $signature: 644 }; A._loadRecurringExpenses__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpensesFailure(error)); this.action.toString; }, $signature: 3 }; A._startRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_StartRecurringExpensesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expenseIds, B.EntityAction_start).then$1$1(0, new A._startRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new A._startRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._startRecurringExpense__closure.prototype = { call$1(expenses) { this.store.get$_dispatchers()[0].call$1(new A.StartRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._startRecurringExpense__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StartRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._stopRecurringExpense_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_StopRecurringExpensesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expenseIds, B.EntityAction_stop).then$1$1(0, new A._stopRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new A._stopRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._stopRecurringExpense__closure.prototype = { call$1(expenses) { this.store.get$_dispatchers()[0].call$1(new A.StopRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 175 }; A._stopRecurringExpense__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StopRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveDocument_closure2.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveRecurringExpenseDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.expense, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure5(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure6(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure5.prototype = { call$1(expense) { this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseSuccess(expense)); this.action.completer.complete$1(0, null); }, $signature: 140 }; A._saveDocument__closure6.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.recurringExpenseUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$recurringExpenseListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer19().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._expense_model$_$v = t1; t1 = $.$get$selectedIdReducer19().call$2(t2.selectedId, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer19().call$2(t2.forceSelected, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer8().call$2(t2.tabIndex, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex = t3; return b; }, $signature: 1594 }; A.forceSelectedReducer_closure151.prototype = { call$2(completer, action) { return true; }, $signature: 1595 }; A.forceSelectedReducer_closure152.prototype = { call$2(completer, action) { return false; }, $signature: 1596 }; A.forceSelectedReducer_closure153.prototype = { call$2(completer, action) { return false; }, $signature: 1597 }; A.forceSelectedReducer_closure154.prototype = { call$2(completer, action) { return false; }, $signature: 1598 }; A.forceSelectedReducer_closure155.prototype = { call$2(completer, action) { return false; }, $signature: 1599 }; A.forceSelectedReducer_closure156.prototype = { call$2(completer, action) { return false; }, $signature: 1600 }; A.forceSelectedReducer_closure157.prototype = { call$2(completer, action) { return false; }, $signature: 1601 }; A.forceSelectedReducer_closure158.prototype = { call$2(completer, action) { return false; }, $signature: 1602 }; A.tabIndexReducer_closure17.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1603 }; A.tabIndexReducer_closure18.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.selectedIdReducer_closure301.prototype = { call$2(completer, action) { return ""; }, $signature: 1604 }; A.selectedIdReducer_closure302.prototype = { call$2(completer, action) { return ""; }, $signature: 1605 }; A.selectedIdReducer_closure303.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_recurringExpense ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure304.prototype = { call$2(selectedId, action) { return action.get$recurringExpenseId(); }, $signature: 90 }; A.selectedIdReducer_closure305.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$recurringExpense()); }, $signature: 90 }; A.selectedIdReducer_closure306.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure307.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure308.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1606 }; A.selectedIdReducer_closure309.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1607 }; A.selectedIdReducer_closure310.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1608 }; A.selectedIdReducer_closure311.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1609 }; A.selectedIdReducer_closure312.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1610 }; A.selectedIdReducer_closure313.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1611 }; A.selectedIdReducer_closure314.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1612 }; A.selectedIdReducer_closure315.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_recurringExpense ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure99.prototype = { call$2(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, $signature: 1613 }; A.editingReducer_closure100.prototype = { call$2(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, $signature: 1614 }; A.editingReducer_closure101.prototype = { call$2(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, $signature: 1615 }; A.editingReducer_closure102.prototype = { call$2(recurringExpense, action) { return action.recurringExpense.rebuild$1(new A.editingReducer__closure37()); }, $signature: 1616 }; A.editingReducer__closure37.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_isChanged = true; return b; }, $signature: 29 }; A._viewRecurringExpenseList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterRecurringExpensesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringExpensesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringExpensesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringExpensesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringExpensesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterRecurringExpensesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringExpenses_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.recurringExpenseListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortRecurringExpenses_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure19.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure19.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure19.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure19.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveRecurringExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 267 }; A._deleteRecurringExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 267 }; A._restoreRecurringExpenseSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 267 }; A._addRecurringExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addRecurringExpense__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 345 }; A._addRecurringExpense__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 29 }; A._updateRecurringExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._updateRecurringExpense__closure())); return b; }, $signature: 345 }; A._updateRecurringExpense__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 29 }; A._startRecurringExpensesSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 267 }; A._stopRecurringExpensesSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 267 }; A._setLoadedRecurringExpense_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense; t1.$indexSet(0, t2.id, t2.rebuild$1(new A._setLoadedRecurringExpense__closure())); return b; }, $signature: 345 }; A._setLoadedRecurringExpense__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 29 }; A.memoizedFilteredRecurringExpenseList_closure.prototype = { call$9(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return A.filteredRecurringExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, $signature: 639 }; A.filteredRecurringExpensesSelector_closure.prototype = { call$1(expenseId) { var t2, vendor, t3, client, t4, _this = this, _null = null, expense = _this.expenseMap._map$_map.$index(0, expenseId), t1 = expense.categoryId, expenseCategory = _this.expenseCategoryMap._map$_map.$index(0, t1); if (expenseCategory == null) expenseCategory = A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); t2 = expense.vendorId; vendor = _this.vendorMap._map$_map.$index(0, t2); if (vendor == null) vendor = A.VendorEntity_VendorEntity(t2, _null, _null); t3 = expense.clientId; client = _this.clientMap._map$_map.$index(0, t3); if (client == null) client = A.ClientEntity_ClientEntity(_null, t3, _null, _null); if (expense.id === _this.selectionState.selectedId) return true; t4 = _this.filterEntityType; if (t4 != null) { if (t4 === B.EntityType_client && t3 != _this.filterEntityId) return false; else if (t4 === B.EntityType_vendor && t2 != _this.filterEntityId) return false; else if (t4 === B.EntityType_expenseCategory && t1 !== _this.filterEntityId) return false; else if (t4 === B.EntityType_user && expense.assignedUserId != _this.filterEntityId) return false; else if (t4 === B.EntityType_project && expense.projectId != _this.filterEntityId) return false; else if (t4 === B.EntityType_invoice && expense.invoiceId != _this.filterEntityId) return false; else if (t4 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; } else { if (t2 != null) t1 = !(!vendor.get$isArchived() && !vendor.isDeleted); else t1 = false; if (t1) return false; else { if (t3 != null) t1 = !(!client.get$isArchived() && !client.isDeleted); else t1 = false; if (t1) return false; } } t1 = _this.expenseListState; if (!expense.matchesStates$1(t1.stateFilters)) return false; if (!expense.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue3)) return false; else { t2 = t1.custom4Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, expense.customValue4)) return false; } } } t1 = t1.filter; return expense.matchesFilter$1(t1) || expenseCategory.matchesFilter$1(t1) || client.matchesNameOrEmail$1(t1) || vendor.matchesNameOrEmail$1(t1); }, $signature: 16 }; A.filteredRecurringExpensesSelector_closure0.prototype = { call$2(expenseAId, expenseBId) { var _this = this, t1 = _this.expenseMap._map$_map, t2 = _this.expenseListState; return t1.$index(0, expenseAId).compareTo$9(0, t1.$index(0, expenseBId), t2.sortField, t2.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, $signature: 19 }; A.memoizedRecurringExpenseStatsForClient_closure.prototype = { call$2(clientId, expenseMap) { return A.recurringExpenseStatsForClient(clientId, expenseMap); }, $signature: 156 }; A.recurringExpenseStatsForClient_closure.prototype = { call$2(expenseId, expense) { if (expense.clientId == this.clientId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedRecurringExpenseStatsForVendor_closure.prototype = { call$2(vendorId, expenseMap) { return A.recurringExpenseStatsForVendor(vendorId, expenseMap); }, $signature: 156 }; A.recurringExpenseStatsForVendor_closure.prototype = { call$2(expenseId, expense) { if (expense.vendorId == this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedRecurringExpenseStatsForUser_closure.prototype = { call$2(userId, expenseMap) { return A.recurringExpenseStatsForUser(userId, expenseMap); }, $signature: 156 }; A.recurringExpenseStatsForUser_closure.prototype = { call$2(expenseId, expense) { if (expense.assignedUserId == this.userId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.isDeleted) ++this._box_0.countArchived; }, $signature: 113 }; A.memoizedRecurringExpenseStatsForExpense_closure.prototype = { call$2(expenseId, expenseMap) { return A.recurringExpenseStatsForExpense(expenseId, expenseMap); }, $signature: 156 }; A.recurringExpenseStatsForExpense_closure.prototype = { call$2(expenseId, expense) { if (expense.recurringId == this.recurrigExpenseId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.isDeleted) ++this._box_0.countArchived; }, $signature: 113 }; A.RecurringExpenseState.prototype = { $get$1(_, recurringExpenseId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, recurringExpenseId)) return t1.$index(0, recurringExpenseId); else return A.ExpenseEntity_ExpenseEntity(_null, _null, recurringExpenseId, _null, _null, _null, _null); }, loadRecurringExpenses$1(clients) { return this.rebuild$1(new A.RecurringExpenseState_loadRecurringExpenses_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.RecurringExpenseState_loadRecurringExpenses_closure0(), new A.RecurringExpenseState_loadRecurringExpenses_closure1(), type$.legacy_String, type$.legacy_ExpenseEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.RecurringExpenseState_loadRecurringExpenses_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.RecurringExpenseState_loadRecurringExpenses_closure1.prototype = { call$1(item) { return item; }, $signature: 636 }; A.RecurringExpenseState_loadRecurringExpenses_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 345 }; A.RecurringExpenseUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$RecurringExpenseStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_6Ps), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.RecurringExpenseStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_recurring_expense_state$_$this(); t6 = t5._recurring_expense_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._recurring_expense_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_6Ps)); break; case "list": t5 = result.get$_recurring_expense_state$_$this(); t6 = t5._recurring_expense_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._recurring_expense_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wD4; }, get$wireName() { return "RecurringExpenseState"; } }; A._$RecurringExpenseUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_UcG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.RecurringExpenseUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_recurring_expense_state$_$this(); t4 = t3._recurring_expense_state$_editing; if (t4 == null) { t4 = new A.ExpenseEntityBuilder(); t4.get$_expense_model$_$this()._expense_model$_entityType = B.EntityType_expense; t4.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t4.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t4.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t4.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._recurring_expense_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_UcG)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._expense_model$_$v = t4; break; case "listUIState": t3 = result.get$_recurring_expense_state$_$this(); t4 = t3._recurring_expense_state$_listUIState; t3 = t4 == null ? t3._recurring_expense_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_a9w; }, get$wireName() { return "RecurringExpenseUIState"; } }; A._$RecurringExpenseState.prototype = { rebuild$1(updates) { var t1 = new A.RecurringExpenseStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._recurring_expense_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.RecurringExpenseState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._recurring_expense_state$__hashCode; return t1 == null ? _this._recurring_expense_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringExpenseState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.RecurringExpenseStateBuilder.prototype = { get$map(_) { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_map; return t2 == null ? t1._recurring_expense_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity) : t2; }, get$list(_) { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_list; return t2 == null ? t1._recurring_expense_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_recurring_expense_state$_$this() { var t1, t2, _this = this, $$v = _this._recurring_expense_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._recurring_expense_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._recurring_expense_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._recurring_expense_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._recurring_expense_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$RecurringExpenseState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("RecurringExpenseState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._recurring_expense_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$RecurringExpenseUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.RecurringExpenseUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._recurring_expense_state$__hashCode; return t1 == null ? _this._recurring_expense_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringExpenseUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.RecurringExpenseUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_editing; if (t2 == null) { t2 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t2); t1._recurring_expense_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_listUIState; return t2 == null ? t1._recurring_expense_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_recurring_expense_state$_$this() { var t1, t2, _this = this, $$v = _this._recurring_expense_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ExpenseEntityBuilder(); A.ExpenseEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._expense_model$_$v = t1; t1 = t2; } _this._recurring_expense_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._recurring_expense_state$_listUIState = t2; _this._recurring_expense_state$_selectedId = $$v.selectedId; _this._recurring_expense_state$_forceSelected = $$v.forceSelected; _this._recurring_expense_state$_tabIndex = $$v.tabIndex; _this._recurring_expense_state$_saveCompleter = $$v.saveCompleter; _this._recurring_expense_state$_cancelCompleter = $$v.cancelCompleter; _this._recurring_expense_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s23_ = "RecurringExpenseUIState", _$result = null; try { _$result0 = _this._recurring_expense_state$_$v; if (_$result0 == null) { t1 = _this._recurring_expense_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId; t4 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected; t5 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "tabIndex")); t6 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_saveCompleter; _$result0 = A._$RecurringExpenseUIState$_(_this.get$_recurring_expense_state$_$this()._recurring_expense_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._recurring_expense_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._recurring_expense_state$_$v = t1; return _$result; } }; A._RecurringExpenseUIState_Object_EntityUIState.prototype = {}; A.ViewRecurringInvoiceList.prototype = {$isPersistUI: 1}; A.ViewRecurringInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditRecurringInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.ShowPdfRecurringInvoice.prototype = { get$invoice() { return this.invoice; } }; A.EditRecurringInvoiceItem.prototype = {$isPersistUI: 1}; A.UpdateRecurringInvoice.prototype = {$isPersistUI: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.UpdateRecurringInvoiceClient.prototype = {$isPersistUI: 1}; A.LoadRecurringInvoice.prototype = {}; A.LoadRecurringInvoices.prototype = {}; A.LoadRecurringInvoiceRequest.prototype = {$isStartLoading: 1}; A.LoadRecurringInvoiceFailure.prototype = { toString$0(_) { return "LoadRecurringInvoiceFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadRecurringInvoiceSuccess.prototype = { toString$0(_) { return "LoadRecurringInvoiceSuccess{recurringInvoice: " + A.S(this.recurringInvoice) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.LoadRecurringInvoicesRequest.prototype = {$isStartLoading: 1}; A.LoadRecurringInvoicesFailure.prototype = { toString$0(_) { return "LoadRecurringInvoicesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadRecurringInvoicesSuccess.prototype = { toString$0(_) { return "LoadRecurringInvoicesSuccess{recurringInvoices: " + A.S(this.recurringInvoices) + "}"; }, $isStopLoading: 1 }; A.AddRecurringInvoiceContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.RemoveRecurringInvoiceContact.prototype = {$isPersistUI: 1}; A.SaveRecurringInvoiceRequest.prototype = {$isStartSaving: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.SaveRecurringInvoiceSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.AddRecurringInvoiceSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringInvoice() { return this.recurringInvoice; } }; A.AddRecurringInvoiceItem.prototype = {$isPersistUI: 1}; A.MoveRecurringInvoiceItem.prototype = {$isPersistUI: 1}; A.AddRecurringInvoiceItems.prototype = {$isPersistUI: 1}; A.UpdateRecurringInvoiceItem.prototype = {$isPersistUI: 1}; A.DeleteRecurringInvoiceItem.prototype = {$isPersistUI: 1}; A.SaveRecurringInvoiceFailure.prototype = {$isStopSaving: 1}; A.ArchiveRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.ArchiveRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.SendNowRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.SendNowRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.SendNowRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.DeleteRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.DeleteRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.RestoreRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.RestoreRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.FilterRecurringInvoices.prototype = {$isPersistUI: 1}; A.SortRecurringInvoices.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterRecurringInvoicesByState.prototype = {$isPersistUI: 1}; A.FilterRecurringInvoicesByStatus.prototype = {$isPersistUI: 1}; A.FilterRecurringInvoicesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringInvoicesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringInvoicesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterRecurringInvoicesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.SaveRecurringInvoiceDocumentRequest.prototype = {$isStartSaving: 1, get$invoice() { return this.invoice; } }; A.SaveRecurringInvoiceDocumentFailure.prototype = {$isStopSaving: 1}; A.StartRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.StartRecurringInvoicesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.StartRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.StopRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; A.StopRecurringInvoicesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.StopRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; A.handleRecurringInvoiceAction_closure.prototype = { call$1(recurringInvoice) { return recurringInvoice.get$id(recurringInvoice); }, $signature: 41 }; A.handleRecurringInvoiceAction_closure0.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_purchaseOrder; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleRecurringInvoiceAction_closure1.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_invoice; return b; }, $signature: 6 }; A.handleRecurringInvoiceAction_closure2.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.handleRecurringInvoiceAction_closure3.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = B.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 6 }; A.StartRecurringInvoiceMultiselect.prototype = {}; A.AddToRecurringInvoiceMultiselect.prototype = {}; A.RemoveFromRecurringInvoiceMultiselect.prototype = {}; A.ClearRecurringInvoiceMultiselect.prototype = {}; A.UpdateRecurringInvoiceTab.prototype = {$isPersistUI: 1}; A._editRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var _s23_ = "/recurring_invoice/edit"; next.call$1(type$.legacy_EditRecurringInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s23_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewRecurringInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewRecurringInvoice_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewRecurringInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_invoice/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_invoice/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewRecurringInvoiceList_closure.prototype = { call$3(store, dynamicAction, next) { var _s18_ = "/recurring_invoice"; next.call$1(type$.legacy_ViewRecurringInvoiceList._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s18_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s18_, new A._viewRecurringInvoiceList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewRecurringInvoiceList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._showPdfRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_showPdfRecurringInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfRecurringInvoice_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfRecurringInvoice._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_invoice/pdf")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_invoice/pdf", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._startRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_StartRecurringInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_start).then$1$1(0, new A._startRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._startRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._startRecurringInvoice__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.StartRecurringInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._startRecurringInvoice__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StartRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._stopRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_StopRecurringInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoiceIds, B.EntityAction_stop).then$1$1(0, new A._stopRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._stopRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._stopRecurringInvoice__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.StopRecurringInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._stopRecurringInvoice__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StopRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._sendNowRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SendNowRecurringInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.recurringInvoiceIds, B.EntityAction_sendNow).then$1$1(0, new A._sendNowRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._sendNowRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._sendNowRecurringInvoice__closure.prototype = { call$1(invoices) { this.store.get$_dispatchers()[0].call$1(new A.SendNowRecurringInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._sendNowRecurringInvoice__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SendNowRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._archiveRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_ArchiveRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._archiveRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveRecurringInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringInvoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._archiveRecurringInvoice__closure0.prototype = { call$1(recurringInvoices) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._archiveRecurringInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_DeleteRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._deleteRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteRecurringInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringInvoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._deleteRecurringInvoice__closure0.prototype = { call$1(recurringInvoices) { this.store.get$_dispatchers()[0].call$1(new A.DeleteRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._deleteRecurringInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_RestoreRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = A.List_List$of(new A.MappedListIterable(t1, new A._restoreRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreRecurringInvoice__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].recurringInvoiceState.map._map$_map.$index(0, id); }, $signature: 68 }; A._restoreRecurringInvoice__closure0.prototype = { call$1(recurringInvoices) { this.store.get$_dispatchers()[0].call$1(new A.RestoreRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 32 }; A._restoreRecurringInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var updatedInvoice; type$.legacy_SaveRecurringInvoiceRequest._as(dynamicAction); updatedInvoice = dynamicAction.recurringInvoice.rebuild$1(new A._saveRecurringInvoice__closure(dynamicAction)); this.repository.saveData$3$action(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), updatedInvoice, dynamicAction.action).then$1$1(0, new A._saveRecurringInvoice__closure0(dynamicAction, store), type$.Null).catchError$1(new A._saveRecurringInvoice__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveRecurringInvoice__closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action.recurringInvoice.lineItems._list; t1.replace$1(0, new A.WhereIterable(t2, new A._saveRecurringInvoice___closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); return b; }, $signature: 6 }; A._saveRecurringInvoice___closure.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._saveRecurringInvoice__closure0.prototype = { call$1(recurringInvoice) { var t1 = this.action, t2 = this.store; if (t1.recurringInvoice.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddRecurringInvoiceSuccess(recurringInvoice)); else t2.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceSuccess(recurringInvoice)); t1.completer.complete$1(0, recurringInvoice); }, $signature: 64 }; A._saveRecurringInvoice__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadRecurringInvoice_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringInvoice._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoiceRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.recurringInvoiceId).then$1$1(0, new A._loadRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadRecurringInvoice__closure.prototype = { call$1(recurringInvoice) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoiceSuccess(recurringInvoice)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 64 }; A._loadRecurringInvoice__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoiceFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadRecurringInvoices_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringInvoices._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoicesRequest()); this.repository.loadList$2(state.get$credentials(state), state.get$filterDeletedClients()).then$1$1(0, new A._loadRecurringInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadRecurringInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadRecurringInvoices__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoicesSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadPayments(null, 1)); }, $signature: 231 }; A._loadRecurringInvoices__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoicesFailure(error)); this.action.toString; }, $signature: 3 }; A._saveDocument_closure1.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveRecurringInvoiceDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.invoice, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure3(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure4(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure3.prototype = { call$1(invoice) { this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceSuccess(invoice)); this.action.completer.complete$1(0, null); }, $signature: 64 }; A._saveDocument__closure4.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.recurringInvoiceUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$recurringInvoiceListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer15().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._invoice_model$_$v = t1; t1 = $.$get$editingItemIndexReducer().call$2(t2.editingItemIndex, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer15().call$2(t2.selectedId, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer15().call$2(t2.forceSelected, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer6().call$2(t2.tabIndex, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer1().call$2(t2.historyActivityId, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_historyActivityId = t3; return b; }, $signature: 1619 }; A.forceSelectedReducer_closure119.prototype = { call$2(completer, action) { return true; }, $signature: 1620 }; A.forceSelectedReducer_closure120.prototype = { call$2(completer, action) { return false; }, $signature: 1621 }; A.forceSelectedReducer_closure121.prototype = { call$2(completer, action) { return false; }, $signature: 1622 }; A.forceSelectedReducer_closure122.prototype = { call$2(completer, action) { return false; }, $signature: 1623 }; A.forceSelectedReducer_closure123.prototype = { call$2(completer, action) { return false; }, $signature: 1624 }; A.forceSelectedReducer_closure124.prototype = { call$2(completer, action) { return false; }, $signature: 1625 }; A.forceSelectedReducer_closure125.prototype = { call$2(completer, action) { return false; }, $signature: 1626 }; A.forceSelectedReducer_closure126.prototype = { call$2(completer, action) { return false; }, $signature: 1627 }; A.tabIndexReducer_closure13.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1628 }; A.tabIndexReducer_closure14.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.historyActivityIdReducer_closure1.prototype = { call$2(index, action) { return action.activityId; }, $signature: 568 }; A.editingItemIndexReducer_closure.prototype = { call$2(index, action) { action.toString; return null; }, $signature: 1630 }; A.editingItemIndexReducer_closure0.prototype = { call$2(index, action) { return action.itemIndex; }, $signature: 1631 }; A.selectedIdReducer_closure237.prototype = { call$2(completer, action) { return ""; }, $signature: 1632 }; A.selectedIdReducer_closure238.prototype = { call$2(completer, action) { return ""; }, $signature: 1633 }; A.selectedIdReducer_closure239.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_recurringInvoice ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure240.prototype = { call$2(selectedId, action) { return action.recurringInvoiceId; }, $signature: 1634 }; A.selectedIdReducer_closure241.prototype = { call$2(selectedId, action) { return action.recurringInvoice.id; }, $signature: 1635 }; A.selectedIdReducer_closure242.prototype = { call$2(selectedId, action) { var t1 = action.get$invoice(); return t1.get$id(t1); }, $signature: 1636 }; A.selectedIdReducer_closure243.prototype = { call$2(selectedId, action) { return action.invoice.id; }, $signature: 568 }; A.selectedIdReducer_closure244.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure245.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure246.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1637 }; A.selectedIdReducer_closure247.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1638 }; A.selectedIdReducer_closure248.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1639 }; A.selectedIdReducer_closure249.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1640 }; A.selectedIdReducer_closure250.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1641 }; A.selectedIdReducer_closure251.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1642 }; A.selectedIdReducer_closure252.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1643 }; A.selectedIdReducer_closure253.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1644 }; A.selectedIdReducer_closure254.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_recurringInvoice ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure255.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_recurringInvoice ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure76.prototype = { call$2(recurringInvoice, action) { return action.recurringInvoice.rebuild$1(new A.editingReducer__closure33()); }, $signature: 1645 }; A.editingReducer__closure33.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure77.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure32()); }, $signature: 567 }; A.editingReducer__closure32.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure78.prototype = { call$2(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, $signature: 1647 }; A.editingReducer_closure79.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure31()); }, $signature: 565 }; A.editingReducer__closure31.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure80.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure30()); }, $signature: 564 }; A.editingReducer__closure30.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 6 }; A.editingReducer_closure81.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure29(action.client)); }, $signature: 1650 }; A.editingReducer__closure29.prototype = { call$1(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = A._setArrayType([], type$.JSArray_legacy_ClientContactEntity); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, A.List_List$of(new A.MappedListIterable(t1, new A.editingReducer___closure1(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 6 }; A.editingReducer___closure1.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.editingReducer_closure82.prototype = { call$2(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, $signature: 1651 }; A.editingReducer_closure83.prototype = { call$2(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, $signature: 1652 }; A.editingReducer_closure84.prototype = { call$2(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, $signature: 1653 }; A.editingReducer_closure85.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure28(action)); }, $signature: 1654 }; A.editingReducer__closure28.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? A.InvitationEntity_InvitationEntity(t2.contact.id, null) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A.editingReducer_closure86.prototype = { call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure27(action)); }, $signature: 1655 }; A.editingReducer__closure27.prototype = { call$1(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 6 }; A._addRecurringInvoiceItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), this.item); return b; }, $signature: 6 }; A._addRecurringInvoiceItems_closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.action.items); return b; }, $signature: 6 }; A._removeRecurringInvoiceItem_closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 6 }; A._updateRecurringInvoiceItem_closure.prototype = { call$1(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2.index] = t2.item; return b; }, $signature: 6 }; A._filterRecurringInvoicesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterRecurringInvoicesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterRecurringInvoicesByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoices_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.recurringInvoiceListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortRecurringInvoices_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure15.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure15.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure15.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure15.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveRecurringInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._deleteRecurringInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._emailRecurringInvoiceSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action, t3 = t2.get$invoice(); t1.$indexSet(0, t3.get$id(t3), t2.get$invoice()); return b; }, $signature: 353 }; A._restoreRecurringInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._sendNowRecurringInvoiceSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._startRecurringInvoicesSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._stopRecurringInvoicesSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 220 }; A._addRecurringInvoice_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.recurringInvoice, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addRecurringInvoice__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 353 }; A._addRecurringInvoice__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A._updateRecurringInvoice_closure.prototype = { call$1(b) { b.get$map(b).$indexSet(0, J.get$id$x(this.action.get$recurringInvoice()), this.recurringInvoice.rebuild$1(new A._updateRecurringInvoice__closure())); return b; }, $signature: 353 }; A._updateRecurringInvoice__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 6 }; A.memoizedFilteredRecurringInvoiceList_closure.prototype = { call$7(selectionState, recurringInvoiceMap, clientMap, vendorMap, recurringInvoiceList, recurringInvoiceListState, userMap) { return A.filteredRecurringInvoicesSelector(selectionState, recurringInvoiceMap, clientMap, vendorMap, recurringInvoiceList, recurringInvoiceListState, userMap); }, $signature: 1658 }; A.filteredRecurringInvoicesSelector_closure.prototype = { call$1(recurringInvoiceId) { var t2, _this = this, invoice = _this.recurringInvoiceMap._map$_map.$index(0, recurringInvoiceId), t1 = invoice.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (invoice.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = _this.filterEntityType; if (t1 === B.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t1 === B.EntityType_user && invoice.assignedUserId != _this.filterEntityId) return false; else if (t1 === B.EntityType_subscription && invoice.subscriptionId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_design && invoice.designId !== _this.filterEntityId) return false; else if (t1 === B.EntityType_group && client.groupId !== _this.filterEntityId) return false; t1 = _this.invoiceListState; if (!invoice.matchesStates$1(t1.stateFilters)) return false; if (!invoice.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!invoice.matchesFilter$1(t2) && !client.matchesNameOrEmail$1(t2)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, invoice.customValue3)) return false; else { t1 = t1.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, invoice.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredRecurringInvoicesSelector_closure0.prototype = { call$2(recurringInvoiceAId, recurringInvoiceBId) { var t2, _this = this, t1 = _this.recurringInvoiceMap._map$_map, recurringInvoiceA = t1.$index(0, recurringInvoiceAId), recurringInvoiceB = t1.$index(0, recurringInvoiceBId); t1 = _this.invoiceListState; t2 = t1.sortField; return recurringInvoiceA.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, recurringInvoiceB, t1.sortAscending, t2, _this.userMap, _this.vendorMap); }, $signature: 19 }; A.memoizedRecurringInvoiceStatsForClient_closure.prototype = { call$2(clientId, invoiceMap) { return A.recurringInvoiceStatsForClient(clientId, invoiceMap); }, $signature: 87 }; A.recurringInvoiceStatsForClient_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.clientId === this.clientId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedRecurringInvoiceStatsForUser_closure.prototype = { call$2(userId, invoiceMap) { return A.recurringInvoiceStatsForUser(userId, invoiceMap); }, $signature: 87 }; A.recurringInvoiceStatsForUser_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.assignedUserId == this.userId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedRecurringInvoiceStatsForInvoice_closure.prototype = { call$2(invoiceId, invoiceMap) { return A.recurringInvoiceStatsForInvoice(invoiceId, invoiceMap); }, $signature: 87 }; A.recurringInvoiceStatsForInvoice_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.recurringId == this.recurrinInvoiceId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedRecurringInvoiceStatsForDesign_closure.prototype = { call$2(designId, recurringInvoiceMap) { return A.recurringInvoiceStatsForDesign(designId, recurringInvoiceMap); }, $signature: 87 }; A.recurringInvoiceStatsForDesign_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.designId === this.designId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.memoizedRecurringInvoiceStatsForSubscription_closure.prototype = { call$2(subscriptionId, invoiceMap) { return A.recurringInvoiceStatsForSubscription(subscriptionId, invoiceMap); }, $signature: 87 }; A.recurringInvoiceStatsForSubscription_closure.prototype = { call$2(invoiceId, invoice) { if (invoice.subscriptionId === this.subscriptionId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 49 }; A.RecurringInvoiceState.prototype = { $get$1(_, invoiceId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, invoiceId)) return t1.$index(0, invoiceId); else return A.InvoiceEntity_InvoiceEntity(_null, _null, invoiceId, _null, _null, _null); }, loadRecurringInvoices$1(clients) { return this.rebuild$1(new A.RecurringInvoiceState_loadRecurringInvoices_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.RecurringInvoiceState_loadRecurringInvoices_closure0(), new A.RecurringInvoiceState_loadRecurringInvoices_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.RecurringInvoiceState_loadRecurringInvoices_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.RecurringInvoiceState_loadRecurringInvoices_closure1.prototype = { call$1(item) { return item; }, $signature: 99 }; A.RecurringInvoiceState_loadRecurringInvoices_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 353 }; A.RecurringInvoiceUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$RecurringInvoiceStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.RecurringInvoiceStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._recurring_invoice_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_n67)); break; case "list": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._recurring_invoice_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_8zm; }, get$wireName() { return "RecurringInvoiceState"; } }; A._$RecurringInvoiceUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.RecurringInvoiceUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_recurring_invoice_state$_$this(); t4 = t3._recurring_invoice_state$_editing; if (t4 == null) { t4 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t4); t3._recurring_invoice_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_fXI)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._invoice_model$_$v = t4; break; case "listUIState": t3 = result.get$_recurring_invoice_state$_$this(); t4 = t3._recurring_invoice_state$_listUIState; t3 = t4 == null ? t3._recurring_invoice_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_cMx; }, get$wireName() { return "RecurringInvoiceUIState"; } }; A._$RecurringInvoiceState.prototype = { rebuild$1(updates) { var t1 = new A.RecurringInvoiceStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._recurring_invoice_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.RecurringInvoiceState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._recurring_invoice_state$__hashCode; return t1 == null ? _this._recurring_invoice_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringInvoiceState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.RecurringInvoiceStateBuilder.prototype = { get$map(_) { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_map; return t2 == null ? t1._recurring_invoice_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list(_) { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_list; return t2 == null ? t1._recurring_invoice_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_recurring_invoice_state$_$this() { var t1, t2, _this = this, $$v = _this._recurring_invoice_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._recurring_invoice_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._recurring_invoice_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._recurring_invoice_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._recurring_invoice_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$RecurringInvoiceState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("RecurringInvoiceState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._recurring_invoice_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$RecurringInvoiceUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.RecurringInvoiceUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._recurring_invoice_state$__hashCode; return t1 == null ? _this._recurring_invoice_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringInvoiceUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.RecurringInvoiceUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_editing; if (t2 == null) { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); t1._recurring_invoice_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_listUIState; return t2 == null ? t1._recurring_invoice_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_recurring_invoice_state$_$this() { var t1, t2, _this = this, $$v = _this._recurring_invoice_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.InvoiceEntityBuilder(); A.InvoiceEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._invoice_model$_$v = t1; t1 = t2; } _this._recurring_invoice_state$_editing = t1; _this._recurring_invoice_state$_editingItemIndex = $$v.editingItemIndex; _this._recurring_invoice_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._recurring_invoice_state$_listUIState = t2; _this._recurring_invoice_state$_selectedId = $$v.selectedId; _this._recurring_invoice_state$_forceSelected = $$v.forceSelected; _this._recurring_invoice_state$_tabIndex = $$v.tabIndex; _this._recurring_invoice_state$_saveCompleter = $$v.saveCompleter; _this._recurring_invoice_state$_cancelCompleter = $$v.cancelCompleter; _this._recurring_invoice_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s23_ = "RecurringInvoiceUIState", _$result = null; try { _$result0 = _this._recurring_invoice_state$_$v; if (_$result0 == null) { t1 = _this._recurring_invoice_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_editingItemIndex; t3 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId; t6 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected; t7 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s23_, "tabIndex")); t8 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_saveCompleter; _$result0 = A._$RecurringInvoiceUIState$_(_this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._recurring_invoice_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._recurring_invoice_state$_$v = t1; return _$result; } }; A._RecurringInvoiceUIState_Object_EntityUIState.prototype = {}; A.ViewReports.prototype = {$isPersistUI: 1}; A.UpdateReportSettings.prototype = {$isPersistUI: 1, get$group() { return this.group; } }; A._viewReports_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ViewReports._as(dynamicAction); dynamicAction.toString; A.checkForChanges(new A._viewReports__closure(store, next, dynamicAction), false, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewReports__closure.prototype = { call$0() { var _s8_ = "/reports", t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s8_)); this.next.call$1(this.action); if (A._lateReadCheck(t1.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new A._viewReports___closure(), type$.legacy_Object); }, $signature: 1 }; A._viewReports___closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A.reportsUIReducer_closure.prototype = { call$1(b) { b.get$_reports_state$_$this()._group = ""; b.get$_reports_state$_$this()._subgroup = ""; b.get$_reports_state$_$this()._selectedGroup = ""; b.get$_reports_state$_$this()._chart = ""; return b; }, $signature: 367 }; A.reportsUIReducer_closure0.prototype = { call$1(b) { b.get$_reports_state$_$this()._report = this.action.report; return b; }, $signature: 367 }; A.reportsUIReducer_closure1.prototype = { call$1(b) { var t2, _this = this, t1 = _this.action; b.get$_reports_state$_$this()._report = t1.report; t2 = t1.group; if (t2 == null) t2 = _this.state.group; b.get$_reports_state$_$this()._group = t2; t2 = t1.selectedGroup; if (t2 == null) t2 = _this.state.selectedGroup; b.get$_reports_state$_$this()._selectedGroup = t2; t2 = t1.subgroup; if (t2 == null) t2 = _this.state.subgroup; b.get$_reports_state$_$this()._subgroup = t2; t2 = t1.chart; if (t2 == null) t2 = _this.state.chart; b.get$_reports_state$_$this()._chart = t2; t2 = t1.customStartDate; if (t2 == null) t2 = _this.state.customStartDate; b.get$_reports_state$_$this()._customStartDate = t2; t2 = t1.customEndDate; if (t2 == null) t2 = _this.state.customEndDate; b.get$_reports_state$_$this()._customEndDate = t2; t2 = b.get$filters(); t1 = t1.filters; t2.replace$1(0, t1 == null ? _this.state.filters : t1); return b; }, $signature: 367 }; A.ReportsUIState.prototype = { get$isGroupByFiltered() { var t1 = this.group, t2 = this.filters._map$_map; if (t2.containsKey$1(0, t1)) { t1 = t2.$index(0, t1); t1.toString; t1 = J.get$length$asx(t1) !== 0; } else t1 = false; return t1; } }; A._$ReportsUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["report", serializers.serialize$2$specifiedType(object.report, B.FullType_h8g), "group", serializers.serialize$2$specifiedType(object.group, B.FullType_h8g), "selectedGroup", serializers.serialize$2$specifiedType(object.selectedGroup, B.FullType_h8g), "chart", serializers.serialize$2$specifiedType(object.chart, B.FullType_h8g), "subgroup", serializers.serialize$2$specifiedType(object.subgroup, B.FullType_h8g), "customStartDate", serializers.serialize$2$specifiedType(object.customStartDate, B.FullType_h8g), "customEndDate", serializers.serialize$2$specifiedType(object.customEndDate, B.FullType_h8g), "filters", serializers.serialize$2$specifiedType(object.filters, B.FullType_LNO)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new A.ReportsUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "report": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._report = t2; break; case "group": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._group = t2; break; case "selectedGroup": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._selectedGroup = t2; break; case "chart": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._chart = t2; break; case "subgroup": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._subgroup = t2; break; case "customStartDate": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._customStartDate = t2; break; case "customEndDate": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_reports_state$_$this()._customEndDate = t2; break; case "filters": t2 = result.get$_reports_state$_$this(); t3 = t2._filters; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, B.Map_empty0); t2._filters = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_CHP; }, get$wireName() { return "ReportsUIState"; } }; A._$ReportsUIState.prototype = { rebuild$1(updates) { var t1 = new A.ReportsUIStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._reports_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ReportsUIState && _this.report === other.report && _this.group === other.group && _this.selectedGroup === other.selectedGroup && _this.chart === other.chart && _this.subgroup === other.subgroup && _this.customStartDate === other.customStartDate && _this.customEndDate === other.customEndDate && J.$eq$(_this.filters, other.filters); }, get$hashCode(_) { var _this = this, t1 = _this._reports_state$__hashCode; return t1 == null ? _this._reports_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSString_methods.get$hashCode(_this.report)), B.JSString_methods.get$hashCode(_this.group)), B.JSString_methods.get$hashCode(_this.selectedGroup)), B.JSString_methods.get$hashCode(_this.chart)), B.JSString_methods.get$hashCode(_this.subgroup)), B.JSString_methods.get$hashCode(_this.customStartDate)), B.JSString_methods.get$hashCode(_this.customEndDate)), J.get$hashCode$(_this.filters))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ReportsUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "report", _this.report); t2.add$2(t1, "group", _this.group); t2.add$2(t1, "selectedGroup", _this.selectedGroup); t2.add$2(t1, "chart", _this.chart); t2.add$2(t1, "subgroup", _this.subgroup); t2.add$2(t1, "customStartDate", _this.customStartDate); t2.add$2(t1, "customEndDate", _this.customEndDate); t2.add$2(t1, "filters", _this.filters); return t2.toString$0(t1); }, get$group() { return this.group; } }; A.ReportsUIStateBuilder.prototype = { get$group() { return this.get$_reports_state$_$this()._group; }, get$filters() { var t1 = this.get$_reports_state$_$this(), t2 = t1._filters; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._filters = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$_reports_state$_$this() { var t1, t2, _this = this, $$v = _this._reports_state$_$v; if ($$v != null) { _this._report = $$v.report; _this._group = $$v.group; _this._selectedGroup = $$v.selectedGroup; _this._chart = $$v.chart; _this._subgroup = $$v.subgroup; _this._customStartDate = $$v.customStartDate; _this._customEndDate = $$v.customEndDate; t1 = $$v.filters; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._filters = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._reports_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s14_ = "ReportsUIState", _$result = null; try { _$result0 = _this._reports_state$_$v; if (_$result0 == null) { t1 = _this.get$_reports_state$_$this()._report; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "report")); t2 = _this.get$_reports_state$_$this()._group; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "group")); t3 = _this.get$_reports_state$_$this()._selectedGroup; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "selectedGroup")); t4 = _this.get$_reports_state$_$this()._chart; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "chart")); t5 = _this.get$_reports_state$_$this()._subgroup; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "subgroup")); t6 = _this.get$_reports_state$_$this()._customStartDate; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "customStartDate")); t7 = _this.get$_reports_state$_$this()._customEndDate; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "customEndDate")); _$result0 = A._$ReportsUIState$_(t4, t7, t6, _this.get$filters().build$0(0), t2, t1, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "filters"; _this.get$filters().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._reports_state$_$v = t1; return _$result; } }; A.ViewSettings.prototype = {$isPersistUI: 1, get$company() { return this.company; }, get$group() { return this.group; }, get$user(receiver) { return this.user; } }; A.ClearSettingsFilter.prototype = {$isPersistUI: 1}; A.ResetSettings.prototype = {}; A.UpdateSettings.prototype = {$isPersistUI: 1}; A.UpdateSettingsTab.prototype = {$isPersistUI: 1}; A.UpdatedSetting.prototype = {$isPersistUI: 1}; A.UpdateSettingsTemplate.prototype = {$isPersistUI: 1}; A.UpdateUserSettings.prototype = {$isPersistUI: 1, get$user(receiver) { return this.user; } }; A.UploadLogoRequest.prototype = {$isStartSaving: 1}; A.UploadLogoFailure.prototype = {$isStopSaving: 1}; A.SaveUserSettingsRequest.prototype = {$isStartSaving: 1, get$user(receiver) { return this.user; } }; A.SaveUserSettingsSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; A.SaveUserSettingsFailure.prototype = {$isStopSaving: 1}; A.SaveAuthUserRequest.prototype = {$isStartSaving: 1, get$user(receiver) { return this.user; } }; A.SaveAuthUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user(receiver) { return this.user; } }; A.SaveAuthUserFailure.prototype = {$isStopSaving: 1}; A.ConnecOAuthUserRequest.prototype = {$isStartSaving: 1}; A.ConnecOAuthUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user(receiver) { return this.user; } }; A.ConnecOAuthUserFailure.prototype = {$isStopSaving: 1}; A.DisableTwoFactorRequest.prototype = {$isStartSaving: 1}; A.DisableTwoFactorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; A.DisableTwoFactorFailure.prototype = {$isStopSaving: 1}; A.ConnecGmailUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user(receiver) { return this.user; } }; A.ConnecGmailUserFailure.prototype = {$isStopSaving: 1}; A.FilterSettings.prototype = {$isPersistUI: 1}; A._viewSettings_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ViewSettings._as(dynamicAction); A.checkForChanges(new A._viewSettings__closure(dynamicAction, A._lateReadCheck(store.__Store__state, "_state").uiState, store, next), dynamicAction.force, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewSettings__closure.prototype = { call$0() { var route, t4, t5, t6, _this = this, t1 = _this.action, t2 = t1.section, t3 = t2 == null; if (!t3) route = "/settings" + ("/" + t2); else { t2 = _this.uiState; route = t2.get$mainRoute() === "settings" ? "/settings/company_details" : "/settings" + ("/" + t2.settingsUIState.section); } t2 = _this.store; t4 = A._lateReadCheck(t2.__Store__state, "_state"); t5 = t4.userCompanyStates; t6 = t4.uiState.selectedCompanyIndex; if (t5._list[t6].get$isStale() || t4.staticState.get$isStale()) t2.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t2.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(route)); _this.next.call$1(t1); if (A._lateReadCheck(t2.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) { t1 = type$.legacy_Object; if (t3) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/settings", new A._viewSettings___closure(), t1); else $.$get$navigatorKey().get$currentState().pushNamed$1$1(route, t1); } }, $signature: 1 }; A._viewSettings___closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._saveCompany_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveCompanyRequest._as(dynamicAction); this.settingsRepository.saveCompany$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.company).then$1$1(0, new A._saveCompany__closure(store, dynamicAction), type$.Null).catchError$1(new A._saveCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveCompany__closure.prototype = { call$1(company) { this.store.get$_dispatchers()[0].call$1(new A.SaveCompanySuccess(company)); this.action.completer.complete$0(0); }, $signature: 556 }; A._saveCompany__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveAuthUser_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveAuthUserRequest._as(dynamicAction); this.settingsRepository.saveAuthUser$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.user, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._saveAuthUser__closure(store, dynamicAction), type$.Null).catchError$1(new A._saveAuthUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveAuthUser__closure.prototype = { call$1(user) { var t1; this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserSuccess(user)); t1 = this.action.completer; if (t1 != null) t1.complete$0(0); }, $signature: 181 }; A._saveAuthUser__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SaveAuthUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._connectOAuthUser_closure0.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ConnecOAuthUserRequest._as(dynamicAction); this.settingsRepository.connectOAuthUser$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.provider, dynamicAction.password, dynamicAction.idToken, dynamicAction.accessToken).then$1$1(0, new A._connectOAuthUser__closure(store, dynamicAction), type$.Null).catchError$1(new A._connectOAuthUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._connectOAuthUser__closure.prototype = { call$1(user) { this.store.get$_dispatchers()[0].call$1(new A.ConnecOAuthUserSuccess(user)); this.action.completer.complete$0(0); }, $signature: 181 }; A._connectOAuthUser__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ConnecOAuthUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._connectGmailUser_closure0.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ConnecGmailUserRequest._as(dynamicAction); this.settingsRepository.connectGmailUser$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.get$password(dynamicAction), dynamicAction.get$idToken(dynamicAction), dynamicAction.get$serverAuthCode()).then$1$1(0, new A._connectGmailUser__closure(store, dynamicAction), type$.Null).catchError$1(new A._connectGmailUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._connectGmailUser__closure.prototype = { call$1(user) { var t1; this.store.get$_dispatchers()[0].call$1(new A.ConnecGmailUserSuccess(user)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$0(0); }, $signature: 181 }; A._connectGmailUser__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ConnecGmailUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A._disableTwoFactor_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_DisableTwoFactorRequest._as(dynamicAction); this.settingsRepository.disableTwoFactor$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._disableTwoFactor__closure(store, dynamicAction), type$.Null).catchError$1(new A._disableTwoFactor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._disableTwoFactor__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.DisableTwoFactorSuccess()); this.action.completer.complete$0(0); }, $signature: 20 }; A._disableTwoFactor__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.DisableTwoFactorFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveSettings_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveUserSettingsRequest._as(dynamicAction); this.settingsRepository.saveUserSettings$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.user).then$1$1(0, new A._saveSettings__closure(store, dynamicAction), type$.Null).catchError$1(new A._saveSettings__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveSettings__closure.prototype = { call$1(userCompany) { this.store.get$_dispatchers()[0].call$1(new A.SaveUserSettingsSuccess(userCompany)); this.action.completer.complete$0(0); }, $signature: 781 }; A._saveSettings__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveUserSettingsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._uploadLogo_closure.prototype = { call$3(store, dynamicAction, next) { var state, t1, settingsState, t2, t3, entityId; type$.legacy_UploadLogoRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.uiState; settingsState = t1.settingsUIState; t2 = dynamicAction.type; if (t2 === B.EntityType_company) { t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; entityId = t3._list[t1].userCompany.company.id; } else entityId = t2 === B.EntityType_group ? settingsState.group.id : settingsState.client.id; this.settingsRepository.uploadLogo$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), entityId, dynamicAction.multipartFile, t2).then$1$1(0, new A._uploadLogo__closure(dynamicAction, store), type$.Null).catchError$1(new A._uploadLogo__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._uploadLogo__closure.prototype = { call$1(entity) { var t3, t1 = this.action, t2 = t1.type; if (t2 === B.EntityType_client) { type$.legacy_ClientEntity._as(entity); this.store.get$_dispatchers()[0].call$1(new A.SaveClientSuccess(entity)); } else { t3 = this.store; if (t2 === B.EntityType_group) { type$.legacy_GroupEntity._as(entity); t3.get$_dispatchers()[0].call$1(new A.SaveGroupSuccess(entity)); } else { type$.legacy_CompanyEntity._as(entity); t3.get$_dispatchers()[0].call$1(new A.SaveCompanySuccess(entity)); } } t1.completer.complete$0(0); }, $signature: 145 }; A._uploadLogo__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.UploadLogoFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveDocument_closure4.prototype = { call$3(store, dynamicAction, next) { var state, t1, t2, t3; type$.legacy_SaveCompanyDocumentRequest._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); if (state.get$isHosted()) { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].userCompany.account.plan === "enterprise"; t1 = t2; } else t1 = true; if (t1) { t1 = J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; this.repository.uploadDocument$3(t1, t2._list[t3].userCompany.company, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure9(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure10(store, dynamicAction)); } else { store.get$_dispatchers()[0].call$1(new A.SaveCompanyDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure9.prototype = { call$1(company) { this.store.get$_dispatchers()[0].call$1(new A.SaveCompanySuccess(company)); this.action.completer.complete$1(0, null); }, $signature: 556 }; A._saveDocument__closure10.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.settingsUIReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure14(action, state)); }, $signature: 1662 }; A.settingsUIReducer__closure14.prototype = { call$1(b) { var t6, t7, _this = this, _s5_ = "other", t1 = b.get$company(), t2 = _this.action, t3 = t2.company, t4 = t3 == null, t5 = t4 ? _this.state.company : t3; A.ArgumentError_checkNotNull(t5, _s5_); t1._company_model$_$v = t5; t5 = b.get$origCompany(); t1 = t4 ? _this.state.origCompany : t3; A.ArgumentError_checkNotNull(t1, _s5_); t5._company_model$_$v = t1; t1 = b.get$group(); t5 = t2.group; t3 = t5 == null; t4 = t3 ? _this.state.group : t5; A.ArgumentError_checkNotNull(t4, _s5_); t1._group_model$_$v = t4; t4 = b.get$origGroup(); t1 = t3 ? _this.state.origGroup : t5; A.ArgumentError_checkNotNull(t1, _s5_); t4._group_model$_$v = t1; t1 = b.get$client(b); t4 = t2.client; t5 = t4 == null; t6 = t5 ? _this.state.client : t4; A.ArgumentError_checkNotNull(t6, _s5_); t1._client_model$_$v = t6; t6 = b.get$origClient(); t1 = t5 ? _this.state.origClient : t4; A.ArgumentError_checkNotNull(t1, _s5_); t6._client_model$_$v = t1; t1 = b.get$user(b); t6 = t2.user; t4 = t6 == null; t7 = t4 ? _this.state.user : t6; A.ArgumentError_checkNotNull(t7, _s5_); t1._user_model$_$v = t7; t7 = b.get$origUser(); t1 = t4 ? _this.state.origUser : t6; A.ArgumentError_checkNotNull(t1, _s5_); t7._user_model$_$v = t1; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; t1 = t2.section; if (t1 == null) t1 = _this.state.section; b.get$_company_state$_$this()._section = t1; t1 = t2.clearFilter; if (t1) t2 = 0; else { t2 = t2.tabIndex; if (t2 == null) t2 = _this.state.tabIndex; } b.get$_company_state$_$this()._tabIndex = t2; b.get$_company_state$_$this()._isChanged = false; t2 = t1 ? null : _this.state.filter; b.get$_company_state$_$this()._company_state$_filter = t2; t1 = t1 ? Date.now() : _this.state.filterClearedAt; b.get$_company_state$_$this()._company_state$_filterClearedAt = t1; if (!t5) t1 = B.EntityType_client; else t1 = !t3 ? B.EntityType_group : _this.state.entityType; b.get$_company_state$_$this()._entityType = t1; return b; }, $signature: 91 }; A.settingsUIReducer_closure0.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure13(action)); }, $signature: 1664 }; A.settingsUIReducer__closure13.prototype = { call$1(b) { var t1 = b.get$company(), t2 = this.action.company; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 91 }; A.settingsUIReducer_closure1.prototype = { call$2(state, action) { switch (state.entityType) { case B.EntityType_client: return state.rebuild$1(new A.settingsUIReducer__closure10(action)); case B.EntityType_group: return state.rebuild$1(new A.settingsUIReducer__closure11(action)); default: return state.rebuild$1(new A.settingsUIReducer__closure12(action)); } }, $signature: 1665 }; A.settingsUIReducer__closure10.prototype = { call$1(b) { var t1 = b.get$client(b).get$settings(), t2 = this.action.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 91 }; A.settingsUIReducer__closure11.prototype = { call$1(b) { var t1 = b.get$group().get$settings(), t2 = this.action.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 91 }; A.settingsUIReducer__closure12.prototype = { call$1(b) { var t1 = b.get$company().get$settings(), t2 = this.action.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 91 }; A.settingsUIReducer_closure2.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure9(action)); }, $signature: 1666 }; A.settingsUIReducer__closure9.prototype = { call$1(b) { var t1 = b.get$user(b), t2 = this.action.user; A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 91 }; A.settingsUIReducer_closure3.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure8(state)); }, $signature: 1667 }; A.settingsUIReducer__closure8.prototype = { call$1(b) { var _s5_ = "other", t1 = b.get$company(), t2 = this.state, t3 = t2.origCompany; A.ArgumentError_checkNotNull(t3, _s5_); t1._company_model$_$v = t3; t3 = b.get$group(); t1 = t2.origGroup; A.ArgumentError_checkNotNull(t1, _s5_); t3._group_model$_$v = t1; t1 = b.get$client(b); t3 = t2.origClient; A.ArgumentError_checkNotNull(t3, _s5_); t1._client_model$_$v = t3; t3 = b.get$user(b); t2 = t2.origUser; A.ArgumentError_checkNotNull(t2, _s5_); t3._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = false; t2 = Date.now(); b.get$_company_state$_$this()._updatedAt = t2; return b; }, $signature: 91 }; A.settingsUIReducer_closure4.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure7(action)); }, $signature: 1668 }; A.settingsUIReducer__closure7.prototype = { call$1(b) { var t1 = b.get$company(), t2 = this.action.company; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; t1 = b.get$origCompany(); A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; t2 = Date.now(); b.get$_company_state$_$this()._updatedAt = t2; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 91 }; A.settingsUIReducer_closure5.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure6(action)); }, $signature: 1669 }; A.settingsUIReducer__closure6.prototype = { call$1(b) { var t1 = b.get$group(), t2 = this.action.group; A.ArgumentError_checkNotNull(t2, "other"); t1._group_model$_$v = t2; t1 = b.get$origGroup(); A.ArgumentError_checkNotNull(t2, "other"); t1._group_model$_$v = t2; t2 = Date.now(); b.get$_company_state$_$this()._updatedAt = t2; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 91 }; A.settingsUIReducer_closure6.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure5(action)); }, $signature: 1670 }; A.settingsUIReducer__closure5.prototype = { call$1(b) { var t1 = b.get$client(b), t2 = this.action.client; A.ArgumentError_checkNotNull(t2, "other"); t1._client_model$_$v = t2; t1 = b.get$origClient(); A.ArgumentError_checkNotNull(t2, "other"); t1._client_model$_$v = t2; t2 = Date.now(); b.get$_company_state$_$this()._updatedAt = t2; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 91 }; A.settingsUIReducer_closure7.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure4(action)); }, $signature: 1671 }; A.settingsUIReducer__closure4.prototype = { call$1(b) { var t1 = b.get$user(b), t2 = this.action.user; A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; t1 = b.get$origUser(); A.ArgumentError_checkNotNull(t2, "other"); t1._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 91 }; A.settingsUIReducer_closure8.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure3(action, state)); }, $signature: 1672 }; A.settingsUIReducer__closure3.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_company_state$_$this()._company_state$_filter = t1; t1 = t1 == null ? Date.now() : this.state.filterClearedAt; b.get$_company_state$_$this()._company_state$_filterClearedAt = t1; return b; }, $signature: 91 }; A.settingsUIReducer_closure9.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure2(state)); }, $signature: 1673 }; A.settingsUIReducer__closure2.prototype = { call$1(b) { var t2, t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; t1 = b.get$company(); t2 = this.state.origCompany; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; b.get$_company_state$_$this()._entityType = B.EntityType_company; b.get$_company_state$_$this()._isChanged = false; b.get$_company_state$_$this()._tabIndex = 0; return b; }, $signature: 91 }; A.settingsUIReducer_closure10.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure1(action)); }, $signature: 1674 }; A.settingsUIReducer__closure1.prototype = { call$1(b) { var t1 = this.action.tabIndex; b.get$_company_state$_$this()._tabIndex = t1; return b; }, $signature: 91 }; A.settingsUIReducer_closure11.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure0(action)); }, $signature: 1675 }; A.settingsUIReducer__closure0.prototype = { call$1(b) { var t1 = this.action.selectedTemplate; b.get$_company_state$_$this()._selectedTemplate = t1; return b; }, $signature: 91 }; A.settingsUIReducer_closure12.prototype = { call$2(state, action) { return state.rebuild$1(new A.settingsUIReducer__closure()); }, $signature: 1676 }; A.settingsUIReducer__closure.prototype = { call$1(b) { var t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; return b; }, $signature: 91 }; A.staticLoadedReducer_closure.prototype = { call$1(b) { var t2, t1 = Date.now(); b.get$_static_state$_$this()._static_state$_updatedAt = t1; t1 = this.data; b.get$templateMap().replace$1(0, t1.templates); t2 = type$.legacy_String; b.get$currencyMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.currencies, new A.staticLoadedReducer__closure(), new A.staticLoadedReducer__closure0(), t2, type$.legacy_CurrencyEntity)); b.get$sizeMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.sizes, new A.staticLoadedReducer__closure1(), new A.staticLoadedReducer__closure2(), t2, type$.legacy_SizeEntity)); b.get$industryMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.industries, new A.staticLoadedReducer__closure3(), new A.staticLoadedReducer__closure4(), t2, type$.legacy_IndustryEntity)); b.get$timezoneMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.timezones, new A.staticLoadedReducer__closure5(), new A.staticLoadedReducer__closure6(), t2, type$.legacy_TimezoneEntity)); b.get$dateFormatMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.dateFormats, new A.staticLoadedReducer__closure7(), new A.staticLoadedReducer__closure8(), t2, type$.legacy_DateFormatEntity)); b.get$languageMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.languages, new A.staticLoadedReducer__closure9(), new A.staticLoadedReducer__closure10(), t2, type$.legacy_LanguageEntity)); b.get$paymentTypeMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.paymentTypes, new A.staticLoadedReducer__closure11(), new A.staticLoadedReducer__closure12(), t2, type$.legacy_PaymentTypeEntity)); b.get$countryMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.countries, new A.staticLoadedReducer__closure13(), new A.staticLoadedReducer__closure14(), t2, type$.legacy_CountryEntity)); b.get$gatewayMap().addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(t1.gateways, new A.staticLoadedReducer__closure15(), new A.staticLoadedReducer__closure16(), t2, type$.legacy_GatewayEntity)); return b; }, $signature: 1677 }; A.staticLoadedReducer__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure0.prototype = { call$1(item) { return item; }, $signature: 1678 }; A.staticLoadedReducer__closure1.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure2.prototype = { call$1(item) { return item; }, $signature: 1679 }; A.staticLoadedReducer__closure3.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure4.prototype = { call$1(item) { return item; }, $signature: 1680 }; A.staticLoadedReducer__closure5.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure6.prototype = { call$1(item) { return item; }, $signature: 1681 }; A.staticLoadedReducer__closure7.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure8.prototype = { call$1(item) { return item; }, $signature: 1682 }; A.staticLoadedReducer__closure9.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure10.prototype = { call$1(item) { return item; }, $signature: 1683 }; A.staticLoadedReducer__closure11.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure12.prototype = { call$1(item) { return item; }, $signature: 1684 }; A.staticLoadedReducer__closure13.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure14.prototype = { call$1(item) { return item; }, $signature: 1685 }; A.staticLoadedReducer__closure15.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.staticLoadedReducer__closure16.prototype = { call$1(item) { return item; }, $signature: 1686 }; A.memoizedCountryList_closure.prototype = { call$1(countryMap) { return A.countryList(countryMap); }, $signature: 1687 }; A.countryList_closure.prototype = { call$2(idA, idB) { var t1 = this.countryMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedGroupList_closure.prototype = { call$1(groupMap) { return A.groupList(groupMap); }, $signature: 1688 }; A.groupList_closure.prototype = { call$1(groupId) { var t1 = this.groupMap._map$_map.$index(0, groupId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.groupList_closure0.prototype = { call$2(idA, idB) { var t1 = this.groupMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedLanguageList_closure.prototype = { call$1(languageMap) { return A.languageList(languageMap); }, $signature: 1689 }; A.languageList_closure.prototype = { call$2(idA, idB) { var t1 = this.languageMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedCurrencyList_closure.prototype = { call$1(currencyMap) { return A.currencyList(currencyMap); }, $signature: 1690 }; A.currencyList_closure.prototype = { call$2(idA, idB) { var t1 = this.currencyMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedTimezoneList_closure.prototype = { call$1(timezoneMap) { return A.timezoneList(timezoneMap); }, $signature: 1691 }; A.timezoneList_closure.prototype = { call$2(idA, idB) { var t1 = this.timezoneMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedDateFormatList_closure.prototype = { call$1(dateFormatMap) { return A.dateFormatList(dateFormatMap); }, $signature: 1692 }; A.dateFormatList_closure.prototype = { call$2(idA, idB) { var t1 = this.dateFormatMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).get$preview(), t1.$index(0, idB).get$preview()); }, $signature: 19 }; A.memoizedIndustryList_closure.prototype = { call$1(industryMap) { return A.industryList(industryMap); }, $signature: 1693 }; A.industryList_closure.prototype = { call$2(idA, idB) { var t1 = this.industryMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedSizeList_closure.prototype = { call$1(sizeMap) { return A.sizeList(sizeMap); }, $signature: 1694 }; A.sizeList_closure.prototype = { call$2(idA, idB) { var t1 = this.sizeMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).id, t1.$index(0, idB).id); }, $signature: 19 }; A.memoizedGatewayList_closure.prototype = { call$1(gatewayMap) { return A.gatewayList(gatewayMap); }, $signature: 1695 }; A.gatewayList_closure.prototype = { call$1(gatewayId) { return this.gatewayMap._map$_map.$index(0, gatewayId).isVisible; }, $signature: 16 }; A.gatewayList_closure0.prototype = { call$2(idA, idB) { var t1 = this.gatewayMap._map$_map; return B.JSInt_methods.compareTo$1(t1.$index(0, idA).sortOrder, t1.$index(0, idB).sortOrder); }, $signature: 19 }; A.memoizedPaymentTypeList_closure.prototype = { call$1(paymentTypeMap) { return A.paymentTypeList(paymentTypeMap); }, $signature: 1696 }; A.paymentTypeList_closure.prototype = { call$2(idA, idB) { var t1 = this.paymentTypeMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, $signature: 19 }; A.memoizedFontMap_closure.prototype = { call$1(fontList) { return A.fontMap(fontList); }, $signature: 1697 }; A.fontMap_closure.prototype = { call$1(v) { return J.$index$asx(v, "value"); }, $signature: 25 }; A.fontMap_closure0.prototype = { call$1(v) { var t1 = J.getInterceptor$asx(v), t2 = t1.$index(v, "value"); t1 = t1.$index(v, "label"); if (t2 == null) t2 = ""; if (t1 == null) t1 = ""; return new A._$FontEntity(t1, t2); }, $signature: 1698 }; A.StaticState.prototype = { get$isStale() { var t1 = this.updatedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; } }; A._$StaticStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["currencyMap", serializers.serialize$2$specifiedType(object.currencyMap, B.FullType_5m9), "sizeMap", serializers.serialize$2$specifiedType(object.sizeMap, B.FullType_pUI), "gatewayMap", serializers.serialize$2$specifiedType(object.gatewayMap, B.FullType_CWG), "industryMap", serializers.serialize$2$specifiedType(object.industryMap, B.FullType_mFp), "timezoneMap", serializers.serialize$2$specifiedType(object.timezoneMap, B.FullType_sYl), "dateFormatMap", serializers.serialize$2$specifiedType(object.dateFormatMap, B.FullType_9Sk), "languageMap", serializers.serialize$2$specifiedType(object.languageMap, B.FullType_YiR), "paymentTypeMap", serializers.serialize$2$specifiedType(object.paymentTypeMap, B.FullType_2fF), "countryMap", serializers.serialize$2$specifiedType(object.countryMap, B.FullType_0kM), "templateMap", serializers.serialize$2$specifiedType(object.templateMap, B.FullType_IWk)], type$.JSArray_legacy_Object), value = object.updatedAt; if (value != null) { result.push("updatedAt"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, key, value, t11, t12, _null = null, result = new A.StaticStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_TemplateEntity, t2 = type$.MapBuilder_of_legacy_String_and_legacy_CountryEntity, t3 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTypeEntity, t4 = type$.MapBuilder_of_legacy_String_and_legacy_LanguageEntity, t5 = type$.MapBuilder_of_legacy_String_and_legacy_DateFormatEntity, t6 = type$.MapBuilder_of_legacy_String_and_legacy_TimezoneEntity, t7 = type$.MapBuilder_of_legacy_String_and_legacy_IndustryEntity, t8 = type$.MapBuilder_of_legacy_String_and_legacy_GatewayEntity, t9 = type$.MapBuilder_of_legacy_String_and_legacy_SizeEntity, t10 = type$.MapBuilder_of_legacy_String_and_legacy_CurrencyEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "updatedAt": t11 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_static_state$_$this()._static_state$_updatedAt = t11; break; case "currencyMap": t11 = result.get$_static_state$_$this(); t12 = t11._currencyMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t10); t12.replace$1(0, B.Map_empty0); t11._currencyMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_5m9)); break; case "sizeMap": t11 = result.get$_static_state$_$this(); t12 = t11._sizeMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t9); t12.replace$1(0, B.Map_empty0); t11._sizeMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_pUI)); break; case "gatewayMap": t11 = result.get$_static_state$_$this(); t12 = t11._gatewayMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t8); t12.replace$1(0, B.Map_empty0); t11._gatewayMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_CWG)); break; case "industryMap": t11 = result.get$_static_state$_$this(); t12 = t11._industryMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t7); t12.replace$1(0, B.Map_empty0); t11._industryMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_mFp)); break; case "timezoneMap": t11 = result.get$_static_state$_$this(); t12 = t11._timezoneMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t6); t12.replace$1(0, B.Map_empty0); t11._timezoneMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_sYl)); break; case "dateFormatMap": t11 = result.get$_static_state$_$this(); t12 = t11._dateFormatMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t5); t12.replace$1(0, B.Map_empty0); t11._dateFormatMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_9Sk)); break; case "languageMap": t11 = result.get$_static_state$_$this(); t12 = t11._languageMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t4); t12.replace$1(0, B.Map_empty0); t11._languageMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_YiR)); break; case "paymentTypeMap": t11 = result.get$_static_state$_$this(); t12 = t11._paymentTypeMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t3); t12.replace$1(0, B.Map_empty0); t11._paymentTypeMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_2fF)); break; case "countryMap": t11 = result.get$_static_state$_$this(); t12 = t11._countryMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t2); t12.replace$1(0, B.Map_empty0); t11._countryMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_0kM)); break; case "templateMap": t11 = result.get$_static_state$_$this(); t12 = t11._templateMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t1); t12.replace$1(0, B.Map_empty0); t11._templateMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_IWk)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_8LU; }, get$wireName() { return "StaticState"; } }; A._$StaticState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.StaticState && _this.updatedAt == other.updatedAt && J.$eq$(_this.currencyMap, other.currencyMap) && J.$eq$(_this.sizeMap, other.sizeMap) && J.$eq$(_this.gatewayMap, other.gatewayMap) && J.$eq$(_this.industryMap, other.industryMap) && J.$eq$(_this.timezoneMap, other.timezoneMap) && J.$eq$(_this.dateFormatMap, other.dateFormatMap) && J.$eq$(_this.languageMap, other.languageMap) && J.$eq$(_this.paymentTypeMap, other.paymentTypeMap) && J.$eq$(_this.countryMap, other.countryMap) && J.$eq$(_this.templateMap, other.templateMap); }, get$hashCode(_) { var _this = this, t1 = _this._static_state$__hashCode; return t1 == null ? _this._static_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.updatedAt)), J.get$hashCode$(_this.currencyMap)), J.get$hashCode$(_this.sizeMap)), J.get$hashCode$(_this.gatewayMap)), J.get$hashCode$(_this.industryMap)), J.get$hashCode$(_this.timezoneMap)), J.get$hashCode$(_this.dateFormatMap)), J.get$hashCode$(_this.languageMap)), J.get$hashCode$(_this.paymentTypeMap)), J.get$hashCode$(_this.countryMap)), J.get$hashCode$(_this.templateMap))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "currencyMap", _this.currencyMap); t2.add$2(t1, "sizeMap", _this.sizeMap); t2.add$2(t1, "gatewayMap", _this.gatewayMap); t2.add$2(t1, "industryMap", _this.industryMap); t2.add$2(t1, "timezoneMap", _this.timezoneMap); t2.add$2(t1, "dateFormatMap", _this.dateFormatMap); t2.add$2(t1, "languageMap", _this.languageMap); t2.add$2(t1, "paymentTypeMap", _this.paymentTypeMap); t2.add$2(t1, "countryMap", _this.countryMap); t2.add$2(t1, "templateMap", _this.templateMap); return t2.toString$0(t1); } }; A.StaticStateBuilder.prototype = { get$currencyMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._currencyMap; return t2 == null ? t1._currencyMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CurrencyEntity) : t2; }, get$sizeMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._sizeMap; return t2 == null ? t1._sizeMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SizeEntity) : t2; }, get$gatewayMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._gatewayMap; return t2 == null ? t1._gatewayMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayEntity) : t2; }, get$industryMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._industryMap; return t2 == null ? t1._industryMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_IndustryEntity) : t2; }, get$timezoneMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._timezoneMap; return t2 == null ? t1._timezoneMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TimezoneEntity) : t2; }, get$dateFormatMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._dateFormatMap; return t2 == null ? t1._dateFormatMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DateFormatEntity) : t2; }, get$languageMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._languageMap; return t2 == null ? t1._languageMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_LanguageEntity) : t2; }, get$paymentTypeMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._paymentTypeMap; return t2 == null ? t1._paymentTypeMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTypeEntity) : t2; }, get$countryMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._countryMap; return t2 == null ? t1._countryMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CountryEntity) : t2; }, get$templateMap() { var t1 = this.get$_static_state$_$this(), t2 = t1._templateMap; return t2 == null ? t1._templateMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity) : t2; }, get$_static_state$_$this() { var t1, t2, _this = this, $$v = _this._static_state$_$v; if ($$v != null) { _this._static_state$_updatedAt = $$v.updatedAt; t1 = $$v.currencyMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._currencyMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.sizeMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._sizeMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.gatewayMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._gatewayMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.industryMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._industryMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.timezoneMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._timezoneMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.dateFormatMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._dateFormatMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.languageMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._languageMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.paymentTypeMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._paymentTypeMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.countryMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._countryMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.templateMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._templateMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._static_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, exception, _this = this, _$result = null; try { _$result0 = _this._static_state$_$v; if (_$result0 == null) { t1 = _this.get$_static_state$_$this()._static_state$_updatedAt; t2 = _this.get$currencyMap().build$0(0); t3 = _this.get$sizeMap().build$0(0); t4 = _this.get$gatewayMap().build$0(0); t5 = _this.get$industryMap().build$0(0); t6 = _this.get$timezoneMap().build$0(0); t7 = _this.get$dateFormatMap().build$0(0); t8 = _this.get$languageMap().build$0(0); t9 = _this.get$paymentTypeMap().build$0(0); _$result0 = A._$StaticState$_(_this.get$countryMap().build$0(0), t2, t7, t4, t5, t8, t9, t3, _this.get$templateMap().build$0(0), t6, t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "currencyMap"; _this.get$currencyMap().build$0(0); _$failedField = "sizeMap"; _this.get$sizeMap().build$0(0); _$failedField = "gatewayMap"; _this.get$gatewayMap().build$0(0); _$failedField = "industryMap"; _this.get$industryMap().build$0(0); _$failedField = "timezoneMap"; _this.get$timezoneMap().build$0(0); _$failedField = "dateFormatMap"; _this.get$dateFormatMap().build$0(0); _$failedField = "languageMap"; _this.get$languageMap().build$0(0); _$failedField = "paymentTypeMap"; _this.get$paymentTypeMap().build$0(0); _$failedField = "countryMap"; _this.get$countryMap().build$0(0); _$failedField = "templateMap"; _this.get$templateMap().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("StaticState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._static_state$_$v = t1; return _$result; } }; A.ViewSubscriptionList.prototype = {$isPersistUI: 1}; A.ViewSubscription.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$subscriptionId() { return this.subscriptionId; } }; A.EditSubscription.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$subscription() { return this.subscription; } }; A.UpdateSubscription.prototype = {$isPersistUI: 1, get$subscription() { return this.subscription; } }; A.LoadSubscriptionRequest.prototype = {$isStartLoading: 1}; A.LoadSubscriptionFailure.prototype = { toString$0(_) { return "LoadSubscriptionFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadSubscriptionSuccess.prototype = { toString$0(_) { return "LoadSubscriptionSuccess{subscription: " + A.S(this.subscription) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$subscription() { return this.subscription; } }; A.LoadSubscriptionsRequest.prototype = {$isStartLoading: 1}; A.LoadSubscriptionsFailure.prototype = { toString$0(_) { return "LoadSubscriptionsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadSubscriptionsSuccess.prototype = { toString$0(_) { return "LoadSubscriptionsSuccess{subscriptions: " + A.S(this.subscriptions) + "}"; }, $isStopLoading: 1 }; A.SaveSubscriptionRequest.prototype = {$isStartSaving: 1, get$subscription() { return this.subscription; } }; A.SaveSubscriptionSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$subscription() { return this.subscription; } }; A.AddSubscriptionSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$subscription() { return this.subscription; } }; A.SaveSubscriptionFailure.prototype = {$isStopSaving: 1}; A.ArchiveSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.ArchiveSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.DeleteSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.DeleteSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.RestoreSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.RestoreSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.FilterSubscriptions.prototype = {$isPersistUI: 1}; A.SortSubscriptions.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterSubscriptionsByState.prototype = {$isPersistUI: 1}; A.FilterSubscriptionsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartSubscriptionMultiselect.prototype = {}; A.AddToSubscriptionMultiselect.prototype = {}; A.RemoveFromSubscriptionMultiselect.prototype = {}; A.ClearSubscriptionMultiselect.prototype = {}; A.handleSubscriptionAction_closure.prototype = { call$1(subscription) { return subscription.get$id(subscription); }, $signature: 41 }; A._editSubscription_closure.prototype = { call$3(store, dynamicAction, next) { var _s28_ = "/settings/subscriptions/edit"; next.call$1(type$.legacy_EditSubscription._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s28_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s28_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewSubscription_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewSubscription_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewSubscription_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewSubscription._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/subscriptions/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/subscriptions/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewSubscriptionList_closure.prototype = { call$3(store, dynamicAction, next) { var _s23_ = "/settings/subscriptions"; next.call$1(type$.legacy_ViewSubscriptionList._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s23_, new A._viewSubscriptionList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewSubscriptionList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveSubscription_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_ArchiveSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = A.List_List$of(new A.MappedListIterable(t1, new A._archiveSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveSubscription__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].subscriptionState.map._map$_map.$index(0, id); }, $signature: 412 }; A._archiveSubscription__closure0.prototype = { call$1(subscriptions) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 460 }; A._archiveSubscription__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteSubscription_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_DeleteSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = A.List_List$of(new A.MappedListIterable(t1, new A._deleteSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteSubscription__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].subscriptionState.map._map$_map.$index(0, id); }, $signature: 412 }; A._deleteSubscription__closure0.prototype = { call$1(subscriptions) { this.store.get$_dispatchers()[0].call$1(new A.DeleteSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 460 }; A._deleteSubscription__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreSubscription_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_RestoreSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = A.List_List$of(new A.MappedListIterable(t1, new A._restoreSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreSubscription__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].subscriptionState.map._map$_map.$index(0, id); }, $signature: 412 }; A._restoreSubscription__closure0.prototype = { call$1(subscriptions) { this.store.get$_dispatchers()[0].call$1(new A.RestoreSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 460 }; A._restoreSubscription__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveSubscription_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveSubscriptionRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.subscription).then$1$1(0, new A._saveSubscription__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveSubscription__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveSubscription__closure.prototype = { call$1(subscription) { var t1 = this.action, t2 = this.store; if (t1.subscription.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddSubscriptionSuccess(subscription)); else t2.get$_dispatchers()[0].call$1(new A.SaveSubscriptionSuccess(subscription)); t1.completer.complete$1(0, subscription); }, $signature: 364 }; A._saveSubscription__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveSubscriptionFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadSubscription_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadSubscription._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.subscriptionId).then$1$1(0, new A._loadSubscription__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadSubscription__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadSubscription__closure.prototype = { call$1(subscription) { this.store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionSuccess(subscription)); this.action.completer.complete$1(0, null); }, $signature: 364 }; A._loadSubscription__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadSubscriptions_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadSubscriptions._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadSubscriptions__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadSubscriptions__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadSubscriptions__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1702 }; A._loadSubscriptions__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadSubscriptionsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.subscriptionUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$subscriptionListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer18().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._subscription_model$_$v = t1; t1 = $.$get$selectedIdReducer18().call$2(t2.selectedId, t3); b.get$_subscription_state$_$this()._subscription_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer18().call$2(t2.forceSelected, t3); b.get$_subscription_state$_$this()._subscription_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer7().call$2(t2.tabIndex, t3); b.get$_subscription_state$_$this()._subscription_state$_tabIndex = t3; return b; }, $signature: 1703 }; A.forceSelectedReducer_closure143.prototype = { call$2(completer, action) { return true; }, $signature: 1704 }; A.forceSelectedReducer_closure144.prototype = { call$2(completer, action) { return false; }, $signature: 1705 }; A.forceSelectedReducer_closure145.prototype = { call$2(completer, action) { return false; }, $signature: 1706 }; A.forceSelectedReducer_closure146.prototype = { call$2(completer, action) { return false; }, $signature: 1707 }; A.forceSelectedReducer_closure147.prototype = { call$2(completer, action) { return false; }, $signature: 1708 }; A.forceSelectedReducer_closure148.prototype = { call$2(completer, action) { return false; }, $signature: 1709 }; A.forceSelectedReducer_closure149.prototype = { call$2(completer, action) { return false; }, $signature: 1710 }; A.forceSelectedReducer_closure150.prototype = { call$2(completer, action) { return false; }, $signature: 1711 }; A.tabIndexReducer_closure15.prototype = { call$2(completer, action) { return action.get$tabIndex(action); }, $signature: 1712 }; A.tabIndexReducer_closure16.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.selectedIdReducer_closure286.prototype = { call$2(completer, action) { return ""; }, $signature: 1713 }; A.selectedIdReducer_closure287.prototype = { call$2(completer, action) { return ""; }, $signature: 1714 }; A.selectedIdReducer_closure288.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_subscription ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure289.prototype = { call$2(selectedId, action) { return action.get$subscriptionId(); }, $signature: 90 }; A.selectedIdReducer_closure290.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$subscription()); }, $signature: 90 }; A.selectedIdReducer_closure291.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure292.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure293.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1715 }; A.selectedIdReducer_closure294.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1716 }; A.selectedIdReducer_closure295.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1717 }; A.selectedIdReducer_closure296.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1718 }; A.selectedIdReducer_closure297.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1719 }; A.selectedIdReducer_closure298.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1720 }; A.selectedIdReducer_closure299.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1721 }; A.selectedIdReducer_closure300.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_subscription ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure95.prototype = { call$2(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, $signature: 1722 }; A.editingReducer_closure96.prototype = { call$2(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, $signature: 1723 }; A.editingReducer_closure97.prototype = { call$2(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, $signature: 1724 }; A.editingReducer_closure98.prototype = { call$2(subscription, action) { return action.subscription.rebuild$1(new A.editingReducer__closure36()); }, $signature: 1725 }; A.editingReducer__closure36.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_isChanged = true; return b; }, $signature: 75 }; A._filterSubscriptionsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterSubscriptionsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterSubscriptionsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterSubscriptionsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterSubscriptionsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterSubscriptionsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterSubscriptions_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.subscriptionListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortSubscriptions_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure18.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure18.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure18.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure18.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveSubscriptionSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 366 }; A._deleteSubscriptionSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 366 }; A._restoreSubscriptionSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 366 }; A._addSubscription_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.subscription, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 361 }; A._updateSubscription_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.subscription; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 361 }; A._setLoadedSubscription_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.subscription; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 361 }; A.memoizedFilteredSubscriptionList_closure.prototype = { call$4(selectionState, subscriptionMap, subscriptionList, subscriptionListState) { return A.filteredSubscriptionsSelector(selectionState, subscriptionMap, subscriptionList, subscriptionListState); }, $signature: 1729 }; A.filteredSubscriptionsSelector_closure.prototype = { call$1(subscriptionId) { var t2, _this = this, subscription = _this.subscriptionMap._map$_map.$index(0, subscriptionId), t1 = subscription.id; if (t1 === _this.selectionState.selectedId) return true; t2 = _this.filterEntityId; if (t2 != null && t1 !== t2) return false; t1 = _this.subscriptionListState; if (!subscription.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([subscription.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredSubscriptionsSelector_closure0.prototype = { call$2(subscriptionAId, subscriptionBId) { var t1 = this.subscriptionMap._map$_map, t2 = this.subscriptionListState; return t1.$index(0, subscriptionAId).compareTo$3(0, t1.$index(0, subscriptionBId), t2.sortField, t2.sortAscending); }, $signature: 19 }; A.SubscriptionState.prototype = { loadSubscriptions$1(clients) { return this.rebuild$1(new A.SubscriptionState_loadSubscriptions_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.SubscriptionState_loadSubscriptions_closure0(), new A.SubscriptionState_loadSubscriptions_closure1(), type$.legacy_String, type$.legacy_SubscriptionEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.SubscriptionState_loadSubscriptions_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.SubscriptionState_loadSubscriptions_closure1.prototype = { call$1(item) { return item; }, $signature: 1730 }; A.SubscriptionState_loadSubscriptions_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 361 }; A.SubscriptionUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$SubscriptionStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_YGD), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.SubscriptionStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_subscription_state$_$this(); t6 = t5._subscription_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._subscription_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_YGD)); break; case "list": t5 = result.get$_subscription_state$_$this(); t6 = t5._subscription_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._subscription_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_G3h; }, get$wireName() { return "SubscriptionState"; } }; A._$SubscriptionUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_VCV)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.SubscriptionUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_SubscriptionEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_subscription_state$_$this(); t4 = t3._subscription_state$_editing; t3 = t4 == null ? t3._subscription_state$_editing = new A.SubscriptionEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_VCV)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._subscription_model$_$v = t4; break; case "listUIState": t3 = result.get$_subscription_state$_$this(); t4 = t3._subscription_state$_listUIState; t3 = t4 == null ? t3._subscription_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_subscription_state$_$this()._subscription_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_subscription_state$_$this()._subscription_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_subscription_state$_$this()._subscription_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Tfa; }, get$wireName() { return "SubscriptionUIState"; } }; A._$SubscriptionState.prototype = { rebuild$1(updates) { var t1 = new A.SubscriptionStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._subscription_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.SubscriptionState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._subscription_state$__hashCode; return t1 == null ? _this._subscription_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.SubscriptionStateBuilder.prototype = { get$map(_) { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_map; return t2 == null ? t1._subscription_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SubscriptionEntity) : t2; }, get$list(_) { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_list; return t2 == null ? t1._subscription_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_subscription_state$_$this() { var t1, t2, _this = this, $$v = _this._subscription_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._subscription_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._subscription_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._subscription_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._subscription_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$SubscriptionState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("SubscriptionState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$SubscriptionUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.SubscriptionUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._subscription_state$__hashCode; return t1 == null ? _this._subscription_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.SubscriptionUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_editing; return t2 == null ? t1._subscription_state$_editing = new A.SubscriptionEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_listUIState; return t2 == null ? t1._subscription_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_subscription_state$_$this() { var t1, t2, _this = this, $$v = _this._subscription_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.SubscriptionEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._subscription_model$_$v = t1; t1 = t2; } _this._subscription_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._subscription_state$_listUIState = t2; _this._subscription_state$_selectedId = $$v.selectedId; _this._subscription_state$_forceSelected = $$v.forceSelected; _this._subscription_state$_tabIndex = $$v.tabIndex; _this._subscription_state$_saveCompleter = $$v.saveCompleter; _this._subscription_state$_cancelCompleter = $$v.cancelCompleter; _this._subscription_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s19_ = "SubscriptionUIState", _$result = null; try { _$result0 = _this._subscription_state$_$v; if (_$result0 == null) { t1 = _this._subscription_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_subscription_state$_$this()._subscription_state$_selectedId; t4 = _this.get$_subscription_state$_$this()._subscription_state$_forceSelected; t5 = _this.get$_subscription_state$_$this()._subscription_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s19_, "tabIndex")); t6 = _this.get$_subscription_state$_$this()._subscription_state$_saveCompleter; _$result0 = A._$SubscriptionUIState$_(_this.get$_subscription_state$_$this()._subscription_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._subscription_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._subscription_state$_$v = t1; return _$result; } }; A._SubscriptionUIState_Object_EntityUIState.prototype = {}; A.ViewTaskList.prototype = {$isPersistUI: 1}; A.ViewTask.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditTask.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$task() { return this.task; } }; A.UpdateTask.prototype = {$isPersistUI: 1, get$task() { return this.task; } }; A.LoadTask.prototype = {}; A.LoadTasks.prototype = {}; A.LoadTaskRequest.prototype = {$isStartLoading: 1}; A.LoadTaskFailure.prototype = { toString$0(_) { return "LoadTaskFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaskSuccess.prototype = { toString$0(_) { return "LoadTaskSuccess{task: " + A.S(this.task) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$task() { return this.task; } }; A.EditTaskTime.prototype = {$isPersistUI: 1}; A.AddTaskTime.prototype = {$isPersistUI: 1}; A.UpdateTaskTime.prototype = {$isPersistUI: 1}; A.DeleteTaskTime.prototype = {$isPersistUI: 1}; A.LoadTasksRequest.prototype = {$isStartLoading: 1}; A.LoadTasksFailure.prototype = { toString$0(_) { return "LoadTasksFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTasksSuccess.prototype = { toString$0(_) { return "LoadTasksSuccess{tasks: " + A.S(this.tasks) + "}"; }, $isStopLoading: 1 }; A.SaveTaskRequest.prototype = {$isStartSaving: 1, get$task() { return this.task; } }; A.SaveTaskSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$task() { return this.task; } }; A.AddTaskSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$task() { return this.task; } }; A.SaveTaskFailure.prototype = {$isStopSaving: 1}; A.ArchiveTaskRequest.prototype = {$isStartSaving: 1}; A.ArchiveTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveTaskFailure.prototype = {$isStopSaving: 1}; A.StartTasksRequest.prototype = {$isStartSaving: 1}; A.StartTasksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.StartTasksFailure.prototype = {$isStopSaving: 1}; A.StopTasksRequest.prototype = {$isStartSaving: 1}; A.StopTasksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.StopTasksFailure.prototype = {$isStopSaving: 1}; A.DeleteTaskRequest.prototype = {$isStartSaving: 1}; A.DeleteTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteTaskFailure.prototype = {$isStopSaving: 1}; A.RestoreTaskRequest.prototype = {$isStartSaving: 1}; A.RestoreTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreTaskFailure.prototype = {$isStopSaving: 1}; A.SortTasksRequest.prototype = {$isStartSaving: 1}; A.SortTasksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.SortTasksFailure.prototype = {$isStopSaving: 1}; A.FilterTasks.prototype = {$isPersistUI: 1}; A.SortTasks.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterTasksByState.prototype = {$isPersistUI: 1}; A.FilterTasksByStatus.prototype = {$isPersistUI: 1}; A.FilterTasksByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTasksByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTasksByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTasksByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.UpdateKanban.prototype = {}; A.handleTaskAction_closure.prototype = { call$1(task) { return task.get$id(task); }, $signature: 41 }; A.handleTaskAction_closure0.prototype = { call$1(task) { var t1, t2, clientId = type$.legacy_TaskEntity._as(task).clientId; if (clientId.length !== 0) { t1 = this._box_0; t2 = t1.lastClientId; if (t2.length !== 0 && t2 !== clientId) t1.hasMultipleClients = true; t1.lastClientId = clientId; } }, $signature: 145 }; A.handleTaskAction_closure1.prototype = { call$2(taskA, taskB) { var taskAProjectId, taskBProjectId, taskATimes, taskBTimes, taskADate, taskBDate, t1 = type$.legacy_TaskEntity; t1._as(taskA); t1._as(taskB); taskAProjectId = taskA.projectId; taskBProjectId = taskB.projectId; if (taskAProjectId !== taskBProjectId) return B.JSString_methods.compareTo$1(taskAProjectId, taskBProjectId); taskATimes = taskA.getTaskTimes$0(); taskBTimes = taskB.getTaskTimes$0(); taskADate = taskATimes.length === 0 ? A.convertTimestampToDate(taskA.createdAt) : B.JSArray_methods.get$first(taskATimes).startDate; taskBDate = taskBTimes.length === 0 ? A.convertTimestampToDate(taskB.createdAt) : B.JSArray_methods.get$first(taskBTimes).startDate; return B.JSInt_methods.compareTo$1(taskADate._value, taskBDate._value); }, $signature: 751 }; A.handleTaskAction_closure2.prototype = { call$1(entity) { var t1; type$.legacy_TaskEntity._as(entity); if (!entity.isDeleted) if (!entity.get$isRunning()) t1 = entity.invoiceId.length === 0; else t1 = false; else t1 = false; return t1; }, $signature: 171 }; A.handleTaskAction_closure3.prototype = { call$1(task) { var t2, t3, _this = this, t1 = _this._box_0; if (t1.hasMultipleProjects) { t2 = _this.company; t3 = _this.localization.get$project(); if (!B.JSArray_methods.contains$1(A._setArrayType([t2.getCustomFieldLabel$1("product1").toLowerCase(), t2.getCustomFieldLabel$1("product2").toLowerCase(), t2.getCustomFieldLabel$1("product3").toLowerCase(), t2.getCustomFieldLabel$1("product4").toLowerCase()], type$.JSArray_legacy_String), t3.toLowerCase())) { t2 = type$.legacy_TaskEntity._as(task).projectId; t3 = t1.lastTask; t2 = t2 !== (t3 == null ? null : t3.projectId); } else t2 = false; } else t2 = false; _this.items.push(A.convertTaskToInvoiceItem(_this.context, t2, task)); t1.lastTask = task; }, $signature: 145 }; A.handleTaskAction_closure4.prototype = { call$1(b) { var t1; b.get$lineItems().addAll$1(0, this.items); t1 = this._box_0.projectId; b.get$_invoice_model$_$this()._projectId = t1; return b; }, $signature: 6 }; A.StartTaskMultiselect.prototype = {}; A.AddToTaskMultiselect.prototype = {}; A.RemoveFromTaskMultiselect.prototype = {}; A.ClearTaskMultiselect.prototype = {}; A.SaveTaskDocumentRequest.prototype = {$isStartSaving: 1, get$task() { return this.task; } }; A.SaveTaskDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateTaskTab.prototype = {$isPersistUI: 1}; A._editTask_closure.prototype = { call$3(store, dynamicAction, next) { var _s10_ = "/task/edit"; next.call$1(type$.legacy_EditTask._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s10_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s10_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTask_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewTask_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTask_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTask._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/task/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewTaskList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewTaskList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/task", new A._viewTaskList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTaskList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveTask_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_ArchiveTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = A.List_List$of(new A.MappedListIterable(t1, new A._archiveTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveTask__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveTask__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.map._map$_map.$index(0, id); }, $signature: 188 }; A._archiveTask__closure0.prototype = { call$1(tasks) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 243 }; A._archiveTask__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._startTask_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_StartTasksRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = A.List_List$of(new A.MappedListIterable(t1, new A._startTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_start).then$1$1(0, new A._startTask__closure0(store, dynamicAction), type$.Null).catchError$1(new A._startTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._startTask__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.map._map$_map.$index(0, id); }, $signature: 188 }; A._startTask__closure0.prototype = { call$1(tasks) { this.store.get$_dispatchers()[0].call$1(new A.StartTasksSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 243 }; A._startTask__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StartTasksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._stopTask_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_StopTasksRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = A.List_List$of(new A.MappedListIterable(t1, new A._stopTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_stop).then$1$1(0, new A._stopTask__closure0(store, dynamicAction), type$.Null).catchError$1(new A._stopTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._stopTask__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.map._map$_map.$index(0, id); }, $signature: 188 }; A._stopTask__closure0.prototype = { call$1(tasks) { this.store.get$_dispatchers()[0].call$1(new A.StopTasksSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 243 }; A._stopTask__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.StopTasksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteTask_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_DeleteTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = A.List_List$of(new A.MappedListIterable(t1, new A._deleteTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteTask__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteTask__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.map._map$_map.$index(0, id); }, $signature: 188 }; A._deleteTask__closure0.prototype = { call$1(tasks) { this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 243 }; A._deleteTask__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreTask_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_RestoreTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = A.List_List$of(new A.MappedListIterable(t1, new A._restoreTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreTask__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreTask__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.map._map$_map.$index(0, id); }, $signature: 188 }; A._restoreTask__closure0.prototype = { call$1(tasks) { this.store.get$_dispatchers()[0].call$1(new A.RestoreTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 243 }; A._restoreTask__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveTask_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveTaskRequest._as(dynamicAction); this.repository.saveData$3$action(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.task, dynamicAction.action).then$1$1(0, new A._saveTask__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveTask__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveTask__closure.prototype = { call$1(task) { var t1 = this.action, t2 = this.store; if (t1.task.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddTaskSuccess(task, t1.autoSelect)); else t2.get$_dispatchers()[0].call$1(new A.SaveTaskSuccess(task)); t1.completer.complete$1(0, task); }, $signature: 183 }; A._saveTask__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTask_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTask._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTaskRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taskId).then$1$1(0, new A._loadTask__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTask__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTask__closure.prototype = { call$1(task) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadTaskSuccess(task)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 183 }; A._loadTask__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTaskFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadTasks_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTasks._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTasksRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new A._loadTasks__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTasks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTasks__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadTasksSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadVendors()); }, $signature: 1733 }; A._loadTasks__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTasksFailure(error)); this.action.toString; }, $signature: 3 }; A._saveDocument_closure7.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveTaskDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.task, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure15(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure16(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveTaskDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure15.prototype = { call$1(task) { this.store.get$_dispatchers()[0].call$1(new A.SaveTaskSuccess(task)); this.action.completer.complete$1(0, null); }, $signature: 183 }; A._saveDocument__closure16.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveTaskDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._sortTasks_closure0.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SortTasksRequest._as(dynamicAction); this.repository.sortTasks$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.statusIds, dynamicAction.taskIds).then$1$1(0, new A._sortTasks__closure(store, dynamicAction), type$.Null).catchError$1(new A._sortTasks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._sortTasks__closure.prototype = { call$1(_) { var t1 = this.action; this.store.get$_dispatchers()[0].call$1(new A.SortTasksSuccess(t1.statusIds, t1.taskIds)); t1.completer.complete$1(0, null); }, $signature: 20 }; A._sortTasks__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SortTasksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.taskUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taskListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer2().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._task_model$_$v = t1; t1 = $.$get$editingTimeReducer().call$2(t2.editingTimeIndex, t3); b.get$_task_state$_$this()._editingTimeIndex = t1; t1 = $.$get$selectedIdReducer2().call$2(t2.selectedId, t3); b.get$_task_state$_$this()._task_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer2().call$2(t2.forceSelected, t3); b.get$_task_state$_$this()._task_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer2().call$2(t2.tabIndex, t3); b.get$_task_state$_$this()._task_state$_tabIndex = t1; t3 = $.$get$kanbanLastUpdatedReducer().call$2(t2.kanbanLastUpdated, t3); b.get$_task_state$_$this()._kanbanLastUpdated = t3; return b; }, $signature: 1734 }; A.forceSelectedReducer_closure23.prototype = { call$2(completer, action) { return true; }, $signature: 1735 }; A.forceSelectedReducer_closure24.prototype = { call$2(completer, action) { return false; }, $signature: 1736 }; A.forceSelectedReducer_closure25.prototype = { call$2(completer, action) { return false; }, $signature: 1737 }; A.forceSelectedReducer_closure26.prototype = { call$2(completer, action) { return false; }, $signature: 1738 }; A.forceSelectedReducer_closure27.prototype = { call$2(completer, action) { return false; }, $signature: 1739 }; A.forceSelectedReducer_closure28.prototype = { call$2(completer, action) { return false; }, $signature: 1740 }; A.forceSelectedReducer_closure29.prototype = { call$2(completer, action) { return false; }, $signature: 1741 }; A.forceSelectedReducer_closure30.prototype = { call$2(completer, action) { return false; }, $signature: 1742 }; A.tabIndexReducer_closure5.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 1743 }; A.tabIndexReducer_closure6.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.kanbanLastUpdatedReducer_closure.prototype = { call$2(completer, action) { return Date.now(); }, $signature: 1744 }; A.editingTimeReducer_closure.prototype = { call$2(index, action) { return action.taskTimeIndex; }, $signature: 1745 }; A.editingTimeReducer_closure0.prototype = { call$2(index, action) { action.toString; return null; }, $signature: 1746 }; A.selectedIdReducer_closure49.prototype = { call$2(completer, action) { return ""; }, $signature: 1747 }; A.selectedIdReducer_closure50.prototype = { call$2(completer, action) { return ""; }, $signature: 1748 }; A.selectedIdReducer_closure51.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_task ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure52.prototype = { call$2(selectedId, action) { return action.taskId; }, $signature: 1749 }; A.selectedIdReducer_closure53.prototype = { call$2(selectedId, action) { return selectedId.length !== 0 || action.autoSelect ? action.task.id : ""; }, $signature: 1750 }; A.selectedIdReducer_closure54.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure55.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure56.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1751 }; A.selectedIdReducer_closure57.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1752 }; A.selectedIdReducer_closure58.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1753 }; A.selectedIdReducer_closure59.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1754 }; A.selectedIdReducer_closure60.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1755 }; A.selectedIdReducer_closure61.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1756 }; A.selectedIdReducer_closure62.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1757 }; A.selectedIdReducer_closure63.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1758 }; A.editingReducer_closure18.prototype = { call$2(tasks, action) { return J.$index$asx(action.tasks, 0); }, $signature: 1759 }; A.editingReducer_closure19.prototype = { call$2(tasks, action) { return J.$index$asx(action.tasks, 0); }, $signature: 1760 }; A.editingReducer_closure20.prototype = { call$2(tasks, action) { return J.$index$asx(action.tasks, 0); }, $signature: 1761 }; A.editingReducer_closure21.prototype = { call$2(tasks, action) { return J.$index$asx(action.tasks, 0); }, $signature: 1762 }; A.editingReducer_closure22.prototype = { call$2(tasks, action) { return J.$index$asx(action.tasks, 0); }, $signature: 1763 }; A.editingReducer_closure23.prototype = { call$2(task, action) { return action.task.rebuild$1(new A.editingReducer__closure8()); }, $signature: 1764 }; A.editingReducer__closure8.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_isChanged = true; return b; }, $signature: 50 }; A._viewTaskList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterTasksByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTasksByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTasksByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTasksByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTasksByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterTasksByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTasksByStatus_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterTasksByStatus_closure0.prototype = { call$1(b) { var t1 = b.get$statusFilters(), t2 = this.action.status; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTasks_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taskListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortTasks_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure2.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure2.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure2.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure2.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._sortTasksSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11; for (t1 = this.action, t2 = t1.taskIds, t3 = A.LinkedHashMapKeyIterator$(t2, t2._modifications, A._instanceType(t2)._precomputed1), t4 = this.taskState, t5 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t3.moveNext$0();) { t6 = t3.__js_helper$_current; for (t7 = J.get$iterator$ax(t2.$index(0, t6)); t7.moveNext$0();) { t8 = t7.get$current(t7); t9 = b.get$_task_state$_$this(); t10 = t9._task_state$_map; if (t10 == null) { t10 = new A.MapBuilder(null, $, null, t5); t10.replace$1(0, B.Map_empty0); t9._task_state$_map = t10; t9 = t10; } else t9 = t10; t10 = t4.map._map$_map.$index(0, t8); t10.toString; t11 = new A.TaskEntityBuilder(); t11._task_model$_$v = t10; new A._sortTasksSuccess__closure(t6, t1, t8).call$1(t11); t10 = t11.build$0(0); t9._checkKey$1(t8); t9._checkValue$1(t10); t9.get$_safeMap().$indexSet(0, t8, t10); } } }, $signature: 215 }; A._sortTasksSuccess__closure.prototype = { call$1(b) { var t1 = this.statusId; b.get$_task_model$_$this()._task_model$_statusId = t1; t1 = J.indexOf$1$asx(this.action.taskIds.$index(0, t1), this.taskId); b.get$_task_model$_$this()._statusOrder = t1; return b; }, $signature: 50 }; A._archiveTaskSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 215 }; A._startTaskSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 215 }; A._stopTaskSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 215 }; A._deleteTaskSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 215 }; A._restoreTaskSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 215 }; A._addTask_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.task, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 355 }; A._updateTask_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.task; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 355 }; A._setLoadedTask_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.task; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 355 }; A.convertTaskToInvoiceItem_closure.prototype = { call$1(time) { return time.startDate != null && time.endDate != null; }, $signature: 204 }; A.convertTaskToInvoiceItem_closure0.prototype = { call$1(time) { var start, end, _this = this, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.company; t1 = t2.invoiceTaskDatelog; if (t1 && t2.invoiceTaskTimelog) { t1 = _this.context; start = A.formatDate(time.startDate.toIso8601String$0(), t1, true, true, true); end = A.formatDate(time.endDate.toIso8601String$0(), t1, false, true, true); t1 = _this._box_0; t1.notes = t1.notes + (start + " - " + end + "
\n"); } else { t2 = _this.context; if (t1) _this.dates.add$1(0, A.formatDate(time.startDate.toIso8601String$0(), t2, true, true, false)); else { start = A.formatDate(time.startDate.toIso8601String$0(), t2, false, true, true); end = A.formatDate(time.endDate.toIso8601String$0(), t2, false, true, true); t1 = _this._box_0; t1.notes = t1.notes + (start + " - " + end + "
\n"); } } }, $signature: 197 }; A.convertTaskToInvoiceItem_closure1.prototype = { call$1(b) { var t1, t2, t3, t4, _this = this; b.get$_invoice_model$_$this()._invoice_model$_typeId = "2"; t1 = _this.task; b.get$_invoice_model$_$this()._taskId = t1.id; t2 = _this._box_0; t3 = t2.notes; b.get$_invoice_model$_$this()._invoice_model$_notes = t3; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.taskRateSelector(_this.client, t3.userCompanyStates._list[t4].userCompany.company, _this.group, _this.project, t1); b.get$_invoice_model$_$this()._invoice_model$_cost = t4; t1 = A.round(B.JSInt_methods._tdivFast$1(t1.calculateDuration$0()._duration, 1000000) / 3600, 3); b.get$_invoice_model$_$this()._invoice_model$_quantity = t1; t1 = t2.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1; t1 = t2.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1; t1 = t2.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1; t2 = t2.customValue4; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t2; return b; }, $signature: 58 }; A.memoizedTaskList_closure.prototype = { call$5(taskMap, clientId, userMap, clientMap, projectMap) { return A.taskList(taskMap, clientId, userMap, clientMap, projectMap); }, $signature: 1767 }; A.taskList_closure.prototype = { call$1(taskId) { var t2, task = this.taskMap._map$_map.$index(0, taskId), t1 = this.clientId; if ((t1 == null ? "" : t1).length !== 0) { t2 = task.clientId; t1 = t2.length !== 0 && t2 !== t1; } else t1 = false; if (t1) return false; if (!task.get$isArchived() && !task.isDeleted) if (!task.get$isRunning()) t1 = task.invoiceId.length === 0; else t1 = false; else t1 = false; return t1; }, $signature: 16 }; A.taskList_closure0.prototype = { call$2(idA, idB) { var t1 = this.taskMap._map$_map, t2 = t1.$index(0, idA).number; t1 = t1.$index(0, idB).number; return B.JSString_methods.compareTo$1(t2, t1); }, $signature: 19 }; A.memoizedKanbanTaskList_closure.prototype = { call$9(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return A.kanbanTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, $signature: 534 }; A.kanbanTasksSelector_closure.prototype = { call$1(taskId) { var _this = this, task = _this.taskMap._map$_map.$index(0, taskId), t1 = task.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(null, t1, null, null); if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = task.invoiceId; if (t1.length !== 0) return false; return true; }, $signature: 16 }; A.kanbanTasksSelector_closure0.prototype = { call$2(taskAId, taskBId) { var _this = this, t1 = _this.taskMap._map$_map, t2 = _this.taskListState; return t1.$index(0, taskAId).compareTo$8(0, t1.$index(0, taskBId), t2.sortField, t2.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, $signature: 19 }; A.memoizedFilteredTaskList_closure.prototype = { call$9(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return A.filteredTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, $signature: 534 }; A.filteredTasksSelector_closure.prototype = { call$1(taskId) { var t2, project, t3, t4, t5, _this = this, _null = null, task = _this.taskMap._map$_map.$index(0, taskId), t1 = task.clientId, client = _this.clientMap._map$_map.$index(0, t1); if (client == null) client = A.ClientEntity_ClientEntity(_null, t1, _null, _null); t2 = task.projectId; project = _this.projectMap._map$_map.$index(0, t2); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t2, _null, _null); if (task.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t3 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t3 = false; if (t3) return false; t3 = _this.taskListState; t4 = t3.filter; if (!task.matchesFilter$1(t4) && !client.matchesNameOrEmail$1(t4) && !B.JSString_methods.contains$1(project.name.toLowerCase(), t4.toLowerCase())) return false; if (!task.matchesStates$1(t3.stateFilters)) return false; if (!task.matchesStatuses$1(t3.statusFilters)) return false; t4 = _this.filterEntityId; if (t4 != null) { t5 = _this.filterEntityType; if (t5 === B.EntityType_client && t1 !== t4) return false; else if (t5 === B.EntityType_project && t2 !== t4) return false; else if (t5 === B.EntityType_invoice && task.invoiceId !== t4) return false; else if (t5 === B.EntityType_user && task.assignedUserId !== t4) return false; else if (t5 === B.EntityType_taskStatus && task.statusId !== t4) return false; else if (t5 === B.EntityType_group && client.groupId !== t4) return false; } else { t1 = !(!client.get$isArchived() && !client.isDeleted); if (t1) return false; } t1 = t3.custom1Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, task.customValue1)) return false; else { t1 = t3.custom2Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, task.customValue2)) return false; else { t1 = t3.custom3Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, task.customValue3)) return false; else { t1 = t3.custom4Filters._list; if (t1.length !== 0 && !B.JSArray_methods.contains$1(t1, task.customValue4)) return false; } } } return true; }, $signature: 16 }; A.filteredTasksSelector_closure0.prototype = { call$2(taskAId, taskBId) { var _this = this, t1 = _this.taskMap._map$_map, t2 = _this.taskListState; return t1.$index(0, taskAId).compareTo$8(0, t1.$index(0, taskBId), t2.sortField, t2.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, $signature: 19 }; A.memoizedTaskStatsForClient_closure.prototype = { call$2(clientId, taskMap) { return A.taskStatsForClient(clientId, taskMap); }, $signature: 354 }; A.taskStatsForClient_closure.prototype = { call$2(taskId, task) { if (task.clientId === this.clientId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 143 }; A.memoizedTaskStatsForProject_closure.prototype = { call$2(projectId, taskMap) { return A.taskStatsForProject(projectId, taskMap); }, $signature: 354 }; A.taskStatsForProject_closure.prototype = { call$2(taskId, task) { if (task.projectId === this.projectId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 143 }; A.memoizedTaskStatsForUser_closure.prototype = { call$2(userId, taskMap) { return A.taskStatsForProject(userId, taskMap); }, $signature: 354 }; A.TaskState.prototype = { $get$1(_, taskId) { var _null = null, t1 = this.map._map$_map; if (t1.containsKey$1(0, taskId)) return t1.$index(0, taskId); else return A.TaskEntity_TaskEntity(_null, taskId, _null, _null, _null); }, loadTasks$1(clients) { return this.rebuild$1(new A.TaskState_loadTasks_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.TaskState_loadTasks_closure0(), new A.TaskState_loadTasks_closure1(), type$.legacy_String, type$.legacy_TaskEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.TaskState_loadTasks_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.TaskState_loadTasks_closure1.prototype = { call$1(item) { return item; }, $signature: 1770 }; A.TaskState_loadTasks_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 355 }; A.TaskUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$TaskStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_woc0), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.TaskStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_task_state$_$this(); t6 = t5._task_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._task_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_woc0)); break; case "list": t5 = result.get$_task_state$_$this(); t6 = t5._task_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._task_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_a1Y; }, get$wireName() { return "TaskState"; } }; A._$TaskUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_4QF0)); } value = object.kanbanLastUpdated; if (value != null) { result.push("kanbanLastUpdated"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_kjq)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.TaskUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaskEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_task_state$_$this(); t4 = t3._task_state$_editing; t3 = t4 == null ? t3._task_state$_editing = new A.TaskEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_4QF0)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._task_model$_$v = t4; break; case "kanbanLastUpdated": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_state$_$this()._kanbanLastUpdated = t3; break; case "listUIState": t3 = result.get$_task_state$_$this(); t4 = t3._task_state$_listUIState; t3 = t4 == null ? t3._task_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_state$_$this()._task_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_state$_$this()._task_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_state$_$this()._task_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_YgE; }, get$wireName() { return "TaskUIState"; } }; A._$TaskState.prototype = { rebuild$1(updates) { var t1 = new A.TaskStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._task_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._task_state$__hashCode; return t1 == null ? _this._task_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.TaskStateBuilder.prototype = { get$map(_) { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_map; return t2 == null ? t1._task_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskEntity) : t2; }, get$list(_) { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_list; return t2 == null ? t1._task_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_task_state$_$this() { var t1, t2, _this = this, $$v = _this._task_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._task_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._task_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._task_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._task_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$TaskState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TaskState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$TaskUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.TaskUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingTimeIndex == other.editingTimeIndex) if (_this.kanbanLastUpdated == other.kanbanLastUpdated) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._task_state$__hashCode; return t1 == null ? _this._task_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingTimeIndex)), J.get$hashCode$(_this.kanbanLastUpdated)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingTimeIndex", _this.editingTimeIndex); t2.add$2(t1, "kanbanLastUpdated", _this.kanbanLastUpdated); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.TaskUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_editing; return t2 == null ? t1._task_state$_editing = new A.TaskEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_listUIState; return t2 == null ? t1._task_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_task_state$_$this() { var t1, t2, _this = this, $$v = _this._task_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.TaskEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._task_model$_$v = t1; t1 = t2; } _this._task_state$_editing = t1; _this._editingTimeIndex = $$v.editingTimeIndex; _this._kanbanLastUpdated = $$v.kanbanLastUpdated; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._task_state$_listUIState = t2; _this._task_state$_selectedId = $$v.selectedId; _this._task_state$_forceSelected = $$v.forceSelected; _this._task_state$_tabIndex = $$v.tabIndex; _this._task_state$_saveCompleter = $$v.saveCompleter; _this._task_state$_cancelCompleter = $$v.cancelCompleter; _this._task_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s11_ = "TaskUIState", _$result = null; try { _$result0 = _this._task_state$_$v; if (_$result0 == null) { t1 = _this._task_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_task_state$_$this()._editingTimeIndex; t3 = _this.get$_task_state$_$this()._kanbanLastUpdated; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_task_state$_$this()._task_state$_selectedId; t6 = _this.get$_task_state$_$this()._task_state$_forceSelected; t7 = _this.get$_task_state$_$this()._task_state$_tabIndex; if (t7 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "tabIndex")); t8 = _this.get$_task_state$_$this()._task_state$_saveCompleter; _$result0 = A._$TaskUIState$_(_this.get$_task_state$_$this()._task_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._task_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_state$_$v = t1; return _$result; } }; A._TaskUIState_Object_EntityUIState.prototype = {}; A.ViewTaskStatusList.prototype = {$isPersistUI: 1}; A.ViewTaskStatus.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$taskStatusId() { return this.taskStatusId; } }; A.EditTaskStatus.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$taskStatus() { return this.taskStatus; } }; A.UpdateTaskStatus.prototype = {$isPersistUI: 1, get$taskStatus() { return this.taskStatus; } }; A.LoadTaskStatusRequest.prototype = {$isStartLoading: 1}; A.LoadTaskStatusFailure.prototype = { toString$0(_) { return "LoadTaskStatusFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaskStatusSuccess.prototype = { toString$0(_) { return "LoadTaskStatusSuccess{taskStatus: " + A.S(this.taskStatus) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$taskStatus() { return this.taskStatus; } }; A.LoadTaskStatusesRequest.prototype = {$isStartLoading: 1}; A.LoadTaskStatusesFailure.prototype = { toString$0(_) { return "LoadTaskStatusesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaskStatusesSuccess.prototype = { toString$0(_) { return "LoadTaskStatusesSuccess{taskStatuses: " + A.S(this.taskStatuses) + "}"; }, $isStopLoading: 1 }; A.SaveTaskStatusRequest.prototype = {$isStartSaving: 1, get$taskStatus() { return this.taskStatus; } }; A.SaveTaskStatusSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taskStatus() { return this.taskStatus; } }; A.AddTaskStatusSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taskStatus() { return this.taskStatus; } }; A.SaveTaskStatusFailure.prototype = {$isStopSaving: 1}; A.ArchiveTaskStatusesRequest.prototype = {$isStartSaving: 1}; A.ArchiveTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveTaskStatusesFailure.prototype = {$isStopSaving: 1}; A.DeleteTaskStatusesRequest.prototype = {$isStartSaving: 1}; A.DeleteTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteTaskStatusesFailure.prototype = {$isStopSaving: 1}; A.RestoreTaskStatusesRequest.prototype = {$isStartSaving: 1}; A.RestoreTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreTaskStatusesFailure.prototype = {$isStopSaving: 1}; A.FilterTaskStatuses.prototype = {$isPersistUI: 1}; A.SortTaskStatuses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterTaskStatusesByState.prototype = {$isPersistUI: 1}; A.FilterTaskStatusesByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTaskStatusesByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTaskStatusesByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTaskStatusesByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.StartTaskStatusMultiselect.prototype = {}; A.AddToTaskStatusMultiselect.prototype = {}; A.RemoveFromTaskStatusMultiselect.prototype = {}; A.ClearTaskStatusMultiselect.prototype = {}; A.handleTaskStatusAction_closure.prototype = { call$1(taskStatus) { return taskStatus.get$id(taskStatus); }, $signature: 41 }; A.handleTaskStatusAction_closure0.prototype = { call$1(b) { var t1 = this.taskStatus.id; b.get$_task_model$_$this()._task_model$_statusId = t1; return b; }, $signature: 50 }; A._editTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { var _s26_ = "/settings/task_status/edit"; next.call$1(type$.legacy_EditTaskStatus._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s26_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s26_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewTaskStatus_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTaskStatus_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTaskStatus._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/task_status/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/task_status/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewTaskStatusList_closure0.prototype = { call$3(store, dynamicAction, next) { var _s21_ = "/settings/task_status"; next.call$1(type$.legacy_ViewTaskStatusList._as(dynamicAction)); if (A._lateReadCheck(store.__Store__state, "_state").staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s21_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s21_, new A._viewTaskStatusList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTaskStatusList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_ArchiveTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = A.List_List$of(new A.MappedListIterable(t1, new A._archiveTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveTaskStatus__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskStatusState.map._map$_map.$index(0, id); }, $signature: 369 }; A._archiveTaskStatus__closure0.prototype = { call$1(taskStatuses) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 370 }; A._archiveTaskStatus__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_DeleteTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = A.List_List$of(new A.MappedListIterable(t1, new A._deleteTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteTaskStatus__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskStatusState.map._map$_map.$index(0, id); }, $signature: 369 }; A._deleteTaskStatus__closure0.prototype = { call$1(taskStatuses) { this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 370 }; A._deleteTaskStatus__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_RestoreTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = A.List_List$of(new A.MappedListIterable(t1, new A._restoreTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreTaskStatus__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskStatusState.map._map$_map.$index(0, id); }, $signature: 369 }; A._restoreTaskStatus__closure0.prototype = { call$1(taskStatuses) { this.store.get$_dispatchers()[0].call$1(new A.RestoreTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 370 }; A._restoreTaskStatus__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveTaskStatusRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.taskStatus).then$1$1(0, new A._saveTaskStatus__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveTaskStatus__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveTaskStatus__closure.prototype = { call$1(taskStatus) { var t1 = this.action, t2 = this.store; if (t1.taskStatus.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddTaskStatusSuccess(taskStatus)); else t2.get$_dispatchers()[0].call$1(new A.SaveTaskStatusSuccess(taskStatus)); t1.completer.complete$1(0, taskStatus); }, $signature: 272 }; A._saveTaskStatus__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveTaskStatusFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTaskStatus._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taskStatusId).then$1$1(0, new A._loadTaskStatus__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTaskStatus__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTaskStatus__closure.prototype = { call$1(taskStatus) { this.store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusSuccess(taskStatus)); this.action.completer.complete$1(0, null); }, $signature: 272 }; A._loadTaskStatus__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTaskStatuses_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTaskStatuses._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadTaskStatuses__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTaskStatuses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTaskStatuses__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1774 }; A._loadTaskStatuses__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTaskStatusesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.taskStatusUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taskStatusListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer17().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._task_status_model$_$v = t1; t1 = $.$get$selectedIdReducer17().call$2(t2.selectedId, t3); b.get$_task_status_state$_$this()._task_status_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer17().call$2(t2.forceSelected, t3); b.get$_task_status_state$_$this()._task_status_state$_forceSelected = t3; return b; }, $signature: 1775 }; A.forceSelectedReducer_closure135.prototype = { call$2(completer, action) { return true; }, $signature: 1776 }; A.forceSelectedReducer_closure136.prototype = { call$2(completer, action) { return false; }, $signature: 1777 }; A.forceSelectedReducer_closure137.prototype = { call$2(completer, action) { return false; }, $signature: 1778 }; A.forceSelectedReducer_closure138.prototype = { call$2(completer, action) { return false; }, $signature: 1779 }; A.forceSelectedReducer_closure139.prototype = { call$2(completer, action) { return false; }, $signature: 1780 }; A.forceSelectedReducer_closure140.prototype = { call$2(completer, action) { return false; }, $signature: 1781 }; A.forceSelectedReducer_closure141.prototype = { call$2(completer, action) { return false; }, $signature: 1782 }; A.forceSelectedReducer_closure142.prototype = { call$2(completer, action) { return false; }, $signature: 1783 }; A.selectedIdReducer_closure271.prototype = { call$2(completer, action) { return ""; }, $signature: 1784 }; A.selectedIdReducer_closure272.prototype = { call$2(completer, action) { return ""; }, $signature: 1785 }; A.selectedIdReducer_closure273.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_taskStatus ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure274.prototype = { call$2(selectedId, action) { return action.get$taskStatusId(); }, $signature: 90 }; A.selectedIdReducer_closure275.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$taskStatus()); }, $signature: 90 }; A.selectedIdReducer_closure276.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure277.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure278.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1786 }; A.selectedIdReducer_closure279.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1787 }; A.selectedIdReducer_closure280.prototype = { call$2(selectedId, action) { return ""; }, $signature: 3577 }; A.selectedIdReducer_closure281.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1789 }; A.selectedIdReducer_closure282.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1790 }; A.selectedIdReducer_closure283.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1791 }; A.selectedIdReducer_closure284.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1792 }; A.selectedIdReducer_closure285.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_taskStatus ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure91.prototype = { call$2(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, $signature: 1793 }; A.editingReducer_closure92.prototype = { call$2(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, $signature: 1794 }; A.editingReducer_closure93.prototype = { call$2(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, $signature: 1795 }; A.editingReducer_closure94.prototype = { call$2(taskStatus, action) { return action.taskStatus.rebuild$1(new A.editingReducer__closure35()); }, $signature: 1796 }; A.editingReducer__closure35.prototype = { call$1(b) { b.get$_task_status_model$_$this()._task_status_model$_isChanged = true; return b; }, $signature: 168 }; A._viewTaskStatusList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterTaskStatusesByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatusesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterTaskStatusesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatuses_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taskStatusListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortTaskStatuses_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure17.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure17.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure17.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure17.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._sortTaskStatusSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5, t6, t7, t8; for (t1 = this.action, t2 = J.get$iterator$ax(t1.statusIds), t3 = this.taskStatusState, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t2.moveNext$0();) { t5 = t2.get$current(t2); t6 = b.get$_task_status_state$_$this(); t7 = t6._task_status_state$_map; if (t7 == null) { t7 = new A.MapBuilder(null, $, null, t4); t7.replace$1(0, B.Map_empty0); t6._task_status_state$_map = t7; t6 = t7; } else t6 = t7; t7 = t3.map._map$_map.$index(0, t5); t7.toString; t8 = new A.TaskStatusEntityBuilder(); t8.get$_task_status_model$_$this()._task_status_model$_color = ""; t8._task_status_model$_$v = t7; new A._sortTaskStatusSuccess__closure(t1, t5).call$1(t8); t7 = t8.build$0(0); t6._checkKey$1(t5); t6._checkValue$1(t7); t6.get$_safeMap().$indexSet(0, t5, t7); } }, $signature: 349 }; A._sortTaskStatusSuccess__closure.prototype = { call$1(b) { var t1 = J.indexOf$1$asx(this.action.statusIds, this.statusId); b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, $signature: 168 }; A._archiveTaskStatusSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 349 }; A._deleteTaskStatusSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 349 }; A._restoreTaskStatusSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 349 }; A._addTaskStatus_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 348 }; A._updateTaskStatus_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 348 }; A._setLoadedTaskStatus_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 348 }; A.memoizedSortedActiveTaskStatusIds_closure.prototype = { call$2(taskStatusList, taskStatusMap) { return A.sortedActiveTaskStatusIds(taskStatusList, taskStatusMap); }, $signature: 1800 }; A.sortedActiveTaskStatusIds_closure.prototype = { call$1(statusId) { var t1 = this.taskStatusMap._map$_map; if (t1.containsKey$1(0, statusId)) { t1 = t1.$index(0, statusId); t1 = !t1.get$isArchived() && !J.get$isDeleted$x(t1); } else t1 = false; return t1; }, $signature: 16 }; A.sortedActiveTaskStatusIds_closure0.prototype = { call$2(statusIdA, statusIdB) { var t2, t1 = this.taskStatusMap._map$_map, statusA = t1.$index(0, statusIdA), statusB = t1.$index(0, statusIdB); t1 = statusA.statusOrder; t2 = statusB.statusOrder; if (t1 == t2) return B.JSInt_methods.compareTo$1(statusB.updatedAt, statusA.updatedAt); else { if (t1 == null) t1 = 99999; return B.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); } }, $signature: 19 }; A.memoizedDropdownTaskStatusList_closure.prototype = { call$4(taskStatusMap, taskStatusList, staticState, userMap) { return A.dropdownTaskStatusesSelector(taskStatusMap, taskStatusList, staticState, userMap); }, $signature: 1801 }; A.dropdownTaskStatusesSelector_closure.prototype = { call$1(taskStatusId) { var taskStatus = this.taskStatusMap._map$_map.$index(0, taskStatusId); return !taskStatus.get$isArchived() && !taskStatus.isDeleted; }, $signature: 16 }; A.dropdownTaskStatusesSelector_closure0.prototype = { call$2(taskStatusAId, taskStatusBId) { var t1 = this.taskStatusMap._map$_map; return t1.$index(0, taskStatusAId).compareTo$3$sortAscending$sortField$taskStatus(0, true, "order", t1.$index(0, taskStatusBId)); }, $signature: 19 }; A.memoizedFilteredTaskStatusList_closure.prototype = { call$4(selectionState, taskStatusMap, taskStatusList, taskStatusListState) { return A.filteredTaskStatusesSelector(selectionState, taskStatusMap, taskStatusList, taskStatusListState); }, $signature: 1802 }; A.filteredTaskStatusesSelector_closure.prototype = { call$1(taskStatusId) { var t1, taskStatus = this.taskStatusMap._map$_map.$index(0, taskStatusId); if (taskStatus.id === this.selectionState.selectedId) return true; t1 = this.taskStatusListState; if (!taskStatus.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([taskStatus.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredTaskStatusesSelector_closure0.prototype = { call$2(taskStatusAId, taskStatusBId) { var t3, t4, t1 = this.taskStatusMap._map$_map, t2 = t1.$index(0, taskStatusAId); t1 = t1.$index(0, taskStatusBId); t3 = this.taskStatusListState; t4 = t3.sortField; return J.compareTo$3$sortAscending$sortField$taskStatus$ns(t2, t3.sortAscending, t4, t1); }, $signature: 19 }; A.memoizedCalculateTaskStatusAmount_closure.prototype = { call$2(taskStatusId, taskMap) { return A.calculateTaskStatusAmount(taskMap, taskStatusId); }, $signature: 1803 }; A.calculateTaskStatusAmount_closure.prototype = { call$2(taskId, task) { var t1; if (task.statusId == this.taskStatusId) { t1 = this._box_0; t1.total = t1.total + B.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, $signature: 143 }; A.memoizedTaskStatsForTaskStatus_closure.prototype = { call$2(companyGatewayId, taskMap) { return A.taskStatsForTaskStatus(companyGatewayId, taskMap); }, $signature: 354 }; A.taskStatsForTaskStatus_closure.prototype = { call$2(taskId, task) { if (task.statusId == this.statusId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 143 }; A.defaultTaskStatusId_closure.prototype = { call$1(statusId) { var $status = this.taskStatusMap._map$_map.$index(0, statusId); return !$status.get$isArchived() && !$status.isDeleted; }, $signature: 16 }; A.defaultTaskStatusId_closure0.prototype = { call$2(statusIdA, statusIdB) { var t2, t1 = this.taskStatusMap._map$_map, statusA = t1.$index(0, statusIdA), statusB = t1.$index(0, statusIdB); t1 = statusA.statusOrder; if (t1 == null) t1 = 9999; t2 = statusB.statusOrder; return B.JSInt_methods.compareTo$1(t1, t2 == null ? 9999 : t2); }, $signature: 19 }; A.TaskStatusState.prototype = { $get$1(_, statusId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, statusId)) return t1.$index(0, statusId); else return A.TaskStatusEntity_TaskStatusEntity(statusId, null); }, loadTaskStatuses$1(clients) { return this.rebuild$1(new A.TaskStatusState_loadTaskStatuses_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.TaskStatusState_loadTaskStatuses_closure0(), new A.TaskStatusState_loadTaskStatuses_closure1(), type$.legacy_String, type$.legacy_TaskStatusEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.TaskStatusState_loadTaskStatuses_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.TaskStatusState_loadTaskStatuses_closure1.prototype = { call$1(item) { return item; }, $signature: 1804 }; A.TaskStatusState_loadTaskStatuses_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 348 }; A.TaskStatusUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$TaskStatusStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_woc), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.TaskStatusStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_task_status_state$_$this(); t6 = t5._task_status_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._task_status_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_woc)); break; case "list": t5 = result.get$_task_status_state$_$this(); t6 = t5._task_status_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._task_status_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_w4G; }, get$wireName() { return "TaskStatusState"; } }; A._$TaskStatusUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_ef4)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.TaskStatusUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaskStatusEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_task_status_state$_$this(); t4 = t3._task_status_state$_editing; if (t4 == null) { t4 = new A.TaskStatusEntityBuilder(); t4.get$_task_status_model$_$this()._task_status_model$_color = ""; t3._task_status_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_ef4)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._task_status_model$_$v = t4; break; case "listUIState": t3 = result.get$_task_status_state$_$this(); t4 = t3._task_status_state$_listUIState; t3 = t4 == null ? t3._task_status_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_task_status_state$_$this()._task_status_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_task_status_state$_$this()._task_status_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_task_status_state$_$this()._task_status_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kyy; }, get$wireName() { return "TaskStatusUIState"; } }; A._$TaskStatusState.prototype = { rebuild$1(updates) { var t1 = new A.TaskStatusStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._task_status_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaskStatusState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._task_status_state$__hashCode; return t1 == null ? _this._task_status_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.TaskStatusStateBuilder.prototype = { get$map(_) { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_map; return t2 == null ? t1._task_status_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity) : t2; }, get$list(_) { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_list; return t2 == null ? t1._task_status_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_task_status_state$_$this() { var t1, t2, _this = this, $$v = _this._task_status_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._task_status_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._task_status_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._task_status_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._task_status_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$TaskStatusState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TaskStatusState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_status_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$TaskStatusUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.TaskStatusUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._task_status_state$__hashCode; return t1 == null ? _this._task_status_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.TaskStatusUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_editing; if (t2 == null) { t2 = new A.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; t1._task_status_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_listUIState; return t2 == null ? t1._task_status_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_task_status_state$_$this() { var t1, t2, _this = this, $$v = _this._task_status_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; A.ArgumentError_checkNotNull(t1, "other"); t2._task_status_model$_$v = t1; t1 = t2; } _this._task_status_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._task_status_state$_listUIState = t2; _this._task_status_state$_selectedId = $$v.selectedId; _this._task_status_state$_forceSelected = $$v.forceSelected; _this._task_status_state$_tabIndex = $$v.tabIndex; _this._task_status_state$_saveCompleter = $$v.saveCompleter; _this._task_status_state$_cancelCompleter = $$v.cancelCompleter; _this._task_status_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s17_ = "TaskStatusUIState", _$result = null; try { _$result0 = _this._task_status_state$_$v; if (_$result0 == null) { t1 = _this._task_status_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_task_status_state$_$this()._task_status_state$_selectedId; t4 = _this.get$_task_status_state$_$this()._task_status_state$_forceSelected; t5 = _this.get$_task_status_state$_$this()._task_status_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s17_, "tabIndex")); t6 = _this.get$_task_status_state$_$this()._task_status_state$_saveCompleter; _$result0 = A._$TaskStatusUIState$_(_this.get$_task_status_state$_$this()._task_status_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._task_status_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._task_status_state$_$v = t1; return _$result; } }; A._TaskStatusUIState_Object_EntityUIState.prototype = {}; A.ViewTaxRateList.prototype = {$isPersistUI: 1}; A.ViewTaxRate.prototype = {$isPersistUI: 1}; A.EditTaxRate.prototype = {$isPersistUI: 1, get$taxRate() { return this.taxRate; } }; A.UpdateTaxRate.prototype = {$isPersistUI: 1, get$taxRate() { return this.taxRate; } }; A.LoadTaxRateRequest.prototype = {$isStartLoading: 1}; A.LoadTaxRateFailure.prototype = { toString$0(_) { return "LoadTaxRateFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaxRateSuccess.prototype = { toString$0(_) { return "LoadTaxRateSuccess{taxRate: " + A.S(this.taxRate) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$taxRate() { return this.taxRate; } }; A.LoadTaxRatesRequest.prototype = {$isStartLoading: 1}; A.LoadTaxRatesFailure.prototype = { toString$0(_) { return "LoadTaxRatesFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaxRatesSuccess.prototype = { toString$0(_) { return "LoadTaxRatesSuccess{taxRates: " + A.S(this.taxRates) + "}"; }, $isStopLoading: 1 }; A.SaveTaxRateRequest.prototype = {$isStartSaving: 1, get$taxRate() { return this.taxRate; } }; A.SaveTaxRateSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taxRate() { return this.taxRate; } }; A.AddTaxRateSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taxRate() { return this.taxRate; } }; A.SaveTaxRateFailure.prototype = {$isStopSaving: 1}; A.ArchiveTaxRateRequest.prototype = {$isStartSaving: 1}; A.ArchiveTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveTaxRateFailure.prototype = {$isStopSaving: 1}; A.DeleteTaxRateRequest.prototype = {$isStartSaving: 1}; A.DeleteTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteTaxRateFailure.prototype = {$isStopSaving: 1}; A.RestoreTaxRateRequest.prototype = {$isStartSaving: 1}; A.RestoreTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreTaxRateFailure.prototype = {$isStopSaving: 1}; A.FilterTaxRates.prototype = {$isPersistUI: 1}; A.SortTaxRates.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterTaxRatesByState.prototype = {$isPersistUI: 1}; A.handleTaxRateAction_closure.prototype = { call$1(taxRate) { return taxRate.get$id(taxRate); }, $signature: 41 }; A.StartTaxRateMultiselect.prototype = {}; A.AddToTaxRateMultiselect.prototype = {}; A.RemoveFromTaxRateMultiselect.prototype = {}; A.ClearTaxRateMultiselect.prototype = {}; A._editTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { var _s33_ = "/settings/tax_settings_rates/edit"; next.call$1(type$.legacy_EditTaxRate._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s33_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s33_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewTaxRate_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTaxRate_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTaxRate._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/tax_settings_rates/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/tax_settings_rates/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewTaxRateList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s28_ = "/settings/tax_settings_rates"; next.call$1(type$.legacy_ViewTaxRateList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s28_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s28_, new A._viewTaxRateList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTaxRateList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_ArchiveTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = A.List_List$of(new A.MappedListIterable(t1, new A._archiveTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveTaxRate__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taxRateState.map._map$_map.$index(0, id); }, $signature: 270 }; A._archiveTaxRate__closure0.prototype = { call$1(taxRates) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 372 }; A._archiveTaxRate__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_DeleteTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = A.List_List$of(new A.MappedListIterable(t1, new A._deleteTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteTaxRate__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taxRateState.map._map$_map.$index(0, id); }, $signature: 270 }; A._deleteTaxRate__closure0.prototype = { call$1(taxRates) { this.store.get$_dispatchers()[0].call$1(new A.DeleteTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 372 }; A._deleteTaxRate__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_RestoreTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = A.List_List$of(new A.MappedListIterable(t1, new A._restoreTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreTaxRate__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taxRateState.map._map$_map.$index(0, id); }, $signature: 270 }; A._restoreTaxRate__closure0.prototype = { call$1(taxRates) { this.store.get$_dispatchers()[0].call$1(new A.RestoreTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 372 }; A._restoreTaxRate__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveTaxRateRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.taxRate).then$1$1(0, new A._saveTaxRate__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveTaxRate__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveTaxRate__closure.prototype = { call$1(taxRate) { var t1 = this.action, t2 = this.store; if (t1.taxRate.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddTaxRateSuccess(taxRate)); else t2.get$_dispatchers()[0].call$1(new A.SaveTaxRateSuccess(taxRate)); t1.completer.complete$1(0, taxRate); }, $signature: 141 }; A._saveTaxRate__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTaxRate_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTaxRate._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTaxRateRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taxRateId).then$1$1(0, new A._loadTaxRate__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTaxRate__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTaxRate__closure.prototype = { call$1(taxRate) { this.store.get$_dispatchers()[0].call$1(new A.LoadTaxRateSuccess(taxRate)); this.action.completer.complete$1(0, null); }, $signature: 141 }; A._loadTaxRate__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTaxRateFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTaxRates_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTaxRates._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTaxRatesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadTaxRates__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTaxRates__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTaxRates__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadTaxRatesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1808 }; A._loadTaxRates__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTaxRatesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.taxRateUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taxRateListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer8().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._tax_rate_model$_$v = t1; t1 = $.$get$selectedIdReducer8().call$2(t2.selectedId, t3); b.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer8().call$2(t2.forceSelected, t3); b.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected = t3; return b; }, $signature: 1809 }; A.forceSelectedReducer_closure67.prototype = { call$2(completer, action) { return true; }, $signature: 1810 }; A.forceSelectedReducer_closure68.prototype = { call$2(completer, action) { return false; }, $signature: 1811 }; A.forceSelectedReducer_closure69.prototype = { call$2(completer, action) { return false; }, $signature: 1812 }; A.forceSelectedReducer_closure70.prototype = { call$2(completer, action) { return false; }, $signature: 1813 }; A.selectedIdReducer_closure134.prototype = { call$2(completer, action) { return ""; }, $signature: 1814 }; A.selectedIdReducer_closure135.prototype = { call$2(completer, action) { return ""; }, $signature: 1815 }; A.selectedIdReducer_closure136.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_taxRate ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure137.prototype = { call$2(selectedId, action) { return action.taxRateId; }, $signature: 1816 }; A.selectedIdReducer_closure138.prototype = { call$2(selectedId, action) { return action.taxRate.id; }, $signature: 1817 }; A.selectedIdReducer_closure139.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure140.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure141.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1818 }; A.selectedIdReducer_closure142.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1819 }; A.selectedIdReducer_closure143.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1820 }; A.editingReducer_closure41.prototype = { call$2(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, $signature: 1821 }; A.editingReducer_closure42.prototype = { call$2(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, $signature: 1822 }; A.editingReducer_closure43.prototype = { call$2(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, $signature: 1823 }; A.editingReducer_closure44.prototype = { call$2(taxRate, action) { return action.taxRate.rebuild$1(new A.editingReducer__closure14()); }, $signature: 1824 }; A.editingReducer__closure14.prototype = { call$1(b) { b.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged = true; return b; }, $signature: 521 }; A._viewTaxRateList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterTaxRatesByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterTaxRatesByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaxRates_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taxRateListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortTaxRates_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure8.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure8.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure8.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure8.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveTaxRateSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 373 }; A._deleteTaxRateSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 373 }; A._restoreTaxRateSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 373 }; A._addTaxRate_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taxRate, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 196 }; A._updateTaxRate_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taxRate; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 196 }; A._setLoadedTaxRate_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.taxRate; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 196 }; A._setLoadedTaxRates_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.taxRates, new A._setLoadedTaxRates__closure(), new A._setLoadedTaxRates__closure0(), type$.legacy_String, type$.legacy_TaxRateEntity)); return b; }, $signature: 196 }; A._setLoadedTaxRates__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedTaxRates__closure0.prototype = { call$1(item) { return item; }, $signature: 517 }; A._setLoadedTaxRates_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 196 }; A._setLoadedCompany_closure3.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.taxRates, new A._setLoadedCompany__closure3(), new A._setLoadedCompany__closure4(), type$.legacy_String, type$.legacy_TaxRateEntity)); return b; }, $signature: 196 }; A._setLoadedCompany__closure3.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompany__closure4.prototype = { call$1(item) { return item; }, $signature: 517 }; A._setLoadedCompany_closure4.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 196 }; A.memoizedFilteredTaxRateList_closure.prototype = { call$4(selectionState, taxRateMap, taxRateList, taxRateListState) { return A.filteredTaxRatesSelector(selectionState, taxRateMap, taxRateList, taxRateListState); }, $signature: 1829 }; A.filteredTaxRatesSelector_closure.prototype = { call$1(taxRateId) { var t1, taxRate = this.taxRateMap._map$_map.$index(0, taxRateId); if (taxRate.id === this.selectionState.selectedId) return true; t1 = this.taxRateListState; if (!taxRate.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([taxRate.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredTaxRatesSelector_closure0.prototype = { call$2(taxRateAId, taxRateBId) { var sortField, sortAscending, taxRateA0, response, t1 = this.taxRateMap._map$_map, taxRateA = t1.$index(0, taxRateAId), taxRateB = t1.$index(0, taxRateBId); t1 = this.taxRateListState; sortField = t1.sortField; sortAscending = t1.sortAscending; taxRateA.toString; if (sortAscending) taxRateA0 = taxRateA; else taxRateA0 = taxRateB; if (!sortAscending) taxRateB = taxRateA; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(taxRateA0.name.toLowerCase(), taxRateB.name.toLowerCase()); break; case "rate": response = B.JSNumber_methods.compareTo$1(taxRateA0.rate, taxRateB.rate); break; default: A.print("## ERROR: sort by ." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 19 }; A.TaxRateState.prototype = { map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.TaxRateUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$TaxRateStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_o2l), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.TaxRateStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_tax_rate_state$_$this(); t6 = t5._tax_rate_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._tax_rate_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_o2l)); break; case "list": t5 = result.get$_tax_rate_state$_$this(); t6 = t5._tax_rate_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._tax_rate_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_kii; }, get$wireName() { return "TaxRateState"; } }; A._$TaxRateUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_ML3)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.TaxRateUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaxRateEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_tax_rate_state$_$this(); t4 = t3._tax_rate_state$_editing; t3 = t4 == null ? t3._tax_rate_state$_editing = new A.TaxRateEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_ML3)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._tax_rate_model$_$v = t4; break; case "listUIState": t3 = result.get$_tax_rate_state$_$this(); t4 = t3._tax_rate_state$_listUIState; t3 = t4 == null ? t3._tax_rate_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_tax_rate_state$_$this()._tax_rate_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_wEo1; }, get$wireName() { return "TaxRateUIState"; } }; A._$TaxRateState.prototype = { rebuild$1(updates) { var t1 = new A.TaxRateStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._tax_rate_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TaxRateState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._tax_rate_state$__hashCode; return t1 == null ? _this._tax_rate_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.TaxRateStateBuilder.prototype = { get$map(_) { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_map; return t2 == null ? t1._tax_rate_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaxRateEntity) : t2; }, get$list(_) { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_list; return t2 == null ? t1._tax_rate_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_tax_rate_state$_$this() { var t1, t2, _this = this, $$v = _this._tax_rate_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._tax_rate_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._tax_rate_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._tax_rate_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._tax_rate_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$TaxRateState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TaxRateState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._tax_rate_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$TaxRateUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.TaxRateUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._tax_rate_state$__hashCode; return t1 == null ? _this._tax_rate_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.TaxRateUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_editing; return t2 == null ? t1._tax_rate_state$_editing = new A.TaxRateEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_listUIState; return t2 == null ? t1._tax_rate_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_tax_rate_state$_$this() { var t1, t2, _this = this, $$v = _this._tax_rate_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.TaxRateEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._tax_rate_model$_$v = t1; t1 = t2; } _this._tax_rate_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._tax_rate_state$_listUIState = t2; _this._tax_rate_state$_selectedId = $$v.selectedId; _this._tax_rate_state$_forceSelected = $$v.forceSelected; _this._tax_rate_state$_tabIndex = $$v.tabIndex; _this._tax_rate_state$_saveCompleter = $$v.saveCompleter; _this._tax_rate_state$_cancelCompleter = $$v.cancelCompleter; _this._tax_rate_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "TaxRateUIState", _$result = null; try { _$result0 = _this._tax_rate_state$_$v; if (_$result0 == null) { t1 = _this._tax_rate_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId; t4 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected; t5 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_saveCompleter; _$result0 = A._$TaxRateUIState$_(_this.get$_tax_rate_state$_$this()._tax_rate_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._tax_rate_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._tax_rate_state$_$v = t1; return _$result; } }; A._TaxRateUIState_Object_EntityUIState.prototype = {}; A.ViewTokenList.prototype = {$isPersistUI: 1}; A.ViewToken.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$tokenId() { return this.tokenId; } }; A.EditToken.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$token() { return this.token; } }; A.UpdateToken.prototype = {$isPersistUI: 1, get$token() { return this.token; } }; A.LoadTokenRequest.prototype = {$isStartLoading: 1}; A.LoadTokenFailure.prototype = { toString$0(_) { return "LoadTokenFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTokenSuccess.prototype = { toString$0(_) { return "LoadTokenSuccess{token: " + A.S(this.token) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$token() { return this.token; } }; A.LoadTokensRequest.prototype = {$isStartLoading: 1}; A.LoadTokensFailure.prototype = { toString$0(_) { return "LoadTokensFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTokensSuccess.prototype = { toString$0(_) { return "LoadTokensSuccess{tokens: " + A.S(this.tokens) + "}"; }, $isStopLoading: 1 }; A.SaveTokenRequest.prototype = {$isStartSaving: 1, get$token() { return this.token; } }; A.SaveTokenSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$token() { return this.token; } }; A.AddTokenSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$token() { return this.token; } }; A.SaveTokenFailure.prototype = {$isStopSaving: 1}; A.ArchiveTokensRequest.prototype = {$isStartSaving: 1}; A.ArchiveTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveTokensFailure.prototype = {$isStopSaving: 1}; A.DeleteTokensRequest.prototype = {$isStartSaving: 1}; A.DeleteTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteTokensFailure.prototype = {$isStopSaving: 1}; A.RestoreTokensRequest.prototype = {$isStartSaving: 1}; A.RestoreTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreTokensFailure.prototype = {$isStopSaving: 1}; A.FilterTokens.prototype = {$isPersistUI: 1}; A.SortTokens.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterTokensByState.prototype = {$isPersistUI: 1}; A.FilterTokensByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTokensByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTokensByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterTokensByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleTokenAction_closure.prototype = { call$1(token) { return token.get$id(token); }, $signature: 41 }; A.StartTokenMultiselect.prototype = {}; A.AddToTokenMultiselect.prototype = {}; A.RemoveFromTokenMultiselect.prototype = {}; A.ClearTokenMultiselect.prototype = {}; A._editToken_closure.prototype = { call$3(store, dynamicAction, next) { var _s20_ = "/settings/token/edit"; next.call$1(type$.legacy_EditToken._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s20_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s20_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewToken_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewToken_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewToken_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewToken._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/token/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/token/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewTokenList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s16_ = "/settings/tokens"; next.call$1(type$.legacy_ViewTokenList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s16_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s16_, new A._viewTokenList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewTokenList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveToken_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_ArchiveTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = A.List_List$of(new A.MappedListIterable(t1, new A._archiveToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveToken__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveToken__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].tokenState.map._map$_map.$index(0, id); }, $signature: 374 }; A._archiveToken__closure0.prototype = { call$1(tokens) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 376 }; A._archiveToken__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteToken_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_DeleteTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = A.List_List$of(new A.MappedListIterable(t1, new A._deleteToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteToken__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteToken__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].tokenState.map._map$_map.$index(0, id); }, $signature: 374 }; A._deleteToken__closure0.prototype = { call$1(tokens) { this.store.get$_dispatchers()[0].call$1(new A.DeleteTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 376 }; A._deleteToken__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreToken_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_RestoreTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = A.List_List$of(new A.MappedListIterable(t1, new A._restoreToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreToken__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreToken__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].tokenState.map._map$_map.$index(0, id); }, $signature: 374 }; A._restoreToken__closure0.prototype = { call$1(tokens) { this.store.get$_dispatchers()[0].call$1(new A.RestoreTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 376 }; A._restoreToken__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveToken_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveTokenRequest._as(dynamicAction); this.repository.saveData$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.token, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._saveToken__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveToken__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveToken__closure.prototype = { call$1(token) { var t1 = this.action, t2 = this.store; if (t1.token.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddTokenSuccess(token)); else t2.get$_dispatchers()[0].call$1(new A.SaveTokenSuccess(token)); t1.completer.complete$1(0, token); }, $signature: 338 }; A._saveToken__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SaveTokenFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadToken_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadToken._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTokenRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.tokenId).then$1$1(0, new A._loadToken__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadToken__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadToken__closure.prototype = { call$1(token) { this.store.get$_dispatchers()[0].call$1(new A.LoadTokenSuccess(token)); this.action.completer.complete$1(0, null); }, $signature: 338 }; A._loadToken__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTokenFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadTokens_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadTokens._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadTokensRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadTokens__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadTokens__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadTokens__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadTokensSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1833 }; A._loadTokens__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadTokensFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.tokenUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$tokenListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer13().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._token_model$_$v = t1; t1 = $.$get$selectedIdReducer13().call$2(t2.selectedId, t3); b.get$_token_state$_$this()._token_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer13().call$2(t2.forceSelected, t3); b.get$_token_state$_$this()._token_state$_forceSelected = t3; return b; }, $signature: 1834 }; A.forceSelectedReducer_closure103.prototype = { call$2(completer, action) { return true; }, $signature: 1835 }; A.forceSelectedReducer_closure104.prototype = { call$2(completer, action) { return false; }, $signature: 1836 }; A.forceSelectedReducer_closure105.prototype = { call$2(completer, action) { return false; }, $signature: 1837 }; A.forceSelectedReducer_closure106.prototype = { call$2(completer, action) { return false; }, $signature: 1838 }; A.forceSelectedReducer_closure107.prototype = { call$2(completer, action) { return false; }, $signature: 1839 }; A.forceSelectedReducer_closure108.prototype = { call$2(completer, action) { return false; }, $signature: 1840 }; A.forceSelectedReducer_closure109.prototype = { call$2(completer, action) { return false; }, $signature: 1841 }; A.forceSelectedReducer_closure110.prototype = { call$2(completer, action) { return false; }, $signature: 1842 }; A.selectedIdReducer_closure207.prototype = { call$2(completer, action) { return ""; }, $signature: 1843 }; A.selectedIdReducer_closure208.prototype = { call$2(completer, action) { return ""; }, $signature: 1844 }; A.selectedIdReducer_closure209.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_token ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure210.prototype = { call$2(selectedId, action) { return action.get$tokenId(); }, $signature: 90 }; A.selectedIdReducer_closure211.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$token()); }, $signature: 90 }; A.selectedIdReducer_closure212.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure213.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure214.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1845 }; A.selectedIdReducer_closure215.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1846 }; A.selectedIdReducer_closure216.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1847 }; A.selectedIdReducer_closure217.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1848 }; A.selectedIdReducer_closure218.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1849 }; A.selectedIdReducer_closure219.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1850 }; A.selectedIdReducer_closure220.prototype = { call$2(selectedId, action) { return ""; }, $signature: 1851 }; A.selectedIdReducer_closure221.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_token ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure68.prototype = { call$2(tokens, action) { return J.$index$asx(action.tokens, 0); }, $signature: 1852 }; A.editingReducer_closure69.prototype = { call$2(tokens, action) { return J.$index$asx(action.tokens, 0); }, $signature: 1853 }; A.editingReducer_closure70.prototype = { call$2(tokens, action) { return J.$index$asx(action.tokens, 0); }, $signature: 1854 }; A.editingReducer_closure71.prototype = { call$2(token, action) { return action.token.rebuild$1(new A.editingReducer__closure25()); }, $signature: 1855 }; A.editingReducer__closure25.prototype = { call$1(b) { b.get$_token_model$_$this()._token_model$_isChanged = true; return b; }, $signature: 513 }; A._viewTokenList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterTokensByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTokensByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTokensByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTokensByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTokensByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterTokensByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTokens_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.tokenListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortTokens_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure13.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure13.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure13.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure13.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveTokenSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 377 }; A._deleteTokenSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 377 }; A._restoreTokenSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 377 }; A._addToken_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.token, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 336 }; A._updateToken_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.token; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 336 }; A._setLoadedToken_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.token; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 336 }; A.memoizedFilteredTokenList_closure.prototype = { call$4(selectionState, tokenMap, tokenList, tokenListState) { return A.filteredTokensSelector(selectionState, tokenMap, tokenList, tokenListState); }, $signature: 1859 }; A.filteredTokensSelector_closure.prototype = { call$1(tokenId) { var t1, token = this.tokenMap._map$_map.$index(0, tokenId); if (token.id === this.selectionState.selectedId) return true; if (token.isSystem) return false; t1 = this.tokenListState; if (!token.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([token.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredTokensSelector_closure0.prototype = { call$2(tokenAId, tokenBId) { var sortField, sortAscending, tokenA0, response, t1 = this.tokenMap._map$_map, tokenA = t1.$index(0, tokenAId), tokenB = t1.$index(0, tokenBId); t1 = this.tokenListState; sortField = t1.sortField; sortAscending = t1.sortAscending; tokenA.toString; if (sortAscending) tokenA0 = tokenA; else tokenA0 = tokenB; if (!sortAscending) tokenB = tokenA; switch (sortField) { case "name": response = B.JSString_methods.compareTo$1(tokenA0.name.toLowerCase(), tokenB.name.toLowerCase()); break; default: A.print("## ERROR: sort by token." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 19 }; A.TokenState.prototype = { loadTokens$1(clients) { return this.rebuild$1(new A.TokenState_loadTokens_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.TokenState_loadTokens_closure0(), new A.TokenState_loadTokens_closure1(), type$.legacy_String, type$.legacy_TokenEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.TokenState_loadTokens_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.TokenState_loadTokens_closure1.prototype = { call$1(item) { return item; }, $signature: 1860 }; A.TokenState_loadTokens_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 336 }; A.TokenUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$TokenStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_C42), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.TokenStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_token_state$_$this(); t6 = t5._token_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._token_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_C42)); break; case "list": t5 = result.get$_token_state$_$this(); t6 = t5._token_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._token_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_H7P; }, get$wireName() { return "TokenState"; } }; A._$TokenUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_Azp)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.TokenUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TokenEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_token_state$_$this(); t4 = t3._token_state$_editing; t3 = t4 == null ? t3._token_state$_editing = new A.TokenEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_Azp)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._token_model$_$v = t4; break; case "listUIState": t3 = result.get$_token_state$_$this(); t4 = t3._token_state$_listUIState; t3 = t4 == null ? t3._token_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_token_state$_$this()._token_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_token_state$_$this()._token_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_token_state$_$this()._token_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_YuA; }, get$wireName() { return "TokenUIState"; } }; A._$TokenState.prototype = { rebuild$1(updates) { var t1 = new A.TokenStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._token_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.TokenState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._token_state$__hashCode; return t1 == null ? _this._token_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.TokenStateBuilder.prototype = { get$map(_) { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_map; return t2 == null ? t1._token_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TokenEntity) : t2; }, get$list(_) { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_list; return t2 == null ? t1._token_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_token_state$_$this() { var t1, t2, _this = this, $$v = _this._token_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._token_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._token_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._token_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._token_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$TokenState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("TokenState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._token_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$TokenUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.TokenUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._token_state$__hashCode; return t1 == null ? _this._token_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.TokenUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_editing; return t2 == null ? t1._token_state$_editing = new A.TokenEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_listUIState; return t2 == null ? t1._token_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_token_state$_$this() { var t1, t2, _this = this, $$v = _this._token_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.TokenEntityBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._token_model$_$v = t1; t1 = t2; } _this._token_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._token_state$_listUIState = t2; _this._token_state$_selectedId = $$v.selectedId; _this._token_state$_forceSelected = $$v.forceSelected; _this._token_state$_tabIndex = $$v.tabIndex; _this._token_state$_saveCompleter = $$v.saveCompleter; _this._token_state$_cancelCompleter = $$v.cancelCompleter; _this._token_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s12_ = "TokenUIState", _$result = null; try { _$result0 = _this._token_state$_$v; if (_$result0 == null) { t1 = _this._token_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_token_state$_$this()._token_state$_selectedId; t4 = _this.get$_token_state$_$this()._token_state$_forceSelected; t5 = _this.get$_token_state$_$this()._token_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s12_, "tabIndex")); t6 = _this.get$_token_state$_$this()._token_state$_saveCompleter; _$result0 = A._$TokenUIState$_(_this.get$_token_state$_$this()._token_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._token_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._token_state$_$v = t1; return _$result; } }; A._TokenUIState_Object_EntityUIState.prototype = {}; A.EntityUIState.prototype = {}; A.ListUIState.prototype = { getCustomFilters$1(fieldNumber) { var _this = this; switch (fieldNumber) { case 1: return _this.custom1Filters; case 2: return _this.custom2Filters; case 3: return _this.custom3Filters; case 4: return _this.custom4Filters; default: return null; } } }; A._$ListUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, B.FullType_kjq), "sortField", serializers.serialize$2$specifiedType(object.sortField, B.FullType_h8g), "sortAscending", serializers.serialize$2$specifiedType(object.sortAscending, B.FullType_MtR), "stateFilters", serializers.serialize$2$specifiedType(object.stateFilters, B.FullType_JmU), "statusFilters", serializers.serialize$2$specifiedType(object.statusFilters, B.FullType_Icb), "custom1Filters", serializers.serialize$2$specifiedType(object.custom1Filters, B.FullType_6m4), "custom2Filters", serializers.serialize$2$specifiedType(object.custom2Filters, B.FullType_6m4), "custom3Filters", serializers.serialize$2$specifiedType(object.custom3Filters, B.FullType_6m4), "custom4Filters", serializers.serialize$2$specifiedType(object.custom4Filters, B.FullType_6m4)], type$.JSArray_legacy_Object), value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.selectedIds; if (value != null) { result.push("selectedIds"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_6m4)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, key, value, t8, t9, t10, result = new A.ListUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.legacy_EntityStatus, t5 = type$.ListBuilder_legacy_EntityStatus, t6 = type$.legacy_EntityState, t7 = type$.ListBuilder_legacy_EntityState; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "filter": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_list_ui_state$_$this()._list_ui_state$_filter = t8; break; case "filterClearedAt": t8 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t8; break; case "sortField": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_list_ui_state$_$this()._sortField = t8; break; case "sortAscending": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_list_ui_state$_$this()._sortAscending = t8; break; case "stateFilters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._stateFilters; if (t9 == null) { t9 = new A.ListBuilder(t7); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t6); t8._stateFilters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_JmU)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "statusFilters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._statusFilters; if (t9 == null) { t9 = new A.ListBuilder(t5); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t4); t8._statusFilters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Icb)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom1Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom1Filters; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._custom1Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom2Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom2Filters; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._custom2Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom3Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom3Filters; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._custom3Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom4Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom4Filters; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._custom4Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "selectedIds": t8 = result.get$_list_ui_state$_$this(); t9 = t8._selectedIds; if (t9 == null) { t9 = new A.ListBuilder(t3); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t8._selectedIds = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_RsV; }, get$wireName() { return "ListUIState"; } }; A._$ListUIState.prototype = { rebuild$1(updates) { var t1 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._list_ui_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ListUIState && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt && _this.sortField === other.sortField && _this.sortAscending === other.sortAscending && J.$eq$(_this.stateFilters, other.stateFilters) && J.$eq$(_this.statusFilters, other.statusFilters) && J.$eq$(_this.custom1Filters, other.custom1Filters) && J.$eq$(_this.custom2Filters, other.custom2Filters) && J.$eq$(_this.custom3Filters, other.custom3Filters) && J.$eq$(_this.custom4Filters, other.custom4Filters) && J.$eq$(_this.selectedIds, other.selectedIds); }, get$hashCode(_) { var _this = this, t1 = _this._list_ui_state$__hashCode; return t1 == null ? _this._list_ui_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.filter)), B.JSInt_methods.get$hashCode(_this.filterClearedAt)), B.JSString_methods.get$hashCode(_this.sortField)), B.JSBool_methods.get$hashCode(_this.sortAscending)), J.get$hashCode$(_this.stateFilters)), J.get$hashCode$(_this.statusFilters)), J.get$hashCode$(_this.custom1Filters)), J.get$hashCode$(_this.custom2Filters)), J.get$hashCode$(_this.custom3Filters)), J.get$hashCode$(_this.custom4Filters)), J.get$hashCode$(_this.selectedIds))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ListUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); t2.add$2(t1, "sortField", _this.sortField); t2.add$2(t1, "sortAscending", _this.sortAscending); t2.add$2(t1, "stateFilters", _this.stateFilters); t2.add$2(t1, "statusFilters", _this.statusFilters); t2.add$2(t1, "custom1Filters", _this.custom1Filters); t2.add$2(t1, "custom2Filters", _this.custom2Filters); t2.add$2(t1, "custom3Filters", _this.custom3Filters); t2.add$2(t1, "custom4Filters", _this.custom4Filters); t2.add$2(t1, "selectedIds", _this.selectedIds); return t2.toString$0(t1); } }; A.ListUIStateBuilder.prototype = { get$stateFilters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._stateFilters; return t2 == null ? t1._stateFilters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityState) : t2; }, get$statusFilters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._statusFilters; return t2 == null ? t1._statusFilters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityStatus) : t2; }, get$custom1Filters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom1Filters; return t2 == null ? t1._custom1Filters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$custom2Filters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom2Filters; return t2 == null ? t1._custom2Filters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$custom3Filters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom3Filters; return t2 == null ? t1._custom3Filters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$custom4Filters() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom4Filters; return t2 == null ? t1._custom4Filters = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$selectedIds() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._selectedIds; return t2 == null ? t1._selectedIds = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_list_ui_state$_$this() { var t1, _this = this, $$v = _this._list_ui_state$_$v; if ($$v != null) { _this._list_ui_state$_filter = $$v.filter; _this._list_ui_state$_filterClearedAt = $$v.filterClearedAt; _this._sortField = $$v.sortField; _this._sortAscending = $$v.sortAscending; t1 = $$v.stateFilters; t1.toString; _this._stateFilters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.statusFilters; t1.toString; _this._statusFilters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom1Filters; t1.toString; _this._custom1Filters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom2Filters; t1.toString; _this._custom2Filters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom3Filters; t1.toString; _this._custom3Filters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom4Filters; t1.toString; _this._custom4Filters = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.selectedIds; _this._selectedIds = t1 == null ? null : A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._list_ui_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _s11_ = "ListUIState", _$result = null; try { _$result0 = _this._list_ui_state$_$v; if (_$result0 == null) { t1 = _this.get$_list_ui_state$_$this()._list_ui_state$_filter; t2 = _this.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "filterClearedAt")); t3 = _this.get$_list_ui_state$_$this()._sortField; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "sortField")); t4 = _this.get$_list_ui_state$_$this()._sortAscending; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "sortAscending")); t5 = _this.get$stateFilters().build$0(0); t6 = _this.get$statusFilters().build$0(0); t7 = _this.get$custom1Filters().build$0(0); t8 = _this.get$custom2Filters().build$0(0); t9 = _this.get$custom3Filters().build$0(0); t10 = _this.get$custom4Filters().build$0(0); t11 = _this._selectedIds; _$result0 = A._$ListUIState$_(t7, t8, t9, t10, t1, t2, t11 == null ? null : t11.build$0(0), t4, t3, t5, t6); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "stateFilters"; _this.get$stateFilters().build$0(0); _$failedField = "statusFilters"; _this.get$statusFilters().build$0(0); _$failedField = "custom1Filters"; _this.get$custom1Filters().build$0(0); _$failedField = "custom2Filters"; _this.get$custom2Filters().build$0(0); _$failedField = "custom3Filters"; _this.get$custom3Filters().build$0(0); _$failedField = "custom4Filters"; _this.get$custom4Filters().build$0(0); _$failedField = "selectedIds"; t1 = _this._selectedIds; if (t1 != null) t1.build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._list_ui_state$_$v = t1; return _$result; } }; A.prefReducer_closure.prototype = { call$1(b) { var t1 = this.selectedCompanyId, t2 = this.state, t3 = this.action; b.get$companyPrefs().$indexSet(0, t1, A.companyPrefReducer(t2.companyPrefs._map$_map.$index(0, t1), t3)); t1 = $.$get$layoutReducer().call$2(t2.appLayout, t3); b.get$_pref_state$_$this()._appLayout = t1; t1 = $.$get$rowsPerPageReducer().call$2(t2.rowsPerPage, t3); b.get$_pref_state$_$this()._rowsPerPage = t1; t1 = $.$get$moduleLayoutReducer().call$2(t2.moduleLayout, t3); b.get$_pref_state$_$this()._moduleLayout = t1; t1 = $.$get$isPreviewVisibleReducer().call$2(t2.isPreviewVisible, t3); b.get$_pref_state$_$this()._isPreviewVisible = t1; t1 = $.$get$manuSidebarReducer().call$2(t2.menuSidebarMode, t3); b.get$_pref_state$_$this()._menuSidebarMode = t1; t1 = $.$get$historySidebarReducer().call$2(t2.historySidebarMode, t3); b.get$_pref_state$_$this()._historySidebarMode = t1; t1 = $.$get$hideDesktopWarningReducer().call$2(t2.hideDesktopWarning, t3); b.get$_pref_state$_$this()._hideDesktopWarning = t1; t1 = $.$get$hideGatewayWarningReducer().call$2(t2.hideGatewayWarning, t3); b.get$_pref_state$_$this()._hideGatewayWarning = t1; t1 = $.$get$hideReviewAppReducer().call$2(t2.hideReviewApp, t3); b.get$_pref_state$_$this()._hideReviewApp = t1; t1 = $.$get$textScaleFactorReducer().call$2(t2.textScaleFactor, t3); b.get$_pref_state$_$this()._textScaleFactor = t1; t1 = $.$get$menuVisibleReducer().call$2(t2.isMenuVisible, t3); b.get$_pref_state$_$this()._isMenuVisible = t1; t1 = $.$get$historyVisibleReducer().call$2(t2.isHistoryVisible, t3); b.get$_pref_state$_$this()._isHistoryVisible = t1; t1 = $.$get$darkModeReducer().call$2(t2.enableDarkMode, t3); b.get$_pref_state$_$this()._enableDarkMode = t1; t1 = $.$get$enableJspdfReducer().call$2(t2.enableJSPDF, t3); b.get$_pref_state$_$this()._enableJSPDF = t1; t1 = $.$get$enableTooltipsReducer().call$2(t2.enableTooltips, t3); b.get$_pref_state$_$this()._enableTooltips = t1; t1 = $.$get$enableFlexibleSearchReducer().call$2(t2.enableFlexibleSearch, t3); b.get$_pref_state$_$this()._enableFlexibleSearch = t1; t1 = $.$get$persistDataReducer().call$2(t2.persistData, t3); b.get$_pref_state$_$this()._persistData = t1; t1 = $.$get$persistUIReducer().call$2(t2.persistUI, t3); b.get$_pref_state$_$this()._persistUI = t1; t1 = $.$get$showKanbanReducer().call$2(t2.showKanban, t3); b.get$_pref_state$_$this()._showKanban = t1; t1 = $.$get$isFilterVisibleReducer().call$2(t2.isFilterVisible, t3); b.get$_pref_state$_$this()._isFilterVisible = t1; t1 = $.$get$longPressReducer().call$2(t2.longPressSelectionIsDefault, t3); b.get$_pref_state$_$this()._longPressSelectionIsDefault = t1; t1 = $.$get$tapSelectedToEditReducer().call$2(t2.tapSelectedToEdit, t3); b.get$_pref_state$_$this()._tapSelectedToEdit = t1; t1 = $.$get$requireAuthenticationReducer().call$2(t2.requireAuthentication, t3); b.get$_pref_state$_$this()._requireAuthentication = t1; t1 = $.$get$colorThemeReducer().call$2(t2.colorTheme, t3); b.get$_pref_state$_$this()._colorTheme = t1; b.get$customColors().replace$1(0, $.$get$customColorsReducer().call$2(t2.customColors, t3)); b.get$useSidebarEditor().replace$1(0, $.$get$sidebarEditorReducer().call$2(t2.useSidebarEditor, t3)); b.get$useSidebarViewer().replace$1(0, $.$get$sidebarViewerReducer().call$2(t2.useSidebarViewer, t3)); b.get$sortFields().replace$1(0, $.$get$sortFieldsReducer().call$2(t2.sortFields, t3)); t1 = $.$get$editAfterSavingReducer().call$2(t2.editAfterSaving, t3); b.get$_pref_state$_$this()._editAfterSaving = t1; t1 = $.$get$enableTouchEventsReducer().call$2(t2.enableTouchEvents, t3); b.get$_pref_state$_$this()._enableTouchEvents = t1; t3 = $.$get$showPdfPreviewReducer().call$2(t2.showPdfPreview, t3); b.get$_pref_state$_$this()._showPdfPreview = t3; return b; }, $signature: 809 }; A._resortFields_closure.prototype = { call$1(b) { var t1 = this.sortField, t2 = this.field; t1 = t1.field != t2 || !t1.ascending; b.get$_pref_state$_$this()._ascending = t1; b.get$_pref_state$_$this()._field = t2; return b; }, $signature: 1861 }; A._resortFields_closure0.prototype = { call$1(b) { b.$indexSet(0, this.entityType, this.directon); return b; }, $signature: 1862 }; A.sortFieldsReducer_closure.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_client, action.field); }, $signature: 1863 }; A.sortFieldsReducer_closure0.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_product, action.field); }, $signature: 1864 }; A.sortFieldsReducer_closure1.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_invoice, action.field); }, $signature: 1865 }; A.sortFieldsReducer_closure2.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_payment, action.field); }, $signature: 1866 }; A.sortFieldsReducer_closure3.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_recurringInvoice, action.field); }, $signature: 1867 }; A.sortFieldsReducer_closure4.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_quote, action.field); }, $signature: 1868 }; A.sortFieldsReducer_closure5.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_credit, action.field); }, $signature: 1869 }; A.sortFieldsReducer_closure6.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_project, action.field); }, $signature: 1870 }; A.sortFieldsReducer_closure7.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_task, action.field); }, $signature: 1871 }; A.sortFieldsReducer_closure8.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_vendor, action.field); }, $signature: 1872 }; A.sortFieldsReducer_closure9.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_expense, action.field); }, $signature: 1873 }; A.sortFieldsReducer_closure10.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_payment, action.field); }, $signature: 1874 }; A.sortFieldsReducer_closure11.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_taxRate, action.field); }, $signature: 1875 }; A.sortFieldsReducer_closure12.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_companyGateway, action.get$field()); }, $signature: 1876 }; A.sortFieldsReducer_closure13.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_user, action.field); }, $signature: 1877 }; A.sortFieldsReducer_closure14.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_group, action.field); }, $signature: 1878 }; A.sortFieldsReducer_closure15.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_design, action.field); }, $signature: 1879 }; A.sortFieldsReducer_closure16.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_token, action.field); }, $signature: 1880 }; A.sortFieldsReducer_closure17.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_webhook, action.field); }, $signature: 1881 }; A.sortFieldsReducer_closure18.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_expenseCategory, action.field); }, $signature: 1882 }; A.sortFieldsReducer_closure19.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_taskStatus, action.field); }, $signature: 1883 }; A.sortFieldsReducer_closure20.prototype = { call$2(value, action) { return A._resortFields(value, B.EntityType_subscription, action.field); }, $signature: 1884 }; A.sidebarEditorReducer_closure.prototype = { call$2(value, action) { var entityType = action.entityType.get$baseType(); if (value._map$_map.containsKey$1(0, entityType)) return value.rebuild$1(new A.sidebarEditorReducer__closure(entityType, value)); else return value.rebuild$1(new A.sidebarEditorReducer__closure0(entityType)); }, $signature: 1885 }; A.sidebarEditorReducer__closure.prototype = { call$1(b) { var t1 = this.entityType; b.$indexSet(0, t1, !this.value._map$_map.$index(0, t1)); return b; }, $signature: 335 }; A.sidebarEditorReducer__closure0.prototype = { call$1(b) { b.$indexSet(0, this.entityType, true); return b; }, $signature: 335 }; A.sidebarViewerReducer_closure.prototype = { call$2(value, action) { var entityType = action.entityType.get$baseType(); if (value._map$_map.containsKey$1(0, entityType)) return value.rebuild$1(new A.sidebarViewerReducer__closure(entityType, value)); else return value.rebuild$1(new A.sidebarViewerReducer__closure0(entityType)); }, $signature: 1887 }; A.sidebarViewerReducer__closure.prototype = { call$1(b) { var t1 = this.entityType; b.$indexSet(0, t1, !this.value._map$_map.$index(0, t1)); return b; }, $signature: 335 }; A.sidebarViewerReducer__closure0.prototype = { call$1(b) { b.$indexSet(0, this.entityType, true); return b; }, $signature: 335 }; A.menuVisibleReducer_closure.prototype = { call$2(value, action) { return action.sidebar === B.AppSidebar_menu ? !value : value; }, $signature: 76 }; A.menuVisibleReducer_closure0.prototype = { call$2(value, action) { switch (action.menuMode) { case B.AppSidebarMode_visible: return true; case B.AppSidebarMode_collapse: case B.AppSidebarMode_float: return false; default: return value; } }, $signature: 76 }; A.textScaleFactorReducer_closure.prototype = { call$2(value, action) { var t1 = action.textScaleFactor; return t1 == null ? value : t1; }, $signature: 1889 }; A.historyVisibleReducer_closure.prototype = { call$2(value, action) { return action.sidebar === B.AppSidebar_history ? !value : value; }, $signature: 76 }; A.historyVisibleReducer_closure0.prototype = { call$2(value, action) { var t1 = action.historyMode; if (t1 === B.AppSidebarMode_visible) t1 = true; else t1 = t1 === B.AppSidebarMode_float ? false : value; return t1; }, $signature: 76 }; A.hideDesktopWarningReducer_closure.prototype = { call$2(filter, action) { return true; }, $signature: 787 }; A.hideGatewayWarningReducer_closure.prototype = { call$2(filter, action) { return true; }, $signature: 1890 }; A.hideReviewAppReducer_closure.prototype = { call$2(filter, action) { return true; }, $signature: 1891 }; A.layoutReducer_closure.prototype = { call$2(layout, action) { var t1 = action.appLayout; return t1 == null ? layout : t1; }, $signature: 1892 }; A.moduleLayoutReducer_closure.prototype = { call$2(moduleLayout, action) { var t1 = action.moduleLayout; if (t1 != null) return t1; else { t1 = action.appLayout; if (t1 != null) return t1 === B.AppLayout_desktop ? B.ModuleLayout_table : B.ModuleLayout_list; } return moduleLayout; }, $signature: 1893 }; A.moduleLayoutReducer_closure0.prototype = { call$2(moduleLayout, action) { if (moduleLayout === B.ModuleLayout_list) return B.ModuleLayout_table; else return B.ModuleLayout_list; }, $signature: 1894 }; A.rowsPerPageReducer_closure.prototype = { call$2(numRows, action) { var t1 = action.rowsPerPage; return t1 == null ? numRows : t1; }, $signature: 1895 }; A.manuSidebarReducer_closure.prototype = { call$2(mode, action) { var t1 = action.menuMode; return t1 == null ? mode : t1; }, $signature: 807 }; A.historySidebarReducer_closure.prototype = { call$2(mode, action) { var t1 = action.historyMode; return t1 == null ? mode : t1; }, $signature: 807 }; A.darkModeReducer_closure.prototype = { call$2(enableDarkMode, action) { var t1 = action.enableDarkMode; return t1 == null ? enableDarkMode : t1; }, $signature: 76 }; A.enableJspdfReducer_closure.prototype = { call$2(enableJSPDF, action) { var t1 = action.enableJSPDF; return t1 == null ? enableJSPDF : t1; }, $signature: 76 }; A.enableTooltipsReducer_closure.prototype = { call$2(enableTooltips, action) { var t1 = action.enableTooltips; return t1 == null ? enableTooltips : t1; }, $signature: 76 }; A.enableFlexibleSearchReducer_closure.prototype = { call$2(enableFlexibleSearch, action) { var t1 = action.flexibleSearch; return t1 == null ? enableFlexibleSearch : t1; }, $signature: 76 }; A.persistDataReducer_closure.prototype = { call$2(persistData, action) { var t1 = action.persistData; return t1 == null ? persistData : t1; }, $signature: 76 }; A.persistUIReducer_closure.prototype = { call$2(persistUI, action) { action.toString; return persistUI; }, $signature: 76 }; A.showKanbanReducer_closure.prototype = { call$2(showKanban, action) { var t1 = action.showKanban; return t1 == null ? showKanban : t1; }, $signature: 76 }; A.isFilterVisibleReducer_closure.prototype = { call$2(value, action) { var t1 = action.isFilterVisible; return t1 == null ? value : t1; }, $signature: 76 }; A.longPressReducer_closure.prototype = { call$2(longPressSelectionIsDefault, action) { var t1 = action.longPressSelectionIsDefault; return t1 == null ? longPressSelectionIsDefault : t1; }, $signature: 76 }; A.tapSelectedToEditReducer_closure.prototype = { call$2(tapSelectedToEdit, action) { var t1 = action.tapSelectedToEdit; return t1 == null ? tapSelectedToEdit : t1; }, $signature: 76 }; A.isPreviewVisibleReducer_closure.prototype = { call$2(value, action) { return !value; }, $signature: 1897 }; A.isPreviewVisibleReducer_closure0.prototype = { call$2(isPreviewEnabled, action) { var t1 = action.isPreviewVisible; return t1 == null ? isPreviewEnabled : t1; }, $signature: 76 }; A.requireAuthenticationReducer_closure.prototype = { call$2(requireAuthentication, action) { var t1 = action.requireAuthentication; return t1 == null ? requireAuthentication : t1; }, $signature: 76 }; A.colorThemeReducer_closure.prototype = { call$2(currentColorTheme, action) { var t1 = action.colorTheme; return t1 == null ? currentColorTheme : t1; }, $signature: 1898 }; A.showPdfPreviewReducer_closure.prototype = { call$2(value, action) { var t1 = action.showPdfPreview; return t1 == null ? value : t1; }, $signature: 76 }; A.editAfterSavingReducer_closure.prototype = { call$2(value, action) { var t1 = action.editAfterSaving; return t1 == null ? value : t1; }, $signature: 76 }; A.enableTouchEventsReducer_closure.prototype = { call$2(value, action) { var t1 = action.enableTouchEvents; return t1 == null ? value : t1; }, $signature: 76 }; A.customColorsReducer_closure.prototype = { call$2(customColors, action) { var t1 = action.customColors; return t1 == null ? customColors : t1; }, $signature: 1899 }; A.companyPrefReducer_closure.prototype = { call$1(b) { b.get$historyList().replace$1(0, $.$get$historyReducer().call$2(this._box_0.state.historyList, this.action)); return b; }, $signature: 1900 }; A.historyReducer_closure.prototype = { call$2(historyList, action) { if (historyList._list.length === 0) return historyList; else return historyList.rebuild$1(new A.historyReducer__closure()); }, $signature: 1901 }; A.historyReducer__closure.prototype = { call$1(b) { B.JSArray_methods.removeAt$1(b.get$_safeList(), 0); return b; }, $signature: 378 }; A.historyReducer_closure0.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_dashboard, null, Date.now())); }, $signature: 1903 }; A.historyReducer_closure1.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_reports, null, Date.now())); }, $signature: 1904 }; A.historyReducer_closure2.prototype = { call$2(historyList, action) { var t1 = action.section; if (t1 == null) t1 = "company_details"; return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_settings, t1, Date.now())); }, $signature: 1905 }; A.historyReducer_closure3.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_client, action.clientId, Date.now())); }, $signature: 1906 }; A.historyReducer_closure4.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_client, action.client.id, Date.now())); }, $signature: 1907 }; A.historyReducer_closure5.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_product, action.productId, Date.now())); }, $signature: 1908 }; A.historyReducer_closure6.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_product, action.product.id, Date.now())); }, $signature: 1909 }; A.historyReducer_closure7.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_invoice, action.invoiceId, Date.now())); }, $signature: 1910 }; A.historyReducer_closure8.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_invoice, action.invoice.id, Date.now())); }, $signature: 1911 }; A.historyReducer_closure9.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_payment, action.paymentId, Date.now())); }, $signature: 1912 }; A.historyReducer_closure10.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_payment, action.payment.id, Date.now())); }, $signature: 1913 }; A.historyReducer_closure11.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_quote, action.quoteId, Date.now())); }, $signature: 1914 }; A.historyReducer_closure12.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_quote, action.quote.id, Date.now())); }, $signature: 1915 }; A.historyReducer_closure13.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_task, action.taskId, Date.now())); }, $signature: 1916 }; A.historyReducer_closure14.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_task, action.task.id, Date.now())); }, $signature: 1917 }; A.historyReducer_closure15.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_project, action.projectId, Date.now())); }, $signature: 1918 }; A.historyReducer_closure16.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_project, action.project.id, Date.now())); }, $signature: 1919 }; A.historyReducer_closure17.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_vendor, action.vendorId, Date.now())); }, $signature: 1920 }; A.historyReducer_closure18.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_vendor, action.vendor.id, Date.now())); }, $signature: 1921 }; A.historyReducer_closure19.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_expense, action.expenseId, Date.now())); }, $signature: 1922 }; A.historyReducer_closure20.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_expense, action.expense.id, Date.now())); }, $signature: 1923 }; A.historyReducer_closure21.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_companyGateway, action.companyGatewayId, Date.now())); }, $signature: 1924 }; A.historyReducer_closure22.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_companyGateway, action.companyGateway.id, Date.now())); }, $signature: 1925 }; A.historyReducer_closure23.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_user, action.userId, Date.now())); }, $signature: 1926 }; A.historyReducer_closure24.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_user, action.user.id, Date.now())); }, $signature: 1927 }; A.historyReducer_closure25.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_group, action.groupId, Date.now())); }, $signature: 1928 }; A.historyReducer_closure26.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_group, action.group.id, Date.now())); }, $signature: 1929 }; A.historyReducer_closure27.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_purchaseOrder, action.purchaseOrderId, Date.now())); }, $signature: 1930 }; A.historyReducer_closure28.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_purchaseOrder, action.purchaseOrder.id, Date.now())); }, $signature: 1931 }; A.historyReducer_closure29.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_recurringExpense, action.recurringExpenseId, Date.now())); }, $signature: 1932 }; A.historyReducer_closure30.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_recurringExpense, action.recurringExpense.id, Date.now())); }, $signature: 1933 }; A.historyReducer_closure31.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_subscription, action.subscriptionId, Date.now())); }, $signature: 1934 }; A.historyReducer_closure32.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_subscription, action.subscription.id, Date.now())); }, $signature: 1935 }; A.historyReducer_closure33.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_taskStatus, action.taskStatusId, Date.now())); }, $signature: 1936 }; A.historyReducer_closure34.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_taskStatus, action.taskStatus.id, Date.now())); }, $signature: 1937 }; A.historyReducer_closure35.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_expenseCategory, action.expenseCategoryId, Date.now())); }, $signature: 1938 }; A.historyReducer_closure36.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_expenseCategory, action.expenseCategory.id, Date.now())); }, $signature: 1939 }; A.historyReducer_closure37.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_recurringInvoice, action.recurringInvoiceId, Date.now())); }, $signature: 1940 }; A.historyReducer_closure38.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_recurringInvoice, action.recurringInvoice.id, Date.now())); }, $signature: 1941 }; A.historyReducer_closure39.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_webhook, action.webhookId, Date.now())); }, $signature: 1942 }; A.historyReducer_closure40.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_webhook, action.webhook.id, Date.now())); }, $signature: 1943 }; A.historyReducer_closure41.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_token, action.tokenId, Date.now())); }, $signature: 1944 }; A.historyReducer_closure42.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_token, action.token.id, Date.now())); }, $signature: 1945 }; A.historyReducer_closure43.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_paymentTerm, action.paymentTermId, Date.now())); }, $signature: 1946 }; A.historyReducer_closure44.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_paymentTerm, action.paymentTerm.id, Date.now())); }, $signature: 1947 }; A.historyReducer_closure45.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_design, action.design.id, Date.now())); }, $signature: 1948 }; A.historyReducer_closure46.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_credit, action.creditId, Date.now())); }, $signature: 1949 }; A.historyReducer_closure47.prototype = { call$2(historyList, action) { return A._addToHistory(historyList, A._$HistoryRecord$_(B.EntityType_credit, action.credit.id, Date.now())); }, $signature: 1950 }; A.historyReducer_closure48.prototype = { call$2(historyList, action) { var t1, t2; if (action.clearSelection) return historyList; t1 = action.entity; t2 = t1.get$id(t1); return A._addToHistory(historyList, A._$HistoryRecord$_(t1.get$entityType(), t2, Date.now())); }, $signature: 1951 }; A._addToHistory_closure.prototype = { call$1(item) { var t1 = this.record; return t1.entityType == item.entityType && t1.id == item.id; }, $signature: 785 }; A._addToHistory_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A._addToHistory_closure1.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$_safeList(), this.old); !$.$get$isSoundMode() && !b.$ti._precomputed1._is(null); B.JSArray_methods.insert$2(b.get$_safeList(), 0, this.record); return b; }, $signature: 378 }; A._addToHistory_closure2.prototype = { call$1(b) { var t1; !$.$get$isSoundMode() && !b.$ti._precomputed1._is(null); B.JSArray_methods.insert$2(b.get$_safeList(), 0, this.record); t1 = Math.min(50, this.list._list.length + 1); b.__ListBuilder__list = J.sublist$2$ax(A._lateReadCheck(b.__ListBuilder__list, "_list"), 0, t1); b._listOwner = null; return b; }, $signature: 378 }; A.PrefState.prototype = { get$colorThemeModel() { var t1 = this.colorTheme; return $.$get$colorThemesMap().containsKey$1(0, t1) ? $.$get$colorThemesMap().$index(0, t1) : $.$get$colorThemesMap().$index(0, "light"); }, isEditorFullScreen$1(entityType) { var t1; if (this.appLayout !== B.AppLayout_desktop) return false; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_product, B.EntityType_payment, B.EntityType_project], type$.JSArray_legacy_EntityType), entityType)) return false; t1 = entityType.get$baseType(); t1 = this.useSidebarEditor._map$_map.$index(0, t1); return !(t1 == null ? false : t1); }, isViewerFullScreen$1(entityType) { var t1; if (this.appLayout !== B.AppLayout_desktop || entityType == null) return false; if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), entityType)) return false; t1 = entityType.get$baseType(); t1 = this.useSidebarViewer._map$_map.$index(0, t1); return !(t1 == null ? false : t1); }, get$showMenu() { return this.isMenuVisible && this.menuSidebarMode === B.AppSidebarMode_visible || this.menuSidebarMode === B.AppSidebarMode_collapse; } }; A.PrefStateSortField.prototype = {}; A.CompanyPrefState.prototype = {}; A.AppLayout.prototype = {}; A.ModuleLayout.prototype = {}; A.AppSidebar.prototype = {}; A.AppSidebarMode.prototype = {}; A.HistoryRecord.prototype = {}; A._$PrefStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["appLayout", serializers.serialize$2$specifiedType(object.appLayout, B.FullType_88H), "moduleLayout", serializers.serialize$2$specifiedType(object.moduleLayout, B.FullType_2No), "menuSidebarMode", serializers.serialize$2$specifiedType(object.menuSidebarMode, B.FullType_D72), "historySidebarMode", serializers.serialize$2$specifiedType(object.historySidebarMode, B.FullType_D72), "useSidebarEditor", serializers.serialize$2$specifiedType(object.useSidebarEditor, B.FullType_QqY), "useSidebarViewer", serializers.serialize$2$specifiedType(object.useSidebarViewer, B.FullType_QqY), "customColors", serializers.serialize$2$specifiedType(object.customColors, B.FullType_LNO), "isPreviewVisible", serializers.serialize$2$specifiedType(object.isPreviewVisible, B.FullType_MtR), "isMenuVisible", serializers.serialize$2$specifiedType(object.isMenuVisible, B.FullType_MtR), "showKanban", serializers.serialize$2$specifiedType(object.showKanban, B.FullType_MtR), "showPdfPreview", serializers.serialize$2$specifiedType(object.showPdfPreview, B.FullType_MtR), "enableTouchEvents", serializers.serialize$2$specifiedType(object.enableTouchEvents, B.FullType_MtR), "enableFlexibleSearch", serializers.serialize$2$specifiedType(object.enableFlexibleSearch, B.FullType_MtR), "isHistoryVisible", serializers.serialize$2$specifiedType(object.isHistoryVisible, B.FullType_MtR), "enableDarkMode", serializers.serialize$2$specifiedType(object.enableDarkMode, B.FullType_MtR), "isFilterVisible", serializers.serialize$2$specifiedType(object.isFilterVisible, B.FullType_MtR), "persistData", serializers.serialize$2$specifiedType(object.persistData, B.FullType_MtR), "persistUI", serializers.serialize$2$specifiedType(object.persistUI, B.FullType_MtR), "longPressSelectionIsDefault", serializers.serialize$2$specifiedType(object.longPressSelectionIsDefault, B.FullType_MtR), "requireAuthentication", serializers.serialize$2$specifiedType(object.requireAuthentication, B.FullType_MtR), "tapSelectedToEdit", serializers.serialize$2$specifiedType(object.tapSelectedToEdit, B.FullType_MtR), "enableJSPDF", serializers.serialize$2$specifiedType(object.enableJSPDF, B.FullType_MtR), "rowsPerPage", serializers.serialize$2$specifiedType(object.rowsPerPage, B.FullType_kjq), "enableTooltips", serializers.serialize$2$specifiedType(object.enableTooltips, B.FullType_MtR), "colorTheme", serializers.serialize$2$specifiedType(object.colorTheme, B.FullType_h8g), "hideDesktopWarning", serializers.serialize$2$specifiedType(object.hideDesktopWarning, B.FullType_MtR), "hideGatewayWarning", serializers.serialize$2$specifiedType(object.hideGatewayWarning, B.FullType_MtR), "hideReviewApp", serializers.serialize$2$specifiedType(object.hideReviewApp, B.FullType_MtR), "editAfterSaving", serializers.serialize$2$specifiedType(object.editAfterSaving, B.FullType_MtR), "textScaleFactor", serializers.serialize$2$specifiedType(object.textScaleFactor, B.FullType_MME), "sortFields", serializers.serialize$2$specifiedType(object.sortFields, B.FullType_fL6), "companyPrefs", serializers.serialize$2$specifiedType(object.companyPrefs, B.FullType_ym9)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, key, value, t8, t9, _null = null, result = new A.PrefStateBuilder(); A.PrefState__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyPrefState, t2 = type$.MapBuilder_of_legacy_EntityType_and_legacy_PrefStateSortField, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String, t4 = type$.MapBuilder_of_legacy_EntityType_and_legacy_bool, t5 = type$.legacy_AppSidebarMode, t6 = type$.legacy_ModuleLayout, t7 = type$.legacy_AppLayout; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "appLayout": t8 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_88H)); result.get$_pref_state$_$this()._appLayout = t8; break; case "moduleLayout": t8 = t6._as(serializers.deserialize$2$specifiedType(value, B.FullType_2No)); result.get$_pref_state$_$this()._moduleLayout = t8; break; case "menuSidebarMode": t8 = t5._as(serializers.deserialize$2$specifiedType(value, B.FullType_D72)); result.get$_pref_state$_$this()._menuSidebarMode = t8; break; case "historySidebarMode": t8 = t5._as(serializers.deserialize$2$specifiedType(value, B.FullType_D72)); result.get$_pref_state$_$this()._historySidebarMode = t8; break; case "useSidebarEditor": t8 = result.get$_pref_state$_$this(); t9 = t8._useSidebarEditor; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t4); t9.replace$1(0, B.Map_empty0); t8._useSidebarEditor = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_QqY)); break; case "useSidebarViewer": t8 = result.get$_pref_state$_$this(); t9 = t8._useSidebarViewer; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t4); t9.replace$1(0, B.Map_empty0); t8._useSidebarViewer = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_QqY)); break; case "customColors": t8 = result.get$_pref_state$_$this(); t9 = t8._customColors; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t3); t9.replace$1(0, B.Map_empty0); t8._customColors = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_LNO)); break; case "isPreviewVisible": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._isPreviewVisible = t8; break; case "isMenuVisible": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._isMenuVisible = t8; break; case "showKanban": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._showKanban = t8; break; case "showPdfPreview": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._showPdfPreview = t8; break; case "enableTouchEvents": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._enableTouchEvents = t8; break; case "enableFlexibleSearch": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._enableFlexibleSearch = t8; break; case "isHistoryVisible": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._isHistoryVisible = t8; break; case "enableDarkMode": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._enableDarkMode = t8; break; case "isFilterVisible": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._isFilterVisible = t8; break; case "persistData": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._persistData = t8; break; case "persistUI": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._persistUI = t8; break; case "longPressSelectionIsDefault": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._longPressSelectionIsDefault = t8; break; case "requireAuthentication": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._requireAuthentication = t8; break; case "tapSelectedToEdit": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._tapSelectedToEdit = t8; break; case "enableJSPDF": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._enableJSPDF = t8; break; case "rowsPerPage": t8 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_pref_state$_$this()._rowsPerPage = t8; break; case "enableTooltips": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._enableTooltips = t8; break; case "colorTheme": t8 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_pref_state$_$this()._colorTheme = t8; break; case "hideDesktopWarning": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._hideDesktopWarning = t8; break; case "hideGatewayWarning": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._hideGatewayWarning = t8; break; case "hideReviewApp": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._hideReviewApp = t8; break; case "editAfterSaving": t8 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_pref_state$_$this()._editAfterSaving = t8; break; case "textScaleFactor": t8 = A._asDoubleS(serializers.deserialize$2$specifiedType(value, B.FullType_MME)); result.get$_pref_state$_$this()._textScaleFactor = t8; break; case "sortFields": t8 = result.get$_pref_state$_$this(); t9 = t8._sortFields; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t2); t9.replace$1(0, B.Map_empty0); t8._sortFields = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_fL6)); break; case "companyPrefs": t8 = result.get$_pref_state$_$this(); t9 = t8._companyPrefs; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t1); t9.replace$1(0, B.Map_empty0); t8._companyPrefs = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_ym9)); break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ERv; }, get$wireName() { return "PrefState"; } }; A._$PrefStateSortFieldSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["field", serializers.serialize$2$specifiedType(object.field, B.FullType_h8g), "ascending", serializers.serialize$2$specifiedType(object.ascending, B.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.PrefStateSortFieldBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "field": t1 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); $$v = result._pref_state$_$v; if ($$v != null) { result._field = $$v.field; result._ascending = $$v.ascending; result._pref_state$_$v = null; } result._field = t1; break; case "ascending": t1 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); $$v = result._pref_state$_$v; if ($$v != null) { result._field = $$v.field; result._ascending = $$v.ascending; result._pref_state$_$v = null; } result._ascending = t1; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_JEy; }, get$wireName() { return "PrefStateSortField"; } }; A._$CompanyPrefStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["historyList", serializers.serialize$2$specifiedType(object.historyList, B.FullType_WXJ)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.CompanyPrefStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_HistoryRecord, t3 = type$.ListBuilder_legacy_HistoryRecord; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "historyList": $$v = result._pref_state$_$v; if ($$v != null) { t4 = $$v.historyList; t4.toString; t5 = t4.$ti; t6 = new A.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = A.List_List$from(t4, true, t5._precomputed1); result._historyList = t6; result._pref_state$_$v = null; } t4 = result._historyList; if (t4 == null) { t4 = new A.ListBuilder(t3); t4.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); result._historyList = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_WXJ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = A.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_cOY; }, get$wireName() { return "CompanyPrefState"; } }; A._$AppLayoutSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$valueOf1(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_AppLayout_co1; }, get$wireName() { return "AppLayout"; } }; A._$ModuleLayoutSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$moduleLayoutValueOf(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_ModuleLayout_0mz; }, get$wireName() { return "ModuleLayout"; } }; A._$AppSidebarModeSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return object.name; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { return A._$valueOfSidebarMode(A._asStringS(serialized)); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types() { return B.List_Type_AppSidebarMode_ZeT; }, get$wireName() { return "AppSidebarMode"; } }; A._$HistoryRecordSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["entityType", serializers.serialize$2$specifiedType(object.entityType, B.FullType_qBb), "timestamp", serializers.serialize$2$specifiedType(object.timestamp, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.id; if (value != null) { result.push("id"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, key, value, t2, _$result, t3, _s13_ = "HistoryRecord", result = new A.HistoryRecordBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t2 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_pref_state$_$this()._pref_state$_id = t2; break; case "entityType": t2 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_pref_state$_$this()._pref_state$_entityType = t2; break; case "timestamp": t2 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_pref_state$_$this()._timestamp = t2; break; } } _$result = result._pref_state$_$v; if (_$result == null) { t1 = result.get$_pref_state$_$this()._pref_state$_id; t2 = result.get$_pref_state$_$this()._pref_state$_entityType; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "entityType")); t3 = result.get$_pref_state$_$this()._timestamp; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "timestamp")); _$result = A._$HistoryRecord$_(t2, t1, t3); } A.ArgumentError_checkNotNull(_$result, "other"); return result._pref_state$_$v = _$result; }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_blc; }, get$wireName() { return "HistoryRecord"; } }; A._$PrefState.prototype = { rebuild$1(updates) { var t1 = new A.PrefStateBuilder(); A.PrefState__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._pref_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.PrefState && _this.appLayout === other.appLayout && _this.moduleLayout === other.moduleLayout && _this.menuSidebarMode === other.menuSidebarMode && _this.historySidebarMode === other.historySidebarMode && J.$eq$(_this.useSidebarEditor, other.useSidebarEditor) && J.$eq$(_this.useSidebarViewer, other.useSidebarViewer) && J.$eq$(_this.customColors, other.customColors) && _this.isPreviewVisible === other.isPreviewVisible && _this.isMenuVisible === other.isMenuVisible && _this.showKanban === other.showKanban && _this.showPdfPreview === other.showPdfPreview && _this.enableTouchEvents === other.enableTouchEvents && _this.enableFlexibleSearch === other.enableFlexibleSearch && _this.isHistoryVisible === other.isHistoryVisible && _this.enableDarkMode === other.enableDarkMode && _this.isFilterVisible === other.isFilterVisible && _this.persistData === other.persistData && _this.persistUI === other.persistUI && _this.longPressSelectionIsDefault === other.longPressSelectionIsDefault && _this.requireAuthentication === other.requireAuthentication && _this.tapSelectedToEdit === other.tapSelectedToEdit && _this.enableJSPDF === other.enableJSPDF && _this.rowsPerPage === other.rowsPerPage && _this.enableTooltips === other.enableTooltips && _this.colorTheme === other.colorTheme && _this.hideDesktopWarning === other.hideDesktopWarning && _this.hideGatewayWarning === other.hideGatewayWarning && _this.hideReviewApp === other.hideReviewApp && _this.editAfterSaving === other.editAfterSaving && _this.textScaleFactor === other.textScaleFactor && J.$eq$(_this.sortFields, other.sortFields) && J.$eq$(_this.companyPrefs, other.companyPrefs); }, get$hashCode(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, A.Primitives_objectHashCode(_this.appLayout)), A.Primitives_objectHashCode(_this.moduleLayout)), A.Primitives_objectHashCode(_this.menuSidebarMode)), A.Primitives_objectHashCode(_this.historySidebarMode)), J.get$hashCode$(_this.useSidebarEditor)), J.get$hashCode$(_this.useSidebarViewer)), J.get$hashCode$(_this.customColors)), B.JSBool_methods.get$hashCode(_this.isPreviewVisible)), B.JSBool_methods.get$hashCode(_this.isMenuVisible)), B.JSBool_methods.get$hashCode(_this.showKanban)), B.JSBool_methods.get$hashCode(_this.showPdfPreview)), B.JSBool_methods.get$hashCode(_this.enableTouchEvents)), B.JSBool_methods.get$hashCode(_this.enableFlexibleSearch)), B.JSBool_methods.get$hashCode(_this.isHistoryVisible)), B.JSBool_methods.get$hashCode(_this.enableDarkMode)), B.JSBool_methods.get$hashCode(_this.isFilterVisible)), B.JSBool_methods.get$hashCode(_this.persistData)), B.JSBool_methods.get$hashCode(_this.persistUI)), B.JSBool_methods.get$hashCode(_this.longPressSelectionIsDefault)), B.JSBool_methods.get$hashCode(_this.requireAuthentication)), B.JSBool_methods.get$hashCode(_this.tapSelectedToEdit)), B.JSBool_methods.get$hashCode(_this.enableJSPDF)), B.JSInt_methods.get$hashCode(_this.rowsPerPage)), B.JSBool_methods.get$hashCode(_this.enableTooltips)), B.JSString_methods.get$hashCode(_this.colorTheme)), B.JSBool_methods.get$hashCode(_this.hideDesktopWarning)), B.JSBool_methods.get$hashCode(_this.hideGatewayWarning)), B.JSBool_methods.get$hashCode(_this.hideReviewApp)), B.JSBool_methods.get$hashCode(_this.editAfterSaving)), B.JSNumber_methods.get$hashCode(_this.textScaleFactor)), J.get$hashCode$(_this.sortFields)), J.get$hashCode$(_this.companyPrefs))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PrefState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "appLayout", _this.appLayout); t2.add$2(t1, "moduleLayout", _this.moduleLayout); t2.add$2(t1, "menuSidebarMode", _this.menuSidebarMode); t2.add$2(t1, "historySidebarMode", _this.historySidebarMode); t2.add$2(t1, "useSidebarEditor", _this.useSidebarEditor); t2.add$2(t1, "useSidebarViewer", _this.useSidebarViewer); t2.add$2(t1, "customColors", _this.customColors); t2.add$2(t1, "isPreviewVisible", _this.isPreviewVisible); t2.add$2(t1, "isMenuVisible", _this.isMenuVisible); t2.add$2(t1, "showKanban", _this.showKanban); t2.add$2(t1, "showPdfPreview", _this.showPdfPreview); t2.add$2(t1, "enableTouchEvents", _this.enableTouchEvents); t2.add$2(t1, "enableFlexibleSearch", _this.enableFlexibleSearch); t2.add$2(t1, "isHistoryVisible", _this.isHistoryVisible); t2.add$2(t1, "enableDarkMode", _this.enableDarkMode); t2.add$2(t1, "isFilterVisible", _this.isFilterVisible); t2.add$2(t1, "persistData", _this.persistData); t2.add$2(t1, "persistUI", _this.persistUI); t2.add$2(t1, "longPressSelectionIsDefault", _this.longPressSelectionIsDefault); t2.add$2(t1, "requireAuthentication", _this.requireAuthentication); t2.add$2(t1, "tapSelectedToEdit", _this.tapSelectedToEdit); t2.add$2(t1, "enableJSPDF", _this.enableJSPDF); t2.add$2(t1, "rowsPerPage", _this.rowsPerPage); t2.add$2(t1, "enableTooltips", _this.enableTooltips); t2.add$2(t1, "colorTheme", _this.colorTheme); t2.add$2(t1, "hideDesktopWarning", _this.hideDesktopWarning); t2.add$2(t1, "hideGatewayWarning", _this.hideGatewayWarning); t2.add$2(t1, "hideReviewApp", _this.hideReviewApp); t2.add$2(t1, "editAfterSaving", _this.editAfterSaving); t2.add$2(t1, "textScaleFactor", _this.textScaleFactor); t2.add$2(t1, "sortFields", _this.sortFields); t2.add$2(t1, "companyPrefs", _this.companyPrefs); return t2.toString$0(t1); } }; A.PrefStateBuilder.prototype = { get$useSidebarEditor() { var t1 = this.get$_pref_state$_$this(), t2 = t1._useSidebarEditor; return t2 == null ? t1._useSidebarEditor = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool) : t2; }, get$useSidebarViewer() { var t1 = this.get$_pref_state$_$this(), t2 = t1._useSidebarViewer; return t2 == null ? t1._useSidebarViewer = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool) : t2; }, get$customColors() { var t1 = this.get$_pref_state$_$this(), t2 = t1._customColors; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._customColors = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$sortFields() { var t1 = this.get$_pref_state$_$this(), t2 = t1._sortFields; return t2 == null ? t1._sortFields = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_PrefStateSortField) : t2; }, get$companyPrefs() { var t1 = this.get$_pref_state$_$this(), t2 = t1._companyPrefs; return t2 == null ? t1._companyPrefs = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyPrefState) : t2; }, get$_pref_state$_$this() { var t1, t2, _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._appLayout = $$v.appLayout; _this._moduleLayout = $$v.moduleLayout; _this._menuSidebarMode = $$v.menuSidebarMode; _this._historySidebarMode = $$v.historySidebarMode; t1 = $$v.useSidebarEditor; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._useSidebarEditor = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.useSidebarViewer; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._useSidebarViewer = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.customColors; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._customColors = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._isPreviewVisible = $$v.isPreviewVisible; _this._isMenuVisible = $$v.isMenuVisible; _this._showKanban = $$v.showKanban; _this._showPdfPreview = $$v.showPdfPreview; _this._enableTouchEvents = $$v.enableTouchEvents; _this._enableFlexibleSearch = $$v.enableFlexibleSearch; _this._isHistoryVisible = $$v.isHistoryVisible; _this._enableDarkMode = $$v.enableDarkMode; _this._isFilterVisible = $$v.isFilterVisible; _this._persistData = $$v.persistData; _this._persistUI = $$v.persistUI; _this._longPressSelectionIsDefault = $$v.longPressSelectionIsDefault; _this._requireAuthentication = $$v.requireAuthentication; _this._tapSelectedToEdit = $$v.tapSelectedToEdit; _this._enableJSPDF = $$v.enableJSPDF; _this._rowsPerPage = $$v.rowsPerPage; _this._enableTooltips = $$v.enableTooltips; _this._colorTheme = $$v.colorTheme; _this._hideDesktopWarning = $$v.hideDesktopWarning; _this._hideGatewayWarning = $$v.hideGatewayWarning; _this._hideReviewApp = $$v.hideReviewApp; _this._editAfterSaving = $$v.editAfterSaving; _this._textScaleFactor = $$v.textScaleFactor; t2 = $$v.sortFields; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._sortFields = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.companyPrefs; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._companyPrefs = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._pref_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, exception, _this = this, _s9_ = "PrefState", _$result = null; try { _$result0 = _this._pref_state$_$v; if (_$result0 == null) { t1 = _this.get$_pref_state$_$this()._appLayout; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "appLayout")); t2 = _this.get$_pref_state$_$this()._moduleLayout; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "moduleLayout")); t3 = _this.get$_pref_state$_$this()._menuSidebarMode; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "menuSidebarMode")); t4 = _this.get$_pref_state$_$this()._historySidebarMode; if (t4 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "historySidebarMode")); t5 = _this.get$useSidebarEditor().build$0(0); t6 = _this.get$useSidebarViewer().build$0(0); t7 = _this.get$customColors().build$0(0); t8 = _this.get$_pref_state$_$this()._isPreviewVisible; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isPreviewVisible")); t9 = _this.get$_pref_state$_$this()._isMenuVisible; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isMenuVisible")); t10 = _this.get$_pref_state$_$this()._showKanban; if (t10 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "showKanban")); t11 = _this.get$_pref_state$_$this()._showPdfPreview; if (t11 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "showPdfPreview")); t12 = _this.get$_pref_state$_$this()._enableTouchEvents; if (t12 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "enableTouchEvents")); t13 = _this.get$_pref_state$_$this()._enableFlexibleSearch; if (t13 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "enableFlexibleSearch")); t14 = _this.get$_pref_state$_$this()._isHistoryVisible; if (t14 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isHistoryVisible")); t15 = _this.get$_pref_state$_$this()._enableDarkMode; if (t15 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "enableDarkMode")); t16 = _this.get$_pref_state$_$this()._isFilterVisible; if (t16 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "isFilterVisible")); t17 = _this.get$_pref_state$_$this()._persistData; if (t17 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "persistData")); t18 = _this.get$_pref_state$_$this()._persistUI; if (t18 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "persistUI")); t19 = _this.get$_pref_state$_$this()._longPressSelectionIsDefault; if (t19 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "longPressSelectionIsDefault")); t20 = _this.get$_pref_state$_$this()._requireAuthentication; if (t20 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "requireAuthentication")); t21 = _this.get$_pref_state$_$this()._tapSelectedToEdit; if (t21 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "tapSelectedToEdit")); t22 = _this.get$_pref_state$_$this()._enableJSPDF; if (t22 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "enableJSPDF")); t23 = _this.get$_pref_state$_$this()._rowsPerPage; if (t23 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "rowsPerPage")); t24 = _this.get$_pref_state$_$this()._enableTooltips; if (t24 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "enableTooltips")); t25 = _this.get$_pref_state$_$this()._colorTheme; if (t25 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "colorTheme")); t26 = _this.get$_pref_state$_$this()._hideDesktopWarning; if (t26 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "hideDesktopWarning")); t27 = _this.get$_pref_state$_$this()._hideGatewayWarning; if (t27 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "hideGatewayWarning")); t28 = _this.get$_pref_state$_$this()._hideReviewApp; if (t28 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "hideReviewApp")); t29 = _this.get$_pref_state$_$this()._editAfterSaving; if (t29 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "editAfterSaving")); t30 = _this.get$_pref_state$_$this()._textScaleFactor; if (t30 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s9_, "textScaleFactor")); t31 = _this.get$sortFields().build$0(0); _$result0 = A._$PrefState$_(t1, t25, _this.get$companyPrefs().build$0(0), t7, t29, t15, t13, t22, t24, t12, t26, t27, t28, t4, t16, t14, t9, t8, t19, t3, t2, t17, t18, t20, t23, t10, t11, t31, t21, t30, t5, t6); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "useSidebarEditor"; _this.get$useSidebarEditor().build$0(0); _$failedField = "useSidebarViewer"; _this.get$useSidebarViewer().build$0(0); _$failedField = "customColors"; _this.get$customColors().build$0(0); _$failedField = "sortFields"; _this.get$sortFields().build$0(0); _$failedField = "companyPrefs"; _this.get$companyPrefs().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s9_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._pref_state$_$v = t1; return _$result; } }; A._$PrefStateSortField.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.PrefStateSortField && this.field == other.field && this.ascending === other.ascending; }, get$hashCode(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.field)), B.JSBool_methods.get$hashCode(_this.ascending))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PrefStateSortField"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "field", this.field); t2.add$2(t1, "ascending", this.ascending); return t2.toString$0(t1); } }; A.PrefStateSortFieldBuilder.prototype = { get$_pref_state$_$this() { var _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._field = $$v.field; _this._ascending = $$v.ascending; _this._pref_state$_$v = null; } return _this; }, build$0(_) { var t1, t2, _this = this, _s18_ = "PrefStateSortField", _$result = _this._pref_state$_$v; if (_$result == null) { t1 = _this.get$_pref_state$_$this()._field; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "field")); t2 = _this.get$_pref_state$_$this()._ascending; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s18_, "ascending")); _$result = A._$PrefStateSortField$_(t2, t1); } A.ArgumentError_checkNotNull(_$result, "other"); return _this._pref_state$_$v = _$result; } }; A._$CompanyPrefState.prototype = { $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyPrefState && J.$eq$(this.historyList, other.historyList); }, get$hashCode(_) { var t1 = this.__hashCode; return t1 == null ? this.__hashCode = A.$jf(A.$jc(0, J.get$hashCode$(this.historyList))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyPrefState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "historyList", this.historyList); return t2.toString$0(t1); } }; A.CompanyPrefStateBuilder.prototype = { get$historyList() { var t1, _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { t1 = $$v.historyList; t1.toString; _this._historyList = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._pref_state$_$v = null; } t1 = _this._historyList; return t1 == null ? _this._historyList = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_HistoryRecord) : t1; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "CompanyPrefState", _$result = null; try { _$result0 = _this._pref_state$_$v; if (_$result0 == null) { t1 = _this.get$historyList().build$0(0); _$result0 = new A._$CompanyPrefState(t1); if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s16_, "historyList")); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "historyList"; _this.get$historyList().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._pref_state$_$v = t1; return _$result; } }; A._$HistoryRecord.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.HistoryRecord && _this.id == other.id && _this.entityType == other.entityType && _this.timestamp === other.timestamp; }, get$hashCode(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.id)), J.get$hashCode$(_this.entityType)), B.JSInt_methods.get$hashCode(_this.timestamp))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("HistoryRecord"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "entityType", this.entityType); t2.add$2(t1, "timestamp", this.timestamp); return t2.toString$0(t1); }, get$id(receiver) { return this.id; } }; A.HistoryRecordBuilder.prototype = { get$id(_) { return this.get$_pref_state$_$this()._pref_state$_id; }, get$_pref_state$_$this() { var _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._pref_state$_id = $$v.id; _this._pref_state$_entityType = $$v.entityType; _this._timestamp = $$v.timestamp; _this._pref_state$_$v = null; } return _this; } }; A.UpdateCurrentRoute.prototype = {}; A.uiReducer_closure.prototype = { call$1(b) { var t4, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$filterReducer().call$2(t1.filter, t2); b.get$_ui_state$_$this()._filter = t3; t3 = $.$get$filterClearedAtReducer().call$2(t1.filterClearedAt, t2); b.get$_ui_state$_$this()._filterClearedAt = t3; t3 = $.$get$lastActivityReducer().call$2(t1.lastActivityAt, t2); b.get$_ui_state$_$this()._lastActivityAt = t3; t3 = $.$get$selectedCompanyIndexReducer().call$2(t1.selectedCompanyIndex, t2); b.get$_ui_state$_$this()._selectedCompanyIndex = t3; t3 = t1.currentRoute; t4 = this.currentRoute; if (t3 === t4) t3 = t1.previousRoute; else if (B.JSString_methods.endsWith$1(t3, "edit")) t3 = t1.previousRoute; b.get$_ui_state$_$this()._previousRoute = t3; t3 = $.$get$loadingEntityTypeReducer().call$2(t1.loadingEntityType, t2); b.get$_ui_state$_$this()._loadingEntityType = t3; b.get$_ui_state$_$this()._currentRoute = t4; b.get$previewStack().replace$1(0, $.$get$previewStackReducer().call$2(t1.previewStack, t2)); b.get$filterStack().replace$1(0, $.$get$filterStackReducer().call$2(t1.filterStack, t2)); t4 = b.get$productUIState(); t3 = A.productUIReducer(t1.productUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._product_state$_$v = t3; t3 = b.get$clientUIState(); t4 = A.clientUIReducer(t1.clientUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._client_state$_$v = t4; t4 = b.get$invoiceUIState(); t3 = A.invoiceUIReducer(t1.invoiceUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._invoice_state$_$v = t3; t3 = b.get$dashboardUIState(); t4 = A.dashboardUIReducer(t1.dashboardUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._dashboard_state$_$v = t4; t4 = b.get$reportsUIState(); t3 = A.reportsUIReducer(t1.reportsUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._reports_state$_$v = t3; t3 = b.get$purchaseOrderUIState(); t4 = A.purchaseOrderUIReducer(t1.purchaseOrderUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._purchase_order_state$_$v = t4; t4 = b.get$recurringExpenseUIState(); t3 = A.recurringExpenseUIReducer(t1.recurringExpenseUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._recurring_expense_state$_$v = t3; t3 = b.get$subscriptionUIState(); t4 = A.subscriptionUIReducer(t1.subscriptionUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._subscription_state$_$v = t4; t4 = b.get$taskStatusUIState(); t3 = A.taskStatusUIReducer(t1.taskStatusUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._task_status_state$_$v = t3; t3 = b.get$expenseCategoryUIState(); t4 = A.expenseCategoryUIReducer(t1.expenseCategoryUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._expense_category_state$_$v = t4; t4 = b.get$recurringInvoiceUIState(); t3 = A.recurringInvoiceUIReducer(t1.recurringInvoiceUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._recurring_invoice_state$_$v = t3; t3 = b.get$webhookUIState(); t4 = A.webhookUIReducer(t1.webhookUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._webhook_state$_$v = t4; t4 = b.get$tokenUIState(); t3 = A.tokenUIReducer(t1.tokenUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._token_state$_$v = t3; t3 = b.get$paymentTermUIState(); t4 = A.paymentTermUIReducer(t1.paymentTermUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._payment_term_state$_$v = t4; t4 = b.get$designUIState(); t3 = A.designUIReducer(t1.designUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._design_state$_$v = t3; t3 = b.get$creditUIState(); t4 = A.creditUIReducer(t1.creditUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._credit_state$_$v = t4; t4 = b.get$userUIState(); t3 = A.userUIReducer(t1.userUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._user_state$_$v = t3; t3 = b.get$taxRateUIState(); t4 = A.taxRateUIReducer(t1.taxRateUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._tax_rate_state$_$v = t4; t4 = b.get$companyGatewayUIState(); t3 = A.companyGatewayUIReducer(t1.companyGatewayUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._company_gateway_state$_$v = t3; t3 = b.get$groupUIState(); t4 = A.groupUIReducer(t1.groupUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._group_state$_$v = t4; t4 = b.get$documentUIState(); t3 = A.documentUIReducer(t1.documentUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._document_state$_$v = t3; t3 = b.get$expenseUIState(); t4 = A.expenseUIReducer(t1.expenseUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._expense_state$_$v = t4; t4 = b.get$vendorUIState(); t3 = A.vendorUIReducer(t1.vendorUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._vendor_state$_$v = t3; t3 = b.get$taskUIState(); t4 = A.taskUIReducer(t1.taskUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._task_state$_$v = t4; t4 = b.get$projectUIState(); t3 = A.projectUIReducer(t1.projectUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._project_state$_$v = t3; t3 = b.get$paymentUIState(); t4 = A.paymentUIReducer(t1.paymentUIState, t2); A.ArgumentError_checkNotNull(t4, _s5_); t3._payment_state$_$v = t4; t4 = b.get$quoteUIState(); t3 = A.quoteUIReducer(t1.quoteUIState, t2); A.ArgumentError_checkNotNull(t3, _s5_); t4._quote_state$_$v = t3; t3 = b.get$settingsUIState(); t2 = $.$get$settingsUIReducer().call$2(t1.settingsUIState, t2); A.ArgumentError_checkNotNull(t2, _s5_); t3._company_state$_$v = t2; return b; }, $signature: 793 }; A.lastActivityReducer_closure.prototype = { call$2(state, action) { return Date.now(); }, $signature: 1952 }; A.filterReducer_closure.prototype = { call$2(filter, action) { return action.filter; }, $signature: 1953 }; A.filterReducer_closure0.prototype = { call$2(state, action) { return action.filter; }, $signature: 1954 }; A.loadingEntityTypeReducer_closure.prototype = { call$2(state, action) { return null; }, $signature: 1955 }; A.loadingEntityTypeReducer_closure0.prototype = { call$2(state, action) { return B.EntityType_client; }, $signature: 1956 }; A.loadingEntityTypeReducer_closure1.prototype = { call$2(state, action) { return B.EntityType_product; }, $signature: 1957 }; A.loadingEntityTypeReducer_closure2.prototype = { call$2(state, action) { return B.EntityType_invoice; }, $signature: 1958 }; A.loadingEntityTypeReducer_closure3.prototype = { call$2(state, action) { return B.EntityType_recurringInvoice; }, $signature: 1959 }; A.loadingEntityTypeReducer_closure4.prototype = { call$2(state, action) { return B.EntityType_payment; }, $signature: 1960 }; A.loadingEntityTypeReducer_closure5.prototype = { call$2(state, action) { return B.EntityType_quote; }, $signature: 1961 }; A.loadingEntityTypeReducer_closure6.prototype = { call$2(state, action) { return B.EntityType_credit; }, $signature: 1962 }; A.loadingEntityTypeReducer_closure7.prototype = { call$2(state, action) { return B.EntityType_project; }, $signature: 1963 }; A.loadingEntityTypeReducer_closure8.prototype = { call$2(state, action) { return B.EntityType_task; }, $signature: 1964 }; A.loadingEntityTypeReducer_closure9.prototype = { call$2(state, action) { return B.EntityType_vendor; }, $signature: 1965 }; A.loadingEntityTypeReducer_closure10.prototype = { call$2(state, action) { return B.EntityType_purchaseOrder; }, $signature: 1966 }; A.loadingEntityTypeReducer_closure11.prototype = { call$2(state, action) { return B.EntityType_expense; }, $signature: 1967 }; A.loadingEntityTypeReducer_closure12.prototype = { call$2(state, action) { return B.EntityType_recurringExpense; }, $signature: 1968 }; A.filterClearedAtReducer_closure.prototype = { call$2(filterClearedAt, action) { return action.filter == null ? Date.now() : filterClearedAt; }, $signature: 1969 }; A.filterClearedAtReducer_closure0.prototype = { call$2(state, action) { return Date.now(); }, $signature: 1970 }; A.currentRouteReducer_closure.prototype = { call$2(currentRoute, action) { return action.route; }, $signature: 1971 }; A.selectedCompanyIndexReducer_closure.prototype = { call$2(selectedCompanyIndex, action) { return action.companyIndex; }, $signature: 1972 }; A.previewStackReducer_closure.prototype = { call$2(previewStack, action) { var t2, t3, t1 = action.entityType; if (t1 == null) return previewStack; t2 = previewStack._list; if (t2.length !== 0 && J.$eq$(B.JSArray_methods.get$last(t2), t1)) return A.BuiltList_BuiltList$from(A._setArrayType([], type$.JSArray_legacy_EntityType), type$.legacy_EntityType); t3 = type$.legacy_EntityType; t2 = A.List_List$of(new A.WhereIterable(t2, new A.previewStackReducer__closure(action), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>")), true, t3); t2.push(t1); return A.BuiltList_BuiltList$from(t2, t3); }, $signature: 1973 }; A.previewStackReducer__closure.prototype = { call$1(entityType) { return entityType != this.action.entityType; }, $signature: 273 }; A.previewStackReducer_closure0.prototype = { call$2(previewStack, action) { return A.BuiltList_BuiltList$from(A._setArrayType([], type$.JSArray_legacy_EntityType), type$.legacy_EntityType); }, $signature: 1974 }; A.previewStackReducer_closure1.prototype = { call$2(previewStack, action) { var t1 = previewStack._list, t2 = type$.legacy_EntityType; return A.BuiltList_BuiltList$from(A.List_List$of(new A._BuiltList(B.JSArray_methods.sublist$2(t1, 0, t1.length - 1), A._instanceType(previewStack)._eval$1("_BuiltList<1>")), true, t2), t2); }, $signature: 1975 }; A.filterStackReducer_closure.prototype = { call$2(filterStack, action) { return A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_BaseEntity); }, $signature: 1976 }; A.filterStackReducer_closure0.prototype = { call$2(filterStack, action) { var t2, t1 = filterStack._list; if (t1.length !== 0) { t2 = action.entity; if (t2.get$id(t2) === J.get$id$x(B.JSArray_methods.get$last(t1)) && t2.get$entityType() == B.JSArray_methods.get$last(t1).get$entityType()) return A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_BaseEntity); } t2 = type$.legacy_BaseEntity; t1 = A.List_List$of(new A.WhereIterable(t1, new A.filterStackReducer__closure(action), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")), true, t2); t1.push(action.entity); return A.BuiltList_BuiltList$from(t1, t2); }, $signature: 1977 }; A.filterStackReducer__closure.prototype = { call$1(entity) { return entity.get$entityType() != this.action.entity.get$entityType(); }, $signature: 171 }; A.filterStackReducer_closure1.prototype = { call$2(filterStack, action) { var t1 = filterStack._list, t2 = type$.legacy_BaseEntity; return A.BuiltList_BuiltList$from(A.List_List$of(new A._BuiltList(B.JSArray_methods.sublist$2(t1, 0, t1.length - 1), A._instanceType(filterStack)._eval$1("_BuiltList<1>")), true, t2), t2); }, $signature: 1978 }; A.UIState.prototype = { containsRoute$1(route) { if (route.length === 0) return false; return B.JSString_methods.contains$1(this.currentRoute, route); }, get$entityTypeRoute() { return A._$typeValueOf(A.toCamelCase(J.replaceFirst$2$s(this.get$mainRoute(), "/", ""))); }, get$mainRoute() { var t1 = type$.WhereIterable_String, parts = A.List_List$of(new A.WhereIterable(A._setArrayType(this.currentRoute.split("/"), type$.JSArray_String), new A.UIState_mainRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length !== 0 ? parts[0] : ""; }, get$subRoute() { var t1 = type$.WhereIterable_String, parts = A.List_List$of(new A.WhereIterable(A._setArrayType(this.currentRoute.split("/"), type$.JSArray_String), new A.UIState_subRoute_closure(), t1), true, t1._eval$1("Iterable.E")); t1 = parts.length; if (t1 === 3) return A.S(parts[1]) + "/" + A.S(parts[2]); else return t1 > 1 ? parts[1] : ""; }, get$baseSubRoute() { var route = this.get$subRoute(); route.toString; route = A.stringReplaceAllUnchecked(route, "/edit", ""); route = A.stringReplaceAllUnchecked(route, "/view", ""); route = A.stringReplaceAllUnchecked(route, "/pdf", ""); return A.stringReplaceAllUnchecked(route, "/email", ""); }, get$previousMainRoute() { var t1 = type$.WhereIterable_String, parts = A.List_List$of(new A.WhereIterable(A._setArrayType(this.previousRoute.split("/"), type$.JSArray_String), new A.UIState_previousMainRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length !== 0 ? parts[0] : ""; }, get$previousSubRoute() { var t1 = type$.WhereIterable_String, parts = A.List_List$of(new A.WhereIterable(A._setArrayType(this.previousRoute.split("/"), type$.JSArray_String), new A.UIState_previousSubRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length > 1 ? parts[1] : ""; }, get$isEditing() { var t1 = this.currentRoute; return B.JSString_methods.endsWith$1(t1, "/edit") || B.JSString_methods.endsWith$1(t1, "refund"); }, get$hasRecentActivity() { var t1 = this.lastActivityAt; if (t1 === 0) return false; return Date.now() - t1 < 86400000; } }; A.UIState_mainRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A.UIState_subRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A.UIState_previousMainRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A.UIState_previousSubRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A._$UIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["selectedCompanyIndex", serializers.serialize$2$specifiedType(object.selectedCompanyIndex, B.FullType_kjq), "currentRoute", serializers.serialize$2$specifiedType(object.currentRoute, B.FullType_h8g), "previousRoute", serializers.serialize$2$specifiedType(object.previousRoute, B.FullType_h8g), "previewStack", serializers.serialize$2$specifiedType(object.previewStack, B.FullType_kSI), "filterStack", serializers.serialize$2$specifiedType(object.filterStack, B.FullType_bQV), "filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, B.FullType_kjq), "lastActivityAt", serializers.serialize$2$specifiedType(object.lastActivityAt, B.FullType_kjq), "dashboardUIState", serializers.serialize$2$specifiedType(object.dashboardUIState, B.FullType_wEo), "productUIState", serializers.serialize$2$specifiedType(object.productUIState, B.FullType_DDR), "clientUIState", serializers.serialize$2$specifiedType(object.clientUIState, B.FullType_cys), "invoiceUIState", serializers.serialize$2$specifiedType(object.invoiceUIState, B.FullType_4QF), "purchaseOrderUIState", serializers.serialize$2$specifiedType(object.purchaseOrderUIState, B.FullType_a5W), "recurringExpenseUIState", serializers.serialize$2$specifiedType(object.recurringExpenseUIState, B.FullType_fs3), "subscriptionUIState", serializers.serialize$2$specifiedType(object.subscriptionUIState, B.FullType_NT2), "taskStatusUIState", serializers.serialize$2$specifiedType(object.taskStatusUIState, B.FullType_Ufa), "expenseCategoryUIState", serializers.serialize$2$specifiedType(object.expenseCategoryUIState, B.FullType_Xjb), "recurringInvoiceUIState", serializers.serialize$2$specifiedType(object.recurringInvoiceUIState, B.FullType_gA4), "webhookUIState", serializers.serialize$2$specifiedType(object.webhookUIState, B.FullType_AUo), "tokenUIState", serializers.serialize$2$specifiedType(object.tokenUIState, B.FullType_oeJ), "paymentTermUIState", serializers.serialize$2$specifiedType(object.paymentTermUIState, B.FullType_cg9), "designUIState", serializers.serialize$2$specifiedType(object.designUIState, B.FullType_cE9), "creditUIState", serializers.serialize$2$specifiedType(object.creditUIState, B.FullType_kiO), "userUIState", serializers.serialize$2$specifiedType(object.userUIState, B.FullType_A8J0), "taxRateUIState", serializers.serialize$2$specifiedType(object.taxRateUIState, B.FullType_MIo0), "companyGatewayUIState", serializers.serialize$2$specifiedType(object.companyGatewayUIState, B.FullType_2Px), "groupUIState", serializers.serialize$2$specifiedType(object.groupUIState, B.FullType_2bx), "documentUIState", serializers.serialize$2$specifiedType(object.documentUIState, B.FullType_wwi), "expenseUIState", serializers.serialize$2$specifiedType(object.expenseUIState, B.FullType_ivT), "vendorUIState", serializers.serialize$2$specifiedType(object.vendorUIState, B.FullType_2be), "taskUIState", serializers.serialize$2$specifiedType(object.taskUIState, B.FullType_5xM), "projectUIState", serializers.serialize$2$specifiedType(object.projectUIState, B.FullType_EOF), "paymentUIState", serializers.serialize$2$specifiedType(object.paymentUIState, B.FullType_1cc), "quoteUIState", serializers.serialize$2$specifiedType(object.quoteUIState, B.FullType_0eC), "settingsUIState", serializers.serialize$2$specifiedType(object.settingsUIState, B.FullType_eFJ), "reportsUIState", serializers.serialize$2$specifiedType(object.reportsUIState, B.FullType_NPy)], type$.JSArray_legacy_Object), value = object.loadingEntityType; if (value != null) { result.push("loadingEntityType"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_qBb)); } value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, key, value, t34, t35, t36, _s5_ = "other", result = new A.UIStateBuilder(); A.UIState__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ReportsUIState, t2 = type$.legacy_SettingsUIState, t3 = type$.legacy_QuoteUIState, t4 = type$.legacy_PaymentUIState, t5 = type$.legacy_ProjectUIState, t6 = type$.legacy_TaskUIState, t7 = type$.legacy_VendorUIState, t8 = type$.legacy_ExpenseUIState, t9 = type$.legacy_DocumentUIState, t10 = type$.legacy_GroupUIState, t11 = type$.legacy_CompanyGatewayUIState, t12 = type$.legacy_TaxRateUIState, t13 = type$.legacy_UserUIState, t14 = type$.legacy_CreditUIState, t15 = type$.legacy_DesignUIState, t16 = type$.legacy_PaymentTermUIState, t17 = type$.legacy_TokenUIState, t18 = type$.legacy_WebhookUIState, t19 = type$.legacy_RecurringInvoiceUIState, t20 = type$.legacy_ExpenseCategoryUIState, t21 = type$.legacy_TaskStatusUIState, t22 = type$.legacy_SubscriptionUIState, t23 = type$.legacy_RecurringExpenseUIState, t24 = type$.legacy_PurchaseOrderUIState, t25 = type$.legacy_InvoiceUIState, t26 = type$.legacy_ClientUIState, t27 = type$.legacy_ProductUIState, t28 = type$.legacy_DashboardUIState, t29 = type$.legacy_BuiltList_legacy_Object, t30 = type$.legacy_BaseEntity, t31 = type$.ListBuilder_legacy_BaseEntity, t32 = type$.legacy_EntityType, t33 = type$.ListBuilder_legacy_EntityType; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "selectedCompanyIndex": t34 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_ui_state$_$this()._selectedCompanyIndex = t34; break; case "currentRoute": t34 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_ui_state$_$this()._currentRoute = t34; break; case "previousRoute": t34 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_ui_state$_$this()._previousRoute = t34; break; case "loadingEntityType": t34 = t32._as(serializers.deserialize$2$specifiedType(value, B.FullType_qBb)); result.get$_ui_state$_$this()._loadingEntityType = t34; break; case "previewStack": t34 = result.get$_ui_state$_$this(); t35 = t34._previewStack; if (t35 == null) { t35 = new A.ListBuilder(t33); t35.__ListBuilder__list = A.List_List$from(B.List_empty, true, t32); t34._previewStack = t35; t34 = t35; } else t34 = t35; t35 = t29._as(serializers.deserialize$2$specifiedType(value, B.FullType_kSI)); t36 = t34.$ti; if (t36._eval$1("_BuiltList<1>")._is(t35)) { t34.__ListBuilder__list = t35._list; t34._listOwner = t35; } else { t34.__ListBuilder__list = A.List_List$from(t35, true, t36._precomputed1); t34._listOwner = null; } break; case "filterStack": t34 = result.get$_ui_state$_$this(); t35 = t34._filterStack; if (t35 == null) { t35 = new A.ListBuilder(t31); t35.__ListBuilder__list = A.List_List$from(B.List_empty, true, t30); t34._filterStack = t35; t34 = t35; } else t34 = t35; t35 = t29._as(serializers.deserialize$2$specifiedType(value, B.FullType_bQV)); t36 = t34.$ti; if (t36._eval$1("_BuiltList<1>")._is(t35)) { t34.__ListBuilder__list = t35._list; t34._listOwner = t35; } else { t34.__ListBuilder__list = A.List_List$from(t35, true, t36._precomputed1); t34._listOwner = null; } break; case "filter": t34 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_ui_state$_$this()._filter = t34; break; case "filterClearedAt": t34 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_ui_state$_$this()._filterClearedAt = t34; break; case "lastActivityAt": t34 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_ui_state$_$this()._lastActivityAt = t34; break; case "dashboardUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._dashboardUIState; t34 = t35 == null ? t34._dashboardUIState = new A.DashboardUIStateBuilder() : t35; t35 = t28._as(serializers.deserialize$2$specifiedType(value, B.FullType_wEo)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._dashboard_state$_$v = t35; break; case "productUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._productUIState; t34 = t35 == null ? t34._productUIState = new A.ProductUIStateBuilder() : t35; t35 = t27._as(serializers.deserialize$2$specifiedType(value, B.FullType_DDR)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._product_state$_$v = t35; break; case "clientUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._clientUIState; t34 = t35 == null ? t34._clientUIState = new A.ClientUIStateBuilder() : t35; t35 = t26._as(serializers.deserialize$2$specifiedType(value, B.FullType_cys)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._client_state$_$v = t35; break; case "invoiceUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._invoiceUIState; t34 = t35 == null ? t34._invoiceUIState = new A.InvoiceUIStateBuilder() : t35; t35 = t25._as(serializers.deserialize$2$specifiedType(value, B.FullType_4QF)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._invoice_state$_$v = t35; break; case "purchaseOrderUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._purchaseOrderUIState; t34 = t35 == null ? t34._purchaseOrderUIState = new A.PurchaseOrderUIStateBuilder() : t35; t35 = t24._as(serializers.deserialize$2$specifiedType(value, B.FullType_a5W)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._purchase_order_state$_$v = t35; break; case "recurringExpenseUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._recurringExpenseUIState; t34 = t35 == null ? t34._recurringExpenseUIState = new A.RecurringExpenseUIStateBuilder() : t35; t35 = t23._as(serializers.deserialize$2$specifiedType(value, B.FullType_fs3)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._recurring_expense_state$_$v = t35; break; case "subscriptionUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._subscriptionUIState; t34 = t35 == null ? t34._subscriptionUIState = new A.SubscriptionUIStateBuilder() : t35; t35 = t22._as(serializers.deserialize$2$specifiedType(value, B.FullType_NT2)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._subscription_state$_$v = t35; break; case "taskStatusUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._taskStatusUIState; t34 = t35 == null ? t34._taskStatusUIState = new A.TaskStatusUIStateBuilder() : t35; t35 = t21._as(serializers.deserialize$2$specifiedType(value, B.FullType_Ufa)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._task_status_state$_$v = t35; break; case "expenseCategoryUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._expenseCategoryUIState; t34 = t35 == null ? t34._expenseCategoryUIState = new A.ExpenseCategoryUIStateBuilder() : t35; t35 = t20._as(serializers.deserialize$2$specifiedType(value, B.FullType_Xjb)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._expense_category_state$_$v = t35; break; case "recurringInvoiceUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._recurringInvoiceUIState; t34 = t35 == null ? t34._recurringInvoiceUIState = new A.RecurringInvoiceUIStateBuilder() : t35; t35 = t19._as(serializers.deserialize$2$specifiedType(value, B.FullType_gA4)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._recurring_invoice_state$_$v = t35; break; case "webhookUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._webhookUIState; t34 = t35 == null ? t34._webhookUIState = new A.WebhookUIStateBuilder() : t35; t35 = t18._as(serializers.deserialize$2$specifiedType(value, B.FullType_AUo)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._webhook_state$_$v = t35; break; case "tokenUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._tokenUIState; t34 = t35 == null ? t34._tokenUIState = new A.TokenUIStateBuilder() : t35; t35 = t17._as(serializers.deserialize$2$specifiedType(value, B.FullType_oeJ)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._token_state$_$v = t35; break; case "paymentTermUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._paymentTermUIState; t34 = t35 == null ? t34._paymentTermUIState = new A.PaymentTermUIStateBuilder() : t35; t35 = t16._as(serializers.deserialize$2$specifiedType(value, B.FullType_cg9)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._payment_term_state$_$v = t35; break; case "designUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._designUIState; t34 = t35 == null ? t34._designUIState = new A.DesignUIStateBuilder() : t35; t35 = t15._as(serializers.deserialize$2$specifiedType(value, B.FullType_cE9)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._design_state$_$v = t35; break; case "creditUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._creditUIState; t34 = t35 == null ? t34._creditUIState = new A.CreditUIStateBuilder() : t35; t35 = t14._as(serializers.deserialize$2$specifiedType(value, B.FullType_kiO)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._credit_state$_$v = t35; break; case "userUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._userUIState; t34 = t35 == null ? t34._userUIState = new A.UserUIStateBuilder() : t35; t35 = t13._as(serializers.deserialize$2$specifiedType(value, B.FullType_A8J0)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._user_state$_$v = t35; break; case "taxRateUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._taxRateUIState; t34 = t35 == null ? t34._taxRateUIState = new A.TaxRateUIStateBuilder() : t35; t35 = t12._as(serializers.deserialize$2$specifiedType(value, B.FullType_MIo0)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._tax_rate_state$_$v = t35; break; case "companyGatewayUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._companyGatewayUIState; t34 = t35 == null ? t34._companyGatewayUIState = new A.CompanyGatewayUIStateBuilder() : t35; t35 = t11._as(serializers.deserialize$2$specifiedType(value, B.FullType_2Px)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._company_gateway_state$_$v = t35; break; case "groupUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._groupUIState; t34 = t35 == null ? t34._groupUIState = new A.GroupUIStateBuilder() : t35; t35 = t10._as(serializers.deserialize$2$specifiedType(value, B.FullType_2bx)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._group_state$_$v = t35; break; case "documentUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._documentUIState; t34 = t35 == null ? t34._documentUIState = new A.DocumentUIStateBuilder() : t35; t35 = t9._as(serializers.deserialize$2$specifiedType(value, B.FullType_wwi)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._document_state$_$v = t35; break; case "expenseUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._expenseUIState; t34 = t35 == null ? t34._expenseUIState = new A.ExpenseUIStateBuilder() : t35; t35 = t8._as(serializers.deserialize$2$specifiedType(value, B.FullType_ivT)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._expense_state$_$v = t35; break; case "vendorUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._vendorUIState; t34 = t35 == null ? t34._vendorUIState = new A.VendorUIStateBuilder() : t35; t35 = t7._as(serializers.deserialize$2$specifiedType(value, B.FullType_2be)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._vendor_state$_$v = t35; break; case "taskUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._taskUIState; t34 = t35 == null ? t34._taskUIState = new A.TaskUIStateBuilder() : t35; t35 = t6._as(serializers.deserialize$2$specifiedType(value, B.FullType_5xM)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._task_state$_$v = t35; break; case "projectUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._projectUIState; t34 = t35 == null ? t34._projectUIState = new A.ProjectUIStateBuilder() : t35; t35 = t5._as(serializers.deserialize$2$specifiedType(value, B.FullType_EOF)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._project_state$_$v = t35; break; case "paymentUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._paymentUIState; t34 = t35 == null ? t34._paymentUIState = new A.PaymentUIStateBuilder() : t35; t35 = t4._as(serializers.deserialize$2$specifiedType(value, B.FullType_1cc)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._payment_state$_$v = t35; break; case "quoteUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._quoteUIState; t34 = t35 == null ? t34._quoteUIState = new A.QuoteUIStateBuilder() : t35; t35 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_0eC)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._quote_state$_$v = t35; break; case "settingsUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._settingsUIState; if (t35 == null) { t35 = new A.SettingsUIStateBuilder(); t35.get$_company_state$_$this()._selectedTemplate = B.EmailTemplate_invoice; t34._settingsUIState = t35; t34 = t35; } else t34 = t35; t35 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_eFJ)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._company_state$_$v = t35; break; case "reportsUIState": t34 = result.get$_ui_state$_$this(); t35 = t34._reportsUIState; t34 = t35 == null ? t34._reportsUIState = new A.ReportsUIStateBuilder() : t35; t35 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_NPy)); if (t35 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t34._reports_state$_$v = t35; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_nZd; }, get$wireName() { return "UIState"; } }; A._$UIState.prototype = { rebuild$1(updates) { var t1 = new A.UIStateBuilder(); A.UIState__initializeBuilder(t1); A.ArgumentError_checkNotNull(this, "other"); t1._ui_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UIState && _this.selectedCompanyIndex === other.selectedCompanyIndex && _this.currentRoute === other.currentRoute && _this.previousRoute === other.previousRoute && _this.loadingEntityType == other.loadingEntityType && J.$eq$(_this.previewStack, other.previewStack) && J.$eq$(_this.filterStack, other.filterStack) && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt && _this.lastActivityAt === other.lastActivityAt && J.$eq$(_this.dashboardUIState, other.dashboardUIState) && J.$eq$(_this.productUIState, other.productUIState) && J.$eq$(_this.clientUIState, other.clientUIState) && J.$eq$(_this.invoiceUIState, other.invoiceUIState) && J.$eq$(_this.purchaseOrderUIState, other.purchaseOrderUIState) && J.$eq$(_this.recurringExpenseUIState, other.recurringExpenseUIState) && J.$eq$(_this.subscriptionUIState, other.subscriptionUIState) && J.$eq$(_this.taskStatusUIState, other.taskStatusUIState) && J.$eq$(_this.expenseCategoryUIState, other.expenseCategoryUIState) && J.$eq$(_this.recurringInvoiceUIState, other.recurringInvoiceUIState) && J.$eq$(_this.webhookUIState, other.webhookUIState) && J.$eq$(_this.tokenUIState, other.tokenUIState) && J.$eq$(_this.paymentTermUIState, other.paymentTermUIState) && J.$eq$(_this.designUIState, other.designUIState) && J.$eq$(_this.creditUIState, other.creditUIState) && J.$eq$(_this.userUIState, other.userUIState) && J.$eq$(_this.taxRateUIState, other.taxRateUIState) && J.$eq$(_this.companyGatewayUIState, other.companyGatewayUIState) && J.$eq$(_this.groupUIState, other.groupUIState) && J.$eq$(_this.documentUIState, other.documentUIState) && J.$eq$(_this.expenseUIState, other.expenseUIState) && J.$eq$(_this.vendorUIState, other.vendorUIState) && J.$eq$(_this.taskUIState, other.taskUIState) && J.$eq$(_this.projectUIState, other.projectUIState) && J.$eq$(_this.paymentUIState, other.paymentUIState) && J.$eq$(_this.quoteUIState, other.quoteUIState) && J.$eq$(_this.settingsUIState, other.settingsUIState) && J.$eq$(_this.reportsUIState, other.reportsUIState); }, get$hashCode(_) { var _this = this, t1 = _this._ui_state$__hashCode; return t1 == null ? _this._ui_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, B.JSInt_methods.get$hashCode(_this.selectedCompanyIndex)), B.JSString_methods.get$hashCode(_this.currentRoute)), B.JSString_methods.get$hashCode(_this.previousRoute)), J.get$hashCode$(_this.loadingEntityType)), J.get$hashCode$(_this.previewStack)), J.get$hashCode$(_this.filterStack)), J.get$hashCode$(_this.filter)), B.JSInt_methods.get$hashCode(_this.filterClearedAt)), B.JSInt_methods.get$hashCode(_this.lastActivityAt)), J.get$hashCode$(_this.dashboardUIState)), J.get$hashCode$(_this.productUIState)), J.get$hashCode$(_this.clientUIState)), J.get$hashCode$(_this.invoiceUIState)), J.get$hashCode$(_this.purchaseOrderUIState)), J.get$hashCode$(_this.recurringExpenseUIState)), J.get$hashCode$(_this.subscriptionUIState)), J.get$hashCode$(_this.taskStatusUIState)), J.get$hashCode$(_this.expenseCategoryUIState)), J.get$hashCode$(_this.recurringInvoiceUIState)), J.get$hashCode$(_this.webhookUIState)), J.get$hashCode$(_this.tokenUIState)), J.get$hashCode$(_this.paymentTermUIState)), J.get$hashCode$(_this.designUIState)), J.get$hashCode$(_this.creditUIState)), J.get$hashCode$(_this.userUIState)), J.get$hashCode$(_this.taxRateUIState)), J.get$hashCode$(_this.companyGatewayUIState)), J.get$hashCode$(_this.groupUIState)), J.get$hashCode$(_this.documentUIState)), J.get$hashCode$(_this.expenseUIState)), J.get$hashCode$(_this.vendorUIState)), J.get$hashCode$(_this.taskUIState)), J.get$hashCode$(_this.projectUIState)), J.get$hashCode$(_this.paymentUIState)), J.get$hashCode$(_this.quoteUIState)), J.get$hashCode$(_this.settingsUIState)), J.get$hashCode$(_this.reportsUIState))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "selectedCompanyIndex", _this.selectedCompanyIndex); t2.add$2(t1, "currentRoute", _this.currentRoute); t2.add$2(t1, "previousRoute", _this.previousRoute); t2.add$2(t1, "loadingEntityType", _this.loadingEntityType); t2.add$2(t1, "previewStack", _this.previewStack); t2.add$2(t1, "filterStack", _this.filterStack); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); t2.add$2(t1, "lastActivityAt", _this.lastActivityAt); t2.add$2(t1, "dashboardUIState", _this.dashboardUIState); t2.add$2(t1, "productUIState", _this.productUIState); t2.add$2(t1, "clientUIState", _this.clientUIState); t2.add$2(t1, "invoiceUIState", _this.invoiceUIState); t2.add$2(t1, "purchaseOrderUIState", _this.purchaseOrderUIState); t2.add$2(t1, "recurringExpenseUIState", _this.recurringExpenseUIState); t2.add$2(t1, "subscriptionUIState", _this.subscriptionUIState); t2.add$2(t1, "taskStatusUIState", _this.taskStatusUIState); t2.add$2(t1, "expenseCategoryUIState", _this.expenseCategoryUIState); t2.add$2(t1, "recurringInvoiceUIState", _this.recurringInvoiceUIState); t2.add$2(t1, "webhookUIState", _this.webhookUIState); t2.add$2(t1, "tokenUIState", _this.tokenUIState); t2.add$2(t1, "paymentTermUIState", _this.paymentTermUIState); t2.add$2(t1, "designUIState", _this.designUIState); t2.add$2(t1, "creditUIState", _this.creditUIState); t2.add$2(t1, "userUIState", _this.userUIState); t2.add$2(t1, "taxRateUIState", _this.taxRateUIState); t2.add$2(t1, "companyGatewayUIState", _this.companyGatewayUIState); t2.add$2(t1, "groupUIState", _this.groupUIState); t2.add$2(t1, "documentUIState", _this.documentUIState); t2.add$2(t1, "expenseUIState", _this.expenseUIState); t2.add$2(t1, "vendorUIState", _this.vendorUIState); t2.add$2(t1, "taskUIState", _this.taskUIState); t2.add$2(t1, "projectUIState", _this.projectUIState); t2.add$2(t1, "paymentUIState", _this.paymentUIState); t2.add$2(t1, "quoteUIState", _this.quoteUIState); t2.add$2(t1, "settingsUIState", _this.settingsUIState); t2.add$2(t1, "reportsUIState", _this.reportsUIState); return t2.toString$0(t1); } }; A.UIStateBuilder.prototype = { get$previewStack() { var t1 = this.get$_ui_state$_$this(), t2 = t1._previewStack; return t2 == null ? t1._previewStack = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_EntityType) : t2; }, get$filterStack() { var t1 = this.get$_ui_state$_$this(), t2 = t1._filterStack; return t2 == null ? t1._filterStack = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_BaseEntity) : t2; }, get$dashboardUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._dashboardUIState; return t2 == null ? t1._dashboardUIState = new A.DashboardUIStateBuilder() : t2; }, get$productUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._productUIState; return t2 == null ? t1._productUIState = new A.ProductUIStateBuilder() : t2; }, get$clientUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._clientUIState; return t2 == null ? t1._clientUIState = new A.ClientUIStateBuilder() : t2; }, get$invoiceUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._invoiceUIState; return t2 == null ? t1._invoiceUIState = new A.InvoiceUIStateBuilder() : t2; }, get$purchaseOrderUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._purchaseOrderUIState; return t2 == null ? t1._purchaseOrderUIState = new A.PurchaseOrderUIStateBuilder() : t2; }, get$recurringExpenseUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._recurringExpenseUIState; return t2 == null ? t1._recurringExpenseUIState = new A.RecurringExpenseUIStateBuilder() : t2; }, get$subscriptionUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._subscriptionUIState; return t2 == null ? t1._subscriptionUIState = new A.SubscriptionUIStateBuilder() : t2; }, get$taskStatusUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taskStatusUIState; return t2 == null ? t1._taskStatusUIState = new A.TaskStatusUIStateBuilder() : t2; }, get$expenseCategoryUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._expenseCategoryUIState; return t2 == null ? t1._expenseCategoryUIState = new A.ExpenseCategoryUIStateBuilder() : t2; }, get$recurringInvoiceUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._recurringInvoiceUIState; return t2 == null ? t1._recurringInvoiceUIState = new A.RecurringInvoiceUIStateBuilder() : t2; }, get$webhookUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._webhookUIState; return t2 == null ? t1._webhookUIState = new A.WebhookUIStateBuilder() : t2; }, get$tokenUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._tokenUIState; return t2 == null ? t1._tokenUIState = new A.TokenUIStateBuilder() : t2; }, get$paymentTermUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._paymentTermUIState; return t2 == null ? t1._paymentTermUIState = new A.PaymentTermUIStateBuilder() : t2; }, get$designUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._designUIState; return t2 == null ? t1._designUIState = new A.DesignUIStateBuilder() : t2; }, get$creditUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._creditUIState; return t2 == null ? t1._creditUIState = new A.CreditUIStateBuilder() : t2; }, get$userUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._userUIState; return t2 == null ? t1._userUIState = new A.UserUIStateBuilder() : t2; }, get$taxRateUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taxRateUIState; return t2 == null ? t1._taxRateUIState = new A.TaxRateUIStateBuilder() : t2; }, get$companyGatewayUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._companyGatewayUIState; return t2 == null ? t1._companyGatewayUIState = new A.CompanyGatewayUIStateBuilder() : t2; }, get$groupUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._groupUIState; return t2 == null ? t1._groupUIState = new A.GroupUIStateBuilder() : t2; }, get$documentUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._documentUIState; return t2 == null ? t1._documentUIState = new A.DocumentUIStateBuilder() : t2; }, get$expenseUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._expenseUIState; return t2 == null ? t1._expenseUIState = new A.ExpenseUIStateBuilder() : t2; }, get$vendorUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._vendorUIState; return t2 == null ? t1._vendorUIState = new A.VendorUIStateBuilder() : t2; }, get$taskUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taskUIState; return t2 == null ? t1._taskUIState = new A.TaskUIStateBuilder() : t2; }, get$projectUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._projectUIState; return t2 == null ? t1._projectUIState = new A.ProjectUIStateBuilder() : t2; }, get$paymentUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._paymentUIState; return t2 == null ? t1._paymentUIState = new A.PaymentUIStateBuilder() : t2; }, get$quoteUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._quoteUIState; return t2 == null ? t1._quoteUIState = new A.QuoteUIStateBuilder() : t2; }, get$settingsUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._settingsUIState; if (t2 == null) { t2 = new A.SettingsUIStateBuilder(); t2.get$_company_state$_$this()._selectedTemplate = B.EmailTemplate_invoice; t1._settingsUIState = t2; t1 = t2; } else t1 = t2; return t1; }, get$reportsUIState() { var t1 = this.get$_ui_state$_$this(), t2 = t1._reportsUIState; return t2 == null ? t1._reportsUIState = new A.ReportsUIStateBuilder() : t2; }, get$_ui_state$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._ui_state$_$v; if ($$v != null) { _this._selectedCompanyIndex = $$v.selectedCompanyIndex; _this._currentRoute = $$v.currentRoute; _this._previousRoute = $$v.previousRoute; _this._loadingEntityType = $$v.loadingEntityType; t1 = $$v.previewStack; t1.toString; _this._previewStack = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.filterStack; t1.toString; _this._filterStack = A.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._filter = $$v.filter; _this._filterClearedAt = $$v.filterClearedAt; _this._lastActivityAt = $$v.lastActivityAt; t1 = $$v.dashboardUIState; t1.toString; t2 = new A.DashboardUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._dashboard_state$_$v = t1; _this._dashboardUIState = t2; t2 = $$v.productUIState; t2.toString; t1 = new A.ProductUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._product_state$_$v = t2; _this._productUIState = t1; t1 = $$v.clientUIState; t1.toString; t2 = new A.ClientUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._client_state$_$v = t1; _this._clientUIState = t2; t2 = $$v.invoiceUIState; t2.toString; t1 = new A.InvoiceUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._invoice_state$_$v = t2; _this._invoiceUIState = t1; t1 = $$v.purchaseOrderUIState; t1.toString; t2 = new A.PurchaseOrderUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._purchase_order_state$_$v = t1; _this._purchaseOrderUIState = t2; t2 = $$v.recurringExpenseUIState; t2.toString; t1 = new A.RecurringExpenseUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._recurring_expense_state$_$v = t2; _this._recurringExpenseUIState = t1; t1 = $$v.subscriptionUIState; t1.toString; t2 = new A.SubscriptionUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._subscription_state$_$v = t1; _this._subscriptionUIState = t2; t2 = $$v.taskStatusUIState; t2.toString; t1 = new A.TaskStatusUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._task_status_state$_$v = t2; _this._taskStatusUIState = t1; t1 = $$v.expenseCategoryUIState; t1.toString; t2 = new A.ExpenseCategoryUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._expense_category_state$_$v = t1; _this._expenseCategoryUIState = t2; t2 = $$v.recurringInvoiceUIState; t2.toString; t1 = new A.RecurringInvoiceUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._recurring_invoice_state$_$v = t2; _this._recurringInvoiceUIState = t1; t1 = $$v.webhookUIState; t1.toString; t2 = new A.WebhookUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._webhook_state$_$v = t1; _this._webhookUIState = t2; t2 = $$v.tokenUIState; t2.toString; t1 = new A.TokenUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._token_state$_$v = t2; _this._tokenUIState = t1; t1 = $$v.paymentTermUIState; t1.toString; t2 = new A.PaymentTermUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._payment_term_state$_$v = t1; _this._paymentTermUIState = t2; t2 = $$v.designUIState; t2.toString; t1 = new A.DesignUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._design_state$_$v = t2; _this._designUIState = t1; t1 = $$v.creditUIState; t1.toString; t2 = new A.CreditUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._credit_state$_$v = t1; _this._creditUIState = t2; t2 = $$v.userUIState; t2.toString; t1 = new A.UserUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._user_state$_$v = t2; _this._userUIState = t1; t1 = $$v.taxRateUIState; t1.toString; t2 = new A.TaxRateUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._tax_rate_state$_$v = t1; _this._taxRateUIState = t2; t2 = $$v.companyGatewayUIState; t2.toString; t1 = new A.CompanyGatewayUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._company_gateway_state$_$v = t2; _this._companyGatewayUIState = t1; t1 = $$v.groupUIState; t1.toString; t2 = new A.GroupUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._group_state$_$v = t1; _this._groupUIState = t2; t2 = $$v.documentUIState; t2.toString; t1 = new A.DocumentUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._document_state$_$v = t2; _this._documentUIState = t1; t1 = $$v.expenseUIState; t1.toString; t2 = new A.ExpenseUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._expense_state$_$v = t1; _this._expenseUIState = t2; t2 = $$v.vendorUIState; t2.toString; t1 = new A.VendorUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._vendor_state$_$v = t2; _this._vendorUIState = t1; t1 = $$v.taskUIState; t1.toString; t2 = new A.TaskUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._task_state$_$v = t1; _this._taskUIState = t2; t2 = $$v.projectUIState; t2.toString; t1 = new A.ProjectUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._project_state$_$v = t2; _this._projectUIState = t1; t1 = $$v.paymentUIState; t1.toString; t2 = new A.PaymentUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._payment_state$_$v = t1; _this._paymentUIState = t2; t2 = $$v.quoteUIState; t2.toString; t1 = new A.QuoteUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._quote_state$_$v = t2; _this._quoteUIState = t1; t1 = $$v.settingsUIState; t1.toString; t2 = new A.SettingsUIStateBuilder(); t2.get$_company_state$_$this()._selectedTemplate = B.EmailTemplate_invoice; A.ArgumentError_checkNotNull(t1, _s5_); t2._company_state$_$v = t1; _this._settingsUIState = t2; t2 = $$v.reportsUIState; t2.toString; t1 = new A.ReportsUIStateBuilder(); A.ArgumentError_checkNotNull(t2, _s5_); t1._reports_state$_$v = t2; _this._reportsUIState = t1; _this._ui_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, exception, _this = this, _s7_ = "UIState", _$result = null; try { _$result0 = _this._ui_state$_$v; if (_$result0 == null) { t1 = _this.get$_ui_state$_$this()._selectedCompanyIndex; if (t1 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "selectedCompanyIndex")); t2 = _this.get$_ui_state$_$this()._currentRoute; if (t2 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "currentRoute")); t3 = _this.get$_ui_state$_$this()._previousRoute; if (t3 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "previousRoute")); t4 = _this.get$_ui_state$_$this()._loadingEntityType; t5 = _this.get$previewStack().build$0(0); t6 = _this.get$filterStack().build$0(0); t7 = _this.get$_ui_state$_$this()._filter; t8 = _this.get$_ui_state$_$this()._filterClearedAt; if (t8 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "filterClearedAt")); t9 = _this.get$_ui_state$_$this()._lastActivityAt; if (t9 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s7_, "lastActivityAt")); t10 = _this.get$dashboardUIState().build$0(0); t11 = _this.get$productUIState().build$0(0); t12 = _this.get$clientUIState().build$0(0); t13 = _this.get$invoiceUIState().build$0(0); t14 = _this.get$purchaseOrderUIState().build$0(0); t15 = _this.get$recurringExpenseUIState().build$0(0); t16 = _this.get$subscriptionUIState().build$0(0); t17 = _this.get$taskStatusUIState().build$0(0); t18 = _this.get$expenseCategoryUIState().build$0(0); t19 = _this.get$recurringInvoiceUIState().build$0(0); t20 = _this.get$webhookUIState().build$0(0); t21 = _this.get$tokenUIState().build$0(0); t22 = _this.get$paymentTermUIState().build$0(0); t23 = _this.get$designUIState().build$0(0); t24 = _this.get$creditUIState().build$0(0); t25 = _this.get$userUIState().build$0(0); t26 = _this.get$taxRateUIState().build$0(0); t27 = _this.get$companyGatewayUIState().build$0(0); t28 = _this.get$groupUIState().build$0(0); t29 = _this.get$documentUIState().build$0(0); t30 = _this.get$expenseUIState().build$0(0); t31 = _this.get$vendorUIState().build$0(0); t32 = _this.get$taskUIState().build$0(0); t33 = _this.get$projectUIState().build$0(0); t34 = _this.get$paymentUIState().build$0(0); t35 = _this.get$quoteUIState().build$0(0); t36 = _this.get$settingsUIState().build$0(0); _$result0 = A._$UIState$_(t12, t27, t24, t2, t10, t23, t29, t18, t30, t7, t8, t6, t28, t13, t9, t4, t22, t34, t5, t3, t11, t33, t14, t35, t15, t19, _this.get$reportsUIState().build$0(0), t1, t36, t16, t17, t32, t26, t21, t25, t31, t20); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "previewStack"; _this.get$previewStack().build$0(0); _$failedField = "filterStack"; _this.get$filterStack().build$0(0); _$failedField = "dashboardUIState"; _this.get$dashboardUIState().build$0(0); _$failedField = "productUIState"; _this.get$productUIState().build$0(0); _$failedField = "clientUIState"; _this.get$clientUIState().build$0(0); _$failedField = "invoiceUIState"; _this.get$invoiceUIState().build$0(0); _$failedField = "purchaseOrderUIState"; _this.get$purchaseOrderUIState().build$0(0); _$failedField = "recurringExpenseUIState"; _this.get$recurringExpenseUIState().build$0(0); _$failedField = "subscriptionUIState"; _this.get$subscriptionUIState().build$0(0); _$failedField = "taskStatusUIState"; _this.get$taskStatusUIState().build$0(0); _$failedField = "expenseCategoryUIState"; _this.get$expenseCategoryUIState().build$0(0); _$failedField = "recurringInvoiceUIState"; _this.get$recurringInvoiceUIState().build$0(0); _$failedField = "webhookUIState"; _this.get$webhookUIState().build$0(0); _$failedField = "tokenUIState"; _this.get$tokenUIState().build$0(0); _$failedField = "paymentTermUIState"; _this.get$paymentTermUIState().build$0(0); _$failedField = "designUIState"; _this.get$designUIState().build$0(0); _$failedField = "creditUIState"; _this.get$creditUIState().build$0(0); _$failedField = "userUIState"; _this.get$userUIState().build$0(0); _$failedField = "taxRateUIState"; _this.get$taxRateUIState().build$0(0); _$failedField = "companyGatewayUIState"; _this.get$companyGatewayUIState().build$0(0); _$failedField = "groupUIState"; _this.get$groupUIState().build$0(0); _$failedField = "documentUIState"; _this.get$documentUIState().build$0(0); _$failedField = "expenseUIState"; _this.get$expenseUIState().build$0(0); _$failedField = "vendorUIState"; _this.get$vendorUIState().build$0(0); _$failedField = "taskUIState"; _this.get$taskUIState().build$0(0); _$failedField = "projectUIState"; _this.get$projectUIState().build$0(0); _$failedField = "paymentUIState"; _this.get$paymentUIState().build$0(0); _$failedField = "quoteUIState"; _this.get$quoteUIState().build$0(0); _$failedField = "settingsUIState"; _this.get$settingsUIState().build$0(0); _$failedField = "reportsUIState"; _this.get$reportsUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s7_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._ui_state$_$v = t1; return _$result; } }; A.ViewUserList.prototype = {$isPersistUI: 1}; A.ViewUser.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditUser.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$user(receiver) { return this.user; } }; A.UpdateUser.prototype = {$isPersistUI: 1, get$user(receiver) { return this.user; } }; A.LoadUserRequest.prototype = {$isStartLoading: 1}; A.LoadUserFailure.prototype = { toString$0(_) { return "LoadUserFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadUserSuccess.prototype = { toString$0(_) { return "LoadUserSuccess{user: " + A.S(this.user) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$user(receiver) { return this.user; } }; A.LoadUsersRequest.prototype = {$isStartLoading: 1}; A.LoadUsersFailure.prototype = { toString$0(_) { return "LoadUsersFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadUsersSuccess.prototype = { toString$0(_) { return "LoadUsersSuccess{users: " + A.S(this.users) + "}"; }, $isStopLoading: 1 }; A.SaveUserRequest.prototype = {$isStartSaving: 1, get$user(receiver) { return this.user; } }; A.SaveUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user(receiver) { return this.user; } }; A.AddUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user(receiver) { return this.user; } }; A.SaveUserFailure.prototype = {$isStopSaving: 1}; A.ArchiveUserRequest.prototype = {$isStartSaving: 1}; A.ArchiveUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; A.ArchiveUserFailure.prototype = {$isStopSaving: 1}; A.DeleteUserRequest.prototype = {$isStartSaving: 1}; A.DeleteUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; A.DeleteUserFailure.prototype = {$isStopSaving: 1}; A.RestoreUserRequest.prototype = {$isStartSaving: 1}; A.RestoreUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; A.RestoreUserFailure.prototype = {$isStopSaving: 1}; A.RemoveUserRequest.prototype = {$isStartSaving: 1}; A.RemoveUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RemoveUserFailure.prototype = {$isStopSaving: 1}; A.ResendInviteRequest.prototype = {$isStartSaving: 1}; A.ResendInviteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ResendInviteFailure.prototype = {$isStopSaving: 1}; A.FilterUsers.prototype = {}; A.SortUsers.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterUsersByState.prototype = {$isPersistUI: 1}; A.FilterUsersByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterUsersByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterUsersByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterUsersByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleUserAction_closure.prototype = { call$1(user) { return user.get$id(user); }, $signature: 41 }; A.handleUserAction_closure0.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_client_model$_$this()._client_model$_assignedUserId = t1; }, $signature: 1979 }; A.handleUserAction_closure1.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 136 }; A.handleUserAction_closure2.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 136 }; A.handleUserAction_closure3.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 136 }; A.handleUserAction_closure4.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 136 }; A.handleUserAction_closure5.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_expense_model$_$this()._expense_model$_assignedUserId = t1; }, $signature: 1980 }; A.handleUserAction_closure6.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_payment_model$_$this()._payment_model$_assignedUserId = t1; }, $signature: 778 }; A.handleUserAction_closure7.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_project_model$_$this()._project_model$_assignedUserId = t1; }, $signature: 777 }; A.handleUserAction_closure8.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_task_model$_$this()._task_model$_assignedUserId = t1; }, $signature: 1981 }; A.handleUserAction_closure9.prototype = { call$1(b) { var t1 = this.user.id; return b.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t1; }, $signature: 1982 }; A.handleUserAction_closure11.prototype = { call$2(password, idToken) { var _this = this, t1 = A.snackBarCompleter(_this.context, _this.message, false, type$.Null); return _this.store.get$_dispatchers()[0].call$1(new A.RestoreUserRequest(t1, _this.userIds, password, idToken)); }, call$1(password) { return this.call$2(password, null); }, call$0() { return this.call$2(null, null); }, $signature: 333 }; A.handleUserAction_closure10.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 38 }; A.handleUserAction_closure13.prototype = { call$2(password, idToken) { var _this = this, t1 = A.snackBarCompleter(_this.context, _this.message, false, type$.Null); return _this.store.get$_dispatchers()[0].call$1(new A.ArchiveUserRequest(t1, _this.userIds, password, idToken)); }, call$1(password) { return this.call$2(password, null); }, call$0() { return this.call$2(null, null); }, $signature: 333 }; A.handleUserAction_closure12.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 38 }; A.handleUserAction_closure15.prototype = { call$2(password, idToken) { var _this = this, t1 = A.snackBarCompleter(_this.context, _this.message, false, type$.Null); return _this.store.get$_dispatchers()[0].call$1(new A.DeleteUserRequest(t1, _this.userIds, password, idToken)); }, call$1(password) { return this.call$2(password, null); }, call$0() { return this.call$2(null, null); }, $signature: 333 }; A.handleUserAction_closure14.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 38 }; A.handleUserAction_closure17.prototype = { call$2(password, idToken) { var _this = this, t1 = A.snackBarCompleter(_this.context, _this.message, false, type$.Null), t2 = _this.user.id; return _this.store.get$_dispatchers()[0].call$1(new A.RemoveUserRequest(t1, t2, password, idToken)); }, call$1(password) { return this.call$2(password, null); }, call$0() { return this.call$2(null, null); }, $signature: 333 }; A.handleUserAction_closure16.prototype = { call$1(_) { A.passwordCallback(false, new A.handleUserAction__closure(this.dispatch), this.context, false); }, $signature: 11 }; A.handleUserAction__closure.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 38 }; A.handleUserAction_closure18.prototype = { call$2(password, idToken) { var _this = this, t1 = _this.user.id, t2 = A.snackBarCompleter(_this.context, _this.localization.get$emailSentToConfirmEmail(), false, type$.Null); _this.store.get$_dispatchers()[0].call$1(new A.ResendInviteRequest(t2, t1, password, idToken)); }, $signature: 38 }; A.StartUserMultiselect.prototype = {}; A.AddToUserMultiselect.prototype = {}; A.RemoveFromUserMultiselect.prototype = {}; A.ClearUserMultiselect.prototype = {}; A._editUser_closure.prototype = { call$3(store, dynamicAction, next) { var _s30_ = "/settings/user_management/edit"; next.call$1(type$.legacy_EditUser._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s30_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s30_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewUser_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewUser_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewUser_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewUser._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/user_management/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/user_management/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewUserList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s25_ = "/settings/user_management"; next.call$1(type$.legacy_ViewUserList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s25_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s25_, new A._viewUserList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewUserList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveUser_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_ArchiveUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = A.List_List$of(new A.MappedListIterable(t1, new A._archiveUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._archiveUser__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveUser__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].userState.map._map$_map.$index(0, id); }, $signature: 381 }; A._archiveUser__closure0.prototype = { call$1(users) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 260 }; A._archiveUser__closure1.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.ArchiveUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteUser_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_DeleteUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = A.List_List$of(new A.MappedListIterable(t1, new A._deleteUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._deleteUser__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteUser__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].userState.map._map$_map.$index(0, id); }, $signature: 381 }; A._deleteUser__closure0.prototype = { call$1(users) { this.store.get$_dispatchers()[0].call$1(new A.DeleteUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 260 }; A._deleteUser__closure1.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.DeleteUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreUser_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_RestoreUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = A.List_List$of(new A.MappedListIterable(t1, new A._restoreUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._restoreUser__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreUser__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].userState.map._map$_map.$index(0, id); }, $signature: 381 }; A._restoreUser__closure0.prototype = { call$1(users) { this.store.get$_dispatchers()[0].call$1(new A.RestoreUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 260 }; A._restoreUser__closure1.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.RestoreUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._removeUser_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_RemoveUserRequest._as(dynamicAction); this.repository.detachFromCompany$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.userId, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._removeUser__closure(store, dynamicAction), type$.Null).catchError$1(new A._removeUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._removeUser__closure.prototype = { call$1(_) { var t1 = this.action; this.store.get$_dispatchers()[0].call$1(new A.RemoveUserSuccess(t1.userId)); t1.completer.complete$1(0, null); }, $signature: 260 }; A._removeUser__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RemoveUserFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._resendInvite_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_ResendInviteRequest._as(dynamicAction); this.repository.resendInvite$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.userId, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._resendInvite__closure(store, dynamicAction), type$.Null).catchError$1(new A._resendInvite__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._resendInvite__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.ResendInviteSuccess()); this.action.completer.complete$1(0, null); }, $signature: 260 }; A._resendInvite__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ResendInviteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveUser_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveUserRequest._as(dynamicAction); this.repository.saveData$4(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.user, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new A._saveUser__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveUser__closure.prototype = { call$1(user) { var t1 = this.action, t2 = this.store; if (t1.user.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddUserSuccess(user)); else t2.get$_dispatchers()[0].call$1(new A.SaveUserSuccess(user)); t1.completer.complete$1(0, user); }, $signature: 181 }; A._saveUser__closure0.prototype = { call$1(error) { var t1; A.print(error); t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SaveUserFailure()); if (B.JSString_methods.contains$1(A.S(error), "412")) t1.get$_dispatchers()[0].call$1(new A.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadUser_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadUser._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadUserRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.userId).then$1$1(0, new A._loadUser__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadUser__closure.prototype = { call$1(user) { this.store.get$_dispatchers()[0].call$1(new A.LoadUserSuccess(user)); this.action.completer.complete$1(0, null); }, $signature: 181 }; A._loadUser__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadUserFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadUsers_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadUsers._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadUsersRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadUsers__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadUsers__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadUsers__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadUsersSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1986 }; A._loadUsers__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadUsersFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.userUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$userListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer9().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._user_model$_$v = t1; t1 = $.$get$selectedIdReducer9().call$2(t2.selectedId, t3); b.get$_user_state$_$this()._user_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer9().call$2(t2.forceSelected, t3); b.get$_user_state$_$this()._user_state$_forceSelected = t3; return b; }, $signature: 1987 }; A.forceSelectedReducer_closure71.prototype = { call$2(completer, action) { return true; }, $signature: 1988 }; A.forceSelectedReducer_closure72.prototype = { call$2(completer, action) { return false; }, $signature: 1989 }; A.forceSelectedReducer_closure73.prototype = { call$2(completer, action) { return false; }, $signature: 1990 }; A.forceSelectedReducer_closure74.prototype = { call$2(completer, action) { return false; }, $signature: 1991 }; A.forceSelectedReducer_closure75.prototype = { call$2(completer, action) { return false; }, $signature: 1992 }; A.forceSelectedReducer_closure76.prototype = { call$2(completer, action) { return false; }, $signature: 1993 }; A.forceSelectedReducer_closure77.prototype = { call$2(completer, action) { return false; }, $signature: 1994 }; A.forceSelectedReducer_closure78.prototype = { call$2(completer, action) { return false; }, $signature: 1995 }; A.selectedIdReducer_closure144.prototype = { call$2(completer, action) { return ""; }, $signature: 1996 }; A.selectedIdReducer_closure145.prototype = { call$2(completer, action) { return ""; }, $signature: 1997 }; A.selectedIdReducer_closure146.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_user ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure147.prototype = { call$2(selectedId, action) { return action.userId; }, $signature: 1998 }; A.selectedIdReducer_closure148.prototype = { call$2(selectedId, action) { return action.user.id; }, $signature: 1999 }; A.selectedIdReducer_closure149.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure150.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure151.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2000 }; A.selectedIdReducer_closure152.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2001 }; A.selectedIdReducer_closure153.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2002 }; A.selectedIdReducer_closure154.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2003 }; A.selectedIdReducer_closure155.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2004 }; A.selectedIdReducer_closure156.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2005 }; A.selectedIdReducer_closure157.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2006 }; A.selectedIdReducer_closure158.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_user ? "" : selectedId; }, $signature: 151 }; A.selectedIdReducer_closure159.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_user ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure45.prototype = { call$2(users, action) { return J.$index$asx(action.users, 0); }, $signature: 2007 }; A.editingReducer_closure46.prototype = { call$2(users, action) { return J.$index$asx(action.users, 0); }, $signature: 2008 }; A.editingReducer_closure47.prototype = { call$2(users, action) { return J.$index$asx(action.users, 0); }, $signature: 2009 }; A.editingReducer_closure48.prototype = { call$2(user, action) { return action.user.rebuild$1(new A.editingReducer__closure15()); }, $signature: 2010 }; A.editingReducer__closure15.prototype = { call$1(b) { b.get$_user_model$_$this()._user_model$_isChanged = true; return b; }, $signature: 77 }; A._viewUserList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterUsersByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterUsersByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterUsersByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterUsersByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterUsersByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterUsersByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterUsersByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterUsersByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterUsersByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterUsersByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterUsers_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.userListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortUsers_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure9.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure9.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure9.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure9.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveUserSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 382 }; A._deleteUserSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 382 }; A._restoreUserSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 382 }; A._removeUserSuccess_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.userId; t1.get$_safeMap().remove$1(0, t2); B.JSArray_methods.remove$1(b.get$list(b).get$_safeList(), t2); return b; }, $signature: 122 }; A._addUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 122 }; A._updateUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 122 }; A._updateAuthUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 122 }; A._connectOAuthUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 122 }; A._connectGmailUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 122 }; A._setLoadedUser_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 122 }; A._setLoadedUsers_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.users, new A._setLoadedUsers__closure(), new A._setLoadedUsers__closure0(), type$.legacy_String, type$.legacy_UserEntity)); return b; }, $signature: 122 }; A._setLoadedUsers__closure.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedUsers__closure0.prototype = { call$1(item) { return item; }, $signature: 788 }; A._setLoadedUsers_closure0.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 122 }; A._setLoadedCompany_closure5.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.users, new A._setLoadedCompany__closure5(), new A._setLoadedCompany__closure6(), type$.legacy_String, type$.legacy_UserEntity)); return b; }, $signature: 122 }; A._setLoadedCompany__closure5.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A._setLoadedCompany__closure6.prototype = { call$1(item) { return item; }, $signature: 788 }; A._setLoadedCompany_closure6.prototype = { call$1(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 122 }; A.memoizedFilteredUserList_closure.prototype = { call$5(selectionState, userMap, userList, userListState, authUserId) { return A.filteredUsersSelector(selectionState, userMap, userList, userListState, authUserId); }, $signature: 2015 }; A.filteredUsersSelector_closure.prototype = { call$1(userId) { var t2, _this = this, user = _this.userMap._map$_map.$index(0, userId), t1 = user.id; if (t1 === _this.selectionState.selectedId) return true; t2 = _this.userListState; if (!user.matchesStates$1(t2.stateFilters)) return false; else if (t1 === _this.authUserId) return false; return user.matchesFilter$1(t2.filter); }, $signature: 16 }; A.filteredUsersSelector_closure0.prototype = { call$2(userAId, userBId) { var sortField, sortAscending, userA0, response, t1 = this.userMap._map$_map, userA = t1.$index(0, userAId), userB = t1.$index(0, userBId); t1 = this.userListState; sortField = t1.sortField; sortAscending = t1.sortAscending; userA.toString; if (sortAscending) userA0 = userA; else userA0 = userB; if (!sortAscending) userB = userA; switch (sortField) { case "last_name": response = B.JSString_methods.compareTo$1(userA0.lastName.toLowerCase(), userB.lastName.toLowerCase()); break; case "first_name": response = B.JSString_methods.compareTo$1(userA0.firstName.toLowerCase(), userB.firstName.toLowerCase()); break; case "email": response = B.JSString_methods.compareTo$1(userA0.email, userB.email); break; default: A.print("## ERROR: sort by user." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 19 }; A.memoizedUserList_closure.prototype = { call$1(userMap) { return A.userList(userMap); }, $signature: 384 }; A.userList_closure.prototype = { call$1(userId) { var t1 = this.userMap._map$_map.$index(0, userId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A.userList_closure0.prototype = { call$2(idA, idB) { var t1 = this.userMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).get$fullName().toLowerCase(), t1.$index(0, idB).get$fullName().toLowerCase()); }, $signature: 19 }; A.memoizedGmailUserList_closure.prototype = { call$1(userMap) { return A.gmailUserList(userMap); }, $signature: 384 }; A.gmailUserList_closure.prototype = { call$1(userId) { var t2, t1 = this.userMap._map$_map.$index(0, userId); if (t1 == null) t1 = B.Type_UserEntity_IVQ; type$.legacy_UserEntity._as(t1); if (!t1.get$isArchived() && !t1.isDeleted) { t2 = t1.oauthProvider; t1 = (t2 === "google" || t2 === "microsoft") && t1.oauthUserToken.length !== 0; } else t1 = false; return t1; }, $signature: 16 }; A.memoizedMicrosoftUserList_closure.prototype = { call$1(userMap) { return A.microsoftUserList(userMap); }, $signature: 384 }; A.microsoftUserList_closure.prototype = { call$1(userId) { var t1 = this.userMap._map$_map.$index(0, userId); if (t1 == null) t1 = B.Type_UserEntity_IVQ; type$.legacy_UserEntity._as(t1); return !t1.get$isArchived() && !t1.isDeleted && t1.oauthProvider === "microsoft"; }, $signature: 16 }; A.UserState.prototype = { $get$1(_, userId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, userId)) return t1.$index(0, userId); else return A.UserEntity_UserEntity(userId, null, null); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.UserUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$UserStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_4y3), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.UserStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_user_state$_$this(); t6 = t5._user_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._user_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_4y3)); break; case "list": t5 = result.get$_user_state$_$this(); t6 = t5._user_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._user_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_Y3r; }, get$wireName() { return "UserState"; } }; A._$UserUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_oyU)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new A.UserUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_UserEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_user_state$_$this(); t4 = t3._user_state$_editing; if (t4 == null) { t4 = new A.UserEntityBuilder(); t4.get$_user_model$_$this()._isTwoFactorEnabled = false; t4.get$_user_model$_$this()._hasPassword = false; t4.get$_user_model$_$this()._password = ""; t4.get$_user_model$_$this()._lastEmailAddress = ""; t4.get$_user_model$_$this()._oauthUserToken = ""; t3._user_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_oyU)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._user_model$_$v = t4; break; case "listUIState": t3 = result.get$_user_state$_$this(); t4 = t3._user_state$_listUIState; t3 = t4 == null ? t3._user_state$_listUIState = new A.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t4 == null) A.throwExpression(A.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_user_state$_$this()._user_state$_selectedId = t3; break; case "forceSelected": t3 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_user_state$_$this()._user_state$_forceSelected = t3; break; case "tabIndex": t3 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_user_state$_$this()._user_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_9rO; }, get$wireName() { return "UserUIState"; } }; A._$UserState.prototype = { rebuild$1(updates) { var t1 = new A.UserStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._user_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.UserState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._user_state$__hashCode; return t1 == null ? _this._user_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.UserStateBuilder.prototype = { get$map(_) { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_map; return t2 == null ? t1._user_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_UserEntity) : t2; }, get$list(_) { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_list; return t2 == null ? t1._user_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_user_state$_$this() { var t1, t2, _this = this, $$v = _this._user_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._user_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._user_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._user_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._user_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$UserState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("UserState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$UserUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.UserUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._user_state$__hashCode; return t1 == null ? _this._user_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.UserUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_editing; if (t2 == null) { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); t1._user_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_listUIState; return t2 == null ? t1._user_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_user_state$_$this() { var t1, t2, _this = this, $$v = _this._user_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.UserEntityBuilder(); A.UserEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._user_model$_$v = t1; t1 = t2; } _this._user_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._user_state$_listUIState = t2; _this._user_state$_selectedId = $$v.selectedId; _this._user_state$_forceSelected = $$v.forceSelected; _this._user_state$_tabIndex = $$v.tabIndex; _this._user_state$_saveCompleter = $$v.saveCompleter; _this._user_state$_cancelCompleter = $$v.cancelCompleter; _this._user_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s11_ = "UserUIState", _$result = null; try { _$result0 = _this._user_state$_$v; if (_$result0 == null) { t1 = _this._user_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_user_state$_$this()._user_state$_selectedId; t4 = _this.get$_user_state$_$this()._user_state$_forceSelected; t5 = _this.get$_user_state$_$this()._user_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s11_, "tabIndex")); t6 = _this.get$_user_state$_$this()._user_state$_saveCompleter; _$result0 = A._$UserUIState$_(_this.get$_user_state$_$this()._user_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._user_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._user_state$_$v = t1; return _$result; } }; A._UserUIState_Object_EntityUIState.prototype = {}; A.ViewVendorList.prototype = {$isPersistUI: 1}; A.ViewVendor.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.EditVendor.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$vendor(receiver) { return this.vendor; }, get$contact() { return null; } }; A.UpdateVendor.prototype = {$isPersistUI: 1, get$vendor(receiver) { return this.vendor; } }; A.LoadVendor.prototype = {}; A.LoadVendors.prototype = {}; A.LoadVendorRequest.prototype = {$isStartLoading: 1}; A.LoadVendorFailure.prototype = { toString$0(_) { return "LoadVendorFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadVendorSuccess.prototype = { toString$0(_) { return "LoadVendorSuccess{vendor: " + A.S(this.vendor) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$vendor(receiver) { return this.vendor; } }; A.LoadVendorsRequest.prototype = {$isStartLoading: 1}; A.LoadVendorsFailure.prototype = { toString$0(_) { return "LoadVendorsFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadVendorsSuccess.prototype = { toString$0(_) { return "LoadVendorsSuccess{vendors: " + A.S(this.vendors) + "}"; }, $isStopLoading: 1 }; A.SaveVendorRequest.prototype = {$isStartSaving: 1, get$vendor(receiver) { return this.vendor; } }; A.SaveVendorSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$vendor(receiver) { return this.vendor; } }; A.AddVendorSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$vendor(receiver) { return this.vendor; } }; A.SaveVendorFailure.prototype = {$isStopSaving: 1}; A.ArchiveVendorRequest.prototype = {$isStartSaving: 1}; A.ArchiveVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveVendorFailure.prototype = {$isStopSaving: 1}; A.DeleteVendorRequest.prototype = {$isStartSaving: 1}; A.DeleteVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteVendorFailure.prototype = {$isStopSaving: 1}; A.RestoreVendorRequest.prototype = {$isStartSaving: 1}; A.RestoreVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreVendorFailure.prototype = {$isStopSaving: 1}; A.EditVendorContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.AddVendorContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.UpdateVendorContact.prototype = {$isPersistUI: 1, get$contact() { return this.contact; } }; A.DeleteVendorContact.prototype = {$isPersistUI: 1}; A.FilterVendors.prototype = {$isPersistUI: 1}; A.SortVendors.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterVendorsByState.prototype = {$isPersistUI: 1}; A.FilterVendorsByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterVendorsByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterVendorsByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterVendorsByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleVendorAction_closure.prototype = { call$1(vendor) { return vendor.get$id(vendor); }, $signature: 41 }; A.StartVendorMultiselect.prototype = {}; A.AddToVendorMultiselect.prototype = {}; A.RemoveFromVendorMultiselect.prototype = {}; A.ClearVendorMultiselect.prototype = {}; A.SaveVendorDocumentRequest.prototype = {$isStartSaving: 1, get$vendor(receiver) { return this.vendor; } }; A.SaveVendorDocumentFailure.prototype = {$isStopSaving: 1}; A.UpdateVendorTab.prototype = {$isPersistUI: 1}; A._editVendor_closure.prototype = { call$3(store, dynamicAction, next) { var _s12_ = "/vendor/edit"; next.call$1(type$.legacy_EditVendor._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewVendor_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewVendor_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewVendor_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewVendor._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/vendor/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/vendor/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewVendorList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewVendorList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/vendor")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/vendor", new A._viewVendorList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewVendorList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveVendor_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_ArchiveVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = A.List_List$of(new A.MappedListIterable(t1, new A._archiveVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveVendor__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].vendorState.map._map$_map.$index(0, id); }, $signature: 386 }; A._archiveVendor__closure0.prototype = { call$1(vendors) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 388 }; A._archiveVendor__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteVendor_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_DeleteVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = A.List_List$of(new A.MappedListIterable(t1, new A._deleteVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteVendor__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].vendorState.map._map$_map.$index(0, id); }, $signature: 386 }; A._deleteVendor__closure0.prototype = { call$1(vendors) { this.store.get$_dispatchers()[0].call$1(new A.DeleteVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 388 }; A._deleteVendor__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreVendor_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_RestoreVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = A.List_List$of(new A.MappedListIterable(t1, new A._restoreVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreVendor__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].vendorState.map._map$_map.$index(0, id); }, $signature: 386 }; A._restoreVendor__closure0.prototype = { call$1(vendors) { this.store.get$_dispatchers()[0].call$1(new A.RestoreVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 388 }; A._restoreVendor__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveVendor_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveVendorRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.vendor).then$1$1(0, new A._saveVendor__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveVendor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveVendor__closure.prototype = { call$1(vendor) { var t1 = this.action, t2 = this.store; if (t1.vendor.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddVendorSuccess(vendor)); else t2.get$_dispatchers()[0].call$1(new A.SaveVendorSuccess(vendor)); t1.completer.complete$1(0, vendor); t1 = A._lateReadCheck(t2.__Store__state, "_state").uiState.vendorUIState.saveCompleter; if (t1 != null) t1.complete$1(0, vendor); }, $signature: 256 }; A._saveVendor__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadVendor_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadVendor._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadVendorRequest()); this.repository.loadItem$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.vendorId).then$1$1(0, new A._loadVendor__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadVendor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadVendor__closure.prototype = { call$1(vendor) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadVendorSuccess(vendor)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 256 }; A._loadVendor__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadVendorFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; A._loadVendors_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_LoadVendors._as(dynamicAction); store.get$_dispatchers()[0].call$1(new A.LoadVendorsRequest()); this.repository.loadList$1(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state"))).then$1$1(0, new A._loadVendors__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadVendors__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadVendors__closure.prototype = { call$1(data) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.LoadVendorsSuccess(data)); this.action.toString; t1.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrders(null, 1)); }, $signature: 2020 }; A._loadVendors__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadVendorsFailure(error)); this.action.toString; }, $signature: 3 }; A._saveDocument_closure8.prototype = { call$3(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveVendorDocumentRequest._as(dynamicAction); t1 = A._lateReadCheck(store.__Store__state, "_state"); if (t1.get$isHosted()) { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.vendor, dynamicAction.multipartFile).then$1$1(0, new A._saveDocument__closure17(store, dynamicAction), type$.Null).catchError$1(new A._saveDocument__closure18(store, dynamicAction)); else { store.get$_dispatchers()[0].call$1(new A.SaveVendorDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveDocument__closure17.prototype = { call$1(vendor) { this.store.get$_dispatchers()[0].call$1(new A.SaveVendorSuccess(vendor)); this.action.completer.complete$1(0, null); }, $signature: 256 }; A._saveDocument__closure18.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.vendorUIReducer_closure.prototype = { call$1(b) { var _s5_ = "other", t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$vendorListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, _s5_); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer3().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, _s5_); t4._vendor_model$_$v = t1; t1 = b.get$editingContact(); t4 = $.$get$editingVendorContactReducer().call$2(t2.editingContact, t3); A.ArgumentError_checkNotNull(t4, _s5_); t1._vendor_model$_$v = t4; t4 = $.$get$selectedIdReducer3().call$2(t2.selectedId, t3); b.get$_vendor_state$_$this()._vendor_state$_selectedId = t4; t4 = $.$get$forceSelectedReducer3().call$2(t2.forceSelected, t3); b.get$_vendor_state$_$this()._vendor_state$_forceSelected = t4; t4 = $.$get$tabIndexReducer3().call$2(t2.tabIndex, t3); b.get$_vendor_state$_$this()._vendor_state$_tabIndex = t4; t4 = $.$get$saveCompleterReducer0().call$2(t2.saveCompleter, t3); b.get$_vendor_state$_$this()._vendor_state$_saveCompleter = t4; t3 = $.$get$cancelCompleterReducer0().call$2(t2.cancelCompleter, t3); b.get$_vendor_state$_$this()._vendor_state$_cancelCompleter = t3; return b; }, $signature: 2021 }; A.forceSelectedReducer_closure31.prototype = { call$2(completer, action) { return true; }, $signature: 2022 }; A.forceSelectedReducer_closure32.prototype = { call$2(completer, action) { return false; }, $signature: 2023 }; A.forceSelectedReducer_closure33.prototype = { call$2(completer, action) { return false; }, $signature: 2024 }; A.forceSelectedReducer_closure34.prototype = { call$2(completer, action) { return false; }, $signature: 2025 }; A.forceSelectedReducer_closure35.prototype = { call$2(completer, action) { return false; }, $signature: 2026 }; A.forceSelectedReducer_closure36.prototype = { call$2(completer, action) { return false; }, $signature: 2027 }; A.forceSelectedReducer_closure37.prototype = { call$2(completer, action) { return false; }, $signature: 2028 }; A.forceSelectedReducer_closure38.prototype = { call$2(completer, action) { return false; }, $signature: 2029 }; A.tabIndexReducer_closure7.prototype = { call$2(completer, action) { return action.tabIndex; }, $signature: 2030 }; A.tabIndexReducer_closure8.prototype = { call$2(completer, action) { return 0; }, $signature: 101 }; A.saveCompleterReducer_closure0.prototype = { call$2(completer, action) { return action.completer; }, $signature: 775 }; A.cancelCompleterReducer_closure0.prototype = { call$2(completer, action) { return action.cancelCompleter; }, $signature: 775 }; A.selectedIdReducer_closure64.prototype = { call$2(completer, action) { return ""; }, $signature: 2032 }; A.selectedIdReducer_closure65.prototype = { call$2(completer, action) { return ""; }, $signature: 2033 }; A.selectedIdReducer_closure66.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_vendor ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure67.prototype = { call$2(selectedId, action) { return action.vendorId; }, $signature: 2034 }; A.selectedIdReducer_closure68.prototype = { call$2(selectedId, action) { return action.vendor.id; }, $signature: 2035 }; A.selectedIdReducer_closure69.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure70.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure71.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2036 }; A.selectedIdReducer_closure72.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2037 }; A.selectedIdReducer_closure73.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2038 }; A.selectedIdReducer_closure74.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2039 }; A.selectedIdReducer_closure75.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2040 }; A.selectedIdReducer_closure76.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2041 }; A.selectedIdReducer_closure77.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2042 }; A.selectedIdReducer_closure78.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_vendor ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure24.prototype = { call$2(vendors, action) { return J.$index$asx(action.vendors, 0); }, $signature: 2043 }; A.editingReducer_closure25.prototype = { call$2(vendors, action) { return J.$index$asx(action.vendors, 0); }, $signature: 2044 }; A.editingReducer_closure26.prototype = { call$2(vendors, action) { return J.$index$asx(action.vendors, 0); }, $signature: 2045 }; A.editingReducer_closure27.prototype = { call$2(vendor, action) { return action.vendor.rebuild$1(new A.editingReducer__closure9()); }, $signature: 2046 }; A.editingReducer__closure9.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_isChanged = true; return b; }, $signature: 105 }; A._addContact_closure.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 105 }; A._removeContact_closure.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action.index; B.JSArray_methods.removeAt$1(t1.get$_safeList(), t2); return b; }, $signature: 105 }; A._updateContact_closure.prototype = { call$1(b) { var t1 = b.get$contacts(), t2 = this.action, t3 = t2.index; t2 = t2.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t3] = t2; return b; }, $signature: 105 }; A._viewVendorList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterVendorsByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterVendorsByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterVendorsByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterVendorsByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterVendorsByCustom3_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterVendorsByCustom3_closure0.prototype = { call$1(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterVendorsByCustom4_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterVendorsByCustom4_closure0.prototype = { call$1(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterVendorsByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterVendorsByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterVendors_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.vendorListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortVendors_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure3.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure3.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure3.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure3.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveVendorSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 393 }; A._deleteVendorSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 393 }; A._restoreVendorSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 393 }; A._addVendor_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.vendor, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 318 }; A._updateVendor_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.vendor; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 318 }; A._setLoadedVendor_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.vendor; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 318 }; A.memoizedDropdownVendorList_closure.prototype = { call$4(vendorMap, vendorList, userMap, staticState) { return A.dropdownVendorsSelector(vendorMap, vendorList, userMap, staticState); }, $signature: 2050 }; A.dropdownVendorsSelector_closure.prototype = { call$1(vendorId) { var vendor = this.vendorMap._map$_map.$index(0, vendorId); return !vendor.get$isArchived() && !vendor.isDeleted; }, $signature: 16 }; A.dropdownVendorsSelector_closure0.prototype = { call$2(vendorAId, vendorBId) { var t1 = this.vendorMap._map$_map; return t1.$index(0, vendorAId).compareTo$5(0, t1.$index(0, vendorBId), "name", true, this.userMap, this.staticState); }, $signature: 19 }; A.memoizedFilteredVendorList_closure.prototype = { call$6(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState) { return A.filteredVendorsSelector(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState); }, $signature: 2051 }; A.filteredVendorsSelector_closure.prototype = { call$1(vendorId) { var t1, t2, vendor = this.vendorMap._map$_map.$index(0, vendorId); if (vendor.id === this.selectionState.selectedId) return true; t1 = this.vendorListState; if (!vendor.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, vendor.customValue1)) return false; else { t2 = t1.custom2Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, vendor.customValue2)) return false; else { t2 = t1.custom3Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, vendor.customValue3)) return false; else { t2 = t1.custom4Filters._list; if (t2.length !== 0 && !B.JSArray_methods.contains$1(t2, vendor.customValue4)) return false; } } } return vendor.matchesFilter$1(t1.filter); }, $signature: 16 }; A.filteredVendorsSelector_closure0.prototype = { call$2(vendorAId, vendorBId) { var _this = this, t1 = _this.vendorMap._map$_map, t2 = _this.vendorListState; return t1.$index(0, vendorAId).compareTo$5(0, t1.$index(0, vendorBId), t2.sortField, t2.sortAscending, _this.userMap, _this.staticState); }, $signature: 19 }; A.memoizedVendorStatsForUser_closure.prototype = { call$2(userId, vendorMap) { return A.vendorStatsForUser(userId, vendorMap); }, $signature: 2052 }; A.vendorStatsForUser_closure.prototype = { call$2(vendorId, vendor) { if (vendor.assignedUserId == this.userId) if (!vendor.get$isArchived() && !vendor.isDeleted) ++this._box_0.countActive; else if (vendor.get$isArchived()) ++this._box_0.countArchived; }, $signature: 2053 }; A.memoizedCalculateVendorBalance_closure.prototype = { call$4(vendorId, currencyId, expenseMap, expenseList) { return A.calculateVendorBalance(vendorId, currencyId, expenseMap, expenseList); }, $signature: 2054 }; A.calculateVendorBalance_closure.prototype = { call$1(expenseId) { var t1, _this = this, _null = null, expense = _this.expenseMap._map$_map.$index(0, expenseId); if (expense == null) expense = A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); if (expense.vendorId == _this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) { t1 = _this.currencyId; t1 = t1 == null || expense.currencyId === t1; } else t1 = false; else t1 = false; if (t1) { t1 = _this._box_0; t1.total = t1.total + expense.get$grossAmount(); } }, $signature: 11 }; A.VendorState.prototype = { $get$1(_, vendorId) { var t1 = this.map._map$_map; if (t1.containsKey$1(0, vendorId)) return t1.$index(0, vendorId); else return A.VendorEntity_VendorEntity(vendorId, null, null); }, loadVendors$1(clients) { return this.rebuild$1(new A.VendorState_loadVendors_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.VendorState_loadVendors_closure0(), new A.VendorState_loadVendors_closure1(), type$.legacy_String, type$.legacy_VendorEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.VendorState_loadVendors_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.VendorState_loadVendors_closure1.prototype = { call$1(item) { return item; }, $signature: 2055 }; A.VendorState_loadVendors_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 318 }; A.VendorUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$VendorStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_sav), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.VendorStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_vendor_state$_$this(); t6 = t5._vendor_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._vendor_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_sav)); break; case "list": t5 = result.get$_vendor_state$_$this(); t6 = t5._vendor_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._vendor_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_KLt; }, get$wireName() { return "VendorState"; } }; A._$VendorUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_efs)); } value = object.editingContact; if (value != null) { result.push("editingContact"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_HVD)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, key, value, t6, t7, t8, t9, t10, _s5_ = "other", result = new A.VendorUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_VendorContactEntity, t3 = type$.legacy_VendorEntity, t4 = type$.legacy_ActivityEntity, t5 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t6 = result.get$_vendor_state$_$this(); t7 = t6._vendor_state$_editing; if (t7 == null) { t7 = new A.VendorEntityBuilder(); t8 = t7.get$_vendor_model$_$this(); t9 = t8._vendor_model$_activities; if (t9 == null) { t9 = new A.ListBuilder(t5); t9.__ListBuilder__list = A.List_List$from(B.List_empty, true, t4); t8._vendor_model$_activities = t9; t8 = t9; } else t8 = t9; t9 = A.BuiltList_BuiltList$from(B.List_empty, t4); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = A.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } t6._vendor_state$_editing = t7; t6 = t7; } else t6 = t7; t7 = t3._as(serializers.deserialize$2$specifiedType(value, B.FullType_efs)); if (t7 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t6._vendor_model$_$v = t7; break; case "editingContact": t6 = result.get$_vendor_state$_$this(); t7 = t6._editingContact; t6 = t7 == null ? t6._editingContact = new A.VendorContactEntityBuilder() : t7; t7 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_HVD)); if (t7 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t6._vendor_model$_$v = t7; break; case "listUIState": t6 = result.get$_vendor_state$_$this(); t7 = t6._vendor_state$_listUIState; t6 = t7 == null ? t6._vendor_state$_listUIState = new A.ListUIStateBuilder() : t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t7 == null) A.throwExpression(A.ArgumentError$notNull(_s5_)); t6._list_ui_state$_$v = t7; break; case "selectedId": t6 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_vendor_state$_$this()._vendor_state$_selectedId = t6; break; case "forceSelected": t6 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_vendor_state$_$this()._vendor_state$_forceSelected = t6; break; case "tabIndex": t6 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_vendor_state$_$this()._vendor_state$_tabIndex = t6; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_ifx; }, get$wireName() { return "VendorUIState"; } }; A._$VendorState.prototype = { rebuild$1(updates) { var t1 = new A.VendorStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._vendor_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.VendorState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._vendor_state$__hashCode; return t1 == null ? _this._vendor_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.VendorStateBuilder.prototype = { get$map(_) { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_map; return t2 == null ? t1._vendor_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_VendorEntity) : t2; }, get$list(_) { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_list; return t2 == null ? t1._vendor_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_vendor_state$_$this() { var t1, t2, _this = this, $$v = _this._vendor_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._vendor_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._vendor_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._vendor_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._vendor_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$VendorState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("VendorState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._vendor_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$VendorUIState.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.VendorUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.editingContact, other.editingContact) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode(_) { var _this = this, t1 = _this._vendor_state$__hashCode; return t1 == null ? _this._vendor_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingContact)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingContact", _this.editingContact); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.VendorUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_editing; if (t2 == null) { t2 = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(t2); t1._vendor_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$editingContact() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._editingContact; return t2 == null ? t1._editingContact = new A.VendorContactEntityBuilder() : t2; }, get$listUIState() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_listUIState; return t2 == null ? t1._vendor_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_vendor_state$_$this() { var t1, t2, _this = this, _s5_ = "other", $$v = _this._vendor_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.VendorEntityBuilder(); A.VendorEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, _s5_); t2._vendor_model$_$v = t1; t1 = t2; } _this._vendor_state$_editing = t1; t1 = $$v.editingContact; if (t1 == null) t1 = null; else { t2 = new A.VendorContactEntityBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._vendor_model$_$v = t1; t1 = t2; } _this._editingContact = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, _s5_); t2._list_ui_state$_$v = t1; _this._vendor_state$_listUIState = t2; _this._vendor_state$_selectedId = $$v.selectedId; _this._vendor_state$_forceSelected = $$v.forceSelected; _this._vendor_state$_tabIndex = $$v.tabIndex; _this._vendor_state$_saveCompleter = $$v.saveCompleter; _this._vendor_state$_cancelCompleter = $$v.cancelCompleter; _this._vendor_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s13_ = "VendorUIState", _$result = null; try { _$result0 = _this._vendor_state$_$v; if (_$result0 == null) { t1 = _this._vendor_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this._editingContact; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$listUIState().build$0(0); t4 = _this.get$_vendor_state$_$this()._vendor_state$_selectedId; t5 = _this.get$_vendor_state$_$this()._vendor_state$_forceSelected; t6 = _this.get$_vendor_state$_$this()._vendor_state$_tabIndex; if (t6 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s13_, "tabIndex")); t7 = _this.get$_vendor_state$_$this()._vendor_state$_saveCompleter; _$result0 = A._$VendorUIState$_(_this.get$_vendor_state$_$this()._vendor_state$_cancelCompleter, t1, t2, t5, t3, t7, t4, t6); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._vendor_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "editingContact"; t1 = _this._editingContact; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._vendor_state$_$v = t1; return _$result; } }; A._VendorUIState_Object_EntityUIState.prototype = {}; A.ViewWebhookList.prototype = {$isPersistUI: 1}; A.ViewWebhook.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$webhookId() { return this.webhookId; } }; A.EditWebhook.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$webhook() { return this.webhook; } }; A.UpdateWebhook.prototype = {$isPersistUI: 1, get$webhook() { return this.webhook; } }; A.LoadWebhookRequest.prototype = {$isStartLoading: 1}; A.LoadWebhookFailure.prototype = { toString$0(_) { return "LoadWebhookFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadWebhookSuccess.prototype = { toString$0(_) { return "LoadWebhookSuccess{webhook: " + A.S(this.webhook) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$webhook() { return this.webhook; } }; A.LoadWebhooksRequest.prototype = {$isStartLoading: 1}; A.LoadWebhooksFailure.prototype = { toString$0(_) { return "LoadWebhooksFailure{error: " + A.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadWebhooksSuccess.prototype = { toString$0(_) { return "LoadWebhooksSuccess{webhooks: " + A.S(this.webhooks) + "}"; }, $isStopLoading: 1 }; A.SaveWebhookRequest.prototype = {$isStartSaving: 1, get$webhook() { return this.webhook; } }; A.SaveWebhookSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$webhook() { return this.webhook; } }; A.AddWebhookSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$webhook() { return this.webhook; } }; A.SaveWebhookFailure.prototype = {$isStopSaving: 1}; A.ArchiveWebhooksRequest.prototype = {$isStartSaving: 1}; A.ArchiveWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveWebhooksFailure.prototype = {$isStopSaving: 1}; A.DeleteWebhooksRequest.prototype = {$isStartSaving: 1}; A.DeleteWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteWebhooksFailure.prototype = {$isStopSaving: 1}; A.RestoreWebhooksRequest.prototype = {$isStartSaving: 1}; A.RestoreWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreWebhooksFailure.prototype = {$isStopSaving: 1}; A.FilterWebhooks.prototype = {$isPersistUI: 1}; A.SortWebhooks.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterWebhooksByState.prototype = {$isPersistUI: 1}; A.FilterWebhooksByCustom1.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterWebhooksByCustom2.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterWebhooksByCustom3.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.FilterWebhooksByCustom4.prototype = {$isPersistUI: 1, get$value(receiver) { return this.value; } }; A.handleWebhookAction_closure.prototype = { call$1(webhook) { return webhook.get$id(webhook); }, $signature: 41 }; A.StartWebhookMultiselect.prototype = {}; A.AddToWebhookMultiselect.prototype = {}; A.RemoveFromWebhookMultiselect.prototype = {}; A.ClearWebhookMultiselect.prototype = {}; A._editWebhook_closure.prototype = { call$3(store, dynamicAction, next) { var _s22_ = "/settings/webhook/edit"; next.call$1(type$.legacy_EditWebhook._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s22_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s22_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewWebhook_closure.prototype = { call$3(store, dynamicAction, next) { return this.$call$body$_viewWebhook_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewWebhook_closure(store, dynamicAction, next) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewWebhook._as(dynamicAction)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/webhook/view")); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/webhook/view", type$.legacy_Object); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 28 }; A._viewWebhookList_closure0.prototype = { call$3(store, dynamicAction, next) { var t1, t2, t3, _s17_ = "/settings/webhook"; next.call$1(type$.legacy_ViewWebhookList._as(dynamicAction)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].get$isStale() || t1.staticState.get$isStale()) store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s17_)); if (A._lateReadCheck(store.__Store__state, "_state").prefState.appLayout === B.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s17_, new A._viewWebhookList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._viewWebhookList__closure.prototype = { call$1(route) { return false; }, $signature: 45 }; A._archiveWebhook_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_ArchiveWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = A.List_List$of(new A.MappedListIterable(t1, new A._archiveWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_archive).then$1$1(0, new A._archiveWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new A._archiveWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._archiveWebhook__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].webhookState.map._map$_map.$index(0, id); }, $signature: 396 }; A._archiveWebhook__closure0.prototype = { call$1(webhooks) { this.store.get$_dispatchers()[0].call$1(new A.ArchiveWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 397 }; A._archiveWebhook__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.ArchiveWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._deleteWebhook_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_DeleteWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = A.List_List$of(new A.MappedListIterable(t1, new A._deleteWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_delete).then$1$1(0, new A._deleteWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new A._deleteWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._deleteWebhook__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].webhookState.map._map$_map.$index(0, id); }, $signature: 396 }; A._deleteWebhook__closure0.prototype = { call$1(webhooks) { this.store.get$_dispatchers()[0].call$1(new A.DeleteWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 397 }; A._deleteWebhook__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.DeleteWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._restoreWebhook_closure.prototype = { call$3(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_RestoreWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = A.List_List$of(new A.MappedListIterable(t1, new A._restoreWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), t1, B.EntityAction_restore).then$1$1(0, new A._restoreWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new A._restoreWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._restoreWebhook__closure.prototype = { call$1(id) { var t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].webhookState.map._map$_map.$index(0, id); }, $signature: 396 }; A._restoreWebhook__closure0.prototype = { call$1(webhooks) { this.store.get$_dispatchers()[0].call$1(new A.RestoreWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 397 }; A._restoreWebhook__closure1.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.RestoreWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._saveWebhook_closure.prototype = { call$3(store, dynamicAction, next) { type$.legacy_SaveWebhookRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(A._lateReadCheck(store.__Store__state, "_state")), dynamicAction.webhook).then$1$1(0, new A._saveWebhook__closure(dynamicAction, store), type$.Null).catchError$1(new A._saveWebhook__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._saveWebhook__closure.prototype = { call$1(webhook) { var t1 = this.action, t2 = this.store; if (t1.webhook.get$isNew()) t2.get$_dispatchers()[0].call$1(new A.AddWebhookSuccess(webhook)); else t2.get$_dispatchers()[0].call$1(new A.SaveWebhookSuccess(webhook)); t1.completer.complete$1(0, webhook); }, $signature: 315 }; A._saveWebhook__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.SaveWebhookFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadWebhook_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadWebhook._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadWebhookRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.webhookId).then$1$1(0, new A._loadWebhook__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadWebhook__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadWebhook__closure.prototype = { call$1(webhook) { this.store.get$_dispatchers()[0].call$1(new A.LoadWebhookSuccess(webhook)); this.action.completer.complete$1(0, null); }, $signature: 315 }; A._loadWebhook__closure0.prototype = { call$1(error) { A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadWebhookFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; A._loadWebhooks_closure.prototype = { call$3(store, dynamicAction, next) { var state; type$.legacy_LoadWebhooks._as(dynamicAction); state = A._lateReadCheck(store.__Store__state, "_state"); store.get$_dispatchers()[0].call$1(new A.LoadWebhooksRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new A._loadWebhooks__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadWebhooks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; A._loadWebhooks__closure.prototype = { call$1(data) { var t1; this.store.get$_dispatchers()[0].call$1(new A.LoadWebhooksSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 2059 }; A._loadWebhooks__closure0.prototype = { call$1(error) { var t1; A.print(error); this.store.get$_dispatchers()[0].call$1(new A.LoadWebhooksFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.webhookUIReducer_closure.prototype = { call$1(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$webhookListReducer().call$2(t2.listUIState, t3); A.ArgumentError_checkNotNull(t4, "other"); t1._list_ui_state$_$v = t4; t4 = b.get$editing(); t1 = $.$get$editingReducer14().call$2(t2.editing, t3); A.ArgumentError_checkNotNull(t1, "other"); t4._webhook_model$_$v = t1; t1 = $.$get$selectedIdReducer14().call$2(t2.selectedId, t3); b.get$_webhook_state$_$this()._webhook_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer14().call$2(t2.forceSelected, t3); b.get$_webhook_state$_$this()._webhook_state$_forceSelected = t3; return b; }, $signature: 2060 }; A.forceSelectedReducer_closure111.prototype = { call$2(completer, action) { return true; }, $signature: 2061 }; A.forceSelectedReducer_closure112.prototype = { call$2(completer, action) { return false; }, $signature: 2062 }; A.forceSelectedReducer_closure113.prototype = { call$2(completer, action) { return false; }, $signature: 2063 }; A.forceSelectedReducer_closure114.prototype = { call$2(completer, action) { return false; }, $signature: 2064 }; A.forceSelectedReducer_closure115.prototype = { call$2(completer, action) { return false; }, $signature: 2065 }; A.forceSelectedReducer_closure116.prototype = { call$2(completer, action) { return false; }, $signature: 2066 }; A.forceSelectedReducer_closure117.prototype = { call$2(completer, action) { return false; }, $signature: 2067 }; A.forceSelectedReducer_closure118.prototype = { call$2(completer, action) { return false; }, $signature: 2068 }; A.selectedIdReducer_closure222.prototype = { call$2(completer, action) { return ""; }, $signature: 2069 }; A.selectedIdReducer_closure223.prototype = { call$2(completer, action) { return ""; }, $signature: 2070 }; A.selectedIdReducer_closure224.prototype = { call$2(selectedId, action) { return action.entityType === B.EntityType_webhook ? action.entityId : selectedId; }, $signature: 54 }; A.selectedIdReducer_closure225.prototype = { call$2(selectedId, action) { return action.get$webhookId(); }, $signature: 90 }; A.selectedIdReducer_closure226.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$webhook()); }, $signature: 90 }; A.selectedIdReducer_closure227.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, $signature: 55 }; A.selectedIdReducer_closure228.prototype = { call$2(selectedId, action) { return ""; }, $signature: 56 }; A.selectedIdReducer_closure229.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2071 }; A.selectedIdReducer_closure230.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2072 }; A.selectedIdReducer_closure231.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2073 }; A.selectedIdReducer_closure232.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2074 }; A.selectedIdReducer_closure233.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2075 }; A.selectedIdReducer_closure234.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2076 }; A.selectedIdReducer_closure235.prototype = { call$2(selectedId, action) { return ""; }, $signature: 2077 }; A.selectedIdReducer_closure236.prototype = { call$2(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === B.EntityType_webhook ? t1.get$id(t1) : selectedId; } return t1; }, $signature: 79 }; A.editingReducer_closure72.prototype = { call$2(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, $signature: 2078 }; A.editingReducer_closure73.prototype = { call$2(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, $signature: 2079 }; A.editingReducer_closure74.prototype = { call$2(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, $signature: 2080 }; A.editingReducer_closure75.prototype = { call$2(webhook, action) { return action.webhook.rebuild$1(new A.editingReducer__closure26()); }, $signature: 2081 }; A.editingReducer__closure26.prototype = { call$1(b) { b.get$_webhook_model$_$this()._webhook_model$_isChanged = true; return b; }, $signature: 216 }; A._viewWebhookList_closure.prototype = { call$1(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterWebhooksByCustom1_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterWebhooksByCustom1_closure0.prototype = { call$1(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterWebhooksByCustom2_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterWebhooksByCustom2_closure0.prototype = { call$1(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterWebhooksByState_closure.prototype = { call$1(b) { B.JSArray_methods.remove$1(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterWebhooksByState_closure0.prototype = { call$1(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterWebhooks_closure.prototype = { call$1(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.webhookListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortWebhooks_closure.prototype = { call$1(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure14.prototype = { call$1(b) { var t1 = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure14.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure14.prototype = { call$1(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); B.JSArray_methods.remove$1(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure14.prototype = { call$1(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveWebhookSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 399 }; A._deleteWebhookSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 399 }; A._restoreWebhookSuccess_closure.prototype = { call$1(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, B.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); t4.get$_safeMap().$indexSet(0, t5, t3); } }, $signature: 399 }; A._addWebhook_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.webhook, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t2.get$_safeList(), t3); return b; }, $signature: 277 }; A._updateWebhook_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.webhook; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 277 }; A._setLoadedWebhook_closure.prototype = { call$1(b) { var t1 = b.get$map(b), t2 = this.action.webhook; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 277 }; A.memoizedFilteredWebhookList_closure.prototype = { call$4(selectionState, webhookMap, webhookList, webhookListState) { return A.filteredWebhooksSelector(selectionState, webhookMap, webhookList, webhookListState); }, $signature: 2085 }; A.filteredWebhooksSelector_closure.prototype = { call$1(webhookId) { var t1, webhook = this.webhookMap._map$_map.$index(0, webhookId); if (webhook.id === this.selectionState.selectedId) return true; t1 = this.webhookListState; if (!webhook.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(A._setArrayType([webhook.targetUrl], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredWebhooksSelector_closure0.prototype = { call$2(webhookAId, webhookBId) { var sortField, sortAscending, webhookA0, response, t1 = this.webhookMap._map$_map, webhookA = t1.$index(0, webhookAId), webhookB = t1.$index(0, webhookBId); t1 = this.webhookListState; sortField = t1.sortField; sortAscending = t1.sortAscending; webhookA.toString; if (sortAscending) webhookA0 = webhookA; else webhookA0 = webhookB; if (!sortAscending) webhookB = webhookA; switch (sortField) { case "target_url": response = B.JSString_methods.compareTo$1(webhookA0.targetUrl.toLowerCase(), webhookB.targetUrl.toLowerCase()); break; default: A.print("## ERROR: sort by webhook." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 19 }; A.WebhookState.prototype = { loadWebhooks$1(clients) { return this.rebuild$1(new A.WebhookState_loadWebhooks_closure(this, A.LinkedHashMap_LinkedHashMap$fromIterable(clients, new A.WebhookState_loadWebhooks_closure0(), new A.WebhookState_loadWebhooks_closure1(), type$.legacy_String, type$.legacy_WebhookEntity))); }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A.WebhookState_loadWebhooks_closure0.prototype = { call$1(item) { return J.get$id$x(item); }, $signature: 25 }; A.WebhookState_loadWebhooks_closure1.prototype = { call$1(item) { return item; }, $signature: 2086 }; A.WebhookState_loadWebhooks_closure.prototype = { call$1(b) { var t2, t3, t4, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t3 = A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>"); t4 = this.$this.list; t4 = B.JSArray_methods.$add(A.List_List$of(new A.LinkedHashMapKeyIterable(t1, t3), true, t3._eval$1("Iterable.E")), new A.CopyOnWriteList(true, t4._list, A._instanceType(t4)._eval$1("CopyOnWriteList<1>"))); t4 = A.LinkedHashSet_LinkedHashSet$from(t4, A._arrayInstanceType(t4)._precomputed1); t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetMixin.E"))); return b; }, $signature: 277 }; A.WebhookUIState.prototype = { get$isCreatingNew() { return this.editing.get$isNew(); }, get$editingId() { return this.editing.id; } }; A._$WebhookStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { return A._setArrayType(["map", serializers.serialize$2$specifiedType(object.map, B.FullType_QKO), "list", serializers.serialize$2$specifiedType(object.list, B.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new A.WebhookStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, B.Map_empty0); t5._webhook_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, B.FullType_QKO)); break; case "list": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_list; if (t6 == null) { t6 = new A.ListBuilder(t3); t6.__ListBuilder__list = A.List_List$from(B.List_empty, true, t2); t5._webhook_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = A.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_CFL; }, get$wireName() { return "WebhookState"; } }; A._$WebhookUIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { var result = A._setArrayType(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, B.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, B.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_iL9)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, B.FullType_MtR)); } return result; }, serialize$2(serializers, object) { return this.serialize$3$specifiedType(serializers, object, B.FullType_null_List_empty_false); }, deserialize$3$specifiedType(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, result = new A.WebhookUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_WebhookEntity, t3 = type$.legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = A._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_editing; if (t6 == null) { t6 = new A.WebhookEntityBuilder(); t7 = t6.get$_webhook_model$_$this(); t8 = t7._headers; if (t8 == null) { t8 = new A.MapBuilder(null, $, null, t4); t8.replace$1(0, B.Map_empty0); t7._headers = t8; t7 = t8; } else t7 = t8; t7.replace$1(0, A.BuiltMap_BuiltMap(B.Map_empty0, t3, t3)); t6.get$_webhook_model$_$this()._restMethod = ""; t5._webhook_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, B.FullType_iL9)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._webhook_model$_$v = t6; break; case "listUIState": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_listUIState; t5 = t6 == null ? t5._webhook_state$_listUIState = new A.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, B.FullType_Iqz)); if (t6 == null) A.throwExpression(A.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = A._asStringS(serializers.deserialize$2$specifiedType(value, B.FullType_h8g)); result.get$_webhook_state$_$this()._webhook_state$_selectedId = t5; break; case "forceSelected": t5 = A._asBoolS(serializers.deserialize$2$specifiedType(value, B.FullType_MtR)); result.get$_webhook_state$_$this()._webhook_state$_forceSelected = t5; break; case "tabIndex": t5 = A._asIntS(serializers.deserialize$2$specifiedType(value, B.FullType_kjq)); result.get$_webhook_state$_$this()._webhook_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, B.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types() { return B.List_oUG; }, get$wireName() { return "WebhookUIState"; } }; A._$WebhookState.prototype = { rebuild$1(updates) { var t1 = new A.WebhookStateBuilder(); A.ArgumentError_checkNotNull(this, "other"); t1._webhook_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.WebhookState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode(_) { var _this = this, t1 = _this._webhook_state$__hashCode; return t1 == null ? _this._webhook_state$__hashCode = A.$jf(A.$jc(A.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1($receiver, arg0) { return this.map.call$1(arg0); } }; A.WebhookStateBuilder.prototype = { get$map(_) { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_map; return t2 == null ? t1._webhook_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_WebhookEntity) : t2; }, get$list(_) { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_list; return t2 == null ? t1._webhook_state$_list = A.ListBuilder_ListBuilder(B.List_empty, type$.legacy_String) : t2; }, get$_webhook_state$_$this() { var t1, t2, _this = this, $$v = _this._webhook_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._webhook_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._webhook_state$_list = A.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._webhook_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._webhook_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = A._$WebhookState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$("WebhookState", _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._webhook_state$_$v = t1; return _$result; }, map$1($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; A._$WebhookUIState.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof A.WebhookUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode(_) { var _this = this, t1 = _this._webhook_state$__hashCode; return t1 == null ? _this._webhook_state$__hashCode = A.$jf(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(A.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), B.JSInt_methods.get$hashCode(_this.tabIndex)), B.JSNull_methods.get$hashCode(_this.saveCompleter)), B.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState() { return this.listUIState; }, get$selectedId() { return this.selectedId; }, get$forceSelected() { return this.forceSelected; }, get$tabIndex(receiver) { return this.tabIndex; } }; A.WebhookUIStateBuilder.prototype = { get$editing() { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_editing; if (t2 == null) { t2 = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(t2); t1._webhook_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState() { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_listUIState; return t2 == null ? t1._webhook_state$_listUIState = new A.ListUIStateBuilder() : t2; }, get$_webhook_state$_$this() { var t1, t2, _this = this, $$v = _this._webhook_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.WebhookEntityBuilder(); A.WebhookEntity__initializeBuilder(t2); A.ArgumentError_checkNotNull(t1, "other"); t2._webhook_model$_$v = t1; t1 = t2; } _this._webhook_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new A.ListUIStateBuilder(); A.ArgumentError_checkNotNull(t1, "other"); t2._list_ui_state$_$v = t1; _this._webhook_state$_listUIState = t2; _this._webhook_state$_selectedId = $$v.selectedId; _this._webhook_state$_forceSelected = $$v.forceSelected; _this._webhook_state$_tabIndex = $$v.tabIndex; _this._webhook_state$_saveCompleter = $$v.saveCompleter; _this._webhook_state$_cancelCompleter = $$v.cancelCompleter; _this._webhook_state$_$v = null; } return _this; }, build$0(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "WebhookUIState", _$result = null; try { _$result0 = _this._webhook_state$_$v; if (_$result0 == null) { t1 = _this._webhook_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_webhook_state$_$this()._webhook_state$_selectedId; t4 = _this.get$_webhook_state$_$this()._webhook_state$_forceSelected; t5 = _this.get$_webhook_state$_$this()._webhook_state$_tabIndex; if (t5 == null) A.throwExpression(A.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_webhook_state$_$this()._webhook_state$_saveCompleter; _$result0 = A._$WebhookUIState$_(_this.get$_webhook_state$_$this()._webhook_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { _$failedField = null; try { _$failedField = "editing"; t1 = _this._webhook_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = A.unwrapException(exception); t1 = A.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw A.wrapException(t1); } throw exception; } t1 = _$result; A.ArgumentError_checkNotNull(t1, "other"); _this._webhook_state$_$v = t1; return _$result; } }; A._WebhookUIState_Object_EntityUIState.prototype = {}; A.FieldGrid.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textColor = A.Theme_of(context).textTheme.bodyLarge.color, t2 = type$.JSArray_legacy_Widget, fieldWidgets = A._setArrayType([], t2); J.forEach$1$ax(this.fields, new A.FieldGrid_build_closure(fieldWidgets, t1, textColor)); if (fieldWidgets.length === 0) return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.Column$(A._setArrayType([A.Container$(_null, new A.Padding(B.EdgeInsets_20_16_20_16, new A.LayoutBuilder(new A.FieldGrid_build_closure0(fieldWidgets), _null), _null), B.Clip_0, A.Theme_of(context).cardColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.ListDivider(_null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } }; A.FieldGrid_build_closure.prototype = { call$2(field, value) { var text, t1, _null = null; if (value != null) { text = A.Text$(A.stringReplaceAllUnchecked(value, "\n", " "), _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); if (B.JSString_methods.contains$1(value, "\n")) text = A.Tooltip$(text, value); t1 = value.length; if (t1 !== 0) { t1 = this.textColor; this.fieldWidgets.push(A.Material$(B.Duration_200000, true, _null, new A.CopyToClipboard(A.Column$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(this.localization.lookup$1(field), _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(166, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), new A.SizedBox(_null, 4, _null, _null), text], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), value, false, _null, _null, _null), B.Clip_0, B.Color_0, 0, _null, _null, _null, _null, _null, B.MaterialType_0)); } } }, $signature: 38 }; A.FieldGrid_build_closure0.prototype = { call$2(context, constraints) { return A.GridView$count((constraints.maxWidth / 2 - 8) / 54, this.fieldWidgets, 2, 0, 12, null, new A.NeverScrollableScrollPhysics(null), true, true); }, $signature: 311 }; A.ActionMenuButton.prototype = { build$1(_, context) { var t1, t2, t3, _this = this, _null = null, actions = A._setArrayType([], type$.JSArray_legacy_PopupMenuEntry_legacy_EntityAction), store = A.StoreProvider_of(context, type$.legacy_AppState); if (_this.isSaving) return A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.SizedBox(26, 26, A.CircularProgressIndicator$(_null, B.Color_4294967295, _null, _null, _null, 4, _null, _null), _null), _null, _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); t1 = _this.entityActions; if (t1 != null) B.JSArray_methods.forEach$1(t1, new A.ActionMenuButton_build_closure(actions, context)); t1 = _this.iconData; if (t1 == null) t1 = B.IconData_58372_MaterialIcons_null_false; t1 = A.Icon$(t1, _null, _this.iconSize); t2 = actions.length; t3 = A._lateReadCheck(store.__Store__state, "_state").prefState.enableTooltips ? _null : ""; return A.PopupMenuButton$(_null, _null, t2 !== 0, t1, _null, new A.ActionMenuButton_build_closure0(actions), new A.ActionMenuButton_build_closure1(_this, context), B.EdgeInsets_8_8_8_8, t3, type$.legacy_EntityAction); } }; A.ActionMenuButton_build_closure.prototype = { call$1(action) { var t2, t3, _null = null, t1 = this.actions; if (action == null) t1.push(A.PopupMenuDivider$()); else { t2 = this.context; t3 = A.Icon$(A.getEntityActionIcon(action), A.Theme_of(t2).colorScheme.secondary, _null); t2 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(A.toSnakeCase(action.super$EnumClass$toString(0))); t1.push(A.PopupMenuItem$(A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.legacy_EntityAction)); } }, $signature: 263 }; A.ActionMenuButton_build_closure0.prototype = { call$1(context) { return this.actions; }, $signature: 752 }; A.ActionMenuButton_build_closure1.prototype = { call$1(action) { this.$this.onSelected.call$2(this.context, action); }, $signature: 263 }; A.ViewActionMenuButton.prototype = { build$1(_, context) { var _this = this; return A.ActionMenuButton$(_this.entity, _this.entityActions, null, null, _this.isSaving, _this.onSelected); } }; A.AppBorder.prototype = { build$1(_, context) { var enableDarkMode, t1, isAllSides, color, t2, t3, _this = this, _null = null; if (_this.hideBorder) return _this.child; enableDarkMode = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode; t1 = _this.isTop; isAllSides = t1 == null && _this.isLeft == null; color = enableDarkMode ? A.convertHexStringToColor("#393A3C") : A.convertHexStringToColor("#dfdfdf"); t2 = isAllSides ? A.BorderRadius$circular(2) : _null; if (isAllSides) t1 = A.Border_Border$all(color, 2); else { t1 = t1 === true ? new A.BorderSide(color, 2, B.BorderStyle_1) : B.BorderSide_0CF; t3 = _this.isBottom === true ? new A.BorderSide(color, 2, B.BorderStyle_1) : B.BorderSide_0CF; t1 = new A.Border(t1, B.BorderSide_0CF, t3, _this.isLeft === true ? new A.BorderSide(color, 2, B.BorderStyle_1) : B.BorderSide_0CF); } return A.Container$(_null, _this.child, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, t1, t2, _null, _null, B.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null); } }; A.AppBottomBar.prototype = { createState$0() { return new A._AppBottomBarState(B._StateLifecycle_0); }, onCheckboxPressed$0() { return this.onCheckboxPressed.call$0(); }, onSelectedSortField$1(arg0) { return this.onSelectedSortField.call$1(arg0); }, onSelectedState$2(arg0, arg1) { return this.onSelectedState.call$2(arg0, arg1); }, onSelectedStatus$2(arg0, arg1) { return this.onSelectedStatus.call$2(arg0, arg1); }, onSelectedCustom1$1(arg0) { return this.onSelectedCustom1.call$1(arg0); }, onSelectedCustom2$1(arg0) { return this.onSelectedCustom2.call$1(arg0); }, onSelectedCustom3$1(arg0) { return this.onSelectedCustom3.call$1(arg0); }, onSelectedCustom4$1(arg0) { return this.onSelectedCustom4.call$1(arg0); } }; A._AppBottomBarState.prototype = { closeBottomSheet$0() { var _this = this, t1 = _this._filterStateController; if (t1 != null) { t1.close.call$0(); return 1; } t1 = _this._filterStatusController; if (t1 != null) { t1.close.call$0(); return 2; } t1 = _this._sortController; if (t1 != null) { t1.close.call$0(); return 0; } t1 = _this._filterCustom1Controller; if (t1 != null) { t1.close.call$0(); return 4; } t1 = _this._filterCustom2Controller; if (t1 != null) { t1.close.call$0(); return 5; } t1 = _this._filterCustom3Controller; if (t1 != null) { t1.close.call$0(); return 6; } t1 = _this._filterCustom4Controller; if (t1 != null) { t1.close.call$0(); return 7; } return null; }, build$1(_, context) { var _this = this, t1 = type$.legacy_AppState, state = A._lateReadCheck(A.StoreProvider_of(context, t1).__Store__state, "_state"); return A.StoreBuilder$(new A._AppBottomBarState_build_closure(_this, state, state.prefState, new A._AppBottomBarState_build_closure0(_this, context), new A._AppBottomBarState_build_closure1(_this, context), new A._AppBottomBarState_build_closure2(_this, context, state), new A._AppBottomBarState_build_closure3(_this, context, state), new A._AppBottomBarState_build_closure4(_this, context, state), new A._AppBottomBarState_build_closure5(_this, context, state), new A._AppBottomBarState_build_closure6(_this, context)), null, t1); } }; A._AppBottomBarState_build_closure0.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 1) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure14(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterStateController = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure15(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure14.prototype = { call$1(context) { var _null = null, t1 = this.$this; return A.StoreConnector$(new A._AppBottomBarState_build___closure7(t1), new A._AppBottomBarState_build___closure8(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_EntityState); }, $signature: 2090 }; A._AppBottomBarState_build___closure8.prototype = { call$1(store) { return A._lateReadCheck(store.__Store__state, "_state").getUIState$1(this.$this._widget.entityType).get$listUIState().stateFilters; }, $signature: 2091 }; A._AppBottomBarState_build___closure7.prototype = { call$2(context, stateFilters) { var _null = null, t1 = A.Theme_of(context).backgroundColor, t2 = $.$get$_$values0()._set$_set, t3 = A._instanceType(t2)._eval$1("EfficientLengthMappedIterable"); return A.Container$(_null, A.Column$(A._setArrayType([A.Column$(A.List_List$of(new A.EfficientLengthMappedIterable(t2, new A._AppBottomBarState_build____closure1(this.$this, context, stateFilters), t3), true, t3._eval$1("Iterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2092 }; A._AppBottomBarState_build____closure1.prototype = { call$1(state) { var t4, _null = null, t1 = this.context, t2 = type$.legacy_AppLocalization, t3 = B.JSString_methods.$add("state_", A.Localizations_of(t1, B.Type_AppLocalization_KyD, t2).lookup$1(A.S(state))); t2 = A.Text$(A.Localizations_of(t1, B.Type_AppLocalization_KyD, t2).lookup$1(A.S(state)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = B.JSArray_methods.contains$1(this.stateFilters._list, state); return A.CheckboxListTile$(A.Theme_of(t1).colorScheme.secondary, _null, B.ListTileControlAffinity_0, true, new A.ValueKey(t3, type$.ValueKey_legacy_String), new A._AppBottomBarState_build_____closure2(this.$this, state), t2, t4); }, $signature: 2093 }; A._AppBottomBarState_build_____closure2.prototype = { call$1(value) { this.$this._widget.onSelectedState$2(this.state, value); }, $signature: 20 }; A._AppBottomBarState_build__closure15.prototype = { call$0() { this.$this._filterStateController = null; }, $signature: 1 }; A._AppBottomBarState_build_closure1.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 2) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure12(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterStatusController = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure13(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure12.prototype = { call$1(context) { var _null = null, t1 = this.$this; return A.StoreConnector$(new A._AppBottomBarState_build___closure5(t1), new A._AppBottomBarState_build___closure6(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_EntityStatus); }, $signature: 2094 }; A._AppBottomBarState_build___closure6.prototype = { call$1(store) { return A._lateReadCheck(store.__Store__state, "_state").getUIState$1(this.$this._widget.entityType).get$listUIState().statusFilters; }, $signature: 2095 }; A._AppBottomBarState_build___closure5.prototype = { call$2(context, statusFilters) { var _null = null, t1 = A.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2._widget.statuses, t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,CheckboxListTile*>"); return A.Container$(_null, A.Column$(A._setArrayType([A.Column$(A.List_List$of(new A.MappedListIterable(t3, new A._AppBottomBarState_build____closure0(t2, context, statusFilters), t4), true, t4._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2096 }; A._AppBottomBarState_build____closure0.prototype = { call$1($status) { var _null = null, t1 = J.toString$0$($status), t2 = this.context, t3 = A.Text$(A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1($status.get$name($status)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = B.JSArray_methods.contains$1(this.statusFilters._list, $status); return A.CheckboxListTile$(A.Theme_of(t2).colorScheme.secondary, _null, B.ListTileControlAffinity_0, true, new A.ValueKey(t1, type$.ValueKey_String), new A._AppBottomBarState_build_____closure1(this.$this, $status), t3, t4); }, $signature: 2097 }; A._AppBottomBarState_build_____closure1.prototype = { call$1(value) { this.$this._widget.onSelectedStatus$2(this.status, value); }, $signature: 20 }; A._AppBottomBarState_build__closure13.prototype = { call$0() { this.$this._filterStatusController = null; }, $signature: 1 }; A._AppBottomBarState_build_closure6.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 0) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure2(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._sortController = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure3(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure2.prototype = { call$1(context) { var _null = null, t1 = this.$this; return A.StoreConnector$(new A._AppBottomBarState_build___closure(t1), new A._AppBottomBarState_build___closure0(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ListUIState); }, $signature: 2098 }; A._AppBottomBarState_build___closure0.prototype = { call$1(store) { return A._lateReadCheck(store.__Store__state, "_state").getUIState$1(this.$this._widget.entityType).get$listUIState(); }, $signature: 2099 }; A._AppBottomBarState_build___closure.prototype = { call$2(context, listUIState) { var _null = null, t1 = A.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2._widget.sortFields, t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,InkWell*>"); return A.Container$(_null, A.Column$(A.List_List$of(new A.MappedListIterable(t3, new A._AppBottomBarState_build____closure(t2, context, listUIState), t4), true, t4._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2100 }; A._AppBottomBarState_build____closure.prototype = { call$1(sortField) { var _null = null, t1 = this.$this, t2 = this.context, t3 = type$.legacy_AppLocalization, t4 = A.Text$(A.Localizations_of(t2, B.Type_AppLocalization_KyD, t3).lookup$1(sortField), _null, _null, _null, _null, _null, _null, _null, _null, _null), t5 = this.listUIState, t6 = t5.sortField; if (sortField === t6) { if (t5.sortAscending) { t3 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, t3); t3.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t3.localeCode), "ascending"); if (t3 == null) t3 = ""; } else { t3 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, t3); t3.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t3.localeCode), "descending"); if (t3 == null) t3 = ""; } t3 = A.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t3 = _null; return A.InkWell$(false, _null, true, new A.IgnorePointer(true, _null, new A.RadioListTile(sortField, t6, new A._AppBottomBarState_build_____closure(t1, t5, sortField), true, A.Theme_of(t2).colorScheme.secondary, t4, t3, true, _null, type$.RadioListTile_legacy_String), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._AppBottomBarState_build_____closure0(t1, sortField), _null, _null, _null, _null, _null, _null); }, $signature: 749 }; A._AppBottomBarState_build_____closure0.prototype = { call$0() { return this.$this._widget.onSelectedSortField$1(this.sortField); }, $signature: 9 }; A._AppBottomBarState_build_____closure.prototype = { call$1(value) { var _this = this, t1 = value == null && _this.listUIState.sortField === _this.field, t2 = _this.$this._widget; if (t1) t2.onSelectedSortField$1(_this.field); else t2.onSelectedSortField$1(value); }, $signature: 11 }; A._AppBottomBarState_build__closure3.prototype = { call$0() { this.$this._sortController = null; }, $signature: 1 }; A._AppBottomBarState_build_closure2.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 4) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure10(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom1Controller = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure11(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure10.prototype = { call$1(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new A.CustomFieldSelector(1, t2, t1._widget.customValues1, new A._AppBottomBarState_build___closure4(t1), null); }, $signature: 306 }; A._AppBottomBarState_build___closure4.prototype = { call$1(field) { return this.$this._widget.onSelectedCustom1$1(field); }, $signature: 5 }; A._AppBottomBarState_build__closure11.prototype = { call$0() { this.$this._filterCustom1Controller = null; }, $signature: 1 }; A._AppBottomBarState_build_closure3.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 5) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure8(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom2Controller = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure9(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure8.prototype = { call$1(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new A.CustomFieldSelector(2, t2, t1._widget.customValues2, new A._AppBottomBarState_build___closure3(t1), null); }, $signature: 306 }; A._AppBottomBarState_build___closure3.prototype = { call$1(field) { return this.$this._widget.onSelectedCustom2$1(field); }, $signature: 5 }; A._AppBottomBarState_build__closure9.prototype = { call$0() { this.$this._filterCustom2Controller = null; }, $signature: 1 }; A._AppBottomBarState_build_closure4.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 6) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure6(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom3Controller = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure7(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure6.prototype = { call$1(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new A.CustomFieldSelector(3, t2, t1._widget.customValues3, new A._AppBottomBarState_build___closure2(t1), null); }, $signature: 306 }; A._AppBottomBarState_build___closure2.prototype = { call$1(field) { return this.$this._widget.onSelectedCustom3$1(field); }, $signature: 5 }; A._AppBottomBarState_build__closure7.prototype = { call$0() { this.$this._filterCustom3Controller = null; }, $signature: 1 }; A._AppBottomBarState_build_closure5.prototype = { call$0() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 7) return; t2 = A.Scaffold_of(this.context).showBottomSheet$1$1(new A._AppBottomBarState_build__closure4(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom4Controller = t2; t2._completer.future.whenComplete$1(new A._AppBottomBarState_build__closure5(t1)); }, $signature: 1 }; A._AppBottomBarState_build__closure4.prototype = { call$1(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new A.CustomFieldSelector(4, t2, t1._widget.customValues4, new A._AppBottomBarState_build___closure1(t1), null); }, $signature: 306 }; A._AppBottomBarState_build___closure1.prototype = { call$1(field) { return this.$this._widget.onSelectedCustom4$1(field); }, $signature: 5 }; A._AppBottomBarState_build__closure5.prototype = { call$0() { this.$this._filterCustom4Controller = null; }, $signature: 1 }; A._AppBottomBarState_build_closure.prototype = { call$2(context, store) { var t7, t8, t9, _this = this, _null = null, _s6_ = "_state", _s6_0 = ":value", _s2_ = ", ", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.$this, isList = t2._widget.entityType.get$isSetting() || _this.state.prefState.moduleLayout === B.ModuleLayout_list, t3 = _this.state, t4 = new A._AppBottomBarState_build_closure__onColumnsPressed(t2, context, store, t3), t5 = type$.JSArray_legacy_Widget, t6 = A._setArrayType([new A.SizedBox(4, _null, _null, _null)], t5); B.JSArray_methods.addAll$1(t6, t2._widget.iconButtons); if (!t2._widget.hideListOptions) { t7 = A._setArrayType([], t5); if (A.getLayout(context) === B.AppLayout_mobile) { t8 = _this.prefState.enableTooltips ? t1.get$multiselect() : _null; t7.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57687_MaterialIcons_null_false, _null, _null), _null, new A._AppBottomBarState_build__closure(t2), B.EdgeInsets_8_8_8_8, _null, t8, _null)); } B.JSArray_methods.addAll$1(t6, t7); } if (A.getLayout(context) === B.AppLayout_mobile || t2._widget.entityType === B.EntityType_companyGateway) { t7 = t1.get$filter(t1); t8 = A.Icon$(B.IconData_57984_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().stateFilters._list; t9 = t9.length !== 1 || !J.$eq$(B.JSArray_methods.get$first(t9), B.EntityState_active) ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterStateSheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (t2._widget.statuses.length !== 0 && A.getLayout(context) === B.AppLayout_mobile) { t7 = _this.prefState.enableTooltips ? t1.get$status(t1) : _null; t8 = A.Icon$(B.IconData_57967_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().statusFilters._list.length !== 0 ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterStatusSheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (t2._widget.customValues1.length !== 0) { t7 = _this.prefState.enableTooltips ? B.JSString_methods.replaceFirst$2(t1.get$filteredBy(), _s6_0, B.JSArray_methods.join$1(t2._widget.customValues1, _s2_)) : _null; t8 = A.Icon$(B.IconData_58297_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().custom1Filters._list.length !== 0 ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterCustom1Sheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (t2._widget.customValues2.length !== 0) { t7 = _this.prefState.enableTooltips ? B.JSString_methods.replaceFirst$2(t1.get$filteredBy(), _s6_0, B.JSArray_methods.join$1(t2._widget.customValues2, _s2_)) : _null; t8 = A.Icon$(B.IconData_58298_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().custom2Filters._list.length !== 0 ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterCustom2Sheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (t2._widget.customValues3.length !== 0) { t7 = _this.prefState.enableTooltips ? B.JSString_methods.replaceFirst$2(t1.get$filteredBy(), _s6_0, B.JSArray_methods.join$1(t2._widget.customValues3, _s2_)) : ""; t8 = A.Icon$(B.IconData_58293_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().custom3Filters._list.length !== 0 ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterCustom3Sheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (t2._widget.customValues4.length !== 0) { t7 = _this.prefState.enableTooltips ? B.JSString_methods.replaceFirst$2(t1.get$filteredBy(), _s6_0, B.JSArray_methods.join$1(t2._widget.customValues4, _s2_)) : ""; t8 = A.Icon$(B.IconData_58294_MaterialIcons_null_false, _null, _null); t9 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().custom4Filters._list.length !== 0 ? A.Theme_of(context).colorScheme.secondary : _null; t6.push(A.IconButton$(B.Alignment_0_0, t9, _null, true, t8, _null, _this._showFilterCustom4Sheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (!t2._widget.entityType.get$isSetting()) { if (_this.prefState.enableTooltips) if (isList) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "show_table"); if (t7 == null) t7 = ""; } else { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "show_list"); if (t7 == null) t7 = ""; } else t7 = _null; t6.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(isList ? B.IconData_58938_MaterialIcons_null_false : B.IconData_59061_MaterialIcons_null_true, _null, _null), _null, new A._AppBottomBarState_build__closure0(store), B.EdgeInsets_8_8_8_8, _null, t7, _null)); } if (!t2._widget.hideListOptions) { t5 = A._setArrayType([], t5); if (isList && t2._widget.sortFields.length !== 0) { if (_this.prefState.enableTooltips) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "sort"); if (t7 == null) t7 = ""; } else t7 = _null; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58835_MaterialIcons_null_false, _null, _null), _null, _this._showSortSheet, B.EdgeInsets_8_8_8_8, _null, t7, _null)); } B.JSArray_methods.addAll$1(t6, t5); } t3 = t3.prefState; t5 = t3.appLayout; if (!(t5 === B.AppLayout_mobile || t3.menuSidebarMode === B.AppSidebarMode_float)) t6.push(new A.Spacer(_null)); if (!t2._widget.entityType.get$isSetting() && !isList && !t2._widget.hideListOptions) if (t5 === B.AppLayout_desktop) t6.push(new A.AppTextButton(t1.get$columns(t1), t4, false, _null, _null)); else { t2 = A.Icon$(B.IconData_59066_MaterialIcons_null_false, _null, _null); t6.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, _null, t4, B.EdgeInsets_8_8_8_8, _null, _this.prefState.enableTooltips ? t1.get$columns(t1) : _null, _null)); } if (t5 === B.AppLayout_desktop) { t1 = _this.prefState.enableTooltips ? t1.get$refreshData() : ""; t6.push(new A.AppBorder(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_12_0_12_0, A.Icon$(B.IconData_58644_MaterialIcons_null_false, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._AppBottomBarState_build__closure1(store), _null, _null, _null, _null, _null, _null), t1), _null, _null, true, false, _null)); } return A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t6, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), _null, 0, new A.CircularNotchedRectangle()); }, $signature: 2104 }; A._AppBottomBarState_build_closure__onColumnsPressed.prototype = { call$0() { var _this = this, t1 = _this.context, t2 = _this.$this, t3 = _this.state, t4 = t2._widget, t5 = t4.tableColumns, t6 = t4.defaultTableColumns, t7 = t3.uiState.selectedCompanyIndex; t7 = t3.userCompanyStates._list[t7].userCompany.settings.tableColumns; t4 = t4.entityType.toString$0(0); t4 = t7._map$_map.$index(0, t4); t4 = t4 == null ? null : new A.CopyOnWriteList(true, t4._list, A.instanceType(t4)._eval$1("CopyOnWriteList<1>")); A.multiselectDialog(t1, t6, new A._AppBottomBarState_build___onColumnsPressed_closure(t2, _this.store, t3, t1), t5, t4); }, $signature: 0 }; A._AppBottomBarState_build___onColumnsPressed_closure.prototype = { call$1(selected) { var t4, settings, userCompany, user, completer, _this = this, t1 = _this.store, t2 = _this.$this, t3 = J.getInterceptor$asx(selected); if (!t3.contains$1(selected, A._lateReadCheck(t1.__Store__state, "_state").getUIState$1(t2._widget.entityType).get$listUIState().sortField)) { t4 = t2._widget; t4.toString; t4.onSelectedSortField$1(t3.get$isEmpty(selected) ? "" : t3.$index(selected, 0)); } t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t3 = t3.userCompanyStates._list; settings = t3[t4].userCompany.settings.rebuild$1(new A._AppBottomBarState_build___onColumnsPressed__closure(t2, selected)); userCompany = t3[t4].userCompany.rebuild$1(new A._AppBottomBarState_build___onColumnsPressed__closure0(settings)); user = t3[t4].userCompany.user.rebuild$1(new A._AppBottomBarState_build___onColumnsPressed__closure1(userCompany)); t4 = _this.context; completer = A.snackBarCompleter(t4, A.Localizations_of(t4, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.SaveUserSettingsRequest(completer, user)); }, $signature: 104 }; A._AppBottomBarState_build___onColumnsPressed__closure.prototype = { call$1(b) { b.get$tableColumns().$indexSet(0, this.$this._widget.entityType.toString$0(0), A.BuiltList_BuiltList$from(this.selected, type$.legacy_String)); return b; }, $signature: 730 }; A._AppBottomBarState_build___onColumnsPressed__closure0.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A._AppBottomBarState_build___onColumnsPressed__closure1.prototype = { call$1(b) { var t1 = b.get$userCompany(), t2 = this.userCompany; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 77 }; A._AppBottomBarState_build__closure.prototype = { call$0() { return this.$this._widget.onCheckboxPressed$0(); }, $signature: 9 }; A._AppBottomBarState_build__closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.SwitchListTableLayout()); }, $signature: 1 }; A._AppBottomBarState_build__closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 9 }; A.CustomFieldSelector.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CustomFieldSelector_build_closure(this), new A.CustomFieldSelector_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_String); } }; A.CustomFieldSelector_build_closure0.prototype = { call$1(store) { var t1 = this.$this; return A._lateReadCheck(store.__Store__state, "_state").getUIState$1(t1.entityType).get$listUIState().getCustomFilters$1(t1.customNumber); }, $signature: 2107 }; A.CustomFieldSelector_build_closure.prototype = { call$2(context, customFilters) { var _null = null, t1 = A.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2.customValues, t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,Widget*>"); return A.Container$(_null, A.Column$(A._setArrayType([A.Column$(A.List_List$of(new A.MappedListIterable(t3, new A.CustomFieldSelector_build__closure(t2, customFilters, context), t4), true, t4._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2108 }; A.CustomFieldSelector_build__closure.prototype = { call$1(customField) { var _null = null, t1 = J.toString$0$(customField), t2 = A.Text$(customField, _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = B.JSArray_methods.contains$1(this.customFilters._list, customField); return A.CheckboxListTile$(A.Theme_of(this.context).colorScheme.secondary, _null, B.ListTileControlAffinity_0, true, new A.ValueKey(t1, type$.ValueKey_String), new A.CustomFieldSelector_build___closure(this.$this, customField), t2, t3); }, $signature: 2109 }; A.CustomFieldSelector_build___closure.prototype = { call$1(value) { return this.$this.onSelected.call$1(this.customField); }, $signature: 10 }; A.AppBuilder.prototype = { createState$0() { return new A.AppBuilderState(B._StateLifecycle_0); }, builder$1(arg0) { return this.builder.call$1(arg0); } }; A.AppBuilderState.prototype = { rebuild$0() { this.setState$1(new A.AppBuilderState_rebuild_closure()); }, build$1(_, context) { return this._widget.builder$1(context); } }; A.AppBuilderState_rebuild_closure.prototype = { call$0() { }, $signature: 1 }; A.AppHeader.prototype = { build$1(_, context) { var _null = null, textColor = A.Theme_of(context).textTheme.bodyLarge.color, t1 = type$.JSArray_legacy_Widget, t2 = A._setArrayType([A.Expanded$(new A.AppHeader_build__value1(this, textColor).call$0(), 1)], t1), t3 = this.secondValue; if ((t3 == null ? "" : t3).length !== 0) B.JSArray_methods.addAll$1(t2, A._setArrayType([new A.SizedBox(8, _null, _null, _null), A.Expanded$(new A.AppHeader_build__value2(this, textColor).call$0(), 1)], t1)); t1 = A._setArrayType([A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t1); return A.FormCard$(_null, t1, _null, _null, false, _null, false, _null); }, get$value(receiver) { return this.value; }, get$message() { return null; } }; A.AppHeader_build__value1.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = this.textColor; t2 = A.Text$(t1.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t1 = t1.value; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, $signature: 124 }; A.AppHeader_build__value2.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = this.textColor; t2 = A.Text$(t1.secondLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t1 = t1.secondValue; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, $signature: 124 }; A.AppTitleBar.prototype = { build$1(_, context) { var _null = null; return new A.SizedBox(_null, _null, _null, _null); } }; A.AppWebView.prototype = { build$1(_, context) { return new A._WebWebView(this.html, null); } }; A._WebWebView.prototype = { build$1(_, context) { var encodedHtml = B.JSString_methods.$add("data:text/html;charset=utf-8,", A._Uri__uriEncode(B.List_KIf, this.html, B.C_Utf8Codec, false)); A.WebUtils_registerWebView(encodedHtml); return A.AbsorbPointer$(true, new A.HtmlElementView(encodedHtml, null)); } }; A.BlankScreen.prototype = { build$1(_, context) { var _null = null, t1 = A.AppBar$(_null, _null, A.getLayout(context) === B.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 1, _null), t2 = A.Theme_of(context).cardColor, t3 = this.message; return A.Scaffold$(t1, _null, A.Container$(_null, new A.HelpText(t3 == null ? "" : t3, _null), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null); }, get$message(receiver) { return this.message; } }; A.AppTextButton.prototype = { build$1(_, context) { var primaryColor, flatButtonStyle, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = _this.onPressed; if (t1 == null) primaryColor = _null; else { primaryColor = _this.color; if (!(primaryColor != null)) if (_this.isInHeader) primaryColor = state.get$headerTextColor(); else primaryColor = state.prefState.enableDarkMode ? B.Color_4294967295 : B.Color_3707764736; } flatButtonStyle = A.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, primaryColor, _null, _null, _null, _null, _null, _null); return A.TextButton$(false, A.Text$(_this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, flatButtonStyle); } }; A.BottomButtons.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), textColor = state.prefState.enableDarkMode || state.get$hasAccentColor() ? A.Theme_of(context).textTheme.bodyLarge.color : state.get$accentColor(), t2 = _this.action1Enabled; if (t2) { t3 = _this.entity; t3 = !t3.get$isDeleted(t3) || _this.action1 === B.EntityAction_viewPdf; } else t3 = false; t3 = t3 ? new A.BottomButtons_build_closure(_this) : _null; t4 = _this.action1; t5 = A.Icon$(A.getEntityActionIcon(t4), _null, _null); t4 = t1.lookup$1(t4.toString$0(0)); if (t2) { t2 = _this.entity; t2 = !t2.get$isDeleted(t2); } else t2 = false; t2 = t2 ? 1 : 0.5; textColor.toString; t6 = type$.JSArray_legacy_Widget; t3 = A.Expanded$(A.InkWell$(false, _null, true, A.Row$(A._setArrayType([t5, new A.SizedBox(12, _null, _null, _null), A.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t2), textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_2, _null, _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null), 1); t2 = _this.action2Enabled; if (t2) { t4 = _this.entity; t4 = !t4.get$isDeleted(t4); } else t4 = false; t4 = t4 ? new A.BottomButtons_build_closure0(_this) : _null; t5 = _this.action2; t7 = A.Icon$(A.getEntityActionIcon(t5), _null, _null); t5 = t1.lookup$1(A.S(t5)); if (t2) { t1 = _this.entity; t1 = !t1.get$isDeleted(t1); } else t1 = false; return new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(A._setArrayType([t3, A.Expanded$(new A.AppBorder(A.InkWell$(false, _null, true, A.Row$(A._setArrayType([t7, new A.SizedBox(12, _null, _null, _null), A.Text$(t5, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(B.JSNumber_methods.round$0(255 * (t1 ? 1 : 0.6)), textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_2, _null, _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null), _null, _null, true, false, _null), 1)], t6), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null); } }; A.BottomButtons_build_closure.prototype = { call$0() { var t1 = this.$this; A.handleEntitiesActions(A._setArrayType([t1.entity], type$.JSArray_legacy_BaseEntity), t1.action1, false); }, $signature: 1 }; A.BottomButtons_build_closure0.prototype = { call$0() { var t1 = this.$this; A.handleEntitiesActions(A._setArrayType([t1.entity], type$.JSArray_legacy_BaseEntity), t1.action2, false); }, $signature: 1 }; A.AppButton.prototype = { build$1(_, context) { var t2, t3, button, _this = this, _null = null, t1 = _this.color; if (t1 == null) t1 = A.Theme_of(context).colorScheme.secondary; t1 = A.ElevatedButton_styleFrom(_null, _null, _null, 4, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(14, 14, 14, 14), t1, _null, new A.RoundedRectangleBorder(A.BorderRadius$circular(2), B.BorderSide_0CF), _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null); t2 = _this.iconData; t3 = _this.label; t2 = t2 != null ? new A.IconText(t3, t2, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.MainAxisAlignment_2, _null) : new A.SizedBox(_null, 24, A.Text$(t3, _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null); button = A.ElevatedButton$(t2, _this.onPressed, t1); t1 = _this.width; return new A.Padding(B.EdgeInsets_0_20_0_0, t1 == null ? button : new A.SizedBox(t1, _null, button, _null), _null); } }; A.ChangeLayoutBanner.prototype = { createState$0() { return new A._ChangeLayoutBannerState(B._StateLifecycle_0); } }; A._ChangeLayoutBannerState.prototype = { build$1(_, context) { var t2, t3, message, t4, t5, t6, t7, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), calculatedLayout = A.calculateLayout(context); if (!_this._dismissedChange) { t2 = _this._widget; t3 = t2.appLayout; if (t3 === B.AppLayout_mobile && t2.suggestedLayout === B.AppLayout_mobile && calculatedLayout === B.AppLayout_desktop) { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "change_to_desktop_layout"); message = t2 == null ? "" : t2; } else if (t3 === B.AppLayout_desktop && t2.suggestedLayout === B.AppLayout_desktop && calculatedLayout === B.AppLayout_mobile) { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "change_to_mobile_layout"); message = t2 == null ? "" : t2; } else message = _null; } else message = _null; t2 = message == null; t3 = !t2; t2 = t2 ? 0 : 50; t4 = A.Duration$(0, 0, 0, 500, 0, 0); t5 = A.Expanded$(new A.IconText(message, B.IconData_58173_MaterialIcons_null_false, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), 1); t6 = t1.get$dismiss(); t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "change"); if (t1 == null) t1 = ""; t7 = type$.JSArray_legacy_Widget; return A.SafeArea$(t3, A.Column$(A._setArrayType([A.AnimatedContainer$(A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_10_0_0_0, A.Row$(A._setArrayType([t5, new A.AppTextButton(t6, new A._ChangeLayoutBannerState_build_closure(_this), false, B.Color_4294967295, _null), new A.AppTextButton(t1, new A._ChangeLayoutBannerState_build_closure0(_this, store, context), false, B.Color_4294967295, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_0, B.MaterialColor_Map_JNZaB_4294940672, 0, _null, _null, _null, _null, _null, B.MaterialType_0), _null, B.Cubic_oKc, _null, t4, t2, _null, _null, _null, _null), A.Expanded$(_this._widget.child, 1)], t7), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.EdgeInsets_0_0_0_0, t3); } }; A._ChangeLayoutBannerState_build_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._ChangeLayoutBannerState_build__closure0(t1)); }, $signature: 1 }; A._ChangeLayoutBannerState_build__closure0.prototype = { call$0() { return this.$this._dismissedChange = true; }, $signature: 21 }; A._ChangeLayoutBannerState_build_closure0.prototype = { call$0() { var _null = null, layout = this.$this._widget.suggestedLayout === B.AppLayout_desktop ? B.AppLayout_mobile : B.AppLayout_desktop, t1 = this.store, t2 = A.UpdateUserPreferences$(layout, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1.get$_dispatchers()[0].call$1(t2); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._ChangeLayoutBannerState_build__closure(layout, t1)); }, $signature: 1 }; A._ChangeLayoutBannerState_build__closure.prototype = { call$1(duration) { var t1 = this.store; if (this.layout === B.AppLayout_mobile) t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); else t1.get$_dispatchers()[0].call$1(new A.ViewMainScreen()); }, $signature: 36 }; A.ConfirmEmail.prototype = { build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, state = t2.state, t3 = A.Theme_of(context).cardColor; if (state.isLoading || state.isSaving) t1 = new A.LoadingIndicator(_null, false, _null); else { t4 = A.Image$asset("assets/images/icon.png", 80, _null); t1.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "confirm_your_email_address"); if (t7 == null) t7 = ""; t7 = A.Text$(t7, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null); t8 = state.userCompanyStates; t9 = state.uiState.selectedCompanyIndex; t9 = t8._list[t9].userCompany.user.email; t8 = t2.onResendPressed; t6 = J.$index$asx(t5.$index(0, t6), "resend_email"); t5 = t6 == null ? "" : t6; t8 = A.TextButton$(false, A.Text$(t5.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t8, _null); t5 = A.TextButton$(false, A.Text$(t1.get$changeEmail().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ConfirmEmail_build_closure(this, context, t1), _null); t6 = t2.onRefreshPressed; t6 = A.TextButton$(false, A.Text$(t1.get$refreshData().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t6, _null); t2 = t2.onLogoutPressed; t10 = type$.JSArray_legacy_Widget; t10 = new A.Padding(B.EdgeInsets_20_20_20_20, A.Column$(A._setArrayType([t4, new A.SizedBox(_null, 60, _null, _null), t7, new A.Padding(B.EdgeInsets_0_16_0_80, new A.HelpText(t9, _null), _null), A.Wrap$(B.WrapAlignment_2, A._setArrayType([new A.Padding(B.EdgeInsets_0_0_0_16, t8, _null), new A.Padding(B.EdgeInsets_0_0_0_16, t5, _null), new A.Padding(B.EdgeInsets_0_0_0_16, t6, _null), new A.Padding(B.EdgeInsets_0_0_0_16, A.TextButton$(false, A.Text$(t1.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, _null), _null)], t10), B.Clip_0, B.WrapCrossAlignment_0, 0)], t10), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, B.VerticalDirection_1), _null); t1 = t10; } return A.Material$(B.Duration_200000, true, _null, t1, B.Clip_0, t3, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.ConfirmEmail_build_closure.prototype = { call$0() { var t1 = this.context; A.passwordCallback(false, new A.ConfirmEmail_build__closure(this.$this, t1, this.localization), t1, false); }, $signature: 1 }; A.ConfirmEmail_build__closure.prototype = { call$2(password, idToken) { var t1 = this.context, t2 = this.localization; A.fieldCallback(new A.ConfirmEmail_build___closure(this.$this, t1, password, idToken), t1, t2.get$email(t2), null, null, t2.get$changeEmail()); }, $signature: 38 }; A.ConfirmEmail_build___closure.prototype = { call$1(value) { var _this = this; _this.$this.viewModel.onChangeEmail.call$4(_this.context, value, _this.password, _this.idToken); }, $signature: 11 }; A.ConfirmEmailBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ConfirmEmailBuilder_build_closure(), A.confirm_email_vm_ConfirmEmailVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ConfirmEmailVM); } }; A.ConfirmEmailBuilder_build_closure.prototype = { call$2(context, viewModel) { return new A.ConfirmEmail(viewModel, null); }, $signature: 2112 }; A.ConfirmEmailVM.prototype = {}; A.ConfirmEmailVM_fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 1 }; A.ConfirmEmailVM_fromStore_closure1.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UserLogout()); }, $signature: 1 }; A.ConfirmEmailVM_fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.ResendConfirmation()); }, $signature: 1 }; A.ConfirmEmailVM_fromStore_closure2.prototype = { call$4(context, email, password, idToken) { var user, completer, t1 = this.store, t2 = A._lateReadCheck(t1.__Store__state, "_state"), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; user = t3._list[t2].userCompany.user.rebuild$1(new A.ConfirmEmailVM_fromStore__closure(email)); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, user, password, idToken)); }, $signature: 725 }; A.ConfirmEmailVM_fromStore__closure.prototype = { call$1(b) { b.get$_user_model$_$this()._user_model$_email = this.email; return b; }, $signature: 77 }; A.CopyToClipboard.prototype = { build$1(_, context) { var widget, t2, onTap, _this = this, _null = null, t1 = _this.value; if ((t1 == null ? "" : t1).length === 0) return new A.SizedBox(_null, _null, _null, _null); widget = _this.child; if (widget == null) { t2 = _this.prefix; widget = A.Text$(t2 != null ? t2 + ": " + A.S(t1) : t1, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); } onTap = new A.CopyToClipboard_build_closure(_this, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization)); t1 = _this.onLongPress; if (_this.showBorder) return new A.ConstrainedBox(new A.BoxConstraints(0, 180, 0, 1 / 0), A.OutlinedButton$(widget, t1, onTap, _null), _null); else return A.InkWell$(false, _null, true, widget, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, onTap, _null, _null, _null, _null, _null, _null); }, get$value(receiver) { return this.value; } }; A.CopyToClipboard_build_closure.prototype = { call$0() { var t2, t1 = this.$this.value; A.Clipboard_setData(new A.ClipboardData(t1)); t2 = this.localization.get$copiedToClipboard(); t1.toString; A.showToast(B.JSString_methods.replaceFirst$2(t2, ":value", A.stringReplaceAllUnchecked(t1, "\n", " "))); }, $signature: 1 }; A.DesktopSessionTimeout.prototype = { createState$0() { return new A._DesktopSessionTimeoutState(B._StateLifecycle_0); } }; A._DesktopSessionTimeoutState.prototype = { initState$0() { this.super$State$initState(); this._desktop_session_timeout$_timer = A.Timer_Timer$periodic(A.Duration$(0, 0, 0, 0, 1, 0), new A._DesktopSessionTimeoutState_initState_closure(this)); }, dispose$0(_) { var t1 = this._desktop_session_timeout$_timer; if (t1 != null) t1.cancel$0(0); this._desktop_session_timeout$_timer = null; this.super$State$dispose(0); }, build$1(_, context) { var t2, t3, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this._isWarned) { t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t3 = J.$index$asx(t2.$index(0, t1), "session_about_to_expire"); if (t3 == null) t3 = ""; t3 = A.Expanded$(A.Text$(t3, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); t1 = J.$index$asx(t2.$index(0, t1), "stay_logged_in"); if (t1 == null) t1 = ""; t2 = type$.JSArray_legacy_Widget; return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_16_8_16_8, A.Row$(A._setArrayType([t3, A.TextButton$(false, A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A._DesktopSessionTimeoutState_build_closure(_this, context), _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), A.Expanded$(_this._widget.child, 1)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, B.MaterialColor_Map_JNZaB_4294940672, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } return _this._widget.child; } }; A._DesktopSessionTimeoutState_initState_closure.prototype = { call$1(timer) { var store, state, t3, sessionTimeout, t4, sessionLength, t1 = this.$this, t2 = t1._framework$_element; t2.toString; store = A.StoreProvider_of(t2, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; sessionTimeout = t2[t3].userCompany.company.sessionTimeout; if (sessionTimeout !== 0) { t4 = t1._framework$_element; t4.toString; t4 = A.getLayout(t4) === B.AppLayout_mobile; } else t4 = true; if (t4) return; sessionLength = Date.now() - t2[t3].lastUpdated; if (sessionLength > sessionTimeout) store.get$_dispatchers()[0].call$1(new A.UserLogout()); else if (sessionLength > sessionTimeout - 120000) t1.setState$1(new A._DesktopSessionTimeoutState_initState__closure(t1)); }, $signature: 379 }; A._DesktopSessionTimeoutState_initState__closure.prototype = { call$0() { this.$this._isWarned = true; }, $signature: 1 }; A._DesktopSessionTimeoutState_build_closure.prototype = { call$0() { var store = A.StoreProvider_of(this.context, type$.legacy_AppState), t1 = new A._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new A._DesktopSessionTimeoutState_build__closure(this.$this), type$.Null); store.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t1, type$._AsyncCompleter_Null), false, false, false)); }, $signature: 1 }; A._DesktopSessionTimeoutState_build__closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._DesktopSessionTimeoutState_build___closure(t1)); }, $signature: 3 }; A._DesktopSessionTimeoutState_build___closure.prototype = { call$0() { this.$this._isWarned = false; }, $signature: 1 }; A.MessageDialog.prototype = { build$1(_, context) { var t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.Text$(_this.message, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), t3 = type$.JSArray_legacy_Widget, t4 = A._setArrayType([], t3), t5 = _this.secondaryActions; if (t5 != null) { t6 = A._arrayInstanceType(t5)._eval$1("MappedListIterable<1,Padding*>"); t4.push(A.Row$(A.List_List$of(new A.MappedListIterable(t5, new A.MessageDialog_build_closure(), t6), true, t6._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); } t5 = _this.dismissLabel; if (t5 == null) t5 = t1.get$dismiss(); t4.push(new A.Padding(B.EdgeInsets_0_0_10_0, A.TextButton$(false, A.Text$(t5.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MessageDialog_build_closure0(_this, context), _null), _null)); if (_this.onDiscard != null) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "discard_changes"); if (t1 == null) t1 = ""; t4.push(A.TextButton$(true, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MessageDialog_build_closure1(_this, context), _null)); } return new A.Padding(new A.EdgeInsets(16, 24, 16, 24), A.Column$(A._setArrayType([A.PointerInterceptor$(A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_28_28_28_28, A.Column$(A._setArrayType([new A.SizedBox(_null, 20, _null, _null), t2, new A.SizedBox(_null, 40, _null, _null), A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_0)), A.Expanded$(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null); }, get$message(receiver) { return this.message; } }; A.MessageDialog_build_closure.prototype = { call$1(action) { return new A.Padding(B.EdgeInsets_0_0_16_0, action, null); }, $signature: 2114 }; A.MessageDialog_build_closure0.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); var t1 = this.$this.onDismiss; if (t1 != null) t1.call$0(); }, $signature: 1 }; A.MessageDialog_build_closure1.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); this.$this.onDiscard.call$0(); }, $signature: 1 }; A.ErrorDialog.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, t1 = {}, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t3 = this.error, errorStr = t1.errorStr = B.JSString_methods.trim$0(A.S(t3)); if (B.JSString_methods.startsWith$1(errorStr, "<")) { errorStr = A.convert(errorStr); t1.errorStr = errorStr; t4 = errorStr; } else t4 = errorStr; if (type$.legacy_Error._is(t3)) t4 = t1.errorStr = t4 + ("\n\n" + J.toString$0$(t3.get$stackTrace())); t5 = A.Text$(t2.get$error(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = t3 != null ? A.SelectableText$(t4, _null) : new A.SizedBox(_null, _null, _null, _null); t4 = A._setArrayType([], type$.JSArray_legacy_Widget); if (this.clearErrorOnDismiss && true) t4.push(A.TextButton$(false, A.Text$(t2.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ErrorDialog_build_closure(context, store), _null)); t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "copy"); if (t6 == null) t6 = ""; t4.push(A.TextButton$(false, A.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ErrorDialog_build_closure0(t1), _null)); t4.push(A.TextButton$(true, A.Text$(t2.get$dismiss().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ErrorDialog_build_closure1(this, store, context), _null)); return A.PointerInterceptor$(A.AlertDialog$(t4, B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, t5)); } }; A.ErrorDialog_build_closure.prototype = { call$0() { A.confirmCallback(false, new A.ErrorDialog_build__closure(this.store), this.context, null, false, null); }, $signature: 1 }; A.ErrorDialog_build__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UserLogout()); }, $signature: 11 }; A.ErrorDialog_build_closure0.prototype = { call$0() { A.Clipboard_setData(new A.ClipboardData(this._box_0.errorStr)); }, $signature: 1 }; A.ErrorDialog_build_closure1.prototype = { call$0() { if (this.$this.clearErrorOnDismiss) this.store.get$_dispatchers()[0].call$1(new A.ClearLastError()); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.HealthCheckDialog.prototype = { createState$0() { return new A._HealthCheckDialogState(B._StateLifecycle_0); } }; A._HealthCheckDialogState.prototype = { didChangeDependencies$0() { if (this._response == null) this.runCheck$0(); this.super$State$didChangeDependencies(); }, runCheck$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, webClient, state, t1, t2, exception, credentials, $async$exception; var $async$runCheck$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$self.setState$1(new A._HealthCheckDialogState_runCheck_closure($async$self)); webClient = new A.WebClient(); t1 = $async$self._framework$_element; t1.toString; state = A._lateReadCheck(A.StoreProvider_of(t1, type$.legacy_AppState).__Store__state, "_state"); $async$handler = 3; t1 = state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; $async$goto = 6; return A._asyncAwait(J.$get$3$rawResponse$x(webClient, t2._list[t1].userCompany.account.defaultUrl + "/update?secret=", "", true), $async$runCheck$0); case 6: // returning from await. $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally credentials = J.get$credentials$z(state); J.$get$2$x(webClient, credentials.url + "/health_check", credentials.token).then$1$1(0, new A._HealthCheckDialogState_runCheck_closure0($async$self), type$.Null).catchError$1(new A._HealthCheckDialogState_runCheck_closure1($async$self)); // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$runCheck$0, $async$completer); }, clearCache$0() { var t1, store, state, credentials, _this = this; _this.setState$1(new A._HealthCheckDialogState_clearCache_closure(_this)); t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); credentials = state.get$credentials(state); new A.WebClient().$get$2(0, credentials.url + "/ping?clear_cache=true", credentials.token).then$1$1(0, new A._HealthCheckDialogState_clearCache_closure0(_this, store), type$.Null).catchError$1(new A._HealthCheckDialogState_clearCache_closure1(_this)); }, build$1(_, context) { var webPhpVersion, cliPhpVersion, t3, t4, t5, t6, t7, t8, _this = this, _null = null, _s14_ = "(\\d+\\.\\d+.\\d+)", state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._response; t2 = t2 == null ? _null : t2.phpVersion; t2 = t2 == null ? _null : t2.currentPHPVersion; if (t2 == null) t2 = ""; webPhpVersion = A.RegExp_RegExp(_s14_, true, false, false, false).stringMatch$1(t2); t2 = _this._response; t2 = t2 == null ? _null : t2.phpVersion; t2 = t2 == null ? _null : t2.currentPHPCLIVersion; if (t2 == null) t2 = ""; cliPhpVersion = A.RegExp_RegExp(_s14_, true, false, false, false).stringMatch$1(t2); t2 = _this._response; if (t2 == null) t2 = A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_0_16_0_16, A.LinearProgressIndicator$(), _null), A.Text$(t1.get$loading() + "...", _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); else { t3 = t2.emailDriver; t4 = t2.queue; t2 = B.JSString_methods.replaceFirst$2(t2.pdfEngine, " Generator", ""); t5 = _this._response; t6 = t5.systemHealth; t7 = t5.dbCheck; t5 = t5.phpVersion; t8 = A.S(webPhpVersion); t8 = webPhpVersion == cliPhpVersion ? "v" + t8 : "Web: v" + t8 + "\nCLI: v" + A.S(cliPhpVersion); t8 = A._setArrayType([new A._HealthListTile("System Health", t6, false, "Email: " + t3 + "\nQueue: " + t4 + "\nPDF: " + t2, _null, _null), new A._HealthListTile("Database Check", t7, false, _null, _null, _null), new A._HealthListTile("PHP Version", t5.isOkay, false, t8, _null, _null)], type$.JSArray_legacy_Widget); t2 = _this._response.filePermissions; if (t2 !== "Ok") { t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t4 = !t3._list[t4].userCompany.account.disableAutoUpdate; t3 = t4; } else t3 = false; if (t3) t8.push(new A._HealthListTile("Invalid File Permissions", false, false, t2, "https://invoiceninja.github.io/docs/self-host-installation/#file-permissions", _null)); if (_this._response.queue === "sync") t8.push(new A._HealthListTile("Queue not enabled", true, true, "Enable the queue for improved performance", "https://invoiceninja.github.io/docs/self-host-installation/#final-setup-steps", _null)); if (_this._response.phantomEnabled) t8.push(new A._HealthListTile("SnapPDF not enabled", true, true, "Use SnapPDF for faster PDF generation", "https://invoiceninja.github.io/docs/self-host-troubleshooting/#pdf-conversion-issues", _null)); if (_this._response.trailingSlash) t8.push(new A._HealthListTile("APP_URL has trailing slash", true, true, "Remove the slash in the .env file", _null, _null)); t2 = A.Column$(t8, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } if (_this._response == null) t1 = A._setArrayType([], type$.JSArray_legacy_Widget); else { t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t1.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "clear_cache"); if (t5 == null) t5 = ""; t5 = A.TextButton$(false, A.Text$(t5.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._HealthCheckDialogState_build_closure(_this), _null); t4 = J.$index$asx(t3.$index(0, t4), "refresh"); t3 = t4 == null ? "" : t4; t1 = A._setArrayType([t5, A.TextButton$(false, A.Text$(t3.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._HealthCheckDialogState_build_closure0(_this), _null), A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._HealthCheckDialogState_build_closure1(context), _null)], type$.JSArray_legacy_Widget); } return A.AlertDialog$(t1, B.EdgeInsets_0_0_0_0, _null, t2, B.EdgeInsets_24_20_24_24, _null, _null, _null); } }; A._HealthCheckDialogState_runCheck_closure.prototype = { call$0() { this.$this._response = null; }, $signature: 1 }; A._HealthCheckDialogState_runCheck_closure0.prototype = { call$1(response) { var t1 = this.$this; t1.setState$1(new A._HealthCheckDialogState_runCheck__closure(t1, response)); }, $signature: 7 }; A._HealthCheckDialogState_runCheck__closure.prototype = { call$0() { this.$this._response = $.$get$serializers().deserializeWith$1$2($.$get$_$healthCheckResponseSerializer(), this.response, type$.legacy_HealthCheckResponse); }, $signature: 1 }; A._HealthCheckDialogState_runCheck_closure1.prototype = { call$1(error) { var t1 = this.$this._framework$_element; t1.toString; A.showErrorDialog(false, t1, error); }, $signature: 7 }; A._HealthCheckDialogState_clearCache_closure.prototype = { call$0() { this.$this._response = null; }, $signature: 1 }; A._HealthCheckDialogState_clearCache_closure0.prototype = { call$1(response) { var t1 = new A._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new A._HealthCheckDialogState_clearCache__closure(this.$this), type$.Null); this.store.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t1, type$._AsyncCompleter_Null), false, false, false)); }, $signature: 7 }; A._HealthCheckDialogState_clearCache__closure.prototype = { call$1(value) { this.$this.runCheck$0(); }, $signature: 3 }; A._HealthCheckDialogState_clearCache_closure1.prototype = { call$1(error) { var t1 = this.$this._framework$_element; t1.toString; A.showErrorDialog(false, t1, error); }, $signature: 7 }; A._HealthCheckDialogState_build_closure.prototype = { call$0() { return this.$this.clearCache$0(); }, $signature: 0 }; A._HealthCheckDialogState_build_closure0.prototype = { call$0() { return this.$this.runCheck$0(); }, $signature: 0 }; A._HealthCheckDialogState_build_closure1.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._HealthListTile.prototype = { build$1(_, context) { var t3, t4, _this = this, _null = null, t1 = A.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t2 = _this.subtitle; if (!(t2 != null)) if (_this.isWarning) t2 = "Warning"; else t2 = _this.isValid ? "Passed" : "Failed"; t2 = A.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.isWarning; if (t3) t4 = B.IconData_59083_MaterialIcons_null_false; else t4 = _this.isValid ? B.IconData_57690_MaterialIcons_null_false : B.IconData_57912_MaterialIcons_null_false; if (t3) t3 = B.MaterialColor_Map_JNZaB_4294940672; else t3 = _this.isValid ? B.MaterialColor_Map_JNEaM_4283215696 : B.MaterialColor_Map_JNc9P_4294198070; t3 = A.Icon$(t4, t3, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _this.url != null ? new A._HealthListTile_build_closure(_this) : _null, false, _null, _null, t2, _null, t1, t3, _null); } }; A._HealthListTile_build_closure.prototype = { call$0() { return A.launch(this.$this.url, null, false); }, $signature: 26 }; A.LoadingDialog.prototype = { build$1(_, context) { var _null = null; return A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_16_16_16_16, A.Text$(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$loading() + "...", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.Padding(B.EdgeInsets_16_16_16_16, new A.SizedBox(_null, 4, A.LinearProgressIndicator$(), _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }; A.multiselectDialog_closure.prototype = { call$1(context) { var _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "add_column"); if (t1 == null) t1 = ""; return A.MultiSelectList$(t1, _this.defaultSelected, true, false, new A.multiselectDialog__closure(_this.onSelected), _this.options, null, _this.selected); }, $signature: 2116 }; A.multiselectDialog__closure.prototype = { call$1(values) { return this.onSelected.call$1(values); }, $signature: 219 }; A.MultiSelectList.prototype = { createState$0() { return new A.MultiSelectListState(B._StateLifecycle_0); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); } }; A.MultiSelectListState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget.selected; t1 = J.get$isNotEmpty$asx(t1 == null ? A._setArrayType([], type$.JSArray_legacy_String) : t1); t2 = _this._widget; _this.selected = t1 ? t2.selected : t2.defaultSelected; _this._multiselect_dialog$_controller = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { this._multiselect_dialog$_controller.dispose$0(0); this.super$State$dispose(0); }, lookupOption$1(value) { var t1, parts; value = J.replaceFirst$2$s(value, "$", ""); t1 = this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); parts = value.split("."); if (parts.length === 1 || J.$eq$(parts[0], this._widget.prefix)) return t1.lookup$1(B.JSArray_methods.get$last(parts)); else return B.JSString_methods.$add(J.$add$ansx(t1.lookup$1(parts[0]), " "), t1.lookup$1(parts[1])); }, build$1(_, context) { var keys, t4, t5, t6, column, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = type$.legacy_String, options = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2), t3 = _this._widget.options; t3.toString; new A.WhereIterable(t3, new A.MultiSelectListState_build_closure(_this), A._arrayInstanceType(t3)._eval$1("WhereIterable<1>")).forEach$1(0, new A.MultiSelectListState_build_closure0(_this, state, options)); t3 = options.$ti._eval$1("LinkedHashMapKeyIterable<1>"); keys = A.List_List$of(new A.LinkedHashMapKeyIterable(options, t3), true, t3._eval$1("Iterable.E")); B.JSArray_methods.sort$1(keys, new A.MultiSelectListState_build_closure1(_this)); t3 = A.getLayout(context) === B.AppLayout_mobile ? 17976931348623157e292 : 400; t4 = _this._widget.addTitle; t5 = A._arrayInstanceType(keys)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t2 = A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(keys, new A.MultiSelectListState_build_closure2(options), t5), true, t5._eval$1("ListIterable.E")), _null, t4, new A.MultiSelectListState_build_closure3(_this), _null, false, _null, t2); t4 = _this._multiselect_dialog$_controller; t5 = J.asMap$0$ax(_this.selected); t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([t2, new A.SizedBox(_null, 20, _null, _null), A.Expanded$(A.ReorderableListView$(t5.get$entries(t5).map$1$1(0, new A.MultiSelectListState_build_closure4(_this, state, context), type$.legacy_Padding).toList$0(0), new A.MultiSelectListState_build_closure5(_this), t4), 1)], t6); if (!_this._widget.isDialog) t4.push(new A.Padding(B.EdgeInsets_0_10_0_0, A.Row$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$reset(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MultiSelectListState_build_closure6(_this), _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null), _null)); column = A.Container$(_null, A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3); if (_this._widget.isDialog) { t2 = t1.get$editColumns(); t3 = A.Text$(t1.get$editColumns(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$reset(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MultiSelectListState_build_closure7(_this), _null), A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MultiSelectListState_build_closure8(context), _null), A.TextButton$(false, A.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.MultiSelectListState_build_closure9(_this, context), _null)], t6), B.EdgeInsets_0_0_0_0, _null, column, B.EdgeInsets_24_20_24_24, _null, t2, t3); t1 = t3; } else t1 = column; return t1; } }; A.MultiSelectListState_build_closure.prototype = { call$1(option) { return !J.contains$1$asx(this.$this.selected, option); }, $signature: 16 }; A.MultiSelectListState_build_closure0.prototype = { call$1(option) { var columnTitle, t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; columnTitle = t2._list[t1].userCompany.company.getCustomFieldLabel$1(option); t1 = columnTitle.length === 0 ? this.$this.lookupOption$1(option) : columnTitle; this.options.$indexSet(0, option, t1); }, $signature: 11 }; A.MultiSelectListState_build_closure1.prototype = { call$2(a, b) { var t1 = this.$this; return B.JSString_methods.compareTo$1(t1.lookupOption$1(a).toLowerCase(), t1.lookupOption$1(b).toLowerCase()); }, $signature: 19 }; A.MultiSelectListState_build_closure2.prototype = { call$1(option) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.options.$index(0, option), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.legacy_String); }, $signature: 43 }; A.MultiSelectListState_build_closure3.prototype = { call$1(value) { var t1, t2; if (A.S(value).length === 0) return; t1 = this.$this; if (J.contains$1$asx(t1.selected, value)) return; t1.setState$1(new A.MultiSelectListState_build__closure3(t1, value)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 7 }; A.MultiSelectListState_build__closure3.prototype = { call$0() { J.add$1$ax(this.$this.selected, this.value); }, $signature: 1 }; A.MultiSelectListState_build_closure4.prototype = { call$1(entry) { var columnTitle, t3, t4, _null = null, option = entry.get$value(entry), t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; columnTitle = t2._list[t1].userCompany.company.getCustomFieldLabel$1(option); t1 = A.S(entry.get$key(entry)); t2 = A.S(entry.get$value(entry)); t3 = this.$this; t4 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A.MultiSelectListState_build__closure2(t3, option), B.EdgeInsets_8_8_8_8, _null, _null, _null); t3 = columnTitle.length === 0 ? t3.lookupOption$1(option) : columnTitle; return new A.Padding(B.EdgeInsets_10_3_10_3, A.Row$(A._setArrayType([t4, new A.SizedBox(20, _null, _null, _null), A.Expanded$(A.Text$(t3, _null, _null, _null, _null, _null, A.Theme_of(this.context).textTheme.titleMedium, B.TextAlign_0, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.ValueKey("__" + t1 + "_" + t2 + "__", type$.ValueKey_legacy_String)); }, $signature: 2119 }; A.MultiSelectListState_build__closure2.prototype = { call$0() { var t2, t1 = this.$this; t1.setState$1(new A.MultiSelectListState_build___closure(t1, this.option)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 1 }; A.MultiSelectListState_build___closure.prototype = { call$0() { return J.remove$1$ax(this.$this.selected, this.option); }, $signature: 21 }; A.MultiSelectListState_build_closure5.prototype = { call$2(oldIndex, newIndex) { var t2, t3, t1 = {}; t1.newIndex = newIndex; t2 = this.$this; t3 = newIndex > J.get$length$asx(t2.selected) ? t1.newIndex = J.get$length$asx(t2.selected) : newIndex; if (oldIndex < t3) t1.newIndex = t3 - 1; t2.setState$1(new A.MultiSelectListState_build__closure1(t1, t2, oldIndex)); t1 = t2._widget; if (t1.liveChanges) t1.onSelected$1(t2.selected); }, $signature: 147 }; A.MultiSelectListState_build__closure1.prototype = { call$0() { var t1 = this.$this, t2 = this.oldIndex, field = J.$index$asx(t1.selected, t2); J.removeAt$1$ax(t1.selected, t2); J.insert$2$ax(t1.selected, this._box_0.newIndex, field); }, $signature: 1 }; A.MultiSelectListState_build_closure6.prototype = { call$0() { var t2, t1 = this.$this; t1.setState$1(new A.MultiSelectListState_build__closure0(t1)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 1 }; A.MultiSelectListState_build__closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.defaultSelected; t2 = A._setArrayType(t2.slice(0), A.instanceType(t2)); return t1.selected = t2; }, $signature: 703 }; A.MultiSelectListState_build_closure7.prototype = { call$0() { var t2, t1 = this.$this; t1.setState$1(new A.MultiSelectListState_build__closure(t1)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 1 }; A.MultiSelectListState_build__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.defaultSelected; t2 = A._setArrayType(t2.slice(0), A.instanceType(t2)); return t1.selected = t2; }, $signature: 703 }; A.MultiSelectListState_build_closure8.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; A.MultiSelectListState_build_closure9.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); var t1 = this.$this; t1._widget.onSelected$1(t1.selected); }, $signature: 1 }; A.DismissibleEntity.prototype = { build$1(_, context) { var t2, t3, widget, t4, t5, t6, t7, t8, t9, _this = this, t1 = _this.entity; if (!_this.userCompany.canEditEntity$1(t1)) return _this.child; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").getUIState$1(t1.get$entityType()).get$listUIState().selectedIds; t3 = _this.isSelected && _this.showCheckbox && _this.isDismissible && t3 == null && !t1.get$entityType().get$isSetting(); widget = new A.SelectedIndicator(new A.ConstrainedBox(new A.BoxConstraints(0, 1 / 0, 60, 1 / 0), _this.child, null), t3, false, null); if (!_this.isDismissible) return widget; t3 = A.S(t1.get$entityType()); t4 = t1.get$id(t1); if (!t1.get$isArchived() && !t1.get$isDeleted(t1)) t5 = "active"; else t5 = t1.get$isArchived() ? "archived" : "deleted"; t6 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([], t6); if (_this.showCheckbox) { t2.toString; t8 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "select"); if (t8 == null) t8 = ""; t7.push(A.SlidableAction$(B.MaterialColor_Map_JN0Sr_4278228616, B.Color_4294967295, B.IconData_57687_MaterialIcons_null_false, t8, new A.DismissibleEntity_build_closure(_this))); } t7.push(A.SlidableAction$(B.Color_1929379840, B.Color_4294967295, B.IconData_58372_MaterialIcons_null_false, t2.get$more(), new A.DismissibleEntity_build_closure0(_this))); t7 = A.ActionPane$(t7, B.DrawerMotion_null); t8 = !t1.get$isArchived() && !t1.get$isDeleted(t1); t9 = t2.localeCode; if (t8) { t8 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t9), "archive"); if (t8 == null) t8 = ""; t8 = A.SlidableAction$(B.MaterialColor_Map_JNZaB_4294940672, B.Color_4294967295, B.IconData_57489_MaterialIcons_null_false, t8, new A.DismissibleEntity_build_closure1(_this)); } else { t8 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t9), "restore"); if (t8 == null) t8 = ""; t8 = A.SlidableAction$(B.MaterialColor_Map_JNwaj_4280391411, B.Color_4294967295, B.IconData_58676_MaterialIcons_null_false, t8, new A.DismissibleEntity_build_closure2(_this)); } t6 = A._setArrayType([t8], t6); if (!t1.get$isDeleted(t1)) t6.push(A.SlidableAction$(B.MaterialColor_Map_JNc9P_4294198070, B.Color_4294967295, B.IconData_57785_MaterialIcons_null_false, t2.get$$delete(t2), new A.DismissibleEntity_build_closure3(_this))); return new A.Slidable(t7, A.ActionPane$(t6, B.DrawerMotion_null), widget, new A.ValueKey("__" + ("__" + t3 + "__" + t4 + "__") + "_" + t5 + "__", type$.ValueKey_String)); } }; A.DismissibleEntity_build_closure.prototype = { call$1(context) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_toggleMultiselect, false); return null; }, $signature: 30 }; A.DismissibleEntity_build_closure0.prototype = { call$1(context) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_more, false); return null; }, $signature: 30 }; A.DismissibleEntity_build_closure1.prototype = { call$1(context) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_archive, false); return null; }, $signature: 30 }; A.DismissibleEntity_build_closure2.prototype = { call$1(context) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_restore, false); return null; }, $signature: 30 }; A.DismissibleEntity_build_closure3.prototype = { call$1(context) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_delete, false); return null; }, $signature: 30 }; A.DocumentGrid.prototype = { build$1(_, context) { var t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([], t2); if (state.get$isHosted()) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = t4._list[t5].userCompany.account.plan === "enterprise"; t4 = t5; } else t4 = true; if (t4) { t4 = A._setArrayType([], t2); if (A.isAndroid() || A.isIOS()) { t1.toString; t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "take_picture"); if (t5 == null) t5 = ""; B.JSArray_methods.addAll$1(t4, A._setArrayType([A.Expanded$(new A.AppButton(_null, B.IconData_57648_MaterialIcons_null_false, t5, new A.DocumentGrid_build_closure(this), _null, _null), 1), new A.SizedBox(14, _null, _null, _null)], t2)); } t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "upload_file"); if (t1 == null) t1 = ""; t4.push(A.Expanded$(new A.AppButton(_null, B.IconData_58178_MaterialIcons_null_false, t1, new A.DocumentGrid_build_closure0(this), _null, _null), 1)); t3.push(new A.Padding(B.EdgeInsets_16_0_16_16, A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); } else t3.push(new A.Padding(new A.EdgeInsets(0, 30, 0, 30), A.Center$(A.Text$(t1.get$requiresAnEnterprisePlan(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 18, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), _null)); t3.push(new A.ListDivider(_null)); t3.push(new A.LayoutBuilder(new A.DocumentGrid_build_closure1(this), _null)); return new A.ScrollableListView(t3, _null, _null, _null); } }; A.DocumentGrid_build_closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, image, t1, $async$temp1, $async$temp2, $async$temp3; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 5; return A._asyncAwait(A.PermissionActions_request(B.Permission_1), $async$call$0); case 5: // returning from await. $async$goto = $async$result === B.PermissionStatus_1 ? 2 : 4; break; case 2: // then $async$goto = 6; return A._asyncAwait(new A.ImagePicker().pickImage$1$source(B.ImageSource_0), $async$call$0); case 6: // returning from await. image = $async$result; $async$goto = image != null && A._lateReadCheck(image.__XFile__path, "_path") != null ? 7 : 8; break; case 7: // then t1 = image.__XFile__path; $async$temp1 = $async$self.$this.onUploadDocument; $async$temp2 = A; $async$temp3 = "documents[]"; $async$goto = 10; return A._asyncAwait(new A.ImageCropper().cropImage$1$sourcePath(A._lateReadCheck(t1, "_path")), $async$call$0); case 10: // returning from await. $async$goto = 9; return A._asyncAwait($async$result.readAsBytes$0(), $async$call$0); case 9: // returning from await. $async$temp1.call$1($async$temp2.MultipartFile_MultipartFile$fromBytes($async$temp3, $async$result, B.JSArray_methods.get$last(A._lateReadCheck(t1, "_path").split("/")))); case 8: // join // goto join $async$goto = 3; break; case 4: // else $.$get$PermissionHandlerPlatform__instance().openAppSettings$0(); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A.DocumentGrid_build_closure0.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, multipartFile; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.pickFile(B.List_gkc, "documents[]", null), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) $async$self.$this.onUploadDocument.call$1(multipartFile); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A.DocumentGrid_build_closure1.prototype = { call$2(context, constraints) { var t1 = constraints.maxWidth, t2 = this.$this; t2 = J.map$1$1$ax(t2.documents._copy_on_write_list$_list, new A.DocumentGrid_build__closure(t2), type$.legacy_DocumentTile); return A.GridView$count((t1 / 2 - 8) / 200, A.List_List$of(t2, true, t2.$ti._eval$1("ListIterable.E")), 2, 0, 0, new A.EdgeInsets(6, 6, 6, 6), new A.NeverScrollableScrollPhysics(null), true, true); }, $signature: 311 }; A.DocumentGrid_build__closure.prototype = { call$1($document) { var t1 = this.$this; return new A.DocumentTile($document, t1.onDeleteDocument, t1.onViewExpense, null); }, $signature: 2123 }; A.DocumentTile.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = this.document, t3 = t2.name, t4 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_4_4_4_4, A.Card$(A.Column$(A._setArrayType([new A.DocumentPreview(t2, 110, _null), new A.Padding(B.EdgeInsets_4_4_4_4, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Column$(A._setArrayType([A.Text$(t3, _null, 1, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), A.Text$(A.formatDate(A.convertTimestampToDate(t2.createdAt).toIso8601String$0(), context, true, true, false) + "\n" + A.formatSize(t2.size), _null, 2, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.bodySmall, _null, _null, _null)], t4), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), new A.Align(B.Alignment_1_1, _null, _null, new A.Padding(B.EdgeInsets_0_22_0_0, A.PopupMenuButton$(_null, _null, true, _null, _null, new A.DocumentTile_build_closure(t1), new A.DocumentTile_build_closure0(this, t1, state, context), B.EdgeInsets_8_8_8_8, _null, type$.legacy_String), _null), _null)], t4), _null), _null)], t4), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, 4, _null, true, _null), _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, get$document(receiver) { return this.document; } }; A.DocumentTile_build_closure0.prototype = { call$1(value) { return this.$call$body$DocumentTile_build_closure(value); }, $call$body$DocumentTile_build_closure(value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.localization; if (value === t1.get$view(t1)) { t1 = $async$self.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; A.launch(t2._list[t1].userCompany.account.defaultUrl + ("/documents/" + $async$self.$this.document.hash) + "?inline=true", null, false); } else if (value === t1.get$download(t1)) { t1 = $async$self.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1]; A.launch(t1.userCompany.account.defaultUrl + ("/documents/" + $async$self.$this.document.hash), null, false); } else if (value === t1.get$$delete(t1)) { t1 = $async$self.context; A.confirmCallback(false, new A.DocumentTile_build__closure($async$self.$this, t1), t1, null, false, null); } else { t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), "view_expense"); if (value === (t1 == null ? J.$index$asx(t2.$index(0, "en"), "view_expense") : t1)) { t1 = $async$self.$this; t1.onViewExpense.call$1(t1.document); } } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 299 }; A.DocumentTile_build__closure.prototype = { call$1(_) { A.passwordCallback(false, new A.DocumentTile_build___closure(this.$this), this.context, false); }, $signature: 11 }; A.DocumentTile_build___closure.prototype = { call$2(password, idToken) { var t1 = this.$this; t1.onDeleteDocument.call$3(t1.document, password, idToken); }, $signature: 38 }; A.DocumentTile_build_closure.prototype = { call$1(context) { var _null = null, t1 = this.localization, t2 = type$.legacy_String; return A._setArrayType([A.PopupMenuItem$(new A.IconText(t1.get$view(t1), B.IconData_58458_MaterialIcons_null_false, _null, _null, _null), t1.get$view(t1), t2), A.PopupMenuItem$(new A.IconText(t1.get$download(t1), B.IconData_57857_MaterialIcons_null_false, _null, _null, _null), t1.get$download(t1), t2), A.PopupMenuItem$(new A.IconText(t1.get$$delete(t1), B.IconData_57785_MaterialIcons_null_false, _null, _null, _null), t1.get$$delete(t1), t2)], type$.JSArray_legacy_PopupMenuEntry_legacy_String); }, $signature: 402 }; A.DocumentPreview.prototype = { build$1(_, context) { var _this = this, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A._setArrayType(["png", "jpg", "jpeg"], type$.JSArray_legacy_String), t2 = _this.document, t3 = t2.type; if (B.JSArray_methods.contains$1(t1, t3)) { t1 = t2.preview; t2 = t2.url; t3 = type$.legacy_String; return A.CachedNetworkImage$(new A.DocumentPreview_build_closure(), B.BoxFit_2, _this.height, A.LinkedHashMap_LinkedHashMap$_literal(["X-API-TOKEN", state.get$credentials(state).token], t3, t3), B.ImageRenderMethodForWeb_1, t2, new A.ValueKey(t1, type$.ValueKey_legacy_String), new A.DocumentPreview_build_closure0(_this), 1 / 0); } return new A.SizedBox(1 / 0, _this.height, A.Icon$(A.getFileTypeIcon(t3), null, 40), null); }, get$document(receiver) { return this.document; } }; A.DocumentPreview_build_closure0.prototype = { call$2(context, url) { var _null = null; return A.Container$(_null, A.Center$(A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, this.$this.height, _null, _null, _null, _null, _null, _null); }, $signature: 2126 }; A.DocumentPreview_build_closure.prototype = { call$3(context, url, error) { var _null = null; return A.Text$(A.S(error) + ": " + A.S(url), _null, 6, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); }, $signature: 2127 }; A.EditScaffold.prototype = { build$1(_, context) { var account, t4, t5, isEnabled, t6, t7, upgradeMessage, isCancelEnabled, showUpgradeBanner, textStyle, showOverflow, t8, t9, _this = this, _null = null, _s24_ = "start_free_trial_message", _s21_ = "free_trial_ends_today", _s23_ = "free_trial_ends_in_days", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; account = t1[t3].userCompany.account; t4 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (A.getLayout(context) === B.AppLayout_mobile || !B.JSString_methods.startsWith$1(t2.currentRoute, "/settings") || t2.get$isEditing() || t2.settingsUIState.isChanged) if (!state.isSaving) { t5 = _this.entity; t5 = t5 == null ? _null : t5.get$isEditable(); t5 = t5 !== false; isEnabled = t5; } else isEnabled = false; else isEnabled = false; t5 = t1[t3].userCompany; if (t5.isOwner) if (t5.account.trialStarted.length === 0) { t4.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t4.localeCode; t7 = J.$index$asx(t5.$index(0, t6), _s24_); if (t7 == null) t7 = J.$index$asx(t5.$index(0, "en"), _s24_); upgradeMessage = t7; } else { t4.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t4.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "upgrade_to_paid_plan"); if (t7 == null) t7 = ""; upgradeMessage = t7; } else { t4.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t4.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "owner_upgrade_to_paid_plan"); upgradeMessage = t7 == null ? "" : t7; } t7 = account.trialDaysLeft; if (t7 > 0) if (t7 <= 1) { t4.toString; t6 = J.$index$asx(t5.$index(0, t6), _s21_); upgradeMessage = t6 == null ? J.$index$asx(t5.$index(0, "en"), _s21_) : t6; } else { t4.toString; t6 = J.$index$asx(t5.$index(0, t6), _s23_); t5 = t6 == null ? J.$index$asx(t5.$index(0, "en"), _s23_) : t6; upgradeMessage = J.replaceFirst$2$s(t5, ":count", B.JSInt_methods.toString$0(t7)); } if (!(!state.get$isHosted() || t1[t3].userCompany.account.plan === "enterprise" || t1[t3].userCompany.account.plan === "pro") || t1[t3].userCompany.account.trialDaysLeft > 0) if (B.JSArray_methods.contains$1(B.List_m5d, t2.get$baseSubRoute())) { if (!(!state.get$isHosted() || t1[t3].userCompany.account.plan === "enterprise" || t1[t3].userCompany.account.plan === "pro") && t1[t3].userCompany.account.trialDaysLeft <= 0 && isEnabled) { isEnabled = false; isCancelEnabled = true; } else isCancelEnabled = false; showUpgradeBanner = true; } else { showUpgradeBanner = t2.currentRoute === "/settings/account_management" && true; isCancelEnabled = false; } else { isCancelEnabled = B.JSString_methods.contains$1("company_gateways/edit", t2.get$baseSubRoute()) && true; showUpgradeBanner = false; } t2 = type$.JSArray_legacy_EntityAction; t5 = A._setArrayType([], t2); if (A.getLayout(context) === B.AppLayout_desktop) t6 = isEnabled && _this.onSavePressed != null || isCancelEnabled; else t6 = false; if (t6) t5.push(B.EntityAction_cancel); t5.push(B.EntityAction_save); t6 = _this.actions; t7 = t6 == null; t2 = t7 ? A._setArrayType([], t2) : t6; B.JSArray_methods.addAll$1(t5, new A.WhereIterable(t2, new A.EditScaffold_build_closure(), A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"))); textStyle = A.Theme_of(context).textTheme.bodyMedium.copyWith$1$color(state.get$headerTextColor()); showOverflow = A.getLayout(context) === B.AppLayout_desktop && _this.isFullscreen && _this.onActionPressed != null; if (state.get$companies().length === 0) t1 = new A.LoadingIndicator(_null, false, _null); else if (showUpgradeBanner && !A.isApple()) { t1 = t1[t3].userCompany.isOwner ? new A.EditScaffold_build_closure0(state) : _null; t1 = A.Column$(A._setArrayType([A.InkWell$(false, _null, true, new A.IconMessage(upgradeMessage, _null, B.Color_4293880832, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null), A.Expanded$(_this.body, 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } else { t1 = state.isSaving && A.getLayout(context) === B.AppLayout_desktop; t2 = _this.body; t1 = t1 ? new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([t2, A.LinearProgressIndicator$()], type$.JSArray_legacy_Widget), _null) : t2; } t2 = A.getLayout(context) === B.AppLayout_desktop ? new A.MenuDrawerBuilder(_null) : _null; t3 = A.getLayout(context); t6 = type$.JSArray_legacy_Widget; t8 = A._setArrayType([], t6); t9 = _this.title; if (showOverflow) t8.push(A.Text$(t9, _null, _null, _null, _null, _null, _null, _null, _null, _null)); else t8.push(new A.Flexible(1, B.FlexFit_1, A.Text$(t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t8.push(new A.SizedBox(8, _null, _null, _null)); if (A.getLayout(context) === B.AppLayout_desktop) if (_this.isFullscreen) { t9 = _this.entity; t9 = t9 != null && !t9.get$isNew(); } else t9 = false; else t9 = false; if (t9) { t9 = _this.entity; B.JSArray_methods.addAll$1(t8, A._setArrayType([A.EntityStatusChip$(state.getEntity$2(t9.get$entityType(), t9.get$id(t9)), false, 105), new A.SizedBox(8, _null, _null, _null)], t6)); } if (showOverflow) { t9 = type$.MappedListIterable_of_legacy_EntityAction_and_legacy_OutlinedButton; t8.push(A.Expanded$(new A.Align(B.Alignment_1_0, _null, _null, A.FocusTraversalGroup$(A.OverflowView$flexible(new A.EditScaffold_build_closure1(_this, t4, textStyle, state, t5), A.List_List$of(new A.MappedListIterable(t5, new A.EditScaffold_build_closure2(_this, t4, context, state, textStyle, store), t9), true, t9._eval$1("ListIterable.E")), 8), false, true, _null), _null), 1)); } t5 = A.Row$(t8, B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); if (showOverflow) t4 = A._setArrayType([], t6); else { t6 = A._setArrayType([], t6); if (state.isSaving) t6.push(new A.Padding(B.EdgeInsets_0_0_20_0, A.Center$(new A.SizedBox(26, 26, A.CircularProgressIndicator$(_null, B.Color_4294967295, _null, _null, _null, 4, _null, _null), _null), _null, _null), _null)); else { t8 = isEnabled && _this.onSavePressed != null; t4 = t4.get$cancel(t4); t9 = A.getLayout(context) === B.AppLayout_mobile ? _null : new A.EditScaffold_build_closure3(_this, store); t6.push(A.SaveCancelButtons$(t4, isCancelEnabled, t8, true, t9, new A.EditScaffold_build_closure4(_this), _this.saveLabel)); } if (!t7 && _this.onActionPressed != null) t6.push(A.PopupMenuButton$(_null, _null, isEnabled, A.Icon$(B.IconData_58372_MaterialIcons_null_false, _null, _null), _null, new A.EditScaffold_build_closure5(_this), new A.EditScaffold_build_closure6(_this, context), B.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction)); t4 = t6; } t6 = _this.isFullscreen && A.getLayout(context) === B.AppLayout_desktop ? _null : _this.appBarBottom; return new A.WillPopScope(A.FocusTraversalGroup$(A.Scaffold$(A.AppBar$(t4, _null, t3 === B.AppLayout_mobile, _null, _null, t6, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, 1, _null), _null, t1, _this.bottomNavigationBar, t2, _null, _this.floatingActionButton, B.C__EndDockedFabLocation), true, true, _null), new A.EditScaffold_build_closure7(), _null); }, get$body(receiver) { return this.body; } }; A.EditScaffold_build_closure.prototype = { call$1(action) { return action != null; }, $signature: 403 }; A.EditScaffold_build_closure7.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.EditScaffold_build_closure0.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; t2 = t1.uiState.selectedCompanyIndex; A.launch(t1.userCompanyStates._list[t2].userCompany.ninjaPortalUrl, null, false); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A.EditScaffold_build_closure2.prototype = { call$1(action) { var t3, t4, t0, _this = this, _null = null, label = action === B.EntityAction_save && _this.$this.saveLabel != null ? _this.$this.saveLabel : _this.localization.lookup$1(A.S(action)), t1 = _this.context, t2 = A.getLayout(t1) === B.AppLayout_desktop ? 60 : 0; if (A.getLayout(t1) === B.AppLayout_desktop) { t3 = A.getEntityActionIcon(action); t4 = _this.state; t3 = new A.IconText(label, t3, t4.isSaving ? _null : _this.textStyle, _null, _null); } else { t3 = _this.state; t4 = A.Text$(label, _null, _null, _null, _null, _null, t3.isSaving ? _null : _this.textStyle, _null, _null, _null); t0 = t4; t4 = t3; t3 = t0; } t1 = t4.isSaving ? _null : new A.EditScaffold_build__closure0(_this.$this, action, t1, _this.store); return A.OutlinedButton$(new A.ConstrainedBox(new A.BoxConstraints(t2, 1 / 0, 0, 1 / 0), t3, _null), _null, t1, _null); }, $signature: 404 }; A.EditScaffold_build__closure0.prototype = { call$0() { var t2, t3, _this = this, t1 = _this.action; if (t1 === B.EntityAction_cancel) { t1 = _this.$this.onCancelPressed; if (t1 != null) t1.call$1(_this.context); else _this.store.get$_dispatchers()[0].call$1(new A.ResetSettings()); } else { t2 = _this.context; t3 = _this.$this; if (t1 === B.EntityAction_save) { A.FocusScope_of(t2).unfocus$1$disposition(B.UnfocusDisposition_1); t3.onSavePressed.call$1(t2); } else t3.onActionPressed.call$2(t2, t1); } }, $signature: 1 }; A.EditScaffold_build_closure1.prototype = { call$2(context, remaining) { var _this = this, _null = null; return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, A.getLayout(context) === B.AppLayout_desktop ? A.Row$(A._setArrayType([A.Text$(_this.localization.get$more(), _null, _null, _null, _null, _null, _this.textStyle, _null, _null, _null), new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, _this.state.get$headerTextColor(), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null) : A.Icon$(B.IconData_58372_MaterialIcons_null_false, _null, _null), _null), _null, true, _null, _null, new A.EditScaffold_build__closure1(_this.entityActions, remaining), new A.EditScaffold_build__closure2(_this.$this, context), B.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction); }, $signature: 407 }; A.EditScaffold_build__closure2.prototype = { call$1(action) { this.$this.onActionPressed.call$2(this.context, action); }, $signature: 263 }; A.EditScaffold_build__closure1.prototype = { call$1(context) { var t1 = this.entityActions, t2 = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); t1 = B.JSArray_methods.sublist$1(t2, t1.length - this.remaining); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); return A.List_List$of(new A.MappedListIterable(t1, new A.EditScaffold_build___closure(context), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 410 }; A.EditScaffold_build___closure.prototype = { call$1(action) { var _null = null, t1 = this.context, t2 = A.Icon$(A.getEntityActionIcon(action), A.Theme_of(t1).colorScheme.secondary, _null); t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(J.toString$0$(action)); return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.legacy_EntityAction); }, $signature: 365 }; A.EditScaffold_build_closure4.prototype = { call$1(context) { A.FocusScope_of(context).unfocus$1$disposition(B.UnfocusDisposition_1); this.$this.onSavePressed.call$1(context); }, $signature: 14 }; A.EditScaffold_build_closure3.prototype = { call$1(context) { var t1 = this.$this.onCancelPressed; if (t1 != null) t1.call$1(context); else this.store.get$_dispatchers()[0].call$1(new A.ResetSettings()); }, $signature: 14 }; A.EditScaffold_build_closure5.prototype = { call$1(context) { var t3, _i, t1 = A._setArrayType([], type$.JSArray_legacy_PopupMenuEntry_legacy_EntityAction), t2 = this.$this.actions; t2.toString; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,StatefulWidget*>"); t3 = A.List_List$of(new A.MappedListIterable(t2, new A.EditScaffold_build__closure(context), t3), true, t3._eval$1("ListIterable.E")); t2 = t3.length; _i = 0; for (; _i < t2; ++_i) t1.push(t3[_i]); return t1; }, $signature: 752 }; A.EditScaffold_build__closure.prototype = { call$1(action) { var t1, _null = null; if (action == null) t1 = A.PopupMenuDivider$(); else { t1 = this.context; t1 = A.PopupMenuItem$(A.Row$(A._setArrayType([A.Icon$(A.getEntityActionIcon(action), A.Theme_of(t1).colorScheme.secondary, _null), new A.SizedBox(16, _null, _null, _null), A.Text$(A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(A.toSnakeCase(action.super$EnumClass$toString(0))), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.legacy_EntityAction); } return t1; }, $signature: 2134 }; A.EditScaffold_build_closure6.prototype = { call$1(action) { return this.$this.onActionPressed.call$2(this.context, action); }, $signature: 2135 }; A.showEntityActionsDialog_closure.prototype = { call$1(entityAction) { var _null = null; if (entityAction == null) return A.Divider$(_null, _null, _null); else return new A.EntityActionListTile(this.entities, entityAction, this.mainContext, this.completer, _null); }, $signature: 2136 }; A.showEntityActionsDialog_closure0.prototype = { call$1(dialogContext) { return A.SimpleDialog$(this.actions, null); }, $signature: 172 }; A.EntityActionListTile.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.action; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityActionIcon(t2), _null, _null), _null, new A.EntityActionListTile_build_closure(this, context), false, _null, _null, _null, _null, A.Text$(t1.lookup$1(A.toSnakeCase(t2.super$EnumClass$toString(0))), _null, _null, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, _null); } }; A.EntityActionListTile_build_closure.prototype = { call$0() { var first, t1 = this.$this, t2 = t1.completer; if (t2 != null) t2.complete$1(0, null); A.Navigator_of(this.context, false).pop$0(0); t2 = t1.entities; first = J.get$first$ax(t2); switch (first.get$entityType()) { case B.EntityType_client: A.handleClientAction(t1.mainContext, t2, t1.action); break; case B.EntityType_product: A.handleProductAction(t1.mainContext, t2, t1.action); break; case B.EntityType_invoice: A.handleInvoiceAction(t1.mainContext, t2, t1.action); break; case B.EntityType_recurringInvoice: A.handleRecurringInvoiceAction(t1.mainContext, t2, t1.action); break; case B.EntityType_payment: A.handlePaymentAction(t1.mainContext, t2, t1.action); break; case B.EntityType_quote: A.handleQuoteAction(t1.mainContext, t2, t1.action); break; case B.EntityType_credit: A.handleCreditAction(t1.mainContext, t2, t1.action); break; case B.EntityType_task: A.handleTaskAction(t1.mainContext, t2, t1.action); break; case B.EntityType_project: A.handleProjectAction(t1.mainContext, t2, t1.action); break; case B.EntityType_vendor: A.handleVendorAction(t1.mainContext, t2, t1.action); break; case B.EntityType_expense: A.handleExpenseAction(t1.mainContext, t2, t1.action); break; case B.EntityType_companyGateway: A.handleCompanyGatewayAction(t1.mainContext, t2, t1.action); break; case B.EntityType_group: A.handleGroupAction(t1.mainContext, t2, t1.action); break; case B.EntityType_taxRate: A.handleTaxRateAction(t1.mainContext, t2, t1.action); break; case B.EntityType_user: A.handleUserAction(t1.mainContext, t2, t1.action); break; case B.EntityType_design: A.handleDesignAction(t1.mainContext, t2, t1.action); break; case B.EntityType_paymentTerm: A.handlePaymentTermAction(t1.mainContext, t2, t1.action); break; case B.EntityType_token: A.handleTokenAction(t1.mainContext, t2, t1.action); break; case B.EntityType_webhook: A.handleWebhookAction(t1.mainContext, t2, t1.action); break; case B.EntityType_expenseCategory: A.handleExpenseCategoryAction(t1.mainContext, t2, t1.action); break; case B.EntityType_taskStatus: A.handleTaskStatusAction(t1.mainContext, t2, t1.action); break; case B.EntityType_subscription: A.handleSubscriptionAction(t1.mainContext, t2, t1.action); break; default: throw A.wrapException("Error: unhandled entity type " + A.S(first.get$entityType())); } }, $signature: 1 }; A.EntityListTile.prototype = { createState$0() { return new A._EntityListTileState(B._StateLifecycle_0); } }; A._EntityListTileState.prototype = { build$1(_, context) { var store, state, t2, t3, t4, isFilteredBy, entityClient, isHovered, t5, t6, leading, trailing, _this = this, _null = null, t1 = _this._widget.entity; if (t1 == null || t1.get$isNew()) return new A.SizedBox(_null, _null, _null, _null); store = A.StoreProvider_of(context, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.uiState; t2 = t1.filterStack._list; if (t2.length === 0) t3 = _null; else { t3 = B.JSArray_methods.get$last(t2); t3 = t3.get$id(t3); } t4 = _this._widget.entity; if (t3 === t4.get$id(t4)) { t2 = t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType(); isFilteredBy = t2 == _this._widget.entity.get$entityType(); } else isFilteredBy = false; t2 = _this._widget; t2 = t2.entity; if (type$.legacy_BelongsToClient._is(t2)) { t3 = state.userCompanyStates; t4 = t1.selectedCompanyIndex; t4 = t3._list[t4].clientState.map; t2 = t2.get$clientId(t2); t2 = t4._map$_map.$index(0, t2); entityClient = t2; } else entityClient = _null; isHovered = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates._length === 0 && isFilteredBy || _this._entity_list_tile$_isHovered; t2 = isHovered ? B.IconData_58372_MaterialIcons_null_false : A.getEntityIcon(_this._widget.entity.get$entityType()); t3 = isHovered ? _null : 18; t4 = _this._widget.entity; t5 = state.userCompanyStates; t6 = t1.selectedCompanyIndex; t6 = t4.getActions$3$client$includeEdit$userCompany(entityClient, true, t5._list[t6].userCompany); t5 = _this._widget.entity; leading = A.ActionMenuButton$(t5, t6, t2, t3, false, new A._EntityListTileState_build_closure(_this)); if (t5.get$createdAt() === 0) trailing = _null; else { t2 = !isHovered || _this._widget.isFilter; trailing = new A.IgnorePointer(t2, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(isHovered || _this._widget.isFilter || A.getLayout(context) === B.AppLayout_mobile || t1.previewStack._list.length !== 0 ? B.IconData_57695_MaterialIcons_null_true : B.IconData_57984_MaterialIcons_null_false, _null, _null), _null, new A._EntityListTileState_build_closure0(_this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null); } t1 = isFilteredBy && A.getLayout(context) === B.AppLayout_desktop; t2 = new A.EntityPresenter(); t2.entity = _this._widget.entity; t2.context = context; t2 = A.Text$(t2.title$0(0), _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t3 = _this._widget; t4 = t3.subtitle; if ((t4 == null ? "" : t4).length === 0) { t3 = t3.entity; t3 = !t3.get$isArchived() && !t3.get$isDeleted(t3); } else t3 = false; if (t3) t3 = _null; else { t3 = A._setArrayType([], type$.JSArray_legacy_Widget); t4 = _this._widget.subtitle; if ((t4 == null ? "" : t4).length !== 0) t3.push(A.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t4 = _this._widget.entity; if (!(!t4.get$isArchived() && !t4.get$isDeleted(t4))) t3.push(new A.EntityStateLabel(_this._widget.entity, _null)); t3 = A.Column$(t3, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } t4 = _this._widget; t5 = t4.subtitle; if ((t5 == null ? "" : t5).length !== 0) { t4 = t4.entity; t4 = !(!t4.get$isArchived() && !t4.get$isDeleted(t4)); } else t4 = false; return A.MouseRegion$(A.Column$(A._setArrayType([new A.SelectedIndicator(A.ListTile$(false, B.EdgeInsets_16_0_16_0, _null, _null, true, _null, _null, t4, _null, leading, new A._EntityListTileState_build_closure1(_this), new A._EntityListTileState_build_closure2(_this, state, store), false, _null, _null, t3, _null, t2, trailing, _null), t1, true, _null), new A.ListDivider(_null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.C__DeferringMouseCursor, _null, new A._EntityListTileState_build_closure3(_this), new A._EntityListTileState_build_closure4(_this), _null); } }; A._EntityListTileState_build_closure.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this._widget.entity], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A._EntityListTileState_build_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._widget.entity; return A.viewEntity(A.getLayout(this.context) === B.AppLayout_desktop && !t1._widget.isFilter, t2, null, false); }, $signature: 0 }; A._EntityListTileState_build_closure3.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._EntityListTileState_build__closure0(t1)); }, $signature: 287 }; A._EntityListTileState_build__closure0.prototype = { call$0() { return this.$this._entity_list_tile$_isHovered = true; }, $signature: 21 }; A._EntityListTileState_build_closure4.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._EntityListTileState_build__closure(t1)); }, $signature: 237 }; A._EntityListTileState_build__closure.prototype = { call$0() { return this.$this._entity_list_tile$_isHovered = false; }, $signature: 21 }; A._EntityListTileState_build_closure2.prototype = { call$0() { var t2, t1 = this.$this; if (this.state.prefState.isViewerFullScreen$1(t1._widget.entity.get$entityType())) { t2 = t1._widget.entity.get$entityType(); this.store.get$_dispatchers()[0].call$1(new A.ToggleViewerLayout(t2)); } A.inspectEntity(t1._widget.entity, false); }, $signature: 1 }; A._EntityListTileState_build_closure1.prototype = { call$0() { return A.inspectEntity(this.$this._widget.entity, true); }, $signature: 0 }; A.EntitiesListTile.prototype = { createState$0() { return new A._EntitiesListTileState(B._StateLifecycle_0); } }; A._EntitiesListTileState.prototype = { _entity_list_tile$_onLongPress$0() { var store, uiState, entity, t2, _this = this, t1 = _this._widget.entity; if (t1.get$isDeleted(t1)) return; t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); uiState = A._lateReadCheck(store.__Store__state, "_state").uiState; entity = _this._widget.entity; t1 = uiState.filterStack._list; if (t1.length === 0) t2 = null; else { t2 = B.JSArray_methods.get$last(t1); t2 = t2.get$id(t2); } if (t2 === entity.get$id(entity)) { t1 = t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(); t1 = t1 != entity.get$entityType(); } else t1 = true; if (t1) store.get$_dispatchers()[0].call$1(new A.FilterByEntity(entity, false)); t1 = A.EntityAction_newEntityType(_this._widget.entityType); A.handleEntitiesActions(A._setArrayType([entity], type$.JSArray_legacy_BaseEntity), t1, false); }, build$1(_, context) { var t3, t4, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.uiState, mainRoute = t1.get$mainRoute(), t2 = _this._widget, isFilterMatch = t2.isFilter && t2.entityType.toString$0(0) === A.toCamelCase(mainRoute); t2 = _this._widget; t3 = A.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = t2.subtitle; t2 = A.Text$(t2.length === 0 ? A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$none() : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._entity_list_tile$_isHovered) { t4 = _this._widget; if (!t4.hideNew) { t4 = t4.entity; if (!t4.get$isDeleted(t4)) { t4 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = t4._list[t1].userCompany.can$2(B.UserPermission_create, _this._widget.entityType); } else t1 = false; } else t1 = false; } else t1 = false; t1 = t1 ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, _this.get$_entity_list_tile$_onLongPress(), B.EdgeInsets_8_8_8_8, _null, _null, _null) : new A.IgnorePointer(true, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(A.getEntityIcon(_this._widget.entityType), _null, 18), _null, new A._EntitiesListTileState_build_closure(_this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null); return A.MouseRegion$(A.Column$(A._setArrayType([new A.SelectedIndicator(A.ListTile$(false, B.EdgeInsets_16_0_16_0, _null, _null, true, _null, _null, false, _null, t1, _this.get$_entity_list_tile$_onLongPress(), new A._EntitiesListTileState_build_closure0(_this, context), false, _null, _null, t2, _null, t3, new A.IgnorePointer(true, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_Up3, _null, _null), _null, new A._EntitiesListTileState_build_closure1(), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null), _null), isFilterMatch, true, _null), new A.ListDivider(_null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.C__DeferringMouseCursor, _null, new A._EntitiesListTileState_build_closure2(_this), new A._EntitiesListTileState_build_closure3(_this), _null); } }; A._EntitiesListTileState_build_closure2.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._EntitiesListTileState_build__closure0(t1)); }, $signature: 287 }; A._EntitiesListTileState_build__closure0.prototype = { call$0() { return this.$this._entity_list_tile$_isHovered = true; }, $signature: 21 }; A._EntitiesListTileState_build_closure3.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._EntitiesListTileState_build__closure(t1)); }, $signature: 237 }; A._EntitiesListTileState_build__closure.prototype = { call$0() { return this.$this._entity_list_tile$_isHovered = false; }, $signature: 21 }; A._EntitiesListTileState_build_closure.prototype = { call$0() { var t1 = this.$this._widget; return A.viewEntitiesByType(t1.entityType, t1.entity); }, $signature: 0 }; A._EntitiesListTileState_build_closure1.prototype = { call$0() { return null; }, $signature: 1 }; A._EntitiesListTileState_build_closure0.prototype = { call$0() { var t1 = this.$this._widget; return A.viewEntitiesByType(t1.entityType, t1.entity); }, $signature: 0 }; A.EntityStatusChip.prototype = { build$1(_, context) { var t2, label, color, statusId, t3, t4, category, $status, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this.showState) { t2 = _this.entity; t2 = !(!t2.get$isArchived() && !t2.get$isDeleted(t2)); } else t2 = false; if (t2) { t2 = _this.entity; if (t2.get$isArchived()) { label = t1.get$archived(); color = B.MaterialColor_Map_JNZaB_4294940672; } else if (t2.get$isDeleted(t2)) { label = t1.get$deleted(); color = state.prefState.get$colorThemeModel().colorDanger; } else { color = _null; label = ""; } } else { t2 = _this.entity; switch (t2.get$entityType()) { case B.EntityType_payment: type$.legacy_PaymentEntity._as(t2); label = B.Map_IYlun.$index(0, t2.get$calculatedStatusId()); color = new A.PaymentStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2.get$calculatedStatusId()); break; case B.EntityType_invoice: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = B.Map_j34mP.$index(0, statusId); color = new A.InvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case B.EntityType_recurringInvoice: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = B.Map_BzEVk.$index(0, statusId); color = new A.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case B.EntityType_quote: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = B.Map_IF4bq.$index(0, statusId); color = new A.QuoteStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case B.EntityType_credit: t2 = type$.legacy_InvoiceEntity._as(t2).statusId; label = B.Map_qBa3g.$index(0, t2); color = new A.CreditStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2); break; case B.EntityType_purchaseOrder: t2 = type$.legacy_InvoiceEntity._as(t2).statusId; label = B.Map_EH27z.$index(0, t2); color = new A.PurchaseOrderStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2); break; case B.EntityType_expense: type$.legacy_ExpenseEntity._as(t2); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; category = t3._list[t4].expenseCategoryState.$get$1(0, t2.categoryId); label = B.Map_EHoyn.$index(0, t2.get$calculatedStatusId()); t3 = category.color; color = t3.length !== 0 && t3 !== "#fff" ? A.convertHexStringToColor(t3) : new A.ExpenseStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2.get$calculatedStatusId()); break; case B.EntityType_recurringExpense: statusId = type$.legacy_ExpenseEntity._as(t2).get$calculatedStatusId(); label = B.Map_BzEVk.$index(0, statusId); color = new A.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case B.EntityType_task: type$.legacy_TaskEntity._as(t2); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; $status = t3._list[t4].taskStatusState.$get$1(0, t2.statusId); t3 = t2.invoiceId.length !== 0; if (t3) label = t1.get$invoiced(); else if (t2.get$isRunning()) { t4 = t1.get$running(); label = t4; } else { t4 = $status.name; t4 = t4.length !== 0 ? t4 : t1.get$logged(); label = t4; } if (t3) color = state.prefState.get$colorThemeModel().colorSuccess; else if (t2.get$isRunning()) { t2 = state.prefState.get$colorThemeModel().colorInfo; color = t2; } else { t3 = $status.color; if (t3.length !== 0 && t3 !== "#fff") t2 = A.convertHexStringToColor(t3); else { t3 = state.prefState.get$colorThemeModel(); t2 = A.LinkedHashMap_LinkedHashMap$_literal(["-1", B.Color_4287137928, "-2", t3.colorPrimary, "-3", t3.colorSuccess], type$.legacy_String, type$.legacy_Color).$index(0, t2.get$calculateStatusId()); } color = t2; } break; default: return new A.SizedBox(_null, _null, _null, _null); } label = t1.lookup$1(label); if (label == null) label = ""; if (label.length === 0) label = t1.get$logged(); } t1 = A.BorderRadius$all(new A.Radius(2, 2)); t2 = _this.width; t3 = t2 == null; t4 = t3 ? 100 : t2; if (t3) t2 = 200; return new A.Padding(new A.EdgeInsets(0, 0, 0, 0), A.DecoratedBox$(new A.ConstrainedBox(new A.BoxConstraints(t4, t2, 0, 1 / 0), new A.Padding(new A.EdgeInsets(4, 6, 4, 6), A.Text$(label, _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 13, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_2, _null, _null), _null), _null), new A.BoxDecoration(color, _null, _null, t1, _null, _null, B.BoxShape_0), B.DecorationPosition_0), _null); } }; A.EntityDropdown.prototype = { createState$0() { return new A._EntityDropdownState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); }, onAddPressed$1(arg0) { return this.onAddPressed.call$1(arg0); }, overrideSuggestedLabel$1(arg0) { return this.overrideSuggestedLabel.call$1(arg0); }, onCreateNew$2(arg0, arg1) { return this.onCreateNew.call$2(arg0, arg1); } }; A._EntityDropdownState.prototype = { initState$0() { this.super$State$initState(); this._entity_dropdown$_focusNode.addListener$1(0, this.get$_onFocusChanged()); }, _onFocusChanged$0() { var t2, _this = this, t1 = _this._entity_dropdown$_focusNode; if (t1.get$hasFocus()) { t2 = _this._framework$_element; t2.toString; t2 = A.getLayout(t2) === B.AppLayout_mobile; } else t2 = false; if (t2) _this._showOptions$0(); if (!t1.get$hasFocus() && !_this.get$hasValue()) _this._entity_dropdown$_textController.set$text(0, ""); }, _getEntityLabel$1(entity) { var value, t1; if (entity == null) return ""; value = entity.get$listDisplayName(); if (!type$.legacy_BaseEntity._is(entity)) return value; if (entity.get$isDeleted(entity)) { t1 = this._framework$_element; t1.toString; value = J.$add$ansx(value, " - " + A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deleted()); } return value; }, didUpdateWidget$1(oldWidget) { var t1, state, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.entityId != oldWidget.entityId) { t1 = _this._framework$_element; t1.toString; state = A._lateReadCheck(A.StoreProvider_of(t1, type$.legacy_AppState).__Store__state, "_state"); t1 = _this._widget; t2 = t1.entityMap; t1 = t2 == null ? state.getEntityMap$1(t1.entityType) : t2; _this._entityMap = t1; t2 = _this._widget.entityId; _this._entity_dropdown$_textController.set$text(0, _this._getEntityLabel$1(t1._map$_map.$index(0, t2))); } }, didChangeDependencies$0() { var state, t2, entity, _this = this, t1 = _this._framework$_element; t1.toString; state = A._lateReadCheck(A.StoreProvider_of(t1, type$.legacy_AppState).__Store__state, "_state"); t1 = _this._widget; t2 = t1.entityMap; t1 = t2 == null ? state.getEntityMap$1(t1.entityType) : t2; _this._entityMap = t1; t2 = _this._widget; if (t1 == null) A.print("## ERROR: ENTITY MAP IS NULL: " + t2.entityType.toString$0(0)); else { t2 = t2.entityId; entity = t1._map$_map.$index(0, t2); t1 = _this._widget; t2 = _this._entity_dropdown$_textController; if (t1.overrideSuggestedLabel != null) t2.set$text(0, t1.overrideSuggestedLabel$1(entity)); else t2.set$text(0, _this._getEntityLabel$1(entity)); } _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this, t1 = _this._entity_dropdown$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; t1 = _this._entity_dropdown$_focusNode; t1.removeListener$1(0, _this.get$_onFocusChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showOptions$0() { var t1 = this._framework$_element; t1.toString; A.showDialog(null, true, new A._EntityDropdownState__showOptions_closure(this), t1, null, true, type$.legacy_EntityDropdownDialog); }, get$hasValue() { var t1 = this._widget.entityId; return t1 != null && t1 !== "0" && t1.length !== 0; }, build$1(_, context) { var theme, iconButton, t3, t4, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; if (!t1._list[t2].userCompany.company.isModuleEnabled$1(_this._widget.entityType)) return new A.SizedBox(_null, _null, _null, _null); theme = A.Theme_of(context); if (_this._widget.allowClearing && _this.get$hasValue()) iconButton = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._EntityDropdownState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null); else iconButton = _this._widget.onAddPressed != null ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._EntityDropdownState_build_closure0(_this), B.EdgeInsets_8_8_8_8, _null, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$createNew(), _null) : _null; if (A.getLayout(context) !== B.AppLayout_mobile && true) return new A.RawAutocomplete(new A._EntityDropdownState_build_closure1(_this, iconButton), _this._entity_dropdown$_focusNode, new A._EntityDropdownState_build_closure2(_this, theme, state), new A._EntityDropdownState_build_closure3(), new A._EntityDropdownState_build_closure4(_this), new A._EntityDropdownState_build_closure5(_this, state), _this._entity_dropdown$_textController, _null, _null, type$.RawAutocomplete_legacy_SelectableEntity); t1 = _this._widget; t2 = t1.validator; t3 = t1.autoValidate ? B.AutovalidateMode_1 : B.AutovalidateMode_2; t4 = t1.labelText; t2 = A._setArrayType([A.InkWell$(false, _null, true, new A.IgnorePointer(true, _null, A.TextFormField$(true, _null, false, t3, _this._entity_dropdown$_textController, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, t1.allowClearing && _this.get$hasValue() ? _null : B.Icon_OxR, _null, _null, _null, _null), _null, false, _this._entity_dropdown$_focusNode, _null, _null, _null, _null, 1, _null, false, _null, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null, t2), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._EntityDropdownState_build_closure6(_this), _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget); if (_this._widget.allowClearing && _this.get$hasValue()) t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._EntityDropdownState_build_closure7(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null)); return new A.Stack(B.Alignment_1_0, _null, B.StackFit_0, B.Clip_1, t2, _null); } }; A._EntityDropdownState__showOptions_closure.prototype = { call$1(context) { var t4, t5, t1 = this.$this, t2 = t1._entityMap, t3 = t1._widget.entityList; if (t3 == null) { t3 = t2.get$keys(t2); t3.toString; t3 = A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")); } t4 = t1._widget; t5 = t4.onAddPressed != null ? new A._EntityDropdownState__showOptions__closure(t1) : null; return new A.EntityDropdownDialog(t2, t3, new A._EntityDropdownState__showOptions__closure0(t1), t5, t4.overrideSuggestedAmount, t4.overrideSuggestedLabel, null); }, $signature: 2141 }; A._EntityDropdownState__showOptions__closure0.prototype = { call$2(entity, update) { var label, t1 = entity == null ? null : entity.get$id(entity), t2 = this.$this, t3 = t2._widget; if (t1 == t3.entityId) return; t3.onSelected$1(entity); t1 = t2._widget; label = t1.overrideSuggestedLabel != null ? t1.overrideSuggestedLabel$1(entity) : entity.get$listDisplayName(); if (update) t2._entity_dropdown$_textController.set$text(0, label); t2._widget.toString; }, call$1(entity) { return this.call$2(entity, true); }, $signature: 2142 }; A._EntityDropdownState__showOptions__closure.prototype = { call$2(context, completer) { return this.$this._widget.onAddPressed$1(completer); }, $signature: 2143 }; A._EntityDropdownState_build_closure.prototype = { call$0() { var t1 = this.$this; t1._entity_dropdown$_textController.set$text(0, ""); t1._widget.onSelected$1(null); }, $signature: 1 }; A._EntityDropdownState_build_closure0.prototype = { call$0() { var t1 = new A._Future($.Zone__current, type$._Future_legacy_SelectableEntity), t2 = this.$this; t2._widget.onAddPressed$1(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_SelectableEntity)); t1.then$1$1(0, new A._EntityDropdownState_build__closure8(t2), type$.Null); }, $signature: 1 }; A._EntityDropdownState_build__closure8.prototype = { call$1(entity) { this.$this._widget.onSelected$1(entity); }, $signature: 34 }; A._EntityDropdownState_build_closure5.prototype = { call$1(textEditingValue) { var options, t1 = this.$this, t2 = t1._widget, t3 = t2.entityList; if (t3 == null) { t2 = t2.entityMap; t2 = t2.get$keys(t2); t2.toString; t2 = A.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); } else t2 = t3; t2 = J.map$1$1$ax(t2, new A._EntityDropdownState_build__closure(t1), type$.legacy_SelectableEntity).where$1(0, new A._EntityDropdownState_build__closure0(textEditingValue)); t3 = t2.$ti._eval$1("WhereIterable"); options = A.List_List$of(new A.WhereIterable(t2, new A._EntityDropdownState_build__closure1(t1), t3), true, t3._eval$1("Iterable.E")); t2 = options.length; if (t2 === 1 && J.get$id$x(options[0]) === t1._widget.entityId) return A._setArrayType([], type$.JSArray_legacy_SelectableEntity); t3 = t1._widget; if (t3.onCreateNew != null) if (t2 === 0) if (J.trim$0$s(t1._entity_dropdown$_filter).length !== 0) if (J.trim$0$s(textEditingValue.text).length !== 0) { t1 = this.state; t2 = t1.uiState.selectedCompanyIndex; t3 = t1.userCompanyStates._list[t2].userCompany.can$2(B.UserPermission_create, t3.entityType); t1 = t3; } else t1 = false; else t1 = false; else t1 = false; else t1 = false; if (t1) B.JSArray_methods.add$1(options, new A._AutocompleteEntity(textEditingValue.text)); return options; }, $signature: 2145 }; A._EntityDropdownState_build__closure.prototype = { call$1(entityId) { return this.$this._entityMap._map$_map.$index(0, entityId); }, $signature: 2146 }; A._EntityDropdownState_build__closure0.prototype = { call$1(entity) { var t1 = entity == null ? null : entity.matchesFilter$1(this.textEditingValue.text); return t1 === true; }, $signature: 678 }; A._EntityDropdownState_build__closure1.prototype = { call$1(element) { return !B.JSArray_methods.contains$1(this.$this._widget.excludeIds, element.get$id(element)); }, $signature: 678 }; A._EntityDropdownState_build_closure3.prototype = { call$1(entity) { return entity.get$listDisplayName(); }, $signature: 2148 }; A._EntityDropdownState_build_closure4.prototype = { call$1(entity) { var t2, t3, $name, t1 = this.$this; t1._entity_dropdown$_filter = ""; t2 = entity == null; t3 = t2 ? null : entity.get$id(entity); if (t3 == t1._widget.entityId) return; t3 = new A._EntityDropdownState_build_closure__wrapUp(t1); if ((t2 ? null : entity.get$id(entity)) === "__new__") { $name = J.trim$0$s(type$.legacy__AutocompleteEntity._as(entity).name); t1._entity_dropdown$_textController.set$text(0, $name); t2 = t1._entity_dropdown$_focusNode; t2.removeListener$1(0, t1.get$_onFocusChanged()); t2.requestFocus$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._EntityDropdownState_build__closure2(t1)); t2 = new A._Future($.Zone__current, type$._Future_legacy_SelectableEntity); t2.then$1$1(0, new A._EntityDropdownState_build__closure3(t1, t3), type$.Null).catchError$1(new A._EntityDropdownState_build__closure4(t1)); t1._widget.onCreateNew$2(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_SelectableEntity), $name); } else t3.call$1(entity); }, $signature: 34 }; A._EntityDropdownState_build_closure__wrapUp.prototype = { call$1(entity) { var t1 = this.$this; t1._widget.onSelected$1(entity); t1._entity_dropdown$_focusNode.requestFocus$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._EntityDropdownState_build___wrapUp_closure(t1)); }, $signature: 155 }; A._EntityDropdownState_build___wrapUp_closure.prototype = { call$1(duration) { var t1 = this.$this._entity_dropdown$_textController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, $signature: 36 }; A._EntityDropdownState_build__closure2.prototype = { call$1(duration) { var t1 = this.$this._entity_dropdown$_textController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, $signature: 36 }; A._EntityDropdownState_build__closure3.prototype = { call$1(value) { var t2, _s14_ = "created_record", t1 = $.$get$navigatorKey(); t1.toString; t1 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s14_); A.showToast(t1 == null ? J.$index$asx(t2.$index(0, "en"), _s14_) : t1); this._wrapUp.call$1(value); t1 = this.$this; t1._entity_dropdown$_focusNode.addListener$1(0, t1.get$_onFocusChanged()); }, $signature: 34 }; A._EntityDropdownState_build__closure4.prototype = { call$1(error) { var t1 = this.$this; t1._entity_dropdown$_focusNode.addListener$1(0, t1.get$_onFocusChanged()); }, $signature: 7 }; A._EntityDropdownState_build_closure1.prototype = { call$4(context, textEditingController, focusNode, onFieldSubmitted) { var t4, t5, t6, _null = null, t1 = this.$this, t2 = t1._widget, t3 = t2.validator; t2 = t2.allowClearing && t1.get$hasValue(); t4 = t1._widget; t5 = t4.labelText; t6 = t4.autofocus; if (t6 === true) { t4 = t4.entityId; t4 = (t4 == null ? "" : t4).length === 0; } else t4 = false; return A.DecoratedFormField$(false, _null, t4, false, textEditingController, _null, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t5, _null, _null, false, new A._EntityDropdownState_build__closure6(t1), new A._EntityDropdownState_build__closure7(onFieldSubmitted), _null, t2, _null, this.iconButton, B.TextAlign_4, t3); }, $signature: 422 }; A._EntityDropdownState_build__closure7.prototype = { call$1(value) { this.onFieldSubmitted.call$0(); }, $signature: 11 }; A._EntityDropdownState_build__closure6.prototype = { call$1(value) { var t1 = this.$this; t1._entity_dropdown$_filter = value; if (t1.get$hasValue()) t1._widget.onSelected$1(null); }, $signature: 11 }; A._EntityDropdownState_build_closure2.prototype = { call$3(context, onSelected, options) { var _null = null, t1 = A.Theme_of(context).cardColor; return new A.Theme(this.theme, new A.Align(B.Alignment_m1_m1, _null, _null, A.Material$(B.Duration_200000, true, _null, new A.AppBorder(A.Container$(_null, new A.ScrollableListViewBuilder(new A._EntityDropdownState_build__closure5(this.$this, this.state, onSelected, options), _null, J.get$length$asx(options), _null, _null, _null), B.Clip_0, t1, new A.BoxConstraints(0, 1 / 0, 0, 270), _null, _null, _null, _null, _null, _null, _null, _null, 250), _null, _null, _null, false, _null), B.Clip_0, _null, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null), _null); }, $signature: 2150 }; A._EntityDropdownState_build__closure5.prototype = { call$2(context, index) { var _this = this; return new A.Builder(new A._EntityDropdownState_build___closure(_this.$this, index, _this.state, _this.onSelected, _this.options), null); }, $signature: 2151 }; A._EntityDropdownState_build___closure.prototype = { call$1(context) { var t3, t4, _this = this, _null = null, t1 = _this.index, t2 = A.AutocompleteHighlightedOption_of(context) === t1; if (t2) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._EntityDropdownState_build____closure(context)); if (t2) t2 = A.convertHexStringToColor(_this.state.prefState.enableDarkMode ? "#253750" : "#e5f5ff"); else t2 = A.Theme_of(context).cardColor; t1 = J.elementAt$1$ax(_this.options, t1); t3 = _this.$this; t4 = t3._entity_dropdown$_filter; t3 = t3._widget; return A.Container$(_null, new A.EntityAutocompleteListTile(t1, new A._EntityDropdownState_build____closure0(_this.onSelected), t4, _null, t3.overrideSuggestedAmount, t3.overrideSuggestedLabel, _null), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2152 }; A._EntityDropdownState_build____closure.prototype = { call$1(timeStamp) { A.Scrollable_ensureVisible(this.context, 0, B.ScrollPositionAlignmentPolicy_0); }, $signature: 36 }; A._EntityDropdownState_build____closure0.prototype = { call$1(entity) { return this.onSelected.call$1(entity); }, $signature: 155 }; A._EntityDropdownState_build_closure6.prototype = { call$0() { return this.$this._showOptions$0(); }, $signature: 0 }; A._EntityDropdownState_build_closure7.prototype = { call$0() { var t1 = this.$this; t1._entity_dropdown$_textController.set$text(0, ""); t1._widget.onSelected$1(null); }, $signature: 1 }; A.EntityDropdownDialog.prototype = { createState$0() { return new A._EntityDropdownDialogState(B._StateLifecycle_0); }, onSelected$2(arg0, arg1) { return this.onSelected.call$2(arg0, arg1); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); }, onAddPressed$2(arg0, arg1) { return this.onAddPressed.call$2(arg0, arg1); } }; A._EntityDropdownDialogState.prototype = { build$1(_, context) { var _null = null; return new A.ResponsivePadding(A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([new A._EntityDropdownDialogState_build__headerRow(this, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), context).call$0(), A.Expanded$(new A._EntityDropdownDialogState_build__createList(this, new A._EntityDropdownDialogState_build__selectEntity(this, context)).call$0(), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, _null, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null); } }; A._EntityDropdownDialogState_build__selectEntity.prototype = { call$1(entity) { this.$this._widget.onSelected$1(entity); A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 155 }; A._EntityDropdownDialogState_build__headerRow.prototype = { call$0() { var _null = null, t1 = A.Icon$(B.IconData_58727_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null), t2 = this.$this, t3 = this.localization, t4 = A.Expanded$(A.TextField$(true, B.List_empty0, true, _null, _null, _null, _null, _null, 2, A.InputDecoration$(_null, B._NoInputBorder_sqK, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.get$filter(t3), _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, _null, _null, _null, 1, _null, _null, false, "\u2022", new A._EntityDropdownDialogState_build__headerRow_closure(t2), _null, _null, _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, B.TextCapitalization_3, _null, _null, _null), 1), t5 = this.context, t6 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_O5U, _null, new A._EntityDropdownDialogState_build__headerRow_closure0(t5), B.EdgeInsets_8_8_8_8, _null, _null, _null); t2 = t2._widget.onAddPressed != null ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._EntityDropdownDialogState_build__headerRow_closure1(t2, t5), B.EdgeInsets_8_8_8_8, _null, t3.get$createNew(), _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_10_0_10_0, t1, _null), t4, t6, t2], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, $signature: 124 }; A._EntityDropdownDialogState_build__headerRow_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._EntityDropdownDialogState_build__headerRow__closure0(t1, value)); }, $signature: 11 }; A._EntityDropdownDialogState_build__headerRow__closure0.prototype = { call$0() { this.$this._entity_dropdown$_filter = this.value; }, $signature: 1 }; A._EntityDropdownDialogState_build__headerRow_closure0.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; A._EntityDropdownDialogState_build__headerRow_closure1.prototype = { call$0() { var t2, t3, t1 = this.context; A.Navigator_of(t1, false).pop$1(0, null); t2 = new A._Future($.Zone__current, type$._Future_legacy_SelectableEntity); t3 = this.$this; t3._widget.onAddPressed$2(t1, new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_SelectableEntity)); t2.then$1$1(0, new A._EntityDropdownDialogState_build__headerRow__closure(t3), type$.Null); }, $signature: 1 }; A._EntityDropdownDialogState_build__headerRow__closure.prototype = { call$1(entity) { this.$this._widget.onSelected$2(entity, false); }, $signature: 34 }; A._EntityDropdownDialogState_build__createList.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = J.where$1$ax(t1._widget.entityList, new A._EntityDropdownDialogState_build__createList_closure(t1)), t3 = t2.$ti._eval$1("WhereIterable"), matches = A.List_List$of(new A.WhereIterable(t2, new A._EntityDropdownDialogState_build__createList_closure0(t1), t3), true, t3._eval$1("Iterable.E")); return new A.ScrollableListViewBuilder(new A._EntityDropdownDialogState_build__createList_closure1(t1, matches, this._selectEntity), _null, matches.length, _null, _null, _null); }, $signature: 124 }; A._EntityDropdownDialogState_build__createList_closure.prototype = { call$1(entityId) { var t1 = this.$this, t2 = t1._widget.entityMap._map$_map.$index(0, entityId); t1 = t2 == null ? null : t2.matchesFilter$1(t1._entity_dropdown$_filter); return t1 === true; }, $signature: 16 }; A._EntityDropdownDialogState_build__createList_closure0.prototype = { call$1(entityId) { this.$this._widget.toString; return !null.contains$1(0, entityId); }, $signature: 16 }; A._EntityDropdownDialogState_build__createList_closure1.prototype = { call$2(context, index) { var entityId = this.matches[index], t1 = this.$this, entity = t1._widget.entityMap._map$_map.$index(0, entityId), t2 = t1._entity_dropdown$_filter; t1 = t1._widget; return new A.EntityAutocompleteListTile(entity, new A._EntityDropdownDialogState_build__createList__closure(this._selectEntity), t2, null, t1.overrideSuggestedAmount, t1.overrideSuggestedLabel, null); }, $signature: 2153 }; A._EntityDropdownDialogState_build__createList__closure.prototype = { call$1(entity) { return this._selectEntity.call$1(entity); }, $signature: 155 }; A.EntityAutocompleteListTile.prototype = { build$1(_, context) { var t1, t2, label, amount, _this = this, _null = null, subtitle = _this.subtitle; if (subtitle == null) subtitle = _this.entity.matchesFilterValue$1(_this.filter); t1 = _this.overrideSuggestedLabel; t2 = _this.entity; label = t1 == null ? t2.get$listDisplayName() : t1.call$1(t2); t1 = _this.overrideSuggestedAmount; amount = t1 == null ? A.formatNumber(t2.get$listDisplayAmount(), context, _null, _null, t2.get$listDisplayAmountType(), true, _null, false) : t1.call$1(t2); t1 = A._setArrayType([], type$.JSArray_legacy_Widget); if (t2.get$id(t2) === "__new__") t1.push(new A.Padding(B.EdgeInsets_0_4_8_0, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, 16), _null)); t1.push(A.Expanded$(A.Text$(label, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1)); t1.push(t2.get$listDisplayAmount() != null ? A.Text$(amount, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t1 = A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t2 = (subtitle == null ? "" : subtitle).length !== 0 ? A.Text$(subtitle, _null, 2, _null, _null, _null, _null, _null, _null, _null) : _null; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A.EntityAutocompleteListTile_build_closure(_this), false, _null, _null, t2, _null, t1, _null, _null); } }; A.EntityAutocompleteListTile_build_closure.prototype = { call$0() { var t1 = this.$this; return t1.onTap.call$1(t1.entity); }, $signature: 9 }; A._AutocompleteEntity.prototype = { get$id(_) { return "__new__"; }, matchesFilter$1(filter) { return true; }, matchesFilterValue$1(filter) { return null; }, get$listDisplayName() { var t1 = $.$get$navigatorKey(); t1.toString; t1 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return t1.get$create(t1) + ": " + A.S(this.name); }, get$listDisplayAmount() { return null; }, get$name(receiver) { return this.name; } }; A.__AutocompleteEntity_Object_SelectableEntity.prototype = {}; A.EntityHeader.prototype = { build$1(_, context) { var t5, t6, t7, t8, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textColor = A.Theme_of(context).textTheme.bodyLarge.color, prefState = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState, t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([A.Expanded$(new A.EntityHeader_build__value1(_this, textColor).call$0(), 1)], t2), t4 = _this.secondValue; if ((t4 == null ? "" : t4).length !== 0) B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(8, _null, _null, _null), A.Expanded$(new A.EntityHeader_build__value2(_this, textColor).call$0(), 1)], t2)); t3 = A.Row$(t3, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t4 = _this.statusLabel == null; if (t4) { t5 = _this.entity; t5 = !(!t5.get$isArchived() && !t5.get$isDeleted(t5)); } else t5 = true; t5 = t5 ? B.EdgeInsets_0_25_0_0 : B.EdgeInsets_0_0_0_0; t6 = A._setArrayType([], t2); if (!t4) t6.push(new A.Padding(B.EdgeInsets_0_0_16_0, A.EntityStatusChip$(_this.entity, false, _null), _null)); t4 = _this.entity; if (!(!t4.get$isArchived() && !t4.get$isDeleted(t4))) { t7 = t4.get$isArchived() ? B.MaterialColor_Map_JNZaB_4294940672 : prefState.get$colorThemeModel().colorDanger; t8 = A.BorderRadius$all(new A.Radius(2, 2)); t1 = t4.get$isArchived() ? t1.get$archived() : t1.get$deleted(); t6.push(A.DecoratedBox$(new A.ConstrainedBox(new A.BoxConstraints(120, 120, 0, 1 / 0), new A.Padding(B.EdgeInsets_8_5_8_5, A.Text$(t1, _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_2, _null, _null), _null), _null), new A.BoxDecoration(t7, _null, _null, t8, _null, _null, B.BoxShape_0), B.DecorationPosition_0)); } return A.Container$(_null, new A.Padding(new A.EdgeInsets(20, 30, 20, 25), A.Column$(A._setArrayType([t3, new A.Padding(t5, A.Row$(t6, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)], t2), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, get$value(receiver) { return this.value; } }; A.EntityHeader_build__value1.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = t1.value, t3 = this.textColor; t3 = A.Text$(t1.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(166, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t1 = (t2 == null ? "" : t2).length === 0 ? " " : t2; return new A.CopyToClipboard(A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), t2, false, _null, _null, _null); }, $signature: 124 }; A.EntityHeader_build__value2.prototype = { call$0() { var _null = null, t1 = this.$this, t2 = t1.secondValue, t3 = this.textColor; t3 = A.Text$(t1.secondLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A.Color$fromARGB(166, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t1 = (t2 == null ? "" : t2).length === 0 ? " " : t2; return new A.CopyToClipboard(A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), t2, false, _null, _null, _null); }, $signature: 124 }; A.EntityStateLabel.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.entity; if (t2.get$isDeleted(t2)) t1 = A.Text$(t1.get$deleted(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JNc9P_4294198070, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else t1 = t2.get$isArchived() ? A.Text$(t1.get$archived(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_JNZaB_4294940672, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return t1; } }; A.EntityTopFilter.prototype = { build$1(_, context) { var t4, filterEntity, relatedTypes, backgroundColor, t5, t6, t7, t8, t9, t10, t11, i, t12, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, t2 = uiState.filterStack._list, filterEntityType = t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType(), routeEntityType = uiState.get$entityTypeRoute(), t3 = filterEntityType == null, entityMap = !t3 ? state.getEntityMap$1(filterEntityType) : _null; if (entityMap != null) { if (t2.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t2); t4 = t4.get$id(t4); } filterEntity = entityMap._map$_map.$index(0, t4); } else filterEntity = _null; t3 = t3 ? _null : filterEntityType.get$relatedTypes(); t3 = t3 == null ? _null : new A.WhereIterable(t3, new A.EntityTopFilter_build_closure(state), A._arrayInstanceType(t3)._eval$1("WhereIterable<1>")); relatedTypes = t3 == null ? _null : A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")); if (relatedTypes == null) relatedTypes = A._setArrayType([], type$.JSArray_legacy_EntityType); t3 = !prefState.enableDarkMode; backgroundColor = t3 && state.get$hasAccentColor() ? state.get$accentColor() : A.Theme_of(context).cardColor; t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); if (prefState.isViewerFullScreen$1(t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType())) { if ((t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) === B.EntityType_client) t2 = new A.ClientViewScreen(false, true, _null); else t2 = (t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) === B.EntityType_vendor ? new A.VendorViewScreen(false, true, _null) : new A.Placeholder(B.Color_4282735204, _null); t5.push(A.Expanded$(t2, 1)); } t2 = this.show; t6 = t2 ? 46 : 0; t7 = A.Duration$(0, 0, 0, 500, 0, 0); t2 = t2 ? 1 : 0; t8 = A.Duration$(0, 0, 0, 500, 0, 0); if (filterEntity == null) t1 = A.Container$(_null, _null, B.Clip_0, backgroundColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t9 = A._setArrayType([new A.SizedBox(4, _null, _null, _null)], t4); if (!prefState.isViewerFullScreen$1(filterEntityType)) B.JSArray_methods.addAll$1(t9, A._setArrayType([A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, state.get$headerTextColor(), _null), _null, new A.EntityTopFilter_build_closure0(store, uiState), B.EdgeInsets_8_8_8_8, _null, _null, _null)], t4)); t9.push(new A.SizedBox(4, _null, _null, _null)); if (!prefState.isFilterVisible && !prefState.isViewerFullScreen$1(filterEntityType)) { t10 = A.Icon$(B.IconData_57698_MaterialIcons_null_true, state.get$headerTextColor(), _null); t11 = new A.EntityPresenter(); t11.entity = filterEntity; t11.context = context; t9.push(A.InkWell$(false, _null, true, A.Row$(A._setArrayType([new A.SizedBox(12, _null, _null, _null), t10, new A.SizedBox(12, _null, _null, _null), new A.ConstrainedBox(new A.BoxConstraints(0, 220, 0, 1 / 0), A.Text$(t11.title$0(0), _null, 1, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, 17, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), new A.SizedBox(12, _null, _null, _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.EntityTopFilter_build_closure1(filterEntity), new A.EntityTopFilter_build_closure2(store, prefState), _null, _null, _null, _null, _null, _null)); } t9.push(new A.SizedBox(12, _null, _null, _null)); t10 = A._setArrayType([], t4); for (i = 0; i < relatedTypes.length; ++i) { t11 = t1.lookup$1(relatedTypes[i].get$plural()); t12 = !t3 || state.get$hasAccentColor() ? A.convertHexStringToColor("#FFFFFF") : A.convertHexStringToColor("#000000"); t11 = A.TextButton$(false, new A.Text(t11, _null, new A.TextStyle(true, t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null, _null, _null, _null), new A.EntityTopFilter_build_closure3(filterEntity, relatedTypes, i), new A.EntityTopFilter_build_closure4(relatedTypes, i, filterEntity), A.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, new A.Size(0, 36), _null, new A.EdgeInsets(12, 0, 12, 0), _null, _null, _null, _null, _null, _null, _null)); if (J.$eq$(relatedTypes[i], routeEntityType)) t12 = new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, new A.BorderSide(!t3 || !state.get$hasAccentColor() ? state.get$accentColor() : B.Color_4294967295, 2, B.BorderStyle_1), B.BorderSide_0CF); else t12 = _null; t10.push(new A.DecoratedBox(new A.BoxDecoration(_null, _null, t12, _null, _null, _null, B.BoxShape_0), B.DecorationPosition_0, t11, _null)); } t9.push(A.Expanded$(new A.Align(B.Alignment_m1_0, _null, _null, A.OverflowView$flexible(new A.EntityTopFilter_build_closure5(t1, state, routeEntityType, filterEntityType, filterEntity, relatedTypes), t10, 4), _null), 1)); t9.push(new A.SizedBox(4, _null, _null, _null)); if (!prefState.isViewerFullScreen$1(filterEntityType)) { t1 = A._setArrayType([], t4); filterEntityType.toString; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), filterEntityType)) t1.push(new A.AppBorder(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_12_0_12_0, A.Icon$(B._MdiIconData_Gjc0, state.get$headerTextColor(), _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.EntityTopFilter_build_closure6(store, uiState), _null, _null, _null, _null, _null, _null), _null, _null, true, false, _null)); B.JSArray_methods.addAll$1(t9, t1); } t1 = A.Row$(t9, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } t5.push(A.AnimatedContainer$(A.AnimatedOpacity$(false, t1, B.Cubic_oKc, t8, t2), _null, B.Cubic_oKc, _null, t7, t6, _null, _null, _null, _null)); return A.Material$(B.Duration_200000, true, _null, A.Column$(t5, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, backgroundColor, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.EntityTopFilter_build_closure.prototype = { call$1(element) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].userCompany.company.isModuleEnabled$1(element); }, $signature: 273 }; A.EntityTopFilter_build_closure0.prototype = { call$0() { var t1 = B.JSArray_methods.get$last(this.uiState.filterStack._list); return this.store.get$_dispatchers()[0].call$1(new A.FilterByEntity(t1, false)); }, $signature: 9 }; A.EntityTopFilter_build_closure2.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, !this.prefState.isFilterVisible, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.EntityTopFilter_build_closure1.prototype = { call$0() { A.editEntity(null, this.filterEntity, true, null); }, $signature: 1 }; A.EntityTopFilter_build_closure4.prototype = { call$0() { A.viewEntitiesByType(this.relatedTypes[this.i], this.filterEntity); }, $signature: 1 }; A.EntityTopFilter_build_closure3.prototype = { call$0() { var t1 = A.EntityAction_newEntityType(this.relatedTypes[this.i]); A.handleEntitiesActions(A._setArrayType([this.filterEntity], type$.JSArray_legacy_BaseEntity), t1, false); }, $signature: 1 }; A.EntityTopFilter_build_closure5.prototype = { call$2(context, remaining) { var _this = this, _null = null, t1 = _this.localization, t2 = _this.state, t3 = _this.filterEntityType; return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_4_0_4_0, A.Row$(A._setArrayType([A.Text$(t1.get$more(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, t2.get$headerTextColor(), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _this.routeEntityType, new A.EntityTopFilter_build__closure(t3, _this.relatedTypes, remaining, t2, t1), new A.EntityTopFilter_build__closure0(t3, _this.filterEntity), B.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityType); }, $signature: 2154 }; A.EntityTopFilter_build__closure0.prototype = { call$1(value) { var t1 = this.filterEntity; if (value === this.filterEntityType) A.viewEntity(false, t1, null, false); else A.viewEntitiesByType(value, t1); }, $signature: 191 }; A.EntityTopFilter_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.filterEntityType, t2 = B.JSArray_methods.sublist$1(t1.get$relatedTypes(), _this.relatedTypes.length - _this.remaining), t3 = A._arrayInstanceType(t2), t4 = t3._eval$1("MappedIterable<1,PopupMenuItem*>"); return A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A.EntityTopFilter_build___closure(_this.state), t3._eval$1("WhereIterable<1>")), new A.EntityTopFilter_build___closure0(t1, _this.localization), t4), true, t4._eval$1("Iterable.E")); }, $signature: 2156 }; A.EntityTopFilter_build___closure.prototype = { call$1(element) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].userCompany.company.isModuleEnabled$1(element); }, $signature: 273 }; A.EntityTopFilter_build___closure0.prototype = { call$1(type) { var _null = null, t1 = this.localization; return A.PopupMenuItem$(new A.ConstrainedBox(new A.BoxConstraints(75, 1 / 0, 0, 1 / 0), A.Text$(type === this.filterEntityType ? t1.get$overview() : A.S(t1.lookup$1(type.get$plural())), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), type, type$.legacy_EntityType); }, $signature: 2157 }; A.EntityTopFilter_build_closure6.prototype = { call$0() { var t1 = this.uiState.filterStack._list; t1 = t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(); this.store.get$_dispatchers()[0].call$1(new A.ToggleViewerLayout(t1)); }, $signature: 1 }; A.EntityTopFilterHeader.prototype = { build$1(_, context) { var filterEntity, backgroundColor, t3, entityActions, textStyle, t4, t5, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, t2 = uiState.filterStack._list, filterEntityType = t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType(), entityMap = filterEntityType != null ? state.getEntityMap$1(filterEntityType) : _null; if (entityMap != null) { if (t2.length === 0) t2 = _null; else { t2 = B.JSArray_methods.get$last(t2); t2 = t2.get$id(t2); } filterEntity = entityMap._map$_map.$index(0, t2); } else filterEntity = _null; backgroundColor = !prefState.enableDarkMode && state.get$hasAccentColor() ? state.get$accentColor() : A.Theme_of(context).cardColor; type$.legacy_BaseEntity._as(filterEntity); t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = filterEntity.getActions$2$includeEdit$userCompany(true, t2._list[t3].userCompany); t2 = A._arrayInstanceType(t3); entityActions = new A.WhereIterable(t3, new A.EntityTopFilterHeader_build_closure(), t2._eval$1("WhereIterable<1>")); textStyle = A.Theme_of(context).textTheme.bodyMedium.copyWith$1$color(state.get$headerTextColor()); t3 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([new A.SizedBox(4, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, state.get$headerTextColor(), _null), _null, new A.EntityTopFilterHeader_build_closure0(uiState, state, store), B.EdgeInsets_8_8_8_8, _null, _null, _null), new A.SizedBox(4, _null, _null, _null)], t3); if (!prefState.isFilterVisible) { t5 = A.Icon$(B.IconData_57698_MaterialIcons_null_true, state.get$headerTextColor(), _null); t6 = new A.EntityPresenter(); t6.entity = filterEntity; t6.context = context; t4.push(A.InkWell$(false, _null, true, A.Row$(A._setArrayType([new A.SizedBox(12, _null, _null, _null), t5, new A.SizedBox(12, _null, _null, _null), new A.ConstrainedBox(new A.BoxConstraints(0, 220, 0, 1 / 0), A.Text$(t6.title$0(0), _null, 1, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, 17, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), new A.SizedBox(12, _null, _null, _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.EntityTopFilterHeader_build_closure1(filterEntity), new A.EntityTopFilterHeader_build_closure2(store, prefState), _null, _null, _null, _null, _null, _null)); } t4.push(new A.SizedBox(12, _null, _null, _null)); t2 = t2._eval$1("MappedIterable<1,OutlinedButton*>"); t4.push(A.Expanded$(new A.Align(B.Alignment_m1_0, _null, _null, A.OverflowView$flexible(new A.EntityTopFilterHeader_build_closure3(t1, textStyle, state, filterEntity, entityActions), A.List_List$of(new A.MappedIterable(entityActions, new A.EntityTopFilterHeader_build_closure4(t1, state, textStyle, filterEntity), t2), true, t2._eval$1("Iterable.E")), 8), _null), 1)); t4.push(new A.AppBorder(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_12_0_12_0, A.Icon$(B._MdiIconData_Qa61, state.get$headerTextColor(), _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.EntityTopFilterHeader_build_closure5(store, uiState), _null, _null, _null, _null, _null, _null), _null, _null, true, false, _null)); return A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 46, A.Row$(t4, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_0, backgroundColor, 4, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.EntityTopFilterHeader_build_closure.prototype = { call$1(action) { return action != null; }, $signature: 403 }; A.EntityTopFilterHeader_build_closure0.prototype = { call$0() { var t1 = this.uiState.filterStack._list, entityType = t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(); entityType.toString; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), entityType) && this.state.prefState.isViewerFullScreen$1(entityType)) A.viewEntitiesByType(entityType, null); else { t1 = B.JSArray_methods.get$last(t1); this.store.get$_dispatchers()[0].call$1(new A.FilterByEntity(t1, false)); } }, $signature: 1 }; A.EntityTopFilterHeader_build_closure2.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, !this.prefState.isFilterVisible, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.EntityTopFilterHeader_build_closure1.prototype = { call$0() { A.editEntity(null, this.filterEntity, true, null); }, $signature: 1 }; A.EntityTopFilterHeader_build_closure4.prototype = { call$1(action) { var _this = this, _null = null, label = _this.localization.lookup$1(A.S(action)), t1 = A.getEntityActionIcon(action), t2 = _this.state.isSaving, t3 = t2 ? _null : _this.textStyle; t2 = t2 ? _null : new A.EntityTopFilterHeader_build__closure(_this.filterEntity, action); return A.OutlinedButton$(new A.IconText(label, t1, t3, _null, _null), _null, t2, _null); }, $signature: 404 }; A.EntityTopFilterHeader_build__closure.prototype = { call$0() { A.handleEntitiesActions(A._setArrayType([this.filterEntity], type$.JSArray_legacy_BaseEntity), this.action, false); }, $signature: 1 }; A.EntityTopFilterHeader_build_closure3.prototype = { call$2(context, remaining) { var _this = this, _null = null; return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, A.Row$(A._setArrayType([A.Text$(_this.localization.get$more(), _null, _null, _null, _null, _null, _this.textStyle, _null, _null, _null), new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, _this.state.get$headerTextColor(), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, new A.EntityTopFilterHeader_build__closure0(_this.entityActions, remaining), new A.EntityTopFilterHeader_build__closure1(_this.filterEntity), B.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction); }, $signature: 407 }; A.EntityTopFilterHeader_build__closure1.prototype = { call$1(action) { A.handleEntitiesActions(A._setArrayType([this.filterEntity], type$.JSArray_legacy_BaseEntity), action, false); }, $signature: 263 }; A.EntityTopFilterHeader_build__closure0.prototype = { call$1(context) { var t2, t1 = this.entityActions; t1 = B.JSArray_methods.sublist$1(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t1.get$length(t1) - this.remaining); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); return A.List_List$of(new A.MappedListIterable(t1, new A.EntityTopFilterHeader_build___closure(context), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 410 }; A.EntityTopFilterHeader_build___closure.prototype = { call$1(action) { var _null = null, t1 = this.context, t2 = A.Icon$(A.getEntityActionIcon(action), A.Theme_of(t1).colorScheme.secondary, _null); t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(J.toString$0$(action)); return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.legacy_EntityAction); }, $signature: 365 }; A.EntityTopFilterHeader_build_closure5.prototype = { call$0() { var t1 = this.uiState.filterStack._list; t1 = t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(); this.store.get$_dispatchers()[0].call$1(new A.ToggleViewerLayout(t1)); }, $signature: 1 }; A.FormCard.prototype = { build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = _this.child, t2 = t1 == null; if (t2) { t3 = _this.children; t3 = t3 == null || t3.length === 0; } else t3 = false; if (t3) return new A.SizedBox(_null, _null, _null, _null); t3 = _this.padding; if (t3 == null) if (_this.forceNarrow) { t3 = Math.max((context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx - 510) / 2, 16); t3 = new A.EdgeInsets(t3, 0, t3, 0); } else t3 = new A.EdgeInsets(12, 12, 12, _this.isLast ? 12 : 0); t4 = A.BorderRadius$circular(2); t5 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode; t6 = _this.internalPadding; if (t6 == null) t6 = B.EdgeInsets_16_16_16_16; if (!!t2) { t1 = _this.crossAxisAlignment; if (t1 == null) t1 = B.CrossAxisAlignment_2; t1 = A.Container$(_null, A.Column$(_this.children, t1, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, _null, _this.constraints, _null, _null, _null, _null, _null, _null, _null, _null, 1 / 0); } return new A.Padding(t3, A.FocusTraversalGroup$(A.Card$(new A.AppBorder(new A.Padding(t6, t1, _null), _null, _null, _null, !t5, _null), _null, _null, 4, _null, true, new A.RoundedRectangleBorder(t4, B.BorderSide_0CF)), true, true, _null), _null); } }; A.AppDropdownButton.prototype = { build$1(_, context) { var isEmpty, t6, t7, dropDownButton, _this = this, _null = null, checkedValue = _this.value, t1 = _this.items, t2 = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)), t3 = _this.$ti, t4 = t3._eval$1("1*"), t5 = A._arrayInstanceType(t2)._eval$1("@<1>")._bind$1(t4)._eval$1("MappedListIterable<1,2>"); if (!B.JSArray_methods.contains$1(A.List_List$of(new A.MappedListIterable(t2, new A.AppDropdownButton_build_closure(_this), t5), true, t5._eval$1("ListIterable.E")), checkedValue)) checkedValue = _this.blankValue; isEmpty = checkedValue == null || J.$eq$(checkedValue, ""); t2 = _this.labelText; t5 = t2 != null; t6 = _this.enabled ? _this.onChanged : _null; t3 = A._setArrayType([], t3._eval$1("JSArray*>")); if (_this.showBlank || isEmpty) { t7 = _this.blankLabel; t7 = t7 == null ? new A.SizedBox(_null, _null, _null, _null) : A.Text$(t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3.push(A.DropdownMenuItem$(t7, _null, _this.blankValue, t4)); } B.JSArray_methods.addAll$1(t3, t1); dropDownButton = new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, t5, true, 48, t3, t6, _this.selectedItemBuilder, _null, _null, checkedValue, t4), _null); if (t5) { t1 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); dropDownButton = A.InputDecorator$(_null, dropDownButton, t1, false, isEmpty && _this.blankLabel == null, false, false, _null, _null); } return dropDownButton; }, get$value(receiver) { return this.value; } }; A.AppDropdownButton_build_closure.prototype = { call$1(option) { return option.value; }, $signature() { return this.$this.$ti._eval$1("1*(DropdownMenuItem<1*>*)"); } }; A.AppForm.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.child; if (t1 == null) t1 = new A.ScrollableListView(_this.children, _null, _null, _null); return A.FocusScope$(false, A.Form$(_null, t1, _this.formKey), _null, _this.focusNode); } }; A.AppTabForm.prototype = { build$1(_, context) { var _this = this, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = _this.tabBarKey; if (t1 == null) t1 = new A.ValueKey(state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int); return A.FocusScope$(false, A.Form$(null, A.TabBarView$(_this.children, _this.tabController, t1), _this.formKey), null, _this.focusNode); } }; A.AppTabBar.prototype = { build$1(_, context) { var _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), tabBar = A.TabBar$(_this.controller, A.Theme_of(context).colorScheme.secondary, _this.isScrollable, _null, _this.onTap, _this.tabs); if (state.prefState.enableDarkMode || !state.get$hasAccentColor()) return tabBar; return new A.Theme(A.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.TabBarTheme(_null, _null, B.Color_4278190080, _null, _null, A.Color$fromARGB(166, 0, 0, 0), _null, _null, _null, _null), _null, _null, _null), tabBar, _null); } }; A.AppToggleButtons.prototype = { build$1(_, context) { return new A.LayoutBuilder(new A.AppToggleButtons_build_closure(this), null); } }; A.AppToggleButtons_build_closure.prototype = { call$2(context, constraints) { var isSelected, _null = null, t1 = {}, t2 = A.calculateLayout(context), t3 = constraints.maxWidth, t4 = this.$this, t5 = t4.tabLabels, t6 = t5.length, toggleWidth = (t3 - 36) / t6; t1.toggleWidth = toggleWidth; if (t2 !== B.AppLayout_mobile) t1.toggleWidth = toggleWidth - 46 / t6; if (t6 === 4) { t2 = t4.selectedIndex; if (t2 === 0) { t2 = A._setArrayType([true, false, false, false], type$.JSArray_legacy_bool); isSelected = t2; } else { if (t2 === 1) t2 = A._setArrayType([false, true, false, false], type$.JSArray_legacy_bool); else { t3 = type$.JSArray_legacy_bool; t2 = t2 === 2 ? A._setArrayType([false, false, true, false], t3) : A._setArrayType([false, false, false, true], t3); } isSelected = t2; } } else if (t6 === 3) { t2 = t4.selectedIndex; if (t2 === 0) t2 = A._setArrayType([true, false, false], type$.JSArray_legacy_bool); else { t3 = type$.JSArray_legacy_bool; t2 = t2 === 1 ? A._setArrayType([false, true, false], t3) : A._setArrayType([false, false, true], t3); } isSelected = t2; } else { t2 = type$.JSArray_legacy_bool; t2 = t4.selectedIndex === 0 ? A._setArrayType([true, false], t2) : A._setArrayType([false, true], t2); isSelected = t2; } t2 = A.instanceType(t5)._eval$1("MappedListIterable<1,Container*>"); return new A.Padding(B.EdgeInsets_0_0_0_20, A.ToggleButtons$(_null, A.List_List$of(new A.MappedListIterable(t5, new A.AppToggleButtons_build__closure(t1), t2), true, t2._eval$1("ListIterable.E")), _null, _null, isSelected, new A.AppToggleButtons_build__closure0(t4), true, _null, _null), _null); }, $signature: 2158 }; A.AppToggleButtons_build__closure.prototype = { call$1(label) { var _null = null, t1 = this._box_0.toggleWidth; return A.Container$(_null, A.Center$(A.Text$(label[0].toUpperCase() + J.substring$1$s(label, 1), _null, 1, B.TextOverflow_0, _null, _null, _null, _null, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, 40, _null, _null, _null, _null, _null, t1); }, $signature: 2159 }; A.AppToggleButtons_build__closure0.prototype = { call$1(index) { return this.$this.onTabChanged.call$1(index); }, $signature: 180 }; A.BoolDropdownButton.prototype = { build$1(_, context) { var t3, _showBlank, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), trueLabel = _this.enabledLabel, t2 = trueLabel == null, trueLabel0 = t2 ? t1.get$enabled(t1) : trueLabel, falseLabel = _this.disabledLabel; if (falseLabel == null) falseLabel = t1.get$disabled(t1); t3 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").uiState.settingsUIState.entityType === B.EntityType_company; _showBlank = !t3; if (t3) t1 = t2 || trueLabel === t1.get$yes(); else t1 = false; if (t1) { t1 = A.Text$(_this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = _this.iconData; t2 = t2 != null && A.getLayout(context) === B.AppLayout_desktop ? A.Icon$(t2, _null, _null) : _null; t3 = A.Theme_of(context).colorScheme; t4 = _this.helpLabel; t4 = t4 != null ? A.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null) : _null; return new A.Padding(B.EdgeInsets_0_12_0_0, A.SwitchListTile$(t3.secondary, _null, new A.BoolDropdownButton_build_closure(_this), t2, t4, t1, _this.value === true), _null); } t1 = _showBlank ? _null : B._NoInputBorder_sqK; t1 = A.InputDecoration$(_null, t1, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = _this.value; t3 = A.S(t2 == null ? "" : t2); if (_showBlank) { t4 = type$.legacy_bool; t5 = type$.JSArray_legacy_DropdownMenuItem_legacy_bool; t5 = A._setArrayType(A._setArrayType([A.DropdownMenuItem$(A.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, type$.Null), A.DropdownMenuItem$(A.Text$(falseLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, false, t4), A.DropdownMenuItem$(A.Text$(trueLabel0, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, true, t4)], t5).slice(0), t5); t2 = new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, true, true, 48, t5, new A.BoolDropdownButton_build_closure0(_this), _null, _null, _null, t2, t4), _null); } else { t4 = A.getLayout(context) === B.AppLayout_desktop ? B.Axis_0 : B.Axis_1; t5 = _this.minWidth; t6 = t5 == null; t7 = t6 ? 130 : t5; t8 = type$.legacy_bool; t9 = type$.JSArray_legacy_Widget; t7 = A.InkWell$(false, _null, true, new A.ConstrainedBox(new A.BoxConstraints(t7, 1 / 0, 36, 1 / 0), A.Row$(A._setArrayType([new A.IgnorePointer(true, _null, A.Radio$(A.Theme_of(context).colorScheme.secondary, false, t2, _null, new A.BoolDropdownButton_build_closure1(), false, false, t8), _null), A.Text$(falseLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.SizedBox(16, _null, _null, _null)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.BoolDropdownButton_build_closure2(_this), _null, _null, _null, _null, _null, _null); if (t6) t5 = 120; t4 = new A.Padding(B.EdgeInsets_0_4_0_0, A.Flex$(A._setArrayType([t7, A.InkWell$(false, _null, true, new A.ConstrainedBox(new A.BoxConstraints(t5, 1 / 0, 36, 1 / 0), A.Row$(A._setArrayType([new A.IgnorePointer(true, _null, A.Radio$(A.Theme_of(context).colorScheme.secondary, false, t2, _null, new A.BoolDropdownButton_build_closure3(), false, true, t8), _null), A.Text$(trueLabel0, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.SizedBox(16, _null, _null, _null)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.BoolDropdownButton_build_closure4(_this), _null, _null, _null, _null, _null, _null)], t9), B.CrossAxisAlignment_2, t4, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, _null, _null, B.VerticalDirection_1), _null); t2 = t4; } return A.InputDecorator$(_null, t2, t1, false, t3.length === 0, false, false, _null, _null); }, get$value(receiver) { return this.value; } }; A.BoolDropdownButton_build_closure.prototype = { call$1(value) { return this.$this.onChanged.call$1(value); }, $signature: 10 }; A.BoolDropdownButton_build_closure0.prototype = { call$1(value) { return this.$this.onChanged.call$1(value); }, $signature: 10 }; A.BoolDropdownButton_build_closure2.prototype = { call$0() { return this.$this.onChanged.call$1(false); }, $signature: 9 }; A.BoolDropdownButton_build_closure1.prototype = { call$1(value) { return null; }, $signature: 20 }; A.BoolDropdownButton_build_closure4.prototype = { call$0() { return this.$this.onChanged.call$1(true); }, $signature: 9 }; A.BoolDropdownButton_build_closure3.prototype = { call$1(value) { return null; }, $signature: 20 }; A.ClientPicker.prototype = { build$1(_, context) { var t2, t3, t4, t5, t6, _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t1 = t1.get$client(t1); t2 = $.$get$memoizedDropdownClientList(); t3 = _this.clientState; t4 = t3.map; t3 = t3.list; t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; return A.EntityDropdown$(true, false, _this.autofocus, _this.clientId, t2.call$4(t4, t3, t5._list[t6].userState.map, state.staticState), t4, B.EntityType_client, _this.excludeIds, t1, _this.onAddPressed, null, _this.onSelected, null, null, new A.ClientPicker_build_closure(context)); } }; A.ClientPicker_build_closure.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectAClient() : null; }, $signature: 15 }; A.FormColorPicker.prototype = { createState$0() { return new A._FormColorPickerState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), new A.Debouncer(500, false), A._setArrayType([B.MaterialColor_Map_JNc9P_4294198070, B.MaterialColor_Map_JN0o6_4293467747, B.MaterialColor_Map_JNNS7_4288423856, B.MaterialColor_Map_JNEyN_4284955319, B.MaterialColor_Map_JN8qN_4282339765, A.convertHexStringToColor("#2F7DC3"), B.MaterialColor_Map_JNwaj_4280391411, B.MaterialColor_Map_JN94k_4278238420, B.MaterialColor_Map_JN0Sr_4278228616, B.MaterialColor_Map_JNEaM_4283215696, B.MaterialColor_Map_JNJAl_4287349578, B.MaterialColor_Map_JNQQJ_4291681337, B.MaterialColor_Map_JNHRl_4294961979, B.MaterialColor_Map_JNsy5_4294951175, B.MaterialColor_Map_JNZaB_4294940672, B.MaterialColor_Map_JNUn6_4294924066, B.MaterialColor_Map_HFpTk_4288585374, B.MaterialColor_Map_JNy8A_4284513675, B.Color_4278190080], type$.JSArray_legacy_Color), B._StateLifecycle_0); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); } }; A._FormColorPickerState.prototype = { initState$0() { this.super$State$initState(); }, didChangeDependencies$0() { var _this = this, t1 = _this._color_picker$_textController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._controllers = t2; B.JSArray_methods.forEach$1(t2, new A._FormColorPickerState_didChangeDependencies_closure(_this)); t2 = _this._widget.initialValue; t1.set$text(0, t2); _this._selectedColor = t2; t2 = _this._controllers; (t2 && B.JSArray_methods).forEach$1(t2, new A._FormColorPickerState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _color_picker$_onChanged$0() { this._color_picker$_debouncer.run$1(new A._FormColorPickerState__onChanged_closure(this)); }, _selectColor$1(color) { if (color != null && color.length !== 7) return; this.setState$1(new A._FormColorPickerState__selectColor_closure(this, color)); }, dispose$0(_) { var t1 = this._color_picker$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, _showPicker$0() { var color, t3, color0, theme, colors, _this = this, t1 = {}, t2 = _this._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); _this._selectedColor = null; color = t1.color = B.Color_4278190080; t3 = _this._widget.initialValue; if (t3 != null && t3.length !== 0) { color0 = A.convertHexStringToColor(t3); t1.color = color0 == null ? color : color0; } t3 = _this._framework$_element; t3.toString; theme = A._lateReadCheck(A.StoreProvider_of(t3, type$.legacy_AppState).__Store__state, "_state").prefState.colorTheme; colors = $.$get$colorThemesMap().$index(0, theme); t3 = _this._framework$_element; t3.toString; A.showDialog(null, true, new A._FormColorPickerState__showPicker_closure(t1, _this, colors, t2), t3, null, true, type$.legacy_AlertDialog); }, build$1(_, context) { var t2, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._widget.labelText; if (t1 == null) { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "color"); if (t1 == null) t1 = ""; } t1 = A.DecoratedFormField$(false, _null, false, false, _this._color_picker$_textController, _null, true, _null, "#000000", _null, _null, false, false, _null, B.TextInputType_0_null_null, t1, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t2 = _this.get$_showPicker(); t3 = _this._selectedColor; if (t3 == null) t3 = B.MaterialColor_Map_HFpTk_4288585374; else { t3 = A.convertHexStringToColor(t3); if (t3 == null) t3 = B.MaterialColor_Map_HFpTk_4288585374; } t4 = A.Border_Border$all(B.Color_1627389952, 1); t5 = A.getLayout(context) === B.AppLayout_mobile ? 25 : 100; t6 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([A.InkWell$(false, _null, true, A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(t3, _null, t4, _null, _null, _null, B.BoxShape_0), _null, 25, _null, _null, _null, _null, _null, t5), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null), new A.SizedBox(10, _null, _null, _null)], t6); _this._widget.toString; t3 = _this._selectedColor; if (t3 != null) t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._FormColorPickerState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null)); else t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57724_MaterialIcons_null_false, _null, _null), _null, t2, B.EdgeInsets_8_8_8_8, _null, _null, _null)); return new A.Stack(B.Alignment_1_0, _null, B.StackFit_0, B.Clip_1, A._setArrayType([t1, A.Row$(t5, B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null)], t6), _null); } }; A._FormColorPickerState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_color_picker$_onChanged()); }, $signature: 12 }; A._FormColorPickerState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_color_picker$_onChanged()); }, $signature: 12 }; A._FormColorPickerState__onChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._selectColor$1(J.trim$0$s(t1._color_picker$_textController._change_notifier$_value.text)); }, $signature: 1 }; A._FormColorPickerState__selectColor_closure.prototype = { call$0() { var t1 = this.$this, t2 = this.color; t1._selectedColor = t2; t1._widget.onSelected$1(t2); }, $signature: 1 }; A._FormColorPickerState__showPicker_closure.prototype = { call$1(context) { var _this = this, _null = null, t1 = _this.$this, t2 = A.List_List$of(t1._defaultColors, true, type$.legacy_Color), t3 = _this.colors; t2.push(t3.colorInfo); t2.push(t3.colorPrimary); t2.push(t3.colorSuccess); t2.push(t3.colorWarning); t2.push(t3.colorDanger); t2 = A.SingleChildScrollView$(new A.BlockPicker(_this._box_0.color, new A._FormColorPickerState__showPicker__closure(t1), t2, _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t3 = _this.localization; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t3.get$cancel(t3).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FormColorPickerState__showPicker__closure0(context), _null), A.TextButton$(false, A.Text$(t3.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FormColorPickerState__showPicker__closure1(t1, context), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t2, B.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 165 }; A._FormColorPickerState__showPicker__closure.prototype = { call$1(color) { this.$this._pendingColor = A.convertColorToHexString(color); }, $signature: 2163 }; A._FormColorPickerState__showPicker__closure0.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._FormColorPickerState__showPicker__closure1.prototype = { call$0() { var t1 = this.$this; t1._selectColor$1(t1._pendingColor); t1._color_picker$_textController.set$text(0, t1._pendingColor); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._FormColorPickerState_build_closure.prototype = { call$0() { var t1 = this.$this; t1._color_picker$_textController.set$text(0, ""); t1._selectColor$1(null); }, $signature: 1 }; A.CustomField.prototype = { createState$0() { return new A._CustomFieldState(B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, get$value(receiver) { return this.value; } }; A._CustomFieldState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.controller; if (t2 == null) t2 = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); _this._custom_field$_controller = t2; t1 = t1.value; t2.set$text(0, t1 == null ? "" : t1); _this._custom_field$_value = _this._widget.value; }, dispose$0(_) { var t1; if (this._widget.controller == null) { t1 = this._custom_field$_controller; t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; } this.super$State$dispose(0); }, build$1(_, context) { var fieldLabel, fieldType, fieldOptions, t3, t4, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, company = t1._list[t2].userCompany.company; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); fieldLabel = company.getCustomFieldLabel$1(_this._widget.field); if ((fieldLabel == null ? "" : fieldLabel).length === 0) return new A.SizedBox(_null, _null, _null, _null); fieldType = company.getCustomFieldType$1(_this._widget.field); fieldOptions = company.getCustomFieldValues$1(_this._widget.field); switch (fieldType) { case "single_line_text": t1 = _this._custom_field$_controller; t2 = _this._widget; t3 = t2.hideFieldLabel ? _null : fieldLabel; return A.DecoratedFormField$(false, _null, false, false, t1, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, 1, _null, false, t2.onChanged, _null, t2.onSavePressed, true, _null, _null, B.TextAlign_4, _null); case "multi_line_text": t1 = _this._custom_field$_controller; t2 = _this._widget; t3 = t2.hideFieldLabel ? _null : fieldLabel; return A.DecoratedFormField$(false, _null, false, false, t1, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3, 3, _null, false, t2.onChanged, _null, t2.onSavePressed, true, _null, _null, B.TextAlign_4, _null); case "switch": t1 = _this._widget; t3 = t1.value; t3 = t3 == null ? _null : t3 === "yes"; t1 = t1.hideFieldLabel ? "" : fieldLabel; t4 = t2.get$yes(); return A.BoolDropdownButton$(t2.get$no(), t4, _null, _null, t1, _null, new A._CustomFieldState_build_closure(_this), t3); case "date": t1 = _this._widget; t2 = t1.hideFieldLabel ? _null : fieldLabel; return A.DatePicker$(false, _null, _null, t2, _null, new A._CustomFieldState_build_closure0(_this), t1.value, _null); case "dropdown": t1 = _this._custom_field$_value; t2 = A._arrayInstanceType(fieldOptions)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t2 = A.List_List$of(new A.MappedListIterable(fieldOptions, new A._CustomFieldState_build_closure1(), t2), true, t2._eval$1("ListIterable.E")); t3 = _this._widget.hideFieldLabel ? _null : fieldLabel; return A.AppDropdownButton$(_null, "", true, t2, _null, t3, new A._CustomFieldState_build_closure2(_this), _null, false, t1, type$.legacy_String); default: return new A.SizedBox(_null, _null, _null, _null); } } }; A._CustomFieldState_build_closure.prototype = { call$1(value) { var t1 = this.$this, t2 = t1._custom_field$_controller; t2.set$text(0, value ? "yes" : "no"); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value ? "yes" : "no"); }, $signature: 20 }; A._CustomFieldState_build_closure0.prototype = { call$2(date, _) { var t2, t1 = this.$this; t1._custom_field$_controller.set$text(0, date); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(date); }, $signature: 53 }; A._CustomFieldState_build_closure1.prototype = { call$1(option) { var _null = null; return A.DropdownMenuItem$(A.Text$(option, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.legacy_String); }, $signature: 43 }; A._CustomFieldState_build_closure2.prototype = { call$1(value) { var t2, t1 = this.$this; t1.setState$1(new A._CustomFieldState_build__closure(t1, value)); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value); }, $signature: 7 }; A._CustomFieldState_build__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._custom_field$_controller, t3 = this.value; t1._custom_field$_value = t3; t2.set$text(0, t3); }, $signature: 1 }; A.CustomSurcharges.prototype = { build$1(_, context) { var _this = this, _null = null, _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, company = t1._list[t2].userCompany.company; t2 = A._setArrayType([], type$.JSArray_legacy_Widget); if (company.getCustomFieldLabel$1(_s10_).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes1)) t1 = !t1 && company.enableCustomSurchargeTaxes1; else t1 = true; } else t1 = false; if (t1) t2.push(A.DecoratedFormField$(false, _null, false, false, _this.surcharge1Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_0).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes2)) t1 = !t1 && company.enableCustomSurchargeTaxes2; else t1 = true; } else t1 = false; if (t1) t2.push(A.DecoratedFormField$(false, _null, false, false, _this.surcharge2Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_0), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_1).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes3)) t1 = !t1 && company.enableCustomSurchargeTaxes3; else t1 = true; } else t1 = false; if (t1) t2.push(A.DecoratedFormField$(false, _null, false, false, _this.surcharge3Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_1), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_2).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes4)) t1 = !t1 && company.enableCustomSurchargeTaxes4; else t1 = true; } else t1 = false; if (t1) t2.push(A.DecoratedFormField$(false, _null, false, false, _this.surcharge4Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_2), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); return A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }; A.DatePicker.prototype = { createState$0() { return new A._DatePickerState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); }, onSelected$2(arg0, arg1) { return this.onSelected.call$2(arg0, arg1); }, get$message(receiver) { return this.message; } }; A._DatePickerState.prototype = { initState$0() { this.super$State$initState(); this._date_picker$_focusNode.addListener$1(0, this.get$_onFoucsChanged()); }, didChangeDependencies$0() { var t2, _this = this, t1 = _this._widget.selectedDate; if ((t1 == null ? "" : t1).length !== 0) { t2 = _this._framework$_element; t2.toString; _this._textController.set$text(0, A.formatDate(t1, t2, true, true, false)); } _this.super$State$didChangeDependencies(); }, _onFoucsChanged$0() { var t1, t2, _this = this; if (!_this._date_picker$_focusNode.get$hasFocus()) { t1 = _this._widget.selectedDate; t2 = _this._framework$_element; t2.toString; _this._textController.set$text(0, A.formatDate(t1, t2, true, true, false)); _this.setState$1(new A._DatePickerState__onFoucsChanged_closure(_this)); } }, dispose$0(_) { var _this = this, t1 = _this._textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; t1 = _this._date_picker$_focusNode; t1.removeListener$1(0, _this.get$_onFoucsChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showDatePicker$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, store, selectedDate, date, t1, firstDate, t2, initialDate; var $async$_showDatePicker$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = Date.now(); firstDate = new A.DateTime(t1, false); t2 = $async$self._widget.selectedDate; initialDate = t2 != null && t2.length !== 0 ? A.DateTime_tryParse(t2) : new A.DateTime(Date.now(), false); if ($async$self._widget.firstDate != null) { if (initialDate._value < t1) firstDate = initialDate; } else { t1 = A.Primitives_valueFromDecomposedDate(1920, 1, 1, 0, 0, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); firstDate = new A.DateTime(t1, false); } t1 = $async$self._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = $async$self._framework$_element; t1.toString; t2 = A.Primitives_valueFromDecomposedDate(2101, 1, 1, 0, 0, 0, 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); $async$goto = 2; return A._asyncAwait(A.showDatePicker(t1, firstDate, initialDate, new A.DateTime(t2, false), A.AppLocalization_createLocale(A.localeSelector(A._lateReadCheck(store.__Store__state, "_state"), false))), $async$_showDatePicker$0); case 2: // returning from await. selectedDate = $async$result; if (selectedDate != null) { date = A.convertDateTimeToSqlDate(selectedDate); t1 = $.$get$navigatorKey(); t1.toString; $async$self._textController.set$text(0, A.formatDate(date, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), true, true, false)); $async$self._widget.onSelected$2(date, false); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_showDatePicker$0, $async$completer); }, build$1(_, context) { var t3, _this = this, _null = null, t1 = _this._widget, label = t1.labelText, t2 = t1.message; if (t2 != null) { t1 = t1.selectedDate; t1 = (t1 == null ? "" : t1).length === 0; } else t1 = false; if (t1) label = J.$add$ansx(label, " \u2022 " + A.S(t2)); t1 = _this._widget.validator; t2 = _this._pendingValue; if (t2 == null) t2 = label; if (t2 == null) t2 = ""; t3 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57782_MaterialIcons_null_false, _null, _null), _null, new A._DatePickerState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null); return A.DecoratedFormField$(false, _null, false, false, _this._textController, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null), true, _this._date_picker$_focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A._DatePickerState_build_closure0(_this, context), _null, _null, true, _null, _null, B.TextAlign_4, t1); } }; A._DatePickerState__onFoucsChanged_closure.prototype = { call$0() { this.$this._pendingValue = null; }, $signature: 1 }; A._DatePickerState_build_closure.prototype = { call$0() { return this.$this._showDatePicker$0(); }, $signature: 0 }; A._DatePickerState_build_closure0.prototype = { call$1(value) { var t2, dateAsNumber, year, parts, firstPart, secondPart, t3, state, countryId, date, exception, t4, firstDateSql, _this = this, t1 = {}; value = value; t2 = value; t2.toString; if (J.get$length$asx(t2) === 0) _this.$this._widget.onSelected$2("", false); else { t1.date = ""; t2 = value; t2 = A.stringReplaceAllUnchecked(t2, "/", ""); dateAsNumber = A.stringReplaceAllUnchecked(t2, "\\", ""); t2 = A.RegExp_RegExp("[^\\d]", true, false, false, false); if (A.stringReplaceAllUnchecked(dateAsNumber, t2, "") === dateAsNumber || J.get$length$asx(value) <= 5) { year = A.Primitives_getYear(new A.DateTime(Date.now(), false)); if (J.contains$1$asx(value, "/")) { parts = J.split$1$s(value, "/"); firstPart = J.get$length$asx(parts[0]) === 1 ? B.JSString_methods.$add("0", parts[0]) : parts[0]; secondPart = J.get$length$asx(parts[1]) === 1 ? B.JSString_methods.$add("0", parts[1]) : parts[1]; if (parts.length === 3) { year = A.parseInt(parts[2], false); if (year < 100) year += 2000; } } else if (J.contains$1$asx(value, "\\")) { parts = J.split$1$s(value, "\\"); secondPart = J.get$length$asx(parts[0]) === 1 ? B.JSString_methods.$add("0", parts[0]) : parts[0]; firstPart = J.get$length$asx(parts[1]) === 1 ? B.JSString_methods.$add("0", parts[1]) : parts[1]; if (parts.length === 3) { year = A.parseInt(parts[2], false); if (year < 100) year += 2000; } } else { t2 = value; t3 = A.RegExp_RegExp("[^0-9]", true, false, false, false); value = A.stringReplaceAllUnchecked(t2, t3, ""); if (J.get$length$asx(value) <= 2) { if (J.get$length$asx(value) === 1) value = "0" + A.S(value); firstPart = value; secondPart = "01"; } else if (J.get$length$asx(value) === 3) if (J.substring$2$s(value, 0, 1) === "0") { firstPart = J.substring$2$s(value, 0, 2); secondPart = "0" + J.substring$2$s(value, 2, 3); } else { firstPart = "0" + J.substring$2$s(value, 0, 1); secondPart = J.substring$2$s(value, 1, 3); } else { if (J.get$length$asx(value) === 5) value = "0" + A.S(value); firstPart = J.substring$2$s(value, 0, 2); secondPart = J.substring$2$s(value, 2, 4); if (J.get$length$asx(value) === 6) { year = A.Primitives_parseInt(J.substring$2$s(value, 4, 6), null); year = year < 30 ? year + 2000 : year + 1900; } else if (J.get$length$asx(value) === 8) year = A.Primitives_parseInt(J.substring$2$s(value, 4, 8), null); } } state = A._lateReadCheck(A.StoreProvider_of(_this.context, type$.legacy_AppState).__Store__state, "_state"); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; countryId = t2._list[t3].userCompany.company.settings.countryId; t2 = A.S(firstPart); t3 = A.S(secondPart); value = B.JSArray_methods.contains$1(A._setArrayType(["840", "124"], type$.JSArray_legacy_String), countryId) ? t2 + t3 : t3 + t2; if (J.get$length$asx(value) === 4) value = A.S(year) + A.S(value); date = A.convertDateTimeToSqlDate(A.DateTime_tryParse(value)); t1.date = date; t2 = date; } else try { date = A.parseDate(value, _this.context); t1.date = date; t2 = date; } catch (exception) { return; } t3 = _this.$this; t4 = t3._widget.firstDate; if (t4 != null) { firstDateSql = A.convertDateTimeToSqlDate(t4); if (J.compareTo$1$ns(firstDateSql, t2) > 0) { t1.date = firstDateSql; t2 = firstDateSql; } } if ((t2 == null ? "" : t2).length !== 0) t3._widget.onSelected$2(t2, true); t3.setState$1(new A._DatePickerState_build__closure(t1, t3, _this.context)); } }, $signature: 11 }; A._DatePickerState_build__closure.prototype = { call$0() { this.$this._pendingValue = A.formatDate(this._box_0.date, this.context, true, true, false); }, $signature: 1 }; A.DecoratedFormField.prototype = { createState$0() { return new A._DecoratedFormFieldState(B._StateLifecycle_0); }, onFieldSubmitted$1(arg0) { return this.onFieldSubmitted.call$1(arg0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, onSavePressed$1(arg0) { return this.onSavePressed.call$1(arg0); } }; A._DecoratedFormFieldState.prototype = { build$1(_, context) { var hasValue, enterShouldSubmit, inputDecoration, t3, icon, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, t1 = _this._widget, iconButton = t1.suffixIconButton, t2 = t1.initialValue; if ((t2 == null ? "" : t2).length === 0) { t1 = t1.controller; t1 = t1 == null ? _null : t1._change_notifier$_value.text; hasValue = (t1 == null ? "" : t1).length !== 0; } else hasValue = true; if (A.getLayout(context) === B.AppLayout_desktop) { t1 = _this._widget; if (t1.onSavePressed != null) { t1 = t1.maxLines; t1 = (t1 == null ? 1 : t1) <= 1; enterShouldSubmit = t1; } else enterShouldSubmit = false; } else enterShouldSubmit = false; if (_this._showClear) { t1 = _this._widget; t1 = t1.showClear && hasValue && t1.key == null && t1.controller != null; } else t1 = false; if (t1) { t1 = _this._widget; if (t1.suffixIconButton == null && t1.suffixIcon == null && t1.enabled) iconButton = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._DecoratedFormFieldState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null); } t1 = _this._widget; inputDecoration = t1.decoration; if (!(inputDecoration != null)) { t2 = t1.label; t3 = t2 == null; if (t3 && t1.hint == null) inputDecoration = _null; else { icon = t1.suffixIcon; if (icon == null) icon = iconButton; if (icon == null) icon = t1.isPercent ? A.Icon$(B._MdiIconData_egL, _null, 16) : icon; t4 = t3 ? "" : t2; t5 = t1.hint; t6 = t5 == null; t7 = t6 ? "" : t5; t8 = icon == null ? _null : icon; if ((t6 ? "" : t5).length !== 0) t2 = (t3 ? "" : t2).length === 0; else t2 = false; inputDecoration = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, t2 ? B.FloatingLabelBehavior_2 : B.FloatingLabelBehavior_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, t7, _null, _null, _null, _null, false, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, t8, _null, _null, _null, _null); } } t2 = t1.label; t3 = t1.focusNode; t4 = t1.controller; t5 = t1.autofocus; t6 = t1.validator; t7 = t1.keyboardType; t8 = t1.maxLines; if (t8 == null) t8 = 1; t9 = t1.minLines; t10 = t1.autovalidate ? B.AutovalidateMode_2 : B.AutovalidateMode_0; t11 = t1.obscureText; t1 = t1.initialValue; if (t7.$eq(0, B.TextInputType_1_null_null)) t12 = B.TextInputAction_12; else t12 = enterShouldSubmit ? B.TextInputAction_2 : B.TextInputAction_6; t13 = _this._widget; t14 = t13.inputFormatters; t15 = t13.enabled; return A.TextFormField$(false, t13.autofillHints, t5, t10, t4, inputDecoration, t15, false, t3, t1, t14, new A.ValueKey(t2, type$.ValueKey_legacy_String), t7, t8, t9, t11, new A._DecoratedFormFieldState_build_closure0(_this), _null, new A._DecoratedFormFieldState_build_closure1(_this, enterShouldSubmit, context), _null, false, _null, _null, t13.textAlign, t12, t6); } }; A._DecoratedFormFieldState_build_closure.prototype = { call$0() { var t1 = this.$this; t1._widget.controller.set$text(0, ""); t1.setState$1(new A._DecoratedFormFieldState_build__closure(t1)); }, $signature: 1 }; A._DecoratedFormFieldState_build__closure.prototype = { call$0() { this.$this._showClear = false; }, $signature: 1 }; A._DecoratedFormFieldState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1._showClear = true; t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value); }, $signature: 11 }; A._DecoratedFormFieldState_build_closure1.prototype = { call$1(value) { var t1 = this.$this, t2 = t1._widget; if (t2.onFieldSubmitted != null) return t2.onFieldSubmitted$1(value); else if (t2.keyboardType.$eq(0, B.TextInputType_1_null_null)) return null; else if (this.enterShouldSubmit) t1._widget.onSavePressed$1(this.context); }, $signature: 67 }; A.DesignPicker.prototype = { build$1(_, context) { var t4, _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, designState = t2._list[t3].designState; t3 = designState.list._list; t2 = A._arrayInstanceType(t3); t4 = t2._eval$1("MappedIterable<1,DropdownMenuItem*>"); t4 = A.List_List$of(new A.MappedIterable(new A.WhereIterable(t3, new A.DesignPicker_build_closure(_this, designState, state), t2._eval$1("WhereIterable<1>")), new A.DesignPicker_build_closure0(designState), t4), true, t4._eval$1("Iterable.E")); t2 = _this.label; t1 = t2 == null ? t1.get$design() : t2; return A.AppDropdownButton$(null, "", true, t4, null, t1, new A.DesignPicker_build_closure1(_this, designState), null, false, _this.initialValue, type$.legacy_String); } }; A.DesignPicker_build_closure1.prototype = { call$1(value) { return this.$this.onSelected.call$1(this.designState.map._map$_map.$index(0, value)); }, $signature: 12 }; A.DesignPicker_build_closure.prototype = { call$1(designId) { var t2, design = this.designState.map._map$_map.$index(0, designId), t1 = this.state; if (t1.get$isHosted()) if (!t1.get$isPaidAccount()) { t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list[t2].userCompany.account.trialDaysLeft <= 0 && !design.isFree; } else t1 = false; else t1 = false; if (t1) return false; return !design.get$isArchived() && !design.isDeleted || designId == this.$this.initialValue; }, $signature: 16 }; A.DesignPicker_build_closure0.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.designState.map._map$_map.$index(0, value).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A.DiscountField.prototype = { build$1(_, context) { var t3, t4, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.label; if (t2 == null) t2 = t1.get$discount(); t2 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, _this.controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), 1); t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "percent"); if (t3 == null) t3 = ""; t4 = type$.legacy_bool; return A.Row$(A._setArrayType([t2, B.SizedBox_10_null_null_null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, A._setArrayType([A.DropdownMenuItem$(A.Text$(t3, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, false, t4), A.DropdownMenuItem$(A.Text$(t1.get$amount(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, true, t4)], type$.JSArray_legacy_DropdownMenuItem_legacy_bool), _this.onTypeChanged, _null, _null, _null, _this.isAmountDiscount, t4), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); }, get$value(receiver) { return this.value; } }; A.DurationPicker.prototype = { createState$0() { return new A._DurationPickerState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); } }; A._DurationPickerState.prototype = { initState$0() { this.super$State$initState(); this._duration_picker$_focusNode.addListener$1(0, this.get$_duration_picker$_onFoucsChanged()); }, didChangeDependencies$0() { var t1 = this._widget.selectedDuration; t1 = t1 != null ? A.formatDuration(t1, true) : ""; this._duration_picker$_textController.set$text(0, t1); this.super$State$didChangeDependencies(); }, _duration_picker$_onFoucsChanged$0() { var t1, duration, _this = this; if (!_this._duration_picker$_focusNode.get$hasFocus()) { t1 = _this._widget; if (t1.selectedDuration == null && _this._pendingDuration != null) t1.onSelected$1(_this._pendingDuration); duration = _this._pendingDuration; if (duration == null) duration = _this._widget.selectedDuration; t1 = duration != null ? A.formatDuration(duration, true) : ""; _this._duration_picker$_textController.set$text(0, t1); _this.setState$1(new A._DurationPickerState__onFoucsChanged_closure(_this)); } }, dispose$0(_) { var _this = this, t1 = _this._duration_picker$_focusNode; t1.removeListener$1(0, _this.get$_duration_picker$_onFoucsChanged()); t1.dispose$0(0); t1 = _this._duration_picker$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; _this.super$State$dispose(0); }, build$1(_, context) { var t2, _this = this, _null = null, t1 = _this._pendingDuration; if (t1 != null) t1 = A.formatDuration(t1, true); else { t1 = _this._widget.labelText; if (t1 == null) t1 = ""; } _this._widget.toString; t2 = A.PopupMenuButton$(B.Icon_MC7, _null, true, _null, _null, new A._DurationPickerState_build_closure(), new A._DurationPickerState_build_closure0(_this), B.EdgeInsets_0_0_0_0, _null, type$.legacy_int); return A.DecoratedFormField$(false, _null, false, false, _this._duration_picker$_textController, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null), true, _this._duration_picker$_focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A._DurationPickerState_build_closure1(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null); } }; A._DurationPickerState__onFoucsChanged_closure.prototype = { call$0() { this.$this._pendingDuration = null; }, $signature: 1 }; A._DurationPickerState_build_closure1.prototype = { call$1(value) { var parts, seconds, t1, duration, t2; if (J.contains$1$asx(value, ":")) { parts = value.split(":"); seconds = A.parseInt(parts[0], false) * 60 * 60; t1 = parts[1]; seconds = J.get$length$asx(t1) === 1 ? seconds + A.parseInt(A.S(t1) + "0", false) * 60 : seconds + A.parseInt(t1, false) * 60; if (parts.length > 2) seconds += A.parseInt(parts[2], false); } else seconds = B.JSNumber_methods.round$0(A.parseDouble(value, false) * 60 * 60); duration = A.Duration$(0, 0, 0, 0, 0, seconds); t1 = this.$this; t2 = t1._widget; if (t2.selectedDuration != null) t2.onSelected$1(duration); t1.setState$1(new A._DurationPickerState_build__closure(t1, duration)); }, $signature: 11 }; A._DurationPickerState_build__closure.prototype = { call$0() { this.$this._pendingDuration = this.duration; }, $signature: 1 }; A._DurationPickerState_build_closure.prototype = { call$1(context) { var t1 = type$.MappedListIterable_of_legacy_int_and_legacy_PopupMenuItem_legacy_int; return A.List_List$of(new A.MappedListIterable(A._setArrayType([15, 30, 45, 60, 75, 90, 105, 120], type$.JSArray_legacy_int), new A._DurationPickerState_build__closure0(), t1), true, t1._eval$1("ListIterable.E")); }, $signature: 2166 }; A._DurationPickerState_build__closure0.prototype = { call$1(minutes) { var _null = null; return A.PopupMenuItem$(A.Text$(A.formatDuration(A.Duration$(0, 0, 0, 0, minutes, 0), false), _null, _null, _null, _null, _null, _null, _null, _null, _null), minutes, type$.legacy_int); }, $signature: 2167 }; A._DurationPickerState_build_closure0.prototype = { call$1(minutes) { var duration = A.Duration$(0, 0, 0, 0, minutes, 0), t1 = this.$this; t1._duration_picker$_textController.set$text(0, A.formatDuration(duration, true)); t1._widget.onSelected$1(duration); }, $signature: 106 }; A.DynamicSelector.prototype = { build$1(_, context) { var t5, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = _this.entityType, entityMap = state.getEntityMap$1(t2), t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; if (!t3._list[t4].userCompany.company.isModuleEnabled$1(t2)) return new A.SizedBox(_null, _null, _null, _null); t3 = _this.entityIds; t4 = J.getInterceptor$asx(t3); t5 = _this.labelText; if (t4.get$length(t3) < 10) { t1 = t5 == null ? t1.lookup$1(t2.toString$0(0)) : t5; return A.AppDropdownButton$(_null, "", true, t4.map$1$1(t3, new A.DynamicSelector_build_closure(_this, entityMap), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t1, new A.DynamicSelector_build_closure0(_this), _null, _this.allowClearing, _this.entityId, type$.legacy_String); } else { t1 = t5 == null ? t1.lookup$1(t2.toString$0(0)) : t5; return A.EntityDropdown$(_this.allowClearing, false, false, _this.entityId, t3, _null, t2, B.List_empty0, t1, _null, _null, new A.DynamicSelector_build_closure1(_this), _null, _this.overrideSuggestedLabel, _null); } } }; A.DynamicSelector_build_closure0.prototype = { call$1(entityId) { return this.$this.onChanged.call$1(entityId); }, $signature: 12 }; A.DynamicSelector_build_closure.prototype = { call$1(entityId) { var _null = null, t1 = this.$this.overrideSuggestedLabel, t2 = this.entityMap; if (t1 != null) t1 = t1.call$1(t2._map$_map.$index(0, entityId)); else { t1 = t2._map$_map.$index(0, entityId); t1 = t1 == null ? _null : t1.get$listDisplayName(); if (t1 == null) t1 = ""; } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entityId, type$.legacy_String); }, $signature: 43 }; A.DynamicSelector_build_closure1.prototype = { call$1(entity) { var t1 = entity == null ? null : entity.get$id(entity); return this.$this.onChanged.call$1(t1); }, $signature: 61 }; A.GrowableFormField.prototype = { createState$0() { return new A._GrowableFormFieldState(A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); } }; A._GrowableFormFieldState.prototype = { initState$0() { this.super$State$initState(); this._growable_form_field$_focusNode.addListener$1(0, this.get$_growable_form_field$_onFoucsChanged()); }, _growable_form_field$_onFoucsChanged$0() { this.setState$1(new A._GrowableFormFieldState__onFoucsChanged_closure(this)); }, dispose$0(_) { var t1 = this._growable_form_field$_focusNode; t1.removeListener$1(0, this.get$_growable_form_field$_onFoucsChanged()); t1.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t4, _null = null, t1 = this._widget, t2 = t1.autofocus, t3 = t1.initialValue; t1 = t1.onChanged; t4 = this._growable_form_field$_hasFocus ? 20 : 2; return A.DecoratedFormField$(false, _null, t2, false, _null, _null, true, this._growable_form_field$_focusNode, _null, t3, _null, false, false, _null, B.TextInputType_1_null_null, _null, t4, 1, false, t1, _null, _null, true, _null, _null, B.TextAlign_4, _null); } }; A._GrowableFormFieldState__onFoucsChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._growable_form_field$_hasFocus = t1._growable_form_field$_focusNode.get$hasFocus(); }, $signature: 1 }; A.LearnMoreUrl.prototype = { build$1(_, context) { var t2, t3, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this.url.length === 0) return _this.child; t2 = A.Expanded$(_this.child, 1); t3 = _this.label; return A.Row$(A._setArrayType([t2, new A.SizedBox(10, _null, _null, _null), A.TextButton$(false, A.Text$(t3 == null ? t1.get$learnMore() : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.LearnMoreUrl_build_closure(_this), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.LearnMoreUrl_build_closure.prototype = { call$0() { return A.launch(this.$this.url, null, false); }, $signature: 26 }; A.NotificationSettings.prototype = { build$1(_, context) { var t4, hasMultipleUsers, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.user, notifications = t2.userCompany.notifications, t3 = (notifications == null ? A.BuiltMap_BuiltMap(B.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String) : notifications)._map$_map, emailNotifications = t3.containsKey$1(0, "email") ? t3.$index(0, "email") : A.BuiltList_BuiltList$from(B.List_empty, type$.legacy_String); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; hasMultipleUsers = t3._list[t4].userState.list._list.length > 1 || t2.get$isNew(); t2 = A._setArrayType([new A.DataColumn(new A.SizedBox(_null, _null, _null, _null), false, _null), new A.DataColumn(A.Text$(t1.get$email(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null)], type$.JSArray_legacy_DataColumn); t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "all_events"); t3 = A.DataCell$(A.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); t4 = emailNotifications._list; if (B.JSArray_methods.contains$1(t4, "all_notifications")) t4 = "all"; else t4 = B.JSArray_methods.contains$1(t4, "all_user_notifications") ? "user" : _null; t4 = A._setArrayType([A.DataRow$(A._setArrayType([t3, A.DataCell$(new A._NotificationSelector(t4, new A.NotificationSettings_build_closure(this), hasMultipleUsers, true, _null), _null)], type$.JSArray_legacy_DataCell))], type$.JSArray_legacy_DataRow); t3 = type$.MappedIterable_of_legacy_String_and_legacy_DataRow; B.JSArray_methods.addAll$1(t4, A.List_List$of(new A.MappedIterable(new A.WhereIterable(B.List_Sfa, new A.NotificationSettings_build_closure0(state), type$.WhereIterable_legacy_String), new A.NotificationSettings_build_closure1(this, emailNotifications, t1, hasMultipleUsers), t3), true, t3._eval$1("Iterable.E"))); t3 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.FormCard$(A.Column$(A._setArrayType([A.DataTable$(_null, _null, t2, _null, _null, _null, _null, _null, _null, t4, false, true, true, _null)], t3), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, _null, false, _null, true, _null)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, get$user(receiver) { return this.user; } }; A.NotificationSettings_build_closure.prototype = { call$1(value) { var t1 = type$.JSArray_legacy_String, options = A._setArrayType([], t1); if (value === "all") options = A._setArrayType(["all_notifications"], t1); else if (value === "user") options = A._setArrayType(["all_user_notifications"], t1); this.$this.onChanged.call$2("email", options); }, $signature: 11 }; A.NotificationSettings_build_closure0.prototype = { call$1(eventType) { var t2, t3, t1 = type$.JSArray_legacy_String; if (B.JSArray_methods.contains$1(A._setArrayType(["quote_sent", "quote_viewed", "quote_approved"], t1), eventType)) { t2 = this.state; t3 = t2.uiState.selectedCompanyIndex; t3 = !t2.userCompanyStates._list[t3].userCompany.company.isModuleEnabled$1(B.EntityType_quote); t2 = t3; } else t2 = false; if (t2) return false; else { if (B.JSArray_methods.contains$1(A._setArrayType(["credit_sent", "credit_viewed"], t1), eventType)) { t1 = this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !t1.userCompanyStates._list[t2].userCompany.company.isModuleEnabled$1(B.EntityType_credit); t1 = t2; } else t1 = false; if (t1) return false; } return true; }, $signature: 16 }; A.NotificationSettings_build_closure1.prototype = { call$1(eventType) { var value, isAllEnabled, t3, t4, _this = this, _null = null, _s31_ = "invoice_sent_notification_label", t1 = _this.emailNotifications, t2 = t1._list; if (B.JSArray_methods.contains$1(t2, "all_notifications")) { value = "all"; isAllEnabled = true; } else if (B.JSArray_methods.contains$1(t2, "all_user_notifications")) { value = "user"; isAllEnabled = true; } else { t3 = A.S(eventType); if (B.JSArray_methods.contains$1(t2, t3 + "_all")) value = "all"; else value = B.JSArray_methods.contains$1(t2, t3 + "_user") ? "user" : "none"; isAllEnabled = false; } t2 = _this.localization; if (eventType === "invoice_sent") { t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = J.$index$asx(t3.$index(0, t2.localeCode), _s31_); t3 = t4 == null ? J.$index$asx(t3.$index(0, "en"), _s31_) : t4; } else t3 = t2.lookup$1(eventType); t3 = A.DataCell$(A.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); if (isAllEnabled) if (value === "all") { t1 = _this.hasMultipleUsers; t2 = t1 ? t2.get$allRecords() : t2.get$enabled(t2); t2 = new A.IconText(t2, t1 ? B.IconData_58910_MaterialIcons_null_false : B.IconData_57689_MaterialIcons_null_false, _null, _null, _null); t1 = t2; } else t1 = new A.IconText(t2.get$ownedByUser(), B.IconData_57411_MaterialIcons_null_false, _null, _null, _null); else t1 = new A._NotificationSelector(value, new A.NotificationSettings_build__closure(_this.$this, t1, eventType), _this.hasMultipleUsers, false, _null); return A.DataRow$(A._setArrayType([t3, A.DataCell$(t1, _null)], type$.JSArray_legacy_DataCell)); }, $signature: 2170 }; A.NotificationSettings_build__closure.prototype = { call$1(value) { var t2, t1 = this.emailNotifications, options = new A.CopyOnWriteList(true, t1._list, t1.$ti._eval$1("CopyOnWriteList<1>")); t1 = A.S(this.eventType); t2 = t1 + "_all"; options._maybeCopyBeforeWrite$0(); J.remove$1$ax(options._copy_on_write_list$_list, t2); t1 += "_user"; options._maybeCopyBeforeWrite$0(); J.remove$1$ax(options._copy_on_write_list$_list, t1); if (value === "all") { options._maybeCopyBeforeWrite$0(); J.add$1$ax(options._copy_on_write_list$_list, t2); } else if (value === "user") { options._maybeCopyBeforeWrite$0(); J.add$1$ax(options._copy_on_write_list$_list, t1); } this.$this.onChanged.call$2("email", options); }, $signature: 11 }; A._NotificationSelector.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.hasMultipleUsers, t3 = t2 ? t1.get$allRecords() : t1.get$enabled(t1), t4 = t2 ? B.IconData_58910_MaterialIcons_null_false : B.IconData_57689_MaterialIcons_null_false, t5 = type$.legacy_String; t4 = A._setArrayType([A.DropdownMenuItem$(new A.IconText(t3, t4, _null, _null, _null), _null, "all", t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); if (t2) t4.push(A.DropdownMenuItem$(new A.IconText(t1.get$ownedByUser(), B.IconData_57411_MaterialIcons_null_false, _null, _null, _null), _null, "user", t5)); t3 = _this.showNoneAsCustom; if (t3) t1 = t1.get$custom(); else t1 = t2 ? t1.get$none() : t1.get$disabled(t1); t4.push(A.DropdownMenuItem$(new A.IconText(t1, t3 ? B.IconData_57497_MaterialIcons_null_false : B.IconData_57835_MaterialIcons_null_false, _null, _null, _null), _null, "none", t5)); return A.AppDropdownButton$(_null, "", true, t4, _null, _null, new A._NotificationSelector_build_closure(_this), _null, false, _this.value, t5); }, get$value(receiver) { return this.value; } }; A._NotificationSelector_build_closure.prototype = { call$1(value) { if (value == null || J.get$isEmpty$asx(value)) return; this.$this.onChanged.call$1(value); }, $signature: 7 }; A.PasswordFormField.prototype = { createState$0() { return new A._PasswordFormFieldState(B._StateLifecycle_0); } }; A._PasswordFormFieldState.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget.labelText; if (t2 == null) t2 = t1.get$password(t1); t3 = _this._widget; t4 = t3.controller; t5 = t3.onSavePressed; t6 = t3.autoValidate; t3 = t3.labelText; if (t3 == null) t3 = t1.get$password(t1); if (_this._password_field$_isPasswordObscured) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "show_password"); if (t7 == null) t7 = ""; } else { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "hide_password"); if (t7 == null) t7 = ""; } t8 = _this._password_field$_isPasswordObscured; t3 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, A.IconButton$(B.Alignment_0_1, _null, _null, true, A.Icon$(t8 ? B.IconData_59069_MaterialIcons_null_false : B.IconData_59070_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A._PasswordFormFieldState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, t7, _null), _null, _null, _null, _null); t7 = _this._widget; if (t7.validate) { t9 = A._setArrayType([t7.newPassword ? "newPassword" : "password"], type$.JSArray_legacy_String); t7 = t9; } else t7 = _null; return A.DecoratedFormField$(false, t7, false, t6, t4, t3, true, _null, _null, _null, _null, false, false, new A.ValueKey(t2, type$.ValueKey_legacy_String), B.TextInputType_7_null_null, _null, _null, _null, t8, _null, _null, t5, true, _null, _null, B.TextAlign_4, new A._PasswordFormFieldState_build_closure0(_this, t1)); } }; A._PasswordFormFieldState_build_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._PasswordFormFieldState_build__closure(t1)); }, $signature: 1 }; A._PasswordFormFieldState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._password_field$_isPasswordObscured = !t1._password_field$_isPasswordObscured; }, $signature: 1 }; A._PasswordFormFieldState_build_closure0.prototype = { call$1(value) { var t2, regExp, _this = this, _null = null, t1 = _this.$this._widget; if (!t1.validate) return _null; t2 = value.length; if (t2 === 0 || B.JSString_methods.trim$0(value).length === 0) { if (t1.newPassword) t1 = _null; else { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, _this.localization.localeCode), "please_enter_your_password"); if (t1 == null) t1 = ""; } return t1; } if (!t1.newPassword) return _null; if (t2 < 8) return _this.localization.get$passwordIsTooShort(); regExp = A.RegExp_RegExp("^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9]).{8,}$", true, false, false, false); if (typeof value != "string") A.throwExpression(A.argumentErrorValue(value)); if (!regExp._nativeRegExp.test(value)) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, _this.localization.localeCode), "password_is_too_easy"); return t1 == null ? "" : t1; } return _null; }, $signature: 15 }; A.ProjectPicker.prototype = { build$1(_, context) { var t5, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$project(), t2 = $.$get$memoizedDropdownProjectList(), t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4]; t3 = t4.projectState; t5 = _this.clientId; t4 = t2.call$5(t3.map, t3.list, t4.clientState.map, t4.userState.map, t5); t2 = (t5 == null ? "" : t5).length !== 0 ? new A.ProjectPicker_build_closure(_this, store) : _null; return A.EntityDropdown$(true, false, false, _this.projectId, t4, _null, B.EntityType_project, B.List_empty0, t1, _this.onAddPressed, t2, new A.ProjectPicker_build_closure0(_this), _null, _null, _null); } }; A.ProjectPicker_build_closure0.prototype = { call$1(entity) { var t1 = entity == null ? null : entity.get$id(entity); if (t1 == null) t1 = ""; this.$this.onChanged.call$1(t1); }, $signature: 34 }; A.ProjectPicker_build_closure.prototype = { call$2(completer, $name) { var _null = null, t1 = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null).rebuild$1(new A.ProjectPicker_build__closure(this.$this, $name)); this.store.get$_dispatchers()[0].call$1(new A.SaveProjectRequest(completer, t1)); }, $signature: 214 }; A.ProjectPicker_build__closure.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_name = this.name; b.get$_project_model$_$this()._project_model$_clientId = this.$this.clientId; return b; }, $signature: 164 }; A.SaveCancelButtons.prototype = { build$1(_, context) { var _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.isHeader ? B.CrossAxisAlignment_3 : B.CrossAxisAlignment_2, t3 = A._setArrayType([], type$.JSArray_legacy_Widget); if (_this.onCancelPressed != null) t3.push(new A.Builder(new A.SaveCancelButtons_build_closure(_this, t1), null)); t3.push(new A.Builder(new A.SaveCancelButtons_build_closure0(_this, t1), null)); return A.Row$(t3, t2, B.MainAxisAlignment_0, B.MainAxisSize_1, null); } }; A.SaveCancelButtons_build_closure.prototype = { call$1(context) { var t3, t1 = this.$this, t2 = t1.cancelLabel; if (t2 == null) { t2 = this.localization; t2 = t2.get$cancel(t2); } if (t1.isHeader) t3 = t1.isEnabled || t1.isCancelEnabled; else t3 = false; return new A.AppTextButton(t2, t1.isEnabled || t1.isCancelEnabled ? new A.SaveCancelButtons_build__closure0(t1, context) : null, t3, null, null); }, $signature: 351 }; A.SaveCancelButtons_build__closure0.prototype = { call$0() { return this.$this.onCancelPressed.call$1(this.context); }, $signature: 9 }; A.SaveCancelButtons_build_closure0.prototype = { call$1(context) { var t3, t1 = this.$this, t2 = t1.saveLabel; if (t2 == null) { t2 = this.localization; t2 = t2.get$save(t2); } t3 = t1.isEnabled ? new A.SaveCancelButtons_build__closure(t1, context) : null; return new A.AppTextButton(t2, t3, t1.isHeader, null, null); }, $signature: 351 }; A.SaveCancelButtons_build__closure.prototype = { call$0() { return this.$this.onSavePressed.call$1(this.context); }, $signature: 9 }; A.TimePicker.prototype = { createState$0() { return new A._TimePickerState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); }, onSelected$1(arg0) { return this.onSelected.call$1(arg0); } }; A._TimePickerState.prototype = { initState$0() { this.super$State$initState(); this._time_picker$_focusNode.addListener$1(0, this.get$_time_picker$_onFoucsChanged()); }, didChangeDependencies$0() { var t2, _this = this, t1 = _this._widget.selectedDateTime; if (t1 != null) { t1 = t1.toIso8601String$0(); t2 = _this._framework$_element; t2.toString; _this._time_picker$_textController.set$text(0, A.formatDate(t1, t2, false, true, true)); } _this.super$State$didChangeDependencies(); }, _time_picker$_onFoucsChanged$0() { var t1, t2, _this = this; if (!_this._time_picker$_focusNode.get$hasFocus() && _this._widget.selectedDateTime != null) { t1 = _this._widget.selectedDateTime.toIso8601String$0(); t2 = _this._framework$_element; t2.toString; _this._time_picker$_textController.set$text(0, A.formatDate(t1, t2, false, true, true)); _this.setState$1(new A._TimePickerState__onFoucsChanged_closure(_this)); } }, dispose$0(_) { var _this = this, t1 = _this._time_picker$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; t1 = _this._time_picker$_focusNode; t1.removeListener$1(0, _this.get$_time_picker$_onFoucsChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showTimePicker$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, hour, minute, selectedTime, dateTime, t2, t1, selectedDateTime, now; var $async$_showTimePicker$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.selectedDateTime; selectedDateTime = t1 == null ? null : t1.toLocal$0(); now = new A.DateTime(Date.now(), false); t1 = selectedDateTime == null; hour = t1 ? null : A.Primitives_getHours(selectedDateTime); if (hour == null) hour = A.Primitives_getHours(now); minute = t1 ? null : A.Primitives_getMinutes(selectedDateTime); if (minute == null) minute = A.Primitives_getMinutes(now); t1 = $async$self._framework$_element; t1.toString; $async$goto = 2; return A._asyncAwait(A.showTimePicker(new A._TimePickerState__showTimePicker_closure(), t1, new A.TimeOfDay(hour, minute)), $async$_showTimePicker$0); case 2: // returning from await. selectedTime = $async$result; if (selectedTime != null) { dateTime = new A.DateTime(Date.now(), false); t1 = selectedTime.hour; if (t1 == null) t1 = 0; t2 = selectedTime.minute; if (t2 == null) t2 = 0; t1 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(dateTime), A.Primitives_getMonth(dateTime), A.Primitives_getDay(dateTime), t1, t2, 0, 0, false); if (!A._isInt(t1)) A.throwExpression(A.argumentErrorValue(t1)); dateTime = new A.DateTime(t1, false).toUtc$0(); t1 = dateTime.toIso8601String$0(); t2 = $.$get$navigatorKey(); t2.toString; $async$self._time_picker$_textController.set$text(0, A.formatDate(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), false, true, true)); t2 = $async$self._widget; t2.toString; t2.onSelected$1(dateTime.toLocal$0()); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_showTimePicker$0, $async$completer); }, build$1(_, context) { var t2, _this = this, _null = null, t1 = _this._widget; t1.toString; t2 = _this._time_picker$_pendingValue; t1 = t2 == null ? t1.labelText : t2; if (t1 == null) t1 = ""; t2 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57402_MaterialIcons_null_false, _null, _null), _null, new A._TimePickerState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null); return A.DecoratedFormField$(false, _null, false, false, _this._time_picker$_textController, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null), true, _this._time_picker$_focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A._TimePickerState_build_closure0(_this, context), _null, _null, true, _null, _null, B.TextAlign_4, _null); } }; A._TimePickerState__onFoucsChanged_closure.prototype = { call$0() { this.$this._time_picker$_pendingValue = null; }, $signature: 1 }; A._TimePickerState__showTimePicker_closure.prototype = { call$2(context, child) { var enableMilitaryTime, t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; enableMilitaryTime = t2._list[t1].userCompany.company.settings.enableMilitaryTime; return new A.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.copyWith$1$alwaysUse24HourFormat(enableMilitaryTime), child, null); }, $signature: 803 }; A._TimePickerState_build_closure.prototype = { call$0() { return this.$this._showTimePicker$0(); }, $signature: 0 }; A._TimePickerState_build_closure0.prototype = { call$1(value) { var t1, value0, t2, t3, parts, t4, part, dateTimeStr, t5, t6, hour, dateTime, date, selectedDate, _this = this, _s1_ = ":"; if (value.length === 0) _this.$this._widget.toString; else { t1 = A.RegExp_RegExp("[^\\d:]", true, false, false, false); value0 = A.stringReplaceAllUnchecked(value, t1, ""); t1 = type$.JSArray_String; t2 = type$.WhereIterable_String; t3 = t2._eval$1("Iterable.E"); parts = A.List_List$of(new A.WhereIterable(A._setArrayType(A.stringReplaceAllUnchecked(value0.toLowerCase(), ".", _s1_).split(_s1_), t1), new A._TimePickerState_build__closure(), t2), true, t3); t4 = parts.length; if (t4 === 1) { part = parts[0]; t4 = part.length; if (t4 === 1 || t4 === 2) dateTimeStr = part + ":00:00"; else if (t4 === 3) dateTimeStr = B.JSString_methods.substring$2(part, 0, 1) + ":" + B.JSString_methods.substring$2(part, 1, 3) + ":00"; else dateTimeStr = t4 === 4 ? B.JSString_methods.substring$2(part, 0, 2) + ":" + B.JSString_methods.substring$2(part, 2, 4) + ":00" : ""; } else if (t4 !== 0) { t5 = J.$add$ansx(parts[0], _s1_); t6 = parts[1]; dateTimeStr = B.JSString_methods.$add(t5, t6); if (J.get$length$asx(t6) === 1) dateTimeStr += "0"; dateTimeStr = t4 === 3 ? dateTimeStr + B.JSString_methods.$add(_s1_, parts[2]) : dateTimeStr + ":00"; } else dateTimeStr = ""; if (B.JSString_methods.contains$1(value.toLowerCase(), "a")) dateTimeStr += " AM"; else if (B.JSString_methods.contains$1(value.toLowerCase(), "p")) dateTimeStr += " PM"; else { t4 = A._lateReadCheck(A.StoreProvider_of(_this.context, type$.legacy_AppState).__Store__state, "_state"); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; if (!t5._list[t4].userCompany.company.settings.enableMilitaryTime) { hour = A.parseDouble(parts[0], false); if (hour > 12) { parts = A.List_List$of(new A.WhereIterable(A._setArrayType(dateTimeStr.split(_s1_), t1), new A._TimePickerState_build__closure0(), t2), true, t3); parts[0] = "" + B.JSNumber_methods.toInt$0(hour - 12); dateTimeStr = B.JSArray_methods.join$1(parts, _s1_); } dateTimeStr += " PM"; } } t1 = _this.context; dateTime = A.parseTime(dateTimeStr, t1); if (dateTime != null) { date = new A.DateTime(Date.now(), false); t2 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date), A.Primitives_getMonth(date), A.Primitives_getDay(date), A.Primitives_getHours(dateTime), A.Primitives_getMinutes(dateTime), A.Primitives_getSeconds(dateTime), 0, false); if (!A._isInt(t2)) A.throwExpression(A.argumentErrorValue(t2)); selectedDate = new A.DateTime(t2, false).toUtc$0(); t2 = _this.$this; t2._widget.onSelected$1(selectedDate); t2.setState$1(new A._TimePickerState_build__closure1(t2, selectedDate, t1)); } } }, $signature: 11 }; A._TimePickerState_build__closure.prototype = { call$1(element) { return element.length !== 0; }, $signature: 16 }; A._TimePickerState_build__closure0.prototype = { call$1(element) { return element.length !== 0; }, $signature: 16 }; A._TimePickerState_build__closure1.prototype = { call$0() { this.$this._time_picker$_pendingValue = A.formatDate(this.selectedDate.toIso8601String$0(), this.context, false, true, true); }, $signature: 1 }; A.UserPicker.prototype = { build$1(_, context) { var userIds, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = $.$get$memoizedUserList(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; userIds = t1.call$1(t2[t3].userState.map); if (!t2[t3].userCompany.isAdmin) return new A.SizedBox(_null, _null, _null, _null); return A.DynamicSelector$(true, this.userId, userIds, B.EntityType_user, _null, _null, this.onChanged, _null); } }; A.VendorPicker.prototype = { build$1(_, context) { var t2, t3, t4, t5, t6, _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"); t1 = t1.get$vendor(t1); t2 = $.$get$memoizedDropdownVendorList(); t3 = _this.vendorState; t4 = t3.map; t3 = t3.list; t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; return A.EntityDropdown$(true, false, true, _this.vendorId, t2.call$4(t4, t3, t5._list[t6].userState.map, state.staticState), t4, B.EntityType_vendor, B.List_empty0, t1, _this.onAddPressed, new A.VendorPicker_build_closure(store), _this.onSelected, null, null, new A.VendorPicker_build_closure0(context)); } }; A.VendorPicker_build_closure0.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectAVendor() : null; }, $signature: 15 }; A.VendorPicker_build_closure.prototype = { call$2(completer, $name) { var t1 = A.VendorEntity_VendorEntity(null, null, null).rebuild$1(new A.VendorPicker_build__closure($name)); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorRequest(completer, t1)); }, $signature: 214 }; A.VendorPicker_build__closure.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_name = this.name; return b; }, $signature: 105 }; A.TokenMeta.prototype = { build$1(_, context) { var _null = null, t1 = this.meta, t2 = t1.last4, cardDetails = t2 != null ? "\u2022\u2022\u2022\u2022" + (" " + t2) : "\u2022\u2022\u2022\u2022"; t2 = t1.expMonth; if (t2 != null && t1.expYear != null) cardDetails += " " + A.S(t2) + "/" + A.S(t1.expYear); return A.Row$(A._setArrayType([A.Image$asset("assets/images/payment_types/" + A.S(t1.brand) + ".png", 16, _null), new A.SizedBox(8, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.Text$(cardDetails, _null, _null, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.HelpText.prototype = { build$1(_, context) { var _null = null; return A.Container$(_null, A.Center$(A.Opacity$(A.Text$(this.message, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 22, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 0.8), _null, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, get$message(receiver) { return this.message; } }; A.HistoryDrawer.prototype = { build$1(_, context) { var t3, t4, _i, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = type$.JSArray_legacy_Widget, widgets = A._setArrayType([], t2); for (t3 = state.get$historyList(), t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) widgets.push(new A.HistoryListTile(t3[_i], _null)); t1 = A.Text$(t1.get$history(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = A._setArrayType([], t2); t3 = state.prefState; if (t3.appLayout === B.AppLayout_mobile || t3.historySidebarMode === B.AppSidebarMode_float) t2.push(new A.Builder(new A.HistoryDrawer_build_closure(), _null)); else t2.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A.HistoryDrawer_build_closure0(store), B.EdgeInsets_8_8_8_8, _null, _null, _null)); return new A.SizedBox(272, _null, A.Drawer$(A.Scaffold$(A.AppBar$(t2, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, 1, _null), _null, A.FocusTraversalGroup$(new A.ColoredBox(A.Theme_of(context).cardColor, new A.ScrollableListView(widgets, _null, _null, _null), _null), true, true, _null), _null, _null, _null, _null, _null)), _null); } }; A.HistoryDrawer_build_closure.prototype = { call$1(context) { var _null = null; return A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A.HistoryDrawer_build__closure(context), B.EdgeInsets_8_8_8_8, _null, _null, _null); }, $signature: 424 }; A.HistoryDrawer_build__closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; A.HistoryDrawer_build_closure0.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_history, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.HistoryListTile.prototype = { createState$0() { return new A._HistoryListTileState(B._StateLifecycle_0); } }; A._HistoryListTileState.prototype = { build$1(_, context) { var t3, t4, title, subtitle, t5, entity, clientId, t6, _null = null, t1 = {}, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), $history = this._widget.history; t1.entity = null; t3 = A._setArrayType([B.EntityType_dashboard, B.EntityType_reports, B.EntityType_settings], type$.JSArray_legacy_EntityType); t4 = $history.entityType; if (B.JSArray_methods.contains$1(t3, t4)) { title = A.Text$(t2.lookup$1(J.toString$0$(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (t4 === B.EntityType_reports) subtitle = A.Text$(t2.lookup$1(state.uiState.reportsUIState.report), _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (t4 === B.EntityType_settings) { t3 = $history.id; subtitle = A.Text$(t2.lookup$1(t3 == null ? "company_details" : t3), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else subtitle = _null; t2 = _null; } else { t3 = state.getEntityMap$1(t4); t5 = $history.id; entity = type$.legacy_BaseEntity._as(t3._map$_map.$index(0, t5)); t1.entity = entity; if (entity != null) t3 = !(!entity.get$isArchived() && !entity.get$isDeleted(entity)); else t3 = true; if (t3) return new A.SizedBox(_null, _null, _null, _null); clientId = type$.legacy_BelongsToClient._is(entity) ? entity.get$clientId(entity) : _null; title = A.Text$(entity.get$listDisplayName().length === 0 ? A.formatNumber(entity.get$listDisplayAmount(), context, clientId, _null, entity.get$listDisplayAmountType(), true, _null, false) : entity.get$listDisplayName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); subtitle = A.Text$(t2.lookup$1(A.S(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = entity; } t3 = $history.id; t5 = A.S(t4); t4 = A.Icon$(A.getEntityIcon(t4), _null, _null); t6 = A.Duration$(0, 0, 0, 0, 1, 0); t1 = t2 == null ? _null : new A._HistoryListTileState_build_closure(t1, state, context); return A.Container$(_null, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, new A.ValueKey("__" + A.S(t3) + "_" + t5 + "__", type$.ValueKey_legacy_String), t4, t1, new A._HistoryListTileState_build_closure0(state, context, $history, store), false, _null, _null, subtitle, _null, title, new A.LiveText(t6, new A._HistoryListTileState_build_closure1($history, state), _null, _null), _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A._HistoryListTileState_build_closure1.prototype = { call$0() { return A.format(A.DateTime$fromMillisecondsSinceEpoch(this.history.timestamp, false), J.$add$ansx(A.localeSelector(this.state, true), "_short")); }, $signature: 127 }; A._HistoryListTileState_build_closure0.prototype = { call$0() { var t3, _this = this, _null = null, t1 = _this.state, t2 = t1.prefState; if (t2.appLayout === B.AppLayout_mobile || t2.historySidebarMode === B.AppSidebarMode_float) A.Navigator_of(_this.context, false).pop$1(0, _null); t2 = _this.history; t3 = t2.entityType; switch (t3) { case B.EntityType_dashboard: _this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, _null)); break; case B.EntityType_reports: _this.store.get$_dispatchers()[0].call$1(new A.ViewReports()); break; case B.EntityType_settings: t3 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t3._list[t1].userCompany.company; _this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(t1, _null, _null, _null, false, t2.id, false, _null)); break; default: A.viewEntityById(false, t2.id, t3, _null, false, true); } }, $signature: 1 }; A._HistoryListTileState_build_closure.prototype = { call$0() { var t3, t1 = A._setArrayType([this._box_0.entity], type$.JSArray_legacy_BaseEntity), t2 = this.state.prefState; if (t2.appLayout === B.AppLayout_mobile || t2.historySidebarMode === B.AppSidebarMode_float) { t2 = new A._Future($.Zone__current, type$._Future_Null); t3 = new A._AsyncCompleter(t2, type$._AsyncCompleter_Null); t2.then$1$1(0, new A._HistoryListTileState_build__closure(this.context), type$.Null); t2 = t3; } else t2 = null; A.showEntityActionsDialog(t2, t1, false); }, $signature: 1 }; A._HistoryListTileState_build__closure.prototype = { call$1(value) { A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 3 }; A.HistoryDrawerBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.HistoryDrawerBuilder_build_closure(), A.history_drawer_vm_AppDrawerVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_AppDrawerVM); } }; A.HistoryDrawerBuilder_build_closure.prototype = { call$2(context, viewModel) { return new A.HistoryDrawer(null); }, $signature: 2174 }; A.AppDrawerVM.prototype = { get$user(receiver) { return this.user; } }; A.IconMessage.prototype = { build$1(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = _this.color; if (t1 == null) t1 = A.Theme_of(context).primaryColorDark; t2 = _this.iconData; t3 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([A.Icon$(t2 == null ? B.IconData_58173_MaterialIcons_null_false : t2, B.Color_4294967295, 18), new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.Text$(_this.text, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1)], t3); t4 = _this.trailing; if (t4 != null) B.JSArray_methods.addAll$1(t2, A._setArrayType([new A.SizedBox(16, _null, _null, _null), t4], t3)); return A.Container$(_null, new A.Padding(B.EdgeInsets_20_16_20_16, A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.IconText.prototype = { build$1(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = _this.alignment; if (t1 == null) t1 = B.MainAxisAlignment_0; t2 = _this.style; t3 = t2 == null ? _null : t2.color; t3 = A.Icon$(_this.icon, t3, _null); t4 = _this.text; return A.Row$(A._setArrayType([t3, new A.SizedBox(10, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.Text$(t4 == null ? "" : t4, _null, _null, B.TextOverflow_2, _null, _null, t2, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, t1, B.MainAxisSize_0, _null); } }; A.InvoiceEmailView.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._InvoiceEmailViewState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(1500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._InvoiceEmailViewState.prototype = { initState$0() { var t1, invoice, _this = this; _this.super$State$initState(); t1 = A.TabController$(null, 0, 4, _this); _this._invoice_email_view$_controller = t1; t1.addListener$1(0, _this.get$_invoice_email_view$_loadTemplate()); _this._invoice_email_view$_controllers = A._setArrayType([_this._invoice_email_view$_subjectController, _this._invoice_email_view$_bodyController], type$.JSArray_legacy_TextEditingController); invoice = _this._widget.viewModel.invoice; switch (invoice.entityType) { case B.EntityType_invoice: t1 = invoice.reminder3Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = B.EmailTemplate_reminder_endless; else { t1 = invoice.reminder2Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = B.EmailTemplate_reminder3; else { t1 = invoice.reminder1Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = B.EmailTemplate_reminder2; else { t1 = invoice.lastSentDate; if (t1.length !== 0) _this.selectedTemplate = B.EmailTemplate_reminder1; else _this.selectedTemplate = B.EmailTemplate_invoice; } } } break; case B.EntityType_quote: _this.selectedTemplate = B.EmailTemplate_quote; break; case B.EntityType_credit: _this.selectedTemplate = B.EmailTemplate_credit; break; case B.EntityType_purchaseOrder: _this.selectedTemplate = B.EmailTemplate_purchase_order; break; } }, didChangeDependencies$0() { this._invoice_email_view$_loadTemplate$0(); this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._invoice_email_view$_controller.removeListener$1(0, _this.get$_invoice_email_view$_loadTemplate()); _this._invoice_email_view$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._invoice_email_view$_controllers, new A._InvoiceEmailViewState_dispose_closure()); _this.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$dispose(0); }, _invoice_email_view$_onChanged$0() { this._invoice_email_view$_debouncer.run$1(new A._InvoiceEmailViewState__onChanged_closure(this)); }, _invoice_email_view$_loadTemplate$0() { var t1, origSubject, origBody, t2, _this = this; if (!_this._invoice_email_view$_isLoading) { t1 = _this._framework$_element; t1.toString; t1 = A.getLayout(t1) === B.AppLayout_mobile && _this._invoice_email_view$_controller._tab_controller$_index !== 0; } else t1 = true; if (t1) return; origSubject = J.trim$0$s(_this._invoice_email_view$_subjectController._change_notifier$_value.text); origBody = J.trim$0$s(_this._invoice_email_view$_bodyController._change_notifier$_value.text); _this.setState$1(new A._InvoiceEmailViewState__loadTemplate_closure(_this)); t1 = _this._framework$_element; t1.toString; t2 = A.S(_this.selectedTemplate); A.loadEmailTemplate(origBody, t1, _this._widget.viewModel.invoice, new A._InvoiceEmailViewState__loadTemplate_closure0(_this, origSubject, origBody), origSubject, t2); }, _buildTemplateDropdown$1(context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, client = viewModel.client, vendor = viewModel.vendor, settings = A.getClientSettings(viewModel.state, client), t2 = invoice.invitations._list, t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,BaseEntity*>"), contacts = A.List_List$of(new A.MappedListIterable(t2, new A._InvoiceEmailViewState__buildTemplateDropdown_closure(invoice, vendor, client), t3), true, t3._eval$1("ListIterable.E")); t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "to"); t2 = t3 == null ? "" : t3; t3 = A._arrayInstanceType(contacts); t3 = A.Expanded$(A.Text$(t2 + ": " + new A.MappedIterable(new A.WhereIterable(contacts, new A._InvoiceEmailViewState__buildTemplateDropdown_closure0(), t3._eval$1("WhereIterable<1>")), new A._InvoiceEmailViewState__buildTemplateDropdown_closure1(invoice), t3._eval$1("MappedIterable<1,String*>")).join$1(0, ", "), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t2 = _this.selectedTemplate; t4 = _this._invoice_email_view$_isLoading ? _null : new A._InvoiceEmailViewState__buildTemplateDropdown_closure2(_this); t5 = A.Text$(t1.get$initialEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = invoice.entityType; if (t6 === B.EntityType_purchaseOrder) t7 = B.EmailTemplate_purchase_order; else if (t6 === B.EntityType_quote) t7 = B.EmailTemplate_quote; else t7 = t6 === B.EntityType_credit ? B.EmailTemplate_credit : B.EmailTemplate_invoice; t8 = type$.legacy_EmailTemplate; t9 = type$.JSArray_legacy_DropdownMenuItem_legacy_EmailTemplate; t7 = A._setArrayType([A.DropdownMenuItem$(t5, _null, t7, t8)], t9); if (t6 === B.EntityType_invoice) B.JSArray_methods.addAll$1(t7, A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$firstReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_reminder1, t8), A.DropdownMenuItem$(A.Text$(t1.get$secondReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_reminder2, t8), A.DropdownMenuItem$(A.Text$(t1.get$thirdReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_reminder3, t8)], t9)); t5 = settings.emailSubjectCustom1; if ((t5 == null ? "" : t5).length !== 0) t7.push(A.DropdownMenuItem$(A.Text$(t1.get$firstCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_custom1, t8)); t5 = settings.emailSubjectCustom2; if ((t5 == null ? "" : t5).length !== 0) t7.push(A.DropdownMenuItem$(A.Text$(t1.get$secondCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_custom2, t8)); t5 = settings.emailSubjectCustom3; if ((t5 == null ? "" : t5).length !== 0) t7.push(A.DropdownMenuItem$(A.Text$(t1.get$thirdCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.EmailTemplate_custom3, t8)); return new A.Padding(B.EdgeInsets_24_2_18_0, A.Row$(A._setArrayType([t3, new A.SizedBox(4, _null, _null, _null), new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, t7, t4, _null, _null, _null, t2, t8), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null); }, _buildPreview$1(context) { var t1, t2, _this = this, _null = null; if (_this._invoice_email_view$_bodyController._change_notifier$_value.text.length === 0) return new A.SizedBox(_null, _null, _null, _null); t1 = A._setArrayType([], type$.JSArray_legacy_Widget); if (_this._invoice_email_view$_isLoading) t1.push(A.LinearProgressIndicator$()); if (!(A.isMacOS() || A.isWindows() || A.isLinux())) { t2 = _this._invoice_email_view$_isLoading; t1.push(new A.EmailPreview(_this._invoice_email_view$_subjectPreview, _this._invoice_email_view$_emailPreview, t2, _null)); } else t1.push(new A.IgnorePointer(true, _null, new A.ExampleEditor(A.convert(_this._invoice_email_view$_bodyPreview), _null, _null), _null)); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, _buildEdit$1(context) { var t2, t3, enableCustomEmail, t4, t5, t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = _this._widget.viewModel.state; if (state.get$isHosted()) { if (state.get$isHosted()) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany.account.plan === "enterprise"; t2 = t3; } else t2 = true; if (!t2) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany.account.plan === "pro"; t2 = t3; } else t2 = true; if (!t2) { if (state.get$isHosted()) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany.account.trialDaysLeft > 0; t2 = t3; } else t2 = false; if (!t2) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = !t2._list[t3].userCompany.account.accountSmsVerified; t2 = t3; } else t2 = true; enableCustomEmail = t2; } else enableCustomEmail = true; } else enableCustomEmail = true; t2 = A._setArrayType([], type$.JSArray_legacy_Widget); t3 = !enableCustomEmail; if (t3) { t4 = t1.get$customEmailsDisabledHelp(); t2.push(new A.Padding(B.EdgeInsets_0_0_0_10, new A.IconMessage(t4, _null, _null, A.isApple() ? _null : A.TextButton$(false, A.Text$(t1.get$upgrade().toUpperCase(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A._InvoiceEmailViewState__buildEdit_closure(state), _null), _null), _null)); } t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t4 = t4._list; t6 = t4[t5].userCompany.company.markdownEmailEnabled && _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop && !A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode ? B.Color_4294967295 : A.Theme_of(context).backgroundColor; t2.push(new A.ColoredBox(t6, new A.Padding(B.EdgeInsets_24_0_10_16, A.DecoratedFormField$(false, _null, false, false, _this._invoice_email_view$_subjectController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$subject(), _null, _null, false, new A._InvoiceEmailViewState__buildEdit_closure0(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null), _null)); if (t4[t5].userCompany.company.markdownEmailEnabled && _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop) t2.push(A.Expanded$(new A.ColoredBox(B.Color_4294967295, new A.IgnorePointer(t3, _null, new A.ExampleEditor(_this._rawBodyPreview, new A._InvoiceEmailViewState__buildEdit_closure1(_this), _null), _null), _null), 1)); else { t1 = t1.get$body(t1); t3 = enableCustomEmail ? 6 : 2; t2.push(new A.Padding(B.EdgeInsets_20_0_20_0, A.DecoratedFormField$(false, _null, false, false, _this._invoice_email_view$_bodyController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1, t3, _null, false, new A._InvoiceEmailViewState__buildEdit_closure2(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)); } return A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, _buildHistory$1(context) { var activities, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget.viewModel, invoice = t2.invoice, client = t2.client, vendor = t2.vendor; t2 = invoice.entityType === B.EntityType_purchaseOrder ? vendor : client; activities = t2.getActivities$2$invoiceId$typeId(invoice.id, "6"); if (!activities.get$iterator(activities).moveNext$0()) return new A.HelpText(t1.get$noHistory(t1), _null); return new A.ScrollableListViewBuilder(new A._InvoiceEmailViewState__buildHistory_closure(activities), _null, activities.get$length(activities), _null, _null, _null); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice; if (A.getLayout(context) === B.AppLayout_desktop) { t2 = t1.get$sendEmail(); t3 = t1.get$send(t1); t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([_this._buildTemplateDropdown$1(context)], t4); if (_this._invoice_email_view$_bodyController._change_notifier$_value.text.length === 0) t5.push(A.Expanded$(new A.LoadingIndicator(_null, false, _null), 1)); else { t6 = A.Expanded$(_this._buildEdit$1(context), 2); t7 = !(A.isMacOS() || A.isWindows() || A.isLinux()) ? 3 : 2; t8 = _this._buildPreview$1(context); B.JSArray_methods.addAll$1(t5, A._setArrayType([t6, A.Expanded$(A.Container$(_null, t8, B.Clip_0, !(A.isMacOS() || A.isWindows() || A.isLinux()) ? B.Color_4294967295 : B.Color_4293191915, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, _null), t7)], t4)); } t5 = A.Expanded$(A.Column$(t5, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t6 = A._setArrayType([A.Tab$(A.Text$(t1.get$pdf(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Tab$(A.Text$(t1.get$history(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4); t7 = invoice.entityType; if (t7 === B.EntityType_purchaseOrder) t7 = new A.PurchaseOrderPdfScreen(false, _null); else if (t7 === B.EntityType_credit) t7 = new A.CreditPdfScreen(false, _null); else t7 = t7 === B.EntityType_quote ? new A.QuotePdfScreen(false, _null) : new A.InvoicePdfScreen(false, _null); return A.EditScaffold$(_null, _null, A.Row$(A._setArrayType([t5, A.Expanded$(A.DefaultTabController$(A.Column$(A._setArrayType([new A.AppTabBar(t6, _null, false, _null, _null), A.Expanded$(A.TabBarView$(A._setArrayType([t7, _this._buildHistory$1(context)], t4), _null, _null), 1)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), 2), 1)], t4), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, invoice, _null, false, _null, new A._InvoiceEmailViewState_build_closure(invoice), new A._InvoiceEmailViewState_build_closure0(_this, state, viewModel, t1), t3, t2); } t2 = t1.get$sendEmail(); t3 = type$.JSArray_legacy_Widget; t4 = A.TabBar$(_this._invoice_email_view$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$preview()), A.Tab$(_null, t1.get$customize()), A.Tab$(_null, t1.get$pdf()), A.Tab$(_null, t1.get$history(t1))], t3)); t1 = t1.get$send(t1); t5 = _this._invoice_email_view$_controller; t6 = A.Column$(A._setArrayType([_this._buildTemplateDropdown$1(context), A.Expanded$(_this._buildPreview$1(context), 1)], t3), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = _this._buildEdit$1(context); t8 = invoice.entityType; if (t8 === B.EntityType_credit) t8 = new A.CreditPdfScreen(false, _null); else t8 = t8 === B.EntityType_quote ? new A.QuotePdfScreen(false, _null) : new A.InvoicePdfScreen(false, _null); return A.DefaultTabController$(A.EditScaffold$(_null, t4, A.TabBarView$(A._setArrayType([t6, t7, t8, _this._buildHistory$1(context)], t3), t5, _null), _null, invoice, _null, false, _null, new A._InvoiceEmailViewState_build_closure1(invoice), new A._InvoiceEmailViewState_build_closure2(_this, viewModel), t1, t2), 3); } }; A._InvoiceEmailViewState_dispose_closure.prototype = { call$1(controller) { J.dispose$0$x(controller); }, $signature: 7 }; A._InvoiceEmailViewState__onChanged_closure.prototype = { call$0() { this.$this._invoice_email_view$_loadTemplate$0(); }, $signature: 1 }; A._InvoiceEmailViewState__loadTemplate_closure.prototype = { call$0() { this.$this._invoice_email_view$_isLoading = true; }, $signature: 1 }; A._InvoiceEmailViewState__loadTemplate_closure0.prototype = { call$5(subject, body, email, rawSubject, rawBody) { var t1 = this.$this; if (t1._framework$_element == null) return; t1.setState$1(new A._InvoiceEmailViewState__loadTemplate__closure(t1, subject, body, email, rawBody, this.origSubject, this.origBody, rawSubject)); }, $signature: 649 }; A._InvoiceEmailViewState__loadTemplate__closure.prototype = { call$0() { var t2, t3, t4, t5, _this = this, t1 = _this.$this; t1._invoice_email_view$_isLoading = false; t1._invoice_email_view$_subjectPreview = J.trim$0$s(_this.subject); t1._invoice_email_view$_bodyPreview = J.trim$0$s(_this.body); t1._invoice_email_view$_emailPreview = J.trim$0$s(_this.email); if (t1._rawBodyPreview.length === 0) { t2 = t1._rawBodyPreview = J.trim$0$s(_this.rawBody); t3 = t1._widget.viewModel.state; t4 = t3.userCompanyStates; t5 = t3.uiState.selectedCompanyIndex; if (t4._list[t5].userCompany.company.markdownEmailEnabled && t3.prefState.appLayout === B.AppLayout_desktop && B.JSString_methods.startsWith$1(B.JSString_methods.trim$0(t2), "<")) t1._rawBodyPreview = A.convert(t2); } if (_this.origSubject.length === 0 && _this.origBody.length === 0) { t1._invoice_email_view$_subjectController.set$text(0, J.trim$0$s(_this.rawSubject)); t1._invoice_email_view$_bodyController.set$text(0, J.trim$0$s(_this.rawBody)); } }, $signature: 1 }; A._InvoiceEmailViewState__buildTemplateDropdown_closure.prototype = { call$1(invitation) { var t1 = this.invoice; return B.JSArray_methods.firstWhere$2$orElse((t1.entityType === B.EntityType_purchaseOrder ? this.vendor.contacts : this.client.contacts)._list, new A._InvoiceEmailViewState__buildTemplateDropdown__closure0(t1, invitation), new A._InvoiceEmailViewState__buildTemplateDropdown__closure1()); }, $signature: 2176 }; A._InvoiceEmailViewState__buildTemplateDropdown__closure0.prototype = { call$1(contact) { var t1 = contact.get$id(contact), t2 = this.invitation; return t1 === (this.invoice.entityType === B.EntityType_purchaseOrder ? t2.vendorContactId : t2.clientContactId); }, $signature: 171 }; A._InvoiceEmailViewState__buildTemplateDropdown__closure1.prototype = { call$0() { return null; }, $signature: 1 }; A._InvoiceEmailViewState__buildTemplateDropdown_closure0.prototype = { call$1(contact) { return contact != null; }, $signature: 171 }; A._InvoiceEmailViewState__buildTemplateDropdown_closure1.prototype = { call$1(contact) { var t1, $name; if (this.invoice.entityType === B.EntityType_purchaseOrder) t1 = type$.legacy_VendorContactEntity._as(contact).get$fullNameOrEmail(); else { type$.legacy_ClientContactEntity._as(contact); $name = contact.get$fullName(); t1 = contact.email; if (t1.length !== 0) $name = $name.length === 0 ? $name + t1 : $name + (" \u2022 " + t1); t1 = $name; } return t1; }, $signature: 41 }; A._InvoiceEmailViewState__buildTemplateDropdown_closure2.prototype = { call$1(template) { var t1 = this.$this; t1.setState$1(new A._InvoiceEmailViewState__buildTemplateDropdown__closure(t1, template)); }, $signature: 648 }; A._InvoiceEmailViewState__buildTemplateDropdown__closure.prototype = { call$0() { var t1 = this.$this; t1._invoice_email_view$_subjectController.set$text(0, ""); t1._invoice_email_view$_bodyController.set$text(0, ""); t1._rawBodyPreview = ""; t1.selectedTemplate = this.template; t1._invoice_email_view$_loadTemplate$0(); }, $signature: 1 }; A._InvoiceEmailViewState__buildEdit_closure.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.launch(t1.userCompanyStates._list[t2].userCompany.ninjaPortalUrl, null, false); }, $signature: 26 }; A._InvoiceEmailViewState__buildEdit_closure0.prototype = { call$1(_) { return this.$this._invoice_email_view$_onChanged$0(); }, $signature: 67 }; A._InvoiceEmailViewState__buildEdit_closure1.prototype = { call$1(value) { var t1 = this.$this, t2 = t1._invoice_email_view$_bodyController; if (B.JSString_methods.trim$0(value) !== J.trim$0$s(t2._change_notifier$_value.text)) { t2.set$text(0, value); t1._invoice_email_view$_onChanged$0(); } }, $signature: 11 }; A._InvoiceEmailViewState__buildEdit_closure2.prototype = { call$1(_) { return this.$this._invoice_email_view$_onChanged$0(); }, $signature: 67 }; A._InvoiceEmailViewState__buildHistory_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities.elementAt$1(0, index), false, null); }, $signature: 347 }; A._InvoiceEmailViewState_build_closure.prototype = { call$1(context) { return A.viewEntity(false, this.invoice, null, false); }, $signature: 30 }; A._InvoiceEmailViewState_build_closure0.prototype = { call$1(context) { var _this = this, t1 = _this.state, t2 = t1.userCompanyStates, t3 = t1.uiState.selectedCompanyIndex; if (t2._list[t3].userCompany.account.accountSmsVerified || !t1.get$isHosted()) { t1 = _this.$this; _this.viewModel.onSendPressed.call$4(context, t1.selectedTemplate, t1._invoice_email_view$_subjectController._change_notifier$_value.text, t1._invoice_email_view$_bodyController._change_notifier$_value.text); } else A.showMessageDialog(context, _this.localization.get$verifyPhoneNumberHelp(), null, null); }, $signature: 14 }; A._InvoiceEmailViewState_build_closure1.prototype = { call$1(context) { return A.viewEntity(false, this.invoice, null, false); }, $signature: 30 }; A._InvoiceEmailViewState_build_closure2.prototype = { call$1(context) { var t1 = this.$this; this.viewModel.onSendPressed.call$4(context, t1.selectedTemplate, t1._invoice_email_view$_subjectController._change_notifier$_value.text, t1._invoice_email_view$_bodyController._change_notifier$_value.text); }, $signature: 14 }; A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InvoiceItemListTile.prototype = { build$1(_, context) { var precision, subtitle, parts, _null = null, t1 = this.invoiceItem, t2 = this.invoice, t3 = t2.clientId, cost = A.formatNumber(t1.cost, context, t3, _null, B.FormatNumberType_0, false, _null, false), qty = A.formatNumber(t1.quantity, context, t3, _null, B.FormatNumberType_3, true, _null, false), t4 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t5 = state.userCompanyStates, t6 = state.uiState.selectedCompanyIndex, client = t5._list[t6].clientState.$get$1(0, t3); t6 = state.staticState.currencyMap; t5 = client.settings.currencyId; t5 = t6._map$_map.$index(0, t5); precision = t5 == null ? _null : t5.precision; if (precision == null) precision = 2; subtitle = A.S(qty) + " x " + A.S(cost); t5 = t1.discount; if (t5 !== 0) { subtitle += " \u2022 " + t4.get$discount() + " "; subtitle = t2.isAmountDiscount ? B.JSString_methods.$add(subtitle, A.formatNumber(t5, context, t3, _null, B.FormatNumberType_0, true, _null, false)) : B.JSString_methods.$add(subtitle, A.formatNumber(t5, context, t3, _null, B.FormatNumberType_1, true, _null, false)); } t4 = t1.taxRate1; if (t4 !== 0) subtitle += " \u2022 " + A.S(A.formatNumber(t4, context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t1.taxName1; t4 = t1.taxRate2; if (t4 !== 0) subtitle += " \u2022 " + A.S(A.formatNumber(t4, context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t1.taxName2; t4 = t1.taxRate3; if (t4 !== 0) subtitle += " \u2022 " + A.S(A.formatNumber(t4, context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t1.taxName3; parts = A._setArrayType([], type$.JSArray_legacy_String); t4 = t1.customValue1; if (t4.length !== 0) parts.push(A.formatCustomValue(context, "product1", t4)); t4 = t1.customValue2; if (t4.length !== 0) parts.push(A.formatCustomValue(context, "product2", t4)); t4 = t1.customValue3; if (t4.length !== 0) parts.push(A.formatCustomValue(context, "product3", t4)); t4 = t1.customValue4; if (t4.length !== 0) parts.push(A.formatCustomValue(context, "product4", t4)); t4 = t1.notes; if (t4.length !== 0) parts.push(t4); if (parts.length !== 0) subtitle += "\n" + B.JSArray_methods.join$1(parts, " \u2022 "); t4 = A.Theme_of(context).cardColor; t5 = type$.JSArray_legacy_Widget; t3 = A.Row$(A._setArrayType([A.Expanded$(A.Text$(t1.productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), A.Text$(A.formatNumber(t1.total$2(0, t2, precision), context, t3, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t2 = A.Row$(A._setArrayType([A.Expanded$(A.Text$(subtitle, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), 1), new A.SizedBox(1, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t1 = A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null); return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([A.ListTile$(false, B.EdgeInsets_20_4_20_4, _null, _null, true, _null, _null, false, _null, _null, _null, this.onTap, false, _null, _null, t2, _null, t3, t1, _null), new A.ListDivider(_null)], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t4, 0, _null, _null, _null, _null, _null, B.MaterialType_0); }, get$invoice() { return this.invoice; } }; A.TaxRateDropdown.prototype = { createState$0() { return new A._TaxRateDropdownState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0); } }; A._TaxRateDropdownState.prototype = { didChangeDependencies$0() { var t2, taxState, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A._lateReadCheck(A.StoreProvider_of(t1, type$.legacy_AppState).__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; taxState = t2._list[t1].taxRateState; t1 = taxState.list._list; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); t2 = _this._selectedTaxRate = B.JSArray_methods.firstWhere$2$orElse(A.List_List$of(new A.MappedListIterable(t1, new A._TaxRateDropdownState_didChangeDependencies_closure(taxState), t2), true, t2._eval$1("ListIterable.E")), new A._TaxRateDropdownState_didChangeDependencies_closure0(_this), new A._TaxRateDropdownState_didChangeDependencies_closure1(_this)); if (t2.rate !== 0) _this._tax_rate_dropdown$_textController.set$text(0, _this._formatTaxRate$1(t2)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._tax_rate_dropdown$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, _formatTaxRate$1(taxRate) { var t1 = taxRate.rate, t2 = this._framework$_element; t2.toString; return A.S(A.formatNumber(t1, t2, null, null, B.FormatNumberType_1, true, null, false)) + " " + taxRate.name; }, build$1(_, context) { var t3, taxRates, taxRate, t4, t5, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, taxState = t1._list[t2].taxRateState; t2 = taxState.list._list; t1 = A._arrayInstanceType(t2); t3 = t1._eval$1("MappedIterable<1,TaxRateEntity*>"); taxRates = A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._TaxRateDropdownState_build_closure(taxState), t1._eval$1("WhereIterable<1>")), new A._TaxRateDropdownState_build_closure0(taxState), t3), true, t3._eval$1("Iterable.E")); if (taxRates.length === 0) return new A.SizedBox(_null, _null, _null, _null); taxRate = B.JSArray_methods.firstWhere$2$orElse(taxRates, new A._TaxRateDropdownState_build_closure1(_this), new A._TaxRateDropdownState_build_closure2(_this)); t1 = _this._widget; t2 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1.labelText, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (taxRate != null) t3 = taxRate.rate === 0 && taxRate.name.length === 0; else t3 = true; t1 = t1.onSelected; t4 = A._setArrayType([], type$.JSArray_legacy_DropdownMenuItem_legacy_TaxRateEntity); t5 = taxRate.rate === 0; if (!(t5 && taxRate.name.length === 0)) t4.push(A.DropdownMenuItem$(A.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, A.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), type$.legacy_TaxRateEntity)); if (taxRate.get$isNew()) t4.push(A.DropdownMenuItem$(A.Text$(t5 && taxRate.name.length === 0 ? "" : _this._formatTaxRate$1(taxRate), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, taxRate, type$.legacy_TaxRateEntity)); t5 = A._arrayInstanceType(taxRates)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t4, A.List_List$of(new A.MappedListIterable(taxRates, new A._TaxRateDropdownState_build_closure3(_this), t5), true, t5._eval$1("ListIterable.E"))); return A.InputDecorator$(_null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, true, true, 48, t4, t1, _null, _null, _null, taxRate, type$.legacy_TaxRateEntity), _null), t2, false, t3, false, false, _null, _null); } }; A._TaxRateDropdownState_didChangeDependencies_closure.prototype = { call$1(id) { return this.taxState.map._map$_map.$index(0, id); }, $signature: 270 }; A._TaxRateDropdownState_didChangeDependencies_closure0.prototype = { call$1(taxRate) { var t1 = taxRate.name, t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, $signature: 646 }; A._TaxRateDropdownState_didChangeDependencies_closure1.prototype = { call$0() { var t1 = this.$this._widget; return A.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, $signature: 645 }; A._TaxRateDropdownState_build_closure.prototype = { call$1(id) { var t1 = this.taxState.map._map$_map.$index(0, id); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; A._TaxRateDropdownState_build_closure0.prototype = { call$1(id) { return this.taxState.map._map$_map.$index(0, id); }, $signature: 270 }; A._TaxRateDropdownState_build_closure1.prototype = { call$1(taxRate) { var t1 = taxRate.name, t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, $signature: 646 }; A._TaxRateDropdownState_build_closure2.prototype = { call$0() { var t1 = this.$this._widget; return A.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, $signature: 645 }; A._TaxRateDropdownState_build_closure3.prototype = { call$1(taxRate) { var _null = null; return A.DropdownMenuItem$(A.Text$(taxRate.rate === 0 && taxRate.name.length === 0 ? "" : this.$this._formatTaxRate$1(taxRate), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, taxRate, type$.legacy_TaxRateEntity); }, $signature: 2181 }; A.TaxRateField.prototype = { build$1(_, context) { var t2, t3, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t3 = J.$index$asx(t2.$index(0, t1), "tax_name"); if (t3 == null) t3 = ""; t3 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, _this.initialTaxName, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, new A.TaxRateField_build_closure(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), 1); t1 = J.$index$asx(t2.$index(0, t1), "tax_amount"); if (t1 == null) t1 = ""; return A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(_this.initialTaxAmount, context, _null, _null, B.FormatNumberType_4, true, _null, false), _null, false, false, _null, new A.TextInputType(2, true, true), t1, _null, _null, false, new A.TaxRateField_build_closure0(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.TaxRateField_build_closure.prototype = { call$1(value) { return this.$this.onNameChanged.call$1(value); }, $signature: 5 }; A.TaxRateField_build_closure0.prototype = { call$1(value) { return this.$this.onAmountChanged.call$1(A.parseDouble(value, false)); }, $signature: 5 }; A.LinkTextRelatedEntity.prototype = { createState$0() { return new A._LinkTextRelatedEntityState(B._StateLifecycle_0); } }; A._LinkTextRelatedEntityState.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this._widget, t2 = t1.entity; if (t2 == null || t1.relation == null) return new A.SizedBox(_null, _null, _null, _null); t1 = t2.get$listDisplayName(); return A.MouseRegion$(A.GestureDetector$(_null, A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _this._link_text$_isHovered ? B.TextDecoration_1 : B.TextDecoration_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new A._LinkTextRelatedEntityState_build_closure(_this), _null, _null, _null, _null, _null, _null, _null, _null, new A._LinkTextRelatedEntityState_build_closure0(_this), _null, _null, _null, _null, _null, _null), B.C__DeferringMouseCursor, _null, _null, new A._LinkTextRelatedEntityState_build_closure1(_this), new A._LinkTextRelatedEntityState_build_closure2(_this)); } }; A._LinkTextRelatedEntityState_build_closure2.prototype = { call$1($event) { var t1 = this.$this; t1.setState$1(new A._LinkTextRelatedEntityState_build__closure(t1)); }, $signature: 643 }; A._LinkTextRelatedEntityState_build__closure.prototype = { call$0() { return this.$this._link_text$_isHovered = true; }, $signature: 21 }; A._LinkTextRelatedEntityState_build_closure1.prototype = { call$1($event) { var t1 = this.$this; t1.setState$1(new A._LinkTextRelatedEntityState_build__closure0(t1)); }, $signature: 2183 }; A._LinkTextRelatedEntityState_build__closure0.prototype = { call$0() { return this.$this._link_text$_isHovered = false; }, $signature: 21 }; A._LinkTextRelatedEntityState_build_closure0.prototype = { call$0() { var t3, t1 = this.$this, t2 = t1._widget.entity.get$entityType(); t2.toString; t2 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor], type$.JSArray_legacy_EntityType), t2); t3 = t1._widget; if (t2) A.viewEntity(false, t3.entity, null, false); else { A.viewEntity(false, t3.relation, null, false); A.viewEntity(true, t1._widget.entity, null, false); } }, $signature: 1 }; A._LinkTextRelatedEntityState_build_closure.prototype = { call$0() { A.editEntity(null, this.$this._widget.entity, true, null); }, $signature: 1 }; A.LinkTextSpan.prototype = {}; A.LinkTextSpan_closure.prototype = { call$0() { A.launch(this.url, false, false); }, $signature: 1 }; A.ListFilter.prototype = { createState$0() { return new A._ListFilterState(new A.Debouncer(500, false), B._StateLifecycle_0); }, onFilterChanged$1(arg0) { return this.onFilterChanged.call$1(arg0); }, onSelectedStatus$2(arg0, arg1) { return this.onSelectedStatus.call$2(arg0, arg1); }, onSelectedState$2(arg0, arg1) { return this.onSelectedState.call$2(arg0, arg1); } }; A._ListFilterState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._filterController = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); t1 = A.FocusNode$(true, null, true, true, null, null, false); t1.addListener$1(0, _this.get$onFocusChanged()); _this._list_filter$_focusNode = t1; }, onFocusChanged$0() { if (this._list_filter$_focusNode.get$hasFocus()) this.setState$1(new A._ListFilterState_onFocusChanged_closure()); }, get$_getPlaceholder() { var t1, count, isDashboardOrSettings, isSingle, t2, key, placeholder, _this = this; if (_this._list_filter$_focusNode.get$hasFocus()) return ""; t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); count = J.get$length$asx(_this._widget.entityIds); isDashboardOrSettings = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_dashboard, B.EntityType_settings], type$.JSArray_legacy_EntityType), _this._widget.entityType); isSingle = count === 1 || isDashboardOrSettings; t2 = _this._widget; key = A.toSnakeCase(isSingle ? t2.entityType.name : t2.entityType.get$plural()); placeholder = t1.lookup$1(_this._widget.entityType === B.EntityType_dashboard ? "search_company" : "search_" + key); if (isSingle) t1 = placeholder; else { count.toString; t1 = _this._framework$_element; t1.toString; t1 = J.replaceFirst$2$s(placeholder, ":count", A.formatNumber(count, t1, null, null, B.FormatNumberType_2, true, null, false)); } return t1; }, didChangeDependencies$0() { var _this = this; _this.super$State$didChangeDependencies(); _this._filterController.set$text(0, _this._widget.filter); if (_this._widget.filter != null) _this._list_filter$_focusNode.requestFocus$0(); }, dispose$0(_) { var _this = this, t1 = _this._filterController; t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; _this._list_filter$_focusNode.removeListener$1(0, _this.get$onFocusChanged()); _this._list_filter$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, build$1(_, context) { var state, enableDarkMode, isDashboardOrSettings, color, t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textColor = A.Theme_of(context).textTheme.bodyLarge.color; _this._widget.toString; state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); enableDarkMode = state.prefState.enableDarkMode; isDashboardOrSettings = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_dashboard, B.EntityType_settings], type$.JSArray_legacy_EntityType), _this._widget.entityType); if (enableDarkMode) color = A.convertHexStringToColor("#393A3C"); else color = A.convertHexStringToColor("#dfdfdf"); t2 = A.BorderRadius$all(new A.Radius(2, 2)); t3 = _this._list_filter$_focusNode; t4 = _this._filterController._change_notifier$_value.text.length !== 0 || t3.get$hasFocus() ? B.TextAlign_4 : B.TextAlign_2; t5 = _this._filterController._change_notifier$_value.text.length !== 0 || _this._list_filter$_focusNode.get$hasFocus() ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, textColor, _null), _null, new A._ListFilterState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null) : A.Icon$(B.IconData_58727_MaterialIcons_null_false, textColor, _null); t5 = A.InputDecoration$(_null, B._NoInputBorder_sqK, _null, new A.EdgeInsets(8, 0, 8, 6), _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_getPlaceholder(), _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, _null); t6 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([A.Expanded$(new A.Padding(B.EdgeInsets_0_2_0_0, A.Container$(_null, A.TextField$(false, B.List_empty0, false, _null, _this._filterController, _null, _null, _null, 2, t5, true, _null, true, _null, false, t3, _null, _null, _null, _null, _null, 1, _null, _null, false, "\u2022", new A._ListFilterState_build_closure0(_this), _null, _null, _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, t4, B.TextAlignVertical_0, B.TextCapitalization_3, _null, _null, _null), B.Clip_0, _null, _null, new A.BoxDecoration(color, _null, _null, t2, _null, _null, B.BoxShape_0), _null, 40, _null, new A.EdgeInsets(0, 0, 0, 2), B.EdgeInsets_8_0_0_0, _null, _null, _null), _null), 2)], t6); if (A.getLayout(context) === B.AppLayout_desktop && !isDashboardOrSettings) { t3 = $.$get$_$values0()._set$_set; t3 = A.List_List$of(t3, true, A._instanceType(t3)._eval$1("SetMixin.E")); t4 = A.InputDecoration$(_null, new A.OutlineInputBorder(4, B.BorderRadius_tLn0, B.BorderSide_27z), _null, new A.EdgeInsets(10, 13, 10, 13), _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = state.getUIState$1(_this._widget.entityType).get$listUIState().stateFilters; t5 = A._setArrayType([new A.SizedBox(8, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.DropDownMultiSelect$(new A._ListFilterState_build_closure1(t1), t4, new A._ListFilterState_build_closure2(t1), new A._ListFilterState_build_closure3(_this, state), t3, new A.CopyOnWriteList(true, t5._list, A._instanceType(t5)._eval$1("CopyOnWriteList<1>")), t1.get$all()), _null)], t6); t3 = _this._widget; t4 = t3.statuses; if (t4 != null) { t3 = state.getUIState$1(t3.entityType).get$listUIState().statusFilters; t7 = t3._list; t8 = t1.get$all(); B.JSArray_methods.addAll$1(t5, A._setArrayType([new A.SizedBox(8, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.DropDownMultiSelect$(new A._ListFilterState_build_closure4(t1), A.InputDecoration$(_null, new A.OutlineInputBorder(4, B.BorderRadius_tLn0, B.BorderSide_27z), _null, new A.EdgeInsets(10, 13, 10, 13), _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A._ListFilterState_build_closure5(t1), new A._ListFilterState_build_closure6(_this, state), t4, new A.CopyOnWriteList(true, t7, A._instanceType(t3)._eval$1("CopyOnWriteList<1>")), t8), _null)], t6)); } B.JSArray_methods.addAll$1(t2, t5); } return A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A._ListFilterState_onFocusChanged_closure.prototype = { call$0() { }, $signature: 1 }; A._ListFilterState_build_closure.prototype = { call$0() { var t1 = this.$this; t1._filterController.set$text(0, ""); t1._list_filter$_focusNode.unfocus$1$disposition(B.UnfocusDisposition_1); t1._widget.onFilterChanged$1(null); }, $signature: 1 }; A._ListFilterState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1._debouncer.run$1(new A._ListFilterState_build__closure5(t1, value)); }, $signature: 11 }; A._ListFilterState_build__closure5.prototype = { call$0() { this.$this._widget.onFilterChanged$1(this.value); }, $signature: 1 }; A._ListFilterState_build_closure3.prototype = { call$1(selected) { var t3, state, t4, t1 = this.$this, t2 = this.state.getUIState$1(t1._widget.entityType).get$listUIState().stateFilters, stateFilters = new A.CopyOnWriteList(true, t2._list, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")), added = J.where$1$ax(selected._copy_on_write_list$_list, new A._ListFilterState_build__closure2(stateFilters)), removed = J.where$1$ax(stateFilters._copy_on_write_list$_list, new A._ListFilterState_build__closure3(selected)); for (t2 = J.get$iterator$ax(added.__internal$_iterable), t3 = new A.WhereIterator(t2, added._f, added.$ti._eval$1("WhereIterator<1>")); t3.moveNext$0();) { state = t2.get$current(t2); t1._widget.onSelectedState$2(state, true); } for (t2 = J.get$iterator$ax(removed.__internal$_iterable), t3 = new A.WhereIterator(t2, removed._f, removed.$ti._eval$1("WhereIterator<1>")); t3.moveNext$0();) { t4 = t2.get$current(t2); t1._widget.onSelectedState$2(t4, false); } }, $signature: 642 }; A._ListFilterState_build__closure2.prototype = { call$1(e) { return !J.contains$1$asx(this.stateFilters._copy_on_write_list$_list, e); }, $signature: 344 }; A._ListFilterState_build__closure3.prototype = { call$1(e) { return !J.contains$1$asx(this.selected._copy_on_write_list$_list, e); }, $signature: 344 }; A._ListFilterState_build_closure2.prototype = { call$1(value) { var _null = null; return A.Text$(this.localization.lookup$1(type$.legacy_EntityState._as(value).name), _null, 1, B.TextOverflow_0, _null, _null, _null, _null, _null, _null); }, $signature: 638 }; A._ListFilterState_build_closure1.prototype = { call$1(selected) { var _null = null, t1 = J.getInterceptor$asx(selected), t2 = this.localization; t1 = t1.get$isNotEmpty(selected) ? t1.map$1$1(selected, new A._ListFilterState_build__closure4(t2), type$.legacy_String).join$1(0, ", ") : t2.get$all(); return new A.Align(B.Alignment_m1_0, _null, _null, new A.Padding(new A.EdgeInsets(10, 0, 10, 0), A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null); }, $signature: 635 }; A._ListFilterState_build__closure4.prototype = { call$1(value) { return this.localization.lookup$1(type$.legacy_EntityState._as(value).name); }, $signature: 25 }; A._ListFilterState_build_closure6.prototype = { call$1(selected) { var t3, $status, t4, t1 = this.$this, t2 = this.state.getUIState$1(t1._widget.entityType).get$listUIState().statusFilters, statusFilters = new A.CopyOnWriteList(true, t2._list, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")), added = J.where$1$ax(selected._copy_on_write_list$_list, new A._ListFilterState_build__closure(statusFilters)), removed = J.where$1$ax(statusFilters._copy_on_write_list$_list, new A._ListFilterState_build__closure0(selected)); for (t2 = J.get$iterator$ax(added.__internal$_iterable), t3 = new A.WhereIterator(t2, added._f, added.$ti._eval$1("WhereIterator<1>")); t3.moveNext$0();) { $status = t2.get$current(t2); t1._widget.onSelectedStatus$2($status, true); } for (t2 = J.get$iterator$ax(removed.__internal$_iterable), t3 = new A.WhereIterator(t2, removed._f, removed.$ti._eval$1("WhereIterator<1>")); t3.moveNext$0();) { t4 = t2.get$current(t2); t1._widget.onSelectedStatus$2(t4, false); } }, $signature: 642 }; A._ListFilterState_build__closure.prototype = { call$1(e) { var t1 = J.map$1$1$ax(this.statusFilters._copy_on_write_list$_list, new A._ListFilterState_build___closure0(), type$.legacy_String); t1 = A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")); type$.legacy_EntityStatus._as(e); return !B.JSArray_methods.contains$1(t1, e.get$id(e)); }, $signature: 344 }; A._ListFilterState_build___closure0.prototype = { call$1(e) { return e.get$id(e); }, $signature: 2188 }; A._ListFilterState_build__closure0.prototype = { call$1(e) { var t1 = J.map$1$1$ax(this.selected._copy_on_write_list$_list, new A._ListFilterState_build___closure(), type$.legacy_String); t1 = A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")); type$.legacy_EntityStatus._as(e); return !B.JSArray_methods.contains$1(t1, e.get$id(e)); }, $signature: 344 }; A._ListFilterState_build___closure.prototype = { call$1(e) { return J.get$id$x(e); }, $signature: 25 }; A._ListFilterState_build_closure5.prototype = { call$1(value) { var _null = null; type$.legacy_EntityStatus._as(value); return A.Text$(this.localization.lookup$1(value.get$name(value)), _null, 1, B.TextOverflow_0, _null, _null, _null, _null, _null, _null); }, $signature: 638 }; A._ListFilterState_build_closure4.prototype = { call$1(selected) { var _null = null, t1 = J.getInterceptor$asx(selected); t1 = t1.get$isNotEmpty(selected) ? t1.map$1$1(selected, new A._ListFilterState_build__closure1(), type$.legacy_String).join$1(0, ", ") : this.localization.get$all(); return new A.Align(B.Alignment_m1_0, _null, _null, new A.Padding(new A.EdgeInsets(10, 0, 10, 0), A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null); }, $signature: 635 }; A._ListFilterState_build__closure1.prototype = { call$1(value) { type$.legacy_EntityStatus._as(value); return value.get$name(value); }, $signature: 25 }; A.ListScaffold.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), prefState = state.prefState, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.entityType, isSettings = t2.get$isSetting(), leading = new A.SizedBox(_null, _null, _null, _null); if (isSettings) leading = A.getLayout(context) === B.AppLayout_mobile ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57490_MaterialIcons_null_true, _null, _null), _null, new A.ListScaffold_build_closure(context), B.EdgeInsets_8_8_8_8, _null, _null, _null) : A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57415_MaterialIcons_null_false, _null, _null), _null, new A.ListScaffold_build_closure0(_this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null); else if (A.getLayout(context) === B.AppLayout_mobile || prefState.appLayout === B.AppLayout_mobile || prefState.menuSidebarMode === B.AppSidebarMode_float) leading = new A.Builder(new A.ListScaffold_build_closure1(_this, t1), _null); else if (t2 !== B.EntityType_settings) { t2 = A.Icon$(B.IconData_57415_MaterialIcons_null_false, _null, _null); t3 = prefState.enableTooltips ? t1.get$createNew() : _null; leading = A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, _null, new A.ListScaffold_build_closure2(_this, context), B.EdgeInsets_8_8_8_8, _null, t3, _null); } t2 = type$.JSArray_legacy_Widget; t3 = A._setArrayType([A.Expanded$(leading, 1)], t2); if (A.getLayout(context) === B.AppLayout_desktop && _this.onCheckboxPressed != null) { t4 = A.Icon$(B.IconData_57687_MaterialIcons_null_false, _null, _null); t5 = prefState.enableTooltips ? t1.get$multiselect() : _null; t3.push(A.Expanded$(A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, prefState.showKanban && state.uiState.get$mainRoute() === B.EntityType_task.toString$0(0) ? _null : new A.ListScaffold_build_closure3(_this), B.EdgeInsets_8_8_8_8, _null, t5, _null), 1)); } t4 = _this.appBarLeadingActions; B.JSArray_methods.addAll$1(t3, t4); leading = A.Row$(t3, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t3 = A.getLayout(context) === B.AppLayout_mobile || prefState.appLayout === B.AppLayout_mobile || prefState.menuSidebarMode === B.AppSidebarMode_float ? new A.MenuDrawerBuilder(_null) : _null; if (A.getLayout(context) !== B.AppLayout_mobile) t5 = (prefState.appLayout === B.AppLayout_mobile || prefState.historySidebarMode === B.AppSidebarMode_float) && !isSettings; else t5 = true; t5 = t5 ? new A.HistoryDrawerBuilder(_null) : _null; t4 = t4.length; t6 = _this.onCheckboxPressed == null || A.getLayout(context) === B.AppLayout_mobile ? 1 : 2; t7 = A._setArrayType([A.Expanded$(_this.appBarTitle, 1)], t2); if (A.getLayout(context) === B.AppLayout_desktop && _this.onCancelSettingsSection != null) t7.push(A.TextButton$(false, A.Text$(t1.get$back(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A.ListScaffold_build_closure4(_this, store, state), _null)); t1 = A.Row$(t7, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t7 = _this.appBarActions; t2 = t7 == null ? A._setArrayType([], t2) : t7; t2 = A.List_List$of(t2, true, type$.legacy_Widget); if (!isSettings) t7 = A.getLayout(context) === B.AppLayout_mobile || !prefState.isHistoryVisible; else t7 = false; if (t7) t2.push(new A.Builder(new A.ListScaffold_build_closure5(state, store), _null)); return new A.WillPopScope(A.FocusTraversalGroup$(A.Scaffold$(A.AppBar$(t2, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, leading, 48 * (t4 + t6), true, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, 1, _null), _null, A.ClipRect$(_this.body, B.Clip_1, _null), _this.bottomNavigationBar, t3, t5, _this.floatingActionButton, B.C__EndDockedFabLocation), true, true, _null), new A.ListScaffold_build_closure6(store), _null); }, get$body(receiver) { return this.body; } }; A.ListScaffold_build_closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; A.ListScaffold_build_closure0.prototype = { call$0() { A.createEntityByType(true, this.context, this.$this.entityType); }, $signature: 1 }; A.ListScaffold_build_closure1.prototype = { call$1(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return A.InkWell$(false, _null, true, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null), _null, new A.ListScaffold_build__closure0(context), B.EdgeInsets_8_8_8_8, _null, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.$this.onHamburgerLongPress, _null, _null, _null, _null, _null, _null, _null); }, $signature: 343 }; A.ListScaffold_build__closure0.prototype = { call$0() { A.Scaffold_of(this.context).openDrawer$0(); }, $signature: 1 }; A.ListScaffold_build_closure2.prototype = { call$0() { A.createEntityByType(true, this.context, this.$this.entityType); }, $signature: 1 }; A.ListScaffold_build_closure3.prototype = { call$0() { return this.$this.onCheckboxPressed.call$0(); }, $signature: 9 }; A.ListScaffold_build_closure6.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.ListScaffold_build_closure4.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.company; t1 = this.$this; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(t2, null, null, null, false, t1.onCancelSettingsSection, false, t1.onCancelSettingsIndex)); }, $signature: 1 }; A.ListScaffold_build_closure5.prototype = { call$1(context) { var _null = null, t1 = this.state; return A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_12_0_12_0, A.Icon$(B.IconData_58132_MaterialIcons_null_false, t1.get$headerTextColor(), _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ListScaffold_build__closure(context, t1, this.store), _null, _null, _null, _null, _null, _null); }, $signature: 343 }; A.ListScaffold_build__closure.prototype = { call$0() { var t2, _null = null, t1 = this.context; if (A.getLayout(t1) !== B.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === B.AppLayout_mobile || t2.historySidebarMode === B.AppSidebarMode_float; } else t2 = true; if (t2) A.Scaffold_of(t1).openEndDrawer$0(); else { t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_history, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); } }, $signature: 1 }; A.ActivityListTile.prototype = { build$1(_, context) { var t4, t5, t6, user, client, vendor, invoice, quote, credit, recurringInvoice, payment, task, expense, recurringExpense, title, contact, activity, t7, _null = null, _s18_ = ":recurring_expense", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].userState.map; t5 = this.activity; t6 = t5.userId; user = t4._map$_map.$index(0, t6); t6 = t2[t3].clientState.map; t4 = t5.clientId; client = t6._map$_map.$index(0, t4); t4 = t2[t3].vendorState.map; t6 = t5.vendorId; vendor = t4._map$_map.$index(0, t6); t6 = t2[t3].invoiceState.map; t4 = t5.invoiceId; invoice = t6._map$_map.$index(0, t4); t4 = t2[t3].quoteState.map; t6 = t5.quoteId; quote = t4._map$_map.$index(0, t6); t6 = t2[t3].creditState.map; t4 = t5.creditId; credit = t6._map$_map.$index(0, t4); t4 = t2[t3].recurringInvoiceState.map; t6 = t5.recurringInvoiceId; recurringInvoice = t4._map$_map.$index(0, t6); t6 = t2[t3].paymentState.map; t4 = t5.paymentId; payment = t6._map$_map.$index(0, t4); t4 = t2[t3].taskState.map; t6 = t5.taskId; task = t4._map$_map.$index(0, t6); t6 = t2[t3].expenseState.map; t4 = t5.expenseId; expense = t6._map$_map.$index(0, t4); t3 = t2[t3].recurringExpenseState.map; t2 = t5.recurringExpenseId; recurringExpense = t3._map$_map.$index(0, t2); title = t1.lookup$1("activity_" + t5.activityTypeId); t2 = t1.get$system(t1); t3 = client == null; if (!t3) { t4 = t5.contactId; t4 = t4 != null && t4.length !== 0; } else t4 = false; contact = t4 ? client.getContact$1(t5.contactId) : _null; t4 = user == null; if (t4) t6 = _null; else t6 = user.get$fullName().length !== 0 ? user.get$fullName() : user.email; activity = J.replaceFirst$2$s(title, ":user", t6 == null ? t2 : t6); t2 = t3 ? _null : client.displayName; activity = B.JSString_methods.replaceFirst$2(activity, ":client", t2 == null ? "" : t2); t2 = invoice == null ? _null : invoice.number; activity = B.JSString_methods.replaceFirst$2(activity, ":invoice", t2 == null ? "" : t2); t2 = recurringInvoice == null ? _null : recurringInvoice.number; activity = B.JSString_methods.replaceFirst$2(activity, ":recurring_invoice", t2 == null ? "" : t2); t2 = recurringExpense == null ? _null : recurringExpense.number; activity = B.JSString_methods.replaceFirst$2(activity, _s18_, t2 == null ? "" : t2); t2 = quote == null ? _null : quote.number; activity = B.JSString_methods.replaceFirst$2(activity, ":quote", t2 == null ? "" : t2); t2 = contact == null ? _null : contact.get$fullName(); if (t2 == null) t2 = t3 ? _null : client.displayName; if (t2 == null) t2 = t4 ? _null : user.get$fullName(); activity = B.JSString_methods.replaceFirst$2(activity, ":contact", t2 == null ? "" : t2); if (payment == null) t2 = _null; else { t2 = payment.transactionReference; t2 = t2.length !== 0 ? t2 : payment.number; } activity = B.JSString_methods.replaceFirst$2(activity, ":payment", t2 == null ? "" : t2); t2 = credit == null ? _null : credit.number; activity = B.JSString_methods.replaceFirst$2(activity, ":credit", t2 == null ? "" : t2); t2 = task == null ? _null : task.number; activity = B.JSString_methods.replaceFirst$2(activity, ":task", t2 == null ? "" : t2); t2 = expense == null ? _null : expense.number; activity = B.JSString_methods.replaceFirst$2(activity, ":expense", t2 == null ? "" : t2); t2 = vendor == null; t3 = t2 ? _null : vendor.name; activity = B.JSString_methods.replaceFirst$2(activity, ":vendor", t3 == null ? "" : t3); t2 = t2 ? _null : vendor.name; activity = B.JSString_methods.replaceFirst$2(activity, _s18_, t2 == null ? "" : t2); activity = A.stringReplaceAllUnchecked(activity, " ", " "); t2 = A.Icon$(A.getEntityIcon(t5.get$entityType()), _null, _null); t3 = A.Text$(activity, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = this.enableNavigation; t6 = !t4 ? _null : new A.ActivityListTile_build_closure(this, client); t4 = t4 ? A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null) : _null; t7 = t5.notes; t1 = t7.length !== 0 ? J.trim$0$s(t1.lookup$1(t7)) + "\n" : ""; t7 = A.formatDate(A.convertTimestampToDate(t5.updatedAt).toIso8601String$0(), context, true, false, true); t5 = t5.ip; t5 = (t5 == null ? "" : t5).length !== 0 ? B.JSString_methods.$add(" \u2022 ", t5) : ""; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, _null, t6, false, _null, _null, A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t1 + t7 + t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, t3, t4, _null); } }; A.ActivityListTile_build_closure.prototype = { call$0() { var _this = this, t1 = _this.$this.activity; switch (t1.get$entityType()) { case B.EntityType_task: A.viewEntityById(false, t1.taskId, B.EntityType_task, _this.client, false, true); break; case B.EntityType_client: A.viewEntityById(false, t1.clientId, B.EntityType_client, null, false, true); break; case B.EntityType_invoice: A.viewEntityById(false, t1.invoiceId, B.EntityType_invoice, _this.client, false, true); break; case B.EntityType_quote: A.viewEntityById(false, t1.quoteId, B.EntityType_quote, _this.client, false, true); break; case B.EntityType_credit: A.viewEntityById(false, t1.creditId, B.EntityType_credit, _this.client, false, true); break; case B.EntityType_payment: A.viewEntityById(false, t1.paymentId, B.EntityType_payment, _this.client, false, true); break; case B.EntityType_expense: A.viewEntityById(false, t1.expenseId, B.EntityType_expense, _this.client, false, true); break; default: A.print("Error: entity type " + A.S(t1.get$entityType()) + " not handled in activity_list_tile"); } }, $signature: 1 }; A.AppListTile.prototype = { _app_list_tile$_onLongPress$1(context) { var _this = this, t1 = _this.copyValue, t2 = t1 == null, t3 = t2 ? _this.title : t1; if (t3.length === 0) return; A.Clipboard_setData(new A.ClipboardData(t2 ? _this.title : t1)); t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$copiedToClipboard(); A.showToast(B.JSString_methods.replaceFirst$2(t3, ":value", t2 ? _this.title : t1)); }, build$1(_, context) { var t5, _this = this, _null = null, t1 = A.Theme_of(context).cardColor, t2 = A.Icon$(_this.icon, _null, _null), t3 = A.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = A._setArrayType([], type$.JSArray_legacy_Widget); t4.push(A.Text$(_this.subtitle, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t5 = _this.buttonRow; if (t5 != null) t4.push(new A.Padding(B.EdgeInsets_0_8_0_0, t5, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); return A.Material$(B.Duration_200000, true, _null, A.ListTile$(false, new A.EdgeInsets(25, 16, 25, 16), false, _null, true, _null, _null, false, _null, t2, new A.AppListTile_build_closure(_this, context), new A.AppListTile_build_closure0(_this, context), false, _null, _null, t4, _null, t3, _null, _null), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.AppListTile_build_closure0.prototype = { call$0() { var t1 = this.context, t2 = this.$this; return A.getLayout(t1) === B.AppLayout_desktop ? t2._app_list_tile$_onLongPress$1(t1) : t2.onTap.call$0(); }, $signature: 0 }; A.AppListTile_build_closure.prototype = { call$0() { return this.$this._app_list_tile$_onLongPress$1(this.context); }, $signature: 0 }; A.ListDivider.prototype = { build$1(_, context) { var _null = null, color = A.convertHexStringToColor(A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode ? "#393A3C" : "#dfdfdf"); return A.Container$(_null, A.Divider$(color, 1.5, 1.5), B.Clip_0, color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.ListFilterMessage.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.filterEntityType; return A.Material$(B.Duration_200000, true, _null, new A.FilterListTile(t1, A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").getEntityMap$1(t1)._map$_map.$index(0, _this.filterEntityId), _this.onPressed, _this.onClearPressed, _this.isSettings, _null), B.Clip_0, B.MaterialColor_Map_JNZaB_4294940672, 6, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.FilterListTile.prototype = { build$1(_, context) { var t3, subtitle, _this = this, _null = null, t1 = {}, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.subtitle = t1.title = null; t3 = _this.entity; if (_this.isSettings) { subtitle = t3 == null ? _null : t3.get$listDisplayName(); t1.subtitle = subtitle == null ? "" : subtitle; t3 = _this.entityType; if (t3 === B.EntityType_client) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "client_settings"); t1.title = t2 == null ? "" : t2; } else if (t3 === B.EntityType_group) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "group_settings"); t1.title = t2 == null ? "" : t2; } } else { t1.title = B.JSString_methods.replaceFirst$2(t2.get$filteredBy(), ":value", t3.get$listDisplayName()); t1.subtitle = t2.lookup$1(J.toString$0$(_this.entityType)); } return A.ClipRect$(new A.Padding(B.EdgeInsets_0_2_0_0, A.Container$(_null, new A.LayoutBuilder(new A.FilterListTile_build_closure(t1, _this), _null), B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, A.Border_Border$all(B.MaterialColor_Map_HFpTk_4288585374, 0.5), A.BorderRadius$all(new A.Radius(2, 2)), _null, _null, B.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null), _null), B.Clip_1, _null); } }; A.FilterListTile_build_closure.prototype = { call$2(context, constraints) { var _null = null, t1 = constraints.maxWidth > 250 ? A.Icon$(A.getEntityIcon(this.$this.entityType), _null, _null) : _null, t2 = this._box_0, t3 = A.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = this.$this; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, _null, new A.FilterListTile_build__closure(t4, context), false, _null, _null, A.Text$(t2.subtitle, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, t4.onClearPressed, B.EdgeInsets_8_8_8_8, _null, _null, _null), _null); }, $signature: 2190 }; A.FilterListTile_build__closure.prototype = { call$0() { return this.$this.onPressed.call$1(this.context); }, $signature: 9 }; A.SelectedIndicator.prototype = { build$1(_, context) { var t1, _this = this, _null = null, enableDarkMode = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode; if (_this.isSelected) { if (enableDarkMode) t1 = _this.isMenu ? "#1E252F" : "#253750"; else t1 = _this.isMenu ? "#f2faff" : "#e5f5ff"; t1 = A.convertHexStringToColor(t1); } else t1 = A.Theme_of(context).cardColor; return A.Material$(B.Duration_200000, true, _null, _this.child, B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.LiveText.prototype = { createState$0() { return new A._LiveTextState(B._StateLifecycle_0); }, value$0($receiver) { return this.value.call$0(); }, get$value(receiver) { return this.value; } }; A._LiveTextState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.duration; if (t1 == null) t1 = A.Duration$(0, 0, 0, 100, 0, 0); _this._live_text$_timer = A.Timer_Timer$periodic(t1, new A._LiveTextState_initState_closure(_this)); }, dispose$0(_) { this._live_text$_timer.cancel$0(0); this._live_text$_timer = null; this.super$State$dispose(0); }, build$1(_, context) { var _null = null, value = this._widget.value$0(0); if (value == null) value = ""; if (value.length === 0) return new A.SizedBox(_null, _null, _null, _null); return A.Text$(value, _null, 1, B.TextOverflow_2, _null, _null, this._widget.style, _null, _null, _null); } }; A._LiveTextState_initState_closure.prototype = { call$1(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new A._LiveTextState_initState__closure()); }, $signature: 425 }; A._LiveTextState_initState__closure.prototype = { call$0() { return false; }, $signature: 21 }; A.LoadingIndicator.prototype = { build$1(_, context) { var t1, _null = null; if (this.useCard) return new A.Padding(new A.EdgeInsets(16, 16, 16, 16), new A.SizedBox(1 / 0, 200, A.Card$(A.Center$(A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), _null, _null, 4, _null, true, _null), _null), _null); t1 = this.height; if (t1 == null) t1 = 1 / 0; return A.Container$(_null, A.Center$(A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, 1 / 0); } }; A.MainScreen.prototype = { build$1(_, context) { return A.StoreBuilder$(new A.MainScreen_build_closure(), null, type$.legacy_AppState); } }; A.MainScreen_build_closure.prototype = { call$2(context, store) { var t1, editingFilterEntity, showFilterSidebar, t2, t3, t4, _null = null, state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, subRoute = B.JSString_methods.$add("/", uiState.get$subRoute()), mainRoute = B.JSString_methods.$add("/", uiState.get$mainRoute()), $screen = new A.BlankScreen(_null, _null); if (state.authState.isAuthenticated && state.get$companies().length === 0) return A.Container$(_null, new A.LoadingIndicator(_null, false, _null), B.Clip_0, A.Theme_of(context).cardColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (!state.get$isUserConfirmed()) return new A.ConfirmEmailBuilder(_null); if (prefState.isFilterVisible) { t1 = uiState.filterStack._list; if (t1.length === 0) t1 = _null; else { t1 = B.JSArray_methods.get$last(t1); t1 = t1.get$id(t1); } t1 = t1 != null; } else t1 = false; if (t1) { t1 = uiState.filterStack._list; if (mainRoute === "/" + A.S(t1.length === 0 ? _null : B.JSArray_methods.get$last(t1).get$entityType()) && subRoute === "/edit") { mainRoute = B.JSString_methods.$add("/", uiState.get$previousMainRoute()); editingFilterEntity = true; } else editingFilterEntity = false; showFilterSidebar = true; } else { showFilterSidebar = false; editingFilterEntity = false; } switch (mainRoute) { case "/dashboard": t1 = A._setArrayType([A.Expanded$(new A.DashboardScreenBuilder(_null), 5)], type$.JSArray_legacy_Widget); if (prefState.isHistoryVisible && prefState.historySidebarMode === B.AppSidebarMode_visible) t1.push(new A.AppBorder(new A.HistoryDrawerBuilder(_null), _null, _null, true, false, _null)); $screen = A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); break; case "/client": $screen = new A.EntityScreens(B.EntityType_client, editingFilterEntity, _null); break; case "/product": $screen = new A.EntityScreens(B.EntityType_product, editingFilterEntity, _null); break; case "/invoice": $screen = new A.EntityScreens(B.EntityType_invoice, editingFilterEntity, _null); break; case "/recurring_invoice": $screen = new A.EntityScreens(B.EntityType_recurringInvoice, editingFilterEntity, _null); break; case "/payment": $screen = new A.EntityScreens(B.EntityType_payment, editingFilterEntity, _null); break; case "/quote": $screen = new A.EntityScreens(B.EntityType_quote, editingFilterEntity, _null); break; case "/credit": $screen = new A.EntityScreens(B.EntityType_credit, editingFilterEntity, _null); break; case "/purchase_order": $screen = new A.EntityScreens(B.EntityType_purchaseOrder, editingFilterEntity, _null); break; case "/project": $screen = new A.EntityScreens(B.EntityType_project, editingFilterEntity, _null); break; case "/task": $screen = new A.EntityScreens(B.EntityType_task, editingFilterEntity, _null); break; case "/vendor": $screen = new A.EntityScreens(B.EntityType_vendor, editingFilterEntity, _null); break; case "/expense": $screen = new A.EntityScreens(B.EntityType_expense, editingFilterEntity, _null); break; case "/recurring_expense": $screen = new A.EntityScreens(B.EntityType_recurringExpense, editingFilterEntity, _null); break; case "/settings": $screen = new A.SettingsScreens(_null); break; case "/reports": t1 = A._setArrayType([A.Expanded$(new A.ReportsScreenBuilder(_null), 5)], type$.JSArray_legacy_Widget); if (prefState.isHistoryVisible && prefState.historySidebarMode === B.AppSidebarMode_visible) t1.push(new A.AppBorder(new A.HistoryDrawerBuilder(_null), _null, _null, true, false, _null)); $screen = A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); break; default: A.print("## Error: main screen route " + mainRoute + " not defined"); } t1 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([], t1); if (A.isWindows()) t2.push(new A.AppTitleBar(_null)); t3 = prefState.appLayout; t1 = A._setArrayType([], t1); if (prefState.get$showMenu()) t1.push(new A.MenuDrawerBuilder(_null)); if (prefState.get$showMenu()) t4 = !state.get$isFullScreen() || showFilterSidebar; else t4 = false; t1.push(A.Expanded$(new A.AppBorder($screen, _null, _null, t4, false, _null), 1)); t2.push(A.Expanded$(new A.ChangeLayoutBanner(A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t3, B.AppLayout_desktop, _null), 1)); return new A.WillPopScope(new A.DesktopSessionTimeout(A.SafeArea$(true, A.FocusTraversalGroup$(A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, new A.ReadingOrderTraversalPolicy(A.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData))), B.EdgeInsets_0_0_0_0, true), _null), new A.MainScreen_build__closure(store), _null); }, $signature: 2192 }; A.MainScreen_build__closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this, $history, t3, t4, i, item, t5, t6, entity, t1, state, historyList, t2, isEditing, index; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; state = A._lateReadCheck(t1.__Store__state, "_state"); historyList = state.get$historyList(); t2 = state.uiState; isEditing = t2.get$isEditing(); index = isEditing ? 0 : 1; if (t2.previewStack._list.length !== 0) { t1.get$_dispatchers()[0].call$1(new A.PopPreviewStack()); $async$returnValue = false; // goto return $async$goto = 1; break; } t3 = type$.legacy_BaseEntity; t4 = type$.JSArray_legacy_EntityType; i = index; while (true) { if (!(i < historyList.length)) { $history = null; break; } c$1: { item = historyList[i]; t5 = A._setArrayType([B.EntityType_dashboard, B.EntityType_reports, B.EntityType_settings], t4); t6 = item.entityType; if (B.JSArray_methods.contains$1(t5, t6)) { $history = item; break; } else { t5 = item.id; if (t5 == null) break c$1; entity = t3._as(state.getEntityMap$1(t6)._map$_map.$index(0, t5)); if (entity != null) { entity.get$archivedAt(); t5 = entity.get$archivedAt() > 0 && !entity.get$isDeleted(entity); t6 = !(!t5 && !entity.get$isDeleted(entity)); t5 = t6; } else t5 = true; if (t5) break c$1; $history = item; break; } } ++i; } if (!isEditing) t1.get$_dispatchers()[0].call$1(new A.PopLastHistory()); if ($history == null) { t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; } t3 = $history.entityType; switch (t3) { case B.EntityType_dashboard: t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); break; case B.EntityType_reports: t1.get$_dispatchers()[0].call$1(new A.ViewReports()); break; case B.EntityType_settings: t3 = $history.id; t4 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = t4._list[t2].userCompany.company; t1.get$_dispatchers()[0].call$1(new A.ViewSettings(t2, null, null, null, false, t3, false, null)); break; default: A.viewEntityById(false, $history.id, t3, null, false, true); } $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.EntityScreens.prototype = { build$1(_, context) { var t1, listFlex, t2, child, editEntityType, previewEntityType, entityUIState, t3, leftFilterChild, topFilterChild, t4, listWidget, t5, t6, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, mainRoute = B.JSString_methods.$add("/", uiState.get$mainRoute()), subRoute = uiState.get$subRoute(), isEmail = subRoute === "email", isPdf = subRoute === "pdf", isFullScreen = state.get$isFullScreen(), isPreviewShown = prefState.isPreviewVisible; if (subRoute !== "view" && subRoute.length !== 0) isPreviewShown = true; else if (mainRoute === "/task" && prefState.showKanban && uiState.taskUIState.selectedId.length === 0) isPreviewShown = false; t1 = prefState.moduleLayout === B.ModuleLayout_list; if ((!t1 || mainRoute === "/task") && !isPreviewShown) listFlex = 5; else listFlex = prefState.appLayout !== B.AppLayout_mobile && prefState.menuSidebarMode === B.AppSidebarMode_collapse && !prefState.isMenuVisible ? 4 : 3; if (uiState.get$isEditing()) { t2 = uiState.filterStack._list; t2 = (t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) === B.EntityType_project && uiState.currentRoute === "/project/edit"; } else t2 = false; if (t2) child = new A.ProjectEditScreen(_null); else if (isFullScreen) { switch (mainRoute) { case "/invoice": if (isPdf) child = new A.InvoicePdfScreen(true, _null); else child = isEmail ? new A.InvoiceEmailScreen(_null) : new A.InvoiceEditScreen(_null); break; case "/quote": if (isPdf) child = new A.QuotePdfScreen(true, _null); else child = isEmail ? new A.QuoteEmailScreen(_null) : new A.QuoteEditScreen(_null); break; case "/credit": if (isPdf) child = new A.CreditPdfScreen(true, _null); else child = isEmail ? new A.CreditEmailScreen(_null) : new A.CreditEditScreen(_null); break; case "/purchase_order": if (isPdf) child = new A.PurchaseOrderPdfScreen(true, _null); else child = isEmail ? new A.PurchaseOrderEmailScreen(_null) : new A.PurchaseOrderEditScreen(_null); break; case "/recurring_invoice": child = isPdf ? new A.RecurringInvoicePdfScreen(_null) : new A.RecurringInvoiceEditScreen(_null); break; case "/task": child = new A.TaskEditScreen(_null); break; case "/client": child = isPdf ? new A.ClientPdfScreen(_null) : new A.ClientEditScreen(_null); break; case "/vendor": child = new A.VendorEditScreen(_null); break; case "/expense": child = new A.ExpenseEditScreen(_null); break; case "/recurring_expense": child = new A.RecurringExpenseEditScreen(_null); break; default: switch (uiState.currentRoute) { case "/settings/custom_designs/edit": child = new A.DesignEditScreen(_null); break; default: A.print("## ERROR: screen not defined in main_screen"); child = _null; break; } } isFullScreen = true; } else { if (subRoute === "edit") { if (_this.editingFilterEntity) { t2 = uiState.filterStack._list; editEntityType = t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType(); } else editEntityType = _this.entityType; switch (editEntityType) { case B.EntityType_client: child = new A.ClientEditScreen(_null); break; case B.EntityType_product: child = new A.ProductEditScreen(_null); break; case B.EntityType_invoice: child = new A.InvoiceEditScreen(_null); break; case B.EntityType_recurringInvoice: child = new A.RecurringInvoiceEditScreen(_null); break; case B.EntityType_payment: child = new A.PaymentEditScreen(_null); break; case B.EntityType_quote: child = new A.QuoteEditScreen(_null); break; case B.EntityType_credit: child = new A.CreditEditScreen(_null); break; case B.EntityType_purchaseOrder: child = new A.PurchaseOrderEditScreen(_null); break; case B.EntityType_project: child = new A.ProjectEditScreen(_null); break; case B.EntityType_task: child = new A.TaskEditScreen(_null); break; case B.EntityType_vendor: child = new A.VendorEditScreen(_null); break; case B.EntityType_expense: child = new A.ExpenseEditScreen(_null); break; case B.EntityType_recurringExpense: child = new A.RecurringExpenseEditScreen(_null); break; default: child = _null; } } else { t2 = uiState.previewStack._list; previewEntityType = t2.length === 0 ? _this.entityType : B.JSArray_methods.get$last(t2); entityUIState = state.getUIState$1(previewEntityType); t2 = entityUIState.get$selectedId(); if ((t2 == null ? "" : t2).length !== 0) { t2 = state.getEntityMap$1(previewEntityType); t3 = entityUIState.get$selectedId(); t3 = !t2._map$_map.containsKey$1(0, t3); t2 = t3; } else t2 = true; if (t2) child = new A.BlankScreen(_null, _null); else switch (previewEntityType) { case B.EntityType_client: child = new A.ClientViewScreen(false, false, _null); break; case B.EntityType_product: child = new A.ProductViewScreen(_null); break; case B.EntityType_invoice: child = new A.InvoiceViewScreen(false, _null); break; case B.EntityType_recurringInvoice: child = new A.RecurringInvoiceViewScreen(false, _null); break; case B.EntityType_payment: child = new A.PaymentViewScreen(false, _null); break; case B.EntityType_quote: child = new A.QuoteViewScreen(false, _null); break; case B.EntityType_credit: child = new A.CreditViewScreen(false, _null); break; case B.EntityType_purchaseOrder: child = new A.PurchaseOrderViewScreen(false, _null); break; case B.EntityType_project: child = new A.ProjectViewScreen(false, _null); break; case B.EntityType_task: child = new A.TaskViewScreen(_null); break; case B.EntityType_vendor: child = new A.VendorViewScreen(false, false, _null); break; case B.EntityType_expense: child = new A.ExpenseViewScreen(_null); break; case B.EntityType_user: child = new A.UserViewScreen(false, _null); break; case B.EntityType_group: child = new A.GroupViewScreen(false, _null); break; case B.EntityType_subscription: child = new A.SubscriptionViewScreen(false, _null); break; case B.EntityType_companyGateway: child = new A.CompanyGatewayViewScreen(false, _null); break; case B.EntityType_expenseCategory: child = new A.ExpenseCategoryViewScreen(false, _null); break; case B.EntityType_taskStatus: child = new A.TaskStatusViewScreen(false, _null); break; case B.EntityType_recurringExpense: child = new A.RecurringExpenseViewScreen(_null); break; default: A.print("## View screen not defined for " + A.S(previewEntityType)); child = _null; } } isFullScreen = false; } t2 = uiState.filterStack._list; if ((t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) != null) if (prefState.isFilterVisible) switch (t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) { case B.EntityType_client: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.ClientEditScreen(_null) : new A.ClientViewScreen(true, false, _null); break; case B.EntityType_invoice: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.InvoiceViewScreen(false, _null) : new A.InvoiceViewScreen(true, _null); break; case B.EntityType_quote: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.QuoteViewScreen(false, _null) : new A.QuoteViewScreen(true, _null); break; case B.EntityType_credit: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.CreditViewScreen(false, _null) : new A.CreditViewScreen(true, _null); break; case B.EntityType_purchaseOrder: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.PurchaseOrderViewScreen(false, _null) : new A.PurchaseOrderViewScreen(true, _null); break; case B.EntityType_payment: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.PaymentEditScreen(_null) : new A.PaymentViewScreen(true, _null); break; case B.EntityType_user: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.UserEditScreen(_null) : new A.UserViewScreen(true, _null); break; case B.EntityType_group: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.GroupEditScreen(_null) : new A.GroupViewScreen(true, _null); break; case B.EntityType_subscription: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.SubscriptionEditScreen(_null) : new A.SubscriptionViewScreen(true, _null); break; case B.EntityType_companyGateway: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.CompanyGatewayEditScreen(_null) : new A.CompanyGatewayViewScreen(true, _null); break; case B.EntityType_recurringInvoice: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.RecurringInvoiceEditScreen(_null) : new A.RecurringInvoiceViewScreen(true, _null); break; case B.EntityType_expenseCategory: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.ExpenseCategoryEditScreen(_null) : new A.ExpenseCategoryViewScreen(true, _null); break; case B.EntityType_taskStatus: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.TaskStatusEditScreen(_null) : new A.TaskStatusViewScreen(true, _null); break; case B.EntityType_vendor: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.VendorEditScreen(_null) : new A.VendorViewScreen(true, false, _null); break; case B.EntityType_project: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.ProjectEditScreen(_null) : new A.ProjectViewScreen(true, _null); break; case B.EntityType_design: leftFilterChild = new A.DesignViewScreen(true, _null); break; default: A.print("Error: filter view not implemented for " + A.S(t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType())); leftFilterChild = _null; } else leftFilterChild = _null; else leftFilterChild = _null; topFilterChild = new A.EntityTopFilter((t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) != null, _null); t3 = !isFullScreen; if (t3) { t4 = _this.entityType; switch (t4) { case B.EntityType_client: listWidget = new A.ClientScreenBuilder(_null); break; case B.EntityType_product: listWidget = new A.ProductScreenBuilder(_null); break; case B.EntityType_invoice: listWidget = new A.InvoiceScreenBuilder(_null); break; case B.EntityType_recurringInvoice: listWidget = new A.RecurringInvoiceScreenBuilder(_null); break; case B.EntityType_payment: listWidget = new A.PaymentScreenBuilder(_null); break; case B.EntityType_quote: listWidget = new A.QuoteScreenBuilder(_null); break; case B.EntityType_credit: listWidget = new A.CreditScreenBuilder(_null); break; case B.EntityType_purchaseOrder: listWidget = new A.PurchaseOrderScreenBuilder(_null); break; case B.EntityType_project: listWidget = new A.ProjectScreenBuilder(_null); break; case B.EntityType_task: listWidget = new A.TaskScreenBuilder(_null); break; case B.EntityType_vendor: listWidget = new A.VendorScreenBuilder(_null); break; case B.EntityType_expense: listWidget = new A.ExpenseScreenBuilder(_null); break; case B.EntityType_recurringExpense: listWidget = new A.RecurringExpenseScreenBuilder(_null); break; default: A.print("## ERROR: list widget not implemented for " + t4.toString$0(0)); listWidget = _null; break; } } else listWidget = _null; t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); t6 = leftFilterChild != null; if (t6) t5.push(A.Expanded$(leftFilterChild, 2)); if (t3) { t3 = prefState.isFilterVisible; if (t3) t2 = listWidget; else { t3 = A._setArrayType([], t4); if (prefState.isViewerFullScreen$1(t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType())) t3.push(new A.SizedBox(_null, 360, topFilterChild, _null)); else t3.push(topFilterChild); t3.push(A.Expanded$(new A.AppBorder(listWidget, (t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType()) != null && true, _null, _null, false, _null), 1)); t3 = A.Column$(t3, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t2 = t3; } t5.push(A.Expanded$(A.ClipRRect$(B.BorderRadius_tLn, new A.AppBorder(t2, _null, _null, t6, false, _null)), listFlex)); } if (t1 && mainRoute !== "/task" || isPreviewShown) { t1 = isFullScreen ? listFlex + 2 : 2; t5.push(A.Expanded$(new A.AppBorder(child, _null, _null, true, false, _null), t1)); } if (prefState.isHistoryVisible && prefState.historySidebarMode === B.AppSidebarMode_visible) t5.push(new A.AppBorder(new A.HistoryDrawerBuilder(_null), _null, _null, true, false, _null)); return A.Row$(t5, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.SettingsScreens.prototype = { build$1(_, context) { var t1, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, $screen = new A.BlankScreen(_null, _null); switch (uiState.get$subRoute()) { case "company_details": $screen = new A.CompanyDetailsScreen(_null); break; case "payment_terms": $screen = new A.PaymentTermScreenBuilder(_null); break; case "payment_term/edit": $screen = new A.PaymentTermEditScreen(_null); break; case "payment_term/view": $screen = new A.PaymentTermViewScreen(_null); break; case "user_details": $screen = new A.UserDetailsScreen(_null); break; case "localization": $screen = new A.LocalizationScreen(_null); break; case "payment_settings": $screen = new A.PaymentsSettingsScreen(_null); break; case "company_gateways": $screen = new A.CompanyGatewayScreenBuilder(_null); break; case "company_gateways/view": $screen = new A.CompanyGatewayViewScreen(false, _null); break; case "company_gateways/edit": $screen = new A.CompanyGatewayEditScreen(_null); break; case "tax_settings": $screen = new A.TaxSettingsScreen(_null); break; case "tax_settings_rates": $screen = new A.TaxRateScreenBuilder(_null); break; case "tax_settings_rates/view": $screen = new A.TaxRateViewScreen(_null); break; case "tax_settings_rates/edit": $screen = new A.TaxRateEditScreen(_null); break; case "task_status": $screen = new A.TaskStatusScreenBuilder(_null); break; case "task_status/view": $screen = new A.TaskStatusViewScreen(false, _null); break; case "task_status/edit": $screen = new A.TaskStatusEditScreen(_null); break; case "product_settings": $screen = new A.ProductSettingsScreen(_null); break; case "task_settings": $screen = new A.TaskSettingsScreen(_null); break; case "expense_settings": $screen = new A.ExpenseSettingsScreen(_null); break; case "import_export": $screen = new A.ImportExportScreen(_null); break; case "device_settings": $screen = new A.DeviceSettingsScreen(_null); break; case "group_settings": $screen = new A.GroupScreenBuilder(_null); break; case "group_settings/view": $screen = new A.GroupViewScreen(false, _null); break; case "group_settings/edit": $screen = new A.GroupEditScreen(_null); break; case "subscriptions": $screen = new A.SubscriptionScreenBuilder(_null); break; case "subscriptions/view": $screen = new A.SubscriptionViewScreen(false, _null); break; case "subscriptions/edit": $screen = new A.SubscriptionEditScreen(_null); break; case "generated_numbers": $screen = new A.GeneratedNumbersScreen(_null); break; case "custom_fields": $screen = new A.CustomFieldsScreen(_null); break; case "workflow_settings": $screen = new A.WorkflowSettingsScreen(_null); break; case "invoice_design": $screen = new A.InvoiceDesignScreen(_null); break; case "client_portal": $screen = new A.ClientPortalScreen(_null); break; case "email_settings": $screen = new A.EmailSettingsScreen(_null); break; case "templates_and_reminders": $screen = new A.TemplatesAndRemindersScreen(_null); break; case "credit_cards_and_banks": $screen = new A.CreditCardsAndBanksScreen(_null); break; case "data_visualizations": $screen = new A.DataVisualizationsScreen(_null); break; case "user_management": $screen = new A.UserScreenBuilder(_null); break; case "user_management/view": $screen = new A.UserViewScreen(false, _null); break; case "user_management/edit": $screen = new A.UserEditScreen(_null); break; case "custom_designs": $screen = new A.DesignScreenBuilder(_null); break; case "custom_designs/view": $screen = new A.DesignViewScreen(false, _null); break; case "custom_designs/edit": $screen = new A.DesignEditScreen(_null); break; case "account_management": $screen = new A.AccountManagementScreen(_null); break; case "tokens": $screen = new A.TokenScreenBuilder(_null); break; case "token/view": $screen = new A.TokenViewScreen(_null); break; case "token/edit": $screen = new A.TokenEditScreen(_null); break; case "webhook": $screen = new A.WebhookScreenBuilder(_null); break; case "webhook/view": $screen = new A.WebhookViewScreen(_null); break; case "webhook/edit": $screen = new A.WebhookEditScreen(_null); break; case "expense_category": $screen = new A.ExpenseCategoryScreenBuilder(_null); break; case "expense_category/view": $screen = new A.ExpenseCategoryViewScreen(false, _null); break; case "expense_category/edit": $screen = new A.ExpenseCategoryEditScreen(_null); break; } t1 = A._setArrayType([], type$.JSArray_legacy_Widget); if (!state.get$isFullScreen()) t1.push(A.Expanded$(new A.SettingsScreenBuilder(_null), 2)); t1.push(A.Expanded$(new A.AppBorder($screen, _null, _null, true, false, _null), 3)); if (prefState.isHistoryVisible && prefState.historySidebarMode === B.AppSidebarMode_visible) t1.push(new A.AppBorder(new A.HistoryDrawerBuilder(_null), _null, _null, true, false, _null)); return A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.MenuDrawer.prototype = { createState$0() { return new A._MenuDrawerState(B._StateLifecycle_0); } }; A._MenuDrawerState.prototype = { build$1(_, context) { var t4, t5, t6, t7, t8, _collapsedCompanySelector, _expandedCompanySelector, t9, t10, t11, t12, _this = this, _null = null, t1 = type$.legacy_AppState, store = A.StoreProvider_of(context, t1), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = state.prefState, enableDarkMode = t2.enableDarkMode, t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), company = _this._widget.viewModel.selectedCompany, inactiveColor = t2.customColors._map$_map.$index(0, "sidebar_inactive_background_color"); if (inactiveColor == null) inactiveColor = ""; if (company == null) return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = new A._MenuDrawerState_build__companyLogo(); t4 = new A._MenuDrawerState_build__companyListItem(_this, state, store, t2, t3, context); t3.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t3.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "select_company"); if (t7 == null) t7 = ""; t8 = type$.legacy_String; _collapsedCompanySelector = A.PopupMenuButton$(new A.SizedBox(38, 50, t2.call$1(_this._widget.viewModel.selectedCompany), _null), A.Theme_of(context).cardColor, true, _null, _null, new A._MenuDrawerState_build_closure(_this, t4, state, t3), new A._MenuDrawerState_build_closure0(_this, context, state, t3), B.EdgeInsets_8_8_8_8, t7, t8); if (state.get$companies().length === 0) _expandedCompanySelector = new A.SizedBox(_null, _null, _null, _null); else { t2 = _this._widget.viewModel.selectedCompanyIndex; t7 = state.get$companies(); t9 = A._arrayInstanceType(t7)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t9 = A.List_List$of(A.List_List$of(new A.MappedListIterable(t7, new A._MenuDrawerState_build_closure1(state, t4), t9), true, t9._eval$1("ListIterable.E")), true, type$.legacy_DropdownMenuItem_legacy_String); if (state.get$canAddCompany()) t9.push(A.DropdownMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(2, _null, _null, _null), A.Icon$(B.IconData_57423_MaterialIcons_null_false, _null, 32), new A.SizedBox(15, _null, _null, _null), A.Text$(t3.get$addCompany(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, "company", t8)); t9.push(A.DropdownMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(2, _null, _null, _null), A.Icon$(B.IconData_58291_MaterialIcons_null_false, _null, 32), new A.SizedBox(15, _null, _null, _null), A.Text$(t3.get$logout(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, "logout", t8)); _expandedCompanySelector = new A.SizedBox(_null, 50, A.AppDropdownButton$(_null, "", true, t9, new A.ValueKey("select_company_dropdown_key", type$.ValueKey_legacy_String), _null, new A._MenuDrawerState_build_closure2(_this, state, context, t3), new A._MenuDrawerState_build_closure3(state, t4), false, t2, t8), _null); } if (state.get$isMenuCollapsed()) t2 = 65; else t2 = A.getLayout(context) === B.AppLayout_desktop ? 210 : 272; if (state.get$credentials(state).token.length === 0) t4 = A.Expanded$(new A.SizedBox(_null, _null, _null, _null), 1); else { t4 = enableDarkMode ? B.Color_452984831 : A.Theme_of(context).cardColor; t7 = state.get$isMenuCollapsed() ? _collapsedCompanySelector : _expandedCompanySelector; t4 = A.Container$(_null, t7, B.Clip_0, t4, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(14, 3, 14, 3), _null, _null, _null); } if (state.get$credentials(state).token.length === 0) t1 = new A.SizedBox(_null, _null, _null, _null); else { t7 = inactiveColor.length !== 0 ? A.convertHexStringToColor(inactiveColor) : A.Theme_of(context).cardColor; t8 = A._setArrayType([], type$.JSArray_legacy_Widget); t9 = state.userCompanyStates; t10 = state.uiState.selectedCompanyIndex; t9 = t9._list; t11 = t9[t10].userCompany.account; if (!t11.accountSmsVerified && state.get$isHosted()) if (state.get$isMenuCollapsed()) { t11 = t3.get$verifyPhoneNumberHelp(); t8.push(A.Tooltip$(A.ListTile$(false, B.EdgeInsets_12_0_0_0, _null, _null, true, _null, _null, false, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNZaB_4294940672, _null), _null, new A._MenuDrawerState_build_closure4(store, company, state), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null, _null, false, _null, _null, _null, _null, _null, _null, _null), t11)); } else t8.push(A.Material$(B.Duration_200000, true, _null, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._MenuDrawerState_build_closure5(store, company, state), false, _null, _null, A.Text$(t3.get$verifyPhoneNumberHelp(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), B.Color_4293880832, _null, _null, _null), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_0)); else { t11 = t9[t10].userCompany; if (t11.company.isDisabled && t11.isAdmin) if (state.get$isMenuCollapsed()) { t11 = t3.get$companyDisabledWarning(); t8.push(A.Tooltip$(A.ListTile$(false, B.EdgeInsets_12_0_0_0, _null, _null, true, _null, _null, false, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNZaB_4294940672, _null), _null, new A._MenuDrawerState_build_closure6(store, company), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null, _null, false, _null, _null, _null, _null, _null, _null, _null), t11)); } else { t11 = J.$index$asx(t5.$index(0, t6), "warning"); if (t11 == null) t11 = ""; t12 = A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t8.push(A.Material$(B.Duration_200000, true, _null, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._MenuDrawerState_build_closure7(store, company), false, _null, _null, A.Text$(t3.get$companyDisabledWarning(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), B.Color_4293880832, new A.Padding(B.EdgeInsets_0_0_0_6, new A.IconText(t11, B.IconData_59083_MaterialIcons_null_false, t12, _null, _null), _null), _null, _null), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_0)); } } if (t9[t10].userCompany.isOwner) if (state.get$isHosted()) if (!A._lateReadCheck(A.StoreProvider_of(context, t1).__Store__state, "_state").get$isPaidAccount()) A.isApple(); t8.push(A.DrawerTile$(company, _null, A.getEntityIcon(B.EntityType_dashboard), _null, new A._MenuDrawerState_build_closure8(store), new A._MenuDrawerState_build_closure9(), t3.get$dashboard())); t1 = A.getEntityIcon(B.EntityType_client); t11 = t3.get$clients(t3); t8.push(A.DrawerTile$(company, B.EntityType_client, t1, t3.get$newClient(), _null, _null, t11)); t11 = A.getEntityIcon(B.EntityType_product); t1 = t3.get$products(); t8.push(A.DrawerTile$(company, B.EntityType_product, t11, t3.get$newProduct(), _null, _null, t1)); t1 = A.getEntityIcon(B.EntityType_invoice); t11 = t3.get$invoices(); t8.push(A.DrawerTile$(company, B.EntityType_invoice, t1, t3.get$newInvoice(), _null, _null, t11)); t11 = A.getEntityIcon(B.EntityType_recurringInvoice); t1 = t3.get$recurringInvoices(); t8.push(A.DrawerTile$(company, B.EntityType_recurringInvoice, t11, t3.get$newRecurringInvoice(), _null, _null, t1)); t1 = A.getEntityIcon(B.EntityType_payment); t11 = t3.get$payments(); t6 = J.$index$asx(t5.$index(0, t6), "new_payment"); t8.push(A.DrawerTile$(company, B.EntityType_payment, t1, t6 == null ? "" : t6, _null, _null, t11)); t1 = A.getEntityIcon(B.EntityType_quote); t5 = t3.get$quotes(t3); t8.push(A.DrawerTile$(company, B.EntityType_quote, t1, t3.get$newQuote(), _null, _null, t5)); t5 = A.getEntityIcon(B.EntityType_credit); t1 = t3.get$credits(); t8.push(A.DrawerTile$(company, B.EntityType_credit, t5, t3.get$newCredit(), _null, _null, t1)); t1 = A.getEntityIcon(B.EntityType_project); t5 = t3.get$projects(); t8.push(A.DrawerTile$(company, B.EntityType_project, t1, t3.get$newProject(), _null, _null, t5)); t5 = A.getEntityIcon(B.EntityType_task); t1 = t3.get$tasks(); t8.push(A.DrawerTile$(company, B.EntityType_task, t5, t3.get$newTask(), _null, _null, t1)); t1 = A.getEntityIcon(B.EntityType_vendor); t5 = t3.get$vendors(); t8.push(A.DrawerTile$(company, B.EntityType_vendor, t1, t3.get$newVendor(), _null, _null, t5)); t8.push(A.DrawerTile$(company, B.EntityType_purchaseOrder, A.getEntityIcon(B.EntityType_purchaseOrder), _null, _null, _null, t3.get$purchaseOrders())); t5 = A.getEntityIcon(B.EntityType_expense); t1 = t3.get$expenses(); t8.push(A.DrawerTile$(company, B.EntityType_expense, t5, t3.get$newExpense(), _null, _null, t1)); t8.push(A.DrawerTile$(company, B.EntityType_recurringExpense, A.getEntityIcon(B.EntityType_recurringExpense), _null, _null, _null, t3.get$recurringExpenses())); if (A.isApple()) t1 = !state.get$isHosted() || t9[t10].userCompany.account.plan === "enterprise" || t9[t10].userCompany.account.plan === "pro"; else t1 = true; if (t1) t8.push(A.DrawerTile$(company, _null, A.getEntityIcon(B.EntityType_reports), _null, _null, new A._MenuDrawerState_build_closure10(), t3.get$reports())); t8.push(A.DrawerTile$(company, _null, A.getEntityIcon(B.EntityType_settings), _null, _null, new A._MenuDrawerState_build_closure11(), t3.get$settings())); t1 = A.Expanded$(A.Container$(_null, new A.ScrollableListView(t8, _null, _null, _null), B.Clip_0, t7, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); } t3 = state.get$isMenuCollapsed() ? new A.SidebarFooterCollapsed(_null) : new A.SidebarFooter(_null); return A.FocusTraversalGroup$(A.Container$(_null, A.Drawer$(A.SafeArea$(true, A.Column$(A._setArrayType([t4, t1, new A.SizedBox(_null, 50, new A.AppBorder(new A.Align(new A.Alignment(0, 1), _null, _null, t3, _null), true, _null, _null, false, _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.EdgeInsets_0_0_0_0, true)), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2), true, true, _null); } }; A._MenuDrawerState_build__companyLogo.prototype = { call$1(company) { var t1 = company.settings.companyLogo; return t1 != null && t1.length !== 0 ? A.CachedImage$(t1, 38) : A.Image$asset("assets/images/icon.png", null, 38); }, $signature: 631 }; A._MenuDrawerState_build__companyListItem.prototype = { call$2$showAccentColor(company, showAccentColor) { var t3, t4, t5, _this = this, _null = null, t1 = _this.state, userCompany = B.JSArray_methods.firstWhere$2$orElse(t1.userCompanyStates._list, new A._MenuDrawerState_build__companyListItem_closure(company), _null).userCompany, t2 = _this.$this; if (!showAccentColor) if (t2._menu_drawer$_isHovered) t3 = A.isMacOS() || A.isWindows() || A.isLinux(); else t3 = false; else t3 = false; if (t3) { t3 = _this.store; t3 = A._lateReadCheck(t3.__Store__state, "_state").get$historyList().length === 0 ? new A._MenuDrawerState_build__companyListItem_closure0(t3) : new A._MenuDrawerState_build__companyListItem_closure1(t3, t1); t3 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_984508_MaterialIcons_null_false, _null, _null), _null, t3, B.EdgeInsets_8_8_8_8, _null, _null, _null); } else t3 = new A.Padding(B.EdgeInsets_0_0_2_0, _this._companyLogo.call$1(company), _null); t4 = company.settings.name; t5 = t4 == null; if ((t5 ? "" : t4).length === 0) t4 = _this.localization.get$newCompany(); else if (t5) t4 = ""; t4 = A._setArrayType([t3, new A.SizedBox(10, 50, _null, _null), A.Expanded$(A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(_this.context).textTheme.titleMedium, _null, _null, _null), 1)], type$.JSArray_legacy_Widget); if (showAccentColor && userCompany.settings.accentColor != null && t1.get$companies().length > 1) t4.push(A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(A.convertHexStringToColor(userCompany.settings.accentColor), _null, _null, _null, _null, _null, B.BoxShape_1), _null, 10, _null, _null, B.EdgeInsets_0_0_2_0, _null, _null, 10)); return A.MouseRegion$(A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.C__DeferringMouseCursor, _null, new A._MenuDrawerState_build__companyListItem_closure2(t2), new A._MenuDrawerState_build__companyListItem_closure3(t2), _null); }, call$1(company) { return this.call$2$showAccentColor(company, true); }, $signature: 2194 }; A._MenuDrawerState_build__companyListItem_closure.prototype = { call$1(userCompanyState) { return userCompanyState.userCompany.company.id === this.company.id; }, $signature: 2195 }; A._MenuDrawerState_build__companyListItem_closure2.prototype = { call$1(_) { var t1 = this.$this; return t1.setState$1(new A._MenuDrawerState_build__companyListItem__closure0(t1)); }, $signature: 287 }; A._MenuDrawerState_build__companyListItem__closure0.prototype = { call$0() { return this.$this._menu_drawer$_isHovered = true; }, $signature: 21 }; A._MenuDrawerState_build__companyListItem_closure3.prototype = { call$1(_) { var t1 = this.$this; return t1.setState$1(new A._MenuDrawerState_build__companyListItem__closure(t1)); }, $signature: 237 }; A._MenuDrawerState_build__companyListItem__closure.prototype = { call$0() { return this.$this._menu_drawer$_isHovered = false; }, $signature: 21 }; A._MenuDrawerState_build__companyListItem_closure0.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); }, $signature: 9 }; A._MenuDrawerState_build__companyListItem_closure1.prototype = { call$0() { var $history, t2, t3, t4, _null = null, t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.PopLastHistory()); if (A._lateReadCheck(t1.__Store__state, "_state").get$historyList().length === 0) { t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, _null)); return; } $history = B.JSArray_methods.get$first(A._lateReadCheck(t1.__Store__state, "_state").get$historyList()); t2 = $history.entityType; switch (t2) { case B.EntityType_dashboard: t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, _null)); break; case B.EntityType_reports: t1.get$_dispatchers()[0].call$1(new A.ViewReports()); break; case B.EntityType_settings: t2 = $history.id; t3 = this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = t3.userCompanyStates._list[t4].userCompany.company; t1.get$_dispatchers()[0].call$1(new A.ViewSettings(t4, _null, _null, _null, false, t2, false, _null)); break; default: A.viewEntityById(false, $history.id, t2, _null, false, true); } }, $signature: 1 }; A._MenuDrawerState_build_closure.prototype = { call$1(context) { var _this = this, _null = null, t1 = _this.$this._widget.viewModel.state.get$companies(), t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); t2 = A.List_List$of(A.List_List$of(new A.MappedListIterable(t1, new A._MenuDrawerState_build__closure1(_this._companyListItem), t2), true, t2._eval$1("ListIterable.E")), true, type$.legacy_PopupMenuEntry_legacy_String); if (_this.state.get$canAddCompany()) t2.push(A.PopupMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(2, _null, _null, _null), A.Icon$(B.IconData_57423_MaterialIcons_null_false, _null, 32), new A.SizedBox(15, _null, _null, _null), A.Text$(_this.localization.get$addCompany(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), "company", type$.legacy_String)); t2.push(A.PopupMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(2, _null, _null, _null), A.Icon$(B.IconData_58291_MaterialIcons_null_false, _null, 32), new A.SizedBox(15, _null, _null, _null), A.Text$(_this.localization.get$logout(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), "logout", type$.legacy_String)); return t2; }, $signature: 402 }; A._MenuDrawerState_build__closure1.prototype = { call$1(company) { return A.PopupMenuItem$(this._companyListItem.call$1(company), company.id, type$.legacy_String); }, $signature: 2196 }; A._MenuDrawerState_build_closure0.prototype = { call$1(companyId) { var t1, t2, t3, company, index, _this = this, _null = null; if (companyId === "logout") _this.$this._widget.viewModel.onLogoutTap.call$1(_this.context); else { t1 = _this.state; if (t1.isLoading) { A.showMessageDialog(_this.context, _this.localization.get$waitForLoading(), _null, _null); return; } else if (t1.isSaving) { A.showMessageDialog(_this.context, _this.localization.get$waitForSaving(), _null, _null); return; } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].lastUpdated; if (t2 <= 0) { A.showMessageDialog(_this.context, _this.localization.get$waitForData(), _null, _null); return; } else { t2 = _this.$this; t3 = _this.context; if (companyId === "company") t2._widget.viewModel.onAddCompany.call$1(t3); else { company = B.JSArray_methods.firstWhere$1(t1.get$companies(), new A._MenuDrawerState_build__closure0(companyId)); index = B.JSArray_methods.indexOf$1(t1.get$companies(), company); t2._widget.viewModel.onCompanyChanged.call$3(t3, index, company); } } } } }, $signature: 11 }; A._MenuDrawerState_build__closure0.prototype = { call$1(company) { return company.id === this.companyId; }, $signature: 786 }; A._MenuDrawerState_build_closure3.prototype = { call$1(context) { var t1 = this.state.get$companies(), t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Widget*>"); return A.List_List$of(new A.MappedListIterable(t1, new A._MenuDrawerState_build__closure(this._companyListItem), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 2197 }; A._MenuDrawerState_build__closure.prototype = { call$1(company) { return this._companyListItem.call$2$showAccentColor(company, false); }, $signature: 631 }; A._MenuDrawerState_build_closure1.prototype = { call$1(company) { var t1 = B.JSInt_methods.toString$0(B.JSArray_methods.indexOf$1(this.state.get$companies(), company)); return A.DropdownMenuItem$(this._companyListItem.call$1(company), null, t1, type$.legacy_String); }, $signature: 2198 }; A._MenuDrawerState_build_closure2.prototype = { call$1(value) { var t2, t3, t4, index, _this = this, _null = null, t1 = J.getInterceptor$(value); if (t1.$eq(value, "logout")) { t2 = _this.state; t2 = !t2.isLoading && !t2.isSaving; } else t2 = false; if (t2) _this.$this._widget.viewModel.onLogoutTap.call$1(_this.context); else { t2 = _this.state; if (t2.isLoading) { A.showMessageDialog(_this.context, _this.localization.get$waitForLoading(), _null, _null); return; } else if (t2.isSaving) { A.showMessageDialog(_this.context, _this.localization.get$waitForSaving(), _null, _null); return; } else { t3 = t2.uiState.selectedCompanyIndex; t3 = t2.userCompanyStates._list[t3].lastUpdated; if (t3 <= 0) { A.showMessageDialog(_this.context, _this.localization.get$waitForData(), _null, _null); return; } else { t3 = _this.$this; t4 = _this.context; if (t1.$eq(value, "company")) t3._widget.viewModel.onAddCompany.call$1(t4); else { index = A.int_parse(value, _null); t1 = t3._widget.viewModel; t2 = t2.get$companies()[index]; t1.onCompanyChanged.call$3(t4, index, t2); } } } } }, $signature: 7 }; A._MenuDrawerState_build_closure4.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.user; return this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(this.company, null, null, t2, false, "user_details", false, 0)); }, $signature: 9 }; A._MenuDrawerState_build_closure5.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.user; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(this.company, null, null, t2, false, "user_details", false, 0)); }, $signature: 1 }; A._MenuDrawerState_build_closure6.prototype = { call$0() { var _null = null; return this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(this.company, _null, _null, _null, false, "account_management", false, _null)); }, $signature: 9 }; A._MenuDrawerState_build_closure7.prototype = { call$0() { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(this.company, _null, _null, _null, false, "account_management", false, _null)); }, $signature: 1 }; A._MenuDrawerState_build_closure9.prototype = { call$0() { return A.viewEntitiesByType(B.EntityType_dashboard, null); }, $signature: 0 }; A._MenuDrawerState_build_closure8.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, "")); }, $signature: 9 }; A._MenuDrawerState_build_closure10.prototype = { call$0() { return A.viewEntitiesByType(B.EntityType_reports, null); }, $signature: 0 }; A._MenuDrawerState_build_closure11.prototype = { call$0() { return A.viewEntitiesByType(B.EntityType_settings, null); }, $signature: 0 }; A.DrawerTile.prototype = { createState$0() { return new A._DrawerTileState(B._StateLifecycle_0); }, onTap$0() { return this.onTap.call$0(); }, onLongPress$0() { return this.onLongPress.call$0(); }, get$company() { return this.company; } }; A._DrawerTileState.prototype = { build$1(_, context) { var userCompany, $navigator, t3, enableDarkMode, route, t4, t5, t6, isSelected, inactiveColor, inactiveFontColor, activeColor, activeFontColor, textColor, color, onTap, onLongPress, iconWidget, isLoading, child, _this = this, _null = null, _s6_ = "kanban", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, prefState = state.prefState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex; t1 = t1._list; userCompany = t1[t2].userCompany; $navigator = A.Navigator_of(context, false); t3 = _this._widget.entityType; if (t3 != null) t3 = !(userCompany.can$2(B.UserPermission_view, t3) || userCompany.can$2(B.UserPermission_create, t3)); else t3 = false; if (t3) return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); enableDarkMode = prefState.enableDarkMode; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this._widget.title === t3.get$dashboard()) route = "dashboard"; else if (_this._widget.title === t3.get$settings()) route = "settings"; else if (_this._widget.title === t3.get$reports()) route = "reports"; else { t4 = _this._widget.title; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = J.$index$asx(t5.$index(0, t3.localeCode), _s6_); route = t4 == (t6 == null ? J.$index$asx(t5.$index(0, "en"), _s6_) : t6) ? _s6_ : _this._widget.entityType.name; } t4 = uiState.filterStack._list; if ((t4.length === 0 ? _null : B.JSArray_methods.get$last(t4).get$entityType()) != null) if (prefState.isViewerFullScreen$1(t4.length === 0 ? _null : B.JSArray_methods.get$last(t4).get$entityType())) if (!uiState.get$isEditing()) if (!prefState.isPreviewVisible) if (!uiState.get$isEditing()) { t5 = uiState.currentRoute; t5 = !B.JSString_methods.endsWith$1(t5, "/email") && !B.JSString_methods.endsWith$1(t5, "/pdf") && !B.JSString_methods.startsWith$1(t5, "/settings"); } else t5 = false; else t5 = true; else t5 = false; else t5 = false; else t5 = false; if (t5) { t5 = _this._widget.entityType; isSelected = t5 == (t4.length === 0 ? _null : B.JSArray_methods.get$last(t4).get$entityType()); } else isSelected = B.JSString_methods.startsWith$1(uiState.currentRoute, "/" + A.toSnakeCase(route)); t4 = prefState.customColors._map$_map; inactiveColor = t4.$index(0, "sidebar_inactive_background_color"); if (inactiveColor == null) inactiveColor = ""; inactiveFontColor = t4.$index(0, "sidebar_inactive_font_color"); if (inactiveFontColor == null) inactiveFontColor = ""; activeColor = t4.$index(0, "sidebar_active_background_color"); if (activeColor == null) activeColor = ""; activeFontColor = t4.$index(0, "sidebar_active_font_color"); if (activeFontColor == null) activeFontColor = ""; t4 = A.Theme_of(context).textTheme.bodyLarge.color; t5 = isSelected ? 1 : 0.7; t4.toString; textColor = A.Color$fromARGB(B.JSNumber_methods.round$0(255 * t5), t4.get$value(t4) >>> 16 & 255, t4.get$value(t4) >>> 8 & 255, t4.get$value(t4) & 255); if (isSelected) { if (activeColor.length !== 0) color = A.convertHexStringToColor(activeColor); else color = A.convertHexStringToColor(enableDarkMode ? "#1E252F" : "#f2faff"); if (activeFontColor.length !== 0) textColor = A.convertHexStringToColor(activeFontColor); } else { color = inactiveColor.length !== 0 ? A.convertHexStringToColor(inactiveColor) : B.Color_0; if (inactiveFontColor.length !== 0) textColor = A.convertHexStringToColor(inactiveFontColor); } onTap = new A._DrawerTileState_build_closure(_this); onLongPress = new A._DrawerTileState_build_closure0(_this, context); if (state.get$isMenuCollapsed()) { t1 = prefState.enableTooltips ? _this._widget.title : ""; t2 = isSelected ? 1 : 0.8; return A.Tooltip$(new A.ColoredBox(color, A.Opacity$(A.InkWell$(false, _null, true, new A.SizedBox(_null, 40, A.Icon$(_this._widget.icon, textColor, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, onLongPress, onTap, _null, _null, _null, _null, _null, _null), t2), _null), t1); } if (_this._widget.title === t3.get$dashboard()) iconWidget = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58727_MaterialIcons_null_false, textColor, _null), _null, new A._DrawerTileState_build_closure1(context, $navigator, store, uiState), B.EdgeInsets_8_8_8_8, _null, _null, _null); else if (userCompany.can$2(B.UserPermission_create, _this._widget.entityType)) { t3 = prefState.enableTooltips ? _this._widget.iconTooltip : _null; iconWidget = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57424_MaterialIcons_null_false, textColor, _null), _null, new A._DrawerTileState_build_closure2(_this, context, $navigator), B.EdgeInsets_8_8_8_8, _null, t3, _null); } else iconWidget = _null; t3 = _this._widget.entityType; isLoading = t3 != null && t1[t2].userCompany.company.isLarge && uiState.loadingEntityType === t3 && true; t1 = isSelected ? 1 : 0.8; if (_this._menu_drawer$_isHovered && A.getLayout(context) === B.AppLayout_desktop && iconWidget != null) t2 = iconWidget; else t2 = isLoading ? new A.Padding(B.EdgeInsets_10_0_0_0, new A.SizedBox(22, 22, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null), _null) : A.FocusTraversalGroup$(A.IconButton$(B.Alignment_0_0, textColor, _null, true, A.Icon$(_this._widget.icon, _null, _null), _null, onTap, B.EdgeInsets_8_8_8_8, _null, _null, _null), true, false, _null); t3 = _this._widget.title; t3 = A.Text$(t3, new A.ValueKey("menu_" + A.S(t3), type$.ValueKey_legacy_String), _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyLarge.copyWith$2$color$fontSize(textColor, 14), _null, _null, _null); child = A.Material$(B.Duration_200000, true, _null, A.Opacity$(A.ListTile$(false, B.EdgeInsets_12_0_0_0, true, _null, true, _null, _null, false, _null, t2, onLongPress, onTap, false, _null, _null, _null, _null, t3, A.getLayout(context) === B.AppLayout_mobile ? new A.Padding(B.EdgeInsets_0_0_12_0, iconWidget, _null) : _null, _null), t1), B.Clip_0, color, 0, _null, _null, _null, _null, _null, B.MaterialType_0); if (state.get$isMenuCollapsed()) child = A.Tooltip$(child, _this._widget.title); return A.MouseRegion$(child, B.C__DeferringMouseCursor, _null, new A._DrawerTileState_build_closure3(_this), new A._DrawerTileState_build_closure4(_this), _null); } }; A._DrawerTileState_build_closure.prototype = { call$0() { var t1 = this.$this._widget, t2 = t1.entityType; if (t2 != null) A.viewEntitiesByType(t2, null); else t1.onTap$0(); }, $signature: 1 }; A._DrawerTileState_build_closure0.prototype = { call$0() { var t1 = this.$this._widget; if (t1.onLongPress != null) t1.onLongPress$0(); else { t1 = t1.entityType; if (t1 != null) A.createEntityByType(false, this.context, t1); } }, $signature: 1 }; A._DrawerTileState_build_closure1.prototype = { call$0() { var t1, _this = this; if (A.getLayout(_this.context) === B.AppLayout_mobile) _this.navigator.pop$0(0); t1 = _this.uiState; t1 = t1.get$mainRoute() === "dashboard" && t1.filter === "" ? null : ""; _this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, t1)); }, $signature: 1 }; A._DrawerTileState_build_closure2.prototype = { call$0() { var t1 = this.context; if (A.getLayout(t1) === B.AppLayout_mobile) this.navigator.pop$0(0); A.createEntityByType(false, t1, this.$this._widget.entityType); }, $signature: 1 }; A._DrawerTileState_build_closure3.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._DrawerTileState_build__closure0(t1)); }, $signature: 287 }; A._DrawerTileState_build__closure0.prototype = { call$0() { return this.$this._menu_drawer$_isHovered = true; }, $signature: 21 }; A._DrawerTileState_build_closure4.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._DrawerTileState_build__closure(t1)); }, $signature: 237 }; A._DrawerTileState_build__closure.prototype = { call$0() { return this.$this._menu_drawer$_isHovered = false; }, $signature: 21 }; A.SidebarFooter.prototype = { build$1(_, context) { var account, t4, t5, t6, t7, t8, _null = null, _s10_ = "user_guide", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), prefState = state.prefState, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; account = t2[t3].userCompany.account; t4 = A.Theme_of(context).bottomAppBarColor; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([], t5); if (state.get$isMenuCollapsed()) B.JSArray_methods.addAll$1(t6, A._setArrayType([A.Expanded$(new A.SizedBox(_null, _null, _null, _null), 1)], t5)); else { t5 = A._setArrayType([], t5); t7 = A.cleanApiUrl(state.authState.url); if (t7 !== "https://demo.invoiceninja.com") if (!state.get$isHosted() && !account.isSchedulerRunning) { t2 = prefState.enableTooltips ? t1.get$error(t1) : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNc9P_4294198070, _null), _null, new A.SidebarFooter_build_closure(context, t1, store), B.EdgeInsets_8_8_8_8, _null, t2, _null)); } else if (state.get$credentials(state).token.length === 0) { t2 = prefState.enableTooltips ? t1.get$error(t1) : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNc9P_4294198070, _null), _null, new A.SidebarFooter_build_closure0(context), B.EdgeInsets_8_8_8_8, _null, t2, _null)); } else { if (!state.get$isHosted()) { t2 = t2[t3].userCompany.account; t2 = !t2.disableAutoUpdate && !t2.isDocker && state.get$isUpdateAvailable(); } else t2 = false; if (t2) { t2 = prefState.enableTooltips ? t1.get$updateAvailable() : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, A.Theme_of(context).colorScheme.secondary, _null), _null, new A.SidebarFooter_build_closure1(context), B.EdgeInsets_8_8_8_8, _null, t2, _null)); } else if (state.get$isHosted() && A.getUnconnectedStripeAccount(state) != null) t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNZaB_4294940672, _null), _null, new A.SidebarFooter_build_closure2(context), B.EdgeInsets_8_8_8_8, _null, _null, _null)); else { t2 = !state.dismissedNativeWarning && !prefState.hideDesktopWarning; if (t2) t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58446_MaterialIcons_null_false, B.MaterialColor_Map_JNZaB_4294940672, _null), _null, new A.SidebarFooter_build_closure3(context, t1, store), B.EdgeInsets_8_8_8_8, _null, _null, _null)); } } t2 = A.Icon$(B.IconData_58307_MaterialIcons_null_false, _null, _null); t3 = prefState.enableTooltips; t7 = t3 ? t1.get$contactUs() : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, _null, new A.SidebarFooter_build_closure4(context), B.EdgeInsets_8_8_8_8, _null, t7, _null)); t7 = A.Icon$(B.IconData_58051_MaterialIcons_null_false, _null, _null); t2 = t3 ? t1.get$supportForum() : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t7, _null, new A.SidebarFooter_build_closure5(), B.EdgeInsets_8_8_8_8, _null, t2, _null)); t2 = A.Icon$(B.IconData_58123_MaterialIcons_null_true, _null, _null); if (t3) { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t7.$index(0, t1.localeCode), _s10_); t7 = t8 == null ? J.$index$asx(t7.$index(0, "en"), _s10_) : t8; } else t7 = ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, _null, new A.SidebarFooter_build_closure6(state), B.EdgeInsets_8_8_8_8, _null, t7, _null)); t7 = A.Icon$(B.IconData_58173_MaterialIcons_null_false, _null, _null); t2 = t3 ? t1.get$about() : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t7, _null, new A.SidebarFooter_build_closure7(context), B.EdgeInsets_8_8_8_8, _null, t2, _null)); t2 = state.lastError; if (t2.length !== 0) { t2 = A.Icon$(B.IconData_59083_MaterialIcons_null_false, B.MaterialColor_Map_JNc9P_4294198070, _null); t7 = t3 ? t1.get$error(t1) : ""; t5.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, t2, _null, new A.SidebarFooter_build_closure8(context, state), B.EdgeInsets_8_8_8_8, _null, t7, _null)); } t5.push(new A.Spacer(_null)); if (A.getLayout(context) !== B.AppLayout_mobile && prefState.menuSidebarMode === B.AppSidebarMode_collapse) { if (t3) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "hide_menu"); if (t1 == null) t1 = ""; } else t1 = ""; t5.push(new A.AppBorder(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(B.IconData_57694_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.SidebarFooter_build_closure9(store), _null, _null, _null, _null, _null, _null), t1), _null, _null, true, false, _null)); } B.JSArray_methods.addAll$1(t6, t5); } return A.Material$(B.Duration_200000, true, _null, A.Row$(t6, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, t4, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.SidebarFooter_build_closure.prototype = { call$0() { var t3, _null = null, t1 = this.context, t2 = this.localization; t2.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "crons_not_enabled"); if (t3 == null) t3 = ""; return A.showMessageDialog(t1, t3, _null, A._setArrayType([A.TextButton$(false, A.Text$(t2.get$learnMore().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.SidebarFooter_build__closure4(), _null), A.TextButton$(false, A.Text$(t2.get$refreshData().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.SidebarFooter_build__closure5(this.store, t1), _null)], type$.JSArray_legacy_TextButton)); }, $signature: 0 }; A.SidebarFooter_build__closure4.prototype = { call$0() { A.launch("https://invoiceninja.github.io/docs/self-host-troubleshooting/#cron-not-running-queue-not-running", false, false); }, $signature: 1 }; A.SidebarFooter_build__closure5.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.SidebarFooter_build_closure0.prototype = { call$0() { return A.showErrorDialog(true, this.context, null); }, $signature: 0 }; A.SidebarFooter_build_closure1.prototype = { call$0() { return A._showUpdate(this.context); }, $signature: 0 }; A.SidebarFooter_build_closure2.prototype = { call$0() { return A._showConnectStripe(this.context); }, $signature: 0 }; A.SidebarFooter_build_closure3.prototype = { call$0() { var t4, t5, t0, t6, t7, _null = null, _s16_ = "recommend_mobile", _s17_ = "recommend_desktop", _s9_ = "remind_me", t1 = this.context, t2 = A.isAndroid() || A.isIOS(), t3 = this.localization; if (t2) { t3.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t4 = t3.localeCode; t5 = J.$index$asx(t2.$index(0, t4), _s16_); if (t5 == null) t5 = J.$index$asx(t2.$index(0, "en"), _s16_); t0 = t5; t5 = t4; t4 = t2; t2 = t0; } else { t3.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t4 = t3.localeCode; t5 = J.$index$asx(t2.$index(0, t4), _s17_); if (t5 == null) t5 = J.$index$asx(t2.$index(0, "en"), _s17_); t0 = t5; t5 = t4; t4 = t2; t2 = t0; } t6 = this.store; t7 = A.TextButton$(true, A.Text$(t3.get$download(t3).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.SidebarFooter_build__closure0(t1), _null); t3 = A.TextButton$(false, A.Text$(t3.get$learnMore().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.SidebarFooter_build__closure1(), _null); t5 = J.$index$asx(t4.$index(0, t5), _s9_); t4 = t5 == null ? J.$index$asx(t4.$index(0, "en"), _s9_) : t5; return A.showMessageDialog(t1, t2, new A.SidebarFooter_build__closure2(t6), A._setArrayType([t7, t3, A.TextButton$(false, A.Text$(t4.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.SidebarFooter_build__closure3(t1, t6), _null)], type$.JSArray_legacy_TextButton)); }, $signature: 0 }; A.SidebarFooter_build__closure2.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.DismissNativeWarningPermanently()); }, $signature: 9 }; A.SidebarFooter_build__closure0.prototype = { call$0() { A.launch(A.getNativeAppUrl(A.getNativePlatform()), null, false); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.SidebarFooter_build__closure1.prototype = { call$0() { return A.launch("https://invoiceninja.github.io/docs/introduction/#performance", null, false); }, $signature: 26 }; A.SidebarFooter_build__closure3.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); this.store.get$_dispatchers()[0].call$1(new A.DismissNativeWarning()); }, $signature: 1 }; A.SidebarFooter_build_closure4.prototype = { call$0() { return A._showContactUs(this.context); }, $signature: 0 }; A.SidebarFooter_build_closure5.prototype = { call$0() { return A.launch("https://forum.invoiceninja.com", null, false); }, $signature: 26 }; A.SidebarFooter_build_closure6.prototype = { call$0() { var url, t1, _s35_ = "https://invoiceninja.github.io/docs", uiState = this.state.uiState, subRoute = uiState.get$baseSubRoute(); if (B.JSString_methods.startsWith$1(uiState.currentRoute, "/settings")) url = B.JSArray_methods.contains$1(B.List_m5d, subRoute) ? _s35_ + ("/advanced-settings/#" + subRoute) : _s35_ + ("/basic-settings/#" + subRoute); else if (uiState.get$mainRoute() === "dashboard") url = "https://invoiceninja.github.io/docs/introduction"; else if (uiState.get$mainRoute() === "reports") url = "https://invoiceninja.github.io/docs/reports"; else { t1 = A.toSnakeCase(uiState.get$entityTypeRoute().get$plural()); url = _s35_ + ("/" + A.stringReplaceAllUnchecked(t1, "_", "-")); } A.launch(url, null, false); }, $signature: 1 }; A.SidebarFooter_build_closure7.prototype = { call$0() { return A._showAbout(this.context); }, $signature: 0 }; A.SidebarFooter_build_closure8.prototype = { call$0() { return A.showDialog(null, true, new A.SidebarFooter_build__closure(this.state), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 2199 }; A.SidebarFooter_build__closure.prototype = { call$1(context) { return new A.ErrorDialog(this.state.lastError, true, null); }, $signature: 24 }; A.SidebarFooter_build_closure9.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_menu, _null, _null); return this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 9 }; A.SidebarFooterCollapsed.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = A.Theme_of(context).cardColor, t3 = state.uiState.filterStack._list; if ((t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType()) != null && state.prefState.isFilterVisible) { t3 = state.get$isUpdateAvailable() ? A.Icon$(B.IconData_59083_MaterialIcons_null_false, A.Theme_of(context).colorScheme.secondary, _null) : A.Icon$(B.IconData_58173_MaterialIcons_null_false, _null, _null); t1 = A.PopupMenuButton$(_null, _null, true, t3, _null, new A.SidebarFooterCollapsed_build_closure(state, t1), new A.SidebarFooterCollapsed_build_closure0(t1, context), B.EdgeInsets_8_8_8_8, _null, type$.legacy_String); } else { t3 = A.Icon$(B.IconData_57695_MaterialIcons_null_true, state.get$isUpdateAvailable() ? state.get$accentColor() : _null, _null); if (state.prefState.enableTooltips) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "show_menu"); if (t1 == null) t1 = ""; } else t1 = _null; t1 = A.IconButton$(B.Alignment_0_0, _null, _null, true, t3, _null, new A.SidebarFooterCollapsed_build_closure1(store), B.EdgeInsets_8_8_8_8, _null, t1, _null); } return A.Container$(_null, t1, B.Clip_0, t2, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, 1 / 0); } }; A.SidebarFooterCollapsed_build_closure0.prototype = { call$1(value) { var _this = this, t1 = _this.localization; if (value === t1.get$updateAvailable()) A._showUpdate(_this.context); else if (value === t1.get$about()) A._showAbout(_this.context); else if (value === t1.get$contactUs()) A._showContactUs(_this.context); }, $signature: 11 }; A.SidebarFooterCollapsed_build_closure.prototype = { call$1(context) { var t2, t3, _null = null, t1 = A._setArrayType([], type$.JSArray_legacy_PopupMenuEntry_legacy_String); if (this.state.get$isUpdateAvailable()) { t2 = this.localization; t1.push(A.PopupMenuItem$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_59083_MaterialIcons_null_false, A.Theme_of(context).colorScheme.secondary, _null), _null, _null, false, _null, _null, _null, _null, A.Text$(t2.get$updateAvailable(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), t2.get$updateAvailable(), type$.legacy_String)); } t2 = this.localization; t3 = type$.legacy_String; t1.push(A.PopupMenuItem$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_58307_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, A.Text$(t2.get$contactUs(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), t2.get$contactUs(), t3)); t1.push(A.PopupMenuItem$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_58123_MaterialIcons_null_true, _null, _null), _null, _null, false, _null, _null, _null, _null, A.Text$(t2.get$documentation(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), t2.get$documentation(), t3)); t1.push(A.PopupMenuItem$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_58051_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, A.Text$(t2.get$supportForum(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), t2.get$supportForum(), t3)); t1.push(A.PopupMenuItem$(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_58173_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, A.Text$(t2.get$about(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), t2.get$about(), t3)); return t1; }, $signature: 402 }; A.SidebarFooterCollapsed_build_closure1.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_menu, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A._showContactUs_closure.prototype = { call$1(context) { return new A.ContactUsDialog(null); }, $signature: 2201 }; A._showUpdate_closure.prototype = { call$1(context) { return new A.UpdateDialog(null); }, $signature: 2202 }; A._showConnectStripe_closure.prototype = { call$0() { var context, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); A.Navigator_of(context, false).pop$0(0); A.editEntity(null, A.getUnconnectedStripeAccount(A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state")), true, null); }, $signature: 1 }; A._showAbout_closure.prototype = { call$1(context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, _s10_ = "review_app", t1 = _this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "view_licenses"); if (t4 == null) t4 = ""; t5 = _this.apppIcon; t6 = _this.state; t7 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.TextButton$(false, A.Text$(t4.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout__closure(context, t5, _this.appLegalese, t6), _null), A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout__closure0(context), _null)], t7); t8 = A.Text$("Invoice Ninja", _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null); t8 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, t5, _null), new A._showAbout__closure1(context, t1, _this.store), new A._showAbout__closure2(t6, t1), false, _null, _null, A.Text$(t6.get$appVersion(t6), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t8, _null, _null); t5 = t6.userCompanyStates; t9 = t6.uiState.selectedCompanyIndex; t5 = t5._list; t10 = A.Text$(t5[t9].userCompany.user.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = A.ListTile$(false, B.EdgeInsets_0_0_0_0, _null, _null, true, _null, _null, false, _null, _null, _null, _null, false, _null, _null, A.Text$(t5[t9].userCompany.user.email, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t10, _null, _null); t11 = J.$index$asx(t2.$index(0, t3), "app_platforms"); if (t11 == null) t11 = ""; t11 = A._setArrayType([t8, new A.SizedBox(_null, 8, _null, _null), t10, new A.Padding(B.EdgeInsets_0_4_0_0, new A.AppButton(_null, B._MdiIconData_EuK, t11.toUpperCase(), new A._showAbout__closure3(context, t1), _null, _null), _null), new A.AppButton(B.MaterialColor_Map_JN94k_4278238420, B._MdiIconData_egL0, t1.get$releaseNotes().toUpperCase(), new A._showAbout__closure4(), _null, _null)], t7); t6.get$isHosted(); t8 = J.$index$asx(t2.$index(0, t3), "health_check"); if (t8 == null) t8 = ""; t8 = A._setArrayType([new A.AppButton(B.MaterialColor_Map_JNEaM_4283215696, B._MdiIconData_2Nv, t8.toUpperCase(), new A._showAbout__closure5(context), _null, _null)], t7); t10 = t5[t9].userCompany.account; if (!t10.disableAutoUpdate && !t10.isDocker) { if (t6.get$isUpdateAvailable()) { t1 = J.$index$asx(t2.$index(0, t3), "update_app"); if (t1 == null) t1 = ""; } else t1 = t1.get$forceUpdate(); t8.push(new A.AppButton(B.MaterialColor_Map_JNZaB_4294940672, B._MdiIconData_egL1, t1.toUpperCase(), new A._showAbout__closure6(context), _null, _null)); } B.JSArray_methods.addAll$1(t11, t8); t1 = t5[t9].userCompany.company; t1.toString; if (B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, Date.now() - A.convertTimestampToDate(t1.createdAt)._value, 0, 0)._duration, 864e8) > 30) { t1 = J.$index$asx(t2.$index(0, t3), _s10_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s10_); t11.push(new A.AppButton(B.MaterialColor_Map_JNNS7_4288423856, B.IconData_58873_MaterialIcons_null_false, t1.toUpperCase(), new A._showAbout__closure7(context), _null, _null)); } t11.push(new A.SizedBox(_null, 22, _null, _null)); t11.push(A.Wrap$(B.WrapAlignment_2, A._setArrayType([A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_SXh, _null, _null), _null, new A._showAbout__closure8(), B.EdgeInsets_8_8_8_8, _null, "Twitter", _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_sUr, _null, _null), _null, new A._showAbout__closure9(), B.EdgeInsets_8_8_8_8, _null, "Facebook", _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_aAu, _null, _null), _null, new A._showAbout__closure10(), B.EdgeInsets_8_8_8_8, _null, "GitHub", _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_7vC, _null, _null), _null, new A._showAbout__closure11(), B.EdgeInsets_8_8_8_8, _null, "YouTube", _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_AmO, _null, _null), _null, new A._showAbout__closure12(), B.EdgeInsets_8_8_8_8, _null, "Slack", _null)], t7), B.Clip_0, B.WrapCrossAlignment_0, 0)); return A.PointerInterceptor$(A.AlertDialog$(t4, B.EdgeInsets_0_0_0_0, _null, A.SingleChildScrollView$(A.Column$(t11, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1), B.EdgeInsets_24_20_24_24, _null, _null, _null)); }, $signature: 629 }; A._showAbout__closure.prototype = { call$0() { var _this = this, t1 = _this.state; return A.showLicensePage(_this.apppIcon, _this.appLegalese, "Invoice Ninja v5", t1.get$appVersion(t1), _this.context); }, $signature: 0 }; A._showAbout__closure0.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._showAbout__closure2.prototype = { call$0() { var t1 = this.state; A.Clipboard_setData(new A.ClipboardData(t1.get$appVersion(t1))); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", t1.get$appVersion(t1))); }, $signature: 1 }; A._showAbout__closure1.prototype = { call$0() { var _null = null; A.showMessageDialog(this.context, "stable".toUpperCase() + " \u2022 3.0.4", _null, A._setArrayType([A.TextButton$(false, A.Text$(this.localization.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout___closure1(this.store), _null)], type$.JSArray_legacy_TextButton)); }, $signature: 1 }; A._showAbout___closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.UserLogout()); }, $signature: 9 }; A._showAbout__closure3.prototype = { call$0() { A.showDialog(null, true, new A._showAbout___closure0(this.localization), this.context, null, true, type$.legacy_AlertDialog); }, $signature: 1 }; A._showAbout___closure0.prototype = { call$1(context) { var t3, _null = null, t1 = this.localization, t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "source_code"); if (t2 == null) t2 = ""; t3 = type$.JSArray_legacy_Widget; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout____closure(context, t1), _null), A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout____closure0(context), _null)], t3), B.EdgeInsets_0_0_0_0, _null, A.Column$(A._setArrayType([A.Text$(t1.get$desktop(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.AppButton(_null, B._MdiIconData_MO9, "Windows", new A._showAbout____closure1(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T1, "macOS", new A._showAbout____closure2(), _null, _null), new A.AppButton(_null, B._MdiIconData_ifn, "Linux", new A._showAbout____closure3(), _null, _null), new A.Padding(B.EdgeInsets_0_30_0_0, A.Text$(t1.get$mobile(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.AppButton(_null, B._MdiIconData_7T1, "iOS", new A._showAbout____closure4(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T10, "Android", new A._showAbout____closure5(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T10, "F-Droid", new A._showAbout____closure6(), _null, _null)], t3), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 165 }; A._showAbout____closure.prototype = { call$0() { A.showDialog(null, true, new A._showAbout_____closure(this.localization), this.context, null, true, type$.legacy_AlertDialog); }, $signature: 1 }; A._showAbout_____closure.prototype = { call$1(context) { var _null = null, t1 = this.localization, t2 = type$.JSArray_legacy_Widget; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout______closure(context), _null)], t2), B.EdgeInsets_0_0_0_0, _null, A.Column$(A._setArrayType([A.Text$("Backend", _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.AppButton(_null, B._MdiIconData_id2, "Laravel/PHP", new A._showAbout______closure0(), _null, _null), new A.Padding(B.EdgeInsets_0_30_0_0, A.Text$("Frontend", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.AppButton(_null, B._MdiIconData_7T11, "Flutter/Dart", new A._showAbout______closure1(), _null, _null), new A.AppButton(_null, B._MdiIconData_43h, "Storefront SDK", new A._showAbout______closure2(), _null, _null)], t2), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 165 }; A._showAbout______closure.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._showAbout______closure0.prototype = { call$0() { return A.launch("https://github.com/invoiceninja/invoiceninja/tree/v5-stable", null, false); }, $signature: 26 }; A._showAbout______closure1.prototype = { call$0() { return A.launch("https://github.com/invoiceninja/admin-portal", null, false); }, $signature: 26 }; A._showAbout______closure2.prototype = { call$0() { return A.launch("https://pub.dev/packages/invoiceninja", null, false); }, $signature: 26 }; A._showAbout____closure0.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._showAbout____closure1.prototype = { call$0() { return A.launch(string$.https_w, null, false); }, $signature: 26 }; A._showAbout____closure2.prototype = { call$0() { return A.launch("https://apps.apple.com/app/id1503970375", null, false); }, $signature: 26 }; A._showAbout____closure3.prototype = { call$0() { return A.launch("https://snapcraft.io/invoiceninja", null, false); }, $signature: 26 }; A._showAbout____closure4.prototype = { call$0() { return A.launch(string$.https_as, null, false); }, $signature: 26 }; A._showAbout____closure5.prototype = { call$0() { return A.launch(string$.https_p, null, false); }, $signature: 26 }; A._showAbout____closure6.prototype = { call$0() { return A.launch("https://f-droid.org/packages/com.invoiceninja.app", null, false); }, $signature: 26 }; A._showAbout__closure4.prototype = { call$0() { return A.launch(string$.https_g, null, false); }, $signature: 26 }; A._showAbout__closure5.prototype = { call$0() { A.showDialog(null, true, new A._showAbout___closure(), this.context, null, true, type$.legacy_HealthCheckDialog); }, $signature: 1 }; A._showAbout___closure.prototype = { call$1(context) { return new A.HealthCheckDialog(null); }, $signature: 2204 }; A._showAbout__closure6.prototype = { call$0() { return A._showUpdate(this.context); }, $signature: 0 }; A._showAbout__closure7.prototype = { call$0() { A.launch(A.getRateAppURL(this.context), null, false); }, $signature: 1 }; A._showAbout__closure8.prototype = { call$0() { return A.launch("https://twitter.com/invoiceninja", null, false); }, $signature: 26 }; A._showAbout__closure9.prototype = { call$0() { return A.launch("https://www.facebook.com/invoiceninja", null, false); }, $signature: 26 }; A._showAbout__closure10.prototype = { call$0() { return A.launch("https://github.com/invoiceninja", null, false); }, $signature: 26 }; A._showAbout__closure11.prototype = { call$0() { return A.launch("https://www.youtube.com/channel/UCXAHcBvhW05PDtWYIq7WDFA/videos", null, false); }, $signature: 26 }; A._showAbout__closure12.prototype = { call$0() { return A.launch("http://slack.invoiceninja.com", null, false); }, $signature: 26 }; A.ContactUsDialog.prototype = { createState$0() { return new A._ContactUsDialogState(B._StateLifecycle_0); } }; A._ContactUsDialogState.prototype = { _sendMessage$0() { var t1, t2, state, t3, t4, t5, t6, _this = this; if (_this._menu_drawer$_message.length === 0) return; t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); _this.setState$1(new A._ContactUsDialogState__sendMessage_closure(_this)); t2 = state.get$credentials(state); t3 = state.get$credentials(state); t4 = _this._menu_drawer$_message; t5 = _this._includeLogs ? "true" : ""; t6 = type$.legacy_String; new A.WebClient().post$3$data(t2.url + "/support/messages/send", t3.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["message", t4, "send_logs", t5, "platform", A.getPlatformLetter(), "version", state.get$appVersion(state)], t6, t6))).then$1$1(0, new A._ContactUsDialogState__sendMessage_closure0(_this, t1), type$.Null).catchError$1(new A._ContactUsDialogState__sendMessage_closure1(_this)); }, build$1(_, context) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, user = t2._list[t3].userCompany.user; t3 = A.Text$(t1.get$contactUs(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([], t2); if (_this._menu_drawer$_isSaving) t4.push(new A.Padding(B.EdgeInsets_12_12_12_12, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null)); if (!_this._menu_drawer$_isSaving) t4.push(A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._ContactUsDialogState_build_closure(context), _null)); if (!_this._menu_drawer$_isSaving) t4.push(A.TextButton$(false, A.Text$(t1.get$send(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._ContactUsDialogState_build_closure0(_this), _null)); t5 = A.getLayout(context) === B.AppLayout_mobile ? _null : 500; t6 = $.$get$LocalizationsProvider__localizedValues(); t7 = t1.localeCode; t8 = J.$index$asx(t6.$index(0, t7), "from"); t1 = A._setArrayType([A.TextFormField$(true, _null, false, _null, _null, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, _null, user.get$fullName() + " \u2022 " + user.email, _null, _null, _null, 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_4, _null, _null), new A.SizedBox(_null, 10, _null, _null), A.TextFormField$(true, _null, true, _null, _null, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1.get$message(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, false, _null, _null, _null, _null, B.TextInputType_1_null_null, 4, 4, false, new A._ContactUsDialogState_build_closure1(_this), _null, _null, _null, false, _null, _null, B.TextAlign_4, _null, _null)], t2); if (!state.get$isHosted()) { t8 = _this._includeLogs; t7 = J.$index$asx(t6.$index(0, t7), "include_recent_errors"); t6 = A.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); B.JSArray_methods.addAll$1(t1, A._setArrayType([new A.SizedBox(_null, 10, _null, _null), A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._ContactUsDialogState_build_closure2(_this), _null, _null, t6, t8)], t2)); } return A.PointerInterceptor$(A.AlertDialog$(t4, B.EdgeInsets_0_0_0_0, _null, A.SingleChildScrollView$(A.Container$(_null, A.Column$(t1, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1), new A.EdgeInsets(25, 25, 25, 25), _null, _null, t3)); } }; A._ContactUsDialogState__sendMessage_closure.prototype = { call$0() { return this.$this._menu_drawer$_isSaving = true; }, $signature: 21 }; A._ContactUsDialogState__sendMessage_closure0.prototype = { call$1(response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t1.setState$1(new A._ContactUsDialogState__sendMessage__closure0(t1)); t1 = t1._framework$_element; t1.toString; $async$goto = 2; return A._asyncAwait(A.showDialog(null, true, new A._ContactUsDialogState__sendMessage__closure1($async$self.localization), t1, null, true, type$.legacy_MessageDialog), $async$call$1); case 2: // returning from await. t1 = $.$get$navigatorKey(); t1.toString; A.Navigator_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false).pop$1(0, null); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 628 }; A._ContactUsDialogState__sendMessage__closure0.prototype = { call$0() { return this.$this._menu_drawer$_isSaving = false; }, $signature: 21 }; A._ContactUsDialogState__sendMessage__closure1.prototype = { call$1(context) { var _null = null, t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "your_message_has_been_received"); return new A.MessageDialog(t1 == null ? "" : t1, _null, _null, _null, _null, _null); }, $signature: 294 }; A._ContactUsDialogState__sendMessage_closure1.prototype = { call$1(error) { var t1; A.print("## ERROR: " + A.S(error)); t1 = this.$this; t1.setState$1(new A._ContactUsDialogState__sendMessage__closure(t1)); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, A.S(error)); }, $signature: 7 }; A._ContactUsDialogState__sendMessage__closure.prototype = { call$0() { return this.$this._menu_drawer$_isSaving = false; }, $signature: 21 }; A._ContactUsDialogState_build_closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; A._ContactUsDialogState_build_closure0.prototype = { call$0() { return this.$this._sendMessage$0(); }, $signature: 0 }; A._ContactUsDialogState_build_closure1.prototype = { call$1(value) { return this.$this._menu_drawer$_message = value; }, $signature: 15 }; A._ContactUsDialogState_build_closure2.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ContactUsDialogState_build__closure(t1, value)); }, $signature: 20 }; A._ContactUsDialogState_build__closure.prototype = { call$0() { return this.$this._includeLogs = this.value; }, $signature: 21 }; A.MenuDrawerBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.MenuDrawerBuilder_build_closure(), A.menu_drawer_vm_MenuDrawerVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_MenuDrawerVM); } }; A.MenuDrawerBuilder_build_closure.prototype = { call$2(context, viewModel) { return new A.MenuDrawer(viewModel, null); }, $signature: 2206 }; A.MenuDrawerVM.prototype = { get$user(receiver) { return this.user; } }; A.MenuDrawerVM_fromStore_closure1.prototype = { call$1(context) { A.cleanApiUrl(this.state.authState.url); A.confirmCallback(false, new A.MenuDrawerVM_fromStore__closure(this.store), context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$logout(), false, null); }, $signature: 14 }; A.MenuDrawerVM_fromStore__closure.prototype = { call$1(_) { return this.$call$body$MenuDrawerVM_fromStore__closure(_); }, $call$body$MenuDrawerVM_fromStore__closure(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t1.get$_dispatchers()[0].call$1(new A.UserLogout()); t1 = A._lateReadCheck(t1.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].userCompany.user.oauthProvider; if (t1 === "google") A.GoogleOAuth_signOut(); else if (t1 === "microsoft" && true) A.WebUtils_microsoftLogout(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 299 }; A.MenuDrawerVM_fromStore_closure.prototype = { call$3(context, index, company) { var t2, t1 = this.state; if (index === t1.uiState.selectedCompanyIndex) return; t2 = this.store; A.checkForChanges(new A.MenuDrawerVM_fromStore__closure1(t2, index, context, t1, company), false, t2); }, $signature: 2207 }; A.MenuDrawerVM_fromStore__closure1.prototype = { call$0() { var t2, t3, t4, uiState, route, _this = this, _null = null, _s6_ = "_state", _s6_0 = "/email", t1 = _this.store; t1.get$_dispatchers()[0].call$1(new A.ClearEntityFilter()); t1.get$_dispatchers()[0].call$1(new A.DiscardChanges()); t1.get$_dispatchers()[0].call$1(new A.SelectCompany(_this.index, true)); t2 = A._lateReadCheck(t1.__Store__state, _s6_); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; if (t3._list[t2].userCompany.company.isLarge) { t2 = A._lateReadCheck(t1.__Store__state, _s6_); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = t3._list[t2].lastUpdated; t2 = t2 <= 0; } else t2 = false; if (t2) t1.get$_dispatchers()[0].call$1(new A.LoadClients(_null, 1)); else { t2 = A._lateReadCheck(t1.__Store__state, _s6_); t3 = t2.userCompanyStates; t4 = t2.uiState.selectedCompanyIndex; if (t3._list[t4].get$isStale() || t2.staticState.get$isStale()) t1.get$_dispatchers()[0].call$1(new A.RefreshData(_null, false, false, false)); } _this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); uiState = _this.state.uiState; t2 = uiState.currentRoute; if (B.JSString_methods.startsWith$1(t2, "/settings")) { t3 = A._lateReadCheck(t1.__Store__state, _s6_); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].userCompany.user; t4 = uiState.get$subRoute(); t1.get$_dispatchers()[0].call$1(new A.ViewSettings(_this.company, _null, _null, t3, true, t4, false, _null)); } if (!uiState.get$isEditing()) t3 = !uiState.get$isEditing() && !B.JSString_methods.endsWith$1(t2, _s6_0) || B.JSString_methods.endsWith$1(t2, _s6_0) || B.JSString_methods.endsWith$1(t2, "/pdf"); else t3 = true; if (t3) { route = A.stringReplaceAllUnchecked(t2, "/edit", ""); route = A.stringReplaceAllUnchecked(route, "/view", ""); route = A.stringReplaceAllUnchecked(route, "/pdf", ""); route = A.stringReplaceAllUnchecked(route, _s6_0, ""); t1.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(route)); } }, $signature: 1 }; A.MenuDrawerVM_fromStore_closure0.prototype = { call$1(context) { var t2, t3, _s22_ = "upgrade_to_add_company", t1 = this.state; if (t1.get$isHosted()) if (!t1.get$isPaidAccount()) { t2 = t1.get$companies().length; t3 = t1.uiState.selectedCompanyIndex; t3 = t2 >= t1.userCompanyStates._list[t3].userCompany.account.hostedCompanyCount; t1 = t3; } else t1 = false; else t1 = false; if (t1) { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s22_); A.showMessageDialog(context, t1 == null ? J.$index$asx(t2.$index(0, "en"), _s22_) : t1, null, null); return; } A.confirmCallback(false, new A.MenuDrawerVM_fromStore__closure0(context, this.store), context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$addCompany(), false, null); }, $signature: 14 }; A.MenuDrawerVM_fromStore__closure0.prototype = { call$1(_) { return this.$call$body$MenuDrawerVM_fromStore__closure0(_); }, $call$body$MenuDrawerVM_fromStore__closure0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t3, completer, t1, t2; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.context; t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "added_company"); if (t2 == null) t2 = ""; t3 = type$.Null; completer = A.snackBarCompleter(t1, t2, true, t3); completer.future.then$1$1(0, new A.MenuDrawerVM_fromStore___closure(), t3); $async$self.store.get$_dispatchers()[0].call$1(new A.AddCompany(t1, completer)); $async$goto = 2; return A._asyncAwait(A.showDialog(null, false, new A.MenuDrawerVM_fromStore___closure0(), t1, null, true, type$.legacy_AlertDialog), $async$call$1); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 299 }; A.MenuDrawerVM_fromStore___closure.prototype = { call$1(value) { var t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 3 }; A.MenuDrawerVM_fromStore___closure0.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_legacy_Widget), null); }, $signature: 172 }; A._TheState.prototype = {}; A._theState_closure.prototype = { call$0() { return new A._TheState(); }, $signature: 2208 }; A._SelectRow.prototype = { build$1(_, context) { var _null = null; return A.ListTile$(false, new A.EdgeInsets(8, 0, 8, 0), true, _null, true, _null, _null, false, _null, _null, _null, new A._SelectRow_build_closure(this), this.selected, _null, _null, _null, _null, this.child, _null, _null); } }; A._SelectRow_build_closure.prototype = { call$0() { var t1 = this.$this; t1.onChange.call$1(!t1.selected); $.$get$_theState().notify$0(); }, $signature: 1 }; A.DropDownMultiSelect.prototype = { createState$0() { return new A._DropDownMultiSelectState(B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, childBuilder$1(arg0) { return this.childBuilder.call$1(arg0); }, menuItembuilder$1(arg0) { return this.menuItembuilder.call$1(arg0); } }; A._DropDownMultiSelectState.prototype = { initState$0() { this.super$State$initState(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._DropDownMultiSelectState_initState_closure(this)); }, build$1(_, context) { var _null = null; this._widget.toString; return A.Container$(_null, new A.LayoutBuilder(new A._DropDownMultiSelectState_build_closure(this), _null), B.Clip_0, _null, _null, _null, _null, 100, _null, _null, _null, _null, _null, _null); } }; A._DropDownMultiSelectState_initState_closure.prototype = { call$1(_) { var t2, t1 = this.$this; t1._widget.toString; t2 = t1._framework$_element; t2.toString; A.Theme_of(t2).toString; t1.setState$1(new A._DropDownMultiSelectState_initState__closure()); }, $signature: 36 }; A._DropDownMultiSelectState_initState__closure.prototype = { call$0() { }, $signature: 1 }; A._DropDownMultiSelectState_build_closure.prototype = { call$2(context, constraints) { var t5, t6, _null = null, t1 = this.$this, t2 = $.$get$_theState().rebuild$1(new A._DropDownMultiSelectState_build__closure(t1)), t3 = t1._widget, t4 = t3.decoration; t3 = J.get$isNotEmpty$asx(t3.selectedValues._copy_on_write_list$_list) ? J.$index$asx(t1._widget.selectedValues._copy_on_write_list$_list, 0) : _null; t5 = t1._widget.options; t5.toString; t6 = A._arrayInstanceType(t5)._eval$1("MappedListIterable<1,DropdownMenuItem<@>*>"); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_3, A._setArrayType([t2, new A.Align(B.Alignment_m1_0, _null, _null, A.DropdownButtonFormField$(t4, true, false, A.List_List$of(new A.MappedListIterable(t5, new A._DropDownMultiSelectState_build__closure0(t1), t6), true, t6._eval$1("ListIterable.E")), new A._DropDownMultiSelectState_build__closure1(), new A._DropDownMultiSelectState_build__closure2(t1), _null, t3, type$.dynamic), _null)], type$.JSArray_legacy_Widget), _null); }, $signature: 2209 }; A._DropDownMultiSelectState_build__closure.prototype = { call$0() { var t1 = this.$this._widget; t1 = t1.childBuilder$1(t1.selectedValues); return t1; }, $signature: 124 }; A._DropDownMultiSelectState_build__closure1.prototype = { call$1(x) { }, $signature: 7 }; A._DropDownMultiSelectState_build__closure2.prototype = { call$1(context) { var t2, t1 = this.$this._widget.options; t1.toString; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DropdownMenuItem<@>*>"); return A.List_List$of(new A.MappedListIterable(t1, new A._DropDownMultiSelectState_build___closure(), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 2210 }; A._DropDownMultiSelectState_build___closure.prototype = { call$1(e) { var _null = null; return A.DropdownMenuItem$(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, type$.dynamic); }, $signature: 626 }; A._DropDownMultiSelectState_build__closure0.prototype = { call$1(x) { var t1 = this.$this, t2 = $.$get$_theState().rebuild$1(new A._DropDownMultiSelectState_build___closure0(t1, x)); t1._widget.toString; return A.DropdownMenuItem$(t2, new A._DropDownMultiSelectState_build___closure1(t1, x), x, type$.dynamic); }, $signature: 626 }; A._DropDownMultiSelectState_build___closure0.prototype = { call$0() { var t1 = this.$this, t2 = this.x, t3 = J.contains$1$asx(t1._widget.selectedValues._copy_on_write_list$_list, t2), t4 = t1._widget.menuItembuilder$1(t2); return new A._SelectRow(new A._DropDownMultiSelectState_build____closure(t1, t2), t3, t4, null); }, $signature: 2212 }; A._DropDownMultiSelectState_build____closure.prototype = { call$1(isSelected) { var ns, t1 = this.$this, t2 = this.x, t3 = t1._widget; if (isSelected) { ns = t3.selectedValues; ns._maybeCopyBeforeWrite$0(); J.add$1$ax(ns._copy_on_write_list$_list, t2); t1._widget.onChanged$1(ns); } else { ns = t3.selectedValues; ns._maybeCopyBeforeWrite$0(); J.remove$1$ax(ns._copy_on_write_list$_list, t2); t1._widget.onChanged$1(ns); } }, $signature: 20 }; A._DropDownMultiSelectState_build___closure1.prototype = { call$0() { var ns, t1 = this.$this, t2 = this.x, t3 = J.contains$1$asx(t1._widget.selectedValues._copy_on_write_list$_list, t2), t4 = t1._widget; if (t3) { ns = t4.selectedValues; ns._maybeCopyBeforeWrite$0(); J.remove$1$ax(ns._copy_on_write_list$_list, t2); t1._widget.onChanged$1(ns); } else { ns = t4.selectedValues; ns._maybeCopyBeforeWrite$0(); J.add$1$ax(ns._copy_on_write_list$_list, t2); t1._widget.onChanged$1(ns); } }, $signature: 1 }; A.PortalLinks.prototype = { build$1(_, context) { var copyLinkWithHash, viewLinkPressed, copyLinkPressed, _this = this, _null = null, t1 = {}, prefState = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewLinkWithHash = t1.viewLinkWithHash = _this.viewLink, t3 = !B.JSString_methods.contains$1(viewLinkWithHash, "?") ? t1.viewLinkWithHash = viewLinkWithHash + "?" : viewLinkWithHash, t4 = "&client_hash=" + _this.client.clientHash; t1.viewLinkWithHash = t3 + t4; copyLinkWithHash = t1.copyLinkWithHash = _this.copyLink; t1.copyLinkWithHash = (!B.JSString_methods.contains$1(copyLinkWithHash, "?") ? t1.copyLinkWithHash = copyLinkWithHash + "?" : copyLinkWithHash) + t4; viewLinkPressed = new A.PortalLinks_build_closure(t1); copyLinkPressed = new A.PortalLinks_build_closure0(t1, t2); if (_this.useIcons) { t1 = A.Icon$(B.IconData_58460_MaterialIcons_null_true, _null, _null); t3 = prefState.enableTooltips; t1 = A.IconButton$(B.Alignment_0_0, _null, _null, true, t1, _null, viewLinkPressed, B.EdgeInsets_8_8_8_8, _null, t3 ? t2.get$viewPortal() : "", _null); t4 = A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null); return A.Row$(A._setArrayType([t1, A.IconButton$(B.Alignment_0_0, _null, _null, true, t4, _null, copyLinkPressed, B.EdgeInsets_8_8_8_8, _null, t3 ? t2.get$copyLink() : "", _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_5, B.MainAxisSize_1, _null); } return A.Row$(A._setArrayType([A.Expanded$(A.OutlinedButton$(A.Text$(t2.get$viewPortal(), _null, 2, B.TextOverflow_2, _null, _null, _null, B.TextAlign_2, _null, _null), _null, viewLinkPressed, _null), 1), new A.SizedBox(8, _null, _null, _null), A.Expanded$(A.OutlinedButton$(A.Text$(t2.get$copyLink(), _null, 2, B.TextOverflow_2, _null, _null, _null, B.TextAlign_2, _null, _null), _null, copyLinkPressed, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.PortalLinks_build_closure.prototype = { call$0() { return A.launch(this._box_0.viewLinkWithHash, null, false); }, $signature: 26 }; A.PortalLinks_build_closure0.prototype = { call$0() { A.Clipboard_setData(new A.ClipboardData(this._box_0.copyLinkWithHash)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", "")); }, $signature: 1 }; A.EntityPresenter.prototype = { title$1$isNarrow(_, isNarrow) { var _this = this, t1 = A.Localizations_of(_this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), type = t1.lookup$1(A.S(_this.entity.get$entityType())), $name = _this.entity.get$listDisplayName(); if (($name == null ? "" : $name).length === 0) $name = t1.get$pending(t1); else if ($name.length > 10) return $name; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_client, B.EntityType_vendor, B.EntityType_project, B.EntityType_user, B.EntityType_product], type$.JSArray_legacy_EntityType), _this.entity.get$entityType()) || isNarrow) return $name; else return A.S(type) + " " + $name; }, title$0($receiver) { return this.title$1$isNarrow($receiver, false); }, getField$2$context$field(context, field) { var t2, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); switch (field) { case "created_at": return A.Text$(A.formatDate(A.convertTimestampToDate(_this.entity.get$createdAt()).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "updated_at": return A.Text$(_this.entity.get$updatedAt() === 0 ? "" : A.formatDate(A.convertTimestampToDate(_this.entity.get$updatedAt()).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "archived_at": return A.Text$(_this.entity.get$archivedAt() === 0 ? "" : A.formatDate(A.convertTimestampToDate(_this.entity.get$archivedAt()).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "entity_state": t2 = _this.entity; if (!t2.get$isArchived() && !t2.get$isDeleted(t2)) t1 = t1.get$active(t1); else t1 = _this.entity.get$isArchived() ? t1.get$archived() : t1.get$deleted(); return A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "created_by": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].userState.$get$1(0, _this.entity.get$createdUserId()), _this.entity, _null); case "assigned_to": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].userState.$get$1(0, _this.entity.get$assignedUserId()), _this.entity, _null); case "is_deleted": t2 = _this.entity; return A.Text$(t2.get$isDeleted(t2) ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return A.Text$("Error: " + A.S(field) + " not found", _null, _null, _null, _null, _null, _null, _null, _null, _null); }, presentCustomField$2(context, value) { var t1; if (B.JSArray_methods.contains$1(A._setArrayType(["yes", "no"], type$.JSArray_legacy_String), value)) return A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(value); else { t1 = A.RegExp_RegExp("^\\d{4}-\\d{2}-\\d{2}$", true, false, false, false); if (t1._nativeRegExp.test(value)) return A.formatDate(value, context, true, true, false); } return value; } }; A.TableTooltip.prototype = { build$1(_, context) { var _null = null, t1 = this.message; return A.Tooltip$(A.Text$(t1, _null, 2, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), t1); }, get$message(receiver) { return this.message; } }; A.CachedImage.prototype = { build$1(_, context) { var t1, _this = this, _null = null; if (!A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").isTesting) { t1 = _this.url; t1 = (t1 == null ? "" : t1).length === 0; } else t1 = true; if (t1) return new A.SizedBox(_this.width, _null, _null, _null); t1 = _this.url; t1 = A.Image$network(t1, B.BoxFit_1, _null, new A.ValueKey(t1, type$.ValueKey_legacy_String), _this.width); return t1; } }; A.ResponsivePadding.prototype = { build$1(_, context) { var t1 = this.child; if (A.getLayout(context) === B.AppLayout_mobile) return new A.Padding(new A.EdgeInsets(12, 12, 12, 12 + context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.viewInsets.bottom), t1, null); else return A.FractionallySizedBox$(B.Alignment_0_0, new A.Padding(new A.EdgeInsets(0, 24, 0, 0), t1, null), null, 0.4); } }; A.ReviewApp.prototype = { createState$0() { return new A._ReviewAppState(B._StateLifecycle_0); } }; A._ReviewAppState.prototype = { build$1(_, context) { var _null = null; A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); A.StoreProvider_of(context, type$.legacy_AppState); return new A.SizedBox(_null, _null, _null, _null); } }; A.ScrollableListView.prototype = { createState$0() { return new A._ScrollableListViewState(B._StateLifecycle_0); } }; A._ScrollableListViewState.prototype = { initState$0() { this.super$State$initState(); this._scrollable_listview$_scrollController = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { this._scrollable_listview$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t1 = this._widget, t2 = t1.padding, t3 = t1.children; t1 = t1.scrollController; return A.ListView$(t3, t1 == null ? this._scrollable_listview$_scrollController : t1, t2, B.Axis_1, true); } }; A.ScrollableListViewBuilder.prototype = { createState$0() { return new A._ScrollableListViewBuilderState(B._StateLifecycle_0); } }; A._ScrollableListViewBuilderState.prototype = { initState$0() { this.super$State$initState(); this._scrollable_listview$_scrollController = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { this._scrollable_listview$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t1 = this._widget, t2 = t1.separatorBuilder, t3 = t1.padding, t4 = t1.itemBuilder, t5 = t1.itemCount; t1 = t1.scrollController; if (t2 != null) t1 = A.ListView$separated(t1 == null ? this._scrollable_listview$_scrollController : t1, t4, t5, t3, t2, true); else t1 = A.ListView$builder(t1 == null ? this._scrollable_listview$_scrollController : t1, t4, t5, t3, null, B.Axis_1, true); return t1; } }; A.SystemLogViewer.prototype = { createState$0() { return new A._SystemLogViewerState(A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_bool), B._StateLifecycle_0); } }; A._SystemLogViewerState.prototype = { build$1(_, context) { var t5, _null = null, t1 = {}, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t3 = this._widget.systemLogs._list, t4 = A._arrayInstanceType(t3)._eval$1("WhereIterable<1>"), systemLogs = t1.systemLogs = A.List_List$of(new A.WhereIterable(t3, new A._SystemLogViewerState_build_closure(), t4), true, t4._eval$1("Iterable.E")); t3 = systemLogs.length > 25 ? t1.systemLogs = B.JSArray_methods.sublist$2(systemLogs, 0, 25) : systemLogs; t4 = A._arrayInstanceType(t3); t5 = t4._eval$1("MappedIterable<1,ExpansionPanel*>"); return new A.ScrollableListView(A._setArrayType([new A.ExpansionPanelList(A.List_List$of(new A.MappedIterable(new A.WhereIterable(t3, new A._SystemLogViewerState_build_closure0(), t4._eval$1("WhereIterable<1>")), new A._SystemLogViewerState_build_closure1(this, state, t2), t5), true, t5._eval$1("Iterable.E")), new A._SystemLogViewerState_build_closure2(t1, this), _null)], type$.JSArray_legacy_Widget), _null, _null, _null); } }; A._SystemLogViewerState_build_closure.prototype = { call$1(log) { return log.typeId !== 800; }, $signature: 625 }; A._SystemLogViewerState_build_closure2.prototype = { call$2(index, isExpanded) { var t1 = this.$this; t1.setState$1(new A._SystemLogViewerState_build__closure(this._box_0, t1, index, isExpanded)); }, $signature: 426 }; A._SystemLogViewerState_build__closure.prototype = { call$0() { var _this = this; _this.$this._isExpanded.$indexSet(0, _this._box_0.systemLogs[_this.index].id, !_this.isExpanded); }, $signature: 1 }; A._SystemLogViewerState_build_closure0.prototype = { call$1(systemLog) { return systemLog.eventId >= 20; }, $signature: 625 }; A._SystemLogViewerState_build_closure1.prototype = { call$1(systemLog) { var logs, client, t3, exception, t4, _null = null, t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; client = t2._list[t1].clientState.$get$1(0, systemLog.clientId); logs = null; t1 = this.$this; t2 = t1._isExpanded; t3 = systemLog.id; if (t2.$index(0, t3) === true && systemLog.log.length !== 0) try { logs = B.C_JsonCodec.decode$1(0, systemLog.log); } catch (exception) { } t4 = t2.$index(0, t3); if (t2.$index(0, t3) === true) { t2 = logs; t2 = A.Container$(_null, new A.Padding(B.EdgeInsets_0_8_0_8, new A.JsonViewer(t2 == null ? A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : t2, _null), _null), B.Clip_0, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t2 = new A.SizedBox(_null, _null, _null, _null); return new A.ExpansionPanel(new A._SystemLogViewerState_build__closure0(t1, systemLog, this.localization, client), t2, t4 === true); }, $signature: 2215 }; A._SystemLogViewerState_build__closure0.prototype = { call$2(context, isExpanded) { var t5, _this = this, _null = null, t1 = _this.systemLog, t2 = A.Icon$(A.getActivityIcon(t1.categoryId), _null, _null), t3 = _this.localization, t4 = A.Text$(B.JSString_methods.$add(J.$add$ansx(t3.lookup$1(t1.get$category()), " \u203a "), t3.lookup$1(t1.get$type(t1))), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = t3.lookup$1(t1.get$event()); t5 = _this.client; return A.ListTile$(false, _null, _null, _null, true, _null, _null, true, _null, t2, _null, new A._SystemLogViewerState_build___closure(_this.$this, t1), false, _null, _null, A.Text$(J.$add$ansx(t3, !t5.get$isNew() ? " \u2022 " + t5.displayName : "") + "\n" + A.formatDate(A.convertTimestampToDate(t1.createdAt).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t4, _null, _null); }, $signature: 2216 }; A._SystemLogViewerState_build___closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._SystemLogViewerState_build____closure(t1, this.systemLog)); }, $signature: 1 }; A._SystemLogViewerState_build____closure.prototype = { call$0() { var t1 = this.$this._isExpanded, t2 = this.systemLog.id; t1.$indexSet(0, t2, !t1.containsKey$1(0, t2) || !t1.$index(0, t2)); }, $signature: 1 }; A.DataColumn0.prototype = {}; A.DataRow0.prototype = {}; A.DataCell0.prototype = {}; A.AppDataTable.prototype = { _app_data_table$_handleSelectAll$1(checked) { this.onSelectAll.call$1(checked); }, _app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap(checked, color, onCheckboxChanged, onRowTap) { var _null = null, t1 = this.horizontalMargin, t2 = A.Center$(A.Checkbox$(color, false, _null, _null, onCheckboxChanged, _null, _null, false, checked), _null, _null), contents = new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new A.Padding(new A.EdgeInsetsDirectional(t1, 0, t1 / 2, 0), t2, _null), _null); return A.TableCell$(onRowTap != null ? A.TableRowInkWell$0(contents, onRowTap) : contents, B.TableCellVerticalAlignment_4); }, _app_data_table$_buildCheckbox$3$checked$color$onCheckboxChanged(checked, color, onCheckboxChanged) { return this._app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap(checked, color, onCheckboxChanged, null); }, _buildHeadingCell$8$ascending$context$label$numeric$onSort$padding$sorted$tooltip(ascending, context, label, numeric, onSort, padding, sorted, tooltip) { var t2, t3, _null = null, t1 = A._setArrayType([label], type$.JSArray_legacy_Widget); B.JSArray_methods.addAll$1(t1, new A.AppDataTable__buildHeadingCell_arrowWithPadding(onSort, sorted, ascending).call$0()); label = A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t1 = this.headingRowHeight; t2 = Math.min(1, t1 / 12); if (A.Theme_of(context).colorScheme.brightness === B.Brightness_1) t3 = onSort != null && sorted ? B.Color_3707764736 : B.Color_2315255808; else t3 = onSort != null && sorted ? B.Color_4294967295 : B.Color_3019898879; label = A.Container$(B.AlignmentDirectional_m1_0, A.AnimatedDefaultTextStyle$(label, B.C__Linear, B.Duration_160000, false, A.TextStyle$(_null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, B.FontWeight_4, _null, t2, true, _null, _null, _null, _null, _null, _null, _null, _null)), B.Clip_0, _null, _null, _null, _null, t1, _null, _null, padding, _null, _null, _null); return A.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, onSort, _null, _null, _null, _null, _null, _null); }, build$1(_, context) { var displayCheckboxColumn, allChecked, t3, tableColumns, _length, tableRows, t4, index, t5, t6, rowIndex, _i, row, displayColumnIndex, paddingEnd, t7, paddingEnd0, paddingStart, dataColumnIndex, t8, column, t9, paddingStart0, paddingEnd1, padding, t10, cell, label, t11, isLightTheme, t12, t13, _this = this, _null = null, theme = A.Theme_of(context), t1 = A.Divider_createBorderSide(context, _null, 1), t2 = A.Theme_of(context).colorScheme.brightness === B.Brightness_1 ? B.Color_167772160 : B.Color_503316480, _kSelectedDecoration = new A.BoxDecoration(t2, _null, new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, t1, B.BorderSide_0CF), _null, _null, _null, B.BoxShape_0), _kUnselectedDecoration = new A.BoxDecoration(_null, _null, new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, A.Divider_createBorderSide(context, _null, 1), B.BorderSide_0CF), _null, _null, _null, B.BoxShape_0); t1 = _this.rows; displayCheckboxColumn = B.JSArray_methods.any$1(t1, new A.AppDataTable_build_closure()); allChecked = displayCheckboxColumn && !B.JSArray_methods.any$1(t1, new A.AppDataTable_build_closure0()); t2 = _this.columns; t3 = t2.length; t3 += displayCheckboxColumn ? 1 : 0; tableColumns = A.List_List$filled(t3, B.C__NullTableColumnWidth0, false, type$.legacy_TableColumnWidth); _length = t1.length + 1; tableRows = J.JSArray_JSArray$allocateGrowable(_length, type$.legacy_TableRow); for (t4 = type$.legacy_Widget, index = 0; index < _length; ++index) { t5 = index === 0 ? $.$get$AppDataTable__headingRowKey() : t1[index - 1].key; t6 = index > 0 && t1[index - 1].selected ? _kSelectedDecoration : _kUnselectedDecoration; tableRows[index] = new A.TableRow(t5, t6, A.List_List$filled(t3, B._NullWidget_null2, false, t4)); } if (displayCheckboxColumn) { t3 = _this.horizontalMargin; tableColumns[0] = new A.FixedColumnWidth(t3 + 18 + t3 / 2); t3 = tableRows[0]; t4 = theme.colorScheme.secondary; t3.children[0] = _this._app_data_table$_buildCheckbox$3$checked$color$onCheckboxChanged(allChecked, t4, _this.get$_app_data_table$_handleSelectAll()); for (t3 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t3 || (0, A.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; tableRows[rowIndex].children[0] = _this._app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap(row.selected, t4, row.onSelectChanged, new A.AppDataTable_build_closure1(row)); ++rowIndex; } displayColumnIndex = 1; } else displayColumnIndex = 0; for (t3 = _this.dataRowHeight, t4 = _this.sortAscending, t5 = _this.sortColumnIndex, t6 = _this._app_data_table$_onlyTextColumn, paddingEnd = _this.columnSpacing / 2, t7 = !displayCheckboxColumn, paddingEnd0 = _this.horizontalMargin, paddingStart = paddingEnd0 / 2, dataColumnIndex = 0; t8 = t2.length, dataColumnIndex < t8; ++dataColumnIndex) { column = t2[dataColumnIndex]; t9 = dataColumnIndex === 0; if (t9) paddingStart0 = paddingStart; else paddingStart0 = dataColumnIndex === 1 && t7 ? paddingStart : paddingEnd; if (t9) paddingEnd1 = paddingStart; else paddingEnd1 = dataColumnIndex === t8 - 1 ? paddingEnd0 : paddingEnd; padding = new A.EdgeInsetsDirectional(paddingStart0, 0, paddingEnd1, 0); if (dataColumnIndex === t6) tableColumns[displayColumnIndex] = B.IntrinsicColumnWidth_1; else tableColumns[displayColumnIndex] = B.IntrinsicColumnWidth_null; t8 = tableRows[0]; t9 = column.label; t10 = column.onSort != null ? new A.AppDataTable_build_closure2(_this, column, dataColumnIndex) : _null; t8.children[displayColumnIndex] = _this._buildHeadingCell$8$ascending$context$label$numeric$onSort$padding$sorted$tooltip(t4, context, t9, false, t10, padding, displayCheckboxColumn ? dataColumnIndex === t5 : dataColumnIndex - 1 === t5, _null); for (t8 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t8 || (0, A.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; cell = row.cells[dataColumnIndex]; t9 = tableRows[rowIndex]; label = cell.child; t10 = cell.onTap; t11 = cell.backgroundColor; isLightTheme = A.Theme_of(context).colorScheme.brightness === B.Brightness_1; if (isLightTheme) t12 = B.Color_3707764736; else t12 = B.Color_3019898879; t13 = isLightTheme ? B.Color_2315255808 : B.Color_3019898879; label = A.Container$(B.AlignmentDirectional_m1_0, new A.DefaultTextStyle(new A.TextStyle(true, t12, _null, _null, _null, _null, 13, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, true, B.TextOverflow_0, _null, B.TextWidthBasis_0, _null, A.IconTheme_merge(new A.DropdownButtonHideUnderline(label, _null), new A.IconThemeData(t13, _null, _null, _null)), _null), B.Clip_0, _null, _null, _null, _null, t3, _null, _null, padding, _null, _null, _null); if (t10 != null) label = A.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t10, _null, _null, _null, _null, _null, _null); else label = A.TableRowInkWell$0(label, new A.AppDataTable_build_closure3(row)); t9.children[displayColumnIndex] = new A.DecoratedBox(new A.BoxDecoration(t11, _null, _null, _null, _null, _null, B.BoxShape_0), B.DecorationPosition_0, label, _null); ++rowIndex; } ++displayColumnIndex; } return A.Table$(_null, tableRows, new A.ListMapView(tableColumns, A._arrayInstanceType(tableColumns)._eval$1("ListMapView<1>")), B.FlexColumnWidth_1, B.TableCellVerticalAlignment_0, _null); } }; A.AppDataTable__buildHeadingCell_arrowWithPadding.prototype = { call$0() { if (this.onSort == null) var t1 = B.List_empty12; else { t1 = this.sorted; t1 = A._setArrayType([new A._SortArrow0(t1, t1 ? this.ascending : null, B.Duration_160000, null), B.SizedBox_2_null_null_null], type$.JSArray_legacy_Widget); } return t1; }, $signature: 227 }; A.AppDataTable_build_closure.prototype = { call$1(row) { return row.onSelectChanged != null; }, $signature: 616 }; A.AppDataTable_build_closure0.prototype = { call$1(row) { return row.onSelectChanged != null && !row.selected; }, $signature: 616 }; A.AppDataTable_build_closure1.prototype = { call$0() { var t1 = this.row, t2 = t1.onSelectChanged; return t2 != null ? t2.call$1(!t1.selected) : null; }, $signature: 0 }; A.AppDataTable_build_closure2.prototype = { call$0() { var t1 = this.dataColumnIndex, t2 = this.$this; t2 = t2.sortColumnIndex !== t1 || !t2.sortAscending; return this.column.onSort.call$2(t1, t2); }, $signature: 0 }; A.AppDataTable_build_closure3.prototype = { call$0() { var t1 = this.row, t2 = t1.onSelectChanged; return t2 != null ? t2.call$1(!t1.selected) : null; }, $signature: 0 }; A.TableRowInkWell0.prototype = { getRectCallback$1(referenceBox) { return new A.TableRowInkWell_getRectCallback_closure0(referenceBox); }, debugCheckContext$1(context) { this.super$InkResponse$debugCheckContext(context); return true; } }; A.TableRowInkWell_getRectCallback_closure0.prototype = { call$0() { var table0, rect, offset, cell = this.referenceBox, table = cell.get$parent(cell), transform = new A.Matrix4(new Float64Array(16)); transform.setIdentity$0(); while (true) { if (!(table instanceof A.RenderObject && !(table instanceof A.RenderTable))) break; table.applyPaintTransform$2(cell, transform); table0 = table.get$parent(table); cell = table; table = table0; } if (table instanceof A.RenderTable) { rect = table.getRowBox$1(type$.legacy_TableCellParentData._as(cell.parentData).y); table.applyPaintTransform$2(cell, transform); offset = A.MatrixUtils_getAsTranslation(transform); if (offset != null) return rect.shift$1(new A.Offset(-offset._dx, -offset._dy)); } return B.Rect_0_0_0_0; }, $signature: 2222 }; A._SortArrow0.prototype = { createState$0() { return new A._SortArrowState0(null, null, B._StateLifecycle_0); } }; A._SortArrowState0.prototype = { initState$0() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); t1 = A.AnimationController$(_null, _this._widget.duration, _null, 1, _null, _this); _this._opacityController = t1; t1 = A.CurvedAnimation$(B.Cubic_ifx, t1, _null); t2 = _this.get$_app_data_table$_rebuild(); t1.parent.addListener$1(0, t2); _this._app_data_table$_opacityAnimation = t1; t1 = _this._opacityController; t1.set$value(0, _this._widget.visible ? 1 : 0); t1 = A.AnimationController$(_null, _this._widget.duration, _null, 1, _null, _this); _this._orientationController = t1; t3 = $.$get$_SortArrowState__turnTween0(); type$.Animation_double._as(t1); t3.toString; t1.addListener$1(0, t2); t1.addStatusListener$1(_this.get$_app_data_table$_resetOrientationAnimation()); _this._orientationAnimation = new A._AnimatedEvaluation(t1, t3, t3.$ti._eval$1("_AnimatedEvaluation")); t1 = _this._widget; if (t1.visible) _this._app_data_table$_orientationOffset = t1.down ? 0 : 3.141592653589793; }, _app_data_table$_rebuild$0() { this.setState$1(new A._SortArrowState__rebuild_closure0()); }, _app_data_table$_resetOrientationAnimation$1($status) { if ($status === B.AnimationStatus_3) { this._app_data_table$_orientationOffset += 3.141592653589793; this._orientationController.set$value(0, 0); } }, didUpdateWidget$1(oldWidget) { var t1, newDown, t2, skipArrow, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; newDown = t1.down; if (newDown == null) newDown = _this._app_data_table$_down; t2 = oldWidget.visible; t1 = t1.visible; if (t2 !== t1) { if (t1 && A._lateReadCheck(_this._opacityController.__AnimationController__status, "_status") === B.AnimationStatus_0) { _this._orientationController.stop$0(0); _this._orientationController.set$value(0, 0); _this._app_data_table$_orientationOffset = newDown ? 0 : 3.141592653589793; skipArrow = true; } else skipArrow = false; t1 = _this._widget.visible; t2 = _this._opacityController; if (t1) t2.forward$0(0); else t2.reverse$0(0); } else skipArrow = false; if (_this._app_data_table$_down != newDown && !skipArrow) { t1 = A._lateReadCheck(_this._orientationController.__AnimationController__status, "_status"); t2 = _this._orientationController; if (t1 === B.AnimationStatus_0) t2.forward$0(0); else t2.reverse$0(0); } _this._app_data_table$_down = newDown; }, dispose$0(_) { this._opacityController.dispose$0(0); this._orientationController.dispose$0(0); this.super$__SortArrowState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t2, t3, t4, t1 = this._app_data_table$_opacityAnimation; t1 = t1.get$value(t1); t2 = this._app_data_table$_orientationOffset; t3 = this._orientationAnimation; t4 = t3._evaluatable; t3 = t3.parent; t3 = A.Matrix4_Matrix4$rotationZ(t2 + t4.transform$1(0, t3.get$value(t3))); t3.setTranslationRaw$3(0, -1.5, 0); return A.Opacity$(A.Transform$(B.Alignment_0_0, A.Icon$(B.IconData_57495_MaterialIcons_null_false, A.Theme_of(context).colorScheme.brightness === B.Brightness_1 ? B.Color_3707764736 : B.Color_3019898879, 16), t3, true), t1); } }; A._SortArrowState__rebuild_closure0.prototype = { call$0() { }, $signature: 1 }; A._NullTableColumnWidth0.prototype = { maxIntrinsicWidth$2(cells, containerWidth) { return A.throwExpression(A.UnimplementedError$(null)); }, minIntrinsicWidth$2(cells, containerWidth) { return A.throwExpression(A.UnimplementedError$(null)); } }; A._NullWidget3.prototype = { createElement$0(_) { return A.throwExpression(A.UnimplementedError$(null)); } }; A.__SortArrowState_State_TickerProviderStateMixin0.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.AppDataTableSource.prototype = {}; A.AppPaginatedDataTable.prototype = { createState$0() { return new A.AppPaginatedDataTableState(A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_DataRow), new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_legacy_State_legacy_StatefulWidget), B._StateLifecycle_0); }, onPageChanged$1(arg0) { return this.onPageChanged.call$1(arg0); } }; A.AppPaginatedDataTableState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); _this._app_paginated_data_table$_controller = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); t1 = _this._framework$_element; t1.toString; t1 = A.PageStorage_of(t1); if (t1 == null) t1 = null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.readState$1(t2); t1 = t2; } A._asIntS(t1); if (t1 == null) t1 = _this._widget.initialFirstRowIndex; _this._app_paginated_data_table$_firstRowIndex = t1 == null ? 0 : t1; _this._widget.source.addListener$1(0, _this.get$_app_paginated_data_table$_handleDataSourceChanged()); _this._app_paginated_data_table$_handleDataSourceChanged$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.source; if (t1 != _this._widget.source) { t2 = _this.get$_app_paginated_data_table$_handleDataSourceChanged(); t1.removeListener$1(0, t2); _this._widget.source.addListener$1(0, t2); _this._app_paginated_data_table$_handleDataSourceChanged$0(); } }, dispose$0(_) { var _this = this; _this._app_paginated_data_table$_controller.dispose$0(0); _this._widget.source.removeListener$1(0, _this.get$_app_paginated_data_table$_handleDataSourceChanged()); _this.super$State$dispose(0); }, _app_paginated_data_table$_handleDataSourceChanged$0() { this.setState$1(new A.AppPaginatedDataTableState__handleDataSourceChanged_closure(this)); }, pageTo$1(rowIndex) { var t1, t2, _this = this, oldFirstRowIndex = _this._app_paginated_data_table$_firstRowIndex; _this.setState$1(new A.AppPaginatedDataTableState_pageTo_closure(_this, rowIndex)); t1 = _this._widget; t1.toString; t2 = _this._app_paginated_data_table$_firstRowIndex; if (oldFirstRowIndex != t2) t1.onPageChanged$1(t2); }, _app_paginated_data_table$_getBlankRowFor$1(index) { var t1 = this._widget.columns, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DataCell0*>"); return new A.DataRow0(new A.ValueKey(index, type$.ValueKey_legacy_int), null, false, A.List_List$of(new A.MappedListIterable(t1, new A.AppPaginatedDataTableState__getBlankRowFor_closure(), t2), true, t2._eval$1("ListIterable.E"))); }, _app_paginated_data_table$_getProgressIndicatorRowFor$1(index) { var t2, t3, cells, t1 = {}; t1.haveProgressIndicator = false; t2 = this._widget.columns; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DataCell0*>"); cells = A.List_List$of(new A.MappedListIterable(t2, new A.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure(t1), t3), true, t3._eval$1("ListIterable.E")); if (!t1.haveProgressIndicator) { t1.haveProgressIndicator = true; cells[0] = B.DataCell_R8h; } return new A.DataRow0(new A.ValueKey(index, type$.ValueKey_legacy_int), null, false, cells); }, _app_paginated_data_table$_getRows$2(firstRowIndex, rowsPerPage) { var t1, index, haveProgressIndicator, row, t2, _this = this, result = A._setArrayType([], type$.JSArray_legacy_DataRow_2), nextPageFirstRowIndex = firstRowIndex + rowsPerPage; for (t1 = _this._app_paginated_data_table$_rows, index = firstRowIndex, haveProgressIndicator = false; index < nextPageFirstRowIndex; ++index) { if (index < _this._rowCount || _this._rowCountApproximate) { row = t1.putIfAbsent$2(0, index, new A.AppPaginatedDataTableState__getRows_closure(_this, index)); t2 = row == null; if (t2 && !haveProgressIndicator) { if (t2) row = _this._app_paginated_data_table$_getProgressIndicatorRowFor$1(index); haveProgressIndicator = true; } } else row = null; result.push(row == null ? _this._app_paginated_data_table$_getBlankRowFor$1(index) : row); } return result; }, _app_paginated_data_table$_handlePrevious$0() { this.pageTo$1(Math.max(this._app_paginated_data_table$_firstRowIndex - this._widget.rowsPerPage, 0)); }, _app_paginated_data_table$_handleNext$0() { this.pageTo$1(this._app_paginated_data_table$_firstRowIndex + this._widget.rowsPerPage); }, build$1(_, context) { var footerTextStyle, t2, footerWidgets, t3, t4, availableRowsPerPage, t5, t6, t7, _this = this, _null = null, themeData = A.Theme_of(context), t1 = A.Localizations_of(context, B.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; footerTextStyle = themeData.textTheme.bodySmall; t2 = type$.JSArray_legacy_Widget; footerWidgets = A._setArrayType([], t2); t3 = _this._widget.availableRowsPerPage; t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); availableRowsPerPage = A.List_List$of(new A.MappedListIterable(t3, new A.AppPaginatedDataTableState_build_closure(), t4), true, t4._eval$1("ListIterable.E")); t4 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14); t3 = A.Text$(t1.get$rowsPerPageTitle(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = _this._widget; t6 = t5.rowsPerPage; B.JSArray_methods.addAll$1(footerWidgets, A._setArrayType([t4, t3, new A.ConstrainedBox(B.BoxConstraints_mlX4, new A.Align(B.AlignmentDirectional_1_0, _null, _null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, new A.CastList(availableRowsPerPage, A._arrayInstanceType(availableRowsPerPage)._eval$1("CastList<1,DropdownMenuItem*>")), t5.onRowsPerPageChanged, _null, footerTextStyle, _null, t6, type$.legacy_int), _null), _null), _null)], t2)); t3 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t4 = _this._app_paginated_data_table$_firstRowIndex; t4 = A.Text$(t1.pageRowsInfoTitle$4(t4 + 1, t4 + _this._widget.rowsPerPage, _this._rowCount, _this._rowCountApproximate), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t6 = t1.get$previousPageTooltip(); t6 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_cKo, _null, _this._app_paginated_data_table$_firstRowIndex <= 0 ? _null : _this.get$_app_paginated_data_table$_handlePrevious(), B.EdgeInsets_0_0_0_0, _null, t6, _null); t7 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 24); t1 = t1.get$nextPageTooltip(); B.JSArray_methods.addAll$1(footerWidgets, A._setArrayType([t3, t4, t5, t6, t7, A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_wEo, _null, !_this._rowCountApproximate && _this._app_paginated_data_table$_firstRowIndex + _this._widget.rowsPerPage >= _this._rowCount ? _null : _this.get$_app_paginated_data_table$_handleNext(), B.EdgeInsets_0_0_0_0, _null, t1, _null), A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14)], t2)); return new A.LayoutBuilder(new A.AppPaginatedDataTableState_build_closure0(_this, footerTextStyle, footerWidgets), _null); } }; A.AppPaginatedDataTableState__handleDataSourceChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._rowCount = J.get$length$asx(t1._widget.source.entityList); t1._widget.source.toString; t1._rowCountApproximate = false; t1._app_paginated_data_table$_rows.clear$0(0); }, $signature: 1 }; A.AppPaginatedDataTableState_pageTo_closure.prototype = { call$0() { var t1 = this.$this, rowsPerPage = t1._widget.rowsPerPage; t1._app_paginated_data_table$_firstRowIndex = B.JSInt_methods.$tdiv(this.rowIndex, rowsPerPage) * rowsPerPage; }, $signature: 1 }; A.AppPaginatedDataTableState__getBlankRowFor_closure.prototype = { call$1(column) { return B.DataCell_mS8; }, $signature: 614 }; A.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure.prototype = { call$1(column) { column.toString; this._box_0.haveProgressIndicator = true; return B.DataCell_R8h; }, $signature: 614 }; A.AppPaginatedDataTableState__getRows_closure.prototype = { call$0() { return this.$this._widget.source.getRow$1(this.index); }, $signature: 2225 }; A.AppPaginatedDataTableState_build_closure.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(A.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A.AppPaginatedDataTableState_build_closure0.prototype = { call$2(context, constraints) { var t4, _null = null, t1 = this.$this, t2 = t1._app_paginated_data_table$_controller, t3 = t1._widget; t3.toString; t4 = t3.columns; t2 = A.Scrollbar$(A.SingleChildScrollView$(new A.ConstrainedBox(new A.BoxConstraints(constraints.minWidth, 1 / 0, 0, 1 / 0), new A.AppDataTable(t4, t3.sortColumnIndex, t3.sortAscending, t3.onSelectAll, 48, 56, 24, 56, true, t1._app_paginated_data_table$_getRows$2(t1._app_paginated_data_table$_firstRowIndex, t3.rowsPerPage), A.AppDataTable__initOnlyTextColumn(t4), t1._app_paginated_data_table$_tableKey), _null), t2, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0), t2, _null); t1._widget.toString; return A.Card$(A.Column$(A._setArrayType([new A.SizedBox(_null, 4, _null, _null), t2, A.DefaultTextStyle$(A.IconTheme_merge(A.Container$(_null, A.SingleChildScrollView$(A.Row$(this.footerWidgets, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, B.DragStartBehavior_1, _null, _null, _null, true, B.Axis_0), B.Clip_0, _null, _null, _null, _null, 56, _null, _null, _null, _null, _null, _null), B.IconThemeData_XJy), _null, _null, B.TextOverflow_0, true, this.footerTextStyle, _null, _null, B.TextWidthBasis_0)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, _null, _null, false, _null); }, $signature: 2227 }; A.EntityDataTableSource.prototype = { getRow$1(index) { var listState, uIState, t5, isSelected, rowColor, backgroundColor, t6, wideFields, t7, t8, t9, t10, _this = this, _null = null, t1 = {}, t2 = _this.context, state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"), prefState = state.prefState, t3 = _this.entityMap, t4 = J.$index$asx(_this.entityList, index), entity = t3._map$_map.$index(0, t4); t4 = _this.entityPresenter; t4.entity = entity; t4.context = t2; t4 = _this.entityType; listState = state.getUIState$1(t4).get$listUIState(); uIState = state.getUIState$1(t4); if (entity == null) { t1 = A._setArrayType([new A.DataCell0(new A.SizedBox(_null, _null, _null, _null), _null, _null)], type$.JSArray_legacy_DataCell_2); B.JSArray_methods.addAll$1(t1, J.map$1$1$ax(_this.tableColumns, new A.EntityDataTableSource_getRow_closure(), type$.legacy_DataCell)); return new A.DataRow0(_null, _null, false, t1); } t3 = listState.selectedIds; t4 = t3 == null; if (t4) t5 = prefState.isPreviewVisible || state.uiState.get$isEditing(); else t5 = false; if (t5) isSelected = (state.uiState.get$isEditing() ? entity.get$id(entity) === _this.editingId : entity.get$id(entity) === uIState.get$selectedId()) && true; else isSelected = false; t1.backgroundColor = null; rowColor = prefState.customColors._map$_map.$index(0, "table_alternate_row_background_color"); if (rowColor == null) rowColor = ""; if (isSelected && A.getLayout(t2) === B.AppLayout_desktop) t5 = t1.backgroundColor = A.convertHexStringToColor(prefState.enableDarkMode ? "#253750" : "#e5f5ff"); else if (rowColor.length !== 0 && B.JSInt_methods.$mod(index, 2) === 0) { backgroundColor = A.convertHexStringToColor(rowColor); t1.backgroundColor = backgroundColor; t5 = backgroundColor; } else t5 = _null; t6 = type$.JSArray_legacy_String; wideFields = A._setArrayType(["public_notes", "private_notes", "description", "custom1", "custom2", "custom3", "custom4"], t6); if (t4) t3 = A._setArrayType([], t6); t3 = J.contains$1$asx(t3, entity.get$id(entity)); t6 = !t4 ? new A.EntityDataTableSource_getRow_closure0(_this, entity) : _null; t7 = A._setArrayType([], type$.JSArray_legacy_DataCell_2); if (t4) { t2 = prefState.enableTooltips ? A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$editRecord() : _null; t2 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.GestureDetector$(_null, A.Icon$(B._MdiIconData_gg9, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new A.EntityDataTableSource_getRow_closure1(entity), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.EntityDataTableSource_getRow_closure2(entity), B.EdgeInsets_8_8_8_8, _null, t2, _null); t4 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; t8 = t4._list[t8]; t4 = t8.userCompany; t9 = prefState.tapSelectedToEdit; if (type$.legacy_BelongsToClient._is(entity)) { t8 = t8.clientState.map; t10 = entity.get$clientId(entity); t8 = t8._map$_map.$index(0, t10); } else t8 = _null; t7.push(new A.DataCell0(A.Row$(A._setArrayType([t2, A.ActionMenuButton$(entity, entity.getActions$3$client$includeEdit$userCompany(t8, t9, t4), _null, _null, false, new A.EntityDataTableSource_getRow_closure3(entity))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityDataTableSource_getRow_closure4(_this, entity), t5)); } B.JSArray_methods.addAll$1(t7, J.map$1$1$ax(_this.tableColumns, new A.EntityDataTableSource_getRow_closure5(t1, _this, wideFields, entity), type$.legacy_DataCell)); return new A.DataRow0(_null, t6, t3, t7); } }; A.EntityDataTableSource_getRow_closure.prototype = { call$1(field) { var _null = null; return new A.DataCell0(new A.SizedBox(_null, _null, _null, _null), _null, _null); }, $signature: 612 }; A.EntityDataTableSource_getRow_closure0.prototype = { call$1(value) { return this.$this.onTap.call$1(this.entity); }, $signature: 10 }; A.EntityDataTableSource_getRow_closure2.prototype = { call$0() { return A.editEntity(null, this.entity, true, null); }, $signature: 0 }; A.EntityDataTableSource_getRow_closure1.prototype = { call$0() { A.handleEntitiesActions(A._setArrayType([this.entity], type$.JSArray_legacy_BaseEntity), B.EntityAction_toggleMultiselect, false); return null; }, $signature: 0 }; A.EntityDataTableSource_getRow_closure3.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.entity], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.EntityDataTableSource_getRow_closure4.prototype = { call$0() { return this.$this.onTap.call$1(this.entity); }, $signature: 9 }; A.EntityDataTableSource_getRow_closure5.prototype = { call$1(field) { var _this = this, t1 = _this.$this, t2 = t1.entityPresenter.getField$2$context$field(t1.context, field), t3 = B.JSArray_methods.contains$1(_this.wideFields, field) ? 300 : 200, t4 = field === "description" ? 200 : 0; return new A.DataCell0(new A.ConstrainedBox(new A.BoxConstraints(t4, t3, 0, 1 / 0), t2, null), new A.EntityDataTableSource_getRow__closure(t1, _this.entity), _this._box_0.backgroundColor); }, $signature: 612 }; A.EntityDataTableSource_getRow__closure.prototype = { call$0() { return this.$this.onTap.call$1(this.entity); }, $signature: 9 }; A.EntityList.prototype = { createState$0() { return new A._EntityListState(B._StateLifecycle_0); }, onRefreshed$1(arg0) { return this.onRefreshed.call$1(arg0); }, onSortColumn$1(arg0) { return this.onSortColumn.call$1(arg0); }, itemBuilder$2(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); }, onClearMultiselect$0() { return this.onClearMultiselect.call$0(); } }; A._EntityListState.prototype = { initState$0() { var t1, t2, entityType, state, entityList, entityMap, entityState, t3, t4, entityUIState, selectedIndex, rowsPerPage, _this = this; _this.super$State$initState(); t1 = A._setArrayType([], type$.JSArray_ScrollPosition); t2 = $.$get$ChangeNotifier__emptyListeners(); _this._entity_list$_controller = new A.ScrollController(0, true, null, t1, t2); t1 = _this._widget; entityType = t1.entityType; state = t1.state; entityList = t1.entityList; entityMap = state.getEntityMap$1(entityType); entityState = state.getUIState$1(entityType); t1 = _this._framework$_element; t1.toString; t3 = entityState.get$editingId(); t4 = _this._widget.tableColumns; _this.dataTableSource = new A.EntityDataTableSource(entityType, t3, t1, J.toList$0$ax(entityList), _this._widget.presenter, entityMap, t4, new A._EntityListState_initState_closure(), t2); entityUIState = state.getUIState$1(entityType); selectedIndex = J.indexOf$1$asx(_this._widget.entityList, entityUIState.get$selectedId()); rowsPerPage = state.prefState.rowsPerPage; if (selectedIndex >= 0) _this._firstRowIndex = B.JSNumber_methods.floor$0(selectedIndex / rowsPerPage) * rowsPerPage; }, didUpdateWidget$1(oldWidget) { var t1, state, uiState, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; state = t1.state; uiState = state.getUIState$1(t1.entityType); _this.dataTableSource.editingId = uiState.get$editingId(); t1 = _this.dataTableSource; t2 = _this._widget; t1.entityList = t2.entityList; t1.entityMap = state.getEntityMap$1(t2.entityType); _this.dataTableSource.notifyListeners$0(); }, dispose$0(_) { this._entity_list$_controller.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t3, isInMultiselect, entityList, entityMap, countSelected, isList, t4, t5, t6, shouldSelectEntity, entityId, entities, t7, firstEntity, actions, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, state = t2.state, uiState = state.uiState, entityType = t2.entityType, listUIState = state.getUIState$1(entityType).get$listUIState(); t2 = listUIState.selectedIds; t3 = t2 == null; isInMultiselect = !t3; entityList = _this._widget.entityList; entityMap = state.getEntityMap$1(entityType); countSelected = J.get$length$asx(t3 ? A._setArrayType([], type$.JSArray_legacy_String) : t2); isList = entityType.get$isSetting() || state.prefState.moduleLayout === B.ModuleLayout_list; t4 = state.userCompanyStates; t5 = uiState.selectedCompanyIndex; t4 = t4._list; t6 = t4[t5].lastUpdated; if (t6 <= 0 && J.get$isEmpty$asx(entityList)) return new A.LoadingIndicator(_null, false, _null); shouldSelectEntity = state.shouldSelectEntity$2$entityList$entityType(entityList, entityType); if (shouldSelectEntity !== false) { if (shouldSelectEntity == null) entityId = state.getUIState$1(entityType).get$selectedId(); else { t6 = J.getInterceptor$asx(entityList); entityId = t6.get$isEmpty(entityList) ? _null : t6.get$first(entityList); } $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._EntityListState_build_closure(entityType, entityId)); } if (t3) entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity); else { t6 = t2._list; t7 = A._arrayInstanceType(t6)._eval$1("MappedListIterable<1,BaseEntity*>"); entities = A.List_List$of(new A.MappedListIterable(t6, new A._EntityListState_build_closure0(entityMap), t7), true, t7._eval$1("ListIterable.E")); } firstEntity = entities.length === 0 ? _null : B.JSArray_methods.get$first(entities); if (firstEntity == null) t4 = _null; else { t4 = t4[t5]; t5 = t4.userCompany; t4 = firstEntity.getActions$4$client$includeEdit$multiselect$userCompany(type$.legacy_BelongsToClient._is(firstEntity) ? t4.clientState.$get$1(0, firstEntity.get$clientId(firstEntity)) : _null, false, true, t5); } if (t4 == null) t4 = A._setArrayType([], type$.JSArray_legacy_EntityAction); t5 = A._arrayInstanceType(t4); actions = new A.WhereIterable(t4, new A._EntityListState_build_closure1(), t5._eval$1("WhereIterable<1>")); t4 = A.Theme_of(context).cardColor; t6 = isInMultiselect ? 50 : 0; t7 = A.Duration$(0, 0, 0, 500, 0, 0); t8 = isInMultiselect ? 1 : 0; t9 = A.Duration$(0, 0, 0, 500, 0, 0); t10 = type$.JSArray_legacy_Widget; t11 = A._setArrayType([], t10); t12 = state.prefState; if (t12.moduleLayout === B.ModuleLayout_list || entityType.get$isSetting()) { t13 = A.Theme_of(context).colorScheme; t14 = J.get$length$asx(entityList); t11.push(A.Checkbox$(t13.secondary, false, _null, B.MaterialTapTargetSize_1, new A._EntityListState_build_closure2(entityList, entityMap), _null, _null, false, t14 === J.get$length$asx(t3 ? A._setArrayType([], type$.JSArray_legacy_String) : t2))); } if (A.getLayout(context) === B.AppLayout_desktop) { t2 = "" + countSelected; t3 = t5._eval$1("MappedIterable<1,OutlinedButton*>"); B.JSArray_methods.addAll$1(t11, A._setArrayType([new A.Padding(B.EdgeInsets_4_0_4_0, A.Text$(isList ? "(" + t2 + ")" : B.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", t2), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Expanded$(new A.Align(B.Alignment_1_0, _null, _null, A.OverflowView$flexible(new A._EntityListState_build_closure3(_this, t1, state, entities, actions), A.List_List$of(new A.MappedIterable(actions, new A._EntityListState_build_closure4(_this, t1, entities), t3), true, t3._eval$1("Iterable.E")), 8), _null), 1)], t10)); } else { t2 = A.Expanded$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", "" + countSelected), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t1 = t1.get$actions(t1); B.JSArray_methods.addAll$1(t11, A._setArrayType([new A.SizedBox(16, _null, _null, _null), t2, A.SaveCancelButtons$(_null, true, entities.length !== 0, false, new A._EntityListState_build_closure5(_this), new A._EntityListState_build_closure6(_this, entities), t1)], t10)); } t1 = A.AnimatedContainer$(A.AnimatedOpacity$(false, A.Row$(t11, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Cubic_oKc, t9, t8), t4, B.Cubic_oKc, _null, t7, t6, _null, _null, B.EdgeInsets_10_0_10_0, _null); t2 = A._setArrayType([new A._EntityListState_build_closure7(_this, isList, uiState, context, state, store, entityList, entityMap, listUIState, isInMultiselect, entityType).call$0()], t10); if (state.isLoading) t3 = A.getLayout(context) === B.AppLayout_mobile || !entityType.get$isSetting(); else t3 = false; if (!t3) if (state.isSaving) if (!entityType.get$isSetting()) t3 = !t12.isPreviewVisible && !uiState.get$isEditing(); else t3 = true; else t3 = false; else t3 = true; if (t3) t2.push(A.LinearProgressIndicator$()); return A.RefreshIndicator$(A.Column$(A._setArrayType([new A.AppBorder(t1, true, _null, _null, false, _null), A.Expanded$(new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t2, _null), 1)], t10), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), new A._EntityListState_build_closure8(_this, context)); } }; A._EntityListState_initState_closure.prototype = { call$1(entity) { return A.selectEntity(entity, false, false); }, $signature: 2229 }; A._EntityListState_build_closure.prototype = { call$1(duration) { A.viewEntityById(false, this.entityId, this.entityType, null, false, true); }, $signature: 36 }; A._EntityListState_build_closure7.prototype = { call$0() { var t2, t3, rowsPerPage, t4, t5, t6, t7, _this = this, _null = null, t1 = type$.JSArray_legacy_Widget; if (_this.isList) { t1 = A._setArrayType([], t1); t2 = _this.uiState.filterStack._list; if (t2.length === 0) t3 = _null; else { t3 = B.JSArray_methods.get$last(t2); t3 = t3.get$id(t3); } if (t3 != null && A.getLayout(_this.context) === B.AppLayout_mobile) { if (t2.length === 0) t3 = _null; else { t3 = B.JSArray_methods.get$last(t2); t3 = t3.get$id(t3); } t2 = t2.length === 0 ? _null : B.JSArray_methods.get$last(t2).get$entityType(); t1.push(new A.ListFilterMessage(t3, t2, new A._EntityListState_build__closure(_this.state), new A._EntityListState_build__closure0(_this.store), false, _null)); } t2 = _this.entityList; t3 = J.getInterceptor$asx(t2); t1.push(new A.Flexible(1, B.FlexFit_1, t3.get$isEmpty(t2) ? new A.HelpText(A.Localizations_of(_this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$clickPlusToAddItem(), _null) : new A.ScrollableListViewBuilder(new A._EntityListState_build__closure1(_this.$this, t2), new A._EntityListState_build__closure2(t2), t3.get$length(t2) + 2, _null, B.EdgeInsets_0_20_0_20, _null), _null)); return A.Column$(t1, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } else { t2 = _this.state; rowsPerPage = t2.prefState.rowsPerPage; t1 = A._setArrayType([], t1); t3 = _this.uiState.filterStack._list; if (t3.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t3); t4 = t4.get$id(t4); } if (t4 != null && A.getLayout(_this.context) === B.AppLayout_mobile) { if (t3.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t3); t4 = t4.get$id(t4); } t3 = t3.length === 0 ? _null : B.JSArray_methods.get$last(t3).get$entityType(); t1.push(new A.ListFilterMessage(t4, t3, new A._EntityListState_build__closure3(t2), new A._EntityListState_build__closure4(_this.store), false, _null)); } t3 = _this.$this; t4 = t3._entity_list$_controller; t5 = _this.listUIState; t6 = A._setArrayType([], type$.JSArray_legacy_DataColumn_2); if (!_this.isInMultiselect) t6.push(new A.DataColumn0(new A.SizedBox(_null, _null, _null, _null), _null)); B.JSArray_methods.addAll$1(t6, J.map$1$1$ax(t3._widget.tableColumns, new A._EntityListState_build__closure5(t3, _this.context, _this.entityType, t2), type$.legacy_DataColumn)); t2 = t3.dataTableSource; t7 = t5.sortField; t7 = J.contains$1$asx(t3._widget.tableColumns, t7) ? J.indexOf$1$asx(t3._widget.tableColumns, t7) : 0; t1.push(A.Expanded$(A.SingleChildScrollView$(new A.Padding(B.EdgeInsets_0_16_0_16, new A.AppPaginatedDataTable(t6, t7, t5.sortAscending, new A._EntityListState_build__closure6(t3, _this.entityList, rowsPerPage, _this.entityMap, t5), t3._firstRowIndex, new A._EntityListState_build__closure7(t3), rowsPerPage, A._setArrayType([10, 25, 50, 100], type$.JSArray_legacy_int), new A._EntityListState_build__closure8(_this.store), t2, _null), _null), t4, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1), 1)); return A.Column$(t1, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }, $signature: 2230 }; A._EntityListState_build__closure.prototype = { call$1(_) { var t2, t1 = this.state.uiState.filterStack._list; if (t1.length === 0) t2 = null; else { t2 = B.JSArray_methods.get$last(t1); t2 = t2.get$id(t2); } return A.viewEntityById(false, t2, t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(), null, false, true); }, $signature: 30 }; A._EntityListState_build__closure0.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearEntityFilter()); }, $signature: 9 }; A._EntityListState_build__closure2.prototype = { call$2(context, index) { var _null = null; return index === 0 || index === J.get$length$asx(this.entityList) ? new A.SizedBox(_null, _null, _null, _null) : new A.ListDivider(_null); }, $signature: 131 }; A._EntityListState_build__closure1.prototype = { call$2(context, index) { var t1, _null = null; if (index === 0 || index === J.get$length$asx(this.entityList) + 1) return A.Container$(_null, _null, B.Clip_0, A.Theme_of(context).cardColor, _null, _null, _null, 25, _null, _null, _null, _null, _null, _null); else { t1 = this.$this._widget; t1.toString; return t1.itemBuilder$2(context, index - 1); } }, $signature: 131 }; A._EntityListState_build__closure3.prototype = { call$1(_) { var t2, t1 = this.state.uiState.filterStack._list; if (t1.length === 0) t2 = null; else { t2 = B.JSArray_methods.get$last(t1); t2 = t2.get$id(t2); } A.viewEntityById(false, t2, t1.length === 0 ? null : B.JSArray_methods.get$last(t1).get$entityType(), null, false, true); }, $signature: 14 }; A._EntityListState_build__closure4.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.ClearEntityFilter()); }, $signature: 1 }; A._EntityListState_build__closure6.prototype = { call$1(value) { var _this = this, t1 = _this.$this, t2 = t1._firstRowIndex, t3 = _this.entityList, t4 = J.getInterceptor$asx(t3), t5 = t4.get$length(t3); t3 = J.map$1$1$ax(t4.sublist$2(t3, Math.min(A.checkNum(t2), t5 - 1), Math.min(t1._firstRowIndex + _this.rowsPerPage, A.checkNum(t4.get$length(t3)))), new A._EntityListState_build___closure(_this.entityMap), type$.legacy_BaseEntity).super$Iterable$where(0, new A._EntityListState_build___closure0(value, _this.listUIState)); A.handleEntitiesActions(A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")), B.EntityAction_toggleMultiselect, false); }, $signature: 20 }; A._EntityListState_build___closure.prototype = { call$1(entityId) { return this.entityMap._map$_map.$index(0, entityId); }, $signature: 429 }; A._EntityListState_build___closure0.prototype = { call$1(invoice) { var t1 = invoice.get$id(invoice), t2 = this.listUIState.selectedIds; t1 = t2 != null && B.JSArray_methods.contains$1(t2._list, t1); return this.value !== t1; }, $signature: 171 }; A._EntityListState_build__closure5.prototype = { call$1(field) { var key, t1, t2, _this = this, _null = null, label = A.Localizations_of(_this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(field); if (J.startsWith$1$s(field, "custom")) { key = B.JSString_methods.replaceFirst$2(field, "custom", A.toSnakeCase(_this.entityType.name)); t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; label = t1.userCompanyStates._list[t2].userCompany.company.getCustomFieldLabel$1(key); } return new A.DataColumn0(A.Container$(_null, A.Text$(label, _null, _null, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A._EntityListState_build___closure1(_this.$this, field)); }, $signature: 2233 }; A._EntityListState_build___closure1.prototype = { call$2(columnIndex, ascending) { this.$this._widget.onSortColumn$1(this.field); }, $signature: 426 }; A._EntityListState_build__closure7.prototype = { call$1(row) { return this.$this._firstRowIndex = row; }, $signature: 2234 }; A._EntityListState_build__closure8.prototype = { call$1(value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 106 }; A._EntityListState_build_closure0.prototype = { call$1(entityId) { return this.entityMap._map$_map.$index(0, entityId); }, $signature: 429 }; A._EntityListState_build_closure1.prototype = { call$1(action) { return action != null; }, $signature: 403 }; A._EntityListState_build_closure8.prototype = { call$0() { return this.$this._widget.onRefreshed$1(this.context); }, $signature: 31 }; A._EntityListState_build_closure2.prototype = { call$1(value) { var t1 = this.entityList, t2 = J.getInterceptor$asx(t1); t1 = J.map$1$1$ax(t2.sublist$2(t1, 0, Math.min(A.checkNum(t2.get$length(t1)), 100)), new A._EntityListState_build__closure13(this.entityMap), type$.legacy_BaseEntity); A.handleEntitiesActions(A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")), B.EntityAction_toggleMultiselect, false); }, $signature: 20 }; A._EntityListState_build__closure13.prototype = { call$1(entityId) { return this.entityMap._map$_map.$index(0, entityId); }, $signature: 429 }; A._EntityListState_build_closure4.prototype = { call$1(action) { var _null = null, t1 = A.getEntityActionIcon(action); return A.OutlinedButton$(new A.IconText(this.localization.lookup$1(A.S(action)), t1, _null, _null, _null), _null, new A._EntityListState_build__closure10(this.$this, this.entities, action), _null); }, $signature: 404 }; A._EntityListState_build__closure10.prototype = { call$0() { A.handleEntitiesActions(this.entities, this.action, false); this.$this._widget.onClearMultiselect$0(); }, $signature: 1 }; A._EntityListState_build_closure3.prototype = { call$2(context, remaining) { var _this = this, _null = null, t1 = _this.localization.get$more(), t2 = _this.state.prefState.enableDarkMode; t1 = A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2 ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, A.Row$(A._setArrayType([t1, new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, t2 ? B.Color_4294967295 : B.Color_4278190080, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, new A._EntityListState_build__closure11(_this.actions, remaining), new A._EntityListState_build__closure12(_this.$this, _this.entities), B.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction); }, $signature: 407 }; A._EntityListState_build__closure12.prototype = { call$1(action) { A.handleEntitiesActions(this.entities, action, false); this.$this._widget.onClearMultiselect$0(); }, $signature: 263 }; A._EntityListState_build__closure11.prototype = { call$1(context) { var t2, t1 = this.actions; t1 = B.JSArray_methods.sublist$1(A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t1.get$length(t1) - this.remaining); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); return A.List_List$of(new A.MappedListIterable(t1, new A._EntityListState_build___closure2(context), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 410 }; A._EntityListState_build___closure2.prototype = { call$1(action) { var _null = null, t1 = this.context, t2 = A.Icon$(A.getEntityActionIcon(action), A.Theme_of(t1).colorScheme.secondary, _null); t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(J.toString$0$(action)); return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.legacy_EntityAction); }, $signature: 365 }; A._EntityListState_build_closure6.prototype = { call$1(context) { return this.$call$body$_EntityListState_build_closure(context); }, $call$body$_EntityListState_build_closure(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = new A._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new A._EntityListState_build__closure9($async$self.$this), type$.dynamic); $async$goto = 2; return A._asyncAwait(A.showEntityActionsDialog(new A._AsyncCompleter(t1, type$._AsyncCompleter_Null), $async$self.entities, true), $async$call$1); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; A._EntityListState_build__closure9.prototype = { call$1(_) { return this.$this._widget.onClearMultiselect$0(); }, $signature: 604 }; A._EntityListState_build_closure5.prototype = { call$1(_) { return this.$this._widget.onClearMultiselect$0(); }, $signature: 51 }; A.VariablesHelp.prototype = { createState$0() { return new A._VariablesHelpState(null, null, B._StateLifecycle_0); } }; A._VariablesHelpState.prototype = { initState$0() { this.super$State$initState(); this._variables$_controller = A.TabController$(null, 0, 4, this); }, dispose$0(_) { this._variables$_controller.dispose$0(0); this.super$__VariablesHelpState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, _s7_ = "custom1", _s7_0 = "custom2", _s7_1 = "custom3", _s7_2 = "custom4", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, company = t2._list[t3].userCompany.company; t3 = _this._variables$_controller; t2 = type$.JSArray_legacy_Widget; t1 = A._setArrayType([A.Tab$(A.Text$(_this._widget.showInvoiceAsQuote ? t1.get$quote() : t1.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Tab$(A.Text$(t1.get$client(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Tab$(A.Text$(t1.get$contact(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Tab$(A.Text$(t1.get$company(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t2); t4 = _this._variables$_controller; t5 = type$.JSArray_legacy_String; t6 = A._setArrayType(["view_button", "view_url", "payment_button", "payment_url", "created_by_user", "assigned_to_user", "invoices", "payments"], t5); if (_this._widget.showInvoiceAsQuote) B.JSArray_methods.addAll$1(t6, A._setArrayType(["amount", "discount", "date", "valid_until", "po_number", "public_notes", "exchange_rate", "number", "terms", "footer"], t5)); else B.JSArray_methods.addAll$1(t6, A._setArrayType(["amount", "discount", "balance", "date", "due_date", "po_number", "public_notes", "exchange_rate", "number", "terms", "footer"], t5)); if (company.getCustomFieldLabel$1("invoice1").length !== 0) t6.push(_s7_); if (company.getCustomFieldLabel$1("invoice2").length !== 0) t6.push(_s7_0); if (company.getCustomFieldLabel$1("invoice3").length !== 0) t6.push(_s7_1); if (company.getCustomFieldLabel$1("invoice4").length !== 0) t6.push(_s7_2); if (company.getCustomFieldLabel$1("surcharge1").length !== 0) t6.push("custom_surcharge1"); if (company.getCustomFieldLabel$1("surcharge2").length !== 0) t6.push("custom_surcharge2"); if (company.getCustomFieldLabel$1("surcharge3").length !== 0) t6.push("custom_surcharge3"); if (company.getCustomFieldLabel$1("surcharge4").length !== 0) t6.push("custom_surcharge4"); t7 = A._setArrayType(["name", "public_notes", "vat_number", "address1", "address2", "city", "state", "postal_code", "country", "shipping_address1", "shipping_address2", "shipping_city", "shipping_state", "shipping_postal_code", "shipping_country", "phone", "credit_balance", "id_number"], t5); if (company.getCustomFieldLabel$1("client1").length !== 0) t7.push(_s7_); if (company.getCustomFieldLabel$1("client2").length !== 0) t7.push(_s7_0); if (company.getCustomFieldLabel$1("client3").length !== 0) t7.push(_s7_1); if (company.getCustomFieldLabel$1("client4").length !== 0) t7.push(_s7_2); t8 = type$.MappedListIterable_of_legacy_String_and_legacy_String; t9 = t8._eval$1("ListIterable.E"); t7 = A.List_List$of(new A.MappedListIterable(t7, new A._VariablesHelpState_build_closure(), t8), true, t9); t10 = A._setArrayType(["first_name", "last_name", "email", "phone"], t5); if (company.getCustomFieldLabel$1("contact1").length !== 0) t10.push(_s7_); if (company.getCustomFieldLabel$1("contact2").length !== 0) t10.push(_s7_0); if (company.getCustomFieldLabel$1("contact3").length !== 0) t10.push(_s7_1); if (company.getCustomFieldLabel$1("contact4").length !== 0) t10.push(_s7_2); t10 = A.List_List$of(new A.MappedListIterable(t10, new A._VariablesHelpState_build_closure0(), t8), true, t9); t5 = A._setArrayType(["name", "country", "address1", "address2", "id_number", "email", "phone", "state", "vat_number", "website"], t5); if (company.getCustomFieldLabel$1("company1").length !== 0) t5.push(_s7_); if (company.getCustomFieldLabel$1("company2").length !== 0) t5.push(_s7_0); if (company.getCustomFieldLabel$1("company3").length !== 0) t5.push(_s7_1); if (company.getCustomFieldLabel$1("company4").length !== 0) t5.push(_s7_2); return A.FormCard$(_null, A._setArrayType([new A.AppTabBar(t1, t3, true, _null, _null), new A.SizedBox(_null, 540, A.TabBarView$(A._setArrayType([new A._VariableGrid(t6, _null), new A._VariableGrid(t7, _null), new A._VariableGrid(t10, _null), new A._VariableGrid(A.List_List$of(new A.MappedListIterable(t5, new A._VariablesHelpState_build_closure1(), t8), true, t9), _null)], t2), t4, _null), _null)], t2), _null, _null, false, _null, false, _null); } }; A._VariablesHelpState_build_closure.prototype = { call$1(field) { return "client." + A.S(field); }, $signature: 15 }; A._VariablesHelpState_build_closure0.prototype = { call$1(field) { return "contact." + A.S(field); }, $signature: 15 }; A._VariablesHelpState_build_closure1.prototype = { call$1(field) { return "company." + A.S(field); }, $signature: 15 }; A._VariableGrid.prototype = { build$1(_, context) { B.JSArray_methods.sort$1(this.fields, new A._VariableGrid_build_closure()); return new A.Padding(B.EdgeInsets_0_16_0_0, new A.LayoutBuilder(new A._VariableGrid_build_closure0(this), null), null); } }; A._VariableGrid_build_closure.prototype = { call$2(a, b) { return J.compareTo$1$ns(a, b); }, $signature: 19 }; A._VariableGrid_build_closure0.prototype = { call$2(context, constraints) { var t1 = this.$this.fields, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TextButton*>"); return A.GridView$count((constraints.maxWidth / 2 - 8) / 50, A.List_List$of(new A.MappedListIterable(t1, new A._VariableGrid_build__closure(context), t2), true, t2._eval$1("ListIterable.E")), 2, 0, 0, new A.EdgeInsets(6, 6, 6, 6), null, true, true); }, $signature: 311 }; A._VariableGrid_build__closure.prototype = { call$1(field) { var _null = null; return A.TextButton$(false, new A.Align(B.Alignment_m1_0, _null, _null, A.Text$("$" + A.S(field), _null, 1, B.TextOverflow_2, _null, _null, _null, B.TextAlign_4, _null, _null), _null), _null, new A._VariableGrid_build___closure(field, this.context), _null); }, $signature: 2239 }; A._VariableGrid_build___closure.prototype = { call$0() { var t1 = "$" + A.S(this.field); A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$copiedToClipboard(), ":value", t1)); }, $signature: 1 }; A.__VariablesHelpState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ViewScaffold.prototype = { build$1(_, context) { var userCompany, t5, isSettings, title, presenter, t6, t7, t8, leading, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; userCompany = t2[t4].userCompany; t5 = _this.entity; isSettings = t5.get$entityType().get$isSetting(); if (t5.get$isNew()) title = ""; else { presenter = new A.EntityPresenter(); presenter.entity = t5; presenter.context = context; title = presenter.title$1$isNarrow(0, A.getLayout(context) === B.AppLayout_mobile); } if (A.getLayout(context) === B.AppLayout_desktop) { t6 = _this.isFilter; if (t6) { t7 = t5.get$entityType(); t8 = t3.filterStack._list; t7 = t7 == (t8.length === 0 ? _null : B.JSArray_methods.get$last(t8).get$entityType()); } else t7 = false; if (t7) leading = t3.filterStack._list.length > 1 && !t6 ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57490_MaterialIcons_null_true, _null, _null), _null, new A.ViewScaffold_build_closure(store), B.EdgeInsets_8_8_8_8, _null, _null, _null) : A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A.ViewScaffold_build_closure0(store), B.EdgeInsets_8_8_8_8, _null, _null, _null); else if (t3.previewStack._list.length !== 0) { t3 = t1.get$back(t1); leading = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57490_MaterialIcons_null_true, _null, _null), _null, new A.ViewScaffold_build_closure1(store), B.EdgeInsets_8_8_8_8, _null, t3, _null); } else leading = A.getLayout(context) === B.AppLayout_desktop && !t5.get$entityType().get$isSetting() && state.prefState.moduleLayout !== B.ModuleLayout_list ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A.ViewScaffold_build_closure2(store), B.EdgeInsets_8_8_8_8, _null, _null, _null) : _null; } else leading = _null; t3 = A.Theme_of(context).cardColor; t6 = A.getLayout(context); t7 = A.Text$(title, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = type$.JSArray_legacy_Widget; if (t5.get$isNew()) t2 = A._setArrayType([], t8); else { t8 = A._setArrayType([], t8); if (isSettings && A.getLayout(context) === B.AppLayout_desktop && !_this.isFilter) t8.push(A.TextButton$(false, A.Text$(t1.get$back(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A.ViewScaffold_build_closure3(_this, store, state), _null)); if (userCompany.canEditEntity$1(t5)) t8.push(new A.Builder(new A.ViewScaffold_build_closure4(_this, state, t1), _null)); t9 = state.isSaving && !_this.isFilter; if (type$.legacy_BelongsToClient._is(t5)) { t2 = t2[t4].clientState.map; t4 = t5.get$clientId(t5); t4 = t2._map$_map.$index(0, t4); t2 = t4; } else t2 = _null; t8.push(new A.ViewActionMenuButton(t5, t5.getActions$2$client$userCompany(t2, userCompany), new A.ViewScaffold_build_closure5(_this), t9, _null)); t2 = t8; } t7 = A.AppBar$(t2, _null, t6 === B.AppLayout_mobile, _null, _null, _this.appBarBottom, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, _null, _null, new A.CopyToClipboard(t7, title, false, _null, _null, _null), _null, _null, _null, 1, _null); if (t5.get$isNew()) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "no_record_selected"); t1 = new A.BlankScreen(t1 == null ? "" : t1, _null); } else t1 = _this.body; return new A.WillPopScope(A.FocusTraversalGroup$(A.Scaffold$(t7, t3, A.SafeArea$(true, t1, B.EdgeInsets_0_0_0_0, true), _null, _null, _null, _null, _null), true, true, _null), new A.ViewScaffold_build_closure6(), _null); }, get$body(receiver) { return this.body; } }; A.ViewScaffold_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.PopFilterStack()); }, $signature: 9 }; A.ViewScaffold_build_closure0.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.ViewScaffold_build_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.PopPreviewStack()); }, $signature: 9 }; A.ViewScaffold_build_closure2.prototype = { call$0() { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.ViewScaffold_build_closure6.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.ViewScaffold_build_closure3.prototype = { call$0() { var t1 = this.$this.onBackPressed; if (t1 != null) t1.call$0(); else { t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 1 }; A.ViewScaffold_build_closure4.prototype = { call$1(context) { var t2, isDisabled, _null = null, t1 = this.state.uiState; if (t1.get$isEditing()) { t2 = t1.get$mainRoute(); t1 = t1.filterStack._list; isDisabled = t2 === J.toString$0$(t1.length === 0 ? _null : B.JSArray_methods.get$last(t1).get$entityType()); } else isDisabled = false; t1 = this.localization.get$edit(); return new A.AppTextButton(t1, isDisabled ? _null : new A.ViewScaffold_build__closure(this.$this), true, _null, _null); }, $signature: 351 }; A.ViewScaffold_build__closure.prototype = { call$0() { A.editEntity(null, this.$this.entity, true, null); }, $signature: 1 }; A.ViewScaffold_build_closure5.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_legacy_BaseEntity), action, true); return null; }, $signature: 59 }; A.WebSessionTimeout.prototype = { createState$0() { return new A._WebSessionTimeoutState(B._StateLifecycle_0); } }; A._WebSessionTimeoutState.prototype = { initState$0() { this.super$State$initState(); this._web_session_timeout$_timer = A.Timer_Timer$periodic(A.Duration$(0, 0, 0, 0, 1, 0), new A._WebSessionTimeoutState_initState_closure(this)); }, dispose$0(_) { var t1 = this._web_session_timeout$_timer; if (t1 != null) t1.cancel$0(0); this._web_session_timeout$_timer = null; this.super$State$dispose(0); }, build$1(_, context) { return this._widget.child; } }; A._WebSessionTimeoutState_initState_closure.prototype = { call$1(timer) { var store, state, t2, sessionTimeout, t1 = this.$this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; sessionTimeout = t1[t2].userCompany.company.sessionTimeout; if (sessionTimeout === 0) return; if (Date.now() - t1[t2].lastUpdated > sessionTimeout) store.get$_dispatchers()[0].call$1(new A.UserLogout()); }, $signature: 379 }; A.WebSocketRefresh.prototype = { createState$0() { return new A._WebSocketRefreshState(B._StateLifecycle_0); } }; A._WebSocketRefreshState.prototype = { didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); return; }, build$1(_, context) { return this._widget.child; } }; A.InitScreen.prototype = { build$1(_, context) { return A.StoreBuilder$(new A.InitScreen_build_closure(), new A.InitScreen_build_closure0(context), type$.legacy_AppState); } }; A.InitScreen_build_closure0.prototype = { call$1(store) { return store.get$_dispatchers()[0].call$1(new A.LoadStateRequest(this.context)); }, $signature: 2240 }; A.InitScreen_build_closure.prototype = { call$2(context, store) { var _null = null; return A.Container$(_null, A.Column$(A._setArrayType([A.Expanded$(A.Center$(A.Image$asset("assets/images/icon.png", _null, _null), _null, _null), 1), new A.SizedBox(_null, 4, A.LinearProgressIndicator$(), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2241 }; A.LockScreen.prototype = { build$1(_, context) { var t3, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.Icon$(B._MdiIconData_wMy, B.Color_4290624957, 24); t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t4 = J.$index$asx(t3.$index(0, t1), "locked"); if (t4 == null) t4 = ""; t5 = type$.JSArray_legacy_Widget; t4 = A.Row$(A._setArrayType([t2, new A.SizedBox(12, _null, _null, _null), A.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4290624957, _null, _null, _null, _null, _null, _null, _null, _null, 32, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null); t1 = J.$index$asx(t3.$index(0, t1), "authenticate"); return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([t4, A.ElevatedButton$(A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), this.onAuthenticatePressed, _null)], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_4, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, B.MaterialColor_Map_HFpTk_4288585374, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.LoginView.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._LoginState(new A.LabeledGlobalKey("_login", type$.LabeledGlobalKey_legacy_FormState), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.RoundedLoadingButtonController(A.BehaviorSubject_BehaviorSubject$seeded(B.ButtonState_0, type$.ButtonState)), B._StateLifecycle_0); } }; A._LoginState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = !_this._widget.viewModel.authState.get$isHosted(); _this._isSelfHosted = t1; if (t1) _this._loginType = "email"; else { t1 = window.document.documentElement; t1.toString; if (t1.getAttribute("data-" + new A._DataAttributeMap(new A._ElementAttributeMap(t1))._toHyphenedName$1("signup")) === "true") _this._createAccount = true; } t1 = A._setArrayType(["email"], type$.JSArray_legacy_String); t1.push("google"); t1.push("microsoft"); t1.push("apple"); _this._loginTypes = t1; t1 = _this._login_view$_urlController; t1.set$text(0, "https://demo.invoiceninja.com"); _this._secretController.set$text(0, ""); _this._login_view$_emailController.set$text(0, "demo@invoiceninja.com"); _this._login_view$_passwordController.set$text(0, "Password0"); _this._login_view$_firstNameController.set$text(0, "TEST"); _this._login_view$_lastNameController.set$text(0, "TEST"); _this._termsChecked = _this._privacyChecked = true; _this._loginType = "email"; if (t1._change_notifier$_value.text.length === 0) t1.set$text(0, _this._widget.viewModel.authState.url); }, dispose$0(_) { var _this = this, t1 = _this._login_view$_firstNameController, t2 = t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; t1 = _this._login_view$_lastNameController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._login_view$_emailController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._login_view$_passwordController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._login_view$_urlController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._secretController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._oneTimePasswordController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = _this._tokenController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; _this.super$State$dispose(0); }, _submitForm$0() { var _this = this, t1 = _this._buttonController._startListener; if (t1 != null) t1.call$0(); if (_this._createAccount) _this._submitSignUpForm$0(); else _this._submitLoginForm$0(); }, _submitSignUpForm$0() { var viewModel, authState, url, t2, completer, t3, _this = this, _s27_ = "https://testv5.invoicing.co", _s28_ = "https://staging.invoicing.co", isValid = _this._login_view$_formKey.get$currentState().validate$0(), t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); viewModel = _this._widget.viewModel; authState = viewModel.state.authState; if (_this._isSelfHosted) url = _this._login_view$_urlController._change_notifier$_value.text; else { t2 = authState.url; if (A.cleanApiUrl(t2) === _s27_) url = _s27_; else { t2 = A.cleanApiUrl(t2) === _s28_ ? _s28_ : "https://invoicing.co"; url = t2; } } _this.setState$1(new A._LoginState__submitSignUpForm_closure(_this, isValid)); if (!isValid) { t1 = _this._buttonController._resetListener; if (t1 != null) t1.call$0(); return; } if (_this._createAccount) t2 = !_this._termsChecked || !_this._privacyChecked; else t2 = false; if (t2) { t2 = _this._buttonController._resetListener; if (t2 != null) t2.call$0(); t2 = _this._framework$_element; t2.toString; A.showDialog(null, true, new A._LoginState__submitSignUpForm_closure0(_this, t1), t2, null, true, type$.legacy_AlertDialog); return; } t1 = new A._Future($.Zone__current, type$._Future_Null); completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_Null); t1.then$1$1(0, new A._LoginState__submitSignUpForm_closure1(_this), type$.Null).catchError$1(new A._LoginState__submitSignUpForm_closure2(_this)); t1 = _this._loginType; if (t1 === "email") { t1 = _this._framework$_element; t1.toString; t2 = _this._login_view$_emailController._change_notifier$_value.text; t3 = _this._login_view$_passwordController._change_notifier$_value.text; viewModel.onSignUpPressed.call$4$email$password(t1, completer, t2, t3); } else if (t1 === "microsoft") { t1 = _this._framework$_element; t1.toString; viewModel.onMicrosoftSignUpPressed.call$3(t1, completer, url); } else { t2 = _this._framework$_element; if (t1 === "apple") { t2.toString; viewModel.onAppleSignUpPressed.call$3(t2, completer, url); } else { t2.toString; viewModel.onGoogleSignUpPressed.call$3(t2, completer, url); } } }, _submitLoginForm$0() { var t1, completer, authState, url, t2, t3, t4, t5, _this = this, _s27_ = "https://testv5.invoicing.co", _s28_ = "https://staging.invoicing.co", isValid = _this._login_view$_formKey.get$currentState().validate$0(), viewModel = _this._widget.viewModel; _this.setState$1(new A._LoginState__submitLoginForm_closure(_this, isValid)); if (!isValid) { t1 = _this._buttonController._resetListener; if (t1 != null) t1.call$0(); return; } t1 = new A._Future($.Zone__current, type$._Future_Null); completer = new A._AsyncCompleter(t1, type$._AsyncCompleter_Null); t1.then$1$1(0, new A._LoginState__submitLoginForm_closure0(_this), type$.Null).catchError$1(new A._LoginState__submitLoginForm_closure1(_this)); authState = _this._widget.viewModel.authState; if (_this._isSelfHosted) url = _this._login_view$_urlController._change_notifier$_value.text; else { t1 = authState.url; if (A.cleanApiUrl(t1) === _s27_) url = _s27_; else { t1 = A.cleanApiUrl(t1) === _s28_ ? _s28_ : "https://invoicing.co"; url = t1; } } t1 = _this._loginType; if (t1 === "email") { t1 = _this._recoverPassword; t2 = _this._framework$_element; t3 = _this._login_view$_emailController._change_notifier$_value; if (t1) { t2.toString; t1 = t3.text; t3 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; viewModel.onRecoverPressed.call$5$email$secret$url(t2, completer, t1, t3, url); } else { t2.toString; t1 = t3.text; t3 = _this._login_view$_passwordController._change_notifier$_value.text; t4 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t5 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onLoginPressed.call$7$email$oneTimePassword$password$secret$url(t2, completer, t1, t5, t3, t4, url); } } else if (t1 === "microsoft") { t1 = _this._framework$_element; t1.toString; t2 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t3 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onMicrosoftLoginPressed.call$5$oneTimePassword$secret$url(t1, completer, t3, t2, url); } else { t2 = _this._framework$_element; if (t1 === "apple") { t2.toString; t1 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t3 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onAppleLoginPressed.call$5$oneTimePassword$secret$url(t2, completer, t3, t1, url); } else { t2.toString; t1 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t3 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onGoogleLoginPressed.call$5$oneTimePassword$secret$url(t2, completer, t3, t1, url); } } }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, _s7_ = "#2F7DC3", _s15_ = "select_platform", _s2_ = "en", _s13_ = "select_method", _s17_ = "microsoft_sign_up", _s17_0 = "microsoft_sign_in", _s11_ = "login_label", _s14_ = "register_label", _s12_ = "check_status", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), platform = A.getNativePlatform(), viewModel = _this._widget.viewModel, state = viewModel.state, aboutTextStyle = A.Theme_of(context).textTheme.bodyMedium, linkStyle = aboutTextStyle.copyWith$1$color(A.convertHexStringToColor(_s7_)), horizontalPadding = A.calculateLayout(context) === B.AppLayout_desktop ? 40 : 16, t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([], t2); if (A.isMacOS() || A.isWindows() || A.isLinux()) t3.push(new A.AppTitleBar(_null)); t3.push(A.Container$(_null, _null, B.Clip_0, state.get$accentColor(), _null, _null, _null, 16, _null, _null, _null, _null, _null, 1 / 0)); t4 = A.Image$asset(state.prefState.enableDarkMode ? "assets/images/logo_dark.png" : "assets/images/logo_light.png", 50, _null); t5 = A.isApple() ? _null : new A._LoginState_build_closure(); t3.push(new A.Padding(new A.EdgeInsets(0, 25, 0, 25), A.Center$(A.InkWell$(false, _null, true, t4, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._LoginState_build_closure0(_this), t5, _null, _null, _null, _null, _null, _null), _null, _null), _null)); if (_this._tokenLogin) t3.push(A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, false, _this._tokenController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$token(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), new A.AppButton(_null, _null, t1.get$submit(t1).toUpperCase(), new A._LoginState_build_closure1(_this, viewModel, context), _null, _null)], t2), _null, _null, true, B.EdgeInsets_0_0_0_0, false, _null)); t4 = A.Duration$(0, 0, 0, 500, 0, 0); t5 = viewModel.authState.isAuthenticated ? 0 : 1; t6 = A._setArrayType([new A.SizedBox(_null, 20, _null, _null)], t2); if (!_this._recoverPassword && true) { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = t1.localeCode; t9 = J.$index$asx(t7.$index(0, t8), _s15_); if (t9 == null) t9 = J.$index$asx(t7.$index(0, _s2_), _s15_); t10 = J.$index$asx(t7.$index(0, t8), "hosted"); if (t10 == null) t10 = ""; t8 = J.$index$asx(t7.$index(0, t8), "selfhosted"); t7 = A._setArrayType([t10, t8 == null ? "" : t8], type$.JSArray_legacy_String); t8 = _this._isSelfHosted ? 1 : 0; B.JSArray_methods.addAll$1(t6, A._setArrayType([new A.RuledText(t9, _null), new A.AppToggleButtons(t7, t8, new A._LoginState_build_closure2(_this), _null)], t2)); } if (!_this._isSelfHosted && _this._loginTypes.length > 1) { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t7.$index(0, t1.localeCode), _s13_); t7 = t8 == null ? J.$index$asx(t7.$index(0, _s2_), _s13_) : t8; t8 = _this._loginTypes; B.JSArray_methods.addAll$1(t6, A._setArrayType([new A.RuledText(t7, _null), new A.AppToggleButtons(t8, (t8 && B.JSArray_methods).indexOf$1(t8, _this._loginType), new A._LoginState_build_closure3(_this), _null)], t2)); } t7 = A._setArrayType([], t2); if (_this._loginType === "email") { t8 = t1.get$email(t1); t9 = _this._login_view$_autoValidate; t7.push(A.DecoratedFormField$(false, A._setArrayType(["email"], type$.JSArray_legacy_String), _this._loginType === "email", t9, _this._login_view$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t8, _null, _null, false, _null, _null, new A._LoginState_build_closure4(_this), true, _null, _null, B.TextAlign_4, new A._LoginState_build_closure5(t1))); } if (_this._loginType === "email" && !_this._recoverPassword) t7.push(new A.PasswordFormField(_this._login_view$_passwordController, new A._LoginState_build_closure6(_this), false, _this._createAccount, true, _null, _null)); if (!_this._createAccount && !_this._recoverPassword) { t8 = t1.get$oneTimePassword(); t9 = t1.get$optional(); t7.push(A.DecoratedFormField$(false, A._setArrayType(["oneTimeCode"], type$.JSArray_legacy_String), false, false, _this._oneTimePasswordController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, "2FA - " + t8 + " (" + t9 + ")", _null, _null, false, _null, _null, new A._LoginState_build_closure7(_this), true, _null, _null, B.TextAlign_4, _null)); } if (_this._isSelfHosted && !_this._recoverPassword) { t1.toString; t8 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "secret"); if (t8 == null) t8 = ""; t9 = t1.get$optional(); t7.push(new A.PasswordFormField(_this._secretController, new A._LoginState_build_closure8(_this), _this._login_view$_autoValidate, true, false, t8 + " (" + t9 + ")", _null)); } if (_this._createAccount) { t8 = A.convertHexStringToColor(_s7_); t9 = _this._termsChecked; t10 = type$.JSArray_legacy_TextSpan; t9 = A.CheckboxListTile$(t8, _null, B.ListTileControlAffinity_0, _null, _null, new A._LoginState_build_closure9(_this), A.RichText$(_null, _null, _null, B.TextOverflow_0, true, _null, A.TextSpan$(A._setArrayType([A.TextSpan$(_null, _null, aboutTextStyle, t1.get$iAgreeToThe() + " "), A.LinkTextSpan$(linkStyle, t1.get$termsOfService(), "https://www.invoiceninja.com/terms")], t10), _null, _null, _null), B.TextAlign_4, _null, _null, 1, B.TextWidthBasis_0), t9); t8 = A.convertHexStringToColor(_s7_); t11 = _this._privacyChecked; t7.push(new A.Padding(new A.EdgeInsets(0, 10, 0, 0), A.Column$(A._setArrayType([t9, A.CheckboxListTile$(t8, _null, B.ListTileControlAffinity_0, _null, _null, new A._LoginState_build_closure10(_this), A.RichText$(_null, _null, _null, B.TextOverflow_0, true, _null, A.TextSpan$(A._setArrayType([A.TextSpan$(_null, _null, aboutTextStyle, t1.get$iAgreeToThe() + " "), A.LinkTextSpan$(linkStyle, t1.get$privacyPolicy(), "https://www.invoiceninja.com/privacy-policy")], t10), _null, _null, _null), B.TextAlign_4, _null, _null, 1, B.TextWidthBasis_0), t11)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null)); } t6.push(new A.Padding(new A.EdgeInsets(horizontalPadding, 0, horizontalPadding, 0), A.Column$(t7, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null)); t6 = A._setArrayType([A.Column$(t6, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], t2); t7 = _this._loginError; if (t7.length !== 0 && !B.JSString_methods.contains$1(t7, "OTP_REQUIRED")) { t7 = A.Expanded$(A.SelectableText$(t7, A.TextStyle$(_null, _null, B.MaterialColor_Map_JNc9P_4294198070, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null)), 1); t8 = A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null); t1.toString; t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "copy_error"); if (t9 == null) t9 = ""; t6.push(A.Container$(_null, A.Row$(A._setArrayType([t7, A.IconButton$(B.Alignment_0_0, _null, _null, true, t8, _null, new A._LoginState_build_closure11(_this), B.EdgeInsets_8_8_8_8, _null, t9, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(horizontalPadding, 20, horizontalPadding, 0), _null, _null, _null)); } if (_this._loginType === "apple") { t7 = A.calculateLayout(context) === B.AppLayout_desktop ? B.EdgeInsets_20_3_20_3 : B.EdgeInsets_0_0_0_0; t7 = new A.Padding(t7, new A.SignInWithAppleButton(_this.get$_submitForm(), _null), _null); } else { t7 = state.get$accentColor(); t8 = A._setArrayType([], t2); t9 = _this._loginType; if (t9 === "email") t8.push(A.Icon$(B.IconData_58307_MaterialIcons_null_false, B.Color_4294967295, _null)); else if (t9 === "microsoft") t8.push(A.Icon$(B._MdiIconData_jVE1, B.Color_4294967295, _null)); else if (t9 === "apple") t8.push(A.Icon$(B._MdiIconData_7T1, B.Color_4294967295, _null)); else t8.push(new A.ClipOval(A.Image$asset("assets/images/google_logo.png", 30, 30), _null)); t8.push(new A.SizedBox(10, _null, _null, _null)); if (_this._recoverPassword) t9 = t1.get$recoverPassword(); else if (_this._createAccount) { t9 = _this._loginType; if (t9 === "email") { t1.toString; t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "email_sign_up"); if (t9 == null) t9 = ""; } else if (t9 === "microsoft") { t1.toString; t9 = $.$get$LocalizationsProvider__localizedValues(); t10 = J.$index$asx(t9.$index(0, t1.localeCode), _s17_); t9 = t10 == null ? J.$index$asx(t9.$index(0, _s2_), _s17_) : t10; } else { t1.toString; t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "google_sign_up"); if (t9 == null) t9 = ""; } } else { t9 = _this._loginType; if (t9 === "email") { t1.toString; t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "email_sign_in"); if (t9 == null) t9 = ""; } else if (t9 === "microsoft") { t1.toString; t9 = $.$get$LocalizationsProvider__localizedValues(); t10 = J.$index$asx(t9.$index(0, t1.localeCode), _s17_0); t9 = t10 == null ? J.$index$asx(t9.$index(0, _s2_), _s17_0) : t10; } else { t1.toString; t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "google_sign_in"); if (t9 == null) t9 = ""; } } t8.push(A.Text$(t9, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 18, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)); t7 = new A.RoundedLoadingButton(_this._buttonController, new A._LoginState_build_closure12(_this), A.Row$(t8, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null), t7, 50, 430, 4, _null); } t6.push(new A.Padding(new A.EdgeInsets(16, 20, 16, 10), t7, _null)); if (!_this._isSelfHosted) if (!_this._recoverPassword) if (!A.isApple()) t7 = state.authState.get$isHosted(); else t7 = false; else t7 = false; else t7 = false; if (t7) { if (_this._createAccount) { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t7.$index(0, t1.localeCode), _s11_); t7 = t8 == null ? J.$index$asx(t7.$index(0, _s2_), _s11_) : t8; } else { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t7.$index(0, t1.localeCode), _s14_); t7 = t8 == null ? J.$index$asx(t7.$index(0, _s2_), _s14_) : t8; } t6.push(new A.Padding(B.EdgeInsets_0_6_0_10, A.TextButton$(false, A.Text$(t7, _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null), _null, new A._LoginState_build_closure13(_this), _null), _null)); } t6.push(new A.SizedBox(_null, 8, _null, _null)); t3.push(A.AnimatedOpacity$(false, A.Form$(_null, new A.AutofillGroup(A.FormCard$(_null, t6, _null, _null, true, B.EdgeInsets_0_0_0_0, false, _null), _null), _this._login_view$_formKey), B.C__Linear, t4, t5)); t3.push(new A.SizedBox(_null, 8, _null, _null)); t4 = A.calculateLayout(context) === B.AppLayout_desktop ? B.Axis_0 : B.Axis_1; t5 = A._setArrayType([], t2); if (!_this._createAccount) { t6 = A._setArrayType([], t2); if (!_this._recoverPassword) t6.push(A.Icon$(B._MdiIconData_wMy, _null, 16)); t6.push(new A.SizedBox(8, _null, _null, _null)); t6.push(A.Text$(_this._recoverPassword ? t1.get$cancel(t1) : t1.get$recoverPassword(), _null, _null, _null, _null, _null, _null, _null, _null, _null)); t5.push(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_14_14_14_14, A.Row$(t6, B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._LoginState_build_closure14(_this), _null, _null, _null, _null, _null, _null)); } if (!_this._recoverPassword && !_this._isSelfHosted) { t6 = A.Icon$(B.IconData_58729_MaterialIcons_null_false, _null, 16); t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t7.$index(0, t1.localeCode), _s12_); t5.push(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_14_14_14_14, A.Row$(A._setArrayType([t6, new A.SizedBox(8, _null, _null, _null), A.Text$(t8 == null ? J.$index$asx(t7.$index(0, _s2_), _s12_) : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._LoginState_build_closure15(), _null, _null, _null, _null, _null, _null)); } if (!_this._recoverPassword) { t6 = A.Icon$(A.getNativeAppIcon(platform), _null, 16); t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t7.$index(0, t1.localeCode), "app"); if (t1 == null) t1 = J.$index$asx(t7.$index(0, _s2_), "app"); t5.push(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_14_14_14_14, A.Row$(A._setArrayType([t6, new A.SizedBox(8, _null, _null, _null), A.Text$(platform + " " + A.S(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._LoginState_build_closure16(platform), _null, _null, _null, _null, _null, _null)); } t3.push(A.FormCard$(_null, A._setArrayType([A.Flex$(t5, B.CrossAxisAlignment_2, t4, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, _null, _null, B.VerticalDirection_1)], t2), _null, _null, true, B.EdgeInsets_0_0_0_0, false, _null)); return A.SafeArea$(true, new A.ScrollableListView(t3, _null, _null, _null), B.EdgeInsets_0_0_0_0, true); } }; A._LoginState__submitSignUpForm_closure.prototype = { call$0() { var t1 = this.$this; t1._login_view$_autoValidate = !this.isValid; t1._loginError = ""; }, $signature: 1 }; A._LoginState__submitSignUpForm_closure0.prototype = { call$1(context) { var t3, _null = null, t1 = this.localization, t2 = A.Text$(!this.$this._termsChecked ? t1.get$termsOfService() : t1.get$privacyPolicy(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "please_agree_to_terms_and_privacy"); t1 = A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return A.AlertDialog$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_8_0, A.TextButton$(false, A.Text$(t3.get$close(t3), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._LoginState__submitSignUpForm__closure1(context), _null), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t1, B.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 165 }; A._LoginState__submitSignUpForm__closure1.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._LoginState__submitSignUpForm_closure1.prototype = { call$1(_) { var t1 = this.$this; t1.setState$1(new A._LoginState__submitSignUpForm__closure0(t1)); }, $signature: 3 }; A._LoginState__submitSignUpForm__closure0.prototype = { call$0() { this.$this._loginError = ""; }, $signature: 1 }; A._LoginState__submitSignUpForm_closure2.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._LoginState__submitSignUpForm__closure(t1, error)); }, $signature: 3 }; A._LoginState__submitSignUpForm__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._buttonController._resetListener; if (t2 != null) t2.call$0(); t1._loginError = J.toString$0$(this.error); }, $signature: 1 }; A._LoginState__submitLoginForm_closure.prototype = { call$0() { var t1 = this.$this; t1._login_view$_autoValidate = !this.isValid; t1._loginError = ""; }, $signature: 1 }; A._LoginState__submitLoginForm_closure0.prototype = { call$1(_) { var t1 = this.$this; t1.setState$1(new A._LoginState__submitLoginForm__closure0(t1)); }, $signature: 3 }; A._LoginState__submitLoginForm__closure0.prototype = { call$0() { var t2, t1 = this.$this; t1._loginError = ""; if (t1._recoverPassword) { t1._recoverPassword = false; t2 = t1._buttonController._resetListener; if (t2 != null) t2.call$0(); t1 = t1._framework$_element; t1.toString; A.showDialog(null, true, new A._LoginState__submitLoginForm___closure(), t1, null, true, type$.legacy_MessageDialog); } }, $signature: 1 }; A._LoginState__submitLoginForm___closure.prototype = { call$1(context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "recover_password_email_sent"); return new A.MessageDialog(t1 == null ? "" : t1, _null, _null, _null, _null, _null); }, $signature: 294 }; A._LoginState__submitLoginForm_closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._LoginState__submitLoginForm__closure(t1, error)); }, $signature: 3 }; A._LoginState__submitLoginForm__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._buttonController._resetListener; if (t2 != null) t2.call$0(); t1._loginError = J.toString$0$(this.error); }, $signature: 1 }; A._LoginState_build_closure.prototype = { call$0() { A.launch("https://invoiceninja.com", false, false); }, $signature: 1 }; A._LoginState_build_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._LoginState_build__closure5(t1)); }, $signature: 1 }; A._LoginState_build__closure5.prototype = { call$0() { var t1 = this.$this; return t1._tokenLogin = !t1._tokenLogin; }, $signature: 21 }; A._LoginState_build_closure1.prototype = { call$0() { this.viewModel.onTokenLoginPressed.call$3$token(this.context, new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_Null), type$._AsyncCompleter_Null), this.$this._tokenController._change_notifier$_value.text); }, $signature: 1 }; A._LoginState_build_closure2.prototype = { call$1(index) { var t1 = this.$this; t1.setState$1(new A._LoginState_build__closure4(t1, index)); }, $signature: 106 }; A._LoginState_build__closure4.prototype = { call$0() { var t1 = this.$this, t2 = this.index === 1; t1._isSelfHosted = t2; t1._createAccount = false; t1._loginError = ""; if (t2) t1._loginType = "email"; }, $signature: 1 }; A._LoginState_build_closure3.prototype = { call$1(index) { var t1 = this.$this; t1.setState$1(new A._LoginState_build__closure3(t1, index)); }, $signature: 106 }; A._LoginState_build__closure3.prototype = { call$0() { var t1 = this.$this; t1._loginType = t1._loginTypes[this.index]; t1._loginError = ""; }, $signature: 1 }; A._LoginState_build_closure5.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; A._LoginState_build_closure4.prototype = { call$1(_) { return this.$this._submitForm$0(); }, $signature: 30 }; A._LoginState_build_closure6.prototype = { call$1(_) { return this.$this._submitForm$0(); }, $signature: 30 }; A._LoginState_build_closure7.prototype = { call$1(_) { return this.$this._submitForm$0(); }, $signature: 30 }; A._LoginState_build_closure8.prototype = { call$1(_) { return this.$this._submitForm$0(); }, $signature: 30 }; A._LoginState_build_closure9.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._LoginState_build__closure2(t1, value)); }, $signature: 40 }; A._LoginState_build__closure2.prototype = { call$0() { return this.$this._termsChecked = this.value; }, $signature: 21 }; A._LoginState_build_closure10.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._LoginState_build__closure1(t1, value)); }, $signature: 40 }; A._LoginState_build__closure1.prototype = { call$0() { return this.$this._privacyChecked = this.value; }, $signature: 21 }; A._LoginState_build_closure11.prototype = { call$0() { A.Clipboard_setData(new A.ClipboardData(this.$this._loginError)); }, $signature: 1 }; A._LoginState_build_closure12.prototype = { call$0() { return this.$this._submitForm$0(); }, $signature: 0 }; A._LoginState_build_closure13.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._LoginState_build__closure0(t1)); }, $signature: 1 }; A._LoginState_build__closure0.prototype = { call$0() { var t1 = this.$this; t1._createAccount = !t1._createAccount; t1._loginError = ""; }, $signature: 1 }; A._LoginState_build_closure14.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._LoginState_build__closure(t1)); }, $signature: 1 }; A._LoginState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._recoverPassword = !t1._recoverPassword; }, $signature: 1 }; A._LoginState_build_closure15.prototype = { call$0() { A.launch("https://status.invoiceninja.com/", null, false); }, $signature: 1 }; A._LoginState_build_closure16.prototype = { call$0() { return A.launch(A.getNativeAppUrl(this.platform), null, false); }, $signature: 26 }; A.RuledText.prototype = { build$1(_, context) { var _null = null, horizontalPadding = A.calculateLayout(context) === B.AppLayout_desktop ? 40 : 16, t1 = B.JSNumber_methods.round$0(127.5); return new A.Padding(new A.EdgeInsets(horizontalPadding, 4, horizontalPadding, 14), A.Row$(A._setArrayType([A.Expanded$(A.Container$(_null, _null, B.Clip_0, A.Color$fromARGB(t1, 158, 158, 158), _null, _null, _null, 1, _null, _null, _null, _null, _null, _null), 1), new A.Padding(B.EdgeInsets_16_0_16_0, A.Text$(this.text, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), A.Expanded$(A.Container$(_null, _null, B.Clip_0, A.Color$fromARGB(t1, 158, 158, 158), _null, _null, _null, 1, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null); } }; A.LoginScreen.prototype = { build$1(_, context) { var _null = null; return A.Scaffold$(_null, _null, A.StoreConnector$(new A.LoginScreen_build_closure(), A.login_vm_LoginVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_LoginVM), _null, _null, _null, _null, _null); } }; A.LoginScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.LoginView(viewModel, null); }, $signature: 2242 }; A.LoginVM.prototype = {}; A.LoginVM_fromStore__handleLogin.prototype = { call$2$context$isSignUp(context, isSignUp) { var _null = null, layout = A.calculateLayout(context), moduleLayout = layout === B.AppLayout_desktop ? B.ModuleLayout_table : B.ModuleLayout_list, t1 = this.store, t2 = A.UpdateUserPreferences$(layout, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, isSignUp ? moduleLayout : _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1.get$_dispatchers()[0].call$1(t2); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.LoginVM_fromStore__handleLogin_closure(layout, isSignUp, t1)); }, call$0() { return this.call$2$context$isSignUp(null, false); }, call$1$context(context) { return this.call$2$context$isSignUp(context, false); }, $signature: 2243 }; A.LoginVM_fromStore__handleLogin_closure.prototype = { call$1(duration) { var t1, _this = this, _null = null; if (_this.layout === B.AppLayout_mobile) { if (_this.isSignUp) { t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.ModuleLayout_list, _null, _null, _null, _null, _null, _null, _null, _null, _null); _this.store.get$_dispatchers()[0].call$1(t1); } _this.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, _null)); } else _this.store.get$_dispatchers()[0].call$1(new A.ViewMainScreen()); }, $signature: 36 }; A.LoginVM_fromStore__formatApiUrl.prototype = { call$1(url) { url = J.trim$0$s(url); if (url.length === 0) url = "https://invoicing.co"; else if (!B.JSString_methods.startsWith$1(url, "http")) url = "https://" + url; return A.formatApiUrl(url); }, $signature: 15 }; A.LoginVM_fromStore_closure3.prototype = { call$5$oneTimePassword$secret$url(context, completer, oneTimePassword, secret, url) { return this.$call$body$LoginVM_fromStore_closure4(context, completer, oneTimePassword, secret, url); }, call$2(context, completer) { return this.call$5$oneTimePassword$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure4(context, completer, oneTimePassword, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, t1, exception, $async$exception; var $async$call$5$oneTimePassword$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; $async$goto = 6; return A._asyncAwait(A.GoogleOAuth_signOut(), $async$call$5$oneTimePassword$secret$url); case 6: // returning from await. $async$goto = 7; return A._asyncAwait(A.GoogleOAuth_signIn(new A.LoginVM_fromStore__closure6(completer, context, $async$self.store, $async$self._formatApiUrl, url, secret, oneTimePassword, $async$self._handleLogin), false), $async$call$5$oneTimePassword$secret$url); case 7: // returning from await. signedIn = $async$result; if (!signedIn) { t1 = $.$get$navigatorKey(); t1.toString; completer.completeError$1(A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); completer.completeError$1(error); A.print("## onGoogleLoginPressed: " + A.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, $signature: 430 }; A.LoginVM_fromStore__closure6.prototype = { call$2(idToken, accessToken) { var t4, t5, _this = this, t1 = idToken.length === 0 || accessToken.length === 0, t2 = _this.completer, t3 = _this.context; if (t1) { A.GoogleOAuth_signOut(); t2.completeError$1(A.Localizations_of(t3, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else { t1 = _this._formatApiUrl.call$1(_this.url); t4 = J.trim$0$s(_this.secret); t5 = A.Theme_of(t3).platform === B.TargetPlatform_2 ? "ios" : "android"; _this.store.get$_dispatchers()[0].call$1(new A.OAuthLoginRequest(t2, null, idToken, accessToken, t1, t4, t5, "google", null)); t2.future.then$1$1(0, new A.LoginVM_fromStore___closure2(_this._handleLogin, t3), type$.void); } }, $signature: 38 }; A.LoginVM_fromStore___closure2.prototype = { call$1(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 154 }; A.LoginVM_fromStore_closure4.prototype = { call$3(context, completer, url) { return this.$call$body$LoginVM_fromStore_closure3(context, completer, url); }, $call$body$LoginVM_fromStore_closure3(context, completer, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, t1, exception, $async$exception; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; $async$goto = 6; return A._asyncAwait(A.GoogleOAuth_signOut(), $async$call$3); case 6: // returning from await. $async$goto = 7; return A._asyncAwait(A.GoogleOAuth_signUp(new A.LoginVM_fromStore__closure5(completer, context, $async$self.store, url, $async$self._handleLogin)), $async$call$3); case 7: // returning from await. signedIn = $async$result; if (!signedIn) { t1 = $.$get$navigatorKey(); t1.toString; completer.completeError$1(A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); completer.completeError$1(error); A.print("## onGoogleSignUpPressed: " + A.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 432 }; A.LoginVM_fromStore__closure5.prototype = { call$2(idToken, accessToken) { var _this = this, t1 = idToken.length === 0 || accessToken.length === 0, t2 = _this.completer, t3 = _this.context; if (t1) { A.GoogleOAuth_signOut(); t2.completeError$1(A.Localizations_of(t3, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else { _this.store.get$_dispatchers()[0].call$1(new A.OAuthSignUpRequest(t2, idToken, _this.url, accessToken, "google")); t2.future.then$1$1(0, new A.LoginVM_fromStore___closure1(_this._handleLogin, t3), type$.void); } }, $signature: 38 }; A.LoginVM_fromStore___closure1.prototype = { call$1(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 154 }; A.LoginVM_fromStore_closure5.prototype = { call$5$oneTimePassword$secret$url(context, completer, oneTimePassword, secret, url) { return this.$call$body$LoginVM_fromStore_closure2(context, completer, oneTimePassword, secret, url); }, call$2(context, completer) { return this.call$5$oneTimePassword$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure2(context, completer, oneTimePassword, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$next = [], $async$self = this, error, exception; var $async$call$5$oneTimePassword$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start try { A.WebUtils_microsoftLogin(new A.LoginVM_fromStore__closure3($async$self.store, completer, $async$self._formatApiUrl, url, secret, context, oneTimePassword, $async$self._handleLogin), new A.LoginVM_fromStore__closure4(completer)); } catch (exception) { error = A.unwrapException(exception); completer.completeError$1(error); A.print("## onMicrosoftLoginPressed: " + A.S(error)); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, $signature: 430 }; A.LoginVM_fromStore__closure3.prototype = { call$2(idToken, accessToken) { var _this = this, t1 = _this.completer, t2 = _this._formatApiUrl.call$1(_this.url), t3 = J.trim$0$s(_this.secret), t4 = _this.context, t5 = A.Theme_of(t4).platform === B.TargetPlatform_2 ? "ios" : "android"; _this.store.get$_dispatchers()[0].call$1(new A.OAuthLoginRequest(t1, null, idToken, accessToken, t2, t3, t5, "microsoft", null)); t1.future.then$1$1(0, new A.LoginVM_fromStore___closure0(_this._handleLogin, t4), type$.void); }, $signature: 38 }; A.LoginVM_fromStore___closure0.prototype = { call$1(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 154 }; A.LoginVM_fromStore__closure4.prototype = { call$1(error) { this.completer.completeError$1(error); }, $signature: 7 }; A.LoginVM_fromStore_closure6.prototype = { call$3(context, completer, url) { return this.$call$body$LoginVM_fromStore_closure1(context, completer, url); }, $call$body$LoginVM_fromStore_closure1(context, completer, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$next = [], $async$self = this, error, exception; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start try { A.WebUtils_microsoftLogin(new A.LoginVM_fromStore__closure1($async$self.store, url, completer, $async$self._handleLogin, context), new A.LoginVM_fromStore__closure2(completer)); } catch (exception) { error = A.unwrapException(exception); completer.completeError$1(error); A.print("## onMicrosoftSignUpPressed: " + A.S(error)); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 432 }; A.LoginVM_fromStore__closure1.prototype = { call$2(idToken, accessToken) { var _this = this, t1 = _this.completer; _this.store.get$_dispatchers()[0].call$1(new A.OAuthSignUpRequest(t1, idToken, _this.url, accessToken, "microsoft")); t1.future.then$1$1(0, new A.LoginVM_fromStore___closure(_this._handleLogin, _this.context), type$.void); }, $signature: 38 }; A.LoginVM_fromStore___closure.prototype = { call$1(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 154 }; A.LoginVM_fromStore__closure2.prototype = { call$1(error) { this.completer.completeError$1(error); }, $signature: 7 }; A.LoginVM_fromStore_closure7.prototype = { call$5$oneTimePassword$secret$url(context, completer, oneTimePassword, secret, url) { return this.$call$body$LoginVM_fromStore_closure0(context, completer, oneTimePassword, secret, url); }, call$2(context, completer) { return this.call$5$oneTimePassword$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure0(context, completer, oneTimePassword, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, credentials, error, t1, t2, t3, t4, t5, t6, exception, $async$exception; var $async$call$5$oneTimePassword$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; t1 = A._setArrayType([B.AppleIDAuthorizationScopes_0, B.AppleIDAuthorizationScopes_1], type$.JSArray_legacy_AppleIDAuthorizationScopes); t2 = A.Uri_parse(A.cleanApiUrl(A.WebUtils_apiUrl()), 0, null); $async$goto = 6; return A._asyncAwait(A.SignInWithApple_getAppleIDCredential(t1, new A.WebAuthenticationOptions("com.invoiceninja.client", t2)), $async$call$5$oneTimePassword$secret$url); case 6: // returning from await. credentials = $async$result; t1 = $async$self._formatApiUrl.call$1(url); t2 = J.trim$0$s(secret); t3 = $.$get$navigatorKey(); t3.toString; t3 = A.Theme_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3)).platform === B.TargetPlatform_2 ? "ios" : "android"; t4 = credentials.email; t5 = credentials.authorizationCode; t6 = credentials.identityToken; $async$self.store.get$_dispatchers()[0].call$1(new A.OAuthLoginRequest(completer, t4, t6, null, t1, t2, t3, "apple", t5)); completer.future.then$1$1(0, new A.LoginVM_fromStore__closure0($async$self._handleLogin, context), type$.void); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); completer.completeError$1(error); A.print("## onAppleLoginPressed: " + A.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, $signature: 430 }; A.LoginVM_fromStore__closure0.prototype = { call$1(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 154 }; A.LoginVM_fromStore_closure8.prototype = { call$3(context, completer, url) { return this.$call$body$LoginVM_fromStore_closure(context, completer, url); }, $call$body$LoginVM_fromStore_closure(context, completer, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, credentials, error, t1, t2, exception, $async$exception; var $async$call$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; t1 = A._setArrayType([B.AppleIDAuthorizationScopes_0, B.AppleIDAuthorizationScopes_1], type$.JSArray_legacy_AppleIDAuthorizationScopes); t2 = A.Uri_parse(A.WebUtils_apiUrl(), 0, null); $async$goto = 6; return A._asyncAwait(A.SignInWithApple_getAppleIDCredential(t1, new A.WebAuthenticationOptions("com.invoiceninja.client", t2)), $async$call$3); case 6: // returning from await. credentials = $async$result; t1 = credentials.identityToken; $async$self.store.get$_dispatchers()[0].call$1(new A.OAuthSignUpRequest(completer, t1, url, null, "apple")); completer.future.then$1$1(0, new A.LoginVM_fromStore__closure($async$self._handleLogin, context), type$.void); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); completer.completeError$1(error); A.print("## onAppleSignUpPressed: " + A.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$3, $async$completer); }, $signature: 432 }; A.LoginVM_fromStore__closure.prototype = { call$1(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 154 }; A.LoginVM_fromStore_closure1.prototype = { call$4$email$password(context, completer, email, password) { return this.$call$body$LoginVM_fromStore_closure6(context, completer, email, password); }, call$2(context, completer) { return this.call$4$email$password(context, completer, null, null); }, $call$body$LoginVM_fromStore_closure6(context, completer, email, password) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t1; var $async$call$4$email$password = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = J.trim$0$s(password); t1.get$_dispatchers()[0].call$1(new A.UserSignUpRequest(completer, t2, t3)); completer.future.then$1$1(0, new A.LoginVM_fromStore__closure7($async$self._handleLogin, context), type$.void); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$4$email$password, $async$completer); }, $signature: 2247 }; A.LoginVM_fromStore__closure7.prototype = { call$1(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 154 }; A.LoginVM_fromStore_closure0.prototype = { call$5$email$secret$url(context, completer, email, secret, url) { return this.$call$body$LoginVM_fromStore_closure7(context, completer, email, secret, url); }, call$2(context, completer) { return this.call$5$email$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure7(context, completer, email, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t4, t1; var $async$call$5$email$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = $async$self._formatApiUrl.call$1(url); t4 = J.trim$0$s(secret); t1.get$_dispatchers()[0].call$1(new A.RecoverPasswordRequest(completer, t2, t3, t4)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$5$email$secret$url, $async$completer); }, $signature: 2248 }; A.LoginVM_fromStore_closure.prototype = { call$7$email$oneTimePassword$password$secret$url(context, completer, email, oneTimePassword, password, secret, url) { return this.$call$body$LoginVM_fromStore_closure8(context, completer, email, oneTimePassword, password, secret, url); }, call$2(context, completer) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, null, null, null, null, null); }, call$5$email$secret$url(context, completer, email, secret, url) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, email, null, null, secret, url); }, call$5$oneTimePassword$secret$url(context, completer, oneTimePassword, secret, url) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, null, oneTimePassword, null, secret, url); }, call$4$email$password(context, completer, email, password) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, email, null, password, null, null); }, $call$body$LoginVM_fromStore_closure8(context, completer, email, oneTimePassword, password, secret, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t4, t5, t6, t7, t1; var $async$call$7$email$oneTimePassword$password$secret$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = J.trim$0$s(password); t4 = $async$self._formatApiUrl.call$1(url); t5 = J.trim$0$s(secret); t6 = A.Theme_of(context).platform === B.TargetPlatform_2 ? "ios" : "android"; t7 = J.trim$0$s(oneTimePassword); t1.get$_dispatchers()[0].call$1(new A.UserLoginRequest(completer, t2, t3, t4, t5, t6, t7)); completer.future.then$1$1(0, new A.LoginVM_fromStore__closure8($async$self._handleLogin, context), type$.void); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$7$email$oneTimePassword$password$secret$url, $async$completer); }, $signature: 2249 }; A.LoginVM_fromStore__closure8.prototype = { call$1(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 154 }; A.LoginVM_fromStore_closure2.prototype = { call$3$token(context, completer, token) { return this.$call$body$LoginVM_fromStore_closure5(context, completer, token); }, call$2(context, completer) { return this.call$3$token(context, completer, null); }, $call$body$LoginVM_fromStore_closure5(context, completer, token) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), prefs, t1; var $async$call$3$token = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.SharedPreferences_getInstance(), $async$call$3$token); case 2: // returning from await. prefs = $async$result; t1 = B.C_Utf8Codec.get$encoder().convert$1(token); prefs._setValue$3("String", "checksum", B.C_Base64Codec.get$encoder().convert$1(t1)); prefs._setValue$3("String", "url", "https://invoicing.co"); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$3$token, $async$completer); }, $signature: 2250 }; A.ClientListItem.prototype = { build$1(_, context) { var textStyle, t2, t3, t4, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, clientUIState = uiState.clientUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.client.matchesFilterValue$1(t1) : _null, listUIState = clientUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); if (A.getLayout(context) === B.AppLayout_desktop) { t2 = _this.client.id; t2 = t2 === (uiState.get$isEditing() ? clientUIState.editing.id : clientUIState.selectedId); } else t2 = false; t3 = A._lateReadCheck(store.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t4._list[t3].userCompany, _this.client, new A.LayoutBuilder(new A.ClientListItem_build_closure(_this, t1 != null, listUIState, state, textStyle, filterMatch), _null), t2, true, true, _null); }, get$user(receiver) { return this.user; } }; A.ClientListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ClientListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null), _null); else { t2 = t1.client; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.ClientListItem_build__closure0(t1)); t2 = t4; } t3 = t1.client; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t3.displayName; t7 = A._setArrayType([A.Text$(t7 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t4, _null, _null, _null)], t5); t8 = _this.filterMatch; if (t8 != null) t7.push(A.Text$(t8, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall, _null, _null, _null)); t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(t7, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.balance, context, t3.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, B.TextAlign_5, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ClientListItem_build__closure1(t1), new A.ClientListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ClientListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.client; t5 = t4.displayName; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(t4.balance, context, t4.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t5 = t5 != null ? A.Text$(t5, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Text$(t4.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.ClientListItem_build__closure4(t1), new A.ClientListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([t5, new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); t1 = t3; } return t1; }, $signature: 109 }; A.ClientListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.client, false, false); return t1; }, $signature: 0 }; A.ClientListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.client, false, true); return t1; }, $signature: 0 }; A.ClientListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.ClientListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.client], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.ClientListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.client, false, false); return t1; }, $signature: 0 }; A.ClientListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.client, false, true); return t1; }, $signature: 0 }; A.ClientListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.ClientListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientListBuilder_build_closure(), A.client_list_vm_ClientListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientListVM); } }; A.ClientListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.clientList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_client, new A.ClientListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.ClientPresenter(), t1, t3); }, $signature: 2252 }; A.ClientListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, clientId = J.$index$asx(t1.clientList, index), client = t1.clientMap._map$_map.$index(0, clientId), t2 = state.getUIState$1(B.EntityType_client).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = client.get$id(client); t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.ClientListItem(t4, client, t1.filter, t2, null); }, $signature: 2253 }; A.ClientListVM.prototype = {}; A.ClientListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ClientListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ClientListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortClients(field)); }, $signature: 5 }; A.ClientListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearClientMultiselect()); }, $signature: 9 }; A.ClientPdfView.prototype = { createState$0() { return new A._ClientPdfViewState(B.DateRange_thisQuarter, A.convertDateTimeToSqlDate(new A.DateTime(Date.now(), false).subtract$1(A.Duration$(365, 0, 0, 0, 0, 0))), A.convertDateTimeToSqlDate(null), B._StateLifecycle_0); } }; A._ClientPdfViewState.prototype = { initState$0() { this.super$State$initState(); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, loadPdf$0() { var _this = this; if (_this._client_pdf$_isLoading) return; _this.setState$1(new A._ClientPdfViewState_loadPdf_closure(_this)); _this._loadPDF$0().then$1$1(0, new A._ClientPdfViewState_loadPdf_closure0(_this), type$.Null).catchError$1(new A._ClientPdfViewState_loadPdf_closure1(_this)); }, _loadPDF$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, $async$next = [], $async$self = this, errorMessage, state, t3, t4, t5, t6, t7, startDate, endDate, data, exception, t1, response, t2; var $async$_loadPDF$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.viewModel; response = null; t2 = $async$self._framework$_element; t2.toString; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); t2 = state.get$credentials(state); t3 = $async$self._client_pdf$_dateRange; if (t3 != null) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t4 = t4._list; t6 = t4[t5].userCompany.company; t7 = $async$self._client_pdf$_startDate; startDate = A.calculateStartDate(t6, $async$self._client_pdf$_endDate, t7, t3, 0); t5 = t4[t5].userCompany.company; t4 = $async$self._client_pdf$_dateRange; t3 = $async$self._client_pdf$_startDate; endDate = A.calculateEndDate(t5, $async$self._client_pdf$_endDate, t3, t4, 0); } else { startDate = ""; endDate = ""; } if ($async$self._client_pdf$_dateRange !== B.DateRange_custom) { $async$self._client_pdf$_startDate = startDate; $async$self._client_pdf$_endDate = endDate; } data = B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["client_id", t1.client.id, "start_date", startDate, "end_date", endDate, "show_payments_table", $async$self._showPayments, "show_aging_table", $async$self._showAging, "status", $async$self._client_pdf$_status], type$.legacy_String, type$.legacy_Object)); $async$goto = 3; return A._asyncAwait(new A.WebClient().post$4$data$rawResponse(t2.url + "/client_statement", state.get$credentials(state).token, data, true), $async$_loadPDF$0); case 3: // returning from await. response = $async$result; if (response.statusCode >= 400) { errorMessage = A.S(response.statusCode) + ": " + A.S(response.reasonPhrase) + "\n\n"; try { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, J.$index$asx(B.C_JsonCodec.decode$2$reviver(0, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes), null), "message")); } catch (exception) { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes)); } t1 = $async$self._framework$_element; t1.toString; A.showErrorDialog(false, t1, errorMessage); throw A.wrapException(errorMessage); } $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_loadPDF$0, $async$completer); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, _s8_ = "load_pdf", state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), client = _this._widget.viewModel.client; client.get$hasEmailAddress(); t2 = A.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t3 = A.Text$(t1.get$payments(), _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t4 = _this._showPayments; t4 = A.CheckboxListTile$(state.get$accentColor(), _null, B.ListTileControlAffinity_0, _null, _null, new A._ClientPdfViewState_build_closure(_this), t3, t4); t3 = A.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "aging"); if (t7 == null) t7 = ""; t7 = A.Text$(t7, _null, _null, B.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t8 = _this._showAging; t8 = A.CheckboxListTile$(state.get$accentColor(), _null, B.ListTileControlAffinity_0, _null, _null, new A._ClientPdfViewState_build_closure0(_this), t7, t8); _this._widget.toString; t7 = A.getLayout(context); t9 = !state.prefState.enableDarkMode; t10 = !t9 || state.get$hasAccentColor() ? A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null) : A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = t1.get$dateRange(); t12 = _this._client_pdf$_dateRange; t13 = $.$get$_$values()._set$_set; t14 = A._instanceType(t13)._eval$1("EfficientLengthMappedIterable*>"); t12 = A.AppDropdownButton$(_null, _null, true, A.List_List$of(new A.EfficientLengthMappedIterable(t13, new A._ClientPdfViewState_build_closure1(t1), t14), true, t14._eval$1("Iterable.E")), _null, t11, new A._ClientPdfViewState_build_closure2(_this), _null, false, t12, type$.legacy_DateRange); t9 = !t9 || state.get$hasAccentColor() ? A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null) : A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = t1.get$status(t1); t13 = _this._client_pdf$_status; t14 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t15 = type$.JSArray_legacy_Widget; t13 = A._setArrayType([new A.Flexible(1, B.FlexFit_1, new A.Theme(t10, t12, _null), _null), new A.SizedBox(16, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, new A.Theme(t9, A.AppDropdownButton$(_null, _null, true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["all", "paid", "unpaid"], type$.JSArray_legacy_String), new A._ClientPdfViewState_build_closure3(t1), t14), true, t14._eval$1("ListIterable.E")), _null, t11, new A._ClientPdfViewState_build_closure4(_this), _null, false, t13, type$.legacy_String), _null), _null)], t15); if (A.getLayout(context) === B.AppLayout_desktop) B.JSArray_methods.addAll$1(t13, A._setArrayType([new A.Theme(t2, new A.Flexible(1, B.FlexFit_1, t4, _null), _null), new A.Theme(t3, new A.Flexible(1, B.FlexFit_1, t8, _null), _null)], t15)); t2 = A.Row$(t13, B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); t15 = A._setArrayType([], t15); t3 = t1.get$download(t1); t15.push(new A.AppTextButton(t3, _this._client_pdf$_response == null ? _null : new A._ClientPdfViewState_build_closure5(_this, t1, client), true, _null, _null)); if (A.getLayout(context) === B.AppLayout_desktop) t15.push(A.TextButton$(false, A.Text$(t1.get$close(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A._ClientPdfViewState_build_closure6(client), _null)); t2 = A.AppBar$(t15, _null, t7 === B.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, 1, _null); t3 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([], t3); if (_this._client_pdf$_dateRange === B.DateRange_custom) { t7 = A.Theme_of(context).backgroundColor; t8 = A.Container$(_null, A.DatePicker$(false, _null, _null, t1.get$startDate(), _null, new A._ClientPdfViewState_build_closure7(_this), _this._client_pdf$_startDate, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_16_8_16_8, _null, _null, 180); t1 = A.Container$(_null, A.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new A._ClientPdfViewState_build_closure8(_this), _this._client_pdf$_endDate, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_16_8_16_8, _null, _null, 180); t6 = J.$index$asx(t5.$index(0, t6), _s8_); t5 = t6 == null ? J.$index$asx(t5.$index(0, "en"), _s8_) : t6; t4.push(A.Container$(_null, A.Wrap$(B.WrapAlignment_2, A._setArrayType([t8, t1, new A.Padding(B.EdgeInsets_16_0_16_0, new A.AppButton(_null, _null, t5, new A._ClientPdfViewState_build_closure9(_this), _null, _null), _null)], t3), B.Clip_0, B.WrapCrossAlignment_0, 0), B.Clip_0, t7, _null, _null, _null, _null, _null, _null, _null, _null, _null, 1 / 0)); } t4.push(A.Expanded$(_this._client_pdf$_isLoading || _this._client_pdf$_response == null ? new A.LoadingIndicator(_null, false, _null) : A.PdfPreview$(new A._ClientPdfViewState_build_closure10(_this), false, false, false, 800, _null), 1)); return A.Scaffold$(t2, B.Color_4292927712, A.Column$(t4, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, _null, _null, _null); } }; A._ClientPdfViewState_loadPdf_closure.prototype = { call$0() { this.$this._client_pdf$_isLoading = true; }, $signature: 1 }; A._ClientPdfViewState_loadPdf_closure0.prototype = { call$1(response) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_loadPdf__closure0(t1, response)); }, $signature: 2254 }; A._ClientPdfViewState_loadPdf__closure0.prototype = { call$0() { var t1 = this.$this; t1._client_pdf$_response = this.response; t1._client_pdf$_isLoading = false; }, $signature: 1 }; A._ClientPdfViewState_loadPdf_closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_loadPdf__closure(t1)); }, $signature: 3 }; A._ClientPdfViewState_loadPdf__closure.prototype = { call$0() { this.$this._client_pdf$_isLoading = false; }, $signature: 1 }; A._ClientPdfViewState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure4(t1)); }, $signature: 20 }; A._ClientPdfViewState_build__closure4.prototype = { call$0() { var t1 = this.$this; t1._showPayments = !t1._showPayments; t1.loadPdf$0(); }, $signature: 1 }; A._ClientPdfViewState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure3(t1)); }, $signature: 20 }; A._ClientPdfViewState_build__closure3.prototype = { call$0() { var t1 = this.$this; t1._showAging = !t1._showAging; t1.loadPdf$0(); }, $signature: 1 }; A._ClientPdfViewState_build_closure2.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure2(t1, value)); if (!J.$eq$(value, B.DateRange_custom)) t1.loadPdf$0(); }, $signature: 7 }; A._ClientPdfViewState_build__closure2.prototype = { call$0() { this.$this._client_pdf$_dateRange = this.value; }, $signature: 1 }; A._ClientPdfViewState_build_closure1.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.legacy_DateRange); }, $signature: 317 }; A._ClientPdfViewState_build_closure4.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure1(t1, value)); t1.loadPdf$0(); }, $signature: 7 }; A._ClientPdfViewState_build__closure1.prototype = { call$0() { this.$this._client_pdf$_status = this.value; }, $signature: 1 }; A._ClientPdfViewState_build_closure3.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A._ClientPdfViewState_build_closure5.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, $async$self.localization.localeCode), "statement"); if (t1 == null) t1 = ""; A.WebUtils_downloadBinaryFile(t1 + "_" + $async$self.client.number + ".pdf", $async$self.$this._client_pdf$_response.bodyBytes); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._ClientPdfViewState_build_closure6.prototype = { call$0() { A.viewEntity(false, this.client, null, false); }, $signature: 1 }; A._ClientPdfViewState_build_closure7.prototype = { call$2(value, _) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure0(t1, value)); }, $signature: 53 }; A._ClientPdfViewState_build__closure0.prototype = { call$0() { this.$this._client_pdf$_startDate = this.value; }, $signature: 1 }; A._ClientPdfViewState_build_closure8.prototype = { call$2(value, _) { var t1 = this.$this; t1.setState$1(new A._ClientPdfViewState_build__closure(t1, value)); }, $signature: 53 }; A._ClientPdfViewState_build__closure.prototype = { call$0() { this.$this._client_pdf$_endDate = this.value; }, $signature: 1 }; A._ClientPdfViewState_build_closure9.prototype = { call$0() { return this.$this.loadPdf$0(); }, $signature: 0 }; A._ClientPdfViewState_build_closure10.prototype = { call$1(format) { return this.$this._client_pdf$_response.bodyBytes; }, $signature: 246 }; A.ClientPdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientPdfScreen_build_closure(this), new A.ClientPdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientPdfVM); } }; A.ClientPdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, clientId = t1.clientUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.ClientPdfVM(state, t2._list[t1].clientState.$get$1(0, clientId)); }, $signature: 2256 }; A.ClientPdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.ClientPdfView(vm, true, new A.ValueKey("__client_pdf_" + vm.client.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2257 }; A.ClientPdfVM.prototype = {}; A.ClientPresenter.prototype = { getField$2$context$field(context, field) { var t1, t2, _this = this, _null = null, client = type$.legacy_ClientEntity._as(_this.entity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); switch (field) { case "name": return A.Text$(client.displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": return A.Text$(client.get$primaryContact().get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_email": return new A.CopyToClipboard(_null, client.get$primaryContact().email, true, new A.ClientPresenter_getField_closure(client), _null, _null); case "contact_phone": return A.Text$(client.get$primaryContact().phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address1": return A.Text$(client.address1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address2": return A.Text$(client.address2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return A.Text$(client.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "id_number": return A.Text$(client.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_login_at": t1 = client.lastLogin; return A.Text$(t1 === 0 ? "" : A.formatDate(A.convertTimestampToDate(t1).toIso8601String$0(), context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "balance": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(client.balance, context, client.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "credit_balance": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(client.creditBalance, context, client.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "paid_to_date": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(client.paidToDate, context, client.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "language": t1 = state.staticState.languageMap; t2 = client.settings.languageId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency": t1 = state.staticState.currencyMap; t2 = client.settings.currencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vat_number": return A.Text$(client.vatNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "state": return A.Text$(client.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "phone": return A.Text$(client.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "website": return A.Text$(client.website, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, client.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, client.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, client.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, client.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(client.publicNotes, _null); case "private_notes": return new A.TableTooltip(client.privateNotes, _null); case "task_rate": return A.Text$(A.formatNumber(client.settings.defaultTaskRate, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + client.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "group": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].groupState.$get$1(0, client.groupId), client, _null); case "contacts": t1 = client.contacts._list; return new A.TableTooltip(new A.MappedListIterable(t1, new A.ClientPresenter_getField_closure0(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>")).join$1(0, "\n"), _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.ClientPresenter_getField_closure.prototype = { call$0() { return A.launch("mailto:" + this.client.get$primaryContact().email, null, false); }, $signature: 26 }; A.ClientPresenter_getField_closure0.prototype = { call$1(contact) { return contact.get$fullName(); }, $signature: 2258 }; A.ClientScreen.prototype = { build$1(_, context) { var company, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.clientUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.clientList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("address1"); t7.push("address2"); t7.push("country"); t7.push("id_number"); t7.push("vat_number"); t7.push("state"); t7.push("phone"); t7.push("website"); t7.push("language"); t7.push("currency"); t7.push("task_rate"); t7.push("public_notes"); t7.push("private_notes"); t7.push("credit_balance"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("documents"); t7.push("group"); t7.push("contact_phone"); t7.push("contacts"); t8 = A._setArrayType(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], t6); t6 = A._setArrayType(["name", "id_number", "balance", "updated_at"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("client1", true), company.getCustomFieldValues$2$excludeBlank("client2", true), company.getCustomFieldValues$2$excludeBlank("client3", true), company.getCustomFieldValues$2$excludeBlank("client4", true), t8, B.EntityType_client, false, B.List_empty17, new A.ClientScreen_build_closure(store), new A.ClientScreen_build_closure0(store), new A.ClientScreen_build_closure1(store), new A.ClientScreen_build_closure2(store), new A.ClientScreen_build_closure3(store), new A.ClientScreen_build_closure4(store), new A.ClientScreen_build_closure5(store), _null, t6, B.List_empty18, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_client) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "client_fab", false, new A.ClientScreen_build_closure6(context), t1.get$newClient()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_client, t2, new A.ClientScreen_build_closure7(store), t5, _null, _null, new A.ClientScreen_build_closure8(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.ClientListBuilder(_null), t7, B.EntityType_client, t1, 0, _null, new A.ClientScreen_build_closure9(store), new A.ClientScreen_build_closure10(store)); } }; A.ClientScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartClientMultiselect()); }, $signature: 9 }; A.ClientScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterClients(value)); }, $signature: 11 }; A.ClientScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByState(state)); }, $signature: 27 }; A.ClientScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.clientUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearClientMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartClientMultiselect()); }, $signature: 1 }; A.ClientScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortClients(value)); }, $signature: 11 }; A.ClientScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByState(state)); }, $signature: 27 }; A.ClientScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.clientUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearClientMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartClientMultiselect()); }, $signature: 1 }; A.ClientScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByCustom1(value)); }, $signature: 5 }; A.ClientScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByCustom2(value)); }, $signature: 5 }; A.ClientScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByCustom3(value)); }, $signature: 5 }; A.ClientScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterClientsByCustom4(value)); }, $signature: 5 }; A.ClientScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_client); }, $signature: 1 }; A.ClientScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientScreenBuilder_build_closure(), A.client_screen_vm_ClientScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientScreenVM); } }; A.ClientScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ClientScreen(vm, null); }, $signature: 2260 }; A.ClientScreenVM.prototype = {}; A.ClientEdit.prototype = { createState$0() { return new A._ClientEditState(null, null, B._StateLifecycle_0); } }; A._ClientEditState.prototype = { initState$0() { this.super$State$initState(); this._client_edit$_controller = A.TabController$(null, 0, 6, this); }, dispose$0(_) { this._client_edit$_controller.dispose$0(0); this.super$__ClientEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_client), t2 = client.get$isNew() ? t1.get$newClient() : t1.get$editClient(), t3 = type$.JSArray_legacy_Widget; t1 = A.TabBar$(_this._client_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$settings()), A.Tab$(_null, t1.get$billingAddress()), A.Tab$(_null, t1.get$shippingAddress(t1))], t3)); t4 = $.$get$_ClientEditState__formKey(); t5 = type$.ValueKey_legacy_String; t6 = "__client_" + client.id; t7 = "" + client.updatedAt; if (isFullscreen) t3 = new A.ClientEditDesktop(viewModel, new A.ValueKey(t6 + "_" + t7 + "__", t5)); else { t8 = _this._client_edit$_controller; t5 = A.TabBarView$(A._setArrayType([new A.ScrollableListView(A._setArrayType([new A.ClientEditDetails(viewModel, _null)], t3), _null, _null, _null), new A.ClientEditContactsScreen(viewModel, _null), new A.ScrollableListView(A._setArrayType([new A.ClientEditNotes(viewModel, _null)], t3), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.ClientEditSettings(viewModel, _null)], t3), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.ClientEditBillingAddress(viewModel, _null)], t3), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.ClientEditShippingAddress(viewModel, _null)], t3), _null, _null, _null)], t3), t8, new A.ValueKey(t6 + "_" + t7 + "__", t5)); t3 = t5; } return A.EditScaffold$(_null, t1, A.Form$(_null, t3, t4), new A.ClientEditFooter(client, _null), client, _null, isFullscreen, _null, new A._ClientEditState_build_closure(viewModel), new A._ClientEditState_build_closure0(_this, viewModel), _null, t2); } }; A._ClientEditState_build_closure.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._ClientEditState_build_closure0.prototype = { call$1(context) { var isValid = $.$get$_ClientEditState__formKey().get$currentState().validate$0(); this.$this.setState$1(new A._ClientEditState_build__closure()); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._ClientEditState_build__closure.prototype = { call$0() { }, $signature: 1 }; A.__ClientEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ClientEditBillingAddress.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ClientEditBillingAddressState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ClientEditBillingAddressState.prototype = { didChangeDependencies$0() { var client, _this = this, t1 = _this._client_edit_billing_address$_address1Controller, t2 = _this._client_edit_billing_address$_address2Controller, t3 = _this._client_edit_billing_address$_cityController, t4 = _this._client_edit_billing_address$_stateController, t5 = _this._client_edit_billing_address$_postalCodeController, t6 = A._setArrayType([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._client_edit_billing_address$_controllers = t6; B.JSArray_methods.forEach$1(t6, new A.ClientEditBillingAddressState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.address1); t2.set$text(0, client.address2); t3.set$text(0, client.city); t4.set$text(0, client.state); t5.set$text(0, client.postalCode); B.JSArray_methods.forEach$1(_this._client_edit_billing_address$_controllers, new A.ClientEditBillingAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._client_edit_billing_address$_controllers, new A.ClientEditBillingAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_billing_address$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new A.ClientEditBillingAddressState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_billing_address$_debouncer.run$1(new A.ClientEditBillingAddressState__onChanged_closure0(viewModel, client)); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_client), t2 = isFullscreen ? B.EdgeInsets_6_12_12_0 : _null; if (isFullscreen) { t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "billing_address1"); if (t3 == null) t3 = ""; } else t3 = t1.get$address1(); t4 = viewModel.onSavePressed; t3 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_9_null_null, t3, _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t5 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$address2(), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t6 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_cityController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$city(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t7 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_stateController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$state(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t4 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t8 = $.$get$memoizedCountryList().call$1(viewModel.staticState.countryMap); t9 = t1.get$country(t1); t9 = A._setArrayType([t3, t5, t6, t7, t4, A.EntityDropdown$(true, false, false, client.countryId, t8, _null, B.EntityType_country, B.List_empty0, t9, _null, _null, new A.ClientEditBillingAddressState_build_closure(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget); if (client.shippingAddress1.length === 0) if (client.shippingAddress2.length === 0) if (client.shippingCity.length === 0) if (client.shippingState.length === 0) if (client.shippingPostalCode.length === 0) { t3 = client.shippingCountryId; t3 = t3.length !== 0; } else t3 = true; else t3 = true; else t3 = true; else t3 = true; else t3 = true; if (t3 && client.get$areAddressesDifferent()) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "copy_shipping"); if (t1 == null) t1 = ""; t9.push(new A.AppButton(_null, _null, t1.toUpperCase(), new A.ClientEditBillingAddressState_build_closure0(_this, viewModel), _null, _null)); } return A.FormCard$(_null, t9, _null, B.CrossAxisAlignment_3, false, _null, true, t2); } }; A.ClientEditBillingAddressState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_billing_address$_onChanged()); }, $signature: 12 }; A.ClientEditBillingAddressState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_billing_address$_onChanged()); }, $signature: 12 }; A.ClientEditBillingAddressState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_billing_address$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ClientEditBillingAddressState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_billing_address$_address1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_address1 = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_address2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_address2 = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_cityController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_city = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_stateController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_state = t2; t1 = J.trim$0$s(t1._client_edit_billing_address$_postalCodeController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_postalCode = t1; return b; }, $signature: 48 }; A.ClientEditBillingAddressState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; A.ClientEditBillingAddressState_build_closure.prototype = { call$1(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditBillingAddressState_build__closure0(country))); }, $signature: 61 }; A.ClientEditBillingAddressState_build__closure0.prototype = { call$1(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._client_model$_countryId = t1; return b; }, $signature: 48 }; A.ClientEditBillingAddressState_build_closure0.prototype = { call$0() { this.viewModel.copyShippingAddress.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ClientEditBillingAddressState_build__closure(this.$this)); }, $signature: 1 }; A.ClientEditBillingAddressState_build__closure.prototype = { call$1(duration) { this.$this.didChangeDependencies$0(); }, $signature: 36 }; A.ClientEditContacts.prototype = { createState$0() { return new A._ClientEditContactsState(B._StateLifecycle_0); } }; A._ClientEditContactsState.prototype = { _client_edit_contacts$_showContactEditor$2(contact, context) { A.showDialog(null, true, new A._ClientEditContactsState__showContactEditor_closure(this, contact), context, null, true, type$.legacy_ResponsivePadding); }, build$1(_, context) { var t3, contacts, contact, t4, t5, t6, children, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, client = viewModel.client, isFullscreen = t2.clientViewModel.state.prefState.isEditorFullScreen$1(B.EntityType_client); t2 = client.contacts._list; if (t2.length > 1) { t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,ContactListTile0*>"); contacts = A.List_List$of(new A.MappedListIterable(t2, new A._ClientEditContactsState_build_closure(_this, context), t3), true, t3._eval$1("ListIterable.E")); } else { contact = t2[0]; t3 = _this._widget.clientViewModel; t4 = contact.get$entityType().toString$0(0); t5 = contact.id; t6 = t2.length; contacts = A._setArrayType([new A.ContactEditDetails(B.JSArray_methods.indexOf$2(t2, contact, 0), contact, viewModel, t3, t6 > 1, new A.ValueKey("__" + t4 + "__" + t5 + "__", type$.ValueKey_String))], type$.JSArray_legacy_Widget); } contact = viewModel.contact; contact = B.JSArray_methods.contains$1(t2, contact) ? contact : _null; if (contact != null && !contact.$eq(0, _this.selectedContact)) { _this.selectedContact = contact; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._ClientEditContactsState_build_closure0(_this, contact, context)); } children = A._setArrayType([], type$.JSArray_legacy_Widget); B.JSArray_methods.addAll$1(children, contacts); t1 = t2.length === 1 ? t1.get$addSecondContact() : t1.get$addContact(); children.push(new A.Padding(B.EdgeInsets_25_0_25_6, new A.AppButton(_null, _null, t1.toUpperCase(), new A._ClientEditContactsState_build_closure1(viewModel), _null, _null), _null)); return isFullscreen ? A.Column$(children, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1) : new A.ScrollableListView(children, _null, _null, _null); } }; A._ClientEditContactsState__showContactEditor_closure.prototype = { call$1(context) { var t2, t3, t4, t5, t6, t1 = this.$this._widget, viewModel = t1.viewModel, client = viewModel.client; t1 = t1.clientViewModel; t2 = this.contact; t3 = t2.get$entityType().toString$0(0); t4 = t2.id; t5 = client.contacts._list; t6 = t5.length; return new A.ContactEditDetails(B.JSArray_methods.indexOf$2(t5, B.JSArray_methods.firstWhere$2$orElse(t5, new A._ClientEditContactsState__showContactEditor__closure(t2), null), 0), t2, viewModel, t1, t6 > 1, new A.ValueKey("__" + t3 + "__" + t4 + "__", type$.ValueKey_String)); }, $signature: 2261 }; A._ClientEditContactsState__showContactEditor__closure.prototype = { call$1(c) { return c.id === this.contact.id; }, $signature: 144 }; A._ClientEditContactsState_build_closure.prototype = { call$1(contact) { return new A.ContactListTile0(new A._ClientEditContactsState_build__closure(this.$this, contact, this.context), contact, null); }, $signature: 2262 }; A._ClientEditContactsState_build__closure.prototype = { call$0() { return this.$this._client_edit_contacts$_showContactEditor$2(this.contact, this.context); }, $signature: 0 }; A._ClientEditContactsState_build_closure0.prototype = { call$1(duration) { this.$this._client_edit_contacts$_showContactEditor$2(this.contact, this.context); }, $signature: 36 }; A._ClientEditContactsState_build_closure1.prototype = { call$0() { return this.viewModel.onAddContactPressed.call$0(); }, $signature: 9 }; A.ContactListTile0.prototype = { build$1(_, context) { var _null = null, t1 = A.Theme_of(context).canvasColor, t2 = this.contact, t3 = t2.get$fullName().length !== 0 ? A.Text$(t2.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null) : A.Text$(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$blankContact(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontStyle_1, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t4 = t2.email; return A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_0_4_0_4, A.Column$(A._setArrayType([A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, this.onTap, false, _null, _null, A.Text$(t4.length !== 0 ? t4 : t2.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null), _null), A.Divider$(_null, 1, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); }, get$contact() { return this.contact; } }; A.ContactEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ContactEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); }, get$contact() { return this.contact; } }; A.ContactEditDetailsState.prototype = { _client_edit_contacts$_onDoneContactPressed$0() { var t2, _this = this, t1 = _this._widget; if (t1.isDialog) { t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onDoneContactPressed.call$1(t2); t2 = _this._framework$_element; t2.toString; A.Navigator_of(t2, false).pop$0(0); } else { t1 = t1.clientViewModel; t2 = _this._framework$_element; t2.toString; t1.onSavePressed.call$1(t2); } }, didChangeDependencies$0() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, contact, _this = this; if (_this._client_edit_contacts$_controllers.length !== 0) return; t1 = _this._client_edit_contacts$_firstNameController; t2 = _this._client_edit_contacts$_lastNameController; t3 = _this._client_edit_contacts$_emailController; t4 = _this._client_edit_contacts$_passwordController; t5 = _this._client_edit_contacts$_phoneController; t6 = _this._client_edit_contacts$_custom1Controller; t7 = _this._client_edit_contacts$_custom2Controller; t8 = _this._client_edit_contacts$_custom3Controller; t9 = _this._client_edit_contacts$_custom4Controller; t10 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9], type$.JSArray_legacy_TextEditingController); _this._client_edit_contacts$_controllers = t10; B.JSArray_methods.forEach$1(t10, new A.ContactEditDetailsState_didChangeDependencies_closure(_this)); contact = _this._contact = _this._widget.contact; t1.set$text(0, contact.firstName); t2.set$text(0, contact.lastName); t3.set$text(0, contact.email); t5.set$text(0, contact.phone); t4.set$text(0, contact.password); t6.set$text(0, contact.customValue1); t7.set$text(0, contact.customValue2); t8.set$text(0, contact.customValue3); t9.set$text(0, contact.customValue4); B.JSArray_methods.forEach$1(_this._client_edit_contacts$_controllers, new A.ContactEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._client_edit_contacts$_controllers, new A.ContactEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_contacts$_onChanged$0() { var _this = this, t1 = _this._widget, viewModel = t1.viewModel, contact = _this._contact = t1.contact.rebuild$1(new A.ContactEditDetailsState__onChanged_closure(_this)); if (!contact.$eq(0, _this._widget.contact)) _this._client_edit_contacts$_debouncer.run$1(new A.ContactEditDetailsState__onChanged_closure0(_this, viewModel, contact)); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, column, _this = this, _null = null, _s15_ = "add_to_invoices", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, isFullscreen = t2.clientViewModel.state.prefState.isEditorFullScreen$1(B.EntityType_client); t2 = A.DecoratedFormField$(false, _null, _this._widget.isDialog, false, _this._client_edit_contacts$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t1.get$firstName(t1), _null, _null, false, _null, _null, new A.ContactEditDetailsState_build_closure(_this), true, _null, _null, B.TextAlign_4, new A.ContactEditDetailsState_build_closure0(viewModel, context)); t3 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t1.get$lastName(t1), _null, _null, false, _null, _null, new A.ContactEditDetailsState_build_closure1(_this), true, _null, _null, B.TextAlign_4, new A.ContactEditDetailsState_build_closure2(viewModel, context)); t4 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t1.get$email(t1), _null, _null, false, _null, _null, new A.ContactEditDetailsState_build_closure3(_this), true, _null, _null, B.TextAlign_4, new A.ContactEditDetailsState_build_closure4(t1)); t5 = viewModel.company.settings.enablePortalPassword; t5 = t5 === true ? A.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_passwordController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_7_null_null, t1.get$password(t1), _null, _null, true, _null, _null, new A.ContactEditDetailsState_build_closure5(_this), true, _null, _null, B.TextAlign_4, new A.ContactEditDetailsState_build_closure6(t1)) : new A.SizedBox(_null, _null, _null, _null); t6 = A.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, new A.ContactEditDetailsState_build_closure7(_this), true, _null, _null, B.TextAlign_4, _null); t7 = _this._widget.contact; t8 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([t2, t3, t4, t5, t6, new A.CustomField(_this._client_edit_contacts$_custom1Controller, _null, new A.ContactEditDetailsState_build_closure8(_this), "contact1", t7.customValue1, false, _null), new A.CustomField(_this._client_edit_contacts$_custom2Controller, _null, new A.ContactEditDetailsState_build_closure9(_this), "contact2", t7.customValue2, false, _null), new A.CustomField(_this._client_edit_contacts$_custom3Controller, _null, new A.ContactEditDetailsState_build_closure10(_this), "contact3", t7.customValue3, false, _null), new A.CustomField(_this._client_edit_contacts$_custom4Controller, _null, new A.ContactEditDetailsState_build_closure11(_this), "contact4", t7.customValue4, false, _null)], t8); if (_this._widget.isDialog) { t2 = A.Theme_of(context).colorScheme; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = J.$index$asx(t3.$index(0, t1.localeCode), _s15_); t7.push(new A.Padding(B.EdgeInsets_0_20_0_0, A.SwitchListTile$(t2.secondary, _null, new A.ContactEditDetailsState_build_closure12(_this, viewModel), _null, _null, A.Text$(t4 == null ? J.$index$asx(t3.$index(0, "en"), _s15_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._contact.sendEmail), _null)); } column = A.Column$(t7, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); if (_this._widget.isDialog) { t2 = A.SingleChildScrollView$(column, _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t2 = A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ContactEditDetailsState_build_closure13(_this, context), _null), A.TextButton$(false, A.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ContactEditDetailsState_build_closure14(_this), _null)], t8), B.EdgeInsets_0_0_0_0, _null, t2, B.EdgeInsets_24_20_24_24, _null, _null, _null); t1 = t2; } else t1 = A.FormCard$(column, _null, _null, _null, false, _null, false, isFullscreen ? B.EdgeInsets_6_12_6_0 : _null); return t1; } }; A.ContactEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_contacts$_onChanged()); }, $signature: 12 }; A.ContactEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_contacts$_onChanged()); }, $signature: 12 }; A.ContactEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_contacts$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ContactEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_contacts$_firstNameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_firstName = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_lastNameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_lastName = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_emailController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_email = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_passwordController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_password = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_phoneController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_phone = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue1 = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue2 = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom3Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue3 = t2; t1 = J.trim$0$s(t1._client_edit_contacts$_custom4Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue4 = t1; return b; }, $signature: 363 }; A.ContactEditDetailsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChangedContact.call$2(this.contact, this.$this._widget.index); }, $signature: 1 }; A.ContactEditDetailsState_build_closure0.prototype = { call$1(val) { return !this.viewModel.client.get$hasNameSet() ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; A.ContactEditDetailsState_build_closure.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure2.prototype = { call$1(val) { return !this.viewModel.client.get$hasNameSet() ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; A.ContactEditDetailsState_build_closure1.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure4.prototype = { call$1(value) { return value.length !== 0 && !B.JSString_methods.contains$1(value, "@") ? this.localization.get$emailIsInvalid() : null; }, $signature: 15 }; A.ContactEditDetailsState_build_closure3.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure6.prototype = { call$1(value) { var t1 = value.length; return t1 !== 0 && t1 < 8 ? this.localization.get$passwordIsTooShort() : null; }, $signature: 15 }; A.ContactEditDetailsState_build_closure5.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure7.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure8.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure9.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure10.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure11.prototype = { call$1(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 30 }; A.ContactEditDetailsState_build_closure12.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A.ContactEditDetailsState_build__closure0(t1, value)); this.viewModel.onChangedContact.call$2(t1._contact.rebuild$1(new A.ContactEditDetailsState_build__closure1(value)), t1._widget.index); }, $signature: 20 }; A.ContactEditDetailsState_build__closure0.prototype = { call$0() { var t1 = this.$this; return t1._contact = t1._contact.rebuild$1(new A.ContactEditDetailsState_build___closure(this.value)); }, $signature: 445 }; A.ContactEditDetailsState_build___closure.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_sendEmail = this.value; return b; }, $signature: 363 }; A.ContactEditDetailsState_build__closure1.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_sendEmail = this.value; return b; }, $signature: 363 }; A.ContactEditDetailsState_build_closure13.prototype = { call$0() { var t1 = this.context; return A.confirmCallback(false, new A.ContactEditDetailsState_build__closure(this.$this, t1), t1, null, false, null); }, $signature: 0 }; A.ContactEditDetailsState_build__closure.prototype = { call$1(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveContactPressed.call$1(t1.index); A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 11 }; A.ContactEditDetailsState_build_closure14.prototype = { call$0() { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 0 }; A.ClientEditContactsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientEditContactsScreen_build_closure(this), new A.ClientEditContactsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientEditContactsVM); } }; A.ClientEditContactsScreen_build_closure0.prototype = { call$1(store) { return A.ClientEditContactsVM_ClientEditContactsVM$fromStore(store); }, $signature: 2263 }; A.ClientEditContactsScreen_build_closure.prototype = { call$2(context, vm) { return new A.ClientEditContacts(vm, this.$this.viewModel, null); }, $signature: 2264 }; A.ClientEditContactsVM.prototype = { get$company() { return this.company; }, get$contact() { return this.contact; } }; A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure.prototype = { call$0() { var contact = A.ClientContactEntity_ClientContactEntity(), t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.AddContact(contact)); t1.get$_dispatchers()[0].call$1(new A.EditContact(contact)); }, $signature: 1 }; A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0.prototype = { call$1(index) { return this.store.get$_dispatchers()[0].call$1(new A.DeleteContact(index)); }, $signature: 180 }; A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.EditContact(null)); }, $signature: 14 }; A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2.prototype = { call$2(contact, index) { this.store.get$_dispatchers()[0].call$1(new A.UpdateContact(index, contact)); }, $signature: 2265 }; A.ClientEditDesktop.prototype = { build$1(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ClientEditDetails(t1, _null), new A.ClientEditNotes(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ClientEditContactsScreen(t1, _null), new A.ClientEditSettings(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ClientEditBillingAddress(t1, _null), new A.ClientEditShippingAddress(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1)], t2), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 12, _null, _null)], t2), _null, _null, _null); } }; A.ClientEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ClientEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ClientEditDetailsState.prototype = { didChangeDependencies$0() { var client, _this = this, t1 = _this._client_edit_details$_numberController, t2 = _this._client_edit_details$_nameController, t3 = _this._client_edit_details$_idNumberController, t4 = _this._client_edit_details$_vatNumberController, t5 = _this._client_edit_details$_websiteController, t6 = _this._client_edit_details$_phoneController, t7 = _this._client_edit_details$_custom1Controller, t8 = _this._client_edit_details$_custom2Controller, t9 = _this._client_edit_details$_custom3Controller, t10 = _this._client_edit_details$_custom4Controller, t11 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10], type$.JSArray_legacy_TextEditingController); _this._client_edit_details$_controllers = t11; B.JSArray_methods.forEach$1(t11, new A.ClientEditDetailsState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.number); t2.set$text(0, client.name); t3.set$text(0, client.idNumber); t4.set$text(0, client.vatNumber); t5.set$text(0, client.website); t6.set$text(0, client.phone); t7.set$text(0, client.customValue1); t8.set$text(0, client.customValue2); t9.set$text(0, client.customValue3); t10.set$text(0, client.customValue4); t10 = _this._client_edit_details$_controllers; (t10 && B.JSArray_methods).forEach$1(t10, new A.ClientEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._client_edit_details$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ClientEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_details$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new A.ClientEditDetailsState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_details$_debouncer.run$1(new A.ClientEditDetailsState__onChanged_closure0(viewModel, client)); }, build$1(_, context) { var t5, t6, t7, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, client = viewModel.client, t2 = state.prefState.isEditorFullScreen$1(B.EntityType_client) ? B.EdgeInsets_12_12_6_0 : _null, t3 = viewModel.onSavePressed, t4 = t1.get$name(t1); t4 = A._setArrayType([A.DecoratedFormField$(false, _null, true, false, _this._client_edit_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t4, _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, new A.ClientEditDetailsState_build_closure(viewModel, context))], type$.JSArray_legacy_Widget); if (!client.get$isNew()) t4.push(A.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$number(t1), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t5 = $.$get$memoizedGroupList(); t6 = state.uiState.selectedCompanyIndex; t7 = state.userCompanyStates._list; if (J.get$isNotEmpty$asx(t5.call$1(t7[t6].groupState.map))) { t5 = $.$get$memoizedGroupList().call$1(t7[t6].groupState.map); t4.push(A.DynamicSelector$(true, client.groupId, t5, B.EntityType_group, _null, _null, new A.ClientEditDetailsState_build_closure0(viewModel, client), _null)); } t4.push(new A.UserPicker(client.assignedUserId, new A.ClientEditDetailsState_build_closure1(viewModel, client), _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$idNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$vatNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_websiteController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t1.get$website(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(new A.CustomField(_this._client_edit_details$_custom1Controller, _null, t3, "client1", client.customValue1, false, _null)); t4.push(new A.CustomField(_this._client_edit_details$_custom2Controller, _null, t3, "client2", client.customValue2, false, _null)); t4.push(new A.CustomField(_this._client_edit_details$_custom3Controller, _null, t3, "client3", client.customValue3, false, _null)); t4.push(new A.CustomField(_this._client_edit_details$_custom4Controller, _null, t3, "client4", client.customValue4, false, _null)); return A.FormCard$(_null, t4, _null, _null, false, _null, true, t2); } }; A.ClientEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_details$_onChanged()); }, $signature: 12 }; A.ClientEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_details$_onChanged()); }, $signature: 12 }; A.ClientEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ClientEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_details$_numberController._change_notifier$_value.text); b.get$_client_model$_$this()._number = t2; t2 = J.trim$0$s(t1._client_edit_details$_nameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_name = t2; t2 = J.trim$0$s(t1._client_edit_details$_idNumberController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_idNumber = t2; t2 = J.trim$0$s(t1._client_edit_details$_vatNumberController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_vatNumber = t2; t2 = J.trim$0$s(t1._client_edit_details$_websiteController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_website = t2; t2 = J.trim$0$s(t1._client_edit_details$_phoneController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_phone = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue1 = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue2 = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue3 = t2; t1 = J.trim$0$s(t1._client_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue4 = t1; return b; }, $signature: 48 }; A.ClientEditDetailsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; A.ClientEditDetailsState_build_closure.prototype = { call$1(val) { return !this.viewModel.client.get$hasNameSet() ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; A.ClientEditDetailsState_build_closure0.prototype = { call$1(groupId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditDetailsState_build__closure0(groupId))); }, $signature: 5 }; A.ClientEditDetailsState_build__closure0.prototype = { call$1(b) { b.get$_client_model$_$this()._groupId = this.groupId; return b; }, $signature: 48 }; A.ClientEditDetailsState_build_closure1.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditDetailsState_build__closure(userId))); }, $signature: 5 }; A.ClientEditDetailsState_build__closure.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_assignedUserId = this.userId; return b; }, $signature: 48 }; A.ClientEditFooter.prototype = { build$1(_, context) { var showLayoutToggle, t3, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = A._lateReadCheck(store.__Store__state, "_state").prefState, useSidebarEditor = t2.useSidebarEditor._map$_map.$index(0, B.EntityType_client); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = A.getLayout(context) === B.AppLayout_desktop; t3 = A.Theme_of(context).cardColor; t4 = A._setArrayType([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t1 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t4.push(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(useSidebarEditor ? B.IconData_57694_MaterialIcons_null_true : B.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ClientEditFooter_build_closure(store), _null, _null, _null, _null, _null, _null), t1)); } t1 = this.client; t5 = t1.number; t1 = t5.length === 0 ? t1.get$calculateDisplayName() : t5 + " \u2022 " + t1.get$calculateDisplayName(); t4.push(new A.AppBorder(new A.Padding(B.EdgeInsets_16_8_0_0, A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.enableDarkMode ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, _null, showLayoutToggle, false, _null)); return A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t4, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), t3, 0, new A.CircularNotchedRectangle()); } }; A.ClientEditFooter_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(B.EntityType_client)); }, $signature: 9 }; A.ClientEditNotes.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ClientEditNotesState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ClientEditNotesState.prototype = { didChangeDependencies$0() { var client, _this = this, t1 = _this._client_edit_notes$_publicNotesController, t2 = _this._client_edit_notes$_privateNotesController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._client_edit_notes$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A.ClientEditNotesState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.publicNotes); t2.set$text(0, client.privateNotes); t2 = _this._client_edit_notes$_controllers; (t2 && B.JSArray_methods).forEach$1(t2, new A.ClientEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._client_edit_notes$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ClientEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_notes$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new A.ClientEditNotesState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_notes$_debouncer.run$1(new A.ClientEditNotesState__onChanged_closure0(viewModel, client)); }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, state = viewModel.state, client = viewModel.client, t2 = state.prefState.isEditorFullScreen$1(B.EntityType_client) ? B.EdgeInsets_12_12_6_0 : _null, t3 = A.DecoratedFormField$(false, _null, false, false, this._client_edit_notes$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), t4 = A.DecoratedFormField$(false, _null, false, false, this._client_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), t5 = client.sizeId, t6 = t1.get$size(t1); t5 = A.AppDropdownButton$(_null, "", true, J.map$1$1$ax($.$get$memoizedSizeList().call$1(state.staticState.sizeMap), new A.ClientEditNotesState_build_closure(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t6, new A.ClientEditNotesState_build_closure0(viewModel, client), _null, true, t5, type$.legacy_String); t6 = $.$get$memoizedIndustryList().call$1(viewModel.staticState.industryMap); t1 = t1.get$industry(); return A.FormCard$(_null, A._setArrayType([t3, t4, t5, A.EntityDropdown$(true, false, false, client.industryId, t6, _null, B.EntityType_industry, B.List_empty0, t1, _null, _null, new A.ClientEditNotesState_build_closure1(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null, true, t2); } }; A.ClientEditNotesState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_notes$_onChanged()); }, $signature: 12 }; A.ClientEditNotesState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_notes$_onChanged()); }, $signature: 12 }; A.ClientEditNotesState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ClientEditNotesState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._client_edit_notes$_publicNotesController._change_notifier$_value.text; b.get$_client_model$_$this()._publicNotes = t2; t1 = t1._client_edit_notes$_privateNotesController._change_notifier$_value.text; b.get$_client_model$_$this()._privateNotes = t1; return b; }, $signature: 48 }; A.ClientEditNotesState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; A.ClientEditNotesState_build_closure.prototype = { call$1(sizeId) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.state.staticState.sizeMap._map$_map.$index(0, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, sizeId, type$.legacy_String); }, $signature: 43 }; A.ClientEditNotesState_build_closure0.prototype = { call$1(sizeId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditNotesState_build__closure0(sizeId))); }, $signature: 12 }; A.ClientEditNotesState_build__closure0.prototype = { call$1(b) { b.get$_client_model$_$this()._sizeId = this.sizeId; return b; }, $signature: 48 }; A.ClientEditNotesState_build_closure1.prototype = { call$1(industry) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditNotesState_build__closure(industry))); }, $signature: 61 }; A.ClientEditNotesState_build__closure.prototype = { call$1(b) { var t1 = this.industry; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._industryId = t1; return b; }, $signature: 48 }; A.ClientEditSettings.prototype = { createState$0() { return new A.ClientEditSettingsState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ClientEditSettingsState.prototype = { didChangeDependencies$0() { var t3, _this = this, t1 = _this._client_edit_settings$_taskRateController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._client_edit_settings$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A.ClientEditSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.client.settings.defaultTaskRate; t3 = _this._framework$_element; t3.toString; t1.set$text(0, A.formatNumber(t2, t3, null, null, B.FormatNumberType_4, true, null, false)); t3 = _this._client_edit_settings$_controllers; (t3 && B.JSArray_methods).forEach$1(t3, new A.ClientEditSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._client_edit_settings$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ClientEditSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_settings$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new A.ClientEditSettingsState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_settings$_debouncer.run$1(new A.ClientEditSettingsState__onChanged_closure0(viewModel, client)); }, build$1(_, context) { var t9, t10, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, company = t3[t2].userCompany.company, client = viewModel.client, t4 = state.prefState.isEditorFullScreen$1(B.EntityType_client) ? B.EdgeInsets_6_12_6_0 : _null, t5 = viewModel.staticState, t6 = $.$get$memoizedCurrencyList().call$1(t5.currencyMap), t7 = t1.get$currency(), t8 = client.settings; t7 = A.EntityDropdown$(true, false, false, t8.currencyId, t6, _null, B.EntityType_currency, B.List_empty0, t7, _null, _null, new A.ClientEditSettingsState_build_closure(viewModel, client), _null, _null, _null); t5 = $.$get$memoizedLanguageList().call$1(t5.languageMap); t6 = t1.get$language(t1); t9 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([t7, A.EntityDropdown$(true, false, false, t8.languageId, t5, _null, B.EntityType_language, B.List_empty0, t6, _null, _null, new A.ClientEditSettingsState_build_closure0(viewModel, client), _null, _null, _null)], t9); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t5 = t1.get$invoicePaymentTerms(); t7 = $.$get$memoizedDropdownPaymentTermList(); t10 = t3[t2].paymentTermState; t6.push(A.AppDropdownButton$(_null, "", true, J.map$1$1$ax(t7.call$2(t10.map, t10.list), new A.ClientEditSettingsState_build_closure1(state, t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t5, new A.ClientEditSettingsState_build_closure2(viewModel, client), _null, true, A.S(t8.defaultPaymentTerms), type$.legacy_String)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t5 = t1.get$quoteValidUntil(); t7 = $.$get$memoizedDropdownPaymentTermList(); t2 = t3[t2].paymentTermState; t6.push(A.AppDropdownButton$(_null, "", true, J.map$1$1$ax(t7.call$2(t2.map, t2.list), new A.ClientEditSettingsState_build_closure3(state, t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t5, new A.ClientEditSettingsState_build_closure4(viewModel, client), _null, true, A.S(t8.defaultValidUntil), type$.legacy_String)); } if (company.isModuleEnabled$1(B.EntityType_task)) t6.push(A.DecoratedFormField$(false, _null, false, false, this._client_edit_settings$_taskRateController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t1.get$taskRate(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t2 = t1.get$sendReminders(); t8 = t8.sendReminders; t3 = type$.legacy_bool; B.JSArray_methods.addAll$1(t6, A._setArrayType([A.AppDropdownButton$(_null, _null, true, A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$enabled(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, true, t3), A.DropdownMenuItem$(A.Text$(t1.get$disabled(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, false, t3)], type$.JSArray_legacy_DropdownMenuItem_legacy_bool), _null, t2, new A.ClientEditSettingsState_build_closure5(viewModel, client), _null, true, t8, t3)], t9)); } return A.FormCard$(_null, t6, _null, _null, false, _null, true, t4); } }; A.ClientEditSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_settings$_onChanged()); }, $signature: 12 }; A.ClientEditSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_settings$_onChanged()); }, $signature: 12 }; A.ClientEditSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ClientEditSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = A.parseDouble(this.$this._client_edit_settings$_taskRateController._change_notifier$_value.text, true); t1.get$_settings_model$_$this()._defaultTaskRate = t2; return b; }, $signature: 48 }; A.ClientEditSettingsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; A.ClientEditSettingsState_build_closure.prototype = { call$1(currency) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure3(currency))); }, $signature: 61 }; A.ClientEditSettingsState_build__closure3.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.currency; t2 = t2 == null ? null : t2.get$id(t2); if (t2 == null) t2 = ""; t1.get$_settings_model$_$this()._currencyId = t2; return b; }, $signature: 48 }; A.ClientEditSettingsState_build_closure0.prototype = { call$1(language) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure2(language))); }, $signature: 61 }; A.ClientEditSettingsState_build__closure2.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.language; t2 = t2 == null ? null : t2.get$id(t2); if (t2 == null) t2 = ""; t1.get$_settings_model$_$this()._languageId = t2; return b; }, $signature: 48 }; A.ClientEditSettingsState_build_closure1.prototype = { call$1(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = t1.userCompanyStates._list[t2].paymentTermState.map._map$_map.$index(0, paymentTermId); t1 = paymentTerm.numDays; return A.DropdownMenuItem$(A.Text$(t1 === 0 ? this.localization.get$dueOnReceipt() : paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t1), type$.legacy_String); }, $signature: 43 }; A.ClientEditSettingsState_build_closure2.prototype = { call$1(numDays) { this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure1(numDays))); }, $signature: 7 }; A.ClientEditSettingsState_build__closure1.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.numDays; t2 = t2 == null ? null : A.S(t2); t1.get$_settings_model$_$this()._defaultPaymentTerms = t2; return b; }, $signature: 48 }; A.ClientEditSettingsState_build_closure3.prototype = { call$1(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = t1.userCompanyStates._list[t2].paymentTermState.map._map$_map.$index(0, paymentTermId); t1 = paymentTerm.numDays; return A.DropdownMenuItem$(A.Text$(t1 === 0 ? this.localization.get$dueOnReceipt() : paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t1), type$.legacy_String); }, $signature: 43 }; A.ClientEditSettingsState_build_closure4.prototype = { call$1(numDays) { this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure0(numDays))); }, $signature: 7 }; A.ClientEditSettingsState_build__closure0.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.numDays; t2 = t2 == null ? null : A.S(t2); t1.get$_settings_model$_$this()._defaultValidUntil = t2; return b; }, $signature: 48 }; A.ClientEditSettingsState_build_closure5.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure(value))); }, $signature: 7 }; A.ClientEditSettingsState_build__closure.prototype = { call$1(b) { b.get$settings().get$_settings_model$_$this()._sendReminders = this.value; return b; }, $signature: 48 }; A.ClientEditShippingAddress.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ClientEditShippingAddressState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ClientEditShippingAddressState.prototype = { didChangeDependencies$0() { var client, _this = this, t1 = _this._shippingAddress1Controller, t2 = _this._shippingAddress2Controller, t3 = _this._shippingCityController, t4 = _this._shippingStateController, t5 = _this._shippingPostalCodeController, t6 = A._setArrayType([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._client_edit_shipping_address$_controllers = t6; B.JSArray_methods.forEach$1(t6, new A.ClientEditShippingAddressState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.shippingAddress1); t2.set$text(0, client.shippingAddress2); t3.set$text(0, client.shippingCity); t4.set$text(0, client.shippingState); t5.set$text(0, client.shippingPostalCode); B.JSArray_methods.forEach$1(_this._client_edit_shipping_address$_controllers, new A.ClientEditShippingAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._client_edit_shipping_address$_controllers, new A.ClientEditShippingAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_shipping_address$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new A.ClientEditShippingAddressState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_shipping_address$_debouncer.run$1(new A.ClientEditShippingAddressState__onChanged_closure0(viewModel, client)); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_client), t2 = isFullscreen ? B.EdgeInsets_6_12_12_0 : _null; if (isFullscreen) { t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "shipping_address1"); if (t3 == null) t3 = ""; } else t3 = t1.get$address1(); t4 = viewModel.onSavePressed; t3 = A.DecoratedFormField$(false, _null, false, false, _this._shippingAddress1Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_9_null_null, t3, _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t5 = A.DecoratedFormField$(false, _null, false, false, _this._shippingAddress2Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$address2(), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t6 = A.DecoratedFormField$(false, _null, false, false, _this._shippingCityController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$city(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t7 = A.DecoratedFormField$(false, _null, false, false, _this._shippingStateController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$state(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t4 = A.DecoratedFormField$(false, _null, false, false, _this._shippingPostalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t8 = $.$get$memoizedCountryList().call$1(viewModel.staticState.countryMap); t9 = t1.get$country(t1); t9 = A._setArrayType([t3, t5, t6, t7, t4, A.EntityDropdown$(true, false, false, client.shippingCountryId, t8, _null, B.EntityType_country, B.List_empty0, t9, _null, _null, new A.ClientEditShippingAddressState_build_closure(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget); if (client.address1.length === 0) if (client.address2.length === 0) if (client.city.length === 0) if (client.state.length === 0) if (client.postalCode.length === 0) { t3 = client.countryId; t3 = t3.length !== 0; } else t3 = true; else t3 = true; else t3 = true; else t3 = true; else t3 = true; if (t3 && client.get$areAddressesDifferent()) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "copy_billing"); if (t1 == null) t1 = ""; t9.push(new A.AppButton(_null, _null, t1.toUpperCase(), new A.ClientEditShippingAddressState_build_closure0(_this, viewModel), _null, _null)); } return A.FormCard$(_null, t9, _null, B.CrossAxisAlignment_3, false, _null, true, t2); } }; A.ClientEditShippingAddressState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); }, $signature: 12 }; A.ClientEditShippingAddressState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); }, $signature: 12 }; A.ClientEditShippingAddressState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ClientEditShippingAddressState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._shippingAddress1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._shippingAddress1 = t2; t2 = J.trim$0$s(t1._shippingAddress2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._shippingAddress2 = t2; t2 = J.trim$0$s(t1._shippingCityController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingCity = t2; t2 = J.trim$0$s(t1._shippingStateController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingState = t2; t1 = J.trim$0$s(t1._shippingPostalCodeController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingPostalCode = t1; return b; }, $signature: 48 }; A.ClientEditShippingAddressState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; A.ClientEditShippingAddressState_build_closure.prototype = { call$1(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditShippingAddressState_build__closure0(country))); }, $signature: 61 }; A.ClientEditShippingAddressState_build__closure0.prototype = { call$1(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._shippingCountryId = t1; return b; }, $signature: 48 }; A.ClientEditShippingAddressState_build_closure0.prototype = { call$0() { this.viewModel.copyBillingAddress.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ClientEditShippingAddressState_build__closure(this.$this)); }, $signature: 1 }; A.ClientEditShippingAddressState_build__closure.prototype = { call$1(duration) { this.$this.didChangeDependencies$0(); }, $signature: 36 }; A.ClientEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientEditScreen_build_closure(), new A.ClientEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientEditVM); } }; A.ClientEditScreen_build_closure0.prototype = { call$1(store) { return A.ClientEditVM_ClientEditVM$fromStore(store); }, $signature: 2266 }; A.ClientEditScreen_build_closure.prototype = { call$2(context, vm) { return new A.ClientEdit(vm, null); }, $signature: 2267 }; A.ClientEditVM.prototype = { get$company() { return this.company; } }; A.ClientEditVM_ClientEditVM$fromStore_closure.prototype = { call$1(client) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateClient(client)); }, $signature: 2268 }; A.ClientEditVM_ClientEditVM$fromStore_closure3.prototype = { call$0() { var t1 = this.client; t1 = t1.rebuild$1(new A.ClientEditVM_ClientEditVM$fromStore__closure(t1)); return this.store.get$_dispatchers()[0].call$1(new A.UpdateClient(t1)); }, $signature: 9 }; A.ClientEditVM_ClientEditVM$fromStore__closure.prototype = { call$1(b) { var t1 = this.client; b.get$_client_model$_$this()._shippingAddress1 = t1.address1; b.get$_client_model$_$this()._shippingAddress2 = t1.address2; b.get$_client_model$_$this()._shippingCity = t1.city; b.get$_client_model$_$this()._shippingState = t1.state; b.get$_client_model$_$this()._shippingPostalCode = t1.postalCode; b.get$_client_model$_$this()._shippingCountryId = t1.countryId; return b; }, $signature: 48 }; A.ClientEditVM_ClientEditVM$fromStore_closure2.prototype = { call$0() { var t1 = this.client; t1 = t1.rebuild$1(new A.ClientEditVM_ClientEditVM$fromStore__closure0(t1)); return this.store.get$_dispatchers()[0].call$1(new A.UpdateClient(t1)); }, $signature: 9 }; A.ClientEditVM_ClientEditVM$fromStore__closure0.prototype = { call$1(b) { var t1 = this.client; b.get$_client_model$_$this()._client_model$_address1 = t1.shippingAddress1; b.get$_client_model$_$this()._client_model$_address2 = t1.shippingAddress2; b.get$_client_model$_$this()._client_model$_city = t1.shippingCity; b.get$_client_model$_$this()._client_model$_state = t1.shippingState; b.get$_client_model$_$this()._client_model$_postalCode = t1.shippingPostalCode; b.get$_client_model$_$this()._client_model$_countryId = t1.shippingCountryId; return b; }, $signature: 48 }; A.ClientEditVM_ClientEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, t2, _null = null; A.createEntity(_null, _null, context, A.ClientEntity_ClientEntity(_null, _null, _null, _null), true); t1 = this.state.uiState; t2 = t1.clientUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.ClientEditVM_ClientEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ClientEditVM_ClientEditVM$fromStore__closure1(this.store, context, this.state).call$0(); }, $signature: 14 }; A.ClientEditVM_ClientEditVM$fromStore__closure1.prototype = { call$0() { var t2, t3, t4, $navigator, t1 = this.store, client = A._lateReadCheck(t1.__Store__state, "_state").uiState.clientUIState.editing; if (!client.get$hasNameSet()) { A.showDialog(null, true, new A.ClientEditVM_ClientEditVM$fromStore___closure(), this.context, null, true, type$.legacy_ErrorDialog); return null; } t2 = new A._Future($.Zone__current, type$._Future_legacy_ClientEntity); t3 = $.$get$navigatorKey(); t3.toString; t4 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t3.get$currentState(); t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ClientEntity), client)); return t2.then$1$1(0, new A.ClientEditVM_ClientEditVM$fromStore___closure0(client, t4, this.state, t1, $navigator), type$.Null).catchError$1(new A.ClientEditVM_ClientEditVM$fromStore___closure1()); }, $signature: 37 }; A.ClientEditVM_ClientEditVM$fromStore___closure.prototype = { call$1(context) { var t1 = $.$get$navigatorKey(); t1.toString; return new A.ErrorDialog(A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName(), false, null); }, $signature: 24 }; A.ClientEditVM_ClientEditVM$fromStore___closure0.prototype = { call$1(savedClient) { var t3, _this = this, _s12_ = "/client/view", t1 = _this.client, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_client"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_client"); if (t2 == null) t2 = ""; } A.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); t1 = t1.get$isNew() && t2.uiState.clientUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedClient); } else { if (!t3.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedClient, null, true); } }, $signature: 250 }; A.ClientEditVM_ClientEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ClientEditVM_ClientEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ClientEditVM_ClientEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ClientView.prototype = { createState$0() { return new A._ClientViewState(null, null, B._StateLifecycle_0); } }; A._ClientViewState.prototype = { initState$0() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = A.TabController$(null, t1.isFilter ? 0 : state.uiState.clientUIState.tabIndex, 6, _this); _this._client_view$_controller = t2; t2.addListener$1(0, _this.get$_client_view$_onTabChanged()); }, _client_view$_onTabChanged$0() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._client_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateClientTab(t1)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._client_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._client_view$_controller.removeListener$1(0, _this.get$_client_view$_onTabChanged()); _this._client_view$_controller.dispose$0(0); _this.super$__ClientViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t5, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = this._widget, viewModel = t2.viewModel, client = viewModel.client, t3 = viewModel.state, t4 = t3.uiState.selectedCompanyIndex, userCompany = t3.userCompanyStates._list[t4].userCompany; if (t2.isTopFilter) { t1 = A.Theme_of(context).scaffoldBackgroundColor; return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([new A.EntityTopFilterHeader(_null), A.Expanded$(new A.AppBorder(new A.ClientViewFullwidth(viewModel, _null), true, true, _null, false, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_3, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } t2 = t2.isFilter; t3 = this._client_view$_controller; t4 = A.Tab$(_null, t1.get$overview()); t5 = A.Tab$(_null, t1.get$details(t1)); t6 = client.documents._list; t3 = A.TabBar$(t3, _null, true, _null, _null, A._setArrayType([t4, t5, A.Tab$(_null, t6.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t6.length + ")"), A.Tab$(_null, t1.get$ledger()), A.Tab$(_null, t1.get$activity()), A.Tab$(_null, t1.get$systemLogs())], type$.JSArray_legacy_Widget)); A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "client_view_fab", false, new A._ClientViewState_build_closure(context, userCompany, t1, client, store), t1.get$create(t1)); return new A.ViewScaffold(t2, client, new A.Builder(new A._ClientViewState_build_closure0(this, viewModel, client), _null), _null, t3, _null); } }; A._ClientViewState_build_closure0.prototype = { call$1(context) { var _null = null, t1 = this.$this, t2 = t1._client_view$_controller, t3 = this.viewModel, t4 = t3.client, t5 = t4.id, t6 = type$.ValueKey_legacy_String, t7 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.ClientOverview(t3, t1._widget.isFilter, _null), new A._ClientViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.ClientViewDetails(t4, _null), new A._ClientViewState_build__closure0(t3, context)), A.RefreshIndicator$(new A.ClientViewDocuments(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure1(t3, context)), A.RefreshIndicator$(new A.ClientViewLedger(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure2(t3, context)), A.RefreshIndicator$(new A.ClientViewActivity(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure3(t3, context)), A.RefreshIndicator$(new A.ClientViewSystemLogs(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure4(t3, context))], t7), t2, _null), 1), new A.BottomButtons(this.client, B.EntityAction_viewStatement, B.EntityAction_clientPortal, true, true, _null)], t7), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._ClientViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build__closure1.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build__closure2.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build__closure3.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build__closure4.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._ClientViewState_build__closure5(_this.userCompany, _this.localization, _this.client, _this.store), _this.context, null, true, type$.legacy_SimpleDialog); }, $signature: 1 }; A._ClientViewState_build__closure5.prototype = { call$1(context) { var _this = this, _null = null, t1 = _this.userCompany, t2 = t1.can$2(B.UserPermission_view, B.EntityType_client) || t1.can$2(B.UserPermission_create, B.EntityType_client) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure(context, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = t1.can$2(B.UserPermission_view, B.EntityType_payment) || t1.can$2(B.UserPermission_create, B.EntityType_payment) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure0(context, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$payment(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = t1.can$2(B.UserPermission_view, B.EntityType_quote) || t1.can$2(B.UserPermission_create, B.EntityType_quote) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure1(context, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$quote(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t5 = t1.can$2(B.UserPermission_view, B.EntityType_project) || t1.can$2(B.UserPermission_create, B.EntityType_project) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure2(context, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$project(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t6 = t1.can$2(B.UserPermission_view, B.EntityType_task) || t1.can$2(B.UserPermission_create, B.EntityType_task) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure3(context, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$task(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.SimpleDialog$(A._setArrayType([t2, t3, t4, t5, t6, t1.can$2(B.UserPermission_view, B.EntityType_expense) || t1.can$2(B.UserPermission_create, B.EntityType_expense) ? A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewState_build___closure4(context, _this.store, _this.client), false, _null, _null, _null, _null, A.Text$(_this.localization.get$expense(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), _null); }, $signature: 172 }; A._ClientViewState_build___closure.prototype = { call$0() { var t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.handleClientAction(t1, A._setArrayType([this.client], type$.JSArray_legacy_BaseEntity), B.EntityAction_newInvoice); }, $signature: 1 }; A._ClientViewState_build___closure0.prototype = { call$0() { var t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.handleClientAction(t1, A._setArrayType([this.client], type$.JSArray_legacy_BaseEntity), B.EntityAction_newPayment); }, $signature: 1 }; A._ClientViewState_build___closure1.prototype = { call$0() { var t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.handleClientAction(t1, A._setArrayType([this.client], type$.JSArray_legacy_BaseEntity), B.EntityAction_newQuote); }, $signature: 1 }; A._ClientViewState_build___closure2.prototype = { call$0() { var t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.handleClientAction(t1, A._setArrayType([this.client], type$.JSArray_legacy_BaseEntity), B.EntityAction_newProject); }, $signature: 1 }; A._ClientViewState_build___closure3.prototype = { call$0() { var t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.handleClientAction(t1, A._setArrayType([this.client], type$.JSArray_legacy_BaseEntity), B.EntityAction_newTask); }, $signature: 1 }; A._ClientViewState_build___closure4.prototype = { call$0() { var _null = null, t1 = this.context; A.Navigator_of(t1, false).pop$0(0); A.createEntity(_null, _null, t1, A.ExpenseEntity_ExpenseEntity(this.client, _null, _null, _null, A._lateReadCheck(this.store.__Store__state, "_state"), _null, _null), false); }, $signature: 1 }; A.__ClientViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ClientViewActivity.prototype = { createState$0() { return new A._ClientViewActivityState(B._StateLifecycle_0); } }; A._ClientViewActivityState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var _null = null, client = this._widget.viewModel.client, activities = client.activities, t1 = client.loadedAt; if (!(t1 != null && t1 > 0)) return new A.LoadingIndicator(_null, false, _null); return new A.ScrollableListViewBuilder(new A._ClientViewActivityState_build_closure(activities), new A._ClientViewActivityState_build_closure0(), activities._list.length, _null, B.EdgeInsets_0_16_0_16, _null); } }; A._ClientViewActivityState_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A._ClientViewActivityState_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list[index], true, null); }, $signature: 347 }; A.ClientViewDetails.prototype = { createState$0() { return new A._ClientViewDetailsState(B._StateLifecycle_0); } }; A._ClientViewDetailsState.prototype = { _client_view_details$_launchURL$2(context, url) { return this._launchURL$body$_ClientViewDetailsState(context, url); }, _launchURL$body$_ClientViewDetailsState(context, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), t1; var $async$_client_view_details$_launchURL$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $async$goto = 5; return A._asyncAwait(A.canLaunch(url), $async$_client_view_details$_launchURL$2); case 5: // returning from await. $async$goto = $async$result ? 2 : 4; break; case 2: // then $async$goto = 6; return A._asyncAwait(A.launch(url, false, false), $async$_client_view_details$_launchURL$2); case 6: // returning from await. // goto join $async$goto = 3; break; case 4: // else throw A.wrapException(t1.get$couldNotLaunch()); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_client_view_details$_launchURL$2, $async$completer); }, _client_view_details$_launchStatus$2(context, snapshot) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = snapshot.error; if (t2 != null) return A.Text$(t1.get$error(t1) + ": " + A.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); else return B.Text_OPN; }, build$1(_, context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new A.ScrollableListView(new A._ClientViewDetailsState_build__buildDetailsList(this, this._widget.client, t1, context).call$0(), null, null, null); } }; A._ClientViewDetailsState_build__buildDetailsList.prototype = { call$0() { var t5, state, billingAddress, shippingAddress, _this = this, _null = null, listTiles = A._setArrayType([], type$.JSArray_legacy_Widget), t1 = _this.client, t2 = _this.$this, t3 = _this.localization, t4 = _this.context; B.JSArray_methods.forEach$1(t1.contacts._list, new A._ClientViewDetailsState_build__buildDetailsList_closure(t2, listTiles, t1, t3, t4)); t5 = t1.website; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58240_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList_closure0(t2, t4, t1), t3.get$website(), t5)); t5 = t1.phone; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58530_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList_closure1(t2, t4, t1), t3.get$phone(t3), t5)); t5 = t1.vatNumber; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58280_MaterialIcons_null_false, _null, t3.get$vatNumber(), t5)); t5 = t1.idNumber; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_57627_MaterialIcons_null_false, _null, t3.get$idNumber(), t5)); state = A._lateReadCheck(A.StoreProvider_of(t4, type$.legacy_AppState).__Store__state, "_state"); billingAddress = A.formatAddress(state, "\n", false, t1); shippingAddress = A.formatAddress(state, "\n", true, t1); if (billingAddress.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58567_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList_closure2(t2, t4, state, t1), t3.get$billingAddress(), billingAddress)); if (shippingAddress.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58567_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList_closure3(t2, t4, state, t1), t3.get$shippingAddress(t3), shippingAddress)); listTiles.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.FutureBuilder$(t2.get$_client_view_details$_launchStatus(), t2._client_view_details$_launched, type$.Null), _null)); return listTiles; }, $signature: 227 }; A._ClientViewDetailsState_build__buildDetailsList_closure.prototype = { call$1(contact) { var _this = this, t1 = _this.listTiles, t2 = contact.link, t3 = contact.get$fullName().length === 0 ? _this.localization.get$blankContact() : contact.get$fullName(), t4 = contact.email, t5 = _this.$this, t6 = _this.context; t1.push(A.AppListTile$(new A.PortalLinks(t2 + "?silent=true", t2, _this.client, false, null), t4, B.IconData_57898_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList__closure1(t5, contact, t6), t4, t3)); t2 = contact.phone; if (t2.length !== 0) { t3 = contact.get$fullName().length === 0 ? _this.localization.get$blankContact() : contact.get$fullName(); t4 = _this.localization; t1.push(A.AppListTile$(null, t2, B.IconData_58530_MaterialIcons_null_false, new A._ClientViewDetailsState_build__buildDetailsList__closure2(t5, t6, contact), t4.get$phone(t4), t3 + "\n" + t2)); } }, $signature: 580 }; A._ClientViewDetailsState_build__buildDetailsList__closure1.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._ClientViewDetailsState_build__buildDetailsList___closure0(t1, this.contact, this.context)); }, $signature: 0 }; A._ClientViewDetailsState_build__buildDetailsList___closure0.prototype = { call$0() { var t2, t1 = this.contact.email; if (t1.length === 0) return; t2 = this.$this; t2._client_view_details$_launched = t2._client_view_details$_launchURL$2(this.context, "mailto:" + t1); }, $signature: 1 }; A._ClientViewDetailsState_build__buildDetailsList__closure2.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._ClientViewDetailsState_build__buildDetailsList___closure(t1, this.context, this.contact)); }, $signature: 0 }; A._ClientViewDetailsState_build__buildDetailsList___closure.prototype = { call$0() { var t1 = this.$this, t2 = A.RegExp_RegExp("\\D", true, false, false, false); t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, "sms:" + A.stringReplaceAllUnchecked(this.contact.phone, t2, "")); }, $signature: 1 }; A._ClientViewDetailsState_build__buildDetailsList_closure0.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._ClientViewDetailsState_build__buildDetailsList__closure0(t1, this.context, this.client)); }, $signature: 0 }; A._ClientViewDetailsState_build__buildDetailsList__closure0.prototype = { call$0() { var t1 = this.$this; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, A.formatURL(this.client.website)); }, $signature: 1 }; A._ClientViewDetailsState_build__buildDetailsList_closure1.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._ClientViewDetailsState_build__buildDetailsList__closure(t1, this.context, this.client)); }, $signature: 0 }; A._ClientViewDetailsState_build__buildDetailsList__closure.prototype = { call$0() { var t1 = this.$this, t2 = A.RegExp_RegExp("\\D", true, false, false, false); t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, "sms:" + A.stringReplaceAllUnchecked(this.client.phone, t2, "")); }, $signature: 1 }; A._ClientViewDetailsState_build__buildDetailsList_closure2.prototype = { call$0() { var _this = this, t1 = _this.$this, t2 = A.isApple() ? "https://maps.apple.com/?address=" : "https://maps.google.com/?q="; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(_this.context, B.JSString_methods.$add(t2, A._Uri__uriEncode(B.List_gnE, A.formatAddress(_this.state, ",", false, _this.client), B.C_Utf8Codec, false))); }, $signature: 1 }; A._ClientViewDetailsState_build__buildDetailsList_closure3.prototype = { call$0() { var _this = this, t1 = _this.$this, t2 = A.isApple() ? "https://maps.apple.com/?address=" : "https://maps.google.com/?q="; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(_this.context, B.JSString_methods.$add(t2, A._Uri__uriEncode(B.List_gnE, A.formatAddress(_this.state, ",", true, _this.client), B.C_Utf8Codec, false))); }, $signature: 1 }; A.ClientViewDocuments.prototype = { build$1(_, context) { var t1 = this.viewModel.client.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.ClientViewDocuments_build_closure(this, context), new A.ClientViewDocuments_build_closure0(this, context), null, null); } }; A.ClientViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.ClientViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.ClientViewFullwidth.prototype = { createState$0() { return new A._ClientViewFullwidthState(null, null, B._StateLifecycle_0); } }; A._ClientViewFullwidthState.prototype = { initState$0() { var t1, t2, t3, _this = this; _this.super$State$initState(); t1 = type$.JSArray_ScrollPosition; t2 = A._setArrayType([], t1); t3 = $.$get$ChangeNotifier__emptyListeners(); _this._client_view_fullwidth$_scrollController1 = new A.ScrollController(0, true, null, t2, t3); _this._client_view_fullwidth$_scrollController2 = new A.ScrollController(0, true, null, A._setArrayType([], t1), t3); _this._client_view_fullwidth$_scrollController3 = new A.ScrollController(0, true, null, A._setArrayType([], t1), t3); }, dispose$0(_) { var _this = this; _this._client_view_fullwidth$_scrollController1.dispose$0(0); _this._client_view_fullwidth$_scrollController2.dispose$0(0); _this._client_view_fullwidth$_scrollController3.dispose$0(0); _this.super$__ClientViewFullwidthState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var client, documents, viewModel, billingAddress, shippingAddress, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t4 = t2._list[t4].clientState; t2 = t3.filterStack._list; if (t2.length === 0) t2 = null; else { t2 = B.JSArray_methods.get$last(t2); t2 = t2.get$id(t2); } client = t4.$get$1(0, t2); documents = client.documents; viewModel = this._widget.viewModel; billingAddress = A.formatAddress(state, "\n", false, client); shippingAddress = A.formatAddress(state, "\n", true, client); t2 = state.prefState; return new A.LayoutBuilder(new A._ClientViewFullwidthState_build_closure(this, t1, client, state, billingAddress, shippingAddress, !t2.isPreviewVisible && !t3.get$isEditing() && t2.moduleLayout !== B.ModuleLayout_list, documents, viewModel), null); } }; A._ClientViewFullwidthState_build_closure.prototype = { call$2(context, layout) { var t8, t9, t10, t11, t12, _this = this, _null = null, minHeight = layout.maxHeight - 24 - 43, t1 = _this.$this, t2 = t1._client_view_fullwidth$_scrollController1, t3 = _this.localization, t4 = type$.JSArray_legacy_Widget, t5 = A._setArrayType([A.Text$(t3.get$details(t3), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4), t6 = _this.client, t7 = t6.idNumber; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_0_0_1, new A.CopyToClipboard(_null, t7, false, _null, t3.get$id(t3), _null), _null)); t7 = t6.vatNumber; if (t7.length !== 0) t5.push(new A.CopyToClipboard(_null, t7, false, _null, t3.get$vat(), _null)); t5.push(new A.SizedBox(_null, 4, _null, _null)); t7 = t6.phone; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t7, B.IconData_58530_MaterialIcons_null_false, _null, _null, _null), t7, false, _null, _null, _null), _null)); t7 = t6.website; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(A.trimUrl(t7), B._MdiIconData_jVE0, _null, _null, _null), t7, false, _null, _null, _null), _null)); t5.push(new A.SizedBox(_null, 4, _null, _null)); t7 = t6.settings; t8 = t7.currencyId; t9 = _this.state; t10 = t9.uiState.selectedCompanyIndex; t11 = t9.userCompanyStates._list; t12 = t11[t10].userCompany.company.settings.currencyId; if (t8 !== (t12 == null ? "1" : t12)) { t8 = t9.staticState.currencyMap._map$_map.$index(0, t8); t8 = t8 == null ? _null : t8.name; t5.push(new A.Padding(B.EdgeInsets_0_0_0_1, A.Text$(t8 == null ? "" : t8, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null)); } t8 = t7.languageId; if ((t8 == null ? "" : t8).length !== 0 && t8 != t11[t10].userCompany.company.settings.languageId) { t8 = t9.staticState.languageMap._map$_map.$index(0, t8); t8 = t8 == null ? _null : t8.name; t5.push(new A.Padding(B.EdgeInsets_0_0_0_1, A.Text$(t8 == null ? "" : t8, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null)); } t7 = t7.defaultTaskRate; if ((t7 == null ? 0 : t7) !== 0) t5.push(A.Text$(t3.get$taskRate() + ": " + A.S(t7), _null, _null, _null, _null, _null, _null, _null, _null, _null)); t2 = A.Expanded$(A.FormCard$(A.ListView$(t5, t2, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_12_12_6_12), 1); t5 = t1._client_view_fullwidth$_scrollController2; t7 = A._setArrayType([A.Text$(t3.get$address(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4); t8 = _this.billingAddress; if (t8.length !== 0) { t10 = A.Expanded$(new A.CopyToClipboard(A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t8, false, _null, _null, _null), 1); t11 = A.Icon$(B.IconData_58312_MaterialIcons_null_false, _null, _null); t9 = t9.prefState.enableTooltips ? t3.get$viewMap() : ""; B.JSArray_methods.addAll$1(t7, A._setArrayType([A.Row$(A._setArrayType([t10, new A.SizedBox(8, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t11, _null, new A._ClientViewFullwidthState_build__closure(t8), B.EdgeInsets_8_8_8_8, _null, t9, _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null)], t4)); } t8 = _this.shippingAddress; if (t8.length !== 0) B.JSArray_methods.addAll$1(t7, A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(new A.CopyToClipboard(A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t8, false, _null, _null, _null), 1), new A.SizedBox(8, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58312_MaterialIcons_null_false, _null, _null), _null, new A._ClientViewFullwidthState_build__closure0(t8), B.EdgeInsets_8_8_8_8, _null, _null, _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null)], t4)); t8 = t6.publicNotes; if (t8.length !== 0) t7.push(A.Text$(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t5 = A.Expanded$(A.FormCard$(A.ListView$(t7, t5, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_6_12_6_12), 1); t7 = _this.showStanding; t8 = !t7 ? 1 : 2; t1 = t1._client_view_fullwidth$_scrollController3; t9 = A._setArrayType([A.Text$(t3.get$contacts(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4); t10 = t6.contacts._list; t11 = A._arrayInstanceType(t10)._eval$1("MappedListIterable<1,Column*>"); B.JSArray_methods.addAll$1(t9, A.List_List$of(new A.MappedListIterable(t10, new A._ClientViewFullwidthState_build__closure1(context, t6), t11), true, t11._eval$1("ListIterable.E"))); t8 = A._setArrayType([t2, t5, A.Expanded$(A.FormCard$(A.ListView$(t9, t1, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, new A.EdgeInsets(6, 12, 12 / t8, 12)), 1)], t4); if (t7) { t1 = A.Tab$(A.Text$(t3.get$standing(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); t2 = _this.documents._list; t1 = A._setArrayType([t1, A.Tab$(_null, t2.length === 0 ? t3.get$documents() : t3.get$documents() + " (" + t2.length + ")"), A.Tab$(_null, t3.get$ledger()), A.Tab$(_null, t3.get$activity()), A.Tab$(_null, t3.get$systemLogs())], t4); t2 = t3.get$paidToDate(); t5 = t6.id; t7 = A.formatNumber(t6.paidToDate, context, t5, _null, B.FormatNumberType_0, true, _null, false); t7 = A._setArrayType([A.EntityHeader$(t6, t2, t3.get$balanceDue(), A.formatNumber(t6.balance, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, t7)], t4); t2 = t6.privateNotes; if (t2.length !== 0) t7.push(new A.IconText(t2, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null)); t2 = _this.viewModel; t3 = t2.client.id; t5 = type$.ValueKey_legacy_String; t8.push(A.Expanded$(A.FormCard$(A.DefaultTabController$(new A.SizedBox(_null, minHeight, A.Column$(A._setArrayType([new A.AppTabBar(t1, _null, true, _null, _null), new A.Flexible(1, B.FlexFit_1, A.TabBarView$(A._setArrayType([A.ListView$(t7, _null, _null, B.Axis_1, false), A.RefreshIndicator$(new A.ClientViewDocuments(t2, new A.ValueKey(t3, t5)), new A._ClientViewFullwidthState_build__closure2(t2, context)), A.RefreshIndicator$(new A.ClientViewLedger(t2, new A.ValueKey(t3, t5)), new A._ClientViewFullwidthState_build__closure3(t2, context)), A.RefreshIndicator$(new A.ClientViewActivity(t2, new A.ValueKey(t3, t5)), new A._ClientViewFullwidthState_build__closure4(t2, context)), A.RefreshIndicator$(new A.ClientViewSystemLogs(t2, new A.ValueKey(t3, t5)), new A._ClientViewFullwidthState_build__closure5(t2, context))], t4), _null, _null), _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), 5), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 600), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_6_12_12_12), 2)); } return A.Row$(t8, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, $signature: 574 }; A._ClientViewFullwidthState_build__closure.prototype = { call$0() { A.launch(B.JSString_methods.$add("http://maps.google.com/?daddr=", A._Uri__uriEncode(B.List_nxB, this.billingAddress, B.C_Utf8Codec, true)), null, false); }, $signature: 1 }; A._ClientViewFullwidthState_build__closure0.prototype = { call$0() { A.launch(B.JSString_methods.$add("http://maps.google.com/?daddr=", A._Uri__uriEncode(B.List_nxB, this.shippingAddress, B.C_Utf8Codec, true)), null, false); }, $signature: 1 }; A._ClientViewFullwidthState_build__closure1.prototype = { call$1(contact) { var _null = null, t1 = A._setArrayType([A.Text$(contact.get$fullName(), _null, _null, _null, _null, _null, A.Theme_of(this.context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), t2 = contact.email; if (t2.length !== 0) t1.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t2, B.IconData_57898_MaterialIcons_null_false, _null, _null, _null), t2, false, _null, _null, _null), _null)); t2 = contact.phone; if (t2.length !== 0) t1.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t2, B.IconData_58530_MaterialIcons_null_false, _null, _null, _null), t2, false, _null, _null, _null), _null)); t1.push(new A.SizedBox(_null, 8, _null, _null)); t2 = contact.link; t1.push(new A.PortalLinks(t2 + "?silent=true", t2, this.client, true, _null)); t1.push(new A.SizedBox(_null, 16, _null, _null)); return A.Column$(t1, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 2276 }; A._ClientViewFullwidthState_build__closure2.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewFullwidthState_build__closure3.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewFullwidthState_build__closure4.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ClientViewFullwidthState_build__closure5.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__ClientViewFullwidthState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.ClientViewLedger.prototype = { createState$0() { return new A._ClientViewLedgerState(B._StateLifecycle_0); } }; A._ClientViewLedgerState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var _null = null, client = this._widget.viewModel.client, t1 = client.ledger._list, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), ledgers = A.List_List$of(new A.WhereIterable(t1, new A._ClientViewLedgerState_build_closure(), t2), true, t2._eval$1("Iterable.E")); if (client.get$isStale()) return new A.LoadingIndicator(_null, false, _null); return new A.ScrollableListViewBuilder(new A._ClientViewLedgerState_build_closure0(ledgers, client), new A._ClientViewLedgerState_build_closure1(), ledgers.length + 1, _null, B.EdgeInsets_0_16_0_16, _null); } }; A._ClientViewLedgerState_build_closure.prototype = { call$1(ledger) { return ledger.adjustment !== 0; }, $signature: 2277 }; A._ClientViewLedgerState_build_closure1.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A._ClientViewLedgerState_build_closure0.prototype = { call$2(context, index) { var t3, ledger, entity, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = this.ledgers; if (index === t2.length) { t2 = A.Icon$(A.getEntityIcon(B.EntityType_client), _null, _null); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "client_created"); t3 = this.client; t1 = A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.Padding(B.EdgeInsets_0_0_2_0, A.Text$(A.formatNumber(0, context, t3.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, _null, _null, false, _null, _null, A.Text$(A.formatDate(A.convertTimestampToDate(t3.createdAt).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, _null, _null); } ledger = t2[index]; t2 = state.getEntityMap$1(ledger.get$entityType()); t3 = ledger.get$entityId(); entity = t2._map$_map.$index(0, t3); if (entity == null) { A.print("Error: unable to find entity " + ledger.toString$0(0)); return new A.SizedBox(_null, _null, _null, _null); } t2 = this.client.id; t3 = type$.JSArray_legacy_Widget; t1 = A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(A.S(t1.lookup$1(ledger.get$entityType().toString$0(0))) + " \u203a " + A.S(entity.get$listDisplayName()), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.Padding(B.EdgeInsets_0_0_2_0, A.Text$(A.formatNumber(ledger.balance, context, t2, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); t4 = A.Text$(A.formatDate(A.convertTimestampToDate(ledger.createdAt).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = ledger.adjustment; t6 = state.prefState; t6 = t5 <= 0 ? t6.get$colorThemeModel().colorSuccess : t6.get$colorThemeModel().colorDanger; t7 = A.BorderRadius$all(new A.Radius(2, 2)); t8 = t5 > 0 ? "+" : ""; t3 = A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, t4, _null), new A.Padding(B.EdgeInsets_0_4_0_0, A.DecoratedBox$(new A.Padding(B.EdgeInsets_4_4_4_4, A.Text$(B.JSString_methods.$add(t8, A.formatNumber(t5, context, t2, _null, B.FormatNumberType_0, true, _null, false)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_5, _null, _null), _null), new A.BoxDecoration(t6, _null, _null, t7, _null, _null, B.BoxShape_0), B.DecorationPosition_0), _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(ledger.get$entityType()), _null, _null), new A._ClientViewLedgerState_build__closure(entity), new A._ClientViewLedgerState_build__closure0(entity), false, _null, _null, t3, _null, t1, _null, _null); }, $signature: 131 }; A._ClientViewLedgerState_build__closure0.prototype = { call$0() { return A.viewEntity(false, this.entity, null, false); }, $signature: 0 }; A._ClientViewLedgerState_build__closure.prototype = { call$0() { return A.showEntityActionsDialog(null, A._setArrayType([this.entity], type$.JSArray_legacy_BaseEntity), false); }, $signature: 31 }; A.ClientOverview.prototype = { build$1(_, context) { var statics, t3, fields, t4, t5, t6, t7, group, contact, t8, user, tokenMap, gatewayMap, linkMap, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, client = t2.client, company = t2.company; t2 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); statics = t2.staticState; t3 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); t4 = client.groupId; t5 = t4.length !== 0; if (t5) { t6 = t2.userCompanyStates; t7 = t2.uiState.selectedCompanyIndex; group = t6._list[t7].groupState.map._map$_map.$index(0, t4); } else group = _null; contact = client.get$primaryContact(); t4 = client.assignedUserId; t6 = t4 != null; if (t6 && t4.length !== 0) { t7 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; user = t7._list[t8].userState.$get$1(0, t4); } else user = _null; tokenMap = A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.legacy_List_legacy_GatewayTokenEntity); gatewayMap = A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.legacy_CompanyGatewayEntity); linkMap = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); B.JSArray_methods.forEach$1(client.gatewayTokens._list, new A.ClientOverview_build_closure(t2, gatewayMap, linkMap, tokenMap)); t3 = client.settings; t7 = t3.languageId; if (t7 != null && t7.length !== 0 && t7 != company.settings.languageId) { t7 = statics.languageMap._map$_map.$index(0, t7); fields.$indexSet(0, "language", t7 == null ? _null : t7.name); } if (client.get$hasCurrency()) { t7 = t3.currencyId; t8 = company.settings.currencyId; t7 = t7 !== (t8 == null ? "1" : t8); } else t7 = false; if (t7) { t7 = statics.currencyMap; t3 = t3.currencyId; t3 = t7._map$_map.$index(0, t3); fields.$indexSet(0, "currency", t3 == null ? _null : t3.name); } t3 = client.customValue1; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client1"), A.formatCustomValue(context, "client1", t3)); t3 = client.customValue2; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client2"), A.formatCustomValue(context, "client2", t3)); t3 = client.customValue3; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client3"), A.formatCustomValue(context, "client3", t3)); t3 = client.customValue4; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client4"), A.formatCustomValue(context, "client4", t3)); t3 = t1.get$paidToDate(); t7 = client.id; t8 = A.formatNumber(client.paidToDate, context, t7, _null, B.FormatNumberType_0, true, _null, false); t8 = A.EntityHeader$(client, t3, t1.get$balanceDue(), A.formatNumber(client.balance, context, t7, _null, B.FormatNumberType_0, true, _null, false), _null, _null, t8); t3 = contact.link; t9 = type$.JSArray_legacy_Widget; t3 = A._setArrayType([t8, new A.ListDivider(_null), new A.Padding(B.EdgeInsets_20_16_20_16, new A.PortalLinks(t3 + "?silent=true", t3, client, false, _null), _null), new A.ListDivider(_null)], t9); t8 = client.privateNotes; if (t8.length !== 0) B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.IconMessage(t8, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null), new A.ListDivider(_null)], t9)); if (t5) t3.push(A.EntityListTile$(group, _this.isFilter, _null)); for (t5 = A.LinkedHashMapKeyIterator$(tokenMap, tokenMap._modifications, tokenMap.$ti._precomputed1), t8 = t1.localeCode; t5.moveNext$0();) { t10 = t5.__js_helper$_current; t11 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t8), "gateway"); if (t11 == null) t11 = ""; t12 = gatewayMap.$index(0, t10).label; t13 = tokenMap.$index(0, t10); t13.toString; t14 = A._arrayInstanceType(t13)._eval$1("MappedListIterable<1,TokenMeta*>"); t14 = A.Column$(A.List_List$of(new A.MappedListIterable(t13, new A.ClientOverview_build_closure0(), t14), true, t14._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); t13 = linkMap.containsKey$1(0, t10) ? new A.ClientOverview_build_closure1(linkMap, t10) : _null; t15 = A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_58497_MaterialIcons_null_false, _null, _null, _null), _null, new A.ClientOverview_build_closure2(), B.EdgeInsets_8_8_8_8, _null, _null, _null); t10 = linkMap.containsKey$1(0, t10) ? new A.IgnorePointer(true, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_58460_MaterialIcons_null_true, _null, _null, _null), _null, new A.ClientOverview_build_closure3(), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null) : _null; B.JSArray_methods.addAll$1(t3, A._setArrayType([A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.IgnorePointer(true, _null, t15, _null), _null, t13, false, _null, _null, t14, _null, new A.Text(t11 + " \u203a " + t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, _null), new A.ListDivider(_null)], t9)); } if (t6 && t4.length !== 0) t3.push(A.EntityListTile$(user, _this.isFilter, _null)); t3.push(new A.FieldGrid(fields, _null)); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t4 = t1.get$invoices(); t5 = $.$get$memoizedInvoiceStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_invoice, t4, t5.call$2(t7, t6._list[t8].invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_task)) { t4 = t1.get$tasks(); t5 = $.$get$memoizedTaskStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_task, t4, t5.call$2(t7, t6._list[t8].taskState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_expense)) { t4 = t1.get$expenses(); t5 = $.$get$memoizedExpenseStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_expense, t4, t5.call$2(t7, t6._list[t8].expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_payment)) { t4 = t1.get$payments(); t5 = $.$get$memoizedPaymentStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t8 = t6._list[t8]; t3.push(new A.EntitiesListTile(client, B.EntityType_payment, t4, t5.call$3(t7, t8.paymentState.map, t8.invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t4 = t1.get$quotes(t1); t5 = $.$get$memoizedQuoteStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_quote, t4, t5.call$2(t7, t6._list[t8].quoteState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_credit)) { t4 = t1.get$credits(); t5 = $.$get$memoizedCreditStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_credit, t4, t5.call$2(t7, t6._list[t8].creditState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_project)) { t4 = t1.get$projects(); t5 = $.$get$memoizedProjectStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_project, t4, t5.call$2(t7, t6._list[t8].projectState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) { t4 = t1.get$recurringInvoices(); t5 = $.$get$memoizedRecurringInvoiceStatsForClient(); t6 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_recurringInvoice, t4, t5.call$2(t7, t6._list[t8].recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_recurringExpense)) { t4 = t1.get$recurringExpenses(); t5 = $.$get$memoizedRecurringExpenseStatsForClient(); t6 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t3.push(new A.EntitiesListTile(client, B.EntityType_recurringExpense, t4, t5.call$2(t7, t6._list[t2].recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } t1 = client.publicNotes; if (t1.length !== 0) B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.IconMessage(t1, _null, _null, _null, _null), new A.ListDivider(_null)], t9)); return new A.ScrollableListView(t3, _null, _null, _null); } }; A.ClientOverview_build_closure.prototype = { call$1(gatewayToken) { var customerReference, clientUrl, _this = this, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex, companyGateway = t1.userCompanyStates._list[t2].companyGatewayState.$get$1(0, gatewayToken.companyGatewayId); if (!companyGateway.get$isNew() && !companyGateway.isDeleted) { customerReference = gatewayToken.customerReference; _this.gatewayMap.$indexSet(0, customerReference, companyGateway); clientUrl = A.GatewayEntity_getClientUrl(customerReference, companyGateway.gatewayId); if (clientUrl != null) _this.linkMap.$indexSet(0, customerReference, clientUrl); t1 = _this.tokenMap; if (t1.containsKey$1(0, customerReference)) t1.$index(0, customerReference).push(gatewayToken); else t1.$indexSet(0, customerReference, A._setArrayType([gatewayToken], type$.JSArray_legacy_GatewayTokenEntity)); } }, $signature: 2278 }; A.ClientOverview_build_closure0.prototype = { call$1(token) { return new A.TokenMeta(token.meta, null); }, $signature: 2279 }; A.ClientOverview_build_closure1.prototype = { call$0() { return A.launch(this.linkMap.$index(0, this.customerReference), null, false); }, $signature: 26 }; A.ClientOverview_build_closure2.prototype = { call$0() { return null; }, $signature: 1 }; A.ClientOverview_build_closure3.prototype = { call$0() { return null; }, $signature: 1 }; A.ClientViewSystemLogs.prototype = { createState$0() { return new A._ClientViewSystemLogsState(B._StateLifecycle_0); } }; A._ClientViewSystemLogsState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var client = this._widget.viewModel.client; if (client.get$isStale()) return new A.LoadingIndicator(null, false, null); return new A.SystemLogViewer(client.systemLogs, null); } }; A.ClientViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientViewScreen_build_closure(this), new A.ClientViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientViewVM); } }; A.ClientViewScreen_build_closure0.prototype = { call$1(store) { return A.ClientViewVM_ClientViewVM$fromStore(store); }, $signature: 2280 }; A.ClientViewScreen_build_closure.prototype = { call$2(context, vm) { var t1 = this.$this; return new A.ClientView(vm, t1.isFilter, t1.isTopFilter, vm.state.uiState.clientUIState.tabIndex, null); }, $signature: 2281 }; A.ClientViewVM.prototype = { get$company() { return this.company; } }; A.ClientViewVM_ClientViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadClient(completer, this.client.id)); return completer.future; }, $signature: 17 }; A.ClientViewVM_ClientViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ClientViewVM_ClientViewVM$fromStore_closure0.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveClientDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.client)); t1.then$1$1(0, new A.ClientViewVM_ClientViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.ClientViewVM_ClientViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.ClientViewVM_ClientViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.ClientViewVM_ClientViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.ClientViewVM_ClientViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ClientViewVM_ClientViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ClientViewVM_ClientViewVM$fromStore_closure1.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.ClientViewVM_ClientViewVM$fromStore__closure(t2, this.client), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.ClientViewVM_ClientViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadClient(null, this.client.id)); }, $signature: 103 }; A.CompanyGatewayList.prototype = { createState$0() { return new A._CompanyGatewayListState(B._StateLifecycle_0); } }; A._CompanyGatewayListState.prototype = { initState$0() { this.super$State$initState(); this._company_gateway_list$_controller = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { this._company_gateway_list$_controller.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), listUIState = state.uiState.companyGatewayUIState.listUIState, t1 = listUIState.selectedIds, viewModel = _this._widget.viewModel, t2 = viewModel.state, t3 = t2.uiState.selectedCompanyIndex; t2 = t2.userCompanyStates._list[t3].lastUpdated; if (t2 <= 0) return new A.LoadingIndicator(_null, false, _null); if (J.get$isEmpty$asx(viewModel.companyGatewayList)) return A.Center$(new A.HelpText(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$noRecordsFound(), _null), _null, _null); t2 = _this._company_gateway_list$_controller; return A.RefreshIndicator$(A.ReorderableListView$(J.map$1$1$ax(_this._widget.viewModel.companyGatewayList, new A._CompanyGatewayListState_build_closure(_this, state, t1 != null, listUIState), type$.legacy_CompanyGatewayListItem).toList$0(0), new A._CompanyGatewayListState_build_closure0(_this), t2), new A._CompanyGatewayListState_build_closure1(_this, context)); } }; A._CompanyGatewayListState_build_closure1.prototype = { call$0() { return this.$this._widget.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._CompanyGatewayListState_build_closure0.prototype = { call$2(oldIndex, newIndex) { var t1 = this.$this; if (newIndex > J.get$length$asx(t1._widget.viewModel.companyGatewayList)) newIndex = J.get$length$asx(t1._widget.viewModel.companyGatewayList); if (oldIndex < newIndex) --newIndex; t1._widget.viewModel.onSortChanged.call$2(oldIndex, newIndex); }, $signature: 147 }; A._CompanyGatewayListState_build_closure.prototype = { call$1(companyGatewayId) { var t4, t5, _this = this, t1 = _this.$this, companyGateway = t1._widget.viewModel.companyGatewayMap._map$_map.$index(0, companyGatewayId), t2 = _this.state, t3 = t2.uiState.selectedCompanyIndex; t3 = t2.userCompanyStates._list[t3].userCompany.user; t2 = t1._widget.viewModel; t4 = t2.filter; t1 = t2.state.uiState.settingsUIState.entityType !== B.EntityType_company ? new A._CompanyGatewayListState_build__closure(t1, companyGatewayId) : null; if (_this.isInMultiselect) { t2 = companyGateway.id; t5 = _this.listUIState.selectedIds; t2 = t5 != null && B.JSArray_methods.contains$1(t5._list, t2); } else t2 = false; return new A.CompanyGatewayListItem(t3, companyGateway, t4, t1, t2, new A.ValueKey("__company_gateway_" + A.S(companyGatewayId), type$.ValueKey_legacy_String)); }, $signature: 2285 }; A._CompanyGatewayListState_build__closure.prototype = { call$0() { return this.$this._widget.viewModel.onRemovePressed.call$1(this.companyGatewayId); }, $signature: 9 }; A.CompanyGatewayListItem.prototype = { build$1(_, context) { var t4, t5, t6, t7, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), t3 = _this.filter, filterMatch = t3 != null && t3.length !== 0 ? _this.companyGateway.matchesFilterValue$1(t3) : _null; t3 = state.uiState; t4 = t3.companyGatewayUIState.listUIState.selectedIds; t5 = state.userCompanyStates; t3 = t3.selectedCompanyIndex; t3 = t5._list[t3].userCompany; t5 = _this.companyGateway; t6 = _this.onRemovePressed; if (t6 == null) t1 = _null; else { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1); t6 = new A.Padding(B.EdgeInsets_0_0_16_0, new A.AppTextButton(t1.get$remove(t1), t6, false, _null, _null), _null); t1 = t6; } t4 = t4 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.CompanyGatewayListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5.get$listDisplayName(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t7 = A._setArrayType([], t7); if (t5.isTestMode) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "test_mode"); t7.push(A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null)); } t7.push(filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t7.push(new A.EntityStateLabel(t5, _null)); return new A.DismissibleEntity(t3, t5, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t4, _null, new A.CompanyGatewayListItem_build_closure0(_this), false, _null, _null, A.Column$(t7, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, t6, t1, _null), false, true, true, _null); }, get$user(receiver) { return this.user; }, get$companyGateway() { return this.companyGateway; } }; A.CompanyGatewayListItem_build_closure0.prototype = { call$0() { return A.selectEntity(this.$this.companyGateway, false, false); }, $signature: 0 }; A.CompanyGatewayListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.CompanyGatewayListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CompanyGatewayListBuilder_build_closure(), A.company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayListVM); } }; A.CompanyGatewayListBuilder_build_closure.prototype = { call$2(context, viewModel) { return new A.CompanyGatewayList(viewModel, null); }, $signature: 2286 }; A.CompanyGatewayListVM.prototype = {}; A.CompanyGatewayListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.CompanyGatewayListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.CompanyGatewayListVM_fromStore_closure1.prototype = { call$1(gatewayId) { var settings, t1 = this.gatewayIds; J.remove$1$ax(t1, gatewayId); settings = this.uiState.get$settings().rebuild$1(new A.CompanyGatewayListVM_fromStore__closure(t1)); this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 11 }; A.CompanyGatewayListVM_fromStore__closure.prototype = { call$1(b) { var t1 = this.gatewayIds, t2 = J.getInterceptor$asx(t1); t1 = t2.get$isEmpty(t1) ? "0" : t2.join$1(t1, ","); b.get$_settings_model$_$this()._companyGatewayIds = t1; return b; }, $signature: 13 }; A.CompanyGatewayListVM_fromStore_closure0.prototype = { call$2(oldIndex, newIndex) { var settings, t1 = this.gatewayIds, t2 = J.getInterceptor$asx(t1), gatewayId = t2.$index(t1, oldIndex); t2.remove$1(t1, gatewayId); t2.insert$2(t1, newIndex, gatewayId); settings = this.uiState.get$settings().rebuild$1(new A.CompanyGatewayListVM_fromStore__closure0(t1)); this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 147 }; A.CompanyGatewayListVM_fromStore__closure0.prototype = { call$1(b) { var t1 = J.join$1$ax(this.gatewayIds, ","); b.get$_settings_model$_$this()._companyGatewayIds = t1; return b; }, $signature: 13 }; A.CompanyGatewayScreen.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, listUIState = t2.companyGatewayUIState.listUIState, settingsUIState = t2.settingsUIState; t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "company_gateways"); t3 = A.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); t6 = this.viewModel; if (t6.isInMultiselect) { t4 = t1.get$actions(t1); t6 = listUIState.selectedIds._list.length === 0 ? _null : new A.CompanyGatewayScreen_build_closure(this, listUIState, store); t5.push(A.SaveCancelButtons$(_null, false, true, true, new A.CompanyGatewayScreen_build_closure0(store), t6, t4)); } else { t4 = A._setArrayType([], t4); if (settingsUIState.entityType !== B.EntityType_company && !state.isSaving) t4.push(A.TextButton$(false, A.Text$(t1.get$reset(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, A._lateReadCheck(store.__Store__state, "_state").get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A.CompanyGatewayScreen_build_closure1(settingsUIState, store), _null)); t7 = settingsUIState.isChanged; t6 = t6.onSavePressed; t4.push(A.SaveCancelButtons$(_null, true, t7, true, A.getLayout(context) === B.AppLayout_mobile || !t7 ? _null : new A.CompanyGatewayScreen_build_closure2(settingsUIState, store), t6, _null)); B.JSArray_methods.addAll$1(t5, t4); } t4 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_companyGateway, false, B.List_empty17, new A.CompanyGatewayScreen_build_closure3(store), new A.CompanyGatewayScreen_build_closure4(store), new A.CompanyGatewayScreen_build_closure5(store), new A.CompanyGatewayScreen_build_closure6(store), new A.CompanyGatewayScreen_build_closure7(store), _null, new A.CompanyGatewayScreen_build_closure8(store), _null, A._setArrayType([], type$.JSArray_legacy_String), B.List_empty18, _null); if (state.prefState.appLayout === B.AppLayout_mobile) { t6 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = t6._list[t2].userCompany.isAdmin; } else t2 = false; t1 = t2 ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "company_gateway_fab", false, new A.CompanyGatewayScreen_build_closure9(settingsUIState, context), t1.get$newCompanyGateway()) : _null; return A.ListScaffold$(t5, B.List_empty12, t3, new A.CompanyGatewayListBuilder(_null), t4, B.EntityType_companyGateway, t1, 0, _null, new A.CompanyGatewayScreen_build_closure10(store), new A.CompanyGatewayScreen_build_closure11(store)); } }; A.CompanyGatewayScreen_build_closure11.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartCompanyGatewayMultiselect()); }, $signature: 9 }; A.CompanyGatewayScreen_build_closure10.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.companyGatewayUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearCompanyGatewayMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartCompanyGatewayMultiselect()); }, $signature: 1 }; A.CompanyGatewayScreen_build_closure.prototype = { call$1(context) { return this.$call$body$CompanyGatewayScreen_build_closure(context); }, $call$body$CompanyGatewayScreen_build_closure(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2, companyGateways; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.listUIState.selectedIds._list; t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); companyGateways = A.List_List$of(new A.MappedListIterable(t1, new A.CompanyGatewayScreen_build__closure0($async$self.$this), t2), true, t2._eval$1("ListIterable.E")); t2 = new A._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new A.CompanyGatewayScreen_build__closure1($async$self.store), type$.dynamic); $async$goto = 2; return A._asyncAwait(A.showEntityActionsDialog(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), companyGateways, true), $async$call$1); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; A.CompanyGatewayScreen_build__closure0.prototype = { call$1(companyGatewayId) { return this.$this.viewModel.companyGatewayMap._map$_map.$index(0, companyGatewayId); }, $signature: 350 }; A.CompanyGatewayScreen_build__closure1.prototype = { call$1(_) { return this.store.get$_dispatchers()[0].call$1(new A.ClearCompanyGatewayMultiselect()); }, $signature: 604 }; A.CompanyGatewayScreen_build_closure0.prototype = { call$1(context) { return this.store.get$_dispatchers()[0].call$1(new A.ClearCompanyGatewayMultiselect()); }, $signature: 51 }; A.CompanyGatewayScreen_build_closure1.prototype = { call$0() { var settings = this.settingsUIState.get$settings().rebuild$1(new A.CompanyGatewayScreen_build__closure()); this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 1 }; A.CompanyGatewayScreen_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._companyGatewayIds = ""; return b; }, $signature: 13 }; A.CompanyGatewayScreen_build_closure2.prototype = { call$1(_) { var _null = null, t1 = this.store; if (this.settingsUIState.isChanged) t1.get$_dispatchers()[0].call$1(new A.ResetSettings()); else t1.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "payment_settings", false, _null)); }, $signature: 14 }; A.CompanyGatewayScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCompanyGatewaysByCustom1(value)); }, $signature: 5 }; A.CompanyGatewayScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCompanyGatewaysByCustom2(value)); }, $signature: 5 }; A.CompanyGatewayScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCompanyGatewaysByCustom3(value)); }, $signature: 5 }; A.CompanyGatewayScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCompanyGatewaysByCustom4(value)); }, $signature: 5 }; A.CompanyGatewayScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterCompanyGatewaysByState(state)); }, $signature: 27 }; A.CompanyGatewayScreen_build_closure3.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.companyGatewayUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearCompanyGatewayMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartCompanyGatewayMultiselect()); }, $signature: 1 }; A.CompanyGatewayScreen_build_closure9.prototype = { call$0() { if (this.settingsUIState.entityType === B.EntityType_company) A.createEntityByType(true, this.context, B.EntityType_companyGateway); }, $signature: 1 }; A.CompanyGatewayScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CompanyGatewayScreenBuilder_build_closure(), A.company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayScreenVM); } }; A.CompanyGatewayScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.CompanyGatewayScreen(vm, null); }, $signature: 2287 }; A.CompanyGatewayScreenVM.prototype = {}; A.CompanyGatewayScreenVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CompanyGatewayScreenVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.CompanyGatewayScreenVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.CompanyGatewayEdit.prototype = { createState$0() { return new A._CompanyGatewayEditState(A.FocusScopeNode$(true, null, false), null, null, B._StateLifecycle_0); } }; A._CompanyGatewayEditState.prototype = { initState$0() { this.super$State$initState(); this._company_gateway_edit$_controller = A.TabController$(null, 0, 3, this); }, didChangeDependencies$0() { var t2, enabledGatewayIds, _this = this, t1 = _this._widget.viewModel, companyGateway = t1.companyGateway, gateway = t1.state.staticState.gatewayMap._map$_map.$index(0, companyGateway.gatewayId); t1 = gateway == null; t2 = t1 ? null : gateway.options; t2 = t2 == null ? null : t2.get$keys(t2); if (t2 == null) t2 = A._setArrayType([], type$.JSArray_legacy_String); enabledGatewayIds = J.where$1$ax(t2, new A._CompanyGatewayEditState_didChangeDependencies_closure(companyGateway)); if (!enabledGatewayIds.get$isEmpty(enabledGatewayIds)) _this._company_gateway_edit$_gatewayTypeId = enabledGatewayIds.get$first(enabledGatewayIds); else { t1 = t1 ? null : gateway.defaultGatewayTypeId; _this._company_gateway_edit$_gatewayTypeId = t1 == null ? "1" : t1; } _this.super$State$didChangeDependencies(); }, dispose$0(_) { this._company_gateway_edit$_controller.dispose$0(0); this._company_gateway_edit$_focusNode.dispose$0(0); this.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t5, gateway, t6, accountId, connectGateways, disableSave, t7, t8, enabledGatewayIds, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, _this = this, _null = null, _s32_ = "d14dd26a47cecc30fdd65700bfb67b34", _s13_ = "gateway_setup", viewModel = _this._widget.viewModel, state = viewModel.state, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), companyGateway = viewModel.companyGateway, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, origCompanyGateway = t2._list[t4].companyGatewayState.$get$1(0, companyGateway.id); t4 = state.staticState.gatewayMap; t2 = companyGateway.gatewayId; t5 = t4._map$_map; gateway = t5.$index(0, t2); t6 = J.$index$asx(companyGateway.get$parsedConfig(), "account_id"); accountId = J.toString$0$(t6 == null ? "" : t6); t6 = type$.JSArray_legacy_String; connectGateways = A._setArrayType([_s32_, "8fdeed552015b3c7b44ed6c8ebd9e992"], t6); disableSave = B.JSArray_methods.contains$1(connectGateways, t2) && companyGateway.get$isNew() || A.cleanApiUrl(state.authState.url) === "https://demo.invoiceninja.com"; t7 = gateway == null; t8 = t7 ? _null : gateway.options; t8 = t8 == null ? _null : t8.get$keys(t8); if (t8 == null) t8 = A._setArrayType([], t6); enabledGatewayIds = J.where$1$ax(t8, new A._CompanyGatewayEditState_build_closure(companyGateway)); t8 = companyGateway.get$isNew() ? t1.get$newCompanyGateway() : origCompanyGateway.get$listDisplayName(); t9 = disableSave ? _null : viewModel.onSavePressed; t10 = viewModel.onCancelPressed; t3 = t3.settingsUIState.updatedAt; t11 = _this._company_gateway_edit$_controller; t12 = A.getLayout(context); t1.toString; t13 = $.$get$LocalizationsProvider__localizedValues(); t14 = t1.localeCode; t15 = J.$index$asx(t13.$index(0, t14), "credentials"); t15 = A.Tab$(_null, t15 == null ? "" : t15); t16 = A.Tab$(_null, t1.get$settings()); t17 = J.$index$asx(t13.$index(0, t14), "limits_and_fees"); t18 = type$.JSArray_legacy_Widget; t17 = A.TabBar$(t11, _null, t12 === B.AppLayout_mobile, new A.ValueKey(t3, type$.ValueKey_legacy_int), _null, A._setArrayType([t15, t16, A.Tab$(_null, t17 == null ? "" : t17)], t18)); t16 = $.$get$_CompanyGatewayEditState__formKey(); t15 = _this._company_gateway_edit$_controller; t3 = A._setArrayType([], t18); if (companyGateway.get$isNew()) { t4 = $.$get$memoizedGatewayList().call$1(t4); t11 = J.$index$asx(t13.$index(0, t14), "provider"); if (t11 == null) t11 = ""; t3.push(A.EntityDropdown$(true, false, true, t2, t4, _null, B.EntityType_gateway, B.List_empty0, t11, _null, _null, new A._CompanyGatewayEditState_build_closure0(viewModel, companyGateway), _null, _null, _null)); } if (B.JSArray_methods.contains$1(connectGateways, t2)) { if (!companyGateway.get$isNew()) t4 = t2 === _s32_ && accountId.length === 0; else t4 = true; if (t4) { t4 = J.$index$asx(t13.$index(0, t14), _s13_); if (t4 == null) t4 = J.$index$asx(t13.$index(0, "en"), _s13_); t4 = t4.toUpperCase(); t4 = A._setArrayType([new A.AppButton(_null, _null, t4, state.isSaving ? _null : new A._CompanyGatewayEditState_build_closure1(viewModel, context, companyGateway), _null, _null)], t18); if (t2 === _s32_) t4.push(new A.Padding(B.EdgeInsets_0_20_0_0, A.OutlinedButton$(new A.Padding(B.EdgeInsets_8_8_8_8, new A.IconText(t1.get$learnMore().toUpperCase(), B._MdiIconData_ujl, _null, _null, _null), _null), _null, new A._CompanyGatewayEditState_build_closure2(), _null), _null)); B.JSArray_methods.addAll$1(t3, t4); } else t3.push(new A.GatewayConfigSettings(companyGateway, viewModel, A._setArrayType(["account_id"], t6), new A.ValueKey("__connect_" + t2 + "__", type$.ValueKey_legacy_String))); } else t3.push(new A.GatewayConfigSettings(companyGateway, viewModel, B.List_empty0, new A.ValueKey("__" + t2 + "__", type$.ValueKey_legacy_String))); t3 = A._setArrayType([new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t3, _null, B.CrossAxisAlignment_3, false, _null, false, _null)], t18), _null, _null, _null)], t18); if (t2 === "54faab2ab6e3223dbe848b1686490baa") t3.push(A.Center$(new A.HelpText(t1.get$noPaymentTypesEnabled(), _null), _null, _null)); else { t4 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, companyGateway.label, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$label(t1), _null, _null, false, new A._CompanyGatewayEditState_build_closure3(viewModel, companyGateway), _null, _null, true, _null, _null, B.TextAlign_4, _null)], t18); t2 = t5.$index(0, t2); if ((t2 == null ? _null : t2.get$supportsTokenBilling()) === true) { t2 = J.$index$asx(t13.$index(0, t14), "capture_card"); if (t2 == null) t2 = ""; t5 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t4.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], t6), new A._CompanyGatewayEditState_build_closure4(t1), t5), true, t5._eval$1("ListIterable.E")), _null, t2, new A._CompanyGatewayEditState_build_closure5(viewModel, companyGateway), _null, false, companyGateway.tokenBilling, type$.legacy_String)); } t4.push(new A.SizedBox(_null, 16, _null, _null)); t2 = t7 ? _null : gateway.options; t2 = t2 == null ? _null : t2.get$keys(t2); t2 = J.get$iterator$ax(t2 == null ? A._setArrayType([], t6) : t2); t5 = companyGateway.feesAndLimitsMap; for (; t2.moveNext$0();) { t6 = t2.get$current(t2); t7 = B.Map_IYMYu.$index(0, t6); t7 = t1.lookup$1(t7 == null ? "" : t7); t11 = A.Theme_of(context).colorScheme; t12 = t5._map$_map.$index(0, t6); if (t12 == null) t12 = A.FeesAndLimitsSettings_FeesAndLimitsSettings(_null); t4.push(A.SwitchListTile$(t11.secondary, _null, new A._CompanyGatewayEditState_build_closure6(companyGateway, t6, viewModel), _null, _null, new A.Text(t7, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12.isEnabled)); } t2 = A.FormCard$(_null, t4, _null, _null, false, _null, false, _null); t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = J.$index$asx(t4.$index(0, t14), "required_fields"); if (t5 == null) t5 = ""; t5 = A.Text$(t5, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null); t6 = A.Theme_of(context).colorScheme; t7 = J.$index$asx(t4.$index(0, t14), "client_name"); t6 = A.CheckboxListTile$(t6.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure7(viewModel, companyGateway), A.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireClientName); t7 = A.Theme_of(context).colorScheme; t11 = J.$index$asx(t4.$index(0, t14), "client_phone"); t7 = A.CheckboxListTile$(t7.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure8(viewModel, companyGateway), A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireClientPhone); t11 = A.Theme_of(context).colorScheme; t12 = J.$index$asx(t4.$index(0, t14), "contact_name"); t11 = A.CheckboxListTile$(t11.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure9(viewModel, companyGateway), A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireContactName); t12 = A.Theme_of(context).colorScheme; t13 = J.$index$asx(t4.$index(0, t14), "contact_email"); t12 = A.CheckboxListTile$(t12.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure10(viewModel, companyGateway), A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireContactEmail); t13 = A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure11(viewModel, companyGateway), A.Text$(t1.get$postalCode(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requirePostalCode); t19 = A.Theme_of(context).colorScheme; t20 = J.$index$asx(t4.$index(0, t14), "cvv"); t19 = A.CheckboxListTile$(t19.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure12(viewModel, companyGateway), A.Text$(t20 == null ? "" : t20, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireCvv); t20 = A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure13(viewModel, companyGateway), A.Text$(t1.get$billingAddress(), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireBillingAddress); t21 = A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._CompanyGatewayEditState_build_closure14(viewModel, companyGateway), A.Text$(t1.get$shippingAddress(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireShippingAddress); t22 = A.Theme_of(context).colorScheme; t23 = J.$index$asx(t4.$index(0, t14), "update_address"); t23 = A.Text$(t23 == null ? "" : t23, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = J.$index$asx(t4.$index(0, t14), "update_address_help"); t3.push(new A.ScrollableListView(A._setArrayType([t2, A.FormCard$(_null, A._setArrayType([new A.Padding(B.EdgeInsets_16_16_0_16, t5, _null), t6, t7, t11, t12, t13, t19, t20, t21, new A.SizedBox(_null, 16, _null, _null), A.SwitchListTile$(t22.secondary, _null, new A._CompanyGatewayEditState_build_closure15(viewModel, companyGateway), _null, A.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), t23, companyGateway.updateDetails)], t18), _null, B.CrossAxisAlignment_0, false, _null, false, _null)], t18), _null, _null, _null)); } if (!enabledGatewayIds.get$iterator(enabledGatewayIds).moveNext$0()) t3.push(A.Center$(new A.HelpText(t1.get$noPaymentTypesEnabled(), _null), _null, _null)); else { t2 = t1.get$paymentType(); t4 = _this._company_gateway_edit$_gatewayTypeId; t5 = enabledGatewayIds.$ti._eval$1("MappedIterable<1,DropdownMenuItem*>"); t4 = A._setArrayType([A.FormCard$(_null, A._setArrayType([A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedIterable(enabledGatewayIds, new A._CompanyGatewayEditState_build_closure16(t1), t5), true, t5._eval$1("Iterable.E")), _null, t2, new A._CompanyGatewayEditState_build_closure17(_this), _null, false, t4, type$.legacy_String)], t18), _null, _null, false, _null, false, _null)], t18); if (enabledGatewayIds.contains$1(0, _this._company_gateway_edit$_gatewayTypeId)) { t1 = _this._company_gateway_edit$_gatewayTypeId; t2 = A.S(t1); t5 = type$.ValueKey_legacy_String; B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.LimitEditor(companyGateway, viewModel, t1, new A.ValueKey("__limits_" + t2 + "__", t5)), new A.FeesEditor(companyGateway, viewModel, t1, new A.ValueKey("__fees_" + t2 + "__", t5))], t18)); } t3.push(new A.ScrollableListView(t4, _null, _null, _null)); } return A.EditScaffold$(_null, t17, new A.AppTabForm(_this._company_gateway_edit$_focusNode, t16, t3, t15, _null, _null), _null, companyGateway, _null, false, _null, t10, t9, _null, t8); } }; A._CompanyGatewayEditState_didChangeDependencies_closure.prototype = { call$1(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, $signature: 16 }; A._CompanyGatewayEditState_build_closure.prototype = { call$1(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, $signature: 16 }; A._CompanyGatewayEditState_build_closure0.prototype = { call$1(gateway) { this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure12(gateway))); }, $signature: 34 }; A._CompanyGatewayEditState_build__closure12.prototype = { call$1(b) { var t1 = b.get$feesAndLimitsMap(), t2 = this.gateway, t3 = t2 == null, t4 = t3 ? A.GatewayEntity_GatewayEntity() : t2; type$.legacy_GatewayEntity._as(t4); t1.$indexSet(0, t4.defaultGatewayTypeId, A.FeesAndLimitsSettings_FeesAndLimitsSettings(true)); t1 = t3 ? null : t2.get$id(t2); if (t1 == null) t1 = ""; b.get$_company_gateway_model$_$this()._gatewayId = t1; b.get$_company_gateway_model$_$this()._config = "{}"; t1 = t3 ? null : t2.get$listDisplayName(); if (t1 == null) t1 = ""; b.get$_company_gateway_model$_$this()._label = t1; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure1.prototype = { call$0() { var t1 = this.viewModel; t1.onCancelPressed.call$1(this.context); t1.onGatewaySignUpPressed.call$1(this.companyGateway.gatewayId); }, $signature: 1 }; A._CompanyGatewayEditState_build_closure2.prototype = { call$0() { return A.launch("https://invoiceninja.github.io/docs/hosted-stripe", null, false); }, $signature: 26 }; A._CompanyGatewayEditState_build_closure3.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure11(value))); }, $signature: 5 }; A._CompanyGatewayEditState_build__closure11.prototype = { call$1(b) { var t1 = J.trim$0$s(this.value); b.get$_company_gateway_model$_$this()._label = t1; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure5.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure10(value))); }, $signature: 12 }; A._CompanyGatewayEditState_build__closure10.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._tokenBilling = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure4.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A._CompanyGatewayEditState_build_closure6.prototype = { call$1(value) { var t1 = this.companyGateway, t2 = this.gatewayTypeId; this.viewModel.onChanged.call$1(t1.rebuild$1(new A._CompanyGatewayEditState_build__closure9(t2, t1.getSettingsForGatewayTypeId$1(t2), value))); }, $signature: 20 }; A._CompanyGatewayEditState_build__closure9.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.gatewayTypeId, this.settings.rebuild$1(new A._CompanyGatewayEditState_build___closure(this.value))); return b; }, $signature: 60 }; A._CompanyGatewayEditState_build___closure.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = this.value; return b; }, $signature: 179 }; A._CompanyGatewayEditState_build_closure7.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure8(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure8.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireClientName = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure8.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure7(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure7.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireClientPhone = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure9.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure6(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure6.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireContactName = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure10.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure5(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure5.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireContactEmail = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure11.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure4(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure4.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requirePostalCode = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure12.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure3(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure3.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireCvv = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure13.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure2(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure2.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireBillingAddress = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure14.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure1(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure1.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._requireShippingAddress = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure15.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure0(value))); }, $signature: 10 }; A._CompanyGatewayEditState_build__closure0.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._updateDetails = this.value; return b; }, $signature: 60 }; A._CompanyGatewayEditState_build_closure16.prototype = { call$1(gatewayTypeId) { var _null = null, t1 = B.Map_IYMYu.$index(0, gatewayTypeId); if (t1 == null) t1 = ""; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, gatewayTypeId, type$.legacy_String); }, $signature: 43 }; A._CompanyGatewayEditState_build_closure17.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._CompanyGatewayEditState_build__closure(t1, value)); }, $signature: 7 }; A._CompanyGatewayEditState_build__closure.prototype = { call$0() { this.$this._company_gateway_edit$_gatewayTypeId = this.value; }, $signature: 1 }; A.GatewayConfigSettings.prototype = { build$1(_, context) { var t2, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), gateway = this.viewModel.state.staticState.gatewayMap._map$_map.$index(0, this.companyGateway.gatewayId); if (gateway == null) return new A.SizedBox(_null, _null, _null, _null); t2 = A._setArrayType([], type$.JSArray_legacy_Widget); if (gateway.siteUrl.length !== 0) t2.push(new A.Padding(B.EdgeInsets_0_16_0_0, A.OutlinedButton$(new A.Padding(B.EdgeInsets_0_8_0_8, new A.IconText(t1.get$learnMore().toUpperCase(), B._MdiIconData_ujl, _null, _null, _null), _null), _null, new A.GatewayConfigSettings_build_closure(gateway), _null), _null)); B.JSArray_methods.addAll$1(t2, J.map$1$1$ax(J.get$keys$x(gateway.get$parsedFields()), new A.GatewayConfigSettings_build_closure0(this, gateway), type$.legacy_GatewayConfigField).toList$0(0)); return A.Column$(t2, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, get$companyGateway() { return this.companyGateway; } }; A.GatewayConfigSettings_build_closure.prototype = { call$0() { return A.launch(this.gateway.siteUrl, null, false); }, $signature: 26 }; A.GatewayConfigSettings_build_closure0.prototype = { call$1(field) { var t1 = this.$this, t2 = this.gateway; return new A.GatewayConfigField(t2, field, J.$index$asx(t1.companyGateway.get$parsedConfig(), field), J.$index$asx(t2.get$parsedFields(), field), new A.GatewayConfigSettings_build__closure(t1, field), !B.JSArray_methods.contains$1(t1.disasbledFields, field), null); }, $signature: 2289 }; A.GatewayConfigSettings_build__closure.prototype = { call$1(value) { var t1 = this.$this; t1.viewModel.onChanged.call$1(t1.companyGateway.updateConfig$2(this.field, value)); }, $signature: 7 }; A.GatewayConfigField.prototype = { createState$0() { return new A._GatewayConfigFieldState(B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, get$value(receiver) { return this.value; } }; A._GatewayConfigFieldState.prototype = { initState$0() { this.super$State$initState(); this._company_gateway_edit$_textController = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { var t1 = this._company_gateway_edit$_textController; t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, didChangeDependencies$0() { var t2, t3, t4, _this = this, t1 = _this.get$_company_gateway_edit$_onChanged(); _this._company_gateway_edit$_textController.removeListener$1(0, t1); t2 = _this._company_gateway_edit$_textController; t3 = _this._widget; t4 = t3.value; t2.set$text(0, J.toString$0$(t4 == null ? t3.defaultValue : t4)); _this._company_gateway_edit$_textController.addListener$1(0, t1); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0() { var t1 = this._widget; t1.toString; t1.onChanged$1(J.trim$0$s(this._company_gateway_edit$_textController._change_notifier$_value.text)); }, _company_gateway_edit$_obscureText$1(field) { var t1 = {}; t1.obscure = false; B.JSArray_methods.forEach$1(A._setArrayType(["password", "secret", "key"], type$.JSArray_legacy_String), new A._GatewayConfigFieldState__obscureText_closure(t1, field)); return t1.obscure; }, build$1(_, context) { var label, options, t2, value, t3, isMultiline, t4, t5, _this = this, _null = null, t1 = _this._widget; if (t1.gateway.id === "d14dd26a37cecc30fdd65700bfb55b23" && t1.field === "apiKey") label = "Secret Key"; else { t1 = t1.field; t1.toString; label = A.toTitleCase(A.stringReplaceAllUnchecked(t1, "_", " ")); } if (B.JSString_methods.startsWith$1(A.S(_this._widget.defaultValue), "[") && B.JSString_methods.endsWith$1(A.S(_this._widget.defaultValue), "]")) { options = A._setArrayType(B.JSString_methods.replaceFirst$2(B.JSString_methods.replaceFirst$2(A.S(_this._widget.defaultValue), "[", ""), "]", "").split(","), type$.JSArray_String); t1 = _this._widget; t2 = t1.value; value = t2 == null || J.$eq$(t2, t1.defaultValue) ? "" : _this._widget.value; t1 = A.toTitleCase(_this._widget.field); t2 = type$.MappedListIterable_of_String_and_legacy_DropdownMenuItem_legacy_String; return A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(options, new A._GatewayConfigFieldState_build_closure(), t2), true, t2._eval$1("ListIterable.E")), _null, t1, new A._GatewayConfigFieldState_build_closure0(_this), _null, false, value, type$.legacy_String); } else { t1 = _this._widget; t2 = t1.field; if (B.JSString_methods.contains$1(t2.toLowerCase(), "color")) return A.FormColorPicker$(t1.value, A.toTitleCase(t2), new A._GatewayConfigFieldState_build_closure1(_this)); else if (J.get$runtimeType$(t1.defaultValue) === B.Type_bool_lhE) { t1 = A.Theme_of(context).colorScheme; t2 = A.Text$(A.toTitleCase(_this._widget.field), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this._widget.value; if (t3 == null) t3 = false; return A.CheckboxListTile$(t1.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._GatewayConfigFieldState_build_closure2(_this), t2, t3); } else { isMultiline = B.JSArray_methods.contains$1(A._setArrayType(["text", "appleDomainVerification"], type$.JSArray_legacy_String), _this._widget.field); t1 = _this._widget; t2 = t1.enabled; t3 = _this._company_gateway_edit$_textController; t4 = isMultiline ? 6 : 1; t1 = _this._company_gateway_edit$_obscureText$1(t1.field); t5 = isMultiline ? B.TextInputType_1_null_null : B.TextInputType_7_null_null; return A.DecoratedFormField$(false, _null, false, false, t3, _null, t2, _null, _null, _null, _null, false, false, _null, t5, label, t4, _null, t1, new A._GatewayConfigFieldState_build_closure3(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null); } } } }; A._GatewayConfigFieldState__obscureText_closure.prototype = { call$1(word) { if (B.JSString_methods.contains$1(this.field.toLowerCase(), word)) this._box_0.obscure = true; }, $signature: 11 }; A._GatewayConfigFieldState_build_closure0.prototype = { call$1(value) { return this.$this._widget.onChanged$1(value); }, $signature: 12 }; A._GatewayConfigFieldState_build_closure.prototype = { call$1(value) { var _null = null, t1 = J.trim$0$s(value); return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.legacy_String); }, $signature: 43 }; A._GatewayConfigFieldState_build_closure1.prototype = { call$1(value) { return this.$this._widget.onChanged$1(value); }, $signature: 5 }; A._GatewayConfigFieldState_build_closure2.prototype = { call$1(value) { return this.$this._widget.onChanged$1(value); }, $signature: 10 }; A._GatewayConfigFieldState_build_closure3.prototype = { call$1(value) { return this.$this._company_gateway_edit$_onChanged$0(); }, $signature: 67 }; A.LimitEditor.prototype = { createState$0() { return new A._LimitEditorState(new A.Debouncer(500, false), B._StateLifecycle_0); }, get$companyGateway() { return this.companyGateway; } }; A._LimitEditorState.prototype = { initState$0() { this.super$State$initState(); var t1 = $.$get$ChangeNotifier__emptyListeners(); this._minController = new A.TextEditingController(B.TextEditingValue_li8, t1); this._maxController = new A.TextEditingController(B.TextEditingValue_li8, t1); }, dispose$0(_) { var t2, t1 = this._minController; t1.toString; t2 = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; t1 = this._maxController; t1.ChangeNotifier__listeners = t2; t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, didChangeDependencies$0() { var t2, settings, t3, t4, t5, t6, _this = this, _null = null, t1 = _this.get$_onTextChange(); _this._minController.removeListener$1(0, t1); _this._maxController.removeListener$1(0, t1); t2 = _this._widget; settings = t2.companyGateway.getSettingsForGatewayTypeId$1(t2.gatewayTypeId); t2 = settings.minLimit; t3 = t2 === -1; if (!t3) _this._enableMin = true; t4 = settings.maxLimit; t5 = t4 === -1; if (!t5) _this._enableMax = true; t6 = _this._minController; if (t3) t2 = ""; else { t3 = _this._framework$_element; t3.toString; t3 = A.formatNumber(t2, t3, _null, _null, B.FormatNumberType_4, true, _null, false); t2 = t3; } t6.set$text(0, t2); t2 = _this._maxController; if (t5) t3 = ""; else { t3 = _this._framework$_element; t3.toString; t3 = A.formatNumber(t4, t3, _null, _null, B.FormatNumberType_4, true, _null, false); } t2.set$text(0, t3); _this._minController.addListener$1(0, t1); _this._maxController.addListener$1(0, t1); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0() { var t1 = this._widget, viewModel = t1.viewModel, companyGateway = viewModel.companyGateway, settings = companyGateway.getSettingsForGatewayTypeId$1(t1.gatewayTypeId), updatedSettings = settings.rebuild$1(new A._LimitEditorState__onChanged_closure(this)); if (!settings.$eq(0, updatedSettings)) viewModel.onChanged.call$1(companyGateway.rebuild$1(new A._LimitEditorState__onChanged_closure0(this, updatedSettings))); }, _onTextChange$0() { this._company_gateway_edit$_debouncer.run$1(new A._LimitEditorState__onTextChange_closure(this)); }, build$1(_, context) { var t4, t5, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$minLimit(), t3 = _this._enableMin; t2 = A.DecoratedFormField$(false, _null, false, false, _this._minController, _null, t3, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t3 = A.Theme_of(context).colorScheme; if (A.getLayout(context) === B.AppLayout_desktop) { t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "enable_min"); if (t4 == null) t4 = ""; } else t4 = t1.get$enable(t1); t5 = type$.JSArray_legacy_Widget; t4 = A.Expanded$(A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 10, _null, _null), A.CheckboxListTile$(t3.secondary, B.EdgeInsets_0_0_0_0, B.ListTileControlAffinity_0, _null, _null, new A._LimitEditorState_build_closure(_this), A.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._enableMin)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t3 = t1.get$maxLimit(); t2 = _this._enableMax; t3 = A.DecoratedFormField$(false, _null, false, false, _this._maxController, _null, t2, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t3, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t2 = A.Theme_of(context).colorScheme; if (A.getLayout(context) === B.AppLayout_desktop) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "enable_max"); if (t1 == null) t1 = ""; } else t1 = t1.get$enable(t1); return A.FormCard$(_null, A._setArrayType([A.Row$(A._setArrayType([t4, new A.SizedBox(40, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 10, _null, _null), A.CheckboxListTile$(t2.secondary, B.EdgeInsets_0_0_0_0, B.ListTileControlAffinity_0, _null, _null, new A._LimitEditorState_build_closure0(_this), A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._enableMax)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t5), _null, _null, false, _null, false, _null); } }; A._LimitEditorState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._enableMin ? A.parseDouble(J.trim$0$s(t1._minController._change_notifier$_value.text), false) : -1; b.get$_company_gateway_model$_$this()._minLimit = t2; t1 = t1._enableMax ? A.parseDouble(J.trim$0$s(t1._maxController._change_notifier$_value.text), false) : -1; b.get$_company_gateway_model$_$this()._maxLimit = t1; return b; }, $signature: 179 }; A._LimitEditorState__onChanged_closure0.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, $signature: 60 }; A._LimitEditorState__onTextChange_closure.prototype = { call$0() { this.$this._company_gateway_edit$_onChanged$0(); }, $signature: 1 }; A._LimitEditorState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._LimitEditorState_build__closure0(t1, value)); }, $signature: 20 }; A._LimitEditorState_build__closure0.prototype = { call$0() { var t1 = this.$this, t2 = this.value; t1._enableMin = t2; t1._company_gateway_edit$_onChanged$0(); if (!t2) t1._minController.set$text(0, ""); }, $signature: 1 }; A._LimitEditorState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._LimitEditorState_build__closure(t1, value)); }, $signature: 20 }; A._LimitEditorState_build__closure.prototype = { call$0() { var t1 = this.$this, t2 = this.value; t1._enableMax = t2; t1._company_gateway_edit$_onChanged$0(); if (!t2) t1._maxController.set$text(0, ""); }, $signature: 1 }; A.FeesEditor.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._FeesEditorState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); }, get$companyGateway() { return this.companyGateway; } }; A._FeesEditorState.prototype = { dispose$0(_) { var t1 = this._company_gateway_edit$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._FeesEditorState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0() { var t4, settings, _this = this, _null = null, t1 = _this._amountController, t2 = _this._percentController, t3 = _this._capController; _this._company_gateway_edit$_controllers = A._setArrayType([t1, t2, t3], type$.JSArray_legacy_TextEditingController); t4 = _this._widget; settings = t4.companyGateway.getSettingsForGatewayTypeId$1(t4.gatewayTypeId); t4 = _this._company_gateway_edit$_controllers; (t4 && B.JSArray_methods).forEach$1(t4, new A._FeesEditorState_didChangeDependencies_closure(_this)); t4 = _this._framework$_element; t4.toString; t1.set$text(0, A.formatNumber(settings.feeAmount, t4, _null, _null, B.FormatNumberType_4, true, _null, false)); t4 = _this._framework$_element; t4.toString; t2.set$text(0, A.formatNumber(settings.feePercent, t4, _null, _null, B.FormatNumberType_4, true, _null, false)); t4 = _this._framework$_element; t4.toString; t3.set$text(0, A.formatNumber(settings.feeCap, t4, _null, _null, B.FormatNumberType_4, true, _null, false)); t4 = _this._company_gateway_edit$_controllers; (t4 && B.JSArray_methods).forEach$1(t4, new A._FeesEditorState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0() { var _this = this, t1 = _this._widget, viewModel = t1.viewModel, companyGateway = viewModel.companyGateway, settings = companyGateway.getSettingsForGatewayTypeId$1(t1.gatewayTypeId), updatedSettings = settings.rebuild$1(new A._FeesEditorState__onChanged_closure(A.parseDouble(J.trim$0$s(_this._amountController._change_notifier$_value.text), false), A.parseDouble(J.trim$0$s(_this._percentController._change_notifier$_value.text), false), A.parseDouble(J.trim$0$s(_this._capController._change_notifier$_value.text), false))); if (!settings.$eq(0, updatedSettings)) _this._company_gateway_edit$_debouncer.run$1(new A._FeesEditorState__onChanged_closure0(_this, viewModel, companyGateway, updatedSettings)); }, build$1(_, context) { var company, settings, t6, fee, fee0, _this = this, _null = null, _s11_ = "fees_sample", t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), t3 = _this._widget, viewModel = t3.viewModel, companyGateway = viewModel.companyGateway, t4 = viewModel.state, t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; company = t5._list[t4].userCompany.company; settings = companyGateway.getSettingsForGatewayTypeId$1(t3.gatewayTypeId); t3 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._percentController, _null, true, _null, _null, _null, _null, false, true, _null, new A.TextInputType(2, true, true), t2.get$feePercent(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._amountController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t2.get$feeAmount(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], type$.JSArray_legacy_Widget); if (company.get$enableFirstItemTaxRate()) t3.push(new A.TaxRateDropdown(t2.get$tax(), new A._FeesEditorState_build_closure(_this, viewModel, companyGateway, settings), settings.taxName1, settings.taxRate1, _null)); if (company.get$enableSecondItemTaxRate()) t3.push(new A.TaxRateDropdown(t2.get$tax(), new A._FeesEditorState_build_closure0(_this, viewModel, companyGateway, settings), settings.taxName2, settings.taxRate2, _null)); if (company.get$enableThirdItemTaxRate()) t3.push(new A.TaxRateDropdown(t2.get$tax(), new A._FeesEditorState_build_closure1(_this, viewModel, companyGateway, settings), settings.taxName3, settings.taxRate3, _null)); t3.push(A.DecoratedFormField$(false, _null, false, false, _this._capController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t2.get$feeCap(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t3.push(new A.SizedBox(_null, 16, _null, _null)); t4 = $.$get$LocalizationsProvider__localizedValues(); t2 = t2.localeCode; t5 = J.$index$asx(t4.$index(0, t2), "adjust_fee_percent"); t5 = A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A.Theme_of(context).colorScheme; t2 = J.$index$asx(t4.$index(0, t2), "adjust_fee_percent_help"); t3.push(new A.LearnMoreUrl(A.SwitchListTile$(t6.secondary, _null, new A._FeesEditorState_build_closure2(_this, viewModel, companyGateway, settings), _null, A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), t5, settings.adjustFeePercent), "https://support.stripe.com/questions/passing-the-stripe-fee-on-to-customers", _null, _null)); t3.push(new A.SizedBox(_null, 16, _null, _null)); t2 = _this._framework$_element; t2.toString; t1 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, t1); t2 = _this._widget; settings = t2.viewModel.companyGateway.getSettingsForGatewayTypeId$1(t2.gatewayTypeId); fee = 0 + settings.feeAmount; t2 = settings.feePercent; if (t2 !== 0) fee = settings.adjustFeePercent ? fee + A.round(100 / (1 - t2 / 100) - 100, 2) : fee + A.round(100 * t2 / 100, 2); t2 = settings.taxRate1; if (t2 !== 0) fee += A.round(100 / t2, 2); t2 = settings.taxRate2; t5 = t2 !== 0; if (t5) fee += A.round(100 / t2, 2); if (t5) fee += A.round(100 / t2, 2); fee0 = settings.feeCap; if (fee0 > 0 && fee > fee0) fee = fee0; t1 = J.$index$asx(t4.$index(0, t1.localeCode), _s11_); if (t1 == null) t1 = J.$index$asx(t4.$index(0, "en"), _s11_); t2 = _this._framework$_element; t2.toString; t2 = J.replaceFirst$2$s(t1, ":amount", A.formatNumber(100, t2, _null, _null, B.FormatNumberType_0, true, _null, false)); t1 = _this._framework$_element; t1.toString; t3.push(A.Text$(B.JSString_methods.replaceFirst$2(t2, ":total", A.formatNumber(fee, t1, _null, _null, B.FormatNumberType_0, true, _null, false)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)); return A.FormCard$(_null, t3, _null, B.CrossAxisAlignment_0, false, _null, false, _null); } }; A._FeesEditorState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_company_gateway_edit$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._FeesEditorState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_company_gateway_edit$_onChanged()); }, $signature: 12 }; A._FeesEditorState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_company_gateway_edit$_onChanged()); }, $signature: 12 }; A._FeesEditorState__onChanged_closure.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._feeAmount = this.amount; b.get$_company_gateway_model$_$this()._feePercent = this.percent; b.get$_company_gateway_model$_$this()._feeCap = this.cap; return b; }, $signature: 179 }; A._FeesEditorState__onChanged_closure0.prototype = { call$0() { var _this = this; _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState__onChanged__closure(_this.$this, _this.updatedSettings))); }, $signature: 1 }; A._FeesEditorState__onChanged__closure.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, $signature: 60 }; A._FeesEditorState_build_closure.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure2(_this.$this, _this.settings, taxRate))); }, $signature: 94 }; A._FeesEditorState_build__closure2.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure2(this.taxRate))); return b; }, $signature: 60 }; A._FeesEditorState_build___closure2.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1 = t1; return b; }, $signature: 179 }; A._FeesEditorState_build_closure0.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure1(_this.$this, _this.settings, taxRate))); }, $signature: 94 }; A._FeesEditorState_build__closure1.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure1(this.taxRate))); return b; }, $signature: 60 }; A._FeesEditorState_build___closure1.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2 = t1; return b; }, $signature: 179 }; A._FeesEditorState_build_closure1.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure0(_this.$this, _this.settings, taxRate))); }, $signature: 94 }; A._FeesEditorState_build__closure0.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure0(this.taxRate))); return b; }, $signature: 60 }; A._FeesEditorState_build___closure0.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3 = t1; return b; }, $signature: 179 }; A._FeesEditorState_build_closure2.prototype = { call$1(value) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure(_this.$this, _this.settings, value))); }, $signature: 10 }; A._FeesEditorState_build__closure.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure(this.value))); return b; }, $signature: 60 }; A._FeesEditorState_build___closure.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._adjustFeePercent = this.value; return b; }, $signature: 179 }; A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CompanyGatewayEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CompanyGatewayEditScreen_build_closure(), new A.CompanyGatewayEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayEditVM); } }; A.CompanyGatewayEditScreen_build_closure0.prototype = { call$1(store) { return A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore(store); }, $signature: 2291 }; A.CompanyGatewayEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.CompanyGatewayEdit(viewModel, new A.ValueKey(viewModel.companyGateway.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2292 }; A.CompanyGatewayEditVM.prototype = { get$companyGateway() { return this.companyGateway; }, get$company() { return this.company; } }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure.prototype = { call$1(companyGateway) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCompanyGateway(companyGateway)); }, $signature: 279 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.CompanyGatewayEntity_CompanyGatewayEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1(this.store, this.state).call$0(); }, $signature: 14 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1.prototype = { call$0() { var t2, $navigator, companyGateway, t3, t1 = $.$get$navigatorKey(); t1.toString; t2 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t1.get$currentState(); t1 = this.store; companyGateway = A._lateReadCheck(t1.__Store__state, "_state").uiState.companyGatewayUIState.editing; t3 = new A._Future($.Zone__current, type$._Future_legacy_CompanyGatewayEntity); t1.get$_dispatchers()[0].call$1(new A.SaveCompanyGatewayRequest(new A._AsyncCompleter(t3, type$._AsyncCompleter_legacy_CompanyGatewayEntity), companyGateway)); return t3.then$1$1(0, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure(companyGateway, t2, t1, this.state, $navigator), type$.Null).catchError$1(new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0()); }, $signature: 37 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure.prototype = { call$1(savedCompanyGateway) { var t3, t4, company, _this = this, _s31_ = "/settings/company_gateways/view", t1 = _this.companyGateway, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_company_gateway"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_company_gateway"); if (t2 == null) t2 = ""; } A.showToast(t2); t2 = _this.store; t3 = A._lateReadCheck(t2.__Store__state, "_state"); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; company = t4._list[t3].userCompany.company; t3 = company.settings.companyGatewayIds; if ((t3 == null ? "" : t3).length !== 0) { t3 = $.Zone__current; t4 = company.rebuild$1(new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0(savedCompanyGateway)); t2.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(new A._AsyncCompleter(new A._Future(t3, type$._Future_Null), type$._AsyncCompleter_Null), t4)); } if (_this.state.prefState.appLayout === B.AppLayout_mobile) { t2.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s31_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s31_, t1, t1); } else t2.pop$1(0, savedCompanyGateway); } else A.viewEntityById(false, savedCompanyGateway.id, B.EntityType_companyGateway, null, true, true); }, $signature: 279 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = J.$add$ansx(t1.get$_settings_model$_$this()._companyGatewayIds, "," + this.savedCompanyGateway.id); t1.get$_settings_model$_$this()._companyGatewayIds = t2; return b; }, $signature: 23 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2.prototype = { call$1(gatewayId) { return this.$call$body$CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(gatewayId); }, $call$body$CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(gatewayId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1, credentials; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; credentials = t1.get$credentials(t1); t1 = $async$self.store; t1.get$_dispatchers()[0].call$1(new A.StartSaving()); t2 = type$.legacy_String; new A.WebClient().post$3$data(credentials.url + "/one_time_token", credentials.token, B.C_JsonCodec.encode$2$toEncodable(A.LinkedHashMap_LinkedHashMap$_literal(["context", A.LinkedHashMap_LinkedHashMap$_literal(["return_url", ""], t2, t2)], t2, type$.legacy_Map_of_legacy_String_and_legacy_String), null)).then$1$1(0, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure(t1, gatewayId, credentials), type$.Null).catchError$1(new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0(t1)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 299 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure.prototype = { call$1(response) { var _this = this; _this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); switch (_this.gatewayId) { case "d14dd26a47cecc30fdd65700bfb67b34": A.launch(A.cleanApiUrl(_this.credentials.url) + "/stripe/signup/" + A.S(J.$index$asx(response, "hash")), null, false); break; case "8fdeed552015b3c7b44ed6c8ebd9e992": A.launch(A.cleanApiUrl(_this.credentials.url) + "/wepay/signup/" + A.S(J.$index$asx(response, "hash")), null, false); break; } }, $signature: 7 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0.prototype = { call$1(error) { var t1; this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); t1 = $.$get$navigatorKey(); t1.toString; A.showErrorDialog(false, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), A.S(error)); }, $signature: 7 }; A.CompanyGatewayView.prototype = { createState$0() { return new A._CompanyGatewayViewState(null, null, B._StateLifecycle_0); } }; A._CompanyGatewayViewState.prototype = { initState$0() { this.super$State$initState(); this._company_gateway_view$_controller = A.TabController$(null, 0, 2, this); }, dispose$0(_) { this._company_gateway_view$_controller.dispose$0(0); this.super$__CompanyGatewayViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, companyGateway = viewModel.companyGateway; t2 = t2.isFilter; t3 = type$.JSArray_legacy_Widget; t1 = A.TabBar$(_this._company_gateway_view$_controller, _null, false, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$overview()), A.Tab$(_null, t1.get$systemLogs())], t3)); t4 = _this._company_gateway_view$_controller; t5 = _this._widget; t6 = t5.viewModel; return new A.ViewScaffold(t2, companyGateway, A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A._CompanyGatewayOverview(t5.isFilter, t6, _null), new A._CompanyGatewayViewState_build_closure(viewModel, context)), A.RefreshIndicator$(new A._CompanyGatewaySystemLog(t6, _null), new A._CompanyGatewayViewState_build_closure0(viewModel, context))], t3), t4, _null), new A._CompanyGatewayViewState_build_closure1(_this), t1, _null); } }; A._CompanyGatewayViewState_build_closure1.prototype = { call$0() { return this.$this._widget.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A._CompanyGatewayViewState_build_closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._CompanyGatewayViewState_build_closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._CompanyGatewayOverview.prototype = { build$1(_, context) { var t2, t3, t4, t5, processed, webhookUrl, allFields, t6, t7, t8, fields, t9, t10, t11, _this = this, _null = null, _s16_ = "verify_customers", _s16_0 = "import_customers", t1 = _this.viewModel, state = t1.state, companyGateway = t1.companyGateway, gateway = state.staticState.gatewayMap._map$_map.$index(0, companyGateway.gatewayId); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = $.$get$memoizedCalculateCompanyGatewayProcessed(); t3 = companyGateway.id; t4 = state.uiState.selectedCompanyIndex; t5 = state.userCompanyStates._list; processed = t2.call$2(t3, t5[t4].paymentState.map); t2 = t5[t4].userCompany; webhookUrl = t2.account.defaultUrl + "/payment_webhook/" + t2.company.companyKey + "/" + t3; t2 = type$.legacy_String; allFields = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.legacy_Map_of_legacy_String_and_legacy_String); for (t6 = J.get$iterator$ax(B.Map_IYMYu.get$keys(B.Map_IYMYu)), t7 = companyGateway.feesAndLimitsMap; t6.moveNext$0();) { t8 = t6.get$current(t6); fields = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t9 = t7._map$_map; if (t9.containsKey$1(0, t8)) { t9 = t9.$index(0, t8); if (t9 == null) t9 = A.FeesAndLimitsSettings_FeesAndLimitsSettings(_null); t10 = t9.feeAmount; if (t10 !== 0) { t1.toString; t11 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "fee_amount"); if (t11 == null) t11 = ""; fields.$indexSet(0, t11, A.formatNumber(t10, context, _null, _null, B.FormatNumberType_0, true, _null, false)); } t10 = t9.feePercent; if (t10 !== 0) { t1.toString; t11 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "fee_percent"); if (t11 == null) t11 = ""; fields.$indexSet(0, t11, A.formatNumber(t10, context, _null, _null, B.FormatNumberType_1, true, _null, false)); } t10 = t9.feeCap; if (t10 !== 0) { t1.toString; t11 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "fee_cap"); if (t11 == null) t11 = ""; fields.$indexSet(0, t11, A.formatNumber(t10, context, _null, _null, B.FormatNumberType_0, true, _null, false)); } t10 = t9.minLimit; if (t10 !== -1) { t1.toString; t11 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "min_limit"); if (t11 == null) t11 = ""; fields.$indexSet(0, t11, A.formatNumber(t10, context, _null, _null, B.FormatNumberType_0, true, _null, false)); } t9 = t9.maxLimit; if (t9 !== -1) { t1.toString; t10 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "max_limit"); if (t10 == null) t10 = ""; fields.$indexSet(0, t10, A.formatNumber(t9, context, _null, _null, B.FormatNumberType_0, true, _null, false)); } if (fields._length !== 0) allFields.$indexSet(0, t8, fields); } } t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t2.$index(0, t6), "processed"); if (t7 == null) t7 = ""; t8 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([A.EntityHeader$(companyGateway, t7, _null, _null, _null, _null, A.formatNumber(processed, context, _null, _null, B.FormatNumberType_0, true, _null, false)), new A.ListDivider(_null)], t8); if (B.JSArray_methods.contains$1(A._setArrayType(["d14dd26a37cecc30fdd65700bfb55b23", "d14dd26a47cecc30fdd65700bfb67b34"], type$.JSArray_legacy_String), gateway.id)) { t9 = A.getLayout(context) === B.AppLayout_desktop ? B._MdiIconData_90Y2 : _null; t10 = J.$index$asx(t2.$index(0, t6), _s16_); if (t10 == null) t10 = J.$index$asx(t2.$index(0, "en"), _s16_); t10 = A.Expanded$(new A.AppButton(_null, t9, t10.toUpperCase(), new A._CompanyGatewayOverview_build_closure(_this, context), _null, _null), 1); t9 = A.getLayout(context) === B.AppLayout_desktop ? B._MdiIconData_7vC0 : _null; t11 = J.$index$asx(t2.$index(0, t6), _s16_0); if (t11 == null) t11 = J.$index$asx(t2.$index(0, "en"), _s16_0); B.JSArray_methods.addAll$1(t7, A._setArrayType([new A.Padding(B.EdgeInsets_16_0_16_20, A.Row$(A._setArrayType([t10, new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, t9, t11.toUpperCase(), new A._CompanyGatewayOverview_build_closure0(_this, context), _null, _null), 1)], t8), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), new A.ListDivider(_null)], t8)); } if (gateway.supportedEvents$0().length !== 0) { t9 = A.Text$(t1.get$webhookUrl(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = A.Text$(webhookUrl, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t6 = J.$index$asx(t2.$index(0, t6), "supported_events"); t2 = t6 == null ? "" : t6; t6 = gateway.supportedEvents$0(); B.JSArray_methods.addAll$1(t7, A._setArrayType([A.ListTile$(false, B.EdgeInsets_22_22_22_22, _null, _null, true, _null, _null, false, _null, _null, _null, new A._CompanyGatewayOverview_build_closure1(webhookUrl, t1), false, _null, _null, A.Column$(A._setArrayType([t10, A.Text$("\n" + t2 + ":\n" + new A.MappedListIterable(t6, new A._CompanyGatewayOverview_build_closure2(), A._arrayInstanceType(t6)._eval$1("MappedListIterable<1,String*>")).join$1(0, "\n"), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t8), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, t9, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null), new A.ListDivider(_null)], t8)); } if (gateway.get$supportsTokenBilling()) B.JSArray_methods.addAll$1(t7, A._setArrayType([new A.EntitiesListTile(companyGateway, B.EntityType_client, t1.get$clients(t1), $.$get$memoizedClientStatsForCompanyGateway().call$2(t3, t5[t4].clientState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, true, _null)], t8)); t7.push(new A.EntitiesListTile(companyGateway, B.EntityType_payment, t1.get$payments(), $.$get$memoizedPaymentStatsForCompanyGateway().call$2(t3, t5[t4].paymentState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, true, _null)); for (t2 = allFields.get$entries(allFields), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); B.JSArray_methods.addAll$1(t7, A._setArrayType([new A.Padding(B.EdgeInsets_20_20_0_0, new A.Text(t1.lookup$1(B.Map_IYMYu.$index(0, t3.get$key(t3))), _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.FieldGrid(t3.get$value(t3), _null)], t8)); } return new A.ScrollableListView(t7, _null, _null, _null); } }; A._CompanyGatewayOverview_build_closure.prototype = { call$0() { return this.$this.viewModel.onStripeVerifyPressed.call$1(this.context); }, $signature: 9 }; A._CompanyGatewayOverview_build_closure0.prototype = { call$0() { return this.$this.viewModel.onStripeImportPressed.call$1(this.context); }, $signature: 9 }; A._CompanyGatewayOverview_build_closure2.prototype = { call$1(e) { return " - " + A.S(e); }, $signature: 15 }; A._CompanyGatewayOverview_build_closure1.prototype = { call$0() { var t1 = this.webhookUrl; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; A._CompanyGatewaySystemLog.prototype = { createState$0() { return new A.__CompanyGatewaySystemLogState(B._StateLifecycle_0); } }; A.__CompanyGatewaySystemLogState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.companyGateway.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var companyGateway = this._widget.viewModel.companyGateway; if (companyGateway.get$isStale()) return new A.LoadingIndicator(null, false, null); return new A.SystemLogViewer(companyGateway.systemLogs, null); } }; A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CompanyGatewayViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CompanyGatewayViewScreen_build_closure(this), new A.CompanyGatewayViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayViewVM); } }; A.CompanyGatewayViewScreen_build_closure0.prototype = { call$1(store) { return A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore(store); }, $signature: 2293 }; A.CompanyGatewayViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.CompanyGatewayView(vm, this.$this.isFilter, null); }, $signature: 2294 }; A.CompanyGatewayViewVM.prototype = { get$companyGateway() { return this.companyGateway; }, get$company() { return this.company; } }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadCompanyGateway(completer, this.companyGateway.id)); return completer.future; }, $signature: 17 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/company_gateways")); }, $signature: 1 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2.prototype = { call$1(context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, credentials = t2.get$credentials(t2); A.passwordCallback(false, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure(this.store, new A.WebClient(), credentials.url + "/stripe/verify", credentials, t1, context), context, false); }, $signature: 14 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure.prototype = { call$2(password, idToken) { var _this = this, t1 = _this.store; t1.get$_dispatchers()[0].call$1(new A.StartSaving()); _this.webClient.post$4$idToken$password(_this.url, _this.credentials.token, idToken, password).then$1$1(0, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure(t1, _this.localization), type$.Null).catchError$1(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0(t1, _this.context)); }, $signature: 38 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure.prototype = { call$1(response) { var t1; this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure(this.localization, response), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.void); }, $signature: 7 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure.prototype = { call$1(context) { var t2, t3, t4, t5, _null = null, _s14_ = "customer_count", t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), _s14_); t2 = A.Text$(t3 == null ? J.$index$asx(t2.$index(0, "en"), _s14_) : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = type$.JSArray_legacy_Widget; t4 = this.response; t5 = J.getInterceptor$asx(t4); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure(context), _null)], t3), B.EdgeInsets_0_0_0_0, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$("Stripe", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.SizedBox(100, _null, A.Text$(A.S(t5.$index(t4, "stripe_customer_count")), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null), A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$("Invoice Ninja", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.SizedBox(100, _null, A.Text$(A.S(J.get$length$asx(type$.legacy_Iterable_dynamic._as(t5.$index(t4, "stripe_customers")))), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 165 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); A.showErrorDialog(false, this.context, error); }, $signature: 7 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1.prototype = { call$1(context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, credentials = t2.get$credentials(t2); A.passwordCallback(false, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0(this.store, new A.WebClient(), credentials.url + "/stripe/import_customers", credentials, context, t1), context, false); }, $signature: 14 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0.prototype = { call$2(password, idToken) { var t2, _this = this, t1 = _this.store; t1.get$_dispatchers()[0].call$1(new A.StartSaving()); t2 = _this.context; _this.webClient.post$4$idToken$password(_this.url, _this.credentials.token, idToken, password).then$1$1(0, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1(t1, t2, _this.localization), type$.Null).catchError$1(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2(t1, t2)); }, $signature: 38 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1.prototype = { call$1(response) { var t1, t2, _s18_ = "imported_customers"; this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s18_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s18_); A.showMessageDialog(this.context, t1, null, null); }, $signature: 7 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); A.showErrorDialog(false, this.context, error); }, $signature: 7 }; A.CreditEmailScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEmailScreen_build_closure(), new A.CreditEmailScreen_build_closure0(), _null, _null, new A.CreditEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailCreditVM); } }; A.CreditEmailScreen_build_closure1.prototype = { call$1(store) { var credit, client, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, creditId = t1.creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; credit = t2[t1].creditState.map._map$_map.$index(0, creditId); t1 = t2[t1].clientState.map; t2 = credit.clientId; client = t1._map$_map.$index(0, t2); if (client.get$isStale()) { t1 = client.id; store.get$_dispatchers()[0].call$1(new A.LoadClient(null, t1)); } }, $signature: 435 }; A.CreditEmailScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, creditId = t1.creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return A.EmailCreditVM_EmailCreditVM$fromStore(store, t2._list[t1].creditState.map._map$_map.$index(0, creditId)); }, $signature: 2296 }; A.CreditEmailScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEmailView(viewModel, null); }, $signature: 2297 }; A.EmailCreditVM.prototype = {}; A.EmailCreditVM_EmailCreditVM$fromStore_closure.prototype = { call$4(context, template, subject, body) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedCredit(), A.getLayout(context) === B.AppLayout_mobile, t1); if (A.getLayout(context) !== B.AppLayout_mobile) completer.future.then$1$1(0, new A.EmailCreditVM_EmailCreditVM$fromStore__closure(this.credit), t1); this.store.get$_dispatchers()[0].call$1(new A.EmailCreditRequest(completer, this.credit.id, template, subject, body)); }, $signature: 295 }; A.EmailCreditVM_EmailCreditVM$fromStore__closure.prototype = { call$1(value) { A.viewEntity(false, this.credit, null, false); }, $signature: 3 }; A.CreditListItem.prototype = { build$1(_, context) { var t6, filterMatch, textColor, t7, t8, _this = this, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, creditUIState = uiState.creditUIState, t2 = _this.credit, listUIState = state.getUIState$1(t2.entityType).get$listUIState(), t3 = listUIState.selectedIds, textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), t4 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t5 = _this.filter; if (t5 != null && t5.length !== 0) { t6 = t2.matchesFilterValue$1(t5); filterMatch = t6 == null ? _this.client.matchesFilterValue$1(t5) : t6; } else filterMatch = _null; textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; t5 = t2.date; if (t5.length !== 0) t1.subtitle = A.formatDate(t5, context, true, true, false); t5 = t2.id; t6 = uiState.get$isEditing() ? creditUIState.editing.id : creditUIState.selectedId; t7 = state.userCompanyStates; t8 = uiState.selectedCompanyIndex; return new A.DismissibleEntity(t7._list[t8].userCompany, t2, new A.LayoutBuilder(new A.CreditListItem_build_closure(t1, _this, t3 != null, listUIState, state, t4, textStyle, filterMatch, textColor), _null), t5 === t6, true, true, _null); }, get$user(receiver) { return this.user; }, get$credit() { return this.credit; } }; A.CreditListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.CreditListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null); else { t2 = t1.credit; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(t1.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.CreditListItem_build__closure0(t1)); t2 = t4; } t3 = t1.credit; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t1.client; t8 = t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(t7.displayName + t8, _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.subtitle; t10 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.amount, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.CreditListItem_build__closure1(t1), new A.CreditListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.CreditListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = A.Expanded$(A.Text$(t1.client.displayName, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1); t5 = t1.credit; t6 = t5.balance; t6 = t6 > 0 ? t6 : t5.amount; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([t4, new A.SizedBox(4, _null, _null, _null), A.Text$(A.formatNumber(t6, context, t5.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t4 = _this.filterMatch; if (t4 == null) { t4 = t5.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t6 = A.formatDate(t5.date, context, true, true, false); t8 = t5.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(B.JSString_methods.trim$0(t4 + t6 + t8), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = t8; } else t4 = A.Text$(t4, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t4 = A.Expanded$(t4, 1); t6 = t5.statusId; t8 = _this.localization.lookup$1(B.Map_qBa3g.$index(0, t6)); t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.CreditListItem_build__closure4(t1), new A.CreditListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([t4, A.Text$(t8, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t6 === "1" ? _this.textColor : new A.CreditStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t6), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t5, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.CreditListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.credit, false, false); return t1; }, $signature: 0 }; A.CreditListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.credit, false, true); return t1; }, $signature: 0 }; A.CreditListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.CreditListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.credit], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.CreditListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.credit, false, false); return t1; }, $signature: 0 }; A.CreditListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.credit, false, true); return t1; }, $signature: 0 }; A.CreditListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.CreditListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditListBuilder_build_closure(), A.credit_list_vm_CreditListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditListVM); } }; A.CreditListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_credit, new A.CreditListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.CreditPresenter(), t2, t4); }, $signature: 2299 }; A.CreditListBuilder_build__closure.prototype = { call$2(context, index) { var t5, _null = null, t1 = this.viewModel, state = t1.state, invoiceId = J.$index$asx(t1.invoiceList, index), invoice = t1.invoiceMap._map$_map.$index(0, invoiceId), t2 = state.getUIState$1(B.EntityType_credit).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; t3 = invoice.clientId; t3 = t1.clientMap._map$_map.$index(0, t3); if (t3 == null) t3 = A.ClientEntity_ClientEntity(_null, _null, _null, _null); if (t2 != null) { t5 = invoice.id; t2 = B.JSArray_methods.contains$1(t2._list, t5); } else t2 = false; return new A.CreditListItem(t4, invoice, t3, t1.filter, t2, _null); }, $signature: 2300 }; A.CreditListVM.prototype = {}; A.CreditListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.CreditListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.CreditListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortCredits(field)); }, $signature: 5 }; A.CreditListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearCreditMultiselect()); }, $signature: 9 }; A.CreditPdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditPdfScreen_build_closure(this), new A.CreditPdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditPdfVM); } }; A.CreditPdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, creditUIState = t1.creditUIState, invoiceId = creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.CreditPdfVM(state, t2._list[t1].creditState.$get$1(0, invoiceId), creditUIState.historyActivityId); }, $signature: 2301 }; A.CreditPdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoicePdfView(vm, this.$this.showAppBar, new A.ValueKey("__credit_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2302 }; A.CreditPdfVM.prototype = {}; A.CreditPresenter.prototype = { getField$2$context$field(context, field) { var t4, t5, client, contact, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), credit = type$.legacy_InvoiceEntity._as(_this.entity), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].clientState; t5 = credit.clientId; client = t4.$get$1(0, t5); switch (field) { case "status": return A.EntityStatusChip$(credit, true, 105); case "number": t2 = credit.number; return A.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return new A.LinkTextRelatedEntity(client, credit, _null); case "date": return A.Text$(A.formatDate(credit.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return A.Text$(A.formatDate(credit.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "valid_until": return A.Text$(A.formatDate(credit.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(credit.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "remaining": case "balance": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(credit.statusId !== "1" ? credit.balance : credit.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, credit.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, credit.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, credit.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, credit.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(credit.publicNotes, _null); case "private_notes": return new A.TableTooltip(credit.privateNotes, _null); case "discount": t1 = credit.isAmountDiscount; t2 = credit.discount; return A.Text$(t1 ? A.formatNumber(t2, context, t5, _null, B.FormatNumberType_0, true, _null, false) : A.formatNumber(t2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return A.Text$(credit.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + credit.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(credit.taxAmount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(credit.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return A.Text$(credit.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "project": return new A.LinkTextRelatedEntity(t2[t3].projectState.$get$1(0, credit.projectId), credit, _null); case "vendor": return new A.LinkTextRelatedEntity(t2[t3].vendorState.$get$1(0, credit.vendorId), credit, _null); case "client_state": return A.Text$(client.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_city": return A.Text$(client.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_postal_code": return A.Text$(client.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": case "contact_email": contact = A.creditContactSelector(credit, t2[t3].clientState.$get$1(0, t5)); if (contact == null) return new A.SizedBox(_null, _null, _null, _null); if (field === "contact_name") { t1 = contact.get$fullName(); return A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return new A.CopyToClipboard(_null, contact.email, true, new A.CreditPresenter_getField_closure(contact), _null, _null); case "partial": return A.Text$(A.formatNumber(credit.partial, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "partial_due_date": return A.Text$(A.formatDate(credit.partialDueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.CreditPresenter_getField_closure.prototype = { call$0() { return A.launch("mailto:" + this.contact.email, null, false); }, $signature: 26 }; A.CreditScreen.prototype = { build$1(_, context) { var company, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.creditUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.creditList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "client", "amount", "date", "remaining"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("discount"); t7.push("valid_until"); t7.push("po_number"); t7.push("public_notes"); t7.push("private_notes"); t7.push("documents"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("tax_amount"); t7.push("exchange_rate"); t7.push("is_viewed"); t7.push("last_sent_date"); t7.push("project"); t7.push("vendor"); t7.push("contact_name"); t7.push("contact_email"); t7.push("client_state"); t7.push("client_city"); t7.push("client_postal_code"); t7.push("client_country"); t7.push("partial"); t7.push("partial_due_date"); t8 = A._setArrayType(["status", "number", "client", "amount", "date", "remaining"], t6); t6 = A._setArrayType(["number", "amount", "updated_at"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t8, B.EntityType_credit, false, B.List_empty17, new A.CreditScreen_build_closure(store), new A.CreditScreen_build_closure0(store), new A.CreditScreen_build_closure1(store), new A.CreditScreen_build_closure2(store), new A.CreditScreen_build_closure3(store), new A.CreditScreen_build_closure4(store), new A.CreditScreen_build_closure5(store), _null, t6, B.List_empty18, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_credit) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "credit_fab", false, new A.CreditScreen_build_closure6(context), t1.get$newCredit()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_credit, t2, new A.CreditScreen_build_closure7(store), t5, _null, _null, new A.CreditScreen_build_closure8(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.CreditListBuilder(_null), t7, B.EntityType_credit, t1, 0, _null, new A.CreditScreen_build_closure9(store), new A.CreditScreen_build_closure10(store)); } }; A.CreditScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartCreditMultiselect()); }, $signature: 9 }; A.CreditScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterCredits(value)); }, $signature: 11 }; A.CreditScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByState(state)); }, $signature: 27 }; A.CreditScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.creditUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearCreditMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartCreditMultiselect()); }, $signature: 1 }; A.CreditScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortCredits(value)); }, $signature: 11 }; A.CreditScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByState(state)); }, $signature: 27 }; A.CreditScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.creditUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearCreditMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartCreditMultiselect()); }, $signature: 1 }; A.CreditScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByCustom1(value)); }, $signature: 5 }; A.CreditScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByCustom2(value)); }, $signature: 5 }; A.CreditScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByCustom3(value)); }, $signature: 5 }; A.CreditScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterCreditsByCustom4(value)); }, $signature: 5 }; A.CreditScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_credit); }, $signature: 1 }; A.CreditScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditScreenBuilder_build_closure(), A.credit_screen_vm_CreditScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditScreenVM); } }; A.CreditScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.CreditScreen(vm, null); }, $signature: 2303 }; A.CreditScreenVM.prototype = {}; A.CreditEdit.prototype = { createState$0() { return new A._CreditEditState(null, null, B._StateLifecycle_0); } }; A._CreditEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._credit_edit$_controller = A.TabController$(null, _this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._credit_edit$_controller.animateTo$1(2); }, dispose$0(_) { this._credit_edit$_controller.dispose$0(0); this.super$__CreditEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _credit_edit$_onSavePressed$2(context, action) { if (!$.$get$_CreditEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _credit_edit$_onSavePressed$1(context) { return this._credit_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, state = viewModel.state, isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_invoice), t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, invoice.clientId); if (invoice.get$isNew()) t4 = t1.get$newCredit(); else { t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_credit"); if (t4 == null) t4 = ""; } t2 = invoice.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._credit_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$items(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$pdf())], t3)); t6 = $.$get$_CreditEditState__formKey(); t7 = _this._widget; if (isFullscreen) t3 = new A.CreditEditDetailsScreen(t7.viewModel, _null); else { t8 = invoice.id; t9 = invoice.updatedAt; t10 = _this._credit_edit$_controller; t7 = t7.viewModel; t9 = A.TabBarView$(A._setArrayType([new A.CreditEditDetailsScreen(t7, _null), new A.InvoiceEditContactsScreen(invoice.entityType, _null), new A.CreditEditItemsScreen(t7, false, _null), new A.CreditEditNotesScreen(_null), new A.CreditEditPDFScreen(_null)], t3), t10, new A.ValueKey("__invoice_" + t8 + "_" + t9 + "__", type$.ValueKey_legacy_String)); t3 = t9; } return A.EditScaffold$(t2, t5, A.Form$(_null, t3, t6), new A.InvoiceEditFooter(invoice, _null), invoice, A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, B.Icon_yXb, "credit_edit_fab", false, new A._CreditEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new A._CreditEditState_build_closure0(_this), new A._CreditEditState_build_closure1(viewModel), new A._CreditEditState_build_closure2(_this), _null, t4); } }; A._CreditEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._CreditEditState_build_closure2.prototype = { call$1(context) { return this.$this._credit_edit$_onSavePressed$1(context); }, $signature: 30 }; A._CreditEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._credit_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._CreditEditState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._CreditEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, $signature: 1 }; A._CreditEditState_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = t1.lineItems._list, t3 = A._arrayInstanceType(t2), t4 = _this.viewModel, t5 = t3._eval$1("MappedIterable<1,BaseEntity*>"); return new A.InvoiceItemSelector(new A._CreditEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._CreditEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._CreditEditState_build___closure1(t4), t5), true, t5._eval$1("Iterable.E")), false, null); }, $signature: 257 }; A._CreditEditState_build___closure0.prototype = { call$1(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 57 }; A._CreditEditState_build___closure1.prototype = { call$1(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = item.taskId; t1 = t2._map$_map.$index(0, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = item.expenseId; t1 = t2._map$_map.$index(0, t1); } return t1; }, $signature: 265 }; A._CreditEditState_build___closure.prototype = { call$3(items, clientId, projectId) { this.viewModel.onItemsAdded.call$3(items, clientId, projectId); if (!this.isFullscreen) this.$this._credit_edit$_controller.animateTo$1(2); }, call$1(items) { return this.call$3(items, null, null); }, call$2(items, clientId) { return this.call$3(items, clientId, null); }, $signature: 268 }; A.__CreditEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CreditEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEditDetailsScreen_build_closure(this), new A.CreditEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditDetailsVM); } }; A.CreditEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore(store); }, $signature: 2307 }; A.CreditEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditDesktop(viewModel, this.$this.viewModel, new A.ValueKey("__credit_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new A.InvoiceEditDetails(viewModel, B.EntityType_credit, null); }, $signature: 2308 }; A.CreditEditDetailsVM.prototype = {}; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure.prototype = { call$1(credit) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCredit(credit)); }, $signature: 137 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0.prototype = { call$3(context, credit, client) { var t1 = this.store, t2 = credit.applyClient$2(this.state, client); t1.get$_dispatchers()[0].call$1(new A.UpdateCredit(t2)); t1.get$_dispatchers()[0].call$1(new A.UpdateCreditClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 286 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit/edit")); }, $signature: 3 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/credit/edit")); }, $signature: 34 }; A.CreditEditItemsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEditItemsScreen_build_closure(this), new A.CreditEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditItemsVM); } }; A.CreditEditItemsScreen_build_closure0.prototype = { call$1(store) { return A.CreditEditItemsVM_CreditEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2312 }; A.CreditEditItemsScreen_build_closure.prototype = { call$2(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new A.InvoiceEditItems(viewModel, t2, null); }, $signature: 2313 }; A.CreditEditItemsVM.prototype = {}; A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeleteCreditItem(index)); }, $signature: 106 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.EditCreditItem(null)); }, $signature: 1 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1.prototype = { call$2(creditItem, index) { var t2, t1 = this.store; if (index === A._lateReadCheck(t1.__Store__state, "_state").uiState.creditUIState.editing.lineItems._list.length) { t2 = creditItem.rebuild$1(new A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure(this.isTasks)); t1.get$_dispatchers()[0].call$1(new A.AddCreditItem(t2)); } else t1.get$_dispatchers()[0].call$1(new A.UpdateCreditItem(index, creditItem)); }, $signature: 233 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure.prototype = { call$1(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 58 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { this.store.get$_dispatchers()[0].call$1(new A.MoveCreditItem(oldIndex, newIndex)); }, $signature: 147 }; A.CreditEditNotesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEditNotesScreen_build_closure(), new A.CreditEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditNotesVM); } }; A.CreditEditNotesScreen_build_closure0.prototype = { call$1(store) { return A.CreditEditNotesVM_CreditEditNotesVM$fromStore(store); }, $signature: 2315 }; A.CreditEditNotesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditNotes(viewModel, null); }, $signature: 2316 }; A.CreditEditNotesVM.prototype = {}; A.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure.prototype = { call$1(credit) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCredit(credit)); }, $signature: 137 }; A.CreditEditPDFScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEditPDFScreen_build_closure(), new A.CreditEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditPDFVM); } }; A.CreditEditPDFScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.CreditEditPDFVM(state, t2._list[t1].userCompany.company, invoice); }, $signature: 2317 }; A.CreditEditPDFScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2318 }; A.CreditEditPDFVM.prototype = {}; A.CreditEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditEditScreen_build_closure(), new A.CreditEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditVM); } }; A.CreditEditScreen_build_closure0.prototype = { call$1(store) { return A.CreditEditVM_CreditEditVM$fromStore(store); }, $signature: 2319 }; A.CreditEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.CreditEdit(viewModel, new A.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2320 }; A.CreditEditVM.prototype = {}; A.CreditEditVM_CreditEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CreditEditVM_CreditEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 170 }; A.CreditEditVM_CreditEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t4, _this = this, t1 = _this.store, credit = A._lateReadCheck(t1.__Store__state, "_state").uiState.creditUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (credit.clientId.length === 0) { A.showDialog(null, true, new A.CreditEditVM_CreditEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!credit.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; if (!A.hasCreditChanges(credit, t2.userCompanyStates._list[t4].creditState.map)) { t2 = _this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = _this.action; if (t2) A.handleEntitiesActions(A._setArrayType([credit], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); t1.get$_dispatchers()[0].call$1(new A.SaveCreditRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), credit, t4)); return t2.then$1$1(0, new A.CreditEditVM_CreditEditVM$fromStore___closure0(credit, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new A.CreditEditVM_CreditEditVM$fromStore___closure1()); } }, $signature: 37 }; A.CreditEditVM_CreditEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 24 }; A.CreditEditVM_CreditEditVM$fromStore___closure0.prototype = { call$1(savedCredit) { var _this = this, _null = null, _s12_ = "/credit/view", t1 = _this.credit, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_credit"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedCredit(); A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedCredit); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedCredit, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_credit) && t2.editAfterSaving) A.editEntity(_null, savedCredit, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedCredit], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedCredit], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedCredit, _null, true); } }, $signature: 64 }; A.CreditEditVM_CreditEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.CreditEditVM_CreditEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.CreditEditVM_CreditEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.CreditEditVM_CreditEditVM$fromStore_closure0.prototype = { call$3(items, clientId, projectId) { var t1; if (items.length === 1) { t1 = this.credit.lineItems._list.length; this.store.get$_dispatchers()[0].call$1(new A.EditCreditItem(t1)); } this.store.get$_dispatchers()[0].call$1(new A.AddCreditItems(items)); }, $signature: 271 }; A.CreditEditVM_CreditEditVM$fromStore_closure1.prototype = { call$1(context) { var _null = null, t1 = this.state.uiState; if (B.JSArray_methods.contains$1(A._setArrayType(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) A.viewEntitiesByType(B.EntityType_credit, _null); else { A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), true); t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.CreditViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditViewScreen_build_closure(this), new A.CreditViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditViewVM); } }; A.CreditViewScreen_build_closure0.prototype = { call$1(store) { return A.CreditViewVM_CreditViewVM$fromStore(store); }, $signature: 2323 }; A.CreditViewScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.creditUIState.tabIndex, null); }, $signature: 2324 }; A.CreditViewVM.prototype = {}; A.CreditViewVM_CreditViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadCredit(completer, this.credit.id)); return completer.future; }, $signature: 17 }; A.CreditViewVM_CreditViewVM$fromStore_closure.prototype = { call$2(context, index) { A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedCredit(), false, type$.legacy_ClientEntity), this.credit, true, index); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 266 }; A.CreditViewVM_CreditViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.CreditViewVM_CreditViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveCreditDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.credit)); t1.then$1$1(0, new A.CreditViewVM_CreditViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.CreditViewVM_CreditViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.CreditViewVM_CreditViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.CreditViewVM_CreditViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.CreditViewVM_CreditViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.CreditViewVM_CreditViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.CreditViewVM_CreditViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.CreditViewVM_CreditViewVM$fromStore__closure(t2, this.credit), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.CreditViewVM_CreditViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadCredit(null, this.credit.id)); }, $signature: 103 }; A.CreditViewVM_CreditViewVM$fromStore_closure3.prototype = { call$3(context, credit, activityId) { this.store.get$_dispatchers()[0].call$1(new A.ShowPdfCredit(credit, context, activityId)); }, call$2(context, credit) { return this.call$3(context, credit, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues() { return [null]; }, $signature: 261 }; A.DashboardActivity.prototype = { build$1(_, context) { var _null = null, t1 = this.viewModel.state, t2 = t1.uiState.selectedCompanyIndex, activities = t1.userCompanyStates._list[t2].userCompany.company.activities; t2 = A.Theme_of(context).backgroundColor; return A.Material$(B.Duration_200000, true, _null, new A.ScrollableListViewBuilder(new A.DashboardActivity_build_closure(activities), new A.DashboardActivity_build_closure0(), activities._list.length, _null, _null, _null), B.Clip_0, t2, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }; A.DashboardActivity_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.DashboardActivity_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list[index], true, null); }, $signature: 347 }; A.DashboardChart.prototype = { createState$0() { return new A._DashboardChartState(B._StateLifecycle_0); }, onDateSelected$2(arg0, arg1) { return this.onDateSelected.call$2(arg0, arg1); } }; A._DashboardChartState.prototype = { _onSelectionChanged$1(model) { var t2, _this = this, t1 = {}, selectedDatum = A.List_List$unmodifiable(model._selectedDatum, A._instanceType(model)._eval$1("SeriesDatum<1>")); t1.date = null; t1.total = 0; if (selectedDatum.length !== 0) { t1.date = B.JSArray_methods.get$first(selectedDatum).datum.get$date(); new A.WhereIterable(selectedDatum, new A._DashboardChartState__onSelectionChanged_closure(), A._arrayInstanceType(selectedDatum)._eval$1("WhereIterable<1>")).forEach$1(0, new A._DashboardChartState__onSelectionChanged_closure0(t1, A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_num))); } _this.setState$1(new A._DashboardChartState__onSelectionChanged_closure1(t1, _this)); t2 = _this._widget; t2.toString; t2.onDateSelected$2(_this._dashboard_chart$_selectedIndex, A.convertDateTimeToSqlDate(t1.date)); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, theme = A.Theme_of(context), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), color = state.prefState.enableDarkMode ? B.Color_toQ : B.Color_ww80, series = J.$index$asx(_this._widget.data, _this._dashboard_chart$_selectedIndex), settings = state.uiState.dashboardUIState.settings, t2 = series.chartSeries, t3 = A._setArrayType([new A.SelectionModelConfig(B.SelectionModelType_0, _this.get$_onSelectionChanged(), type$.SelectionModelConfig_legacy_DateTime)], type$.JSArray_legacy_SelectionModelConfig_legacy_DateTime), layoutBuilder = A.TabularLegendLayout_TabularLegendLayout$horizontalFirst(B.EdgeInsets_8_8_8_8, _null), chart = A.TimeSeriesChart$(t2, true, A._setArrayType([new A.SeriesLegend(A.LinkedHashSet_LinkedHashSet(type$.GestureType), B.SelectionModelType_0, new A.TabularLegendContentBuilder(B.C_SimpleLegendEntryLayout, layoutBuilder), B.BehaviorPosition_0, B.OutsideJustification_4, B.InsideJustification_0, false, B.LegendDefaultMeasure_0, _null, _null, _null, _null, type$.SeriesLegend_legacy_DateTime)], type$.JSArray_legacy_ChartBehavior_legacy_DateTime), A.DateTimeAxisSpec$(A.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, new A.TextStyleSpec(_null, color), new A.LineStyleSpec(color), _null, _null, type$.legacy_DateTime)), A.NumericAxisSpec$(A.GridlineRendererSpec$(_null, new A.TextStyleSpec(_null, color), new A.LineStyleSpec(color), type$.legacy_num)), t3); t2 = _this._widget; t3 = t2.title; t4 = theme.textTheme; t3 = A.Text$(t3, _null, _null, _null, _null, _null, t4.headlineSmall, _null, _null, _null); t5 = A.Divider$(_null, 1, _null); t6 = settings.enableComparison ? 122 : 102; t6 = A.LimitedBox$(A.ListView$(J.map$1$1$ax(t2.data, new A._DashboardChartState_build_closure(_this, context, settings, state, theme, t1), type$.legacy_InkWell).toList$0(0), _null, _null, B.Axis_0, true), t6, 1 / 0); t2 = A.Divider$(_null, 1, _null); t7 = A.ClipRect$(chart, B.Clip_1, _null); t8 = A.Divider$(_null, 1, _null); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "average"); if (t1 == null) t1 = ""; t4 = t4.titleLarge; t1 = A.Expanded$(A.Text$(B.JSString_methods.$add(t1 + ": ", A.formatNumber(series.average, context, _null, _this._widget.currencyId, B.FormatNumberType_0, true, _null, false)), _null, _null, _null, _null, _null, t4, _null, _null, _null), 1); t9 = _this._dashboard_chart$_selected; t4 = t9 != null ? A.Text$(t9, _null, _null, _null, _null, _null, t4, _null, _null, _null) : new A.SizedBox(_null, _null, _null, _null); t9 = type$.JSArray_legacy_Widget; return A.FormCard$(_null, A._setArrayType([new A.Padding(new A.EdgeInsets(0, 8, 0, 24), t3, _null), t5, t6, t2, new A.SizedBox(_null, 240, new A.Padding(B.EdgeInsets_16_16_16_16, t7, _null), _null), t8, A.Container$(_null, A.Row$(A._setArrayType([t1, t4], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(0, 16, 0, 16), _null, _null, _null)], t9), _null, B.CrossAxisAlignment_0, false, _null, false, _null); } }; A._DashboardChartState__onSelectionChanged_closure.prototype = { call$1(datumPair) { return datumPair.series.id === "current"; }, $signature: 2328 }; A._DashboardChartState__onSelectionChanged_closure0.prototype = { call$1(datumPair) { var t1 = this._box_0, t2 = t1.total, t3 = datumPair.datum; t1.total = t2 + t3.get$amount(); this.measures.$indexSet(0, datumPair.series.displayName, t3.get$amount()); }, $signature: 2329 }; A._DashboardChartState__onSelectionChanged_closure1.prototype = { call$0() { var t4, t1 = this._box_0, t2 = t1.date, t3 = this.$this; if (t2 != null) { t2 = t2.toIso8601String$0(); t4 = t3._framework$_element; t4.toString; t4 = A.formatDate(t2, t4, true, true, false); t1 = t1.total; t2 = t3._framework$_element; t2.toString; t3._dashboard_chart$_selected = B.JSString_methods.$add(t4 + " \u2022 ", A.formatNumber(t1, t2, null, t3._widget.currencyId, B.FormatNumberType_0, true, null, false)); } else t3._dashboard_chart$_selected = null; }, $signature: 1 }; A._DashboardChartState_build_closure.prototype = { call$1(dataGroup) { var changePercent, changeString, t6, _this = this, _null = null, t1 = _this.$this, index = J.indexOf$1$asx(t1._widget.data, dataGroup), isSelected = index === t1._dashboard_chart$_selectedIndex, t2 = dataGroup.total, t3 = dataGroup.previousTotal, isIncrease = t2 > t3, t4 = isIncrease ? "+" : "", t5 = _this.context, changeAmount = B.JSString_methods.$add(t4, A.formatNumber(t2 - t3, t5, _null, t1._widget.currencyId, B.FormatNumberType_0, true, _null, false)); t2 = isIncrease ? "+" : ""; t3 = dataGroup.total; if (t3 !== 0 && dataGroup.previousTotal !== 0) { t4 = dataGroup.previousTotal; t4 = A.round((t3 - t4) / t4 * 100, 2); t3 = t4; } else t3 = 0; changePercent = B.JSString_methods.$add(t2, A.formatNumber(t3, t5, _null, t1._widget.currencyId, B.FormatNumberType_1, true, _null, false)); t2 = dataGroup.total; if (t2 !== 0) { t3 = dataGroup.previousTotal; t2 = t3 === 0 || t2 === t3; } else t2 = true; if (t2) changeString = _this.settings.enableComparison ? " " : ""; else changeString = changeAmount + " (" + changePercent + ")"; t2 = isSelected ? _this.state.get$accentColor() : _this.theme.cardColor; t3 = _this.localization.lookup$1(dataGroup.name); t4 = _this.theme.textTheme; t6 = isSelected ? B.Color_4294967295 : _null; t6 = A.Text$(t3, _null, _null, _null, _null, _null, t4.titleLarge.copyWith$1$color(t6), _null, _null, _null); t5 = A.formatNumber(dataGroup.total, t5, _null, t1._widget.currencyId, B.FormatNumberType_0, true, _null, false); t3 = isSelected ? B.Color_4294967295 : _null; t3 = A.Text$(t5, _null, _null, _null, _null, _null, t4.headlineSmall.copyWith$1$color(t3), _null, _null, _null); if (changeString.length !== 0) { if (isSelected) t4 = B.Color_4294967295; else t4 = isIncrease ? B.MaterialColor_Map_JNEaM_4283215696 : B.MaterialColor_Map_JNc9P_4294198070; t4 = A.Text$(changeString, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); } else t4 = new A.SizedBox(_null, _null, _null, _null); return A.InkWell$(false, _null, true, A.Container$(_null, A.Column$(A._setArrayType([t6, new A.SizedBox(_null, 4, _null, _null), t3, new A.SizedBox(_null, 4, _null, _null), t4], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, new A.EdgeInsets(16, 16, 32, 16), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._DashboardChartState_build__closure(t1, index), _null, _null, _null, _null, _null, _null); }, $signature: 2330 }; A._DashboardChartState_build__closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._DashboardChartState_build___closure(t1, this.index)); }, $signature: 1 }; A._DashboardChartState_build___closure.prototype = { call$0() { var t1 = this.$this; t1._dashboard_chart$_selectedIndex = this.index; t1._dashboard_chart$_selected = null; }, $signature: 1 }; A.DashboardDateRangePicker.prototype = { createState$0() { return new A._DashboardDateRangePickerState(B._StateLifecycle_0); }, onSettingsChanged$1(arg0) { return this.onSettingsChanged.call$1(arg0); } }; A._DashboardDateRangePickerState.prototype = { didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); A.print("## LOADING SETTINGS"); t1 = _this._dashboard_date_range_picker$_settings = A.DashboardSettings_fromState(_this._widget.state); if (t1.dateRange !== B.DateRange_custom) { t1.startDate = ""; t1.endDate = A.convertDateTimeToSqlDate(null); } t1 = _this._dashboard_date_range_picker$_settings; if (t1.compareDateRange !== B.DateRangeComparison_customRange) { t1.compareStartDate = ""; t1.compareEndDate = A.convertDateTimeToSqlDate(null); } }, build$1(_, context) { var t5, t6, t7, t8, t9, t0, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.Text$(t1.get$dateRange(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), t3 = $.$get$_$values()._set$_set, t4 = A._instanceType(t3)._eval$1("EfficientLengthMappedIterable*>"); t4 = A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, A.List_List$of(new A.EfficientLengthMappedIterable(t3, new A._DashboardDateRangePickerState_build_closure(t1), t4), true, t4._eval$1("Iterable.E")), new A._DashboardDateRangePickerState_build_closure0(_this), _null, _null, _null, _this._dashboard_date_range_picker$_settings.dateRange, type$.legacy_DateRange); t3 = A.Expanded$(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "compare"); t5 = A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = _this._dashboard_date_range_picker$_settings.enableComparison; t7 = type$.JSArray_legacy_Widget; t6 = A.Row$(A._setArrayType([new A.DropdownButtonHideUnderline(t4, _null), t3, A.Wrap$(B.WrapAlignment_0, A._setArrayType([t5, A.Switch$(A.Theme_of(context).colorScheme.secondary, _null, _null, false, _null, _null, _null, _null, new A._DashboardDateRangePickerState_build_closure1(_this), t6)], t7), B.Clip_0, B.WrapCrossAlignment_2, 0)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t3 = _this._dashboard_date_range_picker$_settings; if (t3.dateRange !== B.DateRange_custom) t3 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t3 = t3.startDate; t3 = A.DatePicker$(false, _null, _null, t1.get$startDate(), _null, new A._DashboardDateRangePickerState_build_closure2(_this), t3, _null); } t4 = _this._dashboard_date_range_picker$_settings; if (t4.dateRange !== B.DateRange_custom) t4 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t4 = t4.endDate; t4 = A.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new A._DashboardDateRangePickerState_build_closure3(_this), t4, _null); } if (_this._dashboard_date_range_picker$_settings.enableComparison) { t5 = $.$get$_$comparisonValues()._set$_set; t8 = A._instanceType(t5)._eval$1("EfficientLengthMappedIterable*>"); t8 = A.List_List$of(new A.EfficientLengthMappedIterable(t5, new A._DashboardDateRangePickerState_build_closure4(t1), t8), true, t8._eval$1("Iterable.E")); t5 = _this._dashboard_date_range_picker$_settings; t9 = t5.compareDateRange; t8 = A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, t8, new A._DashboardDateRangePickerState_build_closure5(_this), _null, _null, _null, t9, type$.legacy_DateRangeComparison); if (t9 !== B.DateRangeComparison_customRange) { t9 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t0 = t9; t9 = t5; t5 = t0; } else { t5 = t1.get$startDate(); t9 = _this._dashboard_date_range_picker$_settings; t5 = A.DatePicker$(false, _null, _null, t5, _null, new A._DashboardDateRangePickerState_build_closure6(_this), t9.compareStartDate, _null); } t9 = t9.compareDateRange !== B.DateRangeComparison_customRange ? A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null) : A.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new A._DashboardDateRangePickerState_build_closure7(_this), _this._dashboard_date_range_picker$_settings.compareEndDate, _null); t9 = A.Column$(A._setArrayType([new A.DropdownButtonHideUnderline(t8, _null), t5, t9], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t5 = t9; } else t5 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.ResponsivePadding(A.Column$(A._setArrayType([A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_24_24_24_24, new A.ScrollableListView(A._setArrayType([t2, new A.SizedBox(_null, 16, _null, _null), t6, t3, t4, new A.SizedBox(_null, 6, _null, _null), t5, new A.Padding(B.EdgeInsets_0_10_10_0, A.Row$(A._setArrayType([new A.AppButton(_null, _null, t1.get$done(), new A._DashboardDateRangePickerState_build_closure8(_this, context), _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null), _null)], t7), _null, _null, _null), _null)], t7), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_0)], t7), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null); } }; A._DashboardDateRangePickerState_build_closure.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.legacy_DateRange); }, $signature: 317 }; A._DashboardDateRangePickerState_build_closure0.prototype = { call$1(dateRange) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure6(t1, dateRange)); }, $signature: 524 }; A._DashboardDateRangePickerState_build__closure6.prototype = { call$0() { return this.$this._dashboard_date_range_picker$_settings.dateRange = this.dateRange; }, $signature: 2332 }; A._DashboardDateRangePickerState_build_closure1.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure5(t1, value)); }, $signature: 20 }; A._DashboardDateRangePickerState_build__closure5.prototype = { call$0() { return this.$this._dashboard_date_range_picker$_settings.enableComparison = this.value; }, $signature: 21 }; A._DashboardDateRangePickerState_build_closure2.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure4(t1, date)); }, $signature: 53 }; A._DashboardDateRangePickerState_build__closure4.prototype = { call$0() { this.$this._dashboard_date_range_picker$_settings.startDate = this.date; }, $signature: 1 }; A._DashboardDateRangePickerState_build_closure3.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure3(t1, date)); }, $signature: 53 }; A._DashboardDateRangePickerState_build__closure3.prototype = { call$0() { this.$this._dashboard_date_range_picker$_settings.endDate = this.date; }, $signature: 1 }; A._DashboardDateRangePickerState_build_closure4.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.legacy_DateRangeComparison); }, $signature: 2333 }; A._DashboardDateRangePickerState_build_closure5.prototype = { call$1(dateRange) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure2(t1, dateRange)); }, $signature: 2334 }; A._DashboardDateRangePickerState_build__closure2.prototype = { call$0() { return this.$this._dashboard_date_range_picker$_settings.compareDateRange = this.dateRange; }, $signature: 2335 }; A._DashboardDateRangePickerState_build_closure6.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure1(t1, date)); }, $signature: 53 }; A._DashboardDateRangePickerState_build__closure1.prototype = { call$0() { this.$this._dashboard_date_range_picker$_settings.compareStartDate = this.date; }, $signature: 1 }; A._DashboardDateRangePickerState_build_closure7.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A._DashboardDateRangePickerState_build__closure0(t1, date)); }, $signature: 53 }; A._DashboardDateRangePickerState_build__closure0.prototype = { call$0() { this.$this._dashboard_date_range_picker$_settings.compareEndDate = this.date; }, $signature: 1 }; A._DashboardDateRangePickerState_build_closure8.prototype = { call$0() { var t1 = this.$this, t2 = t1._dashboard_date_range_picker$_settings; if (t2.dateRange === B.DateRange_custom && J.compareTo$1$ns(t2.startDate, t2.endDate) === 1) { A.showDialog(null, true, new A._DashboardDateRangePickerState_build__closure(), this.context, null, true, type$.legacy_ErrorDialog); return; } t1._widget.onSettingsChanged$1(t2); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._DashboardDateRangePickerState_build__closure.prototype = { call$1(context) { return new A.ErrorDialog("Date range is not valid", false, null); }, $signature: 24 }; A.DashboardPanels.prototype = { _showDateOptions$1(context) { A.showDialog(null, true, new A.DashboardPanels__showDateOptions_closure(this), context, null, true, type$.legacy_DashboardDateRangePicker); }, _dashboard_panels$_header$1(context) { var company, clientMap, groupMap, settings, currencies, state = this.viewModel.state, t1 = state.uiState, t2 = t1.selectedCompanyIndex; t2 = state.userCompanyStates._list[t2]; company = t2.userCompany.company; clientMap = t2.clientState.map; groupMap = t2.groupState.map; settings = t1.dashboardUIState.settings; currencies = $.$get$memoizedGetCurrencyIds().call$3(company, clientMap, groupMap); t1 = J.getInterceptor$asx(currencies); if (t1.get$length(currencies) > 1 && !t1.contains$1(currencies, "-1")) t1.insert$2(currencies, 0, "-1"); return new A.LayoutBuilder(new A.DashboardPanels__header_closure(this, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), settings, company, state, $.$get$memoizedHasMultipleCurrencies().call$3(company, clientMap, groupMap), clientMap, groupMap), null); }, _paymentChart$2$context$onDateSelected(context, onDateSelected) { var t6, currentData, t7, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2], t5 = t4.lastUpdated, isLoaded = t5 > 0 || t4.paymentState.list._list.length !== 0; t5 = $.$get$memoizedChartPayments(); t6 = state.staticState.currencyMap; currentData = t5.call$6(t6, t4.userCompany.company, settings, t4.invoiceState.map, t4.clientState.map, t4.paymentState.map); if (settings.enableComparison) { t4 = $.$get$memoizedPreviousChartPayments(); t5 = t3[t2].userCompany.company; t7 = settings.rebuild$1(new A.DashboardPanels__paymentChart_closure()); t2 = t3[t2]; previousData = t4.call$6(t6, t5, t7, t2.invoiceState.map, t2.clientState.map, t2.paymentState.map); } else previousData = null; return A._DashboardPanel$(context, currentData, isLoaded, new A.DashboardPanels__paymentChart_closure0(onDateSelected, currentData), previousData, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$payments(), t1); }, _quoteChart$2$context$onDateSelected(context, onDateSelected) { var t6, currentData, t7, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2], t5 = t4.lastUpdated, isLoaded = t5 > 0 || t4.quoteState.list._list.length !== 0; t5 = $.$get$memoizedChartQuotes(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.userCompany.company, settings, t4.quoteState.map, t4.clientState.map); if (settings.enableComparison) { t4 = $.$get$memoizedPreviousChartQuotes(); t5 = t3[t2].userCompany.company; t7 = settings.rebuild$1(new A.DashboardPanels__quoteChart_closure()); t2 = t3[t2]; previousData = t4.call$5(t6, t5, t7, t2.quoteState.map, t2.clientState.map); } else previousData = null; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return A._DashboardPanel$(context, currentData, isLoaded, new A.DashboardPanels__quoteChart_closure0(onDateSelected, currentData), previousData, t2.get$quotes(t2), t1); }, _taskChart$2$context$onDateSelected(context, onDateSelected) { var t6, currentData, t7, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2], t5 = t4.lastUpdated, isLoaded = t5 > 0 || t4.taskState.list._list.length !== 0; t5 = $.$get$memoizedChartTasks(); t6 = state.staticState.currencyMap; currentData = t5.call$8(t6, t4.userCompany.company, settings, t4.taskState.map, t4.invoiceState.map, t4.projectState.map, t4.clientState.map, t4.groupState.map); if (settings.enableComparison) { t4 = $.$get$memoizedPreviousChartTasks(); t5 = t3[t2].userCompany.company; t7 = settings.rebuild$1(new A.DashboardPanels__taskChart_closure()); t2 = t3[t2]; previousData = t4.call$8(t6, t5, t7, t2.taskState.map, t2.invoiceState.map, t2.projectState.map, t2.clientState.map, t2.groupState.map); } else previousData = null; return A._DashboardPanel$(context, currentData, isLoaded, new A.DashboardPanels__taskChart_closure0(onDateSelected, currentData), previousData, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$tasks(), t1); }, _expenseChart$2$context$onDateSelected(context, onDateSelected) { var t6, currentData, t7, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2], t5 = t4.lastUpdated, isLoaded = t5 > 0 || t4.expenseState.list._list.length !== 0; t5 = $.$get$memoizedChartExpenses(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.userCompany.company, settings, t4.invoiceState.map, t4.expenseState.map); if (settings.enableComparison) { t4 = $.$get$memoizedPreviousChartExpenses(); t5 = t3[t2].userCompany.company; t7 = settings.rebuild$1(new A.DashboardPanels__expenseChart_closure()); t2 = t3[t2]; previousData = t4.call$5(t6, t5, t7, t2.invoiceState.map, t2.expenseState.map); } else previousData = null; return A._DashboardPanel$(context, currentData, isLoaded, new A.DashboardPanels__expenseChart_closure0(onDateSelected, currentData), previousData, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$expenses(), t1); }, build$1(_, context) { var runningTasks, _this = this, _null = null, state = _this.viewModel.state, t1 = state.uiState.selectedCompanyIndex, t2 = state.userCompanyStates._list, company = t2[t1].userCompany.company, t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t4 = state.staticState.updatedAt; if (!(t4 != null && t4 > 0)) return new A.LoadingIndicator(_null, false, _null); t4 = $.$get$memoizedRunningTasks0(); t1 = t2[t1]; runningTasks = t4.call$2(t1.taskState.map, t1.userCompany.user.id); t1 = A._setArrayType([B.EntityType_dashboard], type$.JSArray_legacy_EntityType); if (company.isModuleEnabled$1(B.EntityType_task) && J.get$isNotEmpty$asx(runningTasks)) t1.push(B.EntityType_taskStatus); if (company.isModuleEnabled$1(B.EntityType_invoice)) t1.push(B.EntityType_invoice); if (company.isModuleEnabled$1(B.EntityType_invoice)) t1.push(B.EntityType_payment); if (company.isModuleEnabled$1(B.EntityType_quote)) t1.push(B.EntityType_quote); if (company.isModuleEnabled$1(B.EntityType_task)) t1.push(B.EntityType_task); if (company.isModuleEnabled$1(B.EntityType_expense)) t1.push(B.EntityType_expense); t1 = A._setArrayType([new A.Padding(B.EdgeInsets_0_50_0_0, new A.ScrollableListViewBuilder(new A.DashboardPanels_build_closure(_this, t1, state, t3, new A.DashboardPanels_build__runningTasks(runningTasks, state, context)), _null, t1.length + 1, _this.scrollController, _null, _null), _null), _this._dashboard_panels$_header$1(context)], type$.JSArray_legacy_Widget); if (state.isLoading) t1.push(A.LinearProgressIndicator$()); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); } }; A.DashboardPanels__showDateOptions_closure.prototype = { call$1(context) { var t1 = this.$this.viewModel; return new A.DashboardDateRangePicker(t1.dashboardUIState, t1.onSettingsChanged, null); }, $signature: 2336 }; A.DashboardPanels__header_closure.prototype = { call$2(context, constraints) { var t3, t4, t5, t6, t7, t8, taxSettings, t9, today, startDateTime, startDateTimeString, endDateTime, dateRange, t10, t11, t12, t13, t14, _this = this, _null = null, _s10_ = "MMM d, yyy", t1 = {}, isWide = constraints.maxWidth > 500, t2 = _this.localization; t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t2.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "gross"); t6 = type$.legacy_bool; t7 = _this.$this; t8 = _this.settings; taxSettings = new A.Padding(B.EdgeInsets_16_0_0_0, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, A._setArrayType([A.DropdownMenuItem$(A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, true, t6), A.DropdownMenuItem$(A.Text$(t2.get$net(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, false, t6)], type$.JSArray_legacy_DropdownMenuItem_legacy_bool), new A.DashboardPanels__header__closure(t7, isWide, context), _null, _null, _null, t8.includeTaxes, t6), _null), _null); t6 = _this.company; t5 = t8.startDate$1(t6); t9 = t8.endDate$1(t6); today = new A.DateTime(Date.now(), false); startDateTime = A.DateTime_tryParse(t5).toLocal$0(); startDateTimeString = A.DateFormat$(A.Primitives_getYear(today) === A.Primitives_getYear(startDateTime) ? "MMM d" : _s10_, _null).format$1(0, startDateTime); endDateTime = A.DateTime_tryParse(t9).toLocal$0(); t5 = type$.JSArray_legacy_Widget; t9 = _this.state; dateRange = A.PopupMenuButton$(new A.Padding(B.EdgeInsets_4_6_0_6, A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(startDateTimeString + " - " + A.DateFormat$(A.Primitives_getYear(today) === A.Primitives_getYear(endDateTime) ? "MMM d" : _s10_, _null).format$1(0, endDateTime), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge.copyWith$1$fontSize(16), _null, _null, _null), _null), new A.SizedBox(6, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null), _null), _null, true, _null, _null, new A.DashboardPanels__header__closure0(t2), new A.DashboardPanels__header__closure1(t7, t9, context), B.EdgeInsets_8_8_8_8, _null, type$.legacy_DateRange); t10 = t1.currencySettings = new A.SizedBox(_null, _null, _null, _null); t11 = _this.hasMultipleCurrencies; if (t11) t10 = t1.currencySettings = new A.Padding(B.EdgeInsets_16_0_0_0, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, false, false, 48, J.map$1$1$ax($.$get$memoizedGetCurrencyIds().call$3(t6, _this.clientMap, _this.groupMap), new A.DashboardPanels__header__closure2(t7, t2), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), new A.DashboardPanels__header__closure3(t7, isWide, context), _null, _null, _null, t8.currencyId, type$.legacy_String), _null), _null); t12 = A.Theme_of(context).cardColor; t13 = A._setArrayType([A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58396_MaterialIcons_null_true, _null, _null), _null, new A.DashboardPanels__header__closure4(t7), B.EdgeInsets_8_8_8_8, _null, _null, B.VisualDensity_m2_m2), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null), _null, new A.DashboardPanels__header__closure5(t7), B.EdgeInsets_8_8_8_8, _null, _null, B.VisualDensity_m2_m2), new A.SizedBox(4, _null, _null, _null)], t5); if (A.getLayout(context) === B.AppLayout_desktop) B.JSArray_methods.addAll$1(t13, A._setArrayType([dateRange, new A.Spacer(_null)], t5)); else B.JSArray_methods.addAll$1(t13, A._setArrayType([A.Expanded$(dateRange, 1)], t5)); if (!isWide) t14 = t6.numberOfInvoiceTaxRates > 0 || t6.numberOfItemTaxRates > 0 || t11; else t14 = false; if (t14) t13.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_dDd, _null, _null), _null, new A.DashboardPanels__header__closure6(t1, context, t2, t8, t11, t6, taxSettings), B.EdgeInsets_8_8_8_8, _null, _null, B.VisualDensity_m2_m2)); else { t1 = A._setArrayType([], t5); if (t6.numberOfInvoiceTaxRates > 0 || t6.numberOfItemTaxRates > 0) t1.push(taxSettings); if (t11) t1.push(t10); B.JSArray_methods.addAll$1(t13, t1); } if (A.getLayout(context) === B.AppLayout_desktop && !t9.uiState.dashboardUIState.showSidebar) { t1 = J.$index$asx(t3.$index(0, t4), "show_sidebar"); if (t1 == null) t1 = ""; t13.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_59064_MaterialIcons_null_false, _null, _null), _null, new A.DashboardPanels__header__closure7(t7), B.EdgeInsets_8_8_8_8, _null, t1, _null)); } return A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_16_8_16_2, A.Row$(t13, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_0, t12, 6, _null, _null, _null, _null, _null, B.MaterialType_0); }, $signature: 2337 }; A.DashboardPanels__header__closure.prototype = { call$1(value) { var $navigator, t1, _this = this; _this.$this.viewModel.onTaxesChanged.call$1(value); if (!_this.isWide) { $navigator = A.Navigator_maybeOf(_this.context); t1 = $navigator != null && $navigator.canPop$0(); } else t1 = false; if (t1) A.Navigator_of(_this.context, false).pop$1(0, null); }, $signature: 20 }; A.DashboardPanels__header__closure0.prototype = { call$1(context) { var t1 = $.$get$_$values()._set$_set, t2 = A._instanceType(t1)._eval$1("EfficientLengthMappedIterable*>"); return A.List_List$of(new A.EfficientLengthMappedIterable(t1, new A.DashboardPanels__header___closure1(this.localization), t2), true, t2._eval$1("Iterable.E")); }, $signature: 2338 }; A.DashboardPanels__header___closure1.prototype = { call$1(dateRange) { var _null = null, t1 = this.localization; return A.PopupMenuItem$(A.Text$(dateRange === B.DateRange_custom ? t1.get$more() + "..." : t1.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), dateRange, type$.legacy_DateRange); }, $signature: 2339 }; A.DashboardPanels__header__closure1.prototype = { call$1(dateRange) { var settings = A.DashboardSettings_fromState(this.state.uiState.dashboardUIState), t1 = this.$this; if (dateRange === B.DateRange_custom) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.DashboardPanels__header___closure0(t1, this.context)); else { settings.dateRange = dateRange; t1.viewModel.onSettingsChanged.call$1(settings); } }, $signature: 524 }; A.DashboardPanels__header___closure0.prototype = { call$1(duration) { this.$this._showDateOptions$1(this.context); }, $signature: 36 }; A.DashboardPanels__header__closure2.prototype = { call$1(currencyId) { var t1, _null = null; if (currencyId === "-1") t1 = this.localization.get$all(); else { t1 = this.$this.viewModel.currencyMap._map$_map.$index(0, currencyId); t1 = t1 == null ? _null : t1.code; } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, currencyId, type$.legacy_String); }, $signature: 43 }; A.DashboardPanels__header__closure3.prototype = { call$1(currencyId) { var $navigator, t1, _this = this; _this.$this.viewModel.onCurrencyChanged.call$1(currencyId); if (!_this.isWide) { $navigator = A.Navigator_maybeOf(_this.context); t1 = $navigator != null && $navigator.canPop$0(); } else t1 = false; if (t1) A.Navigator_of(_this.context, false).pop$1(0, null); }, $signature: 11 }; A.DashboardPanels__header__closure4.prototype = { call$0() { return this.$this.viewModel.onOffsetChanged.call$1(1); }, $signature: 9 }; A.DashboardPanels__header__closure5.prototype = { call$0() { return this.$this.viewModel.onOffsetChanged.call$1(-1); }, $signature: 9 }; A.DashboardPanels__header__closure6.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A.DashboardPanels__header___closure(_this._box_0, _this.localization, _this.settings, _this.hasMultipleCurrencies, _this.company, _this.taxSettings), _this.context, null, true, type$.legacy_AlertDialog); }, $signature: 1 }; A.DashboardPanels__header___closure.prototype = { call$1(context) { var t7, _this = this, _null = null, t1 = _this.localization, t2 = A.Text$(t1.get$settings(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = _this.settings, t4 = type$.JSArray_legacy_Widget, t5 = A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.DashboardPanels__header____closure(context), _null)], t4), t6 = A._setArrayType([], t4); if (_this.hasMultipleCurrencies) t6.push(A.Row$(A._setArrayType([A.Text$(t1.get$currency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.Spacer(_null), _this._box_0.currencySettings], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); t7 = _this.company; if (t7.numberOfInvoiceTaxRates > 0 || t7.numberOfItemTaxRates > 0) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "taxes"); t6.push(A.Row$(A._setArrayType([A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.Spacer(_null), _this.taxSettings], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); } return A.AlertDialog$(t5, B.EdgeInsets_0_0_0_0, _null, A.Column$(t6, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.EdgeInsets_24_20_24_24, new A.ValueKey("__" + t3.includeTaxes + "_" + t3.currencyId + "__", type$.ValueKey_legacy_String), _null, t2); }, $signature: 165 }; A.DashboardPanels__header____closure.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.DashboardPanels__header__closure7.prototype = { call$0() { return this.$this.viewModel.onShowSidebar.call$0(); }, $signature: 9 }; A.DashboardPanels__paymentChart_closure.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + 1; return b; }, $signature: 150 }; A.DashboardPanels__paymentChart_closure0.prototype = { call$2(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 88 }; A.DashboardPanels__quoteChart_closure.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + 1; return b; }, $signature: 150 }; A.DashboardPanels__quoteChart_closure0.prototype = { call$2(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 88 }; A.DashboardPanels__taskChart_closure.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + 1; return b; }, $signature: 150 }; A.DashboardPanels__taskChart_closure0.prototype = { call$2(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 88 }; A.DashboardPanels__expenseChart_closure.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + 1; return b; }, $signature: 150 }; A.DashboardPanels__expenseChart_closure0.prototype = { call$2(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 88 }; A.DashboardPanels_build__runningTasks.prototype = { call$0() { return new A.Padding(B.EdgeInsets_12_20_0_0, A.Wrap$(B.WrapAlignment_0, J.map$1$1$ax(this.runningTasks, new A.DashboardPanels_build__runningTasks_closure(this.state, this.context), type$.legacy_Card).toList$0(0), B.Clip_0, B.WrapCrossAlignment_0, 8), null); }, $signature: 124 }; A.DashboardPanels_build__runningTasks_closure.prototype = { call$1(task) { var t3, t4, client, t5, t6, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = t1[t2].clientState.map; t4 = task.clientId; client = t3._map$_map.$index(0, t4); t4 = A.BorderRadius$circular(2); t3 = A._lateReadCheck(A.StoreProvider_of(this.context, type$.legacy_AppState).__Store__state, "_state").prefState.enableDarkMode; t5 = task.description; t6 = A.Text$(client != null ? client.displayName : task.number, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); return A.Card$(new A.AppBorder(new A.ConstrainedBox(new A.BoxConstraints(0, 180, 0, 1 / 0), A.Tooltip$(A.ListTile$(false, _null, true, _null, true, _null, _null, false, _null, A.ActionMenuButton$(task, task.getActions$2$includeEdit$userCompany(true, t1[t2].userCompany), _null, _null, false, new A.DashboardPanels_build__runningTasks__closure(task)), new A.DashboardPanels_build__runningTasks__closure0(task), new A.DashboardPanels_build__runningTasks__closure1(task, client), false, _null, _null, t6, _null, new A.LiveText(_null, new A.DashboardPanels_build__runningTasks__closure2(task), _null, _null), _null, _null), t5), _null), _null, _null, _null, !t3, _null), _null, _null, 4, _null, true, new A.RoundedRectangleBorder(t4, B.BorderSide_0CF)); }, $signature: 2341 }; A.DashboardPanels_build__runningTasks__closure2.prototype = { call$0() { return A.formatDuration(this.task.calculateDuration$0(), true); }, $signature: 127 }; A.DashboardPanels_build__runningTasks__closure1.prototype = { call$0() { return A.viewEntity(false, this.task, this.client, false); }, $signature: 0 }; A.DashboardPanels_build__runningTasks__closure0.prototype = { call$0() { return A.editEntity(null, this.task, true, null); }, $signature: 0 }; A.DashboardPanels_build__runningTasks__closure.prototype = { call$2(context, action) { return A.handleTaskAction(context, A._setArrayType([this.task], type$.JSArray_legacy_BaseEntity), action); }, $signature: 59 }; A.DashboardPanels_build_closure.prototype = { call$2(context, index) { var t2, t3, t4, t5, t6, _this = this, _null = null, _86400000000 = 864e8, _s24_ = "add_gateway_help_message", _s11_ = "add_gateway", t1 = _this.entityTypes; if (index === t1.length) return new A.SizedBox(_null, 500, _null, _null); switch (t1[index]) { case B.EntityType_dashboard: t1 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([], t1); t3 = _this.state; t4 = t3.prefState; if (!t4.hideReviewApp) { t5 = t3.uiState.selectedCompanyIndex; t5 = t3.userCompanyStates._list[t5].userCompany.company; t5.toString; t5 = B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, Date.now() - A.convertTimestampToDate(t5.createdAt)._value, 0, 0)._duration, _86400000000); t5 = t5 > (A.isAndroid() || A.isIOS() ? 60 : 120); } else t5 = false; if (t5) t2.push(new A.ReviewApp(_null)); t5 = t3.uiState.selectedCompanyIndex; t3 = t3.userCompanyStates._list; t6 = t3[t5].userCompany; if (t6.isAdmin) { t6 = t6.company; t6.toString; t3 = B.JSInt_methods._tdivFast$1(A.Duration$(0, 0, 0, Date.now() - A.convertTimestampToDate(t6.createdAt)._value, 0, 0)._duration, _86400000000) < 30 && !t4.hideGatewayWarning && t3[t5].companyGatewayState.list._list.length === 0; } else t3 = false; if (t3) { t3 = A.getLayout(context) === B.AppLayout_mobile ? new A.DashboardPanels_build__closure(context) : _null; t4 = _this.localization; t4.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t4 = t4.localeCode; t6 = J.$index$asx(t5.$index(0, t4), _s24_); t1 = A._setArrayType([A.Expanded$(A.Text$(t6 == null ? J.$index$asx(t5.$index(0, "en"), _s24_) : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t1); if (A.getLayout(context) === B.AppLayout_desktop) { t4 = J.$index$asx(t5.$index(0, t4), _s11_); t1.push(A.TextButton$(false, A.Text$(t4 == null ? J.$index$asx(t5.$index(0, "en"), _s11_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.DashboardPanels_build__closure0(context), _null)); } t1.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A.DashboardPanels_build__closure1(context), B.EdgeInsets_8_8_8_8, _null, _null, _null)); t2.push(new A.Padding(B.EdgeInsets_0_8_0_0, A.FormCard$(A.InkWell$(false, _null, true, A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null), _null, _null, _null, false, _null, false, _null), _null)); } return A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); case B.EntityType_invoice: t1 = _this.$this; return new A._InvoiceChart(t1.viewModel, context, new A.DashboardPanels_build__closure2(t1), _null); case B.EntityType_payment: t1 = _this.$this; return t1._paymentChart$2$context$onDateSelected(context, new A.DashboardPanels_build__closure3(t1)); case B.EntityType_quote: t1 = _this.$this; return t1._quoteChart$2$context$onDateSelected(context, new A.DashboardPanels_build__closure4(t1)); case B.EntityType_task: t1 = _this.$this; return t1._taskChart$2$context$onDateSelected(context, new A.DashboardPanels_build__closure5(t1)); case B.EntityType_expense: t1 = _this.$this; return t1._expenseChart$2$context$onDateSelected(context, new A.DashboardPanels_build__closure6(t1)); case B.EntityType_taskStatus: return _this._runningTasks.call$0(); } return new A.SizedBox(_null, _null, _null, _null); }, $signature: 131 }; A.DashboardPanels_build__closure.prototype = { call$0() { return A.createEntityByType(true, this.context, B.EntityType_companyGateway); }, $signature: 0 }; A.DashboardPanels_build__closure0.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_companyGateway); }, $signature: 1 }; A.DashboardPanels_build__closure1.prototype = { call$0() { A.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers()[0].call$1(new A.DismissGatewayWarningPermanently()); }, $signature: 1 }; A.DashboardPanels_build__closure2.prototype = { call$1(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(B.EntityType_invoice, entityIds); }, $signature: 219 }; A.DashboardPanels_build__closure3.prototype = { call$1(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(B.EntityType_payment, entityIds); }, $signature: 219 }; A.DashboardPanels_build__closure4.prototype = { call$1(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(B.EntityType_quote, entityIds); }, $signature: 219 }; A.DashboardPanels_build__closure5.prototype = { call$1(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(B.EntityType_task, entityIds); }, $signature: 219 }; A.DashboardPanels_build__closure6.prototype = { call$1(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(B.EntityType_expense, entityIds); }, $signature: 219 }; A._DashboardPanel.prototype = { createState$0() { return new A.__DashboardPanelState(B._StateLifecycle_0); } }; A.__DashboardPanelState.prototype = { build$1(_, context) { var t4, _this = this, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, t3 = t2.viewModel, settings = t3.dashboardUIState.settings, state = t3.state; if (!t2.isLoaded) return new A.LoadingIndicator(null, true, null); if (_this._dashboard_panels$_chart != null && J.$eq$(_this._currentData, t2.currentData) && J.$eq$(_this._previousData, _this._widget.previousData)) return _this._dashboard_panels$_chart; t2 = _this._widget; t3 = t2.currentData; _this._currentData = t3; _this._previousData = t2.previousData; J.forEach$1$ax(t3, new A.__DashboardPanelState_build_closure(_this, settings, t1, state)); t1 = _this._widget; t3 = t1.currentData; t2 = t1.title; t1 = t1.onDateSelected; t4 = settings.currencyId; if (!(t4.length !== 0)) { t4 = state.uiState.selectedCompanyIndex; t4 = state.userCompanyStates._list[t4].userCompany.company.settings.currencyId; if (t4 == null) t4 = "1"; } return _this._dashboard_panels$_chart = new A.DashboardChart(t3, t2, t4, t1, null); } }; A.__DashboardPanelState_build_closure.prototype = { call$1(dataGroup) { var t2, previous, currentSeries, previousSeries, i, t3, t4, _this = this, _s8_ = "previous", t1 = _this.$this, index = J.indexOf$1$asx(t1._widget.currentData, dataGroup); dataGroup.chartSeries = A._setArrayType([], type$.JSArray_legacy_Series_of_dynamic_and_legacy_DateTime); t2 = _this.settings.enableComparison; if (t2) { previous = A._setArrayType([], type$.JSArray_legacy_ChartMoneyData); currentSeries = dataGroup.rawSeries; previousSeries = J.$index$asx(t1._widget.previousData, index).rawSeries; dataGroup.previousTotal = J.$index$asx(t1._widget.previousData, index).total; for (i = 0; i < Math.min(currentSeries.length, previousSeries.length); ++i) previous.push(new A.ChartMoneyData(currentSeries[i].date, previousSeries[i].amount)); t3 = dataGroup.chartSeries; t4 = _this.localization; t4.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), _s8_); if (t4 == null) t4 = ""; t3.push(A.Series_Series(new A.__DashboardPanelState_build__closure(), previous, t4, new A.__DashboardPanelState_build__closure0(), _s8_, new A.__DashboardPanelState_build__closure1(), new A.__DashboardPanelState_build__closure2(), type$.legacy_ChartMoneyData, type$.legacy_DateTime)); } t3 = dataGroup.chartSeries; if (t2) { t1 = _this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "current"); if (t1 == null) t1 = ""; } else t1 = t1._widget.title; t3.push(A.Series_Series(new A.__DashboardPanelState_build__closure3(_this.state), dataGroup.rawSeries, t1, new A.__DashboardPanelState_build__closure4(), "current", new A.__DashboardPanelState_build__closure5(), new A.__DashboardPanelState_build__closure6(), type$.legacy_ChartMoneyData, type$.legacy_DateTime)); }, $signature: 2342 }; A.__DashboardPanelState_build__closure0.prototype = { call$2(chartData, _) { return chartData.date; }, $signature: 520 }; A.__DashboardPanelState_build__closure1.prototype = { call$2(chartData, _) { return chartData.amount; }, $signature: 337 }; A.__DashboardPanelState_build__closure.prototype = { call$2(chartData, _) { return B.Color_ePM; }, $signature: 515 }; A.__DashboardPanelState_build__closure2.prototype = { call$2(_a, _b) { return 2.5; }, $signature: 337 }; A.__DashboardPanelState_build__closure4.prototype = { call$2(chartData, _) { return chartData.date; }, $signature: 520 }; A.__DashboardPanelState_build__closure5.prototype = { call$2(chartData, _) { return chartData.amount; }, $signature: 337 }; A.__DashboardPanelState_build__closure3.prototype = { call$2(chartData, _) { return A.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 515 }; A.__DashboardPanelState_build__closure6.prototype = { call$2(_a, _b) { return 2.5; }, $signature: 337 }; A._InvoiceChart.prototype = { build$1(_, context) { var t6, currentData, t7, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2], t5 = t4.lastUpdated, isLoaded = t5 > 0 || t4.invoiceState.list._list.length !== 0; t5 = $.$get$memoizedChartInvoices(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.userCompany.company, settings, t4.invoiceState.map, t4.clientState.map); if (settings.enableComparison) { t4 = $.$get$memoizedPreviousChartInvoices(); t5 = t3[t2].userCompany.company; t7 = settings.rebuild$1(new A._InvoiceChart_build_closure()); t2 = t3[t2]; previousData = t4.call$5(t6, t5, t7, t2.invoiceState.map, t2.clientState.map); } else previousData = null; return A._DashboardPanel$(context, currentData, isLoaded, new A._InvoiceChart_build_closure0(this, currentData), previousData, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$invoices(), t1); } }; A._InvoiceChart_build_closure.prototype = { call$1(b) { var t1 = b.get$_dashboard_state$_$this()._dashboard_state$_offset; b.get$_dashboard_state$_$this()._dashboard_state$_offset = t1 + 1; return b; }, $signature: 150 }; A._InvoiceChart_build_closure0.prototype = { call$2(index, date) { return this.$this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 88 }; A.DashboardScreen.prototype = { createState$0() { return new A._DashboardScreenState(A._setArrayType([], type$.JSArray_legacy_EntityType), null, null, B._StateLifecycle_0); } }; A._DashboardScreenState.prototype = { initState$0() { var state, t1, t2, t3, company, entityType, index, _this = this; _this.super$State$initState(); state = _this._widget.viewModel.state; t1 = state.uiState; t2 = t1.selectedCompanyIndex; t3 = state.userCompanyStates._list; company = t3[t2].userCompany.company; entityType = t1.dashboardUIState.selectedEntityType; B.JSArray_methods.forEach$1(A._setArrayType([B.EntityType_invoice, B.EntityType_payment, B.EntityType_quote, B.EntityType_task, B.EntityType_expense], type$.JSArray_legacy_EntityType), new A._DashboardScreenState_initState_closure(_this, company)); t1 = _this._tabs; index = B.JSArray_methods.contains$1(t1, entityType) ? B.JSArray_methods.indexOf$1(t1, entityType) : 0; _this._mainTabController = A.TabController$(null, 0, state.prefState.appLayout === B.AppLayout_mobile ? 3 + t1.length : 3, _this); t1 = A.TabController$(null, index, t1.length, _this); t1.addListener$1(0, _this.get$onTabListener()); _this._sideTabController = t1; t1 = new A.ScrollController(index * 539, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); t1.addListener$1(0, _this.get$onScrollListener()); _this._dashboard_screen$_scrollController = t1; if (A.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com") { t1 = t3[t2].userCompany.company; t2 = t1.settings.name; t1 = (t2 == null ? "" : t2).length === 0 && !t1.get$isNew(); } else t1 = false; if (t1) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._DashboardScreenState_initState_closure0(_this, state)); }, onScrollListener$0() { var offsetIndex, t2, _this = this, t1 = _this._framework$_element; t1.toString; if (A.getLayout(t1) === B.AppLayout_mobile) return; t1 = B.JSArray_methods.get$single(_this._dashboard_screen$_scrollController._positions)._pixels; t1.toString; offsetIndex = B.JSNumber_methods.floor$0((t1 + 120) / 539); t1 = _this._sideTabController; if (t1._tab_controller$_index !== offsetIndex && offsetIndex < _this._tabs.length) { t2 = _this.get$onTabListener(); t1.removeListener$1(0, t2); _this._sideTabController._changeIndex$1(offsetIndex); _this._sideTabController.addListener$1(0, t2); _this._widget.viewModel.onEntityTypeChanged.call$1(_this._tabs[offsetIndex]); } }, onTabListener$0() { var index, _this = this, t1 = _this._framework$_element; t1.toString; if (A.getLayout(t1) === B.AppLayout_mobile || _this._mainTabController._tab_controller$_index !== 0) return; index = _this._sideTabController._tab_controller$_index; t1 = B.JSArray_methods.get$single(_this._dashboard_screen$_scrollController._positions)._pixels; t1.toString; if (index !== B.JSNumber_methods.floor$0((t1 + 120) / 539)) { _this._dashboard_screen$_scrollController.jumpTo$1(index * 539 + 1); _this._widget.viewModel.onEntityTypeChanged.call$1(_this._tabs[index]); } }, dispose$0(_) { var t1, _this = this; _this._mainTabController.dispose$0(0); t1 = _this._sideTabController; t1.removeListener$1(0, _this.get$onTabListener()); t1.dispose$0(0); t1 = _this._dashboard_screen$_scrollController; t1.removeListener$1(0, _this.get$onScrollListener()); t1.dispose$0(0); _this.super$__DashboardScreenState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var company, t6, leading, t7, t8, t9, t10, t11, t12, mainScaffold, _this = this, _null = null, _s16_ = "enable_react_app", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.legacy_AppState, store = A.StoreProvider_of(context, t2), state = A._lateReadCheck(store.__Store__state, "_state"), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; company = t3[t5].userCompany.company; if (A.getLayout(context) !== B.AppLayout_mobile) { t6 = state.prefState; t6 = t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float; } else t6 = true; leading = t6 ? new A.Builder(new A._DashboardScreenState_build_closure(t1), _null) : _null; if (A.getLayout(context) !== B.AppLayout_mobile) { t6 = state.prefState; t6 = t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float; } else t6 = true; t6 = t6 ? new A.MenuDrawerBuilder(_null) : _null; if (A.getLayout(context) !== B.AppLayout_mobile) { t7 = state.prefState; t7 = t7.appLayout === B.AppLayout_mobile || t7.historySidebarMode === B.AppSidebarMode_float; } else t7 = true; t7 = t7 ? new A.HistoryDrawerBuilder(_null) : _null; t8 = type$.JSArray_legacy_Widget; t9 = A._setArrayType([], t8); if (A.getLayout(context) === B.AppLayout_desktop) t9.push(A.Expanded$(new A.Padding(B.EdgeInsets_0_0_16_0, A.TabBar$(_this._mainTabController, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$overview()), A.Tab$(_null, t1.get$activity()), A.Tab$(_null, t1.get$systemLogs())], t8)), _null), 3)); t10 = t4.filterClearedAt; t11 = A._setArrayType([], type$.JSArray_legacy_String); t9.push(A.Expanded$(new A.ListFilter(B.EntityType_dashboard, t4.filter, new A._DashboardScreenState_build_closure0(store), t11, _null, _null, _null, new A.ValueKey("__cleared_at_" + t10 + "__", type$.ValueKey_legacy_String)), 2)); t9 = A.Row$(t9, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t10 = A._setArrayType([], t8); t1.toString; t11 = $.$get$LocalizationsProvider__localizedValues(); t12 = J.$index$asx(t11.$index(0, t1.localeCode), _s16_); t11 = t12 == null ? J.$index$asx(t11.$index(0, "en"), _s16_) : t12; t10.push(new A.Padding(B.EdgeInsets_0_0_10_0, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B._MdiIconData_agj, _null, _null), _null, new A._DashboardScreenState_build_closure1(state, store, context), B.EdgeInsets_8_8_8_8, _null, t11, _null), _null)); if (t3[t5].userCompany.isOwner && !state.get$isHosted() && A.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com" && !A._lateReadCheck(A.StoreProvider_of(context, t2).__Store__state, "_state").get$isPaidAccount() && !A.isApple()) { t2 = state.prefState.enableTooltips ? t1.get$upgrade() : _null; t10.push(new A.Padding(B.EdgeInsets_0_0_10_0, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57494_MaterialIcons_null_false, _null, _null), _null, new A._DashboardScreenState_build_closure2(state), B.EdgeInsets_8_8_8_8, _null, t2, _null), _null)); } if (A.getLayout(context) === B.AppLayout_mobile || !state.prefState.isHistoryVisible) t10.push(new A.Builder(new A._DashboardScreenState_build_closure3(state, t1, store), _null)); if (A.getLayout(context) === B.AppLayout_mobile) { t2 = _this._mainTabController; t3 = A.getLayout(context); t5 = A._setArrayType([A.Tab$(_null, t1.get$overview()), A.Tab$(_null, t1.get$activity()), A.Tab$(_null, t1.get$systemLogs())], t8); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_invoice)) t5.push(A.Tab$(_null, t1.get$invoices())); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_payment)) t5.push(A.Tab$(_null, t1.get$payments())); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_quote)) t5.push(A.Tab$(_null, t1.get$quotes(t1))); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_task)) t5.push(A.Tab$(_null, t1.get$tasks())); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_expense)) t5.push(A.Tab$(_null, t1.get$expense())); t1 = A.TabBar$(t2, _null, t3 === B.AppLayout_mobile, _null, _null, t5); } else t1 = _null; mainScaffold = A.Scaffold$(A.AppBar$(t10, _null, false, _null, _null, t1, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, _null, _null, t9, _null, _null, _null, 1, _null), _null, new A._CustomTabBarView(_this._widget.viewModel, _this._mainTabController, _this._dashboard_screen$_scrollController, _null), _null, t6, t7, _null, _null); if (A.getLayout(context) === B.AppLayout_desktop) { t1 = A._setArrayType([new A.Flexible(3, B.FlexFit_1, mainScaffold, _null)], t8); if (t4.dashboardUIState.showSidebar) t1.push(new A.Flexible(2, B.FlexFit_1, new A.AppBorder(new A.SidebarScaffold(_this._sideTabController, _null), _null, _null, true, false, _null), _null)); t1 = A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } else t1 = mainScaffold; return new A.WillPopScope(t1, new A._DashboardScreenState_build_closure4(), _null); } }; A._DashboardScreenState_initState_closure.prototype = { call$1(entityType) { if (this.company.isModuleEnabled$1(entityType)) this.$this._tabs.push(entityType); }, $signature: 191 }; A._DashboardScreenState_initState_closure0.prototype = { call$1(duration) { var t1 = this.$this._framework$_element; t1.toString; A.showDialog(null, false, new A._DashboardScreenState_initState__closure(this.state), t1, null, true, type$.void); }, $signature: 36 }; A._DashboardScreenState_initState__closure.prototype = { call$1(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return new A.SettingsWizard(t1.userCompanyStates._list[t2].userCompany.user, null); }, $signature: 2346 }; A._DashboardScreenState_build_closure.prototype = { call$1(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return A.InkWell$(false, _null, true, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null), _null, new A._DashboardScreenState_build__closure3(context), B.EdgeInsets_8_8_8_8, _null, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 343 }; A._DashboardScreenState_build__closure3.prototype = { call$0() { A.Scaffold_of(this.context).openDrawer$0(); }, $signature: 1 }; A._DashboardScreenState_build_closure0.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterCompany(value)); }, $signature: 11 }; A._DashboardScreenState_build_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, account, data, t1, credentials, t2; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; credentials = t1.get$credentials(t1); t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.account; t2.toString; t1 = new A.AccountEntityBuilder(); A.AccountEntity__initializeBuilder(t1); A.ArgumentError_checkNotNull(t2, "other"); t1._account_model$_$v = t2; new A._DashboardScreenState_build__closure0().call$1(t1); account = t1.build$0(0); data = $.$get$serializers().serializeWith$2($.$get$_$accountEntitySerializer(), account); t1 = $async$self.store; t1.get$_dispatchers()[0].call$1(new A.StartSaving()); new A.WebClient().put$3$data(0, credentials.url + "/accounts/" + account.id, credentials.token, B.C_JsonCodec.encode$1(data)).then$1$1(0, new A._DashboardScreenState_build__closure1(t1), type$.Null).catchError$1(new A._DashboardScreenState_build__closure2(t1, $async$self.context)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._DashboardScreenState_build__closure0.prototype = { call$1(b) { b.get$_account_model$_$this()._setReactAsDefaultAP = true; return b; }, $signature: 2347 }; A._DashboardScreenState_build__closure1.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); window.location.reload(); }, $signature: 7 }; A._DashboardScreenState_build__closure2.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); A.showErrorDialog(false, this.context, error); }, $signature: 3 }; A._DashboardScreenState_build_closure2.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.launch(t1.userCompanyStates._list[t2].userCompany.ninjaPortalUrl, null, false); }, $signature: 26 }; A._DashboardScreenState_build_closure3.prototype = { call$1(context) { var t2, _null = null, t1 = this.state; if (t1.prefState.enableTooltips) { t2 = this.localization; t2 = t2.get$history(t2); } else t2 = _null; return A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58132_MaterialIcons_null_false, _null, _null), _null, new A._DashboardScreenState_build__closure(context, t1, this.store), B.EdgeInsets_4_0_20_0, _null, t2, _null); }, $signature: 424 }; A._DashboardScreenState_build__closure.prototype = { call$0() { var t2, _null = null, t1 = this.context; if (A.getLayout(t1) !== B.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === B.AppLayout_mobile || t2.historySidebarMode === B.AppSidebarMode_float; } else t2 = true; if (t2) A.Scaffold_of(t1).openEndDrawer$0(); else { t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_history, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); } }, $signature: 1 }; A._DashboardScreenState_build_closure4.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A._CustomTabBarView.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.viewModel, t2 = t1.state, t3 = t2.uiState.selectedCompanyIndex, company = t2.userCompanyStates._list[t3].userCompany.company; t2 = t1.filter; if ((t2 == null ? "" : t2).length !== 0) return new A.ScrollableListViewBuilder(new A._CustomTabBarView_build_closure(_this), _null, J.get$length$asx(t1.filteredList), _null, _null, _null); t1 = A._setArrayType([A.RefreshIndicator$(new A.DashboardPanels(t1, _this.scrollController, _null), new A._CustomTabBarView_build_closure0(_this, context)), A.RefreshIndicator$(new A.DashboardActivity(t1, _null), new A._CustomTabBarView_build_closure1(_this, context)), A.RefreshIndicator$(new A.DashboardSystemLogs(t1, _null), new A._CustomTabBarView_build_closure2(_this, context))], type$.JSArray_legacy_Widget); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_invoice)) t1.push(new A.InvoiceSidebar(_null)); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_payment)) t1.push(new A.PaymentSidebar(_null)); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_quote)) t1.push(new A.QuoteSidebar(_null)); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_task)) t1.push(new A.TaskSidebar(_null)); if (A.getLayout(context) === B.AppLayout_mobile && company.isModuleEnabled$1(B.EntityType_expense)) t1.push(new A.ExpenseSidbar(_null)); return A.TabBarView$(t1, _this.tabController, _null); } }; A._CustomTabBarView_build_closure.prototype = { call$2(context, index) { var t3, t4, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.$this.viewModel, entity = J.$index$asx(t2.filteredList, index), subtitle = entity.matchesFilterValue$1(t2.filter); t2 = A.Text$(entity.get$listDisplayName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.Icon$(A.getEntityIcon(entity.get$entityType()), _null, _null); t4 = A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t3, _null, new A._CustomTabBarView_build__closure(entity), false, _null, _null, A.Text$(subtitle != null ? subtitle : t1.lookup$1(A.S(entity.get$entityType())), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, t4, _null); }, $signature: 512 }; A._CustomTabBarView_build__closure.prototype = { call$0() { return A.viewEntity(false, this.entity, null, false); }, $signature: 0 }; A._CustomTabBarView_build_closure0.prototype = { call$0() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._CustomTabBarView_build_closure1.prototype = { call$0() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._CustomTabBarView_build_closure2.prototype = { call$0() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__DashboardScreenState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.DashboardScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DashboardScreenBuilder_build_closure(), A.dashboard_screen_vm_DashboardVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DashboardVM); } }; A.DashboardScreenBuilder_build_closure.prototype = { call$2(context, viewModel) { var state = viewModel.state, t1 = state.uiState.selectedCompanyIndex, company = state.userCompanyStates._list[t1].userCompany.company; if (!state.get$isUserConfirmed()) return new A.ConfirmEmailBuilder(null); return new A.DashboardScreen(viewModel, new A.ValueKey("__" + company.id + "_" + company.enabledModules + "_" + (state.prefState.appLayout === B.AppLayout_desktop) + "__", type$.ValueKey_legacy_String)); }, $signature: 2349 }; A.DashboardVM.prototype = {}; A.DashboardVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.DashboardVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.DashboardVM_fromStore_closure2.prototype = { call$1(entityType) { if (entityType == null) return; this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardEntityType(entityType)); }, $signature: 191 }; A.DashboardVM_fromStore_closure0.prototype = { call$1(settings) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSettings(settings, null, null, null)); }, $signature: 2350 }; A.DashboardVM_fromStore_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSettings(null, null, null, value)); }, $signature: 10 }; A.DashboardVM_fromStore_closure1.prototype = { call$2(entityType, entityIds) { this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSelection(entityType, entityIds)); }, $signature: 2351 }; A.DashboardVM_fromStore_closure3.prototype = { call$1(offset) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSettings(null, offset, null, null)); }, $signature: 180 }; A.DashboardVM_fromStore_closure4.prototype = { call$1(currencyId) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSettings(null, null, currencyId, null)); }, $signature: 5 }; A.DashboardVM_fromStore_closure6.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSidebar(true)); }, $signature: 9 }; A.SidebarScaffold.prototype = { build$1(_, context) { var t4, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, company = t2._list[t3].userCompany.company; t3 = this.tabController; t2 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([], t2); if (company.isModuleEnabled$1(B.EntityType_invoice)) t4.push(A.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(B.EntityType_payment)) t4.push(A.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(B.EntityType_quote)) t4.push(A.Tab$(_null, t1.get$quotes(t1))); if (company.isModuleEnabled$1(B.EntityType_task)) t4.push(A.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(B.EntityType_expense)) t4.push(A.Tab$(_null, t1.get$expenses())); t1 = A.AppBar$(_null, _null, false, _null, _null, _null, 1, _null, _null, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, A.Row$(A._setArrayType([A.Expanded$(A.TabBar$(t3, _null, true, _null, _null, t4), 1), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A.SidebarScaffold_build_closure(store), B.EdgeInsets_8_8_8_8, _null, _null, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, _null, _null, 1, _null); t2 = A._setArrayType([], t2); if (company.isModuleEnabled$1(B.EntityType_invoice)) t2.push(new A.InvoiceSidebar(_null)); if (company.isModuleEnabled$1(B.EntityType_payment)) t2.push(new A.PaymentSidebar(_null)); if (company.isModuleEnabled$1(B.EntityType_quote)) t2.push(new A.QuoteSidebar(_null)); if (company.isModuleEnabled$1(B.EntityType_task)) t2.push(new A.TaskSidebar(_null)); if (company.isModuleEnabled$1(B.EntityType_expense)) t2.push(new A.ExpenseSidbar(_null)); return A.Scaffold$(t1, _null, A.TabBarView$(t2, t3, _null), _null, _null, _null, _null, _null); } }; A.SidebarScaffold_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSidebar(false)); }, $signature: 9 }; A.InvoiceSidebar.prototype = { build$1(_, context) { var t6, upcomingInvoices, pastDueInvoices, selectedIds, t7, t8, t9, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = $.$get$memoizedUpcomingInvoices(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; upcomingInvoices = t2.call$2(t6.invoiceState.map, t6.clientState.map); t6 = $.$get$memoizedPastDueInvoices(); t5 = t3[t5]; pastDueInvoices = t6.call$2(t5.invoiceState.map, t5.clientState.map); selectedIds = t4.dashboardUIState.selectedEntities._map$_map.$index(0, B.EntityType_invoice); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "upcoming_invoices"); t2 = t5 == null ? "" : t5; t3 = J.getInterceptor$asx(upcomingInvoices); t5 = t3.get$isNotEmpty(upcomingInvoices) ? " (" + A.S(t3.get$length(upcomingInvoices)) + ")" : ""; t3 = t3.get$isEmpty(upcomingInvoices) ? _null : new A.ScrollableListViewBuilder(new A.InvoiceSidebar_build_closure(upcomingInvoices), new A.InvoiceSidebar_build_closure0(), t3.get$length(upcomingInvoices), _null, _null, _null); t6 = J.$index$asx(t4.$index(0, t1), "past_due_invoices"); if (t6 == null) t6 = ""; t7 = J.getInterceptor$asx(pastDueInvoices); t8 = t7.get$isNotEmpty(pastDueInvoices) ? " (" + A.S(t7.get$length(pastDueInvoices)) + ")" : ""; t7 = t7.get$isEmpty(pastDueInvoices) ? _null : new A.ScrollableListViewBuilder(new A.InvoiceSidebar_build_closure1(pastDueInvoices), new A.InvoiceSidebar_build_closure2(), t7.get$length(pastDueInvoices), _null, _null, _null); t9 = selectedIds == null; if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx(t4.$index(0, t1), "selected_invoices"); if (t1 == null) t1 = ""; t1 += " (" + selectedIds._list.length + ")"; } if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t9 ? _null : selectedIds._list.length; t4 = new A.ScrollableListViewBuilder(new A.InvoiceSidebar_build_closure3(state, selectedIds), new A.InvoiceSidebar_build_closure4(), t4, _null, _null, _null); } return A._DashboardSidebar$(B.EntityType_invoice, t2 + t5, t6 + t8, t1, t3, t7, t4); } }; A.InvoiceSidebar_build_closure.prototype = { call$2(context, index) { return new A.InvoiceListItem(J.$index$asx(this.upcomingInvoices, index), null, false, null); }, $signature: 439 }; A.InvoiceSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.InvoiceSidebar_build_closure1.prototype = { call$2(context, index) { return new A.InvoiceListItem(J.$index$asx(this.pastDueInvoices, index), null, false, null); }, $signature: 439 }; A.InvoiceSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.InvoiceSidebar_build_closure3.prototype = { call$2(context, index) { var invoice, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].invoiceState.map; t1 = this.selectedIds._list[index]; invoice = t2._map$_map.$index(0, t1); return invoice == null ? new A.SizedBox(_null, _null, _null, _null) : new A.InvoiceListItem(invoice, _null, false, _null); }, $signature: 131 }; A.InvoiceSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.PaymentSidebar.prototype = { build$1(_, context) { var recentPayments, selectedIds, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = $.$get$memoizedRecentPayments(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t5 = t3._list[t5]; recentPayments = t2.call$2(t5.paymentState.map, t5.clientState.map); selectedIds = t4.dashboardUIState.selectedEntities._map$_map.$index(0, B.EntityType_payment); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "recent_payments"); t2 = t5 == null ? "" : t5; t3 = J.getInterceptor$asx(recentPayments); t5 = t3.get$isNotEmpty(recentPayments) ? " (" + A.S(t3.get$length(recentPayments)) + ")" : ""; t3 = t3.get$isEmpty(recentPayments) ? _null : new A.ScrollableListViewBuilder(new A.PaymentSidebar_build_closure(recentPayments), new A.PaymentSidebar_build_closure0(), t3.get$length(recentPayments), _null, _null, _null); t6 = selectedIds == null; if (J.get$isEmpty$asx(t6 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx(t4.$index(0, t1), "selected_payments"); if (t1 == null) t1 = ""; t1 += " (" + selectedIds._list.length + ")"; } if (J.get$isEmpty$asx(t6 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t6 ? _null : selectedIds._list.length; t4 = new A.ScrollableListViewBuilder(new A.PaymentSidebar_build_closure1(state, selectedIds), new A.PaymentSidebar_build_closure2(), t4, _null, _null, _null); } return A._DashboardSidebar$(B.EntityType_payment, t2 + t5, _null, t1, t3, _null, t4); } }; A.PaymentSidebar_build_closure.prototype = { call$2(context, index) { return new A.PaymentListItem(J.$index$asx(this.recentPayments, index), null, false, null); }, $signature: 510 }; A.PaymentSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.PaymentSidebar_build_closure1.prototype = { call$2(context, index) { var payment, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].paymentState.map; t1 = this.selectedIds._list[index]; payment = t2._map$_map.$index(0, t1); return payment == null ? new A.SizedBox(_null, _null, _null, _null) : new A.PaymentListItem(payment, _null, false, _null); }, $signature: 131 }; A.PaymentSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.QuoteSidebar.prototype = { build$1(_, context) { var t6, upcomingQuotes, expriedQuotes, selectedIds, t7, t8, t9, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = $.$get$memoizedUpcomingQuotes(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; upcomingQuotes = t2.call$2(t6.quoteState.map, t6.clientState.map); t6 = $.$get$memoizedExpiredQuotes(); t5 = t3[t5]; expriedQuotes = t6.call$2(t5.quoteState.map, t5.clientState.map); selectedIds = t4.dashboardUIState.selectedEntities._map$_map.$index(0, B.EntityType_quote); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "upcoming_quotes"); t2 = t5 == null ? "" : t5; t3 = J.getInterceptor$asx(upcomingQuotes); t5 = t3.get$isNotEmpty(upcomingQuotes) ? " (" + A.S(t3.get$length(upcomingQuotes)) + ")" : ""; t3 = t3.get$isEmpty(upcomingQuotes) ? _null : new A.ScrollableListViewBuilder(new A.QuoteSidebar_build_closure(upcomingQuotes), new A.QuoteSidebar_build_closure0(), t3.get$length(upcomingQuotes), _null, _null, _null); t6 = J.$index$asx(t4.$index(0, t1), "expired_quotes"); if (t6 == null) t6 = ""; t7 = J.getInterceptor$asx(expriedQuotes); t8 = t7.get$isNotEmpty(expriedQuotes) ? " (" + A.S(t7.get$length(expriedQuotes)) + ")" : ""; t7 = t7.get$isEmpty(expriedQuotes) ? _null : new A.ScrollableListViewBuilder(new A.QuoteSidebar_build_closure1(expriedQuotes), new A.QuoteSidebar_build_closure2(), t7.get$length(expriedQuotes), _null, _null, _null); t9 = selectedIds == null; if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx(t4.$index(0, t1), "selected_quotes"); if (t1 == null) t1 = ""; t1 += " (" + selectedIds._list.length + ")"; } if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t9 ? _null : selectedIds._list.length; t4 = new A.ScrollableListViewBuilder(new A.QuoteSidebar_build_closure3(state, selectedIds), new A.QuoteSidebar_build_closure4(), t4, _null, _null, _null); } return A._DashboardSidebar$(B.EntityType_quote, t2 + t5, t6 + t8, t1, t3, t7, t4); } }; A.QuoteSidebar_build_closure.prototype = { call$2(context, index) { return new A.QuoteListItem(J.$index$asx(this.upcomingQuotes, index), null, false, null); }, $signature: 441 }; A.QuoteSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.QuoteSidebar_build_closure1.prototype = { call$2(context, index) { return new A.QuoteListItem(J.$index$asx(this.expriedQuotes, index), null, false, null); }, $signature: 441 }; A.QuoteSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.QuoteSidebar_build_closure3.prototype = { call$2(context, index) { var quote, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].quoteState.map; t1 = this.selectedIds._list[index]; quote = t2._map$_map.$index(0, t1); return quote == null ? new A.SizedBox(_null, _null, _null, _null) : new A.QuoteListItem(quote, _null, false, _null); }, $signature: 131 }; A.QuoteSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.TaskSidebar.prototype = { build$1(_, context) { var t6, runningTasks, recentTasks, selectedIds, t7, t8, t9, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = $.$get$memoizedRunningTasks(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = t3[t5]; runningTasks = t2.call$2(t6.taskState.map, t6.clientState.map); t6 = $.$get$memoizedRecentTasks(); t5 = t3[t5]; recentTasks = t6.call$2(t5.taskState.map, t5.clientState.map); selectedIds = t4.dashboardUIState.selectedEntities._map$_map.$index(0, B.EntityType_task); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "running_tasks"); t2 = t5 == null ? "" : t5; t3 = J.getInterceptor$asx(runningTasks); t5 = t3.get$isNotEmpty(runningTasks) ? " (" + A.S(t3.get$length(runningTasks)) + ")" : ""; t3 = t3.get$isEmpty(runningTasks) ? _null : new A.ScrollableListViewBuilder(new A.TaskSidebar_build_closure(runningTasks), new A.TaskSidebar_build_closure0(), t3.get$length(runningTasks), _null, _null, _null); t6 = J.$index$asx(t4.$index(0, t1), "recent_tasks"); if (t6 == null) t6 = ""; t7 = J.getInterceptor$asx(recentTasks); t8 = t7.get$isNotEmpty(recentTasks) ? " (" + A.S(t7.get$length(recentTasks)) + ")" : ""; t7 = t7.get$isEmpty(recentTasks) ? _null : new A.ScrollableListViewBuilder(new A.TaskSidebar_build_closure1(recentTasks), new A.TaskSidebar_build_closure2(), t7.get$length(recentTasks), _null, _null, _null); t9 = selectedIds == null; if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx(t4.$index(0, t1), "selected_tasks"); if (t1 == null) t1 = ""; t1 += " (" + selectedIds._list.length + ")"; } if (J.get$isEmpty$asx(t9 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t9 ? _null : selectedIds._list.length; t4 = new A.ScrollableListViewBuilder(new A.TaskSidebar_build_closure3(state, selectedIds), new A.TaskSidebar_build_closure4(), t4, _null, _null, _null); } return A._DashboardSidebar$(B.EntityType_quote, t2 + t5, t6 + t8, t1, t3, t7, t4); } }; A.TaskSidebar_build_closure.prototype = { call$2(context, index) { return A.TaskListItem$(null, false, true, null, null, false, J.$index$asx(this.runningTasks, index)); }, $signature: 322 }; A.TaskSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.TaskSidebar_build_closure1.prototype = { call$2(context, index) { return A.TaskListItem$(null, false, true, null, null, false, J.$index$asx(this.recentTasks, index)); }, $signature: 322 }; A.TaskSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.TaskSidebar_build_closure3.prototype = { call$2(context, index) { var task, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = this.selectedIds._list[index]; task = t2._map$_map.$index(0, t1); return task == null ? new A.SizedBox(_null, _null, _null, _null) : A.TaskListItem$(_null, false, true, _null, _null, false, task); }, $signature: 131 }; A.TaskSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.ExpenseSidbar.prototype = { build$1(_, context) { var recentExpenses, selectedIds, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = $.$get$memoizedRecentExpenses(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t5 = t3._list[t5]; recentExpenses = t2.call$2(t5.expenseState.map, t5.clientState.map); selectedIds = t4.dashboardUIState.selectedEntities._map$_map.$index(0, B.EntityType_expense); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "recent_expenses"); t2 = t5 == null ? "" : t5; t3 = J.getInterceptor$asx(recentExpenses); t5 = t3.get$isNotEmpty(recentExpenses) ? " (" + A.S(t3.get$length(recentExpenses)) + ")" : ""; t3 = t3.get$isEmpty(recentExpenses) ? _null : new A.ScrollableListViewBuilder(new A.ExpenseSidbar_build_closure(recentExpenses), new A.ExpenseSidbar_build_closure0(), t3.get$length(recentExpenses), _null, _null, _null); t6 = selectedIds == null; if (J.get$isEmpty$asx(t6 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx(t4.$index(0, t1), "selected_expenses"); if (t1 == null) t1 = ""; t1 += " (" + selectedIds._list.length + ")"; } if (J.get$isEmpty$asx(t6 ? A._setArrayType([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t6 ? _null : selectedIds._list.length; t4 = new A.ScrollableListViewBuilder(new A.ExpenseSidbar_build_closure1(state, selectedIds), new A.ExpenseSidbar_build_closure2(), t4, _null, _null, _null); } return A._DashboardSidebar$(B.EntityType_expense, t2 + t5, _null, t1, t3, _null, t4); } }; A.ExpenseSidbar_build_closure.prototype = { call$2(context, index) { return A.ExpenseListItem$(J.$index$asx(this.recentExpenses, index), null, false, true, null, null, false); }, $signature: 451 }; A.ExpenseSidbar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.ExpenseSidbar_build_closure1.prototype = { call$2(context, index) { var expense, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = this.selectedIds._list[index]; expense = t2._map$_map.$index(0, t1); return expense == null ? new A.SizedBox(_null, _null, _null, _null) : A.ExpenseListItem$(expense, _null, false, true, _null, _null, false); }, $signature: 131 }; A.ExpenseSidbar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A._DashboardSidebar.prototype = { build$1(_, context) { var t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textTheme = A.Theme_of(context).textTheme, store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = A.Theme_of(context).cardColor, t3 = A.Theme_of(context).scaffoldBackgroundColor, t4 = textTheme.bodyMedium; t3 = A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Text$(_this.label1, _null, _null, _null, _null, _null, t4, _null, _null, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_16_16_16_16, _null, _null, 1 / 0), B.Clip_0, t3, 4, _null, _null, _null, _null, _null, B.MaterialType_0); t5 = _this.list1; t6 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([t3, A.Expanded$(t5 == null ? new A.HelpText(t1.get$noRecordsFound(), _null) : A.ClipRRect$(B.BorderRadius_tLn, t5), 1)], t6); t3 = _this.label2; if (t3 != null) { t7 = A.Theme_of(context).scaffoldBackgroundColor; t7 = A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Text$(t3, _null, _null, _null, _null, _null, t4, _null, _null, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_16_16_16_16, _null, _null, 1 / 0), B.Clip_0, t7, 4, _null, _null, _null, _null, _null, B.MaterialType_0); t3 = _this.list2; B.JSArray_methods.addAll$1(t5, A._setArrayType([t7, A.Expanded$(t3 == null ? new A.HelpText(t1.get$noRecordsFound(), _null) : A.ClipRRect$(B.BorderRadius_tLn, t3), 1)], t6)); } t1 = _this.label3; t3 = t1 == null; t7 = t3 ? 0 : (context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dy - 100) / 2; t8 = A.Duration$(0, 0, 0, 500, 0, 0); t9 = A.Theme_of(context).scaffoldBackgroundColor; t1 = A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t3 ? "" : t1, _null, _null, _null, _null, _null, t4, _null, _null, _null), 1), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._DashboardSidebar_build_closure(_this, store), B.EdgeInsets_8_8_8_8, _null, _null, B.VisualDensity_m2_m2)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_16_8_16_8, _null, _null, 1 / 0), B.Clip_0, t9, 4, _null, _null, _null, _null, _null, B.MaterialType_0); t4 = _this.list3; t5.push(A.AnimatedContainer$(A.Column$(A._setArrayType([t1, A.Expanded$(A.ClipRRect$(B.BorderRadius_tLn, t4 == null ? new A.SizedBox(_null, _null, _null, _null) : t4), 1)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, B.Cubic_oKc, _null, t8, t7, _null, _null, _null, _null)); return A.Container$(_null, A.Column$(t5, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A._DashboardSidebar_build_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateDashboardSelection(this.$this.entityType, null)); }, $signature: 1 }; A.DashboardSystemLogs.prototype = { build$1(_, context) { var t1 = this.viewModel.state, t2 = t1.uiState.selectedCompanyIndex; return new A.SystemLogViewer(t1.userCompanyStates._list[t2].userCompany.company.systemLogs, null); } }; A.DesignListItem.prototype = { build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, t1 = uiState.designUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(A._setArrayType([_this.design.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.design; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.DesignListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.DesignListItem_build_closure0(_this), new A.DesignListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t6, new A.EntityStateLabel(t2, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t4, _null, _null), false, true, true, _null); }, get$design() { return this.design; } }; A.DesignListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.design, false, false); return t1; }, $signature: 0 }; A.DesignListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.design, false, true); return t1; }, $signature: 0 }; A.DesignListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.DesignListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DesignListBuilder_build_closure(), A.design_list_vm_DesignListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignListVM); } }; A.DesignListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.designList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_design, new A.DesignListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, t4); }, $signature: 2357 }; A.DesignListBuilder_build__closure.prototype = { call$2(context, index) { var t3, t1 = this.viewModel, designId = J.$index$asx(t1.designList, index), design = t1.designMap._map$_map.$index(0, designId), t2 = t1.state.getUIState$1(B.EntityType_design).get$listUIState().selectedIds; if (t2 != null) { t3 = design.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.DesignListItem(design, t1.filter, t2, null); }, $signature: 2358 }; A.DesignListVM.prototype = {}; A.DesignListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.DesignListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.DesignListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortDesigns(field)); }, $signature: 5 }; A.DesignListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearDesignMultiselect()); }, $signature: 9 }; A.DesignScreen.prototype = { build$1(_, context) { var t4, t5, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.designUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.designList; t2 = t2.filter; t5 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_design, false, B.List_empty17, new A.DesignScreen_build_closure(store), new A.DesignScreen_build_closure0(store), new A.DesignScreen_build_closure1(store), new A.DesignScreen_build_closure2(store), new A.DesignScreen_build_closure3(store), new A.DesignScreen_build_closure4(store), new A.DesignScreen_build_closure5(store), _null, A._setArrayType(["name", "updated_at"], type$.JSArray_legacy_String), B.List_empty18, _null); t3 = state.prefState.appLayout === B.AppLayout_mobile && userCompany.isAdmin ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "design_fab", false, new A.DesignScreen_build_closure6(context, state), t3.get$newDesign()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_design, t2, new A.DesignScreen_build_closure7(store), t4, _null, _null, new A.DesignScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.DesignListBuilder(_null), t5, B.EntityType_design, t3, 0, "invoice_design", new A.DesignScreen_build_closure9(store), new A.DesignScreen_build_closure10(store)); } }; A.DesignScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartDesignMultiselect()); }, $signature: 9 }; A.DesignScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDesigns(value)); }, $signature: 11 }; A.DesignScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByState(state)); }, $signature: 27 }; A.DesignScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.designUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearDesignMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartDesignMultiselect()); }, $signature: 1 }; A.DesignScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortDesigns(value)); }, $signature: 11 }; A.DesignScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByState(state)); }, $signature: 27 }; A.DesignScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.designUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearDesignMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartDesignMultiselect()); }, $signature: 1 }; A.DesignScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByCustom1(value)); }, $signature: 5 }; A.DesignScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByCustom2(value)); }, $signature: 5 }; A.DesignScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByCustom3(value)); }, $signature: 5 }; A.DesignScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDesignsByCustom4(value)); }, $signature: 5 }; A.DesignScreen_build_closure6.prototype = { call$0() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; A.createEntity(_null, _null, this.context, A.DesignEntity_DesignEntity(t1.userCompanyStates._list[t2].designState.get$cleanDesign().design, _null, _null), false); }, $signature: 1 }; A.DesignScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DesignScreenBuilder_build_closure(), A.design_screen_vm_DesignScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignScreenVM); } }; A.DesignScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.DesignScreen(vm, null); }, $signature: 2359 }; A.DesignScreenVM.prototype = {}; A.DesignEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._DesignEditState(new A.Debouncer(1500, false), new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), null, null, B._StateLifecycle_0); } }; A._DesignEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._htmlController.addListener$1(0, _this.get$_onHtmlChanged()); _this._design_edit$_focusNode = A.FocusScopeNode$(true, null, false); _this._tabController = A.TabController$(null, 0, _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_mobile ? 6 : 5, _this); }, didChangeDependencies$0() { var design, _this = this, t1 = _this._design_edit$_nameController, t2 = _this._headerController, t3 = _this._footerController, t4 = _this._bodyController, t5 = _this._productsController, t6 = _this._tasksController, t7 = _this._includesController, t8 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._design_edit$_controllers = t8; B.JSArray_methods.forEach$1(t8, new A._DesignEditState_didChangeDependencies_closure(_this)); design = _this._widget.viewModel.design; t1.set$text(0, design.name); t1 = design.design._map$_map; t2.set$text(0, t1.$index(0, "header")); t3.set$text(0, t1.$index(0, "footer")); t4.set$text(0, t1.$index(0, "body")); t5.set$text(0, t1.$index(0, "product")); t6.set$text(0, t1.$index(0, "task")); t7.set$text(0, t1.$index(0, "includes")); t1 = _this._design_edit$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._DesignEditState_didChangeDependencies_closure0(_this)); _this._loadDesign$1(design); t1 = _this._framework$_element; t1.toString; _this._loadPreview$2(t1, design); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1, _this = this; _this._design_edit$_focusNode.dispose$0(0); _this._tabController.dispose$0(0); t1 = _this._htmlController; t1.removeListener$1(0, _this.get$_onHtmlChanged()); t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; t1 = _this._design_edit$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._DesignEditState_dispose_closure(_this)); _this.super$__DesignEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _design_edit$_onChanged$1$debounce(debounce) { var t1, _this = this, design = _this._widget.viewModel.design.rebuild$1(new A._DesignEditState__onChanged_closure(_this)); if (!J.$eq$(design, _this._widget.viewModel.design)) if (debounce) _this._design_edit$_debouncer.run$1(new A._DesignEditState__onChanged_closure0(_this, design)); else { _this._widget.viewModel.onChanged.call$1(design); t1 = _this._framework$_element; t1.toString; _this._loadPreview$2(t1, design); } }, _design_edit$_onChanged$0() { return this._design_edit$_onChanged$1$debounce(true); }, _onHtmlChanged$0() { this._htmlDebouncer.run$1(new A._DesignEditState__onHtmlChanged_closure(this)); }, _loadDesign$1(design) { var _this = this, t1 = _this._design_edit$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._DesignEditState__loadDesign_closure(_this)); t1 = design.design._map$_map; _this._headerController.set$text(0, t1.$index(0, "header")); _this._bodyController.set$text(0, t1.$index(0, "body")); _this._footerController.set$text(0, t1.$index(0, "footer")); _this._productsController.set$text(0, t1.$index(0, "product")); _this._tasksController.set$text(0, t1.$index(0, "task")); _this._includesController.set$text(0, t1.$index(0, "includes")); t1 = _this._design_edit$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._DesignEditState__loadDesign_closure0(_this)); _this._design_edit$_onChanged$1$debounce(false); }, _loadPreview$2(context, design) { return this._loadPreview$body$_DesignEditState(context, design); }, _loadPreview$body$_DesignEditState(context, design) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this; var $async$_loadPreview$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._design_edit$_isLoading) { // goto return $async$goto = 1; break; } $async$self.setState$1(new A._DesignEditState__loadPreview_closure($async$self)); A.loadDesign(context, design, $async$self._isDraftMode, false, new A._DesignEditState__loadPreview_closure0($async$self)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_loadPreview$2, $async$completer); }, _setDraftMode$1(isDraftMode) { var t1, _this = this; _this.setState$1(new A._DesignEditState__setDraftMode_closure(_this, isDraftMode)); t1 = _this._framework$_element; t1.toString; _this._loadPreview$2(t1, _this._widget.viewModel.design); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), design = viewModel.design; if (design.get$isNew()) t2 = t1.get$newDesign(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_design"); if (t2 == null) t2 = ""; } t3 = A.getLayout(context) === B.AppLayout_mobile ? A.TabBar$(_this._tabController, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$settings()), A.Tab$(_null, t1.get$preview()), A.Tab$(_null, t1.get$body(t1)), A.Tab$(_null, t1.get$header()), A.Tab$(_null, t1.get$footer()), A.Tab$(_null, t1.get$includes(t1))], type$.JSArray_legacy_Widget)) : _null; t4 = _this._design_edit$_isLoading ? _null : new A._DesignEditState_build_closure(viewModel); t5 = _this.get$_loadDesign(); t6 = _this._design_edit$_nameController; t7 = _this._htmlController; if (A.getLayout(context) === B.AppLayout_mobile) { t1 = _this._tabController; t8 = $.$get$_DesignEditState__formKey(); t9 = _this._design_edit$_focusNode; t10 = _this._design_edit$_isLoading; t11 = _this._isDraftMode; t5 = A.DesignSettings$(t11, t7, t10, t6, new A._DesignEditState_build_closure0(_this), t5, viewModel); t6 = t11 ? new A.HtmlDesignPreview(_this._html, t10, _null) : new A.PdfDesignPreview(_this._pdfBytes, t10, _null); t1 = new A.AppTabForm(t9, t8, A._setArrayType([t5, t6, new A.DesignSection(_this._bodyController, _null), new A.DesignSection(_this._headerController, _null), new A.DesignSection(_this._footerController, _null), new A.DesignSection(_this._includesController, _null)], type$.JSArray_legacy_Widget), t1, _null, _null); } else { t8 = _this._design_edit$_focusNode; t9 = $.$get$_DesignEditState__formKey(); t10 = _this._tabController; t11 = type$.JSArray_legacy_Widget; t1 = A._setArrayType([A.Tab$(_null, t1.get$settings()), A.Tab$(_null, t1.get$body(t1)), A.Tab$(_null, t1.get$header()), A.Tab$(_null, t1.get$footer()), A.Tab$(_null, t1.get$includes(t1))], t11); t12 = _this._tabController; t13 = _this._design_edit$_isLoading; t12 = A.Expanded$(A.Column$(A._setArrayType([new A.AppTabBar(t1, t10, true, _null, _null), A.Expanded$(A.TabBarView$(A._setArrayType([A.DesignSettings$(_this._isDraftMode, t7, t13, t6, new A._DesignEditState_build_closure1(_this), t5, viewModel), new A.DesignSection(_this._bodyController, _null), new A.DesignSection(_this._headerController, _null), new A.DesignSection(_this._footerController, _null), new A.DesignSection(_this._includesController, _null)], t11), t12, _null), 1)], t11), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t1 = _this._isDraftMode; t5 = _this._design_edit$_isLoading; t5 = new A.AppForm(t9, _null, A.Row$(A._setArrayType([t12, A.Expanded$(t1 ? new A.HtmlDesignPreview(_this._html, t5, _null) : new A.PdfDesignPreview(_this._pdfBytes, t5, _null), 1)], t11), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t8, _null); t1 = t5; } return A.EditScaffold$(_null, t3, t1, _null, design, _null, true, _null, new A._DesignEditState_build_closure2(viewModel), t4, _null, t2); } }; A._DesignEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 33 }; A._DesignEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 33 }; A._DesignEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._DesignEditState__onChanged_closure.prototype = { call$1(b) { var t3, t4, t5, t6, t7, t8, t1 = this.$this, t2 = J.trim$0$s(t1._design_edit$_nameController._change_notifier$_value.text); b.get$_design_model$_$this()._design_model$_name = t2; t2 = b.get$design(); t3 = J.trim$0$s(t1._headerController._change_notifier$_value.text); t4 = J.trim$0$s(t1._bodyController._change_notifier$_value.text); t5 = J.trim$0$s(t1._footerController._change_notifier$_value.text); t6 = J.trim$0$s(t1._productsController._change_notifier$_value.text); t7 = J.trim$0$s(t1._tasksController._change_notifier$_value.text); t8 = type$.legacy_String; t2.replace$1(0, A.BuiltMap_BuiltMap(A.LinkedHashMap_LinkedHashMap$_literal(["header", t3, "body", t4, "footer", t5, "product", t6, "task", t7, "includes", J.trim$0$s(t1._includesController._change_notifier$_value.text)], t8, t8), t8, t8)); return b; }, $signature: 449 }; A._DesignEditState__onChanged_closure0.prototype = { call$0() { var t3, t1 = this.$this, t2 = this.design; t1._widget.viewModel.onChanged.call$1(t2); t3 = t1._framework$_element; t3.toString; t1._loadPreview$2(t3, t2); }, $signature: 1 }; A._DesignEditState__onHtmlChanged_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._DesignEditState__onHtmlChanged__closure(t1)); }, $signature: 1 }; A._DesignEditState__onHtmlChanged__closure.prototype = { call$0() { var t1 = this.$this; t1._html = t1._htmlController._change_notifier$_value.text; }, $signature: 1 }; A._DesignEditState__loadDesign_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 33 }; A._DesignEditState__loadDesign_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 33 }; A._DesignEditState__loadPreview_closure.prototype = { call$0() { this.$this._design_edit$_isLoading = true; }, $signature: 1 }; A._DesignEditState__loadPreview_closure0.prototype = { call$1(response) { return this.$call$body$_DesignEditState__loadPreview_closure(response); }, $call$body$_DesignEditState__loadPreview_closure(response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t1.setState$1(new A._DesignEditState__loadPreview__closure(t1, response)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 773 }; A._DesignEditState__loadPreview__closure.prototype = { call$0() { var t2, t3, t4, t1 = this.$this; t1._design_edit$_isLoading = false; t2 = this.response; if (t2 != null) if (t1._isDraftMode) { t3 = t2.headers; t4 = A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t3).parameters._collection$_map, "charset")); t2 = t2.bodyBytes; t1._htmlController.set$text(0, t4.decode$1(0, t2)); t1._html = A.encodingForCharset(J.$index$asx(A._contentTypeForHeaders(t3).parameters._collection$_map, "charset")).decode$1(0, t2); t1._pdfBytes = null; } else { t1._pdfBytes = t2.bodyBytes; t1._html = ""; } }, $signature: 1 }; A._DesignEditState__setDraftMode_closure.prototype = { call$0() { this.$this._isDraftMode = this.isDraftMode; }, $signature: 1 }; A._DesignEditState_build_closure2.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._DesignEditState_build_closure.prototype = { call$1(context) { if (!$.$get$_DesignEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._DesignEditState_build_closure0.prototype = { call$1(value) { return this.$this._setDraftMode$1(value); }, $signature: 40 }; A._DesignEditState_build_closure1.prototype = { call$1(value) { return this.$this._setDraftMode$1(value); }, $signature: 40 }; A.DesignSection.prototype = { build$1(_, context) { var _null = null, t1 = this.textController; return A.SingleChildScrollView$(A.Card$(new A.Padding(B.EdgeInsets_10_0_10_0, A.Actions$(A.LinkedHashMap_LinkedHashMap$_literal([B.Type_InsertTabIntent_EKj, new A.InsertTabAction(new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.legacy_Type, type$.legacy_Action_legacy_Intent), new A.Shortcuts(A.LinkedHashMap_LinkedHashMap$_literal([A.LogicalKeySet$(B.LogicalKeyboardKey_4294967305), new A.InsertTabIntent(4, t1)], type$.legacy_ShortcutActivator, type$.legacy_Intent), A.TextField$(false, B.List_empty0, true, _null, t1, _null, _null, _null, 2, A.InputDecoration$(_null, B._NoInputBorder_sqK, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, B.TextInputType_1_null_null, _null, _null, _null, 16, _null, false, "\u2022", _null, _null, _null, _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, A._setArrayType([new A.FontFeature()], type$.JSArray_legacy_FontFeature), _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_4, _null, B.TextCapitalization_3, _null, B.TextInputAction_12, _null), _null, _null)), _null), _null, _null, _null, _null, true, _null), _null, B.DragStartBehavior_1, B.EdgeInsets_14_14_14_14, _null, _null, false, B.Axis_1); } }; A.DesignSettings.prototype = { createState$0() { return new A._DesignSettingsState(B._StateLifecycle_0); }, onLoadDesign$1(arg0) { return this.onLoadDesign.call$1(arg0); } }; A._DesignSettingsState.prototype = { initState$0() { var viewModel, design, state, t1, designMap, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; design = viewModel.design; if (!design.get$isNew()) _this._selectedDesign = design; else { state = viewModel.state; t1 = state.uiState.selectedCompanyIndex; t1 = state.userCompanyStates._list[t1]; designMap = t1.designState.map; t1 = t1.userCompany.company.settings.defaultInvoiceDesignId; _this._selectedDesign = designMap._map$_map.$index(0, t1); } }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, _s9_ = "html_mode", _s14_ = "html_mode_help", _s20_ = "html_preview_warning", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$name(t1); t2 = A.DecoratedFormField$(false, _null, false, false, _this._widget.nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t3 = t1.get$design(); t4 = _this._selectedDesign; t4 = t4 == null ? _null : t4.id; t5 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([t2, new A.DesignPicker(new A._DesignSettingsState_build_closure(_this), t3, t4, _null)], t5); t2 = A.Theme_of(context).colorScheme; t3 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t3.$index(0, t6), _s9_); t7 = A.Text$(t7 == null ? J.$index$asx(t3.$index(0, "en"), _s9_) : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = J.$index$asx(t3.$index(0, t6), _s14_); t3 = A.Text$(t8 == null ? J.$index$asx(t3.$index(0, "en"), _s14_) : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = _this._widget; t9 = t8.draftMode; t8 = t8.isLoading ? _null : t8.onDraftModeChanged; B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.SizedBox(_null, 16, _null, _null), A.SwitchListTile$(t2.secondary, _null, t8, _null, t3, t7, t9)], t5)); t1 = A._setArrayType([A.FormCard$(_null, t4, _null, _null, false, _null, false, _null), new A.Padding(B.EdgeInsets_16_16_16_0, A.OutlinedButton$(new A.Padding(B.EdgeInsets_8_8_8_8, new A.IconText(t1.get$viewDocs().toUpperCase(), B._MdiIconData_ujl, _null, _null, _null), _null), _null, new A._DesignSettingsState_build_closure0(), _null), _null)], t5); if (_this._widget.draftMode) { t2 = $.$get$LocalizationsProvider__localizedValues(); t6 = J.$index$asx(t2.$index(0, t6), _s20_); t2 = t6 == null ? J.$index$asx(t2.$index(0, "en"), _s20_) : t6; t1.push(A.Column$(A._setArrayType([new A.Padding(B.EdgeInsets_30_16_30_0, A.Text$(t2, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), A.FormCard$(A.Actions$(A.LinkedHashMap_LinkedHashMap$_literal([B.Type_InsertTabIntent_EKj, new A.InsertTabAction(new A.ObserverList(A._setArrayType([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.legacy_Type, type$.legacy_Action_legacy_Intent), new A.Shortcuts(A.LinkedHashMap_LinkedHashMap$_literal([A.LogicalKeySet$(B.LogicalKeyboardKey_4294967305), new A.InsertTabIntent(4, _this._widget.htmlController)], type$.legacy_ShortcutActivator, type$.legacy_Intent), A.TextField$(true, B.List_empty0, false, _null, _this._widget.htmlController, _null, _null, _null, 2, A.InputDecoration$(_null, B._NoInputBorder_sqK, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, B.TextInputType_1_null_null, _null, _null, _null, 16, _null, false, "\u2022", _null, _null, _null, _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, A._setArrayType([new A.FontFeature()], type$.JSArray_legacy_FontFeature), _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_4, _null, B.TextCapitalization_3, _null, B.TextInputAction_12, _null), _null, _null)), _null, _null, _null, false, _null, false, _null)], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)); } else t1.push(new A.VariablesHelp(false, _null)); return new A.ScrollableListView(t1, _null, _null, _null); } }; A._DesignSettingsState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1._widget.onLoadDesign$1(value); t1._selectedDesign = value; }, $signature: 153 }; A._DesignSettingsState_build_closure0.prototype = { call$0() { return A.launch("https://invoiceninja.github.io/docs/custom-fields", null, false); }, $signature: 26 }; A.PdfDesignPreview.prototype = { createState$0() { return new A._PdfDesignPreviewState(B._StateLifecycle_0); } }; A._PdfDesignPreviewState.prototype = { get$_pdfString() { var t1 = this._widget.pdfBytes; if (t1 == null) return ""; return "data:application/pdf;base64," + B.C_Base64Codec.get$encoder().convert$1(t1); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.pdfBytes; t2 = this._widget.pdfBytes; if (t1 == null ? t2 == null : t1 === t2) return; A.WebUtils_registerWebView(this.get$_pdfString()); }, build$1(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget, t2 = A._setArrayType([], t1); if (this._widget.pdfBytes == null) t2.push(new A.SizedBox(_null, _null, _null, _null)); else t2.push(new A.HtmlElementView(this.get$_pdfString(), _null)); if (this._widget.isLoading) t2.push(A.Column$(A._setArrayType([A.LinearProgressIndicator$(), A.Expanded$(new A.SizedBox(_null, _null, _null, _null), 1)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)); return A.Container$(B.Alignment_0_0, new A.Stack(B.Alignment_0_0, _null, B.StackFit_0, B.Clip_1, t2, _null), B.Clip_0, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.HtmlDesignPreview.prototype = { build$1(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget, t2 = A._setArrayType([new A.AppWebView(this.html, _null)], t1); if (this.isLoading) t2.push(A.Column$(A._setArrayType([A.LinearProgressIndicator$(), A.Expanded$(new A.SizedBox(_null, _null, _null, _null), 1)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)); return A.Container$(B.Alignment_0_0, new A.Stack(B.Alignment_0_0, _null, B.StackFit_0, B.Clip_1, t2, _null), B.Clip_0, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.InsertTabIntent.prototype = {}; A.InsertTabAction.prototype = { invoke$1(intent) { var t1, oldValue, t2, t3, t4, t5, newSelection, t6, t7, i; if (intent instanceof A.InsertTabIntent) { t1 = intent.textController; oldValue = t1._change_notifier$_value; t2 = oldValue.composing.start; t3 = oldValue.selection; t4 = t3.start; t5 = intent.numSpaces; newSelection = A.TextSelection$collapsed(B.TextAffinity_1, t4 + t5); t6 = t3.get$isValid(); t7 = oldValue.text; t4 = A.S(t6 ? J.substring$2$s(t7, 0, t4) : t7); for (i = 0; i < t5; ++i) t4 += " "; t3 = t4 + (t3.get$isValid() ? J.substring$1$s(t7, t3.end) : ""); t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$3$composing$selection$text(new A.TextRange(t2, t2), newSelection, t3.charCodeAt(0) == 0 ? t3 : t3)); } return ""; } }; A.__DesignEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.DesignEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DesignEditScreen_build_closure(), new A.DesignEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignEditVM); } }; A.DesignEditScreen_build_closure0.prototype = { call$1(store) { return A.DesignEditVM_DesignEditVM$fromStore(store); }, $signature: 2365 }; A.DesignEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.DesignEdit(viewModel, null); }, $signature: 2366 }; A.DesignEditVM.prototype = { get$design() { return this.design; }, get$company() { return this.company; } }; A.DesignEditVM_DesignEditVM$fromStore_closure.prototype = { call$1(design) { this.store.get$_dispatchers()[0].call$1(new A.UpdateDesign(design)); }, $signature: 153 }; A.DesignEditVM_DesignEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.DesignEntity_DesignEntity(_null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.DesignEditVM_DesignEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.DesignEditVM_DesignEditVM$fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.DesignEditVM_DesignEditVM$fromStore__closure.prototype = { call$0() { var completer, t1 = this.store, design = A._lateReadCheck(t1.__Store__state, "_state").uiState.designUIState.editing, t2 = this.context, t3 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t3.localeCode), "saved_design"); if (t3 == null) t3 = ""; completer = A.snackBarCompleter(t2, t3, false, type$.legacy_DesignEntity); t1.get$_dispatchers()[0].call$1(new A.SaveDesignRequest(completer, design)); }, $signature: 1 }; A.DesignView.prototype = { createState$0() { return new A._DesignViewState(B._StateLifecycle_0); } }; A._DesignViewState.prototype = { build$1(_, context) { var count, t5, t6, t7, _this = this, _null = null, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = state.uiState.selectedCompanyIndex, t2 = state.userCompanyStates._list, company = t2[t1].userCompany.company, design = viewModel.design, t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t4 = t2[t1].invoiceState.list._list; t4 = new A.MappedListIterable(t4, new A._DesignViewState_build_closure(state), A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A._DesignViewState_build_closure0(design)); count = t4.get$length(t4); t4 = t2[t1].quoteState.list._list; t4 = new A.MappedListIterable(t4, new A._DesignViewState_build_closure1(state), A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A._DesignViewState_build_closure2(design)); t4 = t4.get$length(t4); t5 = t2[t1].creditState.list._list; t5 = new A.MappedListIterable(t5, new A._DesignViewState_build_closure3(state), A._arrayInstanceType(t5)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A._DesignViewState_build_closure4(design)); t5 = t5.get$length(t5); t6 = t2[t1].recurringInvoiceState.list._list; t6 = new A.MappedListIterable(t6, new A._DesignViewState_build_closure5(state), A._arrayInstanceType(t6)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A._DesignViewState_build_closure6(design)); t6 = t6.get$length(t6); t7 = _this._widget.isFilter; t6 = A._setArrayType([A.EntityHeader$(design, t3.get$count(t3), t3.get$lastUpdated(), A.format(A.convertTimestampToDate(design.updatedAt), A.localeSelector(state, true)), _null, _null, "" + (count + t4 + t5 + t6)), new A.ListDivider(_null)], type$.JSArray_legacy_Widget); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t4 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(design, B.EntityType_invoice, t3.get$invoices(), $.$get$memoizedInvoiceStatsForDesign().call$2(design.id, t2[t1].invoiceState.map).present$2(t3.get$active(t3), t3.get$archived()), t4, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t4 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(design, B.EntityType_quote, t3.get$quotes(t3), $.$get$memoizedQuoteStatsForDesign().call$2(design.id, t2[t1].quoteState.map).present$2(t3.get$active(t3), t3.get$archived()), t4, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_credit)) { t4 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(design, B.EntityType_credit, t3.get$credits(), $.$get$memoizedCreditStatsForDesign().call$2(design.id, t2[t1].creditState.map).present$2(t3.get$active(t3), t3.get$archived()), t4, false, _null)); } if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) { t4 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(design, B.EntityType_recurringInvoice, t3.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForDesign().call$2(design.id, t2[t1].recurringInvoiceState.map).present$2(t3.get$active(t3), t3.get$archived()), t4, false, _null)); } return new A.ViewScaffold(t7, design, new A.ScrollableListView(t6, _null, _null, _null), new A._DesignViewState_build_closure7(viewModel), _null, _null); } }; A._DesignViewState_build_closure.prototype = { call$1(invoiceId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].invoiceState.map._map$_map.$index(0, invoiceId); }, $signature: 68 }; A._DesignViewState_build_closure0.prototype = { call$1(invoice) { return !invoice.isDeleted && invoice.designId === this.design.id; }, $signature: 163 }; A._DesignViewState_build_closure1.prototype = { call$1(quoteId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].quoteState.map._map$_map.$index(0, quoteId); }, $signature: 68 }; A._DesignViewState_build_closure2.prototype = { call$1(quote) { return !quote.isDeleted && quote.designId === this.design.id; }, $signature: 163 }; A._DesignViewState_build_closure3.prototype = { call$1(creditId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].creditState.map._map$_map.$index(0, creditId); }, $signature: 68 }; A._DesignViewState_build_closure4.prototype = { call$1(credit) { return !credit.isDeleted && credit.designId === this.design.id; }, $signature: 163 }; A._DesignViewState_build_closure5.prototype = { call$1(invoiceId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].recurringInvoiceState.map._map$_map.$index(0, invoiceId); }, $signature: 68 }; A._DesignViewState_build_closure6.prototype = { call$1(invoice) { return !invoice.isDeleted && invoice.designId === this.design.id; }, $signature: 163 }; A._DesignViewState_build_closure7.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.DesignViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DesignViewScreen_build_closure(this), new A.DesignViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignViewVM); } }; A.DesignViewScreen_build_closure0.prototype = { call$1(store) { return A.DesignViewVM_DesignViewVM$fromStore(store); }, $signature: 2367 }; A.DesignViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.DesignView(vm, this.$this.isFilter, null); }, $signature: 2368 }; A.DesignViewVM.prototype = { get$design() { return this.design; }, get$company() { return this.company; } }; A.DesignViewVM_DesignViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/custom_designs")); }, $signature: 1 }; A.DocumentListItem.prototype = { build$1(_, context) { var t2, t3, t4, t5, t6, t7, _this = this, _null = null, uiState = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").uiState, documentUIState = uiState.documentUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.document.matchesFilterValue$1(t1) : _null; t1 = documentUIState.listUIState.selectedIds; t2 = _this.document; t3 = t2.id; t4 = uiState.get$isEditing() ? documentUIState.editing.id : documentUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.DocumentListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t5 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t6 = type$.JSArray_legacy_Widget; t5 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5.size._dx); t7 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(_this.userCompany, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.DocumentListItem_build_closure0(_this), new A.DocumentListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t7, new A.EntityStateLabel(t2, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t5, _null, _null), t3 === t4, true, true, _null); }, get$document(receiver) { return this.document; } }; A.DocumentListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.document, false, false); return t1; }, $signature: 0 }; A.DocumentListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.document, false, true); return t1; }, $signature: 0 }; A.DocumentListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.DocumentListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DocumentListBuilder_build_closure(), A.document_list_vm_DocumentListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentListVM); } }; A.DocumentListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return A.EntityList$(viewModel.documentList, B.EntityType_document, new A.DocumentListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2369 }; A.DocumentListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, documentId = J.$index$asx(t1.documentList, index), $document = t1.documentMap._map$_map.$index(0, documentId), t2 = state.getUIState$1(B.EntityType_document).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany; if (t2 != null) { t3 = $document.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.DocumentListItem(t4, t2, $document, t1.filter, null); }, $signature: 2370 }; A.DocumentListVM.prototype = {}; A.DocumentListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.DocumentListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.DocumentListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortDocuments(field)); }, $signature: 5 }; A.DocumentListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearDocumentMultiselect()); }, $signature: 9 }; A.DocumentScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.documentUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.documentList; t2 = t2.filter; t5 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_document, false, B.List_empty17, new A.DocumentScreen_build_closure(store), new A.DocumentScreen_build_closure0(store), new A.DocumentScreen_build_closure1(store), new A.DocumentScreen_build_closure2(store), new A.DocumentScreen_build_closure3(store), new A.DocumentScreen_build_closure4(store), new A.DocumentScreen_build_closure5(store), _null, A._setArrayType(["updated_at"], type$.JSArray_legacy_String), B.List_empty18, _null); t6 = state.prefState; t3 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_document) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "document_fab", false, new A.DocumentScreen_build_closure6(context), t3.get$newDocument()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_document, t2, new A.DocumentScreen_build_closure7(store), t4, _null, _null, new A.DocumentScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.DocumentListBuilder(_null), t5, B.EntityType_document, t3, 0, _null, new A.DocumentScreen_build_closure9(store), new A.DocumentScreen_build_closure10(store)); } }; A.DocumentScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartDocumentMultiselect()); }, $signature: 9 }; A.DocumentScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDocuments(value)); }, $signature: 11 }; A.DocumentScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByState(state)); }, $signature: 27 }; A.DocumentScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.documentUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearDocumentMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartDocumentMultiselect()); }, $signature: 1 }; A.DocumentScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortDocuments(value)); }, $signature: 5 }; A.DocumentScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByCustom1(value)); }, $signature: 5 }; A.DocumentScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByCustom2(value)); }, $signature: 5 }; A.DocumentScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByCustom3(value)); }, $signature: 5 }; A.DocumentScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByCustom4(value)); }, $signature: 5 }; A.DocumentScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterDocumentsByState(state)); }, $signature: 27 }; A.DocumentScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.documentUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearDocumentMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartDocumentMultiselect()); }, $signature: 1 }; A.DocumentScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_document); }, $signature: 1 }; A.DocumentScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DocumentScreenBuilder_build_closure(), A.document_screen_vm_DocumentScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentScreenVM); } }; A.DocumentScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.DocumentScreen(vm, null); }, $signature: 2371 }; A.DocumentScreenVM.prototype = {}; A.DocumentEdit.prototype = { createState$0() { return new A._DocumentEditState(new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._DocumentEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = A._setArrayType([], type$.JSArray_legacy_TextEditingController); _this._document_edit$_controllers = t1; B.JSArray_methods.forEach$1(t1, new A._DocumentEditState_didChangeDependencies_closure(_this)); B.JSArray_methods.forEach$1(_this._document_edit$_controllers, new A._DocumentEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._document_edit$_controllers, new A._DocumentEditState_dispose_closure(this)); this.super$State$dispose(0); }, _document_edit$_onChanged$0() { var _this = this, $document = _this._widget.viewModel.document.rebuild$1(new A._DocumentEditState__onChanged_closure()); if (!$document.$eq(0, _this._widget.viewModel.document)) _this._document_edit$_debouncer.run$1(new A._DocumentEditState__onChanged_closure0(_this, $document)); }, build$1(_, context) { var _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), $document = viewModel.document; if ($document.get$isNew()) t1 = t1.get$newDocument(); else { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_document"); if (t1 == null) t1 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._DocumentEditState_build_closure(), _null), $.$get$_DocumentEditState__formKey()), _null, $document, _null, false, _null, _null, new A._DocumentEditState_build_closure0(viewModel), _null, t1); } }; A._DocumentEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_document_edit$_onChanged()); }, $signature: 33 }; A._DocumentEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_document_edit$_onChanged()); }, $signature: 33 }; A._DocumentEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_document_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._DocumentEditState__onChanged_closure.prototype = { call$1(b) { return b; }, $signature: 651 }; A._DocumentEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.document); }, $signature: 1 }; A._DocumentEditState_build_closure0.prototype = { call$1(context) { if (!$.$get$_DocumentEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._DocumentEditState_build_closure.prototype = { call$1(context) { var _null = null, t1 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([], t1), _null, _null, false, _null, false, _null)], t1), _null, _null, _null); }, $signature: 167 }; A.DocumentEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DocumentEditScreen_build_closure(), new A.DocumentEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentEditVM); } }; A.DocumentEditScreen_build_closure0.prototype = { call$1(store) { return A.DocumentEditVM_DocumentEditVM$fromStore(store); }, $signature: 2373 }; A.DocumentEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.DocumentEdit(viewModel, new A.ValueKey(viewModel.document.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2374 }; A.DocumentEditVM.prototype = { get$document(receiver) { return this.document; }, get$company() { return this.company; } }; A.DocumentEditVM_DocumentEditVM$fromStore_closure.prototype = { call$1($document) { this.store.get$_dispatchers()[0].call$1(new A.UpdateDocument($document)); }, $signature: 72 }; A.DocumentEditVM_DocumentEditVM$fromStore_closure0.prototype = { call$1(context) { }, $signature: 14 }; A.DocumentView.prototype = { createState$0() { return new A._DocumentViewState(B._StateLifecycle_0); } }; A._DocumentViewState.prototype = { build$1(_, context) { var _null = null; return new A.ViewScaffold(false, this._widget.viewModel.document, A.FormCard$(_null, A._setArrayType([], type$.JSArray_legacy_Widget), _null, _null, false, _null, false, _null), _null, _null, _null); } }; A.DocumentViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DocumentViewScreen_build_closure(this), new A.DocumentViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentViewVM); } }; A.DocumentViewScreen_build_closure0.prototype = { call$1(store) { return A.DocumentViewVM_DocumentViewVM$fromStore(store); }, $signature: 2375 }; A.DocumentViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.DocumentView(vm, false, null); }, $signature: 2376 }; A.DocumentViewVM.prototype = { get$document(receiver) { return this.document; }, get$company() { return this.company; } }; A.ExpenseEdit.prototype = { createState$0() { return new A._ExpenseEditState(null, null, B._StateLifecycle_0); } }; A._ExpenseEditState.prototype = { initState$0() { this.super$State$initState(); this._expense_edit$_controller = A.TabController$(null, 0, 3, this); }, dispose$0(_) { this._expense_edit$_controller.dispose$0(0); this.super$__ExpenseEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _expense_edit$_onSavePressed$2(context, action) { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._ExpenseEditState__onSavePressed_closure(this, context, action)); }, _expense_edit$_onSavePressed$1(context) { return this._expense_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var client, prefState, isFullscreen, t4, t5, t6, footer, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, expense = viewModel.expense, state = viewModel.state, store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; client = t2[t3].clientState.$get$1(0, expense.clientId); prefState = state.prefState; isFullscreen = prefState.isEditorFullScreen$1(B.EntityType_expense); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t4.$index(0, t5), "expense_total"); if (t6 == null) t6 = ""; footer = B.JSString_methods.$add(t6 + ": ", A.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false)); if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) if (expense.get$isNew()) t4 = t1.get$newRecurringExpense(); else { t4 = J.$index$asx(t4.$index(0, t5), "edit_recurring_expense"); if (t4 == null) t4 = ""; } else if (expense.get$isNew()) t4 = t1.get$newExpense(); else { t4 = J.$index$asx(t4.$index(0, t5), "edit_expense"); if (t4 == null) t4 = ""; } t3 = expense.getActions$2$client$userCompany(client, t2[t3].userCompany); t2 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._expense_edit$_controller, _null, false, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$settings())], t2)); t6 = $.$get$_ExpenseEditState__formKey(); t7 = type$.ValueKey_legacy_String; t8 = "__expense_" + expense.id; t9 = "" + expense.updatedAt; if (isFullscreen) t7 = new A.ExpenseEditDesktop(viewModel, new A.ValueKey(t8 + "_" + t9 + "__", t7)); else { t10 = _this._expense_edit$_controller; t11 = _this._widget.viewModel; t7 = A.TabBarView$(A._setArrayType([new A.ExpenseEditDetails(t11, _null), new A.ExpenseEditNotes(t11, _null), new A.ExpenseEditSettings(t11, _null)], t2), t10, new A.ValueKey(t8 + "_" + t9 + "__", t7)); } t6 = A.Form$(_null, t7, t6); t7 = A.Theme_of(context).cardColor; t2 = A._setArrayType([], t2); if (A.getLayout(context) === B.AppLayout_desktop) { t1 = isFullscreen ? t1.get$sidebarEditor() : t1.get$fullscreenEditor(); t2.push(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(isFullscreen ? B.IconData_57695_MaterialIcons_null_true : B.IconData_57694_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._ExpenseEditState_build_closure(store), _null, _null, _null, _null, _null, _null), t1)); } t1 = A.getLayout(context); t8 = expense.number; t8 = t8.length === 0 ? footer : t8 + " \u2022 " + footer; t2.push(new A.AppBorder(new A.Padding(B.EdgeInsets_16_0_0_0, new A.Align(B.Alignment_m1_0, _null, _null, A.Text$(t8, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, prefState.enableDarkMode ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null), _null, _null, t1 === B.AppLayout_desktop, false, _null)); return A.EditScaffold$(t3, t5, t6, A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t2, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), t7, 0, new A.CircularNotchedRectangle()), expense, _null, isFullscreen, new A._ExpenseEditState_build_closure0(_this), new A._ExpenseEditState_build_closure1(viewModel), new A._ExpenseEditState_build_closure2(_this), _null, t4); } }; A._ExpenseEditState__onSavePressed_closure.prototype = { call$1(duration) { if (!$.$get$_ExpenseEditState__formKey().get$currentState().validate$0()) return; this.$this._widget.viewModel.onSavePressed.call$2(this.context, this.action); }, $signature: 36 }; A._ExpenseEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._ExpenseEditState_build_closure2.prototype = { call$1(context) { return this.$this._expense_edit$_onSavePressed$1(context); }, $signature: 30 }; A._ExpenseEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._expense_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._ExpenseEditState_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(B.EntityType_expense)); }, $signature: 9 }; A.__ExpenseEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ExpenseEditDesktop.prototype = { build$1(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ExpenseEditDetails(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ExpenseEditNotes(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.ExpenseEditSettings(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1)], t2), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t2), _null, _null, _null); } }; A.ExpenseEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ExpenseEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ExpenseEditDetailsState.prototype = { didChangeDependencies$0() { var expense, _this = this, t1 = _this._expense_edit_details$_numberController, t2 = _this._expense_edit_details$_amountController, t3 = _this._expense_edit_details$_custom1Controller, t4 = _this._expense_edit_details$_custom2Controller, t5 = _this._expense_edit_details$_custom3Controller, t6 = _this._expense_edit_details$_custom4Controller, t7 = A._setArrayType([t1, t2, t3, t4, t5, t6], type$.JSArray_legacy_TextEditingController); _this._expense_edit_details$_controllers = t7; B.JSArray_methods.forEach$1(t7, new A.ExpenseEditDetailsState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, A.formatNumber(expense.amount, t1, null, null, B.FormatNumberType_4, true, null, false)); t3.set$text(0, expense.customValue1); t4.set$text(0, expense.customValue2); t5.set$text(0, expense.customValue3); t6.set$text(0, expense.customValue4); t6 = _this._expense_edit_details$_controllers; (t6 && B.JSArray_methods).forEach$1(t6, new A.ExpenseEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._expense_edit_details$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ExpenseEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_details$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new A.ExpenseEditDetailsState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_details$_debouncer.run$1(new A.ExpenseEditDetailsState__onChanged_closure0(viewModel, expense)); }, build$1(_, context) { var company, t4, staticState, t5, vendorState, clientState, isFullscreen, amountField, t6, t7, t8, t9, t10, t11, t12, t13, _list, i, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), viewModel = _this._widget.viewModel, expense = viewModel.expense, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; company = t2[t3].userCompany.company; t4 = viewModel.state; staticState = t4.staticState; t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; t4 = t5._list[t4]; vendorState = t4.vendorState; clientState = t4.clientState; isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_expense); t4 = t1.get$amount(); t5 = viewModel.onSavePressed; amountField = A.DecoratedFormField$(false, _null, false, false, _this._expense_edit_details$_amountController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t4, _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null); t4 = isFullscreen ? B.EdgeInsets_12_12_6_0 : _null; t6 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([], t6); if (!expense.get$isNew()) { t8 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "expense_number"); if (t8 == null) t8 = ""; t7.push(A.DecoratedFormField$(false, _null, false, false, _this._expense_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t8, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); } t8 = t1.get$vendor(t1); t9 = $.$get$memoizedDropdownVendorList(); t10 = vendorState.map; t11 = vendorState.list; t12 = t2[t3].userState.map; t13 = state.staticState; t7.push(A.EntityDropdown$(true, false, true, expense.vendorId, t9.call$4(t10, t11, t12, t13), _null, B.EntityType_vendor, B.List_empty0, t8, new A.ExpenseEditDetailsState_build_closure(viewModel, context), new A.ExpenseEditDetailsState_build_closure0(store), new A.ExpenseEditDetailsState_build_closure1(viewModel, expense), _null, _null, _null)); t8 = expense.invoiceId; if (!(t8 != null && t8.length !== 0)) { t8 = t1.get$client(t1); t9 = expense.clientId; B.JSArray_methods.addAll$1(t7, A._setArrayType([A.EntityDropdown$(true, false, false, t9, $.$get$memoizedDropdownClientList().call$4(clientState.map, clientState.list, t2[t3].userState.map, t13), _null, B.EntityType_client, B.List_empty0, t8, new A.ExpenseEditDetailsState_build_closure2(viewModel, context), _null, new A.ExpenseEditDetailsState_build_closure3(company, viewModel, expense), _null, _null, _null), new A.ProjectPicker(expense.projectId, t9, new A.ExpenseEditDetailsState_build_closure4(store, viewModel, expense), _null, new A.ValueKey("__project_" + A.S(t9) + "__", type$.ValueKey_String))], t6)); } t8 = t1.get$category(); t9 = $.$get$memoizedDropdownExpenseCategoriesList(); t3 = t2[t3].expenseCategoryState; t7.push(A.EntityDropdown$(true, false, false, expense.categoryId, t9.call$2(t3.map, t3.list), _null, B.EntityType_expenseCategory, B.List_empty0, t8, _null, new A.ExpenseEditDetailsState_build_closure5(store), new A.ExpenseEditDetailsState_build_closure6(viewModel, expense), _null, _null, _null)); t7.push(new A.UserPicker(expense.assignedUserId, new A.ExpenseEditDetailsState_build_closure7(viewModel, expense), _null)); t2 = expense.usesInclusiveTaxes; if (!t2) t7.push(amountField); if (company.get$enableFirstItemTaxRate() || expense.taxName1.length !== 0) { t3 = expense.taxName1; if (expense.calculateTaxByAmount === true) t7.push(new A.TaxRateField(new A.ExpenseEditDetailsState_build_closure8(viewModel, expense), new A.ExpenseEditDetailsState_build_closure9(viewModel, expense), t3, expense.taxAmount1, _null)); else t7.push(new A.TaxRateDropdown(t1.get$tax(), new A.ExpenseEditDetailsState_build_closure10(viewModel, expense), t3, expense.taxRate1, _null)); } if (company.get$enableSecondItemTaxRate() || expense.taxName2.length !== 0) { t3 = expense.taxName2; if (expense.calculateTaxByAmount === true) t7.push(new A.TaxRateField(new A.ExpenseEditDetailsState_build_closure11(viewModel, expense), new A.ExpenseEditDetailsState_build_closure12(viewModel, expense), t3, expense.taxAmount2, _null)); else t7.push(new A.TaxRateDropdown(t1.get$tax(), new A.ExpenseEditDetailsState_build_closure13(viewModel, expense), t3, expense.taxRate2, _null)); } if (company.get$enableThirdItemTaxRate() || expense.taxName3.length !== 0) { t3 = expense.taxName3; if (expense.calculateTaxByAmount === true) t7.push(new A.TaxRateField(new A.ExpenseEditDetailsState_build_closure14(viewModel, expense), new A.ExpenseEditDetailsState_build_closure15(viewModel, expense), t3, expense.taxAmount3, _null)); else t7.push(new A.TaxRateDropdown(t1.get$tax(), new A.ExpenseEditDetailsState_build_closure16(viewModel, expense), t3, expense.taxRate3, _null)); } if (t2) t7.push(amountField); t7.push(A.EntityDropdown$(true, false, false, expense.currencyId, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, B.EntityType_currency, B.List_empty0, t1.get$currency(), _null, _null, new A.ExpenseEditDetailsState_build_closure17(viewModel), _null, _null, _null)); t7.push(A.DatePicker$(false, _null, _null, t1.get$date(), _null, new A.ExpenseEditDetailsState_build_closure18(viewModel, expense), expense.date, _null)); t7.push(new A.CustomField(_this._expense_edit_details$_custom1Controller, _null, t5, "expense1", expense.customValue1, false, _null)); t7.push(new A.CustomField(_this._expense_edit_details$_custom2Controller, _null, t5, "expense2", expense.customValue2, false, _null)); t7.push(new A.CustomField(_this._expense_edit_details$_custom3Controller, _null, t5, "expense3", expense.customValue3, false, _null)); t7.push(new A.CustomField(_this._expense_edit_details$_custom4Controller, _null, t5, "expense4", expense.customValue4, false, _null)); t2 = A._setArrayType([A.FormCard$(_null, t7, _null, _null, false, _null, false, t4)], t6); if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) { t3 = isFullscreen ? B.EdgeInsets_12_12_6_0 : _null; t4 = t1.get$frequency(t1); t5 = B.Map_tOn4d.get$entries(B.Map_tOn4d); t4 = A.AppDropdownButton$(_null, "", true, t5.map$1$1(t5, new A.ExpenseEditDetailsState_build_closure19(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t4, new A.ExpenseEditDetailsState_build_closure20(viewModel, expense), _null, false, expense.frequencyId, type$.legacy_String); t5 = expense.lastSentDate.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t5 = A.DatePicker$(false, new A.DateTime(Date.now(), false), _null, t5, _null, new A.ExpenseEditDetailsState_build_closure21(viewModel, expense), expense.nextSendDate, _null); t7 = t1.get$remainingCycles(); t8 = type$.legacy_int; t1 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, -1, t8)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(37, t8); for (i = 0; i < 37; ++i) _list[i] = i; t9 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t1, A.List_List$of(new A.MappedListIterable(_list, new A.ExpenseEditDetailsState_build_closure22(), t9), true, t9._eval$1("ListIterable.E"))); t2.push(A.FormCard$(_null, A._setArrayType([t4, t5, A.AppDropdownButton$(_null, _null, true, t1, _null, t7, new A.ExpenseEditDetailsState_build_closure23(viewModel, expense), _null, false, expense.remainingCycles, t8)], t6), _null, _null, false, _null, false, t3)); } return new A.ScrollableListView(t2, _null, _null, _null); } }; A.ExpenseEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_details$_onChanged()); }, $signature: 12 }; A.ExpenseEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_details$_onChanged()); }, $signature: 12 }; A.ExpenseEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ExpenseEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._expense_edit_details$_numberController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_number = t2; t2 = A.parseDouble(t1._expense_edit_details$_amountController._change_notifier$_value.text, false); b.get$_expense_model$_$this()._expense_model$_amount = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue1 = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue2 = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue3 = t2; t1 = J.trim$0$s(t1._expense_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue4 = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; A.ExpenseEditDetailsState_build_closure1.prototype = { call$1(vendor) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure18(vendor))); }, $signature: 34 }; A.ExpenseEditDetailsState_build__closure18.prototype = { call$1(b) { var t1 = this.vendor; t1 = t1 == null ? null : t1.get$id(t1); b.get$_expense_model$_$this()._expense_model$_vendorId = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure.prototype = { call$1(completer) { this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, $signature: 184 }; A.ExpenseEditDetailsState_build_closure0.prototype = { call$2(completer, $name) { var t1 = A.VendorEntity_VendorEntity(null, null, null).rebuild$1(new A.ExpenseEditDetailsState_build__closure19($name)); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorRequest(completer, t1)); }, $signature: 214 }; A.ExpenseEditDetailsState_build__closure19.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_name = this.name; return b; }, $signature: 105 }; A.ExpenseEditDetailsState_build_closure3.prototype = { call$1(client) { var t1, currencyId; type$.legacy_ClientEntity._as(client); t1 = client == null ? null : client.settings; currencyId = t1 == null ? null : t1.currencyId; if (currencyId == null) { t1 = this.company.settings.currencyId; currencyId = t1 == null ? "1" : t1; } this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure17(client, currencyId))); }, $signature: 34 }; A.ExpenseEditDetailsState_build__closure17.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._expense_model$_clientId = t1; b.get$_expense_model$_$this()._invoiceCurrencyId = this.currencyId; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure2.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 184 }; A.ExpenseEditDetailsState_build_closure4.prototype = { call$1(selectedId) { var t3, t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t3 = this.expense; this.viewModel.onChanged.call$1(t3.rebuild$1(new A.ExpenseEditDetailsState_build__closure16(t2._list[t1].projectState.$get$1(0, selectedId), t3))); }, $signature: 11 }; A.ExpenseEditDetailsState_build__closure16.prototype = { call$1(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_expense_model$_$this()._expense_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.expense.clientId; b.get$_expense_model$_$this()._expense_model$_clientId = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure6.prototype = { call$1(category) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure14(category))); }, $signature: 34 }; A.ExpenseEditDetailsState_build__closure14.prototype = { call$1(b) { var t1 = this.category; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._categoryId = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure5.prototype = { call$2(completer, $name) { var t1 = A.ExpenseCategoryEntity_ExpenseCategoryEntity(null, null).rebuild$1(new A.ExpenseEditDetailsState_build__closure15($name)); this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseCategoryRequest(completer, t1)); }, $signature: 214 }; A.ExpenseEditDetailsState_build__closure15.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_name = this.name; return b; }, $signature: 292 }; A.ExpenseEditDetailsState_build_closure7.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure13(userId))); }, $signature: 5 }; A.ExpenseEditDetailsState_build__closure13.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_assignedUserId = this.userId; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure8.prototype = { call$1($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure12($name))); }, $signature: 5 }; A.ExpenseEditDetailsState_build__closure12.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_taxName1 = this.name; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure9.prototype = { call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure11(amount))); }, $signature: 452 }; A.ExpenseEditDetailsState_build__closure11.prototype = { call$1(b) { b.get$_expense_model$_$this()._taxAmount1 = this.amount; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure10.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure10(taxRate))); }, $signature: 94 }; A.ExpenseEditDetailsState_build__closure10.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate1 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName1 = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure11.prototype = { call$1($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure9($name))); }, $signature: 5 }; A.ExpenseEditDetailsState_build__closure9.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_taxName2 = this.name; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure12.prototype = { call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure8(amount))); }, $signature: 452 }; A.ExpenseEditDetailsState_build__closure8.prototype = { call$1(b) { b.get$_expense_model$_$this()._taxAmount2 = this.amount; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure13.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure7(taxRate))); }, $signature: 94 }; A.ExpenseEditDetailsState_build__closure7.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate2 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName2 = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure14.prototype = { call$1($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure6($name))); }, $signature: 5 }; A.ExpenseEditDetailsState_build__closure6.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_taxName3 = this.name; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure15.prototype = { call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure5(amount))); }, $signature: 452 }; A.ExpenseEditDetailsState_build__closure5.prototype = { call$1(b) { b.get$_expense_model$_$this()._taxAmount3 = this.amount; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure16.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure4(taxRate))); }, $signature: 94 }; A.ExpenseEditDetailsState_build__closure4.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate3 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName3 = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure17.prototype = { call$1(currency) { var t1 = this.viewModel; return t1.onChanged.call$1(t1.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure3(currency))); }, $signature: 61 }; A.ExpenseEditDetailsState_build__closure3.prototype = { call$1(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._expense_model$_currencyId = t1; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure18.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure2(date))); }, $signature: 53 }; A.ExpenseEditDetailsState_build__closure2.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_date = this.date; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure20.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure1(value))); }, $signature: 7 }; A.ExpenseEditDetailsState_build__closure1.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_frequencyId = this.value; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure19.prototype = { call$1(entry) { var _null = null, t1 = entry.get$key(entry); return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.legacy_String); }, $signature: 298 }; A.ExpenseEditDetailsState_build_closure21.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure0(date))); }, $signature: 53 }; A.ExpenseEditDetailsState_build__closure0.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_nextSendDate = this.date; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure23.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure(value))); }, $signature: 12 }; A.ExpenseEditDetailsState_build__closure.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_remainingCycles = this.value; return b; }, $signature: 29 }; A.ExpenseEditDetailsState_build_closure22.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(A.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A.ExpenseEditNotes.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ExpenseEditNotesState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ExpenseEditNotesState.prototype = { didChangeDependencies$0() { var expense, _this = this, t1 = _this._publicNotesController, t2 = _this._expense_edit_notes$_privateNotesController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._expense_edit_notes$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A.ExpenseEditNotesState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.publicNotes); t2.set$text(0, expense.privateNotes); t2 = _this._expense_edit_notes$_controllers; (t2 && B.JSArray_methods).forEach$1(t2, new A.ExpenseEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._expense_edit_notes$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ExpenseEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_notes$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new A.ExpenseEditNotesState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_notes$_debouncer.run$1(new A.ExpenseEditNotesState__onChanged_closure0(viewModel, expense)); }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget.viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_expense) ? B.EdgeInsets_6_12_6_0 : _null, t3 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, this._publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$publicNotes(), 10, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, this._expense_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$privateNotes(), 10, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t3), _null, _null, false, _null, false, t2)], t3), _null, _null, _null); } }; A.ExpenseEditNotesState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_notes$_onChanged()); }, $signature: 12 }; A.ExpenseEditNotesState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_notes$_onChanged()); }, $signature: 12 }; A.ExpenseEditNotesState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ExpenseEditNotesState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._publicNotesController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_publicNotes = t2; t1 = J.trim$0$s(t1._expense_edit_notes$_privateNotesController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_privateNotes = t1; return b; }, $signature: 29 }; A.ExpenseEditNotesState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; A.ExpenseEditSettings.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ExpenseEditSettingsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ExpenseEditSettingsState.prototype = { didChangeDependencies$0() { var expense, _this = this, t1 = _this._expense_edit_settings$_transactionReferenceController, t2 = _this._expense_edit_settings$_exchangeRateController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._expense_edit_settings$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A.ExpenseEditSettingsState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.transactionReference); t1 = expense.exchangeRate; t3 = _this._framework$_element; t3.toString; t2.set$text(0, A.formatNumber(t1, t3, null, null, B.FormatNumberType_5, true, null, false)); t3 = _this._expense_edit_settings$_controllers; (t3 && B.JSArray_methods).forEach$1(t3, new A.ExpenseEditSettingsState_didChangeDependencies_closure0(_this)); _this._showPaymentFields = expense.paymentDate.length !== 0; _this._showConvertCurrencyFields = t1 !== 0 && t1 !== 1; _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._expense_edit_settings$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.ExpenseEditSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_settings$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new A.ExpenseEditSettingsState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_settings$_debouncer.run$1(new A.ExpenseEditSettingsState__onChanged_closure0(viewModel, expense)); }, _setCurrency$1(currency) { var viewModel = this._widget.viewModel, expense = viewModel.expense, exchangeRate = currency == null ? 1 : A.getExchangeRate(viewModel.state.staticState.currencyMap, expense.currencyId, currency.id), t1 = expense.rebuild$1(new A.ExpenseEditSettingsState__setCurrency_closure(currency, expense, exchangeRate)); viewModel.onChanged.call$1(t1); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ExpenseEditSettingsState__setCurrency_closure0(this, exchangeRate)); }, _calculateExchangeRate$0() { var viewModel, expense, amount, exchangeRate, t1, t2, t3, _this = this; if (_this._expense_edit_settings$_convertedAmount === 0) return; viewModel = _this._widget.viewModel; expense = viewModel.expense; amount = expense.get$grossAmount(); exchangeRate = _this._expense_edit_settings$_convertedAmount / amount; t1 = _this._expense_edit_settings$_exchangeRateController; t2 = _this.get$_expense_edit_settings$_onChanged(); t1.removeListener$1(0, t2); t3 = _this._framework$_element; t3.toString; t1.set$text(0, A.formatNumber(exchangeRate, t3, null, null, B.FormatNumberType_4, true, null, false)); t1.addListener$1(0, t2); t2 = expense.rebuild$1(new A.ExpenseEditSettingsState__calculateExchangeRate_closure(exchangeRate)); viewModel.onChanged.call$1(t2); _this._expense_edit_settings$_convertedAmount = 0; }, build$1(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, _s16_ = "expense_tax_help", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, t2 = viewModel.state, staticState = t2.staticState, t3 = t2.userCompanyStates, t4 = t2.uiState.selectedCompanyIndex, company = t3._list[t4].userCompany.company, expense = viewModel.expense, isFullscreen = t2.prefState.isEditorFullScreen$1(B.EntityType_expense); t2 = isFullscreen ? B.EdgeInsets_6_12_12_0 : _null; t3 = expense.invoiceId; if (t3 != null && t3.length !== 0) t3 = new A.SizedBox(_null, _null, _null, _null); else { t3 = A.Theme_of(context).colorScheme; t4 = A.Text$(t1.get$shouldBeInvoiced(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = A.SwitchListTile$(t3.secondary, _null, new A.ExpenseEditSettingsState_build_closure(viewModel, expense), _null, A.Text$(t1.get$shouldBeInvoicedHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t4, expense.shouldBeInvoiced); t3 = t4; } t4 = A.Theme_of(context).colorScheme; t5 = A.Text$(t1.get$markPaid(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = _this._showPaymentFields; t6 = A.SwitchListTile$(t4.secondary, _null, new A.ExpenseEditSettingsState_build_closure0(_this, expense, viewModel), _null, A.Text$(t1.get$markPaidHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t5, t6); t4 = _this._showPaymentFields ? A.Column$(A._setArrayType([new A.SizedBox(_null, 8, _null, _null), A.EntityDropdown$(true, false, false, expense.paymentTypeId, $.$get$memoizedPaymentTypeList().call$1(staticState.paymentTypeMap), _null, B.EntityType_paymentType, B.List_empty0, t1.get$paymentType(), _null, _null, new A.ExpenseEditSettingsState_build_closure1(viewModel, expense), _null, _null, _null), A.DatePicker$(false, _null, _null, t1.get$date(), _null, new A.ExpenseEditSettingsState_build_closure2(viewModel, expense), expense.paymentDate, _null), A.DecoratedFormField$(false, _null, false, false, _this._expense_edit_settings$_transactionReferenceController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$transactionReference(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null), new A.SizedBox(_null, 16, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1) : new A.SizedBox(_null, _null, _null, _null); t5 = A.Theme_of(context).colorScheme; t7 = A.Text$(t1.get$convertCurrency(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = $.$get$LocalizationsProvider__localizedValues(); t9 = t1.localeCode; t10 = J.$index$asx(t8.$index(0, t9), "convert_currency_help"); t10 = A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = _this._showConvertCurrencyFields; t7 = A.SwitchListTile$(t5.secondary, _null, new A.ExpenseEditSettingsState_build_closure3(_this, staticState, expense, viewModel), _null, t10, t7, t11); if (t11) { t5 = expense.invoiceCurrencyId; t10 = A.EntityDropdown$(true, false, false, t5, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, B.EntityType_currency, B.List_empty0, t1.get$currency(), _null, _null, new A.ExpenseEditSettingsState_build_closure4(_this), _null, _null, _null); t11 = type$.ValueKey_legacy_String; t5 = A.DecoratedFormField$(false, _null, false, false, _this._expense_edit_settings$_exchangeRateController, _null, true, _null, _null, _null, _null, false, true, new A.ValueKey("__rate_" + A.S(t5) + "__", t11), new A.TextInputType(2, true, true), t1.get$exchangeRate(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t12 = expense.get$grossAmount(); t13 = expense.exchangeRate; t14 = t13 !== 1 && t13 !== 0 ? A.formatNumber(expense.get$grossAmount() * t13, context, _null, _null, B.FormatNumberType_4, true, _null, false) : ""; t11 = A.Column$(A._setArrayType([new A.SizedBox(_null, 8, _null, _null), t10, t5, A.Focus$(false, _null, A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, t14, _null, true, false, new A.ValueKey("__expense_amount_" + A.S(t12) + "_" + A.S(t13) + "__", t11), new A.TextInputType(2, true, true), t1.get$convertedAmount(), _null, _null, false, new A.ExpenseEditSettingsState_build_closure5(_this), _null, new A.ExpenseEditSettingsState_build_closure6(_this, viewModel), true, _null, _null, B.TextAlign_4, _null), _null, _null, _null, _null, true, _null, new A.ExpenseEditSettingsState_build_closure7(_this), _null, _null, _null), new A.SizedBox(_null, 16, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t5 = t11; } else t5 = new A.SizedBox(_null, _null, _null, _null); t10 = A.Theme_of(context).colorScheme; t11 = A.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = type$.JSArray_legacy_Widget; t2 = A.FormCard$(_null, A._setArrayType([t3, t6, t4, t7, t5, A.SwitchListTile$(t10.secondary, _null, new A.ExpenseEditSettingsState_build_closure8(viewModel, expense), _null, A.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, expense.invoiceDocuments)], t12), _null, _null, false, _null, false, t2); t3 = isFullscreen ? B.EdgeInsets_6_12_12_0 : _null; if (company.numberOfItemTaxRates === 0) { t4 = J.$index$asx(t8.$index(0, t9), _s16_); t1 = A._setArrayType([A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t4 == null ? J.$index$asx(t8.$index(0, "en"), _s16_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.OutlinedButton$(A.Text$(t1.get$settings(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ExpenseEditSettingsState_build_closure9(context), _null)], t12), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null)], t12); } else { t4 = t1.get$enterTaxes(); t5 = t1.get$byAmount(); t6 = t1.get$byRate(); t4 = A.BoolDropdownButton$(t6, t5, _null, _null, t4, 80, new A.ExpenseEditSettingsState_build_closure10(viewModel, expense), expense.calculateTaxByAmount === true); t5 = A.Theme_of(context).colorScheme; t6 = A.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A._setArrayType([t4, new A.SizedBox(_null, 16, _null, _null), A.SwitchListTile$(t5.secondary, _null, new A.ExpenseEditSettingsState_build_closure11(viewModel, expense), _null, A.Text$("\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", _null, _null, _null, _null, _null, _null, _null, _null, _null), t6, expense.usesInclusiveTaxes)], t12); t1 = t6; } return new A.ScrollableListView(A._setArrayType([t2, A.FormCard$(_null, t1, _null, _null, false, _null, false, t3)], t12), _null, _null, _null); } }; A.ExpenseEditSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_settings$_onChanged()); }, $signature: 12 }; A.ExpenseEditSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_settings$_onChanged()); }, $signature: 12 }; A.ExpenseEditSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ExpenseEditSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._expense_edit_settings$_transactionReferenceController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_transactionReference = t2; t1 = A.parseDouble(t1._expense_edit_settings$_exchangeRateController._change_notifier$_value.text, false); b.get$_expense_model$_$this()._expense_model$_exchangeRate = t1; return b; }, $signature: 29 }; A.ExpenseEditSettingsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; A.ExpenseEditSettingsState__setCurrency_closure.prototype = { call$1(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.id; if (t1 == null) t1 = this.expense.invoiceCurrencyId; b.get$_expense_model$_$this()._invoiceCurrencyId = t1; b.get$_expense_model$_$this()._expense_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 29 }; A.ExpenseEditSettingsState__setCurrency_closure0.prototype = { call$1(duration) { var t1 = this.$this, t2 = t1._framework$_element; t2.toString; t1._expense_edit_settings$_exchangeRateController.set$text(0, A.formatNumber(this.exchangeRate, t2, null, null, B.FormatNumberType_5, true, null, false)); }, $signature: 36 }; A.ExpenseEditSettingsState__calculateExchangeRate_closure.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure11(value))); }, $signature: 20 }; A.ExpenseEditSettingsState_build__closure11.prototype = { call$1(b) { b.get$_expense_model$_$this()._shouldBeInvoiced = this.value; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure0.prototype = { call$1(value) { var t1, _this = this; if (value) { t1 = _this.expense; if (t1.paymentDate.length === 0) _this.viewModel.onChanged.call$1(t1.rebuild$1(new A.ExpenseEditSettingsState_build__closure7())); } else { _this.viewModel.onChanged.call$1(_this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure8())); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ExpenseEditSettingsState_build__closure9(_this.$this)); } t1 = _this.$this; t1.setState$1(new A.ExpenseEditSettingsState_build__closure10(t1, value)); }, $signature: 20 }; A.ExpenseEditSettingsState_build__closure7.prototype = { call$1(b) { var t1 = A.convertDateTimeToSqlDate(null); b.get$_expense_model$_$this()._paymentDate = t1; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build__closure8.prototype = { call$1(b) { b.get$_expense_model$_$this()._paymentDate = ""; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build__closure9.prototype = { call$1(duration) { this.$this._expense_edit_settings$_transactionReferenceController.set$text(0, ""); }, $signature: 36 }; A.ExpenseEditSettingsState_build__closure10.prototype = { call$0() { return this.$this._showPaymentFields = this.value; }, $signature: 21 }; A.ExpenseEditSettingsState_build_closure1.prototype = { call$1(paymentType) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure6(paymentType))); }, $signature: 61 }; A.ExpenseEditSettingsState_build__closure6.prototype = { call$1(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._paymentTypeId = t1; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure2.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure5(date))); }, $signature: 53 }; A.ExpenseEditSettingsState_build__closure5.prototype = { call$1(b) { b.get$_expense_model$_$this()._paymentDate = this.date; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure3.prototype = { call$1(value) { var t2, _this = this, t1 = _this.$this; t1.setState$1(new A.ExpenseEditSettingsState_build__closure2(t1, value)); t2 = _this.expense; if (value) t1._setCurrency$1(_this.staticState.currencyMap._map$_map.$index(0, t2.invoiceCurrencyId)); else { _this.viewModel.onChanged.call$1(t2.rebuild$1(new A.ExpenseEditSettingsState_build__closure3())); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ExpenseEditSettingsState_build__closure4(t1)); } }, $signature: 20 }; A.ExpenseEditSettingsState_build__closure2.prototype = { call$0() { return this.$this._showConvertCurrencyFields = this.value; }, $signature: 21 }; A.ExpenseEditSettingsState_build__closure3.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_exchangeRate = 1; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build__closure4.prototype = { call$1(duration) { this.$this._expense_edit_settings$_exchangeRateController.set$text(0, ""); }, $signature: 36 }; A.ExpenseEditSettingsState_build_closure4.prototype = { call$1(currency) { return this.$this._setCurrency$1(currency); }, $signature: 155 }; A.ExpenseEditSettingsState_build_closure7.prototype = { call$1(hasFocus) { return this.$this._calculateExchangeRate$0(); }, $signature: 40 }; A.ExpenseEditSettingsState_build_closure5.prototype = { call$1(value) { this.$this._expense_edit_settings$_convertedAmount = A.parseDouble(value, false); }, $signature: 11 }; A.ExpenseEditSettingsState_build_closure6.prototype = { call$1(context) { this.$this._calculateExchangeRate$0(); this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A.ExpenseEditSettingsState_build_closure8.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure1(value))); }, $signature: 20 }; A.ExpenseEditSettingsState_build__closure1.prototype = { call$1(b) { b.get$_expense_model$_$this()._invoiceDocuments = this.value; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure9.prototype = { call$0() { var _null = null; A.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "tax_settings", false, _null)); }, $signature: 1 }; A.ExpenseEditSettingsState_build_closure10.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure0(value))); }, $signature: 10 }; A.ExpenseEditSettingsState_build__closure0.prototype = { call$1(b) { b.get$_expense_model$_$this()._calculateTaxByAmount = this.value; return b; }, $signature: 29 }; A.ExpenseEditSettingsState_build_closure11.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure(value))); }, $signature: 10 }; A.ExpenseEditSettingsState_build__closure.prototype = { call$1(b) { b.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes = this.value; return b; }, $signature: 29 }; A.ExpenseEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseEditScreen_build_closure(), new A.ExpenseEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseEditVM); } }; A.ExpenseEditScreen_build_closure0.prototype = { call$1(store) { return A.ExpenseEditVM_ExpenseEditVM$fromStore(store); }, $signature: 2380 }; A.ExpenseEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ExpenseEdit(viewModel, new A.ValueKey(viewModel.expense.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2381 }; A.AbstractExpenseEditVM.prototype = { get$expense() { return this.expense; } }; A.ExpenseEditVM.prototype = {}; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure.prototype = { call$1(expense) { this.store.get$_dispatchers()[0].call$1(new A.UpdateExpense(expense)); }, $signature: 140 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure2.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2(t3), t4); }, $signature: 119 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, $signature: 3 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, $signature: 34 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3.prototype = { call$2(context, completer) { var t1 = A.VendorEntity_VendorEntity(null, null, null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, $signature: 3 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0.prototype = { call$1(expense) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, $signature: 34 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, $signature: 170 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3.prototype = { call$0() { var t3, $navigator, t4, _this = this, t1 = _this.store, expense = A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (!expense.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; if (!A.hasExpenseChanges(expense, t2.userCompanyStates._list[t4].expenseState.map)) { t2 = _this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = _this.action; if (t2) A.handleEntitiesActions(A._setArrayType([expense], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_ExpenseEntity); t1.get$_dispatchers()[0].call$1(new A.SaveExpenseRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ExpenseEntity), expense)); return t2.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore___closure(expense, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0()); } }, $signature: 37 }; A.ExpenseEditVM_ExpenseEditVM$fromStore___closure.prototype = { call$1(savedExpense) { var _this = this, _null = null, _s13_ = "/expense/view", t1 = _this.expense, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_expense"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_expense"); if (t2 == null) t2 = ""; } A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedExpense); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedExpense, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_expense) && t2.editAfterSaving) A.editEntity(_null, savedExpense, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedExpense], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedExpense], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedExpense, _null, true); } }, $signature: 140 }; A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ExpenseEditVM_ExpenseEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ExpenseEditVM_ExpenseEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ExpenseListItem.prototype = { build$1(_, context) { var t5, client, vendor, category, filterMatch, listUIState, isInMultiselect, showCheckbox, t6, isChecked, textStyle, textColor, parts, t7, _this = this, _null = null, t1 = {}, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, expenseUIState = uiState.expenseUIState, t3 = state.userCompanyStates, t4 = uiState.selectedCompanyIndex; t3 = t3._list; t5 = _this.expense; client = t3[t4].clientState.$get$1(0, t5.clientId); vendor = t3[t4].vendorState.$get$1(0, t5.vendorId); category = t3[t4].expenseCategoryState.$get$1(0, t5.categoryId); t3 = _this.filter; if (t3 != null && t3.length !== 0) { t4 = t5.matchesFilterValue$1(t3); filterMatch = t4 == null ? client.matchesFilterValue$1(t3) : t4; } else filterMatch = _null; listUIState = expenseUIState.listUIState; t3 = listUIState.selectedIds; isInMultiselect = t3 != null; showCheckbox = _this.onCheckboxChanged != null || isInMultiselect; t4 = _this.isDismissible; if (t4) if (isInMultiselect) { t6 = t5.id; t3 = B.JSArray_methods.contains$1(t3._list, t6); isChecked = t3; } else isChecked = false; else isChecked = _this.isChecked; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; if (filterMatch != null) t1.subtitle = filterMatch; else { t3 = client == null; if (!t3 || vendor != null || category != null) { parts = A._setArrayType([A.formatDate(t5.date, context, true, true, false)], type$.JSArray_legacy_String); if (category != null && !category.get$isNew()) parts.push(category.name); if (vendor != null && !vendor.get$isNew()) parts.push(vendor.name); if (!t3 && !client.get$isNew()) parts.push(client.displayName); t1.subtitle = B.JSArray_methods.join$1(parts, " \u2022 "); } } if (A.getLayout(context) === B.AppLayout_desktop) { t3 = t5.id; t3 = t3 === (uiState.get$isEditing() ? expenseUIState.editing.id : expenseUIState.selectedId); } else t3 = false; t6 = A._lateReadCheck(store.__Store__state, "_state"); t7 = t6.userCompanyStates; t6 = t6.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t7._list[t6].userCompany, t5, new A.LayoutBuilder(new A.ExpenseListItem_build_closure(t1, _this, showCheckbox, listUIState, isChecked, state, textStyle, filterMatch, textColor, t2, category), _null), t3, _this.showCheckbox, t4, _null); }, get$expense() { return this.expense; } }; A.ExpenseListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ExpenseListItem_build__closure(t1), _null, _null, false, _this.isChecked), _null), _null); else { t2 = t1.expense; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.ExpenseListItem_build__closure0(t1)); t2 = t4; } t3 = t1.expense; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t3.publicNotes; t7 = A.Text$(t7 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, t4, _null, _null, _null); t8 = _this._box_0.subtitle; t9 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t7, A.Text$(t8, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t9.get$value(t9) >>> 16 & 255, t9.get$value(t9) >>> 8 & 255, t9.get$value(t9) & 255)), _null, _null, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(8, _null, _null, _null), A.Text$(A.formatNumber(t3.get$grossAmount(), context, _null, t3.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, B.TextAlign_5, _null, _null), new A.SizedBox(16, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ExpenseListItem_build__closure1(t1), new A.ExpenseListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ExpenseListItem_build__closure3(t1), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.expense; t5 = t4.publicNotes; if (t5.length === 0) t5 = t4.number; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, 1, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(t4.amount, context, _null, t4.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 == null) t5 = _this._box_0.subtitle; t6 = _this.textColor; t6 = A.Expanded$(A.Column$(A._setArrayType([A.Text$(t5, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t6.get$value(t6) >>> 16 & 255, t6.get$value(t6) >>> 8 & 255, t6.get$value(t6) & 255)), _null, _null, _null), new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t5 = _this.localization.lookup$1(B.Map_EHoyn.$index(0, t4.get$calculatedStatusId())); t8 = _this.category.color; t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.ExpenseListItem_build__closure4(t1), new A.ExpenseListItem_build__closure5(t1), false, _null, _null, A.Row$(A._setArrayType([t6, A.Text$(t5, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t8.length !== 0 && t8 !== "#fff" ? A.convertHexStringToColor(t8) : new A.ExpenseStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.ExpenseListItem_build__closure2.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.expense, false, false); }, $signature: 0 }; A.ExpenseListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.expense, false, true); }, $signature: 0 }; A.ExpenseListItem_build__closure.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.ExpenseListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.expense], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.ExpenseListItem_build__closure5.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.expense, false, false); }, $signature: 0 }; A.ExpenseListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.expense, false, true); }, $signature: 0 }; A.ExpenseListItem_build__closure3.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.ExpenseListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseListBuilder_build_closure(), A.expense_list_vm_ExpenseListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseListVM); } }; A.ExpenseListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.expenseList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_expense, new A.ExpenseListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.ExpensePresenter(), t2, t4); }, $signature: 2382 }; A.ExpenseListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, expenseId = J.$index$asx(t1.expenseList, index); return A.ExpenseListItem$(t1.expenseMap._map$_map.$index(0, expenseId), t1.filter, false, true, null, null, true); }, $signature: 451 }; A.ExpenseListVM.prototype = { get$user(receiver) { return this.user; } }; A.ExpenseListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ExpenseListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ExpenseListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortExpenses(field)); }, $signature: 5 }; A.ExpenseListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearExpenseMultiselect()); }, $signature: 9 }; A.ExpensePresenter.prototype = { getField$2$context$field(context, field) { var t1, t2, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), expense = type$.legacy_ExpenseEntity._as(_this.entity); switch (field) { case "status": return A.EntityStatusChip$(expense, true, 105); case "vendor": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].vendorState.$get$1(0, expense.vendorId), expense, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].clientState.$get$1(0, expense.clientId), expense, _null); case "date": return A.Text$(A.formatDate(expense.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "net_amount": return A.Text$(A.formatNumber(expense.get$netAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return A.Text$(A.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "converted_amount": t1 = expense.get$grossAmount(); t2 = expense.exchangeRate; if (t2 === 0) t2 = 1; return A.Text$(A.formatNumber(t1 * t2, context, _null, expense.invoiceCurrencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(expense.get$taxAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(expense.publicNotes, _null); case "number": return A.Text$(expense.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return new A.TableTooltip(expense.privateNotes, _null); case "should_be_invoiced": return A.Text$(B.JSBool_methods.toString$0(expense.shouldBeInvoiced), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "transaction_id": return A.Text$(expense.transactionId, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "transaction_reference": return A.Text$(expense.transactionReference, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency": t1 = state.staticState.currencyMap; t2 = expense.currencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "category": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].expenseCategoryState.map; t1 = expense.categoryId; return new A.LinkTextRelatedEntity(t2._map$_map.$index(0, t1), expense, _null); case "project": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].projectState.map; t1 = expense.projectId; return new A.LinkTextRelatedEntity(t2._map$_map.$index(0, t1), expense, _null); case "payment_type": t1 = state.staticState.paymentTypeMap; t2 = expense.paymentTypeId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "payment_date": return A.Text$(A.formatDate(expense.paymentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(expense.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_currency": t1 = state.staticState.currencyMap; t2 = expense.invoiceCurrencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return A.Text$(expense.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return A.Text$(expense.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return A.Text$(expense.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return A.Text$(A.formatNumber(expense.taxRate1, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return A.Text$(A.formatNumber(expense.taxRate2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return A.Text$(A.formatNumber(expense.taxRate3, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].invoiceState.map; t1 = expense.invoiceId; t1 = t2._map$_map.$index(0, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, expense.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, expense.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, expense.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, expense.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + expense.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "recurring_expense": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].recurringExpenseState.$get$1(0, expense.recurringId), expense, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.ExpenseScreen.prototype = { build$1(_, context) { var company, statuses, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); statuses = A._setArrayType([A._$ExpenseStatusEntity$_("", "").rebuild$1(new A.ExpenseScreen_build_closure(t1)), A._$ExpenseStatusEntity$_("", "").rebuild$1(new A.ExpenseScreen_build_closure0(t1)), A._$ExpenseStatusEntity$_("", "").rebuild$1(new A.ExpenseScreen_build_closure1(t1)), A._$ExpenseStatusEntity$_("", "").rebuild$1(new A.ExpenseScreen_build_closure2(t1)), A._$ExpenseStatusEntity$_("", "").rebuild$1(new A.ExpenseScreen_build_closure3(t1))], type$.JSArray_legacy_ExpenseStatusEntity); t2 = t2.expenseUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.expenseList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "vendor", "client", "date", "amount", "public_notes", "entity_state"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("number"); t7.push("net_amount"); t7.push("tax_amount"); t7.push("private_notes"); t7.push("should_be_invoiced"); t7.push("transaction_reference"); t7.push("category"); t7.push("project"); t7.push("payment_date"); t7.push("payment_type"); t7.push("exchange_rate"); t7.push("tax_name1"); t7.push("tax_name2"); t7.push("tax_name3"); t7.push("tax_rate1"); t7.push("tax_rate2"); t7.push("tax_rate3"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("documents"); t7.push("recurring_expense"); t8 = A._setArrayType(["status", "number", "vendor", "client", "date", "amount", "public_notes", "entity_state"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("expense1", true), company.getCustomFieldValues$2$excludeBlank("expense2", true), company.getCustomFieldValues$2$excludeBlank("expense3", true), company.getCustomFieldValues$2$excludeBlank("expense4", true), t8, B.EntityType_expense, false, B.List_empty17, new A.ExpenseScreen_build_closure4(store), new A.ExpenseScreen_build_closure5(store), new A.ExpenseScreen_build_closure6(store), new A.ExpenseScreen_build_closure7(store), new A.ExpenseScreen_build_closure8(store), new A.ExpenseScreen_build_closure9(store), new A.ExpenseScreen_build_closure10(store), new A.ExpenseScreen_build_closure11(store), A._setArrayType(["number", "date", "updated_at"], t6), statuses, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_expense) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "expense_fab", false, new A.ExpenseScreen_build_closure12(context), t1.get$newExpense()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_expense, t2, new A.ExpenseScreen_build_closure13(store), t5, statuses, new A.ExpenseScreen_build_closure14(store), new A.ExpenseScreen_build_closure15(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.ExpenseListBuilder(_null), t7, B.EntityType_expense, t1, 0, _null, new A.ExpenseScreen_build_closure16(store), new A.ExpenseScreen_build_closure17(store)); } }; A.ExpenseScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "1"; t1 = this.localization.get$logged(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 275 }; A.ExpenseScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "2"; t1 = this.localization; t1 = t1.get$pending(t1); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 275 }; A.ExpenseScreen_build_closure1.prototype = { call$1(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "3"; t1 = this.localization.get$invoiced(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 275 }; A.ExpenseScreen_build_closure2.prototype = { call$1(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "5"; t1 = this.localization.get$paid(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 275 }; A.ExpenseScreen_build_closure3.prototype = { call$1(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "4"; t1 = this.localization.get$unpaid(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 275 }; A.ExpenseScreen_build_closure17.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartExpenseMultiselect()); }, $signature: 9 }; A.ExpenseScreen_build_closure13.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpenses(value)); }, $signature: 11 }; A.ExpenseScreen_build_closure15.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByState(state)); }, $signature: 27 }; A.ExpenseScreen_build_closure14.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByStatus($status)); }, $signature: 115 }; A.ExpenseScreen_build_closure16.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearExpenseMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartExpenseMultiselect()); }, $signature: 1 }; A.ExpenseScreen_build_closure9.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortExpenses(value)); }, $signature: 5 }; A.ExpenseScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByCustom1(value)); }, $signature: 5 }; A.ExpenseScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByCustom2(value)); }, $signature: 5 }; A.ExpenseScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByCustom3(value)); }, $signature: 5 }; A.ExpenseScreen_build_closure8.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByCustom4(value)); }, $signature: 5 }; A.ExpenseScreen_build_closure10.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByState(state)); }, $signature: 27 }; A.ExpenseScreen_build_closure11.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpensesByStatus($status)); }, $signature: 115 }; A.ExpenseScreen_build_closure4.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearExpenseMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartExpenseMultiselect()); }, $signature: 1 }; A.ExpenseScreen_build_closure12.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_expense); }, $signature: 1 }; A.ExpenseScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseScreenBuilder_build_closure(), A.expense_screen_vm_ExpenseScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseScreenVM); } }; A.ExpenseScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ExpenseScreen(vm, null); }, $signature: 2385 }; A.ExpenseScreenVM.prototype = {}; A.ExpenseView.prototype = { createState$0() { return new A._ExpenseViewState(null, null, B._StateLifecycle_0); } }; A._ExpenseViewState.prototype = { initState$0() { var viewModel, state, t1, t2, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; state = viewModel.state; t1 = viewModel.expense; t1 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), t1.entityType) ? 3 : 2; _this._widget.toString; t2 = state.uiState.expenseUIState.tabIndex; t1 = A.TabController$(null, t2, t1, _this); _this._expense_view$_controller = t1; t1.addListener$1(0, _this.get$_expense_view$_onTabChanged()); }, _expense_view$_onTabChanged$0() { var t1, store, expense, t2, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); expense = _this._widget.viewModel.expense; t1 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType); t2 = _this._expense_view$_controller; if (t1) { t1 = t2._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateRecurringExpenseTab(t1)); } else { t1 = t2._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateExpenseTab(t1)); } }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._expense_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._expense_view$_controller.removeListener$1(0, _this.get$_expense_view$_onTabChanged()); _this._expense_view$_controller.dispose$0(0); _this.super$__ExpenseViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, expense = viewModel.expense, t2 = this._expense_view$_controller, t3 = A.getLayout(context), t4 = A.Tab$(_null, t1.get$overview()), t5 = expense.documents._list; t4 = A._setArrayType([t4, A.Tab$(_null, t5.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t5.length + ")")], type$.JSArray_legacy_Widget); if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) t4.push(A.Tab$(_null, t1.get$schedule())); t1 = A.TabBar$(t2, _null, t3 === B.AppLayout_mobile, _null, _null, t4); t2 = viewModel.state; if (t2.get$isHosted()) { t3 = t2.uiState.selectedCompanyIndex; t2.userCompanyStates._list[t3].userCompany.account.toString; } return new A.ViewScaffold(false, expense, new A.Builder(new A._ExpenseViewState_build_closure(this, viewModel, expense), _null), _null, t1, _null); } }; A._ExpenseViewState_build_closure.prototype = { call$1(context) { var t4, t5, t6, t7, _null = null, t1 = this.$this, t2 = t1._expense_view$_controller, t3 = this.viewModel; t1._widget.toString; t1 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.RefreshIndicator$(new A.ExpenseOverview(t3, false, _null), new A._ExpenseViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.ExpenseViewDocuments(t3, t3.expense, _null), new A._ExpenseViewState_build__closure0(t3, context))], t1); t5 = this.expense; t6 = type$.JSArray_legacy_EntityType; t7 = t5.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7)) t4.push(A.RefreshIndicator$(new A.ExpenseViewSchedule(t3, _null), new A._ExpenseViewState_build__closure1(t3, context))); t2 = A.Expanded$(A.TabBarView$(t4, t2, _null), 1); if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7)) t3 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7) && B.JSArray_methods.contains$1(A._setArrayType(["-1", "2"], type$.JSArray_legacy_String), t5.get$calculatedStatusId()) ? B.EntityAction_stop : B.EntityAction_start; else t3 = B.EntityAction_invoiceExpense; t4 = t5.invoiceId; if (t4 != null && t4.length !== 0) if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7)) if (!t5.get$canBeStarted()) t4 = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7) && B.JSArray_methods.contains$1(A._setArrayType(["-1", "2"], type$.JSArray_legacy_String), t5.get$calculatedStatusId()); else t4 = true; else t4 = false; else t4 = true; return A.Column$(A._setArrayType([t2, new A.BottomButtons(t5, t3, B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t6), t7) ? B.EntityAction_cloneToRecurring : B.EntityAction_cloneToExpense, t4, true, _null)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._ExpenseViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ExpenseViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ExpenseViewState_build__closure1.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__ExpenseViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ExpenseViewDocuments.prototype = { build$1(_, context) { var t1 = this.expense.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.ExpenseViewDocuments_build_closure(this, context), new A.ExpenseViewDocuments_build_closure0(this, context), null, null); }, get$expense() { return this.expense; } }; A.ExpenseViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.ExpenseViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.ExpenseOverview.prototype = { build$1(_, context) { var t3, vendor, client, invoice, project, category, user, t4, recurringExpense, purchaseOrder, t5, fields, t6, t7, t8, t9, t10, t11, _null = null, _s8_ = "expense1", _s8_0 = "expense2", _s8_1 = "expense3", _s8_2 = "expense4", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, expense = t2.expense, company = t2.company, state = t2.state; t2 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list; vendor = t3[t2].vendorState.$get$1(0, expense.vendorId); client = t3[t2].clientState.$get$1(0, expense.clientId); invoice = t3[t2].invoiceState.$get$1(0, expense.invoiceId); project = t3[t2].projectState.$get$1(0, expense.projectId); category = t3[t2].expenseCategoryState.$get$1(0, expense.categoryId); user = t3[t2].userState.$get$1(0, expense.assignedUserId); t4 = expense.recurringId; recurringExpense = t3[t2].recurringExpenseState.$get$1(0, t4); purchaseOrder = t3[t2].userCompany.company.isModuleEnabled$1(B.EntityType_purchaseOrder) ? $.$get$memoizedExpensePurchaseOrderSelector().call$2(expense, t3[t2].purchaseOrderState.map) : _null; t5 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_empty(t5, t5); t5 = expense.customValue1; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), A.formatCustomValue(context, _s8_, t5)); t5 = expense.customValue2; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), A.formatCustomValue(context, _s8_0, t5)); t5 = expense.customValue3; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), A.formatCustomValue(context, _s8_1, t5)); t5 = expense.customValue4; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), A.formatCustomValue(context, _s8_2, t5)); t5 = expense.exchangeRate; t6 = t5 !== 1 && t5 !== 0; t7 = state.prefState; t8 = expense.currencyId; if (t6) { t6 = new A.ExpenseStatusColors(t7.get$colorThemeModel()).get$colors().$index(0, expense.get$calculatedStatusId()); t7 = t1.lookup$1("expense_status_" + A.S(expense.get$calculatedStatusId())); t9 = t1.get$amount(); t8 = A.formatNumber(expense.get$grossAmount(), context, _null, t8, B.FormatNumberType_0, true, _null, false); t10 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "converted"); if (t10 == null) t10 = ""; t11 = expense.get$grossAmount(); t5 = A.EntityHeader$(expense, t9, t10, A.formatNumber(A.round(t11 * (t5 === 0 ? 1 : t5), 2), context, _null, expense.invoiceCurrencyId, B.FormatNumberType_0, true, _null, false), t6, t7, t8); } else { t5 = new A.ExpenseStatusColors(t7.get$colorThemeModel()).get$colors().$index(0, expense.get$calculatedStatusId()); t6 = t1.lookup$1("expense_status_" + A.S(expense.get$calculatedStatusId())); t8 = A.EntityHeader$(expense, t1.get$amount(), _null, _null, t5, t6, A.formatNumber(expense.get$grossAmount(), context, _null, t8, B.FormatNumberType_0, true, _null, false)); t5 = t8; } t6 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([t5, new A.ListDivider(_null)], t6); t7 = expense.privateNotes; if (t7.length !== 0) B.JSArray_methods.addAll$1(t5, A._setArrayType([new A.IconMessage(t7, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null), new A.ListDivider(_null)], t6)); t5.push(new A.FieldGrid(fields, _null)); t5.push(A.EntityListTile$(vendor, false, _null)); t5.push(A.EntityListTile$(client, false, _null)); t5.push(A.EntityListTile$(project, false, _null)); t5.push(A.EntityListTile$(category, false, _null)); t5.push(A.EntityListTile$(user, false, _null)); t5.push(A.EntityListTile$(invoice, false, _null)); t5.push(A.EntityListTile$(purchaseOrder, false, _null)); if ((t4 == null ? "" : t4).length !== 0) t5.push(A.EntityListTile$(recurringExpense, false, _null)); if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) t5.push(new A.EntitiesListTile(expense, B.EntityType_expense, t1.get$expenses(), $.$get$memoizedRecurringExpenseStatsForExpense().call$2(expense.id, t3[t2].expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), false, true, _null)); B.JSArray_methods.addAll$1(t5, new A.ExpenseOverview_build__buildDetailsList(expense, context, t1, state).call$0()); t1 = expense.publicNotes; if (t1.length !== 0) B.JSArray_methods.addAll$1(t5, A._setArrayType([new A.IconMessage(t1, _null, _null, _null, _null), new A.ListDivider(_null)], t6)); return new A.ScrollableListView(t5, _null, _null, _null); } }; A.ExpenseOverview_build__buildDetailsList.prototype = { call$0() { var t2, tax, t3, t4, t5, t6, t7, _this = this, _null = null, _s1_ = " ", t1 = _this.expense; if (t1.calculateTaxByAmount) { t2 = t1.taxName1; tax = t2.length !== 0 ? J.$add$ansx(A.formatNumber(t1.taxAmount1, _this.context, _null, _null, B.FormatNumberType_0, true, _null, false), _s1_) + t2 : ""; t2 = t1.taxName2; if (t2.length !== 0) tax += B.JSString_methods.$add(_s1_, A.formatNumber(t1.taxAmount2, _this.context, _null, _null, B.FormatNumberType_0, true, _null, false)) + " " + t2; t2 = t1.taxName3; if (t2.length !== 0) tax += B.JSString_methods.$add(_s1_, A.formatNumber(t1.taxAmount3, _this.context, _null, _null, B.FormatNumberType_0, true, _null, false)) + " " + t2; } else { t2 = t1.taxName1; tax = t2.length !== 0 ? J.$add$ansx(A.formatNumber(t1.taxRate1, _this.context, _null, _null, B.FormatNumberType_1, true, _null, false), _s1_) + t2 : ""; t2 = t1.taxName2; if (t2.length !== 0) tax += B.JSString_methods.$add(_s1_, A.formatNumber(t1.taxRate2, _this.context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t2; t2 = t1.taxName3; if (t2.length !== 0) tax += B.JSString_methods.$add(_s1_, A.formatNumber(t1.taxRate3, _this.context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t2; } t2 = type$.legacy_String; t2 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t3 = type$.JSArray_legacy_EntityType; t4 = t1.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t3), t4)) { t5 = _this.localization; t2.$indexSet(0, t5.get$frequency(t5), t5.lookup$1(B.Map_tOn4d.$index(0, t1.frequencyId))); } if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t3), t4)) { t5 = _this.localization; t6 = t5.get$remainingCycles(); t7 = t1.remainingCycles; t2.$indexSet(0, t6, t7 === -1 ? t5.get$endless() : "" + t7); } if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t3), t4)) t2.$indexSet(0, _this.localization.get$sendDate(), A.formatDate(t1.nextSendDate, _this.context, true, true, false)); if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t3), t4)) t2.$indexSet(0, _this.localization.get$date(), A.formatDate(t1.date, _this.context, true, true, false)); t3 = _this.localization; t2.$indexSet(0, t3.get$transactionReference(), t1.transactionReference); t2.$indexSet(0, t3.get$tax(), tax); t4 = _this.context; t2.$indexSet(0, t3.get$paymentDate(), A.formatDate(t1.paymentDate, t4, true, true, false)); t5 = t3.get$paymentType(); t6 = _this.state.staticState.paymentTypeMap._map$_map.$index(0, t1.paymentTypeId); t2.$indexSet(0, t5, t6 == null ? _null : t6.name); t3 = t3.get$exchangeRate(); t1 = t1.exchangeRate; t2.$indexSet(0, t3, t1 !== 1 && t1 !== 0 ? A.formatNumber(t1, t4, _null, _null, B.FormatNumberType_3, true, _null, false) : _null); return A._setArrayType([new A.FieldGrid(t2, _null)], type$.JSArray_legacy_Widget); }, $signature: 227 }; A.ExpenseViewSchedule.prototype = { createState$0() { return new A._ExpenseViewScheduleState(B._StateLifecycle_0); } }; A._ExpenseViewScheduleState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.expense.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var t2, t3, _null = null, expense = this._widget.viewModel.expense, t1 = type$.JSArray_legacy_Widget; t1 = A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(A.Text$(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$sendDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1)], t1), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t1); if (expense.get$isStale() && expense.recurringDates._list.length === 0) t1.push(new A.LoadingIndicator(300, false, _null)); t2 = expense.recurringDates._list; t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Padding*>"); B.JSArray_methods.addAll$1(t1, A.List_List$of(new A.MappedListIterable(t2, new A._ExpenseViewScheduleState_build_closure(context), t3), true, t3._eval$1("ListIterable.E"))); return new A.ScrollableListView(t1, _null, B.EdgeInsets_16_16_16_16, _null); } }; A._ExpenseViewScheduleState_build_closure.prototype = { call$1(schedule) { var _null = null; return new A.Padding(B.EdgeInsets_0_16_0_0, A.Row$(A._setArrayType([A.Expanded$(A.Text$(A.formatDate(schedule.sendDate, this.context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null); }, $signature: 2386 }; A.ExpenseViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseViewScreen_build_closure(this), new A.ExpenseViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseViewVM); } }; A.ExpenseViewScreen_build_closure0.prototype = { call$1(store) { return A.ExpenseViewVM_ExpenseViewVM$fromStore(store); }, $signature: 2387 }; A.ExpenseViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.ExpenseView(vm, false, vm.state.uiState.expenseUIState.tabIndex, null); }, $signature: 2388 }; A.AbstractExpenseViewVM.prototype = { get$expense() { return this.expense; }, get$company() { return this.company; } }; A.ExpenseViewVM.prototype = {}; A.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadExpense(completer, this.expense.id)); return completer.future; }, $signature: 17 }; A.ExpenseViewVM_ExpenseViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ExpenseViewVM_ExpenseViewVM$fromStore_closure0.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveExpenseDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.expense)); t1.then$1$1(0, new A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.ExpenseViewVM_ExpenseViewVM$fromStore__closure1()); }, $signature: 96 }; A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.ExpenseViewVM_ExpenseViewVM$fromStore__closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ExpenseViewVM_ExpenseViewVM$fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ExpenseViewVM_ExpenseViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ExpenseViewVM_ExpenseViewVM$fromStore_closure1.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.ExpenseViewVM_ExpenseViewVM$fromStore__closure(t2, this.expense), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.ExpenseViewVM_ExpenseViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadExpense(null, this.expense.id)); }, $signature: 103 }; A.ExpenseCategoryEdit.prototype = { createState$0() { return new A._ExpenseCategoryEditState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._ExpenseCategoryEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = _this._nameController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._expense_category_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._ExpenseCategoryEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.expenseCategory.name); B.JSArray_methods.forEach$1(_this._expense_category_edit$_controllers, new A._ExpenseCategoryEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._expense_category_edit$_controllers, new A._ExpenseCategoryEditState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_category_edit$_onChanged$0() { var _this = this, expenseCategory = _this._widget.viewModel.expenseCategory.rebuild$1(new A._ExpenseCategoryEditState__onChanged_closure(_this)); if (!expenseCategory.$eq(0, _this._widget.viewModel.expenseCategory)) _this._expense_category_edit$_debouncer.run$1(new A._ExpenseCategoryEditState__onChanged_closure0(_this, expenseCategory)); }, build$1(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), expenseCategory = viewModel.expenseCategory; if (expenseCategory.get$isNew()) t2 = t1.get$newExpenseCategory(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_expense_category"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._ExpenseCategoryEditState_build_closure(this, t1, viewModel, expenseCategory), _null), $.$get$_ExpenseCategoryEditState__formKey()), _null, expenseCategory, _null, false, _null, new A._ExpenseCategoryEditState_build_closure0(viewModel), new A._ExpenseCategoryEditState_build_closure1(this, viewModel), _null, t2); } }; A._ExpenseCategoryEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_expense_category_edit$_onChanged()); }, $signature: 33 }; A._ExpenseCategoryEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_expense_category_edit$_onChanged()); }, $signature: 33 }; A._ExpenseCategoryEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_expense_category_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._ExpenseCategoryEditState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._nameController._change_notifier$_value.text); b.get$_expense_category_model$_$this()._expense_category_model$_name = t1; return b; }, $signature: 292 }; A._ExpenseCategoryEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.expenseCategory); }, $signature: 1 }; A._ExpenseCategoryEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._ExpenseCategoryEditState_build_closure1.prototype = { call$1(context) { var isValid = $.$get$_ExpenseCategoryEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._ExpenseCategoryEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._ExpenseCategoryEditState_build__closure.prototype = { call$0() { this.$this._autoValidate = !this.isValid; }, $signature: 1 }; A._ExpenseCategoryEditState_build_closure.prototype = { call$1(context) { var _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = _this.viewModel, t4 = _this.expenseCategory, t5 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._autoValidate, t1._nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2.get$name(t2), _null, _null, false, _null, _null, t3.onSavePressed, true, _null, _null, B.TextAlign_4, _null), A.FormColorPicker$(t4.color, _null, new A._ExpenseCategoryEditState_build__closure0(t3, t4))], t5), _null, _null, false, _null, false, _null)], t5), _null, _null, _null); }, $signature: 167 }; A._ExpenseCategoryEditState_build__closure0.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.expenseCategory.rebuild$1(new A._ExpenseCategoryEditState_build___closure(value))); }, $signature: 5 }; A._ExpenseCategoryEditState_build___closure.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_color = this.value; return b; }, $signature: 292 }; A.ExpenseCategoryEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseCategoryEditScreen_build_closure(), new A.ExpenseCategoryEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryEditVM); } }; A.ExpenseCategoryEditScreen_build_closure0.prototype = { call$1(store) { return A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore(store); }, $signature: 2389 }; A.ExpenseCategoryEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ExpenseCategoryEdit(viewModel, new A.ValueKey(viewModel.expenseCategory.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2390 }; A.ExpenseCategoryEditVM.prototype = { get$expenseCategory() { return this.expenseCategory; }, get$company() { return this.company; } }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure.prototype = { call$1(expenseCategory) { this.store.get$_dispatchers()[0].call$1(new A.UpdateExpenseCategory(expenseCategory)); }, $signature: 291 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, expenseCategory = A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseCategoryUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_ExpenseCategoryEntity); t1.get$_dispatchers()[0].call$1(new A.SaveExpenseCategoryRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ExpenseCategoryEntity), expenseCategory)); return t2.then$1$1(0, new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure(expenseCategory, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0()); }, $signature: 37 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure.prototype = { call$1(savedExpenseCategory) { var _this = this, _s31_ = "/settings/expense_category/view", t1 = _this.expenseCategory, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_expense_category"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_expense_category"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s31_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s31_, t1, t1); } else t2.pop$1(0, savedExpenseCategory); } else A.viewEntity(false, savedExpenseCategory, null, true); }, $signature: 291 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ExpenseCategoryListItem.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, expenseCategoryUIState = uiState.expenseCategoryUIState, t1 = expenseCategoryUIState.listUIState.selectedIds, t2 = _this.filter; if (t2 != null && t2.length !== 0) _this.expenseCategory.matchesFilterValue$1(t2); t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.expenseCategory; t4 = t2.id; t5 = uiState.get$isEditing() ? expenseCategoryUIState.editing.id : expenseCategoryUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ExpenseCategoryListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.ExpenseCategoryListItem_build_closure0(_this), new A.ExpenseCategoryListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t8, new A.EntityStateLabel(t2, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t6, _null, _null), t4 === t5, true, true, _null); }, get$user(receiver) { return this.user; }, get$expenseCategory() { return this.expenseCategory; } }; A.ExpenseCategoryListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.expenseCategory, false, false); return t1; }, $signature: 0 }; A.ExpenseCategoryListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.expenseCategory, false, true); return t1; }, $signature: 0 }; A.ExpenseCategoryListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.ExpenseCategoryListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseCategoryListBuilder_build_closure(), A.expense_category_list_vm_ExpenseCategoryListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryListVM); } }; A.ExpenseCategoryListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.expenseCategoryList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_expenseCategory, new A.ExpenseCategoryListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.ExpenseCategoryPresenter(), t1, t3); }, $signature: 2391 }; A.ExpenseCategoryListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, expenseCategoryId = J.$index$asx(t1.expenseCategoryList, index), expenseCategory = t1.expenseCategoryMap._map$_map.$index(0, expenseCategoryId), t2 = state.getUIState$1(B.EntityType_expenseCategory).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = expenseCategory.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.ExpenseCategoryListItem(t4, expenseCategory, t1.filter, t2, null); }, $signature: 2392 }; A.ExpenseCategoryListVM.prototype = {}; A.ExpenseCategoryListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ExpenseCategoryListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ExpenseCategoryListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortExpenseCategories(field)); }, $signature: 5 }; A.ExpenseCategoryListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearExpenseCategoryMultiselect()); }, $signature: 9 }; A.ExpenseCategoryPresenter.prototype = { getField$2$context$field(context, field) { return this.super$EntityPresenter$getField(context, field); } }; A.ExpenseCategoryScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.expenseCategoryUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.expenseCategoryList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType([], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, A._setArrayType([], t5), B.EntityType_expenseCategory, false, B.List_empty17, new A.ExpenseCategoryScreen_build_closure(store), new A.ExpenseCategoryScreen_build_closure0(store), new A.ExpenseCategoryScreen_build_closure1(store), new A.ExpenseCategoryScreen_build_closure2(store), new A.ExpenseCategoryScreen_build_closure3(store), new A.ExpenseCategoryScreen_build_closure4(store), new A.ExpenseCategoryScreen_build_closure5(store), _null, A._setArrayType(["name", "updated_at"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_expenseCategory) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "expense_category_fab", false, new A.ExpenseCategoryScreen_build_closure6(context), t3.get$newExpenseCategory()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_expenseCategory, t2, new A.ExpenseCategoryScreen_build_closure7(store), t4, _null, _null, new A.ExpenseCategoryScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.ExpenseCategoryListBuilder(_null), t6, B.EntityType_expenseCategory, t3, 0, "expense_settings", new A.ExpenseCategoryScreen_build_closure9(store), new A.ExpenseCategoryScreen_build_closure10(store)); } }; A.ExpenseCategoryScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartExpenseCategoryMultiselect()); }, $signature: 9 }; A.ExpenseCategoryScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseCategoryUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearExpenseCategoryMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartExpenseCategoryMultiselect()); }, $signature: 1 }; A.ExpenseCategoryScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategories(value)); }, $signature: 11 }; A.ExpenseCategoryScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByState(state)); }, $signature: 27 }; A.ExpenseCategoryScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortExpenseCategories(value)); }, $signature: 11 }; A.ExpenseCategoryScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByState(state)); }, $signature: 27 }; A.ExpenseCategoryScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.expenseCategoryUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearExpenseCategoryMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartExpenseCategoryMultiselect()); }, $signature: 1 }; A.ExpenseCategoryScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByCustom1(value)); }, $signature: 5 }; A.ExpenseCategoryScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByCustom2(value)); }, $signature: 5 }; A.ExpenseCategoryScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByCustom3(value)); }, $signature: 5 }; A.ExpenseCategoryScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterExpenseCategoriesByCustom4(value)); }, $signature: 5 }; A.ExpenseCategoryScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_expenseCategory); }, $signature: 1 }; A.ExpenseCategoryScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseCategoryScreenBuilder_build_closure(), A.expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryScreenVM); } }; A.ExpenseCategoryScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ExpenseCategoryScreen(vm, null); }, $signature: 2393 }; A.ExpenseCategoryScreenVM.prototype = {}; A.ExpenseCategoryView.prototype = { createState$0() { return new A._ExpenseCategoryViewState(B._StateLifecycle_0); } }; A._ExpenseCategoryViewState.prototype = { build$1(_, context) { var t6, t7, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, expenseCategory = viewModel.expenseCategory, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = $.$get$memoizedCalculateExpenseCategoryAmount(), t3 = expenseCategory.id, t4 = state.uiState.selectedCompanyIndex, t5 = state.userCompanyStates._list, amount = t2.call$2(t3, t5[t4].expenseState.map); t2 = this._widget.isFilter; t6 = A.EntityHeader$(expenseCategory, t1.get$total(t1), _null, _null, _null, _null, A.formatNumber(amount, context, _null, _null, B.FormatNumberType_0, true, _null, false)); t7 = this._widget.isFilter; return new A.ViewScaffold(t2, expenseCategory, new A.ScrollableListView(A._setArrayType([t6, new A.ListDivider(_null), new A.EntitiesListTile(expenseCategory, B.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForExpenseCategory().call$2(t3, t5[t4].expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t7, false, _null)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._ExpenseCategoryViewState_build_closure(viewModel), _null, _null); } }; A._ExpenseCategoryViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.ExpenseCategoryViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseCategoryViewScreen_build_closure(this), new A.ExpenseCategoryViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryViewVM); } }; A.ExpenseCategoryViewScreen_build_closure0.prototype = { call$1(store) { return A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore(store); }, $signature: 2394 }; A.ExpenseCategoryViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.ExpenseCategoryView(vm, this.$this.isFilter, null); }, $signature: 2395 }; A.ExpenseCategoryViewVM.prototype = { get$expenseCategory() { return this.expenseCategory; }, get$company() { return this.company; } }; A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/expense_category")); }, $signature: 9 }; A.GroupEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._GroupEditState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A._GroupEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = _this._group_edit$_nameController, t2 = A._setArrayType([t1, _this._group_edit$_custom1Controller, _this._group_edit$_custom2Controller], type$.JSArray_legacy_TextEditingController); _this._group_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._GroupEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.group.name); B.JSArray_methods.forEach$1(_this._group_edit$_controllers, new A._GroupEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._group_edit$_controllers, new A._GroupEditState_dispose_closure(this)); this.super$State$dispose(0); }, _group_edit$_onChanged$0() { var _this = this, group = _this._widget.viewModel.group.rebuild$1(new A._GroupEditState__onChanged_closure(_this)); if (!J.$eq$(group, _this._widget.viewModel.group)) _this._group_edit$_debouncer.run$1(new A._GroupEditState__onChanged_closure0(_this, group)); }, build$1(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), group = viewModel.group; if (group.get$isNew()) t2 = t1.get$newGroup(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_group"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._GroupEditState_build_closure(this, t1, viewModel), _null), $.$get$_GroupEditState__formKey()), _null, group, _null, false, _null, new A._GroupEditState_build_closure0(viewModel), new A._GroupEditState_build_closure1(this, viewModel), _null, t2); } }; A._GroupEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_group_edit$_onChanged()); }, $signature: 33 }; A._GroupEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_group_edit$_onChanged()); }, $signature: 33 }; A._GroupEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_group_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._GroupEditState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._group_edit$_nameController._change_notifier$_value.text); b.get$_group_model$_$this()._group_model$_name = t1; return b; }, $signature: 406 }; A._GroupEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.group); }, $signature: 1 }; A._GroupEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._GroupEditState_build_closure1.prototype = { call$1(context) { var isValid = $.$get$_GroupEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._GroupEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._GroupEditState_build__closure.prototype = { call$0() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; A._GroupEditState_build_closure.prototype = { call$1(context) { var _null = null, t1 = this.localization, t2 = t1.get$name(t1), t3 = this.$this, t4 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t3.autoValidate, t3._group_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, this.viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A._GroupEditState_build__closure0(t1))], t4), _null, _null, false, _null, false, _null)], t4), _null, _null, _null); }, $signature: 167 }; A._GroupEditState_build__closure0.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A.GroupEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.GroupEditScreen_build_closure(), new A.GroupEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupEditVM); } }; A.GroupEditScreen_build_closure0.prototype = { call$1(store) { return A.GroupEditVM_GroupEditVM$fromStore(store); }, $signature: 2396 }; A.GroupEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.GroupEdit(viewModel, new A.ValueKey(viewModel.group.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2397 }; A.GroupEditVM.prototype = { get$group() { return this.group; }, get$company() { return this.company; } }; A.GroupEditVM_GroupEditVM$fromStore_closure.prototype = { call$1(group) { this.store.get$_dispatchers()[0].call$1(new A.UpdateGroup(group)); }, $signature: 241 }; A.GroupEditVM_GroupEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.GroupEntity_GroupEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.GroupEditVM_GroupEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.GroupEditVM_GroupEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.GroupEditVM_GroupEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, group = A._lateReadCheck(t1.__Store__state, "_state").uiState.groupUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_GroupEntity); t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_GroupEntity), group)); return t2.then$1$1(0, new A.GroupEditVM_GroupEditVM$fromStore___closure(group, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.GroupEditVM_GroupEditVM$fromStore___closure0()); }, $signature: 37 }; A.GroupEditVM_GroupEditVM$fromStore___closure.prototype = { call$1(savedGroup) { var _this = this, _s29_ = "/settings/group_settings/view", t1 = _this.group, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_group"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_group"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s29_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s29_, t1, t1); } else t2.pop$1(0, savedGroup); } else A.viewEntity(false, savedGroup, null, true); }, $signature: 241 }; A.GroupEditVM_GroupEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.GroupEditVM_GroupEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.GroupEditVM_GroupEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.GroupListItem.prototype = { build$1(_, context) { var filterMatch, t2, t3, t4, t5, t6, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = _this.filter; if (t1 != null && t1.length !== 0) { _this.group.toString; filterMatch = A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), t1); } else filterMatch = _null; t1 = A._lateReadCheck(store.__Store__state, "_state").uiState.groupUIState.listUIState.selectedIds; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.group; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.GroupListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.GroupListItem_build_closure0(_this), new A.GroupListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t6, new A.EntityStateLabel(t2, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t4, _null, _null), false, true, true, _null); }, get$user(receiver) { return this.user; }, get$group() { return this.group; } }; A.GroupListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.group, false, false); return t1; }, $signature: 0 }; A.GroupListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.group, false, true); return t1; }, $signature: 0 }; A.GroupListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.GroupListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.GroupListBuilder_build_closure(), A.group_list_vm_GroupListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupListVM); } }; A.GroupListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return A.EntityList$(viewModel.groupList, B.EntityType_group, new A.GroupListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2398 }; A.GroupListBuilder_build__closure.prototype = { call$2(context, index) { var t4, t1 = this.viewModel, groupId = J.$index$asx(t1.groupList, index), group = t1.groupMap._map$_map.$index(0, groupId), t2 = t1.state.getUIState$1(B.EntityType_group).get$listUIState().selectedIds, t3 = t1.userCompany.user; if (t2 != null) { t4 = group.id; t2 = B.JSArray_methods.contains$1(t2._list, t4); } else t2 = false; return new A.GroupListItem(t3, group, t1.filter, t2, null); }, $signature: 2399 }; A.GroupListVM.prototype = {}; A.GroupListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.GroupListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.GroupListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortGroups(field)); }, $signature: 5 }; A.GroupListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearGroupMultiselect()); }, $signature: 9 }; A.GroupSettingsScreen.prototype = { build$1(_, context) { var t6, t7, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, t3 = t2.groupUIState.listUIState, t4 = t3.filterClearedAt, t5 = this.viewModel.groupList; t3 = t3.filter; t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_group, false, B.List_empty17, new A.GroupSettingsScreen_build_closure(store), _null, _null, _null, _null, new A.GroupSettingsScreen_build_closure0(store), new A.GroupSettingsScreen_build_closure1(store), _null, A._setArrayType(["name"], type$.JSArray_legacy_String), B.List_empty18, _null); if (state.prefState.appLayout === B.AppLayout_mobile) { t7 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = t7._list[t2].userCompany.can$2(B.UserPermission_create, B.EntityType_group); } else t2 = false; t1 = t2 ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "group_fab", false, new A.GroupSettingsScreen_build_closure2(context), t1.get$newGroup()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_group, t3, new A.GroupSettingsScreen_build_closure3(store), t5, _null, _null, new A.GroupSettingsScreen_build_closure4(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.GroupListBuilder(_null), t6, B.EntityType_group, t1, 0, _null, new A.GroupSettingsScreen_build_closure5(store), new A.GroupSettingsScreen_build_closure6(store)); } }; A.GroupSettingsScreen_build_closure6.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartGroupMultiselect()); }, $signature: 9 }; A.GroupSettingsScreen_build_closure3.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterGroups(value)); }, $signature: 11 }; A.GroupSettingsScreen_build_closure4.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterGroupsByState(state)); }, $signature: 27 }; A.GroupSettingsScreen_build_closure5.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.groupUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearGroupMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartGroupMultiselect()); }, $signature: 1 }; A.GroupSettingsScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortGroups(value)); }, $signature: 5 }; A.GroupSettingsScreen_build_closure1.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterGroupsByState(state)); }, $signature: 27 }; A.GroupSettingsScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.groupUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearGroupMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartGroupMultiselect()); }, $signature: 1 }; A.GroupSettingsScreen_build_closure2.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_group); }, $signature: 1 }; A.GroupScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.GroupScreenBuilder_build_closure(), A.group_screen_vm_GroupScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupScreenVM); } }; A.GroupScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.GroupSettingsScreen(vm, null); }, $signature: 2400 }; A.GroupScreenVM.prototype = {}; A.GroupView.prototype = { createState$0() { return new A._GroupViewState(null, null, B._StateLifecycle_0); } }; A._GroupViewState.prototype = { initState$0() { this.super$State$initState(); this._group_view$_controller = A.TabController$(null, 0, 2, this); }, dispose$0(_) { this._group_view$_controller.dispose$0(0); this.super$__GroupViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, state = viewModel.state, group = viewModel.group, documents = group.documents; t2 = t2.isFilter; t3 = _this._group_view$_controller; t4 = A.Tab$(_null, t1.get$overview()); t5 = documents._list; t6 = type$.JSArray_legacy_Widget; t4 = A.TabBar$(t3, _null, false, _null, _null, A._setArrayType([t4, A.Tab$(_null, t5.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t5.length + ")")], t6)); t3 = _this._group_view$_controller; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "configure_settings"); if (t7 == null) t7 = ""; t8 = _this._widget.isFilter; t9 = t1.get$clients(t1); t10 = $.$get$memoizedClientStatsForGroup(); t11 = state.uiState.selectedCompanyIndex; return new A.ViewScaffold(t2, group, A.TabBarView$(A._setArrayType([new A.ScrollableListView(A._setArrayType([new A.Padding(B.EdgeInsets_16_0_16_16, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t7.toUpperCase(), new A._GroupViewState_build_closure(context, group), _null, _null), _null), new A.ListDivider(_null), new A.EntitiesListTile(group, B.EntityType_client, t9, t10.call$2(state.userCompanyStates._list[t11].clientState.map, group.id).present$2(t1.get$active(t1), t1.get$archived()), t8, false, _null), new A.ListDivider(_null), new A.SettingsViewer(group.settings, state, _null)], t6), _null, _null, _null), new A.DocumentGrid(new A.CopyOnWriteList(true, t5, A._instanceType(documents)._eval$1("CopyOnWriteList<1>")), new A._GroupViewState_build_closure0(viewModel, context), new A._GroupViewState_build_closure1(viewModel, context), _null, _null)], t6), t3, _null), new A._GroupViewState_build_closure2(viewModel), t4, _null); } }; A._GroupViewState_build_closure2.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A._GroupViewState_build_closure.prototype = { call$0() { return A.handleGroupAction(this.context, A._setArrayType([this.group], type$.JSArray_legacy_BaseEntity), B.EntityAction_settings); }, $signature: 0 }; A._GroupViewState_build_closure0.prototype = { call$1(path) { return this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A._GroupViewState_build_closure1.prototype = { call$3($document, password, idToken) { return this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.SettingsViewer.prototype = { build$1(_, context) { var t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t213, t214, t215, t216, t217, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, staticState = t2.staticState, t3 = t1.get$name(t1), t4 = this.settings, t5 = t4.name, t6 = t1.get$address(), t7 = t4.address1, t8 = t7 != null && t7.length !== 0 ? A.formatAddress(t2, "\n", false, t4) : _null, t9 = t1.get$phone(t1), t10 = t4.phone, t11 = t1.get$email(t1), t12 = t4.email, t13 = t1.get$logo(), t14 = t4.companyLogo; t14 = t14 != null && t14.length !== 0 ? t1.get$enabled(t1) : _null; t15 = t1.get$idNumber(); t16 = t4.idNumber; t17 = t1.get$vatNumber(); t18 = t4.vatNumber; t19 = t1.get$website(); t20 = t4.website; t21 = t1.get$address1(); t22 = t1.get$address2(); t23 = t4.address2; t24 = t1.get$city(t1); t25 = t4.city; t26 = t1.get$state(t1); t27 = t4.state; t28 = t1.get$country(t1); t29 = t4.countryId; if (t29 != null) { t29 = staticState.countryMap._map$_map.$index(0, t29); t29 = t29 == null ? _null : t29.name; } else t29 = _null; t30 = t1.get$postalCode(t1); t31 = t4.postalCode; t32 = t1.get$pageSize(); t33 = t4.pageSize; t34 = t1.get$fontSize(t1); t35 = t4.fontSize; t35 = t35 == null ? _null : B.JSInt_methods.toString$0(t35); t36 = t1.get$primaryColor(); t37 = t4.primaryColor; t38 = t1.get$secondaryColor(); t39 = t4.secondaryColor; t40 = t1.get$primaryFont(); t41 = t4.primaryFont; t42 = t1.get$secondaryFont(); t43 = t4.secondaryFont; t44 = $.$get$LocalizationsProvider__localizedValues(); t45 = t1.localeCode; t46 = J.$index$asx(t44.$index(0, t45), "hide_paid_to_date"); if (t46 == null) t46 = ""; t47 = t4.hidePaidToDate; t47 = t47 == null ? _null : B.JSBool_methods.toString$0(t47); t48 = J.$index$asx(t44.$index(0, t45), "invoice_embed_documents"); if (t48 == null) t48 = ""; t49 = t4.embedDocuments; t49 = t49 == null ? _null : B.JSBool_methods.toString$0(t49); t50 = t1.get$timezone(); t51 = t4.timezoneId; if (t51 != null && t51.length !== 0) { t51 = staticState.timezoneMap._map$_map.$index(0, t51); t51 = t51 == null ? _null : t51.name; } else t51 = _null; t52 = t1.get$dateFormat(); t53 = t4.dateFormatId; if (t53 != null && t53.length !== 0) { t53 = staticState.dateFormatMap._map$_map.$index(0, t53); t53 = t53 == null ? _null : t53.format; } else t53 = _null; t54 = t1.get$militaryTime(); t55 = t4.enableMilitaryTime; if (t55 === true) t55 = t1.get$enabled(t1); else t55 = t55 === false ? t1.get$disabled(t1) : _null; t56 = t1.get$language(t1); t57 = t4.languageId; if (t57 != null && t57.length !== 0) { t57 = staticState.languageMap._map$_map.$index(0, t57); t57 = t57 == null ? _null : t57.name; } else t57 = _null; t58 = t1.get$currency(); t59 = t4.currencyId; if (t59 != null && t59.length !== 0) { t59 = staticState.currencyMap._map$_map.$index(0, t59); t59 = t59 == null ? _null : t59.name; } else t59 = _null; t60 = t1.get$sendReminders(); t61 = t4.sendReminders; if (t61 === true) t61 = t1.get$enabled(t1); else t61 = t61 === false ? t1.get$disabled(t1) : _null; t62 = t1.get$clientPortal(); t63 = t4.enablePortal; t64 = t63 === true; if (t64) t65 = t1.get$enabled(t1); else t65 = t63 === false ? t1.get$disabled(t1) : _null; t66 = J.$index$asx(t44.$index(0, t45), "client_portal_tasks"); if (t66 == null) t66 = ""; if (t64) t67 = t1.get$enabled(t1); else t67 = t63 === false ? t1.get$disabled(t1) : _null; t68 = J.$index$asx(t44.$index(0, t45), "client_portal_dashboard"); if (t68 == null) t68 = ""; if (t64) t63 = t1.get$enabled(t1); else t63 = t63 === false ? t1.get$disabled(t1) : _null; t64 = t1.get$paymentType(); t69 = t4.defaultPaymentTypeId; if (t69 != null && t69.length !== 0) { t69 = staticState.paymentTypeMap._map$_map.$index(0, t69); t69 = t69 == null ? _null : t69.name; } else t69 = _null; t70 = t1.get$emailSignature(); t71 = t4.emailSignature; t72 = J.$index$asx(t44.$index(0, t45), "email_style"); if (t72 == null) t72 = ""; t73 = t4.emailStyle; t74 = t1.get$replyToEmail(); t75 = t4.replyToEmail; t76 = t1.get$bccEmail(); t77 = t4.bccEmail; t78 = J.$index$asx(t44.$index(0, t45), "custom_value1"); if (t78 == null) t78 = ""; t79 = t4.customValue1; t80 = J.$index$asx(t44.$index(0, t45), "custom_value2"); if (t80 == null) t80 = ""; t81 = t4.customValue2; t82 = J.$index$asx(t44.$index(0, t45), "custom_value3"); if (t82 == null) t82 = ""; t83 = t4.customValue3; t84 = J.$index$asx(t44.$index(0, t45), "custom_value4"); if (t84 == null) t84 = ""; t85 = t4.customValue4; t86 = J.$index$asx(t44.$index(0, t45), "payment_terms"); if (t86 == null) t86 = ""; t87 = t4.companyGatewayIds; if (t87 != null) { t88 = t2.uiState.selectedCompanyIndex; t87 = t2.userCompanyStates._list[t88].companyGatewayState.map._map$_map.$index(0, t87); t2 = t87 == null ? _null : t87.get$listDisplayName(); } else t2 = _null; t87 = t1.get$taskRate(); t88 = t4.defaultTaskRate; t88 = t88 == null ? _null : B.JSNumber_methods.toString$0(t88); t89 = t1.get$attachPdf(); t90 = t4.pdfEmailAttachment; t90 = t90 == null ? _null : B.JSBool_methods.toString$0(t90); t91 = t1.get$attachUbl(); t92 = t4.ublEmailAttachment; t92 = t92 == null ? _null : B.JSBool_methods.toString$0(t92); t93 = t1.get$attachDocuments(); t94 = t4.documentEmailAttachment; t95 = t94 == null; t96 = t95 ? _null : B.JSBool_methods.toString$0(t94); t97 = t1.get$attachDocuments(); t94 = t95 ? _null : B.JSBool_methods.toString$0(t94); t95 = J.$index$asx(t44.$index(0, t45), "email_style_custom"); if (t95 == null) t95 = ""; t98 = t4.emailStyleCustom; if (t98 == null) t98 = _null; t99 = J.$index$asx(t44.$index(0, t45), "email_subject_invoice"); if (t99 == null) t99 = ""; t100 = t4.emailSubjectInvoice; if (t100 == null) t100 = _null; t101 = J.$index$asx(t44.$index(0, t45), "email_subject_quote"); if (t101 == null) t101 = ""; t102 = t4.emailSubjectQuote; if (t102 == null) t102 = _null; t103 = J.$index$asx(t44.$index(0, t45), "email_subject_payment"); if (t103 == null) t103 = ""; t104 = t4.emailSubjectPayment; t105 = J.$index$asx(t44.$index(0, t45), "email_subject_payment_partial"); if (t105 == null) t105 = ""; t106 = t4.emailSubjectPaymentPartial; t107 = J.$index$asx(t44.$index(0, t45), "custom_message_dashboard"); if (t107 == null) t107 = ""; t108 = t4.customMessageDashboard; if (t108 == null) t108 = _null; t109 = J.$index$asx(t44.$index(0, t45), "custom_message_unpaid_invoice"); if (t109 == null) t109 = ""; t110 = t4.customMessageUnpaidInvoice; if (t110 == null) t110 = _null; t111 = J.$index$asx(t44.$index(0, t45), "custom_message_paid_invoice"); if (t111 == null) t111 = ""; t112 = t4.customMessagePaidInvoice; if (t112 == null) t112 = _null; t113 = J.$index$asx(t44.$index(0, t45), "custom_message_unapproved_quote"); if (t113 == null) t113 = ""; t114 = t4.customMessageUnapprovedQuote; if (t114 == null) t114 = _null; t115 = t1.get$autoArchivePaidInvoices(); t116 = t4.autoArchiveInvoice; t116 = t116 == null ? _null : B.JSBool_methods.toString$0(t116); t117 = t1.get$autoArchiveCancelledInvoices(); t118 = t4.autoArchiveInvoiceCancelled; t118 = t118 == null ? _null : B.JSBool_methods.toString$0(t118); t119 = t1.get$autoArchiveQuote(); t120 = t4.autoArchiveQuote; t120 = t120 == null ? _null : B.JSBool_methods.toString$0(t120); t121 = t1.get$autoEmailInvoice(); t122 = t4.autoEmailInvoice; t122 = t122 == null ? _null : B.JSBool_methods.toString$0(t122); t123 = t1.get$autoConvertQuote(); t124 = t4.autoConvertQuote; t124 = t124 == null ? _null : B.JSBool_methods.toString$0(t124); t125 = t1.get$inclusiveTaxes(); t126 = t4.enableInclusiveTaxes; t126 = t126 == null ? _null : B.JSBool_methods.toString$0(t126); t127 = J.$index$asx(t44.$index(0, t45), "translations"); if (t127 == null) t127 = ""; t128 = t4.translations; t128 = t128 == null ? _null : t128.get$keys(t128); t128 = t128 == null ? _null : t128.join$1(0, ", "); t129 = J.$index$asx(t44.$index(0, t45), "task_number_pattern"); if (t129 == null) t129 = ""; t130 = t4.taskNumberPattern; t131 = J.$index$asx(t44.$index(0, t45), "task_number_counter"); if (t131 == null) t131 = ""; t132 = t4.taskNumberCounter; t132 = t132 == null ? _null : B.JSInt_methods.toString$0(t132); t133 = J.$index$asx(t44.$index(0, t45), "expense_number_pattern"); if (t133 == null) t133 = ""; t134 = t4.expenseNumberPattern; t135 = J.$index$asx(t44.$index(0, t45), "expense_number_counter"); if (t135 == null) t135 = ""; t136 = t4.expenseNumberCounter; t136 = t136 == null ? _null : B.JSInt_methods.toString$0(t136); t137 = J.$index$asx(t44.$index(0, t45), "vendor_number_pattern"); if (t137 == null) t137 = ""; t138 = t4.vendorNumberPattern; t139 = J.$index$asx(t44.$index(0, t45), "vendor_number_counter"); if (t139 == null) t139 = ""; t140 = t4.vendorNumberCounter; t140 = t140 == null ? _null : B.JSInt_methods.toString$0(t140); t141 = J.$index$asx(t44.$index(0, t45), "ticket_number_pattern"); if (t141 == null) t141 = ""; t142 = t4.ticketNumberPattern; t143 = J.$index$asx(t44.$index(0, t45), "ticket_number_counter"); if (t143 == null) t143 = ""; t144 = t4.ticketNumberCounter; t144 = t144 == null ? _null : B.JSInt_methods.toString$0(t144); t145 = J.$index$asx(t44.$index(0, t45), "payment_number_pattern"); if (t145 == null) t145 = ""; t146 = t4.paymentNumberPattern; t147 = J.$index$asx(t44.$index(0, t45), "payment_number_counter"); if (t147 == null) t147 = ""; t148 = t4.paymentNumberCounter; t148 = t148 == null ? _null : B.JSInt_methods.toString$0(t148); t149 = J.$index$asx(t44.$index(0, t45), "invoice_number_pattern"); if (t149 == null) t149 = ""; t150 = t4.invoiceNumberPattern; t151 = J.$index$asx(t44.$index(0, t45), "invoice_number_counter"); if (t151 == null) t151 = ""; t152 = t4.invoiceNumberCounter; t152 = t152 == null ? _null : B.JSInt_methods.toString$0(t152); t153 = J.$index$asx(t44.$index(0, t45), "quote_number_pattern"); if (t153 == null) t153 = ""; t154 = t4.quoteNumberPattern; t155 = J.$index$asx(t44.$index(0, t45), "quote_number_counter"); if (t155 == null) t155 = ""; t156 = t4.quoteNumberCounter; t156 = t156 == null ? _null : B.JSInt_methods.toString$0(t156); t157 = J.$index$asx(t44.$index(0, t45), "client_number_pattern"); if (t157 == null) t157 = ""; t158 = t4.clientNumberPattern; t159 = J.$index$asx(t44.$index(0, t45), "client_number_counter"); if (t159 == null) t159 = ""; t160 = t4.clientNumberCounter; t160 = t160 == null ? _null : B.JSInt_methods.toString$0(t160); t161 = J.$index$asx(t44.$index(0, t45), "credit_number_pattern"); if (t161 == null) t161 = ""; t162 = t4.creditNumberPattern; t163 = J.$index$asx(t44.$index(0, t45), "credit_number_counter"); if (t163 == null) t163 = ""; t164 = t4.creditNumberCounter; t164 = t164 == null ? _null : B.JSInt_methods.toString$0(t164); t165 = t1.get$recurringPrefix(); t166 = t4.recurringNumberPrefix; if (t166 == null) t166 = _null; t167 = t1.get$resetCounter(); t168 = t4.resetCounterFrequencyId; if (t168 == null) t168 = _null; t169 = J.$index$asx(t44.$index(0, t45), "reset_counter_date"); if (t169 == null) t169 = ""; t170 = t4.resetCounterDate; if (t170 == null) t170 = _null; t171 = J.$index$asx(t44.$index(0, t45), "counter_padding"); if (t171 == null) t171 = ""; t172 = t4.counterPadding; t172 = t172 == null ? _null : B.JSInt_methods.toString$0(t172); t173 = t1.get$sharedInvoiceQuoteCounter(); t174 = t4.sharedInvoiceQuoteCounter; t174 = t174 == null ? _null : B.JSBool_methods.toString$0(t174); t175 = t1.get$sharedInvoiceCreditCounter(); t176 = t4.sharedInvoiceCreditCounter; t176 = t176 == null ? _null : B.JSBool_methods.toString$0(t176); t177 = t1.get$invoiceTerms(); t178 = t4.defaultInvoiceTerms; t179 = t1.get$quoteTerms(); t180 = t4.defaultQuoteTerms; t181 = t1.get$quoteFooter(); t182 = t4.defaultQuoteFooter; t183 = t1.get$creditTerms(); t184 = t4.defaultCreditTerms; t185 = t1.get$creditFooter(); t186 = t4.defaultCreditFooter; t187 = t1.get$invoiceFooter(); t188 = t4.defaultInvoiceFooter; if (t188 == null) t188 = _null; t189 = J.$index$asx(t44.$index(0, t45), "default_tax_name_1"); if (t189 == null) t189 = ""; t190 = t4.defaultTaxName1; if (t190 == null) t190 = _null; t191 = J.$index$asx(t44.$index(0, t45), "default_tax_rate_1"); if (t191 == null) t191 = ""; t192 = t4.defaultTaxRate1; t192 = t192 == null ? _null : B.JSNumber_methods.toString$0(t192); t193 = J.$index$asx(t44.$index(0, t45), "default_tax_name_2"); if (t193 == null) t193 = ""; t194 = t4.defaultTaxName2; if (t194 == null) t194 = _null; t195 = J.$index$asx(t44.$index(0, t45), "default_tax_rate_2"); if (t195 == null) t195 = ""; t196 = t4.defaultTaxRate2; t196 = t196 == null ? _null : B.JSNumber_methods.toString$0(t196); t197 = J.$index$asx(t44.$index(0, t45), "default_tax_name_3"); if (t197 == null) t197 = ""; t198 = t4.defaultTaxName3; if (t198 == null) t198 = _null; t199 = J.$index$asx(t44.$index(0, t45), "default_tax_rate_3"); if (t199 == null) t199 = ""; t200 = t4.defaultTaxRate3; t200 = t200 == null ? _null : B.JSNumber_methods.toString$0(t200); t201 = t1.get$enablePortalPassword(); t202 = t4.enablePortalPassword; t202 = t202 == null ? _null : B.JSBool_methods.toString$0(t202); t203 = t1.get$signatureOnPdf(); t204 = t4.signatureOnPdf; t204 = t204 == null ? _null : B.JSBool_methods.toString$0(t204); t205 = J.$index$asx(t44.$index(0, t45), "enable_email_markup"); if (t205 == null) t205 = ""; t206 = t4.enableEmailMarkup; t206 = t206 == null ? _null : B.JSBool_methods.toString$0(t206); t207 = t1.get$showAcceptInvoiceTerms(); t208 = t4.showAcceptInvoiceTerms; t208 = t208 == null ? _null : B.JSBool_methods.toString$0(t208); t209 = t1.get$showAcceptQuoteTerms(); t210 = t4.showAcceptQuoteTerms; t210 = t210 == null ? _null : B.JSBool_methods.toString$0(t210); t211 = t1.get$requireInvoiceSignature(); t212 = t4.requireInvoiceSignature; t212 = t212 == null ? _null : B.JSBool_methods.toString$0(t212); t213 = t1.get$requireQuoteSignature(); t214 = t4.requireQuoteSignature; t214 = t214 == null ? _null : B.JSBool_methods.toString$0(t214); t215 = J.$index$asx(t44.$index(0, t45), "all_pages_header"); if (t215 == null) t215 = ""; t216 = t4.allPagesHeader; t216 = t216 == null ? _null : B.JSBool_methods.toString$0(t216); t45 = J.$index$asx(t44.$index(0, t45), "all_pages_footer"); t44 = t45 == null ? "" : t45; t45 = t4.allPagesFooter; t45 = t45 == null ? _null : B.JSBool_methods.toString$0(t45); t217 = type$.legacy_String; return new A.FieldGrid(A.LinkedHashMap_LinkedHashMap$_literal([t3, t5, t6, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t7, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t65, t66, t67, t68, t63, t64, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t2, t87, t88, t89, t90, t91, t92, t93, t96, t97, t94, t95, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t213, t214, t215, t216, t44, t45, t1.get$lockInvoices(), t1.lookup$1(t4.lockInvoices)], t217, t217), _null); } }; A.__GroupViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.GroupViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.GroupViewScreen_build_closure(this), new A.GroupViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupViewVM); } }; A.GroupViewScreen_build_closure0.prototype = { call$1(store) { return A.GroupViewVM_GroupViewVM$fromStore(store); }, $signature: 2401 }; A.GroupViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.GroupView(vm, this.$this.isFilter, null); }, $signature: 2402 }; A.GroupViewVM.prototype = { get$group() { return this.group; }, get$company() { return this.company; } }; A.GroupViewVM_GroupViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/group_settings")); }, $signature: 1 }; A.GroupViewVM_GroupViewVM$fromStore_closure0.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveGroupDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.group)); t1.then$1$1(0, new A.GroupViewVM_GroupViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.GroupViewVM_GroupViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.GroupViewVM_GroupViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.GroupViewVM_GroupViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.GroupViewVM_GroupViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.GroupViewVM_GroupViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.GroupViewVM_GroupViewVM$fromStore_closure1.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.GroupViewVM_GroupViewVM$fromStore__closure(t2, this.group), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.GroupViewVM_GroupViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadGroup(null, this.group.id)); }, $signature: 103 }; A.InvoiceEdit.prototype = { createState$0() { return new A._InvoiceEditState(null, null, B._StateLifecycle_0); } }; A._InvoiceEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._invoice_edit$_controller = A.TabController$(null, _this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._invoice_edit$_controller.animateTo$1(2); }, dispose$0(_) { this._invoice_edit$_controller.dispose$0(0); this.super$__InvoiceEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _invoice_edit$_onSavePressed$2(context, action) { if (!$.$get$_InvoiceEditState__formKey().get$currentState().validate$0()) return; if (action === B.EntityAction_cancelInvoice) A.confirmCallback(false, new A._InvoiceEditState__onSavePressed_closure(this, context, action), context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$cancelInvoice(), false, null); else this._widget.viewModel.onSavePressed.call$2(context, action); }, _invoice_edit$_onSavePressed$1(context) { return this._invoice_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, invoice.clientId), isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_invoice); if (invoice.get$isNew()) t4 = t1.get$newInvoice(); else { t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_invoice"); if (t4 == null) t4 = ""; } t2 = invoice.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._invoice_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$items(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$pdf())], t3)); t6 = $.$get$_InvoiceEditState__formKey(); t7 = _this._widget; if (isFullscreen) t3 = new A.InvoiceEditDetailsScreen(t7.viewModel, _null); else { t8 = invoice.id; t9 = invoice.updatedAt; t10 = _this._invoice_edit$_controller; t7 = t7.viewModel; t9 = A.TabBarView$(A._setArrayType([new A.InvoiceEditDetailsScreen(t7, _null), new A.InvoiceEditContactsScreen(invoice.entityType, _null), new A.InvoiceEditItemsScreen(t7, false, _null), new A.InvoiceEditNotesScreen(_null), new A.InvoiceEditPDFScreen(_null)], t3), t10, new A.ValueKey("__invoice_" + t8 + "_" + t9 + "__", type$.ValueKey_legacy_String)); t3 = t9; } return A.EditScaffold$(t2, t5, A.Form$(_null, t3, t6), new A.InvoiceEditFooter(invoice, _null), invoice, A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, B.Icon_yXb, "invoice_edit_fab", false, new A._InvoiceEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new A._InvoiceEditState_build_closure0(_this), new A._InvoiceEditState_build_closure1(viewModel), new A._InvoiceEditState_build_closure2(_this), _null, t4); } }; A._InvoiceEditState__onSavePressed_closure.prototype = { call$1(_) { this.$this._widget.viewModel.onSavePressed.call$2(this.context, this.action); }, $signature: 11 }; A._InvoiceEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._InvoiceEditState_build_closure2.prototype = { call$1(context) { return this.$this._invoice_edit$_onSavePressed$1(context); }, $signature: 30 }; A._InvoiceEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._invoice_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._InvoiceEditState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._InvoiceEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, $signature: 1 }; A._InvoiceEditState_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = t1.lineItems._list, t3 = A._arrayInstanceType(t2), t4 = _this.viewModel, t5 = t3._eval$1("MappedIterable<1,BaseEntity*>"); return new A.InvoiceItemSelector(new A._InvoiceEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._InvoiceEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._InvoiceEditState_build___closure1(t4), t5), true, t5._eval$1("Iterable.E")), true, null); }, $signature: 257 }; A._InvoiceEditState_build___closure0.prototype = { call$1(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 57 }; A._InvoiceEditState_build___closure1.prototype = { call$1(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = item.taskId; t1 = t2._map$_map.$index(0, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = item.expenseId; t1 = t2._map$_map.$index(0, t1); } return t1; }, $signature: 265 }; A._InvoiceEditState_build___closure.prototype = { call$3(items, clientId, projectId) { this.viewModel.onItemsAdded.call$3(items, clientId, projectId); if (!this.isFullscreen) this.$this._invoice_edit$_controller.animateTo$1(2); }, call$1(items) { return this.call$3(items, null, null); }, call$2(items, clientId) { return this.call$3(items, clientId, null); }, $signature: 268 }; A.__InvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InvoiceEditContacts.prototype = { build$1(_, context) { var vendorContacts, clientContacts, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, invoice = t2.invoice, client = t2.client, vendor = t2.vendor; if (invoice.entityType === B.EntityType_purchaseOrder) { if (vendor == null) if (t2.state.prefState.appLayout === B.AppLayout_desktop) vendorContacts = A._setArrayType([], type$.JSArray_legacy_VendorContactEntity); else return new A.HelpText(t1.get$noClientSelected(), _null); else { t1 = vendor.contacts; vendorContacts = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); vendorContacts.sort$1(0, new A.InvoiceEditContacts_build_closure()); } t1 = J.map$1$1$ax(vendorContacts, new A.InvoiceEditContacts_build_closure0(this, invoice), type$.legacy__VendorContactListTile); return new A.ScrollableListView(A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")), _null, _null, _null); } else { if (client == null) if (t2.state.prefState.appLayout === B.AppLayout_desktop) clientContacts = A._setArrayType([], type$.JSArray_legacy_ClientContactEntity); else return new A.HelpText(t1.get$noClientSelected(), _null); else { t1 = client.contacts; clientContacts = new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")); clientContacts.sort$1(0, new A.InvoiceEditContacts_build_closure1()); } t1 = J.map$1$1$ax(clientContacts, new A.InvoiceEditContacts_build_closure2(this, invoice), type$.legacy__ClientContactListTile); return new A.ScrollableListView(A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")), _null, _null, _null); } } }; A.InvoiceEditContacts_build_closure.prototype = { call$2(contactA, contactB) { return B.JSString_methods.compareTo$1(contactA.get$fullName().toLowerCase(), contactB.get$fullName().toLowerCase()); }, $signature: 2403 }; A.InvoiceEditContacts_build_closure0.prototype = { call$1(contact) { var t1 = this.invoice, invitation = t1.getInvitationForVendorContact$1(contact); return new A._VendorContactListTile(t1, contact, invitation, new A.InvoiceEditContacts_build__closure0(this.$this, invitation, contact), null); }, $signature: 2404 }; A.InvoiceEditContacts_build__closure0.prototype = { call$0() { var t1 = this.invitation, t2 = this.$this.viewModel; return t1 == null ? t2.onAddVendorContact.call$1(this.contact) : t2.onRemoveContact.call$1(t1); }, $signature: 9 }; A.InvoiceEditContacts_build_closure1.prototype = { call$2(contactA, contactB) { var t1 = contactA.sendEmail; if (t1 !== contactB.sendEmail) return t1 ? 1 : -1; else return B.JSString_methods.compareTo$1(contactA.get$fullName().toLowerCase(), contactB.get$fullName().toLowerCase()); }, $signature: 2405 }; A.InvoiceEditContacts_build_closure2.prototype = { call$1(contact) { var t1 = this.invoice, invitation = t1.getInvitationForClientContact$1(contact); return new A._ClientContactListTile(t1, contact, invitation, new A.InvoiceEditContacts_build__closure(this.$this, invitation, contact), null); }, $signature: 2406 }; A.InvoiceEditContacts_build__closure.prototype = { call$0() { var t1 = this.invitation, t2 = this.$this.viewModel; return t1 == null ? t2.onAddClientContact.call$1(this.contact) : t2.onRemoveContact.call$1(t1); }, $signature: 9 }; A._ClientContactListTile.prototype = { build$1(_, context) { var t4, t5, t6, _this = this, _null = null, t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), t3 = _this.clientContact; t1 = A.Text$(t3.get$fullName().length !== 0 ? t3.get$fullName() : A.Localizations_of(context, B.Type_AppLocalization_KyD, t1).get$blankContact(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.Text$(t3.email, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _this.invitation; t5 = t4 == null; t6 = A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, _null, new A._ClientContactListTile_build_closure(), _null, _null, false, !t5); t4 = t5 ? _null : t4.link; if ((t4 == null ? "" : t4).length === 0) t2 = _null; else { t4 = t2.get$copyLink(); t4 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null, new A._ClientContactListTile_build_closure0(_this, t2), B.EdgeInsets_8_8_8_8, _null, t4, _null); t2 = t4; } return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.IgnorePointer(true, _null, t6, _null), _null, _this.onTap, false, _null, _null, t3, _null, t1, t2, _null); }, get$invoice() { return this.invoice; } }; A._ClientContactListTile_build_closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A._ClientContactListTile_build_closure0.prototype = { call$0() { var t1 = this.$this.invitation.link; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", B.JSString_methods.substring$2(t1, 0, 40) + "...")); }, $signature: 1 }; A._VendorContactListTile.prototype = { build$1(_, context) { var t4, t5, t6, _this = this, _null = null, t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), t3 = _this.vendorContact; t1 = A.Text$(t3.get$fullName().length !== 0 ? t3.get$fullName() : A.Localizations_of(context, B.Type_AppLocalization_KyD, t1).get$blankContact(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.Text$(t3.email, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _this.invitation; t5 = t4 == null; t6 = A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, _null, new A._VendorContactListTile_build_closure(), _null, _null, false, !t5); t4 = t5 ? _null : t4.link; if ((t4 == null ? "" : t4).length === 0) t2 = _null; else { t4 = t2.get$copyLink(); t4 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null, new A._VendorContactListTile_build_closure0(_this, t2), B.EdgeInsets_8_8_8_8, _null, t4, _null); t2 = t4; } return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.IgnorePointer(true, _null, t6, _null), _null, _this.onTap, false, _null, _null, t3, _null, t1, t2, _null); }, get$invoice() { return this.invoice; } }; A._VendorContactListTile_build_closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A._VendorContactListTile_build_closure0.prototype = { call$0() { var t1 = this.$this.invitation.link; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", B.JSString_methods.substring$2(t1, 0, 40) + "...")); }, $signature: 1 }; A.InvoiceEditContactsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditContactsScreen_build_closure(), new A.InvoiceEditContactsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditContactsVM); } }; A.InvoiceEditContactsScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore(store, this.$this.entityType); }, $signature: 2407 }; A.InvoiceEditContactsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditContacts(viewModel, null); }, $signature: 2408 }; A.EntityEditContactsVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; }, get$vendor(receiver) { return this.vendor; } }; A.InvoiceEditContactsVM.prototype = {}; A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure.prototype = { call$1(contact) { var t2, t3, invitation, _this = this, t1 = _this._box_0; if (!t1.entity.get$isNew()) { t2 = _this.state.getEntityMap$1(_this.entityType); t3 = t1.entity.id; invitation = type$.legacy_InvoiceEntity._as(t2._map$_map.$index(0, t3)).getInvitationForClientContact$1(contact); } else invitation = null; t1 = t1.entity.entityType; if (t1 === B.EntityType_quote) _this.store.get$_dispatchers()[0].call$1(new A.AddQuoteContact(contact, invitation)); else if (t1 === B.EntityType_credit) _this.store.get$_dispatchers()[0].call$1(new A.AddCreditContact(contact, invitation)); else if (t1 === B.EntityType_recurringInvoice) _this.store.get$_dispatchers()[0].call$1(new A.AddRecurringInvoiceContact(contact, invitation)); else if (t1 === B.EntityType_invoice) _this.store.get$_dispatchers()[0].call$1(new A.AddInvoiceContact(contact, invitation)); else A.print("ERROR: entityType " + A.S(_this.entityType) + " not handled in invoice_edit_contacts_vm"); }, $signature: 580 }; A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0.prototype = { call$1(contact) { var t2, t3, invitation, _this = this, t1 = _this._box_0; if (!t1.entity.get$isNew()) { t2 = _this.state.getEntityMap$1(_this.entityType); t3 = t1.entity.id; invitation = type$.legacy_InvoiceEntity._as(t2._map$_map.$index(0, t3)).getInvitationForVendorContact$1(contact); } else invitation = null; if (t1.entity.entityType === B.EntityType_purchaseOrder) _this.store.get$_dispatchers()[0].call$1(new A.AddPurchaseOrderContact(contact, invitation)); else A.print("ERROR: entityType " + A.S(_this.entityType) + " not handled in invoice_edit_contacts_vm"); }, $signature: 764 }; A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1.prototype = { call$1(invitation) { var _this = this, t1 = _this._box_0.entity.entityType; if (t1 === B.EntityType_quote) _this.store.get$_dispatchers()[0].call$1(new A.RemoveQuoteContact(invitation)); else if (t1 === B.EntityType_credit) _this.store.get$_dispatchers()[0].call$1(new A.RemoveCreditContact(invitation)); else if (t1 === B.EntityType_recurringInvoice) _this.store.get$_dispatchers()[0].call$1(new A.RemoveRecurringInvoiceContact(invitation)); else if (t1 === B.EntityType_invoice) _this.store.get$_dispatchers()[0].call$1(new A.RemoveInvoiceContact(invitation)); else if (t1 === B.EntityType_purchaseOrder) _this.store.get$_dispatchers()[0].call$1(new A.RemovePurchaseOrderContact(invitation)); else A.print("ERROR: entityType " + A.S(_this.entityType) + " not handled in invoice_edit_contacts_vm"); }, $signature: 2410 }; A.InvoiceEditDesktop.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.InvoiceEditDesktopState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), null, null, B._StateLifecycle_0); } }; A.InvoiceEditDesktopState.prototype = { initState$0() { var invoice, _this = this, _null = null; _this.super$State$initState(); invoice = _this._widget.viewModel.invoice; _this._invoice_edit_desktop$_showTasksTable = invoice.get$hasTasks() && !invoice.get$hasProducts(); _this._invoice_edit_desktop$_focusNode = A.FocusScopeNode$(true, _null, false); _this._optionTabController = A.TabController$(_null, 0, 5, _this); _this._tableTabController = A.TabController$(_null, _this._invoice_edit_desktop$_showTasksTable ? 1 : 0, 2, _this); _this._invoice_edit_desktop$_scrollController = new A.ScrollController(0, true, _null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, didChangeDependencies$0() { var invoice, _this = this, _null = null, t1 = _this._invoice_edit_desktop$_invoiceNumberController, t2 = _this._invoice_edit_desktop$_poNumberController, t3 = _this._invoice_edit_desktop$_discountController, t4 = _this._invoice_edit_desktop$_partialController, t5 = _this._invoice_edit_desktop$_custom1Controller, t6 = _this._invoice_edit_desktop$_custom2Controller, t7 = _this._invoice_edit_desktop$_custom3Controller, t8 = _this._invoice_edit_desktop$_custom4Controller, t9 = _this._invoice_edit_desktop$_surcharge1Controller, t10 = _this._invoice_edit_desktop$_surcharge2Controller, t11 = _this._invoice_edit_desktop$_surcharge3Controller, t12 = _this._invoice_edit_desktop$_surcharge4Controller, t13 = _this._invoice_edit_desktop$_publicNotesController, t14 = _this._invoice_edit_desktop$_privateNotesController, t15 = _this._invoice_edit_desktop$_termsController, t16 = _this._invoice_edit_desktop$_footerController, t17 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_desktop$_controllers = t17; B.JSArray_methods.forEach$1(t17, new A.InvoiceEditDesktopState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.number); t2.set$text(0, invoice.poNumber); t2 = invoice.discount; t1 = _this._framework$_element; t1.toString; t3.set$text(0, A.formatNumber(t2, t1, _null, _null, B.FormatNumberType_4, true, _null, false)); t1 = invoice.partial; t2 = _this._framework$_element; t2.toString; t4.set$text(0, A.formatNumber(t1, t2, _null, _null, B.FormatNumberType_4, true, _null, false)); t5.set$text(0, invoice.customValue1); t6.set$text(0, invoice.customValue2); t7.set$text(0, invoice.customValue3); t8.set$text(0, invoice.customValue4); t8 = invoice.customSurcharge1; t7 = _this._framework$_element; t7.toString; t9.set$text(0, A.formatNumber(t8, t7, _null, _null, B.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge2; t8 = _this._framework$_element; t8.toString; t10.set$text(0, A.formatNumber(t7, t8, _null, _null, B.FormatNumberType_4, true, _null, false)); t8 = invoice.customSurcharge3; t7 = _this._framework$_element; t7.toString; t11.set$text(0, A.formatNumber(t8, t7, _null, _null, B.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge4; t8 = _this._framework$_element; t8.toString; t12.set$text(0, A.formatNumber(t7, t8, _null, _null, B.FormatNumberType_4, true, _null, false)); t13.set$text(0, invoice.publicNotes); t14.set$text(0, invoice.privateNotes); t15.set$text(0, invoice.terms); t16.set$text(0, invoice.footer); B.JSArray_methods.forEach$1(_this._invoice_edit_desktop$_controllers, new A.InvoiceEditDesktopState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._invoice_edit_desktop$_focusNode.dispose$0(0); _this._optionTabController.dispose$0(0); _this._tableTabController.dispose$0(0); B.JSArray_methods.forEach$1(_this._invoice_edit_desktop$_controllers, new A.InvoiceEditDesktopState_dispose_closure(_this)); _this._invoice_edit_desktop$_scrollController.dispose$0(0); _this.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$dispose(0); }, _invoice_edit_desktop$_onChanged$0() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new A.InvoiceEditDesktopState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_desktop$_debouncer.run$1(new A.InvoiceEditDesktopState__onChanged_closure0(_this, invoice)); }, build$1(_, context) { var t6, vendor, entityType, originalInvoice, t7, t8, t9, countProducts, countTasks, settings, terms, termsString, t10, t11, t12, t13, t14, t15, t16, t17, t18, _list, i, t19, i0, _this = this, _null = null, _s16_ = "__invoice_total_", store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, company = viewModel.company, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = t3[t2].clientState, t5 = invoice.clientId, client = t4.$get$1(0, t5); t4 = t3[t2].vendorState; t6 = invoice.vendorId; vendor = t4.$get$1(0, t6); entityType = invoice.entityType; t4 = invoice.id; originalInvoice = type$.legacy_InvoiceEntity._as(state.getEntity$2(entityType, t4)); t7 = invoice.lineItems._list; t8 = A._arrayInstanceType(t7)._eval$1("WhereIterable<1>"); t9 = new A.WhereIterable(t7, new A.InvoiceEditDesktopState_build_closure(), t8); countProducts = t9.get$length(t9); t8 = new A.WhereIterable(t7, new A.InvoiceEditDesktopState_build_closure0(), t8); countTasks = t8.get$length(t8); settings = A.getClientSettings(state, client); t8 = entityType === B.EntityType_quote; terms = t8 ? settings.defaultValidUntil : settings.defaultPaymentTerms; termsString = (terms == null ? "" : terms).length !== 0 ? t1.get$net() + " " + A.S(terms) : _null; t9 = _this._invoice_edit_desktop$_scrollController; t10 = type$.ValueKey_legacy_String; t11 = type$.JSArray_legacy_Widget; t12 = A._setArrayType([], t11); if (invoice.get$isNew()) if (entityType === B.EntityType_purchaseOrder) t12.push(new A.VendorPicker(t6, t3[t2].vendorState, new A.InvoiceEditDesktopState_build_closure1(viewModel, context, invoice), new A.InvoiceEditDesktopState_build_closure2(viewModel, context), true, _null)); else t12.push(new A.ClientPicker(t5, t3[t2].clientState, new A.InvoiceEditDesktopState_build_closure3(viewModel, context, invoice), new A.InvoiceEditDesktopState_build_closure4(viewModel, context), true, B.List_empty0, _null)); else { t2 = new A.EntityPresenter(); t2.entity = entityType === B.EntityType_purchaseOrder ? vendor : client; t2.context = context; t12.push(A.InkWell$(false, _null, true, new A.ConstrainedBox(new A.BoxConstraints(1 / 0, 1 / 0, 40, 1 / 0), new A.Padding(B.EdgeInsets_6_6_6_6, A.Text$(t2.title$0(0), _null, 2, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.InvoiceEditDesktopState_build_closure5(invoice, vendor, client), new A.InvoiceEditDesktopState_build_closure6(invoice, vendor, client), _null, _null, _null, _null, _null, _null)); } t12.push(new A.SizedBox(_null, 8, _null, _null)); t12.push(new A.ConstrainedBox(new A.BoxConstraints(0, 1 / 0, 0, 186), new A.InvoiceEditContactsScreen(entityType, _null), _null)); t2 = A.Expanded$(A.FormCard$(_null, t12, _null, B.CrossAxisAlignment_0, false, _null, false, B.EdgeInsets_12_12_6_12), 1); t3 = A._setArrayType([], t11); t6 = entityType === B.EntityType_recurringInvoice; if (t6) { t12 = t1.get$frequency(t1); t13 = invoice.frequencyId; t14 = B.Map_tOn4d.get$entries(B.Map_tOn4d); t15 = type$.legacy_String; t13 = A.AppDropdownButton$(_null, "", true, t14.map$1$1(t14, new A.InvoiceEditDesktopState_build_closure7(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t12, new A.InvoiceEditDesktopState_build_closure8(viewModel, invoice), _null, false, t13, t15); t12 = invoice.lastSentDate; t12 = t12.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t14 = invoice.nextSendDate; t14 = A.DatePicker$(false, new A.DateTime(Date.now(), false), _null, t12, _null, new A.InvoiceEditDesktopState_build_closure9(viewModel, invoice), t14, _null); t12 = t1.get$remainingCycles(); t16 = invoice.remainingCycles; t17 = type$.legacy_int; t18 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, -1, t17)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(61, t17); for (i = 0; i < 61; ++i) _list[i] = i; t19 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t18, A.List_List$of(new A.MappedListIterable(_list, new A.InvoiceEditDesktopState_build_closure10(), t19), true, t19._eval$1("ListIterable.E"))); t16 = A.AppDropdownButton$(_null, _null, true, t18, _null, t12, new A.InvoiceEditDesktopState_build_closure11(viewModel, invoice), _null, false, t16, t17); t12 = t1.get$dueDate(); t18 = invoice.dueDateDays; if (t18 == null) t18 = ""; t19 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$usePaymentTerms(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "terms", t15)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); _list = J.JSArray_JSArray$allocateGrowable(31, t17); for (i = 0; i < 31; i = i0) { i0 = i + 1; _list[i] = i0; } t17 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t19, A.List_List$of(new A.MappedListIterable(_list, new A.InvoiceEditDesktopState_build_closure12(t1), t17), true, t17._eval$1("ListIterable.E"))); B.JSArray_methods.addAll$1(t3, A._setArrayType([t13, t14, t16, A.AppDropdownButton$(_null, "", true, t19, _null, t12, new A.InvoiceEditDesktopState_build_closure13(viewModel, invoice), _null, false, t18, t15)], t11)); } else { t12 = entityType === B.EntityType_purchaseOrder; if (t12) t13 = t1.get$purchaseOrderDate(); else if (entityType === B.EntityType_credit) t13 = t1.get$creditDate(); else t13 = t8 ? t1.get$quoteDate() : t1.get$invoiceDate(); t13 = A.DatePicker$(false, _null, _null, t13, _null, new A.InvoiceEditDesktopState_build_closure14(viewModel, invoice), invoice.date, new A.InvoiceEditDesktopState_build_closure15(context)); t14 = client.id; t12 = entityType === B.EntityType_invoice || t12 ? t1.get$dueDate() : t1.get$validUntil(); t12 = A._setArrayType([t13, A.DatePicker$(false, _null, new A.ValueKey("__terms_" + t14 + "__", t10), t12, termsString, new A.InvoiceEditDesktopState_build_closure16(viewModel, invoice), invoice.dueDate, _null), A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_partialController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$partialDeposit(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A.InvoiceEditDesktopState_build_closure17(_this, invoice, state, t1))], t11); t13 = invoice.partial; if (t13 > 0) t12.push(A.DatePicker$(false, _null, _null, t1.get$partialDueDate(), _null, new A.InvoiceEditDesktopState_build_closure18(viewModel, invoice), invoice.partialDueDate, _null)); B.JSArray_methods.addAll$1(t3, t12); } t12 = invoice.customValue1; t3.push(new A.CustomField(_this._invoice_edit_desktop$_custom1Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice1", t12, false, _null)); t12 = invoice.customValue3; t3.push(new A.CustomField(_this._invoice_edit_desktop$_custom3Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice3", t12, false, _null)); t3 = A.Expanded$(A.FormCard$(_null, t3, _null, _null, false, _null, false, B.EdgeInsets_6_12_6_12), 1); t12 = entityType === B.EntityType_purchaseOrder; if (t12) t13 = t1.get$poNumber(); else if (entityType === B.EntityType_credit) t13 = t1.get$creditNumber(); else t13 = t8 ? t1.get$quoteNumber() : t1.get$invoiceNumber(); t13 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_invoiceNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t13, _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A.InvoiceEditDesktopState_build_closure19(invoice, originalInvoice, context))], t11); if (!t12) t13.push(A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_poNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$poNumber(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); t13.push(new A.DiscountField(_this._invoice_edit_desktop$_discountController, invoice.discount, invoice.isAmountDiscount, new A.InvoiceEditDesktopState_build_closure20(viewModel, invoice), _null, _null)); if (t6) { t14 = t1.get$autoBill(); t15 = invoice.autoBill; t16 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t13.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new A.InvoiceEditDesktopState_build_closure21(t1), t16), true, t16._eval$1("ListIterable.E")), _null, t14, new A.InvoiceEditDesktopState_build_closure22(viewModel, invoice), _null, false, t15, type$.legacy_String)); } t14 = invoice.customValue2; t13.push(new A.CustomField(_this._invoice_edit_desktop$_custom2Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice2", t14, false, _null)); t14 = invoice.customValue4; t13.push(new A.CustomField(_this._invoice_edit_desktop$_custom4Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice4", t14, false, _null)); t13 = A._setArrayType([A.Row$(A._setArrayType([t2, t3, A.Expanded$(A.FormCard$(_null, t13, _null, _null, false, _null, false, B.EdgeInsets_6_12_12_12), 1)], t11), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t11); t2 = entityType === B.EntityType_invoice; if (t2) if (!invoice.get$hasTasks()) if (!B.JSArray_methods.any$1(t7, new A.InvoiceEditDesktopState_build_closure23())) t3 = company.showTasksTable; else t3 = true; else t3 = true; else t3 = false; if (t3) { t3 = _this._tableTabController; t7 = A.Icon$(A.getEntityIcon(B.EntityType_product), _null, _null); t14 = t1.get$products(); t7 = A.Tab$(A.Row$(A._setArrayType([t7, new A.SizedBox(8, _null, _null, _null), A.Text$(t14 + (countProducts > 0 ? " (" + countProducts + ")" : ""), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t11), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null); t14 = A.Icon$(A.getEntityIcon(B.EntityType_task), _null, _null); t15 = t1.get$tasks(); t13.push(new A.Padding(B.EdgeInsets_18_0_18_0, new A.AppTabBar(A._setArrayType([t7, A.Tab$(A.Row$(A._setArrayType([t14, new A.SizedBox(8, _null, _null, _null), A.Text$(t15 + (countTasks > 0 ? " (" + countTasks + ")" : ""), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t11), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null)], t11), t3, false, new A.InvoiceEditDesktopState_build_closure24(_this), _null), _null)); } if (entityType === B.EntityType_credit) t13.push(new A.CreditEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else if (t8) t13.push(new A.QuoteEditItemsScreen(_this._widget.entityViewModel, _null)); else if (t2) t13.push(new A.InvoiceEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else if (t6) t13.push(new A.RecurringInvoiceEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else if (t12) t13.push(new A.PurchaseOrderEditItemsScreen(_this._widget.entityViewModel, _null)); else t13.push(new A.SizedBox(_null, _null, _null, _null)); t3 = _this._optionTabController; t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "terms"); t7 = A._setArrayType([A.Tab$(_null, t7 == null ? "" : t7), A.Tab$(_null, t1.get$footer()), A.Tab$(_null, t1.get$publicNotes()), A.Tab$(_null, t1.get$privateNotes()), A.Tab$(_null, t1.get$settings())], t11); t12 = _this._optionTabController; t14 = !invoice.get$isNew() && !t6 ? "" : settings.getDefaultTerms$1(entityType); t14 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_termsController, _null, true, _null, t14, _null, _null, false, false, _null, B.TextInputType_1_null_null, _null, 8, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t6 = !invoice.get$isNew() && !t6 ? "" : settings.getDefaultFooter$1(entityType); t12 = A.Expanded$(A.FormCard$(_null, A._setArrayType([new A.AppTabBar(t7, t3, false, _null, _null), new A.SizedBox(_null, 176, A.TabBarView$(A._setArrayType([t14, A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_footerController, _null, true, _null, t6, _null, _null, false, false, _null, B.TextInputType_1_null_null, _null, 8, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_publicNotesController, _null, true, _null, client.publicNotes, _null, _null, false, false, _null, B.TextInputType_1_null_null, _null, 8, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, _null, 8, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), new A.LayoutBuilder(new A.InvoiceEditDesktopState_build_closure25(_this, invoice, viewModel, company, store, state, t1), _null)], t11), t12, _null), _null)], t11), _null, _null, false, _null, false, B.EdgeInsets_12_12_6_12), 2); t6 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1.get$subtotal(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = invoice.calculateSubtotal$1$precision(A.precisionForInvoice(state, invoice)); t14 = A._setArrayType([A.TextFormField$(true, _null, false, _null, _null, t6, false, false, _null, A.formatNumber(invoice.calculateSubtotal$1$precision(A.precisionForInvoice(state, invoice)), context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, new A.ValueKey("__invoice_subtotal_" + A.S(t14) + "_" + t5 + "__", t10), _null, 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_5, _null, _null)], t11); if (!invoice.get$isNew()) t2 = t2 || t8; else t2 = false; if (t2) { t2 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1.get$paidToDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = invoice.paidToDate; t14.push(A.TextFormField$(true, _null, false, _null, _null, t2, false, false, _null, A.formatNumber(t3, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, new A.ValueKey("__invoice_paid_to_date_" + A.S(t3) + "_" + t5 + "__", t10), _null, 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_5, _null, _null)); } if (company.get$hasCustomSurcharge()) t14.push(new A.CustomSurcharges(_this._invoice_edit_desktop$_surcharge1Controller, _this._invoice_edit_desktop$_surcharge2Controller, _this._invoice_edit_desktop$_surcharge3Controller, _this._invoice_edit_desktop$_surcharge4Controller, _null, false, _null)); if (company.get$enableFirstInvoiceTaxRate() || invoice.taxName1.length !== 0) { t2 = t1.get$tax(); t3 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t14.push(new A.TaxRateDropdown(t2 + t3, new A.InvoiceEditDesktopState_build_closure26(viewModel, invoice), invoice.taxName1, invoice.taxRate1, _null)); } if (company.get$enableSecondInvoiceTaxRate() || invoice.taxName2.length !== 0) { t2 = t1.get$tax(); t3 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t14.push(new A.TaxRateDropdown(t2 + t3, new A.InvoiceEditDesktopState_build_closure27(viewModel, invoice), invoice.taxName2, invoice.taxRate2, _null)); } if (company.get$enableThirdInvoiceTaxRate() || invoice.taxName3.length !== 0) { t2 = t1.get$tax(); t3 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t14.push(new A.TaxRateDropdown(t2 + t3, new A.InvoiceEditDesktopState_build_closure28(invoice, viewModel), invoice.taxName3, invoice.taxRate3, _null)); } if (company.get$hasCustomSurcharge()) t14.push(new A.CustomSurcharges(_this._invoice_edit_desktop$_surcharge1Controller, _this._invoice_edit_desktop$_surcharge2Controller, _this._invoice_edit_desktop$_surcharge3Controller, _this._invoice_edit_desktop$_surcharge4Controller, _this._widget.entityViewModel.onSavePressed, true, _null)); t2 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t8 ? t1.get$total(t1) : t1.get$balanceDue(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = invoice.calculateTotal$1$precision(A.precisionForInvoice(state, invoice)); t14.push(A.TextFormField$(true, _null, false, _null, _null, t2, false, false, _null, A.formatNumber(invoice.calculateTotal$1$precision(A.precisionForInvoice(state, invoice)) - invoice.paidToDate, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, new A.ValueKey(_s16_ + A.S(t3) + "_" + t5 + "__", t10), _null, 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_5, _null, _null)); t2 = invoice.partial; if (t2 !== 0) t14.push(A.TextFormField$(true, _null, false, _null, _null, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t1.get$partialDue(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, _null, A.formatNumber(t2, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, new A.ValueKey(_s16_ + A.S(t2) + "_" + t5 + "__", t10), _null, 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_5, _null, _null)); t13.push(A.Row$(A._setArrayType([t12, A.Expanded$(A.Column$(A._setArrayType([A.FormCard$(_null, t14, _null, _null, false, _null, false, B.EdgeInsets_6_12_12_0)], t11), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1)], t11), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); if (state.prefState.showPdfPreview) t13.push(new A.Padding(B.EdgeInsets_16_2_16_16, new A._PdfPreview(invoice, _null), _null)); return A.SingleChildScrollView$(A.Column$(t13, B.CrossAxisAlignment_2, new A.ValueKey("__invoice_" + t4 + "__", t10), B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), t9, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); } }; A.InvoiceEditDesktopState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_desktop$_onChanged()); }, $signature: 12 }; A.InvoiceEditDesktopState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_desktop$_onChanged()); }, $signature: 12 }; A.InvoiceEditDesktopState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_invoice_edit_desktop$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A.InvoiceEditDesktopState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_desktop$_invoiceNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_number = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_poNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._poNumber = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_partialController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._partial = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_surcharge1Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge1 = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_surcharge2Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge2 = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_surcharge3Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge3 = t2; t2 = A.parseDouble(t1._invoice_edit_desktop$_surcharge4Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge4 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_publicNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_publicNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_privateNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_privateNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_termsController._change_notifier$_value.text); b.get$_invoice_model$_$this()._terms = t2; t1 = J.trim$0$s(t1._invoice_edit_desktop$_footerController._change_notifier$_value.text); b.get$_invoice_model$_$this()._footer = t1; return b; }, $signature: 6 }; A.InvoiceEditDesktopState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; A.InvoiceEditDesktopState_build_closure.prototype = { call$1(item) { return !item.get$isEmpty(item) && item.typeId !== "2"; }, $signature: 57 }; A.InvoiceEditDesktopState_build_closure0.prototype = { call$1(item) { return !item.get$isEmpty(item) && item.typeId === "2"; }, $signature: 57 }; A.InvoiceEditDesktopState_build_closure1.prototype = { call$1(vendor) { this.viewModel.onVendorChanged.call$3(this.context, this.invoice, vendor); }, $signature: 34 }; A.InvoiceEditDesktopState_build_closure2.prototype = { call$1(completer) { return this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, $signature: 290 }; A.InvoiceEditDesktopState_build_closure3.prototype = { call$1(client) { this.viewModel.onClientChanged.call$3(this.context, this.invoice, client); }, $signature: 34 }; A.InvoiceEditDesktopState_build_closure4.prototype = { call$1(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 290 }; A.InvoiceEditDesktopState_build_closure5.prototype = { call$0() { return A.editEntity(null, this.invoice.entityType === B.EntityType_purchaseOrder ? this.vendor : this.client, true, null); }, $signature: 0 }; A.InvoiceEditDesktopState_build_closure6.prototype = { call$0() { return A.viewEntity(false, this.invoice.entityType === B.EntityType_purchaseOrder ? this.vendor : this.client, null, false); }, $signature: 0 }; A.InvoiceEditDesktopState_build_closure8.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure17(value))); }, $signature: 7 }; A.InvoiceEditDesktopState_build__closure17.prototype = { call$1(b) { b.get$_invoice_model$_$this()._frequencyId = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure7.prototype = { call$1(entry) { var _null = null, t1 = entry.get$key(entry); return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.legacy_String); }, $signature: 298 }; A.InvoiceEditDesktopState_build_closure9.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure16(date))); }, $signature: 53 }; A.InvoiceEditDesktopState_build__closure16.prototype = { call$1(b) { b.get$_invoice_model$_$this()._nextSendDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure11.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure15(value))); }, $signature: 12 }; A.InvoiceEditDesktopState_build__closure15.prototype = { call$1(b) { b.get$_invoice_model$_$this()._remainingCycles = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure10.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(A.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A.InvoiceEditDesktopState_build_closure13.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure14(value))); }, $signature: 7 }; A.InvoiceEditDesktopState_build__closure14.prototype = { call$1(b) { b.get$_invoice_model$_$this()._dueDateDays = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure12.prototype = { call$1(value) { var t1, _null = null; if (value === 1) t1 = this.localization.get$firstDayOfTheMonth(); else { t1 = this.localization; t1 = value === 31 ? t1.get$lastDayOfTheMonth() : B.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", A.S(value)); } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, A.S(value), type$.legacy_String); }, $signature: 456 }; A.InvoiceEditDesktopState_build_closure15.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; A.InvoiceEditDesktopState_build_closure14.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure13(date))); }, $signature: 53 }; A.InvoiceEditDesktopState_build__closure13.prototype = { call$1(b) { b.get$_invoice_model$_$this()._date = this.date; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure16.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure12(date))); }, $signature: 53 }; A.InvoiceEditDesktopState_build__closure12.prototype = { call$1(b) { b.get$_invoice_model$_$this()._dueDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure17.prototype = { call$1(value) { var _this = this, amount = A.parseDouble(_this.$this._invoice_edit_desktop$_partialController._change_notifier$_value.text, false), t1 = _this.invoice, total = t1.calculateTotal$1$precision(A.precisionForInvoice(_this.state, t1)); if (!(amount < 0)) t1 = amount !== 0 && amount > total; else t1 = true; if (t1) return _this.localization.get$partialValue(); else return null; }, $signature: 15 }; A.InvoiceEditDesktopState_build_closure18.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure11(date))); }, $signature: 53 }; A.InvoiceEditDesktopState_build__closure11.prototype = { call$1(b) { b.get$_invoice_model$_$this()._partialDueDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure19.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 && !this.invoice.get$isNew() && this.originalInvoice.number.length !== 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAnInvoiceNumber() : null; }, $signature: 15 }; A.InvoiceEditDesktopState_build_closure20.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure10(value))); }, $signature: 10 }; A.InvoiceEditDesktopState_build__closure10.prototype = { call$1(b) { b.get$_invoice_model$_$this()._isAmountDiscount = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure22.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure9(value))); }, $signature: 12 }; A.InvoiceEditDesktopState_build__closure9.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_autoBill = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure21.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A.InvoiceEditDesktopState_build_closure23.prototype = { call$1(item) { return item.typeId === "2"; }, $signature: 57 }; A.InvoiceEditDesktopState_build_closure24.prototype = { call$1(index) { var t1 = this.$this; t1.setState$1(new A.InvoiceEditDesktopState_build__closure8(t1, index)); }, $signature: 106 }; A.InvoiceEditDesktopState_build__closure8.prototype = { call$0() { return this.$this._invoice_edit_desktop$_showTasksTable = this.index === 1; }, $signature: 21 }; A.InvoiceEditDesktopState_build_closure25.prototype = { call$2(context, constraints) { var t7, t8, t9, t10, t11, t12, _this = this, _null = null, t1 = constraints.maxWidth, t2 = _this.invoice, t3 = _this.viewModel, t4 = type$.JSArray_legacy_Widget, t5 = A._setArrayType([new A.UserPicker(t2.assignedUserId, new A.InvoiceEditDesktopState_build__closure(t3, t2), _null)], t4), t6 = _this.company; if (t6.isModuleEnabled$1(B.EntityType_project)) t5.push(new A.ProjectPicker(t2.projectId, t2.clientId, new A.InvoiceEditDesktopState_build__closure0(_this.store, _this.state, t2, t3, context), _null, _null)); t7 = t2.entityType; if (t7 === B.EntityType_purchaseOrder) { t8 = _this.state; t9 = t8.uiState.selectedCompanyIndex; t5.push(new A.ClientPicker(t2.clientId, t8.userCompanyStates._list[t9].clientState, new A.InvoiceEditDesktopState_build__closure1(t3, t2), _null, _null, B.List_empty0, _null)); } else if (t6.isModuleEnabled$1(B.EntityType_vendor)) { t8 = _this.localization; t8 = t8.get$vendor(t8); t9 = $.$get$memoizedDropdownVendorList(); t10 = _this.state; t11 = t10.uiState.selectedCompanyIndex; t11 = t10.userCompanyStates._list[t11]; t12 = t11.vendorState; t5.push(A.EntityDropdown$(true, false, false, t2.vendorId, t9.call$4(t12.map, t12.list, t11.userState.map, t10.staticState), _null, B.EntityType_vendor, B.List_empty0, t8, _null, new A.InvoiceEditDesktopState_build__closure2(_this.store), new A.InvoiceEditDesktopState_build__closure3(t3, t2), _null, _null, _null)); } t8 = _this.localization; t9 = t8.get$exchangeRate(); t5.push(A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(t2.exchangeRate, context, _null, _null, B.FormatNumberType_4, true, _null, false), _null, false, false, new A.ValueKey("__exchange_rate_" + t2.clientId + "__", type$.ValueKey_legacy_String), new A.TextInputType(2, false, true), t9, _null, _null, false, new A.InvoiceEditDesktopState_build__closure4(t3, t2), _null, _this.$this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); t5.push(new A.DesignPicker(new A.InvoiceEditDesktopState_build__closure5(t3, t2), _null, t2.designId, _null)); t9 = t6.numberOfInvoiceTaxRates <= 0; if (!t9 || t6.numberOfItemTaxRates > 0 || t7 === B.EntityType_invoice) { t4 = A._setArrayType([], t4); if (!t9 || t6.numberOfItemTaxRates > 0) t4.push(A.Expanded$(A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, true, new A.InvoiceEditDesktopState_build__closure6(t3, t2), _null, _null, A.Text$(t8.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t2.usesInclusiveTaxes), 1)); if (t7 === B.EntityType_invoice) t4.push(A.Expanded$(A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, true, new A.InvoiceEditDesktopState_build__closure7(t3, t2), _null, _null, A.Text$(t8.get$autoBillEnabled(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t2.autoBillEnabled), 1)); t5.push(A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); } return A.GridView$count((t1 / 2 - 8) / 50, t5, 2, 16, 12, _null, new A.NeverScrollableScrollPhysics(_null), true, true); }, $signature: 311 }; A.InvoiceEditDesktopState_build__closure.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure8(userId))); }, $signature: 5 }; A.InvoiceEditDesktopState_build___closure8.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.userId; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure0.prototype = { call$1(projectId) { var project, client, t3, _this = this, t1 = A._lateReadCheck(_this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; project = t2._list[t1].projectState.$get$1(0, projectId); t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].clientState; t1 = project.clientId; client = t2.$get$1(0, t1); t1 = !project.get$isNew() && t1 !== _this.invoice.clientId; t2 = _this.viewModel; t3 = _this.invoice; if (t1) t2.onClientChanged.call$3(_this.context, t3.rebuild$1(new A.InvoiceEditDesktopState_build___closure6(projectId)), client); else t2.onChanged.call$1(t3.rebuild$1(new A.InvoiceEditDesktopState_build___closure7(projectId))); }, $signature: 11 }; A.InvoiceEditDesktopState_build___closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._projectId = this.projectId; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build___closure7.prototype = { call$1(b) { b.get$_invoice_model$_$this()._projectId = this.projectId; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure1.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure5(client))); }, $signature: 34 }; A.InvoiceEditDesktopState_build___closure5.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_invoice_model$_$this()._clientId = t1; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure3.prototype = { call$1(vendor) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure3(vendor))); }, $signature: 61 }; A.InvoiceEditDesktopState_build___closure3.prototype = { call$1(b) { var t1 = this.vendor; t1 = t1.get$id(t1); return b.get$_invoice_model$_$this()._vendorId = t1; }, $signature: 136 }; A.InvoiceEditDesktopState_build__closure2.prototype = { call$2(completer, $name) { var t1 = A.VendorEntity_VendorEntity(null, null, null).rebuild$1(new A.InvoiceEditDesktopState_build___closure4($name)); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorRequest(completer, t1)); }, $signature: 214 }; A.InvoiceEditDesktopState_build___closure4.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_name = this.name; return b; }, $signature: 105 }; A.InvoiceEditDesktopState_build__closure4.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure2(value))); }, $signature: 5 }; A.InvoiceEditDesktopState_build___closure2.prototype = { call$1(b) { var t1 = A.parseDouble(this.value, false); b.get$_invoice_model$_$this()._exchangeRate = t1; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure5.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure1(value))); }, $signature: 153 }; A.InvoiceEditDesktopState_build___closure1.prototype = { call$1(b) { var t1 = this.value.id; b.get$_invoice_model$_$this()._designId = t1; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure6.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure0(value))); }, $signature: 20 }; A.InvoiceEditDesktopState_build___closure0.prototype = { call$1(b) { b.get$_invoice_model$_$this()._usesInclusiveTaxes = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build__closure7.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure(value))); }, $signature: 20 }; A.InvoiceEditDesktopState_build___closure.prototype = { call$1(b) { b.get$_invoice_model$_$this()._autoBillEnabled = this.value; return b; }, $signature: 6 }; A.InvoiceEditDesktopState_build_closure26.prototype = { call$1(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, $signature: 141 }; A.InvoiceEditDesktopState_build_closure27.prototype = { call$1(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, $signature: 141 }; A.InvoiceEditDesktopState_build_closure28.prototype = { call$1(taxRate) { var t1 = this.invoice, updatedInvoice = t1.applyTax$2$isThird(taxRate, true); A.print("## UPDATED\nRate 3: " + updatedInvoice.taxName3 + " => " + A.S(updatedInvoice.taxRate3)); this.viewModel.onChanged.call$1(t1.applyTax$2$isThird(taxRate, true)); }, $signature: 141 }; A._PdfPreview.prototype = { createState$0() { return new A.__PdfPreviewState(new A.Debouncer(1500, false), B._StateLifecycle_0); }, get$invoice() { return this.invoice; } }; A.__PdfPreviewState.prototype = { didChangeDependencies$0() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (!this._widget.invoice.$eq(0, oldWidget.invoice)) this.loadPdf$0(); }, loadPdf$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this; var $async$loadPdf$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._invoice_edit_desktop$_response == null) $async$self._loadPdf$0(); else $async$self._pdfDebouncer.run$1(new A.__PdfPreviewState_loadPdf_closure($async$self)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$loadPdf$0, $async$completer); }, _loadPdf$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, t3, state, credentials, url, invoice, t1, t2; var $async$_loadPdf$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start invoice = $async$self._widget.invoice; t1 = invoice.entityType; t2 = t1 === B.EntityType_purchaseOrder; if (t2) { if (invoice.vendorId.length === 0) { // goto return $async$goto = 1; break; } } else if (invoice.clientId.length === 0) { // goto return $async$goto = 1; break; } if ($async$self._invoice_edit_desktop$_isLoading) { $async$self._pendingLoad = true; // goto return $async$goto = 1; break; } $async$self.setState$1(new A.__PdfPreviewState__loadPdf_closure($async$self)); t3 = $async$self._framework$_element; t3.toString; state = A._lateReadCheck(A.StoreProvider_of(t3, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); url = credentials.url + "/live_preview"; if (t2) url += "/purchase_order"; url += "?entity=" + A.toSnakeCase(t1.name); if (!invoice.get$isNew()) url += "&entity_id=" + invoice.id; if (state.get$isHosted() && A.cleanApiUrl(state.authState.url) !== "https://staging.invoicing.co") url = B.JSString_methods.replaceFirst$2(url, "//", "//preview."); new A.WebClient().post$4$data$rawResponse(url, credentials.token, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$invoiceEntitySerializer(), invoice)), true).then$1$1(0, new A.__PdfPreviewState__loadPdf_closure0($async$self, state), type$.Null).catchError$1(new A.__PdfPreviewState__loadPdf_closure1($async$self)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_loadPdf$0, $async$completer); }, build$1(_, context) { var t4, t5, t6, _this = this, _null = null, _s13_ = "previous_page", _s9_ = "next_page", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([], t2); if (_this._pageCount > 1) t4 = state.prefState.enableJSPDF || false; else t4 = false; if (t4) { t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), _s13_); if (t5 == null) t5 = J.$index$asx(t4.$index(0, "en"), _s13_); t6 = _this._currentPage === 1 ? _null : new A.__PdfPreviewState_build_closure(_this); t1 = J.$index$asx(t4.$index(0, t1), _s9_); if (t1 == null) t1 = J.$index$asx(t4.$index(0, "en"), _s9_); t4 = _this._currentPage == _this._pageCount ? _null : new A.__PdfPreviewState_build_closure0(_this); t3.push(new A.Padding(B.EdgeInsets_0_0_0_16, A.Row$(A._setArrayType([new A.AppButton(_null, B._MdiIconData_Gjc1, t5, t6, 180, _null), new A.SizedBox(16, _null, _null, _null), new A.AppButton(_null, B._MdiIconData_Up30, t1, t4, 180, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), _null)); } if (_this._invoice_edit_desktop$_response == null) t1 = A.Container$(_null, _null, B.Clip_0, B.Color_4292927712, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else t1 = state.prefState.enableJSPDF || false ? A.PdfPreview$(new A.__PdfPreviewState_build_closure1(_this), false, false, false, 800, A._setArrayType([_this._currentPage - 1], type$.JSArray_legacy_int)) : new A.HtmlElementView(_this._invoice_edit_desktop$_pdfString, _null); t3.push(A.Expanded$(t1, 1)); t2 = A._setArrayType([A.Column$(t3, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], t2); if (_this._invoice_edit_desktop$_isLoading) t2.push(A.Center$(A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null)); return A.Container$(_null, new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t2, _null), B.Clip_0, _null, _null, _null, _null, 1200, _null, _null, _null, _null, _null, _null); } }; A.__PdfPreviewState_loadPdf_closure.prototype = { call$0() { this.$this._loadPdf$0(); }, $signature: 1 }; A.__PdfPreviewState__loadPdf_closure.prototype = { call$0() { this.$this._invoice_edit_desktop$_isLoading = true; }, $signature: 1 }; A.__PdfPreviewState__loadPdf_closure0.prototype = { call$1(response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2, $async$temp1, $async$temp2, $async$temp3, $async$temp4; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = response.get$bodyBytes(); t2 = $async$self.$this; $async$temp1 = t2; $async$temp2 = A; $async$temp3 = t2; $async$temp4 = response; $async$goto = 2; return A._asyncAwait($.$get$PrintingPlatform__instance().raster$3(t1, null, 5).toList$0(0), $async$call$1); case 2: // returning from await. $async$temp1.setState$1(new $async$temp2.__PdfPreviewState__loadPdf__closure0($async$temp3, $async$temp4, $async$result, $async$self.state)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 628 }; A.__PdfPreviewState__loadPdf__closure0.prototype = { call$0() { var t2, t3, _this = this, t1 = _this.$this; t1._invoice_edit_desktop$_isLoading = false; t2 = _this.response; t1._invoice_edit_desktop$_response = t2; t3 = t1._pageCount = J.get$length$asx(_this.pages); if (t1._currentPage > t3) t1._currentPage = t3; t3 = _this.state.prefState.enableJSPDF; if (!t3) { t2 = t2.get$bodyBytes(); t2 = "data:application/pdf;base64," + B.C_Base64Codec.get$encoder().convert$1(t2); t1._invoice_edit_desktop$_pdfString = t2; A.WebUtils_registerWebView(t2); } if (t1._pendingLoad) { t1._pendingLoad = false; t1._loadPdf$0(); } }, $signature: 1 }; A.__PdfPreviewState__loadPdf_closure1.prototype = { call$1(error) { var t1; A.print("## Error: " + A.S(error)); t1 = this.$this; t1.setState$1(new A.__PdfPreviewState__loadPdf__closure(t1)); }, $signature: 7 }; A.__PdfPreviewState__loadPdf__closure.prototype = { call$0() { this.$this._invoice_edit_desktop$_isLoading = false; }, $signature: 1 }; A.__PdfPreviewState_build_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.__PdfPreviewState_build__closure0(t1)); }, $signature: 1 }; A.__PdfPreviewState_build__closure0.prototype = { call$0() { var t1 = this.$this; t1._currentPage = t1._currentPage - 1; }, $signature: 1 }; A.__PdfPreviewState_build_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.__PdfPreviewState_build__closure(t1)); }, $signature: 1 }; A.__PdfPreviewState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._currentPage = t1._currentPage + 1; }, $signature: 1 }; A.__PdfPreviewState_build_closure1.prototype = { call$1(format) { return this.$this._invoice_edit_desktop$_response.bodyBytes; }, $signature: 246 }; A._InvoiceEditDesktopState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.InvoiceEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.InvoiceEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.InvoiceEditDetailsState.prototype = { didChangeDependencies$0() { var invoice, _this = this, _null = null, t1 = _this._invoiceNumberController, t2 = _this._poNumberController, t3 = _this._invoice_edit_details$_discountController, t4 = _this._partialController, t5 = _this._invoice_edit_details$_custom1Controller, t6 = _this._invoice_edit_details$_custom2Controller, t7 = _this._invoice_edit_details$_custom3Controller, t8 = _this._invoice_edit_details$_custom4Controller, t9 = _this._surcharge1Controller, t10 = _this._surcharge2Controller, t11 = _this._surcharge3Controller, t12 = _this._surcharge4Controller, t13 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_details$_controllers = t13; B.JSArray_methods.forEach$1(t13, new A.InvoiceEditDetailsState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.number); t2.set$text(0, invoice.poNumber); t2 = invoice.discount; t1 = _this._framework$_element; t1.toString; t3.set$text(0, A.formatNumber(t2, t1, _null, _null, B.FormatNumberType_4, true, _null, false)); t1 = invoice.partial; t2 = _this._framework$_element; t2.toString; t4.set$text(0, A.formatNumber(t1, t2, _null, _null, B.FormatNumberType_4, true, _null, false)); t5.set$text(0, invoice.customValue1); t6.set$text(0, invoice.customValue2); t7.set$text(0, invoice.customValue3); t8.set$text(0, invoice.customValue4); t8 = invoice.customSurcharge1; t7 = _this._framework$_element; t7.toString; t9.set$text(0, A.formatNumber(t8, t7, _null, _null, B.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge2; t8 = _this._framework$_element; t8.toString; t10.set$text(0, A.formatNumber(t7, t8, _null, _null, B.FormatNumberType_4, true, _null, false)); t8 = invoice.customSurcharge3; t7 = _this._framework$_element; t7.toString; t11.set$text(0, A.formatNumber(t8, t7, _null, _null, B.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge4; t8 = _this._framework$_element; t8.toString; t12.set$text(0, A.formatNumber(t7, t8, _null, _null, B.FormatNumberType_4, true, _null, false)); B.JSArray_methods.forEach$1(_this._invoice_edit_details$_controllers, new A.InvoiceEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._invoice_edit_details$_controllers, new A.InvoiceEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_details$_onChanged$0() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new A.InvoiceEditDetailsState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_details$_debouncer.run$1(new A.InvoiceEditDetailsState__onChanged_closure0(_this, invoice)); }, build$1(_, context) { var t7, t8, t9, t10, t11, t12, t13, t14, t15, _list, i, t16, i0, _this = this, _null = null, _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, company = viewModel.company, t2 = invoice.entityType, originalInvoice = type$.legacy_InvoiceEntity._as(state.getEntity$2(t2, invoice.id)), t3 = state.uiState.selectedCompanyIndex, t4 = state.userCompanyStates._list, t5 = t4[t3].clientState, t6 = invoice.clientId, settings = A.getClientSettings(state, t5.$get$1(0, t6)), terms = _this._widget.entityType === B.EntityType_quote ? settings.defaultValidUntil : settings.defaultPaymentTerms, termsString = (terms == null ? "" : terms).length !== 0 ? t1.get$net() + " " + A.S(terms) : _null; if (invoice.get$isNew()) t5 = t2 === B.EntityType_purchaseOrder ? new A.VendorPicker(invoice.vendorId, t4[t3].vendorState, new A.InvoiceEditDetailsState_build_closure(viewModel, context, invoice), new A.InvoiceEditDetailsState_build_closure0(viewModel, context), true, _null) : new A.ClientPicker(t6, t4[t3].clientState, new A.InvoiceEditDetailsState_build_closure1(viewModel, context, invoice), new A.InvoiceEditDetailsState_build_closure2(viewModel, context), _null, B.List_empty0, _null); else { t5 = _this._widget.entityType; if (t5 === B.EntityType_purchaseOrder) t5 = t1.get$poNumber(); else if (t5 === B.EntityType_credit) t5 = t1.get$creditNumber(); else t5 = t5 === B.EntityType_quote ? t1.get$quoteNumber() : t1.get$invoiceNumber(); t5 = A.DecoratedFormField$(false, _null, false, false, _this._invoiceNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t5, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A.InvoiceEditDetailsState_build_closure3(invoice, originalInvoice, context)); } t7 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([t5, new A.UserPicker(invoice.assignedUserId, new A.InvoiceEditDetailsState_build_closure4(viewModel, invoice), _null)], t7); t8 = t2 === B.EntityType_recurringInvoice; if (t8) { t9 = t1.get$frequency(t1); t10 = invoice.frequencyId; t11 = B.Map_tOn4d.get$entries(B.Map_tOn4d); t12 = type$.legacy_String; t10 = A.AppDropdownButton$(_null, "", true, t11.map$1$1(t11, new A.InvoiceEditDetailsState_build_closure5(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t9, new A.InvoiceEditDetailsState_build_closure6(viewModel, invoice), _null, false, t10, t12); t9 = invoice.lastSentDate; t9 = t9.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t11 = invoice.nextSendDate; t11 = A.DatePicker$(false, new A.DateTime(Date.now(), false), _null, t9, _null, new A.InvoiceEditDetailsState_build_closure7(viewModel, invoice), t11, _null); t9 = t1.get$remainingCycles(); t13 = invoice.remainingCycles; t14 = type$.legacy_int; t15 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, -1, t14)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(37, t14); for (i = 0; i < 37; ++i) _list[i] = i; t16 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t15, A.List_List$of(new A.MappedListIterable(_list, new A.InvoiceEditDetailsState_build_closure8(), t16), true, t16._eval$1("ListIterable.E"))); t13 = A.AppDropdownButton$(_null, _null, true, t15, _null, t9, new A.InvoiceEditDetailsState_build_closure9(viewModel, invoice), _null, false, t13, t14); t9 = t1.get$dueDate(); t15 = invoice.dueDateDays; if (t15 == null) t15 = ""; t16 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$usePaymentTerms(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "terms", t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); _list = J.JSArray_JSArray$allocateGrowable(31, t14); for (i = 0; i < 31; i = i0) { i0 = i + 1; _list[i] = i0; } t14 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t16, A.List_List$of(new A.MappedListIterable(_list, new A.InvoiceEditDetailsState_build_closure10(t1), t14), true, t14._eval$1("ListIterable.E"))); B.JSArray_methods.addAll$1(t5, A._setArrayType([t10, t11, t13, A.AppDropdownButton$(_null, "", true, t16, _null, t9, new A.InvoiceEditDetailsState_build_closure11(viewModel, invoice), _null, false, t15, t12)], t7)); } else { t9 = _this._widget.entityType; if (t9 === B.EntityType_purchaseOrder) t9 = t1.get$purchaseOrderDate(); else if (t9 === B.EntityType_credit) t9 = t1.get$creditDate(); else t9 = t9 === B.EntityType_quote ? t1.get$quoteDate() : t1.get$invoiceDate(); t9 = A.DatePicker$(false, _null, _null, t9, _null, new A.InvoiceEditDetailsState_build_closure12(viewModel, invoice), invoice.date, new A.InvoiceEditDetailsState_build_closure13(context)); t10 = _this._widget.entityType; t10 = t10 === B.EntityType_invoice || t10 === B.EntityType_purchaseOrder ? t1.get$dueDate() : t1.get$validUntil(); t10 = A._setArrayType([t9, A.DatePicker$(false, _null, _null, t10, termsString, new A.InvoiceEditDetailsState_build_closure14(viewModel, invoice), invoice.dueDate, _null), A.DecoratedFormField$(false, _null, false, false, _this._partialController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$partialDeposit(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A.InvoiceEditDetailsState_build_closure15(_this, invoice, state, t1))], t7); t9 = invoice.partial; if (t9 > 0) t10.push(A.DatePicker$(false, _null, _null, t1.get$partialDueDate(), _null, new A.InvoiceEditDetailsState_build_closure16(viewModel, invoice), invoice.partialDueDate, _null)); B.JSArray_methods.addAll$1(t5, t10); } t9 = t2 === B.EntityType_purchaseOrder; if (!t9) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._poNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$poNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t5.push(new A.DiscountField(_this._invoice_edit_details$_discountController, invoice.discount, invoice.isAmountDiscount, new A.InvoiceEditDetailsState_build_closure17(viewModel, invoice), _null, _null)); if (t8) { t8 = t1.get$autoBill(); t10 = invoice.autoBill; t11 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t5.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new A.InvoiceEditDetailsState_build_closure18(t1), t11), true, t11._eval$1("ListIterable.E")), _null, t8, new A.InvoiceEditDetailsState_build_closure19(viewModel, invoice), _null, false, t10, type$.legacy_String)); } t5.push(new A.CustomField(_this._invoice_edit_details$_custom1Controller, _null, _null, "invoice1", invoice.customValue1, false, _null)); t5.push(new A.CustomField(_this._invoice_edit_details$_custom2Controller, _null, _null, "invoice2", invoice.customValue2, false, _null)); t5.push(new A.CustomField(_this._invoice_edit_details$_custom3Controller, _null, _null, "invoice3", invoice.customValue3, false, _null)); t5.push(new A.CustomField(_this._invoice_edit_details$_custom4Controller, _null, _null, "invoice4", invoice.customValue4, false, _null)); if (company.getCustomFieldLabel$1(_s10_).length !== 0) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._surcharge1Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_0).length !== 0) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._surcharge2Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_0), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_1).length !== 0) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._surcharge3Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_1), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_2).length !== 0) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._surcharge4Controller, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), company.getCustomFieldLabel$1(_s10_2), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.get$enableFirstInvoiceTaxRate() || invoice.taxName1.length !== 0) { t8 = t1.get$tax(); t10 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5.push(new A.TaxRateDropdown(t8 + t10, new A.InvoiceEditDetailsState_build_closure20(viewModel, invoice), invoice.taxName1, invoice.taxRate1, _null)); } if (company.get$enableSecondInvoiceTaxRate() || invoice.taxName2.length !== 0) { t8 = t1.get$tax(); t10 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5.push(new A.TaxRateDropdown(t8 + t10, new A.InvoiceEditDetailsState_build_closure21(viewModel, invoice), invoice.taxName2, invoice.taxRate2, _null)); } if (company.get$enableThirdInvoiceTaxRate() || invoice.taxName3.length !== 0) { t8 = t1.get$tax(); t10 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5.push(new A.TaxRateDropdown(t8 + t10, new A.InvoiceEditDetailsState_build_closure22(viewModel, invoice), invoice.taxName3, invoice.taxRate3, _null)); } t5.push(new A.DesignPicker(new A.InvoiceEditDetailsState_build_closure23(viewModel, invoice), _null, invoice.designId, _null)); if (company.isModuleEnabled$1(B.EntityType_project)) t5.push(new A.ProjectPicker(invoice.projectId, t6, new A.InvoiceEditDetailsState_build_closure24(state, invoice, viewModel, context), _null, _null)); if (t9) t5.push(new A.ClientPicker(t6, t4[t3].clientState, new A.InvoiceEditDetailsState_build_closure25(viewModel, invoice), _null, _null, B.List_empty0, _null)); else if (company.isModuleEnabled$1(B.EntityType_vendor)) { t8 = invoice.vendorId; t9 = t1.get$vendor(t1); t10 = $.$get$memoizedDropdownVendorList(); t3 = t4[t3]; t4 = t3.vendorState; t5.push(A.EntityDropdown$(true, false, false, t8, t10.call$4(t4.map, t4.list, t3.userState.map, state.staticState), _null, B.EntityType_vendor, B.List_empty0, t9, _null, new A.InvoiceEditDetailsState_build_closure26(store), new A.InvoiceEditDetailsState_build_closure27(viewModel, invoice), _null, _null, _null)); } t3 = t1.get$exchangeRate(); t5.push(A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(invoice.exchangeRate, context, _null, _null, B.FormatNumberType_5, true, _null, false), _null, false, false, new A.ValueKey("__exchange_rate_" + t6 + "__", type$.ValueKey_legacy_String), new A.TextInputType(2, true, true), t3, _null, _null, false, new A.InvoiceEditDetailsState_build_closure28(viewModel, invoice), _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.numberOfInvoiceTaxRates > 0 || company.numberOfItemTaxRates > 0) t5.push(new A.Padding(B.EdgeInsets_0_8_0_0, A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, true, new A.InvoiceEditDetailsState_build_closure29(viewModel, invoice), _null, _null, A.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.usesInclusiveTaxes), _null)); if (t2 === B.EntityType_invoice) t5.push(new A.Padding(B.EdgeInsets_0_8_0_0, A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, true, new A.InvoiceEditDetailsState_build_closure30(viewModel, invoice), _null, _null, A.Text$(t1.get$autoBillEnabled(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.autoBillEnabled), _null)); return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t5, _null, _null, false, _null, true, _null)], t7), _null, _null, _null); } }; A.InvoiceEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_details$_onChanged()); }, $signature: 12 }; A.InvoiceEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_details$_onChanged()); }, $signature: 12 }; A.InvoiceEditDetailsState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_invoice_edit_details$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A.InvoiceEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoiceNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_number = t2; t2 = J.trim$0$s(t1._poNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._poNumber = t2; t2 = A.parseDouble(t1._invoice_edit_details$_discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = A.parseDouble(t1._partialController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._partial = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t2; t2 = A.parseDouble(t1._surcharge1Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge1 = t2; t2 = A.parseDouble(t1._surcharge2Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge2 = t2; t2 = A.parseDouble(t1._surcharge3Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge3 = t2; t1 = A.parseDouble(t1._surcharge4Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge4 = t1; return b; }, $signature: 6 }; A.InvoiceEditDetailsState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; A.InvoiceEditDetailsState_build_closure.prototype = { call$1(vendor) { this.viewModel.onVendorChanged.call$3(this.context, this.invoice, vendor); }, $signature: 34 }; A.InvoiceEditDetailsState_build_closure0.prototype = { call$1(completer) { return this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, $signature: 290 }; A.InvoiceEditDetailsState_build_closure1.prototype = { call$1(client) { return this.viewModel.onClientChanged.call$3(this.context, this.invoice, client); }, $signature: 61 }; A.InvoiceEditDetailsState_build_closure2.prototype = { call$1(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 290 }; A.InvoiceEditDetailsState_build_closure3.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 && !this.invoice.get$isNew() && this.originalInvoice.number.length !== 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAnInvoiceNumber() : null; }, $signature: 15 }; A.InvoiceEditDetailsState_build_closure4.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure17(userId))); }, $signature: 5 }; A.InvoiceEditDetailsState_build__closure17.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.userId; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure6.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure16(value))); }, $signature: 7 }; A.InvoiceEditDetailsState_build__closure16.prototype = { call$1(b) { b.get$_invoice_model$_$this()._frequencyId = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure5.prototype = { call$1(entry) { var _null = null, t1 = entry.get$key(entry); return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.legacy_String); }, $signature: 298 }; A.InvoiceEditDetailsState_build_closure7.prototype = { call$2(date, _) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure15(date))); }, $signature: 288 }; A.InvoiceEditDetailsState_build__closure15.prototype = { call$1(b) { b.get$_invoice_model$_$this()._nextSendDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure9.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure14(value))); }, $signature: 12 }; A.InvoiceEditDetailsState_build__closure14.prototype = { call$1(b) { b.get$_invoice_model$_$this()._remainingCycles = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure8.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(A.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A.InvoiceEditDetailsState_build_closure11.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure13(value))); }, $signature: 12 }; A.InvoiceEditDetailsState_build__closure13.prototype = { call$1(b) { b.get$_invoice_model$_$this()._dueDateDays = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure10.prototype = { call$1(value) { var t1, _null = null; if (value === 1) t1 = this.localization.get$firstDayOfTheMonth(); else { t1 = this.localization; t1 = value === 31 ? t1.get$lastDayOfTheMonth() : B.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", A.S(value)); } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, A.S(value), type$.legacy_String); }, $signature: 456 }; A.InvoiceEditDetailsState_build_closure13.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; A.InvoiceEditDetailsState_build_closure12.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure12(date))); }, $signature: 53 }; A.InvoiceEditDetailsState_build__closure12.prototype = { call$1(b) { b.get$_invoice_model$_$this()._date = this.date; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure14.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure11(date))); }, $signature: 53 }; A.InvoiceEditDetailsState_build__closure11.prototype = { call$1(b) { b.get$_invoice_model$_$this()._dueDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure15.prototype = { call$1(value) { var _this = this, amount = A.parseDouble(_this.$this._partialController._change_notifier$_value.text, false), t1 = _this.invoice, total = t1.calculateTotal$1$precision(A.precisionForInvoice(_this.state, t1)); if (!(amount < 0)) t1 = amount !== 0 && amount > total; else t1 = true; if (t1) return _this.localization.get$partialValue(); else return null; }, $signature: 15 }; A.InvoiceEditDetailsState_build_closure16.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure10(date))); }, $signature: 53 }; A.InvoiceEditDetailsState_build__closure10.prototype = { call$1(b) { b.get$_invoice_model$_$this()._partialDueDate = this.date; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure17.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure9(value))); }, $signature: 10 }; A.InvoiceEditDetailsState_build__closure9.prototype = { call$1(b) { b.get$_invoice_model$_$this()._isAmountDiscount = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure19.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure8(value))); }, $signature: 12 }; A.InvoiceEditDetailsState_build__closure8.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_autoBill = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure18.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A.InvoiceEditDetailsState_build_closure20.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, $signature: 94 }; A.InvoiceEditDetailsState_build_closure21.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, $signature: 94 }; A.InvoiceEditDetailsState_build_closure22.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isThird(taxRate, true)); }, $signature: 94 }; A.InvoiceEditDetailsState_build_closure23.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure7(value))); }, $signature: 234 }; A.InvoiceEditDetailsState_build__closure7.prototype = { call$1(b) { var t1 = this.value; t1 = t1 == null ? null : t1.id; b.get$_invoice_model$_$this()._designId = t1; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure24.prototype = { call$1(projectId) { var project, client, t3, _this = this, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; project = t1[t2].projectState.$get$1(0, projectId); t2 = t1[t2].clientState; t1 = project.clientId; client = t2.$get$1(0, t1); t1 = !project.get$isNew() && t1 !== _this.invoice.clientId; t2 = _this.viewModel; t3 = _this.invoice; if (t1) t2.onClientChanged.call$3(_this.context, t3.rebuild$1(new A.InvoiceEditDetailsState_build__closure5(projectId)), client); else t2.onChanged.call$1(t3.rebuild$1(new A.InvoiceEditDetailsState_build__closure6(projectId))); }, $signature: 11 }; A.InvoiceEditDetailsState_build__closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._projectId = this.projectId; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build__closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._projectId = this.projectId; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure25.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure4(client))); }, $signature: 34 }; A.InvoiceEditDetailsState_build__closure4.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_invoice_model$_$this()._clientId = t1; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure27.prototype = { call$1(vendor) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure2(vendor))); }, $signature: 61 }; A.InvoiceEditDetailsState_build__closure2.prototype = { call$1(b) { var t1 = this.vendor; t1 = t1.get$id(t1); return b.get$_invoice_model$_$this()._vendorId = t1; }, $signature: 136 }; A.InvoiceEditDetailsState_build_closure26.prototype = { call$2(completer, $name) { var t1 = A.VendorEntity_VendorEntity(null, null, null).rebuild$1(new A.InvoiceEditDetailsState_build__closure3($name)); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorRequest(completer, t1)); }, $signature: 214 }; A.InvoiceEditDetailsState_build__closure3.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_name = this.name; return b; }, $signature: 105 }; A.InvoiceEditDetailsState_build_closure28.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure1(value))); }, $signature: 5 }; A.InvoiceEditDetailsState_build__closure1.prototype = { call$1(b) { var t1 = A.parseDouble(this.value, false); b.get$_invoice_model$_$this()._exchangeRate = t1; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure29.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure0(value))); }, $signature: 20 }; A.InvoiceEditDetailsState_build__closure0.prototype = { call$1(b) { b.get$_invoice_model$_$this()._usesInclusiveTaxes = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsState_build_closure30.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure(value))); }, $signature: 20 }; A.InvoiceEditDetailsState_build__closure.prototype = { call$1(b) { b.get$_invoice_model$_$this()._autoBillEnabled = this.value; return b; }, $signature: 6 }; A.InvoiceEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditDetailsScreen_build_closure(this), new A.InvoiceEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditDetailsVM); } }; A.InvoiceEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore(store); }, $signature: 2415 }; A.InvoiceEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditDesktop(viewModel, this.$this.viewModel, new A.ValueKey("__invoice_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new A.InvoiceEditDetails(viewModel, B.EntityType_invoice, null); }, $signature: 2416 }; A.EntityEditDetailsVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceEditDetailsVM.prototype = {}; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure.prototype = { call$1(invoice) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateInvoice(invoice)); }, $signature: 137 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3(context, invoice, client) { var t1 = this.store, t2 = invoice.applyClient$2(this.state, client); t1.get$_dispatchers()[0].call$1(new A.UpdateInvoice(t2)); t1.get$_dispatchers()[0].call$1(new A.UpdateInvoiceClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 286 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var t1 = A.ClientEntity_ClientEntity(null, null, this.state, null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/invoice/edit")); }, $signature: 3 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/invoice/edit")); }, $signature: 34 }; A.InvoiceEditFooter.prototype = { build$1(_, context) { var showLayoutToggle, title, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = this.invoice, total = A.formatNumber(t2.calculateTotal$1$precision(A.precisionForInvoice(state, t2)), context, t2.clientId, _null, B.FormatNumberType_0, true, _null, false), t3 = state.prefState, useSidebarEditor = t3.useSidebarEditor._map$_map.$index(0, B.EntityType_invoice); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = A.getLayout(context) === B.AppLayout_desktop; title = A.S(t1.lookup$1(A.toSnakeCase(t2.entityType.name) + "_total")) + ": " + A.S(total); t4 = A.Theme_of(context).cardColor; t5 = A._setArrayType([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t1 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t5.push(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(useSidebarEditor ? B.IconData_57694_MaterialIcons_null_true : B.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.InvoiceEditFooter_build_closure(store), _null, _null, _null, _null, _null, _null), t1)); } t1 = t2.number; t1 = t1.length === 0 ? title : t1 + " \u2022 " + title; t5.push(new A.AppBorder(new A.Padding(B.EdgeInsets_16_8_0_0, A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t3.enableDarkMode ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, _null, showLayoutToggle, false, _null)); return A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t5, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), t4, 0, new A.CircularNotchedRectangle()); }, get$invoice() { return this.invoice; } }; A.InvoiceEditFooter_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(B.EntityType_invoice)); }, $signature: 9 }; A.InvoiceEditItems.prototype = { createState$0() { return new A._InvoiceEditItemsState(B._StateLifecycle_0); } }; A._InvoiceEditItemsState.prototype = { _showInvoiceItemEditor$2(lineItemIndex, context) { A.showDialog(null, true, new A._InvoiceEditItemsState__showInvoiceItemEditor_closure(this, lineItemIndex), context, null, true, type$.legacy_ItemEditDetails); }, build$1(_, context) { var i, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, invoice = viewModel.invoice, itemIndex = viewModel.invoiceItemIndex, t2 = itemIndex != null; if ((t2 && invoice.lineItems._list.length > itemIndex ? invoice.lineItems._list[itemIndex] : _null) != null && t2) { viewModel.clearSelectedInvoiceItem.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._InvoiceEditItemsState_build_closure(this, itemIndex, context)); } t2 = invoice.lineItems._list; if (t2.length === 0) return new A.HelpText(t1.get$clickPlusToAddItem(), _null); t1 = A._setArrayType([], type$.JSArray_legacy_Widget); for (i = 0; i < t2.length; ++i) t1.push(new A.InvoiceItemListTile(new A._InvoiceEditItemsState_build_closure0(this, i, context), invoice, t2[i], _null)); return new A.ScrollableListView(t1, _null, _null, _null); } }; A._InvoiceEditItemsState__showInvoiceItemEditor_closure.prototype = { call$1(context) { var t2, t1 = this.$this._widget, viewModel = t1.viewModel; t1 = t1.entityViewModel; t2 = this.lineItemIndex; return new A.ItemEditDetails(t2, viewModel.invoice.lineItems._list[t2], viewModel, t1, new A.ValueKey("__" + A.S(t2) + "__", type$.ValueKey_legacy_String)); }, $signature: 2417 }; A._InvoiceEditItemsState_build_closure.prototype = { call$1(duration) { return this.$call$body$_InvoiceEditItemsState_build_closure(duration); }, $call$body$_InvoiceEditItemsState_build_closure(duration) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.$this._showInvoiceItemEditor$2($async$self.itemIndex, $async$self.context); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 2418 }; A._InvoiceEditItemsState_build_closure0.prototype = { call$0() { return this.$this._showInvoiceItemEditor$2(this.i, this.context); }, $signature: 0 }; A.ItemEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.ItemEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.ItemEditDetailsState.prototype = { didChangeDependencies$0() { var invoiceItem, t1, t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null; if (_this._invoice_edit_items$_controllers.length !== 0) return; invoiceItem = _this._widget.invoiceItem; t1 = _this._invoice_edit_items$_productKeyController; t1.set$text(0, invoiceItem.productKey); t2 = _this._invoice_edit_items$_notesController; t2.set$text(0, invoiceItem.notes); t3 = _this._invoice_edit_items$_costController; t4 = invoiceItem.cost; t5 = _this._framework$_element; t5.toString; t3.set$text(0, A.formatNumber(t4, t5, _null, _null, B.FormatNumberType_4, true, _null, false)); t5 = _this._qtyController; t4 = invoiceItem.quantity; t6 = _this._framework$_element; t6.toString; t5.set$text(0, A.formatNumber(t4, t6, _null, _null, B.FormatNumberType_5, true, _null, false)); t6 = _this._discountController; t4 = invoiceItem.discount; t7 = _this._framework$_element; t7.toString; t6.set$text(0, A.formatNumber(t4, t7, _null, _null, B.FormatNumberType_4, true, _null, false)); t7 = _this._invoice_edit_items$_custom1Controller; t7.set$text(0, invoiceItem.customValue1); t4 = _this._invoice_edit_items$_custom2Controller; t4.set$text(0, invoiceItem.customValue2); t8 = _this._invoice_edit_items$_custom3Controller; t8.set$text(0, invoiceItem.customValue3); t9 = _this._invoice_edit_items$_custom4Controller; t9.set$text(0, invoiceItem.customValue4); t9 = A._setArrayType([t1, t2, t3, t5, t6, t7, t4, t8, t9], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_items$_controllers = t9; B.JSArray_methods.forEach$1(t9, new A.ItemEditDetailsState_didChangeDependencies_closure(_this)); _this._invoice_edit_items$_taxRate1 = A.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName1, invoiceItem.taxRate1, _null); _this._invoice_edit_items$_taxRate2 = A.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName2, invoiceItem.taxRate2, _null); _this._invoice_edit_items$_taxRate3 = A.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName3, invoiceItem.taxRate3, _null); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._invoice_edit_items$_controllers, new A.ItemEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_items$_onTextChanged$0() { this._invoice_edit_items$_debouncer.run$1(new A.ItemEditDetailsState__onTextChanged_closure(this)); }, _invoice_edit_items$_onChanged$0() { var _this = this, invoiceItem = _this._widget.invoiceItem.rebuild$1(new A.ItemEditDetailsState__onChanged_closure(_this)), t1 = _this._invoice_edit_items$_taxRate1; if (t1 != null) invoiceItem = invoiceItem.applyTax$1(t1); t1 = _this._invoice_edit_items$_taxRate2; if (t1 != null) invoiceItem = invoiceItem.applyTax$2$isSecond(t1, true); t1 = _this._invoice_edit_items$_taxRate3; if (t1 != null) invoiceItem = invoiceItem.applyTax$2$isThird(t1, true); if (!invoiceItem.$eq(0, _this._widget.invoiceItem)) { t1 = _this._widget; t1.viewModel.onChangedInvoiceItem.call$2(invoiceItem, t1.index); } }, build$1(_, context) { var t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, company = viewModel.company, t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([A.TextButton$(false, A.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ItemEditDetailsState_build_closure(_this, context), _null), A.TextButton$(false, A.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ItemEditDetailsState_build_closure0(viewModel, context), _null)], t2), t4 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_productKeyController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$product(t1), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null), t5 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_notesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$description(t1), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), t6 = _this._invoice_edit_items$_custom1Controller, t7 = _this._widget, t8 = t7.invoiceItem.typeId === "2", t9 = t8 ? "task1" : "product1"; t7 = t7.entityViewModel.onSavePressed; t10 = t6._change_notifier$_value.text; t11 = _this._invoice_edit_items$_custom2Controller; t12 = t8 ? "task2" : "product2"; t13 = t11._change_notifier$_value.text; t14 = _this._invoice_edit_items$_custom3Controller; t15 = t8 ? "task3" : "product3"; t16 = t14._change_notifier$_value.text; t17 = _this._invoice_edit_items$_custom4Controller; t8 = t8 ? "task4" : "product4"; t18 = t17._change_notifier$_value.text; t19 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_costController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$unitCost(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null); t20 = company.enableProductQuantity ? A.DecoratedFormField$(false, _null, false, false, _this._qtyController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$quantity(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t21 = company.enableProductDiscount ? A.DecoratedFormField$(false, _null, false, false, _this._discountController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$discount(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = A._setArrayType([t4, t5, new A.CustomField(t6, _null, t7, t9, t10, false, _null), new A.CustomField(t11, _null, t7, t12, t13, false, _null), new A.CustomField(t14, _null, t7, t15, t16, false, _null), new A.CustomField(t17, _null, t7, t8, t18, false, _null), t19, t20, t21], t2); if (company.get$enableFirstItemTaxRate() || _this._invoice_edit_items$_taxRate1.name.length !== 0) { t4 = t1.get$tax(); t5 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t6 = _this._invoice_edit_items$_taxRate1; t2.push(new A.TaxRateDropdown(t4 + t5, new A.ItemEditDetailsState_build_closure1(_this), t6.name, t6.rate, _null)); } if (company.get$enableSecondItemTaxRate() || _this._invoice_edit_items$_taxRate2.name.length !== 0) { t4 = t1.get$tax(); t5 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t6 = _this._invoice_edit_items$_taxRate2; t2.push(new A.TaxRateDropdown(t4 + t5, new A.ItemEditDetailsState_build_closure2(_this), t6.name, t6.rate, _null)); } if (company.get$enableThirdItemTaxRate() || _this._invoice_edit_items$_taxRate3.name.length !== 0) { t4 = t1.get$tax(); t1 = company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5 = _this._invoice_edit_items$_taxRate3; t2.push(new A.TaxRateDropdown(t4 + t1, new A.ItemEditDetailsState_build_closure3(_this), t5.name, t5.rate, _null)); } return A.AlertDialog$(t3, B.EdgeInsets_0_0_0_0, _null, A.SingleChildScrollView$(A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1), B.EdgeInsets_24_20_24_24, _null, _null, _null); } }; A.ItemEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_items$_onTextChanged()); }, $signature: 12 }; A.ItemEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_invoice_edit_items$_onTextChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.ItemEditDetailsState__onTextChanged_closure.prototype = { call$0() { this.$this._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; A.ItemEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_items$_productKeyController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_productKey = t2; t2 = t1._invoice_edit_items$_notesController._change_notifier$_value.text; b.get$_invoice_model$_$this()._invoice_model$_notes = t2; t2 = A.parseDouble(t1._invoice_edit_items$_costController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._invoice_model$_cost = t2; t2 = A.parseDouble(t1._qtyController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._invoice_model$_quantity = t2; t2 = A.parseDouble(t1._discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t1 = J.trim$0$s(t1._invoice_edit_items$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1; return b; }, $signature: 58 }; A.ItemEditDetailsState_build_closure.prototype = { call$0() { var t1 = this.context; return A.confirmCallback(false, new A.ItemEditDetailsState_build__closure2(this.$this, t1), t1, null, false, null); }, $signature: 0 }; A.ItemEditDetailsState_build__closure2.prototype = { call$1(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveInvoiceItemPressed.call$1(t1.index); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 11 }; A.ItemEditDetailsState_build_closure0.prototype = { call$0() { this.viewModel.clearSelectedInvoiceItem.call$0(); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.ItemEditDetailsState_build_closure1.prototype = { call$1(taxRate) { var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure1(t1, taxRate)); }, $signature: 141 }; A.ItemEditDetailsState_build__closure1.prototype = { call$0() { var t1 = this.$this; t1._invoice_edit_items$_taxRate1 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; A.ItemEditDetailsState_build_closure2.prototype = { call$1(taxRate) { var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure0(t1, taxRate)); }, $signature: 141 }; A.ItemEditDetailsState_build__closure0.prototype = { call$0() { var t1 = this.$this; t1._invoice_edit_items$_taxRate2 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; A.ItemEditDetailsState_build_closure3.prototype = { call$1(taxRate) { var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure(t1, taxRate)); }, $signature: 141 }; A.ItemEditDetailsState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._invoice_edit_items$_taxRate3 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; A.InvoiceEditItemsDesktop.prototype = { createState$0() { return new A._InvoiceEditItemsDesktopState(new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_String), B._StateLifecycle_0); } }; A._InvoiceEditItemsDesktopState.prototype = { initState$0() { this.super$State$initState(); this._updateColumns$0(); }, _updateColumns$0() { var includedLineItems, hasTax1, hasTax2, hasTax3, hasAnyTax, customField1, customField2, customField3, customField4, t3, pdfColumns, t4, _i, column, t5, _this = this, _s9_ = "unit_cost", _s8_ = "quantity", viewModel = _this._widget.viewModel, lineItems = viewModel.invoice.lineItems, state = viewModel.state, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, company = t1._list[t2].userCompany.company; t2 = lineItems._list; t1 = A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"); includedLineItems = A.List_List$of(new A.WhereIterable(t2, new A._InvoiceEditItemsDesktopState__updateColumns_closure(_this), t1), true, t1._eval$1("Iterable.E")); hasTax1 = company.get$enableFirstItemTaxRate() || B.JSArray_methods.any$1(includedLineItems, new A._InvoiceEditItemsDesktopState__updateColumns_closure0()); hasTax2 = company.get$enableSecondItemTaxRate() || B.JSArray_methods.any$1(includedLineItems, new A._InvoiceEditItemsDesktopState__updateColumns_closure1()); hasTax3 = company.get$enableThirdItemTaxRate() || B.JSArray_methods.any$1(includedLineItems, new A._InvoiceEditItemsDesktopState__updateColumns_closure2()); hasAnyTax = hasTax1 || hasTax2 || hasTax3; t1 = _this._widget.isTasks; customField1 = t1 ? "task1" : "product1"; customField2 = t1 ? "task2" : "product2"; customField3 = t1 ? "task3" : "product3"; customField4 = t1 ? "task4" : "product4"; t2 = company.settings; t3 = type$.legacy_String; t2 = J.map$1$1$ax(t2.getFieldsForSection$1(t1 ? "task_columns" : "product_columns"), new A._InvoiceEditItemsDesktopState__updateColumns_closure3(), t3); pdfColumns = A.List_List$of(t2, true, t2.$ti._eval$1("ListIterable.E")); if (_this._widget.isTasks) if (pdfColumns.length === 0) pdfColumns = A._setArrayType(["service", "description", "rate", "hours"], type$.JSArray_legacy_String); else { if (!B.JSArray_methods.contains$1(pdfColumns, "service")) { t1 = A._setArrayType(["service"], type$.JSArray_legacy_String); B.JSArray_methods.addAll$1(t1, pdfColumns); pdfColumns = t1; } if (!B.JSArray_methods.contains$1(pdfColumns, "rate")) { t1 = A.List_List$of(pdfColumns, true, t3); t1.push("rate"); pdfColumns = t1; } if (!B.JSArray_methods.contains$1(pdfColumns, "hours")) { t1 = A.List_List$of(pdfColumns, true, t3); t1.push("hours"); pdfColumns = t1; } } else if (pdfColumns.length === 0) pdfColumns = A._setArrayType(["item", "description", "unit_cost", "quantity"], type$.JSArray_legacy_String); else { if (!B.JSArray_methods.contains$1(pdfColumns, "item")) { t1 = A._setArrayType(["item"], type$.JSArray_legacy_String); B.JSArray_methods.addAll$1(t1, pdfColumns); pdfColumns = t1; } if (!B.JSArray_methods.contains$1(pdfColumns, _s9_)) { t1 = A.List_List$of(pdfColumns, true, t3); t1.push(_s9_); pdfColumns = t1; } if (!B.JSArray_methods.contains$1(pdfColumns, _s8_) && company.enableProductQuantity) { t1 = A.List_List$of(pdfColumns, true, t3); t1.push(_s8_); pdfColumns = t1; } } if (hasAnyTax && !B.JSArray_methods.contains$1(pdfColumns, "tax")) { t1 = A.List_List$of(pdfColumns, true, t3); t1.push("tax"); pdfColumns = t1; } if (company.getCustomFieldLabel$1(customField1).length !== 0 && !B.JSArray_methods.contains$1(pdfColumns, customField1)) B.JSArray_methods.add$1(pdfColumns, customField1); if (company.getCustomFieldLabel$1(customField2).length !== 0 && !B.JSArray_methods.contains$1(pdfColumns, customField2)) B.JSArray_methods.add$1(pdfColumns, customField2); if (company.getCustomFieldLabel$1(customField3).length !== 0 && !B.JSArray_methods.contains$1(pdfColumns, customField3)) B.JSArray_methods.add$1(pdfColumns, customField3); if (company.getCustomFieldLabel$1(customField4).length !== 0 && !B.JSArray_methods.contains$1(pdfColumns, customField4)) B.JSArray_methods.add$1(pdfColumns, customField4); t1 = _this._invoice_edit_items_desktop$_columns; B.JSArray_methods.set$length(t1, 0); for (t2 = pdfColumns.length, t3 = !company.enableProductQuantity, t4 = company.enableProductDiscount, _i = 0; _i < pdfColumns.length; pdfColumns.length === t2 || (0, A.throwConcurrentModificationError)(pdfColumns), ++_i) { column = pdfColumns[_i]; if ("item" === column || "service" === column) t1.push("item"); else if ("description" === column) t1.push("description"); else if ("unit_cost" === column || "rate" === column) t1.push(_s9_); else { if ("quantity" === column || "hours" === column) t5 = !t3 || _this._widget.isTasks; else t5 = false; if (t5) t1.push(_s8_); else if (("product1" === column || "task1" === column) && company.getCustomFieldLabel$1(customField1).length !== 0) t1.push("custom1"); else if (("product2" === column || "task2" === column) && company.getCustomFieldLabel$1(customField2).length !== 0) t1.push("custom2"); else if (("product3" === column || "task3" === column) && company.getCustomFieldLabel$1(customField3).length !== 0) t1.push("custom3"); else if (("product4" === column || "task4" === column) && company.getCustomFieldLabel$1(customField4).length !== 0) t1.push("custom4"); else if ("tax" === column) { if (hasTax1) t1.push("tax1"); if (hasTax2) t1.push("tax2"); if (hasTax3) t1.push("tax3"); } else if ("discount" === column && t4) t1.push("discount"); } } }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.isTasks !== _this._widget.isTasks) { _this._isReordering = false; _this._updateColumns$0(); } }, _updateTable$0() { this.setState$1(new A._InvoiceEditItemsDesktopState__updateTable_closure(this)); }, _invoice_edit_items_desktop$_onChanged$3$debounce(lineItem, index, debounce) { var viewModel = this._widget.viewModel, t1 = viewModel.invoice.lineItems._list; if (index === t1.length) viewModel.onChangedInvoiceItem.call$2(lineItem, index); else if (!lineItem.$eq(0, t1[index])) if (debounce) this._invoice_edit_items_desktop$_debouncer.run$1(new A._InvoiceEditItemsDesktopState__onChanged_closure(viewModel, lineItem, index)); else viewModel.onChangedInvoiceItem.call$2(lineItem, index); }, _invoice_edit_items_desktop$_onChanged$2(lineItem, index) { return this._invoice_edit_items_desktop$_onChanged$3$debounce(lineItem, index, true); }, _invoice_edit_items_desktop$_onFocusChange$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._InvoiceEditItemsDesktopState__onFocusChange_closure()); }, build$1(_, context) { var t4, company, invoice, t5, client, t6, precision, lineItems, includedLineItems, productState, productIds, customField1, customField2, customField3, customField4, tableFontColor, tableHeaderColor, tableHeaderColumns, translations, i, column, label, t7, isNumeric, t8, t9, t10, t11, index, t12, t13, t14, t15, _this = this, _null = null, _s4_ = "item", _s11_ = "description", _s8_ = "quantity", _s9_ = "unit_cost", _s8_0 = "discount", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), theme = A.Theme_of(context), viewModel = _this._widget.viewModel, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3]; company = t4.userCompany.company; invoice = viewModel.invoice; t4 = t4.clientState; t5 = invoice.clientId; client = t4.$get$1(0, t5); t4 = state.staticState.currencyMap; t6 = client.settings.currencyId; t6 = t4._map$_map.$index(0, t6); precision = t6 == null ? _null : t6.precision; if (precision == null) precision = 2; t4 = invoice.lineItems; t6 = t4._list; lineItems = new A.CopyOnWriteList(true, t6, A._instanceType(t4)._eval$1("CopyOnWriteList<1>")); t6 = B.JSArray_methods.where$1(t6, new A._InvoiceEditItemsDesktopState_build_closure(_this)); includedLineItems = A.List_List$of(t6, true, t6.$ti._eval$1("Iterable.E")); t3 = t2[t3]; productState = t3.productState; productIds = $.$get$memoizedDropdownProductList().call$3(productState.map, productState.list, t3.userState.map); t2 = _this._widget.isTasks; customField1 = t2 ? "task1" : "product1"; customField2 = t2 ? "task2" : "product2"; customField3 = t2 ? "task3" : "product3"; customField4 = t2 ? "task4" : "product4"; t2 = state.prefState.customColors._map$_map; tableFontColor = t2.$index(0, "invoice_header_font_color"); if (tableFontColor == null) tableFontColor = ""; tableHeaderColor = t2.$index(0, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; t2 = type$.JSArray_legacy_Widget; tableHeaderColumns = A._setArrayType([], t2); t3 = company.settings; translations = t3.translations; for (t4 = _this._invoice_edit_items_desktop$_columns, t6 = type$.JSArray_legacy_String, t3 = t3.enableInclusiveTaxes, i = 0; i < t4.length; ++i) { column = t4[i]; if (column === "item") { label = translations._map$_map.$index(0, _s4_); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), _s4_); label = t7 == null ? "" : t7; } isNumeric = false; } else if (column === "description") { label = translations._map$_map.$index(0, _s11_); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), _s11_); label = t7 == null ? "" : t7; } isNumeric = false; } else if (column === "custom1") { label = company.getCustomFieldLabel$1(customField1); isNumeric = false; } else if (column === "custom2") { label = company.getCustomFieldLabel$1(customField2); isNumeric = false; } else if (column === "custom3") { label = company.getCustomFieldLabel$1(customField3); isNumeric = false; } else if (column === "custom4") { label = company.getCustomFieldLabel$1(customField4); isNumeric = false; } else if (B.JSArray_methods.contains$1(A._setArrayType(["tax1", "tax2", "tax3"], t6), column)) { t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = t1.localeCode; t9 = J.$index$asx(t7.$index(0, t8), "tax"); if (t9 == null) t9 = ""; if (t3) { t7 = J.$index$asx(t7.$index(0, t8), "inclusive"); t7 = " - " + (t7 == null ? "" : t7); } else t7 = ""; label = t9 + t7; isNumeric = false; } else if (column === "quantity") { if (_this._widget.isTasks) { label = translations._map$_map.$index(0, "hours"); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "hours"); label = t7 == null ? "" : t7; } } else { label = translations._map$_map.$index(0, _s8_); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), _s8_); label = t7 == null ? "" : t7; } } isNumeric = true; } else if (column === "unit_cost") { if (_this._widget.isTasks) { label = translations._map$_map.$index(0, "rate"); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "rate"); label = t7 == null ? "" : t7; } } else { label = translations._map$_map.$index(0, _s9_); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), _s9_); label = t7 == null ? "" : t7; } } isNumeric = true; } else if (column === "discount") { label = translations._map$_map.$index(0, _s8_0); if (label == null) { t1.toString; t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), _s8_0); label = t7 == null ? "" : t7; } isNumeric = true; } else { label = ""; isNumeric = false; } tableHeaderColumns.push(new A.TableHeader(label, isNumeric, i === 0, _null)); } if (_this._isReordering) { t3 = tableHeaderColor.length !== 0 ? new A.BoxDecoration(A.convertHexStringToColor(tableHeaderColor), _null, _null, _null, _null, _null, B.BoxShape_0) : new A.BoxDecoration(_null, _null, _null, _null, _null, _null, B.BoxShape_0); t4 = type$.MappedListIterable_of_legacy_Widget_and_legacy_Expanded; t4 = A.List_List$of(A.List_List$of(new A.MappedListIterable(tableHeaderColumns, new A._InvoiceEditItemsDesktopState_build_closure0(), t4), true, t4._eval$1("ListIterable.E")), true, type$.legacy_Widget); t4.push(A.Expanded$(new A.TableHeader(t1.get$lineTotal(), true, false, _null), 1)); t4.push(new A.SizedBox(16, _null, _null, _null)); t1 = tableFontColor.length !== 0 ? A.convertHexStringToColor(tableFontColor) : _null; t4.push(A.IconButton$(B.Alignment_0_0, t1, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A._InvoiceEditItemsDesktopState_build_closure1(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null)); return A.FormCard$(_null, A._setArrayType([A.DecoratedBox$(A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t3, B.DecorationPosition_0), new A.ReorderableListView(new A._InvoiceEditItemsDesktopState_build_closure2(_this, lineItems, invoice, precision), J.get$length$asx(lineItems._copy_on_write_list$_list), new A._InvoiceEditItemsDesktopState_build_closure3(lineItems, viewModel), false, _null, false, true, _null)], t2), _null, _null, false, _null, false, B.EdgeInsets_12_0_12_0); } t3 = J.where$1$ax(lineItems._copy_on_write_list$_list, new A._InvoiceEditItemsDesktopState_build_closure4()); if (!t3.get$iterator(t3).moveNext$0()) { t3 = A.InvoiceItemEntity_InvoiceItemEntity(_null, company.defaultQuantity || !company.enableProductQuantity ? 1 : 0); lineItems._maybeCopyBeforeWrite$0(); J.add$1$ax(lineItems._copy_on_write_list$_list, t3); } t3 = t1.get$lineTotal(); t6 = A.Icon$(B.IconData_58919_MaterialIcons_null_false, _null, _null); t7 = tableFontColor.length !== 0 ? A.convertHexStringToColor(tableFontColor) : _null; t8 = new A.WhereIterable(includedLineItems, new A._InvoiceEditItemsDesktopState_build_closure5(), A._arrayInstanceType(includedLineItems)._eval$1("WhereIterable<1>")); B.JSArray_methods.addAll$1(tableHeaderColumns, A._setArrayType([new A.TableHeader(t3, true, false, _null), A.IconButton$(B.Alignment_0_0, t7, _null, true, t6, _null, t8.get$length(t8) < 2 ? _null : new A._InvoiceEditItemsDesktopState_build_closure6(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null)], t2)); t2 = A.LinkedHashMap_LinkedHashMap$_literal([B.JSArray_methods.indexOf$1(t4, _s4_), new A.FlexColumnWidth(1.3), B.JSArray_methods.indexOf$1(t4, _s11_), new A.FlexColumnWidth(2.2), t4.length + 1, new A.FixedColumnWidth(40)], type$.legacy_int, type$.legacy_TableColumnWidth); t3 = _this._invoice_edit_items_desktop$_updatedAt; t6 = type$.ValueKey_legacy_String; t7 = A._setArrayType([new A.TableRow(_null, tableHeaderColor.length !== 0 ? new A.BoxDecoration(A.convertHexStringToColor(tableHeaderColor), _null, _null, _null, _null, _null, B.BoxShape_0) : new A.BoxDecoration(_null, _null, _null, _null, _null, _null, B.BoxShape_0), tableHeaderColumns)], type$.JSArray_legacy_TableRow); for (t8 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,Focus*>"), t9 = t8._eval$1("ListIterable.E"), t10 = type$.legacy_Widget, t11 = type$.legacy_String, index = 0; index < J.get$length$asx(lineItems._copy_on_write_list$_list); ++index) { if (!(J.$index$asx(lineItems._copy_on_write_list$_list, index).typeId === "2" && _this._widget.isTasks)) t12 = J.$index$asx(lineItems._copy_on_write_list$_list, index).typeId !== "2" && !_this._widget.isTasks || J.get$isEmpty$asx(J.$index$asx(lineItems._copy_on_write_list$_list, index)); else t12 = true; if (t12) { t12 = "" + index; t13 = J.$index$asx(lineItems._copy_on_write_list$_list, index).createdAt; t14 = A.List_List$of(A.List_List$of(new A.MappedListIterable(t4, new A._InvoiceEditItemsDesktopState_build_closure7(_this, index, lineItems, productIds, productState, company, state, invoice, viewModel, theme, customField1, customField2, customField3, customField4, context), t8), true, t9), true, t10); t15 = J.total$2$x(J.$index$asx(lineItems._copy_on_write_list$_list, index), invoice, precision); t14.push(new A.Padding(B.EdgeInsets_0_0_16_0, A.TextFormField$(true, _null, false, _null, _null, B.InputDecoration_C4W, false, false, _null, A.formatNumber(J.total$2$x(J.$index$asx(lineItems._copy_on_write_list$_list, index), invoice, precision), context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, new A.ValueKey("__total_" + t12 + "_" + A.S(t15) + "_" + t5 + "__", t6), _null, 1, _null, false, _null, _null, _null, _null, true, _null, _null, B.TextAlign_1, _null, _null), _null)); t14.push(A.PopupMenuButton$(_null, _null, !J.get$isEmpty$asx(J.$index$asx(lineItems._copy_on_write_list$_list, index)), new A.Icon(B.IconData_58372_MaterialIcons_null_false, _null, _null, _null), _null, new A._InvoiceEditItemsDesktopState_build_closure8(_this, includedLineItems, lineItems, index, t1), new A._InvoiceEditItemsDesktopState_build_closure9(_this, t1, lineItems, index, viewModel), B.EdgeInsets_8_8_8_8, _null, t11)); t7.push(new A.TableRow(new A.ValueKey("__line_item_" + t12 + "_" + A.S(t13) + "__", t6), _null, t14)); } } return A.FormCard$(A.Table$(_null, t7, t2, B.FlexColumnWidth_1, B.TableCellVerticalAlignment_2, new A.ValueKey("__datatable_" + A.S(t3) + "__", t6)), _null, _null, _null, false, _null, false, B.EdgeInsets_12_0_12_0); } }; A._InvoiceEditItemsDesktopState__updateColumns_closure.prototype = { call$1(lineItem) { var t1 = lineItem.typeId === "2"; if (!(t1 && this.$this._widget.isTasks)) t1 = !t1 && !this.$this._widget.isTasks || lineItem.get$isEmpty(lineItem); else t1 = true; return t1; }, $signature: 57 }; A._InvoiceEditItemsDesktopState__updateColumns_closure0.prototype = { call$1(item) { return item.taxName1.length !== 0; }, $signature: 57 }; A._InvoiceEditItemsDesktopState__updateColumns_closure1.prototype = { call$1(item) { return item.taxName2.length !== 0; }, $signature: 57 }; A._InvoiceEditItemsDesktopState__updateColumns_closure2.prototype = { call$1(item) { return item.taxName3.length !== 0; }, $signature: 57 }; A._InvoiceEditItemsDesktopState__updateColumns_closure3.prototype = { call$1(value) { return value.split(".")[1]; }, $signature: 15 }; A._InvoiceEditItemsDesktopState__updateTable_closure.prototype = { call$0() { this.$this._invoice_edit_items_desktop$_updatedAt = Date.now(); }, $signature: 1 }; A._InvoiceEditItemsDesktopState__onChanged_closure.prototype = { call$0() { this.viewModel.onChangedInvoiceItem.call$2(this.lineItem, this.index); }, $signature: 1 }; A._InvoiceEditItemsDesktopState__onFocusChange_closure.prototype = { call$1(duration) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } }, $signature: 36 }; A._InvoiceEditItemsDesktopState_build_closure.prototype = { call$1(lineItem) { var t1 = lineItem.typeId === "2"; if (!(t1 && this.$this._widget.isTasks)) t1 = !t1 && !this.$this._widget.isTasks || lineItem.get$isEmpty(lineItem); else t1 = true; return t1; }, $signature: 57 }; A._InvoiceEditItemsDesktopState_build_closure0.prototype = { call$1(widget) { return A.Expanded$(widget, 1); }, $signature: 2419 }; A._InvoiceEditItemsDesktopState_build_closure1.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._InvoiceEditItemsDesktopState_build__closure31(t1)); }, $signature: 1 }; A._InvoiceEditItemsDesktopState_build__closure31.prototype = { call$0() { return this.$this._isReordering = false; }, $signature: 21 }; A._InvoiceEditItemsDesktopState_build_closure2.prototype = { call$2(context, index) { var t2, t3, t4, _this = this, _null = null, item = J.$index$asx(_this.lineItems._copy_on_write_list$_list, index), t1 = item.typeId === "2"; if (!(t1 && !_this.$this._widget.isTasks)) t1 = !t1 && _this.$this._widget.isTasks; else t1 = true; if (t1) return new A.SizedBox(_null, _null, _null, new A.ObjectKey(item)); t1 = _this.$this._invoice_edit_items_desktop$_columns; t2 = _this.invoice; t3 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Text*>"); t4 = t3._eval$1("MappedListIterable"); t4 = A.List_List$of(A.List_List$of(new A.MappedListIterable(new A.MappedListIterable(t1, new A._InvoiceEditItemsDesktopState_build__closure29(item, context, t2), t3), new A._InvoiceEditItemsDesktopState_build__closure30(), t4), true, t4._eval$1("ListIterable.E")), true, type$.legacy_Widget); t2 = A.formatNumber(item.total$2(0, t2, _this.precision), context, t2.clientId, _null, B.FormatNumberType_0, true, _null, false); t4.push(A.Expanded$(A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, B.TextAlign_1, _null, _null), 1)); t4.push(new A.SizedBox(16, _null, _null, _null)); t4.push(new A.Padding(B.EdgeInsets_8_8_8_8, A.Icon$(B.IconData_57862_MaterialIcons_null_false, _null, _null), _null)); return new A.ReorderableDragStartListener(new A.Padding(B.EdgeInsets_0_4_0_4, A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), index, true, new A.ObjectKey(item)); }, $signature: 131 }; A._InvoiceEditItemsDesktopState_build__closure29.prototype = { call$1(column) { var t1, _this = this, _null = null; if (column === "item") return A.Text$(_this.item.productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "description") return A.Text$(_this.item.notes, _null, 2, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); else if (column === "custom1") return A.Text$(_this.item.customValue1, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "custom2") return A.Text$(_this.item.customValue2, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "custom3") return A.Text$(_this.item.customValue3, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "custom4") return A.Text$(_this.item.customValue4, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "tax1") return A.Text$(_this.item.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "tax2") return A.Text$(_this.item.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "tax3") return A.Text$(_this.item.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (column === "unit_cost") { t1 = A.formatNumber(_this.item.cost, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_4, true, _null, false); return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, B.TextAlign_1, _null, _null); } else if (column === "quantity") { t1 = A.formatNumber(_this.item.quantity, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_5, true, _null, false); return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, B.TextAlign_1, _null, _null); } else if (column === "discount") { t1 = A.formatNumber(_this.item.discount, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_5, true, _null, false); return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, B.TextAlign_1, _null, _null); } }, $signature: 2420 }; A._InvoiceEditItemsDesktopState_build__closure30.prototype = { call$1(widget) { return A.Expanded$(new A.Padding(B.EdgeInsets_0_0_16_0, widget, null), 1); }, $signature: 2421 }; A._InvoiceEditItemsDesktopState_build_closure3.prototype = { call$2(oldIndex, newIndex) { var t1 = this.lineItems; if (newIndex > J.get$length$asx(t1._copy_on_write_list$_list)) newIndex = J.get$length$asx(t1._copy_on_write_list$_list); if (oldIndex < newIndex) --newIndex; this.viewModel.onMovedInvoiceItem.call$2(oldIndex, newIndex); }, $signature: 147 }; A._InvoiceEditItemsDesktopState_build_closure4.prototype = { call$1(item) { return item.get$isEmpty(item); }, $signature: 57 }; A._InvoiceEditItemsDesktopState_build_closure5.prototype = { call$1(item) { return !item.get$isEmpty(item); }, $signature: 57 }; A._InvoiceEditItemsDesktopState_build_closure6.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._InvoiceEditItemsDesktopState_build__closure28(t1)); }, $signature: 1 }; A._InvoiceEditItemsDesktopState_build__closure28.prototype = { call$0() { var t1 = this.$this; return t1._isReordering = !t1._isReordering; }, $signature: 21 }; A._InvoiceEditItemsDesktopState_build_closure7.prototype = { call$1(column) { var t1, t2, t3, t4, t5, _this = this, _null = null; if (column === "item") { t1 = _this.$this; t2 = _this.index; t3 = _this.lineItems; t4 = _this.company; t5 = _this.state; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.RawAutocomplete(new A._InvoiceEditItemsDesktopState_build__closure0(t1, t3, t2), _null, new A._InvoiceEditItemsDesktopState_build__closure1(_this.theme, t5, t4), new A._InvoiceEditItemsDesktopState_build__closure2(), new A._InvoiceEditItemsDesktopState_build__closure3(t1, t3, t2, t5, _this.invoice, t4, _this.viewModel), new A._InvoiceEditItemsDesktopState_build__closure4(_this.productIds, _this.productState, t4, t3, t2), _null, new A.TextEditingValue(J.$index$asx(t3._copy_on_write_list$_list, t2).productKey, B.TextSelection_ke5, B.TextRange_m1_m1), new A.ValueKey("__line_item_" + t2 + "_name__", type$.ValueKey_legacy_String), type$.RawAutocomplete_legacy_ProductEntity), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure5(t1, t2), _null, _null, true); } else if (column === "description") { t1 = _this.$this; t2 = _this.index; t3 = t1._autocompleteFocusIndex; t4 = _this.lineItems; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.GrowableFormField(J.$index$asx(t4._copy_on_write_list$_list, t2).notes, new A._InvoiceEditItemsDesktopState_build__closure6(t1, t4, t2), t3 === t2, new A.ValueKey("__line_item_" + t2 + "_description__", type$.ValueKey_legacy_String)), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure7(t1), _null, _null, true); } else if (column === "custom1") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; t4 = J.$index$asx(t2._copy_on_write_list$_list, t3).customValue1; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.CustomField(_null, new A._InvoiceEditItemsDesktopState_build__closure8(t1, t2, t3), t1._widget.entityViewModel.onSavePressed, _this.customField1, t4, true, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure9(t1), _null, _null, true); } else if (column === "custom2") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; t4 = J.$index$asx(t2._copy_on_write_list$_list, t3).customValue2; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.CustomField(_null, new A._InvoiceEditItemsDesktopState_build__closure10(t1, t2, t3), t1._widget.entityViewModel.onSavePressed, _this.customField2, t4, true, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure11(t1), _null, _null, true); } else if (column === "custom3") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; t4 = J.$index$asx(t2._copy_on_write_list$_list, t3).customValue3; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.CustomField(_null, new A._InvoiceEditItemsDesktopState_build__closure12(t1, t2, t3), t1._widget.entityViewModel.onSavePressed, _this.customField3, t4, true, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure13(t1), _null, _null, true); } else if (column === "custom4") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; t4 = J.$index$asx(t2._copy_on_write_list$_list, t3).customValue4; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.CustomField(_null, new A._InvoiceEditItemsDesktopState_build__closure14(t1, t2, t3), t1._widget.entityViewModel.onSavePressed, _this.customField4, t4, true, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure15(t1), _null, _null, true); } else if (column === "tax1") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.TaxRateDropdown(_null, new A._InvoiceEditItemsDesktopState_build__closure16(t1, t2, t3), J.$index$asx(t2._copy_on_write_list$_list, t3).taxName1, J.$index$asx(t2._copy_on_write_list$_list, t3).taxRate1, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure17(t1), _null, _null, true); } else if (column === "tax2") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.TaxRateDropdown(_null, new A._InvoiceEditItemsDesktopState_build__closure18(t1, t2, t3), J.$index$asx(t2._copy_on_write_list$_list, t3).taxName2, J.$index$asx(t2._copy_on_write_list$_list, t3).taxRate2, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure19(t1), _null, _null, true); } else if (column === "tax3") { t1 = _this.$this; t2 = _this.lineItems; t3 = _this.index; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, new A.TaxRateDropdown(_null, new A._InvoiceEditItemsDesktopState_build__closure20(t1, t2, t3), J.$index$asx(t2._copy_on_write_list$_list, t3).taxName3, J.$index$asx(t2._copy_on_write_list$_list, t3).taxRate3, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure21(t1), _null, _null, true); } else if (column === "unit_cost") { t1 = _this.$this; t2 = _this.index; t3 = _this.lineItems; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(J.$index$asx(t3._copy_on_write_list$_list, t2).cost, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_4, true, _null, false), _null, false, false, new A.ValueKey("__line_item_" + t2 + "_cost__", type$.ValueKey_legacy_String), new A.TextInputType(2, true, true), _null, _null, _null, false, new A._InvoiceEditItemsDesktopState_build__closure22(t1, t3, t2), _null, t1._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_1, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure23(t1), _null, _null, true); } else if (column === "quantity") { t1 = _this.$this; t2 = _this.index; t3 = _this.lineItems; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(J.$index$asx(t3._copy_on_write_list$_list, t2).quantity, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_5, true, _null, false), _null, false, false, new A.ValueKey("__line_item_" + t2 + "_quantity__", type$.ValueKey_legacy_String), new A.TextInputType(2, true, true), _null, _null, _null, false, new A._InvoiceEditItemsDesktopState_build__closure24(t1, t3, t2), _null, t1._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_1, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure25(t1), _null, _null, true); } else if (column === "discount") { t1 = _this.$this; t2 = _this.index; t3 = _this.lineItems; return A.Focus$(false, _null, new A.Padding(B.EdgeInsets_0_0_16_0, A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, A.formatNumber(J.$index$asx(t3._copy_on_write_list$_list, t2).discount, _this.context, _this.invoice.clientId, _null, B.FormatNumberType_5, true, _null, false), _null, false, false, new A.ValueKey("__line_item_" + t2 + "_discount__", type$.ValueKey_legacy_String), new A.TextInputType(2, true, true), _null, _null, _null, false, new A._InvoiceEditItemsDesktopState_build__closure26(t1, t3, t2), _null, t1._widget.entityViewModel.onSavePressed, true, _null, _null, B.TextAlign_1, _null), _null), _null, _null, _null, _null, true, _null, new A._InvoiceEditItemsDesktopState_build__closure27(t1), _null, _null, true); } }, $signature: 2422 }; A._InvoiceEditItemsDesktopState_build__closure5.prototype = { call$1(hasFocus) { var t1 = this.$this; t1._autocompleteFocusIndex = this.index; t1._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 20 }; A._InvoiceEditItemsDesktopState_build__closure4.prototype = { call$1(textEditingValue) { var _this = this, t1 = J.map$1$1$ax(_this.productIds, new A._InvoiceEditItemsDesktopState_build___closure10(_this.productState), type$.legacy_ProductEntity).where$1(0, new A._InvoiceEditItemsDesktopState_build___closure11(textEditingValue, _this.company)), options = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); if (options.length === 1 && options[0].productKey.toLowerCase() === J.$index$asx(_this.lineItems._copy_on_write_list$_list, _this.index).productKey.toLowerCase()) return A._setArrayType([], type$.JSArray_legacy_ProductEntity); return options; }, $signature: 2423 }; A._InvoiceEditItemsDesktopState_build___closure10.prototype = { call$1(productId) { return this.productState.map._map$_map.$index(0, productId); }, $signature: 242 }; A._InvoiceEditItemsDesktopState_build___closure11.prototype = { call$1(product) { var filter = this.textEditingValue.text.toLowerCase(), t1 = product.productKey; if (this.company.showProductDetails && B.JSString_methods.contains$1(product.notes.toLowerCase(), filter)) return true; return B.JSString_methods.contains$1(t1.toLowerCase(), filter); }, $signature: 758 }; A._InvoiceEditItemsDesktopState_build__closure2.prototype = { call$1(product) { return product.productKey; }, $signature: 2424 }; A._InvoiceEditItemsDesktopState_build__closure3.prototype = { call$1(product) { var currency, cost, t6, exchangeRate, updatedItem, _this = this, t1 = {}, t2 = _this.index, item = J.$index$asx(_this.lineItems._copy_on_write_list$_list, t2), t3 = _this.state, t4 = t3.uiState.selectedCompanyIndex, t5 = _this.invoice, client = t3.userCompanyStates._list[t4].clientState.$get$1(0, t5.clientId); t3 = t3.staticState.currencyMap; t4 = client.settings.currencyId; currency = t3._map$_map.$index(0, t4); cost = product.price; t1.cost = cost; t3 = _this.company; if (t3.convertProductExchangeRate) { t6 = t3.settings.currencyId; t4 = t4 !== (t6 == null ? "1" : t6); } else t4 = false; if (t4) { exchangeRate = t5.exchangeRate; if (!t3.convertRateToClient && exchangeRate !== 0) exchangeRate = 1 / exchangeRate; t4 = currency == null ? null : currency.precision; if (t4 == null) t4 = 2; t1.cost = A.round(cost * exchangeRate, t4); } updatedItem = t3.fillProducts ? item.rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure12(t1, product, item, _this.viewModel, t3)) : item.rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure13(product)); t1 = _this.$this; t1._invoice_edit_items_desktop$_onChanged$3$debounce(updatedItem, t2, false); t1._updateTable$0(); }, $signature: 228 }; A._InvoiceEditItemsDesktopState_build___closure12.prototype = { call$1(b) { var t2, t3, t4, t5, _this = this, t1 = _this.product; b.get$_invoice_model$_$this()._invoice_model$_productKey = t1.productKey; t2 = _this.item; t3 = t2.typeId === "2"; t4 = t3 ? t2.notes : t1.notes; b.get$_invoice_model$_$this()._invoice_model$_notes = t4; t4 = t2.productCost; b.get$_invoice_model$_$this()._productCost = t4; t4 = t3 && t2.cost !== 0 ? t2.cost : _this._box_0.cost; b.get$_invoice_model$_$this()._invoice_model$_cost = t4; if (t3 || t2.quantity !== 0) t3 = t2.quantity; else { t3 = _this.viewModel.state; t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = t4._list[t3].userCompany.company.defaultQuantity ? 1 : t1.quantity; } b.get$_invoice_model$_$this()._invoice_model$_quantity = t3; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1.customValue4; t3 = _this.company.numberOfItemTaxRates; t4 = t3 >= 1; t5 = t4 && t1.taxName1.length !== 0 ? t1.taxName1 : t2.taxName1; b.get$_invoice_model$_$this()._taxName1 = t5; t4 = t4 && t1.taxName1.length !== 0 ? t1.taxRate1 : t2.taxRate1; b.get$_invoice_model$_$this()._taxRate1 = t4; t4 = t3 >= 2; t5 = t4 && t1.taxName2.length !== 0 ? t1.taxName2 : t2.taxName2; b.get$_invoice_model$_$this()._taxName2 = t5; t4 = t4 && t1.taxName2.length !== 0 ? t1.taxRate2 : t2.taxRate2; b.get$_invoice_model$_$this()._taxRate2 = t4; t3 = t3 >= 3; t4 = t3 && t1.taxName3.length !== 0 ? t1.taxName3 : t2.taxName3; b.get$_invoice_model$_$this()._taxName3 = t4; t1 = t3 && t1.taxName3.length !== 0 ? t1.taxRate3 : t2.taxRate3; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build___closure13.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_productKey = this.product.productKey; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure0.prototype = { call$4(context, textEditingController, focusNode, onFieldSubmitted) { var _null = null; return A.DecoratedFormField$(false, _null, false, false, textEditingController, _null, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A._InvoiceEditItemsDesktopState_build___closure15(this.$this, this.lineItems, this.index), new A._InvoiceEditItemsDesktopState_build___closure16(onFieldSubmitted), _null, false, _null, _null, B.TextAlign_4, _null); }, $signature: 422 }; A._InvoiceEditItemsDesktopState_build___closure16.prototype = { call$1(value) { this.onFieldSubmitted.call$0(); }, $signature: 11 }; A._InvoiceEditItemsDesktopState_build___closure15.prototype = { call$1(value) { var t1 = this.index; this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build____closure0(value)), t1); }, $signature: 11 }; A._InvoiceEditItemsDesktopState_build____closure0.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_productKey = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure1.prototype = { call$3(context, onSelected, options) { var _null = null, highlightedIndex = A.AutocompleteHighlightedOption_of(context), t1 = A.Theme_of(context).cardColor; return new A.Theme(this.theme, new A.Align(B.Alignment_m1_m1, _null, _null, A.Material$(B.Duration_200000, true, _null, new A.AppBorder(A.Container$(_null, new A.ScrollableListViewBuilder(new A._InvoiceEditItemsDesktopState_build___closure14(options, highlightedIndex, this.state, onSelected, this.company), _null, J.get$length$asx(options), _null, _null, _null), B.Clip_0, t1, new A.BoxConstraints(0, 1 / 0, 0, 270), _null, _null, _null, _null, _null, _null, _null, _null, 250), _null, _null, _null, false, _null), B.Clip_0, _null, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null), _null); }, $signature: 2425 }; A._InvoiceEditItemsDesktopState_build___closure14.prototype = { call$2(context, index) { var t1, t2, _this = this, _null = null, entity = J.elementAt$1$ax(_this.options, index); if (_this.highlightedIndex === index) t1 = A.convertHexStringToColor(_this.state.prefState.enableDarkMode ? "#253750" : "#e5f5ff"); else t1 = A.Theme_of(context).cardColor; t2 = entity instanceof A.ProductEntity && _this.company.showProductDetails ? entity.notes : _null; return A.Container$(_null, new A.EntityAutocompleteListTile(entity, new A._InvoiceEditItemsDesktopState_build____closure(_this.onSelected), _null, t2, _null, _null, _null), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 750 }; A._InvoiceEditItemsDesktopState_build____closure.prototype = { call$1(entity) { return this.onSelected.call$1(entity); }, $signature: 155 }; A._InvoiceEditItemsDesktopState_build__closure7.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure6.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure9(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure9.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_notes = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure9.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure8.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure8(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure8.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue1 = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure11.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure10.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure7(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure7.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue2 = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure13.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure12.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure6(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure6.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue3 = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure15.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure14.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure5(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure5.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue4 = this.value; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure17.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure16.prototype = { call$1(taxRate) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure4(taxRate)), t1, false); }, $signature: 459 }; A._InvoiceEditItemsDesktopState_build___closure4.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure19.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure18.prototype = { call$1(taxRate) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure3(taxRate)), t1, false); }, $signature: 459 }; A._InvoiceEditItemsDesktopState_build___closure3.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure21.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure20.prototype = { call$1(taxRate) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure2(taxRate)), t1, false); }, $signature: 459 }; A._InvoiceEditItemsDesktopState_build___closure2.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure23.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure22.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure1(value)), t1, false); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure1.prototype = { call$1(b) { var t1 = A.parseDouble(this.value, false); b.get$_invoice_model$_$this()._invoice_model$_cost = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure25.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure24.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure0(value)), t1, false); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure0.prototype = { call$1(b) { var t1 = A.parseDouble(this.value, false); b.get$_invoice_model$_$this()._invoice_model$_quantity = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build__closure27.prototype = { call$1(hasFocus) { return this.$this._invoice_edit_items_desktop$_onFocusChange$0(); }, $signature: 40 }; A._InvoiceEditItemsDesktopState_build__closure26.prototype = { call$1(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure(value)), t1); }, $signature: 67 }; A._InvoiceEditItemsDesktopState_build___closure.prototype = { call$1(b) { var t1 = A.parseDouble(this.value, false); b.get$_invoice_model$_$this()._discount = t1; return b; }, $signature: 58 }; A._InvoiceEditItemsDesktopState_build_closure8.prototype = { call$1(context) { var _this = this, t1 = _this.includedLineItems, t2 = _this.lineItems, t3 = _this.index, sectionIndex = B.JSArray_methods.indexOf$1(t1, J.$index$asx(t2._copy_on_write_list$_list, t3)), t4 = A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_IconData); if (_this.$this._widget.isTasks) { t2 = J.$index$asx(t2._copy_on_write_list$_list, t3).taskId; t2 = (t2 == null ? "" : t2).length !== 0; } else t2 = false; if (t2) t4.$indexSet(0, _this.localization.get$viewTask(), B._MdiIconData_Up3); if (sectionIndex > 0) t4.$indexSet(0, _this.localization.get$moveTop(), B._MdiIconData_AmO2); if (sectionIndex > 1) t4.$indexSet(0, _this.localization.get$moveUp(), B._MdiIconData_Qa61); if (sectionIndex < t1.length - 2) t4.$indexSet(0, _this.localization.get$moveDown(), B._MdiIconData_Gjc0); if (sectionIndex < t1.length - 1) t4.$indexSet(0, _this.localization.get$moveBottom(), B._MdiIconData_2C70); t1 = _this.localization; t4.$indexSet(0, t1.get$remove(t1), B.IconData_57704_MaterialIcons_null_false); t1 = t4.$ti._eval$1("LinkedHashMapKeyIterable<1>"); t1 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t4, t1), new A._InvoiceEditItemsDesktopState_build__closure(t4), t1._eval$1("Iterable.E"), type$.legacy_PopupMenuItem_legacy_String); return A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E")); }, $signature: 732 }; A._InvoiceEditItemsDesktopState_build__closure.prototype = { call$1(option) { return A.PopupMenuItem$(new A.IconText(option, this.options.$index(0, option), null, null, null), option, type$.legacy_String); }, $signature: 729 }; A._InvoiceEditItemsDesktopState_build_closure9.prototype = { call$1(action) { var _this = this, t1 = _this.localization; if (action === t1.get$viewTask()) A.viewEntityById(false, J.$index$asx(_this.lineItems._copy_on_write_list$_list, _this.index).taskId, B.EntityType_task, null, false, true); else if (action === t1.get$moveTop()) _this.viewModel.onMovedInvoiceItem.call$2(_this.index, 0); else if (action === t1.get$moveUp()) { t1 = _this.index; _this.viewModel.onMovedInvoiceItem.call$2(t1, t1 - 1); } else if (action === t1.get$moveDown()) { t1 = _this.index; _this.viewModel.onMovedInvoiceItem.call$2(t1, t1 + 1); } else if (action === t1.get$moveBottom()) _this.viewModel.onMovedInvoiceItem.call$2(_this.index, J.get$length$asx(_this.lineItems._copy_on_write_list$_list) - 2); else if (action === t1.get$remove(t1)) _this.viewModel.onRemoveInvoiceItemPressed.call$1(_this.index); _this.$this._updateTable$0(); }, $signature: 11 }; A.TableHeader.prototype = { build$1(_, context) { var tableFontColor, t2, t3, t4, t5, _null = null, t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").prefState.customColors._map$_map, tableHeaderColor = t1.$index(0, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; tableFontColor = t1.$index(0, "invoice_header_font_color"); if (tableFontColor == null) tableFontColor = ""; t1 = tableHeaderColor.length === 0; t2 = t1 ? 0 : 8; t3 = t1 ? 8 : 16; t4 = this.isNumeric; t5 = t4 ? 16 : 0; t1 = !t1 && this.isFirst ? 4 : 0; t4 = t4 ? B.TextAlign_1 : B.TextAlign_0; return new A.Padding(new A.EdgeInsets(t1, t2, t5, t3), A.Text$(this.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, tableFontColor.length !== 0 ? A.convertHexStringToColor(tableFontColor) : B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), t4, _null, _null), _null); } }; A.InvoiceEditItemsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditItemsScreen_build_closure(this), new A.InvoiceEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditItemsVM); } }; A.InvoiceEditItemsScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2430 }; A.InvoiceEditItemsScreen_build_closure.prototype = { call$2(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new A.InvoiceEditItems(viewModel, t2, null); }, $signature: 2431 }; A.EntityEditItemsVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceEditItemsVM.prototype = {}; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeleteInvoiceItem(index)); }, $signature: 106 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.EditInvoiceItem(null)); }, $signature: 9 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1.prototype = { call$2(invoiceItem, index) { var t2, t1 = this.store; if (index === A._lateReadCheck(t1.__Store__state, "_state").uiState.invoiceUIState.editing.lineItems._list.length) { t2 = invoiceItem.rebuild$1(new A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure(this.isTasks)); t1.get$_dispatchers()[0].call$1(new A.AddInvoiceItem(t2)); } else t1.get$_dispatchers()[0].call$1(new A.UpdateInvoiceItem(index, invoiceItem)); }, $signature: 233 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure.prototype = { call$1(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 58 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { this.store.get$_dispatchers()[0].call$1(new A.MoveInvoiceItem(oldIndex, newIndex)); }, $signature: 147 }; A.InvoiceEditNotes.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.InvoiceEditNotesState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.InvoiceEditNotesState.prototype = { didChangeDependencies$0() { var invoice, _this = this, t1 = _this._invoice_edit_notes$_publicNotesController, t2 = _this._invoice_edit_notes$_privateNotesController, t3 = _this._invoice_edit_notes$_termsController, t4 = _this._invoice_edit_notes$_footerController, t5 = A._setArrayType([t1, t2, t3, t4], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_notes$_controllers = t5; B.JSArray_methods.forEach$1(t5, new A.InvoiceEditNotesState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.publicNotes); t2.set$text(0, invoice.privateNotes); t3.set$text(0, invoice.terms); t4.set$text(0, invoice.footer); B.JSArray_methods.forEach$1(_this._invoice_edit_notes$_controllers, new A.InvoiceEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._invoice_edit_notes$_controllers, new A.InvoiceEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_notes$_onChanged$0() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new A.InvoiceEditNotesState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_notes$_debouncer.run$1(new A.InvoiceEditNotesState__onChanged_closure0(_this, invoice)); }, build$1(_, context) { var t3, t4, t5, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, t2 = state.uiState.selectedCompanyIndex, client = state.userCompanyStates._list[t2].clientState.$get$1(0, invoice.clientId), settings = A.getClientSettings(state, client); t2 = invoice.entityType; t3 = t2 === B.EntityType_credit; if (t3) t4 = t1.get$creditTerms(); else t4 = t2 === B.EntityType_quote ? t1.get$quoteTerms() : t1.get$invoiceTerms(); t5 = !invoice.get$isNew() ? "" : settings.getDefaultTerms$1(t2); t4 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_termsController, _null, true, _null, t5, _null, _null, false, false, _null, B.TextInputType_1_null_null, t4, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); if (t3) t3 = t1.get$creditFooter(); else t3 = t2 === B.EntityType_quote ? t1.get$quoteFooter() : t1.get$invoiceFooter(); t2 = !invoice.get$isNew() ? "" : settings.getDefaultFooter$1(t2); t3 = A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_footerController, _null, true, _null, t2, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t2 = t1.get$publicNotes(); t5 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t4, t3, A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_publicNotesController, _null, true, _null, client.publicNotes, _null, _null, false, false, _null, B.TextInputType_1_null_null, t2, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t5), _null, _null, false, _null, true, _null)], t5), _null, _null, _null); } }; A.InvoiceEditNotesState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_notes$_onChanged()); }, $signature: 12 }; A.InvoiceEditNotesState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_notes$_onChanged()); }, $signature: 12 }; A.InvoiceEditNotesState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_invoice_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.InvoiceEditNotesState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_notes$_publicNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_publicNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_notes$_privateNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_privateNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_notes$_termsController._change_notifier$_value.text); b.get$_invoice_model$_$this()._terms = t2; t1 = J.trim$0$s(t1._invoice_edit_notes$_footerController._change_notifier$_value.text); b.get$_invoice_model$_$this()._footer = t1; return b; }, $signature: 6 }; A.InvoiceEditNotesState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; A.InvoiceEditNotesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditNotesScreen_build_closure(), new A.InvoiceEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditNotesVM); } }; A.InvoiceEditNotesScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore(store); }, $signature: 2432 }; A.InvoiceEditNotesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditNotes(viewModel, null); }, $signature: 2433 }; A.EntityEditNotesVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceEditNotesVM.prototype = {}; A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure.prototype = { call$1(invoice) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateInvoice(invoice)); }, $signature: 137 }; A.InvoiceEditPDF.prototype = { createState$0() { return new A.InvoiceEditPDFState(B._StateLifecycle_0); } }; A.InvoiceEditPDFState.prototype = { didChangeDependencies$0() { var viewModel, t1, t2, credentials, url, t3, _this = this; _this.super$State$didChangeDependencies(); viewModel = _this._widget.viewModel; t1 = viewModel.invoice; t2 = t1.clientId; if (t2.length === 0 || _this._invoice_edit_pdf$_isLoading) return; _this.setState$1(new A.InvoiceEditPDFState_didChangeDependencies_closure(_this)); t2 = viewModel.state; credentials = t2.get$credentials(t2); url = credentials.url + "/live_preview"; t3 = t1.entityType; if (t3 === B.EntityType_purchaseOrder) url += "/purchase_order"; url += "?entity=" + A.toSnakeCase(t3.name); if (!t1.get$isNew()) url += "&entity_id=" + t1.id; if (t2.get$isHosted()) url = B.JSString_methods.replaceFirst$2(url, "//", "//preview."); new A.WebClient().post$4$data$rawResponse(url, credentials.token, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$invoiceEntitySerializer(), t1)), true).then$1$1(0, new A.InvoiceEditPDFState_didChangeDependencies_closure0(_this), type$.Null).catchError$1(new A.InvoiceEditPDFState_didChangeDependencies_closure1(_this)); }, build$1(_, context) { var _null = null, t1 = this._widget.viewModel.invoice.clientId; if (t1.length === 0) return new A.HelpText(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$noClientSelected(), _null); if (this._invoice_edit_pdf$_response == null) return A.Center$(A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null); t1 = this._invoice_edit_pdf$_pdfString; return A.Center$(new A.HtmlElementView(t1, _null), _null, _null); } }; A.InvoiceEditPDFState_didChangeDependencies_closure.prototype = { call$0() { this.$this._invoice_edit_pdf$_isLoading = true; }, $signature: 1 }; A.InvoiceEditPDFState_didChangeDependencies_closure0.prototype = { call$1(response) { var t1 = this.$this; t1.setState$1(new A.InvoiceEditPDFState_didChangeDependencies__closure0(t1, response)); }, $signature: 7 }; A.InvoiceEditPDFState_didChangeDependencies__closure0.prototype = { call$0() { var t2, t1 = this.$this; t1._invoice_edit_pdf$_isLoading = false; t2 = this.response; t1._invoice_edit_pdf$_response = t2; t2 = t2.get$bodyBytes(); t2 = "data:application/pdf;base64," + B.C_Base64Codec.get$encoder().convert$1(t2); t1._invoice_edit_pdf$_pdfString = t2; A.WebUtils_registerWebView(t2); }, $signature: 1 }; A.InvoiceEditPDFState_didChangeDependencies_closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A.InvoiceEditPDFState_didChangeDependencies__closure(t1)); }, $signature: 7 }; A.InvoiceEditPDFState_didChangeDependencies__closure.prototype = { call$0() { this.$this._invoice_edit_pdf$_isLoading = false; }, $signature: 1 }; A.InvoiceEditPDFScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditPDFScreen_build_closure(), new A.InvoiceEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditPDFVM); } }; A.InvoiceEditPDFScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.InvoiceEditPDFVM(state, t2._list[t1].userCompany.company, invoice); }, $signature: 2434 }; A.InvoiceEditPDFScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2435 }; A.EntityEditPDFVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceEditPDFVM.prototype = {}; A.InvoiceEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEditScreen_build_closure(), new A.InvoiceEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditVM); } }; A.InvoiceEditScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceEditVM_InvoiceEditVM$fromStore(store); }, $signature: 2436 }; A.InvoiceEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEdit(viewModel, new A.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2437 }; A.AbstractInvoiceEditVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceEditVM.prototype = {}; A.InvoiceEditVM_InvoiceEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0(this.store, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 170 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0.prototype = { call$0() { var t3, $navigator, t4, state, i, lineItem, t5, t6, t7, _null = null, t1 = this.store, invoice = A._lateReadCheck(t1.__Store__state, "_state").uiState.invoiceUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t4 = invoice.clientId; if (t4.length === 0) { A.showDialog(_null, true, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure0(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), _null, true, type$.legacy_ErrorDialog); return _null; } state = A._lateReadCheck(t1.__Store__state, "_state"); for (t2 = invoice.lineItems._list, i = 0; i < t2.length; ++i) { lineItem = t2[i]; t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; t5 = t5._list; t7 = t5[t6].taskState.$get$1(0, lineItem.taskId).clientId; if (t7.length !== 0 && t7 !== t4) { t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(_null, true, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), _null, true, type$.legacy_ErrorDialog); return _null; } t5 = t5[t6].expenseState.$get$1(0, lineItem.expenseId).clientId; if ((t5 == null ? "" : t5).length !== 0 && t5 !== t4) { t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(_null, true, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure2(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), _null, true, type$.legacy_ErrorDialog); return _null; } } if (!invoice.get$isNew()) { t2 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; if (!A.hasInvoiceChanges(invoice, t2._list[t4].invoiceState.map)) { t2 = this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = this.action; if (t2) A.handleEntitiesActions(A._setArrayType([invoice], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); t1.get$_dispatchers()[0].call$1(new A.SaveInvoiceRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), invoice, t4)); return t2.then$1$1(0, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure3(invoice, t3, state, t1, $navigator, t4), type$.Null).catchError$1(new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4()); } }, $signature: 37 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure0.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 24 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1.prototype = { call$1(context) { var t2, _s24_ = "error_cross_client_tasks", t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s24_); return new A.ErrorDialog(t1 == null ? J.$index$asx(t2.$index(0, "en"), _s24_) : t1, false, null); }, $signature: 24 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure2.prototype = { call$1(context) { var t2, _s27_ = "error_cross_client_expenses", t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s27_); return new A.ErrorDialog(t1 == null ? J.$index$asx(t2.$index(0, "en"), _s27_) : t1, false, null); }, $signature: 24 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure3.prototype = { call$1(savedInvoice) { var _this = this, _null = null, _s13_ = "/invoice/view", t1 = _this.invoice, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_invoice"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedInvoice(); A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedInvoice); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedInvoice, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_invoice) && t2.editAfterSaving) A.editEntity(_null, savedInvoice, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedInvoice], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedInvoice], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedInvoice, _null, true); } }, $signature: 64 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.InvoiceEditVM_InvoiceEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.InvoiceEditVM_InvoiceEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.InvoiceEditVM_InvoiceEditVM$fromStore_closure0.prototype = { call$3(items, clientId, projectId) { var t1, t2, _this = this; if ((clientId == null ? "" : clientId).length === 0) t1 = (projectId == null ? "" : projectId).length !== 0; else t1 = true; if (t1) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = _this.invoice.rebuild$1(new A.InvoiceEditVM_InvoiceEditVM$fromStore__closure(clientId, projectId, t1.userCompanyStates._list[t2].clientState.$get$1(0, clientId))); _this.store.get$_dispatchers()[0].call$1(new A.UpdateInvoice(t2)); } t1 = _this.store; t1.get$_dispatchers()[0].call$1(new A.AddInvoiceItems(items)); if (items.length === 1) { t2 = _this.invoice.lineItems._list.length; t1.get$_dispatchers()[0].call$1(new A.EditInvoiceItem(t2)); } }, $signature: 271 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure.prototype = { call$1(b) { var t2, t3, t1 = this.clientId; if (t1 == null) t1 = ""; b.get$_invoice_model$_$this()._clientId = t1; t1 = this.projectId; if (t1 == null) t1 = ""; b.get$_invoice_model$_$this()._projectId = t1; t1 = b.get$invitations(); t2 = this.client.get$emailContacts(); t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,InvitationEntity*>"); t1.replace$1(0, A.BuiltList_BuiltList$from(A.List_List$of(new A.MappedListIterable(t2, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure(), t3), true, t3._eval$1("ListIterable.E")), type$.legacy_InvitationEntity)); return b; }, $signature: 6 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, $signature: 185 }; A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1.prototype = { call$1(context) { var _null = null, t1 = this.state.uiState; if (B.JSArray_methods.contains$1(A._setArrayType(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) A.viewEntitiesByType(B.EntityType_invoice, _null); else { A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), true); t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.InvoiceItemSelector.prototype = { createState$0() { var t1 = A._setArrayType([], type$.JSArray_legacy_BaseEntity); return new A._InvoiceItemSelectorState(t1, new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), null, null, B._StateLifecycle_0); }, onItemsSelected$1(arg0) { return this.onItemsSelected.call$1(arg0); }, onItemsSelected$3(arg0, arg1, arg2) { return this.onItemsSelected.call$3(arg0, arg1, arg2); } }; A._InvoiceItemSelectorState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._filterClientId = _this._widget.clientId; _this._invoice_item_selector$_tabController = A.TabController$(null, 0, 3, _this); }, dispose$0(_) { var t1 = this._invoice_item_selector$_textController; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this._invoice_item_selector$_tabController.dispose$0(0); this.super$__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin$dispose(0); }, _onItemsSelected$1(context) { var _this = this, t1 = {}, items = A._setArrayType([], type$.JSArray_legacy_InvoiceItemEntity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, company = t2._list[t3].userCompany.company; t1.projectId = null; B.JSArray_methods.forEach$1(_this._invoice_item_selector$_selected, new A._InvoiceItemSelectorState__onItemsSelected_closure(t1, _this, items, company, state, context)); _this._updateClientId$0(); _this._widget.onItemsSelected$3(items, _this._filterClientId, t1.projectId); A.Navigator_of(context, false).pop$1(0, null); }, _toggleEntity$1(entity) { this.setState$1(new A._InvoiceItemSelectorState__toggleEntity_closure(this, entity)); }, _updateClientId$0() { var t1, _this = this, selected = B.JSArray_methods.firstWhere$2$orElse(_this._invoice_item_selector$_selected, new A._InvoiceItemSelectorState__updateClientId_closure(), new A._InvoiceItemSelectorState__updateClientId_closure0()); if (selected != null) { type$.legacy_BelongsToClient._as(selected); _this._filterClientId = selected.get$clientId(selected); } else { t1 = _this._widget.clientId; if (t1.length === 0) _this._filterClientId = null; } }, build$1(_, context) { var company, showTabBar, t4, products, t5, tasks, expenses, tabs, tabViews, t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; company = t2[t3].userCompany.company; if (_this._widget.showTasksAndExpenses) showTabBar = company.isModuleEnabled$1(B.EntityType_task) || company.isModuleEnabled$1(B.EntityType_expense); else showTabBar = false; t4 = J.where$1$ax($.$get$memoizedProductList().call$1(t2[t3].productState.map), new A._InvoiceItemSelectorState_build_closure(_this, state)); products = A.List_List$of(t4, true, t4.$ti._eval$1("Iterable.E")); t4 = $.$get$memoizedTaskList(); t5 = t2[t3]; t5 = J.where$1$ax(t4.call$5(t5.taskState.map, _this._filterClientId, t5.userState.map, t5.clientState.map, t5.projectState.map), new A._InvoiceItemSelectorState_build_closure0(_this, state)); tasks = A.List_List$of(t5, true, t5.$ti._eval$1("Iterable.E")); t3 = J.where$1$ax($.$get$memoizedClientExpenseList().call$2(t2[t3].expenseState.map, _this._filterClientId), new A._InvoiceItemSelectorState_build_closure1(_this, state)); expenses = A.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")); t3 = t1.get$products(); t2 = products.length; t4 = type$.JSArray_legacy_Widget; tabs = A._setArrayType([A.Tab$(_null, t3 + (t2 !== 0 ? " (" + t2 + ")" : ""))], t4); tabViews = A._setArrayType([new A._InvoiceItemSelectorState_build__productList(_this, products, state).call$0()], t4); if (company.isModuleEnabled$1(B.EntityType_task)) { t2 = t1.get$tasks(); t3 = tasks.length; tabs.push(A.Tab$(_null, t2 + (t3 !== 0 ? " (" + t3 + ")" : ""))); tabViews.push(new A._InvoiceItemSelectorState_build__taskList(_this, tasks, state).call$0()); } if (company.isModuleEnabled$1(B.EntityType_expense)) { t2 = t1.get$expenses(); t3 = expenses.length; tabs.push(A.Tab$(_null, t2 + (t3 !== 0 ? " (" + t3 + ")" : ""))); tabViews.push(new A._InvoiceItemSelectorState_build__expenseList(_this, expenses, state).call$0()); } t2 = A.Icon$(B.IconData_58727_MaterialIcons_null_false, _null, _null); t3 = _this._invoice_item_selector$_selected; t5 = A.Expanded$(A.TextField$(true, B.List_empty0, true, _null, _this._invoice_item_selector$_textController, _null, _null, _null, 2, A.InputDecoration$(_null, B._NoInputBorder_sqK, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.length === 0 ? t1.get$filter(t1) : B.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", "" + t3.length), _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, _null, _null, _null, 1, _null, _null, false, "\u2022", new A._InvoiceItemSelectorState_build_closure2(_this), _null, _null, _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, B.TextCapitalization_3, _null, _null, _null), 1); t6 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null), _null, new A._InvoiceItemSelectorState_build_closure3(_this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null); if (t3.length !== 0) t1 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57686_MaterialIcons_null_false, _null, _null), _null, new A._InvoiceItemSelectorState_build_closure4(_this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null); else t1 = !state.prefState.isEditorFullScreen$1(B.EntityType_invoice) ? A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new A._InvoiceItemSelectorState_build_closure5(_this, company), B.EdgeInsets_8_8_8_8, _null, t1.get$createNew(), _null) : new A.SizedBox(_null, _null, _null, _null); t1 = A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_10_0_10_0, t2, _null), t5, A.Row$(A._setArrayType([t6, t1], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t2 = showTabBar ? new A.AppTabBar(tabs, _this._invoice_item_selector$_tabController, false, _null, _null) : new A.SizedBox(_null, _null, _null, _null); return new A.ResponsivePadding(A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([t1, t2, A.Expanded$(showTabBar ? A.TabBarView$(tabViews, _this._invoice_item_selector$_tabController, _null) : B.JSArray_methods.get$first(tabViews), 1)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), B.Clip_0, _null, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null); } }; A._InvoiceItemSelectorState__onItemsSelected_closure.prototype = { call$1(entity) { var t1, t2, t3, t4, _this = this; if (entity.get$entityType() === B.EntityType_product) { type$.legacy_ProductEntity._as(entity); t1 = _this.state; t2 = t1.uiState; t3 = t2.invoiceUIState.editing; t4 = t1.staticState.currencyMap; t2 = t2.selectedCompanyIndex; _this.items.push(A.convertProductToInvoiceItem(t1.userCompanyStates._list[t2].clientState.$get$1(0, _this.$this._widget.clientId), _this.company, t4, t3, entity)); } else if (entity.get$entityType() === B.EntityType_task) { type$.legacy_TaskEntity._as(entity); t1 = _this._box_0; if (t1.projectId == null) t1.projectId = entity.projectId; _this.items.push(A.convertTaskToInvoiceItem(_this.context, false, entity)); } else if (entity.get$entityType() === B.EntityType_expense) _this.items.push(A.convertExpenseToInvoiceItem(_this.context, type$.legacy_ExpenseEntity._as(entity))); }, $signature: 145 }; A._InvoiceItemSelectorState__toggleEntity_closure.prototype = { call$0() { var t2, t3, t1 = this.$this; t1._invoice_item_selector$_filter = ""; t1._invoice_item_selector$_textController.set$text(0, ""); t2 = t1._invoice_item_selector$_selected; t3 = this.entity; if (B.JSArray_methods.contains$1(t2, t3)) B.JSArray_methods.remove$1(t2, t3); else t2.push(t3); t1._updateClientId$0(); }, $signature: 1 }; A._InvoiceItemSelectorState__updateClientId_closure.prototype = { call$1(entity) { var t1; if (type$.legacy_BelongsToClient._is(entity)) { t1 = entity.get$clientId(entity); t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = false; return t1; }, $signature: 171 }; A._InvoiceItemSelectorState__updateClientId_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A._InvoiceItemSelectorState_build_closure.prototype = { call$1(entityId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, entity = t1.userCompanyStates._list[t2].productState.map._map$_map.$index(0, entityId); return !entity.get$isArchived() && !entity.isDeleted && entity.matchesFilter$1(this.$this._invoice_item_selector$_filter); }, $signature: 16 }; A._InvoiceItemSelectorState_build_closure0.prototype = { call$1(entityId) { var task, client, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; task = t1[t2].taskState.$get$1(0, entityId); client = t1[t2].clientState.$get$1(0, task.clientId); t1 = this.$this; t2 = B.JSArray_methods.contains$1(t1._widget.excluded, task); if (t2) return false; return task.matchesFilter$1(t1._invoice_item_selector$_filter) || client.matchesNameOrEmail$1(t1._invoice_item_selector$_filter); }, $signature: 16 }; A._InvoiceItemSelectorState_build_closure1.prototype = { call$1(entityId) { var expense, client, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; expense = t1[t2].expenseState.$get$1(0, entityId); client = t1[t2].clientState.$get$1(0, expense.clientId); t1 = this.$this; t2 = B.JSArray_methods.contains$1(t1._widget.excluded, expense); if (t2) return false; return expense.matchesFilter$1(t1._invoice_item_selector$_filter) || client.matchesNameOrEmail$1(t1._invoice_item_selector$_filter); }, $signature: 16 }; A._InvoiceItemSelectorState_build__productList.prototype = { call$0() { var _null = null, t1 = this.products; return new A.ScrollableListViewBuilder(new A._InvoiceItemSelectorState_build__productList_closure(this.$this, t1, this.state), _null, t1.length, _null, _null, _null); }, $signature: 124 }; A._InvoiceItemSelectorState_build__productList_closure.prototype = { call$2(context, index) { var entityId = this.products[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, product = t1.userCompanyStates._list[t2].productState.map._map$_map.$index(0, entityId); t2 = this.$this; return A.ProductListItem$(t2._invoice_item_selector$_filter, B.JSArray_methods.contains$1(t2._invoice_item_selector$_selected, product), false, new A._InvoiceItemSelectorState_build__productList__closure(t2, product), new A._InvoiceItemSelectorState_build__productList__closure0(t2, product, context), product); }, $signature: 728 }; A._InvoiceItemSelectorState_build__productList__closure.prototype = { call$1(checked) { return this.$this._toggleEntity$1(this.product); }, $signature: 40 }; A._InvoiceItemSelectorState_build__productList__closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.product; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, $signature: 1 }; A._InvoiceItemSelectorState_build__taskList.prototype = { call$0() { var _null = null, t1 = this.tasks; return new A.ScrollableListViewBuilder(new A._InvoiceItemSelectorState_build__taskList_closure(this.$this, t1, this.state), _null, t1.length, _null, _null, _null); }, $signature: 124 }; A._InvoiceItemSelectorState_build__taskList_closure.prototype = { call$2(context, index) { var entityId = this.tasks[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, task = t1.userCompanyStates._list[t2].taskState.map._map$_map.$index(0, entityId); t2 = this.$this; return A.TaskListItem$(t2._invoice_item_selector$_filter, B.JSArray_methods.contains$1(t2._invoice_item_selector$_selected, task), false, new A._InvoiceItemSelectorState_build__taskList__closure(t2, task), new A._InvoiceItemSelectorState_build__taskList__closure0(t2, task, context), true, task); }, $signature: 322 }; A._InvoiceItemSelectorState_build__taskList__closure.prototype = { call$1(checked) { return this.$this._toggleEntity$1(this.task); }, $signature: 40 }; A._InvoiceItemSelectorState_build__taskList__closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.task; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, $signature: 1 }; A._InvoiceItemSelectorState_build__expenseList.prototype = { call$0() { var _null = null, t1 = this.expenses; return new A.ScrollableListViewBuilder(new A._InvoiceItemSelectorState_build__expenseList_closure(this.$this, t1, this.state), _null, t1.length, _null, _null, _null); }, $signature: 124 }; A._InvoiceItemSelectorState_build__expenseList_closure.prototype = { call$2(context, index) { var _null = null, entityId = this.expenses[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, expense = t1.userCompanyStates._list[t2].expenseState.map._map$_map.$index(0, entityId); if (expense == null) expense = A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); t1 = this.$this; t2 = B.JSArray_methods.contains$1(t1._invoice_item_selector$_selected, expense); return A.ExpenseListItem$(expense, t1._invoice_item_selector$_filter, t2, false, new A._InvoiceItemSelectorState_build__expenseList__closure(t1, expense), new A._InvoiceItemSelectorState_build__expenseList__closure0(t1, expense, context), true); }, $signature: 451 }; A._InvoiceItemSelectorState_build__expenseList__closure.prototype = { call$1(checked) { return this.$this._toggleEntity$1(this.expense); }, $signature: 40 }; A._InvoiceItemSelectorState_build__expenseList__closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.expense; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, $signature: 1 }; A._InvoiceItemSelectorState_build_closure2.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoiceItemSelectorState_build__closure0(t1, value)); }, $signature: 11 }; A._InvoiceItemSelectorState_build__closure0.prototype = { call$0() { this.$this._invoice_item_selector$_filter = this.value; }, $signature: 1 }; A._InvoiceItemSelectorState_build_closure3.prototype = { call$0() { var t1 = this.$this; if (t1._invoice_item_selector$_textController._change_notifier$_value.text.length !== 0) t1.setState$1(new A._InvoiceItemSelectorState_build__closure(t1)); else A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; A._InvoiceItemSelectorState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._invoice_item_selector$_textController.set$text(0, ""); t1._invoice_item_selector$_filter = ""; }, $signature: 1 }; A._InvoiceItemSelectorState_build_closure4.prototype = { call$0() { return this.$this._onItemsSelected$1(this.context); }, $signature: 0 }; A._InvoiceItemSelectorState_build_closure5.prototype = { call$0() { var t1 = this.$this, t2 = this.company, t3 = t1._widget; t3.toString; t3.onItemsSelected$1(A._setArrayType([A.InvoiceItemEntity_InvoiceItemEntity(null, t2.defaultQuantity || !t2.enableProductQuantity ? 1 : 0)], type$.JSArray_legacy_InvoiceItemEntity)); t1 = t1._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$1(0, null); return null; }, $signature: 0 }; A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InvoiceEmailScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceEmailScreen_build_closure(), new A.InvoiceEmailScreen_build_closure0(), _null, _null, new A.InvoiceEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailInvoiceVM); } }; A.InvoiceEmailScreen_build_closure1.prototype = { call$1(store) { var invoice, client, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoiceId = t1.invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; invoice = t2[t1].invoiceState.$get$1(0, invoiceId); client = t2[t1].clientState.$get$1(0, invoice.clientId); if (client.get$isStale()) { t1 = client.id; store.get$_dispatchers()[0].call$1(new A.LoadClient(null, t1)); } }, $signature: 435 }; A.InvoiceEmailScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoiceId = t1.invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return A.EmailInvoiceVM_EmailInvoiceVM$fromStore(store, t2._list[t1].invoiceState.$get$1(0, invoiceId)); }, $signature: 2439 }; A.InvoiceEmailScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoiceEmailView(vm, new A.ValueKey("__invoice_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2440 }; A.EmailEntityVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; }, get$vendor(receiver) { return this.vendor; } }; A.EmailInvoiceVM.prototype = {}; A.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure.prototype = { call$4(context, template, subject, body) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedInvoice(), A.getLayout(context) === B.AppLayout_mobile, t1); if (A.getLayout(context) !== B.AppLayout_mobile) completer.future.then$1$1(0, new A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure(this.invoice), t1); this.store.get$_dispatchers()[0].call$1(new A.EmailInvoiceRequest(completer, this.invoice.id, template, subject, body)); }, $signature: 295 }; A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure.prototype = { call$1(value) { A.viewEntity(false, this.invoice, null, false); }, $signature: 3 }; A.InvoiceListItem.prototype = { build$1(_, context) { var t5, client, invoiceUIState, listUIState, t6, isInMultiselect, t7, t8, isChecked, textStyle, t9, filterMatch, statusLabel, statusColor, textColor, subtitle, _this = this, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = _this.invoice; client = t2[t4].clientState.$get$1(0, t5.clientId); invoiceUIState = t3.invoiceUIState; listUIState = state.getUIState$1(t5.entityType).get$listUIState(); t6 = _this.showCheckbox; isInMultiselect = t6 && listUIState.selectedIds != null; if (isInMultiselect) { t7 = t5.id; t8 = listUIState.selectedIds; isChecked = t8 != null && B.JSArray_methods.contains$1(t8._list, t7); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t7 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t8 = _this.filter; if (t8 != null && t8.length !== 0) { t9 = t5.matchesFilterValue$1(t8); filterMatch = t9 == null ? client.matchesFilterValue$1(t8) : t9; } else filterMatch = _null; statusLabel = t7.lookup$1(B.Map_j34mP.$index(0, t5.get$calculatedStatusId())); statusColor = new A.InvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t5.get$calculatedStatusId()); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; t8 = t5.date; if (t8.length !== 0) { subtitle = A.formatDate(t8, context, true, true, false); t1.subtitle = subtitle; t8 = subtitle; } else t8 = ""; t9 = t5.partialDueDate; if (t9.length !== 0 && t5.partial !== 0) { if (t8.length !== 0) t8 = t1.subtitle = t8 + " \u2022 "; t1.subtitle = t8 + A.formatDate(t9, context, true, true, false); } else { t9 = t5.dueDate; if (t9.length !== 0) { if (t8.length !== 0) t8 = t1.subtitle = t8 + " \u2022 "; t1.subtitle = t8 + A.formatDate(t9, context, true, true, false); } } if (A.getLayout(context) === B.AppLayout_desktop) { t8 = t5.id; t8 = t8 === (t3.get$isEditing() ? invoiceUIState.editing.id : invoiceUIState.selectedId); t3 = t8; } else t3 = false; return new A.DismissibleEntity(t2[t4].userCompany, t5, new A.LayoutBuilder(new A.InvoiceListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, t7, textStyle, filterMatch, textColor, statusLabel, statusColor), _null), t3, t6, true, _null); }, get$invoice() { return this.invoice; } }; A.InvoiceListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.InvoiceListItem_build__closure(), _null, _null, false, _this.isChecked), _null); else { t2 = t1.invoice; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.InvoiceListItem_build__closure0(t1)); t2 = t4; } t3 = t1.invoice; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = _this.client; t8 = t7.displayName; t8 = A.Text$(t8 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.subtitle; t10 = _this.textColor; t10 = A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t8 = t3.balance; t8 = t8 > 0 ? t8 : t3.amount; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), t10, new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t8, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.InvoiceListItem_build__closure1(t1), new A.InvoiceListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.InvoiceListItem_build__closure3(), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = A.Expanded$(A.Text$(_this.client.displayName, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1); t5 = t1.invoice; t6 = t5.balance; t6 = t6 > 0 ? t6 : t5.amount; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([t4, new A.SizedBox(4, _null, _null, _null), A.Text$(A.formatNumber(t6, context, t5.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t4 = _this.filterMatch; if (t4 == null) { t4 = t5.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t6 = A.formatDate(t5.get$primaryDate(), context, true, true, false); t8 = t5.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(B.JSString_methods.trim$0(t4 + " \u2022 " + t6 + t8), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = t8; } else t4 = A.Text$(t4, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t4 = A.Expanded$(t4, 1); t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.InvoiceListItem_build__closure4(t1), new A.InvoiceListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([t4, A.Text$(_this.statusLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t5.statusId === "1" ? _this.textColor : _this.statusColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t5, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.InvoiceListItem_build__closure2.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.invoice, !t1.showCheckbox, false); }, $signature: 0 }; A.InvoiceListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, true); }, $signature: 0 }; A.InvoiceListItem_build__closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A.InvoiceListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.invoice], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.InvoiceListItem_build__closure5.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.invoice, !t1.showCheckbox, false); }, $signature: 0 }; A.InvoiceListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, true); }, $signature: 0 }; A.InvoiceListItem_build__closure3.prototype = { call$1(value) { return null; }, $signature: 20 }; A.InvoiceListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceListBuilder_build_closure(), A.invoice_list_vm_InvoiceListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceListVM); } }; A.InvoiceListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_invoice, new A.InvoiceListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.InvoicePresenter(), t2, t4); }, $signature: 2441 }; A.InvoiceListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, invoiceId = J.$index$asx(t1.invoiceList, index); return new A.InvoiceListItem(t1.invoiceMap._map$_map.$index(0, invoiceId), t1.filter, true, null); }, $signature: 439 }; A.EntityListVM.prototype = {}; A.InvoiceListVM.prototype = {}; A.InvoiceListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.InvoiceListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.InvoiceListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortInvoices(field)); }, $signature: 5 }; A.InvoiceListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearInvoiceMultiselect()); }, $signature: 9 }; A.InvoicePdfView.prototype = { createState$0() { return new A._InvoicePdfViewState(B._StateLifecycle_0); } }; A._InvoicePdfViewState.prototype = { initState$0() { this.super$State$initState(); this._invoice_pdf$_activityId = this._widget.viewModel.activityId; }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, loadPdf$0() { var t1, _this = this; _this.setState$1(new A._InvoicePdfViewState_loadPdf_closure(_this)); t1 = _this._framework$_element; t1.toString; A._loadPDF(t1, _this._widget.viewModel.invoice, _this._isDeliveryNote, _this._invoice_pdf$_activityId).then$1$1(0, new A._InvoicePdfViewState_loadPdf_closure0(_this), type$.Null).catchError$1(new A._InvoicePdfViewState_loadPdf_closure1(_this)); }, build$1(_, context) { var activitySelector, t4, t5, showEmail, t6, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), invoice = _this._widget.viewModel.invoice, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, client = t2._list[t3].clientState.$get$1(0, invoice.clientId); t2 = type$.JSArray_legacy_Widget; activitySelector = A._setArrayType([], t2); t3 = A.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "delivery_note"); if (t4 == null) t4 = ""; t4 = A.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t5 = _this._isDeliveryNote; t5 = A.Container$(_null, A.CheckboxListTile$(state.get$accentColor(), _null, B.ListTileControlAffinity_0, _null, _null, new A._InvoicePdfViewState_build_closure(_this), t4, t5), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 200); showEmail = A.getLayout(context) === B.AppLayout_desktop && _this._invoice_pdf$_activityId == null && !B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), invoice.entityType); t4 = client.get$hasEmailAddress(); if (!t4) showEmail = false; if (_this._widget.showAppBar) { t4 = A.getLayout(context); t6 = new A.EntityPresenter(); t6.entity = invoice; t6.context = context; t6 = A._setArrayType([A.Expanded$(A.Text$(t6.title$0(0), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t2); if (A.getLayout(context) === B.AppLayout_desktop) B.JSArray_methods.addAll$1(t6, activitySelector); if (A.getLayout(context) === B.AppLayout_desktop && invoice.entityType === B.EntityType_invoice && _this._invoice_pdf$_activityId == null) t6.push(new A.Theme(t3, t5, _null)); t3 = A.Row$(t6, B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); t2 = A._setArrayType([], t2); if (showEmail) t2.push(A.TextButton$(false, A.Text$(t1.get$email(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A._InvoicePdfViewState_build_closure0(invoice), _null)); if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), invoice.entityType)) { t5 = t1.get$download(t1); t2.push(new A.AppTextButton(t5, _this._invoice_pdf$_response == null ? _null : new A._InvoicePdfViewState_build_closure1(_this, invoice, t1), true, _null, _null)); } if (A.getLayout(context) === B.AppLayout_desktop) t2.push(A.TextButton$(false, A.Text$(t1.get$close(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, new A._InvoicePdfViewState_build_closure2(invoice), _null)); t1 = A.AppBar$(t2, _null, t4 === B.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); } else t1 = _null; if (_this._invoice_pdf$_isLoading || _this._invoice_pdf$_response == null) t2 = new A.LoadingIndicator(_null, false, _null); else t2 = new A.HtmlElementView(_this._invoice_pdf$_pdfString, _null); return A.Scaffold$(t1, B.Color_4292927712, t2, _null, _null, _null, _null, _null); } }; A._InvoicePdfViewState_loadPdf_closure.prototype = { call$0() { this.$this._invoice_pdf$_isLoading = true; }, $signature: 1 }; A._InvoicePdfViewState_loadPdf_closure0.prototype = { call$1(response) { return this.$call$body$_InvoicePdfViewState_loadPdf_closure(response); }, $call$body$_InvoicePdfViewState_loadPdf_closure(response) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t1.setState$1(new A._InvoicePdfViewState_loadPdf__closure(t1, response)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 773 }; A._InvoicePdfViewState_loadPdf__closure.prototype = { call$0() { var t1 = this.$this, t2 = this.response; t1._invoice_pdf$_response = t2; t1._invoice_pdf$_isLoading = false; t2 = t2.bodyBytes; t2 = "data:application/pdf;base64," + B.C_Base64Codec.get$encoder().convert$1(t2); t1._invoice_pdf$_pdfString = t2; A.WebUtils_registerWebView(t2); }, $signature: 1 }; A._InvoicePdfViewState_loadPdf_closure1.prototype = { call$1(error) { this.$this._invoice_pdf$_isLoading = false; }, $signature: 3 }; A._InvoicePdfViewState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoicePdfViewState_build__closure(t1)); }, $signature: 20 }; A._InvoicePdfViewState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._isDeliveryNote = !t1._isDeliveryNote; t1.loadPdf$0(); }, $signature: 1 }; A._InvoicePdfViewState_build_closure0.prototype = { call$0() { A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_sendEmail, false); }, $signature: 1 }; A._InvoicePdfViewState_build_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t3, t4, t1, t2; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = $async$self.invoice; if (t1._invoice_pdf$_response == null) { t1 = t2.invitations._list; A.launch(t1.length === 0 ? "" : B.JSArray_methods.get$first(t1).link + "/download?t=" + Date.now(), null, false); } else { t3 = $async$self.localization; t4 = J.$add$ansx(t3.lookup$1(A.S(t2.entityType)), "_"); t2 = t2.number; if (t2.length === 0) t2 = t3.get$pending(t3); A.WebUtils_downloadBinaryFile(t4 + t2 + ".pdf", t1._invoice_pdf$_response.bodyBytes); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._InvoicePdfViewState_build_closure2.prototype = { call$0() { A.viewEntity(false, this.invoice, null, false); }, $signature: 1 }; A.InvoicePdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoicePdfScreen_build_closure(this), new A.InvoicePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoicePdfVM); } }; A.InvoicePdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoiceUIState = t1.invoiceUIState, invoiceId = invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.InvoicePdfVM(state, t2._list[t1].invoiceState.$get$1(0, invoiceId), invoiceUIState.historyActivityId); }, $signature: 2442 }; A.InvoicePdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoicePdfView(vm, this.$this.showAppBar, new A.ValueKey("__invoice_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2443 }; A.EntityPdfVM.prototype = { get$invoice() { return this.invoice; } }; A.InvoicePdfVM.prototype = {}; A.InvoicePresenter.prototype = { getField$2$context$field(context, field) { var t4, t5, client, contact, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), invoice = type$.legacy_InvoiceEntity._as(_this.entity), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].clientState; t5 = invoice.clientId; client = t4.$get$1(0, t5); switch (field) { case "status": return A.EntityStatusChip$(invoice, true, 105); case "number": t2 = invoice.number; return A.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return new A.LinkTextRelatedEntity(client, invoice, _null); case "project": return new A.LinkTextRelatedEntity(t2[t3].projectState.$get$1(0, invoice.projectId), invoice, _null); case "vendor": return new A.LinkTextRelatedEntity(t2[t3].vendorState.$get$1(0, invoice.vendorId), invoice, _null); case "date": return A.Text$(A.formatDate(invoice.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return A.Text$(A.formatDate(invoice.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "next_send_date": return A.Text$(invoice.entityType === B.EntityType_invoice && invoice.statusId === "4" ? "" : A.formatDate(invoice.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder1_sent": return A.Text$(A.formatDate(invoice.reminder1Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder2_sent": return A.Text$(A.formatDate(invoice.reminder2Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder3_sent": return A.Text$(A.formatDate(invoice.reminder3Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder_last_sent": return A.Text$(A.formatDate(invoice.reminderLastSent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(invoice.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "balance": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(invoice.statusId !== "1" ? invoice.balance : invoice.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "due_date": return A.Text$(A.formatDate(invoice.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, invoice.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, invoice.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, invoice.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, invoice.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(invoice.publicNotes, _null); case "private_notes": return new A.TableTooltip(invoice.privateNotes, _null); case "discount": t1 = invoice.isAmountDiscount; t2 = invoice.discount; return A.Text$(t1 ? A.formatNumber(t2, context, t5, _null, B.FormatNumberType_0, true, _null, false) : A.formatNumber(t2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return A.Text$(invoice.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + invoice.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(invoice.taxAmount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(invoice.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return A.Text$(invoice.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "auto_bill_enabled": return A.Text$(t1.lookup$1(invoice.autoBillEnabled ? t1.get$yes() : t1.get$no()), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_state": return A.Text$(client.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_city": return A.Text$(client.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_postal_code": return A.Text$(client.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": case "contact_email": contact = A.invoiceContactSelector(invoice, t2[t3].clientState.$get$1(0, t5)); if (contact == null) return new A.SizedBox(_null, _null, _null, _null); if (field === "contact_name") return A.Text$(contact.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.CopyToClipboard(_null, contact.email, true, new A.InvoicePresenter_getField_closure(contact), _null, _null); case "partial_due": return A.Text$(A.formatNumber(invoice.partial, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "partial_due_date": return A.Text$(A.formatDate(invoice.partialDueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "quote": return new A.LinkTextRelatedEntity($.$get$memoizedInvoiceQuoteSelector().call$2(invoice, t2[t3].quoteState.map), invoice, _null); case "recurring_invoice": return new A.LinkTextRelatedEntity(t2[t3].recurringInvoiceState.$get$1(0, invoice.recurringId), invoice, _null); case "last_sent_template": t2 = invoice.reminderLastSent; if (t2.length !== 0 && t2 != invoice.reminder3Sent) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "endless_reminder"); return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); } else { t2 = invoice.reminder3Sent; if ((t2 == null ? "" : t2).length !== 0) return A.Text$(t1.get$thirdReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t2 = invoice.reminder2Sent; if ((t2 == null ? "" : t2).length !== 0) return A.Text$(t1.get$secondReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t2 = invoice.reminder1Sent; if ((t2 == null ? "" : t2).length !== 0) return A.Text$(t1.get$firstReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t2 = invoice.lastSentDate; if (t2.length !== 0) return A.Text$(t1.get$initialEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); else return A.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null); } } } } } return _this.super$EntityPresenter$getField(context, field); } }; A.InvoicePresenter_getField_closure.prototype = { call$0() { return A.launch("mailto:" + this.contact.email, null, false); }, $signature: 26 }; A.InvoiceScreen.prototype = { build$1(_, context) { var userCompany, statuses, t4, t5, t6, t7, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, company = t1._list[t3].userCompany.company; t3 = A._lateReadCheck(store.__Store__state, "_state"); t1 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); statuses = A._setArrayType([A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure0(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure1(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure2(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure3(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure4(t3)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.InvoiceScreen_build_closure5(t3))], type$.JSArray_legacy_InvoiceStatusEntity); t2 = t2.invoiceUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.invoiceList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType(["status", "number", "client", "amount", "balance", "date", "due_date"], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("reminder1_sent"); t6.push("reminder2_sent"); t6.push("reminder3_sent"); t6.push("reminder_last_sent"); t6.push("exchange_rate"); t6.push("is_viewed"); t6.push("auto_bill_enabled"); t6.push("last_sent_date"); t6.push("last_sent_template"); t6.push("next_send_date"); t6.push("project"); t6.push("vendor"); t6.push("contact_name"); t6.push("contact_email"); t6.push("client_state"); t6.push("client_city"); t6.push("client_postal_code"); t6.push("client_country"); t6.push("partial_due"); t6.push("partial_due_date"); t6.push("quote"); t6.push("recurring_invoice"); t7 = A._setArrayType(["status", "number", "client", "amount", "balance", "date", "due_date"], t5); t5 = A._setArrayType(["number", "date", "due_date", "updated_at"], t5); t6 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, B.EntityType_invoice, false, B.List_empty17, new A.InvoiceScreen_build_closure6(store), new A.InvoiceScreen_build_closure7(store), new A.InvoiceScreen_build_closure8(store), new A.InvoiceScreen_build_closure9(store), new A.InvoiceScreen_build_closure10(store), new A.InvoiceScreen_build_closure11(store), new A.InvoiceScreen_build_closure12(store), new A.InvoiceScreen_build_closure13(store), t5, statuses, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_invoice) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "invoice_fab", false, new A.InvoiceScreen_build_closure14(context), t3.get$newInvoice()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_invoice, t2, new A.InvoiceScreen_build_closure15(store), t4, statuses, new A.InvoiceScreen_build_closure16(store), new A.InvoiceScreen_build_closure17(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.InvoiceListBuilder(_null), t6, B.EntityType_invoice, t3, 0, _null, new A.InvoiceScreen_build_closure18(store), new A.InvoiceScreen_build_closure19(store)); } }; A.InvoiceScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization.get$sent(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure1.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-3"; t1 = this.localization.get$viewed(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure2.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "partial"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure3.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "4"; t1 = this.localization.get$paid(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure4.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-2"; t1 = this.localization.get$unpaid(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure5.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "past_due"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.InvoiceScreen_build_closure19.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartInvoiceMultiselect()); }, $signature: 9 }; A.InvoiceScreen_build_closure15.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterInvoices(value)); }, $signature: 11 }; A.InvoiceScreen_build_closure17.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByState(state)); }, $signature: 27 }; A.InvoiceScreen_build_closure16.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByStatus($status)); }, $signature: 115 }; A.InvoiceScreen_build_closure18.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.invoiceUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearInvoiceMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartInvoiceMultiselect()); }, $signature: 1 }; A.InvoiceScreen_build_closure11.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortInvoices(value)); }, $signature: 11 }; A.InvoiceScreen_build_closure12.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByState(state)); }, $signature: 27 }; A.InvoiceScreen_build_closure13.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByStatus($status)); }, $signature: 115 }; A.InvoiceScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByCustom1(value)); }, $signature: 5 }; A.InvoiceScreen_build_closure8.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByCustom2(value)); }, $signature: 5 }; A.InvoiceScreen_build_closure9.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByCustom3(value)); }, $signature: 5 }; A.InvoiceScreen_build_closure10.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterInvoicesByCustom4(value)); }, $signature: 5 }; A.InvoiceScreen_build_closure6.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.invoiceUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearInvoiceMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartInvoiceMultiselect()); }, $signature: 1 }; A.InvoiceScreen_build_closure14.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_invoice); }, $signature: 1 }; A.InvoiceScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceScreenBuilder_build_closure(), A.invoice_screen_vm_InvoiceScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceScreenVM); } }; A.InvoiceScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.InvoiceScreen(vm, null); }, $signature: 2445 }; A.InvoiceScreenVM.prototype = {}; A.InvoiceView.prototype = { createState$0() { return new A._InvoiceViewState(null, null, B._StateLifecycle_0); } }; A._InvoiceViewState.prototype = { initState$0() { var t1, invoice, state, tabIndex, t2, _this = this; _this.super$State$initState(); t1 = _this._widget.viewModel; invoice = t1.invoice; state = t1.state; t1 = invoice.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t1)) tabIndex = state.uiState.recurringInvoiceUIState.tabIndex; else if (t1 === B.EntityType_quote) tabIndex = state.uiState.quoteUIState.tabIndex; else if (t1 === B.EntityType_credit) tabIndex = state.uiState.creditUIState.tabIndex; else { t2 = state.uiState; tabIndex = t1 === B.EntityType_purchaseOrder ? t2.purchaseOrderUIState.tabIndex : t2.invoiceUIState.tabIndex; } t1 = A.TabController$(null, _this._widget.isFilter ? 0 : tabIndex, 5, _this); _this._invoice_view$_controller = t1; t1.addListener$1(0, _this.get$_invoice_view$_onTabChanged()); }, _invoice_view$_onTabChanged$0() { var t1, store, t2, _this = this; if (_this._widget.isFilter) return; t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._widget.viewModel.invoice.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t1)) { t1 = _this._invoice_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoiceTab(t1)); } else if (t1 === B.EntityType_quote) { t1 = _this._invoice_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateQuoteTab(t1)); } else if (t1 === B.EntityType_credit) { t1 = _this._invoice_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateCreditTab(t1)); } else { t2 = _this._invoice_view$_controller; if (t1 === B.EntityType_purchaseOrder) { t1 = t2._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrderTab(t1)); } else { t1 = t2._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateInvoiceTab(t1)); } } }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._invoice_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._invoice_view$_controller.removeListener$1(0, _this.get$_invoice_view$_onTabChanged()); _this._invoice_view$_controller.dispose$0(0); _this.super$__InvoiceViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = {}, viewModel = _this._widget.viewModel, invoice = viewModel.invoice, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.secondAction = null; t3 = invoice.entityType; if (t3 === B.EntityType_recurringInvoice) t1.secondAction = B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3) && invoice.statusId === "2" ? B.EntityAction_stop : B.EntityAction_start; else if (t3 === B.EntityType_credit) t1.secondAction = B.EntityAction_applyCredit; else t1.secondAction = B.EntityAction_sendEmail; t4 = _this._widget.isFilter; t5 = _this._invoice_view$_controller; t6 = A.Tab$(_null, t2.get$overview()); t7 = A.Tab$(_null, t2.get$contacts()); t8 = invoice.documents._list; t6 = A._setArrayType([t6, t7, A.Tab$(_null, t8.length === 0 ? t2.get$documents() : t2.get$documents() + " (" + t8.length + ")")], type$.JSArray_legacy_Widget); t7 = type$.JSArray_legacy_EntityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t7), t3)) t6.push(A.Tab$(_null, t2.get$schedule())); if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t7), t3)) t6.push(A.Tab$(_null, t2.get$history(t2))); t6.push(A.Tab$(_null, t2.get$activity())); return new A.ViewScaffold(t4, invoice, new A.Builder(new A._InvoiceViewState_build_closure(t1, _this, viewModel, invoice), _null), _null, A.TabBar$(t5, _null, true, _null, _null, t6), _null); } }; A._InvoiceViewState_build_closure.prototype = { call$1(context) { var t8, t9, _this = this, t1 = _this.viewModel, t2 = _this.$this, t3 = t2._invoice_view$_controller, t4 = t1.invoice, t5 = t4.id, t6 = type$.ValueKey_legacy_String, t7 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.RefreshIndicator$(new A.InvoiceOverview(t1, t2._widget.isFilter, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure(t1, context)), A.RefreshIndicator$(new A.InvoiceViewContacts(t1, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure0(t1, context)), A.RefreshIndicator$(new A.InvoiceViewDocuments(t1, t4, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure1(t1, context))], t7); t2 = _this.invoice; t8 = type$.JSArray_legacy_EntityType; t9 = t2.entityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t8), t9)) t4.push(A.RefreshIndicator$(new A.InvoiceViewSchedule(t1, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure2(t1, context))); if (!B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t8), t9)) t4.push(A.RefreshIndicator$(new A.InvoiceViewHistory(t1, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure3(t1, context))); t4.push(A.RefreshIndicator$(new A.InvoiceViewActivity(t1, new A.ValueKey(t5, t6)), new A._InvoiceViewState_build__closure4(t1, context))); t3 = A.Expanded$(A.TabBarView$(t4, t3, null), 1); t4 = t9 === B.EntityType_invoice; t4 = t4 && t2.statusId === "4" || !t4 ? B.EntityAction_viewPdf : B.EntityAction_newPayment; return A.RefreshIndicator$(A.Column$(A._setArrayType([t3, new A.BottomButtons(t2, t4, _this._box_0.secondAction, true, true, null)], t7), B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), new A._InvoiceViewState_build__closure5(t1, context)); }, $signature: 706 }; A._InvoiceViewState_build__closure5.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure1.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure2.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure3.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._InvoiceViewState_build__closure4.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__InvoiceViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InvoiceViewActivity.prototype = { createState$0() { return new A._InvoiceViewActivityState(B._StateLifecycle_0); } }; A._InvoiceViewActivityState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var _null = null, invoice = this._widget.viewModel.invoice, activities = invoice.activities, t1 = invoice.loadedAt; if (!(t1 != null && t1 > 0)) return new A.LoadingIndicator(_null, false, _null); return new A.ScrollableListViewBuilder(new A._InvoiceViewActivityState_build_closure(activities), new A._InvoiceViewActivityState_build_closure0(), activities._list.length, _null, B.EdgeInsets_0_16_0_16, _null); } }; A._InvoiceViewActivityState_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A._InvoiceViewActivityState_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list[index], false, null); }, $signature: 347 }; A.InvoiceViewContacts.prototype = { build$1(_, context) { var t1 = this.viewModel.invoice.invitations._list, t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,_InvitationListTile*>"); return new A.ScrollableListView(A.List_List$of(new A.MappedListIterable(t1, new A.InvoiceViewContacts_build_closure(this), t2), true, t2._eval$1("ListIterable.E")), null, B.EdgeInsets_8_8_8_8, null); } }; A.InvoiceViewContacts_build_closure.prototype = { call$1(invitation) { return new A._InvitationListTile(invitation, this.$this.viewModel, null); }, $signature: 2447 }; A._InvitationListTile.prototype = { build$1(_, context) { var client, vendor, contact, contactName, icon, t5, t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, state = t2.state, t3 = state.uiState.selectedCompanyIndex, t4 = state.userCompanyStates._list; t2 = t2.invoice; client = t4[t3].clientState.$get$1(0, t2.clientId); vendor = t4[t3].vendorState.$get$1(0, t2.vendorId); if (t2.entityType === B.EntityType_purchaseOrder) { contact = B.JSArray_methods.firstWhere$2$orElse(vendor.contacts._list, new A._InvitationListTile_build_closure(_this), new A._InvitationListTile_build_closure0()); if (contact.get$isNew()) return new A.SizedBox(_null, _null, _null, _null); contactName = contact.get$fullNameOrEmail(); if (contactName.length === 0) contactName = vendor.name; } else { contact = B.JSArray_methods.firstWhere$2$orElse(client.contacts._list, new A._InvitationListTile_build_closure1(_this), new A._InvitationListTile_build_closure2()); if (contact.get$isNew()) return new A.SizedBox(_null, _null, _null, _null); contactName = contact.get$fullNameOrEmail(); if (contactName.length === 0) contactName = client.displayName; } icon = A.Icon$(B.IconData_57743_MaterialIcons_null_false, _null, _null); t2 = _this.invitation; switch (t2.emailStatus) { case "delivered": t3 = A.Icon$(B.IconData_57689_MaterialIcons_null_false, _null, _null); t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "delivered"); icon = A.Tooltip$(t3, t4 == null ? "" : t4); break; case "bounced": t3 = A.Icon$(B.IconData_57911_MaterialIcons_null_false, _null, _null); t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "bounced"); icon = A.Tooltip$(t3, t4 == null ? "" : t4); break; case "spam": t3 = A.Icon$(B.IconData_57911_MaterialIcons_null_false, _null, _null); t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "spam"); icon = A.Tooltip$(t3, t4 == null ? "" : t4); break; } t3 = A.Text$(contactName, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = A._setArrayType([new A.SizedBox(_null, 4, _null, _null)], type$.JSArray_legacy_Widget); t5 = t2.sentDate; if (t5.length !== 0) t4.push(new A.Padding(B.EdgeInsets_0_0_0_4, A.Text$(t1.get$sent() + ": " + A.formatDate(t5, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t5 = t2.openedDate; if (t5.length !== 0) { t1.toString; t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "opened"); if (t6 == null) t6 = ""; t4.push(new A.Padding(B.EdgeInsets_0_0_0_4, A.Text$(t6 + ": " + A.formatDate(t5, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } t5 = t2.viewedDate; if (t5.length !== 0) t4.push(new A.Padding(B.EdgeInsets_0_0_0_4, A.Text$(t1.get$viewed() + ": " + A.formatDate(t5, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t4.push(new A.SizedBox(_null, 8, _null, _null)); t1 = t2.link; t4.push(new A.PortalLinks(t1 + "?silent=true", t1, client, false, _null)); return A.ListTile$(false, new A.EdgeInsets(16, 16, 16, 16), _null, _null, true, _null, _null, true, _null, icon, _null, _null, false, _null, _null, A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } }; A._InvitationListTile_build_closure.prototype = { call$1(contact) { return contact.id === this.$this.invitation.vendorContactId; }, $signature: 194 }; A._InvitationListTile_build_closure0.prototype = { call$0() { return A.VendorContactEntity_VendorContactEntity(); }, $signature: 806 }; A._InvitationListTile_build_closure1.prototype = { call$1(contact) { return contact.id === this.$this.invitation.clientContactId; }, $signature: 144 }; A._InvitationListTile_build_closure2.prototype = { call$0() { return A.ClientContactEntity_ClientContactEntity(); }, $signature: 445 }; A.InvoiceViewDocuments.prototype = { build$1(_, context) { var _this = this, t1 = _this.invoice.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.InvoiceViewDocuments_build_closure(_this, context), new A.InvoiceViewDocuments_build_closure0(_this, context), new A.InvoiceViewDocuments_build_closure1(_this, context), null); }, get$invoice() { return this.invoice; } }; A.InvoiceViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.InvoiceViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.InvoiceViewDocuments_build_closure1.prototype = { call$1($document) { return this.$this.viewModel.onViewExpense.call$2(this.context, $document); }, $signature: 2448 }; A.InvoiceViewHistory.prototype = { createState$0() { return new A._InvoiceViewHistoryState(B._StateLifecycle_0); } }; A._InvoiceViewHistoryState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var t1, t2, activityList, _null = null, viewModel = this._widget.viewModel, invoice = viewModel.invoice; if (!invoice.get$isStale()) { invoice.get$history(invoice); t1 = false; } else t1 = true; if (t1) return new A.LoadingIndicator(_null, false, _null); t1 = invoice.activities._list; t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); activityList = A.List_List$of(new A.WhereIterable(t1, new A._InvoiceViewHistoryState_build_closure(), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(activityList, new A._InvoiceViewHistoryState_build_closure0()); if (activityList.length === 0) { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new A.HelpText(t1.get$noHistory(t1), _null); } return new A.ScrollableListViewBuilder(new A._InvoiceViewHistoryState_build_closure1(activityList, viewModel, invoice), new A._InvoiceViewHistoryState_build_closure2(), invoice.get$history(invoice).length, _null, B.EdgeInsets_0_16_0_16, _null); } }; A._InvoiceViewHistoryState_build_closure.prototype = { call$1(activity) { return activity.history != null; }, $signature: 450 }; A._InvoiceViewHistoryState_build_closure0.prototype = { call$2(a, b) { return B.JSInt_methods.compareTo$1(b.updatedAt, a.updatedAt); }, $signature: 2449 }; A._InvoiceViewHistoryState_build_closure1.prototype = { call$2(context, index) { var personName, t4, _null = null, activity = this.activityList[index], $history = activity.history, t1 = this.viewModel, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, activity.clientId), contact = client.getContact$1(activity.contactId), user = t3[t2].userState.$get$1(0, activity.userId); if (contact != null) personName = contact.get$fullNameOrEmail(); else if (!user.get$isNew()) { personName = user.get$fullName(); if (personName.length === 0) { t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); personName = t2.get$system(t2); } } else personName = client.name; t2 = this.invoice; t3 = A.Text$(B.JSString_methods.$add(J.$add$ansx(A.formatNumber($history.amount, context, t2.clientId, _null, B.FormatNumberType_0, true, _null, false), " \u2022 "), personName), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = $history.createdAt; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._InvoiceViewHistoryState_build__closure(t1, context, t2, $history), false, _null, _null, A.Text$(A.formatDate(A.convertTimestampToDate(t4).toIso8601String$0(), context, true, true, true) + " \u2022 " + A.format(A.convertTimestampToDate(t4), A.localeSelector(state, true)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, A.Icon$(B.IconData_57695_MaterialIcons_null_true, _null, _null), _null); }, $signature: 512 }; A._InvoiceViewHistoryState_build__closure.prototype = { call$0() { var _this = this; return _this.viewModel.onViewPdf.call$3(_this.context, _this.invoice, _this.history.activityId); }, $signature: 9 }; A._InvoiceViewHistoryState_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, $signature: 82 }; A.InvoiceOverview.prototype = { build$1(_, context) { var t5, creditMap, paymentMap, t6, t7, payments, colors, statuses, userCompany, color, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, widgets, dueDateField, t18, t19, relatedInvoice, relatedQuote, _this = this, _null = null, _s4_ = "date", _s8_ = "invoice1", _s8_0 = "invoice2", _s8_1 = "invoice3", _s8_2 = "invoice4", _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, state = t2.state, invoice = t2.invoice, client = t2.client, t3 = state.uiState.selectedCompanyIndex, t4 = state.userCompanyStates._list, vendor = t4[t3].vendorState.$get$1(0, invoice.vendorId), company = t2.company; t2 = type$.legacy_PaymentableEntity; t5 = type$.legacy_PaymentEntity; creditMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t5); paymentMap = A.LinkedHashMap_LinkedHashMap$_empty(t2, t5); t2 = invoice.entityType; t5 = t2 === B.EntityType_invoice; if (t5) { t6 = $.$get$memoizedPaymentsByInvoice(); t7 = t4[t3].paymentState; payments = t6.call$3(invoice.id, t7.map, t7.list); } else if (t2 === B.EntityType_credit) { t6 = $.$get$memoizedPaymentsByCredit(); t7 = t4[t3].paymentState; t7 = t6.call$3(invoice.id, t7.map, t7.list); payments = t7; } else { t6 = A._setArrayType([], type$.JSArray_legacy_PaymentEntity); payments = t6; } J.forEach$1$ax(payments, new A.InvoiceOverview_build_closure(invoice, paymentMap, creditMap)); t6 = t2 === B.EntityType_quote; if (t6) { colors = new A.QuoteStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = B.Map_IF4bq; } else if (t2 === B.EntityType_credit) { colors = new A.CreditStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = B.Map_qBa3g; } else if (t2 === B.EntityType_recurringInvoice) { colors = new A.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = B.Map_BzEVk; } else { t7 = state.prefState; if (t2 === B.EntityType_purchaseOrder) { colors = new A.PurchaseOrderStatusColors(t7.get$colorThemeModel()).get$colors(); statuses = B.Map_EH27z; } else { colors = new A.InvoiceStatusColors(t7.get$colorThemeModel()).get$colors(); statuses = B.Map_j34mP; } } userCompany = t4[t3].userCompany; color = colors.$index(0, invoice.get$calculatedStatusId()); t7 = t1.lookup$1(statuses.$index(0, invoice.get$calculatedStatusId())); t8 = t2 === B.EntityType_purchaseOrder; if (t8) t9 = t1.get$amount(); else if (t2 === B.EntityType_credit) { t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "credit_amount"); if (t9 == null) t9 = ""; } else { t9 = t1.localeCode; if (t6) { t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t9), "quote_amount"); if (t9 == null) t9 = ""; } else { t9 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t9), "invoice_amount"); if (t9 == null) t9 = ""; } } t10 = invoice.amount; t11 = invoice.clientId; t12 = A.formatNumber(t10, context, t11, _null, B.FormatNumberType_0, true, _null, false); t13 = t2 === B.EntityType_credit; if (t13) { t14 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "credit_remaining"); if (t14 == null) t14 = ""; } else t14 = t6 || t2 === B.EntityType_recurringInvoice ? _null : t1.get$balanceDue(); t15 = type$.JSArray_legacy_EntityType; if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_invoice, B.EntityType_credit], t15), t2)) t16 = A.formatNumber(invoice.statusId !== "1" ? invoice.balance : t10, context, t11, _null, B.FormatNumberType_0, true, _null, false); else t16 = _null; t17 = type$.JSArray_legacy_Widget; widgets = A._setArrayType([A.EntityHeader$(invoice, t9, t14, t16, color, t7, t12), new A.ListDivider(_null)], t17); t7 = invoice.invitations._list; t9 = t7.length === 0 ? "" : B.JSArray_methods.get$first(t7).link + "?silent=true"; B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.Padding(B.EdgeInsets_20_16_20_16, new A.PortalLinks(t9, t7.length === 0 ? "" : B.JSArray_methods.get$first(t7).link, client, false, _null), _null), new A.ListDivider(_null)], t17)); t7 = invoice.privateNotes; if (t7.length !== 0) B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.IconMessage(t7, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null), new A.ListDivider(_null)], t17)); t7 = !t6; dueDateField = !t7 || t13 ? "valid_until" : "due_date"; t9 = type$.legacy_String; t12 = A.LinkedHashMap_LinkedHashMap$_empty(t9, t9); if (t6) t12.$indexSet(0, _s4_, A.formatDate(invoice.date, context, true, true, false)); else if (t13) t12.$indexSet(0, _s4_, A.formatDate(invoice.date, context, true, true, false)); else if (t8) t12.$indexSet(0, _s4_, A.formatDate(invoice.date, context, true, true, false)); else if (t5) t12.$indexSet(0, _s4_, A.formatDate(invoice.date, context, true, true, false)); t12.$indexSet(0, dueDateField, A.formatDate(invoice.dueDate, context, true, true, false)); if (t5) t5 = invoice.statusId !== "4"; else t5 = false; if (t5) t12.$indexSet(0, "next_send_date", A.formatDate(invoice.nextSendDate, context, true, true, false)); t5 = invoice.partial; t12.$indexSet(0, "partial_due", A.formatNumber(t5, context, t11, _null, B.FormatNumberType_0, true, _null, true)); t12.$indexSet(0, "partial_due_date", A.formatDate(invoice.partialDueDate, context, true, true, false)); t12.$indexSet(0, "po_number", invoice.poNumber); t6 = invoice.isAmountDiscount ? B.FormatNumberType_0 : B.FormatNumberType_1; t12.$indexSet(0, "discount", A.formatNumber(invoice.discount, context, t11, _null, t6, true, _null, true)); if (t2 === B.EntityType_recurringInvoice) { t6 = t1.lookup$1(B.Map_tOn4d.$index(0, invoice.frequencyId)); t11 = A.formatDate(invoice.lastSentDate, context, true, true, false); t14 = A.formatDate(invoice.nextSendDate, context, true, true, false); t16 = invoice.remainingCycles; t16 = t16 === -1 ? t1.get$endless() : A.S(t16); t18 = invoice.autoBill; t19 = t1.lookup$1(t18); if (B.JSArray_methods.contains$1(A._setArrayType(["optin", "optout"], type$.JSArray_legacy_String), t18)) t18 = " - " + (invoice.autoBillEnabled ? t1.get$yes() : t1.get$no()); else t18 = ""; t18 = J.$add$ansx(t19, t18); t19 = invoice.dueDateDays; if (t19 === "terms") t19 = t1.get$paymentTerm(); else if (t19 === "1") t19 = t1.get$firstDayOfTheMonth(); else t19 = t19 === "31" ? t1.get$lastDayOfTheMonth() : B.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", A.S(t19)); t9 = A.LinkedHashMap_LinkedHashMap$_literal(["frequency", t6, "last_sent_date", t11, "next_send_date", t14, "remaining_cycles", t16, "auto_bill", t18, "due_date", t19], t9, t9); t9 = t9.get$entries(t9); t9 = t9.get$iterator(t9); for (; t9.moveNext$0();) { t6 = t9.get$current(t9); t12.$indexSet(0, t6.get$key(t6), t6.get$value(t6)); } } t6 = invoice.customValue1; if (t6.length !== 0) t12.$indexSet(0, company.getCustomFieldLabel$1(_s8_), A.formatCustomValue(context, _s8_, t6)); t6 = invoice.customValue2; if (t6.length !== 0) t12.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), A.formatCustomValue(context, _s8_0, t6)); t6 = invoice.customValue3; if (t6.length !== 0) t12.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), A.formatCustomValue(context, _s8_1, t6)); t6 = invoice.customValue4; if (t6.length !== 0) t12.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), A.formatCustomValue(context, _s8_2, t6)); t6 = _this.isFilter; if (t8) widgets.push(A.EntityListTile$(vendor, t6, vendor.get$primaryContact().email)); else widgets.push(A.EntityListTile$(client, t6, client.get$primaryContact().email)); t8 = invoice.projectId; if (t8.length !== 0) widgets.push(A.EntityListTile$(t4[t3].projectState.$get$1(0, t8), t6, _null)); t8 = invoice.expenseId; if (t8.length !== 0) widgets.push(A.EntityListTile$(t4[t3].vendorState.$get$1(0, t8), t6, _null)); t8 = invoice.assignedUserId; if ((t8 == null ? "" : t8).length !== 0) widgets.push(A.EntityListTile$(t4[t3].userState.$get$1(0, t8), t6, _null)); t8 = invoice.recurringId; if ((t8 == null ? "" : t8).length !== 0) widgets.push(A.EntityListTile$(t4[t3].recurringInvoiceState.$get$1(0, t8), t6, _null)); else if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t15), t2)) widgets.push(new A.EntitiesListTile(invoice, B.EntityType_invoice, t1.get$invoices(), $.$get$memoizedRecurringInvoiceStatsForInvoice().call$2(invoice.id, t4[t3].invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t6, true, _null)); if (!t7 || t13) { t2 = invoice.invoiceId; relatedInvoice = t4[t3].invoiceState.map._map$_map.$index(0, t2); if (relatedInvoice == null) relatedInvoice = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); if ((t2 == null ? "" : t2).length !== 0) widgets.push(A.EntityListTile$(relatedInvoice, t6, _null)); } else { relatedQuote = $.$get$memoizedInvoiceQuoteSelector().call$2(invoice, t4[t3].quoteState.map); if (relatedQuote != null) widgets.push(A.EntityListTile$(relatedQuote, t6, _null)); } if (paymentMap._length !== 0) paymentMap.get$entries(paymentMap).forEach$1(0, new A.InvoiceOverview_build_closure0(_this, context, client, widgets)); if (creditMap._length !== 0) { creditMap.get$entries(creditMap).forEach$1(0, new A.InvoiceOverview_build_closure1(_this, context, client, widgets)); B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.ListDivider(_null)], t17)); } B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.FieldGrid(t12, _null)], t17)); t2 = invoice.lineItems._list; if (t2.length !== 0) B.JSArray_methods.forEach$1(t2, new A.InvoiceOverview_build_closure2(_this, widgets, invoice, userCompany)); t2 = new A.InvoiceOverview_build_surchargeRow(context, invoice); B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.SizedBox(_null, 8, _null, _null), t2.call$2(t1.get$subtotal(), invoice.calculateSubtotal$1$precision(A.precisionForInvoice(state, invoice)))], t17)); t3 = invoice.customSurcharge1; t4 = t3 !== 0; if (t4 && company.enableCustomSurchargeTaxes1) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_), t3)); t6 = invoice.customSurcharge2; t8 = t6 !== 0; if (t8 && company.enableCustomSurchargeTaxes2) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_0), t6)); t9 = invoice.customSurcharge3; t11 = t9 !== 0; if (t11 && company.enableCustomSurchargeTaxes3) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_1), t9)); t12 = invoice.customSurcharge4; t13 = t12 !== 0; if (t13 && company.enableCustomSurchargeTaxes4) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_2), t12)); invoice.calculateTaxes$2$precision$useInclusiveTaxes(A.precisionForInvoice(state, invoice), invoice.usesInclusiveTaxes).forEach$1(0, new A.InvoiceOverview_build_closure3(widgets, t2)); if (t4 && !company.enableCustomSurchargeTaxes1) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_), t3)); if (t8 && !company.enableCustomSurchargeTaxes2) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_0), t6)); if (t11 && !company.enableCustomSurchargeTaxes3) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_1), t9)); if (t13 && !company.enableCustomSurchargeTaxes4) widgets.push(t2.call$2(company.getCustomFieldLabel$1(_s10_2), t12)); if (t7) widgets.push(t2.call$2(t1.get$paidToDate(), invoice.paidToDate)); if (!t7 || invoice.statusId === "1") widgets.push(t2.call$2(t1.get$amount(), t10)); else widgets.push(t2.call$2(t1.get$balanceDue(), invoice.balance)); if (t5 !== 0) widgets.push(t2.call$2(t1.get$partialDue(), t5)); t1 = invoice.publicNotes; if (t1.length !== 0) B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.ListDivider(_null), new A.IconMessage(t1, _null, _null, _null, _null)], t17)); return new A.ScrollableListView(widgets, _null, _null, _null); } }; A.InvoiceOverview_build_closure.prototype = { call$1(payment) { var t1 = this.invoice; B.JSArray_methods.forEach$1(payment.get$invoicePaymentables(), new A.InvoiceOverview_build__closure0(t1, this.paymentMap, payment)); B.JSArray_methods.forEach$1(payment.get$creditPaymentables(), new A.InvoiceOverview_build__closure1(t1, this.creditMap, payment)); }, $signature: 148 }; A.InvoiceOverview_build__closure0.prototype = { call$1(paymentable) { if (paymentable.invoiceId === this.invoice.id) this.paymentMap.$indexSet(0, paymentable, this.payment); }, $signature: 244 }; A.InvoiceOverview_build__closure1.prototype = { call$1(paymentable) { if (paymentable.creditId === this.invoice.id) this.creditMap.$indexSet(0, paymentable, this.payment); }, $signature: 244 }; A.InvoiceOverview_build_closure0.prototype = { call$1(entry) { var _this = this, _null = null, payment = entry.get$value(entry), t1 = entry.get$key(entry).amount, t2 = _this.context, t3 = _this.client.id, amount = A.formatNumber(t1, t2, t3, _null, B.FormatNumberType_0, true, _null, false), t4 = payment.amount; _this.widgets.push(A.EntityListTile$(payment, _this.$this.isFilter, J.$add$ansx(t1 !== t4 ? J.$add$ansx(amount, B.JSString_methods.$add("/", A.formatNumber(t4, t2, t3, _null, B.FormatNumberType_0, true, _null, false))) : amount, " \u2022 ") + A.formatDate(payment.date, t2, true, true, false))); }, $signature: 702 }; A.InvoiceOverview_build_closure1.prototype = { call$1(entry) { var _this = this, _null = null, credit = entry.get$value(entry), t1 = entry.get$key(entry).amount, t2 = _this.context, t3 = _this.client.id, amount = A.formatNumber(t1, t2, t3, _null, B.FormatNumberType_0, true, _null, false), t4 = credit.amount; _this.widgets.push(A.EntityListTile$(credit, _this.$this.isFilter, J.$add$ansx(t1 !== t4 ? J.$add$ansx(amount, B.JSString_methods.$add("/", A.formatNumber(t4, t2, t3, _null, B.FormatNumberType_0, true, _null, false))) : amount, " \u2022 ") + A.formatDate(credit.date, t2, true, true, false))); }, $signature: 702 }; A.InvoiceOverview_build_closure2.prototype = { call$1(invoiceItem) { var _this = this; B.JSArray_methods.addAll$1(_this.widgets, A._setArrayType([new A.Builder(new A.InvoiceOverview_build__closure(_this.$this, _this.invoice, invoiceItem, _this.userCompany), null)], type$.JSArray_legacy_Widget)); }, $signature: 232 }; A.InvoiceOverview_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = _this.invoiceItem; return new A.InvoiceItemListTile(new A.InvoiceOverview_build___closure(_this.$this, _this.userCompany, t1, context, t2), t1, t2, null); }, $signature: 2451 }; A.InvoiceOverview_build___closure.prototype = { call$0() { var _this = this, t1 = _this.invoice; return _this.userCompany.canEditEntity$1(t1) ? _this.$this.viewModel.onEditPressed.call$2(_this.context, B.JSArray_methods.indexOf$2(t1.lineItems._list, _this.invoiceItem, 0)) : null; }, $signature: 9 }; A.InvoiceOverview_build_surchargeRow.prototype = { call$2(label, amount) { var _null = null, t1 = this.context, t2 = A.Theme_of(t1).cardColor; return A.Container$(_null, new A.Padding(B.EdgeInsets_20_10_56_8, A.Row$(A._setArrayType([A.Text$(label, _null, _null, _null, _null, _null, A.Theme_of(t1).textTheme.titleMedium, _null, _null, _null), new A.SizedBox(100, _null, new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(amount, t1, this.invoice.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(t1).textTheme.titleMedium, _null, _null, _null), _null), _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null), _null), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2452 }; A.InvoiceOverview_build_closure3.prototype = { call$2(taxName, taxAmount) { this.widgets.push(this.surchargeRow.call$2(taxName, taxAmount)); }, $signature: 2453 }; A.InvoiceViewSchedule.prototype = { createState$0() { return new A._InvoiceViewScheduleState(B._StateLifecycle_0); } }; A._InvoiceViewScheduleState.prototype = { didChangeDependencies$0() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var t3, _null = null, invoice = this._widget.viewModel.invoice, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(A.Text$(t1.get$sendDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1), A.Expanded$(A.Text$(t1.get$dueDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t2); if (invoice.get$isStale() && invoice.recurringDates._list.length === 0) t2.push(new A.LoadingIndicator(300, false, _null)); t1 = invoice.recurringDates._list; t3 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Padding*>"); B.JSArray_methods.addAll$1(t2, A.List_List$of(new A.MappedListIterable(t1, new A._InvoiceViewScheduleState_build_closure(context), t3), true, t3._eval$1("ListIterable.E"))); return new A.ScrollableListView(t2, _null, B.EdgeInsets_16_16_16_16, _null); } }; A._InvoiceViewScheduleState_build_closure.prototype = { call$1(schedule) { var _null = null, t1 = this.context; return new A.Padding(B.EdgeInsets_0_16_0_0, A.Row$(A._setArrayType([A.Expanded$(A.Text$(A.formatDate(schedule.sendDate, t1, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Text$(A.formatDate(schedule.dueDate, t1, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null); }, $signature: 2454 }; A.InvoiceViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceViewScreen_build_closure(this), new A.InvoiceViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceViewVM); } }; A.InvoiceViewScreen_build_closure0.prototype = { call$1(store) { return A.InvoiceViewVM_InvoiceViewVM$fromStore(store); }, $signature: 2455 }; A.InvoiceViewScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.invoiceUIState.tabIndex, null); }, $signature: 2456 }; A.AbstractInvoiceViewVM.prototype = { get$company() { return this.company; }, get$invoice() { return this.invoice; } }; A.InvoiceViewVM.prototype = {}; A.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadInvoice(completer, this.invoice.id)); return completer.future; }, $signature: 17 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure.prototype = { call$2(context, index) { A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedInvoice(), false, type$.legacy_ClientEntity), this.invoice, true, index); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 266 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveInvoiceDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.invoice)); t1.then$1$1(0, new A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.InvoiceViewVM_InvoiceViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.InvoiceViewVM_InvoiceViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.InvoiceViewVM_InvoiceViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.InvoiceViewVM_InvoiceViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.InvoiceViewVM_InvoiceViewVM$fromStore__closure(t2, this.invoice), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.InvoiceViewVM_InvoiceViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadInvoice(null, this.invoice.id)); }, $signature: 103 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure3.prototype = { call$2(context, $document) { }, $signature: 2457 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure4.prototype = { call$3(context, invoice, activityId) { this.store.get$_dispatchers()[0].call$1(new A.ShowPdfInvoice(invoice, context, activityId)); }, call$2(context, invoice) { return this.call$3(context, invoice, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues() { return [null]; }, $signature: 261 }; A.PaymentEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._PaymentEditState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A._PaymentEditState.prototype = { didChangeDependencies$0() { var payment, t11, _this = this, _null = null, t1 = _this._payment_edit$_amountController, t2 = _this._numberController, t3 = _this._transactionReferenceController, t4 = _this._privateNotesController, t5 = _this._payment_edit$_custom1Controller, t6 = _this._payment_edit$_custom2Controller, t7 = _this._payment_edit$_custom3Controller, t8 = _this._payment_edit$_custom4Controller, t9 = _this._exchangeRateController, t10 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9], type$.JSArray_legacy_TextEditingController); _this._payment_edit$_controllers = t10; B.JSArray_methods.forEach$1(t10, new A._PaymentEditState_didChangeDependencies_closure(_this)); payment = _this._widget.viewModel.payment; t10 = payment.exchangeRate; _this._showConvertCurrency = t10 !== 1 && t10 !== 0; t11 = _this._framework$_element; t11.toString; t1.set$text(0, A.formatNumber(payment.amount, t11, _null, _null, B.FormatNumberType_4, true, _null, false)); t2.set$text(0, payment.number); t3.set$text(0, payment.transactionReference); t4.set$text(0, payment.privateNotes); t5.set$text(0, payment.customValue1); t6.set$text(0, payment.customValue2); t7.set$text(0, payment.customValue3); t8.set$text(0, payment.customValue4); t8 = _this._framework$_element; t8.toString; t9.set$text(0, A.formatNumber(t10, t8, _null, _null, B.FormatNumberType_4, true, _null, false)); B.JSArray_methods.forEach$1(_this._payment_edit$_controllers, new A._PaymentEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._payment_edit$_controllers, new A._PaymentEditState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_edit$_onChanged$0() { var _this = this, payment = _this._widget.viewModel.payment.rebuild$1(new A._PaymentEditState__onChanged_closure(_this)); if (!J.$eq$(payment, _this._widget.viewModel.payment)) _this._payment_edit$_debouncer.run$1(new A._PaymentEditState__onChanged_closure0(_this, payment)); }, convertCurrency$1(currency) { var client, t3, t4, t5, _this = this, t1 = {}, viewModel = _this._widget.viewModel, payment = viewModel.payment, state = viewModel.state, t2 = t1.exchangeRate = 1; if (currency != null) { t2 = state.uiState.selectedCompanyIndex; client = state.userCompanyStates._list[t2].clientState.$get$1(0, payment.clientId); t2 = t1.exchangeRate = A.getExchangeRate(state.staticState.currencyMap, client.settings.currencyId, currency.get$id(currency)); } t3 = _this._exchangeRateController; t4 = _this.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t5 = _this._framework$_element; t5.toString; t3.set$text(0, A.formatNumber(t2, t5, null, null, B.FormatNumberType_4, true, null, false)); t3.addListener$1(0, t4); t1 = payment.rebuild$1(new A._PaymentEditState_convertCurrency_closure(t1, currency)); viewModel.onChanged.call$1(t1); }, build$1(_, context) { var t5, creditPaymentables, amountPlaceholder, limit, t6, t7, t8, t9, t10, t11, t12, t13, index, t14, body, _this = this, _null = null, _s17_ = "__payment_amount_", _box_0 = {}, viewModel = _this._widget.viewModel, payment = viewModel.payment, state = viewModel.state, t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), t3 = payment.invoices, t4 = t3._list, invoicePaymentables = new A.CopyOnWriteList(true, t4, A._instanceType(t3)._eval$1("CopyOnWriteList<1>")); t3 = B.JSArray_methods.where$1(t4, new A._PaymentEditState_build_closure()); if (!t3.get$iterator(t3).moveNext$0()) { t3 = A.PaymentableEntity_PaymentableEntity(_null, _null, _null); invoicePaymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(invoicePaymentables._copy_on_write_list$_list, t3); } t3 = payment.credits; t5 = t3._list; creditPaymentables = new A.CopyOnWriteList(true, t5, A._instanceType(t3)._eval$1("CopyOnWriteList<1>")); t3 = B.JSArray_methods.where$1(t5, new A._PaymentEditState_build_closure0()); if (!t3.get$iterator(t3).moveNext$0()) { t3 = A.PaymentableEntity_PaymentableEntity(_null, _null, _null); creditPaymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(creditPaymentables._copy_on_write_list$_list, t3); } _box_0.creditTotal = _box_0.paymentTotal = 0; J.forEach$1$ax(invoicePaymentables._copy_on_write_list$_list, new A._PaymentEditState_build_closure1(_box_0)); J.forEach$1$ax(creditPaymentables._copy_on_write_list$_list, new A._PaymentEditState_build_closure2(_box_0)); amountPlaceholder = t2.get$amount(); if (t4.length > 1) amountPlaceholder += B.JSString_methods.$add(" \u2022 " + t2.get$total(t2) + " ", A.formatNumber(_box_0.paymentTotal, context, payment.clientId, _null, B.FormatNumberType_0, true, _null, false)); if (t5.length > 1) amountPlaceholder += B.JSString_methods.$add(" \u2022 " + t2.get$credit() + " ", A.formatNumber(_box_0.creditTotal, context, payment.clientId, _null, B.FormatNumberType_0, true, _null, false)); t3 = payment.amount; if (t3 !== 0) limit = t3 - _box_0.paymentTotal; else { t4 = _box_0.creditTotal; limit = t4 !== 0 ? t4 - _box_0.paymentTotal : _null; } t4 = $.$get$_PaymentEditState__formKey(); t5 = type$.ValueKey_legacy_String; t6 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([], t6); if (payment.get$isNew()) { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1); t1 = t1.get$client(t1); t8 = _this.autoValidate; t9 = $.$get$memoizedDropdownClientList(); t10 = state.uiState.selectedCompanyIndex; t11 = state.userCompanyStates._list; t12 = t11[t10]; t13 = t12.clientState; t1 = A._setArrayType([A.EntityDropdown$(true, t8, true, payment.clientId, t9.call$4(t13.map, t13.list, t12.userState.map, state.staticState), _null, B.EntityType_client, B.List_empty0, t1, _null, _null, new A._PaymentEditState_build_closure3(viewModel, payment), _null, _null, new A._PaymentEditState_build_closure4(context))], t6); if (t11[t10].userCompany.company.enableApplyingPayments) t1.push(A.DecoratedFormField$(false, _null, false, false, _this._payment_edit$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), amountPlaceholder, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); B.JSArray_methods.addAll$1(t7, t1); } else { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "payment_number"); if (t1 == null) t1 = ""; t7.push(A.DecoratedFormField$(false, _null, false, false, _this._numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A._PaymentEditState_build_closure5(t2))); } if (payment.get$isNew() || payment.isApplying === true) for (index = 0; index < J.get$length$asx(invoicePaymentables._copy_on_write_list$_list); ++index) { t1 = J.$index$asx(invoicePaymentables._copy_on_write_list$_list, index).invoiceId; t7.push(new A.PaymentableEditor(viewModel, J.$index$asx(invoicePaymentables._copy_on_write_list$_list, index), index, B.EntityType_invoice, limit, new A.ValueKey("__invoice_paymentable_" + index + "_" + A.S(t1) + "__", t5))); } t1 = payment.isApplying === true; t8 = !t1; if (t8) t7.push(A.DatePicker$(_this.autoValidate, _null, _null, t2.get$paymentDate(), _null, new A._PaymentEditState_build_closure6(viewModel, payment), payment.date, new A._PaymentEditState_build_closure7(context))); if (t8) t7.push(A.EntityDropdown$(true, false, false, payment.typeId, $.$get$memoizedPaymentTypeList().call$1(viewModel.staticState.paymentTypeMap), _null, B.EntityType_paymentType, B.List_empty0, t2.get$paymentType(), _null, _null, new A._PaymentEditState_build_closure8(viewModel, payment), _null, _null, _null)); if (payment.get$isNew() || t1) { t9 = state.uiState.selectedCompanyIndex; if (state.userCompanyStates._list[t9].userCompany.company.isModuleEnabled$1(B.EntityType_credit)) for (index = 0; index < J.get$length$asx(creditPaymentables._copy_on_write_list$_list); ++index) { t9 = J.$index$asx(creditPaymentables._copy_on_write_list$_list, index).creditId; t7.push(new A.PaymentableEditor(viewModel, J.$index$asx(creditPaymentables._copy_on_write_list$_list, index), index, B.EntityType_credit, 0, new A.ValueKey("__credit_paymentable_" + index + "_" + A.S(t9) + "__", t5))); } } if (t8) t7.push(A.DecoratedFormField$(false, _null, false, false, _this._transactionReferenceController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2.get$transactionReference(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, _null)); t9 = viewModel.onSavePressed; t7.push(new A.CustomField(_this._payment_edit$_custom1Controller, _null, t9, "payment1", payment.customValue1, false, _null)); t7.push(new A.CustomField(_this._payment_edit$_custom2Controller, _null, t9, "payment2", payment.customValue2, false, _null)); t7.push(new A.CustomField(_this._payment_edit$_custom3Controller, _null, t9, "payment3", payment.customValue3, false, _null)); t7.push(new A.CustomField(_this._payment_edit$_custom4Controller, _null, t9, "payment4", payment.customValue4, false, _null)); if (t8) t7.push(A.DecoratedFormField$(false, _null, false, false, _this._privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t2.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t7 = A.FormCard$(_null, t7, _null, _null, false, _null, false, _null); t8 = A._setArrayType([], t6); if (payment.get$isNew()) { t10 = A.Theme_of(context).colorScheme; t11 = A.Text$(t2.get$sendEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t8.push(A.SwitchListTile$(t10.secondary, _null, new A._PaymentEditState_build_closure9(viewModel, payment), _null, A.Text$(t2.get$emailReceipt(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, payment.sendEmail === true)); } t8.push(A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._PaymentEditState_build_closure10(_this, viewModel, payment, state), _null, _null, A.Text$(t2.get$convertCurrency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._showConvertCurrency)); if (_this._showConvertCurrency) { t10 = payment.exchangeCurrencyId; t11 = A.EntityDropdown$(true, false, false, t10, $.$get$memoizedCurrencyList().call$1(viewModel.staticState.currencyMap), _null, B.EntityType_currency, B.List_empty0, t2.get$currency(), _null, _null, new A._PaymentEditState_build_closure11(_this), _null, _null, _null); t10 = A.DecoratedFormField$(false, _null, false, false, _this._exchangeRateController, _null, true, _null, _null, _null, _null, false, false, new A.ValueKey(_s17_ + t10 + "__", t5), new A.TextInputType(2, false, true), t2.get$exchangeRate(), _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, _null); t12 = _box_0.paymentTotal; t13 = _box_0.creditTotal; t14 = payment.exchangeRate; if (t14 !== 1 && t14 !== 0) t3 = A.formatNumber((payment.get$isNew() ? _box_0.paymentTotal - _box_0.creditTotal : t3) * t14, context, _null, _null, B.FormatNumberType_4, true, _null, false); else t3 = ""; B.JSArray_methods.addAll$1(t8, A._setArrayType([t11, t10, A.Focus$(false, _null, A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, t3, _null, false, false, new A.ValueKey(_s17_ + A.S(t12) + "_" + A.S(t13) + "_" + A.S(t14) + "__", t5), new A.TextInputType(2, false, true), t2.get$convertedAmount(), _null, _null, false, new A._PaymentEditState_build_closure12(_this), _null, t9, true, _null, _null, B.TextAlign_4, _null), _null, _null, _null, _null, true, _null, new A._PaymentEditState_build_closure13(_box_0, _this, payment, context, viewModel), _null, _null, _null)], t6)); } body = A.Form$(_null, A.Column$(A._setArrayType([t7, A.FormCard$(_null, t8, _null, _null, false, _null, true, _null)], t6), B.CrossAxisAlignment_2, new A.ValueKey("__payment_" + payment.id + "_" + payment.updatedAt + "__", t5), B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), t4); t3 = new A._PaymentEditState_build_onSavePressed(_this, viewModel); if (t1 && A.getLayout(context) === B.AppLayout_desktop) { t1 = A.Theme_of(context).canvasColor; t4 = A.Text$(t2.get$applyPayment(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = A.SingleChildScrollView$(new A.SizedBox(400, _null, body, _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t7 = A._setArrayType([], t6); if (state.isSaving) t7.push(new A.Padding(B.EdgeInsets_0_0_16_0, new A.SizedBox(30, 30, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null), _null)); else { t8 = A.TextButton$(false, A.Text$(t2.get$cancel(t2).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PaymentEditState_build_closure14(context), _null); t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "apply"); if (t2 == null) t2 = ""; B.JSArray_methods.addAll$1(t7, A._setArrayType([t8, A.TextButton$(false, A.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PaymentEditState_build_closure15(t3, context), _null)], t6)); } return A.AlertDialog$(t7, B.EdgeInsets_0_0_4_0, t1, t5, B.EdgeInsets_0_0_0_0, _null, _null, t4); } else { if (payment.get$isNew()) t1 = t2.get$enterPayment(); else if (t1) t1 = t2.get$applyPayment(); else { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "edit_payment"); if (t1 == null) t1 = ""; } return A.EditScaffold$(_null, _null, new A.ScrollableListView(A._setArrayType([body], t6), _null, _null, _null), _null, payment, _null, false, _null, new A._PaymentEditState_build_closure16(viewModel), t3, _null, t1); } } }; A._PaymentEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 33 }; A._PaymentEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 33 }; A._PaymentEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._PaymentEditState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = A.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t2; t2 = J.trim$0$s(t1._numberController._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_number = t2; t2 = J.trim$0$s(t1._transactionReferenceController._change_notifier$_value.text); b.get$_payment_model$_$this()._transactionReference = t2; t2 = J.trim$0$s(t1._privateNotesController._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_privateNotes = t2; t2 = J.trim$0$s(t1._payment_edit$_custom1Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue1 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom2Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue2 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom3Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue3 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom4Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue4 = t2; t1 = A.parseDouble(t1._exchangeRateController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_exchangeRate = t1; return b; }, $signature: 44 }; A._PaymentEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.payment); }, $signature: 1 }; A._PaymentEditState_convertCurrency_closure.prototype = { call$1(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._exchangeCurrencyId = t1; t1 = this._box_0.exchangeRate; b.get$_payment_model$_$this()._payment_model$_exchangeRate = t1; return b; }, $signature: 44 }; A._PaymentEditState_build_closure.prototype = { call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 206 }; A._PaymentEditState_build_closure0.prototype = { call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 206 }; A._PaymentEditState_build_closure1.prototype = { call$1(invoice) { var t1 = this._box_0; t1.paymentTotal = t1.paymentTotal + invoice.amount; }, $signature: 244 }; A._PaymentEditState_build_closure2.prototype = { call$1(credit) { var t1 = this._box_0; t1.creditTotal = t1.creditTotal + credit.amount; }, $signature: 244 }; A._PaymentEditState_build_closure4.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectAClient() : null; }, $signature: 15 }; A._PaymentEditState_build_closure3.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure5(client))); }, $signature: 34 }; A._PaymentEditState_build__closure5.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._payment_model$_clientId = t1; B.JSArray_methods.set$length(b.get$credits().get$_safeList(), 0); B.JSArray_methods.set$length(b.get$invoices().get$_safeList(), 0); return b; }, $signature: 44 }; A._PaymentEditState_build_closure5.prototype = { call$1(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._PaymentEditState_build_closure7.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; A._PaymentEditState_build_closure6.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure4(date))); }, $signature: 53 }; A._PaymentEditState_build__closure4.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_date = this.date; return b; }, $signature: 44 }; A._PaymentEditState_build_closure8.prototype = { call$1(paymentType) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure3(paymentType))); }, $signature: 61 }; A._PaymentEditState_build__closure3.prototype = { call$1(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._typeId = t1; return b; }, $signature: 44 }; A._PaymentEditState_build_closure9.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure2(value))); }, $signature: 10 }; A._PaymentEditState_build__closure2.prototype = { call$1(b) { b.get$_payment_model$_$this()._sendEmail = this.value; return b; }, $signature: 44 }; A._PaymentEditState_build_closure10.prototype = { call$1(value) { var t3, t4, _this = this, t1 = _this.$this, t2 = _this.payment; if (!value) { t3 = t1._exchangeRateController; t4 = t1.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t3.set$text(0, ""); t3.addListener$1(0, t4); _this.viewModel.onChanged.call$1(t2.rebuild$1(new A._PaymentEditState_build__closure0())); } else t1.convertCurrency$1(_this.state.staticState.currencyMap._map$_map.$index(0, t2.exchangeCurrencyId)); t1.setState$1(new A._PaymentEditState_build__closure1(t1, value)); }, $signature: 20 }; A._PaymentEditState_build__closure0.prototype = { call$1(b) { b.get$_payment_model$_$this()._exchangeCurrencyId = ""; b.get$_payment_model$_$this()._payment_model$_exchangeRate = 1; return b; }, $signature: 44 }; A._PaymentEditState_build__closure1.prototype = { call$0() { this.$this._showConvertCurrency = this.value; }, $signature: 1 }; A._PaymentEditState_build_closure11.prototype = { call$1(currency) { return this.$this.convertCurrency$1(currency); }, $signature: 155 }; A._PaymentEditState_build_closure13.prototype = { call$1(hasFocus) { var t2, t3, amount, exchangeRate, t4, _this = this, t1 = _this.$this; if (t1._convertedAmount === 0) return; t2 = _this.payment; if (t2.get$isNew()) { t3 = _this._box_0; amount = t3.paymentTotal - t3.creditTotal; } else amount = t2.amount; exchangeRate = t1._convertedAmount / amount; t3 = t1._exchangeRateController; t4 = t1.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t3.set$text(0, A.formatNumber(exchangeRate, _this.context, null, null, B.FormatNumberType_4, true, null, false)); t3.addListener$1(0, t4); _this.viewModel.onChanged.call$1(t2.rebuild$1(new A._PaymentEditState_build__closure(exchangeRate))); t1._convertedAmount = 0; }, $signature: 20 }; A._PaymentEditState_build__closure.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 44 }; A._PaymentEditState_build_closure12.prototype = { call$1(value) { this.$this._convertedAmount = A.parseDouble(value, false); }, $signature: 11 }; A._PaymentEditState_build_onSavePressed.prototype = { call$1(context) { var isValid = $.$get$_PaymentEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._PaymentEditState_build_onSavePressed_closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 30 }; A._PaymentEditState_build_onSavePressed_closure.prototype = { call$0() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; A._PaymentEditState_build_closure14.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._PaymentEditState_build_closure15.prototype = { call$0() { return this.onSavePressed.call$1(this.context); }, $signature: 0 }; A._PaymentEditState_build_closure16.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A.PaymentableEditor.prototype = { createState$0() { return new A._PaymentableEditorState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._PaymentableEditorState.prototype = { didChangeDependencies$0() { var paymentable, t3, _this = this, t1 = _this._payment_edit$_amountController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._payment_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._PaymentableEditorState_didChangeDependencies_closure(_this)); paymentable = _this._widget.paymentable; t2 = paymentable.amount; t3 = _this._framework$_element; t3.toString; t3 = A.formatNumber(t2, t3, null, null, B.FormatNumberType_4, true, null, false); t1.set$text(0, t3 == null ? "0" : t3); if (paymentable.get$entityType() === B.EntityType_invoice) _this._payment_edit$_invoiceId = paymentable.invoiceId; else _this._payment_edit$_creditId = paymentable.creditId; B.JSArray_methods.forEach$1(_this._payment_edit$_controllers, new A._PaymentableEditorState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._payment_edit$_controllers, new A._PaymentableEditorState_dispose_closure0(this)); this.super$State$dispose(0); }, _payment_edit$_onChanged$1(clientId) { var t2, t3, payment, _this = this, t1 = {}; t1.paymentable = null; t2 = _this._widget; t3 = t2.entityType; t2 = t2.paymentable; t2 = t3 === B.EntityType_invoice ? t1.paymentable = t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure(_this)) : t1.paymentable = t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure0(_this)); if (t2.$eq(0, _this._widget.paymentable) || t2.get$isEmpty(t2)) return; t2 = _this._widget; if (t2.entityType === B.EntityType_invoice) { t3 = t2.index; t2 = t2.viewModel.payment; payment = t3 === t2.invoices._list.length ? t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure1(t1)) : t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure2(t1, _this)); } else { t3 = t2.index; t2 = t2.viewModel.payment; payment = t3 === t2.credits._list.length ? t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure3(t1)) : t2.rebuild$1(new A._PaymentableEditorState__onChanged_closure4(t1, _this)); } if (clientId != null) payment = payment.rebuild$1(new A._PaymentableEditorState__onChanged_closure5(clientId)); _this._widget.viewModel.onChanged.call$1(payment); }, _payment_edit$_onChanged$0() { return this._payment_edit$_onChanged$1(null); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, paymentList, creditList, _this = this, _null = null, t1 = _this._widget, viewModel = t1.viewModel, state = viewModel.state, payment = viewModel.payment, paymentable = t1.paymentable; t1 = type$.legacy_AppLocalization; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1); t3 = $.$get$memoizedDropdownInvoiceList(); t4 = state.uiState.selectedCompanyIndex; t5 = state.userCompanyStates._list; t6 = t5[t4]; t7 = t6.invoiceState; t8 = t7.map; t9 = t6.clientState.map; t10 = t6.vendorState.map; t7 = t7.list; t11 = payment.clientId; t6 = t6.userState.map; t12 = payment.invoices._list; t13 = A._arrayInstanceType(t12)._eval$1("MappedListIterable<1,String*>"); paymentList = t3.call$8(t8, t9, t10, t7, t11, t6, A.List_List$of(new A.MappedListIterable(t12, new A._PaymentableEditorState_build_closure(), t13), true, t13._eval$1("ListIterable.E")), t5[t4].userCompany.company.settings.recurringNumberPrefix); t13 = $.$get$memoizedDropdownCreditList(); t4 = t5[t4]; t5 = t4.creditState; t6 = t5.map; t7 = t4.clientState.map; t10 = t4.vendorState.map; t5 = t5.list; t4 = t4.userState.map; t9 = payment.credits._list; t8 = A._arrayInstanceType(t9)._eval$1("MappedListIterable<1,String*>"); creditList = t13.call$7(t6, t7, t10, t5, t11, t4, A.List_List$of(new A.MappedListIterable(t9, new A._PaymentableEditorState_build_closure0(), t8), true, t8._eval$1("ListIterable.E"))); if (_this._widget.entityType === B.EntityType_credit) if (t11.length !== 0) if (J.get$isEmpty$asx(creditList)) { t3 = paymentable.creditId; t3 = (t3 == null ? "" : t3).length === 0; } else t3 = false; else t3 = true; else t3 = false; if (t3) return new A.SizedBox(_null, _null, _null, _null); else { if (_this._widget.entityType === B.EntityType_invoice) if (J.get$isEmpty$asx(paymentList)) { t3 = paymentable.invoiceId; t3 = (t3 == null ? "" : t3).length === 0; } else t3 = false; else t3 = false; if (t3) return new A.SizedBox(_null, _null, _null, _null); } t3 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([], t3); if (_this._widget.entityType === B.EntityType_invoice) { t5 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1).get$invoice(); t4.push(A.Expanded$(A.EntityDropdown$(false, false, false, paymentable.invoiceId, paymentList, _null, B.EntityType_invoice, B.List_empty0, t5, _null, _null, new A._PaymentableEditorState_build_closure1(_this, context), new A._PaymentableEditorState_build_closure2(context), new A._PaymentableEditorState_build_closure3(t2), _null), 1)); } if (_this._widget.entityType === B.EntityType_credit) { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1).get$credit(); t4.push(A.Expanded$(A.EntityDropdown$(false, false, false, paymentable.creditId, creditList, _null, B.EntityType_credit, B.List_empty0, t1, _null, _null, new A._PaymentableEditorState_build_closure4(_this, context), new A._PaymentableEditorState_build_closure5(context), new A._PaymentableEditorState_build_closure6(t2), _null), 1)); } t1 = _this._payment_edit$_creditId; if ((t1 == null ? "" : t1).length === 0) { t1 = _this._payment_edit$_invoiceId; t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = true; if (t1) { t1 = _this._widget.entityType === B.EntityType_invoice ? t2.get$amount() : t2.get$applied(); B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.DecoratedFormField$(false, _null, false, false, _this._payment_edit$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1, _null, _null, false, _null, _null, viewModel.onSavePressed, false, _null, _null, B.TextAlign_4, _null), 1)], t3)); } t1 = _this._widget.entityType; if (!(t1 === B.EntityType_invoice && t12.length !== 0 && _this._payment_edit$_invoiceId != null)) t1 = t1 === B.EntityType_credit && t9.length !== 0 && _this._payment_edit$_creditId != null; else t1 = true; if (t1) { t1 = A.Icon$(B.IconData_57704_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null); t2 = t2.get$remove(t2); B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.SizedBox(16, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t1, _null, paymentable.get$isEmpty(paymentable) ? _null : new A._PaymentableEditorState_build_closure7(_this, viewModel, payment), B.EdgeInsets_8_8_8_8, _null, t2, _null)], t3)); } return A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A._PaymentableEditorState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 33 }; A._PaymentableEditorState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 33 }; A._PaymentableEditorState_dispose_closure0.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._PaymentableEditorState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._payment_edit$_invoiceId; if (t2 == null) t2 = t1._widget.paymentable.invoiceId; b.get$_payment_model$_$this()._payment_model$_invoiceId = t2; t1 = A.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 461 }; A._PaymentableEditorState__onChanged_closure0.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._payment_edit$_creditId; if (t2 == null) t2 = t1._widget.paymentable.creditId; b.get$_payment_model$_$this()._creditId = t2; t1 = A.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 461 }; A._PaymentableEditorState__onChanged_closure1.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure2.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index, t3 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t3 == null) A.throwExpression(A.ArgumentError$("null element", null)); t1.get$_safeList()[t2] = t3; return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure3.prototype = { call$1(b) { var t1 = b.get$credits(), t2 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) A.throwExpression(A.ArgumentError$("null element", null)); B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure4.prototype = { call$1(b) { var t1 = b.get$credits(), t2 = this.$this._widget.index, t3 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t3 == null) A.throwExpression(A.ArgumentError$("null element", null)); t1.get$_safeList()[t2] = t3; return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure5.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_clientId = this.clientId; return b; }, $signature: 44 }; A._PaymentableEditorState_build_closure.prototype = { call$1(p) { return p.invoiceId; }, $signature: 190 }; A._PaymentableEditorState_build_closure0.prototype = { call$1(p) { return p.creditId; }, $signature: 190 }; A._PaymentableEditorState_build_closure3.prototype = { call$1(entity) { var t1; if (entity == null) return ""; else { if (entity.get$listDisplayName().length === 0) { t1 = this.localization; t1 = t1.get$pending(t1); } else t1 = entity.get$listDisplayName(); return t1; } }, $signature: 41 }; A._PaymentableEditorState_build_closure2.prototype = { call$1(entity) { if (entity == null) return ""; else return A.formatNumber(entity.get$listDisplayAmount(), this.context, type$.legacy_InvoiceEntity._as(entity).clientId, null, B.FormatNumberType_0, true, null, false); }, $signature: 41 }; A._PaymentableEditorState_build_closure1.prototype = { call$1(selected) { var t1, t2, t3, amount; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t2 = t1._widget.limit; if (t2 != null) { t3 = selected.statusId !== "1" ? selected.balance : selected.amount; amount = Math.min(t2, t3); } else amount = selected.statusId !== "1" ? selected.balance : selected.amount; t2 = A.formatNumber(amount, this.context, null, null, B.FormatNumberType_4, true, null, false); if (t2 == null) t2 = "0"; t1._payment_edit$_amountController.set$text(0, t2); t1._payment_edit$_invoiceId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, $signature: 34 }; A._PaymentableEditorState_build_closure6.prototype = { call$1(entity) { var t1; if (entity == null) return ""; else { if (entity.get$listDisplayName().length === 0) { t1 = this.localization; t1 = t1.get$pending(t1); } else t1 = entity.get$listDisplayName(); return t1; } }, $signature: 41 }; A._PaymentableEditorState_build_closure5.prototype = { call$1(entity) { if (entity == null) return ""; else return A.formatNumber(entity.get$listDisplayAmount(), this.context, type$.legacy_InvoiceEntity._as(entity).clientId, null, B.FormatNumberType_0, true, null, false); }, $signature: 41 }; A._PaymentableEditorState_build_closure4.prototype = { call$1(selected) { var t1, t2; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t2 = selected.statusId !== "1" ? selected.balance : selected.amount; t2 = A.formatNumber(t2, this.context, null, null, B.FormatNumberType_4, true, null, false); if (t2 == null) t2 = "0"; t1._payment_edit$_amountController.set$text(0, t2); t1._payment_edit$_creditId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, $signature: 34 }; A._PaymentableEditorState_build_closure7.prototype = { call$0() { var t1 = this.$this, t2 = this.payment, t3 = this.viewModel.onChanged; if (t1._widget.entityType === B.EntityType_invoice) t3.call$1(t2.rebuild$1(new A._PaymentableEditorState_build__closure(t1))); else t3.call$1(t2.rebuild$1(new A._PaymentableEditorState_build__closure0(t1))); }, $signature: 1 }; A._PaymentableEditorState_build__closure.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; B.JSArray_methods.removeAt$1(t1.get$_safeList(), t2); return b; }, $signature: 44 }; A._PaymentableEditorState_build__closure0.prototype = { call$1(b) { var t1 = b.get$credits(), t2 = this.$this._widget.index; B.JSArray_methods.removeAt$1(t1.get$_safeList(), t2); return b; }, $signature: 44 }; A.PaymentEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentEditScreen_build_closure(), new A.PaymentEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentEditVM); } }; A.PaymentEditScreen_build_closure0.prototype = { call$1(store) { return A.PaymentEditVM_PaymentEditVM$fromStore(store); }, $signature: 2460 }; A.PaymentEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.PaymentEdit(viewModel, new A.ValueKey(viewModel.payment.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2461 }; A.PaymentEditVM.prototype = { get$payment() { return this.payment; } }; A.PaymentEditVM_PaymentEditVM$fromStore_closure.prototype = { call$1(payment) { this.store.get$_dispatchers()[0].call$1(new A.UpdatePayment(payment)); }, $signature: 148 }; A.PaymentEditVM_PaymentEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.PaymentEntity_PaymentEntity(_null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.PaymentEditVM_PaymentEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.PaymentEditVM_PaymentEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.PaymentEditVM_PaymentEditVM$fromStore__closure.prototype = { call$0() { var t4, $navigator, t1 = {}, t2 = this.store, payment = A._lateReadCheck(t2.__Store__state, "_state").uiState.paymentUIState.editing, t3 = $.$get$navigatorKey(); t3.toString; t4 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t3.get$currentState(); t1.amount = 0; B.JSArray_methods.forEach$1(payment.invoices._list, new A.PaymentEditVM_PaymentEditVM$fromStore___closure(t1)); B.JSArray_methods.forEach$1(payment.credits._list, new A.PaymentEditVM_PaymentEditVM$fromStore___closure0(t1)); if (t1.amount < 0) { A.showDialog(null, true, new A.PaymentEditVM_PaymentEditVM$fromStore___closure1(t4), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), null, true, type$.legacy_ErrorDialog); return null; } t1 = new A._Future($.Zone__current, type$._Future_legacy_PaymentEntity); t2.get$_dispatchers()[0].call$1(new A.SavePaymentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_PaymentEntity), payment)); return t1.then$1$1(0, new A.PaymentEditVM_PaymentEditVM$fromStore___closure2(payment, t4, this.state, t2, $navigator), type$.Null).catchError$1(new A.PaymentEditVM_PaymentEditVM$fromStore___closure3()); }, $signature: 37 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure.prototype = { call$1(invoice) { var t1 = this._box_0; return t1.amount = t1.amount + invoice.amount; }, $signature: 697 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure0.prototype = { call$1(credit) { var t1 = this._box_0; return t1.amount = t1.amount - credit.amount; }, $signature: 697 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure1.prototype = { call$1(context) { var t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "negative_payment_error"); return new A.ErrorDialog(t1 == null ? "" : t1, false, null); }, $signature: 24 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure2.prototype = { call$1(savedPayment) { var _this = this, _s13_ = "/payment/view", t1 = _this.payment, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_payment"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_payment"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedPayment); } else if (t1.isApplying === true) _this.navigator.pop$0(0); else A.viewEntity(false, savedPayment, null, false); }, $signature: 148 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure3.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.PaymentEditVM_PaymentEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.PaymentEditVM_PaymentEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.PaymentListItem.prototype = { build$1(_, context) { var t3, t4, isChecked, textStyle, t5, client, t6, t7, t8, filterMatch, mobileSubtitle, textColor, desktopSubtitle, _this = this, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, paymentUIState = uiState.paymentUIState, listUIState = paymentUIState.listUIState, t2 = _this.showCheckbox, isInMultiselect = t2 && listUIState.selectedIds != null; if (isInMultiselect) { t3 = _this.payment.id; t4 = listUIState.selectedIds; isChecked = t4 != null && B.JSArray_methods.contains$1(t4._list, t3); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t3 = state.userCompanyStates; t4 = uiState.selectedCompanyIndex; t3 = t3._list; t5 = _this.payment; client = t3[t4].clientState.$get$1(0, t5.clientId); t6 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t7 = _this.filter; if (t7 != null && t7.length !== 0) { t8 = t5.matchesFilterValue$1(t7); filterMatch = t8 == null ? client.matchesFilterValue$1(t7) : t8; } else filterMatch = _null; if (filterMatch == null) { t7 = t5.number; mobileSubtitle = t7 + " \u2022 " + A.formatDate(t5.date, context, true, true, false); } else mobileSubtitle = filterMatch; textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.desktopSubtitle = ""; t7 = t5.date; if (t7.length !== 0) { desktopSubtitle = A.formatDate(t7, context, true, true, false); t1.desktopSubtitle = desktopSubtitle; t7 = desktopSubtitle; } else t7 = ""; t8 = t5.transactionReference; if (t8.length !== 0) t1.desktopSubtitle = (t7.length !== 0 ? t1.desktopSubtitle = t7 + " \u2022 " : t7) + t8; if (A.getLayout(context) === B.AppLayout_desktop) { t7 = t5.id; t7 = t7 === (uiState.get$isEditing() ? paymentUIState.editing.id : paymentUIState.selectedId); } else t7 = false; return new A.DismissibleEntity(t3[t4].userCompany, t5, new A.LayoutBuilder(new A.PaymentListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, textStyle, filterMatch, textColor, mobileSubtitle, t6), _null), t7, t2, true, _null); }, get$payment() { return this.payment; } }; A.PaymentListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.PaymentListItem_build__closure(), _null, _null, false, _this.isChecked), _null); else { t2 = t1.payment; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.PaymentListItem_build__closure0(t1)); t2 = t4; } t3 = t1.payment; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = _this.client; t8 = A.Text$(t7.displayName, _null, _null, _null, _null, _null, t4, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.desktopSubtitle; t10 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 2, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.amount, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.PaymentListItem_build__closure1(t1), new A.PaymentListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.PaymentListItem_build__closure3(), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.payment; t5 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(_this.client.displayName, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(t4.amount, context, t4.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.mobileSubtitle; t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.PaymentListItem_build__closure4(t1), new A.PaymentListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(t6.length !== 0 ? A.Text$(t6, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), A.Text$(_this.localization.lookup$1("payment_status_" + t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, new A.PaymentStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t4, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.PaymentListItem_build__closure2.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.payment, !t1.showCheckbox, false); }, $signature: 0 }; A.PaymentListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.payment, false, true); }, $signature: 0 }; A.PaymentListItem_build__closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A.PaymentListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.payment], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.PaymentListItem_build__closure5.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.payment, !t1.showCheckbox, false); }, $signature: 0 }; A.PaymentListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.payment, false, true); }, $signature: 0 }; A.PaymentListItem_build__closure3.prototype = { call$1(value) { return null; }, $signature: 20 }; A.PaymentListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentListBuilder_build_closure(), A.payment_list_vm_PaymentListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentListVM); } }; A.PaymentListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.paymentList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_payment, new A.PaymentListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.PaymentPresenter(), t2, t4); }, $signature: 2463 }; A.PaymentListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, paymentId = J.$index$asx(t1.paymentList, index), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; return new A.PaymentListItem(t2._list[t3].paymentState.map._map$_map.$index(0, paymentId), t1.filter, true, null); }, $signature: 510 }; A.PaymentListVM.prototype = { get$user(receiver) { return this.user; } }; A.PaymentListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.PaymentListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.PaymentListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortPayments(field)); }, $signature: 5 }; A.PaymentListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearPaymentMultiselect()); }, $signature: 9 }; A.PaymentPresenter.prototype = { getField$2$context$field(context, field) { var t1, t2, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), payment = type$.legacy_PaymentEntity._as(_this.entity); switch (field) { case "number": return A.Text$(payment.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "type": t1 = state.staticState.paymentTypeMap; t2 = payment.typeId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_number": t1 = payment.get$invoicePaymentables(); t1 = new A.MappedListIterable(t1, new A.PaymentPresenter_getField_closure(state), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>")).super$Iterable$where(0, new A.PaymentPresenter_getField_closure0()); t2 = t1.$ti._eval$1("MappedIterable<1,Padding*>"); return new A.ConstrainedBox(new A.BoxConstraints(0, 200, 0, 1 / 0), A.Wrap$(B.WrapAlignment_0, A.List_List$of(new A.MappedIterable(t1, new A.PaymentPresenter_getField_closure1(payment), t2), true, t2._eval$1("Iterable.E")), B.Clip_2, B.WrapCrossAlignment_0, 0), _null); case "credit_number": t1 = payment.get$creditPaymentables(); t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>"); return A.Text$(B.JSArray_methods.join$1(A.List_List$of(new A.MappedListIterable(t1, new A.PaymentPresenter_getField_closure2(state), t2), true, t2._eval$1("ListIterable.E")), ", "), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].clientState.$get$1(0, payment.clientId), payment, _null); case "transaction_reference": return A.Text$(payment.transactionReference, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return A.Text$(A.formatDate(payment.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(payment.amount - payment.refunded, context, payment.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "converted_amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(payment.amount * payment.exchangeRate, context, payment.exchangeCurrencyId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "status": return A.EntityStatusChip$(payment, true, 105); case "custom1": return A.Text$(_this.presentCustomField$2(context, payment.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, payment.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, payment.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, payment.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "refunded": return A.Text$(A.formatNumber(payment.refunded, context, payment.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return A.Text$(payment.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(payment.exchangeRate, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "gateway": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return A.Text$(t1._list[t2].companyGatewayState.$get$1(0, payment.companyGatewayId).label, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.PaymentPresenter_getField_closure.prototype = { call$1(paymentable) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].invoiceState.map; t2 = paymentable.invoiceId; return t1._map$_map.$index(0, t2); }, $signature: 2464 }; A.PaymentPresenter_getField_closure0.prototype = { call$1(invoice) { return invoice != null; }, $signature: 163 }; A.PaymentPresenter_getField_closure1.prototype = { call$1(invoice) { return new A.Padding(B.EdgeInsets_0_0_8_0, new A.LinkTextRelatedEntity(invoice, this.payment, null), null); }, $signature: 2465 }; A.PaymentPresenter_getField_closure2.prototype = { call$1(paymentable) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = t2._list[t1].creditState.map; t2 = paymentable.creditId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? null : t2.number; return t1 == null ? "" : t1; }, $signature: 190 }; A.PaymentScreen.prototype = { build$1(_, context) { var company, t4, t5, t6, t7, t8, _null = null, _s21_ = "transaction_reference", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.paymentUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.paymentList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "client", "amount", "invoice_number", "date", "type", _s21_], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("refunded"); t7.push("private_notes"); t7.push("exchange_rate"); t7.push("converted_amount"); t7.push("credit_number"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("gateway"); t8 = A._setArrayType(["status", "number", "client", "amount", "invoice_number", "date", "type", _s21_], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("payment1", true), company.getCustomFieldValues$2$excludeBlank("payment2", true), company.getCustomFieldValues$2$excludeBlank("payment3", true), company.getCustomFieldValues$2$excludeBlank("payment4", true), t8, B.EntityType_payment, false, B.List_empty17, new A.PaymentScreen_build_closure(store), new A.PaymentScreen_build_closure0(store), new A.PaymentScreen_build_closure1(store), new A.PaymentScreen_build_closure2(store), new A.PaymentScreen_build_closure3(store), new A.PaymentScreen_build_closure4(store), new A.PaymentScreen_build_closure5(store), _null, A._setArrayType(["number", "date", "amount", "updated_at"], t6), B.List_empty18, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_payment) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "payment_fab", false, new A.PaymentScreen_build_closure6(context), t1.get$enterPayment()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_payment, t2, new A.PaymentScreen_build_closure7(store), t5, _null, _null, new A.PaymentScreen_build_closure8(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.PaymentListBuilder(_null), t7, B.EntityType_payment, t1, 0, _null, new A.PaymentScreen_build_closure9(store), new A.PaymentScreen_build_closure10(store)); } }; A.PaymentScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartPaymentMultiselect()); }, $signature: 9 }; A.PaymentScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPayments(value)); }, $signature: 11 }; A.PaymentScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByState(state)); }, $signature: 27 }; A.PaymentScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.paymentUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPaymentMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPaymentMultiselect()); }, $signature: 1 }; A.PaymentScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortPayments(value)); }, $signature: 5 }; A.PaymentScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByCustom1(value)); }, $signature: 5 }; A.PaymentScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByCustom2(value)); }, $signature: 5 }; A.PaymentScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByCustom3(value)); }, $signature: 5 }; A.PaymentScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByCustom4(value)); }, $signature: 5 }; A.PaymentScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentsByState(state)); }, $signature: 27 }; A.PaymentScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.paymentUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPaymentMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPaymentMultiselect()); }, $signature: 1 }; A.PaymentScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_payment); }, $signature: 1 }; A.PaymentScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentScreenBuilder_build_closure(), A.payment_screen_vm_PaymentScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentScreenVM); } }; A.PaymentScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.PaymentScreen(vm, null); }, $signature: 2466 }; A.PaymentScreenVM.prototype = {}; A.PaymentRefund.prototype = { createState$0() { return new A._PaymentRefundState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A._PaymentRefundState.prototype = { didChangeDependencies$0() { var payment, _this = this, t1 = _this._payment_refund$_amountController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._payment_refund$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._PaymentRefundState_didChangeDependencies_closure(_this)); payment = _this._widget.viewModel.payment; t2 = _this._framework$_element; t2.toString; t1.set$text(0, A.formatNumber(payment.amount, t2, null, null, B.FormatNumberType_4, true, null, false)); B.JSArray_methods.forEach$1(_this._payment_refund$_controllers, new A._PaymentRefundState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._payment_refund$_controllers, new A._PaymentRefundState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_refund$_onChanged$0() { this._payment_refund$_debouncer.run$1(new A._PaymentRefundState__onChanged_closure(this)); }, build$1(_, context) { var hasMultipleInvoices, state, companyGateway, gateway, t4, t5, t6, index, t7, t8, t9, t10, body, _this = this, _null = null, viewModel = _this._widget.viewModel, payment = viewModel.payment, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = payment.invoices, t3 = t2._list, paymentables = new A.CopyOnWriteList(true, t3, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")); t3 = B.JSArray_methods.where$1(t3, new A._PaymentRefundState_build_closure()); t3 = t3.get$iterator(t3).moveNext$0(); hasMultipleInvoices = payment.get$invoicePaymentables().length > 1; if (!t3 && hasMultipleInvoices) { t2 = A.PaymentableEntity_PaymentableEntity(_null, _null, _null); paymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(paymentables._copy_on_write_list$_list, t2); } state = viewModel.state; t2 = state.uiState.selectedCompanyIndex; companyGateway = state.userCompanyStates._list[t2].companyGatewayState.$get$1(0, payment.companyGatewayId); t2 = state.staticState.gatewayMap; t3 = companyGateway.gatewayId; gateway = t2._map$_map.$index(0, t3); if (gateway == null) gateway = A.GatewayEntity_GatewayEntity(); t2 = $.$get$_PaymentRefundState__formKey(); t3 = type$.ValueKey_legacy_String; t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); t6 = payment.paymentables._list; if (t6.length === 0) t5.push(A.DecoratedFormField$(false, _null, false, false, _this._payment_refund$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$amount(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (t6.length !== 0) for (index = 0; index < J.get$length$asx(paymentables._copy_on_write_list$_list); ++index) { t6 = J.$index$asx(paymentables._copy_on_write_list$_list, index).id; t5.push(new A.PaymentableEditor0(viewModel, J.$index$asx(paymentables._copy_on_write_list$_list, index), index, new A.ValueKey("__paymentable_" + index + "_" + t6 + "__", t3))); } t6 = _this.autoValidate; t1.toString; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = t1.localeCode; t9 = J.$index$asx(t7.$index(0, t8), "refund_date"); if (t9 == null) t9 = ""; t5.push(A.DatePicker$(t6, _null, _null, t9, _null, new A._PaymentRefundState_build_closure0(viewModel, payment), payment.date, new A._PaymentRefundState_build_closure1(context))); t5 = A.FormCard$(_null, t5, _null, _null, false, _null, false, _null); t9 = A.Theme_of(context).colorScheme; t6 = A.Text$(t1.get$sendEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A._setArrayType([A.SwitchListTile$(t9.secondary, _null, new A._PaymentRefundState_build_closure2(viewModel, payment), _null, A.Text$(t1.get$emailReceipt(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t6, payment.sendEmail === true)], t4); if (gateway.get$supportsRefunds()) { t9 = A.Theme_of(context).colorScheme; t10 = J.$index$asx(t7.$index(0, t8), "gateway_refund"); t10 = A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = J.$index$asx(t7.$index(0, t8), "gateway_refund_help"); t6.push(A.SwitchListTile$(t9.secondary, _null, new A._PaymentRefundState_build_closure3(viewModel, payment), _null, A.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, payment.gatewayRefund === true)); } body = A.Form$(_null, A.Column$(A._setArrayType([t5, A.FormCard$(_null, t6, _null, _null, false, _null, false, _null)], t4), B.CrossAxisAlignment_2, new A.ValueKey(payment.id, t3), B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), t2); t2 = new A._PaymentRefundState_build_onSavePressed(_this, viewModel); if (A.getLayout(context) === B.AppLayout_mobile) { t3 = t1.get$refundPayment(); return A.EditScaffold$(_null, _null, body, _null, payment, _null, false, _null, new A._PaymentRefundState_build_closure4(viewModel), new A._PaymentRefundState_build_closure5(t2), t1.get$refund(), t3); } else { t3 = A.Theme_of(context).canvasColor; t5 = A.Text$(t1.get$refundPayment(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A.SingleChildScrollView$(new A.SizedBox(400, _null, body, _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t7 = A._setArrayType([], t4); if (state.isSaving) t7.push(new A.Padding(B.EdgeInsets_0_0_16_0, new A.SizedBox(30, 30, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null), _null)); else B.JSArray_methods.addAll$1(t7, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PaymentRefundState_build_closure6(context), _null), A.TextButton$(false, A.Text$(t1.get$refund().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PaymentRefundState_build_closure7(t2, context), _null)], t4)); return A.AlertDialog$(t7, B.EdgeInsets_0_0_4_0, t3, t6, B.EdgeInsets_0_0_0_0, _null, _null, t5); } } }; A._PaymentRefundState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 33 }; A._PaymentRefundState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 33 }; A._PaymentRefundState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._PaymentRefundState__onChanged_closure.prototype = { call$0() { var t1 = this.$this, payment = t1._widget.viewModel.payment.rebuild$1(new A._PaymentRefundState__onChanged__closure(t1)); if (!J.$eq$(payment, t1._widget.viewModel.payment)) t1._widget.viewModel.onChanged.call$1(payment); }, $signature: 1 }; A._PaymentRefundState__onChanged__closure.prototype = { call$1(b) { var t1 = A.parseDouble(this.$this._payment_refund$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 44 }; A._PaymentRefundState_build_closure.prototype = { call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 206 }; A._PaymentRefundState_build_closure1.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; A._PaymentRefundState_build_closure0.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentRefundState_build__closure1(date))); }, $signature: 53 }; A._PaymentRefundState_build__closure1.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_date = this.date; return b; }, $signature: 44 }; A._PaymentRefundState_build_closure2.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentRefundState_build__closure0(value))); }, $signature: 10 }; A._PaymentRefundState_build__closure0.prototype = { call$1(b) { b.get$_payment_model$_$this()._sendEmail = this.value; return b; }, $signature: 44 }; A._PaymentRefundState_build_closure3.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentRefundState_build__closure(value))); }, $signature: 10 }; A._PaymentRefundState_build__closure.prototype = { call$1(b) { b.get$_payment_model$_$this()._gatewayRefund = this.value; return b; }, $signature: 44 }; A._PaymentRefundState_build_onSavePressed.prototype = { call$1(context) { var isValid = $.$get$_PaymentRefundState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._PaymentRefundState_build_onSavePressed_closure(t1, isValid)); if (!isValid) return; t1 = new A._Future($.Zone__current, type$._Future_legacy_PaymentEntity); t1.then$1$1(0, new A._PaymentRefundState_build_onSavePressed_closure0(context), type$.Null); this.viewModel.onRefundPressed.call$2(context, new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_PaymentEntity)); }, $signature: 30 }; A._PaymentRefundState_build_onSavePressed_closure.prototype = { call$0() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; A._PaymentRefundState_build_onSavePressed_closure0.prototype = { call$1(value) { A.Navigator_of(this.context, false).pop$0(0); }, $signature: 148 }; A._PaymentRefundState_build_closure4.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._PaymentRefundState_build_closure5.prototype = { call$1(context) { return this.onSavePressed.call$1(context); }, $signature: 30 }; A._PaymentRefundState_build_closure6.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._PaymentRefundState_build_closure7.prototype = { call$0() { return this.onSavePressed.call$1(this.context); }, $signature: 0 }; A.PaymentableEditor0.prototype = { createState$0() { return new A._PaymentableEditorState0(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._PaymentableEditorState0.prototype = { didChangeDependencies$0() { var t3, _this = this, t1 = _this._payment_refund$_amountController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._payment_refund$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._PaymentableEditorState_didChangeDependencies_closure1(_this)); t2 = _this._widget.paymentable; _this._payment_refund$_invoiceId = t2.invoiceId; t2 = t2.amount; t3 = _this._framework$_element; t3.toString; t1.set$text(0, A.formatNumber(t2, t3, null, null, B.FormatNumberType_4, true, null, false)); B.JSArray_methods.forEach$1(_this._payment_refund$_controllers, new A._PaymentableEditorState_didChangeDependencies_closure2(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._payment_refund$_controllers, new A._PaymentableEditorState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_refund$_onChanged$1(clientId) { var t1, t2, payment, _this = this, paymentable = _this._widget.paymentable.rebuild$1(new A._PaymentableEditorState__onChanged_closure6(_this)); if (paymentable.$eq(0, _this._widget.paymentable) || paymentable.get$isEmpty(paymentable)) return; t1 = _this._widget; t2 = t1.index; t1 = t1.viewModel.payment; payment = t2 === t1.invoices._list.length ? t1.rebuild$1(new A._PaymentableEditorState__onChanged_closure7(paymentable)) : t1.rebuild$1(new A._PaymentableEditorState__onChanged_closure8(_this, paymentable)); if (clientId != null) payment = payment.rebuild$1(new A._PaymentableEditorState__onChanged_closure9(clientId)); _this._widget.viewModel.onChanged.call$1(payment); }, _payment_refund$_onChanged$0() { return this._payment_refund$_onChanged$1(null); }, build$1(_, context) { var t2, hasMultipleInvoices, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._widget, viewModel = t1.viewModel, payment = viewModel.payment, paymentable = t1.paymentable; t1 = type$.legacy_AppLocalization; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1); hasMultipleInvoices = payment.get$invoicePaymentables().length > 1; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1).get$invoice(); t3 = paymentable.invoiceId; t4 = payment.paymentables._list; t5 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,String*>"); t6 = type$.JSArray_legacy_Widget; t1 = A._setArrayType([A.Expanded$(A.EntityDropdown$(false, false, false, t3, A.List_List$of(new A.MappedListIterable(t4, new A._PaymentableEditorState_build_closure8(), t5), true, t5._eval$1("ListIterable.E")), _null, B.EntityType_invoice, B.List_empty0, t1, _null, _null, new A._PaymentableEditorState_build_closure9(_this), new A._PaymentableEditorState_build_closure10(context), _null, _null), 1)], t6); t3 = _this._payment_refund$_invoiceId; t4 = t3 == null; if ((t4 ? "" : t3).length !== 0) { if (t4) t3 = ""; B.JSArray_methods.addAll$1(t1, A._setArrayType([new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.DecoratedFormField$(false, _null, !hasMultipleInvoices, false, _this._payment_refund$_amountController, _null, t3.length !== 0, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t2.get$amount(), _null, _null, false, _null, _null, _null, false, _null, _null, B.TextAlign_4, new A._PaymentableEditorState_build_closure11(hasMultipleInvoices, t2)), 1)], t6)); } if (hasMultipleInvoices && _this._payment_refund$_invoiceId != null) { t3 = A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null); t2 = t2.get$remove(t2); B.JSArray_methods.addAll$1(t1, A._setArrayType([new A.SizedBox(16, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t3, _null, paymentable.get$isEmpty(paymentable) ? _null : new A._PaymentableEditorState_build_closure12(_this, viewModel, payment), B.EdgeInsets_8_8_8_8, _null, t2, _null)], t6)); } return A.Row$(t1, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A._PaymentableEditorState_didChangeDependencies_closure1.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 33 }; A._PaymentableEditorState_didChangeDependencies_closure2.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 33 }; A._PaymentableEditorState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._PaymentableEditorState__onChanged_closure6.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._payment_refund$_invoiceId; b.get$_payment_model$_$this()._payment_model$_invoiceId = t2; t1 = A.parseDouble(t1._payment_refund$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 461 }; A._PaymentableEditorState__onChanged_closure7.prototype = { call$1(b) { var t1 = b.get$invoices(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); B.JSArray_methods.add$1(t1.get$_safeList(), this.paymentable); return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure8.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[t2] = this.paymentable; return b; }, $signature: 44 }; A._PaymentableEditorState__onChanged_closure9.prototype = { call$1(b) { b.get$_payment_model$_$this()._payment_model$_clientId = this.clientId; return b; }, $signature: 44 }; A._PaymentableEditorState_build_closure8.prototype = { call$1(payment) { return payment.invoiceId; }, $signature: 190 }; A._PaymentableEditorState_build_closure10.prototype = { call$1(entity) { type$.legacy_InvoiceEntity._as(entity); return A.formatNumber(entity.amount, this.context, entity.clientId, null, B.FormatNumberType_0, true, null, false); }, $signature: 41 }; A._PaymentableEditorState_build_closure9.prototype = { call$1(selected) { var t1; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t1._payment_refund$_onChanged$1(selected.clientId); t1.setState$1(new A._PaymentableEditorState_build__closure2(t1, selected)); }, $signature: 34 }; A._PaymentableEditorState_build__closure2.prototype = { call$0() { this.$this._payment_refund$_invoiceId = this.invoice.id; }, $signature: 1 }; A._PaymentableEditorState_build_closure11.prototype = { call$1(value) { var t1; if (!this.hasMultipleInvoices) t1 = J.trim$0$s(value).length === 0 || A.parseDouble(value, false) === 0; else t1 = false; return t1 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._PaymentableEditorState_build_closure12.prototype = { call$0() { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentableEditorState_build__closure1(this.$this))); }, $signature: 1 }; A._PaymentableEditorState_build__closure1.prototype = { call$1(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; B.JSArray_methods.removeAt$1(t1.get$_safeList(), t2); return b; }, $signature: 44 }; A.PaymentRefundScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentRefundScreen_build_closure(), new A.PaymentRefundScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentRefundVM); } }; A.PaymentRefundScreen_build_closure0.prototype = { call$1(store) { return A.PaymentRefundVM_PaymentRefundVM$fromStore(store); }, $signature: 2467 }; A.PaymentRefundScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.PaymentRefund(viewModel, new A.ValueKey(viewModel.payment.id, type$.ValueKey_legacy_String)); }, $signature: 2468 }; A.PaymentRefundVM.prototype = { get$payment() { return this.payment; } }; A.PaymentRefundVM_PaymentRefundVM$fromStore_closure.prototype = { call$1(payment) { this.store.get$_dispatchers()[0].call$1(new A.UpdatePayment(payment)); }, $signature: 148 }; A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.PaymentEntity_PaymentEntity(_null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.PaymentRefundVM_PaymentRefundVM$fromStore_closure0.prototype = { call$2(context, completer) { var t1 = this.store, t2 = this.payment; t1.get$_dispatchers()[0].call$1(new A.RefundPaymentRequest(completer, t2)); return completer.future.then$1$1(0, new A.PaymentRefundVM_PaymentRefundVM$fromStore__closure(context, t1, t2), type$.Null).catchError$1(new A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0(context)); }, $signature: 2469 }; A.PaymentRefundVM_PaymentRefundVM$fromStore__closure.prototype = { call$1(savedPayment) { var _s13_ = "/payment/view", t1 = this.context, t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "refunded_payment"); A.showToast(t2 == null ? "" : t2); if (A.getLayout(t1) === B.AppLayout_mobile) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); if (this.payment.get$isNew()) { t2 = type$.legacy_Object; A.Navigator_of(t1, false).pushReplacementNamed$2$1(_s13_, t2, t2); } else A.Navigator_of(t1, false).pop$1(0, savedPayment); } else A.viewEntity(false, savedPayment, null, true); }, $signature: 148 }; A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0.prototype = { call$1(error) { A.showDialog(null, true, new A.PaymentRefundVM_PaymentRefundVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.PaymentRefundVM_PaymentRefundVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.PaymentView.prototype = { createState$0() { return new A._PaymentViewState(B._StateLifecycle_0); } }; A._PaymentViewState.prototype = { build$1(_, context) { var t3, client, companyGateway, companyGatewayLink, fields, paymentType, _null = null, viewModel = this._widget.viewModel, payment = viewModel.payment, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = payment.clientId; client = t1[t2].clientState.map._map$_map.$index(0, t3); if (client == null) client = A.ClientEntity_ClientEntity(_null, t3, _null, _null); t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); companyGateway = t1[t2].companyGatewayState.$get$1(0, payment.companyGatewayId); t2 = payment.transactionReference; companyGatewayLink = A.GatewayEntity_getPaymentUrl(companyGateway.gatewayId, t2); t1 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); t1 = payment.date; if (t1.length !== 0) fields.$indexSet(0, "date", A.formatDate(t1, context, true, true, false)); t1 = payment.typeId; if ((t1 == null ? "" : t1).length !== 0) { paymentType = state.staticState.paymentTypeMap._map$_map.$index(0, t1); if (paymentType != null) fields.$indexSet(0, "type_id", paymentType.name); } if (t2.length !== 0) fields.$indexSet(0, "transaction_reference", t2); t1 = payment.refunded; if (t1 !== 0) fields.$indexSet(0, "refunded", A.formatNumber(t1, context, client.id, _null, B.FormatNumberType_0, true, _null, false)); return new A.ViewScaffold(this._widget.isFilter, payment, new A.Builder(new A._PaymentViewState_build_closure(this, viewModel, payment, state, t3, client, companyGateway, companyGatewayLink, fields), _null), _null, _null, _null); } }; A._PaymentViewState_build_closure.prototype = { call$1(context) { var t6, t7, t8, t9, t10, t11, t12, t13, t14, _i, paymentable, t15, t16, t17, t18, _this = this, _null = null, t1 = _this.payment, t2 = _this.state, t3 = t1.statusId, t4 = new A.PaymentStatusColors(t2.prefState.get$colorThemeModel()).get$colors().$index(0, t3), t5 = _this.localization; t3 = t5.lookup$1("payment_status_" + t3); t6 = t5.get$amount(); t7 = t1.amount; t8 = t1.refunded; t9 = _this.client; t10 = t9.id; t11 = A.formatNumber(t7 - t8, context, t10, _null, B.FormatNumberType_0, true, _null, false); t12 = t1.applied; t13 = _this.$this; t14 = type$.JSArray_legacy_Widget; t9 = A._setArrayType([A.EntityHeader$(t1, t6, t5.get$applied(), A.formatNumber(t12, context, t10, _null, B.FormatNumberType_0, true, _null, false), t4, t3, t11), new A.ListDivider(_null), A.EntityListTile$(t9, t13._widget.isFilter, t9.get$primaryContact().email)], t14); for (t3 = t1.get$invoicePaymentables(), t4 = t3.length, t6 = t2.userCompanyStates, t2 = t2.uiState, t10 = t1.clientId, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { paymentable = t3[_i]; t11 = t13._widget.isFilter; t15 = t2.selectedCompanyIndex; t15 = t6._list[t15].invoiceState.map; t16 = paymentable.invoiceId; t16 = t15._map$_map.$index(0, t16); t15 = J.$add$ansx(A.formatNumber(paymentable.amount, context, t10, _null, B.FormatNumberType_0, true, _null, false), " \u2022 "); t17 = paymentable.createdAt; t17 = (t17 == null ? 0 : t17) * 1000; t18 = new A.DateTime(t17, true); t18.DateTime$_withValue$2$isUtc(t17, true); t9.push(new A.EntityListTile(t15 + A.formatDate(t18.toIso8601String$0(), context, true, true, false), t16, t11, _null)); } for (t3 = t1.get$creditPaymentables(), t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { paymentable = t3[_i]; t11 = t13._widget.isFilter; t15 = t2.selectedCompanyIndex; t15 = t6._list[t15].creditState.map; t16 = paymentable.creditId; t16 = t15._map$_map.$index(0, t16); t15 = J.$add$ansx(A.formatNumber(paymentable.amount, context, t10, _null, B.FormatNumberType_0, true, _null, false), " \u2022 "); t17 = paymentable.createdAt; t17 = (t17 == null ? 0 : t17) * 1000; t18 = new A.DateTime(t17, true); t18.DateTime$_withValue$2$isUtc(t17, true); t9.push(new A.EntityListTile(t15 + A.formatDate(t18.toIso8601String$0(), context, true, true, false), t16, t11, _null)); } if (t1.companyGatewayId.length !== 0) { t3 = A.Text$(t5.get$gateway() + " \u203a " + _this.companyGateway.label, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _this.companyGatewayLink; t5 = t4 != null; t4 = t5 ? new A._PaymentViewState_build__closure(t4) : _null; t10 = A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58497_MaterialIcons_null_false, _null, _null), _null, new A._PaymentViewState_build__closure0(), B.EdgeInsets_8_8_8_8, _null, _null, _null); t5 = t5 ? new A.IgnorePointer(true, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58460_MaterialIcons_null_true, _null, _null), _null, new A._PaymentViewState_build__closure1(), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null) : _null; B.JSArray_methods.addAll$1(t9, A._setArrayType([A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.IgnorePointer(true, _null, t10, _null), _null, t4, false, _null, _null, _null, _null, t3, t5, _null), new A.ListDivider(_null)], t14)); } t3 = t1.privateNotes; t9.push(t3.length !== 0 ? A.Column$(A._setArrayType([new A.IconMessage(t3, _null, _null, _null, _null), A.Container$(_null, _null, B.Clip_0, A.Theme_of(context).cardColor, _null, _null, _null, 12, _null, _null, _null, _null, _null, _null)], t14), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t9.push(new A.FieldGrid(_this.fields, _null)); t3 = A.Expanded$(new A.ScrollableListView(t9, _null, _null, _null), 1); t2 = t2.selectedCompanyIndex; t2 = t6._list[t2].userCompany.company.enableApplyingPayments; t4 = t2 ? B.EntityAction_applyPayment : B.EntityAction_sendEmail; t2 = !t2 || t12 < t7; return A.RefreshIndicator$(A.Column$(A._setArrayType([t3, new A.BottomButtons(t1, t4, B.EntityAction_refundPayment, t2, t8 < t7, _null)], t14), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), new A._PaymentViewState_build__closure2(_this.viewModel, context)); }, $signature: 706 }; A._PaymentViewState_build__closure2.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._PaymentViewState_build__closure.prototype = { call$0() { return A.launch(this.companyGatewayLink, null, false); }, $signature: 26 }; A._PaymentViewState_build__closure0.prototype = { call$0() { return null; }, $signature: 1 }; A._PaymentViewState_build__closure1.prototype = { call$0() { return null; }, $signature: 1 }; A.PaymentViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentViewScreen_build_closure(this), new A.PaymentViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentViewVM); } }; A.PaymentViewScreen_build_closure0.prototype = { call$1(store) { return A.PaymentViewVM_PaymentViewVM$fromStore(store); }, $signature: 2470 }; A.PaymentViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.PaymentView(vm, this.$this.isFilter, null); }, $signature: 2471 }; A.PaymentViewVM.prototype = { get$payment() { return this.payment; }, get$company() { return this.company; } }; A.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadPayment(completer, this.payment.id)); return completer.future; }, $signature: 17 }; A.PaymentViewVM_PaymentViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.PaymentTermEdit.prototype = { createState$0() { var t1 = A._setArrayType([], type$.JSArray_legacy_TextEditingController); return new A._PaymentTermEditState(new A.Debouncer(500, false), t1, new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0); } }; A._PaymentTermEditState.prototype = { didChangeDependencies$0() { var paymentTerm, _this = this, t1 = _this._numDaysController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._payment_term_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._PaymentTermEditState_didChangeDependencies_closure(_this)); paymentTerm = _this._widget.viewModel.paymentTerm; t2 = _this._framework$_element; t2.toString; t1.set$text(0, A.formatNumber(paymentTerm.numDays, t2, null, null, B.FormatNumberType_5, true, null, false)); B.JSArray_methods.forEach$1(_this._payment_term_edit$_controllers, new A._PaymentTermEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._payment_term_edit$_controllers, new A._PaymentTermEditState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_term_edit$_onChanged$0() { var _this = this, paymentTerm = _this._widget.viewModel.paymentTerm.rebuild$1(new A._PaymentTermEditState__onChanged_closure(_this)); if (!paymentTerm.$eq(0, _this._widget.viewModel.paymentTerm)) _this._payment_term_edit$_debouncer.run$1(new A._PaymentTermEditState__onChanged_closure0(_this, paymentTerm)); }, build$1(_, context) { var t3, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = viewModel.paymentTerm; if (t2.get$isNew()) t3 = t1.get$newPaymentTerm(); else { t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_payment_term"); if (t3 == null) t3 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._PaymentTermEditState_build_closure(this, t1), _null), $.$get$_PaymentTermEditState__formKey()), _null, t2, _null, false, _null, new A._PaymentTermEditState_build_closure0(viewModel), new A._PaymentTermEditState_build_closure1(viewModel), _null, t3); } }; A._PaymentTermEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_payment_term_edit$_onChanged()); }, $signature: 33 }; A._PaymentTermEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_payment_term_edit$_onChanged()); }, $signature: 33 }; A._PaymentTermEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_payment_term_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._PaymentTermEditState__onChanged_closure.prototype = { call$1(b) { var t1 = A.parseInt(this.$this._numDaysController._change_notifier$_value.text, false); b.get$_payment_term_model$_$this()._numDays = t1; return b; }, $signature: 606 }; A._PaymentTermEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.paymentTerm); }, $signature: 1 }; A._PaymentTermEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._PaymentTermEditState_build_closure1.prototype = { call$1(context) { if (!$.$get$_PaymentTermEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._PaymentTermEditState_build_closure.prototype = { call$1(context) { var t3, _null = null, t1 = this.localization, t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "number_of_days"); if (t2 == null) t2 = ""; t3 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, false, this.$this._numDaysController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A._PaymentTermEditState_build__closure(t1))], t3), _null, _null, false, _null, false, _null)], t3), _null, _null, _null); }, $signature: 167 }; A._PaymentTermEditState_build__closure.prototype = { call$1(value) { return value == null || value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A.PaymentTermEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentTermEditScreen_build_closure(), new A.PaymentTermEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermEditVM); } }; A.PaymentTermEditScreen_build_closure0.prototype = { call$1(store) { return A.PaymentTermEditVM_PaymentTermEditVM$fromStore(store); }, $signature: 2472 }; A.PaymentTermEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.PaymentTermEdit(viewModel, new A.ValueKey(viewModel.paymentTerm.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2473 }; A.PaymentTermEditVM.prototype = { get$paymentTerm() { return this.paymentTerm; }, get$company() { return this.company; } }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure.prototype = { call$1(paymentTerm) { this.store.get$_dispatchers()[0].call$1(new A.UpdatePaymentTerm(paymentTerm)); }, $signature: 320 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.PaymentTermEntity_PaymentTermEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure.prototype = { call$0() { var t1 = this.store, paymentTerm = A._lateReadCheck(t1.__Store__state, "_state").uiState.paymentTermUIState.editing, t2 = this.context, t3 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t4 = new A._Future($.Zone__current, type$._Future_legacy_PaymentTermEntity); t1.get$_dispatchers()[0].call$1(new A.SavePaymentTermRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_legacy_PaymentTermEntity), paymentTerm)); return t4.then$1$1(0, new A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure(paymentTerm, t3, this.state, t1, t2), type$.Null).catchError$1(new A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0()); }, $signature: 37 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure.prototype = { call$1(savedPaymentTerm) { var _this = this, _s23_ = "/settings/payment_terms", t1 = _this.paymentTerm, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_payment_term"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_payment_term"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); t2 = _this.context; if (t1.get$isNew()) { t1 = type$.legacy_Object; A.Navigator_of(t2, false).pushReplacementNamed$2$1(_s23_, t1, t1); } else A.Navigator_of(t2, false).pop$1(0, savedPaymentTerm); } else A.viewEntity(false, savedPaymentTerm, null, true); }, $signature: 320 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.PaymentTermListItem.prototype = { build$1(_, context) { var filterMatch, t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, paymentTermUIState = uiState.paymentTermUIState, t1 = paymentTermUIState.listUIState.selectedIds, t2 = _this.filter; if (t2 != null && t2.length !== 0) { _this.paymentTerm.toString; filterMatch = A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), t2); } else filterMatch = _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.paymentTerm; t4 = t2.id; t5 = uiState.get$isEditing() ? paymentTermUIState.editing.id : paymentTermUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.PaymentTermListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.PaymentTermListItem_build_closure0(_this), new A.PaymentTermListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t8, new A.EntityStateLabel(t2, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t6, _null, _null), t4 === t5, true, true, _null); }, get$user(receiver) { return this.user; }, get$paymentTerm() { return this.paymentTerm; } }; A.PaymentTermListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.paymentTerm, false, false); return t1; }, $signature: 0 }; A.PaymentTermListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.paymentTerm, false, true); return t1; }, $signature: 0 }; A.PaymentTermListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.PaymentTermListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentTermListBuilder_build_closure(), A.payment_term_list_vm_PaymentTermListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermListVM); } }; A.PaymentTermListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return A.EntityList$(viewModel.paymentTermList, B.EntityType_paymentTerm, new A.PaymentTermListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2474 }; A.PaymentTermListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, paymentTermId = J.$index$asx(t1.paymentTermList, index), paymentTerm = t1.paymentTermMap._map$_map.$index(0, paymentTermId), t2 = state.getUIState$1(B.EntityType_paymentTerm).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = paymentTerm.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.PaymentTermListItem(t4, paymentTerm, t1.filter, t2, null); }, $signature: 2475 }; A.PaymentTermListVM.prototype = {}; A.PaymentTermListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.PaymentTermListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.PaymentTermListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortPaymentTerms(field)); }, $signature: 5 }; A.PaymentTermListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearPaymentTermMultiselect()); }, $signature: 9 }; A.PaymentTermScreen.prototype = { build$1(_, context) { var t4, t5, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.paymentTermUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.paymentTermList; t2 = t2.filter; t5 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_paymentTerm, false, B.List_empty17, new A.PaymentTermScreen_build_closure(store), new A.PaymentTermScreen_build_closure0(store), new A.PaymentTermScreen_build_closure1(store), new A.PaymentTermScreen_build_closure2(store), new A.PaymentTermScreen_build_closure3(store), new A.PaymentTermScreen_build_closure4(store), new A.PaymentTermScreen_build_closure5(store), _null, A._setArrayType(["name"], type$.JSArray_legacy_String), B.List_empty18, _null); t3 = state.prefState.appLayout === B.AppLayout_mobile && userCompany.can$2(B.UserPermission_create, B.EntityType_paymentTerm) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "payment_term_fab", false, new A.PaymentTermScreen_build_closure6(context), t3.get$newPaymentTerm()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_paymentTerm, t2, new A.PaymentTermScreen_build_closure7(store), t4, _null, _null, new A.PaymentTermScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.PaymentTermListBuilder(_null), t5, B.EntityType_paymentTerm, t3, 3, "company_details", new A.PaymentTermScreen_build_closure9(store), new A.PaymentTermScreen_build_closure10(store)); } }; A.PaymentTermScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartPaymentTermMultiselect()); }, $signature: 9 }; A.PaymentTermScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTerms(value)); }, $signature: 11 }; A.PaymentTermScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByState(state)); }, $signature: 27 }; A.PaymentTermScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.paymentTermUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPaymentTermMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPaymentTermMultiselect()); }, $signature: 1 }; A.PaymentTermScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortPaymentTerms(value)); }, $signature: 11 }; A.PaymentTermScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByState(state)); }, $signature: 27 }; A.PaymentTermScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.paymentTermUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPaymentTermMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPaymentTermMultiselect()); }, $signature: 1 }; A.PaymentTermScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByCustom1(value)); }, $signature: 5 }; A.PaymentTermScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByCustom2(value)); }, $signature: 5 }; A.PaymentTermScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByCustom3(value)); }, $signature: 5 }; A.PaymentTermScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPaymentTermsByCustom4(value)); }, $signature: 5 }; A.PaymentTermScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_paymentTerm); }, $signature: 1 }; A.PaymentTermScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentTermScreenBuilder_build_closure(), A.payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermScreenVM); } }; A.PaymentTermScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.PaymentTermScreen(vm, null); }, $signature: 2476 }; A.PaymentTermScreenVM.prototype = {}; A.PaymentTermView.prototype = { createState$0() { return new A._PaymentTermViewState(B._StateLifecycle_0); } }; A._PaymentTermViewState.prototype = { build$1(_, context) { var _null = null, viewModel = this._widget.viewModel, paymentTerm = viewModel.paymentTerm, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new A.ViewScaffold(false, paymentTerm, new A.ScrollableListView(A._setArrayType([A.EntityHeader$(paymentTerm, t1.get$name(t1), _null, _null, _null, _null, paymentTerm.name)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._PaymentTermViewState_build_closure(viewModel), _null, _null); } }; A._PaymentTermViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.PaymentTermViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentTermViewScreen_build_closure(), new A.PaymentTermViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermViewVM); } }; A.PaymentTermViewScreen_build_closure0.prototype = { call$1(store) { return A.PaymentTermViewVM_PaymentTermViewVM$fromStore(store); }, $signature: 2477 }; A.PaymentTermViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.PaymentTermView(vm, null); }, $signature: 2478 }; A.PaymentTermViewVM.prototype = { get$paymentTerm() { return this.paymentTerm; }, get$company() { return this.company; } }; A.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/payment_terms")); }, $signature: 1 }; A.ProductEdit.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._ProductEditState(t1, new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A._ProductEditState.prototype = { didChangeDependencies$0() { var product, _this = this, _null = null, t1 = _this._productKeyController, t2 = _this._notesController, t3 = _this._priceController, t4 = _this._quantityController, t5 = _this._costController, t6 = _this._product_edit$_custom1Controller, t7 = _this._product_edit$_custom2Controller, t8 = _this._product_edit$_custom3Controller, t9 = _this._product_edit$_custom4Controller, t10 = _this._stockQuantityController, t11 = _this._notificationThresholdController, t12 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11], type$.JSArray_legacy_TextEditingController); _this._product_edit$_controllers = t12; B.JSArray_methods.forEach$1(t12, new A._ProductEditState_didChangeDependencies_closure(_this)); product = _this._widget.viewModel.product; t1.set$text(0, product.productKey); t2.set$text(0, product.notes); t2 = _this._framework$_element; t2.toString; t3.set$text(0, A.formatNumber(product.price, t2, _null, _null, B.FormatNumberType_4, true, _null, false)); t2 = _this._framework$_element; t2.toString; t4.set$text(0, A.formatNumber(product.quantity, t2, _null, _null, B.FormatNumberType_5, true, _null, false)); t2 = _this._framework$_element; t2.toString; t5.set$text(0, A.formatNumber(product.cost, t2, _null, _null, B.FormatNumberType_4, true, _null, false)); t6.set$text(0, product.customValue1); t7.set$text(0, product.customValue2); t8.set$text(0, product.customValue3); t9.set$text(0, product.customValue4); t9 = _this._framework$_element; t9.toString; t10.set$text(0, A.formatNumber(product.stockQuantity, t9, _null, _null, B.FormatNumberType_2, true, _null, false)); t1 = product.stockNotificationThreshold; if (t1 === 0) t1 = ""; else { t2 = _this._framework$_element; t2.toString; t2 = A.formatNumber(t1, t2, _null, _null, B.FormatNumberType_2, true, _null, false); t1 = t2; } t11.set$text(0, t1); B.JSArray_methods.forEach$1(_this._product_edit$_controllers, new A._ProductEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; B.JSArray_methods.forEach$1(_this._product_edit$_controllers, new A._ProductEditState_dispose_closure(_this)); _this._product_edit$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, _product_edit$_onChanged$0() { var _this = this, product = _this._widget.viewModel.product.rebuild$1(new A._ProductEditState__onChanged_closure(_this)); if (!J.$eq$(product, _this._widget.viewModel.product)) _this._product_edit$_debouncer.run$1(new A._ProductEditState__onChanged_closure0(_this, product)); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, product = viewModel.product, company = viewModel.company; if (product.get$isNew()) t2 = t1.get$newProduct(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_product"); if (t2 == null) t2 = ""; } t3 = $.$get$_ProductEditState__formKey(); t4 = t1.get$product(t1); t5 = _this._product_edit$_autoValidate; t6 = viewModel.onSavePressed; t7 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.DecoratedFormField$(false, _null, true, t5, _this._productKeyController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t4, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, new A._ProductEditState_build_closure(t1)), A.DecoratedFormField$(false, _null, false, false, _this._notesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$description(t1), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._priceController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$price(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)], t7); if (company.enableProductQuantity) t4.push(A.DecoratedFormField$(false, _null, false, false, _this._quantityController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$defaultQuantity(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)); if (company.enableProductCost) t4.push(A.DecoratedFormField$(false, _null, false, false, _this._costController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t1.get$cost(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)); if (company.get$enableFirstItemTaxRate() || product.taxName1.length !== 0) t4.push(new A.TaxRateDropdown(t1.get$tax(), new A._ProductEditState_build_closure0(viewModel, product), product.taxName1, product.taxRate1, _null)); if (company.get$enableSecondItemTaxRate() || product.taxName2.length !== 0) t4.push(new A.TaxRateDropdown(t1.get$tax(), new A._ProductEditState_build_closure1(viewModel, product), product.taxName2, product.taxRate2, _null)); if (company.get$enableThirdItemTaxRate() || product.taxName3.length !== 0) t4.push(new A.TaxRateDropdown(t1.get$tax(), new A._ProductEditState_build_closure2(viewModel, product), product.taxName3, product.taxRate3, _null)); t4.push(new A.CustomField(_this._product_edit$_custom1Controller, _null, t6, "product1", product.customValue1, false, _null)); t4.push(new A.CustomField(_this._product_edit$_custom2Controller, _null, t6, "product2", product.customValue2, false, _null)); t4.push(new A.CustomField(_this._product_edit$_custom3Controller, _null, t6, "product3", product.customValue3, false, _null)); t4.push(new A.CustomField(_this._product_edit$_custom4Controller, _null, t6, "product4", product.customValue4, false, _null)); if (company.trackInventory) { t5 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._stockQuantityController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t1.get$stockQuantity(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)], t7); if (company.stockNotification) { t8 = product.stockNotification; t9 = A._setArrayType([new A.SizedBox(_null, 16, _null, _null), A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._ProductEditState_build_closure3(viewModel, product), _null, _null, A.Text$(t1.get$stockNotifications(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t8)], t7); if (t8) { t8 = t1.get$notificationThreshold(); t10 = company.stockNotificationThreshold; t9.push(A.DecoratedFormField$(false, _null, false, false, _this._notificationThresholdController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, J.$add$ansx(t8, t10 !== 0 ? " \u2022 " + A.S(t1.get$defaultWord()) + " " + t10 : ""), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)); } B.JSArray_methods.addAll$1(t5, t9); } B.JSArray_methods.addAll$1(t4, t5); } return A.EditScaffold$(_null, _null, new A.AppForm(t3, _null, new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t4, _null, _null, false, _null, true, _null)], t7), _null, _null, new A.ValueKey("__product_" + product.id + "_" + product.updatedAt + "__", type$.ValueKey_legacy_String)), _this._product_edit$_focusNode, _null), _null, product, _null, false, _null, new A._ProductEditState_build_closure4(viewModel), new A._ProductEditState_build_closure5(_this, viewModel), _null, t2); } }; A._ProductEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_product_edit$_onChanged()); }, $signature: 12 }; A._ProductEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_product_edit$_onChanged()); }, $signature: 12 }; A._ProductEditState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_product_edit$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._ProductEditState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._productKeyController._change_notifier$_value.text); b.get$_product_model$_$this()._productKey = t2; t2 = J.trim$0$s(t1._notesController._change_notifier$_value.text); b.get$_product_model$_$this()._notes = t2; t2 = A.parseDouble(t1._priceController._change_notifier$_value.text, false); b.get$_product_model$_$this()._product_model$_price = t2; t2 = A.parseDouble(t1._quantityController._change_notifier$_value.text, false); b.get$_product_model$_$this()._quantity = t2; t2 = A.parseDouble(t1._costController._change_notifier$_value.text, false); b.get$_product_model$_$this()._cost = t2; t2 = J.trim$0$s(t1._product_edit$_custom1Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue1 = t2; t2 = J.trim$0$s(t1._product_edit$_custom2Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue2 = t2; t2 = J.trim$0$s(t1._product_edit$_custom3Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue3 = t2; t2 = J.trim$0$s(t1._product_edit$_custom4Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue4 = t2; t2 = A.parseInt(J.trim$0$s(t1._stockQuantityController._change_notifier$_value.text), false); b.get$_product_model$_$this()._stockQuantity = t2; t1 = A.parseInt(J.trim$0$s(t1._notificationThresholdController._change_notifier$_value.text), false); b.get$_product_model$_$this()._product_model$_stockNotificationThreshold = t1; return b; }, $signature: 169 }; A._ProductEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.product); }, $signature: 1 }; A._ProductEditState_build_closure4.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._ProductEditState_build_closure5.prototype = { call$1(context) { var isValid = $.$get$_ProductEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._ProductEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._ProductEditState_build__closure.prototype = { call$0() { this.$this._product_edit$_autoValidate = !this.isValid; }, $signature: 1 }; A._ProductEditState_build_closure.prototype = { call$1(val) { var t1; if (val.length === 0 || B.JSString_methods.trim$0(val).length === 0) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localization.localeCode), "please_enter_a_product_key"); if (t1 == null) t1 = ""; } else t1 = null; return t1; }, $signature: 15 }; A._ProductEditState_build_closure0.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure3(taxRate))); }, $signature: 94 }; A._ProductEditState_build__closure3.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate1 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName1 = t1; return b; }, $signature: 169 }; A._ProductEditState_build_closure1.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure2(taxRate))); }, $signature: 94 }; A._ProductEditState_build__closure2.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate2 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName2 = t1; return b; }, $signature: 169 }; A._ProductEditState_build_closure2.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure1(taxRate))); }, $signature: 94 }; A._ProductEditState_build__closure1.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate3 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName3 = t1; return b; }, $signature: 169 }; A._ProductEditState_build_closure3.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure0(value))); }, $signature: 10 }; A._ProductEditState_build__closure0.prototype = { call$1(b) { b.get$_product_model$_$this()._product_model$_stockNotification = this.value; return b; }, $signature: 169 }; A.ProductEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProductEditScreen_build_closure(), new A.ProductEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductEditVM); } }; A.ProductEditScreen_build_closure0.prototype = { call$1(store) { return A.ProductEditVM_ProductEditVM$fromStore(store); }, $signature: 2479 }; A.ProductEditScreen_build_closure.prototype = { call$2(context, vm) { return new A.ProductEdit(vm, new A.ValueKey(vm.product.id, type$.ValueKey_legacy_String)); }, $signature: 2480 }; A.ProductEditVM.prototype = { get$company() { return this.company; }, get$product(receiver) { return this.product; } }; A.ProductEditVM_ProductEditVM$fromStore_closure.prototype = { call$1(product) { this.store.get$_dispatchers()[0].call$1(new A.UpdateProduct(product)); }, $signature: 228 }; A.ProductEditVM_ProductEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.ProductEntity_ProductEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.ProductEditVM_ProductEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ProductEditVM_ProductEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.ProductEditVM_ProductEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, product = A._lateReadCheck(t1.__Store__state, "_state").uiState.productUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_ProductEntity); t1.get$_dispatchers()[0].call$1(new A.SaveProductRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ProductEntity), product)); return t2.then$1$1(0, new A.ProductEditVM_ProductEditVM$fromStore___closure(product, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ProductEditVM_ProductEditVM$fromStore___closure0()); }, $signature: 37 }; A.ProductEditVM_ProductEditVM$fromStore___closure.prototype = { call$1(savedProduct) { var _this = this, _s13_ = "/product/view", t1 = _this.product, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_product"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_product"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedProduct); } else A.viewEntity(false, savedProduct, null, false); }, $signature: 228 }; A.ProductEditVM_ProductEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ProductEditVM_ProductEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ProductEditVM_ProductEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ProductListItem.prototype = { build$1(_, context) { var t2, t3, _this = this, _null = null, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.product.matchesFilterValue$1(t1) : _null, subtitle = filterMatch == null ? _this.product.notes : filterMatch, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = A._lateReadCheck(store.__Store__state, "_state").uiState, productUIState = uiState.productUIState, listUIState = productUIState.listUIState, isInMultiselect = listUIState.selectedIds != null, showCheckbox = _this.onCheckboxChanged != null || isInMultiselect, textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); if (A.getLayout(context) === B.AppLayout_desktop) { t1 = _this.product.id; t1 = t1 === (uiState.get$isEditing() ? productUIState.editing.id : productUIState.selectedId); } else t1 = false; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t2._list[t3].userCompany, _this.product, new A.LayoutBuilder(new A.ProductListItem_build_closure(_this, showCheckbox, listUIState, state, textStyle, filterMatch, subtitle), _null), t1, true, _this.isDismissible, _null); }, get$product(receiver) { return this.product; } }; A.ProductListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ProductListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null); else { t2 = t1.product; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.ProductListItem_build__closure0(t1)); t2 = t4; } t3 = t1.product; t4 = t3.productKey; t5 = t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t6 = _this.textStyle; t7 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([A.Text$(t4 + t5, _null, _null, B.TextOverflow_2, _null, _null, t6, _null, _null, _null)], t7); if (!(!t3.get$isArchived() && !t3.isDeleted)) t5.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t5, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t5 = A._setArrayType([A.Text$(t3.notes, _null, 6, _null, _null, _null, t6, _null, _null, _null)], t7); t8 = _this.filterMatch; if (t8 != null) t5.push(A.Text$(t8, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall, _null, _null, _null)); t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(t5, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.price, context, _null, _null, B.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, t6, B.TextAlign_5, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ProductListItem_build__closure1(t1), new A.ProductListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ProductListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.product; t5 = t4.productKey; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(t4.price, context, _null, _null, B.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.subtitle; t5 = t5.length !== 0 ? A.Text$(t5, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.ProductListItem_build__closure4(t1), new A.ProductListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([t5, new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); t1 = t3; } return t1; }, $signature: 109 }; A.ProductListItem_build__closure2.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.product, false, false); }, $signature: 0 }; A.ProductListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.product, false, true); return t1; }, $signature: 0 }; A.ProductListItem_build__closure.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.ProductListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.product], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.ProductListItem_build__closure5.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.product, false, false); }, $signature: 0 }; A.ProductListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.product, false, true); return t1; }, $signature: 0 }; A.ProductListItem_build__closure3.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.ProductListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProductListBuilder_build_closure(), A.product_list_vm_ProductListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductListVM); } }; A.ProductListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.productList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_product, new A.ProductListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.ProductPresenter(), t2, t4); }, $signature: 2481 }; A.ProductListBuilder_build__closure.prototype = { call$2(context, index) { var t3, t1 = this.viewModel, productId = J.$index$asx(t1.productList, index), product = t1.productMap._map$_map.$index(0, productId), t2 = t1.state.getUIState$1(B.EntityType_product).get$listUIState().selectedIds; if (t2 != null) { t3 = product.get$id(product); t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return A.ProductListItem$(t1.filter, t2, true, null, null, product); }, $signature: 728 }; A.ProductListVM.prototype = {}; A.ProductListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ProductListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ProductListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortProducts(field)); }, $signature: 5 }; A.ProductListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearProductMultiselect()); }, $signature: 9 }; A.ProductPresenter.prototype = { getField$2$context$field(context, field) { var t1, t2, _this = this, _null = null, product = type$.legacy_ProductEntity._as(_this.entity); switch (field) { case "product_key": return A.Text$(product.productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "description": return new A.TableTooltip(product.notes, _null); case "cost": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(product.cost, context, _null, _null, B.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "price": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(product.price, context, _null, _null, B.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "quantity": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(product.quantity, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, product.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, product.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, product.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, product.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + product.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return A.Text$(product.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return A.Text$(product.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return A.Text$(product.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return A.Text$(A.formatNumber(product.taxRate1, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return A.Text$(A.formatNumber(product.taxRate2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return A.Text$(A.formatNumber(product.taxRate3, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "stock_quantity": return A.Text$(A.formatNumber(product.stockQuantity, context, _null, _null, B.FormatNumberType_2, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "notification_threshold": t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return A.Text$(A.formatNumber(A.productNotificationThreshold(t2._list[t1].userCompany.company, product), context, _null, _null, B.FormatNumberType_2, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.ProductScreen.prototype = { build$1(_, context) { var company, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.productUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.productList; t2 = t2.filter; t6 = A.List_List$of(A.ProductPresenter_getDefaultTableFields(t3), true, type$.legacy_String); t7 = type$.JSArray_legacy_String; B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t7)); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t6.push("tax_rate1"); t6.push("tax_rate2"); t6.push("tax_rate3"); t6.push("tax_name1"); t6.push("tax_name2"); t6.push("tax_name3"); t6.push("stock_quantity"); t6.push("notification_threshold"); t8 = A.ProductPresenter_getDefaultTableFields(t3); t6 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("product1", true), company.getCustomFieldValues$2$excludeBlank("product2", true), company.getCustomFieldValues$2$excludeBlank("product3", true), company.getCustomFieldValues$2$excludeBlank("product4", true), t8, B.EntityType_product, false, B.List_empty17, new A.ProductScreen_build_closure(store), new A.ProductScreen_build_closure0(store), new A.ProductScreen_build_closure1(store), new A.ProductScreen_build_closure2(store), new A.ProductScreen_build_closure3(store), new A.ProductScreen_build_closure4(store), new A.ProductScreen_build_closure5(store), _null, A._setArrayType(["product_key", "cost", "updated_at"], t7), B.List_empty18, t6); t7 = state.prefState; t1 = (t7.appLayout === B.AppLayout_mobile || t7.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_product) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "product_fab", false, new A.ProductScreen_build_closure6(context), t1.get$newProduct()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_product, t2, new A.ProductScreen_build_closure7(store), t5, _null, _null, new A.ProductScreen_build_closure8(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.ProductListBuilder(_null), t6, B.EntityType_product, t1, 0, _null, new A.ProductScreen_build_closure9(store), new A.ProductScreen_build_closure10(store)); } }; A.ProductScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartProductMultiselect()); }, $signature: 9 }; A.ProductScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProducts(value)); }, $signature: 11 }; A.ProductScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByState(state)); }, $signature: 27 }; A.ProductScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.productUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearProductMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartProductMultiselect()); }, $signature: 1 }; A.ProductScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortProducts(value)); }, $signature: 5 }; A.ProductScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByCustom1(value)); }, $signature: 5 }; A.ProductScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByCustom2(value)); }, $signature: 5 }; A.ProductScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByCustom3(value)); }, $signature: 5 }; A.ProductScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByCustom4(value)); }, $signature: 5 }; A.ProductScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProductsByState(state)); }, $signature: 27 }; A.ProductScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.productUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearProductMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartProductMultiselect()); }, $signature: 1 }; A.ProductScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_product); }, $signature: 1 }; A.ProductScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProductScreenBuilder_build_closure(), A.product_screen_vm_ProductScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductScreenVM); } }; A.ProductScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ProductScreen(vm, null); }, $signature: 2482 }; A.ProductScreenVM.prototype = {}; A.ProductView.prototype = { createState$0() { return new A._ProductViewState(null, null, B._StateLifecycle_0); } }; A._ProductViewState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.viewModel.state.uiState.productUIState.tabIndex; t1 = A.TabController$(null, t1, 2, _this); _this._product_view$_controller = t1; t1.addListener$1(0, _this.get$_product_view$_onTabChanged()); }, _product_view$_onTabChanged$0() { var t1, store; this._widget.toString; t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._product_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateProductTab(t1)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._product_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._product_view$_controller.removeListener$1(0, _this.get$_product_view$_onTabChanged()); _this._product_view$_controller.dispose$0(0); _this.super$__ProductViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, product = viewModel.product, t2 = this._product_view$_controller, t3 = A.Tab$(_null, t1.get$overview()), t4 = product.documents._list; return new A.ViewScaffold(false, product, new A.Builder(new A._ProductViewState_build_closure(this, viewModel, product), _null), _null, A.TabBar$(t2, _null, false, _null, _null, A._setArrayType([t3, A.Tab$(_null, t4.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t4.length + ")")], type$.JSArray_legacy_Widget)), _null); } }; A._ProductViewState_build_closure.prototype = { call$1(context) { var t1 = this.$this._product_view$_controller, t2 = this.viewModel, t3 = t2.product.id, t4 = type$.ValueKey_legacy_String, t5 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.ProductOverview(t2, new A.ValueKey(t3, t4)), new A._ProductViewState_build__closure(t2, context)), A.RefreshIndicator$(new A.ProductViewDocuments(t2, new A.ValueKey(t3, t4)), new A._ProductViewState_build__closure0(t2, context))], t5), t1, null), 1), new A.BottomButtons(this.product, B.EntityAction_newInvoice, B.EntityAction_clone, true, true, null)], t5), B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._ProductViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ProductViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__ProductViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ProductViewDocuments.prototype = { build$1(_, context) { var t1 = this.viewModel.product.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.ProductViewDocuments_build_closure(this, context), new A.ProductViewDocuments_build_closure0(this, context), null, null); } }; A.ProductViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.ProductViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.ProductOverview.prototype = { createState$0() { return new A._ProductOverviewState(B._StateLifecycle_0); } }; A._ProductOverviewState.prototype = { build$1(_, context) { var fields, t3, _null = null, _s8_ = "product1", _s8_0 = "product2", _s8_1 = "product3", _s8_2 = "product4", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, product = viewModel.product, company = viewModel.company, t2 = product.taxName1, tax = t2.length !== 0 ? J.$add$ansx(A.formatNumber(product.taxRate1, context, _null, _null, B.FormatNumberType_1, true, _null, false), " ") + t2 : ""; t2 = product.taxName2; if (t2.length !== 0) tax += B.JSString_methods.$add(" ", A.formatNumber(product.taxRate2, context, _null, _null, B.FormatNumberType_1, true, _null, false)) + " " + t2; t2 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_literal([t1.get$tax(), tax], t2, t2); t2 = product.customValue1; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), A.formatCustomValue(context, _s8_, t2)); t2 = product.customValue2; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), A.formatCustomValue(context, _s8_0, t2)); t2 = product.customValue3; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), A.formatCustomValue(context, _s8_1, t2)); t2 = product.customValue4; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), A.formatCustomValue(context, _s8_2, t2)); if (company.trackInventory) { fields.$indexSet(0, t1.get$stockQuantity(), A.formatNumber(product.stockQuantity, context, _null, _null, B.FormatNumberType_2, true, _null, false)); t2 = product.stockNotificationThreshold; if (t2 !== 0) fields.$indexSet(0, t1.get$notificationThreshold(), A.formatNumber(t2, context, _null, _null, B.FormatNumberType_2, true, _null, false)); } t2 = t1.get$price(); t3 = A.formatNumber(product.price, context, _null, _null, B.FormatNumberType_0, false, _null, false); t1 = t1.get$cost(); return new A.ScrollableListView(A._setArrayType([A.EntityHeader$(product, t2, t1, company.enableProductCost ? A.formatNumber(product.cost, context, _null, _null, B.FormatNumberType_0, false, _null, false) : _null, _null, _null, t3), new A.ListDivider(_null), new A.FieldGrid(fields, _null), new A.Padding(new A.EdgeInsets(20, 20, 20, 20), A.Text$(product.notes, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null)], type$.JSArray_legacy_Widget), _null, _null, _null); } }; A.ProductViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProductViewScreen_build_closure(this), new A.ProductViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductViewVM); } }; A.ProductViewScreen_build_closure0.prototype = { call$1(store) { return A.ProductViewVM_ProductViewVM$fromStore(store); }, $signature: 2483 }; A.ProductViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.ProductView(vm, false, vm.state.uiState.productUIState.tabIndex, null); }, $signature: 2484 }; A.ProductViewVM.prototype = { $eq(_, other) { if (other == null) return false; return this.product.$eq(0, J.get$product$x(other)) && J.$eq$(this.company, other.get$company()); }, get$hashCode(_) { var t1 = this.product; return t1.get$hashCode(t1) ^ J.get$hashCode$(this.company); }, get$product(receiver) { return this.product; }, get$company() { return this.company; } }; A.ProductViewVM_ProductViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadProduct(completer, this.product.id)); return completer.future; }, $signature: 17 }; A.ProductViewVM_ProductViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ProductViewVM_ProductViewVM$fromStore_closure0.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveProductDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.product)); t1.then$1$1(0, new A.ProductViewVM_ProductViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.ProductViewVM_ProductViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.ProductViewVM_ProductViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.ProductViewVM_ProductViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.ProductViewVM_ProductViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ProductViewVM_ProductViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ProductViewVM_ProductViewVM$fromStore_closure1.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.ProductViewVM_ProductViewVM$fromStore__closure(t2, this.product), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.ProductViewVM_ProductViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadProduct(null, this.product.id)); }, $signature: 103 }; A.ProjectEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._ProjectEditState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._ProjectEditState.prototype = { didChangeDependencies$0() { var project, _this = this, _null = null, t1 = _this._project_edit$_numberController, t2 = _this._project_edit$_nameController, t3 = _this._dueDateController, t4 = _this._hoursController, t5 = _this._project_edit$_taskRateController, t6 = _this._project_edit$_privateNotesController, t7 = _this._project_edit$_publicNotesController, t8 = _this._project_edit$_custom1Controller, t9 = _this._project_edit$_custom2Controller, t10 = _this._project_edit$_custom3Controller, t11 = _this._project_edit$_custom4Controller, t12 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11], type$.JSArray_legacy_TextEditingController); _this._project_edit$_controllers = t12; B.JSArray_methods.forEach$1(t12, new A._ProjectEditState_didChangeDependencies_closure(_this)); project = _this._widget.viewModel.project; t1.set$text(0, project.number); t2.set$text(0, project.name); t3.set$text(0, project.dueDate); t3 = project.budgetedHours; t2 = _this._framework$_element; t2.toString; t4.set$text(0, A.formatNumber(t3, t2, _null, _null, B.FormatNumberType_5, true, _null, false)); t2 = project.taskRate; t3 = _this._framework$_element; t3.toString; t5.set$text(0, A.formatNumber(t2, t3, _null, _null, B.FormatNumberType_4, true, _null, false)); t6.set$text(0, project.privateNotes); t7.set$text(0, project.publicNotes); t8.set$text(0, project.customValue1); t9.set$text(0, project.customValue2); t10.set$text(0, project.customValue3); t11.set$text(0, project.customValue4); B.JSArray_methods.forEach$1(_this._project_edit$_controllers, new A._ProjectEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._project_edit$_controllers, new A._ProjectEditState_dispose_closure(this)); this.super$State$dispose(0); }, _project_edit$_onChanged$0() { var _this = this, project = _this._widget.viewModel.project.rebuild$1(new A._ProjectEditState__onChanged_closure(_this)); if (!J.$eq$(project, _this._widget.viewModel.project)) _this._project_edit$_debouncer.run$1(new A._ProjectEditState__onChanged_closure0(_this, project)); }, build$1(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = viewModel.state, project = viewModel.project; if (project.get$isNew()) t2 = t1.get$newProject(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_project"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._ProjectEditState_build_closure(this, project, t1, viewModel, state), _null), $.$get$_ProjectEditState__formKey()), _null, project, _null, false, _null, new A._ProjectEditState_build_closure0(viewModel), new A._ProjectEditState_build_closure1(this, viewModel), _null, t2); } }; A._ProjectEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_project_edit$_onChanged()); }, $signature: 33 }; A._ProjectEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_project_edit$_onChanged()); }, $signature: 33 }; A._ProjectEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_project_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._ProjectEditState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._project_edit$_numberController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_number = t2; t2 = J.trim$0$s(t1._project_edit$_nameController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_name = t2; t2 = A.parseDouble(t1._hoursController._change_notifier$_value.text, false); b.get$_project_model$_$this()._budgetedHours = t2; t2 = A.parseDouble(t1._project_edit$_taskRateController._change_notifier$_value.text, false); b.get$_project_model$_$this()._taskRate = t2; t2 = J.trim$0$s(t1._project_edit$_publicNotesController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_publicNotes = t2; t2 = J.trim$0$s(t1._project_edit$_privateNotesController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_privateNotes = t2; t2 = J.trim$0$s(t1._project_edit$_custom1Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue1 = t2; t2 = J.trim$0$s(t1._project_edit$_custom2Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue2 = t2; t2 = J.trim$0$s(t1._project_edit$_custom3Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue3 = t2; t1 = J.trim$0$s(t1._project_edit$_custom4Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue4 = t1; return b; }, $signature: 164 }; A._ProjectEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.project); }, $signature: 1 }; A._ProjectEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._ProjectEditState_build_closure1.prototype = { call$1(context) { var isValid = $.$get$_ProjectEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._ProjectEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._ProjectEditState_build__closure.prototype = { call$0() { this.$this._project_edit$_autoValidate = !this.isValid; }, $signature: 1 }; A._ProjectEditState_build_closure.prototype = { call$1(context) { var t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = _this.project, t2 = _this.$this, t3 = _this.localization, t4 = t2._project_edit$_autoValidate, t5 = $.$get$LocalizationsProvider__localizedValues(), t6 = t3.localeCode, t7 = J.$index$asx(t5.$index(0, t6), "project_name"); if (t7 == null) t7 = ""; t8 = _this.viewModel; t9 = t8.onSavePressed; t7 = A.DecoratedFormField$(false, _null, true, t4, t2._project_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t7, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, new A._ProjectEditState_build__closure0(t3)); if (t1.get$isNew()) { t4 = t3.get$client(t3); t10 = $.$get$memoizedDropdownClientList(); t11 = _this.state; t12 = t11.uiState.selectedCompanyIndex; t12 = t11.userCompanyStates._list[t12]; t13 = t12.clientState; t11 = t10.call$4(t13.map, t13.list, t12.userState.map, t11.staticState); t4 = A.EntityDropdown$(true, t2._project_edit$_autoValidate, false, t1.clientId, t11, _null, B.EntityType_client, B.List_empty0, t4, new A._ProjectEditState_build__closure1(t8, context), _null, new A._ProjectEditState_build__closure2(t8, t1), _null, _null, new A._ProjectEditState_build__closure3(t3)); } else { t4 = J.$index$asx(t5.$index(0, t6), "project_number"); if (t4 == null) t4 = ""; t4 = A.DecoratedFormField$(false, _null, false, false, t2._project_edit$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t4, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, _null); } t10 = A.DatePicker$(false, _null, _null, t3.get$dueDate(), _null, new A._ProjectEditState_build__closure4(t8, t1), t1.dueDate, _null); t6 = J.$index$asx(t5.$index(0, t6), "budgeted_hours"); t5 = t6 == null ? "" : t6; t6 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t7, t4, new A.UserPicker(t1.assignedUserId, new A._ProjectEditState_build__closure5(t8, t1), _null), t10, A.DecoratedFormField$(false, _null, false, false, t2._hoursController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t5, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, t2._project_edit$_taskRateController, _null, true, _null, _null, _null, _null, false, false, _null, new A.TextInputType(2, true, true), t3.get$taskRate(), _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, _null), new A.CustomField(t2._project_edit$_custom1Controller, _null, t9, "project1", t1.customValue1, false, _null), new A.CustomField(t2._project_edit$_custom2Controller, _null, t9, "project2", t1.customValue2, false, _null), new A.CustomField(t2._project_edit$_custom3Controller, _null, t9, "project3", t1.customValue3, false, _null), new A.CustomField(t2._project_edit$_custom4Controller, _null, t9, "project4", t1.customValue4, false, _null), A.DecoratedFormField$(false, _null, false, false, t2._project_edit$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, t2._project_edit$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t6), _null, _null, false, _null, true, _null)], t6), _null, _null, new A.ValueKey("__project_" + t1.id + "_" + t1.updatedAt + "__", type$.ValueKey_legacy_String)); }, $signature: 167 }; A._ProjectEditState_build__closure0.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A._ProjectEditState_build__closure3.prototype = { call$1(val) { return J.trim$0$s(val).length === 0 ? this.localization.get$pleaseSelectAClient() : null; }, $signature: 15 }; A._ProjectEditState_build__closure2.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.project.rebuild$1(new A._ProjectEditState_build___closure1(client))); }, $signature: 34 }; A._ProjectEditState_build___closure1.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_project_model$_$this()._project_model$_clientId = t1; return b; }, $signature: 164 }; A._ProjectEditState_build__closure1.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 184 }; A._ProjectEditState_build__closure5.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.project.rebuild$1(new A._ProjectEditState_build___closure(userId))); }, $signature: 5 }; A._ProjectEditState_build___closure.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_assignedUserId = this.userId; return b; }, $signature: 164 }; A._ProjectEditState_build__closure4.prototype = { call$2(date, _) { this.viewModel.onChanged.call$1(this.project.rebuild$1(new A._ProjectEditState_build___closure0(date))); }, $signature: 53 }; A._ProjectEditState_build___closure0.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_dueDate = this.date; return b; }, $signature: 164 }; A.ProjectEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProjectEditScreen_build_closure(), new A.ProjectEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectEditVM); } }; A.ProjectEditScreen_build_closure0.prototype = { call$1(store) { return A.ProjectEditVM_ProjectEditVM$fromStore(store); }, $signature: 2485 }; A.ProjectEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ProjectEdit(viewModel, new A.ValueKey(viewModel.project.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2486 }; A.ProjectEditVM.prototype = { get$project() { return this.project; }, get$company() { return this.company; } }; A.ProjectEditVM_ProjectEditVM$fromStore_closure.prototype = { call$1(project) { this.store.get$_dispatchers()[0].call$1(new A.UpdateProject(project)); }, $signature: 258 }; A.ProjectEditVM_ProjectEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, t2, _null = null; A.createEntity(_null, _null, context, A.ProjectEntity_ProjectEntity(_null, _null, _null, _null), true); t1 = this.state.uiState; t2 = t1.projectUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.ProjectEditVM_ProjectEditVM$fromStore_closure2.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.ProjectEditVM_ProjectEditVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.ProjectEditVM_ProjectEditVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.ProjectEditVM_ProjectEditVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/project/edit")); }, $signature: 3 }; A.ProjectEditVM_ProjectEditVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/project/edit")); }, $signature: 34 }; A.ProjectEditVM_ProjectEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ProjectEditVM_ProjectEditVM$fromStore__closure1(this.store, this.state).call$0(); }, $signature: 14 }; A.ProjectEditVM_ProjectEditVM$fromStore__closure1.prototype = { call$0() { var t3, $navigator, t1 = this.store, project = A._lateReadCheck(t1.__Store__state, "_state").uiState.projectUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_ProjectEntity); t1.get$_dispatchers()[0].call$1(new A.SaveProjectRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ProjectEntity), project)); return t2.then$1$1(0, new A.ProjectEditVM_ProjectEditVM$fromStore___closure(project, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ProjectEditVM_ProjectEditVM$fromStore___closure0()); }, $signature: 37 }; A.ProjectEditVM_ProjectEditVM$fromStore___closure.prototype = { call$1(savedProject) { var t3, _this = this, _s13_ = "/project/view", t1 = _this.project, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_project"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_project"); if (t2 == null) t2 = ""; } A.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s13_)); t1 = t1.get$isNew() && t2.uiState.projectUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedProject); } else { if (!t3.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedProject, null, true); } }, $signature: 258 }; A.ProjectEditVM_ProjectEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.ProjectEditVM_ProjectEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ProjectEditVM_ProjectEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ProjectListItem.prototype = { build$1(_, context) { var filterMatch, listUIState, textStyle, subtitle, textColor, t4, t5, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, projectUIState = uiState.projectUIState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex, t3 = this.project, client = t1._list[t2].clientState.$get$1(0, t3.clientId); t1 = this.filter; if (t1 != null && t1.length !== 0) { t2 = t3.matchesFilterValue$1(t1); filterMatch = t2 == null ? client.matchesFilterValue$1(t1) : t2; } else filterMatch = _null; listUIState = projectUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); subtitle = client.displayName; textColor = A.Theme_of(context).textTheme.bodyLarge.color; if (A.getLayout(context) === B.AppLayout_desktop) { t2 = t3.id; t2 = t2 === (uiState.get$isEditing() ? projectUIState.editing.id : projectUIState.selectedId); } else t2 = false; t4 = A._lateReadCheck(store.__Store__state, "_state"); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t5._list[t4].userCompany, t3, new A.LayoutBuilder(new A.ProjectListItem_build_closure(this, t1 != null, listUIState, state, client, textStyle, subtitle, filterMatch, textColor), _null), t2, true, true, _null); }, get$user(receiver) { return this.user; }, get$project() { return this.project; } }; A.ProjectListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ProjectListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null), _null); else { t2 = t1.project; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.ProjectListItem_build__closure0(t1)); t2 = t4; } t3 = t1.project; t4 = t3.number; t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t3.name; t7 = A.Text$(t7 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t8 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t7, A.Text$(_this.subtitle, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t8.get$value(t8) >>> 16 & 255, t8.get$value(t8) >>> 8 & 255, t8.get$value(t8) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatDuration(A.Duration$(0, 0, 0, 0, B.JSNumber_methods.toInt$0(t3.budgetedHours * 60), 0), false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.ProjectListItem_build__closure1(t1), new A.ProjectListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.ProjectListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.project; t5 = t4.name; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatDuration(A.Duration$(0, 0, 0, 0, B.JSNumber_methods.toInt$0(t4.budgetedHours * 60), 0), false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.ProjectListItem_build__closure4(t1), new A.ProjectListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Text$(t5 == null ? t4.number + " \u2022 " + _this.client.displayName : t5, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.ProjectListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.project, false, false); return t1; }, $signature: 0 }; A.ProjectListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.project, false, true); return t1; }, $signature: 0 }; A.ProjectListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.ProjectListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.project], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.ProjectListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.project, false, false); return t1; }, $signature: 0 }; A.ProjectListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.project, false, true); return t1; }, $signature: 0 }; A.ProjectListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.ProjectListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProjectListBuilder_build_closure(), A.project_list_vm_ProjectListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectListVM); } }; A.ProjectListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.projectList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_project, new A.ProjectListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.ProjectPresenter(), t2, t4); }, $signature: 2487 }; A.ProjectListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, projectId = J.$index$asx(t1.projectList, index), project = t1.projectMap._map$_map.$index(0, projectId), t2 = state.getUIState$1(B.EntityType_project).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = project.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.ProjectListItem(t4, project, t1.filter, t2, null); }, $signature: 2488 }; A.ProjectListVM.prototype = {}; A.ProjectListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ProjectListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ProjectListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortProjects(field)); }, $signature: 5 }; A.ProjectListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearProjectMultiselect()); }, $signature: 9 }; A.ProjectPresenter.prototype = { getField$2$context$field(context, field) { var client, _this = this, _null = null, project = type$.legacy_ProjectEntity._as(_this.entity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].clientState; t1 = project.clientId; client = t2.$get$1(0, t1); switch (field) { case "name": return A.Text$(project.name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return new A.LinkTextRelatedEntity(client, project, _null); case "client_id_number": return A.Text$(client.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_number": return A.Text$(client.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "task_rate": return A.Text$(A.formatNumber(project.taskRate, context, t1, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "due_date": return A.Text$(A.formatDate(project.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(project.publicNotes, _null); case "private_notes": return new A.TableTooltip(project.privateNotes, _null); case "budgeted_hours": return A.Text$(A.formatNumber(project.budgetedHours, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": t1 = project.number; return A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, project.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, project.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, project.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, project.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + project.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.ProjectScreen.prototype = { build$1(_, context) { var company, userCompany, t3, t4, t5, t6, t7, _null = null, _s6_ = "_state", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, _s6_), t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = t2._list[t1].userCompany.company; t1 = A._lateReadCheck(store.__Store__state, _s6_); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = t2._list[t1].userCompany; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = state.uiState.projectUIState.listUIState; t3 = t2.filterClearedAt; t4 = this.viewModel.projectList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("number"); t6.push("client_number"); t6.push("client_id_number"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t7 = A._setArrayType(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], t5); t6 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("project1", true), company.getCustomFieldValues$2$excludeBlank("project2", true), company.getCustomFieldValues$2$excludeBlank("project3", true), company.getCustomFieldValues$2$excludeBlank("project4", true), t7, B.EntityType_project, false, B.List_empty17, new A.ProjectScreen_build_closure(store), new A.ProjectScreen_build_closure0(store), new A.ProjectScreen_build_closure1(store), new A.ProjectScreen_build_closure2(store), new A.ProjectScreen_build_closure3(store), new A.ProjectScreen_build_closure4(store), new A.ProjectScreen_build_closure5(store), _null, A._setArrayType(["name", "number", "updated_at"], t5), B.List_empty18, t6); t5 = state.prefState; t1 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_project) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "project_fab", false, new A.ProjectScreen_build_closure6(context), t1.get$newProject()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_project, t2, new A.ProjectScreen_build_closure7(store), t4, _null, _null, new A.ProjectScreen_build_closure8(store), new A.ValueKey("__filter_" + t3 + "__", type$.ValueKey_legacy_String)), new A.ProjectListBuilder(_null), t6, B.EntityType_project, t1, 0, _null, new A.ProjectScreen_build_closure9(store), new A.ProjectScreen_build_closure10(store)); } }; A.ProjectScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartProjectMultiselect()); }, $signature: 9 }; A.ProjectScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProjects(value)); }, $signature: 11 }; A.ProjectScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByState(state)); }, $signature: 27 }; A.ProjectScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.projectUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearProjectMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartProjectMultiselect()); }, $signature: 1 }; A.ProjectScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortProjects(value)); }, $signature: 5 }; A.ProjectScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByCustom1(value)); }, $signature: 5 }; A.ProjectScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByCustom2(value)); }, $signature: 5 }; A.ProjectScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByCustom3(value)); }, $signature: 5 }; A.ProjectScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByCustom4(value)); }, $signature: 5 }; A.ProjectScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterProjectsByState(state)); }, $signature: 27 }; A.ProjectScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.projectUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearProjectMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartProjectMultiselect()); }, $signature: 1 }; A.ProjectScreen_build_closure6.prototype = { call$0() { return A.createEntityByType(true, this.context, B.EntityType_project); }, $signature: 0 }; A.ProjectScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProjectScreenBuilder_build_closure(), A.project_screen_vm_ProjectScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectScreenVM); } }; A.ProjectScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ProjectScreen(vm, null); }, $signature: 2489 }; A.ProjectScreenVM.prototype = {}; A.ProjectView.prototype = { createState$0() { return new A._ProjectViewState(null, null, B._StateLifecycle_0); } }; A._ProjectViewState.prototype = { initState$0() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = A.TabController$(null, t1.isFilter ? 0 : state.uiState.projectUIState.tabIndex, 2, _this); _this._project_view$_controller = t2; t2.addListener$1(0, _this.get$_project_view$_onTabChanged()); }, _project_view$_onTabChanged$0() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._project_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateProjectTab(t1)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._project_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._project_view$_controller.removeListener$1(0, _this.get$_project_view$_onTabChanged()); _this._project_view$_controller.dispose$0(0); _this.super$__ProjectViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var _this = this, _null = null, viewModel = _this._widget.viewModel, project = viewModel.project, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget.isFilter, t3 = _this._project_view$_controller, t4 = A.Tab$(_null, t1.get$overview()), t5 = project.documents._list; t3 = A.TabBar$(t3, _null, false, _null, _null, A._setArrayType([t4, A.Tab$(_null, t5.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t5.length + ")")], type$.JSArray_legacy_Widget)); A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "project_view_fab", false, new A._ProjectViewState_build_closure(viewModel, context), t1.get$newTask()); return new A.ViewScaffold(t2, project, new A.Builder(new A._ProjectViewState_build_closure0(_this, viewModel, project), _null), _null, t3, _null); } }; A._ProjectViewState_build_closure0.prototype = { call$1(context) { var _null = null, t1 = this.$this, t2 = t1._project_view$_controller, t3 = this.viewModel, t4 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.ProjectOverview(t3, t1._widget.isFilter, _null), new A._ProjectViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.ProjectViewDocuments(t3, new A.ValueKey(t3.project.id, type$.ValueKey_legacy_String)), new A._ProjectViewState_build__closure0(t3, context))], t4), t2, _null), 1), new A.BottomButtons(this.project, B.EntityAction_newTask, B.EntityAction_invoiceProject, true, true, _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._ProjectViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ProjectViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._ProjectViewState_build_closure.prototype = { call$0() { return this.viewModel.onAddTaskPressed.call$1(this.context); }, $signature: 9 }; A.__ProjectViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ProjectViewDocuments.prototype = { build$1(_, context) { var t1 = this.viewModel.project.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.ProjectViewDocuments_build_closure(this, context), new A.ProjectViewDocuments_build_closure0(this, context), null, null); } }; A.ProjectViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.ProjectViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.ProjectOverview.prototype = { createState$0() { return new A._ProjectOverviewState(B._StateLifecycle_0); } }; A._ProjectOverviewState.prototype = { initState$0() { this.super$State$initState(); this._project_view_overview$_timer = A.Timer_Timer$periodic(A.Duration$(0, 0, 0, 0, 0, 1), new A._ProjectOverviewState_initState_closure(this)); }, dispose$0(_) { this._project_view_overview$_timer.cancel$0(0); this._project_view_overview$_timer = null; this.super$State$dispose(0); }, build$1(_, context) { var t4, _null = null, _s8_ = "project1", _s8_0 = "project2", _s8_1 = "project3", _s8_2 = "project4", t1 = this._widget.viewModel, project = t1.project, company = t1.company, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = type$.legacy_String, fields = A.LinkedHashMap_LinkedHashMap$_literal(["due_date", A.formatDate(project.dueDate, context, true, true, false), "task_rate", A.formatNumber(project.taskRate, context, project.clientId, _null, B.FormatNumberType_0, true, _null, false)], t3, t3); t3 = project.customValue1; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), A.formatCustomValue(context, _s8_, t3)); t3 = project.customValue2; t4 = t3.length !== 0; if (t4) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), A.formatCustomValue(context, _s8_0, t3)); t3 = project.customValue3; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), A.formatCustomValue(context, _s8_1, t3)); if (t4) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), A.formatCustomValue(context, _s8_2, project.customValue4)); return A.RefreshIndicator$(new A.ScrollableListView(new A._ProjectOverviewState_build__buildView(this, project, t2, t1.state, t1.client, company, fields).call$0(), _null, _null, _null), new A._ProjectOverviewState_build_closure(this, context)); } }; A._ProjectOverviewState_initState_closure.prototype = { call$1(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new A._ProjectOverviewState_initState__closure()); }, $signature: 425 }; A._ProjectOverviewState_initState__closure.prototype = { call$0() { return false; }, $signature: 21 }; A._ProjectOverviewState_build__buildView.prototype = { call$0() { var t6, t7, t8, t9, _this = this, _null = null, t1 = _this.project, t2 = _this.localization, t3 = t2.get$total(t2), t4 = _this.state, t5 = t4.uiState.selectedCompanyIndex; t4 = t4.userCompanyStates._list; t6 = A.formatDuration(A.taskDurationForProject(t1, t4[t5].taskState.map), true); t7 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "budgeted"); if (t7 == null) t7 = ""; t8 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.EntityHeader$(t1, t3, t7, A.formatDuration(A.Duration$(0, 0, 0, 0, B.JSNumber_methods.toInt$0(t1.budgetedHours * 60), 0), true), _null, _null, t6), new A.ListDivider(_null)], t8); t3 = t1.privateNotes; if (t3.length !== 0) B.JSArray_methods.addAll$1(t6, A._setArrayType([new A.IconMessage(t3, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null), new A.ListDivider(_null)], t8)); t3 = _this.$this; t6.push(A.EntityListTile$(_this.client, t3._widget.isFilter, _null)); t6.push(A.EntityListTile$(t4[t5].userState.$get$1(0, t1.assignedUserId), t3._widget.isFilter, _null)); t7 = _this.company; if (t7.isModuleEnabled$1(B.EntityType_task)) { t9 = t3._widget.isFilter; t6.push(new A.EntitiesListTile(t1, B.EntityType_task, t2.get$tasks(), $.$get$memoizedTaskStatsForProject().call$2(t1.id, t4[t5].taskState.map).present$2(t2.get$active(t2), t2.get$archived()), t9, false, _null)); } if (t7.isModuleEnabled$1(B.EntityType_expense)) { t9 = t3._widget.isFilter; t6.push(new A.EntitiesListTile(t1, B.EntityType_expense, t2.get$expenses(), $.$get$memoizedExpenseStatsForProject().call$2(t1.id, t4[t5].expenseState.map).present$2(t2.get$active(t2), t2.get$archived()), t9, false, _null)); } if (t7.isModuleEnabled$1(B.EntityType_invoice)) { t3 = t3._widget.isFilter; t6.push(new A.EntitiesListTile(t1, B.EntityType_invoice, t2.get$invoices(), $.$get$memoizedInvoiceStatsForProject().call$2(t1.id, t4[t5].invoiceState.map).present$2(t2.get$active(t2), t2.get$archived()), t3, true, _null)); } B.JSArray_methods.addAll$1(t6, A._setArrayType([new A.FieldGrid(_this.fields, _null)], t8)); t1 = t1.publicNotes; if (t1.length !== 0) B.JSArray_methods.addAll$1(t6, A._setArrayType([new A.IconMessage(t1, _null, _null, _null, _null), new A.ListDivider(_null)], t8)); return t6; }, $signature: 227 }; A._ProjectOverviewState_build_closure.prototype = { call$0() { return this.$this._widget.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.ProjectViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProjectViewScreen_build_closure(this), new A.ProjectViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectViewVM); } }; A.ProjectViewScreen_build_closure0.prototype = { call$1(store) { return A.ProjectViewVM_ProjectViewVM$fromStore(store); }, $signature: 2490 }; A.ProjectViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.ProjectView(vm, this.$this.isFilter, vm.state.uiState.projectUIState.tabIndex, null); }, $signature: 2491 }; A.ProjectViewVM.prototype = { get$project() { return this.project; }, get$company() { return this.company; } }; A.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadProject(completer, this.project.id)); return completer.future; }, $signature: 17 }; A.ProjectViewVM_ProjectViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ProjectViewVM_ProjectViewVM$fromStore_closure.prototype = { call$1(context) { var _null = null; A.createEntity(_null, _null, context, A.TaskEntity_TaskEntity(_null, _null, _null, this.state, _null).rebuild$1(new A.ProjectViewVM_ProjectViewVM$fromStore__closure2(this.project)), true); }, $signature: 14 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure2.prototype = { call$1(b) { var t1 = this.project; b.get$_task_model$_$this()._task_model$_projectId = t1.id; b.get$_task_model$_$this()._task_model$_clientId = t1.clientId; return b; }, $signature: 50 }; A.ProjectViewVM_ProjectViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveProjectDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.project)); t1.then$1$1(0, new A.ProjectViewVM_ProjectViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.ProjectViewVM_ProjectViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.ProjectViewVM_ProjectViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.ProjectViewVM_ProjectViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.ProjectViewVM_ProjectViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.ProjectViewVM_ProjectViewVM$fromStore__closure(t2, this.project), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadProject(null, this.project.id)); }, $signature: 103 }; A.PurchaseOrderEdit.prototype = { createState$0() { return new A._PurchaseOrderEditState(null, null, B._StateLifecycle_0); } }; A._PurchaseOrderEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._purchase_order_edit$_controller = A.TabController$(null, _this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._purchase_order_edit$_controller.animateTo$1(2); }, dispose$0(_) { this._purchase_order_edit$_controller.dispose$0(0); this.super$__PurchaseOrderEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _purchase_order_edit$_onSavePressed$2(context, action) { if (!$.$get$_PurchaseOrderEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _purchase_order_edit$_onSavePressed$1(context) { return this._purchase_order_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, _s19_ = "edit_purchase_order", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, invoice.clientId), isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_invoice); if (invoice.get$isNew()) t4 = t1.get$newPurchaseOrder(); else { t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = J.$index$asx(t4.$index(0, t1.localeCode), _s19_); t4 = t5 == null ? J.$index$asx(t4.$index(0, "en"), _s19_) : t5; } t2 = invoice.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._purchase_order_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$items(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$pdf())], t3)); t6 = $.$get$_PurchaseOrderEditState__formKey(); t7 = _this._widget; if (isFullscreen) t3 = new A.PurchaseOrderEditDetailsScreen(t7.viewModel, _null); else { t8 = invoice.id; t9 = invoice.updatedAt; t10 = _this._purchase_order_edit$_controller; t7 = t7.viewModel; t9 = A.TabBarView$(A._setArrayType([new A.PurchaseOrderEditDetailsScreen(t7, _null), new A.InvoiceEditContactsScreen(invoice.entityType, _null), new A.PurchaseOrderEditItemsScreen(t7, _null), new A.PurchaseOrderEditNotesScreen(_null), new A.PurchaseOrderEditPDFScreen(_null)], t3), t10, new A.ValueKey("__purchaseOrder_" + t8 + "_" + t9 + "__", type$.ValueKey_legacy_String)); t3 = t9; } return A.EditScaffold$(t2, t5, A.Form$(_null, t3, t6), new A.InvoiceEditFooter(invoice, _null), invoice, A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, B.Icon_yXb, "purchaseOrder_edit_fab", false, new A._PurchaseOrderEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new A._PurchaseOrderEditState_build_closure0(_this), new A._PurchaseOrderEditState_build_closure1(viewModel), new A._PurchaseOrderEditState_build_closure2(_this), _null, t4); } }; A._PurchaseOrderEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._PurchaseOrderEditState_build_closure2.prototype = { call$1(context) { return this.$this._purchase_order_edit$_onSavePressed$1(context); }, $signature: 30 }; A._PurchaseOrderEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._purchase_order_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._PurchaseOrderEditState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._PurchaseOrderEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, $signature: 1 }; A._PurchaseOrderEditState_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = t1.lineItems._list, t3 = A._arrayInstanceType(t2), t4 = _this.viewModel, t5 = t3._eval$1("MappedIterable<1,BaseEntity*>"); return new A.InvoiceItemSelector(new A._PurchaseOrderEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._PurchaseOrderEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._PurchaseOrderEditState_build___closure1(t4), t5), true, t5._eval$1("Iterable.E")), false, null); }, $signature: 257 }; A._PurchaseOrderEditState_build___closure0.prototype = { call$1(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 57 }; A._PurchaseOrderEditState_build___closure1.prototype = { call$1(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = item.taskId; t1 = t2._map$_map.$index(0, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = item.expenseId; t1 = t2._map$_map.$index(0, t1); } return t1; }, $signature: 265 }; A._PurchaseOrderEditState_build___closure.prototype = { call$3(items, clientId, projectId) { this.viewModel.onItemsAdded.call$3(items, clientId, projectId); if (!this.isFullscreen) this.$this._purchase_order_edit$_controller.animateTo$1(2); }, call$1(items) { return this.call$3(items, null, null); }, call$2(items, clientId) { return this.call$3(items, clientId, null); }, $signature: 268 }; A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.PurchaseOrderEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEditDetailsScreen_build_closure(this), new A.PurchaseOrderEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderEditDetailsVM); } }; A.PurchaseOrderEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore(store); }, $signature: 2492 }; A.PurchaseOrderEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditDesktop(viewModel, this.$this.viewModel, new A.ValueKey("__purchaseOrder_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new A.InvoiceEditDetails(viewModel, B.EntityType_purchaseOrder, null); }, $signature: 2493 }; A.PurchaseOrderEditDetailsVM.prototype = {}; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure.prototype = { call$1(purchaseOrder) { return this.store.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrder(purchaseOrder)); }, $signature: 137 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0.prototype = { call$3(context, purchaseOrder, vendor) { var t1 = this.store, t2 = purchaseOrder.applyVendor$2(this.state, vendor); t1.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrder(t2)); t1.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrderVendor(vendor)); }, $signature: 2494 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var t1 = A.VendorEntity_VendorEntity(null, this.state, null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/purchase_order/edit")); }, $signature: 3 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/purchase_order/edit")); }, $signature: 34 }; A.PurchaseOrderEditItemsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEditItemsScreen_build_closure(this), new A.PurchaseOrderEditItemsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderEditItemsVM); } }; A.PurchaseOrderEditItemsScreen_build_closure0.prototype = { call$1(store) { return A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore(store); }, $signature: 2495 }; A.PurchaseOrderEditItemsScreen_build_closure.prototype = { call$2(context, viewModel) { var t1 = this.$this.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditItemsDesktop(viewModel, t1, false, null); else return new A.InvoiceEditItems(viewModel, t1, null); }, $signature: 2496 }; A.PurchaseOrderEditItemsVM.prototype = {}; A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeletePurchaseOrderItem(index)); }, $signature: 106 }; A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.EditPurchaseOrderItem(null)); }, $signature: 1 }; A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1.prototype = { call$2(purchaseOrderItem, index) { var t1 = this.store; if (index === A._lateReadCheck(t1.__Store__state, "_state").uiState.purchaseOrderUIState.editing.lineItems._list.length) t1.get$_dispatchers()[0].call$1(new A.AddPurchaseOrderItem(purchaseOrderItem)); else t1.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrderItem(index, purchaseOrderItem)); }, $signature: 233 }; A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { this.store.get$_dispatchers()[0].call$1(new A.MovePurchaseOrderItem(oldIndex, newIndex)); }, $signature: 147 }; A.PurchaseOrderEditNotesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEditNotesScreen_build_closure(), new A.PurchaseOrderEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderEditNotesVM); } }; A.PurchaseOrderEditNotesScreen_build_closure0.prototype = { call$1(store) { return A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore(store); }, $signature: 2497 }; A.PurchaseOrderEditNotesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditNotes(viewModel, null); }, $signature: 2498 }; A.PurchaseOrderEditNotesVM.prototype = {}; A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure.prototype = { call$1(purchaseOrder) { return this.store.get$_dispatchers()[0].call$1(new A.UpdatePurchaseOrder(purchaseOrder)); }, $signature: 137 }; A.PurchaseOrderEditPDFScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEditPDFScreen_build_closure(), new A.PurchaseOrderEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderEditPDFVM); } }; A.PurchaseOrderEditPDFScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.purchaseOrderUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.PurchaseOrderEditPDFVM(state, t2._list[t1].userCompany.company, invoice); }, $signature: 2499 }; A.PurchaseOrderEditPDFScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2500 }; A.PurchaseOrderEditPDFVM.prototype = {}; A.PurchaseOrderEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEditScreen_build_closure(), new A.PurchaseOrderEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderEditVM); } }; A.PurchaseOrderEditScreen_build_closure0.prototype = { call$1(store) { return A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore(store); }, $signature: 2501 }; A.PurchaseOrderEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.PurchaseOrderEdit(viewModel, new A.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2502 }; A.PurchaseOrderEditVM.prototype = {}; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 170 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t4, _this = this, t1 = _this.store, purchaseOrder = A._lateReadCheck(t1.__Store__state, "_state").uiState.purchaseOrderUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (purchaseOrder.vendorId.length === 0) { A.showDialog(null, true, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!purchaseOrder.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; if (!A.hasPurchaseOrderChanges(purchaseOrder, t2.userCompanyStates._list[t4].purchaseOrderState.map)) { t2 = _this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = _this.action; if (t2) A.handleEntitiesActions(A._setArrayType([purchaseOrder], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); t1.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), purchaseOrder, t4)); return t2.then$1$1(0, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0(purchaseOrder, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1()); } }, $signature: 37 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseSelectAVendor(), false, null); }, $signature: 24 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0.prototype = { call$1(savedPurchaseOrder) { var t3, _this = this, _null = null, _s22_ = "created_purchase_order", _s20_ = "/purchase_order/view", t1 = _this.purchaseOrder, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t2.localeCode), _s22_); if (t2 == null) t2 = J.$index$asx(t3.$index(0, "en"), _s22_); } else t2 = t2.get$updatedPurchaseOrder(); A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s20_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s20_, t1, t1); } else t2.pop$1(0, savedPurchaseOrder); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedPurchaseOrder, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_invoice) && t2.editAfterSaving) A.editEntity(_null, savedPurchaseOrder, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedPurchaseOrder], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedPurchaseOrder], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedPurchaseOrder, _null, true); } }, $signature: 64 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0.prototype = { call$3(items, clientId, projectId) { var t1; if (items.length === 1) { t1 = this.purchaseOrder.lineItems._list.length; this.store.get$_dispatchers()[0].call$1(new A.EditPurchaseOrderItem(t1)); } this.store.get$_dispatchers()[0].call$1(new A.AddPurchaseOrderItems(items)); }, $signature: 271 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1.prototype = { call$1(context) { var _null = null, t1 = this.state.uiState; if (B.JSArray_methods.contains$1(A._setArrayType(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) A.viewEntitiesByType(B.EntityType_purchaseOrder, _null); else { A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), true); t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.PurchaseOrderEmailScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderEmailScreen_build_closure(), new A.PurchaseOrderEmailScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_EmailPurchaseOrderVM); } }; A.PurchaseOrderEmailScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, purchaseOrderId = t1.purchaseOrderUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore(store, t2._list[t1].purchaseOrderState.map._map$_map.$index(0, purchaseOrderId)); }, $signature: 2503 }; A.PurchaseOrderEmailScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEmailView(viewModel, null); }, $signature: 2504 }; A.EmailPurchaseOrderVM.prototype = {}; A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure.prototype = { call$4(context, template, subject, body) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedPurchaseOrder(), A.getLayout(context) === B.AppLayout_mobile, t1); if (A.getLayout(context) !== B.AppLayout_mobile) completer.future.then$1$1(0, new A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure(this.purchaseOrder), t1); this.store.get$_dispatchers()[0].call$1(new A.EmailPurchaseOrderRequest(completer, this.purchaseOrder.id, template, subject, body)); }, $signature: 295 }; A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure.prototype = { call$1(value) { A.viewEntity(false, this.purchaseOrder, null, false); }, $signature: 3 }; A.PurchaseOrderListItem.prototype = { build$1(_, context) { var t6, filterMatch, textColor, t7, t8, _this = this, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, purchaseOrderUIState = uiState.purchaseOrderUIState, t2 = _this.purchaseOrder, listUIState = state.getUIState$1(t2.entityType).get$listUIState(), t3 = listUIState.selectedIds, textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), t4 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t5 = _this.filter; if (t5 != null && t5.length !== 0) { t6 = t2.matchesFilterValue$1(t5); filterMatch = t6 == null ? _this.client.matchesFilterValue$1(t5) : t6; } else filterMatch = _null; textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; t5 = t2.date; if (t5.length !== 0) t1.subtitle = A.formatDate(t5, context, true, true, false); t5 = t2.id; t6 = uiState.get$isEditing() ? purchaseOrderUIState.editing.id : purchaseOrderUIState.selectedId; t7 = state.userCompanyStates; t8 = uiState.selectedCompanyIndex; return new A.DismissibleEntity(t7._list[t8].userCompany, t2, new A.LayoutBuilder(new A.PurchaseOrderListItem_build_closure(t1, _this, t3 != null, listUIState, state, t4, textStyle, filterMatch, textColor), _null), t5 === t6, true, true, _null); }, get$user(receiver) { return this.user; }, get$purchaseOrder() { return this.purchaseOrder; } }; A.PurchaseOrderListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.PurchaseOrderListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null); else { t2 = t1.purchaseOrder; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(t1.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.PurchaseOrderListItem_build__closure0(t1)); t2 = t4; } t3 = t1.purchaseOrder; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t1.client; t8 = t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(t7.displayName + t8, _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.subtitle; t10 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.amount, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.PurchaseOrderListItem_build__closure1(t1), new A.PurchaseOrderListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.PurchaseOrderListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = A.Expanded$(A.Text$(t1.client.displayName, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1); t5 = t1.purchaseOrder; t6 = t5.balance; t6 = t6 > 0 ? t6 : t5.amount; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([t4, new A.SizedBox(4, _null, _null, _null), A.Text$(A.formatNumber(t6, context, t5.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t4 = _this.filterMatch; if (t4 == null) { t4 = t5.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t6 = A.formatDate(t5.date, context, true, true, false); t8 = t5.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(B.JSString_methods.trim$0(t4 + t6 + t8), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = t8; } else t4 = A.Text$(t4, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t4 = A.Expanded$(t4, 1); t6 = t5.statusId; t8 = _this.localization.lookup$1(B.Map_EH27z.$index(0, t6)); t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.PurchaseOrderListItem_build__closure4(t1), new A.PurchaseOrderListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([t4, A.Text$(t8, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t6 === "1" ? _this.textColor : new A.PurchaseOrderStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t6), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t5, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.PurchaseOrderListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.purchaseOrder, false, false); return t1; }, $signature: 0 }; A.PurchaseOrderListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.purchaseOrder, false, true); return t1; }, $signature: 0 }; A.PurchaseOrderListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.PurchaseOrderListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.purchaseOrder], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.PurchaseOrderListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.purchaseOrder, false, false); return t1; }, $signature: 0 }; A.PurchaseOrderListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.purchaseOrder, false, true); return t1; }, $signature: 0 }; A.PurchaseOrderListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.PurchaseOrderListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderListBuilder_build_closure(), A.purchase_order_list_vm_PurchaseOrderListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderListVM); } }; A.PurchaseOrderListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_purchaseOrder, new A.PurchaseOrderListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.PurchaseOrderPresenter(), t2, t4); }, $signature: 2505 }; A.PurchaseOrderListBuilder_build__closure.prototype = { call$2(context, index) { var t5, _null = null, t1 = this.viewModel, state = t1.state, invoiceId = J.$index$asx(t1.invoiceList, index), invoice = t1.invoiceMap._map$_map.$index(0, invoiceId), t2 = state.getUIState$1(B.EntityType_purchaseOrder).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; t3 = invoice.clientId; t3 = t1.clientMap._map$_map.$index(0, t3); if (t3 == null) t3 = A.ClientEntity_ClientEntity(_null, _null, _null, _null); if (t2 != null) { t5 = invoice.id; t2 = B.JSArray_methods.contains$1(t2._list, t5); } else t2 = false; return new A.PurchaseOrderListItem(t4, invoice, t3, t1.filter, t2, _null); }, $signature: 2506 }; A.PurchaseOrderListVM.prototype = {}; A.PurchaseOrderListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.PurchaseOrderListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.PurchaseOrderListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortPurchaseOrders(field)); }, $signature: 5 }; A.PurchaseOrderListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearPurchaseOrderMultiselect()); }, $signature: 9 }; A.PurchaseOrderPdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderPdfScreen_build_closure(this), new A.PurchaseOrderPdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderPdfVM); } }; A.PurchaseOrderPdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, purchaseOrderUIState = t1.purchaseOrderUIState, invoiceId = purchaseOrderUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.PurchaseOrderPdfVM(state, t2._list[t1].purchaseOrderState.$get$1(0, invoiceId), purchaseOrderUIState.historyActivityId); }, $signature: 2507 }; A.PurchaseOrderPdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoicePdfView(vm, this.$this.showAppBar, new A.ValueKey("__purchase_order_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2508 }; A.PurchaseOrderPdfVM.prototype = {}; A.PurchaseOrderPresenter.prototype = { getField$2$context$field(context, field) { var t4, t5, client, t6, vendor, expense, contact, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), purchaseOrder = type$.legacy_InvoiceEntity._as(_this.entity), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].clientState; t5 = purchaseOrder.clientId; client = t4.$get$1(0, t5); t4 = t2[t3].vendorState; t6 = purchaseOrder.vendorId; vendor = t4.$get$1(0, t6); expense = t2[t3].expenseState.$get$1(0, purchaseOrder.expenseId); switch (field) { case "status": return A.EntityStatusChip$(purchaseOrder, true, 105); case "number": t2 = purchaseOrder.number; return A.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return new A.LinkTextRelatedEntity(client, purchaseOrder, _null); case "date": return A.Text$(A.formatDate(purchaseOrder.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return A.Text$(A.formatDate(purchaseOrder.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(purchaseOrder.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "due_date": return A.Text$(A.formatDate(purchaseOrder.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, purchaseOrder.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, purchaseOrder.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, purchaseOrder.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, purchaseOrder.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(purchaseOrder.publicNotes, _null); case "private_notes": return new A.TableTooltip(purchaseOrder.privateNotes, _null); case "discount": t1 = purchaseOrder.isAmountDiscount; t2 = purchaseOrder.discount; return A.Text$(t1 ? A.formatNumber(t2, context, t5, _null, B.FormatNumberType_0, true, _null, false) : A.formatNumber(t2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return A.Text$(purchaseOrder.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + purchaseOrder.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(purchaseOrder.taxAmount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(purchaseOrder.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return A.Text$(purchaseOrder.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "project": return new A.LinkTextRelatedEntity(t2[t3].projectState.$get$1(0, purchaseOrder.projectId), purchaseOrder, _null); case "vendor": return new A.LinkTextRelatedEntity(t2[t3].vendorState.$get$1(0, t6), purchaseOrder, _null); case "vendor_state": return A.Text$(vendor.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vendor_city": return A.Text$(vendor.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vendor_postal_code": return A.Text$(vendor.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vendor_country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": case "contact_email": contact = A.purchaseOrderContactSelector(purchaseOrder, t2[t3].vendorState.$get$1(0, t6)); if (contact == null) return new A.SizedBox(_null, _null, _null, _null); if (field === "contact_name") return A.Text$(contact.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.CopyToClipboard(_null, contact.email, true, new A.PurchaseOrderPresenter_getField_closure(contact), _null, _null); case "partial_due": return A.Text$(A.formatNumber(purchaseOrder.partial, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "partial_due_date": return A.Text$(A.formatDate(purchaseOrder.partialDueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "expense": return new A.LinkTextRelatedEntity(expense, purchaseOrder, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.PurchaseOrderPresenter_getField_closure.prototype = { call$0() { return A.launch("mailto:" + this.contact.email, null, false); }, $signature: 26 }; A.PurchaseOrderScreen.prototype = { build$1(_, context) { var company, statuses, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); statuses = A._setArrayType([A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.PurchaseOrderScreen_build_closure(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.PurchaseOrderScreen_build_closure0(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.PurchaseOrderScreen_build_closure1(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.PurchaseOrderScreen_build_closure2(t1))], type$.JSArray_legacy_InvoiceStatusEntity); t2 = t2.purchaseOrderUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.purchaseOrderList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "vendor", "expense", "amount", "date", "due_date"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("discount"); t7.push("po_number"); t7.push("public_notes"); t7.push("private_notes"); t7.push("documents"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("tax_amount"); t7.push("exchange_rate"); t7.push("is_viewed"); t7.push("last_sent_date"); t7.push("project"); t7.push("client"); t7.push("contact_name"); t7.push("contact_email"); t7.push("vendor_state"); t7.push("vendor_city"); t7.push("vendor_postal_code"); t7.push("vendor_country"); t7.push("partial_due"); t7.push("partial_due_date"); t8 = A._setArrayType(["status", "number", "vendor", "expense", "amount", "date", "due_date"], t6); t6 = A._setArrayType(["number", "date", "due_date", "updated_at"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t8, B.EntityType_purchaseOrder, false, B.List_empty17, new A.PurchaseOrderScreen_build_closure3(store), new A.PurchaseOrderScreen_build_closure4(store), new A.PurchaseOrderScreen_build_closure5(store), new A.PurchaseOrderScreen_build_closure6(store), new A.PurchaseOrderScreen_build_closure7(store), new A.PurchaseOrderScreen_build_closure8(store), new A.PurchaseOrderScreen_build_closure9(store), new A.PurchaseOrderScreen_build_closure10(store), t6, statuses, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_purchaseOrder) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "purchase_order_fab", false, new A.PurchaseOrderScreen_build_closure11(context), t1.get$newPurchaseOrder()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_purchaseOrder, t2, new A.PurchaseOrderScreen_build_closure12(store), t5, statuses, new A.PurchaseOrderScreen_build_closure13(store), new A.PurchaseOrderScreen_build_closure14(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.PurchaseOrderListBuilder(_null), t7, B.EntityType_purchaseOrder, t1, 0, _null, new A.PurchaseOrderScreen_build_closure15(store), new A.PurchaseOrderScreen_build_closure16(store)); } }; A.PurchaseOrderScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.PurchaseOrderScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization.get$sent(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.PurchaseOrderScreen_build_closure1.prototype = { call$1(b) { var t1, t2, _s8_ = "accepted"; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s8_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s8_); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.PurchaseOrderScreen_build_closure2.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "5"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "cancelled"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.PurchaseOrderScreen_build_closure16.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartPurchaseOrderMultiselect()); }, $signature: 9 }; A.PurchaseOrderScreen_build_closure12.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrders(value)); }, $signature: 11 }; A.PurchaseOrderScreen_build_closure14.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByState(state)); }, $signature: 27 }; A.PurchaseOrderScreen_build_closure13.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByStatus($status)); }, $signature: 115 }; A.PurchaseOrderScreen_build_closure15.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.purchaseOrderUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPurchaseOrderMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPurchaseOrderMultiselect()); }, $signature: 1 }; A.PurchaseOrderScreen_build_closure8.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortPurchaseOrders(value)); }, $signature: 11 }; A.PurchaseOrderScreen_build_closure9.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByState(state)); }, $signature: 27 }; A.PurchaseOrderScreen_build_closure10.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByStatus($status)); }, $signature: 115 }; A.PurchaseOrderScreen_build_closure3.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.purchaseOrderUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearPurchaseOrderMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartPurchaseOrderMultiselect()); }, $signature: 1 }; A.PurchaseOrderScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByCustom1(value)); }, $signature: 5 }; A.PurchaseOrderScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByCustom2(value)); }, $signature: 5 }; A.PurchaseOrderScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByCustom3(value)); }, $signature: 5 }; A.PurchaseOrderScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterPurchaseOrdersByCustom4(value)); }, $signature: 5 }; A.PurchaseOrderScreen_build_closure11.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_purchaseOrder); }, $signature: 1 }; A.PurchaseOrderScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderScreenBuilder_build_closure(), A.purchase_order_screen_vm_PurchaseOrderScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderScreenVM); } }; A.PurchaseOrderScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.PurchaseOrderScreen(vm, null); }, $signature: 2509 }; A.PurchaseOrderScreenVM.prototype = {}; A.PurchaseOrderViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PurchaseOrderViewScreen_build_closure(this), new A.PurchaseOrderViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PurchaseOrderViewVM); } }; A.PurchaseOrderViewScreen_build_closure0.prototype = { call$1(store) { return A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore(store); }, $signature: 2510 }; A.PurchaseOrderViewScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.purchaseOrderUIState.tabIndex, null); }, $signature: 2511 }; A.PurchaseOrderViewVM.prototype = {}; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrder(completer, this.purchaseOrder.id)); return completer.future; }, $signature: 17 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure.prototype = { call$2(context, index) { A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedPurchaseOrder(), false, type$.legacy_ClientEntity), this.purchaseOrder, true, index); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 266 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SavePurchaseOrderDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.purchaseOrder)); t1.then$1$1(0, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure(t2, this.purchaseOrder), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadPurchaseOrder(null, this.purchaseOrder.id)); }, $signature: 103 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure3.prototype = { call$3(context, purchaseOrder, activityId) { this.store.get$_dispatchers()[0].call$1(new A.ShowPdfPurchaseOrder(purchaseOrder, context, activityId)); }, call$2(context, purchaseOrder) { return this.call$3(context, purchaseOrder, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues() { return [null]; }, $signature: 261 }; A.QuoteEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEditDetailsScreen_build_closure(this), new A.QuoteEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditDetailsVM); } }; A.QuoteEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore(store); }, $signature: 2512 }; A.QuoteEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditDesktop(viewModel, this.$this.viewModel, new A.ValueKey("__quote_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new A.InvoiceEditDetails(viewModel, B.EntityType_quote, null); }, $signature: 2513 }; A.QuoteEditDetailsVM.prototype = {}; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure.prototype = { call$1(quote) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateQuote(quote)); }, $signature: 137 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0.prototype = { call$3(context, quote, client) { var t1 = this.store, t2 = quote.applyClient$2(this.state, client); t1.get$_dispatchers()[0].call$1(new A.UpdateQuote(t2)); t1.get$_dispatchers()[0].call$1(new A.UpdateQuoteClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 286 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote/edit")); }, $signature: 3 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/quote/edit")); }, $signature: 34 }; A.QuoteEditItemsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEditItemsScreen_build_closure(this), new A.QuoteEditItemsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditItemsVM); } }; A.QuoteEditItemsScreen_build_closure0.prototype = { call$1(store) { return A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore(store); }, $signature: 2514 }; A.QuoteEditItemsScreen_build_closure.prototype = { call$2(context, viewModel) { var t1 = this.$this.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditItemsDesktop(viewModel, t1, false, null); else return new A.InvoiceEditItems(viewModel, t1, null); }, $signature: 2515 }; A.QuoteEditItemsVM.prototype = {}; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeleteQuoteItem(index)); }, $signature: 106 }; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.EditQuoteItem(null)); }, $signature: 1 }; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1.prototype = { call$2(quoteItem, index) { var t1 = this.store; if (index === A._lateReadCheck(t1.__Store__state, "_state").uiState.quoteUIState.editing.lineItems._list.length) t1.get$_dispatchers()[0].call$1(new A.AddQuoteItem(quoteItem)); else t1.get$_dispatchers()[0].call$1(new A.UpdateQuoteItem(index, quoteItem)); }, $signature: 233 }; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { this.store.get$_dispatchers()[0].call$1(new A.MoveQuoteItem(oldIndex, newIndex)); }, $signature: 147 }; A.QuoteEditNotesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEditNotesScreen_build_closure(), new A.QuoteEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditNotesVM); } }; A.QuoteEditNotesScreen_build_closure0.prototype = { call$1(store) { return A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore(store); }, $signature: 2516 }; A.QuoteEditNotesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditNotes(viewModel, null); }, $signature: 2517 }; A.QuoteEditNotesVM.prototype = {}; A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure.prototype = { call$1(quote) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateQuote(quote)); }, $signature: 137 }; A.QuoteEditPDFScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEditPDFScreen_build_closure(), new A.QuoteEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditPDFVM); } }; A.QuoteEditPDFScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.QuoteEditPDFVM(state, t2._list[t1].userCompany.company, invoice); }, $signature: 2518 }; A.QuoteEditPDFScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2519 }; A.QuoteEditPDFVM.prototype = {}; A.QuoteEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEditScreen_build_closure(), new A.QuoteEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditVM); } }; A.QuoteEditScreen_build_closure0.prototype = { call$1(store) { return A.QuoteEditVM_QuoteEditVM$fromStore(store); }, $signature: 2520 }; A.QuoteEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.QuoteEdit(viewModel, new A.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2521 }; A.QuoteEditVM.prototype = {}; A.QuoteEditVM_QuoteEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.QuoteEditVM_QuoteEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 170 }; A.QuoteEditVM_QuoteEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t4, _this = this, t1 = _this.store, quote = A._lateReadCheck(t1.__Store__state, "_state").uiState.quoteUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (quote.clientId.length === 0) { A.showDialog(null, true, new A.QuoteEditVM_QuoteEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!quote.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; if (!A.hasQuoteChanges(quote, t2.userCompanyStates._list[t4].quoteState.map)) { t2 = _this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = _this.action; if (t2) A.handleEntitiesActions(A._setArrayType([quote], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); t1.get$_dispatchers()[0].call$1(new A.SaveQuoteRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), quote, t4)); return t2.then$1$1(0, new A.QuoteEditVM_QuoteEditVM$fromStore___closure0(quote, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new A.QuoteEditVM_QuoteEditVM$fromStore___closure1()); } }, $signature: 37 }; A.QuoteEditVM_QuoteEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 24 }; A.QuoteEditVM_QuoteEditVM$fromStore___closure0.prototype = { call$1(savedQuote) { var _this = this, _null = null, _s11_ = "/quote/view", t1 = _this.quote, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_quote"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedQuote(); A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s11_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s11_, t1, t1); } else t2.pop$1(0, savedQuote); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedQuote, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_invoice) && t2.editAfterSaving) A.editEntity(_null, savedQuote, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedQuote], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedQuote], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedQuote, _null, true); } }, $signature: 64 }; A.QuoteEditVM_QuoteEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.QuoteEditVM_QuoteEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.QuoteEditVM_QuoteEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.QuoteEditVM_QuoteEditVM$fromStore_closure0.prototype = { call$3(items, clientId, projectId) { var t1; if (items.length === 1) { t1 = this.quote.lineItems._list.length; this.store.get$_dispatchers()[0].call$1(new A.EditQuoteItem(t1)); } this.store.get$_dispatchers()[0].call$1(new A.AddQuoteItems(items)); }, $signature: 271 }; A.QuoteEditVM_QuoteEditVM$fromStore_closure1.prototype = { call$1(context) { var _null = null, t1 = this.state.uiState; if (B.JSArray_methods.contains$1(A._setArrayType(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) A.viewEntitiesByType(B.EntityType_quote, _null); else { A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), true); t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.QuoteEdit.prototype = { createState$0() { return new A._QuoteEditState(null, null, B._StateLifecycle_0); } }; A._QuoteEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._quote_edit$_controller = A.TabController$(null, _this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._quote_edit$_controller.animateTo$1(2); }, dispose$0(_) { this._quote_edit$_controller.dispose$0(0); this.super$__QuoteEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _quote_edit$_onSavePressed$2(context, action) { if (!$.$get$_QuoteEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _quote_edit$_onSavePressed$1(context) { return this._quote_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, invoice.clientId), isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_invoice); if (invoice.get$isNew()) t4 = t1.get$newQuote(); else { t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_quote"); if (t4 == null) t4 = ""; } t2 = invoice.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._quote_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$items(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$pdf())], t3)); t6 = $.$get$_QuoteEditState__formKey(); t7 = _this._widget; if (isFullscreen) t3 = new A.QuoteEditDetailsScreen(t7.viewModel, _null); else { t8 = invoice.id; t9 = invoice.updatedAt; t10 = _this._quote_edit$_controller; t7 = t7.viewModel; t9 = A.TabBarView$(A._setArrayType([new A.QuoteEditDetailsScreen(t7, _null), new A.InvoiceEditContactsScreen(invoice.entityType, _null), new A.QuoteEditItemsScreen(t7, _null), new A.QuoteEditNotesScreen(_null), new A.QuoteEditPDFScreen(_null)], t3), t10, new A.ValueKey("__quote_" + t8 + "_" + t9 + "__", type$.ValueKey_legacy_String)); t3 = t9; } return A.EditScaffold$(t2, t5, A.Form$(_null, t3, t6), new A.InvoiceEditFooter(invoice, _null), invoice, A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, B.Icon_yXb, "quote_edit_fab", false, new A._QuoteEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new A._QuoteEditState_build_closure0(_this), new A._QuoteEditState_build_closure1(viewModel), new A._QuoteEditState_build_closure2(_this), _null, t4); } }; A._QuoteEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._QuoteEditState_build_closure2.prototype = { call$1(context) { return this.$this._quote_edit$_onSavePressed$1(context); }, $signature: 30 }; A._QuoteEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._quote_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._QuoteEditState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._QuoteEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, $signature: 1 }; A._QuoteEditState_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = t1.lineItems._list, t3 = A._arrayInstanceType(t2), t4 = _this.viewModel, t5 = t3._eval$1("MappedIterable<1,BaseEntity*>"); return new A.InvoiceItemSelector(new A._QuoteEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._QuoteEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._QuoteEditState_build___closure1(t4), t5), true, t5._eval$1("Iterable.E")), false, null); }, $signature: 257 }; A._QuoteEditState_build___closure0.prototype = { call$1(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 57 }; A._QuoteEditState_build___closure1.prototype = { call$1(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = item.taskId; t1 = t2._map$_map.$index(0, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = item.expenseId; t1 = t2._map$_map.$index(0, t1); } return t1; }, $signature: 265 }; A._QuoteEditState_build___closure.prototype = { call$3(items, clientId, projectId) { this.viewModel.onItemsAdded.call$3(items, clientId, projectId); if (!this.isFullscreen) this.$this._quote_edit$_controller.animateTo$1(2); }, call$1(items) { return this.call$3(items, null, null); }, call$2(items, clientId) { return this.call$3(items, clientId, null); }, $signature: 268 }; A.__QuoteEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.QuoteEmailScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteEmailScreen_build_closure(), new A.QuoteEmailScreen_build_closure0(), _null, _null, new A.QuoteEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailQuoteVM); } }; A.QuoteEmailScreen_build_closure1.prototype = { call$1(store) { var quote, client, state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, quoteId = t1.quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; quote = t2[t1].quoteState.map._map$_map.$index(0, quoteId); t1 = t2[t1].clientState.map; t2 = quote.clientId; client = t1._map$_map.$index(0, t2); if (client.get$isStale()) { t1 = client.id; store.get$_dispatchers()[0].call$1(new A.LoadClient(null, t1)); } }, $signature: 435 }; A.QuoteEmailScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, quoteId = t1.quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return A.EmailQuoteVM_EmailQuoteVM$fromStore(store, t2._list[t1].quoteState.map._map$_map.$index(0, quoteId)); }, $signature: 2522 }; A.QuoteEmailScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEmailView(viewModel, null); }, $signature: 2523 }; A.EmailQuoteVM.prototype = {}; A.EmailQuoteVM_EmailQuoteVM$fromStore_closure.prototype = { call$4(context, template, subject, body) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedQuote(), A.getLayout(context) === B.AppLayout_mobile, t1); if (A.getLayout(context) !== B.AppLayout_mobile) completer.future.then$1$1(0, new A.EmailQuoteVM_EmailQuoteVM$fromStore__closure(this.quote), t1); this.store.get$_dispatchers()[0].call$1(new A.EmailQuoteRequest(completer, this.quote.id, template, subject, body)); }, $signature: 295 }; A.EmailQuoteVM_EmailQuoteVM$fromStore__closure.prototype = { call$1(value) { A.viewEntity(false, this.quote, null, false); }, $signature: 3 }; A.QuoteListItem.prototype = { build$1(_, context) { var t5, client, quoteUIState, listUIState, t6, isInMultiselect, t7, t8, isChecked, textStyle, textColor, t9, filterMatch, subtitle, _this = this, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = _this.quote; client = t2[t4].clientState.$get$1(0, t5.clientId); quoteUIState = t3.quoteUIState; listUIState = state.getUIState$1(t5.entityType).get$listUIState(); t6 = _this.showCheckbox; isInMultiselect = t6 && listUIState.selectedIds != null; if (isInMultiselect) { t7 = t5.id; t8 = listUIState.selectedIds; isChecked = t8 != null && B.JSArray_methods.contains$1(t8._list, t7); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t7 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t8 = _this.filter; if (t8 != null && t8.length !== 0) { t9 = t5.matchesFilterValue$1(t8); filterMatch = t9 == null ? client.matchesFilterValue$1(t8) : t9; } else filterMatch = _null; t1.subtitle = ""; t8 = t5.date; if (t8.length !== 0) { subtitle = A.formatDate(t8, context, true, true, false); t1.subtitle = subtitle; t8 = subtitle; } else t8 = ""; t9 = t5.dueDate; if (t9.length !== 0) { if (t8.length !== 0) t8 = t1.subtitle = t8 + " \u2022 "; t1.subtitle = t8 + A.formatDate(t9, context, true, true, false); } t8 = t5.id; t3 = t3.get$isEditing() ? quoteUIState.editing.id : quoteUIState.selectedId; return new A.DismissibleEntity(t2[t4].userCompany, t5, new A.LayoutBuilder(new A.QuoteListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, t7, textStyle, filterMatch, textColor), _null), t8 === t3, t6, true, _null); }, get$quote() { return this.quote; } }; A.QuoteListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.QuoteListItem_build__closure(), _null, _null, false, _this.isChecked), _null); else { t2 = t1.quote; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.QuoteListItem_build__closure0(t1)); t2 = t4; } t3 = t1.quote; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = _this.client; t8 = t7.displayName; t8 = A.Text$(t8 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.subtitle; t10 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.amount, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.QuoteListItem_build__closure1(t1), new A.QuoteListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.QuoteListItem_build__closure3(), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.quote; t5 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(_this.client.displayName, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), new A.SizedBox(4, _null, _null, _null), A.Text$(A.formatNumber(t4.amount, context, t4.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.filterMatch; if (t6 == null) { t6 = t4.number; if (t6.length === 0) { t6 = _this.localization; t6 = t6.get$pending(t6); } t7 = t4.dueDate; t7 = A.formatDate(t7.length !== 0 ? t7 : t4.date, context, true, true, false); t8 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t8 = A.Text$(B.JSString_methods.trim$0(t6 + " \u2022 " + t7 + t8), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = t8; } else t6 = A.Text$(t6, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t6 = A.Expanded$(t6, 1); t7 = _this.localization.lookup$1(B.Map_IF4bq.$index(0, t4.get$calculatedStatusId())); t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.QuoteListItem_build__closure4(t1), new A.QuoteListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([t6, A.Text$(t7, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4.statusId === "1" ? _this.textColor : new A.QuoteStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t4, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.QuoteListItem_build__closure2.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.quote, !t1.showCheckbox, false); }, $signature: 0 }; A.QuoteListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.quote, false, true); }, $signature: 0 }; A.QuoteListItem_build__closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A.QuoteListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.quote], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.QuoteListItem_build__closure5.prototype = { call$0() { var t1 = this.$this; return A.selectEntity(t1.quote, !t1.showCheckbox, false); }, $signature: 0 }; A.QuoteListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.quote, false, true); }, $signature: 0 }; A.QuoteListItem_build__closure3.prototype = { call$1(value) { return null; }, $signature: 20 }; A.QuoteListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteListBuilder_build_closure(), A.quote_list_vm_QuoteListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteListVM); } }; A.QuoteListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_quote, new A.QuoteListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.QuotePresenter(), t2, t4); }, $signature: 2524 }; A.QuoteListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, invoiceId = J.$index$asx(t1.invoiceList, index); return new A.QuoteListItem(t1.invoiceMap._map$_map.$index(0, invoiceId), t1.filter, true, null); }, $signature: 441 }; A.QuoteListVM.prototype = {}; A.QuoteListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.QuoteListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.QuoteListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortQuotes(field)); }, $signature: 5 }; A.QuoteListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearQuoteMultiselect()); }, $signature: 9 }; A.QuotePdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuotePdfScreen_build_closure(this), new A.QuotePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuotePdfVM); } }; A.QuotePdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, quoteUIState = t1.quoteUIState, invoiceId = quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.QuotePdfVM(state, t2._list[t1].quoteState.$get$1(0, invoiceId), quoteUIState.historyActivityId); }, $signature: 2525 }; A.QuotePdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoicePdfView(vm, this.$this.showAppBar, new A.ValueKey("__quote_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2526 }; A.QuotePdfVM.prototype = {}; A.QuotePresenter.prototype = { getField$2$context$field(context, field) { var t4, t5, client, contact, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), quote = type$.legacy_InvoiceEntity._as(_this.entity), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].clientState; t5 = quote.clientId; client = t4.$get$1(0, t5); switch (field) { case "status": return A.EntityStatusChip$(quote, true, 105); case "number": t2 = quote.number; return A.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return new A.LinkTextRelatedEntity(client, quote, _null); case "date": return A.Text$(A.formatDate(quote.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return A.Text$(A.formatDate(quote.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(quote.amount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "valid_until": return A.Text$(A.formatDate(quote.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, quote.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, quote.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, quote.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, quote.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(quote.publicNotes, _null); case "private_notes": return new A.TableTooltip(quote.privateNotes, _null); case "discount": t1 = quote.isAmountDiscount; t2 = quote.discount; return A.Text$(t1 ? A.formatNumber(t2, context, t5, _null, B.FormatNumberType_0, true, _null, false) : A.formatNumber(t2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return A.Text$(quote.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + quote.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(quote.taxAmount, context, t5, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(quote.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return A.Text$(quote.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "project": return new A.LinkTextRelatedEntity(t2[t3].projectState.$get$1(0, quote.projectId), quote, _null); case "vendor": return new A.LinkTextRelatedEntity(t2[t3].vendorState.$get$1(0, quote.vendorId), quote, _null); case "client_state": return A.Text$(client.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_city": return A.Text$(client.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_postal_code": return A.Text$(client.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": case "contact_email": contact = A.quoteContactSelector(quote, t2[t3].clientState.$get$1(0, t5)); if (contact == null) return new A.SizedBox(_null, _null, _null, _null); if (field === "contact_name") return A.Text$(contact.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.CopyToClipboard(_null, contact.email, true, new A.QuotePresenter_getField_closure(contact), _null, _null); case "partial": return A.Text$(A.formatNumber(quote.partial, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "partial_due_date": return A.Text$(A.formatDate(quote.partialDueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.QuotePresenter_getField_closure.prototype = { call$0() { return A.launch("mailto:" + this.contact.email, null, false); }, $signature: 26 }; A.QuoteScreen.prototype = { build$1(_, context) { var company, userCompany, statuses, t3, t4, t5, t6, t7, _null = null, _s6_ = "_state", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, _s6_), t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = t2._list[t1].userCompany.company; t1 = A._lateReadCheck(store.__Store__state, _s6_); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = t2._list[t1].userCompany; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); statuses = A._setArrayType([A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.QuoteScreen_build_closure(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.QuoteScreen_build_closure0(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.QuoteScreen_build_closure1(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.QuoteScreen_build_closure2(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.QuoteScreen_build_closure3(t1))], type$.JSArray_legacy_InvoiceStatusEntity); t2 = state.uiState.quoteUIState.listUIState; t3 = t2.filterClearedAt; t4 = this.viewModel.quoteList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType(["status", "number", "client", "amount", "date", "valid_until"], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("exchange_rate"); t6.push("is_viewed"); t6.push("last_sent_date"); t6.push("project"); t6.push("vendor"); t6.push("contact_name"); t6.push("contact_email"); t6.push("client_state"); t6.push("client_city"); t6.push("client_postal_code"); t6.push("client_country"); t6.push("partial"); t6.push("partial_due_date"); t7 = A._setArrayType(["status", "number", "client", "amount", "date", "valid_until"], t5); t6 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, B.EntityType_quote, false, B.List_empty17, new A.QuoteScreen_build_closure4(store), new A.QuoteScreen_build_closure5(store), new A.QuoteScreen_build_closure6(store), new A.QuoteScreen_build_closure7(store), new A.QuoteScreen_build_closure8(store), new A.QuoteScreen_build_closure9(store), new A.QuoteScreen_build_closure10(store), new A.QuoteScreen_build_closure11(store), A._setArrayType(["number", "date", "valid_until", "updated_at"], t5), statuses, t6); t5 = state.prefState; t1 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_quote) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "quote_fab", false, new A.QuoteScreen_build_closure12(context), t1.get$newQuote()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_quote, t2, new A.QuoteScreen_build_closure13(store), t4, statuses, new A.QuoteScreen_build_closure14(store), new A.QuoteScreen_build_closure15(store), new A.ValueKey("__filter_" + t3 + "__", type$.ValueKey_legacy_String)), new A.QuoteListBuilder(_null), t6, B.EntityType_quote, t1, 0, _null, new A.QuoteScreen_build_closure16(store), new A.QuoteScreen_build_closure17(store)); } }; A.QuoteScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.QuoteScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization.get$sent(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.QuoteScreen_build_closure1.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-2"; t1 = this.localization.get$viewed(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.QuoteScreen_build_closure2.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "approved"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.QuoteScreen_build_closure3.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "expired"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.QuoteScreen_build_closure17.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartQuoteMultiselect()); }, $signature: 9 }; A.QuoteScreen_build_closure13.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterQuotes(value)); }, $signature: 11 }; A.QuoteScreen_build_closure15.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByState(state)); }, $signature: 27 }; A.QuoteScreen_build_closure14.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByStatus($status)); }, $signature: 115 }; A.QuoteScreen_build_closure16.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.quoteUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearQuoteMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartQuoteMultiselect()); }, $signature: 1 }; A.QuoteScreen_build_closure9.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortQuotes(value)); }, $signature: 5 }; A.QuoteScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByCustom1(value)); }, $signature: 5 }; A.QuoteScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByCustom2(value)); }, $signature: 5 }; A.QuoteScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByCustom3(value)); }, $signature: 5 }; A.QuoteScreen_build_closure8.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByCustom4(value)); }, $signature: 5 }; A.QuoteScreen_build_closure10.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByState(state)); }, $signature: 27 }; A.QuoteScreen_build_closure11.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterQuotesByStatus($status)); }, $signature: 115 }; A.QuoteScreen_build_closure4.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.quoteUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearQuoteMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartQuoteMultiselect()); }, $signature: 1 }; A.QuoteScreen_build_closure12.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_quote); }, $signature: 1 }; A.QuoteScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteScreenBuilder_build_closure(), A.quote_screen_vm_QuoteScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteScreenVM); } }; A.QuoteScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.QuoteScreen(vm, null); }, $signature: 2527 }; A.QuoteScreenVM.prototype = {}; A.QuoteViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.QuoteViewScreen_build_closure(this), new A.QuoteViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteViewVM); } }; A.QuoteViewScreen_build_closure0.prototype = { call$1(store) { return A.QuoteViewVM_QuoteViewVM$fromStore(store); }, $signature: 2528 }; A.QuoteViewScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.quoteUIState.tabIndex, null); }, $signature: 2529 }; A.QuoteViewVM.prototype = {}; A.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadQuote(completer, this.quote.id)); return completer.future; }, $signature: 17 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure.prototype = { call$2(context, index) { A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedQuote(), false, type$.legacy_ClientEntity), this.quote, true, index); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 266 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveQuoteDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.quote)); t1.then$1$1(0, new A.QuoteViewVM_QuoteViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.QuoteViewVM_QuoteViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.QuoteViewVM_QuoteViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.QuoteViewVM_QuoteViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.QuoteViewVM_QuoteViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.QuoteViewVM_QuoteViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.QuoteViewVM_QuoteViewVM$fromStore__closure(t2, this.quote), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.QuoteViewVM_QuoteViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadQuote(null, this.quote.id)); }, $signature: 103 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure3.prototype = { call$3(context, quote, activityId) { this.store.get$_dispatchers()[0].call$1(new A.ShowPdfQuote(quote, context, activityId)); }, call$2(context, quote) { return this.call$3(context, quote, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues() { return [null]; }, $signature: 261 }; A.RecurringExpenseEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringExpenseEditScreen_build_closure(), new A.RecurringExpenseEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseEditVM); } }; A.RecurringExpenseEditScreen_build_closure0.prototype = { call$1(store) { return A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore(store); }, $signature: 2530 }; A.RecurringExpenseEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ExpenseEdit(viewModel, new A.ValueKey(viewModel.expense.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2531 }; A.RecurringExpenseEditVM.prototype = {}; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure.prototype = { call$1(recurringExpense) { this.store.get$_dispatchers()[0].call$1(new A.UpdateRecurringExpense(recurringExpense)); }, $signature: 140 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2(t3), t4); }, $signature: 119 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, $signature: 3 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, $signature: 34 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3.prototype = { call$2(context, completer) { var t1 = A.VendorEntity_VendorEntity(null, null, null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, $signature: 3 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0.prototype = { call$1(expense) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, $signature: 34 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, B.EntityType_recurringExpense, _null, _null, _null, _null, _null), true); t1 = this.state.uiState; t1.recurringExpenseUIState.toString; t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3(this.store, context, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, $signature: 170 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3.prototype = { call$0() { var t4, t5, _this = this, t1 = _this.store, recurringExpense = A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringExpenseUIState.editing, t2 = _this.context, t3 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (!recurringExpense.get$isNew()) { t4 = _this.state; t5 = t4.uiState.selectedCompanyIndex; if (!A.hasRecurringExpenseChanges(recurringExpense, t4.userCompanyStates._list[t5].recurringExpenseState.map)) { t4 = _this.action; t4 = t4 != null && !t4.get$isServerSide(); } else t4 = false; } else t4 = false; t5 = _this.action; if (t4) A.handleEntitiesActions(A._setArrayType([recurringExpense], type$.JSArray_legacy_BaseEntity), t5, false); else { t4 = new A._Future($.Zone__current, type$._Future_legacy_ExpenseEntity); t1.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_legacy_ExpenseEntity), recurringExpense, t5)); return t4.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure(recurringExpense, t3, _this.state, t1, t2, t5), type$.Null).catchError$1(new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0(t2)); } }, $signature: 37 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure.prototype = { call$1(savedRecurringExpense) { var t3, _this = this, _null = null, _s25_ = "created_recurring_expense", _s25_0 = "updated_recurring_expense", _s23_ = "/recurring_expense/view", t1 = _this.recurringExpense, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t2.localeCode), _s25_); if (t2 == null) t2 = J.$index$asx(t3.$index(0, "en"), _s25_); } else { t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t2.localeCode), _s25_0); if (t2 == null) t2 = J.$index$asx(t3.$index(0, "en"), _s25_0); } A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); t2 = _this.context; if (t1.get$isNew()) { t1 = type$.legacy_Object; A.Navigator_of(t2, false).pushReplacementNamed$2$1(_s23_, t1, t1); } else A.Navigator_of(t2, false).pop$1(0, savedRecurringExpense); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedRecurringExpense, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_expense) && t2.editAfterSaving) A.editEntity(_null, savedRecurringExpense, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedRecurringExpense], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedRecurringExpense], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedRecurringExpense, _null, true); } }, $signature: 140 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0.prototype = { call$1(error) { A.showDialog(null, true, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.RecurringExpenseListItem.prototype = { build$1(_, context) { var t4, client, vendor, category, filterMatch, listUIState, isInMultiselect, isChecked, textStyle, textColor, parts, t5, _null = null, t1 = {}, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, expenseUIState = uiState.recurringExpenseUIState, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = this.expense; client = t2[t3].clientState.$get$1(0, t4.clientId); vendor = t2[t3].vendorState.$get$1(0, t4.vendorId); category = t2[t3].expenseCategoryState.$get$1(0, t4.categoryId); t2 = this.filter; if (t2 != null && t2.length !== 0) { t3 = t4.matchesFilterValue$1(t2); filterMatch = t3 == null ? client.matchesFilterValue$1(t2) : t3; } else filterMatch = _null; listUIState = expenseUIState.listUIState; t2 = listUIState.selectedIds; isInMultiselect = t2 != null; if (isInMultiselect) { t3 = t4.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); isChecked = t2; } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; if (filterMatch != null) t1.subtitle = filterMatch; else { t2 = client == null; if (!t2 || vendor != null || category != null) { parts = A._setArrayType([], type$.JSArray_legacy_String); t3 = t4.nextSendDate; if (t3.length !== 0) parts.push(A.formatDate(t3, context, true, true, false)); if (category != null && !category.get$isNew()) parts.push(category.name); if (vendor != null && !vendor.get$isNew()) parts.push(vendor.name); if (!t2 && !client.get$isNew()) parts.push(client.displayName); t1.subtitle = B.JSArray_methods.join$1(parts, " \u2022 "); } } if (A.getLayout(context) === B.AppLayout_desktop) { t2 = t4.id; t2 = t2 === (uiState.get$isEditing() ? expenseUIState.editing.id : expenseUIState.selectedId); } else t2 = false; t3 = A._lateReadCheck(store.__Store__state, "_state"); t5 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t5._list[t3].userCompany, t4, new A.LayoutBuilder(new A.RecurringExpenseListItem_build_closure(t1, this, isInMultiselect, listUIState, isChecked, state, textStyle, filterMatch, textColor), _null), t2, true, true, _null); }, get$expense() { return this.expense; } }; A.RecurringExpenseListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.RecurringExpenseListItem_build__closure(t1), _null, _null, false, _this.isChecked), _null), _null); else { t2 = t1.expense; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.RecurringExpenseListItem_build__closure0(t1)); t2 = t4; } t3 = t1.expense; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t3.publicNotes; t7 = A.Text$(t7 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, t4, _null, _null, _null); t8 = _this._box_0.subtitle; t9 = _this.textColor; t9 = A.Expanded$(A.Column$(A._setArrayType([t7, A.Text$(t8, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t9.get$value(t9) >>> 16 & 255, t9.get$value(t9) >>> 8 & 255, t9.get$value(t9) & 255)), _null, _null, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); t8 = t3.get$grossAmount(); t7 = t3.exchangeRate; if (t7 === 0) t7 = 1; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), t9, new A.SizedBox(8, _null, _null, _null), A.Text$(A.formatNumber(t8 * t7, context, _null, t3.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, B.TextAlign_5, _null, _null), new A.SizedBox(16, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.RecurringExpenseListItem_build__closure1(t1), new A.RecurringExpenseListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.RecurringExpenseListItem_build__closure3(t1), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.expense; t5 = t4.publicNotes; if (t5.length === 0) t5 = t4.number; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t6 = A.Expanded$(A.Text$(t5 + t6, _null, 1, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1); t5 = t4.get$grossAmount(); t7 = t4.exchangeRate; if (t7 === 0) t7 = 1; t8 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([t6, A.Text$(A.formatNumber(t5 * t7, context, _null, t4.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t8), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 == null) t5 = _this._box_0.subtitle; t6 = _this.textColor; t3 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.RecurringExpenseListItem_build__closure4(t1), new A.RecurringExpenseListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Text$(t5, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t6.get$value(t6) >>> 16 & 255, t6.get$value(t6) >>> 8 & 255, t6.get$value(t6) & 255)), _null, _null, _null), new A.EntityStateLabel(t4, _null)], t8), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); t1 = t3; } return t1; }, $signature: 109 }; A.RecurringExpenseListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.expense, false, false); return t1; }, $signature: 0 }; A.RecurringExpenseListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.expense, false, true); }, $signature: 0 }; A.RecurringExpenseListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.RecurringExpenseListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.expense], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.RecurringExpenseListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.expense, false, false); return t1; }, $signature: 0 }; A.RecurringExpenseListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.expense, false, true); }, $signature: 0 }; A.RecurringExpenseListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.RecurringExpenseListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringExpenseListBuilder_build_closure(), A.recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseListVM); } }; A.RecurringExpenseListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.recurringExpenseList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_recurringExpense, new A.RecurringExpenseListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.RecurringExpensePresenter(), t1, t3); }, $signature: 2532 }; A.RecurringExpenseListBuilder_build__closure.prototype = { call$2(context, index) { var t3, t1 = this.viewModel, recurringExpenseId = J.$index$asx(t1.recurringExpenseList, index), recurringExpense = t1.recurringExpenseMap._map$_map.$index(0, recurringExpenseId), t2 = t1.state.getUIState$1(B.EntityType_recurringExpense).get$listUIState().selectedIds; if (t2 != null) { t3 = recurringExpense.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.RecurringExpenseListItem(recurringExpense, t1.filter, t2, null); }, $signature: 2533 }; A.RecurringExpenseListVM.prototype = {}; A.RecurringExpenseListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.RecurringExpenseListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.RecurringExpenseListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortRecurringExpenses(field)); }, $signature: 5 }; A.RecurringExpenseListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearRecurringExpenseMultiselect()); }, $signature: 9 }; A.RecurringExpensePresenter.prototype = { getField$2$context$field(context, field) { var t2, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), expense = type$.legacy_ExpenseEntity._as(_this.entity); switch (field) { case "status": return A.EntityStatusChip$(expense, true, 105); case "vendor": case "vendor_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].vendorState.$get$1(0, expense.vendorId), expense, _null); case "client_id": case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].clientState.$get$1(0, expense.clientId), expense, _null); case "next_send_date": return A.Text$(A.formatDate(expense.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "net_amount": return A.Text$(A.formatNumber(expense.get$netAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return A.Text$(A.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "converted_amount": t1 = expense.get$grossAmount(); t2 = expense.exchangeRate; if (t2 === 0) t2 = 1; return A.Text$(A.formatNumber(t1 * t2, context, _null, expense.invoiceCurrencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(expense.get$taxAmount(), context, _null, expense.currencyId, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(expense.publicNotes, _null); case "number": return A.Text$(expense.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return new A.TableTooltip(expense.privateNotes, _null); case "should_be_invoiced": return A.Text$(B.JSBool_methods.toString$0(expense.shouldBeInvoiced), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency_id": t1 = state.staticState.currencyMap; t2 = expense.currencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "category": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].expenseCategoryState.map; t1 = expense.categoryId; t1 = t2._map$_map.$index(0, t1); t1 = t1 == null ? _null : t1.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "payment_date": return A.Text$(A.formatDate(expense.paymentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(expense.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_currency_id": t1 = state.staticState.currencyMap; t2 = expense.invoiceCurrencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return A.Text$(expense.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return A.Text$(expense.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return A.Text$(expense.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return A.Text$(A.formatNumber(expense.taxRate1, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return A.Text$(A.formatNumber(expense.taxRate2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return A.Text$(A.formatNumber(expense.taxRate3, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].invoiceState.map; t1 = expense.invoiceId; t1 = t2._map$_map.$index(0, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, expense.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, expense.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, expense.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, expense.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + expense.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "remaining_cycles": return A.Text$("" + expense.remainingCycles, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "frequency": return A.Text$(t1.lookup$1(B.Map_tOn4d.$index(0, expense.frequencyId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.RecurringExpenseScreen.prototype = { build$1(_, context) { var company, t4, t5, t6, t7, t8, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.recurringExpenseUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.recurringExpenseList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("number"); t7.push("net_amount"); t7.push("tax_amount"); t7.push("private_notes"); t7.push("should_be_invoiced"); t7.push("currency_id"); t7.push("category"); t7.push("exchange_rate"); t7.push("invoice_currency_id"); t7.push("tax_name1"); t7.push("tax_name2"); t7.push("tax_name3"); t7.push("tax_rate1"); t7.push("tax_rate2"); t7.push("tax_rate3"); t7.push("client_id"); t7.push("invoice_id"); t7.push("vendor_id"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("documents"); t7.push("remaining_cycles"); t8 = A._setArrayType(["status", "number", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], t6); t6 = A._setArrayType(["number", "next_send_date", "updated_at"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("expense1", true), company.getCustomFieldValues$2$excludeBlank("expense2", true), company.getCustomFieldValues$2$excludeBlank("expense3", true), company.getCustomFieldValues$2$excludeBlank("expense4", true), t8, B.EntityType_recurringExpense, false, B.List_empty17, new A.RecurringExpenseScreen_build_closure(store), new A.RecurringExpenseScreen_build_closure0(store), new A.RecurringExpenseScreen_build_closure1(store), new A.RecurringExpenseScreen_build_closure2(store), new A.RecurringExpenseScreen_build_closure3(store), new A.RecurringExpenseScreen_build_closure4(store), new A.RecurringExpenseScreen_build_closure5(store), _null, t6, B.List_empty18, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_recurringExpense) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "recurring_expense_fab", false, new A.RecurringExpenseScreen_build_closure6(context), t1.get$newRecurringExpense()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_recurringExpense, t2, new A.RecurringExpenseScreen_build_closure7(store), t5, _null, _null, new A.RecurringExpenseScreen_build_closure8(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.RecurringExpenseListBuilder(_null), t7, B.EntityType_recurringExpense, t1, 0, _null, new A.RecurringExpenseScreen_build_closure9(store), new A.RecurringExpenseScreen_build_closure10(store)); } }; A.RecurringExpenseScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartRecurringExpenseMultiselect()); }, $signature: 9 }; A.RecurringExpenseScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpenses(value)); }, $signature: 11 }; A.RecurringExpenseScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByState(state)); }, $signature: 27 }; A.RecurringExpenseScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringExpenseUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearRecurringExpenseMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartRecurringExpenseMultiselect()); }, $signature: 1 }; A.RecurringExpenseScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortRecurringExpenses(value)); }, $signature: 11 }; A.RecurringExpenseScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByState(state)); }, $signature: 27 }; A.RecurringExpenseScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringExpenseUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearRecurringExpenseMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartRecurringExpenseMultiselect()); }, $signature: 1 }; A.RecurringExpenseScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByCustom1(value)); }, $signature: 5 }; A.RecurringExpenseScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByCustom2(value)); }, $signature: 5 }; A.RecurringExpenseScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByCustom3(value)); }, $signature: 5 }; A.RecurringExpenseScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringExpensesByCustom4(value)); }, $signature: 5 }; A.RecurringExpenseScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_recurringExpense); }, $signature: 1 }; A.RecurringExpenseScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringExpenseScreenBuilder_build_closure(), A.recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseScreenVM); } }; A.RecurringExpenseScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.RecurringExpenseScreen(vm, null); }, $signature: 2534 }; A.RecurringExpenseScreenVM.prototype = {}; A.RecurringExpenseViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringExpenseViewScreen_build_closure(this), new A.RecurringExpenseViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseViewVM); } }; A.RecurringExpenseViewScreen_build_closure0.prototype = { call$1(store) { return A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore(store); }, $signature: 2535 }; A.RecurringExpenseViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.ExpenseView(vm, false, vm.state.uiState.recurringExpenseUIState.tabIndex, null); }, $signature: 2536 }; A.RecurringExpenseViewVM.prototype = {}; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpense(completer, this.recurringExpense.id)); return completer.future; }, $signature: 17 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringExpenseDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.recurringExpense)); t1.then$1$1(0, new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1()); }, $signature: 96 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure(t2, this.recurringExpense), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringExpense(null, this.recurringExpense.id)); }, $signature: 103 }; A.RecurringInvoiceEdit.prototype = { createState$0() { return new A._RecurringInvoiceEditState(null, null, B._StateLifecycle_0); } }; A._RecurringInvoiceEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._recurring_invoice_edit$_controller = A.TabController$(null, _this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._recurring_invoice_edit$_controller.animateTo$1(2); }, dispose$0(_) { this._recurring_invoice_edit$_controller.dispose$0(0); this.super$__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _recurring_invoice_edit$_onSavePressed$2(context, action) { if (!$.$get$_RecurringInvoiceEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _recurring_invoice_edit$_onSavePressed$1(context) { return this._recurring_invoice_edit$_onSavePressed$2(context, null); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), recurringInvoice = viewModel.invoice, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, recurringInvoice.clientId), isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_invoice); if (recurringInvoice.get$isNew()) t4 = t1.get$newRecurringInvoice(); else { t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_recurring_invoice"); if (t4 == null) t4 = ""; } t2 = recurringInvoice.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = type$.JSArray_legacy_Widget; t5 = A.TabBar$(_this._recurring_invoice_edit$_controller, _null, true, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$items(t1)), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$pdf())], t3)); t6 = $.$get$_RecurringInvoiceEditState__formKey(); t7 = _this._widget; if (isFullscreen) t3 = new A.RecurringInvoiceEditDetailsScreen(t7.viewModel, _null); else { t8 = recurringInvoice.id; t9 = recurringInvoice.updatedAt; t10 = _this._recurring_invoice_edit$_controller; t7 = t7.viewModel; t9 = A.TabBarView$(A._setArrayType([new A.RecurringInvoiceEditDetailsScreen(t7, _null), new A.InvoiceEditContactsScreen(recurringInvoice.entityType, _null), new A.RecurringInvoiceEditItemsScreen(t7, false, _null), new A.RecurringInvoiceEditNotesScreen(_null), new A.RecurringInvoiceEditPDFScreen(_null)], t3), t10, new A.ValueKey("__recurring_invoice_" + t8 + "_" + t9 + "__", type$.ValueKey_legacy_String)); t3 = t9; } return A.EditScaffold$(t2, t5, A.Form$(_null, t3, t6), new A.InvoiceEditFooter(recurringInvoice, _null), recurringInvoice, A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, B.Icon_yXb, "recurring_invoice_edit_fab", false, new A._RecurringInvoiceEditState_build_closure(_this, context, recurringInvoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new A._RecurringInvoiceEditState_build_closure0(_this), new A._RecurringInvoiceEditState_build_closure1(viewModel), new A._RecurringInvoiceEditState_build_closure2(_this), _null, t4); } }; A._RecurringInvoiceEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._RecurringInvoiceEditState_build_closure2.prototype = { call$1(context) { return this.$this._recurring_invoice_edit$_onSavePressed$1(context); }, $signature: 30 }; A._RecurringInvoiceEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._recurring_invoice_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._RecurringInvoiceEditState_build_closure.prototype = { call$0() { var _this = this; A.showDialog(null, true, new A._RecurringInvoiceEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, $signature: 1 }; A._RecurringInvoiceEditState_build__closure.prototype = { call$1(context) { var _this = this, t1 = _this.invoice, t2 = t1.lineItems._list, t3 = A._arrayInstanceType(t2), t4 = _this.viewModel, t5 = t3._eval$1("MappedIterable<1,BaseEntity*>"); return new A.InvoiceItemSelector(new A._RecurringInvoiceEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t2, new A._RecurringInvoiceEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._RecurringInvoiceEditState_build___closure1(t4), t5), true, t5._eval$1("Iterable.E")), false, null); }, $signature: 257 }; A._RecurringInvoiceEditState_build___closure0.prototype = { call$1(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 57 }; A._RecurringInvoiceEditState_build___closure1.prototype = { call$1(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].taskState.map; t1 = item.taskId; t1 = t2._map$_map.$index(0, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].expenseState.map; t1 = item.expenseId; t1 = t2._map$_map.$index(0, t1); } return t1; }, $signature: 265 }; A._RecurringInvoiceEditState_build___closure.prototype = { call$3(items, clientId, projectId) { this.viewModel.onItemsAdded.call$3(items, clientId, projectId); if (!this.isFullscreen) this.$this._recurring_invoice_edit$_controller.animateTo$1(2); }, call$1(items) { return this.call$3(items, null, null); }, call$2(items, clientId) { return this.call$3(items, clientId, null); }, $signature: 268 }; A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.RecurringInvoiceEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceEditDetailsScreen_build_closure(this), new A.RecurringInvoiceEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditDetailsVM); } }; A.RecurringInvoiceEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore(store); }, $signature: 2537 }; A.RecurringInvoiceEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditDesktop(viewModel, this.$this.viewModel, new A.ValueKey("__recurring_invoice_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new A.InvoiceEditDetails(viewModel, B.EntityType_recurringInvoice, null); }, $signature: 2538 }; A.RecurringInvoiceEditDetailsVM.prototype = {}; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure.prototype = { call$1(invoice) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoice(invoice)); }, $signature: 137 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3(context, invoice, client) { var t1 = this.store, t2 = invoice.applyClient$2(this.state, client); t1.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoice(t2)); t1.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoiceClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 286 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, $signature: 119 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_invoice/edit")); }, $signature: 3 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/recurring_invoice/edit")); }, $signature: 34 }; A.RecurringInvoiceEditItemsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceEditItemsScreen_build_closure(this), new A.RecurringInvoiceEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditItemsVM); } }; A.RecurringInvoiceEditItemsScreen_build_closure0.prototype = { call$1(store) { return A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2539 }; A.RecurringInvoiceEditItemsScreen_build_closure.prototype = { call$2(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_invoice)) return new A.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new A.InvoiceEditItems(viewModel, t2, null); }, $signature: 2540 }; A.RecurringInvoiceEditItemsVM.prototype = {}; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeleteRecurringInvoiceItem(index)); }, $signature: 106 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.EditRecurringInvoiceItem(null)); }, $signature: 1 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1.prototype = { call$2(item, index) { var t2, t1 = this.store; if (index === A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringInvoiceUIState.editing.lineItems._list.length) { t2 = item.rebuild$1(new A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure(this.isTasks)); t1.get$_dispatchers()[0].call$1(new A.AddRecurringInvoiceItem(t2)); } else t1.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoiceItem(index, item)); }, $signature: 233 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure.prototype = { call$1(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 58 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { this.store.get$_dispatchers()[0].call$1(new A.MoveRecurringInvoiceItem(oldIndex, newIndex)); }, $signature: 147 }; A.RecurringInvoiceEditNotesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceEditNotesScreen_build_closure(), new A.RecurringInvoiceEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditNotesVM); } }; A.RecurringInvoiceEditNotesScreen_build_closure0.prototype = { call$1(store) { return A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore(store); }, $signature: 2541 }; A.RecurringInvoiceEditNotesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditNotes(viewModel, null); }, $signature: 2542 }; A.RecurringInvoiceEditNotesVM.prototype = {}; A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure.prototype = { call$1(recurringInvoice) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateRecurringInvoice(recurringInvoice)); }, $signature: 137 }; A.RecurringInvoiceEditPDFScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceEditPDFScreen_build_closure(), new A.RecurringInvoiceEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditPDFVM); } }; A.RecurringInvoiceEditPDFScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, invoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.RecurringInvoiceEditPDFVM(state, t2._list[t1].userCompany.company, invoice); }, $signature: 2543 }; A.RecurringInvoiceEditPDFScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2544 }; A.RecurringInvoiceEditPDFVM.prototype = {}; A.RecurringInvoiceEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceEditScreen_build_closure(), new A.RecurringInvoiceEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditVM); } }; A.RecurringInvoiceEditScreen_build_closure0.prototype = { call$1(store) { return A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore(store); }, $signature: 2545 }; A.RecurringInvoiceEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.RecurringInvoiceEdit(viewModel, new A.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2546 }; A.RecurringInvoiceEditVM.prototype = {}; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 170 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t4, _this = this, t1 = _this.store, recurringInvoice = A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringInvoiceUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (recurringInvoice.clientId.length === 0) { A.showDialog(null, true, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!recurringInvoice.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; if (!A.hasRecurringInvoiceChanges(recurringInvoice, t2.userCompanyStates._list[t4].recurringInvoiceState.map)) { t2 = _this.action; t2 = t2 != null && !t2.get$isServerSide(); } else t2 = false; } else t2 = false; t4 = _this.action; if (t2) A.handleEntitiesActions(A._setArrayType([recurringInvoice], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new A._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); t1.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), recurringInvoice, t4)); return t2.then$1$1(0, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0(recurringInvoice, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1()); } }, $signature: 37 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 24 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0.prototype = { call$1(savedRecurringInvoice) { var _this = this, _null = null, _s23_ = "/recurring_invoice/view", t1 = _this.recurringInvoice, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_recurring_invoice"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedRecurringInvoice(); A.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s23_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s23_, t1, t1); } else t2.pop$1(0, savedRecurringInvoice); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedRecurringInvoice, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_invoice) && t2.editAfterSaving) A.editEntity(_null, savedRecurringInvoice, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedRecurringInvoice], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedRecurringInvoice], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedRecurringInvoice, _null, true); } }, $signature: 64 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0.prototype = { call$3(items, clientId, projectId) { var t1; if (items.length === 1) { t1 = this.recurringInvoice.lineItems._list.length; this.store.get$_dispatchers()[0].call$1(new A.EditRecurringInvoiceItem(t1)); } this.store.get$_dispatchers()[0].call$1(new A.AddRecurringInvoiceItems(items)); }, $signature: 271 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1.prototype = { call$1(context) { var _null = null, t1 = this.state.uiState; if (B.JSArray_methods.contains$1(A._setArrayType(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) A.viewEntitiesByType(B.EntityType_recurringInvoice, _null); else { A.createEntity(_null, _null, context, A.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null, _null), true); t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.RecurringInvoiceListItem.prototype = { build$1(_, context) { var t5, client, invoiceUIState, listUIState, t6, isInMultiselect, t7, isChecked, textStyle, t8, filterMatch, statusLabel, statusColor, textColor, subtitle, _null = null, t1 = {}, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = this.invoice; client = t2[t4].clientState.$get$1(0, t5.clientId); invoiceUIState = t3.recurringInvoiceUIState; listUIState = state.getUIState$1(t5.entityType).get$listUIState(); t6 = listUIState.selectedIds; isInMultiselect = t6 != null; if (isInMultiselect) { t7 = t5.id; isChecked = B.JSArray_methods.contains$1(t6._list, t7); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t7 = this.filter; if (t7 != null && t7.length !== 0) { t8 = t5.matchesFilterValue$1(t7); filterMatch = t8 == null ? client.matchesFilterValue$1(t7) : t8; } else filterMatch = _null; statusLabel = t6.lookup$1(B.Map_BzEVk.$index(0, t5.get$calculatedStatusId())); statusColor = new A.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t5.get$calculatedStatusId()); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t1.subtitle = ""; t7 = t5.nextSendDate; if (t7.length !== 0) { subtitle = A.formatDate(t7, context, true, true, false); t1.subtitle = subtitle; t7 = subtitle; } else t7 = ""; if (t7.length !== 0) t7 = t1.subtitle = t7 + " \u2022 "; t1.subtitle = B.JSString_methods.$add(t7, t6.lookup$1(B.Map_tOn4d.$index(0, t5.frequencyId))); if (A.getLayout(context) === B.AppLayout_desktop) { t7 = t5.id; t7 = t7 === (t3.get$isEditing() ? invoiceUIState.editing.id : invoiceUIState.selectedId); t3 = t7; } else t3 = false; return new A.DismissibleEntity(t2[t4].userCompany, t5, new A.LayoutBuilder(new A.RecurringInvoiceListItem_build_closure(t1, this, isInMultiselect, listUIState, isChecked, state, client, t6, textStyle, filterMatch, textColor, statusLabel, statusColor), _null), t3, true, true, _null); }, get$invoice() { return this.invoice; } }; A.RecurringInvoiceListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.RecurringInvoiceListItem_build__closure(), _null, _null, false, _this.isChecked), _null); else { t2 = t1.invoice; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.RecurringInvoiceListItem_build__closure0(t1)); t2 = t4; } t3 = t1.invoice; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.Text$(t4, _null, _null, B.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new A.EntityStateLabel(t3, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = _this.client; t8 = t7.displayName; t8 = A.Text$(t8 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.filterMatch; if (t9 == null) t9 = _this._box_0.subtitle; t10 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t4, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t8, A.Text$(t9, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null), A.Text$(A.formatNumber(t3.amount, context, t7.id, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, B.TextAlign_5, _null, _null), new A.SizedBox(25, _null, _null, _null), A.EntityStatusChip$(t3, false, 105)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.RecurringInvoiceListItem_build__closure1(t1), new A.RecurringInvoiceListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.RecurringInvoiceListItem_build__closure3(), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.invoice; t5 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(_this.client.displayName, _null, _null, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), new A.SizedBox(4, _null, _null, _null), A.Text$(A.formatNumber(t4.amount, context, t4.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.filterMatch; if (t6 == null) { t6 = t4.number; if (t6.length === 0) { t6 = _this.localization; t6 = t6.get$pending(t6); } t7 = t4.nextSendDate; t8 = t7.length !== 0 ? " \u2022 " : ""; t7 = A.formatDate(t7, context, true, true, false); t9 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t9 = A.Text$(B.JSString_methods.trim$0(t6 + t8 + t7 + t9), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = t9; } else t6 = A.Text$(t6, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); t6 = A.Expanded$(t6, 1); t1 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.RecurringInvoiceListItem_build__closure4(t1), new A.RecurringInvoiceListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([t6, A.Text$(_this.statusLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4.statusId === "1" ? _this.textColor : _this.statusColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.EntityStateLabel(t4, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); } return t1; }, $signature: 109 }; A.RecurringInvoiceListItem_build__closure2.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, false); }, $signature: 0 }; A.RecurringInvoiceListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, true); }, $signature: 0 }; A.RecurringInvoiceListItem_build__closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A.RecurringInvoiceListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.invoice], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.RecurringInvoiceListItem_build__closure5.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, false); }, $signature: 0 }; A.RecurringInvoiceListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.invoice, false, true); }, $signature: 0 }; A.RecurringInvoiceListItem_build__closure3.prototype = { call$1(value) { return null; }, $signature: 20 }; A.RecurringInvoiceListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceListBuilder_build_closure(), A.recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceListVM); } }; A.RecurringInvoiceListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.recurringInvoiceList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_recurringInvoice, new A.RecurringInvoiceListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.RecurringInvoicePresenter(), t1, t3); }, $signature: 2547 }; A.RecurringInvoiceListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, recurringInvoiceId = J.$index$asx(t1.recurringInvoiceList, index); return new A.RecurringInvoiceListItem(t1.recurringInvoiceMap._map$_map.$index(0, recurringInvoiceId), t1.filter, null); }, $signature: 2548 }; A.RecurringInvoiceListVM.prototype = {}; A.RecurringInvoiceListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.RecurringInvoiceListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.RecurringInvoiceListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortRecurringInvoices(field)); }, $signature: 5 }; A.RecurringInvoiceListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearRecurringInvoiceMultiselect()); }, $signature: 9 }; A.RecurringInvoicePdfScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoicePdfScreen_build_closure(this), new A.RecurringInvoicePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoicePdfVM); } }; A.RecurringInvoicePdfScreen_build_closure0.prototype = { call$1(store) { var state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, recurringInvoiceUIState = t1.recurringInvoiceUIState, invoiceId = recurringInvoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.RecurringInvoicePdfVM(state, t2._list[t1].recurringInvoiceState.$get$1(0, invoiceId), recurringInvoiceUIState.historyActivityId); }, $signature: 2549 }; A.RecurringInvoicePdfScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoicePdfView(vm, true, new A.ValueKey("__recurring_invoice_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2550 }; A.RecurringInvoicePdfVM.prototype = {}; A.RecurringInvoicePresenter.prototype = { getField$2$context$field(context, field) { var t2, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), invoice = type$.legacy_InvoiceEntity._as(_this.entity); switch (field) { case "status": return A.EntityStatusChip$(invoice, true, 105); case "number": t2 = invoice.number; return A.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].clientState.$get$1(0, invoice.clientId), invoice, _null); case "date": return A.Text$(A.formatDate(invoice.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder1_sent": return A.Text$(A.formatDate(invoice.reminder1Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder2_sent": return A.Text$(A.formatDate(invoice.reminder2Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder3_sent": return A.Text$(A.formatDate(invoice.reminder3Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder_last_sent": return A.Text$(A.formatDate(invoice.reminderLastSent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new A.Align(B.Alignment_1_0, _null, _null, A.Text$(A.formatNumber(invoice.amount, context, invoice.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, invoice.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, invoice.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, invoice.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, invoice.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return new A.TableTooltip(invoice.publicNotes, _null); case "private_notes": return new A.TableTooltip(invoice.privateNotes, _null); case "discount": t1 = invoice.isAmountDiscount; t2 = invoice.discount; return A.Text$(t1 ? A.formatNumber(t2, context, invoice.clientId, _null, B.FormatNumberType_0, true, _null, false) : A.formatNumber(t2, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return A.Text$(invoice.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + invoice.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return A.Text$(A.formatNumber(invoice.taxAmount, context, invoice.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return A.Text$(A.formatNumber(invoice.exchangeRate, context, _null, _null, B.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "remaining_cycles": t2 = invoice.remainingCycles; return A.Text$(t2 === -1 ? t1.get$endless() : A.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "next_send_date": return A.Text$(A.formatDate(invoice.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "frequency": return A.Text$(t1.lookup$1(B.Map_tOn4d.$index(0, invoice.frequencyId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "due_date_days": t2 = invoice.dueDateDays; if (t2 === "terms") t1 = t1.get$paymentTerm(); else if (t2 === "1") t1 = t1.get$firstDayOfTheMonth(); else t1 = t2 === "31" ? t1.get$lastDayOfTheMonth() : B.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", A.S(t2)); return A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "auto_bill": return A.Text$(t1.lookup$1(invoice.autoBill), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.RecurringInvoiceScreen.prototype = { build$1(_, context) { var company, statuses, t4, t5, t6, t7, t8, _null = null, _s16_ = "remaining_cycles", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3].userCompany; company = t3.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); statuses = A._setArrayType([A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.RecurringInvoiceScreen_build_closure(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.RecurringInvoiceScreen_build_closure0(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.RecurringInvoiceScreen_build_closure1(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.RecurringInvoiceScreen_build_closure2(t1)), A._$InvoiceStatusEntity$_("", "").rebuild$1(new A.RecurringInvoiceScreen_build_closure3(t1))], type$.JSArray_legacy_InvoiceStatusEntity); t2 = t2.recurringInvoiceUIState.listUIState; t4 = t2.filterClearedAt; t5 = this.viewModel.recurringInvoiceList; t2 = t2.filter; t6 = type$.JSArray_legacy_String; t7 = A.List_List$of(A._setArrayType(["status", "number", "client", "amount", _s16_, "next_send_date", "frequency", "due_date_days", "auto_bill"], t6), true, type$.legacy_String); B.JSArray_methods.addAll$1(t7, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t7.push("discount"); t7.push("po_number"); t7.push("public_notes"); t7.push("private_notes"); t7.push("documents"); t7.push("custom1"); t7.push("custom2"); t7.push("custom3"); t7.push("custom4"); t7.push("tax_amount"); t7.push("exchange_rate"); t8 = A._setArrayType(["status", "number", "client", "amount", _s16_, "next_send_date", "frequency", "due_date_days", "auto_bill"], t6); t6 = A._setArrayType(["number", "next_send_date", "updated_at"], t6); t7 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t8, B.EntityType_recurringInvoice, false, B.List_empty17, new A.RecurringInvoiceScreen_build_closure4(store), new A.RecurringInvoiceScreen_build_closure5(store), new A.RecurringInvoiceScreen_build_closure6(store), new A.RecurringInvoiceScreen_build_closure7(store), new A.RecurringInvoiceScreen_build_closure8(store), new A.RecurringInvoiceScreen_build_closure9(store), new A.RecurringInvoiceScreen_build_closure10(store), new A.RecurringInvoiceScreen_build_closure11(store), t6, statuses, t7); t6 = state.prefState; t1 = (t6.appLayout === B.AppLayout_mobile || t6.menuSidebarMode === B.AppSidebarMode_float) && t3.can$2(B.UserPermission_create, B.EntityType_recurringInvoice) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "recurring_invoice_fab", false, new A.RecurringInvoiceScreen_build_closure12(context), t1.get$newRecurringInvoice()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_recurringInvoice, t2, new A.RecurringInvoiceScreen_build_closure13(store), t5, statuses, new A.RecurringInvoiceScreen_build_closure14(store), new A.RecurringInvoiceScreen_build_closure15(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.RecurringInvoiceListBuilder(_null), t7, B.EntityType_recurringInvoice, t1, 0, _null, new A.RecurringInvoiceScreen_build_closure16(store), new A.RecurringInvoiceScreen_build_closure17(store)); } }; A.RecurringInvoiceScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.RecurringInvoiceScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = this.localization; t1 = t1.get$pending(t1); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.RecurringInvoiceScreen_build_closure1.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization; t1 = t1.get$active(t1); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.RecurringInvoiceScreen_build_closure2.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "paused"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.RecurringInvoiceScreen_build_closure3.prototype = { call$1(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "4"; t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "completed"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 66 }; A.RecurringInvoiceScreen_build_closure17.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartRecurringInvoiceMultiselect()); }, $signature: 9 }; A.RecurringInvoiceScreen_build_closure13.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoices(value)); }, $signature: 11 }; A.RecurringInvoiceScreen_build_closure14.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByStatus($status)); }, $signature: 115 }; A.RecurringInvoiceScreen_build_closure15.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByState(state)); }, $signature: 27 }; A.RecurringInvoiceScreen_build_closure16.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringInvoiceUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearRecurringInvoiceMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartRecurringInvoiceMultiselect()); }, $signature: 1 }; A.RecurringInvoiceScreen_build_closure9.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortRecurringInvoices(value)); }, $signature: 11 }; A.RecurringInvoiceScreen_build_closure11.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByStatus($status)); }, $signature: 115 }; A.RecurringInvoiceScreen_build_closure10.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByState(state)); }, $signature: 27 }; A.RecurringInvoiceScreen_build_closure4.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.recurringInvoiceUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearRecurringInvoiceMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartRecurringInvoiceMultiselect()); }, $signature: 1 }; A.RecurringInvoiceScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByCustom1(value)); }, $signature: 5 }; A.RecurringInvoiceScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByCustom2(value)); }, $signature: 5 }; A.RecurringInvoiceScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByCustom3(value)); }, $signature: 5 }; A.RecurringInvoiceScreen_build_closure8.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterRecurringInvoicesByCustom4(value)); }, $signature: 5 }; A.RecurringInvoiceScreen_build_closure12.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_recurringInvoice); }, $signature: 1 }; A.RecurringInvoiceScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceScreenBuilder_build_closure(), A.recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceScreenVM); } }; A.RecurringInvoiceScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.RecurringInvoiceScreen(vm, null); }, $signature: 2551 }; A.RecurringInvoiceScreenVM.prototype = {}; A.RecurringInvoiceViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.RecurringInvoiceViewScreen_build_closure(this), new A.RecurringInvoiceViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceViewVM); } }; A.RecurringInvoiceViewScreen_build_closure0.prototype = { call$1(store) { return A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore(store); }, $signature: 2552 }; A.RecurringInvoiceViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.InvoiceView(vm, this.$this.isFilter, vm.state.uiState.recurringInvoiceUIState.tabIndex, null); }, $signature: 2553 }; A.RecurringInvoiceViewVM.prototype = {}; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoice(completer, this.invoice.id)); return completer.future; }, $signature: 17 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure.prototype = { call$2(context, index) { A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedRecurringInvoice(), false, type$.legacy_ClientEntity), this.invoice, true, index); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 266 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveRecurringInvoiceDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.invoice)); t1.then$1$1(0, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure(t2, this.invoice), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadRecurringInvoice(null, this.invoice.id)); }, $signature: 103 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3.prototype = { call$3(context, invoice, activityId) { this.store.get$_dispatchers()[0].call$1(new A.ShowPdfRecurringInvoice(invoice, context, activityId)); }, call$2(context, invoice) { return this.call$3(context, invoice, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues() { return [null]; }, $signature: 261 }; A.ClientReportFields.prototype = { toString$0(_) { return "ClientReportFields." + this._core$_name; } }; A.memoizedClientReport_closure.prototype = { call$6(userCompany, reportsUIState, clientMap, userMap, groupMap, staticState) { return A.clientReport(userCompany, reportsUIState, clientMap, userMap, groupMap, staticState); }, $signature: 2554 }; A.clientReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_ANz, e, type$.legacy_ClientReportFields); }, $signature: 2555 }; A.clientReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2556 }; A.clientReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 462 }; A.clientReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.clientReportSettings, this.selectedColumns); }, $signature: 81 }; A.clientReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 462 }; A.clientReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 462 }; A.ContactReportFields.prototype = { toString$0(_) { return "ContactReportFields." + this._core$_name; } }; A.memoizedContactReport_closure.prototype = { call$5(userCompany, reportsUIState, clientMap, userMap, staticState) { return A.contactReport(userCompany, reportsUIState, clientMap, userMap, staticState); }, $signature: 2559 }; A.contactReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_4Sq, e, type$.legacy_ContactReportFields); }, $signature: 2560 }; A.contactReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2561 }; A.contactReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 463 }; A.contactReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.clientReportSettings, this.selectedColumns); }, $signature: 81 }; A.contactReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 463 }; A.contactReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 463 }; A.CreditReportFields.prototype = { toString$0(_) { return "CreditReportFields." + this._core$_name; } }; A.memoizedCreditReport_closure.prototype = { call$6(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState) { return A.creditReport(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState); }, $signature: 2563 }; A.creditReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_HT3, e, type$.legacy_CreditReportFields); }, $signature: 2564 }; A.creditReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2565 }; A.creditReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 464 }; A.creditReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.creditReportSettings, this.selectedColumns); }, $signature: 81 }; A.creditReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 464 }; A.creditReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 464 }; A.DocumentReportFields.prototype = { toString$0(_) { return "DocumentReportFields." + this._core$_name; } }; A.memoizedDocumentReport_closure.prototype = { call$10(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap) { return A.documentReport(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap); }, $signature: 2567 }; A.documentReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_lqi, e, type$.legacy_DocumentReportFields); }, $signature: 2568 }; A.documentReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2569 }; A.documentReport__getRow.prototype = { call$2(entity, $document) { var t1, t2, t3, t4, t5, skip, t6, value, t7, t8, _this = this, _null = null, row = A._setArrayType([], type$.JSArray_legacy_ReportElement); for (t1 = _this._box_0.columns._list, t1 = new J.ArrayIterator(t1, t1.length, A._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")), t2 = _this.userCompany, t3 = _this.reportsUIState, t4 = _this.localization, t5 = _this.userMap, skip = false; t1.moveNext$0();) { t6 = t1.__interceptors$_current; switch (t6) { case B.DocumentReportFields_0: value = $document.name; break; case B.DocumentReportFields_4: value = $document.type; break; case B.DocumentReportFields_7: t7 = $document.createdAt; t7 *= 1000; t8 = new A.DateTime(t7, true); t8.DateTime$_withValue$2$isUtc(t7, true); value = t8.toIso8601String$0(); break; case B.DocumentReportFields_8: t7 = $document.createdUserId; t7 = t5._map$_map.$index(0, t7); if (t7 == null) value = _null; else { t8 = B.JSString_methods.trim$0(t7.firstName + " " + t7.lastName); t7 = t8.length !== 0 ? t8 : t7.email; value = t7; } if (value == null) value = ""; break; case B.DocumentReportFields_6: value = entity.get$listDisplayName(); break; case B.DocumentReportFields_5: value = entity.get$entityType(); break; case B.DocumentReportFields_9: t7 = $document.updatedAt; t7 *= 1000; t8 = new A.DateTime(t7, true); t8.DateTime$_withValue$2$isUtc(t7, true); value = t8.toIso8601String$0(); break; case B.DocumentReportFields_1: value = $document.size; break; case B.DocumentReportFields_2: value = $document.width; break; case B.DocumentReportFields_3: value = $document.height; break; default: value = ""; } if (!A.ReportResult_matchField(A.EnumUtils_parse(t6), t4, t3, t2, value)) skip = true; t6 = J.getInterceptor$(value); if (t6.get$runtimeType(value) === B.Type_bool_lhE) { t6 = entity.get$id(entity); row.push(new A.ReportBoolValue(value, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === B.Type_int_tHn) { t6 = entity.get$id(entity); row.push(new A.ReportIntValue(value, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === B.Type_double_K1J) { t6 = entity.get$id(entity); row.push(new A.ReportNumberValue(value, _null, _null, _null, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === B.Type_EntityType_6qb) { t6 = entity.get$id(entity); t7 = entity.get$entityType(); row.push(new A.ReportEntityTypeValue(entity.get$entityType(), t7, t6)); } else { t6 = entity.get$id(entity); row.push(new A.ReportStringValue(value, entity.get$entityType(), t6)); } } return skip ? _null : row; }, $signature: 2570 }; A.documentReport_closure1.prototype = { call$2(clientId, client) { B.JSArray_methods.forEach$1(client.documents._list, new A.documentReport__closure2(this._getRow, client, this.data, this.entities)); }, $signature: 240 }; A.documentReport__closure2.prototype = { call$1($document) { var _this = this, row = _this._getRow.call$2(_this.client, $document); if (row != null) { _this.data.push(row); _this.entities.push($document); } }, $signature: 72 }; A.documentReport_closure2.prototype = { call$2(productId, product) { B.JSArray_methods.forEach$1(product.documents._list, new A.documentReport__closure1(this._getRow, product, this.data, this.entities)); }, $signature: 2571 }; A.documentReport__closure1.prototype = { call$1($document) { var _this = this, row = _this._getRow.call$2(_this.product, $document); if (row != null) { _this.data.push(row); _this.entities.push($document); } }, $signature: 72 }; A.documentReport_closure3.prototype = { call$2(invoiceId, invoice) { B.JSArray_methods.forEach$1(invoice.documents._list, new A.documentReport__closure0(this._getRow, invoice, this.data, this.entities)); }, $signature: 49 }; A.documentReport__closure0.prototype = { call$1($document) { var _this = this, row = _this._getRow.call$2(_this.invoice, $document); if (row != null) { _this.data.push(row); _this.entities.push($document); } }, $signature: 72 }; A.documentReport_closure4.prototype = { call$2(quoteId, quote) { B.JSArray_methods.forEach$1(quote.documents._list, new A.documentReport__closure(this._getRow, quote, this.data, this.entities)); }, $signature: 49 }; A.documentReport__closure.prototype = { call$1($document) { var _this = this, row = _this._getRow.call$2(_this.quote, $document); if (row != null) { _this.data.push(row); _this.entities.push($document); } }, $signature: 72 }; A.documentReport_closure5.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 465 }; A.documentReport_closure6.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.documentReportSettings, this.selectedColumns); }, $signature: 81 }; A.documentReport_closure7.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 465 }; A.documentReport_closure8.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 465 }; A.ExpenseReportFields.prototype = { toString$0(_) { return "ExpenseReportFields." + this._core$_name; } }; A.memoizedExpenseReport_closure.prototype = { call$10(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, projectMap, userMap, staticState) { return A.expenseReport(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, projectMap, userMap, staticState); }, $signature: 2573 }; A.expenseReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_9W7, e, type$.legacy_ExpenseReportFields); }, $signature: 2574 }; A.expenseReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2575 }; A.expenseReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 466 }; A.expenseReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.expenseReportSettings, this.selectedColumns); }, $signature: 81 }; A.expenseReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 466 }; A.expenseReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 466 }; A.InvoiceItemReportFields.prototype = { toString$0(_) { return "InvoiceItemReportFields." + this._core$_name; } }; A.memoizedInvoiceItemReport_closure.prototype = { call$6(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return A.lineItemReport0(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, $signature: 683 }; A.lineItemReport_closure5.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_Wii, e, type$.legacy_InvoiceItemReportFields); }, $signature: 2578 }; A.lineItemReport_closure6.prototype = { call$1(element) { return element != null; }, $signature: 2579 }; A.lineItemReport_closure7.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 468 }; A.lineItemReport_closure8.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.lineItemReportSettings, this.selectedColumns); }, $signature: 81 }; A.lineItemReport_closure9.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 468 }; A.lineItemReport_closure10.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 468 }; A.InvoiceReportFields.prototype = { toString$0(_) { return "InvoiceReportFields." + this._core$_name; } }; A.memoizedInvoiceReport_closure.prototype = { call$8(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState) { return A.invoiceReport(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState); }, $signature: 679 }; A.invoiceReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_7Jw, e, type$.legacy_InvoiceReportFields); }, $signature: 2582 }; A.invoiceReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2583 }; A.invoiceReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 469 }; A.invoiceReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.invoiceReportSettings, this.selectedColumns); }, $signature: 81 }; A.invoiceReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 469 }; A.invoiceReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 469 }; A.TaxRateReportFields0.prototype = { toString$0(_) { return "TaxRateReportFields." + this._core$_name; } }; A.memoizedInvoiceTaxReport_closure.prototype = { call$9(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { return A.taxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState); }, $signature: 674 }; A.taxReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_y1j, e, type$.legacy_TaxRateReportFields); }, $signature: 2586 }; A.taxReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2587 }; A.taxReport_closure2.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 303 }; A.taxReport_closure1.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taxRateReportSettings, this.selectedColumns); }, $signature: 81 }; A.taxReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 303 }; A.taxReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 303 }; A.taxReport_closure5.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 303 }; A.PaymentReportFields.prototype = { toString$0(_) { return "PaymentReportFields." + this._core$_name; } }; A.memoizedPaymentReport_closure.prototype = { call$8(userCompany, reportsUIState, paymentMap, clientMap, userMap, invoiceMap, creditMap, staticState) { return A.paymentReport(userCompany, reportsUIState, paymentMap, clientMap, userMap, invoiceMap, creditMap, staticState); }, $signature: 2589 }; A.paymentReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_wMy0, e, type$.legacy_PaymentReportFields); }, $signature: 2590 }; A.paymentReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2591 }; A.paymentReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 470 }; A.paymentReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.paymentReportSettings, this.selectedColumns); }, $signature: 81 }; A.paymentReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 470 }; A.paymentReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 470 }; A.TaxRateReportFields.prototype = { toString$0(_) { return "TaxRateReportFields." + this._core$_name; } }; A.memoizedPaymentTaxReport_closure.prototype = { call$9(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { return A.paymentTaxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState); }, $signature: 674 }; A.paymentTaxReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_qPn, e, type$.legacy_TaxRateReportFields_2); }, $signature: 2593 }; A.paymentTaxReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2594 }; A.paymentTaxReport_closure2.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 296 }; A.paymentTaxReport_closure1.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taxRateReportSettings, this.selectedColumns); }, $signature: 81 }; A.paymentTaxReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 296 }; A.paymentTaxReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 296 }; A.paymentTaxReport_closure5.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 296 }; A.ProductReportFields.prototype = { toString$0(_) { return "ProductReportFields." + this._core$_name; } }; A.memoizedProductReport_closure.prototype = { call$6(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState) { return A.productReport(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState); }, $signature: 2596 }; A.productReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_7xV, e, type$.legacy_ProductReportFields); }, $signature: 2597 }; A.productReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2598 }; A.productReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 443 }; A.productReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.productReportSettings, this.selectedColumns); }, $signature: 81 }; A.productReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 443 }; A.productReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 443 }; A.ProfitAndLossReportFields.prototype = { toString$0(_) { return "ProfitAndLossReportFields." + this._core$_name; } }; A.memoizedProfitAndLossReport_closure.prototype = { call$9(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState) { return A.profitAndLossReport(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState); }, $signature: 2600 }; A.profitAndLossReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_T8q, e, type$.legacy_ProfitAndLossReportFields); }, $signature: 2601 }; A.profitAndLossReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2602 }; A.profitAndLossReport_closure2.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 289 }; A.profitAndLossReport_closure1.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.profitAndLossReportSettings, this.selectedColumns); }, $signature: 81 }; A.profitAndLossReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 289 }; A.profitAndLossReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 289 }; A.profitAndLossReport_closure5.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 289 }; A.PurchaseOrderReportFields.prototype = { toString$0(_) { return "PurchaseOrderReportFields." + this._core$_name; } }; A.memoizedPurchaseOrderReport_closure.prototype = { call$7(userCompany, reportsUIState, purchaseOrderMap, clientMap, vendorMap, userMap, staticState) { return A.purchaseOrderReport(userCompany, reportsUIState, purchaseOrderMap, clientMap, vendorMap, userMap, staticState); }, $signature: 658 }; A.purchaseOrderReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_MAa, e, type$.legacy_PurchaseOrderReportFields); }, $signature: 2605 }; A.purchaseOrderReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2606 }; A.purchaseOrderReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 471 }; A.purchaseOrderReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.purchaseOrderReportSettings, this.selectedColumns); }, $signature: 81 }; A.purchaseOrderReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 471 }; A.purchaseOrderReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 471 }; A.QuoteItemReportFields.prototype = { toString$0(_) { return "QuoteItemReportFields." + this._core$_name; } }; A.memoizedQuoteItemReport_closure.prototype = { call$6(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return A.lineItemReport(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, $signature: 683 }; A.lineItemReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_gqs, e, type$.legacy_QuoteItemReportFields); }, $signature: 2608 }; A.lineItemReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2609 }; A.lineItemReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 473 }; A.lineItemReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.lineItemReportSettings, this.selectedColumns); }, $signature: 81 }; A.lineItemReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 473 }; A.lineItemReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 473 }; A.QuoteReportFields.prototype = { toString$0(_) { return "QuoteReportFields." + this._core$_name; } }; A.memoizedQuoteReport_closure.prototype = { call$7(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState) { return A.quoteReport(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState); }, $signature: 658 }; A.quoteReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_m9u, e, type$.legacy_QuoteReportFields); }, $signature: 2611 }; A.quoteReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2612 }; A.quoteReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 475 }; A.quoteReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.quoteReportSettings, this.selectedColumns); }, $signature: 81 }; A.quoteReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 475 }; A.quoteReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 475 }; A.RecurringExpenseReportFields.prototype = { toString$0(_) { return "RecurringExpenseReportFields." + this._core$_name; } }; A.memoizedRecurringExpenseReport_closure.prototype = { call$9(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState) { return A.recurringExpenseReport(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState); }, $signature: 2614 }; A.recurringExpenseReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_oqK, e, type$.legacy_RecurringExpenseReportFields); }, $signature: 2615 }; A.recurringExpenseReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2616 }; A.recurringExpenseReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 477 }; A.recurringExpenseReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.expenseReportSettings, this.selectedColumns); }, $signature: 81 }; A.recurringExpenseReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 477 }; A.recurringExpenseReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 477 }; A.RecurringInvoiceReportFields.prototype = { toString$0(_) { return "RecurringInvoiceReportFields." + this._core$_name; } }; A.memoizedRecurringInvoiceReport_closure.prototype = { call$8(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState) { return A.recurringInvoiceReport(userCompany, reportsUIState, invoiceMap, clientMap, userMap, vendorMap, projectMap, staticState); }, $signature: 679 }; A.recurringInvoiceReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_QXJ, e, type$.legacy_RecurringInvoiceReportFields); }, $signature: 2618 }; A.recurringInvoiceReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2619 }; A.recurringInvoiceReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 478 }; A.recurringInvoiceReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.invoiceReportSettings, this.selectedColumns); }, $signature: 81 }; A.recurringInvoiceReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 478 }; A.recurringInvoiceReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 478 }; A.ReportCharts.prototype = { build$1(_, context) { var color, numericAxis, t3, t4, t5, dateTimeAxis, columnType, child, keys, _null = null, t1 = this.viewModel, state = t1.state, reportState = t1.reportState, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (reportState.chart.length === 0 || reportState.group.length === 0) return new A.SizedBox(_null, _null, _null, _null); color = state.prefState.enableDarkMode ? B.Color_toQ : B.Color_ww8; numericAxis = A.NumericAxisSpec$(A.GridlineRendererSpec$(_null, new A.TextStyleSpec(_null, color), new A.LineStyleSpec(color), type$.legacy_num)); t3 = type$.legacy_String; t4 = A.GridlineRendererSpec$(45, new A.TextStyleSpec(10, color), new A.LineStyleSpec(B.Color_WL1), t3); t5 = type$.legacy_DateTime; dateTimeAxis = A.DateTimeAxisSpec$(A.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, new A.TextStyleSpec(_null, color), new A.LineStyleSpec(color), _null, _null, t5)); columnType = A.getReportColumnType(reportState.group, context); switch (columnType.index) { case 0: case 4: case 3: case 5: case 6: t1 = t1.groupTotals.rows; t1.toString; t5 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Map*>"); t3 = A._setArrayType([A.Series_Series(new A.ReportCharts_build_closure(state), A.List_List$of(new A.MappedListIterable(t1, new A.ReportCharts_build_closure0(this, reportState), t5), true, t5._eval$1("ListIterable.E")), _null, new A.ReportCharts_build_closure1(columnType, t2), "chart", new A.ReportCharts_build_closure2(), _null, type$.dynamic, t3)], type$.JSArray_legacy_Series_of_dynamic_and_legacy_String); t1 = A.BarRendererConfig$(_null, _null, type$.String); child = new A.BarChart(new A.OrdinalAxisSpec(_null, t4, _null, _null, _null), numericAxis, _null, _null, _null, t3, true, B.Duration_300000, _null, t1, true, _null, _null, _null, _null, _null, _null); break; case 2: case 1: t1 = t1.groupTotals.rows; t1.toString; t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); keys = A.List_List$of(new A.WhereIterable(t1, new A.ReportCharts_build_closure3(), t2), true, t2._eval$1("Iterable.E")); B.JSArray_methods.sort$1(keys, new A.ReportCharts_build_closure4()); t2 = A._arrayInstanceType(keys)._eval$1("MappedListIterable<1,Map*>"); child = A.TimeSeriesChart$(A._setArrayType([A.Series_Series(new A.ReportCharts_build_closure5(state), A.List_List$of(new A.MappedListIterable(keys, new A.ReportCharts_build_closure6(this, reportState), t2), true, t2._eval$1("ListIterable.E")), _null, new A.ReportCharts_build_closure7(), "chart", new A.ReportCharts_build_closure8(), _null, type$.dynamic, t5)], type$.JSArray_legacy_Series_of_dynamic_and_legacy_DateTime), true, _null, dateTimeAxis, numericAxis, _null); break; default: child = _null; } return child == null ? new A.SizedBox(_null, _null, _null, _null) : A.FormCard$(A.ClipRect$(new A.SizedBox(_null, 200, child, _null), B.Clip_1, _null), _null, _null, _null, false, _null, false, _null); } }; A.ReportCharts_build_closure.prototype = { call$2(_, __) { return A.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 632 }; A.ReportCharts_build_closure1.prototype = { call$2(item, _) { var t1 = J.getInterceptor$asx(item); return this.columnType === B.ReportColumnType_5 ? this.localization.lookup$1(t1.$index(item, "name")) : t1.$index(item, "name"); }, $signature: 2622 }; A.ReportCharts_build_closure2.prototype = { call$2(item, _) { return J.$index$asx(item, "value"); }, $signature: 630 }; A.ReportCharts_build_closure0.prototype = { call$1(key) { return A.LinkedHashMap_LinkedHashMap$_literal(["name", key, "value", this.$this.viewModel.groupTotals.totals.$index(0, key).$index(0, this.reportState.chart)], type$.legacy_String, type$.legacy_Object); }, $signature: 624 }; A.ReportCharts_build_closure3.prototype = { call$1(element) { return element.length !== 0; }, $signature: 16 }; A.ReportCharts_build_closure4.prototype = { call$2(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 19 }; A.ReportCharts_build_closure5.prototype = { call$2(_, __) { return A.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 632 }; A.ReportCharts_build_closure7.prototype = { call$2(item, _) { return A.DateTime_tryParse(J.$index$asx(item, "name")); }, $signature: 2625 }; A.ReportCharts_build_closure8.prototype = { call$2(item, _) { return J.$index$asx(item, "value"); }, $signature: 630 }; A.ReportCharts_build_closure6.prototype = { call$1(key) { return A.LinkedHashMap_LinkedHashMap$_literal(["name", key, "value", this.$this.viewModel.groupTotals.totals.$index(0, key).$index(0, this.reportState.chart)], type$.legacy_String, type$.legacy_Object); }, $signature: 624 }; A.ReportsScreen.prototype = { build$1(_, context) { var t3, hideReports, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, filterColumns, dateColumns, dateField, dateRange, entities, firstEntity, chartChildren, _this = this, _null = null, _s4_ = "week", _s23_ = "upgrade_to_view_reports", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = _this.viewModel, state = t2.state, reportsState = t2.reportState, reportResult = t2.reportResult, leading = new A.SizedBox(_null, _null, _null, _null); if (state.get$isHosted()) { if (state.get$isHosted()) { t3 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list[t3].userCompany.account.plan === "enterprise"; } else t3 = true; if (!t3) { t3 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list[t3].userCompany.account.plan === "pro"; } else t3 = true; if (!t3) { if (state.get$isHosted()) { t3 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list[t3].userCompany.account.trialDaysLeft > 0; } else t3 = false; t3 = !t3; hideReports = t3; } else hideReports = false; } else hideReports = false; if (A.getLayout(context) !== B.AppLayout_mobile) { t3 = state.prefState; t3 = t3.appLayout === B.AppLayout_mobile || t3.menuSidebarMode === B.AppSidebarMode_float; } else t3 = true; if (t3) leading = new A.Builder(new A.ReportsScreen_build_closure(t1), _null); t3 = reportsState.filters; t4 = t3.get$keys(t3); t4.toString; t4 = new A.WhereIterable(t4, new A.ReportsScreen_build_closure0(reportsState, context), t4.$ti._eval$1("WhereIterable")); t4 = t4.get$isEmpty(t4); t5 = type$.JSArray_legacy_String; t6 = A._setArrayType(["client", "contact"], t5); t7 = state.uiState.selectedCompanyIndex; t8 = state.userCompanyStates._list; if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_invoice)) { t9 = A._setArrayType(["invoice", "invoice_item", "payment"], t5); t10 = t8[t7].userCompany.company; if (t10.numberOfInvoiceTaxRates > 0 || t10.numberOfItemTaxRates > 0) B.JSArray_methods.addAll$1(t9, A._setArrayType(["invoice_tax", "payment_tax"], t5)); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_recurringInvoice)) t9.push("recurring_invoice"); B.JSArray_methods.addAll$1(t6, t9); } if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_quote)) B.JSArray_methods.addAll$1(t6, A._setArrayType(["quote", "quote_item"], t5)); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_credit)) t6.push("credit"); t6.push("document"); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_expense)) { t9 = A._setArrayType(["expense"], t5); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_recurringExpense)) t9.push("recurring_expense"); B.JSArray_methods.addAll$1(t6, t9); } t6.push("product"); t6.push("profit_and_loss"); t6.push("task"); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_vendor)) { t5 = A._setArrayType([], t5); if (t8[t7].userCompany.company.isModuleEnabled$1(B.EntityType_purchaseOrder)) t5.push("purchase_order"); B.JSArray_methods.addAll$1(t6, t5); } B.JSArray_methods.sort$1(t6, new A.ReportsScreen_build_closure1()); t1.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t9 = t1.localeCode; t10 = J.$index$asx(t5.$index(0, t9), "report"); if (t10 == null) t10 = ""; t11 = reportsState.report; t12 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t13 = type$.legacy_String; t10 = A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(t6, new A.ReportsScreen_build_closure2(t1), t12), true, t12._eval$1("ListIterable.E")), _null, t10, new A.ReportsScreen_build_closure3(_this), _null, false, t11, t13); t12 = t1.get$group(); t6 = reportsState.group; t14 = reportResult.columns; t15 = A._arrayInstanceType(t14); t16 = t15._eval$1("WhereIterable<1>"); t15 = t15._eval$1("MappedIterable<1,DropdownMenuItem*>"); t17 = t15._eval$1("Iterable.E"); t18 = type$.JSArray_legacy_AppDropdownButton_legacy_String; t12 = A._setArrayType([t10, A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t14, new A.ReportsScreen_build_closure4(context), t16), new A.ReportsScreen_build_closure5(state, t1), t15), true, t17), _null, t12, new A.ReportsScreen_build_closure6(_this), _null, true, t6, t13)], t18); if (A.getReportColumnType(t6, context) === B.ReportColumnType_1 || A.getReportColumnType(t6, context) === B.ReportColumnType_2) { t10 = J.$index$asx(t5.$index(0, t9), "subgroup"); if (t10 == null) t10 = ""; t19 = reportsState.subgroup; t20 = J.$index$asx(t5.$index(0, t9), "day"); t20 = A.DropdownMenuItem$(A.Text$(t20 == null ? "" : t20, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "day", t13); t21 = J.$index$asx(t5.$index(0, t9), _s4_); t21 = A.DropdownMenuItem$(A.Text$(t21 == null ? J.$index$asx(t5.$index(0, "en"), _s4_) : t21, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s4_, t13); t22 = J.$index$asx(t5.$index(0, t9), "month"); t22 = A.DropdownMenuItem$(A.Text$(t22 == null ? "" : t22, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "month", t13); t23 = J.$index$asx(t5.$index(0, t9), "year"); t12.push(A.AppDropdownButton$(_null, "", true, A._setArrayType([t20, t21, t22, A.DropdownMenuItem$(A.Text$(t23 == null ? "" : t23, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "year", t13)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t10, new A.ReportsScreen_build_closure7(_this), _null, false, t19, t13)); } t10 = t3.get$keys(t3); t10.toString; filterColumns = new A.WhereIterable(t10, new A.ReportsScreen_build_closure8(context, reportsState), t10.$ti._eval$1("WhereIterable")); dateColumns = new A.WhereIterable(t14, new A.ReportsScreen_build_closure9(context), t16); dateField = !filterColumns.get$isEmpty(filterColumns) ? filterColumns.get$first(filterColumns) : _null; t3 = t3._map$_map; t10 = t3.$index(0, dateField); dateRange = J.get$length$asx(t10 == null ? "" : t10) !== 0 ? A._$valueOf0(t3.$index(0, dateField)) : _null; t3 = type$.JSArray_legacy_Widget; t10 = A._setArrayType([], t3); if (dateColumns.get$length(dateColumns) > 1) { t19 = t1.get$date(); t10.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedIterable(dateColumns, new A.ReportsScreen_build_closure10(t1), t15), true, t17), _null, t19, new A.ReportsScreen_build_closure11(_this, context, reportsState, filterColumns), _null, true, dateField, t13)); } t19 = J.$index$asx(t5.$index(0, t9), "range"); if (t19 == null) t19 = J.$index$asx(t5.$index(0, "en"), "range"); t20 = !dateColumns.get$iterator(dateColumns).moveNext$0() ? _null : new A.ReportsScreen_build_closure12(_this, context, reportsState, dateField, dateColumns); t21 = $.$get$_$values()._set$_set; t22 = A._instanceType(t21)._eval$1("EfficientLengthMappedIterable*>"); t10.push(A.AppDropdownButton$(_null, _null, true, A.List_List$of(new A.EfficientLengthMappedIterable(t21, new A.ReportsScreen_build_closure13(t1), t22), true, t22._eval$1("Iterable.E")), _null, t19, t20, _null, true, dateRange, type$.legacy_DateRange)); if (!t4) B.JSArray_methods.addAll$1(t10, A._setArrayType([A.DatePicker$(false, _null, _null, t1.get$startDate(), _null, new A.ReportsScreen_build_closure14(_this), reportsState.customStartDate, _null), A.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new A.ReportsScreen_build_closure15(_this), reportsState.customEndDate, _null)], type$.JSArray_legacy_DatePicker)); entities = reportResult.entities; if (entities == null) entities = A._setArrayType([], type$.JSArray_legacy_BaseEntity); firstEntity = entities.length !== 0 ? B.JSArray_methods.get$first(entities) : _null; t4 = entities.length; if (t4 > 100) B.JSArray_methods.removeRange$2(entities, 100, t4); t4 = t6.length !== 0; t19 = J.$index$asx(t5.$index(0, t9), "chart"); if (t19 == null) t19 = ""; t20 = t4 ? reportsState.chart : _null; chartChildren = A._setArrayType([A.AppDropdownButton$(_null, "", t4, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t14, new A.ReportsScreen_build_closure16(context), t16), new A.ReportsScreen_build_closure17(t1), t15), true, t17), _null, t19, new A.ReportsScreen_build_closure18(_this), _null, true, t20, t13)], t18); if (A.getLayout(context) !== B.AppLayout_mobile) { t4 = state.prefState; t4 = t4.appLayout === B.AppLayout_mobile || t4.menuSidebarMode === B.AppSidebarMode_float; } else t4 = true; t4 = t4 ? new A.MenuDrawerBuilder(_null) : _null; if (A.getLayout(context) !== B.AppLayout_mobile) { t13 = state.prefState; t13 = t13.appLayout === B.AppLayout_mobile || t13.historySidebarMode === B.AppSidebarMode_float; } else t13 = true; t13 = t13 ? new A.HistoryDrawerBuilder(_null) : _null; t14 = A._setArrayType([A.Expanded$(A.Text$(t1.get$reports(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t3); t15 = state.isSaving; if (t15) t14.push(new A.SizedBox(28, 28, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null)); t14 = A.Row$(t14, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); if (hideReports) t16 = A._setArrayType([], t3); else { t16 = A._setArrayType([], t3); if (A.getLayout(context) === B.AppLayout_desktop) B.JSArray_methods.addAll$1(t16, A._setArrayType([new A.Builder(new A.ReportsScreen_build_closure19(_this, t1, reportResult), _null), new A.AppTextButton(t1.get$$export(), new A.ReportsScreen_build_closure20(_this, context), true, _null, _null)], t3)); t17 = firstEntity == null ? _null : firstEntity.getActions$2$multiselect$userCompany(true, t8[t7].userCompany); t16.push(new A.Padding(B.EdgeInsets_0_0_8_0, A.ActionMenuButton$(firstEntity, t17, _null, _null, false, new A.ReportsScreen_build_closure21(t1, reportResult, firstEntity)), _null)); if (A.getLayout(context) === B.AppLayout_mobile || !state.prefState.isHistoryVisible) t16.push(new A.Builder(new A.ReportsScreen_build_closure22(state, t1, store), _null)); } t14 = A.AppBar$(t16, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, _null, _null, t14, _null, _null, _null, 1, _null); if (hideReports) { t2 = J.$index$asx(t5.$index(0, t9), _s23_); t2 = A._setArrayType([new A.HelpText(t2 == null ? J.$index$asx(t5.$index(0, "en"), _s23_) : t2, _null)], t3); if (!A.isApple()) t2.push(new A.AppButton(_null, _null, t1.get$upgrade().toUpperCase(), new A.ReportsScreen_build_closure23(state), _null, _null)); t1 = A.Center$(A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null); } else { t5 = t8[t7].userCompany.company.id; t15 = "" + t15; t7 = type$.ValueKey_legacy_String; if (A.getLayout(context) === B.AppLayout_mobile) { t8 = A.List_List$of(t12, true, type$.legacy_Widget); B.JSArray_methods.addAll$1(t8, t10); B.JSArray_methods.addAll$1(t8, chartChildren); t8 = A.FormCard$(_null, t8, _null, _null, false, _null, false, _null); } else t8 = A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.FormCard$(_null, t12, _null, _null, false, _null, false, B.EdgeInsets_12_12_6_0), _null), new A.Flexible(1, B.FlexFit_1, A.FormCard$(_null, t10, _null, _null, false, _null, false, B.EdgeInsets_6_12_6_0), _null), new A.Flexible(1, B.FlexFit_1, A.FormCard$(_null, chartChildren, _null, _null, false, _null, false, B.EdgeInsets_6_12_12_0), _null)], t3), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t8 = A._setArrayType([t8], t3); if (A.getLayout(context) === B.AppLayout_mobile) t8.push(new A.Padding(B.EdgeInsets_16_0_16_0, A.Row$(A._setArrayType([new A.Builder(new A.ReportsScreen_build_closure24(_this, t1, reportResult), _null), new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, _null, t1.get$$export(), new A.ReportsScreen_build_closure25(_this, context), _null, _null), 1)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); t8.push(new A.ReportDataTable(t2, new A.ValueKey(t15 + "_" + t6 + "_" + reportsState.selectedGroup, t7))); t1 = new A.ScrollableListView(t8, _null, _null, new A.ValueKey(t5 + "_" + t15 + "_" + t11 + "_" + t6, t7)); } return new A.WillPopScope(A.Scaffold$(t14, _null, t1, _null, t4, t13, _null, _null), new A.ReportsScreen_build_closure26(store), _null); } }; A.ReportsScreen_build_closure.prototype = { call$1(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return A.InkWell$(false, _null, true, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null), _null, new A.ReportsScreen_build__closure5(context), B.EdgeInsets_8_8_8_8, _null, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 343 }; A.ReportsScreen_build__closure5.prototype = { call$0() { A.Scaffold_of(this.context).openDrawer$0(); }, $signature: 1 }; A.ReportsScreen_build_closure0.prototype = { call$1(column) { var filter = this.reportsState.filters._map$_map.$index(0, column), t1 = this.context; return (A.getReportColumnType(column, t1) === B.ReportColumnType_1 || A.getReportColumnType(column, t1) === B.ReportColumnType_2) && filter === "custom"; }, $signature: 16 }; A.ReportsScreen_build_closure1.prototype = { call$2(a, b) { return J.compareTo$1$ns(a, b); }, $signature: 19 }; A.ReportsScreen_build_closure3.prototype = { call$1(value) { return this.$this.viewModel.onSettingsChanged.call$1$report(value); }, $signature: 12 }; A.ReportsScreen_build_closure2.prototype = { call$1(report) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(report), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, report, type$.legacy_String); }, $signature: 43 }; A.ReportsScreen_build_closure6.prototype = { call$1(value) { this.$this.viewModel.onSettingsChanged.call$2$group$selectedGroup(value, ""); }, $signature: 7 }; A.ReportsScreen_build_closure4.prototype = { call$1(column) { return A.getReportColumnType(column, this.context) !== B.ReportColumnType_3; }, $signature: 16 }; A.ReportsScreen_build_closure5.prototype = { call$1(column) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, columnTitle = t1.userCompanyStates._list[t2].userCompany.company.getCustomFieldLabel$1(column); return A.DropdownMenuItem$(A.Text$(columnTitle.length === 0 ? this.localization.lookup$1(column) : columnTitle, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.legacy_String); }, $signature: 43 }; A.ReportsScreen_build_closure7.prototype = { call$1(value) { this.$this.viewModel.onSettingsChanged.call$1$subgroup(value); }, $signature: 7 }; A.ReportsScreen_build_closure8.prototype = { call$1(column) { var t1; if (B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_2, B.ReportColumnType_1], type$.JSArray_legacy_ReportColumnType), A.getReportColumnType(column, this.context))) { t1 = this.reportState.filters._map$_map.$index(0, column); t1 = J.get$length$asx(t1 == null ? "" : t1) !== 0; } else t1 = false; return t1; }, $signature: 16 }; A.ReportsScreen_build_closure9.prototype = { call$1(column) { return B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_2, B.ReportColumnType_1], type$.JSArray_legacy_ReportColumnType), A.getReportColumnType(column, this.context)); }, $signature: 16 }; A.ReportsScreen_build_closure11.prototype = { call$1(value) { var _this = this, t1 = _this.reportState; t1 = t1.filters.rebuild$1(new A.ReportsScreen_build__closure4(value, _this.filterColumns, t1)); _this.$this.viewModel.onReportFiltersChanged.call$2(_this.context, t1); }, $signature: 7 }; A.ReportsScreen_build__closure4.prototype = { call$1(b) { var t3, t4, _this = this, t1 = _this.value, t2 = type$.legacy_String; if (J.get$isEmpty$asx(t1 == null ? "" : t1)) { t1 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t2 = _this.filterColumns; if (!t2.get$isEmpty(t2)) t1.$indexSet(0, t2.get$first(t2), ""); } else { t2 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t3 = _this.reportState.filters._map$_map; t4 = t3.$index(0, t1); t2.$indexSet(0, t1, J.get$length$asx(t4 == null ? "" : t4) !== 0 ? t3.$index(0, t1) : "thisQuarter"); t3 = _this.filterColumns; if (!t3.get$isEmpty(t3) && !J.$eq$(t3.get$first(t3), t1)) t2.$indexSet(0, t3.get$first(t3), ""); t1 = t2; } b.addAll$1(0, t1); return b; }, $signature: 202 }; A.ReportsScreen_build_closure10.prototype = { call$1(column) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(column), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.legacy_String); }, $signature: 43 }; A.ReportsScreen_build_closure12.prototype = { call$1(value) { var _this = this, t1 = _this.reportState.filters.rebuild$1(new A.ReportsScreen_build__closure3(_this.dateField, _this.dateColumns, value)); _this.$this.viewModel.onReportFiltersChanged.call$2(_this.context, t1); }, $signature: 7 }; A.ReportsScreen_build__closure3.prototype = { call$1(b) { var t2, t3, t1 = this.dateField; if (t1 == null) { t1 = this.dateColumns; t1 = t1.get$first(t1); } t2 = this.value; t2 = t2 == null ? "" : A.S(t2); t3 = type$.legacy_String; b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([t1, t2], t3, t3)); return b; }, $signature: 202 }; A.ReportsScreen_build_closure13.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.legacy_DateRange); }, $signature: 317 }; A.ReportsScreen_build_closure14.prototype = { call$2(date, _) { return this.$this.viewModel.onSettingsChanged.call$1$customStartDate(date); }, $signature: 288 }; A.ReportsScreen_build_closure15.prototype = { call$2(date, _) { return this.$this.viewModel.onSettingsChanged.call$1$customEndDate(date); }, $signature: 288 }; A.ReportsScreen_build_closure18.prototype = { call$1(value) { this.$this.viewModel.onSettingsChanged.call$1$chart(value); }, $signature: 7 }; A.ReportsScreen_build_closure16.prototype = { call$1(column) { return B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_3, B.ReportColumnType_5, B.ReportColumnType_6], type$.JSArray_legacy_ReportColumnType), A.getReportColumnType(column, this.context)); }, $signature: 16 }; A.ReportsScreen_build_closure17.prototype = { call$1(column) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(column), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.legacy_String); }, $signature: 43 }; A.ReportsScreen_build_closure26.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.store.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.ReportsScreen_build_closure19.prototype = { call$1(context) { var t1 = this.localization; return new A.AppTextButton(t1.get$columns(t1), new A.ReportsScreen_build__closure2(this.$this, context, this.reportResult), true, null, null); }, $signature: 351 }; A.ReportsScreen_build__closure2.prototype = { call$0() { var t2, t3, t1 = $.$get$navigatorKey(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t2 = this.reportResult; t3 = t2.columns; t3 = A._setArrayType(t3.slice(0), A._arrayInstanceType(t3)); A.multiselectDialog(t1, t2.defaultColumns, new A.ReportsScreen_build___closure0(this.$this, this.context), t2.allColumns, t3); }, $signature: 1 }; A.ReportsScreen_build___closure0.prototype = { call$1(selected) { this.$this.viewModel.onReportColumnsChanged.call$2(this.context, selected); }, $signature: 104 }; A.ReportsScreen_build_closure20.prototype = { call$0() { this.$this.viewModel.onExportPressed.call$1(this.context); }, $signature: 1 }; A.ReportsScreen_build_closure21.prototype = { call$2(context, action) { var t1 = this.localization, t2 = J.$add$ansx(t1.lookup$1(A.toSnakeCase(action.super$EnumClass$toString(0))), " \u2022 "), t3 = this.reportResult, t4 = t3.entities.length, t5 = this.firstEntity; t1 = t4 === 1 ? "1 " + A.S(t1.lookup$1(J.toString$0$(t5.get$entityType()))) : "" + t4 + " " + A.S(t1.lookup$1(t5.get$entityType().get$plural())); A.confirmCallback(false, new A.ReportsScreen_build__closure1(t3, action), context, t2 + t1, false, null); }, $signature: 2627 }; A.ReportsScreen_build__closure1.prototype = { call$1(_) { A.handleEntitiesActions(this.reportResult.entities, this.action, false); }, $signature: 11 }; A.ReportsScreen_build_closure22.prototype = { call$1(context) { var t3, _null = null, t1 = A.Icon$(B.IconData_58132_MaterialIcons_null_false, _null, _null), t2 = this.state; if (t2.prefState.enableTooltips) { t3 = this.localization; t3 = t3.get$history(t3); } else t3 = _null; return A.IconButton$(B.Alignment_0_0, _null, _null, true, t1, _null, new A.ReportsScreen_build__closure0(context, t2, this.store), B.EdgeInsets_4_0_20_0, _null, t3, _null); }, $signature: 424 }; A.ReportsScreen_build__closure0.prototype = { call$0() { var t2, _null = null, t1 = this.context; if (A.getLayout(t1) !== B.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === B.AppLayout_mobile || t2.historySidebarMode === B.AppSidebarMode_float; } else t2 = true; if (t2) A.Scaffold_of(t1).openEndDrawer$0(); else { t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.AppSidebar_history, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); } }, $signature: 1 }; A.ReportsScreen_build_closure23.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.launch(t1.userCompanyStates._list[t2].userCompany.ninjaPortalUrl, null, false); }, $signature: 26 }; A.ReportsScreen_build_closure24.prototype = { call$1(context) { var _null = null, t1 = this.localization; return A.Expanded$(new A.AppButton(_null, _null, t1.get$columns(t1), new A.ReportsScreen_build__closure(this.$this, context, this.reportResult), _null, _null), 1); }, $signature: 2628 }; A.ReportsScreen_build__closure.prototype = { call$0() { var t1 = this.context, t2 = this.reportResult, t3 = t2.columns; t3 = A._setArrayType(t3.slice(0), A._arrayInstanceType(t3)); A.multiselectDialog(t1, t2.defaultColumns, new A.ReportsScreen_build___closure(this.$this, t1), t2.allColumns, t3); }, $signature: 1 }; A.ReportsScreen_build___closure.prototype = { call$1(selected) { this.$this.viewModel.onReportColumnsChanged.call$2(this.context, selected); }, $signature: 104 }; A.ReportsScreen_build_closure25.prototype = { call$0() { this.$this.viewModel.onExportPressed.call$1(this.context); }, $signature: 1 }; A.ReportDataTable.prototype = { createState$0() { var t1 = type$.legacy_String; return new A._ReportDataTableState(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_TextEditingController), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_FocusNode), B._StateLifecycle_0); } }; A._ReportDataTableState.prototype = { initState$0() { var viewModel, t1, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; t1 = _this._framework$_element; t1.toString; _this.dataTableSource = new A.ReportDataTableSource(viewModel, t1, _this._textEditingControllers, _this._textEditingFocusNodes, new A._ReportDataTableState_initState_closure(_this, viewModel), $.$get$ChangeNotifier__emptyListeners()); }, didUpdateWidget$1(oldWidget) { var viewModel, t1; this.super$State$didUpdateWidget(oldWidget); viewModel = this._widget.viewModel; t1 = this.dataTableSource; t1.viewModel = viewModel; t1.notifyListeners$0(); }, didChangeDependencies$0() { var t1, t2, t3, t4, t5, t6, t7, _i, column, t8, textEditingController, t9, _this = this, viewModel = _this._widget.viewModel, reportState = viewModel.reportState; for (t1 = viewModel.reportResult.columns, t2 = t1.length, t3 = _this._textEditingControllers, t4 = type$.legacy_String, t5 = type$.legacy_TextEditingController, t6 = _this._textEditingFocusNodes, t7 = type$.legacy_FocusNode, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { column = t1[_i]; t8 = reportState.report; if (t3.$index(0, t8) == null) { t3.$indexSet(0, t8, A.LinkedHashMap_LinkedHashMap$_empty(t4, t5)); t6.$indexSet(0, t8, A.LinkedHashMap_LinkedHashMap$_empty(t4, t7)); } if (!t3.$index(0, t8).containsKey$1(0, column)) { textEditingController = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); textEditingController.addListener$1(0, new A._ReportDataTableState_didChangeDependencies_closure(_this, column, textEditingController)); t9 = reportState.filters._map$_map; if (t9.containsKey$1(0, column)) { t9 = t9.$index(0, column); textEditingController.super$ValueNotifier$value(0, textEditingController._change_notifier$_value.copyWith$3$composing$selection$text(B.TextRange_m1_m1, B.TextSelection_ke5, t9)); } t3.$index(0, t8).$indexSet(0, column, textEditingController); t6.$index(0, t8).$indexSet(0, column, A.FocusNode$(true, null, true, true, null, null, false)); } } _this.super$State$didChangeDependencies(); }, _reports_screen$_onChanged$2(column, value) { var t3, t1 = this._widget.viewModel, t2 = this._framework$_element; t2.toString; t3 = t1.reportState.filters.rebuild$1(new A._ReportDataTableState__onChanged_closure(column, value)); t1.onReportFiltersChanged.call$2(t2, t3); }, dispose$0(_) { var t1 = this._textEditingControllers; new A.LinkedHashMapKeyIterable(t1, A._instanceType(t1)._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, new A._ReportDataTableState_dispose_closure(this)); this.super$State$dispose(0); }, build$1(_, context) { var t3, reportSettings, sortedColumns, _this = this, _null = null, t1 = _this._widget.viewModel, state = t1.state, reportResult = t1.reportResult, reportState = t1.reportState, t2 = state.uiState.selectedCompanyIndex, settings = state.userCompanyStates._list[t2].userCompany.settings; if (settings != null) { t2 = settings.reportSettings; t3 = reportState.report; t3 = t2._map$_map.containsKey$1(0, t3); t2 = t3; } else t2 = false; if (t2) { t2 = settings.reportSettings; t3 = reportState.report; reportSettings = t2._map$_map.$index(0, t3); } else reportSettings = A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); sortedColumns = reportResult.sortedColumns$1(reportState); t2 = type$.JSArray_legacy_Widget; t3 = A._setArrayType([], t2); if (reportState.chart.length !== 0) t3.push(A.ClipRect$(new A.ReportCharts(_this._widget.viewModel, _null), B.Clip_1, _null)); if (reportResult.showTotals) t3.push(A.FormCard$(A.getLayout(context) === B.AppLayout_mobile ? A.SingleChildScrollView$(new A.TotalsDataTable(t1, reportSettings, reportResult, _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0) : A.Column$(A._setArrayType([new A.TotalsDataTable(t1, reportSettings, reportResult, _null)], t2), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, _null, false, _null, false, _null)); t1 = reportSettings.sortColumn; t1 = B.JSArray_methods.contains$1(sortedColumns, t1) ? B.JSArray_methods.indexOf$1(sortedColumns, t1) : _null; t2 = reportSettings.sortAscending; t3.push(A.SingleChildScrollView$(new A.PaginatedDataTable(new A.SizedBox(_null, _null, _null, _null), reportResult.tableColumns$2(context, new A._ReportDataTableState_build_closure(_this, sortedColumns)), t1, t2, true, _this.dataTableSource, _null), _null, B.DragStartBehavior_1, B.EdgeInsets_12_12_12_12, _null, _null, false, B.Axis_1)); return A.Column$(t3, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }; A._ReportDataTableState_initState_closure.prototype = { call$2(column, value) { var t2, t1 = this.$this, reportState = t1._widget.viewModel.reportState; t1 = t1._framework$_element; t1.toString; t2 = reportState.filters.rebuild$1(new A._ReportDataTableState_initState__closure(column, value)); this.viewModel.onReportFiltersChanged.call$2(t1, t2); }, $signature: 38 }; A._ReportDataTableState_initState__closure.prototype = { call$1(b) { var t1 = type$.legacy_String; b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, $signature: 202 }; A._ReportDataTableState_didChangeDependencies_closure.prototype = { call$0() { this.$this._reports_screen$_onChanged$2(this.column, this.textEditingController._change_notifier$_value.text); }, $signature: 1 }; A._ReportDataTableState__onChanged_closure.prototype = { call$1(b) { var t1 = type$.legacy_String; b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, $signature: 202 }; A._ReportDataTableState_dispose_closure.prototype = { call$1(i) { var t1 = this.$this, t2 = t1._textEditingControllers.$index(0, i); t2.toString; new A.LinkedHashMapKeyIterable(t2, A._instanceType(t2)._eval$1("LinkedHashMapKeyIterable<1>")).forEach$1(0, new A._ReportDataTableState_dispose__closure(t1, i)); }, $signature: 11 }; A._ReportDataTableState_dispose__closure.prototype = { call$1(j) { var t1 = this.$this, t2 = this.i, t3 = t1._textEditingControllers.$index(0, t2).$index(0, j); t3.toString; t3.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t3.ChangeNotifier__count = 0; J.dispose$0$x(t1._textEditingFocusNodes.$index(0, t2).$index(0, j)); }, $signature: 11 }; A._ReportDataTableState_build_closure.prototype = { call$2(index, ascending) { var t1 = this.$this._widget.viewModel, t2 = this.sortedColumns[index]; return t1.onReportSorted.call$2(t2, ascending); }, $signature: 617 }; A.TotalsDataTable.prototype = { build$1(_, context) { var _null = null, t1 = this.reportSettings, t2 = this.reportResult, t3 = t2.columns.length, t4 = t1.sortTotalsIndex; t3 = t3 > t4 ? t4 : _null; t1 = t1.sortTotalsAscending; return A.DataTable$(_null, _null, t2.totalColumns$2(context, new A.TotalsDataTable_build_closure(this)), _null, _null, _null, _null, _null, _null, t2.totalRows$1(context), false, true, t1, t3); } }; A.TotalsDataTable_build_closure.prototype = { call$2(index, ascending) { return this.$this.viewModel.onReportTotalsSorted.call$2(index, ascending); }, $signature: 617 }; A.ReportColumnType.prototype = { toString$0(_) { return "ReportColumnType." + this._core$_name; } }; A.getReportColumnType_convertCustomFieldType.prototype = { call$1(type) { if (type === "date") return B.ReportColumnType_2; else if (type === "switch") return B.ReportColumnType_4; else return B.ReportColumnType_0; }, $signature: 2630 }; A.ReportDataTableSource.prototype = { get$rowCount(_) { var t1, reportState = this.viewModel.reportState; if (reportState.group.length === 0 || reportState.get$isGroupByFiltered()) return this.viewModel.reportResult.data.length + 1; else { t1 = this.viewModel.groupTotals.totals; return t1 == null ? 1 : t1._length + 1; } }, getRow$1(index) { var _this = this, t1 = _this.viewModel, reportResult = t1.reportResult, t2 = _this.context; if (index === 0) return reportResult.tableFilters$4(t2, _this.textEditingControllers.$index(0, t1.reportState.report), _this.textEditingFocusNodes.$index(0, _this.viewModel.reportState.report), new A.ReportDataTableSource_getRow_closure(_this)); else return reportResult.tableRow$3(t2, t1, index); } }; A.ReportDataTableSource_getRow_closure.prototype = { call$2(column, value) { return this.$this.onFilterChanged.call$2(column, value); }, $signature: 2631 }; A.ReportResult.prototype = { sortedColumns$1(reportState) { var t1 = this.columns, data = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)), group = reportState.group; if (group.length !== 0) { B.JSArray_methods.remove$1(data, group); B.JSArray_methods.insert$2(data, 0, group); } return data; }, tableColumns$2(context, onSortCallback) { var company, reportState, t4, t5, _i, column, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = A._lateReadCheck(store.__Store__state, "_state"), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = t3._list[t2].userCompany.company; reportState = A._lateReadCheck(store.__Store__state, "_state").uiState.reportsUIState; t2 = A._setArrayType([], type$.JSArray_legacy_DataColumn); for (t3 = this.sortedColumns$1(reportState), t4 = t3.length, t5 = type$.JSArray_legacy_Widget, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { column = t3[_i]; t6 = A._setArrayType([new A.Text(J.$add$ansx(company.getCustomFieldLabel$1(column).length !== 0 ? company.getCustomFieldLabel$1(column) : t1.lookup$1(column), " "), _null, _null, _null, _null, _null, B.TextOverflow_2, _null, 1, _null, _null)], t5); if (J.$eq$(column, reportState.group)) t6.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_57704_MaterialIcons_null_false, _null, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A.ReportResult_tableColumns_closure(store, reportState), B.EdgeInsets_8_8_8_8, _null, _null, _null)); t2.push(new A.DataColumn(A.Container$(_null, A.Row$(t6, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, new A.BoxConstraints(80, 1 / 0, 0, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null), A.getReportColumnType(column, context) === B.ReportColumnType_3, onSortCallback)); } return t2; }, tableFilters$4(context, textEditingControllers, textEditingFocusNodes, onFilterChanged) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _i, column, t16, scope, t17, t18, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), theme = A.Theme_of(context), store = A.StoreProvider_of(context, type$.legacy_AppState), reportState = A._lateReadCheck(store.__Store__state, "_state").uiState.reportsUIState, t2 = A._setArrayType([], type$.JSArray_legacy_DataCell); for (t3 = this.sortedColumns$1(reportState), t4 = t3.length, t5 = type$.RawAutocomplete_legacy_String, t6 = type$.JSArray_legacy_ReportColumnType, t7 = textEditingControllers != null, t8 = type$.AppDropdownButton_legacy_DateRange, t9 = type$.legacy_DropdownMenuItem_legacy_String, t10 = type$.AppDropdownButton_legacy_String, t11 = type$.DropdownMenuItem_legacy_bool, t12 = type$.JSArray_legacy_DropdownMenuItem_legacy_bool, t13 = type$.AppDropdownButton_legacy_bool, t14 = type$.nullable_AppLocalization, t15 = type$._LocalizationsScope, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { column = t3[_i]; if (!t7 || !textEditingControllers.containsKey$1(0, column)) t2.push(new A.DataCell(new A.Text("", _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); else if (A.getReportColumnType(column, context) === B.ReportColumnType_4) { if (textEditingControllers.$index(0, column)._change_notifier$_value.text === "true") t16 = true; else t16 = textEditingControllers.$index(0, column)._change_notifier$_value.text === "false" ? false : _null; scope = context.dependOnInheritedWidgetOfExactType$1$0(t15); t17 = scope == null ? _null : t14._as(J.$index$asx(scope.localizationsState._typeToResources, B.Type_AppLocalization_KyD)); t17.toString; t18 = $.$get$LocalizationsProvider__localizedValues(); t17 = J.$index$asx(t18.$index(0, t17.localeCode), "yes"); if (t17 == null) t17 = ""; scope = context.dependOnInheritedWidgetOfExactType$1$0(t15); t18 = J.$index$asx(t18.$index(0, (scope == null ? _null : t14._as(J.$index$asx(scope.localizationsState._typeToResources, B.Type_AppLocalization_KyD))).localeCode), "no"); if (t18 == null) t18 = ""; t2.push(new A.DataCell(new A.AppDropdownButton(_null, t16, new A.ReportResult_tableFilters_closure(textEditingControllers, column, onFilterChanged), A._setArrayType([new A.DropdownMenuItem(_null, true, new A.Text(t17, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.AlignmentDirectional_m1_0, _null, t11), new A.DropdownMenuItem(_null, false, new A.Text(t18, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.AlignmentDirectional_m1_0, _null, t11)], t12), true, true, _null, _null, _null, _null, t13), _null)); } else if (A.getReportColumnType(column, context) === B.ReportColumnType_5) { t16 = textEditingControllers.$index(0, column)._change_notifier$_value.text; t16 = (t16 == null ? "" : t16).length !== 0 && textEditingControllers.$index(0, column)._change_notifier$_value.text !== "null" ? textEditingControllers.$index(0, column)._change_notifier$_value.text : _null; t2.push(new A.DataCell(new A.AppDropdownButton(_null, t16, new A.ReportResult_tableFilters_closure0(textEditingControllers, column, onFilterChanged), J.map$1$1$ax(B.Map_gpKp8.get$keys(B.Map_gpKp8), new A.ReportResult_tableFilters_closure1(t1), t9).toList$0(0), true, true, "", _null, _null, _null, t10), _null)); } else if (B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_3, B.ReportColumnType_6], t6), A.getReportColumnType(column, context))) { t16 = textEditingControllers.$index(0, column); t17 = textEditingControllers.$index(0, column); t17 = t17 == null ? _null : t17._change_notifier$_value.text; t17 = (t17 == null ? "" : t17).length === 0 ? _null : A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_57704_MaterialIcons_null_false, _null, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A.ReportResult_tableFilters_closure2(textEditingControllers, column, onFilterChanged), B.EdgeInsets_8_8_8_8, _null, _null, _null); t2.push(new A.DataCell(A.TextFormField$(true, _null, false, _null, t16, new A.InputDecoration(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, t17, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null), _null, false, _null, _null, _null, _null, new A.TextInputType(2, true, true), 1, _null, false, _null, _null, _null, _null, false, _null, _null, B.TextAlign_4, _null, _null), _null)); } else if (B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_2, B.ReportColumnType_1], t6), A.getReportColumnType(column, context))) { t16 = reportState.filters._map$_map; t17 = t16.$index(0, column); t16 = J.get$length$asx(t17 == null ? "" : t17) !== 0 ? A._$valueOf0(t16.$index(0, column)) : _null; t17 = $.$get$_$values()._set$_set; t18 = A._instanceType(t17)._eval$1("EfficientLengthMappedIterable*>"); t2.push(new A.DataCell(new A.AppDropdownButton(_null, t16, new A.ReportResult_tableFilters_closure3(textEditingControllers, column, onFilterChanged), A.List_List$of(new A.EfficientLengthMappedIterable(t17, new A.ReportResult_tableFilters_closure4(t1), t18), true, t18._eval$1("Iterable.E")), true, true, _null, _null, _null, _null, t8), _null)); } else { t16 = textEditingControllers.$index(0, column); t17 = textEditingFocusNodes.$index(0, column); t2.push(new A.DataCell(new A.RawAutocomplete(new A.ReportResult_tableFilters_closure5(textEditingControllers, column, onFilterChanged, textEditingFocusNodes), t17, new A.ReportResult_tableFilters_closure6(theme, store), A.autocomplete_RawAutocomplete_defaultStringForOption$closure(), new A.ReportResult_tableFilters_closure7(textEditingControllers, column, onFilterChanged, textEditingFocusNodes), new A.ReportResult_tableFilters_closure8(this, column, context), t16, _null, _null, t5), _null)); } } return A.DataRow$(t2); }, tableRow$3(context, viewModel, index) { var row, cells, j, cell, groupTotals, group, values, t4, _i, column, columnType, t5, value, currencyId, t6, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), reportState = A._lateReadCheck(store.__Store__state, "_state").uiState.reportsUIState, groupBy = reportState.group, sorted = _this.sortedColumns$1(reportState), t1 = groupBy.length === 0 || reportState.get$isGroupByFiltered(), t2 = type$.JSArray_legacy_DataCell, t3 = index - 1; if (t1) { row = _this.data[t3]; cells = A._setArrayType([], t2); for (t1 = _this.columns, j = 0; j < row.length; ++j) { cell = row[B.JSArray_methods.indexOf$1(t1, sorted[j])]; cells.push(new A.DataCell(new A.ConstrainedBox(new A.BoxConstraints(0, 200, 0, 1 / 0), cell.renderWidget$2(context, sorted[j]), _null), new A.ReportResult_tableRow_closure(cell))); } return A.DataRow$(cells); } else { groupTotals = viewModel.groupTotals; group = groupTotals.rows[t3]; values = groupTotals.totals.$index(0, group); cells = A._setArrayType([], t2); t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (t2 = _this.sortedColumns$1(reportState), t3 = t2.length, t4 = type$.JSArray_legacy_String, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { column = t2[_i]; columnType = A.getReportColumnType(column, context); t5 = J.getInterceptor$(column); if (t5.$eq(column, groupBy)) { if (group.length === 0) { t1.toString; t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "blank"); value = t5 == null ? "" : t5; } else if (columnType === B.ReportColumnType_1 || columnType === B.ReportColumnType_2) value = A.formatDate(group, context, true, true, false); else if (columnType === B.ReportColumnType_5 || B.JSArray_methods.contains$1(A._setArrayType(["status"], t4), column)) value = t1.lookup$1(group); else if (group === "null") { t1.toString; t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "blank"); value = t5 == null ? "" : t5; } else value = group; value = J.$add$ansx(value, " (") + B.JSInt_methods.toString$0(J.floor$0$n(values.$index(0, "count"))) + ")"; } else if (columnType === B.ReportColumnType_3) { currencyId = values.$index(0, A.S(column) + "_currency_id"); t6 = values.$index(0, column); t5 = t5.$eq(column, "quantity") ? B.FormatNumberType_3 : B.FormatNumberType_0; value = A.formatNumber(t6, context, _null, currencyId == null ? _null : B.JSInt_methods.toString$0(B.JSNumber_methods.round$0(currencyId)), t5, true, _null, false); } else value = columnType === B.ReportColumnType_6 ? A.formatDuration(new A.Duration(1000000 * J.toInt$0$n(values.$index(0, column))), true) : ""; cells.push(new A.DataCell(new A.Text(value, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.ReportResult_tableRow_closure0(group, column, groupBy, context, reportState, t1, store))); } return A.DataRow$(cells); } }, totalColumns$2(context, onSortCallback) { var company, t3, sortedColumns, t4, _i, column, _null = null, t1 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = t2._list[t1].userCompany.company; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = this.columns; t3 = A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"); sortedColumns = A.List_List$of(new A.WhereIterable(t2, new A.ReportResult_totalColumns_closure(), t3), true, t3._eval$1("Iterable.E")); B.JSArray_methods.sort$1(sortedColumns, new A.ReportResult_totalColumns_closure0()); t3 = A._setArrayType([new A.DataColumn(A.Text$(t1.get$currency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, onSortCallback), new A.DataColumn(A.Text$(t1.get$count(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, onSortCallback)], type$.JSArray_legacy_DataColumn); for (t2 = sortedColumns.length, t4 = type$.JSArray_legacy_ReportColumnType, _i = 0; _i < sortedColumns.length; sortedColumns.length === t2 || (0, A.throwConcurrentModificationError)(sortedColumns), ++_i) { column = sortedColumns[_i]; if (B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_3, B.ReportColumnType_5, B.ReportColumnType_6], t4), A.getReportColumnType(column, context))) t3.push(new A.DataColumn(new A.Text(company.getCustomFieldLabel$1(column).length === 0 ? t1.lookup$1(column) : company.getCustomFieldLabel$1(column), _null, _null, _null, _null, _null, B.TextOverflow_2, _null, _null, _null, _null), true, onSortCallback)); } return t3; }, totalRows$1(context) { var settings, reportSettings, totals, allColumns, t3, t4, t5, i, row, countedRow, j, cell, column, t6, currencyId, k, cell0, _i, keys, allFields, _box_0 = {}, rows = A._setArrayType([], type$.JSArray_legacy_DataRow), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.uiState, reportState = t1.reportsUIState, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; settings = t2._list[t1].userCompany.settings; if (settings != null) { t1 = settings.reportSettings; t2 = reportState.report; t2 = t1._map$_map.containsKey$1(0, t2); t1 = t2; } else t1 = false; if (t1) { t1 = settings.reportSettings; t2 = reportState.report; reportSettings = t1._map$_map.$index(0, t2); } else reportSettings = A.ReportSettingsEntity_ReportSettingsEntity(null, null); t1 = type$.legacy_String; totals = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_String; allColumns = A._setArrayType([], t2); for (t3 = this.data, t4 = this.columns, t5 = type$.legacy_double, i = 0; i < t3.length; ++i) { row = t3[i]; for (countedRow = false, j = 0; j < row.length; ++j) { cell = row[j]; column = t4[j]; t6 = cell instanceof A.ReportNumberValue; if ((t6 || cell instanceof A.ReportDurationValue || cell instanceof A.ReportAgeValue) && A.canTotalColumn(column)) { if (!B.JSArray_methods.contains$1(allColumns, column)) allColumns.push(column); if (t6) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else if (cell instanceof A.ReportAgeValue) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else if (cell instanceof A.ReportDurationValue) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else currencyId = ""; if (currencyId.length === 0) for (t6 = row.length, k = 0; k < t6; ++k) { cell0 = row[k]; if (cell0 instanceof A.ReportNumberValue) { currencyId = cell0.currencyId; if (currencyId == null) currencyId = ""; } else if (cell0 instanceof A.ReportAgeValue) { currencyId = cell0.currencyId; if (currencyId == null) currencyId = ""; } else if (cell0 instanceof A.ReportDurationValue) { currencyId = cell0.currencyId; if (currencyId == null) currencyId = ""; } } if (!totals.containsKey$1(0, currencyId)) totals.$indexSet(0, currencyId, A.LinkedHashMap_LinkedHashMap$_literal(["count", 0], t1, t5)); if (!countedRow) { t6 = totals.$index(0, currencyId); t6.$indexSet(0, "count", t6.$index(0, "count") + 1); countedRow = true; } if (!totals.$index(0, currencyId).containsKey$1(0, column)) totals.$index(0, currencyId).$indexSet(0, column, 0); t6 = totals.$index(0, currencyId); t6.$indexSet(0, column, t6.$index(0, column) + cell.get$doubleValue()); } } } for (t1 = totals.$ti, t3 = t1._eval$1("LinkedHashMapKeyIterable<1>"), t1 = A.LinkedHashMapKeyIterator$(totals, totals._modifications, t1._precomputed1); t1.moveNext$0();) { t4 = t1.__js_helper$_current; for (t5 = allColumns.length, _i = 0; _i < allColumns.length; allColumns.length === t5 || (0, A.throwConcurrentModificationError)(allColumns), ++_i) { column = allColumns[_i]; if (!totals.$index(0, t4).containsKey$1(0, column)) totals.$index(0, t4).$indexSet(0, column, 0); } } t1 = t3._eval$1("WhereIterable"); keys = A.List_List$of(new A.WhereIterable(new A.LinkedHashMapKeyIterable(totals, t3), new A.ReportResult_totalRows_closure(), t1), true, t1._eval$1("Iterable.E")); reportSettings.toString; B.JSArray_methods.sort$1(keys, new A.ReportResult_totalRows_closure0(reportSettings, state, totals)); _box_0.allFields = A._setArrayType([], t2); B.JSArray_methods.forEach$1(keys, new A.ReportResult_totalRows_closure1(_box_0, totals)); t1 = _box_0.allFields; t1 = A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); allFields = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")); B.JSArray_methods.sort$1(allFields, new A.ReportResult_totalRows_closure2()); _box_0.allFields = allFields; B.JSArray_methods.forEach$1(keys, new A.ReportResult_totalRows_closure3(_box_0, totals, store, context, rows)); return rows; } }; A.ReportResult_tableColumns_closure.prototype = { call$0() { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(this.reportState.report, _null, "", _null, _null, _null, _null, _null, _null, _null)); }, $signature: 1 }; A.ReportResult_tableFilters_closure.prototype = { call$1(value) { var t4, t1 = this.textEditingControllers, t2 = this.column, t3 = this.onFilterChanged; if (value == null) { J.set$text$x(t1.$index(0, t2), ""); t3.call$2(t2, ""); } else { t4 = J.getInterceptor$(value); J.set$text$x(t1.$index(0, t2), t4.toString$0(value)); t3.call$2(t2, t4.toString$0(value)); } }, $signature: 7 }; A.ReportResult_tableFilters_closure0.prototype = { call$1(value) { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), value); this.onFilterChanged.call$2(t1, value); }, $signature: 7 }; A.ReportResult_tableFilters_closure1.prototype = { call$1(ageGroup) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(ageGroup), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, ageGroup, type$.legacy_String); }, $signature: 43 }; A.ReportResult_tableFilters_closure2.prototype = { call$0() { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), ""); this.onFilterChanged.call$2(t1, ""); }, $signature: 1 }; A.ReportResult_tableFilters_closure3.prototype = { call$1(value) { var t4, t1 = this.textEditingControllers, t2 = this.column, t3 = this.onFilterChanged; if (value == null) { J.set$text$x(t1.$index(0, t2), ""); t3.call$2(t2, ""); } else { t4 = J.getInterceptor$(value); J.set$text$x(t1.$index(0, t2), t4.toString$0(value)); t3.call$2(t2, t4.toString$0(value)); } }, $signature: 7 }; A.ReportResult_tableFilters_closure4.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.legacy_DateRange); }, $signature: 317 }; A.ReportResult_tableFilters_closure8.prototype = { call$1(textEditingValue) { var t3, t4, t5, filter = textEditingValue.text.toLowerCase(), t1 = this.$this, t2 = this.column, index = B.JSArray_methods.indexOf$1(t1.columns, t2); t1 = t1.data; t3 = this.context; t4 = A._arrayInstanceType(t1); t5 = t4._eval$1("MappedIterable<1,String*>"); t5 = A.LinkedHashSet_LinkedHashSet$of(new A.MappedIterable(new A.WhereIterable(t1, new A.ReportResult_tableFilters__closure(index, t3, t2, filter), t4._eval$1("WhereIterable<1>")), new A.ReportResult_tableFilters__closure0(index, t3, t2), t5), t5._eval$1("Iterable.E")); return A.List_List$of(t5, true, A._instanceType(t5)._eval$1("SetMixin.E")); }, $signature: 2632 }; A.ReportResult_tableFilters__closure.prototype = { call$1(row) { var _this = this, t1 = _this.index, t2 = J.getInterceptor$asx(row), t3 = _this.context, t4 = _this.column; return B.JSString_methods.contains$1(t2.$index(row, t1).renderText$2(t3, t4).toLowerCase(), _this.filter) && J.trim$0$s(t2.$index(row, t1).renderText$2(t3, t4)).length !== 0; }, $signature: 2633 }; A.ReportResult_tableFilters__closure0.prototype = { call$1(row) { return J.$index$asx(row, this.index).renderText$2(this.context, this.column); }, $signature: 2634 }; A.ReportResult_tableFilters_closure7.prototype = { call$1(value) { var _this = this, t1 = _this.column, textEditingController = _this.textEditingControllers.$index(0, t1); textEditingController.set$text(0, value); _this.onFilterChanged.call$2(t1, value); _this.textEditingFocusNodes.$index(0, t1).requestFocus$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ReportResult_tableFilters__closure1(textEditingController)); }, $signature: 11 }; A.ReportResult_tableFilters__closure1.prototype = { call$1(duration) { var t1 = this.textEditingController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, $signature: 36 }; A.ReportResult_tableFilters_closure5.prototype = { call$4(context, textEditingController, focusNode, onFieldSubmitted) { var _this = this, _null = null, t1 = textEditingController._change_notifier$_value.text.length === 0 ? _null : A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A.ReportResult_tableFilters__closure3(_this.textEditingControllers, _this.column, _this.onFilterChanged, _this.textEditingFocusNodes), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null, _null, _null, _null); return A.DecoratedFormField$(false, _null, false, false, textEditingController, t1, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, _null, new A.ReportResult_tableFilters__closure4(onFieldSubmitted), _null, true, _null, _null, B.TextAlign_4, _null); }, $signature: 422 }; A.ReportResult_tableFilters__closure3.prototype = { call$0() { var _this = this, t1 = _this.column; J.set$text$x(_this.textEditingControllers.$index(0, t1), ""); _this.onFilterChanged.call$2(t1, ""); _this.textEditingFocusNodes.$index(0, t1).unfocus$0(); }, $signature: 1 }; A.ReportResult_tableFilters__closure4.prototype = { call$1(value) { this.onFieldSubmitted.call$0(); }, $signature: 11 }; A.ReportResult_tableFilters_closure6.prototype = { call$3(context, onSelected, options) { var _null = null, highlightedIndex = A.AutocompleteHighlightedOption_of(context), t1 = A.Theme_of(context).cardColor; return new A.Theme(this.theme, new A.Align(B.Alignment_m1_m1, _null, _null, A.Material$(B.Duration_200000, true, _null, new A.AppBorder(A.Container$(_null, new A.ScrollableListViewBuilder(new A.ReportResult_tableFilters__closure2(highlightedIndex, this.store, options, onSelected), _null, J.get$length$asx(options), _null, _null, _null), B.Clip_0, t1, new A.BoxConstraints(0, 1 / 0, 0, 270), _null, _null, _null, _null, _null, _null, _null, _null, 250), _null, _null, _null, false, _null), B.Clip_0, _null, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null), _null); }, $signature: 2635 }; A.ReportResult_tableFilters__closure2.prototype = { call$2(context, index) { var t1, t2, _this = this, _null = null; if (_this.highlightedIndex === index) t1 = A.convertHexStringToColor(A._lateReadCheck(_this.store.__Store__state, "_state").prefState.enableDarkMode ? "#253750" : "#e5f5ff"); else t1 = A.Theme_of(context).cardColor; t2 = _this.options; return A.Container$(_null, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A.ReportResult_tableFilters___closure(_this.onSelected, t2, index), false, _null, _null, _null, _null, A.Text$(J.elementAt$1$ax(t2, index), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), _null, _null), B.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 750 }; A.ReportResult_tableFilters___closure.prototype = { call$0() { return this.onSelected.call$1(J.elementAt$1$ax(this.options, this.index)); }, $signature: 0 }; A.ReportResult_tableRow_closure.prototype = { call$0() { var t1 = this.cell; A.viewEntityById(false, t1.entityId, t1.entityType, null, false, true); }, $signature: 1 }; A.ReportResult_tableRow_closure0.prototype = { call$0() { var t2, t3, date, t4, customEndDate, filter, _this = this, _null = null, t1 = {}, customStartDate = _this.group; if (customStartDate.length === 0) return; t2 = _this.column; if (t2 === _this.groupBy) { t1.filter = customStartDate; t3 = _this.context; if (A.getReportColumnType(t2, t3) === B.ReportColumnType_1 || A.getReportColumnType(t2, t3) === B.ReportColumnType_2) { t3 = t1.filter = "custom"; date = A.DateTime_tryParse(customStartDate); t4 = _this.reportState.subgroup; if (t4 === "day") customEndDate = A.convertDateTimeToSqlDate(date); else if (t4 === "month") customEndDate = A.convertDateTimeToSqlDate(A.addMonths(date, 1).add$1(0, A.Duration$(-1, 0, 0, 0, 0, 0))); else if (t4 === "week") customEndDate = A.convertDateTimeToSqlDate(date.add$1(0, A.Duration$(6, 0, 0, 0, 0, 0))); else { date.toString; t4 = A.Primitives_valueFromDecomposedDate(A.Primitives_getYear(date) + 1, A.Primitives_getMonth(date), A.Primitives_getDay(date), 0, 0, 0, 0, true); if (!A._isInt(t4)) A.throwExpression(A.argumentErrorValue(t4)); customEndDate = A.convertDateTimeToSqlDate(new A.DateTime(t4, true).add$1(0, A.Duration$(-1, 0, 0, 0, 0, 0))); } } else { if (A.getReportColumnType(t2, t3) === B.ReportColumnType_4) { t3 = _this.localization; if (customStartDate === t3.get$yes()) filter = "true"; else filter = customStartDate === t3.get$no() ? "false" : ""; t1.filter = filter; t3 = filter; } else t3 = customStartDate; customStartDate = ""; customEndDate = ""; } t4 = _this.reportState; t2 = t4.filters.rebuild$1(new A.ReportResult_tableRow__closure(t1, t2)); _this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(t4.report, t2, _null, t3, _null, _null, _null, _null, customStartDate, customEndDate)); } }, $signature: 1 }; A.ReportResult_tableRow__closure.prototype = { call$1(b) { var t1 = type$.legacy_String; b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this._box_0.filter], t1, t1)); return b; }, $signature: 202 }; A.ReportResult_totalColumns_closure.prototype = { call$1(column) { return A.canTotalColumn(column); }, $signature: 16 }; A.ReportResult_totalColumns_closure0.prototype = { call$2(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 19 }; A.ReportResult_totalRows_closure.prototype = { call$1(element) { return element != null; }, $signature: 16 }; A.ReportResult_totalRows_closure0.prototype = { call$2(rowA, rowB) { var t3, valueA, valueB, t4, t5, fields, sortColumn, _s5_ = "count", t1 = this.reportSettings, t2 = t1.sortTotalsIndex; if (t2 === 0) { t2 = this.state.staticState.currencyMap._map$_map; t3 = t2.$index(0, rowA); valueA = t3 == null ? null : t3.name; t2 = t2.$index(0, rowB); valueB = t2 == null ? null : t2.name; } else { t3 = this.totals; if (t2 === 1) { valueA = t3.$index(0, rowA).$index(0, _s5_); valueB = t3.$index(0, rowB).$index(0, _s5_); } else { t4 = t3.$index(0, rowA); t4.toString; t5 = A._instanceType(t4)._eval$1("LinkedHashMapKeyIterable<1>"); fields = A.List_List$of(new A.LinkedHashMapKeyIterable(t4, t5), true, t5._eval$1("Iterable.E")); B.JSArray_methods.remove$1(fields, _s5_); B.JSArray_methods.sort$1(fields, new A.ReportResult_totalRows__closure0()); sortColumn = fields[t2 - 2]; valueA = t3.$index(0, rowA).$index(0, sortColumn); valueB = t3.$index(0, rowB).$index(0, sortColumn); } } if (valueA == null || valueB == null) return 0; return t1.sortTotalsAscending ? J.compareTo$1$ns(valueA, valueB) : J.compareTo$1$ns(valueB, valueA); }, $signature: 19 }; A.ReportResult_totalRows__closure0.prototype = { call$2(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 19 }; A.ReportResult_totalRows_closure1.prototype = { call$1(currencyId) { var values = this.totals.$index(0, currencyId), t1 = this._box_0.allFields; values.toString; B.JSArray_methods.addAll$1(t1, new A.LinkedHashMapKeyIterable(values, A._instanceType(values)._eval$1("LinkedHashMapKeyIterable<1>"))); }, $signature: 11 }; A.ReportResult_totalRows_closure2.prototype = { call$2(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 19 }; A.ReportResult_totalRows_closure3.prototype = { call$1(currencyId) { var cells, _this = this, _null = null, values = _this.totals.$index(0, currencyId), t1 = A._lateReadCheck(_this.store.__Store__state, "_state").staticState.currencyMap._map$_map.$index(0, currencyId); t1 = t1 == null ? _null : t1.name; cells = A._setArrayType([A.DataCell$(A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.DataCell$(A.Text$(B.JSInt_methods.toString$0(J.toInt$0$n(values.$index(0, "count"))), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_DataCell); B.JSArray_methods.forEach$1(_this._box_0.allFields, new A.ReportResult_totalRows__closure(values, _this.context, currencyId, cells)); _this.rows.push(A.DataRow$(cells)); }, $signature: 11 }; A.ReportResult_totalRows__closure.prototype = { call$1(field) { var value, _this = this, _null = null, t1 = _this.values, amount = t1.$index(0, field); if (field !== "count") { if (field === "age") value = A.formatNumber(amount / t1.$index(0, "count"), _this.context, _null, _null, B.FormatNumberType_3, true, _null, false); else if (field === "duration") value = A.formatDuration(A.Duration$(0, 0, 0, 0, 0, J.toInt$0$n(amount)), true); else { t1 = B.JSArray_methods.contains$1(A._setArrayType(["quantity"], type$.JSArray_legacy_String), field) ? B.FormatNumberType_3 : B.FormatNumberType_0; value = A.formatNumber(amount, _this.context, _null, _this.currencyId, t1, true, _null, false); } _this.cells.push(A.DataCell$(A.Text$(value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } }, $signature: 11 }; A.ReportElement.prototype = { get$stringValue(_) { return ""; }, renderWidget$2(context, column) { throw A.wrapException("Error: need to override renderWidget()"); }, renderText$2(context, column) { throw A.wrapException("Error: need to override sortString()"); } }; A.ReportStringValue.prototype = { get$stringValue(_) { return this.value; }, renderWidget$2(context, column) { var _null = null; return A.Text$(this.renderText$2(context, column), _null, 2, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { var t1; if (A.getReportColumnType(column, context) === B.ReportColumnType_1 || A.getReportColumnType(column, context) === B.ReportColumnType_2) return A.formatDate(this.value, context, true, true, A.getReportColumnType(column, context) === B.ReportColumnType_1); else { t1 = this.value; if (B.JSArray_methods.contains$1(A._setArrayType(["status"], type$.JSArray_legacy_String), column)) return A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(t1); else return t1 == null ? "" : t1; } }, get$value(receiver) { return this.value; } }; A.ReportEntityTypeValue.prototype = { get$stringValue(_) { return A.S(this.value); }, renderWidget$2(context, column) { var _null = null; return A.Text$(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(A.S(this.value)), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { return A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(A.S(this.value)); }, get$value(receiver) { return this.value; } }; A.ReportAgeValue.prototype = { get$stringValue(_) { return A.S(this.value); }, get$doubleValue() { var t1 = this.value; if (t1 === -1) t1 = 0; else t1.toString; return t1; }, renderWidget$2(context, column) { var _null = null, t1 = this.value; return A.Text$(t1 === -1 ? A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$paid() : A.S(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { var t1 = this.value; return t1 === -1 ? A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$paid() : A.S(t1); }, get$value(receiver) { return this.value; } }; A.ReportDurationValue.prototype = { get$stringValue(_) { return A.S(this.value); }, get$doubleValue() { var t1 = this.value; t1.toString; return t1; }, renderWidget$2(context, column) { var _null = null; return A.Text$(A.formatDuration(A.Duration$(0, 0, 0, 0, 0, this.value), true), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { return A.formatDuration(A.Duration$(0, 0, 0, 0, 0, this.value), true); }, get$value(receiver) { return this.value; } }; A.ReportIntValue.prototype = { get$stringValue(_) { return A.S(this.value); }, renderWidget$2(context, column) { var _null = null, t1 = this.value; t1.toString; return A.Text$(A.formatNumber(t1, context, _null, _null, B.FormatNumberType_2, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { var t1 = this.value; t1.toString; return A.formatNumber(t1, context, null, null, B.FormatNumberType_2, true, null, false); }, get$value(receiver) { return this.value; } }; A.ReportNumberValue.prototype = { get$doubleValue() { return this.value; }, get$stringValue(_) { return A.S(this.value); }, renderWidget$2(context, column) { var _null = null; return A.Text$(this.renderText$2(context, column), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2(context, column) { var t2, _this = this, _null = null, t1 = _this.currencyId; if (t1 == null) return A.formatNumber(_this.value, context, _null, _null, B.FormatNumberType_3, true, _null, false); t2 = _this.formatNumberType; if (t2 == null) t2 = B.FormatNumberType_0; return A.formatNumber(_this.value, context, _null, t1, t2, true, _null, false); }, get$value(receiver) { return this.value; } }; A.ReportBoolValue.prototype = { get$stringValue(_) { return A.S(this.value); }, renderWidget$2(context, column) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new A.SizedBox(80, _null, A.Text$(this.value === true ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null), _null); }, renderText$2(context, column) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return this.value === true ? t1.get$yes() : t1.get$no(); }, get$value(receiver) { return this.value; } }; A.ReportsScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ReportsScreenBuilder_build_closure(), A.reports_screen_vm_ReportsScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ReportsScreenVM); } }; A.ReportsScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.ReportsScreen(vm, null); }, $signature: 2636 }; A.ReportsScreenVM.prototype = {}; A.ReportsScreenVM_fromStore_closure2.prototype = { call$2(column, ascending) { var _null = null, t1 = this.state.uiState.reportsUIState.report; this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(t1, _null, _null, _null, _null, _null, column, _null, _null, _null)); }, $signature: 53 }; A.ReportsScreenVM_fromStore_closure3.prototype = { call$2(index, ascending) { var _null = null, t1 = this.state.uiState.reportsUIState.report; this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(t1, _null, _null, _null, _null, _null, _null, index, _null, _null)); }, $signature: 426 }; A.ReportsScreenVM_fromStore_closure1.prototype = { call$2(context, filterMap) { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(this.report, filterMap, _null, "", _null, _null, _null, _null, _null, _null)); }, $signature: 613 }; A.ReportsScreenVM_fromStore_closure.prototype = { call$2(context, columns) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = t1.userCompanyStates._list, settings = t3[t2].userCompany.settings.rebuild$1(new A.ReportsScreenVM_fromStore__closure6(t1, this.reportSettings, columns)), userCompany = t3[t2].userCompany.rebuild$1(new A.ReportsScreenVM_fromStore__closure7(settings)), user = t3[t2].userCompany.user.rebuild$1(new A.ReportsScreenVM_fromStore__closure8(userCompany)), completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.SaveUserSettingsRequest(completer, user)); }, $signature: 2638 }; A.ReportsScreenVM_fromStore__closure6.prototype = { call$1(b) { b.get$reportSettings().$indexSet(0, this.state.uiState.reportsUIState.report, this.reportSettings.rebuild$1(new A.ReportsScreenVM_fromStore___closure0(this.columns))); return b; }, $signature: 730 }; A.ReportsScreenVM_fromStore___closure0.prototype = { call$1(b) { b.get$columns(b).replace$1(0, A.BuiltList_BuiltList$from(this.columns, type$.legacy_String)); return b; }, $signature: 761 }; A.ReportsScreenVM_fromStore__closure7.prototype = { call$1(b) { var t1 = b.get$settings(), t2 = this.settings; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 111 }; A.ReportsScreenVM_fromStore__closure8.prototype = { call$1(b) { var t1 = b.get$userCompany(), t2 = this.userCompany; A.ArgumentError_checkNotNull(t2, "other"); t1._company_model$_$v = t2; return b; }, $signature: 77 }; A.ReportsScreenVM_fromStore_closure4.prototype = { call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(chart, customEndDate, customStartDate, group, report, selectedGroup, subgroup) { A.Timer_Timer(A.Duration$(0, 0, 0, 100, 0, 0), new A.ReportsScreenVM_fromStore__closure(this.state, this.store, report, group, selectedGroup, subgroup, chart, customStartDate, customEndDate)); }, call$0() { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, null, null, null); }, call$1$chart(chart) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(chart, null, null, null, null, null, null); }, call$1$customEndDate(customEndDate) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, customEndDate, null, null, null, null, null); }, call$1$customStartDate(customStartDate) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, customStartDate, null, null, null, null); }, call$1$subgroup(subgroup) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, null, null, subgroup); }, call$2$group$selectedGroup(group, selectedGroup) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, group, null, selectedGroup, null); }, call$1$report(report) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, report, null, null); }, "call*": "call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup", $requiredArgCount: 0, $defaultValues() { return {chart: null, customEndDate: null, customStartDate: null, group: null, report: null, selectedGroup: null, subgroup: null}; }, $signature: 2639 }; A.ReportsScreenVM_fromStore__closure.prototype = { call$0() { var _this = this, reportState = _this.state.uiState.reportsUIState, t1 = _this.report; if (t1 == null) t1 = reportState.report; _this.store.get$_dispatchers()[0].call$1(new A.UpdateReportSettings(t1, null, _this.group, _this.selectedGroup, _this.chart, _this.subgroup, null, null, _this.customStartDate, _this.customEndDate)); }, $signature: 1 }; A.ReportsScreenVM_fromStore_closure0.prototype = { call$1(context) { return this.$call$body$ReportsScreenVM_fromStore_closure(context); }, $call$body$ReportsScreenVM_fromStore_closure(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t3, t4, t5, t6, columns, date, t1, t2, reportState; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); reportState = $async$self.state.uiState.reportsUIState; t1.csvData = ""; t3 = reportState.group; t4 = t3.length === 0 || reportState.get$isGroupByFiltered(); t5 = $async$self._box_1; t6 = t5.reportResult; if (t4) { B.JSArray_methods.forEach$1(t6.columns, new A.ReportsScreenVM_fromStore__closure0(t1, t2)); t2 = t1.csvData; t1.csvData = B.JSString_methods.substring$2(t2, 0, t2.length - 1); B.JSArray_methods.forEach$1(t5.reportResult.data, new A.ReportsScreenVM_fromStore__closure1(t1, t5, context)); } else { t4 = t6.columns; t5 = A._arrayInstanceType(t4)._eval$1("WhereIterable<1>"); columns = A.List_List$of(new A.WhereIterable(t4, new A.ReportsScreenVM_fromStore__closure2(context), t5), true, t5._eval$1("Iterable.E")); B.JSArray_methods.sort$1(columns, new A.ReportsScreenVM_fromStore__closure3()); t1.csvData = J.$add$ansx(t2.lookup$1(t3), ",") + t2.get$count(t2); B.JSArray_methods.forEach$1(columns, new A.ReportsScreenVM_fromStore__closure4(t1, t2)); t1.csvData += "\n"; t2 = $async$self.groupTotals; t3 = t2.rows; (t3 && B.JSArray_methods).forEach$1(t3, new A.ReportsScreenVM_fromStore__closure5(t1, t2, columns)); } date = A.convertDateTimeToSqlDate(null); t2 = Date.now(); t3 = reportState.report; A.print("## DATA: " + t1.csvData); t1 = A.AnchorElement_AnchorElement("data:text/plain;charset=utf-8," + A.S(A._Uri__uriEncode(B.List_KIf, t1.csvData, B.C_Utf8Codec, false))); t1.setAttribute("download", t3 + "_report_" + A.S(date) + "_" + t2 + ".csv"); t1.click(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; A.ReportsScreenVM_fromStore__closure0.prototype = { call$1(column) { var value = this.localization.lookup$1(column), t1 = this._box_0; t1.csvData = t1.csvData + ('"' + A.S(value) + '",'); }, $signature: 11 }; A.ReportsScreenVM_fromStore__closure1.prototype = { call$1(row) { var t2, t3, t4, i, column, t5, value, t1 = this._box_0; t1.csvData += "\n"; for (t2 = J.getInterceptor$asx(row), t3 = this._box_1, t4 = this.context, i = 0; i < t2.get$length(row); ++i) { column = t3.reportResult.columns[i]; t5 = J.trim$0$s(t2.$index(row, i).renderText$2(t4, column)); value = A.stringReplaceAllUnchecked(t5, '"', '""'); t1.csvData = t1.csvData + ('"' + value + '",'); } t2 = t1.csvData; t1.csvData = B.JSString_methods.substring$2(t2, 0, t2.length - 1); }, $signature: 2640 }; A.ReportsScreenVM_fromStore__closure2.prototype = { call$1(column) { return A.getReportColumnType(column, this.context) === B.ReportColumnType_3; }, $signature: 16 }; A.ReportsScreenVM_fromStore__closure3.prototype = { call$2(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 19 }; A.ReportsScreenVM_fromStore__closure4.prototype = { call$1(column) { var t1 = this._box_0; t1.csvData = t1.csvData + B.JSString_methods.$add(",", this.localization.lookup$1(column)); }, $signature: 11 }; A.ReportsScreenVM_fromStore__closure5.prototype = { call$1(group) { var row = this.groupTotals.totals.$index(0, group), t1 = this._box_0, t2 = t1.csvData, t3 = J.trim$0$s(group); t1.csvData = t2 + ('"' + A.stringReplaceAllUnchecked(t3, '"', '""') + '",' + J.toInt$0$n(row.$index(0, "count"))); B.JSArray_methods.forEach$1(this.columns, new A.ReportsScreenVM_fromStore___closure(t1, row)); t1.csvData += "\n"; }, $signature: 11 }; A.ReportsScreenVM_fromStore___closure.prototype = { call$1(column) { var t1 = B.JSString_methods.trim$0(J.toString$0$(this.row.$index(0, column))), value = A.stringReplaceAllUnchecked(t1, '"', '""'); t1 = this._box_0; t1.csvData = t1.csvData + (',"' + value + '"'); }, $signature: 11 }; A.GroupTotals.prototype = {}; A.memoizeedGroupTotals_closure.prototype = { call$5(reportResult, reportUIState, reportSettings, currencyMap, company) { return A.calculateReportTotals(company, currencyMap, reportResult, reportSettings, reportUIState); }, $signature: 2641 }; A.calculateReportTotals_closure.prototype = { call$2(rowA, rowB) { var t2, sort, _this = this, t1 = _this.totals, valuesA = t1.$index(0, rowA), valuesB = t1.$index(0, rowB); t1 = _this.index; t2 = _this.columns.length; if (t1 < t2) { sort = _this.sortedColumns[t1]; if (t1 === 0) return _this.reportSettings.sortAscending ? J.compareTo$1$ns(rowA, rowB) : J.compareTo$1$ns(rowB, rowA); else if (valuesA.containsKey$1(0, sort) && valuesB.containsKey$1(0, sort)) return _this.reportSettings.sortAscending ? J.compareTo$1$ns(valuesA.$index(0, sort), valuesB.$index(0, sort)) : J.compareTo$1$ns(valuesB.$index(0, sort), valuesA.$index(0, sort)); } return 0; }, $signature: 19 }; A.TaskReportFields.prototype = { toString$0(_) { return "TaskReportFields." + this._core$_name; } }; A.memoizedTaskReport_closure.prototype = { call$10(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState) { return A.taskReport(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState); }, $signature: 2642 }; A.taskReport_closure.prototype = { call$1(e) { return A.EnumUtils_fromString(B.List_qrv, e, type$.legacy_TaskReportFields); }, $signature: 2643 }; A.taskReport_closure0.prototype = { call$1(element) { return element != null; }, $signature: 2644 }; A.taskReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 479 }; A.taskReport_closure2.prototype = { call$2(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taskReportSettings, this.selectedColumns); }, $signature: 81 }; A.taskReport_closure3.prototype = { call$1(e) { return A.EnumUtils_parse(e); }, $signature: 479 }; A.taskReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, $signature: 479 }; A.AccountManagement.prototype = { createState$0() { return new A._AccountManagementState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._AccountManagementState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._account_management$_focusNode = A.FocusScopeNode$(true, null, false); t1 = A.TabController$(null, _this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 4, _this); _this._account_management$_controller = t1; t1.addListener$1(0, _this.get$_onTabChanged()); }, _onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._account_management$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, didChangeDependencies$0() { var _this = this, t1 = _this._trackingIdController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._account_management$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._AccountManagementState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.company.googleAnalyticsKey); B.JSArray_methods.forEach$1(_this._account_management$_controllers, new A._AccountManagementState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _account_management$_onChanged$0() { var _this = this, company = _this._widget.viewModel.company.rebuild$1(new A._AccountManagementState__onChanged_closure(_this)); if (!J.$eq$(company, _this._widget.viewModel.company)) _this._account_management$_debouncer.run$1(new A._AccountManagementState__onChanged_closure0(_this, company)); }, dispose$0(_) { var _this = this; B.JSArray_methods.forEach$1(_this._account_management$_controllers, new A._AccountManagementState_dispose_closure(_this)); _this._account_management$_focusNode.dispose$0(0); _this._account_management$_controller.removeListener$1(0, _this.get$_onTabChanged()); _this._account_management$_controller.dispose$0(0); _this.super$__AccountManagementState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, _s6_ = ":count", _s28_ = "google_analytics_tracking_id", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, t2 = A._setArrayType([], type$.JSArray_legacy_DropdownMenuItem_legacy_int), t3 = type$.legacy_int; t2.push(A.DropdownMenuItem$(A.Text$("2 minutes", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 120000, t3)); t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t4.$index(0, t5), "count_minutes"); t2.push(A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t6 == null ? "" : t6, _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 1800000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countHours(), _s6_, "2"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 7200000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countHours(), _s6_, "8"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 28800000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(t1.get$countDay(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 86400000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "7"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 604800000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 2592000000, t3)); t2.push(A.DropdownMenuItem$(A.Text$(t1.get$never(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 0, t3)); t6 = J.$index$asx(t4.$index(0, t5), "account_management"); if (t6 == null) t6 = ""; t7 = viewModel.onSavePressed; t8 = state.uiState.settingsUIState.updatedAt; t9 = _this._account_management$_controller; t10 = A.Tab$(_null, t1.get$overview()); t11 = J.$index$asx(t4.$index(0, t5), "enabled_modules"); t11 = A.Tab$(_null, t11 == null ? "" : t11); t12 = J.$index$asx(t4.$index(0, t5), "integrations"); t12 = A.Tab$(_null, t12 == null ? "" : t12); t13 = J.$index$asx(t4.$index(0, t5), "security_settings"); t14 = type$.JSArray_legacy_Widget; t13 = A.TabBar$(t9, _null, true, new A.ValueKey(t8, type$.ValueKey_legacy_int), _null, A._setArrayType([t10, t11, t12, A.Tab$(_null, t13 == null ? "" : t13)], t14)); t12 = $.$get$_AccountManagementState__formKey(); t11 = _this._account_management$_focusNode; t10 = _this._account_management$_controller; t1 = A._setArrayType([A.FormCard$(_null, J.map$1$1$ax(B.Map_JNAHF.get$keys(B.Map_JNAHF), new A._AccountManagementState_build_closure(t1, company, context, viewModel), type$.legacy_CheckboxListTile).toList$0(0), _null, _null, false, _null, false, _null)], t14); t8 = J.$index$asx(t4.$index(0, t5), _s28_); if (t8 == null) t8 = J.$index$asx(t4.$index(0, "en"), _s28_); t8 = A._setArrayType([A.FormCard$(_null, A._setArrayType([new A.LearnMoreUrl(A.DecoratedFormField$(false, _null, false, false, _this._trackingIdController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t8, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), "https://support.google.com/analytics/answer/1037249?hl=en", _null, _null)], t14), _null, _null, false, _null, false, _null)], t14); t9 = J.$index$asx(t4.$index(0, t5), "password_timeout"); if (t9 == null) t9 = ""; t9 = A.AppDropdownButton$(_null, "", true, t2, _null, t9, new A._AccountManagementState_build_closure0(viewModel, company), _null, false, company.passwordTimeout, t3); t15 = J.$index$asx(t4.$index(0, t5), "web_session_timeout"); if (t15 == null) t15 = ""; t3 = A.AppDropdownButton$(_null, "", true, t2, _null, t15, new A._AccountManagementState_build_closure1(viewModel, company), _null, false, company.sessionTimeout, t3); t5 = J.$index$asx(t4.$index(0, t5), "require_password_with_social_login"); t2 = t5 == null ? "" : t5; return A.EditScaffold$(_null, t13, new A.AppTabForm(t11, t12, A._setArrayType([new A._AccountOverview(viewModel, _null), new A.ScrollableListView(t1, _null, _null, _null), new A.ScrollableListView(t8, _null, _null, _null), new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t9, t3, A.BoolDropdownButton$(_null, _null, _null, _null, t2, _null, new A._AccountManagementState_build_closure2(viewModel, company), company.oauthPasswordRequired)], t14), _null, _null, false, _null, false, _null)], t14), _null, _null, _null)], t14), t10, _null, _null), _null, _null, _null, false, _null, _null, t7, _null, t6); } }; A._AccountManagementState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_account_management$_onChanged()); }, $signature: 12 }; A._AccountManagementState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_account_management$_onChanged()); }, $signature: 12 }; A._AccountManagementState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._trackingIdController._change_notifier$_value.text); b.get$_company_model$_$this()._googleAnalyticsKey = t1; return b; }, $signature: 23 }; A._AccountManagementState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onCompanyChanged.call$1(this.company); }, $signature: 1 }; A._AccountManagementState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_account_management$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._AccountManagementState_build_closure.prototype = { call$1(module) { var _this = this, _null = null, t1 = A.Text$(_this.localization.lookup$1(B.Map_JNAHF.$index(0, module)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t2 = _this.company, t3 = t2.enabledModules; return A.CheckboxListTile$(A.Theme_of(_this.context).colorScheme.secondary, _null, B.ListTileControlAffinity_0, _null, _null, new A._AccountManagementState_build__closure2(t2, module, _this.viewModel), t1, (t3 & module) >>> 0 !== 0); }, $signature: 2646 }; A._AccountManagementState_build__closure2.prototype = { call$1(value) { var t1 = {}, t2 = this.company, enabledModules = t1.enabledModules = t2.enabledModules, t3 = this.module; if (value) t1.enabledModules = (enabledModules | t3) >>> 0; else t1.enabledModules = (enabledModules ^ t3) >>> 0; this.viewModel.onCompanyChanged.call$1(t2.rebuild$1(new A._AccountManagementState_build___closure(t1))); }, $signature: 20 }; A._AccountManagementState_build___closure.prototype = { call$1(b) { var t1 = this._box_0.enabledModules; b.get$_company_model$_$this()._enabledModules = t1; return b; }, $signature: 23 }; A._AccountManagementState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountManagementState_build__closure1(value))); }, $signature: 12 }; A._AccountManagementState_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._passwordTimeout = this.value; return b; }, $signature: 23 }; A._AccountManagementState_build_closure1.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountManagementState_build__closure0(value))); }, $signature: 12 }; A._AccountManagementState_build__closure0.prototype = { call$1(b) { b.get$_company_model$_$this()._sessionTimeout = this.value; return b; }, $signature: 23 }; A._AccountManagementState_build_closure2.prototype = { call$1(value) { this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountManagementState_build__closure(value))); }, $signature: 20 }; A._AccountManagementState_build__closure.prototype = { call$1(b) { return b.get$_company_model$_$this()._oauthPasswordRequired = this.value; }, $signature: 2647 }; A._AccountOverview.prototype = { build$1(_, context) { var account, company, companies, t5, clientLimit, secondLabel, secondValue, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, _s2_ = "en", _s10_ = "free_trial", _s19_ = "set_default_company", _s16_ = "start_free_trial", _s11_ = "change_plan", _s19_0 = "enable_pdf_markdown", _s20_ = "enable_markdown_help", _s21_ = "enable_email_markdown", _s26_ = "enable_email_markdown_help", _s14_ = "include_drafts", _s19_1 = "include_drafts_help", store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, state = t2.state, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t3 = t3._list; account = t3[t4].userCompany.account; company = t2.company; companies = state.get$companies(); t2 = new A._AccountOverview_build__getDataStats(_this, context); if (state.get$isHosted()) t5 = account.plan.length === 0 || account.trialDaysLeft > 0; else t5 = false; if (t5) { clientLimit = account.hostedClientCount; secondLabel = t1.get$clients(t1); secondValue = "" + t3[t4].clientState.list._list.length + " / " + clientLimit; } else { t5 = account.planExpires; if (t5.length !== 0) { t1.toString; t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "expires_on"); secondLabel = t6 == null ? "" : t6; secondValue = A.formatDate(t5, context, true, true, false); } else { secondLabel = _null; secondValue = secondLabel; } } t1.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "plan"); if (t7 == null) t7 = ""; if (account.trialDaysLeft > 0) { t8 = J.$index$asx(t5.$index(0, t6), "pro"); if (t8 == null) t8 = J.$index$asx(t5.$index(0, _s2_), "pro"); t9 = J.$index$asx(t5.$index(0, t6), _s10_); if (t9 == null) t9 = J.$index$asx(t5.$index(0, _s2_), _s10_); t9 = A.S(t8) + " \u2022 " + A.S(t9); t8 = t9; } else { t8 = account.plan; if (t8.length === 0) { t8 = J.$index$asx(t5.$index(0, t6), "free"); if (t8 == null) t8 = ""; } else t8 = t1.lookup$1(t8); } t9 = type$.JSArray_legacy_Widget; t8 = A._setArrayType([new A.AppHeader(t7, t8, secondLabel, secondValue, _null)], t9); t7 = t3[t4].userCompany; if (t7.company.id !== t7.account.defaultCompanyId) { t7 = J.$index$asx(t5.$index(0, t6), _s19_); if (t7 == null) t7 = J.$index$asx(t5.$index(0, _s2_), _s19_); t8.push(new A.Padding(B.EdgeInsets_16_0_16_8, new A.AppButton(_null, B.IconData_57627_MaterialIcons_null_false, t7.toUpperCase(), new A._AccountOverview_build_closure(_this, context), _null, _null), _null)); } if (t3[t4].userCompany.ninjaPortalUrl.length !== 0 && !A.isApple() && state.get$isHosted()) { if (account.trialStarted.length === 0 && account.plan === "") { t7 = J.$index$asx(t5.$index(0, t6), _s16_); if (t7 == null) t7 = J.$index$asx(t5.$index(0, _s2_), _s16_); } else { t7 = J.$index$asx(t5.$index(0, t6), _s11_); if (t7 == null) t7 = J.$index$asx(t5.$index(0, _s2_), _s11_); } t8.push(new A.Padding(B.EdgeInsets_16_16_16_0, A.OutlinedButton$(new A.Padding(B.EdgeInsets_8_8_8_8, new A.IconText(t7.toUpperCase(), B._MdiIconData_ujl, _null, _null, _null), _null), _null, new A._AccountOverview_build_closure0(state), _null), _null)); } t7 = company.isDisabled; t10 = J.$index$asx(t5.$index(0, t6), "activate_company"); t10 = A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = J.$index$asx(t5.$index(0, t6), "activate_company_help"); t11 = A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._AccountOverview_build_closure1(_this, company), _null, t11, t10, !t7); t10 = company.markdownEnabled; t11 = J.$index$asx(t5.$index(0, t6), _s19_0); t11 = A.Text$(t11 == null ? J.$index$asx(t5.$index(0, _s2_), _s19_0) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = J.$index$asx(t5.$index(0, t6), _s20_); t12 = A.Text$(t12 == null ? J.$index$asx(t5.$index(0, _s2_), _s20_) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._AccountOverview_build_closure2(_this, company), _null, t12, t11, t10); t11 = company.markdownEmailEnabled; t12 = J.$index$asx(t5.$index(0, t6), _s21_); t12 = A.Text$(t12 == null ? J.$index$asx(t5.$index(0, _s2_), _s21_) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = J.$index$asx(t5.$index(0, t6), _s26_); t13 = A.Text$(t13 == null ? J.$index$asx(t5.$index(0, _s2_), _s26_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._AccountOverview_build_closure3(_this, company), _null, t13, t12, t11); t12 = company.reportIncludeDrafts; t13 = J.$index$asx(t5.$index(0, t6), _s14_); t13 = A.Text$(t13 == null ? J.$index$asx(t5.$index(0, _s2_), _s14_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = J.$index$asx(t5.$index(0, t6), _s19_1); t14 = A.Text$(t14 == null ? J.$index$asx(t5.$index(0, _s2_), _s19_1) : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8.push(A.FormCard$(_null, A._setArrayType([t7, t10, t11, A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._AccountOverview_build_closure4(_this, company), _null, t14, t13, t12)], t9), _null, _null, false, _null, false, _null)); if (!state.get$isHosted()) { t7 = J.$index$asx(t5.$index(0, t6), "purchase_license"); if (t7 == null) t7 = ""; t10 = A.getLayout(context) === B.AppLayout_mobile ? _null : B.IconData_57714_MaterialIcons_null_false; t7 = A.Expanded$(new A.AppButton(_null, t10, t7.toUpperCase(), new A._AccountOverview_build_closure5(), _null, _null), 1); t10 = t1.get$applyLicense(); t11 = A.getLayout(context) === B.AppLayout_mobile ? _null : B.IconData_57713_MaterialIcons_null_false; B.JSArray_methods.addAll$1(t8, A._setArrayType([new A.Padding(B.EdgeInsets_16_16_16_16, A.Row$(A._setArrayType([t7, new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, t11, t10.toUpperCase(), new A._AccountOverview_build_closure6(_this, context, t1), _null, _null), 1)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), new A.Padding(B.EdgeInsets_16_16_16_0, new A.ListDivider(_null), _null)], t9)); } if (!(!state.get$isHosted() || t3[t4].userCompany.account.plan === "enterprise" || t3[t4].userCompany.account.plan === "pro")) t3 = state.get$isHosted() && t3[t4].userCompany.account.trialDaysLeft > 0; else t3 = true; if (t3) { t3 = J.$index$asx(t5.$index(0, t6), "api_tokens"); if (t3 == null) t3 = ""; t4 = A.getLayout(context) === B.AppLayout_mobile ? _null : A.getEntityIcon(B.EntityType_token); t3 = A.Expanded$(new A.AppButton(_null, t4, t3.toUpperCase(), new A._AccountOverview_build_closure7(store), _null, _null), 1); t4 = J.$index$asx(t5.$index(0, t6), "api_webhooks"); if (t4 == null) t4 = ""; t7 = A.getLayout(context) === B.AppLayout_mobile ? _null : A.getEntityIcon(B.EntityType_webhook); t8.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, t7, t4.toUpperCase(), new A._AccountOverview_build_closure8(store), _null, _null), 1)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); } t3 = J.$index$asx(t5.$index(0, t6), "api_docs"); if (t3 == null) t3 = ""; t4 = A.getLayout(context) === B.AppLayout_mobile ? _null : B._MdiIconData_uXI; t3 = A.Expanded$(new A.AppButton(_null, t4, t3.toUpperCase(), new A._AccountOverview_build_closure9(), _null, _null), 1); t4 = A.getLayout(context) === B.AppLayout_mobile ? _null : B._MdiIconData_Qa6; t8.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, t4, "Zapier", new A._AccountOverview_build_closure10(), _null, _null), 1)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); t8.push(new A.Padding(B.EdgeInsets_16_16_16_0, new A.ListDivider(_null), _null)); t4 = J.$index$asx(t5.$index(0, t6), "purge_data"); t3 = t4 == null ? "" : t4; t4 = A.getLayout(context) === B.AppLayout_mobile ? _null : B.IconData_57785_MaterialIcons_null_false; t3 = A.Expanded$(new A.AppButton(B.MaterialColor_Map_JNc9P_4294198070, t4, t3.toUpperCase(), new A._AccountOverview_build_closure11(_this, context, t1, t2), _null, _null), 1); if (companies.length === 1) { t4 = J.$index$asx(t5.$index(0, t6), "cancel_account"); if (t4 == null) t4 = ""; t4 = t4.toUpperCase(); } else { t4 = J.$index$asx(t5.$index(0, t6), "delete_company"); if (t4 == null) t4 = ""; t4 = t4.toUpperCase(); } t5 = A.getLayout(context) === B.AppLayout_mobile ? _null : B.IconData_57785_MaterialIcons_null_false; t8.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(B.MaterialColor_Map_JNc9P_4294198070, t5, t4, new A._AccountOverview_build_closure12(_this, companies, t1, company, t2, context), _null, _null), 1)], t9), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); return new A.ScrollableListView(t8, _null, _null, _null); } }; A._AccountOverview_build__getDataStats.prototype = { call$0() { var t4, t5, stats, t1 = A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = this.$this.viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].clientState.list._list.length; if (t4 !== 0) { t5 = t4 === 1 ? t1.get$client(t1) : t1.get$clients(t1); stats = "\n" + ("\n- " + t4 + " " + t5); } else stats = "\n"; t4 = t2[t3].productState.list._list.length; if (t4 !== 0) { t5 = t4 === 1 ? t1.get$product(t1) : t1.get$products(); stats += "\n- " + t4 + " " + t5; } t2 = t2[t3]; t3 = t2.invoiceState.list._list.length; if (t3 !== 0 && !t2.userCompany.company.isLarge) { t1 = t3 === 1 ? t1.get$invoice() : t1.get$invoices(); stats += "\n- " + t3 + " " + t1; } return stats; }, $signature: 127 }; A._AccountOverview_build_closure.prototype = { call$0() { return this.$this.viewModel.onSetPrimaryCompany.call$1(this.context); }, $signature: 9 }; A._AccountOverview_build_closure0.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.launch(t1.userCompanyStates._list[t2].userCompany.ninjaPortalUrl, null, false); }, $signature: 26 }; A._AccountOverview_build_closure1.prototype = { call$1(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountOverview_build__closure5(value))); }, $signature: 20 }; A._AccountOverview_build__closure5.prototype = { call$1(b) { b.get$_company_model$_$this()._isDisabled = !this.value; return b; }, $signature: 23 }; A._AccountOverview_build_closure2.prototype = { call$1(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountOverview_build__closure4(value))); }, $signature: 20 }; A._AccountOverview_build__closure4.prototype = { call$1(b) { b.get$_company_model$_$this()._markdownEnabled = this.value; return b; }, $signature: 23 }; A._AccountOverview_build_closure3.prototype = { call$1(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountOverview_build__closure3(value))); }, $signature: 20 }; A._AccountOverview_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._markdownEmailEnabled = this.value; return b; }, $signature: 23 }; A._AccountOverview_build_closure4.prototype = { call$1(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountOverview_build__closure2(value))); }, $signature: 20 }; A._AccountOverview_build__closure2.prototype = { call$1(b) { b.get$_company_model$_$this()._reportIncludeDrafts = this.value; return b; }, $signature: 23 }; A._AccountOverview_build_closure5.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null); var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.canLaunch(string$.https_a_), $async$call$0); case 2: // returning from await. if ($async$result) A.launch(string$.https_a_, null, false); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._AccountOverview_build_closure6.prototype = { call$0() { var t1 = this.context, t2 = this.localization, t3 = t2.get$applyLicense(); t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "license"); if (t2 == null) t2 = ""; A.fieldCallback(new A._AccountOverview_build__closure1(this.$this, t1), t1, t2, 24, null, t3); }, $signature: 1 }; A._AccountOverview_build__closure1.prototype = { call$1(value) { var t1 = this.$this, state = t1.viewModel.state, credentials = state.get$credentials(state), t2 = this.context; A.showDialog(null, false, new A._AccountOverview_build___closure1(), t2, null, true, type$.legacy_AlertDialog); new A.WebClient().post$2(credentials.url + "/claim_license?license_key=" + A.S(value), credentials.token).then$1$1(0, new A._AccountOverview_build___closure2(t1, t2), type$.Null).catchError$1(new A._AccountOverview_build___closure3(t2)); }, $signature: 11 }; A._AccountOverview_build___closure1.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_legacy_Widget), null); }, $signature: 172 }; A._AccountOverview_build___closure2.prototype = { call$1(response) { var t1 = this.context; if (A.Navigator_of(t1, false).canPop$0()) A.Navigator_of(t1, false).pop$0(0); this.$this.viewModel.onAppliedLicense.call$0(); }, $signature: 7 }; A._AccountOverview_build___closure3.prototype = { call$1(error) { var t1 = this.context; if (A.Navigator_of(t1, false).canPop$0()) A.Navigator_of(t1, false).pop$0(0); A.showErrorDialog(false, t1, A.S(error)); }, $signature: 7 }; A._AccountOverview_build_closure7.prototype = { call$0() { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "tokens", false, _null)); }, $signature: 1 }; A._AccountOverview_build_closure8.prototype = { call$0() { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "webhook", false, _null)); }, $signature: 1 }; A._AccountOverview_build_closure9.prototype = { call$0() { return A.launch("https://invoiceninja.github.io/docs/developer-guide", null, false); }, $signature: 26 }; A._AccountOverview_build_closure10.prototype = { call$0() { return A.launch("https://zapier.com/apps/invoice-ninja", null, false); }, $signature: 26 }; A._AccountOverview_build_closure11.prototype = { call$0() { var _this = this, t1 = _this.context, t2 = _this.localization, t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "purge_data_message"); if (t3 == null) t3 = ""; A.confirmCallback(false, new A._AccountOverview_build__closure0(_this.$this, t1), t1, B.JSString_methods.$add(t3, _this._getDataStats.call$0()), false, t2.get$purge().toLowerCase()); }, $signature: 1 }; A._AccountOverview_build__closure0.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(true, new A._AccountOverview_build___closure0(this.$this, t1), t1, false); }, $signature: 11 }; A._AccountOverview_build___closure0.prototype = { call$2(password, idToken) { this.$this.viewModel.onPurgeData.call$3(this.context, password, idToken); }, $signature: 38 }; A._AccountOverview_build_closure12.prototype = { call$0() { var message, t3, _this = this, t1 = _this.localization, t2 = t1.localeCode; if (_this.companies.length === 1) { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2), "cancel_account_message"); message = t2 == null ? "" : t2; } else { t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2), "delete_company_message"); message = t2 == null ? "" : t2; } t2 = _this.company.settings.name; t3 = t2 == null; if ((t3 ? "" : t2).length === 0) t2 = t1.get$newCompany(); else if (t3) t2 = ""; t3 = _this.context; A.confirmCallback(true, new A._AccountOverview_build__closure(_this.$this, t3), t3, B.JSString_methods.$add(B.JSString_methods.replaceFirst$2(message, ":company", t2), _this._getDataStats.call$0()), false, t1.get$$delete(t1).toLowerCase()); }, $signature: 1 }; A._AccountOverview_build__closure.prototype = { call$1(reason) { var t1 = this.context; A.passwordCallback(true, new A._AccountOverview_build___closure(this.$this, t1, reason), t1, false); }, $signature: 11 }; A._AccountOverview_build___closure.prototype = { call$2(password, idToken) { this.$this.viewModel.onCompanyDelete.call$4(this.context, password, idToken, this.reason); }, $signature: 38 }; A.__AccountManagementState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.AccountManagementScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.AccountManagementScreen_build_closure(), A.account_management_vm_AccountManagementVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_AccountManagementVM); } }; A.AccountManagementScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.AccountManagement(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2648 }; A.AccountManagementVM.prototype = { get$company() { return this.company; } }; A.AccountManagementVM_fromStore_closure1.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.AccountManagementVM_fromStore_closure2.prototype = { call$4(context, password, idToken, reason) { var companyLength, t1, t2; A.showDialog(null, false, new A.AccountManagementVM_fromStore__closure(), context, null, true, type$.legacy_AlertDialog); companyLength = this.state.get$companies().length; t1 = new A._Future($.Zone__current, type$._Future_Null); t2 = this.store; t1.then$1$1(0, new A.AccountManagementVM_fromStore__closure0(t2, companyLength), type$.Null).catchError$1(new A.AccountManagementVM_fromStore__closure1()); t2.get$_dispatchers()[0].call$1(new A.DeleteCompanyRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_Null), password, reason)); }, $signature: 725 }; A.AccountManagementVM_fromStore__closure.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_legacy_Widget), null); }, $signature: 172 }; A.AccountManagementVM_fromStore__closure0.prototype = { call$1(value) { var context, state, t2, index, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t1 = this.store; state = A._lateReadCheck(t1.__Store__state, "_state"); if (this.companyLength === 1) { t1.get$_dispatchers()[0].call$1(new A.UserLogout()); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; if (t1._list[t2].userCompany.user.oauthProvider === "google") A.GoogleOAuth_disconnect(); } else { index = state.uiState.selectedCompanyIndex === 0 ? 1 : 0; t1.get$_dispatchers()[0].call$1(new A.SelectCompany(index, true)); t2 = new A._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new A.AccountManagementVM_fromStore___closure0(t1, context), type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), true, false, false)); } }, $signature: 3 }; A.AccountManagementVM_fromStore___closure0.prototype = { call$1(value) { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.SelectCompany(0, true)); t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); t1 = this.context; if (A.Navigator_of(t1, false).canPop$0()) A.Navigator_of(t1, false).pop$0(0); }, $signature: 3 }; A.AccountManagementVM_fromStore__closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; if (A.Navigator_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false).canPop$0()) A.Navigator_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false).pop$0(0); A.showDialog(null, true, new A.AccountManagementVM_fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.AccountManagementVM_fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.AccountManagementVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.AccountManagementVM_fromStore__closure2(this.store, context).call$0(); }, $signature: 14 }; A.AccountManagementVM_fromStore__closure2.prototype = { call$0() { var t1 = this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState, t2 = this.context, completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; A.AccountManagementVM_fromStore_closure3.prototype = { call$3(context, password, idToken) { var completer, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "purge_successful"); if (t1 == null) t1 = ""; completer = A.snackBarCompleter(context, t1, false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.PurgeDataRequest(completer, password, idToken)); }, $signature: 2650 }; A.AccountManagementVM_fromStore_closure4.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 1 }; A.AccountManagementVM_fromStore_closure0.prototype = { call$1(context) { var t2, completer, _s15_ = "updated_company", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s15_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s15_); completer = A.snackBarCompleter(context, t1, false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.SetDefaultCompanyRequest(completer)); }, $signature: 14 }; A.ClientPortal.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._ClientPortalState(t1, new A.WebClient(), new A.Debouncer(1500, true), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._ClientPortalState.prototype = { initState$0() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = settingsUIState.entityType !== B.EntityType_company ? 4 : 5; t1 = A.TabController$(null, settingsUIState.tabIndex, t1, _this); _this._client_portal$_controller = t1; t1.addListener$1(0, _this.get$_client_portal$_onTabChanged()); }, _client_portal$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._client_portal$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, _validateSubdomain$0() { var _this = this; _this.setState$1(new A._ClientPortalState__validateSubdomain_closure(_this)); _this._client_portal$_debouncer.run$1(new A._ClientPortalState__validateSubdomain_closure0(_this)); }, dispose$0(_) { var _this = this; _this._client_portal$_focusNode.dispose$0(0); _this._client_portal$_controller.removeListener$1(0, _this.get$_client_portal$_onTabChanged()); _this._client_portal$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._client_portal$_controllers, new A._ClientPortalState_dispose_closure(_this)); _this.super$__ClientPortalState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { var company, settings, _this = this, t1 = _this._subdomainController, t2 = _this._portalDomainController, t3 = _this._customCssController, t4 = _this._customJavaScriptController, t5 = _this._client_portal$_customMessageDashboard, t6 = _this._client_portal$_customMessageUnpaidInvoice, t7 = _this._client_portal$_customMessagePaidInvoice, t8 = _this._client_portal$_customMessageUnapprovedQuote, t9 = _this._termsController, t10 = _this._privacyController, t11 = _this._customHeaderController, t12 = _this._customFooterController, t13 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12], type$.JSArray_legacy_TextEditingController); _this._client_portal$_controllers = t13; B.JSArray_methods.forEach$1(t13, new A._ClientPortalState_didChangeDependencies_closure(_this)); t13 = _this._widget.viewModel; company = t13.company; settings = t13.settings; t2.set$text(0, company.portalDomain); t1.set$text(0, company.subdomain); t5.set$text(0, settings.customMessageDashboard); t7.set$text(0, settings.customMessagePaidInvoice); t6.set$text(0, settings.customMessageUnpaidInvoice); t8.set$text(0, settings.customMessageUnapprovedQuote); t10.set$text(0, settings.clientPortalPrivacy); t9.set$text(0, settings.clientPortalTerms); t11.set$text(0, settings.clientPortalCustomHeader); t12.set$text(0, settings.clientPortalCustomFooter); t3.set$text(0, settings.clientPortalCustomCss); t4.set$text(0, settings.clientPortalCustomJs); B.JSArray_methods.forEach$1(_this._client_portal$_controllers, new A._ClientPortalState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _client_portal$_onChanged$0() { this._client_portal$_debouncer.run$1(new A._ClientPortalState__onChanged_closure(this)); }, _onSavePressed$1(context) { var _this = this, isValid = $.$get$_ClientPortalState__formKey().get$currentState().validate$0(); _this.setState$1(new A._ClientPortalState__onSavePressed_closure(_this, isValid)); if (!isValid || _this._isCheckingSubdomain) return; _this._widget.viewModel.onSavePressed.call$1(context); }, build$1(_, context) { var t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, _null = null, _s12_ = "registration", _s2_ = "en", _s25_ = "client_portal_domain_hint", _s9_ = "login_url", _s22_ = "client_document_upload", _s22_0 = "vendor_document_upload", _s27_ = "vendor_document_upload_help", _s32_ = "require_purchase_order_signature", _s37_ = "require_purchase_order_signature_help", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, settings = viewModel.settings, loginUrl = A.clientPortalUrlSelector(state, "login"), registrationUrl = A.clientPortalUrlSelector(state, "register"), t2 = t1.get$clientPortal(), t3 = state.uiState, t4 = t3.settingsUIState, t5 = t4.updatedAt, t6 = _this._client_portal$_controller, t7 = type$.JSArray_legacy_Widget, t8 = A._setArrayType([A.Tab$(_null, t1.get$settings())], t7); t4 = t4.entityType === B.EntityType_company; if (t4) { t9 = $.$get$LocalizationsProvider__localizedValues(); t10 = J.$index$asx(t9.$index(0, t1.localeCode), _s12_); t8.push(A.Tab$(_null, t10 == null ? J.$index$asx(t9.$index(0, _s2_), _s12_) : t10)); } t9 = $.$get$LocalizationsProvider__localizedValues(); t10 = t1.localeCode; t11 = J.$index$asx(t9.$index(0, t10), "authorization"); t8.push(A.Tab$(_null, t11 == null ? "" : t11)); t11 = J.$index$asx(t9.$index(0, t10), "messages"); t8.push(A.Tab$(_null, t11 == null ? "" : t11)); t8.push(A.Tab$(_null, t1.get$customize())); t5 = A.TabBar$(t6, _null, true, new A.ValueKey(t5, type$.ValueKey_legacy_int), _null, t8); t6 = _this._client_portal$_controller; t8 = $.$get$_ClientPortalState__formKey(); t11 = A._setArrayType([], t7); if (t4) { t12 = A._setArrayType([], t7); if (state.get$isHosted()) { t13 = J.$index$asx(t9.$index(0, t10), "portal_mode"); if (t13 == null) t13 = ""; t14 = company.portalMode; t15 = type$.legacy_String; t16 = A.DropdownMenuItem$(A.Text$(t1.get$subdomain(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "subdomain", t15); t17 = J.$index$asx(t9.$index(0, t10), "domain"); t12.push(A.AppDropdownButton$(_null, "", true, A._setArrayType([t16, A.DropdownMenuItem$(A.Text$(t17 == null ? "" : t17, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "domain", t15)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t13, new A._ClientPortalState_build_closure(viewModel), _null, false, t14, t15)); } if (state.get$isHosted() && company.portalMode === "subdomain") { t13 = t1.get$subdomain(); t14 = _this._client_portal$_autoValidate; t15 = t1.get$subdomainHelp(); if (_this._isCheckingSubdomain) t16 = B.IconData_62057_MaterialIcons_null_false; else t16 = _this._isSubdomainUnique ? B.IconData_57690_MaterialIcons_null_false : B.IconData_57912_MaterialIcons_null_false; t16 = A.Icon$(t16, _null, _null); B.JSArray_methods.addAll$1(t12, A._setArrayType([A.DecoratedFormField$(false, _null, false, t14, _this._subdomainController, _null, true, _null, t15, _null, A._setArrayType([new A.FilteringTextInputFormatter(A.RegExp_RegExp("[a-z0-9\\-]", true, false, false, false), true, "")], type$.JSArray_legacy_TextInputFormatter), false, false, _null, B.TextInputType_0_null_null, t13, _null, _null, false, new A._ClientPortalState_build_closure0(_this), _null, _null, true, t16, _null, B.TextAlign_4, new A._ClientPortalState_build_closure1(_this, t1))], t7)); } else { if (state.get$isHosted()) { t13 = state.userCompanyStates; t14 = t3.selectedCompanyIndex; t14 = t13._list[t14].userCompany.account.plan === "enterprise"; t13 = t14; } else t13 = true; t14 = company.portalMode === "domain"; if (t14 || !state.get$isHosted()) { t15 = J.$index$asx(t9.$index(0, t10), "domain_url"); if (t15 == null) t15 = ""; } else { t15 = J.$index$asx(t9.$index(0, t10), "iframe_url"); if (t15 == null) t15 = ""; } if (!state.get$isHosted()) { t16 = J.$index$asx(t9.$index(0, t10), _s25_); if (t16 == null) t16 = J.$index$asx(t9.$index(0, _s2_), _s25_); } else t16 = ""; t15 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._portalDomainController, _null, t13, _null, t16, _null, _null, false, false, _null, B.TextInputType_6_null_null, t15, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A._ClientPortalState_build_closure2(state, t1)), new A.SizedBox(_null, 16, _null, _null)], t7); if (state.get$isHosted()) { t13 = state.userCompanyStates; t16 = t3.selectedCompanyIndex; t16 = t13._list[t16].userCompany.account.plan === "enterprise"; t13 = t16; } else t13 = true; if (t13) if (t14 && state.get$isHosted()) t15.push(A.OutlinedButton$(new A.Padding(B.EdgeInsets_8_8_8_8, new A.IconText(t1.get$viewDocs().toUpperCase(), B._MdiIconData_ujl, _null, _null, _null), _null), _null, new A._ClientPortalState_build_closure3(), _null)); else t15.push(new A.SizedBox(_null, _null, _null, _null)); else t15.push(A.Text$(t1.get$requiresAnEnterprisePlan(), _null, _null, _null, _null, _null, _null, _null, _null, _null)); B.JSArray_methods.addAll$1(t12, t15); } t12.push(new A.SizedBox(_null, 16, _null, _null)); t13 = J.$index$asx(t9.$index(0, t10), _s9_); t13 = A.Text$(t13 == null ? J.$index$asx(t9.$index(0, _s2_), _s9_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._ClientPortalState_build_closure4(loginUrl, t1), false, _null, _null, A.Text$(loginUrl, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t13, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null)); t11.push(A.FormCard$(_null, t12, _null, B.CrossAxisAlignment_3, false, _null, false, _null)); } t12 = A.BoolDropdownButton$(_null, _null, _null, B._MdiIconData_Qa6, t1.get$clientPortal(), _null, new A._ClientPortalState_build_closure5(viewModel, settings), settings.enablePortal); t13 = J.$index$asx(t9.$index(0, t10), _s22_); if (t13 == null) t13 = J.$index$asx(t9.$index(0, _s2_), _s22_); t14 = J.$index$asx(t9.$index(0, t10), "document_upload_help"); if (t14 == null) t14 = ""; t13 = A.BoolDropdownButton$(_null, _null, t14, B._MdiIconData_EuK1, t13, _null, new A._ClientPortalState_build_closure6(viewModel, settings), settings.enableClientPortalUploads); t14 = J.$index$asx(t9.$index(0, t10), _s22_0); if (t14 == null) t14 = J.$index$asx(t9.$index(0, _s2_), _s22_0); t15 = J.$index$asx(t9.$index(0, t10), _s27_); if (t15 == null) t15 = J.$index$asx(t9.$index(0, _s2_), _s27_); t14 = A._setArrayType([t12, t13, A.BoolDropdownButton$(_null, _null, t15, B._MdiIconData_EuK1, t14, _null, new A._ClientPortalState_build_closure7(viewModel, settings), settings.enableVendorPortalUploads)], t7); if (t4) { t12 = J.$index$asx(t9.$index(0, t10), "storefront"); if (t12 == null) t12 = ""; t13 = J.$index$asx(t9.$index(0, t10), "storefront_help"); if (t13 == null) t13 = ""; t14.push(A.BoolDropdownButton$(_null, _null, t13, B._MdiIconData_egL3, t12, _null, new A._ClientPortalState_build_closure8(viewModel, company), company.enableShopApi)); } if (A.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com") { t12 = state.userCompanyStates; t13 = t3.selectedCompanyIndex; t13 = t12._list[t13].userCompany.company.enableShopApi; t12 = t13; } else t12 = false; if (t12) { t12 = J.$index$asx(t9.$index(0, t10), "company_key"); t12 = A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); B.JSArray_methods.addAll$1(t14, A._setArrayType([new A.SizedBox(_null, 16, _null, _null), new A.ListDivider(_null), A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._ClientPortalState_build_closure9(company, t1), false, _null, _null, A.Text$(company.companyKey, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t12, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null)], t7)); } t11.push(A.FormCard$(_null, t14, _null, _null, false, _null, false, _null)); t11.push(A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._termsController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$termsOfService(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._privacyController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$privacyPolicy(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t7), _null, B.CrossAxisAlignment_0, false, _null, true, _null)); t11 = A._setArrayType([new A.ScrollableListView(t11, _null, _null, _null)], t7); if (t4) { t4 = J.$index$asx(t9.$index(0, t10), "client_registration"); if (t4 == null) t4 = ""; t12 = J.$index$asx(t9.$index(0, t10), "client_registration_help"); if (t12 == null) t12 = ""; t4 = A._setArrayType([A.BoolDropdownButton$(_null, _null, t12, B._MdiIconData_MO92, t4, _null, new A._ClientPortalState_build_closure10(viewModel, company), company.clientCanRegister)], t7); t12 = state.userCompanyStates; t3 = t3.selectedCompanyIndex; t3 = t12._list[t3].userCompany.company.clientCanRegister; if (t3) { t3 = J.$index$asx(t9.$index(0, t10), "registration_url"); t3 = A.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.SizedBox(_null, 16, _null, _null), A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._ClientPortalState_build_closure11(registrationUrl, t1), false, _null, _null, A.Text$(registrationUrl, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t3, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null)], t7)); } t3 = A.FormCard$(_null, t4, _null, _null, false, _null, false, _null); t4 = company.clientRegistrationFields._list; t12 = A._arrayInstanceType(t4)._eval$1("MappedListIterable<1,SwitchListTile*>"); t11.push(new A.ScrollableListView(A._setArrayType([t3, A.FormCard$(_null, A.List_List$of(new A.MappedListIterable(t4, new A._ClientPortalState_build_closure12(context, t1, company, viewModel), t12), true, t12._eval$1("ListIterable.E")), _null, _null, false, _null, true, _null)], t7), _null, _null, _null)); } t3 = t1.get$enablePortalPassword(); t4 = J.$index$asx(t9.$index(0, t10), "enable_portal_password_help"); if (t4 == null) t4 = ""; t3 = A.FormCard$(_null, A._setArrayType([A.BoolDropdownButton$(_null, _null, t4, B._MdiIconData_Gjc, t3, _null, new A._ClientPortalState_build_closure13(viewModel, settings), settings.enablePortalPassword)], t7), _null, _null, false, _null, false, _null); t4 = t1.get$showAcceptInvoiceTerms(); t12 = J.$index$asx(t9.$index(0, t10), "show_accept_invoice_terms_help"); if (t12 == null) t12 = ""; t4 = A.BoolDropdownButton$(_null, _null, t12, B._MdiIconData_EuK2, t4, _null, new A._ClientPortalState_build_closure14(viewModel, settings), settings.showAcceptInvoiceTerms); t12 = t1.get$showAcceptQuoteTerms(); t13 = J.$index$asx(t9.$index(0, t10), "show_accept_quote_terms_help"); if (t13 == null) t13 = ""; t12 = A.FormCard$(_null, A._setArrayType([t4, A.BoolDropdownButton$(_null, _null, t13, B._MdiIconData_EuK2, t12, _null, new A._ClientPortalState_build_closure15(viewModel, settings), settings.showAcceptQuoteTerms)], t7), _null, _null, false, _null, false, _null); t13 = t1.get$requireInvoiceSignature(); t13 = A._setArrayType([A.BoolDropdownButton$(_null, _null, t1.get$requireInvoiceSignatureHelp(), B._MdiIconData_I2F0, t13, _null, new A._ClientPortalState_build_closure16(viewModel, settings), settings.requireInvoiceSignature)], t7); if (company.isModuleEnabled$1(B.EntityType_quote)) { t4 = t1.get$requireQuoteSignature(); t13.push(A.BoolDropdownButton$(_null, _null, t1.get$requireInvoiceSignatureHelp(), B._MdiIconData_I2F0, t4, _null, new A._ClientPortalState_build_closure17(viewModel, settings), settings.requireQuoteSignature)); } if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) { t4 = J.$index$asx(t9.$index(0, t10), _s32_); if (t4 == null) t4 = J.$index$asx(t9.$index(0, _s2_), _s32_); t14 = J.$index$asx(t9.$index(0, t10), _s37_); if (t14 == null) t14 = J.$index$asx(t9.$index(0, _s2_), _s37_); t13.push(A.BoolDropdownButton$(_null, _null, t14, B._MdiIconData_I2F0, t4, _null, new A._ClientPortalState_build_closure18(viewModel, settings), settings.requirePurchaseOrderSignature)); } t4 = t1.get$signatureOnPdf(); t14 = J.$index$asx(t9.$index(0, t10), "signature_on_pdf_help"); if (t14 == null) t14 = ""; t15 = settings.signatureOnPdf; t13.push(A.BoolDropdownButton$(_null, _null, t14, A.getEntityIcon(B.EntityType_invoice), t4, _null, new A._ClientPortalState_build_closure19(viewModel, settings), t15)); t11.push(new A.ScrollableListView(A._setArrayType([t3, t12, A.FormCard$(_null, t13, _null, _null, false, _null, true, _null)], t7), _null, _null, _null)); t13 = A.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageDashboard, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$dashboard(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t12 = J.$index$asx(t9.$index(0, t10), "unpaid_invoice"); t3 = t12 == null ? "" : t12; t3 = A.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageUnpaidInvoice, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t4 = J.$index$asx(t9.$index(0, t10), "paid_invoice"); if (t4 == null) t4 = ""; t4 = A.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessagePaidInvoice, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t4, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t12 = J.$index$asx(t9.$index(0, t10), "unapproved_quote"); if (t12 == null) t12 = ""; t11.push(new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t13, t3, t4, A.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageUnapprovedQuote, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t12, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t7), _null, _null, false, _null, true, _null)], t7), _null, _null, _null)); t1 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._customHeaderController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$header(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._customFooterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$footer(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t7); if (!A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state").get$isHosted()) { t3 = J.$index$asx(t9.$index(0, t10), "custom_css"); if (t3 == null) t3 = ""; t3 = A.DecoratedFormField$(false, _null, false, false, _this._customCssController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t10 = J.$index$asx(t9.$index(0, t10), "custom_javascript"); t4 = t10 == null ? "" : t10; B.JSArray_methods.addAll$1(t1, A._setArrayType([t3, A.DecoratedFormField$(false, _null, false, false, _this._customJavaScriptController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t4, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t7)); } t11.push(new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t1, _null, _null, false, _null, true, _null)], t7), _null, _null, _null)); return A.EditScaffold$(_null, t5, new A.AppTabForm(_this._client_portal$_focusNode, t8, t11, t6, _null, _null), _null, _null, _null, false, _null, _null, new A._ClientPortalState_build_closure20(_this), _null, t2); } }; A._ClientPortalState__validateSubdomain_closure.prototype = { call$0() { return this.$this._isSubdomainUnique = false; }, $signature: 21 }; A._ClientPortalState__validateSubdomain_closure0.prototype = { call$0() { var state, credentials, t3, t1 = this.$this, subdomain = J.trim$0$s(t1._subdomainController._change_notifier$_value.text), t2 = t1._framework$_element; t2.toString; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); if (subdomain.length === 0) return; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; if (subdomain === t2._list[t3].userCompany.company.subdomain) { t1.setState$1(new A._ClientPortalState__validateSubdomain__closure(t1)); return; } t1.setState$1(new A._ClientPortalState__validateSubdomain__closure0(t1)); t2 = type$.legacy_String; t1._webClient.post$3$data(credentials.url + "/check_subdomain", credentials.token, B.C_JsonCodec.encode$2$toEncodable(A.LinkedHashMap_LinkedHashMap$_literal(["subdomain", subdomain], t2, t2), null)).then$1$1(0, new A._ClientPortalState__validateSubdomain__closure1(t1), type$.Null).catchError$1(new A._ClientPortalState__validateSubdomain__closure2(t1)); }, $signature: 1 }; A._ClientPortalState__validateSubdomain__closure.prototype = { call$0() { return this.$this._isSubdomainUnique = true; }, $signature: 21 }; A._ClientPortalState__validateSubdomain__closure0.prototype = { call$0() { return this.$this._isCheckingSubdomain = true; }, $signature: 21 }; A._ClientPortalState__validateSubdomain__closure1.prototype = { call$1(data) { var t1 = this.$this; t1.setState$1(new A._ClientPortalState__validateSubdomain___closure0(t1)); }, $signature: 7 }; A._ClientPortalState__validateSubdomain___closure0.prototype = { call$0() { var t1 = this.$this; t1._isSubdomainUnique = true; t1._isCheckingSubdomain = false; t1._client_portal$_onChanged$0(); }, $signature: 1 }; A._ClientPortalState__validateSubdomain__closure2.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._ClientPortalState__validateSubdomain___closure(t1)); }, $signature: 3 }; A._ClientPortalState__validateSubdomain___closure.prototype = { call$0() { var t1 = this.$this; t1._isCheckingSubdomain = t1._isSubdomainUnique = false; }, $signature: 1 }; A._ClientPortalState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_portal$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._ClientPortalState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_portal$_onChanged()); }, $signature: 12 }; A._ClientPortalState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_client_portal$_onChanged()); }, $signature: 12 }; A._ClientPortalState__onChanged_closure.prototype = { call$0() { var settings, t1 = this.$this, company = t1._widget.viewModel.company.rebuild$1(new A._ClientPortalState__onChanged__closure(t1)); if (!J.$eq$(company, t1._widget.viewModel.company)) t1._widget.viewModel.onCompanyChanged.call$1(company); settings = t1._widget.viewModel.settings.rebuild$1(new A._ClientPortalState__onChanged__closure0(t1)); if (!J.$eq$(settings, t1._widget.viewModel.settings)) t1._widget.viewModel.onSettingsChanged.call$1(settings); }, $signature: 1 }; A._ClientPortalState__onChanged__closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._portalDomainController._change_notifier$_value.text); b.get$_company_model$_$this()._portalDomain = t2; t1 = J.trim$0$s(t1._subdomainController._change_notifier$_value.text); b.get$_company_model$_$this()._subdomain = t1; return b; }, $signature: 23 }; A._ClientPortalState__onChanged__closure0.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_portal$_customMessageDashboard._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageDashboard = t2; t2 = J.trim$0$s(t1._client_portal$_customMessageUnpaidInvoice._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageUnpaidInvoice = t2; t2 = J.trim$0$s(t1._client_portal$_customMessagePaidInvoice._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessagePaidInvoice = t2; t2 = J.trim$0$s(t1._client_portal$_customMessageUnapprovedQuote._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageUnapprovedQuote = t2; t2 = J.trim$0$s(t1._termsController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalTerms = t2; t2 = J.trim$0$s(t1._privacyController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalPrivacy = t2; t2 = J.trim$0$s(t1._customJavaScriptController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomJs = t2; t2 = J.trim$0$s(t1._customCssController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomCss = t2; t2 = J.trim$0$s(t1._customHeaderController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomHeader = t2; t1 = J.trim$0$s(t1._customFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomFooter = t1; return b; }, $signature: 13 }; A._ClientPortalState__onSavePressed_closure.prototype = { call$0() { this.$this._client_portal$_autoValidate = !this.isValid; }, $signature: 1 }; A._ClientPortalState_build_closure20.prototype = { call$1(context) { return this.$this._onSavePressed$1(context); }, $signature: 30 }; A._ClientPortalState_build_closure.prototype = { call$1(value) { var t1 = this.viewModel; return t1.onCompanyChanged.call$1(t1.company.rebuild$1(new A._ClientPortalState_build__closure12(value))); }, $signature: 12 }; A._ClientPortalState_build__closure12.prototype = { call$1(b) { b.get$_company_model$_$this()._portalMode = this.value; return b; }, $signature: 23 }; A._ClientPortalState_build_closure1.prototype = { call$1(value) { var t1; if (value.length === 0) return this.localization.get$pleaseEnterAValue(); else { t1 = this.$this; if (!t1._isCheckingSubdomain && !t1._isSubdomainUnique) return this.localization.get$subdomainIsNotAvailable(); } return null; }, $signature: 15 }; A._ClientPortalState_build_closure0.prototype = { call$1(value) { return this.$this._validateSubdomain$0(); }, $signature: 67 }; A._ClientPortalState_build_closure2.prototype = { call$1(val) { return (val.length === 0 || B.JSString_methods.trim$0(val).length === 0) && this.state.get$isHosted() ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._ClientPortalState_build_closure3.prototype = { call$0() { return A.launch("https://invoiceninja.github.io/docs/hosted-custom-domain", null, false); }, $signature: 26 }; A._ClientPortalState_build_closure4.prototype = { call$0() { var t1 = this.loginUrl; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; A._ClientPortalState_build_closure5.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure11(value))); }, $signature: 10 }; A._ClientPortalState_build__closure11.prototype = { call$1(b) { b.get$_settings_model$_$this()._enablePortal = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure6.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure10(value))); }, $signature: 10 }; A._ClientPortalState_build__closure10.prototype = { call$1(b) { b.get$_settings_model$_$this()._enableClientPortalUploads = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure7.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure9(value))); }, $signature: 10 }; A._ClientPortalState_build__closure9.prototype = { call$1(b) { b.get$_settings_model$_$this()._enableVendorPortalUploads = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure8.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ClientPortalState_build__closure8(value))); }, $signature: 10 }; A._ClientPortalState_build__closure8.prototype = { call$1(b) { b.get$_company_model$_$this()._enableShopApi = this.value; return b; }, $signature: 23 }; A._ClientPortalState_build_closure9.prototype = { call$0() { var t1 = this.company.companyKey; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; A._ClientPortalState_build_closure10.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ClientPortalState_build__closure7(value))); }, $signature: 10 }; A._ClientPortalState_build__closure7.prototype = { call$1(b) { b.get$_company_model$_$this()._clientCanRegister = this.value; return b; }, $signature: 23 }; A._ClientPortalState_build_closure11.prototype = { call$0() { var t1 = this.registrationUrl; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; A._ClientPortalState_build_closure12.prototype = { call$1(field) { var _this = this, _null = null; return A.SwitchListTile$(A.Theme_of(_this.context).colorScheme.secondary, _null, new A._ClientPortalState_build__closure6(_this.company, field, _this.viewModel), _null, _null, A.Text$(_this.localization.lookup$1(field.key), _null, _null, _null, _null, _null, _null, _null, _null, _null), field.required); }, $signature: 2651 }; A._ClientPortalState_build__closure6.prototype = { call$1(value) { var t1 = this.company, t2 = this.field; this.viewModel.onCompanyChanged.call$1(t1.rebuild$1(new A._ClientPortalState_build___closure(B.JSArray_methods.indexOf$2(t1.clientRegistrationFields._list, t2, 0), t2))); }, $signature: 20 }; A._ClientPortalState_build___closure.prototype = { call$1(b) { var t1 = b.get$clientRegistrationFields(), t2 = this.field, t3 = new A.RegistrationFieldEntityBuilder(); A.ArgumentError_checkNotNull(t2, "other"); t3._company_model$_$v = t2; new A._ClientPortalState_build____closure(t2).call$1(t3); t2 = t3.build$0(0); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); t1.get$_safeList()[this.index] = t2; return b; }, $signature: 23 }; A._ClientPortalState_build____closure.prototype = { call$1(b) { b.get$_company_model$_$this()._required = !this.field.required; return b; }, $signature: 2652 }; A._ClientPortalState_build_closure13.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure5(value))); }, $signature: 10 }; A._ClientPortalState_build__closure5.prototype = { call$1(b) { b.get$_settings_model$_$this()._enablePortalPassword = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure14.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure4(value))); }, $signature: 10 }; A._ClientPortalState_build__closure4.prototype = { call$1(b) { b.get$_settings_model$_$this()._showAcceptInvoiceTerms = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure15.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure3(value))); }, $signature: 10 }; A._ClientPortalState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._showAcceptQuoteTerms = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure16.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure2(value))); }, $signature: 10 }; A._ClientPortalState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._requireInvoiceSignature = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure17.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure1(value))); }, $signature: 10 }; A._ClientPortalState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._requireQuoteSignature = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure18.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure0(value))); }, $signature: 10 }; A._ClientPortalState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._requirePurchaseOrderSignature = this.value; return b; }, $signature: 13 }; A._ClientPortalState_build_closure19.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure(value))); }, $signature: 10 }; A._ClientPortalState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._signatureOnPdf = this.value; return b; }, $signature: 13 }; A.__ClientPortalState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ClientPortalScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ClientPortalScreen_build_closure(), A.client_portal_vm_ClientPortalVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientPortalVM); } }; A.ClientPortalScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ClientPortal(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2653 }; A.ClientPortalVM.prototype = { get$company() { return this.company; } }; A.ClientPortalVM_fromStore_closure1.prototype = { call$1(settings) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 480 }; A.ClientPortalVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.ClientPortalVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ClientPortalVM_fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; A.ClientPortalVM_fromStore__closure.prototype = { call$0() { var t2, t3, completer, t4, oldSubdomain, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; t3 = type$.Null; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, t3); t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; oldSubdomain = t2.userCompanyStates._list[t4].userCompany.company.subdomain; t4 = settingsUIState.company; if (oldSubdomain !== t4.subdomain) completer.future.then$1$1(0, new A.ClientPortalVM_fromStore___closure(), t3); t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t4)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.ClientPortalVM_fromStore___closure.prototype = { call$1(value) { var t1 = $.$get$navigatorKey(); t1.toString; A.showRefreshDataDialog($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false); }, $signature: 3 }; A.CompanyDetails.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._CompanyDetailsState(t1, new A.Debouncer(500, true), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._CompanyDetailsState.prototype = { initState$0() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = settingsUIState.entityType !== B.EntityType_company ? 4 : 5; t1 = A.TabController$(null, settingsUIState.tabIndex, t1, _this); _this._company_details$_controller = t1; t1.addListener$1(0, _this.get$_company_details$_onTabChanged()); }, _company_details$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._company_details$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, didChangeDependencies$0() { var settings, _this = this, t1 = _this._company_details$_nameController, t2 = _this._idNumberController, t3 = _this._vatNumberController, t4 = _this._company_details$_emailController, t5 = _this._websiteController, t6 = _this._company_details$_phoneController, t7 = _this._address1Controller, t8 = _this._address2Controller, t9 = _this._cityController, t10 = _this._stateController, t11 = _this._postalCodeController, t12 = _this._company_details$_custom1Controller, t13 = _this._company_details$_custom2Controller, t14 = _this._company_details$_custom3Controller, t15 = _this._company_details$_custom4Controller, t16 = _this._invoiceFooterController, t17 = _this._invoiceTermsController, t18 = _this._quoteFooterController, t19 = _this._quoteTermsController, t20 = _this._creditFooterController, t21 = _this._creditTermsController, t22 = _this._purchaseOrderFooterController, t23 = _this._purchaseOrderTermsController, t24 = _this._qrIbanController, t25 = _this._besrIdController, t26 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25], type$.JSArray_legacy_TextEditingController); _this._company_details$_controllers = t26; B.JSArray_methods.forEach$1(t26, new A._CompanyDetailsState_didChangeDependencies_closure(_this)); settings = _this._widget.viewModel.settings; t1.set$text(0, settings.name); t2.set$text(0, settings.idNumber); t3.set$text(0, settings.vatNumber); t4.set$text(0, settings.email); t5.set$text(0, settings.website); t6.set$text(0, settings.phone); t7.set$text(0, settings.address1); t8.set$text(0, settings.address2); t9.set$text(0, settings.city); t10.set$text(0, settings.state); t11.set$text(0, settings.postalCode); t12.set$text(0, settings.customValue1); t13.set$text(0, settings.customValue2); t14.set$text(0, settings.customValue3); t15.set$text(0, settings.customValue4); t17.set$text(0, settings.defaultInvoiceTerms); t16.set$text(0, settings.defaultInvoiceFooter); t19.set$text(0, settings.defaultQuoteTerms); t18.set$text(0, settings.defaultQuoteFooter); t20.set$text(0, settings.defaultCreditFooter); t21.set$text(0, settings.defaultCreditTerms); t22.set$text(0, settings.defaultPurchaseOrderFooter); t23.set$text(0, settings.defaultPurchaseOrderTerms); t24.set$text(0, settings.qrIban); t25.set$text(0, settings.besrId); B.JSArray_methods.forEach$1(_this._company_details$_controllers, new A._CompanyDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._company_details$_focusNode.dispose$0(0); _this._company_details$_controller.removeListener$1(0, _this.get$_company_details$_onTabChanged()); _this._company_details$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._company_details$_controllers, new A._CompanyDetailsState_dispose_closure(_this)); _this.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$dispose(0); }, _onSettingsChanged$0() { var _this = this, settings = _this._widget.viewModel.settings.rebuild$1(new A._CompanyDetailsState__onSettingsChanged_closure(_this)); if (!J.$eq$(settings, _this._widget.viewModel.settings)) _this._company_details$_debouncer.run$1(new A._CompanyDetailsState__onSettingsChanged_closure0(_this, settings)); }, build$1(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _null = null, _s2_ = "en", _s15_ = "use_quote_terms", _s20_ = "use_quote_terms_help", _s20_0 = "purchase_order_terms", _s21_ = "purchase_order_footer", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, settings = viewModel.settings, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; if (!t2[t4].userCompany.isAdmin) return new A.BlankScreen(_null, _null); t5 = t1.get$companyDetails(); t6 = viewModel.onSavePressed; t3 = t3.settingsUIState; t7 = t3.updatedAt; t8 = _this._company_details$_controller; t9 = A.Tab$(_null, t1.get$details(t1)); t10 = A.Tab$(_null, t1.get$address()); t11 = A.Tab$(_null, t1.get$logo()); t12 = $.$get$LocalizationsProvider__localizedValues(); t13 = t1.localeCode; t14 = J.$index$asx(t12.$index(0, t13), "defaults"); t15 = type$.JSArray_legacy_Widget; t14 = A._setArrayType([t9, t10, t11, A.Tab$(_null, t14 == null ? "" : t14)], t15); t3 = t3.entityType === B.EntityType_company; if (t3) { t9 = company.documents._list; t14.push(A.Tab$(_null, t9.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t9.length + ")")); } t7 = A.TabBar$(t8, _null, true, new A.ValueKey(t7, type$.ValueKey_legacy_int), _null, t14); t8 = $.$get$_CompanyDetailsState__formKey(); t9 = _this._company_details$_controller; t10 = A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._company_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$name(t1), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, new A._CompanyDetailsState_build_closure(t1)), A.DecoratedFormField$(false, _null, false, false, _this._idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$idNumber(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$vatNumber(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._websiteController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t1.get$website(), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._company_details$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t1.get$email(t1), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._company_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null), new A.CustomField(_this._company_details$_custom1Controller, _null, t6, "company1", settings.customValue1, false, _null), new A.CustomField(_this._company_details$_custom2Controller, _null, t6, "company2", settings.customValue2, false, _null), new A.CustomField(_this._company_details$_custom3Controller, _null, t6, "company3", settings.customValue3, false, _null), new A.CustomField(_this._company_details$_custom4Controller, _null, t6, "company4", settings.customValue4, false, _null)], t15), _null, _null, false, _null, false, _null)], t15); if (company.settings.countryId === "756") { t11 = J.$index$asx(t12.$index(0, t13), "qr_iban"); if (t11 == null) t11 = J.$index$asx(t12.$index(0, _s2_), "qr_iban"); t11 = A.DecoratedFormField$(false, _null, false, false, _this._qrIbanController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t11, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t14 = J.$index$asx(t12.$index(0, t13), "besr_id"); if (t14 == null) t14 = J.$index$asx(t12.$index(0, _s2_), "besr_id"); t10.push(A.FormCard$(_null, A._setArrayType([t11, A.DecoratedFormField$(false, _null, false, false, _this._besrIdController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t14, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null)], t15), _null, _null, false, _null, false, _null)); } if (t3) { t11 = company.sizeId; t14 = t1.get$size(t1); t16 = $.$get$memoizedSizeList(); t17 = state.staticState; t11 = A.AppDropdownButton$(_null, "", true, J.map$1$1$ax(t16.call$1(t17.sizeMap), new A._CompanyDetailsState_build_closure0(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t14, new A._CompanyDetailsState_build_closure1(viewModel, company), _null, true, t11, type$.legacy_String); t17 = $.$get$memoizedIndustryList().call$1(t17.industryMap); t14 = t1.get$industry(); t10.push(A.FormCard$(_null, A._setArrayType([t11, A.EntityDropdown$(true, false, false, company.industryId, t17, _null, B.EntityType_industry, B.List_empty0, t14, _null, _null, new A._CompanyDetailsState_build_closure2(viewModel, company), _null, _null, _null)], t15), _null, _null, false, _null, true, _null)); } t11 = t1.get$address1(); t14 = type$.JSArray_legacy_String; t11 = A.DecoratedFormField$(false, A._setArrayType(["streetAddressLine1"], t14), false, false, _this._address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_9_null_null, t11, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t16 = t1.get$address2(); t16 = A.DecoratedFormField$(false, A._setArrayType(["streetAddressLine2"], t14), false, false, _this._address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t16, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t17 = t1.get$city(t1); t17 = A.DecoratedFormField$(false, A._setArrayType(["addressCity"], t14), false, false, _this._cityController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t17, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t18 = t1.get$state(t1); t18 = A.DecoratedFormField$(false, A._setArrayType(["addressState"], t14), false, false, _this._stateController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t18, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t19 = t1.get$postalCode(t1); t19 = A.DecoratedFormField$(false, A._setArrayType(["postalCode"], t14), false, false, _this._postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t19, _null, _null, false, _null, _null, t6, true, _null, _null, B.TextAlign_4, _null); t20 = $.$get$memoizedCountryList(); t21 = state.staticState; t20 = t20.call$1(t21.countryMap); t22 = t1.get$country(t1); t22 = A._setArrayType([A.FormCard$(_null, A._setArrayType([t11, t16, t17, t18, t19, A.EntityDropdown$(true, false, false, settings.countryId, t20, _null, B.EntityType_country, B.List_empty0, t22, _null, _null, new A._CompanyDetailsState_build_closure3(viewModel, settings), _null, _null, _null)], t15), _null, _null, false, _null, true, _null)], t15); t20 = A._setArrayType([new A.Builder(new A._CompanyDetailsState_build_closure4(settings, t1, viewModel), _null)], t15); t11 = settings.companyLogo; if ((t11 == null ? "" : t11).length !== 0) t20.push(new A.Padding(B.EdgeInsets_0_20_0_20, A.CachedImage$(t11, 1 / 0), _null)); t11 = t1.get$autoBill(); t16 = settings.autoBill; t17 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t18 = type$.legacy_String; t16 = A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], t14), new A._CompanyDetailsState_build_closure5(t1), t17), true, t17._eval$1("ListIterable.E")), _null, t11, new A._CompanyDetailsState_build_closure6(viewModel, settings), _null, false, t16, t18); t21 = $.$get$memoizedPaymentTypeList().call$1(t21.paymentTypeMap); t11 = t1.get$paymentType(); t11 = A._setArrayType([t16, A.EntityDropdown$(true, false, false, settings.defaultPaymentTypeId, t21, _null, B.EntityType_paymentType, B.List_empty0, t11, _null, _null, new A._CompanyDetailsState_build_closure7(viewModel, settings), _null, _null, _null)], t15); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t14 = t1.get$invoicePaymentTerms(); t16 = $.$get$memoizedDropdownPaymentTermList(); t17 = t2[t4].paymentTermState; t11.push(A.AppDropdownButton$(_null, "", true, J.map$1$1$ax(t16.call$2(t17.map, t17.list), new A._CompanyDetailsState_build_closure8(state, t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t14, new A._CompanyDetailsState_build_closure9(viewModel, settings), _null, true, A.S(settings.defaultPaymentTerms), t18)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t14 = t1.get$quoteValidUntil(); t16 = $.$get$memoizedDropdownPaymentTermList(); t17 = t2[t4].paymentTermState; t11.push(A.AppDropdownButton$(_null, "", true, J.map$1$1$ax(t16.call$2(t17.map, t17.list), new A._CompanyDetailsState_build_closure10(state, t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t14, new A._CompanyDetailsState_build_closure11(viewModel, settings), _null, true, A.S(settings.defaultValidUntil), t18)); } t11 = A._setArrayType([A.FormCard$(_null, t11, _null, B.CrossAxisAlignment_3, false, _null, false, _null)], t15); if (t3) { t14 = J.$index$asx(t12.$index(0, t13), "configure_payment_terms"); if (t14 == null) t14 = ""; t11.push(new A.Padding(B.EdgeInsets_16_0_16_10, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t14.toUpperCase(), new A._CompanyDetailsState_build_closure12(viewModel, context), _null, _null), _null)); } if (!(!state.get$isHosted() || t2[t4].userCompany.account.plan === "enterprise" || t2[t4].userCompany.account.plan === "pro")) { t2 = A._setArrayType([], t15); if (company.isModuleEnabled$1(B.EntityType_invoice)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure13(viewModel, settings), t1.get$invoiceDesign(), settings.defaultInvoiceDesignId, _null)); if (company.isModuleEnabled$1(B.EntityType_quote)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure14(viewModel, settings), t1.get$quoteDesign(), settings.defaultQuoteDesignId, _null)); if (company.isModuleEnabled$1(B.EntityType_credit)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure15(viewModel, settings), t1.get$creditDesign(), settings.defaultCreditDesignId, _null)); if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure16(viewModel, settings), t1.get$purchaseOrder(), settings.defaultPurchaseOrderDesignId, _null)); t11.push(A.FormCard$(_null, t2, _null, _null, false, _null, false, _null)); } t2 = A._setArrayType([], t15); if (t3) { t4 = settings.clientManualPaymentNotification; t14 = J.$index$asx(t12.$index(0, t13), "manual_payment_email"); if (t14 == null) t14 = ""; t2.push(A.BoolDropdownButton$(_null, _null, t1.get$emailReceipt(), B.IconData_57898_MaterialIcons_null_false, t14, _null, new A._CompanyDetailsState_build_closure17(viewModel, settings), t4)); } t4 = settings.clientOnlinePaymentNotification; t14 = J.$index$asx(t12.$index(0, t13), "online_payment_email"); if (t14 == null) t14 = ""; t2.push(A.BoolDropdownButton$(_null, _null, t1.get$emailReceipt(), B.IconData_57898_MaterialIcons_null_false, t14, _null, new A._CompanyDetailsState_build_closure18(viewModel, settings), t4)); t4 = company.useQuoteTermsOnConversion; t14 = J.$index$asx(t12.$index(0, t13), _s15_); if (t14 == null) t14 = J.$index$asx(t12.$index(0, _s2_), _s15_); t16 = J.$index$asx(t12.$index(0, t13), _s20_); if (t16 == null) t16 = J.$index$asx(t12.$index(0, _s2_), _s20_); t2.push(A.BoolDropdownButton$(_null, _null, t16, A.getEntityIcon(B.EntityType_quote), t14, _null, new A._CompanyDetailsState_build_closure19(viewModel, company), t4)); t11.push(A.FormCard$(_null, t2, _null, B.CrossAxisAlignment_3, false, _null, false, _null)); t2 = A._setArrayType([], t15); if (company.isModuleEnabled$1(B.EntityType_invoice)) B.JSArray_methods.addAll$1(t2, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._invoiceTermsController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$invoiceTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._invoiceFooterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$invoiceFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t15)); if (company.isModuleEnabled$1(B.EntityType_quote)) B.JSArray_methods.addAll$1(t2, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._quoteTermsController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$quoteTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._quoteFooterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$quoteFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t15)); if (company.isModuleEnabled$1(B.EntityType_credit)) B.JSArray_methods.addAll$1(t2, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._creditTermsController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$creditTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._creditFooterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$creditFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t15)); if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) { t1 = J.$index$asx(t12.$index(0, t13), _s20_0); if (t1 == null) t1 = J.$index$asx(t12.$index(0, _s2_), _s20_0); t1 = A.DecoratedFormField$(false, _null, false, false, _this._purchaseOrderTermsController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t13 = J.$index$asx(t12.$index(0, t13), _s21_); t4 = t13 == null ? J.$index$asx(t12.$index(0, _s2_), _s21_) : t13; B.JSArray_methods.addAll$1(t2, A._setArrayType([t1, A.DecoratedFormField$(false, _null, false, false, _this._purchaseOrderFooterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t4, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t15)); } t11.push(A.FormCard$(_null, t2, _null, _null, false, _null, true, _null)); t1 = A._setArrayType([new A.ScrollableListView(t10, _null, _null, _null), new A.AutofillGroup(new A.ScrollableListView(t22, _null, _null, _null), _null), new A.Padding(B.EdgeInsets_20_0_20_0, new A.ScrollableListView(t20, _null, _null, _null), _null), new A.ScrollableListView(t11, _null, _null, _null)], t15); if (t3) { t2 = company.documents; t1.push(new A.DocumentGrid(new A.CopyOnWriteList(true, t2._list, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")), new A._CompanyDetailsState_build_closure20(viewModel, context), new A._CompanyDetailsState_build_closure21(viewModel, context), _null, _null)); } return A.EditScaffold$(_null, t7, new A.AppTabForm(_this._company_details$_focusNode, t8, t1, t9, _null, _null), _null, _null, _null, false, _null, _null, t6, _null, t5); } }; A._CompanyDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_onSettingsChanged()); }, $signature: 12 }; A._CompanyDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_onSettingsChanged()); }, $signature: 12 }; A._CompanyDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_onSettingsChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._CompanyDetailsState__onSettingsChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._company_details$_nameController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_name = t2; t2 = J.trim$0$s(t1._idNumberController._change_notifier$_value.text); b.get$_settings_model$_$this()._idNumber = t2; t2 = J.trim$0$s(t1._vatNumberController._change_notifier$_value.text); b.get$_settings_model$_$this()._vatNumber = t2; t2 = J.trim$0$s(t1._company_details$_phoneController._change_notifier$_value.text); b.get$_settings_model$_$this()._phone = t2; t2 = J.trim$0$s(t1._company_details$_emailController._change_notifier$_value.text); b.get$_settings_model$_$this()._email = t2; t2 = J.trim$0$s(t1._websiteController._change_notifier$_value.text); b.get$_settings_model$_$this()._website = t2; t2 = J.trim$0$s(t1._address1Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._address1 = t2; t2 = J.trim$0$s(t1._address2Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._address2 = t2; t2 = J.trim$0$s(t1._cityController._change_notifier$_value.text); b.get$_settings_model$_$this()._city = t2; t2 = J.trim$0$s(t1._stateController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_state = t2; t2 = J.trim$0$s(t1._postalCodeController._change_notifier$_value.text); b.get$_settings_model$_$this()._postalCode = t2; t2 = J.trim$0$s(t1._company_details$_custom1Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._customValue1 = t2; t2 = J.trim$0$s(t1._company_details$_custom2Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._customValue2 = t2; t2 = J.trim$0$s(t1._company_details$_custom3Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._customValue3 = t2; t2 = J.trim$0$s(t1._company_details$_custom4Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._customValue4 = t2; t2 = J.trim$0$s(t1._invoiceFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultInvoiceFooter = t2; t2 = J.trim$0$s(t1._invoiceTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultInvoiceTerms = t2; t2 = J.trim$0$s(t1._quoteFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultQuoteFooter = t2; t2 = J.trim$0$s(t1._quoteTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultQuoteTerms = t2; t2 = J.trim$0$s(t1._creditFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultCreditFooter = t2; t2 = J.trim$0$s(t1._creditTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultCreditTerms = t2; t2 = J.trim$0$s(t1._purchaseOrderFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultPurchaseOrderFooter = t2; t2 = J.trim$0$s(t1._purchaseOrderTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultPurchaseOrderTerms = t2; t2 = J.trim$0$s(t1._qrIbanController._change_notifier$_value.text); b.get$_settings_model$_$this()._qrIban = t2; t1 = J.trim$0$s(t1._besrIdController._change_notifier$_value.text); b.get$_settings_model$_$this()._besrId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState__onSettingsChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onSettingsChanged.call$1(this.settings); }, $signature: 1 }; A._CompanyDetailsState_build_closure.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A._CompanyDetailsState_build_closure0.prototype = { call$1(sizeId) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.state.staticState.sizeMap._map$_map.$index(0, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, sizeId, type$.legacy_String); }, $signature: 43 }; A._CompanyDetailsState_build_closure1.prototype = { call$1(sizeId) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure14(sizeId))); }, $signature: 12 }; A._CompanyDetailsState_build__closure14.prototype = { call$1(b) { b.get$_company_model$_$this()._company_model$_sizeId = this.sizeId; return b; }, $signature: 23 }; A._CompanyDetailsState_build_closure2.prototype = { call$1(industry) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure13(industry))); }, $signature: 61 }; A._CompanyDetailsState_build__closure13.prototype = { call$1(b) { var t1 = this.industry; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_company_model$_$this()._company_model$_industryId = t1; return b; }, $signature: 23 }; A._CompanyDetailsState_build_closure3.prototype = { call$1(country) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure12(country))); }, $signature: 61 }; A._CompanyDetailsState_build__closure12.prototype = { call$1(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._countryId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure4.prototype = { call$1(context) { var _this = this, _null = null, t1 = type$.JSArray_legacy_Widget, t2 = A._setArrayType([], t1), t3 = _this.settings.companyLogo; if ((t3 == null ? "" : t3).length !== 0) { t3 = _this.localization; B.JSArray_methods.addAll$1(t2, A._setArrayType([A.Expanded$(new A.AppButton(B.MaterialAccentColor_Map_iTECn_4294922834, B.IconData_57785_MaterialIcons_null_false, t3.get$$delete(t3), new A._CompanyDetailsState_build__closure10(context, _this.viewModel), 1 / 0, _null), 1), new A.SizedBox(20, _null, _null, _null)], t1)); } t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, _this.localization.localeCode), "upload_logo"); if (t1 == null) t1 = ""; t2.push(A.Expanded$(new A.AppButton(_null, B.IconData_57717_MaterialIcons_null_false, t1, new A._CompanyDetailsState_build__closure11(_this.viewModel), 1 / 0, _null), 1)); return A.Row$(t2, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, $signature: 2655 }; A._CompanyDetailsState_build__closure10.prototype = { call$0() { var t1 = this.context; A.confirmCallback(false, new A._CompanyDetailsState_build___closure(this.viewModel, t1), t1, null, false, null); }, $signature: 1 }; A._CompanyDetailsState_build___closure.prototype = { call$1(_) { return this.viewModel.onDeleteLogo.call$1(this.context); }, $signature: 5 }; A._CompanyDetailsState_build__closure11.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, multipartFile; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.pickFile(null, "company_logo", B.FileType_2), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) { t1 = $.$get$navigatorKey(); t1.toString; $async$self.viewModel.onUploadLogo.call$2($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), multipartFile); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._CompanyDetailsState_build_closure6.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure9(value))); }, $signature: 12 }; A._CompanyDetailsState_build__closure9.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoBill = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure5.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A._CompanyDetailsState_build_closure7.prototype = { call$1(paymentType) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure8(paymentType))); }, $signature: 61 }; A._CompanyDetailsState_build__closure8.prototype = { call$1(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._defaultPaymentTypeId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure8.prototype = { call$1(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = t1.userCompanyStates._list[t2].paymentTermState.map._map$_map.$index(0, paymentTermId); t1 = paymentTerm.numDays; return A.DropdownMenuItem$(A.Text$(t1 === 0 ? this.localization.get$dueOnReceipt() : paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t1), type$.legacy_String); }, $signature: 43 }; A._CompanyDetailsState_build_closure9.prototype = { call$1(numDays) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure7(numDays))); }, $signature: 7 }; A._CompanyDetailsState_build__closure7.prototype = { call$1(b) { var t1 = this.numDays; t1 = t1 == null ? null : A.S(t1); b.get$_settings_model$_$this()._defaultPaymentTerms = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure10.prototype = { call$1(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = t1.userCompanyStates._list[t2].paymentTermState.map._map$_map.$index(0, paymentTermId); t1 = paymentTerm.numDays; return A.DropdownMenuItem$(A.Text$(t1 === 0 ? this.localization.get$dueOnReceipt() : paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t1), type$.legacy_String); }, $signature: 43 }; A._CompanyDetailsState_build_closure11.prototype = { call$1(numDays) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure6(numDays))); }, $signature: 7 }; A._CompanyDetailsState_build__closure6.prototype = { call$1(b) { var t1 = this.numDays; t1 = t1 == null ? null : A.S(t1); b.get$_settings_model$_$this()._defaultValidUntil = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure12.prototype = { call$0() { return this.viewModel.onConfigurePaymentTermsPressed.call$1(this.context); }, $signature: 9 }; A._CompanyDetailsState_build_closure13.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure5(value))); }, $signature: 234 }; A._CompanyDetailsState_build__closure5.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultInvoiceDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure14.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure4(value))); }, $signature: 234 }; A._CompanyDetailsState_build__closure4.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultQuoteDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure15.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure3(value))); }, $signature: 234 }; A._CompanyDetailsState_build__closure3.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultCreditDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure16.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure2(value))); }, $signature: 234 }; A._CompanyDetailsState_build__closure2.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultPurchaseOrderDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure17.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure1(value))); }, $signature: 10 }; A._CompanyDetailsState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientManualPaymentNotification = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure18.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure0(value))); }, $signature: 10 }; A._CompanyDetailsState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientOnlinePaymentNotification = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure19.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure(value))); }, $signature: 10 }; A._CompanyDetailsState_build__closure.prototype = { call$1(b) { b.get$_company_model$_$this()._useQuoteTermsOnConversion = this.value; return b; }, $signature: 23 }; A._CompanyDetailsState_build_closure20.prototype = { call$1(path) { return this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A._CompanyDetailsState_build_closure21.prototype = { call$3($document, password, idToken) { return this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.__CompanyDetailsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CompanyDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CompanyDetailsScreen_build_closure(), A.company_details_vm_CompanyDetailsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyDetailsVM); } }; A.CompanyDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.CompanyDetails(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2656 }; A.CompanyDetailsVM.prototype = { get$company() { return this.company; } }; A.CompanyDetailsVM_fromStore_closure.prototype = { call$1(settings) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 480 }; A.CompanyDetailsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.CompanyDetailsVM_fromStore_closure3.prototype = { call$1(context) { var completer, t1, _this = this, settingsUIState = _this.state.uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.Null); t1 = settingsUIState.company.rebuild$1(new A.CompanyDetailsVM_fromStore__closure2()); _this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t1)); break; case B.EntityType_group: completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.legacy_GroupEntity); t1 = settingsUIState.group.rebuild$1(new A.CompanyDetailsVM_fromStore__closure3()); _this.store.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t1)); break; case B.EntityType_client: completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.legacy_ClientEntity); t1 = settingsUIState.client.rebuild$1(new A.CompanyDetailsVM_fromStore__closure4()); _this.store.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t1)); break; } }, $signature: 14 }; A.CompanyDetailsVM_fromStore__closure2.prototype = { call$1(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 23 }; A.CompanyDetailsVM_fromStore__closure3.prototype = { call$1(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 406 }; A.CompanyDetailsVM_fromStore__closure4.prototype = { call$1(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 48 }; A.CompanyDetailsVM_fromStore_closure1.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CompanyDetailsVM_fromStore__closure5(this.store, context).call$0(); }, $signature: 14 }; A.CompanyDetailsVM_fromStore__closure5.prototype = { call$0() { var completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState, t2 = settingsUIState.entityType; if (t2 === B.EntityType_company && settingsUIState.company.settings.countryId == null) { t1 = _this.context; t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "please_select_a_country"); A.showErrorDialog(false, t1, t2 == null ? "" : t2); return; } switch (t2) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.CompanyDetailsVM_fromStore_closure2.prototype = { call$2(context, multipartFile) { var completer, type = this.state.uiState.settingsUIState.entityType, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "uploaded_logo"); if (t1 == null) t1 = ""; completer = A.snackBarCompleter(context, t1, false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.UploadLogoRequest(completer, multipartFile, type)); }, $signature: 96 }; A.CompanyDetailsVM_fromStore_closure4.prototype = { call$1(context) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = this.store; if (t1.userCompanyStates._list[t2].paymentTermState.list._list.length === 0) t3.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "payment_term/edit", false, _null)); else t3.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "payment_terms", false, _null)); }, $signature: 14 }; A.CompanyDetailsVM_fromStore_closure5.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile)); t1.then$1$1(0, new A.CompanyDetailsVM_fromStore__closure0(context), type$.Null).catchError$1(new A.CompanyDetailsVM_fromStore__closure1(context)); }, $signature: 96 }; A.CompanyDetailsVM_fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.CompanyDetailsVM_fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.CompanyDetailsVM_fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.CompanyDetailsVM_fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.CompanyDetailsVM_fromStore_closure6.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.CompanyDetailsVM_fromStore__closure(t2), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.CompanyDetailsVM_fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 103 }; A.CreditCardsAndBanks.prototype = { createState$0() { return new A._CreditCardsAndBanksState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._CreditCardsAndBanksState.prototype = { initState$0() { this.super$State$initState(); this._credit_cards_and_banks$_controller = A.TabController$(null, 0, 3, this); }, dispose$0(_) { var _this = this; _this._credit_cards_and_banks$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._credit_cards_and_banks$_controllers, new A._CreditCardsAndBanksState_dispose_closure(_this)); _this.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { var _this = this, t1 = A._setArrayType([_this._credit_cards_and_banks$_nameController], type$.JSArray_legacy_TextEditingController); _this._credit_cards_and_banks$_controllers = t1; B.JSArray_methods.forEach$1(t1, new A._CreditCardsAndBanksState_didChangeDependencies_closure(_this)); B.JSArray_methods.forEach$1(_this._credit_cards_and_banks$_controllers, new A._CreditCardsAndBanksState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _credit_cards_and_banks$_onChanged$0() { }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "credit_cards_and_banks"); if (t1 == null) t1 = ""; return A.EditScaffold$(_null, _null, new A.SizedBox(_null, _null, _null, _null), _null, _null, _null, false, _null, _null, _null, _null, t1); } }; A._CreditCardsAndBanksState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._CreditCardsAndBanksState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); }, $signature: 12 }; A._CreditCardsAndBanksState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); }, $signature: 12 }; A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CreditCardsAndBanksScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CreditCardsAndBanksScreen_build_closure(), A.credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditCardsAndBanksVM); } }; A.CreditCardsAndBanksScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.CreditCardsAndBanks(null); }, $signature: 2657 }; A.CreditCardsAndBanksVM.prototype = {}; A.CustomFields.prototype = { createState$0() { return new A._CustomFieldsState(null, null, B._StateLifecycle_0); } }; A._CustomFieldsState.prototype = { initState$0() { var state, settingsUIState, _this = this, t1 = {}; _this.super$State$initState(); _this._custom_fields$_focusNode = A.FocusScopeNode$(true, null, false); state = _this._widget.viewModel.state; t1.tabs = 4; B.JSArray_methods.forEach$1(A._setArrayType([B.EntityType_invoice, B.EntityType_payment, B.EntityType_task, B.EntityType_vendor, B.EntityType_expense, B.EntityType_project], type$.JSArray_legacy_EntityType), new A._CustomFieldsState_initState_closure(t1, state)); settingsUIState = state.uiState.settingsUIState; t1 = t1.tabs; t1 = A.TabController$(null, settingsUIState.tabIndex, t1, _this); _this._custom_fields$_controller = t1; t1.addListener$1(0, _this.get$_custom_fields$_onTabChanged()); }, _custom_fields$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._custom_fields$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._custom_fields$_focusNode.dispose$0(0); _this._custom_fields$_controller.removeListener$1(0, _this.get$_custom_fields$_onTabChanged()); _this._custom_fields$_controller.dispose$0(0); _this.super$__CustomFieldsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = t2._list[t4].userCompany.company; t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t2 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t2), "custom_fields"); if (t5 == null) t5 = ""; t6 = viewModel.onSavePressed; t3 = t3.settingsUIState.updatedAt; t7 = _this._custom_fields$_controller; t8 = type$.JSArray_legacy_Widget; t9 = A._setArrayType([A.Tab$(_null, t1.get$company()), A.Tab$(_null, t1.get$clients(t1)), A.Tab$(_null, t1.get$products())], t8); if (company.isModuleEnabled$1(B.EntityType_invoice)) t9.push(A.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(B.EntityType_payment)) t9.push(A.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(B.EntityType_project)) t9.push(A.Tab$(_null, t1.get$projects())); if (company.isModuleEnabled$1(B.EntityType_task)) t9.push(A.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(B.EntityType_vendor)) t9.push(A.Tab$(_null, t1.get$vendors())); if (company.isModuleEnabled$1(B.EntityType_expense)) t9.push(A.Tab$(_null, t1.get$expenses())); t1 = J.$index$asx(t4.$index(0, t2), "users"); t9.push(A.Tab$(_null, t1 == null ? "" : t1)); t1 = A.TabBar$(t7, _null, true, new A.ValueKey(t3, type$.ValueKey_legacy_int), _null, t9); t2 = _this._custom_fields$_controller; t3 = $.$get$_CustomFieldsState__formKey(); t4 = _this._custom_fields$_focusNode; t7 = A._setArrayType([new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "company", _null)], t8), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "client", _null), new A.CustomFieldsSettings(viewModel, false, "contact", _null)], t8), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "product", _null)], t8), _null, _null, _null)], t8); if (company.isModuleEnabled$1(B.EntityType_invoice)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "invoice", _null), new A.CustomFieldsSettings(viewModel, true, "surcharge", _null)], t8), _null, _null, _null)); if (company.isModuleEnabled$1(B.EntityType_payment)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "payment", _null)], t8), _null, _null, _null)); if (company.isModuleEnabled$1(B.EntityType_project)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "project", _null)], t8), _null, _null, _null)); if (company.isModuleEnabled$1(B.EntityType_task)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "task", _null)], t8), _null, _null, _null)); if (company.isModuleEnabled$1(B.EntityType_vendor)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "vendor", _null)], t8), _null, _null, _null)); if (company.isModuleEnabled$1(B.EntityType_expense)) t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "expense", _null)], t8), _null, _null, _null)); t7.push(new A.ScrollableListView(A._setArrayType([new A.CustomFieldsSettings(viewModel, false, "user", _null)], t8), _null, _null, _null)); return A.EditScaffold$(_null, t1, new A.AppTabForm(t4, t3, t7, t2, _null, _null), _null, _null, _null, false, _null, _null, t6, _null, t5); } }; A._CustomFieldsState_initState_closure.prototype = { call$1(entityType) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (t2._list[t1].userCompany.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, $signature: 191 }; A.CustomFieldsSettings.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), company = _this.viewModel.company, t2 = _this.fieldType, t3 = t2 + "_field", t4 = t1.lookup$1(t3), t5 = company.customFields._map$_map, t6 = _this.showChargeTaxes; return A.FormCard$(_null, A._setArrayType([new A.CustomFormField(t4, t5.$index(0, t2 + "1"), t6, company.enableCustomSurchargeTaxes1, new A.CustomFieldsSettings_build_closure(_this, company), new A.CustomFieldsSettings_build_closure0(_this, company), _null), new A.CustomFormField(t1.lookup$1(t3), t5.$index(0, t2 + "2"), t6, company.enableCustomSurchargeTaxes2, new A.CustomFieldsSettings_build_closure1(_this, company), new A.CustomFieldsSettings_build_closure2(_this, company), _null), new A.CustomFormField(t1.lookup$1(t3), t5.$index(0, t2 + "3"), t6, company.enableCustomSurchargeTaxes3, new A.CustomFieldsSettings_build_closure3(_this, company), new A.CustomFieldsSettings_build_closure4(_this, company), _null), new A.CustomFormField(t1.lookup$1(t3), t5.$index(0, t2 + "4"), t6, company.enableCustomSurchargeTaxes4, new A.CustomFieldsSettings_build_closure5(_this, company), new A.CustomFieldsSettings_build_closure6(_this, company), _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null, false, _null); } }; A.CustomFieldsSettings_build_closure.prototype = { call$1(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure6(t1, value))); }, $signature: 5 }; A.CustomFieldsSettings_build__closure6.prototype = { call$1(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "1", this.value); return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure0.prototype = { call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure5(value))); }, $signature: 10 }; A.CustomFieldsSettings_build__closure5.prototype = { call$1(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes1 = this.value; return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure1.prototype = { call$1(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure4(t1, value))); }, $signature: 5 }; A.CustomFieldsSettings_build__closure4.prototype = { call$1(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "2", this.value); return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure2.prototype = { call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure3(value))); }, $signature: 10 }; A.CustomFieldsSettings_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes2 = this.value; return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure3.prototype = { call$1(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure2(t1, value))); }, $signature: 5 }; A.CustomFieldsSettings_build__closure2.prototype = { call$1(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "3", this.value); return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure4.prototype = { call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure1(value))); }, $signature: 10 }; A.CustomFieldsSettings_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes3 = this.value; return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure5.prototype = { call$1(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure0(t1, value))); }, $signature: 5 }; A.CustomFieldsSettings_build__closure0.prototype = { call$1(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "4", this.value); return b; }, $signature: 23 }; A.CustomFieldsSettings_build_closure6.prototype = { call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure(value))); }, $signature: 10 }; A.CustomFieldsSettings_build__closure.prototype = { call$1(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes4 = this.value; return b; }, $signature: 23 }; A.CustomFormField.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._CustomFormFieldState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, onTaxesChanged$1(arg0) { return this.onTaxesChanged.call$1(arg0); }, get$value(receiver) { return this.value; } }; A._CustomFormFieldState.prototype = { dispose$0(_) { B.JSArray_methods.forEach$1(this._custom_fields$_controllers, new A._CustomFormFieldState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0() { var parts, _this = this, _s16_ = "single_line_text", t1 = _this._customFieldController, t2 = _this._optionsController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._custom_fields$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A._CustomFormFieldState_didChangeDependencies_closure(_this)); t3 = _this._widget.value; if ((t3 == null ? "" : t3).length !== 0) if (J.contains$1$asx(t3, "|")) { parts = t3.split("|"); t1.set$text(0, parts[0]); t1 = parts[1]; switch (t1) { case "single_line_text": _this._fieldType = _s16_; break; case "date": _this._fieldType = "date"; break; case "switch": _this._fieldType = "switch"; break; default: _this._fieldType = "dropdown"; t2.set$text(0, t1); break; } } else { _this._fieldType = "multi_line_text"; t1.set$text(0, t3); } else t1.set$text(0, t3); B.JSArray_methods.forEach$1(_this._custom_fields$_controllers, new A._CustomFormFieldState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _custom_fields$_onChanged$0() { var t1, t2, _this = this, value = J.trim$0$s(_this._customFieldController._change_notifier$_value.text); if (value.length === 0) { t1 = _this._widget; t2 = t1.value; if ((t2 == null ? "" : t2).length !== 0) t1.onChanged$1(""); return; } if (B.JSArray_methods.contains$1(A._setArrayType(["single_line_text", "date", "switch"], type$.JSArray_legacy_String), _this._fieldType)) value = value + "|" + A.S(_this._fieldType); else if (_this._fieldType === "dropdown") value = value + "|" + new A.MappedListIterable(A._setArrayType(_this._optionsController._change_notifier$_value.text.split(","), type$.JSArray_String), new A._CustomFormFieldState__onChanged_closure(), type$.MappedListIterable_of_String_and_legacy_String).join$1(0, ","); _this._widget.onChanged$1(value); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, _s16_ = "single_line_text", _s15_ = "multi_line_text", _s8_ = "dropdown", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.JSArray_legacy_Widget, t3 = A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.DecoratedFormField$(false, _null, false, false, _this._customFieldController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _this._widget.label, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)], t2); if (_this._widget.showTaxes) { t4 = A.Theme_of(context).colorScheme; t5 = _this._widget.taxesEnabled; t4 = A.Checkbox$(t4.secondary, false, _null, _null, new A._CustomFormFieldState_build_closure(), _null, _null, false, t5); t1.toString; t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "charge_taxes"); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(16, _null, _null, _null), A.InkWell$(false, _null, true, A.Row$(A._setArrayType([new A.IgnorePointer(true, _null, t4, _null), A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.SizedBox(16, _null, _null, _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._CustomFormFieldState_build_closure0(_this), _null, _null, _null, _null, _null, _null)], t2)); } else { t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t4.$index(0, t5), "field_type"); if (t6 == null) t6 = ""; t7 = _this._fieldType; t8 = J.$index$asx(t4.$index(0, t5), _s16_); t9 = type$.legacy_String; t8 = A.DropdownMenuItem$(A.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s16_, t9); t10 = J.$index$asx(t4.$index(0, t5), _s15_); t10 = A.DropdownMenuItem$(A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s15_, t9); t11 = J.$index$asx(t4.$index(0, t5), "switch"); t11 = A.DropdownMenuItem$(A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "switch", t9); t5 = J.$index$asx(t4.$index(0, t5), _s8_); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(16, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.AppDropdownButton$(_null, "", true, A._setArrayType([t8, t10, t11, A.DropdownMenuItem$(A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s8_, t9), A.DropdownMenuItem$(A.Text$(t1.get$date(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "date", t9)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t6, new A._CustomFormFieldState_build_closure1(_this), _null, false, t7, t9), _null)], t2)); } t2 = A._setArrayType([A.Row$(t3, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t2); if (_this._fieldType === "dropdown") { t3 = t1.get$options(t1); t2.push(new A.Flexible(1, B.FlexFit_1, A.DecoratedFormField$(false, _null, false, false, _this._optionsController, _null, true, _null, t1.get$commaSeparatedList(), _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)); } t2.push(new A.SizedBox(_null, 16, _null, _null)); return A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } }; A._CustomFormFieldState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_custom_fields$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._CustomFormFieldState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_custom_fields$_onChanged()); }, $signature: 12 }; A._CustomFormFieldState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_custom_fields$_onChanged()); }, $signature: 12 }; A._CustomFormFieldState__onChanged_closure.prototype = { call$1(part) { return J.trim$0$s(part); }, $signature: 15 }; A._CustomFormFieldState_build_closure.prototype = { call$1(value) { return null; }, $signature: 20 }; A._CustomFormFieldState_build_closure0.prototype = { call$0() { var t1 = this.$this._widget; return t1.onTaxesChanged$1(!t1.taxesEnabled); }, $signature: 9 }; A._CustomFormFieldState_build_closure1.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._CustomFormFieldState_build__closure(t1, value)); }, $signature: 7 }; A._CustomFormFieldState_build__closure.prototype = { call$0() { var t1 = this.$this, t2 = this.value; t1._fieldType = t2; if (!J.$eq$(t2, "dropdown")) t1._optionsController.set$text(0, ""); t1._custom_fields$_onChanged$0(); }, $signature: 1 }; A.__CustomFieldsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.CustomFieldsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.CustomFieldsScreen_build_closure(), A.custom_fields_vm_CustomFieldsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CustomFieldsVM); } }; A.CustomFieldsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.CustomFields(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2658 }; A.CustomFieldsVM.prototype = { get$company() { return this.company; } }; A.CustomFieldsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.CustomFieldsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CustomFieldsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.CustomFieldsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.DataVisualizations.prototype = { createState$0() { return new A._DataVisualizationsState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._DataVisualizationsState.prototype = { dispose$0(_) { B.JSArray_methods.forEach$1(this._data_visualizations$_controllers, new A._DataVisualizationsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0() { var _this = this, t1 = A._setArrayType([_this._data_visualizations$_firstNameController], type$.JSArray_legacy_TextEditingController); _this._data_visualizations$_controllers = t1; B.JSArray_methods.forEach$1(t1, new A._DataVisualizationsState_didChangeDependencies_closure(_this)); B.JSArray_methods.forEach$1(_this._data_visualizations$_controllers, new A._DataVisualizationsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _data_visualizations$_onChanged$0() { }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "data_visualizations"); if (t1 == null) t1 = ""; return A.EditScaffold$(_null, _null, new A.SizedBox(_null, _null, _null, _null), _null, _null, _null, false, _null, _null, _null, _null, t1); } }; A._DataVisualizationsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_data_visualizations$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._DataVisualizationsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_data_visualizations$_onChanged()); }, $signature: 12 }; A._DataVisualizationsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_data_visualizations$_onChanged()); }, $signature: 12 }; A.DataVisualizationsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DataVisualizationsScreen_build_closure(), A.data_visualizations_vm_DataVisualizationsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DataVisualizationsVM); } }; A.DataVisualizationsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.DataVisualizations(null); }, $signature: 2659 }; A.DataVisualizationsVM.prototype = {}; A.DeviceSettings.prototype = { createState$0() { return new A._DeviceSettingsState(new A.LabeledGlobalKey("_deviceSettings", type$.LabeledGlobalKey_legacy_FormState), null, null, B._StateLifecycle_0); } }; A._DeviceSettingsState.prototype = { initState$0() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; _this._device_settings$_focusNode = A.FocusScopeNode$(true, null, false); t1 = A.TabController$(null, settingsUIState.tabIndex, 2, _this); _this._device_settings$_controller = t1; t1.addListener$1(0, _this.get$_device_settings$_onTabChanged()); }, _device_settings$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._device_settings$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._device_settings$_controller.removeListener$1(0, _this.get$_device_settings$_onTabChanged()); _this._device_settings$_controller.dispose$0(0); _this._device_settings$_focusNode.dispose$0(0); _this.super$__DeviceSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, _s14_ = "click_selected", _s2_ = "en", _s12_ = "hide_preview", _s12_0 = "after_saving", _s11_ = "view_record", _s11_0 = "extra_large", _s22_ = "enable_flexible_search", _s27_ = "enable_flexible_search_help", _s15_ = "enable_tooltips", _s20_ = "enable_tooltips_help", _s19_ = "enable_touch_events", _s24_ = "enable_touch_events_help", _s16_ = "show_pdf_preview", _s21_ = "show_pdf_preview_help", _s20_0 = "alternate_pdf_viewer", _s25_ = "alternate_pdf_viewer_help", _s12_1 = "persist_data", _s17_ = "persist_data_help", _s16_0 = "end_all_sessions", _s18_ = "status_color_theme", _s16_1 = "load_color_theme", _s9_ = "clear_all", _s8_ = "contrast", _s13_ = "export_colors", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, prefState = state.prefState, t2 = A.getLayout(context); t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t1.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "device_settings"); t5 = A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = state.uiState.settingsUIState.updatedAt; t7 = type$.JSArray_legacy_Widget; t5 = A.AppBar$(_null, _null, t2 === B.AppLayout_mobile, _null, _null, A.TabBar$(_this._device_settings$_controller, _null, false, new A.ValueKey(t6, type$.ValueKey_legacy_int), _null, A._setArrayType([A.Tab$(_null, t1.get$options(t1)), A.Tab$(_null, t1.get$colors())], t7)), 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, 1, _null); t6 = _this._device_settings$_controller; t2 = _this._device_settings$_focusNode; t8 = J.$index$asx(t3.$index(0, t4), "layout"); if (t8 == null) t8 = ""; t9 = prefState.appLayout; t10 = t1.get$mobile(); t8 = A._setArrayType([A.BoolDropdownButton$(t1.get$desktop(), t10, _null, _null, t8, _null, new A._DeviceSettingsState_build_closure(viewModel, context), t9 === B.AppLayout_mobile)], t7); if (t9 === B.AppLayout_desktop) { t9 = t1.get$menuSidebar(); t10 = prefState.menuSidebarMode; t11 = t1.get$float(t1); t12 = J.$index$asx(t3.$index(0, t4), "collapse"); if (t12 == null) t12 = ""; t10 = A.BoolDropdownButton$(t12, t11, _null, _null, t9, _null, new A._DeviceSettingsState_build_closure0(viewModel, context), t10 === B.AppSidebarMode_float); t9 = J.$index$asx(t3.$index(0, t4), "history_sidebar"); if (t9 == null) t9 = ""; t11 = prefState.historySidebarMode; t12 = t1.get$float(t1); t13 = J.$index$asx(t3.$index(0, t4), "show_or_hide"); if (t13 == null) t13 = ""; B.JSArray_methods.addAll$1(t8, A._setArrayType([t10, A.BoolDropdownButton$(t13, t12, _null, _null, t9, _null, new A._DeviceSettingsState_build_closure1(viewModel, context), t11 === B.AppSidebarMode_float)], t7)); } if (A.getLayout(context) === B.AppLayout_desktop) { t9 = J.$index$asx(t3.$index(0, t4), _s14_); if (t9 == null) t9 = J.$index$asx(t3.$index(0, _s2_), _s14_); t10 = prefState.tapSelectedToEdit; t11 = t1.get$editRecord(); t12 = J.$index$asx(t3.$index(0, t4), _s12_); if (t12 == null) t12 = J.$index$asx(t3.$index(0, _s2_), _s12_); t10 = A.BoolDropdownButton$(t12, t11, _null, _null, t9, _null, new A._DeviceSettingsState_build_closure2(viewModel, context), t10); t9 = J.$index$asx(t3.$index(0, t4), _s12_0); if (t9 == null) t9 = J.$index$asx(t3.$index(0, _s2_), _s12_0); t11 = prefState.editAfterSaving; t12 = t1.get$editRecord(); t13 = J.$index$asx(t3.$index(0, t4), _s11_); if (t13 == null) t13 = J.$index$asx(t3.$index(0, _s2_), _s11_); B.JSArray_methods.addAll$1(t8, A._setArrayType([t10, A.BoolDropdownButton$(t13, t12, _null, _null, t9, _null, new A._DeviceSettingsState_build_closure3(viewModel, context), t11)], t7)); } else { t9 = J.$index$asx(t3.$index(0, t4), "list_long_press"); if (t9 == null) t9 = ""; t10 = prefState.longPressSelectionIsDefault; t11 = J.$index$asx(t3.$index(0, t4), "show_actions"); if (t11 == null) t11 = ""; t12 = J.$index$asx(t3.$index(0, t4), "start_multiselect"); if (t12 == null) t12 = ""; t8.push(A.BoolDropdownButton$(t12, t11, _null, _null, t9, _null, new A._DeviceSettingsState_build_closure4(viewModel, context), !t10)); } t8 = A.FormCard$(_null, t8, _null, _null, false, _null, false, _null); t9 = t1.get$fontSize(t1); t10 = prefState.textScaleFactor; t11 = J.$index$asx(t3.$index(0, t4), "small"); t12 = type$.legacy_double; t11 = A.DropdownMenuItem$(A.Text$(t11 == null ? J.$index$asx(t3.$index(0, _s2_), "small") : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 0.8, t12); t13 = J.$index$asx(t3.$index(0, t4), "normal"); t13 = A.DropdownMenuItem$(A.Text$(t13 == null ? J.$index$asx(t3.$index(0, _s2_), "normal") : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 1, t12); t14 = J.$index$asx(t3.$index(0, t4), "large"); t14 = A.DropdownMenuItem$(A.Text$(t14 == null ? J.$index$asx(t3.$index(0, _s2_), "large") : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 1.2, t12); t15 = J.$index$asx(t3.$index(0, t4), _s11_0); t9 = A.AppDropdownButton$(_null, "", true, A._setArrayType([t11, t13, t14, A.DropdownMenuItem$(A.Text$(t15 == null ? J.$index$asx(t3.$index(0, _s2_), _s11_0) : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 1.4, t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_double), _null, t9, new A._DeviceSettingsState_build_closure5(viewModel, context), _null, false, t10, t12); t10 = A.FutureBuilder$(new A._DeviceSettingsState_build_closure6(t1, prefState, viewModel), viewModel.authenticationSupported, type$.legacy_bool); t11 = J.$index$asx(t3.$index(0, t4), _s22_); t11 = A.Text$(t11 == null ? J.$index$asx(t3.$index(0, _s2_), _s22_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = J.$index$asx(t3.$index(0, t4), _s27_); t12 = A.Text$(t12 == null ? J.$index$asx(t3.$index(0, _s2_), _s27_) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = prefState.enableFlexibleSearch; t13 = A._setArrayType([new A.Padding(B.EdgeInsets_0_0_0_10, t9, _null), t10, A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure7(viewModel, context), A.Icon$(B.IconData_58727_MaterialIcons_null_false, _null, _null), t12, t11, t13)], t7); if (A.getLayout(context) === B.AppLayout_desktop) { t9 = J.$index$asx(t3.$index(0, t4), _s15_); t9 = A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s15_) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = J.$index$asx(t3.$index(0, t4), _s20_); t10 = A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s20_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = prefState.enableTooltips; t11 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure8(viewModel, context), A.Icon$(B._MdiIconData_AmO1, _null, _null), t10, t9, t11); t9 = J.$index$asx(t3.$index(0, t4), _s19_); t9 = A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s19_) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = J.$index$asx(t3.$index(0, t4), _s24_); t10 = A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s24_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = prefState.enableTouchEvents; t12 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure9(viewModel, context), A.Icon$(B.IconData_58992_MaterialIcons_null_false, _null, _null), t10, t9, t12); t9 = J.$index$asx(t3.$index(0, t4), _s16_); t9 = A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s16_) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = J.$index$asx(t3.$index(0, t4), _s21_); t10 = A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s21_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = prefState.showPdfPreview; t14 = A._setArrayType([t11, t12, A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure10(viewModel, context), A.Icon$(B._MdiIconData_MO91, _null, _null), t10, t9, t14)], t7); t9 = J.$index$asx(t3.$index(0, t4), _s20_0); t9 = A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s20_0) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = J.$index$asx(t3.$index(0, t4), _s25_); t10 = A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s25_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = prefState.enableJSPDF; t14.push(A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure11(viewModel, context), A.Icon$(B._MdiIconData_MO91, _null, _null), t10, t9, t11)); B.JSArray_methods.addAll$1(t13, t14); } t9 = J.$index$asx(t3.$index(0, t4), _s12_1); t9 = A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s12_1) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = J.$index$asx(t3.$index(0, t4), _s17_); t10 = A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s17_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = prefState.persistData; t13.push(A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure12(viewModel, context), A.Icon$(B.IconData_58705_MaterialIcons_null_false, _null, _null), t10, t9, t11)); t13 = A.FormCard$(_null, t13, _null, _null, false, _null, false, _null); t11 = A.Icon$(B.IconData_58291_MaterialIcons_null_false, _null, _null); t9 = J.$index$asx(t3.$index(0, t4), _s16_0); t8 = A._setArrayType([t8, t13, A.FormCard$(_null, A._setArrayType([new A.Builder(new A._DeviceSettingsState_build_closure13(t1, state, viewModel), _null), A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t11, _null, new A._DeviceSettingsState_build_closure14(context, viewModel), false, _null, _null, _null, _null, A.Text$(t9 == null ? J.$index$asx(t3.$index(0, _s2_), _s16_0) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)], t7), _null, _null, false, _null, true, _null)], t7); t9 = J.$index$asx(t3.$index(0, t4), "dark_mode"); t9 = A.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = prefState.enableDarkMode; t11 = A.Icon$(B.IconData_58236_MaterialIcons_null_false, _null, _null); t10 = A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build_closure15(viewModel, context), t11, _null, t9, t10); t9 = J.$index$asx(t3.$index(0, t4), _s18_); if (t9 == null) t9 = J.$index$asx(t3.$index(0, _s2_), _s18_); t11 = prefState.colorTheme; t12 = $.$get$colorThemesMap(); t13 = A._instanceType(t12)._eval$1("LinkedHashMapKeyIterable<1>"); t14 = type$.legacy_DropdownMenuItem_legacy_String; t13 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t12, t13), new A._DeviceSettingsState_build_closure16(), t13._eval$1("Iterable.E"), t14); t12 = type$.legacy_String; t11 = A.FormCard$(_null, A._setArrayType([t10, new A.SizedBox(_null, 16, _null, _null), A.AppDropdownButton$(_null, "", true, A.List_List$of(A.List_List$of(t13, true, A._instanceType(t13)._eval$1("Iterable.E")), true, t14), _null, t9, new A._DeviceSettingsState_build_closure17(viewModel, context), _null, false, t11, t12)], t7), _null, _null, false, _null, false, _null); t9 = J.$index$asx(t3.$index(0, t4), _s16_1); if (t9 == null) t9 = J.$index$asx(t3.$index(0, _s2_), _s16_1); t10 = J.$index$asx(t3.$index(0, t4), _s9_); t10 = A.DropdownMenuItem$(A.Text$(t10 == null ? J.$index$asx(t3.$index(0, _s2_), _s9_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s9_, t12); t13 = J.$index$asx(t3.$index(0, t4), _s8_); t9 = A._setArrayType([A.AppDropdownButton$(_null, "", true, A._setArrayType([t10, A.DropdownMenuItem$(A.Text$(t13 == null ? J.$index$asx(t3.$index(0, _s2_), _s8_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s8_, t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t9, new A._DeviceSettingsState_build_closure18(viewModel, context, prefState, state), _null, false, "", t12)], t7); t10 = type$.MappedListIterable_of_legacy_String_and_legacy_FormColorPicker; B.JSArray_methods.addAll$1(t9, A.List_List$of(new A.MappedListIterable(B.List_soA, new A._DeviceSettingsState_build_closure19(t1, prefState, viewModel, context), t10), true, t10._eval$1("ListIterable.E"))); t9.push(new A.SizedBox(_null, 20, _null, _null)); t4 = J.$index$asx(t3.$index(0, t4), _s13_); t3 = t4 == null ? J.$index$asx(t3.$index(0, _s2_), _s13_) : t4; t9.push(A.Row$(A._setArrayType([A.Expanded$(A.OutlinedButton$(A.Text$(t3.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._DeviceSettingsState_build_closure20(prefState, t1), _null), 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.OutlinedButton$(A.Text$(t1.get$importColors().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._DeviceSettingsState_build_closure21(context, t1, prefState, viewModel), _null), 1)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); return A.Scaffold$(t5, _null, new A.AppTabForm(t2, _this._device_settings$_formKey, A._setArrayType([new A.ScrollableListView(t8, _null, _null, _null), new A.ScrollableListView(A._setArrayType([t11, A.FormCard$(_null, t9, _null, _null, false, _null, true, _null)], t7), _null, _null, _null)], t7), t6, _null, _null), _null, _null, _null, _null, _null); } }; A._DeviceSettingsState_build_closure.prototype = { call$1(value) { var t1 = value ? B.AppLayout_mobile : B.AppLayout_desktop; this.viewModel.onLayoutChanged.call$2(this.context, t1); }, $signature: 20 }; A._DeviceSettingsState_build_closure0.prototype = { call$1(value) { var t1 = value ? B.AppSidebarMode_float : B.AppSidebarMode_collapse; this.viewModel.onMenuModeChanged.call$2(this.context, t1); }, $signature: 20 }; A._DeviceSettingsState_build_closure1.prototype = { call$1(value) { var t1 = value ? B.AppSidebarMode_float : B.AppSidebarMode_visible; this.viewModel.onHistoryModeChanged.call$2(this.context, t1); }, $signature: 20 }; A._DeviceSettingsState_build_closure2.prototype = { call$1(value) { this.viewModel.onTapSelectedChanged.call$2(this.context, value); }, $signature: 20 }; A._DeviceSettingsState_build_closure3.prototype = { call$1(value) { this.viewModel.onEditAfterSavingChanged.call$2(this.context, value); }, $signature: 20 }; A._DeviceSettingsState_build_closure4.prototype = { call$1(value) { this.viewModel.onLongPressSelectionIsDefault.call$2(this.context, !value); }, $signature: 20 }; A._DeviceSettingsState_build_closure5.prototype = { call$1(value) { var t1 = this.context; this.viewModel.onTextScaleFactorChanged.call$2(t1, value); t1.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 7 }; A._DeviceSettingsState_build_closure6.prototype = { call$2(context, snapshot) { var t2, t3, _null = null, t1 = snapshot.data; if (t1 != null && J.$eq$(t1, true)) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localization.localeCode), "biometric_authentication"); t1 = A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = this.prefState.requireAuthentication; t3 = A.Icon$(t2 ? B._MdiIconData_wMy : B._MdiIconData_ouN, _null, _null); return A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._DeviceSettingsState_build__closure7(this.viewModel, context), t3, _null, t1, t2); } else return new A.SizedBox(_null, _null, _null, _null); }, $signature: 2660 }; A._DeviceSettingsState_build__closure7.prototype = { call$1(value) { return this.viewModel.onRequireAuthenticationChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure7.prototype = { call$1(value) { return this.viewModel.onEnableFlexibleSearchChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure8.prototype = { call$1(value) { return this.viewModel.onEnableTooltipsChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure9.prototype = { call$1(value) { return this.viewModel.onEnableTouchEventsChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure10.prototype = { call$1(value) { return this.viewModel.onShowPdfChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure11.prototype = { call$1(value) { return this.viewModel.onEnableJSPDFChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure12.prototype = { call$1(value) { return this.viewModel.onPersistDataChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure13.prototype = { call$1(context) { var _null = null, t1 = this.localization; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_58644_MaterialIcons_null_false, _null, _null), _null, new A._DeviceSettingsState_build__closure5(this.viewModel, context), false, _null, _null, new A.LiveText(_null, new A._DeviceSettingsState_build__closure6(this.state, t1), _null, _null), _null, A.Text$(t1.get$refreshData(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null); }, $signature: 2661 }; A._DeviceSettingsState_build__closure6.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = t1.userCompanyStates._list; if (t3[t2].lastUpdated === 0) return ""; return J.$add$ansx(this.localization.get$lastUpdated(), ": ") + A.format(A.convertTimestampToDate(B.JSNumber_methods.round$0(t3[t2].lastUpdated / 1000)), A.localeSelector(t1, true)); }, $signature: 127 }; A._DeviceSettingsState_build__closure5.prototype = { call$0() { this.viewModel.onRefreshTap.call$1(this.context); }, $signature: 1 }; A._DeviceSettingsState_build_closure14.prototype = { call$0() { var t1 = this.context; A.confirmCallback(false, new A._DeviceSettingsState_build__closure4(this.viewModel, t1), t1, null, false, null); }, $signature: 1 }; A._DeviceSettingsState_build__closure4.prototype = { call$1(_) { this.viewModel.onLogoutTap.call$1(this.context); }, $signature: 11 }; A._DeviceSettingsState_build_closure15.prototype = { call$1(value) { return this.viewModel.onDarkModeChanged.call$2(this.context, value); }, $signature: 10 }; A._DeviceSettingsState_build_closure16.prototype = { call$1(key) { var _null = null; return A.DropdownMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$(A.toTitleCase(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorInfo, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorPrimary, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorSuccess, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorWarning, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorDanger, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, key, type$.legacy_String); }, $signature: 43 }; A._DeviceSettingsState_build_closure17.prototype = { call$1(value) { return this.viewModel.onColorThemeChanged.call$2(this.context, value); }, $signature: 12 }; A._DeviceSettingsState_build_closure18.prototype = { call$1(value) { var _this = this, t1 = J.getInterceptor$(value); if (t1.$eq(value, "clear_all")) _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new A._DeviceSettingsState_build__closure2())); else if (t1.$eq(value, "contrast")) _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new A._DeviceSettingsState_build__closure3(_this.state.prefState.enableDarkMode))); }, $signature: 7 }; A._DeviceSettingsState_build__closure2.prototype = { call$1(b) { b.get$_safeMap().clear$0(0); return b; }, $signature: 202 }; A._DeviceSettingsState_build__closure3.prototype = { call$1(b) { var t1 = this.enableDarkMode ? "#090909" : "#F9F9F9", t2 = type$.legacy_String; return b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal(["sidebar_active_background_color", "#2F2E2E", "sidebar_active_font_color", "#FFFFFF", "sidebar_inactive_background_color", "#454544", "sidebar_inactive_font_color", "#FFFFFF", "invoice_header_background_color", "#777777", "invoice_header_font_color", "#FFFFFF", "table_alternate_row_background_color", t1], t2, t2)); }, $signature: 2662 }; A._DeviceSettingsState_build_closure19.prototype = { call$1(selector) { var _this = this, t1 = _this.localization.lookup$1(selector), t2 = _this.prefState; return A.FormColorPicker$(t2.customColors._map$_map.$index(0, selector), t1, new A._DeviceSettingsState_build__closure1(_this.viewModel, _this.context, t2, selector)); }, $signature: 2663 }; A._DeviceSettingsState_build__closure1.prototype = { call$1(value) { var _this = this; _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new A._DeviceSettingsState_build___closure0(_this.selector, value))); }, $signature: 11 }; A._DeviceSettingsState_build___closure0.prototype = { call$1(b) { var t1 = this.value; if (t1 == null) t1 = ""; b.$indexSet(0, this.selector, t1); return t1; }, $signature: 595 }; A._DeviceSettingsState_build_closure20.prototype = { call$0() { var t1 = type$.MappedListIterable_of_legacy_String_and_legacy_String, colors = A.List_List$of(new A.MappedListIterable(B.List_soA, new A._DeviceSettingsState_build__closure0(this.prefState), t1), true, t1._eval$1("ListIterable.E")); A.Clipboard_setData(new A.ClipboardData(B.JSArray_methods.join$1(colors, ","))); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", B.JSArray_methods.join$1(colors, ","))); }, $signature: 1 }; A._DeviceSettingsState_build__closure0.prototype = { call$1(selector) { var t1 = this.prefState.customColors._map$_map.$index(0, selector); return t1 == null ? "" : t1; }, $signature: 15 }; A._DeviceSettingsState_build_closure21.prototype = { call$0() { var _this = this, t1 = _this.context, t2 = _this.localization; A.fieldCallback(new A._DeviceSettingsState_build__closure(_this.prefState, _this.viewModel, t1), t1, t2.get$colors(), null, null, t2.get$importColors()); }, $signature: 1 }; A._DeviceSettingsState_build__closure.prototype = { call$1(value) { var i, t1, t2, t3, colors = A._setArrayType(value.split(","), type$.JSArray_String), customColors = this.prefState.customColors; for (i = 0; i < colors.length; ++i) { customColors.toString; t1 = customColors.$ti; t1._eval$1("_BuiltMap<1,2>")._as(customColors); t2 = customColors._mapFactory; t1 = t1._eval$1("@<1>")._bind$1(t1._rest[1]); t3 = new A.MapBuilder(t2, customColors._map$_map, customColors, t1._eval$1("MapBuilder<1,2>")); new A._DeviceSettingsState_build___closure(i, colors).call$1(t3); customColors = t3._mapOwner; if (customColors == null) { customColors = new A._BuiltMap(t2, A._lateReadCheck(t3.__MapBuilder__map, "_map"), t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BuiltMap<1,2>")); t3._mapOwner = customColors; } } this.viewModel.onCustomColorsChanged.call$2(this.context, customColors); }, $signature: 11 }; A._DeviceSettingsState_build___closure.prototype = { call$1(b) { var t1 = this.i, t2 = B.List_soA[t1]; t1 = this.colors[t1]; b.$indexSet(0, t2, t1); return t1; }, $signature: 595 }; A.__DeviceSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.DeviceSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.DeviceSettingsScreen_build_closure(), A.device_settings_vm_DeviceSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DeviceSettingsVM); } }; A.DeviceSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.DeviceSettings(viewModel, null); }, $signature: 2665 }; A.DeviceSettingsVM.prototype = {}; A.DeviceSettingsVM_fromStore_closure.prototype = { call$1(context) { return A.showRefreshDataDialog(context, true); }, $signature: 30 }; A.DeviceSettingsVM_fromStore_closure0.prototype = { call$1(context) { var t2, completer, _s18_ = "ended_all_sessions", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s18_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s18_); completer = A.snackBarCompleter(context, t1, false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.UserLogoutAll(completer)); }, $signature: 14 }; A.DeviceSettingsVM_fromStore_closure1.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure8(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure8(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2, t3; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t2 = value ? "dark" : "light"; t3 = type$.legacy_String; t2 = A.UpdateUserPreferences$(null, t2, value ? A.BuiltMap_BuiltMap(B.Map_empty0, t3, t3) : A.BuiltMap_BuiltMap(B.Map_soKdN, t3, t3), null, value, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); t1.get$_dispatchers()[0].call$1(new A.UpdatedSetting()); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure7.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure3(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure3(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, null, null, null, value, null, null, null, null, null, null, null, null, null, null, null); $async$self.store.get$_dispatchers()[0].call$1(t1); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure4.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure6(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure6(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").prefState.menuSidebarMode === value) { // goto return $async$goto = 1; break; } t2 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, null, null, null, null, value, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 590 }; A.DeviceSettingsVM_fromStore_closure5.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure5(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure5(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").prefState.historySidebarMode === value) { // goto return $async$goto = 1; break; } t2 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, value, null, null, null, null, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 590 }; A.DeviceSettingsVM_fromStore_closure8.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure2(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure2(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, value, null); $async$self.store.get$_dispatchers()[0].call$1(t1); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure14.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t2 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, value, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); t1.get$_dispatchers()[0].call$1(new A.UpdatedSetting()); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure12.prototype = { call$2(context, value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 229 }; A.DeviceSettingsVM_fromStore_closure13.prototype = { call$2(context, value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, value, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 229 }; A.DeviceSettingsVM_fromStore_closure17.prototype = { call$2(context, value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 2669 }; A.DeviceSettingsVM_fromStore_closure15.prototype = { call$2(context, value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, value, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 229 }; A.DeviceSettingsVM_fromStore_closure16.prototype = { call$2(context, value) { var _null = null, t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 229 }; A.DeviceSettingsVM_fromStore_closure6.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure4(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure4(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").prefState.colorTheme !== value) { t2 = A.UpdateUserPreferences$(null, value, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 2670 }; A.DeviceSettingsVM_fromStore_closure9.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure1(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure1(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.UpdateUserPreferences$(null, null, null, value, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); $async$self.store.get$_dispatchers()[0].call$1(t1); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure3.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure7(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure7(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (A._lateReadCheck(t1.__Store__state, "_state").prefState.appLayout === value) { // goto return $async$goto = 1; break; } t2 = A.UpdateUserPreferences$(value, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); t1.get$_dispatchers()[0].call$1(t2); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.DeviceSettingsVM_fromStore__closure(value, t1)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 2671 }; A.DeviceSettingsVM_fromStore__closure.prototype = { call$1(duration) { var t1 = this.store; if (this.value === B.AppLayout_mobile) t1.get$_dispatchers()[0].call$1(new A.ViewDashboard(false, null)); else t1.get$_dispatchers()[0].call$1(new A.ViewMainScreen()); }, $signature: 36 }; A.DeviceSettingsVM_fromStore_closure10.prototype = { call$2(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure0(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure0(context, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, e, t1, exception, authenticated, $async$exception; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start authenticated = false; $async$handler = 3; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "authenticate_to_change_setting"); if (t1 == null) t1 = ""; $async$goto = 6; return A._asyncAwait(new A.LocalAuthentication().authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs(true, t1, false, true), $async$call$2); case 6: // returning from await. authenticated = $async$result; $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = A.unwrapException($async$exception); A.print(e); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (authenticated) { t1 = A.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, value, null, null, null, null, null, null); $async$self.store.get$_dispatchers()[0].call$1(t1); } // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 221 }; A.DeviceSettingsVM_fromStore_closure18.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], exception, enable, $async$exception; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start enable = false; $async$handler = 4; $async$goto = 7; return A._asyncAwait(new A.LocalAuthentication().get$canCheckBiometrics(), $async$call$0); case 7: // returning from await. enable = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally $async$returnValue = enable; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 26 }; A.DeviceSettingsVM_fromStore_closure2.prototype = { call$2(context, customColors) { var _null = null, t1 = this.store, t2 = A.UpdateUserPreferences$(_null, _null, customColors, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1.get$_dispatchers()[0].call$1(t2); t1.get$_dispatchers()[0].call$1(new A.UpdatedSetting()); }, $signature: 613 }; A.DeviceSettingsVM_fromStore_closure11.prototype = { call$2(context, value) { var _null = null, t1 = this.store, t2 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null, _null, _null, _null, _null, _null, _null); t1.get$_dispatchers()[0].call$1(t2); if (value) t1.get$_dispatchers()[0].call$1(new A.UserLoginSuccess()); else t1.get$_dispatchers()[0].call$1(new A.ClearPersistedData()); }, $signature: 229 }; A.EmailSettings.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._EmailSettingsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._EmailSettingsState.prototype = { initState$0() { this.super$State$initState(); this._email_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, dispose$0(_) { var _this = this; _this._email_settings$_focusNode.dispose$0(0); B.JSArray_methods.forEach$1(_this._email_settings$_controllers, new A._EmailSettingsState_dispose_closure(_this)); _this.super$State$dispose(0); }, didChangeDependencies$0() { var settings, _this = this, t1 = _this._fromNameController, t2 = _this._replyToEmailController, t3 = _this._replyToNameController, t4 = _this._bccEmailController, t5 = _this._emailStyleCustomController, t6 = _this._emailSignatureController, t7 = A._setArrayType([t1, t2, t3, t4, t5, t6], type$.JSArray_legacy_TextEditingController); _this._email_settings$_controllers = t7; B.JSArray_methods.forEach$1(t7, new A._EmailSettingsState_didChangeDependencies_closure(_this)); settings = _this._widget.viewModel.settings; t1.set$text(0, settings.emailFromName); t2.set$text(0, settings.replyToEmail); t3.set$text(0, settings.replyToName); t4.set$text(0, settings.bccEmail); t5.set$text(0, settings.emailStyleCustom); t6.set$text(0, settings.emailSignature); B.JSArray_methods.forEach$1(_this._email_settings$_controllers, new A._EmailSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _email_settings$_onChanged$0() { var _this = this, settings = _this._widget.viewModel.settings.rebuild$1(new A._EmailSettingsState__onChanged_closure(_this)); if (!J.$eq$(settings, _this._widget.viewModel.settings)) _this._widget.viewModel.onSettingsChanged.call$1(settings); }, build$1(_, context) { var gmailUserIds, microsoftUserIds, gmailSendingUserId, gmailSendingUserId0, disableSave, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _list, i, t16, _this = this, _null = null, _s14_ = "email_provider", _s2_ = "en", _s28_ = "use_web_app_to_connect_gmail", _s32_ = "use_web_app_to_connect_microsoft", _s9_ = "from_name", _s9_0 = "send_time", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, t2 = $.$get$memoizedGmailUserList(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; gmailUserIds = t2.call$1(t3[t5].userState.map); microsoftUserIds = $.$get$memoizedMicrosoftUserList().call$1(t3[t5].userState.map); gmailSendingUserId = settings.gmailSendingUserId; gmailSendingUserId0 = gmailSendingUserId == null ? "" : gmailSendingUserId; t2 = settings.emailSendingMethod; if (t2 !== "default") disableSave = gmailSendingUserId0.length === 0 || gmailSendingUserId0 === "0"; else disableSave = false; t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t3.$index(0, t5), "email_settings"); if (t6 == null) t6 = ""; t7 = disableSave ? _null : viewModel.onSavePressed; t8 = $.$get$_EmailSettingsState__formKey(); t9 = _this._email_settings$_focusNode; t10 = type$.JSArray_legacy_Widget; t11 = A._setArrayType([], t10); if (state.get$isHosted()) { t4 = t4.settingsUIState.entityType; t12 = J.$index$asx(t3.$index(0, t5), _s14_); if (t12 == null) t12 = J.$index$asx(t3.$index(0, _s2_), _s14_); t13 = type$.legacy_String; t13 = A._setArrayType([A.AppDropdownButton$(_null, "", true, A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$defaultWord(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "default", t13), A.DropdownMenuItem$(A.Text$("Gmail", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "gmail", t13), A.DropdownMenuItem$(A.Text$("Microsoft - Beta", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "office365", t13)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t12, new A._EmailSettingsState_build_closure(viewModel, settings), _null, t4 !== B.EntityType_company, t2, t13)], t10); if (t2 === "gmail") if (J.get$isEmpty$asx(gmailUserIds)) { t4 = A._setArrayType([new A.SizedBox(_null, 16, _null, _null)], t10); if (A.isApple() || A.isMacOS() || A.isWindows() || A.isLinux()) { t12 = J.$index$asx(t3.$index(0, t5), _s28_); t4.push(A.Text$(t12 == null ? J.$index$asx(t3.$index(0, _s2_), _s28_) : t12, _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null)); } else t4.push(A.OutlinedButton$(A.Text$(t1.get$connectGmail().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EmailSettingsState_build_closure0(context), _null)); B.JSArray_methods.addAll$1(t13, t4); } else t13.push(new A.Padding(B.EdgeInsets_0_10_0_0, A.DynamicSelector$(true, gmailSendingUserId, gmailUserIds, B.EntityType_user, _null, _null, new A._EmailSettingsState_build_closure1(viewModel, settings), new A._EmailSettingsState_build_closure2()), _null)); if (t2 === "office365") if (J.get$isEmpty$asx(microsoftUserIds)) { t2 = A._setArrayType([new A.SizedBox(_null, 16, _null, _null)], t10); if (A.isApple() || false) { t4 = J.$index$asx(t3.$index(0, t5), _s32_); t2.push(A.Text$(t4 == null ? J.$index$asx(t3.$index(0, _s2_), _s32_) : t4, _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null)); } else t2.push(A.OutlinedButton$(A.Text$(t1.get$connectMicrosoft().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EmailSettingsState_build_closure3(context), _null)); B.JSArray_methods.addAll$1(t13, t2); } else t13.push(new A.Padding(B.EdgeInsets_0_10_0_0, A.DynamicSelector$(true, gmailSendingUserId, microsoftUserIds, B.EntityType_user, _null, _null, new A._EmailSettingsState_build_closure4(viewModel, settings), new A._EmailSettingsState_build_closure5()), _null)); B.JSArray_methods.addAll$1(t11, A._setArrayType([A.FormCard$(_null, t13, _null, B.CrossAxisAlignment_3, false, _null, false, _null)], t10)); } t2 = J.$index$asx(t3.$index(0, t5), _s9_); if (t2 == null) t2 = J.$index$asx(t3.$index(0, _s2_), _s9_); t4 = viewModel.onSavePressed; t2 = A.DecoratedFormField$(false, _null, false, false, _this._fromNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t2, _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t12 = J.$index$asx(t3.$index(0, t5), "reply_to_name"); if (t12 == null) t12 = ""; t12 = A.DecoratedFormField$(false, _null, false, false, _this._replyToNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t12, _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t13 = A.DecoratedFormField$(false, _null, false, false, _this._replyToEmailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t1.get$replyToEmail(), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t14 = t1.get$bccEmail(); t4 = A.DecoratedFormField$(false, _null, false, false, _this._bccEmailController, _null, true, _null, t1.get$commaSeparatedList(), _null, _null, false, false, _null, B.TextInputType_5_null_null, t14, _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null); t14 = J.$index$asx(t3.$index(0, t5), _s9_0); t3 = t14 == null ? J.$index$asx(t3.$index(0, _s2_), _s9_0) : t14; t14 = settings.entitySendTime; t15 = type$.legacy_int; _list = J.JSArray_JSArray$allocateGrowable(24, t15); for (i = 0; i < 24; ++i) _list[i] = i; t16 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t11.push(A.FormCard$(_null, A._setArrayType([t2, t12, t13, t4, A.AppDropdownButton$(_null, _null, true, A.List_List$of(new A.MappedListIterable(_list, new A._EmailSettingsState_build_closure6(viewModel), t16), true, t16._eval$1("ListIterable.E")), _null, t3, new A._EmailSettingsState_build_closure7(viewModel, settings), _null, true, t14, t15)], t10), _null, _null, false, _null, false, _null)); t15 = $.$get$LocalizationsProvider__localizedValues(); t14 = J.$index$asx(t15.$index(0, t5), "email_design"); t2 = t14 == null ? "" : t14; t3 = settings.emailStyle; t4 = J.$index$asx(t15.$index(0, t5), "plain"); t12 = type$.legacy_String; t12 = A._setArrayType([A.AppDropdownButton$(_null, "", true, A._setArrayType([A.DropdownMenuItem$(A.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "plain", t12), A.DropdownMenuItem$(A.Text$(t1.get$light(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "light", t12), A.DropdownMenuItem$(A.Text$(t1.get$dark(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "dark", t12), A.DropdownMenuItem$(A.Text$(t1.get$custom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "custom", t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t2, new A._EmailSettingsState_build_closure8(viewModel, settings), _null, false, t3, t12)], t10); if (t3 === "custom") { t2 = t1.get$custom(); t5 = J.$index$asx(t15.$index(0, t5), "add_body_variable_message"); B.JSArray_methods.addAll$1(t12, A._setArrayType([new A.SizedBox(_null, 10, _null, _null), A.DecoratedFormField$(false, _null, false, false, _this._emailStyleCustomController, _null, true, _null, B.JSString_methods.replaceFirst$2(t5 == null ? "" : t5, ":body", "$body"), _null, _null, false, false, _null, B.TextInputType_1_null_null, t2, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t10)); } t12.push(A.DecoratedFormField$(false, _null, false, false, _this._emailSignatureController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$emailSignature(), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t11.push(A.FormCard$(_null, t12, _null, _null, false, _null, false, _null)); t11.push(A.FormCard$(_null, A._setArrayType([A.BoolDropdownButton$(_null, _null, _null, B._MdiIconData_MO91, t1.get$attachPdf(), _null, new A._EmailSettingsState_build_closure9(viewModel, settings), settings.pdfEmailAttachment), A.BoolDropdownButton$(_null, _null, _null, B._MdiIconData_jVE, t1.get$attachDocuments(), _null, new A._EmailSettingsState_build_closure10(viewModel, settings), settings.documentEmailAttachment), A.BoolDropdownButton$(_null, _null, _null, B._MdiIconData_aAu0, t1.get$attachUbl(), _null, new A._EmailSettingsState_build_closure11(viewModel, settings), settings.ublEmailAttachment)], t10), _null, _null, false, _null, true, _null)); return A.EditScaffold$(_null, _null, new A.AppForm(t8, t11, _null, t9, _null), _null, _null, _null, false, _null, _null, t7, _null, t6); } }; A._EmailSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_email_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._EmailSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_email_settings$_onChanged()); }, $signature: 12 }; A._EmailSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_email_settings$_onChanged()); }, $signature: 12 }; A._EmailSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._fromNameController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailFromName = t2; t2 = J.trim$0$s(t1._replyToEmailController._change_notifier$_value.text); b.get$_settings_model$_$this()._replyToEmail = t2; t2 = J.trim$0$s(t1._replyToNameController._change_notifier$_value.text); b.get$_settings_model$_$this()._replyToName = t2; t2 = J.trim$0$s(t1._bccEmailController._change_notifier$_value.text); b.get$_settings_model$_$this()._bccEmail = t2; t2 = J.trim$0$s(t1._emailStyleCustomController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailStyleCustom = t2; t1 = J.trim$0$s(t1._emailSignatureController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailSignature = t1; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure6(value))); }, $signature: 7 }; A._EmailSettingsState_build__closure6.prototype = { call$1(b) { b.get$_settings_model$_$this()._emailSendingMethod = this.value; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure0.prototype = { call$0() { var _null = null; A.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, true, "user_details", false, _null)); }, $signature: 1 }; A._EmailSettingsState_build_closure1.prototype = { call$1(userId) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure5(userId))); }, $signature: 5 }; A._EmailSettingsState_build__closure5.prototype = { call$1(b) { b.get$_settings_model$_$this()._gmailSendingUserId = this.userId; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure2.prototype = { call$1(entity) { type$.legacy_UserEntity._as(entity); return entity.get$fullName() + " \u2022 " + entity.email; }, $signature: 41 }; A._EmailSettingsState_build_closure3.prototype = { call$0() { var _null = null; A.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, true, "user_details", false, _null)); }, $signature: 1 }; A._EmailSettingsState_build_closure4.prototype = { call$1(userId) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure4(userId))); }, $signature: 5 }; A._EmailSettingsState_build__closure4.prototype = { call$1(b) { b.get$_settings_model$_$this()._gmailSendingUserId = this.userId; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure5.prototype = { call$1(entity) { type$.legacy_UserEntity._as(entity); return entity.get$fullName() + " \u2022 " + entity.email; }, $signature: 41 }; A._EmailSettingsState_build_closure7.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure3(value))); }, $signature: 12 }; A._EmailSettingsState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._entitySendTime = this.value; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure6.prototype = { call$1(value) { var timeLabel, _null = null, hour = value + 1, t1 = this.viewModel.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (t2._list[t1].userCompany.company.settings.enableMilitaryTime) timeLabel = "" + hour + ":00"; else { timeLabel = hour > 12 ? "" + (hour - 12) + ":00 " : "" + hour + ":00 "; timeLabel = hour < 12 || hour === 24 ? timeLabel + "AM" : timeLabel + "PM"; } return A.DropdownMenuItem$(A.Text$(timeLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, hour, type$.legacy_int); }, $signature: 182 }; A._EmailSettingsState_build_closure8.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure2(value))); }, $signature: 12 }; A._EmailSettingsState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._emailStyle = this.value; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure9.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure1(value))); }, $signature: 10 }; A._EmailSettingsState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._pdfEmailAttachment = this.value; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure10.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure0(value))); }, $signature: 10 }; A._EmailSettingsState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._documentEmailAttachment = this.value; return b; }, $signature: 13 }; A._EmailSettingsState_build_closure11.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure(value))); }, $signature: 10 }; A._EmailSettingsState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._ublEmailAttachment = this.value; return b; }, $signature: 13 }; A.EmailSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.EmailSettingsScreen_build_closure(), A.email_settings_vm_EmailSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_EmailSettingsVM); } }; A.EmailSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.EmailSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2672 }; A.EmailSettingsVM.prototype = {}; A.EmailSettingsVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.EmailSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.EmailSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.EmailSettingsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState, settings = settingsUIState.get$settings(); if (settings.emailStyle === "custom" && !J.contains$1$asx(settings.emailStyleCustom, "$body")) { t1 = _this.context; t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "body_variable_missing"); A.showErrorDialog(false, t1, B.JSString_methods.replaceFirst$2(t2 == null ? "" : t2, ":body", "$body")); return; } switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.ExpenseSettings.prototype = { createState$0() { return new A._ExpenseSettingsState(B._StateLifecycle_0); } }; A._ExpenseSettingsState.prototype = { initState$0() { this.super$State$initState(); this._expense_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, dispose$0(_) { this._expense_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "expense_settings"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = $.$get$_ExpenseSettingsState__formKey(); t7 = this._expense_settings$_focusNode; t8 = A.Theme_of(context).colorScheme; t9 = A.Text$(t1.get$shouldBeInvoiced(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = company.markExpensesInvoiceable; t8 = A.SwitchListTile$(t8.secondary, _null, new A._ExpenseSettingsState_build_closure(viewModel, company), _null, A.Text$(t1.get$shouldBeInvoicedHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, t10); t9 = A.Theme_of(context).colorScheme; t10 = A.Text$(t1.get$markPaid(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.markExpensesPaid; t9 = A.SwitchListTile$(t9.secondary, _null, new A._ExpenseSettingsState_build_closure0(viewModel, company), _null, A.Text$(t1.get$markPaidHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11); t10 = A.Theme_of(context).colorScheme; t11 = A.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = company.invoiceExpenseDocuments; t13 = type$.JSArray_legacy_Widget; t12 = A._setArrayType([A.FormCard$(_null, A._setArrayType([t8, t9, A.SwitchListTile$(t10.secondary, _null, new A._ExpenseSettingsState_build_closure1(viewModel, company), _null, A.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, t12)], t13), _null, _null, false, _null, false, _null)], t13); if (company.numberOfItemTaxRates > 0) { t8 = t1.get$enterTaxes(); t9 = t1.get$byAmount(); t10 = t1.get$byRate(); t11 = company.calculateExpenseTaxByAmount; t8 = A.BoolDropdownButton$(t10, t9, _null, _null, t8, _null, new A._ExpenseSettingsState_build_closure2(viewModel, company), t11); t9 = A.Theme_of(context).colorScheme; t10 = A.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.expenseInclusiveTaxes; t12.push(A.FormCard$(_null, A._setArrayType([t8, new A.SizedBox(_null, 16, _null, _null), A.SwitchListTile$(t9.secondary, _null, new A._ExpenseSettingsState_build_closure3(viewModel, company), _null, A.Text$("\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11)], t13), _null, _null, false, _null, false, _null)); } t1 = J.$index$asx(t2.$index(0, t3), "configure_categories"); if (t1 == null) t1 = ""; t12.push(new A.Padding(B.EdgeInsets_16_0_16_0, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new A._ExpenseSettingsState_build_closure4(viewModel, context), _null, _null), _null)); return A.EditScaffold$(_null, _null, new A.AppForm(t6, t12, _null, t7, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._ExpenseSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure3(value))); }, $signature: 10 }; A._ExpenseSettingsState_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._markExpensesInvoiceable = this.value; return b; }, $signature: 23 }; A._ExpenseSettingsState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure2(value))); }, $signature: 10 }; A._ExpenseSettingsState_build__closure2.prototype = { call$1(b) { b.get$_company_model$_$this()._markExpensesPaid = this.value; return b; }, $signature: 23 }; A._ExpenseSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure1(value))); }, $signature: 10 }; A._ExpenseSettingsState_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._invoiceExpenseDocuments = this.value; return b; }, $signature: 23 }; A._ExpenseSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure0(value))); }, $signature: 10 }; A._ExpenseSettingsState_build__closure0.prototype = { call$1(b) { b.get$_company_model$_$this()._calculateExpenseTaxByAmount = this.value; return b; }, $signature: 23 }; A._ExpenseSettingsState_build_closure3.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure(value))); }, $signature: 10 }; A._ExpenseSettingsState_build__closure.prototype = { call$1(b) { b.get$_company_model$_$this()._expenseInclusiveTaxes = this.value; return b; }, $signature: 23 }; A._ExpenseSettingsState_build_closure4.prototype = { call$0() { return this.viewModel.onConfigureCategoriesPressed.call$1(this.context); }, $signature: 9 }; A.ExpenseSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ExpenseSettingsScreen_build_closure(), A.expense_settings_vm_ExpenseSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseSettingsVM); } }; A.ExpenseSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ExpenseSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2674 }; A.ExpenseSettingsVM.prototype = { get$company() { return this.company; } }; A.ExpenseSettingsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.ExpenseSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ExpenseSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.ExpenseSettingsVM_fromStore__closure.prototype = { call$0() { var t1 = this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState, t2 = this.context, completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; A.ExpenseSettingsVM_fromStore_closure1.prototype = { call$1(context) { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "expense_category", false, _null)); }, $signature: 14 }; A.GeneratedNumbers.prototype = { createState$0() { return new A._GeneratedNumbersState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, true), null, null, B._StateLifecycle_0); } }; A._GeneratedNumbersState.prototype = { initState$0() { var t2, t3, company, settingsUIState, _this = this, t1 = {}; _this.super$State$initState(); t2 = _this._widget.viewModel.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = t3._list[t2].userCompany.company; t1.tabs = 2; B.JSArray_methods.forEach$1(A._setArrayType([B.EntityType_invoice, B.EntityType_payment, B.EntityType_quote, B.EntityType_credit, B.EntityType_recurringInvoice, B.EntityType_project, B.EntityType_task, B.EntityType_vendor, B.EntityType_purchaseOrder, B.EntityType_expense, B.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), new A._GeneratedNumbersState_initState_closure(t1, company)); _this._generated_numbers$_focusNode = A.FocusScopeNode$(true, null, false); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = t1.tabs; t1 = A.TabController$(null, settingsUIState.tabIndex, t1, _this); _this._generated_numbers$_controller = t1; t1.addListener$1(0, _this.get$_generated_numbers$_onTabChanged()); }, _generated_numbers$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._generated_numbers$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._generated_numbers$_focusNode.dispose$0(0); _this._generated_numbers$_controller.removeListener$1(0, _this.get$_generated_numbers$_onTabChanged()); _this._generated_numbers$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new A._GeneratedNumbersState_dispose_closure(_this)); _this.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { var _this = this, t1 = _this._recurringPrefixController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._generated_numbers$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._GeneratedNumbersState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.settings.recurringNumberPrefix); B.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new A._GeneratedNumbersState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _generated_numbers$_onChanged$0() { this._generated_numbers$_debouncer.run$1(new A._GeneratedNumbersState__onChanged_closure(this)); }, _generated_numbers$_onSavePressed$1(context) { var t1 = {}, viewModel = this._widget.viewModel, settings = viewModel.settings, values = A._setArrayType([settings.clientNumberPattern, settings.invoiceNumberPattern, settings.paymentNumberPattern, settings.quoteNumberPattern, settings.creditNumberPattern, settings.recurringInvoiceNumberPattern, settings.projectNumberPattern, settings.taskNumberPattern, settings.vendorNumberPattern, settings.purchaseOrderNumberPattern, settings.expenseNumberPattern, settings.recurringExpenseNumberPattern], type$.JSArray_legacy_String); t1.isValid = true; B.JSArray_methods.forEach$1(values, new A._GeneratedNumbersState__onSavePressed_closure(t1)); if (!t1.isValid) { A.showDialog(null, true, new A._GeneratedNumbersState__onSavePressed_closure0(), context, null, true, type$.legacy_ErrorDialog); return; } viewModel.onSavePressed.call$1(context); }, build$1(_, context) { var t5, t6, t7, t8, t9, t10, t11, _list, i, i0, t12, t13, t14, t15, t16, _this = this, _null = null, _s10_ = "when_saved", _s9_ = "when_sent", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, settings = viewModel.settings, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = t2._list[t4].userCompany.company; t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t2 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t2), "generated_numbers"); if (t5 == null) t5 = ""; t3 = t3.settingsUIState.updatedAt; t6 = _this._generated_numbers$_controller; t7 = type$.JSArray_legacy_Widget; t8 = A._setArrayType([A.Tab$(_null, t1.get$settings()), A.Tab$(_null, t1.get$clients(t1))], t7); if (company.isModuleEnabled$1(B.EntityType_invoice)) t8.push(A.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) t8.push(A.Tab$(_null, t1.get$recurringInvoices())); if (company.isModuleEnabled$1(B.EntityType_payment)) t8.push(A.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(B.EntityType_quote)) t8.push(A.Tab$(_null, t1.get$quotes(t1))); if (company.isModuleEnabled$1(B.EntityType_credit)) t8.push(A.Tab$(_null, t1.get$credits())); if (company.isModuleEnabled$1(B.EntityType_project)) t8.push(A.Tab$(_null, t1.get$projects())); if (company.isModuleEnabled$1(B.EntityType_task)) t8.push(A.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(B.EntityType_vendor)) t8.push(A.Tab$(_null, t1.get$vendors())); if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) t8.push(A.Tab$(_null, t1.get$purchaseOrders())); if (company.isModuleEnabled$1(B.EntityType_expense)) t8.push(A.Tab$(_null, t1.get$expenses())); if (company.isModuleEnabled$1(B.EntityType_recurringExpense)) t8.push(A.Tab$(_null, t1.get$recurringExpenses())); t3 = A.TabBar$(t6, _null, true, new A.ValueKey(t3, type$.ValueKey_legacy_int), _null, t8); t6 = _this._generated_numbers$_controller; t8 = $.$get$_GeneratedNumbersState__formKey(); t9 = _this._generated_numbers$_focusNode; t4 = J.$index$asx(t4.$index(0, t2), "number_padding"); if (t4 == null) t4 = ""; t10 = settings.counterPadding; t11 = type$.legacy_int; _list = J.JSArray_JSArray$allocateGrowable(10, t11); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t12 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t11 = A.AppDropdownButton$(_null, _null, true, A.List_List$of(new A.MappedListIterable(_list, new A._GeneratedNumbersState_build_closure(), t12), true, t12._eval$1("ListIterable.E")), _null, t4, new A._GeneratedNumbersState_build_closure0(viewModel, settings), _null, false, t10, t11); t10 = $.$get$LocalizationsProvider__localizedValues(); t4 = J.$index$asx(t10.$index(0, t2), "generate_number"); if (t4 == null) t4 = ""; t12 = settings.counterNumberApplied; t13 = J.$index$asx(t10.$index(0, t2), _s10_); t14 = type$.legacy_String; t13 = A.DropdownMenuItem$(A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s10_, t14); t15 = J.$index$asx(t10.$index(0, t2), _s9_); t16 = type$.JSArray_legacy_DropdownMenuItem_legacy_String; t12 = A._setArrayType([t11, A.AppDropdownButton$(_null, "", true, A._setArrayType([t13, A.DropdownMenuItem$(A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s9_, t14)], t16), _null, t4, new A._GeneratedNumbersState_build_closure1(viewModel, settings), _null, false, t12, t14)], t7); if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) t12.push(A.DecoratedFormField$(false, _null, false, false, _this._recurringPrefixController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$recurringPrefix(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); if (company.isModuleEnabled$1(B.EntityType_quote)) t12.push(A.BoolDropdownButton$(_null, _null, _null, B.IconData_57744_MaterialIcons_null_false, t1.get$sharedInvoiceQuoteCounter(), _null, new A._GeneratedNumbersState_build_closure2(viewModel, settings), settings.sharedInvoiceQuoteCounter)); if (company.isModuleEnabled$1(B.EntityType_credit)) t12.push(A.BoolDropdownButton$(_null, _null, _null, B.IconData_57744_MaterialIcons_null_false, t1.get$sharedInvoiceCreditCounter(), _null, new A._GeneratedNumbersState_build_closure3(viewModel, settings), settings.sharedInvoiceCreditCounter)); t4 = t1.get$resetCounter(); t11 = settings.resetCounterFrequencyId; t16 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$never(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "0", t14)], t16); t1 = B.Map_tOn4d.map$2$1(0, new A._GeneratedNumbersState_build_closure4(t1), t14, type$.legacy_DropdownMenuItem_legacy_String); t1 = t1.get$values(t1); B.JSArray_methods.addAll$1(t16, A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E"))); t12.push(A.AppDropdownButton$(_null, "", true, t16, _null, t4, new A._GeneratedNumbersState_build_closure5(viewModel, settings), _null, false, t11, t14)); t1 = A.Primitives_parseInt(t11 == null ? "0" : t11, _null); if ((t1 == null ? 0 : t1) > 0) { t1 = J.$index$asx(t10.$index(0, t2), "next_reset"); if (t1 == null) t1 = ""; t12.push(A.DatePicker$(false, _null, _null, t1, _null, new A._GeneratedNumbersState_build_closure6(viewModel, settings), settings.resetCounterDate, _null)); } t1 = A._setArrayType([new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t12, _null, _null, false, _null, true, _null)], t7), _null, _null, _null), new A.EntityNumberSettings(settings.clientNumberCounter, settings.clientNumberPattern, new A._GeneratedNumbersState_build_closure7(viewModel, settings), false, false, _null)], t7); if (company.isModuleEnabled$1(B.EntityType_invoice)) t1.push(new A.EntityNumberSettings(settings.invoiceNumberCounter, settings.invoiceNumberPattern, new A._GeneratedNumbersState_build_closure8(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) t1.push(new A.EntityNumberSettings(settings.recurringInvoiceNumberCounter, settings.recurringInvoiceNumberPattern, new A._GeneratedNumbersState_build_closure9(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_payment)) t1.push(new A.EntityNumberSettings(settings.paymentNumberCounter, settings.paymentNumberPattern, new A._GeneratedNumbersState_build_closure10(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_quote)) t1.push(new A.EntityNumberSettings(settings.quoteNumberCounter, settings.quoteNumberPattern, new A._GeneratedNumbersState_build_closure11(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_credit)) t1.push(new A.EntityNumberSettings(settings.creditNumberCounter, settings.creditNumberPattern, new A._GeneratedNumbersState_build_closure12(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_project)) t1.push(new A.EntityNumberSettings(settings.projectNumberCounter, settings.projectNumberPattern, new A._GeneratedNumbersState_build_closure13(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(B.EntityType_task)) t1.push(new A.EntityNumberSettings(settings.taskNumberCounter, settings.taskNumberPattern, new A._GeneratedNumbersState_build_closure14(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(B.EntityType_vendor)) t1.push(new A.EntityNumberSettings(settings.vendorNumberCounter, settings.vendorNumberPattern, new A._GeneratedNumbersState_build_closure15(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) t1.push(new A.EntityNumberSettings(settings.purchaseOrderNumberCounter, settings.purchaseOrderNumberPattern, new A._GeneratedNumbersState_build_closure16(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(B.EntityType_expense)) t1.push(new A.EntityNumberSettings(settings.expenseNumberCounter, settings.expenseNumberPattern, new A._GeneratedNumbersState_build_closure17(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(B.EntityType_recurringExpense)) t1.push(new A.EntityNumberSettings(settings.recurringExpenseNumberCounter, settings.recurringExpenseNumberPattern, new A._GeneratedNumbersState_build_closure18(viewModel, settings), false, false, _null)); return A.EditScaffold$(_null, t3, new A.AppTabForm(t9, t8, t1, t6, _null, _null), _null, _null, _null, false, _null, _null, _this.get$_generated_numbers$_onSavePressed(), _null, t5); } }; A._GeneratedNumbersState_initState_closure.prototype = { call$1(entityType) { if (this.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, $signature: 191 }; A._GeneratedNumbersState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_generated_numbers$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._GeneratedNumbersState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 12 }; A._GeneratedNumbersState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 12 }; A._GeneratedNumbersState__onChanged_closure.prototype = { call$0() { var t1 = this.$this, settings = t1._widget.viewModel.settings.rebuild$1(new A._GeneratedNumbersState__onChanged__closure(t1)); if (!J.$eq$(settings, t1._widget.viewModel.settings)) t1._widget.viewModel.onSettingsChanged.call$1(settings); }, $signature: 1 }; A._GeneratedNumbersState__onChanged__closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._recurringPrefixController._change_notifier$_value.text); b.get$_settings_model$_$this()._recurringNumberPrefix = t1; return b; }, $signature: 13 }; A._GeneratedNumbersState__onSavePressed_closure.prototype = { call$1(value) { var containsCounter, containsId; if (value == null) value = ""; containsCounter = B.JSString_methods.contains$1(value, "{$client_counter}") || B.JSString_methods.contains$1(value, "{$group_counter}"); containsId = B.JSString_methods.contains$1(value, "{$client_id_number}") || B.JSString_methods.contains$1(value, "{$client_number}"); if (containsCounter && !containsId) this._box_0.isValid = false; }, $signature: 11 }; A._GeneratedNumbersState__onSavePressed_closure0.prototype = { call$1(context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "counter_pattern_error"); if (t1 == null) t1 = ""; return new A.ErrorDialog(A.stringReplaceAllUnchecked(t1, ":", "$"), false, null); }, $signature: 24 }; A._GeneratedNumbersState_build_closure0.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure16(value))); }, $signature: 12 }; A._GeneratedNumbersState_build__closure16.prototype = { call$1(b) { b.get$_settings_model$_$this()._counterPadding = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(B.JSString_methods.$mul("0", value - 1) + "1", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A._GeneratedNumbersState_build_closure1.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure15(value))); }, $signature: 12 }; A._GeneratedNumbersState_build__closure15.prototype = { call$1(b) { b.get$_settings_model$_$this()._counterNumberApplied = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure2.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure14(value))); }, $signature: 10 }; A._GeneratedNumbersState_build__closure14.prototype = { call$1(b) { b.get$_settings_model$_$this()._sharedInvoiceQuoteCounter = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure3.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure13(value))); }, $signature: 10 }; A._GeneratedNumbersState_build__closure13.prototype = { call$1(b) { b.get$_settings_model$_$this()._sharedInvoiceCreditCounter = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure5.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure12(value))); }, $signature: 12 }; A._GeneratedNumbersState_build__closure12.prototype = { call$1(b) { b.get$_settings_model$_$this()._resetCounterFrequencyId = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure4.prototype = { call$2(id, frequency) { var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 483 }; A._GeneratedNumbersState_build_closure6.prototype = { call$2(value, _) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure11(value))); }, $signature: 288 }; A._GeneratedNumbersState_build__closure11.prototype = { call$1(b) { b.get$_settings_model$_$this()._resetCounterDate = this.value; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure7.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure10(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure10.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientNumberCounter = this.counter; b.get$_settings_model$_$this()._clientNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure8.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure9(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure9.prototype = { call$1(b) { b.get$_settings_model$_$this()._invoiceNumberCounter = this.counter; b.get$_settings_model$_$this()._invoiceNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure9.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure8(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure8.prototype = { call$1(b) { b.get$_settings_model$_$this()._recurringInvoiceNumberCounter = this.counter; b.get$_settings_model$_$this()._recurringInvoiceNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure10.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure7(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure7.prototype = { call$1(b) { b.get$_settings_model$_$this()._paymentNumberCounter = this.counter; b.get$_settings_model$_$this()._paymentNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure11.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure6(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure6.prototype = { call$1(b) { b.get$_settings_model$_$this()._quoteNumberCounter = this.counter; b.get$_settings_model$_$this()._quoteNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure12.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure5(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure5.prototype = { call$1(b) { b.get$_settings_model$_$this()._creditNumberCounter = this.counter; b.get$_settings_model$_$this()._creditNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure13.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure4(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure4.prototype = { call$1(b) { b.get$_settings_model$_$this()._projectNumberCounter = this.counter; b.get$_settings_model$_$this()._projectNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure14.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure3(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._taskNumberCounter = this.counter; b.get$_settings_model$_$this()._taskNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure15.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure2(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._vendorNumberCounter = this.counter; b.get$_settings_model$_$this()._vendorNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure16.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure1(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._purchaseOrderNumberCounter = this.counter; b.get$_settings_model$_$this()._purchaseOrderNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure17.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure0(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._expenseNumberCounter = this.counter; b.get$_settings_model$_$this()._expenseNumberPattern = this.pattern; return b; }, $signature: 13 }; A._GeneratedNumbersState_build_closure18.prototype = { call$2(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure(counter, pattern))); }, $signature: 88 }; A._GeneratedNumbersState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._recurringExpenseNumberCounter = this.counter; b.get$_settings_model$_$this()._recurringExpenseNumberPattern = this.pattern; return b; }, $signature: 13 }; A.EntityNumberSettings.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._EntityNumberSettingsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, true), B._StateLifecycle_0); }, onChanged$2(arg0, arg1) { return this.onChanged.call$2(arg0, arg1); } }; A._EntityNumberSettingsState.prototype = { dispose$0(_) { B.JSArray_methods.forEach$1(this._generated_numbers$_controllers, new A._EntityNumberSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0() { var _this = this, t1 = _this._counterController, t2 = _this._patternController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._generated_numbers$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A._EntityNumberSettingsState_didChangeDependencies_closure(_this)); t3 = _this._widget.counterValue; t1.set$text(0, A.S(t3 == null ? "" : t3)); t2.set$text(0, _this._widget.patternValue); B.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new A._EntityNumberSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _generated_numbers$_onChanged$0() { this._generated_numbers$_debouncer.run$1(new A._EntityNumberSettingsState__onChanged_closure(this)); }, build$1(_, context) { var t2, t3, t4, t5, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t3 = J.$index$asx(t2.$index(0, t1), "number_pattern"); if (t3 == null) t3 = ""; t3 = A.DecoratedFormField$(false, _null, false, false, _this._patternController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t4 = J.$index$asx(t2.$index(0, t1), "number_counter"); if (t4 == null) t4 = ""; t5 = type$.JSArray_legacy_Widget; t4 = A.FormCard$(_null, A._setArrayType([t3, A.DecoratedFormField$(false, _null, false, false, _this._counterController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t4, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t5), _null, _null, false, _null, false, _null); t1 = J.$index$asx(t2.$index(0, t1), "view_date_formats"); if (t1 == null) t1 = ""; return new A.ScrollableListView(A._setArrayType([t4, new A.Padding(B.EdgeInsets_16_20_16_8, A.OutlinedButton$(A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EntityNumberSettingsState_build_closure(), _null), _null), new A.HelpPanel(false, _this._widget.showClientFields, new A._EntityNumberSettingsState_build_closure0(_this), _null)], t5), _null, _null, _null); } }; A._EntityNumberSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_generated_numbers$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._EntityNumberSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 12 }; A._EntityNumberSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 12 }; A._EntityNumberSettingsState__onChanged_closure.prototype = { call$0() { var t1 = this.$this, counter = A.parseInt(J.trim$0$s(t1._counterController._change_notifier$_value.text), true), pattern = J.trim$0$s(t1._patternController._change_notifier$_value.text); t1 = t1._widget; if (counter != t1.counterValue || pattern !== t1.patternValue) t1.onChanged$2(counter, pattern); }, $signature: 1 }; A._EntityNumberSettingsState_build_closure.prototype = { call$0() { return A.launch("https://www.php.net/manual/en/datetime.format.php", null, false); }, $signature: 26 }; A._EntityNumberSettingsState_build_closure0.prototype = { call$1(field) { var currentValue, newValue, t1 = this.$this._patternController, offset = t1._change_notifier$_value.selection.get$extent().offset, newOffset = field.length, t2 = offset >= 0, t3 = t1._change_notifier$_value; if (t2) { currentValue = t3.text; newValue = J.substring$2$s(currentValue, 0, offset) + field + B.JSString_methods.substring$1(currentValue, offset); newOffset = offset + newOffset; } else newValue = J.$add$ansx(t3.text, field); t1.set$text(0, newValue); if (t2) t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(newOffset, B.TextAffinity_1))); }, $signature: 11 }; A.HelpPanel.prototype = { build$1(_, context) { var _null = null, t1 = type$.WhereIterable_legacy_String, t2 = t1._eval$1("MappedIterable"); t2 = A.MappedIterable_MappedIterable(new A.MappedIterable(new A.WhereIterable(new A.WhereIterable(A._setArrayType(["counter", "client_counter", "group_counter", "year", "date:format", "client_number", "client_id_number", "client_custom1", "client_custom2", "client_custom3", "client_custom4", "vendor_number", "vendor_id_number", "vendor_custom1", "vendor_custom2", "vendor_custom3", "vendor_custom4", "user_id", "user_custom1", "user_custom2", "user_custom3", "user_custom4"], type$.JSArray_legacy_String), new A.HelpPanel_build_closure(this), t1), new A.HelpPanel_build_closure0(this), t1._eval$1("WhereIterable")), new A.HelpPanel_build_closure1(), t2), new A.HelpPanel_build_closure2(this), t2._eval$1("Iterable.E"), type$.legacy_InkWell); return A.FormCard$(_null, A.List_List$of(t2, true, A._instanceType(t2)._eval$1("Iterable.E")), _null, B.CrossAxisAlignment_3, false, _null, true, _null); } }; A.HelpPanel_build_closure.prototype = { call$1(field) { var t1 = J.startsWith$1$s(field, "vendor"); return !t1; }, $signature: 16 }; A.HelpPanel_build_closure0.prototype = { call$1(field) { var t1; if (!this.$this.showClientFields) t1 = !J.startsWith$1$s(field, "client") && !B.JSString_methods.startsWith$1(field, "group"); else t1 = true; return t1; }, $signature: 16 }; A.HelpPanel_build_closure1.prototype = { call$1(field) { return "{$" + A.S(field) + "}"; }, $signature: 15 }; A.HelpPanel_build_closure2.prototype = { call$1(field) { var _null = null; return A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_0_6_0_6, A.Text$(field, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.HelpPanel_build__closure(this.$this, field), _null, _null, _null, _null, _null, _null); }, $signature: 749 }; A.HelpPanel_build__closure.prototype = { call$0() { return this.$this.onFieldPressed.call$1(this.field); }, $signature: 9 }; A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.GeneratedNumbersScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.GeneratedNumbersScreen_build_closure(), A.generated_numbers_vm_GeneratedNumbersVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GeneratedNumbersVM); } }; A.GeneratedNumbersScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.GeneratedNumbers(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2676 }; A.GeneratedNumbersVM.prototype = { get$company() { return this.company; } }; A.GeneratedNumbersVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.GeneratedNumbersVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.GeneratedNumbersVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.GeneratedNumbersVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.ImportExport.prototype = { createState$0() { return new A._ImportExportState(B.ImportType_csv, B.ImportType_csv, B.ExportType_clients, B._StateLifecycle_0); } }; A._ImportExportState.prototype = { initState$0() { this.super$State$initState(); this._import_export$_focusNode = A.FocusScopeNode$(true, null, false); }, dispose$0(_) { this._import_export$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, _s13_ = "export_format", _s11_ = "export_type", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.getLayout(context); t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t1.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "import_export"); t5 = A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = type$.JSArray_legacy_Widget; t5 = A.AppBar$(A._setArrayType([], t6), _null, t2 === B.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, t5, _null, _null, _null, 1, _null); t2 = $.$get$_ImportExportState__formKey(); t7 = _this._import_export$_focusNode; t8 = A._setArrayType([], t6); t9 = _this._import_export$_response; t10 = _this._importFormat; if (t9 == null) t8.push(new A._FileImport(t10, new A._ImportExportState_build_closure(_this), new A._ImportExportState_build_closure0(_this, t1), _null)); else t8.push(new A._FileMapper(t10, t9, new A._ImportExportState_build_closure1(_this), t2, new A.ValueKey(t9.hash, type$.ValueKey_legacy_String))); t9 = A._setArrayType([], t6); if (_this._isExporting) t9.push(A.LinearProgressIndicator$()); else { t10 = J.$index$asx(t3.$index(0, t4), _s13_); t10 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t10 == null ? J.$index$asx(t3.$index(0, "en"), _s13_) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = _this._exportFormat; t12 = type$.MappedListIterable_of_legacy_ImportType_and_legacy_DropdownMenuItem_legacy_ImportType; t6 = A._setArrayType([A.InputDecorator$(_null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, true, false, 48, A.List_List$of(new A.MappedListIterable(A._setArrayType([B.ImportType_csv, B.ImportType_json], type$.JSArray_legacy_ImportType), new A._ImportExportState_build_closure2(t1), t12), true, t12._eval$1("ListIterable.E")), new A._ImportExportState_build_closure3(_this), _null, _null, _null, t11, type$.legacy_ImportType), _null), t10, false, false, false, false, _null, _null)], t6); if (_this._exportFormat === B.ImportType_csv) { t4 = J.$index$asx(t3.$index(0, t4), _s11_); t3 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t4 == null ? J.$index$asx(t3.$index(0, "en"), _s11_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _this._exportType; t10 = $.$get$_$exportValues()._set$_set; t11 = A._instanceType(t10)._eval$1("EfficientLengthMappedIterable*>"); t6.push(A.InputDecorator$(_null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, true, false, 48, A.List_List$of(new A.EfficientLengthMappedIterable(t10, new A._ImportExportState_build_closure4(t1), t11), true, t11._eval$1("Iterable.E")), new A._ImportExportState_build_closure5(_this), _null, _null, _null, t4, type$.legacy_ExportType), _null), t3, false, false, false, false, _null, _null)); } t6.push(new A.AppButton(_null, B._MdiIconData_wMy1, t1.get$$export().toUpperCase(), new A._ImportExportState_build_closure6(_this, context, t1), _null, _null)); B.JSArray_methods.addAll$1(t9, t6); } t8.push(A.FormCard$(_null, t9, _null, B.CrossAxisAlignment_3, false, _null, true, _null)); return A.Scaffold$(t5, _null, new A.AppForm(t2, _null, new A.ScrollableListView(t8, _null, _null, _null), t7, _null), _null, _null, _null, _null, _null); } }; A._ImportExportState_build_closure0.prototype = { call$1(response) { var t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.legacy_Set_void), t2 = this.$this; if (t2._importFormat === B.ImportType_csv) t1.add$1(0, A.LinkedHashSet_LinkedHashSet$_literal([t2.setState$1(new A._ImportExportState_build__closure5(t2, response))], type$.void)); else t1.add$1(0, A.LinkedHashSet_LinkedHashSet$_literal([A.showToast(this.localization.get$startedImport())], type$.legacy_ToastFuture)); return t1; }, $signature: 2677 }; A._ImportExportState_build__closure5.prototype = { call$0() { return this.$this._import_export$_response = this.response; }, $signature: 2678 }; A._ImportExportState_build_closure.prototype = { call$1(importType) { var t1 = this.$this; return t1.setState$1(new A._ImportExportState_build__closure6(t1, importType)); }, $signature: 2679 }; A._ImportExportState_build__closure6.prototype = { call$0() { return this.$this._importFormat = this.importType; }, $signature: 2680 }; A._ImportExportState_build_closure1.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._ImportExportState_build__closure4(t1)); }, $signature: 0 }; A._ImportExportState_build__closure4.prototype = { call$0() { return this.$this._import_export$_response = null; }, $signature: 1 }; A._ImportExportState_build_closure3.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ImportExportState_build__closure3(t1, value)); }, $signature: 7 }; A._ImportExportState_build__closure3.prototype = { call$0() { this.$this._exportFormat = this.value; }, $signature: 1 }; A._ImportExportState_build_closure2.prototype = { call$1(importType) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(A.S(importType)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, importType, type$.legacy_ImportType); }, $signature: 563 }; A._ImportExportState_build_closure5.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._ImportExportState_build__closure2(t1, value)); }, $signature: 7 }; A._ImportExportState_build__closure2.prototype = { call$0() { this.$this._exportType = this.value; }, $signature: 1 }; A._ImportExportState_build_closure4.prototype = { call$1(importType) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(A.S(importType)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, importType, type$.legacy_ExportType); }, $signature: 2682 }; A._ImportExportState_build_closure6.prototype = { call$0() { var t1 = this.context, state = A._lateReadCheck(A.StoreProvider_of(t1, type$.legacy_AppState).__Store__state, "_state"), credentials = state.get$credentials(state), url = credentials.url, t2 = this.$this; url = t2._exportFormat === B.ImportType_json ? url + "/export" : url + "/reports/" + A.S(t2._exportType); t2.setState$1(new A._ImportExportState_build__closure(t2)); new A.WebClient().post$3$data(url, credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["send_email", true, "report_keys", A._setArrayType([], type$.JSArray_legacy_String)], type$.legacy_String, type$.legacy_Object))).then$1$1(0, new A._ImportExportState_build__closure0(t2, t1, this.localization), type$.Null).catchError$1(new A._ImportExportState_build__closure1(t2, t1)); }, $signature: 1 }; A._ImportExportState_build__closure.prototype = { call$0() { return this.$this._isExporting = true; }, $signature: 21 }; A._ImportExportState_build__closure0.prototype = { call$1(result) { var t1 = this.$this; t1.setState$1(new A._ImportExportState_build___closure0(t1)); A.showMessageDialog(this.context, this.localization.get$exportedData(), null, null); }, $signature: 7 }; A._ImportExportState_build___closure0.prototype = { call$0() { return this.$this._isExporting = false; }, $signature: 21 }; A._ImportExportState_build__closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._ImportExportState_build___closure(t1)); A.showErrorDialog(false, this.context, A.S(error)); }, $signature: 7 }; A._ImportExportState_build___closure.prototype = { call$0() { return this.$this._isExporting = false; }, $signature: 21 }; A._FileImport.prototype = { createState$0() { return new A._FileImportState(A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_MultipartFile), B._StateLifecycle_0); }, onImportTypeChanged$1(arg0) { return this.onImportTypeChanged.call$1(arg0); }, onUploaded$1(arg0) { return this.onUploaded.call$1(arg0); } }; A._FileImportState.prototype = { uploadJsonFile$0() { var t2, t3, state, credentials, url, _this = this, _s17_ = "json_file_missing", _s19_ = "json_option_missing", t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._multipartFiles; if (!t2.containsKey$1(0, "json")) { t2 = _this._framework$_element; t2.toString; t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t3.$index(0, t1.localeCode), _s17_); A.showErrorDialog(false, t2, t1 == null ? J.$index$asx(t3.$index(0, "en"), _s17_) : t1); return; } else if (!_this._importJsonData && !_this._importJsonSettings) { t2 = _this._framework$_element; t2.toString; t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t3.$index(0, t1.localeCode), _s19_); A.showErrorDialog(false, t2, t1 == null ? J.$index$asx(t3.$index(0, "en"), _s19_) : t1); return; } t3 = _this._framework$_element; t3.toString; state = A._lateReadCheck(A.StoreProvider_of(t3, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); url = credentials.url + "/import_json?"; if (_this._importJsonSettings) url += "&import_settings=true"; if (_this._importJsonData) url += "&import_data=true"; _this.setState$1(new A._FileImportState_uploadJsonFile_closure(_this)); t2 = t2.get$values(t2); new A.WebClient().post$3$multipartFiles(url, credentials.token, A.List_List$of(t2, true, A._instanceType(t2)._eval$1("Iterable.E"))).then$1$1(0, new A._FileImportState_uploadJsonFile_closure0(_this, t1), type$.Null).catchError$1(new A._FileImportState_uploadJsonFile_closure1(_this)); }, uploadFile$0() { var t2, t3, t4, state, credentials, url, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._widget.importType; if (t2 !== B.ImportType_csv) for (t2 = t2.get$uploadParts(), t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2), t3 = _this._multipartFiles; t2.moveNext$0();) { t4 = t2.get$current(t2); if (!t3.containsKey$1(0, t4.get$key(t4))) { t2 = _this._framework$_element; t2.toString; t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "required_files_missing"); A.showErrorDialog(false, t2, t3 == null ? "" : t3); return; } } t2 = _this._framework$_element; t2.toString; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); t2 = credentials.url; url = _this._widget.importType === B.ImportType_csv ? t2 + "/preimport" : t2 + "/import"; _this.setState$1(new A._FileImportState_uploadFile_closure(_this)); t2 = _this._multipartFiles; t2 = t2.get$values(t2); t2 = A.List_List$of(t2, true, A._instanceType(t2)._eval$1("Iterable.E")); t3 = type$.legacy_String; new A.WebClient().post$4$data$multipartFiles(url, credentials.token, A.LinkedHashMap_LinkedHashMap$_literal(["import_type", J.toString$0$(_this._widget.importType)], t3, t3), t2).then$1$1(0, new A._FileImportState_uploadFile_closure0(_this, t1), type$.Null).catchError$1(new A._FileImportState_uploadFile_closure1(_this)); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, children, t8, multipartFile, t9, t10, t11, t12, _this = this, _null = null, _s13_ = "import_format", _s2_ = "en", _s9_ = "json_help", _s15_ = "import_settings", _s11_ = "import_data", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), _s13_); t4 = A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t4 == null ? J.$index$asx(t2.$index(0, _s2_), _s13_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = _this._widget.importType; t6 = type$.MappedListIterable_of_legacy_ImportType_and_legacy_DropdownMenuItem_legacy_ImportType; t7 = type$.JSArray_legacy_Widget; children = A._setArrayType([A.InputDecorator$(_null, new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, _null, _null, 24, true, false, 48, A.List_List$of(new A.MappedListIterable(A._setArrayType([B.ImportType_csv, B.ImportType_json, B.ImportType_freshbooks, B.ImportType_invoice2go, B.ImportType_invoicely, B.ImportType_waveaccounting, B.ImportType_zoho], type$.JSArray_legacy_ImportType), new A._FileImportState_build_closure(t1), t6), true, t6._eval$1("ListIterable.E")), new A._FileImportState_build_closure0(_this), _null, _null, _null, t5, type$.legacy_ImportType), _null), t4, false, false, false, false, _null, _null)], t7); for (t4 = _this._widget.importType.get$uploadParts(), t4 = t4.get$entries(t4), t4 = t4.get$iterator(t4), t5 = _this._multipartFiles, t6 = type$.ValueKey_legacy_String; t4.moveNext$0();) { t8 = t4.get$current(t4); multipartFile = t5.containsKey$1(0, t8.get$key(t8)) ? t5.$index(0, t8.get$key(t8)) : _null; t9 = t8.get$key(t8); t9 = J.$add$ansx(t9, multipartFile != null ? multipartFile.filename : ""); t10 = t1.lookup$1(t8.get$value(t8)); if (!t5.containsKey$1(0, t8.get$key(t8))) { t11 = J.$index$asx(t2.$index(0, t3), "no_file_selected"); if (t11 == null) t11 = ""; } else { t11 = t5.$index(0, t8.get$key(t8)).filename; t12 = t5.$index(0, t8.get$key(t8)).length; t12 = t12 > 1000000 ? "" + B.JSNumber_methods.toInt$0(A.round(t12 / 1000000, 1)) + " MB" : "" + B.JSNumber_methods.toInt$0(A.round(t12 / 1000, 0)) + " KB"; t12 = A.S(t11) + " \u2022 " + t12; t11 = t12; } t12 = J.$index$asx(t2.$index(0, t3), "select_file"); children.push(A.Row$(A._setArrayType([new A.Expanded(1, B.FlexFit_0, new A.DecoratedFormField(_null, t10, _null, t11, _null, B.TextInputType_0_null_null, _null, _null, false, false, false, false, false, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, _null, false, false, true, _null, new A.ValueKey(t9, t6)), _null), new A.SizedBox(16, _null, _null, _null), A.OutlinedButton$(new A.Text(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FileImportState_build_closure1(_this, t8), _null)], t7), B.CrossAxisAlignment_1, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); } children.push(new A.SizedBox(_null, 20, _null, _null)); if (_this._widget.importType === B.ImportType_json) { t4 = J.$index$asx(t2.$index(0, t3), _s9_); if (t4 == null) t4 = J.$index$asx(t2.$index(0, _s2_), _s9_); t4 = A.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t5 = A.Theme_of(context).colorScheme; t6 = J.$index$asx(t2.$index(0, t3), _s15_); t5 = A.SwitchListTile$(t5.secondary, _null, new A._FileImportState_build_closure2(_this), _null, _null, A.Text$(t6 == null ? J.$index$asx(t2.$index(0, _s2_), _s15_) : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._importJsonSettings); t6 = A.Theme_of(context).colorScheme; t3 = J.$index$asx(t2.$index(0, t3), _s11_); B.JSArray_methods.addAll$1(children, A._setArrayType([new A.Padding(B.EdgeInsets_0_0_0_8, t4, _null), t5, A.SwitchListTile$(t6.secondary, _null, new A._FileImportState_build_closure3(_this), _null, _null, A.Text$(t3 == null ? J.$index$asx(t2.$index(0, _s2_), _s11_) : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._importJsonData)], t7)); } if (_this._import_export$_isLoading) children.push(A.LinearProgressIndicator$()); else { t1 = t1.get$$import(t1); children.push(new A.AppButton(_null, B._MdiIconData_7vC0, t1.toUpperCase(), new A._FileImportState_build_closure4(_this), _null, _null)); } return A.FormCard$(_null, children, _null, B.CrossAxisAlignment_3, false, _null, false, _null); } }; A._FileImportState_uploadJsonFile_closure.prototype = { call$0() { return this.$this._import_export$_isLoading = true; }, $signature: 21 }; A._FileImportState_uploadJsonFile_closure0.prototype = { call$1(result) { var t1 = this.$this; t1.setState$1(new A._FileImportState_uploadJsonFile__closure0(t1)); A.showToast(this.localization.get$startedImport()); }, $signature: 7 }; A._FileImportState_uploadJsonFile__closure0.prototype = { call$0() { var t1 = this.$this; t1._import_export$_isLoading = false; return A.LinkedHashSet_LinkedHashSet$_literal([false, t1._multipartFiles.clear$0(0)], type$.void); }, $signature: 560 }; A._FileImportState_uploadJsonFile_closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._FileImportState_uploadJsonFile__closure(t1)); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, A.S(error)); }, $signature: 7 }; A._FileImportState_uploadJsonFile__closure.prototype = { call$0() { return this.$this._import_export$_isLoading = false; }, $signature: 21 }; A._FileImportState_uploadFile_closure.prototype = { call$0() { return this.$this._import_export$_isLoading = true; }, $signature: 21 }; A._FileImportState_uploadFile_closure0.prototype = { call$1(result) { var response, t1 = this.$this; t1.setState$1(new A._FileImportState_uploadFile__closure0(t1)); if (t1._widget.importType !== B.ImportType_csv) A.showToast(this.localization.get$startedImport()); else { response = $.$get$serializers().deserializeWith$1$2($.$get$_$preImportResponseSerializer(), result, type$.legacy_PreImportResponse); t1._widget.onUploaded$1(response); } }, $signature: 7 }; A._FileImportState_uploadFile__closure0.prototype = { call$0() { var t1 = this.$this; t1._import_export$_isLoading = false; return A.LinkedHashSet_LinkedHashSet$_literal([false, t1._multipartFiles.clear$0(0)], type$.void); }, $signature: 560 }; A._FileImportState_uploadFile_closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._FileImportState_uploadFile__closure(t1)); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, A.S(error)); }, $signature: 7 }; A._FileImportState_uploadFile__closure.prototype = { call$0() { return this.$this._import_export$_isLoading = false; }, $signature: 21 }; A._FileImportState_build_closure0.prototype = { call$1(value) { return this.$this._widget.onImportTypeChanged$1(value); }, $signature: 12 }; A._FileImportState_build_closure.prototype = { call$1(importType) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(A.S(importType)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, importType, type$.legacy_ImportType); }, $signature: 563 }; A._FileImportState_build_closure1.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t3, multipartFile, t1; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1._widget.importType === B.ImportType_json) t2 = "files"; else { t2 = $async$self.uploadPart; t2 = B.JSString_methods.$add("files[", t2.get$key(t2)) + "]"; } t3 = type$.JSArray_legacy_String; $async$goto = 2; return A._asyncAwait(A.pickFile(t1._widget.importType === B.ImportType_json ? A._setArrayType(["json", "zip"], t3) : A._setArrayType(["csv"], t3), t2, B.FileType_5), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) t1.setState$1(new A._FileImportState_build__closure1(t1, $async$self.uploadPart, multipartFile)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._FileImportState_build__closure1.prototype = { call$0() { var t1 = this.uploadPart; this.$this._multipartFiles.$indexSet(0, t1.get$key(t1), this.multipartFile); }, $signature: 1 }; A._FileImportState_build_closure2.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._FileImportState_build__closure0(t1, value)); }, $signature: 40 }; A._FileImportState_build__closure0.prototype = { call$0() { return this.$this._importJsonSettings = this.value; }, $signature: 21 }; A._FileImportState_build_closure3.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._FileImportState_build__closure(t1, value)); }, $signature: 40 }; A._FileImportState_build__closure.prototype = { call$0() { return this.$this._importJsonData = this.value; }, $signature: 21 }; A._FileImportState_build_closure4.prototype = { call$0() { var t1 = this.$this; if (t1._widget.importType === B.ImportType_json) t1.uploadJsonFile$0(); else t1.uploadFile$0(); }, $signature: 1 }; A._FileMapper.prototype = { createState$0() { return new A.__FileMapperState(A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_Map_of_legacy_int_and_legacy_String), B._StateLifecycle_0); }, onCancelPressed$0() { return this.onCancelPressed.call$0(); } }; A.__FileMapperState.prototype = { didChangeDependencies$0() { var t1, t2, t3, t4, t5, t6, t7, t8, i, field, t9, t10, possible, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (t2 = _this._widget.response.mappings._map$_map, t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2), t3 = type$.JSArray_legacy_String, t4 = _this._import_export$_mapping, t5 = type$.legacy_String, t6 = type$.legacy_int; t2.moveNext$0();) { t7 = t2.get$current(t2); t8 = t7.get$value(t7).headers._list; t8 = t8.length === 0 ? A.BuiltList_BuiltList$from(B.List_empty, t5) : t8[0]; if (!t4.containsKey$1(0, t7.get$key(t7))) t4.$indexSet(0, t7.get$key(t7), A.LinkedHashMap_LinkedHashMap$_empty(t6, t5)); for (t8 = t8._list, i = 0; i < t8.length; ++i) { field = t8[i]; for (t9 = t7.get$value(t7).available._list, t9 = new J.ArrayIterator(t9, t9.length, A._arrayInstanceType(t9)._eval$1("ArrayIterator<1>")); t9.moveNext$0();) { t10 = t9.__interceptors$_current; possible = B.JSArray_methods.get$last(t10.split(".")); possible.toString; if (B.JSArray_methods.contains$1(A._setArrayType([possible, A.stringReplaceAllUnchecked(possible, "_", " "), t1.lookup$1(possible)], t3), field.toLowerCase())) J.$indexSet$ax(t4.$index(0, t7.get$key(t7)), i, t10); } } } }, build$1(_, context) { var t4, children, t5, t6, t7, t8, t9, t10, t11, t0, t12, i, _this = this, _null = null, t1 = type$.legacy_AppLocalization, t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1), response = _this._widget.response, t3 = A.Theme_of(context).colorScheme; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, t1); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "first_row_as_column_names"); t4 = type$.JSArray_legacy_Widget; children = A._setArrayType([A.SwitchListTile$(t3.secondary, _null, new A.__FileMapperState_build_closure(_this), _null, _null, A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._useFirstRowAsHeaders)], t4); for (t1 = response.mappings._map$_map, t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1), t3 = _this._import_export$_mapping, t5 = type$.legacy_String; t1.moveNext$0();) { t6 = t1.get$current(t1); t7 = t2.lookup$1(t6.get$key(t6)); t8 = A.Theme_of(context).textTheme; t9 = _this._useFirstRowAsHeaders; t10 = t2.localeCode; if (t9) { t9 = $.$get$LocalizationsProvider__localizedValues(); t11 = J.$index$asx(t9.$index(0, t10), "column"); if (t11 == null) t11 = ""; t0 = t11; t11 = t9; t9 = t0; } else { t9 = $.$get$LocalizationsProvider__localizedValues(); t11 = J.$index$asx(t9.$index(0, t10), "sample"); if (t11 == null) t11 = ""; t0 = t11; t11 = t9; t9 = t0; } t12 = J.$index$asx(t11.$index(0, t10), "sample"); if (t12 == null) t12 = ""; t10 = J.$index$asx(t11.$index(0, t10), "map_to"); if (t10 == null) t10 = ""; t10 = A._setArrayType([new A.SizedBox(_null, 25, _null, _null), new A.Text(t7, _null, t8.titleMedium, _null, _null, _null, B.TextOverflow_0, _null, 1, _null, _null), new A.SizedBox(_null, 12, _null, _null), A.Row$(A._setArrayType([new A.Expanded(1, B.FlexFit_0, new A.Text(t9, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.Expanded(1, B.FlexFit_0, new A.Text(t12, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.Expanded(1, B.FlexFit_0, new A.Text(t10, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 12, _null, _null)], t4); i = 0; while (true) { t7 = t6.get$value(t6).headers._list; if (!(i < (t7.length === 0 ? A.BuiltList_BuiltList$from(B.List_empty, t5) : t7[0])._list.length)) break; t7 = t6.get$value(t6).headers._list; t7 = (t7.length === 0 ? A.BuiltList_BuiltList$from(B.List_empty, t5) : t7[0])._list[i]; t8 = t6.get$value(t6).headers._list; if ((t8.length < 2 ? A.BuiltList_BuiltList$from(B.List_empty, t5) : t8[1])._list.length > i) { t8 = t6.get$value(t6).headers._list; t8 = (t8.length < 2 ? A.BuiltList_BuiltList$from(B.List_empty, t5) : t8[1])._list[i]; } else t8 = _null; t9 = t6.get$value(t6).available; t11 = J.$index$asx(t3.$index(0, t6.get$key(t6)), i); if (t11 == null) t11 = ""; t10.push(new A._FieldMapper(t7, t8, t9, t11, new A.__FileMapperState_build_closure0(_this, t6, i), t3.$index(0, t6.get$key(t6)), _null)); ++i; } B.JSArray_methods.addAll$1(children, t10); } t1 = A._setArrayType([new A.SizedBox(_null, 25, _null, _null)], t4); if (_this._import_export$_isLoading) t1.push(A.LinearProgressIndicator$()); else t1.push(A.Row$(A._setArrayType([A.Expanded$(A.OutlinedButton$(A.Text$(t2.get$cancel(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__FileMapperState_build_closure1(_this), _null), 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.OutlinedButton$(A.Text$(t2.get$$import(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__FileMapperState_build_closure2(_this, context, t2), _null), 1)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); B.JSArray_methods.addAll$1(children, t1); return A.SingleChildScrollView$(new A.Padding(B.EdgeInsets_0_0_0_20, A.FormCard$(_null, children, _null, B.CrossAxisAlignment_0, false, _null, false, _null), _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); } }; A.__FileMapperState_build_closure.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A.__FileMapperState_build__closure3(t1, value)); }, $signature: 40 }; A.__FileMapperState_build__closure3.prototype = { call$0() { return this.$this._useFirstRowAsHeaders = this.value; }, $signature: 21 }; A.__FileMapperState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A.__FileMapperState_build__closure2(t1, this.entry, this.i, value)); }, $signature: 11 }; A.__FileMapperState_build__closure2.prototype = { call$0() { var _this = this, t1 = _this.$this, t2 = t1._import_export$_mapping, t3 = _this.entry; if (!t2.containsKey$1(0, t3.get$key(t3))) t2.$indexSet(0, t3.get$key(t3), A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_String)); J.$indexSet$ax(t2.$index(0, t3.get$key(t3)), _this.i, _this.value); t1._widget.formKey.get$currentState().validate$0(); }, $signature: 1 }; A.__FileMapperState_build_closure1.prototype = { call$0() { return this.$this._widget.onCancelPressed$0(); }, $signature: 9 }; A.__FileMapperState_build_closure2.prototype = { call$0() { var t2, state, credentials, t3, t4, convertedMapping, t5, t6, t7, t8, importRequest, t1 = this.$this; if (!t1._widget.formKey.get$currentState().validate$0()) return; t2 = this.context; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); t3 = type$.legacy_String; t4 = type$.legacy_ImportRequestMapping; convertedMapping = A.LinkedHashMap_LinkedHashMap$_empty(t3, t4); for (t5 = t1._import_export$_mapping, t5 = t5.get$entries(t5), t5 = t5.get$iterator(t5), t6 = type$.legacy_int; t5.moveNext$0();) { t7 = t5.get$current(t5); t8 = t7.get$key(t7); t7 = A.BuiltMap_BuiltMap(t7.get$value(t7), t6, t3); convertedMapping.$indexSet(0, t8, new A._$ImportRequestMapping(t7)); } t1.setState$1(new A.__FileMapperState_build__closure(t1)); t5 = t1._widget.response.hash; t6 = t1._useFirstRowAsHeaders; importRequest = A._$ImportRequest$_(A.BuiltMap_BuiltMap(convertedMapping, t3, t4), t5, t1._widget.importType.name, t6); new A.WebClient().post$3$data(credentials.url + "/import", credentials.token, B.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$importRequestSerializer(), importRequest))).then$1$1(0, new A.__FileMapperState_build__closure0(t1, this.localization), type$.Null).catchError$1(new A.__FileMapperState_build__closure1(t1, t2)); }, $signature: 1 }; A.__FileMapperState_build__closure.prototype = { call$0() { return this.$this._import_export$_isLoading = true; }, $signature: 21 }; A.__FileMapperState_build__closure0.prototype = { call$1(result) { var t1 = this.$this; t1.setState$1(new A.__FileMapperState_build___closure0(t1)); t1._widget.onCancelPressed$0(); A.showToast(this.localization.get$startedImport()); }, $signature: 7 }; A.__FileMapperState_build___closure0.prototype = { call$0() { return this.$this._import_export$_isLoading = false; }, $signature: 21 }; A.__FileMapperState_build__closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A.__FileMapperState_build___closure(t1)); A.showErrorDialog(false, this.context, A.S(error)); }, $signature: 7 }; A.__FileMapperState_build___closure.prototype = { call$0() { return this.$this._import_export$_isLoading = false; }, $signature: 21 }; A._FieldMapper.prototype = { build$1(_, context) { var t4, t5, t6, t7, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.available, t3 = t2._list, sorted = new A.CopyOnWriteList(true, t3, A._instanceType(t2)._eval$1("CopyOnWriteList<1>")); sorted.sort$1(0, new A._FieldMapper_build_closure(t1)); t2 = A.Expanded$(A.Text$(_this.field1, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t4 = _this.field2; t4 = A.Expanded$(A.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t5 = _this.mappedTo; t3 = B.JSArray_methods.contains$1(t3, t5) ? t5 : _null; t5 = type$.legacy_String; t6 = A._setArrayType([A.DropdownMenuItem$(new A.SizedBox(_null, _null, _null, _null), _null, "", t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); t7 = J.map$1$1$ax(sorted._copy_on_write_list$_list, new A._FieldMapper_build_closure0(t1), type$.legacy_DropdownMenuItem_legacy_String); B.JSArray_methods.addAll$1(t6, A.List_List$of(t7, true, t7.$ti._eval$1("ListIterable.E"))); return A.Row$(A._setArrayType([t2, t4, A.Expanded$(A.DropdownButtonFormField$(_null, true, true, t6, _this.onMappedToChanged, _null, new A._FieldMapper_build_closure1(_this, t1), t3, t5), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A._FieldMapper_build_closure.prototype = { call$2(fieldA, fieldB) { var t3, partsA = fieldA.split("."), partsB = fieldB.split("."), t1 = partsA[0], t2 = partsB[0]; if (J.$eq$(t1, t2)) { t1 = this.localization; return J.compareTo$1$ns(t1.lookup$1(partsA[1]), t1.lookup$1(partsB[1])); } t3 = this.localization; return J.compareTo$1$ns(t3.lookup$1(t1), t3.lookup$1(t2)); }, $signature: 19 }; A._FieldMapper_build_closure1.prototype = { call$1(value) { var t1; if ((value == null ? "" : value).length !== 0) { t1 = J.where$1$ax(J.get$values$x(this.$this.mapping), new A._FieldMapper_build__closure(value)); t1 = t1.get$length(t1) > 1; } else t1 = false; if (t1) { t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "duplicate_column_mapping"); if (t1 == null) t1 = ""; } else t1 = null; return t1; }, $signature: 15 }; A._FieldMapper_build__closure.prototype = { call$1(element) { return element == this.value; }, $signature: 16 }; A._FieldMapper_build_closure0.prototype = { call$1(field) { var fieldLabel, _null = null, t1 = this.localization, t2 = B.JSArray_methods.get$last(field.split(".")); t2.toString; fieldLabel = t1.lookup$1(A.stringReplaceAllUnchecked(t2, "_id", "")); return A.DropdownMenuItem$(A.Text$(A.S(t1.lookup$1(B.JSArray_methods.get$first(field.split(".")))) + " - " + A.S(fieldLabel), _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, field, type$.legacy_String); }, $signature: 43 }; A.ImportExportScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ImportExportScreen_build_closure(), A.import_export_vm_ImportExportVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ImportExportVM); } }; A.ImportExportScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ImportExport(null); }, $signature: 2684 }; A.ImportExportVM.prototype = {}; A.InvoiceDesign.prototype = { createState$0() { return new A._InvoiceDesignState(null, null, B._StateLifecycle_0); } }; A._InvoiceDesignState.prototype = { initState$0() { var state, settingsUIState, _this = this, t1 = {}; _this.super$State$initState(); state = _this._widget.viewModel.state; settingsUIState = state.uiState.settingsUIState; _this._invoice_design$_focusNode = A.FocusScopeNode$(true, null, false); t1.tabs = 6; B.JSArray_methods.forEach$1(A._setArrayType([B.EntityType_invoice, B.EntityType_quote, B.EntityType_credit, B.EntityType_task, B.EntityType_vendor, B.EntityType_purchaseOrder], type$.JSArray_legacy_EntityType), new A._InvoiceDesignState_initState_closure(t1, state)); t1 = t1.tabs; t1 = A.TabController$(null, settingsUIState.tabIndex, t1, _this); _this._invoice_design$_controller = t1; t1.addListener$1(0, _this.get$_invoice_design$_onTabChanged()); }, _invoice_design$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._invoice_design$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._invoice_design$_controller.removeListener$1(0, _this.get$_invoice_design$_onTabChanged()); _this._invoice_design$_controller.dispose$0(0); _this._invoice_design$_focusNode.dispose$0(0); _this.super$__InvoiceDesignState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, _this = this, _null = null, _s14_ = "client_details", _s15_ = "company_address", _s15_0 = "invoice_details", _s13_ = "quote_details", _s14_0 = "credit_details", _s14_1 = "vendor_details", _s2_ = "en", _s22_ = "purchase_order_details", _s15_1 = "product_columns", _s12_ = "task_columns", _s21_ = "purchase_order_design", _s18_ = "set_default_design", _s14_2 = "page_numbering", _s24_ = "page_numbering_alignment", _s17_ = "city_state_postal", _s17_0 = "postal_city_state", _s8_ = "quantity", _s3_ = "tax", _s8_0 = "discount", _s10_ = "line_total", _s16_ = "gross_line_total", _s17_1 = "custom_surcharge1", _s17_2 = "custom_surcharge2", _s17_3 = "custom_surcharge3", _s17_4 = "custom_surcharge4", store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company, t2 = state.uiState, t3 = t2.settingsUIState, t4 = t3.entityType === B.EntityType_company, t5 = t1.get$invoiceDesign(); t3 = t3.updatedAt; t6 = _this._invoice_design$_controller; t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = t1.localeCode; t9 = J.$index$asx(t7.$index(0, t8), "general_settings"); t9 = A.Tab$(_null, t9 == null ? "" : t9); t10 = J.$index$asx(t7.$index(0, t8), _s14_); t10 = A.Tab$(_null, t10 == null ? "" : t10); t11 = A.Tab$(_null, t1.get$companyDetails()); t12 = J.$index$asx(t7.$index(0, t8), _s15_); t13 = type$.JSArray_legacy_Widget; t12 = A._setArrayType([t9, t10, t11, A.Tab$(_null, t12 == null ? "" : t12)], t13); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t9 = J.$index$asx(t7.$index(0, t8), _s15_0); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t9 = J.$index$asx(t7.$index(0, t8), _s13_); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); } if (company.isModuleEnabled$1(B.EntityType_credit)) { t9 = J.$index$asx(t7.$index(0, t8), _s14_0); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); } if (company.isModuleEnabled$1(B.EntityType_vendor)) { t9 = J.$index$asx(t7.$index(0, t8), _s14_1); t12.push(A.Tab$(_null, t9 == null ? J.$index$asx(t7.$index(0, _s2_), _s14_1) : t9)); } if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) { t9 = J.$index$asx(t7.$index(0, t8), _s22_); t12.push(A.Tab$(_null, t9 == null ? J.$index$asx(t7.$index(0, _s2_), _s22_) : t9)); } t9 = J.$index$asx(t7.$index(0, t8), _s15_1); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); if (company.isModuleEnabled$1(B.EntityType_task)) { t9 = J.$index$asx(t7.$index(0, t8), _s12_); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); } t9 = J.$index$asx(t7.$index(0, t8), "total_fields"); t12.push(A.Tab$(_null, t9 == null ? "" : t9)); t3 = A.TabBar$(t6, _null, true, new A.ValueKey(t3, type$.ValueKey_legacy_int), _null, t12); t6 = _this._invoice_design$_controller; t9 = $.$get$_InvoiceDesignState__formKey(); t10 = _this._invoice_design$_focusNode; t11 = J.$index$asx(t7.$index(0, t8), "customize_and_preview"); if (t11 == null) t11 = ""; t12 = A._setArrayType([], t13); if (state.get$isHosted()) { t14 = state.userCompanyStates; t15 = t2.selectedCompanyIndex; t15 = t14._list[t15].userCompany.account.plan === "enterprise"; t14 = t15; } else t14 = true; if (!t14) { t14 = state.userCompanyStates; t15 = t2.selectedCompanyIndex; t15 = t14._list[t15].userCompany.account.plan === "pro"; t14 = t15; } else t14 = true; if (!t14) if (state.get$isHosted()) { t14 = state.userCompanyStates; t15 = t2.selectedCompanyIndex; t15 = t14._list[t15].userCompany.account.trialDaysLeft > 0; t14 = t15; } else t14 = false; else t14 = true; if (t14) { t14 = A._setArrayType([], t13); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t15 = A._setArrayType([new A.DesignPicker(new A._InvoiceDesignState_build_closure(_this, viewModel, settings), t1.get$invoiceDesign(), settings.defaultInvoiceDesignId, _null)], t13); if (t4) if (_this._wasInvoiceDesignChanged) { t16 = state.userCompanyStates; t17 = t2.selectedCompanyIndex; t17 = t16._list[t17].userCompany.isAdmin; t16 = t17; } else t16 = false; else t16 = false; if (t16) t15.push(new A.Padding(B.EdgeInsets_0_0_0_8, A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_2, _null, _null, new A._InvoiceDesignState_build_closure0(_this), A.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllInvoiceDesigns), _null)); B.JSArray_methods.addAll$1(t14, t15); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t15 = A._setArrayType([new A.DesignPicker(new A._InvoiceDesignState_build_closure1(_this, viewModel, settings), t1.get$quoteDesign(), settings.defaultQuoteDesignId, _null)], t13); if (t4) if (_this._wasQuoteDesignChanged) { t16 = state.userCompanyStates; t17 = t2.selectedCompanyIndex; t17 = t16._list[t17].userCompany.isAdmin; t16 = t17; } else t16 = false; else t16 = false; if (t16) t15.push(new A.Padding(B.EdgeInsets_0_0_0_8, A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_2, _null, _null, new A._InvoiceDesignState_build_closure2(_this), A.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllQuoteDesigns), _null)); B.JSArray_methods.addAll$1(t14, t15); } if (company.isModuleEnabled$1(B.EntityType_credit)) { t15 = A._setArrayType([new A.DesignPicker(new A._InvoiceDesignState_build_closure3(_this, viewModel, settings), t1.get$creditDesign(), settings.defaultCreditDesignId, _null)], t13); if (t4) if (_this._wasCreditDesignChanged) { t16 = state.userCompanyStates; t17 = t2.selectedCompanyIndex; t17 = t16._list[t17].userCompany.isAdmin; t16 = t17; } else t16 = false; else t16 = false; if (t16) t15.push(new A.Padding(B.EdgeInsets_0_0_0_8, A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_2, _null, _null, new A._InvoiceDesignState_build_closure4(_this), A.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllCreditDesigns), _null)); B.JSArray_methods.addAll$1(t14, t15); } if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) { t15 = J.$index$asx(t7.$index(0, t8), _s21_); if (t15 == null) t15 = J.$index$asx(t7.$index(0, _s2_), _s21_); t15 = A._setArrayType([new A.DesignPicker(new A._InvoiceDesignState_build_closure5(_this, viewModel, settings), t15, settings.defaultPurchaseOrderDesignId, _null)], t13); if (t4) if (_this._wasPurchaseOrderDesignChanged) { t4 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = t4._list[t2].userCompany.isAdmin; } else t2 = false; else t2 = false; if (t2) t15.push(new A.Padding(B.EdgeInsets_0_0_0_8, A.CheckboxListTile$(A.Theme_of(context).colorScheme.secondary, _null, B.ListTileControlAffinity_2, _null, _null, new A._InvoiceDesignState_build_closure6(_this), A.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllPurchaseOrderDesigns), _null)); B.JSArray_methods.addAll$1(t14, t15); } B.JSArray_methods.addAll$1(t12, t14); } else { t2 = J.$index$asx(t7.$index(0, t8), _s18_); if (t2 == null) t2 = J.$index$asx(t7.$index(0, _s2_), _s18_); t12.push(A.OutlinedButton$(A.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._InvoiceDesignState_build_closure7(store, state), _null)); } t2 = J.$index$asx(t7.$index(0, t8), "page_layout"); if (t2 == null) t2 = ""; t4 = settings.pageLayout; t14 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t15 = t14._eval$1("ListIterable.E"); t16 = type$.legacy_String; t12.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(B.List_portrait_landscape, new A._InvoiceDesignState_build_closure8(t1), t14), true, t15), _null, t2, new A._InvoiceDesignState_build_closure9(viewModel, settings), _null, false, t4, t16)); t4 = t1.get$pageSize(); t2 = settings.pageSize; t12.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(B.List_mRX, new A._InvoiceDesignState_build_closure10(t1), t14), true, t15), _null, t4, new A._InvoiceDesignState_build_closure11(viewModel, settings), _null, false, t2, t16)); t2 = t1.get$fontSize(t1); t4 = settings.fontSize; t4 = t4 == null ? "" : A.S(t4); t14 = type$.MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_String; t12.push(A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType([5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], type$.JSArray_legacy_int), new A._InvoiceDesignState_build_closure12(), t14), true, t14._eval$1("ListIterable.E")), _null, t2, new A._InvoiceDesignState_build_closure13(viewModel, settings), _null, false, t4, t16)); t12 = A.FormCard$(_null, t12, _null, B.CrossAxisAlignment_3, false, _null, false, _null); t4 = t1.get$primaryFont(); t4 = A.EntityDropdown$(true, false, false, settings.primaryFont, _null, $.$get$memoizedFontMap().call$1($.kGoogleFonts), B.EntityType_font, B.List_empty0, t4, _null, _null, new A._InvoiceDesignState_build_closure14(viewModel, settings), _null, _null, _null); t2 = t1.get$secondaryFont(); t2 = A.EntityDropdown$(true, false, false, settings.secondaryFont, _null, $.$get$memoizedFontMap().call$1($.kGoogleFonts), B.EntityType_font, B.List_empty0, t2, _null, _null, new A._InvoiceDesignState_build_closure15(viewModel, settings), _null, _null, _null); t14 = t1.get$primaryColor(); t14 = A.FormColorPicker$(settings.primaryColor, t14, new A._InvoiceDesignState_build_closure16(viewModel, settings)); t15 = t1.get$secondaryColor(); t15 = A.FormCard$(_null, A._setArrayType([new A.LearnMoreUrl(t4, "https://fonts.google.com", _null, _null), t2, t14, A.FormColorPicker$(settings.secondaryColor, t15, new A._InvoiceDesignState_build_closure17(viewModel, settings))], t13), _null, B.CrossAxisAlignment_0, false, _null, true, _null); t14 = J.$index$asx(t7.$index(0, t8), "empty_columns"); t2 = t14 == null ? "" : t14; t4 = settings.hideEmptyColumnsOnPdf; t14 = t1.get$show(t1); t4 = A.BoolDropdownButton$(t1.get$hide(), t14, _null, B._MdiIconData_Qa60, t2, _null, new A._InvoiceDesignState_build_closure18(viewModel, settings), t4 !== true); t2 = J.$index$asx(t7.$index(0, t8), _s14_2); if (t2 == null) t2 = J.$index$asx(t7.$index(0, _s2_), _s14_2); t14 = settings.pageNumbering; t17 = t1.get$show(t1); t14 = A.BoolDropdownButton$(t1.get$hide(), t17, _null, B.IconData_984386_MaterialIcons_null_false, t2, _null, new A._InvoiceDesignState_build_closure19(viewModel, settings), t14 === true); t2 = J.$index$asx(t7.$index(0, t8), _s24_); if (t2 == null) t2 = J.$index$asx(t7.$index(0, _s2_), _s24_); t17 = settings.pageNumberingAlignment; t18 = J.$index$asx(t7.$index(0, t8), "left"); t18 = A.DropdownMenuItem$(A.Text$(t18 == null ? J.$index$asx(t7.$index(0, _s2_), "left") : t18, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "L", t16); t19 = J.$index$asx(t7.$index(0, t8), "center"); t19 = A.DropdownMenuItem$(A.Text$(t19 == null ? J.$index$asx(t7.$index(0, _s2_), "center") : t19, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "C", t16); t8 = J.$index$asx(t7.$index(0, t8), "right"); t2 = A._setArrayType([new A.Padding(B.EdgeInsets_16_0_16_10, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t11.toUpperCase(), new A._InvoiceDesignState_build_closure20(state, context, store), _null, _null), _null), t12, t15, A.FormCard$(_null, A._setArrayType([t4, t14, A.AppDropdownButton$(_null, "", true, A._setArrayType([t18, t19, A.DropdownMenuItem$(A.Text$(t8 == null ? J.$index$asx(t7.$index(0, _s2_), "right") : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "R", t16)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t2, new A._InvoiceDesignState_build_closure21(viewModel, settings), _null, false, t17, t16)], t13), _null, _null, false, _null, false, _null)], t13); t4 = type$.JSArray_legacy_String; t7 = type$.MappedListIterable_of_legacy_String_and_legacy_String; t8 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "number", "id_number", "vat_number", "website", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure22(), t7), true, t16); B.JSArray_methods.addAll$1(t8, new A.MappedListIterable(A._setArrayType(["full_name", "email", "phone", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure23(), t7)); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "number", "vat_number", "address1", "address2", _s17_, "country", "phone"], t4), new A._InvoiceDesignState_build_closure24(), t7), true, t16); B.JSArray_methods.addAll$1(t11, new A.MappedListIterable(A._setArrayType(["email"], t4), new A._InvoiceDesignState_build_closure25(), t7)); t12 = settings.getFieldsForSection$1(_s14_); t12 = A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure26(viewModel, settings), t8, "client", t12), _null, _null, _null, false, _null, true, _null); t8 = t7._eval$1("ListIterable.E"); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "id_number", "vat_number", "website", "email", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure27(), t7), true, t8); t14 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "id_number", "vat_number", "website", "email", "phone"], t4), new A._InvoiceDesignState_build_closure28(), t7), true, t8); t15 = settings.getFieldsForSection$1("company_details"); t15 = A.FormCard$(A.MultiSelectList$(t1.get$addField(), t14, false, true, new A._InvoiceDesignState_build_closure29(viewModel, settings), t11, "company", t15), _null, _null, _null, false, _null, true, _null); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "id_number", "vat_number", "website", "email", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure30(), t7), true, t8); t14 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["address1", "address2", _s17_, "country"], t4), new A._InvoiceDesignState_build_closure31(), t7), true, t8); t17 = settings.getFieldsForSection$1(_s15_); t13 = A._setArrayType([new A.ScrollableListView(t2, _null, _null, _null), t12, t15, A.FormCard$(A.MultiSelectList$(t1.get$addField(), t14, false, true, new A._InvoiceDesignState_build_closure32(viewModel, settings), t11, "company", t17), _null, _null, _null, false, _null, true, _null)], t13); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "due_date", "amount", "balance", "balance_due", "custom1", "custom2", "custom3", "custom4", "project", "vendor"], t4), new A._InvoiceDesignState_build_closure33(), t7), true, t16); B.JSArray_methods.addAll$1(t2, new A.MappedListIterable(A._setArrayType(["balance"], t4), new A._InvoiceDesignState_build_closure34(), t7)); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "due_date", "total", "balance_due"], t4), new A._InvoiceDesignState_build_closure35(), t7), true, t8); t12 = settings.getFieldsForSection$1(_s15_0); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure36(viewModel, settings), t2, "invoice", t12), _null, _null, _null, false, _null, true, _null)); } if (company.isModuleEnabled$1(B.EntityType_quote)) { t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "valid_until", "total", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure37(), t7), true, t16); B.JSArray_methods.addAll$1(t2, new A.MappedListIterable(A._setArrayType(["balance"], t4), new A._InvoiceDesignState_build_closure38(), t7)); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "valid_until", "total"], t4), new A._InvoiceDesignState_build_closure39(), t7), true, t8); t12 = settings.getFieldsForSection$1(_s13_); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure40(viewModel, settings), t2, "quote", t12), _null, _null, _null, false, _null, true, _null)); } if (company.isModuleEnabled$1(B.EntityType_credit)) { t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "total", "balance", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure41(), t7), true, t16); B.JSArray_methods.addAll$1(t2, new A.MappedListIterable(A._setArrayType(["balance"], t4), new A._InvoiceDesignState_build_closure42(), t7)); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "po_number", "date", "balance", "total"], t4), new A._InvoiceDesignState_build_closure43(), t7), true, t8); t12 = settings.getFieldsForSection$1(_s14_0); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure44(viewModel, settings), t2, "credit", t12), _null, _null, _null, false, _null, true, _null)); } if (company.isModuleEnabled$1(B.EntityType_vendor)) { t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "number", "vat_number", "address1", "address2", _s17_, "country", "custom1", "custom2", "custom3", "custom4"], t4), new A._InvoiceDesignState_build_closure45(), t7), true, t16); B.JSArray_methods.addAll$1(t2, new A.MappedListIterable(A._setArrayType(["email"], t4), new A._InvoiceDesignState_build_closure46(), t7)); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["name", "number", "vat_number", "address1", "address2", _s17_], t4), new A._InvoiceDesignState_build_closure47(), t7), true, t16); B.JSArray_methods.addAll$1(t11, new A.MappedListIterable(A._setArrayType(["email"], t4), new A._InvoiceDesignState_build_closure48(), t7)); t12 = settings.getFieldsForSection$1(_s14_1); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure49(viewModel, settings), t2, "vendor", t12), _null, _null, _null, false, _null, true, _null)); } if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) { t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "date", "due_date", "total", "balance_due"], t4), new A._InvoiceDesignState_build_closure50(), t7), true, t16); t11 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["number", "date", "due_date", "total", "balance_due"], t4), new A._InvoiceDesignState_build_closure51(), t7), true, t8); t12 = settings.getFieldsForSection$1(_s22_); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure52(viewModel, settings), t2, "purchase_order", t12), _null, _null, _null, false, _null, true, _null)); } t2 = A._setArrayType(["item", "description"], t4); t11 = company.enableProductQuantity; if (t11) t2.push(_s8_); t2.push("unit_cost"); t12 = company.numberOfItemTaxRates > 0; if (t12) t2.push(_s3_); t14 = company.enableProductDiscount; if (t14) t2.push(_s8_0); t2.push(_s10_); t2.push("product1"); t2.push("product2"); t2.push("product3"); t2.push("product4"); t2.push(_s16_); t2 = A.List_List$of(new A.MappedListIterable(t2, new A._InvoiceDesignState_build_closure53(), t7), true, t8); t15 = A._setArrayType(["item", "description", "unit_cost"], t4); if (t11) t15.push(_s8_); if (t14) t15.push(_s8_0); if (t12) t15.push(_s3_); t15.push(_s10_); t11 = A.List_List$of(new A.MappedListIterable(t15, new A._InvoiceDesignState_build_closure54(), t7), true, t8); t15 = settings.getFieldsForSection$1(_s15_1); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure55(viewModel, settings), t2, "product", t15), _null, _null, _null, false, _null, true, _null)); if (company.isModuleEnabled$1(B.EntityType_task)) { t2 = A._setArrayType(["service", "description", "hours", "rate"], t4); if (t12) t2.push(_s3_); if (t14) t2.push(_s8_0); t2.push(_s10_); t2.push("task1"); t2.push("task2"); t2.push("task3"); t2.push("task4"); t2.push(_s16_); t2 = A.List_List$of(new A.MappedListIterable(t2, new A._InvoiceDesignState_build_closure56(), t7), true, t8); t11 = A._setArrayType(["service", "description", "rate", "hours"], t4); if (t14) t11.push(_s8_0); if (t12) t11.push(_s3_); t11.push(_s10_); t11 = A.List_List$of(new A.MappedListIterable(t11, new A._InvoiceDesignState_build_closure57(), t7), true, t8); t12 = settings.getFieldsForSection$1(_s12_); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t11, false, true, new A._InvoiceDesignState_build_closure58(viewModel, settings), t2, "task", t12), _null, _null, _null, false, _null, true, _null)); } t2 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["subtotal", "net_subtotal", "discount", "line_taxes", "total_taxes", _s17_1, _s17_2, _s17_3, _s17_4, "paid_to_date", "total", "outstanding"], t4), new A._InvoiceDesignState_build_closure59(), t7), true, t8); t8 = A.List_List$of(new A.MappedListIterable(A._setArrayType(["subtotal", "discount", _s17_1, _s17_2, _s17_3, _s17_4, "total_taxes", "line_taxes", "total", "paid_to_date", "outstanding"], t4), new A._InvoiceDesignState_build_closure60(), t7), true, t8); t7 = settings.getFieldsForSection$1("total_columns"); t13.push(A.FormCard$(A.MultiSelectList$(t1.get$addField(), t8, false, true, new A._InvoiceDesignState_build_closure61(viewModel, settings), t2, "total", t7), _null, _null, _null, false, _null, true, _null)); return A.EditScaffold$(_null, t3, new A.AppTabForm(t10, t9, t13, t6, _null, _null), _null, _null, _null, false, _null, _null, new A._InvoiceDesignState_build_closure62(_this, viewModel), _null, t5); } }; A._InvoiceDesignState_initState_closure.prototype = { call$1(entityType) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; if (t1.userCompanyStates._list[t2].userCompany.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, $signature: 191 }; A._InvoiceDesignState_build_closure62.prototype = { call$1(context) { var t1 = A._setArrayType([], type$.JSArray_legacy_EntityType), t2 = this.$this; if (t2._updateAllInvoiceDesigns) t1.push(B.EntityType_invoice); if (t2._updateAllQuoteDesigns) t1.push(B.EntityType_quote); if (t2._updateAllCreditDesigns) t1.push(B.EntityType_credit); if (t2._updateAllPurchaseOrderDesigns) t1.push(B.EntityType_purchaseOrder); this.viewModel.onSavePressed.call$2(context, t1); }, $signature: 14 }; A._InvoiceDesignState_build_closure20.prototype = { call$0() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].designState.get$customDesigns().length === 0 ? A.createEntity(_null, _null, this.context, A.DesignEntity_DesignEntity(_null, _null, t1), false) : this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "custom_designs", false, _null)); }, $signature: 0 }; A._InvoiceDesignState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoiceDesignState_build__closure19(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure20(value))); }, $signature: 153 }; A._InvoiceDesignState_build__closure19.prototype = { call$0() { this.$this._wasInvoiceDesignChanged = true; }, $signature: 1 }; A._InvoiceDesignState_build__closure20.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultInvoiceDesignId = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._InvoiceDesignState_build__closure18(t1, value)); }, $signature: 40 }; A._InvoiceDesignState_build__closure18.prototype = { call$0() { return this.$this._updateAllInvoiceDesigns = this.value; }, $signature: 21 }; A._InvoiceDesignState_build_closure1.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoiceDesignState_build__closure16(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure17(value))); }, $signature: 153 }; A._InvoiceDesignState_build__closure16.prototype = { call$0() { this.$this._wasQuoteDesignChanged = true; }, $signature: 1 }; A._InvoiceDesignState_build__closure17.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultQuoteDesignId = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure2.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._InvoiceDesignState_build__closure15(t1, value)); }, $signature: 40 }; A._InvoiceDesignState_build__closure15.prototype = { call$0() { return this.$this._updateAllQuoteDesigns = this.value; }, $signature: 21 }; A._InvoiceDesignState_build_closure3.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoiceDesignState_build__closure13(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure14(value))); }, $signature: 153 }; A._InvoiceDesignState_build__closure13.prototype = { call$0() { this.$this._wasCreditDesignChanged = true; }, $signature: 1 }; A._InvoiceDesignState_build__closure14.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultCreditDesignId = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure4.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._InvoiceDesignState_build__closure12(t1, value)); }, $signature: 40 }; A._InvoiceDesignState_build__closure12.prototype = { call$0() { return this.$this._updateAllCreditDesigns = this.value; }, $signature: 21 }; A._InvoiceDesignState_build_closure5.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._InvoiceDesignState_build__closure10(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure11(value))); }, $signature: 153 }; A._InvoiceDesignState_build__closure10.prototype = { call$0() { this.$this._wasPurchaseOrderDesignChanged = true; }, $signature: 1 }; A._InvoiceDesignState_build__closure11.prototype = { call$1(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultPurchaseOrderDesignId = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure6.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._InvoiceDesignState_build__closure9(t1, value)); }, $signature: 40 }; A._InvoiceDesignState_build__closure9.prototype = { call$0() { return this.$this._updateAllPurchaseOrderDesigns = this.value; }, $signature: 21 }; A._InvoiceDesignState_build_closure7.prototype = { call$0() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.company; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(t2, null, null, null, false, "company_details", false, 3)); }, $signature: 1 }; A._InvoiceDesignState_build_closure9.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure8(value))); }, $signature: 12 }; A._InvoiceDesignState_build__closure8.prototype = { call$1(b) { b.get$_settings_model$_$this()._pageLayout = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure8.prototype = { call$1(pageLayout) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(pageLayout), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, pageLayout, type$.legacy_String); }, $signature: 43 }; A._InvoiceDesignState_build_closure11.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure7(value))); }, $signature: 12 }; A._InvoiceDesignState_build__closure7.prototype = { call$1(b) { b.get$_settings_model$_$this()._pageSize = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure10.prototype = { call$1(pageSize) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(pageSize), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, pageSize, type$.legacy_String); }, $signature: 43 }; A._InvoiceDesignState_build_closure13.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure6(value))); }, $signature: 12 }; A._InvoiceDesignState_build__closure6.prototype = { call$1(b) { var t1 = A.int_parse(this.value, null); b.get$_settings_model$_$this()._fontSize = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure12.prototype = { call$1(fontSize) { var _null = null, t1 = A.S(fontSize), t2 = fontSize === 0 ? new A.SizedBox(_null, _null, _null, _null) : A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.DropdownMenuItem$(t2, _null, t1, type$.legacy_String); }, $signature: 456 }; A._InvoiceDesignState_build_closure14.prototype = { call$1(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure5(font))); }, $signature: 61 }; A._InvoiceDesignState_build__closure5.prototype = { call$1(b) { var t1 = this.font; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._primaryFont = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure15.prototype = { call$1(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure4(font))); }, $signature: 61 }; A._InvoiceDesignState_build__closure4.prototype = { call$1(b) { var t1 = this.font; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._secondaryFont = t1; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure16.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure3(value))); }, $signature: 5 }; A._InvoiceDesignState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._primaryColor = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure17.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure2(value))); }, $signature: 5 }; A._InvoiceDesignState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._secondaryColor = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure18.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure1(value))); }, $signature: 10 }; A._InvoiceDesignState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._hideEmptyColumnsOnPdf = !this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure19.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure0(value))); }, $signature: 10 }; A._InvoiceDesignState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._pageNumbering = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure21.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure(value))); }, $signature: 12 }; A._InvoiceDesignState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._pageNumberingAlignment = this.value; return b; }, $signature: 13 }; A._InvoiceDesignState_build_closure22.prototype = { call$1(field) { return "$client." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure23.prototype = { call$1(field) { return "$contact." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure24.prototype = { call$1(field) { return "$client." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure25.prototype = { call$1(field) { return "$contact." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure26.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("client_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure27.prototype = { call$1(field) { return "$company." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure28.prototype = { call$1(field) { return "$company." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure29.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("company_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure30.prototype = { call$1(field) { return "$company." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure31.prototype = { call$1(field) { return "$company." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure32.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("company_address", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure33.prototype = { call$1(field) { return "$invoice." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure34.prototype = { call$1(field) { return "$client." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure35.prototype = { call$1(field) { return "$invoice." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure36.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("invoice_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure37.prototype = { call$1(field) { return "$quote." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure38.prototype = { call$1(field) { return "$client." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure39.prototype = { call$1(field) { return "$quote." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure40.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("quote_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure41.prototype = { call$1(field) { return "$credit." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure42.prototype = { call$1(field) { return "$client." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure43.prototype = { call$1(field) { return "$credit." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure44.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("credit_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure45.prototype = { call$1(field) { return "$vendor." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure46.prototype = { call$1(field) { return "$contact." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure47.prototype = { call$1(field) { return "$vendor." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure48.prototype = { call$1(field) { return "$contact." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure49.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("vendor_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure50.prototype = { call$1(field) { return "$credit." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure51.prototype = { call$1(field) { return "$purchase_order." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure52.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("purchase_order_details", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure53.prototype = { call$1(field) { return "$product." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure54.prototype = { call$1(field) { return "$product." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure55.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("product_columns", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure56.prototype = { call$1(field) { return "$task." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure57.prototype = { call$1(field) { return "$task." + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure58.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("task_columns", values)); }, $signature: 104 }; A._InvoiceDesignState_build_closure59.prototype = { call$1(field) { return "$" + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure60.prototype = { call$1(field) { return "$" + A.S(field); }, $signature: 15 }; A._InvoiceDesignState_build_closure61.prototype = { call$1(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("total_columns", values)); }, $signature: 104 }; A.__InvoiceDesignState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.InvoiceDesignScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.InvoiceDesignScreen_build_closure(), A.invoice_design_vm_InvoiceDesignVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceDesignVM); } }; A.InvoiceDesignScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.InvoiceDesign(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2685 }; A.InvoiceDesignVM.prototype = { get$company() { return this.company; } }; A.InvoiceDesignVM_fromStore_closure.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.InvoiceDesignVM_fromStore_closure0.prototype = { call$2(context, entityTypes) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.InvoiceDesignVM_fromStore__closure(this.store, context, this.state, entityTypes).call$0(); }, $signature: 2686 }; A.InvoiceDesignVM_fromStore__closure.prototype = { call$0() { var t2, t3, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; t3 = type$.Null; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, t3); completer.future.then$1$1(0, new A.InvoiceDesignVM_fromStore___closure(_this.state, t1, _this.entityTypes), t3); t3 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t3)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.InvoiceDesignVM_fromStore___closure.prototype = { call$1(value) { var t2, t1 = this.state, credentials = t1.get$credentials(t1); t1 = A._lateReadCheck(this.store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; B.JSArray_methods.forEach$1(this.entityTypes, new A.InvoiceDesignVM_fromStore____closure(new A.WebClient(), credentials.url + "/designs/set/default", credentials, t2._list[t1].userCompany.company.settings)); }, $signature: 3 }; A.InvoiceDesignVM_fromStore____closure.prototype = { call$1(entityType) { var _this = this, t1 = type$.legacy_String; _this.webClient.post$3$data(_this.url, _this.credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.toSnakeCase(entityType.name), "design_id", _this.settings.getDesignId$1(entityType)], t1, t1))).then$1$1(0, new A.InvoiceDesignVM_fromStore_____closure(), type$.Null).catchError$1(new A.InvoiceDesignVM_fromStore_____closure0()); }, $signature: 191 }; A.InvoiceDesignVM_fromStore_____closure.prototype = { call$1(response) { var t1 = $.$get$navigatorKey(); t1.toString; A.showToast(A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings()); }, $signature: 7 }; A.InvoiceDesignVM_fromStore_____closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showErrorDialog(false, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), A.S(error)); }, $signature: 7 }; A.LocalizationSettings.prototype = { createState$0() { return new A._LocalizationSettingsState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._LocalizationSettingsState.prototype = { initState$0() { var settingsUIState, t1, _this = this; _this.super$State$initState(); _this._localization_settings$_focusNode = A.FocusScopeNode$(true, null, false); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = A.TabController$(null, settingsUIState.entityType !== B.EntityType_company ? 0 : settingsUIState.tabIndex, 2, _this); _this._localization_settings$_controller = t1; t1.addListener$1(0, _this.get$_localization_settings$_onTabChanged()); }, _localization_settings$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._localization_settings$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._localization_settings$_controller.removeListener$1(0, _this.get$_localization_settings$_onTabChanged()); _this._localization_settings$_controller.dispose$0(0); _this._localization_settings$_focusNode.dispose$0(0); B.JSArray_methods.forEach$1(_this._localization_settings$_controllers, new A._LocalizationSettingsState_dispose_closure(_this)); _this.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { var _this = this, t1 = A._setArrayType([_this._localization_settings$_firstNameController], type$.JSArray_legacy_TextEditingController); _this._localization_settings$_controllers = t1; B.JSArray_methods.forEach$1(t1, new A._LocalizationSettingsState_didChangeDependencies_closure(_this)); B.JSArray_methods.forEach$1(_this._localization_settings$_controllers, new A._LocalizationSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _localization_settings$_onChanged$0() { }, build$1(_, context) { var t2, t3, customLabels, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, _s13_ = "decimal_comma", _s26_ = "use_comma_as_decimal_place", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company, translations = settings.translations; if (translations == null) { t2 = type$.legacy_String; translations = A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2); } t2 = $.kCustomLabels; t3 = A._arrayInstanceType(t2)._eval$1("WhereIterable<1>"); customLabels = A.List_List$of(new A.WhereIterable(t2, new A._LocalizationSettingsState_build_closure(translations), t3), true, t3._eval$1("Iterable.E")); B.JSArray_methods.sort$1(customLabels, new A._LocalizationSettingsState_build_closure0(t1)); t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = t1.localeCode; t4 = J.$index$asx(t3.$index(0, t2), "localization"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = state.uiState.settingsUIState.entityType === B.EntityType_company; if (!t6) t7 = _null; else { t7 = _this._localization_settings$_controller; t8 = A.Tab$(_null, t1.get$settings()); t9 = J.$index$asx(t3.$index(0, t2), "custom_labels"); t7 = A.TabBar$(t7, _null, false, _null, _null, A._setArrayType([t8, A.Tab$(_null, t9 == null ? "" : t9)], type$.JSArray_legacy_Widget)); } t8 = $.$get$_LocalizationSettingsState__formKey(); t9 = _this._localization_settings$_focusNode; t10 = _this._localization_settings$_controller; t11 = $.$get$memoizedCurrencyList(); t12 = state.staticState; t11 = t11.call$1(t12.currencyMap); t13 = t1.get$currency(); t14 = settings.currencyId; t13 = A.EntityDropdown$(true, false, false, t14, t11, _null, B.EntityType_currency, B.List_empty0, t13, _null, _null, new A._LocalizationSettingsState_build_closure1(viewModel, settings), _null, _null, _null); t11 = settings.showCurrencyCode; t15 = J.$index$asx(t3.$index(0, t2), "currency_format"); if (t15 == null) t15 = ""; t16 = B.JSString_methods.$add(t1.get$code(t1) + ": ", A.formatNumber(1000, context, _null, t14, B.FormatNumberType_0, true, true, false)); t17 = J.$index$asx(t3.$index(0, t2), "symbol"); if (t17 == null) t17 = ""; t18 = type$.JSArray_legacy_Widget; t11 = A._setArrayType([t13, A.BoolDropdownButton$(B.JSString_methods.$add(t17 + ": ", A.formatNumber(1000, context, _null, t14, B.FormatNumberType_0, true, false, false)), t16, _null, _null, t15, _null, new A._LocalizationSettingsState_build_closure2(viewModel, settings), t11)], t18); if (A.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com") { t13 = J.$index$asx(t3.$index(0, t2), "help_translate"); if (t13 == null) t13 = ""; t14 = $.$get$memoizedLanguageList().call$1(t12.languageMap); t15 = t1.get$language(t1); t11.push(new A.LearnMoreUrl(A.EntityDropdown$(true, false, false, settings.languageId, t14, _null, B.EntityType_language, B.List_empty0, t15, _null, _null, new A._LocalizationSettingsState_build_closure3(viewModel, settings), _null, _null, _null), "https://www.transifex.com/invoice-ninja/invoice-ninja", t13, _null)); } t13 = $.$get$memoizedTimezoneList().call$1(t12.timezoneMap); t14 = t1.get$timezone(); t11.push(A.EntityDropdown$(true, false, false, settings.timezoneId, t13, _null, B.EntityType_timezone, B.List_empty0, t14, _null, _null, new A._LocalizationSettingsState_build_closure4(viewModel, settings), _null, _null, _null)); t12 = $.$get$memoizedDateFormatList().call$1(t12.dateFormatMap); t14 = t1.get$dateFormat(); t11.push(A.EntityDropdown$(true, false, false, settings.dateFormatId, t12, _null, B.EntityType_dateFormat, B.List_empty0, t14, _null, _null, new A._LocalizationSettingsState_build_closure5(viewModel, settings), _null, _null, _null)); t14 = t1.get$militaryTime(); t12 = J.$index$asx(t3.$index(0, t2), "military_time_help"); if (t12 == null) t12 = ""; t11.push(A.BoolDropdownButton$(_null, _null, t12, B._MdiIconData_90Y0, t14, _null, new A._LocalizationSettingsState_build_closure6(viewModel, settings), settings.enableMilitaryTime)); if (t6) { t12 = company.useCommaAsDecimalPlace; t13 = J.$index$asx(t3.$index(0, t2), _s13_); t13 = A.Text$(t13 == null ? J.$index$asx(t3.$index(0, "en"), _s13_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = J.$index$asx(t3.$index(0, t2), _s26_); t14 = A.Text$(t14 == null ? J.$index$asx(t3.$index(0, "en"), _s26_) : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t15 = A.Theme_of(context).colorScheme; t16 = A.getLayout(context) === B.AppLayout_desktop ? A.Icon$(B._MdiIconData_omH, _null, _null) : _null; t11.push(A.SwitchListTile$(t15.secondary, _null, new A._LocalizationSettingsState_build_closure7(viewModel, company), t16, t14, t13, t12)); } t11 = A._setArrayType([A.FormCard$(_null, t11, _null, _null, false, _null, false, _null)], t18); if (t6) { t6 = J.$index$asx(t3.$index(0, t2), "first_month_of_the_year"); if (t6 == null) t6 = ""; t12 = company.firstMonthOfYear; t13 = type$.legacy_String; t14 = B.Map_tOd65.map$2$1(0, new A._LocalizationSettingsState_build_closure8(t1), t13, type$.legacy_DropdownMenuItem_legacy_String); t14 = t14.get$values(t14); t11.push(A.FormCard$(_null, A._setArrayType([A.AppDropdownButton$(_null, "", true, A.List_List$of(t14, true, A._instanceType(t14)._eval$1("Iterable.E")), _null, t6, new A._LocalizationSettingsState_build_closure9(viewModel, company), _null, false, t12, t13)], t18), _null, _null, false, _null, true, _null)); } t6 = A._arrayInstanceType(customLabels)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t6 = A.List_List$of(new A.MappedListIterable(customLabels, new A._LocalizationSettingsState_build_closure10(t1), t6), true, t6._eval$1("ListIterable.E")); t2 = J.$index$asx(t3.$index(0, t2), "select_label"); t2 = A._setArrayType([A.Row$(A._setArrayType([new A.DropdownButtonHideUnderline(A.DropdownButton$(_null, 8, A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 24, false, false, 48, t6, new A._LocalizationSettingsState_build_closure11(viewModel, settings), _null, _null, _null, _null, type$.legacy_String), _null), new A.SizedBox(8, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, A.Wrap$(B.WrapAlignment_1, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$addCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._LocalizationSettingsState_build_closure12(context, viewModel, settings, t1), _null), A.TextButton$(false, A.Text$(t1.get$addCountry(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._LocalizationSettingsState_build_closure13(context, state, viewModel, settings), _null)], t18), B.Clip_0, B.WrapCrossAlignment_0, 0), _null)], t18), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null), new A.SizedBox(_null, 16, _null, _null)], t18); for (t3 = translations.get$keys(translations), t6 = t3._map, t3 = A.LinkedHashMapKeyIterator$(t6, t6._modifications, A._instanceType(t3)._precomputed1), t6 = type$.ValueKey_legacy_String, t12 = translations._map$_map; t3.moveNext$0();) { t13 = t3.__js_helper$_current; t14 = J.startsWith$1$s(t13, "country_") ? t13.split("_")[1] : t1.lookup$1(t13); t15 = t12.$index(0, t13); if (t15 == null) t15 = ""; t2.push(A.Row$(A._setArrayType([new A.Expanded(1, B.FlexFit_0, new A.Text(t14, _null, _null, _null, _null, _null, B.TextOverflow_2, _null, 1, _null, _null), _null), new A.Expanded(1, B.FlexFit_0, A.TextFormField$(true, _null, false, _null, _null, B.InputDecoration_C4W, _null, false, _null, t15, _null, new A.ValueKey("__" + t13 + "__", t6), _null, 1, _null, false, new A._LocalizationSettingsState_build_closure14(viewModel, settings, t13), _null, _null, _null, false, _null, _null, B.TextAlign_4, _null, _null), _null), new A.SizedBox(16, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_57704_MaterialIcons_null_false, _null, _null, _null), _null, new A._LocalizationSettingsState_build_closure15(viewModel, settings, t13), B.EdgeInsets_8_8_8_8, _null, _null, _null)], t18), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); } return A.EditScaffold$(_null, t7, new A.AppTabForm(t9, t8, A._setArrayType([new A.ScrollableListView(t11, _null, _null, _null), new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t2, _null, B.CrossAxisAlignment_0, false, _null, true, _null)], t18), _null, _null, _null)], t18), t10, _null, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._LocalizationSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_localization_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._LocalizationSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_localization_settings$_onChanged()); }, $signature: 12 }; A._LocalizationSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_localization_settings$_onChanged()); }, $signature: 12 }; A._LocalizationSettingsState_build_closure.prototype = { call$1(key) { var t1 = this.translations; return !t1.get$keys(t1)._map.containsKey$1(0, key); }, $signature: 16 }; A._LocalizationSettingsState_build_closure0.prototype = { call$2(a, b) { var t1 = this.localization; return J.compareTo$1$ns(t1.lookup$1(a), t1.lookup$1(b)); }, $signature: 19 }; A._LocalizationSettingsState_build_closure1.prototype = { call$1(currency) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure13(currency))); }, $signature: 61 }; A._LocalizationSettingsState_build__closure13.prototype = { call$1(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._currencyId = t1; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure12(value))); }, $signature: 10 }; A._LocalizationSettingsState_build__closure12.prototype = { call$1(b) { b.get$_settings_model$_$this()._showCurrencyCode = this.value; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure3.prototype = { call$1(language) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure11(language))); }, $signature: 61 }; A._LocalizationSettingsState_build__closure11.prototype = { call$1(b) { var t1 = this.language; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._languageId = t1; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure4.prototype = { call$1(timezone) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure10(timezone))); }, $signature: 61 }; A._LocalizationSettingsState_build__closure10.prototype = { call$1(b) { var t1 = this.timezone; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._timezoneId = t1; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure5.prototype = { call$1(dateFormat) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure9(dateFormat))); }, $signature: 61 }; A._LocalizationSettingsState_build__closure9.prototype = { call$1(b) { var t1 = this.dateFormat; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._dateFormatId = t1; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure6.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure8(value))); }, $signature: 10 }; A._LocalizationSettingsState_build__closure8.prototype = { call$1(b) { b.get$_settings_model$_$this()._enableMilitaryTime = this.value; return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure7.prototype = { call$1(value) { this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._LocalizationSettingsState_build__closure7(value))); }, $signature: 20 }; A._LocalizationSettingsState_build__closure7.prototype = { call$1(b) { b.get$_company_model$_$this()._useCommaAsDecimalPlace = this.value; return b; }, $signature: 23 }; A._LocalizationSettingsState_build_closure9.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._LocalizationSettingsState_build__closure6(value))); }, $signature: 12 }; A._LocalizationSettingsState_build__closure6.prototype = { call$1(b) { b.get$_company_model$_$this()._firstMonthOfYear = this.value; return b; }, $signature: 23 }; A._LocalizationSettingsState_build_closure8.prototype = { call$2(id, month) { var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(month), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 483 }; A._LocalizationSettingsState_build_closure10.prototype = { call$1(key) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, key, type$.legacy_String); }, $signature: 43 }; A._LocalizationSettingsState_build_closure11.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure5(value))); }, $signature: 11 }; A._LocalizationSettingsState_build__closure5.prototype = { call$1(b) { b.get$translations().$indexSet(0, this.value, ""); return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure12.prototype = { call$0() { var _this = this, _null = null, t1 = _this.localization, t2 = t1.get$label(t1), t3 = t1.get$addCustom(); t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "labels"); if (t1 == null) t1 = ""; A.fieldCallback(new A._LocalizationSettingsState_build__closure3(_this.viewModel, _this.settings), _this.context, t2, _null, A._setArrayType([A.TextButton$(false, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._LocalizationSettingsState_build__closure4(), _null)], type$.JSArray_legacy_TextButton), t3); }, $signature: 1 }; A._LocalizationSettingsState_build__closure3.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build___closure(value))); }, $signature: 11 }; A._LocalizationSettingsState_build___closure.prototype = { call$1(b) { b.get$translations().$indexSet(0, this.value, ""); return b; }, $signature: 13 }; A._LocalizationSettingsState_build__closure4.prototype = { call$0() { return A.launch("https://github.com/invoiceninja/invoiceninja/blob/master/resources/lang/en/texts.php", null, false); }, $signature: 26 }; A._LocalizationSettingsState_build_closure13.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, countryId; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.showDialog(null, true, new A._LocalizationSettingsState_build__closure1(), $async$self.context, null, true, type$.legacy_String), $async$call$0); case 2: // returning from await. countryId = $async$result; if (countryId.length !== 0) $async$self.viewModel.onSettingsChanged.call$1($async$self.settings.rebuild$1(new A._LocalizationSettingsState_build__closure2("country_" + $async$self.state.staticState.countryMap._map$_map.$index(0, countryId).name))); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._LocalizationSettingsState_build__closure1.prototype = { call$1(context) { return new A._AddCompanyDialog(null); }, $signature: 2687 }; A._LocalizationSettingsState_build__closure2.prototype = { call$1(b) { b.get$translations().$indexSet(0, this.key, ""); return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure14.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure0(this.key, value))); }, $signature: 5 }; A._LocalizationSettingsState_build__closure0.prototype = { call$1(b) { b.get$translations().$indexSet(0, this.key, J.trim$0$s(this.value)); return b; }, $signature: 13 }; A._LocalizationSettingsState_build_closure15.prototype = { call$0() { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure(this.key))); }, $signature: 1 }; A._LocalizationSettingsState_build__closure.prototype = { call$1(b) { b.get$translations().get$_safeMap().remove$1(0, this.key); return b; }, $signature: 13 }; A._AddCompanyDialog.prototype = { createState$0() { return new A._AddCompanyDialogState(B._StateLifecycle_0); } }; A._AddCompanyDialogState.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = A.Text$(t1.get$addCountry(), _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._AddCompanyDialogState_build_closure(context), _null), A.TextButton$(false, A.Text$(t1.get$submit(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._AddCompanyDialogState_build_closure0(this, context), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, A.EntityDropdown$(true, false, true, _null, $.$get$memoizedCountryList().call$1(state.staticState.countryMap), _null, B.EntityType_country, B.List_empty0, t1.get$country(t1), _null, _null, new A._AddCompanyDialogState_build_closure1(this), _null, _null, _null), B.EdgeInsets_24_20_24_24, _null, _null, t2); } }; A._AddCompanyDialogState_build_closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._AddCompanyDialogState_build_closure0.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, this.$this._localization_settings$_countryId); }, $signature: 1 }; A._AddCompanyDialogState_build_closure1.prototype = { call$1(country) { this.$this._localization_settings$_countryId = country.get$id(country); }, $signature: 34 }; A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.LocalizationScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.LocalizationScreen_build_closure(), A.localization_vm_LocalizationSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_LocalizationSettingsVM); } }; A.LocalizationScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.LocalizationSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2688 }; A.LocalizationSettingsVM.prototype = { get$company() { return this.company; } }; A.LocalizationSettingsVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.LocalizationSettingsVM_fromStore_closure.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.LocalizationSettingsVM_fromStore_closure1.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.LocalizationSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.LocalizationSettingsVM_fromStore__closure.prototype = { call$0() { var t2, t3, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; t3 = t2.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState); completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); completer.future.then$1$1(0, new A.LocalizationSettingsVM_fromStore___closure(t3, t1), type$.dynamic); t3 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t3)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.LocalizationSettingsVM_fromStore___closure.prototype = { call$1(value) { var t2, t1 = this.appBuilder; t1.rebuild$0(); t2 = new A._Future($.Zone__current, type$._Future_dynamic); t2.then$1$1(0, new A.LocalizationSettingsVM_fromStore____closure(t1), type$.void); this.store.get$_dispatchers()[0].call$1(new A.RefreshData(new A._AsyncCompleter(t2, type$._AsyncCompleter_dynamic), false, true, false)); }, $signature: 3 }; A.LocalizationSettingsVM_fromStore____closure.prototype = { call$1(value) { return this.appBuilder.rebuild$0(); }, $signature: 83 }; A.PaymentSettings.prototype = { createState$0() { return new A._PaymentSettingsState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._PaymentSettingsState.prototype = { initState$0() { this.super$State$initState(); this._payment_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, didChangeDependencies$0() { var t3, _this = this, t1 = _this._minimumAmountController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._payment_settings$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._PaymentSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.settings.clientPortalUnderPaymentMinimum; t3 = _this._framework$_element; t3.toString; t1.set$text(0, A.formatNumber(t2, t3, null, null, B.FormatNumberType_4, true, null, false)); B.JSArray_methods.forEach$1(_this._payment_settings$_controllers, new A._PaymentSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { this._payment_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, _payment_settings$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.settings, settings = t1.rebuild$1(new A._PaymentSettingsState__onChanged_closure(this)); if (!J.$eq$(settings, t1)) viewModel.onSettingsChanged.call$1(settings); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _null = null, _s16_ = "payment_settings", _s24_ = "enable_applying_payments", _s29_ = "enable_applying_payments_help", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), _s16_); if (t4 == null) t4 = J.$index$asx(t2.$index(0, "en"), _s16_); t5 = viewModel.onSavePressed; t6 = $.$get$_PaymentSettingsState__formKey(); t7 = this._payment_settings$_focusNode; t8 = J.$index$asx(t2.$index(0, t3), "auto_bill_on"); if (t8 == null) t8 = ""; t9 = settings.autoBillDate; t10 = type$.legacy_String; t11 = type$.JSArray_legacy_DropdownMenuItem_legacy_String; t9 = A.AppDropdownButton$(_null, "", true, A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$sendDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "on_send_date", t10), A.DropdownMenuItem$(A.Text$(t1.get$dueDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "on_due_date", t10)], t11), _null, t8, new A._PaymentSettingsState_build_closure(viewModel, settings), _null, false, t9, t10); t8 = J.$index$asx(t2.$index(0, t3), "use_available_credits"); t1 = t8 == null ? "" : t8; t8 = settings.useCreditsPayment; t12 = J.$index$asx(t2.$index(0, t3), "always"); t12 = A.DropdownMenuItem$(A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "always", t10); t13 = J.$index$asx(t2.$index(0, t3), "show_option"); t13 = A.DropdownMenuItem$(A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "option", t10); t14 = J.$index$asx(t2.$index(0, t3), "off"); t15 = type$.JSArray_legacy_Widget; t10 = A._setArrayType([t9, A.AppDropdownButton$(_null, "", true, A._setArrayType([t12, t13, A.DropdownMenuItem$(A.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "off", t10)], t11), _null, t1, new A._PaymentSettingsState_build_closure0(viewModel, settings), _null, false, t8, t10), new A.SizedBox(_null, 16, _null, _null)], t15); if (state.uiState.settingsUIState.entityType === B.EntityType_company) { t1 = J.$index$asx(t2.$index(0, t3), _s24_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s24_); t8 = company.enableApplyingPayments; t9 = J.$index$asx(t2.$index(0, t3), _s29_); if (t9 == null) t9 = J.$index$asx(t2.$index(0, "en"), _s29_); t10.push(A.BoolDropdownButton$(_null, _null, t9, _null, t1, _null, new A._PaymentSettingsState_build_closure1(viewModel, company), t8)); } t1 = J.$index$asx(t2.$index(0, t3), "allow_over_payment"); if (t1 == null) t1 = ""; t8 = settings.clientPortalAllowOverPayment; t9 = J.$index$asx(t2.$index(0, t3), "allow_over_payment_help"); if (t9 == null) t9 = ""; t10.push(A.BoolDropdownButton$(_null, _null, t9, _null, t1, _null, new A._PaymentSettingsState_build_closure2(viewModel, settings), t8)); t8 = J.$index$asx(t2.$index(0, t3), "allow_under_payment"); t1 = t8 == null ? "" : t8; t8 = settings.clientPortalAllowUnderPayment; t9 = J.$index$asx(t2.$index(0, t3), "allow_under_payment_help"); if (t9 == null) t9 = ""; t10.push(A.BoolDropdownButton$(_null, _null, t9, _null, t1, _null, new A._PaymentSettingsState_build_closure3(viewModel, settings), t8)); if (t8 === true) { t1 = J.$index$asx(t2.$index(0, t3), "minimum_under_payment_amount"); if (t1 == null) t1 = ""; t10.push(new A.Padding(B.EdgeInsets_0_16_0_0, A.DecoratedFormField$(false, _null, false, false, this._minimumAmountController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t1, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)); } t1 = A.FormCard$(_null, t10, _null, _null, false, _null, false, _null); t3 = J.$index$asx(t2.$index(0, t3), "configure_gateways"); t2 = t3 == null ? "" : t3; return A.EditScaffold$(_null, _null, new A.AppForm(t6, A._setArrayType([t1, new A.Padding(B.EdgeInsets_16_0_16_0, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t2.toUpperCase(), new A._PaymentSettingsState_build_closure4(viewModel, context), _null, _null), _null)], t15), _null, t7, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._PaymentSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_payment_settings$_onChanged()); }, $signature: 12 }; A._PaymentSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_payment_settings$_onChanged()); }, $signature: 12 }; A._PaymentSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = A.parseDouble(this.$this._minimumAmountController._change_notifier$_value.text, false); b.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum = t1; return b; }, $signature: 13 }; A._PaymentSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure3(value))); }, $signature: 12 }; A._PaymentSettingsState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoBillDate = this.value; return b; }, $signature: 13 }; A._PaymentSettingsState_build_closure0.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure2(value))); }, $signature: 7 }; A._PaymentSettingsState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._useCreditsPayment = this.value; return b; }, $signature: 13 }; A._PaymentSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._PaymentSettingsState_build__closure1(value))); }, $signature: 10 }; A._PaymentSettingsState_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._enableApplyingPayments = this.value; return b; }, $signature: 23 }; A._PaymentSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure0(value))); }, $signature: 10 }; A._PaymentSettingsState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientPortalAllowOverPayment = this.value; return b; }, $signature: 13 }; A._PaymentSettingsState_build_closure3.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure(value))); }, $signature: 10 }; A._PaymentSettingsState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientPortalAllowUnderPayment = this.value; return b; }, $signature: 13 }; A._PaymentSettingsState_build_closure4.prototype = { call$0() { return this.viewModel.onConfigureGatewaysPressed.call$1(this.context); }, $signature: 9 }; A.PaymentsSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.PaymentsSettingsScreen_build_closure(), A.payment_settings_vm_PaymentSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentSettingsVM); } }; A.PaymentsSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.PaymentSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2689 }; A.PaymentSettingsVM.prototype = { get$company() { return this.company; } }; A.PaymentSettingsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.PaymentSettingsVM_fromStore_closure1.prototype = { call$1(settings) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 480 }; A.PaymentSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.PaymentSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.PaymentSettingsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.PaymentSettingsVM_fromStore_closure2.prototype = { call$1(context) { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "company_gateways", false, _null)); }, $signature: 14 }; A.ProductSettings.prototype = { createState$0() { return new A._ProductSettingsState(new A.Debouncer(500, true), new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._ProductSettingsState.prototype = { initState$0() { this.super$State$initState(); this._product_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, didChangeDependencies$0() { var t3, _this = this, t1 = _this._stockThresholdController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._product_settings$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._ProductSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = t3._list[t2].userCompany.company.stockNotificationThreshold; if (t2 === 0) t2 = ""; else { t3 = _this._framework$_element; t3.toString; t3 = A.formatNumber(t2, t3, null, null, B.FormatNumberType_2, true, null, false); t2 = t3; } t1.set$text(0, t2); B.JSArray_methods.forEach$1(_this._product_settings$_controllers, new A._ProductSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._product_settings$_focusNode.dispose$0(0); B.JSArray_methods.forEach$1(_this._product_settings$_controllers, new A._ProductSettingsState_dispose_closure(_this)); _this.super$State$dispose(0); }, _product_settings$_onChanged$0() { var _this = this, company = _this._widget.viewModel.company.rebuild$1(new A._ProductSettingsState__onChanged_closure(_this)); if (!J.$eq$(company, _this._widget.viewModel.company)) _this._product_settings$_debouncer.run$1(new A._ProductSettingsState__onChanged_closure0(_this, company)); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, _s15_ = "track_inventory", _s2_ = "en", _s20_ = "track_inventory_help", _s24_ = "stock_notifications_help", _s24_0 = "show_product_description", _s29_ = "show_product_description_help", _s10_ = "convert_to", _s15_0 = "client_currency", _s16_ = "company_currency", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "product_settings"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = $.$get$_ProductSettingsState__formKey(); t7 = this._product_settings$_focusNode; t8 = A.Theme_of(context).colorScheme; t9 = J.$index$asx(t2.$index(0, t3), _s15_); t9 = A.Text$(t9 == null ? J.$index$asx(t2.$index(0, _s2_), _s15_) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = company.trackInventory; t11 = J.$index$asx(t2.$index(0, t3), _s20_); t8 = A.SwitchListTile$(t8.secondary, _null, new A._ProductSettingsState_build_closure(viewModel, company), _null, A.Text$(t11 == null ? J.$index$asx(t2.$index(0, _s2_), _s20_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, t10); t9 = A.Theme_of(context).colorScheme; t11 = A.Text$(t1.get$stockNotifications(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = company.stockNotification; t13 = J.$index$asx(t2.$index(0, t3), _s24_); t14 = type$.JSArray_legacy_Widget; t11 = A._setArrayType([t8, A.SwitchListTile$(t9.secondary, _null, new A._ProductSettingsState_build_closure0(viewModel, company), _null, A.Text$(t13 == null ? J.$index$asx(t2.$index(0, _s2_), _s24_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, t12)], t14); if (t10 && t12) t11.push(A.DecoratedFormField$(false, _null, false, false, this._stockThresholdController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t1.get$notificationThreshold(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t8 = A.FormCard$(_null, t11, _null, _null, false, _null, false, _null); t9 = A.Theme_of(context).colorScheme; t10 = J.$index$asx(t2.$index(0, t3), "show_product_discount"); t10 = A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.enableProductDiscount; t12 = J.$index$asx(t2.$index(0, t3), "show_product_discount_help"); t9 = A.SwitchListTile$(t9.secondary, _null, new A._ProductSettingsState_build_closure1(viewModel, company), _null, A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11); t10 = A.Theme_of(context).colorScheme; t11 = J.$index$asx(t2.$index(0, t3), "show_product_cost"); t11 = A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = company.enableProductCost; t13 = J.$index$asx(t2.$index(0, t3), "show_cost_help"); t10 = A.SwitchListTile$(t10.secondary, _null, new A._ProductSettingsState_build_closure2(viewModel, company), _null, A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, t12); t11 = A.Theme_of(context).colorScheme; t12 = J.$index$asx(t2.$index(0, t3), "show_product_quantity"); t12 = A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.enableProductQuantity; t15 = J.$index$asx(t2.$index(0, t3), "show_product_quantity_help"); t11 = A.SwitchListTile$(t11.secondary, _null, new A._ProductSettingsState_build_closure3(viewModel, company), _null, A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12, t13); t12 = A.Theme_of(context).colorScheme; t1 = A.Text$(t1.get$defaultQuantity(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.defaultQuantity; t15 = J.$index$asx(t2.$index(0, t3), "default_quantity_help"); t1 = A.FormCard$(_null, A._setArrayType([t9, t10, t11, A.SwitchListTile$(t12.secondary, _null, new A._ProductSettingsState_build_closure4(viewModel, company), _null, A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, t13)], t14), _null, _null, false, _null, false, _null); t9 = A.Theme_of(context).colorScheme; t10 = J.$index$asx(t2.$index(0, t3), _s24_0); t10 = A.Text$(t10 == null ? J.$index$asx(t2.$index(0, _s2_), _s24_0) : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.showProductDetails; t12 = J.$index$asx(t2.$index(0, t3), _s29_); t9 = A.SwitchListTile$(t9.secondary, _null, new A._ProductSettingsState_build_closure5(viewModel, company), _null, A.Text$(t12 == null ? J.$index$asx(t2.$index(0, _s2_), _s29_) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11); t10 = A.Theme_of(context).colorScheme; t11 = J.$index$asx(t2.$index(0, t3), "fill_products"); t11 = A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = company.fillProducts; t13 = J.$index$asx(t2.$index(0, t3), "fill_products_help"); t10 = A.SwitchListTile$(t10.secondary, _null, new A._ProductSettingsState_build_closure6(viewModel, company), _null, A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, t12); t11 = A.Theme_of(context).colorScheme; t12 = J.$index$asx(t2.$index(0, t3), "update_products"); t12 = A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.updateProducts; t15 = J.$index$asx(t2.$index(0, t3), "update_products_help"); t11 = A.SwitchListTile$(t11.secondary, _null, new A._ProductSettingsState_build_closure7(viewModel, company), _null, A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12, t13); t12 = A.Theme_of(context).colorScheme; t13 = J.$index$asx(t2.$index(0, t3), "convert_products"); t13 = A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t15 = company.convertProductExchangeRate; t16 = J.$index$asx(t2.$index(0, t3), "convert_products_help"); t12 = A.SwitchListTile$(t12.secondary, _null, new A._ProductSettingsState_build_closure8(viewModel, company), _null, A.Text$(t16 == null ? "" : t16, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13, t15); t13 = J.$index$asx(t2.$index(0, t3), _s10_); if (t13 == null) t13 = J.$index$asx(t2.$index(0, _s2_), _s10_); t15 = company.convertRateToClient; t16 = J.$index$asx(t2.$index(0, t3), _s15_0); if (t16 == null) t16 = J.$index$asx(t2.$index(0, _s2_), _s15_0); t3 = J.$index$asx(t2.$index(0, t3), _s16_); t2 = t3 == null ? J.$index$asx(t2.$index(0, _s2_), _s16_) : t3; return A.EditScaffold$(_null, _null, new A.AppForm(t6, A._setArrayType([t8, t1, A.FormCard$(_null, A._setArrayType([t9, t10, t11, t12, new A.Padding(B.EdgeInsets_16_0_16_0, A.BoolDropdownButton$(t2, t16, _null, _null, t13, _null, new A._ProductSettingsState_build_closure9(viewModel, company), t15), _null)], t14), _null, _null, false, _null, true, _null)], t14), _null, t7, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._ProductSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_product_settings$_onChanged()); }, $signature: 12 }; A._ProductSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_product_settings$_onChanged()); }, $signature: 12 }; A._ProductSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_product_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._ProductSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = A.parseInt(J.trim$0$s(this.$this._stockThresholdController._change_notifier$_value.text), false); b.get$_company_model$_$this()._stockNotificationThreshold = t1; return b; }, $signature: 23 }; A._ProductSettingsState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onCompanyChanged.call$1(this.company); }, $signature: 1 }; A._ProductSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure9(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure9.prototype = { call$1(b) { b.get$_company_model$_$this()._trackInventory = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure8(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure8.prototype = { call$1(b) { b.get$_company_model$_$this()._stockNotification = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure7(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure7.prototype = { call$1(b) { b.get$_company_model$_$this()._enableProductDiscount = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure6(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure6.prototype = { call$1(b) { b.get$_company_model$_$this()._enableProductCost = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure3.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure5(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure5.prototype = { call$1(b) { b.get$_company_model$_$this()._enableProductQuantity = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure4.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure4(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure4.prototype = { call$1(b) { b.get$_company_model$_$this()._defaultQuantity = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure5.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure3(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._showProductDetails = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure6.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure2(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure2.prototype = { call$1(b) { b.get$_company_model$_$this()._fillProducts = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure7.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure1(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._updateProducts = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure8.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure0(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure0.prototype = { call$1(b) { b.get$_company_model$_$this()._convertProductExchangeRate = this.value; return b; }, $signature: 23 }; A._ProductSettingsState_build_closure9.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure(value))); }, $signature: 10 }; A._ProductSettingsState_build__closure.prototype = { call$1(b) { b.get$_company_model$_$this()._convertRateToClient = this.value; return b; }, $signature: 23 }; A.ProductSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.ProductSettingsScreen_build_closure(), A.product_settings_vm_ProductSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductSettingsVM); } }; A.ProductSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.ProductSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2690 }; A.ProductSettingsVM.prototype = { get$company() { return this.company; } }; A.ProductSettingsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.ProductSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ProductSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.ProductSettingsVM_fromStore__closure.prototype = { call$0() { var t1 = this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState, t2 = this.context, completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; A.SettingsList.prototype = { createState$0() { return new A._SettingsListState(B._StateLifecycle_0); } }; A._SettingsListState.prototype = { initState$0() { this.super$State$initState(); this._settings_list$_scrollController = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { this._settings_list$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t0, _this = this, _null = null, _s12_ = "user_details", _s15_ = "device_settings", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = _this._widget.viewModel.state, t2 = state.uiState, settingsUIState = t2.settingsUIState, t3 = settingsUIState.entityType, showAll = t3 === B.EntityType_company; if (state.get$credentials(state).token.length === 0) return new A.SizedBox(_null, _null, _null, _null); t2 = t2.selectedCompanyIndex; t4 = state.userCompanyStates._list; if (!t4[t2].userCompany.isAdmin) { t1 = _this._widget.viewModel; t2 = type$.JSArray_legacy_Widget; t2 = A._setArrayType([new A.ScrollableListView(A._setArrayType([new A.SettingsListTile(_s12_, t1, _null), new A.SettingsListTile(_s15_, t1, _null)], t2), _null, _null, _null)], t2); if (state.isLoading) t2.push(A.LinearProgressIndicator$()); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t2, _null); } else { t5 = settingsUIState.filter; if (t5 != null) return new A.SettingsSearch(_this._widget.viewModel, t5, _null); } t5 = _this._settings_list$_scrollController; t6 = type$.JSArray_legacy_Widget; t7 = A._setArrayType([], t6); if (!showAll) { t8 = t3 === B.EntityType_group ? settingsUIState.group.id : settingsUIState.client.id; t9 = _this._widget; if (t3 === B.EntityType_client) { t10 = t9.viewModel; t11 = t10.onViewClientPressed; t0 = t11; t11 = t10; t10 = t0; } else { t10 = t9.viewModel; t11 = t10.onViewGroupPressed; t0 = t11; t11 = t10; t10 = t0; } t9.toString; t7.push(A.Container$(_null, new A.ListFilterMessage(t8, t3, t10, t11.onClearSettingsFilterPressed, true, _null), B.Clip_0, B.MaterialAccentColor_Map_iTsEs_4294945600, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); } t3 = A.Theme_of(context).backgroundColor; t1.toString; t8 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t9 = J.$index$asx(t8.$index(0, t1), "basic_settings"); if (t9 == null) t9 = ""; t7.push(A.Container$(_null, A.Text$(t9, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyMedium, _null, _null, _null), B.Clip_0, t3, _null, _null, _null, _null, _null, _null, B.EdgeInsets_19_16_0_16, _null, _null, _null)); t7.push(new A.SettingsListTile("company_details", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile(_s12_, _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("localization", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("payment_settings", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("tax_settings", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("product_settings", _this._widget.viewModel, _null)); if (t4[t2].userCompany.company.isModuleEnabled$1(B.EntityType_task)) t7.push(new A.SettingsListTile("task_settings", _this._widget.viewModel, _null)); if (showAll && t4[t2].userCompany.company.isModuleEnabled$1(B.EntityType_expense)) t7.push(new A.SettingsListTile("expense_settings", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("workflow_settings", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("import_export", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile(_s15_, _this._widget.viewModel, _null)); if (showAll && t4[t2].userCompany.isOwner) t7.push(new A.SettingsListTile("account_management", _this._widget.viewModel, _null)); t2 = A.Theme_of(context).backgroundColor; t1 = J.$index$asx(t8.$index(0, t1), "advanced_settings"); if (t1 == null) t1 = ""; t7.push(A.Container$(_null, A.Text$(t1, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyMedium, _null, _null, _null), B.Clip_0, t2, _null, _null, _null, _null, _null, _null, B.EdgeInsets_19_16_0_16, _null, _null, _null)); t7.push(new A.SettingsListTile("invoice_design", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("custom_fields", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("generated_numbers", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("client_portal", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("email_settings", _this._widget.viewModel, _null)); t7.push(new A.SettingsListTile("templates_and_reminders", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("group_settings", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("subscriptions", _this._widget.viewModel, _null)); if (showAll) t7.push(new A.SettingsListTile("user_management", _this._widget.viewModel, _null)); t1 = A._setArrayType([new A.ScrollableListView(t7, t5, _null, _null)], t6); if (state.isLoading) t1.push(A.LinearProgressIndicator$()); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); } }; A.SettingsListTile.prototype = { build$1(_, context) { var icon, t3, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.section; if (t2 === "device_settings") icon = A.getLayout(context) === B.AppLayout_mobile ? B.IconData_58531_MaterialIcons_null_false : B._MdiIconData_7T11; else icon = A.getSettingIcon(t2); t3 = A.Theme_of(context).cardColor; t4 = this.viewModel.state.uiState.containsRoute$1("/" + t2) && A.getLayout(context) === B.AppLayout_desktop; t5 = A.getLayout(context); return A.Container$(_null, new A.SelectedIndicator(A.ListTile$(false, _null, t5 === B.AppLayout_desktop, _null, true, _null, _null, false, _null, new A.Padding(B.EdgeInsets_6_2_0_0, A.Icon$(icon, _null, 22), _null), _null, new A.SettingsListTile_build_closure(this, context), false, _null, _null, _null, _null, A.Text$(t1.lookup$1(t2), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyLarge.copyWith$1$fontSize(14), _null, _null, _null), _null, _null), t4, false, _null), B.Clip_0, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; A.SettingsListTile_build_closure.prototype = { call$0() { var t1 = this.$this; return t1.viewModel.loadSection.call$3(this.context, t1.section, 0); }, $signature: 9 }; A.SettingsSearch.prototype = { build$1(_, context) { var company, t4, map, t5, i, t6, t7, _i, field, t8, t9, _null = null, _s8_ = "company1", _s8_0 = "company2", _s8_1 = "company3", _s8_2 = "company4", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = t3._list[t2].userCompany.company; t2 = type$.JSArray_legacy_String; t3 = A._setArrayType(["name", "id_number", "vat_number", "website", "email", "phone", "size", "industry"], t2); if (company.getCustomFieldLabel$1(_s8_).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_)); if (company.getCustomFieldLabel$1(_s8_0).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_0)); if (company.getCustomFieldLabel$1(_s8_1).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_1)); if (company.getCustomFieldLabel$1(_s8_2).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_2)); t4 = type$.JSArray_legacy_List_legacy_String; map = A.LinkedHashMap_LinkedHashMap$_literal(["company_details", A._setArrayType([t3, A._setArrayType(["address", "postal_code", "country"], t2), A._setArrayType(["logo"], t2), A._setArrayType(["defaults", "auto_bill", "payment_type", "payment_terms", "online_payment_email", "manual_payment_email", "invoice_terms", "invoice_footer", "quote_terms", "quote_footer", "credit_terms", "credit_footer", "use_quote_terms"], t2), A._setArrayType(["default_documents"], t2)], t4), "user_details", A._setArrayType([A._setArrayType(["first_name", "last_name", "email", "phone", "password", "accent_color", "connect_google", "connect_gmail", "enable_two_factor"], t2), A._setArrayType(["notifications"], t2)], t4), "localization", A._setArrayType([A._setArrayType(["currency", "language", "timezone", "date_format", "military_time", "decimal_comma", "first_month_of_the_year"], t2), A._setArrayType(["custom_labels"], t2)], t4), "payment_settings", A._setArrayType([A._setArrayType(["company_gateways", "auto_bill_on", "use_available_credits", "enable_applying_payments", "allow_over_payment", "allow_under_payment"], t2)], t4), "tax_settings", A._setArrayType([A._setArrayType(["tax_settings"], t2)], t4), "tax_settings_rates", A._setArrayType([A._setArrayType(["tax_rates", "inclusive_taxes"], t2)], t4), "product_settings", A._setArrayType([A._setArrayType(["track_inventory", "stock_notifications", "show_product_discount", "show_product_cost", "fill_products", "update_products", "convert_products"], t2)], t4), "task_settings", A._setArrayType([A._setArrayType(["task_settings", "auto_start_tasks", "show_tasks_table", "client_portal"], t2)], t4), "task_status", A._setArrayType([A._setArrayType(["task_statuses"], t2)], t4), "expense_settings", A._setArrayType([A._setArrayType(["should_be_invoiced", "mark_paid", "inclusive_taxes"], t2)], t4), "expense_category", A._setArrayType([A._setArrayType(["expense_categories"], t2)], t4), "workflow_settings", A._setArrayType([A._setArrayType(["auto_email_invoice", "stop_on_unpaid", "auto_archive_paid_invoices", "auto_archive_cancelled_invoices", "lock_invoices"], t2), A._setArrayType(["auto_convert"], t2)], t4), "import_export", A._setArrayType([A._setArrayType(["import", "export"], t2)], t4), "device_settings", A._setArrayType([A._setArrayType(["long_press_multiselect", "biometric_authentication", "enable_flexible_search", "enable_tooltips", "show_pdf_preview", "refresh_data"], t2), A._setArrayType(["dark_mode", "custom_colors"], t2)], t4), "account_management", A._setArrayType([A._setArrayType(["activate_company", "enable_markdown", "include_drafts", "api_tokens", "api_webhooks", "purge_data", "delete_company"], t2), A._setArrayType(["enabled_modules"], t2), A._setArrayType(["google_analytics"], t2), A._setArrayType(["password_timeout", "web_session_timeout"], t2)], t4), "invoice_design", A._setArrayType([A._setArrayType(["invoice_design", "quote_design", "page_size", "font_size", "primary_font", "secondary_font", "primary_color", "secondary_color", "empty_columns"], t2)], t4), "custom_designs", A._setArrayType([A._setArrayType(["custom_designs"], t2)], t4), "custom_fields", A._setArrayType([A._setArrayType(["custom_fields"], t2)], t4), "generated_numbers", A._setArrayType([A._setArrayType(["number_padding", "number_counter", "recurring_prefix", "reset_counter", "invoice_number", "client_number", "credit_number", "payment_number"], t2)], t4), "client_portal", A._setArrayType([A._setArrayType(["client_portal", "dashboard", "portal_mode", "subdomain", "domain", "client_document_upload", "vendor_document_upload"], t2), A._setArrayType(["client_registration"], t2), A._setArrayType(["enable_portal_password", "show_accept_invoice_terms", "show_accept_quote_terms", "require_invoice_signature", "require_quote_signature"], t2), A._setArrayType(["messages"], t2), A._setArrayType(["custom_css"], t2)], t4), "email_settings", A._setArrayType([A._setArrayType(["send_from_gmail", "email_design", "from_name", "reply_to_email", "reply_to_name", "bcc_email", "attach_pdf", "attach_documents", "attach_ubl", "email_signature"], t2)], t4), "templates_and_reminders", A._setArrayType([A._setArrayType(["template", "send_reminders", "late_fees"], t2)], t4), "group_settings", A._setArrayType([A._setArrayType(["groups"], t2)], t4), "subscriptions", A._setArrayType([A._setArrayType(["subscriptions"], t2)], t4), "user_management", A._setArrayType([A._setArrayType(["users"], t2)], t4)], type$.legacy_String, type$.legacy_List_legacy_List_legacy_String); t4 = A._setArrayType([], type$.JSArray_legacy_Widget); for (t2 = A.LinkedHashMapKeyIterator$(map, map._modifications, A._instanceType(map)._precomputed1), t3 = this.filter; t2.moveNext$0();) { t5 = t2.__js_helper$_current; for (i = 0; i < map.$index(0, t5).length; ++i) for (t6 = map.$index(0, t5)[i], t7 = t6.length, _i = 0; _i < t6.length; t6.length === t7 || (0, A.throwConcurrentModificationError)(t6), ++_i) { field = t6[_i]; t8 = t1.lookup$1(field).toLowerCase(); t9 = t3.toLowerCase(); if (A.stringContainsUnchecked(t8, t9, 0)) { t8 = t1.lookup$1(field); t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, new A.Padding(B.EdgeInsets_6_10_0_0, new A.Icon(A.getSettingIcon(t5), 22, _null, _null), _null), _null, new A.SettingsSearch_build_closure(this, context, t5, i), false, _null, _null, new A.Text(t1.lookup$1(t5), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.Text(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); } } } return new A.ScrollableListView(t4, _null, _null, _null); } }; A.SettingsSearch_build_closure.prototype = { call$0() { var _this = this; return _this.$this.viewModel.loadSection.call$3(_this.context, _this.section, _this.i); }, $signature: 9 }; A.SettingsListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SettingsListBuilder_build_closure(), A.settings_list_vm_SettingsListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SettingsListVM); } }; A.SettingsListBuilder_build_closure.prototype = { call$2(context, viewModel) { return new A.SettingsList(viewModel, null); }, $signature: 2691 }; A.SettingsListVM.prototype = {}; A.SettingsListVM_fromStore_closure.prototype = { call$3(context, section, tabIndex) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany; t1 = t2.company; t2 = t2.user; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(t1, null, null, t2, false, section, false, tabIndex)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 2692 }; A.SettingsListVM_fromStore_closure2.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearSettingsFilter()); }, $signature: 9 }; A.SettingsListVM_fromStore_closure1.prototype = { call$1(context) { A.viewEntity(false, this.settingsUIState.client, null, false); }, $signature: 14 }; A.SettingsListVM_fromStore_closure0.prototype = { call$1(context) { A.viewEntity(false, this.settingsUIState.group, null, false); }, $signature: 14 }; A.SettingsScreen.prototype = { build$1(_, context) { var _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), t1 = A._lateReadCheck(store.__Store__state, "_state").uiState.settingsUIState, t2 = t1.filterClearedAt, t3 = A._setArrayType([], type$.JSArray_legacy_String); t1 = t1.filter; return A.ListScaffold$(A._setArrayType([], type$.JSArray_legacy_Widget), B.List_empty12, new A.ListFilter(B.EntityType_settings, t1, new A.SettingsScreen_build_closure(store), t3, _null, _null, _null, new A.ValueKey("__cleared_at_" + t2 + "__", type$.ValueKey_legacy_String)), new A.SettingsListBuilder(_null), _null, B.EntityType_settings, _null, 0, _null, _null, _null); } }; A.SettingsScreen_build_closure.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterSettings(value)); }, $signature: 11 }; A.SettingsScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SettingsScreenBuilder_build_closure(), A.settings_screen_vm_SettingsScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SettingsScreenVM); } }; A.SettingsScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.SettingsScreen(null); }, $signature: 2693 }; A.SettingsScreenVM.prototype = {}; A.SettingsWizard.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._SettingsWizardState(t1, new A.Debouncer(1500, false), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.WebClient(), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); }, get$user(receiver) { return this.user; } }; A._SettingsWizardState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._settings_wizard$_firstNameController; t1.set$text(0, _this._widget.user.firstName); t2 = _this._settings_wizard$_lastNameController; t2.set$text(0, _this._widget.user.lastName); _this._settings_wizard$_controllers = A._setArrayType([_this._settings_wizard$_nameController, t1, t2, _this._settings_wizard$_subdomainController], type$.JSArray_legacy_TextEditingController); }, dispose$0(_) { this._settings_wizard$_focusNode.dispose$0(0); B.JSArray_methods.forEach$1(this._settings_wizard$_controllers, new A._SettingsWizardState_dispose_closure()); this.super$State$dispose(0); }, _settings_wizard$_validateSubdomain$0() { this._settings_wizard$_debouncer.run$1(new A._SettingsWizardState__validateSubdomain_closure(this)); }, _settings_wizard$_onSavePressed$0() { var t1, store, $navigator, state, _this = this, isValid = $.$get$_SettingsWizardState__formKey().get$currentState().validate$0(); _this.setState$1(new A._SettingsWizardState__onSavePressed_closure(_this, isValid)); if (!isValid || _this._settings_wizard$_isCheckingSubdomain) return; t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._framework$_element; t1.toString; $navigator = A.Navigator_of(t1, false); state = A._lateReadCheck(store.__Store__state, "_state"); t1 = _this._framework$_element; t1.toString; A.passwordCallback(false, new A._SettingsWizardState__onSavePressed_closure0(_this, $navigator, store, state), t1, false); }, build$1(_, context) { var t2, companyName, t3, t4, firstName, lastName, currency, language, darkMode, subdomain, t5, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"); t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "company_name"); if (t2 == null) t2 = ""; companyName = A.DecoratedFormField$(false, _null, true, _this._settings_wizard$_autoValidate, _this._settings_wizard$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A._SettingsWizardState_build_closure(t1)); t2 = t1.get$firstName(t1); t3 = _this._settings_wizard$_autoValidate; t4 = type$.JSArray_legacy_String; firstName = A.DecoratedFormField$(false, A._setArrayType(["givenName"], t4), false, t3, _this._settings_wizard$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A._SettingsWizardState_build_closure0(t1)); t2 = t1.get$lastName(t1); t3 = _this._settings_wizard$_autoValidate; lastName = A.DecoratedFormField$(false, A._setArrayType(["familyName"], t4), false, t3, _this._settings_wizard$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A._SettingsWizardState_build_closure1(t1)); t2 = $.$get$memoizedCurrencyList(); t3 = state.staticState; t2 = t2.call$1(t3.currencyMap); t4 = t1.get$currency(); currency = A.EntityDropdown$(true, false, false, _this._settings_wizard$_currencyId, t2, _null, B.EntityType_currency, B.List_empty0, t4, _null, _null, new A._SettingsWizardState_build_closure2(_this), _null, _null, new A._SettingsWizardState_build_closure3(t1)); t3 = $.$get$memoizedLanguageList().call$1(t3.languageMap); t4 = t1.get$language(t1); language = A.EntityDropdown$(true, false, false, _this._settings_wizard$_languageId, t3, _null, B.EntityType_language, B.List_empty0, t4, _null, _null, new A._SettingsWizardState_build_closure4(_this, store, context), _null, _null, new A._SettingsWizardState_build_closure5(t1)); darkMode = new A.LayoutBuilder(new A._SettingsWizardState_build_closure6(t1, state, store), _null); t4 = t1.get$subdomain(); t3 = _this._settings_wizard$_autoValidate; if (_this._settings_wizard$_isCheckingSubdomain) t2 = B.IconData_62057_MaterialIcons_null_false; else t2 = _this._settings_wizard$_isSubdomainUnique ? B.IconData_57690_MaterialIcons_null_false : B.IconData_57912_MaterialIcons_null_false; t2 = A.Icon$(t2, _null, _null); subdomain = A.DecoratedFormField$(false, _null, false, t3, _this._settings_wizard$_subdomainController, _null, true, _null, t1.get$subdomainHelp(), _null, A._setArrayType([new A.FilteringTextInputFormatter(A.RegExp_RegExp("[a-z0-9\\-]", true, false, false, false), true, "")], type$.JSArray_legacy_TextInputFormatter), false, false, _null, B.TextInputType_0_null_null, t4, _null, _null, false, new A._SettingsWizardState_build_closure7(_this), _null, _null, true, t2, _null, B.TextAlign_4, new A._SettingsWizardState_build_closure8(_this, t1)); t2 = $.$get$_SettingsWizardState__formKey(); if (_this._settings_wizard$_isSaving) t3 = new A.LoadingIndicator(200, false, _null); else { t3 = type$.JSArray_legacy_Widget; if (A.getLayout(context) === B.AppLayout_mobile) { t4 = A._setArrayType([new A.Padding(B.EdgeInsets_0_0_0_8, A.Text$(t1.get$welcomeToInvoiceNinja(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), _null), companyName], t3); if (state.get$isHosted()) t4.push(subdomain); if (state.get$companies().length === 1) B.JSArray_methods.addAll$1(t4, A._setArrayType([firstName, lastName], t3)); t4.push(language); t4.push(currency); t4.push(new A.SizedBox(_null, 16, _null, _null)); t4.push(darkMode); if (state.get$isHosted()) t4.push(new A.Padding(B.EdgeInsets_0_32_0_0, A.Text$(t1.get$subdomainGuide(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t3 = t4; } else { t4 = A._setArrayType([A.Expanded$(A.Text$(t1.get$welcomeToInvoiceNinja(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), 1)], t3); if (state.get$isHosted()) B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.SizedBox(16, _null, _null, _null), new A.Flexible(1, B.FlexFit_1, darkMode, _null)], t3)); t4 = A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t5 = A.Expanded$(companyName, 1); t4 = A._setArrayType([t4, new A.SizedBox(_null, 16, _null, _null), A.Row$(A._setArrayType([t5, new A.SizedBox(16, _null, _null, _null), A.Expanded$(state.get$isHosted() ? subdomain : darkMode, 1)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t3); if (state.get$companies().length === 1) t4.push(A.Row$(A._setArrayType([A.Expanded$(firstName, 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(lastName, 1)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); t4.push(A.Row$(A._setArrayType([A.Expanded$(language, 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(currency, 1)], t3), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); if (state.get$isHosted()) t4.push(new A.Padding(B.EdgeInsets_0_32_0_0, A.Text$(t1.get$subdomainGuide(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t3 = t4; } t3 = A.Column$(t3, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } t3 = A.SingleChildScrollView$(A.Container$(_null, t3, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 500), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); if (!_this._settings_wizard$_isSaving) B.JSArray_methods.addAll$1(t5, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._SettingsWizardState_build_closure9(context), _null), A.TextButton$(false, A.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_settings_wizard$_onSavePressed(), _null)], t4)); return A.AlertDialog$(t5, B.EdgeInsets_0_0_0_0, _null, new A.AppForm(t2, _null, t3, _this._settings_wizard$_focusNode, _null), B.EdgeInsets_24_20_24_24, _null, _null, _null); } }; A._SettingsWizardState_dispose_closure.prototype = { call$1(controller) { J.dispose$0$x(controller); }, $signature: 7 }; A._SettingsWizardState__validateSubdomain_closure.prototype = { call$0() { var subdomain, t2, state, credentials, t1 = this.$this; if (t1._settings_wizard$_isCheckingSubdomain) return; subdomain = J.trim$0$s(t1._settings_wizard$_subdomainController._change_notifier$_value.text); t2 = t1._framework$_element; t2.toString; state = A._lateReadCheck(A.StoreProvider_of(t2, type$.legacy_AppState).__Store__state, "_state"); credentials = state.get$credentials(state); if (subdomain.length === 0) { t1.setState$1(new A._SettingsWizardState__validateSubdomain__closure(t1)); return; } t1.setState$1(new A._SettingsWizardState__validateSubdomain__closure0(t1)); t2 = type$.legacy_String; t1._settings_wizard$_webClient.post$3$data(credentials.url + "/check_subdomain", credentials.token, B.C_JsonCodec.encode$2$toEncodable(A.LinkedHashMap_LinkedHashMap$_literal(["subdomain", subdomain], t2, t2), null)).then$1$1(0, new A._SettingsWizardState__validateSubdomain__closure1(t1), type$.Null).catchError$1(new A._SettingsWizardState__validateSubdomain__closure2(t1)); }, $signature: 1 }; A._SettingsWizardState__validateSubdomain__closure.prototype = { call$0() { return this.$this._settings_wizard$_isSubdomainUnique = false; }, $signature: 21 }; A._SettingsWizardState__validateSubdomain__closure0.prototype = { call$0() { return this.$this._settings_wizard$_isCheckingSubdomain = true; }, $signature: 21 }; A._SettingsWizardState__validateSubdomain__closure1.prototype = { call$1(data) { var t1 = this.$this; t1.setState$1(new A._SettingsWizardState__validateSubdomain___closure0(t1)); }, $signature: 7 }; A._SettingsWizardState__validateSubdomain___closure0.prototype = { call$0() { var t1 = this.$this; t1._settings_wizard$_isSubdomainUnique = true; t1._settings_wizard$_isCheckingSubdomain = false; }, $signature: 1 }; A._SettingsWizardState__validateSubdomain__closure2.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._SettingsWizardState__validateSubdomain___closure(t1)); }, $signature: 3 }; A._SettingsWizardState__validateSubdomain___closure.prototype = { call$0() { var t1 = this.$this; t1._settings_wizard$_isCheckingSubdomain = t1._settings_wizard$_isSubdomainUnique = false; }, $signature: 1 }; A._SettingsWizardState__onSavePressed_closure.prototype = { call$0() { this.$this._settings_wizard$_autoValidate = !this.isValid; }, $signature: 1 }; A._SettingsWizardState__onSavePressed_closure0.prototype = { call$2(password, idToken) { var t3, completer, t4, t5, _this = this, t1 = _this.$this, t2 = t1._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = new A._Future($.Zone__current, type$._Future_Null); completer = new A._AsyncCompleter(t3, type$._AsyncCompleter_Null); t4 = _this.store; t5 = _this.state; t3.then$1$1(0, new A._SettingsWizardState__onSavePressed__closure(t1, t2, _this.navigator, t4, t5), type$.Null).catchError$1(new A._SettingsWizardState__onSavePressed__closure0(t1)); t1.setState$1(new A._SettingsWizardState__onSavePressed__closure1(t1)); if (t5.get$companies().length > 1) completer.complete$0(0); else { t2 = t5.userCompanyStates; t5 = t5.uiState.selectedCompanyIndex; t1 = t2._list[t5].userCompany.user.rebuild$1(new A._SettingsWizardState__onSavePressed__closure2(t1)); t4.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); } }, $signature: 38 }; A._SettingsWizardState__onSavePressed__closure.prototype = { call$1(value) { var toastCompleter, t3, _this = this, t1 = _this.$this, t2 = t1._framework$_element; t2.toString; toastCompleter = A.snackBarCompleter(t2, _this.localization.get$savedSettings(), false, type$.Null); toastCompleter.future.then$1$1(0, new A._SettingsWizardState__onSavePressed___closure0(_this.navigator), type$.void).catchError$1(new A._SettingsWizardState__onSavePressed___closure1(t1)); t2 = _this.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t1 = t3._list[t2].userCompany.company.rebuild$1(new A._SettingsWizardState__onSavePressed___closure2(t1)); _this.store.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(toastCompleter, t1)); }, $signature: 3 }; A._SettingsWizardState__onSavePressed___closure0.prototype = { call$1(value) { return this.navigator.pop$0(0); }, $signature: 154 }; A._SettingsWizardState__onSavePressed___closure1.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._SettingsWizardState__onSavePressed____closure(t1)); }, $signature: 3 }; A._SettingsWizardState__onSavePressed____closure.prototype = { call$0() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 21 }; A._SettingsWizardState__onSavePressed___closure2.prototype = { call$1(b) { var t3, t1 = this.$this, t2 = J.trim$0$s(t1._settings_wizard$_subdomainController._change_notifier$_value.text); b.get$_company_model$_$this()._subdomain = t2; t2 = b.get$settings(); t3 = J.trim$0$s(t1._settings_wizard$_nameController._change_notifier$_value.text); t2.get$_settings_model$_$this()._settings_model$_name = t3; t3 = b.get$settings(); t2 = t1._settings_wizard$_currencyId; t3.get$_settings_model$_$this()._currencyId = t2; t2 = b.get$settings(); t1 = t1._settings_wizard$_languageId; t2.get$_settings_model$_$this()._languageId = t1; return b; }, $signature: 23 }; A._SettingsWizardState__onSavePressed__closure0.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._SettingsWizardState__onSavePressed___closure(t1)); }, $signature: 3 }; A._SettingsWizardState__onSavePressed___closure.prototype = { call$0() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 21 }; A._SettingsWizardState__onSavePressed__closure1.prototype = { call$0() { return this.$this._settings_wizard$_isSaving = true; }, $signature: 21 }; A._SettingsWizardState__onSavePressed__closure2.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._settings_wizard$_firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t1 = J.trim$0$s(t1._settings_wizard$_lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t1; return b; }, $signature: 77 }; A._SettingsWizardState_build_closure.prototype = { call$1(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._SettingsWizardState_build_closure0.prototype = { call$1(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._SettingsWizardState_build_closure1.prototype = { call$1(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._SettingsWizardState_build_closure2.prototype = { call$1(currency) { var t1 = this.$this; return t1.setState$1(new A._SettingsWizardState_build__closure1(t1, currency)); }, $signature: 155 }; A._SettingsWizardState_build__closure1.prototype = { call$0() { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); return this.$this._settings_wizard$_currencyId = t1; }, $signature: 127 }; A._SettingsWizardState_build_closure3.prototype = { call$1(value) { return J.get$isEmpty$asx(value) ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 25 }; A._SettingsWizardState_build_closure4.prototype = { call$1(language) { var t1 = this.$this; t1.setState$1(new A._SettingsWizardState_build__closure0(t1, language)); t1 = language == null ? null : language.get$id(language); this.store.get$_dispatchers()[0].call$1(new A.UpdateCompanyLanguage(t1)); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 34 }; A._SettingsWizardState_build__closure0.prototype = { call$0() { var t1 = this.language; t1 = t1 == null ? null : t1.get$id(t1); return this.$this._settings_wizard$_languageId = t1; }, $signature: 127 }; A._SettingsWizardState_build_closure5.prototype = { call$1(value) { return J.get$isEmpty$asx(value) ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 25 }; A._SettingsWizardState_build_closure6.prototype = { call$2(context, constraints) { var t2, t3, _null = null, t1 = this.localization; t1 = A._setArrayType([A.Text$(t1.get$light(), _null, _null, _null, _null, _null, _null, _null, _null, _null), A.Text$(t1.get$dark(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget); t2 = A.BoxConstraints$expand(40, constraints.maxWidth / 2 - 2); t3 = this.state.prefState.enableDarkMode; return A.ToggleButtons$(_null, t1, _null, t2, A._setArrayType([!t3, t3], type$.JSArray_legacy_bool), new A._SettingsWizardState_build__closure(this.store, context), true, _null, _null); }, $signature: 2694 }; A._SettingsWizardState_build__closure.prototype = { call$1(index) { var _null = null, isDark = index === 1, t1 = isDark ? "dark" : "light", t2 = type$.legacy_String; t1 = A.UpdateUserPreferences$(_null, t1, isDark ? A.BuiltMap_BuiltMap(B.Map_empty0, t2, t2) : A.BuiltMap_BuiltMap(B.Map_soKdN, t2, t2), _null, isDark, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); this.store.get$_dispatchers()[0].call$1(t1); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 106 }; A._SettingsWizardState_build_closure8.prototype = { call$1(value) { var t1; if (value.length === 0) return this.localization.get$pleaseEnterAValue(); else { t1 = this.$this; if (!t1._settings_wizard$_isCheckingSubdomain && !t1._settings_wizard$_isSubdomainUnique) return this.localization.get$subdomainIsNotAvailable(); } return null; }, $signature: 15 }; A._SettingsWizardState_build_closure7.prototype = { call$1(value) { return this.$this._settings_wizard$_validateSubdomain$0(); }, $signature: 67 }; A._SettingsWizardState_build_closure9.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.TaskSettings.prototype = { createState$0() { return new A._TaskSettingsState(new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0); } }; A._TaskSettingsState.prototype = { initState$0() { this.super$State$initState(); this._task_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, didChangeDependencies$0() { var t3, _this = this, t1 = _this._taskRateController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._task_settings$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._TaskSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.settings.defaultTaskRate; t3 = _this._framework$_element; t3.toString; t1.set$text(0, A.formatNumber(t2, t3, null, null, B.FormatNumberType_4, true, null, false)); t3 = _this._task_settings$_controllers; (t3 && B.JSArray_methods).forEach$1(t3, new A._TaskSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this, t1 = _this._task_settings$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A._TaskSettingsState_dispose_closure(_this)); _this._task_settings$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, _task_settings$_onChanged$0() { var viewModel = this._widget.viewModel, state = viewModel.state, t1 = viewModel.settings, settings = t1.rebuild$1(new A._TaskSettingsState__onChanged_closure(this, state)); if (!J.$eq$(settings, t1)) viewModel.onSettingsChanged.call$1(settings); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _null = null, _s18_ = "show_task_end_date", _s23_ = "show_task_end_date_help", _s21_ = "tasks_shown_in_portal", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company, settings = viewModel.settings; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "task_settings"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = $.$get$_TaskSettingsState__formKey(); t7 = this._task_settings$_focusNode; t8 = J.$index$asx(t2.$index(0, t3), "default_task_rate"); if (t8 == null) t8 = ""; t9 = type$.JSArray_legacy_Widget; t8 = A._setArrayType([A.DecoratedFormField$(false, _null, false, false, this._taskRateController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t8, _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null)], t9); t10 = viewModel.state.uiState.settingsUIState.entityType === B.EntityType_company; if (t10) { t11 = A.Theme_of(context).colorScheme; t12 = J.$index$asx(t2.$index(0, t3), "auto_start_tasks"); t12 = A.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.autoStartTasks; t14 = J.$index$asx(t2.$index(0, t3), "auto_start_tasks_help"); t11 = A.SwitchListTile$(t11.secondary, _null, new A._TaskSettingsState_build_closure(viewModel, company), _null, A.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12, t13); t12 = A.Theme_of(context).colorScheme; t13 = J.$index$asx(t2.$index(0, t3), _s18_); t13 = A.Text$(t13 == null ? J.$index$asx(t2.$index(0, "en"), _s18_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = company.showTaskEndDate; t15 = J.$index$asx(t2.$index(0, t3), _s23_); B.JSArray_methods.addAll$1(t8, A._setArrayType([new A.SizedBox(_null, 32, _null, _null), t11, A.SwitchListTile$(t12.secondary, _null, new A._TaskSettingsState_build_closure0(viewModel, company), _null, A.Text$(t15 == null ? J.$index$asx(t2.$index(0, "en"), _s23_) : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13, t14)], t9)); } t8 = A.FormCard$(_null, t8, _null, _null, false, _null, false, _null); t11 = A._setArrayType([], t9); if (t10) { t12 = A.Theme_of(context).colorScheme; t13 = J.$index$asx(t2.$index(0, t3), "show_tasks_table"); t13 = A.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = company.showTasksTable; t15 = J.$index$asx(t2.$index(0, t3), "show_tasks_table_help"); t12 = A.SwitchListTile$(t12.secondary, _null, new A._TaskSettingsState_build_closure1(viewModel, company), _null, A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13, t14); t13 = A.Theme_of(context).colorScheme; t14 = J.$index$asx(t2.$index(0, t3), "invoice_task_datelog"); t14 = A.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t15 = company.invoiceTaskDatelog; t16 = J.$index$asx(t2.$index(0, t3), "invoice_task_datelog_help"); t13 = A.SwitchListTile$(t13.secondary, _null, new A._TaskSettingsState_build_closure2(viewModel, company), _null, A.Text$(t16 == null ? "" : t16, _null, _null, _null, _null, _null, _null, _null, _null, _null), t14, t15); t14 = A.Theme_of(context).colorScheme; t15 = J.$index$asx(t2.$index(0, t3), "invoice_task_timelog"); t15 = A.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null); t16 = company.invoiceTaskTimelog; t17 = J.$index$asx(t2.$index(0, t3), "invoice_task_timelog_help"); t14 = A.SwitchListTile$(t14.secondary, _null, new A._TaskSettingsState_build_closure3(viewModel, company), _null, A.Text$(t17 == null ? "" : t17, _null, _null, _null, _null, _null, _null, _null, _null, _null), t15, t16); t15 = A.Theme_of(context).colorScheme; t16 = A.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t17 = company.invoiceTaskDocuments; B.JSArray_methods.addAll$1(t11, A._setArrayType([t12, t13, t14, A.SwitchListTile$(t15.secondary, _null, new A._TaskSettingsState_build_closure4(viewModel, company), _null, A.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t16, t17)], t9)); } t11 = A.FormCard$(_null, t11, _null, _null, false, _null, false, _null); t12 = t1.get$clientPortal(); t13 = settings.enablePortalTasks; t12 = A.BoolDropdownButton$(_null, _null, _null, A.getSettingIcon("client_portal"), t12, _null, new A._TaskSettingsState_build_closure5(viewModel, settings), t13); t14 = J.$index$asx(t2.$index(0, t3), _s21_); if (t14 == null) t14 = J.$index$asx(t2.$index(0, "en"), _s21_); t15 = settings.clientPortalTasks; t13 = t13 === true ? new A._TaskSettingsState_build_closure6(viewModel, settings) : _null; t16 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t9 = A._setArrayType([t8, t11, A.FormCard$(_null, A._setArrayType([t12, A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["invoiced", "uninvoiced", "all"], type$.JSArray_legacy_String), new A._TaskSettingsState_build_closure7(t1), t16), true, t16._eval$1("ListIterable.E")), _null, t14, t13, _null, false, t15, type$.legacy_String)], t9), _null, _null, false, _null, false, _null)], t9); if (t10) { t1 = J.$index$asx(t2.$index(0, t3), "configure_statuses"); if (t1 == null) t1 = ""; t9.push(new A.Padding(B.EdgeInsets_16_0_16_0, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new A._TaskSettingsState_build_closure8(viewModel, context), _null, _null), _null)); } t9.push(new A.SizedBox(_null, 20, _null, _null)); return A.EditScaffold$(_null, _null, new A.AppForm(t6, t9, _null, t7, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._TaskSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_task_settings$_onChanged()); }, $signature: 12 }; A._TaskSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_task_settings$_onChanged()); }, $signature: 12 }; A._TaskSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_task_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._TaskSettingsState__onChanged_closure.prototype = { call$1(b) { var t1 = A.parseDouble(this.$this._taskRateController._change_notifier$_value.text, this.state.uiState.settingsUIState.entityType !== B.EntityType_company); b.get$_settings_model$_$this()._defaultTaskRate = t1; return b; }, $signature: 13 }; A._TaskSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure6(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure6.prototype = { call$1(b) { b.get$_company_model$_$this()._autoStartTasks = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure5(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure5.prototype = { call$1(b) { b.get$_company_model$_$this()._showTaskEndDate = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure4(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure4.prototype = { call$1(b) { b.get$_company_model$_$this()._showTasksTable = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure3(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._invoiceTaskDatelog = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure3.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure2(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure2.prototype = { call$1(b) { b.get$_company_model$_$this()._invoiceTaskTimelog = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure4.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaskSettingsState_build__closure1(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure1.prototype = { call$1(b) { b.get$_company_model$_$this()._invoiceTaskDocuments = this.value; return b; }, $signature: 23 }; A._TaskSettingsState_build_closure5.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaskSettingsState_build__closure0(value))); }, $signature: 10 }; A._TaskSettingsState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._enablePortalTasks = this.value; return b; }, $signature: 13 }; A._TaskSettingsState_build_closure6.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaskSettingsState_build__closure(value))); }, $signature: 7 }; A._TaskSettingsState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._clientPortalTasks = this.value; return b; }, $signature: 13 }; A._TaskSettingsState_build_closure7.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A._TaskSettingsState_build_closure8.prototype = { call$0() { return this.viewModel.onConfigureStatusesPressed.call$1(this.context); }, $signature: 9 }; A.TaskSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskSettingsScreen_build_closure(), A.task_settings_vm_TaskSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskSettingsVM); } }; A.TaskSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaskSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2695 }; A.TaskSettingsVM.prototype = { get$company() { return this.company; } }; A.TaskSettingsVM_fromStore_closure0.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.TaskSettingsVM_fromStore_closure1.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.TaskSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaskSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.TaskSettingsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.TaskSettingsVM_fromStore_closure2.prototype = { call$1(context) { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "task_status", false, _null)); }, $signature: 14 }; A.TaxSettings.prototype = { createState$0() { return new A._TaxSettingsState(B._StateLifecycle_0); } }; A._TaxSettingsState.prototype = { initState$0() { this.super$State$initState(); this._tax_settings$_focusNode = A.FocusScopeNode$(true, null, false); }, dispose$0(_) { this._tax_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, settings = viewModel.settings, company = viewModel.company, state = viewModel.state; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "tax_settings"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = $.$get$_TaxSettingsState__formKey(); t7 = this._tax_settings$_focusNode; t8 = type$.JSArray_legacy_Widget; t9 = A._setArrayType([], t8); t10 = state.uiState; if (t10.settingsUIState.entityType === B.EntityType_company) { t11 = J.$index$asx(t2.$index(0, t3), "invoice_tax_rates"); if (t11 == null) t11 = ""; t12 = company.numberOfInvoiceTaxRates; t13 = J.$index$asx(t2.$index(0, t3), "item_tax_rates"); if (t13 == null) t13 = ""; t14 = company.numberOfItemTaxRates; t15 = t1.get$inclusiveTaxes(); t16 = settings.enableInclusiveTaxes; t9.push(A.FormCard$(_null, A._setArrayType([new A.NumberOfRatesSelector(t11, t12, new A._TaxSettingsState_build_closure(viewModel, company), _null), new A.NumberOfRatesSelector(t13, t14, new A._TaxSettingsState_build_closure0(viewModel, company), _null), new A.SizedBox(_null, 16, _null, _null), A.BoolDropdownButton$(_null, _null, "\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", B._MdiIconData_egL, t15, _null, new A._TaxSettingsState_build_closure1(viewModel, settings), t16)], t8), _null, _null, false, _null, false, _null)); } t11 = state.userCompanyStates; t10 = t10.selectedCompanyIndex; if (t11._list[t10].taxRateState.list._list.length !== 0) { t8 = A._setArrayType([], t8); if (company.get$enableFirstInvoiceTaxRate()) t8.push(new A.TaxRateDropdown(t1.get$defaultTaxRate(), new A._TaxSettingsState_build_closure2(viewModel, settings), settings.defaultTaxName1, settings.defaultTaxRate1, _null)); if (company.get$enableSecondInvoiceTaxRate()) t8.push(new A.TaxRateDropdown(t1.get$defaultTaxRate(), new A._TaxSettingsState_build_closure3(viewModel, settings), settings.defaultTaxName2, settings.defaultTaxRate2, _null)); if (company.get$enableThirdInvoiceTaxRate()) t8.push(new A.TaxRateDropdown(t1.get$defaultTaxRate(), new A._TaxSettingsState_build_closure4(viewModel, settings), settings.defaultTaxName3, settings.defaultTaxRate3, _null)); t9.push(A.FormCard$(_null, t8, _null, _null, false, _null, false, _null)); } t1 = J.$index$asx(t2.$index(0, t3), "configure_rates"); if (t1 == null) t1 = ""; t9.push(new A.Padding(B.EdgeInsets_16_0_16_0, new A.AppButton(_null, B.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new A._TaxSettingsState_build_closure5(viewModel, context), _null, _null), _null)); return A.EditScaffold$(_null, _null, new A.AppForm(t6, t9, _null, t7, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._TaxSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure4(value))); }, $signature: 180 }; A._TaxSettingsState_build__closure4.prototype = { call$1(b) { b.get$_company_model$_$this()._numberOfInvoiceTaxRates = this.value; return b; }, $signature: 23 }; A._TaxSettingsState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure3(value))); }, $signature: 180 }; A._TaxSettingsState_build__closure3.prototype = { call$1(b) { b.get$_company_model$_$this()._numberOfItemTaxRates = this.value; return b; }, $signature: 23 }; A._TaxSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure2(value))); }, $signature: 10 }; A._TaxSettingsState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._enableInclusiveTaxes = this.value; return b; }, $signature: 13 }; A._TaxSettingsState_build_closure2.prototype = { call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure1(taxRate))); }, $signature: 94 }; A._TaxSettingsState_build__closure1.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName1 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate1 = t1; return b; }, $signature: 13 }; A._TaxSettingsState_build_closure3.prototype = { call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure0(taxRate))); }, $signature: 94 }; A._TaxSettingsState_build__closure0.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName2 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate2 = t1; return b; }, $signature: 13 }; A._TaxSettingsState_build_closure4.prototype = { call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure(taxRate))); }, $signature: 94 }; A._TaxSettingsState_build__closure.prototype = { call$1(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName3 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate3 = t1; return b; }, $signature: 13 }; A._TaxSettingsState_build_closure5.prototype = { call$0() { return this.viewModel.onConfigureRatesPressed.call$1(this.context); }, $signature: 9 }; A.NumberOfRatesSelector.prototype = { build$1(_, context) { var t5, t6, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.legacy_String, t3 = A.DropdownMenuItem$(A.Text$(t1.get$disabled(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "0", t2), t4 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t5 = J.$index$asx(t4.$index(0, t1), "one_tax_rate"); t5 = A.DropdownMenuItem$(A.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "1", t2); t6 = J.$index$asx(t4.$index(0, t1), "two_tax_rates"); t6 = A.DropdownMenuItem$(A.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "2", t2); t1 = J.$index$asx(t4.$index(0, t1), "three_tax_rates"); return A.AppDropdownButton$(_null, "", true, A._setArrayType([t3, t5, t6, A.DropdownMenuItem$(A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "3", t2)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, this.label, new A.NumberOfRatesSelector_build_closure(this), _null, false, "" + this.numberOfRates, t2); } }; A.NumberOfRatesSelector_build_closure.prototype = { call$1(value) { var t1 = value == null || J.get$isEmpty$asx(value) ? null : A.int_parse(value, null); return this.$this.onChanged.call$1(t1); }, $signature: 12 }; A.TaxSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaxSettingsScreen_build_closure(), A.tax_settings_vm_TaxSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxSettingsVM); } }; A.TaxSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaxSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2696 }; A.TaxSettingsVM.prototype = { get$company() { return this.company; } }; A.TaxSettingsVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.TaxSettingsVM_fromStore_closure1.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.TaxSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaxSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.TaxSettingsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.TaxSettingsVM_fromStore_closure2.prototype = { call$1(context) { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "tax_settings_rates", false, _null)); }, $signature: 14 }; A.TemplatesAndReminders.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TemplatesAndRemindersState(new A.Debouncer(500, true), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._TemplatesAndRemindersState.prototype = { initState$0() { var state, t1, t2, t3, company, settingsUIState, $length, t4, _this = this; _this.super$State$initState(); state = _this._widget.viewModel.state; t1 = state.userCompanyStates; t2 = state.uiState; t3 = t2.selectedCompanyIndex; company = t1._list[t3].userCompany.company; settingsUIState = t2.settingsUIState; $length = company.markdownEmailEnabled && state.prefState.appLayout === B.AppLayout_desktop ? 3 : 2; _this._templates_and_reminders$_focusNode = A.FocusScopeNode$(true, null, false); t1 = settingsUIState.tabIndex; t2 = A.TabController$(null, t1, $length, _this); _this._templates_and_reminders$_controller = t2; t2.addListener$1(0, _this.get$_templates_and_reminders$_onTabChanged()); t2 = _this._subjectController; t3 = _this._templates_and_reminders$_bodyController; _this._templates_and_reminders$_controllers = A._setArrayType([t2, t3], type$.JSArray_legacy_TextEditingController); t4 = _this.get$_onTextChanged(); t2.addListener$1(0, t4); t3.addListener$1(0, t4); if (t1 === $length - 1) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._TemplatesAndRemindersState_initState_closure(_this)); }, didChangeDependencies$0() { this._loadTemplate$1(this._widget.viewModel.selectedTemplate); this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._templates_and_reminders$_focusNode.dispose$0(0); _this._templates_and_reminders$_controller.removeListener$1(0, _this.get$_templates_and_reminders$_onTabChanged()); _this._templates_and_reminders$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._templates_and_reminders$_controllers, new A._TemplatesAndRemindersState_dispose_closure(_this)); _this.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$dispose(0); }, _loadTemplate$1(emailTemplate) { var viewModel, settings, state, templateMap, t1, template, t2, t3, t4, t5, _this = this; _this._templates_and_reminders$_selectedTemplate = emailTemplate; viewModel = _this._widget.viewModel; settings = viewModel.settings; state = viewModel.state; templateMap = state.staticState.templateMap; t1 = emailTemplate.name; template = templateMap._map$_map.$index(0, t1); if (template == null) template = A._$TemplateEntity$_("", ""); t1 = _this._templates_and_reminders$_bodyController; t2 = _this.get$_onTextChanged(); t1.removeListener$1(0, t2); t3 = _this._subjectController; t3.removeListener$1(0, t2); t4 = settings.getEmailBody$1(emailTemplate); t1.set$text(0, t4 == null ? "" : t4); t4 = settings.getEmailSubject$1(emailTemplate); t3.set$text(0, t4 == null ? "" : t4); if (t3._change_notifier$_value.text.length === 0) t3.set$text(0, template.subject); if (t1._change_notifier$_value.text.length === 0) t1.set$text(0, template.body); t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; if (t4._list[t5].userCompany.company.markdownEmailEnabled && _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop && B.JSString_methods.startsWith$1(J.trim$0$s(t1._change_notifier$_value.text), "<")) t1.set$text(0, A.convert(t1._change_notifier$_value.text)); t1.addListener$1(0, t2); t3.addListener$1(0, t2); _this.setState$1(new A._TemplatesAndRemindersState__loadTemplate_closure(_this, template, state)); }, _onTextChanged$0() { this._templates_and_reminders$_debouncer.run$1(new A._TemplatesAndRemindersState__onTextChanged_closure(this)); }, _templates_and_reminders$_onChanged$0() { var settings, body, subject, _this = this, t1 = {}, templateMap = _this._widget.viewModel.state.staticState.templateMap, t2 = _this._templates_and_reminders$_selectedTemplate.name, template = templateMap._map$_map.$index(0, t2); if (template == null) template = A._$TemplateEntity$_("", ""); settings = _this._widget.viewModel.settings; body = t1.body = J.trim$0$s(_this._templates_and_reminders$_bodyController._change_notifier$_value.text); subject = t1.subject = J.trim$0$s(_this._subjectController._change_notifier$_value.text); if (subject.length === 0 || subject === template.subject) t1.subject = null; if (body.length !== 0) { t2 = template.body; t2 = body === t2 || body === A.convert(t2); } else t2 = true; if (t2) t1.body = null; t2 = _this._templates_and_reminders$_selectedTemplate; if (t2 === B.EmailTemplate_invoice) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure(t1)); else if (t2 === B.EmailTemplate_quote) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure0(t1)); else if (t2 === B.EmailTemplate_credit) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure1(t1)); else if (t2 === B.EmailTemplate_payment) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure2(t1)); else if (t2 === B.EmailTemplate_payment_partial) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure3(t1)); else if (t2 === B.EmailTemplate_reminder1) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure4(t1)); else if (t2 === B.EmailTemplate_reminder2) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure5(t1)); else if (t2 === B.EmailTemplate_reminder3) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure6(t1)); else if (t2 === B.EmailTemplate_reminder_endless) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure7(t1)); else if (t2 === B.EmailTemplate_custom1) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure8(t1)); else if (t2 === B.EmailTemplate_custom2) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure9(t1)); else if (t2 === B.EmailTemplate_custom3) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure10(t1)); else if (t2 === B.EmailTemplate_statement) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure11(t1)); else if (t2 === B.EmailTemplate_purchase_order) settings = settings.rebuild$1(new A._TemplatesAndRemindersState__onChanged_closure12(t1)); if (!J.$eq$(settings, _this._widget.viewModel.settings)) _this._widget.viewModel.onSettingsChanged.call$1(settings); }, _templates_and_reminders$_onTabChanged$0() { var store, t2, previewIndex, _this = this, t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._templates_and_reminders$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); _this.setState$1(new A._TemplatesAndRemindersState__onTabChanged_closure(_this)); t1 = A._lateReadCheck(store.__Store__state, "_state"); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; previewIndex = t2._list[t1].userCompany.company.markdownEmailEnabled ? 2 : 1; if (_this._templates_and_reminders$_controller._tab_controller$_index !== previewIndex) return; _this._renderTemplate$0(); }, _renderTemplate$0() { var t1, _this = this, subject = J.trim$0$s(_this._subjectController._change_notifier$_value.text), body = J.trim$0$s(_this._templates_and_reminders$_bodyController._change_notifier$_value.text); if (subject === _this._lastSubject && body === _this._lastBody) return; else { _this._lastSubject = subject; _this._lastBody = body; } _this.setState$1(new A._TemplatesAndRemindersState__renderTemplate_closure(_this)); t1 = _this._framework$_element; t1.toString; A.loadEmailTemplate(body, t1, null, new A._TemplatesAndRemindersState__renderTemplate_closure0(_this), subject, _this._widget.viewModel.selectedTemplate.toString$0(0)); }, build$1(_, context) { var company, t5, enableCustomEmail, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, template = viewModel.selectedTemplate, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; company = t2[t4].userCompany.company; if (state.get$isHosted()) if (!(!state.get$isHosted() || t2[t4].userCompany.account.plan === "enterprise" || t2[t4].userCompany.account.plan === "pro")) { t5 = state.get$isHosted() && t2[t4].userCompany.account.trialDaysLeft > 0; enableCustomEmail = t5; } else enableCustomEmail = true; else enableCustomEmail = true; t1.toString; t5 = $.$get$LocalizationsProvider__localizedValues(); t6 = t1.localeCode; t7 = J.$index$asx(t5.$index(0, t6), "templates_and_reminders"); if (t7 == null) t7 = ""; t3 = t3.settingsUIState.updatedAt; t8 = _this._templates_and_reminders$_controller; t9 = type$.JSArray_legacy_Widget; t10 = A._setArrayType([A.Tab$(_null, t1.get$settings())], t9); t11 = company.markdownEmailEnabled; if (t11 && _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop) t10.push(A.Tab$(_null, t1.get$design())); t10.push(A.Tab$(_null, t1.get$preview())); t8 = A.TabBar$(t8, _null, false, new A.ValueKey(t3, type$.ValueKey_legacy_int), _null, t10); t10 = type$.ValueKey_legacy_String; t12 = _this._templates_and_reminders$_controller; t13 = $.$get$_TemplatesAndRemindersState__formKey(); t14 = _this._templates_and_reminders$_focusNode; t6 = J.$index$asx(t5.$index(0, t6), "template"); t5 = t6 == null ? "" : t6; t6 = $.$get$_$templateValues()._set$_set; t15 = A._instanceType(t6); t16 = t15._eval$1("MappedIterable*>"); t5 = A._setArrayType([A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedIterable(new A.WhereIterable(t6, new A._TemplatesAndRemindersState_build_closure(company), t15._eval$1("WhereIterable")), new A._TemplatesAndRemindersState_build_closure0(t1), t16), true, t16._eval$1("Iterable.E")), _null, t5, new A._TemplatesAndRemindersState_build_closure1(_this, viewModel), _null, false, template, type$.legacy_EmailTemplate)], t9); if (!enableCustomEmail && state.get$isHosted() && t2[t4].userCompany.account.trialDaysLeft > 0) t5.push(new A.Padding(B.EdgeInsets_0_16_0_16, new A.IconMessage(t1.get$customEmailsDisabledHelp(), _null, _null, _null, _null), _null)); t2 = t1.get$subject(); t5.push(A.DecoratedFormField$(false, _null, false, false, _this._subjectController, _null, enableCustomEmail, _null, _this._defaultSubject, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t2 = t1.get$body(t1); t5.push(A.DecoratedFormField$(false, _null, false, false, _this._templates_and_reminders$_bodyController, _null, enableCustomEmail, _null, _this._defaultBody, _null, _null, false, false, _null, B.TextInputType_1_null_null, t2, 8, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t5 = A._setArrayType([A.FormCard$(_null, t5, _null, _null, false, _null, false, _null)], t9); if (template === B.EmailTemplate_reminder1) { t2 = template.toString$0(0); t4 = settings.enableReminder1; t6 = settings.numDaysReminder1; t15 = settings.scheduleReminder1; t5.push(new A.ReminderSettings(t4, t6, settings.lateFeeAmount1, settings.lateFeePercent1, t15, new A._TemplatesAndRemindersState_build_closure2(_this, viewModel, settings), new A.ValueKey("__reminder1_" + t2 + "__", t10))); } if (template === B.EmailTemplate_reminder2) { t2 = template.toString$0(0); t4 = settings.enableReminder2; t6 = settings.numDaysReminder2; t15 = settings.scheduleReminder2; t5.push(new A.ReminderSettings(t4, t6, settings.lateFeeAmount2, settings.lateFeePercent2, t15, new A._TemplatesAndRemindersState_build_closure3(_this, viewModel, settings), new A.ValueKey("__reminder2_" + t2 + "__", t10))); } if (template === B.EmailTemplate_reminder3) { t2 = template.toString$0(0); t4 = settings.enableReminder3; t6 = settings.numDaysReminder3; t15 = settings.scheduleReminder3; t5.push(new A.ReminderSettings(t4, t6, settings.lateFeeAmount3, settings.lateFeePercent3, t15, new A._TemplatesAndRemindersState_build_closure4(_this, viewModel, settings), new A.ValueKey("__reminder3_" + t2 + "__", t10))); } if (template === B.EmailTemplate_reminder_endless) { t2 = A.BoolDropdownButton$(_null, _null, _null, B.IconData_57898_MaterialIcons_null_false, t1.get$sendEmail(), _null, new A._TemplatesAndRemindersState_build_closure5(_this, viewModel, settings), settings.enableReminderEndless); t4 = t1.get$frequency(t1); t6 = settings.endlessReminderFrequencyId; if (t6 === "0") t6 = _null; t15 = type$.legacy_String; t1 = B.Map_tOn4d.map$2$1(0, new A._TemplatesAndRemindersState_build_closure6(t1), t15, type$.legacy_DropdownMenuItem_legacy_String); t1 = t1.get$values(t1); t5.push(A.FormCard$(_null, A._setArrayType([t2, A.AppDropdownButton$(_null, "", true, A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E")), _null, t4, new A._TemplatesAndRemindersState_build_closure7(_this, viewModel, settings), _null, false, t6, t15)], t9), _null, _null, false, _null, false, _null)); } t5.push(new A.VariablesHelp(template === B.EmailTemplate_quote, _null)); t5.push(new A.SizedBox(_null, 16, _null, _null)); t1 = A._setArrayType([new A.ScrollableListView(t5, _null, _null, _null)], t9); if (t11 && _this._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop) { t2 = _this._templates_and_reminders$_selectedIndex; t1.push(new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(_this._bodyMarkdown, new A._TemplatesAndRemindersState_build_closure8(_this), new A.ValueKey("__tab_" + t2 + "__", t10)), _null)); } if (!(A.isMacOS() || A.isWindows() || A.isLinux())) { t2 = _this._templates_and_reminders$_isLoading; t1.push(new A.EmailPreview(_this._subjectPreview, _this._emailPreview, t2, _null)); } else { t2 = A._setArrayType([], t9); if (_this._templates_and_reminders$_isLoading || _this._bodyPreview.length === 0) t2.push(new A.LoadingIndicator(_null, false, _null)); else t2.push(new A.IgnorePointer(true, _null, new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(A.convert(_this._bodyPreview), _null, _null), _null), _null)); t1.push(new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t2, _null)); } return A.EditScaffold$(_null, t8, new A.AppTabForm(t14, t13, t1, t12, new A.ValueKey("__" + t3 + "__", t10), _null), _null, _null, _null, false, _null, _null, new A._TemplatesAndRemindersState_build_closure9(_this, viewModel), _null, t7); } }; A._TemplatesAndRemindersState_initState_closure.prototype = { call$1(duration) { this.$this._renderTemplate$0(); }, $signature: 36 }; A._TemplatesAndRemindersState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_onTextChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._TemplatesAndRemindersState__loadTemplate_closure.prototype = { call$0() { var t3, t4, t1 = this.$this, t2 = this.template; t1._defaultSubject = t2.subject; t2 = t1._defaultBody = t2.body; t1._bodyMarkdown = t1._templates_and_reminders$_bodyController._change_notifier$_value.text; t1._emailPreview = t1._bodyPreview = t1._subjectPreview = ""; t3 = this.state; t4 = t3.uiState.selectedCompanyIndex; if (t3.userCompanyStates._list[t4].userCompany.company.markdownEmailEnabled && t1._widget.viewModel.state.prefState.appLayout === B.AppLayout_desktop && B.JSString_methods.startsWith$1(B.JSString_methods.trim$0(t2), "<")) t1._defaultBody = A.convert(t2); }, $signature: 1 }; A._TemplatesAndRemindersState__onTextChanged_closure.prototype = { call$0() { this.$this._templates_and_reminders$_onChanged$0(); }, $signature: 1 }; A._TemplatesAndRemindersState__onChanged_closure.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyInvoice = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectInvoice = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure0.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyQuote = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectQuote = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure1.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyCredit = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectCredit = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure2.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyPayment = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectPayment = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure3.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyPaymentPartial = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectPaymentPartial = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure4.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyReminder1 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectReminder1 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure5.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyReminder2 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectReminder2 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure6.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyReminder3 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectReminder3 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure7.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyReminderEndless = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectReminderEndless = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure8.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyCustom1 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectCustom1 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure9.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyCustom2 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectCustom2 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure10.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyCustom3 = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectCustom3 = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure11.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyStatement = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectStatement = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onChanged_closure12.prototype = { call$1(b) { var t1 = this._box_0, t2 = t1.body; b.get$_settings_model$_$this()._emailBodyPurchaseOrder = t2; t1 = t1.subject; b.get$_settings_model$_$this()._emailSubjectPurchaseOrder = t1; return b; }, $signature: 13 }; A._TemplatesAndRemindersState__onTabChanged_closure.prototype = { call$0() { var t1 = this.$this; t1._bodyMarkdown = t1._templates_and_reminders$_bodyController._change_notifier$_value.text; t1._templates_and_reminders$_selectedIndex = t1._templates_and_reminders$_controller._tab_controller$_index; }, $signature: 1 }; A._TemplatesAndRemindersState__renderTemplate_closure.prototype = { call$0() { this.$this._templates_and_reminders$_isLoading = true; }, $signature: 1 }; A._TemplatesAndRemindersState__renderTemplate_closure0.prototype = { call$5(subject, body, email, rawSubject, rawBody) { var t1 = this.$this; if (t1._framework$_element == null) return; t1.setState$1(new A._TemplatesAndRemindersState__renderTemplate__closure(t1, subject, body, email)); }, $signature: 649 }; A._TemplatesAndRemindersState__renderTemplate__closure.prototype = { call$0() { var _this = this, t1 = _this.$this; t1._templates_and_reminders$_isLoading = false; t1._subjectPreview = J.trim$0$s(_this.subject); t1._bodyPreview = J.trim$0$s(_this.body); t1._emailPreview = J.trim$0$s(_this.email); }, $signature: 1 }; A._TemplatesAndRemindersState_build_closure9.prototype = { call$1(context) { var t1 = this.$this; this.viewModel.onSavePressed.call$2(context, t1._updateReminders); t1._updateReminders = false; }, $signature: 14 }; A._TemplatesAndRemindersState_build_closure1.prototype = { call$1(value) { var t1 = this.$this; return t1.setState$1(new A._TemplatesAndRemindersState_build__closure4(t1, value, this.viewModel)); }, $signature: 83 }; A._TemplatesAndRemindersState_build__closure4.prototype = { call$0() { var t1 = this.$this, t2 = this.value; t1._loadTemplate$1(t2); t1._templates_and_reminders$_onChanged$0(); this.viewModel.onTemplateChanged.call$1(t2); }, $signature: 1 }; A._TemplatesAndRemindersState_build_closure.prototype = { call$1(value) { var _this = this; if (B.JSArray_methods.contains$1(A._setArrayType([B.EmailTemplate_invoice, B.EmailTemplate_payment, B.EmailTemplate_payment_partial], type$.JSArray_legacy_EmailTemplate), value) && !_this.company.isModuleEnabled$1(B.EntityType_invoice)) return false; else if (value === B.EmailTemplate_quote && !_this.company.isModuleEnabled$1(B.EntityType_quote)) return false; else if (value === B.EmailTemplate_credit && !_this.company.isModuleEnabled$1(B.EntityType_credit)) return false; else if (value === B.EmailTemplate_purchase_order && !_this.company.isModuleEnabled$1(B.EntityType_purchaseOrder)) return false; if (value === B.EmailTemplate_statement) return false; return true; }, $signature: 2697 }; A._TemplatesAndRemindersState_build_closure0.prototype = { call$1(item) { var _null = null, t1 = this.localization, $name = t1.lookup$1(item.name); if (item === B.EmailTemplate_reminder1) $name = t1.get$firstReminder(); else if (item === B.EmailTemplate_reminder2) $name = t1.get$secondReminder(); else if (item === B.EmailTemplate_reminder3) $name = t1.get$thirdReminder(); else if (item === B.EmailTemplate_custom1) $name = t1.get$firstCustom(); else if (item === B.EmailTemplate_custom2) $name = t1.get$secondCustom(); else if (item === B.EmailTemplate_custom3) $name = t1.get$thirdCustom(); return A.DropdownMenuItem$(A.Text$($name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, item, type$.legacy_EmailTemplate); }, $signature: 2698 }; A._TemplatesAndRemindersState_build_closure2.prototype = { call$5(enabled, days, schedule, feeAmount, feePercent) { this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure3(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 484 }; A._TemplatesAndRemindersState_build__closure3.prototype = { call$1(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder1 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder1 = _this.days; b.get$_settings_model$_$this()._scheduleReminder1 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount1 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent1 = _this.feePercent; return b; }, $signature: 13 }; A._TemplatesAndRemindersState_build_closure3.prototype = { call$5(enabled, days, schedule, feeAmount, feePercent) { this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure2(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 484 }; A._TemplatesAndRemindersState_build__closure2.prototype = { call$1(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder2 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder2 = _this.days; b.get$_settings_model$_$this()._scheduleReminder2 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount2 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent2 = _this.feePercent; return b; }, $signature: 13 }; A._TemplatesAndRemindersState_build_closure4.prototype = { call$5(enabled, days, schedule, feeAmount, feePercent) { this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure1(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 484 }; A._TemplatesAndRemindersState_build__closure1.prototype = { call$1(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder3 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder3 = _this.days; b.get$_settings_model$_$this()._scheduleReminder3 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount3 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent3 = _this.feePercent; return b; }, $signature: 13 }; A._TemplatesAndRemindersState_build_closure5.prototype = { call$1(value) { this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure0(value))); }, $signature: 20 }; A._TemplatesAndRemindersState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._enableReminderEndless = this.value; return b; }, $signature: 13 }; A._TemplatesAndRemindersState_build_closure7.prototype = { call$1(value) { this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure(value))); }, $signature: 7 }; A._TemplatesAndRemindersState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._endlessReminderFrequencyId = this.value; return b; }, $signature: 13 }; A._TemplatesAndRemindersState_build_closure6.prototype = { call$2(id, frequency) { var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 483 }; A._TemplatesAndRemindersState_build_closure8.prototype = { call$1(value) { var t1 = this.$this, t2 = t1._templates_and_reminders$_bodyController; if (B.JSString_methods.trim$0(value) !== J.trim$0$s(t2._change_notifier$_value.text)) { t1._emailPreview = t1._bodyPreview = ""; t2.set$text(0, value); } }, $signature: 11 }; A.ReminderSettings.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._ReminderSettingsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, true), B._StateLifecycle_0); }, onChanged$5(arg0, arg1, arg2, arg3, arg4) { return this.onChanged.call$5(arg0, arg1, arg2, arg3, arg4); } }; A._ReminderSettingsState.prototype = { dispose$0(_) { B.JSArray_methods.forEach$1(this._templates_and_reminders$_controllers, new A._ReminderSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0() { var t2, t3, t4, _this = this, _null = null, t1 = _this._widget; _this._templates_and_reminders$_enabled = t1.enabled; _this._templates_and_reminders$_schedule = t1.schedule; t1 = _this._daysController; t2 = _this._feeAmountController; t3 = _this._feePercentController; t4 = A._setArrayType([t1, t2, t3], type$.JSArray_legacy_TextEditingController); _this._templates_and_reminders$_controllers = t4; B.JSArray_methods.forEach$1(t4, new A._ReminderSettingsState_didChangeDependencies_closure(_this)); t4 = _this._widget.numDays; t1.set$text(0, A.S(t4 == null ? "" : t4)); t1 = _this._widget.feeAmount; t4 = _this._framework$_element; t4.toString; t2.set$text(0, A.formatNumber(t1, t4, _null, _null, B.FormatNumberType_4, true, _null, false)); t4 = _this._widget.feePercent; t1 = _this._framework$_element; t1.toString; t3.set$text(0, A.formatNumber(t4, t1, _null, _null, B.FormatNumberType_4, true, _null, false)); B.JSArray_methods.forEach$1(_this._templates_and_reminders$_controllers, new A._ReminderSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _onTextChanged$0() { this._templates_and_reminders$_debouncer.run$1(new A._ReminderSettingsState__onTextChanged_closure(this)); }, _templates_and_reminders$_onChanged$0() { var _this = this, days = A.parseInt(J.trim$0$s(_this._daysController._change_notifier$_value.text), true), feeAmount = A.parseDouble(J.trim$0$s(_this._feeAmountController._change_notifier$_value.text), true), feePercent = A.parseDouble(J.trim$0$s(_this._feePercentController._change_notifier$_value.text), true); _this._widget.onChanged$5(_this._templates_and_reminders$_enabled, days, _this._templates_and_reminders$_schedule, feeAmount, feePercent); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, _s18_ = "after_invoice_date", _s15_ = "before_due_date", _s14_ = "after_due_date", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "days"); if (t4 == null) t4 = ""; t4 = A.DecoratedFormField$(false, _null, false, false, _this._daysController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t4, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t5 = t1.get$disabled(t1); t6 = _this._widget.schedule; t7 = t1.get$schedule(); t8 = J.$index$asx(t2.$index(0, t3), _s18_); t9 = type$.legacy_String; t8 = A.DropdownMenuItem$(A.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s18_, t9); t10 = J.$index$asx(t2.$index(0, t3), _s15_); t10 = A.DropdownMenuItem$(A.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s15_, t9); t11 = J.$index$asx(t2.$index(0, t3), _s14_); t5 = A.AppDropdownButton$(t5, "", true, A._setArrayType([t8, t10, A.DropdownMenuItem$(A.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _s14_, t9)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t7, new A._ReminderSettingsState_build_closure(_this), _null, true, t6, t9); t1 = A.BoolDropdownButton$(_null, _null, _null, B.IconData_57898_MaterialIcons_null_false, t1.get$sendEmail(), _null, new A._ReminderSettingsState_build_closure0(_this), _this._widget.enabled); t6 = J.$index$asx(t2.$index(0, t3), "late_fee_amount"); if (t6 == null) t6 = ""; t6 = A.DecoratedFormField$(false, _null, false, false, _this._feeAmountController, _null, true, _null, _null, _null, _null, true, false, _null, new A.TextInputType(2, true, true), t6, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t3 = J.$index$asx(t2.$index(0, t3), "late_fee_percent"); t2 = t3 == null ? "" : t3; t3 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.FormCard$(_null, A._setArrayType([t4, t5, new A.Padding(B.EdgeInsets_0_10_0_10, t1, _null), t6, A.DecoratedFormField$(false, _null, false, false, _this._feePercentController, _null, true, _null, _null, _null, _null, false, true, _null, new A.TextInputType(2, true, true), t2, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t3), _null, _null, false, _null, false, _null)], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); } }; A._ReminderSettingsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_onTextChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._ReminderSettingsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_onTextChanged()); }, $signature: 12 }; A._ReminderSettingsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_onTextChanged()); }, $signature: 12 }; A._ReminderSettingsState__onTextChanged_closure.prototype = { call$0() { this.$this._templates_and_reminders$_onChanged$0(); }, $signature: 1 }; A._ReminderSettingsState_build_closure.prototype = { call$1(value) { var t1 = this.$this; t1._templates_and_reminders$_schedule = value; t1._templates_and_reminders$_onChanged$0(); }, $signature: 7 }; A._ReminderSettingsState_build_closure0.prototype = { call$1(value) { var t1 = this.$this; t1._templates_and_reminders$_enabled = value; t1._templates_and_reminders$_onChanged$0(); }, $signature: 20 }; A.EmailPreview.prototype = { build$1(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget; t1 = A._setArrayType([A.Column$(A._setArrayType([new A.ListDivider(_null), new A.Padding(B.EdgeInsets_24_12_10_12, A.Text$(this.subject, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyLarge.copyWith$1$color(B.Color_4278190080), _null, _null, _null), _null), A.Expanded$(new A.AppWebView(this.body, _null), 1)], t1), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], t1); if (this.isLoading) t1.push(new A.SizedBox(_null, _null, A.LinearProgressIndicator$(), _null)); return A.Container$(_null, new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t1, _null), B.Clip_0, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, get$body(receiver) { return this.body; } }; A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TemplatesAndRemindersScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TemplatesAndRemindersScreen_build_closure(), A.templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TemplatesAndRemindersVM); } }; A.TemplatesAndRemindersScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TemplatesAndReminders(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2700 }; A.TemplatesAndRemindersVM.prototype = {}; A.TemplatesAndRemindersVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.TemplatesAndRemindersVM_fromStore_closure.prototype = { call$1(template) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTemplate(template)); }, $signature: 648 }; A.TemplatesAndRemindersVM_fromStore_closure1.prototype = { call$2(context, updateReminders) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TemplatesAndRemindersVM_fromStore__closure(updateReminders, this.state, this.store, context).call$0(); }, $signature: 229 }; A.TemplatesAndRemindersVM_fromStore__closure.prototype = { call$0() { var t2, t3, completer, _this = this, t1 = _this.store, callback = new A.TemplatesAndRemindersVM_fromStore___closure(_this.updateReminders, _this.state, t1), settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; t3 = type$.Null; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, t3); completer.future.then$1$1(0, new A.TemplatesAndRemindersVM_fromStore___closure0(callback), t3); t3 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t3)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); completer.future.then$1$1(0, new A.TemplatesAndRemindersVM_fromStore___closure1(callback), type$.Null); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); completer.future.then$1$1(0, new A.TemplatesAndRemindersVM_fromStore___closure2(callback), type$.Null); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.TemplatesAndRemindersVM_fromStore___closure.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t1, t2, t3; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$async$self.updateReminders) { // goto return $async$goto = 1; break; } t1 = $async$self.state; t2 = t1.get$credentials(t1); t3 = $async$self.store; t3.get$_dispatchers()[0].call$1(new A.StartSaving()); new A.WebClient().post$2(t2.url + "/invoices/update_reminders", t1.get$credentials(t1).token).then$1$1(0, new A.TemplatesAndRemindersVM_fromStore____closure(t3), type$.Null).catchError$1(new A.TemplatesAndRemindersVM_fromStore____closure0(t3)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A.TemplatesAndRemindersVM_fromStore____closure.prototype = { call$1(value) { A.Timer_Timer(A.Duration$(0, 0, 0, 0, 0, 2), new A.TemplatesAndRemindersVM_fromStore_____closure(this.store)); }, $signature: 7 }; A.TemplatesAndRemindersVM_fromStore_____closure.prototype = { call$0() { var t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.StopSaving()); t1.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 1 }; A.TemplatesAndRemindersVM_fromStore____closure0.prototype = { call$1(error) { this.store.get$_dispatchers()[0].call$1(new A.StopSaving()); }, $signature: 7 }; A.TemplatesAndRemindersVM_fromStore___closure0.prototype = { call$1(value) { return this.callback.call$0(); }, $signature: 549 }; A.TemplatesAndRemindersVM_fromStore___closure1.prototype = { call$1(value) { return this.callback.call$0(); }, $signature: 2702 }; A.TemplatesAndRemindersVM_fromStore___closure2.prototype = { call$1(value) { return this.callback.call$0(); }, $signature: 2703 }; A.UserDetails.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._UserDetailsState(t1, new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, true), null, null, B._StateLifecycle_0); } }; A._UserDetailsState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = A.TabController$(null, _this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 2, _this); _this._user_details$_controller = t1; t1.addListener$1(0, _this.get$_user_details$_onTabChanged()); }, _user_details$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._user_details$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._user_details$_focusNode.dispose$0(0); _this._user_details$_controller.removeListener$1(0, _this.get$_user_details$_onTabChanged()); _this._user_details$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._user_details$_controllers, new A._UserDetailsState_dispose_closure(_this)); _this.super$__UserDetailsState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0() { var t7, user, _this = this, t1 = _this._user_details$_firstNameController, t2 = _this._user_details$_lastNameController, t3 = _this._user_details$_emailController, t4 = _this._user_details$_phoneController, t5 = _this._passwordController, t6 = A._setArrayType([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._user_details$_controllers = t6; B.JSArray_methods.forEach$1(t6, new A._UserDetailsState_didChangeDependencies_closure(_this)); t6 = _this._widget.viewModel.state; t7 = t6.userCompanyStates; t6 = t6.uiState.selectedCompanyIndex; user = t7._list[t6].userCompany.user; t1.set$text(0, user.firstName); t2.set$text(0, user.lastName); t3.set$text(0, user.email); t4.set$text(0, user.phone); t5.set$text(0, user.password); B.JSArray_methods.forEach$1(_this._user_details$_controllers, new A._UserDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _user_details$_onChanged$0() { var user, _this = this, t1 = {}, phone = t1.phone = J.trim$0$s(_this._user_details$_phoneController._change_notifier$_value.text); if (phone.length !== 0 && !B.JSString_methods.startsWith$1(phone, "+")) t1.phone = "+" + phone; user = _this._widget.viewModel.user.rebuild$1(new A._UserDetailsState__onChanged_closure(t1, _this)); if (!J.$eq$(user, _this._widget.viewModel.user)) _this._user_details$_debouncer.run$1(new A._UserDetailsState__onChanged_closure0(_this, user)); }, _user_details$_onSavePressed$1(context) { var isValid = $.$get$_UserDetailsState__formKey().get$currentState().validate$0(); this.setState$1(new A._UserDetailsState__onSavePressed_closure(this, isValid)); if (!isValid) return; this._widget.viewModel.onSavePressed.call$1(context); }, build$1(_, context) { var t4, t5, t6, t0, t7, t8, googleButton, t9, t10, gmailButton, t11, microsoftButton, office365Button, appleButton, t12, t13, t14, t15, t16, _list, i, i0, _this = this, _null = null, _s20_ = "disconnect_microsoft", _s2_ = "en", _s16_ = "disconnect_email", _s13_ = "connect_email", _s16_0 = "disconnect_apple", _s13_0 = "connect_apple", _s16_1 = "years_data_shown", _s23_ = "include_deleted_clients", _s28_ = "include_deleted_clients_help", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, user = viewModel.user, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; if (t2[t3].userCompany.user.oauthProvider === "google") { t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t4.$index(0, t5), "disconnect_google"); if (t6 == null) t6 = ""; t0 = t6; t6 = t5; t5 = t4; t4 = t0; } else { t1.toString; t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = t1.localeCode; t6 = J.$index$asx(t4.$index(0, t5), "connect_google"); if (t6 == null) t6 = ""; t0 = t6; t6 = t5; t5 = t4; t4 = t0; } t4 = A.Text$(t4.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null); t7 = t2[t3].userCompany.user; t8 = t7.oauthProvider; googleButton = A.Expanded$(A.OutlinedButton$(t4, _null, (t8 === "google" || t8 === "microsoft") && t7.oauthUserToken.length !== 0 ? _null : new A._UserDetailsState_build_closure(state, context, t1, viewModel), _null), 1); t4 = user.oauthProvider; t7 = t4 === "google"; t8 = !t7; if ((!t8 || t4 === "microsoft") && user.oauthUserToken.length !== 0) { t1.toString; t9 = J.$index$asx(t5.$index(0, t6), "disconnect_gmail"); if (t9 == null) t9 = ""; } else t9 = t1.get$connectGmail(); t9 = A.Text$(t9.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null); t10 = t2[t3].userCompany.user.oauthProvider; gmailButton = A.Expanded$(A.OutlinedButton$(t9, _null, t10 !== "google" ? _null : new A._UserDetailsState_build_closure0(state, context, t1, viewModel), _null), 1); if (t10 === "microsoft") { t1.toString; t9 = J.$index$asx(t5.$index(0, t6), _s20_); if (t9 == null) t9 = J.$index$asx(t5.$index(0, _s2_), _s20_); } else t9 = t1.get$connectMicrosoft(); t9 = A.Text$(t9.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null); t10 = t2[t3].userCompany.user; t11 = t10.oauthProvider; microsoftButton = A.Expanded$(A.OutlinedButton$(t9, _null, (t11 === "google" || t11 === "microsoft") && t10.oauthUserToken.length !== 0 ? _null : new A._UserDetailsState_build_closure1(state, context, t1, viewModel), _null), 1); if ((!t8 || t4 === "microsoft") && user.oauthUserToken.length !== 0) { t1.toString; t8 = J.$index$asx(t5.$index(0, t6), _s16_); if (t8 == null) t8 = J.$index$asx(t5.$index(0, _s2_), _s16_); } else { t1.toString; t8 = J.$index$asx(t5.$index(0, t6), _s13_); if (t8 == null) t8 = J.$index$asx(t5.$index(0, _s2_), _s13_); } t8 = A.Text$(t8.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null); t9 = t2[t3].userCompany.user.oauthProvider; office365Button = A.Expanded$(A.OutlinedButton$(t8, _null, t9 !== "microsoft" ? _null : new A._UserDetailsState_build_closure2(state, context, t1, viewModel), _null), 1); if (t9 === "apple") { t1.toString; t8 = J.$index$asx(t5.$index(0, t6), _s16_0); if (t8 == null) t8 = J.$index$asx(t5.$index(0, _s2_), _s16_0); } else { t1.toString; t8 = J.$index$asx(t5.$index(0, t6), _s13_0); if (t8 == null) t8 = J.$index$asx(t5.$index(0, _s2_), _s13_0); } appleButton = A.Expanded$(A.OutlinedButton$(A.Text$(t8.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null), _null, new A._UserDetailsState_build_closure3(state, context, t1, viewModel), _null), 1); t1.toString; t8 = J.$index$asx(t5.$index(0, t6), "user_details"); if (t8 == null) t8 = ""; t9 = _this.get$_user_details$_onSavePressed(); t10 = type$.JSArray_legacy_Widget; t11 = A.TabBar$(_this._user_details$_controller, _null, false, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$notifications())], t10)); t12 = $.$get$_UserDetailsState__formKey(); t13 = _this._user_details$_controller; t14 = t1.get$firstName(t1); t14 = A.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t14, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, new A._UserDetailsState_build_closure4(t1)); t15 = t1.get$lastName(t1); t15 = A.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t15, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, new A._UserDetailsState_build_closure5(t1)); t16 = t1.get$email(t1); t16 = A.FormCard$(_null, A._setArrayType([t14, t15, A.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t16, _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, new A._UserDetailsState_build_closure6(t1)), A.DecoratedFormField$(false, _null, false, false, _this._user_details$_phoneController, _null, true, _null, "+12125550000", _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t9, true, _null, _null, B.TextAlign_4, new A._UserDetailsState_build_closure7(state, t1)), new A.PasswordFormField(_this._passwordController, t9, _this.autoValidate, true, true, _null, _null)], t10), _null, _null, false, _null, false, _null); t15 = A._setArrayType([], t10); if (state.get$isHosted()) t14 = !(A.isMacOS() || A.isWindows() || A.isLinux()); else t14 = false; if (t14) { t14 = A._setArrayType([], t10); if (t7) B.JSArray_methods.addAll$1(t14, A._setArrayType([googleButton, new A.SizedBox(16, _null, _null, _null), gmailButton, new A.SizedBox(16, _null, _null, _null)], t10)); else if (t4 === "microsoft") B.JSArray_methods.addAll$1(t14, A._setArrayType([microsoftButton, new A.SizedBox(16, _null, _null, _null), office365Button, new A.SizedBox(16, _null, _null, _null)], t10)); else if (t4 === "apple") B.JSArray_methods.addAll$1(t14, A._setArrayType([appleButton, new A.SizedBox(16, _null, _null, _null)], t10)); else { t4 = A._setArrayType([googleButton, new A.SizedBox(16, _null, _null, _null)], t10); t4.push(microsoftButton); t4.push(new A.SizedBox(16, _null, _null, _null)); B.JSArray_methods.addAll$1(t14, t4); } B.JSArray_methods.addAll$1(t15, t14); } if (!t2[t3].userCompany.account.accountSmsVerified) B.JSArray_methods.addAll$1(t15, A._setArrayType([A.Expanded$(A.OutlinedButton$(A.Text$(t1.get$verifyPhoneNumber().toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null), _null, new A._UserDetailsState_build_closure8(state, context, t1, user, viewModel), _null), 1), new A.SizedBox(16, _null, _null, _null)], t10)); if (t2[t3].userCompany.user.isTwoFactorEnabled) { t4 = J.$index$asx(t5.$index(0, t6), "disable_two_factor"); if (t4 == null) t4 = ""; } else t4 = t1.get$enableTwoFactor(); t15.push(A.Expanded$(A.OutlinedButton$(A.Text$(t4.toUpperCase(), _null, _null, _null, _null, _null, _null, B.TextAlign_2, _null, _null), _null, new A._UserDetailsState_build_closure9(state, context, t1, viewModel, user), _null), 1)); t15 = A.Row$(t15, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t4 = J.$index$asx(t5.$index(0, t6), "accent_color"); if (t4 == null) t4 = ""; t7 = user.userCompany.settings; t4 = A._setArrayType([A.FormColorPicker$(t7.accentColor, t4, new A._UserDetailsState_build_closure10(_this, user))], t10); t2[t3].userCompany.company.toString; t2 = J.$index$asx(t5.$index(0, t6), _s16_1); if (t2 == null) t2 = J.$index$asx(t5.$index(0, _s2_), _s16_1); t3 = t7.numberYearsActive; t5 = type$.legacy_int; t1 = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$all(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 0, t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(10, t5); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t14 = A._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); B.JSArray_methods.addAll$1(t1, A.List_List$of(new A.MappedListIterable(_list, new A._UserDetailsState_build_closure11(), t14), true, t14._eval$1("ListIterable.E"))); t5 = A.AppDropdownButton$(_null, _null, true, t1, _null, t2, new A._UserDetailsState_build_closure12(_this, user), _null, false, t3, t5); t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t6), _s23_); t1 = t2 == null ? J.$index$asx(t3.$index(0, _s2_), _s23_) : t2; t6 = J.$index$asx(t3.$index(0, t6), _s28_); t2 = t6 == null ? J.$index$asx(t3.$index(0, _s2_), _s28_) : t6; B.JSArray_methods.addAll$1(t4, A._setArrayType([t5, new A.SizedBox(_null, 8, _null, _null), A.BoolDropdownButton$(_null, _null, t2, _null, t1, _null, new A._UserDetailsState_build_closure13(_this, user), t7.includeDeletedClients)], t10)); return A.EditScaffold$(_null, t11, new A.AppTabForm(_this._user_details$_focusNode, t12, A._setArrayType([new A.ScrollableListView(A._setArrayType([t16, new A.Padding(B.EdgeInsets_18_20_18_10, t15, _null), A.FormCard$(_null, t4, _null, _null, false, _null, true, _null)], t10), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.NotificationSettings(user, new A._UserDetailsState_build_closure14(viewModel, user), _null)], t10), _null, _null, _null)], t10), t13, _null, _null), _null, _null, _null, false, _null, _null, t9, _null, t8); } }; A._UserDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_user_details$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A._UserDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_user_details$_onChanged()); }, $signature: 12 }; A._UserDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_user_details$_onChanged()); }, $signature: 12 }; A._UserDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._user_details$_firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t2 = J.trim$0$s(t1._user_details$_lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t2; t2 = J.trim$0$s(t1._user_details$_emailController._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_email = t2; t2 = this._box_0.phone; b.get$_user_model$_$this()._user_model$_phone = t2; t1 = J.trim$0$s(t1._passwordController._change_notifier$_value.text); b.get$_user_model$_$this()._password = t1; return b; }, $signature: 77 }; A._UserDetailsState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.user); }, $signature: 1 }; A._UserDetailsState__onSavePressed_closure.prototype = { call$0() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; A._UserDetailsState_build_closure.prototype = { call$0() { var t3, t4, _this = this, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), null, null); return; } t2 = t2.selectedCompanyIndex; t3 = _this.viewModel; t4 = _this.context; if (t1.userCompanyStates._list[t2].userCompany.user.oauthProvider === "google") t3.onDisconnectGooglePressed.call$1(t4); else t3.onConnectGooglePressed.call$1(t4); }, $signature: 1 }; A._UserDetailsState_build_closure0.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t1, t2; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog($async$self.context, $async$self.localization.get$errorUnsavedChanges(), null, null); // goto return $async$goto = 1; break; } t2 = t2.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.user; t1 = t2.oauthProvider; if ((t1 === "google" || t1 === "microsoft") && t2.oauthUserToken.length !== 0) $async$self.viewModel.onDisconnectGmailPressed.call$1($async$self.context); else A.launch("https://invoicing.co/auth/google", null, false); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._UserDetailsState_build_closure1.prototype = { call$0() { var t3, t4, _this = this, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), null, null); return; } t2 = t2.selectedCompanyIndex; t3 = _this.viewModel; t4 = _this.context; if (t1.userCompanyStates._list[t2].userCompany.user.oauthProvider === "microsoft") t3.onDisconnectMicrosoftPressed.call$1(t4); else t3.onConnectMicrosoftPressed.call$1(t4); }, $signature: 1 }; A._UserDetailsState_build_closure2.prototype = { call$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t3, t1, t2; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog($async$self.context, $async$self.localization.get$errorUnsavedChanges(), null, null); // goto return $async$goto = 1; break; } t2 = t2.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany; t1 = t2.user; t3 = t1.oauthProvider; if ((t3 === "google" || t3 === "microsoft") && t1.oauthUserToken.length !== 0) $async$self.viewModel.onDisconnectMicrosoftEmailPressed.call$1($async$self.context); else A.launch(t2.account.defaultUrl + "/auth/microsoft", null, false); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature: 37 }; A._UserDetailsState_build_closure3.prototype = { call$0() { var _this = this, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), null, null); return; } t2 = t2.selectedCompanyIndex; if (t1.userCompanyStates._list[t2].userCompany.user.oauthProvider === "apple") _this.viewModel.onDisconnectApplePressed.call$1(_this.context); }, $signature: 1 }; A._UserDetailsState_build_closure4.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAFirstName() : null; }, $signature: 15 }; A._UserDetailsState_build_closure5.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterALastName() : null; }, $signature: 15 }; A._UserDetailsState_build_closure6.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; A._UserDetailsState_build_closure7.prototype = { call$1(value) { var t1, t2, _s20_ = "invalid_phone_number"; if (value.length === 0 || !this.state.get$isHosted()) return null; if (!B.JSString_methods.startsWith$1(value, "+")) value = "+" + A.S(value); t1 = A.RegExp_RegExp("^\\+[1-9]\\d{1,14}$", true, false, false, false); if (t1._nativeRegExp.test(value)) t1 = null; else { t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, this.localization.localeCode), _s20_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s20_) : t2; } return t1; }, $signature: 15 }; A._UserDetailsState_build_closure8.prototype = { call$0() { var _this = this, _null = null, _s18_ = "enter_phone_number", t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), _null, _null); return; } t2 = t2.selectedCompanyIndex; if (t1.userCompanyStates._list[t2].userCompany.user.phone.length === 0 || _this.user.phone.length === 0) { t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, _this.localization.localeCode), _s18_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s18_) : t2; A.showMessageDialog(_this.context, t1, _null, _null); return; } A.showDialog(_null, true, new A._UserDetailsState_build__closure4(_this.viewModel), _this.context, _null, true, type$.void); }, $signature: 1 }; A._UserDetailsState_build__closure4.prototype = { call$1(context) { return new A._SmsVerification(this.viewModel.state, null); }, $signature: 2704 }; A._UserDetailsState_build_closure9.prototype = { call$0() { var _this = this, _null = null, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { A.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), _null, _null); return; } t2 = t2.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.user; if (t2.isTwoFactorEnabled) _this.viewModel.onDisableTwoFactorPressed.call$1(_this.context); else { if (t2.phone.length === 0 || _this.user.phone.length === 0) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, _this.localization.localeCode), "enter_phone_to_enable_two_factor"); if (t1 == null) t1 = ""; A.showMessageDialog(_this.context, t1, _null, _null); return; } A.showDialog(_null, true, new A._UserDetailsState_build__closure3(_this.viewModel), _this.context, _null, true, type$.void); } }, $signature: 1 }; A._UserDetailsState_build__closure3.prototype = { call$1(context) { return new A._EnableTwoFactor(this.viewModel.state, null); }, $signature: 2705 }; A._UserDetailsState_build_closure10.prototype = { call$1(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure2(value))); }, $signature: 11 }; A._UserDetailsState_build__closure2.prototype = { call$1(b) { var t1 = b.get$userCompany().get$settings(), t2 = this.value; if (t2 == null) t2 = "#ffffff"; t1.get$_company_model$_$this()._accentColor = t2; return b; }, $signature: 77 }; A._UserDetailsState_build_closure12.prototype = { call$1(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure1(value))); }, $signature: 7 }; A._UserDetailsState_build__closure1.prototype = { call$1(b) { b.get$userCompany().get$settings().get$_company_model$_$this()._numberYearsActive = this.value; return b; }, $signature: 77 }; A._UserDetailsState_build_closure11.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(A.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_int); }, $signature: 182 }; A._UserDetailsState_build_closure13.prototype = { call$1(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure0(value))); }, $signature: 20 }; A._UserDetailsState_build__closure0.prototype = { call$1(b) { b.get$userCompany().get$settings().get$_company_model$_$this()._includeDeletedClients = this.value; return b; }, $signature: 77 }; A._UserDetailsState_build_closure14.prototype = { call$2(channel, options) { this.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure(channel, options))); }, $signature: 485 }; A._UserDetailsState_build__closure.prototype = { call$1(b) { b.get$userCompany().get$notifications().$indexSet(0, this.channel, A.BuiltList_BuiltList$from(this.options, type$.legacy_String)); return b; }, $signature: 77 }; A._EnableTwoFactor.prototype = { createState$0() { return new A._EnableTwoFactorState(new A.WebClient(), A.FocusScopeNode$(true, null, false), B._StateLifecycle_0); } }; A._EnableTwoFactorState.prototype = { initState$0() { var t1, credentials, _this = this; _this.super$State$initState(); t1 = _this._widget.state; credentials = t1.get$credentials(t1); _this._user_details$_webClient.$get$2(0, credentials.url + "/settings/enable_two_factor", credentials.token).then$1$1(0, new A._EnableTwoFactorState_initState_closure(_this), type$.Null).catchError$1(new A._EnableTwoFactorState_initState_closure0(_this)); }, dispose$0(_) { this._user_details$_focusNode.dispose$0(0); this.super$State$dispose(0); }, _user_details$_onSavePressed$0() { var t1, credentials, _this = this, isValid = $.$get$_EnableTwoFactorState__formKey().get$currentState().validate$0(); _this.setState$1(new A._EnableTwoFactorState__onSavePressed_closure(_this, isValid)); if (!isValid) return; t1 = _this._widget.state; credentials = t1.get$credentials(t1); _this.setState$1(new A._EnableTwoFactorState__onSavePressed_closure0(_this)); t1 = type$.legacy_String; _this._user_details$_webClient.post$3$data(credentials.url + "/settings/enable_two_factor", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["secret", _this._user_details$_secret, "one_time_password", _this._oneTimePassword], t1, t1))).then$1$1(0, new A._EnableTwoFactorState__onSavePressed_closure1(_this), type$.Null).catchError$1(new A._EnableTwoFactorState__onSavePressed_closure2(_this)); }, build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.Text$(t1.get$enableTwoFactor(), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._user_details$_isLoading) t3 = new A.LoadingIndicator(100, false, _null); else { t3 = $.$get$_EnableTwoFactorState__formKey(); t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); t6 = _this._user_details$_secret; if (t6 == null) t5.push(new A.LoadingIndicator(_null, false, _null)); else B.JSArray_methods.addAll$1(t5, A._setArrayType([new A.QrImageView(_this._user_details$_qrCode, B.Color_4294967295, -1, 180, _null), new A.Padding(B.EdgeInsets_0_16_0_16, A.SelectableText$(t6, _null), _null)], t4)); t5.push(A.Row$(A._setArrayType([A.Expanded$(A.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t1.get$oneTimePassword(), _null, _null, false, new A._EnableTwoFactorState_build_closure(_this), _null, new A._EnableTwoFactorState_build_closure0(_this), true, _null, _null, B.TextAlign_4, new A._EnableTwoFactorState_build_closure1(context)), 1), new A.SizedBox(16, _null, _null, _null), new A.SizedBox(100, _null, A.TextButton$(false, A.Text$(t1.get$learnMore(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EnableTwoFactorState_build_closure2(), _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)); t3 = new A.AppForm(t3, _null, new A.SizedBox(280, _null, A.Column$(t5, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), _this._user_details$_focusNode, _null); } t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); if (_this._user_details$_secret != null) B.JSArray_methods.addAll$1(t5, A._setArrayType([A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EnableTwoFactorState_build_closure3(context), _null), A.TextButton$(false, A.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._EnableTwoFactorState_build_closure4(_this), _null)], t4)); return A.AlertDialog$(t5, B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, t2); } }; A._EnableTwoFactorState_initState_closure.prototype = { call$1(data) { var t1 = this.$this; t1.setState$1(new A._EnableTwoFactorState_initState__closure(t1, $.$get$serializers().deserializeWith$1$2($.$get$_$userTwoFactorResponseSerializer(), data, type$.legacy_UserTwoFactorResponse))); }, $signature: 7 }; A._EnableTwoFactorState_initState__closure.prototype = { call$0() { var t2, t1 = this.$this; t1._user_details$_isLoading = false; t2 = this.response.data; t1._user_details$_qrCode = t2.qrCode; t1._user_details$_secret = t2.secret; }, $signature: 1 }; A._EnableTwoFactorState_initState_closure0.prototype = { call$1(error) { var t1 = this.$this, t2 = t1._framework$_element; t2.toString; A.Navigator_of(t2, false).pop$0(0); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, error); }, $signature: 7 }; A._EnableTwoFactorState__onSavePressed_closure.prototype = { call$0() { }, $signature: 1 }; A._EnableTwoFactorState__onSavePressed_closure0.prototype = { call$0() { return this.$this._user_details$_isLoading = true; }, $signature: 21 }; A._EnableTwoFactorState__onSavePressed_closure1.prototype = { call$1(data) { var t2, t1 = this.$this; t1.setState$1(new A._EnableTwoFactorState__onSavePressed__closure0(t1)); t2 = t1._framework$_element; t2.toString; t2 = A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "enabled_two_factor"); A.showToast(t2 == null ? "" : t2); t2 = t1._framework$_element; t2.toString; A.StoreProvider_of(t2, type$.legacy_AppState).get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); t1 = t1._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$0(0); }, $signature: 7 }; A._EnableTwoFactorState__onSavePressed__closure0.prototype = { call$0() { return this.$this._user_details$_isLoading = false; }, $signature: 21 }; A._EnableTwoFactorState__onSavePressed_closure2.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A._EnableTwoFactorState__onSavePressed__closure(t1)); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, A.S(error)); }, $signature: 3 }; A._EnableTwoFactorState__onSavePressed__closure.prototype = { call$0() { return this.$this._user_details$_isLoading = false; }, $signature: 21 }; A._EnableTwoFactorState_build_closure.prototype = { call$1(value) { this.$this._oneTimePassword = value; }, $signature: 11 }; A._EnableTwoFactorState_build_closure1.prototype = { call$1(value) { return value.length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAValue() : null; }, $signature: 15 }; A._EnableTwoFactorState_build_closure0.prototype = { call$1(context) { return this.$this._user_details$_onSavePressed$0(); }, $signature: 30 }; A._EnableTwoFactorState_build_closure2.prototype = { call$0() { A.launch("https://github.com/antonioribeiro/google2fa#google-authenticator-apps", null, false); }, $signature: 1 }; A._EnableTwoFactorState_build_closure3.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._EnableTwoFactorState_build_closure4.prototype = { call$0() { return this.$this._user_details$_onSavePressed$0(); }, $signature: 0 }; A._SmsVerification.prototype = { createState$0() { return new A.__SmsVerificationState(new A.WebClient(), A.FocusScopeNode$(true, null, false), B._StateLifecycle_0); } }; A.__SmsVerificationState.prototype = { initState$0() { this.super$State$initState(); this._sendCode$0(); }, _sendCode$0() { var $navigator, t2, t3, _this = this, state = _this._widget.state, credentials = state.get$credentials(state), t1 = _this._framework$_element; t1.toString; $navigator = A.Navigator_of(t1, false); _this.setState$1(new A.__SmsVerificationState__sendCode_closure(_this)); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t3 = type$.legacy_String; _this._user_details$_webClient.post$3$data(credentials.url + "/verify", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["phone", t1._list[t2].userCompany.user.phone], t3, t3))).then$1$1(0, new A.__SmsVerificationState__sendCode_closure0(_this), type$.Null).catchError$1(new A.__SmsVerificationState__sendCode_closure1(_this, $navigator)); }, _verifyCode$0() { var t1, store, t2, credentials, $navigator, _this = this, isValid = $.$get$__SmsVerificationState__formKey().get$currentState().validate$0(); _this.setState$1(new A.__SmsVerificationState__verifyCode_closure(_this, isValid)); if (!isValid) return; t1 = _this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._widget.state; credentials = t2.get$credentials(t2); t2 = _this._framework$_element; t2.toString; $navigator = A.Navigator_of(t2, false); _this.setState$1(new A.__SmsVerificationState__verifyCode_closure0(_this)); t2 = type$.legacy_String; _this._user_details$_webClient.post$3$data(credentials.url + "/verify/confirm", credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["code", _this._user_details$_code], t2, t2))).then$1$1(0, new A.__SmsVerificationState__verifyCode_closure1(_this, $navigator, t1, store), type$.Null).catchError$1(new A.__SmsVerificationState__verifyCode_closure2(_this)); }, dispose$0(_) { this._user_details$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, _s13_ = "code_was_sent", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = A.Text$(t1.get$verifyPhoneNumber(), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._user_details$_isLoading) t3 = new A.LoadingIndicator(80, false, _null); else { t3 = $.$get$__SmsVerificationState__formKey(); t4 = $.$get$LocalizationsProvider__localizedValues(); t5 = J.$index$asx(t4.$index(0, t1.localeCode), _s13_); t4 = A.Text$(t5 == null ? J.$index$asx(t4.$index(0, "en"), _s13_) : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = t1.get$code(t1); t5 = new A.AppForm(t3, _null, A.Column$(A._setArrayType([t4, new A.SizedBox(_null, 8, _null, _null), A.DecoratedFormField$(false, _null, false, _this._user_details$_autoValidate, _null, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t5, _null, _null, false, new A.__SmsVerificationState_build_closure(_this), _null, _null, true, _null, _null, B.TextAlign_4, new A.__SmsVerificationState_build_closure0(t1))], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _this._user_details$_focusNode, _null); t3 = t5; } t4 = A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__SmsVerificationState_build_closure1(context), _null); t5 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; t6 = J.$index$asx(t5.$index(0, t1), "resend"); if (t6 == null) t6 = J.$index$asx(t5.$index(0, "en"), "resend"); t6 = A.TextButton$(false, A.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__SmsVerificationState_build_closure2(_this), _null); t1 = J.$index$asx(t5.$index(0, t1), "verify"); if (t1 == null) t1 = J.$index$asx(t5.$index(0, "en"), "verify"); return A.AlertDialog$(A._setArrayType([t4, t6, A.TextButton$(false, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.__SmsVerificationState_build_closure3(_this), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, t2); } }; A.__SmsVerificationState__sendCode_closure.prototype = { call$0() { this.$this._user_details$_isLoading = true; }, $signature: 1 }; A.__SmsVerificationState__sendCode_closure0.prototype = { call$1(data) { var t1 = this.$this; t1.setState$1(new A.__SmsVerificationState__sendCode__closure0(t1)); }, $signature: 7 }; A.__SmsVerificationState__sendCode__closure0.prototype = { call$0() { this.$this._user_details$_isLoading = false; }, $signature: 1 }; A.__SmsVerificationState__sendCode_closure1.prototype = { call$1(error) { var t2, t1 = this.$this; t1.setState$1(new A.__SmsVerificationState__sendCode__closure(t1)); t2 = this.navigator; if (t2.canPop$0()) t2.pop$0(0); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, error); }, $signature: 7 }; A.__SmsVerificationState__sendCode__closure.prototype = { call$0() { this.$this._user_details$_isLoading = false; }, $signature: 1 }; A.__SmsVerificationState__verifyCode_closure.prototype = { call$0() { this.$this._user_details$_autoValidate = !this.isValid; }, $signature: 1 }; A.__SmsVerificationState__verifyCode_closure0.prototype = { call$0() { this.$this._user_details$_isLoading = true; }, $signature: 1 }; A.__SmsVerificationState__verifyCode_closure1.prototype = { call$1(data) { var t2, _this = this, _s21_ = "verified_phone_number", t1 = _this.$this; t1.setState$1(new A.__SmsVerificationState__verifyCode__closure0(t1)); t1 = _this.navigator; if (t1.canPop$0()) t1.pop$0(0); t1 = _this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s21_); A.showToast(t1 == null ? J.$index$asx(t2.$index(0, "en"), _s21_) : t1); _this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 7 }; A.__SmsVerificationState__verifyCode__closure0.prototype = { call$0() { this.$this._user_details$_isLoading = false; }, $signature: 1 }; A.__SmsVerificationState__verifyCode_closure2.prototype = { call$1(error) { var t1 = this.$this; t1.setState$1(new A.__SmsVerificationState__verifyCode__closure(t1)); t1 = t1._framework$_element; t1.toString; A.showErrorDialog(false, t1, error); }, $signature: 7 }; A.__SmsVerificationState__verifyCode__closure.prototype = { call$0() { this.$this._user_details$_isLoading = false; }, $signature: 1 }; A.__SmsVerificationState_build_closure.prototype = { call$1(value) { return this.$this._user_details$_code = value; }, $signature: 15 }; A.__SmsVerificationState_build_closure0.prototype = { call$1(value) { var t1, t2, _s19_ = "please_enter_a_code"; if (value.length === 0) { t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t1.$index(0, this.localization.localeCode), _s19_); t1 = t2 == null ? J.$index$asx(t1.$index(0, "en"), _s19_) : t2; } else t1 = null; return t1; }, $signature: 15 }; A.__SmsVerificationState_build_closure1.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.__SmsVerificationState_build_closure2.prototype = { call$0() { return this.$this._sendCode$0(); }, $signature: 0 }; A.__SmsVerificationState_build_closure3.prototype = { call$0() { return this.$this._verifyCode$0(); }, $signature: 0 }; A.__UserDetailsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.UserDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.UserDetailsScreen_build_closure(), A.user_details_vm_UserDetailsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserDetailsVM); } }; A.UserDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { var state = viewModel.state, t1 = state.uiState, t2 = t1.settingsUIState.updatedAt, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new A.UserDetails(viewModel, new A.ValueKey(t2 + t3._list[t1].userCompany.user.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2707 }; A.UserDetailsVM.prototype = { get$user(receiver) { return this.user; } }; A.UserDetailsVM_fromStore_closure.prototype = { call$1(user) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateUserSettings(user)); }, $signature: 2708 }; A.UserDetailsVM_fromStore_closure5.prototype = { call$1(context) { A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure2(context, this.store, this.state), context, null, false, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure2.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure2(t1, this.store, this.state), t1, false); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure2.prototype = { call$2(password, idToken) { var t3, completer, _s18_ = "disconnected_email", t1 = this.context, t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t2 = J.$index$asx(t3.$index(0, t2.localeCode), _s18_); if (t2 == null) t2 = J.$index$asx(t3.$index(0, "en"), _s18_); completer = A.snackBarCompleter(t1, t2, false, type$.Null); t2 = this.state; t1 = t2.uiState.selectedCompanyIndex; t1 = t2.userCompanyStates._list[t1].userCompany.user.rebuild$1(new A.UserDetailsVM_fromStore____closure2()); this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore____closure2.prototype = { call$1(b) { b.get$_user_model$_$this()._oauthUserToken = ""; return b; }, $signature: 77 }; A.UserDetailsVM_fromStore_closure6.prototype = { call$1(context) { A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure1(context, this.store, this.state), context, null, false, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure1.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure1(t1, this.store, this.state), t1, false); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure1.prototype = { call$2(password, idToken) { var t2, completer, t1 = this.context; A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, "en"), "disconnected_gmail"); if (t2 == null) t2 = ""; completer = A.snackBarCompleter(t1, t2, false, type$.Null); t2 = this.state; t1 = t2.uiState.selectedCompanyIndex; t1 = t2.userCompanyStates._list[t1].userCompany.user.rebuild$1(new A.UserDetailsVM_fromStore____closure1()); this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore____closure1.prototype = { call$1(b) { b.get$_user_model$_$this()._oauthUserToken = ""; return b; }, $signature: 77 }; A.UserDetailsVM_fromStore_closure7.prototype = { call$1(context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "disabled_two_factor"); if (t1 == null) t1 = ""; A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure0(context, this.store, A.snackBarCompleter(context, t1, false, type$.Null)), context, null, false, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure0.prototype = { call$1(_) { A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure0(this.store, this.completer), this.context, false); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure0.prototype = { call$2(password, idToken) { this.store.get$_dispatchers()[0].call$1(new A.DisableTwoFactorRequest(this.completer, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore_closure2.prototype = { call$1(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; if (!t1.userCompanyStates._list[t2].userCompany.user.hasPassword) { A.showErrorDialog(false, context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseFirstSetAPassword()); return; } A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure5(context, this.store, t1), context, null, false, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure5.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure6(t1, this.store, this.state), t1, true); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure6.prototype = { call$2(password, idToken) { var t3, completer, t1 = this.context, t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "disconnected_google"); if (t2 == null) t2 = ""; t3 = type$.Null; completer = A.snackBarCompleter(t1, t2, false, t3); completer.future.then$1$1(0, new A.UserDetailsVM_fromStore____closure5(), t3); t3 = this.state; t2 = t3.uiState.selectedCompanyIndex; t2 = t3.userCompanyStates._list[t2].userCompany.user.rebuild$1(new A.UserDetailsVM_fromStore____closure6()); this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t2, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore____closure5.prototype = { call$1(value) { A.GoogleOAuth_disconnect(); }, $signature: 3 }; A.UserDetailsVM_fromStore____closure6.prototype = { call$1(b) { b.get$_user_model$_$this()._oauthProvider = ""; return b; }, $signature: 77 }; A.UserDetailsVM_fromStore_closure1.prototype = { call$1(context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "connected_google"); if (t1 == null) t1 = ""; A.passwordCallback(false, new A.UserDetailsVM_fromStore__closure6(context, this.store, A.snackBarCompleter(context, t1, false, type$.Null)), context, false); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure6.prototype = { call$2(password, idToken) { return this.$call$body$UserDetailsVM_fromStore__closure0(password, idToken); }, $call$body$UserDetailsVM_fromStore__closure0(password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, t1, t2, exception, $async$exception; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; t1 = $async$self.context; $async$goto = 6; return A._asyncAwait(A.GoogleOAuth_signUp(new A.UserDetailsVM_fromStore___closure7(t1, $async$self.store, password, $async$self.completer)), $async$call$2); case 6: // returning from await. signedIn = $async$result; if (!signedIn) { t2 = $.$get$navigatorKey(); t2.toString; A.showErrorDialog(false, t1, A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = A.unwrapException($async$exception); A.showErrorDialog(false, $async$self.context, error); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 487 }; A.UserDetailsVM_fromStore___closure7.prototype = { call$2(idToken, accessToken) { var t1, _this = this; if (idToken.length === 0 || accessToken.length === 0) { A.GoogleOAuth_signOut(); t1 = _this.context; A.showErrorDialog(false, t1, A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else _this.store.get$_dispatchers()[0].call$1(new A.ConnecOAuthUserRequest(_this.completer, "google", _this.password, idToken, accessToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore_closure4.prototype = { call$1(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; if (!t1.userCompanyStates._list[t2].userCompany.user.hasPassword) { A.showErrorDialog(false, context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseFirstSetAPassword()); return; } A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure3(context, this.store, t1), context, null, true, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure3.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure3(t1, this.store, this.state), t1, false); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure3.prototype = { call$2(password, idToken) { var t1 = this.context, t2 = type$.Null, completer = A.snackBarCompleter(t1, A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$disconnectedMicrosoft(), false, t2); completer.future.then$1$1(0, new A.UserDetailsVM_fromStore____closure3(), t2); t2 = this.state; t1 = t2.uiState.selectedCompanyIndex; t1 = t2.userCompanyStates._list[t1].userCompany.user.rebuild$1(new A.UserDetailsVM_fromStore____closure4()); this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore____closure3.prototype = { call$1(value) { A.WebUtils_microsoftLogout(); }, $signature: 3 }; A.UserDetailsVM_fromStore____closure4.prototype = { call$1(b) { b.get$_user_model$_$this()._oauthProvider = ""; return b; }, $signature: 77 }; A.UserDetailsVM_fromStore_closure8.prototype = { call$1(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; if (!t1.userCompanyStates._list[t2].userCompany.user.hasPassword) { A.showErrorDialog(false, context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseFirstSetAPassword()); return; } A.confirmCallback(false, new A.UserDetailsVM_fromStore__closure(context, this.store, t1), context, null, false, null); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure.prototype = { call$1(_) { var t1 = this.context; A.passwordCallback(false, new A.UserDetailsVM_fromStore___closure(t1, this.store, this.state), t1, true); }, $signature: 11 }; A.UserDetailsVM_fromStore___closure.prototype = { call$2(password, idToken) { var t1 = this.context, t2 = type$.Null, completer = A.snackBarCompleter(t1, A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$disconnectedMicrosoft(), false, t2); completer.future.then$1$1(0, new A.UserDetailsVM_fromStore____closure(), t2); t2 = this.state; t1 = t2.uiState.selectedCompanyIndex; t1 = t2.userCompanyStates._list[t1].userCompany.user.rebuild$1(new A.UserDetailsVM_fromStore____closure0()); this.store.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore____closure.prototype = { call$1(value) { A.WebUtils_microsoftLogout(); }, $signature: 3 }; A.UserDetailsVM_fromStore____closure0.prototype = { call$1(b) { b.get$_user_model$_$this()._oauthProvider = ""; return b; }, $signature: 77 }; A.UserDetailsVM_fromStore_closure3.prototype = { call$1(context) { var t2, _s19_ = "connected_microsoft", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s19_); if (t1 == null) t1 = J.$index$asx(t2.$index(0, "en"), _s19_); A.passwordCallback(false, new A.UserDetailsVM_fromStore__closure4(this.store, A.snackBarCompleter(context, t1, false, type$.Null), context), context, false); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure4.prototype = { call$2(password, idToken) { return this.$call$body$UserDetailsVM_fromStore__closure(password, idToken); }, $call$body$UserDetailsVM_fromStore__closure(password, idToken) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$next = [], $async$self = this, error, exception; var $async$call$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start try { A.WebUtils_microsoftLogin(new A.UserDetailsVM_fromStore___closure4($async$self.store, password, $async$self.completer), new A.UserDetailsVM_fromStore___closure5($async$self.context)); } catch (exception) { error = A.unwrapException(exception); A.showErrorDialog(false, $async$self.context, error); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$2, $async$completer); }, $signature: 487 }; A.UserDetailsVM_fromStore___closure4.prototype = { call$2(idToken, accessToken) { this.store.get$_dispatchers()[0].call$1(new A.ConnecOAuthUserRequest(this.completer, "microsoft", this.password, idToken, accessToken)); }, $signature: 38 }; A.UserDetailsVM_fromStore___closure5.prototype = { call$1(error) { A.showErrorDialog(false, this.context, error); }, $signature: 7 }; A.UserDetailsVM_fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.UserDetailsVM_fromStore__closure7(context, this.state, this.store).call$0(); }, $signature: 14 }; A.UserDetailsVM_fromStore__closure7.prototype = { call$0() { var t8, t1 = this.context, t2 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = type$.Null, completer = A.snackBarCompleter(t1, t2.get$updatedUser(), false, t3), t4 = t1.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState), t5 = this.state, t6 = t5.uiState, t7 = t6.selectedCompanyIndex; t5 = t5.userCompanyStates._list; t8 = this.store; completer.future.then$1$1(0, new A.UserDetailsVM_fromStore___closure8(t8, t5[t7].userCompany.settings, t2, t4), t3); t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "changing_phone_disables_two_factor"); if (t2 == null) t2 = ""; t3 = t5[t7].userCompany.user; t3 = t3.phone === t6.settingsUIState.user.phone || !t3.isTwoFactorEnabled; A.confirmCallback(false, new A.UserDetailsVM_fromStore___closure9(t1, t8, completer), t1, t2, t3, null); }, $signature: 1 }; A.UserDetailsVM_fromStore___closure8.prototype = { call$1(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), $async$self = this, newUserSettings, t1, t2, t3; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t2 = A._lateReadCheck(t1.__Store__state, "_state"); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; newUserSettings = t3._list[t2].userCompany.settings; t2 = $async$self.origUserSettings; $async$goto = t2.includeDeletedClients !== newUserSettings.includeDeletedClients || t2.numberYearsActive !== newUserSettings.numberYearsActive ? 2 : 3; break; case 2: // then t2 = $.$get$navigatorKey(); t2.toString; t3 = A.snackBarCompleter($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), $async$self.localization.get$refreshComplete(), true, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(t3, true, true, false)); $async$goto = 4; return A._asyncAwait(A.showDialog(null, false, new A.UserDetailsVM_fromStore____closure8(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_AlertDialog), $async$call$1); case 4: // returning from await. case 3: // join $async$self.appBuilder.rebuild$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 549 }; A.UserDetailsVM_fromStore____closure8.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_legacy_Widget), null); }, $signature: 172 }; A.UserDetailsVM_fromStore___closure9.prototype = { call$1(_) { A.passwordCallback(false, new A.UserDetailsVM_fromStore____closure7(this.store, this.completer), this.context, false); }, $signature: 11 }; A.UserDetailsVM_fromStore____closure7.prototype = { call$2(password, idToken) { var t1 = this.store, t2 = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState.user; t1.get$_dispatchers()[0].call$1(new A.SaveAuthUserRequest(this.completer, t2, password, idToken)); }, $signature: 38 }; A.WorkflowSettings.prototype = { createState$0() { return new A._WorkflowSettingsState(null, null, B._StateLifecycle_0); } }; A._WorkflowSettingsState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._workflow_settings$_focusNode = A.FocusScopeNode$(true, null, false); t1 = A.TabController$(null, _this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 2, _this); _this._workflow_settings$_controller = t1; t1.addListener$1(0, _this.get$_workflow_settings$_onTabChanged()); }, _workflow_settings$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._workflow_settings$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, dispose$0(_) { var _this = this; _this._workflow_settings$_focusNode.dispose$0(0); _this._workflow_settings$_controller.removeListener$1(0, _this.get$_workflow_settings$_onTabChanged()); _this._workflow_settings$_controller.dispose$0(0); _this.super$__WorkflowSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, _s14_ = "stop_on_unpaid", _s19_ = "stop_on_unpaid_help", _s36_ = "auto_archive_cancelled_invoices_help", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = t1.localeCode; t4 = J.$index$asx(t2.$index(0, t3), "workflow_settings"); if (t4 == null) t4 = ""; t5 = viewModel.onSavePressed; t6 = state.uiState.settingsUIState; t7 = t6.updatedAt; t8 = type$.JSArray_legacy_Widget; t7 = A.TabBar$(_this._workflow_settings$_controller, _null, false, new A.ValueKey(t7, type$.ValueKey_legacy_int), _null, A._setArrayType([A.Tab$(_null, t1.get$invoices()), A.Tab$(_null, t1.get$quotes(t1))], t8)); t9 = _this._workflow_settings$_controller; t10 = $.$get$_WorkflowSettingsState__formKey(); t11 = _this._workflow_settings$_focusNode; t12 = t1.get$autoEmailInvoice(); t13 = J.$index$asx(t2.$index(0, t3), "auto_email_invoice_help"); if (t13 == null) t13 = ""; t12 = A._setArrayType([A.BoolDropdownButton$(_null, _null, t13, B.IconData_57898_MaterialIcons_null_false, t12, _null, new A._WorkflowSettingsState_build_closure(viewModel, settings), settings.autoEmailInvoice)], t8); if (t6.entityType === B.EntityType_company) { t6 = J.$index$asx(t2.$index(0, t3), _s14_); if (t6 == null) t6 = J.$index$asx(t2.$index(0, "en"), _s14_); t13 = J.$index$asx(t2.$index(0, t3), _s19_); if (t13 == null) t13 = J.$index$asx(t2.$index(0, "en"), _s19_); t12.push(A.BoolDropdownButton$(_null, _null, t13, B.IconData_58887_MaterialIcons_null_false, t6, _null, new A._WorkflowSettingsState_build_closure0(viewModel, company), company.stopOnUnpaidRecurring)); } t6 = A.FormCard$(_null, t12, _null, _null, false, _null, false, _null); t12 = t1.get$autoArchivePaidInvoices(); t12 = A.BoolDropdownButton$(_null, _null, t1.get$autoArchivePaidInvoices(), B.IconData_57489_MaterialIcons_null_false, t12, _null, new A._WorkflowSettingsState_build_closure1(viewModel, settings), settings.autoArchiveInvoice); t13 = t1.get$autoArchiveCancelledInvoices(); t14 = J.$index$asx(t2.$index(0, t3), _s36_); if (t14 == null) t14 = J.$index$asx(t2.$index(0, "en"), _s36_); t13 = A.FormCard$(_null, A._setArrayType([t12, A.BoolDropdownButton$(_null, _null, t14, B.IconData_57489_MaterialIcons_null_false, t13, _null, new A._WorkflowSettingsState_build_closure2(viewModel, settings), settings.autoArchiveInvoiceCancelled)], t8), _null, _null, false, _null, false, _null); t14 = settings.lockInvoices; t12 = t1.get$lockInvoices(); t15 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t14 = A._setArrayType([t6, t13, A.FormCard$(_null, A._setArrayType([A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["off", "when_sent", "when_paid"], type$.JSArray_legacy_String), new A._WorkflowSettingsState_build_closure3(t1), t15), true, t15._eval$1("ListIterable.E")), _null, t12, new A._WorkflowSettingsState_build_closure4(viewModel, settings), _null, false, t14, type$.legacy_String)], t8), _null, _null, false, _null, true, _null)], t8); t12 = t1.get$autoConvertQuote(); t15 = J.$index$asx(t2.$index(0, t3), "auto_convert_quote_help"); t6 = t15 == null ? "" : t15; t13 = settings.autoConvertQuote; t13 = A.BoolDropdownButton$(_null, _null, t6, A.getEntityIcon(B.EntityType_quote), t12, _null, new A._WorkflowSettingsState_build_closure5(viewModel, settings), t13); t1 = t1.get$autoArchiveQuote(); t3 = J.$index$asx(t2.$index(0, t3), "auto_archive_quote_help"); t2 = t3 == null ? "" : t3; return A.EditScaffold$(_null, t7, new A.AppTabForm(t11, t10, A._setArrayType([new A.ScrollableListView(t14, _null, _null, _null), new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t13, A.BoolDropdownButton$(_null, _null, t2, B.IconData_57489_MaterialIcons_null_false, t1, _null, new A._WorkflowSettingsState_build_closure6(viewModel, settings), settings.autoArchiveQuote)], t8), _null, _null, false, _null, true, _null)], t8), _null, _null, _null)], t8), t9, _null, _null), _null, _null, _null, false, _null, _null, t5, _null, t4); } }; A._WorkflowSettingsState_build_closure.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure5(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure5.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoEmailInvoice = this.value; return b; }, $signature: 13 }; A._WorkflowSettingsState_build_closure0.prototype = { call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._WorkflowSettingsState_build__closure4(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure4.prototype = { call$1(b) { b.get$_company_model$_$this()._stopOnUnpaidRecurring = this.value; return b; }, $signature: 23 }; A._WorkflowSettingsState_build_closure1.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure3(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure3.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoArchiveInvoice = this.value; return b; }, $signature: 13 }; A._WorkflowSettingsState_build_closure2.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure2(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure2.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoArchiveInvoiceCancelled = this.value; return b; }, $signature: 13 }; A._WorkflowSettingsState_build_closure4.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure1(value))); }, $signature: 12 }; A._WorkflowSettingsState_build__closure1.prototype = { call$1(b) { b.get$_settings_model$_$this()._lockInvoices = this.value; return b; }, $signature: 13 }; A._WorkflowSettingsState_build_closure3.prototype = { call$1(option) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(option), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.legacy_String); }, $signature: 43 }; A._WorkflowSettingsState_build_closure5.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure0(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure0.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoConvertQuote = this.value; return b; }, $signature: 13 }; A._WorkflowSettingsState_build_closure6.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure(value))); }, $signature: 10 }; A._WorkflowSettingsState_build__closure.prototype = { call$1(b) { b.get$_settings_model$_$this()._autoArchiveQuote = this.value; return b; }, $signature: 13 }; A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.WorkflowSettingsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.WorkflowSettingsScreen_build_closure(), A.workflow_vm_WorkflowSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WorkflowSettingsVM); } }; A.WorkflowSettingsScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.WorkflowSettings(viewModel, new A.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2710 }; A.WorkflowSettingsVM.prototype = { get$company() { return this.company; } }; A.WorkflowSettingsVM_fromStore_closure0.prototype = { call$1(settings) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSettings(settings)); }, $signature: 161 }; A.WorkflowSettingsVM_fromStore_closure1.prototype = { call$1(company) { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCompany(company)); }, $signature: 128 }; A.WorkflowSettingsVM_fromStore_closure.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.WorkflowSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.WorkflowSettingsVM_fromStore__closure.prototype = { call$0() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = A._lateReadCheck(t1.__Store__state, "_state").uiState.settingsUIState; switch (settingsUIState.entityType) { case B.EntityType_company: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; t1.get$_dispatchers()[0].call$1(new A.SaveCompanyRequest(completer, t2)); break; case B.EntityType_group: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; t1.get$_dispatchers()[0].call$1(new A.SaveGroupRequest(completer, t2)); break; case B.EntityType_client: t2 = _this.context; completer = A.snackBarCompleter(t2, A.Localizations_of(t2, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; t1.get$_dispatchers()[0].call$1(new A.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.SubscriptionEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._SubscriptionEditState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._SubscriptionEditState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._subscription_edit$_focusNode = A.FocusScopeNode$(true, null, false); t1 = A.TabController$(null, _this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 3, _this); _this._subscription_edit$_controller = t1; t1.addListener$1(0, _this.get$_subscription_edit$_onTabChanged()); }, _subscription_edit$_onTabChanged$0() { var store, t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._subscription_edit$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateSettingsTab(t1)); }, didChangeDependencies$0() { var subscription, webhookConfiguration, _this = this, _null = null, t1 = _this._subscription_edit$_nameController, t2 = _this._promoCodeController, t3 = _this._promoDiscountController, t4 = _this._maxSeatsLimitController, t5 = _this._returnUrlController, t6 = _this._postPurchaseUrlController, t7 = A._setArrayType([t1, t2, t3, t4, t5, t6, _this._postPurchaseHeaderKeyController, _this._postPurchaseHeaderValueController], type$.JSArray_legacy_TextEditingController); _this._subscription_edit$_controllers = t7; B.JSArray_methods.forEach$1(t7, new A._SubscriptionEditState_didChangeDependencies_closure(_this)); subscription = _this._widget.viewModel.subscription; webhookConfiguration = subscription.webhookConfiguration; t1.set$text(0, subscription.name); t2.set$text(0, subscription.promoCode); t2 = _this._framework$_element; t2.toString; t3.set$text(0, A.formatNumber(subscription.promoDiscount, t2, _null, _null, B.FormatNumberType_4, true, _null, false)); t2 = _this._framework$_element; t2.toString; t4.set$text(0, A.formatNumber(subscription.maxSeatsLimit, t2, _null, _null, B.FormatNumberType_5, true, _null, false)); t5.set$text(0, webhookConfiguration.returnUrl); t6.set$text(0, webhookConfiguration.postPurchaseUrl); B.JSArray_methods.forEach$1(_this._subscription_edit$_controllers, new A._SubscriptionEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._subscription_edit$_focusNode.dispose$0(0); _this._subscription_edit$_controller.removeListener$1(0, _this.get$_subscription_edit$_onTabChanged()); _this._subscription_edit$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._subscription_edit$_controllers, new A._SubscriptionEditState_dispose_closure(_this)); _this.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _subscription_edit$_onChanged$0() { var _this = this, subscription = _this._widget.viewModel.subscription.rebuild$1(new A._SubscriptionEditState__onChanged_closure(_this)); if (!J.$eq$(subscription, _this._widget.viewModel.subscription)) _this._subscription_edit$_debouncer.run$1(new A._SubscriptionEditState__onChanged_closure0(_this, subscription)); }, build$1(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _null = null, _s6_ = ":count", viewModel = _this._widget.viewModel, state = viewModel.state, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), subscription = viewModel.subscription, webhookConfiguration = subscription.webhookConfiguration, t2 = type$.legacy_int, durations = A._setArrayType([A.DropdownMenuItem$(A.Text$(t1.get$countDay(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 86400, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "2"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 172800, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "3"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 259200, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "7"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 604800, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "14"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 1209600, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 2592000, t2), A.DropdownMenuItem$(A.Text$(B.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "60"), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 5184000, t2)], type$.JSArray_legacy_DropdownMenuItem_legacy_int), t3 = _this._postPurchaseHeaderKeyController, key = J.trim$0$s(t3._change_notifier$_value.text), t4 = _this._postPurchaseHeaderValueController, value = J.trim$0$s(t4._change_notifier$_value.text); if (subscription.get$isNew()) t5 = t1.get$newSubscription(); else { t5 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_subscription"); if (t5 == null) t5 = ""; } t6 = state.uiState; t7 = t6.settingsUIState.updatedAt; t8 = type$.JSArray_legacy_Widget; t7 = A.TabBar$(_this._subscription_edit$_controller, _null, A.getLayout(context) === B.AppLayout_mobile, new A.ValueKey(t7, type$.ValueKey_legacy_int), _null, A._setArrayType([A.Tab$(_null, t1.get$overview()), A.Tab$(_null, t1.get$settings()), A.Tab$(_null, t1.get$webhook())], t8)); t9 = $.$get$_SubscriptionEditState__formKey(); t10 = _this._subscription_edit$_focusNode; t11 = _this._subscription_edit$_controller; t12 = t1.get$name(t1); t13 = viewModel.onSavePressed; t12 = A.DecoratedFormField$(false, _null, false, false, _this._subscription_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t12, _null, _null, false, _null, _null, t13, true, _null, _null, B.TextAlign_4, _null); t14 = $.$get$memoizedGroupList(); t6 = t6.selectedCompanyIndex; t15 = state.userCompanyStates._list; t14 = A.FormCard$(_null, A._setArrayType([t12, A.DynamicSelector$(true, subscription.groupId, t14.call$1(t15[t6].groupState.map), B.EntityType_group, _null, _null, new A._SubscriptionEditState_build_closure(viewModel, subscription), _null), new A.UserPicker(subscription.assignedUserId, new A._SubscriptionEditState_build_closure0(viewModel, subscription), _null)], t8), _null, _null, false, _null, false, _null); t12 = t15[t6]; t16 = t12.productState; t12 = A._setArrayType([A.EntityDropdown$(true, false, false, _null, A.dropdownProductsSelector(t16.map, t16.list, t12.userState.map), t15[t6].productState.map, B.EntityType_product, B.List_empty0, t1.get$products(), _null, _null, new A._SubscriptionEditState_build_closure1(subscription, viewModel, context), _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t8); t16 = type$.JSArray_String; t17 = type$.WhereIterable_String; t18 = type$.MappedIterable_of_String_and_legacy_ListTile; t19 = t18._eval$1("Iterable.E"); B.JSArray_methods.addAll$1(t12, A.List_List$of(new A.MappedIterable(new A.WhereIterable(A._setArrayType(subscription.productIds.split(","), t16), new A._SubscriptionEditState_build_closure2(), t17), new A._SubscriptionEditState_build_closure3(state, subscription, viewModel), t18), true, t19)); t12.push(new A.SizedBox(_null, 16, _null, _null)); t20 = t15[t6]; t21 = t20.productState; t20 = A.dropdownProductsSelector(t21.map, t21.list, t20.userState.map); t6 = t15[t6].productState.map; t15 = $.$get$LocalizationsProvider__localizedValues(); t21 = t1.localeCode; t22 = J.$index$asx(t15.$index(0, t21), "recurring_products"); if (t22 == null) t22 = ""; t12.push(A.EntityDropdown$(true, false, false, _null, t20, t6, B.EntityType_product, B.List_empty0, t22, _null, _null, new A._SubscriptionEditState_build_closure4(subscription, viewModel, context), _null, _null, _null)); t12.push(new A.SizedBox(_null, 8, _null, _null)); B.JSArray_methods.addAll$1(t12, A.List_List$of(new A.MappedIterable(new A.WhereIterable(A._setArrayType(subscription.recurringProductIds.split(","), t16), new A._SubscriptionEditState_build_closure5(), t17), new A._SubscriptionEditState_build_closure6(state, subscription, viewModel), t18), true, t19)); t12 = A._setArrayType([t14, A.FormCard$(_null, t12, _null, _null, false, _null, true, _null)], t8); t14 = t1.get$frequency(t1); t19 = B.Map_tOn4d.get$entries(B.Map_tOn4d); t18 = type$.legacy_String; t14 = A.AppDropdownButton$(_null, "", true, t19.map$1$1(t19, new A._SubscriptionEditState_build_closure7(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, t14, new A._SubscriptionEditState_build_closure8(viewModel, subscription), _null, true, subscription.frequencyId, t18); t19 = t1.get$autoBill(); t17 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t19 = A.FormCard$(_null, A._setArrayType([t14, A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new A._SubscriptionEditState_build_closure9(t1), t17), true, t17._eval$1("ListIterable.E")), _null, t19, new A._SubscriptionEditState_build_closure10(viewModel, subscription), _null, true, subscription.autoBill, t18)], t8), _null, _null, false, _null, false, _null); t17 = J.$index$asx(t15.$index(0, t21), "promo_code"); t6 = t17 == null ? "" : t17; t6 = A.DecoratedFormField$(false, _null, false, false, _this._promoCodeController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t6, _null, _null, false, _null, _null, t13, true, _null, _null, B.TextAlign_4, _null); t14 = J.$index$asx(t15.$index(0, t21), "promo_discount"); if (t14 == null) t14 = ""; t14 = A.FormCard$(_null, A._setArrayType([t6, new A.DiscountField(_this._promoDiscountController, subscription.promoDiscount, subscription.isAmountDiscount, new A._SubscriptionEditState_build_closure11(viewModel, subscription), t14, _null)], t8), _null, _null, false, _null, false, _null); t6 = J.$index$asx(t15.$index(0, t21), "return_url"); if (t6 == null) t6 = ""; t6 = A.DecoratedFormField$(false, _null, false, false, _this._returnUrlController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t6, _null, _null, false, _null, _null, t13, true, _null, _null, B.TextAlign_4, _null); t16 = J.$index$asx(t15.$index(0, t21), "allow_query_overrides"); if (t16 == null) t16 = ""; t16 = A.BoolDropdownButton$(_null, _null, _null, _null, t16, _null, new A._SubscriptionEditState_build_closure12(viewModel, subscription), subscription.allowQueryOverrides); t17 = J.$index$asx(t15.$index(0, t21), "allow_plan_changes"); if (t17 == null) t17 = ""; t17 = A.BoolDropdownButton$(_null, _null, _null, _null, t17, _null, new A._SubscriptionEditState_build_closure13(viewModel, subscription), subscription.allowPlanChanges); t20 = J.$index$asx(t15.$index(0, t21), "allow_cancellation"); if (t20 == null) t20 = ""; t22 = subscription.allowCancellation; t20 = A._setArrayType([t6, t16, t17, A.BoolDropdownButton$(_null, _null, _null, _null, t20, _null, new A._SubscriptionEditState_build_closure14(viewModel, subscription), t22)], t8); if (t22) { t6 = J.$index$asx(t15.$index(0, t21), "refund_period"); if (t6 == null) t6 = ""; t20.push(A.AppDropdownButton$(_null, 0, true, durations, _null, t6, new A._SubscriptionEditState_build_closure15(viewModel, subscription), _null, true, subscription.refundPeriod, t2)); } t6 = J.$index$asx(t15.$index(0, t21), "trial_enabled"); if (t6 == null) t6 = ""; t16 = subscription.trialEnabled; t20.push(A.BoolDropdownButton$(_null, _null, _null, _null, t6, _null, new A._SubscriptionEditState_build_closure16(viewModel, subscription), t16)); if (t16) { t6 = J.$index$asx(t15.$index(0, t21), "trial_duration"); if (t6 == null) t6 = ""; t20.push(A.AppDropdownButton$(_null, 0, true, durations, _null, t6, new A._SubscriptionEditState_build_closure17(viewModel, subscription), _null, true, subscription.trialDuration, t2)); } t2 = J.$index$asx(t15.$index(0, t21), "per_seat_enabled"); if (t2 == null) t2 = ""; t6 = subscription.perSeatEnabled; t20.push(A.BoolDropdownButton$(_null, _null, _null, _null, t2, _null, new A._SubscriptionEditState_build_closure18(viewModel, subscription), t6)); if (t6) { t2 = J.$index$asx(t15.$index(0, t21), "max_seats_limit"); if (t2 == null) t2 = ""; t20.push(A.DecoratedFormField$(false, _null, false, false, _this._maxSeatsLimitController, _null, true, _null, _null, _null, A._setArrayType([new A.FilteringTextInputFormatter(A.RegExp_RegExp("[0-9]", true, false, false, false), true, "")], type$.JSArray_legacy_TextInputFormatter), false, false, _null, B.TextInputType_2_false_false, t2, _null, _null, false, _null, _null, t13, true, _null, _null, B.TextAlign_4, _null)); } t2 = A._setArrayType([t19, t14, A.FormCard$(_null, t20, _null, _null, false, _null, true, _null)], t8); t6 = A.DecoratedFormField$(false, _null, false, false, _this._postPurchaseUrlController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t1.get$webhookUrl(), _null, _null, false, _null, _null, t13, true, _null, _null, B.TextAlign_4, _null); t14 = t1.get$restMethod(); t15 = webhookConfiguration.postPurchaseRestMethod; t18 = A.AppDropdownButton$(_null, "", true, A._setArrayType([A.DropdownMenuItem$(A.Text$("POST", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "post", t18), A.DropdownMenuItem$(A.Text$("PUT", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "put", t18)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t14, new A._SubscriptionEditState_build_closure19(viewModel, subscription), _null, true, t15, t18); t3 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, t3, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$headerKey(), _null, _null, false, new A._SubscriptionEditState_build_closure20(_this), _null, t13, true, _null, _null, B.TextAlign_4, _null), 1); t13 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, t4, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$headerValue(), _null, _null, false, new A._SubscriptionEditState_build_closure21(_this), _null, t13, true, _null, _null, B.TextAlign_4, _null), 1); t4 = t1.get$addHeader(); t15 = A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null); t3 = A._setArrayType([t6, t18, A.Row$(A._setArrayType([t3, new A.SizedBox(16, _null, _null, _null), t13, new A.SizedBox(16, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t15, _null, key.length === 0 || value.length === 0 ? _null : new A._SubscriptionEditState_build_closure22(_this, webhookConfiguration, key, viewModel, subscription, value), B.EdgeInsets_8_8_8_8, _null, t4, _null)], t8), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null)], t8); t4 = webhookConfiguration.postPurchaseHeaders; if (t4._map$_map._length === 0) t3.push(new A.Padding(B.EdgeInsets_0_16_0_8, A.Center$(new A.HelpText(t1.get$noHeaders(), _null), _null, _null), _null)); else { t4 = t4.get$keys(t4); t4.toString; B.JSArray_methods.addAll$1(t3, A.MappedIterable_MappedIterable(t4, new A._SubscriptionEditState_build_closure23(webhookConfiguration, t1, viewModel, subscription), t4.$ti._eval$1("Iterable.E"), type$.legacy_Widget)); } return A.EditScaffold$(_null, t7, new A.AppTabForm(t10, t9, A._setArrayType([new A.ScrollableListView(t12, _null, _null, _null), new A.ScrollableListView(t2, _null, _null, _null), new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t3, _null, _null, false, _null, true, _null)], t8), _null, _null, _null)], t8), t11, _null, _null), _null, subscription, _null, false, _null, new A._SubscriptionEditState_build_closure24(viewModel), new A._SubscriptionEditState_build_closure25(viewModel), _null, t5); } }; A._SubscriptionEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_subscription_edit$_onChanged()); }, $signature: 33 }; A._SubscriptionEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_subscription_edit$_onChanged()); }, $signature: 33 }; A._SubscriptionEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_subscription_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._SubscriptionEditState__onChanged_closure.prototype = { call$1(b) { var t3, t1 = this.$this, t2 = J.trim$0$s(t1._subscription_edit$_nameController._change_notifier$_value.text); b.get$_subscription_model$_$this()._subscription_model$_name = t2; t2 = J.trim$0$s(t1._promoCodeController._change_notifier$_value.text); b.get$_subscription_model$_$this()._promoCode = t2; t2 = A.parseDouble(t1._promoDiscountController._change_notifier$_value.text, false); b.get$_subscription_model$_$this()._promoDiscount = t2; t2 = A.parseInt(t1._maxSeatsLimitController._change_notifier$_value.text, false); b.get$_subscription_model$_$this()._maxSeatsLimit = t2; t2 = b.get$webhookConfiguration(); t3 = J.trim$0$s(t1._returnUrlController._change_notifier$_value.text); t2.get$_subscription_model$_$this()._returnUrl = t3; t3 = b.get$webhookConfiguration(); t1 = J.trim$0$s(t1._postPurchaseUrlController._change_notifier$_value.text); t3.get$_subscription_model$_$this()._postPurchaseUrl = t1; return b; }, $signature: 75 }; A._SubscriptionEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.subscription); }, $signature: 1 }; A._SubscriptionEditState_build_closure24.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._SubscriptionEditState_build_closure25.prototype = { call$1(context) { if (!$.$get$_SubscriptionEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._SubscriptionEditState_build_closure.prototype = { call$1(groupId) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure21(groupId))); }, $signature: 5 }; A._SubscriptionEditState_build__closure21.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_groupId = this.groupId; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure0.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure20(userId))); }, $signature: 5 }; A._SubscriptionEditState_build__closure20.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_assignedUserId = this.userId; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure1.prototype = { call$1(value) { var t1 = this.subscription; this.viewModel.onChanged.call$1(t1.rebuild$1(new A._SubscriptionEditState_build__closure18(A._setArrayType(t1.productIds.split(","), type$.JSArray_String), value))); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure19(this.context)); }, $signature: 34 }; A._SubscriptionEditState_build__closure18.prototype = { call$1(b) { var t1 = A.List_List$of(this.parts, true, type$.legacy_String), t2 = this.value; t1.push(t2.get$id(t2)); t1 = new A.WhereIterable(t1, new A._SubscriptionEditState_build___closure3(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).join$1(0, ","); b.get$_subscription_model$_$this()._productIds = t1; return b; }, $signature: 75 }; A._SubscriptionEditState_build___closure3.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A._SubscriptionEditState_build__closure19.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, $signature: 36 }; A._SubscriptionEditState_build_closure2.prototype = { call$1(element) { return element.length !== 0; }, $signature: 16 }; A._SubscriptionEditState_build_closure3.prototype = { call$1(productId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, false, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list[t2].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._SubscriptionEditState_build__closure17(this.subscription, productId, this.viewModel), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null); }, $signature: 235 }; A._SubscriptionEditState_build__closure17.prototype = { call$0() { var t1 = this.subscription, parts = A._setArrayType(t1.productIds.split(","), type$.JSArray_String); B.JSArray_methods.remove$1(parts, this.productId); this.viewModel.onChanged.call$1(t1.rebuild$1(new A._SubscriptionEditState_build___closure2(parts))); }, $signature: 1 }; A._SubscriptionEditState_build___closure2.prototype = { call$1(b) { var t1 = B.JSArray_methods.join$1(this.parts, ","); b.get$_subscription_model$_$this()._productIds = t1; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure4.prototype = { call$1(value) { var t1 = this.subscription; this.viewModel.onChanged.call$1(t1.rebuild$1(new A._SubscriptionEditState_build__closure15(A._setArrayType(t1.recurringProductIds.split(","), type$.JSArray_String), value))); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure16(this.context)); }, $signature: 34 }; A._SubscriptionEditState_build__closure15.prototype = { call$1(b) { var t1 = A.List_List$of(this.parts, true, type$.legacy_String), t2 = this.value; t1.push(t2.get$id(t2)); t1 = new A.WhereIterable(t1, new A._SubscriptionEditState_build___closure1(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).join$1(0, ","); b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, $signature: 75 }; A._SubscriptionEditState_build___closure1.prototype = { call$1(part) { return part.length !== 0; }, $signature: 16 }; A._SubscriptionEditState_build__closure16.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, $signature: 36 }; A._SubscriptionEditState_build_closure5.prototype = { call$1(element) { return element.length !== 0; }, $signature: 16 }; A._SubscriptionEditState_build_closure6.prototype = { call$1(productId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, false, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list[t2].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._SubscriptionEditState_build__closure14(this.subscription, productId, this.viewModel), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null); }, $signature: 235 }; A._SubscriptionEditState_build__closure14.prototype = { call$0() { var t1 = this.subscription, parts = A._setArrayType(t1.recurringProductIds.split(","), type$.JSArray_String); B.JSArray_methods.remove$1(parts, this.productId); this.viewModel.onChanged.call$1(t1.rebuild$1(new A._SubscriptionEditState_build___closure0(parts))); }, $signature: 1 }; A._SubscriptionEditState_build___closure0.prototype = { call$1(b) { var t1 = B.JSArray_methods.join$1(this.parts, ","); b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure8.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure13(value))); }, $signature: 7 }; A._SubscriptionEditState_build__closure13.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_frequencyId = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure7.prototype = { call$1(entry) { var _null = null, t1 = entry.get$key(entry); return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.legacy_String); }, $signature: 298 }; A._SubscriptionEditState_build_closure10.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure12(value))); }, $signature: 12 }; A._SubscriptionEditState_build__closure12.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_autoBill = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure9.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.legacy_String); }, $signature: 43 }; A._SubscriptionEditState_build_closure11.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure11(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure11.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure12.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure10(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure10.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowQueryOverrides = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure13.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure9(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure9.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowPlanChanges = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure14.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure8(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure8.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowCancellation = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure15.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure7(value))); }, $signature: 12 }; A._SubscriptionEditState_build__closure7.prototype = { call$1(b) { b.get$_subscription_model$_$this()._refundPeriod = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure16.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure6(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure6.prototype = { call$1(b) { return b.get$_subscription_model$_$this()._trialEnabled = this.value; }, $signature: 811 }; A._SubscriptionEditState_build_closure17.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure5(value))); }, $signature: 12 }; A._SubscriptionEditState_build__closure5.prototype = { call$1(b) { b.get$_subscription_model$_$this()._trialDuration = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure18.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure4(value))); }, $signature: 10 }; A._SubscriptionEditState_build__closure4.prototype = { call$1(b) { return b.get$_subscription_model$_$this()._perSeatEnabled = this.value; }, $signature: 811 }; A._SubscriptionEditState_build_closure19.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure3(value))); }, $signature: 12 }; A._SubscriptionEditState_build__closure3.prototype = { call$1(b) { b.get$webhookConfiguration().get$_subscription_model$_$this()._postPurchaseRestMethod = this.value; return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure20.prototype = { call$1(value) { return this.$this.setState$1(new A._SubscriptionEditState_build__closure2()); }, $signature: 67 }; A._SubscriptionEditState_build__closure2.prototype = { call$0() { }, $signature: 1 }; A._SubscriptionEditState_build_closure21.prototype = { call$1(value) { return this.$this.setState$1(new A._SubscriptionEditState_build__closure1()); }, $signature: 67 }; A._SubscriptionEditState_build__closure1.prototype = { call$0() { }, $signature: 1 }; A._SubscriptionEditState_build_closure22.prototype = { call$0() { var _this = this, t1 = _this.$this; t1._postPurchaseHeaderKeyController.set$text(0, ""); t1._postPurchaseHeaderValueController.set$text(0, ""); t1 = _this.key; if (_this.webhookConfiguration.postPurchaseHeaders._map$_map.containsKey$1(0, t1)) return; _this.viewModel.onChanged.call$1(_this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure0(t1, _this.value))); }, $signature: 1 }; A._SubscriptionEditState_build__closure0.prototype = { call$1(b) { b.get$webhookConfiguration().get$postPurchaseHeaders().$indexSet(0, this.key, this.value); return b; }, $signature: 75 }; A._SubscriptionEditState_build_closure23.prototype = { call$1(key) { var _this = this, _null = null; return A.ListTile$(false, B.EdgeInsets_0_0_0_0, _null, _null, true, _null, _null, false, _null, _null, _null, _null, false, _null, _null, _null, _null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(key, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.Text$(_this.webhookConfiguration.postPurchaseHeaders._map$_map.$index(0, key), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._SubscriptionEditState_build__closure(_this.viewModel, _this.subscription, key), B.EdgeInsets_8_8_8_8, _null, _this.localization.get$removeHeader(), _null), _null); }, $signature: 235 }; A._SubscriptionEditState_build__closure.prototype = { call$0() { this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build___closure(this.key))); }, $signature: 1 }; A._SubscriptionEditState_build___closure.prototype = { call$1(b) { b.get$webhookConfiguration().get$postPurchaseHeaders().get$_safeMap().remove$1(0, this.key); return b; }, $signature: 75 }; A.__SubscriptionEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.SubscriptionEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SubscriptionEditScreen_build_closure(), new A.SubscriptionEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionEditVM); } }; A.SubscriptionEditScreen_build_closure0.prototype = { call$1(store) { return A.SubscriptionEditVM_SubscriptionEditVM$fromStore(store); }, $signature: 2713 }; A.SubscriptionEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.SubscriptionEdit(viewModel, new A.ValueKey(viewModel.subscription.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2714 }; A.SubscriptionEditVM.prototype = { get$subscription() { return this.subscription; }, get$company() { return this.company; } }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure.prototype = { call$1(subscription) { this.store.get$_dispatchers()[0].call$1(new A.UpdateSubscription(subscription)); }, $signature: 364 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.SubscriptionEntity_SubscriptionEntity(_null, _null), true); t1 = this.state.uiState; t1.subscriptionUIState.toString; t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, subscription = A._lateReadCheck(t1.__Store__state, "_state").uiState.subscriptionUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (subscription.name.length === 0) { A.showDialog(null, true, new A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } t2 = new A._Future($.Zone__current, type$._Future_legacy_SubscriptionEntity); t1.get$_dispatchers()[0].call$1(new A.SaveSubscriptionRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_SubscriptionEntity), subscription)); return t2.then$1$1(0, new A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0(subscription, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1()); }, $signature: 37 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseEnterAName(), false, null); }, $signature: 24 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0.prototype = { call$1(savedSubscription) { var _this = this, _s28_ = "/settings/subscriptions/view", t1 = _this.subscription, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_subscription"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_subscription"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s28_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s28_, t1, t1); } else t2.pop$1(0, savedSubscription); } else A.viewEntity(false, savedSubscription, null, true); }, $signature: 364 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.SubscriptionListItem.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, subscriptionUIState = uiState.subscriptionUIState, t1 = subscriptionUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(A._setArrayType([_this.subscription.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.subscription; t4 = t2.id; t5 = uiState.get$isEditing() ? subscriptionUIState.editing.id : subscriptionUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.SubscriptionListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(t2.price, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.SubscriptionListItem_build_closure0(_this), new A.SubscriptionListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t8, new A.EntityStateLabel(t2, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t6, _null, _null), t4 === t5, true, true, _null); }, get$user(receiver) { return this.user; }, get$subscription() { return this.subscription; } }; A.SubscriptionListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.subscription, false, false); return t1; }, $signature: 0 }; A.SubscriptionListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.subscription, false, true); return t1; }, $signature: 0 }; A.SubscriptionListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.SubscriptionListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SubscriptionListBuilder_build_closure(), A.subscription_list_vm_SubscriptionListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionListVM); } }; A.SubscriptionListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.subscriptionList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_subscription, new A.SubscriptionListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.SubscriptionPresenter(), t1, t3); }, $signature: 2715 }; A.SubscriptionListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, subscriptionId = J.$index$asx(t1.subscriptionList, index), subscription = t1.subscriptionMap._map$_map.$index(0, subscriptionId), t2 = state.getUIState$1(B.EntityType_subscription).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = subscription.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.SubscriptionListItem(t4, subscription, t1.filter, t2, null); }, $signature: 2716 }; A.SubscriptionListVM.prototype = {}; A.SubscriptionListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.SubscriptionListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.SubscriptionListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortSubscriptions(field)); }, $signature: 5 }; A.SubscriptionListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearSubscriptionMultiselect()); }, $signature: 9 }; A.SubscriptionPresenter.prototype = { getField$2$context$field(context, field) { return this.super$EntityPresenter$getField(context, field); } }; A.SubscriptionScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.subscriptionUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.subscriptionList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType([], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, A._setArrayType([], t5), B.EntityType_subscription, false, B.List_empty17, new A.SubscriptionScreen_build_closure(store), new A.SubscriptionScreen_build_closure0(store), new A.SubscriptionScreen_build_closure1(store), new A.SubscriptionScreen_build_closure2(store), new A.SubscriptionScreen_build_closure3(store), new A.SubscriptionScreen_build_closure4(store), new A.SubscriptionScreen_build_closure5(store), _null, A._setArrayType(["created_at", "updated_at"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_subscription) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "subscription_fab", false, new A.SubscriptionScreen_build_closure6(context), t3.get$newSubscription()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_subscription, t2, new A.SubscriptionScreen_build_closure7(store), t4, _null, _null, new A.SubscriptionScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.SubscriptionListBuilder(_null), t6, B.EntityType_subscription, t3, 0, _null, new A.SubscriptionScreen_build_closure9(store), new A.SubscriptionScreen_build_closure10(store)); } }; A.SubscriptionScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartSubscriptionMultiselect()); }, $signature: 9 }; A.SubscriptionScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptions(value)); }, $signature: 11 }; A.SubscriptionScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByState(state)); }, $signature: 27 }; A.SubscriptionScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.subscriptionUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearSubscriptionMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartSubscriptionMultiselect()); }, $signature: 1 }; A.SubscriptionScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortSubscriptions(value)); }, $signature: 11 }; A.SubscriptionScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByState(state)); }, $signature: 27 }; A.SubscriptionScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.subscriptionUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearSubscriptionMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartSubscriptionMultiselect()); }, $signature: 1 }; A.SubscriptionScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByCustom1(value)); }, $signature: 5 }; A.SubscriptionScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByCustom2(value)); }, $signature: 5 }; A.SubscriptionScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByCustom3(value)); }, $signature: 5 }; A.SubscriptionScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterSubscriptionsByCustom4(value)); }, $signature: 5 }; A.SubscriptionScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_subscription); }, $signature: 1 }; A.SubscriptionScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SubscriptionScreenBuilder_build_closure(), A.subscription_screen_vm_SubscriptionScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionScreenVM); } }; A.SubscriptionScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.SubscriptionScreen(vm, null); }, $signature: 2717 }; A.SubscriptionScreenVM.prototype = {}; A.SubscriptionView.prototype = { createState$0() { return new A._SubscriptionViewState(B._StateLifecycle_0); } }; A._SubscriptionViewState.prototype = { build$1(_, context) { var _this = this, _null = null, viewModel = _this._widget.viewModel, subscription = viewModel.subscription, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, company = t3[t2].userCompany.company, t4 = _this._widget.isFilter, t5 = A.EntityHeader$(subscription, t1.get$price(), _null, _null, _null, _null, A.formatNumber(subscription.price, context, _null, _null, B.FormatNumberType_0, true, _null, false)), t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "purchase_page"); t6 = A.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = A._setArrayType([t5, new A.ListDivider(_null), A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, new A._SubscriptionViewState_build_closure(subscription), new A._SubscriptionViewState_build_closure0(subscription, t1), false, _null, _null, A.Text$(subscription.purchasePage, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t6, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null), new A.ListDivider(_null)], type$.JSArray_legacy_Widget); if (company.isModuleEnabled$1(B.EntityType_invoice)) { t5 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(subscription, B.EntityType_invoice, t1.get$invoices(), $.$get$memoizedInvoiceStatsForSubscription().call$2(subscription.id, t3[t2].invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, true, _null)); } if (company.isModuleEnabled$1(B.EntityType_recurringInvoice)) { t5 = _this._widget.isFilter; t6.push(new A.EntitiesListTile(subscription, B.EntityType_recurringInvoice, t1.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForSubscription().call$2(subscription.id, t3[t2].recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, true, _null)); } return new A.ViewScaffold(t4, subscription, new A.ScrollableListView(t6, _null, _null, _null), new A._SubscriptionViewState_build_closure1(viewModel), _null, _null); } }; A._SubscriptionViewState_build_closure1.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A._SubscriptionViewState_build_closure0.prototype = { call$0() { var t1 = this.subscription.purchasePage; A.Clipboard_setData(new A.ClipboardData(t1)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", t1)); }, $signature: 1 }; A._SubscriptionViewState_build_closure.prototype = { call$0() { return A.launch(this.subscription.purchasePage, null, false); }, $signature: 26 }; A.SubscriptionViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.SubscriptionViewScreen_build_closure(this), new A.SubscriptionViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionViewVM); } }; A.SubscriptionViewScreen_build_closure0.prototype = { call$1(store) { return A.SubscriptionViewVM_SubscriptionViewVM$fromStore(store); }, $signature: 2718 }; A.SubscriptionViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.SubscriptionView(vm, this.$this.isFilter, null); }, $signature: 2719 }; A.SubscriptionViewVM.prototype = { get$subscription() { return this.subscription; }, get$company() { return this.company; } }; A.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/subscriptions")); }, $signature: 1 }; A.UpdateDialog.prototype = { createState$0() { return new A._UpdateDialogState(B.UpdateState_0, B._StateLifecycle_0); } }; A.UpdateState.prototype = { toString$0(_) { return "UpdateState." + this._core$_name; } }; A._UpdateDialogState.prototype = { build$1(_, context) { var message, t4, t5, t0, t6, t7, t8, _this = this, _null = null, _s14_ = "php81_required", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, account = t2._list[t3].userCompany.account; if (_this.updateState === B.UpdateState_2) { message = _this.updateResponse; if (message.length === 0) { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "app_updated"); message = t2 == null ? "" : t2; } else if (B.JSString_methods.contains$1(message, "failed")) { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "update_fail_help"); message += "\n\n" + (t2 == null ? "" : t2) + "\n\ngit checkout ."; } } else message = ""; t2 = A.Text$(account.get$isUpdateAvailable() ? t1.get$updateAvailable() : t1.get$forceUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.updateState; if (t3 === B.UpdateState_2) t3 = A.SelectableText$(message, _null); else if (t3 === B.UpdateState_1) t3 = new A.Padding(B.EdgeInsets_0_10_0_0, new A.LoadingIndicator(50, false, _null), _null); else { if (account.get$isUpdateAvailable()) { t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t1.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "a_new_version_is_available"); if (t5 == null) t5 = ""; t0 = t5; t5 = t4; t4 = t3; t3 = t0; } else { t3 = $.$get$LocalizationsProvider__localizedValues(); t4 = t1.localeCode; t5 = J.$index$asx(t3.$index(0, t4), "force_update_help"); if (t5 == null) t5 = ""; t0 = t5; t5 = t4; t4 = t3; t3 = t0; } t6 = type$.JSArray_legacy_Widget; t3 = A._setArrayType([new A.SizedBox(400, _null, A.Text$(t3, _null, 2, _null, _null, _null, _null, _null, _null, _null), _null)], t6); if (account.get$isUpdateAvailable()) { t1.toString; t7 = J.$index$asx(t4.$index(0, t5), "current_version"); if (t7 == null) t7 = ""; t7 = A.Text$("\u2022 " + t7 + ": v" + account.currentVersion, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = J.$index$asx(t4.$index(0, t5), "latest_version"); if (t8 == null) t8 = ""; B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(_null, 20, _null, _null), t7, new A.SizedBox(_null, 6, _null, _null), A.Text$("\u2022 " + t8 + ": v" + account.latestVersion, _null, _null, _null, _null, _null, _null, _null, _null, _null)], t6)); } t3.push(new A.SizedBox(_null, 20, _null, _null)); t1.toString; t7 = J.$index$asx(t4.$index(0, t5), _s14_); t3.push(A.Text$(t7 == null ? J.$index$asx(t4.$index(0, "en"), _s14_) : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null)); if (account.isDocker) { t4 = J.$index$asx(t4.$index(0, t5), "to_update_run"); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(_null, 20, _null, _null), A.Text$((t4 == null ? "" : t4) + ":", _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.SizedBox(_null, 20, _null, _null), A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A._UpdateDialogState_build_closure(t1), false, _null, _null, A.Text$(string$.docker, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null)], t6)); } t3 = A.Column$(t3, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } t4 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([], t4); t6 = _this.updateState; if (t6 === B.UpdateState_0) { t4 = A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._UpdateDialogState_build_closure0(context), _null)], t4); if (account.get$isUpdateAvailable()) t4.push(A.TextButton$(false, A.Text$(t1.get$releaseNotes().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._UpdateDialogState_build_closure1(), _null)); else { t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "view_changes"); if (t6 == null) t6 = ""; t4.push(A.TextButton$(false, A.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._UpdateDialogState_build_closure2(account), _null)); } if (!account.isDocker) { t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "update_now"); if (t1 == null) t1 = ""; t4.push(A.TextButton$(false, A.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._UpdateDialogState_build_closure3(_this, context), _null)); } B.JSArray_methods.addAll$1(t5, t4); } else if (t6 === B.UpdateState_2) t5.push(A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._UpdateDialogState_build_closure4(context, store), _null)); return A.AlertDialog$(t5, B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, t2); }, updateApp$1(context) { return this.updateApp$body$_UpdateDialogState(context); }, updateApp$body$_UpdateDialogState(context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, store; var $async$updateApp$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start store = A.StoreProvider_of(context, type$.legacy_AppState); A.passwordCallback(true, new A._UpdateDialogState_updateApp_closure($async$self, A._lateReadCheck(store.__Store__state, "_state"), store, context), context, false); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$updateApp$1, $async$completer); } }; A._UpdateDialogState_build_closure.prototype = { call$0() { A.Clipboard_setData(new A.ClipboardData(string$.docker)); A.showToast(B.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", "")); }, $signature: 1 }; A._UpdateDialogState_build_closure0.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._UpdateDialogState_build_closure1.prototype = { call$0() { return A.launch(string$.https_g, null, false); }, $signature: 26 }; A._UpdateDialogState_build_closure2.prototype = { call$0() { return A.launch(B.JSString_methods.replaceFirst$2("https://github.com/invoiceninja/invoiceninja/compare/vVERSION...v5-stable", "VERSION", this.account.currentVersion), null, false); }, $signature: 26 }; A._UpdateDialogState_build_closure3.prototype = { call$0() { this.$this.updateApp$1(this.context); }, $signature: 1 }; A._UpdateDialogState_build_closure4.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); this.store.get$_dispatchers()[0].call$1(new A.RefreshData(null, false, false, false)); }, $signature: 1 }; A._UpdateDialogState_updateApp_closure.prototype = { call$2(password, idToken) { var t2, credentials, _this = this, t1 = _this.$this; t1.setState$1(new A._UpdateDialogState_updateApp__closure(t1)); t2 = _this.state; credentials = t2.get$credentials(t2); new A.WebClient().post$5$idToken$password$rawResponse(credentials.url + "/self-update", credentials.token, idToken, password, true).then$1$1(0, new A._UpdateDialogState_updateApp__closure0(t1, _this.store), type$.Null).catchError$1(new A._UpdateDialogState_updateApp__closure1(t1, _this.context)); }, $signature: 38 }; A._UpdateDialogState_updateApp__closure.prototype = { call$0() { return this.$this.updateState = B.UpdateState_1; }, $signature: 533 }; A._UpdateDialogState_updateApp__closure0.prototype = { call$1(response) { var t1 = this.$this; t1.setState$1(new A._UpdateDialogState_updateApp___closure0(t1, response)); if (!J.contains$1$asx(t1.updateResponse, "failed")) window.location.reload(); }, $signature: 7 }; A._UpdateDialogState_updateApp___closure0.prototype = { call$0() { var t1 = this.$this; t1.updateState = B.UpdateState_2; t1.updateResponse = J.$index$asx(B.C_JsonCodec.decode$2$reviver(0, J.get$body$x(this.response), null), "message"); }, $signature: 1 }; A._UpdateDialogState_updateApp__closure1.prototype = { call$1(error) { var t1; A.showErrorDialog(false, this.context, A.S(error)); t1 = this.$this; t1.setState$1(new A._UpdateDialogState_updateApp___closure(t1)); }, $signature: 7 }; A._UpdateDialogState_updateApp___closure.prototype = { call$0() { return this.$this.updateState = B.UpdateState_0; }, $signature: 533 }; A.TaskEdit.prototype = { createState$0() { return new A._TaskEditState(null, null, B._StateLifecycle_0); } }; A._TaskEditState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); _this._task_edit$_controller = A.TabController$(null, _this._widget.viewModel.taskTimeIndex != null ? 1 : 0, 2, _this); }, didUpdateWidget$1(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.taskTimeIndex != null) this._task_edit$_controller.animateTo$1(1); }, dispose$0(_) { this._task_edit$_controller.dispose$0(0); this.super$__TaskEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _task_edit$_onSavePressed$2(context, action) { if (!$.$get$_TaskEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, task = viewModel.task, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, client = t3[t2].clientState.$get$1(0, task.clientId), isFullscreen = state.prefState.isEditorFullScreen$1(B.EntityType_task); if (task.get$isNew()) t4 = t1.get$newTask(); else { t1.toString; t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_task"); if (t4 == null) t4 = ""; } t2 = task.getActions$2$client$userCompany(client, t3[t2].userCompany); t3 = _this._task_edit$_controller; t5 = A.Tab$(_null, t1.get$details(t1)); t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "times"); t7 = type$.JSArray_legacy_Widget; t6 = A.TabBar$(t3, _null, false, _null, _null, A._setArrayType([t5, A.Tab$(_null, t6 == null ? "" : t6)], t7)); t5 = $.$get$_TaskEditState__formKey(); t3 = type$.ValueKey_legacy_String; t8 = "__task_" + task.id; t9 = "" + _this._task_edit$_updatedAt; if (isFullscreen) t3 = new A.TaskEditDetailsScreen(new A.ValueKey(t8 + "_" + t9 + "__", t3)); else { t10 = _this._task_edit$_controller; t3 = A.TabBarView$(A._setArrayType([new A.TaskEditDetailsScreen(_null), new A.TaskEditTimesScreen(_null)], t7), t10, new A.ValueKey(t8 + "_" + t9 + "__", t3)); } t5 = A.Form$(_null, t3, t5); if (task.invoiceId.length !== 0 || task.isDeleted) t1 = new A.SizedBox(_null, _null, _null, _null); else { t3 = A.Theme_of(context).primaryColorDark; t7 = A.Icon$(task.get$isRunning() ? B.IconData_58886_MaterialIcons_null_false : B.IconData_58571_MaterialIcons_null_false, B.Color_4294967295, _null); t1 = task.get$isRunning() ? t1.get$stop(t1) : t1.get$start(t1); t1 = A.FloatingActionButton$(t3, t7, "task_edit_fab", false, new A._TaskEditState_build_closure(_this, viewModel), t1); } return A.EditScaffold$(t2, t6, t5, new A._BottomBar(task, _null), task, t1, isFullscreen, new A._TaskEditState_build_closure0(_this), new A._TaskEditState_build_closure1(viewModel), new A._TaskEditState_build_closure2(_this), _null, t4); } }; A._TaskEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._TaskEditState_build_closure2.prototype = { call$2(context, action) { return this.$this._task_edit$_onSavePressed$2(context, action); }, call$1(context) { return this.call$2(context, null); }, $signature: 2721 }; A._TaskEditState_build_closure0.prototype = { call$2(context, action) { return this.$this._task_edit$_onSavePressed$2(context, action); }, $signature: 59 }; A._TaskEditState_build_closure.prototype = { call$0() { this.viewModel.onFabPressed.call$0(); var t1 = this.$this; t1.setState$1(new A._TaskEditState_build__closure(t1)); }, $signature: 1 }; A._TaskEditState_build__closure.prototype = { call$0() { this.$this._task_edit$_updatedAt = Date.now(); }, $signature: 1 }; A._BottomBar.prototype = { build$1(_, context) { var t3, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = A._lateReadCheck(store.__Store__state, "_state").prefState, useSidebarEditor = t2.useSidebarEditor._map$_map.$index(0, B.EntityType_task); if (useSidebarEditor == null) useSidebarEditor = false; t3 = A.Theme_of(context).cardColor; t4 = A._setArrayType([], type$.JSArray_legacy_Widget); if (A.getLayout(context) === B.AppLayout_desktop) { t5 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t4.push(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(useSidebarEditor ? B.IconData_57694_MaterialIcons_null_true : B.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._BottomBar_build_closure(store), _null, _null, _null, _null, _null, _null), t5)); } t5 = A.getLayout(context); t4.push(new A.AppBorder(new A.Padding(B.EdgeInsets_16_0_0_0, new A.Align(B.Alignment_m1_0, _null, _null, new A.LiveText(_null, new A._BottomBar_build_closure0(this, t1, context), A.TextStyle$(_null, _null, t2.enableDarkMode ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null), _null), _null, _null, t5 === B.AppLayout_desktop, false, _null)); return A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t4, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), t3, 0, new A.CircularNotchedRectangle()); }, get$task() { return this.task; } }; A._BottomBar_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(B.EntityType_task)); }, $signature: 9 }; A._BottomBar_build_closure0.prototype = { call$0() { var t1 = this.localization, t2 = this.$this.task, title = B.JSString_methods.$add(t1.get$duration(t1) + " ", A.formatNumber(B.JSInt_methods._tdivFast$1(t2.calculateDuration$0()._duration, 1000000), this.context, null, null, B.FormatNumberType_6, true, null, false)); t1 = t2.number; if (t1.length !== 0) return t1 + " \u2022 " + title; return title; }, $signature: 127 }; A.__TaskEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TaskEditDesktop.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TaskEditDesktopState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._TaskEditDesktopState.prototype = { didChangeDependencies$0() { var task, _this = this, t1 = _this._task_edit_desktop$_numberController, t2 = _this._task_edit_desktop$_rateController, t3 = _this._task_edit_desktop$_descriptionController, t4 = _this._task_edit_desktop$_custom1Controller, t5 = _this._task_edit_desktop$_custom2Controller, t6 = _this._task_edit_desktop$_custom3Controller, t7 = _this._task_edit_desktop$_custom4Controller, t8 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._task_edit_desktop$_controllers = t8; B.JSArray_methods.forEach$1(t8, new A._TaskEditDesktopState_didChangeDependencies_closure(_this)); task = _this._widget.viewModel.task; t1.set$text(0, task.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, A.formatNumber(task.rate, t1, null, null, B.FormatNumberType_4, true, null, false)); t3.set$text(0, task.description); t4.set$text(0, task.customValue1); t5.set$text(0, task.customValue2); t6.set$text(0, task.customValue3); t7.set$text(0, task.customValue4); B.JSArray_methods.forEach$1(_this._task_edit_desktop$_controllers, new A._TaskEditDesktopState_didChangeDependencies_closure0(_this)); _this._task_edit_desktop$_updatedAt = Date.now(); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._task_edit_desktop$_controllers, new A._TaskEditDesktopState_dispose_closure(this)); this.super$State$dispose(0); }, _task_edit_desktop$_onChanged$0() { var _this = this, task = _this._widget.viewModel.task.rebuild$1(new A._TaskEditDesktopState__onChanged_closure(_this)); if (!J.$eq$(task, _this._widget.viewModel.task)) _this._task_edit_desktop$_debouncer.run$1(new A._TaskEditDesktopState__onChanged_closure0(_this, task)); }, build$1(_, context) { var store, viewModel, task, state, t2, t3, t4, company, t5, client, showEndDate, taskTimes, overlapping, t6, t7, t8, rateLabel, tableHeaderColor, t9, t10, t11, index, date, t12, t13, t14, t15, _this = this, _null = null, _s12_ = "invalid_time", t1 = $.$get$navigatorKey(); t1.toString; store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); viewModel = _this._widget.viewModel; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); task = viewModel.task; state = viewModel.state; t2 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list; t4 = t3[t2]; company = t4.userCompany.company; t5 = task.clientId; client = t4.clientState.$get$1(0, t5); showEndDate = company.showTaskEndDate; taskTimes = task.getTaskTimes$1$sort(false); if (!B.JSArray_methods.any$1(taskTimes, new A._TaskEditDesktopState_build_closure())) taskTimes.push(A.TaskTime_TaskTime(_null, _null).rebuild$1(new A._TaskEditDesktopState_build_closure0())); overlapping = task.get$getInvalidTimeIndices(); t4 = t1.get$rate(t1); t6 = A.TaskEntity_TaskEntity(_null, _null, _null, _null, _null); t7 = task.projectId; t6 = A.taskRateSelector(client, company, t3[t2].groupState.$get$1(0, client.groupId), t3[t2].projectState.$get$1(0, t7), t6); t8 = client.settings.currencyId; if (!((t8 == null ? "" : t8).length !== 0)) { t8 = company.settings.currencyId; if (t8 == null) t8 = "1"; } rateLabel = B.JSString_methods.$add(t4 + " \u2022 ", A.formatNumber(t6, context, _null, t8, B.FormatNumberType_0, true, _null, false)); tableHeaderColor = state.prefState.customColors._map$_map.$index(0, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; t4 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([], t4); if (task.invoiceId.length === 0) { t8 = t1.get$client(t1); t9 = $.$get$memoizedDropdownClientList(); t10 = t3[t2]; t11 = t10.clientState; B.JSArray_methods.addAll$1(t6, A._setArrayType([A.EntityDropdown$(true, false, true, t5, t9.call$4(t11.map, t11.list, t10.userState.map, state.staticState), _null, B.EntityType_client, B.List_empty0, t8, new A._TaskEditDesktopState_build_closure1(viewModel, context), _null, new A._TaskEditDesktopState_build_closure2(viewModel, task), _null, _null, _null), new A.ProjectPicker(t7, t5, new A._TaskEditDesktopState_build_closure3(store, viewModel, task), new A._TaskEditDesktopState_build_closure4(viewModel, context), new A.ValueKey("__project_" + t5 + "__", type$.ValueKey_String))], t4)); } t6.push(new A.UserPicker(task.assignedUserId, new A._TaskEditDesktopState_build_closure5(viewModel, task), _null)); t6.push(new A.CustomField(_this._task_edit_desktop$_custom1Controller, _null, _null, "task1", task.customValue1, false, _null)); t6.push(new A.CustomField(_this._task_edit_desktop$_custom3Controller, _null, _null, "task3", task.customValue3, false, _null)); t5 = A.Expanded$(A.FormCard$(_null, t6, _null, B.CrossAxisAlignment_0, false, _null, false, B.EdgeInsets_12_12_6_12), 1); t6 = A.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$taskNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t7 = type$.ValueKey_legacy_String; t8 = A.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_rateController, _null, true, _null, _null, _null, _null, false, false, new A.ValueKey("__rate__", t7), new A.TextInputType(2, true, true), rateLabel, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null); t9 = task.statusId; t10 = t1.get$status(t1); t11 = $.$get$memoizedDropdownTaskStatusList(); t2 = t3[t2]; t3 = t2.taskStatusState; t10 = A.Row$(A._setArrayType([t5, A.Expanded$(A.FormCard$(_null, A._setArrayType([t6, t8, A.DynamicSelector$(false, t9, t11.call$4(t3.map, t3.list, state.staticState, t2.userState.map), B.EntityType_taskStatus, new A.ValueKey("__task_status_" + A.S(t9) + "__", t7), t10, new A._TaskEditDesktopState_build_closure6(state, viewModel, task), _null), new A.CustomField(_this._task_edit_desktop$_custom2Controller, _null, _null, "task2", task.customValue2, false, _null), new A.CustomField(_this._task_edit_desktop$_custom4Controller, _null, _null, "task4", task.customValue4, false, _null)], t4), _null, B.CrossAxisAlignment_0, false, _null, false, B.EdgeInsets_6_12_6_12), 1), A.Expanded$(A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_descriptionController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$description(t1), 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), new A.SizedBox(_null, 4, _null, _null)], t4), _null, B.CrossAxisAlignment_0, false, _null, false, B.EdgeInsets_6_12_12_12), 1)], t4), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t9 = _this._task_edit_desktop$_updatedAt; t2 = showEndDate ? 5 : 4; t2 = A.LinkedHashMap_LinkedHashMap$_literal([t2, new A.FixedColumnWidth(48)], type$.legacy_int, type$.legacy_TableColumnWidth); t3 = A._setArrayType([new A.TableHeader(t1.get$startDate(), false, true, _null), new A.TableHeader(t1.get$startTime(t1), false, false, _null)], t4); if (showEndDate) t3.push(new A.TableHeader(t1.get$endDate(), false, false, _null)); t3.push(new A.TableHeader(t1.get$endTime(t1), false, false, _null)); t3.push(new A.TableHeader(t1.get$duration(t1), false, false, _null)); t3.push(new A.TableHeader("", false, false, _null)); t3 = A._setArrayType([new A.TableRow(_null, tableHeaderColor.length !== 0 ? new A.BoxDecoration(A.convertHexStringToColor(tableHeaderColor), _null, _null, _null, _null, _null, B.BoxShape_0) : _null, t3)], type$.JSArray_legacy_TableRow); for (t1 = t1.localeCode, index = 0; index < taskTimes.length; ++index) { t5 = _this._task_edit_desktop$_startTimeUpdatedAt; t6 = _this._task_edit_desktop$_durationUpdateAt; t8 = "" + index; t11 = taskTimes[index].startDate; if (t11 == null) t11 = _null; else { date = t11.toLocal$0(); t11 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); } t12 = _this._task_edit_desktop$_durationUpdateAt; t12 = A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, new A.DatePicker(_null, t11, new A._TaskEditDesktopState_build_closure7(_this, taskTimes, index, showEndDate, viewModel), _null, _null, _null, new A.ValueKey("__" + t5 + "_" + t6 + "_" + t8 + "__", t7)), _null), new A.Padding(B.EdgeInsets_0_0_16_0, new A.TimePicker(_null, taskTimes[index].startDate, new A._TaskEditDesktopState_build_closure8(_this, taskTimes, index, viewModel), new A.ValueKey("__" + t12 + "_" + t8 + "__", t7)), _null)], t4); if (showEndDate) { t5 = _this._task_edit_desktop$_startDateUpdatedAt; t6 = _this._task_edit_desktop$_durationUpdateAt; t11 = _this._task_edit_desktop$_endTimeUpdatedAt; t13 = taskTimes[index].endDate; if (t13 == null) t13 = _null; else { date = t13.toLocal$0(); t13 = B.JSArray_methods.get$first(date.toIso8601String$0().split("T")); } t12.push(new A.Padding(B.EdgeInsets_0_0_16_0, new A.DatePicker(_null, t13, new A._TaskEditDesktopState_build_closure9(_this, taskTimes, index, viewModel), _null, _null, _null, new A.ValueKey("__" + t5 + "_" + t6 + "_" + t11 + "_" + t8 + "__", t7)), _null)); } t5 = _this._task_edit_desktop$_endDateUpdatedAt; t6 = _this._task_edit_desktop$_durationUpdateAt; t12.push(new A.Padding(B.EdgeInsets_0_0_16_0, new A.TimePicker(_null, taskTimes[index].endDate, new A._TaskEditDesktopState_build_closure10(_this, taskTimes, index, viewModel), new A.ValueKey("__" + t5 + "_" + t6 + "_" + t8 + "__", t7)), _null)); t6 = _this._task_edit_desktop$_startTimeUpdatedAt; t5 = _this._task_edit_desktop$_endTimeUpdatedAt; t11 = _this._task_edit_desktop$_startDateUpdatedAt; t13 = _this._task_edit_desktop$_endDateUpdatedAt; t14 = taskTimes[index]; t15 = t14.startDate; if (t15 == null || t14.endDate == null) t14 = _null; else { t14 = t14.endDate; if (t14 == null) t14 = new A.DateTime(Date.now(), false); t15 = new A.Duration(1000 * (t14._value - t15._value)); t14 = t15; } t12.push(new A.Padding(B.EdgeInsets_0_0_16_0, new A.DurationPicker(t14, new A._TaskEditDesktopState_build_closure11(_this, taskTimes, index, viewModel), _null, new A.ValueKey("__" + t6 + "_" + t5 + "_" + t11 + "_" + t13 + "_" + t8 + "__", t7)), _null)); t5 = B.JSArray_methods.contains$1(overlapping, index) ? B.MaterialColor_Map_JNc9P_4294198070 : _null; if (B.JSArray_methods.contains$1(overlapping, index)) { t6 = $.$get$LocalizationsProvider__localizedValues(); t8 = J.$index$asx(t6.$index(0, t1), _s12_); t6 = t8 == null ? J.$index$asx(t6.$index(0, "en"), _s12_) : t8; } else { t6 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1), "remove"); if (t6 == null) t6 = ""; } t8 = taskTimes[index]; t8 = t8.startDate == null && t8.endDate == null ? _null : new A._TaskEditDesktopState_build_closure12(_this, viewModel, index); t12.push(new A.Padding(B.EdgeInsets_0_4_0_0, A.IconButton$(B.Alignment_0_0, _null, _null, true, new A.Icon(B.IconData_57704_MaterialIcons_null_false, _null, t5, _null), _null, t8, B.EdgeInsets_8_8_8_8, _null, t6, _null), _null)); t3.push(new A.TableRow(_null, _null, t12)); } return new A.ScrollableListView(A._setArrayType([t10, A.FormCard$(A.Table$(_null, t3, t2, B.FlexColumnWidth_1, B.TableCellVerticalAlignment_0, new A.ValueKey("__table_" + t9 + "__", t7)), _null, _null, _null, false, _null, false, B.EdgeInsets_12_0_12_0), new A.SizedBox(_null, 12, _null, _null)], t4), _null, _null, _null); } }; A._TaskEditDesktopState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_task_edit_desktop$_onChanged()); }, $signature: 33 }; A._TaskEditDesktopState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_task_edit_desktop$_onChanged()); }, $signature: 33 }; A._TaskEditDesktopState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_task_edit_desktop$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._TaskEditDesktopState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._task_edit_desktop$_numberController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_number = t2; t2 = A.parseDouble(J.trim$0$s(t1._task_edit_desktop$_rateController._change_notifier$_value.text), false); b.get$_task_model$_$this()._rate = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_descriptionController._change_notifier$_value.text); b.get$_task_model$_$this()._description = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom1Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue1 = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom2Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue2 = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom3Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue3 = t2; t1 = J.trim$0$s(t1._task_edit_desktop$_custom4Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, $signature: 50 }; A._TaskEditDesktopState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.task); }, $signature: 1 }; A._TaskEditDesktopState_build_closure.prototype = { call$1(taskTime) { return taskTime.startDate == null && taskTime.endDate == null; }, $signature: 204 }; A._TaskEditDesktopState_build_closure0.prototype = { call$1(b) { b.get$_task_model$_$this()._startDate = null; return b; }, $signature: 799 }; A._TaskEditDesktopState_build_closure2.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDesktopState_build__closure8(client))); }, $signature: 34 }; A._TaskEditDesktopState_build__closure8.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_clientId = t1; b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, $signature: 50 }; A._TaskEditDesktopState_build_closure1.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 184 }; A._TaskEditDesktopState_build_closure3.prototype = { call$1(selectedId) { var t3, t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t3 = this.task; this.viewModel.onChanged.call$1(t3.rebuild$1(new A._TaskEditDesktopState_build__closure7(t2._list[t1].projectState.$get$1(0, selectedId), t3))); }, $signature: 11 }; A._TaskEditDesktopState_build__closure7.prototype = { call$1(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_task_model$_$this()._task_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.task.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 50 }; A._TaskEditDesktopState_build_closure4.prototype = { call$1(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, $signature: 184 }; A._TaskEditDesktopState_build_closure5.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDesktopState_build__closure6(userId))); }, $signature: 5 }; A._TaskEditDesktopState_build__closure6.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, $signature: 50 }; A._TaskEditDesktopState_build_closure6.prototype = { call$1(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDesktopState_build__closure5(t1.userCompanyStates._list[t2].taskStatusState.map._map$_map.$index(0, selectedId)))); }, $signature: 11 }; A._TaskEditDesktopState_build__closure5.prototype = { call$1(b) { var t1 = this.taskStatus; t1 = t1 == null ? null : t1.id; if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_statusId = t1; b.get$_task_model$_$this()._statusOrder = null; return b; }, $signature: 50 }; A._TaskEditDesktopState_build_closure7.prototype = { call$2(date, _) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithStartDate$2$syncDates(date, !_this.showEndDate), t1); t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure4(t1)); }, $signature: 53 }; A._TaskEditDesktopState_build__closure4.prototype = { call$0() { this.$this._task_edit_desktop$_startDateUpdatedAt = Date.now(); }, $signature: 1 }; A._TaskEditDesktopState_build_closure8.prototype = { call$1(timeOfDay) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithStartTime$1(timeOfDay), t1); t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure3(t1)); }, $signature: 304 }; A._TaskEditDesktopState_build__closure3.prototype = { call$0() { this.$this._task_edit_desktop$_startTimeUpdatedAt = Date.now(); }, $signature: 1 }; A._TaskEditDesktopState_build_closure9.prototype = { call$2(date, _) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithEndDate$1(date), t1); t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure2(t1)); }, $signature: 53 }; A._TaskEditDesktopState_build__closure2.prototype = { call$0() { this.$this._task_edit_desktop$_endDateUpdatedAt = Date.now(); }, $signature: 1 }; A._TaskEditDesktopState_build_closure10.prototype = { call$1(timeOfDay) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithEndTime$1(timeOfDay), t1); t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure1(t1)); }, $signature: 304 }; A._TaskEditDesktopState_build__closure1.prototype = { call$0() { this.$this._task_edit_desktop$_endTimeUpdatedAt = Date.now(); }, $signature: 1 }; A._TaskEditDesktopState_build_closure11.prototype = { call$1(duration) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithDuration$1(duration), t1); t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure0(t1)); }, $signature: 36 }; A._TaskEditDesktopState_build__closure0.prototype = { call$0() { this.$this._task_edit_desktop$_durationUpdateAt = Date.now(); }, $signature: 1 }; A._TaskEditDesktopState_build_closure12.prototype = { call$0() { this.viewModel.onRemoveTaskTime.call$1(this.index); var t1 = this.$this; t1.setState$1(new A._TaskEditDesktopState_build__closure(t1)); }, $signature: 1 }; A._TaskEditDesktopState_build__closure.prototype = { call$0() { this.$this._task_edit_desktop$_updatedAt = Date.now(); }, $signature: 1 }; A.TaskEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TaskEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._TaskEditDetailsState.prototype = { didChangeDependencies$0() { var task, _this = this, t1 = _this._task_edit_details$_numberController, t2 = _this._task_edit_details$_rateController, t3 = _this._descriptionController, t4 = _this._task_edit_details$_custom1Controller, t5 = _this._task_edit_details$_custom2Controller, t6 = _this._task_edit_details$_custom3Controller, t7 = _this._task_edit_details$_custom4Controller, t8 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._task_edit_details$_controllers = t8; B.JSArray_methods.forEach$1(t8, new A._TaskEditDetailsState_didChangeDependencies_closure(_this)); task = _this._widget.viewModel.task; t1.set$text(0, task.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, A.formatNumber(task.rate, t1, null, null, B.FormatNumberType_4, true, null, false)); t3.set$text(0, task.description); t4.set$text(0, task.customValue1); t5.set$text(0, task.customValue2); t6.set$text(0, task.customValue3); t7.set$text(0, task.customValue4); B.JSArray_methods.forEach$1(_this._task_edit_details$_controllers, new A._TaskEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._task_edit_details$_controllers, new A._TaskEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _task_edit_details$_onChanged$0() { var _this = this, task = _this._widget.viewModel.task.rebuild$1(new A._TaskEditDetailsState__onChanged_closure(_this)); if (!J.$eq$(task, _this._widget.viewModel.task)) _this._task_edit_details$_debouncer.run$1(new A._TaskEditDetailsState__onChanged_closure0(_this, task)); }, build$1(_, context) { var store, viewModel, task, state, t2, t3, t4, company, t5, client, t6, t7, t8, rateLabel, t9, t10, t11, _this = this, _null = null, t1 = $.$get$navigatorKey(); t1.toString; store = A.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); viewModel = _this._widget.viewModel; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); task = viewModel.task; state = viewModel.state; t2 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list; t4 = t3[t2]; company = t4.userCompany.company; t5 = task.clientId; client = t4.clientState.$get$1(0, t5); t4 = t1.get$rate(t1); t6 = A.TaskEntity_TaskEntity(_null, _null, _null, _null, _null); t7 = task.projectId; t6 = A.taskRateSelector(client, company, t3[t2].groupState.$get$1(0, client.groupId), t3[t2].projectState.$get$1(0, t7), t6); t8 = client.settings.currencyId; if (!((t8 == null ? "" : t8).length !== 0)) { t8 = company.settings.currencyId; if (t8 == null) t8 = "1"; } rateLabel = B.JSString_methods.$add(t4 + " \u2022 ", A.formatNumber(t6, context, _null, t8, B.FormatNumberType_0, true, _null, false)); t8 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([], t8); if (task.invoiceId.length === 0) { t4 = t1.get$client(t1); t9 = $.$get$memoizedDropdownClientList(); t10 = t3[t2]; t11 = t10.clientState; B.JSArray_methods.addAll$1(t6, A._setArrayType([A.EntityDropdown$(true, false, false, t5, t9.call$4(t11.map, t11.list, t10.userState.map, state.staticState), _null, B.EntityType_client, B.List_empty0, t4, new A._TaskEditDetailsState_build_closure(viewModel, context), _null, new A._TaskEditDetailsState_build_closure0(viewModel, task), _null, _null, _null), new A.ProjectPicker(t7, t5, new A._TaskEditDetailsState_build_closure1(store, viewModel, task), new A._TaskEditDetailsState_build_closure2(viewModel, context), new A.ValueKey("__project_" + t5 + "__", type$.ValueKey_String))], t8)); } t6.push(new A.UserPicker(task.assignedUserId, new A._TaskEditDetailsState_build_closure3(viewModel, task), _null)); t6.push(A.DecoratedFormField$(false, _null, false, false, _this._task_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$taskNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t4 = type$.ValueKey_legacy_String; t6.push(A.DecoratedFormField$(false, _null, false, false, _this._task_edit_details$_rateController, _null, true, _null, _null, _null, _null, false, false, new A.ValueKey("__rate__", t4), new A.TextInputType(2, true, true), rateLabel, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); t5 = task.statusId; t7 = t1.get$status(t1); t9 = $.$get$memoizedDropdownTaskStatusList(); t2 = t3[t2]; t3 = t2.taskStatusState; t6.push(A.DynamicSelector$(false, t5, t9.call$4(t3.map, t3.list, state.staticState, t2.userState.map), B.EntityType_taskStatus, new A.ValueKey("__task_status_" + A.S(t5) + "__", t4), t7, new A._TaskEditDetailsState_build_closure4(state, viewModel, task), _null)); t6.push(new A.CustomField(_this._task_edit_details$_custom1Controller, _null, _null, "task1", task.customValue1, false, _null)); t6.push(new A.CustomField(_this._task_edit_details$_custom2Controller, _null, _null, "task2", task.customValue2, false, _null)); t6.push(new A.CustomField(_this._task_edit_details$_custom3Controller, _null, _null, "task3", task.customValue3, false, _null)); t6.push(new A.CustomField(_this._task_edit_details$_custom4Controller, _null, _null, "task4", task.customValue4, false, _null)); t6.push(A.DecoratedFormField$(false, _null, false, false, _this._descriptionController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$description(t1), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)); return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t6, _null, _null, false, _null, true, _null)], t8), _null, _null, _null); } }; A._TaskEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_task_edit_details$_onChanged()); }, $signature: 33 }; A._TaskEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_task_edit_details$_onChanged()); }, $signature: 33 }; A._TaskEditDetailsState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_task_edit_details$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._TaskEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._task_edit_details$_numberController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_number = t2; t2 = A.parseDouble(J.trim$0$s(t1._task_edit_details$_rateController._change_notifier$_value.text), false); b.get$_task_model$_$this()._rate = t2; t2 = J.trim$0$s(t1._descriptionController._change_notifier$_value.text); b.get$_task_model$_$this()._description = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue1 = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue2 = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue3 = t2; t1 = J.trim$0$s(t1._task_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, $signature: 50 }; A._TaskEditDetailsState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.task); }, $signature: 1 }; A._TaskEditDetailsState_build_closure0.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDetailsState_build__closure2(client))); }, $signature: 34 }; A._TaskEditDetailsState_build__closure2.prototype = { call$1(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_clientId = t1; b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, $signature: 50 }; A._TaskEditDetailsState_build_closure.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 184 }; A._TaskEditDetailsState_build_closure1.prototype = { call$1(selectedId) { var t3, t1 = A._lateReadCheck(this.store.__Store__state, "_state"), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t3 = this.task; this.viewModel.onChanged.call$1(t3.rebuild$1(new A._TaskEditDetailsState_build__closure1(t2._list[t1].projectState.$get$1(0, selectedId), t3))); }, $signature: 11 }; A._TaskEditDetailsState_build__closure1.prototype = { call$1(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_task_model$_$this()._task_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.task.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 50 }; A._TaskEditDetailsState_build_closure2.prototype = { call$1(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, $signature: 184 }; A._TaskEditDetailsState_build_closure3.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDetailsState_build__closure0(userId))); }, $signature: 5 }; A._TaskEditDetailsState_build__closure0.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, $signature: 50 }; A._TaskEditDetailsState_build_closure4.prototype = { call$1(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDetailsState_build__closure(t1.userCompanyStates._list[t2].taskStatusState.map._map$_map.$index(0, selectedId)))); }, $signature: 11 }; A._TaskEditDetailsState_build__closure.prototype = { call$1(b) { var t1 = this.taskStatus; t1 = t1 == null ? null : t1.id; b.get$_task_model$_$this()._task_model$_statusId = t1; b.get$_task_model$_$this()._statusOrder = null; return b; }, $signature: 50 }; A.TaskEditDetailsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskEditDetailsScreen_build_closure(), new A.TaskEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditDetailsVM); } }; A.TaskEditDetailsScreen_build_closure0.prototype = { call$1(store) { return A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore(store); }, $signature: 2723 }; A.TaskEditDetailsScreen_build_closure.prototype = { call$2(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_task)) return new A.TaskEditDesktop(viewModel, null); else return new A.TaskEditDetails(viewModel, null); }, $signature: 2724 }; A.TaskEditDetailsVM.prototype = { get$task() { return this.task; }, get$company() { return this.company; } }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure.prototype = { call$1(task) { this.store.get$_dispatchers()[0].call$1(new A.UpdateTask(task)); }, $signature: 183 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0.prototype = { call$2(context, completer) { var _null = null, t1 = A.ClientEntity_ClientEntity(_null, _null, _null, _null), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3(t3), t4); }, $signature: 119 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, $signature: 3 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, $signature: 34 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2.prototype = { call$2(taskTime, index) { var t1 = this.store; if (index === this.task.getTaskTimes$0().length) t1.get$_dispatchers()[0].call$1(new A.AddTaskTime(taskTime)); else t1.get$_dispatchers()[0].call$1(new A.UpdateTaskTime(index, taskTime)); }, $signature: 530 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3.prototype = { call$1(index) { this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskTime(index)); }, $signature: 106 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { var _null = null, t1 = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null).rebuild$1(new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure(this.task)), t2 = new A._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0(t3), t4); A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, true); completer.get$future().then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1(t3), t4); }, $signature: 119 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_clientId = this.task.clientId; return b; }, $signature: 164 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0.prototype = { call$1(_) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, $signature: 3 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1.prototype = { call$1(client) { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, $signature: 34 }; A.TaskEditTimes.prototype = { createState$0() { return new A._TaskEditTimesState(B._StateLifecycle_0); } }; A._TaskEditTimesState.prototype = { _showTaskTimeEditor$2(taskTime, context) { A.showDialog(null, false, new A._TaskEditTimesState__showTaskTimeEditor_closure(this, taskTime), context, null, true, type$.legacy_ResponsivePadding); }, build$1(_, context) { var sortedTaskTimes, taskTimeWidgets, i, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, task = viewModel.task, taskTimes = task.getTaskTimes$0(), invalidTimes = task.get$getInvalidTimeIndices(), t2 = viewModel.taskTimeIndex, taskTime = t2 != null && taskTimes.length > t2 ? taskTimes[t2] : _null; if (taskTime != null && true) { viewModel.clearSelectedTaskTime.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._TaskEditTimesState_build_closure(this, taskTime, context)); } if (task.getTaskTimes$0().length === 0) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "click_plus_to_add_time"); return new A.HelpText(t1 == null ? "" : t1, _null); } t1 = task.getTaskTimes$0(); t1 = A._setArrayType(t1.slice(0), A._arrayInstanceType(t1)); t2 = A._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); sortedTaskTimes = A.List_List$of(new A.ReversedListIterable(t1, t2), true, t2._eval$1("ListIterable.E")); t2 = type$.JSArray_legacy_Widget; taskTimeWidgets = A._setArrayType([], t2); for (i = 0; t1 = sortedTaskTimes.length, i < t1; ++i) { taskTime = sortedTaskTimes[i]; taskTimeWidgets.push(new A.TaskTimeListTile(new A._TaskEditTimesState_build_closure0(this, taskTime), task, taskTime, !B.JSArray_methods.contains$1(invalidTimes, t1 - i - 1), _null)); } t1 = A._setArrayType(taskTimeWidgets.slice(0), t2); return new A.ScrollableListView(t1, _null, _null, _null); } }; A._TaskEditTimesState__showTaskTimeEditor_closure.prototype = { call$1(context) { var viewModel = this.$this._widget.viewModel, taskTimes = viewModel.task.getTaskTimes$0(), t1 = this.taskTime; return new A.TimeEditDetails(B.JSArray_methods.indexOf$1(taskTimes, B.JSArray_methods.firstWhere$1(taskTimes, new A._TaskEditTimesState__showTaskTimeEditor__closure(t1))), t1, viewModel, null); }, $signature: 2726 }; A._TaskEditTimesState__showTaskTimeEditor__closure.prototype = { call$1(time) { var t1 = this.taskTime; return J.$eq$(time.startDate, t1.startDate) && J.$eq$(time.endDate, t1.endDate); }, $signature: 204 }; A._TaskEditTimesState_build_closure.prototype = { call$1(duration) { this.$this._showTaskTimeEditor$2(this.taskTime, this.context); }, $signature: 36 }; A._TaskEditTimesState_build_closure0.prototype = { call$1(context) { return this.$this._showTaskTimeEditor$2(this.taskTime, context); }, $signature: 30 }; A.TimeEditDetails.prototype = { createState$0() { return new A.TimeEditDetailsState(A.TaskTime_TaskTime(null, null), B._StateLifecycle_0); } }; A.TimeEditDetailsState.prototype = { didChangeDependencies$0() { this._taskTime = this._widget.taskTime; this.super$State$didChangeDependencies(); }, build$1(_, context) { var t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, showEndDate = viewModel.company.showTaskEndDate, t2 = _this._startTimeUpdatedAt, t3 = type$.ValueKey_legacy_String, t4 = t1.get$date(), t5 = _this._taskTime.startDate; t5 = t5 == null ? _null : A.convertDateTimeToSqlDate(t5.toLocal$0()); t6 = type$.JSArray_legacy_Widget; t5 = A._setArrayType([A.DatePicker$(false, _null, new A.ValueKey("__date_" + t2 + "__", t3), t4, _null, new A.TimeEditDetailsState_build_closure(_this, showEndDate, viewModel), t5, _null), A.TimePicker$(false, new A.ValueKey("__start_time_" + _this._durationUpdateAt + "__", t3), t1.get$startTime(t1), new A.TimeEditDetailsState_build_closure0(_this, viewModel), _this._taskTime.startDate), A.TimePicker$(true, new A.ValueKey("__end_time_" + _this._endDateUpdatedAt + "_" + _this._durationUpdateAt + "__", t3), t1.get$endTime(t1), new A.TimeEditDetailsState_build_closure1(_this, viewModel), _this._taskTime.endDate)], t6); if (showEndDate) { t2 = _this._startDateUpdatedAt; t4 = _this._durationUpdateAt; t7 = _this._endTimeUpdatedAt; t8 = _this._taskTime; t8 = t8.startDate == null ? _null : A.convertDateTimeToSqlDate(t8.endDate.toLocal$0()); t5.push(A.DatePicker$(false, _null, new A.ValueKey("__" + t2 + "_" + t4 + "_" + t7 + "__", t3), _null, _null, new A.TimeEditDetailsState_build_closure2(_this, viewModel), t8, _null)); } t2 = _this._startTimeUpdatedAt; t4 = _this._endTimeUpdatedAt; t7 = _this._startDateUpdatedAt; t8 = _this._endDateUpdatedAt; t9 = t1.get$duration(t1); t10 = _this._taskTime; t10 = t10.startDate == null || t10.endDate == null ? _null : t10.get$duration(t10); t5.push(new A.DurationPicker(t10, new A.TimeEditDetailsState_build_closure3(_this, viewModel), t9, new A.ValueKey("__duration_" + t2 + "_" + t4 + "_" + t7 + "_" + t8 + "_", t3))); t5 = A.SingleChildScrollView$(A.Column$(t5, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.TimeEditDetailsState_build_closure4(_this, context), _null), A.TextButton$(false, A.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.TimeEditDetailsState_build_closure5(_this, context), _null)], t6), B.EdgeInsets_0_0_0_0, _null, t5, B.EdgeInsets_24_20_24_24, _null, _null, _null); } }; A.TimeEditDetailsState_build_closure.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure3(t1, date, this.showEndDate, this.viewModel)); }, $signature: 53 }; A.TimeEditDetailsState_build__closure3.prototype = { call$0() { var _this = this, t1 = _this.$this, t2 = t1._taskTime.copyWithStartDate$2$syncDates(_this.date, !_this.showEndDate); t1._taskTime = t2; _this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._startDateUpdatedAt = Date.now(); }, $signature: 1 }; A.TimeEditDetailsState_build_closure0.prototype = { call$1(timeOfDay) { var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure2(t1, timeOfDay, this.viewModel)); }, $signature: 304 }; A.TimeEditDetailsState_build__closure2.prototype = { call$0() { var t1 = this.$this, t2 = t1._taskTime.copyWithStartTime$1(this.timeOfDay); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._startTimeUpdatedAt = Date.now(); }, $signature: 1 }; A.TimeEditDetailsState_build_closure1.prototype = { call$1(timeOfDay) { var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure1(t1, timeOfDay, this.viewModel)); }, $signature: 304 }; A.TimeEditDetailsState_build__closure1.prototype = { call$0() { var t1 = this.$this, t2 = t1._taskTime.copyWithEndTime$1(this.timeOfDay); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._endTimeUpdatedAt = Date.now(); }, $signature: 1 }; A.TimeEditDetailsState_build_closure2.prototype = { call$2(date, _) { var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure0(t1, date, this.viewModel)); }, $signature: 53 }; A.TimeEditDetailsState_build__closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1._taskTime.copyWithEndDate$1(this.date); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._endDateUpdatedAt = Date.now(); }, $signature: 1 }; A.TimeEditDetailsState_build_closure3.prototype = { call$1(duration) { var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure(t1, duration, this.viewModel)); }, $signature: 36 }; A.TimeEditDetailsState_build__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._taskTime.copyWithDuration$1(this.duration); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._durationUpdateAt = Date.now(); }, $signature: 1 }; A.TimeEditDetailsState_build_closure4.prototype = { call$0() { var t1 = this.$this._widget; t1.viewModel.onRemoveTaskTimePressed.call$1(t1.index); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.TimeEditDetailsState_build_closure5.prototype = { call$0() { this.$this._widget.viewModel.onDoneTaskTimePressed.call$0(); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.TaskEditTimesScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskEditTimesScreen_build_closure(), new A.TaskEditTimesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditTimesVM); } }; A.TaskEditTimesScreen_build_closure0.prototype = { call$1(store) { return A.TaskEditTimesVM_TaskEditTimesVM$fromStore(store); }, $signature: 2727 }; A.TaskEditTimesScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaskEditTimes(viewModel, null); }, $signature: 2728 }; A.TaskEditTimesVM.prototype = { get$company() { return this.company; }, get$task() { return this.task; } }; A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure.prototype = { call$1(index) { return this.store.get$_dispatchers()[0].call$1(new A.DeleteTaskTime(index)); }, $signature: 180 }; A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.EditTaskTime()); }, $signature: 1 }; A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1.prototype = { call$2(taskTime, index) { this.store.get$_dispatchers()[0].call$1(new A.UpdateTaskTime(index, taskTime)); }, $signature: 530 }; A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.EditTaskTime()); }, $signature: 9 }; A.TaskEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskEditScreen_build_closure(), new A.TaskEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditVM); } }; A.TaskEditScreen_build_closure0.prototype = { call$1(store) { return A.TaskEditVM_TaskEditVM$fromStore(store); }, $signature: 2729 }; A.TaskEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaskEdit(viewModel, new A.ValueKey(viewModel.task.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2730 }; A.TaskEditVM.prototype = { get$task() { return this.task; }, get$company() { return this.company; } }; A.TaskEditVM_TaskEditVM$fromStore_closure0.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.TaskEntity_TaskEntity(_null, _null, _null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.TaskEditVM_TaskEditVM$fromStore_closure1.prototype = { call$0() { var taskTimes, t3, t1 = this.task, t2 = this.store; if (t1.get$isRunning()) { taskTimes = t1.getTaskTimes$0(); t1 = taskTimes.length; t3 = J.get$stop$z(B.JSArray_methods.firstWhere$1(taskTimes, new A.TaskEditVM_TaskEditVM$fromStore__closure())); t2.get$_dispatchers()[0].call$1(new A.UpdateTaskTime(t1 - 1, t3)); } else { t1 = A.TaskTime_TaskTime(null, null); t2.get$_dispatchers()[0].call$1(new A.AddTaskTime(t1)); } }, $signature: 1 }; A.TaskEditVM_TaskEditVM$fromStore__closure.prototype = { call$1(time) { return time.endDate == null; }, $signature: 204 }; A.TaskEditVM_TaskEditVM$fromStore_closure.prototype = { call$2(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaskEditVM_TaskEditVM$fromStore__closure0(this.store, this.state, action).call$0(); }, call$1(context) { return this.call$2(context, null); }, $signature: 170 }; A.TaskEditVM_TaskEditVM$fromStore__closure0.prototype = { call$0() { var t6, $navigator, _this = this, t1 = _this.store, task = A._lateReadCheck(t1.__Store__state, "_state").uiState.taskUIState.editing, t2 = _this.state, t3 = t2.uiState.selectedCompanyIndex, t4 = t2.userCompanyStates._list, origTask = t4[t3].taskState.$get$1(0, task.id), t5 = $.$get$navigatorKey(); t5.toString; t6 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t5), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t5.get$currentState(); if (!task.get$areTimesValid()) { A.showDialog(null, true, new A.TaskEditVM_TaskEditVM$fromStore___closure(t6), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t5), null, true, type$.legacy_ErrorDialog); return null; } if (!task.get$isNew()) if (!A.hasTaskChanges(task, t4[t3].taskState.map)) { t3 = _this.action; t3 = t3 != null && !t3.get$isServerSide(); } else t3 = false; else t3 = false; t4 = _this.action; if (t3) A.handleEntitiesActions(A._setArrayType([task], type$.JSArray_legacy_BaseEntity), t4, false); else { t3 = new A._Future($.Zone__current, type$._Future_legacy_TaskEntity); t1.get$_dispatchers()[0].call$1(new A.SaveTaskRequest(new A._AsyncCompleter(t3, type$._AsyncCompleter_legacy_TaskEntity), task, true, t4)); return t3.then$1$1(0, new A.TaskEditVM_TaskEditVM$fromStore___closure0(task, t6, origTask, t1, t2, $navigator, t4), type$.Null).catchError$1(new A.TaskEditVM_TaskEditVM$fromStore___closure1()); } }, $signature: 37 }; A.TaskEditVM_TaskEditVM$fromStore___closure.prototype = { call$1(context) { var t1 = this.localization; t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "task_errors"); return new A.ErrorDialog(t1 == null ? "" : t1, false, null); }, $signature: 24 }; A.TaskEditVM_TaskEditVM$fromStore___closure0.prototype = { call$1(savedTask) { var _this = this, _null = null, _s10_ = "/task/view", t1 = _this.task, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_task"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedTask(); A.showToast(t2); if (_this.origTask.statusId != savedTask.statusId) _this.store.get$_dispatchers()[0].call$1(new A.UpdateKanban()); t2 = _this.state.prefState; if (t2.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s10_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s10_, t1, t1); } else t2.pop$1(0, savedTask); } else { if (!t2.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedTask, _null, false); if (t2.isEditorFullScreen$1(B.EntityType_task) && t2.editAfterSaving) A.editEntity(_null, savedTask, true, _null); } t1 = _this.action; t2 = t1 != null; if (t2 && !t1.get$isServerSide()) A.handleEntitiesActions(A._setArrayType([savedTask], type$.JSArray_legacy_BaseEntity), t1, false); else if (t2 && B.JSArray_methods.contains$1(A._setArrayType([B.EntityAction_archive, B.EntityAction_delete, B.EntityAction_restore], type$.JSArray_legacy_EntityAction), t1)) { A.handleEntitiesActions(A._setArrayType([savedTask], type$.JSArray_legacy_BaseEntity), t1, false); A.viewEntity(false, savedTask, _null, true); } }, $signature: 183 }; A.TaskEditVM_TaskEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.TaskEditVM_TaskEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TaskEditVM_TaskEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.KanbanTaskCard.prototype = { createState$0() { return new A._KanbanTaskCardState(B._StateLifecycle_0); }, onSavePressed$2(arg0, arg1) { return this.onSavePressed.call$2(arg0, arg1); }, onCancelPressed$0() { return this.onCancelPressed.call$0(); }, get$task() { return this.task; } }; A._KanbanTaskCardState.prototype = { initState$0() { var task, _this = this; _this.super$State$initState(); task = _this._widget.task; _this._kanban_card$_description = task.description; _this._isEditing = task.get$isNew(); }, build$1(_, context) { var t4, t5, project, client, textColor, color, isDragging, startLabel, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), task = _this._widget.task, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = t2[t3].projectState; t5 = task.projectId; project = t4.$get$1(0, t5); client = t2[t3].clientState.$get$1(0, task.clientId); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t4 = t5.length !== 0; color = t4 ? B.List_YVI[B.JSInt_methods.$mod(B.JSArray_methods.indexOf$2(t2[t3].projectState.list._list, t5, 0), 18)] : B.MaterialColor_Map_HFpTk_4288585374; isDragging = context.findAncestorStateOfType$1$0(type$.legacy_KanbanViewState).isDragging; if (_this._isEditing && !isDragging) { t2 = A.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _this._kanban_card$_description, _null, false, false, _null, B.TextInputType_1_null_null, _null, 10, 2, false, new A._KanbanTaskCardState_build_closure(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null); t3 = t1.get$cancel(t1); t4 = _this._widget.isSaving ? _null : new A._KanbanTaskCardState_build_closure0(_this, context, t1); t5 = type$.JSArray_legacy_Widget; return A.Card$(new A.Padding(B.EdgeInsets_8_0_8_8, A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 12, _null, _null), A.Row$(A._setArrayType([new A.AppTextButton(t3, new A._KanbanTaskCardState_build_closure1(_this, task), false, _null, _null), new A.Padding(B.EdgeInsets_8_0_0_0, A.ElevatedButton$(A.Text$(t1.get$save(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), t4, _null), _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null)], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), _null, _null, _null, _null, true, _null); } if (task.get$isRunning()) startLabel = t1.get$stop(t1); else startLabel = task.getTaskTimes$0().length === 0 ? t1.get$start(t1) : t1.get$resume(t1); t2 = A.BorderRadius$circular(2); t3 = _this._widget; t5 = t3.isCorrectOrder ? 1 : 0.7; t3 = t3.isSelected && state.prefState.appLayout === B.AppLayout_desktop ? state.get$accentColor() : B.Color_0; t6 = A.BorderRadius$circular(2); t7 = A.Theme_of(context).backgroundColor; t8 = type$.JSArray_legacy_Widget; t9 = A._setArrayType([A.Expanded$(A.Text$(task.description, _null, 3, _null, _null, _null, _null, _null, _null, _null), 1)], t8); if (task.get$isRunning()) { t10 = state.prefState.appLayout === B.AppLayout_desktop ? new A.EdgeInsets(4, 0, 1, 0) : new A.EdgeInsets(8, 4, 10, 0); t9.push(new A.Padding(t10, A.Icon$(B.IconData_58571_MaterialIcons_null_false, state.get$accentColor(), 16), _null)); } t9 = A._setArrayType([new A.Padding(B.EdgeInsets_8_8_8_4, A.Row$(t9, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)], t8); if (_this._kanban_card$_isHovered && !isDragging) { t4 = A.Container$(_null, A.Center$(A.Text$(t1.get$view(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, 24, _null, _null, _null, _null, _null, _null); t4 = A.Expanded$(A.InkWell$(false, _null, true, t4, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, task.get$isNew() ? _null : new A._KanbanTaskCardState_build_closure2(state, task), _null, _null, _null, _null, _null, _null), 1); t1 = A.Container$(_null, A.Center$(A.Text$(t1.get$edit(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, 28, _null, _null, _null, _null, _null, _null); t9.push(A.Row$(A._setArrayType([t4, A.Expanded$(A.InkWell$(false, _null, true, t1, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, task.get$isNew() ? _null : new A._KanbanTaskCardState_build_closure3(task), _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.InkWell$(false, _null, true, A.Container$(_null, A.Center$(A.Text$(startLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), B.Clip_0, _null, _null, _null, _null, 24, _null, _null, _null, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._KanbanTaskCardState_build_closure4(task), _null, _null, _null, _null, _null, _null), 1)], t8), B.CrossAxisAlignment_2, B.MainAxisAlignment_5, B.MainAxisSize_1, _null)); } else { t8 = A._setArrayType([A.Expanded$(new A.LiveText(_null, new A._KanbanTaskCardState_build_closure5(task, client, project), A.TextStyle$(_null, _null, A.Color$fromARGB(153, textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null), 1)], t8); if (task.documents._list.length !== 0) t8.push(new A.Padding(B.EdgeInsets_8_0_0_0, A.Icon$(B._MdiIconData_EuK3, _null, 16), _null)); if (state.prefState.appLayout === B.AppLayout_mobile) t8.push(A.PopupMenuButton$(_null, _null, true, _null, _null, new A._KanbanTaskCardState_build_closure6(t1, startLabel), new A._KanbanTaskCardState_build_closure7(startLabel, task, t1), B.EdgeInsets_8_8_8_8, _null, type$.legacy_String)); else if (t4) t8.push(new A.Padding(B.EdgeInsets_8_0_0_0, A.Icon$(B._MdiIconData_4ax, color, 16), _null)); t9.push(new A.Padding(B.EdgeInsets_8_0_8_12, A.Row$(t8, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null)); } return A.MouseRegion$(A.InkWell$(false, t2, true, A.Opacity$(A.Card$(A.Column$(t9, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t7, _null, _null, true, new A.RoundedRectangleBorder(t6, new A.BorderSide(t3, 1, B.BorderStyle_1))), t5), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._KanbanTaskCardState_build_closure8(_this), _null, _null, _null, _null, _null, _null), B.C__DeferringMouseCursor, _null, _null, new A._KanbanTaskCardState_build_closure9(_this), new A._KanbanTaskCardState_build_closure10(_this, state)); } }; A._KanbanTaskCardState_build_closure.prototype = { call$1(value) { return this.$this._kanban_card$_description = value; }, $signature: 15 }; A._KanbanTaskCardState_build_closure1.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._KanbanTaskCardState_build__closure3(t1, this.task)); }, $signature: 1 }; A._KanbanTaskCardState_build__closure3.prototype = { call$0() { var t1 = this.$this; t1._isEditing = false; if (this.task.get$isNew()) t1._widget.onCancelPressed$0(); }, $signature: 1 }; A._KanbanTaskCardState_build_closure0.prototype = { call$0() { var t2, completer = A.snackBarCompleter(this.context, this.localization.get$updatedTask(), false, type$.legacy_TaskEntity), t1 = this.$this; completer.future.then$1$1(0, new A._KanbanTaskCardState_build__closure4(t1), type$.Null); t2 = t1._widget; t2.toString; t2.onSavePressed$2(completer, J.trim$0$s(t1._kanban_card$_description)); }, $signature: 1 }; A._KanbanTaskCardState_build__closure4.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._KanbanTaskCardState_build___closure(t1)); }, $signature: 183 }; A._KanbanTaskCardState_build___closure.prototype = { call$0() { this.$this._isEditing = false; }, $signature: 1 }; A._KanbanTaskCardState_build_closure10.prototype = { call$1($event) { var t1; if (this.state.prefState.appLayout === B.AppLayout_desktop) { t1 = this.$this; t1.setState$1(new A._KanbanTaskCardState_build__closure(t1)); } }, $signature: 643 }; A._KanbanTaskCardState_build__closure.prototype = { call$0() { return this.$this._kanban_card$_isHovered = true; }, $signature: 21 }; A._KanbanTaskCardState_build_closure9.prototype = { call$1($event) { var t1 = this.$this; return t1.setState$1(new A._KanbanTaskCardState_build__closure0(t1)); }, $signature: 237 }; A._KanbanTaskCardState_build__closure0.prototype = { call$0() { return this.$this._kanban_card$_isHovered = false; }, $signature: 21 }; A._KanbanTaskCardState_build_closure2.prototype = { call$0() { var t1 = this.state.uiState, t2 = this.task; if (t1.taskUIState.selectedId === t2.id && !t1.get$isEditing()) A.viewEntityById(false, "", B.EntityType_task, null, false, false); else A.viewEntity(false, t2, null, false); }, $signature: 1 }; A._KanbanTaskCardState_build_closure3.prototype = { call$0() { A.editEntity(null, this.task, false, null); }, $signature: 1 }; A._KanbanTaskCardState_build_closure4.prototype = { call$0() { var t1 = this.task, t2 = t1.get$isRunning() ? B.EntityAction_stop : B.EntityAction_start; A.handleEntitiesActions(A._setArrayType([t1], type$.JSArray_legacy_BaseEntity), t2, false); }, $signature: 1 }; A._KanbanTaskCardState_build_closure5.prototype = { call$0() { var t1 = A.formatDuration(this.task.calculateDuration$0(), true), t2 = this.client; t1 = J.$add$ansx(t1, !t2.get$isNew() ? " \u2022 " + t2.displayName : ""); t2 = this.project; return t1 + (!t2.get$isNew() ? " \u2022 " + t2.name : ""); }, $signature: 127 }; A._KanbanTaskCardState_build_closure6.prototype = { call$1(context) { var t1 = this.localization, t2 = type$.MappedListIterable_of_legacy_String_and_legacy_PopupMenuItem_legacy_String; return A.List_List$of(new A.MappedListIterable(A._setArrayType([t1.get$view(t1), t1.get$edit(), this.startLabel], type$.JSArray_legacy_String), new A._KanbanTaskCardState_build__closure2(t1), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 732 }; A._KanbanTaskCardState_build__closure2.prototype = { call$1(value) { var _null = null; return A.PopupMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 729 }; A._KanbanTaskCardState_build_closure7.prototype = { call$1(value) { var t1, t2, _this = this; if (value === _this.startLabel) { t1 = _this.task; t2 = t1.get$isRunning() ? B.EntityAction_stop : B.EntityAction_start; A.handleEntitiesActions(A._setArrayType([t1], type$.JSArray_legacy_BaseEntity), t2, false); } else { t1 = _this.localization; if (value === t1.get$view(t1)) A.viewEntity(false, _this.task, null, false); else if (value === t1.get$edit()) A.editEntity(null, _this.task, false, null); } }, $signature: 11 }; A._KanbanTaskCardState_build_closure8.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._KanbanTaskCardState_build__closure1(t1)); }, $signature: 1 }; A._KanbanTaskCardState_build__closure1.prototype = { call$0() { this.$this._isEditing = true; }, $signature: 1 }; A.KanbanStatusCard.prototype = { createState$0() { return new A._KanbanStatusCardState(B._StateLifecycle_0); }, onSavePressed$2(arg0, arg1) { return this.onSavePressed.call$2(arg0, arg1); } }; A._KanbanStatusCardState.prototype = { initState$0() { this.super$State$initState(); this._kanban_status$_name = this._widget.status.name; }, _kanban_status$_onSavePressed$0() { var t2, completer, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; completer = A.snackBarCompleter(t2, t1.get$updatedTaskStatus(), false, type$.legacy_TaskStatusEntity); completer.future.then$1$1(0, new A._KanbanStatusCardState__onSavePressed_closure(_this), type$.Null); t1 = _this._widget; t1.toString; t1.onSavePressed$2(completer, J.trim$0$s(_this._kanban_status$_name)); }, build$1(_, context) { var t3, t4, _this = this, _null = null, _s10_ = "unassigned", t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, $status = t2.status; if (_this._kanban_status$_isEditing) { t2 = A.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _this._kanban_status$_name, _null, false, false, _null, B.TextInputType_0_null_null, _null, 1, 1, false, new A._KanbanStatusCardState_build_closure(_this), _null, new A._KanbanStatusCardState_build_closure0(_this), true, _null, _null, B.TextAlign_4, _null); t3 = t1.get$cancel(t1); t1 = A.Text$(t1.get$save(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; return new A.Padding(B.EdgeInsets_8_8_8_8, A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 8, _null, _null), A.Row$(A._setArrayType([new A.AppTextButton(t3, new A._KanbanStatusCardState_build_closure1(_this), false, _null, _null), new A.Padding(B.EdgeInsets_8_0_0_0, A.ElevatedButton$(t1, _this._widget.isSaving ? _null : _this.get$_kanban_status$_onSavePressed(), _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_1, B.MainAxisSize_1, _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null); } t2 = t2.isCorrectOrder ? 1 : 0.7; if ($status.get$isNew()) { t1.toString; t3 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t3.$index(0, t1.localeCode), _s10_); if (t1 == null) t1 = J.$index$asx(t3.$index(0, "en"), _s10_); } else t1 = $status.name; t2 = A.Opacity$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t2); t1 = $status.get$isNew() ? _null : new A._KanbanStatusCardState_build_closure2(_this); return A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_8_8_8, t2, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null); } }; A._KanbanStatusCardState__onSavePressed_closure.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._KanbanStatusCardState__onSavePressed__closure(t1)); }, $signature: 272 }; A._KanbanStatusCardState__onSavePressed__closure.prototype = { call$0() { this.$this._kanban_status$_isEditing = false; }, $signature: 1 }; A._KanbanStatusCardState_build_closure.prototype = { call$1(value) { return this.$this._kanban_status$_name = value; }, $signature: 15 }; A._KanbanStatusCardState_build_closure0.prototype = { call$1(context) { return this.$this._kanban_status$_onSavePressed$0(); }, $signature: 30 }; A._KanbanStatusCardState_build_closure1.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._KanbanStatusCardState_build__closure0(t1)); }, $signature: 1 }; A._KanbanStatusCardState_build__closure0.prototype = { call$0() { this.$this._kanban_status$_isEditing = false; }, $signature: 1 }; A._KanbanStatusCardState_build_closure2.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._KanbanStatusCardState_build__closure(t1)); }, $signature: 1 }; A._KanbanStatusCardState_build__closure.prototype = { call$0() { this.$this._kanban_status$_isEditing = true; }, $signature: 1 }; A.KanbanView.prototype = { createState$0() { return new A.KanbanViewState(new A.BoardViewController(), B._StateLifecycle_0); } }; A.KanbanViewState.prototype = { initState$0() { this.super$State$initState(); this._initBoard$0(); }, _initBoard$0() { var _this = this, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = $.$get$memoizedSortedActiveTaskStatusIds(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t3 = t2._list[t3].taskStatusState; _this._statuses = t1.call$2(t3.list, t3.map); _this._kanban_view$_tasks = A.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_List_legacy_String); J.forEach$1$ax(viewModel.taskList, new A.KanbanViewState__initBoard_closure(_this, state)); _this._kanban_view$_tasks.forEach$1(0, new A.KanbanViewState__initBoard_closure0(_this, state)); }, _onBoardChanged$0() { var t2, completer, _this = this, t1 = _this._framework$_element; t1.toString; t1 = A.Localizations_of(t1, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; completer = A.snackBarCompleter(t2, t1.get$updatedTaskStatus(), false, type$.Null); completer.future.catchError$1(new A.KanbanViewState__onBoardChanged_closure(_this)); _this._widget.viewModel.onBoardChanged.call$3(completer, _this._statuses, _this._kanban_view$_tasks); }, build$1(_, context) { var _this = this, _null = null, state = _this._widget.viewModel.state, color = state.prefState.enableDarkMode ? A.Theme_of(context).cardColor : B.Color_4292927712, t1 = J.where$1$ax(_this._statuses, new A.KanbanViewState_build_closure(_this)), filteredStatusIds = A.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); t1 = A._arrayInstanceType(filteredStatusIds)._eval$1("MappedListIterable<1,BoardList*>"); t1 = A._setArrayType([new A.BoardView(A.List_List$of(new A.MappedListIterable(filteredStatusIds, new A.KanbanViewState_build_closure0(_this, state, filteredStatusIds, color, context), t1), true, t1._eval$1("ListIterable.E")), _this._boardViewController, 0, _null)], type$.JSArray_legacy_Widget); if (state.isLoading || state.isSaving) t1.push(A.LinearProgressIndicator$()); return new A.Padding(B.EdgeInsets_0_8_0_8, new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t1, _null), _null); } }; A.KanbanViewState__initBoard_closure.prototype = { call$1(taskId) { var task, $status, statusId, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; task = t1[t2].taskState.map._map$_map.$index(0, taskId); $status = t1[t2].taskStatusState.$get$1(0, task.statusId); statusId = $status.get$isNew() ? "" : $status.id; t1 = this.$this; if (!t1._kanban_view$_tasks.containsKey$1(0, statusId)) t1._kanban_view$_tasks.$indexSet(0, statusId, A._setArrayType([], type$.JSArray_legacy_String)); J.add$1$ax(t1._kanban_view$_tasks.$index(0, statusId), task.id); }, $signature: 11 }; A.KanbanViewState__initBoard_closure0.prototype = { call$2(key, value) { J.sort$1$ax(this.$this._kanban_view$_tasks.$index(0, key), new A.KanbanViewState__initBoard__closure(this.state)); }, $signature: 485 }; A.KanbanViewState__initBoard__closure.prototype = { call$2(taskIdA, taskIdB) { var taskA, taskB, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; taskA = t1[t2].taskState.$get$1(0, taskIdA); taskB = t1[t2].taskState.$get$1(0, taskIdB); t1 = taskA.statusOrder; t2 = taskB.statusOrder; if (t1 == t2) return B.JSInt_methods.compareTo$1(taskB.updatedAt, taskA.updatedAt); else { if (t1 == null) t1 = 99999; return B.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); } }, $signature: 19 }; A.KanbanViewState__onBoardChanged_closure.prototype = { call$1(error) { this.$this._initBoard$0(); }, $signature: 3 }; A.KanbanViewState_build_closure.prototype = { call$1(statusId) { return statusId.length !== 0 || this.$this._kanban_view$_tasks.containsKey$1(0, statusId); }, $signature: 16 }; A.KanbanViewState_build_closure0.prototype = { call$1(statusId) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex, $status = t1.userCompanyStates._list[t2].taskStatusState.$get$1(0, statusId), hasCorectOrder = statusId.length === 0 || $status.statusOrder === B.JSArray_methods.indexOf$1(_this.filteredStatusIds, $status.id); t2 = $status.get$isNew(); t3 = _this.color; t4 = _this.$this; t5 = t1.isSaving; t6 = A._setArrayType([A.Expanded$(new A.KanbanStatusCard($status, new A.KanbanViewState_build__closure(t4, statusId), hasCorectOrder, t5, _null), 1)], type$.JSArray_legacy_Widget); t7 = t4._newTask; t8 = t7 == null ? _null : t7.statusId; t9 = $status.id; t5 = t8 === t9 ? A.KanbanTaskCard$(true, t4.isDragging, t5, false, new A.KanbanViewState_build__closure0(t4), new A.KanbanViewState_build__closure1(t4, $status), t7) : new A.Padding(B.EdgeInsets_8_2_0_4, A.TextButton$(false, A.Text$(A.Localizations_of(_this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$newTask(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.KanbanViewState_build__closure2(t4, $status), _null), _null); t9 = t4._kanban_view$_tasks.$index(0, t9); t7 = t9 == null ? A._setArrayType([], type$.JSArray_legacy_String) : t9; return A.BoardList$(t3, _null, !t2, new A.Align(B.Alignment_m1_0, _null, _null, t5, _null), t6, t3, _null, J.map$1$1$ax(t7, new A.KanbanViewState_build__closure3(t4), type$.legacy_TaskEntity).map$1$1(0, new A.KanbanViewState_build__closure4(t4, t1, $status, statusId), type$.legacy_BoardItem).toList$0(0), new A.KanbanViewState_build__closure5(t4), _null, _null); }, $signature: 2731 }; A.KanbanViewState_build__closure5.prototype = { call$2(endIndex, startIndex) { var t1; if (endIndex == startIndex) return; t1 = this.$this; t1.setState$1(new A.KanbanViewState_build___closure(t1, startIndex, endIndex)); t1._onBoardChanged$0(); }, $signature: 147 }; A.KanbanViewState_build___closure.prototype = { call$0() { var t3, t1 = this.$this, t2 = this.startIndex, $status = J.$index$asx(t1._statuses, t2); J.removeAt$1$ax(t1._statuses, t2); t2 = this.endIndex; t3 = A.List_List$of(J.sublist$2$ax(t1._statuses, 0, t2), true, type$.legacy_String); t3.push($status); B.JSArray_methods.addAll$1(t3, J.sublist$1$ax(t1._statuses, t2)); t1._statuses = t3; }, $signature: 1 }; A.KanbanViewState_build__closure.prototype = { call$2(completer, $name) { var t1 = this.$this, t2 = this.statusId, statusOrder = J.indexOf$1$asx(t1._statuses, t2); t1._widget.viewModel.onSaveStatusPressed.call$4(completer, t2, $name, statusOrder); }, $signature: 2732 }; A.KanbanViewState_build__closure1.prototype = { call$2(completer, description) { var t1 = this.$this, t2 = this.status.id, t3 = t1._kanban_view$_tasks.$index(0, t2), statusOrder = t3 == null ? null : J.get$length$asx(t3); if (statusOrder == null) statusOrder = 0; t1._widget.viewModel.onSaveTaskPressed.call$5(completer, t1._newTask.id, t2, description, statusOrder); }, $signature: 529 }; A.KanbanViewState_build__closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.KanbanViewState_build___closure5(t1)); }, $signature: 1 }; A.KanbanViewState_build___closure5.prototype = { call$0() { this.$this._newTask = null; }, $signature: 1 }; A.KanbanViewState_build__closure2.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.KanbanViewState_build___closure4(t1, this.status)); }, $signature: 1 }; A.KanbanViewState_build___closure4.prototype = { call$0() { var _null = null, t1 = this.$this; t1._newTask = A.TaskEntity_TaskEntity(_null, _null, _null, t1._widget.viewModel.state, _null).rebuild$1(new A.KanbanViewState_build____closure3(this.status)); }, $signature: 1 }; A.KanbanViewState_build____closure3.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_statusId = this.status.id; return b; }, $signature: 50 }; A.KanbanViewState_build__closure3.prototype = { call$1(taskId) { var t1 = this.$this._widget.viewModel.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return t2._list[t1].taskState.$get$1(0, taskId); }, $signature: 188 }; A.KanbanViewState_build__closure4.prototype = { call$1(task) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this, t2 = t1._widget.viewModel, t3 = task.id, isVisible = J.contains$1$asx(t2.filteredTaskList, t3) || task.get$isNew(); t2 = task.get$isNew(); if (!isVisible) t3 = new A.SizedBox(_null, _null, _null, _null); else { t4 = _this.state; t5 = t1.isDragging; t6 = t4.uiState; t6 = t6.get$isEditing() ? t6.taskUIState.editing.id : t6.taskUIState.selectedId; t7 = _this.status; t8 = task.statusOrder === J.indexOf$1$asx(t1._kanban_view$_tasks.$index(0, t7.id), t3) && task.statusId === _this.statusId; t7 = A.KanbanTaskCard$(t8, t5, t4.isSaving, t6 === t3, new A.KanbanViewState_build___closure0(t1, task), new A.KanbanViewState_build___closure1(t1, t7, task), task); t3 = t7; } return A.BoardItem$(_null, !t2, _null, t3, _null, new A.KanbanViewState_build___closure2(t1, _this.status), new A.KanbanViewState_build___closure3(t1), _null); }, $signature: 2734 }; A.KanbanViewState_build___closure1.prototype = { call$2(completer, description) { var t1 = this.$this, t2 = this.status.id, t3 = this.task.id, statusOrder = J.indexOf$1$asx(t1._kanban_view$_tasks.$index(0, t2), t3); t1._widget.viewModel.onSaveTaskPressed.call$5(completer, t3, t2, description, statusOrder); }, $signature: 529 }; A.KanbanViewState_build___closure0.prototype = { call$0() { if (this.task.get$isNew()) { var t1 = this.$this; t1.setState$1(new A.KanbanViewState_build____closure2(t1)); } }, $signature: 1 }; A.KanbanViewState_build____closure2.prototype = { call$0() { this.$this._newTask = null; }, $signature: 1 }; A.KanbanViewState_build___closure3.prototype = { call$3(listIndex, itemIndex, state) { var t1 = this.$this; t1.setState$1(new A.KanbanViewState_build____closure(t1)); }, $signature: 2735 }; A.KanbanViewState_build____closure.prototype = { call$0() { return this.$this.isDragging = true; }, $signature: 21 }; A.KanbanViewState_build___closure2.prototype = { call$5(listIndex, itemIndex, oldListIndex, oldItemIndex, state) { var oldStatusId, newStatusId, t1 = this.$this; t1.setState$1(new A.KanbanViewState_build____closure0(t1)); if (listIndex == oldListIndex && itemIndex == oldItemIndex) return; oldStatusId = J.$index$asx(t1._statuses, oldListIndex); newStatusId = J.$index$asx(t1._statuses, listIndex); t1.setState$1(new A.KanbanViewState_build____closure1(t1, oldStatusId, J.$index$asx(t1._kanban_view$_tasks.$index(0, this.status.id), oldItemIndex), newStatusId, itemIndex)); t1._onBoardChanged$0(); }, $signature: 2736 }; A.KanbanViewState_build____closure0.prototype = { call$0() { return this.$this.isDragging = false; }, $signature: 21 }; A.KanbanViewState_build____closure1.prototype = { call$0() { var t3, t4, t5, _this = this, t1 = _this.$this, t2 = _this.oldStatusId; if (t1._kanban_view$_tasks.containsKey$1(0, t2) && J.contains$1$asx(t1._kanban_view$_tasks.$index(0, t2), _this.taskId)) J.remove$1$ax(t1._kanban_view$_tasks.$index(0, t2), _this.taskId); t2 = _this.newStatusId; if (!t1._kanban_view$_tasks.containsKey$1(0, t2)) t1._kanban_view$_tasks.$indexSet(0, t2, A._setArrayType([], type$.JSArray_legacy_String)); t3 = t1._kanban_view$_tasks; t4 = _this.itemIndex; t5 = A.List_List$of(J.sublist$2$ax(t3.$index(0, t2), 0, t4), true, type$.legacy_String); t5.push(_this.taskId); B.JSArray_methods.addAll$1(t5, J.sublist$1$ax(t1._kanban_view$_tasks.$index(0, t2), t4)); t3.$indexSet(0, t2, t5); }, $signature: 1 }; A.KanbanViewBuilder.prototype = { createState$0() { return new A._KanbanViewBuilderState(B._StateLifecycle_0); } }; A._KanbanViewBuilderState.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A._KanbanViewBuilderState_build_closure(), A.kanban_view_vm_KanbanVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_KanbanVM); } }; A._KanbanViewBuilderState_build_closure.prototype = { call$2(context, viewModel) { var state = viewModel.state, t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = t1._list[t3]; return new A.KanbanView(viewModel, new A.ValueKey("__" + t3.userCompany.company.id + "_" + t3.lastUpdated + "_" + A.S(J.get$length$asx(viewModel.filteredTaskList)) + "_" + A.S(t2.taskUIState.kanbanLastUpdated) + "__", type$.ValueKey_legacy_String)); }, $signature: 2737 }; A.KanbanVM.prototype = {}; A.KanbanVM_fromStore_closure.prototype = { call$3(completer, statusIds, taskIds) { this.store.get$_dispatchers()[0].call$1(new A.SortTasksRequest(completer, statusIds, taskIds)); }, $signature: 2738 }; A.KanbanVM_fromStore_closure1.prototype = { call$4(completer, statusId, $name, statusOrder) { var t1 = {}, t2 = this.state, t3 = t2.uiState.selectedCompanyIndex, $status = t2.userCompanyStates._list[t3].taskStatusState.$get$1(0, statusId); t1.status = $status; $status = $status.rebuild$1(new A.KanbanVM_fromStore__closure(t1, $name, statusOrder)); t1.status = $status; this.store.get$_dispatchers()[0].call$1(new A.SaveTaskStatusRequest(completer, $status)); }, $signature: 2739 }; A.KanbanVM_fromStore__closure.prototype = { call$1(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_name = this.name; t1 = this._box_0; t1 = t1.status.get$isNew() ? this.statusOrder : t1.status.statusOrder; b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, $signature: 168 }; A.KanbanVM_fromStore_closure0.prototype = { call$5(completer, taskId, statusId, description, statusOrder) { var task, t5, project, _null = null, t1 = {}, t2 = this.state, t3 = t2.uiState, t4 = t3.selectedCompanyIndex; t2 = t2.userCompanyStates._list; task = t2[t4].taskState.$get$1(0, taskId); t1.task = task; task = task.rebuild$1(new A.KanbanVM_fromStore__closure0(t1, description, statusOrder, statusId)); t1.task = task; if (task.get$isNew()) { t5 = t3.filterStack._list; if ((t5.length === 0 ? _null : B.JSArray_methods.get$last(t5).get$entityType()) === B.EntityType_client) t1.task = t1.task.rebuild$1(new A.KanbanVM_fromStore__closure1(t3)); else if ((t5.length === 0 ? _null : B.JSArray_methods.get$last(t5).get$entityType()) === B.EntityType_project) { t2 = t2[t4].projectState; if (t5.length === 0) t4 = _null; else { t4 = B.JSArray_methods.get$last(t5); t4 = t4.get$id(t4); } project = t2.$get$1(0, t4); t1.task = t1.task.rebuild$1(new A.KanbanVM_fromStore__closure2(t3, project)); } else if ((t5.length === 0 ? _null : B.JSArray_methods.get$last(t5).get$entityType()) === B.EntityType_user) t1.task = t1.task.rebuild$1(new A.KanbanVM_fromStore__closure3(t3)); } t1 = t1.task; this.store.get$_dispatchers()[0].call$1(new A.SaveTaskRequest(completer, t1, false, _null)); }, $signature: 2740 }; A.KanbanVM_fromStore__closure0.prototype = { call$1(b) { var t1, _this = this; b.get$_task_model$_$this()._description = _this.description; t1 = _this._box_1; t1 = t1.task.get$isNew() ? _this.statusOrder : t1.task.statusOrder; b.get$_task_model$_$this()._statusOrder = t1; b.get$_task_model$_$this()._task_model$_statusId = _this.statusId; return b; }, $signature: 50 }; A.KanbanVM_fromStore__closure1.prototype = { call$1(b) { var t1 = this.uiState.filterStack._list; if (t1.length === 0) t1 = null; else { t1 = B.JSArray_methods.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 50 }; A.KanbanVM_fromStore__closure2.prototype = { call$1(b) { var t1 = this.uiState.filterStack._list; if (t1.length === 0) t1 = null; else { t1 = B.JSArray_methods.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_projectId = t1; t1 = this.project.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 50 }; A.KanbanVM_fromStore__closure3.prototype = { call$1(b) { var t1 = this.uiState.filterStack._list; if (t1.length === 0) t1 = null; else { t1 = B.JSArray_methods.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_assignedUserId = t1; return b; }, $signature: 50 }; A.TaskListItem.prototype = { build$1(_, context) { var t4, client, t5, t6, filterMatch, listUIState, isInMultiselect, showCheckbox, t7, isChecked, textStyle, textColor, subtitle, startStopButton, _this = this, _null = null, t1 = {}, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, taskUIState = uiState.taskUIState, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = _this.task; client = t2[t3].clientState.$get$1(0, t4.clientId); t5 = _this.filter; if (t5 != null && t5.length !== 0) { t6 = t4.matchesFilterValue$1(t5); filterMatch = t6 == null ? client.matchesFilterValue$1(t5) : t6; } else filterMatch = _null; listUIState = taskUIState.listUIState; t5 = listUIState.selectedIds; isInMultiselect = t5 != null; showCheckbox = _this.onCheckboxChanged != null || isInMultiselect; t6 = _this.isDismissible; if (t6) if (isInMultiselect) { t7 = t4.id; t5 = B.JSArray_methods.contains$1(t5._list, t7); isChecked = t5; } else isChecked = false; else isChecked = _this.isChecked; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t5 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); subtitle = client.displayName; t1.subtitle = subtitle; t7 = t4.projectId; if (t7.length !== 0) t1.subtitle = subtitle + (" \u2022 " + t2[t3].projectState.$get$1(0, t7).name); if (!t6) startStopButton = new A.SizedBox(_null, _null, _null, _null); else { t2 = t4.invoiceId.length !== 0; if (t2) t3 = new A.SizedBox(_null, _null, _null, _null); else t3 = A.Icon$(A.getEntityActionIcon(t4.get$isRunning() ? B.EntityAction_stop : B.EntityAction_start), _null, _null); startStopButton = A.IconButton$(B.Alignment_0_0, _null, _null, true, t3, _null, t2 ? _null : new A.TaskListItem_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, B.VisualDensity_m2_m2); } if (A.getLayout(context) === B.AppLayout_desktop) { t2 = t4.id; t2 = t2 === (uiState.get$isEditing() ? taskUIState.editing.id : taskUIState.selectedId); } else t2 = false; t3 = A._lateReadCheck(store.__Store__state, "_state"); t7 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t7._list[t3].userCompany, t4, new A.LayoutBuilder(new A.TaskListItem_build_closure0(t1, _this, showCheckbox, listUIState, isChecked, state, textStyle, filterMatch, textColor, new A.LiveText(_null, new A.TaskListItem_build_closure1(_this, context), textStyle, _null), startStopButton, t5), _null), t2, _this.showCheckbox, t6, _null); }, get$task() { return this.task; } }; A.TaskListItem_build_closure1.prototype = { call$0() { return A.formatNumber(B.JSInt_methods._tdivFast$1(this.$this.task.calculateDuration$0()._duration, 1000000), this.context, null, null, B.FormatNumberType_6, true, null, false); }, $signature: 127 }; A.TaskListItem_build_closure.prototype = { call$0() { var t1 = this.$this.task, t2 = t1.get$isRunning() ? B.EntityAction_stop : B.EntityAction_start; A.handleEntitiesActions(A._setArrayType([t1], type$.JSArray_legacy_BaseEntity), t2, false); return null; }, $signature: 0 }; A.TaskListItem_build_closure0.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.TaskListItem_build__closure(t1), _null, _null, false, _this.isChecked), _null), _null); else { t2 = t1.task; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.TaskListItem_build__closure0(t1)); t2 = t4; } t3 = t1.task; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t7 = t3.description; t4 = A.Text$(t7 + (t3.documents._list.length !== 0 ? " \ud83d\udcce" : ""), _null, 1, B.TextOverflow_2, _null, _null, t4, _null, _null, _null); t7 = _this._box_0.subtitle; t8 = _this.textColor; t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_16_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(A._setArrayType([t4, A.Text$(t7, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t8.get$value(t8) >>> 16 & 255, t8.get$value(t8) >>> 8 & 255, t8.get$value(t8) & 255)), _null, _null, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(8, _null, _null, _null), _this.duration, new A.SizedBox(24, _null, _null, _null), A.EntityStatusChip$(t3, false, 105), new A.SizedBox(8, _null, _null, _null), _this.startStopButton], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.TaskListItem_build__closure1(t1), new A.TaskListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.TaskListItem_build__closure3(t1), _null, _null, false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.task; t5 = t4.description; if (t5.length === 0) t5 = t4.number; t6 = t4.documents._list.length !== 0 ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, 1, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), _this.duration], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t5 = A.Expanded$(A.Column$(A._setArrayType([A.Text$(t5 == null ? _this._box_0.subtitle : t5, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1); if (t4.get$isRunning()) t6 = _this.localization.get$running(); else { t6 = t4.invoiceId; if (t6.length !== 0) t6 = _this.localization.get$invoiced(); else { t6 = t4.statusId; if (t6.length !== 0) { t8 = _this.state; t9 = t8.uiState.selectedCompanyIndex; t6 = t8.userCompanyStates._list[t9].taskStatusState.$get$1(0, t6).name; } else t6 = _this.localization.get$logged(); } } t8 = t4.invoiceId; t9 = _this.state; if (t8.length !== 0) t4 = t9.prefState.get$colorThemeModel().colorSuccess; else { t8 = t9.uiState.selectedCompanyIndex; t4 = A.convertHexStringToColor(t9.userCompanyStates._list[t8].taskStatusState.$get$1(0, t4.statusId).color); } t3 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.TaskListItem_build__closure4(t1), new A.TaskListItem_build__closure5(t1), false, _null, _null, A.Row$(A._setArrayType([t5, A.Text$(t6, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, t3, _this.startStopButton, _null); t1 = t3; } return t1; }, $signature: 109 }; A.TaskListItem_build__closure2.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.task, false, false); }, $signature: 0 }; A.TaskListItem_build__closure1.prototype = { call$0() { return A.selectEntity(this.$this.task, false, true); }, $signature: 0 }; A.TaskListItem_build__closure.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.TaskListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.task], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.TaskListItem_build__closure5.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : A.selectEntity(t1.task, false, false); }, $signature: 0 }; A.TaskListItem_build__closure4.prototype = { call$0() { return A.selectEntity(this.$this.task, false, true); }, $signature: 0 }; A.TaskListItem_build__closure3.prototype = { call$1(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 10 }; A.TaskListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskListBuilder_build_closure(), A.task_list_vm_TaskListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskListVM); } }; A.TaskListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.taskList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_task, new A.TaskListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.TaskPresenter(), t2, t4); }, $signature: 2741 }; A.TaskListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, taskId = J.$index$asx(t1.taskList, index); return A.TaskListItem$(t1.filter, false, true, null, null, true, t1.taskMap._map$_map.$index(0, taskId)); }, $signature: 322 }; A.TaskListVM.prototype = { get$user(receiver) { return this.user; } }; A.TaskListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.TaskListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortTasks(field)); }, $signature: 5 }; A.TaskListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.TaskListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearTaskMultiselect()); }, $signature: 9 }; A.TaskPresenter.prototype = { getField$2$context$field(context, field) { var t2, t3, t4, client, t5, taskTimes, taskTime, notes, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), task = type$.legacy_TaskEntity._as(_this.entity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); switch (field) { case "status": return A.EntityStatusChip$(task, true, 105); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].clientState.$get$1(0, task.clientId), task, _null); case "rate": return A.Text$(A.formatNumber(task.rate, context, task.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "calculated_rate": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = t1[t2].clientState; t4 = task.clientId; client = t3.$get$1(0, t4); t3 = t1[t2]; t5 = t3.userCompany.company; t3 = t3.projectState.$get$1(0, task.projectId); return A.Text$(A.formatNumber(A.taskRateSelector(client, t5, t1[t2].groupState.$get$1(0, client.groupId), t3, task), context, t4, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "project": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return new A.LinkTextRelatedEntity(t1._list[t2].projectState.$get$1(0, task.projectId), task, _null); case "description": return new A.TableTooltip(task.description, _null); case "duration": return A.Text$(A.formatDuration(task.calculateDuration$0(), true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return A.Text$(task.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = t1._list[t2].invoiceState.map; t1 = task.invoiceId; t1 = t2._map$_map.$index(0, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": taskTimes = task.getTaskTimes$0(); taskTime = taskTimes.length === 0 ? _null : B.JSArray_methods.get$first(taskTimes); return A.Text$(taskTime == null ? "" : A.formatDate(taskTime.startDate.toIso8601String$0(), context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "time_log": notes = A._setArrayType([], type$.JSArray_legacy_String); t1 = task.getTaskTimes$0(); new A.WhereIterable(t1, new A.TaskPresenter_getField_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).forEach$1(0, new A.TaskPresenter_getField_closure0(context, notes)); return A.Text$(B.JSArray_methods.join$1(notes, "\n"), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_running": return A.Text$(task.get$isRunning() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_invoiced": t2 = task.invoiceId; return A.Text$(t2.length !== 0 ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, task.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, task.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, task.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, task.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + task.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.TaskPresenter_getField_closure.prototype = { call$1(time) { return time.startDate != null && time.endDate != null; }, $signature: 204 }; A.TaskPresenter_getField_closure0.prototype = { call$1(time) { var t1 = this.context; this.notes.push(A.formatDate(time.startDate.toIso8601String$0(), t1, true, true, true) + " - " + A.formatDate(time.endDate.toIso8601String$0(), t1, false, true, true)); }, $signature: 197 }; A.TaskScreen.prototype = { build$1(_, context) { var company, userCompany, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, _s6_ = "_state", store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, _s6_), t1 = A._lateReadCheck(store.__Store__state, _s6_), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = t2._list[t1].userCompany.company; t1 = A._lateReadCheck(store.__Store__state, _s6_); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = t2._list[t1].userCompany; t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = A._setArrayType([A.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new A.TaskScreen_build_closure(t1)), A.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new A.TaskScreen_build_closure0(t1))], type$.JSArray_legacy_TaskStatusEntity); t3 = state.prefState; t4 = t3.showKanban; if (!t4) t2.push(A.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new A.TaskScreen_build_closure1(t1))); t5 = state.uiState.taskUIState.listUIState; t6 = t5.filterClearedAt; t7 = this.viewModel.taskList; t5 = t5.filter; t8 = A._setArrayType([A.Expanded$(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(t4 ? B.IconData_59061_MaterialIcons_null_true : B._MdiIconData_7T13, _null, _null), _null, new A.TaskScreen_build_closure2(context, state, store), B.EdgeInsets_8_8_8_8, _null, _null, _null), 1)], type$.JSArray_legacy_Widget); t9 = t4 ? new A.KanbanViewBuilder(_null) : new A.TaskListBuilder(_null); t10 = A._setArrayType([], type$.JSArray_legacy_IconButton); if (t4) t10.push(A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(A.getEntityIcon(B.EntityType_settings), _null, _null), _null, new A.TaskScreen_build_closure3(store, state), B.EdgeInsets_8_8_8_8, _null, _null, _null)); t11 = type$.JSArray_legacy_String; t12 = A.List_List$of(A._setArrayType(["status", "number", "client", "project", "description", "duration", "entity_state"], t11), true, type$.legacy_String); B.JSArray_methods.addAll$1(t12, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t11)); t12.push("number"); t12.push("is_invoiced"); t12.push("rate"); t12.push("calculated_rate"); t12.push("invoice"); t12.push("client"); t12.push("project"); t12.push("time_log"); t12.push("is_running"); t12.push("custom1"); t12.push("custom2"); t12.push("custom3"); t12.push("custom4"); t12.push("documents"); t12.push("date"); t13 = A._setArrayType(["status", "number", "client", "project", "description", "duration", "entity_state"], t11); t12 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("task1", true), company.getCustomFieldValues$2$excludeBlank("task2", true), company.getCustomFieldValues$2$excludeBlank("task3", true), company.getCustomFieldValues$2$excludeBlank("task4", true), t13, B.EntityType_task, t4, t10, new A.TaskScreen_build_closure4(store), new A.TaskScreen_build_closure5(store), new A.TaskScreen_build_closure6(store), new A.TaskScreen_build_closure7(store), new A.TaskScreen_build_closure8(store), new A.TaskScreen_build_closure9(store), new A.TaskScreen_build_closure10(store), new A.TaskScreen_build_closure11(store), A._setArrayType(["number", "duration", "updated_at"], t11), t2, t12); t1 = (t3.appLayout === B.AppLayout_mobile || t3.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_task) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "task_fab", false, new A.TaskScreen_build_closure12(context), t1.get$newTask()) : _null; return A.ListScaffold$(_null, t8, new A.ListFilter(B.EntityType_task, t5, new A.TaskScreen_build_closure13(store), t7, t2, new A.TaskScreen_build_closure14(store), new A.TaskScreen_build_closure15(store), new A.ValueKey("__filter_" + t6 + "__", type$.ValueKey_legacy_String)), t9, t12, B.EntityType_task, t1, 0, _null, new A.TaskScreen_build_closure16(store), new A.TaskScreen_build_closure17(store)); } }; A.TaskScreen_build_closure.prototype = { call$1(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-1"; t1 = this.localization.get$logged(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 168 }; A.TaskScreen_build_closure0.prototype = { call$1(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-2"; t1 = this.localization.get$running(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 168 }; A.TaskScreen_build_closure1.prototype = { call$1(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-3"; t1 = this.localization.get$invoiced(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 168 }; A.TaskScreen_build_closure17.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartTaskMultiselect()); }, $signature: 9 }; A.TaskScreen_build_closure13.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTasks(value)); }, $signature: 11 }; A.TaskScreen_build_closure15.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByState(state)); }, $signature: 27 }; A.TaskScreen_build_closure14.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByStatus($status)); }, $signature: 115 }; A.TaskScreen_build_closure16.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taskUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaskMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaskMultiselect()); }, $signature: 1 }; A.TaskScreen_build_closure2.prototype = { call$0() { var t1, _this = this, _null = null; if (A.getLayout(_this.context) === B.AppLayout_desktop && !_this.state.prefState.showKanban) _this.store.get$_dispatchers()[0].call$1(new A.ViewTask("")); t1 = A.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, !_this.state.prefState.showKanban, _null, _null, _null, _null); _this.store.get$_dispatchers()[0].call$1(t1); }, $signature: 1 }; A.TaskScreen_build_closure3.prototype = { call$0() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = t1.userCompanyStates._list[t2].userCompany.company; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(t2, _null, _null, _null, false, "task_status", false, _null)); }, $signature: 1 }; A.TaskScreen_build_closure9.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortTasks(value)); }, $signature: 5 }; A.TaskScreen_build_closure11.prototype = { call$2($status, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByStatus($status)); }, $signature: 115 }; A.TaskScreen_build_closure5.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByCustom1(value)); }, $signature: 5 }; A.TaskScreen_build_closure6.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByCustom2(value)); }, $signature: 5 }; A.TaskScreen_build_closure7.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByCustom3(value)); }, $signature: 5 }; A.TaskScreen_build_closure8.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByCustom4(value)); }, $signature: 5 }; A.TaskScreen_build_closure10.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTasksByState(state)); }, $signature: 27 }; A.TaskScreen_build_closure4.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taskUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaskMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaskMultiselect()); }, $signature: 1 }; A.TaskScreen_build_closure12.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_task); }, $signature: 1 }; A.TaskScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskScreenBuilder_build_closure(), A.task_screen_vm_TaskScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskScreenVM); } }; A.TaskScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.TaskScreen(vm, null); }, $signature: 2742 }; A.TaskScreenVM.prototype = {}; A.TaskTimeListTile.prototype = { build$1(_, context) { var endDateString, t3, t4, _this = this, _null = null, t1 = _this.taskTime, t2 = t1.startDate, startDateString = A.formatDate(t2.toIso8601String$0(), context, false, true, true); t1 = t1.endDate; if (t1 != null) endDateString = A.formatDate(t1.toIso8601String$0(), context, false, true, true); else { t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "now"); endDateString = t1 == null ? "" : t1; } t1 = type$.JSArray_legacy_Widget; t2 = A.Row$(A._setArrayType([A.Expanded$(A.Text$(A.DateFormat$("EEE MMM d, yyy", A.localeSelector(A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), false)).format$1(0, t2.toLocal$0()), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), new A.LiveText(_null, new A.TaskTimeListTile_build_closure(_this), _null, _null)], t1), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); t3 = A.Text$(startDateString + " - " + endDateString, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = A.Icon$(_this.isValid ? B.IconData_58397_MaterialIcons_null_true : B.IconData_57911_MaterialIcons_null_false, _null, _null); return A.Column$(A._setArrayType([A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, new A.TaskTimeListTile_build_closure0(_this, context), false, _null, _null, t3, _null, t2, t4, _null), A.Divider$(_null, 1, _null)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, get$task() { return this.task; } }; A.TaskTimeListTile_build_closure0.prototype = { call$0() { return this.$this.onTap.call$1(this.context); }, $signature: 9 }; A.TaskTimeListTile_build_closure.prototype = { call$0() { var t1 = this.$this.taskTime; return A.formatDuration(t1.get$duration(t1), true); }, $signature: 127 }; A.TaskView.prototype = { createState$0() { return new A._TaskViewState(null, null, B._StateLifecycle_0); } }; A._TaskViewState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.viewModel.state.uiState.taskUIState.tabIndex; t1 = A.TabController$(null, t1, 2, _this); _this._task_view$_controller = t1; t1.addListener$1(0, _this.get$_task_view$_onTabChanged()); }, _task_view$_onTabChanged$0() { var t1, store; this._widget.toString; t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._task_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateTaskTab(t1)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._task_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._task_view$_controller.removeListener$1(0, _this.get$_task_view$_onTabChanged()); _this._task_view$_controller.dispose$0(0); _this.super$__TaskViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t2, t3, t4, _this = this, _null = null, viewModel = _this._widget.viewModel, task = viewModel.task, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); _this._widget.toString; t2 = _this._task_view$_controller; t3 = A.Tab$(_null, t1.get$overview()); t4 = task.documents._list; return new A.ViewScaffold(false, task, new A.Builder(new A._TaskViewState_build_closure(_this, viewModel, task), _null), _null, A.TabBar$(t2, _null, false, _null, _null, A._setArrayType([t3, A.Tab$(_null, t4.length === 0 ? t1.get$documents() : t1.get$documents() + " (" + t4.length + ")")], type$.JSArray_legacy_Widget)), _null); } }; A._TaskViewState_build_closure.prototype = { call$1(context) { var t4, t5, t6, _null = null, t1 = this.$this, t2 = t1._task_view$_controller, t3 = this.viewModel; t1._widget.toString; t1 = type$.JSArray_legacy_Widget; t2 = A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.TaskOverview(t3, false, _null), new A._TaskViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.TaskViewDocuments(t3, new A.ValueKey(t3.task.id, type$.ValueKey_legacy_String)), new A._TaskViewState_build__closure0(t3, context))], t1), t2, _null), 1); t3 = this.task; if (t3.get$isRunning()) t4 = B.EntityAction_stop; else t4 = t3.getTaskTimes$0().length === 0 ? B.EntityAction_start : B.EntityAction_resume; t5 = t3.invoiceId.length === 0; t6 = !t5 ? B.EntityAction_archive : B.EntityAction_invoiceTask; return A.Column$(A._setArrayType([t2, new A.BottomButtons(t3, t4, t6, t5, true, _null)], t1), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._TaskViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._TaskViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__TaskViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TaskViewDocuments.prototype = { build$1(_, context) { var t1 = this.viewModel.task.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.TaskViewDocuments_build_closure(this, context), new A.TaskViewDocuments_build_closure0(this, context), null, null); } }; A.TaskViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.TaskViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.TaskOverview.prototype = { createState$0() { return new A._TaskOverviewState(B._StateLifecycle_0); } }; A._TaskOverviewState.prototype = { initState$0() { this.super$State$initState(); this._task_view_overview$_timer = A.Timer_Timer$periodic(A.Duration$(0, 0, 0, 0, 0, 1), new A._TaskOverviewState_initState_closure(this)); }, dispose$0(_) { this._task_view_overview$_timer.cancel$0(0); this._task_view_overview$_timer = null; this.super$State$dispose(0); }, build$1(_, context) { var $status, fields, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, task = viewModel.task, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), client = viewModel.client, company = viewModel.company, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, invoice = t3[t2].invoiceState.map._map$_map.$index(0, task.invoiceId), user = t3[t2].userState.map._map$_map.$index(0, task.assignedUserId), t4 = t3[t2].groupState, t5 = client == null, group = t4.$get$1(0, t5 ? _null : client.groupId); t4 = task.statusId; $status = t3[t2].taskStatusState.$get$1(0, t4); t2 = t5 ? _null : client.id; t3 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_literal(["rate", A.formatNumber(task.rate, context, t2, _null, B.FormatNumberType_0, true, _null, true)], t3, t3); if ((t4 == null ? "" : t4).length !== 0) { t2 = t1.get$status(t1); t4 = company.taskStatusMap._map$_map.$index(0, t4); t3 = t4 == null ? _null : t4.name; fields.$indexSet(0, t2, t3 == null ? "" : t3); } t2 = task.customValue1; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task1"), A.formatCustomValue(context, "task1", t2)); t2 = task.customValue2; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task2"), A.formatCustomValue(context, "task2", t2)); t2 = task.customValue3; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task3"), A.formatCustomValue(context, "task3", t2)); t2 = task.customValue4; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task4"), A.formatCustomValue(context, "task4", t2)); return A.RefreshIndicator$(new A.ScrollableListView(new A._TaskOverviewState_build__buildView(this, task, state, t1, company, viewModel.project, client, group, context, $status, user, invoice, fields, viewModel).call$0(), _null, _null, _null), new A._TaskOverviewState_build_closure(viewModel, context)); } }; A._TaskOverviewState_initState_closure.prototype = { call$1(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new A._TaskOverviewState_initState__closure()); }, $signature: 425 }; A._TaskOverviewState_initState__closure.prototype = { call$0() { return false; }, $signature: 21 }; A._TaskOverviewState_build__buildView.prototype = { call$0() { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, widgets, items, _this = this, _null = null, t1 = _this.task, t2 = _this.state, t3 = t2.uiState.selectedCompanyIndex; t3 = t2.userCompanyStates._list[t3].taskStatusState.$get$1(0, t1.statusId).name; if (t1.invoiceId.length !== 0) t2 = B.MaterialColor_Map_JNEaM_4283215696; else t2 = t1.get$isRunning() ? B.MaterialColor_Map_JNwaj_4280391411 : _null; t4 = _this.localization; t5 = t4.get$duration(t4); t6 = A.formatDuration(t1.calculateDuration$0(), true); t4 = t4.get$amount(); t7 = _this.project; t8 = _this.client; t9 = A.taskRateSelector(t8, _this.company, _this.group, t7, t1); t10 = A.round(B.JSInt_methods._tdivFast$1(t1.calculateDuration$0()._duration, 1000000) / 3600, 3); t11 = t8 == null; t12 = t11 ? _null : t8.id; t13 = type$.JSArray_legacy_Widget; widgets = A._setArrayType([A.EntityHeader$(t1, t5, t4, A.formatNumber(t9 * t10, _this.context, t12, _null, B.FormatNumberType_0, true, _null, false), t2, t3, t6), new A.ListDivider(_null)], t13); if (!t11) { _this.$this._widget.toString; B.JSArray_methods.addAll$1(widgets, A._setArrayType([A.EntityListTile$(t8, false, _null)], t13)); } if (t7 != null) { _this.$this._widget.toString; B.JSArray_methods.addAll$1(widgets, A._setArrayType([A.EntityListTile$(t7, false, _null)], t13)); } t2 = _this.status; if (t2 != null) { _this.$this._widget.toString; B.JSArray_methods.addAll$1(widgets, A._setArrayType([A.EntityListTile$(t2, false, _null)], t13)); } t2 = _this.user; if (t2 != null) { _this.$this._widget.toString; B.JSArray_methods.addAll$1(widgets, A._setArrayType([A.EntityListTile$(t2, false, _null)], t13)); } t2 = _this.invoice; if (t2 != null) { _this.$this._widget.toString; B.JSArray_methods.addAll$1(widgets, A._setArrayType([A.EntityListTile$(t2, false, _null)], t13)); } t2 = t1.description; if (t2.length !== 0) B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.IconMessage(t2, _null, _null, _null, _null), new A.ListDivider(_null)], t13)); t2 = _this.fields; if (t2._length !== 0) B.JSArray_methods.addAll$1(widgets, A._setArrayType([new A.FieldGrid(t2, _null)], t13)); items = t1.getTaskTimes$0(); if (items.length !== 0) new A.ReversedListIterable(items, A._arrayInstanceType(items)._eval$1("ReversedListIterable<1>")).forEach$1(0, new A._TaskOverviewState_build__buildView_closure(widgets, t1, _this.viewModel)); return widgets; }, $signature: 227 }; A._TaskOverviewState_build__buildView_closure.prototype = { call$1(taskTime) { var t1 = this.task; B.JSArray_methods.addAll$1(this.widgets, A._setArrayType([new A.TaskTimeListTile(new A._TaskOverviewState_build__buildView__closure(this.viewModel, t1, taskTime), t1, taskTime, true, null)], type$.JSArray_legacy_Widget)); }, $signature: 197 }; A._TaskOverviewState_build__buildView__closure.prototype = { call$1(context) { var t1 = this.viewModel, t2 = t1.state, t3 = t2.uiState.selectedCompanyIndex; return t2.userCompanyStates._list[t3].userCompany.canEditEntity$1(this.task) ? t1.onEditPressed.call$2(context, this.taskTime) : null; }, $signature: 51 }; A._TaskOverviewState_build_closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.TaskViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskViewScreen_build_closure(this), new A.TaskViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskViewVM); } }; A.TaskViewScreen_build_closure0.prototype = { call$1(store) { return A.TaskViewVM_TaskViewVM$fromStore(store); }, $signature: 2743 }; A.TaskViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.TaskView(vm, false, vm.state.uiState.taskUIState.tabIndex, null); }, $signature: 2744 }; A.TaskViewVM.prototype = { get$task() { return this.task; }, get$project() { return this.project; }, get$company() { return this.company; } }; A.TaskViewVM_TaskViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadTask(completer, this.task.id)); return completer.future; }, $signature: 17 }; A.TaskViewVM_TaskViewVM$fromStore__toggleTask.prototype = { call$1(context) { var times, t4, t1 = new A._Future($.Zone__current, type$._Future_legacy_TaskEntity), t2 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = this.task; if (t3.get$isRunning()) { times = t3.getTaskTimes$0(); t4 = B.JSArray_methods.get$last(times); t4 = t3.updateTaskTime$2(t4.get$stop(t4), times.length - 1); t3 = t4; } else t3 = t3.addTaskTime$1(A.TaskTime_TaskTime(null, null)); this.store.get$_dispatchers()[0].call$1(new A.SaveTaskRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_TaskEntity), t3, true, null)); t1.then$1$1(0, new A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure(t2), type$.Null).catchError$1(new A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0(context)); }, $signature: 30 }; A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure.prototype = { call$1(savedTask) { var t1; if (savedTask.get$isRunning()) { t1 = this.localization; if (savedTask.duration > 0) { t1.toString; t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "resumed_task"); if (t1 == null) t1 = ""; } else t1 = t1.get$startedTask(); } else t1 = this.localization.get$stoppedTask(); A.showToast(t1); }, $signature: 183 }; A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0.prototype = { call$1(error) { A.showDialog(null, true, new A.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.TaskViewVM_TaskViewVM$fromStore_closure0.prototype = { call$1(context) { return this._toggleTask.call$1(context); }, $signature: 30 }; A.TaskViewVM_TaskViewVM$fromStore_closure.prototype = { call$2(context, taskTime) { var t1 = this.task, t2 = B.JSArray_methods.indexOf$1(t1.getTaskTimes$0(), taskTime); A.editEntity(A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedTask(), false, type$.legacy_ClientEntity), t1, true, t2); }, call$1(context) { return this.call$2(context, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 2745 }; A.TaskViewVM_TaskViewVM$fromStore_closure1.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.TaskViewVM_TaskViewVM$fromStore_closure2.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveTaskDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.task)); t1.then$1$1(0, new A.TaskViewVM_TaskViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.TaskViewVM_TaskViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.TaskViewVM_TaskViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.TaskViewVM_TaskViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.TaskViewVM_TaskViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TaskViewVM_TaskViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.TaskViewVM_TaskViewVM$fromStore_closure3.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.TaskViewVM_TaskViewVM$fromStore__closure(t2, this.task), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.TaskViewVM_TaskViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadTask(null, this.task.id)); }, $signature: 103 }; A.TaskStatusEdit.prototype = { createState$0() { return new A._TaskStatusEditState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._TaskStatusEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = _this._task_status_edit$_nameController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._task_status_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._TaskStatusEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.taskStatus.name); B.JSArray_methods.forEach$1(_this._task_status_edit$_controllers, new A._TaskStatusEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._task_status_edit$_controllers, new A._TaskStatusEditState_dispose_closure(this)); this.super$State$dispose(0); }, _task_status_edit$_onChanged$0() { var _this = this, taskStatus = _this._widget.viewModel.taskStatus.rebuild$1(new A._TaskStatusEditState__onChanged_closure(_this)); if (!taskStatus.$eq(0, _this._widget.viewModel.taskStatus)) _this._task_status_edit$_debouncer.run$1(new A._TaskStatusEditState__onChanged_closure0(_this, taskStatus)); }, build$1(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), taskStatus = viewModel.taskStatus; if (taskStatus.get$isNew()) t2 = t1.get$newTaskStatus(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_task_status"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._TaskStatusEditState_build_closure(this, t1, viewModel, taskStatus), _null), $.$get$_TaskStatusEditState__formKey()), _null, taskStatus, _null, false, _null, new A._TaskStatusEditState_build_closure0(viewModel), new A._TaskStatusEditState_build_closure1(this, viewModel), _null, t2); } }; A._TaskStatusEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_task_status_edit$_onChanged()); }, $signature: 33 }; A._TaskStatusEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_task_status_edit$_onChanged()); }, $signature: 33 }; A._TaskStatusEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_task_status_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._TaskStatusEditState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._task_status_edit$_nameController._change_notifier$_value.text); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 168 }; A._TaskStatusEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.taskStatus); }, $signature: 1 }; A._TaskStatusEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._TaskStatusEditState_build_closure1.prototype = { call$1(context) { var isValid = $.$get$_TaskStatusEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._TaskStatusEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._TaskStatusEditState_build__closure.prototype = { call$0() { this.$this._task_status_edit$_autoValidate = !this.isValid; }, $signature: 1 }; A._TaskStatusEditState_build_closure.prototype = { call$1(context) { var _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = _this.viewModel, t4 = _this.taskStatus, t5 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._task_status_edit$_autoValidate, t1._task_status_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2.get$name(t2), _null, _null, false, _null, _null, t3.onSavePressed, true, _null, _null, B.TextAlign_4, new A._TaskStatusEditState_build__closure0(t2)), A.FormColorPicker$(t4.color, _null, new A._TaskStatusEditState_build__closure1(t3, t4))], t5), _null, _null, false, _null, false, _null)], t5), _null, _null, _null); }, $signature: 167 }; A._TaskStatusEditState_build__closure0.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A._TaskStatusEditState_build__closure1.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.taskStatus.rebuild$1(new A._TaskStatusEditState_build___closure(value))); }, $signature: 5 }; A._TaskStatusEditState_build___closure.prototype = { call$1(b) { b.get$_task_status_model$_$this()._task_status_model$_color = this.value; return b; }, $signature: 168 }; A.TaskStatusEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskStatusEditScreen_build_closure(), new A.TaskStatusEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusEditVM); } }; A.TaskStatusEditScreen_build_closure0.prototype = { call$1(store) { return A.TaskStatusEditVM_TaskStatusEditVM$fromStore(store); }, $signature: 2746 }; A.TaskStatusEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaskStatusEdit(viewModel, new A.ValueKey(viewModel.taskStatus.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2747 }; A.TaskStatusEditVM.prototype = { get$taskStatus() { return this.taskStatus; }, get$company() { return this.company; } }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure.prototype = { call$1(taskStatus) { this.store.get$_dispatchers()[0].call$1(new A.UpdateTaskStatus(taskStatus)); }, $signature: 272 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.TaskStatusEntity_TaskStatusEntity(_null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, taskStatus = A._lateReadCheck(t1.__Store__state, "_state").uiState.taskStatusUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_TaskStatusEntity); t1.get$_dispatchers()[0].call$1(new A.SaveTaskStatusRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaskStatusEntity), taskStatus)); return t2.then$1$1(0, new A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure(taskStatus, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0()); }, $signature: 37 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure.prototype = { call$1(savedTaskStatus) { var _this = this, _s26_ = "/settings/task_status/view", t1 = _this.taskStatus, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_task_status"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedTaskStatus(); A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s26_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s26_, t1, t1); } else t2.pop$1(0, savedTaskStatus); } else A.viewEntity(false, savedTaskStatus, null, true); }, $signature: 272 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.TaskStatusListItem.prototype = { build$1(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, taskStatusUIState = uiState.taskStatusUIState, t1 = taskStatusUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(A._setArrayType([_this.taskStatus.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.taskStatus; t4 = t2.id; t5 = uiState.get$isEditing() ? taskStatusUIState.editing.id : taskStatusUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.TaskStatusListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.TaskStatusListItem_build_closure0(_this), new A.TaskStatusListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t8, new A.EntityStateLabel(t2, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t6, _null, _null), t4 === t5, true, true, _null); }, get$user(receiver) { return this.user; }, get$taskStatus() { return this.taskStatus; } }; A.TaskStatusListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.taskStatus, false, false); return t1; }, $signature: 0 }; A.TaskStatusListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.taskStatus, false, true); return t1; }, $signature: 0 }; A.TaskStatusListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.TaskStatusListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskStatusListBuilder_build_closure(), A.task_status_list_vm_TaskStatusListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusListVM); } }; A.TaskStatusListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.taskStatusList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return A.EntityList$(t2, B.EntityType_taskStatus, new A.TaskStatusListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new A.TaskStatusPresenter(), t1, t3); }, $signature: 2748 }; A.TaskStatusListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, taskStatusId = J.$index$asx(t1.taskStatusList, index), taskStatus = t1.taskStatusMap._map$_map.$index(0, taskStatusId), t2 = state.getUIState$1(B.EntityType_taskStatus).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = taskStatus.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.TaskStatusListItem(t4, taskStatus, t1.filter, t2, null); }, $signature: 2749 }; A.TaskStatusListVM.prototype = {}; A.TaskStatusListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.TaskStatusListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.TaskStatusListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortTaskStatuses(field)); }, $signature: 5 }; A.TaskStatusListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearTaskStatusMultiselect()); }, $signature: 9 }; A.TaskStatusPresenter.prototype = { getField$2$context$field(context, field) { return this.super$EntityPresenter$getField(context, field); } }; A.TaskStatusScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.taskStatusUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.taskStatusList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType([], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, A._setArrayType([], t5), B.EntityType_taskStatus, false, B.List_empty17, new A.TaskStatusScreen_build_closure(store), new A.TaskStatusScreen_build_closure0(store), new A.TaskStatusScreen_build_closure1(store), new A.TaskStatusScreen_build_closure2(store), new A.TaskStatusScreen_build_closure3(store), new A.TaskStatusScreen_build_closure4(store), new A.TaskStatusScreen_build_closure5(store), _null, A._setArrayType(["name", "order", "updated_at"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_taskStatus) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "task_status_fab", false, new A.TaskStatusScreen_build_closure6(context), t3.get$newTaskStatus()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_taskStatus, t2, new A.TaskStatusScreen_build_closure7(store), t4, _null, _null, new A.TaskStatusScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.TaskStatusListBuilder(_null), t6, B.EntityType_taskStatus, t3, 0, "task_settings", new A.TaskStatusScreen_build_closure9(store), new A.TaskStatusScreen_build_closure10(store)); } }; A.TaskStatusScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartTaskStatusMultiselect()); }, $signature: 9 }; A.TaskStatusScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatuses(value)); }, $signature: 11 }; A.TaskStatusScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByState(state)); }, $signature: 27 }; A.TaskStatusScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taskStatusUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaskStatusMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaskStatusMultiselect()); }, $signature: 1 }; A.TaskStatusScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortTaskStatuses(value)); }, $signature: 11 }; A.TaskStatusScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByState(state)); }, $signature: 27 }; A.TaskStatusScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taskStatusUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaskStatusMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaskStatusMultiselect()); }, $signature: 1 }; A.TaskStatusScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByCustom1(value)); }, $signature: 5 }; A.TaskStatusScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByCustom2(value)); }, $signature: 5 }; A.TaskStatusScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByCustom3(value)); }, $signature: 5 }; A.TaskStatusScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTaskStatusesByCustom4(value)); }, $signature: 5 }; A.TaskStatusScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_taskStatus); }, $signature: 1 }; A.TaskStatusScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskStatusScreenBuilder_build_closure(), A.task_status_screen_vm_TaskStatusScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusScreenVM); } }; A.TaskStatusScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.TaskStatusScreen(vm, null); }, $signature: 2750 }; A.TaskStatusScreenVM.prototype = {}; A.TaskStatusView.prototype = { createState$0() { return new A._TaskStatusViewState(B._StateLifecycle_0); } }; A._TaskStatusViewState.prototype = { build$1(_, context) { var t6, t7, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, taskStatus = viewModel.taskStatus, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = $.$get$memoizedCalculateTaskStatusAmount(), t3 = taskStatus.id, t4 = state.uiState.selectedCompanyIndex, t5 = state.userCompanyStates._list, amount = t2.call$2(t3, t5[t4].taskState.map); t2 = this._widget.isFilter; t6 = A.EntityHeader$(taskStatus, t1.get$total(t1), _null, _null, _null, _null, A.formatDuration(A.Duration$(0, 0, 0, 0, 0, amount), true)); t7 = this._widget.isFilter; return new A.ViewScaffold(t2, taskStatus, new A.ScrollableListView(A._setArrayType([t6, new A.ListDivider(_null), new A.EntitiesListTile(taskStatus, B.EntityType_task, t1.get$tasks(), $.$get$memoizedTaskStatsForTaskStatus().call$2(t3, t5[t4].taskState.map).present$2(t1.get$active(t1), t1.get$archived()), t7, false, _null)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._TaskStatusViewState_build_closure(viewModel), _null, _null); } }; A._TaskStatusViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.TaskStatusViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaskStatusViewScreen_build_closure(this), new A.TaskStatusViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusViewVM); } }; A.TaskStatusViewScreen_build_closure0.prototype = { call$1(store) { return A.TaskStatusViewVM_TaskStatusViewVM$fromStore(store); }, $signature: 2751 }; A.TaskStatusViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.TaskStatusView(vm, this.$this.isFilter, null); }, $signature: 2752 }; A.TaskStatusViewVM.prototype = { get$taskStatus() { return this.taskStatus; }, get$company() { return this.company; } }; A.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/task_status")); }, $signature: 9 }; A.TaxRateEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._TaxRateEditState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A._TaxRateEditState.prototype = { didChangeDependencies$0() { var taxRate, _this = this, t1 = _this._tax_rate_edit$_nameController, t2 = _this._rateController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._tax_rate_edit$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A._TaxRateEditState_didChangeDependencies_closure(_this)); taxRate = _this._widget.viewModel.taxRate; t1.set$text(0, taxRate.name); t1 = _this._framework$_element; t1.toString; t2.set$text(0, A.formatNumber(taxRate.rate, t1, null, null, B.FormatNumberType_4, true, null, false)); B.JSArray_methods.forEach$1(_this._tax_rate_edit$_controllers, new A._TaxRateEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._tax_rate_edit$_controllers, new A._TaxRateEditState_dispose_closure(this)); this.super$State$dispose(0); }, _tax_rate_edit$_onChanged$0() { var _this = this, taxRate = _this._widget.viewModel.taxRate.rebuild$1(new A._TaxRateEditState__onChanged_closure(_this)); if (!taxRate.$eq(0, _this._widget.viewModel.taxRate)) _this._tax_rate_edit$_debouncer.run$1(new A._TaxRateEditState__onChanged_closure0(_this, taxRate)); }, build$1(_, context) { var t3, t4, t5, t6, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = viewModel.taxRate; if (t2.get$isNew()) t3 = t1.get$newTaxRate(); else { t1.toString; t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_tax_rate"); if (t3 == null) t3 = ""; } t4 = viewModel.onSavePressed; t5 = viewModel.onCancelPressed; t6 = type$.JSArray_legacy_Widget; return A.EditScaffold$(_null, _null, new A.AppForm($.$get$_TaxRateEditState__formKey(), A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, false, this._tax_rate_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$name(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, new A._TaxRateEditState_build_closure(t1)), A.DecoratedFormField$(false, _null, false, false, this._rateController, _null, true, _null, _null, _null, _null, false, true, _null, new A.TextInputType(2, false, true), t1.get$rate(t1), _null, _null, false, _null, _null, t4, true, _null, _null, B.TextAlign_4, _null)], t6), _null, _null, false, _null, false, _null)], t6), _null, _null, _null), _null, t2, _null, false, _null, t5, t4, _null, t3); } }; A._TaxRateEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_tax_rate_edit$_onChanged()); }, $signature: 33 }; A._TaxRateEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_tax_rate_edit$_onChanged()); }, $signature: 33 }; A._TaxRateEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_tax_rate_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._TaxRateEditState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._tax_rate_edit$_nameController._change_notifier$_value.text); b.get$_tax_rate_model$_$this()._tax_rate_model$_name = t2; t1 = A.parseDouble(t1._rateController._change_notifier$_value.text, false); b.get$_tax_rate_model$_$this()._tax_rate_model$_rate = t1; return b; }, $signature: 521 }; A._TaxRateEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.taxRate); }, $signature: 1 }; A._TaxRateEditState_build_closure.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A.TaxRateEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaxRateEditScreen_build_closure(), new A.TaxRateEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateEditVM); } }; A.TaxRateEditScreen_build_closure0.prototype = { call$1(store) { return A.TaxRateEditVM_TaxRateEditVM$fromStore(store); }, $signature: 2753 }; A.TaxRateEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TaxRateEdit(viewModel, new A.ValueKey(viewModel.taxRate.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2754 }; A.TaxRateEditVM.prototype = { get$taxRate() { return this.taxRate; }, get$company() { return this.company; } }; A.TaxRateEditVM_TaxRateEditVM$fromStore_closure.prototype = { call$1(taxRate) { this.store.get$_dispatchers()[0].call$1(new A.UpdateTaxRate(taxRate)); }, $signature: 141 }; A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.TaxRateEditVM_TaxRateEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaxRateEditVM_TaxRateEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.TaxRateEditVM_TaxRateEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, taxRate = A._lateReadCheck(t1.__Store__state, "_state").uiState.taxRateUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_TaxRateEntity); t1.get$_dispatchers()[0].call$1(new A.SaveTaxRateRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaxRateEntity), taxRate)); return t2.then$1$1(0, new A.TaxRateEditVM_TaxRateEditVM$fromStore___closure(taxRate, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0()); }, $signature: 37 }; A.TaxRateEditVM_TaxRateEditVM$fromStore___closure.prototype = { call$1(savedTaxRate) { var _this = this, _s33_ = "/settings/tax_settings_rates/view", t1 = _this.taxRate, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_tax_rate"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_tax_rate"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s33_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s33_, t1, t1); } else t2.pop$1(0, savedTaxRate); } else A.viewEntity(false, savedTaxRate, null, true); }, $signature: 141 }; A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.TaxRateEditVM_TaxRateEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TaxRateEditVM_TaxRateEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.TaxRateListItem.prototype = { build$1(_, context) { var t3, t4, t5, t6, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, t1 = uiState.taxRateUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(A._setArrayType([_this.taxRate.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t2 = _this.taxRate; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.TaxRateListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t2.name + " \u2022 " + A.S(A.formatNumber(t2.rate, context, _null, _null, B.FormatNumberType_1, true, _null, false)), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t2, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.TaxRateListItem_build_closure0(_this), new A.TaxRateListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t6, new A.EntityStateLabel(t2, _null)], t5), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t4, _null, _null), false, true, true, _null); }, get$user(receiver) { return this.user; }, get$taxRate() { return this.taxRate; } }; A.TaxRateListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.taxRate, false, false); return t1; }, $signature: 0 }; A.TaxRateListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.taxRate, false, true); return t1; }, $signature: 0 }; A.TaxRateListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.TaxRateListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaxRateListBuilder_build_closure(), A.tax_rate_list_vm_TaxRateListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateListVM); } }; A.TaxRateListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return A.EntityList$(viewModel.taxRateList, B.EntityType_taxRate, new A.TaxRateListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2755 }; A.TaxRateListBuilder_build__closure.prototype = { call$2(context, index) { var t4, t1 = this.viewModel, taxRateId = J.$index$asx(t1.taxRateList, index), taxRate = t1.taxRateMap._map$_map.$index(0, taxRateId), t2 = t1.state.getUIState$1(B.EntityType_taxRate).get$listUIState().selectedIds, t3 = t1.userCompany.user; if (t2 != null) { t4 = taxRate.id; t2 = B.JSArray_methods.contains$1(t2._list, t4); } else t2 = false; return new A.TaxRateListItem(t3, taxRate, t1.filter, t2, null); }, $signature: 2756 }; A.TaxRateListVM.prototype = {}; A.TaxRateListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.TaxRateListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.TaxRateListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortTaxRates(field)); }, $signature: 5 }; A.TaxRateListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearTaxRateMultiselect()); }, $signature: 9 }; A.TaxRateSettingsScreen.prototype = { build$1(_, context) { var t6, t7, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, t3 = t2.taxRateUIState.listUIState, t4 = t3.filterClearedAt, t5 = this.viewModel.taxRateList; t3 = t3.filter; t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_taxRate, false, B.List_empty17, new A.TaxRateSettingsScreen_build_closure(store), _null, _null, _null, _null, new A.TaxRateSettingsScreen_build_closure0(store), new A.TaxRateSettingsScreen_build_closure1(store), _null, A._setArrayType(["updated_at"], type$.JSArray_legacy_String), B.List_empty18, _null); if (state.prefState.appLayout === B.AppLayout_mobile) { t7 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = t7._list[t2].userCompany.can$2(B.UserPermission_create, B.EntityType_taxRate); } else t2 = false; t1 = t2 ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "tax_rate_fab", false, new A.TaxRateSettingsScreen_build_closure2(context), t1.get$newTaxRate()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_taxRate, t3, new A.TaxRateSettingsScreen_build_closure3(store), t5, _null, _null, new A.TaxRateSettingsScreen_build_closure4(store), new A.ValueKey("__filter_" + t4 + "__", type$.ValueKey_legacy_String)), new A.TaxRateListBuilder(_null), t6, B.EntityType_taxRate, t1, 0, "tax_settings", new A.TaxRateSettingsScreen_build_closure5(store), new A.TaxRateSettingsScreen_build_closure6(store)); } }; A.TaxRateSettingsScreen_build_closure6.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartTaxRateMultiselect()); }, $signature: 9 }; A.TaxRateSettingsScreen_build_closure3.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaxRates(value)); }, $signature: 11 }; A.TaxRateSettingsScreen_build_closure4.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaxRatesByState(state)); }, $signature: 27 }; A.TaxRateSettingsScreen_build_closure5.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taxRateUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaxRateMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaxRateMultiselect()); }, $signature: 1 }; A.TaxRateSettingsScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortTaxRates(value)); }, $signature: 5 }; A.TaxRateSettingsScreen_build_closure1.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTaxRatesByState(state)); }, $signature: 27 }; A.TaxRateSettingsScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.taxRateUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTaxRateMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTaxRateMultiselect()); }, $signature: 1 }; A.TaxRateSettingsScreen_build_closure2.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_taxRate); }, $signature: 1 }; A.TaxRateScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaxRateScreenBuilder_build_closure(), A.tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateScreenVM); } }; A.TaxRateScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.TaxRateSettingsScreen(vm, null); }, $signature: 2757 }; A.TaxRateScreenVM.prototype = {}; A.TaxRateView.prototype = { createState$0() { return new A._TaxRateViewState(B._StateLifecycle_0); } }; A._TaxRateViewState.prototype = { build$1(_, context) { var _null = null, viewModel = this._widget.viewModel, taxRate = viewModel.taxRate, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); this._widget.toString; return new A.ViewScaffold(false, taxRate, new A.ScrollableListView(A._setArrayType([A.EntityHeader$(taxRate, t1.get$name(t1), t1.get$rate(t1), A.formatNumber(taxRate.rate, context, _null, _null, B.FormatNumberType_1, true, _null, false), _null, _null, taxRate.name)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._TaxRateViewState_build_closure(viewModel), _null, _null); } }; A._TaxRateViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.TaxRateViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TaxRateViewScreen_build_closure(this), new A.TaxRateViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateViewVM); } }; A.TaxRateViewScreen_build_closure0.prototype = { call$1(store) { return A.TaxRateViewVM_TaxRateViewVM$fromStore(store); }, $signature: 2758 }; A.TaxRateViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.TaxRateView(vm, false, null); }, $signature: 2759 }; A.TaxRateViewVM.prototype = { get$taxRate() { return this.taxRate; }, get$company() { return this.company; } }; A.TaxRateViewVM_TaxRateViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/tax_settings_rates")); }, $signature: 1 }; A.TokenEdit.prototype = { createState$0() { return new A._TokenEditState(new A.Debouncer(500, false), new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._TokenEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = _this._token_edit$_nameController, t2 = A._setArrayType([t1], type$.JSArray_legacy_TextEditingController); _this._token_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._TokenEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.token.name); B.JSArray_methods.forEach$1(_this._token_edit$_controllers, new A._TokenEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._token_edit$_controllers, new A._TokenEditState_dispose_closure(this)); this.super$State$dispose(0); }, _token_edit$_onChanged$0() { var _this = this, token = _this._widget.viewModel.token.rebuild$1(new A._TokenEditState__onChanged_closure(_this)); if (!token.$eq(0, _this._widget.viewModel.token)) _this._token_edit$_debouncer.run$1(new A._TokenEditState__onChanged_closure0(_this, token)); }, build$1(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), token = viewModel.token; if (token.get$isNew()) t2 = t1.get$newToken(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_token"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._TokenEditState_build_closure(this, t1, viewModel), _null), $.$get$_TokenEditState__formKey()), _null, token, _null, false, _null, new A._TokenEditState_build_closure0(viewModel), new A._TokenEditState_build_closure1(this, viewModel), _null, t2); } }; A._TokenEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_token_edit$_onChanged()); }, $signature: 33 }; A._TokenEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_token_edit$_onChanged()); }, $signature: 33 }; A._TokenEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_token_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._TokenEditState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._token_edit$_nameController._change_notifier$_value.text); b.get$_token_model$_$this()._token_model$_name = t1; return b; }, $signature: 513 }; A._TokenEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.token); }, $signature: 1 }; A._TokenEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._TokenEditState_build_closure1.prototype = { call$1(context) { var isValid = $.$get$_TokenEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._TokenEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._TokenEditState_build__closure.prototype = { call$0() { this.$this._token_edit$_autoValidate = !this.isValid; }, $signature: 1 }; A._TokenEditState_build_closure.prototype = { call$1(context) { var _null = null, t1 = this.$this, t2 = this.localization, t3 = t2.get$name(t2), t4 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._token_edit$_autoValidate, t1._token_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, this.viewModel.onSavePressed, true, _null, _null, B.TextAlign_4, new A._TokenEditState_build__closure0(t2))], t4), _null, _null, false, _null, false, _null)], t4), _null, _null, _null); }, $signature: 167 }; A._TokenEditState_build__closure0.prototype = { call$1(value) { return value.length === 0 || B.JSString_methods.trim$0(value).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A.TokenEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TokenEditScreen_build_closure(), new A.TokenEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenEditVM); } }; A.TokenEditScreen_build_closure0.prototype = { call$1(store) { return A.TokenEditVM_TokenEditVM$fromStore(store); }, $signature: 2760 }; A.TokenEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.TokenEdit(viewModel, new A.ValueKey(viewModel.token.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2761 }; A.TokenEditVM.prototype = { get$token() { return this.token; }, get$company() { return this.company; } }; A.TokenEditVM_TokenEditVM$fromStore_closure.prototype = { call$1(token) { this.store.get$_dispatchers()[0].call$1(new A.UpdateToken(token)); }, $signature: 338 }; A.TokenEditVM_TokenEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.TokenEntity_TokenEntity(_null, _null), true); t1 = this.state.uiState; t1.tokenUIState.toString; t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.TokenEditVM_TokenEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TokenEditVM_TokenEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; A.TokenEditVM_TokenEditVM$fromStore__closure.prototype = { call$0() { var t1 = this.store; A.passwordCallback(false, new A.TokenEditVM_TokenEditVM$fromStore___closure(t1, A._lateReadCheck(t1.__Store__state, "_state").uiState.tokenUIState.editing, this.state), this.context, false); }, $signature: 1 }; A.TokenEditVM_TokenEditVM$fromStore___closure.prototype = { call$2(password, idToken) { var t2, $navigator, t3, t4, t1 = $.$get$navigatorKey(); t1.toString; t2 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t1.get$currentState(); t1 = new A._Future($.Zone__current, type$._Future_legacy_TokenEntity); t3 = this.store; t4 = this.token; t3.get$_dispatchers()[0].call$1(new A.SaveTokenRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_TokenEntity), t4, password, idToken)); return t1.then$1$1(0, new A.TokenEditVM_TokenEditVM$fromStore____closure(t4, t2, this.state, t3, $navigator), type$.Null).catchError$1(new A.TokenEditVM_TokenEditVM$fromStore____closure0()); }, $signature: 487 }; A.TokenEditVM_TokenEditVM$fromStore____closure.prototype = { call$1(savedToken) { var _this = this, _s20_ = "/settings/token/view", t1 = _this.token, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_token"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_token"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s20_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s20_, t1, t1); } else t2.pop$1(0, savedToken); } else A.viewEntity(false, savedToken, null, true); }, $signature: 338 }; A.TokenEditVM_TokenEditVM$fromStore____closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.TokenEditVM_TokenEditVM$fromStore_____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.TokenEditVM_TokenEditVM$fromStore_____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.TokenListItem.prototype = { build$1(_, context) { var t4, user, t5, filterMatch, t6, t7, t8, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, tokenUIState = uiState.tokenUIState, t1 = tokenUIState.listUIState.selectedIds, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = _this.token; user = t2[t3].userState.$get$1(0, t4.createdUserId); t5 = _this.filter; filterMatch = t5 != null && t5.length !== 0 ? A.matchesStringsValue(A._setArrayType([], type$.JSArray_legacy_String), t5) : _null; t2 = t2[t3].userCompany; t3 = t4.id; t5 = uiState.get$isEditing() ? tokenUIState.editing.id : tokenUIState.selectedId; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.TokenListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t6 = A.Text$(t4.name, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null); t7 = A.Text$(user.get$fullName().length !== 0 ? user.get$fullName() : user.email, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t2, t4, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.TokenListItem_build_closure0(_this), new A.TokenListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t7, t8, new A.EntityStateLabel(t4, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t6, _null, _null), t3 === t5, true, true, _null); }, get$user(receiver) { return this.user; }, get$token() { return this.token; } }; A.TokenListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.token, false, false); return t1; }, $signature: 0 }; A.TokenListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.token, false, true); return t1; }, $signature: 0 }; A.TokenListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.TokenListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TokenListBuilder_build_closure(), A.token_list_vm_TokenListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenListVM); } }; A.TokenListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.tokenList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_token, new A.TokenListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.TokenPresenter(), t2, t4); }, $signature: 2762 }; A.TokenListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, tokenId = J.$index$asx(t1.tokenList, index), token = t1.tokenMap._map$_map.$index(0, tokenId), t2 = state.getUIState$1(B.EntityType_token).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = token.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.TokenListItem(t4, token, t1.filter, t2, null); }, $signature: 2763 }; A.TokenListVM.prototype = {}; A.TokenListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.TokenListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.TokenListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortTokens(field)); }, $signature: 5 }; A.TokenListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearTokenMultiselect()); }, $signature: 9 }; A.TokenPresenter.prototype = { getField$2$context$field(context, field) { return this.super$EntityPresenter$getField(context, field); } }; A.TokenScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.tokenUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.tokenList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType([], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, A._setArrayType([], t5), B.EntityType_token, false, B.List_empty17, new A.TokenScreen_build_closure(store), new A.TokenScreen_build_closure0(store), new A.TokenScreen_build_closure1(store), new A.TokenScreen_build_closure2(store), new A.TokenScreen_build_closure3(store), new A.TokenScreen_build_closure4(store), new A.TokenScreen_build_closure5(store), _null, A._setArrayType(["name"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_token) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "token_fab", false, new A.TokenScreen_build_closure6(context), t3.get$newToken()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_token, t2, new A.TokenScreen_build_closure7(store), t4, _null, _null, new A.TokenScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.TokenListBuilder(_null), t6, B.EntityType_token, t3, 0, "account_management", new A.TokenScreen_build_closure9(store), new A.TokenScreen_build_closure10(store)); } }; A.TokenScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartTokenMultiselect()); }, $signature: 9 }; A.TokenScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTokens(value)); }, $signature: 11 }; A.TokenScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByState(state)); }, $signature: 27 }; A.TokenScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.tokenUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTokenMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTokenMultiselect()); }, $signature: 1 }; A.TokenScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortTokens(value)); }, $signature: 11 }; A.TokenScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByState(state)); }, $signature: 27 }; A.TokenScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.tokenUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearTokenMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartTokenMultiselect()); }, $signature: 1 }; A.TokenScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByCustom1(value)); }, $signature: 5 }; A.TokenScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByCustom2(value)); }, $signature: 5 }; A.TokenScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByCustom3(value)); }, $signature: 5 }; A.TokenScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterTokensByCustom4(value)); }, $signature: 5 }; A.TokenScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_token); }, $signature: 1 }; A.TokenScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TokenScreenBuilder_build_closure(), A.token_screen_vm_TokenScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenScreenVM); } }; A.TokenScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.TokenScreen(vm, null); }, $signature: 2764 }; A.TokenScreenVM.prototype = {}; A.TokenView.prototype = { createState$0() { return new A._TokenViewState(B._StateLifecycle_0); } }; A._TokenViewState.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, token = viewModel.token, t2 = viewModel.state, t3 = t2.uiState.selectedCompanyIndex, user = t2.userCompanyStates._list[t3].userState.$get$1(0, token.createdUserId); this._widget.toString; t3 = t1.get$user(t1); t2 = user.get$fullName().length !== 0 ? user.get$fullName() : user.email; return new A.ViewScaffold(false, token, new A.ScrollableListView(A._setArrayType([A.EntityHeader$(token, t3, t1.get$createdOn(), A.formatDate(A.convertTimestampToDate(token.createdAt).toIso8601String$0(), context, true, true, false), _null, _null, t2), new A.ListDivider(_null), new A._TokenListTile(token, _null), new A.ListDivider(_null)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._TokenViewState_build_closure(viewModel), _null, _null); } }; A._TokenViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A._TokenListTile.prototype = { build$1(_, context) { var t3, _null = null, t1 = this.token.token, t2 = A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = B.JSString_methods.substring$1(t1, 10) === "xxxxxxxxxxx"; t3 = t1 ? _null : A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null); t1 = t1 ? _null : new A._TokenListTile_build_closure(this, context); return A.ListTile$(false, B.EdgeInsets_22_22_22_22, _null, _null, true, _null, _null, false, _null, _null, _null, t1, false, _null, _null, _null, _null, new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), t3, _null); }, get$token() { return this.token; } }; A._TokenListTile_build_closure.prototype = { call$0() { A.handleTokenAction(this.context, A._setArrayType([this.$this.token], type$.JSArray_legacy_BaseEntity), B.EntityAction_copy); }, $signature: 1 }; A.TokenViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.TokenViewScreen_build_closure(this), new A.TokenViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenViewVM); } }; A.TokenViewScreen_build_closure0.prototype = { call$1(store) { return A.TokenViewVM_TokenViewVM$fromStore(store); }, $signature: 2765 }; A.TokenViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.TokenView(vm, false, null); }, $signature: 2766 }; A.TokenViewVM.prototype = { get$token() { return this.token; }, get$company() { return this.company; } }; A.TokenViewVM_TokenViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/tokens")); }, $signature: 1 }; A.UserEdit.prototype = { createState$0() { var t1 = A.FocusScopeNode$(true, null, false), t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._UserEditState(new A.Debouncer(500, false), t1, new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), new A.TextEditingController(B.TextEditingValue_li8, t2), A._setArrayType([], type$.JSArray_legacy_TextEditingController), null, null, B._StateLifecycle_0); } }; A._UserEditState.prototype = { initState$0() { this.super$State$initState(); this._user_edit$_controller = A.TabController$(null, 0, 3, this); }, didChangeDependencies$0() { var user, _this = this, t1 = _this._firstNameController, t2 = _this._lastNameController, t3 = _this._emailController, t4 = _this._phoneController, t5 = _this._custom1Controller, t6 = _this._custom2Controller, t7 = _this._custom3Controller, t8 = _this._custom4Controller, t9 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8], type$.JSArray_legacy_TextEditingController); _this._user_edit$_controllers = t9; B.JSArray_methods.forEach$1(t9, new A._UserEditState_didChangeDependencies_closure(_this)); user = _this._widget.viewModel.user; t1.set$text(0, user.firstName); t2.set$text(0, user.lastName); t3.set$text(0, user.email); t4.set$text(0, user.phone); t5.set$text(0, user.customValue1); t6.set$text(0, user.customValue2); t7.set$text(0, user.customValue3); t8.set$text(0, user.customValue4); B.JSArray_methods.forEach$1(_this._user_edit$_controllers, new A._UserEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var _this = this; _this._user_edit$_focusNode.dispose$0(0); _this._user_edit$_controller.dispose$0(0); B.JSArray_methods.forEach$1(_this._user_edit$_controllers, new A._UserEditState_dispose_closure(_this)); _this.super$__UserEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _user_edit$_onChanged$0() { var _this = this, user = _this._widget.viewModel.user.rebuild$1(new A._UserEditState__onChanged_closure(_this)); if (!J.$eq$(user, _this._widget.viewModel.user)) _this._user_edit$_debouncer.run$1(new A._UserEditState__onChanged_closure0(_this, user)); }, _togglePermission$1(permission) { var permissionsString, t2, user = this._widget.viewModel.user, t1 = user.userCompany.permissions, permissions = A._setArrayType(t1.split(","), type$.JSArray_String); if (B.JSArray_methods.contains$1(permissions, permission)) B.JSArray_methods.remove$1(permissions, permission); else permissions.push(permission); permissionsString = new A.WhereIterable(permissions, new A._UserEditState__togglePermission_closure(), type$.WhereIterable_String).join$1(0, ","); t1 = this._widget.viewModel; t2 = user.rebuild$1(new A._UserEditState__togglePermission_closure0(permissionsString)); t1.onUserChanged.call$1(t2); }, build$1(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), user = viewModel.user, userCompany = user.userCompany; if (user.get$isNew()) t2 = t1.get$newUser(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_user"); if (t2 == null) t2 = ""; } t3 = _this._user_edit$_controller; t4 = A.getLayout(context); t5 = A.Tab$(_null, t1.get$details(t1)); t6 = A.Tab$(_null, t1.get$notifications()); t7 = $.$get$LocalizationsProvider__localizedValues(); t8 = t1.localeCode; t9 = J.$index$asx(t7.$index(0, t8), "permissions"); t10 = type$.JSArray_legacy_Widget; t9 = A.TabBar$(t3, _null, t4 === B.AppLayout_mobile, _null, _null, A._setArrayType([t5, t6, A.Tab$(_null, t9 == null ? "" : t9)], t10)); t6 = $.$get$_UserEditState__formKey(); t5 = _this._user_edit$_controller; t4 = t1.get$firstName(t1); t3 = _this.autoValidate; t11 = viewModel.onSavePressed; t4 = A.DecoratedFormField$(false, _null, true, t3, _this._firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t4, _null, _null, false, _null, _null, t11, true, _null, _null, B.TextAlign_4, new A._UserEditState_build_closure(t1)); t3 = t1.get$lastName(t1); t3 = A.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t3, _null, _null, false, _null, _null, t11, true, _null, _null, B.TextAlign_4, new A._UserEditState_build_closure0(t1)); t12 = t1.get$email(t1); t11 = A._setArrayType([A.FormCard$(_null, A._setArrayType([t4, t3, A.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t12, _null, _null, false, _null, _null, t11, true, _null, _null, B.TextAlign_4, new A._UserEditState_build_closure1(t1)), A.DecoratedFormField$(false, _null, false, false, _this._phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t11, true, _null, _null, B.TextAlign_4, _null), new A.CustomField(_this._custom1Controller, _null, t11, "user1", user.customValue1, false, _null), new A.CustomField(_this._custom2Controller, _null, t11, "user2", user.customValue2, false, _null), new A.CustomField(_this._custom3Controller, _null, t11, "user3", user.customValue3, false, _null), new A.CustomField(_this._custom4Controller, _null, t11, "user4", user.customValue4, false, _null)], t10), _null, _null, false, _null, false, _null)], t10); t12 = A._setArrayType([new A.NotificationSettings(user, new A._UserEditState_build_closure2(viewModel, user), _null)], t10); t3 = J.$index$asx(t7.$index(0, t8), "administrator"); t3 = A.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = J.$index$asx(t7.$index(0, t8), "administrator_help"); t4 = A.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = userCompany.isAdmin; t3 = A._setArrayType([A.FormCard$(_null, A._setArrayType([A.SwitchListTile$(A.Theme_of(context).colorScheme.secondary, _null, new A._UserEditState_build_closure3(viewModel, user), _null, t4, t3, t7)], t10), _null, _null, false, _null, false, _null)], t10); if (!t7) { t4 = A._setArrayType([new A.DataColumn(new A.SizedBox(_null, _null, _null, _null), false, _null), new A.DataColumn(A.Text$(t1.get$create(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null), new A.DataColumn(A.Text$(t1.get$view(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null), new A.DataColumn(A.Text$(t1.get$edit(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null)], type$.JSArray_legacy_DataColumn); t7 = A._setArrayType([A.DataRow$(A._setArrayType([A.DataCell$(A.Text$(t1.get$all(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new A._UserEditState_build_closure4(_this)), A.DataCell$(new A._PermissionCheckbox(userCompany, "create_all", new A._UserEditState_build_closure5(_this), false, _null), new A._UserEditState_build_closure6(_this)), A.DataCell$(new A._PermissionCheckbox(userCompany, "view_all", new A._UserEditState_build_closure7(_this), false, _null), new A._UserEditState_build_closure8(_this)), A.DataCell$(new A._PermissionCheckbox(userCompany, "edit_all", new A._UserEditState_build_closure9(_this), false, _null), new A._UserEditState_build_closure10(_this))], type$.JSArray_legacy_DataCell))], type$.JSArray_legacy_DataRow); t8 = type$.MappedIterable_of_legacy_EntityType_and_legacy_DataRow; B.JSArray_methods.addAll$1(t7, A.List_List$of(new A.MappedIterable(new A.WhereIterable(A._setArrayType([B.EntityType_client, B.EntityType_product, B.EntityType_invoice, B.EntityType_payment, B.EntityType_recurringInvoice, B.EntityType_quote, B.EntityType_credit, B.EntityType_project, B.EntityType_task, B.EntityType_vendor, B.EntityType_expense], type$.JSArray_legacy_EntityType), new A._UserEditState_build_closure11(state), type$.WhereIterable_legacy_EntityType), new A._UserEditState_build_closure12(_this, t1, userCompany), t8), true, t8._eval$1("Iterable.E"))); t3.push(A.FormCard$(A.SingleChildScrollView$(A.DataTable$(_null, _null, t4, _null, _null, _null, _null, _null, _null, t7, false, true, true, _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0), _null, _null, _null, false, _null, false, _null)); } return A.EditScaffold$(_null, t9, new A.AppTabForm(_this._user_edit$_focusNode, t6, A._setArrayType([new A.ScrollableListView(t11, _null, _null, _null), new A.ScrollableListView(t12, _null, _null, _null), new A.ScrollableListView(t3, _null, _null, _null)], t10), t5, _null, _null), _null, user, _null, false, _null, new A._UserEditState_build_closure13(viewModel), new A._UserEditState_build_closure14(_this, viewModel), _null, t2); } }; A._UserEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_user_edit$_onChanged()); }, $signature: 33 }; A._UserEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_user_edit$_onChanged()); }, $signature: 33 }; A._UserEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_user_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._UserEditState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t2 = J.trim$0$s(t1._lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t2; t2 = J.trim$0$s(t1._emailController._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_email = t2; t2 = J.trim$0$s(t1._phoneController._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_phone = t2; t2 = J.trim$0$s(t1._custom1Controller._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_customValue1 = t2; t2 = J.trim$0$s(t1._custom2Controller._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_customValue2 = t2; t2 = J.trim$0$s(t1._custom3Controller._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_customValue3 = t2; t1 = J.trim$0$s(t1._custom4Controller._change_notifier$_value.text); b.get$_user_model$_$this()._user_model$_customValue4 = t1; return b; }, $signature: 77 }; A._UserEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onUserChanged.call$1(this.user); }, $signature: 1 }; A._UserEditState__togglePermission_closure.prototype = { call$1(value) { return value.length !== 0; }, $signature: 16 }; A._UserEditState__togglePermission_closure0.prototype = { call$1(b) { b.get$userCompany().get$_company_model$_$this()._permissions = this.permissionsString; return b; }, $signature: 77 }; A._UserEditState_build_closure13.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._UserEditState_build_closure14.prototype = { call$1(context) { var isValid = $.$get$_UserEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._UserEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._UserEditState_build__closure.prototype = { call$0() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; A._UserEditState_build_closure.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAFirstName() : null; }, $signature: 15 }; A._UserEditState_build_closure0.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterALastName() : null; }, $signature: 15 }; A._UserEditState_build_closure1.prototype = { call$1(val) { return val.length === 0 || B.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; A._UserEditState_build_closure2.prototype = { call$2(channel, options) { this.viewModel.onUserChanged.call$1(this.user.rebuild$1(new A._UserEditState_build__closure9(channel, options))); }, $signature: 485 }; A._UserEditState_build__closure9.prototype = { call$1(b) { b.get$userCompany().get$notifications().$indexSet(0, this.channel, A.BuiltList_BuiltList$from(this.options, type$.legacy_String)); return b; }, $signature: 77 }; A._UserEditState_build_closure3.prototype = { call$1(value) { return this.viewModel.onUserChanged.call$1(this.user.rebuild$1(new A._UserEditState_build__closure8(value))); }, $signature: 10 }; A._UserEditState_build__closure8.prototype = { call$1(b) { b.get$userCompany().get$_company_model$_$this()._isAdmin = this.value; return b; }, $signature: 77 }; A._UserEditState_build_closure4.prototype = { call$0() { var t1 = this.$this; t1._togglePermission$1("create_all"); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build__closure7(t1)); }, $signature: 1 }; A._UserEditState_build__closure7.prototype = { call$1(duration) { var t1 = this.$this; t1._togglePermission$1("view_all"); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build___closure0(t1)); }, $signature: 36 }; A._UserEditState_build___closure0.prototype = { call$1(duration) { this.$this._togglePermission$1("edit_all"); }, $signature: 36 }; A._UserEditState_build_closure5.prototype = { call$1(value) { return this.$this._togglePermission$1("create_all"); }, $signature: 40 }; A._UserEditState_build_closure6.prototype = { call$0() { return this.$this._togglePermission$1("create_all"); }, $signature: 0 }; A._UserEditState_build_closure7.prototype = { call$1(value) { return this.$this._togglePermission$1("view_all"); }, $signature: 40 }; A._UserEditState_build_closure8.prototype = { call$0() { return this.$this._togglePermission$1("view_all"); }, $signature: 0 }; A._UserEditState_build_closure9.prototype = { call$1(value) { return this.$this._togglePermission$1("edit_all"); }, $signature: 40 }; A._UserEditState_build_closure10.prototype = { call$0() { return this.$this._togglePermission$1("edit_all"); }, $signature: 0 }; A._UserEditState_build_closure11.prototype = { call$1(entityType) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return t1.userCompanyStates._list[t2].userCompany.company.isModuleEnabled$1(entityType); }, $signature: 273 }; A._UserEditState_build_closure12.prototype = { call$1(type) { var t7, _null = null, createPermission = "create_" + A.toSnakeCase(A.S(type)), editPermission = "edit_" + A.toSnakeCase(A.S(type)), viewPermission = "view_" + A.toSnakeCase(A.S(type)), t1 = this.$this, t2 = A.DataCell$(A.Text$(this.localization.lookup$1(A.S(type)), _null, _null, _null, _null, _null, _null, _null, _null, _null), new A._UserEditState_build__closure0(t1, createPermission, viewPermission, editPermission)), t3 = this.userCompany, t4 = t3.permissions, t5 = B.JSString_methods.contains$1(t4, "create_all"), t6 = t5 ? _null : new A._UserEditState_build__closure1(t1, createPermission); t6 = A.DataCell$(new A._PermissionCheckbox(t3, createPermission, new A._UserEditState_build__closure2(t1, createPermission), t5, _null), t6); t5 = B.JSString_methods.contains$1(t4, "view_all"); t7 = t5 ? _null : new A._UserEditState_build__closure3(t1, viewPermission); t7 = A.DataCell$(new A._PermissionCheckbox(t3, viewPermission, new A._UserEditState_build__closure4(t1, viewPermission), t5, _null), t7); t4 = B.JSString_methods.contains$1(t4, "edit_all"); t5 = t4 ? _null : new A._UserEditState_build__closure5(t1, editPermission); return A.DataRow$(A._setArrayType([t2, t6, t7, A.DataCell$(new A._PermissionCheckbox(t3, editPermission, new A._UserEditState_build__closure6(t1, editPermission), t4, _null), t5)], type$.JSArray_legacy_DataCell)); }, $signature: 2767 }; A._UserEditState_build__closure0.prototype = { call$0() { var _this = this, t1 = _this.$this; t1._togglePermission$1(_this.createPermission); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build___closure(t1, _this.viewPermission, _this.editPermission)); }, $signature: 1 }; A._UserEditState_build___closure.prototype = { call$1(duration) { var t1 = this.$this; t1._togglePermission$1(this.viewPermission); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build____closure(t1, this.editPermission)); }, $signature: 36 }; A._UserEditState_build____closure.prototype = { call$1(duration) { this.$this._togglePermission$1(this.editPermission); }, $signature: 36 }; A._UserEditState_build__closure2.prototype = { call$1(value) { return this.$this._togglePermission$1(this.createPermission); }, $signature: 40 }; A._UserEditState_build__closure1.prototype = { call$0() { return this.$this._togglePermission$1(this.createPermission); }, $signature: 0 }; A._UserEditState_build__closure4.prototype = { call$1(value) { return this.$this._togglePermission$1(this.viewPermission); }, $signature: 40 }; A._UserEditState_build__closure3.prototype = { call$0() { return this.$this._togglePermission$1(this.viewPermission); }, $signature: 0 }; A._UserEditState_build__closure6.prototype = { call$1(value) { return this.$this._togglePermission$1(this.editPermission); }, $signature: 40 }; A._UserEditState_build__closure5.prototype = { call$0() { return this.$this._togglePermission$1(this.editPermission); }, $signature: 0 }; A._PermissionCheckbox.prototype = { build$1(_, context) { var t2, _this = this, _null = null, t1 = _this.checkAll; if (t1) t2 = true; else t2 = B.JSString_methods.contains$1(_this.userCompany.permissions, _this.permission); t1 = t1 ? _null : _this.onChanged; return A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, _null, t1, _null, _null, false, t2); } }; A.__UserEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.UserEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.UserEditScreen_build_closure(), new A.UserEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserEditVM); } }; A.UserEditScreen_build_closure0.prototype = { call$1(store) { return A.UserEditVM_UserEditVM$fromStore(store); }, $signature: 2768 }; A.UserEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.UserEdit(viewModel, new A.ValueKey(viewModel.user.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2769 }; A.UserEditVM.prototype = { get$user(receiver) { return this.user; }, get$company() { return this.company; } }; A.UserEditVM_UserEditVM$fromStore_closure.prototype = { call$1(user) { this.store.get$_dispatchers()[0].call$1(new A.UpdateUser(user)); }, $signature: 181 }; A.UserEditVM_UserEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.UserEntity_UserEntity(_null, _null, _null), true); t1 = this.state.uiState.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.UserEditVM_UserEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.UserEditVM_UserEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; A.UserEditVM_UserEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, user = A._lateReadCheck(t1.__Store__state, "_state").uiState.userUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_UserEntity); A.passwordCallback(false, new A.UserEditVM_UserEditVM$fromStore___closure(t1, new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_UserEntity), user), this.context, false); return t2.then$1$1(0, new A.UserEditVM_UserEditVM$fromStore___closure0(user, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.UserEditVM_UserEditVM$fromStore___closure1()); }, $signature: 37 }; A.UserEditVM_UserEditVM$fromStore___closure.prototype = { call$2(password, idToken) { this.store.get$_dispatchers()[0].call$1(new A.SaveUserRequest(this.completer, this.user, password, idToken)); }, $signature: 38 }; A.UserEditVM_UserEditVM$fromStore___closure0.prototype = { call$1(savedUser) { var _this = this, _s30_ = "/settings/user_management/view", t1 = _this.user, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_user"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedUser(); A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s30_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s30_, t1, t1); } else t2.pop$1(0, savedUser); } else A.viewEntity(false, savedUser, null, true); }, $signature: 181 }; A.UserEditVM_UserEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.UserEditVM_UserEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.UserEditVM_UserEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.UserListItem.prototype = { build$1(_, context) { var t5, t6, _this = this, _null = null, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, t1 = uiState.userUIState.listUIState.selectedIds, t2 = _this.filter, t3 = t2 != null && t2.length !== 0, t4 = _this.user, filterMatch = t3 ? t4.matchesFilterValue$1(t2) : t4.email; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = t2._list[t3].userCompany; t1 = t1 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.UserListItem_build_closure(_this), _null, _null, false, false), _null) : _null; t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = t4.get$fullName().length !== 0 ? t4.get$fullName() : t4.email; t6 = type$.JSArray_legacy_Widget; t2 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2.size._dx); t5 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t3, t4, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t1, new A.UserListItem_build_closure0(_this), new A.UserListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t5, new A.EntityStateLabel(t4, _null)], t6), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t2, _null, _null), false, true, true, _null); }, get$user(receiver) { return this.user; } }; A.UserListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.user, false, false); return t1; }, $signature: 0 }; A.UserListItem_build_closure0.prototype = { call$0() { var t1 = this.$this.onLongPress.call$0(); return t1; }, $signature: 0 }; A.UserListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.UserListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.UserListBuilder_build_closure(), A.user_list_vm_UserListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserListVM); } }; A.UserListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return A.EntityList$(viewModel.userList, B.EntityType_user, new A.UserListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2770 }; A.UserListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, userId = J.$index$asx(t1.userList, index), user = t1.userMap._map$_map.$index(0, userId); return new A.UserListItem(user, new A.UserListBuilder_build___closure(new A.UserListBuilder_build__closure_showDialog(user)), t1.filter, null); }, $signature: 2771 }; A.UserListBuilder_build__closure_showDialog.prototype = { call$0() { return A.showEntityActionsDialog(null, A._setArrayType([this.user], type$.JSArray_legacy_BaseEntity), false); }, $signature: 0 }; A.UserListBuilder_build___closure.prototype = { call$0() { return this.showDialog.call$0(); }, $signature: 0 }; A.UserListVM.prototype = {}; A.UserListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.UserListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.UserListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortUsers(field)); }, $signature: 5 }; A.UserListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearUserMultiselect()); }, $signature: 9 }; A.UserScreen.prototype = { build$1(_, context) { var t4, t5, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.userUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.userList; t2 = t2.filter; t5 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, _null, B.EntityType_user, false, B.List_empty17, new A.UserScreen_build_closure(store), new A.UserScreen_build_closure0(store), new A.UserScreen_build_closure1(store), new A.UserScreen_build_closure2(store), new A.UserScreen_build_closure3(store), new A.UserScreen_build_closure4(store), new A.UserScreen_build_closure5(store), _null, A._setArrayType(["first_name", "last_name", "email"], type$.JSArray_legacy_String), B.List_empty18, _null); t3 = state.prefState.appLayout === B.AppLayout_mobile && userCompany.can$2(B.UserPermission_create, B.EntityType_user) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "user_fab", false, new A.UserScreen_build_closure6(context), t3.get$newUser()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_user, t2, new A.UserScreen_build_closure7(store), t4, _null, _null, new A.UserScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.UserListBuilder(_null), t5, B.EntityType_user, t3, 0, _null, new A.UserScreen_build_closure9(store), new A.UserScreen_build_closure10(store)); } }; A.UserScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartUserMultiselect()); }, $signature: 9 }; A.UserScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterUsers(value)); }, $signature: 11 }; A.UserScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByState(state)); }, $signature: 27 }; A.UserScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.userUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearUserMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartUserMultiselect()); }, $signature: 1 }; A.UserScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortUsers(value)); }, $signature: 5 }; A.UserScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByCustom1(value)); }, $signature: 5 }; A.UserScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByCustom2(value)); }, $signature: 5 }; A.UserScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByCustom3(value)); }, $signature: 5 }; A.UserScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByCustom4(value)); }, $signature: 5 }; A.UserScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterUsersByState(state)); }, $signature: 27 }; A.UserScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.userUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearUserMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartUserMultiselect()); }, $signature: 1 }; A.UserScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_user); }, $signature: 1 }; A.UserScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.UserScreenBuilder_build_closure(), A.user_screen_vm_UserScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserScreenVM); } }; A.UserScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.UserScreen(vm, null); }, $signature: 2772 }; A.UserScreenVM.prototype = {}; A.UserView.prototype = { build$1(_, context) { var userCompany, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), user = this.viewModel.user, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; userCompany = t2[t3].userCompany; t4 = this.isFilter; t5 = A._setArrayType([], type$.JSArray_legacy_Widget); if (user.emailVerifiedAt == null) t5.push(new A.IconMessage(t1.get$emailSentToConfirmEmail(), _null, B.MaterialColor_Map_JNZaB_4294940672, _null, _null)); t5.push(A.EntityHeader$(user, t1.get$email(t1), t1.get$phone(t1), _null, _null, _null, user.email)); t5.push(new A.ListDivider(_null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_client) || userCompany.can$2(B.UserPermission_create, B.EntityType_client)) t5.push(new A.EntitiesListTile(user, B.EntityType_client, t1.get$clients(t1), $.$get$memoizedClientStatsForUser().call$2(user.id, t2[t3].clientState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_invoice) || userCompany.can$2(B.UserPermission_create, B.EntityType_invoice)) t5.push(new A.EntitiesListTile(user, B.EntityType_invoice, t1.get$invoices(), $.$get$memoizedInvoiceStatsForUser().call$2(user.id, t2[t3].invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_quote) || userCompany.can$2(B.UserPermission_create, B.EntityType_quote)) t5.push(new A.EntitiesListTile(user, B.EntityType_quote, t1.get$quotes(t1), $.$get$memoizedQuoteStatsForUser().call$2(user.id, t2[t3].quoteState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_credit) || userCompany.can$2(B.UserPermission_create, B.EntityType_credit)) t5.push(new A.EntitiesListTile(user, B.EntityType_credit, t1.get$credits(), $.$get$memoizedCreditStatsForUser().call$2(user.id, t2[t3].creditState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_task) || userCompany.can$2(B.UserPermission_create, B.EntityType_task)) t5.push(new A.EntitiesListTile(user, B.EntityType_task, t1.get$tasks(), $.$get$memoizedTaskStatsForUser().call$2(user.id, t2[t3].taskState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_project) || userCompany.can$2(B.UserPermission_create, B.EntityType_project)) t5.push(new A.EntitiesListTile(user, B.EntityType_project, t1.get$projects(), $.$get$memoizedProjectStatsForUser().call$2(user.id, t2[t3].projectState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_expense) || userCompany.can$2(B.UserPermission_create, B.EntityType_expense)) t5.push(new A.EntitiesListTile(user, B.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForUser().call$2(user.id, t2[t3].expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_vendor) || userCompany.can$2(B.UserPermission_create, B.EntityType_vendor)) t5.push(new A.EntitiesListTile(user, B.EntityType_vendor, t1.get$vendors(), $.$get$memoizedVendorStatsForUser().call$2(user.id, t2[t3].vendorState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_recurringInvoice) || userCompany.can$2(B.UserPermission_create, B.EntityType_recurringInvoice)) t5.push(new A.EntitiesListTile(user, B.EntityType_recurringInvoice, t1.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForUser().call$2(user.id, t2[t3].recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); if (userCompany.can$2(B.UserPermission_view, B.EntityType_recurringExpense) || userCompany.can$2(B.UserPermission_create, B.EntityType_recurringExpense)) t5.push(new A.EntitiesListTile(user, B.EntityType_recurringExpense, t1.get$recurringExpenses(), $.$get$memoizedRecurringExpenseStatsForUser().call$2(user.id, t2[t3].recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t4, false, _null)); return new A.ViewScaffold(t4, user, new A.ScrollableListView(t5, _null, _null, _null), new A.UserView_build_closure(this), _null, _null); } }; A.UserView_build_closure.prototype = { call$0() { return this.$this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.UserViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.UserViewScreen_build_closure(this), new A.UserViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserViewVM); } }; A.UserViewScreen_build_closure0.prototype = { call$1(store) { return A.UserViewVM_UserViewVM$fromStore(store); }, $signature: 2773 }; A.UserViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.UserView(vm, this.$this.isFilter, null); }, $signature: 2774 }; A.UserViewVM.prototype = { get$user(receiver) { return this.user; }, get$company() { return this.company; } }; A.UserViewVM_UserViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/user_management")); }, $signature: 1 }; A.VendorEdit.prototype = { createState$0() { return new A._VendorEditState(null, null, B._StateLifecycle_0); } }; A._VendorEditState.prototype = { initState$0() { this.super$State$initState(); this._vendor_edit$_controller = A.TabController$(null, 0, 4, this); }, dispose$0(_) { this._vendor_edit$_controller.dispose$0(0); this.super$__VendorEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_vendor), t2 = vendor.get$isNew() ? t1.get$newVendor() : t1.get$editVendor(), t3 = type$.JSArray_legacy_Widget; t1 = A.TabBar$(_this._vendor_edit$_controller, _null, A.getLayout(context) === B.AppLayout_mobile, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$contacts()), A.Tab$(_null, t1.get$notes()), A.Tab$(_null, t1.get$address())], t3)); t4 = $.$get$_VendorEditState__formKey(); t5 = type$.ValueKey_legacy_String; t6 = "__vendor_" + vendor.id; t7 = "" + vendor.updatedAt; if (isFullscreen) t3 = new A.VendorEditDesktop(viewModel, new A.ValueKey(t6 + "_" + t7 + "__", t5)); else { t8 = _this._vendor_edit$_controller; t9 = A._setArrayType([new A.VendorEditDetails(_this._widget.viewModel, _null)], t3); t10 = _this._widget.viewModel; t5 = A.TabBarView$(A._setArrayType([new A.ScrollableListView(t9, _null, _null, _null), new A.VendorEditContactsScreen(t10, _null), new A.ScrollableListView(A._setArrayType([new A.VendorEditNotes(t10, _null)], t3), _null, _null, _null), new A.ScrollableListView(A._setArrayType([new A.VendorEditAddress(_this._widget.viewModel, _null)], t3), _null, _null, _null)], t3), t8, new A.ValueKey(t6 + "_" + t7 + "__", t5)); t3 = t5; } return A.EditScaffold$(_null, t1, A.Form$(_null, t3, t4), new A.VendorEditFooter(vendor, _null), vendor, _null, isFullscreen, _null, new A._VendorEditState_build_closure(viewModel), new A._VendorEditState_build_closure0(viewModel), _null, t2); } }; A._VendorEditState_build_closure.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._VendorEditState_build_closure0.prototype = { call$1(context) { if (!$.$get$_VendorEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A.__VendorEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.VendorEditAddress.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.VendorEditAddressState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), A._setArrayType([], type$.JSArray_legacy_TextEditingController), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.VendorEditAddressState.prototype = { didChangeDependencies$0() { var vendor, _this = this, t1 = _this._vendor_edit_address$_address1Controller, t2 = _this._vendor_edit_address$_address2Controller, t3 = _this._vendor_edit_address$_cityController, t4 = _this._vendor_edit_address$_stateController, t5 = _this._vendor_edit_address$_postalCodeController, t6 = A._setArrayType([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_address$_controllers = t6; B.JSArray_methods.forEach$1(t6, new A.VendorEditAddressState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.address1); t2.set$text(0, vendor.address2); t3.set$text(0, vendor.city); t4.set$text(0, vendor.state); t5.set$text(0, vendor.postalCode); B.JSArray_methods.forEach$1(_this._vendor_edit_address$_controllers, new A.VendorEditAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._vendor_edit_address$_controllers, new A.VendorEditAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_address$_onChanged$0() { var _this = this, vendor = _this._widget.viewModel.vendor.rebuild$1(new A.VendorEditAddressState__onChanged_closure(_this)); if (!J.$eq$(vendor, _this._widget.viewModel.vendor)) _this._vendor_edit_address$_debouncer.run$1(new A.VendorEditAddressState__onChanged_closure0(_this, vendor)); }, build$1(_, context) { var _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, t2 = viewModel.state, t3 = t2.prefState.isEditorFullScreen$1(B.EntityType_vendor) ? B.EdgeInsets_6_12_12_0 : _null, t4 = t1.get$address1(), t5 = viewModel.onSavePressed; return A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_9_null_null, t4, _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$address2(), _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_cityController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$city(t1), _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_stateController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$state(t1), _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t5, true, _null, _null, B.TextAlign_4, _null), A.EntityDropdown$(true, false, false, vendor.countryId, $.$get$memoizedCountryList().call$1(t2.staticState.countryMap), _null, B.EntityType_country, B.List_empty0, t1.get$country(t1), _null, _null, new A.VendorEditAddressState_build_closure(viewModel, vendor), _null, _null, _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null, true, t3); } }; A.VendorEditAddressState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_address$_onChanged()); }, $signature: 12 }; A.VendorEditAddressState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_address$_onChanged()); }, $signature: 12 }; A.VendorEditAddressState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_address$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.VendorEditAddressState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_address$_address1Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_address1 = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_address2Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_address2 = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_cityController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_city = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_stateController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_state = t2; t1 = J.trim$0$s(t1._vendor_edit_address$_postalCodeController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_postalCode = t1; return b; }, $signature: 105 }; A.VendorEditAddressState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; A.VendorEditAddressState_build_closure.prototype = { call$1(country) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditAddressState_build__closure(country))); }, $signature: 61 }; A.VendorEditAddressState_build__closure.prototype = { call$1(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); b.get$_vendor_model$_$this()._vendor_model$_countryId = t1; return b; }, $signature: 105 }; A.VendorEditContacts.prototype = { createState$0() { return new A._VendorEditContactsState(B._StateLifecycle_0); } }; A._VendorEditContactsState.prototype = { _showContactEditor$2(contact, context) { A.showDialog(null, true, new A._VendorEditContactsState__showContactEditor_closure(this, contact), context, null, true, type$.legacy_VendorContactEditDetails); }, build$1(_, context) { var t3, contacts, contact, t4, t5, t6, children, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, vendor = viewModel.vendor, isFullscreen = t2.vendorViewModel.state.prefState.isEditorFullScreen$1(B.EntityType_vendor); t2 = vendor.contacts._list; if (t2.length > 1) { t3 = A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,ContactListTile*>"); contacts = A.List_List$of(new A.MappedListIterable(t2, new A._VendorEditContactsState_build_closure(_this, context), t3), true, t3._eval$1("ListIterable.E")); } else { contact = t2[0]; t3 = _this._widget.vendorViewModel; t4 = contact.get$entityType().toString$0(0); t5 = contact.id; t6 = t2.length; contacts = A._setArrayType([new A.VendorContactEditDetails(B.JSArray_methods.indexOf$2(t2, contact, 0), contact, viewModel, t3, t6 > 1, new A.ValueKey("__" + t4 + "__" + t5 + "__", type$.ValueKey_String))], type$.JSArray_legacy_Widget); } contact = viewModel.contact; contact = B.JSArray_methods.contains$1(t2, contact) ? contact : _null; if (contact != null && !contact.$eq(0, _this.selectedContact)) { _this.selectedContact = contact; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._VendorEditContactsState_build_closure0(_this, contact, context)); } children = A._setArrayType([], type$.JSArray_legacy_Widget); B.JSArray_methods.addAll$1(children, contacts); t1 = t2.length === 1 ? t1.get$addSecondContact() : t1.get$addContact(); children.push(new A.Padding(B.EdgeInsets_25_0_25_6, new A.AppButton(_null, _null, t1.toUpperCase(), new A._VendorEditContactsState_build_closure1(viewModel), _null, _null), _null)); return isFullscreen ? A.Column$(children, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1) : new A.ScrollableListView(children, _null, _null, _null); } }; A._VendorEditContactsState__showContactEditor_closure.prototype = { call$1(context) { var t2, t3, t4, t5, t6, t1 = this.$this._widget, viewModel = t1.viewModel, vendor = viewModel.vendor; t1 = t1.vendorViewModel; t2 = this.contact; t3 = t2.get$entityType().toString$0(0); t4 = t2.id; t5 = vendor.contacts._list; t6 = t5.length; return new A.VendorContactEditDetails(B.JSArray_methods.indexOf$2(t5, B.JSArray_methods.firstWhere$2$orElse(t5, new A._VendorEditContactsState__showContactEditor__closure(t2), null), 0), t2, viewModel, t1, t6 > 1, new A.ValueKey("__" + t3 + "__" + t4 + "__", type$.ValueKey_String)); }, $signature: 2775 }; A._VendorEditContactsState__showContactEditor__closure.prototype = { call$1(c) { return c.id === this.contact.id; }, $signature: 194 }; A._VendorEditContactsState_build_closure.prototype = { call$1(contact) { return new A.ContactListTile(new A._VendorEditContactsState_build__closure(this.$this, contact, this.context), contact, null); }, $signature: 2776 }; A._VendorEditContactsState_build__closure.prototype = { call$0() { return this.$this._showContactEditor$2(this.contact, this.context); }, $signature: 0 }; A._VendorEditContactsState_build_closure0.prototype = { call$1(duration) { this.$this._showContactEditor$2(this.contact, this.context); }, $signature: 36 }; A._VendorEditContactsState_build_closure1.prototype = { call$0() { return this.viewModel.onAddContactPressed.call$0(); }, $signature: 9 }; A.ContactListTile.prototype = { build$1(_, context) { var _null = null, t1 = A.Theme_of(context).canvasColor, t2 = this.contact, t3 = t2.get$fullName().length !== 0 ? A.Text$(t2.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null) : A.Text$(A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$blankContact(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontStyle_1, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t4 = t2.email; return A.Material$(B.Duration_200000, true, _null, new A.Padding(B.EdgeInsets_0_4_0_4, A.Column$(A._setArrayType([A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, this.onTap, false, _null, _null, A.Text$(t4.length !== 0 ? t4 : t2.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, A.Icon$(B.IconData_58397_MaterialIcons_null_true, _null, _null), _null), A.Divider$(_null, 1, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); }, get$contact() { return this.contact; } }; A.VendorContactEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.VendorContactEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); }, get$contact() { return this.contact; } }; A.VendorContactEditDetailsState.prototype = { _onDoneContactPressed$0() { var t2, _this = this, t1 = _this._widget; if (t1.isDialog) { t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onDoneContactPressed.call$1(t2); t2 = _this._framework$_element; t2.toString; A.Navigator_of(t2, false).pop$0(0); } else { t1 = t1.vendorViewModel; t2 = _this._framework$_element; t2.toString; t1.onSavePressed.call$1(t2); } }, didChangeDependencies$0() { var t1, t2, t3, t4, t5, contact, _this = this; if (_this._vendor_edit_contacts$_controllers.length !== 0) return; t1 = _this._vendor_edit_contacts$_firstNameController; t2 = _this._vendor_edit_contacts$_lastNameController; t3 = _this._vendor_edit_contacts$_emailController; t4 = _this._vendor_edit_contacts$_phoneController; t5 = A._setArrayType([t1, t2, t3, t4], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_contacts$_controllers = t5; B.JSArray_methods.forEach$1(t5, new A.VendorContactEditDetailsState_didChangeDependencies_closure(_this)); contact = _this._widget.contact; t1.set$text(0, contact.firstName); t2.set$text(0, contact.lastName); t3.set$text(0, contact.email); t4.set$text(0, contact.phone); B.JSArray_methods.forEach$1(_this._vendor_edit_contacts$_controllers, new A.VendorContactEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._vendor_edit_contacts$_controllers, new A.VendorContactEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_contacts$_onChanged$0() { var _this = this, contact = _this._widget.contact.rebuild$1(new A.VendorContactEditDetailsState__onChanged_closure(_this)); if (!contact.$eq(0, _this._widget.contact)) _this._vendor_edit_contacts$_debouncer.run$1(new A.VendorContactEditDetailsState__onChanged_closure0(_this, contact)); }, build$1(_, context) { var column, t3, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, isFullscreen = t2.vendorViewModel.state.prefState.isEditorFullScreen$1(B.EntityType_vendor); t2 = type$.JSArray_legacy_Widget; column = A.Column$(A._setArrayType([A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t1.get$firstName(t1), _null, _null, false, _null, _null, new A.VendorContactEditDetailsState_build_closure(_this), true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_8_null_null, t1.get$lastName(t1), _null, _null, false, _null, _null, new A.VendorContactEditDetailsState_build_closure0(_this), true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_5_null_null, t1.get$email(t1), _null, _null, false, _null, _null, new A.VendorContactEditDetailsState_build_closure1(_this), true, _null, _null, B.TextAlign_4, new A.VendorContactEditDetailsState_build_closure2(t1)), A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, new A.VendorContactEditDetailsState_build_closure3(_this), true, _null, _null, B.TextAlign_4, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); if (_this._widget.isDialog) { t3 = A.SingleChildScrollView$(column, _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_1); t3 = A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.VendorContactEditDetailsState_build_closure4(_this, context), _null), A.TextButton$(false, A.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.VendorContactEditDetailsState_build_closure5(viewModel, context), _null)], t2), B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, _null); t1 = t3; } else t1 = A.FormCard$(column, _null, _null, _null, false, _null, false, isFullscreen ? B.EdgeInsets_6_12_6_0 : _null); return t1; } }; A.VendorContactEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); }, $signature: 12 }; A.VendorContactEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); }, $signature: 12 }; A.VendorContactEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.VendorContactEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_contacts$_firstNameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_firstName = t2; t2 = J.trim$0$s(t1._vendor_edit_contacts$_lastNameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_lastName = t2; t2 = J.trim$0$s(t1._vendor_edit_contacts$_emailController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_email = t2; t1 = J.trim$0$s(t1._vendor_edit_contacts$_phoneController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_phone = t1; return b; }, $signature: 804 }; A.VendorContactEditDetailsState__onChanged_closure0.prototype = { call$0() { var t1 = this.$this._widget; t1.viewModel.onChangedContact.call$2(this.contact, t1.index); }, $signature: 1 }; A.VendorContactEditDetailsState_build_closure.prototype = { call$1(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 30 }; A.VendorContactEditDetailsState_build_closure0.prototype = { call$1(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 30 }; A.VendorContactEditDetailsState_build_closure1.prototype = { call$1(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 30 }; A.VendorContactEditDetailsState_build_closure2.prototype = { call$1(value) { return value.length !== 0 && !B.JSString_methods.contains$1(value, "@") ? this.localization.get$emailIsInvalid() : null; }, $signature: 15 }; A.VendorContactEditDetailsState_build_closure3.prototype = { call$1(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 30 }; A.VendorContactEditDetailsState_build_closure4.prototype = { call$0() { var t1 = this.context; return A.confirmCallback(false, new A.VendorContactEditDetailsState_build__closure(this.$this, t1), t1, null, false, null); }, $signature: 0 }; A.VendorContactEditDetailsState_build__closure.prototype = { call$1(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveContactPressed.call$1(t1.index); A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 11 }; A.VendorContactEditDetailsState_build_closure5.prototype = { call$0() { this.viewModel.onDoneContactPressed.call$0(); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.VendorEditContactsScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.VendorEditContactsScreen_build_closure(this), new A.VendorEditContactsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorEditContactsVM); } }; A.VendorEditContactsScreen_build_closure0.prototype = { call$1(store) { return A.VendorEditContactsVM_VendorEditContactsVM$fromStore(store); }, $signature: 2777 }; A.VendorEditContactsScreen_build_closure.prototype = { call$2(context, vm) { return new A.VendorEditContacts(vm, this.$this.viewModel, null); }, $signature: 2778 }; A.VendorEditContactsVM.prototype = { get$company() { return this.company; }, get$vendor(receiver) { return this.vendor; }, get$contact() { return this.contact; } }; A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure.prototype = { call$0() { var contact = A.VendorContactEntity_VendorContactEntity(), t1 = this.store; t1.get$_dispatchers()[0].call$1(new A.AddVendorContact(contact)); t1.get$_dispatchers()[0].call$1(new A.EditVendorContact(contact)); }, $signature: 1 }; A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0.prototype = { call$1(index) { return this.store.get$_dispatchers()[0].call$1(new A.DeleteVendorContact(index)); }, $signature: 180 }; A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.EditVendorContact(null)); }, $signature: 9 }; A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2.prototype = { call$2(contact, index) { this.store.get$_dispatchers()[0].call$1(new A.UpdateVendorContact(index, contact)); }, $signature: 2779 }; A.VendorEditDesktop.prototype = { build$1(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new A.ScrollableListView(A._setArrayType([A.Row$(A._setArrayType([A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.VendorEditDetails(t1, _null), new A.VendorEditNotes(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.VendorEditContactsScreen(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1), A.Expanded$(A.FocusTraversalGroup$(A.Column$(A._setArrayType([new A.VendorEditAddress(t1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), true, true, _null), 1)], t2), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 12, _null, _null)], t2), _null, _null, _null); } }; A.VendorEditDetails.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.VendorEditDetailsState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.VendorEditDetailsState.prototype = { didChangeDependencies$0() { var vendor, _this = this, t1 = _this._vendor_edit_details$_numberController, t2 = _this._vendor_edit_details$_nameController, t3 = _this._vendor_edit_details$_idNumberController, t4 = _this._vendor_edit_details$_vatNumberController, t5 = _this._vendor_edit_details$_websiteController, t6 = _this._vendor_edit_details$_phoneController, t7 = _this._vendor_edit_details$_custom1Controller, t8 = _this._vendor_edit_details$_custom2Controller, t9 = _this._vendor_edit_details$_custom3Controller, t10 = _this._vendor_edit_details$_custom4Controller, t11 = A._setArrayType([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_details$_controllers = t11; B.JSArray_methods.forEach$1(t11, new A.VendorEditDetailsState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.number); t2.set$text(0, vendor.name); t3.set$text(0, vendor.idNumber); t4.set$text(0, vendor.vatNumber); t5.set$text(0, vendor.website); t6.set$text(0, vendor.phone); t7.set$text(0, vendor.customValue1); t8.set$text(0, vendor.customValue2); t9.set$text(0, vendor.customValue3); t10.set$text(0, vendor.customValue4); t10 = _this._vendor_edit_details$_controllers; (t10 && B.JSArray_methods).forEach$1(t10, new A.VendorEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._vendor_edit_details$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.VendorEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_details$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.vendor, vendor = t1.rebuild$1(new A.VendorEditDetailsState__onChanged_closure(this)); if (!J.$eq$(vendor, t1)) this._vendor_edit_details$_debouncer.run$1(new A.VendorEditDetailsState__onChanged_closure0(viewModel, vendor)); }, build$1(_, context) { var _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, t2 = viewModel.state.prefState.isEditorFullScreen$1(B.EntityType_vendor) ? B.EdgeInsets_12_12_6_0 : _null, t3 = viewModel.onSavePressed, t4 = t1.get$name(t1); t4 = A._setArrayType([A.DecoratedFormField$(false, _null, true, false, _this._vendor_edit_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t4, _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, new A.VendorEditDetailsState_build_closure(context))], type$.JSArray_legacy_Widget); if (!vendor.get$isNew()) t4.push(A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$number(t1), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(new A.UserPicker(vendor.assignedUserId, new A.VendorEditDetailsState_build_closure0(viewModel, vendor), _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$idNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t1.get$vatNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_websiteController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t1.get$website(), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(A.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t3, true, _null, _null, B.TextAlign_4, _null)); t4.push(new A.CustomField(_this._vendor_edit_details$_custom1Controller, _null, t3, "vendor1", vendor.customValue1, false, _null)); t4.push(new A.CustomField(_this._vendor_edit_details$_custom2Controller, _null, t3, "vendor2", vendor.customValue2, false, _null)); t4.push(new A.CustomField(_this._vendor_edit_details$_custom3Controller, _null, t3, "vendor3", vendor.customValue3, false, _null)); t4.push(new A.CustomField(_this._vendor_edit_details$_custom4Controller, _null, t3, "vendor4", vendor.customValue4, false, _null)); return A.FormCard$(_null, t4, _null, _null, false, _null, true, t2); } }; A.VendorEditDetailsState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_details$_onChanged()); }, $signature: 12 }; A.VendorEditDetailsState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_details$_onChanged()); }, $signature: 12 }; A.VendorEditDetailsState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.VendorEditDetailsState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_details$_numberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_number = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_nameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_name = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_idNumberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_idNumber = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_vatNumberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_vatNumber = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_websiteController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_website = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_phoneController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_phone = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue1 = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue2 = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue3 = t2; t1 = J.trim$0$s(t1._vendor_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue4 = t1; return b; }, $signature: 105 }; A.VendorEditDetailsState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; A.VendorEditDetailsState_build_closure.prototype = { call$1(val) { return val == null || val.length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAName() : null; }, $signature: 15 }; A.VendorEditDetailsState_build_closure0.prototype = { call$1(userId) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditDetailsState_build__closure(userId))); }, $signature: 5 }; A.VendorEditDetailsState_build__closure.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_assignedUserId = this.userId; return b; }, $signature: 105 }; A.VendorEditFooter.prototype = { build$1(_, context) { var showLayoutToggle, t3, t4, t5, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = A.StoreProvider_of(context, type$.legacy_AppState), t2 = A._lateReadCheck(store.__Store__state, "_state").prefState, useSidebarEditor = t2.useSidebarEditor._map$_map.$index(0, B.EntityType_vendor); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = A.getLayout(context) === B.AppLayout_desktop; t3 = A.Theme_of(context).cardColor; t4 = A._setArrayType([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t1 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t4.push(A.Tooltip$(A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_8_0_8_0, A.Icon$(useSidebarEditor ? B.IconData_57694_MaterialIcons_null_true : B.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.VendorEditFooter_build_closure(store), _null, _null, _null, _null, _null, _null), t1)); } t1 = this.vendor; t5 = t1.number; t1 = t1.name; t1 = t5.length === 0 ? t1 : t5 + " \u2022 " + t1; t4.push(new A.AppBorder(new A.Padding(B.EdgeInsets_16_8_0_0, A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.enableDarkMode ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, _null, showLayoutToggle, false, _null)); return A.BottomAppBar$(new A.SizedBox(_null, 50, new A.AppBorder(A.Row$(t4, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), true, _null, _null, false, _null), _null), t3, 0, new A.CircularNotchedRectangle()); }, get$vendor(receiver) { return this.vendor; } }; A.VendorEditFooter_build_closure.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ToggleEditorLayout(B.EntityType_vendor)); }, $signature: 9 }; A.VendorEditNotes.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A.VendorEditNotesState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), B._StateLifecycle_0); } }; A.VendorEditNotesState.prototype = { didChangeDependencies$0() { var vendor, _this = this, t1 = _this._vendor_edit_notes$_publicNotesController, t2 = _this._vendor_edit_notes$_privateNotesController, t3 = A._setArrayType([t1, t2], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_notes$_controllers = t3; B.JSArray_methods.forEach$1(t3, new A.VendorEditNotesState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.publicNotes); t2.set$text(0, vendor.privateNotes); t2 = _this._vendor_edit_notes$_controllers; (t2 && B.JSArray_methods).forEach$1(t2, new A.VendorEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { var t1 = this._vendor_edit_notes$_controllers; (t1 && B.JSArray_methods).forEach$1(t1, new A.VendorEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_notes$_onChanged$0() { var viewModel = this._widget.viewModel, t1 = viewModel.vendor, vendor = t1.rebuild$1(new A.VendorEditNotesState__onChanged_closure(this)); if (!J.$eq$(vendor, t1)) this._vendor_edit_notes$_debouncer.run$1(new A.VendorEditNotesState__onChanged_closure0(viewModel, vendor)); }, build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, t2 = viewModel.state, staticState = t2.staticState, vendor = viewModel.vendor; t2 = t2.prefState.isEditorFullScreen$1(B.EntityType_vendor) ? B.EdgeInsets_12_12_6_0 : _null; return A.FormCard$(_null, A._setArrayType([A.EntityDropdown$(true, false, false, vendor.currencyId, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, B.EntityType_currency, B.List_empty0, t1.get$currency(), _null, _null, new A.VendorEditNotesState_build_closure(viewModel, vendor), _null, _null, _null), A.DecoratedFormField$(false, _null, false, false, this._vendor_edit_notes$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null), A.DecoratedFormField$(false, _null, false, false, this._vendor_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null, true, t2); } }; A.VendorEditNotesState_didChangeDependencies_closure.prototype = { call$1(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_notes$_onChanged()); }, $signature: 12 }; A.VendorEditNotesState_didChangeDependencies_closure0.prototype = { call$1(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_notes$_onChanged()); }, $signature: 12 }; A.VendorEditNotesState_dispose_closure.prototype = { call$1(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 7 }; A.VendorEditNotesState__onChanged_closure.prototype = { call$1(b) { var t1 = this.$this, t2 = t1._vendor_edit_notes$_publicNotesController._change_notifier$_value.text; b.get$_vendor_model$_$this()._vendor_model$_publicNotes = t2; t1 = t1._vendor_edit_notes$_privateNotesController._change_notifier$_value.text; b.get$_vendor_model$_$this()._vendor_model$_privateNotes = t1; return b; }, $signature: 105 }; A.VendorEditNotesState__onChanged_closure0.prototype = { call$0() { this.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; A.VendorEditNotesState_build_closure.prototype = { call$1(currency) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditNotesState_build__closure(currency))); }, $signature: 61 }; A.VendorEditNotesState_build__closure.prototype = { call$1(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_vendor_model$_$this()._vendor_model$_currencyId = t1; return b; }, $signature: 105 }; A.VendorEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.VendorEditScreen_build_closure(), new A.VendorEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorEditVM); } }; A.VendorEditScreen_build_closure0.prototype = { call$1(store) { return A.VendorEditVM_VendorEditVM$fromStore(store); }, $signature: 2780 }; A.VendorEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.VendorEdit(viewModel, new A.ValueKey(viewModel.vendor.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2781 }; A.VendorEditVM.prototype = { get$vendor(receiver) { return this.vendor; }, get$company() { return this.company; } }; A.VendorEditVM_VendorEditVM$fromStore_closure.prototype = { call$1(vendor) { this.store.get$_dispatchers()[0].call$1(new A.UpdateVendor(vendor)); }, $signature: 256 }; A.VendorEditVM_VendorEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, t2, _null = null; A.createEntity(_null, _null, context, A.VendorEntity_VendorEntity(_null, _null, _null), true); t1 = this.state.uiState; t2 = t1.vendorUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.VendorEditVM_VendorEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.VendorEditVM_VendorEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.VendorEditVM_VendorEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, contact, t1 = this.store, vendor = A._lateReadCheck(t1.__Store__state, "_state").uiState.vendorUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); contact = B.JSArray_methods.get$first(vendor.contacts._list); if (!(vendor.name.length !== 0 || contact.get$fullName().length !== 0 || contact.email.length !== 0)) { A.showDialog(null, true, new A.VendorEditVM_VendorEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } t2 = new A._Future($.Zone__current, type$._Future_legacy_VendorEntity); t1.get$_dispatchers()[0].call$1(new A.SaveVendorRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_VendorEntity), vendor)); return t2.then$1$1(0, new A.VendorEditVM_VendorEditVM$fromStore___closure0(vendor, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.VendorEditVM_VendorEditVM$fromStore___closure1()); }, $signature: 37 }; A.VendorEditVM_VendorEditVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.localization.get$pleaseEnterAName(), false, null); }, $signature: 24 }; A.VendorEditVM_VendorEditVM$fromStore___closure0.prototype = { call$1(savedVendor) { var t3, _this = this, _s12_ = "/vendor/view", t1 = _this.vendor, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_vendor"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_vendor"); if (t2 == null) t2 = ""; } A.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s12_)); t1 = t1.get$isNew() && t2.uiState.vendorUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedVendor); } else { if (!t3.isPreviewVisible) _this.store.get$_dispatchers()[0].call$1(new A.TogglePreviewSidebar()); A.viewEntity(false, savedVendor, null, true); } }, $signature: 256 }; A.VendorEditVM_VendorEditVM$fromStore___closure1.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.VendorEditVM_VendorEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.VendorEditVM_VendorEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.VendorListItem.prototype = { build$1(_, context) { var textStyle, textColor, t2, documents, t3, t4, t5, _this = this, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), uiState = state.uiState, vendorUIState = uiState.vendorUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.vendor.matchesFilterValue$1(t1) : _null, listUIState = vendorUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); textColor = A.Theme_of(context).textTheme.bodyLarge.color; t2 = _this.vendor; documents = t2.documents; if (documents == null) documents = A._setArrayType([], type$.JSArray_legacy_DocumentEntity); if (A.getLayout(context) === B.AppLayout_desktop) { t3 = t2.id; t3 = t3 === (uiState.get$isEditing() ? vendorUIState.editing.id : vendorUIState.selectedId); } else t3 = false; t4 = A._lateReadCheck(store.__Store__state, "_state"); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; return new A.DismissibleEntity(t5._list[t4].userCompany, t2, new A.LayoutBuilder(new A.VendorListItem_build_closure(_this, t1 != null, listUIState, state, textStyle, documents, filterMatch, textColor), _null), t3, true, true, _null); }, get$user(receiver) { return this.user; }, get$vendor(receiver) { return this.vendor; } }; A.VendorListItem_build_closure.prototype = { call$2(context, constraints) { var t2, t3, t4, t5, t6, t7, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new A.Padding(B.EdgeInsets_0_0_20_0, new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.VendorListItem_build__closure(t1), _null, _null, false, t1.isChecked), _null), _null); else { t2 = t1.vendor; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = A.ActionMenuButton$(t2, t2.getActions$1$userCompany(t3.userCompanyStates._list[t4].userCompany), _null, _null, false, new A.VendorListItem_build__closure0(t1)); t2 = t4; } t3 = t1.vendor; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = A._setArrayType([A.Text$(t3.number, _null, _null, B.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new A.EntityStateLabel(t3, _null)); t6 = A.Column$(t6, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); t3 = t3.name; t3 = A._setArrayType([A.Text$(t3 + (J.get$isNotEmpty$asx(_this.documents) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t4, _null, _null, _null)], t5); t4 = _this.filterMatch; if (t4 != null) { t7 = _this.textColor; t3.push(A.Text$(t4, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t7.get$value(t7) >>> 16 & 255, t7.get$value(t7) >>> 8 & 255, t7.get$value(t7) & 255)), _null, _null, _null)); } t1 = A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_10_4_28_4, A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_16_0, t2, _null), new A.SizedBox(100, _null, t6, _null), new A.SizedBox(10, _null, _null, _null), A.Expanded$(A.Column$(t3, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), 1), new A.SizedBox(10, _null, _null, _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.VendorListItem_build__closure1(t1), new A.VendorListItem_build__closure2(t1), _null, _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new A.IgnorePointer(_this.listUIState.selectedIds != null, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.VendorListItem_build__closure3(t1), _null, _null, false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.vendor; t5 = t4.name; t6 = J.get$isNotEmpty$asx(_this.documents) ? " \ud83d\udcce" : ""; t7 = type$.JSArray_legacy_Widget; t3 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t5 + t6, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1)], t7), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 != null) { t6 = _this.textColor; t6 = A.Text$(t5, _null, 3, B.TextOverflow_2, _null, _null, A.Theme_of(context).textTheme.titleSmall.copyWith$1$color(A.Color$fromARGB(153, t6.get$value(t6) >>> 16 & 255, t6.get$value(t6) >>> 8 & 255, t6.get$value(t6) & 255)), _null, _null, _null); t5 = t6; } else t5 = A.Text$(t4.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.VendorListItem_build__closure4(t1), new A.VendorListItem_build__closure5(t1), false, _null, _null, A.Column$(A._setArrayType([t5, new A.EntityStateLabel(t4, _null)], t7), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t3, _null, _null); t1 = t3; } return t1; }, $signature: 109 }; A.VendorListItem_build__closure2.prototype = { call$0() { var t1 = A.selectEntity(this.$this.vendor, false, false); return t1; }, $signature: 0 }; A.VendorListItem_build__closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.vendor, false, true); return t1; }, $signature: 0 }; A.VendorListItem_build__closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.VendorListItem_build__closure0.prototype = { call$2(context, action) { A.handleEntitiesActions(A._setArrayType([this.$this.vendor], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 59 }; A.VendorListItem_build__closure5.prototype = { call$0() { var t1 = A.selectEntity(this.$this.vendor, false, false); return t1; }, $signature: 0 }; A.VendorListItem_build__closure4.prototype = { call$0() { var t1 = A.selectEntity(this.$this.vendor, false, true); return t1; }, $signature: 0 }; A.VendorListItem_build__closure3.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.VendorListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.VendorListBuilder_build_closure(), A.vendor_list_vm_VendorListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorListVM); } }; A.VendorListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.vendorList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_vendor, new A.VendorListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.VendorPresenter(), t2, t4); }, $signature: 2782 }; A.VendorListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, vendorId = J.$index$asx(t1.vendorList, index), vendor = t1.vendorMap._map$_map.$index(0, vendorId), state = t1.state, t2 = state.getUIState$1(B.EntityType_vendor).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = vendor.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.VendorListItem(t4, vendor, t1.filter, t2, null); }, $signature: 2783 }; A.VendorListVM.prototype = {}; A.VendorListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.VendorListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.VendorListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortVendors(field)); }, $signature: 5 }; A.VendorListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearVendorMultiselect()); }, $signature: 9 }; A.VendorPresenter.prototype = { getField$2$context$field(context, field) { var t1, t2, _this = this, _null = null, vendor = type$.legacy_VendorEntity._as(_this.entity), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"); switch (field) { case "name": return A.Text$(vendor.name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "city": return A.Text$(vendor.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "phone": return A.Text$(vendor.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "state": return A.Text$(vendor.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address1": return A.Text$(vendor.address1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address2": return A.Text$(vendor.address2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "id_number": return A.Text$(vendor.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return A.Text$(vendor.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "postal_code": return A.Text$(vendor.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "country_id": t1 = state.staticState.countryMap; t2 = vendor.countryId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return A.Text$(vendor.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "website": return A.Text$(vendor.website, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vat_number": return A.Text$(vendor.vatNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency_id": t1 = state.staticState.currencyMap; t2 = vendor.currencyId; t2 = t1._map$_map.$index(0, t2); t1 = t2 == null ? _null : t2.name; return A.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return A.Text$(_this.presentCustomField$2(context, vendor.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return A.Text$(_this.presentCustomField$2(context, vendor.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return A.Text$(_this.presentCustomField$2(context, vendor.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return A.Text$(_this.presentCustomField$2(context, vendor.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return A.Text$("" + vendor.documents._list.length, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contacts": t1 = vendor.contacts._list; return A.Text$(new A.MappedListIterable(t1, new A.VendorPresenter_getField_closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>")).join$1(0, "\n"), _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.VendorPresenter_getField_closure.prototype = { call$1(contact) { return contact.get$fullName(); }, $signature: 2784 }; A.VendorScreen.prototype = { build$1(_, context) { var userCompany, t4, t5, t6, t7, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, company = t1._list[t3].userCompany.company; t3 = A._lateReadCheck(store.__Store__state, "_state"); t1 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.vendorUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.vendorList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType(["number", "name", "city", "phone", "entity_state", "created_at"], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("address1"); t6.push("address2"); t6.push("postal_code"); t6.push("country_id"); t6.push("private_notes"); t6.push("website"); t6.push("vat_number"); t6.push("id_number"); t6.push("currency_id"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("updated_at"); t6.push("archived_at"); t6.push("documents"); t6.push("contacts"); t7 = A._setArrayType(["number", "name", "city", "phone", "entity_state", "created_at"], t5); t6 = A.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("vendor1", true), company.getCustomFieldValues$2$excludeBlank("vendor2", true), company.getCustomFieldValues$2$excludeBlank("vendor3", true), company.getCustomFieldValues$2$excludeBlank("vendor4", true), t7, B.EntityType_vendor, false, B.List_empty17, new A.VendorScreen_build_closure(store), new A.VendorScreen_build_closure0(store), new A.VendorScreen_build_closure1(store), new A.VendorScreen_build_closure2(store), new A.VendorScreen_build_closure3(store), new A.VendorScreen_build_closure4(store), new A.VendorScreen_build_closure5(store), _null, A._setArrayType(["name", "number", "updated_at"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_vendor) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "vendor_fab", false, new A.VendorScreen_build_closure6(context), t3.get$newVendor()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_vendor, t2, new A.VendorScreen_build_closure7(store), t4, _null, _null, new A.VendorScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.VendorListBuilder(_null), t6, B.EntityType_vendor, t3, 0, _null, new A.VendorScreen_build_closure9(store), new A.VendorScreen_build_closure10(store)); } }; A.VendorScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartVendorMultiselect()); }, $signature: 9 }; A.VendorScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterVendors(value)); }, $signature: 11 }; A.VendorScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByState(state)); }, $signature: 27 }; A.VendorScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.vendorUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearVendorMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartVendorMultiselect()); }, $signature: 1 }; A.VendorScreen_build_closure4.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.SortVendors(value)); }, $signature: 5 }; A.VendorScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByCustom1(value)); }, $signature: 5 }; A.VendorScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByCustom2(value)); }, $signature: 5 }; A.VendorScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByCustom3(value)); }, $signature: 5 }; A.VendorScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByCustom4(value)); }, $signature: 5 }; A.VendorScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterVendorsByState(state)); }, $signature: 27 }; A.VendorScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.vendorUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearVendorMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartVendorMultiselect()); }, $signature: 1 }; A.VendorScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_vendor); }, $signature: 1 }; A.VendorScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.VendorScreenBuilder_build_closure(), A.vendor_screen_vm_VendorScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorScreenVM); } }; A.VendorScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.VendorScreen(vm, null); }, $signature: 2785 }; A.VendorScreenVM.prototype = {}; A.VendorView.prototype = { createState$0() { return new A._VendorViewState(null, null, B._StateLifecycle_0); } }; A._VendorViewState.prototype = { initState$0() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = A.TabController$(null, t1.isFilter ? 0 : state.uiState.vendorUIState.tabIndex, 3, _this); _this._vendor_view$_controller = t2; t2.addListener$1(0, _this.get$_vendor_view$_onTabChanged()); }, _vendor_view$_onTabChanged$0() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = A.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._vendor_view$_controller._tab_controller$_index; store.get$_dispatchers()[0].call$1(new A.UpdateVendorTab(t1)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._vendor_view$_controller._changeIndex$1(t2); }, dispose$0(_) { var _this = this; _this._vendor_view$_controller.removeListener$1(0, _this.get$_vendor_view$_onTabChanged()); _this._vendor_view$_controller.dispose$0(0); _this.super$__VendorViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget, viewModel = t2.viewModel, vendor = viewModel.vendor; if (t2.isTopFilter) { t1 = A.Theme_of(context).scaffoldBackgroundColor; return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([new A.EntityTopFilterHeader(_null), A.Expanded$(new A.AppBorder(new A.VendorViewFullwidth(viewModel, _null), true, true, _null, false, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_3, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t1, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } t2 = t2.isFilter; t3 = A.TabBar$(this._vendor_view$_controller, _null, false, _null, _null, A._setArrayType([A.Tab$(_null, t1.get$overview()), A.Tab$(_null, t1.get$details(t1)), A.Tab$(_null, t1.get$documents())], type$.JSArray_legacy_Widget)); A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "vendor_view_fab", false, new A._VendorViewState_build_closure(viewModel, context), t1.get$create(t1)); return new A.ViewScaffold(t2, vendor, new A.Builder(new A._VendorViewState_build_closure0(this, viewModel, vendor), _null), _null, t3, _null); } }; A._VendorViewState_build_closure0.prototype = { call$1(context) { var _null = null, t1 = this.$this, t2 = t1._vendor_view$_controller, t3 = this.viewModel, t4 = type$.JSArray_legacy_Widget; return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.VendorOverview(t3, t1._widget.isFilter, _null), new A._VendorViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.VendorViewDetails(t3.vendor, _null), new A._VendorViewState_build__closure0(t3, context)), A.RefreshIndicator$(new A.VendorViewDocuments(t3, _null), new A._VendorViewState_build__closure1(t3, context))], t4), t2, _null), 1), new A.BottomButtons(this.vendor, B.EntityAction_newExpense, B.EntityAction_archive, true, true, _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 207 }; A._VendorViewState_build__closure.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._VendorViewState_build__closure0.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._VendorViewState_build__closure1.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A._VendorViewState_build_closure.prototype = { call$0() { return this.viewModel.onAddExpensePressed.call$1(this.context); }, $signature: 9 }; A.__VendorViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.VendorViewDetails.prototype = { createState$0() { return new A._VendorViewDetailsState(B._StateLifecycle_0); }, get$vendor(receiver) { return this.vendor; } }; A._VendorViewDetailsState.prototype = { _launchURL$2(context, url) { return this._launchURL$body$_VendorViewDetailsState(context, url); }, _launchURL$body$_VendorViewDetailsState(context, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Null), t1; var $async$_launchURL$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $async$goto = 5; return A._asyncAwait(A.canLaunch(url), $async$_launchURL$2); case 5: // returning from await. $async$goto = $async$result ? 2 : 4; break; case 2: // then $async$goto = 6; return A._asyncAwait(A.launch(url, false, false), $async$_launchURL$2); case 6: // returning from await. // goto join $async$goto = 3; break; case 4: // else throw A.wrapException(t1.get$couldNotLaunch()); case 3: // join // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_launchURL$2, $async$completer); }, _launchStatus$2(context, snapshot) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = snapshot.error; if (t2 != null) return A.Text$(t1.get$error(t1) + ": " + A.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); else return B.Text_OPN; }, build$1(_, context) { var t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new A.ScrollableListView(new A._VendorViewDetailsState_build__buildDetailsList(this, this._widget.vendor, t1, context).call$0(), null, null, null); } }; A._VendorViewDetailsState_build__buildDetailsList.prototype = { call$0() { var t5, state, address, _this = this, _null = null, listTiles = A._setArrayType([], type$.JSArray_legacy_Widget), t1 = _this.vendor, t2 = _this.$this, t3 = _this.localization, t4 = _this.context; B.JSArray_methods.forEach$1(t1.contacts._list, new A._VendorViewDetailsState_build__buildDetailsList_closure(t2, listTiles, t3, t4)); t5 = t1.website; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58240_MaterialIcons_null_false, new A._VendorViewDetailsState_build__buildDetailsList_closure0(t2, t4, t1), t3.get$website(), t5)); t5 = t1.phone; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58530_MaterialIcons_null_false, new A._VendorViewDetailsState_build__buildDetailsList_closure1(t2, t4, t1), t3.get$phone(t3), t5)); t5 = t1.vatNumber; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58280_MaterialIcons_null_false, _null, t3.get$vatNumber(), t5)); t5 = t1.idNumber; if (t5.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_57627_MaterialIcons_null_false, _null, t3.get$idNumber(), t5)); state = A._lateReadCheck(A.StoreProvider_of(t4, type$.legacy_AppState).__Store__state, "_state"); address = A.formatAddress(state, "\n", false, t1); if (address.length !== 0) listTiles.push(A.AppListTile$(_null, _null, B.IconData_58567_MaterialIcons_null_false, new A._VendorViewDetailsState_build__buildDetailsList_closure2(t2, t4, state, t1), t3.get$billingAddress(), address)); listTiles.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.FutureBuilder$(t2.get$_launchStatus(), t2._launched, type$.Null), _null)); return listTiles; }, $signature: 227 }; A._VendorViewDetailsState_build__buildDetailsList_closure.prototype = { call$1(contact) { var t2, t3, _this = this, t1 = contact.email; if (t1.length !== 0) { t2 = contact.get$fullName(); t3 = _this.localization; _this.listTiles.push(A.AppListTile$(null, t1, B.IconData_57898_MaterialIcons_null_false, new A._VendorViewDetailsState_build__buildDetailsList__closure1(_this.$this, _this.context, contact), t3.get$email(t3), t2 + "\n" + t1)); } t1 = contact.phone; if (t1.length !== 0) { t2 = contact.get$fullName(); t3 = _this.localization; _this.listTiles.push(A.AppListTile$(null, t1, B.IconData_58530_MaterialIcons_null_false, new A._VendorViewDetailsState_build__buildDetailsList__closure2(_this.$this, _this.context, contact), t3.get$phone(t3), t2 + "\n" + t1)); } }, $signature: 764 }; A._VendorViewDetailsState_build__buildDetailsList__closure1.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._VendorViewDetailsState_build__buildDetailsList___closure0(t1, this.context, this.contact)); }, $signature: 0 }; A._VendorViewDetailsState_build__buildDetailsList___closure0.prototype = { call$0() { var t1 = this.$this; t1._launched = t1._launchURL$2(this.context, "mailto:" + this.contact.email); }, $signature: 1 }; A._VendorViewDetailsState_build__buildDetailsList__closure2.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._VendorViewDetailsState_build__buildDetailsList___closure(t1, this.context, this.contact)); }, $signature: 0 }; A._VendorViewDetailsState_build__buildDetailsList___closure.prototype = { call$0() { var t1 = this.$this, t2 = A.RegExp_RegExp("\\D", true, false, false, false); t1._launched = t1._launchURL$2(this.context, "sms:" + A.stringReplaceAllUnchecked(this.contact.phone, t2, "")); }, $signature: 1 }; A._VendorViewDetailsState_build__buildDetailsList_closure0.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._VendorViewDetailsState_build__buildDetailsList__closure0(t1, this.context, this.vendor)); }, $signature: 0 }; A._VendorViewDetailsState_build__buildDetailsList__closure0.prototype = { call$0() { var t1 = this.$this; t1._launched = t1._launchURL$2(this.context, A.formatURL(this.vendor.website)); }, $signature: 1 }; A._VendorViewDetailsState_build__buildDetailsList_closure1.prototype = { call$0() { var t1 = this.$this; return t1.setState$1(new A._VendorViewDetailsState_build__buildDetailsList__closure(t1, this.context, this.vendor)); }, $signature: 0 }; A._VendorViewDetailsState_build__buildDetailsList__closure.prototype = { call$0() { var t1 = this.$this, t2 = A.RegExp_RegExp("\\D", true, false, false, false); t1._launched = t1._launchURL$2(this.context, "sms:" + A.stringReplaceAllUnchecked(this.vendor.phone, t2, "")); }, $signature: 1 }; A._VendorViewDetailsState_build__buildDetailsList_closure2.prototype = { call$0() { var _this = this, t1 = _this.$this, t2 = A.isApple() ? "https://maps.apple.com/?address=" : "https://maps.google.com/?q="; t1._launched = t1._launchURL$2(_this.context, B.JSString_methods.$add(t2, A._Uri__uriEncode(B.List_gnE, A.formatAddress(_this.state, ",", false, _this.vendor), B.C_Utf8Codec, false))); }, $signature: 1 }; A.VendorViewDocuments.prototype = { build$1(_, context) { var t1 = this.viewModel.vendor.documents; return new A.DocumentGrid(new A.CopyOnWriteList(true, t1._list, A._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new A.VendorViewDocuments_build_closure(this, context), new A.VendorViewDocuments_build_closure0(this, context), null, null); } }; A.VendorViewDocuments_build_closure.prototype = { call$1(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 152 }; A.VendorViewDocuments_build_closure0.prototype = { call$3($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 149 }; A.VendorViewFullwidth.prototype = { createState$0() { return new A._VendorViewFullwidthState(null, null, B._StateLifecycle_0); } }; A._VendorViewFullwidthState.prototype = { initState$0() { var t1, t2, t3, _this = this; _this.super$State$initState(); t1 = type$.JSArray_ScrollPosition; t2 = A._setArrayType([], t1); t3 = $.$get$ChangeNotifier__emptyListeners(); _this._scrollController1 = new A.ScrollController(0, true, null, t2, t3); _this._scrollController2 = new A.ScrollController(0, true, null, A._setArrayType([], t1), t3); _this._scrollController3 = new A.ScrollController(0, true, null, A._setArrayType([], t1), t3); }, dispose$0(_) { var _this = this; _this._scrollController1.dispose$0(0); _this._scrollController2.dispose$0(0); _this._scrollController3.dispose$0(0); _this.super$__VendorViewFullwidthState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var vendor, documents, viewModel, billingAddress, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t4 = t2._list[t4].vendorState; t2 = t3.filterStack._list; if (t2.length === 0) t2 = null; else { t2 = B.JSArray_methods.get$last(t2); t2 = t2.get$id(t2); } vendor = t4.$get$1(0, t2); documents = vendor.documents; viewModel = this._widget.viewModel; billingAddress = A.formatAddress(state, "\n", false, vendor); t2 = state.prefState; return new A.LayoutBuilder(new A._VendorViewFullwidthState_build_closure(this, t1, vendor, state, billingAddress, !t2.isPreviewVisible && !t3.get$isEditing() && t2.moduleLayout !== B.ModuleLayout_list, documents, viewModel), null); } }; A._VendorViewFullwidthState_build_closure.prototype = { call$2(context, layout) { var t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, minHeight = layout.maxHeight - 24 - 43, t1 = _this.$this, t2 = t1._scrollController1, t3 = _this.localization, t4 = type$.JSArray_legacy_Widget, t5 = A._setArrayType([A.Text$(t3.get$details(t3), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4), t6 = _this.vendor, t7 = t6.idNumber; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_0_0_1, new A.CopyToClipboard(_null, t7, false, _null, t3.get$id(t3), _null), _null)); t7 = t6.vatNumber; if (t7.length !== 0) t5.push(new A.CopyToClipboard(_null, t7, false, _null, t3.get$vat(), _null)); t5.push(new A.SizedBox(_null, 4, _null, _null)); t7 = t6.phone; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t7, B.IconData_58530_MaterialIcons_null_false, _null, _null, _null), t7, false, _null, _null, _null), _null)); t7 = t6.website; if (t7.length !== 0) t5.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(A.trimUrl(t7), B._MdiIconData_jVE0, _null, _null, _null), t7, false, _null, _null, _null), _null)); t5.push(new A.SizedBox(_null, 4, _null, _null)); t7 = t6.currencyId; t8 = _this.state; t9 = t8.uiState.selectedCompanyIndex; t10 = t8.userCompanyStates._list; t11 = t10[t9].userCompany.company.settings.currencyId; if (t7 !== (t11 == null ? "1" : t11)) { t11 = t8.staticState.currencyMap._map$_map.$index(0, t7); t11 = t11 == null ? _null : t11.name; t5.push(new A.Padding(B.EdgeInsets_0_0_0_1, A.Text$(t11 == null ? "" : t11, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null)); } t2 = A.Expanded$(A.FormCard$(A.ListView$(t5, t2, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_12_12_6_12), 1); t5 = t1._scrollController2; t11 = A._setArrayType([A.Text$(t3.get$address(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4); t12 = _this.billingAddress; if (t12.length !== 0) { t13 = A.Expanded$(new A.CopyToClipboard(A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, A.Text$(t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), t12, false, _null, _null, _null), 1); t14 = A.Icon$(B.IconData_58312_MaterialIcons_null_false, _null, _null); t8 = t8.prefState.enableTooltips ? t3.get$viewMap() : ""; B.JSArray_methods.addAll$1(t11, A._setArrayType([A.Row$(A._setArrayType([t13, new A.SizedBox(8, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t14, _null, new A._VendorViewFullwidthState_build__closure(t12), B.EdgeInsets_8_8_8_8, _null, t8, _null)], t4), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null)], t4)); } t8 = t6.publicNotes; if (t8.length !== 0) t11.push(A.Text$(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t5 = A.Expanded$(A.FormCard$(A.ListView$(t11, t5, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_6_12_6_12), 1); t8 = _this.showStanding; t11 = !t8 ? 1 : 2; t1 = t1._scrollController3; t12 = A._setArrayType([A.Text$(t3.get$contacts(), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleLarge, _null, _null, _null), new A.SizedBox(_null, 8, _null, _null)], t4); t13 = t6.contacts._list; t14 = A._arrayInstanceType(t13)._eval$1("MappedListIterable<1,Column*>"); B.JSArray_methods.addAll$1(t12, A.List_List$of(new A.MappedListIterable(t13, new A._VendorViewFullwidthState_build__closure0(context), t14), true, t14._eval$1("ListIterable.E"))); t11 = A._setArrayType([t2, t5, A.Expanded$(A.FormCard$(A.ListView$(t12, t1, _null, B.Axis_1, false), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 1 / 0), B.CrossAxisAlignment_0, false, _null, true, new A.EdgeInsets(6, 12, 12 / t11, 12)), 1)], t4); if (t8) { t1 = A.Tab$(A.Text$(t3.get$standing(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); t2 = _this.documents._list; t1 = A._setArrayType([t1, A.Tab$(_null, t2.length === 0 ? t3.get$documents() : t3.get$documents() + " (" + t2.length + ")")], t4); t3 = t3.get$total(t3); t2 = $.$get$memoizedCalculateVendorBalance(); t9 = t10[t9].expenseState; t9 = t2.call$4(t6.id, t7, t9.map, t9.list); t2 = A._setArrayType([A.EntityHeader$(t6, t3, _null, _null, _null, _null, A.formatNumber(t9, context, _null, t7, B.FormatNumberType_0, true, _null, false))], t4); t3 = t6.privateNotes; if (t3.length !== 0) t2.push(new A.IconText(t3, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null)); t3 = _this.viewModel; t11.push(A.Expanded$(A.FormCard$(A.DefaultTabController$(new A.SizedBox(_null, minHeight, A.Column$(A._setArrayType([new A.AppTabBar(t1, _null, true, _null, _null), new A.Flexible(1, B.FlexFit_1, A.TabBarView$(A._setArrayType([A.ListView$(t2, _null, _null, B.Axis_1, false), A.RefreshIndicator$(new A.VendorViewDocuments(t3, new A.ValueKey(t3.vendor.id, type$.ValueKey_legacy_String)), new A._VendorViewFullwidthState_build__closure1(t3, context))], t4), _null, _null), _null)], t4), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), 2), _null, new A.BoxConstraints(0, 1 / 0, minHeight, 600), B.CrossAxisAlignment_0, false, _null, true, B.EdgeInsets_6_12_12_12), 2)); } return A.Row$(t11, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, $signature: 574 }; A._VendorViewFullwidthState_build__closure.prototype = { call$0() { A.launch(B.JSString_methods.$add("http://maps.google.com/?daddr=", A._Uri__uriEncode(B.List_nxB, this.billingAddress, B.C_Utf8Codec, true)), null, false); }, $signature: 1 }; A._VendorViewFullwidthState_build__closure0.prototype = { call$1(contact) { var _null = null, t1 = A._setArrayType([A.Text$(contact.get$fullName(), _null, _null, _null, _null, _null, A.Theme_of(this.context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_legacy_Widget), t2 = contact.email; if (t2.length !== 0) t1.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t2, B.IconData_57898_MaterialIcons_null_false, _null, _null, _null), t2, false, _null, _null, _null), _null)); t2 = contact.phone; if (t2.length !== 0) t1.push(new A.Padding(B.EdgeInsets_0_4_0_4, new A.CopyToClipboard(new A.IconText(t2, B.IconData_58530_MaterialIcons_null_false, _null, _null, _null), t2, false, _null, _null, _null), _null)); t1.push(new A.SizedBox(_null, 16, _null, _null)); return A.Column$(t1, B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, $signature: 2786 }; A._VendorViewFullwidthState_build__closure1.prototype = { call$0() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 31 }; A.__VendorViewFullwidthState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.VendorOverview.prototype = { build$1(_, context) { var fields, t3, t4, t5, user, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, vendor = t2.vendor, company = t2.company, state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), statics = state.staticState; t2 = type$.legacy_String; fields = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t2 = vendor.assignedUserId; t3 = t2 != null; if (t3 && t2.length !== 0) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; user = t4._list[t5].userState.$get$1(0, t2); } else user = _null; t4 = vendor.currencyId; if (t4.length !== 0) { t5 = company.settings.currencyId; t5 = t4 !== (t5 == null ? "1" : t5); } else t5 = false; if (t5) fields.$indexSet(0, "currency_id", statics.currencyMap._map$_map.$index(0, t4).name); t5 = vendor.customValue1; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor1"), A.formatCustomValue(context, "vendor1", t5)); t5 = vendor.customValue2; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor2"), A.formatCustomValue(context, "vendor2", t5)); t5 = vendor.customValue3; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor3"), A.formatCustomValue(context, "vendor3", t5)); t5 = vendor.customValue4; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor4"), A.formatCustomValue(context, "vendor4", t5)); t5 = t1.get$total(t1); t6 = $.$get$memoizedCalculateVendorBalance(); t7 = vendor.id; t8 = state.userCompanyStates; t9 = state.uiState.selectedCompanyIndex; t8 = t8._list; t10 = t8[t9].expenseState; t10 = t6.call$4(t7, t4, t10.map, t10.list); t6 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([A.EntityHeader$(vendor, t5, _null, _null, _null, _null, A.formatNumber(t10, context, _null, t4, B.FormatNumberType_0, true, _null, false)), new A.ListDivider(_null)], t6); t5 = vendor.privateNotes; if (t5.length !== 0) B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.IconMessage(t5, B.IconData_58286_MaterialIcons_null_false, _null, _null, _null), new A.ListDivider(_null)], t6)); if (t3 && t2.length !== 0) t4.push(A.EntityListTile$(user, _this.isFilter, _null)); t4.push(new A.FieldGrid(fields, _null)); if (company.isModuleEnabled$1(B.EntityType_purchaseOrder)) t4.push(new A.EntitiesListTile(vendor, B.EntityType_purchaseOrder, t1.get$purchaseOrders(), $.$get$memoizedPurchaseOrderStatsForVendor().call$2(t7, t8[t9].purchaseOrderState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); if (company.isModuleEnabled$1(B.EntityType_expense)) t4.push(new A.EntitiesListTile(vendor, B.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForVendor().call$2(t7, t8[t9].expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); if (company.isModuleEnabled$1(B.EntityType_recurringExpense)) t4.push(new A.EntitiesListTile(vendor, B.EntityType_recurringExpense, t1.get$recurringExpenses(), $.$get$memoizedRecurringExpenseStatsForVendor().call$2(t7, t8[t9].recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); t1 = vendor.publicNotes; if (t1.length !== 0) B.JSArray_methods.addAll$1(t4, A._setArrayType([new A.IconMessage(t1, _null, _null, _null, _null), new A.ListDivider(_null)], t6)); return new A.ScrollableListView(t4, _null, _null, _null); } }; A.VendorViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.VendorViewScreen_build_closure(this), new A.VendorViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorViewVM); } }; A.VendorViewScreen_build_closure0.prototype = { call$1(store) { return A.VendorViewVM_VendorViewVM$fromStore(store); }, $signature: 2787 }; A.VendorViewScreen_build_closure.prototype = { call$2(context, vm) { var t1 = this.$this; return new A.VendorView(vm, t1.isFilter, t1.isTopFilter, vm.state.uiState.vendorUIState.tabIndex, null); }, $signature: 2788 }; A.VendorViewVM.prototype = { get$vendor(receiver) { return this.vendor; }, get$company() { return this.company; } }; A.VendorViewVM_VendorViewVM$fromStore__handleRefresh.prototype = { call$1(context) { var completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); this.store.get$_dispatchers()[0].call$1(new A.LoadVendor(completer, this.vendor.id)); return completer.future; }, $signature: 17 }; A.VendorViewVM_VendorViewVM$fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.VendorViewVM_VendorViewVM$fromStore_closure0.prototype = { call$1(context) { var _null = null; A.createEntity(_null, _null, context, A.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, this.state, _null, this.vendor), false); }, $signature: 14 }; A.VendorViewVM_VendorViewVM$fromStore_closure1.prototype = { call$2(context, multipartFile) { var t1 = new A._Future($.Zone__current, type$._Future_legacy_DocumentEntity); this.store.get$_dispatchers()[0].call$1(new A.SaveVendorDocumentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.vendor)); t1.then$1$1(0, new A.VendorViewVM_VendorViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.VendorViewVM_VendorViewVM$fromStore__closure1(context)); }, $signature: 96 }; A.VendorViewVM_VendorViewVM$fromStore__closure0.prototype = { call$1(client) { A.showToast(A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 72 }; A.VendorViewVM_VendorViewVM$fromStore__closure1.prototype = { call$1(error) { A.showDialog(null, true, new A.VendorViewVM_VendorViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.VendorViewVM_VendorViewVM$fromStore___closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.VendorViewVM_VendorViewVM$fromStore_closure2.prototype = { call$4(context, $document, password, idToken) { var t1 = type$.Null, completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.VendorViewVM_VendorViewVM$fromStore__closure(t2, this.vendor), t1); t1 = A._setArrayType([$document.id], type$.JSArray_legacy_String); t2.get$_dispatchers()[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 102 }; A.VendorViewVM_VendorViewVM$fromStore__closure.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.LoadVendor(null, this.vendor.id)); }, $signature: 103 }; A.WebhookEdit.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); return new A._WebhookEditState(new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.TextEditingController(B.TextEditingValue_li8, t1), new A.Debouncer(500, false), A._setArrayType([], type$.JSArray_legacy_TextEditingController), B._StateLifecycle_0); } }; A._WebhookEditState.prototype = { didChangeDependencies$0() { var _this = this, t1 = _this._targetUrlController, t2 = A._setArrayType([t1, _this._headerKeyController, _this._headerValueController], type$.JSArray_legacy_TextEditingController); _this._webhook_edit$_controllers = t2; B.JSArray_methods.forEach$1(t2, new A._WebhookEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.webhook.targetUrl); B.JSArray_methods.forEach$1(_this._webhook_edit$_controllers, new A._WebhookEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0(_) { B.JSArray_methods.forEach$1(this._webhook_edit$_controllers, new A._WebhookEditState_dispose_closure(this)); this.super$State$dispose(0); }, _webhook_edit$_onChanged$0() { var _this = this, webhook = _this._widget.viewModel.webhook.rebuild$1(new A._WebhookEditState__onChanged_closure(_this)); if (!J.$eq$(webhook, _this._widget.viewModel.webhook)) _this._webhook_edit$_debouncer.run$1(new A._WebhookEditState__onChanged_closure0(_this, webhook)); }, build$1(_, context) { var t2, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), webhook = viewModel.webhook, key = J.trim$0$s(_this._headerKeyController._change_notifier$_value.text), value = J.trim$0$s(_this._headerValueController._change_notifier$_value.text); if (webhook.get$isNew()) t2 = t1.get$newWebhook(); else { t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "edit_webhook"); if (t2 == null) t2 = ""; } return A.EditScaffold$(_null, _null, A.Form$(_null, new A.Builder(new A._WebhookEditState_build_closure(_this, t1, webhook, viewModel, key, value), _null), $.$get$_WebhookEditState__formKey()), _null, webhook, _null, false, _null, new A._WebhookEditState_build_closure0(viewModel), new A._WebhookEditState_build_closure1(viewModel), _null, t2); } }; A._WebhookEditState_didChangeDependencies_closure.prototype = { call$1(controller) { return controller.removeListener$1(0, this.$this.get$_webhook_edit$_onChanged()); }, $signature: 33 }; A._WebhookEditState_didChangeDependencies_closure0.prototype = { call$1(controller) { return controller.addListener$1(0, this.$this.get$_webhook_edit$_onChanged()); }, $signature: 33 }; A._WebhookEditState_dispose_closure.prototype = { call$1(controller) { controller.removeListener$1(0, this.$this.get$_webhook_edit$_onChanged()); controller.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); controller.ChangeNotifier__count = 0; }, $signature: 71 }; A._WebhookEditState__onChanged_closure.prototype = { call$1(b) { var t1 = J.trim$0$s(this.$this._targetUrlController._change_notifier$_value.text); b.get$_webhook_model$_$this()._targetUrl = t1; return b; }, $signature: 216 }; A._WebhookEditState__onChanged_closure0.prototype = { call$0() { this.$this._widget.viewModel.onChanged.call$1(this.webhook); }, $signature: 1 }; A._WebhookEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 51 }; A._WebhookEditState_build_closure1.prototype = { call$1(context) { if (!$.$get$_WebhookEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._WebhookEditState_build_closure.prototype = { call$1(context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "target_url"); if (t3 == null) t3 = ""; t3 = A.DecoratedFormField$(false, _null, true, false, t1._targetUrlController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_6_null_null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, new A._WebhookEditState_build__closure(t2)); t4 = t2.get$eventType(t2); t5 = _this.webhook; t6 = _this.viewModel; t7 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t8 = type$.legacy_String; t4 = A.AppDropdownButton$(_null, "", true, A.List_List$of(new A.MappedListIterable(B.List_bdu, new A._WebhookEditState_build__closure0(t2), t7), true, t7._eval$1("ListIterable.E")), _null, t4, new A._WebhookEditState_build__closure1(t6, t5), _null, false, t5.eventId, t8); t7 = t2.get$restMethod(); t8 = A.AppDropdownButton$(_null, "", true, A._setArrayType([A.DropdownMenuItem$(A.Text$("POST", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "post", t8), A.DropdownMenuItem$(A.Text$("PUT", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "put", t8)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, t7, new A._WebhookEditState_build__closure2(t6, t5), _null, true, t5.restMethod, t8); t7 = t6.onSavePressed; t9 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, t1._headerKeyController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2.get$headerKey(), _null, _null, false, new A._WebhookEditState_build__closure3(t1), _null, t7, true, _null, _null, B.TextAlign_4, _null), 1); t7 = A.Expanded$(A.DecoratedFormField$(false, _null, false, false, t1._headerValueController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2.get$headerValue(), _null, _null, false, new A._WebhookEditState_build__closure4(t1), _null, t7, true, _null, _null, B.TextAlign_4, _null), 1); t10 = t2.get$addHeader(); t11 = A.Icon$(B.IconData_57424_MaterialIcons_null_false, _null, _null); t12 = _this.key; t13 = type$.JSArray_legacy_Widget; t10 = A._setArrayType([t3, t4, t8, A.Row$(A._setArrayType([t9, new A.SizedBox(16, _null, _null, _null), t7, new A.SizedBox(16, _null, _null, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, t11, _null, t12.length === 0 || _this.value.length === 0 ? _null : new A._WebhookEditState_build__closure5(t1, t5, t12, t6, _this.value), B.EdgeInsets_8_8_8_8, _null, t10, _null)], t13), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null)], t13); t1 = t5.headers; if (t1._map$_map._length === 0) t10.push(new A.Padding(B.EdgeInsets_0_16_0_8, A.Center$(new A.HelpText(t2.get$noHeaders(), _null), _null, _null), _null)); else { t1 = t1.get$keys(t1); t1.toString; B.JSArray_methods.addAll$1(t10, A.MappedIterable_MappedIterable(t1, new A._WebhookEditState_build__closure6(t5, t2, t6), t1.$ti._eval$1("Iterable.E"), type$.legacy_Widget)); } return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t10, _null, _null, false, _null, false, _null)], t13), _null, _null, _null); }, $signature: 167 }; A._WebhookEditState_build__closure.prototype = { call$1(value) { return value.length === 0 || B.JSString_methods.trim$0(value).length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A._WebhookEditState_build__closure1.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new A._WebhookEditState_build___closure4(value))); }, $signature: 12 }; A._WebhookEditState_build___closure4.prototype = { call$1(b) { b.get$_webhook_model$_$this()._eventId = this.value; return b; }, $signature: 216 }; A._WebhookEditState_build__closure0.prototype = { call$1(eventId) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(B.Map_atQCY.$index(0, eventId)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, eventId, type$.legacy_String); }, $signature: 43 }; A._WebhookEditState_build__closure2.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new A._WebhookEditState_build___closure3(value))); }, $signature: 12 }; A._WebhookEditState_build___closure3.prototype = { call$1(b) { b.get$_webhook_model$_$this()._restMethod = this.value; return b; }, $signature: 216 }; A._WebhookEditState_build__closure3.prototype = { call$1(value) { return this.$this.setState$1(new A._WebhookEditState_build___closure2()); }, $signature: 67 }; A._WebhookEditState_build___closure2.prototype = { call$0() { }, $signature: 1 }; A._WebhookEditState_build__closure4.prototype = { call$1(value) { return this.$this.setState$1(new A._WebhookEditState_build___closure1()); }, $signature: 67 }; A._WebhookEditState_build___closure1.prototype = { call$0() { }, $signature: 1 }; A._WebhookEditState_build__closure5.prototype = { call$0() { var t2, _this = this, t1 = _this.$this; t1._headerKeyController.set$text(0, ""); t1._headerValueController.set$text(0, ""); t1 = _this.webhook; t2 = _this.key; if (t1.headers._map$_map.containsKey$1(0, t2)) return; _this.viewModel.onChanged.call$1(t1.rebuild$1(new A._WebhookEditState_build___closure0(t2, _this.value))); }, $signature: 1 }; A._WebhookEditState_build___closure0.prototype = { call$1(b) { b.get$headers(b).$indexSet(0, this.key, this.value); return b; }, $signature: 216 }; A._WebhookEditState_build__closure6.prototype = { call$1(key) { var _null = null, t1 = this.webhook; return A.ListTile$(false, B.EdgeInsets_0_0_0_0, _null, _null, true, _null, _null, false, _null, _null, _null, _null, false, _null, _null, _null, _null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(key, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(A.Text$(t1.headers._map$_map.$index(0, key), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), A.IconButton$(B.Alignment_0_0, _null, _null, true, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null), _null, new A._WebhookEditState_build___closure(this.viewModel, t1, key), B.EdgeInsets_8_8_8_8, _null, this.localization.get$removeHeader(), _null), _null); }, $signature: 235 }; A._WebhookEditState_build___closure.prototype = { call$0() { this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new A._WebhookEditState_build____closure(this.key))); }, $signature: 1 }; A._WebhookEditState_build____closure.prototype = { call$1(b) { b.get$headers(b).get$_safeMap().remove$1(0, this.key); return b; }, $signature: 216 }; A.WebhookEditScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.WebhookEditScreen_build_closure(), new A.WebhookEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookEditVM); } }; A.WebhookEditScreen_build_closure0.prototype = { call$1(store) { return A.WebhookEditVM_WebhookEditVM$fromStore(store); }, $signature: 2789 }; A.WebhookEditScreen_build_closure.prototype = { call$2(context, viewModel) { return new A.WebhookEdit(viewModel, new A.ValueKey(viewModel.webhook.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2790 }; A.WebhookEditVM.prototype = { get$webhook() { return this.webhook; }, get$company() { return this.company; } }; A.WebhookEditVM_WebhookEditVM$fromStore_closure.prototype = { call$1(webhook) { this.store.get$_dispatchers()[0].call$1(new A.UpdateWebhook(webhook)); }, $signature: 315 }; A.WebhookEditVM_WebhookEditVM$fromStore_closure1.prototype = { call$1(context) { var t1, _null = null; A.createEntity(_null, _null, context, A.WebhookEntity_WebhookEntity(_null, _null), true); t1 = this.state.uiState; t1.webhookUIState.toString; t1 = t1.previousRoute; this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.WebhookEditVM_WebhookEditVM$fromStore_closure0.prototype = { call$1(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.WebhookEditVM_WebhookEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.WebhookEditVM_WebhookEditVM$fromStore__closure.prototype = { call$0() { var t3, $navigator, t1 = this.store, webhook = A._lateReadCheck(t1.__Store__state, "_state").uiState.webhookUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = A.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new A._Future($.Zone__current, type$._Future_legacy_WebhookEntity); t1.get$_dispatchers()[0].call$1(new A.SaveWebhookRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_legacy_WebhookEntity), webhook)); return t2.then$1$1(0, new A.WebhookEditVM_WebhookEditVM$fromStore___closure(webhook, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.WebhookEditVM_WebhookEditVM$fromStore___closure0()); }, $signature: 37 }; A.WebhookEditVM_WebhookEditVM$fromStore___closure.prototype = { call$1(savedWebhook) { var _this = this, _s22_ = "/settings/webhook/view", t1 = _this.webhook, t2 = _this.localization; if (t1.get$isNew()) { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "created_webhook"); if (t2 == null) t2 = ""; } else { t2.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t2.localeCode), "updated_webhook"); if (t2 == null) t2 = ""; } A.showToast(t2); if (_this.state.prefState.appLayout === B.AppLayout_mobile) { _this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute(_s22_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s22_, t1, t1); } else t2.pop$1(0, savedWebhook); } else A.viewEntity(false, savedWebhook, null, true); }, $signature: 315 }; A.WebhookEditVM_WebhookEditVM$fromStore___closure0.prototype = { call$1(error) { var t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.WebhookEditVM_WebhookEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.WebhookEditVM_WebhookEditVM$fromStore____closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.WebhookView.prototype = { createState$0() { return new A._WebhookViewState(B._StateLifecycle_0); } }; A._WebhookViewState.prototype = { build$1(_, context) { var _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, webhook = viewModel.webhook, t2 = t1.get$eventType(t1), t3 = t1.lookup$1(B.Map_atQCY.$index(0, webhook.eventId)); return new A.ViewScaffold(false, webhook, new A.ScrollableListView(A._setArrayType([A.EntityHeader$(webhook, t2, t1.get$createdOn(), A.formatDate(A.convertTimestampToDate(webhook.createdAt).toIso8601String$0(), context, true, true, false), _null, _null, t3), new A.ListDivider(_null), new A.TargetListTile(webhook, _null), new A.ListDivider(_null)], type$.JSArray_legacy_Widget), _null, _null, _null), new A._WebhookViewState_build_closure(viewModel), _null, _null); } }; A._WebhookViewState_build_closure.prototype = { call$0() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; A.TargetListTile.prototype = { build$1(_, context) { var _null = null; return A.ListTile$(false, B.EdgeInsets_22_22_22_22, _null, _null, true, _null, _null, false, _null, _null, _null, new A.TargetListTile_build_closure(this, context), false, _null, _null, _null, _null, new A.Padding(B.EdgeInsets_0_0_16_0, A.Text$(this.webhook.targetUrl, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Icon$(B.IconData_57744_MaterialIcons_null_false, _null, _null), _null); }, get$webhook() { return this.webhook; } }; A.TargetListTile_build_closure.prototype = { call$0() { A.handleWebhookAction(this.context, A._setArrayType([this.$this.webhook], type$.JSArray_legacy_BaseEntity), B.EntityAction_copy); }, $signature: 1 }; A.WebhookViewScreen.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.WebhookViewScreen_build_closure(this), new A.WebhookViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookViewVM); } }; A.WebhookViewScreen_build_closure0.prototype = { call$1(store) { return A.WebhookViewVM_WebhookViewVM$fromStore(store); }, $signature: 2791 }; A.WebhookViewScreen_build_closure.prototype = { call$2(context, vm) { return new A.WebhookView(vm, false, null); }, $signature: 2792 }; A.WebhookViewVM.prototype = { get$webhook() { return this.webhook; }, get$company() { return this.company; } }; A.WebhookViewVM_WebhookViewVM$fromStore_closure.prototype = { call$0() { this.store.get$_dispatchers()[0].call$1(new A.UpdateCurrentRoute("/settings/webhook")); }, $signature: 1 }; A.WebhookListItem.prototype = { build$1(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = A._lateReadCheck(A.StoreProvider_of(context, type$.legacy_AppState).__Store__state, "_state"), uiState = state.uiState, webhookUIState = uiState.webhookUIState, t2 = webhookUIState.listUIState.selectedIds, t3 = _this.filter, filterMatch = t3 != null && t3.length !== 0 ? A.matchesStringsValue(A._setArrayType([_this.webhook.targetUrl], type$.JSArray_legacy_String), t3) : _null; t3 = state.userCompanyStates; t4 = uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany; t3 = _this.webhook; t5 = t3.id; t6 = uiState.get$isEditing() ? webhookUIState.editing.id : webhookUIState.selectedId; t2 = t2 != null ? new A.IgnorePointer(true, _null, A.Checkbox$(A.Theme_of(context).colorScheme.secondary, false, _null, B.MaterialTapTargetSize_1, new A.WebhookListItem_build_closure(_this), _null, _null, false, _this.isChecked), _null) : _null; t7 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t8 = type$.JSArray_legacy_Widget; t7 = A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.Text$(t3.targetUrl, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null), 1), A.Text$(A.formatNumber(_null, context, _null, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], t8), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t7.size._dx); t1 = A.Text$(t1.lookup$1(B.Map_atQCY.$index(0, t3.eventId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = filterMatch != null && filterMatch.length !== 0 ? A.Text$(filterMatch, _null, 3, B.TextOverflow_2, _null, _null, _null, _null, _null, _null) : A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A.DismissibleEntity(t4, t3, A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t2, new A.WebhookListItem_build_closure0(_this), new A.WebhookListItem_build_closure1(_this), false, _null, _null, A.Column$(A._setArrayType([t1, t9, new A.EntityStateLabel(t3, _null)], t8), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, t7, _null, _null), t5 === t6, true, true, _null); }, get$user(receiver) { return this.user; }, get$webhook() { return this.webhook; } }; A.WebhookListItem_build_closure1.prototype = { call$0() { var t1 = A.selectEntity(this.$this.webhook, false, false); return t1; }, $signature: 0 }; A.WebhookListItem_build_closure0.prototype = { call$0() { var t1 = A.selectEntity(this.$this.webhook, false, true); return t1; }, $signature: 0 }; A.WebhookListItem_build_closure.prototype = { call$1(value) { return null.call$1(value); }, $signature: 10 }; A.WebhookListBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.WebhookListBuilder_build_closure(), A.webhook_list_vm_WebhookListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookListVM); } }; A.WebhookListBuilder_build_closure.prototype = { call$2(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.webhookList, t4 = viewModel.tableColumns; return A.EntityList$(t3, B.EntityType_webhook, new A.WebhookListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new A.WebhookPresenter(), t2, t4); }, $signature: 2793 }; A.WebhookListBuilder_build__closure.prototype = { call$2(context, index) { var t1 = this.viewModel, state = t1.state, webhookId = J.$index$asx(t1.webhookList, index), webhook = t1.webhookMap._map$_map.$index(0, webhookId), t2 = state.getUIState$1(B.EntityType_webhook).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = t3._list[t4].userCompany.user; if (t2 != null) { t3 = webhook.id; t2 = B.JSArray_methods.contains$1(t2._list, t3); } else t2 = false; return new A.WebhookListItem(t4, webhook, t1.filter, t2, null); }, $signature: 2794 }; A.WebhookListVM.prototype = {}; A.WebhookListVM_fromStore__handleRefresh.prototype = { call$1(context) { var completer, t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").isLoading) return A.Future_Future(null, type$.Null); completer = A.snackBarCompleter(context, A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); t1.get$_dispatchers()[0].call$1(new A.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.WebhookListVM_fromStore_closure.prototype = { call$1(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.WebhookListVM_fromStore_closure0.prototype = { call$1(field) { return this.store.get$_dispatchers()[0].call$1(new A.SortWebhooks(field)); }, $signature: 5 }; A.WebhookListVM_fromStore_closure1.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.ClearWebhookMultiselect()); }, $signature: 9 }; A.WebhookPresenter.prototype = { getField$2$context$field(context, field) { return this.super$EntityPresenter$getField(context, field); } }; A.WebhookScreen.prototype = { build$1(_, context) { var t4, t5, t6, _null = null, store = A.StoreProvider_of(context, type$.legacy_AppState), state = A._lateReadCheck(store.__Store__state, "_state"), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = t1._list[t3].userCompany; t3 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.webhookUIState.listUIState; t1 = t2.filterClearedAt; t4 = this.viewModel.webhookList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = A.List_List$of(A._setArrayType([], t5), true, type$.legacy_String); B.JSArray_methods.addAll$1(t6, A._setArrayType(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = A.AppBottomBar$(B.List_empty0, B.List_empty0, B.List_empty0, B.List_empty0, A._setArrayType([], t5), B.EntityType_webhook, false, B.List_empty17, new A.WebhookScreen_build_closure(store), new A.WebhookScreen_build_closure0(store), new A.WebhookScreen_build_closure1(store), new A.WebhookScreen_build_closure2(store), new A.WebhookScreen_build_closure3(store), new A.WebhookScreen_build_closure4(store), new A.WebhookScreen_build_closure5(store), _null, A._setArrayType(["target_url"], t5), B.List_empty18, t6); t5 = state.prefState; t3 = (t5.appLayout === B.AppLayout_mobile || t5.menuSidebarMode === B.AppSidebarMode_float) && userCompany.can$2(B.UserPermission_create, B.EntityType_webhook) ? A.FloatingActionButton$(A.Theme_of(context).primaryColorDark, A.Icon$(B.IconData_57415_MaterialIcons_null_false, B.Color_4294967295, _null), "webhook_fab", false, new A.WebhookScreen_build_closure6(context), t3.get$newWebhook()) : _null; return A.ListScaffold$(_null, B.List_empty12, new A.ListFilter(B.EntityType_webhook, t2, new A.WebhookScreen_build_closure7(store), t4, _null, _null, new A.WebhookScreen_build_closure8(store), new A.ValueKey("__filter_" + t1 + "__", type$.ValueKey_legacy_String)), new A.WebhookListBuilder(_null), t6, B.EntityType_webhook, t3, 0, "account_management", new A.WebhookScreen_build_closure9(store), new A.WebhookScreen_build_closure10(store)); } }; A.WebhookScreen_build_closure10.prototype = { call$0() { return this.store.get$_dispatchers()[0].call$1(new A.StartWebhookMultiselect()); }, $signature: 9 }; A.WebhookScreen_build_closure7.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooks(value)); }, $signature: 11 }; A.WebhookScreen_build_closure8.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByState(state)); }, $signature: 27 }; A.WebhookScreen_build_closure9.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.webhookUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearWebhookMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartWebhookMultiselect()); }, $signature: 1 }; A.WebhookScreen_build_closure4.prototype = { call$1(value) { this.store.get$_dispatchers()[0].call$1(new A.SortWebhooks(value)); }, $signature: 11 }; A.WebhookScreen_build_closure5.prototype = { call$2(state, value) { this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByState(state)); }, $signature: 27 }; A.WebhookScreen_build_closure.prototype = { call$0() { var t1 = this.store; if (A._lateReadCheck(t1.__Store__state, "_state").uiState.webhookUIState.listUIState.selectedIds != null) t1.get$_dispatchers()[0].call$1(new A.ClearWebhookMultiselect()); else t1.get$_dispatchers()[0].call$1(new A.StartWebhookMultiselect()); }, $signature: 1 }; A.WebhookScreen_build_closure0.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByCustom1(value)); }, $signature: 5 }; A.WebhookScreen_build_closure1.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByCustom2(value)); }, $signature: 5 }; A.WebhookScreen_build_closure2.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByCustom3(value)); }, $signature: 5 }; A.WebhookScreen_build_closure3.prototype = { call$1(value) { return this.store.get$_dispatchers()[0].call$1(new A.FilterWebhooksByCustom4(value)); }, $signature: 5 }; A.WebhookScreen_build_closure6.prototype = { call$0() { A.createEntityByType(true, this.context, B.EntityType_webhook); }, $signature: 1 }; A.WebhookScreenBuilder.prototype = { build$1(_, context) { var _null = null; return A.StoreConnector$(new A.WebhookScreenBuilder_build_closure(), A.webhook_screen_vm_WebhookScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookScreenVM); } }; A.WebhookScreenBuilder_build_closure.prototype = { call$2(context, vm) { return new A.WebhookScreen(vm, null); }, $signature: 2795 }; A.WebhookScreenVM.prototype = {}; A.snackBarCompleter_closure.prototype = { call$1(_) { var _this = this; if (_this.shouldPop && _this.navigator.canPop$0()) _this.navigator.pop$0(0); A.showToast(_this.message); }, $signature() { return this.T._eval$1("Null(0*)"); } }; A.snackBarCompleter_closure0.prototype = { call$1(error) { var t1; if (this.shouldPop && this.navigator.canPop$0()) this.navigator.pop$0(0); t1 = $.$get$navigatorKey(); t1.toString; A.showDialog(null, true, new A.snackBarCompleter__closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.snackBarCompleter__closure.prototype = { call$1(context) { return new A.ErrorDialog(this.error, false, null); }, $signature: 24 }; A.Debouncer.prototype = { run$1(action) { var t1 = $.Debouncer_timer; if (t1 == null) if (this.sendFirstAction) action.call$0(); else $.Debouncer_action = action; else { t1.cancel$0(0); $.Debouncer_action = action; } $.Debouncer_timer = A.Timer_Timer(A.Duration$(0, 0, 0, this.milliseconds, 0, 0), new A.Debouncer_run_closure(action)); } }; A.Debouncer_run_closure.prototype = { call$0() { this.action.call$0(); $.Debouncer_timer = $.Debouncer_action = null; }, $signature: 1 }; A.PersistUIDebouncer.prototype = { run$1(action) { var t1 = $.PersistUIDebouncer_timer; if (t1 == null) $.Debouncer_action = action; else { t1.cancel$0(0); $.Debouncer_action = action; } $.PersistUIDebouncer_timer = A.Timer_Timer(A.Duration$(0, 0, 0, 3000, 0, 0), new A.PersistUIDebouncer_run_closure(action)); } }; A.PersistUIDebouncer_run_closure.prototype = { call$0() { this.action.call$0(); $.Debouncer_timer = $.Debouncer_action = null; }, $signature: 1 }; A.loadDesign_closure.prototype = { call$1(response) { var t1, t2; type$.legacy_Response._as(response); t1 = response.statusCode; t2 = this.onComplete; if (t1 >= 400) { A.showErrorDialog(false, this.context, A.S(t1) + ": " + A.S(response.reasonPhrase)); t2.call$1(null); } else t2.call$1(response); }, $signature: 7 }; A.loadDesign_closure0.prototype = { call$1(error) { A.showErrorDialog(false, this.context, A.S(error)); this.onComplete.call$1(null); }, $signature: 7 }; A.showRefreshDataDialog_closure.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_legacy_Widget), null); }, $signature: 172 }; A.showErrorDialog_closure.prototype = { call$1(context) { return new A.ErrorDialog(this.message, this.clearErrorOnDismiss, null); }, $signature: 24 }; A.showMessageDialog_closure.prototype = { call$1(context) { return new A.MessageDialog(this.message, null, this.secondaryActions, this.onDismiss, null, null); }, $signature: 294 }; A.confirmCallback_closure.prototype = { call$1(context) { var t10, t11, _this = this, _null = null, _s19_ = "why_are_you_leaving", t1 = {}, t2 = t1._reason = t1._typed = "", t3 = _this.typeToConfirm, t4 = _this.localization, t5 = new A.confirmCallback_closure__onPressed(t1, t3, context, _this.callback, t4), t6 = t4.get$areYouSure(), t7 = t3 == null, t8 = !t7, t9 = t8 ? _null : A.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (t8) { t8 = type$.JSArray_legacy_Widget; t3 = A._setArrayType([new A.SizedBox(_null, 8, _null, _null), new A.Flexible(1, B.FlexFit_1, A.Text$(B.JSString_methods.replaceFirst$2(t4.get$pleaseTypeToConfirm(), ":value", t3) + ":", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, t3, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A.confirmCallback__closure(t1), _null, new A.confirmCallback__closure0(t5), true, _null, _null, B.TextAlign_4, _null)], t8); if (_this.askForReason) { t10 = $.$get$LocalizationsProvider__localizedValues(); t11 = J.$index$asx(t10.$index(0, t4.localeCode), _s19_); B.JSArray_methods.addAll$1(t3, A._setArrayType([new A.SizedBox(_null, 30, _null, _null), new A.Flexible(1, B.FlexFit_1, A.Text$(t11 == null ? J.$index$asx(t10.$index(0, "en"), _s19_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, _null, 4, 4, false, new A.confirmCallback__closure1(t1), _null, _null, true, _null, _null, B.TextAlign_4, _null)], t8)); } t3.push(new A.SizedBox(_null, 30, _null, _null)); t3.push(new A.Flexible(1, B.FlexFit_1, A.Text$(_this.title, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null)); t1 = A.Column$(t3, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); } else { t1 = _this.content; t1 = t1 == null ? _null : A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); } t3 = A.TextButton$(false, A.Text$(t4.get$cancel(t4).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.confirmCallback__closure2(context), _null); t4 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t4.localeCode), "ok"); t2 = t4 == null ? t2 : t4; return A.PointerInterceptor$(A.AlertDialog$(A._setArrayType([t3, A.TextButton$(t7, A.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.confirmCallback__closure3(t5), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t1, B.EdgeInsets_24_20_24_24, _null, t6, t9)); }, $signature: 629 }; A.confirmCallback_closure__onPressed.prototype = { call$0() { var _this = this, t1 = _this.typeToConfirm, t2 = t1 == null || t1.toLowerCase() === _this._box_0._typed.toLowerCase(), t3 = _this.context; if (t2) { A.Navigator_of(t3, false).pop$1(0, null); _this.callback.call$1(_this._box_0._reason); } else A.showMessageDialog(t3, B.JSString_methods.replaceFirst$2(_this.localization.get$pleaseTypeToConfirm(), ":value", t1), null, null); }, $signature: 0 }; A.confirmCallback__closure.prototype = { call$1(value) { return this._box_0._typed = value; }, $signature: 15 }; A.confirmCallback__closure0.prototype = { call$1(context) { return this._onPressed.call$0(); }, $signature: 30 }; A.confirmCallback__closure1.prototype = { call$1(value) { return this._box_0._reason = value; }, $signature: 15 }; A.confirmCallback__closure2.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; A.confirmCallback__closure3.prototype = { call$0() { return this._onPressed.call$0(); }, $signature: 0 }; A.passwordCallback_closure.prototype = { call$0() { var _null = null; this.store.get$_dispatchers()[0].call$1(new A.ViewSettings(_null, _null, _null, _null, false, "user_details", false, _null)); A.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A.passwordCallback_closure0.prototype = { call$1(context) { A.print("## 3"); return new A.PasswordConfirmation(this.callback, "", null); }, $signature: 488 }; A.passwordCallback_closure1.prototype = { call$2(idToken, accessToken) { var t1, t2, _this = this; if (!_this.alwaysRequire) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !t1.userCompanyStates._list[t2].userCompany.company.oauthPasswordRequired; t1 = t2; } else t1 = false; t1 = t1 || !_this.user.hasPassword; t2 = _this.callback; if (t1) { A.print("## 4"); t2.call$2(null, idToken); } else { A.print("## 5"); A.showDialog(null, false, new A.passwordCallback__closure0(t2, idToken), _this.context, null, true, type$.legacy_AlertDialog); } }, $signature: 38 }; A.passwordCallback__closure0.prototype = { call$1(context) { return new A.PasswordConfirmation(this.callback, this.idToken, null); }, $signature: 488 }; A.passwordCallback_closure2.prototype = { call$2(idToken, accessToken) { var t1, t2, _this = this; if (!_this.alwaysRequire) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !t1.userCompanyStates._list[t2].userCompany.company.oauthPasswordRequired; t1 = t2; } else t1 = false; t1 = t1 || !_this.user.hasPassword; t2 = _this.callback; if (t1) { A.print("## 6"); t2.call$2(null, idToken); } else { A.print("## 7"); A.showDialog(null, false, new A.passwordCallback__closure(t2, idToken), _this.context, null, true, type$.legacy_AlertDialog); } }, $signature: 38 }; A.passwordCallback__closure.prototype = { call$1(context) { return new A.PasswordConfirmation(this.callback, this.idToken, null); }, $signature: 488 }; A.passwordCallback_closure3.prototype = { call$1(error) { A.showErrorDialog(false, this.context, error); }, $signature: 7 }; A.PasswordConfirmation.prototype = { createState$0() { return new A._PasswordConfirmationState(B._StateLifecycle_0); }, callback$2($receiver, arg0, arg1) { return this.callback.call$2(arg0, arg1); } }; A._PasswordConfirmationState.prototype = { _submit$0() { var t1 = this._dialogs$_password, password = B.JSString_methods.trim$0(t1 == null ? "" : t1); if (password.length === 0) return; t1 = this._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$1(0, null); t1 = this._widget; t1.callback$2(0, password, t1.idToken); }, build$1(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "verify_password"); t2 = A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this._isPasswordObscured; t4 = t1.get$password(t1); t3 = A.TextField$(true, B.List_empty0, true, _null, _null, _null, _null, _null, 2, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, A.IconButton$(B.Alignment_0_1, _null, _null, true, A.Icon$(_this._isPasswordObscured ? B.IconData_59069_MaterialIcons_null_false : B.IconData_59070_MaterialIcons_null_false, B.MaterialColor_Map_HFpTk_4288585374, _null), _null, new A._PasswordConfirmationState_build_closure(_this), B.EdgeInsets_8_8_8_8, _null, _null, _null), _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, B.TextInputType_7_null_null, _null, _null, 1, _null, _null, t3, "\u2022", new A._PasswordConfirmationState_build_closure0(_this), _null, new A._PasswordConfirmationState_build_closure1(_this), _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, B.TextCapitalization_3, _null, _null, _null); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PasswordConfirmationState_build_closure2(context), _null), A.TextButton$(false, A.Text$(t1.get$submit(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._PasswordConfirmationState_build_closure3(_this), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t3, B.EdgeInsets_24_20_24_24, _null, _null, t2); } }; A._PasswordConfirmationState_build_closure0.prototype = { call$1(value) { return this.$this._dialogs$_password = value; }, $signature: 15 }; A._PasswordConfirmationState_build_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._PasswordConfirmationState_build__closure(t1)); }, $signature: 1 }; A._PasswordConfirmationState_build__closure.prototype = { call$0() { var t1 = this.$this; t1._isPasswordObscured = !t1._isPasswordObscured; }, $signature: 1 }; A._PasswordConfirmationState_build_closure1.prototype = { call$1(value) { return this.$this._submit$0(); }, $signature: 67 }; A._PasswordConfirmationState_build_closure2.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; A._PasswordConfirmationState_build_closure3.prototype = { call$0() { return this.$this._submit$0(); }, $signature: 0 }; A.fieldCallback_closure.prototype = { call$1(context) { var _this = this; return new A.FieldConfirmation(_this.callback, _this.title, _this.field, _this.maxLength, _this.secondaryActions, null); }, $signature: 2797 }; A.FieldConfirmation.prototype = { createState$0() { return new A._FieldConfirmationState(B._StateLifecycle_0); }, callback$1($receiver, arg0) { return this.callback.call$1(arg0); } }; A._FieldConfirmationState.prototype = { _submit$0() { var _this = this, t1 = _this._dialogs$_field; if ((t1 == null ? "" : t1).length === 0) return; t1 = _this._framework$_element; t1.toString; A.Navigator_of(t1, false).pop$1(0, null); _this._widget.callback$1(0, _this._dialogs$_field); }, build$1(_, context) { var _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, t3 = A.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = t2.maxLength, t5 = t4 != null ? B.MaxLengthEnforcement_1 : B.MaxLengthEnforcement_0; t5 = A.TextField$(true, B.List_empty0, true, new A._FieldConfirmationState_build_closure(), _null, _null, _null, _null, 2, A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, t2.field, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, _null, true, _null, false, _null, _null, _null, _null, t4, t5, 1, _null, _null, false, "\u2022", new A._FieldConfirmationState_build_closure0(_this), _null, new A._FieldConfirmationState_build_closure1(_this), _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, B.TextCapitalization_3, _null, _null, _null); t2 = t2.secondaryActions; if (t2 == null) t2 = A._setArrayType([], type$.JSArray_legacy_Widget); t2 = A.List_List$of(t2, true, type$.legacy_Widget); t2.push(new A.SizedBox(6, _null, _null, _null)); t2.push(A.TextButton$(false, A.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FieldConfirmationState_build_closure2(context), _null)); t2.push(A.TextButton$(false, A.Text$(t1.get$submit(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FieldConfirmationState_build_closure3(_this), _null)); return A.AlertDialog$(t2, B.EdgeInsets_0_0_0_0, _null, t5, B.EdgeInsets_24_20_24_24, _null, _null, t3); } }; A._FieldConfirmationState_build_closure0.prototype = { call$1(value) { return this.$this._dialogs$_field = value; }, $signature: 15 }; A._FieldConfirmationState_build_closure.prototype = { call$4$currentLength$isFocused$maxLength(_, currentLength, isFocused, maxLength) { return null; }, call$1(_) { return this.call$4$currentLength$isFocused$maxLength(_, null, null, null); }, $signature: 2798 }; A._FieldConfirmationState_build_closure1.prototype = { call$1(value) { return this.$this._submit$0(); }, $signature: 67 }; A._FieldConfirmationState_build_closure2.prototype = { call$0() { A.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; A._FieldConfirmationState_build_closure3.prototype = { call$0() { return this.$this._submit$0(); }, $signature: 0 }; A.cloneToDialog_closure.prototype = { call$1(context) { var t2, t3, t4, t5, _this = this, _null = null, t1 = _this.localization; t1.toString; t2 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode), "clone_to"); t2 = A.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = type$.JSArray_legacy_Widget; t4 = A._setArrayType([], t3); t5 = _this.userCompany; if (t5.can$2(B.UserPermission_create, B.EntityType_invoice)) t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(B.EntityType_invoice), _null, _null), _null, new A.cloneToDialog__closure(context, _this.invoice), false, _null, _null, _null, _null, A.Text$(t1.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); if (t5.can$2(B.UserPermission_create, B.EntityType_quote)) t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(B.EntityType_quote), _null, _null), _null, new A.cloneToDialog__closure0(context, _this.invoice), false, _null, _null, _null, _null, A.Text$(t1.get$quote(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); if (t5.can$2(B.UserPermission_create, B.EntityType_credit)) t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(B.EntityType_credit), _null, _null), _null, new A.cloneToDialog__closure1(context, _this.invoice), false, _null, _null, _null, _null, A.Text$(t1.get$credit(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); if (t5.can$2(B.UserPermission_create, B.EntityType_recurringInvoice)) t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(B.EntityType_recurringInvoice), _null, _null), _null, new A.cloneToDialog__closure2(context, _this.invoice), false, _null, _null, _null, _null, A.Text$(t1.get$recurringInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); if (t5.can$2(B.UserPermission_create, B.EntityType_purchaseOrder)) t4.push(A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(B.EntityType_purchaseOrder), _null, _null), _null, new A.cloneToDialog__closure3(context, _this.invoice), false, _null, _null, _null, _null, A.Text$(t1.get$purchaseOrder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); t4 = A.Column$(t4, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.cloneToDialog__closure4(context), _null)], t3), B.EdgeInsets_0_0_0_0, _null, t4, B.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 165 }; A.cloneToDialog__closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_cloneToInvoice, false); }, $signature: 1 }; A.cloneToDialog__closure0.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_cloneToQuote, false); }, $signature: 1 }; A.cloneToDialog__closure1.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_cloneToCredit, false); }, $signature: 1 }; A.cloneToDialog__closure2.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_cloneToRecurring, false); }, $signature: 1 }; A.cloneToDialog__closure3.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.handleEntitiesActions(A._setArrayType([this.invoice], type$.JSArray_legacy_BaseEntity), B.EntityAction_cloneToPurchaseOrder, false); }, $signature: 1 }; A.cloneToDialog__closure4.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.changeTaskStatusDialog_closure.prototype = { call$1(statusId) { return statusId != this.task.statusId; }, $signature: 16 }; A.changeTaskStatusDialog_closure0.prototype = { call$1(context) { var t2, t3, t4, _this = this, _null = null, _s13_ = "change_status", t1 = _this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t3 = J.$index$asx(t2.$index(0, t1.localeCode), _s13_); t2 = A.Text$(t3 == null ? J.$index$asx(t2.$index(0, "en"), _s13_) : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.statusIds; t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,ListTile*>"); t4 = A.Column$(A.List_List$of(new A.MappedListIterable(t3, new A.changeTaskStatusDialog__closure(_this.state, _this.store, _this.task, context, t1), t4), true, t4._eval$1("ListIterable.E")), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.changeTaskStatusDialog__closure0(context), _null)], type$.JSArray_legacy_Widget), B.EdgeInsets_0_0_0_0, _null, t4, B.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 165 }; A.changeTaskStatusDialog__closure.prototype = { call$1(statusId) { var _this = this, _null = null, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = A.Text$(t1.userCompanyStates._list[t2].taskStatusState.$get$1(0, statusId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57689_MaterialIcons_null_false, _null, _null), _null, new A.changeTaskStatusDialog___closure(_this.store, _this.task, statusId, _this.context, _this.localization), false, _null, _null, _null, _null, t2, _null, _null); }, $signature: 235 }; A.changeTaskStatusDialog___closure.prototype = { call$0() { var _this = this, _s14_ = "changed_status", t1 = _this.task.rebuild$1(new A.changeTaskStatusDialog____closure(_this.statusId)), t2 = _this.context, t3 = $.$get$LocalizationsProvider__localizedValues(), t4 = J.$index$asx(t3.$index(0, _this.localization.localeCode), _s14_); t3 = t4 == null ? J.$index$asx(t3.$index(0, "en"), _s14_) : t4; t3 = A.snackBarCompleter(t2, t3, false, type$.legacy_TaskEntity); _this.store.get$_dispatchers()[0].call$1(new A.SaveTaskRequest(t3, t1, true, null)); A.Navigator_of(t2, false).pop$0(0); }, $signature: 1 }; A.changeTaskStatusDialog____closure.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_statusId = this.statusId; return b; }, $signature: 50 }; A.changeTaskStatusDialog__closure0.prototype = { call$0() { return A.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.addToInvoiceDialog_closure.prototype = { call$1(invoice) { var t1; if (this.clientId !== invoice.clientId) return false; if (!invoice.get$isArchived() && !invoice.isDeleted) t1 = !(invoice.entityType === B.EntityType_invoice && invoice.statusId === "4"); else t1 = false; return t1; }, $signature: 163 }; A.addToInvoiceDialog_closure0.prototype = { call$1(context) { var t2, t3, _null = null, _s14_ = "add_to_invoice", t1 = this.localization; t1.toString; t2 = $.$get$LocalizationsProvider__localizedValues(); t1 = J.$index$asx(t2.$index(0, t1.localeCode), _s14_); t1 = A.Text$(t1 == null ? J.$index$asx(t2.$index(0, "en"), _s14_) : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = this.invoices; t3 = t2.$ti._eval$1("MappedIterable<1,SimpleDialogOption*>"); return A.SimpleDialog$(A.List_List$of(new A.MappedIterable(t2, new A.addToInvoiceDialog__closure(context, this.items), t3), true, t3._eval$1("Iterable.E")), t1); }, $signature: 172 }; A.addToInvoiceDialog__closure.prototype = { call$1(invoice) { var _null = null, t1 = this.context; return new A.SimpleDialogOption(new A.addToInvoiceDialog___closure(t1, invoice, this.items), A.Row$(A._setArrayType([A.Expanded$(A.Text$(invoice.number, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), A.Text$(A.formatNumber(invoice.amount, t1, invoice.clientId, _null, B.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null); }, $signature: 2799 }; A.addToInvoiceDialog___closure.prototype = { call$0() { A.Navigator_of(this.context, false).pop$0(0); A.editEntity(null, this.invoice.rebuild$1(new A.addToInvoiceDialog____closure(this.items)), true, null); }, $signature: 1 }; A.addToInvoiceDialog____closure.prototype = { call$1(b) { b.get$lineItems().addAll$1(0, this.items); return b; }, $signature: 6 }; A.EnumUtils_fromString_closure.prototype = { call$1(enumItem) { var t1 = A.EnumUtils_parse(enumItem); t1 = t1 == null ? null : t1.toLowerCase(); return t1 === this.value.toLowerCase(); }, $signature() { return this.T._eval$1("bool*(0*)"); } }; A.EnumUtils_fromString_closure0.prototype = { call$0() { return null; }, $signature: 1 }; A.FormatNumberType.prototype = { toString$0(_) { return "FormatNumberType." + this._core$_name; } }; A.LocaleCodeAware.prototype = {}; A.LocalizationsProvider.prototype = { get$newProject() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_project"); return t1 == null ? "" : t1; }, get$footer() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "footer"); return t1 == null ? "" : t1; }, get$dateRange() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "date_range"); return t1 == null ? "" : t1; }, get$compareTo(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "compare_to"); return t1 == null ? "" : t1; }, get$custom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "custom"); return t1 == null ? "" : t1; }, get$more() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "more"); return t1 == null ? "" : t1; }, get$editClient() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "edit_client"); return t1 == null ? "" : t1; }, get$editVendor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "edit_vendor"); return t1 == null ? "" : t1; }, get$billingAddress() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "billing_address"); return t1 == null ? "" : t1; }, get$shippingAddress(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "shipping_address"); return t1 == null ? "" : t1; }, get$close(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "close"); return t1 == null ? "" : t1; }, get$email(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "email"); return t1 == null ? "" : t1; }, get$password(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "password"); return t1 == null ? "" : t1; }, get$name(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "name"); return t1 == null ? "" : t1; }, get$logout() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "logout"); return t1 == null ? "" : t1; }, get$filter(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "filter"); return t1 == null ? "" : t1; }, get$active(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "active"); return t1 == null ? "" : t1; }, get$archived() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "archived"); return t1 == null ? "" : t1; }, get$deleted() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "deleted"); return t1 == null ? "" : t1; }, get$dashboard() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "dashboard"); return t1 == null ? "" : t1; }, get$$delete(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "delete"); return t1 == null ? "" : t1; }, get$refreshComplete() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "refresh_complete"); return t1 == null ? "" : t1; }, get$pleaseEnterYourEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_your_email"); return t1 == null ? "" : t1; }, get$pleaseEnterAFirstName() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_a_first_name"); return t1 == null ? "" : t1; }, get$pleaseEnterALastName() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_a_last_name"); return t1 == null ? "" : t1; }, get$save(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "save"); return t1 == null ? "" : t1; }, get$paidToDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "paid_to_date"); return t1 == null ? "" : t1; }, get$balanceDue() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "balance_due"); return t1 == null ? "" : t1; }, get$overview() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "overview"); return t1 == null ? "" : t1; }, get$details(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "details"); return t1 == null ? "" : t1; }, get$phone(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "phone"); return t1 == null ? "" : t1; }, get$website() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "website"); return t1 == null ? "" : t1; }, get$vatNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "vat_number"); return t1 == null ? "" : t1; }, get$idNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "id_number"); return t1 == null ? "" : t1; }, get$create(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "create"); return t1 == null ? "" : t1; }, get$copiedToClipboard() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "copied_to_clipboard"); return t1 == null ? "" : t1; }, get$error(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "error"); return t1 == null ? "" : t1; }, get$couldNotLaunch() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "could_not_launch"); return t1 == null ? "" : t1; }, get$contacts() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "contacts"); return t1 == null ? "" : t1; }, get$firstName(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "first_name"); return t1 == null ? "" : t1; }, get$lastName(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "last_name"); return t1 == null ? "" : t1; }, get$addContact() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_contact"); return t1 == null ? "" : t1; }, get$areYouSure() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "are_you_sure"); return t1 == null ? "" : t1; }, get$cancel(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "cancel"); return t1 == null ? "" : t1; }, get$remove(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "remove"); return t1 == null ? "" : t1; }, get$emailIsInvalid() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "email_is_invalid"); return t1 == null ? "" : t1; }, get$product(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "product"); return t1 == null ? "" : t1; }, get$products() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "products"); return t1 == null ? "" : t1; }, get$newProduct() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_product"); return t1 == null ? "" : t1; }, get$newVendor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_vendor"); return t1 == null ? "" : t1; }, get$document(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "document"); return t1 == null ? "" : t1; }, get$documents() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "documents"); return t1 == null ? "" : t1; }, get$newDocument() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_document"); return t1 == null ? "" : t1; }, get$uploadedDocument() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "uploaded_document"); return t1 == null ? "" : t1; }, get$deletedDocument() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "deleted_document"); return t1 == null ? "" : t1; }, get$newExpense() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_expense"); return t1 == null ? "" : t1; }, get$notes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "notes"); return t1 == null ? "" : t1; }, get$cost() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "cost"); return t1 == null ? "" : t1; }, get$client(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "client"); return t1 == null ? "" : t1; }, get$clients(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "clients"); return t1 == null ? "" : t1; }, get$newClient() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_client"); return t1 == null ? "" : t1; }, get$address1() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "address1"); return t1 == null ? "" : t1; }, get$address2() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "address2"); return t1 == null ? "" : t1; }, get$city(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "city"); return t1 == null ? "" : t1; }, get$state(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "state"); return t1 == null ? "" : t1; }, get$postalCode(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "postal_code"); return t1 == null ? "" : t1; }, get$country(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "country"); return t1 == null ? "" : t1; }, get$invoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice"); return t1 == null ? "" : t1; }, get$invoices() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoices"); return t1 == null ? "" : t1; }, get$newInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_invoice"); return t1 == null ? "" : t1; }, get$updatedInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_invoice"); return t1 == null ? "" : t1; }, get$emailedInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "emailed_invoice"); return t1 == null ? "" : t1; }, get$amount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "amount"); return t1 == null ? "" : t1; }, get$invoiceNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_number"); return t1 == null ? "" : t1; }, get$invoiceDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_date"); return t1 == null ? "" : t1; }, get$discount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "discount"); return t1 == null ? "" : t1; }, get$poNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "po_number"); return t1 == null ? "" : t1; }, get$publicNotes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "public_notes"); return t1 == null ? "" : t1; }, get$privateNotes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "private_notes"); return t1 == null ? "" : t1; }, get$frequency(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "frequency"); return t1 == null ? "" : t1; }, get$startDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "start_date"); return t1 == null ? "" : t1; }, get$endDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "end_date"); return t1 == null ? "" : t1; }, get$quoteNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_number"); return t1 == null ? "" : t1; }, get$quoteDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_date"); return t1 == null ? "" : t1; }, get$validUntil() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "valid_until"); return t1 == null ? "" : t1; }, get$items(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "items"); return t1 == null ? "" : t1; }, get$partialDeposit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "partial_deposit"); return t1 == null ? "" : t1; }, get$description(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "description"); return t1 == null ? "" : t1; }, get$unitCost() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "unit_cost"); return t1 == null ? "" : t1; }, get$quantity() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quantity"); return t1 == null ? "" : t1; }, get$addItem() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_item"); return t1 == null ? "" : t1; }, get$contact() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "contact"); return t1 == null ? "" : t1; }, get$pdf() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "pdf"); return t1 == null ? "" : t1; }, get$dueDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "due_date"); return t1 == null ? "" : t1; }, get$partialDueDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "partial_due_date"); return t1 == null ? "" : t1; }, get$status(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "status"); return t1 == null ? "" : t1; }, get$clickPlusToAddItem() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "click_plus_to_add_item"); return t1 == null ? "" : t1; }, get$countSelected() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "count_selected"); return t1 == null ? "" : t1; }, get$total(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "total"); return t1 == null ? "" : t1; }, get$edit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "edit"); return t1 == null ? "" : t1; }, get$dismiss() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "dismiss"); return t1 == null ? "" : t1; }, get$pleaseSelectADate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_select_a_date"); return t1 == null ? "" : t1; }, get$pleaseSelectAClient() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_select_a_client"); return t1 == null ? "" : t1; }, get$taskRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "task_rate"); return t1 == null ? "" : t1; }, get$settings() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "settings"); return t1 == null ? "" : t1; }, get$language(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "language"); return t1 == null ? "" : t1; }, get$currency() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "currency"); return t1 == null ? "" : t1; }, get$createdOn() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "created_on"); return t1 == null ? "" : t1; }, get$tax() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "tax"); return t1 == null ? "" : t1; }, get$pleaseEnterAnInvoiceNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_an_invoice_number"); return t1 == null ? "" : t1; }, get$draft() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "draft"); return t1 == null ? "" : t1; }, get$sent() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "sent"); return t1 == null ? "" : t1; }, get$viewed() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "viewed"); return t1 == null ? "" : t1; }, get$paid() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "paid"); return t1 == null ? "" : t1; }, get$done() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "done"); return t1 == null ? "" : t1; }, get$pleaseEnterAClientOrContactName() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_a_client_or_contact_name"); return t1 == null ? "" : t1; }, get$refreshData() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "refresh_data"); return t1 == null ? "" : t1; }, get$blankContact() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "blank_contact"); return t1 == null ? "" : t1; }, get$activity() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "activity"); return t1 == null ? "" : t1; }, get$noRecordsFound() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "no_records_found"); return t1 == null ? "" : t1; }, get$loading() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "loading"); return t1 == null ? "" : t1; }, get$industry() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "industry"); return t1 == null ? "" : t1; }, get$size(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "size"); return t1 == null ? "" : t1; }, get$paymentDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "payment_date"); return t1 == null ? "" : t1; }, get$net() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "net"); return t1 == null ? "" : t1; }, get$clientPortal() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "client_portal"); return t1 == null ? "" : t1; }, get$enabled(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enabled"); return t1 == null ? "" : t1; }, get$initialEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "initial_email"); return t1 == null ? "" : t1; }, get$firstReminder() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "first_reminder"); return t1 == null ? "" : t1; }, get$secondReminder() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "second_reminder"); return t1 == null ? "" : t1; }, get$thirdReminder() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "third_reminder"); return t1 == null ? "" : t1; }, get$send(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "send"); return t1 == null ? "" : t1; }, get$subject() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subject"); return t1 == null ? "" : t1; }, get$body(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "body"); return t1 == null ? "" : t1; }, get$sendEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "send_email"); return t1 == null ? "" : t1; }, get$emailReceipt() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "email_receipt"); return t1 == null ? "" : t1; }, get$preview() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "preview"); return t1 == null ? "" : t1; }, get$customize() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "customize"); return t1 == null ? "" : t1; }, get$history(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "history"); return t1 == null ? "" : t1; }, get$payment() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "payment"); return t1 == null ? "" : t1; }, get$payments() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "payments"); return t1 == null ? "" : t1; }, get$paymentType() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "payment_type"); return t1 == null ? "" : t1; }, get$transactionReference() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "transaction_reference"); return t1 == null ? "" : t1; }, get$enterPayment() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enter_payment"); return t1 == null ? "" : t1; }, get$quote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote"); return t1 == null ? "" : t1; }, get$quotes(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quotes"); return t1 == null ? "" : t1; }, get$newQuote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_quote"); return t1 == null ? "" : t1; }, get$updatedQuote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_quote"); return t1 == null ? "" : t1; }, get$expense() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "expense"); return t1 == null ? "" : t1; }, get$expenses() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "expenses"); return t1 == null ? "" : t1; }, get$vendor(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "vendor"); return t1 == null ? "" : t1; }, get$vendors() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "vendors"); return t1 == null ? "" : t1; }, get$task() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "task"); return t1 == null ? "" : t1; }, get$tasks() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "tasks"); return t1 == null ? "" : t1; }, get$project() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "project"); return t1 == null ? "" : t1; }, get$projects() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "projects"); return t1 == null ? "" : t1; }, get$oneTimePassword() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "one_time_password"); return t1 == null ? "" : t1; }, get$emailedQuote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "emailed_quote"); return t1 == null ? "" : t1; }, get$emailedCredit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "emailed_credit"); return t1 == null ? "" : t1; }, get$pleaseEnterAName() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_a_name"); return t1 == null ? "" : t1; }, get$updatedTask() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_task"); return t1 == null ? "" : t1; }, get$newTask() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_task"); return t1 == null ? "" : t1; }, get$duration(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "duration"); return t1 == null ? "" : t1; }, get$date() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "date"); return t1 == null ? "" : t1; }, get$startTime(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "start_time"); return t1 == null ? "" : t1; }, get$endTime(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "end_time"); return t1 == null ? "" : t1; }, get$startedTask() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "started_task"); return t1 == null ? "" : t1; }, get$stoppedTask() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "stopped_task"); return t1 == null ? "" : t1; }, get$start(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "start"); return t1 == null ? "" : t1; }, get$stop(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "stop"); return t1 == null ? "" : t1; }, get$resume(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "resume"); return t1 == null ? "" : t1; }, get$running() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "running"); return t1 == null ? "" : t1; }, get$invoiced() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoiced"); return t1 == null ? "" : t1; }, get$logged() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "logged"); return t1 == null ? "" : t1; }, get$passwordIsTooShort() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "password_is_too_short"); return t1 == null ? "" : t1; }, get$design() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "design"); return t1 == null ? "" : t1; }, get$address() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "address"); return t1 == null ? "" : t1; }, get$category() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "category"); return t1 == null ? "" : t1; }, get$markPaid() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "mark_paid"); return t1 == null ? "" : t1; }, get$convertCurrency() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "convert_currency"); return t1 == null ? "" : t1; }, get$exchangeRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "exchange_rate"); return t1 == null ? "" : t1; }, get$addDocumentsToInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_documents_to_invoice"); return t1 == null ? "" : t1; }, get$pending(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "pending"); return t1 == null ? "" : t1; }, get$noHistory(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "no_history"); return t1 == null ? "" : t1; }, get$download(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "download"); return t1 == null ? "" : t1; }, get$requiresAnEnterprisePlan() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "requires_an_enterprise_plan"); return t1 == null ? "" : t1; }, get$errorUnsavedChanges() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "error_unsaved_changes"); return t1 == null ? "" : t1; }, get$createNew() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "create_new"); return t1 == null ? "" : t1; }, get$iAgreeToThe() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "i_agree_to_the"); return t1 == null ? "" : t1; }, get$termsOfService() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "terms_of_service"); return t1 == null ? "" : t1; }, get$privacyPolicy() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "privacy_policy"); return t1 == null ? "" : t1; }, get$upgrade() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "upgrade"); return t1 == null ? "" : t1; }, get$back(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "back"); return t1 == null ? "" : t1; }, get$all() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "all"); return t1 == null ? "" : t1; }, get$price() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "price"); return t1 == null ? "" : t1; }, get$companyDetails() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "company_details"); return t1 == null ? "" : t1; }, get$notifications() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "notifications"); return t1 == null ? "" : t1; }, get$invoiceDesign() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_design"); return t1 == null ? "" : t1; }, get$savedSettings() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "saved_settings"); return t1 == null ? "" : t1; }, get$logo() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "logo"); return t1 == null ? "" : t1; }, get$newGroup() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_group"); return t1 == null ? "" : t1; }, get$group() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "group"); return t1 == null ? "" : t1; }, get$timezone() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "timezone"); return t1 == null ? "" : t1; }, get$dateFormat() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "date_format"); return t1 == null ? "" : t1; }, get$militaryTime() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "military_time"); return t1 == null ? "" : t1; }, get$sendReminders() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "send_reminders"); return t1 == null ? "" : t1; }, get$code(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "ocde"); return t1 == null ? "" : t1; }, get$disabled(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "disabled"); return t1 == null ? "" : t1; }, get$newCompanyGateway() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_company_gateway"); return t1 == null ? "" : t1; }, get$companyGateway() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "company_gateway"); return t1 == null ? "" : t1; }, get$newTaxRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_tax_rate"); return t1 == null ? "" : t1; }, get$taxRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "tax_rate"); return t1 == null ? "" : t1; }, get$rate(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "rate"); return t1 == null ? "" : t1; }, get$minLimit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "min_limit"); return t1 == null ? "" : t1; }, get$maxLimit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "max_limit"); return t1 == null ? "" : t1; }, get$feeAmount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "fee_amount"); return t1 == null ? "" : t1; }, get$feePercent() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "fee_percent"); return t1 == null ? "" : t1; }, get$feeCap() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "fee_cap"); return t1 == null ? "" : t1; }, get$replyToEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "reply_to_email"); return t1 == null ? "" : t1; }, get$bccEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "bcc_email"); return t1 == null ? "" : t1; }, get$attachPdf() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "attach_pdf"); return t1 == null ? "" : t1; }, get$attachDocuments() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "attach_documents"); return t1 == null ? "" : t1; }, get$attachUbl() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "attach_ubl"); return t1 == null ? "" : t1; }, get$light() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "light"); return t1 == null ? "" : t1; }, get$dark() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "dark"); return t1 == null ? "" : t1; }, get$emailSignature() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "email_signature"); return t1 == null ? "" : t1; }, get$subdomain() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subdomain"); return t1 == null ? "" : t1; }, get$enablePortalPassword() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enable_portal_password"); return t1 == null ? "" : t1; }, get$showAcceptInvoiceTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "show_accept_invoice_terms"); return t1 == null ? "" : t1; }, get$showAcceptQuoteTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "show_accept_quote_terms"); return t1 == null ? "" : t1; }, get$requireInvoiceSignature() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "require_invoice_signature"); return t1 == null ? "" : t1; }, get$requireInvoiceSignatureHelp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "require_invoice_signature_help"); return t1 == null ? "" : t1; }, get$requireQuoteSignature() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "require_quote_signature"); return t1 == null ? "" : t1; }, get$signatureOnPdf() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "signature_on_pdf"); return t1 == null ? "" : t1; }, get$recurringPrefix() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "recurring_prefix"); return t1 == null ? "" : t1; }, get$resetCounter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "reset_counter"); return t1 == null ? "" : t1; }, get$credit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit"); return t1 == null ? "" : t1; }, get$credits() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credits"); return t1 == null ? "" : t1; }, get$company() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "company"); return t1 == null ? "" : t1; }, get$never() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "never"); return t1 == null ? "" : t1; }, get$autoEmailInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "auto_email_invoice"); return t1 == null ? "" : t1; }, get$autoArchiveQuote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "auto_archive_quote"); return t1 == null ? "" : t1; }, get$autoConvertQuote() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "auto_convert_quote"); return t1 == null ? "" : t1; }, get$invoiceTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_terms"); return t1 == null ? "" : t1; }, get$invoiceFooter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_footer"); return t1 == null ? "" : t1; }, get$quoteTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_terms"); return t1 == null ? "" : t1; }, get$quoteFooter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_footer"); return t1 == null ? "" : t1; }, get$quoteDesign() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_design"); return t1 == null ? "" : t1; }, get$pageSize() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "page_size"); return t1 == null ? "" : t1; }, get$fontSize(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "font_size"); return t1 == null ? "" : t1; }, get$primaryColor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "primary_color"); return t1 == null ? "" : t1; }, get$secondaryColor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "secondary_color"); return t1 == null ? "" : t1; }, get$primaryFont() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "primary_font"); return t1 == null ? "" : t1; }, get$secondaryFont() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "secondary_font"); return t1 == null ? "" : t1; }, get$newUser() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_user"); return t1 == null ? "" : t1; }, get$updatedUser() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_user"); return t1 == null ? "" : t1; }, get$schedule() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "schedule"); return t1 == null ? "" : t1; }, get$creditNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit_number"); return t1 == null ? "" : t1; }, get$recoverPassword() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "recover_password"); return t1 == null ? "" : t1; }, get$submit(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "submit"); return t1 == null ? "" : t1; }, get$options(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "options"); return t1 == null ? "" : t1; }, get$commaSeparatedList() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "comma_sparated_list"); return t1 == null ? "" : t1; }, get$noClientSelected() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "no_client_selected"); return t1 == null ? "" : t1; }, get$inclusiveTaxes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "inclusive_taxes"); return t1 == null ? "" : t1; }, get$user(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "user"); return t1 == null ? "" : t1; }, get$defaultTaxRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "default_tax_rate"); return t1 == null ? "" : t1; }, get$lockInvoices() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "lock_invoices"); return t1 == null ? "" : t1; }, get$sharedInvoiceQuoteCounter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "shared_invoice_quote_counter"); return t1 == null ? "" : t1; }, get$defaultQuantity() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "default_quantity"); return t1 == null ? "" : t1; }, get$firstCustom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "first_custom"); return t1 == null ? "" : t1; }, get$secondCustom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "second_custom"); return t1 == null ? "" : t1; }, get$thirdCustom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "third_custom"); return t1 == null ? "" : t1; }, get$view(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "view"); return t1 == null ? "" : t1; }, get$mobile() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "mobile"); return t1 == null ? "" : t1; }, get$desktop() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "desktop"); return t1 == null ? "" : t1; }, get$float(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "float"); return t1 == null ? "" : t1; }, get$menuSidebar() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "menu_sidebar"); return t1 == null ? "" : t1; }, get$yes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "yes"); return t1 == null ? "" : t1; }, get$no() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "no"); return t1 == null ? "" : t1; }, get$deletedLogo() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "deleted_logo"); return t1 == null ? "" : t1; }, get$pleaseEnterAValue() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_enter_a_value"); return t1 == null ? "" : t1; }, get$lineTotal() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "line_total"); return t1 == null ? "" : t1; }, get$contactUs() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "contact_us"); return t1 == null ? "" : t1; }, get$documentation() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "documentation"); return t1 == null ? "" : t1; }, get$about() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "about"); return t1 == null ? "" : t1; }, get$supportForum() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "support_forum"); return t1 == null ? "" : t1; }, get$message(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "message"); return t1 == null ? "" : t1; }, get$applied() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "applied"); return t1 == null ? "" : t1; }, get$multiselect() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "multiselect"); return t1 == null ? "" : t1; }, get$filteredBy() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "filtered_by"); return t1 == null ? "" : t1; }, get$refund() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "refund"); return t1 == null ? "" : t1; }, get$addCompany() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_company"); return t1 == null ? "" : t1; }, get$reports() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "reports"); return t1 == null ? "" : t1; }, get$columns(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "columns"); return t1 == null ? "" : t1; }, get$editColumns() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "edit_columns"); return t1 == null ? "" : t1; }, get$count(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "count"); return t1 == null ? "" : t1; }, get$$export() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "export"); return t1 == null ? "" : t1; }, get$number(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "number"); return t1 == null ? "" : t1; }, get$reset(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "reset"); return t1 == null ? "" : t1; }, get$newCompany() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_company"); return t1 == null ? "" : t1; }, get$creditFooter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit_footer"); return t1 == null ? "" : t1; }, get$creditTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit_terms"); return t1 == null ? "" : t1; }, get$learnMore() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "learn_more"); return t1 == null ? "" : t1; }, get$updateAvailable() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "update_available"); return t1 == null ? "" : t1; }, get$taskStatus() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "task_status"); return t1 == null ? "" : t1; }, get$newTaskStatus() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_task_status"); return t1 == null ? "" : t1; }, get$updatedTaskStatus() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_task_status"); return t1 == null ? "" : t1; }, get$expenseCategory() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "expense_category"); return t1 == null ? "" : t1; }, get$newExpenseCategory() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_expense_category"); return t1 == null ? "" : t1; }, get$recurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "recurring_invoice"); return t1 == null ? "" : t1; }, get$recurringInvoices() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "recurring_invoices"); return t1 == null ? "" : t1; }, get$newRecurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_recurring_invoice"); return t1 == null ? "" : t1; }, get$updatedRecurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_recurring_invoice"); return t1 == null ? "" : t1; }, get$stoppedRecurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "stopped_recurring_invoice"); return t1 == null ? "" : t1; }, get$startedRecurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "started_recurring_invoice"); return t1 == null ? "" : t1; }, get$resumedRecurringInvoice() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "resumed_recurring_invoice"); return t1 == null ? "" : t1; }, get$webhook() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "webhook"); return t1 == null ? "" : t1; }, get$newWebhook() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_webhook"); return t1 == null ? "" : t1; }, get$token() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "token"); return t1 == null ? "" : t1; }, get$newToken() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_token"); return t1 == null ? "" : t1; }, get$paymentTerm() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "payment_term"); return t1 == null ? "" : t1; }, get$newPaymentTerm() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_payment_term"); return t1 == null ? "" : t1; }, get$newDesign() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_design"); return t1 == null ? "" : t1; }, get$newCredit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_credit"); return t1 == null ? "" : t1; }, get$updatedCredit() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "updated_credit"); return t1 == null ? "" : t1; }, get$creditDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit_date"); return t1 == null ? "" : t1; }, get$recurringExpenses() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "recurring_expenses"); return t1 == null ? "" : t1; }, get$header() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "header"); return t1 == null ? "" : t1; }, get$includes(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "includes"); return t1 == null ? "" : t1; }, get$creditDesign() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "credit_design"); return t1 == null ? "" : t1; }, get$applyLicense() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "apply_license"); return t1 == null ? "" : t1; }, get$none() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "none"); return t1 == null ? "" : t1; }, get$addField() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_field"); return t1 == null ? "" : t1; }, get$$import(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "import"); return t1 == null ? "" : t1; }, get$autoBill() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "auto_bill"); return t1 == null ? "" : t1; }, get$optional() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "optional"); return t1 == null ? "" : t1; }, get$refundPayment() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "refund_payment"); return t1 == null ? "" : t1; }, get$exclusive(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "exclusive"); return t1 == null ? "" : t1; }, get$inclusive() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "inclusive"); return t1 == null ? "" : t1; }, get$allRecords() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "all_records"); return t1 == null ? "" : t1; }, get$ownedByUser() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "owned_by_user"); return t1 == null ? "" : t1; }, get$ledger() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "ledger"); return t1 == null ? "" : t1; }, get$clientEmailNotSet() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "client_email_not_set"); return t1 == null ? "" : t1; }, get$subtotal() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subtotal"); return t1 == null ? "" : t1; }, get$eventType(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "event_type"); return t1 == null ? "" : t1; }, get$applyPayment() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "apply_payment"); return t1 == null ? "" : t1; }, get$gateway() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "gateway"); return t1 == null ? "" : t1; }, get$label(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "label"); return t1 == null ? "" : t1; }, get$welcomeToInvoiceNinja() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "welcome_to_invoice_ninja"); return t1 == null ? "" : t1; }, get$copyLink() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "copy_link"); return t1 == null ? "" : t1; }, get$viewPortal() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "view_portal"); return t1 == null ? "" : t1; }, get$systemLogs() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "system_logs"); return t1 == null ? "" : t1; }, get$sendDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "send_date"); return t1 == null ? "" : t1; }, get$nextSendDate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "next_send_date"); return t1 == null ? "" : t1; }, get$remainingCycles() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "remaining_cycles"); return t1 == null ? "" : t1; }, get$endless() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "endless"); return t1 == null ? "" : t1; }, get$usePaymentTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "use_payment_terms"); return t1 == null ? "" : t1; }, get$firstDayOfTheMonth() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "first_day_of_the_month"); return t1 == null ? "" : t1; }, get$lastDayOfTheMonth() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "last_day_of_the_month"); return t1 == null ? "" : t1; }, get$dayCount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "day_count"); return t1 == null ? "" : t1; }, get$autoBillEnabled() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "auto_bill_enabled"); return t1 == null ? "" : t1; }, get$markPaidHelp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "mark_paid_help"); return t1 == null ? "" : t1; }, get$addDocumentsToInvoiceHelp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_documents_to_invoice_help"); return t1 == null ? "" : t1; }, get$forceUpdate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "force_update"); return t1 == null ? "" : t1; }, get$shouldBeInvoiced() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "should_be_invoiced"); return t1 == null ? "" : t1; }, get$shouldBeInvoicedHelp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "should_be_invoiced_help"); return t1 == null ? "" : t1; }, get$expenseCategoryId() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "expense_category_id"); return t1 == null ? "" : t1; }, get$companyDisabledWarning() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "company_disabled_warning"); return t1 == null ? "" : t1; }, get$taskNumber() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "task_number"); return t1 == null ? "" : t1; }, get$actions(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "actions"); return t1 == null ? "" : t1; }, get$partialDue() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "partial_due"); return t1 == null ? "" : t1; }, get$unpaid() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "unpaid"); return t1 == null ? "" : t1; }, get$addCustom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_custom"); return t1 == null ? "" : t1; }, get$purge() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "purge"); return t1 == null ? "" : t1; }, get$pleaseTypeToConfirm() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_type_to_confirm"); return t1 == null ? "" : t1; }, get$fullscreenEditor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "fullscreen_editor"); return t1 == null ? "" : t1; }, get$sidebarEditor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "sidebar_editor"); return t1 == null ? "" : t1; }, get$webhookUrl() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "webhook_url"); return t1 == null ? "" : t1; }, get$startedImport() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "started_import"); return t1 == null ? "" : t1; }, get$show(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "show"); return t1 == null ? "" : t1; }, get$hide() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "hide"); return t1 == null ? "" : t1; }, get$enterTaxes() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enter_taxes"); return t1 == null ? "" : t1; }, get$byRate() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "by_rate"); return t1 == null ? "" : t1; }, get$byAmount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "by_amount"); return t1 == null ? "" : t1; }, get$convertedAmount() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "converted_amount"); return t1 == null ? "" : t1; }, get$emailSentToConfirmEmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "email_sent_to_confirm_email"); return t1 == null ? "" : t1; }, get$countHours() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "count_hours"); return t1 == null ? "" : t1; }, get$countDays() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "count_days"); return t1 == null ? "" : t1; }, get$countDay() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "count_day"); return t1 == null ? "" : t1; }, get$enableTwoFactor() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enable_two_factor"); return t1 == null ? "" : t1; }, get$viewDocs() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "view_docs"); return t1 == null ? "" : t1; }, get$pleaseFirstSetAPassword() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "please_first_set_a_password"); return t1 == null ? "" : t1; }, get$anErrorOccurredTryAgain() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "an_error_occurred_try_again"); return t1 == null ? "" : t1; }, get$sharedInvoiceCreditCounter() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "shared_invoice_credit_counter"); return t1 == null ? "" : t1; }, get$connectGmail() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "connect_gmail"); return t1 == null ? "" : t1; }, get$subdomainIsNotAvailable() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subdomain_is_not_available"); return t1 == null ? "" : t1; }, get$subscription() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subscription"); return t1 == null ? "" : t1; }, get$newSubscription() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "new_subscription"); return t1 == null ? "" : t1; }, get$restMethod() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "rest_method"); return t1 == null ? "" : t1; }, get$headerKey() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "header_key"); return t1 == null ? "" : t1; }, get$invoicePaymentTerms() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "invoice_payment_terms"); return t1 == null ? "" : t1; }, get$quoteValidUntil() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "quote_valid_until"); return t1 == null ? "" : t1; }, get$headerValue() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "header_value"); return t1 == null ? "" : t1; }, get$addHeader() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "add_header"); return t1 == null ? "" : t1; }, get$removeHeader() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "remove_header"); return t1 == null ? "" : t1; }, get$noHeaders() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "no_headers"); return t1 == null ? "" : t1; }, get$subdomainHelp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "subdomain_help"); return t1 == null ? "" : t1; }, get$moveTop() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "move_top"); return t1 == null ? "" : t1; }, get$moveUp() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "move_up"); return t1 == null ? "" : t1; }, get$moveDown() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "move_down"); return t1 == null ? "" : t1; }, get$moveBottom() { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "move_bottom"); return t1 == null ? "" : t1; }, get$enable(_) { var t1 = J.$index$asx($.$get$LocalizationsProvider__localizedValues().$index(0, this.localeCode), "enable"); return t1 == null ? "" : t1; }, get$partialValue() { var _s13_ = "partial_value", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s13_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; }, get$lastUpdated() { var _s12_ = "last_updated", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s12_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s12_) : t2; }, get$exportedData() { var _s13_ = "exported_data", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s13_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; }, get$waitForData() { var _s13_ = "wait_for_data", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s13_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; }, get$noPaymentTypesEnabled() { var _s24_ = "no_payment_types_enabled", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s24_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s24_) : t2; }, get$subdomainGuide() { var _s15_ = "subdomain_guide", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s15_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s15_) : t2; }, get$changeEmail() { var _s12_ = "change_email", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s12_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s12_) : t2; }, get$colors() { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "colors"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "colors") : t2; }, get$importColors() { var _s13_ = "import_colors", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s13_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; }, get$addSecondContact() { var _s18_ = "add_second_contact", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s18_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s18_) : t2; }, get$recurringExpense() { var _s17_ = "recurring_expense", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s17_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s17_) : t2; }, get$newRecurringExpense() { var _s21_ = "new_recurring_expense", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s21_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s21_) : t2; }, get$system(_) { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "system"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "system") : t2; }, get$updateAllRecords() { var _s18_ = "update_all_records", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s18_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s18_) : t2; }, get$editRecord() { var _s11_ = "edit_record", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s11_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s11_) : t2; }, get$waitForLoading() { var _s16_ = "wait_for_loading", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s16_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s16_) : t2; }, get$waitForSaving() { var _s15_ = "wait_for_saving", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s15_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s15_) : t2; }, get$customEmailsDisabledHelp() { var _s27_ = "custom_emails_disabled_help", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s27_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s27_) : t2; }, get$id(_) { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "id"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "id") : t2; }, get$dueOnReceipt() { var _s14_ = "due_on_receipt", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s14_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s14_) : t2; }, get$releaseNotes() { var _s13_ = "release_notes", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s13_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s13_) : t2; }, get$cancelInvoice() { var _s14_ = "cancel_invoice", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s14_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s14_) : t2; }, get$viewTask() { var _s9_ = "view_task", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s9_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s9_) : t2; }, get$autoArchivePaidInvoices() { var _s26_ = "auto_archive_paid_invoices", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s26_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s26_) : t2; }, get$autoArchiveCancelledInvoices() { var _s31_ = "auto_archive_cancelled_invoices", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s31_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s31_) : t2; }, get$multipleClientError() { var _s21_ = "multiple_client_error", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s21_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s21_) : t2; }, get$addCountry() { var _s11_ = "add_country", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s11_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s11_) : t2; }, get$viewMap() { var _s8_ = "view_map", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s8_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s8_) : t2; }, get$standing() { var _s8_ = "standing", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s8_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s8_) : t2; }, get$vat() { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "vat"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "vat") : t2; }, get$stockNotifications() { var _s19_ = "stock_notifications", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s19_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s19_) : t2; }, get$notificationThreshold() { var _s22_ = "notification_threshold", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s22_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s22_) : t2; }, get$stockQuantity() { var _s14_ = "stock_quantity", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s14_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s14_) : t2; }, get$defaultWord() { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "default"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "default") : t2; }, get$purchaseOrder() { var _s14_ = "purchase_order", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s14_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s14_) : t2; }, get$purchaseOrders() { var _s15_ = "purchase_orders", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s15_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s15_) : t2; }, get$newPurchaseOrder() { var _s18_ = "new_purchase_order", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s18_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s18_) : t2; }, get$updatedPurchaseOrder() { var _s22_ = "updated_purchase_order", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s22_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s22_) : t2; }, get$emailedPurchaseOrder() { var t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), "emailed_purchase_orderk"); return t2 == null ? J.$index$asx(t1.$index(0, "en"), "emailed_purchase_order") : t2; }, get$disconnectedMicrosoft() { var _s22_ = "disconnected_microsoft", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s22_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s22_) : t2; }, get$connectMicrosoft() { var _s17_ = "connect_microsoft", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s17_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s17_) : t2; }, get$pleaseSelectAVendor() { var _s22_ = "please_select_a_vendor", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s22_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s22_) : t2; }, get$purchaseOrderDate() { var _s19_ = "purchase_order_date", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s19_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s19_) : t2; }, get$verifyPhoneNumber() { var _s19_ = "verify_phone_number", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s19_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s19_) : t2; }, get$verifyPhoneNumberHelp() { var _s24_ = "verify_phone_number_help", t1 = $.$get$LocalizationsProvider__localizedValues(), t2 = J.$index$asx(t1.$index(0, this.localeCode), _s24_); return t2 == null ? J.$index$asx(t1.$index(0, "en"), _s24_) : t2; }, lookup$1(key) { var t1, t2, t3, value, englishValue, lookupKey = A.toSnakeCase(key); if ((key == null ? "" : key).length === 0) return ""; if (B.JSString_methods.startsWith$1(lookupKey, "_")) return key; t1 = $.$get$LocalizationsProvider__localizedValues(); t2 = this.localeCode; t3 = J.$index$asx(t1.$index(0, t2), lookupKey); value = t3 == null ? J.$index$asx(t1.$index(0, t2), B.JSString_methods.replaceFirst$2(lookupKey, "_id", "")) : t3; if (value == null) value = ""; if (value.length === 0) { A.print("## ERROR: localization key not found - " + A.S(key)); englishValue = J.$index$asx(t1.$index(0, "en"), lookupKey); if (englishValue == null) englishValue = ""; return englishValue.length === 0 ? key : englishValue; } return value; }, compareTo$1($receiver, arg0) { return this.get$compareTo(this).call$1(arg0); }, remove$0($receiver) { return this.get$remove(this).call$0(); } }; A.AppLocalization.prototype = {}; A.AppLocalizationsDelegate.prototype = { isSupported$1(locale) { return B.JSArray_methods.contains$1(B.List_KAC, J.toString$0$(locale)); }, load$1(_, locale) { return new A.SynchronousFuture(new A.AppLocalization(J.toString$0$(locale)), type$.SynchronousFuture_legacy_AppLocalization); }, shouldReload$1(old) { return false; } }; A._AppLocalization_LocaleCodeAware_LocalizationsProvider.prototype = {}; A._MarkdownToDocument.prototype = { visitElementBefore$1(element) { var inlineVisitor, t1, t2, _this = this; switch (element.tag) { case "h1": _this._addHeader$2$level(element, 1); break; case "h2": _this._addHeader$2$level(element, 2); break; case "h3": _this._addHeader$2$level(element, 3); break; case "h4": _this._addHeader$2$level(element, 4); break; case "h5": _this._addHeader$2$level(element, 5); break; case "h6": _this._addHeader$2$level(element, 6); break; case "p": inlineVisitor = _this._parseInline$1(element); t1 = inlineVisitor._markdown$_imageUrl != null && B.JSArray_methods.get$first(inlineVisitor._textStack).text.length === 0; t2 = _this._markdown$_content; if (t1) { t1 = inlineVisitor._markdown$_imageUrl; t2.push(A.ImageNode$(inlineVisitor._imageAltText, B.C_Uuid.v4$0(), t1)); } else { t1 = B.JSArray_methods.get$first(inlineVisitor._textStack); t2.push(A.ParagraphNode$(B.C_Uuid.v4$0(), null, t1)); } break; case "blockquote": t1 = B.C_Uuid.v4$0(); t2 = B.JSArray_methods.get$first(_this._parseInline$1(element)._textStack); _this._markdown$_content.push(A.ParagraphNode$(t1, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_blockquote], type$.legacy_String, type$.dynamic), t2)); return false; case "code": t1 = B.C_Uuid.v4$0(); t2 = A.AttributedText$(null, element.get$textContent()); _this._markdown$_content.push(A.ParagraphNode$(t1, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_code], type$.legacy_String, type$.dynamic), t2)); break; case "ul": _this._listItemTypeStack.push(B.ListItemType_1); break; case "ol": _this._listItemTypeStack.push(B.ListItemType_0); break; case "li": t1 = _this._listItemTypeStack; if (t1.length === 0) throw A.wrapException(A.Exception_Exception("Tried to parse a markdown list item but the list item type was null")); t2 = B.JSArray_methods.get$last(t1); t1 = t1.length; _this._markdown$_content.push(A.ListItemNode$(B.C_Uuid.v4$0(), t1 - 1, t2, B.JSArray_methods.get$first(_this._parseInline$1(element)._textStack))); break; case "hr": _this._markdown$_content.push(A.HorizontalRuleNode$(B.C_Uuid.v4$0())); break; } return true; }, visitElementAfter$1(element) { switch (element.tag) { case "ul": case "ol": this._listItemTypeStack.pop(); break; } }, visitText$1(text) { }, _addHeader$2$level(element, level) { var headerAttribution, t1, t2; switch (level) { case 1: headerAttribution = B.NamedAttribution_header1; break; case 2: headerAttribution = B.NamedAttribution_header2; break; case 3: headerAttribution = B.NamedAttribution_header3; break; case 4: headerAttribution = B.NamedAttribution_header4; break; case 5: headerAttribution = B.NamedAttribution_header5; break; case 6: headerAttribution = B.NamedAttribution_header6; break; default: headerAttribution = null; } t1 = B.C_Uuid.v4$0(); t2 = B.JSArray_methods.get$first(this._parseInline$1(element)._textStack); this._markdown$_content.push(A.ParagraphNode$(t1, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", headerAttribution], type$.legacy_String, type$.dynamic), t2)); }, _parseInline$1(element) { var inlineVisitor, inlineNodes, _i, _null = null, t1 = element.get$textContent(), t2 = A.Document$0(), t3 = type$.JSArray_InlineSyntax, t4 = A._setArrayType([], t3), t5 = A._setArrayType([], type$.JSArray_Delimiter), t6 = A._setArrayType([], type$.JSArray_Node_3); B.JSArray_methods.addAll$1(t4, t2._inlineSyntaxes); if (t2.hasCustomInlineSyntaxes) t4.push(new A.TextSyntax("", A.RegExp_RegExp("[A-Za-z0-9]+(?=\\s)", true, false, true, false), _null)); else t4.push(new A.TextSyntax("", A.RegExp_RegExp("[ \\tA-Za-z0-9]*[A-Za-z0-9](?=\\s)", true, false, true, false), _null)); B.JSArray_methods.addAll$1(t4, A._setArrayType([A.LinkSyntax$(_null, "\\[", 91), A.ImageSyntax$(_null)], t3)); B.JSArray_methods.addAll$1(t4, $.$get$InlineParser__defaultSyntaxes()); B.JSArray_methods.addAll$1(t4, $.$get$InlineParser__htmlSyntaxes()); inlineVisitor = new A._InlineMarkdownToDocument(A._setArrayType([A.AttributedText$(_null, "")], type$.JSArray_legacy_AttributedText)); inlineNodes = new A.InlineParser(t1, t2, t4, t5, t6).parse$0(0); for (t1 = inlineNodes.length, _i = 0; _i < inlineNodes.length; inlineNodes.length === t1 || (0, A.throwConcurrentModificationError)(inlineNodes), ++_i) J.accept$1$x(inlineNodes[_i], inlineVisitor); return inlineVisitor; } }; A._InlineMarkdownToDocument.prototype = { visitElementBefore$1(element) { var t1; if (element.tag === "img") { t1 = element.attributes; this._markdown$_imageUrl = t1.$index(0, "src"); t1 = t1.$index(0, "alt"); this._imageAltText = t1 == null ? "" : t1; return true; } this._textStack.push(A.AttributedText$(null, "")); return true; }, visitText$1(text) { var t1 = this._textStack; t1.push(t1.pop().copyAndAppend$1(A.AttributedText$(null, text.text))); }, visitElementAfter$1(element) { var t1 = this._textStack, styledText = t1.pop(), t2 = element.tag; if (t2 === "strong") styledText.addAttribution$2(B.NamedAttribution_bold, new A.SpanRange(0, styledText.text.length - 1)); else if (t2 === "em") styledText.addAttribution$2(B.NamedAttribution_italics, new A.SpanRange(0, styledText.text.length - 1)); else if (t2 === "a") styledText.addAttribution$2(new A.LinkAttribution(A.Uri_parse(element.attributes.$index(0, "href"), 0, null)), new A.SpanRange(0, styledText.text.length - 1)); if (t1.length !== 0) t1.push(t1.pop().copyAndAppend$1(styledText)); else t1.push(styledText); } }; A._extension_0__encodeLinkMarker_closure.prototype = { call$1(element) { return element instanceof A.LinkAttribution; }, $signature: 490 }; A._extension_0_toMarkdown_closure.prototype = { call$4(fullText, index, attributions, $event) { var t1, t2, _this = this, markdownStyles = A._extension_0__sortAndSerializeAttributions(attributions, $event), linkMarker = A._extension_0__encodeLinkMarker(attributions, $event); switch ($event.index) { case 0: _this._box_0.spanStart = index; t1 = _this.buffer; t2 = t1._contents += linkMarker; t1._contents = t2 + markdownStyles; break; case 1: t1 = _this.buffer; t2 = t1._contents += J.substring$2$s(fullText.text, _this._box_0.spanStart, index + 1); t2 += markdownStyles; t1._contents = t2; t1._contents = t2 + linkMarker; break; } }, $signature: 2801 }; A.GoogleOAuth_signIn_closure.prototype = { call$1(value) { var t1 = value._google_sign_in$_data, t2 = t1.idToken; if (t2 == null) t2 = ""; t1 = t1.accessToken; if (t1 == null) t1 = ""; this.callback.call$2(t2, t1); }, $signature: 519 }; A.GoogleOAuth_signUp_closure.prototype = { call$1(value) { var t1 = value._google_sign_in$_data, t2 = t1.idToken; if (t2 == null) t2 = ""; t1 = t1.accessToken; if (t1 == null) t1 = ""; this.callback.call$2(t2, t1); }, $signature: 519 }; A.toSnakeCase_closure.prototype = { call$1(match) { return "_" + match.$index(0, 0).toLowerCase(); }, $signature: 801 }; A.toCamelCase_closure.prototype = { call$1(word) { return A.toTitleCase(word); }, $signature: 15 }; A.toSpaceCase_closure.prototype = { call$1(match) { return " " + match.$index(0, 0).toLowerCase(); }, $signature: 801 }; A.toTitleCase_closure.prototype = { call$1(word) { if (word === "url") return "URL"; return J.substring$2$s(word, 0, 1).toUpperCase() + B.JSString_methods.substring$1(word, 1); }, $signature: 15 }; A.matchesStrings_closure.prototype = { call$1(haystack) { if (A.matchesString(haystack, this.needle)) this._box_0.isMatch = true; }, $signature: 11 }; A.matchesString_closure.prototype = { call$1(rune) { var character = A.quoteStringForRegExp(A.Primitives_stringFromCharCode(rune)), t1 = this._box_0; t1.regExp = t1.regExp + (character + ".*?"); }, $signature: 106 }; A.matchesStringsValue_closure.prototype = { call$1(haystack) { var value = A.matchesStringValue(haystack, this.needle); if (value != null) this._box_0.match = value; }, $signature: 11 }; A.ExampleEditor.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(), t2 = type$.ValueNotifier_legacy_Offset; return new A._ExampleEditorState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_legacy_State_legacy_StatefulWidget), new A.ValueNotifier(null, t1, t2), new A.ValueNotifier(null, t1, t2), B._StateLifecycle_0); }, onChanged$1(arg0) { return this.onChanged.call$1(arg0); }, get$value(receiver) { return this.value; } }; A._ExampleEditorState.prototype = { initState$0() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = A.deserializeMarkdownToDocument(_this._widget.value); t2 = _this.get$_hideOrShowToolbar(); t1.addListener$1(0, t2); t1.addListener$1(0, _this.get$_super_editor$_onChanged()); _this._super_editor$_doc = t1; _this._docEditor = new A.DocumentEditor(t1); t1 = A.DocumentComposer$(); t1.addListener$1(0, t2); _this._composer = t1; _this._docOps = new A.CommonEditorOperations(_this._docEditor, t1, new A._ExampleEditorState_initState_closure(_this)); _this._editorFocusNode = A.FocusNode$(true, _null, true, true, _null, _null, false); t1 = new A.ScrollController(0, true, _null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); t1.addListener$1(0, t2); _this._super_editor$_scrollController = t1; }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.value; if (t1 != oldWidget.value) { t2 = _this.get$_hideOrShowToolbar(); _this._super_editor$_doc.removeListener$1(0, t2); t3 = _this.get$_super_editor$_onChanged(); _this._super_editor$_doc.removeListener$1(0, t3); t1 = A.deserializeMarkdownToDocument(t1); t1.addListener$1(0, t2); t1.addListener$1(0, t3); _this._super_editor$_doc = t1; _this._docEditor = new A.DocumentEditor(t1); _this._editorFocusNode = A.FocusNode$(true, null, true, true, null, null, false); } }, dispose$0(_) { var t2, _this = this, t1 = _this._textFormatBarOverlayEntry; if (t1 != null) t1.remove$0(0); t1 = _this.get$_hideOrShowToolbar(); _this._super_editor$_doc.removeListener$1(0, t1); _this._super_editor$_doc.removeListener$1(0, _this.get$_super_editor$_onChanged()); _this._super_editor$_scrollController.removeListener$1(0, t1); _this._composer.removeListener$1(0, t1); _this._super_editor$_scrollController.dispose$0(0); _this._editorFocusNode.dispose$0(0); t1 = _this._composer; t2 = t1._preferences; t2.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t2.ChangeNotifier__count = 0; t1.super$ChangeNotifier$dispose(0); _this.super$State$dispose(0); }, _super_editor$_onChanged$0() { if (this._widget.onChanged != null) { var value = A.serializeDocumentToMarkdown(this._docEditor._document); this._widget.onChanged$1(value); } }, _hideOrShowToolbar$0() { var selection, t1, t2, t3, t4, selectedNode, _this = this; if (_this.get$_super_editor$_gestureMode() !== B.DocumentGestureMode_0) return; selection = _this._composer._document_composer$_selection; if (selection == null) { _this._hideEditorToolbar$0(); return; } t1 = selection.base; t2 = t1.nodeId; t3 = selection.extent; t4 = t3.nodeId; if (t2 != t4) { _this._hideEditorToolbar$0(); _this._hideImageToolbar$0(); return; } if (t1.$eq(0, t3)) { _this._hideEditorToolbar$0(); _this._hideImageToolbar$0(); return; } selectedNode = _this._super_editor$_doc.getNodeById$1(t4); if (selectedNode instanceof A.ImageNode) { _this._showImageToolbar$0(); _this._hideEditorToolbar$0(); return; } else _this._hideImageToolbar$0(); if (selectedNode instanceof A.TextNode) { _this._showEditorToolbar$0(); _this._hideImageToolbar$0(); return; } else _this._hideEditorToolbar$0(); }, _showEditorToolbar$0() { var result, _this = this; if (_this._textFormatBarOverlayEntry == null) { _this._textFormatBarOverlayEntry = A.OverlayEntry$(new A._ExampleEditorState__showEditorToolbar_closure(_this), false); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, _this._textFormatBarOverlayEntry); } $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._ExampleEditorState__showEditorToolbar_closure0(_this)); }, _hideEditorToolbar$0() { var t1, _this = this; _this._textSelectionAnchor.set$value(0, null); t1 = _this._textFormatBarOverlayEntry; if (t1 != null) { t1.remove$0(0); _this._textFormatBarOverlayEntry = null; } _this._editorFocusNode.requestFocus$0(); }, get$_super_editor$_gestureMode() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: return B.DocumentGestureMode_1; case B.TargetPlatform_2: return B.DocumentGestureMode_2; case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return B.DocumentGestureMode_0; } return null; }, get$_inputSource() { switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: case B.TargetPlatform_2: return B.DocumentInputSource_1; case B.TargetPlatform_1: case B.TargetPlatform_3: case B.TargetPlatform_4: case B.TargetPlatform_5: return B.DocumentInputSource_0; } return null; }, _cut$0() { return this._docOps.cut$0(); }, _copy$0() { return this._docOps.copy$0(0); }, _super_editor$_paste$0() { return this._docOps.paste$0(); }, _selectAll$0() { return this._docOps.selectAll$0(); }, _showImageToolbar$0() { var result, _this = this; if (_this._imageFormatBarOverlayEntry == null) { _this._imageFormatBarOverlayEntry = A.OverlayEntry$(new A._ExampleEditorState__showImageToolbar_closure(_this), false); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, _this._imageFormatBarOverlayEntry); } $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._ExampleEditorState__showImageToolbar_closure0(_this)); }, _hideImageToolbar$0() { var t1, _this = this; _this._imageSelectionAnchor.set$value(0, null); t1 = _this._imageFormatBarOverlayEntry; if (t1 != null) { t1.remove$0(0); _this._imageFormatBarOverlayEntry = null; } _this._editorFocusNode.requestFocus$0(); }, build$1(_, context) { var t1 = A._setArrayType([A.Expanded$(this._buildEditor$0(), 1)], type$.JSArray_legacy_Widget); if (this.get$_super_editor$_gestureMode() !== B.DocumentGestureMode_0) t1.push(this._buildMountedToolbar$0()); return A.Column$(t1, B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, _buildEditor$0() { var _this = this, t1 = _this._docEditor, t2 = _this._composer, t3 = _this._editorFocusNode, t4 = _this._super_editor$_scrollController, t5 = A.List_List$of($.defaultComponentBuilders, true, type$.legacy_ComponentBuilder), t6 = _this.get$_super_editor$_gestureMode(), t7 = _this.get$_inputSource(), t8 = $.$get$defaultStylesheet(); t5 = A.List_List$of(t5, true, type$.ComponentBuilder); t5.push(B.C_UnknownComponentBuilder); return new A.SuperEditor(t3, t4, _this._docLayoutKey, t8, B.C_SelectionStyles, t7, t6, new A._ExampleEditorState__buildEditor_closure(_this), new A._ExampleEditorState__buildEditor_closure0(_this), t1, t2, t5, $.defaultKeyboardActions, null); }, _buildMountedToolbar$0() { return new A.MultiListenableBuilder(A.LinkedHashSet_LinkedHashSet$_literal([this._super_editor$_doc, this._composer.selectionNotifier], type$.legacy_Listenable), new A._ExampleEditorState__buildMountedToolbar_closure(this), null); } }; A._ExampleEditorState_initState_closure.prototype = { call$0() { return type$.legacy_DocumentLayout._as(this.$this._docLayoutKey.get$currentState()); }, $signature: 2804 }; A._ExampleEditorState__showEditorToolbar_closure.prototype = { call$1(context) { var _null = null, t1 = this.$this; return new A.Theme(A.ThemeData_ThemeData(_null, _null, _null, B.Brightness_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.EditorToolbar(t1._textSelectionAnchor, t1._docEditor, t1._composer, t1.get$_hideEditorToolbar(), _null), _null); }, $signature: 2805 }; A._ExampleEditorState__showEditorToolbar_closure0.prototype = { call$1(timeStamp) { var t2, t3, t4, docBoundingBox, docBox, t1 = this.$this; if (t1._textFormatBarOverlayEntry == null) return; t2 = t1._docLayoutKey; t3 = type$.legacy_DocumentLayout._as(t2.get$currentState()); t4 = t1._composer._document_composer$_selection; docBoundingBox = t3.getRectForSelection$2(t4.base, t4.extent); docBox = type$.legacy_RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject()); t2 = docBoundingBox.left; t4 = docBoundingBox.top; t4 = A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t2, t4)); t2 = docBoundingBox.right; t3 = docBoundingBox.bottom; t1._textSelectionAnchor.set$value(0, A.Rect$fromPoints(t4, A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t2, t3))).get$topCenter()); }, $signature: 36 }; A._ExampleEditorState__showImageToolbar_closure.prototype = { call$1(context) { var t1 = this.$this; return new A.ImageFormatToolbar(t1._imageSelectionAnchor, t1._composer, new A._ExampleEditorState__showImageToolbar__closure(t1), null); }, $signature: 2806 }; A._ExampleEditorState__showImageToolbar__closure.prototype = { call$2(nodeId, width) { var node = this.$this._super_editor$_doc.getNodeById$1(nodeId); node.putMetadataValue$2("singleColumnLayout", A.LinkedHashMap_LinkedHashMap$_literal(["width", width, "padding", A.SingleColumnLayoutComponentStyles_SingleColumnLayoutComponentStyles$fromMetadata(node).padding], type$.String, type$.nullable_Object)); }, $signature: 193 }; A._ExampleEditorState__showImageToolbar_closure0.prototype = { call$1(timeStamp) { var t2, t3, t4, docBoundingBox, docBox, t1 = this.$this; if (t1._imageFormatBarOverlayEntry == null) return; t2 = t1._docLayoutKey; t3 = type$.legacy_DocumentLayout._as(t2.get$currentState()); t4 = t1._composer._document_composer$_selection; docBoundingBox = t3.getRectForSelection$2(t4.base, t4.extent); docBox = type$.legacy_RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject()); t2 = docBoundingBox.left; t4 = docBoundingBox.top; t4 = A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, t1._framework$_element.get$renderObject()), new A.Offset(t2, t4)); t2 = docBoundingBox.right; t3 = docBoundingBox.bottom; t1._imageSelectionAnchor.set$value(0, A.Rect$fromPoints(t4, A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, t1._framework$_element.get$renderObject()), new A.Offset(t2, t3))).get$center()); }, $signature: 36 }; A._ExampleEditorState__buildEditor_closure.prototype = { call$1(_) { var t1 = this.$this; return new A.AndroidTextEditingFloatingToolbar(t1.get$_cut(), t1.get$_copy(), t1.get$_super_editor$_paste(), t1.get$_selectAll(), null); }, $signature: 2807 }; A._ExampleEditorState__buildEditor_closure0.prototype = { call$1(_) { var t1 = this.$this; return new A.IOSTextEditingFloatingToolbar(t1.get$_cut(), t1.get$_copy(), t1.get$_super_editor$_paste(), null); }, $signature: 2808 }; A._ExampleEditorState__buildMountedToolbar_closure.prototype = { call$1(_) { var t1 = this.$this, t2 = t1._composer; if (t2._document_composer$_selection == null) return B.SizedBox_null_null_null_null; return new A.KeyboardEditingToolbar(t1._super_editor$_doc, t2, t1._docOps, null); }, $signature: 2809 }; A.EditorToolbar.prototype = { createState$0() { return new A._EditorToolbarState(B._StateLifecycle_0); }, closeToolbar$0() { return this.closeToolbar.call$0(); } }; A._EditorToolbarState.prototype = { initState$0() { this.super$State$initState(); this._urlFocusNode = A.FocusNode$(true, null, true, true, null, null, false); this._urlController = new A.TextEditingController(B.TextEditingValue_li8, $.$get$ChangeNotifier__emptyListeners()); }, dispose$0(_) { var t1; this._urlFocusNode.dispose$0(0); t1 = this._urlController; t1.toString; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, _isConvertibleNode$0() { var selectedNode, t1 = this._widget, selection = t1.composer._document_composer$_selection, t2 = selection.base.nodeId, t3 = selection.extent.nodeId; if (t2 != t3) return false; selectedNode = t1.editor._document.getNodeById$1(t3); return selectedNode instanceof A.ParagraphNode || selectedNode instanceof A.ListItemNode; }, _getCurrentTextType$0() { var type, t1 = this._widget, selectedNode = t1.editor._document.getNodeById$1(t1.composer._document_composer$_selection.extent.nodeId); if (selectedNode instanceof A.ParagraphNode) { type = selectedNode._metadata.$index(0, "blockType"); t1 = J.getInterceptor$(type); if (t1.$eq(type, B.NamedAttribution_header1)) return B._TextType_0; else if (t1.$eq(type, B.NamedAttribution_header2)) return B._TextType_1; else if (t1.$eq(type, B.NamedAttribution_header3)) return B._TextType_2; else if (t1.$eq(type, B.NamedAttribution_blockquote)) return B._TextType_4; else return B._TextType_3; } else if (selectedNode instanceof A.ListItemNode) return selectedNode.type === B.ListItemType_0 ? B._TextType_5 : B._TextType_6; else throw A.wrapException(A.Exception_Exception("Invalid node type: " + A.S(selectedNode))); }, _convertTextToNewType$1(newType) { var t1, t2, t3, _this = this, existingTextType = _this._getCurrentTextType$0(); if (existingTextType === newType) return; t1 = existingTextType !== B._TextType_5; if (!t1 || existingTextType === B._TextType_6) t2 = newType === B._TextType_5 || newType === B._TextType_6; else t2 = false; if (t2) { t1 = _this._widget; t2 = t1.editor; t1 = t1.composer._document_composer$_selection.extent.nodeId; t3 = newType === B._TextType_5 ? B.ListItemType_0 : B.ListItemType_1; t2 = t2._document; new A.ChangeListItemTypeCommand(t1, t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); } else { if (!t1 || existingTextType === B._TextType_6) t2 = !(newType === B._TextType_5 || newType === B._TextType_6); else t2 = false; if (t2) { t1 = _this._widget; t2 = t1.editor; t1 = t1.composer._document_composer$_selection.extent.nodeId; t3 = A.LinkedHashMap_LinkedHashMap$_literal(["blockType", _this._getBlockTypeAttribution$1(newType)], type$.legacy_String, type$.dynamic); t2 = t2._document; new A.ConvertListItemToParagraphCommand(t1, t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); } else { if (!(!t1 || existingTextType === B._TextType_6)) t1 = newType === B._TextType_5 || newType === B._TextType_6; else t1 = false; t2 = _this._widget; if (t1) { t1 = t2.editor; t2 = t2.composer._document_composer$_selection.extent.nodeId; t3 = newType === B._TextType_5 ? B.ListItemType_0 : B.ListItemType_1; t1 = t1._document; new A.ConvertParagraphToListItemCommand(t2, t3).execute$2(t1, new A.DocumentEditorTransaction(t1)); } else type$.legacy_ParagraphNode._as(t2.editor._document.getNodeById$1(t2.composer._document_composer$_selection.extent.nodeId)).putMetadataValue$2("blockType", _this._getBlockTypeAttribution$1(newType)); } } }, _getBlockTypeAttribution$1(newType) { switch (newType) { case B._TextType_0: return B.NamedAttribution_header1; case B._TextType_1: return B.NamedAttribution_header2; case B._TextType_2: return B.NamedAttribution_header3; case B._TextType_4: return B.NamedAttribution_blockquote; case B._TextType_3: default: return null; } }, _toolbar0$_toggleBold$0() { var t3, t1 = this._widget, t2 = t1.editor; t1 = t1.composer._document_composer$_selection; t3 = A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold], type$.legacy_Attribution); t2 = t2._document; new A.ToggleTextAttributionsCommand(t1, t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); }, _toolbar0$_toggleItalics$0() { var t3, t1 = this._widget, t2 = t1.editor; t1 = t1.composer._document_composer$_selection; t3 = A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_italics], type$.legacy_Attribution); t2 = t2._document; new A.ToggleTextAttributionsCommand(t1, t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); }, _toolbar0$_toggleStrikethrough$0() { var t3, t1 = this._widget, t2 = t1.editor; t1 = t1.composer._document_composer$_selection; t3 = A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_strikethrough], type$.legacy_Attribution); t2 = t2._document; new A.ToggleTextAttributionsCommand(t1, t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); }, _getSelectedLinkSpans$0() { var t1 = this._widget, selection = t1.composer._document_composer$_selection, t2 = type$.legacy_TextPosition, baseOffset = t2._as(selection.base.nodePosition).offset, t3 = selection.extent, extentOffset = t2._as(t3.nodePosition).offset, selectionStart = Math.min(A.checkNum(baseOffset), A.checkNum(extentOffset)), selectionEnd = Math.max(A.checkNum(baseOffset), A.checkNum(extentOffset)); return type$.legacy_TextNode._as(t1.editor._document.getNodeById$1(t3.nodeId))._text$_text.getAttributionSpansInRange$2$attributionFilter$range(new A._EditorToolbarState__getSelectedLinkSpans_closure(), new A.SpanRange(selectionStart, selectionEnd - 1)); }, _onLinkPressed$0() { var selectionRange, text, overlappingLinkAttributions, overlappingLinkSpan, isLinkSelectionOnTrailingEdge, t1 = this._widget, selection = t1.composer._document_composer$_selection, t2 = type$.legacy_TextPosition, baseOffset = t2._as(selection.base.nodePosition).offset, t3 = selection.extent, extentOffset = t2._as(t3.nodePosition).offset, selectionStart = Math.min(A.checkNum(baseOffset), A.checkNum(extentOffset)); t2 = Math.max(A.checkNum(baseOffset), A.checkNum(extentOffset)) - 1; selectionRange = new A.SpanRange(selectionStart, t2); text = type$.legacy_TextNode._as(t1.editor._document.getNodeById$1(t3.nodeId))._text$_text; overlappingLinkAttributions = text.getAttributionSpansInRange$2$attributionFilter$range(new A._EditorToolbarState__onLinkPressed_closure(), selectionRange); t1 = overlappingLinkAttributions._collection$_length; if (t1 >= 2) return; if (t1 !== 0) { overlappingLinkSpan = overlappingLinkAttributions.get$first(overlappingLinkAttributions); t1 = overlappingLinkSpan.start; if (!(t1 >= selectionStart && t1 <= t2)) { t3 = overlappingLinkSpan.end; isLinkSelectionOnTrailingEdge = t3 >= selectionStart && t3 <= t2; } else isLinkSelectionOnTrailingEdge = true; t2 = overlappingLinkSpan.attribution; if (isLinkSelectionOnTrailingEdge) text.removeAttribution$2(t2, selectionRange); else text.removeAttribution$2(t2, new A.SpanRange(t1, overlappingLinkSpan.end)); } else this.setState$1(new A._EditorToolbarState__onLinkPressed_closure0(this)); }, _applyLink$0() { var _this = this, url = _this._urlController._change_notifier$_value.text, t1 = _this._widget, selection = t1.composer._document_composer$_selection, t2 = type$.legacy_TextPosition, baseOffset = t2._as(selection.base.nodePosition).offset, t3 = selection.extent, extentOffset = t2._as(t3.nodePosition).offset, selectionStart = Math.min(A.checkNum(baseOffset), A.checkNum(extentOffset)), selectionEnd = Math.max(A.checkNum(baseOffset), A.checkNum(extentOffset)), text = type$.legacy_TextNode._as(t1.editor._document.getNodeById$1(t3.nodeId))._text$_text, trimmedRange = _this._trimTextRangeWhitespace$2(text, new A.SpanRange(selectionStart, selectionEnd - 1)); text.addAttribution$2(new A.LinkAttribution(A.Uri_parse(url, 0, null)), trimmedRange); t3 = _this._urlController; t3.toString; t3.super$ValueNotifier$value(0, B.TextEditingValue_cKo); _this.setState$1(new A._EditorToolbarState__applyLink_closure(_this)); }, _trimTextRangeWhitespace$2(text, range) { var startOffset = range.start, endOffset = range.end, t1 = text.text; while (true) { if (!(startOffset < endOffset && t1[startOffset] === " ")) break; ++startOffset; } while (true) { if (!(endOffset > startOffset && t1[endOffset] === " ")) break; --endOffset; } return new A.SpanRange(startOffset, endOffset); }, _getTextTypeName$1(textType) { switch (textType) { case B._TextType_0: return "Header 1"; case B._TextType_1: return "Header 2"; case B._TextType_2: return "Header 3"; case B._TextType_3: return "Paragraph"; case B._TextType_4: return "Blockquote"; case B._TextType_5: return "Ordered List Item"; case B._TextType_6: return "Unordered List Item"; } return ""; }, build$1(_, context) { var t2, t3, _this = this, _null = null, t1 = A._setArrayType([], type$.JSArray_legacy_Widget); if (_this._showUrlField) { t2 = _this._widget.anchor._change_notifier$_value; t3 = t2._dx; t2 = t2._dy; t1.push(A.Positioned$(_null, A.FractionalTranslation$(_this._buildUrlField$0(), true, B.Offset_Oho), _null, _null, t3, _null, t2, _null)); } t2 = _this._widget; t3 = t2.anchor; t2 = t2.composer; t1.push(new A._PositionedToolbar(t3, t2, A.ValueListenableBuilder$(new A._EditorToolbarState_build_closure(_this), t2.selectionNotifier, type$.legacy_DocumentSelection), _null)); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, _toolbar0$_buildToolbar$0() { var t3, t4, _this = this, _null = null, t1 = type$.JSArray_legacy_Widget, t2 = A._setArrayType([], t1); if (_this._isConvertibleNode$0()) { t3 = _this._getCurrentTextType$0(); t4 = type$.MappedIterable_of_legacy__TextType_and_legacy_DropdownMenuItem_legacy__TextType; B.JSArray_methods.addAll$1(t2, A._setArrayType([A.Tooltip$(A.DropdownButton$(_null, 0, _null, B.Icon_MC7, 24, false, false, 48, A.List_List$of(new A.MappedIterable(new A.WhereIterable(B.List_Axm, new A._EditorToolbarState__buildToolbar_closure(), type$.WhereIterable_legacy__TextType), new A._EditorToolbarState__buildToolbar_closure0(_this), t4), true, t4._eval$1("Iterable.E")), _this.get$_convertTextToNewType(), _null, B.TextStyle_xKl0, B.SizedBox_null_null_null_null, t3, type$.legacy__TextType), "Text Block Type"), A.Container$(_null, _null, B.Clip_0, B.Color_4292927712, _null, _null, _null, _null, _null, _null, _null, _null, _null, 1)], t1)); } t2.push(A.Center$(A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_8kG, _null, _this.get$_toolbar0$_toggleBold(), B.EdgeInsets_8_8_8_8, 16, "Bold", _null), _null, _null)); t2.push(A.Center$(A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_oqF, _null, _this.get$_toolbar0$_toggleItalics(), B.EdgeInsets_8_8_8_8, 16, "Italics", _null), _null, _null)); t2.push(A.Center$(A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_IID0, _null, _this.get$_toolbar0$_toggleStrikethrough(), B.EdgeInsets_8_8_8_8, 16, "Strikethrough", _null), _null, _null)); t1 = _this._getSelectedLinkSpans$0()._collection$_length >= 2 ? _null : _this.get$_onLinkPressed(); if (_this._getSelectedLinkSpans$0()._collection$_length === 1) t3 = B.Color_4278221567; else { t3 = _this._framework$_element; t3.toString; t3 = A.IconTheme_of(t3).color; } t2.push(A.Center$(A.IconButton$(B.Alignment_0_0, t3, _null, true, B.Icon_Q06, _null, t1, B.EdgeInsets_8_8_8_8, 16, "Link", _null), _null, _null)); return A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 40, A.Row$(t2, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_QSQ, _null, _null, B.MaterialType_0); }, _buildUrlField$0() { var _this = this, _null = null, t1 = _this._urlFocusNode; return A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.TextField$(true, B.List_empty0, false, _null, _this._urlController, _null, _null, _null, 2, B.InputDecoration_EtP, true, _null, true, _null, false, t1, _null, _null, _null, _null, _null, 1, _null, _null, false, "\u2022", _null, _null, new A._EditorToolbarState__buildUrlField_closure(_this), _null, false, _null, _null, B.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_4, _null, B.TextCapitalization_3, _null, _null, _null), 1), A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_O5U, 20, new A._EditorToolbarState__buildUrlField_closure0(_this), B.EdgeInsets_0_0_0_0, 16, _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, _null, _null, 40, _null, _null, B.EdgeInsets_16_8_16_8, _null, _null, 400), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_QSQ, _null, _null, B.MaterialType_0); } }; A._EditorToolbarState__getSelectedLinkSpans_closure.prototype = { call$1(attribution) { return attribution instanceof A.LinkAttribution; }, $signature: 490 }; A._EditorToolbarState__onLinkPressed_closure.prototype = { call$1(attribution) { return attribution instanceof A.LinkAttribution; }, $signature: 490 }; A._EditorToolbarState__onLinkPressed_closure0.prototype = { call$0() { var t1 = this.$this; t1._showUrlField = true; t1._urlFocusNode.requestFocus$0(); }, $signature: 1 }; A._EditorToolbarState__applyLink_closure.prototype = { call$0() { var t1 = this.$this; t1._showUrlField = false; t1._urlFocusNode.unfocus$1$disposition(B.UnfocusDisposition_1); t1._widget.closeToolbar$0(); }, $signature: 1 }; A._EditorToolbarState_build_closure.prototype = { call$3(context, selection, child) { if (selection == null) return B.SizedBox_null_null_null_null; if (!(selection.extent.nodePosition instanceof A.TextPosition)) return B.SizedBox_null_null_null_null; return this.$this._toolbar0$_buildToolbar$0(); }, $signature: 792 }; A._EditorToolbarState__buildToolbar_closure.prototype = { call$1(element) { return element !== B._TextType_4; }, $signature: 2812 }; A._EditorToolbarState__buildToolbar_closure0.prototype = { call$1(textType) { var _null = null; return A.DropdownMenuItem$(new A.Padding(B.EdgeInsets_16_0_0_0, A.Text$(this.$this._getTextTypeName$1(textType), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null, textType, type$.legacy__TextType); }, $signature: 2813 }; A._EditorToolbarState__buildUrlField_closure.prototype = { call$1(newValue) { return this.$this._applyLink$0(); }, $signature: 67 }; A._EditorToolbarState__buildUrlField_closure0.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A._EditorToolbarState__buildUrlField__closure(t1)); }, $signature: 1 }; A._EditorToolbarState__buildUrlField__closure.prototype = { call$0() { var t1 = this.$this; t1._urlFocusNode.unfocus$0(); t1._showUrlField = false; t1 = t1._urlController; t1.toString; t1.super$ValueNotifier$value(0, B.TextEditingValue_cKo); }, $signature: 1 }; A._TextType.prototype = { toString$0(_) { return "_TextType." + this._core$_name; } }; A.ImageFormatToolbar.prototype = { createState$0() { return new A._ImageFormatToolbarState(B._StateLifecycle_0); }, setWidth$2(arg0, arg1) { return this.setWidth.call$2(arg0, arg1); } }; A._ImageFormatToolbarState.prototype = { _makeImageConfined$0() { var t1 = this._widget; t1.setWidth$2(t1.composer._document_composer$_selection.extent.nodeId, null); }, _makeImageFullBleed$0() { var t1 = this._widget; t1.setWidth$2(t1.composer._document_composer$_selection.extent.nodeId, 1 / 0); }, build$1(_, context) { var t1 = this._widget, t2 = t1.anchor; t1 = t1.composer; return new A._PositionedToolbar(t2, t1, A.ValueListenableBuilder$(new A._ImageFormatToolbarState_build_closure(this), t1.selectionNotifier, type$.legacy_DocumentSelection), null); } }; A._ImageFormatToolbarState_build_closure.prototype = { call$3(context, selection, child) { var t1, _null = null; if (selection == null) return B.SizedBox_null_null_null_null; if (!(selection.extent.nodePosition instanceof A.UpstreamDownstreamNodePosition)) return B.SizedBox_null_null_null_null; t1 = this.$this; return A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 40, new A.Padding(B.EdgeInsets_16_0_16_0, A.Row$(A._setArrayType([A.Center$(A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_IID2, _null, t1.get$_makeImageConfined(), B.EdgeInsets_8_8_8_8, 16, "Bold", _null), _null, _null), A.Center$(A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_Gv2, _null, t1.get$_makeImageFullBleed(), B.EdgeInsets_8_8_8_8, 16, "Italics", _null), _null, _null)], type$.JSArray_legacy_Widget), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_QSQ, _null, _null, B.MaterialType_0); }, $signature: 792 }; A._PositionedToolbar.prototype = { build$1(_, context) { return A.ValueListenableBuilder$(new A._PositionedToolbar_build_closure(this), this.anchor, type$.legacy_Offset); } }; A._PositionedToolbar_build_closure.prototype = { call$3(context, offset, _) { var t1, t2, _null = null; if (offset == null || this.$this.composer._document_composer$_selection == null) return B.SizedBox_null_null_null_null; t1 = offset._dx; t2 = offset._dy; return A.SizedBox$expand(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Positioned$(_null, A.FractionalTranslation$(this.$this.child, true, B.Offset_omC), _null, _null, t1, _null, t2, _null)], type$.JSArray_legacy_Widget), _null)); }, $signature: 2814 }; A.loadEmailTemplate_closure.prototype = { call$1(response) { var t1 = J.getInterceptor$asx(response); this.onComplete.call$5(t1.$index(response, "subject"), t1.$index(response, "body"), J.replaceFirst$2$s(t1.$index(response, "wrapper"), "$body", t1.$index(response, "body")), t1.$index(response, "raw_subject"), t1.$index(response, "raw_body")); }, $signature: 7 }; A.loadEmailTemplate_closure0.prototype = { call$1(error) { var t1, t2; A.showErrorDialog(false, this.context, A.S(error)); t1 = this._box_0; t2 = t1.subject; t1 = t1.body; this.onComplete.call$5(t2, t1, t1, t2, t1); }, $signature: 7 }; A.WebUtils_registerWebView_closure.prototype = { call$1(viewId) { var t2, t1 = document.createElement("iframe"); t1.src = this.html; t2 = t1.style; t2.border = "none"; return t1; }, $signature: 2815 }; A.WebUtils_warnChanges_closure.prototype = { call$1(e) { if (A._lateReadCheck(this.store.__Store__state, "_state").hasChanges$0()) type$.legacy_BeforeUnloadEvent._as(e).returnValue = "Changes you made may not be saved."; }, $signature: 2816 }; A.WebUtils_microsoftLogin_closure.prototype = { call$1(result) { var t1 = result == null, t2 = t1 ? null : J.get$idToken$x(result._msal_js$_jsObject); t1 = t1 ? null : J.get$accessToken$x(result._msal_js$_jsObject); this.succesCallback.call$2(t2, t1); }, $signature: 2817 }; A.WebUtils_microsoftLogin_closure0.prototype = { call$1(error) { this.failureCallback.call$1(error); }, $signature: 7 }; A.LinkifyElement.prototype = { $eq(_, other) { if (other == null) return false; return this.equals$1(other); }, equals$1(other) { return other instanceof A.LinkifyElement && other.text == this.text; } }; A.LinkableElement.prototype = { $eq(_, other) { if (other == null) return false; return this.equals$1(other); }, equals$1(other) { return other instanceof A.LinkableElement && this.super$LinkifyElement$equals(other) && other.url === this.url; } }; A.TextElement.prototype = { toString$0(_) { return "TextElement: '" + A.S(this.text) + "'"; }, $eq(_, other) { if (other == null) return false; return other instanceof A.TextElement && this.super$LinkifyElement$equals(other); }, equals$1(other) { return other instanceof A.TextElement && this.super$LinkifyElement$equals(other); } }; A.Linkifier.prototype = {}; A.LinkifyOptions.prototype = {}; A.linkify_closure.prototype = { call$1(linkifier) { var t1 = this._box_0; t1.list = linkifier.parse$2(0, t1.list, this.options); }, $signature: 2818 }; A.EmailLinkifier.prototype = { parse$2(_, elements, options) { var list = A._setArrayType([], type$.JSArray_LinkifyElement); B.JSArray_methods.forEach$1(elements, new A.EmailLinkifier_parse_closure(this, list, options)); return list; } }; A.EmailLinkifier_parse_closure.prototype = { call$1(element) { var t1, t2, match, t3, text, _this = this; if (element instanceof A.TextElement) { t1 = $.$get$_emailRegex(); t2 = element.text; match = t1.firstMatch$1(t2); if (match == null) _this.list.push(element); else { t1 = match._match; t3 = t1[0]; t3.toString; text = J.replaceFirst$2$s(t2, t3, ""); t2 = t1[1]; t3 = t2; if ((t3 == null ? null : t3.length !== 0) === true) { t2 = t2; t2.toString; _this.list.push(new A.TextElement(t2)); } t1 = t1[2]; t2 = t1; if ((t2 == null ? null : t2.length !== 0) === true) { t1 = t1; t1.toString; t1 = B.JSString_methods.replaceFirst$2(t1, A.RegExp_RegExp("mailto:", true, false, false, false), ""); _this.list.push(new A.EmailElement(t1, "mailto:" + t1, t1)); } if (text.length !== 0) B.JSArray_methods.addAll$1(_this.list, _this.$this.parse$2(0, A._setArrayType([new A.TextElement(text)], type$.JSArray_LinkifyElement), _this.options)); } } else _this.list.push(element); }, $signature: 782 }; A.EmailElement.prototype = { toString$0(_) { return "EmailElement: '" + this.emailAddress + "' (" + A.S(this.text) + ")"; }, $eq(_, other) { if (other == null) return false; return this.equals$1(other); }, equals$1(other) { return other instanceof A.EmailElement && this.super$LinkableElement$equals(other) && other.emailAddress === this.emailAddress; } }; A.UrlLinkifier.prototype = { parse$2(_, elements, options) { var list = A._setArrayType([], type$.JSArray_LinkifyElement); B.JSArray_methods.forEach$1(elements, new A.UrlLinkifier_parse_closure(this, options, list)); return list; } }; A.UrlLinkifier_parse_closure.prototype = { call$1(element) { var t1, t2, match, t3, text, originalUrl, end, originalUrl0, url, _this = this; if (element instanceof A.TextElement) { t1 = $.$get$_urlRegex(); t2 = element.text; match = t1.firstMatch$1(t2); if (match == null) _this.list.push(element); else { t1 = match._match; t3 = t1[0]; t3.toString; text = J.replaceFirst$2$s(t2, t3, ""); t2 = t1[1]; t3 = t2; if ((t3 == null ? null : t3.length !== 0) === true) { t2 = t2; t2.toString; _this.list.push(new A.TextElement(t2)); } t1 = t1[2]; t2 = t1; if ((t2 == null ? null : t2.length !== 0) === true) { originalUrl = t1; t1 = originalUrl.length - 1; t2 = originalUrl[t1]; if (t2 === ".") { originalUrl = B.JSString_methods.substring$2(originalUrl, 0, t1); end = "."; } else end = null; if (!B.JSString_methods.startsWith$1(originalUrl, $.$get$_protocolIdentifierRegex())) originalUrl0 = "http://" + originalUrl; else originalUrl0 = originalUrl; t1 = _this.options.humanize; if (t1 || false) { url = t1 ? B.JSString_methods.replaceFirst$2(originalUrl, A.RegExp_RegExp("https?://", true, false, false, false), "") : originalUrl; t1 = _this.list; t1.push(new A.UrlElement(originalUrl0, url)); } else { t1 = _this.list; t1.push(new A.UrlElement(originalUrl0, originalUrl0)); } if (end != null) t1.push(new A.TextElement(end)); } if (text.length !== 0) B.JSArray_methods.addAll$1(_this.list, _this.$this.parse$2(0, A._setArrayType([new A.TextElement(text)], type$.JSArray_LinkifyElement), _this.options)); } } else _this.list.push(element); }, $signature: 782 }; A.UrlElement.prototype = { toString$0(_) { return "LinkElement: '" + this.url + "' (" + A.S(this.text) + ")"; }, $eq(_, other) { if (other == null) return false; return other instanceof A.UrlElement && this.super$LinkableElement$equals(other); }, equals$1(other) { return other instanceof A.UrlElement && this.super$LinkableElement$equals(other); } }; A.AndroidAuthMessages.prototype = {}; A.IOSAuthMessages.prototype = {}; A.LocalAuthentication.prototype = { authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs(biometricOnly, localizedReason, stickyAuth, useErrorDialogs) { return this.authenticate$body$LocalAuthentication(true, localizedReason, false, true); }, authenticate$body$LocalAuthentication(biometricOnly, localizedReason, stickyAuth, useErrorDialogs) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), t1; var $async$authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start A.LinkedHashMap_LinkedHashMap$_literal(["localizedReason", localizedReason, "useErrorDialogs", true, "stickyAuth", false, "sensitiveTransaction", true, "biometricOnly", true], type$.String, type$.Object); t1 = $.$get$Platform__operatingSystem(); t1 = A.PlatformException$("OtherOperatingSystem", "Your operating system is " + A.S(t1), "Local authentication does not support non-Android/iOS operating systems.", null); throw A.wrapException(t1); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs, $async$completer); }, get$canCheckBiometrics() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$get$canCheckBiometrics = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.MethodChannel_jZA.invokeListMethod$1$1("getAvailableBiometrics", type$.String), $async$get$canCheckBiometrics); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = J.get$isNotEmpty$asx(t1); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$get$canCheckBiometrics, $async$completer); } }; A.Level.prototype = { $eq(_, other) { if (other == null) return false; return other instanceof A.Level && this.value === other.value; }, $lt(_, other) { return B.JSInt_methods.$lt(this.value, other.get$value(other)); }, $gt(_, other) { return B.JSInt_methods.$gt(this.value, other.get$value(other)); }, $ge(_, other) { return this.value >= other.value; }, compareTo$1(_, other) { return this.value - other.value; }, get$hashCode(_) { return this.value; }, toString$0(_) { return this.name; }, $isComparable: 1, get$name(receiver) { return this.name; }, get$value(receiver) { return this.value; } }; A.LogRecord.prototype = { toString$0(_) { return "[" + this.level.name + "] " + this.loggerName + ": " + A.S(this.message); }, get$message(receiver) { return this.message; } }; A.Logger.prototype = { get$fullName() { var t1 = this.parent, t2 = t1 == null ? null : t1.name.length !== 0, t3 = this.name; return t2 === true ? t1.get$fullName() + "." + t3 : t3; }, get$level(_) { var t1, effectiveLevel; if (this.parent == null) { t1 = this._level; t1.toString; effectiveLevel = t1; } else { t1 = $.$get$Logger_root()._level; t1.toString; effectiveLevel = t1; } return effectiveLevel; }, log$4(logLevel, message, error, stackTrace) { var msg, record, _this = this, t1 = logLevel.value; if (t1 >= _this.get$level(_this).value) { if (type$.Function._is(message)) message = message.call$0(); msg = typeof message == "string" ? message : J.toString$0$(message); if (t1 >= 2000) { A.StackTrace_current(); if (error == null) logLevel.toString$0(0); } t1 = _this.get$fullName(); Date.now(); $.LogRecord__nextNumber = $.LogRecord__nextNumber + 1; record = new A.LogRecord(logLevel, msg, t1); if (_this.parent == null) _this._publish$1(record); else $.$get$Logger_root()._publish$1(record); } }, log$2(logLevel, message) { return this.log$4(logLevel, message, null, null); }, _publish$1(record) { var t1 = this._logger$_controller; return t1 == null ? null : t1.add$1(0, record); }, get$name(receiver) { return this.name; } }; A.Logger_Logger_closure.prototype = { call$0() { var dot, $parent, t1, thisName = this.name; if (B.JSString_methods.startsWith$1(thisName, ".")) A.throwExpression(A.ArgumentError$("name shouldn't start with a '.'", null)); dot = B.JSString_methods.lastIndexOf$1(thisName, "."); if (dot === -1) $parent = thisName !== "" ? A.Logger_Logger("") : null; else { $parent = A.Logger_Logger(B.JSString_methods.substring$2(thisName, 0, dot)); thisName = B.JSString_methods.substring$1(thisName, dot + 1); } t1 = new A.Logger(thisName, $parent, A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Logger)); if ($parent == null) t1._level = B.Level_INFO_800; else $parent._logger$_children.$indexSet(0, thisName, t1); return t1; }, $signature: 2820 }; A.Element1.prototype = { get$isEmpty(_) { return this.children == null; }, accept$1(_, visitor) { var t1; if (visitor.visitElementBefore$1(this)) { t1 = this.children; if (t1 != null) for (t1 = J.get$iterator$ax(t1); t1.moveNext$0();) t1.get$current(t1).accept$1(0, visitor); visitor.visitElementAfter$1(this); } }, get$textContent() { var t1 = this.children; if (t1 == null) t1 = A._setArrayType([], type$.JSArray_Node_3); return J.map$1$1$ax(t1, new A.Element_textContent_closure(), type$.String).join$1(0, ""); }, $isNode3: 1 }; A.Element_textContent_closure.prototype = { call$1(child) { return child.get$textContent(); }, $signature: 774 }; A.Text1.prototype = { accept$1(_, visitor) { return visitor.visitText$1(this); }, get$textContent() { return this.text; }, $isNode3: 1 }; A.UnparsedContent.prototype = { accept$1(_, visitor) { }, $isNode3: 1, get$textContent() { return this.textContent; } }; A.BlockParser.prototype = { get$next(_) { var t1 = this._pos, t2 = this.lines; if (t1 >= t2.length - 1) return null; return t2[t1 + 1]; }, peek$1(linesAhead) { var t1 = this._pos, t2 = this.lines; if (t1 >= t2.length - linesAhead) return null; return t2[t1 + linesAhead]; }, matches$1(_, regex) { var t1 = this._pos, t2 = this.lines; if (t1 >= t2.length) return false; t1 = t2[t1]; t2 = regex._nativeRegExp; if (typeof t1 != "string") A.throwExpression(A.argumentErrorValue(t1)); return t2.test(t1); }, parseLines$0() { var t1, t2, t3, _i, syntax, block, _this = this, blocks = A._setArrayType([], type$.JSArray_Node_3); for (t1 = _this.lines, t2 = _this.blockSyntaxes; _this._pos < t1.length;) for (t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { syntax = t2[_i]; if (syntax.canParse$1(_this)) { block = J.parse$1$z(syntax, _this); if (block != null) blocks.push(block); break; } } return blocks; }, get$document(receiver) { return this.document; } }; A.BlockSyntax.prototype = { canEndBlock$1(parser) { return true; }, canParse$1(parser) { var t1 = this.get$pattern(this), t2 = parser.lines[parser._pos]; t1 = t1._nativeRegExp; if (typeof t2 != "string") A.throwExpression(A.argumentErrorValue(t2)); return t1.test(t2); } }; A.BlockSyntax_isAtBlockEnd_closure.prototype = { call$1(s) { var t1 = this.parser; return s.canParse$1(t1) && s.canEndBlock$1(t1); }, $signature: 772 }; A.EmptyBlockSyntax.prototype = { get$pattern(_) { return $.$get$_emptyPattern(); }, parse$1(_, parser) { parser.encounteredBlankLine = true; ++parser._pos; return null; } }; A.SetextHeaderSyntax.prototype = { get$pattern(_) { return $.$get$_dummyPattern(); }, canParse$1(parser) { var i, nextLine, t1; if (!this._interperableAsParagraph$1(parser.lines[parser._pos])) return false; for (i = 1; true;) { nextLine = parser.peek$1(i); if (nextLine == null) return false; t1 = $.$get$_setextPattern()._nativeRegExp; if (t1.test(nextLine)) return true; if (!this._interperableAsParagraph$1(nextLine)) return false; ++i; } }, parse$1(_, parser) { var tag, t2, match, lines = A._setArrayType([], type$.JSArray_String), t1 = parser.lines; while (true) { t2 = parser._pos; if (!(t2 < t1.length)) { tag = null; break; } c$0: { match = $.$get$_setextPattern().firstMatch$1(t1[t2]); if (match == null) { lines.push(t1[parser._pos]); ++parser._pos; break c$0; } else { tag = match._match[1][0] === "=" ? "h1" : "h2"; ++parser._pos; break; } } } t1 = B.JSString_methods.trimRight$0(B.JSArray_methods.join$1(lines, "\n")); tag.toString; t2 = type$.String; return new A.Element1(tag, A._setArrayType([new A.UnparsedContent(t1)], type$.JSArray_Node_3), A.LinkedHashMap_LinkedHashMap$_empty(t2, t2)); }, _interperableAsParagraph$1(line) { var t1 = $.$get$_indentPattern()._nativeRegExp; if (typeof line != "string") A.throwExpression(A.argumentErrorValue(line)); if (!t1.test(line)) { t1 = $.$get$_codeFencePattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_headerPattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_blockquotePattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_hrPattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_ulPattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_olPattern()._nativeRegExp; if (!t1.test(line)) { t1 = $.$get$_emptyPattern()._nativeRegExp; t1 = t1.test(line); } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; return !t1; } }; A.HeaderSyntax.prototype = { get$pattern(_) { return $.$get$_headerPattern(); }, parse$1(_, parser) { var level, t2, t1 = $.$get$_headerPattern().firstMatch$1(parser.lines[parser._pos]); t1.toString; ++parser._pos; t1 = t1._match; level = t1[1].length; t1 = t1[2]; t1.toString; t2 = type$.String; return new A.Element1("h" + level, A._setArrayType([new A.UnparsedContent(B.JSString_methods.trim$0(t1))], type$.JSArray_Node_3), A.LinkedHashMap_LinkedHashMap$_empty(t2, t2)); } }; A.BlockquoteSyntax.prototype = { get$pattern(_) { return $.$get$_blockquotePattern(); }, parseChildLines$1(parser) { var t1, t2, encounteredCodeBlock, t3, match, t4, otherMatched, childLines = A._setArrayType([], type$.JSArray_String); for (t1 = parser.lines, t2 = parser.blockSyntaxes, encounteredCodeBlock = false; t3 = parser._pos, t3 < t1.length;) { match = $.$get$_blockquotePattern().firstMatch$1(t1[t3]); if (match != null) { t3 = match._match[1]; t3.toString; childLines.push(t3); t4 = $.$get$_indentPattern()._nativeRegExp; encounteredCodeBlock = t4.test(t3); ++parser._pos; continue; } otherMatched = B.JSArray_methods.firstWhere$1(t2, new A.BlockquoteSyntax_parseChildLines_closure(parser)); if (!(otherMatched instanceof A.ParagraphSyntax)) t3 = !encounteredCodeBlock && otherMatched instanceof A.CodeBlockSyntax; else t3 = true; if (t3) { childLines.push(t1[parser._pos]); ++parser._pos; } else break; } return childLines; }, parse$1(_, parser) { var t1 = type$.String; return new A.Element1("blockquote", A.BlockParser$(this.parseChildLines$1(parser), parser.document).parseLines$0(), A.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); } }; A.BlockquoteSyntax_parseChildLines_closure.prototype = { call$1(s) { return s.canParse$1(this.parser); }, $signature: 772 }; A.CodeBlockSyntax.prototype = { get$pattern(_) { return $.$get$_indentPattern(); }, canEndBlock$1(parser) { return false; }, parseChildLines$1(parser) { var t1, t2, t3, match, nextMatch, childLines = A._setArrayType([], type$.JSArray_nullable_String); for (t1 = parser.lines; t2 = parser._pos, t2 < t1.length;) { t3 = $.$get$_indentPattern(); match = t3.firstMatch$1(t1[t2]); if (match != null) { childLines.push(match._match[1]); ++parser._pos; } else { if (parser.get$next(parser) != null) { t2 = parser.get$next(parser); t2.toString; nextMatch = t3.firstMatch$1(t2); } else nextMatch = null; if (J.trim$0$s(t1[parser._pos]) === "" && nextMatch != null) { childLines.push(""); childLines.push(nextMatch._match[1]); parser._pos = ++parser._pos + 1; } else break; } } return childLines; }, parse$1(_, parser) { var $content, t1, t2, childLines = this.parseChildLines$1(parser); childLines.push(""); $content = B.HtmlEscape_HtmlEscapeMode_element_false.convert$1(B.JSArray_methods.join$1(childLines, "\n")); t1 = type$.JSArray_Node_3; t2 = type$.String; return new A.Element1("pre", A._setArrayType([new A.Element1("code", A._setArrayType([new A.Text1($content)], t1), A.LinkedHashMap_LinkedHashMap$_empty(t2, t2))], t1), A.LinkedHashMap_LinkedHashMap$_empty(t2, t2)); } }; A.FencedCodeBlockSyntax.prototype = { get$pattern(_) { return $.$get$_codeFencePattern(); }, canParse$1(parser) { var t1, t2, infoString, match = $.$get$_codeFencePattern().firstMatch$1(parser.lines[parser._pos]); if (match == null) return false; t1 = match._match; t2 = t1[1]; t2.toString; infoString = t1[2]; if (B.JSString_methods._codeUnitAt$1(t2, 0) === 96) { infoString.toString; t1 = new A.CodeUnits(infoString); t1 = !t1.contains$1(t1, 96); } else t1 = true; return t1; }, parseChildLines$2(parser, endBlock) { var childLines, t1, t2, match, t3; if (endBlock == null) endBlock = ""; childLines = A._setArrayType([], type$.JSArray_String); t1 = ++parser._pos; for (t2 = parser.lines; t1 < t2.length;) { match = $.$get$_codeFencePattern().firstMatch$1(t2[t1]); if (match != null) { t1 = match._match[1]; t1.toString; t1 = !B.JSString_methods.startsWith$1(t1, endBlock); } else t1 = true; t3 = parser._pos; if (t1) { childLines.push(t2[t3]); t1 = ++parser._pos; } else { parser._pos = t3 + 1; break; } } return childLines; }, parse$1(_, parser) { var childLines, text, t3, t4, t5, infoString, firstSpace, t1 = $.$get$_codeFencePattern().firstMatch$1(parser.lines[parser._pos])._match, t2 = t1[1]; t1 = t1[2]; t1.toString; childLines = this.parseChildLines$2(parser, t2); childLines.push(""); text = B.HtmlEscape_HtmlEscapeMode_element_false.convert$1(B.JSArray_methods.join$1(childLines, "\n")); t2 = type$.JSArray_Node_3; t3 = A._setArrayType([new A.Text1(text)], t2); t4 = type$.String; t5 = A.LinkedHashMap_LinkedHashMap$_empty(t4, t4); infoString = B.JSString_methods.trim$0(t1); if (infoString.length !== 0) { firstSpace = B.JSString_methods.indexOf$1(infoString, " "); infoString = B.HtmlEscape_HtmlEscapeMode_attribute_true.convert$1(firstSpace >= 0 ? B.JSString_methods.substring$2(infoString, 0, firstSpace) : infoString); t5.$indexSet(0, "class", "language-" + infoString); } return new A.Element1("pre", A._setArrayType([new A.Element1("code", t3, t5)], t2), A.LinkedHashMap_LinkedHashMap$_empty(t4, t4)); } }; A.HorizontalRuleSyntax.prototype = { get$pattern(_) { return $.$get$_hrPattern(); }, parse$1(_, parser) { var t1; ++parser._pos; t1 = type$.String; return new A.Element1("hr", null, A.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); } }; A.BlockHtmlSyntax.prototype = { canEndBlock$1(parser) { return true; } }; A.BlockTagBlockHtmlSyntax.prototype = { get$pattern(_) { return $.$get$BlockTagBlockHtmlSyntax__pattern(); }, canParse$1(parser) { var t1 = $.$get$BlockTagBlockHtmlSyntax__openBracketPattern(), t2 = parser.lines[parser._pos]; t1 = t1._nativeRegExp; if (typeof t2 != "string") A.throwExpression(A.argumentErrorValue(t2)); if (!t1.test(t2)) return false; return this.super$BlockSyntax$canParse(parser); }, parse$1(_, parser) { var childLines = A._setArrayType([], type$.JSArray_String), t1 = parser.lines; while (true) { if (!(parser._pos < t1.length && !parser.matches$1(0, $.$get$_emptyPattern()))) break; childLines.push(t1[parser._pos]); ++parser._pos; } return new A.Text1(B.JSString_methods.trimRight$0(B.JSArray_methods.join$1(childLines, "\n"))); } }; A.OtherTagBlockHtmlSyntax.prototype = { canEndBlock$1(parser) { return false; }, get$pattern(_) { return A.RegExp_RegExp("^ {0,3}|\\s+[^>]*>)\\s*$", true, false, false, false); } }; A.LongBlockHtmlSyntax.prototype = { parse$1(_, parser) { var t1, t2, t3, childLines = A._setArrayType([], type$.JSArray_String); for (t1 = parser.lines, t2 = this._endPattern; t3 = parser._pos, t3 < t1.length;) { childLines.push(t1[t3]); if (parser.matches$1(0, t2)) break; ++parser._pos; } ++parser._pos; return new A.Text1(B.JSString_methods.trimRight$0(B.JSArray_methods.join$1(childLines, "\n"))); }, get$pattern(receiver) { return this.pattern; } }; A.ListItem.prototype = {}; A.ListSyntax.prototype = { canEndBlock$1(parser) { var t1 = this.get$pattern(this).firstMatch$1(parser.lines[parser._pos])._match[7]; t1 = t1 == null ? null : t1.length !== 0; return t1 === true; }, parse$1(_, parser) { var endItem, match, tryMatch, t1, t2, startNumber, indent, listMarker, t3, t4, leadingExpandedTabLength, t5, line, digits, firstWhitespace, restWhitespace, $content, markerAsSpaces, itemNodes, anyEmptyLines, anyEmptyLinesBetweenBlocks, _i, itemParser, children, i, child, _this = this, _null = null, _box_0 = {}, items = A._setArrayType([], type$.JSArray_ListItem); _box_0.childLines = A._setArrayType([], type$.JSArray_String); endItem = new A.ListSyntax_parse_endItem(_box_0, items); match = A._Cell$named("match"); tryMatch = new A.ListSyntax_parse_tryMatch(match, parser); for (t1 = parser.lines, t2 = match.__late_helper$_name, startNumber = _null, indent = startNumber, listMarker = indent; t3 = parser._pos, t3 < t1.length;) { t4 = $.$get$ListSyntax__whitespaceRe(); t3 = t1[t3]; t4.toString; t3.toString; t3 = t4._execAnchored$2(t3, 0)._match[0]; t3.toString; leadingExpandedTabLength = A.ListSyntax__expandedTabLength(t3); t4 = $.$get$_emptyPattern(); if (tryMatch.call$1(t4)) { t3 = parser.get$next(parser); if (t3 == null) t3 = ""; t4 = t4._nativeRegExp; if (t4.test(t3)) break; _box_0.childLines.push(""); } else if (indent != null && indent.length <= leadingExpandedTabLength) { t4 = t1[parser._pos]; t5 = B.JSString_methods.$mul(" ", leadingExpandedTabLength); t4.toString; t3 = A.stringReplaceFirstUnchecked(t4, t3, t5, 0); line = A.stringReplaceFirstUnchecked(t3, indent, "", 0); _box_0.childLines.push(line); } else if (tryMatch.call$1($.$get$_hrPattern())) break; else if (tryMatch.call$1($.$get$_ulPattern()) || tryMatch.call$1($.$get$_olPattern())) { t3 = match.__late_helper$_value; if (t3 === match) A.throwExpression(A.LateError$localNI(t2)); t3.toString; t3 = J.$index$asx(t3, 1); t3.toString; t4 = match.__late_helper$_value; if (t4 === match) A.throwExpression(A.LateError$localNI(t2)); t4.toString; digits = J.$index$asx(t4, 2); if (digits == null) digits = ""; if (startNumber == null && digits.length !== 0) startNumber = A.int_parse(digits, _null); t4 = match.__late_helper$_value; if (t4 === match) A.throwExpression(A.LateError$localNI(t2)); t4.toString; t4 = J.$index$asx(t4, 3); t4.toString; t5 = match.__late_helper$_value; if (t5 === match) A.throwExpression(A.LateError$localNI(t2)); t5.toString; firstWhitespace = J.$index$asx(t5, 5); if (firstWhitespace == null) firstWhitespace = ""; t5 = match.__late_helper$_value; if (t5 === match) A.throwExpression(A.LateError$localNI(t2)); t5.toString; restWhitespace = J.$index$asx(t5, 6); if (restWhitespace == null) restWhitespace = ""; t5 = match.__late_helper$_value; if (t5 === match) A.throwExpression(A.LateError$localNI(t2)); t5.toString; $content = J.$index$asx(t5, 7); if ($content == null) $content = ""; if (listMarker != null && listMarker !== t4) break; markerAsSpaces = B.JSString_methods.$mul(" ", digits.length + t4.length); if ($content.length === 0) indent = t3 + markerAsSpaces + " "; else { indent = t3 + markerAsSpaces + firstWhitespace; indent = restWhitespace.length >= 4 ? indent : indent + restWhitespace; } endItem.call$0(); _box_0.childLines.push(restWhitespace + $content); listMarker = t4; } else if (A.BlockSyntax_isAtBlockEnd(parser)) break; else { t3 = _box_0.childLines; if (t3.length !== 0 && B.JSArray_methods.get$last(t3) === "") { parser.encounteredBlankLine = true; break; } _box_0.childLines.push(t1[parser._pos]); } ++parser._pos; } endItem.call$0(); itemNodes = A._setArrayType([], type$.JSArray_Element_3); B.JSArray_methods.forEach$1(items, _this.get$_removeLeadingEmptyLine()); anyEmptyLines = _this._removeTrailingEmptyLines$1(items); for (t1 = items.length, t2 = parser.document, t3 = type$.String, anyEmptyLinesBetweenBlocks = false, _i = 0; _i < items.length; items.length === t1 || (0, A.throwConcurrentModificationError)(items), ++_i) { itemParser = A.BlockParser$(items[_i].lines, t2); itemNodes.push(new A.Element1("li", itemParser.parseLines$0(), A.LinkedHashMap_LinkedHashMap$_empty(t3, t3))); anyEmptyLinesBetweenBlocks = anyEmptyLinesBetweenBlocks || itemParser.encounteredBlankLine; } if (!anyEmptyLines && !anyEmptyLinesBetweenBlocks) for (t1 = itemNodes.length, _i = 0; _i < itemNodes.length; itemNodes.length === t1 || (0, A.throwConcurrentModificationError)(itemNodes), ++_i) { children = itemNodes[_i].children; if (children != null) for (t2 = J.getInterceptor$asx(children), i = 0; i < t2.get$length(children); ++i) { child = t2.$index(children, i); if (child instanceof A.Element1 && child.tag === "p") { t2.removeAt$1(children, i); t4 = child.children; t4.toString; t2.insertAll$2(children, i, t4); } } } if (_this.get$listTag() === "ol" && startNumber !== 1) { t1 = _this.get$listTag(); t3 = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); t3.$indexSet(0, "start", A.S(startNumber)); return new A.Element1(t1, itemNodes, t3); } else return new A.Element1(_this.get$listTag(), itemNodes, A.LinkedHashMap_LinkedHashMap$_empty(t3, t3)); }, _removeLeadingEmptyLine$1(item) { var t2, t3, t1 = item.lines; if (t1.length !== 0) { t2 = $.$get$_emptyPattern(); t3 = B.JSArray_methods.get$first(t1); t2 = t2._nativeRegExp; if (typeof t3 != "string") A.throwExpression(A.argumentErrorValue(t3)); t2 = t2.test(t3); } else t2 = false; if (t2) B.JSArray_methods.removeAt$1(t1, 0); }, _removeTrailingEmptyLines$1(items) { var anyEmpty, i, t1, t2; for (anyEmpty = false, i = 0; i < items.length; ++i) { if (items[i].lines.length === 1) continue; while (true) { t1 = items[i].lines; if (t1.length !== 0) { t2 = $.$get$_emptyPattern(); t1 = B.JSArray_methods.get$last(t1); t2 = t2._nativeRegExp; if (typeof t1 != "string") A.throwExpression(A.argumentErrorValue(t1)); t1 = t2.test(t1); } else t1 = false; if (!t1) break; if (i < items.length - 1) anyEmpty = true; items[i].lines.pop(); } } return anyEmpty; } }; A.ListSyntax_parse_endItem.prototype = { call$0() { var t1 = this._box_0, t2 = t1.childLines; if (t2.length !== 0) { this.items.push(new A.ListItem(t2)); t1.childLines = A._setArrayType([], type$.JSArray_String); } }, $signature: 0 }; A.ListSyntax_parse_tryMatch.prototype = { call$1(pattern) { var t1 = this.match, t2 = this.parser; t1.__late_helper$_value = pattern.firstMatch$1(t2.lines[t2._pos]); return t1._readLocal$0() != null; }, $signature: 2824 }; A.UnorderedListSyntax.prototype = { get$pattern(_) { return $.$get$_ulPattern(); }, get$listTag() { return "ul"; } }; A.OrderedListSyntax.prototype = { get$pattern(_) { return $.$get$_olPattern(); }, get$listTag() { return "ol"; } }; A.ParagraphSyntax.prototype = { get$pattern(_) { return $.$get$_dummyPattern(); }, canEndBlock$1(parser) { return false; }, canParse$1(parser) { return true; }, parse$1(_, parser) { var t1, paragraphLines, childLines = A._setArrayType([], type$.JSArray_String); for (t1 = parser.lines; !A.BlockSyntax_isAtBlockEnd(parser);) { childLines.push(t1[parser._pos]); ++parser._pos; } paragraphLines = this._extractReflinkDefinitions$2(parser, childLines); if (paragraphLines == null) return new A.Text1(""); else { t1 = type$.String; return new A.Element1("p", A._setArrayType([new A.UnparsedContent(B.JSString_methods.trimRight$0(B.JSArray_methods.join$1(paragraphLines, "\n")))], type$.JSArray_Node_3), A.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); } }, _extractReflinkDefinitions$2(parser, lines) { var i, contents, j, t1, t2, t3, lineStartsReflinkDefinition = new A.ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition(lines); $label0$0: for (i = 0; true; i = j) { if (!lineStartsReflinkDefinition.call$1(i)) break $label0$0; contents = lines[i]; j = i + 1; for (; j < lines.length;) if (lineStartsReflinkDefinition.call$1(j)) if (this._parseReflinkDefinition$2(parser, contents)) continue $label0$0; else break; else { contents = B.JSString_methods.$add(J.$add$ansx(contents, "\n"), lines[j]); ++j; } if (this._parseReflinkDefinition$2(parser, contents)) { i = j; break $label0$0; } for (t1 = A._arrayInstanceType(lines), t2 = t1._precomputed1, t1 = t1._eval$1("SubListIterable<1>"); j >= i;) { A.RangeError_checkValidRange(i, j, lines.length, null, null); t3 = new A.SubListIterable(lines, i, j, t1); t3.SubListIterable$3(lines, i, j, t2); if (this._parseReflinkDefinition$2(parser, t3.join$1(0, "\n"))) { i = j; break; } --j; } break $label0$0; } if (i === lines.length) return null; else return B.JSArray_methods.sublist$1(lines, i); }, _parseReflinkDefinition$2(parser, contents) { var t2, t3, destination, t4, title, label, t1 = {}, match = A.RegExp_RegExp("^[ ]{0,3}\\[((?:\\\\\\]|[^\\]])+)\\]:\\s*(?:<(\\S+)>|(\\S+))\\s*(\"[^\"]+\"|'[^']+'|\\([^)]+\\)|)\\s*$", true, false, true, false).firstMatch$1(contents); if (match == null) return false; t2 = match._match; if (t2[0].length < contents.length) return false; t3 = t2[1]; t3.toString; t1.label = t3; destination = t2[2]; if (destination == null) { t4 = t2[3]; t4.toString; destination = t4; } title = t1.title = t2[4]; t2 = $.$get$ParagraphSyntax__whitespacePattern()._nativeRegExp; if (t2.test(t3)) return false; if (title === "") t1.title = null; else t1.title = B.JSString_methods.substring$2(title, 1, title.length - 1); t2 = B.JSString_methods.trim$0(t3); t3 = $.$get$_oneOrMoreWhitespacePattern(); label = A.stringReplaceAllUnchecked(t2, t3, " ").toLowerCase(); t1.label = label; parser.document.linkReferences.putIfAbsent$2(0, label, new A.ParagraphSyntax__parseReflinkDefinition_closure(t1, destination)); return true; } }; A.ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition.prototype = { call$1(i) { return J.startsWith$1$s(this.lines[i], $.$get$ParagraphSyntax__reflinkDefinitionStart()); }, $signature: 178 }; A.ParagraphSyntax__parseReflinkDefinition_closure.prototype = { call$0() { return new A.LinkReference(this.destination, this._box_0.title); }, $signature: 2825 }; A.Document0.prototype = {}; A.LinkReference.prototype = {}; A.ExtensionSet.prototype = {}; A.InlineParser.prototype = { parse$0(_) { var t1, t2, t3, t4, _this = this; for (t1 = _this.source, t2 = t1.length, t3 = _this.syntaxes; t4 = _this.pos, t4 !== t2;) { if (B.JSString_methods.codeUnitAt$1(t1, t4) === 93) { _this.writeText$0(0); _this._linkOrImage$0(); continue; } if (B.JSArray_methods.any$1(t3, new A.InlineParser_parse_closure(_this))) continue; ++_this.pos; } _this.writeText$0(0); _this._processEmphasis$1(-1); t1 = _this._inline_parser$_tree; _this._combineAdjacentText$1(t1); return t1; }, _linkOrImage$0() { var delimiter, syntax, t2, nodeIndex, linkNode, t3, _i, d, _this = this, t1 = _this._delimiterStack, index = B.JSArray_methods.lastIndexWhere$1(t1, new A.InlineParser__linkOrImage_closure()); if (index === -1) { _this._inline_parser$_tree.push(new A.Text1("]")); _this.start = ++_this.pos; return; } delimiter = type$.SimpleDelimiter._as(t1[index]); if (!delimiter.isActive) { B.JSArray_methods.removeAt$1(t1, index); _this._inline_parser$_tree.push(new A.Text1("]")); _this.start = ++_this.pos; return; } syntax = delimiter.syntax; if (syntax instanceof A.LinkSyntax && B.JSArray_methods.any$1(_this.syntaxes, new A.InlineParser__linkOrImage_closure0())) { t2 = _this._inline_parser$_tree; nodeIndex = B.JSArray_methods.lastIndexWhere$1(t2, new A.InlineParser__linkOrImage_closure1(delimiter)); linkNode = syntax.close$4$getChildren(0, _this, delimiter, null, new A.InlineParser__linkOrImage_closure2(_this, index, nodeIndex)); if (linkNode != null) { B.JSArray_methods.removeAt$1(t1, index); if (delimiter.char === 91) for (t1 = B.JSArray_methods.sublist$2(t1, 0, index), t3 = t1.length, _i = 0; _i < t1.length; t1.length === t3 || (0, A.throwConcurrentModificationError)(t1), ++_i) { d = t1[_i]; if (d.get$char() === 91) d.set$isActive(false); } t2[nodeIndex] = linkNode; _this.start = ++_this.pos; } else { B.JSArray_methods.removeAt$1(t1, index); t1 = _this.start; _this.pos = t1; _this.pos = t1 + 1; } } else throw A.wrapException(A.StateError$('Non-link syntax delimiter found with character "' + delimiter.char + '"')); }, _canFormEmphasis$2($opener, closer) { var t1; if (!($opener.get$canOpen() && $opener.get$canClose())) t1 = closer.get$canOpen() && closer.get$canClose(); else t1 = true; if (t1) { if (B.JSInt_methods.$mod($opener.get$length($opener) + closer.get$length(closer), 3) === 0) t1 = B.JSInt_methods.$mod($opener.get$length($opener), 3) === 0 && B.JSInt_methods.$mod(closer.get$length(closer), 3) === 0; else t1 = true; return t1; } else return true; }, _processEmphasis$1(bottomIndex) { var t1, t2, t3, currentIndex0, t4, _box_0, closer, t5, openerBottom, t6, openerIndex, $opener, strong, openerTextNode, openerTextNodeIndex, closerTextNode, node, currentIndex1, newOpenerTextNode, newCloserTextNode, _this = this, currentIndex = bottomIndex + 1, openersBottom = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.List_int); for (t1 = _this._delimiterStack, t2 = _this._inline_parser$_tree, t3 = type$.JSArray_Node_3, currentIndex0 = currentIndex; t4 = t1.length, currentIndex0 < t4;) { _box_0 = {}; closer = t1[currentIndex0]; if (!closer.get$canClose()) { ++currentIndex0; continue; } if (closer.get$char() === 91 || closer.get$char() === 33) { ++currentIndex0; continue; } openersBottom.putIfAbsent$2(0, closer.get$char(), new A.InlineParser__processEmphasis_closure(bottomIndex)); t4 = openersBottom.$index(0, closer.get$char()); t4.toString; t5 = J.getInterceptor$asx(t4); openerBottom = t5.$index(t4, B.JSInt_methods.$mod(closer.get$length(closer), 3)); t6 = currentIndex0 - 1; openerIndex = B.JSArray_methods.lastIndexWhere$2(t1, new A.InlineParser__processEmphasis_closure0(_this, closer), t6); if (openerIndex > bottomIndex && openerIndex > openerBottom) { $opener = t1[openerIndex]; strong = $opener.get$length($opener) >= 2 && closer.get$length(closer) >= 2; openerTextNode = $opener.get$node(); openerTextNodeIndex = B.JSArray_methods.indexOf$1(t2, openerTextNode); closerTextNode = closer.get$node(); _box_0.closerTextNodeIndex = B.JSArray_methods.indexOf$1(t2, closerTextNode); node = $opener.get$syntax().close$4$getChildren(0, _this, $opener, closer, new A.InlineParser__processEmphasis_closure1(_box_0, _this, openerTextNodeIndex)); t4 = _box_0.closerTextNodeIndex; node.toString; B.JSArray_methods.replaceRange$3(t2, openerTextNodeIndex + 1, t4, A._setArrayType([node], t3)); _box_0.closerTextNodeIndex = openerTextNodeIndex + 2; currentIndex1 = openerIndex + 1; if (!!t1.fixed$length) A.throwExpression(A.UnsupportedError$("removeRange")); A.RangeError_checkValidRange(currentIndex1, currentIndex0, t1.length, null, null); t1.splice(currentIndex1, currentIndex0 - currentIndex1); if (!(strong && openerTextNode.text.length === 2)) t4 = !strong && openerTextNode.text.length === 1; else t4 = true; if (t4) { B.JSArray_methods.removeAt$1(t2, openerTextNodeIndex); B.JSArray_methods.removeAt$1(t1, openerIndex); currentIndex0 = currentIndex1 - 1; --_box_0.closerTextNodeIndex; } else { t4 = strong ? 2 : 1; newOpenerTextNode = new A.Text1(J.substring$1$s(openerTextNode.text, t4)); t2[openerTextNodeIndex] = newOpenerTextNode; $opener.set$node(newOpenerTextNode); currentIndex0 = currentIndex1; } if (!(strong && closerTextNode.text.length === 2)) t4 = !strong && closerTextNode.text.length === 1; else t4 = true; if (t4) { B.JSArray_methods.removeAt$1(t2, _box_0.closerTextNodeIndex); B.JSArray_methods.removeAt$1(t1, currentIndex0); } else { t4 = strong ? 2 : 1; newCloserTextNode = new A.Text1(J.substring$1$s(closerTextNode.text, t4)); t2[_box_0.closerTextNodeIndex] = newCloserTextNode; closer.set$node(newCloserTextNode); } } else { t5.$indexSet(t4, B.JSInt_methods.$mod(closer.get$length(closer), 3), t6); if (!closer.get$canOpen()) B.JSArray_methods.removeAt$1(t1, currentIndex0); else ++currentIndex0; } } B.JSArray_methods.removeRange$2(t1, currentIndex, t4); }, _combineAdjacentText$1(nodes) { var t1, i, node, t2, t3, j; for (t1 = J.getInterceptor$asx(nodes), i = 0; i < t1.get$length(nodes) - 1; ++i) { node = t1.$index(nodes, i); if (node instanceof A.Element1 && node.children != null) { t2 = node.children; t2.toString; this._combineAdjacentText$1(t2); continue; } if (node instanceof A.Text1 && t1.$index(nodes, i + 1) instanceof A.Text1) { t2 = i + 1; t3 = A.S(node.text) + A.S(t1.$index(nodes, t2).get$textContent()); j = i + 2; while (true) { if (!(j < t1.get$length(nodes) && t1.$index(nodes, j) instanceof A.Text1)) break; t3 += A.S(t1.$index(nodes, j).get$textContent()); ++j; } t1.$indexSet(nodes, i, new A.Text1(t3.charCodeAt(0) == 0 ? t3 : t3)); t1.removeRange$2(nodes, t2, j); } } }, writeText$0(_) { var _this = this, t1 = _this.pos, t2 = _this.start; if (t1 === t2) return; _this._inline_parser$_tree.push(new A.Text1(B.JSString_methods.substring$2(_this.source, t2, t1))); _this.start = _this.pos; }, consume$1($length) { var t1 = this.pos += $length; this.start = t1; }, get$document(receiver) { return this.document; } }; A.InlineParser_parse_closure.prototype = { call$1(syntax) { return syntax.tryMatch$1(this.$this); }, $signature: 771 }; A.InlineParser__linkOrImage_closure.prototype = { call$1(d) { return d.get$char() === 91 || d.get$char() === 33; }, $signature: 768 }; A.InlineParser__linkOrImage_closure0.prototype = { call$1(e) { return e instanceof A.LinkSyntax; }, $signature: 771 }; A.InlineParser__linkOrImage_closure1.prototype = { call$1(n) { return n === this.delimiter.node; }, $signature: 2828 }; A.InlineParser__linkOrImage_closure2.prototype = { call$0() { var t2, children, t1 = this.$this; t1._processEmphasis$1(this.index); t1 = t1._inline_parser$_tree; t2 = this.nodeIndex + 1; children = B.JSArray_methods.sublist$2(t1, t2, t1.length); B.JSArray_methods.removeRange$2(t1, t2, t1.length); return children; }, $signature: 767 }; A.InlineParser__processEmphasis_closure.prototype = { call$0() { return A.List_List$filled(3, this.bottomIndex, false, type$.int); }, $signature: 665 }; A.InlineParser__processEmphasis_closure0.prototype = { call$1(d) { var t1 = this.closer; return d.get$char() === t1.get$char() && d.get$canOpen() && this.$this._canFormEmphasis$2(d, t1); }, $signature: 768 }; A.InlineParser__processEmphasis_closure1.prototype = { call$0() { return B.JSArray_methods.sublist$2(this.$this._inline_parser$_tree, this.openerTextNodeIndex + 1, this._box_0.closerTextNodeIndex); }, $signature: 767 }; A.InlineSyntax.prototype = { tryMatch$1(parser) { var startMatch, startMatchPos = parser.pos, t1 = this._startCharacter; if (t1 != null && B.JSString_methods.codeUnitAt$1(parser.source, startMatchPos) !== t1) return false; startMatch = this.pattern.matchAsPrefix$2(0, parser.source, startMatchPos); if (startMatch == null) return false; parser.writeText$0(0); if (this.onMatch$2(parser, startMatch)) parser.consume$1(startMatch._match[0].length); return true; } }; A.LineBreakSyntax.prototype = { onMatch$2(parser, match) { var t1 = type$.String; parser._inline_parser$_tree.push(new A.Element1("br", null, A.LinkedHashMap_LinkedHashMap$_empty(t1, t1))); return true; } }; A.TextSyntax.prototype = { onMatch$2(parser, match) { var t2, t3, t1 = this.substitute; if (t1.length !== 0) { t2 = match._match; t3 = t2.index; t2 = t3 > 0 && B.JSString_methods.substring$2(t2.input, t3 - 1, t3) === "/"; } else t2 = true; if (t2) { parser.pos += match._match[0].length; return false; } parser._inline_parser$_tree.push(new A.Text1(t1)); return true; } }; A.EscapeSyntax.prototype = { onMatch$2(parser, match) { var char, t2, t1 = match._match[0]; t1.toString; char = B.JSString_methods._codeUnitAt$1(t1, 1); if (char === 34) parser._inline_parser$_tree.push(new A.Text1(""")); else if (char === 60) parser._inline_parser$_tree.push(new A.Text1("<")); else { t2 = parser._inline_parser$_tree; if (char === 62) t2.push(new A.Text1(">")); else t2.push(new A.Text1(t1[1])); } return true; } }; A.InlineHtmlSyntax.prototype = {}; A.EmailAutolinkSyntax.prototype = { onMatch$2(parser, match) { var text, t2, t3, t1 = match._match[1]; t1.toString; text = B.HtmlEscape_HtmlEscapeMode_element_false.convert$1(t1); t2 = A._setArrayType([new A.Text1(text)], type$.JSArray_Node_3); t3 = type$.String; t3 = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); t3.$indexSet(0, "href", A._Uri__uriEncode(B.List_gnE, "mailto:" + t1, B.C_Utf8Codec, false)); parser._inline_parser$_tree.push(new A.Element1("a", t2, t3)); return true; } }; A.AutolinkSyntax.prototype = { onMatch$2(parser, match) { var text, t2, t3, t1 = match._match[1]; t1.toString; text = B.HtmlEscape_HtmlEscapeMode_element_false.convert$1(t1); t2 = A._setArrayType([new A.Text1(text)], type$.JSArray_Node_3); t3 = type$.String; t3 = A.LinkedHashMap_LinkedHashMap$_empty(t3, t3); t3.$indexSet(0, "href", A._Uri__uriEncode(B.List_gnE, t1, B.C_Utf8Codec, false)); parser._inline_parser$_tree.push(new A.Element1("a", t2, t3)); return true; } }; A.SimpleDelimiter.prototype = {$isDelimiter: 1, get$node() { return this.node; }, get$char() { return this.char; }, get$length(receiver) { return this.length; }, get$canOpen() { return this.canOpen; }, get$canClose() { return this.canClose; }, get$syntax() { return this.syntax; }, set$node(val) { return this.node = val; }, set$isActive(val) { return this.isActive = val; } }; A.DelimiterRun.prototype = { get$length(_) { return this.node.text.length; }, toString$0(_) { var _this = this; return ""; }, $isDelimiter: 1, get$node() { return this.node; }, get$char() { return this.char; }, get$syntax() { return this.syntax; }, get$canOpen() { return this.canOpen; }, get$canClose() { return this.canClose; }, set$node(val) { return this.node = val; }, set$isActive() { } }; A.TagSyntax.prototype = { onMatch$2(parser, match) { var delimiterRun, runLength = match._match[0].length, matchStart = parser.pos, matchEnd = matchStart + runLength, t1 = parser.source, text = new A.Text1(B.JSString_methods.substring$2(t1, matchStart, matchEnd)); if (!this.requiresDelimiterRun) { parser._delimiterStack.push(new A.SimpleDelimiter(text, B.JSString_methods.codeUnitAt$1(t1, matchStart), runLength, true, false, this, matchEnd)); parser._inline_parser$_tree.push(text); return true; } delimiterRun = A.DelimiterRun_tryParse(parser, matchStart, matchEnd, false, text, this); if (delimiterRun != null) { parser._delimiterStack.push(delimiterRun); parser._inline_parser$_tree.push(text); return true; } else { parser.pos += runLength; return false; } }, close$4$getChildren(_, parser, $opener, closer, getChildren) { var t1 = $opener.get$length($opener) >= 2 && closer.get$length(closer) >= 2 ? "strong" : "em", t2 = type$.String; return new A.Element1(t1, getChildren.call$0(), A.LinkedHashMap_LinkedHashMap$_empty(t2, t2)); } }; A.LinkSyntax.prototype = { close$4$getChildren(_, parser, $opener, closer, getChildren) { var t3, char, inlineLink, label, _this = this, t1 = parser.source, t2 = parser.pos, text = B.JSString_methods.substring$2(t1, $opener.endPos, t2); ++t2; t3 = t1.length; if (t2 >= t3) return _this._resolveReferenceLink$3$getChildren(text, parser.document.linkReferences, getChildren); char = B.JSString_methods.codeUnitAt$1(t1, t2); if (char === 40) { parser.pos = t2; inlineLink = _this._parseInlineLink$1(parser); if (inlineLink != null) return _this._inline_parser$_createNode$3$getChildren(inlineLink.destination, inlineLink.title, getChildren); parser.pos = t2; parser.pos = t2 + -1; return _this._resolveReferenceLink$3$getChildren(text, parser.document.linkReferences, getChildren); } if (char === 91) { parser.pos = t2; ++t2; if (t2 < t3 && B.JSString_methods.codeUnitAt$1(t1, t2) === 93) { parser.pos = t2; return _this._resolveReferenceLink$3$getChildren(text, parser.document.linkReferences, getChildren); } label = _this._parseReferenceLinkLabel$1(parser); if (label != null) return _this._resolveReferenceLink$3$getChildren(label, parser.document.linkReferences, getChildren); return null; } return _this._resolveReferenceLink$3$getChildren(text, parser.document.linkReferences, getChildren); }, _resolveReferenceLink$3$getChildren(label, linkReferences, getChildren) { var resolved, t1 = B.JSString_methods.trim$0(label), t2 = $.$get$_oneOrMoreWhitespacePattern(), linkReference = linkReferences.$index(0, A.stringReplaceAllUnchecked(t1, t2, " ").toLowerCase()); if (linkReference != null) return this._inline_parser$_createNode$3$getChildren(linkReference.destination, linkReference.title, getChildren); else { t1 = A.stringReplaceAllUnchecked(label, "\\\\", "\\"); t1 = A.stringReplaceAllUnchecked(t1, "\\[", "["); resolved = this.linkResolver.call$1(A.stringReplaceAllUnchecked(t1, "\\]", "]")); if (resolved != null) getChildren.call$0(); return resolved; } }, _inline_parser$_createNode$3$getChildren(destination, title, getChildren) { var children = getChildren.call$0(), t1 = type$.String; t1 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); t1.$indexSet(0, "href", A.escapeAttribute(destination)); if (title != null && title.length !== 0) t1.$indexSet(0, "title", A.escapeAttribute(title)); return new A.Element1("a", children, t1); }, _parseReferenceLinkLabel$1(parser) { var t4, char, next, label, _null = null, t1 = ++parser.pos, t2 = parser.source, t3 = t2.length; if (t1 === t3) return _null; for (t4 = ""; true;) { char = B.JSString_methods.codeUnitAt$1(t2, t1); if (char === 92) { t1 = parser.pos = t1 + 1; next = B.JSString_methods.codeUnitAt$1(t2, t1); if (next !== 92 && next !== 93) t4 += A.Primitives_stringFromCharCode(char); t4 += A.Primitives_stringFromCharCode(next); } else if (char === 91) return _null; else if (char === 93) break; else t4 += A.Primitives_stringFromCharCode(char); t1 = parser.pos = t1 + 1; if (t1 === t3) return _null; } label = t4.charCodeAt(0) == 0 ? t4 : t4; t1 = $.$get$LinkSyntax__entirelyWhitespacePattern()._nativeRegExp; if (t1.test(label)) return _null; return label; }, _parseInlineLink$1(parser) { var t1, t2; ++parser.pos; this._moveThroughWhitespace$1(parser); t1 = parser.pos; t2 = parser.source; if (t1 === t2.length) return null; if (B.JSString_methods.codeUnitAt$1(t2, t1) === 60) return this._parseInlineBracketedLink$1(parser); else return this._parseInlineBareDestinationLink$1(parser); }, _parseInlineBracketedLink$1(parser) { var t2, t3, t4, char, next, destination, title, _null = null, t1 = ++parser.pos; for (t2 = parser.source, t3 = t2.length, t4 = ""; true;) { char = B.JSString_methods.codeUnitAt$1(t2, t1); if (char === 92) { t1 = parser.pos = t1 + 1; next = B.JSString_methods.codeUnitAt$1(t2, t1); if (next !== 92 && next !== 62) t4 += A.Primitives_stringFromCharCode(char); t4 += A.Primitives_stringFromCharCode(next); } else if (char === 10 || char === 13 || char === 12) return _null; else if (char === 32) t4 += "%20"; else if (char === 62) break; else t4 += A.Primitives_stringFromCharCode(char); t1 = parser.pos = t1 + 1; if (t1 === t3) return _null; } destination = t4.charCodeAt(0) == 0 ? t4 : t4; ++t1; parser.pos = t1; char = B.JSString_methods.codeUnitAt$1(t2, t1); if (char === 32 || char === 10 || char === 13 || char === 12) { title = this._parseTitle$1(parser); if (title == null && B.JSString_methods.codeUnitAt$1(t2, parser.pos) !== 41) return _null; return new A.InlineLink(destination, title); } else if (char === 41) return new A.InlineLink(destination, _null); else return _null; }, _parseInlineBareDestinationLink$1(parser) { var t1, t2, parenCount, t3, t4, char, next, destination, title, _null = null; for (t1 = parser.source, t2 = t1.length, parenCount = 1, t3 = ""; true;) { t4 = parser.pos; char = B.JSString_methods.codeUnitAt$1(t1, t4); switch (char) { case 92: t4 = parser.pos = t4 + 1; if (t4 === t2) return _null; next = B.JSString_methods.codeUnitAt$1(t1, t4); if (next !== 92 && next !== 40 && next !== 41) t3 += A.Primitives_stringFromCharCode(char); t3 += A.Primitives_stringFromCharCode(next); break; case 32: case 10: case 13: case 12: destination = t3.charCodeAt(0) == 0 ? t3 : t3; title = this._parseTitle$1(parser); if (title == null) { t4 = parser.pos; t4 = t4 === t2 || B.JSString_methods.codeUnitAt$1(t1, t4) !== 41; } else t4 = false; if (t4) return _null; --parenCount; if (parenCount === 0) return new A.InlineLink(destination, title); break; case 40: ++parenCount; t3 += A.Primitives_stringFromCharCode(char); break; case 41: --parenCount; if (parenCount === 0) return new A.InlineLink(t3.charCodeAt(0) == 0 ? t3 : t3, _null); t3 += A.Primitives_stringFromCharCode(char); break; default: t3 += A.Primitives_stringFromCharCode(char); } if (++parser.pos === t2) return _null; } }, _moveThroughWhitespace$1(parser) { var t1, t2, t3, char; for (t1 = parser.source, t2 = t1.length; t3 = parser.pos, t3 !== t2;) { char = B.JSString_methods.codeUnitAt$1(t1, t3); if (char !== 32 && char !== 9 && char !== 10 && char !== 11 && char !== 13 && char !== 12) return; parser.pos = t3 + 1; } }, _parseTitle$1(parser) { var t1, t2, t3, delimiter, closeDelimiter, t4, char, next, _null = null; this._moveThroughWhitespace$1(parser); t1 = parser.pos; t2 = parser.source; t3 = t2.length; if (t1 === t3) return _null; delimiter = B.JSString_methods.codeUnitAt$1(t2, t1); if (delimiter !== 39 && delimiter !== 34 && delimiter !== 40) return _null; closeDelimiter = delimiter === 40 ? 41 : delimiter; ++t1; parser.pos = t1; for (t4 = ""; true;) { char = B.JSString_methods.codeUnitAt$1(t2, t1); if (char === 92) { t1 = parser.pos = t1 + 1; next = B.JSString_methods.codeUnitAt$1(t2, t1); if (next !== 92 && next !== closeDelimiter) t4 += A.Primitives_stringFromCharCode(char); t4 += A.Primitives_stringFromCharCode(next); } else if (char === closeDelimiter) break; else t4 += A.Primitives_stringFromCharCode(char); t1 = parser.pos = t1 + 1; if (t1 === t3) return _null; } ++t1; parser.pos = t1; if (t1 === t3) return _null; this._moveThroughWhitespace$1(parser); t1 = parser.pos; if (t1 === t3) return _null; if (B.JSString_methods.codeUnitAt$1(t2, t1) !== 41) return _null; return t4.charCodeAt(0) == 0 ? t4 : t4; } }; A.LinkSyntax_closure.prototype = { call$2(_, __) { return null; }, call$1(_) { return this.call$2(_, null); }, "call*": "call$2", $requiredArgCount: 1, $defaultValues() { return [null]; }, $signature: 2830 }; A.ImageSyntax.prototype = { _inline_parser$_createNode$3$getChildren(destination, title, getChildren) { var t1 = type$.String, t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1), children = getChildren.call$0(); t2.$indexSet(0, "src", destination); t2.$indexSet(0, "alt", J.map$1$1$ax(children, new A.ImageSyntax__createNode_closure(), t1).join$0(0)); if (title != null && title.length !== 0) t2.$indexSet(0, "title", A.escapeAttribute(A.stringReplaceAllUnchecked(title, "&", "&"))); return new A.Element1("img", null, t2); } }; A.ImageSyntax__createNode_closure.prototype = { call$1(node) { return node.get$textContent(); }, $signature: 774 }; A.CodeSyntax.prototype = { tryMatch$1(parser) { var match, t1 = parser.pos; if (t1 > 0 && B.JSString_methods.codeUnitAt$1(parser.source, t1 - 1) === 96) return false; match = this.pattern.matchAsPrefix$2(0, parser.source, t1); if (match == null) return false; parser.writeText$0(0); this.onMatch$2(parser, match); parser.consume$1(match._match[0].length); return true; }, onMatch$2(parser, match) { var code, t1 = match._match[2]; t1.toString; t1 = B.JSString_methods.trim$0(t1); code = B.HtmlEscape_HtmlEscapeMode_element_false.convert$1(A.stringReplaceAllUnchecked(t1, "\n", " ")); t1 = type$.String; parser._inline_parser$_tree.push(new A.Element1("code", A._setArrayType([new A.Text1(code)], type$.JSArray_Node_3), A.LinkedHashMap_LinkedHashMap$_empty(t1, t1))); return true; } }; A.InlineLink.prototype = {}; A._MdiIconData.prototype = {}; A.memo1_closure.prototype = { call$1(arg) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(arg, _this.prevArg._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArg.__late_helper$_value = arg; t3.__late_helper$_value = _this.func.call$1(arg); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { return this.R._eval$1("@<0>")._bind$1(this.A)._eval$1("1(2)"); } }; A.memo2_closure.prototype = { call$2(argA, argB) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; t3.__late_helper$_value = _this.func.call$2(argA, argB); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { return this.R._eval$1("@<0>")._bind$1(this.A)._bind$1(this.B)._eval$1("1(2,3)"); } }; A.memo3_closure.prototype = { call$3(argA, argB, argC) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; t3.__late_helper$_value = _this.func.call$3(argA, argB, argC); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._eval$1("1(2,3,4)"); } }; A.memo4_closure.prototype = { call$4(argA, argB, argC, argD) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; t3.__late_helper$_value = _this.func.call$4(argA, argB, argC, argD); t1.isInitial = false; return t3._readLocal$0(); } }, "call*": "call$4", $requiredArgCount: 4, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._eval$1("1(2,3,4,5)"); } }; A.memo5_closure.prototype = { call$5(argA, argB, argC, argD, argE) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; t3.__late_helper$_value = _this.func.call$5(argA, argB, argC, argD, argE); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._eval$1("1(2,3,4,5,6)"); } }; A.memo6_closure.prototype = { call$6(argA, argB, argC, argD, argE, argF) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()) && J.$eq$(argF, _this.prevArgF._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; _this.prevArgF.__late_helper$_value = argF; t3.__late_helper$_value = _this.func.call$6(argA, argB, argC, argD, argE, argF); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._eval$1("1(2,3,4,5,6,7)"); } }; A.memo7_closure.prototype = { call$7(argA, argB, argC, argD, argE, argF, argG) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()) && J.$eq$(argF, _this.prevArgF._readLocal$0()) && J.$eq$(argG, _this.prevArgG._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; _this.prevArgF.__late_helper$_value = argF; _this.prevArgG.__late_helper$_value = argG; t3.__late_helper$_value = _this.func.call$7(argA, argB, argC, argD, argE, argF, argG); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._eval$1("1(2,3,4,5,6,7,8)"); } }; A.memo8_closure.prototype = { call$8(argA, argB, argC, argD, argE, argF, argG, argH) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()) && J.$eq$(argF, _this.prevArgF._readLocal$0()) && J.$eq$(argG, _this.prevArgG._readLocal$0()) && J.$eq$(argH, _this.prevArgH._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; _this.prevArgF.__late_helper$_value = argF; _this.prevArgG.__late_helper$_value = argG; _this.prevArgH.__late_helper$_value = argH; t3.__late_helper$_value = _this.func.call$8(argA, argB, argC, argD, argE, argF, argG, argH); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._eval$1("1(2,3,4,5,6,7,8,9)"); } }; A.memo9_closure.prototype = { call$9(argA, argB, argC, argD, argE, argF, argG, argH, argI) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()) && J.$eq$(argF, _this.prevArgF._readLocal$0()) && J.$eq$(argG, _this.prevArgG._readLocal$0()) && J.$eq$(argH, _this.prevArgH._readLocal$0()) && J.$eq$(argI, _this.prevArgI._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; _this.prevArgF.__late_helper$_value = argF; _this.prevArgG.__late_helper$_value = argG; _this.prevArgH.__late_helper$_value = argH; _this.prevArgI.__late_helper$_value = argI; t3.__late_helper$_value = _this.func.call$9(argA, argB, argC, argD, argE, argF, argG, argH, argI); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._bind$1(_this.I)._eval$1("1(2,3,4,5,6,7,8,9,10)"); } }; A.memo10_closure.prototype = { call$10(argA, argB, argC, argD, argE, argF, argG, argH, argI, argJ) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this.prevArgA._readLocal$0()) && J.$eq$(argB, _this.prevArgB._readLocal$0()) && J.$eq$(argC, _this.prevArgC._readLocal$0()) && J.$eq$(argD, _this.prevArgD._readLocal$0()) && J.$eq$(argE, _this.prevArgE._readLocal$0()) && J.$eq$(argF, _this.prevArgF._readLocal$0()) && J.$eq$(argG, _this.prevArgG._readLocal$0()) && J.$eq$(argH, _this.prevArgH._readLocal$0()) && J.$eq$(argI, _this.prevArgI._readLocal$0()) && J.$eq$(argJ, _this.prevArgJ._readLocal$0()), t3 = _this.prevResult; if (t2) return t3._readLocal$0(); else { _this.prevArgA.__late_helper$_value = argA; _this.prevArgB.__late_helper$_value = argB; _this.prevArgC.__late_helper$_value = argC; _this.prevArgD.__late_helper$_value = argD; _this.prevArgE.__late_helper$_value = argE; _this.prevArgF.__late_helper$_value = argF; _this.prevArgG.__late_helper$_value = argG; _this.prevArgH.__late_helper$_value = argH; _this.prevArgI.__late_helper$_value = argI; _this.prevArgJ.__late_helper$_value = argJ; t3.__late_helper$_value = _this.func.call$10(argA, argB, argC, argD, argE, argF, argG, argH, argI, argJ); t1.isInitial = false; return t3._readLocal$0(); } }, $signature() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._bind$1(_this.I)._bind$1(_this.J)._eval$1("1(2,3,4,5,6,7,8,9,10,11)"); } }; A.AuthenticationResult.prototype = {}; A.Configuration.prototype = { set$auth(_, value) { this._msal_js$_jsObject.auth = value._msal_js$_jsObject; } }; A.BrowserAuthOptions.prototype = {}; A.PublicClientApplication.prototype = { loginPopup$1(_, request) { return this.loginPopup$body$PublicClientApplication(0, request); }, loginPopup$body$PublicClientApplication(_, request) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.AuthenticationResult), $async$returnValue, $async$self = this, $async$temp1; var $async$loginPopup$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = A; $async$goto = 3; return A._asyncAwait(A._convertMsalPromise(A._callJsMethod(new A.PublicClientApplication_loginPopup_closure($async$self, request)), type$.AuthenticationResult_2), $async$loginPopup$1); case 3: // returning from await. $async$returnValue = new $async$temp1.AuthenticationResult($async$result); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$loginPopup$1, $async$completer); }, logoutPopup$1(_, logoutRequest) { return this.logoutPopup$body$PublicClientApplication(0, logoutRequest); }, logoutPopup$body$PublicClientApplication(_, logoutRequest) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$logoutPopup$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A._convertMsalPromise(A._callJsMethod(new A.PublicClientApplication_logoutPopup_closure($async$self, logoutRequest)), type$.void), $async$logoutPopup$1); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$logoutPopup$1, $async$completer); } }; A.PublicClientApplication_loginPopup_closure.prototype = { call$0() { return J.loginPopup$1$x(this.$this._msal_js$_jsObject, this.request._msal_js$_jsObject); }, $signature: 9 }; A.PublicClientApplication_logoutPopup_closure.prototype = { call$0() { return J.logoutPopup$1$x(this.$this._msal_js$_jsObject, this.logoutRequest._msal_js$_jsObject); }, $signature: 9 }; A.EndSessionPopupRequest.prototype = {}; A.PopupRequest.prototype = {}; A.CommonAuthorizationUrlRequest.prototype = {}; A.CommonEndSessionRequest.prototype = {}; A.MsalJsException.prototype = { get$name(_) { return J.get$name$x(this._baseJsObject); }, get$message(_) { var t1 = J.get$message$x(this._baseJsObject); return t1 == null ? "" : t1; }, toString$0(_) { return "MsalJsException: " + this.get$message(this); }, $isException: 1 }; A.AuthException.prototype = { get$message(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return t1 == null ? "" : t1; }, toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "AuthException: " + (t1 == null ? "" : t1); } }; A.ClientAuthException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "ClientAuthException: " + (t1 == null ? "" : t1); } }; A.ClientConfigurationException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "ClientConfigurationException: " + (t1 == null ? "" : t1); } }; A.InteractionRequiredAuthException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "InteractionRequiredAuthException: " + (t1 == null ? "" : t1); } }; A.ServerException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "ServerException: " + (t1 == null ? "" : t1); } }; A.BrowserAuthException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "BrowserAuthException: " + (t1 == null ? "" : t1); } }; A.BrowserConfigurationAuthException.prototype = { toString$0(_) { var t1 = J.get$message$x(this._exceptions$_jsObject); return "BrowserConfigurationAuthException: " + (t1 == null ? "" : t1); } }; A.AccountInfo.prototype = {}; A.AuthenticationResult0.prototype = {}; A.Configuration0.prototype = {}; A.BrowserAuthOptions0.prototype = {}; A.CacheOptions.prototype = {}; A.BrowserSystemOptions.prototype = {}; A.LoggerOptions.prototype = {}; A.AuthError.prototype = {}; A.EventMessage.prototype = {}; A.Logger1.prototype = {}; A.NavigationOptions.prototype = {}; A.NetworkRequestOptions.prototype = {}; A.NetworkResponse.prototype = {}; A.PublicClientApplication0.prototype = {}; A.SsoSilentRequest.prototype = {}; A.EndSessionRequest.prototype = {}; A.EndSessionPopupRequest0.prototype = {}; A.SilentRequest.prototype = {}; A.RedirectRequest.prototype = {}; A.PopupRequest0.prototype = {}; A.CommonSilentFlowRequest.prototype = {}; A.CommonAuthorizationUrlRequest0.prototype = {}; A.CommonEndSessionRequest0.prototype = {}; A.JsError.prototype = {}; A.Promise2.prototype = {}; A.Array.prototype = {}; A.Object0.prototype = {}; A.Reflect.prototype = {}; A.AnimationDirection.prototype = { toString$0(_) { return "AnimationDirection." + this._core$_name; } }; A.FadeWidget.prototype = { createState$0() { return new A._FadeWidgetState(null, null, B._StateLifecycle_0); } }; A._FadeWidgetState.prototype = { build$1(_, context) { var t1; if (A._lateReadCheck(this.___FadeWidgetState_hideWidget, "hideWidget")) return B.SizedBox_0_0_null_null; t1 = A._lateReadCheck(this.___FadeWidgetState_opacity, "opacity"); return A.FadeTransition$(false, this._widget.child, t1); }, initState$0() { var t1, curved, begin, end, _this = this, _null = null, _s10_ = "controller"; _this.super$State$initState(); t1 = A.AnimationController$(_null, _this._widget.duration, _null, 1, _null, _this); _this.___FadeWidgetState_controller = t1; t1 = A._lateReadCheck(t1, _s10_); curved = A.CurvedAnimation$(_this._widget.curve, t1, _null); t1 = _this._widget.direction === B.AnimationDirection_0; begin = t1 ? 0 : 1; end = t1 ? 1 : 0; t1 = type$.Tween_double; _this.___FadeWidgetState_opacity = new A._AnimatedEvaluation(curved, new A.Tween(begin, end, t1), t1._eval$1("_AnimatedEvaluation")); A._lateReadCheck(_this.___FadeWidgetState_controller, _s10_).forward$0(0); _this.___FadeWidgetState_hideWidget = false; if (_this._widget.direction === B.AnimationDirection_1) { t1 = A._lateReadCheck(_this.___FadeWidgetState_opacity, "opacity"); t1.get$parent(t1).addStatusListener$1(_this.get$animationStatusChange()); } }, didUpdateWidget$1(oldWidget) { var t1, t2, curved, begin, end, _this = this, _s10_ = "controller"; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.child; t2 = _this._widget.child; if (J.get$runtimeType$(t1) === J.get$runtimeType$(t2) && J.$eq$(t1.key, t2.key)) return; t1 = A._lateReadCheck(_this.___FadeWidgetState_opacity, "opacity"); t2 = _this.get$animationStatusChange(); t1.get$parent(t1).removeStatusListener$1(t2); A._lateReadCheck(_this.___FadeWidgetState_controller, _s10_).duration = _this._widget.duration; A._lateReadCheck(_this.___FadeWidgetState_controller, _s10_).set$value(0, 0); t1 = A._lateReadCheck(_this.___FadeWidgetState_controller, _s10_); curved = A.CurvedAnimation$(_this._widget.curve, t1, null); t1 = _this._widget.direction === B.AnimationDirection_0; begin = t1 ? 0 : 1; end = t1 ? 1 : 0; t1 = type$.Tween_double; _this.___FadeWidgetState_opacity = new A._AnimatedEvaluation(curved, new A.Tween(begin, end, t1), t1._eval$1("_AnimatedEvaluation")); A._lateReadCheck(_this.___FadeWidgetState_controller, _s10_).forward$0(0); _this.___FadeWidgetState_hideWidget = false; if (_this._widget.direction === B.AnimationDirection_1) { t1 = A._lateReadCheck(_this.___FadeWidgetState_opacity, "opacity"); t1.get$parent(t1).addStatusListener$1(t2); } }, dispose$0(_) { var _this = this, t1 = A._lateReadCheck(_this.___FadeWidgetState_opacity, "opacity"); t1.get$parent(t1).removeStatusListener$1(_this.get$animationStatusChange()); A._lateReadCheck(_this.___FadeWidgetState_controller, "controller").dispose$0(0); _this.super$__FadeWidgetState_State_SingleTickerProviderStateMixin$dispose(0); }, animationStatusChange$1($status) { this.setState$1(new A._FadeWidgetState_animationStatusChange_closure(this, $status)); } }; A._FadeWidgetState_animationStatusChange_closure.prototype = { call$0() { var t1 = this.$this; t1.___FadeWidgetState_hideWidget = t1._widget.direction === B.AnimationDirection_1 && this.status === B.AnimationStatus_3; }, $signature: 0 }; A.__FadeWidgetState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.OctoImage.prototype = { createState$0() { return new A._OctoImageState(B._StateLifecycle_0); } }; A._OctoImageState.prototype = { initState$0() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16; this.super$State$initState(); t1 = this._widget; t2 = t1.image; t3 = t1.imageBuilder; t4 = t1.placeholderBuilder; t5 = t1.progressIndicatorBuilder; t6 = t1.errorBuilder; t7 = t1.placeholderFadeInDuration; t8 = t1.fadeOutDuration; t9 = t1.fadeOutCurve; t10 = t1.fadeInDuration; t11 = t1.fadeInCurve; t12 = t1.fit; t13 = t1.width; t14 = t1.height; t15 = t1.alignment; t16 = t1.repeat; this.___OctoImageState__imageHandler = A.ImageHandler$(t15, false, t1.color, t1.colorBlendMode, t6, t11, t10, t9, t8, t1.filterQuality, t12, t14, t2, t3, false, t4, t7, t5, t16, t13); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!oldWidget.image.$eq(0, _this._widget.image)) { _this._widget.toString; _this._previousHandler = null; } t1 = _this._widget; t2 = t1.image; t3 = t1.imageBuilder; t4 = _this._previousHandler; t5 = t4 != null; t4 = t5 ? t4.get$build(t4) : t1.placeholderBuilder; t6 = t5 ? null : t1.progressIndicatorBuilder; t7 = t1.errorBuilder; t8 = t1.placeholderFadeInDuration; t9 = t1.fadeOutDuration; t10 = t1.fadeOutCurve; t11 = t1.fadeInDuration; t12 = t1.fadeInCurve; t13 = t1.fit; t14 = t1.width; t15 = t1.height; t16 = t1.alignment; t17 = t1.repeat; _this.___OctoImageState__imageHandler = A.ImageHandler$(t16, t5, t1.color, t1.colorBlendMode, t7, t12, t11, t10, t9, t1.filterQuality, t13, t15, t2, t3, false, t4, t8, t6, t17, t14); }, build$1(_, context) { var t1 = this._widget; return new A.SizedBox(t1.width, t1.height, A._lateReadCheck(this.___OctoImageState__imageHandler, "_imageHandler").build$1(0, context), null); } }; A._PlaceholderType.prototype = { toString$0(_) { return "_PlaceholderType." + this._core$_name; } }; A.ImageHandler.prototype = { imageFrameBuilder$0() { var _this = this; switch (A._lateReadCheck(_this.__ImageHandler__placeholderType, "_placeholderType")) { case B._PlaceholderType_0: return _this.get$_imageBuilder(); case B._PlaceholderType_1: return _this.get$_placeholderBuilder(); case B._PlaceholderType_2: return _this.get$_preLoadingBuilder(); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var _this = this, t1 = _this.image, t2 = A._lateReadCheck(_this.__ImageHandler__placeholderType, "_placeholderType") === B._PlaceholderType_2 ? _this.get$_loadingBuilder() : null, t3 = _this.imageFrameBuilder$0(), t4 = _this.errorBuilder != null ? _this.get$_errorBuilder() : null; return A.Image$(_this.alignment, _this.color, _this.colorBlendMode, t4, _this.filterQuality, _this.fit, t3, _this.height, t1, new A.ValueKey(t1, type$.ValueKey_ImageProvider_Object), t2, false, _this.repeat, _this.width); }, _image_handler$_stack$2(revealing, disappearing) { var _this = this, _null = null; return new A.Stack(B.Alignment_0_0, _null, B.StackFit_2, B.Clip_1, A._setArrayType([new A.FadeWidget(revealing, _this.fadeInDuration, B.AnimationDirection_0, _this.fadeInCurve, _null), new A.FadeWidget(disappearing, _this.fadeOutDuration, B.AnimationDirection_1, _this.fadeOutCurve, _null)], type$.JSArray_Widget), _null); }, _imageBuilder$4(context, child, frame, wasSynchronouslyLoaded) { if (frame == null) return child; return this._image_handler$_image$2(context, child); }, _placeholderBuilder$4(context, child, frame, wasSynchronouslyLoaded) { var t1, _this = this; if (frame == null) { t1 = _this.placeholderFadeInDuration; if (t1._duration !== 0) return new A.FadeWidget(_this._placeholder$1(context), t1, B.AnimationDirection_0, _this.fadeInCurve, null); else return _this._placeholder$1(context); } if (wasSynchronouslyLoaded && !_this.alwaysShowPlaceHolder) return _this._image_handler$_image$2(context, child); return _this._image_handler$_stack$2(_this._image_handler$_image$2(context, child), _this._placeholder$1(context)); }, _preLoadingBuilder$4(context, child, frame, wasSynchronouslyLoaded) { this._image_handler$_wasSynchronouslyLoaded = wasSynchronouslyLoaded; this._isLoaded = frame != null; return child; }, _loadingBuilder$3(context, child, loadingProgress) { var t1, _this = this; if (_this._isLoaded) { if (_this._image_handler$_wasSynchronouslyLoaded) return _this._image_handler$_image$2(context, child); return _this._image_handler$_stack$2(_this._image_handler$_image$2(context, child), _this._progressIndicator$2(context, null)); } t1 = _this.placeholderFadeInDuration; if (t1._duration !== 0) return new A.FadeWidget(_this._progressIndicator$2(context, loadingProgress), t1, B.AnimationDirection_0, _this.fadeInCurve, null); else return _this._progressIndicator$2(context, loadingProgress); }, _image_handler$_image$2(context, child) { var t1 = this.imageBuilder; if (t1 != null) return t1.call$2(context, child); else return child; }, _errorBuilder$3(context, error, stacktrace) { var t1 = this.errorBuilder; if (t1 == null) throw A.wrapException(A.StateError$("Try to build errorBuilder with errorBuilder null")); return t1.call$3(context, error, stacktrace); }, _progressIndicator$2(context, loadingProgress) { var t1 = this.progressIndicatorBuilder; if (t1 == null) throw A.wrapException(A.StateError$("Try to build progressIndicatorBuilder with progressIndicatorBuilder null")); return t1.call$2(context, loadingProgress); }, _placeholder$1(context) { var _null = null, t1 = this.placeholderBuilder; if (t1 != null) return t1.call$1(context); return A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, _definePlaceholderType$0() { if (this.placeholderBuilder != null) return B._PlaceholderType_1; if (this.progressIndicatorBuilder != null) return B._PlaceholderType_2; return B._PlaceholderType_0; } }; A.OverflowViewParentData.prototype = {}; A.OverflowViewLayoutBehavior.prototype = { toString$0(_) { return "OverflowViewLayoutBehavior." + this._core$_name; } }; A.RenderOverflowView.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A.OverflowViewParentData)) child.parentData = new A.OverflowViewParentData(null, null, B.Offset_0_0); }, _overflow_view$_getCrossSize$1(child) { switch (this._overflow_view$_direction.index) { case 0: return child._box$_size._dy; case 1: return child._box$_size._dx; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _overflow_view$_getMainSize$1(child) { switch (this._overflow_view$_direction.index) { case 0: return child._box$_size._dx; case 1: return child._box$_size._dy; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, performLayout$0() { var _this = this; _this._hasOverflow = false; _this.resetOffstage$0(); if (_this._overflow_view$_layoutBehavior === B.OverflowViewLayoutBehavior_0) _this.performFixedLayout$0(); else _this.performFlexibleLayout$0(); }, resetOffstage$0() { this.visitChildren$1(new A.RenderOverflowView_resetOffstage_closure()); }, performFixedLayout$0() { var t2, t3, childConstraints, maxExtent, childParentData, t4, t5, childExtent, crossExtent, otherChildConstraints, childStride, getChildOffset, count, renderedChildCount, unRenderedChildCount, onstageCount, child, i, overflowIndicatorParentData, mainAxisExtent, requestedSize, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t2 = type$.BoxConstraints; t3 = t2._as(A.RenderObject.prototype.get$constraints.call(_this)); childConstraints = new A.BoxConstraints(0, t3.maxWidth, 0, t3.maxHeight); maxExtent = _this._isHorizontal ? t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth : t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight; t3 = type$.OverflowViewParentData; childParentData = t3._as(t1.parentData); t1.layout$2$parentUsesSize(0, childConstraints, true); t4 = t1._box$_size; t4.toString; t5 = _this._overflow_view$_direction === B.Axis_0; childExtent = t5 ? t4._dx : t4._dy; crossExtent = t5 ? t4._dy : t4._dx; otherChildConstraints = _this._isHorizontal ? childConstraints.tighten$2$height$width(crossExtent, childExtent) : childConstraints.tighten$2$height$width(childExtent, crossExtent); t4 = _this._overflow_view$_spacing; childStride = childExtent + t4; getChildOffset = new A.RenderOverflowView_performFixedLayout_getChildOffset(_this, childStride); t5 = _this.ContainerRenderObjectMixin__childCount; count = t5 - 1; renderedChildCount = childExtent * count + t4 * (t5 - 2) <= maxExtent ? count : B.JSNumber_methods.$tdiv(maxExtent + t4, childStride) - 1; unRenderedChildCount = count - renderedChildCount; if (renderedChildCount > 0) { childParentData.offstage = false; onstageCount = 1; } else onstageCount = 0; for (child = t1, i = 1; i < renderedChildCount; ++i, child = t1) { t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; childParentData = t3._as(t1.parentData); t1.layout$1(0, otherChildConstraints); childParentData.offset = getChildOffset.call$1(i); childParentData.offstage = false; ++onstageCount; } for (; t1 = _this.ContainerRenderObjectMixin__lastChild, child !== t1; child = t1) { t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; childParentData = t3._as(t1.parentData); childParentData.offstage = true; } if (unRenderedChildCount > 0) { t1.toString; t1.layout$1(0, A.BoxValueConstraints$(otherChildConstraints, unRenderedChildCount, type$.int)); overflowIndicatorParentData = t3._as(t1.parentData); overflowIndicatorParentData.offset = getChildOffset.call$1(renderedChildCount); overflowIndicatorParentData.offstage = false; ++onstageCount; } mainAxisExtent = onstageCount * childStride - _this._overflow_view$_spacing; requestedSize = _this._isHorizontal ? new A.Size(mainAxisExtent, crossExtent) : new A.Size(crossExtent, mainAxisExtent); _this._box$_size = t2._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(requestedSize); }, performFlexibleLayout$0() { var renderBoxes, unRenderedChildCount, t2, availableExtent, maxCrossExtent, childConstraints, showOverflowIndicator, t3, child, offset, childParentData, childMainSize, childStride, t4, overflowIndicatorConstraints, t5, overflowIndicatorParentData, crossSize, _i, childCrossPosition, idealSize, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; renderBoxes = A._setArrayType([], type$.JSArray_RenderBox); unRenderedChildCount = _this.ContainerRenderObjectMixin__childCount - 1; t2 = type$.BoxConstraints; availableExtent = _this._isHorizontal ? t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth : t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight; maxCrossExtent = _this._isHorizontal ? t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxHeight : t2._as(A.RenderObject.prototype.get$constraints.call(_this)).maxWidth; childConstraints = _this._isHorizontal ? A.BoxConstraints$loose(new A.Size(1 / 0, maxCrossExtent)) : A.BoxConstraints$loose(new A.Size(maxCrossExtent, 1 / 0)); t3 = type$.OverflowViewParentData; child = t1; offset = 0; while (true) { if (!(child !== _this.ContainerRenderObjectMixin__lastChild)) { showOverflowIndicator = false; break; } childParentData = t3._as(child.parentData); child.layout$2$parentUsesSize(0, childConstraints, true); childMainSize = _this._overflow_view$_getMainSize$1(child); if (childMainSize <= availableExtent) { renderBoxes.push(child); childParentData.offstage = false; childParentData.offset = _this._isHorizontal ? new A.Offset(offset, 0) : new A.Offset(0, offset); childStride = _this._overflow_view$_spacing + childMainSize; offset += childStride; availableExtent -= childStride; --unRenderedChildCount; t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; } else { showOverflowIndicator = true; break; } child = t1; } t1 = _this.ContainerRenderObjectMixin__lastChild; if (showOverflowIndicator) { t1.toString; t4 = type$.int; overflowIndicatorConstraints = A.BoxValueConstraints$(childConstraints, unRenderedChildCount, t4); t1.layout$2$parentUsesSize(0, overflowIndicatorConstraints, true); childMainSize = _this._overflow_view$_getMainSize$1(t1); while (true) { t5 = childMainSize > availableExtent; if (!(t5 && renderBoxes.length !== 0)) break; child = renderBoxes.pop(); t3._as(child.parentData).offstage = true; childStride = _this._overflow_view$_getMainSize$1(child) + _this._overflow_view$_spacing; availableExtent += childStride; ++unRenderedChildCount; offset -= childStride; } if (t5) _this._hasOverflow = true; if (overflowIndicatorConstraints.value !== unRenderedChildCount) t1.layout$2$parentUsesSize(0, A.BoxValueConstraints$(childConstraints, unRenderedChildCount, t4), true); renderBoxes.push(t1); overflowIndicatorParentData = t3._as(t1.parentData); overflowIndicatorParentData.offset = _this._isHorizontal ? new A.Offset(offset, 0) : new A.Offset(0, offset); overflowIndicatorParentData.offstage = false; offset += childMainSize; } else { offset -= _this._overflow_view$_spacing; if (t1 != null) t1.layout$1(0, A.BoxValueConstraints$(childConstraints, unRenderedChildCount, type$.int)); _this._hasOverflow = true; } crossSize = B.JSArray_methods.fold$1$2(renderBoxes, 0, new A.RenderOverflowView_performFlexibleLayout_closure(_this), type$.double); for (t1 = renderBoxes.length, _i = 0; _i < renderBoxes.length; renderBoxes.length === t1 || (0, A.throwConcurrentModificationError)(renderBoxes), ++_i) { child = renderBoxes[_i]; childCrossPosition = crossSize / 2 - _this._overflow_view$_getCrossSize$1(child) / 2; childParentData = t3._as(child.parentData); childParentData.offset = _this._isHorizontal ? new A.Offset(childParentData.offset._dx, childCrossPosition) : new A.Offset(childCrossPosition, childParentData.offset._dy); } idealSize = _this._isHorizontal ? new A.Size(offset, crossSize) : new A.Size(crossSize, offset); _this._box$_size = t2._as(A.RenderObject.prototype.get$constraints.call(_this)).constrain$1(idealSize); }, visitOnlyOnStageChildren$1(visitor) { this.visitChildren$1(new A.RenderOverflowView_visitOnlyOnStageChildren_closure(visitor)); }, visitChildrenForSemantics$1(visitor) { this.visitOnlyOnStageChildren$1(visitor); }, paint$2(context, offset) { var t2, t3, _this = this, t1 = new A.RenderOverflowView_paint_defaultPaint(_this, new A.RenderOverflowView_paint_paintChild(_this, context, offset)); if (_this._hasOverflow) { t2 = A._lateReadCheck(_this.__RenderObject__needsCompositing, "_needsCompositing"); t3 = _this._box$_size; context.pushClipRect$5$clipBehavior(t2, offset, new A.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), t1, B.Clip_1); } else t1.call$2(context, offset); }, hitTestChildren$2$position(result, position) { this.visitOnlyOnStageChildren$1(new A.RenderOverflowView_hitTestChildren_closure(result, position)); return false; } }; A.RenderOverflowView_resetOffstage_closure.prototype = { call$1(child) { type$.OverflowViewParentData._as(child.parentData).offstage = null; }, $signature: 110 }; A.RenderOverflowView_performFixedLayout_getChildOffset.prototype = { call$1(index) { var mainAxisOffset = index * this.childStride; if (this.$this._isHorizontal) return new A.Offset(mainAxisOffset, 0); else return new A.Offset(0, mainAxisOffset); }, $signature: 2833 }; A.RenderOverflowView_performFlexibleLayout_closure.prototype = { call$2(previousValue, element) { var t1 = this.$this._overflow_view$_getCrossSize$1(element); return Math.max(A.checkNum(previousValue), A.checkNum(t1)); }, $signature: 2834 }; A.RenderOverflowView_visitOnlyOnStageChildren_closure.prototype = { call$1(child) { if (type$.OverflowViewParentData._as(child.parentData).offstage === false) this.visitor.call$1(child); }, $signature: 110 }; A.RenderOverflowView_paint_paintChild.prototype = { call$1(child) { var childParentData = type$.OverflowViewParentData._as(child.parentData), t1 = this.context; if (childParentData.offstage === false) t1.paintChild$2(child, childParentData.offset.$add(0, this.offset)); else t1.paintChild$2(child, this.$this._box$_size.bottomRight$1(0, B.Offset_0_0)); }, $signature: 110 }; A.RenderOverflowView_paint_defaultPaint.prototype = { call$2(context, offset) { this.$this.visitOnlyOnStageChildren$1(this.paintChild); }, $signature: 93 }; A.RenderOverflowView_hitTestChildren_closure.prototype = { call$1(renderObject) { var childParentData, t1; type$.RenderBox._as(renderObject); childParentData = type$.OverflowViewParentData._as(renderObject.parentData); t1 = this.position; this.result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderOverflowView_hitTestChildren__closure(t1, childParentData, renderObject), childParentData.offset, t1); }, $signature: 110 }; A.RenderOverflowView_hitTestChildren__closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 73 }; A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.OverflowViewParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.OverflowViewParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A.OverflowView.prototype = { createElement$0(_) { return new A._OverflowViewElement(A.HashSet_HashSet(type$.Element_2), this, B._ElementLifecycle_0); }, createRenderObject$1(context) { var t1 = this.direction; t1 = new A.RenderOverflowView(t1, this.spacing, this._layoutBehavior, t1 === B.Axis_0, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.direction; if (renderObject._overflow_view$_direction !== t1) { renderObject._overflow_view$_direction = t1; renderObject._isHorizontal = t1 === B.Axis_0; renderObject.markNeedsLayout$0(); } t1 = this.spacing; if (renderObject._overflow_view$_spacing !== t1) { renderObject._overflow_view$_spacing = t1; renderObject.markNeedsLayout$0(); } t1 = this._layoutBehavior; if (renderObject._overflow_view$_layoutBehavior !== t1) { renderObject._overflow_view$_layoutBehavior = t1; renderObject.markNeedsLayout$0(); } } }; A.OverflowView$_all_closure.prototype = { call$2(context, constraints) { return this.builder.call$2(context, constraints.value); }, $signature: 2835 }; A._OverflowViewElement.prototype = {}; A.MethodChannelPackageInfo.prototype = {}; A.PackageInfoPlatform.prototype = {}; A.PackageInfoPlugin.prototype = {}; A.Context.prototype = { absolute$7(_, part1, part2, part3, part4, part5, part6, part7) { var t1; A._validateArgList("absolute", A._setArrayType([part1, part2, part3, part4, part5, part6, part7], type$.JSArray_nullable_String)); t1 = this.style; t1 = t1.rootLength$1(part1) > 0 && !t1.isRootRelative$1(part1); if (t1) return part1; t1 = this._context$_current; return this.join$8(0, t1 == null ? A.current() : t1, part1, part2, part3, part4, part5, part6, part7); }, absolute$1($receiver, part1) { return this.absolute$7($receiver, part1, null, null, null, null, null, null); }, dirname$1(path) { var t1, t2, parsed = A.ParsedPath_ParsedPath$parse(path, this.style); parsed.removeTrailingSeparators$0(); t1 = parsed.parts; t2 = t1.length; if (t2 === 0) { t1 = parsed.root; return t1 == null ? "." : t1; } if (t2 === 1) { t1 = parsed.root; return t1 == null ? "." : t1; } B.JSArray_methods.removeLast$0(t1); parsed.separators.pop(); parsed.removeTrailingSeparators$0(); return parsed.toString$0(0); }, join$8(_, part1, part2, part3, part4, part5, part6, part7, part8) { var parts = A._setArrayType([part1, part2, part3, part4, part5, part6, part7, part8], type$.JSArray_nullable_String); A._validateArgList("join", parts); return this.joinAll$1(new A.WhereTypeIterable(parts, type$.WhereTypeIterable_String)); }, join$2($receiver, part1, part2) { return this.join$8($receiver, part1, part2, null, null, null, null, null, null); }, joinAll$1(parts) { var t1, t2, t3, needsSeparator, isAbsoluteAndNotRootRelative, t4, t5, parsed, path; for (t1 = parts.get$iterator(parts), t2 = new A.WhereIterator(t1, new A.Context_joinAll_closure(), parts.$ti._eval$1("WhereIterator")), t3 = this.style, needsSeparator = false, isAbsoluteAndNotRootRelative = false, t4 = ""; t2.moveNext$0();) { t5 = t1.get$current(t1); if (t3.isRootRelative$1(t5) && isAbsoluteAndNotRootRelative) { parsed = A.ParsedPath_ParsedPath$parse(t5, t3); path = t4.charCodeAt(0) == 0 ? t4 : t4; t4 = B.JSString_methods.substring$2(path, 0, t3.rootLength$2$withDrive(path, true)); parsed.root = t4; if (t3.needsSeparator$1(t4)) parsed.separators[0] = t3.get$separator(); t4 = parsed.toString$0(0); } else if (t3.rootLength$1(t5) > 0) { isAbsoluteAndNotRootRelative = !t3.isRootRelative$1(t5); t4 = A.S(t5); } else { if (!(t5.length !== 0 && t3.containsSeparator$1(t5[0]))) if (needsSeparator) t4 += t3.get$separator(); t4 += t5; } needsSeparator = t3.needsSeparator$1(t5); } return t4.charCodeAt(0) == 0 ? t4 : t4; }, split$1(_, path) { var parsed = A.ParsedPath_ParsedPath$parse(path, this.style), t1 = parsed.parts, t2 = A._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); t2 = A.List_List$of(new A.WhereIterable(t1, new A.Context_split_closure(), t2), true, t2._eval$1("Iterable.E")); parsed.parts = t2; t1 = parsed.root; if (t1 != null) B.JSArray_methods.insert$2(t2, 0, t1); return parsed.parts; }, normalize$1(_, path) { var parsed; if (!this._needsNormalization$1(path)) return path; parsed = A.ParsedPath_ParsedPath$parse(path, this.style); parsed.normalize$0(0); return parsed.toString$0(0); }, _needsNormalization$1(path) { var i, start, previous, t2, t3, previousPrevious, codeUnit, t4, t1 = this.style, root = t1.rootLength$1(path); if (root !== 0) { if (t1 === $.$get$Style_windows()) for (i = 0; i < root; ++i) if (B.JSString_methods._codeUnitAt$1(path, i) === 47) return true; start = root; previous = 47; } else { start = 0; previous = null; } for (t2 = new A.CodeUnits(path)._string, t3 = t2.length, i = start, previousPrevious = null; i < t3; ++i, previousPrevious = previous, previous = codeUnit) { codeUnit = B.JSString_methods.codeUnitAt$1(t2, i); if (t1.isSeparator$1(codeUnit)) { if (t1 === $.$get$Style_windows() && codeUnit === 47) return true; if (previous != null && t1.isSeparator$1(previous)) return true; if (previous === 46) t4 = previousPrevious == null || previousPrevious === 46 || t1.isSeparator$1(previousPrevious); else t4 = false; if (t4) return true; } } if (previous == null) return true; if (t1.isSeparator$1(previous)) return true; if (previous === 46) t1 = previousPrevious == null || t1.isSeparator$1(previousPrevious) || previousPrevious === 46; else t1 = false; if (t1) return true; return false; }, relative$1(path) { var from, fromParsed, pathParsed, t3, _this = this, _s26_ = 'Unable to find a path to "', t1 = _this.style, t2 = t1.rootLength$1(path); if (t2 <= 0) return _this.normalize$1(0, path); t2 = _this._context$_current; from = t2 == null ? A.current() : t2; if (t1.rootLength$1(from) <= 0 && t1.rootLength$1(path) > 0) return _this.normalize$1(0, path); if (t1.rootLength$1(path) <= 0 || t1.isRootRelative$1(path)) path = _this.absolute$1(0, path); if (t1.rootLength$1(path) <= 0 && t1.rootLength$1(from) > 0) throw A.wrapException(A.PathException$(_s26_ + path + '" from "' + A.S(from) + '".')); fromParsed = A.ParsedPath_ParsedPath$parse(from, t1); fromParsed.normalize$0(0); pathParsed = A.ParsedPath_ParsedPath$parse(path, t1); pathParsed.normalize$0(0); t2 = fromParsed.parts; if (t2.length !== 0 && J.$eq$(t2[0], ".")) return pathParsed.toString$0(0); t2 = fromParsed.root; t3 = pathParsed.root; if (t2 != t3) t2 = t2 == null || t3 == null || !t1.pathsEqual$2(t2, t3); else t2 = false; if (t2) return pathParsed.toString$0(0); while (true) { t2 = fromParsed.parts; if (t2.length !== 0) { t3 = pathParsed.parts; t2 = t3.length !== 0 && t1.pathsEqual$2(t2[0], t3[0]); } else t2 = false; if (!t2) break; B.JSArray_methods.removeAt$1(fromParsed.parts, 0); B.JSArray_methods.removeAt$1(fromParsed.separators, 1); B.JSArray_methods.removeAt$1(pathParsed.parts, 0); B.JSArray_methods.removeAt$1(pathParsed.separators, 1); } t2 = fromParsed.parts; if (t2.length !== 0 && J.$eq$(t2[0], "..")) throw A.wrapException(A.PathException$(_s26_ + path + '" from "' + A.S(from) + '".')); t2 = type$.String; B.JSArray_methods.insertAll$2(pathParsed.parts, 0, A.List_List$filled(fromParsed.parts.length, "..", false, t2)); t3 = pathParsed.separators; t3[0] = ""; B.JSArray_methods.insertAll$2(t3, 1, A.List_List$filled(fromParsed.parts.length, t1.get$separator(), false, t2)); t1 = pathParsed.parts; t2 = t1.length; if (t2 === 0) return "."; if (t2 > 1 && J.$eq$(B.JSArray_methods.get$last(t1), ".")) { B.JSArray_methods.removeLast$0(pathParsed.parts); t1 = pathParsed.separators; t1.pop(); t1.pop(); t1.push(""); } pathParsed.root = ""; pathParsed.removeTrailingSeparators$0(); return pathParsed.toString$0(0); }, prettyUri$1(uri) { var path, rel, _this = this, typedUri = A._parseUri(uri); if (typedUri.get$scheme() === "file" && _this.style == $.$get$Style_url()) return typedUri.toString$0(0); else if (typedUri.get$scheme() !== "file" && typedUri.get$scheme() !== "" && _this.style != $.$get$Style_url()) return typedUri.toString$0(0); path = _this.normalize$1(0, _this.style.pathFromUri$1(A._parseUri(typedUri))); rel = _this.relative$1(path); return _this.split$1(0, rel).length > _this.split$1(0, path).length ? path : rel; } }; A.Context_joinAll_closure.prototype = { call$1(part) { return part !== ""; }, $signature: 52 }; A.Context_split_closure.prototype = { call$1(part) { return part.length !== 0; }, $signature: 52 }; A._validateArgList_closure.prototype = { call$1(arg) { return arg == null ? "null" : '"' + arg + '"'; }, $signature: 2836 }; A.InternalStyle.prototype = { getRoot$1(path) { var $length = this.rootLength$1(path); if ($length > 0) return J.substring$2$s(path, 0, $length); return this.isRootRelative$1(path) ? path[0] : null; }, pathsEqual$2(path1, path2) { return path1 == path2; } }; A.ParsedPath.prototype = { get$basename() { var _this = this, t1 = type$.String, copy = new A.ParsedPath(_this.style, _this.root, _this.isRootRelative, A.List_List$from(_this.parts, true, t1), A.List_List$from(_this.separators, true, t1)); copy.removeTrailingSeparators$0(); t1 = copy.parts; if (t1.length === 0) { t1 = _this.root; return t1 == null ? "" : t1; } return B.JSArray_methods.get$last(t1); }, removeTrailingSeparators$0() { var t1, t2, _this = this; while (true) { t1 = _this.parts; if (!(t1.length !== 0 && J.$eq$(B.JSArray_methods.get$last(t1), ""))) break; B.JSArray_methods.removeLast$0(_this.parts); _this.separators.pop(); } t1 = _this.separators; t2 = t1.length; if (t2 !== 0) t1[t2 - 1] = ""; }, normalize$0(_) { var t1, t2, leadingDoubles, _i, part, t3, _this = this, newParts = A._setArrayType([], type$.JSArray_String); for (t1 = _this.parts, t2 = t1.length, leadingDoubles = 0, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { part = t1[_i]; t3 = J.getInterceptor$(part); if (!(t3.$eq(part, ".") || t3.$eq(part, ""))) if (t3.$eq(part, "..")) if (newParts.length !== 0) newParts.pop(); else ++leadingDoubles; else newParts.push(part); } if (_this.root == null) B.JSArray_methods.insertAll$2(newParts, 0, A.List_List$filled(leadingDoubles, "..", false, type$.String)); if (newParts.length === 0 && _this.root == null) newParts.push("."); _this.parts = newParts; t1 = _this.style; _this.separators = A.List_List$filled(newParts.length + 1, t1.get$separator(), true, type$.String); t2 = _this.root; if (t2 == null || newParts.length === 0 || !t1.needsSeparator$1(t2)) _this.separators[0] = ""; t2 = _this.root; if (t2 != null && t1 === $.$get$Style_windows()) { t2.toString; _this.root = A.stringReplaceAllUnchecked(t2, "/", "\\"); } _this.removeTrailingSeparators$0(); }, toString$0(_) { var i, _this = this, t1 = _this.root; t1 = t1 != null ? t1 : ""; for (i = 0; i < _this.parts.length; ++i) t1 = t1 + A.S(_this.separators[i]) + A.S(_this.parts[i]); t1 += A.S(B.JSArray_methods.get$last(_this.separators)); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A.PathException.prototype = { toString$0(_) { return "PathException: " + this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A.Style.prototype = { toString$0(_) { return this.get$name(this); } }; A.PosixStyle.prototype = { containsSeparator$1(path) { return B.JSString_methods.contains$1(path, "/"); }, isSeparator$1(codeUnit) { return codeUnit === 47; }, needsSeparator$1(path) { var t1 = path.length; return t1 !== 0 && B.JSString_methods.codeUnitAt$1(path, t1 - 1) !== 47; }, rootLength$2$withDrive(path, withDrive) { if (path.length !== 0 && B.JSString_methods._codeUnitAt$1(path, 0) === 47) return 1; return 0; }, rootLength$1(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1(path) { return false; }, pathFromUri$1(uri) { var t1; if (uri.get$scheme() === "" || uri.get$scheme() === "file") { t1 = uri.get$path(uri); return A._Uri__uriDecode(t1, 0, t1.length, B.C_Utf8Codec, false); } throw A.wrapException(A.ArgumentError$("Uri " + uri.toString$0(0) + " must have scheme 'file:'.", null)); }, get$name() { return "posix"; }, get$separator() { return "/"; } }; A.UrlStyle.prototype = { containsSeparator$1(path) { return B.JSString_methods.contains$1(path, "/"); }, isSeparator$1(codeUnit) { return codeUnit === 47; }, needsSeparator$1(path) { var t1 = path.length; if (t1 === 0) return false; if (B.JSString_methods.codeUnitAt$1(path, t1 - 1) !== 47) return true; return B.JSString_methods.endsWith$1(path, "://") && this.rootLength$1(path) === t1; }, rootLength$2$withDrive(path, withDrive) { var i, codeUnit, index, t2, t1 = path.length; if (t1 === 0) return 0; if (B.JSString_methods._codeUnitAt$1(path, 0) === 47) return 1; for (i = 0; i < t1; ++i) { codeUnit = B.JSString_methods._codeUnitAt$1(path, i); if (codeUnit === 47) return 0; if (codeUnit === 58) { if (i === 0) return 0; index = B.JSString_methods.indexOf$2(path, "/", B.JSString_methods.startsWith$2(path, "//", i + 1) ? i + 3 : i); if (index <= 0) return t1; if (!withDrive || t1 < index + 3) return index; if (!B.JSString_methods.startsWith$1(path, "file://")) return index; if (!A.isDriveLetter(path, index + 1)) return index; t2 = index + 3; return t1 === t2 ? t2 : index + 4; } } return 0; }, rootLength$1(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1(path) { return path.length !== 0 && B.JSString_methods._codeUnitAt$1(path, 0) === 47; }, pathFromUri$1(uri) { return uri.toString$0(0); }, get$name() { return "url"; }, get$separator() { return "/"; } }; A.WindowsStyle.prototype = { containsSeparator$1(path) { return B.JSString_methods.contains$1(path, "/"); }, isSeparator$1(codeUnit) { return codeUnit === 47 || codeUnit === 92; }, needsSeparator$1(path) { var t1 = path.length; if (t1 === 0) return false; t1 = B.JSString_methods.codeUnitAt$1(path, t1 - 1); return !(t1 === 47 || t1 === 92); }, rootLength$2$withDrive(path, withDrive) { var t2, index, t1 = path.length; if (t1 === 0) return 0; t2 = B.JSString_methods._codeUnitAt$1(path, 0); if (t2 === 47) return 1; if (t2 === 92) { if (t1 < 2 || B.JSString_methods._codeUnitAt$1(path, 1) !== 92) return 1; index = B.JSString_methods.indexOf$2(path, "\\", 2); if (index > 0) { index = B.JSString_methods.indexOf$2(path, "\\", index + 1); if (index > 0) return index; } return t1; } if (t1 < 3) return 0; if (!A.isAlphabetic(t2)) return 0; if (B.JSString_methods._codeUnitAt$1(path, 1) !== 58) return 0; t1 = B.JSString_methods._codeUnitAt$1(path, 2); if (!(t1 === 47 || t1 === 92)) return 0; return 3; }, rootLength$1(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1(path) { return this.rootLength$1(path) === 1; }, pathFromUri$1(uri) { var path, t1; if (uri.get$scheme() !== "" && uri.get$scheme() !== "file") throw A.wrapException(A.ArgumentError$("Uri " + uri.toString$0(0) + " must have scheme 'file:'.", null)); path = uri.get$path(uri); if (uri.get$host(uri) === "") { if (path.length >= 3 && B.JSString_methods.startsWith$1(path, "/") && A.isDriveLetter(path, 1)) path = B.JSString_methods.replaceFirst$2(path, "/", ""); } else path = "\\\\" + uri.get$host(uri) + path; t1 = A.stringReplaceAllUnchecked(path, "/", "\\"); return A._Uri__uriDecode(t1, 0, t1.length, B.C_Utf8Codec, false); }, codeUnitsEqual$2(codeUnit1, codeUnit2) { var upperCase1; if (codeUnit1 === codeUnit2) return true; if (codeUnit1 === 47) return codeUnit2 === 92; if (codeUnit1 === 92) return codeUnit2 === 47; if ((codeUnit1 ^ codeUnit2) !== 32) return false; upperCase1 = codeUnit1 | 32; return upperCase1 >= 97 && upperCase1 <= 122; }, pathsEqual$2(path1, path2) { var t1, i; if (path1 == path2) return true; t1 = path1.length; if (t1 !== path2.length) return false; for (i = 0; i < t1; ++i) if (!this.codeUnitsEqual$2(B.JSString_methods._codeUnitAt$1(path1, i), B.JSString_methods._codeUnitAt$1(path2, i))) return false; return true; }, get$name() { return "windows"; }, get$separator() { return "\\"; } }; A.MissingPlatformDirectoryException.prototype = { toString$0(_) { return "MissingPlatformDirectoryException(" + this.message + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.PathProviderPlatform.prototype = {}; A.MethodChannelPathProvider.prototype = {}; A.PdfPageFormat.prototype = { toString$0(_) { var _this = this; return A.getRuntimeType(_this).toString$0(0) + " " + A.S(_this.width) + "x" + A.S(_this.height) + " margins:" + A.S(_this.marginLeft) + ", " + A.S(_this.marginTop) + ", " + A.S(_this.marginRight) + ", " + A.S(_this.marginBottom); }, $eq(_, other) { var _this = this; if (other == null) return false; if (!(other instanceof A.PdfPageFormat)) return false; return other.width == _this.width && other.height == _this.height && other.marginLeft == _this.marginLeft && other.marginTop == _this.marginTop && other.marginRight == _this.marginRight && other.marginBottom == _this.marginBottom; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.toString$0(0)); } }; A.PermissionHandlerPlatform.prototype = {}; A.PermissionStatus0.prototype = { toString$0(_) { return "PermissionStatus." + this._core$_name; } }; A.PermissionWithService.prototype = {}; A.Permission.prototype = { toString$0(_) { return "Permission." + B.List_qhE[this.value]; }, $eq(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== A.getRuntimeType(this)) return false; return other instanceof A.Permission && other.value === this.value; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(this.value); }, get$value(receiver) { return this.value; } }; A.MethodChannelPermissionHandler.prototype = { openAppSettings$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, wasOpened; var $async$openAppSettings$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.MethodChannel_KDg._invokeMethod$1$3$arguments$missingOk("openAppSettings", null, false, type$.dynamic), $async$openAppSettings$0); case 3: // returning from await. wasOpened = $async$result; $async$returnValue = wasOpened == null ? false : wasOpened; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$openAppSettings$0, $async$completer); }, requestPermissions$1(permissions) { return this.requestPermissions$body$MethodChannelPermissionHandler(permissions); }, requestPermissions$body$MethodChannelPermissionHandler(permissions) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_Permission_PermissionStatus), $async$returnValue, t1, $async$temp1, $async$temp2; var $async$requestPermissions$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.int; $async$temp1 = A; $async$temp2 = A; $async$goto = 3; return A._asyncAwait(B.MethodChannel_KDg._invokeMethod$1$3$arguments$missingOk("requestPermissions", A.encodePermissions(permissions), false, type$.dynamic), $async$requestPermissions$1); case 3: // returning from await. $async$returnValue = $async$temp1.decodePermissionRequestResult($async$temp2.LinkedHashMap_LinkedHashMap$from($async$result, t1, t1)); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$requestPermissions$1, $async$completer); } }; A.decodePermissionRequestResult_closure.prototype = { call$2(key, value) { return new A.MapEntry(B.List_U8N[key], [B.PermissionStatus_0, B.PermissionStatus_1, B.PermissionStatus_2, B.PermissionStatus_3, B.PermissionStatus_4][value], type$.MapEntry_Permission_PermissionStatus); }, $signature: 2837 }; A.encodePermissions_closure.prototype = { call$1(it) { return it.value; }, $signature: 2838 }; A.LocalPlatform.prototype = { get$executable() { return A.Platform_executable(); }, get$resolvedExecutable() { return A.Platform_resolvedExecutable(); }, get$script() { return A.Platform_script(); }, get$executableArguments() { return A.Platform_executableArguments(); }, get$stdinSupportsAnsi() { A.IOOverrides_current(); var t1 = $.$get$_stdin(); return t1.get$supportsAnsiEscapes(); }, get$stdoutSupportsAnsi() { return A.stdout().get$supportsAnsiEscapes(); }, get$localeName() { return A.Platform_localeName(); } }; A.Platform0.prototype = { toJson$0() { var _this = this; A.LinkedHashMap_LinkedHashMap$_literal(["numberOfProcessors", $.$get$Platform__numberOfProcessors(), "pathSeparator", $.$get$Platform__pathSeparator(), "operatingSystem", $.$get$Platform__operatingSystem(), "operatingSystemVersion", $.$get$Platform__operatingSystemVersion(), "localHostname", $.$get$Platform__localHostname(), "environment", A._Platform_environment(), "executable", _this.get$executable(), "resolvedExecutable", _this.get$resolvedExecutable(), "script", _this.get$script().toString$0(0), "executableArguments", _this.get$executableArguments(), "packageConfig", void 1, "version", void 1, "stdinSupportsAnsi", _this.get$stdinSupportsAnsi(), "stdoutSupportsAnsi", _this.get$stdoutSupportsAnsi(), "localeName", _this.get$localeName()], type$.String, type$.dynamic); return void 1; } }; A.PlatformInterface.prototype = {}; A._registerFactory_closure.prototype = { call$1(viewId) { var htmlElement = document.createElement("div"), t1 = htmlElement.style; t1.width = "100%"; t1 = htmlElement.style; t1.height = "100%"; if (this.debug) { t1 = htmlElement.style; t1.backgroundColor = "rgba(255, 0, 0, .5)"; } return htmlElement; }, $signature: 757 }; A.PointerInterceptor.prototype = { build$1(_, context) { return new A.Stack(B.Alignment_0_0, null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Positioned$fill(new A.HtmlElementView("__webPointerInterceptorViewType__", null)), this.child], type$.JSArray_Widget), null); } }; A.PrintingPlugin.prototype = { _initPlugin$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t2, t3, t4, script, t5, t1; var $async$_initPlugin$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._loading; $async$goto = 2; return A._asyncAwait(t1.acquire$0(), $async$_initPlugin$0); case 2: // returning from await. t2 = $.$get$_context(); t3 = type$.JSArray_String; $async$goto = !t2.callMethod$2("eval", A._setArrayType([string$.typeof], t3)) ? 3 : 4; break; case 3: // then t4 = document; script = t4.createElement("script"); script.type = "text/javascript"; script.async = true; script.src = "https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.13.216/pdf.min.js"; t4.head.appendChild(script); t4 = new A._ElementEventStreamImpl(script, "load", false, type$._ElementEventStreamImpl_legacy_Event); $async$goto = 5; return A._asyncAwait(t4.get$first(t4), $async$_initPlugin$0); case 5: // returning from await. $async$goto = t2.$index(0, "pdfjsLib") == null ? 6 : 7; break; case 6: // then t4 = t2.$index(0, "require"); if (typeof t4 == "number" || typeof t4 == "string" || A._isBool(t4) || t4 == null) A.throwExpression(A.ArgumentError$("object cannot be a num, string, bool, or null", null)); t5 = type$.String; A._wrapToDart(A._convertToJS(t4)).callMethod$2("config", [A.JsObject_JsObject$jsify(A.LinkedHashMap_LinkedHashMap$_literal(["paths", A.LinkedHashMap_LinkedHashMap$_literal(["pdfjs-dist/build/pdf", "https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.13.216/pdf.min", "pdfjs-dist/build/pdf.worker", "https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.13.216/pdf.worker.min"], t5, t5)], t5, type$.Map_String_String))]); t5 = new A._Future($.Zone__current, type$._Future_void); t2.callMethod$2("require", [A.JsObject_JsObject$jsify(A._setArrayType(["pdfjs-dist/build/pdf", "pdfjs-dist/build/pdf.worker"], t3)), new A.PrintingPlugin__initPlugin_closure(new A._AsyncCompleter(t5, type$._AsyncCompleter_void))]); $async$goto = 8; return A._asyncAwait(t5, $async$_initPlugin$0); case 8: // returning from await. case 7: // join J.$indexSet$ax(J.$index$asx(t2.$index(0, "pdfjsLib"), "GlobalWorkerOptions"), "workerSrc", "https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.13.216/pdf.worker.min.js"); case 4: // join t1.release$0(0); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_initPlugin$0, $async$completer); }, info$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PrintingInfo), $async$returnValue, $async$self = this; var $async$info$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait($async$self._initPlugin$0(), $async$info$0); case 3: // returning from await. $async$returnValue = new A.PrintingInfo(false, false, true, false, false, true, $.$get$_context().callMethod$2("eval", A._setArrayType([string$.typeof], type$.JSArray_String))); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$info$0, $async$completer); }, layoutPdf$6(printer, onLayout, $name, format, dynamicLayout, usePrinterSettings) { return this.layoutPdf$body$PrintingPlugin(printer, onLayout, $name, format, true, false); }, layoutPdf$body$PrintingPlugin(printer, onLayout, $name, format, dynamicLayout, usePrinterSettings) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, s, exception, t2, userAgent, t3, isSafari, isMobile, isFirefox, pdfUrl, doc, script, frame, stopWatch, load, res, t1, result, $async$exception, $async$temp1; var $async$layoutPdf$6 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = {}; result = A._Cell$named("result"); $async$handler = 4; $async$temp1 = result; $async$goto = 7; return A._asyncAwait(onLayout.call$1(format), $async$layoutPdf$6); case 7: // returning from await. $async$temp1.__late_helper$_value = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); s = A.getTraceFromException($async$exception); t1.collector = null; t1 = A.ErrorDescription$("while generating a PDF"); A.FlutterError_reportError(new A.FlutterErrorDetails(e, s, "printing", t1, new A.PrintingPlugin_layoutPdf_closure(), null, false)); throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t2 = result._readLocal$0(); t2.toString; if (J.get$length$asx(t2) === 0) { $async$returnValue = false; // goto return $async$goto = 1; break; } t2 = $.$get$_context(); userAgent = J.$index$asx(t2.$index(0, "navigator"), "userAgent"); t3 = t2.$index(0, "chrome"); isSafari = t2.$index(0, "safari") != null && !J.contains$1$asx(userAgent, A.RegExp_RegExp("Version/14\\.1\\.", true, false, false, false)); isMobile = J.contains$1$asx(userAgent, "Mobile"); isFirefox = B.JSString_methods.contains$1(userAgent, "Firefox"); $async$goto = (t3 != null || isSafari || isFirefox) && !isMobile ? 8 : 9; break; case 8: // then t3 = new A._Future($.Zone__current, type$._Future_bool); pdfUrl = (self.URL || self.webkitURL).createObjectURL(A.Blob_Blob(A._setArrayType([result._readLocal$0()], type$.JSArray_Uint8List), "application/pdf")); doc = t2.$index(0, "document"); script = doc.getElementById("__net_nfet_printing_s__"); if (script == null) script = doc.createElement("script"); script.setAttribute("id", "__net_nfet_printing_s__"); script.setAttribute("type", "text/javascript"); script.innerText = "function __net_nfet_printing___print(){var f=document.getElementById('__net_nfet_printing__');f.focus();f.contentWindow.print();}"; doc.body.appendChild(script); frame = doc.getElementById("__net_nfet_printing__"); if (frame == null) frame = doc.createElement("iframe"); if (isFirefox) frame.setAttribute("style", "width: 1px; height: 100px; position: fixed; left: 0; top: 0; opacity: 0; border-width: 0; margin: 0; padding: 0"); else frame.setAttribute("style", "visibility: hidden; height: 0; width: 0; position: absolute;"); frame.setAttribute("id", "__net_nfet_printing__"); frame.setAttribute("src", pdfUrl); stopWatch = new A.Stopwatch(); $.$get$Stopwatch__frequency(); t1.load = null; load = new A.PrintingPlugin_layoutPdf_closure0(t1, $async$self, frame, isSafari, stopWatch, new A._AsyncCompleter(t3, type$._AsyncCompleter_bool), result); t1.load = load; t1 = J.getInterceptor$x(frame); t1.addEventListener$2(frame, "load", load); doc.body.appendChild(frame); $async$goto = 10; return A._asyncAwait(t3, $async$layoutPdf$6); case 10: // returning from await. res = $async$result; if (stopWatch.get$elapsedMilliseconds() > 1000) { t1.remove$0(frame); J.remove$0$ax(script); } $async$returnValue = res; // goto return $async$goto = 1; break; case 9: // join $async$returnValue = $async$self._getPdf$1(result._readLocal$0()); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$layoutPdf$6, $async$completer); }, sharePdf$6(bytes, filename, bounds, subject, body, emails) { return this.sharePdf$body$PrintingPlugin(bytes, filename, bounds, subject, body, emails); }, sharePdf$body$PrintingPlugin(bytes, filename, bounds, subject, body, emails) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$sharePdf$6 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self._getPdf$2$filename(bytes, filename); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$sharePdf$6, $async$completer); }, _getPdf$2$filename(bytes, filename) { return this._getPdf$body$PrintingPlugin(bytes, filename); }, _getPdf$1(bytes) { return this._getPdf$2$filename(bytes, null); }, _getPdf$body$PrintingPlugin(bytes, filename) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1, pdfUrl, doc, link; var $async$_getPdf$2$filename = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start pdfUrl = (self.URL || self.webkitURL).createObjectURL(A.Blob_Blob(A._setArrayType([bytes], type$.JSArray_Uint8List), "application/pdf")); doc = $.$get$_context().$index(0, "document"); link = A.AnchorElement_AnchorElement(pdfUrl); if (filename != null) link.download = filename; else link.target = "_blank"; t1 = doc.body; if (t1 != null) t1.appendChild(link); link.click(); B.AnchorElement_methods.remove$0(link); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_getPdf$2$filename, $async$completer); }, raster$3($document, pages, dpi) { return this.raster$body$PrintingPlugin($document, pages, dpi); }, raster$body$PrintingPlugin($document, pages, dpi) { var $async$raster$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncStarHelper($async$self._initPlugin$0(), $async$raster$3, $async$controller); case 3: // returning from await. t1 = A.Settings$(null); t1.data = $document; $async$goto = 4; return A._asyncStarHelper(A.promiseToFuture(J.get$promise$x(self.pdfjsLib.getDocument(t1)), type$.PdfJsDoc), $async$raster$3, $async$controller); case 4: // returning from await. d = $async$result; t1 = J.getInterceptor$x(d); numPages = t1.get$numPages(d); canvas = J.createElement$1$x($.$get$_context().$index(0, "document"), "canvas"); context = type$.nullable_CanvasRenderingContext2D._as((canvas && B.CanvasElement_methods).getContext$1(canvas, "2d")); t2 = J.get$iterator$ax(pages == null ? A.Iterable_Iterable$generate(numPages, new A.PrintingPlugin_raster_closure(), type$.int) : pages), t3 = type$.legacy_ProgressEvent, t4 = type$.PdfJsPage, t5 = type$.void, t6 = type$._Future_void, t7 = type$._AsyncCompleter_void; case 5: // for condition if (!t2.moveNext$0()) { // goto after for $async$goto = 6; break; } $async$goto = 7; return A._asyncStarHelper(A.promiseToFuture(t1.getPage$1(d, t2.get$current(t2) + 1), t4), $async$raster$3, $async$controller); case 7: // returning from await. page = $async$result; t8 = A.Settings$(null); t8.scale = dpi / 72; t9 = J.getInterceptor$x(page); viewport = t9.getViewport$1(page, t8); t8 = J.getInterceptor$x(viewport); canvas.height = J.toInt$0$n(t8.get$height(viewport)); canvas.width = J.toInt$0$n(t8.get$width(viewport)); renderContext = A.Settings$(null); context.toString; renderContext.canvasContext = context; renderContext.viewport = viewport; $async$goto = 8; return A._asyncStarHelper(A.promiseToFuture(J.get$promise$x(t9.render$1(page, renderContext)), t5), $async$raster$3, $async$controller); case 8: // returning from await. t9 = new A._Future($.Zone__current, t6); $async$goto = 9; return A._asyncStarHelper(B.CanvasElement_methods.toBlob$0(canvas), $async$raster$3, $async$controller); case 9: // returning from await. blob = $async$result; data = new A._CopyingBytesBuilder($.$get$_CopyingBytesBuilder__emptyList()); r = new FileReader(); r.readAsArrayBuffer(blob); A._EventStreamSubscription$(r, "loadend", new A.PrintingPlugin_raster_closure0(data, r, new A._AsyncCompleter(t9, t7)), false, t3); $async$goto = 10; return A._asyncStarHelper(t9, $async$raster$3, $async$controller); case 10: // returning from await. t8 = canvas.width; t8.toString; t9 = canvas.height; t9.toString; t10 = data.toBytes$0(); $async$goto = 11; $async$nextWhenCanceled = [1]; return A._asyncStarHelper(A._IterationMarker_yieldSingle(new A._WebPdfRaster(t10, t8, t9, new Uint8Array(0))), $async$raster$3, $async$controller); case 11: // after yield // goto for condition $async$goto = 5; break; case 6: // after for case 1: // return return A._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return A._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = A._makeAsyncStarStreamController($async$raster$3, type$.PdfRaster), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, d, numPages, canvas, context, t2, t3, t4, t5, t6, t7, page, t8, t9, viewport, renderContext, blob, data, r, t10; return A._streamOfController($async$controller); } }; A.PrintingPlugin__initPlugin_closure.prototype = { call$1(app) { $.$get$_context().$indexSet(0, "pdfjsLib", app); this.completer.complete$0(0); }, $signature: 7 }; A.PrintingPlugin_layoutPdf_closure.prototype = { call$1(input) { return input; }, $signature: 494 }; A.PrintingPlugin_layoutPdf_closure0.prototype = { call$1($event) { var _this = this; J.removeEventListener$2$x(_this.frame, "load", _this._box_0.load); A.Timer_Timer(A.Duration$(0, 0, 0, _this.isSafari ? 500 : 0, 0, 0), new A.PrintingPlugin_layoutPdf__closure(_this.$this, _this.stopWatch, _this.completer, _this.result)); }, $signature: 80 }; A.PrintingPlugin_layoutPdf__closure.prototype = { call$0() { var e, t1, exception, _this = this; try { t1 = _this.stopWatch; t1.start$0(0); $.$get$_context().callMethod$1("__net_nfet_printing___print"); if (t1._stop == null) t1._stop = $.Primitives_timerTicks.call$0(); _this.completer.complete$1(0, true); } catch (exception) { e = A.unwrapException(exception); _this.completer.complete$1(0, _this.$this._getPdf$1(_this.result._readLocal$0())); } }, $signature: 0 }; A.PrintingPlugin_raster_closure.prototype = { call$1(index) { return index; }, $signature: 121 }; A.PrintingPlugin_raster_closure0.prototype = { call$1(e) { this.data.add$1(0, type$.List_int._as(B.FileReader_methods.get$result(this.r))); this.completer.complete$0(0); }, $signature: 177 }; A._WebPdfRaster.prototype = { get$pixels() { var t1 = this._printing_web$_pixels; return t1 == null ? this._printing_web$_pixels = A.NativeUint8List_NativeUint8List$view(new A.PngDecoder().decodeImage$1(this.png).data.buffer, 0, null) : t1; }, toImage$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Image), $async$returnValue, $async$self = this, frameInfo; var $async$toImage$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 4; return A._asyncAwait(A.instantiateImageCodec($async$self.png, true, null, null), $async$toImage$0); case 4: // returning from await. $async$goto = 3; return A._asyncAwait($async$result.getNextFrame$0(), $async$toImage$0); case 3: // returning from await. frameInfo = $async$result; $async$returnValue = frameInfo.get$image(frameInfo); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$toImage$0, $async$completer); } }; A.PrintingPlatform.prototype = {}; A.MethodChannelPrinting.prototype = { info$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PrintingInfo), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], result, e, exception, t1, t2, t3, t4, t5, t6, t7, t8, $async$exception; var $async$info$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start B.MethodChannel_mHe.setMethodCallHandler$1(A.method_channel_MethodChannelPrinting__handleMethod$closure()); result = null; $async$handler = 4; $async$goto = 7; return A._asyncAwait(B.MethodChannel_mHe._invokeMethod$1$3$arguments$missingOk("printingInfo", A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), false, type$.Map_dynamic_dynamic), $async$info$0); case 7: // returning from await. result = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); $async$returnValue = B.PrintingInfo_XjJ; // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = result; t1.toString; t2 = J.getInterceptor$asx(t1); t3 = t2.$index(t1, "directPrint"); if (t3 == null) t3 = false; t4 = t2.$index(t1, "dynamicLayout"); if (t4 == null) t4 = false; t5 = t2.$index(t1, "canPrint"); if (t5 == null) t5 = false; t6 = t2.$index(t1, "canConvertHtml"); if (t6 == null) t6 = false; t7 = t2.$index(t1, "canListPrinters"); if (t7 == null) t7 = false; t8 = t2.$index(t1, "canShare"); if (t8 == null) t8 = false; t1 = t2.$index(t1, "canRaster"); $async$returnValue = new A.PrintingInfo(t3, t4, t5, t6, t7, t8, t1 == null ? false : t1); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$info$0, $async$completer); }, layoutPdf$6(printer, onLayout, $name, format, dynamicLayout, usePrinterSettings) { return this.layoutPdf$body$MethodChannelPrinting(printer, onLayout, $name, format, true, false); }, layoutPdf$body$MethodChannelPrinting(printer, onLayout, $name, format, dynamicLayout, usePrinterSettings) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], t2, job, t1; var $async$layoutPdf$6 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start job = $.$get$MethodChannelPrinting__printJobs().add$2$onCompleted$onLayout(0, new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_bool), type$._AsyncCompleter_bool), onLayout); t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t1.$indexSet(0, "name", $name); t1.$indexSet(0, "job", job.index); t1.$indexSet(0, "width", format.width); t1.$indexSet(0, "height", format.height); t1.$indexSet(0, "marginLeft", format.marginLeft); t1.$indexSet(0, "marginTop", format.marginTop); t1.$indexSet(0, "marginRight", format.marginRight); t1.$indexSet(0, "marginBottom", format.marginBottom); t1.$indexSet(0, "dynamic", true); t1.$indexSet(0, "usePrinterSettings", false); $async$goto = 3; return A._asyncAwait(B.MethodChannel_mHe._invokeMethod$1$3$arguments$missingOk("printPdf", t1, false, type$.int), $async$layoutPdf$6); case 3: // returning from await. $async$handler = 4; $async$goto = 7; return A._asyncAwait(job.onCompleted.future, $async$layoutPdf$6); case 7: // returning from await. t1 = $async$result; $async$returnValue = t1; $async$next = [1]; // goto finally $async$goto = 5; break; $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; t1 = $.$get$MethodChannelPrinting__printJobs(); t2 = job.index; t1._printJobs.remove$1(0, t2); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$layoutPdf$6, $async$completer); }, sharePdf$6(bytes, filename, bounds, subject, body, emails) { return this.sharePdf$body$MethodChannelPrinting(bytes, filename, bounds, subject, body, emails); }, sharePdf$body$MethodChannelPrinting(bytes, filename, bounds, subject, body, emails) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1, t2, $async$temp1; var $async$sharePdf$6 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = bounds.left; t2 = bounds.top; $async$temp1 = J; $async$goto = 3; return A._asyncAwait(B.MethodChannel_mHe._invokeMethod$1$3$arguments$missingOk("sharePdf", A.LinkedHashMap_LinkedHashMap$_literal(["doc", new Uint8Array(A._ensureNativeList(bytes)), "name", filename, "subject", subject, "body", body, "emails", emails, "x", t1, "y", t2, "w", bounds.right - t1, "h", bounds.bottom - t2], type$.String, type$.dynamic), false, type$.int), $async$sharePdf$6); case 3: // returning from await. $async$returnValue = !$async$temp1.$eq$($async$result, 0); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$sharePdf$6, $async$completer); }, raster$3($document, pages, dpi) { var t1, job = $.$get$MethodChannelPrinting__printJobs().add$1$onPageRasterized(0, A.StreamController_StreamController(null, null, null, false, type$.PdfRaster)); B.MethodChannel_mHe._invokeMethod$1$3$arguments$missingOk("rasterPdf", A.LinkedHashMap_LinkedHashMap$_literal(["doc", new Uint8Array(A._ensureNativeList($document)), "pages", pages, "scale", dpi / 72, "job", job.index], type$.String, type$.dynamic), false, type$.void); t1 = job.onPageRasterized; t1.toString; return new A._ControllerStream(t1, A._instanceType(t1)._eval$1("_ControllerStream<1>")); } }; A.MethodChannelPrinting__handleMethod_closure.prototype = { call$1(input) { return input; }, $signature: 494 }; A.Mutex.prototype = { acquire$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$acquire$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self._mutex$_locked ? 2 : 3; break; case 2: // then t1 = new A._Future($.Zone__current, type$._Future_void); $async$self._waiting.push(new A._AsyncCompleter(t1, type$._AsyncCompleter_void)); $async$goto = 4; return A._asyncAwait(t1, $async$acquire$0); case 4: // returning from await. case 3: // join $async$self._mutex$_locked = true; // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$acquire$0, $async$completer); }, release$0(_) { var t1, t2, _i; this._mutex$_locked = false; for (t1 = this._waiting, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].complete$0(0); B.JSArray_methods.set$length(t1, 0); } }; A.PdfJs.prototype = {}; A.Settings.prototype = {}; A.PdfJsDocLoader.prototype = {}; A.PdfJsDoc.prototype = {}; A.PdfJsPage.prototype = {}; A.PdfJsViewport.prototype = {}; A.PdfJsRender.prototype = {}; A.PdfPreviewActionBounds.prototype = {}; A.PdfPreviewAction.prototype = { build$1(_, context) { var _null = null; return A.IconButton$(B.Alignment_0_0, _null, _null, true, this.icon, _null, new A.PdfPreviewAction_build_closure(this, context), B.EdgeInsets_8_8_8_8, _null, _null, _null); }, pressed$1(_, context) { return this.pressed$body$PdfPreviewAction(0, context); }, pressed$body$PdfPreviewAction(_, context) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, data; var $async$pressed$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start data = context.findAncestorWidgetOfExactType$1$0(type$.PdfPreviewController).data; $async$self.onPressed.call$3(context, data.buildDocument, A._lateReadCheck(data.__PdfPreviewData__pageFormat, "_pageFormat")); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$pressed$1, $async$completer); } }; A.PdfPreviewAction_build_closure.prototype = { call$0() { return this.$this.pressed$1(0, this.context); }, $signature: 0 }; A.PdfPrintAction.prototype = { build$1(_, context) { return new A.PdfPreviewAction(this.icon, this.get$_print(), null); }, _print$3(context, build, pageFormat) { return this._print$body$PdfPrintAction(context, build, pageFormat); }, _print$body$PdfPrintAction(context, build, pageFormat) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, result, exception, stack, t1, exception0, data, $async$exception0; var $async$_print$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start data = context.findAncestorWidgetOfExactType$1$0(type$.PdfPreviewController).data; $async$handler = 3; $async$goto = 6; return A._asyncAwait(A.Printing_layoutPdf(true, data._onComputeActualPageFormat$0(), $async$self.jobName, build, false), $async$_print$3); case 6: // returning from await. result = $async$result; if (result) { t1 = $async$self.onPrinted; if (t1 != null) t1.call$0(); } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); t1 = A.ErrorDescription$("while printing a PDF"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "printing", t1, null, null, false)); t1 = $async$self.onPrintError; if (t1 != null) t1.call$1(exception); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return A._asyncReturn(null, $async$completer); case 1: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_print$3, $async$completer); } }; A.PdfShareAction.prototype = { build$1(_, context) { return new A.PdfPreviewAction(this.icon, this.get$_share(), this.PdfPreviewActionBounds_childKey); }, _share$3(context, build, pageFormat) { return this._share$body$PdfShareAction(context, build, pageFormat); }, _share$body$PdfShareAction(context, build, pageFormat) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, topLeft, t2, bounds, bytes, referenceBox, t1; var $async$_share$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(build.call$1(pageFormat), $async$_share$3); case 2: // returning from await. bytes = $async$result; referenceBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, $async$self.PdfPreviewActionBounds_childKey).get$renderObject()); t1 = referenceBox._box$_size; t1._dx; t1._dy; topLeft = A.MatrixUtils_transformPoint(referenceBox.getTransformTo$1(0, null), new A.Offset(0, 0)); t1 = referenceBox._box$_size; t2 = t1._dx; t1 = t1._dy; bounds = A.Rect$fromPoints(topLeft, A.MatrixUtils_transformPoint(referenceBox.getTransformTo$1(0, null), new A.Offset(0 + t2, 0 + t1))); $async$goto = 3; return A._asyncAwait($.$get$PrintingPlatform__instance().sharePdf$6(bytes, $async$self.filename, bounds, null, null, null), $async$_share$3); case 3: // returning from await. if ($async$result) { t1 = $async$self.onShared; if (t1 != null) t1.call$0(); } // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_share$3, $async$completer); }, get$body() { return null; } }; A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds.prototype = {}; A.PdfPreviewData.prototype = { get$localPageFormat() { var t1, cc; $.WidgetsBinding__instance.toString; t1 = $.$get$window().platformDispatcher._configuration.locales; t1 = t1.length === 0 ? B.Locale_und_null : B.JSArray_methods.get$first(t1); cc = t1 == null ? null : t1.get$countryCode(); if (cc == null) cc = "US"; if (cc === "US" || cc === "CA" || cc === "MX") return "Letter"; return "A4"; }, _onComputeActualPageFormat$0() { return this._onComputeActualPageFormat.call$0(); } }; A.PdfPreviewController.prototype = { updateShouldNotify$1(oldWidget) { return false; } }; A.PdfPreviewCustom.prototype = { createState$0() { var _null = null; return new A.PdfPreviewCustomState(new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new A.ScrollController(0, true, _null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()), A.TransformationController$(), A._setArrayType([], type$.JSArray_PdfPreviewPage), _null, _null, 72, false, _null, B._StateLifecycle_0); }, build$1($receiver, arg0) { return this.build.call$1(arg0); } }; A.PdfPreviewCustomState.prototype = { dispose$0(_) { this.super$_PdfPreviewCustomState_State_PdfPreviewRaster$dispose(0); }, reassemble$0() { this.raster$0(); this.super$State$reassemble(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; if (J.$eq$(oldWidget.build, _this._widget.build)) t1 = !J.$eq$(_this._widget.pageFormat, oldWidget.pageFormat); else t1 = true; if (t1) { _this.updatePosition = _this.preview = null; _this.raster$0(); } _this.super$State$didUpdateWidget(oldWidget); }, didChangeDependencies$0() { var _this = this; if (!_this.infoLoaded) { _this.infoLoaded = true; $.$get$PrintingPlatform__instance().info$0().then$1$1(0, new A.PdfPreviewCustomState_didChangeDependencies_closure(_this), type$.Null); } _this.raster$0(); _this.super$State$didChangeDependencies(); }, _showError$1(error) { var t1, t2; this._widget.toString; t1 = A.ErrorWidget__stringify(error); t2 = error instanceof A.FlutterError ? error : null; return new A.ErrorWidget(t1, t2, new A.UniqueKey()); }, _createPreview$0() { var _info, _this = this, t1 = _this.PdfPreviewRaster_error; if (t1 != null) return _this._showError$1(t1); _info = _this.PdfPreviewRaster_info; if (_info != null && !_info.canRaster) return _this._showError$1("Unable to display the document"); t1 = _this.PdfPreviewRaster_pages.length; if (t1 === 0) { _this._widget.toString; return B.Center_mtF; } return A.ListView$builder(_this.scrollController, new A.PdfPreviewCustomState__createPreview_closure(_this), t1, _this._widget.padding, null, B.Axis_1, false); }, _zoomPreview$0() { var _this = this, _null = null, t1 = _this.preview; t1.toString; return A.GestureDetector$(_null, new A.InteractiveViewer(A.Center$(_this.PdfPreviewRaster_pages[t1], _null, _null), 5, _this.transformationController, _null), B.DragStartBehavior_1, false, _null, new A.PdfPreviewCustomState__zoomPreview_closure(_this), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, build$1(_, context) { var page, t1, _this = this, _null = null; if (_this.preview != null) page = _this._zoomPreview$0(); else { t1 = _this._widget.maxPageWidth; page = A.Container$(_null, _this._createPreview$0(), B.Clip_0, _null, new A.BoxConstraints(0, t1, 0, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this.updatePosition != null) A.Timer_Timer(B.Duration_0, new A.PdfPreviewCustomState_build_closure(_this)); } _this._widget.toString; t1 = A._setArrayType([B.Color_4290624957, B.Color_4293848814], type$.JSArray_Color_2); return A.Container$(B.Alignment_0_0, page, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, _null, _null, _null, new A.LinearGradient(B.Alignment_0_m1, B.Alignment_0_1, B.TileMode_0, t1, _null, _null), B.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, 1 / 0); } }; A.PdfPreviewCustomState_didChangeDependencies_closure.prototype = { call$1(_info) { var t1 = this.$this; t1.setState$1(new A.PdfPreviewCustomState_didChangeDependencies__closure(t1, _info)); }, $signature: 704 }; A.PdfPreviewCustomState_didChangeDependencies__closure.prototype = { call$0() { var t1 = this.$this; t1.PdfPreviewRaster_info = this._info; t1.raster$0(); }, $signature: 0 }; A.PdfPreviewCustomState__createPreview_closure.prototype = { call$2(context, index) { var _null = null, t1 = this.$this; return A.GestureDetector$(_null, t1.PdfPreviewRaster_pages[index], B.DragStartBehavior_1, false, _null, new A.PdfPreviewCustomState__createPreview__closure(t1, index), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2843 }; A.PdfPreviewCustomState__createPreview__closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.PdfPreviewCustomState__createPreview___closure(t1, this.index)); }, $signature: 0 }; A.PdfPreviewCustomState__createPreview___closure.prototype = { call$0() { var t1 = this.$this, t2 = B.JSArray_methods.get$single(t1.scrollController._positions)._pixels; t2.toString; t1.updatePosition = t2; t1.preview = this.index; t1.transformationController._change_notifier$_value.setIdentity$0(); }, $signature: 0 }; A.PdfPreviewCustomState__zoomPreview_closure.prototype = { call$0() { var t1 = this.$this; t1.setState$1(new A.PdfPreviewCustomState__zoomPreview__closure(t1)); }, $signature: 0 }; A.PdfPreviewCustomState__zoomPreview__closure.prototype = { call$0() { this.$this.preview = null; }, $signature: 0 }; A.PdfPreviewCustomState_build_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1.updatePosition; t2.toString; t1.scrollController.jumpTo$1(t2); t1.updatePosition = null; }, $signature: 0 }; A._PdfPreviewCustomState_State_PdfPreviewRaster.prototype = { dispose$0(_) { var t1 = this.PdfPreviewRaster__previewUpdate; if (t1 != null) t1.cancel$0(0); this.super$State$dispose(0); } }; A.PdfPreviewPage.prototype = { build$1(_, context) { var t2, scrollbarTrack, _null = null, t1 = this.page; t1.toString; t2 = A.Theme_of(context).scrollbarTheme.thickness; scrollbarTrack = t2 == null ? _null : t2.resolve$1(0, A.LinkedHashSet_LinkedHashSet$_literal([B.MaterialState_0], type$.MaterialState)); t2 = 8 + (scrollbarTrack == null ? 12 : scrollbarTrack); return A.Container$(_null, new A.AspectRatio(t1.width / t1.height, A.Image$(B.Alignment_0_0, _null, _null, _null, B.FilterQuality_1, B.BoxFit_2, _null, _null, new A.PdfRasterImage(t1), _null, _null, false, B.ImageRepeat_3, _null), _null), B.Clip_0, _null, _null, B.BoxDecoration_6H2, _null, _null, _null, new A.EdgeInsets(t2, 8, t2, 12), _null, _null, _null, _null); } }; A.PdfPreview.prototype = { createState$0() { return new A._PdfPreviewState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_PdfPreviewCustomState), B._StateLifecycle_0); } }; A._PdfPreviewState.prototype = { computeActualPageFormat$0() { var dpi, format = A._lateReadCheck(A._lateReadCheck(this.___PdfPreviewState_previewData, "previewData").__PdfPreviewData__pageFormat, "_pageFormat"), t1 = this.previewWidget, t2 = t1.get$currentState(), pages = t2 == null ? null : t2.PdfPreviewRaster_pages; if (pages == null) pages = B.List_empty20; t1 = t1.get$currentState(); dpi = t1 == null ? null : t1.PdfPreviewRaster_dpi; if (dpi == null) dpi = 72; this._widget.toString; t1 = pages.length; return t1 !== 0 ? A.PdfPageFormat$(B.JSArray_methods.get$first(pages).page.width * 72 / dpi, B.JSArray_methods.get$first(pages).page.height * 72 / dpi, 14.173228346456694, 0, 0, 0, 0) : format; }, initState$0() { var _this = this, t1 = _this._widget.build; if (B.Map_gyoqK.get$isNotEmpty(B.Map_gyoqK)) _this._widget.toString; _this._widget.toString; t1 = A.PdfPreviewData$(t1, null, _this.get$computeActualPageFormat(), B.Map_gyoqK); _this.___PdfPreviewState_previewData = t1; A._lateReadCheck(t1, "previewData").addListener$1(0, new A._PdfPreviewState_initState_closure(_this)); _this.super$State$initState(); }, dispose$0(_) { var t1 = A._lateReadCheck(this.___PdfPreviewState_previewData, "previewData"); t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$State$dispose(0); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; if (J.$eq$(oldWidget.build, _this._widget.build)) { _this._widget.toString; t1 = false; } else t1 = true; if (t1) { t1 = _this._widget.build; if (B.Map_gyoqK.get$isNotEmpty(B.Map_gyoqK)) _this._widget.toString; _this.___PdfPreviewState_previewData = A.PdfPreviewData$(t1, A._lateReadCheck(A._lateReadCheck(_this.___PdfPreviewState_previewData, "previewData").__PdfPreviewData__pageFormat, "_pageFormat"), _this.get$computeActualPageFormat(), B.Map_gyoqK); _this.setState$1(new A._PdfPreviewState_didUpdateWidget_closure()); } _this.super$State$didUpdateWidget(oldWidget); }, didChangeDependencies$0() { var _this = this; if (!_this.infoLoaded) { _this.infoLoaded = true; $.$get$PrintingPlatform__instance().info$0().then$1$1(0, new A._PdfPreviewState_didChangeDependencies_closure(_this), type$.Null); } _this.super$State$didChangeDependencies(); }, build$1(_, context) { var t1, actions, t2, t3, _this = this, _null = null, theme = A.Theme_of(context), iconColor = theme.primaryIconTheme.color; if (iconColor == null) iconColor = B.Color_4294967295; t1 = type$.JSArray_Widget; actions = A._setArrayType([], t1); _this._widget.toString; t2 = _this.info; t2 = (t2 == null ? _null : t2.canPrint) === true; if (t2) actions.push(new A.PdfPrintAction(B.Icon_IID3, "Document", true, _null, _null, _null)); _this._widget.toString; t2 = _this.info; t2 = (t2 == null ? _null : t2.canShare) === true; if (t2) actions.push(new A.PdfShareAction(B.Icon_OxR0, "document.pdf", _null, new A.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), _null)); _this._widget.toString; t2 = A._lateReadCheck(_this.___PdfPreviewState_previewData, "previewData"); t1 = A._setArrayType([A.Expanded$(new A.Builder(new A._PdfPreviewState_build_closure(_this), _null), 1)], t1); if (actions.length !== 0) { t3 = theme.primaryColor; t1.push(A.IconTheme_merge(A.Material$(B.Duration_200000, true, _null, new A.SizedBox(1 / 0, _null, A.SafeArea$(true, A.Wrap$(B.WrapAlignment_4, actions, B.Clip_0, B.WrapCrossAlignment_0, 0), B.EdgeInsets_0_0_0_0, true), _null), B.Clip_0, t3, 4, _null, _null, _null, _null, _null, B.MaterialType_0), new A.IconThemeData(iconColor, _null, _null, _null))); } return new A.PdfPreviewController(t2, t2, A.Column$(t1, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_2, B.MainAxisSize_1, B.VerticalDirection_1), _null); } }; A._PdfPreviewState_initState_closure.prototype = { call$0() { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new A._PdfPreviewState_initState__closure()); t1._widget.toString; }, $signature: 0 }; A._PdfPreviewState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A._PdfPreviewState_didUpdateWidget_closure.prototype = { call$0() { }, $signature: 0 }; A._PdfPreviewState_didChangeDependencies_closure.prototype = { call$1(_info) { var t1 = this.$this; t1.setState$1(new A._PdfPreviewState_didChangeDependencies__closure(t1, _info)); }, $signature: 704 }; A._PdfPreviewState_didChangeDependencies__closure.prototype = { call$0() { this.$this.info = this._info; }, $signature: 0 }; A._PdfPreviewState_build_closure.prototype = { call$1(context) { var _null = null, controller = context.dependOnInheritedWidgetOfExactType$1$0(type$.PdfPreviewController).data, t1 = this.$this, t2 = t1._widget.maxPageWidth; return new A.PdfPreviewCustom(A._lateReadCheck(controller.__PdfPreviewData__pageFormat, "_pageFormat"), controller.buildDocument, t2, _null, _null, _null, t1._widget.pages, _null, _null, false, _null, _null, t1.previewWidget); }, $signature: 2845 }; A.PdfPreviewRaster.prototype = { raster$0() { var t1 = this.PdfPreviewRaster__previewUpdate; if (t1 != null) t1.cancel$0(0); this.PdfPreviewRaster__previewUpdate = A.Timer_Timer(B.Duration_300000, new A.PdfPreviewRaster_raster_closure(this)); }, _raster$0() { return this._raster$body$PdfPreviewRaster(); }, _raster$body$PdfPreviewRaster() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, _doc, exception, stack, page, exception0, stack0, _info, t1, t2, t3, _box_0, $async$exception0, $async$exception; var $async$_raster$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; if ($async$self.PdfPreviewRaster__rastering) { // goto return $async$goto = 1; break; } $async$self.PdfPreviewRaster__rastering = true; _doc = null; _info = $async$self.PdfPreviewRaster_info; if (_info != null && !_info.canRaster) { $async$self.PdfPreviewRaster__rastering = false; // goto return $async$goto = 1; break; } $async$handler = 4; t1 = $async$self._widget; $async$goto = 7; return A._asyncAwait(t1.build$1(0, t1.pageFormat), $async$_raster$0); case 7: // returning from await. _doc = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; exception = A.unwrapException($async$exception0); stack = A.getTraceFromException($async$exception0); _box_0.collector = null; t1 = A.ErrorDescription$("while generating a PDF"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "printing", t1, null, null, false)); $async$self.setState$1(new A.PdfPreviewRaster__raster_closure($async$self, exception)); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally if ($async$self.PdfPreviewRaster_error != null) $async$self.setState$1(new A.PdfPreviewRaster__raster_closure0($async$self)); $async$handler = 9; _box_0.pageNum = 0; t1 = _doc; t2 = $async$self.PdfPreviewRaster_dpi; t3 = $async$self._widget.pages; t2 = new A._StreamIterator(A.checkNotNullable($.$get$PrintingPlatform__instance().raster$3(t1, t3, t2), "stream", type$.Object), type$._StreamIterator_PdfRaster); $async$handler = 12; case 15: // for condition $async$goto = 17; return A._asyncAwait(t2.moveNext$0(), $async$_raster$0); case 17: // returning from await. if (!$async$result) { // goto after for $async$goto = 16; break; } page = t2.get$current(t2); if ($async$self._framework$_element == null) { $async$self.PdfPreviewRaster__rastering = false; $async$next = [1]; // goto finally $async$goto = 13; break; } new A.PdfPreviewRaster__raster_closure1(_box_0, $async$self, page).call$0(); $async$self._framework$_element.markNeedsBuild$0(); ++_box_0.pageNum; // goto for condition $async$goto = 15; break; case 16: // after for $async$next.push(14); // goto finally $async$goto = 13; break; case 12: // uncaught $async$next = [9]; case 13: // finally $async$handler = 9; $async$goto = 18; return A._asyncAwait(t2.cancel$0(0), $async$_raster$0); case 18: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 14: // after finally t1 = $async$self.PdfPreviewRaster_pages; B.JSArray_methods.removeRange$2(t1, _box_0.pageNum, t1.length); $async$handler = 2; // goto after finally $async$goto = 11; break; case 9: // catch $async$handler = 8; $async$exception = $async$currentError; exception0 = A.unwrapException($async$exception); stack0 = A.getTraceFromException($async$exception); _box_0.collector = null; t1 = A.ErrorDescription$("while rastering a PDF"); A.FlutterError_reportError(new A.FlutterErrorDetails(exception0, stack0, "printing", t1, null, null, false)); $async$self.setState$1(new A.PdfPreviewRaster__raster_closure2($async$self, exception0)); // goto after finally $async$goto = 11; break; case 8: // uncaught // goto rethrow $async$goto = 2; break; case 11: // after finally $async$self.PdfPreviewRaster__rastering = false; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_raster$0, $async$completer); } }; A.PdfPreviewRaster_raster_closure.prototype = { call$0() { var mq, t2, t3, t1 = this.$this; t1._widget.toString; mq = t1._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t2 = t1._widget; t3 = t2.maxPageWidth; t1.PdfPreviewRaster_dpi = Math.min(mq.size._dx - 16, t3) * mq.devicePixelRatio / t2.pageFormat.width * 72; t1._raster$0(); }, $signature: 0 }; A.PdfPreviewRaster__raster_closure.prototype = { call$0() { var t1 = this.$this; t1.PdfPreviewRaster_error = this.exception; t1.PdfPreviewRaster__rastering = false; }, $signature: 0 }; A.PdfPreviewRaster__raster_closure0.prototype = { call$0() { this.$this.PdfPreviewRaster_error = null; }, $signature: 0 }; A.PdfPreviewRaster__raster_closure1.prototype = { call$0() { var t1 = this.$this, t2 = t1.PdfPreviewRaster_pages, t3 = t2.length, t4 = this._box_0.pageNum, t5 = this.page; t1 = t1._widget; if (t3 <= t4) t2.push(new A.PdfPreviewPage(t5, t1.pdfPreviewPageDecoration, t1.previewPageMargin, null)); else t2[t4] = new A.PdfPreviewPage(t5, t1.pdfPreviewPageDecoration, t1.previewPageMargin, null); }, $signature: 0 }; A.PdfPreviewRaster__raster_closure2.prototype = { call$0() { this.$this.PdfPreviewRaster_error = this.exception; }, $signature: 0 }; A.PrintJob.prototype = {}; A.PrintJobs.prototype = { add$3$onCompleted$onLayout$onPageRasterized(_, onCompleted, onLayout, onPageRasterized) { var job, t1 = $.PrintJobs__currentIndex; $.PrintJobs__currentIndex = t1 + 1; job = new A.PrintJob(onLayout, null, onCompleted, onPageRasterized, t1, $.$get$Platform_isMacOS() || $.$get$Platform_isIOS()); this._printJobs.$indexSet(0, t1, job); return job; }, add$2$onCompleted$onLayout($receiver, onCompleted, onLayout) { return this.add$3$onCompleted$onLayout$onPageRasterized($receiver, onCompleted, onLayout, null); }, add$1$onPageRasterized($receiver, onPageRasterized) { return this.add$3$onCompleted$onLayout$onPageRasterized($receiver, null, null, onPageRasterized); } }; A.PrintingInfo.prototype = { toString$0(_) { var _this = this; return A.getRuntimeType(_this).toString$0(0) + ":\n canPrint: " + _this.canPrint + "\n directPrint: " + _this.directPrint + "\n dynamicLayout: " + _this.dynamicLayout + "\n canConvertHtml: " + _this.canConvertHtml + "\n canListPrinters: " + _this.canListPrinters + "\n canShare: " + _this.canShare + "\n canRaster: " + A.S(_this.canRaster); } }; A.PdfRaster.prototype = { toString$0(_) { var t1 = this.width, t2 = this.height; return "Image " + A.S(t1) + "x" + A.S(t2) + " " + t1 * t2 * 4 + " bytes"; }, toImage$0() { var t1 = new A._Future($.Zone__current, type$._Future_Image); A.decodeImageFromPixels(this.get$pixels(), this.width, this.height, B.PixelFormat_0, new A.PdfRaster_toImage_closure(new A._AsyncCompleter(t1, type$._AsyncCompleter_Image))); return t1; }, get$pixels() { return this.pixels; } }; A.PdfRaster_toImage_closure.prototype = { call$1(image) { return this.comp.complete$1(0, image); }, $signature: 2846 }; A.PdfRasterImage.prototype = { _raster$_loadAsync$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.ImageInfo), $async$returnValue, $async$self = this, $async$temp1; var $async$_raster$_loadAsync$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = A; $async$goto = 3; return A._asyncAwait($async$self.raster.toImage$0(), $async$_raster$_loadAsync$0); case 3: // returning from await. $async$returnValue = new $async$temp1.ImageInfo($async$result, 1, null); // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_raster$_loadAsync$0, $async$completer); }, load$2(_, key, decode) { return A.OneFrameImageStreamCompleter$(this._raster$_loadAsync$0()); }, obtainKey$1(configuration) { return this.obtainKey$body$PdfRasterImage(configuration); }, obtainKey$body$PdfRasterImage(configuration) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.PdfRaster), $async$returnValue, $async$self = this; var $async$obtainKey$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.raster; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$obtainKey$1, $async$completer); } }; A.QrBitBuffer.prototype = { $indexSet(_, index, value) { return A.throwExpression(A.UnsupportedError$("cannot change")); }, $index(_, index) { return (B.JSInt_methods._shrReceiverPositive$1(this._bit_buffer$_buffer[B.JSInt_methods._tdivFast$1(index, 8)], 7 - B.JSInt_methods.$mod(index, 8)) & 1) === 1; }, get$length(_) { return this._bit_buffer$_length; }, set$length(_, value) { A.throwExpression(A.UnsupportedError$("Cannot change")); }, put$2(_, number, $length) { var i; for (i = 0; i < $length; ++i) this.putBit$1((B.JSInt_methods.$shr(number, $length - i - 1) & 1) === 1); }, putBit$1(bit) { var _this = this, bufIndex = B.JSInt_methods._tdivFast$1(_this._bit_buffer$_length, 8), t1 = _this._bit_buffer$_buffer; if (t1.length <= bufIndex) t1.push(0); if (bit) t1[bufIndex] = (t1[bufIndex] | B.JSInt_methods._shrBothPositive$1(128, B.JSInt_methods.$mod(_this._bit_buffer$_length, 8))) >>> 0; ++_this._bit_buffer$_length; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A._QrBitBuffer_Object_ListMixin.prototype = {}; A.QrByte.prototype = { get$length(_) { return this._byte$_data.length; }, write$1(_, buffer) { var t1, t2, _i; for (t1 = this._byte$_data, t2 = t1.length, _i = 0; _i < t2; ++_i) buffer.put$2(0, t1[_i], 8); }, $isQrDatum: 1 }; A.InputTooLongException.prototype = { toString$0(_) { return "QrInputTooLongException: " + this.message; }, $isException: 1, get$message(receiver) { return this.message; } }; A.QrPolynomial.prototype = { $index(_, index) { return this._polynomial$_values[index]; }, get$length(_) { return this._polynomial$_values.length; }, multiply$1(_, e) { var i, j, t5, t6, t7, t8, t9, t1 = this._polynomial$_values, t2 = t1.length, t3 = e._polynomial$_values, t4 = t3.length, foo = new Uint8Array(t2 + t4 - 1); for (i = 0; i < t2; ++i) for (j = 0; j < t4; ++j) { t5 = i + j; t6 = foo[t5]; t7 = t1[i]; if (t7 < 1) A.throwExpression(A.ArgumentError$("glog(" + t7 + ")", null)); t8 = $.$get$_logTable(); t7 = t8[t7]; t9 = t3[j]; if (t9 < 1) A.throwExpression(A.ArgumentError$("glog(" + t9 + ")", null)); foo[t5] = (t6 ^ A.gexp(t7 + t8[t9])) >>> 0; } return A.QrPolynomial_QrPolynomial(foo, 0); }, mod$1(e) { var ratio, value, i, t1 = this._polynomial$_values, t2 = t1.length, t3 = e._polynomial$_values, t4 = t3.length; if (t2 - t4 < 0) return this; ratio = A.glog(t1[0]) - A.glog(t3[0]); value = new Uint8Array(t2); for (i = 0; i < t2; ++i) value[i] = t1[i]; for (i = 0; i < t4; ++i) { t1 = value[i]; t2 = t3[i]; if (t2 < 1) A.throwExpression(A.ArgumentError$("glog(" + t2 + ")", null)); value[i] = (t1 ^ A.gexp($.$get$_logTable()[t2] + ratio)) >>> 0; } return A.QrPolynomial_QrPolynomial(value, 0).mod$1(e); } }; A.QrCode.prototype = { get$dataCache() { var _this = this, t1 = _this._dataCache; return t1 == null ? _this._dataCache = A._createData(_this.typeNumber, _this.errorCorrectLevel, _this._dataList) : t1; } }; A.QrImage.prototype = { _resetModules$0() { var t2, t3, row, t1 = this._modules; B.JSArray_methods.set$length(t1, 0); for (t2 = this.moduleCount, t3 = type$.nullable_bool, row = 0; row < t2; ++row) t1.push(A.List_List$filled(t2, null, false, t3)); }, isDark$2(row, col) { var t1; if (row >= 0) { t1 = this.moduleCount; t1 = t1 <= row || col < 0 || t1 <= col; } else t1 = true; if (t1) throw A.wrapException(A.ArgumentError$("" + row + " , " + col, null)); t1 = this._modules[row][col]; t1.toString; return t1; }, _makeImpl$3(maskPattern, dataCache, test) { var t1, _this = this; _this._resetModules$0(); _this._setupPositionProbePattern$2(0, 0); t1 = _this.moduleCount - 7; _this._setupPositionProbePattern$2(t1, 0); _this._setupPositionProbePattern$2(0, t1); _this._setupPositionAdjustPattern$0(); _this._setupTimingPattern$0(); _this._setupTypeInfo$2(maskPattern, test); if (_this.typeNumber >= 7) _this._setupTypeNumber$1(test); _this._mapData$2(dataCache, maskPattern); }, _setupPositionProbePattern$2(row, col) { var t1, t2, r, t3, t4, t5, t6, t7, t8, t9, c, t10, t11; for (t1 = this._modules, t2 = this.moduleCount, r = -1; r <= 7; ++r) { t3 = row + r; if (t3 <= -1 || t2 <= t3) continue; for (t4 = 0 <= r, t5 = r <= 6, t6 = r !== 0, t7 = r === 6, t8 = 2 <= r, t9 = r <= 4, c = -1; c <= 7; ++c) { t10 = col + c; if (t10 <= -1 || t2 <= t10) continue; if (t4) if (t5) t11 = c === 0 || c === 6; else t11 = false; else t11 = false; if (!t11) { if (0 <= c) if (c <= 6) t11 = !t6 || t7; else t11 = false; else t11 = false; if (!t11) t11 = t8 && t9 && 2 <= c && c <= 4; else t11 = true; } else t11 = true; if (t11) t1[t3][t10] = true; else t1[t3][t10] = false; } } }, _setupPositionAdjustPattern$0() { var t1, t2, i, j, row, col, r, t3, t4, t5, t6, c, t7, t8, pos = B.List_CI3[this.typeNumber - 1]; for (t1 = pos.length, t2 = this._modules, i = 0; i < t1; ++i) for (j = 0; j < t1; ++j) { row = pos[i]; col = pos[j]; if (t2[row][col] != null) continue; for (r = -2; r <= 2; ++r) for (t3 = row + r, t4 = r !== -2, t5 = r !== 2, t6 = r === 0, c = -2; c <= 2; ++c) { if (t4) if (t5) if (c !== -2) if (c !== 2) t7 = t6 && c === 0; else t7 = true; else t7 = true; else t7 = true; else t7 = true; t8 = col + c; if (t7) t2[t3][t8] = true; else t2[t3][t8] = false; } } }, _setupTimingPattern$0() { var t1, t2, r, t3, c; for (t1 = this.moduleCount - 8, t2 = this._modules, r = 8; r < t1; ++r) { t3 = t2[r]; if (t3[6] != null) continue; t3[6] = (r & 1) === 0; } for (c = 8; c < t1; ++c) { t3 = t2[6]; if (t3[c] != null) continue; t3[c] = (c & 1) === 0; } }, _setupTypeInfo$2(maskPattern, test) { var t1, t2, t3, t4, i, mod, bits = A.bchTypeInfo((this.errorCorrectLevel << 3 | maskPattern) >>> 0); for (t1 = this._modules, t2 = this.moduleCount, t3 = t2 - 15, t4 = !test, i = 0; i < 15; ++i) { mod = t4 && (B.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; if (i < 6) t1[i][8] = mod; else if (i < 8) t1[i + 1][8] = mod; else t1[t3 + i][8] = mod; } for (i = 0; i < 15; ++i) { mod = t4 && (B.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; if (i < 8) t1[8][t2 - i - 1] = mod; else { t3 = 15 - i - 1; if (i < 9) t1[8][t3 + 1] = mod; else t1[8][t3] = mod; } } t1[t2 - 8][8] = t4; }, _setupTypeNumber$1(test) { var t1, t2, t3, i, mod, bits = A.bchTypeNumber(this.typeNumber); for (t1 = this._modules, t2 = this.moduleCount, t3 = !test, i = 0; i < 18; ++i) { mod = t3 && (B.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; t1[B.JSInt_methods._tdivFast$1(i, 3)][B.JSInt_methods.$mod(i, 3) + t2 - 8 - 3] = mod; } for (i = 0; i < 18; ++i) { mod = t3 && (B.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; t1[B.JSInt_methods.$mod(i, 3) + t2 - 8 - 3][B.JSInt_methods._tdivFast$1(i, 3)] = mod; } }, _mapData$2(data, maskPattern) { var t2, col, inc, bitIndex, byteIndex, c, t3, dark, inc0, t1 = this.moduleCount, row = t1 - 1; for (t2 = this._modules, col = row, inc = -1, bitIndex = 7, byteIndex = 0; col > 0; col -= 2) { if (col === 6) --col; for (; true;) { for (c = 0; c < 2; ++c) { t3 = col - c; if (t2[row][t3] == null) { dark = byteIndex < data.length && (B.JSInt_methods._shrReceiverPositive$1(data[byteIndex], bitIndex) & 1) === 1; if (A._mask(maskPattern, row, t3)) dark = !dark; t2[row][t3] = dark; --bitIndex; if (bitIndex === -1) { ++byteIndex; bitIndex = 7; } } } row += inc; if (row < 0 || t1 <= row) { row -= inc; inc0 = -inc; inc = inc0; break; } } } } }; A.QrRsBlock.prototype = {}; A.PaintCache.prototype = { _cacheKey$2$position(element, position) { var posKey = position != null ? "FinderPatternPosition." + position._core$_name : "any"; return "QrCodeElement." + element._core$_name + ":" + posKey; }, cache$3$position(_, paint, element, position) { if (element === B.QrCodeElement_3) this._pixelPaints.push(paint); else this._keyedPaints.$indexSet(0, this._cacheKey$2$position(element, position), paint); }, cache$2($receiver, paint, element) { return this.cache$3$position($receiver, paint, element, null); }, firstPaint$2$position(element, position) { if (element === B.QrCodeElement_3) return B.JSArray_methods.get$first(this._pixelPaints); else return this._keyedPaints.$index(0, this._cacheKey$2$position(element, position)); }, firstPaint$1(element) { return this.firstPaint$2$position(element, null); } }; A.QrImageView.prototype = { createState$0() { return new A._QrImageViewState(B._StateLifecycle_0); } }; A._QrImageViewState.prototype = { build$1(_, context) { var _this = this, _s17_ = "_validationResult", t1 = _this._widget, t2 = t1._qr_image_view$_data; if (t2 != null) { t1 = A.QrValidator_validate(t2, 1, t1.version); _this.___QrImageViewState__validationResult = t1; if (A._lateReadCheck(t1, _s17_).status === B.QrValidationStatus_0) _this._qr = A._lateReadCheck(_this.___QrImageViewState__validationResult, _s17_).qrCode; else _this._qr = null; } return new A.LayoutBuilder(new A._QrImageViewState_build_closure(_this), null); }, _qrWidget$3(context, image, edgeLength) { var t2, painter, _null = null, t1 = this._qr; t1.toString; this._widget.toString; t2 = t1.typeNumber; painter = new A.QrPainter(t2, t1.errorCorrectLevel, _null, true, image, _null, B.C_QrEyeStyle, B.C_QrDataModuleStyle, t1, new A.PaintCache(A._setArrayType([], type$.JSArray_Paint), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Paint)), _null); A._lateWriteOnceCheck($, "_calcVersion"); painter.__QrPainter__calcVersion = t2; painter._initPaints$0(); return new A._QrContentView(edgeLength, this._widget.backgroundColor, B.EdgeInsets_10_10_10_10, A.CustomPaint$(_null, _null, _null, painter, B.Size_0_0), "qr code", _null); }, _errorWidget$3(context, constraints, error) { var errorWidget, _null = null, t1 = this._widget; t1.toString; errorWidget = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new A._QrContentView(t1.size, t1.backgroundColor, B.EdgeInsets_10_10_10_10, errorWidget, "qr code", _null); } }; A._QrImageViewState_build_closure.prototype = { call$2(context, constraints) { var widgetSize, _s17_ = "_validationResult", t1 = this.$this; if (A._lateReadCheck(t1.___QrImageViewState__validationResult, _s17_).status !== B.QrValidationStatus_0) return t1._errorWidget$3(context, constraints, A._lateReadCheck(t1.___QrImageViewState__validationResult, _s17_).error); widgetSize = t1._widget.size; t1 = t1._qrWidget$3(context, null, widgetSize); return t1; }, $signature: 276 }; A._QrContentView.prototype = { build$1(_, context) { var _this = this, _null = null, t1 = _this.edgeLength; t1 = A.Container$(_null, new A.Padding(_this.padding, _this.child, _null), B.Clip_0, _this.backgroundColor, _null, _null, _null, t1, _null, _null, _null, _null, _null, t1); return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.semanticsLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); } }; A.QrPainter.prototype = { _initPaints$0() { var t2, t3, _i, position, t4, _s22_ = "FinderPatternPosition.", t1 = this._qr_painter$_qr; t1.toString; this.__QrPainter__qrImage = A.QrImage_QrImage(t1); t1 = this._paintCache; t2 = $.$get$useCanvasKit(); t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$style(0, B.PaintingStyle_0); t1.cache$2(0, t3, B.QrCodeElement_3); t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$style(0, B.PaintingStyle_0); t1.cache$2(0, t3, B.QrCodeElement_4); for (_i = 0; _i < 3; ++_i) { position = B.List_Yb0[_i]; t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$style(0, B.PaintingStyle_1); t4 = t1._keyedPaints; t4.$indexSet(0, "QrCodeElement.finderPatternOuter:" + (_s22_ + position._core$_name), t3); t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$style(0, B.PaintingStyle_1); t4.$indexSet(0, "QrCodeElement.finderPatternInner:" + (_s22_ + position._core$_name), t3); t3 = t2 ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t3.set$style(0, B.PaintingStyle_0); t4.$indexSet(0, "QrCodeElement.finderPatternDot:" + (_s22_ + position._core$_name), t3); } }, paint$2(canvas, size) { var t1, t2, paintMetrics, gapTotal, t3, pixelPaint, x, isTopLeft, isBottomLeft, y, isTopLeft0, isBottomLeft0, isTopRight, paint, left, $top, pixelHTweak, pixelVTweak, imageSize, t4, t5, t6, t7, _this = this, _s10_ = "_pixelSize", _s17_ = "_innerContentSize", _s6_ = "_inset"; if (size.get$shortestSide() === 0) { A.print("[QR] WARN: width or height is zero. You should set a 'size' value or nest this painter in a Widget that defines a non-zero size"); return; } t1 = size.get$shortestSide(); t2 = _this._qr_painter$_qr.moduleCount; paintMetrics = new A._PaintMetrics(t2, t1, 0); gapTotal = (t2 - 1) * 0; t3 = B.JSNumber_methods.roundToDouble$0((t1 - gapTotal) / t2 * 2) / 2; A._lateWriteOnceCheck($, _s10_); paintMetrics.___PaintMetrics__pixelSize = t3; t3 = A._lateReadCheck(t3, _s10_) * t2 + gapTotal; A._lateWriteOnceCheck($, _s17_); paintMetrics.___PaintMetrics__innerContentSize = t3; t3 = A._lateReadCheck(t3, _s17_); A._lateWriteOnceCheck($, _s6_); paintMetrics.___PaintMetrics__inset = (t1 - t3) / 2; _this._drawFinderPatternItem$3(B.FinderPatternPosition_0, canvas, paintMetrics); _this._drawFinderPatternItem$3(B.FinderPatternPosition_2, canvas, paintMetrics); _this._drawFinderPatternItem$3(B.FinderPatternPosition_1, canvas, paintMetrics); pixelPaint = _this._paintCache.firstPaint$1(B.QrCodeElement_3); pixelPaint.set$color(0, B.Color_4278190080); for (t1 = t2 - 7, x = 0; x < t2; ++x) for (isTopLeft = x < 7, isBottomLeft = x >= t1, y = 0; y < t2; ++y) { t3 = y < 7; isTopLeft0 = t3 && isTopLeft; isBottomLeft0 = t3 && isBottomLeft; isTopRight = y >= t1 && isTopLeft; if (isTopLeft0 || isBottomLeft0 || isTopRight) continue; paint = A._lateReadCheck(_this.__QrPainter__qrImage, "_qrImage").isDark$2(y, x) ? pixelPaint : null; if (paint == null) continue; left = A._lateReadCheck(paintMetrics.___PaintMetrics__inset, _s6_) + x * (A._lateReadCheck(paintMetrics.___PaintMetrics__pixelSize, _s10_) + 0); $top = A._lateReadCheck(paintMetrics.___PaintMetrics__inset, _s6_) + y * (A._lateReadCheck(paintMetrics.___PaintMetrics__pixelSize, _s10_) + 0); t3 = _this._hasAdjacentHorizontalPixel$3(x, y, t2); pixelHTweak = t3 ? 0.5 : 0; t3 = _this._hasAdjacentVerticalPixel$3(x, y, t2); pixelVTweak = t3 ? 0.5 : 0; canvas.drawRect$2(0, new A.Rect(left, $top, left + (A._lateReadCheck(paintMetrics.___PaintMetrics__pixelSize, _s10_) + pixelHTweak), $top + (A._lateReadCheck(paintMetrics.___PaintMetrics__pixelSize, _s10_) + pixelVTweak)), paint); } t1 = _this.embeddedImage; if (t1 != null) { t2 = t1.get$width(t1); t2.toString; t3 = t1.get$height(t1); t3.toString; imageSize = _this._scaledAspectSize$3(size, new A.Size(t2, t3), null); t2 = imageSize._dx; t3 = (size._dx - t2) / 2; t4 = imageSize._dy; t5 = (size._dy - t4) / 2; paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$isAntiAlias(true); paint.set$filterQuality(B.FilterQuality_3); t6 = t1.get$width(t1); t6.toString; t7 = t1.get$height(t1); t7.toString; canvas.drawImageRect$4(t1, B.Alignment_0_0.inscribe$2(new A.Size(t6, t7), new A.Rect(0, 0, t6, t7)), B.Alignment_0_0.inscribe$2(imageSize, new A.Rect(t3, t5, t3 + t2, t5 + t4)), paint); } }, _hasAdjacentVerticalPixel$3(x, y, moduleCount) { var t1 = y + 1; if (t1 >= moduleCount) return false; return A._lateReadCheck(this.__QrPainter__qrImage, "_qrImage").isDark$2(t1, x); }, _hasAdjacentHorizontalPixel$3(x, y, moduleCount) { var t1 = x + 1; if (t1 >= moduleCount) return false; return A._lateReadCheck(this.__QrPainter__qrImage, "_qrImage").isDark$2(y, t1); }, _drawFinderPatternItem$3(position, canvas, metrics) { var offset, t1, t2, t3, dotPaint, t4, innerRadius, t5, t6, dotSize, t7, t8, _s10_ = "_pixelSize", _s6_ = "_inset", radius = 7 * A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_) + 6 * metrics.gapSize - A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_), strokeAdjust = A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_) / 2, edgePos = A._lateReadCheck(metrics.___PaintMetrics__inset, _s6_) + A._lateReadCheck(metrics.___PaintMetrics__innerContentSize, "_innerContentSize") - (radius + strokeAdjust); if (position === B.FinderPatternPosition_0) offset = new A.Offset(A._lateReadCheck(metrics.___PaintMetrics__inset, _s6_) + strokeAdjust, A._lateReadCheck(metrics.___PaintMetrics__inset, _s6_) + strokeAdjust); else { t1 = metrics.___PaintMetrics__inset; offset = position === B.FinderPatternPosition_2 ? new A.Offset(A._lateReadCheck(t1, _s6_) + strokeAdjust, edgePos) : new A.Offset(edgePos, A._lateReadCheck(t1, _s6_) + strokeAdjust); } t1 = this._paintCache; t2 = t1.firstPaint$2$position(B.QrCodeElement_0, position); t2.toString; t2.set$strokeWidth(A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_)); t2.set$color(0, B.Color_4278190080); t3 = t1.firstPaint$2$position(B.QrCodeElement_1, position); t3.toString; t3.set$strokeWidth(A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_)); t3.set$color(0, new A.Color(16777215)); dotPaint = t1.firstPaint$2$position(B.QrCodeElement_2, position); dotPaint.set$color(0, B.Color_4278190080); t1 = offset._dx; t4 = offset._dy; innerRadius = radius - 2 * A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_); t5 = t1 + A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_); t6 = t4 + A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_); dotSize = radius - A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_) * 2 - 2 * strokeAdjust; t7 = t1 + A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_) + strokeAdjust; t8 = t4 + A._lateReadCheck(metrics.___PaintMetrics__pixelSize, _s10_) + strokeAdjust; canvas.drawRect$2(0, new A.Rect(t1, t4, t1 + radius, t4 + radius), t2); canvas.drawRect$2(0, new A.Rect(t5, t6, t5 + innerRadius, t6 + innerRadius), t3); canvas.drawRect$2(0, new A.Rect(t7, t8, t7 + dotSize, t8 + dotSize), dotPaint); }, _scaledAspectSize$3(widgetSize, originalSize, requestedSize) { var ratio = 0.25 * widgetSize.get$shortestSide() / originalSize.get$longestSide(); return new A.Size(ratio * originalSize._dx, ratio * originalSize._dy); }, shouldRepaint$1(oldPainter) { var t1, _this = this, _s12_ = "_calcVersion"; if (oldPainter instanceof A.QrPainter) { if (_this.errorCorrectionLevel === oldPainter.errorCorrectionLevel) if (A._lateReadCheck(_this.__QrPainter__calcVersion, _s12_) == A._lateReadCheck(oldPainter.__QrPainter__calcVersion, _s12_)) if (_this._qr_painter$_qr == oldPainter._qr_painter$_qr) if (_this.embeddedImage == oldPainter.embeddedImage) t1 = !_this.eyeStyle.$eq(0, oldPainter.eyeStyle) || !_this.dataModuleStyle.$eq(0, oldPainter.dataModuleStyle); else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; } return true; } }; A._PaintMetrics.prototype = {}; A.QrCodeElement.prototype = { toString$0(_) { return "QrCodeElement." + this._core$_name; } }; A.FinderPatternPosition.prototype = { toString$0(_) { return "FinderPatternPosition." + this._core$_name; } }; A.QrEyeShape.prototype = { toString$0(_) { return "QrEyeShape." + this._core$_name; } }; A.QrDataModuleShape.prototype = { toString$0(_) { return "QrDataModuleShape." + this._core$_name; } }; A.QrEyeStyle.prototype = { get$hashCode(_) { return (A.Primitives_objectHashCode(B.QrEyeShape_0) ^ B.JSInt_methods.get$hashCode(4278190080)) >>> 0; }, $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A.QrEyeStyle) { t1 = B.Color_4278190080.$eq(0, B.Color_4278190080); return t1; } return false; } }; A.QrDataModuleStyle.prototype = { get$hashCode(_) { return (A.Primitives_objectHashCode(B.QrDataModuleShape_0) ^ B.JSInt_methods.get$hashCode(4278190080)) >>> 0; }, $eq(_, other) { var t1; if (other == null) return false; if (other instanceof A.QrDataModuleStyle) { t1 = B.Color_4278190080.$eq(0, B.Color_4278190080); return t1; } return false; } }; A.QrValidationResult.prototype = {}; A.QrValidationStatus.prototype = { toString$0(_) { return "QrValidationStatus." + this._core$_name; } }; A.hashObjects_closure0.prototype = { call$2(h, i) { return A._combine0(h, J.get$hashCode$(i)); }, $signature: 569 }; A.MiddlewareClass.prototype = {}; A.Store.prototype = { get$_dispatchers() { return A._lateReadCheck(this.__Store__dispatchers, "_dispatchers"); }, _createReduceAndNotify$1(distinct) { return new A.Store__createReduceAndNotify_closure(this, false); }, _createDispatchers$2(middleware, reduceAndNotify) { var t1, t2, dispatchers = A._setArrayType([], type$.JSArray_of_dynamic_Function_dynamic); dispatchers.push(reduceAndNotify); for (t1 = A._arrayInstanceType(middleware)._eval$1("ReversedListIterable<1>"), t2 = new A.ReversedListIterable(middleware, t1), t1 = new A.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")); t1.moveNext$0();) dispatchers.push(new A.Store__createDispatchers_closure(this, t1.__internal$_current, B.JSArray_methods.get$last(dispatchers))); t1 = type$.ReversedListIterable_of_dynamic_Function_dynamic; return A.List_List$of(new A.ReversedListIterable(dispatchers, t1), true, t1._eval$1("ListIterable.E")); } }; A.Store__createReduceAndNotify_closure.prototype = { call$1(action) { var t1 = this.$this, t2 = A._lateReadCheck(t1.__Store__state, "_state"), state = t1.reducer.call$2(t2, action); t1.__Store__state = state; t1._changeController.add$1(0, state); }, $signature: 7 }; A.Store__createDispatchers_closure.prototype = { call$1(action) { return this.nextMiddleware.call$3(this.$this, action, this.next); }, $signature: 12 }; A.TypedReducer.prototype = { call$2(state, action) { if (this.$ti._rest[1]._is(action)) return this.reducer.call$2(state, action); return state; } }; A.TypedMiddleware.prototype = { call$3(store, action, next) { if (this.$ti._rest[1]._is(action)) return this.middleware.call$3(store, action, next); else return next.call$1(action); } }; A.combineReducers_closure.prototype = { call$2(state, action) { var t1, t2, _i; for (t1 = this.reducers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) state = t1[_i].call$2(state, action); return state; }, $signature() { return this.State._eval$1("0(0,@)"); } }; A.LoggingMiddleware.prototype = { call$3(store, action, next) { next.call$1(action); this.logger.log$2(this.level, new A.LoggingMiddleware_call_closure(this, store, action)); } }; A.LoggingMiddleware_call_closure.prototype = { call$0() { return this.$this.formatter.call$3(A._lateReadCheck(this.store.__Store__state, "_state"), this.action, new A.DateTime(Date.now(), false)); }, $signature: 65 }; A.ButtonState.prototype = { toString$0(_) { return "ButtonState." + this._core$_name; } }; A.RoundedLoadingButton.prototype = { createState$0() { return new A.RoundedLoadingButtonState(A.BehaviorSubject_BehaviorSubject$seeded(B.ButtonState_0, type$.ButtonState), null, null, B._StateLifecycle_0); } }; A.RoundedLoadingButtonState.prototype = { build$1(_, context) { var t1, t2, t3, t4, t5, t6, _check, _cross, childStream, _btn, _this = this, _null = null, _s16_ = "_bounceAnimation", theme = A.Theme_of(context); _this._widget.toString; t1 = theme.primaryColor; t2 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t3 = t2._evaluatable; t2 = t2.parent; t2 = J.$div$n(t3.transform$1(0, t2.get$value(t2)), 2); t2 = A.BorderRadius$all(new A.Radius(t2, t2)); t3 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t4 = t3._evaluatable; t3 = t3.parent; t3 = t4.transform$1(0, t3.get$value(t3)); t4 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t5 = t4._evaluatable; t4 = t4.parent; t4 = t5.transform$1(0, t4.get$value(t4)); t5 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t6 = t5._evaluatable; t5 = t5.parent; if (J.$gt$n(t6.transform$1(0, t5.get$value(t5)), 20)) { _this._widget.toString; t5 = A.Icon$(B.IconData_57686_MaterialIcons_null_false, B.Color_4294967295, _null); } else t5 = _null; _check = A.Container$(B.FractionalOffset_0_0, t5, B.Clip_0, _null, _null, new A.BoxDecoration(t1, _null, _null, t2, _null, _null, B.BoxShape_0), _null, t4, _null, _null, _null, _null, _null, t3); _this._widget.toString; t3 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t4 = t3._evaluatable; t3 = t3.parent; t3 = J.$div$n(t4.transform$1(0, t3.get$value(t3)), 2); t3 = A.BorderRadius$all(new A.Radius(t3, t3)); t4 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t2 = t4._evaluatable; t4 = t4.parent; t4 = t2.transform$1(0, t4.get$value(t4)); t2 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t1 = t2._evaluatable; t2 = t2.parent; t2 = t1.transform$1(0, t2.get$value(t2)); t1 = A._lateReadCheck(_this.__RoundedLoadingButtonState__bounceAnimation, _s16_); t5 = t1._evaluatable; t1 = t1.parent; if (J.$gt$n(t5.transform$1(0, t1.get$value(t1)), 20)) { _this._widget.toString; t1 = A.Icon$(B.IconData_57706_MaterialIcons_null_false, B.Color_4294967295, _null); } else t1 = _null; _cross = A.Container$(B.FractionalOffset_0_0, t1, B.Clip_0, _null, _null, new A.BoxDecoration(B.MaterialColor_Map_JNc9P_4294198070, _null, _null, t3, _null, _null, B.BoxShape_0), _null, t2, _null, _null, _null, _null, _null, t4); _this._widget.toString; t4 = _this._rounded_loading_button$_state; childStream = A.StreamBuilder$(new A.RoundedLoadingButtonState_build_closure(_this, new A.SizedBox(24, 24, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 2, _null, new A.AlwaysStoppedAnimation(B.Color_4294967295, type$.AlwaysStoppedAnimation_Color)), _null)), t4, type$.ButtonState); t2 = A._lateReadCheck(_this.__RoundedLoadingButtonState__borderAnimation, "_borderAnimation"); t3 = t2._evaluatable; t2 = t2.parent; t2 = t3.transform$1(0, t2.get$value(t2)); _this._widget.toString; t3 = A._lateReadCheck(_this.__RoundedLoadingButtonState__squeezeAnimation, "_squeezeAnimation"); t1 = t3._evaluatable; t3 = t3.parent; t3 = t1.transform$1(0, t3.get$value(t3)); t1 = _this._widget; t5 = t1.height; t6 = A.BorderRadius$circular(t1.borderRadius); t6 = A.ElevatedButton_styleFrom(_null, _null, _null, 2, _null, _null, _null, new A.Size(t3, t5), _null, _null, B.EdgeInsets_0_0_0_0, t1.color, _null, new A.RoundedRectangleBorder(t6, B.BorderSide_0CF), _null, _null, _null, _null); t1 = A.ElevatedButton$(childStream, _this.get$_btnPressed(), t6); _btn = new A.ButtonTheme(A.ButtonThemeData$(false, _null, _null, _null, _null, 36, _null, _null, B.ButtonBarLayoutBehavior_1, _null, 88, B.EdgeInsets_0_0_0_0, new A.RoundedRectangleBorder(t2, B.BorderSide_0CF), _null, B.ButtonTextTheme_0), t1, _null); if (J.$eq$(t4.get$value(t4), B.ButtonState_3)) t1 = _cross; else t1 = J.$eq$(t4.get$value(t4), B.ButtonState_2) ? _check : _btn; return new A.SizedBox(_null, t5, A.Center$(t1, _null, _null), _null); }, initState$0() { var t1, t2, t3, t4, t5, _this = this, _null = null, _s17_ = "_squeezeAnimation"; _this.super$State$initState(); _this._widget.toString; _this.__RoundedLoadingButtonState__buttonController = A.AnimationController$(_null, B.Duration_500000, _null, 1, _null, _this); _this._widget.toString; _this.__RoundedLoadingButtonState__checkButtonControler = A.AnimationController$(_null, B.Duration_1000000, _null, 1, _null, _this); _this._widget.toString; _this.__RoundedLoadingButtonState__borderController = A.AnimationController$(_null, A.Duration$(0, 0, 0, 250, 0, 0), _null, 1, _null, _this); t1 = _this._widget.height; t2 = type$.Tween_double; t3 = A._lateReadCheck(_this.__RoundedLoadingButtonState__checkButtonControler, "_checkButtonControler"); _this._widget.toString; t4 = t2._eval$1("_AnimatedEvaluation"); t1 = new A._AnimatedEvaluation(A.CurvedAnimation$(B.C_ElasticOutCurve, t3, _null), new A.Tween(0, t1, t2), t4); _this.__RoundedLoadingButtonState__bounceAnimation = t1; t1 = A._lateReadCheck(t1, "_bounceAnimation"); t1.get$parent(t1).addListener$1(0, new A.RoundedLoadingButtonState_initState_closure(_this)); t1 = _this._widget; t3 = t1.width; t1 = t1.height; t5 = A._lateReadCheck(_this.__RoundedLoadingButtonState__buttonController, "_buttonController"); _this._widget.toString; t4 = new A._AnimatedEvaluation(A.CurvedAnimation$(B.Cubic_QB2, t5, _null), new A.Tween(t3, t1, t2), t4); _this.__RoundedLoadingButtonState__squeezeAnimation = t4; t4 = A._lateReadCheck(t4, _s17_); t4.get$parent(t4).addListener$1(0, new A.RoundedLoadingButtonState_initState_closure0(_this)); t4 = A._lateReadCheck(_this.__RoundedLoadingButtonState__squeezeAnimation, _s17_); t4.get$parent(t4).addStatusListener$1(new A.RoundedLoadingButtonState_initState_closure1(_this)); t4 = _this._widget; t2 = A.BorderRadius$circular(t4.borderRadius); t4 = A.BorderRadius$circular(t4.height); t4 = new A._AnimatedEvaluation(A._lateReadCheck(_this.__RoundedLoadingButtonState__borderController, "_borderController"), new A.BorderRadiusTween(t2, t4), type$.BorderRadiusTween._eval$1("_AnimatedEvaluation")); _this.__RoundedLoadingButtonState__borderAnimation = t4; t4 = A._lateReadCheck(t4, "_borderAnimation"); t4.get$parent(t4).addListener$1(0, new A.RoundedLoadingButtonState_initState_closure2(_this)); _this._rounded_loading_button$_state.listen$1(0, new A.RoundedLoadingButtonState_initState_closure3(_this)); t4 = _this._widget.controller; t4._startListener = _this.get$_rounded_loading_button$_start(_this); t4._resetListener = _this.get$_rounded_loading_button$_reset(); }, dispose$0(_) { var _this = this; A._lateReadCheck(_this.__RoundedLoadingButtonState__buttonController, "_buttonController").dispose$0(0); A._lateReadCheck(_this.__RoundedLoadingButtonState__checkButtonControler, "_checkButtonControler").dispose$0(0); A._lateReadCheck(_this.__RoundedLoadingButtonState__borderController, "_borderController").dispose$0(0); _this._rounded_loading_button$_state.close$0(0); _this.super$_RoundedLoadingButtonState_State_TickerProviderStateMixin$dispose(0); }, _btnPressed$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this; var $async$_btnPressed$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; $async$self._rounded_loading_button$_start$0(0); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_btnPressed$0, $async$completer); }, _rounded_loading_button$_start$0(_) { var _this = this; if (_this._framework$_element == null) return; _this._rounded_loading_button$_state.add$1(0, B.ButtonState_1); A._lateReadCheck(_this.__RoundedLoadingButtonState__borderController, "_borderController").forward$0(0); A._lateReadCheck(_this.__RoundedLoadingButtonState__buttonController, "_buttonController").forward$0(0); _this._widget.toString; }, _rounded_loading_button$_reset$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, t1; var $async$_rounded_loading_button$_reset$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } $async$self._rounded_loading_button$_state.add$1(0, B.ButtonState_0); A._lateReadCheck($async$self.__RoundedLoadingButtonState__buttonController, "_buttonController").reverse$0(0); A._lateReadCheck($async$self.__RoundedLoadingButtonState__borderController, "_borderController").reverse$0(0); t1 = A._lateReadCheck($async$self.__RoundedLoadingButtonState__checkButtonControler, "_checkButtonControler"); t1.set$value(0, t1.lowerBound); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_rounded_loading_button$_reset$0, $async$completer); } }; A.RoundedLoadingButtonState_build_closure.prototype = { call$2(context, snapshot) { return A.AnimatedSwitcher$(J.$eq$(snapshot.data, B.ButtonState_1) ? this._loader : this.$this._widget.child, B.Duration_200000, A.animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure()); }, $signature: 2848 }; A.RoundedLoadingButtonState_initState_closure.prototype = { call$0() { this.$this.setState$1(new A.RoundedLoadingButtonState_initState__closure1()); }, $signature: 0 }; A.RoundedLoadingButtonState_initState__closure1.prototype = { call$0() { }, $signature: 0 }; A.RoundedLoadingButtonState_initState_closure0.prototype = { call$0() { this.$this.setState$1(new A.RoundedLoadingButtonState_initState__closure0()); }, $signature: 0 }; A.RoundedLoadingButtonState_initState__closure0.prototype = { call$0() { }, $signature: 0 }; A.RoundedLoadingButtonState_initState_closure1.prototype = { call$1(state) { var t1; if (state === B.AnimationStatus_3) { this.$this._widget.toString; t1 = true; } else t1 = false; if (t1) this.$this._widget.onPressed.call$0(); }, $signature: 42 }; A.RoundedLoadingButtonState_initState_closure2.prototype = { call$0() { this.$this.setState$1(new A.RoundedLoadingButtonState_initState__closure()); }, $signature: 0 }; A.RoundedLoadingButtonState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A.RoundedLoadingButtonState_initState_closure3.prototype = { call$1($event) { var t1 = this.$this; if (t1._framework$_element == null) return; t1._widget.controller._rounded_loading_button$_state.add$1(0, $event); }, $signature: 2849 }; A.RoundedLoadingButtonController.prototype = {}; A._RoundedLoadingButtonState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.DeferStream.prototype = { get$isBroadcast() { return true; }, listen$4$cancelOnError$onDone$onError(_, onData, cancelOnError, onDone, onError) { var e, s, exception, t1, t2, t3, t4, _null = null, stream = null; try { stream = this._factory.call$0(); } catch (exception) { e = A.unwrapException(exception); s = A.getTraceFromException(exception); t1 = e; t2 = s; A.checkNotNullable(t1, "error", type$.Object); t3 = this.$ti._eval$1("_AsyncStreamController<1>"); t4 = new A._AsyncStreamController(_null, _null, _null, _null, t3); t4._addError$2(t1, t2 == null ? A.AsyncError_defaultStackTrace(t1) : t2); t4._closeUnchecked$0(); return new A._ControllerStream(t4, t3._eval$1("_ControllerStream<1>")).listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); } return J.listen$4$cancelOnError$onDone$onError$z(stream, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; A._MissingCase.prototype = { toString$0(_) { return "_MissingCase." + this._core$_name; } }; A.ValueStreamError.prototype = { toString$0(_) { switch (this._missingCase.index) { case 0: return "ValueStream has no value. You should check ValueStream.hasValue before accessing ValueStream.value, or use ValueStream.valueOrNull instead."; case 1: return "ValueStream has no error. You should check ValueStream.hasError before accessing ValueStream.error, or use ValueStream.errorOrNull instead."; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.BehaviorSubject.prototype = { get$stream(_) { return this; }, get$value(_) { var value = this._wrapper.value; if (value !== B.C__Empty) return this.$ti._precomputed1._as(value); throw A.wrapException(new A.ValueStreamError(B._MissingCase_0)); } }; A.BehaviorSubject__deferStream_closure.prototype = { call$0() { var value, t2, _this = this, t1 = _this.wrapper, errorAndStackTrace = t1.errorAndStackTrace; if (errorAndStackTrace != null && !t1.isValue) { t1 = _this.controller; return new A.StartWithErrorStreamTransformer(errorAndStackTrace.error, errorAndStackTrace.stackTrace, _this.T._eval$1("StartWithErrorStreamTransformer<0>")).bind$1(0, new A._BroadcastStream(t1, A._instanceType(t1)._eval$1("_BroadcastStream<1>"))); } value = t1.value; if (value !== B.C__Empty && t1.isValue) { t1 = _this.controller; t2 = _this.T; return new A.StartWithStreamTransformer(t2._as(value), t2._eval$1("StartWithStreamTransformer<0>")).bind$1(0, new A._BroadcastStream(t1, A._instanceType(t1)._eval$1("_BroadcastStream<1>"))); } t1 = _this.controller; return new A._BroadcastStream(t1, A._instanceType(t1)._eval$1("_BroadcastStream<1>")); }, $signature() { return this.T._eval$1("Stream<0>()"); } }; A._Wrapper.prototype = { get$value(receiver) { return this.value; } }; A.Subject.prototype = { get$stream(_) { return this; }, addError$2(error, stackTrace) { if (this._isAddingStreamItems) throw A.wrapException(A.StateError$("You cannot add an error while items are being added from addStream")); this._subject$_addError$2(error, stackTrace); }, _subject$_addError$2(error, stackTrace) { var t1 = this._wrapper; t1.errorAndStackTrace = new A.ErrorAndStackTrace(error, stackTrace); t1.isValue = false; this._subject$_controller.addError$2(error, stackTrace); }, addStream$2$cancelOnError(_, source, cancelOnError) { var t2, _this = this, t1 = {}; if (_this._isAddingStreamItems) throw A.wrapException(A.StateError$(string$.You_ca)); t2 = new A._Future($.Zone__current, type$._Future_void); t1.isOnDoneCalled = false; t1 = new A.Subject_addStream_complete(t1, _this, new A._AsyncCompleter(t2, type$._AsyncCompleter_void)); _this._isAddingStreamItems = true; source.listen$4$cancelOnError$onDone$onError(0, new A.Subject_addStream_closure(_this), cancelOnError, new A.Subject_addStream_closure0(t1), new A.Subject_addStream_closure1(_this, cancelOnError, t1)); return t2; }, addStream$1($receiver, source) { return this.addStream$2$cancelOnError($receiver, source, null); }, add$1(_, $event) { var t1; if (this._isAddingStreamItems) throw A.wrapException(A.StateError$(string$.You_ca)); t1 = this._wrapper; t1.value = $event; t1.isValue = true; this._subject$_controller.add$1(0, $event); }, close$0(_) { if (this._isAddingStreamItems) throw A.wrapException(A.StateError$("You cannot close the subject while items are being added from addStream")); return this._subject$_controller.close$0(0); }, $isEventSink: 1 }; A.Subject_addStream_complete.prototype = { call$0() { var t1 = this._box_0; if (!t1.isOnDoneCalled) { t1.isOnDoneCalled = true; this.$this._isAddingStreamItems = false; this.completer.complete$0(0); } }, $signature: 0 }; A.Subject_addStream_closure.prototype = { call$1($event) { var t1 = this.$this, t2 = t1._wrapper; t2.value = $event; t2.isValue = true; t1._subject$_controller.add$1(0, $event); }, $signature() { return this.$this.$ti._eval$1("~(1)"); } }; A.Subject_addStream_closure1.prototype = { call$2(e, s) { this.$this._subject$_addError$2(e, s); }, $signature: 120 }; A.Subject_addStream_closure0.prototype = { call$0() { this.complete.call$0(); }, $signature: 0 }; A._StartWithStreamSink.prototype = { onData$1(data) { return this.get$sink().add$1(0, data); }, onError$2(_, e, st) { return this.get$sink().addError$2(e, st); }, onDone$0() { return this.get$sink().close$0(0); }, onCancel$0(_) { }, onListen$0() { this.get$sink().add$1(0, this._startValue); }, onPause$0(_) { }, onResume$0(_) { } }; A.StartWithStreamTransformer.prototype = { bind$1(_, stream) { var t1 = this.$ti._precomputed1; return A.forwardStream(stream, new A.StartWithStreamTransformer_bind_closure(this), t1, t1); } }; A.StartWithStreamTransformer_bind_closure.prototype = { call$0() { var t1 = this.$this; return new A._StartWithStreamSink(t1.startValue, t1.$ti._eval$1("_StartWithStreamSink<1>")); }, $signature() { return this.$this.$ti._eval$1("_StartWithStreamSink<1>()"); } }; A._StartWithErrorStreamSink.prototype = { onData$1(data) { return this.get$sink().add$1(0, data); }, onError$2(_, e, st) { return this.get$sink().addError$2(e, st); }, onDone$0() { return this.get$sink().close$0(0); }, onCancel$0(_) { }, onListen$0() { this.get$sink().addError$2(this._e, this._st); }, onPause$0(_) { }, onResume$0(_) { } }; A.StartWithErrorStreamTransformer.prototype = { bind$1(_, stream) { var t1 = this.$ti._precomputed1; return A.forwardStream(stream, new A.StartWithErrorStreamTransformer_bind_closure(this), t1, t1); } }; A.StartWithErrorStreamTransformer_bind_closure.prototype = { call$0() { var t1 = this.$this; return new A._StartWithErrorStreamSink(t1.error, t1.stackTrace, t1.$ti._eval$1("_StartWithErrorStreamSink<1>")); }, $signature() { return this.$this.$ti._eval$1("_StartWithErrorStreamSink<1>()"); } }; A._Empty.prototype = { toString$0(_) { return "<>"; } }; A.ErrorAndStackTrace.prototype = { toString$0(_) { return "ErrorAndStackTrace{error: " + A.S(this.error) + ", stacktrace: " + A.S(this.stackTrace) + "}"; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.ErrorAndStackTrace && A.getRuntimeType(_this) === A.getRuntimeType(other) && J.$eq$(_this.error, other.error) && _this.stackTrace == other.stackTrace; else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.error) ^ J.get$hashCode$(this.stackTrace)) >>> 0; } }; A.ForwardingSink.prototype = { get$sink() { var t1 = this._forwarding_sink$_sink; return t1 == null ? A.throwExpression(A.StateError$("Must call setSink(sink) before accessing!")) : t1; } }; A._forwardMulti_closure.prototype = { call$1(controller) { var t1 = {}, sink = this.sinkFactory.call$0(); sink._forwarding_sink$_sink = new A._MultiControllerSink(controller, this.R._eval$1("_MultiControllerSink<0>")); t1.subscription = null; t1.cancelled = false; sink.onListen$0(); new A._forwardMulti_closure_listenToUpstream(t1, this.stream, sink).call$0(); controller.onCancel = new A._forwardMulti__closure(t1, sink); }, $signature() { return this.R._eval$1("~(MultiStreamController<0>)"); } }; A._forwardMulti_closure_listenToUpstream.prototype = { call$1(_) { var t2, t3, t4, t1 = this._box_0; if (t1.cancelled) return; t2 = this.sink; t3 = t2.get$onData(); t4 = t2.get$onError(t2); t1.subscription = this.stream.listen$3$onDone$onError(0, t3, t2.get$onDone(), t4); }, call$0() { return this.call$1(null); }, $signature: 698 }; A._forwardMulti__closure.prototype = { call$0() { var t2, future, t1 = this._box_0; t1.cancelled = true; t2 = t1.subscription; future = t2 == null ? null : t2.cancel$0(0); t1.subscription = null; return A._waitFutures(future, this.sink.onCancel$0(0)); }, $signature: 0 }; A._forward_closure.prototype = { call$0() { return this.sinkFactory.call$0(); }, $signature() { return this.T._eval$1("@<0>")._bind$1(this.R)._eval$1("ForwardingSink<1,2>()"); } }; A._forward_closure0.prototype = { call$0() { var _this = this, t1 = _this.sink, t2 = _this.controller; t1._readFinal$0()._forwarding_sink$_sink = t2; t1._readFinal$0().onListen$0(); new A._forward_closure_listenToUpstream(_this._box_0, _this.stream, t1, t2).call$0(); }, $signature: 0 }; A._forward_closure_listenToUpstream.prototype = { call$1(_) { var t2, t3, t4, t5, _this = this, t1 = _this._box_0; if (t1.cancelled) return; t2 = _this.stream; t3 = _this.sink; t4 = t3._readFinal$0().get$onData(); t5 = J.get$onError$x(t3._readFinal$0()); t1.subscription = t2.listen$3$onDone$onError(0, t4, t3._readFinal$0().get$onDone(), t5); if (!t2.get$isBroadcast()) { t2 = _this.controller; t2.set$onPause(0, new A._forward__listenToUpstream_closure(t1, t3)); t2.set$onResume(0, new A._forward__listenToUpstream_closure0(t1, t3)); } }, call$0() { return this.call$1(null); }, $signature: 698 }; A._forward__listenToUpstream_closure.prototype = { call$0() { this._box_0.subscription.pause$0(0); J.onPause$0$z(this.sink._readFinal$0()); }, $signature: 0 }; A._forward__listenToUpstream_closure0.prototype = { call$0() { this._box_0.subscription.resume$0(0); J.onResume$0$z(this.sink._readFinal$0()); }, $signature: 0 }; A._forward_closure1.prototype = { call$0() { var t2, future, t1 = this._box_0; t1.cancelled = true; t2 = t1.subscription; future = t2 == null ? null : t2.cancel$0(0); t1.subscription = null; return A._waitFutures(future, J.onCancel$0$z(this.sink._readFinal$0())); }, $signature: 0 }; A._MultiControllerSink.prototype = { add$1(_, $event) { var t1 = this.controller, t2 = t1._state; if (t2 >= 4) A.throwExpression(t1._badEventState$0()); if ((t2 & 1) !== 0) t1.get$_async$_subscription()._async$_add$1(0, $event); return null; }, addError$2(error, stackTrace) { var t1 = this.controller, t2 = t1._state; if (t2 >= 4) A.throwExpression(t1._badEventState$0()); if ((t2 & 1) !== 0) { t1 = t1.get$_async$_subscription(); t1._addError$2(error, stackTrace == null ? B._StringStackTrace_3uE : stackTrace); } return null; }, close$0(_) { return this.controller.closeSync$0(); }, $isEventSink: 1 }; A.WebEnvironmentVariables.prototype = {}; A.EnvironmentVariables.prototype = {}; A.HubAdapter.prototype = { addBreadcrumb$2$hint(crumb, hint) { return $.$get$Sentry__hub().addBreadcrumb$2$hint(crumb, hint); }, configureScope$1(callback) { return $.$get$Sentry__hub().configureScope$1(callback); }, startTransaction$10$autoFinishAfter$bindToScope$customSamplingContext$description$onFinish$startTimestamp$trimEnd$waitForChildren($name, operation, autoFinishAfter, bindToScope, customSamplingContext, description, onFinish, startTimestamp, trimEnd, waitForChildren) { return $.$get$Sentry__hub().startTransaction$10$autoFinishAfter$bindToScope$customSamplingContext$description$onFinish$startTimestamp$trimEnd$waitForChildren($name, operation, autoFinishAfter, bindToScope, customSamplingContext, description, onFinish, startTimestamp, true, true); }, startTransaction$6$autoFinishAfter$onFinish$trimEnd$waitForChildren($name, operation, autoFinishAfter, onFinish, trimEnd, waitForChildren) { return this.startTransaction$10$autoFinishAfter$bindToScope$customSamplingContext$description$onFinish$startTimestamp$trimEnd$waitForChildren($name, operation, autoFinishAfter, null, null, null, onFinish, null, trimEnd, waitForChildren); } }; A.NoOpClient.prototype = {$isClient0: 1}; A.NoOpHub.prototype = { configureScope$1(callback) { }, addBreadcrumb$2$hint(crumb, hint) { }, startTransaction$10$autoFinishAfter$bindToScope$customSamplingContext$description$onFinish$startTimestamp$trimEnd$waitForChildren($name, operation, autoFinishAfter, bindToScope, customSamplingContext, description, onFinish, startTimestamp, trimEnd, waitForChildren) { return $.$get$NoOpSentrySpan__instance(); } }; A.NoOpSentrySpan.prototype = { finish$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void); var $async$finish$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$finish$0, $async$completer); }, setData$2(_, key, value) { }, get$status(_) { return null; }, set$status(_, $status) { } }; A.WebPlatform.prototype = {}; A.Platform1.prototype = {}; A.PlatformChecker.prototype = {}; A.Breadcrumb.prototype = { toJson$0() { var t2, _this = this, json = A.LinkedHashMap_LinkedHashMap$_literal(["timestamp", A.formatDateAsIso8601WithMillisPrecision(_this.timestamp)], type$.String, type$.dynamic), t1 = _this.message; if (t1 != null) json.$indexSet(0, "message", t1); json.$indexSet(0, "category", _this.category); t1 = _this.data; t2 = t1 == null ? null : t1._length !== 0; if (t2 === true) json.$indexSet(0, "data", t1); json.$indexSet(0, "level", _this.level.name); json.$indexSet(0, "type", _this.type); return json; }, get$message(receiver) { return this.message; } }; A.SentryLevel.prototype = { get$name(receiver) { return this.name; } }; A.SpanStatus.prototype = { toString$0(_) { return this._span_status$_value; }, get$hashCode(_) { return J.get$hashCode$(this._span_status$_value); }, $eq(_, o) { if (o == null) return false; if (o instanceof A.SpanStatus) return o._span_status$_value == this._span_status$_value && o._minHttpStatusCode === this._minHttpStatusCode && o._maxHttpStatusCode === this._maxHttpStatusCode; return false; } }; A.SentryMeasurement.prototype = { toJson$0() { return A.LinkedHashMap_LinkedHashMap$_literal(["value", this.value], type$.String, type$.num); }, get$name(receiver) { return this.name; }, get$value(receiver) { return this.value; } }; A.SentryOptions.prototype = { get$logger() { return A.sentry_options__noOpLogger$closure(); }, logger$4$exception$stackTrace(arg0, arg1, arg2, arg3) { return this.get$logger().call$4$exception$stackTrace(arg0, arg1, arg2, arg3); } }; A.ISentrySpan.prototype = {}; A.NoOpTransport.prototype = {}; A.SentryFlutterWeb.prototype = { handleMethodCall$1($call) { return this.handleMethodCall$body$SentryFlutterWeb($call); }, handleMethodCall$body$SentryFlutterWeb($call) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$handleMethodCall$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = ""; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$handleMethodCall$1, $async$completer); } }; A.SentryNavigatorObserver.prototype = { didPush$2(route, previousRoute) { var t1, _this = this; _this.super$RouteObserver$didPush(route, previousRoute); _this._setCurrentRoute$1(route._navigator$_settings.name); t1 = previousRoute == null ? null : previousRoute._navigator$_settings; _this._addBreadcrumb$3$from$to$type(t1, route._navigator$_settings, "didPush"); _this._finishTransaction$0(); t1 = route._navigator$_settings; _this._startTransaction$2(t1.name, t1.$arguments); }, didReplace$2$newRoute$oldRoute(newRoute, oldRoute) { var t1, t2; this.super$NavigatorObserver$didReplace(newRoute, oldRoute); t1 = newRoute == null; this._setCurrentRoute$1(t1 ? null : newRoute._navigator$_settings.name); t2 = oldRoute == null ? null : oldRoute._navigator$_settings; this._addBreadcrumb$3$from$to$type(t2, t1 ? null : newRoute._navigator$_settings, "didReplace"); }, didPop$2(route, previousRoute) { var t1, t2, _this = this, _null = null; _this.super$RouteObserver$didPop(route, previousRoute); t1 = previousRoute == null; _this._setCurrentRoute$1(t1 ? _null : previousRoute._navigator$_settings.name); t2 = route._navigator$_settings; _this._addBreadcrumb$3$from$to$type(t2, t1 ? _null : previousRoute._navigator$_settings, "didPop"); _this._finishTransaction$0(); t2 = t1 ? _null : previousRoute._navigator$_settings.name; _this._startTransaction$2(t2, t1 ? _null : previousRoute._navigator$_settings.$arguments); }, _addBreadcrumb$3$from$to$type(from, to, type) { var t3, _null = null, _s10_ = "navigation", t1 = from == null, fromArgs = A.RouteObserverBreadcrumb__formatArgs(t1 ? _null : from.$arguments), t2 = to == null, toArgs = A.RouteObserverBreadcrumb__formatArgs(t2 ? _null : to.$arguments); t1 = t1 ? _null : from.name; t2 = t2 ? _null : to.name; t3 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t3.$indexSet(0, "state", type); if (t1 != null) t3.$indexSet(0, "from", t1); if (fromArgs != null) t3.$indexSet(0, "from_arguments", fromArgs); if (t2 != null) t3.$indexSet(0, "to", t2); if (toArgs != null) t3.$indexSet(0, "to_arguments", toArgs); t1 = new A.DateTime(Date.now(), false).toUtc$0(); this._hub.toString; $.$get$Sentry__hub().addBreadcrumb$2$hint(new A.RouteObserverBreadcrumb(_null, _s10_, t3, B.SentryLevel_info, _s10_, t1), _null); }, _setCurrentRoute$1($name) { if ($name == null) return; }, _startTransaction$2($name, $arguments) { return this._startTransaction$body$SentryNavigatorObserver($name, $arguments); }, _startTransaction$body$SentryNavigatorObserver($name, $arguments) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$_startTransaction$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($name == null) { // goto return $async$goto = 1; break; } if ($name === "/") $name = 'root ("/")'; t1 = $async$self._transaction = $async$self._hub.startTransaction$6$autoFinishAfter$onFinish$trimEnd$waitForChildren($name, "navigation", B.Duration_3000000, new A.SentryNavigatorObserver__startTransaction_closure($async$self), true, true); if (t1 instanceof A.NoOpSentrySpan) { $async$self._transaction = null; // goto return $async$goto = 1; break; } if ($arguments != null) if (t1 != null) t1.setData$2(0, "route_settings_arguments", $arguments); $.$get$Sentry__hub().configureScope$1(new A.SentryNavigatorObserver__startTransaction_closure0($async$self)); $async$goto = 3; return A._asyncAwait($async$self._native.beginNativeFramesCollection$0(), $async$_startTransaction$2); case 3: // returning from await. case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_startTransaction$2, $async$completer); }, _finishTransaction$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$_finishTransaction$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._transaction; if (t1 != null) if (t1.get$status(t1) == null) t1.set$status(0, A.SpanStatus$ok()); t1 = $async$self._transaction; $async$goto = 3; return A._asyncAwait(t1 == null ? null : t1.finish$0(0), $async$_finishTransaction$0); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_finishTransaction$0, $async$completer); } }; A.SentryNavigatorObserver__startTransaction_closure.prototype = { call$1(transaction) { return this.$call$body$SentryNavigatorObserver__startTransaction_closure(transaction); }, $call$body$SentryNavigatorObserver__startTransaction_closure(transaction) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, nativeFrames; var $async$call$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = A._lateReadCheck(transaction.__SentryTracer__rootSpan, "_rootSpan"); $async$goto = 2; return A._asyncAwait($async$self.$this._native.endNativeFramesCollection$1(A._lateReadCheck(t1._sentry_span$_context.__SentrySpanContext_traceId, "traceId")), $async$call$1); case 2: // returning from await. nativeFrames = $async$result; if (nativeFrames != null) B.JSArray_methods.addAll$1(transaction._measurements, A._setArrayType([new A.SentryMeasurement("frames_total", nativeFrames.totalFrames), new A.SentryMeasurement("frames_slow", nativeFrames.slowFrames), new A.SentryMeasurement("frames_frozen", nativeFrames.frozenFrames)], type$.JSArray_SentryMeasurement)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$call$1, $async$completer); }, $signature: 2851 }; A.SentryNavigatorObserver__startTransaction_closure0.prototype = { call$1(scope) { if (scope._span == null) scope.set$span(0, this.$this._transaction); }, $signature: 2852 }; A.RouteObserverBreadcrumb.prototype = {}; A.RouteObserverBreadcrumb__formatArgs_closure.prototype = { call$2(key, value) { return new A.MapEntry(key, J.toString$0$(value), type$.MapEntry_String_String); }, $signature: 2853 }; A.SentryNative.prototype = { beginNativeFramesCollection$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$beginNativeFramesCollection$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._nativeChannel; $async$goto = 2; return A._asyncAwait(t1 == null ? null : t1.beginNativeFrames$0(), $async$beginNativeFramesCollection$0); case 2: // returning from await. // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$beginNativeFramesCollection$0, $async$completer); }, endNativeFramesCollection$1(traceId) { return this.endNativeFramesCollection$body$SentryNative(traceId); }, endNativeFramesCollection$body$SentryNative(traceId) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_NativeFrames), $async$returnValue, $async$self = this, t1; var $async$endNativeFramesCollection$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._nativeChannel; $async$goto = 3; return A._asyncAwait(t1 == null ? null : t1.endNativeFrames$1(traceId), $async$endNativeFramesCollection$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$endNativeFramesCollection$1, $async$completer); } }; A.NativeFrames.prototype = {}; A.SharedPreferences.prototype = { containsKey$1(_, key) { return J.containsKey$1$x(this._preferenceCache, key); }, remove$1(_, key) { J.remove$1$ax(this._preferenceCache, key); return $.$get$SharedPreferencesStorePlatform__instance().remove$1(0, "flutter." + key); }, _setValue$3(valueType, key, value) { A.ArgumentError_checkNotNull(value, "value"); J.$indexSet$ax(this._preferenceCache, key, value); return $.$get$SharedPreferencesStorePlatform__instance().setValue$3(valueType, "flutter." + key, value); } }; A.MethodChannelSharedPreferencesStore.prototype = { remove$1(_, key) { return this.remove$body$MethodChannelSharedPreferencesStore(0, key); }, remove$body$MethodChannelSharedPreferencesStore(_, key) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$remove$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.MethodChannel_YQ9._invokeMethod$1$3$arguments$missingOk("remove", A.LinkedHashMap_LinkedHashMap$_literal(["key", key], type$.String, type$.dynamic), false, type$.bool), $async$remove$1); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$remove$1, $async$completer); }, setValue$3(valueType, key, value) { return this.setValue$body$MethodChannelSharedPreferencesStore(valueType, key, value); }, setValue$body$MethodChannelSharedPreferencesStore(valueType, key, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$setValue$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(B.MethodChannel_YQ9._invokeMethod$1$3$arguments$missingOk("set" + valueType, A.LinkedHashMap_LinkedHashMap$_literal(["key", key, "value", value], type$.String, type$.dynamic), false, type$.bool), $async$setValue$3); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$setValue$3, $async$completer); }, getAll$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, t2, preferences; var $async$getAll$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; t2 = type$.Object; $async$goto = 3; return A._asyncAwait(B.MethodChannel_YQ9.invokeMapMethod$2$1("getAll", t1, t2), $async$getAll$0); case 3: // returning from await. preferences = $async$result; if (preferences == null) { $async$returnValue = A.LinkedHashMap_LinkedHashMap$_empty(t1, t2); // goto return $async$goto = 1; break; } $async$returnValue = preferences; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getAll$0, $async$completer); } }; A.SharedPreferencesStorePlatform.prototype = {}; A.SharedPreferencesPlugin.prototype = { getAll$0(_) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, $async$self = this, t1, t2, t3, t4, allData; var $async$getAll$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start allData = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Object); for (t1 = $async$self.get$_storedFlutterKeys(), t2 = J.get$iterator$ax(t1.__internal$_iterable), t1 = new A.WhereIterator(t2, t1._f, t1.$ti._eval$1("WhereIterator<1>")); t1.moveNext$0();) { t3 = t2.get$current(t2); t4 = window.localStorage.getItem(t3); t4.toString; allData.$indexSet(0, t3, $async$self._decodeValue$1(t4)); } $async$returnValue = allData; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$getAll$0, $async$completer); }, remove$1(_, key) { return this.remove$body$SharedPreferencesPlugin(0, key); }, remove$body$SharedPreferencesPlugin(_, key) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$remove$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.startsWith$1(key, "flutter.")) A.throwExpression(A.FormatException$(string$.Shared, key, 0)); t1 = window.localStorage; (t1 && B.Storage_methods).remove$1(t1, key); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$remove$1, $async$completer); }, setValue$3(valueType, key, value) { return this.setValue$body$SharedPreferencesPlugin(valueType, key, value); }, setValue$body$SharedPreferencesPlugin(valueType, key, value) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$setValue$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!B.JSString_methods.startsWith$1(key, "flutter.")) A.throwExpression(A.FormatException$(string$.Shared, key, 0)); window.localStorage.setItem(key, B.C_JsonCodec.encode$1(value)); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$setValue$3, $async$completer); }, get$_storedFlutterKeys() { var t1 = window.localStorage; t1 = (t1 && B.Storage_methods).get$keys(t1); return new A.WhereIterable(t1, new A.SharedPreferencesPlugin__storedFlutterKeys_closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, _decodeValue$1(encodedValue) { var decodedValue = B.C_JsonCodec.decode$1(0, encodedValue); if (type$.List_dynamic._is(decodedValue)) return J.cast$1$0$ax(decodedValue, type$.String); decodedValue.toString; return decodedValue; } }; A.SharedPreferencesPlugin__storedFlutterKeys_closure.prototype = { call$1(key) { return J.startsWith$1$s(key, "flutter."); }, $signature: 52 }; A.AppleLogoPainter.prototype = { paint$2(canvas, size) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, paint = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); paint.set$color(0, this.color); t1 = size._dx; t2 = size._dy; t3 = A.Path_Path(); t4 = t1 * 0.50779; t5 = t2 * 0.28732; t3.moveTo$2(0, t4, t5); t6 = t2 * 0.24404; t3.cubicTo$6(0, t1 * 0.4593, t5, t1 * 0.38424, t2 * 0.24241, t1 * 0.30519, t6); t3.cubicTo$6(0, t1 * 0.2009, t2 * 0.24512, t1 * 0.10525, t2 * 0.29328, t1 * 0.05145, t2 * 0.36957); t3.cubicTo$6(0, t1 * -0.05683, t2 * 0.5227, t1 * 0.02355, t2 * 0.74888, t1 * 0.12916, t2 * 0.87333); t7 = t2 * 0.99995; t3.cubicTo$6(0, t1 * 0.18097, t2 * 0.93394, t1 * 0.24209, t2 * 1.00211, t1 * 0.32313, t7); t8 = t2 * 0.99724; t9 = t2 * 0.95883; t3.cubicTo$6(0, t1 * 0.40084, t8, t1 * 0.43007, t9, t1 * 0.52439, t9); t3.cubicTo$6(0, t1 * 0.61805, t9, t1 * 0.64462, t7, t1 * 0.72699, t2 * 0.99833); t3.cubicTo$6(0, t1 * 0.81069, t8, t1 * 0.86383, t2 * 0.93664, t1 * 0.91498, t2 * 0.8755); t3.cubicTo$6(0, t1 * 0.97409, t2 * 0.80515, t1 * 0.99867, t2 * 0.73698, t1, t2 * 0.73319); t3.cubicTo$6(0, t1 * 0.99801, t2 * 0.73265, t1 * 0.83726, t2 * 0.68233, t1 * 0.83526, t2 * 0.53082); t3.cubicTo$6(0, t1 * 0.83394, t2 * 0.4042, t1 * 0.96214, t2 * 0.3436, t1 * 0.96812, t2 * 0.34089); t3.cubicTo$6(0, t1 * 0.89505, t2 * 0.25378, t1 * 0.78279, t6, t1 * 0.7436, t2 * 0.24187); t3.cubicTo$6(0, t1 * 0.6413, t2 * 0.23538, t1 * 0.55561, t5, t4, t5); t3.close$0(0); t5 = t1 * 0.68049; t4 = t2 * 0.15962; t3.moveTo$2(0, t5, t4); t3.cubicTo$6(0, t1 * 0.72367, t2 * 0.11742, t1 * 0.75223, t2 * 0.05844, t1 * 0.74426, 0); t3.cubicTo$6(0, t1 * 0.68249, t2 * 0.00216, t1 * 0.60809, t2 * 0.03355, t1 * 0.56359, t2 * 0.07575); t3.cubicTo$6(0, t1 * 0.52373, t2 * 0.11309, t1 * 0.48919, t2 * 0.17315, t1 * 0.49849, t2 * 0.23051); t3.cubicTo$6(0, t1 * 0.56691, t2 * 0.23484, t1 * 0.63732, t2 * 0.20183, t5, t4); t3.close$0(0); canvas.drawPath$2(0, t3, paint); }, shouldRepaint$1(oldDelegate) { return !oldDelegate.color.$eq(0, this.color); } }; A.SignInWithAppleButton.prototype = { get$_sign_in_with_apple_button$_backgroundColor(_) { switch (0) { case 0: return B.Color_4278190080; } }, get$_contrastColor() { switch (0) { case 0: return B.Color_4294967295; } }, get$_sign_in_with_apple_button$_decoration() { switch (0) { case 0: case 1: return null; } }, build$1(_, context) { var children, t1, t2, _this = this, _null = null, textWidget = A.Text$("Sign in with Apple", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _this.get$_contrastColor(), _null, _null, _null, _null, _null, ".SF Pro Text", _null, _null, 18.919999999999998, _null, _null, _null, _null, false, _null, -0.41, _null, _null, _null, _null, _null, _null), B.TextAlign_2, _null, _null), appleIcon = A.Container$(_null, A.Center$(new A.SizedBox(15.25806451612903, 18.919999999999998, A.CustomPaint$(_null, _null, _null, new A.AppleLogoPainter(_this.get$_contrastColor(), _null), B.Size_0_0), _null), _null, _null), B.Clip_0, _null, _null, _null, _null, 30, _null, _null, new A.EdgeInsets(0, 0, 0, 4), _null, _null, 28); switch (0) { case 0: children = A._setArrayType([appleIcon, new A.Flexible(1, B.FlexFit_1, textWidget, _null)], type$.JSArray_Widget); break; } t1 = _this.get$_sign_in_with_apple_button$_backgroundColor(_this); t2 = _this.get$_sign_in_with_apple_button$_decoration(); return new A.SizedBox(_null, 44, A.SizedBox$expand(A.CupertinoButton$(B.Alignment_0_0, B.BorderRadius_tLn3, A.Container$(_null, A.Row$(children, B.CrossAxisAlignment_2, B.MainAxisAlignment_2, B.MainAxisSize_1, _null), B.Clip_0, _null, _null, t2, _null, 44, _null, _null, B.EdgeInsets_16_0_16_0, _null, _null, _null), t1, B.CupertinoDynamicColor_xDe, 44, _this.onPressed, B.EdgeInsets_0_0_0_0, 0.4)), _null); } }; A.SignInWithAppleButtonStyle.prototype = { toString$0(_) { return "SignInWithAppleButtonStyle." + this._core$_name; } }; A.IconAlignment.prototype = { toString$0(_) { return "IconAlignment." + this._core$_name; } }; A.AuthorizationCredentialAppleID.prototype = { toString$0(_) { var _this = this; return "AuthorizationAppleID(" + A.S(_this.userIdentifier) + ", " + A.S(_this.givenName) + ", " + A.S(_this.familyName) + ", " + A.S(_this.email) + ", " + A.S(_this.state) + ")"; } }; A.AppleIDAuthorizationScopes.prototype = { toString$0(_) { return "AppleIDAuthorizationScopes." + this._core$_name; } }; A.AppleIDAuthorizationRequest.prototype = { toString$0(_) { return "AppleIDAuthorizationRequest(scopes: " + A.S(this.scopes) + ")"; }, toJson$0() { var t2, t3, _i, scope, t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t1.$indexSet(0, "type", "appleid"); t2 = A._setArrayType([], type$.JSArray_String); for (t3 = this.scopes, _i = 0; _i < 2; ++_i) { scope = t3[_i]; if (scope === B.AppleIDAuthorizationScopes_0) t2.push("email"); else if (scope === B.AppleIDAuthorizationScopes_1) t2.push("fullName"); } t1.$indexSet(0, "scopes", t2); return t1; } }; A.UnknownSignInWithAppleException.prototype = { toString$0(_) { return "UnknownSignInWithAppleException(" + A.S(this.code) + ", " + A.S(this.message) + ", " + A.S(this.details) + ")"; } }; A.SignInWithAppleNotSupportedException.prototype = { toString$0(_) { return "SignInWithAppleNotSupportedException(" + this.message + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.AuthorizationErrorCode.prototype = { toString$0(_) { return "AuthorizationErrorCode." + this._core$_name; } }; A.SignInWithAppleAuthorizationException.prototype = { toString$0(_) { return "SignInWithAppleAuthorizationError(" + this.code.toString$0(0) + ", " + this.message + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.SignInWithAppleCredentialsException.prototype = { toString$0(_) { return "SignInWithAppleCredentialsException(" + this.message + ")"; }, $isException: 1, get$message(receiver) { return this.message; } }; A.MethodChannelSignInWithApple.prototype = { getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions(nonce, scopes, state, webAuthenticationOptions) { return this.getAppleIDCredential$body$MethodChannelSignInWithApple(nonce, scopes, state, webAuthenticationOptions); }, getAppleIDCredential$body$MethodChannelSignInWithApple(nonce, scopes, state, webAuthenticationOptions) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.AuthorizationCredentialAppleID), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, response, exception, t1, exception0, $async$exception0; var $async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start if ($.$get$Platform_isAndroid()) { $async$returnValue = $async$self._signInWithAppleAndroid$4$nonce$scopes$state$webAuthenticationOptions(nonce, scopes, state, webAuthenticationOptions); // goto return $async$goto = 1; break; } $async$handler = 4; if (!$.$get$Platform_isIOS() && !$.$get$Platform_isMacOS() && !J.$eq$(J.$index$asx(A._Platform_environment()._collection$_map, "FLUTTER_TEST"), "true")) throw A.wrapException(B.SignInWithAppleNotSupportedException_OdV); $async$goto = 7; return A._asyncAwait(B.MethodChannel_fP4._invokeMethod$1$3$arguments$missingOk("performAuthorizationRequest", A._setArrayType([new A.AppleIDAuthorizationRequest(scopes, nonce, state).toJson$0()], type$.JSArray_Map_String_dynamic), false, type$.Map_dynamic_dynamic), $async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions); case 7: // returning from await. response = $async$result; if (response == null) { t1 = A.Exception_Exception("getKeychainCredential: Received `null` response"); throw A.wrapException(t1); } t1 = A.parseAuthorizationCredentialAppleID(response); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; t1 = A.unwrapException($async$exception0); if (t1 instanceof A.PlatformException) { exception = t1; throw A.wrapException(A.SignInWithAppleException_SignInWithAppleException$fromPlatformException(exception)); } else throw $async$exception0; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions, $async$completer); }, _signInWithAppleAndroid$4$nonce$scopes$state$webAuthenticationOptions(nonce, scopes, state, webAuthenticationOptions) { return this._signInWithAppleAndroid$body$MethodChannelSignInWithApple(nonce, scopes, state, webAuthenticationOptions); }, _signInWithAppleAndroid$body$MethodChannelSignInWithApple(nonce, scopes, state, webAuthenticationOptions) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.AuthorizationCredentialAppleID), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], uri, result, exception, user, $name, authorizationCode, t3, t4, t5, t6, exception0, t1, t2, $async$exception0; var $async$_signInWithAppleAndroid$4$nonce$scopes$state$webAuthenticationOptions = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); t2.$indexSet(0, "client_id", webAuthenticationOptions.clientId); t2.$indexSet(0, "redirect_uri", webAuthenticationOptions.redirectUri.toString$0(0)); t2.$indexSet(0, "scope", new A.MappedListIterable(scopes, new A.MethodChannelSignInWithApple__signInWithAppleAndroid_closure(), A._arrayInstanceType(scopes)._eval$1("MappedListIterable<1,String>")).join$1(0, " ")); t2.$indexSet(0, "response_type", "code id_token"); t2.$indexSet(0, "response_mode", "form_post"); uri = A._Uri__Uri("appleid.apple.com", "/auth/authorize", null, t2, "https").get$_text(); $async$handler = 4; $async$goto = 7; return A._asyncAwait(B.MethodChannel_fP4._invokeMethod$1$3$arguments$missingOk("performAuthorizationRequest", A.LinkedHashMap_LinkedHashMap$_literal(["url", uri], t1, t1), false, t1), $async$_signInWithAppleAndroid$4$nonce$scopes$state$webAuthenticationOptions); case 7: // returning from await. result = $async$result; if (result == null) throw A.wrapException(B.SignInWithAppleAuthorizationException_U6T); t1 = A.Uri_parse(result, 0, null); if (t1.get$queryParameters().containsKey$1(0, "error")) if (J.$eq$(t1.get$queryParameters().$index(0, "error"), "user_cancelled_authorize")) A.throwExpression(B.SignInWithAppleAuthorizationException_PGb); user = t1.get$queryParameters().containsKey$1(0, "user") ? type$.Map_String_dynamic._as(B.C_JsonCodec.decode$1(0, t1.get$queryParameters().$index(0, "user"))) : null; t2 = user == null; $name = !t2 ? type$.nullable_Map_String_dynamic._as(J.$index$asx(user, "name")) : null; authorizationCode = t1.get$queryParameters().$index(0, "code"); if (authorizationCode == null) A.throwExpression(B.SignInWithAppleAuthorizationException_BKW); t3 = A._asStringQ(t2 ? null : J.$index$asx(user, "email")); t2 = $name == null; t4 = A._asStringQ(t2 ? null : J.$index$asx($name, "firstName")); t5 = A._asStringQ(t2 ? null : J.$index$asx($name, "lastName")); t6 = t1.get$queryParameters().$index(0, "id_token"); t1 = t1.get$queryParameters().$index(0, "state"); $async$returnValue = new A.AuthorizationCredentialAppleID(null, t4, t5, t3, authorizationCode, t6, t1); // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; t1 = A.unwrapException($async$exception0); if (t1 instanceof A.PlatformException) { exception = t1; throw A.wrapException(A.SignInWithAppleException_SignInWithAppleException$fromPlatformException(exception)); } else throw $async$exception0; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$_signInWithAppleAndroid$4$nonce$scopes$state$webAuthenticationOptions, $async$completer); } }; A.MethodChannelSignInWithApple__signInWithAppleAndroid_closure.prototype = { call$1(scope) { switch (scope) { case B.AppleIDAuthorizationScopes_0: return "email"; case B.AppleIDAuthorizationScopes_1: return "name"; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, $signature: 2854 }; A.SignInWithApplePlatform.prototype = {}; A.WebAuthenticationOptions.prototype = {}; A.SignInWithApplePlugin.prototype = { getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions(nonce, scopes, state, webAuthenticationOptions) { return this.getAppleIDCredential$body$SignInWithApplePlugin(nonce, scopes, state, webAuthenticationOptions); }, getAppleIDCredential$body$SignInWithApplePlugin(nonce, scopes, state, webAuthenticationOptions) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.AuthorizationCredentialAppleID), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], t1, scope, options, response, e, errorProp, errorCode, t2, _i, t3, t4, t5, t6, exception, $async$exception; var $async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; t2 = webAuthenticationOptions.redirectUri.toString$0(0); t1 = A._setArrayType([], type$.JSArray_String); for (_i = 0; _i < 2; ++_i) { scope = scopes[_i]; if (J.$eq$(scope, B.AppleIDAuthorizationScopes_0)) J.add$1$ax(t1, "email"); else if (J.$eq$(scope, B.AppleIDAuthorizationScopes_1)) J.add$1$ax(t1, "name"); } options = {clientId: webAuthenticationOptions.clientId, scope: J.join$1$ax(t1, " "), redirectURI: t2, state: state, nonce: nonce, usePopup: true}; self.AppleID.auth.init(options); $async$goto = 7; return A._asyncAwait(A.promiseToFuture(self.AppleID.auth.signIn(), type$.SignInResponseI), $async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions); case 7: // returning from await. response = $async$result; t1 = J.get$code$x(J.get$authorization$x(response)); t2 = J.get$id_token$x(J.get$authorization$x(response)); t3 = J.get$state$x(J.get$authorization$x(response)); t4 = J.get$user$x(response); t4 = t4 == null ? null : J.get$email$x(t4); t5 = J.get$user$x(response); if (t5 == null) t5 = null; else { t5 = J.get$name$x(t5); t5 = t5 == null ? null : J.get$firstName$x(t5); } t6 = J.get$user$x(response); if (t6 == null) t6 = null; else { t6 = J.get$name$x(t6); t6 = t6 == null ? null : J.get$lastName$x(t6); } $async$returnValue = new A.AuthorizationCredentialAppleID(null, t5, t6, t4, t1, t2, t3); // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = A.unwrapException($async$exception); errorProp = e.error; errorCode = typeof errorProp == "string" ? errorProp : "UNKNOWN_SIWA_ERROR"; throw A.wrapException(A.SignInWithAppleCredentialsException$("Authentication failed with " + A.S(errorCode))); // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$getAppleIDCredential$4$nonce$scopes$state$webAuthenticationOptions, $async$completer); } }; A.SignInWithAppleInitOptions.prototype = {}; A.SignInResponseI.prototype = {}; A.AuthorizationI.prototype = {}; A.UserI.prototype = {}; A.NameI.prototype = {}; A.SourceFile.prototype = { get$length(_) { return this._decodedChars.length; }, get$lines(_) { return this._lineStarts.length; }, SourceFile$decoded$2$url(decodedChars, url) { var t1, t2, t3, i, c, j; for (t1 = this._decodedChars, t2 = t1.length, t3 = this._lineStarts, i = 0; i < t2; ++i) { c = t1[i]; if (c === 13) { j = i + 1; if (j >= t2 || t1[j] !== 10) c = 10; } if (c === 10) t3.push(i + 1); } }, span$2(_, start, end) { return A._FileSpan$(this, start, end); }, getLine$1(offset) { var t1, _this = this; if (offset < 0) throw A.wrapException(A.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > _this._decodedChars.length) throw A.wrapException(A.RangeError$("Offset " + offset + string$.x20must_ + _this.get$length(_this) + ".")); t1 = _this._lineStarts; if (offset < B.JSArray_methods.get$first(t1)) return -1; if (offset >= B.JSArray_methods.get$last(t1)) return t1.length - 1; if (_this._isNearCachedLine$1(offset)) { t1 = _this._cachedLine; t1.toString; return t1; } return _this._cachedLine = _this._file$_binarySearch$1(offset) - 1; }, _isNearCachedLine$1(offset) { var t2, t3, t1 = this._cachedLine; if (t1 == null) return false; t2 = this._lineStarts; if (offset < t2[t1]) return false; t3 = t2.length; if (t1 >= t3 - 1 || offset < t2[t1 + 1]) return true; if (t1 >= t3 - 2 || offset < t2[t1 + 2]) { this._cachedLine = t1 + 1; return true; } return false; }, _file$_binarySearch$1(offset) { var min, half, t1 = this._lineStarts, max = t1.length - 1; for (min = 0; min < max;) { half = min + B.JSInt_methods._tdivFast$1(max - min, 2); if (t1[half] > offset) max = half; else min = half + 1; } return max; }, getColumn$1(offset) { var line, lineStart, _this = this; if (offset < 0) throw A.wrapException(A.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > _this._decodedChars.length) throw A.wrapException(A.RangeError$("Offset " + offset + " must be not be greater than the number of characters in the file, " + _this.get$length(_this) + ".")); line = _this.getLine$1(offset); lineStart = _this._lineStarts[line]; if (lineStart > offset) throw A.wrapException(A.RangeError$("Line " + A.S(line) + " comes after offset " + offset + ".")); return offset - lineStart; }, getOffset$1(line) { var t1, t2, result, t3, _this = this; if (line < 0) throw A.wrapException(A.RangeError$("Line may not be negative, was " + A.S(line) + ".")); else { t1 = _this._lineStarts; t2 = t1.length; if (line >= t2) throw A.wrapException(A.RangeError$("Line " + A.S(line) + " must be less than the number of lines in the file, " + _this.get$lines(_this) + ".")); } result = t1[line]; if (result <= _this._decodedChars.length) { t3 = line + 1; t1 = t3 < t2 && result >= t1[t3]; } else t1 = true; if (t1) throw A.wrapException(A.RangeError$("Line " + A.S(line) + " doesn't have 0 columns.")); return result; } }; A.FileLocation.prototype = { get$sourceUrl() { return this.file.url; }, get$line(_) { return this.file.getLine$1(this.offset); }, get$column() { return this.file.getColumn$1(this.offset); }, FileLocation$_$2(file, offset) { var t2, t1 = this.offset; if (t1 < 0) throw A.wrapException(A.RangeError$("Offset may not be negative, was " + t1 + ".")); else { t2 = this.file; if (t1 > t2._decodedChars.length) throw A.wrapException(A.RangeError$("Offset " + t1 + string$.x20must_ + t2.get$length(t2) + ".")); } }, get$offset(receiver) { return this.offset; } }; A._FileSpan.prototype = { get$sourceUrl() { return this.file.url; }, get$length(_) { return this._file$_end - this._file$_start; }, get$start(_) { return A.FileLocation$_(this.file, this._file$_start); }, get$end(_) { return A.FileLocation$_(this.file, this._file$_end); }, get$text(_) { return A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(this.file._decodedChars, this._file$_start, this._file$_end), 0, null); }, get$context(_) { var _this = this, t1 = _this.file, endOffset = _this._file$_end, endLine = t1.getLine$1(endOffset); if (t1.getColumn$1(endOffset) === 0 && endLine !== 0) { if (endOffset - _this._file$_start === 0) return endLine === t1._lineStarts.length - 1 ? "" : A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t1._decodedChars, t1.getOffset$1(endLine), t1.getOffset$1(endLine + 1)), 0, null); } else endOffset = endLine === t1._lineStarts.length - 1 ? t1._decodedChars.length : t1.getOffset$1(endLine + 1); return A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t1._decodedChars, t1.getOffset$1(t1.getLine$1(_this._file$_start)), endOffset), 0, null); }, _FileSpan$3(file, _start, _end) { var t3, t1 = this._file$_end, t2 = this._file$_start; if (t1 < t2) throw A.wrapException(A.ArgumentError$("End " + t1 + " must come after start " + t2 + ".", null)); else { t3 = this.file; if (t1 > t3._decodedChars.length) throw A.wrapException(A.RangeError$("End " + t1 + string$.x20must_ + t3.get$length(t3) + ".")); else if (t2 < 0) throw A.wrapException(A.RangeError$("Start may not be negative, was " + t2 + ".")); } }, compareTo$1(_, other) { var result; if (!(other instanceof A._FileSpan)) return this.super$SourceSpanMixin$compareTo(0, other); result = B.JSInt_methods.compareTo$1(this._file$_start, other._file$_start); return result === 0 ? B.JSInt_methods.compareTo$1(this._file$_end, other._file$_end) : result; }, $eq(_, other) { var _this = this; if (other == null) return false; if (!type$.FileSpan._is(other)) return _this.super$SourceSpanMixin$$eq(0, other); return _this._file$_start === other._file$_start && _this._file$_end === other._file$_end && J.$eq$(_this.file.url, other.file.url); }, get$hashCode(_) { return A.Object_hash(this._file$_start, this._file$_end, this.file.url, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, expand$1(_, other) { var start, _this = this, t1 = _this.file; if (!J.$eq$(t1.url, other.file.url)) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(_this.get$sourceUrl()) + '" and "' + A.S(other.get$sourceUrl()) + "\" don't match.", null)); start = Math.min(_this._file$_start, other._file$_start); return A._FileSpan$(t1, start, Math.max(_this._file$_end, other._file$_end)); }, $isFileSpan: 1, $isSourceSpanWithContext: 1 }; A.Highlighter.prototype = { highlight$0(_) { var highlightsByColumn, t2, t3, t4, i, line, lastLine, t5, t6, t7, t8, t9, t10, t11, t12, t13, index, primaryIdx, primary, _i, _this = this, _null = null, t1 = _this._lines; _this._writeFileStart$1(B.JSArray_methods.get$first(t1).url); highlightsByColumn = A.List_List$filled(_this._maxMultilineSpans, _null, false, type$.nullable__Highlight); for (t2 = _this._highlighter$_buffer, t3 = highlightsByColumn.length !== 0, t4 = _this._highlighter$_primaryColor, i = 0; i < t1.length; ++i) { line = t1[i]; if (i > 0) { lastLine = t1[i - 1]; t5 = lastLine.url; t6 = line.url; if (!J.$eq$(t5, t6)) { _this._writeSidebar$1$end("\u2575"); t2._contents += "\n"; _this._writeFileStart$1(t6); } else if (lastLine.number + 1 !== line.number) { _this._writeSidebar$1$text("..."); t2._contents += "\n"; } } for (t5 = line.highlights, t6 = A._arrayInstanceType(t5)._eval$1("ReversedListIterable<1>"), t7 = new A.ReversedListIterable(t5, t6), t6 = new A.ListIterator(t7, t7.get$length(t7), t6._eval$1("ListIterator")), t7 = line.number, t8 = line.text, t9 = J.getInterceptor$s(t8); t6.moveNext$0();) { t10 = t6.__internal$_current; t11 = t10.span; t12 = t11.get$start(t11); t12 = t12.get$line(t12); t13 = t11.get$end(t11); if (t12 != t13.get$line(t13)) { t12 = t11.get$start(t11); t11 = t12.get$line(t12) === t7 && _this._isOnlyWhitespace$1(t9.substring$2(t8, 0, t11.get$start(t11).get$column())); } else t11 = false; if (t11) { index = B.JSArray_methods.indexOf$1(highlightsByColumn, _null); if (index < 0) A.throwExpression(A.ArgumentError$(A.S(highlightsByColumn) + " contains no null elements.", _null)); highlightsByColumn[index] = t10; } } _this._writeSidebar$1$line(t7); t2._contents += " "; _this._writeMultilineHighlights$2(line, highlightsByColumn); if (t3) t2._contents += " "; primaryIdx = B.JSArray_methods.indexWhere$1(t5, new A.Highlighter_highlight_closure()); primary = primaryIdx === -1 ? _null : t5[primaryIdx]; t6 = primary != null; if (t6) { t9 = primary.span; t10 = t9.get$start(t9); t10 = t10.get$line(t10) === t7 ? t9.get$start(t9).get$column() : 0; t11 = t9.get$end(t9); _this._writeHighlightedText$4$color(t8, t10, t11.get$line(t11) === t7 ? t9.get$end(t9).get$column() : t8.length, t4); } else _this._writeText$1(t8); t2._contents += "\n"; if (t6) _this._writeIndicator$3(line, primary, highlightsByColumn); for (t6 = t5.length, _i = 0; _i < t6; ++_i) { t5[_i].toString; continue; } } _this._writeSidebar$1$end("\u2575"); t1 = t2._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _writeFileStart$1(url) { var _this = this; if (!_this._multipleFiles || !type$.Uri._is(url)) _this._writeSidebar$1$end("\u2577"); else { _this._writeSidebar$1$end("\u250c"); _this._colorize$2$color(new A.Highlighter__writeFileStart_closure(_this), "\x1b[34m"); _this._highlighter$_buffer._contents += " " + $.$get$context().prettyUri$1(url); } _this._highlighter$_buffer._contents += "\n"; }, _writeMultilineHighlights$3$current(line, highlightsByColumn, current) { var t1, currentColor, t2, t3, t4, foundCurrent, _i, highlight, t5, startLine, t6, endLine, _this = this, _box_0 = {}; _box_0.openedOnThisLine = false; _box_0.openedOnThisLineColor = null; t1 = current == null; if (t1) currentColor = null; else currentColor = _this._highlighter$_primaryColor; for (t2 = highlightsByColumn.length, t3 = _this._highlighter$_primaryColor, t1 = !t1, t4 = _this._highlighter$_buffer, foundCurrent = false, _i = 0; _i < t2; ++_i) { highlight = highlightsByColumn[_i]; t5 = highlight == null; if (t5) startLine = null; else { t6 = highlight.span; t6 = t6.get$start(t6); startLine = t6.get$line(t6); } if (t5) endLine = null; else { t6 = highlight.span; t6 = t6.get$end(t6); endLine = t6.get$line(t6); } if (t1 && highlight === current) { _this._colorize$2$color(new A.Highlighter__writeMultilineHighlights_closure(_this, startLine, line), currentColor); foundCurrent = true; } else if (foundCurrent) _this._colorize$2$color(new A.Highlighter__writeMultilineHighlights_closure0(_this, highlight), currentColor); else if (t5) if (_box_0.openedOnThisLine) _this._colorize$2$color(new A.Highlighter__writeMultilineHighlights_closure1(_this), _box_0.openedOnThisLineColor); else t4._contents += " "; else _this._colorize$2$color(new A.Highlighter__writeMultilineHighlights_closure2(_box_0, _this, current, startLine, line, highlight, endLine), t3); } }, _writeMultilineHighlights$2(line, highlightsByColumn) { return this._writeMultilineHighlights$3$current(line, highlightsByColumn, null); }, _writeHighlightedText$4$color(text, startColumn, endColumn, color) { var _this = this; _this._writeText$1(J.substring$2$s(text, 0, startColumn)); _this._colorize$2$color(new A.Highlighter__writeHighlightedText_closure(_this, text, startColumn, endColumn), color); _this._writeText$1(B.JSString_methods.substring$2(text, endColumn, text.length)); }, _writeIndicator$3(line, highlight, highlightsByColumn) { var t3, coversWholeLine, _this = this, color = _this._highlighter$_primaryColor, t1 = highlight.span, t2 = t1.get$start(t1); t2 = t2.get$line(t2); t3 = t1.get$end(t1); if (t2 == t3.get$line(t3)) { _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); if (highlightsByColumn.length !== 0) t1._contents += " "; _this._colorize$2$color(new A.Highlighter__writeIndicator_closure(_this, line, highlight), color); t1._contents += "\n"; } else { t2 = t1.get$start(t1); t3 = line.number; if (t2.get$line(t2) === t3) { if (B.JSArray_methods.contains$1(highlightsByColumn, highlight)) return; A.replaceFirstNull(highlightsByColumn, highlight); _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); _this._colorize$2$color(new A.Highlighter__writeIndicator_closure0(_this, line, highlight), color); t1._contents += "\n"; } else { t2 = t1.get$end(t1); if (t2.get$line(t2) === t3) { coversWholeLine = t1.get$end(t1).get$column() === line.text.length; if (coversWholeLine && true) { A.replaceWithNull(highlightsByColumn, highlight); return; } _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); _this._colorize$2$color(new A.Highlighter__writeIndicator_closure1(_this, coversWholeLine, line, highlight), color); t1._contents += "\n"; A.replaceWithNull(highlightsByColumn, highlight); } } } }, _writeArrow$3$beginning(line, column, beginning) { var t1 = beginning ? 0 : 1, t2 = this._highlighter$_buffer; t1 = t2._contents += B.JSString_methods.$mul("\u2500", 1 + column + this._countTabs$1(J.substring$2$s(line.text, 0, column + t1)) * 3); t2._contents = t1 + "^"; }, _writeArrow$2(line, column) { return this._writeArrow$3$beginning(line, column, true); }, _writeText$1(text) { var t1, t2, t3; text.toString; t1 = new A.CodeUnits(text); t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t2 = this._highlighter$_buffer; for (; t1.moveNext$0();) { t3 = t1.__internal$_current; if (t3 === 9) t2._contents += B.JSString_methods.$mul(" ", 4); else t2._contents += A.Primitives_stringFromCharCode(t3); } }, _writeSidebar$3$end$line$text(end, line, text) { var t1 = {}; t1.text = text; if (line != null) t1.text = B.JSInt_methods.toString$0(line + 1); this._colorize$2$color(new A.Highlighter__writeSidebar_closure(t1, this, end), "\x1b[34m"); }, _writeSidebar$1$end(end) { return this._writeSidebar$3$end$line$text(end, null, null); }, _writeSidebar$1$text(text) { return this._writeSidebar$3$end$line$text(null, null, text); }, _writeSidebar$1$line(line) { return this._writeSidebar$3$end$line$text(null, line, null); }, _writeSidebar$0() { return this._writeSidebar$3$end$line$text(null, null, null); }, _countTabs$1(text) { var t1, count; for (t1 = new A.CodeUnits(text), t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")), count = 0; t1.moveNext$0();) if (t1.__internal$_current === 9) ++count; return count; }, _isOnlyWhitespace$1(text) { var t1, t2; for (t1 = new A.CodeUnits(text), t1 = new A.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2 !== 32 && t2 !== 9) return false; } return true; }, _colorize$2$color(callback, color) { var t1 = this._highlighter$_primaryColor != null; if (t1 && color != null) this._highlighter$_buffer._contents += color; callback.call$0(); if (t1 && color != null) this._highlighter$_buffer._contents += "\x1b[0m"; } }; A.Highlighter_closure.prototype = { call$0() { return this.color; }, $signature: 2855 }; A.Highlighter$__closure.prototype = { call$1(line) { var t1 = line.highlights; t1 = new A.WhereIterable(t1, new A.Highlighter$___closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); return t1.get$length(t1); }, $signature: 2856 }; A.Highlighter$___closure.prototype = { call$1(highlight) { var t1 = highlight.span, t2 = t1.get$start(t1); t2 = t2.get$line(t2); t1 = t1.get$end(t1); return t2 != t1.get$line(t1); }, $signature: 495 }; A.Highlighter$__closure0.prototype = { call$1(line) { return line.url; }, $signature: 2858 }; A.Highlighter__collateLines_closure.prototype = { call$1(highlight) { var t1 = highlight.span.get$sourceUrl(); return t1 == null ? new A.Object() : t1; }, $signature: 2859 }; A.Highlighter__collateLines_closure0.prototype = { call$2(highlight1, highlight2) { return highlight1.span.compareTo$1(0, highlight2.span); }, $signature: 2860 }; A.Highlighter__collateLines_closure1.prototype = { call$1(entry) { var t1, t2, t3, t4, context, t5, linesBeforeSpan, lineNumber, _i, line, activeHighlights, highlightIndex, oldHighlightLength, url = entry.get$key(entry), highlightsForFile = entry.get$value(entry), lines = A._setArrayType([], type$.JSArray__Line); for (t1 = J.getInterceptor$ax(highlightsForFile), t2 = t1.get$iterator(highlightsForFile), t3 = type$.JSArray__Highlight; t2.moveNext$0();) { t4 = t2.get$current(t2).span; context = t4.get$context(t4); t5 = A.findLineStart(context, t4.get$text(t4), t4.get$start(t4).get$column()); t5.toString; t5 = B.JSString_methods.allMatches$1("\n", B.JSString_methods.substring$2(context, 0, t5)); linesBeforeSpan = t5.get$length(t5); t4 = t4.get$start(t4); lineNumber = t4.get$line(t4) - linesBeforeSpan; for (t4 = context.split("\n"), t5 = t4.length, _i = 0; _i < t5; ++_i) { line = t4[_i]; if (lines.length === 0 || lineNumber > B.JSArray_methods.get$last(lines).number) lines.push(new A._Line(line, lineNumber, url, A._setArrayType([], t3))); ++lineNumber; } } activeHighlights = A._setArrayType([], t3); for (t2 = lines.length, highlightIndex = 0, _i = 0; _i < lines.length; lines.length === t2 || (0, A.throwConcurrentModificationError)(lines), ++_i) { line = lines[_i]; if (!!activeHighlights.fixed$length) A.throwExpression(A.UnsupportedError$("removeWhere")); B.JSArray_methods._removeWhere$2(activeHighlights, new A.Highlighter__collateLines__closure(line), true); oldHighlightLength = activeHighlights.length; for (t3 = t1.skip$1(highlightsForFile, highlightIndex), t3 = t3.get$iterator(t3); t3.moveNext$0();) { t4 = t3.get$current(t3); t5 = t4.span; t5 = t5.get$start(t5); if (t5.get$line(t5) > line.number) break; activeHighlights.push(t4); } highlightIndex += activeHighlights.length - oldHighlightLength; B.JSArray_methods.addAll$1(line.highlights, activeHighlights); } return lines; }, $signature: 2861 }; A.Highlighter__collateLines__closure.prototype = { call$1(highlight) { var t1 = highlight.span; t1 = t1.get$end(t1); return t1.get$line(t1) < this.line.number; }, $signature: 495 }; A.Highlighter_highlight_closure.prototype = { call$1(highlight) { highlight.toString; return true; }, $signature: 495 }; A.Highlighter__writeFileStart_closure.prototype = { call$0() { this.$this._highlighter$_buffer._contents += B.JSString_methods.$mul("\u2500", 2) + ">"; return null; }, $signature: 0 }; A.Highlighter__writeMultilineHighlights_closure.prototype = { call$0() { var t1 = this.startLine === this.line.number ? "\u250c" : "\u2514"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; A.Highlighter__writeMultilineHighlights_closure0.prototype = { call$0() { var t1 = this.highlight == null ? "\u2500" : "\u253c"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; A.Highlighter__writeMultilineHighlights_closure1.prototype = { call$0() { this.$this._highlighter$_buffer._contents += "\u2500"; return null; }, $signature: 0 }; A.Highlighter__writeMultilineHighlights_closure2.prototype = { call$0() { var t2, t3, _this = this, t1 = _this._box_0, vertical = t1.openedOnThisLine ? "\u253c" : "\u2502"; if (_this.current != null) _this.$this._highlighter$_buffer._contents += vertical; else { t2 = _this.line; t3 = t2.number; if (_this.startLine === t3) { t2 = _this.$this; t2._colorize$2$color(new A.Highlighter__writeMultilineHighlights__closure(t1, t2), t1.openedOnThisLineColor); t1.openedOnThisLine = true; if (t1.openedOnThisLineColor == null) t1.openedOnThisLineColor = t2._highlighter$_primaryColor; } else { if (_this.endLine === t3) { t3 = _this.highlight.span; t2 = t3.get$end(t3).get$column() === t2.text.length; } else t2 = false; t3 = _this.$this; if (t2) t3._highlighter$_buffer._contents += "\u2514"; else t3._colorize$2$color(new A.Highlighter__writeMultilineHighlights__closure0(t3, vertical), t1.openedOnThisLineColor); } } }, $signature: 0 }; A.Highlighter__writeMultilineHighlights__closure.prototype = { call$0() { var t1 = this._box_0.openedOnThisLine ? "\u252c" : "\u250c"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; A.Highlighter__writeMultilineHighlights__closure0.prototype = { call$0() { this.$this._highlighter$_buffer._contents += this.vertical; }, $signature: 0 }; A.Highlighter__writeHighlightedText_closure.prototype = { call$0() { var _this = this; return _this.$this._writeText$1(B.JSString_methods.substring$2(_this.text, _this.startColumn, _this.endColumn)); }, $signature: 0 }; A.Highlighter__writeIndicator_closure.prototype = { call$0() { var tabsBefore, tabsInside, t1 = this.$this, t2 = this.highlight.span, startColumn = t2.get$start(t2).get$column(), endColumn = t2.get$end(t2).get$column(); t2 = this.line.text; tabsBefore = t1._countTabs$1(J.substring$2$s(t2, 0, startColumn)); tabsInside = t1._countTabs$1(B.JSString_methods.substring$2(t2, startColumn, endColumn)); startColumn += tabsBefore * 3; t1 = t1._highlighter$_buffer; t1._contents += B.JSString_methods.$mul(" ", startColumn); t1._contents += B.JSString_methods.$mul("^", Math.max(endColumn + (tabsBefore + tabsInside) * 3 - startColumn, 1)); }, $signature: 0 }; A.Highlighter__writeIndicator_closure0.prototype = { call$0() { var t1 = this.highlight.span; return this.$this._writeArrow$2(this.line, t1.get$start(t1).get$column()); }, $signature: 0 }; A.Highlighter__writeIndicator_closure1.prototype = { call$0() { var t2, _this = this, t1 = _this.$this; if (_this.coversWholeLine) t1._highlighter$_buffer._contents += B.JSString_methods.$mul("\u2500", 3); else { t2 = _this.highlight.span; t1._writeArrow$3$beginning(_this.line, Math.max(t2.get$end(t2).get$column() - 1, 0), false); } }, $signature: 0 }; A.Highlighter__writeSidebar_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._highlighter$_buffer, t3 = this._box_0.text; if (t3 == null) t3 = ""; t1 = t2._contents += B.JSString_methods.padRight$1(t3, t1._paddingBeforeSidebar); t3 = this.end; t2._contents = t1 + (t3 == null ? "\u2502" : t3); }, $signature: 0 }; A._Highlight.prototype = { toString$0(_) { var t3, t4, t1 = this.span, t2 = t1.get$start(t1); t2 = t2.get$line(t2); t3 = t1.get$start(t1).get$column(); t4 = t1.get$end(t1); t1 = "primary " + (A.S(t2) + ":" + t3 + "-" + A.S(t4.get$line(t4)) + ":" + t1.get$end(t1).get$column()); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; A._Highlight_closure.prototype = { call$0() { var t2, t3, t4, t5, t1 = this.span; if (!(type$.SourceSpanWithContext._is(t1) && A.findLineStart(t1.get$context(t1), t1.get$text(t1), t1.get$start(t1).get$column()) != null)) { t2 = t1.get$start(t1); t2 = A.SourceLocation$(t2.get$offset(t2), 0, 0, t1.get$sourceUrl()); t3 = t1.get$end(t1); t3 = t3.get$offset(t3); t4 = t1.get$sourceUrl(); t5 = A.countCodeUnits(t1.get$text(t1), 10); t1 = A.SourceSpanWithContext$(t2, A.SourceLocation$(t3, A._Highlight__lastLineLength(t1.get$text(t1)), t5, t4), t1.get$text(t1), t1.get$text(t1)); } return A._Highlight__normalizeEndOfLine(A._Highlight__normalizeTrailingNewline(A._Highlight__normalizeNewlines(t1))); }, $signature: 2862 }; A._Line.prototype = { toString$0(_) { return "" + this.number + ': "' + A.S(this.text) + '" (' + B.JSArray_methods.join$1(this.highlights, ", ") + ")"; } }; A.SourceLocation.prototype = { distance$1(other) { var t1 = this.sourceUrl; if (!J.$eq$(t1, other.get$sourceUrl())) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(t1) + '" and "' + A.S(other.get$sourceUrl()) + "\" don't match.", null)); return Math.abs(this.offset - other.get$offset(other)); }, compareTo$1(_, other) { var t1 = this.sourceUrl; if (!J.$eq$(t1, other.get$sourceUrl())) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(t1) + '" and "' + A.S(other.get$sourceUrl()) + "\" don't match.", null)); return this.offset - other.get$offset(other); }, $eq(_, other) { if (other == null) return false; return type$.SourceLocation._is(other) && J.$eq$(this.sourceUrl, other.get$sourceUrl()) && this.offset === other.get$offset(other); }, get$hashCode(_) { var t1 = this.sourceUrl; t1 = t1 == null ? null : t1.get$hashCode(t1); if (t1 == null) t1 = 0; return t1 + this.offset; }, toString$0(_) { var _this = this, t1 = A.getRuntimeType(_this).toString$0(0), source = _this.sourceUrl; return "<" + t1 + ": " + _this.offset + " " + (A.S(source == null ? "unknown source" : source) + ":" + (_this.line + 1) + ":" + (_this.column + 1)) + ">"; }, $isComparable: 1, get$sourceUrl() { return this.sourceUrl; }, get$offset(receiver) { return this.offset; }, get$line(receiver) { return this.line; }, get$column() { return this.column; } }; A.SourceLocationMixin.prototype = { distance$1(other) { if (!J.$eq$(this.file.url, other.get$sourceUrl())) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(this.get$sourceUrl()) + '" and "' + A.S(other.get$sourceUrl()) + "\" don't match.", null)); return Math.abs(this.offset - other.get$offset(other)); }, compareTo$1(_, other) { if (!J.$eq$(this.file.url, other.get$sourceUrl())) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(this.get$sourceUrl()) + '" and "' + A.S(other.get$sourceUrl()) + "\" don't match.", null)); return this.offset - other.get$offset(other); }, $eq(_, other) { if (other == null) return false; return type$.SourceLocation._is(other) && J.$eq$(this.file.url, other.get$sourceUrl()) && this.offset === other.get$offset(other); }, get$hashCode(_) { var t1 = this.file.url; t1 = t1 == null ? null : t1.get$hashCode(t1); if (t1 == null) t1 = 0; return t1 + this.offset; }, toString$0(_) { var t1 = A.getRuntimeType(this).toString$0(0), t2 = this.offset, t3 = this.file, source = t3.url; return "<" + t1 + ": " + t2 + " " + (A.S(source == null ? "unknown source" : source) + ":" + (t3.getLine$1(t2) + 1) + ":" + (t3.getColumn$1(t2) + 1)) + ">"; }, $isComparable: 1, $isSourceLocation: 1 }; A.SourceSpanBase.prototype = { SourceSpanBase$3(start, end, text) { var t3, t1 = this.end, t2 = this.start; if (!J.$eq$(t1.get$sourceUrl(), t2.get$sourceUrl())) throw A.wrapException(A.ArgumentError$('Source URLs "' + A.S(t2.get$sourceUrl()) + '" and "' + A.S(t1.get$sourceUrl()) + "\" don't match.", null)); else if (t1.get$offset(t1) < t2.get$offset(t2)) throw A.wrapException(A.ArgumentError$("End " + t1.toString$0(0) + " must come after start " + t2.toString$0(0) + ".", null)); else { t3 = this.text; if (t3.length !== t2.distance$1(t1)) throw A.wrapException(A.ArgumentError$('Text "' + t3 + '" must be ' + t2.distance$1(t1) + " characters long.", null)); } }, get$start(receiver) { return this.start; }, get$end(receiver) { return this.end; }, get$text(receiver) { return this.text; } }; A.SourceSpanException.prototype = { get$message(_) { return this._span_exception$_message; }, toString$0(_) { return "Error on " + this._span_exception$_span.message$2$color(0, this._span_exception$_message, null); }, $isException: 1 }; A.SourceSpanFormatException.prototype = { get$offset(_) { var t1 = this._span_exception$_span; t1 = A.FileLocation$_(t1.file, t1._file$_start); return t1.offset; }, $isFormatException: 1, get$source(receiver) { return this.source; } }; A.SourceSpanMixin.prototype = { get$sourceUrl() { return this.get$start(this).get$sourceUrl(); }, get$length(_) { var t2, _this = this, t1 = _this.get$end(_this); t1 = t1.get$offset(t1); t2 = _this.get$start(_this); return t1 - t2.get$offset(t2); }, compareTo$1(_, other) { var _this = this, result = _this.get$start(_this).compareTo$1(0, other.get$start(other)); return result === 0 ? _this.get$end(_this).compareTo$1(0, other.get$end(other)) : result; }, message$2$color(_, message, color) { var t2, highlight, _this = this, t1 = _this.get$start(_this); t1 = "line " + (t1.get$line(t1) + 1) + ", column " + (_this.get$start(_this).get$column() + 1); if (_this.get$sourceUrl() != null) { t2 = _this.get$sourceUrl(); t2 = t1 + (" of " + $.$get$context().prettyUri$1(t2)); t1 = t2; } t1 += ": " + A.S(message); highlight = _this.highlight$1$color(0, color); if (highlight.length !== 0) t1 = t1 + "\n" + highlight; return t1.charCodeAt(0) == 0 ? t1 : t1; }, message$1($receiver, message) { return this.message$2$color($receiver, message, null); }, highlight$1$color(_, color) { var _this = this; if (!type$.SourceSpanWithContext._is(_this) && _this.get$length(_this) === 0) return ""; return A.Highlighter$(_this, color).highlight$0(0); }, $eq(_, other) { var _this = this; if (other == null) return false; return type$.SourceSpan._is(other) && _this.get$start(_this).$eq(0, other.get$start(other)) && _this.get$end(_this).$eq(0, other.get$end(other)); }, get$hashCode(_) { var _this = this; return A.Object_hash(_this.get$start(_this), _this.get$end(_this), B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue, B.C_SentinelValue); }, toString$0(_) { var _this = this; return "<" + A.getRuntimeType(_this).toString$0(0) + ": from " + _this.get$start(_this).toString$0(0) + " to " + _this.get$end(_this).toString$0(0) + ' "' + _this.get$text(_this) + '">'; }, $isComparable: 1, $isSourceSpan: 1 }; A.SourceSpanWithContext.prototype = { get$context(_) { return this._span_with_context$_context; } }; A.Injected.prototype = { call$2$defaultToGlobal(context, defaultToGlobal) { var t1 = this.$ti, t2 = context.getElementForInheritedWidgetOfExactType$1$0(t1._eval$1("_InheritedInjected<1>")); if (t2 == null) t2 = null; else { t2 = t2._widget; t2.toString; } t1._eval$1("_InheritedInjected<1>?")._as(t2); if (defaultToGlobal) return this; throw A.wrapException(A.Exception_Exception("No InheritedWidget of type " + A.createRuntimeType(t1._precomputed1).toString$0(0) + " is found")); }, call$1(context) { return this.call$2$defaultToGlobal(context, false); } }; A.InjectedBase.prototype = { get$subscription() { return A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, "_reactiveModelState").subscription; }, toString$0(_) { return "" + A.Primitives_objectHashCode(this) + ": " + A.S(A._lateReadCheck(A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState")); } }; A.InjectedBaseState.prototype = { get$_rm$_state() { var s, m, t2, _s19_ = "_reactiveModelState", _s11_ = "__snapState", t1 = A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, _s19_); t1.initializer.call$0(); s = A._lateReadCheck(t1.__ReactiveModelBase___snapState, _s11_).data; if (!A._instanceType(A._lateReadCheck(A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_))._precomputed1._is(null) && s == null) { t1 = this.$ti._precomputed1; m = A.createRuntimeType(t1).toString$0(0); t2 = A.S(m); throw A.wrapException(A.ArgumentError$notNull("\n[" + t2 + "] is NON-NULLABLE STATE!\nThe non-nullable state [" + t2 + "] has null value which is not accepted\nTo fix:\n1- Define an initial value to injected state.\n2- Handle onWaiting or onError state.\n3- Make the state nullable. (" + A.createRuntimeType(t1).toString$0(0) + "?).\n")); } return s; }, notify$0() { var _s19_ = "_reactiveModelState"; A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, _s19_).get$listeners().rebuildState$1(A._lateReadCheck(A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, "__snapState")); }, dispose$0(_) { A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, "_reactiveModelState").dispose$0(0); } }; A.InjectedImp.prototype = { middleCreator$2(crt, creatorMock) { return crt.call$0(); }, initialize$0(_) { var cachedAddToObs, creatorMock, _this = this, _s19_ = "_reactiveModelState", t1 = {}; if (A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isInitialized) return; cachedAddToObs = $.OnReactiveState_addToObs; $.OnReactiveState_addToObs = null; A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isInitialized = true; creatorMock = B.JSArray_methods.get$last(_this.cachedCreatorMocks); t1.isInitializing = true; A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._setInitialStateCreator$3$middleCreator$middleState$onDone(new A.InjectedImp_initialize_closure(t1, _this, creatorMock), new A.InjectedImp_initialize_closure0(t1, _this), new A.InjectedImp_initialize_closure1(_this)); t1 = A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_); t1._initialStateCreator.call$0(); if (A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isDisposed) { A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isDisposed = false; t1 = _this.onInitialized; if (t1 != null) t1.call$1(A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, "__snapState").data); } $.OnReactiveState_addToObs = cachedAddToObs; }, middleSnap$6$middleSnapState$onData$onError$onSetState$shouldOverrideGlobalSideEffects(snap, middleSnapState, onData, onError, onSetState, shouldOverrideGlobalSideEffects) { var t1, snap0, t2, t3, _this = this, _null = null, _s19_ = "_reactiveModelState", _s11_ = "__snapState"; if (!A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isDisposed) { t1 = _this.middleSnapState; snap0 = t1 == null ? _null : t1.call$1(new A.MiddleSnapState(A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_), snap, _this.$ti._eval$1("MiddleSnapState<1>"))); snap = snap0 == null ? snap : snap0; t1 = snap; } else t1 = snap; _this.oldSnap = A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_); t2 = t1._connectionState; if (t2 === B.ConnectionState_1) { if (A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_)._connectionState === B.ConnectionState_1) return _null; A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).set$_snapState(t1); _this.onSetState.call$1(t1); } else { t3 = t1.error; if (t3 != null) { if (J.$eq$(t3, A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_).error)) return _null; A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).set$_snapState(t1); _this.onSetState.call$1(t1); } else if (t1.get$hasData()) { if (t1._isImmutable === true && t1.$eq(0, A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_))) return _null; A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).set$_snapState(t1); _this.onSetState.call$1(t1); t3 = _this.undoRedoPersistState; if (t3 != null) t3.call$2(t1, _this); } else if (t2 === B.ConnectionState_0) { t3 = _this.undoRedoPersistState; if (t3 != null) t3.call$2(t1, _this); } } if (A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._removeFromInjectedList == null && t2 !== B.ConnectionState_0) A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._removeFromInjectedList = A.addToInjectedModels(_this); return t1; }, middleSnap$1(snap) { return this.middleSnap$6$middleSnapState$onData$onError$onSetState$shouldOverrideGlobalSideEffects(snap, null, null, null, null, false); }, notify$0() { this.super$InjectedBaseState$notify(); var t1 = A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, "_reactiveModelState"); this.onSetState.call$1(A._lateReadCheck(t1.__ReactiveModelBase___snapState, "__snapState")); }, dispose$0(_) { var t1, t2, _this = this, _s19_ = "_reactiveModelState", _s11_ = "__snapState"; if (!A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._rm$_isDisposed) { t1 = _this.onDisposed; if (t1 != null) t1.call$1(_this.get$_rm$_state()); t1 = _this.cachedCreatorMocks; if (t1.length > 1) t1.pop(); t1 = _this.undoRedoPersistState; if (t1 != null) { t1._undoQueue.clear$0(0); t1._redoQueue.clear$0(0); } t1 = _this.$ti._precomputed1; if (t1._is(null) || A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_).data != null) { t2 = _this.undoRedoPersistState; if (t2 != null) t2.persistOnDispose$1(_this.get$_rm$_state()); } A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_); A.SnapState$_nothing(A._lateReadCheck(A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_).data, "DISPOSING...", _this.debugPrintWhenNotifiedPreMessage, t1); t1 = A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._removeFromInjectedList; if (t1 != null) t1.call$0(); A._lateReadCheck(_this.__InjectedBaseState__reactiveModelState, _s19_)._removeFromInjectedList = null; _this.super$InjectedBaseState$dispose(0); } }, toString$0(_) { return "Injected#" + A.Primitives_objectHashCode(this) + "(" + A.S(A._lateReadCheck(A._lateReadCheck(this.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState")) + ")"; } }; A.InjectedImp_initialize_closure.prototype = { call$1(crt) { this._box_1.isInitializing = true; return this.$this.middleCreator$2(crt, this.creatorMock); }, $signature: 2864 }; A.InjectedImp_initialize_closure0.prototype = { call$1(snap) { var t2, t3, _this = this, _s19_ = "_reactiveModelState", _s11_ = "__snapState", t1 = {}; t1.snap = snap; t2 = _this._box_1; if (t2.isInitializing) { t2.isInitializing = false; t2 = snap.data; if (type$.ChangeNotifier._is(t2)) { t3 = _this.$this; t2.addListener$1(0, t3.get$notify()); A._lateReadCheck(t3.__InjectedBaseState__reactiveModelState, _s19_).get$listeners().addCleaner$1(new A.InjectedImp_initialize__closure(t1, t3)); return t1.snap; } t2 = _this.$this; if (A._lateReadCheck(A._lateReadCheck(t2.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_)._infoMessage === "RECOMPUTING...") return t2.middleSnap$1(snap); if (A._lateReadCheck(A._lateReadCheck(t2.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_)._infoMessage === "REFRESHING...") return t2.middleSnap$1(snap.get$hasData() ? snap._copyToIsIdle$0() : A.SnapStateX_copyWith(snap, A._lateReadCheck(t2.__InjectedBaseState__reactiveModelState, _s19_)._initialState, null, t2.$ti._precomputed1)); else if (A._lateReadCheck(A._lateReadCheck(t2.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_)._infoMessage !== "INITIALIZING...") return t2.middleSnap$1(snap); if (snap.get$hasData()) { snap = snap._copyToIsIdle$1$isActive(false); t1.snap = snap; t1 = snap; } else t1 = snap; t3 = A._lateReadCheck(t2.__InjectedBaseState__reactiveModelState, _s19_); t2 = t2.middleSnap$1(t1); t3.set$_snapState(t2 == null ? t1 : t2); return null; } return _this.$this.middleSnap$1(snap); }, $signature() { return this.$this.$ti._eval$1("SnapState<1>?(SnapState<1>)"); } }; A.InjectedImp_initialize__closure.prototype = { call$0() { type$.ChangeNotifier._as(this._box_0.snap.data).removeListener$1(0, this.$this.get$notify()); }, $signature: 0 }; A.InjectedImp_initialize_closure1.prototype = { call$1(snap) { return snap; }, $signature() { return this.$this.$ti._eval$1("SnapState<1>(SnapState<1>)"); } }; A._Rebuild.prototype = { call$1(builder) { var _null = null, t1 = this.$ti._precomputed1; return A.OnBuilder$(builder, _null, _null, this._injected, _null, A.SideEffects$(_null, _null, _null, _null, t1), _null, t1); } }; A.ReactiveModel.prototype = { get$rebuild() { var _this = this, value = _this.__ReactiveModel_rebuild; if (value === $) { A._lateInitializeOnceCheck(value, "rebuild"); value = _this.__ReactiveModel_rebuild = new A._Rebuild(_this, _this.$ti._eval$1("_Rebuild<1>")); } return value; }, rebuild$1(arg0) { return this.get$rebuild().call$1(arg0); } }; A.ReactiveModelBase.prototype = { set$_snapState(snap) { var _this = this, _s11_ = "__snapState"; if (!snap.$eq(0, A._lateReadCheck(_this.__ReactiveModelBase___snapState, _s11_))) _this.__ReactiveModelBase__oldSnapState = A._lateReadCheck(_this.__ReactiveModelBase___snapState, _s11_); _this.__ReactiveModelBase___snapState = snap; }, set$setSnapStateAndRebuild(snap) { var _this = this, t1 = snap == null; _this._completeCompleter$1(t1 ? A._lateReadCheck(_this.__ReactiveModelBase___snapState, "__snapState") : snap); if (t1) return; _this.set$_snapState(snap); _this.get$listeners().rebuildState$1(snap); }, get$listeners() { var t1, t2, t3, t4, _this = this, value = _this.__ReactiveModelBase_listeners; if (value === $) { t1 = _this.$ti; t2 = t1._eval$1("JSArray<~(SnapState<1>?)>"); t3 = A._setArrayType([], t2); t4 = A._setArrayType([], type$.JSArray_of_void_Function); t2 = A._setArrayType([], t2); A._lateInitializeOnceCheck(_this.__ReactiveModelBase_listeners, "listeners"); value = _this.__ReactiveModelBase_listeners = new A.ReactiveModelListener(t3, t4, t2, t1._eval$1("ReactiveModelListener<1>")); } return value; }, _setInitialStateCreator$3$middleCreator$middleState$onDone(middleCreator, middleState, onDone) { this._initialStateCreator = new A.ReactiveModelBase__setInitialStateCreator_closure(this, middleCreator, middleState, onDone); }, _cancelSubscription$0() { var _this = this, t1 = _this.subscription; if (t1 != null) t1.cancel$0(0); _this.subscription = null; t1 = _this._rm$_completer; if ((t1 == null ? null : (t1.future._state & 30) !== 0) === false) t1.complete$0(0); _this._rm$_completer = null; }, _completeCompleter$1(snap) { var t1, _this = this; if (snap._connectionState === B.ConnectionState_1) { t1 = _this._rm$_completer; if ((t1 == null ? null : (t1.future._state & 30) !== 0) === false) t1.complete$0(0); _this._rm$_completer = null; _this._rm$_completer = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_dynamic), type$._AsyncCompleter_dynamic); } else { t1 = _this._rm$_completer; if (t1 != null && (t1.future._state & 30) === 0) t1.complete$0(0); } }, setToHasData$2$data$middleSnap(data, middleSnap) { this.set$setSnapStateAndRebuild(middleSnap.call$1(A._lateReadCheck(this.__ReactiveModelBase___snapState, "__snapState")._copyToHasData$1(data))); }, setToHasError$4$error$middleSnap$refresher$stackTrace(error, middleSnap, refresher, stackTrace) { this.set$setSnapStateAndRebuild(middleSnap.call$1(A._lateReadCheck(this.__ReactiveModelBase___snapState, "__snapState")._copyToHasError$3$stackTrace(error, refresher, stackTrace))); }, setStateFn$4$isWaitingForAsyncTask$middleState$onDone(fn, isWaitingForAsyncTask, middleState, onDone) { var $call, t1 = {}; t1.isWaitingForAsyncTask = isWaitingForAsyncTask; $call = A._Cell$named("call"); $call.__late_helper$_value = new A.ReactiveModelBase_setStateFn_closure(t1, this, fn, middleState, $call, false, null, onDone); return $call._readLocal$0(); }, setStateFn$3$middleState$onDone(fn, middleState, onDone) { return this.setStateFn$4$isWaitingForAsyncTask$middleState$onDone(fn, null, middleState, onDone); }, _streamSubscription$3(stream, middleState, refresher) { var t1, _this = this; if (A._lateReadCheck(_this.__ReactiveModelBase___snapState, "__snapState")._connectionState !== B.ConnectionState_1) { t1 = _this._endStreamCompleter; if ((t1 == null ? null : (t1.future._state & 30) !== 0) === false) t1.complete$0(0); } _this._endStreamCompleter = new A._AsyncCompleter(new A._Future($.Zone__current, type$._Future_dynamic), type$._AsyncCompleter_dynamic); t1 = _this.subscription; if (t1 != null) t1.cancel$0(0); _this.subscription = null; _this.subscription = stream.listen$3$onDone$onError(0, new A.ReactiveModelBase__streamSubscription_closure(_this, middleState), new A.ReactiveModelBase__streamSubscription_closure0(_this), new A.ReactiveModelBase__streamSubscription_closure1(_this, middleState, refresher)); return _this._endStreamCompleter.future; }, dispose$0(_) { var _this = this; _this._rm$_isDisposed = true; _this._cancelSubscription$0(); _this._rm$_isInitialized = false; _this.set$_snapState(A.SnapState$_nothing(_this._initialState, "INITIALIZING...", _this.debugPrintWhenNotifiedPreMessage, _this.$ti._precomputed1)); _this.get$listeners().cleanState$0(); }, get$subscription() { return this.subscription; } }; A.ReactiveModelBase__setInitialStateCreator_closure.prototype = { call$0() { var t1, r, _this = this, cachedAddToObs = $.OnReactiveState_addToObs; $.OnReactiveState_addToObs = null; t1 = _this.$this; r = t1.setStateFn$3$middleState$onDone(new A.ReactiveModelBase__setInitialStateCreator__closure(t1, _this.middleCreator), _this.middleState, _this.onDone).call$0(); $.OnReactiveState_addToObs = cachedAddToObs; return r; }, $signature() { return this.$this.$ti._eval$1("Future>()"); } }; A.ReactiveModelBase__setInitialStateCreator__closure.prototype = { call$1(_) { return this.middleCreator.call$1(this.$this.creator); }, $signature() { return this.$this.$ti._eval$1("@(1?)"); } }; A.ReactiveModelBase_setStateFn_closure.prototype = { call$0() { return this.$call$body$ReactiveModelBase_setStateFn_closure(this.$this.$ti._eval$1("SnapState<1>")); }, $call$body$ReactiveModelBase_setStateFn_closure($async$type) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, _stream, result, dataFuture, data, err, s, t1, t2, t3, isWaitingForAsyncTask, t4, t5, exception, $async$exception; var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; _stream = null; t1 = $async$self._box_0; if (t1.isWaitingForAsyncTask == null) { t2 = $async$self.$this; t3 = t2.initializer; t3.call$0(); if (A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState")._infoMessage !== "RECOMPUTING...") { t3.call$0(); isWaitingForAsyncTask = A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState")._connectionState === B.ConnectionState_1; } else isWaitingForAsyncTask = false; t1.isWaitingForAsyncTask = isWaitingForAsyncTask; } t2 = $async$self.$this; t2.initializer.call$0(); result = $async$self.fn.call$1(A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState").data); t3 = type$.Future_dynamic; if (t3._is(result)) _stream = result.asStream$0(); else if (result instanceof A.Stream) _stream = result; $async$goto = _stream != null ? 7 : 8; break; case 7: // then t1 = t1.isWaitingForAsyncTask = false; t4 = _stream; t4.toString; t5 = $async$self.middleState; dataFuture = t2._streamSubscription$3(t4, t5, new A.ReactiveModelBase_setStateFn__closure($async$self.$call)); if (A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState")._connectionState !== B.ConnectionState_1 ? !$async$self.skipWaiting : t1) { t1 = t3._is(result) ? "FUTURE" : "STREAM"; t2.set$setSnapStateAndRebuild(t5.call$1(A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState")._copyToIsWaiting$1$infoMessage(t1))); } $async$goto = 9; return A._asyncAwait(dataFuture, $async$call$0); case 9: // returning from await. data = $async$result; if (data instanceof A.Stream) { t1 = t2.setStateFn$3$middleState$onDone(new A.ReactiveModelBase_setStateFn__closure0(t2, data), t5, $async$self.onDone).call$0(); $async$returnValue = t1; // goto return $async$goto = 1; break; } t1 = $async$self.onDone.call$1(A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState")._copyWith$2$infoMessage$isDone("", true)); t2.set$_snapState(t1 == null ? A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState") : t1); t1 = A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState"); $async$returnValue = t1; // goto return $async$goto = 1; break; case 8: // join t1 = t1.isWaitingForAsyncTask; t1.toString; t3 = t2.$ti; if (t1) t2.set$setSnapStateAndRebuild(A.SnapStateX_copyWith(A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState"), result, null, t3._precomputed1)); else { t2.setToHasData$2$data$middleSnap(result, $async$self.middleState); t1 = A.Future_Future$sync(new A.ReactiveModelBase_setStateFn__closure1(t2), t3._eval$1("SnapState<1>")); $async$returnValue = t1; // goto return $async$goto = 1; break; } t1 = A._lateReadCheck(t2.__ReactiveModelBase___snapState, "__snapState"); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; err = A.unwrapException($async$exception); s = A.getTraceFromException($async$exception); if (type$.Error._is(err) && !(err instanceof A.UnimplementedError)) { A.StatesRebuilerLogger_log("", err, s); throw $async$exception; } t1 = $async$self.$this; t1.setToHasError$4$error$middleSnap$refresher$stackTrace(err, $async$self.middleState, $async$self.$call._readLocal$0(), s); $async$returnValue = A._lateReadCheck(t1.__ReactiveModelBase___snapState, "__snapState"); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return A._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return A._asyncRethrow($async$currentError, $async$completer); } }); return A._asyncStartSync($async$call$0, $async$completer); }, $signature() { return this.$this.$ti._eval$1("Future>()"); } }; A.ReactiveModelBase_setStateFn__closure.prototype = { call$0() { return this.$call._readLocal$0().call$0(); }, $signature: 0 }; A.ReactiveModelBase_setStateFn__closure0.prototype = { call$1(state) { return this.data; }, $signature() { return this.$this.$ti._eval$1("Stream<@>(1?)"); } }; A.ReactiveModelBase_setStateFn__closure1.prototype = { call$0() { return A._lateReadCheck(this.$this.__ReactiveModelBase___snapState, "__snapState"); }, $signature() { return this.$this.$ti._eval$1("SnapState<1>()"); } }; A.ReactiveModelBase__streamSubscription_closure.prototype = { call$1(data) { var t2, t1 = this.$this; if (data instanceof A.Stream) { t1.subscription.cancel$0(0); t1 = t1._endStreamCompleter; t2 = t1 == null; if ((t2 ? null : (t1.future._state & 30) !== 0) === false) if (!t2) t1.complete$1(0, data); } else t1.setToHasData$2$data$middleSnap(data, this.middleState); }, $signature: 83 }; A.ReactiveModelBase__streamSubscription_closure1.prototype = { call$2(err, s) { var t1, t2; if (type$.Error._is(err)) { A.StatesRebuilerLogger_log("", err, s); throw A.wrapException(err); } t1 = this.$this; t1.setToHasError$4$error$middleSnap$refresher$stackTrace(err, this.middleState, this.refresher, s); t1 = t1._endStreamCompleter; t2 = t1 == null; if ((t2 ? null : (t1.future._state & 30) !== 0) === false) if (!t2) t1.complete$0(0); }, $signature: 193 }; A.ReactiveModelBase__streamSubscription_closure0.prototype = { call$0() { var t1 = this.$this._endStreamCompleter, t2 = t1 == null; if ((t2 ? null : (t1.future._state & 30) !== 0) === false) if (!t2) t1.complete$0(0); }, $signature: 0 }; A.ReactiveModelListener.prototype = { addListenerForRebuild$2$clean(setState, clean) { var t2, _this = this, t1 = _this._rm$_listeners; if (t1.length === 0) { t2 = _this.onFirstListerAdded; if (t2 != null) t2.call$0(); } t1.push(setState); return new A.ReactiveModelListener_addListenerForRebuild_closure(_this, _this.addCleaner$1(new A.ReactiveModelListener_addListenerForRebuild_closure0(_this, setState)), setState, clean); }, rebuildState$1(snap) { var t1, t2, _i; for (t1 = this._rm$_listeners, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) t1[_i].call$1(snap); for (t1 = A.List_List$of(this._sideEffectListeners, true, this.$ti._eval$1("~(SnapState<1>?)")), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].call$1(snap); }, addCleaner$1(cleaner) { this._cleaners.push(cleaner); return new A.ReactiveModelListener_addCleaner_closure(this, cleaner); }, cleanState$0() { var t1, t2, t3, _i; for (t1 = this._cleaners, t2 = A.List_List$of(t1, true, type$.void_Function), t3 = t2.length, _i = 0; _i < t3; ++_i) t2[_i].call$0(); B.JSArray_methods.set$length(t1, 0); B.JSArray_methods.set$length(this._sideEffectListeners, 0); } }; A.ReactiveModelListener_addListenerForRebuild_closure0.prototype = { call$0() { return B.JSArray_methods.remove$1(this.$this._rm$_listeners, this.setState); }, $signature: 0 }; A.ReactiveModelListener_addListenerForRebuild_closure.prototype = { call$0() { var t1, _this = this; _this.cleanDisposer.call$0(); t1 = _this.$this._rm$_listeners; if (t1.length === 0) return; B.JSArray_methods.remove$1(t1, _this.setState); if (t1.length === 0) { t1 = _this.clean; if (t1 != null) t1.call$0(); } }, $signature: 0 }; A.ReactiveModelListener_addCleaner_closure.prototype = { call$0() { return B.JSArray_methods.remove$1(this.$this._cleaners, this.cleaner); }, $signature: 0 }; A.SnapState.prototype = { _copyWith$6$connectionState$data$infoMessage$isActive$isDone$resetError(connectionState, data, infoMessage, isActive, isDone, resetError) { var t3, t4, t5, t6, _this = this, t1 = connectionState == null ? _this._connectionState : connectionState, t2 = data == null ? _this.data : data; if (resetError) t3 = null; else t3 = _this.error; if (resetError) t4 = null; else t4 = _this.stackTrace; if (resetError) t5 = null; else t5 = _this.onErrorRefresher; t6 = isActive == null ? _this.isActive : isActive; return new A.SnapState(t1, t2, t3, t4, t5, infoMessage, _this._isImmutable, _this._debugPrintWhenNotifiedPreMessage, t6, _this.$ti); }, _copyWith$2$infoMessage$isDone(infoMessage, isDone) { return this._copyWith$6$connectionState$data$infoMessage$isActive$isDone$resetError(null, null, infoMessage, null, isDone, false); }, _copyWith$4$connectionState$data$infoMessage$resetError(connectionState, data, infoMessage, resetError) { return this._copyWith$6$connectionState$data$infoMessage$isActive$isDone$resetError(connectionState, data, infoMessage, null, false, resetError); }, _copyWith$5$connectionState$data$infoMessage$isActive$resetError(connectionState, data, infoMessage, isActive, resetError) { return this._copyWith$6$connectionState$data$infoMessage$isActive$isDone$resetError(connectionState, data, infoMessage, isActive, false, resetError); }, _copyToIsWaiting$2$data$infoMessage(data, infoMessage) { return this._copyWith$4$connectionState$data$infoMessage$resetError(B.ConnectionState_1, data, infoMessage, true); }, _copyToIsWaiting$1$infoMessage(infoMessage) { return this._copyToIsWaiting$2$data$infoMessage(null, infoMessage); }, _copyToHasError$6$data$enableNull$infoMessage$stackTrace(error, onErrorRefresher, data, enableNull, infoMessage, stackTrace) { var _this = this, t1 = _this.data, t2 = infoMessage == null ? "" : infoMessage; return new A.SnapState(B.ConnectionState_3, t1, error, stackTrace, onErrorRefresher, t2, _this._isImmutable, _this._debugPrintWhenNotifiedPreMessage, _this.isActive, _this.$ti); }, _copyToHasError$3$stackTrace(error, onErrorRefresher, stackTrace) { return this._copyToHasError$6$data$enableNull$infoMessage$stackTrace(error, onErrorRefresher, null, false, null, stackTrace); }, _copyToHasData$1(data) { var t1 = this.$ti, t2 = t1._precomputed1, isImmutable = t2._is(null) || t2._is(data); t2 = isImmutable ? data : this.data; return new A.SnapState(B.ConnectionState_3, t2, null, null, null, "", isImmutable, this._debugPrintWhenNotifiedPreMessage, true, t1); }, _copyToIsIdle$2$infoMessage$isActive(infoMessage, isActive) { var t1 = infoMessage == null ? "" : infoMessage; return this._copyWith$5$connectionState$data$infoMessage$isActive$resetError(B.ConnectionState_0, null, t1, isActive == null ? this.isActive : isActive, true); }, _copyToIsIdle$0() { return this._copyToIsIdle$2$infoMessage$isActive(null, null); }, _copyToIsIdle$1$isActive(isActive) { return this._copyToIsIdle$2$infoMessage$isActive(null, isActive); }, get$hasData() { if (this.error == null) { var t1 = this._connectionState; t1 = t1 === B.ConnectionState_3 || t1 === B.ConnectionState_2; } else t1 = false; return t1; }, toString$0(_) { return "SnapState<" + A.createRuntimeType(this.$ti._precomputed1).toString$0(0) + ">(" + this._toShortString$1(this.data) + ")"; }, $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return _this.$ti._is(other) && other._connectionState === B.ConnectionState_1 === (_this._connectionState === B.ConnectionState_1) && J.$eq$(other.error, _this.error) && B.DeepCollectionEquality_false.equals$2(other.data, _this.data); }, get$hashCode(_) { return (A.Primitives_objectHashCode(this._connectionState) ^ J.get$hashCode$(this.data) ^ J.get$hashCode$(this.error)) >>> 0; }, _toShortString$1$1(d) { var $status, _this = this, t1 = _this._connectionState, t2 = t1 === B.ConnectionState_0; if (t2 && _this._infoMessage.length !== 0) $status = _this._infoMessage; else if (t2) $status = "isIdle : " + A.S(d == null ? _this.data : d); else if (t1 === B.ConnectionState_1) $status = "isWaiting (" + _this._infoMessage + "): " + A.S(d == null ? _this.data : d); else { t1 = _this.error; if (t1 != null) $status = "hasError: " + A.S(t1); else if (_this.get$hasData()) $status = "hasData: " + A.S(d == null ? _this.data : d); else $status = ""; } return $status; }, _toShortString$1(d) { return this._toShortString$1$1(d, type$.dynamic); } }; A.MiddleSnapState.prototype = {}; A.StateBuilderBase.prototype = { createState$0() { return new A._StateBuilderBaseState(B._StateLifecycle_0, this.$ti._eval$1("_StateBuilderBaseState<1>")); } }; A._StateBuilderBaseState.prototype = { get$removeFromContextSet() { return A._lateReadCheck(this.___StateBuilderBaseState_removeFromContextSet, "removeFromContextSet"); }, initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.widget; _this.___StateBuilderBaseState__builder = t1.initState.call$2(t2, new A._StateBuilderBaseState_initState_closure(_this)); _this._isMounted = false; }, didChangeDependencies$0() { var cachedAddToObs, t1, t2, _this = this, _s8_ = "_builder"; _this.super$State$didChangeDependencies(); cachedAddToObs = $.OnReactiveState_addToObs; $.OnReactiveState_addToObs = null; if (!_this._isMounted) { t1 = _this._framework$_element; t1.toString; _this.___StateBuilderBaseState_removeFromContextSet = A.addToContextSet(t1); t1 = A._lateReadCheck(_this.___StateBuilderBaseState__builder, _s8_).mountedState; t2 = _this._framework$_element; t2.toString; t1.call$1(t2); $.OnReactiveState_addToObs = cachedAddToObs; _this._isMounted = true; } A._lateReadCheck(_this.___StateBuilderBaseState__builder, _s8_).toString; $.OnReactiveState_addToObs = cachedAddToObs; }, didUpdateWidget$1(oldWidget) { var cachedAddToObs, t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); cachedAddToObs = $.OnReactiveState_addToObs; $.OnReactiveState_addToObs = null; t1 = A._lateReadCheck(_this.___StateBuilderBaseState__builder, "_builder").didUpdateWidget; t2 = _this._framework$_element; t2.toString; t1.call$3(t2, oldWidget.widget, _this._widget.widget); $.OnReactiveState_addToObs = cachedAddToObs; }, dispose$0(_) { var _this = this, t1 = A._lateReadCheck(_this.___StateBuilderBaseState__builder, "_builder").dispose, t2 = _this._framework$_element; t2.toString; t1.call$1(t2); _this.removeFromContextSet$0(); _this.super$State$dispose(0); }, build$1(_, context) { var t1, t2; this.cachedAddToObs = $.OnReactiveState_addToObs; $.OnReactiveState_addToObs = null; t1 = A._lateReadCheck(this.___StateBuilderBaseState__builder, "_builder"); t2 = this._widget.widget; return t1.builder.call$2(context, t2); }, removeFromContextSet$0() { return this.get$removeFromContextSet().call$0(); } }; A._StateBuilderBaseState_initState_closure.prototype = { call$0() { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new A._StateBuilderBaseState_initState__closure()); return false; }, $signature: 18 }; A._StateBuilderBaseState_initState__closure.prototype = { call$0() { }, $signature: 0 }; A.LifeCycleHooks.prototype = { dispose$0($receiver) { return this.dispose.call$0(); } }; A.MyStatefulWidget.prototype = { createElement$0(_) { return A.MyElement$(this); } }; A.MyElement.prototype = { performRebuild$0() { this.super$StatefulElement$performRebuild(); var t1 = this._framework$_state; t1.toString; if (t1 instanceof A.ExtendedState) $.OnReactiveState_addToObs = type$.ExtendedState_StatefulWidget._as(t1).cachedAddToObs; } }; A.ExtendedState.prototype = {}; A.OnBuilder.prototype = { OnBuilder$8$builder$debugPrintWhenRebuild$key$listenTo$listenToMany$shouldRebuild$sideEffects$watch(builder, debugPrintWhenRebuild, key, listenTo, listenToMany, shouldRebuild, sideEffects, watch, $T) { A._lateWriteOnceCheck(this.__OnBuilder_onBuilder, "onBuilder"); this.__OnBuilder_onBuilder = new A._On(new A.OnBuilder_closure(builder, $T), $T._eval$1("_On<0>")); }, build$1(_, context) { var t1, on, t2, t3, t4, _this = this, _null = null, _s9_ = "onBuilder"; A._lateReadCheck(_this.__OnBuilder_onBuilder, _s9_).toString; t1 = A._lateReadCheck(_this.__OnBuilder_onBuilder, _s9_); t1.toString; A._lateReadCheck(_this.__OnBuilder_onBuilder, _s9_).toString; A._lateReadCheck(_this.__OnBuilder_onBuilder, _s9_).toString; A._lateReadCheck(_this.__OnBuilder_onBuilder, _s9_).toString; on = A.On_On$or(_null, _null, _null, _null, new A.OnBuilder_build_closure(_this), type$.Widget); t1 = _this.sideEffects; t2 = t1.onSetState != null ? A.On_On(new A.OnBuilder_build_closure0(_this), type$.void) : _null; t3 = t1._onAfterBuild; t3 = t3 != null ? A.On_On(new A.OnBuilder_build_closure1(_this), type$.void) : _null; t4 = _this.shouldRebuild != null ? new A.OnBuilder_build_closure2(_this) : _null; return A.OnX_listenTo(on, _this.listenTo, _this.debugPrintWhenRebuild, t1.dispose, t1.initState, _this.key, t3, t2, t4, _this.$ti._precomputed1); } }; A.OnBuilder_closure.prototype = { call$1(_) { return this.builder.call$0(); }, $signature() { return this.T._eval$1("Widget(0)"); } }; A.OnBuilder_build_closure.prototype = { call$0() { var t1 = this.$this, t2 = A._lateReadCheck(t1.__OnBuilder_onBuilder, "onBuilder"); t1 = t1.listenTo.get$_rm$_state(); return t2.orElse.call$1(t1); }, $signature: 2865 }; A.OnBuilder_build_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1.sideEffects.onSetState; t2.toString; return t2.call$1(A._lateReadCheck(A._lateReadCheck(t1.listenTo.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState")); }, $signature: 0 }; A.OnBuilder_build_closure1.prototype = { call$0() { var t1 = this.$this.sideEffects._onAfterBuild.call$0(); return t1; }, $signature: 0 }; A.OnBuilder_build_closure2.prototype = { call$1(snap) { var _s19_ = "_reactiveModelState", t1 = this.$this, t2 = t1.shouldRebuild; t2.toString; t1 = t1.listenTo; return t2.call$2(A._lateReadCheck(A._lateReadCheck(t1.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase__oldSnapState, "_oldSnapState"), A._lateReadCheck(A._lateReadCheck(t1.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, "__snapState")); }, $signature: 2866 }; A.SideEffects.prototype = { SideEffects$4$dispose$initState$onAfterBuild$onSetState(dispose, initState, onAfterBuild, onSetState, $T) { if (onAfterBuild != null) this._onAfterBuild = new A.SideEffects_closure(onAfterBuild); }, dispose$0($receiver) { return this.dispose.call$0(); } }; A.SideEffects_closure.prototype = { call$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.SideEffects__closure(this.onAfterBuild)); return null; }, $signature: 0 }; A.SideEffects__closure.prototype = { call$1(_) { return this.onAfterBuild.call$0(); }, $signature: 22 }; A._On.prototype = {}; A.OnX_listenTo_closure.prototype = { call$2(widget, setState) { var inj, t2, _this = this, t1 = {}, disposer = A._Cell$named("disposer"); t1.previousWatch = null; inj = _this.injected; t2 = _this.T; if (t2._eval$1("InjectedImp<0>")._is(inj)) inj.initialize$0(0); return new A.LifeCycleHooks(new A.OnX_listenTo__closure(t1, inj, disposer, _this.shouldRebuild, inj, _this.watch, _this._this, _this.onSetState, _this.onAfterBuild, setState, _this.debugPrintWhenRebuild, _this.initState, t2), new A.OnX_listenTo__closure0(_this.dispose, disposer), new A.OnX_listenTo__closure1(), new A.OnX_listenTo__closure2(inj), type$.LifeCycleHooks__OnWidget_Widget); }, $signature: 2867 }; A.OnX_listenTo__closure.prototype = { call$1(_) { var t3, _this = this, _s19_ = "_reactiveModelState", t1 = _this.inj, t2 = A._lateReadCheck(t1.__InjectedBaseState__reactiveModelState, _s19_); t2.toString; t2 = A._lateReadCheck(t1.__InjectedBaseState__reactiveModelState, _s19_).get$listeners(); t3 = _this.onAfterBuild; _this.disposer.__late_helper$_value = t2.addListenerForRebuild$2$clean(new A.OnX_listenTo___closure(_this._box_0, _this.shouldRebuild, _this.injected, _this.watch, _this._this, _this.onSetState, t3, _this.setState, _this.debugPrintWhenRebuild, _this.T), new A.OnX_listenTo___closure0(t1)); t2 = _this.initState; if (t2 != null) t2.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.OnX_listenTo___closure1(t3, t1)); }, $signature: 689 }; A.OnX_listenTo___closure.prototype = { call$1(snap) { var t2, _this = this, _s19_ = "_reactiveModelState", _s11_ = "__snapState", t1 = _this.shouldRebuild; if (t1 != null && !t1.call$1(A._lateReadCheck(A._lateReadCheck(_this.injected.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_))) return; t1 = _this.injected; if (!A.OnX__canRebuild(_this._this, t1)) return; t2 = _this.onSetState; if (t2 != null) t2.call$1(A._lateReadCheck(A._lateReadCheck(t1.__InjectedBaseState__reactiveModelState, _s19_).__ReactiveModelBase___snapState, _s11_)); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.OnX_listenTo____closure(_this.onAfterBuild, t1)); _this.setState.call$0(); }, $signature() { return this.T._eval$1("~(SnapState<0>?)"); } }; A.OnX_listenTo____closure.prototype = { call$1(_) { var t1 = this.onAfterBuild; if (t1 != null) t1.call$1(A._lateReadCheck(A._lateReadCheck(this.injected.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState")); }, $signature: 22 }; A.OnX_listenTo___closure0.prototype = { call$0() { return this.inj.dispose$0(0); }, $signature: 0 }; A.OnX_listenTo___closure1.prototype = { call$1(_) { var t1 = this.onAfterBuild; if (t1 != null) t1.call$1(A._lateReadCheck(A._lateReadCheck(this.inj.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState")); }, $signature: 22 }; A.OnX_listenTo__closure0.prototype = { call$1(_) { var t1 = this.dispose; if (t1 != null) t1.call$0(); this.disposer._readLocal$0().call$0(); }, $signature: 689 }; A.OnX_listenTo__closure1.prototype = { call$3(context, oldWidget, newWidget) { var _s19_ = "_reactiveModelState", newInj = newWidget.inject, oldInj = oldWidget.inject; if (A._lateReadCheck(newInj.__InjectedBaseState__reactiveModelState, _s19_) != A._lateReadCheck(oldInj.__InjectedBaseState__reactiveModelState, _s19_)) { A._lateReadCheck(newInj.__InjectedBaseState__reactiveModelState, _s19_).dispose$0(0); newInj.__InjectedBaseState__reactiveModelState = A._lateReadCheck(oldInj.__InjectedBaseState__reactiveModelState, _s19_); newInj.undoRedoPersistState = oldInj.undoRedoPersistState; } }, $signature: 2869 }; A.OnX_listenTo__closure2.prototype = { call$2(ctx, widget) { var t1 = widget.on.call$2(A._lateReadCheck(A._lateReadCheck(this.injected.__InjectedBaseState__reactiveModelState, "_reactiveModelState").__ReactiveModelBase___snapState, "__snapState"), false); t1.toString; return t1; }, $signature: 2870 }; A._OnWidget.prototype = {}; A.On.prototype = { call$2(snapState, isSideEffect) { var t2, t3, _this = this, _null = null, t1 = snapState._connectionState; if (t1 === B.ConnectionState_1) { t1 = _this._onWaiting; if (t1 != null) return t1.call$0(); if (isSideEffect) return _null; t1 = _this._rm$_onData.call$0(); return t1; } t2 = snapState.error; if (t2 != null) { t1 = _this._rm$_onError; if (t1 != null) { t3 = snapState.onErrorRefresher; t3.toString; return t1.call$2(t2, t3); } if (isSideEffect) return _null; t1 = _this._rm$_onData.call$0(); return t1; } if (t1 === B.ConnectionState_0) { t1 = _this._onIdle; if (t1 != null) return t1.call$0(); if (isSideEffect) return _null; t1 = _this._rm$_onData.call$0(); return t1; } t1 = _this._rm$_onData.call$0(); return t1; }, call$1(snapState) { return this.call$2(snapState, true); } }; A.On_On_closure.prototype = { call$2(_, __) { return this.builder.call$0(); }, $signature() { return this.T._eval$1("0(@,~())"); } }; A.On_On$or_closure.prototype = { call$2(_, __) { return this.or.call$0(); }, $signature() { return this.T._eval$1("0(@,~())"); } }; A.OnCombined.prototype = {}; A.RM_inject_closure.prototype = { call$0() { }, $signature: 0 }; A.addToInjectedModels_closure.prototype = { call$0() { $.injectedModels.remove$1(0, this.inj); }, $signature: 0 }; A.addToContextSet_closure.prototype = { call$0() { B.JSArray_methods.remove$1($._contextSet, this.ctx); }, $signature: 0 }; A.StringScannerException.prototype = { get$source(_) { return A._asStringS(this.source); } }; A.StringScanner.prototype = { get$lastMatch() { var _this = this; if (_this._string_scanner$_position !== _this._lastMatchPosition) _this._lastMatch = null; return _this._lastMatch; }, scan$1(pattern) { var success, _this = this, t1 = _this._lastMatch = J.matchAsPrefix$2$s(pattern, _this.string, _this._string_scanner$_position); _this._lastMatchPosition = _this._string_scanner$_position; success = t1 != null; if (success) _this._lastMatchPosition = _this._string_scanner$_position = t1.get$end(t1); return success; }, expect$2$name(pattern, $name) { var t1; if (this.scan$1(pattern)) return; if ($name == null) if (type$.RegExp._is(pattern)) $name = "/" + pattern.pattern + "/"; else { t1 = J.toString$0$(pattern); t1 = A.stringReplaceAllUnchecked(t1, "\\", "\\\\"); $name = '"' + A.stringReplaceAllUnchecked(t1, '"', '\\"') + '"'; } this._fail$1($name); A.ReachabilityError$(string$.x60null_t); }, expect$1(pattern) { return this.expect$2$name(pattern, null); }, expectDone$0() { if (this._string_scanner$_position === this.string.length) return; this._fail$1("no more input"); A.ReachabilityError$(string$.x60null_t); }, error$3$length$position(_, message, $length, position) { var t2, t1 = this.string; if (position < 0) A.throwExpression(A.RangeError$("position must be greater than or equal to 0.")); else if (position > t1.length) A.throwExpression(A.RangeError$("position must be less than or equal to the string length.")); t2 = position + $length > t1.length; if (t2) A.throwExpression(A.RangeError$("position plus length must not go beyond the end of the string.")); throw A.wrapException(new A.StringScannerException(t1, message, A.SourceFile$fromString(t1, this.sourceUrl).span$2(0, position, position + $length))); }, _fail$1($name) { this.error$3$length$position(0, "expected " + $name + ".", 0, this._string_scanner$_position); A.ReachabilityError$(string$.x60null_t); } }; A.DocumentRange.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.DocumentRange && A.getRuntimeType(_this) === A.getRuntimeType(other) && J.$eq$(_this.start, other.start) && J.$eq$(_this.end, other.end); else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.start) ^ J.get$hashCode$(this.end)) >>> 0; }, toString$0(_) { return "[DocumentRange] - from: (" + A.S(this.start) + "), to: (" + A.S(this.end) + ")"; } }; A.DocumentPosition.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.DocumentPosition && this.nodeId == other.nodeId && J.$eq$(this.nodePosition, other.nodePosition); else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.nodeId) ^ J.get$hashCode$(this.nodePosition)) >>> 0; }, copyWith$1$nodePosition(nodePosition) { return new A.DocumentPosition(this.nodeId, nodePosition); }, toString$0(_) { return '[DocumentPosition] - node: "' + A.S(this.nodeId) + '", position: (' + A.S(this.nodePosition) + ")"; } }; A.DocumentNode.prototype = { set$metadata(_, newMetadata) { var t1 = this._metadata; if (B.DeepCollectionEquality_false.equals$2(t1, newMetadata)) return; t1.clear$0(0); if (newMetadata != null) t1.addAll$1(0, newMetadata); this.notifyListeners$0(); }, putMetadataValue$2(key, value) { var t1 = this._metadata; if (J.$eq$(t1.$index(0, key), value)) return; t1.$indexSet(0, key, value); this.notifyListeners$0(); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.DocumentNode && A.getRuntimeType(this) === A.getRuntimeType(other) && B.DeepCollectionEquality_false.equals$2(this._metadata, other._metadata); else t1 = true; return t1; }, get$hashCode(_) { return 1; }, $isListenable: 1, $isChangeNotifier: 1 }; A.DocumentComposer.prototype = { DocumentComposer$2$imeConfiguration$initialSelection(imeConfiguration, initialSelection) { this._preferences.addListener$1(0, new A.DocumentComposer_closure(this)); }, dispose$0(_) { var t1 = this._preferences; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; this.super$ChangeNotifier$dispose(0); }, set$selection(newSelection) { var _this = this; if (!J.$eq$(newSelection, _this._document_composer$_selection)) { _this._document_composer$_selection = newSelection; _this.selectionNotifier.set$value(0, newSelection); _this.notifyListeners$0(); } }, $isListenable: 1 }; A.DocumentComposer_closure.prototype = { call$0() { $.$get$editorLog().log$4(B.Level_FINE_500, "Composer preferences changed", null, null); this.$this.notifyListeners$0(); }, $signature: 0 }; A.ComposerPreferences.prototype = { toggleStyles$1(attributions) { var t1, t2, t3; for (t1 = A._LinkedHashSetIterator$(attributions, attributions._collection$_modifications, A._instanceType(attributions)._precomputed1), t2 = this._currentAttributions; t1.moveNext$0();) { t3 = t1._collection$_current; if (t2.contains$1(0, t3)) t2.remove$1(0, t3); else t2.add$1(0, t3); } this.notifyListeners$0(); }, $isListenable: 1 }; A._ComposerPreferences_Object_ChangeNotifier.prototype = {}; A._DocumentComposer_Object_ChangeNotifier.prototype = {}; A.DocumentEditor.prototype = { get$document(_) { return this._document; } }; A.EditorCommandFunction.prototype = { execute$2($document, transaction) { this._execute.call$2($document, transaction); } }; A.DocumentEditorTransaction.prototype = {}; A.MutableDocument.prototype = { MutableDocument$1$nodes(nodes) { var t1, t2, t3, _i; for (t1 = this._nodes, t2 = t1.length, t3 = this.get$_forwardNodeChange(), _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) J.addListener$1$x(t1[_i], t3); }, getNodeById$1(nodeId) { return A.IterableExtension_firstWhereOrNull(this._nodes, new A.MutableDocument_getNodeById_closure(nodeId)); }, getNodeAt$1(index) { if (index < 0 || index >= this._nodes.length) return null; return this._nodes[index]; }, getNodeBefore$1(node) { var nodeIndex = B.JSArray_methods.indexOf$1(this._nodes, node); return nodeIndex > 0 ? this.getNodeAt$1(nodeIndex - 1) : null; }, getNodeAfter$1(node) { var t1 = this._nodes, nodeIndex = B.JSArray_methods.indexOf$1(t1, node); return nodeIndex >= 0 && nodeIndex < t1.length - 1 ? this.getNodeAt$1(nodeIndex + 1) : null; }, getNode$1(position) { return A.IterableExtension_firstWhereOrNull(this._nodes, new A.MutableDocument_getNode_closure(position)); }, getRangeBetween$2(position1, position2) { var t1, index1, node2, t2, _s30_ = "No such position in document: ", node1 = this.getNode$1(position1); if (node1 == null) throw A.wrapException(A.Exception_Exception(_s30_ + A.S(position1))); t1 = this._nodes; index1 = B.JSArray_methods.indexOf$1(t1, node1); node2 = this.getNode$1(position2); if (node2 == null) throw A.wrapException(A.Exception_Exception(_s30_ + A.S(position2))); t1 = index1 < B.JSArray_methods.indexOf$1(t1, node2); t2 = t1 ? position1 : position2; return new A.DocumentRange(t2, t1 ? position2 : position1); }, getNodesInside$2(position1, position2) { var t1, index1, node2, index2, _s30_ = "No such position in document: ", node1 = this.getNode$1(position1); if (node1 == null) throw A.wrapException(A.Exception_Exception(_s30_ + A.S(position1))); t1 = this._nodes; index1 = B.JSArray_methods.indexOf$1(t1, node1); node2 = this.getNode$1(position2); if (node2 == null) throw A.wrapException(A.Exception_Exception(_s30_ + A.S(position2))); index2 = B.JSArray_methods.indexOf$1(t1, node2); return B.JSArray_methods.sublist$2(t1, Math.min(index1, index2), Math.max(index1, index2) + 1); }, insertNodeAt$2(index, node) { var t1 = this._nodes; if (index <= t1.length) { B.JSArray_methods.insert$2(t1, index, node); node.addListener$1(0, this.get$_forwardNodeChange()); this.notifyListeners$0(); } }, insertNodeAfter$2$existingNode$newNode(existingNode, newNode) { var t1 = this._nodes, nodeIndex = B.JSArray_methods.indexOf$1(t1, existingNode); if (nodeIndex >= 0 && nodeIndex < t1.length) { B.JSArray_methods.insert$2(t1, nodeIndex + 1, newNode); newNode.addListener$1(0, this.get$_forwardNodeChange()); this.notifyListeners$0(); } }, deleteNode$1(node) { var isRemoved; node.removeListener$1(0, this.get$_forwardNodeChange()); isRemoved = B.JSArray_methods.remove$1(this._nodes, node); this.notifyListeners$0(); return isRemoved; }, replaceNode$2$newNode$oldNode(newNode, oldNode) { var t2, t1 = this._nodes, index = B.JSArray_methods.indexOf$1(t1, oldNode); if (index !== -1) { t2 = this.get$_forwardNodeChange(); oldNode.removeListener$1(0, t2); B.JSArray_methods.removeAt$1(t1, index); newNode.addListener$1(0, t2); B.JSArray_methods.insert$2(t1, index, newNode); this.notifyListeners$0(); } else throw A.wrapException(A.Exception_Exception("Could not find oldNode: " + A.S(oldNode.get$id(oldNode)))); }, _forwardNodeChange$0() { this.notifyListeners$0(); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.MutableDocument && A.getRuntimeType(this) === A.getRuntimeType(other) && B.DeepCollectionEquality_false.equals$2(this._nodes, other._nodes); else t1 = true; return t1; }, get$hashCode(_) { return A.Primitives_objectHashCode(this._nodes); }, $isListenable: 1, $isDocument2: 1 }; A.MutableDocument_getNodeById_closure.prototype = { call$1(element) { return element.get$id(element) == this.nodeId; }, $signature: 498 }; A.MutableDocument_getNode_closure.prototype = { call$1(element) { return element.get$id(element) == this.position.nodeId; }, $signature: 498 }; A._MutableDocument_Object_ChangeNotifier.prototype = {}; A.DocumentComponent.prototype = { isVisualSelectionSupported$0() { return true; } }; A.MovementModifier.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.MovementModifier && A.getRuntimeType(this) === A.getRuntimeType(other) && this.id === other.id; else t1 = true; return t1; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.id); }, get$id(receiver) { return this.id; } }; A.DocumentSelection.prototype = { toString$0(_) { return "[DocumentSelection] - \n base: (" + A.S(this.base) + "),\n extent: (" + A.S(this.extent) + ")"; }, collapse$0(_) { var t1 = this.extent; if (J.$eq$(this.base, t1)) return this; else return new A.DocumentSelection(t1, t1); }, collapseUpstream$1($document) { var t3, t4, t5, t1 = this.base, t2 = this.extent; if (J.$eq$(t1, t2)) return this; t3 = $document.getNodeById$1(t1.nodeId); t3.toString; t4 = $document.getNodeById$1(t2.nodeId); t4.toString; if (t3.$eq(0, t4)) { t1 = t2.copyWith$1$nodePosition(t4.selectUpstreamPosition$2(t1.nodePosition, t2.nodePosition)); return new A.DocumentSelection(t1, t1); } t5 = $document._nodes; return B.JSArray_methods.indexOf$1(t5, t3) < B.JSArray_methods.indexOf$1(t5, t4) ? new A.DocumentSelection(t1, t1) : new A.DocumentSelection(t2, t2); }, collapseDownstream$1($document) { var t3, t4, t5, t1 = this.base, t2 = this.extent; if (J.$eq$(t1, t2)) return this; t3 = $document.getNodeById$1(t1.nodeId); t3.toString; t4 = $document.getNodeById$1(t2.nodeId); t4.toString; if (t3.$eq(0, t4)) { t1 = t2.copyWith$1$nodePosition(t4.selectDownstreamPosition$2(t1.nodePosition, t2.nodePosition)); return new A.DocumentSelection(t1, t1); } t5 = $document._nodes; return B.JSArray_methods.indexOf$1(t5, t3) > B.JSArray_methods.indexOf$1(t5, t4) ? new A.DocumentSelection(t1, t1) : new A.DocumentSelection(t2, t2); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.DocumentSelection && A.getRuntimeType(_this) === A.getRuntimeType(other) && J.$eq$(_this.base, other.base) && J.$eq$(_this.extent, other.extent); else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.base) ^ J.get$hashCode$(this.extent)) >>> 0; }, copyWith$2$base$extent(base, extent) { var t1 = base == null ? this.base : base; return new A.DocumentSelection(t1, extent == null ? this.extent : extent); }, copyWith$1$base(base) { return this.copyWith$2$base$extent(base, null); }, copyWith$1$extent(extent) { return this.copyWith$2$base$extent(null, extent); } }; A.DocumentNodeSelection.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.DocumentNodeSelection && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && J.$eq$(_this.nodeSelection, other.nodeSelection); else t1 = true; return t1; }, get$hashCode(_) { return (J.get$hashCode$(this.nodeId) ^ J.get$hashCode$(this.nodeSelection)) >>> 0; }, toString$0(_) { return '[DocumentNodeSelection] - node: "' + A.S(this.nodeId) + '", selection: (' + A.S(this.nodeSelection) + ")"; } }; A.EditContext.prototype = {}; A.Stylesheet.prototype = {}; A.StyleRule.prototype = {}; A.BlockSelector.prototype = { after$1(_, precedingBlockType) { return new A.BlockSelector(this._blockType, precedingBlockType, this._followingBlockType, null); }, matches$2(_, $document, node) { var t2, nodeBefore, _s9_ = "blockType", t1 = this._blockType; if (t1 != null) { t2 = type$.nullable_NamedAttribution._as(node._metadata.$index(0, _s9_)); t1 = (t2 == null ? null : t2.id) !== t1; } else t1 = false; if (t1) return false; t1 = this._indexMatcher; if (t1 != null && !t1.matches$2(0, $document, node)) return false; t1 = this._precedingBlockType; if (t1 != null) { nodeBefore = $document.getNodeBefore$1(node); if (nodeBefore != null) { t2 = type$.nullable_NamedAttribution._as(nodeBefore._metadata.$index(0, _s9_)); t1 = (t2 == null ? null : t2.id) !== t1; } else t1 = true; if (t1) return false; } return true; }, toString$0(_) { var t1 = this._precedingBlockType; t1 = t1 != null ? t1 + " + " : ""; return t1 + "[" + A.S(this._blockType) + "]"; } }; A._LastBlockMatcher.prototype = { matches$2(_, $document, node) { var t1 = $document._nodes; return B.JSArray_methods.indexOf$1(t1, node) === t1.length - 1; } }; A.CascadingPadding.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.CascadingPadding && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.left == other.left && _this.right == other.right && _this.top == other.top && _this.bottom == other.bottom; else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return J.get$hashCode$(_this.left) ^ J.get$hashCode$(_this.right) ^ J.get$hashCode$(_this.top) ^ J.get$hashCode$(_this.bottom); } }; A.SelectionStyles.prototype = {}; A.LinkAttribution.prototype = { get$id(_) { return "link"; }, canMergeWith$1(other) { return this.$eq(0, other); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.LinkAttribution && A.getRuntimeType(this) === A.getRuntimeType(other) && this.url.$eq(0, other.url); else t1 = true; return t1; }, get$hashCode(_) { var t1 = this.url; return t1.get$hashCode(t1); }, toString$0(_) { return "[LinkAttribution]: " + this.url.toString$0(0); }, $isAttribution: 1 }; A.BlockquoteComponentBuilder.prototype = { createViewModel$2($document, node) { var t1, textDirection, textAlign, _null = null; if (!(node instanceof A.ParagraphNode)) return _null; t1 = node._metadata; if (!J.$eq$(t1.$index(0, "blockType"), B.NamedAttribution_blockquote)) return _null; textDirection = A.getParagraphDirection(node._text$_text.text); textAlign = textDirection === B.TextDirection_1 ? B.TextAlign_0 : B.TextAlign_1; switch (t1.$index(0, "textAlign")) { case "left": textAlign = B.TextAlign_0; break; case "center": textAlign = B.TextAlign_2; break; case "right": textAlign = B.TextAlign_1; break; case "justify": textAlign = B.TextAlign_3; break; } return A.BlockquoteComponentViewModel$(B.Color_0, B.BorderRadius_tLn, _null, B.Color_0, false, _null, node.id, B.EdgeInsets_0_0_0_0, _null, B.Color_0, node._text$_text, textAlign, textDirection, A._presenter__noStyleBuilder$closure()); }, createComponent$2(componentContext, componentViewModel) { var t1, t2, t3, t4; if (!(componentViewModel instanceof A.BlockquoteComponentViewModel)) return null; t1 = componentViewModel.text; t2 = componentViewModel.textStyleBuilder; t3 = componentViewModel.backgroundColor; t4 = componentViewModel.borderRadius; return new A.BlockquoteComponent(componentContext.componentKey, t1, t2, componentViewModel.selection, componentViewModel.selectionColor, t3, t4, componentViewModel.caret != null, componentViewModel.caretColor, componentViewModel.highlightWhenEmpty, null); }, $isComponentBuilder: 1 }; A.BlockquoteComponentViewModel.prototype = { applyStyles$1(styles) { var t1 = styles.$index(0, "backgroundColor"); this.backgroundColor = t1 == null ? B.Color_0 : t1; t1 = styles.$index(0, "borderRadius"); this.borderRadius = t1 == null ? B.BorderRadius_tLn : t1; }, copy$0(_) { var _this = this, t1 = _this.maxWidth, t2 = _this.padding, t3 = _this.textStyleBuilder, t4 = _this.backgroundColor, t5 = _this.borderRadius, t6 = _this.selection, t7 = _this.selectionColor; return A.BlockquoteComponentViewModel$(t4, t5, _this.caret, _this.caretColor, _this.highlightWhenEmpty, t1, _this.nodeId, t2, t6, t7, _this.text, _this.textAlignment, _this.textDirection, t3); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$SingleColumnLayoutComponentViewModel$$eq(0, other) && other instanceof A.BlockquoteComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && _this.text.$eq(0, other.text) && J.$eq$(_this.textStyleBuilder, other.textStyleBuilder) && _this.textDirection === other.textDirection && _this.textAlignment === other.textAlignment && _this.backgroundColor.$eq(0, other.backgroundColor) && _this.borderRadius.$eq(0, other.borderRadius) && J.$eq$(_this.selection, other.selection) && _this.selectionColor.$eq(0, other.selectionColor) && J.$eq$(_this.caret, other.caret) && _this.caretColor.$eq(0, other.caretColor) && _this.highlightWhenEmpty === other.highlightWhenEmpty; else t1 = true; return t1; }, get$hashCode(_) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, t1 = A.SingleColumnLayoutComponentViewModel.prototype.get$hashCode.call(_this, _this), t2 = J.get$hashCode$(_this.nodeId), t3 = _this.text, t4 = J.get$hashCode$(t3.text); t3 = A.Primitives_objectHashCode(t3.spans.markers); t5 = J.get$hashCode$(_this.textStyleBuilder); t6 = A.Primitives_objectHashCode(_this.textDirection); t7 = A.Primitives_objectHashCode(_this.textAlignment); t8 = _this.backgroundColor; t8 = t8.get$hashCode(t8); t9 = _this.borderRadius; t9 = t9.get$hashCode(t9); t10 = J.get$hashCode$(_this.selection); t11 = B.JSInt_methods.get$hashCode(_this.selectionColor.value); t12 = J.get$hashCode$(_this.caret); t13 = B.JSInt_methods.get$hashCode(_this.caretColor.value); t14 = _this.highlightWhenEmpty ? 519018 : 218159; return (t1 ^ t2 ^ t4 ^ t3 ^ t5 ^ t6 ^ t7 ^ t8 ^ t9 ^ t10 ^ t11 ^ t12 ^ t13 ^ t14) >>> 0; }, set$selection(val) { return this.selection = val; }, set$selectionColor(val) { return this.selectionColor = val; }, set$caret(val) { return this.caret = val; }, set$caretColor(val) { return this.caretColor = val; }, set$highlightWhenEmpty(val) { return this.highlightWhenEmpty = val; } }; A.BlockquoteComponent.prototype = { build$1(_, context) { var _this = this, _null = null; return A.Container$(_null, A.TextComponent$(_this.caretColor, _this.highlightWhenEmpty, _this.textKey, B.Map_empty4, _this.selectionColor, _this.showCaret, false, _this.text, _null, _null, _this.textSelection, _this.styleBuilder), B.Clip_0, _null, _null, new A.BoxDecoration(_this.backgroundColor, _null, _null, _this.borderRadius, _null, _null, B.BoxShape_0), _null, _null, _null, _null, B.EdgeInsets_16_16_16_16, _null, _null, _null); } }; A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure.prototype = { call$1(attributions) { var t1 = this.styles, baseStyle = t1.$index(0, "textStyle"); if (baseStyle == null) baseStyle = B.TextStyle_zIQ0; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, $signature: 245 }; A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { this.super$SingleColumnLayoutComponentViewModel$applyStyles(styles); this.textStyleBuilder = new A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(styles); } }; A.BlockNode.prototype = { get$beginningPosition() { return B.UpstreamDownstreamNodePosition_TextAffinity_0; }, get$endPosition() { return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, selectUpstreamPosition$2(position1, position2) { if (!(position1 instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaU1 + J.get$runtimeType$(position1).toString$0(0))); if (!(position2 instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaU2 + J.get$runtimeType$(position2).toString$0(0))); if (position1.affinity === B.TextAffinity_0 || position2.affinity === B.TextAffinity_0) return B.UpstreamDownstreamNodePosition_TextAffinity_0; else return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, selectDownstreamPosition$2(position1, position2) { if (!(position1 instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaU1 + J.get$runtimeType$(position1).toString$0(0))); if (!(position2 instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaU2 + J.get$runtimeType$(position2).toString$0(0))); if (position1.affinity === B.TextAffinity_1 || position2.affinity === B.TextAffinity_1) return B.UpstreamDownstreamNodePosition_TextAffinity_0; else return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, computeSelection$2$base$extent(base, extent) { if (!(base instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception("Expected a UpstreamDownstreamNodePosition for base but received a " + J.get$runtimeType$(base).toString$0(0))); if (!(extent instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception("Expected a UpstreamDownstreamNodePosition for extent but received a " + J.get$runtimeType$(extent).toString$0(0))); return new A.UpstreamDownstreamNodeSelection(base, extent); } }; A.BoxComponent.prototype = { createState$0() { return new A._BoxComponentState(B._StateLifecycle_0); } }; A._BoxComponentState.prototype = { getBeginningPosition$0() { return B.UpstreamDownstreamNodePosition_TextAffinity_0; }, getBeginningPositionNearX$1(x) { return x < type$.RenderBox._as(this._framework$_element.get$renderObject())._box$_size._dx / 2 ? B.UpstreamDownstreamNodePosition_TextAffinity_0 : B.UpstreamDownstreamNodePosition_TextAffinity_1; }, movePositionLeft$2(currentPosition, movementModifier) { if (J.$eq$(currentPosition, B.UpstreamDownstreamNodePosition_TextAffinity_0)) return null; return B.UpstreamDownstreamNodePosition_TextAffinity_0; }, movePositionRight$2(currentPosition, movementModifier) { if (J.$eq$(currentPosition, B.UpstreamDownstreamNodePosition_TextAffinity_1)) return null; return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, movePositionUp$1(currentPosition) { return null; }, movePositionDown$1(currentPosition) { return null; }, getDesiredCursorAtOffset$1(localOffset) { return null; }, getEndPosition$0() { return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, getEndPositionNearX$1(x) { return x < type$.RenderBox._as(this._framework$_element.get$renderObject())._box$_size._dx / 2 ? B.UpstreamDownstreamNodePosition_TextAffinity_0 : B.UpstreamDownstreamNodePosition_TextAffinity_1; }, getOffsetForPosition$1(nodePosition) { var myBox, t1; if (!(nodePosition instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectnU + A.S(nodePosition))); myBox = type$.RenderBox._as(this._framework$_element.get$renderObject()); if (nodePosition.affinity === B.TextAffinity_0) { t1 = myBox._box$_size; return new A.Offset(t1._dx / 4, t1._dy / 2); } else { t1 = myBox._box$_size; return new A.Offset(3 * t1._dx / 4, t1._dy / 2); } }, getRectForPosition$1(nodePosition) { var myBox, t1, t2; if (!(nodePosition instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectnU + A.S(nodePosition))); myBox = type$.RenderBox._as(this._framework$_element.get$renderObject()); if (nodePosition.affinity === B.TextAffinity_0) return new A.Rect(-1, 0, 0, 0 + myBox._box$_size._dy); else { t1 = myBox._box$_size; t2 = t1._dx; return new A.Rect(t2, 0, t2 + 1, 0 + t1._dy); } }, getRectForSelection$2(basePosition, extentPosition) { var t1, _s75_ = string$.ExpectnU; if (!(basePosition instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(_s75_ + A.S(basePosition))); if (!(extentPosition instanceof A.UpstreamDownstreamNodePosition)) throw A.wrapException(A.Exception_Exception(_s75_ + A.S(extentPosition))); if (basePosition.$eq(0, extentPosition)) return this.getRectForPosition$1(extentPosition); t1 = type$.RenderBox._as(this._framework$_element.get$renderObject())._box$_size; return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, getPositionAtOffset$1(localOffset) { if (localOffset._dx <= type$.RenderBox._as(this._framework$_element.get$renderObject())._box$_size._dx / 2) return B.UpstreamDownstreamNodePosition_TextAffinity_0; else return B.UpstreamDownstreamNodePosition_TextAffinity_1; }, isVisualSelectionSupported$0() { this._widget.toString; return true; }, build$1(_, context) { return this._widget.child; } }; A.SelectableBox.prototype = { build$1(_, context) { var t3, _this = this, _null = null, t1 = _this.selection, t2 = t1 != null; if (t2 && !t1.base.$eq(0, t1.extent)) { t3 = _this.selectionColor.value; t3 = A.Color$fromARGB(B.JSNumber_methods.round$0(127.5), t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); } else t3 = B.Color_0; t3 = A._setArrayType([A.DecoratedBox$(_this.child, new A.BoxDecoration(t3, _null, _null, _null, _null, _null, B.BoxShape_0), B.DecorationPosition_1)], type$.JSArray_Widget); if (t2 && _this.showCaret) { t1 = t1.extent.affinity === B.TextAffinity_0; t2 = t1 ? 0 : _null; t1 = t1 ? _null : 0; t3.push(A.Positioned$(0, A.BlinkingCaret$(B.BorderRadius_tLn, _null, B.Offset_0_0, _this.caretColor, _null, false, true, 1), _null, _null, t2, t1, 0, 1)); } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t3, _null); } }; A.__BoxComponentState_State_DocumentComponent.prototype = {}; A.CommonEditorOperations.prototype = { selectAll$0() { var nodes = this.editor._document._nodes; if (nodes.length === 0) return false; this.composer.set$selection(new A.DocumentSelection(new A.DocumentPosition(J.get$id$x(B.JSArray_methods.get$first(nodes)), B.JSArray_methods.get$first(nodes).get$beginningPosition()), new A.DocumentPosition(J.get$id$x(B.JSArray_methods.get$last(nodes)), B.JSArray_methods.get$last(nodes).get$endPosition()))); return true; }, collapseSelection$0() { var t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t1.set$selection(t2.collapse$0(0)); return true; }, moveCaretUpstream$2$expand$movementModifier(expand, movementModifier) { var currentExtent, nodeId, node, extentComponent, newExtentNodePosition, nextNode, newExtentNodeId, nextComponent, newExtent, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (!J.$eq$(t2.base, t2.extent) && !expand) { t2 = t1._document_composer$_selection; t2.toString; t1.set$selection(t2.collapseUpstream$1(_this.editor._document)); return true; } currentExtent = t1._document_composer$_selection.extent; nodeId = currentExtent.nodeId; node = _this.editor._document.getNodeById$1(nodeId); if (node == null) return false; t2 = _this.documentLayoutResolver; extentComponent = t2.call$0().getComponentByNodeId$1(nodeId); if (extentComponent == null) return false; newExtentNodePosition = extentComponent.movePositionLeft$2(currentExtent.nodePosition, movementModifier); if (newExtentNodePosition == null) { nextNode = _this._getUpstreamSelectableNodeBefore$1(node); if (nextNode == null) return false; newExtentNodeId = nextNode.get$id(nextNode); nextComponent = t2.call$0().getComponentByNodeId$1(nextNode.get$id(nextNode)); if (nextComponent == null) return false; newExtentNodePosition = nextComponent.getEndPosition$0(); } else newExtentNodeId = nodeId; newExtent = new A.DocumentPosition(newExtentNodeId, newExtentNodePosition); if (expand) t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(newExtent)); else t1.set$selection(new A.DocumentSelection(newExtent, newExtent)); return true; }, moveCaretDownstream$2$expand$movementModifier(expand, movementModifier) { var currentExtent, nodeId, node, extentComponent, newExtentNodePosition, nextNode, newExtentNodeId, nextComponent, newExtent, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (!J.$eq$(t2.base, t2.extent) && !expand) { t2 = t1._document_composer$_selection; t2.toString; t1.set$selection(t2.collapseDownstream$1(_this.editor._document)); return true; } currentExtent = t1._document_composer$_selection.extent; nodeId = currentExtent.nodeId; node = _this.editor._document.getNodeById$1(nodeId); if (node == null) return false; t2 = _this.documentLayoutResolver; extentComponent = t2.call$0().getComponentByNodeId$1(nodeId); if (extentComponent == null) return false; newExtentNodePosition = extentComponent.movePositionRight$2(currentExtent.nodePosition, movementModifier); if (newExtentNodePosition == null) { nextNode = _this._getDownstreamSelectableNodeAfter$1(node); if (nextNode == null) return false; newExtentNodeId = nextNode.get$id(nextNode); nextComponent = t2.call$0().getComponentByNodeId$1(nextNode.get$id(nextNode)); if (nextComponent == null) throw A.wrapException(A.Exception_Exception("Could not find next component to move the selection horizontally. Next node ID: " + A.S(nextNode.get$id(nextNode)))); newExtentNodePosition = nextComponent.getBeginningPosition$0(); } else newExtentNodeId = nodeId; newExtent = new A.DocumentPosition(newExtentNodeId, newExtentNodePosition); if (expand) t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(newExtent)); else t1.set$selection(new A.DocumentSelection(newExtent, newExtent)); return true; }, moveCaretUp$1$expand(expand) { var currentExtent, nodeId, node, extentComponent, t2, newExtentNodePosition, nextNode, newExtentNodeId, nextComponent, _this = this, t1 = _this.composer._document_composer$_selection; if (t1 == null) return false; currentExtent = t1.extent; nodeId = currentExtent.nodeId; node = _this.editor._document.getNodeById$1(nodeId); if (node == null) return false; t1 = _this.documentLayoutResolver; extentComponent = t1.call$0().getComponentByNodeId$1(nodeId); if (extentComponent == null) return false; t2 = currentExtent.nodePosition; newExtentNodePosition = extentComponent.movePositionUp$1(t2); if (newExtentNodePosition == null) { nextNode = _this._getUpstreamSelectableNodeBefore$1(node); if (nextNode != null) { newExtentNodeId = nextNode.get$id(nextNode); nextComponent = t1.call$0().getComponentByNodeId$1(nextNode.get$id(nextNode)); if (nextComponent == null) { $.$get$editorOpsLog().log$4(B.Level_SHOUT_1200, string$.Tried_o + A.S(newExtentNodeId), null, null); return false; } newExtentNodePosition = nextComponent.getEndPositionNearX$1(extentComponent.getOffsetForPosition$1(t2)._dx); } else { newExtentNodePosition = extentComponent.getBeginningPosition$0(); newExtentNodeId = nodeId; } } else newExtentNodeId = nodeId; _this._updateSelectionExtent$2$expandSelection$position(expand, new A.DocumentPosition(newExtentNodeId, newExtentNodePosition)); return true; }, moveCaretDown$1$expand(expand) { var currentExtent, nodeId, node, extentComponent, t2, newExtentNodePosition, nextNode, newExtentNodeId, nextComponent, _this = this, t1 = _this.composer._document_composer$_selection; if (t1 == null) return false; currentExtent = t1.extent; nodeId = currentExtent.nodeId; node = _this.editor._document.getNodeById$1(nodeId); if (node == null) return false; t1 = _this.documentLayoutResolver; extentComponent = t1.call$0().getComponentByNodeId$1(nodeId); if (extentComponent == null) return false; t2 = currentExtent.nodePosition; newExtentNodePosition = extentComponent.movePositionDown$1(t2); if (newExtentNodePosition == null) { nextNode = _this._getDownstreamSelectableNodeAfter$1(node); if (nextNode != null) { newExtentNodeId = nextNode.get$id(nextNode); nextComponent = t1.call$0().getComponentByNodeId$1(nextNode.get$id(nextNode)); if (nextComponent == null) { $.$get$editorOpsLog().log$4(B.Level_SHOUT_1200, string$.Tried_o + A.S(newExtentNodeId), null, null); return false; } newExtentNodePosition = nextComponent.getBeginningPositionNearX$1(extentComponent.getOffsetForPosition$1(t2)._dx); } else { newExtentNodePosition = extentComponent.getEndPosition$0(); newExtentNodeId = nodeId; } } else newExtentNodeId = nodeId; _this._updateSelectionExtent$2$expandSelection$position(expand, new A.DocumentPosition(newExtentNodeId, newExtentNodePosition)); return true; }, _updateSelectionExtent$2$expandSelection$position(expandSelection, position) { var t1 = this.composer; if (expandSelection) t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(position)); else t1.set$selection(new A.DocumentSelection(position, position)); }, _getUpstreamSelectableNodeBefore$1(startingNode) { var selectableNode, t3, nextComponent, t1 = this.editor._document, t2 = this.documentLayoutResolver, prevNode = startingNode, foundSelectableNode = false; do { selectableNode = t1.getNodeBefore$1(prevNode); t3 = selectableNode != null; if (t3) { nextComponent = t2.call$0().getComponentByNodeId$1(selectableNode.get$id(selectableNode)); if (nextComponent != null) { nextComponent.isVisualSelectionSupported$0(); foundSelectableNode = true; } prevNode = selectableNode; } } while (!foundSelectableNode && t3); return selectableNode; }, _getDownstreamSelectableNodeAfter$1(startingNode) { var selectableNode, t3, nextComponent, t1 = this.editor._document, t2 = this.documentLayoutResolver, prevNode = startingNode, foundSelectableNode = false; do { selectableNode = t1.getNodeAfter$1(prevNode); t3 = selectableNode != null; if (t3) { nextComponent = t2.call$0().getComponentByNodeId$1(selectableNode.get$id(selectableNode)); if (nextComponent != null) { nextComponent.isVisualSelectionSupported$0(); foundSelectableNode = true; } prevNode = selectableNode; } } while (!foundSelectableNode && t3); return selectableNode; }, deleteDownstream$0() { var t3, t4, nodeAfter, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (!J.$eq$(t2.base, t2.extent)) { _this._deleteExpandedSelection$0(); return true; } t2 = t1._document_composer$_selection.extent; t3 = t2.nodePosition; if (t3 instanceof A.UpstreamDownstreamNodePosition) if (t3.affinity === B.TextAffinity_0) { _this._replaceBlockNodeWithEmptyParagraphAndCollapsedSelection$1(t2.nodeId); return true; } else return _this._moveSelectionToBeginningOfNextNode$0(); if (t3 instanceof A.TextNodePosition) { t4 = _this.editor._document; t2 = type$.TextNode._as(t4.getNodeById$1(t2.nodeId))._text$_text; if (t3.offset === t2.text.length) { t1 = t4.getNodeById$1(t1._document_composer$_selection.extent.nodeId); t1.toString; nodeAfter = t4.getNodeAfter$1(t1); if (nodeAfter instanceof A.TextNode) return _this._mergeTextNodeWithDownstreamTextNode$0(); else if (nodeAfter != null) { _this.documentLayoutResolver.call$0().getComponentByNodeId$1(nodeAfter.get$id(nodeAfter)).isVisualSelectionSupported$0(); t1 = _this._moveSelectionToBeginningOfNextNode$0(); return t1; } } else return _this._deleteDownstreamCharacter$0(); } return false; }, _moveSelectionToBeginningOfNextNode$0() { var t3, node, nodeAfter, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; node = t3.getNodeById$1(t2.extent.nodeId); if (node == null) return false; nodeAfter = t3.getNodeAfter$1(node); if (nodeAfter == null) return false; t2 = new A.DocumentPosition(nodeAfter.get$id(nodeAfter), nodeAfter.get$beginningPosition()); t1.set$selection(new A.DocumentSelection(t2, t2)); return true; }, _mergeTextNodeWithDownstreamTextNode$0() { var nodeAfter, firstNodeTextLength, t3, t1 = this.editor._document, t2 = this.composer, node = t1.getNodeById$1(t2._document_composer$_selection.extent.nodeId); if (node == null) return false; if (!(node instanceof A.TextNode)) return false; nodeAfter = t1.getNodeAfter$1(node); if (nodeAfter == null) return false; if (!(nodeAfter instanceof A.TextNode)) return false; firstNodeTextLength = node._text$_text.text.length; t3 = node.id; new A.CombineParagraphsCommand(t3, nodeAfter.id).execute$2(t1, new A.DocumentEditorTransaction(t1)); t3 = new A.DocumentPosition(t3, new A.TextNodePosition(firstNodeTextLength, B.TextAffinity_1)); t2.set$selection(new A.DocumentSelection(t3, t3)); return true; }, _deleteDownstreamCharacter$0() { var t3, textNode, text, currentTextPosition, nextCharacterOffset, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; if (!this._isTextEntryNode$2$document$selection(t3, t2)) return false; t2 = t1._document_composer$_selection; if (J.$eq$(t2.base, t2.extent) && type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition).offset < 0) return false; textNode = type$.TextNode._as(t3.getNode$1(t1._document_composer$_selection.extent)); text = textNode._text$_text; currentTextPosition = type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition); t1 = currentTextPosition.offset; t2 = text.text; if (t1 >= t2.length) return false; nextCharacterOffset = A.getCharacterEndBounds(t2, t1); t1 = textNode.id; new A.DeleteSelectionCommand(new A.DocumentSelection(new A.DocumentPosition(t1, currentTextPosition), new A.DocumentPosition(t1, new A.TextNodePosition(nextCharacterOffset, B.TextAffinity_1)))).execute$2(t3, new A.DocumentEditorTransaction(t3)); return true; }, deleteUpstream$0() { var t3, t4, nodeBefore, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (!J.$eq$(t2.base, t2.extent)) { _this._deleteExpandedSelection$0(); return true; } t2 = _this.editor._document; t3 = t2.getNodeById$1(t1._document_composer$_selection.extent.nodeId); t3.toString; if (t3 instanceof A.ListItemNode && type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition).offset === 0) return _this.unindentListItem$0(); t1 = t1._document_composer$_selection.extent; t4 = t1.nodePosition; if (t4 instanceof A.UpstreamDownstreamNodePosition) if (t4.affinity === B.TextAffinity_1) { _this._replaceBlockNodeWithEmptyParagraphAndCollapsedSelection$1(t1.nodeId); return true; } else { nodeBefore = t2.getNodeBefore$1(t3); if (nodeBefore == null) return false; t1 = _this.documentLayoutResolver.call$0().getComponentByNodeId$1(nodeBefore.get$id(nodeBefore)); t1.toString; if (nodeBefore instanceof A.TextNode && nodeBefore._text$_text.text.length === 0) { new A.EditorCommandFunction(new A.CommonEditorOperations_deleteUpstream_closure(nodeBefore)).execute$2(t2, new A.DocumentEditorTransaction(t2)); return true; } t1.isVisualSelectionSupported$0(); return _this._moveSelectionToEndOfPrecedingNode$0(); } if (t4 instanceof A.TextNodePosition) if (t4.offset === 0) { nodeBefore = t2.getNodeBefore$1(t3); if (nodeBefore == null) return false; t1 = _this.documentLayoutResolver.call$0().getComponentByNodeId$1(nodeBefore.get$id(nodeBefore)); t1.toString; if (nodeBefore instanceof A.TextNode) return _this._mergeTextNodeWithUpstreamTextNode$0(); else { t1.isVisualSelectionSupported$0(); type$.TextNode._as(t3); if (t3._text$_text.text.length === 0) { if (_this._moveSelectionToEndOfPrecedingNode$0()) new A.EditorCommandFunction(new A.CommonEditorOperations_deleteUpstream_closure0(t3)).execute$2(t2, new A.DocumentEditorTransaction(t2)); return true; } else return _this._moveSelectionToEndOfPrecedingNode$0(); } } else return _this._deleteUpstreamCharacter$0(); return false; }, _moveSelectionToEndOfPrecedingNode$0() { var t3, node, nodeBefore, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; node = t3.getNodeById$1(t2.extent.nodeId); if (node == null) return false; nodeBefore = t3.getNodeBefore$1(node); if (nodeBefore == null) return false; t2 = new A.DocumentPosition(nodeBefore.get$id(nodeBefore), nodeBefore.get$endPosition()); t1.set$selection(new A.DocumentSelection(t2, t2)); return true; }, _mergeTextNodeWithUpstreamTextNode$0() { var nodeAbove, aboveParagraphLength, t3, t1 = this.editor._document, t2 = this.composer, node = t1.getNodeById$1(t2._document_composer$_selection.extent.nodeId); if (node == null) return false; nodeAbove = t1.getNodeBefore$1(node); if (nodeAbove == null) return false; if (!(nodeAbove instanceof A.TextNode)) return false; aboveParagraphLength = nodeAbove._text$_text.text.length; t3 = nodeAbove.id; new A.CombineParagraphsCommand(t3, node.get$id(node)).execute$2(t1, new A.DocumentEditorTransaction(t1)); t3 = new A.DocumentPosition(t3, new A.TextNodePosition(aboveParagraphLength, B.TextAffinity_1)); t2.set$selection(new A.DocumentSelection(t3, t3)); return true; }, _deleteUpstreamCharacter$0() { var t3, textNode, currentTextPosition, previousCharacterOffset, newSelectionPosition, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; if (!this._isTextEntryNode$2$document$selection(t3, t2)) return false; t2 = t1._document_composer$_selection; if (J.$eq$(t2.base, t2.extent) && type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition).offset <= 0) return false; textNode = type$.TextNode._as(t3.getNode$1(t1._document_composer$_selection.extent)); currentTextPosition = type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition); previousCharacterOffset = A.getCharacterStartBounds(textNode._text$_text.text, currentTextPosition.offset); t2 = textNode.id; newSelectionPosition = new A.DocumentPosition(t2, new A.TextNodePosition(previousCharacterOffset, B.TextAffinity_1)); new A.DeleteSelectionCommand(new A.DocumentSelection(new A.DocumentPosition(t2, currentTextPosition), new A.DocumentPosition(t2, new A.TextNodePosition(previousCharacterOffset, B.TextAffinity_1)))).execute$2(t3, new A.DocumentEditorTransaction(t3)); t1.set$selection(new A.DocumentSelection(newSelectionPosition, newSelectionPosition)); return true; }, _replaceBlockNodeWithEmptyParagraphAndCollapsedSelection$1(nodeId) { var t1 = this.editor._document; new A.EditorCommandFunction(new A.CommonEditorOperations__replaceBlockNodeWithEmptyParagraphAndCollapsedSelection_closure(this, nodeId)).execute$2(t1, new A.DocumentEditorTransaction(t1)); }, deleteSelection$0() { var t1 = this.composer._document_composer$_selection; if (t1 == null) return false; if (J.$eq$(t1.base, t1.extent)) return false; this._deleteExpandedSelection$0(); return true; }, _deleteExpandedSelection$0() { var newSelectionPosition, t1 = this.editor._document, t2 = this.composer, t3 = t2._document_composer$_selection; t3.toString; newSelectionPosition = A.CommonEditorOperations_getDocumentPositionAfterExpandedDeletion(t1, t3); t3 = t2._document_composer$_selection; t3.toString; new A.DeleteSelectionCommand(t3).execute$2(t1, new A.DocumentEditorTransaction(t1)); t2.set$selection(new A.DocumentSelection(newSelectionPosition, newSelectionPosition)); }, toggleAttributionsOnSelection$1(attributions) { var t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (J.$eq$(t2.base, t2.extent)) return false; t1 = t1._document_composer$_selection; t1.toString; t2 = this.editor._document; new A.ToggleTextAttributionsCommand(t1, attributions).execute$2(t2, new A.DocumentEditorTransaction(t2)); return false; }, insertPlainText$1(text) { var t3, t4, textNode, initialTextOffset, _this = this, _null = null, t1 = $.$get$editorOpsLog(), t2 = _this.composer; t1.log$4(B.Level_FINE_500, 'Attempting to insert "' + text + '" at document selection: ' + A.S(t2._document_composer$_selection), _null, _null); t3 = t2._document_composer$_selection; if (t3 == null) { t1.log$4(B.Level_FINE_500, "The composer has no selection. Can't insert.", _null, _null); return false; } if (!J.$eq$(t3.base, t3.extent)) { t1.log$4(B.Level_FINE_500, "The selection is expanded. Deleting the selection before inserting text.", _null, _null); _this._deleteExpandedSelection$0(); } if (t2._document_composer$_selection.extent.nodePosition instanceof A.UpstreamDownstreamNodePosition) { t1.log$4(B.Level_FINE_500, string$.The_se, _null, _null); _this.insertBlockLevelNewline$0(); } t3 = _this.editor._document; t4 = t3.getNodeById$1(t2._document_composer$_selection.extent.nodeId); t4.toString; if (!(t4 instanceof A.TextNode)) { t1.log$4(B.Level_FINE_500, "Couldn't insert text because Super Editor doesn't know how to handle a node of type: " + t4.toString$0(0), _null, _null); return false; } textNode = type$.TextNode._as(t3.getNode$1(t2._document_composer$_selection.extent)); initialTextOffset = type$.TextNodePosition._as(t2._document_composer$_selection.extent.nodePosition).offset; t1.log$4(B.Level_FINE_500, "Executing text insertion command.", _null, _null); new A.InsertTextCommand(t2._document_composer$_selection.extent, text, t2._preferences._currentAttributions).execute$2(t3, new A.DocumentEditorTransaction(t3)); t1.log$4(B.Level_FINE_500, "Updating Document Composer selection after text insertion.", _null, _null); t1 = new A.DocumentPosition(textNode.id, new A.TextNodePosition(initialTextOffset + text.length, B.TextAffinity_1)); t2.set$selection(new A.DocumentSelection(t1, t1)); return true; }, insertCharacter$1(character) { var t3, t4, inserted, _this = this, _null = null, t1 = $.$get$editorOpsLog(), t2 = A.S(character); t1.log$4(B.Level_FINE_500, "Trying to insert '" + t2 + "'", _null, _null); t3 = _this.composer; t4 = t3._document_composer$_selection; if (t4 == null) return false; if (!J.$eq$(t4.base, t4.extent)) _this._deleteExpandedSelection$0(); if (t3._document_composer$_selection.extent.nodePosition instanceof A.UpstreamDownstreamNodePosition) { t1.log$4(B.Level_FINE_500, string$.The_se, _null, _null); _this.insertBlockLevelNewline$0(); } t3 = _this.editor._document.getNodeById$1(t3._document_composer$_selection.extent.nodeId); t3.toString; if (!(t3 instanceof A.TextNode)) { t1.log$4(B.Level_FINE_500, "Couldn't insert character because Super Editor doesn't know how to handle a node of type: " + t3.toString$0(0), _null, _null); return false; } inserted = _this._insertCharacterInTextComposable$2$ignoreComposerAttributions(character, false); t1.log$4(B.Level_FINE_500, "Did insert '" + t2 + "'? " + inserted, _null, _null); return inserted; }, convertParagraphByPatternMatching$1(nodeId) { var t3, t4, textBeforeCaret, unorderedListItemMatch, hasUnorderedListItemMatch, orderedListItemMatch, hasOrderedListItemMatch, t5, startOfNewText, t6, adjustedText, hrMatch, blockquoteMatch, extractedLinks, linkCount, nonEmptyText, link, _null = null, _s26_ = "_convertParagraphIfDesired", t1 = this.editor, t2 = t1._document, node = t2.getNodeById$1(nodeId); if (node == null) return false; if (!(node instanceof A.ParagraphNode)) return false; t3 = this.composer; t4 = type$.TextNodePosition; textBeforeCaret = J.substring$2$s(node._text$_text.text, 0, t4._as(t3._document_composer$_selection.extent.nodePosition).offset); unorderedListItemMatch = A.RegExp_RegExp("^\\s*[\\*-]\\s+$", true, false, false, false); hasUnorderedListItemMatch = unorderedListItemMatch._nativeRegExp.test(textBeforeCaret); orderedListItemMatch = A.RegExp_RegExp("^\\s*1[.)]\\s+$", true, false, false, false); hasOrderedListItemMatch = orderedListItemMatch._nativeRegExp.test(textBeforeCaret); t5 = $.$get$editorOpsLog(); t5.log$4(B.Level_FINE_500, _s26_, ' - text before caret: "' + textBeforeCaret + '"', _null); if (hasUnorderedListItemMatch || hasOrderedListItemMatch) { t5.log$4(B.Level_FINE_500, _s26_, " - found unordered list item prefix", _null); startOfNewText = textBeforeCaret.length; t1 = node._text$_text; t5 = t1.text; t6 = t5.length; while (true) { if (!(startOfNewText < t6 && t5[startOfNewText] === " ")) break; ++startOfNewText; } adjustedText = t1.copyText$1(startOfNewText); t1 = node.id; new A.EditorCommandFunction(new A.CommonEditorOperations_convertParagraphByPatternMatching_closure(node, hasUnorderedListItemMatch ? A.ListItemNode$unordered(t1, 0, adjustedText) : A.ListItemNode$ordered(t1, 0, adjustedText))).execute$2(t2, new A.DocumentEditorTransaction(t2)); t1 = new A.DocumentPosition(t1, new A.TextNodePosition(t4._as(t3._document_composer$_selection.extent.nodePosition).offset - startOfNewText, B.TextAffinity_1)); t3.set$selection(new A.DocumentSelection(t1, t1)); return true; } hrMatch = A.RegExp_RegExp("^---*\\s$", true, false, false, false); if (hrMatch._nativeRegExp.test(textBeforeCaret)) { t5.log$4(B.Level_FINE_500, "Paragraph has an HR match", _null, _null); new A.EditorCommandFunction(new A.CommonEditorOperations_convertParagraphByPatternMatching_closure0(B.JSArray_methods.indexOf$1(t2._nodes, node))).execute$2(t2, new A.DocumentEditorTransaction(t2)); t1 = node._text$_text; t2 = hrMatch.firstMatch$1(textBeforeCaret); node.set$text(0, t1.removeRegion$2$endOffset$startOffset(t2.get$end(t2), 0)); t2 = new A.DocumentPosition(node.id, B.TextNodePosition_0_TextAffinity_1); t3.set$selection(new A.DocumentSelection(t2, t2)); return true; } blockquoteMatch = A.RegExp_RegExp("^>\\s$", true, false, false, false); if (blockquoteMatch._nativeRegExp.test(textBeforeCaret)) { startOfNewText = textBeforeCaret.length; t1 = node._text$_text; t5 = t1.text; t6 = t5.length; while (true) { if (!(startOfNewText < t6 && t5[startOfNewText] === " ")) break; ++startOfNewText; } adjustedText = t1.copyText$1(startOfNewText); t1 = node.id; new A.EditorCommandFunction(new A.CommonEditorOperations_convertParagraphByPatternMatching_closure1(node, A.ParagraphNode$(t1, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_blockquote], type$.String, type$.dynamic), adjustedText))).execute$2(t2, new A.DocumentEditorTransaction(t2)); t4 = new A.DocumentPosition(t1, new A.TextNodePosition(t4._as(t3._document_composer$_selection.extent.nodePosition).offset - startOfNewText, B.TextAffinity_1)); t3.set$selection(new A.DocumentSelection(t4, t4)); return true; } t5.log$4(B.Level_FINE_500, "Looking for URL match...", _null, _null); extractedLinks = A.linkify(node._text$_text.text, B.LinkifyOptions_false); linkCount = B.JSArray_methods.fold$1$2(extractedLinks, 0, new A.CommonEditorOperations_convertParagraphByPatternMatching_closure2(), type$.int); nonEmptyText = B.JSArray_methods.fold$1$2(extractedLinks, "", new A.CommonEditorOperations_convertParagraphByPatternMatching_closure3(), type$.String); if (linkCount === 1 && nonEmptyText.length === 0) { link = A.IterableExtension_firstWhereOrNull(extractedLinks, new A.CommonEditorOperations_convertParagraphByPatternMatching_closure4()).text; this._processUrlNode$5$document$editor$nodeId$originalText$url(t2, t1, node.id, node._text$_text.text, link); return true; } return false; }, _processUrlNode$5$document$editor$nodeId$originalText$url($document, editor, nodeId, originalText, url) { return this._processUrlNode$body$CommonEditorOperations($document, editor, nodeId, originalText, url); }, _processUrlNode$body$CommonEditorOperations($document, editor, nodeId, originalText, url) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, contentType, node, imageNode, t2, response, t1; var $async$_processUrlNode$5$document$editor$nodeId$originalText$url = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return A._asyncAwait(A.get(A.Uri_parse(url, 0, null)), $async$_processUrlNode$5$document$editor$nodeId$originalText$url); case 3: // returning from await. response = $async$result; t1 = response.statusCode; if (t1 < 200 || t1 >= 300) { $.$get$editorOpsLog().log$4(B.Level_FINE_500, "Failed to load URL: " + A.S(t1) + " - " + A.S(response.reasonPhrase), null, null); // goto return $async$goto = 1; break; } contentType = response.headers.$index(0, "content-type"); if (contentType == null) { $.$get$editorOpsLog().log$4(B.Level_FINE_500, "Failed to determine URL content type.", null, null); // goto return $async$goto = 1; break; } if (!B.JSString_methods.startsWith$1(contentType, "image/")) { $.$get$editorOpsLog().log$4(B.Level_FINE_500, "URL is not an image. Ignoring", null, null); // goto return $async$goto = 1; break; } t1 = $.$get$editorOpsLog(); t1.log$4(B.Level_FINE_500, "The URL is an image. Converting the ParagraphNode to an ImageNode.", null, null); node = $document.getNodeById$1(nodeId); if (!(node instanceof A.ParagraphNode)) { t1.log$4(B.Level_FINE_500, "The node has become something other than a ParagraphNode (" + A.S(node) + "). Can't convert ndoe.", null, null); // goto return $async$goto = 1; break; } if (J.trim$0$s(node._text$_text.text) !== J.trim$0$s(originalText)) { t1.log$4(B.Level_FINE_500, "The node content changed in a non-trivial way. Aborting node conversion.", null, null); // goto return $async$goto = 1; break; } t1 = node.id; imageNode = A.ImageNode$("", t1, url); t2 = editor._document; new A.EditorCommandFunction(new A.CommonEditorOperations__processUrlNode_closure(node, imageNode)).execute$2(t2, new A.DocumentEditorTransaction(t2)); t1 = new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1); $async$self.composer.set$selection(new A.DocumentSelection(t1, t1)); case 1: // return return A._asyncReturn($async$returnValue, $async$completer); } }); return A._asyncStartSync($async$_processUrlNode$5$document$editor$nodeId$originalText$url, $async$completer); }, _insertCharacterInTextComposable$2$ignoreComposerAttributions(character, ignoreComposerAttributions) { var t3, textNode, initialTextOffset, t4, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; if (!J.$eq$(t2.base, t2.extent)) return false; t2 = this.editor._document; t3 = t1._document_composer$_selection; t3.toString; if (!this._isTextEntryNode$2$document$selection(t2, t3)) return false; textNode = type$.TextNode._as(t2.getNode$1(t1._document_composer$_selection.extent)); t3 = t1._document_composer$_selection.extent; initialTextOffset = type$.TextNodePosition._as(t3.nodePosition).offset; t4 = t1._preferences; new A.InsertTextCommand(t3, character, t4._currentAttributions).execute$2(t2, new A.DocumentEditorTransaction(t2)); t2 = new A.DocumentPosition(textNode.id, new A.TextNodePosition(initialTextOffset + character.length, B.TextAffinity_1)); t1.set$selection(new A.DocumentSelection(t2, t2)); return true; }, insertBlockLevelNewline$0() { var t3, t4, newNodeId, currentExtentPosition, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = _this.editor._document; t2 = t3.getNodeById$1(t2.base.nodeId); t2.toString; t4 = t3.getNodeById$1(t1._document_composer$_selection.extent.nodeId); t4.toString; if (t2.get$id(t2) != t4.get$id(t4)) return false; t2 = t1._document_composer$_selection; if (!J.$eq$(t2.base, t2.extent)) _this._deleteExpandedSelection$0(); newNodeId = B.C_Uuid.v4$0(); if (t4 instanceof A.ListItemNode) { if (t4._text$_text.text.length === 0) return _this.convertToParagraph$0(); new A.SplitListItemCommand(t4.id, type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition), newNodeId).execute$2(t3, new A.DocumentEditorTransaction(t3)); } else if (t4 instanceof A.ParagraphNode) { currentExtentPosition = type$.TextNodePosition._as(t1._document_composer$_selection.extent.nodePosition); t2 = t4._text$_text.text.length; new A.SplitParagraphCommand(t4.id, currentExtentPosition, newNodeId, currentExtentPosition.offset !== t2).execute$2(t3, new A.DocumentEditorTransaction(t3)); } else { t2 = t1._document_composer$_selection.extent.nodePosition; if (t2 instanceof A.UpstreamDownstreamNodePosition) if (t2.affinity === B.TextAffinity_1) new A.EditorCommandFunction(new A.CommonEditorOperations_insertBlockLevelNewline_closure(t4, newNodeId)).execute$2(t3, new A.DocumentEditorTransaction(t3)); else new A.EditorCommandFunction(new A.CommonEditorOperations_insertBlockLevelNewline_closure0(t4, newNodeId)).execute$2(t3, new A.DocumentEditorTransaction(t3)); else return false; } t2 = new A.DocumentPosition(newNodeId, B.TextNodePosition_0_TextAffinity_1); t1.set$selection(new A.DocumentSelection(t2, t2)); return true; }, indentListItem$0() { var t3, baseNode, extentNode, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; baseNode = t3.getNodeById$1(t2.base.nodeId); extentNode = t3.getNodeById$1(t1._document_composer$_selection.extent.nodeId); if (!(baseNode instanceof A.ListItemNode) || !(extentNode instanceof A.ListItemNode)) return false; new A.IndentListItemCommand(extentNode.id).execute$2(t3, new A.DocumentEditorTransaction(t3)); return true; }, unindentListItem$0() { var t3, baseNode, extentNode, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; baseNode = t3.getNodeById$1(t2.base.nodeId); extentNode = t3.getNodeById$1(t1._document_composer$_selection.extent.nodeId); if (baseNode.get$id(baseNode) != extentNode.get$id(extentNode)) return false; if (!(baseNode instanceof A.ListItemNode)) return false; new A.UnIndentListItemCommand(extentNode.get$id(extentNode)).execute$2(t3, new A.DocumentEditorTransaction(t3)); return true; }, convertToListItem$2(type, text) { var t2, node, t1 = this.composer._document_composer$_selection; if (t1 == null) return false; t2 = t1.base.nodeId; if (t2 != t1.extent.nodeId) return false; t1 = this.editor._document; node = t1.getNodeById$1(t2); if (!(node instanceof A.TextNode)) return false; new A.EditorCommandFunction(new A.CommonEditorOperations_convertToListItem_closure(node, A.ListItemNode$(t2, 0, type, text))).execute$2(t1, new A.DocumentEditorTransaction(t1)); return true; }, convertToBlockquote$1(text) { var t2, node, t1 = this.composer._document_composer$_selection; if (t1 == null) return false; t2 = t1.base.nodeId; if (t2 != t1.extent.nodeId) return false; t1 = this.editor._document; node = t1.getNodeById$1(t2); if (!(node instanceof A.TextNode)) return false; new A.EditorCommandFunction(new A.CommonEditorOperations_convertToBlockquote_closure(node, A.ParagraphNode$(t2, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_blockquote], type$.String, type$.dynamic), text))).execute$2(t1, new A.DocumentEditorTransaction(t1)); return true; }, convertToParagraph$1$newMetadata(newMetadata) { var t3, t1 = this.composer, t2 = t1._document_composer$_selection; if (t2 == null) return false; t3 = this.editor._document; t2 = t3.getNodeById$1(t2.base.nodeId); t2.toString; t1 = t3.getNodeById$1(t1._document_composer$_selection.extent.nodeId); t1.toString; if (t2.get$id(t2) != t1.get$id(t1)) return false; if (!(t1 instanceof A.TextNode)) return false; if (t1 instanceof A.ParagraphNode && t1._metadata.$index(0, "blockType") != null) return false; new A.EditorCommandFunction(new A.CommonEditorOperations_convertToParagraph_closure(t1, newMetadata)).execute$2(t3, new A.DocumentEditorTransaction(t3)); return true; }, convertToParagraph$0() { return this.convertToParagraph$1$newMetadata(null); }, _isTextEntryNode$2$document$selection($document, selection) { return $document.getNodeById$1(selection.extent.nodeId) instanceof A.TextNode; }, copy$0(_) { var t1 = this.editor._document, t2 = this.composer._document_composer$_selection; t2.toString; A.Clipboard_setData(new A.ClipboardData(this._textInSelection$2$document$documentSelection(t1, t2))); }, cut$0() { var _this = this, t1 = _this.editor._document, t2 = _this.composer._document_composer$_selection; t2.toString; A.Clipboard_setData(new A.ClipboardData(_this._textInSelection$2$document$documentSelection(t1, t2))); _this.deleteSelection$0(); }, _textInSelection$2$document$documentSelection($document, documentSelection) { var i, t3, selectedNode, baseSelectionPosition, nodeSelection, nodePosition, nodeContent, t1 = documentSelection.base, t2 = documentSelection.extent, selectedNodes = $document.getNodesInside$2(t1, t2), buffer = new A.StringBuffer(""); for (i = 0; t3 = selectedNodes.length, i < t3; ++i) { selectedNode = selectedNodes[i]; if (i === 0) { baseSelectionPosition = selectedNode.get$id(selectedNode) == t1.nodeId ? t1.nodePosition : t2.nodePosition; nodeSelection = selectedNode.computeSelection$2$base$extent(baseSelectionPosition, selectedNodes.length > 1 ? selectedNode.get$endPosition() : t2.nodePosition); } else if (i === t3 - 1) { nodePosition = selectedNode.get$id(selectedNode) == t1.nodeId ? t1.nodePosition : t2.nodePosition; nodeSelection = selectedNode.computeSelection$2$base$extent(selectedNode.get$beginningPosition(), nodePosition); } else nodeSelection = selectedNode.computeSelection$2$base$extent(selectedNode.get$beginningPosition(), selectedNode.get$endPosition()); nodeContent = selectedNode.copyContent$1(nodeSelection); if (nodeContent != null) { t3 = buffer._contents += nodeContent; if (i < selectedNodes.length - 1) buffer._contents = t3 + "\n"; } } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, paste$0() { var t3, _this = this, t1 = _this.composer, t2 = t1._document_composer$_selection, pastePosition = t2.extent; if (!J.$eq$(t2.base, pastePosition)) { t2 = _this.editor._document; t3 = t1._document_composer$_selection; t3.toString; pastePosition = A.CommonEditorOperations_getDocumentPositionAfterExpandedDeletion(t2, t3); t3 = t1._document_composer$_selection; t3.toString; new A.DeleteSelectionCommand(t3).execute$2(t2, new A.DocumentEditorTransaction(t2)); t1.set$selection(new A.DocumentSelection(pastePosition, pastePosition)); } t2 = _this.editor; _this._paste$4$composer$document$editor$pastePosition(t1, t2._document, t2, pastePosition); }, _paste$4$composer$document$editor$pastePosition(composer, $document, editor, pastePosition) { return this._paste$body$CommonEditorOperations(composer, $document, editor, pastePosition); }, _paste$body$CommonEditorOperations(composer, $document, editor, pastePosition) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), t1, $content; var $async$_paste$4$composer$document$editor$pastePosition = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return A._asyncAwait(A.Clipboard_getData("text/plain"), $async$_paste$4$composer$document$editor$pastePosition); case 2: // returning from await. t1 = $async$result; $content = t1 == null ? null : t1.text; if ($content == null) $content = ""; t1 = editor._document; new A._PasteEditorCommand($content, pastePosition, composer).execute$2(t1, new A.DocumentEditorTransaction(t1)); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_paste$4$composer$document$editor$pastePosition, $async$completer); } }; A.CommonEditorOperations_deleteUpstream_closure.prototype = { call$2(doc, transaction) { transaction._document.deleteNode$1(this.nodeBefore); }, $signature: 118 }; A.CommonEditorOperations_deleteUpstream_closure0.prototype = { call$2(doc, transaction) { transaction._document.deleteNode$1(this.node); }, $signature: 118 }; A.CommonEditorOperations__replaceBlockNodeWithEmptyParagraphAndCollapsedSelection_closure.prototype = { call$2(doc, transaction) { var newNode, t1, oldNode = doc.getNodeById$1(this.nodeId); if (oldNode == null) return; newNode = A.ParagraphNode$(oldNode.get$id(oldNode), null, A.AttributedText$(null, "")); transaction._document.replaceNode$2$newNode$oldNode(newNode, oldNode); t1 = new A.DocumentPosition(newNode.id, B.TextNodePosition_0_TextAffinity_1); this.$this.composer.set$selection(new A.DocumentSelection(t1, t1)); }, $signature: 118 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure.prototype = { call$2($document, transaction) { transaction._document.replaceNode$2$newNode$oldNode(this.newNode, this.node); }, $signature: 118 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure0.prototype = { call$2($document, transaction) { transaction._document.insertNodeAt$2(this.paragraphNodeIndex, A.HorizontalRuleNode$(B.C_Uuid.v4$0())); }, $signature: 118 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure1.prototype = { call$2($document, transaction) { transaction._document.replaceNode$2$newNode$oldNode(this.newNode, this.node); }, $signature: 118 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure2.prototype = { call$2(value, element) { return element instanceof A.UrlElement ? value + 1 : value; }, $signature: 2874 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure3.prototype = { call$2(value, element) { return element instanceof A.TextElement ? J.$add$ansx(value, J.trim$0$s(element.text)) : value; }, $signature: 2875 }; A.CommonEditorOperations_convertParagraphByPatternMatching_closure4.prototype = { call$1(element) { return element instanceof A.UrlElement; }, $signature: 2876 }; A.CommonEditorOperations__processUrlNode_closure.prototype = { call$2($document, transaction) { transaction._document.replaceNode$2$newNode$oldNode(this.imageNode, this.node); }, $signature: 118 }; A.CommonEditorOperations_insertBlockLevelNewline_closure.prototype = { call$2(doc, transaction) { transaction._document.insertNodeAfter$2$existingNode$newNode(this.extentNode, A.ParagraphNode$(this.newNodeId, null, A.AttributedText$(null, ""))); }, $signature: 118 }; A.CommonEditorOperations_insertBlockLevelNewline_closure0.prototype = { call$2(doc, transaction) { var t1 = A.ParagraphNode$(this.newNodeId, null, A.AttributedText$(null, "")), t2 = transaction._document, t3 = t2._nodes; B.JSArray_methods.insert$2(t3, B.JSArray_methods.indexOf$1(t3, this.extentNode), t1); t1.addListener$1(0, t2.get$_forwardNodeChange()); t2.notifyListeners$0(); }, $signature: 118 }; A.CommonEditorOperations_convertToListItem_closure.prototype = { call$2($document, transaction) { transaction._document.replaceNode$2$newNode$oldNode(this.newNode, this.node); }, $signature: 118 }; A.CommonEditorOperations_convertToBlockquote_closure.prototype = { call$2($document, transaction) { transaction._document.replaceNode$2$newNode$oldNode(this.newNode, this.node); }, $signature: 118 }; A.CommonEditorOperations_convertToParagraph_closure.prototype = { call$2($document, transaction) { var t1 = this.extentNode; if (t1 instanceof A.ParagraphNode) { t1.putMetadataValue$2("blockType", null); t1.notifyListeners$0(); } else transaction._document.replaceNode$2$newNode$oldNode(A.ParagraphNode$(t1.id, this.newMetadata, t1._text$_text), t1); }, $signature: 118 }; A._PasteEditorCommand.prototype = { execute$2($document, transaction) { var t2, _i, t3, currentNodeWithSelection, textNode, pasteTextOffset, attributionsAtPasteOffset, newSelectionPosition, newNodes, nodeWithSelection, mergeAfterNode, i, _null = null, splitContent = A._setArrayType(this._content.split("\n\n"), type$.JSArray_String), t1 = $.$get$editorOpsLog(); t1.log$4(B.Level_FINE_500, "Split content:", _null, _null); for (t2 = splitContent.length, _i = 0; _i < splitContent.length; splitContent.length === t2 || (0, A.throwConcurrentModificationError)(splitContent), ++_i) t1.log$4(B.Level_FINE_500, ' - "' + A.S(splitContent[_i]) + '"', _null, _null); t2 = this._pastePosition; t3 = t2.nodeId; currentNodeWithSelection = $document.getNodeById$1(t3); if (currentNodeWithSelection instanceof A.TextNode) { textNode = type$.TextNode._as($document.getNode$1(t2)); pasteTextOffset = type$.TextPosition._as(t2.nodePosition).offset; attributionsAtPasteOffset = textNode._text$_text.spans.getAllAttributionsAt$1(pasteTextOffset); if (splitContent.length > 1 && pasteTextOffset < textNode._text$_text.text.length) if (currentNodeWithSelection instanceof A.ParagraphNode) new A.SplitParagraphCommand(currentNodeWithSelection.id, new A.TextPosition(pasteTextOffset, B.TextAffinity_1), B.C_Uuid.v4$0(), false).execute$2($document, transaction); else throw A.wrapException(A.Exception_Exception("Can't handle pasting text within node of type: " + currentNodeWithSelection.toString$0(0))); new A.InsertTextCommand(t2, B.JSArray_methods.get$first(splitContent), attributionsAtPasteOffset).execute$2($document, transaction); newSelectionPosition = new A.DocumentPosition(currentNodeWithSelection.id, new A.TextNodePosition(pasteTextOffset + J.get$length$asx(B.JSArray_methods.get$first(splitContent)), B.TextAffinity_1)); B.JSArray_methods.removeAt$1(splitContent, 0); } else newSelectionPosition = _null; t2 = type$.MappedListIterable_String_ParagraphNode; newNodes = A.List_List$of(new A.MappedListIterable(splitContent, new A._PasteEditorCommand_execute_closure(), t2), true, t2._eval$1("ListIterable.E")); t1.log$4(B.Level_FINE_500, " - new nodes: " + A.S(newNodes), _null, _null); nodeWithSelection = $document.getNodeById$1(t3); if (nodeWithSelection == null) throw A.wrapException(A.Exception_Exception("Failed to complete paste process because the node being pasted into disappeared from the document unexpectedly.")); for (t1 = transaction._document, mergeAfterNode = nodeWithSelection, i = 0; i < newNodes.length; ++i) { t1.insertNodeAfter$2$existingNode$newNode(mergeAfterNode, newNodes[i]); mergeAfterNode = newNodes[i]; newSelectionPosition = new A.DocumentPosition(mergeAfterNode.id, new A.TextNodePosition(mergeAfterNode._text$_text.text.length, B.TextAffinity_1)); } t1 = this._common_editor_operations$_composer; newSelectionPosition.toString; t1.set$selection(new A.DocumentSelection(newSelectionPosition, newSelectionPosition)); t2 = $.$get$editorOpsLog(); t2.log$4(B.Level_FINE_500, " - new selection: " + A.S(t1._document_composer$_selection), _null, _null); t2.log$4(B.Level_FINE_500, "Done with paste command.", _null, _null); } }; A._PasteEditorCommand_execute_closure.prototype = { call$1(nodeText) { return A.ParagraphNode$(B.C_Uuid.v4$0(), null, A.AttributedText$(null, nodeText)); }, $signature: 2877 }; A.AxisOffset.prototype = { toString$0(_) { return "[AxisOffset] - leading: " + this.leading + ", trailing: " + this.trailing; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.AxisOffset && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.leading === other.leading && _this.trailing === other.trailing; else t1 = true; return t1; }, get$hashCode(_) { return B.JSInt_methods.get$hashCode(this.leading) ^ B.JSInt_methods.get$hashCode(this.trailing); } }; A.DocumentMouseInteractor.prototype = { createState$0() { return new A._DocumentMouseInteractorState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B.SelectionType_00, new A.ValueNotifier(B.SystemMouseCursor_basic, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_MouseCursor), null, null, B._StateLifecycle_0); } }; A._DocumentMouseInteractorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.focusNode; _this.___DocumentMouseInteractorState__focusNode = t1; _this.___DocumentMouseInteractorState__ticker = _this.createTicker$1(_this.get$_document_gestures_mouse$_onTick()); t1 = _this._widget.scrollController; if (t1 == null) t1 = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); t1.addListener$1(0, _this.get$_document_gestures_mouse$_updateDragSelection()); _this.___DocumentMouseInteractorState__scrollController = t1; _this._widget.editContext.composer.addListener$1(0, _this.get$_document_gestures_mouse$_onSelectionChange()); }, didChangeDependencies$0() { this.super$State$didChangeDependencies(); this._widget.toString; }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s17_ = "_scrollController"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.editContext; t2 = oldWidget.editContext.composer; if (t1.composer !== t2) { t1 = _this.get$_document_gestures_mouse$_onSelectionChange(); t2.removeListener$1(0, t1); _this._widget.editContext.composer.addListener$1(0, t1); } t1 = _this._widget.scrollController; t2 = oldWidget.scrollController; if (t1 != t2) { t1 = _this.get$_document_gestures_mouse$_updateDragSelection(); A._lateReadCheck(_this.___DocumentMouseInteractorState__scrollController, _s17_).removeListener$1(0, t1); if (t2 == null) A._lateReadCheck(_this.___DocumentMouseInteractorState__scrollController, _s17_).dispose$0(0); t2 = _this._widget.scrollController; if (t2 == null) t2 = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); t2.addListener$1(0, t1); _this.___DocumentMouseInteractorState__scrollController = t2; } t1 = _this._widget.focusNode; if (t1 !== oldWidget.focusNode) _this.___DocumentMouseInteractorState__focusNode = t1; }, dispose$0(_) { var _this = this; _this._widget.editContext.composer.removeListener$1(0, _this.get$_document_gestures_mouse$_onSelectionChange()); A._lateReadCheck(_this.___DocumentMouseInteractorState__ticker, "_ticker").dispose$0(0); if (_this._widget.scrollController == null) A._lateReadCheck(_this.___DocumentMouseInteractorState__scrollController, "_scrollController").dispose$0(0); _this._widget.toString; _this.super$__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin$dispose(0); }, get$_document_gestures_mouse$_scrollPosition() { var t1 = this._document_gestures_mouse$_ancestorScrollPosition; return t1 == null ? B.JSArray_methods.get$single(A._lateReadCheck(this.___DocumentMouseInteractorState__scrollController, "_scrollController")._positions) : t1; }, get$_viewport() { var t1 = this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); t1 = t1 == null ? null : t1._framework$_element.get$renderObject(); if (t1 == null) t1 = this._framework$_element.get$renderObject(); return type$.RenderBox._as(t1); }, get$_isShiftPressed() { var t1 = $.$get$RawKeyboard_instance()._keysPressed, t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934850)) { t2 = t1.get$values(t1); if (!A.LinkedHashSet_LinkedHashSet$of(t2, A._instanceType(t2)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589934851)) { t1 = t1.get$values(t1); t1 = A.LinkedHashSet_LinkedHashSet$of(t1, A._instanceType(t1)._eval$1("Iterable.E")).contains$1(0, B.LogicalKeyboardKey_8589935090); } else t1 = true; } else t1 = true; return t1 && this._widget.editContext.composer._document_composer$_selection != null; }, _interactorOffsetInViewport$1(interactorOffset) { return this.get$_viewport().globalToLocal$1(A.MatrixUtils_transformPoint(type$.RenderBox._as(this._framework$_element.get$renderObject()).getTransformTo$1(0, null), interactorOffset)); }, _document_gestures_mouse$_onSelectionChange$0() { if (this._framework$_element != null) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._DocumentMouseInteractorState__onSelectionChange_closure(this)); }, _document_gestures_mouse$_ensureSelectionExtentIsVisible$0() { var t2, selection, t3, selectionExtentRectInDoc, viewportBox, selectionExtentRectInViewport, beyondTopExtent, beyondBottomExtent, newScrollPosition, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINER_400, "Ensuring extent is visible: " + A.S(_this._widget.editContext.composer._document_composer$_selection), _null, _null); t2 = _this._widget.editContext; selection = t2.composer._document_composer$_selection; if (selection == null) return; t2 = t2._getDocumentLayout.call$0(); t3 = selection.extent; selectionExtentRectInDoc = t2.getRectForPosition$1(t3); if (selectionExtentRectInDoc == null) { t1.log$4(B.Level_WARNING_900, "Tried to ensure that position " + A.S(t3) + " is visible on screen but no bounding box was returned for that position.", _null, _null); return; } viewportBox = _this.get$_viewport(); selectionExtentRectInViewport = selectionExtentRectInDoc.translate$2(0, 0, viewportBox.globalToLocal$1(A.MatrixUtils_transformPoint(type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._documentWrapperKey).get$renderObject()).getTransformTo$1(0, _null), B.Offset_0_0))._dy); beyondTopExtent = Math.abs(Math.min(A.checkNum(selectionExtentRectInViewport.top), 0)); beyondBottomExtent = Math.max(selectionExtentRectInViewport.bottom - viewportBox._box$_size._dy, 0); t1.log$4(B.Level_FINEST_300, "Ensuring extent is visible.", _null, _null); t1.log$4(B.Level_FINEST_300, " - viewport size: " + viewportBox._box$_size.toString$0(0), _null, _null); t2 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t2.toString; t1.log$4(B.Level_FINEST_300, " - scroll controller offset: " + A.S(t2), _null, _null); t1.log$4(B.Level_FINEST_300, " - selection extent rect: " + selectionExtentRectInDoc.toString$0(0), _null, _null); t1.log$4(B.Level_FINEST_300, " - beyond top: " + A.S(beyondTopExtent), _null, _null); t1.log$4(B.Level_FINEST_300, " - beyond bottom: " + A.S(beyondBottomExtent), _null, _null); if (beyondTopExtent > 0) { t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._maxScrollExtent; t2.toString; newScrollPosition = B.JSNumber_methods.clamp$2(t1 - beyondTopExtent, 0, t2); _this.get$_document_gestures_mouse$_scrollPosition().animateTo$3$curve$duration(newScrollPosition, B.Cubic_xDo0, B.Duration_100000); } else if (beyondBottomExtent > 0) { t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._maxScrollExtent; t2.toString; newScrollPosition = B.JSNumber_methods.clamp$2(beyondBottomExtent + t1, 0, t2); _this.get$_document_gestures_mouse$_scrollPosition().animateTo$3$curve$duration(newScrollPosition, B.Cubic_xDo0, B.Duration_100000); } }, _document_gestures_mouse$_onTapUp$1(details) { var t2, t3, t4, docOffset, docPosition, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Tap up on document", _null, _null); t2 = details.localPosition; t3 = _this._widget.editContext._getDocumentLayout.call$0(); t4 = _this._framework$_element.get$renderObject(); t4.toString; docOffset = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.editContext._getDocumentLayout.call$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); A._lateReadCheck(_this.___DocumentMouseInteractorState__focusNode, "_focusNode").requestFocus$0(); if (docPosition != null) { _this._widget.editContext._getDocumentLayout.call$0().getComponentByNodeId$1(docPosition.nodeId).isVisualSelectionSupported$0(); if (_this.get$_isShiftPressed() && _this._widget.editContext.composer._document_composer$_selection != null) { t1 = _this._widget.editContext.composer; t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(docPosition)); } else { _this._document_gestures_mouse$_selectionType = B.SelectionType_00; _this._document_gestures_mouse$_selectPosition$1(docPosition); } } else _this._document_gestures_mouse$_clearSelection$0(); }, _document_gestures_mouse$_onDoubleTapDown$1(details) { var t2, t3, t4, docOffset, docPosition, didSelectContent, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Double tap down on document", _null, _null); t2 = details.localPosition; t3 = _this._widget.editContext._getDocumentLayout.call$0(); t4 = _this._framework$_element.get$renderObject(); t4.toString; docOffset = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.editContext._getDocumentLayout.call$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); t1 = docPosition != null; if (t1) _this._widget.editContext._getDocumentLayout.call$0().getComponentByNodeId$1(docPosition.nodeId).isVisualSelectionSupported$0(); _this._document_gestures_mouse$_selectionType = B.SelectionType_10; _this._document_gestures_mouse$_clearSelection$0(); if (t1) { didSelectContent = _this._document_gestures_mouse$_selectWordAt$2$docLayout$docPosition(_this._widget.editContext._getDocumentLayout.call$0(), docPosition); if (!(!didSelectContent ? _this._document_gestures_mouse$_selectBlockAt$1(docPosition) : didSelectContent)) _this._document_gestures_mouse$_selectPosition$1(docPosition); } A._lateReadCheck(_this.___DocumentMouseInteractorState__focusNode, "_focusNode").requestFocus$0(); }, _document_gestures_mouse$_selectBlockAt$1(position) { var t1; if (!(position.nodePosition instanceof A.UpstreamDownstreamNodePosition)) return false; t1 = position.nodeId; this._widget.editContext.composer.set$selection(new A.DocumentSelection(new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_0), new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1))); return true; }, _onDoubleTap$0() { $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Double tap up on document", null, null); this._document_gestures_mouse$_selectionType = B.SelectionType_00; }, _document_gestures_mouse$_onTripleTapDown$1(details) { var t2, t3, docOffset, docPosition, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Triple down down on document", _null, _null); t2 = _this._widget.editContext._getDocumentLayout.call$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; docOffset = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(details.localPosition, t3); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.editContext._getDocumentLayout.call$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); t1 = docPosition != null; if (t1) _this._widget.editContext._getDocumentLayout.call$0().getComponentByNodeId$1(docPosition.nodeId).isVisualSelectionSupported$0(); _this._document_gestures_mouse$_selectionType = B.SelectionType_20; _this._document_gestures_mouse$_clearSelection$0(); if (t1) if (!_this._document_gestures_mouse$_selectParagraphAt$2$docLayout$docPosition(_this._widget.editContext._getDocumentLayout.call$0(), docPosition)) _this._document_gestures_mouse$_selectPosition$1(docPosition); A._lateReadCheck(_this.___DocumentMouseInteractorState__focusNode, "_focusNode").requestFocus$0(); }, _onTripleTap$0() { $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Triple tap up on document", null, null); this._document_gestures_mouse$_selectionType = B.SelectionType_00; }, _document_gestures_mouse$_onPanStart$1(details) { var t1, t2, _this = this; $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Pan start on document", null, null); t1 = _this._framework$_element; t1.toString; _this._hasAncestorScrollable = A.Scrollable_of(t1) != null; t1 = _this._widget.editContext._getDocumentLayout.call$0(); t2 = _this._framework$_element.get$renderObject(); t2.toString; t2 = type$.RenderBox._as(t1._framework$_element.get$renderObject()).globalToLocal$2$ancestor(details.localPosition, t2); _this._document_gestures_mouse$_dragStartInDoc = t2; t1 = _this._debugInstrumentation; if (t1 != null) t1.startDragInContent.set$value(0, t2); t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; _this._document_gestures_mouse$_dragStartScrollOffset = t1; if (_this.get$_isShiftPressed()) _this._expandSelectionDuringDrag = true; if (!_this.get$_isShiftPressed()) _this._document_gestures_mouse$_clearSelection$0(); A._lateReadCheck(_this.___DocumentMouseInteractorState__focusNode, "_focusNode").requestFocus$0(); }, _document_gestures_mouse$_onPanUpdate$1(details) { this.setState$1(new A._DocumentMouseInteractorState__onPanUpdate_closure(this, details)); }, _document_gestures_mouse$_onPanEnd$1(details) { $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Pan end on document", null, null); this._onDragEnd$0(); }, _document_gestures_mouse$_onPanCancel$0() { $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Pan cancel on document", null, null); this._onDragEnd$0(); }, _onDragEnd$0() { var _this = this; _this.setState$1(new A._DocumentMouseInteractorState__onDragEnd_closure(_this)); _this._stopScrollingUp$0(); _this._stopScrollingDown$0(); }, _onMouseMove$1(pointerEvent) { this._updateCursorStyle$1(pointerEvent.get$localPosition()); }, _document_gestures_mouse$_selectWordAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getWordSelection(docLayout, docPosition); if (newSelection != null) { this._widget.editContext.composer.set$selection(newSelection); return true; } else return false; }, _document_gestures_mouse$_selectParagraphAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getParagraphSelection(docLayout, docPosition); if (newSelection != null) { this._widget.editContext.composer.set$selection(newSelection); return true; } else return false; }, _document_gestures_mouse$_selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + position.toString$0(0), null, null); this._widget.editContext.composer.set$selection(new A.DocumentSelection(position, position)); }, _document_gestures_mouse$_updateDragSelection$0() { var t1, t2, ancestorScrollableDragEndAdjustment, t3, t4, _this = this; if (_this._document_gestures_mouse$_dragStartInDoc == null) return; t1 = _this._document_gestures_mouse$_dragStartScrollOffset; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t2.toString; ancestorScrollableDragEndAdjustment = _this._hasAncestorScrollable ? new A.Offset(0, -(t1 - t2)) : B.Offset_0_0; t1 = _this._document_gestures_mouse$_dragEndInInteractor.$add(0, ancestorScrollableDragEndAdjustment); t2 = _this._widget.editContext._getDocumentLayout.call$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; _this._dragEndInDoc = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t1, t3); t3 = _this._widget.editContext._getDocumentLayout.call$0(); t1 = _this._document_gestures_mouse$_dragStartInDoc; t1.toString; t2 = _this._dragEndInDoc; t2.toString; t4 = _this._document_gestures_mouse$_selectionType; _this._selectRegion$5$baseOffset$documentLayout$expandSelection$extentOffset$selectionType(t1, t3, _this._expandSelectionDuringDrag, t2, t4); }, _selectRegion$5$baseOffset$documentLayout$expandSelection$extentOffset$selectionType(baseOffset, documentLayout, expandSelection, extentOffset, selectionType) { var selection, t2, basePosition, extentPosition, baseParagraphSelection, extentParagraphSelection, baseWordSelection, extentWordSelection, t3, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Selecting region with selection mode: " + selectionType.toString$0(0), _null, _null); selection = documentLayout.getDocumentSelectionInRegion$2(baseOffset, extentOffset); t2 = selection == null; basePosition = t2 ? _null : selection.base; extentPosition = t2 ? _null : selection.extent; t1.log$4(B.Level_FINE_500, " - base: " + A.S(basePosition) + ", extent: " + A.S(extentPosition), _null, _null); if (basePosition == null || extentPosition == null) { _this._widget.editContext.composer.set$selection(_null); return; } if (selectionType === B.SelectionType_20) { baseParagraphSelection = A.getParagraphSelection(documentLayout, basePosition); if (baseParagraphSelection == null) { _this._widget.editContext.composer.set$selection(_null); return; } t2 = baseOffset._dy < extentOffset._dy; basePosition = t2 ? baseParagraphSelection.base : baseParagraphSelection.extent; extentParagraphSelection = A.getParagraphSelection(documentLayout, extentPosition); if (extentParagraphSelection == null) { _this._widget.editContext.composer.set$selection(_null); return; } extentPosition = t2 ? extentParagraphSelection.extent : extentParagraphSelection.base; } else if (selectionType === B.SelectionType_10) { baseWordSelection = A.getWordSelection(documentLayout, basePosition); if (baseWordSelection == null) { _this._widget.editContext.composer.set$selection(_null); return; } basePosition = baseWordSelection.base; extentWordSelection = A.getWordSelection(documentLayout, extentPosition); if (extentWordSelection == null) { _this._widget.editContext.composer.set$selection(_null); return; } extentPosition = extentWordSelection.extent; } t2 = _this._widget.editContext.composer; if (expandSelection) { t3 = t2._document_composer$_selection; t3 = t3 == null ? _null : t3.base; if (t3 == null) t3 = basePosition; } else t3 = basePosition; t2.set$selection(new A.DocumentSelection(t3, extentPosition)); t1.log$4(B.Level_FINE_500, "Selected region: " + A.S(_this._widget.editContext.composer._document_composer$_selection), _null, _null); }, _document_gestures_mouse$_clearSelection$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Clearing document selection", null, null); this._widget.editContext.composer.set$selection(null); }, _updateCursorStyle$1(cursorOffset) { var docOffset, desiredCursor, _this = this, t1 = _this._widget.editContext._getDocumentLayout.call$0(), t2 = _this._framework$_element.get$renderObject(); t2.toString; docOffset = type$.RenderBox._as(t1._framework$_element.get$renderObject()).globalToLocal$2$ancestor(cursorOffset, t2); desiredCursor = _this._widget.editContext._getDocumentLayout.call$0().getDesiredCursorAtOffset$1(docOffset); t1 = desiredCursor == null; if (!t1 && !desiredCursor.$eq(0, _this._cursorStyle._change_notifier$_value)) _this._cursorStyle.set$value(0, desiredCursor); else if (t1 && !J.$eq$(_this._cursorStyle._change_notifier$_value, B.SystemMouseCursor_basic)) _this._cursorStyle.set$value(0, B.SystemMouseCursor_basic); }, _onPointerSignal$1($event) { var t1, t2, t3, newScrollOffset, _this = this; if (type$.PointerScrollEvent._is($event)) { t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; t2 = $event.get$scrollDelta(); t3 = _this.get$_document_gestures_mouse$_scrollPosition()._maxScrollExtent; t3.toString; newScrollOffset = B.JSNumber_methods.clamp$2(t1 + t2._dy, 0, t3); _this.get$_document_gestures_mouse$_scrollPosition().jumpTo$1(newScrollOffset); _this._document_gestures_mouse$_updateDragSelection$0(); } }, _scrollIfNearBoundary$0() { var viewport, t1, t2, ancestorScrollableDragEndAdjustment, dragEndInViewport, t3, _this = this, _null = null; if (_this._document_gestures_mouse$_dragEndInInteractor == null) { $.$get$editorGesturesLog().log$4(B.Level_WARNING_900, "Tried to scroll near boundary but couldn't because _dragEndInViewport is null", _null, _null); return; } viewport = _this.get$_viewport(); t1 = _this._document_gestures_mouse$_dragStartScrollOffset; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t2.toString; ancestorScrollableDragEndAdjustment = _this._hasAncestorScrollable ? new A.Offset(0, -(t1 - t2)) : B.Offset_0_0; t1 = _this._document_gestures_mouse$_dragEndInInteractor; t1.toString; dragEndInViewport = _this._interactorOffsetInViewport$1(t1).$add(0, ancestorScrollableDragEndAdjustment); t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINEST_300, "Scrolling, if near boundary:", _null, _null); t1.log$4(B.Level_FINEST_300, " - Drag end in interactor: " + A.S(_this._document_gestures_mouse$_dragEndInInteractor._dy), _null, _null); t2 = dragEndInViewport._dy; t3 = A.S(t2); t1.log$4(B.Level_FINEST_300, " - Drag end in viewport: " + t3 + ", viewport size: " + viewport._box$_size.toString$0(0), _null, _null); t1.log$4(B.Level_FINEST_300, " - Distance to top of viewport: " + t3, _null, _null); t1.log$4(B.Level_FINEST_300, " - Distance to bottom of viewport: " + A.S(viewport._box$_size._dy - t2), _null, _null); _this._widget.toString; t1.log$4(B.Level_FINEST_300, " - Auto-scroll distance: 100", _null, _null); t3 = viewport._box$_size._dy; _this._widget.toString; t1.log$4(B.Level_FINEST_300, " - Auto-scroll diff: " + (t3 - t2 < 100), _null, _null); _this._widget.toString; if (t2 < 100) { t1.log$4(B.Level_FINEST_300, "Metrics say we should try to scroll up", _null, _null); _this._startScrollingUp$0(); } else _this._stopScrollingUp$0(); t3 = viewport._box$_size._dy; _this._widget.toString; if (t3 - t2 < 100) { t1.log$4(B.Level_FINEST_300, "Metrics say we should try to scroll down", _null, _null); _this._startScrollingDown$0(); } else _this._stopScrollingDown$0(); }, _startScrollingUp$0() { var t1, _this = this; if (_this._document_gestures_mouse$_scrollUpOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Starting to auto-scroll up", null, null); _this._document_gestures_mouse$_scrollUpOnTick = true; t1 = _this._debugInstrumentation; if (t1 != null) t1.autoScrollEdge.set$value(0, B.ViewportEdge_0); A._lateReadCheck(_this.___DocumentMouseInteractorState__ticker, "_ticker").start$0(0); }, _stopScrollingUp$0() { var t1, _this = this; if (!_this._document_gestures_mouse$_scrollUpOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Stopping auto-scroll up", null, null); _this._document_gestures_mouse$_scrollUpOnTick = false; t1 = _this._debugInstrumentation; if (t1 != null) t1.autoScrollEdge.set$value(0, null); A._lateReadCheck(_this.___DocumentMouseInteractorState__ticker, "_ticker").stop$0(0); }, _document_gestures_mouse$_scrollUp$0() { var t1, t2, ancestorScrollableDragEndAdjustment, dragEndInViewport, t3, _this = this, _null = null; if (_this._document_gestures_mouse$_dragEndInInteractor == null) { $.$get$editorGesturesLog().log$4(B.Level_WARNING_900, "Tried to scroll up but couldn't because _dragEndInViewport is null", _null, _null); return; } t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; if (t1 <= 0) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, string$.Tried_su, _null, _null); return; } $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Scrolling up on tick", _null, _null); t1 = _this._document_gestures_mouse$_dragStartScrollOffset; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t2.toString; ancestorScrollableDragEndAdjustment = _this._hasAncestorScrollable ? new A.Offset(0, -(t1 - t2)) : B.Offset_0_0; t1 = _this._document_gestures_mouse$_dragEndInInteractor; t1.toString; dragEndInViewport = _this._interactorOffsetInViewport$1(t1).$add(0, ancestorScrollableDragEndAdjustment); _this._widget.toString; t1 = A.lerpDouble(0, 20, 1 - J.clamp$2$n(dragEndInViewport._dy, 0, 100) / 100); t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition(); t3 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t3.toString; t2.jumpTo$1(t3 - t1); _this._document_gestures_mouse$_updateDragSelection$0(); }, _startScrollingDown$0() { var t1, _this = this; if (_this._document_gestures_mouse$_scrollDownOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Starting to auto-scroll down", null, null); _this._document_gestures_mouse$_scrollDownOnTick = true; t1 = _this._debugInstrumentation; if (t1 != null) t1.autoScrollEdge.set$value(0, B.ViewportEdge_1); A._lateReadCheck(_this.___DocumentMouseInteractorState__ticker, "_ticker").start$0(0); }, _stopScrollingDown$0() { var t1, _this = this; if (!_this._document_gestures_mouse$_scrollDownOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Stopping auto-scroll down", null, null); _this._document_gestures_mouse$_scrollDownOnTick = false; t1 = _this._debugInstrumentation; if (t1 != null) t1.autoScrollEdge.set$value(0, null); A._lateReadCheck(_this.___DocumentMouseInteractorState__ticker, "_ticker").stop$0(0); }, _document_gestures_mouse$_scrollDown$0() { var t1, t2, t3, ancestorScrollableDragEndAdjustment, dragEndInViewport, speedPercent, t4, _this = this, _null = null; if (_this._document_gestures_mouse$_dragEndInInteractor == null) { $.$get$editorGesturesLog().log$4(B.Level_WARNING_900, "Tried to scroll down but couldn't because _dragEndInViewport is null", _null, _null); return; } t1 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t1.toString; t2 = _this.get$_document_gestures_mouse$_scrollPosition()._maxScrollExtent; t2.toString; if (t1 >= t2) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, string$.Tried_sd, _null, _null); return; } t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINEST_300, "Scrolling down on tick", _null, _null); t2 = _this._document_gestures_mouse$_dragStartScrollOffset; t2.toString; t3 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t3.toString; ancestorScrollableDragEndAdjustment = _this._hasAncestorScrollable ? new A.Offset(0, -(t2 - t3)) : B.Offset_0_0; t2 = _this._document_gestures_mouse$_dragEndInInteractor; t2.toString; dragEndInViewport = _this._interactorOffsetInViewport$1(t2).$add(0, ancestorScrollableDragEndAdjustment); _this._widget.toString; speedPercent = 1 - B.JSNumber_methods.clamp$2(_this.get$_viewport()._box$_size._dy - dragEndInViewport._dy, 0, 100) / 100; t1.log$4(B.Level_FINEST_300, "Speed percent: " + A.S(speedPercent), _null, _null); t2 = A.lerpDouble(0, 20, speedPercent); t2.toString; t3 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t3.toString; t4 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t4.toString; t1.log$4(B.Level_FINEST_300, "Jumping from " + A.S(t3) + " to " + A.S(t4 + t2), _null, _null); t4 = _this.get$_document_gestures_mouse$_scrollPosition(); t3 = _this.get$_document_gestures_mouse$_scrollPosition()._pixels; t3.toString; t4.jumpTo$1(t3 + t2); _this._document_gestures_mouse$_updateDragSelection$0(); }, _document_gestures_mouse$_onTick$1(elapsedTime) { var _this = this; if (_this._document_gestures_mouse$_scrollUpOnTick) _this._document_gestures_mouse$_scrollUp$0(); if (_this._document_gestures_mouse$_scrollDownOnTick) _this._document_gestures_mouse$_scrollDown$0(); }, build$1(_, context) { var t2, t3, t4, documentWidget, _this = this, _null = null, ancestorScrollable = A.Scrollable_of(context), t1 = ancestorScrollable == null; if (t1) t2 = _null; else { t2 = ancestorScrollable._scrollable$_position; t2.toString; } _this._document_gestures_mouse$_ancestorScrollPosition = t2; t2 = t1 ? 1 / 0 : _null; t3 = type$.JSArray_Widget; t4 = A._setArrayType([new A.SizedBox(_null, _null, _this._widget.child, _this._documentWrapperKey)], t3); _this._widget.toString; documentWidget = A.Center$(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t4, _null), _null, _null); t3 = A._setArrayType([t1 ? A.Listener$(B.HitTestBehavior_0, A.SingleChildScrollView$(documentWidget, A._lateReadCheck(_this.___DocumentMouseInteractorState__scrollController, "_scrollController"), B.DragStartBehavior_1, _null, B.NeverScrollableScrollPhysics_null, _null, false, B.Axis_1), _null, _null, _null, _null, _null, _this.get$_onPointerSignal(), _null) : documentWidget], t3); _this._widget.toString; return _this._buildCursorStyle$1$child(_this._document_gestures_mouse$_buildGestureInput$1$child(new A.SizedBox(1 / 0, t2, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t3, _null), _null))); }, _buildCursorStyle$1$child(child) { return A.AnimatedBuilder$(this._cursorStyle, new A._DocumentMouseInteractorState__buildCursorStyle_closure(this), child); }, _document_gestures_mouse$_buildGestureInput$1$child(child) { return new A.RawGestureDetector(child, A.LinkedHashMap_LinkedHashMap$_literal([B.Type_TapSequenceGestureRecognizer_7F1, new A.GestureRecognizerFactoryWithHandlers(new A._DocumentMouseInteractorState__buildGestureInput_closure(), new A._DocumentMouseInteractorState__buildGestureInput_closure0(this), type$.GestureRecognizerFactoryWithHandlers_TapSequenceGestureRecognizer), B.Type_PanGestureRecognizer_bbH, new A.GestureRecognizerFactoryWithHandlers(new A._DocumentMouseInteractorState__buildGestureInput_closure1(), new A._DocumentMouseInteractorState__buildGestureInput_closure2(this), type$.GestureRecognizerFactoryWithHandlers_PanGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), B.HitTestBehavior_2, false, null, null); } }; A._DocumentMouseInteractorState__onSelectionChange_closure.prototype = { call$1(timeStamp) { $.$get$editorGesturesLog().log$4(B.Level_FINER_400, "Ensuring selection extent is visible because the doc selection changed", null, null); this.$this._document_gestures_mouse$_ensureSelectionExtentIsVisible$0(); }, $signature: 22 }; A._DocumentMouseInteractorState__onPanUpdate_closure.prototype = { call$0() { var t1, t2, t3, t4; $.$get$editorGesturesLog().log$4(B.Level_INFO_800, "Pan update on document", null, null); t1 = this.$this; t2 = t1._document_gestures_mouse$_dragEndInInteractor = this.details.localPosition; t3 = t1._widget.editContext._getDocumentLayout.call$0(); t4 = t1._framework$_element.get$renderObject(); t4.toString; t4 = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1._dragEndInDoc = t4; t3 = t1._debugInstrumentation; if (t3 != null) t3.startDragInContent.set$value(0, t4); t1._updateCursorStyle$1(t2); t1._document_gestures_mouse$_updateDragSelection$0(); t1._scrollIfNearBoundary$0(); }, $signature: 0 }; A._DocumentMouseInteractorState__onDragEnd_closure.prototype = { call$0() { var t1 = this.$this; t1._document_gestures_mouse$_dragEndInInteractor = t1._dragEndInDoc = t1._document_gestures_mouse$_dragStartInDoc = null; t1._expandSelectionDuringDrag = false; }, $signature: 0 }; A._DocumentMouseInteractorState__buildCursorStyle_closure.prototype = { call$2(context, child) { var _null = null, t1 = this.$this; return A.Listener$(B.HitTestBehavior_0, A.MouseRegion$(child, t1._cursorStyle._change_notifier$_value, _null, _null, _null, _null), _null, _null, _null, t1.get$_onMouseMove(), _null, _null, _null); }, $signature: 2878 }; A._DocumentMouseInteractorState__buildGestureInput_closure.prototype = { call$0() { return A.TapSequenceGestureRecognizer$(); }, $signature: 499 }; A._DocumentMouseInteractorState__buildGestureInput_closure0.prototype = { call$1(recognizer) { var t1 = this.$this; recognizer.onTapUp = t1.get$_document_gestures_mouse$_onTapUp(); recognizer.onDoubleTapDown = t1.get$_document_gestures_mouse$_onDoubleTapDown(); recognizer.onDoubleTap = t1.get$_onDoubleTap(); recognizer.onTripleTapDown = t1.get$_document_gestures_mouse$_onTripleTapDown(); recognizer.onTripleTap = t1.get$_onTripleTap(); }, $signature: 500 }; A._DocumentMouseInteractorState__buildGestureInput_closure1.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, $signature: 358 }; A._DocumentMouseInteractorState__buildGestureInput_closure2.prototype = { call$1(recognizer) { var t1 = this.$this; recognizer.onStart = t1.get$_document_gestures_mouse$_onPanStart(); recognizer.onUpdate = t1.get$_document_gestures_mouse$_onPanUpdate(); recognizer.onEnd = t1.get$_document_gestures_mouse$_onPanEnd(); recognizer.onCancel = t1.get$_document_gestures_mouse$_onPanCancel(); }, $signature: 359 }; A.SelectionType.prototype = { toString$0(_) { return "SelectionType." + this._core$_name; } }; A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.ScrollableDocument.prototype = { build$1(_, context) { var _ancestorScrollPosition, t1, t2, _this = this, _null = null, ancestorScrollable = A.Scrollable_of(context); if (ancestorScrollable == null) _ancestorScrollPosition = _null; else { t1 = ancestorScrollable._scrollable$_position; t1.toString; _ancestorScrollPosition = t1; } if (_ancestorScrollPosition == null) { t1 = A.ScrollConfiguration_of(context).copyWith$1$dragDevices(A.LinkedHashSet_LinkedHashSet$_literal([B.PointerDeviceKind_0, B.PointerDeviceKind_1], type$.PointerDeviceKind)); t2 = _this.disableDragScrolling ? B.NeverScrollableScrollPhysics_null : _null; t2 = new A.SizedBox(_null, 1 / 0, A.ScrollConfiguration$(t1, A.SingleChildScrollView$(A.Center$(new A.CompositedTransformTarget(_this.documentLayerLink, _this.child, _null), _null, _null), _this.scrollController, B.DragStartBehavior_1, _null, t2, _null, false, B.Axis_1)), _null); t1 = t2; } else t1 = A.Center$(new A.CompositedTransformTarget(_this.documentLayerLink, _this.child, _null), _null, _null); return t1; } }; A.MagnifierAndToolbarController.prototype = { showMagnifier$0() { this.hideToolbar$0(); this._isMagnifierVisible = true; this.notifyListeners$0(); }, positionToolbar$2$bottomAnchor$topAnchor(bottomAnchor, topAnchor) { var _this = this; if (!topAnchor.$eq(0, _this._toolbarTopAnchor) || !bottomAnchor.$eq(0, _this._toolbarBottomAnchor)) { _this._toolbarTopAnchor = topAnchor; _this._toolbarBottomAnchor = bottomAnchor; _this.notifyListeners$0(); } }, toggleToolbar$0() { if (this._shouldDisplayToolbar) this.hideToolbar$0(); else this.showToolbar$0(); }, showToolbar$0() { var _this = this; if (_this._shouldDisplayToolbar) return; _this._isMagnifierVisible = false; _this.notifyListeners$0(); _this._shouldDisplayToolbar = true; _this.notifyListeners$0(); }, hideToolbar$0() { if (!this._shouldDisplayToolbar) return; this._shouldDisplayToolbar = false; this.notifyListeners$0(); }, $isListenable: 1 }; A.DragHandleAutoScroller.prototype = { dispose$0(_) { A._lateReadCheck(this._document_gestures_touch$_autoScroller.__AutoScroller__ticker, "_ticker").dispose$0(0); }, ensureOffsetIsVisible$1(offsetInViewport) { var scrollPosition, t2, t3, t4, t5, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINE_500, "Ensuring content offset is visible in scrollable: " + A.S(offsetInViewport), _null, _null); scrollPosition = this._getScrollPosition.call$0(); t2 = scrollPosition._pixels; t2.toString; t1.log$4(B.Level_FINE_500, "Current scroll offset: " + A.S(t2), _null, _null); t3 = offsetInViewport._dy; t4 = this._dragAutoScrollBoundary; t5 = t4.leading; if (t3 < t5) { t1.log$4(B.Level_FINE_500, "The scrollable needs to scroll up to make offset visible.", _null, _null); scrollPosition.jumpTo$1(t2 + (t3 - t5)); } else { t5 = this._getViewportBox; t4 = t4.trailing; if (t3 > t5.call$0()._box$_size._dy - t4) { t1.log$4(B.Level_FINE_500, "The scrollable needs to scroll down to make offset visible.", _null, _null); scrollPosition.jumpTo$1(t2 + (t3 - (t5.call$0()._box$_size._dy - t4))); } } }, updateAutoScrollHandleMonitoring$1$dragEndInViewport(dragEndInViewport) { var _null = null, t1 = dragEndInViewport._dy, t2 = this._dragAutoScrollBoundary, t3 = t2.leading, t4 = this._document_gestures_touch$_autoScroller; if (t1 < t3) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Metrics say we should try to scroll up", _null, _null); t4.startScrollingUp$1(B.JSNumber_methods.clamp$2(1 - B.JSNumber_methods.clamp$2(t1, 0, t3) / t3, 0, 1)); } else t4.stopScrollingUp$0(); t3 = this._getViewportBox; t2 = t2.trailing; if (t3.call$0()._box$_size._dy - t1 < t2) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Metrics say we should try to scroll down", _null, _null); t4.startScrollingDown$1(1 - B.JSNumber_methods.clamp$2(t3.call$0()._box$_size._dy - t1, 0, t2) / t2); } else t4.stopScrollingDown$0(); } }; A._MagnifierAndToolbarController_Object_ChangeNotifier.prototype = {}; A.AndroidDocumentTouchInteractor.prototype = { createState$0() { return new A._AndroidDocumentTouchInteractorState(new A.LayerLink(), new A.LayerLink(), null, null, B._StateLifecycle_0); }, getDocumentLayout$0() { return this.getDocumentLayout.call$0(); }, get$document(receiver) { return this.document; } }; A._AndroidDocumentTouchInteractorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; _this.___AndroidDocumentTouchInteractorState__handleAutoScrolling = new A.DragHandleAutoScroller(A.AutoScroller$(_this), B.AxisOffset_54_54, new A._AndroidDocumentTouchInteractorState_initState_closure(_this), new A._AndroidDocumentTouchInteractorState_initState_closure0(_this)); _this._widget.focusNode.addListener$1(0, _this.get$_document_gestures_touch_android$_onFocusChange()); if (_this._widget.focusNode.get$hasFocus()) _this._document_gestures_touch_android$_showEditingControlsOverlay$0(); t1 = _this._widget.scrollController; _this.___AndroidDocumentTouchInteractorState__scrollController = t1 == null ? new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()) : t1; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState_initState_closure1(_this)); A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__scrollController, "_scrollController").addListener$1(0, _this.get$_document_gestures_touch_android$_onScrollChange()); _this.___AndroidDocumentTouchInteractorState__editingController = new A.AndroidDocumentGestureEditingController(_this._document_gestures_touch_android$_documentLayoutLink, _this._document_gestures_touch_android$_magnifierFocalPointLink, $.$get$ChangeNotifier__emptyListeners()); _this._widget.document.addListener$1(0, _this.get$_document_gestures_touch_android$_onDocumentChange()); _this._widget.composer.addListener$1(0, _this.get$_document_gestures_touch_android$_onSelectionChange()); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); if (t1 == null) t1 = null; else { t1 = t1._scrollable$_position; t1.toString; } _this._document_gestures_touch_android$_ancestorScrollPosition = t1; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure(_this)); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.focusNode; t2 = oldWidget.focusNode; if (t1 !== t2) { t1 = _this.get$_document_gestures_touch_android$_onFocusChange(); t2.removeListener$1(0, t1); _this._widget.focusNode.addListener$1(0, t1); } t1 = _this._widget.document; t2 = oldWidget.document; if (!J.$eq$(t1, t2)) { t1 = _this.get$_document_gestures_touch_android$_onDocumentChange(); t2.removeListener$1(0, t1); _this._widget.document.addListener$1(0, t1); } t1 = _this._widget.composer; t2 = oldWidget.composer; if (t1 !== t2) { t1 = _this.get$_document_gestures_touch_android$_onSelectionChange(); t2.removeListener$1(0, t1); _this._widget.composer.addListener$1(0, t1); } }, reassemble$0() { var _this = this; _this.super$State$reassemble(); if (_this._widget.focusNode.get$hasFocus()) { _this._document_gestures_touch_android$_removeEditingOverlayControls$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState_reassemble_closure(_this)); } }, dispose$0(_) { var _this = this; B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState_dispose_closure(_this)); _this._widget.document.removeListener$1(0, _this.get$_document_gestures_touch_android$_onDocumentChange()); _this._widget.composer.removeListener$1(0, _this.get$_document_gestures_touch_android$_onSelectionChange()); _this._document_gestures_touch_android$_removeEditingOverlayControls$0(); if (_this._widget.scrollController == null) A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__scrollController, "_scrollController").dispose$0(0); _this._widget.focusNode.removeListener$1(0, _this.get$_document_gestures_touch_android$_onFocusChange()); A._lateReadCheck(A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling")._document_gestures_touch$_autoScroller.__AutoScroller__ticker, "_ticker").dispose$0(0); _this.super$__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin$dispose(0); }, didChangeMetrics$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure(this)); }, _document_gestures_touch_android$_ensureSelectionExtentIsVisible$0() { var collapsedHandleOffset, extentHandleOffset, t2, t3, editorBox, editorInViewportOffset, handleInViewportOffset, _this = this, _null = null, _s18_ = "_editingController", t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINE_500, "Ensuring selection extent is visible", _null, _null); collapsedHandleOffset = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_)._document_gestures_touch_android$_collapsedHandleOffset; extentHandleOffset = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_)._document_gestures_touch_android$_downstreamHandleOffset; t2 = collapsedHandleOffset == null; if (t2 && extentHandleOffset == null) return; t3 = _this._widget.documentKey; editorBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject()); editorInViewportOffset = A.MatrixUtils_transformPoint(_this.get$viewportBox().getTransformTo$1(0, _null), B.Offset_0_0).$sub(0, A.MatrixUtils_transformPoint(editorBox.getTransformTo$1(0, _null), B.Offset_0_0)); handleInViewportOffset = A._Cell$named("handleInViewportOffset"); if (!t2) { t1.log$4(B.Level_FINE_500, "The selection is collapsed", _null, _null); handleInViewportOffset.__late_helper$_value = collapsedHandleOffset.$sub(0, editorInViewportOffset); } else { t1.log$4(B.Level_FINE_500, "The selection is expanded", _null, _null); handleInViewportOffset.__late_helper$_value = extentHandleOffset.$sub(0, editorInViewportOffset); } A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling").ensureOffsetIsVisible$1(handleInViewportOffset._readLocal$0()); }, _document_gestures_touch_android$_onFocusChange$0() { if (this._widget.focusNode.get$hasFocus()) this._document_gestures_touch_android$_showEditingControlsOverlay$0(); else this._document_gestures_touch_android$_removeEditingOverlayControls$0(); }, _document_gestures_touch_android$_onDocumentChange$0() { A._lateReadCheck(this.___AndroidDocumentTouchInteractorState__editingController, "_editingController").hideToolbar$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState__onDocumentChange_closure(this)); }, _document_gestures_touch_android$_onSelectionChange$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._AndroidDocumentTouchInteractorState__onSelectionChange_closure(this)); }, _document_gestures_touch_android$_updateHandlesAfterSelectionOrLayoutChange$0() { var t1, t2, t3, _this = this, _null = null, _s18_ = "_editingController", newSelection = _this._widget.composer._document_composer$_selection; if (newSelection == null) { t1 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_); t1.removeCaret$0(); t1.hideToolbar$0(); t1.set$collapsedHandleOffset(_null); t1.set$upstreamHandleOffset(_null); t1.set$downstreamHandleOffset(_null); t1.set$collapsedHandleOffset(_null); t1.cancelCollapsedHandleAutoHideCountdown$0(); } else if (J.$eq$(newSelection.base, newSelection.extent)) { t1 = _this._widget.getDocumentLayout$0().getRectForPosition$1(_this._widget.composer._document_composer$_selection.extent); t1.toString; t2 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_); t3 = t1.top; t2._document_gestures_touch_android$_caretTop = new A.Offset(t1.left, t3); t2._document_gestures_touch_android$_caretHeight = t1.bottom - t3; t2.notifyListeners$0(); _this._document_gestures_touch_android$_positionCollapsedHandle$0(); } else _this._positionExpandedHandles$0(); }, _updateScrollPositionListener$0() { var _this = this, newScrollPosition = _this.get$scrollPosition(), t1 = _this._document_gestures_touch_android$_activeScrollPosition; if (newScrollPosition != t1) { if (t1 != null) t1.removeListener$1(0, _this.get$_document_gestures_touch_android$_onScrollChange()); newScrollPosition.addListener$1(0, _this.get$_document_gestures_touch_android$_onScrollChange()); _this._document_gestures_touch_android$_activeScrollPosition = newScrollPosition; } }, _document_gestures_touch_android$_onScrollChange$0() { this._document_gestures_touch_android$_positionToolbar$0(); }, get$scrollPosition() { var t1 = this._document_gestures_touch_android$_ancestorScrollPosition; return t1 == null ? B.JSArray_methods.get$single(A._lateReadCheck(this.___AndroidDocumentTouchInteractorState__scrollController, "_scrollController")._positions) : t1; }, get$viewportBox() { var t1 = this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); t1 = t1 == null ? null : t1._framework$_element.get$renderObject(); if (t1 == null) t1 = this._framework$_element.get$renderObject(); return type$.RenderBox._as(t1); }, _document_gestures_touch_android$_onTapUp$1(details) { var t2, t3, t4, docOffset, docPosition, selection, didTapOnExistingSelection, _this = this, _null = null, _s18_ = "_editingController", t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Tap down on document", _null, _null); t2 = details.localPosition; t3 = _this._widget.getDocumentLayout$0(); t4 = _this._framework$_element.get$renderObject(); t4.toString; docOffset = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); if (docPosition != null) { selection = _this._widget.composer._document_composer$_selection; if (selection != null) { t1 = selection.base; t2 = selection.extent; didTapOnExistingSelection = J.$eq$(t1, t2) && J.$eq$(t2, docPosition); } else didTapOnExistingSelection = false; t1 = _this.___AndroidDocumentTouchInteractorState__editingController; if (didTapOnExistingSelection) A._lateReadCheck(t1, _s18_).toggleToolbar$0(); else A._lateReadCheck(t1, _s18_).hideToolbar$0(); _this._document_gestures_touch_android$_selectPosition$1(docPosition); _this._document_gestures_touch_android$_positionToolbar$0(); } else { _this._clearSelection$0(); A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_).hideToolbar$0(); } _this._widget.focusNode.requestFocus$0(); }, _onDoubleTapDown$1(details) { var t2, t3, t4, docOffset, docPosition, didSelectContent, _this = this, _null = null, _s18_ = "_editingController", t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Double tap down on document", _null, _null); t2 = details.localPosition; t3 = _this._widget.getDocumentLayout$0(); t4 = _this._framework$_element.get$renderObject(); t4.toString; docOffset = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); _this._clearSelection$0(); if (docPosition != null) { didSelectContent = _this._document_gestures_touch_android$_selectWordAt$2$docLayout$docPosition(_this._widget.getDocumentLayout$0(), docPosition); if (!(!didSelectContent ? _this._document_gestures_touch_android$_selectBlockAt$1(docPosition) : didSelectContent)) _this._document_gestures_touch_android$_selectPosition$1(docPosition); t1 = _this._widget.composer._document_composer$_selection; t1 = J.$eq$(t1.base, t1.extent); t2 = _this.___AndroidDocumentTouchInteractorState__editingController; if (!t1) { A._lateReadCheck(t2, _s18_).showToolbar$0(); _this._document_gestures_touch_android$_positionToolbar$0(); } else { t1 = A._lateReadCheck(t2, _s18_); t1.unHideCollapsedHandle$0(); t1.startCollapsedHandleAutoHideCountdown$0(); } } _this._widget.focusNode.requestFocus$0(); }, _document_gestures_touch_android$_selectBlockAt$1(position) { var t1; if (!(position.nodePosition instanceof A.UpstreamDownstreamNodePosition)) return false; t1 = position.nodeId; this._widget.composer.set$selection(new A.DocumentSelection(new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_0), new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1))); return true; }, _onTripleTapDown$1(details) { var t2, t3, docOffset, docPosition, _this = this, _null = null, t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Triple down down on document", _null, _null); t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; docOffset = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(details.localPosition, t3); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); _this._clearSelection$0(); if (docPosition != null) if (!_this._document_gestures_touch_android$_selectParagraphAt$2$docLayout$docPosition(_this._widget.getDocumentLayout$0(), docPosition)) { _this._document_gestures_touch_android$_selectPosition$1(docPosition); _this._document_gestures_touch_android$_positionToolbar$0(); } _this._widget.focusNode.requestFocus$0(); }, _document_gestures_touch_android$_showEditingControlsOverlay$0() { var result, t1, _this = this; if (_this._document_gestures_touch_android$_controlsOverlayEntry == null) { _this._document_gestures_touch_android$_controlsOverlayEntry = A.OverlayEntry$(new A._AndroidDocumentTouchInteractorState__showEditingControlsOverlay_closure(_this), false); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._document_gestures_touch_android$_controlsOverlayEntry; t1.toString; result.insert$1(0, t1); } }, _onHandleDragStart$2(handleType, globalOffset) { var selectionAffinity, handleOffsetInInteractor, t3, _this = this, t1 = _this._widget, t2 = t1.document; t1 = t1.composer._document_composer$_selection; selectionAffinity = A.InspectDocumentAffinity_getAffinityBetween(t2, t1.base, t1.extent); switch (handleType.index) { case 0: _this._selectionType = B.SelectionType_0; break; case 1: _this._selectionType = selectionAffinity === B.TextAffinity_1 ? B.SelectionType_1 : B.SelectionType_2; break; case 2: _this._selectionType = selectionAffinity === B.TextAffinity_1 ? B.SelectionType_2 : B.SelectionType_1; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._document_gestures_touch_android$_globalStartDragOffset = globalOffset; t1 = type$.RenderBox; handleOffsetInInteractor = t1._as(_this._framework$_element.get$renderObject()).globalToLocal$1(globalOffset); t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; _this._document_gestures_touch_android$_dragStartInDoc = t1._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(handleOffsetInInteractor, t3); t3 = _this._widget.getDocumentLayout$0(); t1 = _this._selectionType; t2 = _this._widget; _this._document_gestures_touch_android$_startDragPositionOffset = t3.getRectForPosition$1(t1 === B.SelectionType_1 ? t2.composer._document_composer$_selection.base : t2.composer._document_composer$_selection.extent).get$center(); t2 = _this.get$scrollPosition()._pixels; t2.toString; _this._document_gestures_touch_android$_dragStartScrollOffset = t2; t2 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling"); t2._document_gestures_touch$_autoScroller.__scrolling$_scrollPosition = t2._getScrollPosition.call$0(); if (_this._selectionType === B.SelectionType_0) A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, "_editingController").cancelCollapsedHandleAutoHideCountdown$0(); _this.get$scrollPosition().addListener$1(0, _this.get$_document_gestures_touch_android$_updateDragSelection()); }, _onHandleDragUpdate$1(globalOffset) { var t1, t2, interactorBox, dragEndInViewport, _this = this; _this._document_gestures_touch_android$_globalDragOffset = globalOffset; t1 = type$.RenderBox; t2 = t1._as(_this._framework$_element.get$renderObject()).globalToLocal$1(globalOffset); _this._document_gestures_touch_android$_dragEndInInteractor = t2; interactorBox = t1._as(_this._framework$_element.get$renderObject()); dragEndInViewport = _this.get$viewportBox().globalToLocal$1(A.MatrixUtils_transformPoint(interactorBox.getTransformTo$1(0, null), t2)); _this._document_gestures_touch_android$_updateSelectionForNewDragHandleLocation$0(); A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling").updateAutoScrollHandleMonitoring$1$dragEndInViewport(dragEndInViewport); A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, "_editingController").showMagnifier$0(); }, _document_gestures_touch_android$_updateSelectionForNewDragHandleLocation$0() { var t2, docDragDelta, docDragPosition, _this = this, t1 = _this._document_gestures_touch_android$_globalDragOffset; t1.toString; t2 = _this._document_gestures_touch_android$_globalStartDragOffset; t2.toString; docDragDelta = t1.$sub(0, t2); t2 = _this._document_gestures_touch_android$_dragStartScrollOffset; t2.toString; t1 = _this.get$scrollPosition()._pixels; t1.toString; docDragPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(_this._document_gestures_touch_android$_startDragPositionOffset.$add(0, docDragDelta).$sub(0, new A.Offset(0, t2 - t1))); if (docDragPosition == null) return; t1 = _this._selectionType; if (t1 === B.SelectionType_0) _this._widget.composer.set$selection(new A.DocumentSelection(docDragPosition, docDragPosition)); else if (t1 === B.SelectionType_1) { t1 = _this._widget.composer; t1.set$selection(t1._document_composer$_selection.copyWith$1$base(docDragPosition)); } else if (t1 === B.SelectionType_2) { t1 = _this._widget.composer; t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(docDragPosition)); } }, _document_gestures_touch_android$_onHandleDragEnd$0() { var t2, _this = this, _s18_ = "_editingController", t1 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling")._document_gestures_touch$_autoScroller; t1.stopScrollingUp$0(); t1.stopScrollingDown$0(); t1.__scrolling$_scrollPosition = null; _this.get$scrollPosition().removeListener$1(0, _this.get$_document_gestures_touch_android$_updateDragSelection()); t1 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_); t1._isMagnifierVisible = false; t1.notifyListeners$0(); _this._document_gestures_touch_android$_dragEndInInteractor = _this._document_gestures_touch_android$_dragStartInDoc = _this._document_gestures_touch_android$_dragStartScrollOffset = null; t1 = _this._widget.composer._document_composer$_selection; t1 = J.$eq$(t1.base, t1.extent); t2 = _this.___AndroidDocumentTouchInteractorState__editingController; if (t1) { t1 = A._lateReadCheck(t2, _s18_); t1.unHideCollapsedHandle$0(); t1.startCollapsedHandleAutoHideCountdown$0(); } else { A._lateReadCheck(t2, _s18_).showToolbar$0(); _this._document_gestures_touch_android$_positionToolbar$0(); } }, _document_gestures_touch_android$_updateDragSelection$0() { var t1, t2, t3, dragEndInDoc, dragPosition, basePosition, extentPosition, _this = this, _null = null; if (_this._document_gestures_touch_android$_dragStartInDoc == null) return; t1 = _this._document_gestures_touch_android$_dragEndInInteractor; t1.toString; t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; dragEndInDoc = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t1, t3); dragPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(dragEndInDoc); t3 = $.$get$editorGesturesLog(); t3.log$4(B.Level_INFO_800, "Selecting new position during drag: " + A.S(dragPosition), _null, _null); if (dragPosition == null) return; basePosition = A._Cell$named("basePosition"); extentPosition = A._Cell$named("extentPosition"); switch (_this._selectionType.index) { case 0: extentPosition.__late_helper$_value = basePosition.__late_helper$_value = dragPosition; break; case 1: basePosition.__late_helper$_value = dragPosition; extentPosition.__late_helper$_value = _this._widget.composer._document_composer$_selection.extent; break; case 2: basePosition.__late_helper$_value = _this._widget.composer._document_composer$_selection.base; extentPosition.__late_helper$_value = dragPosition; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._widget.composer.set$selection(new A.DocumentSelection(basePosition._readLocal$0(), extentPosition._readLocal$0())); t3.log$4(B.Level_FINE_500, "Selected region: " + A.S(_this._widget.composer._document_composer$_selection), _null, _null); }, _document_gestures_touch_android$_positionCollapsedHandle$0() { var t1, t2, handleOffset, _null = null, selection = this._widget.composer._document_composer$_selection; if (selection == null) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_ucr, _null, _null); return; } t1 = selection.base; t2 = selection.extent; if (!J.$eq$(t1, t2)) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_uc_, _null, _null); return; } handleOffset = A._InitializedCell$named("handleOffset", new A._AndroidDocumentTouchInteractorState__positionCollapsedHandle_closure(this._widget.getDocumentLayout$0().getRectForPosition$1(t2))); t1 = A._lateReadCheck(this.___AndroidDocumentTouchInteractorState__editingController, "_editingController"); t1.set$collapsedHandleOffset(handleOffset._read$0()); t1.unHideCollapsedHandle$0(); t1.startCollapsedHandleAutoHideCountdown$0(); }, _positionExpandedHandles$0() { var t1, t2, t3, baseHandleOffset, extentHandleOffset, affinity, upstreamHandleOffset, downstreamHandleOffset, _this = this, _null = null, selection = _this._widget.composer._document_composer$_selection; if (selection == null) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_uer, _null, _null); return; } t1 = selection.base; t2 = selection.extent; if (J.$eq$(t1, t2)) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_ue_, _null, _null); return; } t3 = _this._widget.getDocumentLayout$0().getRectForPosition$1(t1); baseHandleOffset = new A.Offset(t3.left, t3.bottom); t3 = _this._widget.getDocumentLayout$0().getRectForPosition$1(t2); extentHandleOffset = new A.Offset(t3.right, t3.bottom); affinity = A.InspectDocumentAffinity_getAffinityBetween(_this._widget.document, t1, t2); upstreamHandleOffset = A._InitializedCell$named("upstreamHandleOffset", new A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure(affinity, baseHandleOffset, extentHandleOffset)); downstreamHandleOffset = A._InitializedCell$named("downstreamHandleOffset", new A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure0(affinity, extentHandleOffset, baseHandleOffset)); t2 = A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, "_editingController"); t2.removeCaret$0(); t2.set$collapsedHandleOffset(_null); t2.set$upstreamHandleOffset(upstreamHandleOffset._read$0()); t2.set$downstreamHandleOffset(downstreamHandleOffset._read$0()); t2.cancelCollapsedHandleAutoHideCountdown$0(); }, _document_gestures_touch_android$_positionToolbar$0() { var selectionRect, selection, t1, t2, t3, t4, t5, extentRectInDoc, t6, selectionRectInDoc, toolbarTopAnchor, toolbarBottomAnchor, _this = this, _null = null, _s18_ = "_editingController"; if (!A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_)._shouldDisplayToolbar) return; selectionRect = A._Cell$named("selectionRect"); selection = _this._widget.composer._document_composer$_selection; t1 = selection.base; t2 = selection.extent; t3 = J.$eq$(t1, t2); t4 = type$.RenderBox; t5 = _this._widget; if (t3) { t1 = t5.getDocumentLayout$0().getRectForPosition$1(t2); t1.toString; selectionRect.__late_helper$_value = A.Rect$fromPoints(A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(t1.left, t1.top)), A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(t1.right, t1.bottom))); } else { t1 = t5.getDocumentLayout$0().getRectForPosition$1(t1); t1.toString; extentRectInDoc = _this._widget.getDocumentLayout$0().getRectForPosition$1(t2); t2 = extentRectInDoc.left; t2 = Math.min(A.checkNum(t1.left), A.checkNum(t2)); t3 = extentRectInDoc.top; t3 = Math.min(A.checkNum(t1.top), A.checkNum(t3)); t5 = extentRectInDoc.right; t5 = Math.max(A.checkNum(t1.right), A.checkNum(t5)); t6 = extentRectInDoc.bottom; selectionRectInDoc = A.Rect$fromPoints(new A.Offset(t2, t3), new A.Offset(t5, Math.max(A.checkNum(t1.bottom), A.checkNum(t6)))); selectionRect.__late_helper$_value = A.Rect$fromPoints(A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(selectionRectInDoc.left, selectionRectInDoc.top)), A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(selectionRectInDoc.right, selectionRectInDoc.bottom))); } toolbarTopAnchor = selectionRect._readLocal$0().get$topCenter().$sub(0, B.Offset_0_24); toolbarBottomAnchor = selectionRect._readLocal$0().get$bottomCenter().$add(0, B.Offset_0_24); A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__editingController, _s18_).positionToolbar$2$bottomAnchor$topAnchor(toolbarBottomAnchor, toolbarTopAnchor); }, _document_gestures_touch_android$_removeEditingOverlayControls$0() { var t1 = this._document_gestures_touch_android$_controlsOverlayEntry; if (t1 != null) { t1.remove$0(0); this._document_gestures_touch_android$_controlsOverlayEntry = null; } }, _document_gestures_touch_android$_selectWordAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getWordSelection(docLayout, docPosition); if (newSelection != null) { this._widget.composer.set$selection(newSelection); return true; } else return false; }, _document_gestures_touch_android$_selectParagraphAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getParagraphSelection(docLayout, docPosition); if (newSelection != null) { this._widget.composer.set$selection(newSelection); return true; } else return false; }, _document_gestures_touch_android$_selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + position.toString$0(0), null, null); this._widget.composer.set$selection(new A.DocumentSelection(position, position)); }, _clearSelection$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Clearing document selection", null, null); this._widget.composer.set$selection(null); }, build$1(_, context) { var _this = this; return _this._document_gestures_touch_android$_buildGestureInput$1$child(new A.ScrollableDocument(A._lateReadCheck(_this.___AndroidDocumentTouchInteractorState__scrollController, "_scrollController"), false, _this._document_gestures_touch_android$_documentLayoutLink, _this._widget.child, null)); }, _document_gestures_touch_android$_buildGestureInput$1$child(child) { return new A.RawGestureDetector(child, A.LinkedHashMap_LinkedHashMap$_literal([B.Type_TapSequenceGestureRecognizer_7F1, new A.GestureRecognizerFactoryWithHandlers(new A._AndroidDocumentTouchInteractorState__buildGestureInput_closure(), new A._AndroidDocumentTouchInteractorState__buildGestureInput_closure0(this), type$.GestureRecognizerFactoryWithHandlers_TapSequenceGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), B.HitTestBehavior_2, false, null, null); } }; A._AndroidDocumentTouchInteractorState_initState_closure.prototype = { call$0() { return this.$this.get$scrollPosition(); }, $signature: 647 }; A._AndroidDocumentTouchInteractorState_initState_closure0.prototype = { call$0() { return this.$this.get$viewportBox(); }, $signature: 608 }; A._AndroidDocumentTouchInteractorState_initState_closure1.prototype = { call$1(timeStamp) { this.$this._updateScrollPositionListener$0(); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure.prototype = { call$1(timeStamp) { this.$this._updateScrollPositionListener$0(); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState_reassemble_closure.prototype = { call$1(timeStamp) { this.$this._document_gestures_touch_android$_showEditingControlsOverlay$0(); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState_dispose_closure.prototype = { call$1(timeStamp) { A._lateReadCheck(this.$this.___AndroidDocumentTouchInteractorState__editingController, "_editingController").dispose$0(0); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; if (t1._framework$_element != null) { t1._document_gestures_touch_android$_ensureSelectionExtentIsVisible$0(); t1._document_gestures_touch_android$_updateHandlesAfterSelectionOrLayoutChange$0(); t1.setState$1(new A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure()); } }, $signature: 22 }; A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure.prototype = { call$0() { }, $signature: 0 }; A._AndroidDocumentTouchInteractorState__onDocumentChange_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1._document_gestures_touch_android$_updateHandlesAfterSelectionOrLayoutChange$0(); t1._document_gestures_touch_android$_ensureSelectionExtentIsVisible$0(); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState__onSelectionChange_closure.prototype = { call$1(timeStamp) { this.$this._document_gestures_touch_android$_updateHandlesAfterSelectionOrLayoutChange$0(); }, $signature: 22 }; A._AndroidDocumentTouchInteractorState__showEditingControlsOverlay_closure.prototype = { call$1(overlayContext) { var t3, t1 = this.$this, t2 = A._lateReadCheck(t1.___AndroidDocumentTouchInteractorState__editingController, "_editingController"); t1._widget.getDocumentLayout$0(); t3 = t1._widget; return new A.AndroidDocumentTouchEditingControls(t2, t3.createOverlayControlsClipper, B.MaterialColor_Map_JNc9P_4294198070, t1.get$_onHandleDragStart(), t1.get$_onHandleDragUpdate(), t1.get$_document_gestures_touch_android$_onHandleDragEnd(), t3.popoverToolbarBuilder, false, null); }, $signature: 2885 }; A._AndroidDocumentTouchInteractorState__positionCollapsedHandle_closure.prototype = { call$0() { var t1 = this.extentRect; return new A.Offset(t1.left, t1.bottom); }, $signature: 323 }; A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure.prototype = { call$0() { return this.affinity === B.TextAffinity_1 ? this.baseHandleOffset : this.extentHandleOffset; }, $signature: 323 }; A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure0.prototype = { call$0() { return this.affinity === B.TextAffinity_1 ? this.extentHandleOffset : this.baseHandleOffset; }, $signature: 323 }; A._AndroidDocumentTouchInteractorState__buildGestureInput_closure.prototype = { call$0() { return A.TapSequenceGestureRecognizer$(); }, $signature: 499 }; A._AndroidDocumentTouchInteractorState__buildGestureInput_closure0.prototype = { call$1(recognizer) { var t1 = this.$this; recognizer.onTapUp = t1.get$_document_gestures_touch_android$_onTapUp(); recognizer.onDoubleTapDown = t1.get$_onDoubleTapDown(); recognizer.onTripleTapDown = t1.get$_onTripleTapDown(); }, $signature: 500 }; A.AndroidDocumentTouchEditingControls.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new A._AndroidDocumentTouchEditingControlsState(new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), _null, _null, B._StateLifecycle_0); } }; A._AndroidDocumentTouchEditingControlsState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this.___AndroidDocumentTouchEditingControlsState__caretBlinkController = A.BlinkController$(_this); t1 = _this._widget.editingController; _this._document_gestures_touch_android$_prevCaretOffset = t1._document_gestures_touch_android$_caretTop; t1.addListener$1(0, _this.get$_document_gestures_touch_android$_onEditingControllerChange()); t1 = _this._widget.editingController; if (t1._document_gestures_touch_android$_collapsedHandleOffset != null) t1.startCollapsedHandleAutoHideCountdown$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.editingController; t2 = oldWidget.editingController; if (t1 !== t2) { t1 = _this.get$_document_gestures_touch_android$_onEditingControllerChange(); t2.removeListener$1(0, t1); _this._widget.editingController.addListener$1(0, t1); } }, dispose$0(_) { var t1, _this = this; _this._widget.editingController.removeListener$1(0, _this.get$_document_gestures_touch_android$_onEditingControllerChange()); t1 = A._lateReadCheck(_this.___AndroidDocumentTouchEditingControlsState__caretBlinkController, "_caretBlinkController"); A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").dispose$0(0); t1.super$ChangeNotifier$dispose(0); _this.super$__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin$dispose(0); }, _document_gestures_touch_android$_onEditingControllerChange$0() { var t1, t2, _this = this, _s21_ = "_caretBlinkController"; if (!J.$eq$(_this._document_gestures_touch_android$_prevCaretOffset, _this._widget.editingController._document_gestures_touch_android$_caretTop)) { t1 = _this._widget.editingController._document_gestures_touch_android$_caretTop; t2 = _this.___AndroidDocumentTouchEditingControlsState__caretBlinkController; if (t1 == null) { t1 = A._lateReadCheck(t2, _s21_); t1._blink_controller$_isVisible = true; A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").stop$0(0); } else A._lateReadCheck(t2, _s21_).jumpToOpaque$0(); _this._document_gestures_touch_android$_prevCaretOffset = _this._widget.editingController._document_gestures_touch_android$_caretTop; } }, _onCollapsedPanStart$1(details) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "_onCollapsedPanStart", null, null); this.setState$1(new A._AndroidDocumentTouchEditingControlsState__onCollapsedPanStart_closure(this, details)); this._widget.onHandleDragStart.call$2(B.HandleType_0, details.globalPosition); }, _onUpstreamHandlePanStart$1(details) { this._onExpandedHandleDragStart$1(details); this._widget.onHandleDragStart.call$2(B.HandleType_1, details.globalPosition); }, _onDownstreamHandlePanStart$1(details) { this._onExpandedHandleDragStart$1(details); this._widget.onHandleDragStart.call$2(B.HandleType_2, details.globalPosition); }, _onExpandedHandleDragStart$1(details) { this.setState$1(new A._AndroidDocumentTouchEditingControlsState__onExpandedHandleDragStart_closure(this, details)); }, _document_gestures_touch_android$_onPanUpdate$1(details) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "_onPanUpdate", null, null); this._widget.onHandleDragUpdate.call$1(details.globalPosition); this.setState$1(new A._AndroidDocumentTouchEditingControlsState__onPanUpdate_closure(this, details)); }, _document_gestures_touch_android$_onPanEnd$1(details) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "_onPanEnd", null, null); this._document_gestures_touch_android$_onHandleDragEnd$0(); }, _document_gestures_touch_android$_onPanCancel$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "_onPanCancel", null, null); this._document_gestures_touch_android$_onHandleDragEnd$0(); }, _document_gestures_touch_android$_onHandleDragEnd$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "_onHandleDragEnd()", null, null); this.setState$1(new A._AndroidDocumentTouchEditingControlsState__onHandleDragEnd_closure(this)); this._widget.onHandleDragEnd.call$0(); }, build$1(_, context) { return new A.ListenableBuilder(this._widget.editingController, new A._AndroidDocumentTouchEditingControlsState_build_closure(this), null); }, _buildCaret$0() { var t3, t4, t5, t1 = this._widget.editingController, t2 = t1._document_gestures_touch_android$_caretTop; if (t2 == null) return B.SizedBox_null_null_null_null; t3 = A._lateReadCheck(this.___AndroidDocumentTouchEditingControlsState__caretBlinkController, "_caretBlinkController"); t4 = this._widget; t5 = t4.editingController._document_gestures_touch_android$_caretHeight; t5.toString; t4 = t4.handleColor; return A.CompositedTransformFollower$(new A.IgnorePointer(true, null, A.BlinkingCaret$(B.BorderRadius_tLn, t5, B.Offset_m1_0, t4, t3, false, true, 2), null), null, t1._document_gestures_touch_android$_documentLayoutLink, t2, true, B.Alignment_m1_m1); }, _document_gestures_touch_android$_buildHandles$0() { var t4, _this = this, t1 = _this._widget.editingController, t2 = t1._document_gestures_touch_android$_collapsedHandleOffset, t3 = t2 == null; if (t3) t4 = !(t1._document_gestures_touch_android$_upstreamHandleOffset != null && t1._document_gestures_touch_android$_downstreamHandleOffset != null); else t4 = false; if (t4) { $.$get$editorGesturesLog().log$4(B.Level_FINER_400, "Not building overlay handles because there is no selection", null, null); return A._setArrayType([], type$.JSArray_Widget); } t3 = !t3 && !_this._isDraggingExpandedHandle; t4 = type$.JSArray_Widget; if (t3) return A._setArrayType([_this._document_gestures_touch_android$_buildHandle$6$debugColor$handleFractionalTranslation$handleKey$handleOffset$handleType$onPanStart(B.MaterialColor_Map_JNEaM_4283215696, B.Offset_Oho, _this._document_gestures_touch_android$_collapsedHandleKey, t2.$add(0, B.Offset_0_5), B.HandleType_0, _this.get$_onCollapsedPanStart())], t4); else return A._setArrayType([_this._document_gestures_touch_android$_buildHandle$6$debugColor$handleFractionalTranslation$handleKey$handleOffset$handleType$onPanStart(B.MaterialColor_Map_JNEaM_4283215696, B.Offset_m1_0, _this._document_gestures_touch_android$_upstreamHandleKey, t1._document_gestures_touch_android$_upstreamHandleOffset.$add(0, B.Offset_0_2), B.HandleType_1, _this.get$_onUpstreamHandlePanStart()), _this._document_gestures_touch_android$_buildHandle$5$debugColor$handleKey$handleOffset$handleType$onPanStart(B.MaterialColor_Map_JNc9P_4294198070, _this._document_gestures_touch_android$_downstreamHandleKey, _this._widget.editingController._document_gestures_touch_android$_downstreamHandleOffset.$add(0, B.Offset_0_2), B.HandleType_2, _this.get$_onDownstreamHandlePanStart())], t4); }, _document_gestures_touch_android$_buildHandle$6$debugColor$handleFractionalTranslation$handleKey$handleOffset$handleType$onPanStart(debugColor, handleFractionalTranslation, handleKey, handleOffset, handleType, onPanStart) { var _this = this, _null = null, t1 = _this._widget, t2 = t1.editingController, t3 = handleType === B.HandleType_0 && t2._isCollapsedHandleAutoHidden ? 0 : 1; return A.CompositedTransformFollower$(A.FractionalTranslation$(A.GestureDetector$(B.HitTestBehavior_2, A.Container$(_null, A.AnimatedOpacity$(false, new A.AndroidSelectionHandle(handleType, t1.handleColor, _null), B.C__Linear, B.Duration_150000, t3), B.Clip_0, B.Color_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_document_gestures_touch_android$_onPanCancel(), _null, _this.get$_document_gestures_touch_android$_onPanEnd(), onPanStart, _this.get$_document_gestures_touch_android$_onPanUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, handleFractionalTranslation), handleKey, t2._document_gestures_touch_android$_documentLayoutLink, handleOffset, true, B.Alignment_m1_m1); }, _document_gestures_touch_android$_buildHandle$5$debugColor$handleKey$handleOffset$handleType$onPanStart(debugColor, handleKey, handleOffset, handleType, onPanStart) { return this._document_gestures_touch_android$_buildHandle$6$debugColor$handleFractionalTranslation$handleKey$handleOffset$handleType$onPanStart(debugColor, B.Offset_0_0, handleKey, handleOffset, handleType, onPanStart); } }; A._AndroidDocumentTouchEditingControlsState__onCollapsedPanStart_closure.prototype = { call$0() { var t1 = this.$this; t1._isDraggingExpandedHandle = false; t1._isDraggingHandle = true; t1._localDragOffset = type$.RenderBox._as(t1._framework$_element.get$renderObject()).globalToLocal$1(this.details.globalPosition); }, $signature: 0 }; A._AndroidDocumentTouchEditingControlsState__onExpandedHandleDragStart_closure.prototype = { call$0() { var t1 = this.$this; t1._isDraggingHandle = t1._isDraggingExpandedHandle = true; t1._localDragOffset = type$.RenderBox._as(t1._framework$_element.get$renderObject()).globalToLocal$1(this.details.globalPosition); }, $signature: 0 }; A._AndroidDocumentTouchEditingControlsState__onPanUpdate_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._localDragOffset; t2.toString; t1._localDragOffset = t2.$add(0, this.details.delta); }, $signature: 0 }; A._AndroidDocumentTouchEditingControlsState__onHandleDragEnd_closure.prototype = { call$0() { var t1 = this.$this; t1._isDraggingHandle = t1._isDraggingExpandedHandle = false; t1._localDragOffset = null; }, $signature: 0 }; A._AndroidDocumentTouchEditingControlsState_build_closure.prototype = { call$1(context) { var t3, t4, t5, t6, t7, t8, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t2 = this.$this; t2._widget.toString; t3 = A._setArrayType([t2._buildCaret$0()], type$.JSArray_Widget); B.JSArray_methods.addAll$1(t3, t2._document_gestures_touch_android$_buildHandles$0()); if (t2._isDraggingHandle) { t4 = t2._localDragOffset; t5 = t4._dx; t4 = t4._dy; t3.push(A.Positioned$(_null, new A.CompositedTransformTarget(t2._widget.editingController._magnifierFocalPointLink, B.SizedBox_1_1_null_null, _null), _null, _null, t5, _null, t4 - 20, _null)); } t4 = t2._widget.editingController; if (t4._isMagnifierVisible) t3.push(A.Center$(new A.AndroidFollowingMagnifier(t4._magnifierFocalPointLink, B.Offset_0_m72, _null), _null, _null)); t4 = t2._widget; t5 = t4.editingController; t6 = t5._shouldDisplayToolbar; if (t6 && t5._toolbarTopAnchor != null && t5._toolbarBottomAnchor != null) { t7 = t5._toolbarTopAnchor; t7.toString; t5 = t5._toolbarBottomAnchor; t5.toString; t8 = t6 ? 1 : 0; t3.push(new A.CustomSingleChildLayout(new A.ToolbarPositionDelegate(B.Offset_0_0, t7, t5), new A.IgnorePointer(!t6, _null, A.AnimatedOpacity$(false, new A.Builder(t4.popoverToolbarBuilder, _null), B.C__Linear, B.Duration_150000, t8), _null), _null)); } t2._widget.toString; return new A.Padding(new A.EdgeInsets(0, 0, 0, t1.viewInsets.bottom), A.ClipRect$(new A.SizedBox(1 / 0, 1 / 0, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t3, _null), _null), B.Clip_1, _null), _null); }, $signature: 600 }; A.SelectionType0.prototype = { toString$0(_) { return "SelectionType." + this._core$_name; } }; A.AndroidDocumentGestureEditingController.prototype = { dispose$0(_) { var t1 = this._collapsedHandleAutoHideTimer; if (t1 != null) t1.cancel$0(0); this.super$ChangeNotifier$dispose(0); }, removeCaret$0() { var _this = this; if (_this._document_gestures_touch_android$_caretTop == null) return; _this._document_gestures_touch_android$_caretHeight = _this._document_gestures_touch_android$_caretTop = null; _this.notifyListeners$0(); }, set$collapsedHandleOffset(offset) { if (!J.$eq$(offset, this._document_gestures_touch_android$_collapsedHandleOffset)) { this._document_gestures_touch_android$_collapsedHandleOffset = offset; this.notifyListeners$0(); } }, set$upstreamHandleOffset(offset) { if (!J.$eq$(offset, this._document_gestures_touch_android$_upstreamHandleOffset)) { this._document_gestures_touch_android$_upstreamHandleOffset = offset; this.notifyListeners$0(); } }, set$downstreamHandleOffset(offset) { if (!J.$eq$(offset, this._document_gestures_touch_android$_downstreamHandleOffset)) { this._document_gestures_touch_android$_downstreamHandleOffset = offset; this.notifyListeners$0(); } }, startCollapsedHandleAutoHideCountdown$0() { var t1 = this._collapsedHandleAutoHideTimer; if (t1 != null) t1.cancel$0(0); this._collapsedHandleAutoHideTimer = A.Timer_Timer(B.Duration_4000000, this.get$_hideCollapsedHandle()); }, cancelCollapsedHandleAutoHideCountdown$0() { var t1 = this._collapsedHandleAutoHideTimer; if (t1 != null) t1.cancel$0(0); }, _hideCollapsedHandle$0() { if (!this._isCollapsedHandleAutoHidden) { this._isCollapsedHandleAutoHidden = true; this.notifyListeners$0(); } }, unHideCollapsedHandle$0() { if (this._isCollapsedHandleAutoHidden) { this._isCollapsedHandleAutoHidden = false; this.notifyListeners$0(); } } }; A.__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver.prototype = {}; A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.IOSDocumentTouchInteractor.prototype = { createState$0() { return new A._IOSDocumentTouchInteractorState(new A.LayerLink(), new A.LayerLink(), null, null, B._StateLifecycle_0); }, getDocumentLayout$0() { return this.getDocumentLayout.call$0(); }, get$document(receiver) { return this.document; } }; A._IOSDocumentTouchInteractorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; _this.___IOSDocumentTouchInteractorState__handleAutoScrolling = new A.DragHandleAutoScroller(A.AutoScroller$(_this), B.AxisOffset_54_54, new A._IOSDocumentTouchInteractorState_initState_closure(_this), new A._IOSDocumentTouchInteractorState_initState_closure0(_this)); _this._widget.focusNode.addListener$1(0, _this.get$_document_gestures_touch_ios$_onFocusChange()); if (_this._widget.focusNode.get$hasFocus()) _this._showEditingControlsOverlay$0(); t1 = _this._widget.scrollController; if (t1 == null) t1 = new A.ScrollController(0, true, null, A._setArrayType([], type$.JSArray_ScrollPosition), $.$get$ChangeNotifier__emptyListeners()); _this.___IOSDocumentTouchInteractorState__scrollController = t1; A._lateReadCheck(t1, "_scrollController").addListener$1(0, _this.get$_onScrollChange()); _this.___IOSDocumentTouchInteractorState__editingController = new A.IosDocumentGestureEditingController(_this._documentLayerLink, _this._document_gestures_touch_ios$_magnifierFocalPointLink, $.$get$ChangeNotifier__emptyListeners()); _this._widget.document.addListener$1(0, _this.get$_onDocumentChange()); _this._widget.composer.addListener$1(0, _this.get$_onSelectionChange()); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, didChangeDependencies$0() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); if (t1 == null) t1 = null; else { t1 = t1._scrollable$_position; t1.toString; } _this._ancestorScrollPosition = t1; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IOSDocumentTouchInteractorState_didChangeDependencies_closure(_this)); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.focusNode; t2 = oldWidget.focusNode; if (t1 !== t2) { t1 = _this.get$_document_gestures_touch_ios$_onFocusChange(); t2.removeListener$1(0, t1); _this._widget.focusNode.addListener$1(0, t1); } t1 = _this._widget.document; t2 = oldWidget.document; if (!J.$eq$(t1, t2)) { t1 = _this.get$_onDocumentChange(); t2.removeListener$1(0, t1); _this._widget.document.addListener$1(0, t1); } t1 = _this._widget.composer; t2 = oldWidget.composer; if (t1 !== t2) { t1 = _this.get$_onSelectionChange(); t2.removeListener$1(0, t1); _this._widget.composer.addListener$1(0, t1); } }, reassemble$0() { var _this = this; _this.super$State$reassemble(); if (_this._widget.focusNode.get$hasFocus()) { _this._removeEditingOverlayControls$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IOSDocumentTouchInteractorState_reassemble_closure(_this)); } }, dispose$0(_) { var _this = this; B.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._widget.document.removeListener$1(0, _this.get$_onDocumentChange()); _this._widget.composer.removeListener$1(0, _this.get$_onSelectionChange()); _this._removeEditingOverlayControls$0(); if (_this._widget.scrollController == null) A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__scrollController, "_scrollController").dispose$0(0); A._lateReadCheck(A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling")._document_gestures_touch$_autoScroller.__AutoScroller__ticker, "_ticker").dispose$0(0); _this._widget.focusNode.removeListener$1(0, _this.get$_document_gestures_touch_ios$_onFocusChange()); _this.super$__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin$dispose(0); }, didChangeMetrics$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IOSDocumentTouchInteractorState_didChangeMetrics_closure(this)); }, _ensureSelectionExtentIsVisible$0() { var collapsedHandleOffset, extentHandleOffset, t2, t3, editorBox, editorInViewportOffset, handleInViewportOffset, _this = this, _null = null, _s18_ = "_editingController", t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_FINE_500, "Ensuring selection extent is visible", _null, _null); collapsedHandleOffset = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_)._collapsedHandleOffset; extentHandleOffset = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_)._downstreamHandleOffset; t2 = collapsedHandleOffset == null; if (t2 && extentHandleOffset == null) return; t3 = _this._widget.documentKey; editorBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3).get$renderObject()); editorInViewportOffset = A.MatrixUtils_transformPoint(_this.get$viewportBox().getTransformTo$1(0, _null), B.Offset_0_0).$sub(0, A.MatrixUtils_transformPoint(editorBox.getTransformTo$1(0, _null), B.Offset_0_0)); handleInViewportOffset = A._Cell$named("handleInViewportOffset"); if (!t2) { t1.log$4(B.Level_FINE_500, "The selection is collapsed", _null, _null); handleInViewportOffset.__late_helper$_value = collapsedHandleOffset.$sub(0, editorInViewportOffset); } else { t1.log$4(B.Level_FINE_500, "The selection is expanded", _null, _null); handleInViewportOffset.__late_helper$_value = extentHandleOffset.$sub(0, editorInViewportOffset); } A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling").ensureOffsetIsVisible$1(handleInViewportOffset._readLocal$0()); }, _document_gestures_touch_ios$_onFocusChange$0() { if (this._widget.focusNode.get$hasFocus()) this._showEditingControlsOverlay$0(); else this._removeEditingOverlayControls$0(); }, _onDocumentChange$0() { A._lateReadCheck(this.___IOSDocumentTouchInteractorState__editingController, "_editingController").hideToolbar$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IOSDocumentTouchInteractorState__onDocumentChange_closure(this)); }, _onSelectionChange$0() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IOSDocumentTouchInteractorState__onSelectionChange_closure(this)); }, _updateHandlesAfterSelectionOrLayoutChange$0() { var t1, t2, t3, _this = this, _null = null, _s18_ = "_editingController", newSelection = _this._widget.composer._document_composer$_selection; if (newSelection == null) { t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_); t1.removeCaret$0(); t1.hideToolbar$0(); t1.set$collapsedHandleOffset(_null); t1.set$upstreamHandleOffset(_null); t1.set$downstreamHandleOffset(_null); t1.set$collapsedHandleOffset(_null); } else if (J.$eq$(newSelection.base, newSelection.extent)) { t1 = _this._widget.getDocumentLayout$0().getRectForPosition$1(_this._widget.composer._document_composer$_selection.extent); t1.toString; t2 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_); t3 = t1.top; t2._caretTop = new A.Offset(t1.left, t3); t2._caretHeight = t1.bottom - t3; t2.notifyListeners$0(); _this._positionCollapsedHandle$0(); } else _this._positionExpandedSelectionHandles$0(); }, _onScrollChange$0() { this._positionToolbar$0(); }, get$scrollPosition() { var t1 = this._ancestorScrollPosition; return t1 == null ? B.JSArray_methods.get$single(A._lateReadCheck(this.___IOSDocumentTouchInteractorState__scrollController, "_scrollController")._positions) : t1; }, get$viewportBox() { var t1 = this._framework$_element; t1.toString; t1 = A.Scrollable_of(t1); t1 = t1 == null ? null : t1._framework$_element.get$renderObject(); if (t1 == null) t1 = this._framework$_element.get$renderObject(); return type$.RenderBox._as(t1); }, _onTapUp$1(details) { var t2, t3, t4, t5, docOffset, docPosition, didTapOnExistingSelection, _this = this, _null = null, _s18_ = "_editingController", selection = _this._widget.composer._document_composer$_selection, t1 = selection != null; if (t1) if (!J.$eq$(selection.base, selection.extent)) { t2 = details.localPosition; t2 = _this._isOverBaseHandle$1(t2) || _this._isOverExtentHandle$1(t2); } else t2 = false; else t2 = false; if (t2) { A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_).toggleToolbar$0(); _this._positionToolbar$0(); return; } t2 = $.$get$editorGesturesLog(); t2.log$4(B.Level_INFO_800, "Tap down on document", _null, _null); t3 = details.localPosition; t4 = _this._widget.getDocumentLayout$0(); t5 = _this._framework$_element.get$renderObject(); t5.toString; docOffset = type$.RenderBox._as(t4._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t3, t5); t2.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t2.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); t2 = docPosition != null; if (t2 && t1 && !J.$eq$(selection.base, selection.extent) && A.InspectDocumentSelection_doesSelectionContainPosition(_this._widget.document, selection, docPosition)) { A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_).toggleToolbar$0(); _this._positionToolbar$0(); return; } _this.setState$1(new A._IOSDocumentTouchInteractorState__onTapUp_closure(_this)); if (t2) { if (t1) { t1 = selection.base; t2 = selection.extent; didTapOnExistingSelection = J.$eq$(t1, t2) && J.$eq$(t2, docPosition); } else didTapOnExistingSelection = false; t1 = _this.___IOSDocumentTouchInteractorState__editingController; if (didTapOnExistingSelection) A._lateReadCheck(t1, _s18_).toggleToolbar$0(); else A._lateReadCheck(t1, _s18_).hideToolbar$0(); _this._selectPosition$1(docPosition); } else { _this._widget.composer.set$selection(_null); A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_).hideToolbar$0(); } _this._positionToolbar$0(); _this._widget.focusNode.requestFocus$0(); }, _onDoubleTapUp$1(details) { var t1, t2, t3, t4, docOffset, docPosition, didSelectContent, newSelection, _this = this, _null = null, _s18_ = "_editingController", selection = _this._widget.composer._document_composer$_selection; if (selection != null) if (!J.$eq$(selection.base, selection.extent)) { t1 = details.localPosition; t1 = _this._isOverBaseHandle$1(t1) || _this._isOverExtentHandle$1(t1); } else t1 = false; else t1 = false; if (t1) return; t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Double tap down on document", _null, _null); t2 = details.localPosition; t3 = _this._widget.getDocumentLayout$0(); t4 = _this._framework$_element.get$renderObject(); t4.toString; docOffset = type$.RenderBox._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t2, t4); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); _this._widget.composer.set$selection(_null); if (docPosition != null) { didSelectContent = _this._selectWordAt$2$docLayout$docPosition(_this._widget.getDocumentLayout$0(), docPosition); if (!(!didSelectContent ? _this._selectBlockAt$1(docPosition) : didSelectContent)) _this._selectPosition$1(docPosition); } newSelection = _this._widget.composer._document_composer$_selection; t1 = newSelection == null || J.$eq$(newSelection.base, newSelection.extent); t2 = _this.___IOSDocumentTouchInteractorState__editingController; if (t1) A._lateReadCheck(t2, _s18_).hideToolbar$0(); else { A._lateReadCheck(t2, _s18_).showToolbar$0(); _this._positionToolbar$0(); } _this._widget.focusNode.requestFocus$0(); }, _selectBlockAt$1(position) { var t1; if (!(position.nodePosition instanceof A.UpstreamDownstreamNodePosition)) return false; t1 = position.nodeId; this._widget.composer.set$selection(new A.DocumentSelection(new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_0), new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1))); return true; }, _onTripleTapUp$1(details) { var t2, t3, docOffset, docPosition, selection, _this = this, _null = null, _s18_ = "_editingController", t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Triple down down on document", _null, _null); t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; docOffset = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(details.localPosition, t3); t1.log$4(B.Level_FINE_500, " - document offset: " + docOffset.toString$0(0), _null, _null); docPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(docOffset); t1.log$4(B.Level_FINE_500, " - tapped document position: " + A.S(docPosition), _null, _null); _this._widget.composer.set$selection(_null); if (docPosition != null) if (!_this._selectParagraphAt$2$docLayout$docPosition(_this._widget.getDocumentLayout$0(), docPosition)) _this._selectPosition$1(docPosition); selection = _this._widget.composer._document_composer$_selection; t1 = selection == null || J.$eq$(selection.base, selection.extent); t2 = _this.___IOSDocumentTouchInteractorState__editingController; if (t1) A._lateReadCheck(t2, _s18_).hideToolbar$0(); else { A._lateReadCheck(t2, _s18_).showToolbar$0(); _this._positionToolbar$0(); } _this._widget.focusNode.requestFocus$0(); }, _onPanStart$1(details) { var t1, t2, t3, t4, handleOffsetInInteractor, t5, _this = this, selection = _this._widget.composer._document_composer$_selection; if (selection == null) return; t1 = selection.base; t2 = selection.extent; if (J.$eq$(t1, t2) && _this._isOverCollapsedHandle$1(details.localPosition)) { _this._dragMode = B._DragMode_0; _this._dragHandleType = B.HandleType_0; } else { t3 = details.localPosition; if (_this._isOverBaseHandle$1(t3)) { _this._dragMode = B._DragMode_1; _this._dragHandleType = B.HandleType_1; } else if (_this._isOverExtentHandle$1(t3)) { _this._dragMode = B._DragMode_2; _this._dragHandleType = B.HandleType_2; } else return; } A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, "_editingController").hideToolbar$0(); t3 = details.globalPosition; _this._globalStartDragOffset = t3; t4 = type$.RenderBox; handleOffsetInInteractor = t4._as(_this._framework$_element.get$renderObject()).globalToLocal$1(t3); t3 = _this._widget.getDocumentLayout$0(); t5 = _this._framework$_element.get$renderObject(); t5.toString; _this._dragStartInDoc = t4._as(t3._framework$_element.get$renderObject()).globalToLocal$2$ancestor(handleOffsetInInteractor, t5); t5 = _this._widget.getDocumentLayout$0(); t3 = _this._dragHandleType; t3.toString; _this._startDragPositionOffset = t5.getRectForPosition$1(t3 === B.HandleType_1 ? t1 : t2).get$center(); t1 = _this.get$scrollPosition()._pixels; t1.toString; _this._dragStartScrollOffset = t1; t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling"); t1._document_gestures_touch$_autoScroller.__scrolling$_scrollPosition = t1._getScrollPosition.call$0(); _this.get$scrollPosition().addListener$1(0, _this.get$_updateDragSelection()); _this._controlsOverlayEntry.markNeedsBuild$0(); }, _isOverCollapsedHandle$1(interactorOffset) { var extentRect, caretRect, t1 = this._widget, t2 = t1.composer._document_composer$_selection, collapsedPosition = t2 == null ? null : t2.extent; if (collapsedPosition == null) return false; extentRect = t1.getDocumentLayout$0().getRectForPosition$1(collapsedPosition); t1 = extentRect.left - 1; t2 = extentRect.get$center()._dy; caretRect = new A.Rect(t1, t2, t1 + 1, t2 + 1).inflate$1(24); t2 = this._widget.getDocumentLayout$0(); t1 = this._framework$_element.get$renderObject(); t1.toString; return caretRect.contains$1(0, type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(interactorOffset, t1)); }, _isOverBaseHandle$1(interactorOffset) { var baseRect, t3, t4, t5, t6, t1 = this._widget, t2 = t1.composer._document_composer$_selection, basePosition = t2 == null ? null : t2.base; if (basePosition == null) return false; baseRect = t1.getDocumentLayout$0().getRectForPosition$1(basePosition); t1 = baseRect.left - 24; t2 = baseRect.top; t3 = t2 - 24; t4 = baseRect.bottom; t5 = this._widget.getDocumentLayout$0(); t6 = this._framework$_element.get$renderObject(); t6.toString; return new A.Rect(t1, t3, t1 + 48, t3 + (t4 - t2 + 48)).contains$1(0, type$.RenderBox._as(t5._framework$_element.get$renderObject()).globalToLocal$2$ancestor(interactorOffset, t6)); }, _isOverExtentHandle$1(interactorOffset) { var extentRect, t3, t4, t5, t1 = this._widget, t2 = t1.composer._document_composer$_selection, extentPosition = t2 == null ? null : t2.extent; if (extentPosition == null) return false; extentRect = t1.getDocumentLayout$0().getRectForPosition$1(extentPosition); t1 = extentRect.left - 24; t2 = extentRect.top; t3 = extentRect.bottom; t4 = this._widget.getDocumentLayout$0(); t5 = this._framework$_element.get$renderObject(); t5.toString; return new A.Rect(t1, t2, t1 + 48, t2 + (t3 - t2 + 32)).contains$1(0, type$.RenderBox._as(t4._framework$_element.get$renderObject()).globalToLocal$2$ancestor(interactorOffset, t5)); }, _onPanUpdate$1(details) { var t1, t2, dragEndInViewport, _this = this; if (_this._dragMode == null) { t1 = _this.get$scrollPosition(); t2 = _this.get$scrollPosition()._pixels; t2.toString; t1.jumpTo$1(t2 - details.delta._dy); _this._positionToolbar$0(); return; } t1 = details.globalPosition; _this._globalDragOffset = t1; t2 = type$.RenderBox; t1 = t2._as(_this._framework$_element.get$renderObject()).globalToLocal$1(t1); _this._dragEndInInteractor = t1; dragEndInViewport = _this.get$viewportBox().globalToLocal$1(A.MatrixUtils_transformPoint(t2._as(_this._framework$_element.get$renderObject()).getTransformTo$1(0, null), t1)); _this._updateSelectionForNewDragHandleLocation$0(); A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling").updateAutoScrollHandleMonitoring$1$dragEndInViewport(dragEndInViewport); A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, "_editingController").showMagnifier$0(); _this._controlsOverlayEntry.markNeedsBuild$0(); }, _updateSelectionForNewDragHandleLocation$0() { var t2, docDragDelta, docDragPosition, _this = this, t1 = _this._globalDragOffset; t1.toString; t2 = _this._globalStartDragOffset; t2.toString; docDragDelta = t1.$sub(0, t2); t2 = _this._dragStartScrollOffset; t2.toString; t1 = _this.get$scrollPosition()._pixels; t1.toString; docDragPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(_this._startDragPositionOffset.$add(0, docDragDelta).$sub(0, new A.Offset(0, t2 - t1))); if (docDragPosition == null) return; t1 = _this._dragHandleType; if (t1 === B.HandleType_0) _this._widget.composer.set$selection(new A.DocumentSelection(docDragPosition, docDragPosition)); else if (t1 === B.HandleType_1) { t1 = _this._widget.composer; t1.set$selection(t1._document_composer$_selection.copyWith$1$base(docDragPosition)); } else if (t1 === B.HandleType_2) { t1 = _this._widget.composer; t1.set$selection(t1._document_composer$_selection.copyWith$1$extent(docDragPosition)); } }, _onPanEnd$1(details) { var _this = this; if (_this._dragMode == null) { if (_this.get$scrollPosition() instanceof A.ScrollPositionWithSingleContext) { _this.get$scrollPosition().goBallistic$1(-details.velocity.pixelsPerSecond._dy); _this.get$scrollPosition().addListener$1(0, _this.get$_onScrollChange()); } } else _this._onHandleDragEnd$0(); }, _onPanCancel$0() { if (this._dragMode != null) this._onHandleDragEnd$0(); }, _onHandleDragEnd$0() { var _this = this, _s18_ = "_editingController", t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling")._document_gestures_touch$_autoScroller; t1.stopScrollingUp$0(); t1.stopScrollingDown$0(); t1.__scrolling$_scrollPosition = null; _this.get$scrollPosition().removeListener$1(0, _this.get$_updateDragSelection()); _this._dragMode = null; t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_); t1._isMagnifierVisible = false; t1.notifyListeners$0(); t1 = _this._widget.composer._document_composer$_selection; if (!J.$eq$(t1.base, t1.extent)) { A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_).showToolbar$0(); _this._positionToolbar$0(); } _this._controlsOverlayEntry.markNeedsBuild$0(); }, _onTapTimeout$0() { this.setState$1(new A._IOSDocumentTouchInteractorState__onTapTimeout_closure(this)); }, _updateDragSelection$0() { var t1, t2, t3, dragEndInDoc, dragPosition, basePosition, extentPosition, _this = this, _null = null; if (_this._dragStartInDoc == null) return; t1 = _this._dragEndInInteractor; t1.toString; t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; dragEndInDoc = type$.RenderBox._as(t2._framework$_element.get$renderObject()).globalToLocal$2$ancestor(t1, t3); dragPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(dragEndInDoc); t3 = $.$get$editorGesturesLog(); t3.log$4(B.Level_INFO_800, "Selecting new position during drag: " + A.S(dragPosition), _null, _null); if (dragPosition == null) return; basePosition = A._Cell$named("basePosition"); extentPosition = A._Cell$named("extentPosition"); switch (_this._dragHandleType.index) { case 0: extentPosition.__late_helper$_value = basePosition.__late_helper$_value = dragPosition; break; case 1: basePosition.__late_helper$_value = dragPosition; extentPosition.__late_helper$_value = _this._widget.composer._document_composer$_selection.extent; break; case 2: basePosition.__late_helper$_value = _this._widget.composer._document_composer$_selection.base; extentPosition.__late_helper$_value = dragPosition; break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } _this._widget.composer.set$selection(new A.DocumentSelection(basePosition._readLocal$0(), extentPosition._readLocal$0())); t3.log$4(B.Level_FINE_500, "Selected region: " + A.S(_this._widget.composer._document_composer$_selection), _null, _null); }, _showEditingControlsOverlay$0() { var result, t1, _this = this; if (_this._controlsOverlayEntry != null) return; _this._controlsOverlayEntry = A.OverlayEntry$(new A._IOSDocumentTouchInteractorState__showEditingControlsOverlay_closure(_this), false); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._controlsOverlayEntry; t1.toString; result.insert$1(0, t1); }, _positionCollapsedHandle$0() { var t1, t2, handleOffset, _null = null, selection = this._widget.composer._document_composer$_selection; if (selection == null) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_ucr, _null, _null); return; } t1 = selection.base; t2 = selection.extent; if (!J.$eq$(t1, t2)) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_uc_, _null, _null); return; } handleOffset = A._InitializedCell$named("handleOffset", new A._IOSDocumentTouchInteractorState__positionCollapsedHandle_closure(this._widget.getDocumentLayout$0().getRectForPosition$1(t2))); A._lateReadCheck(this.___IOSDocumentTouchInteractorState__editingController, "_editingController").set$collapsedHandleOffset(handleOffset._read$0()); }, _positionExpandedSelectionHandles$0() { var t1, t2, baseRect, t3, t4, baseHandleOffset, extentRect, t5, extentHandleOffset, upstreamHandleOffset, upstreamHandleHeight, downstreamHandleOffset, downstreamHandleHeight, _this = this, _null = null, selection = _this._widget.composer._document_composer$_selection; if (selection == null) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_uer, _null, _null); return; } t1 = selection.base; t2 = selection.extent; if (J.$eq$(t1, t2)) { $.$get$editorGesturesLog().log$4(B.Level_SHOUT_1200, string$.Tried_ue_, _null, _null); return; } baseRect = _this._widget.getDocumentLayout$0().getRectForPosition$1(t1); t3 = baseRect.left; t4 = baseRect.bottom; baseHandleOffset = new A.Offset(t3, t4); extentRect = _this._widget.getDocumentLayout$0().getRectForPosition$1(t2); t3 = extentRect.right; t5 = extentRect.bottom; extentHandleOffset = new A.Offset(t3, t5); t1 = A.InspectDocumentAffinity_getAffinityBetween(_this._widget.document, t1, t2) === B.TextAffinity_1; upstreamHandleOffset = t1 ? baseHandleOffset : extentHandleOffset; upstreamHandleHeight = t1 ? t4 - baseRect.top : t5 - extentRect.top; downstreamHandleOffset = t1 ? extentHandleOffset : baseHandleOffset; downstreamHandleHeight = t1 ? t5 - extentRect.top : t4 - baseRect.top; t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, "_editingController"); t1.removeCaret$0(); t1.set$collapsedHandleOffset(_null); t1.set$upstreamHandleOffset(upstreamHandleOffset); if (upstreamHandleHeight !== t1._upstreamCaretHeight) { t1._upstreamCaretHeight = upstreamHandleHeight; t1.notifyListeners$0(); } t1.set$downstreamHandleOffset(downstreamHandleOffset); if (downstreamHandleHeight !== t1._downstreamCaretHeight) { t1._downstreamCaretHeight = downstreamHandleHeight; t1.notifyListeners$0(); } }, _positionToolbar$0() { var selectionRect, selection, t1, t2, t3, t4, t5, extentRectInDoc, t6, selectionRectInDoc, toolbarTopAnchor, toolbarBottomAnchor, _this = this, _null = null, _s18_ = "_editingController"; if (!A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_)._shouldDisplayToolbar) return; selectionRect = A._Cell$named("selectionRect"); selection = _this._widget.composer._document_composer$_selection; t1 = selection.base; t2 = selection.extent; t3 = J.$eq$(t1, t2); t4 = type$.RenderBox; t5 = _this._widget; if (t3) { t1 = t5.getDocumentLayout$0().getRectForPosition$1(t2); t1.toString; selectionRect.__late_helper$_value = A.Rect$fromPoints(A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(t1.left, t1.top)), A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(t1.right, t1.bottom))); } else { t1 = t5.getDocumentLayout$0().getRectForPosition$1(t1); t1.toString; extentRectInDoc = _this._widget.getDocumentLayout$0().getRectForPosition$1(t2); t2 = extentRectInDoc.left; t2 = Math.min(A.checkNum(t1.left), A.checkNum(t2)); t3 = extentRectInDoc.top; t3 = Math.min(A.checkNum(t1.top), A.checkNum(t3)); t5 = extentRectInDoc.right; t5 = Math.max(A.checkNum(t1.right), A.checkNum(t5)); t6 = extentRectInDoc.bottom; selectionRectInDoc = A.Rect$fromPoints(new A.Offset(t2, t3), new A.Offset(t5, Math.max(A.checkNum(t1.bottom), A.checkNum(t6)))); selectionRect.__late_helper$_value = A.Rect$fromPoints(A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(selectionRectInDoc.left, selectionRectInDoc.top)), A.MatrixUtils_transformPoint(t4._as(_this._widget.getDocumentLayout$0()._framework$_element.get$renderObject()).getTransformTo$1(0, _null), new A.Offset(selectionRectInDoc.right, selectionRectInDoc.bottom))); } toolbarTopAnchor = selectionRect._readLocal$0().get$topCenter().$sub(0, B.Offset_0_24); toolbarBottomAnchor = selectionRect._readLocal$0().get$bottomCenter().$add(0, B.Offset_0_24); A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__editingController, _s18_).positionToolbar$2$bottomAnchor$topAnchor(toolbarBottomAnchor, toolbarTopAnchor); }, _removeEditingOverlayControls$0() { var t1 = this._controlsOverlayEntry; if (t1 != null) { t1.remove$0(0); this._controlsOverlayEntry = null; } }, _selectWordAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getWordSelection(docLayout, docPosition); if (newSelection != null) { this._widget.composer.set$selection(newSelection); return true; } else return false; }, _selectParagraphAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getParagraphSelection(docLayout, docPosition); if (newSelection != null) { this._widget.composer.set$selection(newSelection); return true; } else return false; }, _onFloatingCursorStart$0() { var t1 = A._lateReadCheck(this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling"); t1._document_gestures_touch$_autoScroller.__scrolling$_scrollPosition = t1._getScrollPosition.call$0(); }, _moveSelectionToFloatingCursor$1(documentOffset) { var t2, t3, _this = this, t1 = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(documentOffset); t1.toString; _this._selectPosition$1(t1); t1 = A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling"); t2 = _this._widget.getDocumentLayout$0(); t3 = _this._framework$_element.get$renderObject(); t3.toString; t1.updateAutoScrollHandleMonitoring$1$dragEndInViewport(A.MatrixUtils_transformPoint(type$.RenderBox._as(t2._framework$_element.get$renderObject()).getTransformTo$1(0, t3), documentOffset)); }, _onFloatingCursorStop$0() { var t1 = A._lateReadCheck(this.___IOSDocumentTouchInteractorState__handleAutoScrolling, "_handleAutoScrolling")._document_gestures_touch$_autoScroller; t1.stopScrollingUp$0(); t1.stopScrollingDown$0(); t1.__scrolling$_scrollPosition = null; }, _selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + A.S(position), null, null); this._widget.composer.set$selection(new A.DocumentSelection(position, position)); }, build$1(_, context) { var t1, _this = this, _s17_ = "_scrollController"; if (A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__scrollController, _s17_)._positions.length !== 0) if (_this.get$scrollPosition() != _this._activeScrollPosition) { t1 = _this._activeScrollPosition = _this.get$scrollPosition(); if (t1 != null) t1.addListener$1(0, _this.get$_onScrollChange()); } return _this._buildGestureInput$1$child(new A.ScrollableDocument(A._lateReadCheck(_this.___IOSDocumentTouchInteractorState__scrollController, _s17_), true, _this._documentLayerLink, _this._widget.child, null)); }, _buildGestureInput$1$child(child) { return new A.RawGestureDetector(child, A.LinkedHashMap_LinkedHashMap$_literal([B.Type_TapSequenceGestureRecognizer_7F1, new A.GestureRecognizerFactoryWithHandlers(new A._IOSDocumentTouchInteractorState__buildGestureInput_closure(), new A._IOSDocumentTouchInteractorState__buildGestureInput_closure0(this), type$.GestureRecognizerFactoryWithHandlers_TapSequenceGestureRecognizer), B.Type_PanGestureRecognizer_bbH, new A.GestureRecognizerFactoryWithHandlers(new A._IOSDocumentTouchInteractorState__buildGestureInput_closure1(), new A._IOSDocumentTouchInteractorState__buildGestureInput_closure2(this), type$.GestureRecognizerFactoryWithHandlers_PanGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), B.HitTestBehavior_2, false, null, null); } }; A._IOSDocumentTouchInteractorState_initState_closure.prototype = { call$0() { return this.$this.get$scrollPosition(); }, $signature: 647 }; A._IOSDocumentTouchInteractorState_initState_closure0.prototype = { call$0() { return this.$this.get$viewportBox(); }, $signature: 608 }; A._IOSDocumentTouchInteractorState_didChangeDependencies_closure.prototype = { call$1(timeStamp) { var t1 = this.$this, newScrollPosition = t1.get$scrollPosition(); if (newScrollPosition != t1._activeScrollPosition) t1.setState$1(new A._IOSDocumentTouchInteractorState_didChangeDependencies__closure(t1, newScrollPosition)); }, $signature: 22 }; A._IOSDocumentTouchInteractorState_didChangeDependencies__closure.prototype = { call$0() { var t1 = this.$this, t2 = t1._activeScrollPosition; if (t2 != null) t2.removeListener$1(0, t1.get$_onScrollChange()); t2 = this.newScrollPosition; t2.addListener$1(0, t1.get$_onScrollChange()); t1._activeScrollPosition = t2; }, $signature: 0 }; A._IOSDocumentTouchInteractorState_reassemble_closure.prototype = { call$1(timeStamp) { this.$this._showEditingControlsOverlay$0(); }, $signature: 22 }; A._IOSDocumentTouchInteractorState_didChangeMetrics_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; if (t1._framework$_element != null) { t1._ensureSelectionExtentIsVisible$0(); t1._updateHandlesAfterSelectionOrLayoutChange$0(); t1.setState$1(new A._IOSDocumentTouchInteractorState_didChangeMetrics__closure()); } }, $signature: 22 }; A._IOSDocumentTouchInteractorState_didChangeMetrics__closure.prototype = { call$0() { }, $signature: 0 }; A._IOSDocumentTouchInteractorState__onDocumentChange_closure.prototype = { call$1(timeStamp) { var t1 = this.$this; t1._updateHandlesAfterSelectionOrLayoutChange$0(); t1._ensureSelectionExtentIsVisible$0(); }, $signature: 22 }; A._IOSDocumentTouchInteractorState__onSelectionChange_closure.prototype = { call$1(timeStamp) { this.$this._updateHandlesAfterSelectionOrLayoutChange$0(); }, $signature: 22 }; A._IOSDocumentTouchInteractorState__onTapUp_closure.prototype = { call$0() { var t1 = this.$this; t1._waitingForMoreTaps = true; t1 = t1._controlsOverlayEntry; if (t1 != null) t1.markNeedsBuild$0(); }, $signature: 0 }; A._IOSDocumentTouchInteractorState__onTapTimeout_closure.prototype = { call$0() { var t1 = this.$this; t1._waitingForMoreTaps = false; t1 = t1._controlsOverlayEntry; if (t1 != null) t1.markNeedsBuild$0(); }, $signature: 0 }; A._IOSDocumentTouchInteractorState__showEditingControlsOverlay_closure.prototype = { call$1(overlayContext) { var t5, t6, t7, t8, t9, t1 = this.$this, t2 = A._lateReadCheck(t1.___IOSDocumentTouchInteractorState__editingController, "_editingController"), t3 = t1._widget, t4 = t3.floatingCursorController; t3 = t3.getDocumentLayout$0(); t5 = t1._widget; t6 = t5.document; t7 = t5.composer; t8 = t1._globalDragOffset; t9 = t5.popoverToolbarBuilder; return new A.IosDocumentTouchEditingControls(t2, t6, t7, t4, t3, t5.createOverlayControlsClipper, B.MaterialColor_Map_JNc9P_4294198070, t1.get$_onFloatingCursorStart(), t1.get$_moveSelectionToFloatingCursor(), t1.get$_onFloatingCursorStop(), t8, t9, false, null); }, $signature: 2888 }; A._IOSDocumentTouchInteractorState__positionCollapsedHandle_closure.prototype = { call$0() { var t1 = this.extentRect; return new A.Offset(t1.left, t1.bottom); }, $signature: 323 }; A._IOSDocumentTouchInteractorState__buildGestureInput_closure.prototype = { call$0() { return A.TapSequenceGestureRecognizer$(); }, $signature: 499 }; A._IOSDocumentTouchInteractorState__buildGestureInput_closure0.prototype = { call$1(recognizer) { var t1 = this.$this; recognizer.onTapUp = t1.get$_onTapUp(); recognizer.onDoubleTapUp = t1.get$_onDoubleTapUp(); recognizer.onTripleTapUp = t1.get$_onTripleTapUp(); recognizer.onTimeout = t1.get$_onTapTimeout(); }, $signature: 500 }; A._IOSDocumentTouchInteractorState__buildGestureInput_closure1.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, $signature: 358 }; A._IOSDocumentTouchInteractorState__buildGestureInput_closure2.prototype = { call$1(recognizer) { var t1 = this.$this; recognizer.onStart = t1.get$_onPanStart(); recognizer.onUpdate = t1.get$_onPanUpdate(); recognizer.onEnd = t1.get$_onPanEnd(); recognizer.onCancel = t1.get$_onPanCancel(); }, $signature: 359 }; A.FloatingCursorController.prototype = { set$offset(_, newOffset) { if (J.$eq$(newOffset, this._document_gestures_touch_ios$_offset)) return; this._document_gestures_touch_ios$_offset = newOffset; this.notifyListeners$0(); }, $isListenable: 1 }; A._DragMode.prototype = { toString$0(_) { return "_DragMode." + this._core$_name; } }; A.IosDocumentTouchEditingControls.prototype = { createState$0() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget, t2 = $.$get$ChangeNotifier__emptyListeners(); return new A._IosDocumentTouchEditingControlsState(new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), new A.LabeledGlobalKey(_null, t1), new A.ValueNotifier(false, t2, type$.ValueNotifier_bool), new A.LabeledGlobalKey(_null, t1), new A.ValueNotifier(_null, t2, type$.ValueNotifier_nullable_Offset), _null, _null, B._StateLifecycle_0); }, popoverToolbarBuilder$1(arg0) { return this.popoverToolbarBuilder.call$1(arg0); }, get$document(receiver) { return this.document; } }; A._IosDocumentTouchEditingControlsState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this.___IosDocumentTouchEditingControlsState__caretBlinkController = A.BlinkController$(_this); t1 = _this._widget.editingController; _this._prevCaretOffset = t1._caretTop; t1.addListener$1(0, _this.get$_onEditingControllerChange()); _this._widget.floatingCursorController.addListener$1(0, _this.get$_onFloatingCursorChange()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.editingController; t2 = oldWidget.editingController; if (t1 !== t2) { t1 = _this.get$_onEditingControllerChange(); t2.removeListener$1(0, t1); _this._widget.editingController.addListener$1(0, t1); } t1 = _this._widget.floatingCursorController; t2 = oldWidget.floatingCursorController; if (t1 !== t2) { t1 = _this.get$_onFloatingCursorChange(); t2.removeListener$1(0, t1); _this._widget.floatingCursorController.addListener$1(0, t1); } }, dispose$0(_) { var t1, _this = this; _this._widget.floatingCursorController.removeListener$1(0, _this.get$_onFloatingCursorChange()); _this._widget.editingController.removeListener$1(0, _this.get$_onEditingControllerChange()); t1 = A._lateReadCheck(_this.___IosDocumentTouchEditingControlsState__caretBlinkController, "_caretBlinkController"); A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").dispose$0(0); t1.super$ChangeNotifier$dispose(0); _this.super$__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin$dispose(0); }, _onEditingControllerChange$0() { var t1, t2, _this = this, _s21_ = "_caretBlinkController"; if (!J.$eq$(_this._prevCaretOffset, _this._widget.editingController._caretTop)) { t1 = _this._widget.editingController._caretTop; t2 = _this.___IosDocumentTouchEditingControlsState__caretBlinkController; if (t1 == null) { t1 = A._lateReadCheck(t2, _s21_); t1._blink_controller$_isVisible = true; A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").stop$0(0); } else A._lateReadCheck(t2, _s21_).jumpToOpaque$0(); _this._prevCaretOffset = _this._widget.editingController._caretTop; } }, _onFloatingCursorChange$0() { var t2, t3, nearestDocPosition, t4, _this = this, _s21_ = "_caretBlinkController", t1 = _this._widget; if (t1.floatingCursorController._document_gestures_touch_ios$_offset == null) { t1 = _this._floatingCursorOffset; if (t1._change_notifier$_value != null) { _this._isShowingFloatingCursor.set$value(0, false); A._lateReadCheck(_this.___IosDocumentTouchEditingControlsState__caretBlinkController, _s21_).startBlinking$0(); _this._initialFloatingCursorOffset = null; t1.set$value(0, null); _this._floatingCursorHeight = 20; _this._widget.onFloatingCursorStop.call$0(); } return; } t1 = t1.composer._document_composer$_selection; if (t1 == null) return; if (!J.$eq$(t1.base, t1.extent)) { t1 = _this._widget; t2 = t1.composer; t3 = t2._document_composer$_selection; t3.toString; t2.set$selection(t3.collapseDownstream$1(t1.document)); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._IosDocumentTouchEditingControlsState__onFloatingCursorChange_closure(_this)); } t1 = _this._floatingCursorOffset; if (t1._change_notifier$_value == null) _this._widget.onFloatingCursorStart.call$0(); t2 = A._lateReadCheck(_this.___IosDocumentTouchEditingControlsState__caretBlinkController, _s21_); t2._blink_controller$_isVisible = true; A._lateReadCheck(t2.__BlinkController__ticker, "_ticker").stop$0(0); _this._widget.editingController.hideToolbar$0(); t2 = _this._widget.editingController; t2._isMagnifierVisible = false; t2.notifyListeners$0(); t2 = _this._initialFloatingCursorOffset; if (t2 == null) { t2 = _this._widget.editingController._caretTop.$add(0, B.Offset_m1_0); t3 = _this._widget.editingController._caretHeight; t3.toString; t3 = _this._initialFloatingCursorOffset = t2.$add(0, new A.Offset(0, t3 / 2)); t2 = t3; } t3 = _this._widget.floatingCursorController._document_gestures_touch_ios$_offset; t3.toString; t1.set$value(0, t2.$add(0, t3)); t3 = _this._widget.documentLayout; t2 = t1._change_notifier$_value; t2.toString; nearestDocPosition = t3.getDocumentPositionNearestToOffset$1(t2); t2 = nearestDocPosition.nodePosition; t3 = _this._widget; t4 = nearestDocPosition.nodeId; if (t2 instanceof A.TextNodePosition) { t2 = t3.documentLayout.getComponentByNodeId$1(t4).getRectForPosition$1(t2); _this._floatingCursorHeight = t2.bottom - t2.top; } else _this._floatingCursorHeight = type$.RenderBox._as(t3.documentLayout.getComponentByNodeId$1(t4)._framework$_element.get$renderObject())._box$_size._dy; t2 = _this._widget.onFloatingCursorMoved; t1 = t1._change_notifier$_value; t1.toString; t2.call$1(t1); }, build$1(_, context) { return new A.ListenableBuilder(this._widget.editingController, new A._IosDocumentTouchEditingControlsState_build_closure(this), null); }, _buildHandles$0() { var _this = this, t1 = _this._widget.editingController, t2 = t1._collapsedHandleOffset == null; if (t2) t1 = !(t1._upstreamHandleOffset != null && t1._downstreamHandleOffset != null); else t1 = false; if (t1) { $.$get$editorGesturesLog().log$4(B.Level_FINER_400, "Not building overlay handles because they aren't desired", null, null); return A._setArrayType([], type$.JSArray_Widget); } t1 = type$.JSArray_Widget; if (!t2) return A._setArrayType([_this._buildHandleOld$3$debugColor$handleKey$handleType(B.MaterialColor_Map_JNwaj_4280391411, _this._collapsedHandleKey, B.HandleType_0)], t1); else return A._setArrayType([_this._buildHandleOld$3$debugColor$handleKey$handleType(B.MaterialColor_Map_JNEaM_4283215696, _this._upstreamHandleKey, B.HandleType_1), _this._buildHandleOld$3$debugColor$handleKey$handleType(B.MaterialColor_Map_JNc9P_4294198070, _this._downstreamHandleKey, B.HandleType_2)], t1); }, _buildHandleOld$3$debugColor$handleKey$handleType(debugColor, handleKey, handleType) { var t1, t2, _this = this, handle = A._Cell$named("handle"), handleOffset = A._Cell$named("handleOffset"); switch (handleType.index) { case 0: handleOffset.__late_helper$_value = _this._widget.editingController._caretTop.$add(0, B.Offset_m1_0); handle.__late_helper$_value = A.ValueListenableBuilder$(new A._IosDocumentTouchEditingControlsState__buildHandleOld_closure(_this), _this._isShowingFloatingCursor, type$.bool); break; case 1: t1 = _this._widget.editingController; t2 = t1._upstreamHandleOffset; t2.toString; t1 = t1._upstreamCaretHeight; t1.toString; handleOffset.__late_helper$_value = t2.$sub(0, new A.Offset(0, t1)).$add(0, B.Offset_m4_m6); t1 = _this._widget; t2 = t1.handleColor; t1 = t1.editingController._upstreamCaretHeight; t1.toString; handle.__late_helper$_value = A.IOSSelectionHandle$upstream(4, t1, t2, handleType); break; case 2: t1 = _this._widget.editingController; t2 = t1._downstreamHandleOffset; t2.toString; t1 = t1._downstreamCaretHeight; t1.toString; handleOffset.__late_helper$_value = t2.$sub(0, new A.Offset(0, t1)).$add(0, B.Offset_m4_m6); t1 = _this._widget; t2 = t1.handleColor; t1 = t1.editingController._downstreamCaretHeight; t1.toString; handle.__late_helper$_value = A.IOSSelectionHandle$upstream(4, t1, t2, handleType); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } t1 = handleOffset._readLocal$0(); return _this._buildHandle$4$debugColor$handle$handleKey$handleOffset(debugColor, handle._readLocal$0(), handleKey, t1); }, _buildHandle$4$debugColor$handle$handleKey$handleOffset(debugColor, handle, handleKey, handleOffset) { var _null = null, t1 = this._widget.editingController, t2 = handleOffset.$add(0, B.Offset_m5_0); this._widget.toString; return A.CompositedTransformFollower$(new A.IgnorePointer(true, _null, A.Container$(_null, handle, B.Clip_0, B.Color_0, _null, _null, _null, _null, _null, _null, B.EdgeInsets_5_0_5_0, _null, _null, _null), _null), handleKey, t1._documentLayoutLink, t2, true, B.Alignment_m1_m1); }, _buildFloatingCursor$0() { return A.ValueListenableBuilder$(new A._IosDocumentTouchEditingControlsState__buildFloatingCursor_closure(this), this._floatingCursorOffset, type$.nullable_Offset); }, _buildToolbar$0() { var t3, t4, _null = null, t1 = this._widget.editingController, t2 = t1._toolbarTopAnchor; t2.toString; t3 = t1._toolbarBottomAnchor; t3.toString; t1 = t1._shouldDisplayToolbar; t4 = t1 ? 1 : 0; return new A.CustomSingleChildLayout(new A.ToolbarPositionDelegate(B.Offset_0_0, t2, t3), new A.IgnorePointer(!t1, _null, A.AnimatedOpacity$(false, new A.Builder(new A._IosDocumentTouchEditingControlsState__buildToolbar_closure(this), _null), B.C__Linear, B.Duration_150000, t4), _null), _null); } }; A._IosDocumentTouchEditingControlsState__onFloatingCursorChange_closure.prototype = { call$1(timeStamp) { this.$this._onFloatingCursorChange$0(); }, $signature: 22 }; A._IosDocumentTouchEditingControlsState_build_closure.prototype = { call$1(context) { var t3, t4, t5, t6, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t2 = this.$this; t2._widget.toString; t3 = A.List_List$of(t2._buildHandles$0(), true, type$.Widget); t3.push(t2._buildFloatingCursor$0()); t4 = t2._widget.editingController; if (t4._shouldDisplayToolbar && t4._toolbarTopAnchor != null && t4._toolbarBottomAnchor != null) t3.push(t2._buildToolbar$0()); t4 = t2._widget; t5 = t4.magnifierFocalPointOffset; if (t5 != null) { t6 = t5._dx; t5 = t5._dy; t3.push(A.Positioned$(_null, new A.CompositedTransformTarget(t4.editingController._magnifierFocalPointLink, B.SizedBox_1_1_null_null, _null), _null, _null, t6, _null, t5, _null)); } t4 = t2._widget.editingController; if (t4._isMagnifierVisible) t3.push(A.Center$(new A.IOSFollowingMagnifier(t4._magnifierFocalPointLink, B.Offset_0_m72, _null), _null, _null)); t2._widget.toString; return new A.Padding(new A.EdgeInsets(0, 0, 0, t1.viewInsets.bottom), A.ClipRect$(new A.SizedBox(1 / 0, 1 / 0, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t3, _null), _null), B.Clip_1, _null), _null); }, $signature: 600 }; A._IosDocumentTouchEditingControlsState__buildHandleOld_closure.prototype = { call$3(context, isShowingFloatingCursor, child) { var t1 = this.$this, t2 = A._lateReadCheck(t1.___IosDocumentTouchEditingControlsState__caretBlinkController, "_caretBlinkController"), t3 = isShowingFloatingCursor ? B.MaterialColor_Map_HFpTk_4288585374 : t1._widget.handleColor; t1 = t1._widget.editingController._caretHeight; t1.toString; return new A.IOSCollapsedHandle(t2, t3, t1, null); }, $signature: 2889 }; A._IosDocumentTouchEditingControlsState__buildFloatingCursor_closure.prototype = { call$3(context, floatingCursorOffset, child) { var t1, t2, _null = null; if (floatingCursorOffset == null) return B.SizedBox_null_null_null_null; t1 = this.$this; t2 = floatingCursorOffset.$sub(0, new A.Offset(0, t1._floatingCursorHeight / 2)); return t1._buildHandle$4$debugColor$handle$handleKey$handleOffset(B.MaterialColor_Map_JNwaj_4280391411, A.Container$(_null, _null, B.Clip_0, B.MaterialColor_Map_JNc9P_4294198070, _null, _null, _null, t1._floatingCursorHeight, _null, _null, _null, _null, _null, 2), t1._floatingCursorKey, t2); }, $signature: 2890 }; A._IosDocumentTouchEditingControlsState__buildToolbar_closure.prototype = { call$1(context) { return this.$this._widget.popoverToolbarBuilder$1(context); }, $signature: 78 }; A.IosDocumentGestureEditingController.prototype = { removeCaret$0() { var _this = this; if (_this._caretTop == null) return; _this._caretHeight = _this._caretTop = null; _this.notifyListeners$0(); }, set$collapsedHandleOffset(offset) { if (!J.$eq$(offset, this._collapsedHandleOffset)) { this._collapsedHandleOffset = offset; this.notifyListeners$0(); } }, set$upstreamHandleOffset(offset) { if (!J.$eq$(offset, this._upstreamHandleOffset)) { this._upstreamHandleOffset = offset; this.notifyListeners$0(); } }, set$downstreamHandleOffset(offset) { if (!J.$eq$(offset, this._downstreamHandleOffset)) { this._downstreamHandleOffset = offset; this.notifyListeners$0(); } } }; A._FloatingCursorController_Object_ChangeNotifier.prototype = {}; A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver.prototype = {}; A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.DocumentImeInteractor.prototype = { createState$0() { return new A._DocumentImeInteractorState(B.TextEditingValue_li8, B._StateLifecycle_0); } }; A._DocumentImeInteractorState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.focusNode; t1.addListener$1(0, _this.get$_onFocusChange()); _this.___DocumentImeInteractorState__focusNode = t1; _this._widget.editContext.composer.selectionNotifier.addListener$1(0, _this.get$_onComposerChange()); _this._widget.editContext.composer.imeConfiguration.addListener$1(0, _this.get$_onClientWantsDifferentImeConfiguration()); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.focusNode !== oldWidget.focusNode) { t1 = _this.get$_onFocusChange(); A._lateReadCheck(_this.___DocumentImeInteractorState__focusNode, "_focusNode").removeListener$1(0, t1); t2 = _this._widget.focusNode; t2.addListener$1(0, t1); _this.___DocumentImeInteractorState__focusNode = t2; } t1 = _this._widget.editContext; t2 = oldWidget.editContext.composer; t3 = t2.selectionNotifier; if (t1.composer.selectionNotifier !== t3) { t1 = _this.get$_onComposerChange(); t3.removeListener$1(0, t1); _this._widget.editContext.composer.selectionNotifier.addListener$1(0, t1); } t1 = t2.imeConfiguration; if (_this._widget.editContext.composer.imeConfiguration !== t1) { t2 = _this.get$_onClientWantsDifferentImeConfiguration(); t1.removeListener$1(0, t2); t1.addListener$1(0, t2); } }, dispose$0(_) { var _this = this; _this._detachFromIme$0(); _this._widget.editContext.composer.imeConfiguration.removeListener$1(0, _this.get$_onClientWantsDifferentImeConfiguration()); _this._widget.editContext.composer.selectionNotifier.removeListener$1(0, _this.get$_onComposerChange()); _this._widget.toString; _this.super$State$dispose(0); }, _onFocusChange$0() { var _null = null; if (A._lateReadCheck(this.___DocumentImeInteractorState__focusNode, "_focusNode").get$hasFocus()) { $.$get$editorImeLog().log$4(B.Level_INFO_800, "Gained focus", _null, _null); this._attachToIme$0(); } else { $.$get$editorImeLog().log$4(B.Level_INFO_800, "Lost focus", _null, _null); this._detachFromIme$0(); } }, _onComposerChange$0() { var _this = this, t1 = _this._widget.editContext.composer, selection = t1._document_composer$_selection; $.$get$editorImeLog().log$4(B.Level_INFO_800, "Document composer (" + A.Primitives_objectHashCode(t1) + ") changed. New selection: " + A.S(selection), null, null); if (selection == null) _this._detachFromIme$0(); else if (_this.get$isAttachedToIme()) { _this._inputConnection.toString; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$1("TextInput.show", type$.void); _this._syncImeWithDocumentAndComposer$0(); } else _this._attachToIme$0(); }, _onClientWantsDifferentImeConfiguration$0() { var t1, _this = this; if (!_this.get$isAttachedToIme()) return; t1 = $.$get$editorImeLog(); _this._widget.editContext.composer.imeConfiguration._change_notifier$_value.toString; t1.log$4(B.Level_FINE_500, "Updating IME to use new config with action button: " + B.TextInputAction_12.toString$0(0), null, null); _this._inputConnection.toString; t1 = _this._createInputConfiguration$0(); A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.updateConfig", t1.toJson$0(), type$.void); }, get$isAttachedToIme() { var t1 = this._inputConnection; return (t1 == null ? null : $.$get$TextInput__instance()._currentConnection === t1) === true; }, _attachToIme$0() { var t1, t2, connection, t3, t4, _this = this, _null = null, _s8_ = "_channel"; if (_this.get$isAttachedToIme()) return; t1 = $.$get$editorImeLog(); t1.log$4(B.Level_INFO_800, "Attaching TextInputClient to TextInput", _null, _null); t2 = _this._createInputConfiguration$0(); connection = A.TextInputConnection$_(_this); t3 = $.$get$TextInput__instance(); t3._attach$2(connection, t2); _this._inputConnection = connection; _this._syncImeWithDocumentAndComposer$0(); _this._inputConnection.toString; t2 = type$.void; A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1("TextInput.show", t2); t4 = _this._currentTextEditingValue; A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$2("TextInput.setEditingState", t4.toJSON$0(), t2); t2 = _this._inputConnection; t2.toString; t1.log$4(B.Level_FINE_500, "Is attached to input client? " + (t3._currentConnection === t2), _null, _null); }, _createInputConfiguration$0() { this._widget.editContext.composer.imeConfiguration._change_notifier$_value.toString; var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; return A.TextInputConfiguration$(null, true, B.AutofillConfiguration_lYx, true, true, true, true, B.TextInputAction_12, B.TextInputType_1_null_null, t1.platformBrightness, false, false, null, null, B.TextCapitalization_1); }, _detachFromIme$0() { var t1, t2; if (!this.get$isAttachedToIme()) return; $.$get$editorImeLog().log$4(B.Level_INFO_800, "Detaching TextInputClient from TextInput.", null, null); this._widget.editContext.composer.set$selection(null); t1 = this._inputConnection; t1.toString; t2 = $.$get$TextInput__instance(); if (t2._currentConnection === t1) t2._clearClient$0(); }, get$currentAutofillScope() { return A.throwExpression(A.UnimplementedError$(null)); }, get$currentTextEditingValue() { return this._currentTextEditingValue; }, _syncImeWithDocumentAndComposer$1(composingRegion) { var t1, t2, t3, endDocPosition, endDocPosition0, startImePosition, endImePosition, imeSelection, _this = this, _null = null, _s8_ = "_imeText", selection = _this._widget.editContext.composer._document_composer$_selection; if (selection != null) { t1 = $.$get$editorImeLog(); t1.log$4(B.Level_FINE_500, "Syncing IME with Doc and Composer", _null, _null); t2 = A.DocumentImeSerializer$(_this._widget.editContext.editor._document, selection); t3 = t2._document_input_ime$_selection; t1.log$4(B.Level_FINE_500, "Creating TextEditingValue from document. Selection: " + A.S(t3), _null, _null); t1.log$4(B.Level_FINE_500, "Text:\n'" + A.S(A._lateReadCheck(t2.__DocumentImeSerializer__imeText, _s8_)) + "'", _null, _null); t1.log$4(B.Level_FINE_500, "Converting doc selection to ime selection: " + A.S(t3), _null, _null); endDocPosition = t3.base; endDocPosition0 = t3.extent; t3 = A.InspectDocumentAffinity_getAffinityBetween(t2._doc, endDocPosition, endDocPosition0) === B.TextAffinity_1; startImePosition = t2._documentToImePosition$1(t3 ? endDocPosition : endDocPosition0); endImePosition = t2._documentToImePosition$1(t3 ? endDocPosition0 : endDocPosition); t1.log$4(B.Level_FINE_500, "Start IME position: " + startImePosition.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "End IME position: " + endImePosition.toString$0(0), _null, _null); t3 = startImePosition.$eq(0, endImePosition) ? endImePosition.affinity : B.TextAffinity_1; imeSelection = A.TextSelection$(t3, startImePosition.offset, endImePosition.offset, false); t1.log$4(B.Level_FINE_500, "Selection: " + imeSelection.toString$0(0), _null, _null); t2 = A._lateReadCheck(t2.__DocumentImeSerializer__imeText, _s8_); t3 = composingRegion == null ? _this._currentTextEditingValue.composing : composingRegion; t3 = _this._currentTextEditingValue = new A.TextEditingValue(t2, imeSelection, B.TextRange_m1_m1).copyWith$1$composing(t3); if (!t3.$eq(0, _this._lastTextEditingValueSentToOs) && !_this._isApplyingDeltas) { t1.log$4(B.Level_INFO_800, "Sending new text editing value to OS: " + _this._currentTextEditingValue.toString$0(0), _null, _null); if (_this._inputConnection != null) { t1 = _this._currentTextEditingValue; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), type$.void); } _this._lastTextEditingValueSentToOs = _this._currentTextEditingValue; } else if (_this._isApplyingDeltas) t1.log$4(B.Level_FINE_500, "Ignoring new TextEditingValue because we're applying deltas", _null, _null); else t1.log$4(B.Level_FINE_500, "Ignoring new TextEditingValue because it's the same as the existing one: " + t3.toString$0(0), _null, _null); } }, _syncImeWithDocumentAndComposer$0() { return this._syncImeWithDocumentAndComposer$1(null); }, updateEditingValue$1(value) { $.$get$editorImeLog().log$4(B.Level_INFO_800, "Received new TextEditingValue from OS: " + value.toString$0(0), null, null); this.setState$1(new A._DocumentImeInteractorState_updateEditingValue_closure(this, value)); }, updateEditingValueWithDeltas$1(textEditingDeltas) { var t2, _i, imeValueBeforeChange, t3, _this = this, _null = null, t1 = $.$get$editorImeLog(); t1.log$4(B.Level_INFO_800, "Received edit deltas from platform: " + textEditingDeltas.length + " deltas", _null, _null); for (t2 = textEditingDeltas.length, _i = 0; _i < textEditingDeltas.length; textEditingDeltas.length === t2 || (0, A.throwConcurrentModificationError)(textEditingDeltas), ++_i) t1.log$4(B.Level_INFO_800, textEditingDeltas[_i].toString$0(0), _null, _null); imeValueBeforeChange = _this._currentTextEditingValue; t1.log$4(B.Level_FINE_500, "IME value before applying deltas: " + imeValueBeforeChange.toString$0(0), _null, _null); _this._isApplyingDeltas = true; _this._widget.softwareKeyboardHandler.applyDeltas$1(textEditingDeltas); t2 = _this._isApplyingDeltas = false; _this._syncImeWithDocumentAndComposer$1(B.JSArray_methods.get$last(textEditingDeltas).composing); t1.log$4(B.Level_FINE_500, "IME value after applying deltas: " + _this._currentTextEditingValue.toString$0(0), _null, _null); t3 = A._arrayInstanceType(textEditingDeltas)._eval$1("WhereIterable<1>"); if (A.List_List$of(new A.WhereIterable(textEditingDeltas, new A._DocumentImeInteractorState_updateEditingValueWithDeltas_closure(), t3), true, t3._eval$1("Iterable.E")).length !== 0 ? imeValueBeforeChange.$eq(0, _this._currentTextEditingValue) : t2) { t1.log$4(B.Level_FINE_500, "Sending forceful update to IME because our local TextEditingValue didn't change, but the IME may have", _null, _null); _this._inputConnection.toString; t1 = _this._currentTextEditingValue; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, "_channel").invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), type$.void); } }, performAction$1(action) { $.$get$editorImeLog().log$4(B.Level_FINE_500, "IME says to perform action: " + action.toString$0(0), null, null); this._widget.softwareKeyboardHandler.performAction$1(action); }, performPrivateCommand$2(action, data) { }, showAutocorrectionPromptRect$2(start, end) { }, updateFloatingCursor$1(point) { switch (point.state.index) { case 0: case 1: this._widget.floatingCursorController.set$offset(0, point.offset); break; case 2: this._widget.floatingCursorController.set$offset(0, null); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, insertTextPlaceholder$1(size) { }, removeTextPlaceholder$0() { }, showToolbar$0() { }, connectionClosed$0() { $.$get$editorImeLog().log$4(B.Level_INFO_800, "IME connection closed", null, null); this._inputConnection = null; }, _onKeyPressed$2(node, keyEvent) { var t1, shortcuts, result, instruction, index, _null = null; if (!(keyEvent instanceof A.RawKeyDownEvent)) { $.$get$editorKeyLog().log$4(B.Level_FINER_400, string$.Receiv + A.S(keyEvent), _null, _null); return B.KeyEventResult_0; } t1 = node._context; t1.toString; shortcuts = A.Shortcuts_maybeOf(t1); if (shortcuts != null) { t1 = node._context; t1.toString; result = shortcuts.handleKeypress$2(t1, keyEvent); if (result !== B.KeyEventResult_1) return result; } $.$get$editorKeyLog().log$4(B.Level_INFO_800, "Handling key press: " + keyEvent.toString$0(0), _null, _null); instruction = B.ExecutionInstruction_0; index = 0; while (true) { if (instruction === B.ExecutionInstruction_0) { this._widget.toString; t1 = index < 23; } else t1 = false; if (!t1) break; t1 = this._widget; instruction = t1.hardwareKeyboardActions[index].call$2$editContext$keyEvent(t1.editContext, keyEvent); ++index; } switch (instruction) { case B.ExecutionInstruction_2: return B.KeyEventResult_0; case B.ExecutionInstruction_0: case B.ExecutionInstruction_1: return B.KeyEventResult_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var _null = null, t1 = A._lateReadCheck(this.___DocumentImeInteractorState__focusNode, "_focusNode"), t2 = this._widget; return A.Focus$(false, _null, t2.child, _null, _null, _null, t1, true, _null, _null, this.get$_onKeyPressed(), _null, _null); }, $isDeltaTextInputClient: 1 }; A._DocumentImeInteractorState_updateEditingValue_closure.prototype = { call$0() { this.$this._currentTextEditingValue = this.value; }, $signature: 0 }; A._DocumentImeInteractorState_updateEditingValueWithDeltas_closure.prototype = { call$1(element) { return !(element instanceof A.TextEditingDeltaNonTextUpdate); }, $signature: 2891 }; A.DocumentImeSerializer.prototype = { _serialize$0() { var t1, t2, downstreamPosition, t3, t4, characterCount, t5, downstreamPosition0, upstreamIndex, i, node, imeRange, _this = this, _null = null; $.$get$editorImeLog().log$4(B.Level_FINE_500, "Creating an IME model from document and selection", _null, _null); t1 = _this._doc; t2 = _this._document_input_ime$_selection; downstreamPosition = t2.extent; t3 = t1.getNode$1(downstreamPosition); t3.toString; t4 = t1._nodes; if (B.JSArray_methods.indexOf$1(t4, t3) > 0 && J.$eq$(t2.base, downstreamPosition) && J.$eq$(downstreamPosition.nodePosition, t3.get$beginningPosition())) { _this._prependedPlaceholder = ". "; characterCount = 2; t3 = ". "; } else { _this._prependedPlaceholder = ""; characterCount = 0; t3 = ""; } t5 = _this._selectedNodes; B.JSArray_methods.set$length(t5, 0); downstreamPosition0 = t2.base; t2 = t1.getNode$1(A.InspectDocumentSelection_selectUpstreamPosition(t1, downstreamPosition0, downstreamPosition)); t2.toString; upstreamIndex = B.JSArray_methods.indexOf$1(t4, t2); t1 = t1.getNode$1(A.InspectDocumentSelection_selectUpstreamPosition(t1, downstreamPosition0, downstreamPosition).$eq(0, downstreamPosition0) ? downstreamPosition : downstreamPosition0); t1.toString; B.JSArray_methods.addAll$1(t5, B.JSArray_methods.sublist$2(t4, upstreamIndex, B.JSArray_methods.indexOf$1(t4, t1) + 1)); for (t1 = _this._imeRangesToDocTextNodes, t2 = _this._docTextNodesToImeRanges, i = 0; i < t5.length; ++i) { if (i !== 0) { t3 += "\n"; ++characterCount; } node = t5[i]; if (!(node instanceof A.TextNode)) { t3 += "~"; ++characterCount; imeRange = new A.TextRange(characterCount - 1, characterCount); t1.$indexSet(0, imeRange, node.get$id(node)); t2.$indexSet(0, node.get$id(node), imeRange); continue; } imeRange = new A.TextRange(characterCount, characterCount + node._text$_text.text.length); t4 = node.id; t1.$indexSet(0, imeRange, t4); t2.$indexSet(0, t4, imeRange); t4 = node._text$_text.text; t3 += A.S(t4); characterCount += t4.length; } t1 = t3.charCodeAt(0) == 0 ? t3 : t3; _this.__DocumentImeSerializer__imeText = t1; $.$get$editorImeLog().log$4(B.Level_FINE_500, "IME serialization:\n'" + A.S(A._lateReadCheck(t1, "_imeText")) + "'", _null, _null); }, imeToDocumentSelection$1(imeSelection) { var t2, t3, t4, _this = this, _null = null, t1 = $.$get$editorImeLog(); t1.log$4(B.Level_FINE_500, "Creating doc selection from IME selection: " + imeSelection.toString$0(0), _null, _null); t2 = _this._prependedPlaceholder.length; if (t2 !== 0) { t3 = imeSelection.start; t4 = t3 == imeSelection.end; if (!(!t4 && t3 < t2)) t3 = t4 && imeSelection.extentOffset <= t2; else t3 = true; } else t3 = false; if (t3) { t3 = imeSelection.start; t4 = imeSelection.end; if (!(t3 == t4 && imeSelection.extentOffset < t2)) t2 = t3 < t2 && t4 === t2; else t2 = true; if (t2) { t1.log$4(B.Level_FINE_500, "Returning null doc selection", _null, _null); return _null; } else { t1.log$4(B.Level_FINE_500, "Removing arbitrary character from IME selection", _null, _null); t2 = _this._prependedPlaceholder.length; imeSelection = imeSelection.copyWith$2$baseOffset$extentOffset(Math.min(A.checkNum(imeSelection.baseOffset), t2), Math.min(A.checkNum(imeSelection.extentOffset), t2)); t1.log$4(B.Level_FINE_500, "Adjusted IME selection is: " + imeSelection.toString$0(0), _null, _null); } } else t1.log$4(B.Level_FINE_500, "Mapping the IME base/extent to their corresponding doc positions without modification.", _null, _null); return new A.DocumentSelection(_this._imeToDocumentPosition$2$isUpstream(imeSelection.get$base(), imeSelection.get$base().affinity === B.TextAffinity_0), _this._imeToDocumentPosition$2$isUpstream(imeSelection.get$extent(), imeSelection.get$extent().affinity === B.TextAffinity_0)); }, _imeToDocumentPosition$2$isUpstream(imePosition, isUpstream) { var t1, t2, t3, t4, t5, t6, _s67_ = "Couldn't map an IME position to a document position. IME position: "; for (t1 = this._imeRangesToDocTextNodes, t2 = A._instanceType(t1), t3 = t2._eval$1("LinkedHashMapKeyIterable<1>"), t2 = A.LinkedHashMapKeyIterator$(t1, t1._modifications, t2._precomputed1), t4 = imePosition.offset; t2.moveNext$0();) { t5 = t2.__js_helper$_current; t6 = t5.start; if (t4 >= t6 && t4 <= t5.end) { t2 = t1.$index(0, t5); t2.toString; t2 = this._doc.getNodeById$1(t2); t2.toString; if (t2 instanceof A.TextNode) { t2 = t1.$index(0, t5); t2.toString; return new A.DocumentPosition(t2, new A.TextNodePosition(t4 - t6, B.TextAffinity_1)); } else if (t4 <= t6) return new A.DocumentPosition(t2.get$id(t2), t2.get$beginningPosition()); else return new A.DocumentPosition(t2.get$id(t2), t2.get$endPosition()); } } t2 = new A.LinkedHashMapKeyIterable(t1, t3); t3 = new A.LinkedHashMapKeyIterable(t1, t3); $.$get$editorImeLog().log$4(B.Level_SHOUT_1200, _s67_ + imePosition.toString$0(0) + ". The selected offset range is: " + A.S(t2.get$last(t2).start) + " -> " + A.S(t3.get$last(t3).end), null, null); throw A.wrapException(A.Exception_Exception(_s67_ + imePosition.toString$0(0))); }, _documentToImePosition$1(docPosition) { var imeRange, nodePosition, t2, t3, _null = null, t1 = $.$get$editorImeLog(); t1.log$4(B.Level_FINE_500, "Converting DocumentPosition to IME TextPosition: " + A.S(docPosition), _null, _null); imeRange = this._docTextNodesToImeRanges.$index(0, docPosition.nodeId); if (imeRange == null) throw A.wrapException(A.Exception_Exception("No such document position in the IME content: " + docPosition.toString$0(0))); nodePosition = docPosition.nodePosition; if (nodePosition instanceof A.UpstreamDownstreamNodePosition) { t2 = nodePosition.affinity; t3 = imeRange.start; if (t2 === B.TextAffinity_0) { t1.log$4(B.Level_FINE_500, "The doc position is an upstream position on a block.", _null, _null); return new A.TextPosition(t3, B.TextAffinity_1); } else { t1.log$4(B.Level_FINE_500, "The doc position is a downstream position on a block.", _null, _null); return new A.TextPosition(t3 + 1, B.TextAffinity_1); } } if (nodePosition instanceof A.TextNodePosition) return new A.TextPosition(imeRange.start + nodePosition.offset, B.TextAffinity_1); throw A.wrapException(A.Exception_Exception("Super Editor doesn't know how to convert a " + A.S(nodePosition) + " into an IME-compatible selection")); } }; A.ImeConfiguration.prototype = { $eq(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof A.ImeConfiguration) if (A.getRuntimeType(this) === A.getRuntimeType(other)) t1 = true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { return (0 ^ B.JSNull_methods.get$hashCode(null) ^ A.Primitives_objectHashCode(B.TextInputAction_12)) >>> 0; } }; A.SoftwareKeyboardHandler.prototype = { applyDeltas$1(textEditingDeltas) { var t2, _i, delta, t3, t4, _null = null, t1 = $.$get$editorImeLog(); t1.log$4(B.Level_INFO_800, "Applying " + textEditingDeltas.length + " IME deltas to document", _null, _null); for (t2 = textEditingDeltas.length, _i = 0; _i < textEditingDeltas.length; textEditingDeltas.length === t2 || (0, A.throwConcurrentModificationError)(textEditingDeltas), ++_i) { delta = textEditingDeltas[_i]; t1.log$4(B.Level_INFO_800, "Applying delta: " + delta.toString$0(0), _null, _null); if (delta instanceof A.TextEditingDeltaInsertion) this._applyInsertion$1(delta); else if (delta instanceof A.TextEditingDeltaReplacement) this._applyReplacement$1(delta); else if (delta instanceof A.TextEditingDeltaDeletion) { t3 = delta.oldText; t4 = delta.deletedRange; t1.log$4(B.Level_FINE_500, "Delete delta:\nText deleted: '" + J.substring$2$s(t3, t4.start, t4.end) + "'\nDeleted Range: " + t4.toString$0(0) + "\nSelection: " + delta.selection.toString$0(0) + "\nComposing: " + delta.composing.toString$0(0) + "\nOld text: '" + t3 + "'", _null, _null); this.delete$1(0, t4); t1.log$4(B.Level_FINE_500, "Deletion operation complete", _null, _null); } else if (delta instanceof A.TextEditingDeltaNonTextUpdate) { t1.log$4(B.Level_FINE_500, "Non-text change:", _null, _null); t1.log$4(B.Level_FINE_500, "OS-side selection - " + delta.selection.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "OS-side composing - " + delta.composing.toString$0(0), _null, _null); } else t1.log$4(B.Level_SHOUT_1200, "Unknown IME delta type: " + delta.get$runtimeType(delta).toString$0(0), _null, _null); } }, _applyInsertion$1(delta) { var t3, t4, t5, _null = null, t1 = $.$get$editorImeLog(), t2 = delta.textInserted; t1.log$4(B.Level_FINE_500, 'Inserted text: "' + t2 + '"', _null, _null); t3 = delta.insertionOffset; t4 = "" + t3; t1.log$4(B.Level_FINE_500, "Insertion offset: " + t4, _null, _null); t5 = delta.selection; t1.log$4(B.Level_FINE_500, "Selection: " + t5.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "Composing: " + delta.composing.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, 'Old text: "' + A.S(delta.oldText) + '"', _null, _null); if (t2 === "\n") { if (A.defaultTargetPlatform() === B.TargetPlatform_0) { t1.log$4(B.Level_FINE_500, "Received a newline insertion on Android. Forwarding to newline input action.", _null, _null); this.performAction$1(B.TextInputAction_12); } else t1.log$4(B.Level_FINE_500, "Skipping insertion delta because its a newline", _null, _null); return; } t1.log$4(B.Level_FINE_500, "Inserting text: " + t2 + ", insertion offset: " + t4 + ", ime selection: " + t5.toString$0(0), _null, _null); this.insert$2(0, new A.TextPosition(t3, t5.affinity), t2); }, _applyReplacement$1(delta) { var t4, _null = null, t1 = $.$get$editorImeLog(), t2 = delta.oldText, t3 = delta.replacedRange; t1.log$4(B.Level_FINE_500, "Text replaced: '" + J.substring$2$s(t2, t3.start, t3.end) + "'", _null, _null); t4 = delta.replacementText; t1.log$4(B.Level_FINE_500, "Replacement text: '" + t4 + "'", _null, _null); t1.log$4(B.Level_FINE_500, "Replaced range: " + t3.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "Selection: " + delta.selection.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, "Composing: " + delta.composing.toString$0(0), _null, _null); t1.log$4(B.Level_FINE_500, 'Old text: "' + t2 + '"', _null, _null); if (t4 === "\n") { if (A.defaultTargetPlatform() === B.TargetPlatform_0) { t1.log$4(B.Level_FINE_500, "Received a newline replacement on Android. Forwarding to newline input action.", _null, _null); this.performAction$1(B.TextInputAction_12); } else t1.log$4(B.Level_FINE_500, "Skipping replacement delta because its a newline", _null, _null); return; } this.replace$2(0, t3, t4); }, insert$2(_, insertionPosition, textInserted) { var t1, t2, t3, t4, docSerializer, insertionSelection, selectionBeforeInsertion, didInsert, _null = null; if (textInserted === "\n") return; t1 = $.$get$editorImeLog(); t1.log$4(B.Level_FINE_500, 'Inserting "' + textInserted + '" at position "' + insertionPosition.toString$0(0) + '"', _null, _null); t1.log$4(B.Level_FINE_500, "Serializing document to perform IME operation", _null, _null); t2 = this.editor._document; t3 = this.composer; t4 = t3._document_composer$_selection; t4.toString; docSerializer = A.DocumentImeSerializer$(t2, t4); t1.log$4(B.Level_FINE_500, "Converting IME insertion offset into a DocumentSelection", _null, _null); insertionSelection = docSerializer.imeToDocumentSelection$1(A.TextSelection$fromPosition(insertionPosition)); t1.log$4(B.Level_FINE_500, "Updating the Document Composer's selection to place caret at insertion offset:\n" + A.S(insertionSelection), _null, _null); selectionBeforeInsertion = t3._document_composer$_selection; t3.set$selection(insertionSelection); t1.log$4(B.Level_FINE_500, "Inserting the text at the Document Composer's selection", _null, _null); t4 = this.commonOps; didInsert = t4.insertPlainText$1(textInserted); t1.log$4(B.Level_FINE_500, "Insertion successful? " + didInsert, _null, _null); if (!didInsert) { t1.log$4(B.Level_FINE_500, "Failed to insert characters. Restoring previous selection.", _null, _null); t3.set$selection(selectionBeforeInsertion); } t4.convertParagraphByPatternMatching$1(t3._document_composer$_selection.extent.nodeId); }, replace$2(_, replacedRange, replacementText) { var replacementSelection, _this = this, _null = null, t1 = _this.editor._document, t2 = _this.composer, t3 = t2._document_composer$_selection; t3.toString; replacementSelection = A.DocumentImeSerializer$(t1, t3).imeToDocumentSelection$1(A.TextSelection$(B.TextAffinity_1, replacedRange.start, replacedRange.end, false)); if (replacementSelection != null) t2.set$selection(replacementSelection); t1 = $.$get$editorImeLog(); t1.log$4(B.Level_FINE_500, "Replacing selection: " + A.S(replacementSelection), _null, _null); t1.log$4(B.Level_FINE_500, 'With text: "' + replacementText + '"', _null, _null); if (replacementText === "\n") { _this.performAction$1(B.TextInputAction_12); return; } t1 = _this.commonOps; t1.insertPlainText$1(replacementText); t1.convertParagraphByPatternMatching$1(t2._document_composer$_selection.extent.nodeId); }, delete$1(_, deletedRange) { var docSelectionToDelete, node, _this = this, _null = null, t1 = _this.editor._document, t2 = _this.composer, t3 = t2._document_composer$_selection; t3.toString; docSelectionToDelete = A.DocumentImeSerializer$(t1, t3).imeToDocumentSelection$1(A.TextSelection$(B.TextAffinity_1, deletedRange.start, deletedRange.end, false)); t3 = $.$get$editorImeLog(); t3.log$4(B.Level_FINE_500, "Doc selection to delete: " + A.S(docSelectionToDelete), _null, _null); if (docSelectionToDelete == null) { node = t1.getNodeById$1(t2._document_composer$_selection.extent.nodeId); if ((node != null ? B.JSArray_methods.indexOf$1(t1._nodes, node) : -1) > 0) { _this.commonOps.deleteUpstream$0(); t3.log$4(B.Level_FINE_500, "Deleted upstream. New selection: " + A.S(t2._document_composer$_selection), _null, _null); return; } } t3.log$4(B.Level_FINE_500, "Running selection deletion operation", _null, _null); t2.set$selection(docSelectionToDelete); _this.commonOps.deleteSelection$0(); }, performAction$1(action) { var t1; switch (action.index) { case 12: t1 = this.composer._document_composer$_selection; if (!J.$eq$(t1.base, t1.extent)) this.commonOps.deleteSelection$0(); this.commonOps.insertBlockLevelNewline$0(); break; case 0: break; case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 11: case 1: $.$get$editorImeLog().log$4(B.Level_WARNING_900, "User pressed unhandled action button: " + action.toString$0(0), null, null); break; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.KeyboardEditingToolbar.prototype = { _toggleBold$0() { return this._toggleAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold], type$.Attribution)); }, _toggleItalics$0() { return this._toggleAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_italics], type$.Attribution)); }, _toggleUnderline$0() { return this._toggleAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_underline], type$.Attribution)); }, _toggleStrikethrough$0() { return this._toggleAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_strikethrough], type$.Attribution)); }, _doesSelectionHaveAttributions$1(attributions) { var t1 = this.composer, selection = t1._document_composer$_selection; if (selection == null) return false; if (J.$eq$(selection.base, selection.extent)) return t1._preferences._currentAttributions.containsAll$1(attributions); return A.DocumentSelectionWithText_doesSelectedTextContainAttributions(this.document, selection, attributions); }, _toggleAttributions$1(attributions) { var t1, selection = this.composer._document_composer$_selection; if (selection == null) return; t1 = this.commonOps; if (J.$eq$(selection.base, selection.extent)) t1.composer._preferences.toggleStyles$1(attributions); else t1.toggleAttributionsOnSelection$1(attributions); }, _convertToHeader1$0() { var selectedNode = this.document.getNodeById$1(this.composer._document_composer$_selection.extent.nodeId); if (!(selectedNode instanceof A.TextNode)) return; if (selectedNode instanceof A.ListItemNode) this.commonOps.convertToParagraph$1$newMetadata(A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_header1], type$.String, type$.Attribution)); else selectedNode.putMetadataValue$2("blockType", B.NamedAttribution_header1); }, _convertToHeader2$0() { var selectedNode = this.document.getNodeById$1(this.composer._document_composer$_selection.extent.nodeId); if (!(selectedNode instanceof A.TextNode)) return; if (selectedNode instanceof A.ListItemNode) this.commonOps.convertToParagraph$1$newMetadata(A.LinkedHashMap_LinkedHashMap$_literal(["blockType", B.NamedAttribution_header2], type$.String, type$.Attribution)); else selectedNode.putMetadataValue$2("blockType", B.NamedAttribution_header2); }, _convertToParagraph$0() { this.commonOps.convertToParagraph$0(); }, _convertToOrderedListItem$0() { var t1 = this.document.getNodeById$1(this.composer._document_composer$_selection.extent.nodeId); t1.toString; this.commonOps.convertToListItem$2(B.ListItemType_0, type$.TextNode._as(t1)._text$_text); }, _convertToUnorderedListItem$0() { var t1 = this.document.getNodeById$1(this.composer._document_composer$_selection.extent.nodeId); t1.toString; this.commonOps.convertToListItem$2(B.ListItemType_1, type$.TextNode._as(t1)._text$_text); }, _convertToBlockquote$0() { var t1 = this.document.getNodeById$1(this.composer._document_composer$_selection.extent.nodeId); t1.toString; this.commonOps.convertToBlockquote$1(type$.TextNode._as(t1)._text$_text); }, _convertToHr$0() { var t3, t1 = this.composer, t2 = this.document.getNodeById$1(t1._document_composer$_selection.extent.nodeId); t2.toString; type$.TextNode._as(t2); t2.set$text(0, A.AttributedText$(null, "--- ")); t2 = t2.id; t3 = new A.DocumentPosition(t2, B.TextNodePosition_4_TextAffinity_1); t1.set$selection(new A.DocumentSelection(t3, t3)); this.commonOps.convertParagraphByPatternMatching$1(t2); }, _closeKeyboard$0() { this.composer.set$selection(null); }, build$1(_, context) { var brightness, t2, t3, t4, _null = null, t1 = this.composer, selection = t1._document_composer$_selection; if (selection == null) return B.SizedBox_null_null_null_null; brightness = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.platformBrightness; t2 = A.Theme_of(context); t3 = brightness === B.Brightness_1; t2 = t2.copyWith$2$brightness$disabledColor(brightness, t3 ? A.Color$fromARGB(B.JSNumber_methods.round$0(127.5), 0, 0, 0) : A.Color$fromARGB(B.JSNumber_methods.round$0(127.5), 255, 255, 255)); t4 = t3 ? B.Color_4278190080 : B.Color_4294967295; t3 = t3 ? B.Color_4292730333 : B.Color_4280427042; return new A.Theme(t2, A.IconTheme$(A.Material$(B.Duration_200000, true, _null, A.Container$(_null, A.Row$(A._setArrayType([A.Expanded$(A.SingleChildScrollView$(new A.ListenableBuilder(t1, new A.KeyboardEditingToolbar_build_closure(this, selection), _null), _null, B.DragStartBehavior_1, _null, _null, _null, false, B.Axis_0), 1), A.Container$(_null, _null, B.Clip_0, B.Color_4291611852, _null, _null, _null, 32, _null, _null, _null, _null, _null, 1), A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_skt, _null, this.get$_closeKeyboard(), B.EdgeInsets_8_8_8_8, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), B.Clip_0, t3, _null, _null, _null, 48, _null, _null, _null, _null, _null, 1 / 0), B.Clip_0, _null, 0, _null, _null, _null, _null, _null, B.MaterialType_0), new A.IconThemeData(t4, _null, _null, _null), _null), _null); }, get$document(receiver) { return this.document; } }; A.KeyboardEditingToolbar_build_closure.prototype = { call$1(context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, _null = null, _s9_ = "blockType", t1 = this.$this, t2 = this.selection, t3 = t2.extent.nodeId, selectedNode = t1.document.getNodeById$1(t3), isSingleNodeSelected = t3 == t2.base.nodeId; t2 = selectedNode instanceof A.TextNode; t3 = t2 ? t1.get$_toggleBold() : _null; t4 = type$.Attribution; t3 = A.IconButton$(B.Alignment_0_0, t1._doesSelectionHaveAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold], t4)) ? A.Theme_of(context).primaryColor : _null, _null, true, B.Icon_8kG, _null, t3, B.EdgeInsets_8_8_8_8, _null, _null, _null); t5 = t2 ? t1.get$_toggleItalics() : _null; t5 = A.IconButton$(B.Alignment_0_0, t1._doesSelectionHaveAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_italics], t4)) ? A.Theme_of(context).primaryColor : _null, _null, true, B.Icon_oqF, _null, t5, B.EdgeInsets_8_8_8_8, _null, _null, _null); t6 = t2 ? t1.get$_toggleUnderline() : _null; t6 = A.IconButton$(B.Alignment_0_0, t1._doesSelectionHaveAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_underline], t4)) ? A.Theme_of(context).primaryColor : _null, _null, true, B.Icon_Opy, _null, t6, B.EdgeInsets_8_8_8_8, _null, _null, _null); t7 = t2 ? t1.get$_toggleStrikethrough() : _null; t7 = A.IconButton$(B.Alignment_0_0, t1._doesSelectionHaveAttributions$1(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_strikethrough], t4)) ? A.Theme_of(context).primaryColor : _null, _null, true, B.Icon_IID0, _null, t7, B.EdgeInsets_8_8_8_8, _null, _null, _null); t4 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_bbH, _null, isSingleNodeSelected && t2 && !J.$eq$(selectedNode._metadata.$index(0, _s9_), B.NamedAttribution_header1) ? t1.get$_convertToHeader1() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); t8 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_bbH, 18, isSingleNodeSelected && t2 && !J.$eq$(selectedNode._metadata.$index(0, _s9_), B.NamedAttribution_header2) ? t1.get$_convertToHeader2() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); if (isSingleNodeSelected) { t9 = selectedNode instanceof A.ParagraphNode; if (!(t9 && selectedNode._metadata.$index(0, _s9_) != null)) t9 = t2 && !t9; else t9 = true; } else t9 = false; t10 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_IID1, _null, t9 ? t1.get$_convertToParagraph() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); if (isSingleNodeSelected) if (!(t2 && !(selectedNode instanceof A.ListItemNode))) t9 = selectedNode instanceof A.ListItemNode && selectedNode.type !== B.ListItemType_0; else t9 = true; else t9 = false; t11 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_YoF, _null, t9 ? t1.get$_convertToOrderedListItem() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); if (isSingleNodeSelected) if (!(t2 && !(selectedNode instanceof A.ListItemNode))) t9 = selectedNode instanceof A.ListItemNode && selectedNode.type !== B.ListItemType_1; else t9 = true; else t9 = false; t12 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_ES6, _null, t9 ? t1.get$_convertToUnorderedListItem() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); if (isSingleNodeSelected) if (t2) t2 = !(selectedNode instanceof A.ParagraphNode) || !J.$eq$(selectedNode._metadata.$index(0, _s9_), B.NamedAttribution_blockquote); else t2 = false; else t2 = false; t9 = A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_WPj, _null, t2 ? t1.get$_convertToBlockquote() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null); return A.Row$(A._setArrayType([t3, t5, t6, t7, t4, t8, t10, t11, t12, t9, A.IconButton$(B.Alignment_0_0, _null, _null, true, B.Icon_K4B, _null, isSingleNodeSelected && selectedNode instanceof A.ParagraphNode && selectedNode._text$_text.text.length === 0 ? t1.get$_convertToHr() : _null, B.EdgeInsets_8_8_8_8, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); }, $signature: 2892 }; A.DocumentKeyboardInteractor.prototype = { _document_input_keyboard$_onKeyPressed$2(node, keyEvent) { var t1, shortcuts, result, t2, instruction, index, _null = null; if (!(keyEvent instanceof A.RawKeyDownEvent)) { $.$get$editorKeyLog().log$4(B.Level_FINER_400, string$.Receiv + A.S(keyEvent), _null, _null); return B.KeyEventResult_0; } t1 = node._context; t1.toString; shortcuts = A.Shortcuts_maybeOf(t1); if (shortcuts != null) { t1 = node._context; t1.toString; result = shortcuts.handleKeypress$2(t1, keyEvent); if (result !== B.KeyEventResult_1) return result; } $.$get$editorKeyLog().log$4(B.Level_INFO_800, "Handling key press: " + keyEvent.toString$0(0), _null, _null); t1 = this.keyboardActions; t2 = this.editContext; instruction = B.ExecutionInstruction_0; index = 0; while (true) { if (!(instruction === B.ExecutionInstruction_0 && index < 23)) break; instruction = t1[index].call$2$editContext$keyEvent(t2, keyEvent); ++index; } switch (instruction) { case B.ExecutionInstruction_2: return B.KeyEventResult_0; case B.ExecutionInstruction_0: case B.ExecutionInstruction_1: return B.KeyEventResult_1; default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, build$1(_, context) { var _null = null; return A.Focus$(false, _null, this.child, _null, _null, _null, this.focusNode, true, _null, _null, this.get$_document_input_keyboard$_onKeyPressed(), _null, _null); } }; A.ExecutionInstruction.prototype = { toString$0(_) { return "ExecutionInstruction." + this._core$_name; } }; A.HorizontalRuleNode.prototype = { copyContent$1(selection) { if (!(selection instanceof A.UpstreamDownstreamNodeSelection)) throw A.wrapException(A.Exception_Exception("HorizontalRuleNode can only copy content from a UpstreamDownstreamNodeSelection.")); return !selection.base.$eq(0, selection.extent) ? "---" : null; }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.HorizontalRuleNode && A.getRuntimeType(this) === A.getRuntimeType(other) && this.id === other.id; else t1 = true; return t1; }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.id); }, get$id(receiver) { return this.id; } }; A.HorizontalRuleComponentBuilder.prototype = { createViewModel$2($document, node) { var _null = null; if (!(node instanceof A.HorizontalRuleNode)) return _null; return new A.HorizontalRuleComponentViewModel(_null, B.Color_0, _null, B.Color_0, node.id, _null, B.EdgeInsets_0_0_0_0); }, createComponent$2(componentContext, componentViewModel) { var t1, t2, t3; if (!(componentViewModel instanceof A.HorizontalRuleComponentViewModel)) return null; t1 = componentViewModel.selection; t2 = componentViewModel.selectionColor; t3 = componentViewModel.caret; return new A.HorizontalRuleComponent(componentContext.componentKey, t2, t1, componentViewModel.caretColor, t3 != null, null); }, $isComponentBuilder: 1 }; A.HorizontalRuleComponentViewModel.prototype = { copy$0(_) { var _this = this, t1 = _this.maxWidth, t2 = _this.padding; return new A.HorizontalRuleComponentViewModel(_this.selection, _this.selectionColor, _this.caret, _this.caretColor, _this.nodeId, t1, t2); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$SingleColumnLayoutComponentViewModel$$eq(0, other) && other instanceof A.HorizontalRuleComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && J.$eq$(_this.selection, other.selection) && _this.selectionColor.$eq(0, other.selectionColor) && J.$eq$(_this.caret, other.caret) && _this.caretColor.$eq(0, other.caretColor); else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return (A.SingleColumnLayoutComponentViewModel.prototype.get$hashCode.call(_this, _this) ^ J.get$hashCode$(_this.nodeId) ^ J.get$hashCode$(_this.selection) ^ B.JSInt_methods.get$hashCode(_this.selectionColor.value) ^ J.get$hashCode$(_this.caret) ^ B.JSInt_methods.get$hashCode(_this.caretColor.value)) >>> 0; } }; A.HorizontalRuleComponent.prototype = { build$1(_, context) { var _this = this; return new A.SelectableBox(_this.selection, _this.selectionColor, _this.showCaret, _this.caretColor, new A.BoxComponent(A.Divider$(B.MaterialColor_Map_HFpTk_4288585374, null, 1), _this.componentKey), null); } }; A._HorizontalRuleNode_BlockNode_ChangeNotifier.prototype = {}; A.ImageNode.prototype = { copyContent$1(selection) { if (!(selection instanceof A.UpstreamDownstreamNodeSelection)) throw A.wrapException(A.Exception_Exception("ImageNode can only copy content from a UpstreamDownstreamNodeSelection.")); return !selection.base.$eq(0, selection.extent) ? this._imageUrl : null; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.ImageNode && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.id == other.id && _this._imageUrl == other._imageUrl && _this._altText == other._altText; else t1 = true; return t1; }, get$hashCode(_) { return J.get$hashCode$(this.id) ^ J.get$hashCode$(this._imageUrl) ^ J.get$hashCode$(this._altText); }, get$id(receiver) { return this.id; } }; A.ImageComponentBuilder.prototype = { createViewModel$2($document, node) { var t1, _null = null; if (!(node instanceof A.ImageNode)) return _null; t1 = node.id; return new A.ImageComponentViewModel(node._imageUrl, _null, B.Color_0, _null, B.Color_0, t1, _null, B.EdgeInsets_0_0_0_0); }, createComponent$2(componentContext, componentViewModel) { var t1, t2, t3, t4; if (!(componentViewModel instanceof A.ImageComponentViewModel)) return null; t1 = componentViewModel.imageUrl; t2 = componentViewModel.selection; t3 = componentViewModel.selectionColor; t4 = componentViewModel.caret; return new A.ImageComponent(componentContext.componentKey, t1, t3, t2, componentViewModel.caretColor, t4 != null, null); }, $isComponentBuilder: 1 }; A.ImageComponentViewModel.prototype = { copy$0(_) { var _this = this, t1 = _this.maxWidth, t2 = _this.padding; return new A.ImageComponentViewModel(_this.imageUrl, _this.selection, _this.selectionColor, _this.caret, _this.caretColor, _this.nodeId, t1, t2); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$SingleColumnLayoutComponentViewModel$$eq(0, other) && other instanceof A.ImageComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && _this.imageUrl == other.imageUrl && J.$eq$(_this.selection, other.selection) && _this.selectionColor.$eq(0, other.selectionColor) && J.$eq$(_this.caret, other.caret) && _this.caretColor.$eq(0, other.caretColor); else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return (A.SingleColumnLayoutComponentViewModel.prototype.get$hashCode.call(_this, _this) ^ J.get$hashCode$(_this.nodeId) ^ J.get$hashCode$(_this.imageUrl) ^ J.get$hashCode$(_this.selection) ^ B.JSInt_methods.get$hashCode(_this.selectionColor.value) ^ J.get$hashCode$(_this.caret) ^ B.JSInt_methods.get$hashCode(_this.caretColor.value)) >>> 0; } }; A.ImageComponent.prototype = { build$1(_, context) { var _this = this, _null = null; return A.Center$(new A.SelectableBox(_this.selection, _this.selectionColor, _this.showCaret, _this.caretColor, new A.BoxComponent(A.Image$network(_this.imageUrl, B.BoxFit_1, _null, _null, _null), _this.componentKey), _null), _null, _null); } }; A._ImageNode_BlockNode_ChangeNotifier.prototype = {}; A.SingleColumnDocumentLayout.prototype = { createState$0() { return new A._SingleColumnDocumentLayoutState(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.GlobalKey_State_StatefulWidget), A._setArrayType([], type$.JSArray_GlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A._SingleColumnDocumentLayoutState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = new A.SingleColumnLayoutPresenterChangeListener(_this.get$_onPresenterMarkedDirty(), _this.get$_onViewModelChange()); _this.___SingleColumnDocumentLayoutState__presenterListener = t1; t2 = _this._widget.presenter; t1 = A._lateReadCheck(t1, "_presenterListener"); t2.__presenter$_listeners.add$1(0, t1); _this._widget.presenter.updateViewModel$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s18_ = "_presenterListener"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.presenter; t2 = oldWidget.presenter; if (t1 != t2) { t1 = A._lateReadCheck(_this.___SingleColumnDocumentLayoutState__presenterListener, _s18_); t2.__presenter$_listeners.remove$1(0, t1); t1 = _this._widget.presenter; t2 = A._lateReadCheck(_this.___SingleColumnDocumentLayoutState__presenterListener, _s18_); t1.__presenter$_listeners.add$1(0, t2); } }, dispose$0(_) { var t1 = this._widget.presenter, t2 = A._lateReadCheck(this.___SingleColumnDocumentLayoutState__presenterListener, "_presenterListener"); t1.__presenter$_listeners.remove$1(0, t2); this.super$State$dispose(0); }, _onPresenterMarkedDirty$0() { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$_onPresenterMarkedDirty$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Layout presenter is dirty. Instructing it to update the view model.", null, null); $async$self._widget.presenter.updateViewModel$0(); // implicit return return A._asyncReturn(null, $async$completer); } }); return A._asyncStartSync($async$_onPresenterMarkedDirty$0, $async$completer); }, _onViewModelChange$3$addedComponents$changedComponents$removedComponents(addedComponents, changedComponents, removedComponents) { if (addedComponents.length !== 0 || removedComponents.length !== 0) this.setState$1(new A._SingleColumnDocumentLayoutState__onViewModelChange_closure()); }, _onViewModelChange$0() { return this._onViewModelChange$3$addedComponents$changedComponents$removedComponents(null, null, null); }, getDocumentPositionNearestToOffset$1(rawDocumentOffset) { var componentKey, docBox = type$.RenderBox._as(this._framework$_element.get$renderObject()), documentOffset = new A.Offset(J.clamp$2$n(rawDocumentOffset._dx, 1, Math.max(docBox._box$_size._dx - 1, 1)), rawDocumentOffset._dy); $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "Getting document position near offset: " + documentOffset.toString$0(0), null, null); componentKey = this._findComponentClosestToOffset$1(documentOffset); if (componentKey == null || $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey) == null) return null; return this._getDocumentPositionInComponentNearOffset$2(componentKey, documentOffset); }, _getDocumentPositionInComponentNearOffset$2(componentKey, documentOffset) { var componentPosition, t2, selectionAtOffset, _null = null, component = type$.DocumentComponent_StatefulWidget._as(componentKey.get$currentState()), componentBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey).get$renderObject()), t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_INFO_800, " - found node at position: " + A.S(component), _null, _null); componentPosition = component.getPositionAtOffset$1(this._componentOffset$2(componentBox, documentOffset)); t2 = this._nodeIdsToComponentKeys; selectionAtOffset = new A.DocumentPosition(J.get$key$x(t2.get$entries(t2).firstWhere$1(0, new A._SingleColumnDocumentLayoutState__getDocumentPositionInComponentNearOffset_closure(componentKey))), componentPosition); t1.log$4(B.Level_INFO_800, " - selection at offset: " + selectionAtOffset.toString$0(0), _null, _null); return selectionAtOffset; }, getRectForPosition$1(position) { var componentRect, docOffset, component = this.getComponentByNodeId$1(position.nodeId); if (component == null) { $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "Could not find any component for node position: " + position.toString$0(0), null, null); return null; } componentRect = component.getRectForPosition$1(position.nodePosition); docOffset = A.MatrixUtils_transformPoint(type$.RenderBox._as(component._framework$_element.get$renderObject()).getTransformTo$1(0, this._framework$_element.get$renderObject()), B.Offset_0_0); return componentRect.translate$2(0, docOffset._dx, docOffset._dy); }, getRectForSelection$2(base, extent) { var componentBoundingBoxes, topComponent, selectedNodes, t3, startPosition, endPosition, i, boundingBox, docOffset, _this = this, t1 = base.nodeId, baseComponent = _this.getComponentByNodeId$1(t1), t2 = extent.nodeId, extentComponent = _this.getComponentByNodeId$1(t2); if (baseComponent == null || extentComponent == null) { $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "Could not find base and/or extent position to calculate bounding box for selection. Base: " + base.toString$0(0) + " -> " + A.S(baseComponent) + ", Extent: " + extent.toString$0(0) + " -> " + A.S(extentComponent), null, null); return null; } componentBoundingBoxes = A._setArrayType([], type$.JSArray_Rect); if (t1 == t2) { componentBoundingBoxes.push(extentComponent.getRectForSelection$2(base.nodePosition, extent.nodePosition)); topComponent = extentComponent; } else { selectedNodes = _this._getNodeIdsBetween$2(t1, t2); t3 = _this.getComponentByNodeId$1(B.JSArray_methods.get$first(selectedNodes)); t3.toString; startPosition = J.$eq$(B.JSArray_methods.get$first(selectedNodes), t1) ? base.nodePosition : extent.nodePosition; endPosition = J.$eq$(B.JSArray_methods.get$first(selectedNodes), t2) ? extent.nodePosition : base.nodePosition; for (i = 0; i < selectedNodes.length; ++i) { t1 = _this.getComponentByNodeId$1(selectedNodes[i]); t1.toString; if (i === 0) componentBoundingBoxes.push(t1.getRectForSelection$2(startPosition, t1.getEndPosition$0())); else if (i === selectedNodes.length - 1) componentBoundingBoxes.push(t1.getRectForSelection$2(t1.getBeginningPosition$0(), endPosition)); else componentBoundingBoxes.push(t1.getRectForSelection$2(t1.getBeginningPosition$0(), t1.getEndPosition$0())); } topComponent = t3; } boundingBox = B.JSArray_methods.get$first(componentBoundingBoxes); for (i = 1; i < componentBoundingBoxes.length; ++i) boundingBox.expandToInclude$1(componentBoundingBoxes[i]); docOffset = A.MatrixUtils_transformPoint(type$.RenderBox._as(topComponent._framework$_element.get$renderObject()).getTransformTo$1(0, _this._framework$_element.get$renderObject()), B.Offset_0_0); return boundingBox.translate$2(0, docOffset._dx, docOffset._dy); }, _getNodeIdsBetween$2(baseNodeId, extentNodeId) { var t3, baseComponentIndex, extentComponentIndex, topNodeIndex, componentsInside, t1 = this._nodeIdsToComponentKeys, t2 = t1.$index(0, baseNodeId); t2.toString; t3 = this._topToBottomComponentKeys; baseComponentIndex = B.JSArray_methods.indexOf$1(t3, t2); t1 = t1.$index(0, extentNodeId); t1.toString; extentComponentIndex = B.JSArray_methods.indexOf$1(t3, t1); topNodeIndex = baseComponentIndex <= extentComponentIndex ? baseComponentIndex : extentComponentIndex; componentsInside = B.JSArray_methods.sublist$2(t3, topNodeIndex, (topNodeIndex === baseComponentIndex ? extentComponentIndex : baseComponentIndex) + 1); t1 = A._arrayInstanceType(componentsInside)._eval$1("MappedListIterable<1,String>"); return A.List_List$of(new A.MappedListIterable(componentsInside, new A._SingleColumnDocumentLayoutState__getNodeIdsBetween_closure(this), t1), true, t1._eval$1("ListIterable.E")); }, getDocumentSelectionInRegion$2(baseOffset, extentOffset) { var t2, t3, isDraggingDown, region, t4, t5, t6, t7, t8, t9, t10, bottomNodeExtentPosition, bottomNodeBasePosition, bottomNodeId, topNodeExtentPosition, topNodeBasePosition, topNodeId, _i, componentKey, component, componentOverlap, t11, contentOffset, componentBaseOffset, componentExtentOffset, _this = this, _null = null, t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_INFO_800, "getDocumentSelectionInRegion() - from: " + A.S(baseOffset) + ", to: " + A.S(extentOffset), _null, _null); t2 = baseOffset._dy; t3 = extentOffset._dy; isDraggingDown = t2 < t3; region = A.Rect$fromPoints(baseOffset, extentOffset); for (t4 = _this._topToBottomComponentKeys, t5 = t4.length, t6 = type$.DocumentComponent_StatefulWidget, t7 = _this._nodeIdsToComponentKeys, t8 = type$.RenderBox, t9 = baseOffset._dx, t10 = extentOffset._dx, bottomNodeExtentPosition = _null, bottomNodeBasePosition = bottomNodeExtentPosition, bottomNodeId = bottomNodeBasePosition, topNodeExtentPosition = bottomNodeId, topNodeBasePosition = topNodeExtentPosition, topNodeId = topNodeBasePosition, _i = 0; _i < t4.length; t4.length === t5 || (0, A.throwConcurrentModificationError)(t4), ++_i) { componentKey = t4[_i]; t1.log$4(B.Level_INFO_800, ' - considering component "' + A.S(componentKey) + '"', _null, _null); if (!t6._is(componentKey.get$currentState())) { t1.log$4(B.Level_INFO_800, " - found unknown component: " + A.S(componentKey.get$currentState()), _null, _null); continue; } component = t6._as(componentKey.get$currentState()); componentOverlap = _this._getLocalOverlapWithComponent$2(region, component); if (componentOverlap != null) { t1.log$4(B.Level_INFO_800, " - drag intersects: " + componentKey.toString$0(0) + "}", _null, _null); t1.log$4(B.Level_INFO_800, " - intersection: " + componentOverlap.toString$0(0), _null, _null); t11 = t8._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey).get$renderObject()); contentOffset = A.MatrixUtils_transformPoint(t11.getTransformTo$1(0, t8._as(_this._framework$_element.get$renderObject())), B.Offset_0_0); t11 = t11._box$_size; t11._dx; t11._dy; componentBaseOffset = new A.Offset(t9 - contentOffset._dx, t2 - contentOffset._dy); t11 = t8._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey).get$renderObject()); contentOffset = A.MatrixUtils_transformPoint(t11.getTransformTo$1(0, t8._as(_this._framework$_element.get$renderObject())), B.Offset_0_0); t11 = t11._box$_size; t11._dx; t11._dy; componentExtentOffset = new A.Offset(t10 - contentOffset._dx, t3 - contentOffset._dy); if (topNodeId == null) { topNodeId = J.get$key$x(t7.get$entries(t7).firstWhere$1(0, new A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure(componentKey))); topNodeBasePosition = component.getPositionAtOffset$1(componentBaseOffset); topNodeExtentPosition = component.getPositionAtOffset$1(componentExtentOffset); } bottomNodeId = J.get$key$x(t7.get$entries(t7).firstWhere$1(0, new A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure0(componentKey))); bottomNodeBasePosition = component.getPositionAtOffset$1(componentBaseOffset); bottomNodeExtentPosition = component.getPositionAtOffset$1(componentExtentOffset); } } if (topNodeId == null || bottomNodeId == null) return _null; if (topNodeId === bottomNodeId) return new A.DocumentSelection(new A.DocumentPosition(topNodeId, topNodeBasePosition), new A.DocumentPosition(bottomNodeId, topNodeExtentPosition)); else { t1 = isDraggingDown ? topNodeId : bottomNodeId; t2 = isDraggingDown ? topNodeBasePosition : bottomNodeBasePosition; t3 = isDraggingDown ? bottomNodeId : topNodeId; t4 = isDraggingDown ? bottomNodeExtentPosition : topNodeExtentPosition; return new A.DocumentSelection(new A.DocumentPosition(t1, t2), new A.DocumentPosition(t3, t4)); } }, _getLocalOverlapWithComponent$2(region, component) { var componentBox = type$.RenderBox._as(component._framework$_element.get$renderObject()), contentOffset = A.MatrixUtils_transformPoint(componentBox.getTransformTo$1(0, this._framework$_element.get$renderObject()), B.Offset_0_0), t1 = componentBox._box$_size, t2 = contentOffset._dx, t3 = contentOffset._dy; if (region.overlaps$1(new A.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy))) return region.translate$2(0, -t2, -t3); else return null; }, getDesiredCursorAtOffset$1(documentOffset) { var componentOffset, componentKey = this._findComponentAtOffset$1(documentOffset); if (componentKey == null || $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey) == null || $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey).get$renderObject() == null) return null; componentOffset = this._componentOffset$2(type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, componentKey).get$renderObject()), documentOffset); return type$.DocumentComponent_StatefulWidget._as(componentKey.get$currentState()).getDesiredCursorAtOffset$1(componentOffset); }, _findComponentAtOffset$1(documentOffset) { var t1, t2, t3, t4, textBox, contentOffset, t5, t6, t7; for (t1 = this._nodeIdsToComponentKeys, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")), t1 = type$.RenderBox, t3 = type$.DocumentComponent_StatefulWidget; t2.moveNext$0();) { t4 = t2.__internal$_current; if (!t3._is(t4.get$currentState())) continue; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4) == null || $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject() == null) continue; textBox = t1._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject()); contentOffset = A.MatrixUtils_transformPoint(textBox.getTransformTo$1(0, t1._as(this._framework$_element.get$renderObject())), B.Offset_0_0); t5 = textBox._box$_size; t6 = contentOffset._dx; t7 = contentOffset._dy; if (new A.Rect(t6, t7, t6 + t5._dx, t7 + t5._dy).contains$1(0, documentOffset)) return t4; } return null; }, _findComponentClosestToOffset$1(documentOffset) { var t1, t2, t3, nearestComponentKey, nearestDistance, nearestComponentKey0, componentBox, contentOffset, t4, t5, t6, distance; for (t1 = this._nodeIdsToComponentKeys, t1 = t1.get$values(t1), t2 = A._instanceType(t1), t2 = new A.MappedIterator(J.get$iterator$ax(t1.__internal$_iterable), t1._f, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MappedIterator<1,2>")), t1 = type$.RenderBox, t3 = type$.DocumentComponent_StatefulWidget, nearestComponentKey = null, nearestDistance = 1 / 0; t2.moveNext$0();) { nearestComponentKey0 = t2.__internal$_current; if (!t3._is(nearestComponentKey0.get$currentState())) continue; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, nearestComponentKey0) == null || $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, nearestComponentKey0).get$renderObject() == null) continue; componentBox = t1._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, nearestComponentKey0).get$renderObject()); contentOffset = A.MatrixUtils_transformPoint(componentBox.getTransformTo$1(0, t1._as(this._framework$_element.get$renderObject())), B.Offset_0_0); t4 = componentBox._box$_size; t5 = contentOffset._dx; t6 = contentOffset._dy; if (new A.Rect(t5, t6, t5 + t4._dx, t6 + t4._dy).contains$1(0, documentOffset)) return nearestComponentKey0; distance = this._getDistanceToComponent$2(componentBox, documentOffset); if (distance < nearestDistance) { nearestDistance = distance; nearestComponentKey = nearestComponentKey0; } } return nearestComponentKey; }, _getDistanceToComponent$2(componentBox, documentOffset) { var t2, t3, componentOffset = A.MatrixUtils_transformPoint(componentBox.getTransformTo$1(0, type$.RenderBox._as(this._framework$_element.get$renderObject())), B.Offset_0_0), t1 = componentBox._box$_size; componentOffset._dx; t2 = componentOffset._dy; t1._dx; t1 = t2 + t1._dy; t3 = documentOffset._dy; if (t3 < t2) return t2 - t3; else if (t3 > t1) return t3 - t1; else return 0; }, _componentOffset$2(componentBox, documentOffset) { var contentOffset = A.MatrixUtils_transformPoint(componentBox.getTransformTo$1(0, type$.RenderBox._as(this._framework$_element.get$renderObject())), B.Offset_0_0), t1 = componentBox._box$_size; t1._dx; t1._dy; return documentOffset.$sub(0, new A.Offset(contentOffset._dx, contentOffset._dy)); }, getComponentByNodeId$1(nodeId) { var t1, t2, t3, t4, _null = null, key = this._nodeIdsToComponentKeys.$index(0, nodeId); if (key == null) { $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "WARNING: could not find component for node ID: " + A.S(nodeId), _null, _null); return _null; } t1 = type$.DocumentComponent_StatefulWidget; if (!t1._is(key.get$currentState())) { t1 = $.$get$editorLayoutLog(); t2 = key.toString$0(0); t3 = A.S(key.get$currentState()); t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key); if (t4 == null) t4 = _null; else { t4 = t4._widget; t4.toString; } t1.log$4(B.Level_INFO_800, "WARNING: found component but it's not a DocumentComponent: " + A.S(nodeId) + ", layout key: " + t2 + ", state: " + t3 + ", widget: " + A.S(t4) + ", context: " + A.S($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key)), _null, _null); return _null; } return t1._as(key.get$currentState()); }, build$1(_, context) { var _null = null; $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Building document layout", _null, _null); return new A.Padding(A._lateReadCheck(this._widget.presenter.__SingleColumnLayoutPresenter__viewModel, "_viewModel").padding, A.Column$(this._buildDocComponents$0(), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null); }, _buildDocComponents$0() { var docComponents, newComponentKeys, t2, t3, t4, t5, t6, _i, t7, t8, componentKey, _this = this, _null = null, t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_FINE_500, "Building all document layout components", _null, _null); docComponents = A._setArrayType([], type$.JSArray_Widget); newComponentKeys = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.GlobalKey_State_StatefulWidget); t2 = _this._topToBottomComponentKeys; B.JSArray_methods.set$length(t2, 0); t3 = A._lateReadCheck(_this._widget.presenter.__SingleColumnLayoutPresenter__viewModel, "_viewModel"); t1.log$4(B.Level_FINE_500, "Rendering layout view model: " + A.Primitives_objectHashCode(t3), _null, _null); for (t3 = t3._componentViewModels, t4 = t3.length, t5 = type$.LabeledGlobalKey_State_StatefulWidget, t6 = _this._nodeIdsToComponentKeys, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { t7 = t3[_i].nodeId; if (t6.containsKey$1(0, t7)) { t8 = t6.$index(0, t7); t8.toString; newComponentKeys.$indexSet(0, t7, t8); } else newComponentKeys.$indexSet(0, t7, new A.LabeledGlobalKey(_null, t5)); componentKey = newComponentKeys.$index(0, t7); t1.log$4(B.Level_FINER_400, "Node -> Key: " + A.S(t7) + " -> " + componentKey.toString$0(0), _null, _null); t2.push(componentKey); docComponents.push(new A._PresenterComponentBuilder(_this._widget.presenter, t7, new A._SingleColumnDocumentLayoutState__buildDocComponents_closure(_this, componentKey), _null)); } t6.clear$0(0); t6.addAll$1(0, newComponentKeys); t1.log$4(B.Level_FINER_400, " - keys -> IDs after building all components:", _null, _null); t6.forEach$1(0, new A._SingleColumnDocumentLayoutState__buildDocComponents_closure0()); return docComponents; }, $isDocumentLayout: 1 }; A._SingleColumnDocumentLayoutState__onViewModelChange_closure.prototype = { call$0() { }, $signature: 0 }; A._SingleColumnDocumentLayoutState__getDocumentPositionInComponentNearOffset_closure.prototype = { call$1(element) { return J.$eq$(element.get$value(element), this.componentKey); }, $signature: 307 }; A._SingleColumnDocumentLayoutState__getNodeIdsBetween_closure.prototype = { call$1(componentKey) { var t1 = this.$this._nodeIdsToComponentKeys; return J.get$key$x(t1.get$entries(t1).firstWhere$1(0, new A._SingleColumnDocumentLayoutState__getNodeIdsBetween__closure(componentKey))); }, $signature: 2895 }; A._SingleColumnDocumentLayoutState__getNodeIdsBetween__closure.prototype = { call$1(entry) { return J.$eq$(entry.get$value(entry), this.componentKey); }, $signature: 307 }; A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure.prototype = { call$1(element) { return J.$eq$(element.get$value(element), this.componentKey); }, $signature: 307 }; A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure0.prototype = { call$1(element) { return J.$eq$(element.get$value(element), this.componentKey); }, $signature: 307 }; A._SingleColumnDocumentLayoutState__buildDocComponents_closure.prototype = { call$2(context, newComponentViewModel) { return new A._Component(this.$this._widget.componentBuilders, this.componentKey, newComponentViewModel, null); }, $signature: 2896 }; A._SingleColumnDocumentLayoutState__buildDocComponents_closure0.prototype = { call$2(key, value) { $.$get$editorLayoutLog().log$4(B.Level_FINER_400, " - " + A.S(key) + ": " + A.S(value), null, null); }, $signature: 2897 }; A._PresenterComponentBuilder.prototype = { createState$0() { return new A._PresenterComponentBuilderState(B._StateLifecycle_0); }, builder$2(arg0, arg1) { return this.builder.call$2(arg0, arg1); } }; A._PresenterComponentBuilderState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = new A.SingleColumnLayoutPresenterChangeListener(null, _this.get$_onViewModelChange()); _this.___PresenterComponentBuilderState__presenterListener = t1; t2 = _this._widget.presenter; t1 = A._lateReadCheck(t1, "_presenterListener"); t2.__presenter$_listeners.add$1(0, t1); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this, _s18_ = "_presenterListener"; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.presenter; t2 = oldWidget.presenter; if (t1 != t2) { t1 = A._lateReadCheck(_this.___PresenterComponentBuilderState__presenterListener, _s18_); t2.__presenter$_listeners.remove$1(0, t1); t1 = _this._widget.presenter; t2 = A._lateReadCheck(_this.___PresenterComponentBuilderState__presenterListener, _s18_); t1.__presenter$_listeners.add$1(0, t2); } }, dispose$0(_) { var t1 = this._widget.presenter, t2 = A._lateReadCheck(this.___PresenterComponentBuilderState__presenterListener, "_presenterListener"); t1.__presenter$_listeners.remove$1(0, t2); this.super$State$dispose(0); }, _onViewModelChange$3$addedComponents$changedComponents$removedComponents(addedComponents, changedComponents, removedComponents) { if (B.JSArray_methods.contains$1(changedComponents, this._widget.watchNode)) this.setState$1(new A._PresenterComponentBuilderState__onViewModelChange_closure()); }, _onViewModelChange$0() { return this._onViewModelChange$3$addedComponents$changedComponents$removedComponents(null, null, null); }, build$1(_, context) { var t1, t2, _this = this; $.$get$editorLayoutLog().log$4(B.Level_FINEST_300, "Building component: " + A.S(_this._widget.watchNode), null, null); t1 = A._lateReadCheck(_this._widget.presenter.__SingleColumnLayoutPresenter__viewModel, "_viewModel"); t2 = _this._widget.watchNode; t2 = t1._viewModelsByNodeId.$index(0, t2); t2.toString; return _this._widget.builder$2(context, t2); } }; A._PresenterComponentBuilderState__onViewModelChange_closure.prototype = { call$0() { }, $signature: 0 }; A._Component.prototype = { build$1(_, context) { var t1, t2, t3, _i, component, _null = null, componentContext = new A.SingleColumnDocumentComponentContext(context, this.componentKey); for (t1 = this.componentBuilders, t2 = t1.length, t3 = this.componentViewModel, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { component = t1[_i].createComponent$2(componentContext, t3); if (component != null) { t1 = t3.maxWidth; if (t1 == null) t1 = 1 / 0; t2 = t3.padding; return new A.ConstrainedBox(new A.BoxConstraints(0, t1, 0, 1 / 0), new A.SizedBox(1 / 0, _null, new A.Padding(t2, component, _null), _null), _null); } } return B.SizedBox_null_null_null_null; } }; A.SingleColumnDocumentComponentContext.prototype = {}; A.SingleColumnLayoutPresenter.prototype = { dispose$0(_) { var _this = this; _this.__presenter$_listeners.clear$0(0); _this.__presenter$_document.removeListener$1(0, _this.get$__presenter$_onDocumentChange()); _this._disassemblePipeline$0(); }, __presenter$_onDocumentChange$0() { var t1, t2, _this = this; $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "The document changed. Marking the presenter dirty.", null, null); t1 = _this._earliestDirtyPhase; t2 = _this._pipeline.length; _this._earliestDirtyPhase = 0; if (t1 >= t2) for (t1 = _this.__presenter$_listeners, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current.__presenter$_onPresenterMarkedDirty; if (t2 != null) t2.call$0(); } }, _assemblePipeline$0() { var t1, t2, i; for (t1 = this._pipeline, t2 = this._phaseViewModels, i = 0; i < t1.length; ++i) { t2.push(null); t1[i]._dirtyCallback = new A.SingleColumnLayoutPresenter__assemblePipeline_closure(this, i); } }, _disassemblePipeline$0() { var t1, t2, _i; for (t1 = this._pipeline, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) J.dispose$0$x(t1[_i]); }, updateViewModel$0() { var t2, t3, _this = this, _null = null, _s10_ = "_viewModel", t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_INFO_800, "Calculating an updated view model for document layout.", _null, _null); t2 = _this._earliestDirtyPhase; t3 = _this._pipeline.length; if (t2 === t3) { t1.log$4(B.Level_FINE_500, "The presenter is already up to date", _null, _null); return; } t1.log$4(B.Level_FINE_500, "Earliest dirty phase is: " + t2 + ". Phase count: " + t3, _null, _null); t2 = A._lateReadCheck(_this.__SingleColumnLayoutPresenter__viewModel, _s10_); _this.__SingleColumnLayoutPresenter__viewModel = _this._createNewViewModel$0(); t1.log$4(B.Level_INFO_800, "Done calculating new document layout view model", _null, _null); _this._notifyListenersOfChanges$2$newViewModel$oldViewModel(A._lateReadCheck(_this.__SingleColumnLayoutPresenter__viewModel, _s10_), t2); }, _createNewViewModel$0() { var t1, newViewModel, components, t2, t3, i, t4, component, _i, t5, _this = this, _null = null; $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Running layout presenter pipeline", _null, _null); t1 = _this._earliestDirtyPhase; newViewModel = t1 > 0 && t1 < _this._phaseViewModels.length ? _this._phaseViewModels[t1 - 1] : _null; if (newViewModel == null) { components = A._setArrayType([], type$.JSArray_SingleColumnLayoutComponentViewModel); for (t1 = _this.__presenter$_document, t2 = t1._nodes, t3 = _this._componentBuilders, i = 0; i < t2.length; ++i) { for (t4 = t3.length, component = _null, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { component = t3[_i].createViewModel$2(t1, t2[i]); if (component != null) break; } if (component == null) throw A.wrapException(A.Exception_Exception("Couldn't find styler to create component for document node: " + A.S(t2[i]))); components.push(component); } newViewModel = A.SingleColumnLayoutViewModel$(components, B.EdgeInsets_0_0_0_0); } for (i = _this._earliestDirtyPhase, t1 = _this._pipeline, t2 = _this.__presenter$_document, t3 = _this._phaseViewModels; t4 = t1.length, i < t4; ++i) { t4 = $.$get$editorLayoutLog(); t5 = "" + i; t4.log$4(B.Level_FINE_500, "Running phase " + t5 + ": " + A.S(t1[i]), _null, _null); newViewModel = J.style$2$x(t1[i], t2, newViewModel); t4.log$4(B.Level_FINE_500, "Storing phase " + t5 + " view model", _null, _null); t3[i] = newViewModel; } _this._earliestDirtyPhase = t4; return newViewModel; }, _notifyListenersOfChanges$2$newViewModel$oldViewModel(newViewModel, oldViewModel) { var nodeIdToComponentMap, changeMap, t2, _i, oldComponent, nodeId, newComponent, t3, rti, _null = null, t1 = type$.JSArray_String, addedComponents = A._setArrayType([], t1), removedComponents = A._setArrayType([], t1), changedComponents = A._setArrayType([], t1); t1 = type$.String; nodeIdToComponentMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.SingleColumnLayoutComponentViewModel); changeMap = A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.int); for (t1 = oldViewModel._componentViewModels, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { oldComponent = t1[_i]; nodeId = oldComponent.nodeId; nodeIdToComponentMap.$indexSet(0, nodeId, oldComponent); changeMap.$indexSet(0, nodeId, -1); } for (t1 = newViewModel._componentViewModels, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { newComponent = t1[_i]; nodeId = newComponent.nodeId; if (nodeIdToComponentMap.containsKey$1(0, nodeId)) if (J.$eq$(nodeIdToComponentMap.$index(0, nodeId), newComponent)) changeMap.$indexSet(0, nodeId, 0); else { t3 = J.get$runtimeType$(nodeIdToComponentMap.$index(0, nodeId)); rti = newComponent instanceof A.Closure ? A.closureFunctionType(newComponent) : _null; if (t3 === A.createRuntimeType(rti == null ? A.instanceType(newComponent) : rti)) changeMap.$indexSet(0, nodeId, 1); else { changeMap.$indexSet(0, nodeId, -1); $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Component node changed type. Assuming this is a removal: " + A.S(nodeId), _null, _null); } } else changeMap.$indexSet(0, nodeId, 2); } for (t1 = changeMap.get$entries(changeMap), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); switch (t2.get$value(t2)) { case -1: removedComponents.push(t2.get$key(t2)); break; case 0: break; case 1: changedComponents.push(t2.get$key(t2)); break; case 2: addedComponents.push(t2.get$key(t2)); break; default: break; } } if (addedComponents.length === 0 && changedComponents.length === 0 && removedComponents.length === 0) { $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Nothing has changed in the view model. Not notifying any listeners.", _null, _null); return; } t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_FINE_500, "Notifying layout presenter listeners of changes:", _null, _null); t1.log$4(B.Level_FINE_500, " - added: " + A.S(addedComponents), _null, _null); t1.log$4(B.Level_FINE_500, " - changed: " + A.S(changedComponents), _null, _null); t1.log$4(B.Level_FINE_500, " - removed: " + A.S(removedComponents), _null, _null); for (t1 = this.__presenter$_listeners, t1 = A.List_List$of(t1, true, A._instanceType(t1)._eval$1("SetMixin.E")), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].__presenter$_onViewModelChange.call$3$addedComponents$changedComponents$removedComponents(addedComponents, changedComponents, removedComponents); } }; A.SingleColumnLayoutPresenter__assemblePipeline_closure.prototype = { call$0() { var phaseIndex = this.i, t1 = this.$this, t2 = t1._earliestDirtyPhase, t3 = t1._pipeline.length; if (phaseIndex < t2) t1._earliestDirtyPhase = phaseIndex; $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "Presenter phase (" + phaseIndex + ") is dirty.", null, null); if (t2 >= t3) for (t1 = t1.__presenter$_listeners, t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications, A._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current.__presenter$_onPresenterMarkedDirty; if (t2 != null) t2.call$0(); } }, $signature: 0 }; A.SingleColumnLayoutPresenterChangeListener.prototype = {}; A.SingleColumnLayoutStylePhase.prototype = { dispose$0(_) { this._dirtyCallback = null; }, markDirty$0() { $.$get$editorLayoutLog().log$4(B.Level_INFO_800, "Marking a layout phase as dirty: " + A.getRuntimeType(this).toString$0(0), null, null); var t1 = this._dirtyCallback; if (t1 != null) t1.call$0(); } }; A.SingleColumnLayoutViewModel.prototype = { SingleColumnLayoutViewModel$2$componentViewModels$padding(componentViewModels, padding) { var t1, t2, t3, _i, componentViewModel; for (t1 = this._componentViewModels, t2 = t1.length, t3 = this._viewModelsByNodeId, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { componentViewModel = t1[_i]; t3.$indexSet(0, componentViewModel.nodeId, componentViewModel); } } }; A.SingleColumnLayoutComponentViewModel.prototype = { applyStyles$1(styles) { var t2, t3, t4, t1 = styles.$index(0, "maxWidth"); this.maxWidth = t1 == null ? 1 / 0 : t1; t1 = type$.nullable_CascadingPadding._as(styles.$index(0, "padding")); if (t1 == null) t1 = null; else { t2 = t1.left; if (t2 == null) t2 = 0; t3 = t1.right; if (t3 == null) t3 = 0; t4 = t1.top; if (t4 == null) t4 = 0; t1 = t1.bottom; t1 = new A.EdgeInsets(t2, t4, t3, t1 == null ? 0 : t1); } this.padding = t1 == null ? B.EdgeInsets_0_0_0_0 : t1; }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.SingleColumnLayoutComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && _this.maxWidth == other.maxWidth && _this.padding.$eq(0, other.padding); else t1 = true; return t1; }, get$hashCode(_) { var t1 = J.get$hashCode$(this.nodeId), t2 = J.get$hashCode$(this.maxWidth), t3 = this.padding; return t1 ^ t2 ^ t3.get$hashCode(t3); } }; A.SingleColumnLayoutCustomComponentStyler.prototype = { style$2(_, $document, viewModel) { var t2, t3, t4, _i, previousViewModel, t5, t6, componentStyles, _null = null, t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_INFO_800, "(Re)calculating custom component styles view model for document layout", _null, _null); t2 = A._setArrayType([], type$.JSArray_SingleColumnLayoutComponentViewModel); for (t3 = viewModel._componentViewModels, t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, A.throwConcurrentModificationError)(t3), ++_i) { previousViewModel = t3[_i]; t5 = $document.getNodeById$1(previousViewModel.nodeId); t5.toString; t6 = previousViewModel.copy$0(0); componentStyles = A.SingleColumnLayoutComponentStyles_SingleColumnLayoutComponentStyles$fromMetadata(t5); t5 = componentStyles.width; t6.maxWidth = t5 == null ? t6.maxWidth : t5; t5 = componentStyles.padding; t6.padding = t5 == null ? t6.padding : t5; t1.log$4(B.Level_WARNING_900, "Tried to apply custom component styles to unknown layout component view model: " + t6.toString$0(0), _null, _null); t2.push(t6); } return A.SingleColumnLayoutViewModel$(t2, viewModel.padding); } }; A.SingleColumnLayoutComponentStyles.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.SingleColumnLayoutComponentStyles && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.width == other.width && J.$eq$(_this.padding, other.padding); else t1 = true; return t1; }, get$hashCode(_) { return J.get$hashCode$(this.width) ^ J.get$hashCode$(this.padding); } }; A.SingleColumnStylesheetStyler.prototype = { set$stylesheet(newStylesheet) { if (newStylesheet == this._stylesheet) return; this._stylesheet = newStylesheet; this.markDirty$0(); }, style$2(_, $document, viewModel) { var t1, t2, t3, _i, componentViewModel, t4; this._stylesheet.toString; t1 = A._setArrayType([], type$.JSArray_SingleColumnLayoutComponentViewModel); for (t2 = viewModel._componentViewModels, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) { componentViewModel = t2[_i]; t4 = $document.getNodeById$1(componentViewModel.nodeId); t4.toString; t1.push(this._styleComponent$3($document, t4, componentViewModel.copy$0(0))); } return A.SingleColumnLayoutViewModel$(t1, viewModel.padding); }, _styleComponent$3($document, node, viewModel) { var t1, _i, rule, aggregateStyles = A.LinkedHashMap_LinkedHashMap$_literal(["inlineTextStyler", this._stylesheet.inlineTextStyler], type$.String, type$.dynamic); for (t1 = this._stylesheet.rules, _i = 0; _i < 10; ++_i) { rule = t1[_i]; if (rule.selector.matches$2(0, $document, node)) this._mergeStyles$2$existingStyles$newStyles(aggregateStyles, rule.styler.call$2($document, node)); } viewModel.applyStyles$1(aggregateStyles); return viewModel; }, _mergeStyles$2$existingStyles$newStyles(existingStyles, newStyles) { var t1, t2, oldValue, newValue, t3, t4, t5, t6; for (t1 = J.get$entries$x(newStyles), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); if (existingStyles.containsKey$1(0, t2.get$key(t2))) { oldValue = existingStyles.$index(0, t2.get$key(t2)); newValue = t2.get$value(t2); if (oldValue instanceof A.TextStyle && newValue instanceof A.TextStyle) existingStyles.$indexSet(0, t2.get$key(t2), oldValue.merge$1(newValue)); else if (oldValue instanceof A.CascadingPadding && newValue instanceof A.CascadingPadding) { t2 = t2.get$key(t2); t3 = newValue.left; if (t3 == null) t3 = oldValue.left; t4 = newValue.right; if (t4 == null) t4 = oldValue.right; t5 = newValue.top; if (t5 == null) t5 = oldValue.top; t6 = newValue.bottom; existingStyles.$indexSet(0, t2, new A.CascadingPadding(t3, t4, t5, t6 == null ? oldValue.bottom : t6)); } } else existingStyles.$indexSet(0, t2.get$key(t2), t2.get$value(t2)); } } }; A.SingleColumnLayoutSelectionStyler.prototype = { dispose$0(_) { this.__styler_user_selection$_composer.selectionNotifier.removeListener$1(0, this.get$markDirty()); this.super$SingleColumnLayoutStylePhase$dispose(0); }, set$shouldDocumentShowCaret(newValue) { if (newValue === this._shouldDocumentShowCaret) return; this._shouldDocumentShowCaret = newValue; $.$get$editorLayoutLog().log$4(B.Level_FINE_500, "Change to 'document should show caret': " + newValue, null, null); this.markDirty$0(); }, style$2(_, $document, viewModel) { var t2, t3, _i, _null = null, t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_INFO_800, "(Re)calculating selection view model for document layout", _null, _null); t1.log$4(B.Level_FINE_500, "Applying selection to components: " + A.S(this.__styler_user_selection$_composer._document_composer$_selection), _null, _null); t1 = A._setArrayType([], type$.JSArray_SingleColumnLayoutComponentViewModel); for (t2 = viewModel._componentViewModels, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, A.throwConcurrentModificationError)(t2), ++_i) t1.push(this._applySelection$1(t2[_i].copy$0(0))); return A.SingleColumnLayoutViewModel$(t1, viewModel.padding); }, _applySelection$1(viewModel) { var selectedNodes, exception, nodeSelection, t3, t4, textSelection, showCaret, highlightWhenEmpty, selection, _this = this, _null = null, documentSelection = _this.__styler_user_selection$_composer._document_composer$_selection, t1 = _this.__styler_user_selection$_document, t2 = t1.getNodeById$1(viewModel.nodeId); t2.toString; if (documentSelection != null) { selectedNodes = A._Cell$named("selectedNodes"); try { selectedNodes.__late_helper$_value = t1.getNodesInside$2(documentSelection.base, documentSelection.extent); } catch (exception) { selectedNodes.__late_helper$_value = A._setArrayType([], type$.JSArray_DocumentNode); } nodeSelection = _this._computeNodeSelection$3$documentSelection$node$selectedNodes(documentSelection, t2, selectedNodes._readLocal$0()); } else nodeSelection = _null; t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_FINE_500, "Node selection (" + A.S(t2.get$id(t2)) + "): " + A.S(nodeSelection), _null, _null); if (t2 instanceof A.TextNode) { t3 = nodeSelection == null; t4 = !t3; textSelection = !t4 || !(nodeSelection.nodeSelection instanceof A.TextSelection) ? _null : type$.TextSelection._as(nodeSelection.nodeSelection); if (t4 && !(nodeSelection.nodeSelection instanceof A.TextSelection)) t1.log$4(B.Level_SHOUT_1200, "ERROR: Building a paragraph component but the selection is not a TextSelection. Node: " + A.S(t2.id) + ", Selection: " + A.S(nodeSelection.nodeSelection), _null, _null); showCaret = _this._shouldDocumentShowCaret && t4 && nodeSelection.isExtent; if (t3) highlightWhenEmpty = false; else highlightWhenEmpty = nodeSelection.highlightWhenEmpty && true; t1.log$4(B.Level_FINER_400, " - " + A.S(t2.id) + ": " + A.S(nodeSelection), _null, _null); if (showCaret) t1.log$4(B.Level_FINER_400, " - ^ showing caret", _null, _null); t1.log$4(B.Level_FINER_400, " - building a paragraph with selection:", _null, _null); t2 = textSelection == null; t1.log$4(B.Level_FINER_400, " - base: " + A.S(t2 ? _null : new A.TextNodePosition(textSelection.baseOffset, B.TextAffinity_1)), _null, _null); t1.log$4(B.Level_FINER_400, " - extent: " + A.S(t2 ? _null : new A.TextNodePosition(textSelection.extentOffset, B.TextAffinity_1)), _null, _null); if (type$.TextComponentViewModel._is(viewModel)) { viewModel.set$selection(textSelection); viewModel.set$selectionColor(B.Color_4289515255); if (showCaret) t1 = t2 ? _null : new A.TextNodePosition(textSelection.extentOffset, B.TextAffinity_1); else t1 = _null; viewModel.set$caret(t1); viewModel.set$caretColor(B.Color_4278190080); viewModel.set$highlightWhenEmpty(highlightWhenEmpty); } } if (viewModel instanceof A.ImageComponentViewModel) { selection = nodeSelection == null ? _null : type$.UpstreamDownstreamNodeSelection._as(nodeSelection.nodeSelection); viewModel.selection = selection; viewModel.selectionColor = B.Color_4289515255; viewModel.caret = _this._shouldDocumentShowCaret && selection != null && selection.base.$eq(0, selection.extent) ? selection.extent : _null; viewModel.caretColor = B.Color_4278190080; } if (viewModel instanceof A.HorizontalRuleComponentViewModel) { selection = nodeSelection == null ? _null : type$.UpstreamDownstreamNodeSelection._as(nodeSelection.nodeSelection); viewModel.selection = selection; viewModel.selectionColor = B.Color_4289515255; viewModel.caret = _this._shouldDocumentShowCaret && selection != null && selection.base.$eq(0, selection.extent) ? selection.extent : _null; viewModel.caretColor = B.Color_4278190080; } return viewModel; }, _computeNodeSelection$3$documentSelection$node$selectedNodes(documentSelection, node, selectedNodes) { var baseNodePosition, extentNodePosition, nodeSelection, t2, t3, t4, t5, exception, t6, t7, isBase, _null = null, t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_FINER_400, "_computeNodeSelection(): " + A.S(node.get$id(node)), _null, _null); t2 = documentSelection.base; t3 = t2.nodeId; t1.log$4(B.Level_FINER_400, " - base: " + A.S(t3), _null, _null); t4 = documentSelection.extent; t5 = t4.nodeId; t1.log$4(B.Level_FINER_400, " - extent: " + A.S(t5), _null, _null); if (t3 == t5) { t1.log$4(B.Level_FINER_400, " - selection is within 1 node.", _null, _null); if (t3 != node.get$id(node)) { t1.log$4(B.Level_FINER_400, " - this node is not selected. Returning null.", _null, _null); return _null; } t1.log$4(B.Level_FINER_400, " - this node has the selection", _null, _null); baseNodePosition = t2.nodePosition; extentNodePosition = t4.nodePosition; nodeSelection = A._Cell$named("nodeSelection"); try { nodeSelection.__late_helper$_value = node.computeSelection$2$base$extent(baseNodePosition, extentNodePosition); } catch (exception) { return _null; } t1.log$4(B.Level_FINER_400, " - node selection: " + A.S(nodeSelection._readLocal$0()), _null, _null); return new A.DocumentNodeSelection(node.get$id(node), nodeSelection._readLocal$0(), true, false, type$.DocumentNodeSelection_NodeSelection); } else { t1.log$4(B.Level_FINER_400, " - selection contains multiple nodes:", _null, _null); for (t5 = J.getInterceptor$ax(selectedNodes), t6 = t5.get$iterator(selectedNodes); t6.moveNext$0();) { t7 = t6.get$current(t6); t1.log$4(B.Level_FINER_400, " - " + A.S(t7.get$id(t7)), _null, _null); } if (A.IterableExtension_firstWhereOrNull(selectedNodes, new A.SingleColumnLayoutSelectionStyler__computeNodeSelection_closure(node)) == null) { t1.log$4(B.Level_FINER_400, " - this node is not in the selection", _null, _null); return _null; } if (J.get$id$x(t5.get$first(selectedNodes)) == node.get$id(node)) { t1.log$4(B.Level_FINER_400, " - this is the first node in the selection", _null, _null); isBase = node.get$id(node) == t3; t1 = node.get$id(node); t2 = isBase ? t2.nodePosition : node.get$endPosition(); return new A.DocumentNodeSelection(t1, node.computeSelection$2$base$extent(t2, isBase ? node.get$endPosition() : t4.nodePosition), !isBase, isBase, type$.DocumentNodeSelection_NodeSelection); } else if (J.get$id$x(t5.get$last(selectedNodes)) == node.get$id(node)) { t1.log$4(B.Level_FINER_400, " - this is the last node in the selection", _null, _null); isBase = node.get$id(node) == t3; t1 = node.get$id(node); t3 = isBase ? node.get$beginningPosition() : node.get$beginningPosition(); return new A.DocumentNodeSelection(t1, node.computeSelection$2$base$extent(t3, isBase ? t2.nodePosition : t4.nodePosition), !isBase, isBase, type$.DocumentNodeSelection_NodeSelection); } else { t1.log$4(B.Level_FINER_400, " - this node is fully selected within the selection", _null, _null); return new A.DocumentNodeSelection(node.get$id(node), node.computeSelection$2$base$extent(node.get$beginningPosition(), node.get$endPosition()), false, true, type$.DocumentNodeSelection_NodeSelection); } } } }; A.SingleColumnLayoutSelectionStyler__computeNodeSelection_closure.prototype = { call$1(selectedNode) { var t1 = this.node; return selectedNode.get$id(selectedNode) == t1.get$id(t1); }, $signature: 498 }; A.ListItemNode.prototype = { set$indent(newIndent) { if (newIndent !== this._list_items$_indent) { this._list_items$_indent = newIndent; this.notifyListeners$0(); } }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$TextNode$$eq(0, other) && other instanceof A.ListItemNode && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.type === other.type && _this._list_items$_indent === other._list_items$_indent; else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return (A.TextNode.prototype.get$hashCode.call(_this, _this) ^ A.Primitives_objectHashCode(_this.type) ^ B.JSInt_methods.get$hashCode(_this._list_items$_indent)) >>> 0; } }; A.ListItemType.prototype = { toString$0(_) { return "ListItemType." + this._core$_name; } }; A.ListItemComponentBuilder.prototype = { createViewModel$2($document, node) { var t1, nodeAbove, t2, ordinalValue, nodeIndex, _null = null; if (!(node instanceof A.ListItemNode)) return _null; t1 = node.type; if (t1 === B.ListItemType_0) { nodeAbove = $document.getNodeBefore$1(node); t2 = $document._nodes; ordinalValue = 1; while (true) { if (!(nodeAbove != null && nodeAbove instanceof A.ListItemNode && nodeAbove.type === B.ListItemType_0 && nodeAbove._list_items$_indent >= node._list_items$_indent)) break; if (nodeAbove._list_items$_indent === node._list_items$_indent) ++ordinalValue; nodeIndex = B.JSArray_methods.indexOf$1(t2, nodeAbove); nodeAbove = nodeIndex > 0 ? $document.getNodeAt$1(nodeIndex - 1) : _null; } } else ordinalValue = _null; t2 = node.id; return A.ListItemComponentViewModel$(_null, B.Color_0, node._list_items$_indent, _null, t2, ordinalValue, B.EdgeInsets_0_0_0_0, _null, B.Color_0, node._text$_text, B.TextDirection_1, A._presenter__noStyleBuilder$closure(), t1); }, createComponent$2(componentContext, componentViewModel) { var t1, t2, _null = null; if (!(componentViewModel instanceof A.ListItemComponentViewModel)) return _null; t1 = componentViewModel.type; if (t1 === B.ListItemType_1) return new A.UnorderedListItemComponent(componentContext.componentKey, componentViewModel.text, componentViewModel.textStyleBuilder, componentViewModel.indent, componentViewModel.selection, componentViewModel.selectionColor, componentViewModel.caret != null, componentViewModel.caretColor, componentViewModel.highlightWhenEmpty, _null); else if (t1 === B.ListItemType_0) { t1 = componentViewModel.indent; t2 = componentViewModel.ordinalValue; t2.toString; return new A.OrderedListItemComponent(componentContext.componentKey, t2, componentViewModel.text, componentViewModel.textStyleBuilder, t1, componentViewModel.selection, componentViewModel.selectionColor, componentViewModel.caret != null, componentViewModel.caretColor, componentViewModel.highlightWhenEmpty, _null); } $.$get$editorLayoutLog().log$4(B.Level_WARNING_900, "Tried to build a component for a list item view model without a list item type: " + componentViewModel.toString$0(0), _null, _null); return _null; }, $isComponentBuilder: 1 }; A.ListItemComponentViewModel.prototype = { copy$0(_) { var _this = this, t1 = _this.maxWidth, t2 = _this.padding, t3 = _this.textStyleBuilder, t4 = _this.selection, t5 = _this.selectionColor; return A.ListItemComponentViewModel$(_this.caret, _this.caretColor, _this.indent, t1, _this.nodeId, _this.ordinalValue, t2, t4, t5, _this.text, _this.textDirection, t3, _this.type); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$SingleColumnLayoutComponentViewModel$$eq(0, other) && other instanceof A.ListItemComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && _this.type === other.type && _this.ordinalValue == other.ordinalValue && _this.indent === other.indent && _this.text.$eq(0, other.text) && J.$eq$(_this.textStyleBuilder, other.textStyleBuilder) && _this.textDirection === other.textDirection && J.$eq$(_this.selection, other.selection) && _this.selectionColor.$eq(0, other.selectionColor) && J.$eq$(_this.caret, other.caret) && _this.caretColor.$eq(0, other.caretColor); else t1 = true; return t1; }, get$hashCode(_) { var _this = this, t1 = _this.text; return (A.SingleColumnLayoutComponentViewModel.prototype.get$hashCode.call(_this, _this) ^ J.get$hashCode$(_this.nodeId) ^ A.Primitives_objectHashCode(_this.type) ^ J.get$hashCode$(_this.ordinalValue) ^ B.JSInt_methods.get$hashCode(_this.indent) ^ J.get$hashCode$(t1.text) ^ A.Primitives_objectHashCode(t1.spans.markers) ^ J.get$hashCode$(_this.textStyleBuilder) ^ A.Primitives_objectHashCode(_this.textDirection) ^ J.get$hashCode$(_this.selection) ^ B.JSInt_methods.get$hashCode(_this.selectionColor.value) ^ J.get$hashCode$(_this.caret) ^ B.JSInt_methods.get$hashCode(_this.caretColor.value)) >>> 0; }, set$selection(val) { return this.selection = val; }, set$selectionColor(val) { return this.selectionColor = val; }, set$caret(val) { return this.caret = val; }, set$caretColor(val) { return this.caretColor = val; }, set$highlightWhenEmpty(val) { return this.highlightWhenEmpty = val; } }; A.UnorderedListItemComponent.prototype = { build$1(_, context) { var t3, _this = this, _null = null, t1 = _this.styleBuilder, textStyle = t1.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)), indentSpace = A._defaultIndentCalculator(textStyle, _this.indent), t2 = textStyle.fontSize; t2.toString; t3 = textStyle.height; if (t3 == null) t3 = 1.25; return A.Row$(A._setArrayType([A.Container$(_null, new A.SizedBox(_null, t2 * t3, A._defaultUnorderedListItemDotBuilder(context, _this), _null), B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, _null, _null, _null, _null, B.BoxShape_0), _null, _null, _null, B.EdgeInsets_0_3_0_0, _null, _null, _null, indentSpace), A.Expanded$(A.TextComponent$(_this.caretColor, _this.highlightWhenEmpty, _this.textKey, B.Map_empty4, _this.selectionColor, _this.showCaret, false, _this.text, _null, _null, _this.textSelection, t1), 1)], type$.JSArray_Widget), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.OrderedListItemComponent.prototype = { build$1(_, context) { var t3, lineHeight, _this = this, _null = null, t1 = _this.styleBuilder, textStyle = t1.call$1(A.LinkedHashSet_LinkedHashSet$_empty(type$.Attribution)), indentSpace = A._defaultIndentCalculator(textStyle, _this.indent), t2 = textStyle.fontSize; t2.toString; t3 = textStyle.height; lineHeight = t2 * (t3 == null ? 1 : t3); return A.Row$(A._setArrayType([A.Container$(_null, new A.SizedBox(_null, lineHeight, A._defaultOrderedListItemNumeralBuilder(context, _this), _null), B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, _null, _null, _null, _null, B.BoxShape_0), _null, lineHeight, _null, _null, _null, _null, _null, indentSpace), A.Expanded$(A.TextComponent$(_this.caretColor, _this.highlightWhenEmpty, _this.textKey, B.Map_empty4, _this.selectionColor, _this.showCaret, false, _this.text, _null, _null, _this.textSelection, t1), 1)], type$.JSArray_Widget), B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); } }; A.IndentListItemCommand.prototype = { execute$2($document, transaction) { var listItem = type$.ListItemNode._as($document.getNodeById$1(this.nodeId)), t1 = listItem._list_items$_indent; if (t1 >= 6) { $.$get$_log2().log$2("IndentListItemCommand", "WARNING: Editor does not support an indent level beyond 6."); return; } listItem.set$indent(t1 + 1); } }; A.UnIndentListItemCommand.prototype = { execute$2($document, transaction) { var t1 = this.nodeId, listItem = type$.ListItemNode._as($document.getNodeById$1(t1)), t2 = listItem._list_items$_indent; if (t2 > 0) listItem.set$indent(t2 - 1); else new A.ConvertListItemToParagraphCommand(t1, null).execute$2($document, transaction); } }; A.ConvertListItemToParagraphCommand.prototype = { execute$2($document, transaction) { var listItem = type$.ListItemNode._as($document.getNodeById$1(this.nodeId)), t1 = listItem.id, t2 = listItem._text$_text, t3 = this.paragraphMetadata; transaction._document.replaceNode$2$newNode$oldNode(A.ParagraphNode$(t1, t3 == null ? A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic) : t3, t2), listItem); } }; A.ConvertParagraphToListItemCommand.prototype = { execute$2($document, transaction) { var paragraphNode = type$.ParagraphNode._as($document.getNodeById$1(this.nodeId)); transaction._document.replaceNode$2$newNode$oldNode(A.ListItemNode$(paragraphNode.id, 0, this.type, paragraphNode._text$_text), paragraphNode); } }; A.ChangeListItemTypeCommand.prototype = { execute$2($document, transaction) { var existingListItem = type$.ListItemNode._as($document.getNodeById$1(this.nodeId)); transaction._document.replaceNode$2$newNode$oldNode(A.ListItemNode$(existingListItem.id, 0, this.newType, existingListItem._text$_text), existingListItem); } }; A.SplitListItemCommand.prototype = { execute$2($document, transaction) { var t2, t3, t4, newNode, _s20_ = "SplitListItemCommand", listItemNode = type$.ListItemNode._as($document.getNodeById$1(this.nodeId)), text = listItemNode._text$_text, t1 = this.splitPosition.offset, startText = text.copyText$2(0, t1), endText = t1 < text.text.length ? text.copyText$1(t1) : A.AttributedText$(null, ""); t1 = $.$get$_log2(); t1.log$2(_s20_, "Splitting list item:"); t1.log$2(_s20_, ' - start text: "' + startText.toString$0(0) + '"'); t1.log$2(_s20_, ' - end text: "' + endText.toString$0(0) + '"'); t1.log$2(_s20_, " - changing the original list item text due to split"); listItemNode.set$text(0, startText); t2 = listItemNode.type; t3 = this.newNodeId; t4 = listItemNode._list_items$_indent; newNode = t2 === B.ListItemType_0 ? A.ListItemNode$ordered(t3, t4, endText) : A.ListItemNode$unordered(t3, t4, endText); t1.log$2(_s20_, " - inserting new node in document"); transaction._document.insertNodeAfter$2$existingNode$newNode(listItemNode, newNode); t1.log$2(_s20_, " - inserted new node: " + A.S(newNode.id) + " after old one: " + A.S(listItemNode.id)); } }; A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure.prototype = { call$1(attributions) { var t1 = this.styles, baseStyle = t1.$index(0, "textStyle"); if (baseStyle == null) baseStyle = B.TextStyle_zIQ0; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, $signature: 245 }; A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { this.super$SingleColumnLayoutComponentViewModel$applyStyles(styles); this.textStyleBuilder = new A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(styles); } }; A.DeleteSelectionCommand.prototype = { execute$2($document, transaction) { var t3, t4, nodes, range, startNode, baseNode, t5, startNodePosition, startNodeIndex, t6, endNode, endNodePosition, endNodeIndex, startNodeAfterDeletion, endNodeAfterDeletion, _this = this, _s22_ = "DeleteSelectionCommand", t1 = $.$get$_log(), t2 = _this.documentSelection; t1.log$2(_s22_, "DocumentEditor: deleting selection: " + A.S(t2)); t3 = t2.base; t4 = t2.extent; nodes = $document.getNodesInside$2(t3, t4); if (nodes.length === 1) { _this._deleteSelectionWithinSingleNode$4$document$documentSelection$node$transaction($document, t2, B.JSArray_methods.get$first(nodes), transaction); return; } range = $document.getRangeBetween$2(t3, t4); t2 = range.start; startNode = $document.getNode$1(t2); baseNode = $document.getNode$1(t3); if (startNode == null) throw A.wrapException(A.Exception_Exception("Could not locate start node for DeleteSelectionCommand: " + A.S(t2))); t2 = startNode.get$id(startNode); t5 = t3.nodeId; startNodePosition = t2 == t5 ? t3.nodePosition : t4.nodePosition; t2 = $document._nodes; startNodeIndex = B.JSArray_methods.indexOf$1(t2, startNode); t6 = range.end; endNode = $document.getNode$1(t6); if (endNode == null) throw A.wrapException(A.Exception_Exception("Could not locate end node for DeleteSelectionCommand: " + A.S(t6))); endNodePosition = startNode.get$id(startNode) == t5 ? t4.nodePosition : t3.nodePosition; endNodeIndex = B.JSArray_methods.indexOf$1(t2, endNode); _this._deleteNodesBetweenFirstAndLast$4$document$endNode$startNode$transaction($document, endNode, startNode, transaction); t1.log$2(_s22_, " - deleting partial selection within the starting node."); _this._deleteSelectionWithinNodeFromPositionToEnd$5$document$node$nodePosition$replaceWithParagraph$transaction($document, startNode, startNodePosition, false, transaction); t1.log$2(_s22_, " - deleting partial selection within ending node."); _this._deleteSelectionWithinNodeFromStartToPosition$4$document$node$nodePosition$transaction($document, endNode, endNodePosition, transaction); if ($document.getNodeById$1(startNode.get$id(startNode)) == null && $document.getNodeById$1(endNode.get$id(endNode)) == null) { transaction._document.insertNodeAt$2(Math.min(startNodeIndex, endNodeIndex), A.ParagraphNode$(baseNode.get$id(baseNode), null, A.AttributedText$(null, ""))); return; } startNodeAfterDeletion = $document.getNodeById$1(startNode.get$id(startNode)); endNodeAfterDeletion = $document.getNodeById$1(endNode.get$id(endNode)); if (!(startNodeAfterDeletion instanceof A.TextNode) || !(endNodeAfterDeletion instanceof A.TextNode)) return; t1.log$2(_s22_, " - combining last node text with first node text"); startNodeAfterDeletion.set$text(0, startNodeAfterDeletion._text$_text.copyAndAppend$1(endNodeAfterDeletion._text$_text)); t1.log$2(_s22_, " - deleting last node"); transaction._document.deleteNode$1(endNodeAfterDeletion); t1.log$2(_s22_, " - done with selection deletion"); }, _deleteSelectionWithinSingleNode$4$document$documentSelection$node$transaction($document, documentSelection, node, transaction) { var basePosition, extentPosition, t2, baseOffset, extentOffset, startOffset, endOffset, _s32_ = "_deleteSelectionWithinSingleNode", t1 = $.$get$_log(); t1.log$2(_s32_, " - deleting selection within single node"); basePosition = documentSelection.base.nodePosition; extentPosition = documentSelection.extent.nodePosition; if (basePosition instanceof A.UpstreamDownstreamNodePosition) { if (basePosition.$eq(0, extentPosition)) return; transaction._document.replaceNode$2$newNode$oldNode(A.ParagraphNode$(node.get$id(node), null, A.AttributedText$(null, "")), node); } else if (node instanceof A.TextNode) { t1.log$2(_s32_, " - its a TextNode"); t2 = type$.TextPosition; baseOffset = t2._as(basePosition).offset; extentOffset = t2._as(extentPosition).offset; t2 = baseOffset < extentOffset; startOffset = t2 ? baseOffset : extentOffset; endOffset = t2 ? extentOffset : baseOffset; t1.log$2(_s32_, " - deleting from " + startOffset + " to " + endOffset); node.set$text(0, node._text$_text.removeRegion$2$endOffset$startOffset(endOffset, startOffset)); } }, _deleteNodesBetweenFirstAndLast$4$document$endNode$startNode$transaction($document, endNode, startNode, transaction) { var i, t3, t4, _s31_ = "_deleteNodesBetweenFirstAndLast", t1 = $document._nodes, startIndex = B.JSArray_methods.indexOf$1(t1, startNode), endIndex = B.JSArray_methods.indexOf$1(t1, endNode), t2 = $.$get$_log(); t2.log$2(_s31_, " - start node index: " + startIndex); t2.log$2(_s31_, " - end node index: " + endIndex); t2.log$2(_s31_, " - initially " + t1.length + " nodes"); for (i = endIndex - 1, t1 = transaction._document; i > startIndex; --i) { t3 = "" + i; t4 = $document.getNodeAt$1(i); t4 = t4 == null ? null : t4.get$id(t4); t2.log$2(_s31_, " - deleting node " + t3 + ": " + A.S(t4)); t1.toString; if (i >= 0 && i < t1._nodes.length) { B.JSArray_methods.removeAt$1(t1._nodes, i).removeListener$1(0, t1.get$_forwardNodeChange()); t1.notifyListeners$0(); } else $.$get$editorDocLog().log$4(B.Level_WARNING_900, "Could not delete node. Index out of range: " + t3, null, null); } }, _deleteSelectionWithinNodeFromPositionToEnd$5$document$node$nodePosition$replaceWithParagraph$transaction($document, node, nodePosition, replaceWithParagraph, transaction) { var t1, t2; if (nodePosition instanceof A.UpstreamDownstreamNodePosition) { if (nodePosition.affinity === B.TextAffinity_1) return; this._deleteBlockLevelNode$4$document$node$replaceWithParagraph$transaction($document, node, false, transaction); } else if (nodePosition instanceof A.TextPosition && node instanceof A.TextNode) if (J.$eq$(nodePosition, B.TextNodePosition_0_TextAffinity_1)) transaction._document.deleteNode$1(node); else { t1 = node._text$_text; t2 = nodePosition.offset; node.set$text(0, t1.removeRegion$2$endOffset$startOffset(t1.text.length, t2)); } else throw A.wrapException(A.Exception_Exception("Unknown node position type: " + A.S(nodePosition) + ", for node: " + node.toString$0(0))); }, _deleteSelectionWithinNodeFromStartToPosition$4$document$node$nodePosition$transaction($document, node, nodePosition, transaction) { if (nodePosition instanceof A.UpstreamDownstreamNodePosition) { if (nodePosition.affinity === B.TextAffinity_0) return; this._deleteBlockLevelNode$4$document$node$replaceWithParagraph$transaction($document, node, false, transaction); } else if (nodePosition instanceof A.TextPosition && node instanceof A.TextNode) if (J.$eq$(nodePosition, new A.TextNodePosition(node._text$_text.text.length, B.TextAffinity_1))) transaction._document.deleteNode$1(node); else node.set$text(0, node._text$_text.removeRegion$2$endOffset$startOffset(nodePosition.offset, 0)); else throw A.wrapException(A.Exception_Exception("Unknown node position type: " + A.S(nodePosition) + ", for node: " + node.toString$0(0))); }, _deleteBlockLevelNode$4$document$node$replaceWithParagraph$transaction($document, node, replaceWithParagraph, transaction) { $.$get$_log().log$2("_deleteBlockNode", " - deleting block level node"); transaction._document.deleteNode$1(node); } }; A.ParagraphNode.prototype = {}; A.ParagraphComponentBuilder.prototype = { createViewModel$2($document, node) { var textDirection, textAlign, t1, t2, _null = null; if (!(node instanceof A.ParagraphNode)) return _null; textDirection = A.getParagraphDirection(node._text$_text.text); textAlign = textDirection === B.TextDirection_1 ? B.TextAlign_0 : B.TextAlign_1; t1 = node._metadata; switch (t1.$index(0, "textAlign")) { case "left": textAlign = B.TextAlign_0; break; case "center": textAlign = B.TextAlign_2; break; case "right": textAlign = B.TextAlign_1; break; case "justify": textAlign = B.TextAlign_3; break; } t2 = node.id; return A.ParagraphComponentViewModel$(t1.$index(0, "blockType"), _null, B.Color_0, false, _null, t2, B.EdgeInsets_0_0_0_0, _null, B.Color_0, node._text$_text, textAlign, textDirection, A._presenter__noStyleBuilder$closure()); }, createComponent$2(componentContext, componentViewModel) { var t1, t2, t3, t4, t5, t6, t7, t8, _null = null; if (!(componentViewModel instanceof A.ParagraphComponentViewModel)) return _null; t1 = $.$get$editorLayoutLog(); t1.log$4(B.Level_FINE_500, "Building paragraph component for node: " + A.S(componentViewModel.nodeId), _null, _null); if (componentViewModel.caret != null) t1.log$4(B.Level_FINER_400, " - painting caret in paragraph", _null, _null); if (componentViewModel.selection != null) { t1.log$4(B.Level_FINER_400, " - painting a text selection:", _null, _null); t1.log$4(B.Level_FINER_400, " base: " + new A.TextNodePosition(componentViewModel.selection.baseOffset, B.TextAffinity_1).toString$0(0), _null, _null); t1.log$4(B.Level_FINER_400, " extent: " + new A.TextNodePosition(componentViewModel.selection.extentOffset, B.TextAffinity_1).toString$0(0), _null, _null); } else t1.log$4(B.Level_FINER_400, " - not painting any text selection", _null, _null); t1 = componentViewModel.text; t2 = componentViewModel.textStyleBuilder; t3 = componentViewModel.blockType; t4 = type$.String; t5 = type$.dynamic; t3 = t3 != null ? A.LinkedHashMap_LinkedHashMap$_literal(["blockType", t3], t4, t5) : A.LinkedHashMap_LinkedHashMap$_empty(t4, t5); t4 = componentViewModel.textAlignment; t5 = componentViewModel.textDirection; t6 = componentViewModel.selection; t7 = componentViewModel.selectionColor; t8 = componentViewModel.caret; return A.TextComponent$(componentViewModel.caretColor, componentViewModel.highlightWhenEmpty, componentContext.componentKey, t3, t7, t8 != null, false, t1, t4, t5, t6, t2); }, $isComponentBuilder: 1 }; A.ParagraphComponentViewModel.prototype = { copy$0(_) { var _this = this, t1 = _this.maxWidth, t2 = _this.padding, t3 = _this.textStyleBuilder, t4 = _this.selection, t5 = _this.selectionColor; return A.ParagraphComponentViewModel$(_this.blockType, _this.caret, _this.caretColor, _this.highlightWhenEmpty, t1, _this.nodeId, t2, t4, t5, _this.text, _this.textAlignment, _this.textDirection, t3); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$SingleColumnLayoutComponentViewModel$$eq(0, other) && other instanceof A.ParagraphComponentViewModel && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.nodeId == other.nodeId && J.$eq$(_this.blockType, other.blockType) && _this.text.$eq(0, other.text) && J.$eq$(_this.textStyleBuilder, other.textStyleBuilder) && _this.textDirection === other.textDirection && _this.textAlignment === other.textAlignment && J.$eq$(_this.selection, other.selection) && _this.selectionColor.$eq(0, other.selectionColor) && J.$eq$(_this.caret, other.caret) && _this.caretColor.$eq(0, other.caretColor) && _this.highlightWhenEmpty === other.highlightWhenEmpty; else t1 = true; return t1; }, get$hashCode(_) { var t6, t7, t8, t9, t10, t11, t12, t13, _this = this, t1 = A.SingleColumnLayoutComponentViewModel.prototype.get$hashCode.call(_this, _this), t2 = J.get$hashCode$(_this.nodeId), t3 = J.get$hashCode$(_this.blockType), t4 = _this.text, t5 = J.get$hashCode$(t4.text); t4 = A.Primitives_objectHashCode(t4.spans.markers); t6 = J.get$hashCode$(_this.textStyleBuilder); t7 = A.Primitives_objectHashCode(_this.textDirection); t8 = A.Primitives_objectHashCode(_this.textAlignment); t9 = J.get$hashCode$(_this.selection); t10 = B.JSInt_methods.get$hashCode(_this.selectionColor.value); t11 = J.get$hashCode$(_this.caret); t12 = B.JSInt_methods.get$hashCode(_this.caretColor.value); t13 = _this.highlightWhenEmpty ? 519018 : 218159; return (t1 ^ t2 ^ t3 ^ t5 ^ t4 ^ t6 ^ t7 ^ t8 ^ t9 ^ t10 ^ t11 ^ t12 ^ t13) >>> 0; }, set$selection(val) { return this.selection = val; }, set$selectionColor(val) { return this.selectionColor = val; }, set$caret(val) { return this.caret = val; }, set$caretColor(val) { return this.caretColor = val; }, set$highlightWhenEmpty(val) { return this.highlightWhenEmpty = val; } }; A.CombineParagraphsCommand.prototype = { execute$2($document, transaction) { var t2, t3, secondNode, nodeAbove, _null = null, t1 = $.$get$editorDocLog(); t1.log$4(B.Level_INFO_800, "Executing CombineParagraphsCommand", _null, _null); t2 = this.firstNodeId; t3 = this.secondNodeId; t1.log$4(B.Level_INFO_800, ' - merging "' + A.S(t2) + '" <- "' + A.S(t3) + '"', _null, _null); secondNode = $document.getNodeById$1(t3); if (!(secondNode instanceof A.TextNode)) { t1.log$4(B.Level_INFO_800, "WARNING: Cannot merge node of type: " + A.S(secondNode) + " into node above.", _null, _null); return; } nodeAbove = $document.getNodeBefore$1(secondNode); if (nodeAbove == null) { t1.log$4(B.Level_INFO_800, "At top of document. Cannot merge with node above.", _null, _null); return; } if (nodeAbove.get$id(nodeAbove) != t2) { t1.log$4(B.Level_INFO_800, "The specified `firstNodeId` is not the node before `secondNodeId`.", _null, _null); return; } if (!(nodeAbove instanceof A.TextNode)) { t1.log$4(B.Level_INFO_800, "Cannot merge ParagraphNode into node of type: " + nodeAbove.toString$0(0), _null, _null); return; } t2 = nodeAbove._text$_text; t3 = t2.text.length; nodeAbove.set$text(0, t2.copyAndAppend$1(secondNode._text$_text)); if (t3 === 0) nodeAbove.set$metadata(0, secondNode._metadata); if (!transaction._document.deleteNode$1(secondNode)) t1.log$4(B.Level_INFO_800, "ERROR: Failed to delete the currently selected node from the document.", _null, _null); } }; A.SplitParagraphCommand.prototype = { execute$2($document, transaction) { var node, text, t2, startText, endText, t3, newNode, _this = this, _null = null, t1 = $.$get$editorDocLog(); t1.log$4(B.Level_INFO_800, "Executing SplitParagraphCommand", _null, _null); node = $document.getNodeById$1(_this.nodeId); if (!(node instanceof A.ParagraphNode)) { t1.log$4(B.Level_INFO_800, "WARNING: Cannot split paragraph for node of type: " + A.S(node) + ".", _null, _null); return; } text = node._text$_text; t2 = _this.splitPosition.offset; startText = text.copyText$2(0, t2); endText = text.copyText$1(t2); t1.log$4(B.Level_INFO_800, "Splitting paragraph:", _null, _null); t1.log$4(B.Level_INFO_800, ' - start text: "' + A.S(startText.text) + '"', _null, _null); t1.log$4(B.Level_INFO_800, ' - end text: "' + A.S(endText.text) + '"', _null, _null); t1.log$4(B.Level_INFO_800, " - changing the original paragraph text due to split", _null, _null); node.set$text(0, startText); t2 = type$.String; t3 = type$.dynamic; t2 = _this.replicateExistingMetadata ? A.LinkedHashMap_LinkedHashMap$from(node._metadata, t2, t3) : A.LinkedHashMap_LinkedHashMap$_empty(t2, t3); newNode = A.ParagraphNode$(_this.newNodeId, t2, endText); t1.log$4(B.Level_INFO_800, " - inserting new node in document", _null, _null); transaction._document.insertNodeAfter$2$existingNode$newNode(node, newNode); t1.log$4(B.Level_INFO_800, " - inserted new node: " + A.S(newNode.id) + " after old one: " + A.S(node.id), _null, _null); } }; A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure.prototype = { call$1(attributions) { var t1 = this.styles, baseStyle = t1.$index(0, "textStyle"); if (baseStyle == null) baseStyle = B.TextStyle_zIQ0; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, $signature: 245 }; A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { this.super$SingleColumnLayoutComponentViewModel$applyStyles(styles); this.textStyleBuilder = new A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure(styles); } }; A.UpstreamDownstreamNodePosition.prototype = { toString$0(_) { return "[UpstreamDownstreamNodePosition] - " + this.affinity.toString$0(0); }, $eq(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof A.UpstreamDownstreamNodePosition && A.getRuntimeType(this) === A.getRuntimeType(other) && this.affinity === other.affinity; else t1 = true; return t1; }, get$hashCode(_) { return A.Primitives_objectHashCode(this.affinity); } }; A.UpstreamDownstreamNodeSelection.prototype = { toString$0(_) { return "[UpstreamDownstreamNodeSelection] - base: " + this.base.toString$0(0) + ", extent: " + this.extent.toString$0(0); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof A.UpstreamDownstreamNodeSelection && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.base.$eq(0, other.base) && _this.extent.$eq(0, other.extent); else t1 = true; return t1; }, get$hashCode(_) { return (A.Primitives_objectHashCode(this.base.affinity) ^ A.Primitives_objectHashCode(this.extent.affinity)) >>> 0; } }; A.SuperEditor.prototype = { createState$0() { return new A._SuperEditorState(new A.FloatingCursorController($.$get$ChangeNotifier__emptyListeners()), B._StateLifecycle_0); } }; A._SuperEditorState.prototype = { initState$0() { var t1, _this = this, _s12_ = "_editContext"; _this.super$State$initState(); t1 = _this._widget.composer; if (t1 == null) t1 = A.DocumentComposer$(); _this.___SuperEditorState__composer = t1; A._lateReadCheck(t1, "_composer").addListener$1(0, _this.get$_updateComposerPreferencesAtSelection()); t1 = _this._widget.focusNode; if (t1 == null) t1 = A.FocusNode$(true, null, true, true, null, null, false); t1.addListener$1(0, _this.get$_super_editor0$_onFocusChange()); _this.___SuperEditorState__focusNode = t1; t1 = _this._widget.documentLayoutKey; _this.___SuperEditorState__docLayoutKey = t1; _this._createEditContext$0(); _this._createLayoutPresenter$0(); _this._widget.toString; t1 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_); _this.___SuperEditorState__softwareKeyboardHandler = new A.SoftwareKeyboardHandler(t1.editor, A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).composer, A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).commonOps); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this, _null = null, _s9_ = "_composer"; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.composer != oldWidget.composer) { t1 = _this.get$_updateComposerPreferencesAtSelection(); A._lateReadCheck(_this.___SuperEditorState__composer, _s9_).removeListener$1(0, t1); t2 = _this._widget.composer; if (t2 == null) t2 = A.DocumentComposer$(); _this.___SuperEditorState__composer = t2; A._lateReadCheck(t2, _s9_).addListener$1(0, t1); } t1 = _this._widget.editor; t2 = oldWidget.editor; if (t1 != t2) A._lateReadCheck(_this.___SuperEditorState__composer, _s9_).set$selection(_null); t1 = _this._widget.focusNode; if (t1 != oldWidget.focusNode) { if (t1 == null) t1 = A.FocusNode$(true, _null, true, true, _null, _null, false); t1.addListener$1(0, _this.get$_super_editor0$_onFocusChange()); _this.___SuperEditorState__focusNode = t1; } t1 = _this._widget; t3 = t1.documentLayoutKey; if (t3 !== oldWidget.documentLayoutKey) _this.___SuperEditorState__docLayoutKey = t3; if (t1.editor != t2) { _this._createEditContext$0(); _this._createLayoutPresenter$0(); } if (_this._widget.stylesheet != oldWidget.stylesheet) A._lateReadCheck(_this.___SuperEditorState__docStylesheetStyler, "_docStylesheetStyler").set$stylesheet(_this._widget.stylesheet); _this._recomputeIfLayoutShouldShowCaret$0(); }, dispose$0(_) { var t1, t2, _this = this, _s10_ = "_focusNode"; if (_this._widget.composer == null) { t1 = A._lateReadCheck(_this.___SuperEditorState__composer, "_composer"); t2 = t1._preferences; t2.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t2.ChangeNotifier__count = 0; t1.super$ChangeNotifier$dispose(0); } A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_).removeListener$1(0, _this.get$_super_editor0$_onFocusChange()); if (_this._widget.focusNode == null) A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_).dispose$0(0); _this.super$State$dispose(0); }, _createEditContext$0() { var _this = this, _s9_ = "_composer"; _this.___SuperEditorState__editContext = new A.EditContext(_this._widget.editor, new A._SuperEditorState__createEditContext_closure(_this), A._lateReadCheck(_this.___SuperEditorState__composer, _s9_), new A.CommonEditorOperations(_this._widget.editor, A._lateReadCheck(_this.___SuperEditorState__composer, _s9_), new A._SuperEditorState__createEditContext_closure0(_this))); }, _createLayoutPresenter$0() { var $document, t2, _this = this, _s12_ = "_editContext", t1 = _this._docLayoutPresenter; if (t1 != null) t1.dispose$0(0); $document = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).editor._document; _this.___SuperEditorState__docStylesheetStyler = new A.SingleColumnStylesheetStyler(_this._widget.stylesheet); _this.___SuperEditorState__docLayoutPerComponentBlockStyler = new A.SingleColumnLayoutCustomComponentStyler(); t1 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).composer; t2 = new A.SingleColumnLayoutSelectionStyler($document, t1, _this._widget.selectionStyles); t1.selectionNotifier.addListener$1(0, t2.get$markDirty()); _this.___SuperEditorState__docLayoutSelectionStyler = t2; t2 = _this._widget.componentBuilders; t1 = A._setArrayType([A._lateReadCheck(_this.___SuperEditorState__docStylesheetStyler, "_docStylesheetStyler"), A._lateReadCheck(_this.___SuperEditorState__docLayoutPerComponentBlockStyler, "_docLayoutPerComponentBlockStyler")], type$.JSArray_SingleColumnLayoutStylePhase); _this._widget.toString; B.JSArray_methods.addAll$1(t1, B.List_empty19); t1.push(A._lateReadCheck(_this.___SuperEditorState__docLayoutSelectionStyler, "_docLayoutSelectionStyler")); t1 = new A.SingleColumnLayoutPresenter($document, t2, t1, A._setArrayType([], type$.JSArray_nullable_SingleColumnLayoutViewModel), A.LinkedHashSet_LinkedHashSet$_empty(type$.SingleColumnLayoutPresenterChangeListener)); t1._assemblePipeline$0(); t1.__SingleColumnLayoutPresenter__viewModel = t1._createNewViewModel$0(); $document.addListener$1(0, t1.get$__presenter$_onDocumentChange()); _this._docLayoutPresenter = t1; _this._recomputeIfLayoutShouldShowCaret$0(); }, _super_editor0$_onFocusChange$0() { this._recomputeIfLayoutShouldShowCaret$0(); }, _recomputeIfLayoutShouldShowCaret$0() { var t1 = A._lateReadCheck(this.___SuperEditorState__docLayoutSelectionStyler, "_docLayoutSelectionStyler"); t1.set$shouldDocumentShowCaret(A._lateReadCheck(this.___SuperEditorState__focusNode, "_focusNode").get$hasFocus() && this.get$_super_editor0$_gestureMode() === B.DocumentGestureMode_0); }, _updateComposerPreferencesAtSelection$0() { var node, t2, allStyles, _this = this, _s9_ = "_composer", t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection; t1 = t1 == null ? null : t1.extent; if (J.$eq$(t1, _this._previousSelectionExtent)) return; t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection; _this._previousSelectionExtent = t1 == null ? null : t1.extent; t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._preferences; t1._currentAttributions.clear$0(0); t1.notifyListeners$0(); if (A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection != null) { t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection; t1 = !J.$eq$(t1.base, t1.extent); } else t1 = true; if (t1) return; node = _this._widget.editor._document.getNodeById$1(A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection.extent.nodeId); if (!(node instanceof A.TextNode)) return; t1 = type$.TextPosition._as(A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._document_composer$_selection.extent.nodePosition).offset; if (t1 === 0) { t2 = node._text$_text; if (t2.text.length === 0) return; allStyles = t2.spans.getAllAttributionsAt$1(t1 + 1); t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._preferences; t1._currentAttributions.addAll$1(0, allStyles); t1.notifyListeners$0(); } else { allStyles = node._text$_text.spans.getAllAttributionsAt$1(t1 - 1); t1 = A._lateReadCheck(_this.___SuperEditorState__composer, _s9_)._preferences; t1._currentAttributions.addAll$1(0, allStyles); t1.notifyListeners$0(); } }, get$_super_editor0$_gestureMode() { var t1 = this._widget.gestureMode; if (t1 != null) return t1; switch (A.defaultTargetPlatform()) { case B.TargetPlatform_0: return B.DocumentGestureMode_1; case B.TargetPlatform_2: return B.DocumentGestureMode_2; default: return B.DocumentGestureMode_0; } }, build$1(_, context) { var _this = this, t1 = A._lateReadCheck(_this.___SuperEditorState__docLayoutKey, "_docLayoutKey"), t2 = _this._docLayoutPresenter; t2.toString; return _this._buildInputSystem$1$child(_this._buildGestureSystem$1$child(new A.SingleColumnDocumentLayout(t2, _this._widget.componentBuilders, t1))); }, _buildInputSystem$1$child(child) { var t1, _this = this, _s10_ = "_focusNode", _s12_ = "_editContext"; switch (_this._widget.inputSource) { case B.DocumentInputSource_0: t1 = A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_); _this._widget.toString; return new A.DocumentKeyboardInteractor(t1, false, A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_), _this._widget.keyboardActions, child, null); case B.DocumentInputSource_1: t1 = A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_); _this._widget.toString; return new A.DocumentImeInteractor(t1, false, A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_), A._lateReadCheck(_this.___SuperEditorState__softwareKeyboardHandler, "_softwareKeyboardHandler"), _this._widget.keyboardActions, _this._floatingCursorController, child, null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } }, _buildGestureSystem$1$child(child) { var t1, t2, t3, t4, t5, t6, _this = this, _null = null, _s10_ = "_focusNode", _s12_ = "_editContext", _s13_ = "_docLayoutKey"; switch (_this.get$_super_editor0$_gestureMode()) { case B.DocumentGestureMode_0: return new A.DocumentMouseInteractor(A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_), A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_), _this._widget.scrollController, false, _null, child, _null); case B.DocumentGestureMode_1: t1 = A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_); t2 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).composer; t3 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).editor._document; t4 = _this._widget.scrollController; t5 = A._lateReadCheck(_this.___SuperEditorState__docLayoutKey, _s13_); t6 = _this._widget.androidToolbarBuilder; return new A.AndroidDocumentTouchInteractor(t1, t2, t3, t5, new A._SuperEditorState__buildGestureSystem_closure(_this), t4, t6, _null, child, _null); case B.DocumentGestureMode_2: t1 = A._lateReadCheck(_this.___SuperEditorState__focusNode, _s10_); t2 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).composer; t3 = A._lateReadCheck(_this.___SuperEditorState__editContext, _s12_).editor._document; t4 = _this._widget.scrollController; t5 = A._lateReadCheck(_this.___SuperEditorState__docLayoutKey, _s13_); t6 = _this._widget.iOSToolbarBuilder; return new A.IOSDocumentTouchInteractor(t1, t2, t3, t5, new A._SuperEditorState__buildGestureSystem_closure0(_this), t4, t6, _this._floatingCursorController, _null, child, _null); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A._SuperEditorState__createEditContext_closure.prototype = { call$0() { return type$.DocumentLayout._as(A._lateReadCheck(this.$this.___SuperEditorState__docLayoutKey, "_docLayoutKey").get$currentState()); }, $signature: 300 }; A._SuperEditorState__createEditContext_closure0.prototype = { call$0() { return type$.DocumentLayout._as(A._lateReadCheck(this.$this.___SuperEditorState__docLayoutKey, "_docLayoutKey").get$currentState()); }, $signature: 300 }; A._SuperEditorState__buildGestureSystem_closure.prototype = { call$0() { return A._lateReadCheck(this.$this.___SuperEditorState__editContext, "_editContext")._getDocumentLayout.call$0(); }, $signature: 300 }; A._SuperEditorState__buildGestureSystem_closure0.prototype = { call$0() { return A._lateReadCheck(this.$this.___SuperEditorState__editContext, "_editContext")._getDocumentLayout.call$0(); }, $signature: 300 }; A.DocumentInputSource.prototype = { toString$0(_) { return "DocumentInputSource." + this._core$_name; } }; A.DocumentGestureMode.prototype = { toString$0(_) { return "DocumentGestureMode." + this._core$_name; } }; A.DebugPaintConfig.prototype = {}; A.defaultStylesheet_closure.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["maxWidth", 640, "padding", B.CascadingPadding_24_24_null_null, "textStyle", B.TextStyle_K9x], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure0.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_40_null, "textStyle", B.TextStyle_lRE1], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure1.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_32_null, "textStyle", B.TextStyle_lRE0], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure2.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_28_null, "textStyle", B.TextStyle_lRE], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure3.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_24_null], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure4.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure5.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure6.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure7.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_24_null], type$.String, type$.dynamic); }, $signature: 133 }; A.defaultStylesheet_closure8.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_null_96], type$.String, type$.dynamic); }, $signature: 133 }; A.TextNode.prototype = { TextNode$3$id$metadata$text(id, metadata, text) { this.set$metadata(0, metadata); this._text$_text._attributed_text$_listeners.add$1(0, this.get$notifyListeners()); }, dispose$0(_) { this._text$_text._attributed_text$_listeners.remove$1(0, this.get$notifyListeners()); this.super$ChangeNotifier$dispose(0); }, set$text(_, newText) { var t1, _this = this; if (!newText.$eq(0, _this._text$_text)) { t1 = _this.get$notifyListeners(); _this._text$_text._attributed_text$_listeners.remove$1(0, t1); _this._text$_text = newText; newText._attributed_text$_listeners.add$1(0, t1); _this.notifyListeners$0(); } }, get$beginningPosition() { return B.TextNodePosition_0_TextAffinity_1; }, get$endPosition() { return new A.TextNodePosition(this._text$_text.text.length, B.TextAffinity_1); }, selectUpstreamPosition$2(position1, position2) { if (!(position1 instanceof A.TextNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaT1 + J.get$runtimeType$(position1).toString$0(0))); if (!(position2 instanceof A.TextNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaT2 + J.get$runtimeType$(position2).toString$0(0))); return position1.offset < position2.offset ? position1 : position2; }, selectDownstreamPosition$2(position1, position2) { if (!(position1 instanceof A.TextNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaT1 + J.get$runtimeType$(position1).toString$0(0))); if (!(position2 instanceof A.TextNodePosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectaT2 + J.get$runtimeType$(position2).toString$0(0))); return position1.offset > position2.offset ? position1 : position2; }, computeSelection$2$base$extent(base, extent) { var t3, t4, t1 = type$.TextNodePosition, t2 = t1._as(base).offset; t1 = t1._as(extent).offset; t3 = t2 < t1; t4 = t3 ? t2 : t1; return new A.TextNodeSelection(t2, t1, B.TextAffinity_1, false, t4, t3 ? t1 : t2); }, copyContent$1(selection) { type$.TextSelection._as(selection); return J.substring$2$s(this._text$_text.text, selection.start, selection.end); }, toString$0(_) { return "[TextNode] - text: " + this._text$_text.toString$0(0) + ", metadata: " + A.LinkedHashMap_LinkedHashMap$from(this._metadata, type$.String, type$.dynamic).toString$0(0); }, $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$DocumentNode$$eq(0, other) && other instanceof A.TextNode && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.id == other.id && _this._text$_text.$eq(0, other._text$_text); else t1 = true; return t1; }, get$hashCode(_) { var _this = this, t1 = A.DocumentNode.prototype.get$hashCode.call(_this, _this), t2 = J.get$hashCode$(_this.id), t3 = _this._text$_text; return (t1 ^ t2 ^ J.get$hashCode$(t3.text) ^ A.Primitives_objectHashCode(t3.spans.markers)) >>> 0; }, get$id(receiver) { return this.id; } }; A.TextNodeSelection.prototype = { get$base() { return new A.TextNodePosition(this.baseOffset, B.TextAffinity_1); }, get$extent() { return new A.TextNodePosition(this.extentOffset, B.TextAffinity_1); } }; A.TextNodePosition.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = _this.super$TextPosition$$eq(0, other) && other instanceof A.TextNodePosition && A.getRuntimeType(_this) === A.getRuntimeType(other) && _this.offset == other.offset; else t1 = true; return t1; }, get$hashCode(_) { var _this = this; return A.TextPosition.prototype.get$hashCode.call(_this, _this) ^ J.get$hashCode$(_this.offset); } }; A.TextComponentViewModel.prototype = {}; A.TextComponent.prototype = { createState$0() { return new A._TextComponentState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_ProseTextState_StatefulWidget), B._StateLifecycle_0); }, textStyleBuilder$1(arg0) { return this.textStyleBuilder.call$1(arg0); } }; A._TextComponentState.prototype = { getPositionAtOffset$1(localOffset) { var t1, textPosition = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionNearestToOffset$1(localOffset); if (textPosition.affinity === B.TextAffinity_1) t1 = textPosition; else { t1 = textPosition.offset; t1 = new A.TextPosition(t1 < this._widget.text.text.length ? t1 - 1 : t1, B.TextAffinity_1); } return new A.TextNodePosition(t1.offset, t1.affinity); }, getOffsetForPosition$1(nodePosition) { if (!(nodePosition instanceof A.TextPosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectnT + A.S(nodePosition))); return type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getOffsetAtPosition$1(nodePosition); }, getRectForPosition$1(nodePosition) { var offset, t1, t2, lineHeight, _s14_ = "_textLayoutKey"; if (!(nodePosition instanceof A.TextPosition)) throw A.wrapException(A.Exception_Exception(string$.ExpectnT + A.S(nodePosition))); offset = this.getOffsetForPosition$1(nodePosition); t1 = this._textKey; t2 = type$.ProseTextBlock; lineHeight = t2._as(A._lateReadCheck(t1.get$currentState().___SuperTextWithSelectionState__textLayoutKey, _s14_).get$currentState()).get$textLayout().getHeightForCaret$1(nodePosition); if (lineHeight == null) lineHeight = t2._as(A._lateReadCheck(t1.get$currentState().___SuperTextWithSelectionState__textLayoutKey, _s14_).get$currentState()).get$textLayout().getLineHeightAtPosition$1(nodePosition); t1 = offset._dx; t2 = offset._dy; return new A.Rect(t1, t2, t1 + 0, t2 + lineHeight); }, getRectForSelection$2(baseNodePosition, extentNodePosition) { var selection, boxes, t1, boundingBox, i, _s57_ = string$.ExpectnT; if (!(baseNodePosition instanceof A.TextPosition)) throw A.wrapException(A.Exception_Exception(_s57_ + A.S(baseNodePosition))); if (!(extentNodePosition instanceof A.TextPosition)) throw A.wrapException(A.Exception_Exception(_s57_ + A.S(extentNodePosition))); selection = A.TextSelection$(B.TextAffinity_1, baseNodePosition.offset, extentNodePosition.offset, false); boxes = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getBoxesForSelection$1(selection); if (boxes.length !== 0) { t1 = B.JSArray_methods.get$first(boxes); boundingBox = new A.Rect(t1.left, t1.top, t1.right, t1.bottom); } else boundingBox = B.Rect_0_0_0_0; for (i = 1; i < boxes.length; ++i) { t1 = boxes[i]; boundingBox = boundingBox.expandToInclude$1(new A.Rect(t1.left, t1.top, t1.right, t1.bottom)); } return boundingBox; }, getBeginningPosition$0() { return B.TextNodePosition_0_TextAffinity_1; }, getBeginningPositionNearX$1(x) { var t1 = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionInFirstLineAtX$1(x); return new A.TextNodePosition(t1.offset, t1.affinity); }, movePositionLeft$2(textPosition, movementModifier) { var t1, t2, newOffset, _this = this; if (!(textPosition instanceof A.TextNodePosition)) return null; t1 = textPosition.offset; if (t1 > _this._widget.text.text.length) return null; if (t1 === 0) return null; t2 = movementModifier != null; if (t2 && movementModifier.$eq(0, B.MovementModifier_line)) { t1 = type$.ProseTextBlock._as(A._lateReadCheck(_this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionAtStartOfLine$1(new A.TextNodePosition(t1, B.TextAffinity_1)); return new A.TextNodePosition(t1.offset, t1.affinity); } else if (t2 && movementModifier.$eq(0, B.MovementModifier_word)) { newOffset = A.CharacterMovement_moveOffsetUpstreamByWord(_this._widget.text.text, t1); if (newOffset == null) return textPosition; return new A.TextNodePosition(newOffset, B.TextAffinity_1); } newOffset = A.CharacterMovement_moveOffsetUpstreamByCharacter(_this._widget.text.text, t1); return newOffset != null ? new A.TextNodePosition(newOffset, B.TextAffinity_1) : textPosition; }, movePositionRight$2(textPosition, movementModifier) { var t1, t2, t3, newOffset, _this = this; if (!(textPosition instanceof A.TextNodePosition)) return null; t1 = textPosition.offset; if (t1 >= _this._widget.text.text.length) return null; t2 = movementModifier != null; if (t2 && movementModifier.$eq(0, B.MovementModifier_line)) { t1 = type$.ProseTextBlock._as(A._lateReadCheck(_this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionAtEndOfLine$1(new A.TextNodePosition(t1, B.TextAffinity_1)); t2 = t1.offset; t3 = _this._widget.text.text; return t2 !== t3.length && t3[t2] !== "\n" ? new A.TextNodePosition(t2 - 1, B.TextAffinity_1) : new A.TextNodePosition(t2, t1.affinity); } if (t2 && movementModifier.$eq(0, B.MovementModifier_word)) { newOffset = A.CharacterMovement_moveOffsetDownstreamByWord(_this._widget.text.text, t1); if (newOffset == null) return textPosition; return new A.TextNodePosition(newOffset, B.TextAffinity_1); } newOffset = A.CharacterMovement_moveOffsetDownstreamByCharacter(_this._widget.text.text, t1); return newOffset != null ? new A.TextNodePosition(newOffset, B.TextAffinity_1) : textPosition; }, movePositionUp$1(textNodePosition) { var t1, positionOneLineUp; if (!(textNodePosition instanceof A.TextNodePosition)) return null; t1 = textNodePosition.offset; if (t1 < 0 || t1 > this._widget.text.text.length) return null; positionOneLineUp = this.getPositionOneLineUp$1(textNodePosition); if (positionOneLineUp == null) return null; return new A.TextNodePosition(positionOneLineUp.offset, positionOneLineUp.affinity); }, movePositionDown$1(textNodePosition) { var t1, positionOneLineDown; if (!(textNodePosition instanceof A.TextNodePosition)) return null; t1 = textNodePosition.offset; if (t1 < 0 || t1 > this._widget.text.text.length) return null; positionOneLineDown = this.getPositionOneLineDown$1(textNodePosition); if (positionOneLineDown == null) return null; return new A.TextNodePosition(positionOneLineDown.offset, positionOneLineDown.affinity); }, getEndPosition$0() { return new A.TextNodePosition(this._widget.text.text.length, B.TextAffinity_1); }, getEndPositionNearX$1(x) { var t1 = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionInLastLineAtX$1(x); return new A.TextNodePosition(t1.offset, t1.affinity); }, getDesiredCursorAtOffset$1(localOffset) { return type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().isTextAtOffset$1(localOffset) ? B.SystemMouseCursor_text : null; }, getPositionOneLineUp$1(textPosition) { var positionOneLineUp = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionOneLineUp$1(textPosition); if (positionOneLineUp == null) return null; return new A.TextNodePosition(positionOneLineUp.offset, positionOneLineUp.affinity); }, getPositionOneLineDown$1(textPosition) { var positionOneLineDown = type$.ProseTextBlock._as(A._lateReadCheck(this._textKey.get$currentState().___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout().getPositionOneLineDown$1(textPosition); if (positionOneLineDown == null) return null; return new A.TextNodePosition(positionOneLineDown.offset, positionOneLineDown.affinity); }, build$1(_, context) { var t1, t2, t3, t4, t5, t6, _this = this; $.$get$editorLayoutLog().log$4(B.Level_FINER_400, "Building a TextComponent with key: " + A.S(_this._widget.key), null, null); t1 = A.ComputerTextSpan_computeTextSpan(_this._widget.text, _this.get$_textStyleWithBlockType()); t2 = _this._widget; t3 = t2.selectionColor; t4 = t2.caretColor; t5 = t2.textSelection; if (t5 == null) t5 = B.TextSelection_ke5; t6 = t2.showCaret; t2 = A._setArrayType([new A.UserSelection(t5, new A.SelectionHighlightStyle(t3), t2.highlightWhenEmpty, new A.CaretStyle(t4), t6)], type$.JSArray_UserSelection); return new A.SuperTextWithSelection(t1, t2, _this._textKey); }, _textStyleWithBlockType$1(attributions) { var attributionsWithBlockType = A.LinkedHashSet_LinkedHashSet$from(attributions, type$.Attribution), blockType = this._widget.metadata.$index(0, "blockType"); if (blockType != null) attributionsWithBlockType.add$1(0, blockType); return this._widget.textStyleBuilder$1(attributionsWithBlockType); }, $isTextComposable: 1 }; A.ToggleTextAttributionsCommand.prototype = { execute$2($document, transaction) { var t2, t3, t4, nodes, nodeRange, nodesAndSelections, t5, t6, t7, alreadyHasAttributions, _i, textNode, baseOffset, extentOffset, t8, startOffset, endOffset, t9, node, range, t10, _null = null, t1 = $.$get$editorDocLog(); t1.log$4(B.Level_INFO_800, "Executing ToggleTextAttributionsCommand", _null, _null); t2 = this.documentSelection; t3 = t2.base; t4 = t2.extent; nodes = $document.getNodesInside$2(t3, t4); if (nodes.length === 0) { t1.log$4(B.Level_SHOUT_1200, " - Bad DocumentSelection. Could not get range of nodes. Selection: " + t2.toString$0(0), _null, _null); return; } nodeRange = $document.getRangeBetween$2(t3, t4); t1.log$4(B.Level_INFO_800, " - node range: " + nodeRange.toString$0(0), _null, _null); nodesAndSelections = A.LinkedHashMap_LinkedHashMap(_null, _null, _null, type$.TextNode, type$.SpanRange); for (t1 = nodes.length, t2 = nodeRange.end, t5 = type$.TextPosition, t6 = nodeRange.start, t7 = this.attributions, alreadyHasAttributions = false, _i = 0; _i < nodes.length; nodes.length === t1 || (0, A.throwConcurrentModificationError)(nodes), ++_i) { textNode = nodes[_i]; if (!(textNode instanceof A.TextNode)) continue; if (textNode.$eq(0, B.JSArray_methods.get$first(nodes)) && textNode.$eq(0, B.JSArray_methods.get$last(nodes))) { $.$get$editorDocLog().log$4(B.Level_INFO_800, " - the selection is within a single node: " + A.S(textNode.id), _null, _null); baseOffset = t5._as(t3.nodePosition).offset; extentOffset = t5._as(t4.nodePosition).offset; t8 = baseOffset < extentOffset; startOffset = t8 ? baseOffset : extentOffset; endOffset = (t8 ? extentOffset : baseOffset) - 1; } else if (textNode.$eq(0, B.JSArray_methods.get$first(nodes))) { $.$get$editorDocLog().log$4(B.Level_INFO_800, " - selecting part of the first node: " + A.S(textNode.id), _null, _null); startOffset = t5._as(t6.nodePosition).offset; endOffset = Math.max(textNode._text$_text.text.length - 1, 0); } else { t8 = textNode.$eq(0, B.JSArray_methods.get$last(nodes)); t9 = A.S(textNode.id); if (t8) { $.$get$editorDocLog().log$4(B.Level_INFO_800, " - toggling part of the last node: " + t9, _null, _null); endOffset = t5._as(t2.nodePosition).offset - 1; } else { $.$get$editorDocLog().log$4(B.Level_INFO_800, " - toggling full node: " + t9, _null, _null); endOffset = Math.max(textNode._text$_text.text.length - 1, 0); } startOffset = 0; } alreadyHasAttributions = alreadyHasAttributions || textNode._text$_text.spans.hasAttributionsWithin$3$attributions$end$start(t7, endOffset, startOffset); nodesAndSelections.putIfAbsent$2(0, textNode, new A.ToggleTextAttributionsCommand_execute_closure(new A.SpanRange(startOffset, endOffset))); } for (t1 = nodesAndSelections.get$entries(nodesAndSelections), t1 = t1.get$iterator(t1), t2 = A._instanceType(t7)._eval$1("_LinkedHashSetIterator<1>"); t1.moveNext$0();) { t3 = t1.get$current(t1); for (t4 = new A._LinkedHashSetIterator(t7, t7._collection$_modifications, t2), t4._collection$_cell = t7._collection$_first; t4.moveNext$0();) { t5 = t4._collection$_current; node = t3.get$key(t3); range = t3.get$value(t3); $.$get$editorDocLog().log$4(B.Level_INFO_800, " - toggling attribution: " + A.S(t5) + ". Range: " + A.S(range), _null, _null); t6 = node._text$_text; t8 = t6.spans; t9 = range.start; t10 = range.end; $.$get$_log1().log$4(B.Level_INFO_800, "Toggling attribution " + A.S(t5) + " from " + A.S(t9) + " to " + t10, _null, _null); if (t8._isContinuousAttribution$3$attribution$end$start(t5, t10, t9)) t8.removeAttribution$3$attributionToRemove$end$start(t5, t10, t9); else t8.addAttribution$3$end$newAttribution$start(t10, t5, t9); t6._notifyListeners$0(); } } $.$get$editorDocLog().log$4(B.Level_INFO_800, " - done toggling attributions", _null, _null); } }; A.ToggleTextAttributionsCommand_execute_closure.prototype = { call$0() { return this.selectionRange; }, $signature: 2900 }; A.InsertTextCommand.prototype = { execute$2($document, transaction) { var textOffset, t1 = this.documentPosition, textNode = $document.getNodeById$1(t1.nodeId); if (!(textNode instanceof A.TextNode)) { $.$get$editorDocLog().log$4(B.Level_SHOUT_1200, "ERROR: can't insert text in a node that isn't a TextNode: " + A.S(textNode), null, null); return; } textOffset = type$.TextPosition._as(t1.nodePosition).offset; textNode.set$text(0, textNode._text$_text.insertString$3$applyAttributions$startOffset$textToInsert(this.attributions, textOffset, this.textToInsert)); } }; A._TextNode_DocumentNode_ChangeNotifier.prototype = {}; A.__TextComponentState_State_DocumentComponent.prototype = {}; A.UnknownComponentBuilder.prototype = { createViewModel$2($document, node) { return null; }, createComponent$2(componentContext, componentViewModel) { $.$get$editorLayoutLog().log$4(B.Level_WARNING_900, "Building component widget for unknown component: " + A.S(componentViewModel), null, null); return new A.SizedBox(1 / 0, 100, B.Placeholder_Color_4282735204_null, componentContext.componentKey); }, $isComponentBuilder: 1 }; A.MultiListenableBuilder.prototype = { createState$0() { return new A._MultiListenableBuilderState(B._StateLifecycle_0); }, builder$1(arg0) { return this.builder.call$1(arg0); } }; A._MultiListenableBuilderState.prototype = { initState$0() { this.super$State$initState(); this._syncListenables$2$newListenables$oldListenables(this._widget.listenables, A.LinkedHashSet_LinkedHashSet$_empty(type$.Listenable)); }, didUpdateWidget$1(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = this._widget.listenables; t2 = oldWidget.listenables; if (t1 !== t2) this._syncListenables$2$newListenables$oldListenables(t1, t2); }, dispose$0(_) { this._syncListenables$2$newListenables$oldListenables(A.LinkedHashSet_LinkedHashSet$_empty(type$.Listenable), this._widget.listenables); this.super$State$dispose(0); }, _syncListenables$2$newListenables$oldListenables(newListenables, oldListenables) { var t1, t2, t3; for (t1 = A._LinkedHashSetIterator$(oldListenables, oldListenables._collection$_modifications, A._instanceType(oldListenables)._precomputed1), t2 = this.get$_onListenableChange(); t1.moveNext$0();) { t3 = t1._collection$_current; if (!newListenables.contains$1(0, t3)) t3.removeListener$1(0, t2); } for (t1 = A._LinkedHashSetIterator$(newListenables, newListenables._collection$_modifications, A._instanceType(newListenables)._precomputed1); t1.moveNext$0();) { t3 = t1._collection$_current; if (!oldListenables.contains$1(0, t3)) t3.addListener$1(0, t2); } }, _onListenableChange$0() { this.setState$1(new A._MultiListenableBuilderState__onListenableChange_closure()); }, build$1(_, context) { return this._widget.builder$1(context); } }; A._MultiListenableBuilderState__onListenableChange_closure.prototype = { call$0() { }, $signature: 0 }; A.ListenableBuilder.prototype = { build$1(_, context) { return A.AnimatedBuilder$(this.listenable, new A.ListenableBuilder_build_closure(this), null); } }; A.ListenableBuilder_build_closure.prototype = { call$2(context, _) { return this.$this.builder.call$1(context); }, $signature: 211 }; A.Logger0.prototype = { log$2(tag, message) { return; } }; A.AutoScroller.prototype = { dispose$0(_) { A._lateReadCheck(this.__AutoScroller__ticker, "_ticker").dispose$0(0); }, startScrollingUp$1(speedPercent) { var _this = this; _this._scrollSpeedPercent = speedPercent; if (_this._scrollUpOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Starting to auto-scroll up", null, null); _this._scrollUpOnTick = true; A._lateReadCheck(_this.__AutoScroller__ticker, "_ticker").start$0(0); }, _scrollUp$0() { var scrollAmount, t2, _null = null, t1 = this.__scrolling$_scrollPosition; if (t1 == null) { $.$get$editorGesturesLog().log$4(B.Level_WARNING_900, "Tried to scroll up but the scroll position is null", _null, _null); return; } t1 = t1._pixels; t1.toString; if (t1 <= 0) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, string$.Tried_su, _null, _null); return; } $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Scrolling up on tick", _null, _null); scrollAmount = A.lerpDouble(0, 5, this._scrollSpeedPercent); t1 = this.__scrolling$_scrollPosition; t2 = t1._pixels; t2.toString; scrollAmount.toString; t1.jumpTo$1(t2 - scrollAmount); }, stopScrollingUp$0() { if (!this._scrollUpOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Stopping auto-scroll up", null, null); this._scrollUpOnTick = false; A._lateReadCheck(this.__AutoScroller__ticker, "_ticker").stop$0(0); }, startScrollingDown$1(speedPercent) { var _this = this; _this._scrollSpeedPercent = speedPercent; if (_this._scrollDownOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Starting to auto-scroll down", null, null); _this._scrollDownOnTick = true; A._lateReadCheck(_this.__AutoScroller__ticker, "_ticker").start$0(0); }, _scrollDown$0() { var t2, scrollAmount, _null = null, t1 = this.__scrolling$_scrollPosition; if (t1 == null) { $.$get$editorGesturesLog().log$4(B.Level_WARNING_900, "Tried to scroll down but the scroll position is null", _null, _null); return; } t2 = t1._pixels; t2.toString; t1 = t1._maxScrollExtent; t1.toString; if (t2 >= t1) { $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, string$.Tried_sd, _null, _null); return; } $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Scrolling down on tick", _null, _null); scrollAmount = A.lerpDouble(0, 5, this._scrollSpeedPercent); t1 = this.__scrolling$_scrollPosition; t2 = t1._pixels; t2.toString; scrollAmount.toString; t1.jumpTo$1(t2 + scrollAmount); }, stopScrollingDown$0() { if (!this._scrollDownOnTick) return; $.$get$editorGesturesLog().log$4(B.Level_FINEST_300, "Stopping auto-scroll down", null, null); this._scrollDownOnTick = false; A._lateReadCheck(this.__AutoScroller__ticker, "_ticker").stop$0(0); }, __scrolling$_onTick$1(elapsedTime) { var _this = this; if (_this._scrollUpOnTick) _this._scrollUp$0(); if (_this._scrollDownOnTick) _this._scrollDown$0(); } }; A.ComputerTextSpan_computeTextSpan_closure.prototype = { call$1(attributedSpan) { var t1 = J.substring$2$s(this._this.text, attributedSpan.start, attributedSpan.end + 1); return A.TextSpan$(null, null, this.styleBuilder.call$1(attributedSpan.attributions), t1); }, $signature: 2901 }; A.BlinkingCaret.prototype = { createState$0() { return new A.BlinkingCaretState(null, null, B._StateLifecycle_0); } }; A.BlinkingCaretState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.controller; if (t1 == null) t1 = A.BlinkController$(_this); _this.__BlinkingCaretState__caretBlinkController = t1; _this._widget.toString; t1 = A._lateReadCheck(t1, "_caretBlinkController"); t1.jumpToOpaque$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!_this._widget.caretOffset.$eq(0, oldWidget.caretOffset)) { _this._widget.toString; t1 = A._lateReadCheck(_this.__BlinkingCaretState__caretBlinkController, "_caretBlinkController"); t1.jumpToOpaque$0(); } }, dispose$0(_) { var t1; if (this._widget.controller == null) { t1 = A._lateReadCheck(this.__BlinkingCaretState__caretBlinkController, "_caretBlinkController"); A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").dispose$0(0); t1.super$ChangeNotifier$dispose(0); } this.super$_BlinkingCaretState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1(_, context) { var t3, t4, t5, t6, t7, t8, t9, t1 = this._widget, t2 = t1.width; t1 = t1.caretHeight; if (t1 == null) t1 = 0; t3 = A._lateReadCheck(this.__BlinkingCaretState__caretBlinkController, "_caretBlinkController"); t4 = this._widget; t5 = t4.caretHeight; t6 = t4.caretOffset; t7 = t4.width; t8 = t4.borderRadius; t4 = t4.color; t9 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t9.set$color(0, t4); return A.CustomPaint$(null, null, null, new A._CaretPainter(t3, t5, t6, t7, t8, false, true, t4, t9, t3), new A.Size(t2, t1)); } }; A._CaretPainter.prototype = { paint$2(canvas, size) { var height, t3, t4, _this = this, t1 = _this.caretPaint, t2 = _this.caretColor; t1.set$color(0, A.Color$fromARGB(B.JSInt_methods.round$0(255 * (_this.blinkController._blink_controller$_isVisible ? 1 : 0)), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); t2 = _this.caretHeight; height = t2 == null ? null : B.JSNumber_methods.roundToDouble$0(t2); if (height == null) height = size._dy; t2 = _this.caretOffset; t3 = t2._dx; t2 = t2._dy; t4 = _this.borderRadius; canvas.drawRRect$2(0, A.RRect$fromLTRBAndCorners(J.roundToDouble$0$n(t3), J.roundToDouble$0$n(t2), B.JSNumber_methods.roundToDouble$0(t3) + _this.width, B.JSNumber_methods.roundToDouble$0(t2) + height, t4.bottomLeft, t4.bottomRight, t4.topLeft, t4.topRight), t1); }, shouldRepaint$1(oldDelegate) { var t1, _this = this; if (_this.caretHeight == oldDelegate.caretHeight) if (_this.caretOffset.$eq(0, oldDelegate.caretOffset)) t1 = _this.width !== oldDelegate.width || !_this.borderRadius.$eq(0, oldDelegate.borderRadius) || !_this.caretColor.$eq(0, oldDelegate.caretColor); else t1 = true; else t1 = true; return t1; } }; A._BlinkingCaretState_State_SingleTickerProviderStateMixin.prototype = { dispose$0(_) { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTicker()); _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); }, activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTicker$0(); } }; A.TapSequenceGestureRecognizer.prototype = { isPointerAllowed$1($event) { if (this._multi_tap_gesture$_firstTap == null) if ($event.get$buttons($event) !== 1) return false; return $event.get$buttons($event) === 1 && this.super$GestureRecognizer$isPointerAllowed($event); }, addAllowedPointer$1($event) { var t2, t3, _this = this, t1 = _this._secondTap; if (t1 != null) if (!t1.isWithinGlobalTolerance$2($event, 100)) return; else { t1 = _this._secondTap; if (!t1._tapMinTimeCountdown._multi_tap_gesture$_timeout || $event.get$buttons($event) != t1.initialButtons) { _this._multi_tap_gesture$_reset$0(); return _this._multi_tap_gesture$_trackTap$1($event); } else if (_this.onTripleTapDown != null) { t1 = $event.get$position($event); t2 = $event.get$localPosition(); t3 = _this._pointerToKind.$index(0, $event.get$pointer()); t3.toString; _this.invokeCallback$2("onTripleTapDown", new A.TapSequenceGestureRecognizer_addAllowedPointer_closure(_this, new A.TapDownDetails(t1, t3, t2 == null ? t1 : t2))); } } else { t1 = _this._multi_tap_gesture$_firstTap; if (t1 != null) if (!t1.isWithinGlobalTolerance$2($event, 100)) return; else { t1 = _this._multi_tap_gesture$_firstTap; if (!t1._tapMinTimeCountdown._multi_tap_gesture$_timeout || $event.get$buttons($event) != t1.initialButtons) { _this._multi_tap_gesture$_reset$0(); return _this._multi_tap_gesture$_trackTap$1($event); } else if (_this.onDoubleTapDown != null) { t1 = $event.get$position($event); t2 = $event.get$localPosition(); t3 = _this._pointerToKind.$index(0, $event.get$pointer()); t3.toString; _this._secondTapDownDetails = new A.TapDownDetails(t1, t3, t2 == null ? t1 : t2); _this.invokeCallback$2("onDoubleTapDown", new A.TapSequenceGestureRecognizer_addAllowedPointer_closure0(_this)); } } } _this._multi_tap_gesture$_trackTap$1($event); }, _multi_tap_gesture$_trackTap$1($event) { var t1, t2, t3, t4, t5, tracker, _this = this; _this._stopTapTimer$0(); t1 = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, $event.get$pointer(), _this); t2 = $event.get$pointer(); t3 = $event.get$position($event); t4 = $event.get$buttons($event); t5 = new A._CountdownZoned0(); A.Timer_Timer(B.Duration_40000, t5.get$_multi_tap_gesture$_onTimeout()); tracker = new A._TapTracker0(t2, t1, t3, t4, t5); _this._multi_tap_gesture$_trackers.$indexSet(0, $event.get$pointer(), tracker); if ($event.get$transform($event) != null) { t1 = $event.get$transform($event); t1.toString; if (!tracker._multi_tap_gesture$_isTrackingPointer) { tracker._multi_tap_gesture$_isTrackingPointer = true; $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$3(t2, _this.get$_multi_tap_gesture$_handleEvent(), t1); } } }, _multi_tap_gesture$_handleEvent$1($event) { var t3, t4, t5, t6, _this = this, t1 = _this._multi_tap_gesture$_trackers, t2 = t1.$index(0, $event.get$pointer()); t2.toString; if (type$.PointerUpEvent._is($event)) if (_this._multi_tap_gesture$_firstTap == null) { _this._startTapTimer$0(); _this._multi_tap_gesture$_checkUp$2($event, t2.initialButtons); t3 = t2.pointer; $.GestureBinding__instance.GestureBinding_gestureArena.hold$1(t3); t2.stopTrackingPointer$1(_this.get$_multi_tap_gesture$_handleEvent()); t1.remove$1(0, t3); _this._multi_tap_gesture$_clearTrackers$0(); _this._multi_tap_gesture$_firstTap = t2; } else { t3 = _this._secondTap; t4 = _this.get$_multi_tap_gesture$_handleEvent(); t5 = t2.initialButtons; t6 = t2.pointer; if (t3 == null) { _this._startTapTimer$0(); _this._multi_tap_gesture$_checkUp$2($event, t5); $.GestureBinding__instance.GestureBinding_gestureArena.hold$1(t6); t2.stopTrackingPointer$1(t4); t1.remove$1(0, t6); _this._multi_tap_gesture$_clearTrackers$0(); _this._secondTap = t2; } else { t3 = t3.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, B.GestureDisposition_0); t3 = t2.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, B.GestureDisposition_0); t2.stopTrackingPointer$1(t4); t1.remove$1(0, t6); _this._multi_tap_gesture$_checkUp$2($event, t5); _this._multi_tap_gesture$_reset$0(); } } else if (type$.PointerMoveEvent._is($event)) { if (!t2.isWithinGlobalTolerance$2($event, 18)) _this._multi_tap_gesture$_reject$1(t2); } else if (type$.PointerCancelEvent._is($event)) _this._multi_tap_gesture$_reject$1(t2); }, acceptGesture$1(pointer) { }, rejectGesture$1(pointer) { var t1, _this = this, tracker = _this._multi_tap_gesture$_trackers.$index(0, pointer); if (tracker == null) { t1 = _this._multi_tap_gesture$_firstTap; t1 = t1 != null && t1.pointer == pointer; } else t1 = false; if (t1) tracker = _this._multi_tap_gesture$_firstTap; if (tracker == null) { t1 = _this._secondTap; t1 = t1 != null && t1.pointer == pointer; } else t1 = false; if (t1) tracker = _this._secondTap; if (tracker != null) _this._multi_tap_gesture$_reject$1(tracker); }, _multi_tap_gesture$_reject$1(tracker) { var t2, _this = this, t1 = _this._multi_tap_gesture$_trackers; t1.remove$1(0, tracker.pointer); t2 = tracker.entry; t2._arena._resolve$3(t2._arena$_pointer, t2._member, B.GestureDisposition_1); tracker.stopTrackingPointer$1(_this.get$_multi_tap_gesture$_handleEvent()); t2 = _this._multi_tap_gesture$_firstTap; if (t2 != null || _this._secondTap != null) if (tracker == t2 || tracker == _this._secondTap) _this._multi_tap_gesture$_reset$0(); else { _this._multi_tap_gesture$_checkCancel$0(); if (t1._length === 0) _this._multi_tap_gesture$_reset$0(); } }, dispose$0(_) { this._multi_tap_gesture$_reset$0(); this.super$GestureRecognizer$dispose(0); }, _multi_tap_gesture$_onTapTimeout$0() { var t1 = this.onTimeout; if (t1 != null) this.invokeCallback$2("onTimeout", t1); this._multi_tap_gesture$_reset$0(); }, _multi_tap_gesture$_reset$0() { var t1, _this = this; _this._stopTapTimer$0(); if (_this._secondTap != null) { if (_this._multi_tap_gesture$_trackers._length !== 0) _this._multi_tap_gesture$_checkCancel$0(); t1 = _this._secondTap; t1.toString; _this._secondTap = null; _this._multi_tap_gesture$_reject$1(t1); $.GestureBinding__instance.GestureBinding_gestureArena.release$1(0, t1.pointer); } if (_this._multi_tap_gesture$_firstTap != null) { if (_this._multi_tap_gesture$_trackers._length !== 0) _this._multi_tap_gesture$_checkCancel$0(); t1 = _this._multi_tap_gesture$_firstTap; t1.toString; _this._multi_tap_gesture$_firstTap = null; _this._multi_tap_gesture$_reject$1(t1); $.GestureBinding__instance.GestureBinding_gestureArena.release$1(0, t1.pointer); } _this._multi_tap_gesture$_clearTrackers$0(); }, _multi_tap_gesture$_clearTrackers$0() { var t1 = this._multi_tap_gesture$_trackers; t1 = t1.get$values(t1); B.JSArray_methods.forEach$1(A.List_List$of(t1, true, A._instanceType(t1)._eval$1("Iterable.E")), this.get$_multi_tap_gesture$_reject()); }, _startTapTimer$0() { if (this._tapTimer == null) this._tapTimer = A.Timer_Timer(B.Duration_300000, this.get$_multi_tap_gesture$_onTapTimeout()); }, _stopTapTimer$0() { var t1 = this._tapTimer; if (t1 != null) { t1.cancel$0(0); this._tapTimer = null; } }, _multi_tap_gesture$_checkUp$2($event, buttons) { var t2, t3, _this = this, t1 = _this._multi_tap_gesture$_firstTap == null; if (t1 && _this._secondTap == null) { t1 = $event.get$position($event); t2 = $event.get$localPosition(); t3 = _this._pointerToKind.$index(0, $event.get$pointer()); t3.toString; _this._firstTapUpDetails = new A.TapUpDetails(t1, t2 == null ? t1 : t2, t3); if (_this.onTapUp != null && true) _this.invokeCallback$2("onTapUp", new A.TapSequenceGestureRecognizer__checkUp_closure(_this)); } else if (!t1 && _this._secondTap == null) { t1 = $event.get$position($event); t2 = $event.get$localPosition(); t3 = _this._pointerToKind.$index(0, $event.get$pointer()); t3.toString; _this._secondTapUpDetails = new A.TapUpDetails(t1, t2 == null ? t1 : t2, t3); if (_this.onDoubleTapUp != null && true) _this.invokeCallback$2("onDoubleTapUp", new A.TapSequenceGestureRecognizer__checkUp_closure0(_this)); t1 = _this.onDoubleTap; if (t1 != null && true) { t1.toString; _this.invokeCallback$2("onDoubleTap", t1); } } else if (_this._secondTap != null) { if (_this.onTripleTapUp != null) { t1 = $event.get$position($event); t2 = $event.get$localPosition(); t3 = _this._pointerToKind.$index(0, $event.get$pointer()); t3.toString; _this.invokeCallback$2("onTripleTapUp", new A.TapSequenceGestureRecognizer__checkUp_closure1(_this, new A.TapUpDetails(t1, t2 == null ? t1 : t2, t3))); } t1 = _this.onTripleTap; if (t1 != null) _this.invokeCallback$2("onTripleTap", t1); } }, _multi_tap_gesture$_checkCancel$0() { this._multi_tap_gesture$_firstTap != null; } }; A.TapSequenceGestureRecognizer_addAllowedPointer_closure.prototype = { call$0() { return this.$this.onTripleTapDown.call$1(this.details); }, $signature: 0 }; A.TapSequenceGestureRecognizer_addAllowedPointer_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1.onDoubleTapDown; t2.toString; t1 = t1._secondTapDownDetails; t1.toString; return t2.call$1(t1); }, $signature: 0 }; A.TapSequenceGestureRecognizer__checkUp_closure.prototype = { call$0() { var t1 = this.$this, t2 = t1.onTapUp; t2.toString; t1 = t1._firstTapUpDetails; t1.toString; return t2.call$1(t1); }, $signature: 0 }; A.TapSequenceGestureRecognizer__checkUp_closure0.prototype = { call$0() { var t1 = this.$this, t2 = t1.onDoubleTapUp; t2.toString; t1 = t1._secondTapUpDetails; t1.toString; return t2.call$1(t1); }, $signature: 0 }; A.TapSequenceGestureRecognizer__checkUp_closure1.prototype = { call$0() { return this.$this.onTripleTapUp.call$1(this.details); }, $signature: 0 }; A._TapTracker0.prototype = { stopTrackingPointer$1(route) { if (this._multi_tap_gesture$_isTrackingPointer) { this._multi_tap_gesture$_isTrackingPointer = false; $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(this.pointer, route); } }, isWithinGlobalTolerance$2($event, tolerance) { return $event.get$position($event).$sub(0, this._multi_tap_gesture$_initialGlobalPosition).get$distance() <= tolerance; } }; A._CountdownZoned0.prototype = { _multi_tap_gesture$_onTimeout$0() { this._multi_tap_gesture$_timeout = true; } }; A.Platform.prototype = {}; A.AndroidFollowingMagnifier.prototype = { build$1(_, context) { var t1 = this.offsetFromFocalPoint; return A.CompositedTransformFollower$(A.FractionalTranslation$(new A.AndroidMagnifyingGlass(t1, null), true, B.Offset_0), null, this.layerLink, t1, true, B.Alignment_m1_m1); } }; A.AndroidMagnifyingGlass.prototype = { build$1(_, context) { var _null = null; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([new A.MagnifyingGlass(this.offsetFromFocalPoint, new A.RoundedRectangleBorder(A.BorderRadius$circular(8), B.BorderSide_0CF), B.Size_92_48, 1.5, _null), A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_null, _null, _null, A.BorderRadius$circular(8), B.List_tcr, _null, B.BoxShape_0), _null, 48, _null, _null, _null, _null, _null, 92)], type$.JSArray_Widget), _null); } }; A.AndroidSelectionHandle.prototype = { build$1(_, context) { var _this = this, _null = null; switch (_this.handleType.index) { case 0: return A.Transform$rotate(B.Alignment_0_0, -0.7853981633974483, A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_this.color, _null, _null, new A.BorderRadius(new A.Radius(10, 10), B.Radius_0_0, new A.Radius(10, 10), new A.Radius(10, 10)), _null, _null, B.BoxShape_0), _null, 20, _null, _null, _null, _null, _null, 20), _null); case 1: return A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_this.color, _null, _null, new A.BorderRadius(new A.Radius(10, 10), B.Radius_0_0, new A.Radius(10, 10), new A.Radius(10, 10)), _null, _null, B.BoxShape_0), _null, 20, _null, _null, _null, _null, _null, 20); case 2: return A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_this.color, _null, _null, new A.BorderRadius(B.Radius_0_0, new A.Radius(10, 10), new A.Radius(10, 10), new A.Radius(10, 10)), _null, _null, B.BoxShape_0), _null, 20, _null, _null, _null, _null, _null, 20); default: throw A.wrapException(A.ReachabilityError$(string$.x60null_c)); } } }; A.AndroidTextEditingFloatingToolbar.prototype = { build$1(_, context) { var _this = this, _null = null; return A.Material$(B.Duration_200000, true, A.BorderRadius$circular(4), A.Row$(A._setArrayType([_this._toolbar$_buildButton$2$onPressed$title(_this.onCutPressed, "Cut"), _this._toolbar$_buildButton$2$onPressed$title(_this.onCopyPressed, "Copy"), _this._toolbar$_buildButton$2$onPressed$title(_this.onPastePressed, "Paste"), _this._toolbar$_buildButton$2$onPressed$title(_this.onSelectAllPressed, "Select All")], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null), B.Clip_0, B.Color_4294967295, 3, _null, _null, _null, _null, _null, B.MaterialType_0); }, _toolbar$_buildButton$2$onPressed$title(onPressed, title) { var _null = null, t1 = A.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, B.EdgeInsets_0_16_0_16, _null, _null, _null, _null, _null, _null, _null); return A.TextButton$(false, new A.Padding(B.EdgeInsets_8_0_8_0, A.Text$(title, _null, _null, _null, _null, _null, B.TextStyle_xKl, _null, _null, _null), _null), _null, onPressed, t1); } }; A.IOSFollowingMagnifier.prototype = { build$1(_, context) { var t1 = this.offsetFromFocalPoint; return A.CompositedTransformFollower$(A.FractionalTranslation$(A._roundedRectangleMagnifierBuilder(context, t1), true, B.Offset_0), null, this.layerLink, t1, true, B.Alignment_m1_m1); } }; A.IOSRoundedRectangleMagnifyingGlass.prototype = { build$1(_, context) { var _null = null; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([new A.MagnifyingGlass(this.offsetFromFocalPoint, B.RoundedRectangleBorder_LkV4, B.Size_72_48, 1, _null), A.Container$(_null, _null, B.Clip_0, _null, _null, B.ShapeDecoration_6Vn, _null, 48, _null, _null, _null, _null, _null, 72)], type$.JSArray_Widget), _null); } }; A.IOSSelectionHandle.prototype = { build$1(_, context) { var verticalOffset, ballDiameter, t2, verticalOffset0, t3, _this = this, _null = null, t1 = _this.handleType; switch (t1.index) { case 1: case 2: verticalOffset = _this.ballRadius; ballDiameter = verticalOffset * 2; t2 = t1 === B.HandleType_1; verticalOffset0 = t2 ? -verticalOffset : verticalOffset; t3 = A._setArrayType([], type$.JSArray_Widget); if (t2) t3.push(A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(_this.color, _null, _null, _null, _null, _null, B.BoxShape_1), _null, ballDiameter, _null, _null, _null, _null, _null, ballDiameter)); t2 = _this.color; t3.push(A.Container$(_null, _null, B.Clip_0, t2, _null, _null, _null, _this.caretHeight + verticalOffset, _null, _null, _null, _null, _null, 2)); if (t1 === B.HandleType_2) t3.push(A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(t2, _null, _null, _null, _null, _null, B.BoxShape_1), _null, ballDiameter, _null, _null, _null, _null, _null, ballDiameter)); t1 = A.Column$(t3, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); return new A.Transform(A.Matrix4_Matrix4$translationValues(0, verticalOffset0, 0), _null, true, _null, t1, _null); default: throw A.wrapException(A.Exception_Exception("Bad handle type: " + t1.toString$0(0))); } } }; A.IOSCollapsedHandle.prototype = { build$1(_, context) { return A.BlinkingCaret$(B.BorderRadius_tLn, this.caretHeight, B.Offset_0_0, this.color, this.controller, false, true, 2); } }; A.IOSTextEditingFloatingToolbar.prototype = { build$1(_, context) { var _this = this, _null = null; return A.Material$(B.Duration_200000, true, A.BorderRadius$circular(8), A.Row$(A._setArrayType([_this._buildButton$2$onPressed$title(_this.onCutPressed, "Cut"), _this._buildButton$2$onPressed$title(_this.onCopyPressed, "Copy"), _this._buildButton$2$onPressed$title(_this.onPastePressed, "Paste")], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null), B.Clip_0, B.Color_4280427042, 3, _null, _null, _null, _null, _null, B.MaterialType_0); }, _buildButton$2$onPressed$title(onPressed, title) { var _null = null, t1 = A.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, B.Size_0_0, _null, B.EdgeInsets_0_0_0_0, _null, _null, _null, _null, _null, _null, _null); return new A.SizedBox(_null, 36, A.TextButton$(false, new A.Padding(B.EdgeInsets_12_0_12_0, A.Text$(title, _null, _null, _null, _null, _null, B.TextStyle_ul3, _null, _null, _null), _null), _null, onPressed, t1), _null); } }; A.ViewportEdge.prototype = { toString$0(_) { return "ViewportEdge." + this._core$_name; } }; A.CharacterMovement__moveOffsetByWord_closure.prototype = { call$1(char) { var t1 = this._box_0, remainingOffset = t1.remainingOffset - char.length; t1.remainingOffset = remainingOffset; return remainingOffset >= 0; }, $signature: 52 }; A.CharacterMovement__moveOffsetByWord_closure0.prototype = { call$1(char) { var t1 = $.$get$_separatorRegex()._nativeRegExp; if (typeof char != "string") A.throwExpression(A.argumentErrorValue(char)); return t1.test(char); }, $signature: 52 }; A.CharacterMovement__moveOffsetByWord_closure1.prototype = { call$1(char) { var t1 = $.$get$_separatorRegex()._nativeRegExp; if (typeof char != "string") A.throwExpression(A.argumentErrorValue(char)); return !t1.test(char); }, $signature: 52 }; A.CharacterMovement__moveOffsetByCharacter_closure.prototype = { call$1(char) { var t1 = this._box_0, remainingOffset = t1.remainingOffset - char.length; t1.remainingOffset = remainingOffset; return remainingOffset >= 0; }, $signature: 52 }; A.MagnifyingGlass.prototype = { build$1(_, context) { var t2, t3, _this = this, t1 = new Float64Array(16), magnifierMatrix = new A.Matrix4(t1); magnifierMatrix.setIdentity$0(); t2 = _this.offsetFromFocalPoint; t3 = _this.magnificationScale; magnifierMatrix.translate$2(0, t2._dx * t3, t2._dy * t3); magnifierMatrix.scale$2(0, t3, t3); t1 = A.ImageFilter_ImageFilter$matrix(t1, B.FilterQuality_1); return A.ClipPath_shape(A.BackdropFilter$(A.SizedBox$fromSize(null, _this.size), t1), _this.shape); } }; A.OuterBoxShadow.prototype = { toPaint$0() { var t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1.set$color(0, this.color); t1.set$maskFilter(new A.MaskFilter(B.BlurStyle_2, A.Shadow_convertRadiusToSigma(this.blurRadius))); return t1; } }; A.ToolbarPositionDelegate.prototype = { getPositionForChild$2(size, childSize) { var t3, desiredTopLeft, constrainedOffset, _null = null, t1 = this.textFieldGlobalOffset, desiredAnchor = this.desiredTopAnchorInTextField, t2 = t1._dy + desiredAnchor._dy, fitsAboveTextField = t2 > 100; desiredAnchor = fitsAboveTextField ? desiredAnchor : this.desiredBottomAnchorInTextField.$add(0, new A.Offset(0, childSize._dy)); t3 = childSize._dx; desiredTopLeft = desiredAnchor.$sub(0, new A.Offset(t3 / 2, childSize._dy)).$add(0, t1); constrainedOffset = new A.Offset(Math.min(Math.max(A.checkNum(desiredTopLeft._dx), 0), size._dx - t3), desiredTopLeft._dy); t3 = $.$get$_log4(); t3.log$4(B.Level_FINER_400, "ToolbarPositionDelegate:", _null, _null); t3.log$4(B.Level_FINER_400, " - available space: " + size.toString$0(0), _null, _null); t3.log$4(B.Level_FINER_400, " - child size: " + childSize.toString$0(0), _null, _null); t3.log$4(B.Level_FINER_400, " - text field offset: " + t1.toString$0(0), _null, _null); t3.log$4(B.Level_FINER_400, " - ideal y-position: " + A.S(t2), _null, _null); t3.log$4(B.Level_FINER_400, " - fits above text field: " + fitsAboveTextField, _null, _null); t3.log$4(B.Level_FINER_400, " - desired anchor: " + desiredAnchor.toString$0(0), _null, _null); t3.log$4(B.Level_FINER_400, " - desired top left: " + desiredTopLeft.toString$0(0), _null, _null); t3.log$4(B.Level_FINER_400, " - actual offset: " + constrainedOffset.toString$0(0), _null, _null); return constrainedOffset; }, shouldRelayout$1(oldDelegate) { return true; } }; A.HandleType.prototype = { toString$0(_) { return "HandleType." + this._core$_name; } }; A.TextLayoutCaret.prototype = { createState$0() { return new A._TextLayoutCaretState(null, null, B._StateLifecycle_0); } }; A._TextLayoutCaretState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; t1 = A.BlinkController$(_this); _this.___TextLayoutCaretState__blinkController = t1; _this._widget.toString; t1 = A._lateReadCheck(t1, "_blinkController"); t1.startBlinking$0(); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (!t1.position.$eq(0, oldWidget.position)) { _this._widget.toString; t1 = true; } else t1 = false; if (t1) A._lateReadCheck(_this.___TextLayoutCaretState__blinkController, "_blinkController").jumpToOpaque$0(); }, dispose$0(_) { var t1; this._widget.toString; t1 = A._lateReadCheck(this.___TextLayoutCaretState__blinkController, "_blinkController"); A._lateReadCheck(t1.__BlinkController__ticker, "_ticker").dispose$0(0); t1.super$ChangeNotifier$dispose(0); this.super$__TextLayoutCaretState_State_TickerProviderStateMixin$dispose(0); }, build$1(_, context) { var height, _this = this, _null = null, t1 = _this._widget, offset = t1.textLayout.getOffsetForCaret$1(t1.position); t1 = _this._widget; t1 = t1.textLayout.getHeightForCaret$1(t1.position); if (t1 == null) { t1 = _this._widget; t1 = t1.textLayout.getLineHeightAtPosition$1(t1.position); height = t1; } else height = t1; _this._widget.toString; t1 = A._lateReadCheck(_this.___TextLayoutCaretState__blinkController, "_blinkController"); t1 = A._setArrayType([A.Positioned$fill(A.CustomPaint$(_null, _null, _null, new A.CaretPainter(t1, _this._widget.style, offset, height, t1), new A.Size(2, height)))], type$.JSArray_Widget); _this._widget.toString; return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_0, t1, _null); } }; A.CaretPainter.prototype = { paint$2(canvas, size) { var t2, t3, t4, _this = this, t1 = _this._caret_layer$_offset; if (t1 == null || _this._caret_layer$_height == null) return; t2 = t1._dx; t1 = t1._dy; t3 = _this._caret_layer$_height; t3.toString; t3 = A.RRect$fromRectAndRadius(new A.Rect(t2, t1, t2 + 2, t1 + t3), B.Radius_0_0); t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2 = _this._blinkController._blink_controller$_isVisible ? 1 : 0; t4 = _this._caretStyle.color.value; t1.set$color(0, A.Color$fromARGB(B.JSInt_methods.round$0(255 * t2), t4 >>> 16 & 255, t4 >>> 8 & 255, t4 & 255)); canvas.drawRRect$2(0, t3, t1); }, shouldRepaint$1(oldDelegate) { var _this = this; return _this._blinkController !== oldDelegate._blinkController || _this._caretStyle !== oldDelegate._caretStyle || !J.$eq$(_this._caret_layer$_offset, oldDelegate._caret_layer$_offset) || _this._caret_layer$_height != oldDelegate._caret_layer$_height; } }; A.CaretStyle.prototype = {}; A.__TextLayoutCaretState_State_TickerProviderStateMixin.prototype = { activate$0() { this.super$State$activate(); this._updateTickerModeNotifier$0(); this._updateTickers$0(); }, dispose$0(_) { var _this = this, t1 = _this.TickerProviderStateMixin__tickerModeNotifier; if (t1 != null) t1.removeListener$1(0, _this.get$_updateTickers()); _this.TickerProviderStateMixin__tickerModeNotifier = null; _this.super$State$dispose(0); } }; A.BlinkController.prototype = { dispose$0(_) { A._lateReadCheck(this.__BlinkController__ticker, "_ticker").dispose$0(0); this.super$ChangeNotifier$dispose(0); }, startBlinking$0() { var t1 = A._lateReadCheck(this.__BlinkController__ticker, "_ticker"); t1.stop$0(0); t1.start$0(0); this._lastBlinkTime = B.Duration_0; }, jumpToOpaque$0() { this._blink_controller$_isVisible = true; A._lateReadCheck(this.__BlinkController__ticker, "_ticker").stop$0(0); this.startBlinking$0(); }, _blink_controller$_onTick$1(elapsedTime) { var _this = this; if (elapsedTime._duration - _this._lastBlinkTime._duration > 500000) { _this._blink_controller$_isVisible = !_this._blink_controller$_isVisible; _this.notifyListeners$0(); _this._lastBlinkTime = elapsedTime; } }, $isListenable: 1 }; A._BlinkController_Object_ChangeNotifier.prototype = {}; A.SuperText.prototype = { createState$0() { return new A.SuperTextState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), B._StateLifecycle_0); } }; A.SuperTextState.prototype = { get$textLayout() { var t1 = A.RenderSuperTextLayout_textLayoutFrom(this._textLayoutKey); t1.toString; return t1; }, _invalidateParagraph$0() { return this._super_text$_paragraph = null; }, build$1(_, context) { var _this = this, _null = null, t1 = _this._widget.richText; return new A._SuperTextLayout(_this, A._setArrayType([new A.LayoutBuilder(new A.SuperTextState_build_closure(_this), _null), new A.LayoutAwareRichText(_this.get$_invalidateParagraph(), t1, B.TextAlign_4, _null, true, B.TextOverflow_0, 1, _null, _null, _null, B.TextWidthBasis_0, _null, A.RichText__extractChildren(t1), _null), new A.LayoutBuilder(new A.SuperTextState_build_closure0(_this), _null)], type$.JSArray_Widget), _this._textLayoutKey); } }; A.SuperTextState_build_closure.prototype = { call$2(context, constraints) { var t1 = this.$this, t2 = t1._widget, background = t2.layerBeneathBuilder; t1 = t1._super_text$_paragraph; if (t1 != null) return background.call$2(context, A.RenderParagraphProseTextLayout$(t1, t2.richText)); else return B.SizedBox_null_null_null_null; }, $signature: 276 }; A.SuperTextState_build_closure0.prototype = { call$2(context, constraints) { var t1 = this.$this, t2 = t1._widget, foreground = t2.layerAboveBuilder; t1 = t1._super_text$_paragraph; if (t1 != null) return foreground.call$2(context, A.RenderParagraphProseTextLayout$(t1, t2.richText)); else return B.SizedBox_null_null_null_null; }, $signature: 276 }; A._SuperTextLayout.prototype = { createRenderObject$1(context) { var t1 = new A.RenderSuperTextLayout(this.state, 0, null, null, A.LayerHandle$(type$.ContainerLayer_2)); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2(context, renderObject) { var t1 = this.state; if (renderObject._super_text$_state !== t1) { renderObject._super_text$_state = t1; renderObject.markNeedsLayout$0(); renderObject.markNeedsPaint$0(); } } }; A._SuperTextLayoutParentData.prototype = {}; A.RenderSuperTextLayout.prototype = { setupParentData$1(child) { if (!(child.parentData instanceof A._SuperTextLayoutParentData)) child.parentData = new A._SuperTextLayoutParentData(null, null, B.Offset_0_0); }, performLayout$0() { var children, background, text, foreground, layerConstraints, _this = this, _null = null, t1 = $.$get$layoutLog(), t2 = type$.BoxConstraints; t1.log$4(B.Level_INFO_800, "Running SuperText layout. Incoming constraints: " + A.S(t2._as(A.RenderObject.prototype.get$constraints.call(_this))), _null, _null); children = _this.getChildrenAsList$0(); background = children[0]; text = children[1]; foreground = children[2]; text.layout$2$parentUsesSize(0, t2._as(A.RenderObject.prototype.get$constraints.call(_this)), true); t2 = _this._super_text$_state; type$.RenderLayoutAwareParagraph._as(text); t2._super_text$_paragraph = text; t1.log$4(B.Level_INFO_800, "SuperText text layout size: " + text._box$_size.toString$0(0), _null, _null); t2 = text._box$_size; t2.toString; layerConstraints = A.BoxConstraints$tight(t2); t1.log$4(B.Level_FINER_400, "Laying out SuperText background layer. Constraints: " + layerConstraints.toString$0(0), _null, _null); background.layout$1(0, layerConstraints); t1.log$4(B.Level_FINER_400, "Laying out SuperText foreground layer. Constraints: " + layerConstraints.toString$0(0), _null, _null); foreground.layout$1(0, layerConstraints); t1 = text._box$_size; t1.toString; _this._box$_size = t1; }, paint$2(context, offset) { this.defaultPaint$2(context, offset); }, hitTestChildren$2$position(result, position) { return this.defaultHitTestChildren$2$position(result, position); } }; A.LayoutAwareRichText.prototype = { createRenderObject$1(context) { var t3, t4, t5, _this = this, _null = null, t1 = _this.text, t2 = _this.textDirection; if (t2 == null) { t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t2 = t2.textDirection; } t3 = _this.overflow; t4 = A.Localizations_maybeLocaleOf(context); t5 = t3 === B.TextOverflow_2 ? "\u2026" : _null; t3 = new A.RenderLayoutAwareParagraph(_this.onMarkNeedsLayout, A.TextPainter$(t5, t4, _this.maxLines, _this.strutStyle, t1, _this.textAlign, t2, _this.textHeightBehavior, _this.textScaleFactor, _this.textWidthBasis), _this.softWrap, t3, 0, _null, _null, A.LayerHandle$(type$.ContainerLayer_2)); t3.get$isRepaintBoundary(); t3.get$alwaysNeedsCompositing(); t3.__RenderObject__needsCompositing = false; t3.addAll$1(0, _null); t3._extractPlaceholderSpans$1(t1); return t3; }, updateRenderObject$2(context, renderObject) { var t1, _this = this; renderObject.set$text(0, _this.text); renderObject.set$textAlign(0, _this.textAlign); t1 = _this.textDirection; if (t1 == null) { t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; } renderObject.set$textDirection(0, t1); renderObject.set$softWrap(_this.softWrap); renderObject.set$overflow(0, _this.overflow); renderObject.set$textScaleFactor(_this.textScaleFactor); renderObject.set$maxLines(0, _this.maxLines); renderObject.set$strutStyle(0, _this.strutStyle); renderObject.set$textWidthBasis(_this.textWidthBasis); renderObject.set$textHeightBehavior(0, _this.textHeightBehavior); t1 = A.Localizations_maybeLocaleOf(context); renderObject.set$locale(0, t1); t1 = _this.onMarkNeedsLayout; if (!J.$eq$(renderObject._onMarkNeedsLayout, t1)) renderObject._onMarkNeedsLayout = t1; } }; A.RenderLayoutAwareParagraph.prototype = { markNeedsLayout$0() { this.super$RenderBox$markNeedsLayout(); this._super_text$_needsLayout = true; this._onMarkNeedsLayout.call$0(); }, performLayout$0() { this.super$RenderParagraph$performLayout(); this._super_text$_needsLayout = false; } }; A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._SuperTextLayoutParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._SuperTextLayoutParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._SuperTextState_State_ProseTextBlock.prototype = {}; A.SuperTextWithSelection.prototype = { createState$0() { return new A._SuperTextWithSelectionState(B._StateLifecycle_0); } }; A._SuperTextWithSelectionState.prototype = { initState$0() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t1.toString; _this.___SuperTextWithSelectionState__textLayoutKey = new A.LabeledGlobalKey("text_layout", type$.LabeledGlobalKey_State_StatefulWidget); t2 = $.$get$ChangeNotifier__emptyListeners(); A._lateWriteOnceCheck(_this.___SuperTextWithSelectionState__userSelections, "_userSelections"); _this.___SuperTextWithSelectionState__userSelections = new A.ValueNotifier(t1.userSelections, t2, type$.ValueNotifier_List_UserSelection); }, didUpdateWidget$1(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (t1.userSelections !== oldWidget.userSelections) { $.$get$buildsLog().log$4(B.Level_FINEST_300, "SuperTextWithSelection (" + A.Primitives_objectHashCode(_this) + ") user selections changed. Notifying optimized subtree", null, null); A._lateReadCheck(_this.___SuperTextWithSelectionState__userSelections, "_userSelections").set$value(0, _this._widget.userSelections); } }, get$textLayout() { return type$.ProseTextBlock._as(A._lateReadCheck(this.___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey").get$currentState()).get$textLayout(); }, build$1(_, context) { var _this = this; $.$get$buildsLog().log$4(B.Level_INFO_800, "Building SuperTextWithSelection (" + A.Primitives_objectHashCode(_this) + ")", null, null); return new A._RebuildOptimizedSuperTextWithSelection(A._lateReadCheck(_this.___SuperTextWithSelectionState__textLayoutKey, "_textLayoutKey"), _this._widget.richText, A._lateReadCheck(_this.___SuperTextWithSelectionState__userSelections, "_userSelections"), null); } }; A._RebuildOptimizedSuperTextWithSelection.prototype = { createState$0() { return new A._RebuildOptimizedSuperTextWithSelectionState(B._StateLifecycle_0); } }; A._RebuildOptimizedSuperTextWithSelectionState.prototype = { initState$0() { this.super$State$initState(); this.___RebuildOptimizedSuperTextWithSelectionState__cachedTextLength = this._widget.richText.toPlainText$0().length; }, didUpdateWidget$1(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.richText, oldWidget.richText)) { $.$get$buildsLog().log$4(B.Level_FINE_500, "Rich text changed. Invalidating the cached SuperText widget.", null, null); _this.___RebuildOptimizedSuperTextWithSelectionState__cachedTextLength = _this._widget.richText.toPlainText$0().length; _this._cachedSubtree = null; } }, build$1(_, context) { var t1, t2, _this = this, _null = null, _s33_ = "Building SuperTextWithSelection ("; if (_this._cachedSubtree != null) { $.$get$buildsLog().log$4(B.Level_INFO_800, _s33_ + A.Primitives_objectHashCode(_this) + "), returning cached subtree for optimized super text with selection", _null, _null); t1 = _this._cachedSubtree; t1.toString; return t1; } $.$get$buildsLog().log$4(B.Level_INFO_800, _s33_ + A.Primitives_objectHashCode(_this) + "), doing full build (no cached subtree is available)", _null, _null); t1 = _this._widget; t2 = t1.textLayoutKey; return _this._cachedSubtree = new A.SuperText(t1.richText, _this.get$_buildLayerBeneath(), _this.get$_buildLayerAbove(), t2); }, _buildLayerBeneath$2(context, textLayout) { return A.ValueListenableBuilder$(new A._RebuildOptimizedSuperTextWithSelectionState__buildLayerBeneath_closure(this, textLayout), this._widget.userSelections, type$.List_UserSelection); }, _buildLayerAbove$2(context, textLayout) { return A.ValueListenableBuilder$(new A._RebuildOptimizedSuperTextWithSelectionState__buildLayerAbove_closure(this, textLayout), this._widget.userSelections, type$.List_UserSelection); } }; A._RebuildOptimizedSuperTextWithSelectionState__buildLayerBeneath_closure.prototype = { call$3(context, value, child) { var t4, t5, _null = null, t1 = $.$get$buildsLog(), t2 = this.$this, t3 = A.Primitives_objectHashCode(t2); t1.log$4(B.Level_INFO_800, "SuperTextWithSelection (" + t3 + ") user selection changed, building new selection highlights: " + A.S(J.get$isNotEmpty$asx(t2._widget.userSelections._change_notifier$_value) ? J.get$first$ax(t2._widget.userSelections._change_notifier$_value).selection : "null"), _null, _null); t1 = A._setArrayType([], type$.JSArray_Widget); for (t3 = J.get$iterator$ax(value), t4 = this.textLayout; t3.moveNext$0();) { t5 = t3.get$current(t3); if (A._lateReadCheck(t2.___RebuildOptimizedSuperTextWithSelectionState__cachedTextLength, "_cachedTextLength") !== 0) t1.push(new A.TextLayoutSelectionHighlight(t4, t5.highlightStyle, t5.selection, _null)); else if (t5.highlightWhenEmpty) t1.push(new A.TextLayoutEmptyHighlight(t4, t5.highlightStyle, _null)); } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, $signature: 547 }; A._RebuildOptimizedSuperTextWithSelectionState__buildLayerAbove_closure.prototype = { call$3(context, value, child) { var t4, _null = null, t1 = $.$get$buildsLog(), t2 = this.$this, t3 = A.Primitives_objectHashCode(t2); t1.log$4(B.Level_INFO_800, "SuperTextWithSelection (" + t3 + ") user selection changed, building carets: " + A.S(J.get$isNotEmpty$asx(t2._widget.userSelections._change_notifier$_value) ? J.get$first$ax(t2._widget.userSelections._change_notifier$_value).selection : "null"), _null, _null); t1 = A._setArrayType([], type$.JSArray_Widget); for (t2 = J.get$iterator$ax(value), t3 = this.textLayout; t2.moveNext$0();) { t4 = t2.get$current(t2); if (t4.hasCaret) t1.push(new A.TextLayoutCaret(t3, true, t4.caretStyle, t4.selection.get$extent(), _null, _null)); } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, $signature: 547 }; A.UserSelection.prototype = { $eq(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) if (other instanceof A.UserSelection) if (A.getRuntimeType(_this) === A.getRuntimeType(other)) if (_this.selection.$eq(0, other.selection)) if (_this.highlightStyle === other.highlightStyle) if (_this.highlightWhenEmpty === other.highlightWhenEmpty) if (_this.caretStyle === other.caretStyle) t1 = _this.hasCaret === other.hasCaret && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode(_) { var t2, t3, t4, t5, t6, _this = this, t1 = _this.selection; t1 = t1.get$hashCode(t1); t2 = A.Primitives_objectHashCode(_this.highlightStyle); t3 = _this.highlightWhenEmpty ? 519018 : 218159; t4 = B.JSNull_methods.get$hashCode(null); t5 = A.Primitives_objectHashCode(_this.caretStyle); t6 = _this.hasCaret ? 519018 : 218159; return (t1 ^ t2 ^ t3 ^ t4 ^ t5 ^ 519018 ^ t6 ^ B.JSNull_methods.get$hashCode(null)) >>> 0; } }; A.ProseTextBlock.prototype = {}; A.ProseTextState.prototype = {}; A.RenderParagraphProseTextLayout.prototype = { get$_estimatedLineHeight() { var t1 = this._richText.style, t2 = t1 == null, fontSize = t2 ? null : t1.fontSize, lineHeight = t2 ? null : t1.height; t1 = fontSize == null ? 16 : fontSize; return t1 * (lineHeight == null ? 1 : lineHeight); }, getPositionNearestToOffset$1(localOffset) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextPosition_m1_TextAffinity_1; return t1.getPositionForOffset$1(localOffset); }, getOffsetAtPosition$1(position) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.Offset_0_0; return t1.getOffsetForCaret$2(position, B.Rect_0_0_0_0); }, getLineHeightAtPosition$1(position) { var t2, t3, lineHeightMultiplier, estimatedLineHeight, _this = this, t1 = _this._renderParagraph; if (t1._super_text$_needsLayout) return 0; t2 = _this._richText.style; t3 = t2 == null; lineHeightMultiplier = t3 ? null : t2.height; if (lineHeightMultiplier == null) lineHeightMultiplier = 1; if (A._lateReadCheck(_this.__RenderParagraphProseTextLayout__textLength, "_textLength") === 0) { t1 = t1.getFullHeightForCaret$1(position); if (t1 == null) { t1 = t3 ? null : t2.fontSize; estimatedLineHeight = t1; } else estimatedLineHeight = t1; return (estimatedLineHeight == null ? 0 : estimatedLineHeight) * lineHeightMultiplier; } t1 = _this.getCharacterBox$1(position); return (t1.bottom - t1.top) * lineHeightMultiplier; }, getOffsetForCaret$1(position) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.Offset_0_0; return t1.getOffsetForCaret$2(position, B.Rect_0_0_0_0); }, getHeightForCaret$1(position) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return null; return t1.getFullHeightForCaret$1(position); }, getBoxesForSelection$1(selection) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return A._setArrayType([], type$.JSArray_TextBox); return t1.getBoxesForSelection$1(selection); }, getCharacterBox$1(position) { var t2, lineHeightEstimate, characterPosition, boxes, t3, t4, t5, t6, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextBox_AHF; t2 = this._richText.toPlainText$0().length; if (t2 === 0) { lineHeightEstimate = t1.getFullHeightForCaret$1(B.TextPosition_0_TextAffinity_1); return new A.TextBox(0, 0, 0, lineHeightEstimate == null ? 0 : lineHeightEstimate, B.TextDirection_1); } characterPosition = position.offset >= t2 ? new A.TextPosition(t2 - 1, B.TextAffinity_1) : position; t2 = characterPosition.offset; boxes = t1.getBoxesForSelection$1(A.TextSelection$(B.TextAffinity_1, t2, t2 + 1, false)); t2 = type$.BoxConstraints; while (true) { if (!(boxes.length === 0 && characterPosition.offset > 0)) break; t3 = characterPosition.offset - 1; characterPosition = new A.TextPosition(t3, B.TextAffinity_1); t4 = t2._as(A.RenderObject.prototype.get$constraints.call(t1)); t5 = t1._textPainter; t5.setPlaceholderDimensions$1(t1._paragraph$_placeholderDimensions); t6 = t4.minWidth; t4 = t4.maxWidth; t5.layout$2$maxWidth$minWidth(0, t1._softWrap || t1._overflow === B.TextOverflow_2 ? t4 : 1 / 0, t6); boxes = t5._paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t3, t3 + 1, B.BoxHeightStyle_0, B.BoxWidthStyle_0); } while (true) { if (!(boxes.length === 0 && characterPosition.offset < A._lateReadCheck(this.__RenderParagraphProseTextLayout__textLength, "_textLength") - 1)) break; t3 = characterPosition.offset + 1; characterPosition = new A.TextPosition(t3, B.TextAffinity_1); t4 = t2._as(A.RenderObject.prototype.get$constraints.call(t1)); t5 = t1._textPainter; t5.setPlaceholderDimensions$1(t1._paragraph$_placeholderDimensions); t6 = t4.minWidth; t4 = t4.maxWidth; t5.layout$2$maxWidth$minWidth(0, t1._softWrap || t1._overflow === B.TextOverflow_2 ? t4 : 1 / 0, t6); boxes = t5._paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t3, t3 + 1, B.BoxHeightStyle_0, B.BoxWidthStyle_0); } return B.JSArray_methods.get$first(boxes); }, getPositionAtStartOfLine$1(currentPosition) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextPosition_m1_TextAffinity_1; return t1.getPositionForOffset$1(new A.Offset(0, t1.getOffsetForCaret$2(currentPosition, B.Rect_0_0_0_0).$add(0, new A.Offset(0, this.get$_estimatedLineHeight() / 2))._dy)); }, getPositionAtEndOfLine$1(currentPosition) { var positionOffset, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextPosition_m1_TextAffinity_1; positionOffset = t1.getOffsetForCaret$2(currentPosition, B.Rect_0_0_0_0).$add(0, new A.Offset(0, this.get$_estimatedLineHeight() / 2)); return t1.getPositionForOffset$1(new A.Offset(t1._box$_size._dx, positionOffset._dy)); }, getPositionOneLineUp$1(currentPosition) { var lineHeight, oneLineUpOffset, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return null; lineHeight = this.get$_estimatedLineHeight(); oneLineUpOffset = t1.getOffsetForCaret$2(currentPosition, B.Rect_0_0_0_0).$add(0, new A.Offset(0, lineHeight / 2)).$sub(0, new A.Offset(0, lineHeight)); if (oneLineUpOffset._dy < 0) return null; return t1.getPositionForOffset$1(oneLineUpOffset); }, getPositionOneLineDown$1(currentPosition) { var lineHeight, oneLineDownOffset, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return null; lineHeight = this.get$_estimatedLineHeight(); oneLineDownOffset = t1.getOffsetForCaret$2(currentPosition, B.Rect_0_0_0_0).$add(0, new A.Offset(0, lineHeight / 2)).$add(0, new A.Offset(0, lineHeight)); if (oneLineDownOffset._dy > t1._box$_size._dy) return null; return t1.getPositionForOffset$1(oneLineDownOffset); }, getPositionInFirstLineAtX$1(x) { if (this._renderParagraph._super_text$_needsLayout) return B.TextPosition_m1_TextAffinity_1; return this.getPositionNearestToOffset$1(new A.Offset(x, 0)); }, getPositionInLastLineAtX$1(x) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextPosition_m1_TextAffinity_1; return this.getPositionNearestToOffset$1(new A.Offset(x, t1._box$_size._dy)); }, isTextAtOffset$1(localOffset) { var boxes, _i, box, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return false; boxes = t1.getBoxesForSelection$1(A.TextSelection$(B.TextAffinity_1, 0, A._lateReadCheck(this.__RenderParagraphProseTextLayout__textLength, "_textLength"), false)); for (t1 = boxes.length, _i = 0; _i < boxes.length; boxes.length === t1 || (0, A.throwConcurrentModificationError)(boxes), ++_i) { box = boxes[_i]; if (new A.Rect(box.left, box.top, box.right, box.bottom).contains$1(0, localOffset)) return true; } return false; }, getWordSelectionAt$1(position) { var wordRange, t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return B.TextSelection_ke5; t1._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(t1))); wordRange = t1._textPainter._paragraph.getWordBoundary$1(0, position); return A.TextSelection$(B.TextAffinity_1, wordRange.start, wordRange.end, false); }, $isTextLayout: 1 }; A._ProseTextState_State_ProseTextBlock.prototype = {}; A.TextLayoutSelectionHighlight.prototype = { build$1(_, context) { var _null = null, t1 = this.style.color, t2 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t2.set$color(0, t1); return A.CustomPaint$(_null, _null, _null, new A.TextSelectionPainter(this.textLayout, this.selection, t1, t2, _null), B.Size_0_0); } }; A.TextLayoutEmptyHighlight.prototype = { build$1(_, context) { var _null = null; return A.CustomPaint$(_null, _null, _null, new A._EmptyHighlightPainter(20, this.textLayout.getLineHeightAtPosition$1(B.TextPosition_m1_TextAffinity_1), this.style, _null), B.Size_0_0); } }; A._EmptyHighlightPainter.prototype = { paint$2(canvas, size) { var t1 = $.$get$useCanvasKit() ? A.CkPaint$() : new A.SurfacePaint(new A.SurfacePaintData()); t1.set$color(0, this.style.color); canvas.drawRect$2(0, new A.Rect(0, 0, this.width, 0 + this.height), t1); }, shouldRepaint$1(oldDelegate) { return false; } }; A.SelectionHighlightStyle.prototype = {}; A.TextSelectionPainter.prototype = { paint$2(canvas, size) { var selectionBoxes, _i, box, t3, t4, t5, t6, rect, t1 = this.textSelection, t2 = t1.$eq(0, B.TextSelection_ke5); if (t2) return; selectionBoxes = this.textLayout.getBoxesForSelection$1(t1); for (t1 = selectionBoxes.length, t2 = this._selectionPaint, _i = 0; _i < selectionBoxes.length; selectionBoxes.length === t1 || (0, A.throwConcurrentModificationError)(selectionBoxes), ++_i) { box = selectionBoxes[_i]; t3 = box.left; t4 = box.top; t5 = t4 - 2; t6 = t3 + (box.right - t3); t4 = t5 + (box.bottom - t4 + 4); rect = new A.Rect(t3, t5, t6, t4); canvas.drawRect$2(0, t6 - t3 > 0 ? rect : new A.Rect(t3, t5, t3 + 5, t5 + (t4 - t5)), t2); } }, shouldRepaint$1(oldDelegate) { return this.textLayout !== oldDelegate.textLayout || !this.textSelection.$eq(0, oldDelegate.textSelection) || !this.selectionColor.$eq(0, oldDelegate.selectionColor); } }; A.ArMessages.prototype = { prefixAgo$0() { return "\u0645\u0646\u0630"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { var t1, t2; if (seconds === 1) return "\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629"; else if (seconds === 2) return "\u062b\u0627\u0646\u064a\u062a\u064a\u0646"; else { t1 = seconds > 2 && seconds < 11; t2 = "" + seconds; if (t1) return t2 + " \u062b\u0648\u0627\u0646\u064a"; else return t2 + " \u062b\u0627\u0646\u064a\u0629"; } }, aboutAMinute$1(minutes) { return "\u062d\u0648\u0627\u0644\u064a \u062f\u0642\u064a\u0642\u0629"; }, minutes$1(minutes) { var t1, t2; if (minutes === 1) return "\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629"; else if (minutes === 2) return "\u062f\u0642\u064a\u0642\u062a\u064a\u0646"; else { t1 = minutes > 2 && minutes < 11; t2 = "" + minutes; if (t1) return t2 + " \u062f\u0642\u0627\u0626\u0642"; else return t2 + " \u062f\u0642\u064a\u0642\u0629"; } }, aboutAnHour$1(minutes) { return "\u062d\u0648\u0627\u0644\u064a \u0627\u0644\u0633\u0627\u0639\u0629"; }, hours$1(hours) { var t1, t2; if (hours === 1) return "\u0633\u0627\u0639\u0629"; else if (hours === 2) return "\u0633\u0627\u0639\u062a\u064a\u0646"; else { t1 = hours > 2 && hours < 11; t2 = "" + hours; if (t1) return t2 + " \u0633\u0627\u0639\u0627\u062a"; else return t2 + " \u0633\u0627\u0639\u0629"; } }, aDay$1(hours) { return "\u064a\u0648\u0645"; }, days$1(days) { var t1, t2; if (days === 1) return "\u064a\u0648\u0645 \u0648\u0627\u062d\u062f"; else if (days === 2) return "\u064a\u0648\u0645\u064a\u0646"; else { t1 = days > 2 && days < 11; t2 = "" + days; if (t1) return t2 + " \u0627\u064a\u0627\u0645"; else return t2 + " \u064a\u0648\u0645"; } }, aboutAMonth$1(days) { return "\u062d\u0648\u0627\u0644\u064a \u0634\u0647\u0631"; }, months$1(months) { if (months === 1) return "\u0645\u0646\u0630 \u0634\u0647\u0631"; else if (months === 2) return "\u0645\u0646\u0630 \u0634\u0647\u0631\u064a\u0646"; else if (months > 2 && months < 11) return "" + months + " \u0627\u0634\u0647\u0631"; else if (months > 10) return "" + months + " \u0634\u0647\u0631"; return "" + months + " \u0634\u0647\u0648\u0631"; }, aboutAYear$1(year) { return "\u0642\u0628\u0644 \u0633\u0646\u0629"; }, years$1(years) { var t1, t2; if (years === 1) return "\u0645\u0646\u0630 \u0633\u0646\u0629"; else if (years === 2) return "\u0645\u0646\u0630 \u0633\u0646\u062a\u064a\u0646"; else { t1 = years > 2 && years < 11; t2 = "" + years; if (t1) return t2 + " \u0633\u0646\u0648\u0627\u062a"; else return t2 + " \u0633\u0646\u0629"; } }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.CaMessages.prototype = { prefixAgo$0() { return "fa"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "un moment"; }, aboutAMinute$1(minutes) { return "un minut"; }, minutes$1(minutes) { return "" + minutes + " minuts"; }, aboutAnHour$1(minutes) { return "una hora"; }, hours$1(hours) { return "" + hours + " hores"; }, aDay$1(hours) { return "un dia"; }, days$1(days) { return "" + days + " dies"; }, aboutAMonth$1(days) { return "un mes"; }, months$1(months) { return "" + months + " mesos"; }, aboutAYear$1(year) { return "un any"; }, years$1(years) { return "" + years + " anys"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.CsMessages.prototype = { prefixAgo$0() { return "p\u0159ed"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "chv\xedl\xed"; }, aboutAMinute$1(minutes) { return "minutou"; }, minutes$1(minutes) { var _s8_ = "minutami"; return A._pluralize(minutes, "minutou", _s8_, _s8_); }, aboutAnHour$1(minutes) { return "hodinou"; }, hours$1(hours) { var _s8_ = "hodinami"; return A._pluralize(hours, "hodinou", _s8_, _s8_); }, aDay$1(hours) { return "dnem"; }, days$1(days) { return A._pluralize(days, "dnem", "dny", "dny"); }, aboutAMonth$1(days) { return "m\u011bs\xedcem"; }, months$1(months) { return A._pluralize(months, "m\u011bs\xedcem", "m\u011bs\xedci", "m\u011bs\xedci"); }, aboutAYear$1(year) { return "rokem"; }, years$1(years) { return A._pluralize(years, "rokem", "roky", "roky"); }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.DaMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "siden"; }, lessThanOneMinute$1(seconds) { return "et \xf8jeblik"; }, aboutAMinute$1(minutes) { return "et minut"; }, minutes$1(minutes) { return "" + minutes + " minutter"; }, aboutAnHour$1(minutes) { return "omkring en time"; }, hours$1(hours) { return "" + hours + " timer"; }, aDay$1(hours) { return "en dag"; }, days$1(days) { return "" + days + " dage"; }, aboutAMonth$1(days) { return "omkring en m\xe5ned"; }, months$1(months) { return "" + months + " m\xe5neder"; }, aboutAYear$1(year) { return "omkring et \xe5r"; }, years$1(years) { return "" + years + " \xe5r"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.DeMessages.prototype = { prefixAgo$0() { return "vor"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "weniger als einer Minute"; }, aboutAMinute$1(minutes) { return "einer Minute"; }, minutes$1(minutes) { return "" + minutes + " Minuten"; }, aboutAnHour$1(minutes) { return "~1 Stunde"; }, hours$1(hours) { return "" + hours + " Stunden"; }, aDay$1(hours) { return "~1 Tag"; }, days$1(days) { return "" + days + " Tagen"; }, aboutAMonth$1(days) { return "~1 Monat"; }, months$1(months) { return "" + months + " Monaten"; }, aboutAYear$1(year) { return "~1 Jahr"; }, years$1(years) { return "" + years + " Jahren"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.EnMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "ago"; }, lessThanOneMinute$1(seconds) { return "a moment"; }, aboutAMinute$1(minutes) { return "a minute"; }, minutes$1(minutes) { return "" + minutes + " minutes"; }, aboutAnHour$1(minutes) { return "about an hour"; }, hours$1(hours) { return "" + hours + " hours"; }, aDay$1(hours) { return "a day"; }, days$1(days) { return "" + days + " days"; }, aboutAMonth$1(days) { return "about a month"; }, months$1(months) { return "" + months + " months"; }, aboutAYear$1(year) { return "about a year"; }, years$1(years) { return "" + years + " years"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.EnShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "now"; }, aboutAMinute$1(minutes) { return "1m"; }, minutes$1(minutes) { return "" + minutes + "m"; }, aboutAnHour$1(minutes) { return "~1h"; }, hours$1(hours) { return "" + hours + "h"; }, aDay$1(hours) { return "~1d"; }, days$1(days) { return "" + days + "d"; }, aboutAMonth$1(days) { return "~1mo"; }, months$1(months) { return "" + months + "mo"; }, aboutAYear$1(year) { return "~1y"; }, years$1(years) { return "" + years + "y"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.EsMessages.prototype = { prefixAgo$0() { return "hace"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "un momento"; }, aboutAMinute$1(minutes) { return "un minuto"; }, minutes$1(minutes) { return "" + minutes + " minutos"; }, aboutAnHour$1(minutes) { return "una hora"; }, hours$1(hours) { return "" + hours + " horas"; }, aDay$1(hours) { return "un d\xeda"; }, days$1(days) { return "" + days + " d\xedas"; }, aboutAMonth$1(days) { return "un mes"; }, months$1(months) { return "" + months + " meses"; }, aboutAYear$1(year) { return "un a\xf1o"; }, years$1(years) { return "" + years + " a\xf1os"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.EsShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "ahora"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1 hr"; }, hours$1(hours) { return "" + hours + " hr"; }, aDay$1(hours) { return "~1 d\xeda"; }, days$1(days) { return "" + days + " d\xedas"; }, aboutAMonth$1(days) { return "~1 mes"; }, months$1(months) { return "" + months + " meses"; }, aboutAYear$1(year) { return "~1 a\xf1o"; }, years$1(years) { return "" + years + " a\xf1os"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.FaMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "\u067e\u06cc\u0634"; }, lessThanOneMinute$1(seconds) { return "\u0686\u0646\u062f \u0644\u062d\u0638\u0647"; }, aboutAMinute$1(minutes) { return "\u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647"; }, minutes$1(minutes) { return "" + minutes + " \u062f\u0642\u06cc\u0642\u0647"; }, aboutAnHour$1(minutes) { return "~\u06cc\u06a9 \u0633\u0627\u0639\u062a"; }, hours$1(hours) { return "" + hours + " \u0633\u0627\u0639\u062a"; }, aDay$1(hours) { return "~\u06cc\u06a9 \u0631\u0648\u0632"; }, days$1(days) { return "" + days + " \u0631\u0648\u0632"; }, aboutAMonth$1(days) { return "~\u06cc\u06a9 \u0645\u0627\u0647"; }, months$1(months) { return "" + months + " \u0645\u0627\u0647"; }, aboutAYear$1(year) { return "~\u06cc\u06a9 \u0633\u0627\u0644"; }, years$1(years) { return "" + years + " \u0633\u0627\u0644"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.FrMessages.prototype = { prefixAgo$0() { return "il y a"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "moins d'une minute"; }, aboutAMinute$1(minutes) { return "environ une minute"; }, minutes$1(minutes) { return "environ " + minutes + " minutes"; }, aboutAnHour$1(minutes) { return "environ une heure"; }, hours$1(hours) { return "" + hours + " heures"; }, aDay$1(hours) { return "environ un jour"; }, days$1(days) { return "environ " + days + " jours"; }, aboutAMonth$1(days) { return "environ un mois"; }, months$1(months) { return "environ " + months + " mois"; }, aboutAYear$1(year) { return "un an"; }, years$1(years) { return "" + years + " ans"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.FrShortMessages.prototype = { prefixAgo$0() { return "il y a"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "moins d'une minute"; }, aboutAMinute$1(minutes) { return "une minute"; }, minutes$1(minutes) { return "" + minutes + " minutes"; }, aboutAnHour$1(minutes) { return "une heure"; }, hours$1(hours) { return "" + hours + " heures"; }, aDay$1(hours) { return "un jour"; }, days$1(days) { return "" + days + " jours"; }, aboutAMonth$1(days) { return "un mois"; }, months$1(months) { return "" + months + " mois"; }, aboutAYear$1(year) { return "un an"; }, years$1(years) { return "" + years + " ans"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.ItMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "fa"; }, lessThanOneMinute$1(seconds) { return "meno di un minuto"; }, aboutAMinute$1(minutes) { return "circa un minuto"; }, minutes$1(minutes) { return "" + minutes + " minuti"; }, aboutAnHour$1(minutes) { return "circa un'ora"; }, hours$1(hours) { return "" + hours + " ore"; }, aDay$1(hours) { return "circa un giorno"; }, days$1(days) { return "" + days + " giorni"; }, aboutAMonth$1(days) { return "circa un mese"; }, months$1(months) { return "" + months + " mesi"; }, aboutAYear$1(year) { return "circa un anno"; }, years$1(years) { return "" + years + " anni"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.ItShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "ora"; }, aboutAMinute$1(minutes) { return "1 m"; }, minutes$1(minutes) { return "" + minutes + " m"; }, aboutAnHour$1(minutes) { return "~1 o"; }, hours$1(hours) { return "" + hours + " o"; }, aDay$1(hours) { return "~1 g"; }, days$1(days) { return "" + days + " g"; }, aboutAMonth$1(days) { return "~1 m"; }, months$1(months) { return "" + months + " m"; }, aboutAYear$1(year) { return "~1 a"; }, years$1(years) { return "" + years + " a"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.JaMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "\u524d"; }, lessThanOneMinute$1(seconds) { return "" + seconds + "\u79d2"; }, aboutAMinute$1(minutes) { return "\u7d041\u5206"; }, minutes$1(minutes) { return "" + minutes + "\u5206"; }, aboutAnHour$1(minutes) { return "\u7d041\u6642\u9593"; }, hours$1(hours) { return "" + hours + "\u6642\u9593"; }, aDay$1(hours) { return "1\u65e5"; }, days$1(days) { return "" + days + "\u65e5"; }, aboutAMonth$1(days) { return "\u7d041\u304b\u6708"; }, months$1(months) { return "" + months + "\u304b\u6708"; }, aboutAYear$1(year) { return "\u7d041\u5e74"; }, years$1(years) { return "" + years + "\u5e74"; }, wordSeparator$0() { return ""; }, $isLookupMessages: 1 }; A.NbNoShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "n\xe5"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1 t"; }, hours$1(hours) { return "" + hours + " t"; }, aDay$1(hours) { return "~1 d"; }, days$1(days) { return "" + days + " d"; }, aboutAMonth$1(days) { return "~1 mnd"; }, months$1(months) { return "" + months + " mnd"; }, aboutAYear$1(year) { return "~1 \xe5r"; }, years$1(years) { return "" + years + " \xe5r"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.NbNoMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "siden"; }, lessThanOneMinute$1(seconds) { return "ett \xf8yeblikk"; }, aboutAMinute$1(minutes) { return "ett minutt"; }, minutes$1(minutes) { return "" + minutes + " minutter"; }, aboutAnHour$1(minutes) { return "rundt en time"; }, hours$1(hours) { return "" + hours + " timer"; }, aDay$1(hours) { return "en dag"; }, days$1(days) { return "" + days + " dager"; }, aboutAMonth$1(days) { return "omtrent en m\xe5ned"; }, months$1(months) { return "" + months + " m\xe5neder"; }, aboutAYear$1(year) { return "omtrent et \xe5r"; }, years$1(years) { return "" + years + " \xe5r"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.NlMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "geleden"; }, lessThanOneMinute$1(seconds) { return "een moment"; }, aboutAMinute$1(minutes) { return "\xe9\xe9n minuut"; }, minutes$1(minutes) { return "" + minutes + " minuten"; }, aboutAnHour$1(minutes) { return "ongeveer \xe9\xe9n uur"; }, hours$1(hours) { return "" + hours + " uur"; }, aDay$1(hours) { return "\xe9\xe9n dag"; }, days$1(days) { return "" + days + " dagen"; }, aboutAMonth$1(days) { return "ongeveer \xe9\xe9n maand"; }, months$1(months) { return "" + months + " maanden"; }, aboutAYear$1(year) { return "ongeveer \xe9\xe9n jaar"; }, years$1(years) { return "" + years + " jaren"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.NlShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "nu"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1 u"; }, hours$1(hours) { return "" + hours + " u"; }, aDay$1(hours) { return "~1 d"; }, days$1(days) { return "" + days + " d"; }, aboutAMonth$1(days) { return "~1 ma"; }, months$1(months) { return "" + months + " ma"; }, aboutAYear$1(year) { return "~1 jr"; }, years$1(years) { return "" + years + " jr"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.PlMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "temu"; }, lessThanOneMinute$1(seconds) { return "chwil\u0119"; }, aboutAMinute$1(minutes) { return "oko\u0142o minuty"; }, minutes$1(minutes) { return this._pluralize$3(minutes, "minuty", "minut"); }, aboutAnHour$1(minutes) { return "oko\u0142o godziny"; }, hours$1(hours) { return this._pluralize$3(hours, "godziny", "godzin"); }, aDay$1(hours) { return "dzie\u0144"; }, days$1(days) { return "" + days + " dni"; }, aboutAMonth$1(days) { return "oko\u0142o miesi\u0105ca"; }, months$1(months) { return this._pluralize$3(months, "miesi\u0105ce", "miesi\u0119cy"); }, aboutAYear$1(year) { return "oko\u0142o roku"; }, years$1(years) { return this._pluralize$3(years, "lata", "lat"); }, wordSeparator$0() { return " "; }, _pluralize$3(n, form1, form2) { var t1 = B.JSInt_methods.$mod(n, 10); if (t1 >= 2) if (t1 <= 4) { t1 = B.JSInt_methods.$mod(n, 100); t1 = t1 < 10 || t1 >= 20; } else t1 = false; else t1 = false; if (t1) return "" + n + " " + form1; return "" + n + " " + form2; }, $isLookupMessages: 1 }; A.PtBrMessages.prototype = { prefixAgo$0() { return "h\xe1"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "poucos segundos"; }, aboutAMinute$1(minutes) { return "1 minuto"; }, minutes$1(minutes) { return "" + minutes + " minutos"; }, aboutAnHour$1(minutes) { return "1 hora"; }, hours$1(hours) { return "" + hours + " horas"; }, aDay$1(hours) { return "1 dia"; }, days$1(days) { return "" + days + " dias"; }, aboutAMonth$1(days) { return "1 m\xeas"; }, months$1(months) { return "" + months + " meses"; }, aboutAYear$1(year) { return "1 ano"; }, years$1(years) { return "" + years + " anos"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.PtBrShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "agora"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1h"; }, hours$1(hours) { return "" + hours + " h"; }, aDay$1(hours) { return "~1 dia"; }, days$1(days) { return "" + days + " dias"; }, aboutAMonth$1(days) { return "~1 m\xeas"; }, months$1(months) { return "" + months + " meses"; }, aboutAYear$1(year) { return "~1 ano"; }, years$1(years) { return "" + years + " anos"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.RoMessages.prototype = { prefixAgo$0() { return "acum"; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "o clipit\u0103"; }, aboutAMinute$1(minutes) { return "un minut"; }, minutes$1(minutes) { return "" + minutes + " minute"; }, aboutAnHour$1(minutes) { return "o or\u0103"; }, hours$1(hours) { return "" + hours + " ore"; }, aDay$1(hours) { return "o zi"; }, days$1(days) { return "" + days + " zile"; }, aboutAMonth$1(days) { return "o luna"; }, months$1(months) { return "" + months + " luni"; }, aboutAYear$1(year) { return "un an"; }, years$1(years) { return "" + years + " ani"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.RoShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "acum"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1 or\u0103"; }, hours$1(hours) { return "" + hours + " ore"; }, aDay$1(hours) { return "~1 zi"; }, days$1(days) { return "" + days + " zile"; }, aboutAMonth$1(days) { return "~1 luni"; }, months$1(months) { return "" + months + " luni"; }, aboutAYear$1(year) { return "~1 ani"; }, years$1(years) { return "" + years + " ani"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.RuMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "\u043d\u0430\u0437\u0430\u0434"; }, lessThanOneMinute$1(seconds) { return "\u043c\u0438\u043d\u0443\u0442\u0443"; }, aboutAMinute$1(minutes) { return "\u043c\u0438\u043d\u0443\u0442\u0443"; }, minutes$1(minutes) { return "" + minutes + " " + this._convert$2(minutes, "minutes"); }, aboutAnHour$1(minutes) { return "\u0447\u0430\u0441"; }, hours$1(hours) { return "" + hours + " " + this._convert$2(hours, "hours"); }, aDay$1(hours) { return "\u0434\u0435\u043d\u044c"; }, days$1(days) { return "" + days + " " + this._convert$2(days, "days"); }, aboutAMonth$1(days) { return "\u043c\u0435\u0441\u044f\u0446"; }, months$1(months) { return "" + months + " " + this._convert$2(months, "months"); }, aboutAYear$1(year) { return "\u0433\u043e\u0434"; }, years$1(years) { return "" + years + " " + this._convert$2(years, "years"); }, wordSeparator$0() { return " "; }, _convert$2(number, type) { var t1, mod = B.JSInt_methods.$mod(number, 10), modH = B.JSInt_methods.$mod(number, 100); if (mod === 1 && modH !== 11) switch (type) { case "minutes": return "\u043c\u0438\u043d\u0443\u0442\u0443"; case "hours": return "\u0447\u0430\u0441"; case "days": return "\u0434\u0435\u043d\u044c"; case "months": return "\u043c\u0435\u0441\u044f\u0446"; case "years": return "\u0433\u043e\u0434"; default: return ""; } else { t1 = type$.JSArray_int; if (B.JSArray_methods.contains$1(A._setArrayType([2, 3, 4], t1), mod) && !B.JSArray_methods.contains$1(A._setArrayType([12, 13, 14], t1), modH)) switch (type) { case "minutes": return "\u043c\u0438\u043d\u0443\u0442\u044b"; case "hours": return "\u0447\u0430\u0441\u0430"; case "days": return "\u0434\u043d\u044f"; case "months": return "\u043c\u0435\u0441\u044f\u0446\u0430"; case "years": return "\u0433\u043e\u0434\u0430"; default: return ""; } } switch (type) { case "minutes": return "\u043c\u0438\u043d\u0443\u0442"; case "hours": return "\u0447\u0430\u0441\u043e\u0432"; case "days": return "\u0434\u043d\u0435\u0439"; case "months": return "\u043c\u0435\u0441\u044f\u0446\u0435\u0432"; case "years": return "\u043b\u0435\u0442"; default: return ""; } }, $isLookupMessages: 1 }; A.RuShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "\u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0442\u043e"; }, aboutAMinute$1(minutes) { return "1 \u043c\u0438\u043d."; }, minutes$1(minutes) { return "" + minutes + " \u043c\u0438\u043d."; }, aboutAnHour$1(minutes) { return "~1 \u0447."; }, hours$1(hours) { return "" + hours + " \u0447."; }, aDay$1(hours) { return "~1 \u0434."; }, days$1(days) { return "" + days + " \u0434."; }, aboutAMonth$1(days) { return "~1 \u043c\u0435\u0441."; }, months$1(months) { return "" + months + " \u043c\u0435\u0441."; }, aboutAYear$1(year) { return "~1 \u0433."; }, years$1(years) { return "" + years + " \u0433."; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.SvMessages.prototype = { prefixAgo$0() { return "f\xf6r"; }, suffixAgo$0() { return "sedan"; }, lessThanOneMinute$1(seconds) { return "en stund"; }, aboutAMinute$1(minutes) { return "en minut"; }, minutes$1(minutes) { return "" + minutes + " minuter"; }, aboutAnHour$1(minutes) { return "ungef\xe4r en timme"; }, hours$1(hours) { return "" + hours + " timmar"; }, aDay$1(hours) { return "en dag"; }, days$1(days) { return "" + days + " dagar"; }, aboutAMonth$1(days) { return "ungef\xe4r en m\xe5nad"; }, months$1(months) { return "" + months + " m\xe5nader"; }, aboutAYear$1(year) { return "ungef\xe4r ett \xe5r"; }, years$1(years) { return "" + years + " \xe5r"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.SvShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "nu"; }, aboutAMinute$1(minutes) { return "1 min"; }, minutes$1(minutes) { return "" + minutes + " min"; }, aboutAnHour$1(minutes) { return "~1 h"; }, hours$1(hours) { return "" + hours + " h"; }, aDay$1(hours) { return "~1 d"; }, days$1(days) { return "" + days + " d"; }, aboutAMonth$1(days) { return "~1 m\xe5n"; }, months$1(months) { return "" + months + " m\xe5n"; }, aboutAYear$1(year) { return "~1 \xe5r"; }, years$1(years) { return "" + years + " \xe5r"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.ThMessages.prototype = { prefixAgo$0() { return "\u0e40\u0e21\u0e37\u0e48\u0e2d"; }, suffixAgo$0() { return "\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27"; }, lessThanOneMinute$1(seconds) { return "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e23\u0e39\u0e48\u0e19\u0e35\u0e49"; }, aboutAMinute$1(minutes) { return "\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e19\u0e32\u0e17\u0e35"; }, minutes$1(minutes) { return "" + minutes + " \u0e19\u0e32\u0e17\u0e35"; }, aboutAnHour$1(minutes) { return "\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, hours$1(hours) { return "" + hours + " \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, aDay$1(hours) { return "\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e27\u0e31\u0e19"; }, days$1(days) { return "" + days + " \u0e27\u0e31\u0e19"; }, aboutAMonth$1(days) { return "\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e40\u0e14\u0e37\u0e2d\u0e19"; }, months$1(months) { return "" + months + " \u0e40\u0e14\u0e37\u0e2d\u0e19"; }, aboutAYear$1(year) { return "\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e1b\u0e35"; }, years$1(years) { return "" + years + " \u0e1b\u0e35"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.ThShortMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return ""; }, lessThanOneMinute$1(seconds) { return "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e23\u0e39\u0e48"; }, aboutAMinute$1(minutes) { return "1 \u0e19\u0e32\u0e17\u0e35"; }, minutes$1(minutes) { return "" + minutes + " \u0e19\u0e32\u0e17\u0e35"; }, aboutAnHour$1(minutes) { return "~1 \u0e0a\u0e21"; }, hours$1(hours) { return "" + hours + " \u0e0a\u0e21"; }, aDay$1(hours) { return "~1 \u0e27"; }, days$1(days) { return "" + days + " \u0e27"; }, aboutAMonth$1(days) { return "~1 \u0e14"; }, months$1(months) { return "" + months + " \u0e14"; }, aboutAYear$1(year) { return "~1 \u0e1b"; }, years$1(years) { return "" + years + " \u0e1b"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.ZhMessages.prototype = { prefixAgo$0() { return ""; }, suffixAgo$0() { return "\u524d"; }, lessThanOneMinute$1(seconds) { return "\u5c11\u65bc\u4e00\u5206\u9418"; }, aboutAMinute$1(minutes) { return "\u7d041\u5206\u9418"; }, minutes$1(minutes) { return "" + minutes + " \u5206"; }, aboutAnHour$1(minutes) { return "\u7d041\u5c0f\u6642"; }, hours$1(hours) { return "\u7d04 " + hours + " \u5c0f\u6642"; }, aDay$1(hours) { return "\u7d041\u5929"; }, days$1(days) { return "\u7d04 " + days + " \u65e5"; }, aboutAMonth$1(days) { return "\u7d041\u500b\u6708"; }, months$1(months) { return "\u7d04 " + months + " \u6708"; }, aboutAYear$1(year) { return "\u7d041\u5e74"; }, years$1(years) { return "\u7d04 " + years + " \u5e74"; }, wordSeparator$0() { return " "; }, $isLookupMessages: 1 }; A.format_closure.prototype = { call$1(str) { return str.length !== 0; }, $signature: 52 }; A.MethodChannelUrlLauncher.prototype = { canLaunch$1(url) { var t1 = type$.bool; return B.MethodChannel_EYo._invokeMethod$1$3$arguments$missingOk("canLaunch", A.LinkedHashMap_LinkedHashMap$_literal(["url", url], type$.String, type$.Object), false, t1).then$1$1(0, new A.MethodChannelUrlLauncher_canLaunch_closure(), t1); }, launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(url, enableDomStorage, enableJavaScript, headers, universalLinksOnly, useSafariVC, useWebView, webOnlyWindowName) { var t1 = type$.bool; return B.MethodChannel_EYo._invokeMethod$1$3$arguments$missingOk("launch", A.LinkedHashMap_LinkedHashMap$_literal(["url", url, "useSafariVC", useSafariVC, "useWebView", false, "enableJavaScript", false, "enableDomStorage", false, "universalLinksOnly", false, "headers", headers], type$.String, type$.Object), false, t1).then$1$1(0, new A.MethodChannelUrlLauncher_launch_closure(), t1); } }; A.MethodChannelUrlLauncher_canLaunch_closure.prototype = { call$1(value) { return value === true; }, $signature: 539 }; A.MethodChannelUrlLauncher_launch_closure.prototype = { call$1(value) { return value === true; }, $signature: 539 }; A.UrlLauncherPlatform.prototype = {}; A.UrlLauncherPlugin.prototype = { canLaunch$1(url) { var t1 = $.$get$UrlLauncherPlugin__supportedSchemes(), t2 = A.Uri_tryParse(url); return A.Future_Future$value(t1.contains$1(0, t2 == null ? null : t2.get$scheme()), type$.bool); }, launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(url, enableDomStorage, enableJavaScript, headers, universalLinksOnly, useSafariVC, useWebView, webOnlyWindowName) { var t1, target; if (this._isSafari) { t1 = A.Uri_tryParse(url); t1 = t1 == null ? null : t1.get$scheme(); t1 = J.containsKey$1$x(B.Set_4e8j2._collection$_map, t1); } else t1 = false; target = t1 ? "_top" : ""; return A.Future_Future$value(B.Window_methods.open$2(this._url_launcher_web$_window, url, target) != null, type$.bool); } }; A.Uuid.prototype = { get$_uuid$_state() { var t2, t1 = $.$get$Uuid__stateExpando(); t1.toString; A.Expando__checkType(this); t1 = t1._jsWeakMap; t2 = t1.get(this); if (t2 == null) { t2 = A.LinkedHashMap_LinkedHashMap$_literal(["seedBytes", null, "node", null, "clockSeq", null, "mSecs", 0, "nSecs", 0, "hasInitV1", false, "hasInitV4", false], type$.String, type$.dynamic); t1.set(this, t2); t1 = t2; } else t1 = t2; return t1; }, _initV4$0() { var _s9_ = "hasInitV4", t1 = J.$index$asx(this.get$_uuid$_state(), _s9_); t1.toString; if (!A._asBoolS(t1)) { t1 = this.get$_uuid$_state(); J.$indexSet$ax(t1, "globalRNG", A.uuid_util_UuidUtil_mathRNG$closure()); J.$indexSet$ax(this.get$_uuid$_state(), _s9_, true); } }, v1$0() { var seedBytes, nodeId, t2, t3, t4, clockSeq, nSecs, mSecs, tl, tmh, node, n, _this = this, _s9_ = "hasInitV1", _s9_0 = "seedBytes", _s4_ = "node", _s8_ = "clockSeq", _s5_ = "mSecs", _s5_0 = "nSecs", buf = new Uint8Array(16), options = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), t1 = J.$index$asx(_this.get$_uuid$_state(), _s9_); t1.toString; if (!A._asBoolS(t1)) { seedBytes = A.UuidUtil_mathRNG(-1); if (J.$index$asx(_this.get$_uuid$_state(), _s9_0) != null) J.$index$asx(_this.get$_uuid$_state(), _s9_0); else J.$indexSet$ax(_this.get$_uuid$_state(), _s9_0, seedBytes); nodeId = A._setArrayType([seedBytes[0] | 1, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]], type$.JSArray_int); if (J.$index$asx(_this.get$_uuid$_state(), _s4_) != null) J.$index$asx(_this.get$_uuid$_state(), _s4_); else J.$indexSet$ax(_this.get$_uuid$_state(), _s4_, nodeId); t1 = seedBytes[6]; t2 = seedBytes[7]; t3 = _this.get$_uuid$_state(); t4 = J.getInterceptor$asx(t3); if (t4.$index(t3, _s8_) == null) t4.$indexSet(t3, _s8_, (t1 << 8 | t2) & 262143); J.$indexSet$ax(_this.get$_uuid$_state(), _s5_, 0); J.$indexSet$ax(_this.get$_uuid$_state(), _s5_0, 0); J.$indexSet$ax(_this.get$_uuid$_state(), _s9_, true); } options.$index(0, _s8_); clockSeq = A._asIntS(J.$index$asx(_this.get$_uuid$_state(), _s8_)); options.$index(0, _s5_); t1 = Date.now(); options.$index(0, _s5_0); t2 = J.$index$asx(_this.get$_uuid$_state(), _s5_0); t2.toString; nSecs = A._asIntS(t2) + 1; t2 = t1 - J.$index$asx(_this.get$_uuid$_state(), _s5_) + (nSecs - J.$index$asx(_this.get$_uuid$_state(), _s5_0)) / 10000 < 0; if (t2) { options.$index(0, _s8_); t3 = true; } else t3 = false; if (t3) clockSeq = clockSeq + 1 & 16383; if (t2 || t1 > J.$index$asx(_this.get$_uuid$_state(), _s5_)) { options.$index(0, _s5_0); t2 = true; } else t2 = false; if (t2) nSecs = 0; if (nSecs >= 10000) throw A.wrapException(A.Exception_Exception("uuid.v1(): Can't create more than 10M uuids/sec")); J.$indexSet$ax(_this.get$_uuid$_state(), _s5_, t1); J.$indexSet$ax(_this.get$_uuid$_state(), _s5_0, nSecs); J.$indexSet$ax(_this.get$_uuid$_state(), _s8_, clockSeq); mSecs = t1 + 122192928e5; tl = B.JSInt_methods.$mod((mSecs & 268435455) * 10000 + nSecs, 4294967296); buf[0] = B.JSInt_methods._shrOtherPositive$1(tl, 24) & 255; buf[1] = B.JSInt_methods._shrOtherPositive$1(tl, 16) & 255; buf[2] = B.JSInt_methods._shrOtherPositive$1(tl, 8) & 255; buf[3] = tl & 255; tmh = B.JSNumber_methods.floor$0(mSecs / 4294967296 * 10000) & 268435455; buf[4] = tmh >>> 8 & 255; buf[5] = tmh & 255; buf[6] = tmh >>> 24 & 15 | 16; buf[7] = tmh >>> 16 & 255; buf[8] = clockSeq >>> 8 & 63 | 128; buf[9] = clockSeq & 255; options.$index(0, _s4_); node = type$.List_dynamic._as(J.$index$asx(_this.get$_uuid$_state(), _s4_)); for (t1 = J.getInterceptor$asx(node), n = 0; n < 6; ++n) buf[10 + n] = t1.$index(node, n); return A.Uuid_unparse(buf); }, v4$0() { var t1, rng, options = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); this._initV4$0(); options.$index(0, "positionalArgs"); options.$index(0, "namedArgs"); options.$index(0, "rng"); t1 = J.$index$asx(this.get$_uuid$_state(), "globalRNG"); t1.toString; rng = type$.List_int._as(type$.dynamic_Function._as(t1).call$0()); options.$index(0, "random"); t1 = J.getInterceptor$asx(rng); t1.$indexSet(rng, 6, t1.$index(rng, 6) & 15 | 64); t1.$indexSet(rng, 8, t1.$index(rng, 8) & 63 | 128); return A.Uuid_unparse(rng); } }; A.BoxValueConstraints.prototype = { $eq(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!_this.$ti._is(other)) return false; return _this.value === other.value && _this.minWidth == other.minWidth && _this.maxWidth == other.maxWidth && _this.minHeight == other.minHeight && _this.maxHeight == other.maxHeight; }, get$hashCode(_) { var _this = this; return A.hashValues(_this.minWidth, _this.maxWidth, _this.minHeight, _this.maxHeight, _this.value, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd, B.C__HashEnd); }, get$value(receiver) { return this.value; } }; A.ValueLayoutBuilder.prototype = { get$builder() { return this.builder; }, createRenderObject$1(context) { var t1 = new A._RenderValueLayoutBuilder(null, true, null, null, A.LayerHandle$(type$.ContainerLayer_2), this.$ti._eval$1("_RenderValueLayoutBuilder<1>")); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; A._RenderValueLayoutBuilder.prototype = { computeMinIntrinsicWidth$1(height) { return 0; }, computeMaxIntrinsicWidth$1(height) { return 0; }, computeMinIntrinsicHeight$1(width) { return 0; }, computeMaxIntrinsicHeight$1(width) { return 0; }, performLayout$0() { var t1, _this = this, constraints = type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(_this)); _this.rebuildIfNecessary$0(); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, constraints, true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } else _this._box$_size = new A.Size(B.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), B.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, hitTestChildren$2$position(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, paint$2(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder.prototype = {}; A.Matrix3.prototype = { setFrom$1(arg) { var argStorage = arg._m3storage, t1 = this._m3storage; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, toString$0(_) { return "[0] " + this.getRow$1(0).toString$0(0) + "\n[1] " + this.getRow$1(1).toString$0(0) + "\n[2] " + this.getRow$1(2).toString$0(0) + "\n"; }, $index(_, i) { return this._m3storage[i]; }, $indexSet(_, i, v) { this._m3storage[i] = v; }, $eq(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof A.Matrix3) { t1 = this._m3storage; t2 = t1[0]; t3 = other._m3storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8]; } else t1 = false; return t1; }, get$hashCode(_) { return A.Object_hashAll(this._m3storage); }, getRow$1(row) { var t1 = new Float64Array(3), t2 = this._m3storage; t1[0] = t2[row]; t1[1] = t2[3 + row]; t1[2] = t2[6 + row]; return new A.Vector3(t1); }, $mul(_, arg) { var t1, t2; if (typeof arg == "number") { t1 = new Float64Array(9); t2 = new A.Matrix3(t1); t2.setFrom$1(this); t1[0] = t1[0] * arg; t1[1] = t1[1] * arg; t1[2] = t1[2] * arg; t1[3] = t1[3] * arg; t1[4] = t1[4] * arg; t1[5] = t1[5] * arg; t1[6] = t1[6] * arg; t1[7] = t1[7] * arg; t1[8] = t1[8] * arg; return t2; } throw A.wrapException(A.ArgumentError$(arg, null)); }, $add(_, arg) { var t1 = new A.Matrix3(new Float64Array(9)); t1.setFrom$1(this); t1.add$1(0, arg); return t1; }, $sub(_, arg) { var oStorage, t1 = new Float64Array(9), t2 = new A.Matrix3(t1); t2.setFrom$1(this); oStorage = arg._m3storage; t1[0] = t1[0] - oStorage[0]; t1[1] = t1[1] - oStorage[1]; t1[2] = t1[2] - oStorage[2]; t1[3] = t1[3] - oStorage[3]; t1[4] = t1[4] - oStorage[4]; t1[5] = t1[5] - oStorage[5]; t1[6] = t1[6] - oStorage[6]; t1[7] = t1[7] - oStorage[7]; t1[8] = t1[8] - oStorage[8]; return t2; }, add$1(_, o) { var oStorage = o._m3storage, t1 = this._m3storage; t1[0] = t1[0] + oStorage[0]; t1[1] = t1[1] + oStorage[1]; t1[2] = t1[2] + oStorage[2]; t1[3] = t1[3] + oStorage[3]; t1[4] = t1[4] + oStorage[4]; t1[5] = t1[5] + oStorage[5]; t1[6] = t1[6] + oStorage[6]; t1[7] = t1[7] + oStorage[7]; t1[8] = t1[8] + oStorage[8]; } }; A.Matrix4.prototype = { setFrom$1(arg) { var argStorage = arg._m4storage, t1 = this._m4storage; t1[15] = argStorage[15]; t1[14] = argStorage[14]; t1[13] = argStorage[13]; t1[12] = argStorage[12]; t1[11] = argStorage[11]; t1[10] = argStorage[10]; t1[9] = argStorage[9]; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, toString$0(_) { var _this = this; return "[0] " + _this.getRow$1(0).toString$0(0) + "\n[1] " + _this.getRow$1(1).toString$0(0) + "\n[2] " + _this.getRow$1(2).toString$0(0) + "\n[3] " + _this.getRow$1(3).toString$0(0) + "\n"; }, $index(_, i) { return this._m4storage[i]; }, $indexSet(_, i, v) { this._m4storage[i] = v; }, $eq(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof A.Matrix4) { t1 = this._m4storage; t2 = t1[0]; t3 = other._m4storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8] && t1[9] === t3[9] && t1[10] === t3[10] && t1[11] === t3[11] && t1[12] === t3[12] && t1[13] === t3[13] && t1[14] === t3[14] && t1[15] === t3[15]; } else t1 = false; return t1; }, get$hashCode(_) { return A.Object_hashAll(this._m4storage); }, setRow$2(row, arg) { var argStorage = arg._v4storage, t1 = this._m4storage; t1[row] = argStorage[0]; t1[4 + row] = argStorage[1]; t1[8 + row] = argStorage[2]; t1[12 + row] = argStorage[3]; }, getRow$1(row) { var t1 = new Float64Array(4), t2 = this._m4storage; t1[0] = t2[row]; t1[1] = t2[4 + row]; t1[2] = t2[8 + row]; t1[3] = t2[12 + row]; return new A.Vector4(t1); }, $mul(_, arg) { var t1; if (typeof arg == "number") { t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.scale$3(0, arg, null, null); return t1; } throw A.wrapException(A.ArgumentError$(arg, null)); }, $add(_, arg) { var t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.add$1(0, arg); return t1; }, $sub(_, arg) { var oStorage, t1 = new Float64Array(16), t2 = new A.Matrix4(t1); t2.setFrom$1(this); oStorage = arg._m4storage; t1[0] = t1[0] - oStorage[0]; t1[1] = t1[1] - oStorage[1]; t1[2] = t1[2] - oStorage[2]; t1[3] = t1[3] - oStorage[3]; t1[4] = t1[4] - oStorage[4]; t1[5] = t1[5] - oStorage[5]; t1[6] = t1[6] - oStorage[6]; t1[7] = t1[7] - oStorage[7]; t1[8] = t1[8] - oStorage[8]; t1[9] = t1[9] - oStorage[9]; t1[10] = t1[10] - oStorage[10]; t1[11] = t1[11] - oStorage[11]; t1[12] = t1[12] - oStorage[12]; t1[13] = t1[13] - oStorage[13]; t1[14] = t1[14] - oStorage[14]; t1[15] = t1[15] - oStorage[15]; return t2; }, translate$2(_, x, y) { var tx, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17; if (typeof x != "number") throw A.wrapException(A.UnimplementedError$(null)); tx = x; t1 = this._m4storage; t2 = t1[0]; t3 = t1[4]; t4 = t1[8]; t5 = t1[12]; t6 = t1[1]; t7 = t1[5]; t8 = t1[9]; t9 = t1[13]; t10 = t1[2]; t11 = t1[6]; t12 = t1[10]; t13 = t1[14]; t14 = t1[3]; t15 = t1[7]; t16 = t1[11]; t17 = t1[15]; t1[12] = t2 * tx + t3 * y + t4 * 0 + t5; t1[13] = t6 * tx + t7 * y + t8 * 0 + t9; t1[14] = t10 * tx + t11 * y + t12 * 0 + t13; t1[15] = t14 * tx + t15 * y + t16 * 0 + t17; }, rotateZ$1(angle) { var cosAngle = Math.cos(angle), sinAngle = Math.sin(angle), t1 = this._m4storage, t2 = t1[0], t3 = t1[4], t4 = t1[1], t5 = t1[5], t6 = t1[2], t7 = t1[6], t8 = t1[3], t9 = t1[7], t10 = -sinAngle; t1[0] = t2 * cosAngle + t3 * sinAngle; t1[1] = t4 * cosAngle + t5 * sinAngle; t1[2] = t6 * cosAngle + t7 * sinAngle; t1[3] = t8 * cosAngle + t9 * sinAngle; t1[4] = t2 * t10 + t3 * cosAngle; t1[5] = t4 * t10 + t5 * cosAngle; t1[6] = t6 * t10 + t7 * cosAngle; t1[7] = t8 * t10 + t9 * cosAngle; }, scale$3(_, x, y, z) { var t1, sx, sy, sz; if (x instanceof A.Vector3) { t1 = x._v3storage; sx = t1[0]; sy = t1[1]; sz = t1[2]; } else { if (typeof x == "number") { sy = y == null ? x : y; sz = z == null ? x : z; } else throw A.wrapException(A.UnimplementedError$(null)); sx = x; } t1 = this._m4storage; t1[0] = t1[0] * sx; t1[1] = t1[1] * sx; t1[2] = t1[2] * sx; t1[3] = t1[3] * sx; t1[4] = t1[4] * sy; t1[5] = t1[5] * sy; t1[6] = t1[6] * sy; t1[7] = t1[7] * sy; t1[8] = t1[8] * sz; t1[9] = t1[9] * sz; t1[10] = t1[10] * sz; t1[11] = t1[11] * sz; t1[12] = t1[12]; t1[13] = t1[13]; t1[14] = t1[14]; t1[15] = t1[15]; }, scale$1($receiver, x) { return this.scale$3($receiver, x, null, null); }, scale$2($receiver, x, y) { return this.scale$3($receiver, x, y, null); }, setZero$0() { var t1 = this._m4storage; t1[0] = 0; t1[1] = 0; t1[2] = 0; t1[3] = 0; t1[4] = 0; t1[5] = 0; t1[6] = 0; t1[7] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 0; t1[11] = 0; t1[12] = 0; t1[13] = 0; t1[14] = 0; t1[15] = 0; }, setIdentity$0() { var t1 = this._m4storage; t1[0] = 1; t1[1] = 0; t1[2] = 0; t1[3] = 0; t1[4] = 0; t1[5] = 1; t1[6] = 0; t1[7] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 1; t1[11] = 0; t1[12] = 0; t1[13] = 0; t1[14] = 0; t1[15] = 1; }, getTranslation$0() { var t1 = this._m4storage, z = t1[14], y = t1[13], x = t1[12]; t1 = new A.Vector3(new Float64Array(3)); t1.setValues$3(x, y, z); return t1; }, setTranslation$1(t) { var tStorage = t._v3storage, z = tStorage[2], y = tStorage[1], x = tStorage[0], t1 = this._m4storage; t1[14] = z; t1[13] = y; t1[12] = x; }, setTranslationRaw$3(x, y, z) { var t1 = this._m4storage; t1[14] = z; t1[13] = y; t1[12] = x; }, getMaxScaleOnAxis$0() { var t1 = this._m4storage, t2 = t1[0], t3 = t1[1], t4 = t1[2], t5 = t1[4], t6 = t1[5], t7 = t1[6], t8 = t1[8], t9 = t1[9]; t1 = t1[10]; return Math.sqrt(Math.max(t2 * t2 + t3 * t3 + t4 * t4, Math.max(t5 * t5 + t6 * t6 + t7 * t7, t8 * t8 + t9 * t9 + t1 * t1))); }, copyInverse$1(arg) { var invDet, t1, t2, t3, argStorage = arg._m4storage, a00 = argStorage[0], a01 = argStorage[1], a02 = argStorage[2], a03 = argStorage[3], a10 = argStorage[4], a11 = argStorage[5], a12 = argStorage[6], a13 = argStorage[7], a20 = argStorage[8], a21 = argStorage[9], a22 = argStorage[10], a23 = argStorage[11], a30 = argStorage[12], a31 = argStorage[13], a32 = argStorage[14], a33 = argStorage[15], b00 = a00 * a11 - a01 * a10, b01 = a00 * a12 - a02 * a10, b02 = a00 * a13 - a03 * a10, b03 = a01 * a12 - a02 * a11, b04 = a01 * a13 - a03 * a11, b05 = a02 * a13 - a03 * a12, b06 = a20 * a31 - a21 * a30, b07 = a20 * a32 - a22 * a30, b08 = a20 * a33 - a23 * a30, b09 = a21 * a32 - a22 * a31, b10 = a21 * a33 - a23 * a31, b11 = a22 * a33 - a23 * a32, det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; if (det === 0) { this.setFrom$1(arg); return 0; } invDet = 1 / det; t1 = this._m4storage; t1[0] = (a11 * b11 - a12 * b10 + a13 * b09) * invDet; t1[1] = (-a01 * b11 + a02 * b10 - a03 * b09) * invDet; t1[2] = (a31 * b05 - a32 * b04 + a33 * b03) * invDet; t1[3] = (-a21 * b05 + a22 * b04 - a23 * b03) * invDet; t2 = -a10; t1[4] = (t2 * b11 + a12 * b08 - a13 * b07) * invDet; t1[5] = (a00 * b11 - a02 * b08 + a03 * b07) * invDet; t3 = -a30; t1[6] = (t3 * b05 + a32 * b02 - a33 * b01) * invDet; t1[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet; t1[8] = (a10 * b10 - a11 * b08 + a13 * b06) * invDet; t1[9] = (-a00 * b10 + a01 * b08 - a03 * b06) * invDet; t1[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet; t1[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet; t1[12] = (t2 * b09 + a11 * b07 - a12 * b06) * invDet; t1[13] = (a00 * b09 - a01 * b07 + a02 * b06) * invDet; t1[14] = (t3 * b03 + a31 * b01 - a32 * b00) * invDet; t1[15] = (a20 * b03 - a21 * b01 + a22 * b00) * invDet; return det; }, add$1(_, o) { var oStorage = o._m4storage, t1 = this._m4storage; t1[0] = t1[0] + oStorage[0]; t1[1] = t1[1] + oStorage[1]; t1[2] = t1[2] + oStorage[2]; t1[3] = t1[3] + oStorage[3]; t1[4] = t1[4] + oStorage[4]; t1[5] = t1[5] + oStorage[5]; t1[6] = t1[6] + oStorage[6]; t1[7] = t1[7] + oStorage[7]; t1[8] = t1[8] + oStorage[8]; t1[9] = t1[9] + oStorage[9]; t1[10] = t1[10] + oStorage[10]; t1[11] = t1[11] + oStorage[11]; t1[12] = t1[12] + oStorage[12]; t1[13] = t1[13] + oStorage[13]; t1[14] = t1[14] + oStorage[14]; t1[15] = t1[15] + oStorage[15]; }, multiply$1(_, arg) { var t1 = this._m4storage, m00 = t1[0], m01 = t1[4], m02 = t1[8], m03 = t1[12], m10 = t1[1], m11 = t1[5], m12 = t1[9], m13 = t1[13], m20 = t1[2], m21 = t1[6], m22 = t1[10], m23 = t1[14], m30 = t1[3], m31 = t1[7], m32 = t1[11], m33 = t1[15], argStorage = arg._m4storage, n00 = argStorage[0], n01 = argStorage[4], n02 = argStorage[8], n03 = argStorage[12], n10 = argStorage[1], n11 = argStorage[5], n12 = argStorage[9], n13 = argStorage[13], n20 = argStorage[2], n21 = argStorage[6], n22 = argStorage[10], n23 = argStorage[14], n30 = argStorage[3], n31 = argStorage[7], n32 = argStorage[11], n33 = argStorage[15]; t1[0] = m00 * n00 + m01 * n10 + m02 * n20 + m03 * n30; t1[4] = m00 * n01 + m01 * n11 + m02 * n21 + m03 * n31; t1[8] = m00 * n02 + m01 * n12 + m02 * n22 + m03 * n32; t1[12] = m00 * n03 + m01 * n13 + m02 * n23 + m03 * n33; t1[1] = m10 * n00 + m11 * n10 + m12 * n20 + m13 * n30; t1[5] = m10 * n01 + m11 * n11 + m12 * n21 + m13 * n31; t1[9] = m10 * n02 + m11 * n12 + m12 * n22 + m13 * n32; t1[13] = m10 * n03 + m11 * n13 + m12 * n23 + m13 * n33; t1[2] = m20 * n00 + m21 * n10 + m22 * n20 + m23 * n30; t1[6] = m20 * n01 + m21 * n11 + m22 * n21 + m23 * n31; t1[10] = m20 * n02 + m21 * n12 + m22 * n22 + m23 * n32; t1[14] = m20 * n03 + m21 * n13 + m22 * n23 + m23 * n33; t1[3] = m30 * n00 + m31 * n10 + m32 * n20 + m33 * n30; t1[7] = m30 * n01 + m31 * n11 + m32 * n21 + m33 * n31; t1[11] = m30 * n02 + m31 * n12 + m32 * n22 + m33 * n32; t1[15] = m30 * n03 + m31 * n13 + m32 * n23 + m33 * n33; }, multiplied$1(arg) { var t1 = new A.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.multiply$1(0, arg); return t1; }, decompose$3(translation, rotation, scale) { var t1, sx, sy, sz, t2, t3, t4, t5, det2_01_01, t6, t7, det2_01_02, t8, t9, det2_01_03, det2_01_12, det2_01_13, det2_01_23, invSX, invSY, invSZ, m, r, rStorage, t, s, i, j, k, v = $.Matrix4__decomposeV; if (v == null) v = $.Matrix4__decomposeV = new A.Vector3(new Float64Array(3)); t1 = this._m4storage; v.setValues$3(t1[0], t1[1], t1[2]); sx = Math.sqrt(v.get$length2()); v.setValues$3(t1[4], t1[5], t1[6]); sy = Math.sqrt(v.get$length2()); v.setValues$3(t1[8], t1[9], t1[10]); sz = Math.sqrt(v.get$length2()); t2 = t1[0]; t3 = t1[5]; t4 = t1[1]; t5 = t1[4]; det2_01_01 = t2 * t3 - t4 * t5; t6 = t1[6]; t7 = t1[2]; det2_01_02 = t2 * t6 - t7 * t5; t8 = t1[7]; t9 = t1[3]; det2_01_03 = t2 * t8 - t9 * t5; det2_01_12 = t4 * t6 - t7 * t3; det2_01_13 = t4 * t8 - t9 * t3; det2_01_23 = t7 * t8 - t9 * t6; t6 = t1[8]; t9 = t1[9]; t8 = t1[10]; t7 = t1[11]; t3 = t1[12]; if (-(t9 * det2_01_23 - t8 * det2_01_13 + t7 * det2_01_12) * t3 + (t6 * det2_01_23 - t8 * det2_01_03 + t7 * det2_01_02) * t1[13] - (t6 * det2_01_13 - t9 * det2_01_03 + t7 * det2_01_01) * t1[14] + (t6 * det2_01_12 - t9 * det2_01_02 + t8 * det2_01_01) * t1[15] < 0) sx = -sx; t2 = translation._v3storage; t2[0] = t3; t2[1] = t1[13]; t2[2] = t1[14]; invSX = 1 / sx; invSY = 1 / sy; invSZ = 1 / sz; m = $.Matrix4__decomposeM; if (m == null) m = $.Matrix4__decomposeM = new A.Matrix4(new Float64Array(16)); m.setFrom$1(this); t1 = m._m4storage; t1[0] = t1[0] * invSX; t1[1] = t1[1] * invSX; t1[2] = t1[2] * invSX; t1[4] = t1[4] * invSY; t1[5] = t1[5] * invSY; t1[6] = t1[6] * invSY; t1[8] = t1[8] * invSZ; t1[9] = t1[9] * invSZ; t1[10] = t1[10] * invSZ; r = $.Matrix4__decomposeR; if (r == null) r = $.Matrix4__decomposeR = new A.Matrix3(new Float64Array(9)); rStorage = r._m3storage; rStorage[0] = t1[0]; rStorage[1] = t1[1]; rStorage[2] = t1[2]; rStorage[3] = t1[4]; rStorage[4] = t1[5]; rStorage[5] = t1[6]; rStorage[6] = t1[8]; rStorage[7] = t1[9]; rStorage[8] = t1[10]; t1 = rStorage[0]; t2 = rStorage[4]; t3 = rStorage[8]; t = 0 + t1 + t2 + t3; if (t > 0) { s = Math.sqrt(t + 1); t1 = rotation._qStorage; t1[3] = s * 0.5; s = 0.5 / s; t1[0] = (rStorage[5] - rStorage[7]) * s; t1[1] = (rStorage[6] - rStorage[2]) * s; t1[2] = (rStorage[1] - rStorage[3]) * s; } else { if (t1 < t2) i = t2 < t3 ? 2 : 1; else i = t1 < t3 ? 2 : 0; j = (i + 1) % 3; k = (i + 2) % 3; t1 = i * 3; t2 = j * 3; t3 = k * 3; s = Math.sqrt(rStorage[t1 + i] - rStorage[t2 + j] - rStorage[t3 + k] + 1); t4 = rotation._qStorage; t4[i] = s * 0.5; s = 0.5 / s; t4[3] = (rStorage[t2 + k] - rStorage[t3 + j]) * s; t4[j] = (rStorage[t1 + j] + rStorage[t2 + i]) * s; t4[k] = (rStorage[t1 + k] + rStorage[t3 + i]) * s; } t1 = scale._v3storage; t1[0] = sx; t1[1] = sy; t1[2] = sz; }, transform3$1(arg) { var argStorage = arg._v3storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = t1[1], t10 = t1[5], t11 = t1[9], t12 = t1[13], t13 = t1[2], t14 = t1[6], t15 = t1[10]; t1 = t1[14]; argStorage[0] = t2 * t3 + t4 * t5 + t6 * t7 + t8; argStorage[1] = t9 * t3 + t10 * t5 + t11 * t7 + t12; argStorage[2] = t13 * t3 + t14 * t5 + t15 * t7 + t1; return arg; }, transform$1(_, arg) { var argStorage = arg._v4storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = argStorage[3], t10 = t1[1], t11 = t1[5], t12 = t1[9], t13 = t1[13], t14 = t1[2], t15 = t1[6], t16 = t1[10], t17 = t1[14], t18 = t1[3], t19 = t1[7], t20 = t1[11]; t1 = t1[15]; argStorage[0] = t2 * t3 + t4 * t5 + t6 * t7 + t8 * t9; argStorage[1] = t10 * t3 + t11 * t5 + t12 * t7 + t13 * t9; argStorage[2] = t14 * t3 + t15 * t5 + t16 * t7 + t17 * t9; argStorage[3] = t18 * t3 + t19 * t5 + t20 * t7 + t1 * t9; return arg; }, perspectiveTransform$1(arg) { var argStorage = arg._v3storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = t1[1], t10 = t1[5], t11 = t1[9], t12 = t1[13], t13 = t1[2], t14 = t1[6], t15 = t1[10], t16 = t1[14], w_ = 1 / (t1[3] * t3 + t1[7] * t5 + t1[11] * t7 + t1[15]); argStorage[0] = (t2 * t3 + t4 * t5 + t6 * t7 + t8) * w_; argStorage[1] = (t9 * t3 + t10 * t5 + t11 * t7 + t12) * w_; argStorage[2] = (t13 * t3 + t14 * t5 + t15 * t7 + t16) * w_; return arg; } }; A.Quad.prototype = {}; A.Quaternion.prototype = { setFrom$1(source) { var sourceStorage = source._qStorage, t1 = this._qStorage; t1[0] = sourceStorage[0]; t1[1] = sourceStorage[1]; t1[2] = sourceStorage[2]; t1[3] = sourceStorage[3]; }, normalize$0(_) { var d, t1, l = Math.sqrt(this.get$length2()); if (l === 0) return 0; d = 1 / l; t1 = this._qStorage; t1[0] = t1[0] * d; t1[1] = t1[1] * d; t1[2] = t1[2] * d; t1[3] = t1[3] * d; return l; }, get$length2() { var t1 = this._qStorage, x = t1[0], y = t1[1], z = t1[2], w = t1[3]; return x * x + y * y + z * z + w * w; }, get$length(_) { var t1 = this._qStorage, x = t1[0], y = t1[1], z = t1[2], w = t1[3]; return Math.sqrt(x * x + y * y + z * z + w * w); }, add$1(_, arg) { var argStorage = arg._qStorage, t1 = this._qStorage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; t1[3] = t1[3] + argStorage[3]; }, scaled$1(scale) { var t1 = new Float64Array(4), t2 = new A.Quaternion(t1); t2.setFrom$1(this); t1[3] = t1[3] * scale; t1[2] = t1[2] * scale; t1[1] = t1[1] * scale; t1[0] = t1[0] * scale; return t2; }, $mul(_, other) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t1 = this._qStorage, _w = t1[3], _z = t1[2], _y = t1[1], _x = t1[0], otherStorage = other.get$_qStorage(), ow = otherStorage.$index(0, 3), oz = otherStorage.$index(0, 2), oy = otherStorage.$index(0, 1), ox = otherStorage.$index(0, 0); t1 = B.JSNumber_methods.$mul(_w, ox); t2 = B.JSNumber_methods.$mul(_x, ow); t3 = B.JSNumber_methods.$mul(_y, oz); t4 = B.JSNumber_methods.$mul(_z, oy); t5 = B.JSNumber_methods.$mul(_w, oy); t6 = B.JSNumber_methods.$mul(_y, ow); t7 = B.JSNumber_methods.$mul(_z, ox); t8 = B.JSNumber_methods.$mul(_x, oz); t9 = B.JSNumber_methods.$mul(_w, oz); t10 = B.JSNumber_methods.$mul(_z, ow); t11 = B.JSNumber_methods.$mul(_x, oy); t12 = B.JSNumber_methods.$mul(_y, ox); t13 = B.JSNumber_methods.$mul(_w, ow); t14 = B.JSNumber_methods.$mul(_x, ox); t15 = B.JSNumber_methods.$mul(_y, oy); t16 = B.JSNumber_methods.$mul(_z, oz); t17 = new Float64Array(4); t17[0] = t1 + t2 + t3 - t4; t17[1] = t5 + t6 + t7 - t8; t17[2] = t9 + t10 + t11 - t12; t17[3] = t13 - t14 - t15 - t16; return new A.Quaternion(t17); }, $add(_, other) { var t1 = new A.Quaternion(new Float64Array(4)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $sub(_, other) { var argStorage, t1 = new Float64Array(4), t2 = new A.Quaternion(t1); t2.setFrom$1(this); argStorage = other._qStorage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; t1[3] = t1[3] - argStorage[3]; return t2; }, $index(_, i) { return this._qStorage[i]; }, $indexSet(_, i, arg) { this._qStorage[i] = arg; }, toString$0(_) { var t1 = this._qStorage; return A.S(t1[0]) + ", " + A.S(t1[1]) + ", " + A.S(t1[2]) + " @ " + A.S(t1[3]); } }; A.Vector3.prototype = { setValues$3(x, y, z) { var t1 = this._v3storage; t1[0] = x; t1[1] = y; t1[2] = z; }, setFrom$1(other) { var otherStorage = other._v3storage, t1 = this._v3storage; t1[0] = otherStorage[0]; t1[1] = otherStorage[1]; t1[2] = otherStorage[2]; }, toString$0(_) { var t1 = this._v3storage; return "[" + A.S(t1[0]) + "," + A.S(t1[1]) + "," + A.S(t1[2]) + "]"; }, $eq(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof A.Vector3) { t1 = this._v3storage; t2 = t1[0]; t3 = other._v3storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2]; } else t1 = false; return t1; }, get$hashCode(_) { return A.Object_hashAll(this._v3storage); }, $sub(_, other) { var argStorage, t1 = new Float64Array(3), t2 = new A.Vector3(t1); t2.setFrom$1(this); argStorage = other._v3storage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; return t2; }, $add(_, other) { var t1 = new A.Vector3(new Float64Array(3)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $div(_, scale) { return this.scaled$1(1 / scale); }, $mul(_, scale) { return this.scaled$1(scale); }, $index(_, i) { return this._v3storage[i]; }, $indexSet(_, i, v) { this._v3storage[i] = v; }, get$length(_) { var t1 = this._v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return Math.sqrt(t2 * t2 + t3 * t3 + t1 * t1); }, get$length2() { var t1 = this._v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return t2 * t2 + t3 * t3 + t1 * t1; }, dot$1(other) { var otherStorage = other._v3storage, t1 = this._v3storage; return t1[0] * otherStorage[0] + t1[1] * otherStorage[1] + t1[2] * otherStorage[2]; }, add$1(_, arg) { var argStorage = arg._v3storage, t1 = this._v3storage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; }, scaled$1(arg) { var t1 = new Float64Array(3), t2 = new A.Vector3(t1); t2.setFrom$1(this); t1[2] = t1[2] * arg; t1[1] = t1[1] * arg; t1[0] = t1[0] * arg; return t2; }, round$0(_) { var t1 = this._v3storage; t1[0] = B.JSNumber_methods.roundToDouble$0(t1[0]); t1[1] = B.JSNumber_methods.roundToDouble$0(t1[1]); t1[2] = B.JSNumber_methods.roundToDouble$0(t1[2]); } }; A.Vector4.prototype = { setValues$4(x_, y_, z_, w_) { var t1 = this._v4storage; t1[3] = w_; t1[2] = z_; t1[1] = y_; t1[0] = x_; }, setFrom$1(other) { var otherStorage = other._v4storage, t1 = this._v4storage; t1[3] = otherStorage[3]; t1[2] = otherStorage[2]; t1[1] = otherStorage[1]; t1[0] = otherStorage[0]; }, toString$0(_) { var t1 = this._v4storage; return A.S(t1[0]) + "," + A.S(t1[1]) + "," + A.S(t1[2]) + "," + A.S(t1[3]); }, $eq(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof A.Vector4) { t1 = this._v4storage; t2 = t1[0]; t3 = other._v4storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3]; } else t1 = false; return t1; }, get$hashCode(_) { return A.Object_hashAll(this._v4storage); }, $sub(_, other) { var argStorage, t1 = new Float64Array(4), t2 = new A.Vector4(t1); t2.setFrom$1(this); argStorage = other._v4storage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; t1[3] = t1[3] - argStorage[3]; return t2; }, $add(_, other) { var t1 = new A.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $div(_, scale) { var t1 = new A.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.scale$1(0, 1 / scale); return t1; }, $mul(_, scale) { var t1 = new A.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.scale$1(0, scale); return t1; }, $index(_, i) { return this._v4storage[i]; }, $indexSet(_, i, v) { this._v4storage[i] = v; }, get$length(_) { var t1 = this._v4storage, t2 = t1[0], t3 = t1[1], t4 = t1[2]; t1 = t1[3]; return Math.sqrt(t2 * t2 + t3 * t3 + t4 * t4 + t1 * t1); }, add$1(_, arg) { var argStorage = arg._v4storage, t1 = this._v4storage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; t1[3] = t1[3] + argStorage[3]; }, scale$1(_, arg) { var t1 = this._v4storage; t1[0] = t1[0] * arg; t1[1] = t1[1] * arg; t1[2] = t1[2] * arg; t1[3] = t1[3] * arg; }, round$0(_) { var t1 = this._v4storage; t1[0] = B.JSNumber_methods.roundToDouble$0(t1[0]); t1[1] = B.JSNumber_methods.roundToDouble$0(t1[1]); t1[2] = B.JSNumber_methods.roundToDouble$0(t1[2]); t1[3] = B.JSNumber_methods.roundToDouble$0(t1[3]); } }; A.Version.prototype = { Version$5$build$preRelease(major, minor, patch, build, preRelease) { var t1, i, t2, t3, _this = this, _null = null; for (t1 = _this._preRelease, i = 0; i < t1.length; ++i) { if (B.JSString_methods.trim$0(J.toString$0$(t1[i])).length === 0) throw A.wrapException(A.ArgumentError$("preRelease segments must not be empty", _null)); t2 = J.toString$0$(t1[i]); t1[i] = t2; t3 = $.$get$Version__preReleaseRegex()._nativeRegExp; if (!t3.test(t2)) throw A.wrapException(A.FormatException$("preRelease segments must only contain [0-9A-Za-z-]", _null, _null)); } t1 = _this.build; if (t1.length !== 0) { t2 = $.$get$Version__buildRegex()._nativeRegExp; t1 = !t2.test(t1); } else t1 = false; if (t1) throw A.wrapException(A.FormatException$("build must only contain [0-9A-Za-z-.]", _null, _null)); if (_this.major < 0 || _this.minor < 0 || _this.patch < 0) throw A.wrapException(A.ArgumentError$("Version numbers must be greater than 0", _null)); }, get$hashCode(_) { return B.JSString_methods.get$hashCode(this.toString$0(0)); }, $lt(_, o) { return o instanceof A.Version && A.Version__compare(this, o) < 0; }, $eq(_, o) { if (o == null) return false; return o instanceof A.Version && A.Version__compare(this, o) === 0; }, $gt(_, o) { return false; }, $ge(_, o) { return false; }, compareTo$1(_, other) { if (other == null) throw A.wrapException(A.ArgumentError$notNull("other")); return A.Version__compare(this, other); }, toString$0(_) { var _this = this, t1 = "" + _this.major + "." + _this.minor + "." + _this.patch, t2 = _this._preRelease; if (t2.length !== 0) t1 += "-" + B.JSArray_methods.join$1(t2, "."); t2 = B.JSString_methods.trim$0(_this.build); if (t2.length !== 0) t1 += "+" + t2; return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isComparable: 1 }; A.main_closure0.prototype = { call$0() { var t1 = type$.legacy_dynamic_Function_legacy_List_legacy_String; if (t1._is(A.main__main$closure())) return t1._as(A.main__main$closure()).call$1(A._setArrayType([], type$.JSArray_legacy_String)); return A.main__main$closure().call$0(); }, $signature: 9 }; A.main_closure.prototype = { call$0() { var t3, t4, target, vendor, appVersion, t1 = $.$get$webPluginRegistrar(), t2 = $.$get$FilePickerWeb_platform(); A.PlatformInterface__verify(t2, $.$get$FilePicker__token(), false); $.FilePicker__instance = t2; A.GoogleSignInPlatform_instance(A.GoogleSignInPlugin$()); t2 = $.$get$ImageCropperPlatform__token(); t3 = new A.ImageCropperPlugin(t2); A.PlatformInterface__verify(t3, t2, true); $.ImageCropperPlatform__instance = t3; t3 = $.$get$ImagePickerPlatform__token(); t2 = new A.ImagePickerPlugin(t3); t2.__ImagePickerPlugin__imageResizer = new A.ImageResizer(); t4 = document; target = t4.querySelector("#__image_picker_web-file-input"); if (target == null) { target = A._ElementFactoryProvider_createElement_tag("flt-image-picker-inputs", null); target.id = "__image_picker_web-file-input"; t4 = t4.querySelector("body"); t4.toString; J.get$children$x(t4).add$1(0, target); } t2.__ImagePickerPlugin__target = target; A.PlatformInterface__verify(t2, t3, true); $.ImagePickerPlatform__instance = t2; t2 = $.$get$PackageInfoPlatform__token(); t3 = new A.PackageInfoPlugin(t2); A.PlatformInterface__verify(t3, t2, false); $.PackageInfoPlatform__instance = t3; t3 = A._setArrayType([], type$.JSArray_Completer_dynamic); t2 = $.$get$PrintingPlatform__token(); t3 = new A.PrintingPlugin(new A.Mutex(t3), t2); A.PlatformInterface__verify(t3, t2, false); $.PrintingPlatform__instance = t3; new A.MethodChannel("sentry_flutter", B.C_StandardMethodCodec, t1).setMethodCallHandler$1(new A.SentryFlutterWeb().get$handleMethodCall()); A.SharedPreferencesStorePlatform_instance(new A.SharedPreferencesPlugin()); t3 = $.$get$SignInWithApplePlatform__token(); t2 = new A.SignInWithApplePlugin(t3); A.PlatformInterface__verify(t2, t3, false); $.SignInWithApplePlatform__instance = t2; t2 = window; t3 = $.$get$UrlLauncherPlatform__token(); t4 = new A.UrlLauncherPlugin(t2, t3); t2 = t2.navigator; vendor = t2.vendor; appVersion = t2.appVersion; t4._isSafari = vendor != null && B.JSString_methods.contains$1(vendor, "Apple") && appVersion != null && B.JSString_methods.contains$1(appVersion, "Version"); A.PlatformInterface__verify(t4, t3, true); $.UrlLauncherPlatform__instance = t4; $.$get$platformViewRegistry().toString; $.$get$platformViewManager().registerFactory$3$isVisible("__url_launcher::link", A.link_LinkViewController__viewFactory$closure(), false); $.pluginMessageCallHandler = t1.get$handleFrameworkMessage(); }, $signature: 1 }; (function aliases() { var _ = A._SaveStackTracking.prototype; _.super$_SaveStackTracking$clear = _.clear$0; _.super$_SaveStackTracking$save = _.save$0; _.super$_SaveStackTracking$restore = _.restore$0; _.super$_SaveStackTracking$translate = _.translate$2; _.super$_SaveStackTracking$scale = _.scale$2; _.super$_SaveStackTracking$rotate = _.rotate$1; _.super$_SaveStackTracking$transform = _.transform$1; _.super$_SaveStackTracking$clipRect = _.clipRect$1; _.super$_SaveStackTracking$clipRRect = _.clipRRect$1; _.super$_SaveStackTracking$clipPath = _.clipPath$1; _ = A.CkCanvas.prototype; _.super$CkCanvas$clear = _.clear$1; _.super$CkCanvas$clipPath = _.clipPath$2; _.super$CkCanvas$clipRRect = _.clipRRect$2; _.super$CkCanvas$clipRect = _.clipRect$3; _.super$CkCanvas$drawArc = _.drawArc$5; _.super$CkCanvas$drawCircle = _.drawCircle$3; _.super$CkCanvas$drawDRRect = _.drawDRRect$3; _.super$CkCanvas$drawImageRect = _.drawImageRect$4; _.super$CkCanvas$drawLine = _.drawLine$3; _.super$CkCanvas$drawPaint = _.drawPaint$1; _.super$CkCanvas$drawParagraph = _.drawParagraph$2; _.super$CkCanvas$drawPath = _.drawPath$2; _.super$CkCanvas$drawPicture = _.drawPicture$1; _.super$CkCanvas$drawRRect = _.drawRRect$2; _.super$CkCanvas$drawRect = _.drawRect$2; _.super$CkCanvas$drawShadow = _.drawShadow$4; _.super$CkCanvas$restore = _.restore$0; _.super$CkCanvas$restoreToCount = _.restoreToCount$1; _.super$CkCanvas$rotate = _.rotate$1; _.super$CkCanvas$save = _.save$0; _.super$CkCanvas$saveLayer = _.saveLayer$2; _.super$CkCanvas$saveLayerWithFilter = _.saveLayerWithFilter$3; _.super$CkCanvas$scale = _.scale$2; _.super$CkCanvas$transform = _.transform$1; _.super$CkCanvas$translate = _.translate$2; _ = A.ContainerLayer.prototype; _.super$ContainerLayer$preroll = _.preroll$2; _ = A.SaveElementStackTracking.prototype; _.super$SaveElementStackTracking$clear = _.clear$0; _ = A._DomClip.prototype; _.super$_DomClip$createElement = _.createElement$0; _ = A.PersistedSurface.prototype; _.super$PersistedSurface$revive = _.revive$0; _.super$PersistedSurface$canUpdateAsMatch = _.canUpdateAsMatch$1; _.super$PersistedSurface$build = _.build$0; _.super$PersistedSurface$adoptElements = _.adoptElements$1; _.super$PersistedSurface$update = _.update$1; _.super$PersistedSurface$retain = _.retain$0; _.super$PersistedSurface$discard = _.discard$0; _.super$PersistedSurface$preroll = _.preroll$1; _ = A.PersistedContainerSurface.prototype; _.super$PersistedContainerSurface$recomputeTransformAndClip = _.recomputeTransformAndClip$0; _.super$PersistedContainerSurface$update = _.update$1; _.super$PersistedContainerSurface$retain = _.retain$0; _.super$PersistedContainerSurface$discard = _.discard$0; _ = A.DefaultTextEditingStrategy.prototype; _.super$DefaultTextEditingStrategy$initializeTextEditing = _.initializeTextEditing$3$onAction$onChange; _.super$DefaultTextEditingStrategy$updateElementStyle = _.updateElementStyle$1; _.super$DefaultTextEditingStrategy$disable = _.disable$0; _.super$DefaultTextEditingStrategy$enable = _.enable$3$onAction$onChange; _ = A._PersistedPhysicalShape_PersistedContainerSurface__DomClip.prototype; _.super$_PersistedPhysicalShape_PersistedContainerSurface__DomClip$discard = _.discard$0; _ = J.Interceptor.prototype; _.super$Interceptor$toString = _.toString$0; _.super$Interceptor$noSuchMethod = _.noSuchMethod$1; _ = J.LegacyJavaScriptObject.prototype; _.super$LegacyJavaScriptObject$toString = _.toString$0; _ = A.JsLinkedHashMap.prototype; _.super$JsLinkedHashMap$internalContainsKey = _.internalContainsKey$1; _.super$JsLinkedHashMap$internalGet = _.internalGet$1; _.super$JsLinkedHashMap$internalSet = _.internalSet$2; _.super$JsLinkedHashMap$internalRemove = _.internalRemove$1; _ = A._BroadcastStreamController.prototype; _.super$_BroadcastStreamController$_addEventError = _._addEventError$0; _ = A._BufferingStreamSubscription.prototype; _.super$_BufferingStreamSubscription$_add = _._async$_add$1; _.super$_BufferingStreamSubscription$_addError = _._addError$2; _.super$_BufferingStreamSubscription$_close = _._async$_close$0; _ = A._StreamSinkTransformer.prototype; _.super$_StreamSinkTransformer$bind = _.bind$1; _ = A._HashMap.prototype; _.super$_HashMap$_containsKey = _._containsKey$1; _.super$_HashMap$_get = _._get$1; _.super$_HashMap$_set = _._set$2; _.super$_HashMap$_remove = _._remove$1; _ = A.ListMixin.prototype; _.super$ListMixin$removeWhere = _.removeWhere$1; _.super$ListMixin$retainWhere = _.retainWhere$1; _.super$ListMixin$clear = _.clear$0; _.super$ListMixin$removeLast = _.removeLast$0; _.super$ListMixin$setRange = _.setRange$4; _ = A.Iterable.prototype; _.super$Iterable$where = _.where$1; _ = A.Object.prototype; _.super$Object$$eq = _.$eq; _.super$Object$toString = _.toString$0; _ = A.Element2.prototype; _.super$Element$createFragment = _.createFragment$3$treeSanitizer$validator; _ = A.EventTarget.prototype; _.super$EventTarget$addEventListener = _.addEventListener$3; _ = A._SimpleNodeValidator.prototype; _.super$_SimpleNodeValidator$allowsAttribute = _.allowsAttribute$3; _ = A.JsObject.prototype; _.super$JsObject$$index = _.$index; _.super$JsObject$$indexSet = _.$indexSet; _ = A._JsArray_JsObject_ListMixin.prototype; _.super$_JsArray_JsObject_ListMixin$$indexSet = _.$indexSet; _ = A.Color.prototype; _.super$Color$$eq = _.$eq; _.super$Color$toString = _.toString$0; _ = A.TextPosition.prototype; _.super$TextPosition$$eq = _.$eq; _ = A._BoardViewState_State_AutomaticKeepAliveClientMixin.prototype; _.super$_BoardViewState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = A.EnumClass.prototype; _.super$EnumClass$toString = _.toString$0; _ = A.BaseBarRendererConfig.prototype; _.super$BaseBarRendererConfig$$eq = _.$eq; _ = A.BaseBarRendererElement.prototype; _.super$BaseBarRendererElement$updateAnimationPercent = _.updateAnimationPercent$3; _ = A.BaseAnimatedBar.prototype; _.super$BaseAnimatedBar$getCurrentBar = _.getCurrentBar$1; _ = A.Axis.prototype; _.super$Axis$layout = _.layout$2; _ = A.BaseRenderSpec.prototype; _.super$BaseRenderSpec$$eq = _.$eq; _ = A.SmallTickRendererSpec.prototype; _.super$SmallTickRendererSpec$$eq = _.$eq; _ = A.AxisSpec.prototype; _.super$AxisSpec$configure = _.configure$3; _.super$AxisSpec$$eq = _.$eq; _ = A.TimeTickFormatterImpl.prototype; _.super$TimeTickFormatterImpl$formatSimpleTick = _.formatSimpleTick$1; _ = A.BaseCartesianRenderer.prototype; _.super$BaseCartesianRenderer$onAttach = _.onAttach$1; _.super$BaseCartesianRenderer$configureDomainAxes = _.configureDomainAxes$1; _ = A.BaseChart0.prototype; _.super$BaseChart$init = _.init$2; _.super$BaseChart$makeSeries = _.makeSeries$1; _.super$BaseChart$preprocessSeries = _.preprocessSeries$1; _.super$BaseChart$onSkipLayout = _.onSkipLayout$0; _.super$BaseChart$onPostLayout = _.onPostLayout$1; _ = A.Legend.prototype; _.super$Legend$entryTextStyle = _.set$entryTextStyle; _ = A.SeriesLegend0.prototype; _.super$SeriesLegend$defaultHiddenSeries = _.set$defaultHiddenSeries; _ = A.BaseSeriesRenderer.prototype; _.super$BaseSeriesRenderer$onAttach = _.onAttach$1; _.super$BaseSeriesRenderer$layout = _.layout$2; _ = A.SymbolRenderer.prototype; _.super$SymbolRenderer$$eq = _.$eq; _ = A.BaseChart.prototype; _.super$BaseChart$updateCommonChart = _.updateCommonChart$3; _.super$BaseChart$addDefaultInteractions = _.addDefaultInteractions$1; _ = A._BaseChartState_State_TickerProviderStateMixin.prototype; _.super$_BaseChartState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.Animation0.prototype; _.super$Animation$toStringDetails = _.toStringDetails$0; _ = A.AnimationWithParentMixin.prototype; _.super$AnimationWithParentMixin$removeListener = _.removeListener$1; _.super$AnimationWithParentMixin$removeStatusListener = _.removeStatusListener$1; _ = A.ParametricCurve.prototype; _.super$ParametricCurve$transform = _.transform$1; _ = A.AnimationEagerListenerMixin.prototype; _.super$AnimationEagerListenerMixin$dispose = _.dispose$0; _ = A.__CupertinoButtonState_State_SingleTickerProviderStateMixin.prototype; _.super$__CupertinoButtonState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CupertinoSwitchState_State_TickerProviderStateMixin.prototype; _.super$__CupertinoSwitchState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.BindingBase.prototype; _.super$BindingBase$initInstances = _.initInstances$0; _.super$BindingBase$initServiceExtensions = _.initServiceExtensions$0; _.super$BindingBase$unlocked = _.unlocked$0; _.super$BindingBase$performReassemble = _.performReassemble$0; _ = A.ChangeNotifier.prototype; _.super$ChangeNotifier$dispose = _.dispose$0; _.super$ChangeNotifier$notifyListeners = _.notifyListeners$0; _ = A.ValueNotifier.prototype; _.super$ValueNotifier$value = _.set$value; _ = A.Diagnosticable.prototype; _.super$Diagnosticable$toStringShort = _.toStringShort$0; _.super$Diagnosticable$debugFillProperties = _.debugFillProperties$1; _ = A.DiagnosticableTreeMixin.prototype; _.super$DiagnosticableTreeMixin$toStringDeep = _.toStringDeep$3$minLevel$prefixLineOne$prefixOtherLines; _.super$DiagnosticableTreeMixin$toStringShort = _.toStringShort$0; _ = A.AbstractNode.prototype; _.super$AbstractNode$attach = _.attach$1; _.super$AbstractNode$detach = _.detach$0; _.super$AbstractNode$adoptChild = _.adoptChild$1; _.super$AbstractNode$dropChild = _.dropChild$1; _ = A.GestureBinding.prototype; _.super$GestureBinding$hitTest = _.hitTest$2; _.super$GestureBinding$dispatchEvent = _.dispatchEvent$2; _ = A.LongPressGestureRecognizer.prototype; _.super$LongPressGestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _ = A.MultiDragPointerState.prototype; _.super$MultiDragPointerState$dispose = _.dispose$0; _ = A.GestureRecognizer.prototype; _.super$GestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _.super$GestureRecognizer$dispose = _.dispose$0; _ = A.OneSequenceGestureRecognizer.prototype; _.super$OneSequenceGestureRecognizer$addAllowedPointer = _.addAllowedPointer$1; _.super$OneSequenceGestureRecognizer$handleNonAllowedPointer = _.handleNonAllowedPointer$1; _.super$OneSequenceGestureRecognizer$resolve = _.resolve$1; _.super$OneSequenceGestureRecognizer$dispose = _.dispose$0; _.super$OneSequenceGestureRecognizer$startTrackingPointer = _.startTrackingPointer$2; _.super$OneSequenceGestureRecognizer$stopTrackingPointer = _.stopTrackingPointer$1; _ = A.PrimaryPointerGestureRecognizer.prototype; _.super$PrimaryPointerGestureRecognizer$addAllowedPointer = _.addAllowedPointer$1; _.super$PrimaryPointerGestureRecognizer$acceptGesture = _.acceptGesture$1; _.super$PrimaryPointerGestureRecognizer$rejectGesture = _.rejectGesture$1; _ = A.TapGestureRecognizer.prototype; _.super$TapGestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _ = A.__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin.prototype; _.super$__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin.prototype; _.super$__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CheckboxState_State_TickerProviderStateMixin.prototype; _.super$__CheckboxState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$initState = _.initState$0; _.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = A.__SortArrowState_State_TickerProviderStateMixin.prototype; _.super$__SortArrowState_State_TickerProviderStateMixin$dispose0 = _.dispose$0; _ = A._DrawerControllerState_State_SingleTickerProviderStateMixin.prototype; _.super$_DrawerControllerState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ExpandIconState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpandIconState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.InkResponse.prototype; _.super$InkResponse$debugCheckContext = _.debugCheckContext$1; _ = A.__InkResponseState_State_AutomaticKeepAliveClientMixin.prototype; _.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$deactivate = _.deactivate$0; _ = A.__BorderContainerState_State_TickerProviderStateMixin.prototype; _.super$__BorderContainerState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__HelperErrorState_State_SingleTickerProviderStateMixin.prototype; _.super$__HelperErrorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InputDecoratorState_State_TickerProviderStateMixin.prototype; _.super$__InputDecoratorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.InkFeature.prototype; _.super$InkFeature$dispose = _.dispose$0; _ = A.__MergeableMaterialState_State_TickerProviderStateMixin.prototype; _.super$__MergeableMaterialState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._CircularProgressIndicatorPainter.prototype; _.super$_CircularProgressIndicatorPainter$paint = _.paint$2; _ = A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype; _.super$__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype; _.super$__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__RadioState_State_TickerProviderStateMixin.prototype; _.super$__RadioState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = A._RefreshIndicatorState_State_TickerProviderStateMixin.prototype; _.super$_RefreshIndicatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._ScaffoldMessengerState_State_TickerProviderStateMixin.prototype; _.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._ScaffoldState_State_TickerProviderStateMixin.prototype; _.super$_ScaffoldState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin.prototype; _.super$__FloatingActionButtonTransitionState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__MaterialSwitchState_State_TickerProviderStateMixin.prototype; _.super$__MaterialSwitchState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin.prototype; _.super$__DefaultTabControllerState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__TextFieldState_State_RestorationMixin.prototype; _.super$__TextFieldState_State_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$__TextFieldState_State_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$__TextFieldState_State_RestorationMixin$dispose = _.dispose$0; _ = A.__DialState_State_SingleTickerProviderStateMixin.prototype; _.super$__DialState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__HourMinuteTextFieldState_State_RestorationMixin.prototype; _.super$__HourMinuteTextFieldState_State_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _ = A.__TimePickerDialogState_State_RestorationMixin.prototype; _.super$__TimePickerDialogState_State_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$__TimePickerDialogState_State_RestorationMixin$dispose = _.dispose$0; _ = A.ToggleablePainter.prototype; _.super$ToggleablePainter$dispose = _.dispose$0; _ = A._TooltipState_State_SingleTickerProviderStateMixin.prototype; _.super$_TooltipState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.Alignment.prototype; _.super$Alignment$$sub = _.$sub; _.super$Alignment$$add = _.$add; _ = A.BorderRadiusGeometry.prototype; _.super$BorderRadiusGeometry$subtract = _.subtract$1; _.super$BorderRadiusGeometry$add = _.add$1; _ = A.ShapeBorder.prototype; _.super$ShapeBorder$lerpFrom = _.lerpFrom$2; _.super$ShapeBorder$lerpTo = _.lerpTo$2; _ = A.Decoration.prototype; _.super$Decoration$lerpFrom = _.lerpFrom$2; _.super$Decoration$lerpTo = _.lerpTo$2; _ = A.BoxPainter.prototype; _.super$BoxPainter$dispose = _.dispose$0; _ = A.EdgeInsetsGeometry.prototype; _.super$EdgeInsetsGeometry$add = _.add$1; _ = A._CachedImageBase.prototype; _.super$_CachedImageBase$dispose = _.dispose$0; _ = A.ImageStreamCompleter.prototype; _.super$ImageStreamCompleter$addListener = _.addListener$1; _.super$ImageStreamCompleter$removeListener = _.removeListener$1; _.super$ImageStreamCompleter$_maybeDispose = _._maybeDispose$0; _ = A.InlineSpan.prototype; _.super$InlineSpan$$eq = _.$eq; _ = A.SpringSimulation.prototype; _.super$SpringSimulation$x = _.x$1; _ = A.RendererBinding.prototype; _.super$RendererBinding$handleMetricsChanged = _.handleMetricsChanged$0; _.super$RendererBinding$handleTextScaleFactorChanged = _.handleTextScaleFactorChanged$0; _.super$RendererBinding$handlePlatformBrightnessChanged = _.handlePlatformBrightnessChanged$0; _.super$RendererBinding$drawFrame = _.drawFrame$0; _ = A.BoxConstraints.prototype; _.super$BoxConstraints$$eq = _.$eq; _ = A.BoxParentData.prototype; _.super$BoxParentData$toString = _.toString$0; _ = A.RenderBox.prototype; _.super$RenderBox$computeDistanceToActualBaseline = _.computeDistanceToActualBaseline$1; _.super$RenderBox$markNeedsLayout = _.markNeedsLayout$0; _.super$RenderBox$performResize = _.performResize$0; _.super$RenderBox$hitTest = _.hitTest$2$position; _.super$RenderBox$applyPaintTransform = _.applyPaintTransform$2; _ = A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin.prototype; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$attach = _.attach$1; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$detach = _.detach$0; _ = A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin.prototype; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin$detach = _.detach$0; _ = A.RenderFlex.prototype; _.super$RenderFlex$performLayout = _.performLayout$0; _ = A.Layer0.prototype; _.super$Layer$dispose = _.dispose$0; _.super$Layer$updateSubtreeNeedsAddToScene = _.updateSubtreeNeedsAddToScene$0; _ = A.ContainerLayer0.prototype; _.super$ContainerLayer$findAnnotations = _.findAnnotations$1$3$onlyFirst; _.super$ContainerLayer$attach = _.attach$1; _.super$ContainerLayer$detach = _.detach$0; _ = A.OffsetLayer.prototype; _.super$OffsetLayer$findAnnotations = _.findAnnotations$1$3$onlyFirst; _ = A.ParentData.prototype; _.super$ParentData$detach = _.detach$0; _ = A.RenderObject.prototype; _.super$RenderObject$reassemble = _.reassemble$0; _.super$RenderObject$dispose = _.dispose$0; _.super$RenderObject$adoptChild = _.adoptChild$1; _.super$RenderObject$attach = _.attach$1; _.super$RenderObject$markNeedsLayout = _.markNeedsLayout$0; _.super$RenderObject$markNeedsPaint = _.markNeedsPaint$0; _.super$RenderObject$applyPaintTransform = _.applyPaintTransform$2; _.super$RenderObject$describeSemanticsConfiguration = _.describeSemanticsConfiguration$1; _.super$RenderObject$clearSemantics = _.clearSemantics$0; _.super$RenderObject$visitChildrenForSemantics = _.visitChildrenForSemantics$1; _.super$RenderObject$assembleSemanticsNode = _.assembleSemanticsNode$3; _.super$RenderObject$handleEvent = _.handleEvent$2; _.super$RenderObject$toStringShort = _.toStringShort$0; _.super$RenderObject$showOnScreen = _.showOnScreen$4$curve$descendant$duration$rect; _ = A.ContainerRenderObjectMixin.prototype; _.super$ContainerRenderObjectMixin$insert = _.insert$2$after; _.super$ContainerRenderObjectMixin$remove = _.remove$1; _.super$ContainerRenderObjectMixin$move = _.move$2$after; _.super$ContainerRenderObjectMixin$redepthChildren = _.redepthChildren$0; _.super$ContainerRenderObjectMixin$visitChildren = _.visitChildren$1; _ = A.RelayoutWhenSystemFontsChangeMixin.prototype; _.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange = _.systemFontsDidChange$0; _ = A.RenderParagraph.prototype; _.super$RenderParagraph$performLayout = _.performLayout$0; _ = A._RenderParagraph_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = A.RenderProxyBoxMixin.prototype; _.super$RenderProxyBoxMixin$computeMinIntrinsicWidth = _.computeMinIntrinsicWidth$1; _.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth = _.computeMaxIntrinsicWidth$1; _.super$RenderProxyBoxMixin$computeMinIntrinsicHeight = _.computeMinIntrinsicHeight$1; _.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight = _.computeMaxIntrinsicHeight$1; _.super$RenderProxyBoxMixin$computeDryLayout = _.computeDryLayout$1; _.super$RenderProxyBoxMixin$performLayout = _.performLayout$0; _.super$RenderProxyBoxMixin$hitTestChildren = _.hitTestChildren$2$position; _.super$RenderProxyBoxMixin$paint = _.paint$2; _ = A.RenderProxyBoxWithHitTestBehavior.prototype; _.super$RenderProxyBoxWithHitTestBehavior$hitTest = _.hitTest$2$position; _ = A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin.prototype; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin.prototype; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline = _.computeDistanceToActualBaseline$1; _ = A.RenderShiftedBox.prototype; _.super$RenderShiftedBox$computeMinIntrinsicWidth = _.computeMinIntrinsicWidth$1; _.super$RenderShiftedBox$computeMaxIntrinsicWidth = _.computeMaxIntrinsicWidth$1; _.super$RenderShiftedBox$computeMinIntrinsicHeight = _.computeMinIntrinsicHeight$1; _.super$RenderShiftedBox$computeMaxIntrinsicHeight = _.computeMaxIntrinsicHeight$1; _.super$RenderShiftedBox$paint = _.paint$2; _ = A._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin.prototype; _.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = A.SliverLogicalParentData.prototype; _.super$SliverLogicalParentData$toString = _.toString$0; _ = A.RenderSliver.prototype; _.super$RenderSliver$childMainAxisPosition = _.childMainAxisPosition$1; _ = A.SliverMultiBoxAdaptorParentData.prototype; _.super$SliverMultiBoxAdaptorParentData$toString = _.toString$0; _ = A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin.prototype; _.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$detach = _.detach$0; _ = A.RenderSliverEdgeInsetsPadding.prototype; _.super$RenderSliverEdgeInsetsPadding$performLayout = _.performLayout$0; _ = A._RenderViewportBase_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = A.ViewportOffset.prototype; _.super$ViewportOffset$moveTo = _.moveTo$3$curve$duration; _.super$ViewportOffset$debugFillDescription = _.debugFillDescription$1; _ = A.SchedulerBinding.prototype; _.super$SchedulerBinding$handleAppLifecycleStateChanged = _.handleAppLifecycleStateChanged$1; _ = A.Ticker.prototype; _.super$Ticker$dispose = _.dispose$0; _ = A.AssetBundle.prototype; _.super$AssetBundle$loadString = _.loadString$2$cache; _ = A.ServicesBinding.prototype; _.super$ServicesBinding$handleMemoryPressure = _.handleMemoryPressure$0; _.super$ServicesBinding$handleSystemMessage = _.handleSystemMessage$1; _ = A.MethodChannel.prototype; _.super$MethodChannel$_invokeMethod = _._invokeMethod$1$3$arguments$missingOk; _ = A.TextInputConfiguration.prototype; _.super$TextInputConfiguration$toJson = _.toJson$0; _ = A.Action.prototype; _.super$Action$_updateCallingAction = _._updateCallingAction$1; _.super$Action$addActionListener = _.addActionListener$1; _.super$Action$removeActionListener = _.removeActionListener$1; _ = A.__AnimatedCrossFadeState_State_TickerProviderStateMixin.prototype; _.super$__AnimatedCrossFadeState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__AnimatedSwitcherState_State_TickerProviderStateMixin.prototype; _.super$__AnimatedSwitcherState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.AutomaticKeepAliveClientMixin.prototype; _.super$AutomaticKeepAliveClientMixin$build = _.build$1; _ = A.Flex.prototype; _.super$Flex$updateRenderObject = _.updateRenderObject$2; _ = A.WidgetsBindingObserver.prototype; _.super$WidgetsBindingObserver$didChangeMetrics = _.didChangeMetrics$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$unlocked = _.unlocked$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initServiceExtensions = _.initServiceExtensions$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initServiceExtensions = _.initServiceExtensions$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$handleMemoryPressure = _.handleMemoryPressure$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding$initInstances = _.initInstances$0; _ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initServiceExtensions = _.initServiceExtensions$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$performReassemble = _.performReassemble$0; _ = A._DraggableScrollableNotification_Notification_ViewportNotificationMixin.prototype; _.super$_DraggableScrollableNotification_Notification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = A._EditableTextState_State_AutomaticKeepAliveClientMixin.prototype; _.super$_EditableTextState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin.prototype; _.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.FocusTraversalPolicy.prototype; _.super$FocusTraversalPolicy$invalidateScopeData = _.invalidateScopeData$1; _.super$FocusTraversalPolicy$changedScope = _.changedScope$2$node$oldScope; _ = A.FormFieldState.prototype; _.super$FormFieldState$didChange = _.didChange$1; _.super$FormFieldState$restoreState = _.restoreState$2; _ = A._FormFieldState_State_RestorationMixin.prototype; _.super$_FormFieldState_State_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_FormFieldState_State_RestorationMixin$dispose = _.dispose$0; _ = A.State.prototype; _.super$State$initState = _.initState$0; _.super$State$didUpdateWidget = _.didUpdateWidget$1; _.super$State$reassemble = _.reassemble$0; _.super$State$setState = _.setState$1; _.super$State$deactivate = _.deactivate$0; _.super$State$activate = _.activate$0; _.super$State$dispose = _.dispose$0; _.super$State$didChangeDependencies = _.didChangeDependencies$0; _ = A.RenderObjectWidget.prototype; _.super$RenderObjectWidget$updateRenderObject = _.updateRenderObject$2; _ = A.Element0.prototype; _.super$Element$reassemble = _.reassemble$0; _.super$Element$updateChild = _.updateChild$3; _.super$Element$mount = _.mount$2; _.super$Element$update = _.update$1; _.super$Element$_updateSlot = _._updateSlot$1; _.super$Element$inflateWidget = _.inflateWidget$2; _.super$Element$forgetChild = _.forgetChild$1; _.super$Element$activate = _.activate$0; _.super$Element$deactivate = _.deactivate$0; _.super$Element$unmount = _.unmount$0; _.super$Element$dependOnInheritedElement = _.dependOnInheritedElement$2$aspect; _.super$Element$didChangeDependencies = _.didChangeDependencies$0; _ = A.ComponentElement.prototype; _.super$ComponentElement$_firstBuild = _._firstBuild$0; _.super$ComponentElement$performRebuild = _.performRebuild$0; _ = A.StatefulElement.prototype; _.super$StatefulElement$performRebuild = _.performRebuild$0; _ = A.ProxyElement.prototype; _.super$ProxyElement$build = _.build$0; _.super$ProxyElement$update = _.update$1; _.super$ProxyElement$updated = _.updated$1; _ = A.InheritedElement.prototype; _.super$InheritedElement$notifyClients = _.notifyClients$1; _ = A.RenderObjectElement.prototype; _.super$RenderObjectElement$mount = _.mount$2; _.super$RenderObjectElement$update = _.update$1; _.super$RenderObjectElement$performRebuild = _.performRebuild$0; _.super$RenderObjectElement$unmount = _.unmount$0; _ = A.RootRenderObjectElement.prototype; _.super$RootRenderObjectElement$mount = _.mount$2; _ = A.MultiChildRenderObjectElement.prototype; _.super$MultiChildRenderObjectElement$insertRenderObjectChild = _.insertRenderObjectChild$2; _.super$MultiChildRenderObjectElement$moveRenderObjectChild = _.moveRenderObjectChild$3; _.super$MultiChildRenderObjectElement$removeRenderObjectChild = _.removeRenderObjectChild$2; _.super$MultiChildRenderObjectElement$mount = _.mount$2; _.super$MultiChildRenderObjectElement$update = _.update$1; _ = A.ImplicitlyAnimatedWidgetState.prototype; _.super$ImplicitlyAnimatedWidgetState$initState = _.initState$0; _ = A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin.prototype; _.super$_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InteractiveViewerState_State_TickerProviderStateMixin.prototype; _.super$__InteractiveViewerState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.Route.prototype; _.super$Route$install = _.install$0; _.super$Route$didPush = _.didPush$0; _.super$Route$didAdd = _.didAdd$0; _.super$Route$didReplace = _.didReplace$1; _.super$Route$willPop = _.willPop$0; _.super$Route$didPop = _.didPop$1; _.super$Route$didPopNext = _.didPopNext$1; _.super$Route$didChangeNext = _.didChangeNext$1; _.super$Route$didChangePrevious = _.didChangePrevious$1; _.super$Route$changedInternalState = _.changedInternalState$0; _.super$Route$changedExternalState = _.changedExternalState$0; _.super$Route$dispose = _.dispose$0; _ = A.NavigatorObserver.prototype; _.super$NavigatorObserver$didReplace = _.didReplace$2$newRoute$oldRoute; _ = A._RestorationInformation.prototype; _.super$_RestorationInformation$computeSerializableData = _.computeSerializableData$0; _ = A._NavigatorState_State_TickerProviderStateMixin.prototype; _.super$_NavigatorState_State_TickerProviderStateMixin$activate = _.activate$0; _.super$_NavigatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = A.Notification0.prototype; _.super$Notification$debugFillDescription = _.debugFillDescription$1; _ = A._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin.prototype; _.super$_OverscrollIndicatorNotification_Notification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype; _.super$__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype; _.super$__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._SliverReorderableListState_State_TickerProviderStateMixin.prototype; _.super$_SliverReorderableListState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.RestorableProperty.prototype; _.super$RestorableProperty$dispose = _.dispose$0; _ = A.RestorationMixin.prototype; _.super$RestorationMixin$didToggleBucket = _.didToggleBucket$1; _ = A.RestorableValue.prototype; _.super$RestorableValue$value = _.set$value; _ = A._RestorablePrimitiveValueN.prototype; _.super$_RestorablePrimitiveValueN$fromPrimitives = _.fromPrimitives$1; _.super$_RestorablePrimitiveValueN$toPrimitives = _.toPrimitives$0; _ = A.RestorableListenable.prototype; _.super$RestorableListenable$initWithValue = _.initWithValue$1; _.super$RestorableListenable$dispose = _.dispose$0; _ = A.OverlayRoute.prototype; _.super$OverlayRoute$install = _.install$0; _.super$OverlayRoute$didPop = _.didPop$1; _.super$OverlayRoute$dispose = _.dispose$0; _ = A.TransitionRoute.prototype; _.super$TransitionRoute$createAnimation = _.createAnimation$0; _.super$TransitionRoute$install = _.install$0; _.super$TransitionRoute$didPush = _.didPush$0; _.super$TransitionRoute$didAdd = _.didAdd$0; _.super$TransitionRoute$didPop = _.didPop$1; _ = A.RouteObserver.prototype; _.super$RouteObserver$didPop = _.didPop$2; _.super$RouteObserver$didPush = _.didPush$2; _ = A._ModalRoute_TransitionRoute_LocalHistoryRoute.prototype; _.super$_ModalRoute_TransitionRoute_LocalHistoryRoute$willPop = _.willPop$0; _ = A.ScrollActivity.prototype; _.super$ScrollActivity$dispose = _.dispose$0; _ = A.ScrollController.prototype; _.super$ScrollController$attach = _.attach$1; _.super$ScrollController$debugFillDescription = _.debugFillDescription$1; _ = A.ScrollNotification.prototype; _.super$ScrollNotification$debugFillDescription = _.debugFillDescription$1; _ = A._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin.prototype; _.super$_ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = A.ScrollPhysics.prototype; _.super$ScrollPhysics$adjustPositionForNewDimensions = _.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity; _.super$ScrollPhysics$createBallisticSimulation = _.createBallisticSimulation$2; _ = A.ScrollPosition.prototype; _.super$ScrollPosition$absorb = _.absorb$1; _.super$ScrollPosition$setPixels = _.setPixels$1; _.super$ScrollPosition$applyViewportDimension = _.applyViewportDimension$1; _.super$ScrollPosition$applyContentDimensions = _.applyContentDimensions$2; _.super$ScrollPosition$applyNewDimensions = _.applyNewDimensions$0; _.super$ScrollPosition$ensureVisible = _.ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject; _.super$ScrollPosition$beginActivity = _.beginActivity$1; _.super$ScrollPosition$dispose = _.dispose$0; _.super$ScrollPosition$debugFillDescription = _.debugFillDescription$1; _ = A._ScrollMetricsNotification_Notification_ViewportNotificationMixin.prototype; _.super$_ScrollMetricsNotification_Notification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = A.ScrollPositionWithSingleContext.prototype; _.super$ScrollPositionWithSingleContext$beginActivity = _.beginActivity$1; _.super$ScrollPositionWithSingleContext$applyUserOffset = _.applyUserOffset$1; _.super$ScrollPositionWithSingleContext$goBallistic = _.goBallistic$1; _.super$ScrollPositionWithSingleContext$drag = _.drag$2; _.super$ScrollPositionWithSingleContext$dispose = _.dispose$0; _ = A._ScrollableState_State_TickerProviderStateMixin.prototype; _.super$_ScrollableState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = A.RawScrollbarState.prototype; _.super$RawScrollbarState$initState = _.initState$0; _.super$RawScrollbarState$didChangeDependencies = _.didChangeDependencies$0; _.super$RawScrollbarState$handleThumbPress = _.handleThumbPress$0; _.super$RawScrollbarState$handleThumbPressStart = _.handleThumbPressStart$1; _.super$RawScrollbarState$handleThumbPressEnd = _.handleThumbPressEnd$2; _.super$RawScrollbarState$handleHover = _.handleHover$1; _.super$RawScrollbarState$handleHoverExit = _.handleHoverExit$1; _.super$RawScrollbarState$dispose = _.dispose$0; _ = A._RawScrollbarState_State_TickerProviderStateMixin.prototype; _.super$_RawScrollbarState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin.prototype; _.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = A.SliverMultiBoxAdaptorWidget.prototype; _.super$SliverMultiBoxAdaptorWidget$estimateMaxScrollOffset = _.estimateMaxScrollOffset$5; _ = A.TextSelectionGestureDetectorBuilder.prototype; _.super$TextSelectionGestureDetectorBuilder$onForcePressStart = _.onForcePressStart$1; _.super$TextSelectionGestureDetectorBuilder$onSingleTapUp = _.onSingleTapUp$1; _ = A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin.prototype; _.super$__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__SlidableDismissalState_State_SingleTickerProviderStateMixin.prototype; _.super$__SlidableDismissalState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin.prototype; _.super$__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = A.__SlidableState_State_TickerProviderStateMixin.prototype; _.super$__SlidableState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin.prototype; _.super$__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = A._StyledToastWidgetState_State_TickerProviderStateMixin.prototype; _.super$_StyledToastWidgetState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.Phase.prototype; _.super$Phase$processCharacters = _.processCharacters$1; _ = A.ListProxy.prototype; _.super$ListProxy$$indexSet = _.$indexSet; _.super$ListProxy$add = _.add$1; _.super$ListProxy$insert = _.insert$2; _.super$ListProxy$addAll = _.addAll$1; _.super$ListProxy$insertAll = _.insertAll$2; _.super$ListProxy$removeAt = _.removeAt$1; _.super$ListProxy$removeRange = _.removeRange$2; _ = A.BaseRequest.prototype; _.super$BaseRequest$finalize = _.finalize$0; _ = A.BaseEntity.prototype; _.super$BaseEntity$getActions = _.getActions$4$client$includeEdit$multiselect$userCompany; _ = A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.EntityPresenter.prototype; _.super$EntityPresenter$getField = _.getField$2$context$field; _ = A.__SortArrowState_State_TickerProviderStateMixin0.prototype; _.super$__SortArrowState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__VariablesHelpState_State_SingleTickerProviderStateMixin.prototype; _.super$__VariablesHelpState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ClientEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ClientViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ClientViewFullwidthState_State_TickerProviderStateMixin.prototype; _.super$__ClientViewFullwidthState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyGatewayViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CreditEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__CreditEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__DashboardScreenState_State_TickerProviderStateMixin.prototype; _.super$__DashboardScreenState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__DesignEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__DesignEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ExpenseEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpenseEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ExpenseViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpenseViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__GroupViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__GroupViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InvoiceEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A._InvoiceEditDesktopState_State_TickerProviderStateMixin.prototype; _.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InvoiceViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ProductViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ProductViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ProjectViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ProjectViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__PurchaseOrderEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__QuoteEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__QuoteEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__AccountManagementState_State_SingleTickerProviderStateMixin.prototype; _.super$__AccountManagementState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__ClientPortalState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientPortalState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CompanyDetailsState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin.prototype; _.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__CustomFieldsState_State_SingleTickerProviderStateMixin.prototype; _.super$__CustomFieldsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__DeviceSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__DeviceSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin.prototype; _.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__InvoiceDesignState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceDesignState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin.prototype; _.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__UserDetailsState_State_SingleTickerProviderStateMixin.prototype; _.super$__UserDetailsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__WorkflowSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__SubscriptionEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__TaskEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__TaskEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__TaskViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__TaskViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__UserEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__UserEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__VendorEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__VendorEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__VendorViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__VendorViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__VendorViewFullwidthState_State_TickerProviderStateMixin.prototype; _.super$__VendorViewFullwidthState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.LinkifyElement.prototype; _.super$LinkifyElement$equals = _.equals$1; _ = A.LinkableElement.prototype; _.super$LinkableElement$equals = _.equals$1; _ = A.BlockSyntax.prototype; _.super$BlockSyntax$canParse = _.canParse$1; _ = A.__FadeWidgetState_State_SingleTickerProviderStateMixin.prototype; _.super$__FadeWidgetState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A._PdfPreviewCustomState_State_PdfPreviewRaster.prototype; _.super$_PdfPreviewCustomState_State_PdfPreviewRaster$dispose = _.dispose$0; _ = A._RoundedLoadingButtonState_State_TickerProviderStateMixin.prototype; _.super$_RoundedLoadingButtonState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A.SourceSpanMixin.prototype; _.super$SourceSpanMixin$compareTo = _.compareTo$1; _.super$SourceSpanMixin$$eq = _.$eq; _ = A.InjectedBaseState.prototype; _.super$InjectedBaseState$notify = _.notify$0; _.super$InjectedBaseState$dispose = _.dispose$0; _ = A.DocumentNode.prototype; _.super$DocumentNode$$eq = _.$eq; _ = A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin.prototype; _.super$__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin.prototype; _.super$__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype; _.super$__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype; _.super$__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin.prototype; _.super$__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.SingleColumnLayoutStylePhase.prototype; _.super$SingleColumnLayoutStylePhase$dispose = _.dispose$0; _ = A.SingleColumnLayoutComponentViewModel.prototype; _.super$SingleColumnLayoutComponentViewModel$applyStyles = _.applyStyles$1; _.super$SingleColumnLayoutComponentViewModel$$eq = _.$eq; _ = A.TextNode.prototype; _.super$TextNode$$eq = _.$eq; _ = A._BlinkingCaretState_State_SingleTickerProviderStateMixin.prototype; _.super$_BlinkingCaretState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__TextLayoutCaretState_State_TickerProviderStateMixin.prototype; _.super$__TextLayoutCaretState_State_TickerProviderStateMixin$dispose = _.dispose$0; })(); (function installTearOffs() { var _static_0 = hunkHelpers._static_0, _static_1 = hunkHelpers._static_1, _instance_0_u = hunkHelpers._instance_0u, _instance_1_u = hunkHelpers._instance_1u, _instance_1_i = hunkHelpers._instance_1i, _instance_0_i = hunkHelpers._instance_0i, _static_2 = hunkHelpers._static_2, _instance = hunkHelpers.installInstanceTearOff, _static = hunkHelpers.installStaticTearOff, _instance_2_u = hunkHelpers._instance_2u, _instance_2_i = hunkHelpers._instance_2i; _static_0(A, "_engine_SkiaObjects_postFrameCleanUp$closure", "SkiaObjects_postFrameCleanUp", 0); _static_1(A, "_engine_BitmapCanvas__onEvictElement$closure", "BitmapCanvas__onEvictElement", 2906); _static_1(A, "_engine___noopCallback$closure", "_noopCallback", 135); _static_1(A, "_engine___emptyCallback$closure", "_emptyCallback", 83); _instance_0_u(A.AlarmClock.prototype, "get$_timerDidFire", "_timerDidFire$0", 0); _instance_1_u(A.HtmlViewEmbedder.prototype, "get$_releaseOverlay", "_releaseOverlay$1", 89); _instance_0_u(A.FontFallbackData.prototype, "get$_ensureFallbackFonts", "_ensureFallbackFonts$0", 0); var _; _instance_1_i(_ = A.FallbackFontDownloadQueue.prototype, "get$add", "add$1", 2826); _instance_0_u(_, "get$startDownloads", "startDownloads$0", 100); _instance_1_u(A.SkiaFontCollection.prototype, "get$_getArrayBuffer", "_getArrayBuffer$1", 555); _instance_1_u(_ = A.Surface.prototype, "get$_contextRestoredListener", "_contextRestoredListener$1", 69); _instance_1_u(_, "get$_contextLostListener", "_contextLostListener$1", 69); _instance_1_u(A.SurfaceFactory.prototype, "get$_removeFromDom", "_removeFromDom$1", 1150); _instance_1_u(_ = A.FlutterViewEmbedder.prototype, "get$_metricsDidChange", "_metricsDidChange$1", 1094); _instance_1_u(_, "get$_languageDidChange", "_languageDidChange$1", 69); _instance_1_u(A.KeyboardBinding.prototype, "get$_onKeyData", "_onKeyData$1", 497); _instance_1_i(A.MultiEntriesBrowserHistory.prototype, "get$onPopState", "onPopState$1", 35); _instance_1_i(A.SingleEntryBrowserHistory.prototype, "get$onPopState", "onPopState$1", 35); _instance_1_u(A.PointerBinding.prototype, "get$_onPointerData", "_onPointerData$1", 1038); _instance_0_i(A.RulerHost.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.DefaultTextEditingStrategy.prototype, "get$handleChange", "handleChange$1", 69); _instance_1_u(_, "get$handleBeforeInput", "handleBeforeInput$1", 69); _instance_1_u(_, "get$handleCompositionUpdate", "handleCompositionUpdate$1", 69); _instance_1_u(_, "get$maybeSendAction", "maybeSendAction$1", 69); _static_2(J, "_interceptors_JSArray__compareAny$closure", "JSArray__compareAny", 327); _instance_1_i(_ = J.JSArray.prototype, "get$add", "add$1", 35); _instance(_, "get$toList", 1, 0, function() { return {growable: true}; }, ["call$1$growable", "call$0"], ["toList$1$growable", "toList$0"], "List<1>({growable:bool})", 0, 0); _instance(J.JSString.prototype, "get$startsWith", 1, 1, null, ["call$2", "call$1"], ["startsWith$2", "startsWith$1"], 2169, 0, 0); _instance_1_i(A._CastIterableBase.prototype, "get$contains", "contains$1", 107); _static_1(A, "_js_helper_GeneralConstantMap__constantMapHashCode$closure", "GeneralConstantMap__constantMapHashCode", 282); _static_0(A, "_js_helper_Primitives_dateNow$closure", "Primitives_dateNow", 160); _instance_1_i(A.JsLinkedHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); _instance_1_u(A._MatchImplementation.prototype, "get$group", "group$1", 2259); _instance_1_u(A.StringMatch.prototype, "get$group", "group$1", 284); _static_1(A, "async__AsyncRun__scheduleImmediateJsOverride$closure", "_AsyncRun__scheduleImmediateJsOverride", 502); _static_1(A, "async__AsyncRun__scheduleImmediateWithSetImmediate$closure", "_AsyncRun__scheduleImmediateWithSetImmediate", 502); _static_1(A, "async__AsyncRun__scheduleImmediateWithTimer$closure", "_AsyncRun__scheduleImmediateWithTimer", 502); _static_0(A, "async___startMicrotaskLoop$closure", "_startMicrotaskLoop", 0); _static_1(A, "async___nullDataHandler$closure", "_nullDataHandler", 83); _static_2(A, "async___nullErrorHandler$closure", "_nullErrorHandler", 129); _static_0(A, "async___nullDoneHandler$closure", "_nullDoneHandler", 0); _static(A, "async___rootScheduleMicrotask$closure", 4, null, ["call$4"], ["_rootScheduleMicrotask"], 2908, 0); _instance_0_u(_ = A._BroadcastSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_1_i(_ = A._BroadcastStreamController.prototype, "get$add", "add$1", 35); _instance_1_i(_, "get$_async$_add", "_async$_add$1", 35); _instance_2_u(_, "get$_addError", "_addError$2", 129); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance(A._Completer.prototype, "get$completeError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["completeError$2", "completeError$1"], 780, 0, 0); _instance(A._AsyncCompleter.prototype, "get$complete", 1, 0, function() { return [null]; }, ["call$1", "call$0"], ["complete$1", "complete$0"], 776, 0, 0); _instance_2_u(A._Future.prototype, "get$_completeError", "_completeError$2", 129); _instance_1_i(_ = A._StreamController.prototype, "get$add", "add$1", 35); _instance(_, "get$addError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["addError$2", "addError$1"], 780, 0, 0); _instance_1_i(_, "get$_async$_add", "_async$_add$1", 35); _instance_2_u(_, "get$_addError", "_addError$2", 129); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance_0_u(_ = A._ControllerSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_0_u(_ = A._BufferingStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_0_u(A._DoneStreamSubscription.prototype, "get$_sendDone", "_sendDone$0", 0); _instance_1_u(_ = A._StreamIterator.prototype, "get$_async$_onData", "_async$_onData$1", 35); _instance_2_u(_, "get$_onError", "_onError$2", 129); _instance_0_u(_, "get$_onDone", "_onDone$0", 0); _instance_0_u(_ = A._ForwardingStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_1_u(_, "get$_handleData", "_handleData$1", 35); _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 3571); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); _instance_0_u(_ = A._SinkTransformerStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_1_u(_, "get$_handleData", "_handleData$1", 35); _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 129); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); _static_2(A, "collection___defaultEquals$closure", "_defaultEquals", 491); _static_1(A, "collection___defaultHashCode$closure", "_defaultHashCode", 282); _static_2(A, "collection_ListMixin__compareAny$closure", "ListMixin__compareAny", 327); _static_2(A, "collection___dynamicCompare$closure", "_dynamicCompare", 327); _instance_1_i(A._LinkedCustomHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); _instance_1_i(A._HashSet.prototype, "get$contains", "contains$1", 107); _instance_1_i(A._LinkedHashSet.prototype, "get$contains", "contains$1", 107); _instance_1_i(A.IterableMixin.prototype, "get$contains", "contains$1", 107); _instance_1_i(A._UnmodifiableSet.prototype, "get$contains", "contains$1", 107); _instance_1_i(A.SplayTreeSet.prototype, "get$contains", "contains$1", 107); _static_1(A, "convert___defaultToEncodable$closure", "_defaultToEncodable", 12); _instance_1_i(_ = A._ByteCallbackSink.prototype, "get$add", "add$1", 35); _instance_0_i(_, "get$close", "close$0", 0); _static_1(A, "core__identityHashCode$closure", "identityHashCode", 282); _static_2(A, "core__identical$closure", "identical", 491); _static_2(A, "core_Comparable_compare$closure", "Comparable_compare", 2909); _static_1(A, "core_Uri_decodeComponent$closure", "Uri_decodeComponent", 108); _instance_1_i(A.Iterable.prototype, "get$contains", "contains$1", 107); _instance(A.StringBuffer.prototype, "get$writeln", 0, 0, null, ["call$1", "call$0"], ["writeln$1", "writeln$0"], 776, 0, 0); _static(A, "html__Html5NodeValidator__standardAttributeValidator$closure", 4, null, ["call$4"], ["_Html5NodeValidator__standardAttributeValidator"], 525, 0); _static(A, "html__Html5NodeValidator__uriAttributeValidator$closure", 4, null, ["call$4"], ["_Html5NodeValidator__uriAttributeValidator"], 525, 0); _instance_2_i(A.HttpRequest.prototype, "get$setRequestHeader", "setRequestHeader$2", 173); _instance_1_u(_ = A.Console.prototype, "get$group", "group$1", 35); _instance_1_u(_, "get$warn", "warn$1", 35); _instance_0_u(_ = A._FileStream.prototype, "get$_readBlock", "_readBlock$0", 0); _instance_0_i(_, "get$_io$_start", "_io$_start$0", 0); _instance_0_i(A._File.prototype, "get$length", "length$0", 340); _static_1(A, "js___convertToJS$closure", "_convertToJS", 506); _static_1(A, "js___convertToDart$closure", "_convertToDart", 176); _static(A, "math__max$closure", 2, null, ["call$1$2", "call$2"], ["max", function(a, b) { return A.max(a, b, type$.num); }], 2911, 1); _static(A, "ui_Size_lerp$closure", 3, null, ["call$3"], ["Size_lerp"], 2912, 0); _static(A, "ui__lerpDouble$closure", 3, null, ["call$3"], ["lerpDouble"], 2913, 0); _static(A, "ui_Color_lerp$closure", 3, null, ["call$3"], ["Color_lerp"], 2914, 0); _instance_1_u(A._StoredMessage.prototype, "get$invoke", "invoke$1", 135); _instance_0_u(A._Channel.prototype, "get$_drainStep", "_drainStep$0", 0); _instance_2_u(A.BoardItemState.prototype, "get$onDropItem", "onDropItem$2", 2910); _instance_1_u(A.BoardListState.prototype, "get$onDropList", "onDropList$1", 2905); _instance_1_i(A.CopyOnWriteSet.prototype, "get$contains", "contains$1", 107); _instance_1_u(_ = A.CachedNetworkImage.prototype, "get$_octoPlaceholderBuilder", "_octoPlaceholderBuilder$1", 78); _instance(_, "get$_octoErrorBuilder", 0, 3, null, ["call$3"], ["_octoErrorBuilder$3"], 609, 0, 0); _instance_1_u(_ = A.MultiImageStreamCompleter.prototype, "get$_multi_image_stream_completer$_handleAppFrame", "_multi_image_stream_completer$_handleAppFrame$1", 22); _instance_0_u(_, "get$_multi_image_stream_completer$_scheduleAppFrame", "_multi_image_stream_completer$_scheduleAppFrame$0", 0); _instance_1_i(_, "get$addListener", "addListener$1", 501); _instance_1_u(_ = A.StringCharacterRange.prototype, "get$dropBackWhile", "dropBackWhile$1", 640); _instance_1_u(_, "get$expandWhile", "expandWhile$1", 640); _instance_1_u(A.CartesianChart.prototype, "get$makeSeries", "makeSeries$1", "MutableSeries(Object?)"); _instance_1_u(_ = A.DomainHighlighter0.prototype, "get$_selectionChanged", "_selectionChanged$1", 35); _instance_1_u(_, "get$_updateColorFunctions", "_updateColorFunctions$1", 35); _instance_1_u(_ = A.Legend.prototype, "get$defaultLegendMeasureFormatter", "defaultLegendMeasureFormatter$1", 677); _instance_1_u(_, "get$_preProcess", "_preProcess$1", 35); _instance_1_u(_, "get$_postProcess", "_postProcess$1", 35); _instance_1_u(_, "get$_legend$_selectionChanged", "_legend$_selectionChanged$1", 35); _instance_1_u(A.SeriesLegend0.prototype, "get$onData", "onData$1", 35); _instance_1_u(_ = A.LinePointHighlighter0.prototype, "get$_line_point_highlighter$_selectionChanged", "_line_point_highlighter$_selectionChanged$1", 35); _instance_0_u(_, "get$_updateViewData", "_updateViewData$0", 0); _instance_1_u(_ = A.SelectNearest0.prototype, "get$_onTapTest", "_onTapTest$1", 496); _instance_1_u(_, "get$_onLongPressSelect", "_onLongPressSelect$1", 496); _instance(_, "get$_onSelect", 0, 1, null, ["call$2", "call$1"], ["_onSelect$2", "_onSelect$1"], 2868, 0, 0); _instance(_, "get$_onDeselectAll", 0, 3, null, ["call$3"], ["_onDeselectAll$3"], 2857, 0, 0); _instance_1_u(A.BaseChart.prototype, "get$_notACustomBehavior", "_notACustomBehavior$1", 756); _instance_0_u(A.BaseChartState.prototype, "get$_animationTick", "_animationTick$0", 0); _instance_1_u(A.ChartContainerCustomPaint.prototype, "get$_buildSemantics", "_buildSemantics$1", 2811); _instance_1_u(_ = A.ChartGestureDetector.prototype, "get$onTapDown", "onTapDown$1", 84); _instance_1_u(_, "get$onTapUp", "onTapUp$1", 95); _instance_1_u(_, "get$onScaleStart", "onScaleStart$1", 794); _instance_1_u(_, "get$onScaleUpdate", "onScaleUpdate$1", 795); _instance_1_u(_, "get$onScaleEnd", "onScaleEnd$1", 798); _instance_2_u(_ = A.DeepCollectionEquality.prototype, "get$equals", "equals$2", 491); _instance_1_i(_, "get$hash", "hash$1", 282); _instance_1_u(_, "get$isValidKey", "isValidKey$1", 107); _instance_0_i(A.XFileBase.prototype, "get$length", "length$0", 340); _instance_0_i(A.XFile.prototype, "get$length", "length$0", 340); _instance_0_i(A.MemoryFile.prototype, "get$length", "length$0", 340); _static_2(A, "memory_file_system___defaultOpHandle$closure", "_defaultOpHandle", 2915); _instance_1_u(A.MemoryFileSystemEntity.prototype, "get$defaultCheckType", "defaultCheckType$1", 2722); _static_1(A, "utils0__isEmpty$closure", "isEmpty", 52); _instance(_ = A.AnimationController.prototype, "get$reverse", 1, 0, function() { return {from: null}; }, ["call$1$from", "call$0"], ["reverse$1$from", "reverse$0"], 2709, 0, 0); _instance_1_u(_, "get$_directionSetter", "_directionSetter$1", 2706); _instance(_, "get$stop", 1, 0, null, ["call$1$canceled", "call$0"], ["stop$1$canceled", "stop$0"], 2701, 0, 0); _instance_1_u(_, "get$_animation_controller$_tick", "_animation_controller$_tick$1", 22); _instance_1_u(A.ReverseAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 42); _instance_1_u(A.CurvedAnimation.prototype, "get$_updateCurveDirection", "_updateCurveDirection$1", 42); _instance_1_u(_ = A.TrainHoppingAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 42); _instance_0_u(_, "get$_valueChangeHandler", "_valueChangeHandler$0", 0); _instance_1_u(_ = A.CompoundAnimation.prototype, "get$_maybeNotifyStatusListeners", "_maybeNotifyStatusListeners$1", 42); _instance_0_u(_, "get$_maybeNotifyListeners", "_maybeNotifyListeners$0", 0); _instance_0_u(A.AnimationLocalListenersMixin.prototype, "get$notifyListeners", "notifyListeners$0", 0); _instance_1_u(A.AnimationLocalStatusListenersMixin.prototype, "get$notifyStatusListeners", "notifyStatusListeners$1", 42); _instance_1_i(A._Interval.prototype, "get$value", "value$1", 8); _instance_1_u(_ = A._CupertinoButtonState.prototype, "get$_button$_handleTapDown", "_button$_handleTapDown$1", 84); _instance_1_u(_, "get$_button$_handleTapUp", "_button$_handleTapUp$1", 95); _instance_0_u(_, "get$_button$_handleTapCancel", "_button$_handleTapCancel$0", 0); _instance_1_u(_ = A._CupertinoBackGestureDetectorState.prototype, "get$_route$_handleDragStart", "_route$_handleDragStart$1", 85); _instance_1_u(_, "get$_route$_handleDragUpdate", "_route$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_route$_handleDragEnd", "_route$_handleDragEnd$1", 114); _instance_0_u(_, "get$_route$_handleDragCancel", "_route$_handleDragCancel$0", 0); _instance_1_u(_, "get$_route$_handlePointerDown", "_route$_handlePointerDown$1", 248); _instance_0_u(A._CupertinoScrollbarState.prototype, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_ = A._CupertinoSwitchState.prototype, "get$_switch$_handleTapDown", "_switch$_handleTapDown$1", 84); _instance_0_u(_, "get$_switch$_handleTap", "_switch$_handleTap$0", 0); _instance_1_u(_, "get$_switch$_handleTapUp", "_switch$_handleTapUp$1", 95); _instance_0_u(_, "get$_switch$_handleTapCancel", "_switch$_handleTapCancel$0", 0); _instance_1_u(_, "get$_switch$_handleDragStart", "_switch$_handleDragStart$1", 85); _instance_1_u(_, "get$_switch$_handleDragUpdate", "_switch$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch$_handleDragEnd", "_switch$_handleDragEnd$1", 114); _static(A, "assertions_FlutterError_dumpErrorToConsole$closure", 1, null, ["call$2$forceReport", "call$1"], ["FlutterError_dumpErrorToConsole", function(details) { return A.FlutterError_dumpErrorToConsole(details, false); }], 2916, 0); _static_1(A, "assertions_FlutterError_defaultStackFilter$closure", "FlutterError_defaultStackFilter", 494); _static_1(A, "assertions_DiagnosticsStackTrace__createStackFrame$closure", "DiagnosticsStackTrace__createStackFrame", 2917); _instance_0_i(_ = A.ChangeNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$notifyListeners", "notifyListeners$0", 0); _instance_1_i(A.DiagnosticPropertiesBuilder.prototype, "get$add", "add$1", 605); _instance_1_u(A.AbstractNode.prototype, "get$redepthChild", "redepthChild$1", 2645); _static_1(A, "stack_frame_StackFrame_fromStackTraceLine$closure", "StackFrame_fromStackTraceLine", 2918); _instance_1_u(_ = A.GestureBinding.prototype, "get$_handlePointerDataPacket", "_handlePointerDataPacket$1", 2626); _instance_1_u(_, "get$cancelPointer", "cancelPointer$1", 89); _instance_0_u(_, "get$_flushPointerEventQueue", "_flushPointerEventQueue$0", 0); _instance_1_u(_, "get$_handlePointerEventImmediately", "_handlePointerEventImmediately$1", 98); _instance_0_u(_, "get$_handleSampleTimeChanged", "_handleSampleTimeChanged$0", 0); _static(A, "force_press_ForcePressGestureRecognizer__inverseLerp$closure", 3, null, ["call$3"], ["ForcePressGestureRecognizer__inverseLerp"], 2919, 0); _instance_1_u(A.ForcePressGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 98); _static_1(A, "monodrag_DragGestureRecognizer__defaultBuilder$closure", "DragGestureRecognizer__defaultBuilder", 593); _instance_1_u(A.DragGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 98); _instance_1_u(_ = A.MultiDragGestureRecognizer.prototype, "get$_multidrag$_handleEvent", "_multidrag$_handleEvent$1", 98); _instance_1_u(_, "get$_removeState", "_removeState$1", 89); _instance_0_u(A._DelayedPointerState.prototype, "get$_delayPassed", "_delayPassed$0", 0); _instance_0_u(A._CountdownZoned.prototype, "get$_onTimeout", "_onTimeout$0", 0); _instance_1_u(_ = A.DoubleTapGestureRecognizer.prototype, "get$_multitap$_handleEvent", "_multitap$_handleEvent$1", 98); _instance_1_u(_, "get$_reject", "_reject$1", 2617); _instance_0_u(_, "get$_multitap$_reset", "_multitap$_reset$0", 0); _instance(A.OneSequenceGestureRecognizer.prototype, "get$stopTrackingPointer", 0, 1, null, ["call$1"], ["stopTrackingPointer$1"], 89, 0, 1); _instance_1_u(A.PrimaryPointerGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 98); _instance_1_u(A.ScaleGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 98); _instance(_ = A._LicensePageState.prototype, "get$_packageLicensePage", 0, 3, null, ["call$3"], ["_packageLicensePage$3"], 659, 0, 0); _instance_2_u(_, "get$_packagesView", "_packagesView$2", 660); _instance_2_u(_ = A._MaterialAppState.prototype, "get$_inspectorSelectButtonBuilder", "_inspectorSelectButtonBuilder$2", 2459); _instance_2_u(_, "get$_materialBuilder", "_materialBuilder$2", 211); _instance_0_u(_ = A._AppBarState.prototype, "get$_handleDrawerButton", "_handleDrawerButton$0", 0); _instance_0_u(_, "get$_handleDrawerButtonEnd", "_handleDrawerButtonEnd$0", 0); _instance_1_u(_, "get$_app_bar$_handleScrollNotification", "_app_bar$_handleScrollNotification$1", 2450); _instance_1_u(_ = A._BottomSheetState.prototype, "get$_bottom_sheet$_handleDragStart", "_bottom_sheet$_handleDragStart$1", 85); _instance_1_u(_, "get$_bottom_sheet$_handleDragUpdate", "_bottom_sheet$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_bottom_sheet$_handleDragEnd", "_bottom_sheet$_handleDragEnd$1", 114); _instance_1_u(_, "get$extentChanged", "extentChanged$1", 708); _instance_1_u(_ = A._RenderInputPadding.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A._RenderInputPadding0.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A._CalendarDatePickerState.prototype, "get$_handleMonthChanged", "_handleMonthChanged$1", 247); _instance_1_u(_, "get$_handleYearChanged", "_handleYearChanged$1", 247); _instance_1_u(_, "get$_handleDayChanged", "_handleDayChanged$1", 247); _instance_1_u(_ = A._MonthPickerState.prototype, "get$_handleDateSelected", "_handleDateSelected$1", 247); _instance_1_u(_, "get$_handleMonthPageChanged", "_handleMonthPageChanged$1", 89); _instance_0_u(_, "get$_handleNextMonth", "_handleNextMonth$0", 0); _instance_0_u(_, "get$_handlePreviousMonth", "_handlePreviousMonth$0", 0); _instance_1_u(_, "get$_handleGridFocusChange", "_handleGridFocusChange$1", 74); _instance_1_u(_, "get$_handleGridNextFocus", "_handleGridNextFocus$1", 2363); _instance_1_u(_, "get$_handleGridPreviousFocus", "_handleGridPreviousFocus$1", 2362); _instance_1_u(_, "get$_handleDirectionFocus", "_handleDirectionFocus$1", 2356); _instance_2_u(_, "get$_buildItems", "_buildItems$2", 159); _instance_2_u(A._YearPickerState.prototype, "get$_buildYearItem", "_buildYearItem$2", 159); _instance_0_u(A.CheckboxListTile.prototype, "get$_handleValueChange", "_handleValueChange$0", 0); _instance_1_u(_ = A.TableRowInkWell.prototype, "get$getRectCallback", "getRectCallback$1", 2354); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 802); _instance_0_u(_ = A._SortArrowState.prototype, "get$_data_table$_rebuild", "_data_table$_rebuild$0", 0); _instance_1_u(_, "get$_resetOrientationAnimation", "_resetOrientationAnimation$1", 42); _instance_0_u(_ = A._DatePickerDialogState.prototype, "get$_handleOk", "_handleOk$0", 0); _instance_0_u(_, "get$_handleCancel", "_handleCancel$0", 0); _instance_0_u(_, "get$_handleEntryModeToggle", "_handleEntryModeToggle$0", 0); _instance_1_u(_, "get$_handleDateChanged", "_handleDateChanged$1", 247); _static(A, "dialog___buildMaterialDialogTransitions$closure", 4, null, ["call$4"], ["_buildMaterialDialogTransitions"], 2920, 0); _instance_0_u(_ = A.DrawerControllerState.prototype, "get$_animationChanged", "_animationChanged$0", 0); _instance_1_u(_, "get$_animationStatusChanged", "_animationStatusChanged$1", 42); _instance_0_u(_, "get$_handleHistoryEntryRemoved", "_handleHistoryEntryRemoved$0", 0); _instance_1_u(_, "get$_handleDragDown", "_handleDragDown$1", 516); _instance_0_u(_, "get$_handleDragCancel", "_handleDragCancel$0", 0); _instance_1_u(_, "get$_move", "_move$1", 70); _instance_1_u(_, "get$_settle", "_settle$1", 114); _instance_0_i(_, "get$close", "close$0", 0); _instance_1_u(_ = A._DropdownMenuItemButtonState.prototype, "get$_dropdown$_handleFocusChange", "_dropdown$_handleFocusChange$1", 74); _instance_0_u(_, "get$_handleOnTap", "_handleOnTap$0", 0); _instance_0_u(_ = A._DropdownButtonState.prototype, "get$_dropdown$_handleFocusChanged", "_dropdown$_handleFocusChanged$0", 0); _instance_0_u(_, "get$_dropdown$_handleTap", "_dropdown$_handleTap$0", 0); _instance_1_u(A._DropdownButtonFormFieldState.prototype, "get$didChange", "didChange$1", 35); _instance_0_u(A._ExpandIconState.prototype, "get$_handlePressed", "_handlePressed$0", 0); _instance_1_u(_ = A._RenderChildOverflowBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_0_u(_ = A._InkState.prototype, "get$_handleRemoved", "_handleRemoved$0", 0); _instance_1_u(_, "get$_build", "_build$1", 78); _instance_0_u(A.InkDecoration.prototype, "get$_handleChanged", "_handleChanged$0", 0); _instance_1_u(A.InkHighlight.prototype, "get$_handleAlphaStatusChanged", "_handleAlphaStatusChanged$1", 42); _instance_1_u(A.InkRipple.prototype, "get$_ink_ripple$_handleAlphaStatusChanged", "_ink_ripple$_handleAlphaStatusChanged$1", 42); _instance_1_u(A.InkSplash.prototype, "get$_ink_splash$_handleAlphaStatusChanged", "_ink_splash$_handleAlphaStatusChanged$1", 42); _instance_1_u(_ = A.InkResponse.prototype, "get$getRectCallback", "getRectCallback$1", 2326); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 802); _instance(_ = A._InkResponseState.prototype, "get$_simulateTap", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_simulateTap$1", "_simulateTap$0"], 526, 0, 0); _instance_0_u(_, "get$_simulateLongPress", "_simulateLongPress$0", 0); _instance_1_u(_, "get$_handleFocusHighlightModeChange", "_handleFocusHighlightModeChange$1", 509); _instance_1_u(_, "get$_handleFocusUpdate", "_handleFocusUpdate$1", 74); _instance_1_u(_, "get$_handleTapDown", "_handleTapDown$1", 84); _instance_1_u(_, "get$_handleTapUp", "_handleTapUp$1", 95); _instance_0_u(_, "get$_handleTap", "_handleTap$0", 0); _instance_0_u(_, "get$_handleTapCancel", "_handleTapCancel$0", 0); _instance_0_u(_, "get$_handleDoubleTap", "_handleDoubleTap$0", 0); _instance_0_u(_, "get$_handleLongPress", "_handleLongPress$0", 0); _instance_1_u(_, "get$_handleMouseEnter", "_handleMouseEnter$1", 264); _instance_1_u(_, "get$_ink_well$_handleMouseExit", "_ink_well$_handleMouseExit$1", 200); _instance_1_u(_ = A._InputDatePickerFormFieldState.prototype, "get$_validateDate", "_validateDate$1", 438); _instance_1_u(_, "get$_handleSaved", "_handleSaved$1", 239); _instance_1_u(_, "get$_handleSubmitted", "_handleSubmitted$1", 117); _instance_0_u(A._HelperErrorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = A._RenderDecoration.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_2_u(_, "get$_paintLabel", "_paintLabel$2", 93); _instance_0_u(A._InputDecoratorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = A._RenderListTile.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_0_u(A._MergeableMaterialState.prototype, "get$_handleTick", "_handleTick$0", 0); _instance_0_u(_ = A.PaginatedDataTableState.prototype, "get$_handleDataSourceChanged", "_handleDataSourceChanged$0", 0); _instance_0_u(_, "get$_handleFirst", "_handleFirst$0", 0); _instance_0_u(_, "get$_handlePrevious", "_handlePrevious$0", 0); _instance_0_u(_, "get$_handleNext", "_handleNext$0", 0); _instance_0_u(_, "get$_handleLast", "_handleLast$0", 0); _instance_0_u(A.PopupMenuItemState.prototype, "get$handleTap", "handleTap$0", 0); _instance_0_u(A.PopupMenuButtonState.prototype, "get$showButtonMenu", "showButtonMenu$0", 0); _instance_1_u(A._RadioState.prototype, "get$_radio$_handleChanged", "_radio$_handleChanged$1", 442); _instance_1_u(_ = A.RefreshIndicatorState.prototype, "get$_refresh_indicator$_handleScrollNotification", "_refresh_indicator$_handleScrollNotification$1", 162); _instance_1_u(_, "get$_handleGlowNotification", "_handleGlowNotification$1", 2295); _instance_2_u(_ = A._ReorderableListViewState.prototype, "get$_itemBuilder", "_itemBuilder$2", 159); _instance(_, "get$_proxyDecorator", 0, 3, null, ["call$3"], ["_proxyDecorator$3"], 2283, 0, 0); _instance_1_u(_ = A._FloatingActionButtonTransitionState.prototype, "get$_handlePreviousAnimationStatusChanged", "_handlePreviousAnimationStatusChanged$1", 42); _instance_0_u(_, "get$_onProgressChanged", "_onProgressChanged$0", 0); _instance_1_u(_ = A.ScaffoldState.prototype, "get$_drawerOpenedCallback", "_drawerOpenedCallback$1", 74); _instance_1_u(_, "get$_endDrawerOpenedCallback", "_endDrawerOpenedCallback$1", 74); _instance_0_u(_, "get$_handleStatusBarTap", "_handleStatusBarTap$0", 0); _instance_0_i(_ = A._StandardBottomSheetState.prototype, "get$close", "close$0", 0); _instance_1_u(_, "get$_scaffold$_handleDragStart", "_scaffold$_handleDragStart$1", 85); _instance(_, "get$_scaffold$_handleDragEnd", 0, 1, null, ["call$2$isClosing", "call$1"], ["_scaffold$_handleDragEnd$2$isClosing", "_scaffold$_handleDragEnd$1"], 2274, 0, 0); _instance_1_u(_, "get$_handleStatusChange", "_handleStatusChange$1", 42); _instance_1_u(_, "get$extentChanged", "extentChanged$1", 708); _static(A, "scrollbar_theme___lerpBool$closure", 3, null, ["call$3"], ["_lerpBool"], 2921, 0); _instance_1_u(_ = A._SelectableTextSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 166); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 166); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 238); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 95); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 253); _instance_0_u(_ = A._SelectableTextState.prototype, "get$_onControllerChanged", "_onControllerChanged$0", 0); _instance_2_u(_, "get$_selectable_text$_handleSelectionChanged", "_selectable_text$_handleSelectionChanged$2", 594); _instance_0_u(_, "get$_selectable_text$_handleSelectionHandleTapped", "_selectable_text$_handleSelectionHandleTapped$0", 0); _instance_1_u(_ = A._MaterialSwitchState.prototype, "get$_switch0$_handleDragStart", "_switch0$_handleDragStart$1", 85); _instance_1_u(_, "get$_switch0$_handleDragUpdate", "_switch0$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch0$_handleDragEnd", "_switch0$_handleDragEnd$1", 114); _instance_1_u(_, "get$_switch0$_handleChanged", "_switch0$_handleChanged$1", 442); _instance_0_u(_ = A._SwitchPainter.prototype, "get$_handleDecorationChanged", "_handleDecorationChanged$0", 0); _instance_0_i(_, "get$dispose", "dispose$0", 0); _instance_0_i(A.TabController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(A._IndicatorPainter.prototype, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_ = A._TabBarState.prototype, "get$_handleTabControllerAnimationTick", "_handleTabControllerAnimationTick$0", 0); _instance_0_u(_, "get$_handleTabControllerTick", "_handleTabControllerTick$0", 0); _instance(_, "get$_saveTabOffsets", 0, 3, null, ["call$3"], ["_saveTabOffsets$3"], 2269, 0, 0); _instance_0_u(_ = A._TabBarViewState.prototype, "get$_handleTabControllerAnimationTick", "_handleTabControllerAnimationTick$0", 0); _instance_1_u(_, "get$_tabs$_handleScrollNotification", "_tabs$_handleScrollNotification$1", 162); _instance_1_u(_ = A._TextFieldSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 166); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 166); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 238); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 95); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 253); _instance_0_u(_ = A._TextFieldState.prototype, "get$_text_field$_handleFocusChanged", "_text_field$_handleFocusChanged$0", 0); _instance_2_u(_, "get$_handleSelectionChanged", "_handleSelectionChanged$2", 594); _instance_0_u(_, "get$_handleSelectionHandleTapped", "_handleSelectionHandleTapped$0", 0); _instance_0_u(A._TextFormFieldState.prototype, "get$_handleControllerChanged", "_handleControllerChanged$0", 0); _instance_1_u(A._TimePickerHeader.prototype, "get$_handleChangeMode", "_handleChangeMode$1", 610); _instance_1_u(_ = A._RenderInputPadding1.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A._DialState.prototype, "get$_handlePanStart", "_handlePanStart$1", 85); _instance_1_u(_, "get$_handlePanUpdate", "_handlePanUpdate$1", 70); _instance_1_u(_, "get$_handlePanEnd", "_handlePanEnd$1", 114); _instance_1_u(_, "get$_time_picker0$_handleTapUp", "_time_picker0$_handleTapUp$1", 95); _instance_1_u(_ = A._TimePickerInputState.prototype, "get$_handleHourSavedSubmitted", "_handleHourSavedSubmitted$1", 239); _instance_1_u(_, "get$_handleHourChanged", "_handleHourChanged$1", 117); _instance_1_u(_, "get$_handleMinuteSavedSubmitted", "_handleMinuteSavedSubmitted$1", 239); _instance_1_u(_, "get$_handleDayPeriodChanged", "_handleDayPeriodChanged$1", 615); _instance_1_u(_, "get$_validateHour", "_validateHour$1", 438); _instance_1_u(_, "get$_validateMinute", "_validateMinute$1", 438); _instance_1_u(_ = A._TimePickerDialogState.prototype, "get$_time_picker0$_handleModeChanged", "_time_picker0$_handleModeChanged$1", 610); _instance_0_u(_, "get$_time_picker0$_handleEntryModeToggle", "_time_picker0$_handleEntryModeToggle$0", 0); _instance_1_u(_, "get$_handleTimeChanged", "_handleTimeChanged$1", 615); _instance_0_u(_, "get$_handleHourDoubleTapped", "_handleHourDoubleTapped$0", 0); _instance_0_u(_, "get$_handleMinuteDoubleTapped", "_handleMinuteDoubleTapped$0", 0); _instance_0_u(_, "get$_handleHourSelected", "_handleHourSelected$0", 0); _instance_0_u(_, "get$_time_picker0$_handleCancel", "_time_picker0$_handleCancel$0", 0); _instance_0_u(_, "get$_time_picker0$_handleOk", "_time_picker0$_handleOk$0", 0); _instance_1_u(_ = A._SelectToggleButtonRenderObject.prototype, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_ = A._RenderInputPadding2.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.ToggleableStateMixin.prototype, "get$_toggleable$_handleTapDown", "_toggleable$_handleTapDown$1", 84); _instance(_, "get$_toggleable$_handleTap", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_toggleable$_handleTap$1", "_toggleable$_handleTap$0"], 526, 0, 0); _instance(_, "get$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_handleTapEnd$1", "_handleTapEnd$0"], 2218, 0, 0); _instance_1_u(_, "get$_handleFocusHighlightChanged", "_handleFocusHighlightChanged$1", 74); _instance_1_u(_, "get$_handleHoverChanged", "_handleHoverChanged$1", 74); _instance_0_i(A.ToggleablePainter.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = A.TooltipState.prototype, "get$_handleMouseTrackerChange", "_handleMouseTrackerChange$0", 0); _instance_1_u(_, "get$_tooltip$_handleStatusChanged", "_tooltip$_handleStatusChanged$1", 42); _instance_0_u(_, "get$ensureTooltipVisible", "ensureTooltipVisible$0", 18); _instance_1_u(_, "get$_tooltip$_handlePointerEvent", "_tooltip$_handlePointerEvent$1", 98); _instance_0_u(_, "get$_handlePress", "_handlePress$0", 0); _instance(A.PaintingBinding.prototype, "get$instantiateImageCodec", 0, 1, null, ["call$4$allowUpscaling$cacheHeight$cacheWidth", "call$1"], ["instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth", "instantiateImageCodec$1"], 2217, 0, 0); _instance_2_u(A.DecorationImagePainter.prototype, "get$_handleImage", "_handleImage$2", 627); _static(A, "edge_insets_EdgeInsetsGeometry_lerp$closure", 3, null, ["call$3"], ["EdgeInsetsGeometry_lerp"], 2922, 0); _static_1(A, "image_resolution_AssetImage__manifestParser$closure", "AssetImage__manifestParser", 2923); _instance_1_i(_ = A.ImageStreamCompleter.prototype, "get$addListener", "addListener$1", 501); _instance_1_u(_, "get$setImage", "setImage$1", 2187); _instance_1_u(_, "get$reportImageChunkEvent", "reportImageChunkEvent$1", 637); _instance_1_u(_ = A.MultiFrameImageStreamCompleter.prototype, "get$_handleCodecReady", "_handleCodecReady$1", 504); _instance_1_u(_, "get$_handleAppFrame", "_handleAppFrame$1", 22); _instance_1_i(_, "get$addListener", "addListener$1", 501); _static(A, "text_style_TextStyle_lerp$closure", 3, null, ["call$3"], ["TextStyle_lerp"], 2924, 0); _instance_0_u(_ = A.RendererBinding.prototype, "get$_handleSemanticsEnabledChanged", "_handleSemanticsEnabledChanged$0", 0); _instance_1_u(_, "get$_handleWebFirstFrame", "_handleWebFirstFrame$1", 22); _instance(_, "get$_handleSemanticsAction", 0, 3, null, ["call$3"], ["_handleSemanticsAction$3"], 2179, 0, 0); _instance_0_u(_, "get$_handleSemanticsOwnerCreated", "_handleSemanticsOwnerCreated$0", 0); _instance_0_u(_, "get$_handleSemanticsOwnerDisposed", "_handleSemanticsOwnerDisposed$0", 0); _instance_1_u(_, "get$_handlePersistentFrameCallback", "_handlePersistentFrameCallback$1", 22); _instance_1_u(_ = A.RenderBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_0_u(_, "get$markNeedsLayout", "markNeedsLayout$0", 0); _instance_2_u(A.RenderBoxContainerDefaultsMixin.prototype, "get$defaultPaint", "defaultPaint$2", 93); _instance_1_u(_ = A.RenderCustomMultiChildLayoutBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderCustomPaint.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderEditable.prototype, "get$_onCaretChanged", "_onCaretChanged$1", 652); _instance_0_u(_, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_, "get$systemFontsDidChange", "systemFontsDidChange$0", 0); _instance_0_u(_, "get$_showHideCursor", "_showHideCursor$0", 0); _instance_1_u(_, "get$_handleSetText", "_handleSetText$1", 117); _instance_1_u(_, "get$_handleSetSelection", "_handleSetSelection$1", 2173); _instance_1_u(_, "get$_handleMoveCursorForwardByCharacter", "_handleMoveCursorForwardByCharacter$1", 74); _instance_1_u(_, "get$_handleMoveCursorBackwardByCharacter", "_handleMoveCursorBackwardByCharacter$1", 74); _instance_1_u(_, "get$_handleMoveCursorForwardByWord", "_handleMoveCursorForwardByWord$1", 74); _instance_1_u(_, "get$_handleMoveCursorBackwardByWord", "_handleMoveCursorBackwardByWord$1", 74); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_, "get$_editable$_handleTapDown", "_editable$_handleTapDown$1", 84); _instance_0_u(_, "get$_editable$_handleTap", "_editable$_handleTap$0", 0); _instance_0_u(_, "get$_editable$_handleLongPress", "_editable$_handleLongPress$0", 0); _instance_2_u(_, "get$_editable$_paintContents", "_editable$_paintContents$2", 93); _instance_1_u(_ = A.RenderErrorBox.prototype, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderFlex.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderImage.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderListBody.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _static_1(A, "object_RenderObject__cleanChildRelayoutBoundary$closure", "RenderObject__cleanChildRelayoutBoundary", 110); _static_1(A, "object_RenderObject__propagateRelayoutBoundaryToChild$closure", "RenderObject__propagateRelayoutBoundaryToChild", 110); _instance_1_u(_ = A.RenderObject.prototype, "get$dropChild", "dropChild$1", 35); _instance_0_u(_, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 93, 0, 1); _instance_0_u(_, "get$markNeedsSemanticsUpdate", "markNeedsSemanticsUpdate$0", 0); _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 278, 0, 0); _instance_1_u(_ = A.ContainerRenderObjectMixin.prototype, "get$childBefore", "childBefore$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_1_u(_, "get$childAfter", "childAfter$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_1_u(_ = A.RenderParagraph.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_0_u(_, "get$systemFontsDidChange", "systemFontsDidChange$0", 0); _instance_1_u(_ = A.RenderPerformanceOverlay.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(A._PlatformViewGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 98); _instance_1_u(_ = A.RenderProxyBoxMixin.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 93, 0, 1); _instance_1_u(_ = A.RenderConstrainedBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderAspectRatio.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderIntrinsicWidth.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderIntrinsicHeight.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_0_u(A.RenderAnimatedOpacityMixin.prototype, "get$_updateOpacity", "_updateOpacity$0", 0); _instance_0_u(A._RenderCustomClip.prototype, "get$_markNeedsClip", "_markNeedsClip$0", 0); _instance_2_u(A.RenderFittedBox.prototype, "get$_paintChildWithTransform", "_paintChildWithTransform$2", 2155); _instance_1_u(_ = A.RenderOffstage.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_0_u(_ = A.RenderSemanticsGestureHandler.prototype, "get$_performSemanticScrollLeft", "_performSemanticScrollLeft$0", 0); _instance_0_u(_, "get$_performSemanticScrollRight", "_performSemanticScrollRight$0", 0); _instance_0_u(_, "get$_performSemanticScrollUp", "_performSemanticScrollUp$0", 0); _instance_0_u(_, "get$_performSemanticScrollDown", "_performSemanticScrollDown$0", 0); _instance_0_u(_ = A.RenderSemanticsAnnotations.prototype, "get$_performTap", "_performTap$0", 0); _instance_0_u(_, "get$_performLongPress", "_performLongPress$0", 0); _instance_0_u(_, "get$_performDismiss", "_performDismiss$0", 0); _instance_0_u(_, "get$_performIncrease", "_performIncrease$0", 0); _instance_0_u(_, "get$_performDecrease", "_performDecrease$0", 0); _instance_0_u(_, "get$_performCopy", "_performCopy$0", 0); _instance_0_u(_, "get$_performCut", "_performCut$0", 0); _instance_0_u(_, "get$_performPaste", "_performPaste$0", 0); _instance_0_u(_, "get$_performDidGainAccessibilityFocus", "_performDidGainAccessibilityFocus$0", 0); _instance_1_u(_ = A.RenderShiftedBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 93, 0, 1); _instance_1_u(_ = A.RenderPadding.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderFractionallySizedOverflowBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_ = A.RenderCustomSingleChildLayoutBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance(A.RenderSliver.prototype, "get$hitTest", 0, 1, null, ["call$3$crossAxisPosition$mainAxisPosition", "call$1"], ["hitTest$3$crossAxisPosition$mainAxisPosition", "hitTest$1"], 2149, 0, 0); _instance(A.RenderSliverPinnedPersistentHeader.prototype, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 278, 0, 0); _instance_1_u(_ = A.RenderStack.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_2_u(_, "get$paintStack", "paintStack$2", 93); _instance_2_u(A.RenderIndexedStack.prototype, "get$paintStack", "paintStack$2", 93); _instance_1_u(_ = A.RenderTable.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(A.RenderView.prototype, "get$hitTestMouseTrackers", "hitTestMouseTrackers$1", 2147); _instance_1_u(_ = A.RenderViewportBase.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_2_u(_, "get$_paintContents", "_paintContents$2", 93); _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 278, 0, 0); _instance_1_u(_ = A.RenderWrap.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _static_2(A, "binding0_SchedulerBinding__taskSorter$closure", "SchedulerBinding__taskSorter", 2925); _static(A, "binding0__defaultSchedulingStrategy$closure", 0, null, ["call$2$priority$scheduler", "call$0"], ["defaultSchedulingStrategy", function() { return A.defaultSchedulingStrategy(null, null); }], 2926, 0); _instance_1_u(_ = A.SchedulerBinding.prototype, "get$_executeTimingsCallbacks", "_executeTimingsCallbacks$1", 417); _instance_0_u(_, "get$_runTasks", "_runTasks$0", 0); _instance_0_u(_, "get$ensureVisualUpdate", "ensureVisualUpdate$0", 0); _instance_1_u(_, "get$_handleBeginFrame", "_handleBeginFrame$1", 22); _instance_0_u(_, "get$_handleDrawFrame", "_handleDrawFrame$0", 0); _instance_1_u(_, "get$_profileFramePostEvent", "_profileFramePostEvent$1", 2140); _instance_1_u(A.Ticker.prototype, "get$_ticker$_tick", "_ticker$_tick$1", 22); _instance_0_i(A.SemanticsOwner.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A.SemanticsConfiguration.prototype, "get$_onCustomSemanticsAction", "_onCustomSemanticsAction$1", 35); _static_1(A, "asset_bundle_AssetBundle__utf8decode$closure", "AssetBundle__utf8decode", 2927); _static_1(A, "binding1_ServicesBinding__parseLicenses$closure", "ServicesBinding__parseLicenses", 2928); _instance_0_u(_ = A.ServicesBinding.prototype, "get$_addLicenses", "_addLicenses$0", 2128); _instance_1_u(_, "get$_handleLifecycleMessage", "_handleLifecycleMessage$1", 2125); _instance_1_u(_, "get$_handlePlatformMessage", "_handlePlatformMessage$1", 401); _instance_1_u(_ = A.KeyEventManager.prototype, "get$handleKeyData", "handleKeyData$1", 497); _instance_1_u(_, "get$handleRawKeyMessage", "handleRawKeyMessage$1", 2121); _instance_1_u(_, "get$_convertRawEventAndStore", "_convertRawEventAndStore$1", 2120); _instance_1_u(A.RestorationManager.prototype, "get$_methodHandler", "_methodHandler$1", 401); _instance_1_u(_ = A.RestorationBucket.prototype, "get$_dropChild", "_dropChild$1", 709); _instance_1_u(_, "get$_recursivelyUpdateManager", "_recursivelyUpdateManager$1", 709); _instance_1_u(A.TextInput.prototype, "get$_handleTextInputInvocation", "_handleTextInputInvocation$1", 305); _instance_1_u(A._ActionsState.prototype, "get$_handleActionChanged", "_handleActionChanged$1", 2101); _instance_1_u(_ = A._FocusableActionDetectorState.prototype, "get$_actions$_handleFocusHighlightModeChange", "_actions$_handleFocusHighlightModeChange$1", 509); _instance_1_u(_, "get$_actions$_handleMouseEnter", "_actions$_handleMouseEnter$1", 264); _instance_1_u(_, "get$_actions$_handleMouseExit", "_actions$_handleMouseExit$1", 200); _instance_1_u(_, "get$_handleFocusChange", "_handleFocusChange$1", 74); _static(A, "animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure", 4, null, ["call$4"], ["AnimatedCrossFade_defaultLayoutBuilder"], 2929, 0); _static_2(A, "animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure", "AnimatedSwitcher_defaultTransitionBuilder", 690); _static_2(A, "animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure", "AnimatedSwitcher_defaultLayoutBuilder", 2930); _instance_1_u(A._AnimatedSwitcherState.prototype, "get$_updateTransitionForEntry", "_updateTransitionForEntry$1", 2089); _instance_1_u(_ = A._WidgetsAppState.prototype, "get$_onGenerateRoute", "_onGenerateRoute$1", 2087); _instance_1_u(_, "get$_onUnknownRoute", "_onUnknownRoute$1", 2084); _static_1(A, "autocomplete_RawAutocomplete_defaultStringForOption$closure", "RawAutocomplete_defaultStringForOption", 566); _instance_0_u(_ = A._RawAutocompleteState.prototype, "get$_onChangedField", "_onChangedField$0", 100); _instance_0_u(_, "get$_onChangedFocus", "_onChangedFocus$0", 0); _instance_0_u(_, "get$_onFieldSubmitted", "_onFieldSubmitted$0", 0); _instance_1_u(_, "get$_select", "_select$1", 35); _instance_1_u(_, "get$_highlightPreviousOption", "_highlightPreviousOption$1", 2083); _instance_1_u(_, "get$_highlightNextOption", "_highlightNextOption$1", 2082); _instance_1_u(_, "get$_hideOptions", "_hideOptions$1", 759); _instance_1_u(A._AutomaticKeepAliveState.prototype, "get$_addClient", "_addClient$1", 2049); _instance_0_u(_ = A.WidgetsBinding.prototype, "get$handleLocaleChanged", "handleLocaleChanged$0", 0); _instance_1_u(_, "get$_handleNavigationInvocation", "_handleNavigationInvocation$1", 305); _instance_0_u(_, "get$_handleBuildScheduled", "_handleBuildScheduled$0", 0); _instance_0_u(_ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding.prototype, "get$handleMetricsChanged", "handleMetricsChanged$0", 0); _instance_0_u(_, "get$handleTextScaleFactorChanged", "handleTextScaleFactorChanged$0", 0); _instance_0_u(_, "get$handlePlatformBrightnessChanged", "handlePlatformBrightnessChanged$0", 0); _instance_0_u(_, "get$performReassemble", "performReassemble$0", 100); _instance_0_u(A._DraggableScrollableSheetState.prototype, "get$_setExtent", "_setExtent$0", 0); _instance_0_i(A._DraggableScrollableSheetScrollPosition.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A._DualTransitionBuilderState.prototype, "get$_animationListener", "_animationListener$1", 42); _instance_0_u(_ = A.EditableTextState.prototype, "get$_onFloatingCursorResetTick", "_onFloatingCursorResetTick$0", 0); _instance_0_u(_, "get$_restartConnectionIfNeeded", "_restartConnectionIfNeeded$0", 0); _instance_0_u(_, "get$_updateSelectionOverlayForScroll", "_updateSelectionOverlayForScroll$0", 0); _instance_1_u(_, "get$_handleCaretChanged", "_handleCaretChanged$1", 652); _instance_0_u(_, "get$_onCursorColorTick", "_onCursorColorTick$0", 0); _instance_1_u(_, "get$_cursorTick", "_cursorTick$1", 505); _instance_1_u(_, "get$_cursorWaitForStart", "_cursorWaitForStart$1", 505); _instance_0_u(_, "get$_didChangeTextEditingValue", "_didChangeTextEditingValue$0", 0); _instance_0_u(_, "get$_editable_text$_handleFocusChanged", "_editable_text$_handleFocusChanged$0", 0); _instance_1_u(_, "get$_characterBoundary", "_characterBoundary$1", 328); _instance_1_u(_, "get$_nextWordBoundary", "_nextWordBoundary$1", 328); _instance_1_u(_, "get$_linebreak", "_linebreak$1", 328); _instance_1_u(_, "get$_documentBoundary", "_documentBoundary$1", 328); _instance_1_u(_, "get$_replaceText", "_replaceText$1", 2013); _instance_1_u(_, "get$_scrollToDocumentBoundary", "_scrollToDocumentBoundary$1", 2012); _instance_1_u(_, "get$_updateSelection", "_updateSelection$1", 1985); _instance_1_u(_, "get$_expandSelectionToDocumentBoundary", "_expandSelectionToDocumentBoundary$1", 1984); _instance_1_u(_, "get$_expandSelectionToLinebreak", "_expandSelectionToLinebreak$1", 1983); _instance_1_u(_, "get$_hideToolbarIfVisible", "_hideToolbarIfVisible$1", 759); _instance_1_u(_ = A._TextEditingHistoryState.prototype, "get$_undo", "_undo$1", 1828); _instance_1_u(_, "get$_redo", "_redo$1", 1827); _instance_0_u(_, "get$_push", "_push$0", 0); _instance_1_u(A._UndoStack.prototype, "get$push", "push$1", 35); _instance_0_i(A.FocusNode.prototype, "get$dispose", "dispose$0", 0); _instance_0_i(_ = A.FocusManager.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_focus_manager$_handlePointerEvent", "_focus_manager$_handlePointerEvent$1", 98); _instance_1_u(_, "get$_handleKeyMessage", "_handleKeyMessage$1", 1825); _instance_0_u(_, "get$_applyFocusChange", "_applyFocusChange$0", 0); _instance_0_u(A._FocusState.prototype, "get$_handleFocusChanged", "_handleFocusChanged$0", 0); _static_1(A, "framework__InactiveElements__deactivateRecursively$closure", "_InactiveElements__deactivateRecursively", 97); _static_2(A, "framework_Element__sort$closure", "Element__sort", 2931); _static_1(A, "framework_Element__activateRecursively$closure", "Element__activateRecursively", 97); _instance_1_u(_ = A._InactiveElements.prototype, "get$_unmount", "_unmount$1", 97); _instance_0_u(_, "get$_unmountAll", "_unmountAll$0", 0); _instance_1_u(_ = A.RawGestureDetectorState.prototype, "get$_gesture_detector$_handlePointerDown", "_gesture_detector$_handlePointerDown$1", 248); _instance_1_u(_, "get$_updateSemanticsForRenderObject", "_updateSemanticsForRenderObject$1", 1727); _instance_1_u(_ = A._HeroFlight.prototype, "get$_buildOverlay", "_buildOverlay$1", 78); _instance_1_u(_, "get$_handleAnimationUpdate", "_handleAnimationUpdate$1", 42); _instance_0_u(_, "get$onTick", "onTick$0", 0); _instance_1_u(_ = A.HeroController.prototype, "get$_handleFlightEnded", "_handleFlightEnded$1", 1700); _instance(_, "get$_defaultHeroFlightShuttleBuilder", 0, 5, null, ["call$5"], ["_defaultHeroFlightShuttleBuilder$5"], 1699, 0, 0); _static(A, "icon_theme_data_IconThemeData_lerp$closure", 3, null, ["call$3"], ["IconThemeData_lerp"], 2932, 0); _instance_2_u(_ = A._ImageState.prototype, "get$_handleImageFrame", "_handleImageFrame$2", 627); _instance_1_u(_, "get$_handleImageChunk", "_handleImageChunk$1", 637); _instance_0_u(A.AnimatedWidgetBaseState.prototype, "get$_handleAnimationChanged", "_handleAnimationChanged$0", 0); _instance_0_u(A._InheritedNotifierElement.prototype, "get$_handleUpdate", "_handleUpdate$0", 0); _instance_1_u(_ = A._InteractiveViewerState.prototype, "get$_onScaleStart", "_onScaleStart$1", 794); _instance_1_u(_, "get$_onScaleUpdate", "_onScaleUpdate$1", 795); _instance_1_u(_, "get$_onScaleEnd", "_onScaleEnd$1", 798); _instance_1_u(_, "get$_interactive_viewer$_receivedPointerSignal", "_interactive_viewer$_receivedPointerSignal$1", 371); _instance_0_u(_, "get$_onAnimate", "_onAnimate$0", 0); _instance_0_u(_, "get$_onTransformationControllerChange", "_onTransformationControllerChange$0", 0); _instance_1_u(A._LayoutBuilderElement.prototype, "get$_layout", "_layout$1", 35); _instance_1_u(_ = A._RenderLayoutBuilder.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _static_2(A, "navigator_Navigator_defaultGenerateInitialRoutes$closure", "Navigator_defaultGenerateInitialRoutes", 2933); _static_1(A, "navigator__RouteEntry_isPresentPredicate$closure", "_RouteEntry_isPresentPredicate", 312); _static_1(A, "navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure", "_RouteEntry_suitableForTransitionAnimationPredicate", 312); _static_1(A, "navigator__RouteEntry_willBePresentPredicate$closure", "_RouteEntry_willBePresentPredicate", 312); _instance_1_u(A._NavigatorPushObservation.prototype, "get$notify", "notify$1", 334); _instance_1_u(A._NavigatorPopObservation.prototype, "get$notify", "notify$1", 334); _instance_1_u(A._NavigatorRemoveObservation.prototype, "get$notify", "notify$1", 334); _instance_1_u(A._NavigatorReplaceObservation.prototype, "get$notify", "notify$1", 334); _instance_1_u(_ = A.NavigatorState.prototype, "get$_handlePointerDown", "_handlePointerDown$1", 248); _instance_1_u(_, "get$_handlePointerUpOrCancel", "_handlePointerUpOrCancel$1", 98); _instance_1_u(_ = A._RenderOverflowBar.prototype, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_ = A._RenderTheatre.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance_2_u(_, "get$paintStack", "paintStack$2", 93); _instance_1_u(A._GlowingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 162); _instance_0_i(_ = A._GlowController.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_changePhase", "_changePhase$1", 42); _instance_1_u(_, "get$_tickDisplacement", "_tickDisplacement$1", 22); _instance_1_u(A._StretchingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 162); _instance_1_u(_ = A._StretchController.prototype, "get$_changePhase", "_changePhase$1", 42); _instance_0_i(_, "get$dispose", "dispose$0", 0); _instance_1_u(A.DefaultPlatformMenuDelegate.prototype, "get$_methodCallHandler", "_methodCallHandler$1", 401); _instance_1_u(A.HtmlElementView.prototype, "get$_createHtmlElementView", "_createHtmlElementView$1", 1546); _instance_1_u(A._HtmlElementViewController.prototype, "get$dispatchPointerEvent", "dispatchPointerEvent$1", 1543); _instance_1_u(A._PlatformViewLinkState.prototype, "get$_handleFrameworkFocusChanged", "_handleFrameworkFocusChanged$1", 74); _instance_1_u(_ = A.SliverReorderableListState.prototype, "get$_dragStart", "_dragStart$1", 634); _instance(_, "get$_dragUpdate", 0, 3, null, ["call$3"], ["_dragUpdate$3"], 1526, 0, 0); _instance_1_u(_, "get$_dragCancel", "_dragCancel$1", 586); _instance_1_u(_, "get$_dragEnd", "_dragEnd$1", 586); _instance_0_u(_, "get$_dropCompleted", "_dropCompleted$0", 0); _instance_0_u(_, "get$_handleScrollableAutoScrolled", "_handleScrollableAutoScrolled$0", 0); _instance_2_u(_, "get$_reorderable_list$_itemBuilder", "_reorderable_list$_itemBuilder$2", 159); _instance_0_u(A._ReorderableItemState.prototype, "get$rebuild", "rebuild$0", 0); _instance_1_u(A._DragInfo.prototype, "get$createProxy", "createProxy$1", 78); _instance_0_u(A._RootRestorationScopeState.prototype, "get$_replaceRootBucket", "_replaceRootBucket$0", 0); _instance_0_i(A.RestorableProperty.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A.RestorationMixin.prototype, "get$_updateProperty", "_updateProperty$1", 1510); _instance_0_i(A.RestorableListenable.prototype, "get$dispose", "dispose$0", 0); _instance_0_i(A.RestorableChangeNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A.TransitionRoute.prototype, "get$_handleStatusChanged", "_handleStatusChanged$1", 42); _instance_0_i(A.LocalHistoryEntry.prototype, "get$remove", "remove$0", 0); _instance_1_u(_ = A.ModalRoute.prototype, "get$_buildModalBarrier", "_buildModalBarrier$1", 78); _instance_1_u(_, "get$_buildModalScope", "_buildModalScope$1", 78); _instance_0_u(_ = A.BallisticScrollActivity.prototype, "get$_scroll_activity$_tick", "_scroll_activity$_tick$0", 0); _instance_0_u(_, "get$_scroll_activity$_end", "_scroll_activity$_end$0", 0); _instance_0_u(_ = A.DrivenScrollActivity.prototype, "get$_scroll_activity$_tick", "_scroll_activity$_tick$0", 0); _instance_0_u(_, "get$_scroll_activity$_end", "_scroll_activity$_end$0", 0); _instance_0_i(A.ScrollController.prototype, "get$dispose", "dispose$0", 0); _static_1(A, "scroll_notification__defaultScrollNotificationPredicate$closure", "defaultScrollNotificationPredicate", 162); _instance_0_u(_ = A.ScrollPosition.prototype, "get$didUpdateScrollMetrics", "didUpdateScrollMetrics$0", 0); _instance_0_i(_, "get$dispose", "dispose$0", 0); _instance_0_i(A.ScrollPositionWithSingleContext.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.ScrollableState.prototype, "get$_scrollable$_handleDragDown", "_scrollable$_handleDragDown$1", 516); _instance_1_u(_, "get$_scrollable$_handleDragStart", "_scrollable$_handleDragStart$1", 85); _instance_1_u(_, "get$_scrollable$_handleDragUpdate", "_scrollable$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_scrollable$_handleDragEnd", "_scrollable$_handleDragEnd$1", 114); _instance_0_u(_, "get$_scrollable$_handleDragCancel", "_scrollable$_handleDragCancel$0", 0); _instance_0_u(_, "get$_disposeHold", "_disposeHold$0", 0); _instance_0_u(_, "get$_disposeDrag", "_disposeDrag$0", 0); _instance_1_u(_, "get$_receivedPointerSignal", "_receivedPointerSignal$1", 371); _instance_1_u(_, "get$_handlePointerScroll", "_handlePointerScroll$1", 98); _instance_1_u(_, "get$_handleScrollMetricsNotification", "_handleScrollMetricsNotification$1", 597); _instance_0_i(A.ScrollbarPainter.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.RawScrollbarState.prototype, "get$_validateInteractions", "_validateInteractions$1", 42); _instance_0_u(_, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_, "get$_handleTrackTapDown", "_handleTrackTapDown$1", 84); _instance_1_u(_, "get$_scrollbar$_handleScrollMetricsNotification", "_scrollbar$_handleScrollMetricsNotification$1", 597); _instance_1_u(_, "get$_handleScrollNotification", "_handleScrollNotification$1", 162); _instance_2_u(A._ShortcutsState.prototype, "get$_handleOnKey", "_handleOnKey$2", 346); _instance_0_u(_ = A._RenderSingleChildViewport.prototype, "get$_hasScrolled", "_hasScrolled$0", 0); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 278, 0, 0); _static_2(A, "sliver___kDefaultSemanticIndexCallback$closure", "_kDefaultSemanticIndexCallback", 2934); _instance_1_u(A.SliverMultiBoxAdaptorElement.prototype, "get$removeChild", "removeChild$1", 1412); _instance_0_u(A._FloatingHeaderState.prototype, "get$_isScrollingListener", "_isScrollingListener$0", 0); _instance_0_u(_ = A.TextSelectionOverlay.prototype, "get$_updateTextSelectionOverlayVisibilities", "_updateTextSelectionOverlayVisibilities$0", 0); _instance_1_u(_, "get$_handleSelectionEndHandleDragStart", "_handleSelectionEndHandleDragStart$1", 85); _instance_1_u(_, "get$_handleSelectionEndHandleDragUpdate", "_handleSelectionEndHandleDragUpdate$1", 70); _instance_1_u(_, "get$_handleSelectionStartHandleDragStart", "_handleSelectionStartHandleDragStart$1", 85); _instance_1_u(_, "get$_handleSelectionStartHandleDragUpdate", "_handleSelectionStartHandleDragUpdate$1", 70); _instance_1_u(_ = A.SelectionOverlay.prototype, "get$_buildStartHandle", "_buildStartHandle$1", 78); _instance_1_u(_, "get$_buildEndHandle", "_buildEndHandle$1", 78); _instance_0_u(A._SelectionHandleOverlayState.prototype, "get$_handleVisibilityChanged", "_handleVisibilityChanged$0", 0); _instance_1_u(_ = A.TextSelectionGestureDetectorBuilder.prototype, "get$onTapDown", "onTapDown$1", 84); _instance_1_u(_, "get$onForcePressStart", "onForcePressStart$1", 166); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 166); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 95); _instance_0_u(_, "get$onSingleTapCancel", "onSingleTapCancel$0", 0); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 253); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 238); _instance_1_u(_, "get$onSingleLongTapEnd", "onSingleLongTapEnd$1", 390); _instance_0_u(_, "get$onSecondaryTap", "onSecondaryTap$0", 0); _instance_1_u(_, "get$onSecondaryTapDown", "onSecondaryTapDown$1", 84); _instance_1_u(_, "get$onDoubleTapDown", "onDoubleTapDown$1", 84); _instance_1_u(_, "get$onDragSelectionStart", "onDragSelectionStart$1", 85); _instance_2_u(_, "get$onDragSelectionUpdate", "onDragSelectionUpdate$2", 1363); _instance_1_u(_, "get$onDragSelectionEnd", "onDragSelectionEnd$1", 114); _instance_1_u(_ = A._TextSelectionGestureDetectorState.prototype, "get$_text_selection$_handleTapDown", "_text_selection$_handleTapDown$1", 84); _instance_1_u(_, "get$_text_selection$_handleTapUp", "_text_selection$_handleTapUp$1", 95); _instance_0_u(_, "get$_text_selection$_handleTapCancel", "_text_selection$_handleTapCancel$0", 0); _instance_1_u(_, "get$_handleDragStart", "_handleDragStart$1", 85); _instance_1_u(_, "get$_handleDragUpdate", "_handleDragUpdate$1", 70); _instance_0_u(_, "get$_handleDragUpdateThrottled", "_handleDragUpdateThrottled$0", 0); _instance_1_u(_, "get$_handleDragEnd", "_handleDragEnd$1", 114); _instance_1_u(_, "get$_forcePressStarted", "_forcePressStarted$1", 166); _instance_1_u(_, "get$_forcePressEnded", "_forcePressEnded$1", 166); _instance_1_u(_, "get$_handleLongPressStart", "_handleLongPressStart$1", 253); _instance_1_u(_, "get$_handleLongPressMoveUpdate", "_handleLongPressMoveUpdate$1", 238); _instance_1_u(_, "get$_handleLongPressEnd", "_handleLongPressEnd$1", 390); _instance_0_u(_, "get$_doubleTapTimeout", "_doubleTapTimeout$0", 0); _instance_0_u(A.SingleTickerProviderStateMixin.prototype, "get$_updateTicker", "_updateTicker$0", 0); _instance_0_u(A.TickerProviderStateMixin.prototype, "get$_updateTickers", "_updateTickers$0", 0); _instance_0_u(A._AnimatedState.prototype, "get$_handleChange", "_handleChange$0", 0); _instance_0_u(A._ValueListenableBuilderState.prototype, "get$_valueChanged", "_valueChanged$0", 0); _static(A, "block_picker___defaultLayoutBuilder$closure", 3, null, ["call$3"], ["_defaultLayoutBuilder"], 2935, 0); _static(A, "block_picker___defaultItemBuilder$closure", 3, null, ["call$3"], ["_defaultItemBuilder"], 2936, 0); _static(A, "flutter_redux_StoreBuilder__identity$closure", 1, null, ["call$1$1", "call$1"], ["StoreBuilder__identity", function(store) { return A.StoreBuilder__identity(store, type$.dynamic); }], 2937, 0); _instance_1_u(_ = A._StoreStreamListenerState.prototype, "get$_mapConverter", "_mapConverter$1", "2(Object?)"); _instance_1_u(_, "get$_whereDistinct", "_whereDistinct$1", 107); _instance_1_u(_, "get$_ignoreChange", "_ignoreChange$1", 107); _instance_2_u(_, "get$_flutter_redux$_handleChange", "_flutter_redux$_handleChange$2", 262); _instance(_, "get$_handleError", 0, 3, null, ["call$3"], ["_handleError$3"], 1304, 0, 0); _instance_1_u(A._SlidableAutoCloseBarrierNotificationSenderState.prototype, "get$_auto_close_behavior$_handleStatusChanged", "_auto_close_behavior$_handleStatusChanged$1", 42); _instance_1_u(A._SlidableNotificationSenderState0.prototype, "get$handleStatusChanged", "handleStatusChanged$1", 42); _instance_0_u(A.SlidableController.prototype, "get$_onDirectionChanged", "_onDirectionChanged$0", 0); _instance_0_u(A._SlidableDismissalState.prototype, "get$handleResizeRequestChanged", "handleResizeRequestChanged$0", 0); _instance_0_u(_ = A._RenderFlexEntranceTransition.prototype, "get$markNeedsOffsets", "markNeedsOffsets$0", 0); _instance_1_u(_, "get$updateChildOffsets", "updateChildOffsets$1", 110); _instance_1_u(_ = A._SlidableGestureDetectorState.prototype, "get$handleDragStart", "handleDragStart$1", 85); _instance_1_u(_, "get$handleDragUpdate", "handleDragUpdate$1", 70); _instance_1_u(_, "get$handleDragEnd", "handleDragEnd$1", 114); _instance_0_u(A._SlidableScrollingBehaviorState.prototype, "get$handleScrollingChanged", "handleScrollingChanged$0", 0); _instance_0_u(_ = A._ActionPaneState.prototype, "get$handleEndGestureChanged", "handleEndGestureChanged$0", 0); _instance_0_u(_, "get$handleRatioChanged", "handleRatioChanged$0", 0); _instance_0_u(A._SlidableState.prototype, "get$handleActionPanelTypeChanged", "handleActionPanelTypeChanged$0", 0); _instance(A.Registrar.prototype, "get$handleFrameworkMessage", 0, 3, null, ["call$3"], ["handleFrameworkMessage$3"], 1275, 0, 0); _instance_0_u(_ = A.MethodChannelGoogleSignIn.prototype, "get$signInSilently", "signInSilently$0", 285); _instance_0_i(_, "get$signIn", "signIn$0", 285); _instance_0_i(_, "get$signOut", "signOut$0", 100); _instance_0_i(_, "get$disconnect", "disconnect$0", 100); _instance_0_u(_ = A.GoogleSignInPlugin.prototype, "get$signInSilently", "signInSilently$0", 285); _instance_0_i(_, "get$signIn", "signIn$0", 285); _instance_0_i(_, "get$signOut", "signOut$0", 100); _instance_0_i(_, "get$disconnect", "disconnect$0", 100); _static_1(A, "constants__isWhitespace$closure", "isWhitespace", 503); _static_1(A, "constants__isDigit$closure", "isDigit", 503); _static_1(A, "constants__isHexDigit$closure", "isHexDigit", 503); _static_1(A, "constants__AsciiUpperToLower__asciiToLower$closure", "AsciiUpperToLower__asciiToLower", 121); _instance_1_i(A._CssClassSetImpl.prototype, "get$contains", "contains$1", 107); _instance_1_u(A.SelectorEvaluator.prototype, "get$visitSelector", "visitSelector$1", 1239); _instance_0_u(_ = A.HtmlTokenizer.prototype, "get$dataState", "dataState$0", 18); _instance_0_u(_, "get$entityDataState", "entityDataState$0", 18); _instance_0_u(_, "get$rcdataState", "rcdataState$0", 18); _instance_0_u(_, "get$characterReferenceInRcdata", "characterReferenceInRcdata$0", 18); _instance_0_u(_, "get$rawtextState", "rawtextState$0", 18); _instance_0_u(_, "get$scriptDataState", "scriptDataState$0", 18); _instance_0_u(_, "get$plaintextState", "plaintextState$0", 18); _instance_0_u(_, "get$tagOpenState", "tagOpenState$0", 18); _instance_0_u(_, "get$closeTagOpenState", "closeTagOpenState$0", 18); _instance_0_u(_, "get$tagNameState", "tagNameState$0", 18); _instance_0_u(_, "get$rcdataLessThanSignState", "rcdataLessThanSignState$0", 18); _instance_0_u(_, "get$rcdataEndTagOpenState", "rcdataEndTagOpenState$0", 18); _instance_0_u(_, "get$rcdataEndTagNameState", "rcdataEndTagNameState$0", 18); _instance_0_u(_, "get$rawtextLessThanSignState", "rawtextLessThanSignState$0", 18); _instance_0_u(_, "get$rawtextEndTagOpenState", "rawtextEndTagOpenState$0", 18); _instance_0_u(_, "get$rawtextEndTagNameState", "rawtextEndTagNameState$0", 18); _instance_0_u(_, "get$scriptDataLessThanSignState", "scriptDataLessThanSignState$0", 18); _instance_0_u(_, "get$scriptDataEndTagOpenState", "scriptDataEndTagOpenState$0", 18); _instance_0_u(_, "get$scriptDataEndTagNameState", "scriptDataEndTagNameState$0", 18); _instance_0_u(_, "get$scriptDataEscapeStartState", "scriptDataEscapeStartState$0", 18); _instance_0_u(_, "get$scriptDataEscapeStartDashState", "scriptDataEscapeStartDashState$0", 18); _instance_0_u(_, "get$scriptDataEscapedState", "scriptDataEscapedState$0", 18); _instance_0_u(_, "get$scriptDataEscapedDashState", "scriptDataEscapedDashState$0", 18); _instance_0_u(_, "get$scriptDataEscapedDashDashState", "scriptDataEscapedDashDashState$0", 18); _instance_0_u(_, "get$scriptDataEscapedLessThanSignState", "scriptDataEscapedLessThanSignState$0", 18); _instance_0_u(_, "get$scriptDataEscapedEndTagOpenState", "scriptDataEscapedEndTagOpenState$0", 18); _instance_0_u(_, "get$scriptDataEscapedEndTagNameState", "scriptDataEscapedEndTagNameState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapeStartState", "scriptDataDoubleEscapeStartState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapedState", "scriptDataDoubleEscapedState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapedDashState", "scriptDataDoubleEscapedDashState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapedDashDashState", "scriptDataDoubleEscapedDashDashState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapedLessThanSignState", "scriptDataDoubleEscapedLessThanSignState$0", 18); _instance_0_u(_, "get$scriptDataDoubleEscapeEndState", "scriptDataDoubleEscapeEndState$0", 18); _instance_0_u(_, "get$beforeAttributeNameState", "beforeAttributeNameState$0", 18); _instance_0_u(_, "get$attributeNameState", "attributeNameState$0", 18); _instance_0_u(_, "get$afterAttributeNameState", "afterAttributeNameState$0", 18); _instance_0_u(_, "get$beforeAttributeValueState", "beforeAttributeValueState$0", 18); _instance_0_u(_, "get$attributeValueDoubleQuotedState", "attributeValueDoubleQuotedState$0", 18); _instance_0_u(_, "get$attributeValueSingleQuotedState", "attributeValueSingleQuotedState$0", 18); _instance_0_u(_, "get$attributeValueUnQuotedState", "attributeValueUnQuotedState$0", 18); _instance_0_u(_, "get$afterAttributeValueState", "afterAttributeValueState$0", 18); _instance_0_u(_, "get$selfClosingStartTagState", "selfClosingStartTagState$0", 18); _instance_0_u(_, "get$bogusCommentState", "bogusCommentState$0", 18); _instance_0_u(_, "get$markupDeclarationOpenState", "markupDeclarationOpenState$0", 18); _instance_0_u(_, "get$commentStartState", "commentStartState$0", 18); _instance_0_u(_, "get$commentStartDashState", "commentStartDashState$0", 18); _instance_0_u(_, "get$commentState", "commentState$0", 18); _instance_0_u(_, "get$commentEndDashState", "commentEndDashState$0", 18); _instance_0_u(_, "get$commentEndState", "commentEndState$0", 18); _instance_0_u(_, "get$commentEndBangState", "commentEndBangState$0", 18); _instance_0_u(_, "get$doctypeState", "doctypeState$0", 18); _instance_0_u(_, "get$beforeDoctypeNameState", "beforeDoctypeNameState$0", 18); _instance_0_u(_, "get$doctypeNameState", "doctypeNameState$0", 18); _instance_0_u(_, "get$afterDoctypeNameState", "afterDoctypeNameState$0", 18); _instance_0_u(_, "get$afterDoctypePublicKeywordState", "afterDoctypePublicKeywordState$0", 18); _instance_0_u(_, "get$beforeDoctypePublicIdentifierState", "beforeDoctypePublicIdentifierState$0", 18); _instance_0_u(_, "get$doctypePublicIdentifierDoubleQuotedState", "doctypePublicIdentifierDoubleQuotedState$0", 18); _instance_0_u(_, "get$doctypePublicIdentifierSingleQuotedState", "doctypePublicIdentifierSingleQuotedState$0", 18); _instance_0_u(_, "get$afterDoctypePublicIdentifierState", "afterDoctypePublicIdentifierState$0", 18); _instance_0_u(_, "get$betweenDoctypePublicAndSystemIdentifiersState", "betweenDoctypePublicAndSystemIdentifiersState$0", 18); _instance_0_u(_, "get$afterDoctypeSystemKeywordState", "afterDoctypeSystemKeywordState$0", 18); _instance_0_u(_, "get$beforeDoctypeSystemIdentifierState", "beforeDoctypeSystemIdentifierState$0", 18); _instance_0_u(_, "get$doctypeSystemIdentifierDoubleQuotedState", "doctypeSystemIdentifierDoubleQuotedState$0", 18); _instance_0_u(_, "get$doctypeSystemIdentifierSingleQuotedState", "doctypeSystemIdentifierSingleQuotedState$0", 18); _instance_0_u(_, "get$afterDoctypeSystemIdentifierState", "afterDoctypeSystemIdentifierState$0", 18); _instance_0_u(_, "get$bogusDoctypeState", "bogusDoctypeState$0", 18); _instance_0_u(_, "get$cdataSectionState", "cdataSectionState$0", 18); _instance_0_i(A.BrowserClient.prototype, "get$close", "close$0", 0); _static_1(A, "settings__aspectRatioPresetName$closure", "aspectRatioPresetName", 2939); _instance_1_u(_ = A.DateBuilder.prototype, "get$setYear", "setYear$1", 89); _instance_1_u(_, "get$setMonth", "setMonth$1", 89); _instance_1_u(_, "get$setDay", "setDay$1", 89); _instance_1_u(_, "get$setDayOfYear", "setDayOfYear$1", 89); _instance_1_u(_, "get$setHour", "setHour$1", 89); _instance_1_u(_, "get$setMinute", "setMinute$1", 89); _instance_1_u(_, "get$setSecond", "setSecond$1", 89); _instance_1_u(_, "get$setFractionalSecond", "setFractionalSecond$1", 89); _static_1(A, "date_format_DateFormat_localeExists$closure", "DateFormat_localeExists", 125); _instance_0_u(A.DateFormat.prototype, "get$_initDigitMatcher", "_initDigitMatcher$0", 1168); _static_1(A, "number_format_NumberFormat_localeExists$closure", "NumberFormat_localeExists", 125); _static_1(A, "intl_helpers___throwLocaleError$closure", "_throwLocaleError", 108); _static_0(A, "plural_rules___default_rule$closure", "_default_rule", 47); _static_0(A, "plural_rules___fil_rule$closure", "_fil_rule", 47); _static_0(A, "plural_rules___pt_PT_rule$closure", "_pt_PT_rule", 47); _static_0(A, "plural_rules___br_rule$closure", "_br_rule", 47); _static_0(A, "plural_rules___sr_rule$closure", "_sr_rule", 47); _static_0(A, "plural_rules___ro_rule$closure", "_ro_rule", 47); _static_0(A, "plural_rules___hi_rule$closure", "_hi_rule", 47); _static_0(A, "plural_rules___fr_rule$closure", "_fr_rule", 47); _static_0(A, "plural_rules___cs_rule$closure", "_cs_rule", 47); _static_0(A, "plural_rules___pl_rule$closure", "_pl_rule", 47); _static_0(A, "plural_rules___lv_rule$closure", "_lv_rule", 47); _static_0(A, "plural_rules___he_rule$closure", "_he_rule", 47); _static_0(A, "plural_rules___mt_rule$closure", "_mt_rule", 47); _static_0(A, "plural_rules___si_rule$closure", "_si_rule", 47); _static_0(A, "plural_rules___cy_rule$closure", "_cy_rule", 47); _static_0(A, "plural_rules___da_rule$closure", "_da_rule", 47); _static_0(A, "plural_rules___ru_rule$closure", "_ru_rule", 47); _static_0(A, "plural_rules___be_rule$closure", "_be_rule", 47); _static_0(A, "plural_rules___mk_rule$closure", "_mk_rule", 47); _static_0(A, "plural_rules___ga_rule$closure", "_ga_rule", 47); _static_0(A, "plural_rules___pt_rule$closure", "_pt_rule", 47); _static_0(A, "plural_rules___es_rule$closure", "_es_rule", 47); _static_0(A, "plural_rules___is_rule$closure", "_is_rule", 47); _static_0(A, "plural_rules___ar_rule$closure", "_ar_rule", 47); _static_0(A, "plural_rules___sl_rule$closure", "_sl_rule", 47); _static_0(A, "plural_rules___lt_rule$closure", "_lt_rule", 47); _static_0(A, "plural_rules___en_rule$closure", "_en_rule", 47); _static_0(A, "plural_rules___ak_rule$closure", "_ak_rule", 47); _static_1(A, "plural_rules__localeHasPluralRules$closure", "localeHasPluralRules", 52); _static(A, "main__main$closure", 0, null, ["call$1$isTesting", "call$0"], ["main0", function() { return A.main0(false); }], 2941, 0); _instance_0_u(_ = A.InvoiceNinjaAppState.prototype, "get$_authenticate", "_authenticate$0", 37); _instance_1_u(_, "get$generateRoute", "generateRoute$1", 813); _static_2(A, "app_reducer__appReducer$closure", "appReducer", 2942); _static_2(A, "auth_reducer__userLoadUrlReducer$closure", "userLoadUrlReducer", 2943); _static_2(A, "auth_reducer__userSignUpRequestReducer$closure", "userSignUpRequestReducer", 2944); _static_2(A, "auth_reducer__userLoginRequestReducer$closure", "userLoginRequestReducer", 2945); _static_2(A, "auth_reducer__oauthLoginRequestReducer$closure", "oauthLoginRequestReducer", 2946); _static_2(A, "auth_reducer__oauthSignUpRequestReducer$closure", "oauthSignUpRequestReducer", 2947); _static_2(A, "auth_reducer__userLoginSuccessReducer$closure", "userLoginSuccessReducer", 2948); _static_2(A, "auth_reducer__userVerifiedPasswordReducer$closure", "userVerifiedPasswordReducer", 2949); _static_2(A, "auth_reducer__userUnverifiedPasswordReducer$closure", "userUnverifiedPasswordReducer", 2950); _static_2(A, "client_reducer___viewClientList$closure", "_viewClientList0", 2951); _static_2(A, "client_reducer___filterClientsByCustom1$closure", "_filterClientsByCustom1", 2952); _static_2(A, "client_reducer___filterClientsByCustom2$closure", "_filterClientsByCustom2", 2953); _static_2(A, "client_reducer___filterClientsByCustom3$closure", "_filterClientsByCustom3", 2954); _static_2(A, "client_reducer___filterClientsByCustom4$closure", "_filterClientsByCustom4", 2955); _static_2(A, "client_reducer___filterClientsByState$closure", "_filterClientsByState", 2956); _static_2(A, "client_reducer___filterClients$closure", "_filterClients", 2957); _static_2(A, "client_reducer___sortClients$closure", "_sortClients", 2958); _static_2(A, "client_reducer___startListMultiselect$closure", "_startListMultiselect", 2959); _static_2(A, "client_reducer___addToListMultiselect$closure", "_addToListMultiselect", 2960); _static_2(A, "client_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect", 2961); _static_2(A, "client_reducer___clearListMultiselect$closure", "_clearListMultiselect", 2962); _static_2(A, "client_reducer___archiveClientSuccess$closure", "_archiveClientSuccess", 2963); _static_2(A, "client_reducer___deleteClientSuccess$closure", "_deleteClientSuccess", 2964); _static_2(A, "client_reducer___restoreClientSuccess$closure", "_restoreClientSuccess", 2965); _static_2(A, "client_reducer___addClient$closure", "_addClient", 2966); _static_2(A, "client_reducer___updateClient$closure", "_updateClient", 2967); _static_2(A, "client_reducer___setLoadedClient$closure", "_setLoadedClient", 2968); _static_2(A, "client_reducer___mergeClientSuccess$closure", "_mergeClientSuccess", 2969); _static_2(A, "client_reducer___purgeClientSuccess$closure", "_purgeClientSuccess", 2970); _static_2(A, "client_reducer___setLoadedClients$closure", "_setLoadedClients", 2971); _static_2(A, "client_reducer___setLoadedCompany$closure", "_setLoadedCompany", 2972); _static_2(A, "company_reducer__loadCompanySuccessReducer$closure", "loadCompanySuccessReducer", 2973); _static_2(A, "company_reducer__saveCompanySuccessReducer$closure", "saveCompanySuccessReducer", 2974); _static_2(A, "company_gateway_reducer___clearEditing$closure", "_clearEditing", 739); _static_2(A, "company_gateway_reducer___updateEditing$closure", "_updateEditing", 739); _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom1$closure", "_filterCompanyGatewaysByCustom1", 2976); _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom2$closure", "_filterCompanyGatewaysByCustom2", 2977); _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByState$closure", "_filterCompanyGatewaysByState", 2978); _static_2(A, "company_gateway_reducer___filterCompanyGateways$closure", "_filterCompanyGateways", 2979); _static_2(A, "company_gateway_reducer___sortCompanyGateways$closure", "_sortCompanyGateways", 2980); _static_2(A, "company_gateway_reducer___startListMultiselect$closure", "_startListMultiselect0", 2981); _static_2(A, "company_gateway_reducer___addToListMultiselect$closure", "_addToListMultiselect0", 2982); _static_2(A, "company_gateway_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect0", 2983); _static_2(A, "company_gateway_reducer___clearListMultiselect$closure", "_clearListMultiselect0", 2984); _static_2(A, "company_gateway_reducer___archiveCompanyGatewaySuccess$closure", "_archiveCompanyGatewaySuccess", 2985); _static_2(A, "company_gateway_reducer___deleteCompanyGatewaySuccess$closure", "_deleteCompanyGatewaySuccess", 2986); _static_2(A, "company_gateway_reducer___restoreCompanyGatewaySuccess$closure", "_restoreCompanyGatewaySuccess", 2987); _static_2(A, "company_gateway_reducer___addCompanyGateway$closure", "_addCompanyGateway", 2988); _static_2(A, "company_gateway_reducer___updateCompanyGateway$closure", "_updateCompanyGateway", 2989); _static_2(A, "company_gateway_reducer___setLoadedCompanyGateway$closure", "_setLoadedCompanyGateway", 2990); _static_2(A, "company_gateway_reducer___setLoadedCompany$closure", "_setLoadedCompany0", 2991); _static_2(A, "company_gateway_reducer___setLoadedCompanyGateways$closure", "_setLoadedCompanyGateways", 2992); _static_2(A, "credit_reducer___clearEditing$closure", "_clearEditing0", 132); _static_2(A, "credit_reducer___updateEditing$closure", "_updateEditing0", 132); _static_2(A, "credit_reducer___addCreditItem$closure", "_addCreditItem", 693); _static_2(A, "credit_reducer___addCreditItems$closure", "_addCreditItems", 2994); _static_2(A, "credit_reducer___removeCreditItem$closure", "_removeCreditItem", 692); _static_2(A, "credit_reducer___updateCreditItem$closure", "_updateCreditItem", 691); _static_2(A, "credit_reducer___viewCreditList$closure", "_viewCreditList0", 2995); _static_2(A, "credit_reducer___filterCreditsByCustom1$closure", "_filterCreditsByCustom1", 2996); _static_2(A, "credit_reducer___filterCreditsByCustom2$closure", "_filterCreditsByCustom2", 2997); _static_2(A, "credit_reducer___filterCreditsByCustom3$closure", "_filterCreditsByCustom3", 2998); _static_2(A, "credit_reducer___filterCreditsByCustom4$closure", "_filterCreditsByCustom4", 2999); _static_2(A, "credit_reducer___filterCreditsByState$closure", "_filterCreditsByState", 3000); _static_2(A, "credit_reducer___filterCreditsByStatus$closure", "_filterCreditsByStatus", 3001); _static_2(A, "credit_reducer___filterCredits$closure", "_filterCredits", 3002); _static_2(A, "credit_reducer___sortCredits$closure", "_sortCredits", 3003); _static_2(A, "credit_reducer___startListMultiselect$closure", "_startListMultiselect1", 3004); _static_2(A, "credit_reducer___addToListMultiselect$closure", "_addToListMultiselect1", 3005); _static_2(A, "credit_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect1", 3006); _static_2(A, "credit_reducer___clearListMultiselect$closure", "_clearListMultiselect1", 3007); _static_2(A, "credit_reducer___markSentCreditSuccess$closure", "_markSentCreditSuccess", 3008); _static_2(A, "credit_reducer___archiveCreditSuccess$closure", "_archiveCreditSuccess", 3009); _static_2(A, "credit_reducer___deleteCreditSuccess$closure", "_deleteCreditSuccess", 3010); _static_2(A, "credit_reducer___restoreCreditSuccess$closure", "_restoreCreditSuccess", 3011); _static_2(A, "credit_reducer___addCredit$closure", "_addCredit", 3012); _static_2(A, "credit_reducer___updateCredit$closure", "_updateCredit", 3013); _static_2(A, "credit_reducer___setLoadedCredits$closure", "_setLoadedCredits", 3014); _static_2(A, "credit_reducer___setLoadedCompany$closure", "_setLoadedCompany1", 3015); _static_2(A, "design_reducer___clearEditing$closure", "_clearEditing1", 685); _static_2(A, "design_reducer___updateEditing$closure", "_updateEditing1", 685); _static_2(A, "design_reducer___viewDesignList$closure", "_viewDesignList0", 3017); _static_2(A, "design_reducer___filterDesignsByCustom1$closure", "_filterDesignsByCustom1", 3018); _static_2(A, "design_reducer___filterDesignsByCustom2$closure", "_filterDesignsByCustom2", 3019); _static_2(A, "design_reducer___filterDesignsByState$closure", "_filterDesignsByState", 3020); _static_2(A, "design_reducer___filterDesigns$closure", "_filterDesigns", 3021); _static_2(A, "design_reducer___sortDesigns$closure", "_sortDesigns", 3022); _static_2(A, "design_reducer___startListMultiselect$closure", "_startListMultiselect2", 3023); _static_2(A, "design_reducer___addToListMultiselect$closure", "_addToListMultiselect2", 3024); _static_2(A, "design_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect2", 3025); _static_2(A, "design_reducer___clearListMultiselect$closure", "_clearListMultiselect2", 3026); _static_2(A, "design_reducer___archiveDesignSuccess$closure", "_archiveDesignSuccess", 3027); _static_2(A, "design_reducer___deleteDesignSuccess$closure", "_deleteDesignSuccess", 3028); _static_2(A, "design_reducer___restoreDesignSuccess$closure", "_restoreDesignSuccess", 3029); _static_2(A, "design_reducer___addDesign$closure", "_addDesign", 3030); _static_2(A, "design_reducer___updateDesign$closure", "_updateDesign", 3031); _static_2(A, "design_reducer___setLoadedDesign$closure", "_setLoadedDesign", 3032); _static_2(A, "design_reducer___setLoadedDesigns$closure", "_setLoadedDesigns", 3033); _static_2(A, "design_reducer___setLoadedCompany$closure", "_setLoadedCompany2", 3034); _static_2(A, "document_reducer___updateEditing$closure", "_updateEditing2", 3035); _static_2(A, "document_reducer___viewDocumentList$closure", "_viewDocumentList0", 3036); _static_2(A, "document_reducer___filterDocumentsByCustom1$closure", "_filterDocumentsByCustom1", 3037); _static_2(A, "document_reducer___filterDocumentsByCustom2$closure", "_filterDocumentsByCustom2", 3038); _static_2(A, "document_reducer___filterDocumentsByState$closure", "_filterDocumentsByState", 3039); _static_2(A, "document_reducer___filterDocuments$closure", "_filterDocuments", 3040); _static_2(A, "document_reducer___sortDocuments$closure", "_sortDocuments", 3041); _static_2(A, "document_reducer___startListMultiselect$closure", "_startListMultiselect3", 3042); _static_2(A, "document_reducer___addToListMultiselect$closure", "_addToListMultiselect3", 3043); _static_2(A, "document_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect3", 3044); _static_2(A, "document_reducer___clearListMultiselect$closure", "_clearListMultiselect3", 3045); _static_2(A, "document_reducer___archiveDocumentSuccess$closure", "_archiveDocumentSuccess", 3046); _static_2(A, "document_reducer___deleteDocumentSuccess$closure", "_deleteDocumentSuccess", 3047); _static_2(A, "document_reducer___restoreDocumentSuccess$closure", "_restoreDocumentSuccess", 3048); _static_2(A, "document_reducer___updateDocument$closure", "_updateDocument", 3049); _static_2(A, "document_reducer___setLoadedDocument$closure", "_setLoadedDocument", 3050); _static_2(A, "document_reducer___setLoadedDocuments$closure", "_setLoadedDocuments", 3051); _static_2(A, "expense_reducer___clearEditing$closure", "_clearEditing2", 341); _static_2(A, "expense_reducer___updateEditing$closure", "_updateEditing3", 341); _static_2(A, "expense_reducer___viewExpenseList$closure", "_viewExpenseList0", 3053); _static_2(A, "expense_reducer___filterExpensesByCustom1$closure", "_filterExpensesByCustom1", 3054); _static_2(A, "expense_reducer___filterExpensesByCustom2$closure", "_filterExpensesByCustom2", 3055); _static_2(A, "expense_reducer___filterExpensesByCustom3$closure", "_filterExpensesByCustom3", 3056); _static_2(A, "expense_reducer___filterExpensesByCustom4$closure", "_filterExpensesByCustom4", 3057); _static_2(A, "expense_reducer___filterExpensesByState$closure", "_filterExpensesByState", 3058); _static_2(A, "expense_reducer___filterExpensesByStatus$closure", "_filterExpensesByStatus", 3059); _static_2(A, "expense_reducer___filterExpenses$closure", "_filterExpenses", 3060); _static_2(A, "expense_reducer___sortExpenses$closure", "_sortExpenses", 3061); _static_2(A, "expense_reducer___startListMultiselect$closure", "_startListMultiselect4", 3062); _static_2(A, "expense_reducer___addToListMultiselect$closure", "_addToListMultiselect4", 3063); _static_2(A, "expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect4", 3064); _static_2(A, "expense_reducer___clearListMultiselect$closure", "_clearListMultiselect4", 3065); _static_2(A, "expense_reducer___archiveExpenseSuccess$closure", "_archiveExpenseSuccess", 3066); _static_2(A, "expense_reducer___deleteExpenseSuccess$closure", "_deleteExpenseSuccess", 3067); _static_2(A, "expense_reducer___restoreExpenseSuccess$closure", "_restoreExpenseSuccess", 3068); _static_2(A, "expense_reducer___addExpense$closure", "_addExpense", 3069); _static_2(A, "expense_reducer___updateExpense$closure", "_updateExpense", 3070); _static_2(A, "expense_reducer___setLoadedExpense$closure", "_setLoadedExpense", 3071); _static_2(A, "expense_reducer___setLoadedExpenses$closure", "_setLoadedExpenses", 3072); _static_2(A, "expense_reducer___setLoadedCompany$closure", "_setLoadedCompany3", 3073); _static_2(A, "expense_category_reducer___clearEditing$closure", "_clearEditing3", 681); _static_2(A, "expense_category_reducer___updateEditing$closure", "_updateEditing4", 681); _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom1$closure", "_filterExpenseCategoriesByCustom1", 3075); _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom2$closure", "_filterExpenseCategoriesByCustom2", 3076); _static_2(A, "expense_category_reducer___filterExpenseCategoriesByState$closure", "_filterExpenseCategoriesByState", 3077); _static_2(A, "expense_category_reducer___filterExpenseCategories$closure", "_filterExpenseCategories", 3078); _static_2(A, "expense_category_reducer___sortExpenseCategories$closure", "_sortExpenseCategories", 3079); _static_2(A, "expense_category_reducer___startListMultiselect$closure", "_startListMultiselect5", 3080); _static_2(A, "expense_category_reducer___addToListMultiselect$closure", "_addToListMultiselect5", 3081); _static_2(A, "expense_category_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect5", 3082); _static_2(A, "expense_category_reducer___clearListMultiselect$closure", "_clearListMultiselect5", 3083); _static_2(A, "expense_category_reducer___archiveExpenseCategorySuccess$closure", "_archiveExpenseCategorySuccess", 3084); _static_2(A, "expense_category_reducer___deleteExpenseCategorySuccess$closure", "_deleteExpenseCategorySuccess", 3085); _static_2(A, "expense_category_reducer___restoreExpenseCategorySuccess$closure", "_restoreExpenseCategorySuccess", 3086); _static_2(A, "expense_category_reducer___addExpenseCategory$closure", "_addExpenseCategory", 3087); _static_2(A, "expense_category_reducer___updateExpenseCategory$closure", "_updateExpenseCategory", 3088); _static_2(A, "expense_category_reducer___setLoadedExpenseCategory$closure", "_setLoadedExpenseCategory", 3089); _static_2(A, "expense_category_reducer___setLoadedExpenseCategories$closure", "_setLoadedExpenseCategories", 3090); _static_2(A, "expense_category_reducer___setLoadedCompany$closure", "_setLoadedCompany4", 3091); _static_2(A, "group_reducer___clearEditing$closure", "_clearEditing4", 668); _static_2(A, "group_reducer___updateEditing$closure", "_updateEditing5", 668); _static_2(A, "group_reducer___viewGroupList$closure", "_viewGroupList0", 3093); _static_2(A, "group_reducer___filterGroupsByState$closure", "_filterGroupsByState", 3094); _static_2(A, "group_reducer___filterGroups$closure", "_filterGroups", 3095); _static_2(A, "group_reducer___sortGroups$closure", "_sortGroups", 3096); _static_2(A, "group_reducer___startListMultiselect$closure", "_startListMultiselect6", 3097); _static_2(A, "group_reducer___addToListMultiselect$closure", "_addToListMultiselect6", 3098); _static_2(A, "group_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect6", 3099); _static_2(A, "group_reducer___clearListMultiselect$closure", "_clearListMultiselect6", 3100); _static_2(A, "group_reducer___archiveGroupSuccess$closure", "_archiveGroupSuccess", 3101); _static_2(A, "group_reducer___deleteGroupSuccess$closure", "_deleteGroupSuccess", 3102); _static_2(A, "group_reducer___restoreGroupSuccess$closure", "_restoreGroupSuccess", 3103); _static_2(A, "group_reducer___addGroup$closure", "_addGroup", 3104); _static_2(A, "group_reducer___updateGroup$closure", "_updateGroup", 3105); _static_2(A, "group_reducer___setLoadedGroup$closure", "_setLoadedGroup", 3106); _static_2(A, "group_reducer___setLoadedGroups$closure", "_setLoadedGroups", 3107); _static_2(A, "group_reducer___setLoadedCompany$closure", "_setLoadedCompany5", 3108); _static_2(A, "invoice_reducer___clearEditing$closure", "_clearEditing5", 132); _static_2(A, "invoice_reducer___updateEditing$closure", "_updateEditing6", 132); _static_2(A, "invoice_reducer___addInvoiceItem$closure", "_addInvoiceItem", 621); _static_2(A, "invoice_reducer___addInvoiceItems$closure", "_addInvoiceItems", 3109); _static_2(A, "invoice_reducer___removeInvoiceItem$closure", "_removeInvoiceItem", 620); _static_2(A, "invoice_reducer___updateInvoiceItem$closure", "_updateInvoiceItem", 619); _static_2(A, "invoice_reducer___viewInvoiceList$closure", "_viewInvoiceList0", 3110); _static_2(A, "invoice_reducer___filterInvoicesByCustom1$closure", "_filterInvoicesByCustom1", 3111); _static_2(A, "invoice_reducer___filterInvoicesByCustom2$closure", "_filterInvoicesByCustom2", 3112); _static_2(A, "invoice_reducer___filterInvoicesByCustom3$closure", "_filterInvoicesByCustom3", 3113); _static_2(A, "invoice_reducer___filterInvoicesByCustom4$closure", "_filterInvoicesByCustom4", 3114); _static_2(A, "invoice_reducer___filterInvoicesByState$closure", "_filterInvoicesByState", 3115); _static_2(A, "invoice_reducer___filterInvoicesByStatus$closure", "_filterInvoicesByStatus", 3116); _static_2(A, "invoice_reducer___filterInvoices$closure", "_filterInvoices", 3117); _static_2(A, "invoice_reducer___sortInvoices$closure", "_sortInvoices", 3118); _static_2(A, "invoice_reducer___startListMultiselect$closure", "_startListMultiselect7", 3119); _static_2(A, "invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect7", 3120); _static_2(A, "invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect7", 3121); _static_2(A, "invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect7", 3122); _static_2(A, "invoice_reducer___markInvoicesSentSuccess$closure", "_markInvoicesSentSuccess", 3123); _static_2(A, "invoice_reducer___markInvoicesPaidSuccess$closure", "_markInvoicesPaidSuccess", 3124); _static_2(A, "invoice_reducer___cancelInvoicesSuccess$closure", "_cancelInvoicesSuccess", 3125); _static_2(A, "invoice_reducer___archiveInvoiceSuccess$closure", "_archiveInvoiceSuccess", 3126); _static_2(A, "invoice_reducer___deleteInvoiceSuccess$closure", "_deleteInvoiceSuccess", 3127); _static_2(A, "invoice_reducer___emailInvoiceSuccess$closure", "_emailInvoiceSuccess", 3128); _static_2(A, "invoice_reducer___restoreInvoiceSuccess$closure", "_restoreInvoiceSuccess", 3129); _static_2(A, "invoice_reducer___addInvoice$closure", "_addInvoice", 3130); _static_2(A, "invoice_reducer___updateInvoice$closure", "_updateInvoice", 3131); _static_2(A, "invoice_reducer___setLoadedInvoices$closure", "_setLoadedInvoices", 3132); _static_2(A, "invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany6", 3133); _static_2(A, "payment_reducer___clearEditing$closure", "_clearEditing6", 667); _static_2(A, "payment_reducer___updateEditing$closure", "_updateEditing7", 667); _static_2(A, "payment_reducer___viewPaymentList$closure", "_viewPaymentList0", 3135); _static_2(A, "payment_reducer___filterPaymentsByCustom1$closure", "_filterPaymentsByCustom1", 3136); _static_2(A, "payment_reducer___filterPaymentsByCustom2$closure", "_filterPaymentsByCustom2", 3137); _static_2(A, "payment_reducer___filterPaymentsByCustom3$closure", "_filterPaymentsByCustom3", 3138); _static_2(A, "payment_reducer___filterPaymentsByCustom4$closure", "_filterPaymentsByCustom4", 3139); _static_2(A, "payment_reducer___filterPaymentsByState$closure", "_filterPaymentsByState", 3140); _static_2(A, "payment_reducer___filterPayments$closure", "_filterPayments", 3141); _static_2(A, "payment_reducer___sortPayments$closure", "_sortPayments", 3142); _static_2(A, "payment_reducer___startListMultiselect$closure", "_startListMultiselect8", 3143); _static_2(A, "payment_reducer___addToListMultiselect$closure", "_addToListMultiselect8", 3144); _static_2(A, "payment_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect8", 3145); _static_2(A, "payment_reducer___clearListMultiselect$closure", "_clearListMultiselect8", 3146); _static_2(A, "payment_reducer___archivePaymentSuccess$closure", "_archivePaymentSuccess", 3147); _static_2(A, "payment_reducer___deletePaymentSuccess$closure", "_deletePaymentSuccess", 3148); _static_2(A, "payment_reducer___restorePaymentSuccess$closure", "_restorePaymentSuccess", 3149); _static_2(A, "payment_reducer___addPayment$closure", "_addPayment", 3150); _static_2(A, "payment_reducer___updatePayment$closure", "_updatePayment", 3151); _static_2(A, "payment_reducer___setLoadedPayment$closure", "_setLoadedPayment", 3152); _static_2(A, "payment_reducer___setLoadedPayments$closure", "_setLoadedPayments", 3153); _static_2(A, "payment_reducer___setLoadedCompany$closure", "_setLoadedCompany7", 3154); _static_2(A, "payment_term_reducer___clearEditing$closure", "_clearEditing7", 607); _static_2(A, "payment_term_reducer___updateEditing$closure", "_updateEditing8", 607); _static_2(A, "payment_term_reducer___viewPaymentTermList$closure", "_viewPaymentTermList0", 3156); _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom1$closure", "_filterPaymentTermsByCustom1", 3157); _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom2$closure", "_filterPaymentTermsByCustom2", 3158); _static_2(A, "payment_term_reducer___filterPaymentTermsByState$closure", "_filterPaymentTermsByState", 3159); _static_2(A, "payment_term_reducer___filterPaymentTerms$closure", "_filterPaymentTerms", 3160); _static_2(A, "payment_term_reducer___sortPaymentTerms$closure", "_sortPaymentTerms", 3161); _static_2(A, "payment_term_reducer___startListMultiselect$closure", "_startListMultiselect9", 3162); _static_2(A, "payment_term_reducer___addToListMultiselect$closure", "_addToListMultiselect9", 3163); _static_2(A, "payment_term_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect9", 3164); _static_2(A, "payment_term_reducer___clearListMultiselect$closure", "_clearListMultiselect9", 3165); _static_2(A, "payment_term_reducer___archivePaymentTermSuccess$closure", "_archivePaymentTermSuccess", 3166); _static_2(A, "payment_term_reducer___deletePaymentTermSuccess$closure", "_deletePaymentTermSuccess", 3167); _static_2(A, "payment_term_reducer___restorePaymentTermSuccess$closure", "_restorePaymentTermSuccess", 3168); _static_2(A, "payment_term_reducer___addPaymentTerm$closure", "_addPaymentTerm", 3169); _static_2(A, "payment_term_reducer___updatePaymentTerm$closure", "_updatePaymentTerm", 3170); _static_2(A, "payment_term_reducer___setLoadedPaymentTerm$closure", "_setLoadedPaymentTerm", 3171); _static_2(A, "payment_term_reducer___setLoadedPaymentTerms$closure", "_setLoadedPaymentTerms", 3172); _static_2(A, "payment_term_reducer___setLoadedCompany$closure", "_setLoadedCompany8", 3173); _static_2(A, "product_reducer___clearEditing$closure", "_clearEditing8", 601); _static_2(A, "product_reducer___updateEditing$closure", "_updateEditing9", 601); _static_2(A, "product_reducer___viewClientList$closure", "_viewClientList1", 3175); _static_2(A, "product_reducer___filterProductsByState$closure", "_filterProductsByState", 3176); _static_2(A, "product_reducer___filterProductsByCustom1$closure", "_filterProductsByCustom1", 3177); _static_2(A, "product_reducer___filterProductsByCustom2$closure", "_filterProductsByCustom2", 3178); _static_2(A, "product_reducer___filterProductsByCustom3$closure", "_filterProductsByCustom3", 3179); _static_2(A, "product_reducer___filterProductsByCustom4$closure", "_filterProductsByCustom4", 3180); _static_2(A, "product_reducer___filterProducts$closure", "_filterProducts", 3181); _static_2(A, "product_reducer___sortProducts$closure", "_sortProducts", 3182); _static_2(A, "product_reducer___startListMultiselect$closure", "_startListMultiselect10", 3183); _static_2(A, "product_reducer___addToListMultiselect$closure", "_addToListMultiselect10", 3184); _static_2(A, "product_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect10", 3185); _static_2(A, "product_reducer___clearListMultiselect$closure", "_clearListMultiselect10", 3186); _static_2(A, "product_reducer___archiveProductSuccess$closure", "_archiveProductSuccess", 3187); _static_2(A, "product_reducer___deleteProductSuccess$closure", "_deleteProductSuccess", 3188); _static_2(A, "product_reducer___restoreProductSuccess$closure", "_restoreProductSuccess", 3189); _static_2(A, "product_reducer___addProduct$closure", "_addProduct", 3190); _static_2(A, "product_reducer___updateProduct$closure", "_updateProduct", 3191); _static_2(A, "product_reducer___setLoadedProduct$closure", "_setLoadedProduct", 3192); _static_2(A, "product_reducer___setLoadedProducts$closure", "_setLoadedProducts", 3193); _static_2(A, "product_reducer___setLoadedCompany$closure", "_setLoadedCompany9", 3194); _static_2(A, "project_reducer___clearEditing$closure", "_clearEditing9", 589); _static_2(A, "project_reducer___updateEditing$closure", "_updateEditing10", 589); _static_2(A, "project_reducer___viewProjectList$closure", "_viewProjectList0", 3196); _static_2(A, "project_reducer___filterProjectsByCustom1$closure", "_filterProjectsByCustom1", 3197); _static_2(A, "project_reducer___filterProjectsByCustom2$closure", "_filterProjectsByCustom2", 3198); _static_2(A, "project_reducer___filterProjectsByCustom3$closure", "_filterProjectsByCustom3", 3199); _static_2(A, "project_reducer___filterProjectsByCustom4$closure", "_filterProjectsByCustom4", 3200); _static_2(A, "project_reducer___filterProjectsByState$closure", "_filterProjectsByState", 3201); _static_2(A, "project_reducer___filterProjects$closure", "_filterProjects", 3202); _static_2(A, "project_reducer___sortProjects$closure", "_sortProjects", 3203); _static_2(A, "project_reducer___startListMultiselect$closure", "_startListMultiselect11", 3204); _static_2(A, "project_reducer___addToListMultiselect$closure", "_addToListMultiselect11", 3205); _static_2(A, "project_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect11", 3206); _static_2(A, "project_reducer___clearListMultiselect$closure", "_clearListMultiselect11", 3207); _static_2(A, "project_reducer___archiveProjectSuccess$closure", "_archiveProjectSuccess", 3208); _static_2(A, "project_reducer___deleteProjectSuccess$closure", "_deleteProjectSuccess", 3209); _static_2(A, "project_reducer___restoreProjectSuccess$closure", "_restoreProjectSuccess", 3210); _static_2(A, "project_reducer___addProject$closure", "_addProject", 3211); _static_2(A, "project_reducer___updateProject$closure", "_updateProject", 3212); _static_2(A, "project_reducer___setLoadedProject$closure", "_setLoadedProject", 3213); _static_2(A, "project_reducer___setLoadedProjects$closure", "_setLoadedProjects", 3214); _static_2(A, "project_reducer___setLoadedCompany$closure", "_setLoadedCompany10", 3215); _static_2(A, "purchase_order_reducer___clearEditing$closure", "_clearEditing10", 132); _static_2(A, "purchase_order_reducer___updateEditing$closure", "_updateEditing11", 132); _static_2(A, "purchase_order_reducer___addPurchaseOrderItem$closure", "_addPurchaseOrderItem", 584); _static_2(A, "purchase_order_reducer___addPurchaseOrderItems$closure", "_addPurchaseOrderItems", 3216); _static_2(A, "purchase_order_reducer___removePurchaseOrderItem$closure", "_removePurchaseOrderItem", 583); _static_2(A, "purchase_order_reducer___updatePurchaseOrderItem$closure", "_updatePurchaseOrderItem", 582); _static_2(A, "purchase_order_reducer___viewPurchaseOrderList$closure", "_viewPurchaseOrderList0", 3217); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom1$closure", "_filterPurchaseOrdersByCustom1", 3218); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom2$closure", "_filterPurchaseOrdersByCustom2", 3219); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom3$closure", "_filterPurchaseOrdersByCustom3", 3220); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom4$closure", "_filterPurchaseOrdersByCustom4", 3221); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByState$closure", "_filterPurchaseOrdersByState", 3222); _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByStatus$closure", "_filterPurchaseOrdersByStatus", 3223); _static_2(A, "purchase_order_reducer___filterPurchaseOrders$closure", "_filterPurchaseOrders", 3224); _static_2(A, "purchase_order_reducer___sortPurchaseOrders$closure", "_sortPurchaseOrders", 3225); _static_2(A, "purchase_order_reducer___startListMultiselect$closure", "_startListMultiselect12", 3226); _static_2(A, "purchase_order_reducer___addToListMultiselect$closure", "_addToListMultiselect12", 3227); _static_2(A, "purchase_order_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect12", 3228); _static_2(A, "purchase_order_reducer___clearListMultiselect$closure", "_clearListMultiselect12", 3229); _static_2(A, "purchase_order_reducer___markSentPurchaseOrderSuccess$closure", "_markSentPurchaseOrderSuccess", 3230); _static_2(A, "purchase_order_reducer___convertPurchaseOrdersToExpenses$closure", "_convertPurchaseOrdersToExpenses", 3231); _static_2(A, "purchase_order_reducer___addPurchaseOrdersToInventorySuccess$closure", "_addPurchaseOrdersToInventorySuccess", 3232); _static_2(A, "purchase_order_reducer___acceptPurchaseOrderSuccess$closure", "_acceptPurchaseOrderSuccess", 3233); _static_2(A, "purchase_order_reducer___cancelPurchaseOrderSuccess$closure", "_cancelPurchaseOrderSuccess", 3234); _static_2(A, "purchase_order_reducer___archivePurchaseOrderSuccess$closure", "_archivePurchaseOrderSuccess", 3235); _static_2(A, "purchase_order_reducer___deletePurchaseOrderSuccess$closure", "_deletePurchaseOrderSuccess", 3236); _static_2(A, "purchase_order_reducer___restorePurchaseOrderSuccess$closure", "_restorePurchaseOrderSuccess", 3237); _static_2(A, "purchase_order_reducer___emailPurchaseOrderSuccess$closure", "_emailPurchaseOrderSuccess", 3238); _static_2(A, "purchase_order_reducer___approvePurchaseOrderSuccess$closure", "_approvePurchaseOrderSuccess", 3239); _static_2(A, "purchase_order_reducer___addPurchaseOrder$closure", "_addPurchaseOrder", 3240); _static_2(A, "purchase_order_reducer___updatePurchaseOrder$closure", "_updatePurchaseOrder", 3241); _static_2(A, "purchase_order_reducer___setLoadedPurchaseOrders$closure", "_setLoadedPurchaseOrders", 3242); _static_2(A, "purchase_order_reducer___setLoadedCompany$closure", "_setLoadedCompany11", 3243); _static_2(A, "quote_reducer___clearEditing$closure", "_clearEditing11", 132); _static_2(A, "quote_reducer___updateEditing$closure", "_updateEditing12", 132); _static_2(A, "quote_reducer___addQuoteItem$closure", "_addQuoteItem", 578); _static_2(A, "quote_reducer___addQuoteItems$closure", "_addQuoteItems", 3244); _static_2(A, "quote_reducer___removeQuoteItem$closure", "_removeQuoteItem", 577); _static_2(A, "quote_reducer___updateQuoteItem$closure", "_updateQuoteItem", 576); _static_2(A, "quote_reducer___viewQuoteList$closure", "_viewQuoteList0", 3245); _static_2(A, "quote_reducer___filterQuotesByCustom1$closure", "_filterQuotesByCustom1", 3246); _static_2(A, "quote_reducer___filterQuotesByCustom2$closure", "_filterQuotesByCustom2", 3247); _static_2(A, "quote_reducer___filterQuotesByCustom3$closure", "_filterQuotesByCustom3", 3248); _static_2(A, "quote_reducer___filterQuotesByCustom4$closure", "_filterQuotesByCustom4", 3249); _static_2(A, "quote_reducer___filterQuotesByState$closure", "_filterQuotesByState", 3250); _static_2(A, "quote_reducer___filterQuotesByStatus$closure", "_filterQuotesByStatus", 3251); _static_2(A, "quote_reducer___filterQuotes$closure", "_filterQuotes", 3252); _static_2(A, "quote_reducer___sortQuotes$closure", "_sortQuotes", 3253); _static_2(A, "quote_reducer___startListMultiselect$closure", "_startListMultiselect13", 3254); _static_2(A, "quote_reducer___addToListMultiselect$closure", "_addToListMultiselect13", 3255); _static_2(A, "quote_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect13", 3256); _static_2(A, "quote_reducer___clearListMultiselect$closure", "_clearListMultiselect13", 3257); _static_2(A, "quote_reducer___markSentQuoteSuccess$closure", "_markSentQuoteSuccess", 3258); _static_2(A, "quote_reducer___archiveQuoteSuccess$closure", "_archiveQuoteSuccess", 3259); _static_2(A, "quote_reducer___deleteQuoteSuccess$closure", "_deleteQuoteSuccess", 3260); _static_2(A, "quote_reducer___restoreQuoteSuccess$closure", "_restoreQuoteSuccess", 3261); _static_2(A, "quote_reducer___emailQuoteSuccess$closure", "_emailQuoteSuccess", 3262); _static_2(A, "quote_reducer___convertQuoteSuccess$closure", "_convertQuoteSuccess", 3263); _static_2(A, "quote_reducer___addQuote$closure", "_addQuote", 3264); _static_2(A, "quote_reducer___updateQuote$closure", "_updateQuote", 3265); _static_2(A, "quote_reducer___setLoadedQuotes$closure", "_setLoadedQuotes", 3266); _static_2(A, "quote_reducer___setLoadedCompany$closure", "_setLoadedCompany12", 3267); _static_2(A, "recurring_expense_reducer___clearEditing$closure", "_clearEditing12", 341); _static_2(A, "recurring_expense_reducer___updateEditing$closure", "_updateEditing13", 341); _static_2(A, "recurring_expense_reducer___viewRecurringExpenseList$closure", "_viewRecurringExpenseList0", 3268); _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom1$closure", "_filterRecurringExpensesByCustom1", 3269); _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom2$closure", "_filterRecurringExpensesByCustom2", 3270); _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByState$closure", "_filterRecurringExpensesByState", 3271); _static_2(A, "recurring_expense_reducer___filterRecurringExpenses$closure", "_filterRecurringExpenses", 3272); _static_2(A, "recurring_expense_reducer___sortRecurringExpenses$closure", "_sortRecurringExpenses", 3273); _static_2(A, "recurring_expense_reducer___startListMultiselect$closure", "_startListMultiselect14", 3274); _static_2(A, "recurring_expense_reducer___addToListMultiselect$closure", "_addToListMultiselect14", 3275); _static_2(A, "recurring_expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect14", 3276); _static_2(A, "recurring_expense_reducer___clearListMultiselect$closure", "_clearListMultiselect14", 3277); _static_2(A, "recurring_expense_reducer___archiveRecurringExpenseSuccess$closure", "_archiveRecurringExpenseSuccess", 3278); _static_2(A, "recurring_expense_reducer___deleteRecurringExpenseSuccess$closure", "_deleteRecurringExpenseSuccess", 3279); _static_2(A, "recurring_expense_reducer___restoreRecurringExpenseSuccess$closure", "_restoreRecurringExpenseSuccess", 3280); _static_2(A, "recurring_expense_reducer___addRecurringExpense$closure", "_addRecurringExpense", 3281); _static_2(A, "recurring_expense_reducer___updateRecurringExpense$closure", "_updateRecurringExpense", 3282); _static_2(A, "recurring_expense_reducer___startRecurringExpensesSuccess$closure", "_startRecurringExpensesSuccess", 3283); _static_2(A, "recurring_expense_reducer___stopRecurringExpensesSuccess$closure", "_stopRecurringExpensesSuccess", 3284); _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpense$closure", "_setLoadedRecurringExpense", 3285); _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpenses$closure", "_setLoadedRecurringExpenses", 3286); _static_2(A, "recurring_expense_reducer___setLoadedCompany$closure", "_setLoadedCompany13", 3287); _static_2(A, "recurring_invoice_reducer___clearEditing$closure", "_clearEditing13", 132); _static_2(A, "recurring_invoice_reducer___updateEditing$closure", "_updateEditing14", 132); _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItem$closure", "_addRecurringInvoiceItem", 567); _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItems$closure", "_addRecurringInvoiceItems", 3288); _static_2(A, "recurring_invoice_reducer___removeRecurringInvoiceItem$closure", "_removeRecurringInvoiceItem", 565); _static_2(A, "recurring_invoice_reducer___updateRecurringInvoiceItem$closure", "_updateRecurringInvoiceItem", 564); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure", "_filterRecurringInvoicesByCustom1", 3289); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure", "_filterRecurringInvoicesByCustom2", 3290); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure", "_filterRecurringInvoicesByCustom3", 3291); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure", "_filterRecurringInvoicesByCustom4", 3292); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByState$closure", "_filterRecurringInvoicesByState", 3293); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure", "_filterRecurringInvoicesByStatus", 3294); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoices$closure", "_filterRecurringInvoices", 3295); _static_2(A, "recurring_invoice_reducer___sortRecurringInvoices$closure", "_sortRecurringInvoices", 3296); _static_2(A, "recurring_invoice_reducer___startListMultiselect$closure", "_startListMultiselect15", 3297); _static_2(A, "recurring_invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect15", 3298); _static_2(A, "recurring_invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect15", 3299); _static_2(A, "recurring_invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect15", 3300); _static_2(A, "recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure", "_archiveRecurringInvoiceSuccess", 3301); _static_2(A, "recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure", "_deleteRecurringInvoiceSuccess", 3302); _static_2(A, "recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure", "_emailRecurringInvoiceSuccess", 3303); _static_2(A, "recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure", "_restoreRecurringInvoiceSuccess", 3304); _static_2(A, "recurring_invoice_reducer___sendNowRecurringInvoiceSuccess$closure", "_sendNowRecurringInvoiceSuccess", 3305); _static_2(A, "recurring_invoice_reducer___startRecurringInvoicesSuccess$closure", "_startRecurringInvoicesSuccess", 3306); _static_2(A, "recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure", "_stopRecurringInvoicesSuccess", 3307); _static_2(A, "recurring_invoice_reducer___addRecurringInvoice$closure", "_addRecurringInvoice", 3308); _static_2(A, "recurring_invoice_reducer___updateRecurringInvoice$closure", "_updateRecurringInvoice", 3309); _static_2(A, "recurring_invoice_reducer___setLoadedRecurringInvoices$closure", "_setLoadedRecurringInvoices", 3310); _static_2(A, "recurring_invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany14", 3311); _static_2(A, "static_reducer__staticLoadedReducer$closure", "staticLoadedReducer", 3312); _static_2(A, "subscription_reducer___clearEditing$closure", "_clearEditing14", 579); _static_2(A, "subscription_reducer___updateEditing$closure", "_updateEditing15", 579); _static_2(A, "subscription_reducer___filterSubscriptionsByCustom1$closure", "_filterSubscriptionsByCustom1", 3314); _static_2(A, "subscription_reducer___filterSubscriptionsByCustom2$closure", "_filterSubscriptionsByCustom2", 3315); _static_2(A, "subscription_reducer___filterSubscriptionsByState$closure", "_filterSubscriptionsByState", 3316); _static_2(A, "subscription_reducer___filterSubscriptions$closure", "_filterSubscriptions", 3317); _static_2(A, "subscription_reducer___sortSubscriptions$closure", "_sortSubscriptions", 3318); _static_2(A, "subscription_reducer___startListMultiselect$closure", "_startListMultiselect16", 3319); _static_2(A, "subscription_reducer___addToListMultiselect$closure", "_addToListMultiselect16", 3320); _static_2(A, "subscription_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect16", 3321); _static_2(A, "subscription_reducer___clearListMultiselect$closure", "_clearListMultiselect16", 3322); _static_2(A, "subscription_reducer___archiveSubscriptionSuccess$closure", "_archiveSubscriptionSuccess", 3323); _static_2(A, "subscription_reducer___deleteSubscriptionSuccess$closure", "_deleteSubscriptionSuccess", 3324); _static_2(A, "subscription_reducer___restoreSubscriptionSuccess$closure", "_restoreSubscriptionSuccess", 3325); _static_2(A, "subscription_reducer___addSubscription$closure", "_addSubscription", 3326); _static_2(A, "subscription_reducer___updateSubscription$closure", "_updateSubscription", 3327); _static_2(A, "subscription_reducer___setLoadedSubscription$closure", "_setLoadedSubscription", 3328); _static_2(A, "subscription_reducer___setLoadedSubscriptions$closure", "_setLoadedSubscriptions", 3329); _static_2(A, "subscription_reducer___setLoadedCompany$closure", "_setLoadedCompany15", 3330); _static_2(A, "task_reducer___clearEditing$closure", "_clearEditing15", 546); _static_2(A, "task_reducer___updateEditing$closure", "_updateEditing16", 546); _static_2(A, "task_reducer___viewTaskList$closure", "_viewTaskList0", 3332); _static_2(A, "task_reducer___filterTasksByCustom1$closure", "_filterTasksByCustom1", 3333); _static_2(A, "task_reducer___filterTasksByCustom2$closure", "_filterTasksByCustom2", 3334); _static_2(A, "task_reducer___filterTasksByState$closure", "_filterTasksByState", 3335); _static_2(A, "task_reducer___filterTasksByStatus$closure", "_filterTasksByStatus", 3336); _static_2(A, "task_reducer___filterTasks$closure", "_filterTasks", 3337); _static_2(A, "task_reducer___sortTasks$closure", "_sortTasks0", 3338); _static_2(A, "task_reducer___addTaskTime$closure", "_addTaskTime", 3339); _static_2(A, "task_reducer___removeTaskTime$closure", "_removeTaskTime", 3340); _static_2(A, "task_reducer___updateTaskTime$closure", "_updateTaskTime", 3341); _static_2(A, "task_reducer___startListMultiselect$closure", "_startListMultiselect17", 3342); _static_2(A, "task_reducer___addToListMultiselect$closure", "_addToListMultiselect17", 3343); _static_2(A, "task_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect17", 3344); _static_2(A, "task_reducer___clearListMultiselect$closure", "_clearListMultiselect17", 3345); _static_2(A, "task_reducer___sortTasksSuccess$closure", "_sortTasksSuccess", 3346); _static_2(A, "task_reducer___archiveTaskSuccess$closure", "_archiveTaskSuccess", 3347); _static_2(A, "task_reducer___startTaskSuccess$closure", "_startTaskSuccess", 3348); _static_2(A, "task_reducer___stopTaskSuccess$closure", "_stopTaskSuccess", 3349); _static_2(A, "task_reducer___deleteTaskSuccess$closure", "_deleteTaskSuccess", 3350); _static_2(A, "task_reducer___restoreTaskSuccess$closure", "_restoreTaskSuccess", 3351); _static_2(A, "task_reducer___addTask$closure", "_addTask", 3352); _static_2(A, "task_reducer___updateTask$closure", "_updateTask", 3353); _static_2(A, "task_reducer___setLoadedTask$closure", "_setLoadedTask", 3354); _static_2(A, "task_reducer___setLoadedTasks$closure", "_setLoadedTasks", 3355); _static_2(A, "task_reducer___setLoadedCompany$closure", "_setLoadedCompany16", 3356); _static_2(A, "task_status_reducer___clearEditing$closure", "_clearEditing16", 532); _static_2(A, "task_status_reducer___updateEditing$closure", "_updateEditing17", 532); _static_2(A, "task_status_reducer___viewTaskStatusList$closure", "_viewTaskStatusList0", 3358); _static_2(A, "task_status_reducer___filterTaskStatusesByCustom1$closure", "_filterTaskStatusesByCustom1", 3359); _static_2(A, "task_status_reducer___filterTaskStatusesByCustom2$closure", "_filterTaskStatusesByCustom2", 3360); _static_2(A, "task_status_reducer___filterTaskStatusesByState$closure", "_filterTaskStatusesByState", 3361); _static_2(A, "task_status_reducer___filterTaskStatuses$closure", "_filterTaskStatuses", 3362); _static_2(A, "task_status_reducer___sortTaskStatuses$closure", "_sortTaskStatuses", 3363); _static_2(A, "task_status_reducer___startListMultiselect$closure", "_startListMultiselect18", 3364); _static_2(A, "task_status_reducer___addToListMultiselect$closure", "_addToListMultiselect18", 3365); _static_2(A, "task_status_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect18", 3366); _static_2(A, "task_status_reducer___clearListMultiselect$closure", "_clearListMultiselect18", 3367); _static_2(A, "task_status_reducer___sortTaskStatusSuccess$closure", "_sortTaskStatusSuccess", 3368); _static_2(A, "task_status_reducer___archiveTaskStatusSuccess$closure", "_archiveTaskStatusSuccess", 3369); _static_2(A, "task_status_reducer___deleteTaskStatusSuccess$closure", "_deleteTaskStatusSuccess", 3370); _static_2(A, "task_status_reducer___restoreTaskStatusSuccess$closure", "_restoreTaskStatusSuccess", 3371); _static_2(A, "task_status_reducer___addTaskStatus$closure", "_addTaskStatus", 3372); _static_2(A, "task_status_reducer___updateTaskStatus$closure", "_updateTaskStatus", 3373); _static_2(A, "task_status_reducer___setLoadedTaskStatus$closure", "_setLoadedTaskStatus", 3374); _static_2(A, "task_status_reducer___setLoadedTaskStatuses$closure", "_setLoadedTaskStatuses", 3375); _static_2(A, "task_status_reducer___setLoadedCompany$closure", "_setLoadedCompany17", 3376); _static_2(A, "tax_rate_reducer___clearEditing$closure", "_clearEditing17", 511); _static_2(A, "tax_rate_reducer___updateEditing$closure", "_updateEditing18", 511); _static_2(A, "tax_rate_reducer___viewTaxRateList$closure", "_viewTaxRateList0", 3378); _static_2(A, "tax_rate_reducer___filterTaxRatesByState$closure", "_filterTaxRatesByState", 3379); _static_2(A, "tax_rate_reducer___filterTaxRates$closure", "_filterTaxRates", 3380); _static_2(A, "tax_rate_reducer___sortTaxRates$closure", "_sortTaxRates", 3381); _static_2(A, "tax_rate_reducer___startListMultiselect$closure", "_startListMultiselect19", 3382); _static_2(A, "tax_rate_reducer___addToListMultiselect$closure", "_addToListMultiselect19", 3383); _static_2(A, "tax_rate_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect19", 3384); _static_2(A, "tax_rate_reducer___clearListMultiselect$closure", "_clearListMultiselect19", 3385); _static_2(A, "tax_rate_reducer___archiveTaxRateSuccess$closure", "_archiveTaxRateSuccess", 3386); _static_2(A, "tax_rate_reducer___deleteTaxRateSuccess$closure", "_deleteTaxRateSuccess", 3387); _static_2(A, "tax_rate_reducer___restoreTaxRateSuccess$closure", "_restoreTaxRateSuccess", 3388); _static_2(A, "tax_rate_reducer___addTaxRate$closure", "_addTaxRate", 3389); _static_2(A, "tax_rate_reducer___updateTaxRate$closure", "_updateTaxRate", 3390); _static_2(A, "tax_rate_reducer___setLoadedTaxRate$closure", "_setLoadedTaxRate", 3391); _static_2(A, "tax_rate_reducer___setLoadedTaxRates$closure", "_setLoadedTaxRates", 3392); _static_2(A, "tax_rate_reducer___setLoadedCompany$closure", "_setLoadedCompany18", 3393); _static_2(A, "token_reducer___clearEditing$closure", "_clearEditing18", 753); _static_2(A, "token_reducer___updateEditing$closure", "_updateEditing19", 753); _static_2(A, "token_reducer___viewTokenList$closure", "_viewTokenList0", 3395); _static_2(A, "token_reducer___filterTokensByCustom1$closure", "_filterTokensByCustom1", 3396); _static_2(A, "token_reducer___filterTokensByCustom2$closure", "_filterTokensByCustom2", 3397); _static_2(A, "token_reducer___filterTokensByState$closure", "_filterTokensByState", 3398); _static_2(A, "token_reducer___filterTokens$closure", "_filterTokens", 3399); _static_2(A, "token_reducer___sortTokens$closure", "_sortTokens", 3400); _static_2(A, "token_reducer___startListMultiselect$closure", "_startListMultiselect20", 3401); _static_2(A, "token_reducer___addToListMultiselect$closure", "_addToListMultiselect20", 3402); _static_2(A, "token_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect20", 3403); _static_2(A, "token_reducer___clearListMultiselect$closure", "_clearListMultiselect20", 3404); _static_2(A, "token_reducer___archiveTokenSuccess$closure", "_archiveTokenSuccess", 3405); _static_2(A, "token_reducer___deleteTokenSuccess$closure", "_deleteTokenSuccess", 3406); _static_2(A, "token_reducer___restoreTokenSuccess$closure", "_restoreTokenSuccess", 3407); _static_2(A, "token_reducer___addToken$closure", "_addToken", 3408); _static_2(A, "token_reducer___updateToken$closure", "_updateToken", 3409); _static_2(A, "token_reducer___setLoadedToken$closure", "_setLoadedToken", 3410); _static_2(A, "token_reducer___setLoadedTokens$closure", "_setLoadedTokens", 3411); _static_2(A, "token_reducer___setLoadedCompany$closure", "_setLoadedCompany19", 3412); _static_2(A, "user_reducer___clearEditing$closure", "_clearEditing19", 748); _static_2(A, "user_reducer___updateEditing$closure", "_updateEditing20", 748); _static_2(A, "user_reducer___viewUserList$closure", "_viewUserList0", 3414); _static_2(A, "user_reducer___filterUsersByCustom1$closure", "_filterUsersByCustom1", 3415); _static_2(A, "user_reducer___filterUsersByCustom2$closure", "_filterUsersByCustom2", 3416); _static_2(A, "user_reducer___filterUsersByCustom3$closure", "_filterUsersByCustom3", 3417); _static_2(A, "user_reducer___filterUsersByCustom4$closure", "_filterUsersByCustom4", 3418); _static_2(A, "user_reducer___filterUsersByState$closure", "_filterUsersByState", 3419); _static_2(A, "user_reducer___filterUsers$closure", "_filterUsers", 3420); _static_2(A, "user_reducer___sortUsers$closure", "_sortUsers", 3421); _static_2(A, "user_reducer___startListMultiselect$closure", "_startListMultiselect21", 3422); _static_2(A, "user_reducer___addToListMultiselect$closure", "_addToListMultiselect21", 3423); _static_2(A, "user_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect21", 3424); _static_2(A, "user_reducer___clearListMultiselect$closure", "_clearListMultiselect21", 3425); _static_2(A, "user_reducer___archiveUserSuccess$closure", "_archiveUserSuccess", 3426); _static_2(A, "user_reducer___deleteUserSuccess$closure", "_deleteUserSuccess", 3427); _static_2(A, "user_reducer___restoreUserSuccess$closure", "_restoreUserSuccess", 3428); _static_2(A, "user_reducer___removeUserSuccess$closure", "_removeUserSuccess", 3429); _static_2(A, "user_reducer___addUser$closure", "_addUser", 3430); _static_2(A, "user_reducer___updateUser$closure", "_updateUser", 3431); _static_2(A, "user_reducer___updateAuthUser$closure", "_updateAuthUser", 3432); _static_2(A, "user_reducer___connectOAuthUser$closure", "_connectOAuthUser0", 3433); _static_2(A, "user_reducer___connectGmailUser$closure", "_connectGmailUser0", 3434); _static_2(A, "user_reducer___setLoadedUser$closure", "_setLoadedUser", 3435); _static_2(A, "user_reducer___setLoadedUsers$closure", "_setLoadedUsers", 3436); _static_2(A, "user_reducer___setLoadedCompany$closure", "_setLoadedCompany20", 3437); _static_2(A, "vendor_reducer__editVendorContact$closure", "editVendorContact", 3438); _static_2(A, "vendor_reducer___clearEditing$closure", "_clearEditing20", 687); _static_2(A, "vendor_reducer___updateEditing$closure", "_updateEditing21", 687); _static_2(A, "vendor_reducer___addContact$closure", "_addContact", 3440); _static_2(A, "vendor_reducer___removeContact$closure", "_removeContact", 3441); _static_2(A, "vendor_reducer___updateContact$closure", "_updateContact", 3442); _static_2(A, "vendor_reducer___viewVendorList$closure", "_viewVendorList0", 3443); _static_2(A, "vendor_reducer___filterVendorsByCustom1$closure", "_filterVendorsByCustom1", 3444); _static_2(A, "vendor_reducer___filterVendorsByCustom2$closure", "_filterVendorsByCustom2", 3445); _static_2(A, "vendor_reducer___filterVendorsByCustom3$closure", "_filterVendorsByCustom3", 3446); _static_2(A, "vendor_reducer___filterVendorsByCustom4$closure", "_filterVendorsByCustom4", 3447); _static_2(A, "vendor_reducer___filterVendorsByState$closure", "_filterVendorsByState", 3448); _static_2(A, "vendor_reducer___filterVendors$closure", "_filterVendors", 3449); _static_2(A, "vendor_reducer___sortVendors$closure", "_sortVendors", 3450); _static_2(A, "vendor_reducer___startListMultiselect$closure", "_startListMultiselect22", 3451); _static_2(A, "vendor_reducer___addToListMultiselect$closure", "_addToListMultiselect22", 3452); _static_2(A, "vendor_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect22", 3453); _static_2(A, "vendor_reducer___clearListMultiselect$closure", "_clearListMultiselect22", 3454); _static_2(A, "vendor_reducer___archiveVendorSuccess$closure", "_archiveVendorSuccess", 3455); _static_2(A, "vendor_reducer___deleteVendorSuccess$closure", "_deleteVendorSuccess", 3456); _static_2(A, "vendor_reducer___restoreVendorSuccess$closure", "_restoreVendorSuccess", 3457); _static_2(A, "vendor_reducer___addVendor$closure", "_addVendor", 3458); _static_2(A, "vendor_reducer___updateVendor$closure", "_updateVendor", 3459); _static_2(A, "vendor_reducer___setLoadedVendor$closure", "_setLoadedVendor", 3460); _static_2(A, "vendor_reducer___setLoadedVendors$closure", "_setLoadedVendors", 3461); _static_2(A, "vendor_reducer___setLoadedCompany$closure", "_setLoadedCompany21", 3462); _static_2(A, "webhook_reducer___clearEditing$closure", "_clearEditing21", 686); _static_2(A, "webhook_reducer___updateEditing$closure", "_updateEditing22", 686); _static_2(A, "webhook_reducer___viewWebhookList$closure", "_viewWebhookList0", 3464); _static_2(A, "webhook_reducer___filterWebhooksByCustom1$closure", "_filterWebhooksByCustom1", 3465); _static_2(A, "webhook_reducer___filterWebhooksByCustom2$closure", "_filterWebhooksByCustom2", 3466); _static_2(A, "webhook_reducer___filterWebhooksByState$closure", "_filterWebhooksByState", 3467); _static_2(A, "webhook_reducer___filterWebhooks$closure", "_filterWebhooks", 3468); _static_2(A, "webhook_reducer___sortWebhooks$closure", "_sortWebhooks", 3469); _static_2(A, "webhook_reducer___startListMultiselect$closure", "_startListMultiselect23", 3470); _static_2(A, "webhook_reducer___addToListMultiselect$closure", "_addToListMultiselect23", 3471); _static_2(A, "webhook_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect23", 3472); _static_2(A, "webhook_reducer___clearListMultiselect$closure", "_clearListMultiselect23", 3473); _static_2(A, "webhook_reducer___archiveWebhookSuccess$closure", "_archiveWebhookSuccess", 3474); _static_2(A, "webhook_reducer___deleteWebhookSuccess$closure", "_deleteWebhookSuccess", 3475); _static_2(A, "webhook_reducer___restoreWebhookSuccess$closure", "_restoreWebhookSuccess", 3476); _static_2(A, "webhook_reducer___addWebhook$closure", "_addWebhook", 3477); _static_2(A, "webhook_reducer___updateWebhook$closure", "_updateWebhook", 3478); _static_2(A, "webhook_reducer___setLoadedWebhook$closure", "_setLoadedWebhook", 3479); _static_2(A, "webhook_reducer___setLoadedWebhooks$closure", "_setLoadedWebhooks", 3480); _static_2(A, "webhook_reducer___setLoadedCompany$closure", "_setLoadedCompany22", 3481); _static_1(A, "confirm_email_vm_ConfirmEmailVM_fromStore$closure", "ConfirmEmailVM_fromStore", 3482); _instance_0_u(A._EntitiesListTileState.prototype, "get$_entity_list_tile$_onLongPress", "_entity_list_tile$_onLongPress$0", 0); _instance_0_u(A._EntityDropdownState.prototype, "get$_onFocusChanged", "_onFocusChanged$0", 0); _instance_0_u(_ = A._FormColorPickerState.prototype, "get$_color_picker$_onChanged", "_color_picker$_onChanged$0", 0); _instance_0_u(_, "get$_showPicker", "_showPicker$0", 0); _instance_0_u(A._DatePickerState.prototype, "get$_onFoucsChanged", "_onFoucsChanged$0", 0); _instance_0_u(A._DurationPickerState.prototype, "get$_duration_picker$_onFoucsChanged", "_duration_picker$_onFoucsChanged$0", 0); _instance_0_u(A._GrowableFormFieldState.prototype, "get$_growable_form_field$_onFoucsChanged", "_growable_form_field$_onFoucsChanged$0", 0); _instance_0_u(A._TimePickerState.prototype, "get$_time_picker$_onFoucsChanged", "_time_picker$_onFoucsChanged$0", 0); _static_1(A, "history_drawer_vm_AppDrawerVM_fromStore$closure", "AppDrawerVM_fromStore", 3483); _instance_0_u(A._InvoiceEmailViewState.prototype, "get$_invoice_email_view$_loadTemplate", "_invoice_email_view$_loadTemplate$0", 0); _instance_0_u(A._ListFilterState.prototype, "get$onFocusChanged", "onFocusChanged$0", 0); _static_1(A, "menu_drawer_vm_MenuDrawerVM_fromStore$closure", "MenuDrawerVM_fromStore", 3484); _instance_1_u(A.AppDataTable.prototype, "get$_app_data_table$_handleSelectAll", "_app_data_table$_handleSelectAll$1", 40); _instance_1_u(_ = A.TableRowInkWell0.prototype, "get$getRectCallback", "getRectCallback$1", 2220); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 2221); _instance_0_u(_ = A._SortArrowState0.prototype, "get$_app_data_table$_rebuild", "_app_data_table$_rebuild$0", 0); _instance_1_u(_, "get$_app_data_table$_resetOrientationAnimation", "_app_data_table$_resetOrientationAnimation$1", 2223); _instance_0_u(_ = A.AppPaginatedDataTableState.prototype, "get$_app_paginated_data_table$_handleDataSourceChanged", "_app_paginated_data_table$_handleDataSourceChanged$0", 0); _instance_0_u(_, "get$_app_paginated_data_table$_handlePrevious", "_app_paginated_data_table$_handlePrevious$0", 0); _instance_0_u(_, "get$_app_paginated_data_table$_handleNext", "_app_paginated_data_table$_handleNext$0", 0); _instance_0_u(A._LoginState.prototype, "get$_submitForm", "_submitForm$0", 0); _static_1(A, "login_vm_LoginVM_fromStore$closure", "LoginVM_fromStore", 3485); _static_1(A, "client_list_vm_ClientListVM_fromStore$closure", "ClientListVM_fromStore", 3486); _static_1(A, "client_screen_vm_ClientScreenVM_fromStore$closure", "ClientScreenVM_fromStore", 3487); _instance_0_u(A.ClientEditBillingAddressState.prototype, "get$_client_edit_billing_address$_onChanged", "_client_edit_billing_address$_onChanged$0", 0); _instance_0_u(A.ContactEditDetailsState.prototype, "get$_client_edit_contacts$_onChanged", "_client_edit_contacts$_onChanged$0", 0); _instance_0_u(A.ClientEditDetailsState.prototype, "get$_client_edit_details$_onChanged", "_client_edit_details$_onChanged$0", 0); _instance_0_u(A.ClientEditNotesState.prototype, "get$_client_edit_notes$_onChanged", "_client_edit_notes$_onChanged$0", 0); _instance_0_u(A.ClientEditSettingsState.prototype, "get$_client_edit_settings$_onChanged", "_client_edit_settings$_onChanged$0", 0); _instance_0_u(A.ClientEditShippingAddressState.prototype, "get$_client_edit_shipping_address$_onChanged", "_client_edit_shipping_address$_onChanged$0", 0); _instance_0_u(A._ClientViewState.prototype, "get$_client_view$_onTabChanged", "_client_view$_onTabChanged$0", 0); _instance_2_u(A._ClientViewDetailsState.prototype, "get$_client_view_details$_launchStatus", "_client_view_details$_launchStatus$2", 581); _static_1(A, "company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure", "CompanyGatewayListVM_fromStore", 3488); _static_1(A, "company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure", "CompanyGatewayScreenVM_fromStore", 3489); _instance_0_u(A._GatewayConfigFieldState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); _instance_0_u(A._LimitEditorState.prototype, "get$_onTextChange", "_onTextChange$0", 0); _instance_0_u(A._FeesEditorState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); _static_1(A, "credit_list_vm_CreditListVM_fromStore$closure", "CreditListVM_fromStore", 3490); _static_1(A, "credit_screen_vm_CreditScreenVM_fromStore$closure", "CreditScreenVM_fromStore", 3491); _instance_1_u(A._DashboardChartState.prototype, "get$_onSelectionChanged", "_onSelectionChanged$1", 2327); _instance_0_u(_ = A._DashboardScreenState.prototype, "get$onScrollListener", "onScrollListener$0", 0); _instance_0_u(_, "get$onTabListener", "onTabListener$0", 0); _static_1(A, "dashboard_screen_vm_DashboardVM_fromStore$closure", "DashboardVM_fromStore", 3492); _static_1(A, "design_list_vm_DesignListVM_fromStore$closure", "DesignListVM_fromStore", 3493); _static_1(A, "design_screen_vm_DesignScreenVM_fromStore$closure", "DesignScreenVM_fromStore", 3494); _instance(_ = A._DesignEditState.prototype, "get$_design_edit$_onChanged", 0, 0, function() { return {debounce: true}; }, ["call$1$debounce", "call$0"], ["_design_edit$_onChanged$1$debounce", "_design_edit$_onChanged$0"], 2360, 0, 0); _instance_0_u(_, "get$_onHtmlChanged", "_onHtmlChanged$0", 0); _instance_1_u(_, "get$_loadDesign", "_loadDesign$1", 2361); _static_1(A, "document_list_vm_DocumentListVM_fromStore$closure", "DocumentListVM_fromStore", 3495); _static_1(A, "document_screen_vm_DocumentScreenVM_fromStore$closure", "DocumentScreenVM_fromStore", 3496); _instance_0_u(A._DocumentEditState.prototype, "get$_document_edit$_onChanged", "_document_edit$_onChanged$0", 0); _instance_0_u(A.ExpenseEditDetailsState.prototype, "get$_expense_edit_details$_onChanged", "_expense_edit_details$_onChanged$0", 0); _instance_0_u(A.ExpenseEditNotesState.prototype, "get$_expense_edit_notes$_onChanged", "_expense_edit_notes$_onChanged$0", 0); _instance_0_u(A.ExpenseEditSettingsState.prototype, "get$_expense_edit_settings$_onChanged", "_expense_edit_settings$_onChanged$0", 0); _static_1(A, "expense_list_vm_ExpenseListVM_fromStore$closure", "ExpenseListVM_fromStore", 3497); _static_1(A, "expense_screen_vm_ExpenseScreenVM_fromStore$closure", "ExpenseScreenVM_fromStore", 3498); _instance_0_u(A._ExpenseViewState.prototype, "get$_expense_view$_onTabChanged", "_expense_view$_onTabChanged$0", 0); _instance_0_u(A._ExpenseCategoryEditState.prototype, "get$_expense_category_edit$_onChanged", "_expense_category_edit$_onChanged$0", 0); _static_1(A, "expense_category_list_vm_ExpenseCategoryListVM_fromStore$closure", "ExpenseCategoryListVM_fromStore", 3499); _static_1(A, "expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure", "ExpenseCategoryScreenVM_fromStore", 3500); _instance_0_u(A._GroupEditState.prototype, "get$_group_edit$_onChanged", "_group_edit$_onChanged$0", 0); _static_1(A, "group_list_vm_GroupListVM_fromStore$closure", "GroupListVM_fromStore", 3501); _static_1(A, "group_screen_vm_GroupScreenVM_fromStore$closure", "GroupScreenVM_fromStore", 3502); _instance_0_u(A.InvoiceEditDesktopState.prototype, "get$_invoice_edit_desktop$_onChanged", "_invoice_edit_desktop$_onChanged$0", 0); _instance_0_u(A.InvoiceEditDetailsState.prototype, "get$_invoice_edit_details$_onChanged", "_invoice_edit_details$_onChanged$0", 0); _instance_0_u(A.ItemEditDetailsState.prototype, "get$_invoice_edit_items$_onTextChanged", "_invoice_edit_items$_onTextChanged$0", 0); _instance_0_u(A.InvoiceEditNotesState.prototype, "get$_invoice_edit_notes$_onChanged", "_invoice_edit_notes$_onChanged$0", 0); _static_1(A, "invoice_list_vm_InvoiceListVM_fromStore$closure", "InvoiceListVM_fromStore", 3503); _static_1(A, "invoice_screen_vm_InvoiceScreenVM_fromStore$closure", "InvoiceScreenVM_fromStore", 3504); _instance_0_u(A._InvoiceViewState.prototype, "get$_invoice_view$_onTabChanged", "_invoice_view$_onTabChanged$0", 0); _instance_0_u(A._PaymentEditState.prototype, "get$_payment_edit$_onChanged", "_payment_edit$_onChanged$0", 0); _instance(A._PaymentableEditorState.prototype, "get$_payment_edit$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_edit$_onChanged$1", "_payment_edit$_onChanged$0"], 700, 0, 0); _static_1(A, "payment_list_vm_PaymentListVM_fromStore$closure", "PaymentListVM_fromStore", 3505); _static_1(A, "payment_screen_vm_PaymentScreenVM_fromStore$closure", "PaymentScreenVM_fromStore", 3506); _instance_0_u(A._PaymentRefundState.prototype, "get$_payment_refund$_onChanged", "_payment_refund$_onChanged$0", 0); _instance(A._PaymentableEditorState0.prototype, "get$_payment_refund$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_refund$_onChanged$1", "_payment_refund$_onChanged$0"], 700, 0, 0); _instance_0_u(A._PaymentTermEditState.prototype, "get$_payment_term_edit$_onChanged", "_payment_term_edit$_onChanged$0", 0); _static_1(A, "payment_term_list_vm_PaymentTermListVM_fromStore$closure", "PaymentTermListVM_fromStore", 3507); _static_1(A, "payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure", "PaymentTermScreenVM_fromStore", 3508); _instance_0_u(A._ProductEditState.prototype, "get$_product_edit$_onChanged", "_product_edit$_onChanged$0", 0); _static_1(A, "product_list_vm_ProductListVM_fromStore$closure", "ProductListVM_fromStore", 3509); _static_1(A, "product_screen_vm_ProductScreenVM_fromStore$closure", "ProductScreenVM_fromStore", 3510); _instance_0_u(A._ProductViewState.prototype, "get$_product_view$_onTabChanged", "_product_view$_onTabChanged$0", 0); _instance_0_u(A._ProjectEditState.prototype, "get$_project_edit$_onChanged", "_project_edit$_onChanged$0", 0); _static_1(A, "project_list_vm_ProjectListVM_fromStore$closure", "ProjectListVM_fromStore", 3511); _static_1(A, "project_screen_vm_ProjectScreenVM_fromStore$closure", "ProjectScreenVM_fromStore", 3512); _instance_0_u(A._ProjectViewState.prototype, "get$_project_view$_onTabChanged", "_project_view$_onTabChanged$0", 0); _static_1(A, "purchase_order_list_vm_PurchaseOrderListVM_fromStore$closure", "PurchaseOrderListVM_fromStore", 3513); _static_1(A, "purchase_order_screen_vm_PurchaseOrderScreenVM_fromStore$closure", "PurchaseOrderScreenVM_fromStore", 3514); _static_1(A, "quote_list_vm_QuoteListVM_fromStore$closure", "QuoteListVM_fromStore", 3515); _static_1(A, "quote_screen_vm_QuoteScreenVM_fromStore$closure", "QuoteScreenVM_fromStore", 3516); _static_1(A, "recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure", "RecurringExpenseListVM_fromStore", 3517); _static_1(A, "recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure", "RecurringExpenseScreenVM_fromStore", 3518); _static_1(A, "recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure", "RecurringInvoiceListVM_fromStore", 3519); _static_1(A, "recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure", "RecurringInvoiceScreenVM_fromStore", 3520); _static_1(A, "reports_screen_vm_ReportsScreenVM_fromStore$closure", "ReportsScreenVM_fromStore", 3521); _instance_0_u(_ = A._AccountManagementState.prototype, "get$_onTabChanged", "_onTabChanged$0", 0); _instance_0_u(_, "get$_account_management$_onChanged", "_account_management$_onChanged$0", 0); _static_1(A, "account_management_vm_AccountManagementVM_fromStore$closure", "AccountManagementVM_fromStore", 3522); _instance_0_u(_ = A._ClientPortalState.prototype, "get$_client_portal$_onTabChanged", "_client_portal$_onTabChanged$0", 0); _instance_0_u(_, "get$_client_portal$_onChanged", "_client_portal$_onChanged$0", 0); _static_1(A, "client_portal_vm_ClientPortalVM_fromStore$closure", "ClientPortalVM_fromStore", 3523); _instance_0_u(_ = A._CompanyDetailsState.prototype, "get$_company_details$_onTabChanged", "_company_details$_onTabChanged$0", 0); _instance_0_u(_, "get$_onSettingsChanged", "_onSettingsChanged$0", 0); _static_1(A, "company_details_vm_CompanyDetailsVM_fromStore$closure", "CompanyDetailsVM_fromStore", 3524); _instance_0_u(A._CreditCardsAndBanksState.prototype, "get$_credit_cards_and_banks$_onChanged", "_credit_cards_and_banks$_onChanged$0", 0); _static_1(A, "credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure", "CreditCardsAndBanksVM_fromStore", 3525); _instance_0_u(A._CustomFieldsState.prototype, "get$_custom_fields$_onTabChanged", "_custom_fields$_onTabChanged$0", 0); _instance_0_u(A._CustomFormFieldState.prototype, "get$_custom_fields$_onChanged", "_custom_fields$_onChanged$0", 0); _static_1(A, "custom_fields_vm_CustomFieldsVM_fromStore$closure", "CustomFieldsVM_fromStore", 3526); _instance_0_u(A._DataVisualizationsState.prototype, "get$_data_visualizations$_onChanged", "_data_visualizations$_onChanged$0", 0); _static_1(A, "data_visualizations_vm_DataVisualizationsVM_fromStore$closure", "DataVisualizationsVM_fromStore", 3527); _instance_0_u(A._DeviceSettingsState.prototype, "get$_device_settings$_onTabChanged", "_device_settings$_onTabChanged$0", 0); _static_1(A, "device_settings_vm_DeviceSettingsVM_fromStore$closure", "DeviceSettingsVM_fromStore", 3528); _instance_0_u(A._EmailSettingsState.prototype, "get$_email_settings$_onChanged", "_email_settings$_onChanged$0", 0); _static_1(A, "email_settings_vm_EmailSettingsVM_fromStore$closure", "EmailSettingsVM_fromStore", 3529); _static_1(A, "expense_settings_vm_ExpenseSettingsVM_fromStore$closure", "ExpenseSettingsVM_fromStore", 3530); _instance_0_u(_ = A._GeneratedNumbersState.prototype, "get$_generated_numbers$_onTabChanged", "_generated_numbers$_onTabChanged$0", 0); _instance_0_u(_, "get$_generated_numbers$_onChanged", "_generated_numbers$_onChanged$0", 0); _instance_1_u(_, "get$_generated_numbers$_onSavePressed", "_generated_numbers$_onSavePressed$1", 30); _instance_0_u(A._EntityNumberSettingsState.prototype, "get$_generated_numbers$_onChanged", "_generated_numbers$_onChanged$0", 0); _static_1(A, "generated_numbers_vm_GeneratedNumbersVM_fromStore$closure", "GeneratedNumbersVM_fromStore", 3531); _static_1(A, "import_export_vm_ImportExportVM_fromStore$closure", "ImportExportVM_fromStore", 3532); _instance_0_u(A._InvoiceDesignState.prototype, "get$_invoice_design$_onTabChanged", "_invoice_design$_onTabChanged$0", 0); _static_1(A, "invoice_design_vm_InvoiceDesignVM_fromStore$closure", "InvoiceDesignVM_fromStore", 3533); _instance_0_u(_ = A._LocalizationSettingsState.prototype, "get$_localization_settings$_onTabChanged", "_localization_settings$_onTabChanged$0", 0); _instance_0_u(_, "get$_localization_settings$_onChanged", "_localization_settings$_onChanged$0", 0); _static_1(A, "localization_vm_LocalizationSettingsVM_fromStore$closure", "LocalizationSettingsVM_fromStore", 3534); _instance_0_u(A._PaymentSettingsState.prototype, "get$_payment_settings$_onChanged", "_payment_settings$_onChanged$0", 0); _static_1(A, "payment_settings_vm_PaymentSettingsVM_fromStore$closure", "PaymentSettingsVM_fromStore", 3535); _instance_0_u(A._ProductSettingsState.prototype, "get$_product_settings$_onChanged", "_product_settings$_onChanged$0", 0); _static_1(A, "product_settings_vm_ProductSettingsVM_fromStore$closure", "ProductSettingsVM_fromStore", 3536); _static_1(A, "settings_list_vm_SettingsListVM_fromStore$closure", "SettingsListVM_fromStore", 3537); _static_1(A, "settings_screen_vm_SettingsScreenVM_fromStore$closure", "SettingsScreenVM_fromStore", 3538); _instance_0_u(A._SettingsWizardState.prototype, "get$_settings_wizard$_onSavePressed", "_settings_wizard$_onSavePressed$0", 0); _instance_0_u(A._TaskSettingsState.prototype, "get$_task_settings$_onChanged", "_task_settings$_onChanged$0", 0); _static_1(A, "task_settings_vm_TaskSettingsVM_fromStore$closure", "TaskSettingsVM_fromStore", 3539); _static_1(A, "tax_settings_vm_TaxSettingsVM_fromStore$closure", "TaxSettingsVM_fromStore", 3540); _instance_0_u(_ = A._TemplatesAndRemindersState.prototype, "get$_onTextChanged", "_onTextChanged$0", 0); _instance_0_u(_, "get$_templates_and_reminders$_onTabChanged", "_templates_and_reminders$_onTabChanged$0", 0); _instance_0_u(A._ReminderSettingsState.prototype, "get$_onTextChanged", "_onTextChanged$0", 0); _static_1(A, "templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure", "TemplatesAndRemindersVM_fromStore", 3541); _instance_0_u(_ = A._UserDetailsState.prototype, "get$_user_details$_onTabChanged", "_user_details$_onTabChanged$0", 0); _instance_0_u(_, "get$_user_details$_onChanged", "_user_details$_onChanged$0", 0); _instance_1_u(_, "get$_user_details$_onSavePressed", "_user_details$_onSavePressed$1", 30); _static_1(A, "user_details_vm_UserDetailsVM_fromStore$closure", "UserDetailsVM_fromStore", 3542); _instance_0_u(A._WorkflowSettingsState.prototype, "get$_workflow_settings$_onTabChanged", "_workflow_settings$_onTabChanged$0", 0); _static_1(A, "workflow_vm_WorkflowSettingsVM_fromStore$closure", "WorkflowSettingsVM_fromStore", 3543); _instance_0_u(_ = A._SubscriptionEditState.prototype, "get$_subscription_edit$_onTabChanged", "_subscription_edit$_onTabChanged$0", 0); _instance_0_u(_, "get$_subscription_edit$_onChanged", "_subscription_edit$_onChanged$0", 0); _static_1(A, "subscription_list_vm_SubscriptionListVM_fromStore$closure", "SubscriptionListVM_fromStore", 3544); _static_1(A, "subscription_screen_vm_SubscriptionScreenVM_fromStore$closure", "SubscriptionScreenVM_fromStore", 3545); _instance_0_u(A._TaskEditDesktopState.prototype, "get$_task_edit_desktop$_onChanged", "_task_edit_desktop$_onChanged$0", 0); _instance_0_u(A._TaskEditDetailsState.prototype, "get$_task_edit_details$_onChanged", "_task_edit_details$_onChanged$0", 0); _instance_0_u(A._KanbanStatusCardState.prototype, "get$_kanban_status$_onSavePressed", "_kanban_status$_onSavePressed$0", 0); _static_1(A, "kanban_view_vm_KanbanVM_fromStore$closure", "KanbanVM_fromStore", 3546); _static_1(A, "task_list_vm_TaskListVM_fromStore$closure", "TaskListVM_fromStore", 3547); _static_1(A, "task_screen_vm_TaskScreenVM_fromStore$closure", "TaskScreenVM_fromStore", 3548); _instance_0_u(A._TaskViewState.prototype, "get$_task_view$_onTabChanged", "_task_view$_onTabChanged$0", 0); _instance_0_u(A._TaskStatusEditState.prototype, "get$_task_status_edit$_onChanged", "_task_status_edit$_onChanged$0", 0); _static_1(A, "task_status_list_vm_TaskStatusListVM_fromStore$closure", "TaskStatusListVM_fromStore", 3549); _static_1(A, "task_status_screen_vm_TaskStatusScreenVM_fromStore$closure", "TaskStatusScreenVM_fromStore", 3550); _instance_0_u(A._TaxRateEditState.prototype, "get$_tax_rate_edit$_onChanged", "_tax_rate_edit$_onChanged$0", 0); _static_1(A, "tax_rate_list_vm_TaxRateListVM_fromStore$closure", "TaxRateListVM_fromStore", 3551); _static_1(A, "tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure", "TaxRateScreenVM_fromStore", 3552); _instance_0_u(A._TokenEditState.prototype, "get$_token_edit$_onChanged", "_token_edit$_onChanged$0", 0); _static_1(A, "token_list_vm_TokenListVM_fromStore$closure", "TokenListVM_fromStore", 3553); _static_1(A, "token_screen_vm_TokenScreenVM_fromStore$closure", "TokenScreenVM_fromStore", 3554); _instance_0_u(A._UserEditState.prototype, "get$_user_edit$_onChanged", "_user_edit$_onChanged$0", 0); _static_1(A, "user_list_vm_UserListVM_fromStore$closure", "UserListVM_fromStore", 3555); _static_1(A, "user_screen_vm_UserScreenVM_fromStore$closure", "UserScreenVM_fromStore", 3556); _instance_0_u(A.VendorEditAddressState.prototype, "get$_vendor_edit_address$_onChanged", "_vendor_edit_address$_onChanged$0", 0); _instance_0_u(A.VendorContactEditDetailsState.prototype, "get$_vendor_edit_contacts$_onChanged", "_vendor_edit_contacts$_onChanged$0", 0); _instance_0_u(A.VendorEditDetailsState.prototype, "get$_vendor_edit_details$_onChanged", "_vendor_edit_details$_onChanged$0", 0); _instance_0_u(A.VendorEditNotesState.prototype, "get$_vendor_edit_notes$_onChanged", "_vendor_edit_notes$_onChanged$0", 0); _static_1(A, "vendor_list_vm_VendorListVM_fromStore$closure", "VendorListVM_fromStore", 3557); _static_1(A, "vendor_screen_vm_VendorScreenVM_fromStore$closure", "VendorScreenVM_fromStore", 3558); _instance_0_u(A._VendorViewState.prototype, "get$_vendor_view$_onTabChanged", "_vendor_view$_onTabChanged$0", 0); _instance_2_u(A._VendorViewDetailsState.prototype, "get$_launchStatus", "_launchStatus$2", 581); _instance_0_u(A._WebhookEditState.prototype, "get$_webhook_edit$_onChanged", "_webhook_edit$_onChanged$0", 0); _static_1(A, "webhook_list_vm_WebhookListVM_fromStore$closure", "WebhookListVM_fromStore", 3559); _static_1(A, "webhook_screen_vm_WebhookScreenVM_fromStore$closure", "WebhookScreenVM_fromStore", 3560); _instance_0_u(_ = A._ExampleEditorState.prototype, "get$_super_editor$_onChanged", "_super_editor$_onChanged$0", 0); _instance_0_u(_, "get$_hideOrShowToolbar", "_hideOrShowToolbar$0", 0); _instance_0_u(_, "get$_hideEditorToolbar", "_hideEditorToolbar$0", 0); _instance_0_u(_, "get$_cut", "_cut$0", 0); _instance_0_u(_, "get$_copy", "_copy$0", 0); _instance_0_u(_, "get$_super_editor$_paste", "_super_editor$_paste$0", 0); _instance_0_u(_, "get$_selectAll", "_selectAll$0", 0); _instance_1_u(_ = A._EditorToolbarState.prototype, "get$_convertTextToNewType", "_convertTextToNewType$1", 2810); _instance_0_u(_, "get$_toolbar0$_toggleBold", "_toolbar0$_toggleBold$0", 0); _instance_0_u(_, "get$_toolbar0$_toggleItalics", "_toolbar0$_toggleItalics$0", 0); _instance_0_u(_, "get$_toolbar0$_toggleStrikethrough", "_toolbar0$_toggleStrikethrough$0", 0); _instance_0_u(_, "get$_onLinkPressed", "_onLinkPressed$0", 0); _instance_0_u(_ = A._ImageFormatToolbarState.prototype, "get$_makeImageConfined", "_makeImageConfined$0", 0); _instance_0_u(_, "get$_makeImageFullBleed", "_makeImageFullBleed$0", 0); _instance_1_u(A.ListSyntax.prototype, "get$_removeLeadingEmptyLine", "_removeLeadingEmptyLine$1", 2823); _instance_1_u(A._FadeWidgetState.prototype, "get$animationStatusChange", "animationStatusChange$1", 42); _instance_1_i(_ = A.ImageHandler.prototype, "get$build", "build$1", 78); _instance(_, "get$_imageBuilder", 0, 4, null, ["call$4"], ["_imageBuilder$4"], 493, 0, 0); _instance(_, "get$_placeholderBuilder", 0, 4, null, ["call$4"], ["_placeholderBuilder$4"], 493, 0, 0); _instance(_, "get$_preLoadingBuilder", 0, 4, null, ["call$4"], ["_preLoadingBuilder$4"], 493, 0, 0); _instance(_, "get$_loadingBuilder", 0, 3, null, ["call$3"], ["_loadingBuilder$3"], 2832, 0, 0); _instance(_, "get$_errorBuilder", 0, 3, null, ["call$3"], ["_errorBuilder$3"], 609, 0, 0); _static_0(A, "path_provider__getApplicationDocumentsDirectory$closure", "getApplicationDocumentsDirectory", 3561); _static_1(A, "method_channel_MethodChannelPrinting__handleMethod$closure", "MethodChannelPrinting__handleMethod", 305); _instance(A.PdfPrintAction.prototype, "get$_print", 0, 3, null, ["call$3"], ["_print$3"], 726, 0, 0); _instance(A.PdfShareAction.prototype, "get$_share", 0, 3, null, ["call$3"], ["_share$3"], 726, 0, 0); _instance_0_u(A._PdfPreviewState.prototype, "get$computeActualPageFormat", "computeActualPageFormat$0", 2844); _instance_2_u(A.TypedReducer.prototype, "get$$call", "call$2", "1(Object?,@)"); _instance(A.TypedMiddleware.prototype, "get$$call", 0, 3, null, ["call$3"], ["call$3"], 2847, 0, 0); _instance_0_u(_ = A.RoundedLoadingButtonState.prototype, "get$_btnPressed", "_btnPressed$0", 0); _instance_0_i(_, "get$_rounded_loading_button$_start", "_rounded_loading_button$_start$0", 0); _instance_0_u(_, "get$_rounded_loading_button$_reset", "_rounded_loading_button$_reset$0", 0); _instance_1_i(A.Subject.prototype, "get$add", "add$1", 35); _instance_1_u(_ = A._StartWithStreamSink.prototype, "get$onData", "onData$1", 35); _instance_2_i(_, "get$onError", "onError$2", 129); _instance_0_u(_, "get$onDone", "onDone$0", 0); _instance_1_u(_ = A._StartWithErrorStreamSink.prototype, "get$onData", "onData$1", 35); _instance_2_i(_, "get$onError", "onError$2", 129); _instance_0_u(_, "get$onDone", "onDone$0", 0); _static(A, "sentry_options__noOpLogger$closure", 2, function() { return {exception: null, logger: null, stackTrace: null}; }, ["call$5$exception$logger$stackTrace", "call$2", "call$4$exception$stackTrace", "call$3$stackTrace"], ["noOpLogger", function(level, message) { return A.noOpLogger(level, message, null, null, null); }, function(level, message, exception, stackTrace) { return A.noOpLogger(level, message, exception, null, stackTrace); }, function(level, message, stackTrace) { return A.noOpLogger(level, message, null, null, stackTrace); }], 3562, 0); _instance_1_u(A.SentryFlutterWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 305); _instance(A.SourceSpanMixin.prototype, "get$message", 1, 1, null, ["call$2$color", "call$1"], ["message$2$color", "message$1"], 2863, 0, 0); _instance_0_i(_ = A.InjectedImp.prototype, "get$initialize", "initialize$0", 0); _instance_0_u(_, "get$notify", "notify$0", 0); _instance_0_i(A.DocumentComposer.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(A.MutableDocument.prototype, "get$_forwardNodeChange", "_forwardNodeChange$0", 0); _instance_0_u(_ = A._DocumentMouseInteractorState.prototype, "get$_document_gestures_mouse$_onSelectionChange", "_document_gestures_mouse$_onSelectionChange$0", 0); _instance_1_u(_, "get$_document_gestures_mouse$_onTapUp", "_document_gestures_mouse$_onTapUp$1", 95); _instance_1_u(_, "get$_document_gestures_mouse$_onDoubleTapDown", "_document_gestures_mouse$_onDoubleTapDown$1", 84); _instance_0_u(_, "get$_onDoubleTap", "_onDoubleTap$0", 0); _instance_1_u(_, "get$_document_gestures_mouse$_onTripleTapDown", "_document_gestures_mouse$_onTripleTapDown$1", 84); _instance_0_u(_, "get$_onTripleTap", "_onTripleTap$0", 0); _instance_1_u(_, "get$_document_gestures_mouse$_onPanStart", "_document_gestures_mouse$_onPanStart$1", 85); _instance_1_u(_, "get$_document_gestures_mouse$_onPanUpdate", "_document_gestures_mouse$_onPanUpdate$1", 70); _instance_1_u(_, "get$_document_gestures_mouse$_onPanEnd", "_document_gestures_mouse$_onPanEnd$1", 114); _instance_0_u(_, "get$_document_gestures_mouse$_onPanCancel", "_document_gestures_mouse$_onPanCancel$0", 0); _instance_1_u(_, "get$_onMouseMove", "_onMouseMove$1", 98); _instance_0_u(_, "get$_document_gestures_mouse$_updateDragSelection", "_document_gestures_mouse$_updateDragSelection$0", 0); _instance_1_u(_, "get$_onPointerSignal", "_onPointerSignal$1", 371); _instance_1_u(_, "get$_document_gestures_mouse$_onTick", "_document_gestures_mouse$_onTick$1", 83); _instance_0_u(_ = A._AndroidDocumentTouchInteractorState.prototype, "get$_document_gestures_touch_android$_onFocusChange", "_document_gestures_touch_android$_onFocusChange$0", 0); _instance_0_u(_, "get$_document_gestures_touch_android$_onDocumentChange", "_document_gestures_touch_android$_onDocumentChange$0", 0); _instance_0_u(_, "get$_document_gestures_touch_android$_onSelectionChange", "_document_gestures_touch_android$_onSelectionChange$0", 0); _instance_0_u(_, "get$_document_gestures_touch_android$_onScrollChange", "_document_gestures_touch_android$_onScrollChange$0", 0); _instance_1_u(_, "get$_document_gestures_touch_android$_onTapUp", "_document_gestures_touch_android$_onTapUp$1", 95); _instance_1_u(_, "get$_onDoubleTapDown", "_onDoubleTapDown$1", 84); _instance_1_u(_, "get$_onTripleTapDown", "_onTripleTapDown$1", 84); _instance_2_u(_, "get$_onHandleDragStart", "_onHandleDragStart$2", 2881); _instance_1_u(_, "get$_onHandleDragUpdate", "_onHandleDragUpdate$1", 655); _instance_0_u(_, "get$_document_gestures_touch_android$_onHandleDragEnd", "_document_gestures_touch_android$_onHandleDragEnd$0", 0); _instance_0_u(_, "get$_document_gestures_touch_android$_updateDragSelection", "_document_gestures_touch_android$_updateDragSelection$0", 0); _instance_0_u(_ = A._AndroidDocumentTouchEditingControlsState.prototype, "get$_document_gestures_touch_android$_onEditingControllerChange", "_document_gestures_touch_android$_onEditingControllerChange$0", 0); _instance_1_u(_, "get$_onCollapsedPanStart", "_onCollapsedPanStart$1", 85); _instance_1_u(_, "get$_onUpstreamHandlePanStart", "_onUpstreamHandlePanStart$1", 85); _instance_1_u(_, "get$_onDownstreamHandlePanStart", "_onDownstreamHandlePanStart$1", 85); _instance_1_u(_, "get$_document_gestures_touch_android$_onPanUpdate", "_document_gestures_touch_android$_onPanUpdate$1", 70); _instance_1_u(_, "get$_document_gestures_touch_android$_onPanEnd", "_document_gestures_touch_android$_onPanEnd$1", 114); _instance_0_u(_, "get$_document_gestures_touch_android$_onPanCancel", "_document_gestures_touch_android$_onPanCancel$0", 0); _instance_0_i(_ = A.AndroidDocumentGestureEditingController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$_hideCollapsedHandle", "_hideCollapsedHandle$0", 0); _instance_0_u(_ = A._IOSDocumentTouchInteractorState.prototype, "get$_document_gestures_touch_ios$_onFocusChange", "_document_gestures_touch_ios$_onFocusChange$0", 0); _instance_0_u(_, "get$_onDocumentChange", "_onDocumentChange$0", 0); _instance_0_u(_, "get$_onSelectionChange", "_onSelectionChange$0", 0); _instance_0_u(_, "get$_onScrollChange", "_onScrollChange$0", 0); _instance_1_u(_, "get$_onTapUp", "_onTapUp$1", 95); _instance_1_u(_, "get$_onDoubleTapUp", "_onDoubleTapUp$1", 95); _instance_1_u(_, "get$_onTripleTapUp", "_onTripleTapUp$1", 95); _instance_1_u(_, "get$_onPanStart", "_onPanStart$1", 85); _instance_1_u(_, "get$_onPanUpdate", "_onPanUpdate$1", 70); _instance_1_u(_, "get$_onPanEnd", "_onPanEnd$1", 114); _instance_0_u(_, "get$_onPanCancel", "_onPanCancel$0", 0); _instance_0_u(_, "get$_onTapTimeout", "_onTapTimeout$0", 0); _instance_0_u(_, "get$_updateDragSelection", "_updateDragSelection$0", 0); _instance_0_u(_, "get$_onFloatingCursorStart", "_onFloatingCursorStart$0", 0); _instance_1_u(_, "get$_moveSelectionToFloatingCursor", "_moveSelectionToFloatingCursor$1", 655); _instance_0_u(_, "get$_onFloatingCursorStop", "_onFloatingCursorStop$0", 0); _instance_0_u(_ = A._IosDocumentTouchEditingControlsState.prototype, "get$_onEditingControllerChange", "_onEditingControllerChange$0", 0); _instance_0_u(_, "get$_onFloatingCursorChange", "_onFloatingCursorChange$0", 0); _instance_0_u(_ = A._DocumentImeInteractorState.prototype, "get$_onFocusChange", "_onFocusChange$0", 0); _instance_0_u(_, "get$_onComposerChange", "_onComposerChange$0", 0); _instance_0_u(_, "get$_onClientWantsDifferentImeConfiguration", "_onClientWantsDifferentImeConfiguration$0", 0); _instance_2_u(_, "get$_onKeyPressed", "_onKeyPressed$2", 346); _instance_0_u(_ = A.KeyboardEditingToolbar.prototype, "get$_toggleBold", "_toggleBold$0", 0); _instance_0_u(_, "get$_toggleItalics", "_toggleItalics$0", 0); _instance_0_u(_, "get$_toggleUnderline", "_toggleUnderline$0", 0); _instance_0_u(_, "get$_toggleStrikethrough", "_toggleStrikethrough$0", 0); _instance_0_u(_, "get$_convertToHeader1", "_convertToHeader1$0", 0); _instance_0_u(_, "get$_convertToHeader2", "_convertToHeader2$0", 0); _instance_0_u(_, "get$_convertToParagraph", "_convertToParagraph$0", 0); _instance_0_u(_, "get$_convertToOrderedListItem", "_convertToOrderedListItem$0", 0); _instance_0_u(_, "get$_convertToUnorderedListItem", "_convertToUnorderedListItem$0", 0); _instance_0_u(_, "get$_convertToBlockquote", "_convertToBlockquote$0", 0); _instance_0_u(_, "get$_convertToHr", "_convertToHr$0", 0); _instance_0_u(_, "get$_closeKeyboard", "_closeKeyboard$0", 0); _instance_2_u(A.DocumentKeyboardInteractor.prototype, "get$_document_input_keyboard$_onKeyPressed", "_document_input_keyboard$_onKeyPressed$2", 346); _instance_0_u(_ = A._SingleColumnDocumentLayoutState.prototype, "get$_onPresenterMarkedDirty", "_onPresenterMarkedDirty$0", 100); _instance(_, "get$_onViewModelChange", 0, 0, null, ["call$3$addedComponents$changedComponents$removedComponents", "call$0"], ["_onViewModelChange$3$addedComponents$changedComponents$removedComponents", "_onViewModelChange$0"], 592, 0, 0); _instance(A._PresenterComponentBuilderState.prototype, "get$_onViewModelChange", 0, 0, null, ["call$3$addedComponents$changedComponents$removedComponents", "call$0"], ["_onViewModelChange$3$addedComponents$changedComponents$removedComponents", "_onViewModelChange$0"], 592, 0, 0); _static_1(A, "_presenter__noStyleBuilder$closure", "noStyleBuilder", 245); _instance_0_u(A.SingleColumnLayoutPresenter.prototype, "get$__presenter$_onDocumentChange", "__presenter$_onDocumentChange$0", 0); _instance_0_u(A.SingleColumnLayoutStylePhase.prototype, "get$markDirty", "markDirty$0", 0); _static_2(A, "list_items___defaultUnorderedListItemDotBuilder$closure", "_defaultUnorderedListItemDotBuilder", 3563); _static_2(A, "list_items___defaultIndentCalculator$closure", "_defaultIndentCalculator", 3564); _static_2(A, "list_items___defaultOrderedListItemNumeralBuilder$closure", "_defaultOrderedListItemNumeralBuilder", 3565); _static(A, "list_items__tabToIndentListItem$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["tabToIndentListItem", function() { return A.tabToIndentListItem(null, null); }], 63, 0); _static(A, "list_items__shiftTabToUnIndentListItem$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["shiftTabToUnIndentListItem", function() { return A.shiftTabToUnIndentListItem(null, null); }], 63, 0); _static(A, "list_items__backspaceToUnIndentListItem$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["backspaceToUnIndentListItem", function() { return A.backspaceToUnIndentListItem(null, null); }], 63, 0); _static(A, "paragraph0__anyCharacterToInsertInParagraph$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["anyCharacterToInsertInParagraph", function() { return A.anyCharacterToInsertInParagraph(null, null); }], 63, 0); _static(A, "paragraph0__backspaceToClearParagraphBlockType$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["backspaceToClearParagraphBlockType", function() { return A.backspaceToClearParagraphBlockType(null, null); }], 63, 0); _static(A, "paragraph0__enterToInsertBlockNewline$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["enterToInsertBlockNewline", function() { return A.enterToInsertBlockNewline(null, null); }], 63, 0); _static_2(A, "super_editor0__defaultInlineTextStyler$closure", "defaultInlineTextStyler", 3567); _instance_0_u(_ = A._SuperEditorState.prototype, "get$_super_editor0$_onFocusChange", "_super_editor0$_onFocusChange$0", 0); _instance_0_u(_, "get$_updateComposerPreferencesAtSelection", "_updateComposerPreferencesAtSelection$0", 0); _static(A, "text__anyCharacterToInsertInTextContent$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["anyCharacterToInsertInTextContent", function() { return A.anyCharacterToInsertInTextContent(null, null); }], 63, 0); _static(A, "text__deleteToRemoveDownstreamContent$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["deleteToRemoveDownstreamContent", function() { return A.deleteToRemoveDownstreamContent(null, null); }], 63, 0); _static(A, "text__shiftEnterToInsertNewlineInBlock$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["shiftEnterToInsertNewlineInBlock", function() { return A.shiftEnterToInsertNewlineInBlock(null, null); }], 63, 0); _instance_0_i(A.TextNode.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A._TextComponentState.prototype, "get$_textStyleWithBlockType", "_textStyleWithBlockType$1", 245); _instance_0_u(A._MultiListenableBuilderState.prototype, "get$_onListenableChange", "_onListenableChange$0", 0); _instance_1_u(A.AutoScroller.prototype, "get$__scrolling$_onTick", "__scrolling$_onTick$1", 83); _instance_1_u(_ = A.TapSequenceGestureRecognizer.prototype, "get$_multi_tap_gesture$_handleEvent", "_multi_tap_gesture$_handleEvent$1", 98); _instance_1_u(_, "get$_multi_tap_gesture$_reject", "_multi_tap_gesture$_reject$1", 2902); _instance_0_u(_, "get$_multi_tap_gesture$_onTapTimeout", "_multi_tap_gesture$_onTapTimeout$0", 0); _instance_0_u(A._CountdownZoned0.prototype, "get$_multi_tap_gesture$_onTimeout", "_multi_tap_gesture$_onTimeout$0", 0); _static_2(A, "magnifier___roundedRectangleMagnifierBuilder$closure", "_roundedRectangleMagnifierBuilder", 3568); _instance_0_i(_ = A.BlinkController.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_blink_controller$_onTick", "_blink_controller$_onTick$1", 22); _instance_0_u(A.SuperTextState.prototype, "get$_invalidateParagraph", "_invalidateParagraph$0", 0); _instance_2_u(_ = A._RebuildOptimizedSuperTextWithSelectionState.prototype, "get$_buildLayerBeneath", "_buildLayerBeneath$2", 554); _instance_2_u(_, "get$_buildLayerAbove", "_buildLayerAbove$2", 554); _instance_1_u(_ = A._RenderValueLayoutBuilder.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 8); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 8); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 8); _static_1(A, "link_LinkViewController__viewFactory$closure", "LinkViewController__viewFactory", 757); _static_0(A, "clock__systemTime$closure", "systemTime", 319); _static(A, "_isolates_web__compute$closure", 2, null, ["call$2$3$debugLabel", "call$2", "call$2$2"], ["compute", function(callback, message) { return A.compute(callback, message, null, type$.dynamic, type$.dynamic); }, function(callback, message, $Q, $R) { return A.compute(callback, message, null, $Q, $R); }], 3569, 0); _static(A, "print__debugPrintThrottled$closure", 1, null, ["call$2$wrapWidth", "call$1"], ["debugPrintThrottled", function(message) { return A.debugPrintThrottled(message, null); }], 3570, 0); _static_0(A, "print___debugPrintTask$closure", "_debugPrintTask", 0); _static_2(A, "layout_helper_ChildLayoutHelper_dryLayoutChild$closure", "ChildLayoutHelper_dryLayoutChild", 784); _static_2(A, "layout_helper_ChildLayoutHelper_layoutChild$closure", "ChildLayoutHelper_layoutChild", 784); _static_1(A, "utils__getUserDataFromMap$closure", "getUserDataFromMap", 3572); _static_2(A, "loading_reducer___setLoading$closure", "_setLoading", 3573); _static_2(A, "loading_reducer___setLoaded$closure", "_setLoaded", 3574); _static_2(A, "loading_reducer___setSaving$closure", "_setSaving", 3575); _static_2(A, "loading_reducer___setSaved$closure", "_setSaved", 3576); _static_1(A, "serialization0_SerializationUtils_computeDecode$closure", "SerializationUtils_computeDecode", 12); _static_0(A, "utils4__getUtcDateTime$closure", "getUtcDateTime", 319); _static(A, "document_keyboard_actions__doNothingWhenThereIsNoSelection$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["doNothingWhenThereIsNoSelection", function() { return A.doNothingWhenThereIsNoSelection(null, null); }], 63, 0); _static(A, "document_keyboard_actions__pasteWhenCmdVIsPressed$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["pasteWhenCmdVIsPressed", function() { return A.pasteWhenCmdVIsPressed(null, null); }], 63, 0); _static(A, "document_keyboard_actions__selectAllWhenCmdAIsPressed$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["selectAllWhenCmdAIsPressed", function() { return A.selectAllWhenCmdAIsPressed(null, null); }], 63, 0); _static(A, "document_keyboard_actions__copyWhenCmdCIsPressed$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["copyWhenCmdCIsPressed", function() { return A.copyWhenCmdCIsPressed(null, null); }], 63, 0); _static(A, "document_keyboard_actions__cutWhenCmdXIsPressed$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["cutWhenCmdXIsPressed", function() { return A.cutWhenCmdXIsPressed(null, null); }], 63, 0); _static(A, "document_keyboard_actions__cmdBToToggleBold$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["cmdBToToggleBold", function() { return A.cmdBToToggleBold(null, null); }], 63, 0); _static(A, "document_keyboard_actions__cmdIToToggleItalics$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["cmdIToToggleItalics", function() { return A.cmdIToToggleItalics(null, null); }], 63, 0); _static(A, "document_keyboard_actions__anyCharacterOrDestructiveKeyToDeleteSelection$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["anyCharacterOrDestructiveKeyToDeleteSelection", function() { return A.anyCharacterOrDestructiveKeyToDeleteSelection(null, null); }], 63, 0); _static(A, "document_keyboard_actions__backspaceToRemoveUpstreamContent$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["backspaceToRemoveUpstreamContent", function() { return A.backspaceToRemoveUpstreamContent(null, null); }], 63, 0); _static(A, "document_keyboard_actions__moveUpDownLeftAndRightWithArrowKeys$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["moveUpDownLeftAndRightWithArrowKeys", function() { return A.moveUpDownLeftAndRightWithArrowKeys(null, null); }], 63, 0); _static(A, "document_keyboard_actions__moveToLineStartOrEndWithCtrlAOrE$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["moveToLineStartOrEndWithCtrlAOrE", function() { return A.moveToLineStartOrEndWithCtrlAOrE(null, null); }], 63, 0); _static(A, "document_keyboard_actions__deleteLineWithCmdBksp$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["deleteLineWithCmdBksp", function() { return A.deleteLineWithCmdBksp(null, null); }], 63, 0); _static(A, "document_keyboard_actions__deleteWordWithAltBksp$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["deleteWordWithAltBksp", function() { return A.deleteWordWithAltBksp(null, null); }], 63, 0); _static(A, "document_keyboard_actions__collapseSelectionWhenEscIsPressed$closure", 0, null, ["call$2$editContext$keyEvent", "call$0"], ["collapseSelectionWhenEscIsPressed", function() { return A.collapseSelectionWhenEscIsPressed(null, null); }], 63, 0); _static(A, "uuid_util_UuidUtil_mathRNG$closure", 0, function() { return {seed: -1}; }, ["call$1$seed", "call$0"], ["UuidUtil_mathRNG", function() { return A.UuidUtil_mathRNG(-1); }], 2384, 0); })(); (function inheritance() { var _mixin = hunkHelpers.mixin, _mixinHard = hunkHelpers.mixinHard, _inherit = hunkHelpers.inherit, _inheritMany = hunkHelpers.inheritMany; _inherit(A.Object, null); _inheritMany(A.Object, [A.AlarmClock, A.AppBootstrap, A.Closure, A.AssetManager, A.AssetManagerException, A._Enum, A._SaveStackTracking, A.ContextStateHandle, A.CkCanvas, A.CkPictureSnapshot, A.CkPaintCommand, J.Interceptor, A.ProductionCollector, A.SkiaObjectCollectionError, A.CanvasKitCanvas, A.SkiaObject, A.CkColorFilter, A.HtmlViewEmbedder, A.ViewClipChain, A.EmbeddedViewParams, A.Mutator, A.Iterable, A.ViewListDiffResult, A.FontFallbackData, A.NotoFont, A.CodeunitRange, A._ResolvedNotoFont, A._ResolvedNotoSubset, A.FallbackFontDownloadQueue, A.NotoDownloader, A.SkiaFontCollection, A.RegisteredFont, A.ImageCodecException, A.CkImage, A.AnimatedImageFrameInfo, A.CkBrowserImageDecoder, A.ImageFileFormat, A.IntervalTree, A.IntervalTreeNode, A.Layer, A.PrerollContext, A.PaintContext, A.LayerScene, A.LayerSceneBuilder, A.LayerTree, A.Frame, A.CompositorContext, A.CkNWayCanvas, A.CkPictureRecorder, A.Rasterizer, A.SkiaObjectCache, A.SynchronousSkiaObjectCache, A.SurfaceFrame, A.Surface, A.CkSurface, A.SurfaceFactory, A.CkParagraphStyle, A.CkTextStyle, A.CkStrutStyle, A.CkLineMetrics, A.CkParagraphBuilder, A._CkParagraphPlaceholder, A._ParagraphCommand, A.Error, A.ClipboardMessageHandler, A.ClipboardAPICopyStrategy, A.ClipboardAPIPasteStrategy, A.ExecCommandCopyStrategy, A.ExecCommandPasteStrategy, A.FlutterConfiguration, A.FlutterViewEmbedder, A.EngineCanvas, A.SaveStackEntry, A.SaveClipEntry, A._SaveElementStackEntry, A.SaveElementStackTracking, A.FrameReference, A.CrossFrameCache, A._CrossFrameCacheItem, A.ShadowDomHostNode, A.ElementHostNode, A.PersistedSurface, A.SvgBlendMode, A.SurfaceCanvas, A._DomClip, A.SvgFilterBuilder, A.SvgFilter, A.SurfacePaint, A.SurfacePaintData, A.Conic, A.QuadBounds, A.ConicBounds, A._ConicPair, A.CubicBounds, A.SurfacePath, A.PathIterator, A.PathRef, A.PathRefIterator, A.QuadRoots, A.SkQuadCoefficients, A.PathWinding, A.PaintRequest, A.RecordingCanvas, A.PaintCommand, A._PaintBounds, A.RenderStrategy, A._WebGlRenderer, A.SurfaceScene, A.SurfaceSceneBuilder, A.NormalizedGradient, A.EngineGradient, A.EngineImageFilter, A.ShaderBuilder, A.ShaderMethod, A.ShaderDeclaration, A._PersistedSurfaceMatch, A.PrerollSurfaceContext, A.HtmlCodec, A.SingleFrameInfo, A.HtmlImage, A.Keyboard, A.KeyboardBinding, A.FlutterHtmlKeyboardEvent, A.KeyboardConverter, A.MouseCursor, A.BrowserHistory, A.UrlStrategy, A.PlatformLocation, A.EnginePictureRecorder, A.EnginePicture, A.PlatformDispatcher, A.PlatformViewManager, A.PlatformViewMessageHandler, A.PointerBinding, A.PointerSupportDetector, A._BaseAdapter, A._WheelEventListenerMixin, A._SanitizedDetails, A._ButtonSanitizer, A._PointerState, A.PointerDataConverter, A.Profiler, A.GlProgram, A.GlContext, A.OffScreenCanvas, A.AccessibilityAnnouncements, A.RoleManager, A.SemanticsUpdate, A.SemanticsNodeUpdate, A.SemanticsObject, A.EngineSemanticsOwner, A.SemanticsHelper, A.SemanticsEnabler, A.DefaultTextEditingStrategy, A._ListBase_Object_ListMixin, A.MethodCall, A.JSONMessageCodec, A.JSONMethodCodec, A.StandardMessageCodec, A.StandardMethodCodec, A.WriteBuffer0, A.ReadBuffer0, A.SurfaceShadowData, A.CanvasParagraph, A.FlatTextSpan, A.ParagraphPlaceholder, A.StyleNode, A.CanvasParagraphBuilder, A.FontCollection, A.FontManager, A.TextLayoutService, A.RangeBox, A.LineSegment, A.LineBuilder, A.Spanometer, A.LineBreakResult, A.RulerHost, A.TextPaintService, A.EngineLineMetrics, A.EngineParagraphStyle, A.EngineTextStyle, A.EngineStrutStyle, A.TextHeightStyle, A.TextDimensions, A.TextHeightRuler, A.DirectionalPosition, A.UnicodeRange, A.UnicodePropertyLookup, A._FindBreakDirection, A.BrowserAutofillHints, A.EngineInputType, A.TextCapitalizationConfig, A.EngineAutofillForm, A.AutofillInfo, A.TextEditingDeltaState, A.EditingState, A.InputConfiguration, A.TextInputCommand, A.TextEditingChannel, A.HybridTextEditing, A.EditableTextStyle, A.EditableTextGeometry, A.Matrix40, A.Vector30, A.FlutterView, A.WindowPadding, A.JS_CONST, A.HttpException, A._HeaderValue, J.ArrayIterator, A._CopyingBytesBuilder, A._BytesBuilder, A.CastIterator, A.MapMixin, A.SentinelValue, A.ListIterator, A.Iterator, A.ExpandIterator, A.EmptyIterator, A.FollowedByIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.Symbol, A.MapView, A.ConstantMap, A.JSInvocationMirror, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A._Required, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A._InitializedCell, A.Rti, A._FunctionParameters, A._Type, A._TimerImpl, A._AsyncAwaitCompleter, A._AsyncStarStreamController, A._IterationMarker, A._SyncStarIterator, A.AsyncError, A.Stream, A._BufferingStreamSubscription, A._BroadcastStreamController, A.TimeoutException, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.StreamSubscription, A.StreamTransformerBase, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._DoneStreamSubscription, A._StreamIterator, A._EventSinkWrapper, A._HandlerEventSink, A._ZoneFunction, A._Zone, A._HashMapKeyIterator, A.__SetBase_Object_SetMixin, A._HashSetIterator, A._LinkedHashSetCell, A._LinkedHashSetIterator, A.IterableMixin, A._LinkedListIterator, A.LinkedListEntry, A.ListMixin, A._MapBaseValueIterator, A._UnmodifiableMapMixin, A._DoubleLinkedQueueEntry, A._DoubleLinkedQueueIterator, A._ListQueueIterator, A.SetMixin, A._SetBase_Object_SetMixin, A._UnmodifiableSetMixin, A._SplayTreeNode, A._SplayTree, A._SplayTreeIterator, A.Codec0, A._Base64Encoder, A._Base64Decoder, A.ChunkedConversionSink, A.HtmlEscapeMode, A._JsonStringifier, A._JsonPrettyPrintMixin, A._Utf8Encoder, A._Utf8Decoder, A._BigIntImpl, A.Comparable, A.DateTime, A.Duration, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.IntegerDivisionByZeroException, A.BidirectionalIterator, A.MapEntry, A.Null, A._StringStackTrace, A.Stopwatch, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.Expando, A._FakeUserTag, A.ServiceExtensionResponse, A.TimelineTask, A.CssStyleDeclarationBase, A.EventStreamProvider, A._Html5NodeValidator, A.ImmutableListMixin, A.NodeValidatorBuilder, A._SimpleNodeValidator, A._SvgNodeValidator, A.FixedSizeListIterator, A.Console, A._DOMWindowCrossFrame, A._SameOriginUriPolicy, A._ValidatingTreeSanitizer, A._StructuredClone, A._AcceptStructuredClone, A.OSError, A.FileSystemEntity, A.FileMode, A.FileSystemException, A.FileSystemEntityType, A.JsObject, A.NullRejectionException, A._JSRandom, A._Random, A.Point, A._RectangleBase, A.Endian, A._ChannelCallbackRecord, A._StoredMessage, A._Channel, A.ChannelBuffers, A.OffsetBase, A.Rect, A.Radius, A.RRect, A._HashEnd, A.PlatformViewRegistry, A.KeyData, A.Color, A.MaskFilter, A.ImageFilter, A.Shadow, A.PlatformConfiguration, A.ViewConfiguration0, A.FrameTiming, A.Locale, A.PointerData, A.PointerDataPacket, A.SemanticsAction, A.SemanticsFlag, A.SemanticsUpdateBuilder, A.FontWeight, A.FontFeature, A.TextDecoration, A.TextHeightBehavior, A.TextBox, A.TextPosition, A.TextRange, A.ParagraphConstraints, A.AccessibilityFeatures, A.CallbackHandle, A.GestureSettings, A.GZipEncoder, A.InputStreamBase, A.OutputStreamBase, A.Deflate, A._DeflaterConfig, A._HuffmanTree, A._StaticTree, A.HuffmanTable, A.Inflate, A.AttributedSpans, A.SpanMarker, A.AttributionSpan, A.MultiAttributionSpan, A.IncompatibleOverlappingAttributionsException, A.AttributedText, A.NamedAttribution, A.SpanRange, A._DiagnosticableTree_Object_Diagnosticable, A._State_Object_Diagnosticable, A.BoardViewController, A.CopyOnWriteList, A.CopyOnWriteSet, A.BuiltList, A.ListBuilder, A.BuiltListMultimap, A.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, A.BuiltSet, A.SetBuilder, A.BuiltSetMultimap, A.SetMultimapBuilder, A.EnumClass, A.IndentingBuiltValueToStringHelper, A.JsonObject, A.FullType, A.BigIntSerializer, A.BoolSerializer, A.BuiltJsonSerializers, A.BuiltJsonSerializersBuilder, A.BuiltListMultimapSerializer, A.BuiltListSerializer, A.BuiltMapSerializer, A.BuiltSetMultimapSerializer, A.BuiltSetSerializer, A.DateTimeSerializer, A.DoubleSerializer, A.DurationSerializer, A.Int64Serializer, A.IntSerializer, A.JsonObjectSerializer, A.NullSerializer, A.NumSerializer, A.RegExpSerializer, A.StringSerializer, A.UriSerializer, A.StandardJsonPlugin, A.ImageProvider, A._ImageStreamCompleter_Object_Diagnosticable, A.StringCharacterRange, A.Breaks, A.BackBreaks, A.BaseChart0, A.BaseSeriesRenderer, A.BaseBarRendererElement, A.BaseAnimatedBar, A.LayoutViewConfig, A.ConstCornerStrategy, A.ImmutableAxis, A.Tick, A.CollisionReport, A.BaseRenderSpec, A.BaseTickDrawStrategy, A.NoneDrawStrategy, A.LinearScale, A.LinearScaleDomainInfo, A.LinearScaleFunction, A.LinearScaleViewportSettings, A.NumericExtents, A.BaseTickProvider, A._TickStepInfo, A.OrdinalScaleDomainInfo, A.Scale, A.ScaleOutputExtent, A.RangeBandConfig, A.StepSizeConfig, A.Extents, A.SimpleOrdinalScale, A.AxisSpec, A.TextStyleSpec, A.LineStyleSpec, A.SimpleTickFormatterBase, A.AutoAdjustingDateTimeTickProvider, A.BaseTimeStepper, A._TimeStepIteratorImpl, A.DateTimeTickFormatter, A.TimeTickFormatterImpl, A.LifecycleListener, A.DomainHighlighter0, A.Legend, A.LegendState, A.LegendEntryBase, A.PerSeriesLegendEntryGenerator, A.LinePointHighlighter0, A.LayoutView, A.NullablePoint, A._PointRendererElement, A._AnimatedPoint, A.SelectNearest0, A.CanvasRect, A.CanvasBarStack, A.DatumDetails, A.ImmutableSeries, A.SelectionModel, A.SeriesDatum, A.TypedRegistry, A.IdentityConverter, A.LayoutConfig, A.MarginSpec, A.LayoutManagerImpl, A._MeasuredSizes, A.SizeList, A._DesiredViewSizes, A.VerticalMarginStrategy, A.HorizontalMarginStrategy, A.ViewMargin, A.ViewMeasuredSizes, A._LineRendererElement, A._AnimatedLine, A._AreaRendererElement, A._AnimatedArea, A._AnimatedElements, A._Range, A.Color0, A.LocalDateTimeFactory, A.GestureListener, A.Palette, A.ProxyGestureListener, A.MaterialStyle, A.StyleFactory, A.BaseSymbolRenderer, A.TextMeasurement, A.TypedKey, A.Series, A.ChartBehavior, A.BaseLegendContentBuilder, A.SimpleLegendEntryLayout, A.TabularLegendLayout, A.ChartCanvas, A.AbstractNode, A.Listenable, A.ChartGestureDetector, A.GraphicsFactory, A.LineStyle, A.SelectionModelConfig, A.SymbolRendererCanvas, A.TextElement0, A.TextStyle0, A.MultiChildLayoutDelegate, A.Clock, A.CanonicalizedMap, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._UnorderedEquality, A._MapEntry, A.MapEquality, A.DeepCollectionEquality, A.HeapPriorityQueue, A.XFileBase, A._Parser, A.Token, A.TokenizerBase, A.Message, A.Messages, A.PreprocessorOptions, A.TreeNode, A.Visitor, A.Clock0, A.MemoryFileSystemEntity, A._FileSink, A.MemoryFileStat, A.FileSystem0, A.Node2, A.FileSystemOp, A.FileSystemStyle, A.DirectoryAddOnsMixin, A._LinuxCodes, A.PlatformInterface, A.FilePickerResult, A.KDialogHandler, A.QarmaAndZenityHandler, A.PlatformFile, A.Int64, A.Simulation, A.AnimationWithParentMixin, A.ParametricCurve, A.AnimationLazyListenerMixin, A.AnimationEagerListenerMixin, A.AnimationLocalListenersMixin, A.AnimationLocalStatusListenersMixin, A.Animatable, A.TweenSequenceItem, A._Interval, A.TextSelectionControls, A._IconThemeData_Object_Diagnosticable, A.LocalizationsDelegate, A.DefaultCupertinoLocalizations, A._CupertinoBackGestureController, A._Decoration_Object_Diagnosticable, A.BoxPainter, A._CupertinoTextThemeData_Object_Diagnosticable, A._TextThemeDefaultsBuilder, A.NoDefaultCupertinoThemeData, A._CupertinoThemeDefaults, A._CupertinoTextThemeDefaults, A.CupertinoThumbPainter, A.DiagnosticsNode, A._FlutterErrorDetails_Object_Diagnosticable, A.BindingBase, A.DebugReassembleConfig, A.ChangeNotifier, A.TextTreeConfiguration, A._PrefixedStringBuilder, A._NoDefaultValue, A.TextTreeRenderer, A.DiagnosticPropertiesBuilder, A.Diagnosticable, A.DiagnosticableTreeMixin, A.Key, A._TypeLiteral, A.LicenseParagraph, A.LicenseEntry, A.WriteBuffer, A.ReadBuffer, A.StackFrame, A.SynchronousFuture, A.GestureArenaMember, A.GestureArenaEntry, A._GestureArena, A.GestureArenaManager, A._Resampler, A.GestureBinding, A.Drag, A.DragDownDetails, A.DragStartDetails, A.DragUpdateDetails, A.DragEndDetails, A._PointerEvent_Object_Diagnosticable, A._PointerEventDescription, A._AbstractPointerEvent, A._CopyPointerAddedEvent, A._CopyPointerRemovedEvent, A._CopyPointerHoverEvent, A._CopyPointerEnterEvent, A._CopyPointerExitEvent, A._CopyPointerDownEvent, A._CopyPointerMoveEvent, A._CopyPointerUpEvent, A._CopyPointerScrollEvent, A._CopyPointerCancelEvent, A.ForcePressDetails, A.DeviceGestureSettings, A.HitTestEntry, A._TransformPart, A.HitTestResult, A.LongPressStartDetails, A.LongPressMoveUpdateDetails, A.LongPressEndDetails, A._Vector, A._Matrix, A.PolynomialFit, A.LeastSquaresSolver, A.MultiDragPointerState, A._CountdownZoned, A._TapTracker, A.PointerRouter, A.PointerSignalResolver, A.OffsetPair, A.ScaleStartDetails, A.ScaleUpdateDetails, A.ScaleEndDetails, A._LineBetweenPointers, A.TapDownDetails, A.TapUpDetails, A._CombiningGestureArenaEntry, A.GestureArenaTeam, A.Velocity, A.VelocityEstimate, A._PointAtTime, A.VelocityTracker, A._LicenseData, A._DetailArguments, A._MasterDetailFlowProxy, A.ScrollBehavior, A.SingleChildLayoutDelegate, A.SliverPersistentHeaderDelegate, A._AppBarTheme_Object_Diagnosticable, A._Diagonal, A._MaterialBannerThemeData_Object_Diagnosticable, A._BottomAppBarTheme_Object_Diagnosticable, A._BottomNavigationBarThemeData_Object_Diagnosticable, A._BottomSheetThemeData_Object_Diagnosticable, A._ButtonBarThemeData_Object_Diagnosticable, A._ButtonStyle_Object_Diagnosticable, A._LerpProperties, A._LerpSides, A._LerpShapes, A._MouseCursor_Object_Diagnosticable, A._ButtonThemeData_Object_Diagnosticable, A.SliverGridDelegate, A._CardTheme_Object_Diagnosticable, A._CheckboxThemeData_Object_Diagnosticable, A._LerpProperties4, A._ChipThemeData_Object_Diagnosticable, A._ColorScheme_Object_Diagnosticable, A.DataColumn, A.DataRow, A.DataCell, A.TableColumnWidth, A._DataTableThemeData_Object_Diagnosticable, A._LerpProperties3, A.Route, A._DialogTheme_Object_Diagnosticable, A._DividerThemeData_Object_Diagnosticable, A._DrawerThemeData_Object_Diagnosticable, A._DropdownRouteResult, A._MenuLimits, A.MaterialStateProperty, A._ElevatedButtonThemeData_Object_Diagnosticable, A.ExpansionPanel, A._ExpansionTileThemeData_Object_Diagnosticable, A._DefaultHeroTag, A._FloatingActionButtonThemeData_Object_Diagnosticable, A.FloatingActionButtonLocation, A.FabTopOffsetY, A.FabFloatOffsetY, A.FabDockedOffsetY, A.FabEndOffsetX, A.FloatingActionButtonAnimator, A.InkFeature, A.InteractiveInkFeatureFactory, A.ShapeBorder, A.FloatingLabelAlignment, A._Decoration, A._RenderDecorationLayout, A.InputDecoration, A._InputDecorationTheme_Object_Diagnosticable, A._ListTileThemeData_Object_Diagnosticable, A.DefaultMaterialLocalizations, A._MaterialStatePropertyWith, A._MaterialStatePropertyAll, A.MaterialStateMixin, A.MergeableMaterialItem, A._AnimationTuple, A._NavigationBarThemeData_Object_Diagnosticable, A._LerpProperties2, A._NavigationRailThemeData_Object_Diagnosticable, A._OutlinedButtonThemeData_Object_Diagnosticable, A.MaterialRouteTransitionMixin, A.PageTransitionsBuilder, A._PageTransitionsTheme_Object_Diagnosticable, A._PopupMenuThemeData_Object_Diagnosticable, A._ProgressIndicatorThemeData_Object_Diagnosticable, A._RadioThemeData_Object_Diagnosticable, A._LerpProperties1, A.ScaffoldPrelayoutGeometry, A.ScaffoldGeometry, A.Constraints, A.ScaffoldFeatureController, A._ScrollbarThemeData_Object_Diagnosticable, A._LerpProperties5, A.TextSelectionGestureDetectorBuilder, A._SliderThemeData_Object_Diagnosticable, A._SnackBarThemeData_Object_Diagnosticable, A._SwitchThemeData_Object_Diagnosticable, A._LerpProperties0, A._TabBarTheme_Object_Diagnosticable, A._LerpColors, A._TextButtonThemeData_Object_Diagnosticable, A._TextSelectionThemeData_Object_Diagnosticable, A._TextTheme_Object_Diagnosticable, A._ThemeData_Object_Diagnosticable, A._IdentityThemeDataCacheKey, A._FifoCache, A._VisualDensity_Object_Diagnosticable, A.TimeOfDay, A._TimePickerFragmentContext, A._TappableLabel, A._TimePickerThemeData_Object_Diagnosticable, A._ToggleButtonsThemeData_Object_Diagnosticable, A.ToggleableStateMixin, A._TooltipThemeData_Object_Diagnosticable, A._Typography_Object_Diagnosticable, A.AlignmentGeometry, A.TextAlignVertical, A.PaintingBinding, A.BorderRadiusGeometry, A.BorderSide, A.FittedSizes, A.ClipContext, A.ImageSizeInfo, A.DecorationImagePainter, A.EdgeInsetsGeometry, A._ColorsAndStops, A.Gradient, A.ImageCache, A._CachedImageBase, A._PendingImage, A.ImageConfiguration, A.AssetBundleImageKey, A.ImageInfo, A.ImageStreamListener, A._ImageChunkEvent_Object_Diagnosticable, A._ImageStream_Object_Diagnosticable, A.ImageStreamCompleterHandle, A.Accumulator, A.InlineSpanSemanticsInformation, A.NotchedShape, A._StrutStyle_Object_Diagnosticable, A.PlaceholderDimensions, A._CaretMetrics, A.TextPainter, A._TextStyle_Object_Diagnosticable, A.SpringDescription, A._CriticalSolution, A._OverdampedSolution, A._UnderdampedSolution, A.Tolerance, A.RendererBinding, A.ParentData, A._IntrinsicDimensionsCacheEntry, A.RenderBoxContainerDefaultsMixin, A.CustomPainterSemantics, A.DebugOverflowIndicatorMixin, A.TextSelectionPoint, A._LayoutSizes, A.AnnotationEntry, A.AnnotationResult, A.LayerHandle, A.LayerLink, A._MouseState, A.__MouseTrackerUpdateDetails_Object_Diagnosticable, A.SemanticsHandle, A.PipelineOwner, A.RenderObjectWithChildMixin, A.ContainerParentDataMixin, A.ContainerRenderObjectMixin, A.RelayoutWhenSystemFontsChangeMixin, A._SemanticsFragment, A._SemanticsGeometry, A.SemanticsTag, A._PlatformViewGestureMixin, A.RenderProxyBoxMixin, A.RenderAnimatedOpacityMixin, A._SliverGeometry_Object_Diagnosticable, A.RenderSliverHelpers, A.SliverGridGeometry, A.SliverGridLayout, A.KeepAliveParentDataMixin, A.RenderSliverWithKeepAliveMixin, A.PersistentHeaderShowOnScreenConfiguration, A.RelativeRect, A.ViewConfiguration, A.RevealedOffset, A._RunMetrics, A._TaskEntry, A._FrameCallbackEntry, A.SchedulerBinding, A.Priority, A.Ticker, A.TickerFuture, A.TickerCanceled, A.SemanticsBinding, A.CustomSemanticsAction, A.AttributedString, A._SemanticsData_Object_Diagnosticable, A._BoxEdge, A._TraversalSortNode, A.SemanticsConfiguration, A._SemanticsSortKey_Object_Diagnosticable, A.SemanticsEvent, A.AssetBundle, A.AutofillConfiguration, A.TextInputConfiguration, A.AutofillScopeMixin, A.BinaryMessenger, A.ServicesBinding, A.ClipboardData, A.KeyboardLockMode, A._KeyEvent_Object_Diagnosticable, A.HardwareKeyboard, A.KeyMessage, A.KeyEventManager, A._KeyboardKey_Object_Diagnosticable, A.MethodCall0, A.PlatformException, A.MissingPluginException, A.StringCodec, A.JSONMessageCodec0, A.JSONMethodCodec0, A.StandardMessageCodec0, A.StandardMethodCodec0, A.MouseCursorManager, A.MouseCursorSession, A.BasicMessageChannel, A.MethodChannel, A.PlatformViewsRegistry, A.PlatformViewController, A._RawKeyEventData_Object_Diagnosticable, A._RawKeyEvent_Object_Diagnosticable, A.RawKeyboard, A._ModifierSidePair, A.RestorationBucket, A.ApplicationSwitcherDescription, A.SystemUiOverlayStyle, A.TextEditingDelta, A.TextInputFormatter, A._MutableTextRange, A._TextEditingValueAccumulator, A.TextInputType, A.RawFloatingCursorPoint, A.TextEditingValue, A.TextSelectionDelegate, A.SelectionRect, A.TextInputConnection, A.TextInput, A._Intent_Object_Diagnosticable, A._Action_Object_Diagnosticable, A._ActionDispatcher_Object_Diagnosticable, A._OverridableActionMixin, A._ChildEntry, A.AsyncSnapshot, A.Notification0, A.AutomaticKeepAliveClientMixin, A.WidgetsBindingObserver, A.WidgetsBinding, A.DisposableBuildContext, A._DraggableSheetExtent, A.ToolbarOptions, A._TextBoundary, A._UndoStack, A._Autofocus, A.FocusAttachment, A._FocusNode_Object_DiagnosticableTreeMixin, A._FocusManager_Object_DiagnosticableTreeMixin, A._FocusTraversalGroupInfo, A._FocusTraversalPolicy_Object_Diagnosticable, A._DirectionalPolicyDataEntry, A._DirectionalPolicyData, A.DirectionalFocusTraversalPolicyMixin, A.__ReadingOrderSortData_Object_Diagnosticable, A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, A._InactiveElements, A.BuildOwner, A.NotifiableElementMixin, A._NotificationNode, A.IndexedSlot, A.GestureRecognizerFactory, A.SemanticsGestureDelegate, A._HeroFlightManifest, A._HeroFlight, A.NavigatorObserver, A.IconData, A.CapturedThemes, A.RenderConstrainedLayoutBuilder, A._Pending, A.DefaultWidgetsLocalizations, A.MediaQueryData, A.RouteSettings, A.RouteTransitionRecord, A.TransitionDelegate, A._NavigatorObservation, A._RestorationInformation, A._StorageEntryIdentifier, A.PageStorageBucket, A._FixedScrollMetrics_Object_ScrollMetrics, A.ScrollPhysics, A.MenuSerializableShortcut, A.PlatformMenuDelegate, A.PlatformViewCreationParams, A._EdgeDraggingAutoScroller, A.RestorationMixin, A.RouteInformation, A.LocalHistoryEntry, A.LocalHistoryRoute, A.ScrollActivity, A.ScrollDragController, A._WrappedScrollBehavior, A.ScrollMetrics, A.ViewportNotificationMixin, A.ViewportElementMixin, A.ScrollableDetails, A.KeySet, A._SingleActivator_Object_Diagnosticable, A.__ActivatorIntentPair_Object_Diagnosticable, A.SliverChildDelegate, A._RenderSliverPersistentHeaderForWidgetsMixin, A.SlottedMultiChildRenderObjectWidgetMixin, A.SlottedContainerRenderObjectMixin, A.TableRow, A._TableElementRow, A.__TableSlot_Object_Diagnosticable, A.TextSelectionOverlay, A.SelectionOverlay, A.SingleTickerProviderStateMixin, A.TickerProviderStateMixin, A.CacheManager, A.ImageCacheManager, A.CacheStore, A.Config, A.CacheLogger, A.FileResponse, A.NonStoringObjectProvider, A.CacheObject, A.MemoryCacheSystem, A.FileService, A.HttpGetResponse, A.QueueItem, A.WebHelper, A.GlobalCupertinoLocalizations, A.GlobalMaterialLocalizations, A.GlobalWidgetsLocalizations, A.SlidableAutoCloseNotification, A.SlidableAutoCloseBarrierNotification, A.EndGesture, A.SlidableController, A.ActionPaneData, A.StyledToastPosition, A.ToastFuture, A.ToastManager, A.GoogleSignInAuthentication, A.GoogleSignInAccount, A.GoogleSignIn, A.GoogleSignInPlatform, A.GoogleSignInUserData, A.GoogleSignInTokenData, A.AttributeName, A._ParentNode, A._NonElementParentNode, A._ElementAndDocument, A.Node0, A.TreeVisitor, A.HtmlParser, A.Phase, A.ParseError, A.ReparseException, A.EncodingBytes, A.ContentAttrParser, A.HtmlInputStream, A.Token0, A.TagAttribute, A.HtmlTokenizer, A.TreeBuilder, A.Pair, A.Node, A._StyleOption, A.Rule, A.BaseClient, A.BaseRequest, A.BaseResponse, A.ClientException, A.MultipartFile, A.MediaType, A.ExifData, A.DecodeInfo, A.Decoder, A.PngFrame, A.Image0, A.ImageException, A.InputBuffer, A.ImageCropper, A.CroppedFileBase, A.ImagePicker, A.ImageResizer, A.DateSymbols, A.NumberSymbols, A.DateBuilder, A.DateFormat, A._DateFormatField, A.IntlStream, A.NumberFormat, A.NumberFormatParseResult, A.NumberFormatParser, A.StringIterator, A.UninitializedLocaleData, A.LocaleDataException, A.InvoiceStatusColors, A.RecurringInvoiceStatusColors, A.CreditStatusColors, A.PurchaseOrderStatusColors, A.QuoteStatusColors, A.PaymentStatusColors, A.ExpenseStatusColors, A.FileStorage, A.AccountEntity, A._$AccountEntitySerializer, A.AccountEntityBuilder, A.ClientListResponse, A.ClientItemResponse, A._ClientEntity_Object_BaseEntity, A._ClientContactEntity_Object_BaseEntity, A._$ClientListResponseSerializer, A._$ClientItemResponseSerializer, A._$ClientEntitySerializer, A._$ClientContactEntitySerializer, A.ClientListResponseBuilder, A.ClientItemResponseBuilder, A.ClientEntityBuilder, A.ClientContactEntityBuilder, A.CompanyGatewayListResponse, A.CompanyGatewayItemResponse, A._CompanyGatewayEntity_Object_BaseEntity, A.FeesAndLimitsSettings, A._$CompanyGatewayListResponseSerializer, A._$CompanyGatewayItemResponseSerializer, A._$CompanyGatewayEntitySerializer, A._$FeesAndLimitsSettingsSerializer, A.CompanyGatewayListResponseBuilder, A.CompanyGatewayItemResponseBuilder, A.CompanyGatewayEntityBuilder, A.FeesAndLimitsSettingsBuilder, A._CompanyEntity_Object_BaseEntity, A._GatewayEntity_Object_SelectableEntity, A.GatewayOptionsEntity, A.UserCompanyEntity, A.UserSettingsEntity, A.ReportSettingsEntity, A.CompanyItemResponse, A.RegistrationFieldEntity, A._$CompanyEntitySerializer, A._$GatewayEntitySerializer, A._$GatewayOptionsEntitySerializer, A._$UserCompanyEntitySerializer, A._$UserSettingsEntitySerializer, A._$ReportSettingsEntitySerializer, A._$CompanyItemResponseSerializer, A._$RegistrationFieldEntitySerializer, A.CompanyEntityBuilder, A.GatewayEntityBuilder, A.GatewayOptionsEntityBuilder, A.UserCompanyEntityBuilder, A.UserSettingsEntityBuilder, A.ReportSettingsEntityBuilder, A.CompanyItemResponseBuilder, A.RegistrationFieldEntityBuilder, A.CreditListResponse, A.CreditItemResponse, A._$CreditListResponseSerializer, A._$CreditItemResponseSerializer, A.CreditListResponseBuilder, A.CreditItemResponseBuilder, A.DashboardSettings, A._$DateRangeSerializer, A._$DateRangeComparisonSerializer, A.DesignListResponse, A.DesignItemResponse, A.DesignPreviewRequest, A._DesignEntity_Object_BaseEntity, A._$DesignListResponseSerializer, A._$DesignItemResponseSerializer, A._$DesignPreviewRequestSerializer, A._$DesignEntitySerializer, A.DesignListResponseBuilder, A.DesignItemResponseBuilder, A.DesignPreviewRequestBuilder, A.DesignEntityBuilder, A.DocumentListResponse, A.DocumentItemResponse, A._DocumentEntity_Object_BaseEntity, A._$DocumentListResponseSerializer, A._$DocumentItemResponseSerializer, A._$DocumentEntitySerializer, A.DocumentListResponseBuilder, A.DocumentItemResponseBuilder, A.DocumentEntityBuilder, A.EntityStatus, A.EntityStats, A.SelectableEntity, A.BaseEntity, A.HasActivities, A.BelongsToClient, A.BelongsToVendor, A.LoginResponse, A.ActivityEntity, A.LedgerEntity, A._$EntityTypeSerializer, A._$EntityStateSerializer, A._$EmailTemplateSerializer, A._$LoginResponseSerializer, A._$ActivityEntitySerializer, A._$LedgerEntitySerializer, A.LoginResponseBuilder, A.ActivityEntityBuilder, A.LedgerEntityBuilder, A.ExpenseCategoryListResponse, A.ExpenseCategoryItemResponse, A._ExpenseCategoryEntity_Object_BaseEntity, A._$ExpenseCategoryListResponseSerializer, A._$ExpenseCategoryItemResponseSerializer, A._$ExpenseCategoryEntitySerializer, A.ExpenseCategoryListResponseBuilder, A.ExpenseCategoryItemResponseBuilder, A.ExpenseCategoryEntityBuilder, A.ExpenseListResponse, A.ExpenseItemResponse, A._ExpenseEntity_Object_BaseEntity, A.ExpenseScheduleEntity, A._ExpenseStatusEntity_Object_EntityStatus, A._$ExpenseListResponseSerializer, A._$ExpenseItemResponseSerializer, A._$ExpenseEntitySerializer, A._$ExpenseScheduleEntitySerializer, A._$ExpenseStatusEntitySerializer, A.ExpenseListResponseBuilder, A.ExpenseItemResponseBuilder, A.ExpenseEntityBuilder, A.ExpenseScheduleEntityBuilder, A.ExpenseStatusEntityBuilder, A.GatewayTokenListResponse, A.GatewayTokenItemResponse, A._GatewayTokenEntity_Object_BaseEntity, A.GatewayTokenMetaEntity, A._$GatewayTokenListResponseSerializer, A._$GatewayTokenItemResponseSerializer, A._$GatewayTokenEntitySerializer, A._$GatewayTokenMetaEntitySerializer, A.GatewayTokenListResponseBuilder, A.GatewayTokenItemResponseBuilder, A.GatewayTokenEntityBuilder, A.GatewayTokenMetaEntityBuilder, A.GroupListResponse, A.GroupItemResponse, A._GroupEntity_Object_BaseEntity, A._$GroupListResponseSerializer, A._$GroupItemResponseSerializer, A._$GroupEntitySerializer, A.GroupListResponseBuilder, A.GroupItemResponseBuilder, A.GroupEntityBuilder, A.HealthCheckResponse, A.HealthCheckPHPResponse, A._$HealthCheckResponseSerializer, A._$HealthCheckPHPResponseSerializer, A.HealthCheckResponseBuilder, A.HealthCheckPHPResponseBuilder, A.PreImportResponse, A.PreImportResponseEntityDetails, A.ImportRequest, A.ImportRequestMapping, A._$PreImportResponseSerializer, A._$PreImportResponseEntityDetailsSerializer, A._$ImportRequestSerializer, A._$ImportRequestMappingSerializer, A.PreImportResponseBuilder, A.PreImportResponseEntityDetailsBuilder, A.ImportRequestBuilder, A.ImportRequestMappingBuilder, A.InvoiceListResponse, A.InvoiceItemResponse, A._InvoiceEntity_Object_BaseEntity, A.InvoiceItemEntity, A._InvitationEntity_Object_BaseEntity, A.InvoiceScheduleEntity, A.InvoiceHistoryEntity, A._$InvoiceListResponseSerializer, A._$InvoiceItemResponseSerializer, A._$InvoiceEntitySerializer, A._$InvoiceItemEntitySerializer, A._$InvitationEntitySerializer, A._$InvoiceScheduleEntitySerializer, A._$InvoiceHistoryEntitySerializer, A.InvoiceListResponseBuilder, A.InvoiceItemResponseBuilder, A.InvoiceEntityBuilder, A.InvoiceItemEntityBuilder, A.InvitationEntityBuilder, A.InvoiceScheduleEntityBuilder, A.InvoiceHistoryEntityBuilder, A.CalculateInvoiceTotal, A.PaymentListResponse, A.PaymentItemResponse, A._PaymentEntity_Object_BaseEntity, A._PaymentableEntity_Object_SelectableEntity, A._$PaymentListResponseSerializer, A._$PaymentItemResponseSerializer, A._$PaymentEntitySerializer, A._$PaymentableEntitySerializer, A.PaymentListResponseBuilder, A.PaymentItemResponseBuilder, A.PaymentEntityBuilder, A.PaymentableEntityBuilder, A.PaymentTermListResponse, A.PaymentTermItemResponse, A._PaymentTermEntity_Object_BaseEntity, A._$PaymentTermListResponseSerializer, A._$PaymentTermItemResponseSerializer, A._$PaymentTermEntitySerializer, A.PaymentTermListResponseBuilder, A.PaymentTermItemResponseBuilder, A.PaymentTermEntityBuilder, A.ProductListResponse, A.ProductItemResponse, A._ProductEntity_Object_BaseEntity, A._$ProductListResponseSerializer, A._$ProductItemResponseSerializer, A._$ProductEntitySerializer, A.ProductListResponseBuilder, A.ProductItemResponseBuilder, A.ProductEntityBuilder, A.ProjectListResponse, A.ProjectItemResponse, A._ProjectEntity_Object_BaseEntity, A._$ProjectListResponseSerializer, A._$ProjectItemResponseSerializer, A._$ProjectEntitySerializer, A.ProjectListResponseBuilder, A.ProjectItemResponseBuilder, A.ProjectEntityBuilder, A.SettingsEntity, A._$SettingsEntitySerializer, A.SettingsEntityBuilder, A.ColorTheme, A.CountryListResponse, A.CountryItemResponse, A._CountryEntity_Object_SelectableEntity, A._$CountryListResponseSerializer, A._$CountryItemResponseSerializer, A._$CountryEntitySerializer, A.CountryListResponseBuilder, A.CountryItemResponseBuilder, A.CountryEntityBuilder, A.CurrencyListResponse, A.CurrencyItemResponse, A._CurrencyEntity_Object_SelectableEntity, A._$CurrencyListResponseSerializer, A._$CurrencyItemResponseSerializer, A._$CurrencyEntitySerializer, A.CurrencyListResponseBuilder, A.CurrencyItemResponseBuilder, A.CurrencyEntityBuilder, A.DateFormatListResponse, A.DateFormatItemResponse, A._DateFormatEntity_Object_SelectableEntity, A._$DateFormatListResponseSerializer, A._$DateFormatItemResponseSerializer, A._$DateFormatEntitySerializer, A.DateFormatListResponseBuilder, A.DateFormatItemResponseBuilder, A.DateFormatEntityBuilder, A.DatetimeFormatListResponse, A.DatetimeFormatItemResponse, A.DatetimeFormatEntity, A._$DatetimeFormatListResponseSerializer, A._$DatetimeFormatItemResponseSerializer, A._$DatetimeFormatEntitySerializer, A.DatetimeFormatListResponseBuilder, A.DatetimeFormatItemResponseBuilder, A.DatetimeFormatEntityBuilder, A._FontEntity_Object_SelectableEntity, A.IndustryListResponse, A.IndustryItemResponse, A._IndustryEntity_Object_SelectableEntity, A._$IndustryListResponseSerializer, A._$IndustryItemResponseSerializer, A._$IndustryEntitySerializer, A.IndustryListResponseBuilder, A.IndustryItemResponseBuilder, A.IndustryEntityBuilder, A._InvoiceStatusEntity_Object_EntityStatus, A._$InvoiceStatusEntitySerializer, A.InvoiceStatusEntityBuilder, A.LanguageListResponse, A.LanguageItemResponse, A._LanguageEntity_Object_SelectableEntity, A._$LanguageListResponseSerializer, A._$LanguageItemResponseSerializer, A._$LanguageEntitySerializer, A.LanguageListResponseBuilder, A.LanguageItemResponseBuilder, A.LanguageEntityBuilder, A.PaymentTypeListResponse, A.PaymentTypeItemResponse, A._PaymentTypeEntity_Object_SelectableEntity, A._$PaymentTypeListResponseSerializer, A._$PaymentTypeItemResponseSerializer, A._$PaymentTypeEntitySerializer, A.PaymentTypeListResponseBuilder, A.PaymentTypeItemResponseBuilder, A.PaymentTypeEntityBuilder, A.SizeListResponse, A.SizeItemResponse, A._SizeEntity_Object_SelectableEntity, A._$SizeListResponseSerializer, A._$SizeItemResponseSerializer, A._$SizeEntitySerializer, A.SizeListResponseBuilder, A.SizeItemResponseBuilder, A.SizeEntityBuilder, A.StaticDataItemResponse, A.StaticDataEntity, A.TemplateEntity, A._$StaticDataItemResponseSerializer, A._$StaticDataEntitySerializer, A._$TemplateEntitySerializer, A.StaticDataItemResponseBuilder, A.StaticDataEntityBuilder, A.TemplateEntityBuilder, A.TimezoneListResponse, A.TimezoneItemResponse, A._TimezoneEntity_Object_SelectableEntity, A._$TimezoneListResponseSerializer, A._$TimezoneItemResponseSerializer, A._$TimezoneEntitySerializer, A.TimezoneListResponseBuilder, A.TimezoneItemResponseBuilder, A.TimezoneEntityBuilder, A.SubscriptionListResponse, A.SubscriptionItemResponse, A._SubscriptionEntity_Object_BaseEntity, A.WebhookConfigurationEntity, A._$SubscriptionListResponseSerializer, A._$SubscriptionItemResponseSerializer, A._$SubscriptionEntitySerializer, A._$WebhookConfigurationEntitySerializer, A.SubscriptionListResponseBuilder, A.SubscriptionItemResponseBuilder, A.SubscriptionEntityBuilder, A.WebhookConfigurationEntityBuilder, A.SystemLogEntity, A._$SystemLogEntitySerializer, A.SystemLogEntityBuilder, A.TaskListResponse, A.TaskItemResponse, A.TaskTime, A._TaskEntity_Object_BaseEntity, A._$TaskListResponseSerializer, A._$TaskItemResponseSerializer, A._$TaskEntitySerializer, A.TaskListResponseBuilder, A.TaskItemResponseBuilder, A.TaskTimeBuilder, A.TaskEntityBuilder, A.TaskStatusListResponse, A.TaskStatusItemResponse, A._TaskStatusEntity_Object_BaseEntity, A._$TaskStatusListResponseSerializer, A._$TaskStatusItemResponseSerializer, A._$TaskStatusEntitySerializer, A.TaskStatusListResponseBuilder, A.TaskStatusItemResponseBuilder, A.TaskStatusEntityBuilder, A.TaxRateListResponse, A.TaxRateItemResponse, A._TaxRateEntity_Object_BaseEntity, A._$TaxRateListResponseSerializer, A._$TaxRateItemResponseSerializer, A._$TaxRateEntitySerializer, A.TaxRateListResponseBuilder, A.TaxRateItemResponseBuilder, A.TaxRateEntityBuilder, A.TokenListResponse, A.TokenItemResponse, A._TokenEntity_Object_BaseEntity, A._$TokenListResponseSerializer, A._$TokenItemResponseSerializer, A._$TokenEntitySerializer, A.TokenListResponseBuilder, A.TokenItemResponseBuilder, A.TokenEntityBuilder, A.UserListResponse, A.UserItemResponse, A.UserTwoFactorResponse, A.UserTwoFactorData, A.UserCompanyItemResponse, A._UserEntity_Object_BaseEntity, A._$UserListResponseSerializer, A._$UserItemResponseSerializer, A._$UserTwoFactorResponseSerializer, A._$UserTwoFactorDataSerializer, A._$UserCompanyItemResponseSerializer, A._$UserEntitySerializer, A.UserListResponseBuilder, A.UserItemResponseBuilder, A.UserTwoFactorResponseBuilder, A.UserTwoFactorDataBuilder, A.UserCompanyItemResponseBuilder, A.UserEntityBuilder, A.VendorListResponse, A.VendorItemResponse, A._VendorEntity_Object_BaseEntity, A._VendorContactEntity_Object_BaseEntity, A._$VendorListResponseSerializer, A._$VendorItemResponseSerializer, A._$VendorEntitySerializer, A._$VendorContactEntitySerializer, A.VendorListResponseBuilder, A.VendorItemResponseBuilder, A.VendorEntityBuilder, A.VendorContactEntityBuilder, A.WebhookListResponse, A.WebhookItemResponse, A._WebhookEntity_Object_BaseEntity, A._$WebhookListResponseSerializer, A._$WebhookItemResponseSerializer, A._$WebhookEntitySerializer, A.WebhookListResponseBuilder, A.WebhookItemResponseBuilder, A.WebhookEntityBuilder, A.AuthRepository, A.ClientRepository, A.CompanyGatewayRepository, A.CreditRepository, A.DesignRepository, A.DocumentRepository, A.ExpenseCategoryRepository, A.ExpenseRepository, A.GroupRepository, A.InvoiceRepository, A.PaymentRepository, A.PaymentTermRepository, A.PersistenceRepository, A.ProductRepository, A.ProjectRepository, A.PurchaseOrderRepository, A.QuoteRepository, A.RecurringExpenseRepository, A.RecurringInvoiceRepository, A.SettingsRepository, A.SubscriptionRepository, A.TaskRepository, A.TaskStatusRepository, A.TaxRateRepository, A.TokenRepository, A.UserRepository, A.VendorRepository, A.WebhookRepository, A.WebClient, A.PersistData, A.ClearPersistedData, A.SwitchListTableLayout, A.PopLastHistory, A.DismissNativeWarning, A.DismissNativeWarningPermanently, A.DismissGatewayWarningPermanently, A.ViewMainScreen, A.StartSaving, A.StopSaving, A.LoadStaticSuccess, A.ToggleEditorLayout, A.ToggleViewerLayout, A.TogglePreviewSidebar, A.UpdateUserPreferences, A.LoadAccountSuccess, A.ResendConfirmation, A.ResendConfirmationFailure, A.ResendConfirmationSuccess, A.RefreshData, A.RefreshDataSuccess, A.RefreshDataFailure, A.PreviewEntity, A.ClearPreviewStack, A.PopPreviewStack, A.PopFilterStack, A.ClearData, A.ClearLastError, A.DiscardChanges, A.ClearEntityFilter, A.ClearEntitySelection, A.FilterByEntity, A.FilterCompany, A.AppState, A.Credentials, A.SelectionState, A._$AppStateSerializer, A.AppStateBuilder, A.LoadStateRequest, A.LoadStateSuccess, A.OAuthLoginRequest, A.UserLoadUrl, A.UserLoginRequest, A.UserLoginSuccess, A.UserLoginFailure, A.RecoverPasswordRequest, A.RecoverPasswordSuccess, A.RecoverPasswordFailure, A.UserLogout, A.UserLogoutAll, A.UserLogoutAllSuccess, A.UserLogoutAllFailure, A.UserSignUpRequest, A.OAuthSignUpRequest, A.UserVerifiedPassword, A.UserUnverifiedPassword, A.AuthState, A._$AuthStateSerializer, A.AuthStateBuilder, A.ViewClientList, A.ViewClient, A.EditClient, A.EditContact, A.ShowPdfClient, A.UpdateClient, A.LoadClient, A.LoadClients, A.LoadClientRequest, A.LoadClientFailure, A.LoadClientSuccess, A.LoadClientsRequest, A.LoadClientsFailure, A.LoadClientsSuccess, A.AddContact, A.UpdateContact, A.DeleteContact, A.SaveClientRequest, A.SaveClientSuccess, A.AddClientSuccess, A.SaveClientFailure, A.ArchiveClientsRequest, A.ArchiveClientsSuccess, A.ArchiveClientsFailure, A.MergeClientsRequest, A.MergeClientsSuccess, A.MergeClientsFailure, A.DeleteClientsRequest, A.DeleteClientsSuccess, A.DeleteClientsFailure, A.PurgeClientRequest, A.PurgeClientSuccess, A.PurgeClientFailure, A.RestoreClientsRequest, A.RestoreClientSuccess, A.RestoreClientFailure, A.FilterClients, A.SortClients, A.FilterClientsByState, A.FilterClientsByCustom1, A.FilterClientsByCustom2, A.FilterClientsByCustom3, A.FilterClientsByCustom4, A.StartClientMultiselect, A.AddToClientMultiselect, A.RemoveFromClientMultiselect, A.ClearClientMultiselect, A.SaveClientDocumentRequest, A.SaveClientDocumentFailure, A.UpdateClientTab, A.ClientState, A._ClientUIState_Object_EntityUIState, A._$ClientStateSerializer, A._$ClientUIStateSerializer, A.ClientStateBuilder, A.ClientUIStateBuilder, A.SelectCompany, A.LoadCompanySuccess, A.UpdateCompany, A.SaveCompanyRequest, A.SaveCompanySuccess, A.SaveCompanyFailure, A.AddCompany, A.AddCompanySuccess, A.DeleteCompanyRequest, A.DeleteCompanySuccess, A.DeleteCompanyFailure, A.PurgeDataRequest, A.PurgeDataSuccess, A.PurgeDataFailure, A.UpdateCompanyLanguage, A.SaveCompanyDocumentRequest, A.SaveCompanyDocumentFailure, A.SetDefaultCompanyRequest, A.SetDefaultCompanySuccess, A.SetDefaultCompanyFailure, A.UserCompanyState, A.SettingsUIState, A._$UserCompanyStateSerializer, A._$SettingsUIStateSerializer, A.UserCompanyStateBuilder, A.SettingsUIStateBuilder, A.ViewCompanyGatewayList, A.ViewCompanyGateway, A.EditCompanyGateway, A.UpdateCompanyGateway, A.LoadCompanyGateway, A.LoadCompanyGatewayRequest, A.LoadCompanyGatewayFailure, A.LoadCompanyGatewaySuccess, A.LoadCompanyGatewaysRequest, A.LoadCompanyGatewaysFailure, A.LoadCompanyGatewaysSuccess, A.SaveCompanyGatewayRequest, A.SaveCompanyGatewaySuccess, A.AddCompanyGatewaySuccess, A.SaveCompanyGatewayFailure, A.ArchiveCompanyGatewayRequest, A.ArchiveCompanyGatewaySuccess, A.ArchiveCompanyGatewayFailure, A.DeleteCompanyGatewayRequest, A.DeleteCompanyGatewaySuccess, A.DeleteCompanyGatewayFailure, A.DisconnectCompanyGatewayRequest, A.DisconnectCompanyGatewaySuccess, A.DisconnectCompanyGatewayFailure, A.RestoreCompanyGatewayRequest, A.RestoreCompanyGatewaySuccess, A.RestoreCompanyGatewayFailure, A.FilterCompanyGatewaysByState, A.FilterCompanyGatewaysByCustom1, A.FilterCompanyGatewaysByCustom2, A.FilterCompanyGatewaysByCustom3, A.FilterCompanyGatewaysByCustom4, A.StartCompanyGatewayMultiselect, A.AddToCompanyGatewayMultiselect, A.RemoveFromCompanyGatewayMultiselect, A.ClearCompanyGatewayMultiselect, A.CompanyGatewayState, A._CompanyGatewayUIState_Object_EntityUIState, A._$CompanyGatewayStateSerializer, A._$CompanyGatewayUIStateSerializer, A.CompanyGatewayStateBuilder, A.CompanyGatewayUIStateBuilder, A.ViewCreditList, A.ViewCredit, A.EditCredit, A.ShowEmailCredit, A.ShowPdfCredit, A.EditCreditItem, A.UpdateCredit, A.UpdateCreditClient, A.LoadCredit, A.LoadCredits, A.LoadCreditRequest, A.LoadCreditFailure, A.LoadCreditSuccess, A.LoadCreditsRequest, A.LoadCreditsFailure, A.LoadCreditsSuccess, A.AddCreditContact, A.RemoveCreditContact, A.AddCreditItem, A.MoveCreditItem, A.AddCreditItems, A.UpdateCreditItem, A.DeleteCreditItem, A.SaveCreditRequest, A.SaveCreditSuccess, A.AddCreditSuccess, A.SaveCreditFailure, A.EmailCreditRequest, A.EmailCreditSuccess, A.EmailCreditFailure, A.MarkSentCreditRequest, A.MarkSentCreditSuccess, A.MarkSentCreditFailure, A.BulkEmailCreditsRequest, A.BulkEmailCreditsSuccess, A.BulkEmailCreditsFailure, A.MarkCreditsPaidRequest, A.MarkCreditsPaidSuccess, A.MarkCreditsPaidFailure, A.ArchiveCreditsRequest, A.ArchiveCreditsSuccess, A.ArchiveCreditsFailure, A.DeleteCreditsRequest, A.DeleteCreditsSuccess, A.DeleteCreditsFailure, A.DownloadCreditsRequest, A.DownloadCreditsSuccess, A.DownloadCreditsFailure, A.RestoreCreditsRequest, A.RestoreCreditsSuccess, A.RestoreCreditsFailure, A.FilterCredits, A.SortCredits, A.FilterCreditsByState, A.FilterCreditsByCustom1, A.FilterCreditsByCustom2, A.FilterCreditsByCustom3, A.FilterCreditsByCustom4, A.SaveCreditDocumentRequest, A.SaveCreditDocumentFailure, A.StartCreditMultiselect, A.AddToCreditMultiselect, A.RemoveFromCreditMultiselect, A.ClearCreditMultiselect, A.UpdateCreditTab, A.CreditState, A._CreditUIState_Object_EntityUIState, A._$CreditStateSerializer, A._$CreditUIStateSerializer, A.CreditStateBuilder, A.CreditUIStateBuilder, A.ViewDashboard, A.UpdateDashboardSettings, A.UpdateDashboardSelection, A.UpdateDashboardEntityType, A.UpdateDashboardSidebar, A.ChartDataGroup, A.ChartMoneyData, A.DashboardUIState, A.DashboardUISettings, A._$DashboardUIStateSerializer, A._$DashboardUISettingsSerializer, A.DashboardUIStateBuilder, A.DashboardUISettingsBuilder, A.ViewDesignList, A.ViewDesign, A.EditDesign, A.UpdateDesign, A.LoadDesignRequest, A.LoadDesignFailure, A.LoadDesignSuccess, A.LoadDesignsRequest, A.LoadDesignsFailure, A.LoadDesignsSuccess, A.SaveDesignRequest, A.SaveDesignSuccess, A.AddDesignSuccess, A.SaveDesignFailure, A.ArchiveDesignsRequest, A.ArchiveDesignsSuccess, A.ArchiveDesignsFailure, A.DeleteDesignsRequest, A.DeleteDesignsSuccess, A.DeleteDesignsFailure, A.RestoreDesignsRequest, A.RestoreDesignsSuccess, A.RestoreDesignsFailure, A.FilterDesigns, A.SortDesigns, A.FilterDesignsByState, A.FilterDesignsByCustom1, A.FilterDesignsByCustom2, A.FilterDesignsByCustom3, A.FilterDesignsByCustom4, A.StartDesignMultiselect, A.AddToDesignMultiselect, A.RemoveFromDesignMultiselect, A.ClearDesignMultiselect, A.DesignState, A._DesignUIState_Object_EntityUIState, A._$DesignStateSerializer, A._$DesignUIStateSerializer, A.DesignStateBuilder, A.DesignUIStateBuilder, A.UpdateDocument, A.LoadDocumentRequest, A.LoadDocumentFailure, A.LoadDocumentSuccess, A.LoadDocumentsRequest, A.LoadDocumentsFailure, A.LoadDocumentsSuccess, A.DownloadDocumentsRequest, A.DownloadDocumentsSuccess, A.DownloadDocumentsFailure, A.ArchiveDocumentRequest, A.ArchiveDocumentSuccess, A.ArchiveDocumentFailure, A.DeleteDocumentRequest, A.DeleteDocumentSuccess, A.DeleteDocumentFailure, A.RestoreDocumentRequest, A.RestoreDocumentSuccess, A.RestoreDocumentFailure, A.FilterDocuments, A.SortDocuments, A.FilterDocumentsByState, A.FilterDocumentsByCustom1, A.FilterDocumentsByCustom2, A.FilterDocumentsByCustom3, A.FilterDocumentsByCustom4, A.StartDocumentMultiselect, A.AddToDocumentMultiselect, A.RemoveFromDocumentMultiselect, A.ClearDocumentMultiselect, A.DocumentState, A._DocumentUIState_Object_EntityUIState, A._$DocumentStateSerializer, A._$DocumentUIStateSerializer, A.DocumentStateBuilder, A.DocumentUIStateBuilder, A.ViewExpenseList, A.ViewExpense, A.EditExpense, A.UpdateExpense, A.LoadExpense, A.LoadExpenses, A.LoadExpenseRequest, A.LoadExpenseFailure, A.LoadExpenseSuccess, A.LoadExpensesRequest, A.LoadExpensesFailure, A.LoadExpensesSuccess, A.SaveExpenseRequest, A.SaveExpenseSuccess, A.AddExpenseSuccess, A.SaveExpenseFailure, A.ArchiveExpenseRequest, A.ArchiveExpenseSuccess, A.ArchiveExpenseFailure, A.DeleteExpenseRequest, A.DeleteExpenseSuccess, A.DeleteExpenseFailure, A.RestoreExpenseRequest, A.RestoreExpenseSuccess, A.RestoreExpenseFailure, A.FilterExpenses, A.SortExpenses, A.FilterExpensesByState, A.FilterExpensesByStatus, A.FilterExpensesByCustom1, A.FilterExpensesByCustom2, A.FilterExpensesByCustom3, A.FilterExpensesByCustom4, A.StartExpenseMultiselect, A.AddToExpenseMultiselect, A.RemoveFromExpenseMultiselect, A.ClearExpenseMultiselect, A.SaveExpenseDocumentRequest, A.SaveExpenseDocumentFailure, A.UpdateExpenseTab, A.ExpenseState, A._ExpenseUIState_Object_EntityUIState, A._$ExpenseStateSerializer, A._$ExpenseUIStateSerializer, A.ExpenseStateBuilder, A.ExpenseUIStateBuilder, A.ViewExpenseCategoryList, A.ViewExpenseCategory, A.EditExpenseCategory, A.UpdateExpenseCategory, A.LoadExpenseCategoryRequest, A.LoadExpenseCategoryFailure, A.LoadExpenseCategorySuccess, A.LoadExpenseCategoriesRequest, A.LoadExpenseCategoriesFailure, A.LoadExpenseCategoriesSuccess, A.SaveExpenseCategoryRequest, A.SaveExpenseCategorySuccess, A.AddExpenseCategorySuccess, A.SaveExpenseCategoryFailure, A.ArchiveExpenseCategoriesRequest, A.ArchiveExpenseCategoriesSuccess, A.ArchiveExpenseCategoriesFailure, A.DeleteExpenseCategoriesRequest, A.DeleteExpenseCategoriesSuccess, A.DeleteExpenseCategoriesFailure, A.RestoreExpenseCategoriesRequest, A.RestoreExpenseCategoriesSuccess, A.RestoreExpenseCategoriesFailure, A.FilterExpenseCategories, A.SortExpenseCategories, A.FilterExpenseCategoriesByState, A.FilterExpenseCategoriesByCustom1, A.FilterExpenseCategoriesByCustom2, A.FilterExpenseCategoriesByCustom3, A.FilterExpenseCategoriesByCustom4, A.StartExpenseCategoryMultiselect, A.AddToExpenseCategoryMultiselect, A.RemoveFromExpenseCategoryMultiselect, A.ClearExpenseCategoryMultiselect, A.ExpenseCategoryState, A._ExpenseCategoryUIState_Object_EntityUIState, A._$ExpenseCategoryStateSerializer, A._$ExpenseCategoryUIStateSerializer, A.ExpenseCategoryStateBuilder, A.ExpenseCategoryUIStateBuilder, A.ViewGroupList, A.ViewGroup, A.EditGroup, A.UpdateGroup, A.LoadGroup, A.LoadGroupRequest, A.LoadGroupFailure, A.LoadGroupSuccess, A.LoadGroupsRequest, A.LoadGroupsFailure, A.LoadGroupsSuccess, A.SaveGroupRequest, A.SaveGroupSuccess, A.AddGroupSuccess, A.SaveGroupFailure, A.ArchiveGroupRequest, A.ArchiveGroupSuccess, A.ArchiveGroupFailure, A.DeleteGroupRequest, A.DeleteGroupSuccess, A.DeleteGroupFailure, A.RestoreGroupRequest, A.RestoreGroupSuccess, A.RestoreGroupFailure, A.FilterGroups, A.SortGroups, A.FilterGroupsByState, A.StartGroupMultiselect, A.AddToGroupMultiselect, A.RemoveFromGroupMultiselect, A.ClearGroupMultiselect, A.SaveGroupDocumentRequest, A.SaveGroupDocumentFailure, A.GroupState, A._GroupUIState_Object_EntityUIState, A._$GroupStateSerializer, A._$GroupUIStateSerializer, A.GroupStateBuilder, A.GroupUIStateBuilder, A.ViewInvoiceList, A.ViewInvoice, A.EditInvoice, A.ShowEmailInvoice, A.ShowPdfInvoice, A.EditInvoiceItem, A.UpdateInvoice, A.UpdateInvoiceClient, A.LoadInvoice, A.LoadInvoices, A.LoadInvoiceRequest, A.LoadInvoiceFailure, A.LoadInvoiceSuccess, A.LoadInvoicesRequest, A.LoadInvoicesFailure, A.LoadInvoicesSuccess, A.AddInvoiceContact, A.RemoveInvoiceContact, A.AddInvoiceItem, A.MoveInvoiceItem, A.AddInvoiceItems, A.UpdateInvoiceItem, A.DeleteInvoiceItem, A.SaveInvoiceRequest, A.SaveInvoiceSuccess, A.AddInvoiceSuccess, A.SaveInvoiceFailure, A.EmailInvoiceRequest, A.EmailInvoiceSuccess, A.EmailInvoiceFailure, A.MarkInvoicesSentRequest, A.MarkInvoicesSentSuccess, A.MarkInvoicesSentFailure, A.BulkEmailInvoicesRequest, A.BulkEmailInvoicesSuccess, A.BulkEmailInvoicesFailure, A.MarkInvoicesPaidRequest, A.MarkInvoicesPaidSuccess, A.MarkInvoicesPaidFailure, A.CancelInvoicesRequest, A.CancelInvoicesSuccess, A.CancelInvoicesFailure, A.ArchiveInvoicesRequest, A.ArchiveInvoicesSuccess, A.ArchiveInvoicesFailure, A.DeleteInvoicesRequest, A.DeleteInvoicesSuccess, A.DeleteInvoicesFailure, A.DownloadInvoicesRequest, A.DownloadInvoicesSuccess, A.DownloadInvoicesFailure, A.RestoreInvoicesRequest, A.RestoreInvoicesSuccess, A.RestoreInvoicesFailure, A.FilterInvoices, A.SortInvoices, A.FilterInvoicesByState, A.FilterInvoicesByStatus, A.FilterInvoicesByCustom1, A.FilterInvoicesByCustom2, A.FilterInvoicesByCustom3, A.FilterInvoicesByCustom4, A.StartInvoiceMultiselect, A.AddToInvoiceMultiselect, A.RemoveFromInvoiceMultiselect, A.ClearInvoiceMultiselect, A.SaveInvoiceDocumentRequest, A.SaveInvoiceDocumentFailure, A.UpdateInvoiceTab, A.InvoiceState, A._InvoiceUIState_Object_EntityUIState, A._$InvoiceStateSerializer, A._$InvoiceUIStateSerializer, A.InvoiceStateBuilder, A.InvoiceUIStateBuilder, A.ViewPaymentList, A.ViewPayment, A.EditPayment, A.ViewRefundPayment, A.UpdatePayment, A.LoadPayment, A.LoadPayments, A.LoadPaymentRequest, A.LoadPaymentFailure, A.LoadPaymentSuccess, A.LoadPaymentsRequest, A.LoadPaymentsFailure, A.LoadPaymentsSuccess, A.SavePaymentRequest, A.SavePaymentSuccess, A.AddPaymentSuccess, A.SavePaymentFailure, A.RefundPaymentRequest, A.RefundPaymentSuccess, A.RefundPaymentFailure, A.ArchivePaymentsRequest, A.ArchivePaymentsSuccess, A.ArchivePaymentsFailure, A.DeletePaymentsRequest, A.DeletePaymentsSuccess, A.DeletePaymentsFailure, A.RestorePaymentsRequest, A.RestorePaymentsSuccess, A.RestorePaymentsFailure, A.EmailPaymentRequest, A.EmailPaymentSuccess, A.FilterPayments, A.SortPayments, A.FilterPaymentsByState, A.FilterPaymentsByCustom1, A.FilterPaymentsByCustom2, A.FilterPaymentsByCustom3, A.FilterPaymentsByCustom4, A.StartPaymentMultiselect, A.AddToPaymentMultiselect, A.RemoveFromPaymentMultiselect, A.ClearPaymentMultiselect, A.PaymentState, A._PaymentUIState_Object_EntityUIState, A._$PaymentStateSerializer, A._$PaymentUIStateSerializer, A.PaymentStateBuilder, A.PaymentUIStateBuilder, A.ViewPaymentTermList, A.ViewPaymentTerm, A.EditPaymentTerm, A.UpdatePaymentTerm, A.LoadPaymentTermRequest, A.LoadPaymentTermFailure, A.LoadPaymentTermSuccess, A.LoadPaymentTermsRequest, A.LoadPaymentTermsFailure, A.LoadPaymentTermsSuccess, A.SavePaymentTermRequest, A.SavePaymentTermSuccess, A.AddPaymentTermSuccess, A.SavePaymentTermFailure, A.ArchivePaymentTermsRequest, A.ArchivePaymentTermsSuccess, A.ArchivePaymentTermsFailure, A.DeletePaymentTermsRequest, A.DeletePaymentTermsSuccess, A.DeletePaymentTermsFailure, A.RestorePaymentTermsRequest, A.RestorePaymentTermsSuccess, A.RestorePaymentTermsFailure, A.FilterPaymentTerms, A.SortPaymentTerms, A.FilterPaymentTermsByState, A.FilterPaymentTermsByCustom1, A.FilterPaymentTermsByCustom2, A.FilterPaymentTermsByCustom3, A.FilterPaymentTermsByCustom4, A.StartPaymentTermMultiselect, A.AddToPaymentTermMultiselect, A.RemoveFromPaymentTermMultiselect, A.ClearPaymentTermMultiselect, A.PaymentTermState, A._PaymentTermUIState_Object_EntityUIState, A._$PaymentTermStateSerializer, A._$PaymentTermUIStateSerializer, A.PaymentTermStateBuilder, A.PaymentTermUIStateBuilder, A.ViewProductList, A.ViewProduct, A.EditProduct, A.UpdateProduct, A.LoadProductRequest, A.LoadProduct, A.LoadProductSuccess, A.LoadProductFailure, A.LoadProducts, A.LoadProductsRequest, A.LoadProductsFailure, A.LoadProductsSuccess, A.SaveProductRequest, A.SaveProductSuccess, A.AddProductSuccess, A.SaveProductFailure, A.ArchiveProductsRequest, A.ArchiveProductsSuccess, A.ArchiveProductsFailure, A.DeleteProductsRequest, A.DeleteProductsSuccess, A.DeleteProductsFailure, A.RestoreProductsRequest, A.RestoreProductsSuccess, A.RestoreProductsFailure, A.FilterProducts, A.SortProducts, A.FilterProductsByState, A.FilterProductsByCustom1, A.FilterProductsByCustom2, A.FilterProductsByCustom3, A.FilterProductsByCustom4, A.StartProductMultiselect, A.AddToProductMultiselect, A.RemoveFromProductMultiselect, A.ClearProductMultiselect, A.SaveProductDocumentRequest, A.SaveProductDocumentFailure, A.UpdateProductTab, A.ProductState, A._ProductUIState_Object_EntityUIState, A._$ProductStateSerializer, A._$ProductUIStateSerializer, A.ProductStateBuilder, A.ProductUIStateBuilder, A.ViewProjectList, A.ViewProject, A.EditProject, A.UpdateProject, A.LoadProject, A.LoadProjects, A.LoadProjectRequest, A.LoadProjectFailure, A.LoadProjectSuccess, A.LoadProjectsRequest, A.LoadProjectsFailure, A.LoadProjectsSuccess, A.SaveProjectRequest, A.SaveProjectSuccess, A.AddProjectSuccess, A.SaveProjectFailure, A.ArchiveProjectRequest, A.ArchiveProjectSuccess, A.ArchiveProjectFailure, A.DeleteProjectRequest, A.DeleteProjectSuccess, A.DeleteProjectFailure, A.RestoreProjectRequest, A.RestoreProjectSuccess, A.RestoreProjectFailure, A.FilterProjects, A.SortProjects, A.FilterProjectsByState, A.FilterProjectsByCustom1, A.FilterProjectsByCustom2, A.FilterProjectsByCustom3, A.FilterProjectsByCustom4, A.StartProjectMultiselect, A.AddToProjectMultiselect, A.RemoveFromProjectMultiselect, A.ClearProjectMultiselect, A.SaveProjectDocumentRequest, A.SaveProjectDocumentFailure, A.UpdateProjectTab, A.ProjectState, A._ProjectUIState_Object_EntityUIState, A._$ProjectStateSerializer, A._$ProjectUIStateSerializer, A.ProjectStateBuilder, A.ProjectUIStateBuilder, A.ViewPurchaseOrderList, A.ViewPurchaseOrder, A.EditPurchaseOrder, A.ShowEmailPurchaseOrder, A.ShowPdfPurchaseOrder, A.EditPurchaseOrderItem, A.UpdatePurchaseOrder, A.UpdatePurchaseOrderVendor, A.LoadPurchaseOrder, A.LoadPurchaseOrders, A.LoadPurchaseOrderRequest, A.LoadPurchaseOrderFailure, A.LoadPurchaseOrderSuccess, A.LoadPurchaseOrdersRequest, A.LoadPurchaseOrdersFailure, A.LoadPurchaseOrdersSuccess, A.SavePurchaseOrderDocumentRequest, A.SavePurchaseOrderDocumentFailure, A.SavePurchaseOrderRequest, A.SavePurchaseOrderSuccess, A.AddPurchaseOrderSuccess, A.SavePurchaseOrderFailure, A.BulkEmailPurchaseOrdersRequest, A.BulkEmailPurchaseOrdersSuccess, A.BulkEmailPurchaseOrdersFailure, A.ArchivePurchaseOrdersRequest, A.ArchivePurchaseOrdersSuccess, A.ArchivePurchaseOrdersFailure, A.DeletePurchaseOrdersRequest, A.DeletePurchaseOrdersSuccess, A.DeletePurchaseOrdersFailure, A.DownloadPurchaseOrdersRequest, A.DownloadPurchaseOrdersSuccess, A.DownloadPurchaseOrdersFailure, A.AcceptPurchaseOrdersRequest, A.AcceptPurchaseOrderSuccess, A.AcceptPurchaseOrderFailure, A.CancelPurchaseOrdersRequest, A.CancelPurchaseOrderSuccess, A.CancelPurchaseOrderFailure, A.RestorePurchaseOrdersRequest, A.RestorePurchaseOrdersSuccess, A.RestorePurchaseOrdersFailure, A.EmailPurchaseOrderRequest, A.EmailPurchaseOrderSuccess, A.EmailPurchaseOrderFailure, A.MarkPurchaseOrdersSentRequest, A.MarkPurchaseOrderSentSuccess, A.MarkPurchaseOrderSentFailure, A.ConvertPurchaseOrdersToExpensesRequest, A.ConvertPurchaseOrdersToExpensesSuccess, A.ConvertPurchaseOrdersToExpensesFailure, A.AddPurchaseOrdersToInventoryRequest, A.AddPurchaseOrdersToInventorySuccess, A.AddPurchaseOrdersToInventoryFailure, A.ApprovePurchaseOrderSuccess, A.ApprovePurchaseOrderFailure, A.AddPurchaseOrderContact, A.RemovePurchaseOrderContact, A.AddPurchaseOrderItem, A.MovePurchaseOrderItem, A.AddPurchaseOrderItems, A.UpdatePurchaseOrderItem, A.DeletePurchaseOrderItem, A.FilterPurchaseOrders, A.SortPurchaseOrders, A.FilterPurchaseOrdersByState, A.FilterPurchaseOrdersByStatus, A.FilterPurchaseOrdersByCustom1, A.FilterPurchaseOrdersByCustom2, A.FilterPurchaseOrdersByCustom3, A.FilterPurchaseOrdersByCustom4, A.StartPurchaseOrderMultiselect, A.AddToPurchaseOrderMultiselect, A.RemoveFromPurchaseOrderMultiselect, A.ClearPurchaseOrderMultiselect, A.UpdatePurchaseOrderTab, A.PurchaseOrderState, A._PurchaseOrderUIState_Object_EntityUIState, A._$PurchaseOrderStateSerializer, A._$PurchaseOrderUIStateSerializer, A.PurchaseOrderStateBuilder, A.PurchaseOrderUIStateBuilder, A.ViewQuoteList, A.ViewQuote, A.EditQuote, A.ShowEmailQuote, A.ShowPdfQuote, A.EditQuoteItem, A.UpdateQuote, A.UpdateQuoteClient, A.LoadQuote, A.LoadQuotes, A.LoadQuoteRequest, A.LoadQuoteFailure, A.LoadQuoteSuccess, A.LoadQuotesRequest, A.LoadQuotesFailure, A.LoadQuotesSuccess, A.AddQuoteContact, A.RemoveQuoteContact, A.AddQuoteItem, A.MoveQuoteItem, A.AddQuoteItems, A.UpdateQuoteItem, A.DeleteQuoteItem, A.SaveQuoteRequest, A.SaveQuoteSuccess, A.AddQuoteSuccess, A.SaveQuoteFailure, A.EmailQuoteRequest, A.EmailQuoteSuccess, A.EmailQuoteFailure, A.MarkSentQuotesRequest, A.MarkSentQuoteSuccess, A.MarkSentQuoteFailure, A.BulkEmailQuotesRequest, A.BulkEmailQuotesSuccess, A.BulkEmailQuotesFailure, A.ArchiveQuotesRequest, A.ArchiveQuotesSuccess, A.ArchiveQuotesFailure, A.DeleteQuotesRequest, A.DeleteQuotesSuccess, A.DeleteQuotesFailure, A.DownloadQuotesRequest, A.DownloadQuotesSuccess, A.DownloadQuotesFailure, A.RestoreQuotesRequest, A.RestoreQuotesSuccess, A.RestoreQuotesFailure, A.FilterQuotes, A.SortQuotes, A.FilterQuotesByState, A.FilterQuotesByStatus, A.FilterQuotesByCustom1, A.FilterQuotesByCustom2, A.FilterQuotesByCustom3, A.FilterQuotesByCustom4, A.ConvertQuotes, A.ConvertQuoteSuccess, A.ConvertQuoteFailure, A.ApproveQuotes, A.ApproveQuoteSuccess, A.ApproveQuoteFailure, A.SaveQuoteDocumentRequest, A.SaveQuoteDocumentFailure, A.StartQuoteMultiselect, A.AddToQuoteMultiselect, A.RemoveFromQuoteMultiselect, A.ClearQuoteMultiselect, A.UpdateQuoteTab, A.QuoteState, A._QuoteUIState_Object_EntityUIState, A._$QuoteStateSerializer, A._$QuoteUIStateSerializer, A.QuoteStateBuilder, A.QuoteUIStateBuilder, A.ViewRecurringExpenseList, A.ViewRecurringExpense, A.EditRecurringExpense, A.UpdateRecurringExpense, A.LoadRecurringExpense, A.LoadRecurringExpenses, A.LoadRecurringExpenseRequest, A.LoadRecurringExpenseFailure, A.LoadRecurringExpenseSuccess, A.LoadRecurringExpensesRequest, A.LoadRecurringExpensesFailure, A.LoadRecurringExpensesSuccess, A.SaveRecurringExpenseRequest, A.SaveRecurringExpenseSuccess, A.AddRecurringExpenseSuccess, A.SaveRecurringExpenseFailure, A.ArchiveRecurringExpensesRequest, A.ArchiveRecurringExpensesSuccess, A.ArchiveRecurringExpensesFailure, A.DeleteRecurringExpensesRequest, A.DeleteRecurringExpensesSuccess, A.DeleteRecurringExpensesFailure, A.RestoreRecurringExpensesRequest, A.RestoreRecurringExpensesSuccess, A.RestoreRecurringExpensesFailure, A.FilterRecurringExpenses, A.SortRecurringExpenses, A.FilterRecurringExpensesByState, A.FilterRecurringExpensesByCustom1, A.FilterRecurringExpensesByCustom2, A.FilterRecurringExpensesByCustom3, A.FilterRecurringExpensesByCustom4, A.StartRecurringExpenseMultiselect, A.AddToRecurringExpenseMultiselect, A.RemoveFromRecurringExpenseMultiselect, A.ClearRecurringExpenseMultiselect, A.UpdateRecurringExpenseTab, A.StartRecurringExpensesRequest, A.StartRecurringExpensesSuccess, A.StartRecurringExpensesFailure, A.StopRecurringExpensesRequest, A.StopRecurringExpensesSuccess, A.StopRecurringExpensesFailure, A.SaveRecurringExpenseDocumentRequest, A.SaveRecurringExpenseDocumentFailure, A.RecurringExpenseState, A._RecurringExpenseUIState_Object_EntityUIState, A._$RecurringExpenseStateSerializer, A._$RecurringExpenseUIStateSerializer, A.RecurringExpenseStateBuilder, A.RecurringExpenseUIStateBuilder, A.ViewRecurringInvoiceList, A.ViewRecurringInvoice, A.EditRecurringInvoice, A.ShowPdfRecurringInvoice, A.EditRecurringInvoiceItem, A.UpdateRecurringInvoice, A.UpdateRecurringInvoiceClient, A.LoadRecurringInvoice, A.LoadRecurringInvoices, A.LoadRecurringInvoiceRequest, A.LoadRecurringInvoiceFailure, A.LoadRecurringInvoiceSuccess, A.LoadRecurringInvoicesRequest, A.LoadRecurringInvoicesFailure, A.LoadRecurringInvoicesSuccess, A.AddRecurringInvoiceContact, A.RemoveRecurringInvoiceContact, A.SaveRecurringInvoiceRequest, A.SaveRecurringInvoiceSuccess, A.AddRecurringInvoiceSuccess, A.AddRecurringInvoiceItem, A.MoveRecurringInvoiceItem, A.AddRecurringInvoiceItems, A.UpdateRecurringInvoiceItem, A.DeleteRecurringInvoiceItem, A.SaveRecurringInvoiceFailure, A.ArchiveRecurringInvoicesRequest, A.ArchiveRecurringInvoicesSuccess, A.ArchiveRecurringInvoicesFailure, A.SendNowRecurringInvoicesRequest, A.SendNowRecurringInvoicesSuccess, A.SendNowRecurringInvoicesFailure, A.DeleteRecurringInvoicesRequest, A.DeleteRecurringInvoicesSuccess, A.DeleteRecurringInvoicesFailure, A.RestoreRecurringInvoicesRequest, A.RestoreRecurringInvoicesSuccess, A.RestoreRecurringInvoicesFailure, A.FilterRecurringInvoices, A.SortRecurringInvoices, A.FilterRecurringInvoicesByState, A.FilterRecurringInvoicesByStatus, A.FilterRecurringInvoicesByCustom1, A.FilterRecurringInvoicesByCustom2, A.FilterRecurringInvoicesByCustom3, A.FilterRecurringInvoicesByCustom4, A.SaveRecurringInvoiceDocumentRequest, A.SaveRecurringInvoiceDocumentFailure, A.StartRecurringInvoicesRequest, A.StartRecurringInvoicesSuccess, A.StartRecurringInvoicesFailure, A.StopRecurringInvoicesRequest, A.StopRecurringInvoicesSuccess, A.StopRecurringInvoicesFailure, A.StartRecurringInvoiceMultiselect, A.AddToRecurringInvoiceMultiselect, A.RemoveFromRecurringInvoiceMultiselect, A.ClearRecurringInvoiceMultiselect, A.UpdateRecurringInvoiceTab, A.RecurringInvoiceState, A._RecurringInvoiceUIState_Object_EntityUIState, A._$RecurringInvoiceStateSerializer, A._$RecurringInvoiceUIStateSerializer, A.RecurringInvoiceStateBuilder, A.RecurringInvoiceUIStateBuilder, A.ViewReports, A.UpdateReportSettings, A.ReportsUIState, A._$ReportsUIStateSerializer, A.ReportsUIStateBuilder, A.ViewSettings, A.ClearSettingsFilter, A.ResetSettings, A.UpdateSettings, A.UpdateSettingsTab, A.UpdatedSetting, A.UpdateSettingsTemplate, A.UpdateUserSettings, A.UploadLogoRequest, A.UploadLogoFailure, A.SaveUserSettingsRequest, A.SaveUserSettingsSuccess, A.SaveUserSettingsFailure, A.SaveAuthUserRequest, A.SaveAuthUserSuccess, A.SaveAuthUserFailure, A.ConnecOAuthUserRequest, A.ConnecOAuthUserSuccess, A.ConnecOAuthUserFailure, A.DisableTwoFactorRequest, A.DisableTwoFactorSuccess, A.DisableTwoFactorFailure, A.ConnecGmailUserSuccess, A.ConnecGmailUserFailure, A.FilterSettings, A.StaticState, A._$StaticStateSerializer, A.StaticStateBuilder, A.ViewSubscriptionList, A.ViewSubscription, A.EditSubscription, A.UpdateSubscription, A.LoadSubscriptionRequest, A.LoadSubscriptionFailure, A.LoadSubscriptionSuccess, A.LoadSubscriptionsRequest, A.LoadSubscriptionsFailure, A.LoadSubscriptionsSuccess, A.SaveSubscriptionRequest, A.SaveSubscriptionSuccess, A.AddSubscriptionSuccess, A.SaveSubscriptionFailure, A.ArchiveSubscriptionsRequest, A.ArchiveSubscriptionsSuccess, A.ArchiveSubscriptionsFailure, A.DeleteSubscriptionsRequest, A.DeleteSubscriptionsSuccess, A.DeleteSubscriptionsFailure, A.RestoreSubscriptionsRequest, A.RestoreSubscriptionsSuccess, A.RestoreSubscriptionsFailure, A.FilterSubscriptions, A.SortSubscriptions, A.FilterSubscriptionsByState, A.FilterSubscriptionsByCustom1, A.FilterSubscriptionsByCustom2, A.FilterSubscriptionsByCustom3, A.FilterSubscriptionsByCustom4, A.StartSubscriptionMultiselect, A.AddToSubscriptionMultiselect, A.RemoveFromSubscriptionMultiselect, A.ClearSubscriptionMultiselect, A.SubscriptionState, A._SubscriptionUIState_Object_EntityUIState, A._$SubscriptionStateSerializer, A._$SubscriptionUIStateSerializer, A.SubscriptionStateBuilder, A.SubscriptionUIStateBuilder, A.ViewTaskList, A.ViewTask, A.EditTask, A.UpdateTask, A.LoadTask, A.LoadTasks, A.LoadTaskRequest, A.LoadTaskFailure, A.LoadTaskSuccess, A.EditTaskTime, A.AddTaskTime, A.UpdateTaskTime, A.DeleteTaskTime, A.LoadTasksRequest, A.LoadTasksFailure, A.LoadTasksSuccess, A.SaveTaskRequest, A.SaveTaskSuccess, A.AddTaskSuccess, A.SaveTaskFailure, A.ArchiveTaskRequest, A.ArchiveTaskSuccess, A.ArchiveTaskFailure, A.StartTasksRequest, A.StartTasksSuccess, A.StartTasksFailure, A.StopTasksRequest, A.StopTasksSuccess, A.StopTasksFailure, A.DeleteTaskRequest, A.DeleteTaskSuccess, A.DeleteTaskFailure, A.RestoreTaskRequest, A.RestoreTaskSuccess, A.RestoreTaskFailure, A.SortTasksRequest, A.SortTasksSuccess, A.SortTasksFailure, A.FilterTasks, A.SortTasks, A.FilterTasksByState, A.FilterTasksByStatus, A.FilterTasksByCustom1, A.FilterTasksByCustom2, A.FilterTasksByCustom3, A.FilterTasksByCustom4, A.UpdateKanban, A.StartTaskMultiselect, A.AddToTaskMultiselect, A.RemoveFromTaskMultiselect, A.ClearTaskMultiselect, A.SaveTaskDocumentRequest, A.SaveTaskDocumentFailure, A.UpdateTaskTab, A.TaskState, A._TaskUIState_Object_EntityUIState, A._$TaskStateSerializer, A._$TaskUIStateSerializer, A.TaskStateBuilder, A.TaskUIStateBuilder, A.ViewTaskStatusList, A.ViewTaskStatus, A.EditTaskStatus, A.UpdateTaskStatus, A.LoadTaskStatusRequest, A.LoadTaskStatusFailure, A.LoadTaskStatusSuccess, A.LoadTaskStatusesRequest, A.LoadTaskStatusesFailure, A.LoadTaskStatusesSuccess, A.SaveTaskStatusRequest, A.SaveTaskStatusSuccess, A.AddTaskStatusSuccess, A.SaveTaskStatusFailure, A.ArchiveTaskStatusesRequest, A.ArchiveTaskStatusesSuccess, A.ArchiveTaskStatusesFailure, A.DeleteTaskStatusesRequest, A.DeleteTaskStatusesSuccess, A.DeleteTaskStatusesFailure, A.RestoreTaskStatusesRequest, A.RestoreTaskStatusesSuccess, A.RestoreTaskStatusesFailure, A.FilterTaskStatuses, A.SortTaskStatuses, A.FilterTaskStatusesByState, A.FilterTaskStatusesByCustom1, A.FilterTaskStatusesByCustom2, A.FilterTaskStatusesByCustom3, A.FilterTaskStatusesByCustom4, A.StartTaskStatusMultiselect, A.AddToTaskStatusMultiselect, A.RemoveFromTaskStatusMultiselect, A.ClearTaskStatusMultiselect, A.TaskStatusState, A._TaskStatusUIState_Object_EntityUIState, A._$TaskStatusStateSerializer, A._$TaskStatusUIStateSerializer, A.TaskStatusStateBuilder, A.TaskStatusUIStateBuilder, A.ViewTaxRateList, A.ViewTaxRate, A.EditTaxRate, A.UpdateTaxRate, A.LoadTaxRateRequest, A.LoadTaxRateFailure, A.LoadTaxRateSuccess, A.LoadTaxRatesRequest, A.LoadTaxRatesFailure, A.LoadTaxRatesSuccess, A.SaveTaxRateRequest, A.SaveTaxRateSuccess, A.AddTaxRateSuccess, A.SaveTaxRateFailure, A.ArchiveTaxRateRequest, A.ArchiveTaxRatesSuccess, A.ArchiveTaxRateFailure, A.DeleteTaxRateRequest, A.DeleteTaxRatesSuccess, A.DeleteTaxRateFailure, A.RestoreTaxRateRequest, A.RestoreTaxRatesSuccess, A.RestoreTaxRateFailure, A.FilterTaxRates, A.SortTaxRates, A.FilterTaxRatesByState, A.StartTaxRateMultiselect, A.AddToTaxRateMultiselect, A.RemoveFromTaxRateMultiselect, A.ClearTaxRateMultiselect, A.TaxRateState, A._TaxRateUIState_Object_EntityUIState, A._$TaxRateStateSerializer, A._$TaxRateUIStateSerializer, A.TaxRateStateBuilder, A.TaxRateUIStateBuilder, A.ViewTokenList, A.ViewToken, A.EditToken, A.UpdateToken, A.LoadTokenRequest, A.LoadTokenFailure, A.LoadTokenSuccess, A.LoadTokensRequest, A.LoadTokensFailure, A.LoadTokensSuccess, A.SaveTokenRequest, A.SaveTokenSuccess, A.AddTokenSuccess, A.SaveTokenFailure, A.ArchiveTokensRequest, A.ArchiveTokensSuccess, A.ArchiveTokensFailure, A.DeleteTokensRequest, A.DeleteTokensSuccess, A.DeleteTokensFailure, A.RestoreTokensRequest, A.RestoreTokensSuccess, A.RestoreTokensFailure, A.FilterTokens, A.SortTokens, A.FilterTokensByState, A.FilterTokensByCustom1, A.FilterTokensByCustom2, A.FilterTokensByCustom3, A.FilterTokensByCustom4, A.StartTokenMultiselect, A.AddToTokenMultiselect, A.RemoveFromTokenMultiselect, A.ClearTokenMultiselect, A.TokenState, A._TokenUIState_Object_EntityUIState, A._$TokenStateSerializer, A._$TokenUIStateSerializer, A.TokenStateBuilder, A.TokenUIStateBuilder, A.EntityUIState, A.ListUIState, A._$ListUIStateSerializer, A.ListUIStateBuilder, A.PrefState, A.PrefStateSortField, A.CompanyPrefState, A.HistoryRecord, A._$PrefStateSerializer, A._$PrefStateSortFieldSerializer, A._$CompanyPrefStateSerializer, A._$AppLayoutSerializer, A._$ModuleLayoutSerializer, A._$AppSidebarModeSerializer, A._$HistoryRecordSerializer, A.PrefStateBuilder, A.PrefStateSortFieldBuilder, A.CompanyPrefStateBuilder, A.HistoryRecordBuilder, A.UpdateCurrentRoute, A.UIState, A._$UIStateSerializer, A.UIStateBuilder, A.ViewUserList, A.ViewUser, A.EditUser, A.UpdateUser, A.LoadUserRequest, A.LoadUserFailure, A.LoadUserSuccess, A.LoadUsersRequest, A.LoadUsersFailure, A.LoadUsersSuccess, A.SaveUserRequest, A.SaveUserSuccess, A.AddUserSuccess, A.SaveUserFailure, A.ArchiveUserRequest, A.ArchiveUserSuccess, A.ArchiveUserFailure, A.DeleteUserRequest, A.DeleteUserSuccess, A.DeleteUserFailure, A.RestoreUserRequest, A.RestoreUserSuccess, A.RestoreUserFailure, A.RemoveUserRequest, A.RemoveUserSuccess, A.RemoveUserFailure, A.ResendInviteRequest, A.ResendInviteSuccess, A.ResendInviteFailure, A.FilterUsers, A.SortUsers, A.FilterUsersByState, A.FilterUsersByCustom1, A.FilterUsersByCustom2, A.FilterUsersByCustom3, A.FilterUsersByCustom4, A.StartUserMultiselect, A.AddToUserMultiselect, A.RemoveFromUserMultiselect, A.ClearUserMultiselect, A.UserState, A._UserUIState_Object_EntityUIState, A._$UserStateSerializer, A._$UserUIStateSerializer, A.UserStateBuilder, A.UserUIStateBuilder, A.ViewVendorList, A.ViewVendor, A.EditVendor, A.UpdateVendor, A.LoadVendor, A.LoadVendors, A.LoadVendorRequest, A.LoadVendorFailure, A.LoadVendorSuccess, A.LoadVendorsRequest, A.LoadVendorsFailure, A.LoadVendorsSuccess, A.SaveVendorRequest, A.SaveVendorSuccess, A.AddVendorSuccess, A.SaveVendorFailure, A.ArchiveVendorRequest, A.ArchiveVendorSuccess, A.ArchiveVendorFailure, A.DeleteVendorRequest, A.DeleteVendorSuccess, A.DeleteVendorFailure, A.RestoreVendorRequest, A.RestoreVendorSuccess, A.RestoreVendorFailure, A.EditVendorContact, A.AddVendorContact, A.UpdateVendorContact, A.DeleteVendorContact, A.FilterVendors, A.SortVendors, A.FilterVendorsByState, A.FilterVendorsByCustom1, A.FilterVendorsByCustom2, A.FilterVendorsByCustom3, A.FilterVendorsByCustom4, A.StartVendorMultiselect, A.AddToVendorMultiselect, A.RemoveFromVendorMultiselect, A.ClearVendorMultiselect, A.SaveVendorDocumentRequest, A.SaveVendorDocumentFailure, A.UpdateVendorTab, A.VendorState, A._VendorUIState_Object_EntityUIState, A._$VendorStateSerializer, A._$VendorUIStateSerializer, A.VendorStateBuilder, A.VendorUIStateBuilder, A.ViewWebhookList, A.ViewWebhook, A.EditWebhook, A.UpdateWebhook, A.LoadWebhookRequest, A.LoadWebhookFailure, A.LoadWebhookSuccess, A.LoadWebhooksRequest, A.LoadWebhooksFailure, A.LoadWebhooksSuccess, A.SaveWebhookRequest, A.SaveWebhookSuccess, A.AddWebhookSuccess, A.SaveWebhookFailure, A.ArchiveWebhooksRequest, A.ArchiveWebhooksSuccess, A.ArchiveWebhooksFailure, A.DeleteWebhooksRequest, A.DeleteWebhooksSuccess, A.DeleteWebhooksFailure, A.RestoreWebhooksRequest, A.RestoreWebhooksSuccess, A.RestoreWebhooksFailure, A.FilterWebhooks, A.SortWebhooks, A.FilterWebhooksByState, A.FilterWebhooksByCustom1, A.FilterWebhooksByCustom2, A.FilterWebhooksByCustom3, A.FilterWebhooksByCustom4, A.StartWebhookMultiselect, A.AddToWebhookMultiselect, A.RemoveFromWebhookMultiselect, A.ClearWebhookMultiselect, A.WebhookState, A._WebhookUIState_Object_EntityUIState, A._$WebhookStateSerializer, A._$WebhookUIStateSerializer, A.WebhookStateBuilder, A.WebhookUIStateBuilder, A.ConfirmEmailVM, A.__AutocompleteEntity_Object_SelectableEntity, A.AppDrawerVM, A.MenuDrawerVM, A._TheState, A.EntityPresenter, A.DataColumn0, A.DataRow0, A.DataCell0, A.LoginVM, A.ClientListVM, A.ClientPdfVM, A.ClientScreenVM, A.ClientEditContactsVM, A.ClientEditVM, A.ClientViewVM, A.CompanyGatewayListVM, A.CompanyGatewayScreenVM, A.CompanyGatewayEditVM, A.CompanyGatewayViewVM, A.EmailEntityVM, A.EntityListVM, A.EntityPdfVM, A.CreditScreenVM, A.EntityEditDetailsVM, A.EntityEditItemsVM, A.EntityEditNotesVM, A.EntityEditPDFVM, A.AbstractInvoiceEditVM, A.AbstractInvoiceViewVM, A.DashboardVM, A.DesignListVM, A.DesignScreenVM, A.DesignEditVM, A.DesignViewVM, A.DocumentListVM, A.DocumentScreenVM, A.DocumentEditVM, A.DocumentViewVM, A.AbstractExpenseEditVM, A.ExpenseListVM, A.ExpenseScreenVM, A.AbstractExpenseViewVM, A.ExpenseCategoryEditVM, A.ExpenseCategoryListVM, A.ExpenseCategoryScreenVM, A.ExpenseCategoryViewVM, A.GroupEditVM, A.GroupListVM, A.GroupScreenVM, A.GroupViewVM, A.EntityEditContactsVM, A.InvoiceScreenVM, A.PaymentEditVM, A.PaymentListVM, A.PaymentScreenVM, A.PaymentRefundVM, A.PaymentViewVM, A.PaymentTermEditVM, A.PaymentTermListVM, A.PaymentTermScreenVM, A.PaymentTermViewVM, A.ProductEditVM, A.ProductListVM, A.ProductScreenVM, A.ProductViewVM, A.ProjectEditVM, A.ProjectListVM, A.ProjectScreenVM, A.ProjectViewVM, A.PurchaseOrderScreenVM, A.QuoteScreenVM, A.RecurringExpenseListVM, A.RecurringExpenseScreenVM, A.RecurringInvoiceListVM, A.RecurringInvoiceScreenVM, A.ReportResult, A.ReportElement, A.ReportsScreenVM, A.GroupTotals, A.AccountManagementVM, A.ClientPortalVM, A.CompanyDetailsVM, A.CreditCardsAndBanksVM, A.CustomFieldsVM, A.DataVisualizationsVM, A.DeviceSettingsVM, A.EmailSettingsVM, A.ExpenseSettingsVM, A.GeneratedNumbersVM, A.ImportExportVM, A.InvoiceDesignVM, A.LocalizationSettingsVM, A.PaymentSettingsVM, A.ProductSettingsVM, A.SettingsListVM, A.SettingsScreenVM, A.TaskSettingsVM, A.TaxSettingsVM, A.TemplatesAndRemindersVM, A.UserDetailsVM, A.WorkflowSettingsVM, A.SubscriptionEditVM, A.SubscriptionListVM, A.SubscriptionScreenVM, A.SubscriptionViewVM, A.TaskEditDetailsVM, A.TaskEditTimesVM, A.TaskEditVM, A.KanbanVM, A.TaskListVM, A.TaskScreenVM, A.TaskViewVM, A.TaskStatusEditVM, A.TaskStatusListVM, A.TaskStatusScreenVM, A.TaskStatusViewVM, A.TaxRateEditVM, A.TaxRateListVM, A.TaxRateScreenVM, A.TaxRateViewVM, A.TokenEditVM, A.TokenListVM, A.TokenScreenVM, A.TokenViewVM, A.UserEditVM, A.UserListVM, A.UserScreenVM, A.UserViewVM, A.VendorEditContactsVM, A.VendorEditVM, A.VendorListVM, A.VendorScreenVM, A.VendorViewVM, A.WebhookEditVM, A.WebhookViewVM, A.WebhookListVM, A.WebhookScreenVM, A.Debouncer, A.PersistUIDebouncer, A.LocaleCodeAware, A.LocalizationsProvider, A._MarkdownToDocument, A._InlineMarkdownToDocument, A.LinkifyElement, A.Linkifier, A.LinkifyOptions, A.AndroidAuthMessages, A.IOSAuthMessages, A.LocalAuthentication, A.Level, A.LogRecord, A.Logger, A.Element1, A.Text1, A.UnparsedContent, A.BlockParser, A.BlockSyntax, A.ListItem, A.Document0, A.LinkReference, A.ExtensionSet, A.InlineParser, A.InlineSyntax, A.SimpleDelimiter, A.DelimiterRun, A.InlineLink, A.AuthenticationResult, A.Configuration, A.BrowserAuthOptions, A.PublicClientApplication, A.CommonEndSessionRequest, A.CommonAuthorizationUrlRequest, A.MsalJsException, A.ImageHandler, A.Context, A.Style, A.ParsedPath, A.PathException, A.MissingPlatformDirectoryException, A.PdfPageFormat, A.Permission, A.Platform0, A.PdfRaster, A.Mutex, A.PdfPreviewActionBounds, A.PdfPreviewRaster, A.PrintJob, A.PrintJobs, A.PrintingInfo, A._QrBitBuffer_Object_ListMixin, A.QrByte, A.InputTooLongException, A.QrPolynomial, A.QrCode, A.QrImage, A.QrRsBlock, A.PaintCache, A._PaintMetrics, A.QrEyeStyle, A.QrDataModuleStyle, A.QrValidationResult, A.MiddlewareClass, A.Store, A.TypedReducer, A.TypedMiddleware, A.RoundedLoadingButtonController, A._Wrapper, A.ForwardingSink, A._Empty, A.ErrorAndStackTrace, A._MultiControllerSink, A.EnvironmentVariables, A.HubAdapter, A.NoOpClient, A.NoOpHub, A.ISentrySpan, A.Platform1, A.PlatformChecker, A.Breadcrumb, A.SentryLevel, A.SpanStatus, A.SentryMeasurement, A.SentryOptions, A.NoOpTransport, A.SentryFlutterWeb, A.SentryNative, A.NativeFrames, A.SharedPreferences, A.SharedPreferencesStorePlatform, A.AuthorizationCredentialAppleID, A.AppleIDAuthorizationRequest, A.SignInWithAppleNotSupportedException, A.SignInWithAppleAuthorizationException, A.SignInWithAppleCredentialsException, A.WebAuthenticationOptions, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.SourceSpanException, A.InjectedBaseState, A._Rebuild, A.ReactiveModelBase, A.ReactiveModelListener, A.SnapState, A.MiddleSnapState, A.LifeCycleHooks, A.SideEffects, A._On, A._OnWidget, A.On, A.OnCombined, A.StringScanner, A.DocumentRange, A.DocumentPosition, A.DocumentNode, A._DocumentComposer_Object_ChangeNotifier, A._ComposerPreferences_Object_ChangeNotifier, A.DocumentEditor, A.EditorCommandFunction, A.DocumentEditorTransaction, A._MutableDocument_Object_ChangeNotifier, A.DocumentComponent, A.MovementModifier, A.DocumentSelection, A.DocumentNodeSelection, A.EditContext, A.Stylesheet, A.StyleRule, A.BlockSelector, A._LastBlockMatcher, A.CascadingPadding, A.SelectionStyles, A.LinkAttribution, A.BlockquoteComponentBuilder, A.SingleColumnLayoutComponentViewModel, A.CommonEditorOperations, A._PasteEditorCommand, A.AxisOffset, A._MagnifierAndToolbarController_Object_ChangeNotifier, A.DragHandleAutoScroller, A._FloatingCursorController_Object_ChangeNotifier, A.DocumentImeSerializer, A.ImeConfiguration, A.SoftwareKeyboardHandler, A.HorizontalRuleComponentBuilder, A.ImageComponentBuilder, A.SingleColumnDocumentComponentContext, A.SingleColumnLayoutPresenter, A.SingleColumnLayoutPresenterChangeListener, A.SingleColumnLayoutStylePhase, A.SingleColumnLayoutViewModel, A.SingleColumnLayoutComponentStyles, A.ListItemComponentBuilder, A.IndentListItemCommand, A.UnIndentListItemCommand, A.ConvertListItemToParagraphCommand, A.ConvertParagraphToListItemCommand, A.ChangeListItemTypeCommand, A.SplitListItemCommand, A.DeleteSelectionCommand, A.ParagraphComponentBuilder, A.CombineParagraphsCommand, A.SplitParagraphCommand, A.UpstreamDownstreamNodePosition, A.UpstreamDownstreamNodeSelection, A.DebugPaintConfig, A.TextComponentViewModel, A.ToggleTextAttributionsCommand, A.InsertTextCommand, A.UnknownComponentBuilder, A.Logger0, A.AutoScroller, A._TapTracker0, A._CountdownZoned0, A.Platform, A.CaretStyle, A._BlinkController_Object_ChangeNotifier, A.UserSelection, A.ProseTextBlock, A.RenderParagraphProseTextLayout, A.SelectionHighlightStyle, A.ArMessages, A.CaMessages, A.CsMessages, A.DaMessages, A.DeMessages, A.EnMessages, A.EnShortMessages, A.EsMessages, A.EsShortMessages, A.FaMessages, A.FrMessages, A.FrShortMessages, A.ItMessages, A.ItShortMessages, A.JaMessages, A.NbNoShortMessages, A.NbNoMessages, A.NlMessages, A.NlShortMessages, A.PlMessages, A.PtBrMessages, A.PtBrShortMessages, A.RoMessages, A.RoShortMessages, A.RuMessages, A.RuShortMessages, A.SvMessages, A.SvShortMessages, A.ThMessages, A.ThShortMessages, A.ZhMessages, A.Uuid, A.Matrix3, A.Matrix4, A.Quad, A.Quaternion, A.Vector3, A.Vector4, A.Version]); _inheritMany(A.Closure, [A.Closure0Args, A.Closure2Args, A.AppBootstrap_prepareEngineInitializer_closure0, A.AppBootstrap__prepareAppRunner_closure, A.AssetManager__baseUrl_closure, A.ProductionCollector_closure, A.patchCanvasKitModule_closure0, A.patchCanvasKitModule_closure2, A.HtmlViewEmbedder_getOverlayCanvases_closure, A.HtmlViewEmbedder_submitFrame_closure, A.HtmlViewEmbedder_submitFrame_closure0, A.HtmlViewEmbedder__updateOverlays_closure, A.FontFallbackData_ensureFontsSupportText_closure, A._registerSymbolsAndEmoji_extractUrlFromCss, A.findMinimumFontsForCodeUnits_closure, A.findMinimumFontsForCodeUnits_closure0, A.NotoDownloader_downloadAsBytes_closure, A.NotoDownloader_downloadAsBytes__closure, A.NotoDownloader_downloadAsString_closure, A.NotoDownloader_downloadAsString__closure, A.SkiaFontCollection__getArrayBuffer_closure, A.fetchImage_closure, A.fetchImage_closure0, A.fetchImage_closure1, A.downloadCanvasKit_closure0, A._downloadCanvasKitJs_closure, A.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree, A.IntervalTree_IntervalTree$createFromRanges__computeHigh, A._getEffectiveFontFamilies_closure, A.ClipboardMessageHandler_setDataMethodCall_closure, A.ClipboardMessageHandler_setDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall_closure, A.ClipboardMessageHandler_getDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall__closure, A.FlutterViewEmbedder_reset_closure, A.FlutterViewEmbedder_setPreferredOrientation_closure, A.FlutterViewEmbedder_setPreferredOrientation_closure0, A.sendFontChangeMessage_closure, A.sendFontChangeMessage__closure, A.NormalizedGradient_NormalizedGradient_closure, A.HtmlCodec_getNextFrame_closure, A.HtmlCodec_getNextFrame_closure0, A.HtmlCodec__decodeUsingOnLoad_closure, A.HtmlCodec__decodeUsingOnLoad_closure0, A.initializeEngineServices__closure, A._addUrlStrategyListener_closure, A.Keyboard$__closure, A.Keyboard$__closure0, A.Keyboard__handleHtmlEvent_closure0, A._kLogicalKeyToModifierGetter_closure, A._kLogicalKeyToModifierGetter_closure0, A._kLogicalKeyToModifierGetter_closure1, A._kLogicalKeyToModifierGetter_closure2, A._kLogicalKeyToModifierGetter_closure3, A._kLogicalKeyToModifierGetter_closure4, A._kLogicalKeyToModifierGetter_closure5, A._kLogicalKeyToModifierGetter_closure6, A.KeyboardBinding__addEventListener_loggedHandler, A.KeyboardBinding__onKeyData_closure, A.KeyboardBinding__setup_closure, A.KeyboardBinding__setup_closure0, A.KeyboardConverter__scheduleAsyncEvent_closure, A.KeyboardConverter_handleEvent_closure, A.MultiEntriesBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure0, A.HashUrlStrategy__waitForPopState_closure, A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure0, A.EnginePlatformDispatcher__sendPlatformMessage_closure1, A.EnginePlatformDispatcher__sendPlatformMessage_closure2, A.EnginePlatformDispatcher__sendPlatformMessage_closure3, A.EnginePlatformDispatcher__sendPlatformMessage_closure4, A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure, A.EnginePlatformDispatcher_replyToPlatformMessage_closure, A._BaseAdapter_addEventListener_loggedHandler, A._WheelEventListenerMixin__addWheelEventListener_closure, A._PointerAdapter__addPointerEventListener_closure, A._PointerAdapter_setup_closure, A._PointerAdapter_setup_closure0, A._PointerAdapter_setup_closure1, A._PointerAdapter_setup_closure2, A._PointerAdapter_setup_closure3, A._TouchAdapter__addTouchEventListener_closure, A._TouchAdapter_setup_closure, A._TouchAdapter_setup_closure0, A._TouchAdapter_setup_closure1, A._TouchAdapter_setup_closure2, A._MouseAdapter__addMouseEventListener_closure, A._MouseAdapter_setup_closure, A._MouseAdapter_setup_closure0, A._MouseAdapter_setup_closure1, A._MouseAdapter_setup_closure2, A.Incrementable_closure, A.Incrementable_closure0, A.Scrollable_update_closure0, A.Scrollable_update_closure1, A._roleFactories_closure, A._roleFactories_closure0, A._roleFactories_closure1, A._roleFactories_closure2, A._roleFactories_closure3, A._roleFactories_closure4, A._roleFactories_closure5, A._roleFactories_closure6, A.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.Tappable_update_closure, A.TextField__initializeForBlink_closure, A.TextField__initializeForWebkit_closure, A.TextField__initializeForWebkit_closure0, A.FontManager__loadFontFace_closure, A.FontManager__loadFontFace_closure0, A._PolyfillFontManager_registerAsset_closure, A.EngineAutofillForm_fromFrameworkMessage_closure, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure, A.DefaultTextEditingStrategy_addEventHandlers_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1, A.IOSTextEditingStrategy_addEventHandlers_closure, A.IOSTextEditingStrategy_addEventHandlers_closure0, A.IOSTextEditingStrategy__addTapListener_closure, A.AndroidTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure0, A.HybridTextEditing__startEditing_closure, A.futurize_closure, A.bytesToHexString_closure, A._HeaderValue__parse_expect, A._HeaderValue__parse_maybeExpect, A._CastListBase_removeWhere_closure, A._CastListBase_retainWhere_closure, A.CastMap_entries_closure, A.ConstantStringMap_values_closure, A.GeneralConstantMap__typeTest_closure, A.Instantiation, A.TearOffClosure, A.JsLinkedHashMap_values_closure, A.JsLinkedHashMap_containsValue_closure, A.initHooks_closure, A.initHooks_closure1, A._AsyncRun__initializeScheduleImmediate_internalCallback, A._AsyncRun__initializeScheduleImmediate_closure, A._awaitOnObject_closure, A._asyncStarHelper_closure0, A._SyncBroadcastStreamController__sendData_closure, A._SyncBroadcastStreamController__sendError_closure, A._SyncBroadcastStreamController__sendDone_closure, A.Future_wait_closure, A._Future__chainForeignFuture_closure, A._Future__propagateToListeners_handleWhenCompleteCallback_closure, A._Future_timeout_closure0, A.Stream_Stream$fromFuture_closure, A.Stream_pipe_closure, A.Stream_fold_closure0, A.Stream_fold__closure0, A.Stream_forEach_closure0, A.Stream_forEach__closure0, A.Stream_length_closure, A.Stream_isEmpty_closure0, A.Stream_toList_closure, A.Stream_first_closure0, A._StreamHandlerTransformer_closure, A._RootZone_bindUnaryCallbackGuarded_closure, A._HashMap_values_closure, A._CustomHashMap_closure, A._LinkedCustomHashMap_closure, A.MapMixin_entries_closure, A.SplayTreeMap_closure, A.SplayTreeSet_closure, A._JsonMap_values_closure, A._BigIntImpl_hashCode_finish, A._BigIntImpl_toDouble_readBits, A.DateTime_parse_parseIntOrZero, A.DateTime_parse_parseMilliAndMicroseconds, A._Uri__makePath_closure, A._createTables_setChars, A._createTables_setRange, A.CanvasElement_toBlob_closure, A._ChildrenElementList__filter_closure, A.Element_Element$html_closure, A.Entry_remove_closure0, A.HttpRequest_request_closure, A._EventStreamSubscription_closure, A._EventStreamSubscription_onData_closure, A.NodeValidatorBuilder_allowsElement_closure, A.NodeValidatorBuilder_allowsAttribute_closure, A._SimpleNodeValidator_closure, A._SimpleNodeValidator_closure0, A._TemplatingNodeValidator_closure, A._convertDartToNative_Value_closure, A.FilteredElementList__iterable_closure, A.FilteredElementList__iterable_closure0, A.FilteredElementList_removeRange_closure0, A._FileStream__readBlock_closure, A._FileStream__start_onReady, A._FileStream__start_onOpenFile, A._File_open_closure, A._File_length_closure, A._File_readAsBytes_readDataChunked, A._File_readAsBytes_readDataChunked_read_closure, A._File_readAsBytes_closure, A._File_readAsBytes__closure, A.JsObject__convertDataTree__convert, A._convertToJS_closure, A._convertToJS_closure0, A._wrapToDart_closure, A._wrapToDart_closure0, A._wrapToDart_closure1, A._convertDataTree__convert, A.promiseToFuture_closure, A.promiseToFuture_closure0, A.KeyData__quotedCharCode_closure, A.webOnlyInstantiateImageCodecFromUrl_closure, A.decodeImageFromPixels_executeCallback, A.decodeImageFromPixels_executeCallback_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure0, A.AttributedSpans__getEndingMarkerAtOrAfter_closure, A.AttributedSpans__getEndingMarkerAtOrAfter_closure0, A.AttributedSpans_addAttribution_closure, A.AttributedSpans_addAttribution_closure0, A.AttributedSpans_addAttribution_closure1, A.AttributedSpans_addAttribution_closure2, A.AttributedSpans_removeAttribution_closure, A.AttributedSpans_removeAttribution_closure0, A.AttributedSpans_removeAttribution_closure1, A.AttributedSpans_removeAttribution_closure2, A.AttributedSpans_removeAttribution_closure3, A.AttributedSpans_removeAttribution_closure4, A.AttributedSpans__isContinuousAttribution_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure0, A.AttributedSpans__getMarkerAt_closure, A.AttributedSpans__getMarkerAt_closure0, A.AttributedSpans__getMarkerAt_closure1, A.AttributedSpans__insertMarker_closure, A.AttributedSpans__mergeBackToBackAttributions_closure, A.AttributedSpans__mergeBackToBackAttributions_closure0, A.AttributedSpans__mergeBackToBackAttributions_closure1, A.AttributedSpans_copyAttributionRegion_closure, A.AttributedSpans_copyAttributionRegion_closure0, A.AttributedSpans_copyAttributionRegion_closure2, A.AttributedSpans_copyAttributionRegion_closure3, A.AttributedSpans_copyAttributionRegion_closure4, A.AttributedSpans_copyAttributionRegion_closure5, A.AttributedSpans_pushAttributionsBack_closure, A.AttributedSpans_contractAttributions_closure, A.AttributedSpans_contractAttributions_closure0, A.AttributedSpans_contractAttributions_closure1, A.AttributedSpans_contractAttributions_closure2, A.AttributedSpans_contractAttributions_closure3, A.BoardItemState_build_closure, A.BoardItemState_build_closure3, A.BoardListState_build_closure2, A.BoardViewState_build_closure, A.BoardViewState_build_closure3, A.BoardViewState_build_closure5, A.BoardViewState_build_closure4, A.BoardViewState_build_closure6, A.BuiltListMultimap_BuiltListMultimap_closure, A.BuiltListMultimap_hashCode_closure, A.BuiltListMultimap_forEach__closure, A.ListMultimapBuilder_replace_closure, A.BuiltMap_BuiltMap_closure, A.BuiltMap_BuiltMap$from_closure, A.BuiltMap_hashCode_closure, A.BuiltSet_hashCode_closure, A.BuiltSetMultimap_hashCode_closure, A.BuiltSetMultimap_forEach__closure, A.SetMultimapBuilder_replace_closure, A.newBuiltValueToStringHelper_closure, A.BuiltListMultimapSerializer_serialize_closure, A.BuiltListMultimapSerializer_deserialize_closure, A.BuiltListSerializer_serialize_closure, A.BuiltListSerializer_deserialize_closure, A.BuiltSetMultimapSerializer_serialize_closure, A.BuiltSetMultimapSerializer_deserialize_closure, A.BuiltSetSerializer_serialize_closure, A.BuiltSetSerializer_deserialize_closure, A.StandardJsonPlugin__toList_closure, A.StandardJsonPlugin__toListUsingDiscriminator_closure, A.MultiImageStreamCompleter_closure, A.BaseBarRenderer_preprocessSeries_closure, A.BaseBarRenderer_preprocessSeries__closure0, A.BaseBarRenderer_preprocessSeries__closure2, A.BaseBarRenderer_preprocessSeries_closure0, A.BaseBarRenderer_update_closure, A.BaseBarRenderer_update__closure0, A.BaseBarRenderer_paint__closure0, A.BaseBarRenderer_paint__closure, A.BaseBarRenderer_getNearestDatumDetailPerSeries_closure, A.BaseBarRenderer__getSegmentsForDomainValue_closure0, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0, A.Axis__updateAxisTicks_closure, A.Axis__updateAxisTicks_closure0, A.Axis_paint_closure, A.BaseTickDrawStrategy_splitLabel_closure, A.BaseTickDrawStrategy_getLabelWidth_closure, A.NoneDrawStrategy_decorateTicks_closure, A.SimpleTickFormatterBase_format_closure, A.NumericTickFormatter__getFormatter_closure, A.CartesianChart_makeSeries_closure, A.BaseCartesianRenderer_configureDomainAxes_closure, A.BaseCartesianRenderer_configureMeasureAxes_closure, A.BaseChart_init_closure, A.BaseChart_pointWithinRenderer_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure, A.BaseChart_draw_closure, A.BaseChart_drawInternal_closure, A.BaseChart_configureSeries_closure, A.BaseChart_preprocessSeries_closure, A.BaseChart_preprocessSeries_closure0, A.BaseChart_paint_closure, A.BaseChart_fireOnDraw_closure, A.BaseChart_fireOnPreprocess_closure, A.BaseChart_fireOnPostprocess_closure, A.BaseChart_fireOnAxisConfigured_closure, A.BaseChart_fireOnPostrender_closure, A.BaseChart_fireOnAnimationComplete_closure, A.DomainHighlighter__updateColorFunctions_closure, A.DomainHighlighter__updateColorFunctions__closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure0, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure0, A.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal, A.SeriesLegend_onData_closure0, A.SeriesLegend_onData_closure, A.SeriesLegend_preProcessSeriesList_closure, A.SeriesLegend_showSeries_closure, A.SelectNearest__onSelect_closure0, A.SelectNearest__extractSeriesFromNearestSelection_closure, A.MutableSeries_closure, A.MutableSelectionModel_updateSelection_closure, A.MutableSelectionModel_updateSelection_closure0, A.BaseSeriesRenderer_assignMissingColors_closure, A.BaseSeriesRenderer_assignMissingColors__closure3, A.BaseSeriesRenderer_assignMissingColors_closure0, A.BaseSeriesRenderer_assignMissingColors__closure2, A.BaseSeriesRenderer_assignMissingColors_closure1, A.BaseSeriesRenderer_assignMissingColors_closure2, A.BaseSeriesRenderer_assignMissingColors__closure0, A.BaseSeriesRenderer_assignMissingColors__closure1, A.BaseSeriesRenderer_assignMissingColors_closure3, A.BaseSeriesRenderer_assignMissingColors__closure, A.BaseSeriesRenderer_assignMissingColors_closure4, A.LayoutManagerImpl_drawableLayoutAreaBounds_closure, A.LayoutManagerImpl_layout_closure, A.LayoutManagerImpl__viewsForPositions_closure, A.VerticalMarginStrategy_measure_closure, A.LeftMarginLayoutStrategy_layout_closure, A.RightMarginLayoutStrategy_layout_closure, A.HorizontalMarginStrategy_measure_closure, A.TopMarginLayoutStrategy_layout_closure, A.BottomMarginLayoutStrategy_layout_closure, A.LineRenderer_configureSeries_closure, A.LineRenderer_configureSeries__closure, A.LineRenderer_preprocessSeries_closure, A.LineRenderer_preprocessSeries_closure0, A.LineRenderer_preprocessSeries__closure, A.LineRenderer__mergeIntoSeriesMap_closure, A.LineRenderer__mergeIntoSeriesMap__closure, A.LineRenderer_update_closure, A.LineRenderer_update__closure, A.LineRenderer_update___closure, A.LineRenderer__createBoundsSegment_closure, A.LineRenderer__createBoundsSegment_closure0, A.LineRenderer_paint__closure7, A.LineRenderer_paint__closure, A.LineRenderer_paint__closure0, A.LineRenderer_paint__closure1, A.LineRenderer_paint__closure2, A.LineRenderer_paint__closure3, A.LineRenderer_paint__closure4, A.LineRenderer_paint__closure5, A.LineRenderer_paint__closure6, A.PointRenderer_paint__closure1, A.PointRenderer_paint__closure, A.PointRenderer_paint__closure0, A.PointRenderer_paint___closure, A.PointRenderer_paint___closure0, A.PointRenderer_paint___closure1, A.PointRenderer_paint___closure2, A.GestureListener_defaultTapTest_closure, A.MaterialPalette__orderedPalettes_closure10, A.Performance_time_closure, A.Performance_timeEnd_closure, A.ProxyGestureListener_onLongPress_closure, A.ProxyGestureListener_onTap_closure, A.ProxyGestureListener_onDragStart_closure, A.ProxyGestureListener_onDragUpdate_closure, A.ProxyGestureListener_onDragEnd_closure, A.ProxyGestureListener__cancel_closure, A.ProxyGestureListener__populateActiveListeners_closure, A.Series_Series_closure0, A.Series_Series_closure1, A.Series_Series_closure2, A.Series_Series_closure, A.BaseChart__updateBehaviors_closure, A.BaseChart__updateBehaviors_closure0, A.BaseChart__notACustomBehavior_closure, A.BaseChart__updateSelectionModel_closure, A.BaseChart__updateSelectionModel_closure0, A.BaseChart_getDesiredGestures_closure, A.BaseChart_getDesiredGestures_closure0, A.BaseLegendContentBuilder_build_closure, A.SimpleLegendEntryLayout_makeTapUpCallback_closure, A.TabularLegendLayout_build_closure, A.TabularLegendLayout__buildTableFromRows_closure, A.TabularLegendLayout__buildTableFromRows_closure1, A._FlutterSeriesLegend_build_closure, A.ChartContainerRenderObject_requestAnimation_startAnimationController, A.ChartContainerRenderObject_requestRebuild_doRebuild, A.getChartContainerRenderObject_closure, A.CanonicalizedMap_entries_closure, A.CanonicalizedMap_keys_closure, A.CanonicalizedMap_values_closure, A._FileSink_addStream_closure, A._FileSink_close_closure, A._FileSink__addData_closure, A._MemoryFileSystem_findNode_closure, A.MemoryFileSystemEntity_internalCreateSync_closure, A.resolveLinks_closure, A.ErrorCodes_EINVAL_closure, A.ErrorCodes_EISDIR_closure, A.ErrorCodes_ELOOP_closure, A.ErrorCodes_ENOENT_closure, A.ErrorCodes_ENOTDIR_closure, A.ErrorCodes_ENOTEMPTY_closure, A.FilePickerWeb_pickFiles_changeEventListener, A.FilePickerWeb_pickFiles_changeEventListener_addPickedFile, A.FilePickerWeb_pickFiles_changeEventListener_closure, A.FilePickerWeb_pickFiles_changeEventListener_closure0, A.FilePickerWeb_pickFiles_cancelledEventListener, A.FilePickerWeb_pickFiles_cancelledEventListener_closure, A.FilePickerMacOS_resultStringToFilePaths_closure, A.FilePickerMacOS_resultStringToFilePaths_closure0, A.FilePickerMacOS_resultStringToFilePaths_closure1, A.FilePickerMacOS_resultStringToFilePaths__closure, A.KDialogHandler_fileTypeToFileFilter_closure, A.KDialogHandler_resultStringToFilePaths_closure, A.QarmaAndZenityHandler_resultStringToFilePaths_closure, A.filePathsToPlatformFiles_closure, A.filePathsToPlatformFiles_closure0, A._CupertinoButtonState__animate_closure, A._CupertinoBackGestureController_dragEnd_closure, A._CupertinoEdgeShadowDecoration_lerp_closure, A._CupertinoEdgeShadowDecoration_lerp_closure0, A._CupertinoScrollbarState_handleThumbPress_closure, A.CupertinoThemeData_resolveFrom_convertColor, A.NoDefaultCupertinoThemeData_resolveFrom_convertColor, A._CupertinoThemeDefaults_resolveFrom_convertColor, A.FlutterErrorDetails_summary_closure, A.FlutterErrorDetails_debugFillProperties_closure, A.FlutterError_FlutterError_closure, A.FlutterError_defaultStackFilter_closure, A.FlutterError_defaultStackFilter_closure0, A.FlutterError_toString_closure, A.debugPrintStack_closure, A.BindingBase_initServiceExtensions_closure0, A.BindingBase_initServiceExtensions_closure2, A.BindingBase_registerBoolServiceExtension_closure, A.BindingBase_registerNumericServiceExtension_closure, A.BindingBase_registerStringServiceExtension_closure, A._PrefixedStringBuilder__wordWrapLine_noWrap, A.TextTreeRenderer__debugRender_visitor, A.TextTreeRenderer__debugRender_closure, A.StackFrame_fromStackString_closure, A.SynchronousFuture_whenComplete_closure, A._GestureArena_toString_closure, A.PointerEventConverter_expand_closure, A.PointerEventConverter_expand_closure0, A.MultiDragGestureRecognizer_acceptGesture_closure, A.showLicensePage_closure, A._PackagesViewState_licenses_closure0, A._PackagesViewState_build___closure, A._PackagesViewState__initDefaultDetailPage_closure, A._PackagesViewState__packagesList_closure, A._PackagesViewState__packagesList___closure, A._MasterDetailFlowState__nestedUI_closure0, A._MasterDetailFlowState__masterPageRoute_closure, A._MasterDetailFlowState__detailPageRoute_closure, A._MasterDetailFlowState__lateralUI_closure0, A._MasterDetailScaffoldState_openDetailPage_closure, A._MasterDetailScaffoldState_setInitialDetailPage_closure, A._MasterDetailScaffoldState_build_closure, A._MaterialAppState__materialBuilder_closure, A._MaterialAppState__buildWidgetApp_closure, A.MaterialRectArcTween__initialize_closure, A._ButtonStyleState_build_effectiveValue, A._ButtonStyleState_build_resolve, A._ButtonStyleState_build_resolve_closure, A._ButtonStyleState_build_closure, A._ButtonStyleState_build_closure0, A._ButtonStyleState_build_closure1, A._ButtonStyleState_build_closure2, A._ButtonStyleState_build_closure3, A._ButtonStyleState_build_closure4, A._ButtonStyleState_build_closure5, A._ButtonStyleState_build_closure6, A._ButtonStyleState_build_closure7, A._ButtonStyleState_build_closure8, A._ButtonStyleState_build_closure9, A._ButtonStyleState_build_closure10, A._ButtonStyleState_build_closure18, A._ButtonStyleState_build__closure0, A._ButtonStyleState_build_closure19, A._ButtonStyleState_build__closure, A._ButtonStyleState_build_closure11, A._ButtonStyleState_build_closure12, A._ButtonStyleState_build_closure13, A._ButtonStyleState_build_closure14, A._ButtonStyleState_build_closure15, A._ButtonStyleState_build_closure16, A._ButtonStyleState_build_closure17, A._MonthPickerState_didUpdateWidget_closure, A._CheckboxState__widgetFillColor_closure, A._CheckboxState__defaultFillColor_closure, A._CheckboxState_build_closure, A.DataTable_build_closure3, A.DataTable_build_closure, A.DataTable_build_closure0, A.DataTable_build_closure1, A.DataTable_build_closure2, A.DataTable_build_closure4, A.showDatePicker_closure, A._DatePickerDialogState_build_closure, A.DialogRoute_closure, A._DropdownRoutePage_build_closure, A._DropdownButtonState_initState_closure, A._DropdownButtonState_initState_closure0, A._DropdownButtonState__updateSelectedIndex_closure, A._DropdownButtonState__handleTap_closure, A._DropdownButtonState__handleTap_closure0, A._DropdownButtonState_build_closure, A.DropdownButtonFormField_closure, A.DropdownButtonFormField__closure, A.DropdownButtonFormField__closure0, A._ExpansionPanelListState_build_closure, A._InkResponseState_highlightsExist_closure, A._InputDatePickerFormFieldState_didUpdateWidget_closure, A._RenderDecoration_paint_doPaint, A._InputDecoratorState__getIconColor__resolveIconColor, A._RenderListTile_paint_doPaint, A.ListTileTheme_merge_closure, A._MaterialState_build_closure, A._MaterialInteriorState_forEachTween_closure, A._MaterialInteriorState_forEachTween_closure0, A._MaterialInteriorState_forEachTween_closure1, A._MaterialInteriorState_forEachTween_closure2, A.MaterialStateMixin_updateMaterialState_closure, A._MergeableMaterialState_didUpdateWidget_closure, A._MergeableMaterialState_didUpdateWidget_closure0, A._ZoomPageTransition_build_closure, A._ZoomPageTransition_build_closure0, A._ZoomPageTransition_build_closure1, A._ZoomPageTransition_build_closure2, A.PageTransitionsTheme__all_closure, A.PaginatedDataTableState__getBlankRowFor_closure, A.PaginatedDataTableState__getProgressIndicatorRowFor_closure, A._PopupMenu_build_closure, A._PopupMenuRoute_buildPage_closure, A.PopupMenuButtonState_showButtonMenu_closure, A._RadioState__widgetFillColor_closure, A._RadioState__defaultFillColor_closure, A._RadioState_build_closure, A.RefreshIndicatorState__show_closure, A.ScaffoldMessengerState_hideCurrentSnackBar_closure, A.ScaffoldState_hideCurrentSnackBar_closure, A._MaterialScrollbarState__trackVisibility_closure, A._MaterialScrollbarState__thumbColor_closure, A._MaterialScrollbarState__trackColor_closure, A._MaterialScrollbarState__trackBorderColor_closure, A._MaterialScrollbarState__thickness_closure, A._MaterialSwitchState__widgetThumbColor_closure, A._MaterialSwitchState__defaultThumbColor_closure, A._MaterialSwitchState__widgetTrackColor_closure, A._MaterialSwitchState__defaultTrackColor_closure, A._MaterialSwitchState_build_closure, A._TabBarState_initState_closure, A._TabBarState_build_closure, A._TextFieldState_build_closure3, A._TextFieldState_build_closure4, A.TextFormField_closure, A.TextFormField_closure_onChangedHandler, A._AnimatedThemeState_forEachTween_closure, A.ThemeData__lerpThemeExtensions_closure0, A.TimeOfDay_toString__addLeadingZeroIfNeeded, A._HourMinuteControl_build_closure, A._HourMinuteControl_build_closure0, A._HourControl_build_hoursFromSelected, A._DayPeriodControl_build_closure, A._DayPeriodControl_build_closure0, A._DialPainter_paint_getOffsetForTheta, A._DialPainter_paint_paintLabels, A.showTimePicker_closure, A.ToggleButtons_build_closure, A.TooltipState__createNewEntry_closure, A.TooltipState__createNewEntry_closure0, A.TooltipState__createNewEntry_closure1, A.TooltipState_build_closure, A.TooltipState_build_closure0, A._CompoundBorder_scale_closure, A._CompoundBorder_toString_closure, A.ClipContext_clipPathAndPaint_closure, A.ClipContext_clipRRectAndPaint_closure, A.ClipContext_clipRectAndPaint_closure, A.paintImage_closure, A._sample_closure, A._interpolateColorsAndStops_closure, A.LinearGradient_scale_closure, A._CachedImageBase_dispose_closure, A.ImageProvider_resolve_closure0, A.ImageProvider__createErrorHandlerAndKey_closure, A.AssetImage_obtainKey_closure, A.ImageStreamCompleter_reportError_closure, A.ImageStreamCompleter_reportImageChunkEvent_closure, A.InlineSpan_getSpanForPosition_closure, A.InlineSpan_codeUnitAt_closure, A._ShapeDecorationPainter__precache_closure, A._ShapeDecorationPainter__precache_closure0, A.TextSpan_debugDescribeChildren_closure, A.TextStyle_fontFamilyFallback_closure, A.RendererBinding__scheduleMouseTrackerUpdate_closure, A.BoxConstraints_toString_describe, A.RenderEditable__extractPlaceholderSpans_closure, A.RenderEditable_getBoxesForSelection_closure, A.RenderEditable_describeSemanticsConfiguration_closure, A.RenderListBody_computeMinIntrinsicWidth_closure, A.RenderListBody_computeMinIntrinsicWidth_closure0, A.RenderListBody_computeMaxIntrinsicWidth_closure, A.RenderListBody_computeMaxIntrinsicWidth_closure0, A.RenderListBody_computeMinIntrinsicHeight_closure, A.RenderListBody_computeMinIntrinsicHeight_closure0, A.RenderListBody_computeMaxIntrinsicHeight_closure, A.RenderListBody_computeMaxIntrinsicHeight_closure0, A.MouseTracker__handleDeviceUpdate_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure0, A.RenderObject_reassemble_closure, A.RenderObject__updateCompositingBits_closure, A.RenderObject_clearSemantics_closure, A.RenderObject__getSemanticsForParent_closure, A.RenderParagraph__extractPlaceholderSpans_closure, A.RenderParagraph_describeSemanticsConfiguration_closure, A._factoriesTypeSet_closure, A._PlatformViewGestureRecognizer_closure, A.RenderSliverHelpers_hitTestBoxChild_closure, A.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage__closure, A.RenderSliverPersistentHeader_layoutChild_closure, A.RenderStack_computeMinIntrinsicWidth_closure, A.RenderStack_computeMaxIntrinsicWidth_closure, A.RenderStack_computeMinIntrinsicHeight_closure, A.RenderStack_computeMaxIntrinsicHeight_closure, A.RenderViewportBase_visitChildrenForSemantics_closure, A.RenderViewportBase_hitTestChildren_closure, A.SchedulerBinding_endOfFrame_closure, A.SchedulerBinding__handleDrawFrame_closure, A.TickerFuture_whenCompleteOrCancel_thunk, A.SemanticsNode_getSemanticsData_closure, A.SemanticsNode__childrenInTraversalOrder_closure, A.SemanticsNode_debugDescribeChildren_closure, A._SemanticsSortGroup_sortedWithinVerticalGroup_closure, A._SemanticsSortGroup_sortedWithinKnot_search, A._SemanticsSortGroup_sortedWithinKnot_closure0, A._SemanticsSortGroup_sortedWithinKnot_closure1, A._childrenInDefaultOrder_closure, A.SemanticsOwner_sendSemanticsUpdate_closure, A.SemanticsOwner__getSemanticsActionHandlerForId_closure, A.SemanticsConfiguration__addArgumentlessAction_closure, A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorForwardByWord_closure, A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure, A.SemanticsConfiguration_onSetSelection_closure, A.SemanticsConfiguration_onSetText_closure, A.CachingAssetBundle_loadStructuredData_closure, A._AutofillScopeTextInputConfiguration_toJson_closure, A.AutofillScopeMixin_attach_closure, A._DefaultBinaryMessenger_send_closure, A.BasicMessageChannel_setMessageHandler_closure, A.MethodChannel_setMethodCallHandler_closure, A.RawKeyboard__synchronizeModifiers_closure, A.RestorationManager_handleRestorationUpdateFromEngine_closure, A.RestorationManager_scheduleSerializationFor_closure, A.RestorationBucket__visitChildren_closure, A.FilteringTextInputFormatter__processRegion_adjustIndex, A.TextEditingValue_replaced_adjustIndex, A.TextInputConnection_setSelectionRects_closure, A.TextInput__handleTextInputInvocation_closure, A.TextInput__handleTextInputInvocation_closure0, A.TextInput__handleTextInputInvocation_closure1, A._getParent_closure, A.Actions__findDispatcher_closure, A.Actions_maybeFind_closure, A.Actions__maybeFindWithoutDependingOn_closure, A.Actions_invoke_closure, A._FocusableActionDetectorState_initState_closure, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight, A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight, A._FocusableActionDetectorState_didUpdateWidget_closure, A._AnimatedCrossFadeState_initState_closure, A._AnimatedSwitcherState__newEntry_closure, A._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure, A._WidgetsAppState__onGenerateRoute_closure, A._WidgetsAppState_build_closure, A._StreamBuilderBaseState__subscribe_closure, A._FutureBuilderState__subscribe_closure, A._RawAutocompleteState__updateOverlay_closure, A._RawAutocompleteState__updateOverlay_closure0, A._RawAutocompleteState__updateOverlay__closure, A.AutofillGroupState_autofillClients_closure, A._AutomaticKeepAliveState__addClient_closure, A._AutomaticKeepAliveState__getChildElement_closure, A.ClipPath_shape_closure, A.RichText__extractChildren_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure, A.DisplayFeatureSubScreen_avoidBounds_closure, A.DisplayFeatureSubScreen_avoidBounds_closure0, A.EditableTextState_cutSelection_closure, A.EditableTextState_pasteText_closure, A.EditableTextState_didChangeDependencies_closure, A.EditableTextState__scheduleShowCaretOnScreen_closure, A.EditableTextState_didChangeMetrics_closure, A.EditableTextState__updateSelectionRects_closure, A.EditableTextState__updateSelectionRects_closure0, A.EditableTextState__updateSelectionRects_closure1, A.EditableTextState__updateSizeAndTransform_closure, A.EditableTextState__updateComposingRectIfNeeded_closure, A.EditableTextState__updateCaretRectIfNeeded_closure, A.EditableTextState__actions_closure, A.EditableTextState_build_closure0, A._Editable__extractChildren_closure, A._ScribbleFocusableState_isInScribbleRect_closure, A._UpdateTextSelectionAction_invoke__collapse, A._throttle_closure, A.FocusNode_traversalDescendants_closure, A.FocusNode_debugDescribeChildren_closure, A._getAncestor_closure, A.FocusTraversalPolicy__sortAllDescendants_visitGroups, A.FocusTraversalPolicy__sortAllDescendants_closure, A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1, A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure3, A._ReadingOrderSortData_commonDirectionalityOf_closure, A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors, A._ReadingOrderDirectionalGroupData_rect_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand_closure, A.FormState__fieldDidChange_closure, A._InactiveElements__unmount_closure, A.Element_reassemble_closure, A.Element_renderObject_visit, A.Element_updateSlotForChild_visit, A.Element__updateDepth_closure, A.Element_detachRenderObject_closure, A.Element_attachRenderObject_closure, A.Element_debugDescribeChildren_closure, A.ParentDataElement__applyParentData_applyParentDataToChild, A.RenderObjectElement_updateChildren_replaceWithNullIfForgotten, A.MultiChildRenderObjectElement_children_closure, A.GestureDetector_build_closure0, A.GestureDetector_build_closure2, A.GestureDetector_build_closure4, A.GestureDetector_build_closure6, A.GestureDetector_build_closure8, A.GestureDetector_build_closure10, A.GestureDetector_build_closure12, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1, A.Hero__allHeroesFor_visitor, A.HeroController_didStopUserGesture_isInvalidFlight, A.HeroController__maybeStartHeroTransition_closure, A.IconTheme_merge_closure, A.ImplicitlyAnimatedWidgetState_initState_closure, A.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure, A.ImplicitlyAnimatedWidgetState__constructTweens_closure, A._AnimatedContainerState_forEachTween_closure, A._AnimatedContainerState_forEachTween_closure0, A._AnimatedContainerState_forEachTween_closure1, A._AnimatedContainerState_forEachTween_closure2, A._AnimatedContainerState_forEachTween_closure3, A._AnimatedContainerState_forEachTween_closure4, A._AnimatedContainerState_forEachTween_closure5, A._AnimatedContainerState_forEachTween_closure6, A._AnimatedPaddingState_forEachTween_closure, A._AnimatedOpacityState_forEachTween_closure, A._AnimatedDefaultTextStyleState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure0, A._AnimatedPhysicalModelState_forEachTween_closure1, A._AnimatedPhysicalModelState_forEachTween_closure2, A.InheritedTheme_capture_closure, A._loadAll_closure, A._loadAll_closure0, A._loadAll_closure1, A._LocalizationsState_load_closure, A._LocalizationsState_load_closure0, A.MediaQueryData_removeDisplayFeatures_closure, A.Route_didPush_closure, A.Route_didAdd_closure, A.Route_isCurrent_closure, A.Route_isFirst_closure, A.Route_isActive_closure, A.Navigator_defaultGenerateInitialRoutes_closure, A._RouteEntry_dispose_closure, A._RouteEntry_isRoutePredicate_closure, A.NavigatorState_restoreState_closure, A.NavigatorState__flushHistoryUpdates_closure, A.NavigatorState__afterNavigation_closure, A.NavigatorState_maybePop_closure, A.NavigatorState_maybePop_closure1, A.NavigatorState_removeRoute_closure, A.OverlayEntry_remove_closure, A._RenderTheatre_computeMinIntrinsicWidth_closure, A._RenderTheatre_computeMaxIntrinsicWidth_closure, A._RenderTheatre_computeMinIntrinsicHeight_closure, A._RenderTheatre_computeMaxIntrinsicHeight_closure, A.PageStorageBucket__allKeys_closure, A._PageViewState_build_closure, A.HtmlElementView__createHtmlElementView_closure, A._PlatformViewLinkState__initialize_closure, A.SliverReorderableListState__dragStart_closure, A._ReorderableItemState_updateForGap_closure, A.ReorderableDragStartListener_build_closure, A._DragInfo_startDrag_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary_closure, A.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd, A.TransitionRoute__setSecondaryAnimation_closure, A.LocalHistoryRoute_removeLocalHistoryEntry_closure, A._ModalScopeState_build_closure0, A._ModalScopeState_build__closure, A.ScrollAwareImageProvider_resolveStreamForKey_closure, A.ScrollBehavior_velocityTrackerBuilder_closure, A.ScrollBehavior_velocityTrackerBuilder_closure0, A.ScrollNotificationObserverState_build_closure, A.ScrollPosition_forcePixels_closure, A.ScrollView_build_closure0, A.ScrollableState_setCanDrag_closure0, A.ScrollableState_setCanDrag_closure2, A.ScrollbarPainter_update__needPaint, A.RawScrollbarState__gestures_closure0, A.RawScrollbarState__gestures__closure, A.RawScrollbarState__gestures__closure0, A.RawScrollbarState__gestures__closure1, A.RawScrollbarState__gestures_closure2, A.RawScrollbarState_build_closure, A.RawScrollbarState_build_closure0, A.LogicalKeySet__triggers_closure, A.SliverMultiBoxAdaptorElement_performRebuild_processElement, A.Table_closure, A.Table_closure0, A._TableElement_mount_closure, A._TableElement_mount__closure, A._TableElement_update_closure, A._TableElement_update_closure0, A._TableElement__updateRenderObjectChildren_closure, A._TableElement__updateRenderObjectChildren__closure, A._TableElement_visitChildren_closure, A.SelectionOverlay__markNeedsBuild_closure, A._TextSelectionGestureDetectorState_build_closure0, A._TextSelectionGestureDetectorState_build_closure2, A._TextSelectionGestureDetectorState_build_closure4, A._TextSelectionGestureDetectorState_build_closure6, A.CacheStore_closure, A.CacheStore_retrieveCacheData_closure, A.WebHelper__manageResponse_closure, A.WebHelper__saveFileAndPostUpdates_closure, A._BlockPickerState_build_closure, A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats, A.SlidableAction_build_closure, A.SlidableAutoCloseBehaviorListener_build_closure, A.SlidableAutoCloseNotificationSender_build_closure, A._SlidableAutoCloseBarrierNotificationSenderState_dispose_closure, A._SlidableAutoCloseBarrierBehaviorListenerState_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure, A._RenderFlexEntranceTransition_getTotalFlex_closure, A._RenderFlexEntranceTransition_performLayout_closure, A.showToastWidget_closure, A._StyledToastState_build_closure, A.ToastManager_dismissAll_closure, A.Registrar_send_closure, A.GoogleSignIn__ensureInitialized_closure, A.GoogleSignIn__waitFor_closure, A.GoogleSignIn__addMethodCall_closure, A.GoogleSignIn_signIn_isCanceled, A.GoogleSignIn_signIn_closure, A.MethodChannelGoogleSignIn_getTokens_closure, A.GoogleSignInPlugin_closure, A.GoogleSignInPlugin_init_closure, A.GoogleSignInPlugin_init_closure0, A.NodeList_retainWhere_closure, A.FilteredElementList_removeRange_closure, A.InTableTextPhase_flushCharacters_closure, A._CssClassSetImpl_add_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure0, A.SelectorEvaluator_visitPseudoClassSelector__closure, A.SelectorEvaluator_visitAttributeSelector_closure, A.HtmlTokenizer_consumeEntity_closure, A._escape_closure, A._escape_closure0, A._escape_closure1, A._escape_closure2, A._escape_closure3, A._escape__closure, A._escape_closure4, A._escape_closure5, A._escape_closure6, A._escape_closure7, A._escape_closure8, A._postProcess_closure, A.Rule_findRule_closure, A.Rule_findRule_closure0, A.Rule__buildFilterFn_closure, A._CommonRules_indentedCodeBlock_closure, A._CommonRules_fencedCodeBlock_closure, A._CommonRules_inlineLink_closure, A._CommonRules_referenceLink_closure0, A._CommonRules_code_closure, A._CommonRules_code__closure, A.countSiblingEl_closure, A.get_closure, A.readBytes_closure, A.BaseRequest_closure0, A.BrowserClient_send_closure, A.BrowserClient_send_closure0, A.ByteStream_toBytes_closure, A.mapToQuery_closure0, A.onDone_closure, A.CaseInsensitiveMap$from_closure, A.MediaType_toString__closure, A.expectQuotedString_closure, A.PngDecoder_decodeFrame_closure, A.ImagePickerPlugin__getSelectedXFiles_closure, A.ImagePickerPlugin__getSelectedXFiles__closure, A.ImagePickerPlugin__getSelectedXFiles_closure0, A.DateSymbols_DateSymbols$deserializeFromMap__getStringList, A.Intl__pluralRule_closure, A.DateFormat_dateTimeConstructor_closure, A.DateFormat__checkDateOnly_closure, A.DateFormat__initDigitMatcher_closure, A.DateFormat__initDigitMatcher_closure0, A._DateFormatPatternField_parseEnumeratedString_closure, A._DateFormatPatternField_parseStandaloneDay_closure, A.NumberFormat_NumberFormat_closure, A.NumberFormat_NumberFormat$decimalPattern_closure, A.ClientEntity_ClientEntity_closure, A.ClientEntity_primaryContact_closure, A.ClientEntity_emailContacts_closure, A.ClientEntity_hasEmailAddress_closure, A.ClientEntity_getContact_closure, A.CompanyGatewayEntity_updateConfig_closure, A.CompanyEntity_getCustomFieldValues_closure, A.CompanyEntity_coreCompany_closure, A.GatewayEntity_supportsTokenBilling_closure, A.GatewayEntity_supportsRefunds_closure, A.UserCompanyEntity_UserCompanyEntity_closure, A.UserCompanyEntity__initializeBuilder_closure, A.DesignEntity_clone_closure, A.HasActivities_getActivities_closure, A.ExpenseEntity_clone_closure, A.InvoiceEntity_InvoiceEntity_closure, A.InvoiceEntity_InvoiceEntity_closure0, A.InvoiceEntity_moveLineItem_closure, A.InvoiceEntity_moveLineItem_closure0, A.InvoiceEntity_recreateInvitations_closure0, A.InvoiceEntity_recreateInvitations_closure, A.InvoiceEntity_recreateInvitations_closure2, A.InvoiceEntity_recreateInvitations_closure1, A.InvoiceEntity_clone_closure, A.InvoiceEntity_clone__closure, A.InvoiceEntity_clone__closure0, A.InvoiceEntity_applyClient_closure, A.InvoiceEntity_applyVendor_closure, A.InvoiceEntity_history_closure, A.InvoiceEntity_history_closure0, A.InvoiceEntity_hasTasks_closure, A.InvoiceEntity_hasProducts_closure, A.InvoiceEntity_hasExpenses_closure, A.InvoiceEntity_applyTax_closure, A.InvoiceEntity_applyTax_closure0, A.InvoiceEntity_applyTax_closure1, A.InvoiceEntity_isViewed_closure, A.InvoiceEntity_getInvitationForClientContact_closure, A.InvoiceEntity_getInvitationForVendorContact_closure, A.InvoiceItemEntity_taxAmount_calculateTaxAmount, A.InvoiceItemEntity_applyTax_closure, A.InvoiceItemEntity_applyTax_closure0, A.InvoiceItemEntity_applyTax_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure, A.CalculateInvoiceTotal_calculateTaxes__closure, A.CalculateInvoiceTotal_calculateTaxes__closure1, A.CalculateInvoiceTotal_calculateTaxes__closure3, A.CalculateInvoiceTotal_calculateTaxes_closure0, A.CalculateInvoiceTotal_calculateTaxes_closure2, A.CalculateInvoiceTotal_calculateTaxes_closure4, A.CalculateInvoiceTotal_getTaxable_closure, A.CalculateInvoiceTotal_calculateTotal_closure, A.CalculateInvoiceTotal_calculateSubtotal_closure, A.PaymentEntity_invoicePaymentables_closure, A.PaymentEntity_creditPaymentables_closure, A.PaymentEntity_invoiceId_closure, A.ProductEntity_clone_closure, A.ProjectEntity_clone_closure, A.SettingsEntity_setFieldsForSection_closure, A.SettingsEntity_setFieldsForSection_closure0, A.TaskTime_stop_closure, A.TaskEntity_clone_closure, A.TaskEntity_areTimesValid_closure, A.TaskEntity_getInvalidTimeIndices_closure, A.TaskEntity_isRunning_closure, A.TaskEntity_getTaskTimes_closure, A.TaskEntity_addTaskTime_closure, A.TaskEntity_updateTaskTime_closure, A.TaskEntity_deleteTaskTime_closure, A.TaskEntity_calculateDuration_closure, A.VendorEntity_VendorEntity_closure, A.VendorEntity_emailContacts_closure, A.VendorEntity_primaryContact_closure, A.VendorEntity_hasEmailAddress_closure, A.VendorEntity_getContact_closure, A.ClientRepository_saveData_closure, A.CreditRepository_saveData_closure, A.InvoiceRepository_saveData_closure, A.ProductRepository_saveData_closure, A.PurchaseOrderRepository_saveData_closure, A.QuoteRepository_saveData_closure, A._parseError__closure, A._initialState_closure, A.InvoiceNinjaAppState_initState_closure, A.InvoiceNinjaAppState_generateRoute_closure, A.InvoiceNinjaAppState_generateRoute_closure0, A.InvoiceNinjaAppState_build_closure, A.InvoiceNinjaAppState_build__closure, A.InvoiceNinjaAppState_build__closure0, A.InvoiceNinjaAppState_build__closure1, A.InvoiceNinjaAppState_build__closure2, A.InvoiceNinjaAppState_build__closure3, A.InvoiceNinjaAppState_build__closure4, A.InvoiceNinjaAppState_build__closure5, A.InvoiceNinjaAppState_build__closure6, A.InvoiceNinjaAppState_build__closure7, A.InvoiceNinjaAppState_build__closure8, A.InvoiceNinjaAppState_build__closure9, A.InvoiceNinjaAppState_build__closure10, A.InvoiceNinjaAppState_build__closure11, A.InvoiceNinjaAppState_build__closure12, A.InvoiceNinjaAppState_build__closure13, A.InvoiceNinjaAppState_build__closure14, A.InvoiceNinjaAppState_build__closure15, A.InvoiceNinjaAppState_build__closure16, A.InvoiceNinjaAppState_build__closure17, A.InvoiceNinjaAppState_build__closure18, A.InvoiceNinjaAppState_build__closure19, A.InvoiceNinjaAppState_build__closure20, A.InvoiceNinjaAppState_build__closure21, A.InvoiceNinjaAppState_build__closure22, A.InvoiceNinjaAppState_build__closure23, A.InvoiceNinjaAppState_build__closure24, A.InvoiceNinjaAppState_build__closure25, A.InvoiceNinjaAppState_build__closure26, A.InvoiceNinjaAppState_build__closure27, A.InvoiceNinjaAppState_build__closure28, A.InvoiceNinjaAppState_build__closure29, A.InvoiceNinjaAppState_build__closure30, A.InvoiceNinjaAppState_build__closure31, A.InvoiceNinjaAppState_build__closure32, A.InvoiceNinjaAppState_build__closure33, A.InvoiceNinjaAppState_build__closure34, A.InvoiceNinjaAppState_build__closure35, A.InvoiceNinjaAppState_build__closure36, A.InvoiceNinjaAppState_build__closure37, A.InvoiceNinjaAppState_build__closure38, A.InvoiceNinjaAppState_build__closure39, A.InvoiceNinjaAppState_build__closure40, A.InvoiceNinjaAppState_build__closure41, A.InvoiceNinjaAppState_build__closure42, A.InvoiceNinjaAppState_build__closure43, A.InvoiceNinjaAppState_build__closure44, A.InvoiceNinjaAppState_build__closure45, A.InvoiceNinjaAppState_build__closure46, A.InvoiceNinjaAppState_build__closure47, A.InvoiceNinjaAppState_build__closure48, A.InvoiceNinjaAppState_build__closure49, A.InvoiceNinjaAppState_build__closure50, A.InvoiceNinjaAppState_build__closure51, A.InvoiceNinjaAppState_build__closure52, A.InvoiceNinjaAppState_build__closure53, A.InvoiceNinjaAppState_build__closure54, A.InvoiceNinjaAppState_build__closure55, A.InvoiceNinjaAppState_build__closure56, A.InvoiceNinjaAppState_build__closure57, A.InvoiceNinjaAppState_build__closure58, A.InvoiceNinjaAppState_build__closure59, A.InvoiceNinjaAppState_build__closure60, A.InvoiceNinjaAppState_build__closure61, A.InvoiceNinjaAppState_build__closure62, A.InvoiceNinjaAppState_build__closure63, A.InvoiceNinjaAppState_build__closure64, A.InvoiceNinjaAppState_build__closure65, A.InvoiceNinjaAppState_build__closure66, A.InvoiceNinjaAppState_build__closure67, A.InvoiceNinjaAppState_build__closure68, A.InvoiceNinjaAppState_build__closure69, A.InvoiceNinjaAppState_build__closure70, A.InvoiceNinjaAppState_build__closure71, A.InvoiceNinjaAppState_build__closure72, A.InvoiceNinjaAppState_build__closure73, A.InvoiceNinjaAppState_build__closure74, A.InvoiceNinjaAppState_build__closure75, A.InvoiceNinjaAppState_build__closure76, A.InvoiceNinjaAppState_build__closure77, A.InvoiceNinjaAppState_build__closure78, A.InvoiceNinjaAppState_build__closure79, A.InvoiceNinjaAppState_build__closure80, A.InvoiceNinjaAppState_build__closure81, A.InvoiceNinjaAppState_build__closure82, A.InvoiceNinjaAppState_build__closure83, A.InvoiceNinjaAppState_build__closure84, A.InvoiceNinjaAppState_build__closure85, A.InvoiceNinjaAppState_build__closure86, A.InvoiceNinjaAppState_build__closure87, A.InvoiceNinjaAppState_build__closure88, A.InvoiceNinjaAppState_build__closure89, A.InvoiceNinjaAppState_build__closure90, A.InvoiceNinjaAppState_build__closure91, A.InvoiceNinjaAppState_build__closure92, A.InvoiceNinjaAppState_build__closure93, A.InvoiceNinjaAppState_build__closure94, A.InvoiceNinjaAppState_build__closure95, A.InvoiceNinjaAppState_build__closure96, A.InvoiceNinjaAppState_build__closure97, A.InvoiceNinjaAppState_build__closure98, A.InvoiceNinjaAppState_build__closure99, A.InvoiceNinjaAppState_build__closure100, A.InvoiceNinjaAppState_build__closure101, A.InvoiceNinjaAppState_build__closure102, A.InvoiceNinjaAppState_build__closure103, A.InvoiceNinjaAppState_build__closure104, A.InvoiceNinjaAppState_build__closure105, A.InvoiceNinjaAppState_build__closure106, A.InvoiceNinjaAppState_build__closure107, A.InvoiceNinjaAppState_build__closure108, A.viewEntityById__closure, A.checkForChanges_closure, A._createLoadState_closure, A._createLoadState__closure, A._createLoadState__closure0, A._createLoadState__closure1, A._createLoadState__closure2, A._createLoadState__closure3, A._getRoutes_closure, A._getRoutes_closure0, A._createUserLoggedIn_closure, A._createPersistData_closure, A._createPersistUI_closure, A._createPersistPrefs_closure, A._createPersistPrefs__closure, A._createAccountLoaded_closure, A._createDataRefreshed_closure, A._createPersistStatic_closure, A._createDeleteState_closure, A._createDeleteState__closure, A._createViewMainScreen_closure, A._createViewMainScreen__closure, A._createClearData_closure, A._createClearData__closure, A.appReducer_closure, A.appReducer__closure, A.appReducer_closure0, A.appReducer_closure1, A.appReducer_closure2, A.AppState_AppState_closure, A.AppState_companies_closure, A.AppState_historyList_closure, A._createUserLogout_closure, A._createUserLogout__closure, A._createUserLogoutAll_closure, A._createUserLogoutAll__closure, A._createUserLogoutAll__closure0, A._createLoginRequest_closure, A._createLoginRequest__closure, A._createLoginRequest__closure0, A._createSignUpRequest_closure, A._createSignUpRequest__closure, A._createSignUpRequest__closure0, A._createOAuthLoginRequest_closure, A._createOAuthLoginRequest__closure, A._createOAuthLoginRequest__closure0, A._createOAuthSignUpRequest_closure, A._createOAuthSignUpRequest__closure, A._createOAuthSignUpRequest__closure0, A._createRefreshRequest_closure, A._createRefreshRequest__closure, A._createRefreshRequest___closure, A._createRefreshRequest____closure, A._createRefreshRequest__closure0, A._createRecoverRequest_closure, A._createRecoverRequest__closure, A._createRecoverRequest__closure0, A._createCompany_closure, A._createCompany__closure, A._createCompany___closure, A._setDefaultCompany_closure, A._setDefaultCompany__closure, A._setDefaultCompany__closure0, A._deleteCompany_closure, A._deleteCompany__closure, A._deleteCompany__closure0, A._purgeData_closure, A._purgeData__closure, A._purgeData___closure, A._purgeData__closure0, A._resendConfirmation_closure, A._resendConfirmation__closure, A._resendConfirmation__closure0, A.userLoadUrlReducer_closure, A.userSignUpRequestReducer_closure, A.userLoginRequestReducer_closure, A.oauthLoginRequestReducer_closure, A.oauthSignUpRequestReducer_closure, A.userLoginSuccessReducer_closure, A.userVerifiedPasswordReducer_closure, A.userUnverifiedPasswordReducer_closure, A.handleClientAction_closure, A.handleClientAction_closure0, A.handleClientAction_closure1, A.handleClientAction_closure2, A.handleClientAction_closure3, A.handleClientAction_closure4, A.handleClientAction_closure5, A.__MergClientPickerState_build_closure, A._editClient_closure, A._viewClient_closure, A._viewClientList_closure1, A._viewClientList__closure, A._archiveClient_closure, A._archiveClient__closure, A._archiveClient__closure0, A._archiveClient__closure1, A._mergeClients_closure, A._mergeClients__closure, A._mergeClients__closure0, A._deleteClient_closure, A._deleteClient__closure, A._deleteClient__closure0, A._deleteClient__closure1, A._purgeClient_closure, A._purgeClient__closure, A._purgeClient__closure0, A._restoreClient_closure, A._restoreClient__closure, A._restoreClient__closure0, A._restoreClient__closure1, A._saveClient_closure, A._saveClient__closure, A._saveClient__closure0, A._loadClient_closure, A._loadClient__closure, A._loadClient__closure0, A._loadClients_closure, A._loadClients__closure, A._loadClients__closure0, A._saveDocument_closure11, A._saveDocument__closure23, A._saveDocument__closure24, A._showPdfClient_closure, A.clientUIReducer_closure, A.editingReducer__closure55, A.editingReducer__closure54, A.editingReducer__closure53, A.editingReducer__closure52, A._viewClientList_closure, A._filterClientsByCustom1_closure, A._filterClientsByCustom1_closure0, A._filterClientsByCustom2_closure, A._filterClientsByCustom2_closure0, A._filterClientsByCustom3_closure, A._filterClientsByCustom3_closure0, A._filterClientsByCustom4_closure, A._filterClientsByCustom4_closure0, A._filterClientsByState_closure, A._filterClientsByState_closure0, A._filterClients_closure, A._sortClients_closure, A._startListMultiselect_closure22, A._addToListMultiselect_closure22, A._removeFromListMultiselect_closure22, A._clearListMultiselect_closure22, A._archiveClientSuccess_closure, A._deleteClientSuccess_closure, A._restoreClientSuccess_closure, A._addClient_closure, A._addClient__closure, A._updateClient_closure, A._updateClient__closure, A._setLoadedClient_closure, A._setLoadedClient__closure, A._mergeClientSuccess_closure, A._purgeClientSuccess_closure, A.memoizedDropdownClientList_closure, A.dropdownClientsSelector_closure, A.memoizedFilteredClientList_closure, A.filteredClientsSelector_closure, A.filteredClientsSelector__closure, A.ClientState_loadClients_closure0, A.ClientState_loadClients_closure1, A.ClientState_loadClients_closure, A.companyReducer_closure, A.userCompanyEntityReducer__closure5, A.userCompanyEntityReducer___closure, A.userCompanyEntityReducer__closure6, A.userCompanyEntityReducer__closure4, A.userCompanyEntityReducer__closure3, A.userCompanyEntityReducer__closure2, A.userCompanyEntityReducer__closure1, A.userCompanyEntityReducer__closure0, A.userCompanyEntityReducer__closure, A.loadCompanySuccessReducer_closure, A.loadCompanySuccessReducer_closure0, A.loadCompanySuccessReducer_closure1, A.saveCompanySuccessReducer_closure, A.saveCompanySuccessReducer_closure0, A.dropdownExpenseCategoriesSelector_closure, A.memoizedHasMultipleCurrencies_closure, A.memoizedGetCurrencyIds_closure, A.filteredSelector_closure, A.filteredSelector_closure0, A.filteredSelector_closure1, A.filteredSelector_closure2, A.filteredSelector_closure3, A.filteredSelector_closure4, A.filteredSelector_closure5, A.filteredSelector_closure6, A.filteredSelector_closure7, A.filteredSelector_closure8, A.filteredSelector_closure9, A.filteredSelector_closure10, A.filteredSelector_closure11, A.filteredSelector_closure12, A.handleCompanyGatewayAction_closure, A.handleCompanyGatewayAction_closure0, A.handleCompanyGatewayAction_closure1, A._editCompanyGateway_closure, A._viewCompanyGateway_closure, A._viewCompanyGatewayList_closure, A._viewCompanyGatewayList__closure, A._archiveCompanyGateway_closure, A._archiveCompanyGateway__closure, A._archiveCompanyGateway__closure0, A._archiveCompanyGateway__closure1, A._deleteCompanyGateway_closure, A._deleteCompanyGateway__closure, A._deleteCompanyGateway__closure0, A._deleteCompanyGateway__closure1, A._restoreCompanyGateway_closure, A._restoreCompanyGateway__closure, A._restoreCompanyGateway__closure0, A._restoreCompanyGateway__closure1, A._disconnectCompanyGateway_closure, A._disconnectCompanyGateway__closure, A._disconnectCompanyGateway__closure0, A._saveCompanyGateway_closure, A._saveCompanyGateway__closure, A._saveCompanyGateway__closure0, A._loadCompanyGateway_closure, A._loadCompanyGateway__closure, A._loadCompanyGateway__closure0, A._loadCompanyGateways_closure, A._loadCompanyGateways__closure, A._loadCompanyGateways__closure0, A.companyGatewayUIReducer_closure, A.editingReducer__closure13, A._filterCompanyGatewaysByCustom1_closure, A._filterCompanyGatewaysByCustom1_closure0, A._filterCompanyGatewaysByCustom2_closure, A._filterCompanyGatewaysByCustom2_closure0, A._filterCompanyGatewaysByState_closure, A._filterCompanyGatewaysByState_closure0, A._filterCompanyGateways_closure, A._sortCompanyGateways_closure, A._startListMultiselect_closure7, A._addToListMultiselect_closure7, A._removeFromListMultiselect_closure7, A._clearListMultiselect_closure7, A._archiveCompanyGatewaySuccess_closure, A._deleteCompanyGatewaySuccess_closure, A._restoreCompanyGatewaySuccess_closure, A._addCompanyGateway_closure, A._addCompanyGateway__closure, A._updateCompanyGateway_closure, A._updateCompanyGateway__closure, A._setLoadedCompanyGateway_closure, A._setLoadedCompanyGateway__closure, A._setLoadedCompany_closure1, A._setLoadedCompany__closure1, A._setLoadedCompany__closure2, A._setLoadedCompany_closure2, A._setLoadedCompanyGateways_closure, A._setLoadedCompanyGateways__closure, A._setLoadedCompanyGateways__closure0, A._setLoadedCompanyGateways_closure0, A.memoizedFilteredCompanyGatewayList_closure, A.filteredCompanyGatewaysSelector_closure, A.filteredCompanyGatewaysSelector_closure0, A.filteredCompanyGatewaysSelector_closure1, A.clientStatsForCompanyGateway__closure, A.handleCreditAction_closure, A.handleCreditAction_closure0, A.handleCreditAction_closure2, A.handleCreditAction_closure3, A.handleCreditAction_closure4, A.handleCreditAction_closure5, A.handleCreditAction_closure6, A.handleCreditAction_closure7, A.handleCreditAction__closure, A.handleCreditAction_closure8, A._viewCredit_closure, A._viewCreditList_closure0, A._viewCreditList__closure, A._editCredit_closure, A._showEmailCredit_closure, A._showPdfCredit_closure, A._archiveCredit_closure, A._archiveCredit__closure, A._archiveCredit__closure0, A._archiveCredit__closure1, A._deleteCredit_closure, A._deleteCredit__closure, A._deleteCredit__closure0, A._deleteCredit__closure1, A._restoreCredit_closure, A._restoreCredit__closure, A._restoreCredit__closure0, A._restoreCredit__closure1, A._markSentCredit_closure, A._markSentCredit__closure, A._markSentCredit__closure0, A._markPaidCredit_closure, A._markPaidCredit__closure, A._markPaidCredit__closure0, A._emailCredit_closure, A._emailCredit__closure, A._emailCredit__closure0, A._saveCredit_closure, A._saveCredit__closure, A._saveCredit___closure, A._saveCredit__closure0, A._saveCredit__closure1, A._loadCredit_closure, A._loadCredit__closure, A._loadCredit__closure0, A._loadCredits_closure, A._loadCredits__closure, A._loadCredits__closure0, A._downloadCredits_closure, A._downloadCredits__closure, A._downloadCredits__closure0, A._bulkEmailCredits_closure, A._bulkEmailCredits__closure, A._bulkEmailCredits__closure0, A._saveDocument_closure0, A._saveDocument__closure1, A._saveDocument__closure2, A.creditUIReducer_closure, A.editingReducer__closure22, A.editingReducer__closure21, A.editingReducer__closure20, A.editingReducer__closure19, A.editingReducer__closure18, A.editingReducer___closure0, A.editingReducer__closure17, A.editingReducer__closure16, A._addCreditItem_closure, A._addCreditItems_closure, A._removeCreditItem_closure, A._updateCreditItem_closure, A._viewCreditList_closure, A._filterCreditsByCustom1_closure, A._filterCreditsByCustom1_closure0, A._filterCreditsByCustom2_closure, A._filterCreditsByCustom2_closure0, A._filterCreditsByCustom3_closure, A._filterCreditsByCustom3_closure0, A._filterCreditsByCustom4_closure, A._filterCreditsByCustom4_closure0, A._filterCreditsByState_closure, A._filterCreditsByState_closure0, A._filterCreditsByStatus_closure, A._filterCreditsByStatus_closure0, A._filterCredits_closure, A._sortCredits_closure, A._startListMultiselect_closure10, A._addToListMultiselect_closure10, A._removeFromListMultiselect_closure10, A._clearListMultiselect_closure10, A._markSentCreditSuccess_closure0, A._markSentCreditSuccess_closure1, A._markSentCreditSuccess_closure, A._archiveCreditSuccess_closure, A._deleteCreditSuccess_closure, A._restoreCreditSuccess_closure, A._addCredit_closure, A._addCredit__closure, A._updateCredit_closure, A._updateCredit__closure, A.creditContactSelector_closure, A.creditContactSelector_closure0, A.memoizedDropdownCreditList_closure, A.dropdownCreditSelector_closure, A.memoizedFilteredCreditList_closure, A.filteredCreditsSelector_closure, A.CreditState_loadCredits_closure0, A.CreditState_loadCredits_closure1, A.CreditState_loadCredits_closure, A._createViewDashboard_closure, A._createViewDashboard___closure, A.dashboardUIReducer_closure, A.selectedEntitiesReducer__closure0, A.selectedEntitiesReducer__closure, A.dashboardSettingsReducer_closure, A.dashboardSettingsReducer_closure0, A.dashboardSettingsReducer_closure1, A.dashboardSettingsReducer_closure2, A.memoizedChartInvoices_closure, A.memoizedPreviousChartInvoices_closure, A.memoizedChartQuotes_closure, A.memoizedPreviousChartQuotes_closure, A.memoizedChartPayments_closure, A.memoizedPreviousChartPayments_closure, A.memoizedChartTasks_closure, A.memoizedPreviousChartTasks_closure, A.chartTasks__closure, A.memoizedChartExpenses_closure, A.memoizedPreviousChartExpenses_closure, A.handleDesignAction_closure, A.handleDesignAction_closure0, A.handleDesignAction_closure1, A.handleDesignAction_closure2, A.handleDesignAction_closure3, A._editDesign_closure, A._viewDesign_closure, A._viewDesignList_closure0, A._viewDesignList__closure, A._archiveDesign_closure, A._archiveDesign__closure, A._archiveDesign__closure0, A._archiveDesign__closure1, A._deleteDesign_closure, A._deleteDesign__closure, A._deleteDesign__closure0, A._deleteDesign__closure1, A._restoreDesign_closure, A._restoreDesign__closure, A._restoreDesign__closure0, A._restoreDesign__closure1, A._saveDesign_closure, A._saveDesign__closure, A._saveDesign__closure0, A._loadDesign_closure, A._loadDesign__closure, A._loadDesign__closure0, A._loadDesigns_closure, A._loadDesigns__closure, A._loadDesigns__closure0, A.designUIReducer_closure, A.editingReducer__closure23, A._viewDesignList_closure, A._filterDesignsByCustom1_closure, A._filterDesignsByCustom1_closure0, A._filterDesignsByCustom2_closure, A._filterDesignsByCustom2_closure0, A._filterDesignsByState_closure, A._filterDesignsByState_closure0, A._filterDesigns_closure, A._sortDesigns_closure, A._startListMultiselect_closure11, A._addToListMultiselect_closure11, A._removeFromListMultiselect_closure11, A._clearListMultiselect_closure11, A._archiveDesignSuccess_closure, A._deleteDesignSuccess_closure, A._restoreDesignSuccess_closure, A._addDesign_closure, A._updateDesign_closure, A._setLoadedDesign_closure, A.memoizedFilteredDesignList_closure, A.filteredDesignsSelector_closure, A.DesignState_cleanDesign_closure, A.DesignState_customDesigns_closure, A.DesignState_customDesigns_closure0, A.DesignState_loadDesigns_closure0, A.DesignState_loadDesigns_closure1, A.DesignState_loadDesigns_closure, A.handleDocumentAction_closure, A._editDocument_closure, A._viewDocument_closure, A._viewDocumentList_closure0, A._viewDocumentList__closure, A._archiveDocument_closure, A._archiveDocument__closure, A._archiveDocument__closure0, A._archiveDocument__closure1, A._downloadDocuments_closure, A._downloadDocuments__closure, A._downloadDocuments__closure0, A._deleteDocument_closure, A._deleteDocument__closure, A._deleteDocument__closure0, A._restoreDocument_closure, A._restoreDocument__closure, A._restoreDocument__closure0, A._restoreDocument__closure1, A._loadDocument_closure, A._loadDocument__closure, A._loadDocument__closure0, A._loadDocuments_closure, A._loadDocuments__closure, A._loadDocuments__closure0, A.documentUIReducer_closure, A.editingReducer__closure11, A._viewDocumentList_closure, A._filterDocumentsByCustom1_closure, A._filterDocumentsByCustom1_closure0, A._filterDocumentsByCustom2_closure, A._filterDocumentsByCustom2_closure0, A._filterDocumentsByState_closure, A._filterDocumentsByState_closure0, A._filterDocuments_closure, A._sortDocuments_closure, A._startListMultiselect_closure5, A._addToListMultiselect_closure5, A._removeFromListMultiselect_closure5, A._clearListMultiselect_closure5, A._archiveDocumentSuccess_closure, A._deleteDocumentSuccess_closure, A._restoreDocumentSuccess_closure, A._updateDocument_closure, A._setLoadedDocument_closure, A._setLoadedDocuments_closure, A._setLoadedDocuments__closure, A._setLoadedDocuments__closure0, A._setLoadedDocuments_closure0, A.memoizedFilteredDocumentList_closure, A.filteredDocumentsSelector_closure, A.handleExpenseAction_closure, A.handleExpenseAction_closure0, A.handleExpenseAction_closure1, A.handleExpenseAction_closure2, A.handleExpenseAction_closure3, A.handleExpenseAction_closure4, A._editExpense_closure, A._viewExpense_closure, A._viewExpenseList_closure0, A._viewExpenseList__closure, A._archiveExpense_closure, A._archiveExpense__closure, A._archiveExpense__closure0, A._archiveExpense__closure1, A._deleteExpense_closure, A._deleteExpense__closure, A._deleteExpense__closure0, A._deleteExpense__closure1, A._restoreExpense_closure, A._restoreExpense__closure, A._restoreExpense__closure0, A._restoreExpense__closure1, A._saveExpense_closure, A._saveExpense__closure, A._saveExpense__closure0, A._loadExpense_closure, A._loadExpense__closure, A._loadExpense__closure0, A._loadExpenses_closure, A._loadExpenses__closure, A._loadExpenses__closure0, A._saveDocument_closure9, A._saveDocument__closure19, A._saveDocument__closure20, A.expenseUIReducer_closure, A.editingReducer__closure10, A._viewExpenseList_closure, A._filterExpensesByCustom1_closure, A._filterExpensesByCustom1_closure0, A._filterExpensesByCustom2_closure, A._filterExpensesByCustom2_closure0, A._filterExpensesByCustom3_closure, A._filterExpensesByCustom3_closure0, A._filterExpensesByCustom4_closure, A._filterExpensesByCustom4_closure0, A._filterExpensesByState_closure, A._filterExpensesByState_closure0, A._filterExpensesByStatus_closure, A._filterExpensesByStatus_closure0, A._filterExpenses_closure, A._sortExpenses_closure, A._startListMultiselect_closure4, A._addToListMultiselect_closure4, A._removeFromListMultiselect_closure4, A._clearListMultiselect_closure4, A._archiveExpenseSuccess_closure, A._deleteExpenseSuccess_closure, A._restoreExpenseSuccess_closure, A._addExpense_closure, A._updateExpense_closure, A._setLoadedExpense_closure, A.convertExpenseToInvoiceItem_closure, A.memoizedFilteredExpenseList_closure, A.filteredExpensesSelector_closure, A.clientExpenseList_closure, A.ExpenseState_loadExpenses_closure0, A.ExpenseState_loadExpenses_closure1, A.ExpenseState_loadExpenses_closure, A.handleExpenseCategoryAction_closure, A.handleExpenseCategoryAction_closure0, A._editExpenseCategory_closure, A._viewExpenseCategory_closure, A._viewExpenseCategoryList_closure, A._viewExpenseCategoryList__closure, A._archiveExpenseCategory_closure, A._archiveExpenseCategory__closure, A._archiveExpenseCategory__closure0, A._archiveExpenseCategory__closure1, A._deleteExpenseCategory_closure, A._deleteExpenseCategory__closure, A._deleteExpenseCategory__closure0, A._deleteExpenseCategory__closure1, A._restoreExpenseCategory_closure, A._restoreExpenseCategory__closure, A._restoreExpenseCategory__closure0, A._restoreExpenseCategory__closure1, A._saveExpenseCategory_closure, A._saveExpenseCategory__closure, A._saveExpenseCategory__closure0, A._loadExpenseCategory_closure, A._loadExpenseCategory__closure, A._loadExpenseCategory__closure0, A._loadExpenseCategories_closure, A._loadExpenseCategories__closure, A._loadExpenseCategories__closure0, A.expenseCategoryUIReducer_closure, A.editingReducer__closure34, A._filterExpenseCategoriesByCustom1_closure, A._filterExpenseCategoriesByCustom1_closure0, A._filterExpenseCategoriesByCustom2_closure, A._filterExpenseCategoriesByCustom2_closure0, A._filterExpenseCategoriesByState_closure, A._filterExpenseCategoriesByState_closure0, A._filterExpenseCategories_closure, A._sortExpenseCategories_closure, A._startListMultiselect_closure16, A._addToListMultiselect_closure16, A._removeFromListMultiselect_closure16, A._clearListMultiselect_closure16, A._archiveExpenseCategorySuccess_closure, A._deleteExpenseCategorySuccess_closure, A._restoreExpenseCategorySuccess_closure, A._addExpenseCategory_closure, A._updateExpenseCategory_closure, A._setLoadedExpenseCategory_closure, A.memoizedFilteredExpenseCategoryList_closure, A.filteredExpenseCategoriesSelector_closure, A.ExpenseCategoryState_loadExpenseCategories_closure0, A.ExpenseCategoryState_loadExpenseCategories_closure1, A.ExpenseCategoryState_loadExpenseCategories_closure, A.handleGroupAction_closure, A.handleGroupAction_closure0, A._editGroup_closure, A._viewGroup_closure, A._viewGroupList_closure0, A._viewGroupList__closure, A._archiveGroup_closure, A._archiveGroup__closure, A._archiveGroup__closure0, A._archiveGroup__closure1, A._deleteGroup_closure, A._deleteGroup__closure, A._deleteGroup__closure0, A._deleteGroup__closure1, A._restoreGroup_closure, A._restoreGroup__closure, A._restoreGroup__closure0, A._restoreGroup__closure1, A._saveGroup_closure, A._saveGroup__closure, A._saveGroup__closure0, A._loadGroup_closure, A._loadGroup__closure, A._loadGroup__closure0, A._loadGroups_closure, A._loadGroups__closure, A._loadGroups__closure0, A._saveDocument_closure, A._saveDocument__closure, A._saveDocument__closure0, A.groupUIReducer_closure, A.editingReducer__closure12, A._viewGroupList_closure, A._filterGroupsByState_closure, A._filterGroupsByState_closure0, A._filterGroups_closure, A._sortGroups_closure, A._startListMultiselect_closure6, A._addToListMultiselect_closure6, A._removeFromListMultiselect_closure6, A._clearListMultiselect_closure6, A._archiveGroupSuccess_closure, A._deleteGroupSuccess_closure, A._restoreGroupSuccess_closure, A._addGroup_closure, A._updateGroup_closure, A._setLoadedGroup_closure, A._setLoadedGroups_closure, A._setLoadedGroups__closure, A._setLoadedGroups__closure0, A._setLoadedGroups_closure0, A._setLoadedCompany_closure, A._setLoadedCompany__closure, A._setLoadedCompany__closure0, A._setLoadedCompany_closure0, A.memoizedFilteredGroupList_closure, A.filteredGroupsSelector_closure, A.handleInvoiceAction_closure, A.handleInvoiceAction_closure0, A.handleInvoiceAction_closure1, A.handleInvoiceAction_closure2, A.handleInvoiceAction_closure4, A.handleInvoiceAction_closure5, A.handleInvoiceAction_closure6, A.handleInvoiceAction_closure7, A.handleInvoiceAction_closure8, A.handleInvoiceAction_closure9, A.handleInvoiceAction__closure, A.handleInvoiceAction__closure0, A.handleInvoiceAction_closure10, A._viewInvoiceList_closure0, A._viewInvoiceList__closure, A._viewInvoice_closure, A._editInvoice_closure, A._showEmailInvoice_closure, A._showPdfInvoice_closure, A._cancelInvoices_closure, A._cancelInvoices__closure, A._cancelInvoices__closure0, A._archiveInvoice_closure, A._archiveInvoice__closure, A._archiveInvoice__closure0, A._archiveInvoice__closure1, A._deleteInvoice_closure, A._deleteInvoice__closure, A._deleteInvoice__closure0, A._deleteInvoice__closure1, A._restoreInvoice_closure, A._restoreInvoice__closure, A._restoreInvoice__closure0, A._restoreInvoice__closure1, A._markInvoiceSent_closure, A._markInvoiceSent__closure, A._markInvoiceSent__closure0, A._markInvoicePaid_closure, A._markInvoicePaid__closure, A._markInvoicePaid__closure0, A._downloadInvoices_closure, A._downloadInvoices__closure, A._downloadInvoices__closure0, A._emailInvoice_closure, A._emailInvoice__closure, A._emailInvoice__closure0, A._bulkEmailInvoices_closure, A._bulkEmailInvoices__closure, A._bulkEmailInvoices__closure0, A._saveInvoice_closure, A._saveInvoice__closure, A._saveInvoice___closure, A._saveInvoice__closure0, A._saveInvoice__closure1, A._loadInvoice_closure, A._loadInvoice__closure, A._loadInvoice__closure0, A._loadInvoices_closure, A._loadInvoices__closure, A._loadInvoices__closure0, A._saveDocument_closure10, A._saveDocument__closure21, A._saveDocument__closure22, A.invoiceUIReducer_closure, A.editingReducer__closure51, A.editingReducer__closure50, A.editingReducer__closure49, A.editingReducer__closure48, A.editingReducer__closure47, A.editingReducer___closure3, A.editingReducer__closure46, A.editingReducer__closure45, A._addInvoiceItem_closure, A._addInvoiceItems_closure, A._removeInvoiceItem_closure, A._updateInvoiceItem_closure, A._viewInvoiceList_closure, A._filterInvoicesByCustom1_closure, A._filterInvoicesByCustom1_closure0, A._filterInvoicesByCustom2_closure, A._filterInvoicesByCustom2_closure0, A._filterInvoicesByCustom3_closure, A._filterInvoicesByCustom3_closure0, A._filterInvoicesByCustom4_closure, A._filterInvoicesByCustom4_closure0, A._filterInvoicesByState_closure, A._filterInvoicesByState_closure0, A._filterInvoicesByStatus_closure, A._filterInvoicesByStatus_closure0, A._filterInvoices_closure, A._sortInvoices_closure, A._startListMultiselect_closure21, A._addToListMultiselect_closure21, A._removeFromListMultiselect_closure21, A._clearListMultiselect_closure21, A._markInvoicesSentSuccess_closure, A._markInvoicesPaidSuccess_closure, A._cancelInvoicesSuccess_closure, A._archiveInvoiceSuccess_closure, A._deleteInvoiceSuccess_closure, A._emailInvoiceSuccess_closure, A._restoreInvoiceSuccess_closure, A._addInvoice_closure, A._addInvoice__closure, A._updateInvoice_closure, A._updateInvoice__closure, A.invoiceContactSelector_closure, A.invoiceContactSelector_closure0, A.memoizedDropdownInvoiceList_closure, A.dropdownInvoiceSelector_closure, A.memoizedFilteredInvoiceList_closure, A.filteredInvoicesSelector__closure0, A.filteredInvoicesSelector_closure0, A.filteredInvoicesSelector__closure, A.InvoiceState_loadInvoices_closure0, A.InvoiceState_loadInvoices_closure1, A.InvoiceState_loadInvoices_closure, A.handlePaymentAction_closure, A.handlePaymentAction_closure0, A.handlePaymentAction__closure1, A.handlePaymentAction_closure1, A.handlePaymentAction__closure, A.handlePaymentAction__closure0, A._editPayment_closure, A._editPayment__closure, A._viewRefundPayment_closure, A._viewRefundPayment__closure, A._viewPayment_closure, A._viewPaymentList_closure0, A._viewPaymentList__closure, A._archivePayment_closure, A._archivePayment__closure, A._archivePayment__closure0, A._archivePayment__closure1, A._deletePayment_closure, A._deletePayment__closure, A._deletePayment__closure0, A._deletePayment__closure1, A._restorePayment_closure, A._restorePayment__closure, A._restorePayment__closure0, A._restorePayment__closure1, A._savePayment_closure, A._savePayment__closure, A._savePayment__closure0, A._refundPayment_closure, A._refundPayment__closure, A._refundPayment__closure0, A._emailPayment_closure, A._emailPayment__closure, A._emailPayment__closure0, A._loadPayment_closure, A._loadPayment__closure, A._loadPayment__closure0, A._loadPayments_closure, A._loadPayments__closure, A._loadPayments__closure0, A.paymentUIReducer_closure, A.editingReducer__closure6, A._viewPaymentList_closure, A._filterPaymentsByCustom1_closure, A._filterPaymentsByCustom1_closure0, A._filterPaymentsByCustom2_closure, A._filterPaymentsByCustom2_closure0, A._filterPaymentsByCustom3_closure, A._filterPaymentsByCustom3_closure0, A._filterPaymentsByCustom4_closure, A._filterPaymentsByCustom4_closure0, A._filterPaymentsByState_closure, A._filterPaymentsByState_closure0, A._filterPayments_closure, A._sortPayments_closure, A._startListMultiselect_closure0, A._addToListMultiselect_closure0, A._removeFromListMultiselect_closure0, A._clearListMultiselect_closure0, A._archivePaymentSuccess_closure, A._deletePaymentSuccess_closure, A._restorePaymentSuccess_closure, A._addPayment_closure, A._updatePayment_closure, A._setLoadedPayment_closure, A.memoizedPaymentsByInvoice_closure, A.paymentsByInvoiceSelector_closure, A.paymentsByInvoiceSelector_closure0, A.paymentsByInvoiceSelector__closure, A.memoizedPaymentsByCredit_closure, A.paymentsByCreditSelector_closure, A.paymentsByCreditSelector_closure0, A.paymentsByCreditSelector__closure, A.memoizedFilteredPaymentList_closure, A.filteredPaymentsSelector_closure, A.filteredPaymentsSelector__closure, A.memoizedPaymentStatsForClient_closure, A.PaymentState_loadPayments_closure0, A.PaymentState_loadPayments_closure1, A.PaymentState_loadPayments_closure, A.handlePaymentTermAction_closure, A._editPaymentTerm_closure, A._viewPaymentTerm_closure, A._viewPaymentTermList_closure0, A._viewPaymentTermList__closure, A._archivePaymentTerm_closure, A._archivePaymentTerm__closure, A._archivePaymentTerm__closure0, A._archivePaymentTerm__closure1, A._deletePaymentTerm_closure, A._deletePaymentTerm__closure, A._deletePaymentTerm__closure0, A._deletePaymentTerm__closure1, A._restorePaymentTerm_closure, A._restorePaymentTerm__closure, A._restorePaymentTerm__closure0, A._restorePaymentTerm__closure1, A._savePaymentTerm_closure, A._savePaymentTerm__closure, A._savePaymentTerm__closure0, A._loadPaymentTerm_closure, A._loadPaymentTerm__closure, A._loadPaymentTerm__closure0, A._loadPaymentTerms_closure, A._loadPaymentTerms__closure, A._loadPaymentTerms__closure0, A.paymentTermUIReducer_closure, A.editingReducer__closure24, A._viewPaymentTermList_closure, A._filterPaymentTermsByCustom1_closure, A._filterPaymentTermsByCustom1_closure0, A._filterPaymentTermsByCustom2_closure, A._filterPaymentTermsByCustom2_closure0, A._filterPaymentTermsByState_closure, A._filterPaymentTermsByState_closure0, A._filterPaymentTerms_closure, A._sortPaymentTerms_closure, A._startListMultiselect_closure12, A._addToListMultiselect_closure12, A._removeFromListMultiselect_closure12, A._clearListMultiselect_closure12, A._archivePaymentTermSuccess_closure, A._deletePaymentTermSuccess_closure, A._restorePaymentTermSuccess_closure, A._addPaymentTerm_closure, A._updatePaymentTerm_closure, A._setLoadedPaymentTerm_closure, A._setLoadedCompany_closure7, A._setLoadedCompany__closure7, A._setLoadedCompany__closure8, A._setLoadedCompany_closure8, A.dropdownPaymentTermsSelector_closure, A.memoizedFilteredPaymentTermList_closure, A.filteredPaymentTermsSelector_closure, A.PaymentTermState_loadPaymentTerms_closure0, A.PaymentTermState_loadPaymentTerms_closure1, A.PaymentTermState_loadPaymentTerms_closure, A.handleProductAction_closure, A.handleProductAction_closure0, A.handleProductAction__closure0, A.handleProductAction_closure1, A.handleProductAction__closure, A._editProduct_closure, A._viewProduct_closure, A._viewProductList_closure, A._viewProductList__closure, A._archiveProduct_closure, A._archiveProduct__closure, A._archiveProduct__closure0, A._archiveProduct__closure1, A._deleteProduct_closure, A._deleteProduct__closure, A._deleteProduct__closure0, A._deleteProduct__closure1, A._restoreProduct_closure, A._restoreProduct__closure, A._restoreProduct__closure0, A._restoreProduct__closure1, A._saveProduct_closure, A._saveProduct__closure, A._saveProduct__closure0, A._loadProduct_closure, A._loadProduct__closure, A._loadProduct__closure0, A._loadProducts_closure, A._loadProducts__closure, A._loadProducts__closure0, A._saveDocument_closure12, A._saveDocument__closure25, A._saveDocument__closure26, A.productUIReducer_closure, A.editingReducer__closure56, A._viewClientList_closure0, A._filterProductsByState_closure, A._filterProductsByState_closure0, A._filterProductsByCustom1_closure, A._filterProductsByCustom1_closure0, A._filterProductsByCustom2_closure, A._filterProductsByCustom2_closure0, A._filterProductsByCustom3_closure, A._filterProductsByCustom3_closure0, A._filterProductsByCustom4_closure, A._filterProductsByCustom4_closure0, A._filterProducts_closure, A._sortProducts_closure, A._startListMultiselect_closure23, A._addToListMultiselect_closure23, A._removeFromListMultiselect_closure23, A._clearListMultiselect_closure23, A._archiveProductSuccess_closure, A._deleteProductSuccess_closure, A._restoreProductSuccess_closure, A._addProduct_closure, A._updateProduct_closure, A._setLoadedProduct_closure, A.convertProductToInvoiceItem_closure, A.memoizedDropdownProductList_closure, A.dropdownProductsSelector_closure, A.memoizedProductList_closure, A.productList_closure, A.memoizedFilteredProductList_closure, A.filteredProductsSelector_closure, A.ProductState_loadProducts_closure0, A.ProductState_loadProducts_closure1, A.ProductState_loadProducts_closure, A.handleProjectAction_closure, A.handleProjectAction_closure0, A.handleProjectAction_closure1, A.handleProjectAction_closure2, A.handleProjectAction_closure3, A.handleProjectAction_closure4, A._editProject_closure, A._viewProject_closure, A._viewProjectList_closure0, A._viewProjectList__closure, A._archiveProject_closure, A._archiveProject__closure, A._archiveProject__closure0, A._archiveProject__closure1, A._deleteProject_closure, A._deleteProject__closure, A._deleteProject__closure0, A._deleteProject__closure1, A._restoreProject_closure, A._restoreProject__closure, A._restoreProject__closure0, A._restoreProject__closure1, A._saveProject_closure, A._saveProject__closure, A._saveProject__closure0, A._loadProject_closure, A._loadProject__closure, A._loadProject__closure0, A._loadProjects_closure, A._loadProjects__closure, A._loadProjects__closure0, A._saveDocument_closure6, A._saveDocument__closure13, A._saveDocument__closure14, A.projectUIReducer_closure, A.editingReducer__closure7, A._viewProjectList_closure, A._filterProjectsByCustom1_closure, A._filterProjectsByCustom1_closure0, A._filterProjectsByCustom2_closure, A._filterProjectsByCustom2_closure0, A._filterProjectsByCustom3_closure, A._filterProjectsByCustom3_closure0, A._filterProjectsByCustom4_closure, A._filterProjectsByCustom4_closure0, A._filterProjectsByState_closure, A._filterProjectsByState_closure0, A._filterProjects_closure, A._sortProjects_closure, A._startListMultiselect_closure1, A._addToListMultiselect_closure1, A._removeFromListMultiselect_closure1, A._clearListMultiselect_closure1, A._archiveProjectSuccess_closure, A._deleteProjectSuccess_closure, A._restoreProjectSuccess_closure, A._addProject_closure, A._updateProject_closure, A._setLoadedProject_closure, A.convertProjectToInvoiceItem_closure3, A.convertProjectToInvoiceItem_closure4, A.memoizedDropdownProjectList_closure, A.dropdownProjectsSelector_closure, A.memoizedFilteredProjectList_closure, A.filteredProjectsSelector_closure, A.ProjectState_loadProjects_closure0, A.ProjectState_loadProjects_closure1, A.ProjectState_loadProjects_closure, A.handlePurchaseOrderAction_closure, A.handlePurchaseOrderAction_closure0, A.handlePurchaseOrderAction_closure2, A.handlePurchaseOrderAction_closure3, A.handlePurchaseOrderAction_closure4, A.handlePurchaseOrderAction_closure5, A.handlePurchaseOrderAction_closure6, A._viewPurchaseOrder_closure, A._viewPurchaseOrderList_closure0, A._viewPurchaseOrderList__closure, A._editPurchaseOrder_closure, A._showEmailPurchaseOrder_closure, A._showPdfPurchaseOrder_closure, A._archivePurchaseOrder_closure, A._archivePurchaseOrder__closure, A._archivePurchaseOrder__closure0, A._archivePurchaseOrder__closure1, A._deletePurchaseOrder_closure, A._deletePurchaseOrder__closure, A._deletePurchaseOrder__closure0, A._deletePurchaseOrder__closure1, A._restorePurchaseOrder_closure, A._restorePurchaseOrder__closure, A._restorePurchaseOrder__closure0, A._restorePurchaseOrder__closure1, A._approvePurchaseOrder_closure, A._approvePurchaseOrder__closure, A._approvePurchaseOrder__closure0, A._markSentPurchaseOrder_closure, A._markSentPurchaseOrder__closure, A._markSentPurchaseOrder__closure0, A._convertPurchaseOrdersToExpense_closure, A._convertPurchaseOrdersToExpense__closure, A._convertPurchaseOrdersToExpense__closure0, A._addPurchaseOrdersToInventory_closure, A._addPurchaseOrdersToInventory__closure, A._addPurchaseOrdersToInventory__closure0, A._acceptPurchaseOrders_closure, A._acceptPurchaseOrders__closure, A._acceptPurchaseOrders__closure0, A._cancelPurchaseOrders_closure, A._cancelPurchaseOrders__closure, A._cancelPurchaseOrders__closure0, A._emailPurchaseOrder_closure, A._emailPurchaseOrder__closure, A._emailPurchaseOrder__closure0, A._savePurchaseOrder_closure, A._savePurchaseOrder__closure, A._savePurchaseOrder___closure, A._savePurchaseOrder__closure0, A._savePurchaseOrder__closure1, A._loadPurchaseOrder_closure, A._loadPurchaseOrder__closure, A._loadPurchaseOrder__closure0, A._downloadPurchaseOrders_closure, A._downloadPurchaseOrders__closure, A._downloadPurchaseOrders__closure0, A._bulkEmailPurchaseOrders_closure, A._bulkEmailPurchaseOrders__closure, A._bulkEmailPurchaseOrders__closure0, A._loadPurchaseOrders_closure, A._loadPurchaseOrders__closure, A._loadPurchaseOrders__closure0, A._saveDocument_closure3, A._saveDocument__closure7, A._saveDocument__closure8, A.purchaseOrderUIReducer_closure, A.editingReducer__closure44, A.editingReducer__closure43, A.editingReducer__closure42, A.editingReducer__closure41, A.editingReducer__closure40, A.editingReducer___closure2, A.editingReducer__closure39, A.editingReducer__closure38, A._addPurchaseOrderItem_closure, A._addPurchaseOrderItems_closure, A._removePurchaseOrderItem_closure, A._updatePurchaseOrderItem_closure, A._viewPurchaseOrderList_closure, A._filterPurchaseOrdersByCustom1_closure, A._filterPurchaseOrdersByCustom1_closure0, A._filterPurchaseOrdersByCustom2_closure, A._filterPurchaseOrdersByCustom2_closure0, A._filterPurchaseOrdersByCustom3_closure, A._filterPurchaseOrdersByCustom3_closure0, A._filterPurchaseOrdersByCustom4_closure, A._filterPurchaseOrdersByCustom4_closure0, A._filterPurchaseOrdersByState_closure, A._filterPurchaseOrdersByState_closure0, A._filterPurchaseOrdersByStatus_closure, A._filterPurchaseOrdersByStatus_closure0, A._filterPurchaseOrders_closure, A._sortPurchaseOrders_closure, A._startListMultiselect_closure20, A._addToListMultiselect_closure20, A._removeFromListMultiselect_closure20, A._clearListMultiselect_closure20, A._markSentPurchaseOrderSuccess_closure0, A._markSentPurchaseOrderSuccess_closure1, A._markSentPurchaseOrderSuccess_closure, A._convertPurchaseOrdersToExpenses_closure0, A._convertPurchaseOrdersToExpenses_closure1, A._convertPurchaseOrdersToExpenses_closure, A._addPurchaseOrdersToInventorySuccess_closure0, A._addPurchaseOrdersToInventorySuccess_closure1, A._addPurchaseOrdersToInventorySuccess_closure, A._acceptPurchaseOrderSuccess_closure0, A._acceptPurchaseOrderSuccess_closure1, A._acceptPurchaseOrderSuccess_closure, A._cancelPurchaseOrderSuccess_closure0, A._cancelPurchaseOrderSuccess_closure1, A._cancelPurchaseOrderSuccess_closure, A._archivePurchaseOrderSuccess_closure, A._deletePurchaseOrderSuccess_closure, A._restorePurchaseOrderSuccess_closure, A._emailPurchaseOrderSuccess_closure, A._approvePurchaseOrderSuccess_closure0, A._approvePurchaseOrderSuccess_closure1, A._approvePurchaseOrderSuccess_closure, A._addPurchaseOrder_closure, A._addPurchaseOrder__closure, A._updatePurchaseOrder_closure, A._updatePurchaseOrder__closure, A.purchaseOrderContactSelector_closure, A.purchaseOrderContactSelector_closure0, A.memoizedFilteredPurchaseOrderList_closure, A.filteredPurchaseOrdersSelector_closure, A.PurchaseOrderState_loadPurchaseOrders_closure0, A.PurchaseOrderState_loadPurchaseOrders_closure1, A.PurchaseOrderState_loadPurchaseOrders_closure, A.handleQuoteAction_closure, A.handleQuoteAction_closure0, A.handleQuoteAction_closure2, A.handleQuoteAction_closure3, A.handleQuoteAction_closure4, A.handleQuoteAction_closure5, A.handleQuoteAction_closure6, A.handleQuoteAction_closure7, A._viewQuote_closure, A._viewQuoteList_closure0, A._viewQuoteList__closure, A._editQuote_closure, A._showEmailQuote_closure, A._showPdfQuote_closure, A._archiveQuote_closure, A._archiveQuote__closure, A._archiveQuote__closure0, A._archiveQuote__closure1, A._deleteQuote_closure, A._deleteQuote__closure, A._deleteQuote__closure0, A._deleteQuote__closure1, A._restoreQuote_closure, A._restoreQuote__closure, A._restoreQuote__closure0, A._restoreQuote__closure1, A._convertQuote_closure, A._convertQuote__closure, A._convertQuote__closure0, A._approveQuote_closure, A._approveQuote__closure, A._approveQuote__closure0, A._markSentQuote_closure, A._markSentQuote__closure, A._markSentQuote__closure0, A._emailQuote_closure, A._emailQuote__closure, A._emailQuote__closure0, A._saveQuote_closure, A._saveQuote__closure, A._saveQuote___closure, A._saveQuote__closure0, A._saveQuote__closure1, A._loadQuote_closure, A._loadQuote__closure, A._loadQuote__closure0, A._downloadQuotes_closure, A._downloadQuotes__closure, A._downloadQuotes__closure0, A._bulkEmailQuotes_closure, A._bulkEmailQuotes__closure, A._bulkEmailQuotes__closure0, A._loadQuotes_closure, A._loadQuotes__closure, A._loadQuotes__closure0, A._saveDocument_closure5, A._saveDocument__closure11, A._saveDocument__closure12, A.quoteUIReducer_closure, A.editingReducer__closure5, A.editingReducer__closure4, A.editingReducer__closure3, A.editingReducer__closure2, A.editingReducer__closure1, A.editingReducer___closure, A.editingReducer__closure0, A.editingReducer__closure, A._addQuoteItem_closure, A._addQuoteItems_closure, A._removeQuoteItem_closure, A._updateQuoteItem_closure, A._viewQuoteList_closure, A._filterQuotesByCustom1_closure, A._filterQuotesByCustom1_closure0, A._filterQuotesByCustom2_closure, A._filterQuotesByCustom2_closure0, A._filterQuotesByCustom3_closure, A._filterQuotesByCustom3_closure0, A._filterQuotesByCustom4_closure, A._filterQuotesByCustom4_closure0, A._filterQuotesByState_closure, A._filterQuotesByState_closure0, A._filterQuotesByStatus_closure, A._filterQuotesByStatus_closure0, A._filterQuotes_closure, A._sortQuotes_closure, A._startListMultiselect_closure, A._addToListMultiselect_closure, A._removeFromListMultiselect_closure, A._clearListMultiselect_closure, A._markSentQuoteSuccess_closure0, A._markSentQuoteSuccess_closure1, A._markSentQuoteSuccess_closure, A._archiveQuoteSuccess_closure, A._deleteQuoteSuccess_closure, A._restoreQuoteSuccess_closure, A._emailQuoteSuccess_closure, A._convertQuoteSuccess_closure0, A._convertQuoteSuccess_closure1, A._convertQuoteSuccess_closure, A._addQuote_closure, A._addQuote__closure, A._updateQuote_closure, A._updateQuote__closure, A.quoteContactSelector_closure, A.quoteContactSelector_closure0, A.memoizedFilteredQuoteList_closure, A.filteredQuotesSelector_closure, A.QuoteState_loadQuotes_closure0, A.QuoteState_loadQuotes_closure1, A.QuoteState_loadQuotes_closure, A.handleRecurringExpenseAction_closure, A.handleRecurringExpenseAction_closure0, A.handleRecurringExpenseAction_closure1, A._editRecurringExpense_closure, A._viewRecurringExpense_closure, A._viewRecurringExpenseList_closure0, A._viewRecurringExpenseList__closure, A._archiveRecurringExpense_closure, A._archiveRecurringExpense__closure, A._archiveRecurringExpense__closure0, A._archiveRecurringExpense__closure1, A._deleteRecurringExpense_closure, A._deleteRecurringExpense__closure, A._deleteRecurringExpense__closure0, A._deleteRecurringExpense__closure1, A._restoreRecurringExpense_closure, A._restoreRecurringExpense__closure, A._restoreRecurringExpense__closure0, A._restoreRecurringExpense__closure1, A._saveRecurringExpense_closure, A._saveRecurringExpense__closure, A._saveRecurringExpense__closure0, A._loadRecurringExpense_closure, A._loadRecurringExpense__closure, A._loadRecurringExpense__closure0, A._loadRecurringExpenses_closure, A._loadRecurringExpenses__closure, A._loadRecurringExpenses__closure0, A._startRecurringExpense_closure, A._startRecurringExpense__closure, A._startRecurringExpense__closure0, A._stopRecurringExpense_closure, A._stopRecurringExpense__closure, A._stopRecurringExpense__closure0, A._saveDocument_closure2, A._saveDocument__closure5, A._saveDocument__closure6, A.recurringExpenseUIReducer_closure, A.editingReducer__closure37, A._viewRecurringExpenseList_closure, A._filterRecurringExpensesByCustom1_closure, A._filterRecurringExpensesByCustom1_closure0, A._filterRecurringExpensesByCustom2_closure, A._filterRecurringExpensesByCustom2_closure0, A._filterRecurringExpensesByState_closure, A._filterRecurringExpensesByState_closure0, A._filterRecurringExpenses_closure, A._sortRecurringExpenses_closure, A._startListMultiselect_closure19, A._addToListMultiselect_closure19, A._removeFromListMultiselect_closure19, A._clearListMultiselect_closure19, A._archiveRecurringExpenseSuccess_closure, A._deleteRecurringExpenseSuccess_closure, A._restoreRecurringExpenseSuccess_closure, A._addRecurringExpense_closure, A._addRecurringExpense__closure, A._updateRecurringExpense_closure, A._updateRecurringExpense__closure, A._startRecurringExpensesSuccess_closure, A._stopRecurringExpensesSuccess_closure, A._setLoadedRecurringExpense_closure, A._setLoadedRecurringExpense__closure, A.memoizedFilteredRecurringExpenseList_closure, A.filteredRecurringExpensesSelector_closure, A.RecurringExpenseState_loadRecurringExpenses_closure0, A.RecurringExpenseState_loadRecurringExpenses_closure1, A.RecurringExpenseState_loadRecurringExpenses_closure, A.handleRecurringInvoiceAction_closure, A.handleRecurringInvoiceAction_closure0, A.handleRecurringInvoiceAction_closure1, A.handleRecurringInvoiceAction_closure2, A.handleRecurringInvoiceAction_closure3, A._editRecurringInvoice_closure, A._viewRecurringInvoice_closure, A._viewRecurringInvoiceList_closure, A._viewRecurringInvoiceList__closure, A._showPdfRecurringInvoice_closure, A._startRecurringInvoice_closure, A._startRecurringInvoice__closure, A._startRecurringInvoice__closure0, A._stopRecurringInvoice_closure, A._stopRecurringInvoice__closure, A._stopRecurringInvoice__closure0, A._sendNowRecurringInvoice_closure, A._sendNowRecurringInvoice__closure, A._sendNowRecurringInvoice__closure0, A._archiveRecurringInvoice_closure, A._archiveRecurringInvoice__closure, A._archiveRecurringInvoice__closure0, A._archiveRecurringInvoice__closure1, A._deleteRecurringInvoice_closure, A._deleteRecurringInvoice__closure, A._deleteRecurringInvoice__closure0, A._deleteRecurringInvoice__closure1, A._restoreRecurringInvoice_closure, A._restoreRecurringInvoice__closure, A._restoreRecurringInvoice__closure0, A._restoreRecurringInvoice__closure1, A._saveRecurringInvoice_closure, A._saveRecurringInvoice__closure, A._saveRecurringInvoice___closure, A._saveRecurringInvoice__closure0, A._saveRecurringInvoice__closure1, A._loadRecurringInvoice_closure, A._loadRecurringInvoice__closure, A._loadRecurringInvoice__closure0, A._loadRecurringInvoices_closure, A._loadRecurringInvoices__closure, A._loadRecurringInvoices__closure0, A._saveDocument_closure1, A._saveDocument__closure3, A._saveDocument__closure4, A.recurringInvoiceUIReducer_closure, A.editingReducer__closure33, A.editingReducer__closure32, A.editingReducer__closure31, A.editingReducer__closure30, A.editingReducer__closure29, A.editingReducer___closure1, A.editingReducer__closure28, A.editingReducer__closure27, A._addRecurringInvoiceItem_closure, A._addRecurringInvoiceItems_closure, A._removeRecurringInvoiceItem_closure, A._updateRecurringInvoiceItem_closure, A._filterRecurringInvoicesByCustom1_closure, A._filterRecurringInvoicesByCustom1_closure0, A._filterRecurringInvoicesByCustom2_closure, A._filterRecurringInvoicesByCustom2_closure0, A._filterRecurringInvoicesByCustom3_closure, A._filterRecurringInvoicesByCustom3_closure0, A._filterRecurringInvoicesByCustom4_closure, A._filterRecurringInvoicesByCustom4_closure0, A._filterRecurringInvoicesByState_closure, A._filterRecurringInvoicesByState_closure0, A._filterRecurringInvoicesByStatus_closure, A._filterRecurringInvoicesByStatus_closure0, A._filterRecurringInvoices_closure, A._sortRecurringInvoices_closure, A._startListMultiselect_closure15, A._addToListMultiselect_closure15, A._removeFromListMultiselect_closure15, A._clearListMultiselect_closure15, A._archiveRecurringInvoiceSuccess_closure, A._deleteRecurringInvoiceSuccess_closure, A._emailRecurringInvoiceSuccess_closure, A._restoreRecurringInvoiceSuccess_closure, A._sendNowRecurringInvoiceSuccess_closure, A._startRecurringInvoicesSuccess_closure, A._stopRecurringInvoicesSuccess_closure, A._addRecurringInvoice_closure, A._addRecurringInvoice__closure, A._updateRecurringInvoice_closure, A._updateRecurringInvoice__closure, A.memoizedFilteredRecurringInvoiceList_closure, A.filteredRecurringInvoicesSelector_closure, A.RecurringInvoiceState_loadRecurringInvoices_closure0, A.RecurringInvoiceState_loadRecurringInvoices_closure1, A.RecurringInvoiceState_loadRecurringInvoices_closure, A._viewReports_closure, A._viewReports___closure, A.reportsUIReducer_closure, A.reportsUIReducer_closure0, A.reportsUIReducer_closure1, A._viewSettings_closure, A._viewSettings___closure, A._saveCompany_closure, A._saveCompany__closure, A._saveCompany__closure0, A._saveAuthUser_closure, A._saveAuthUser__closure, A._saveAuthUser__closure0, A._connectOAuthUser_closure0, A._connectOAuthUser__closure, A._connectOAuthUser__closure0, A._connectGmailUser_closure0, A._connectGmailUser__closure, A._connectGmailUser__closure0, A._disableTwoFactor_closure, A._disableTwoFactor__closure, A._disableTwoFactor__closure0, A._saveSettings_closure, A._saveSettings__closure, A._saveSettings__closure0, A._uploadLogo_closure, A._uploadLogo__closure, A._uploadLogo__closure0, A._saveDocument_closure4, A._saveDocument__closure9, A._saveDocument__closure10, A.settingsUIReducer__closure14, A.settingsUIReducer__closure13, A.settingsUIReducer__closure10, A.settingsUIReducer__closure11, A.settingsUIReducer__closure12, A.settingsUIReducer__closure9, A.settingsUIReducer__closure8, A.settingsUIReducer__closure7, A.settingsUIReducer__closure6, A.settingsUIReducer__closure5, A.settingsUIReducer__closure4, A.settingsUIReducer__closure3, A.settingsUIReducer__closure2, A.settingsUIReducer__closure1, A.settingsUIReducer__closure0, A.settingsUIReducer__closure, A.staticLoadedReducer_closure, A.staticLoadedReducer__closure, A.staticLoadedReducer__closure0, A.staticLoadedReducer__closure1, A.staticLoadedReducer__closure2, A.staticLoadedReducer__closure3, A.staticLoadedReducer__closure4, A.staticLoadedReducer__closure5, A.staticLoadedReducer__closure6, A.staticLoadedReducer__closure7, A.staticLoadedReducer__closure8, A.staticLoadedReducer__closure9, A.staticLoadedReducer__closure10, A.staticLoadedReducer__closure11, A.staticLoadedReducer__closure12, A.staticLoadedReducer__closure13, A.staticLoadedReducer__closure14, A.staticLoadedReducer__closure15, A.staticLoadedReducer__closure16, A.memoizedCountryList_closure, A.memoizedGroupList_closure, A.groupList_closure, A.memoizedLanguageList_closure, A.memoizedCurrencyList_closure, A.memoizedTimezoneList_closure, A.memoizedDateFormatList_closure, A.memoizedIndustryList_closure, A.memoizedSizeList_closure, A.memoizedGatewayList_closure, A.gatewayList_closure, A.memoizedPaymentTypeList_closure, A.memoizedFontMap_closure, A.fontMap_closure, A.fontMap_closure0, A.handleSubscriptionAction_closure, A._editSubscription_closure, A._viewSubscription_closure, A._viewSubscriptionList_closure, A._viewSubscriptionList__closure, A._archiveSubscription_closure, A._archiveSubscription__closure, A._archiveSubscription__closure0, A._archiveSubscription__closure1, A._deleteSubscription_closure, A._deleteSubscription__closure, A._deleteSubscription__closure0, A._deleteSubscription__closure1, A._restoreSubscription_closure, A._restoreSubscription__closure, A._restoreSubscription__closure0, A._restoreSubscription__closure1, A._saveSubscription_closure, A._saveSubscription__closure, A._saveSubscription__closure0, A._loadSubscription_closure, A._loadSubscription__closure, A._loadSubscription__closure0, A._loadSubscriptions_closure, A._loadSubscriptions__closure, A._loadSubscriptions__closure0, A.subscriptionUIReducer_closure, A.editingReducer__closure36, A._filterSubscriptionsByCustom1_closure, A._filterSubscriptionsByCustom1_closure0, A._filterSubscriptionsByCustom2_closure, A._filterSubscriptionsByCustom2_closure0, A._filterSubscriptionsByState_closure, A._filterSubscriptionsByState_closure0, A._filterSubscriptions_closure, A._sortSubscriptions_closure, A._startListMultiselect_closure18, A._addToListMultiselect_closure18, A._removeFromListMultiselect_closure18, A._clearListMultiselect_closure18, A._archiveSubscriptionSuccess_closure, A._deleteSubscriptionSuccess_closure, A._restoreSubscriptionSuccess_closure, A._addSubscription_closure, A._updateSubscription_closure, A._setLoadedSubscription_closure, A.memoizedFilteredSubscriptionList_closure, A.filteredSubscriptionsSelector_closure, A.SubscriptionState_loadSubscriptions_closure0, A.SubscriptionState_loadSubscriptions_closure1, A.SubscriptionState_loadSubscriptions_closure, A.handleTaskAction_closure, A.handleTaskAction_closure0, A.handleTaskAction_closure2, A.handleTaskAction_closure3, A.handleTaskAction_closure4, A._editTask_closure, A._viewTask_closure, A._viewTaskList_closure0, A._viewTaskList__closure, A._archiveTask_closure, A._archiveTask__closure, A._archiveTask__closure0, A._archiveTask__closure1, A._startTask_closure, A._startTask__closure, A._startTask__closure0, A._startTask__closure1, A._stopTask_closure, A._stopTask__closure, A._stopTask__closure0, A._stopTask__closure1, A._deleteTask_closure, A._deleteTask__closure, A._deleteTask__closure0, A._deleteTask__closure1, A._restoreTask_closure, A._restoreTask__closure, A._restoreTask__closure0, A._restoreTask__closure1, A._saveTask_closure, A._saveTask__closure, A._saveTask__closure0, A._loadTask_closure, A._loadTask__closure, A._loadTask__closure0, A._loadTasks_closure, A._loadTasks__closure, A._loadTasks__closure0, A._saveDocument_closure7, A._saveDocument__closure15, A._saveDocument__closure16, A._sortTasks_closure0, A._sortTasks__closure, A._sortTasks__closure0, A.taskUIReducer_closure, A.editingReducer__closure8, A._viewTaskList_closure, A._filterTasksByCustom1_closure, A._filterTasksByCustom1_closure0, A._filterTasksByCustom2_closure, A._filterTasksByCustom2_closure0, A._filterTasksByState_closure, A._filterTasksByState_closure0, A._filterTasksByStatus_closure, A._filterTasksByStatus_closure0, A._filterTasks_closure, A._sortTasks_closure, A._startListMultiselect_closure2, A._addToListMultiselect_closure2, A._removeFromListMultiselect_closure2, A._clearListMultiselect_closure2, A._sortTasksSuccess_closure, A._sortTasksSuccess__closure, A._archiveTaskSuccess_closure, A._startTaskSuccess_closure, A._stopTaskSuccess_closure, A._deleteTaskSuccess_closure, A._restoreTaskSuccess_closure, A._addTask_closure, A._updateTask_closure, A._setLoadedTask_closure, A.convertTaskToInvoiceItem_closure, A.convertTaskToInvoiceItem_closure0, A.convertTaskToInvoiceItem_closure1, A.memoizedTaskList_closure, A.taskList_closure, A.memoizedKanbanTaskList_closure, A.kanbanTasksSelector_closure, A.memoizedFilteredTaskList_closure, A.filteredTasksSelector_closure, A.TaskState_loadTasks_closure0, A.TaskState_loadTasks_closure1, A.TaskState_loadTasks_closure, A.handleTaskStatusAction_closure, A.handleTaskStatusAction_closure0, A._editTaskStatus_closure, A._viewTaskStatus_closure, A._viewTaskStatusList_closure0, A._viewTaskStatusList__closure, A._archiveTaskStatus_closure, A._archiveTaskStatus__closure, A._archiveTaskStatus__closure0, A._archiveTaskStatus__closure1, A._deleteTaskStatus_closure, A._deleteTaskStatus__closure, A._deleteTaskStatus__closure0, A._deleteTaskStatus__closure1, A._restoreTaskStatus_closure, A._restoreTaskStatus__closure, A._restoreTaskStatus__closure0, A._restoreTaskStatus__closure1, A._saveTaskStatus_closure, A._saveTaskStatus__closure, A._saveTaskStatus__closure0, A._loadTaskStatus_closure, A._loadTaskStatus__closure, A._loadTaskStatus__closure0, A._loadTaskStatuses_closure, A._loadTaskStatuses__closure, A._loadTaskStatuses__closure0, A.taskStatusUIReducer_closure, A.editingReducer__closure35, A._viewTaskStatusList_closure, A._filterTaskStatusesByCustom1_closure, A._filterTaskStatusesByCustom1_closure0, A._filterTaskStatusesByCustom2_closure, A._filterTaskStatusesByCustom2_closure0, A._filterTaskStatusesByState_closure, A._filterTaskStatusesByState_closure0, A._filterTaskStatuses_closure, A._sortTaskStatuses_closure, A._startListMultiselect_closure17, A._addToListMultiselect_closure17, A._removeFromListMultiselect_closure17, A._clearListMultiselect_closure17, A._sortTaskStatusSuccess_closure, A._sortTaskStatusSuccess__closure, A._archiveTaskStatusSuccess_closure, A._deleteTaskStatusSuccess_closure, A._restoreTaskStatusSuccess_closure, A._addTaskStatus_closure, A._updateTaskStatus_closure, A._setLoadedTaskStatus_closure, A.sortedActiveTaskStatusIds_closure, A.memoizedDropdownTaskStatusList_closure, A.dropdownTaskStatusesSelector_closure, A.memoizedFilteredTaskStatusList_closure, A.filteredTaskStatusesSelector_closure, A.defaultTaskStatusId_closure, A.TaskStatusState_loadTaskStatuses_closure0, A.TaskStatusState_loadTaskStatuses_closure1, A.TaskStatusState_loadTaskStatuses_closure, A.handleTaxRateAction_closure, A._editTaxRate_closure, A._viewTaxRate_closure, A._viewTaxRateList_closure0, A._viewTaxRateList__closure, A._archiveTaxRate_closure, A._archiveTaxRate__closure, A._archiveTaxRate__closure0, A._archiveTaxRate__closure1, A._deleteTaxRate_closure, A._deleteTaxRate__closure, A._deleteTaxRate__closure0, A._deleteTaxRate__closure1, A._restoreTaxRate_closure, A._restoreTaxRate__closure, A._restoreTaxRate__closure0, A._restoreTaxRate__closure1, A._saveTaxRate_closure, A._saveTaxRate__closure, A._saveTaxRate__closure0, A._loadTaxRate_closure, A._loadTaxRate__closure, A._loadTaxRate__closure0, A._loadTaxRates_closure, A._loadTaxRates__closure, A._loadTaxRates__closure0, A.taxRateUIReducer_closure, A.editingReducer__closure14, A._viewTaxRateList_closure, A._filterTaxRatesByState_closure, A._filterTaxRatesByState_closure0, A._filterTaxRates_closure, A._sortTaxRates_closure, A._startListMultiselect_closure8, A._addToListMultiselect_closure8, A._removeFromListMultiselect_closure8, A._clearListMultiselect_closure8, A._archiveTaxRateSuccess_closure, A._deleteTaxRateSuccess_closure, A._restoreTaxRateSuccess_closure, A._addTaxRate_closure, A._updateTaxRate_closure, A._setLoadedTaxRate_closure, A._setLoadedTaxRates_closure, A._setLoadedTaxRates__closure, A._setLoadedTaxRates__closure0, A._setLoadedTaxRates_closure0, A._setLoadedCompany_closure3, A._setLoadedCompany__closure3, A._setLoadedCompany__closure4, A._setLoadedCompany_closure4, A.memoizedFilteredTaxRateList_closure, A.filteredTaxRatesSelector_closure, A.handleTokenAction_closure, A._editToken_closure, A._viewToken_closure, A._viewTokenList_closure0, A._viewTokenList__closure, A._archiveToken_closure, A._archiveToken__closure, A._archiveToken__closure0, A._archiveToken__closure1, A._deleteToken_closure, A._deleteToken__closure, A._deleteToken__closure0, A._deleteToken__closure1, A._restoreToken_closure, A._restoreToken__closure, A._restoreToken__closure0, A._restoreToken__closure1, A._saveToken_closure, A._saveToken__closure, A._saveToken__closure0, A._loadToken_closure, A._loadToken__closure, A._loadToken__closure0, A._loadTokens_closure, A._loadTokens__closure, A._loadTokens__closure0, A.tokenUIReducer_closure, A.editingReducer__closure25, A._viewTokenList_closure, A._filterTokensByCustom1_closure, A._filterTokensByCustom1_closure0, A._filterTokensByCustom2_closure, A._filterTokensByCustom2_closure0, A._filterTokensByState_closure, A._filterTokensByState_closure0, A._filterTokens_closure, A._sortTokens_closure, A._startListMultiselect_closure13, A._addToListMultiselect_closure13, A._removeFromListMultiselect_closure13, A._clearListMultiselect_closure13, A._archiveTokenSuccess_closure, A._deleteTokenSuccess_closure, A._restoreTokenSuccess_closure, A._addToken_closure, A._updateToken_closure, A._setLoadedToken_closure, A.memoizedFilteredTokenList_closure, A.filteredTokensSelector_closure, A.TokenState_loadTokens_closure0, A.TokenState_loadTokens_closure1, A.TokenState_loadTokens_closure, A.prefReducer_closure, A._resortFields_closure, A._resortFields_closure0, A.sidebarEditorReducer__closure, A.sidebarEditorReducer__closure0, A.sidebarViewerReducer__closure, A.sidebarViewerReducer__closure0, A.companyPrefReducer_closure, A.historyReducer__closure, A._addToHistory_closure, A._addToHistory_closure1, A._addToHistory_closure2, A.uiReducer_closure, A.previewStackReducer__closure, A.filterStackReducer__closure, A.UIState_mainRoute_closure, A.UIState_subRoute_closure, A.UIState_previousMainRoute_closure, A.UIState_previousSubRoute_closure, A.handleUserAction_closure, A.handleUserAction_closure0, A.handleUserAction_closure1, A.handleUserAction_closure2, A.handleUserAction_closure3, A.handleUserAction_closure4, A.handleUserAction_closure5, A.handleUserAction_closure6, A.handleUserAction_closure7, A.handleUserAction_closure8, A.handleUserAction_closure9, A.handleUserAction_closure11, A.handleUserAction_closure13, A.handleUserAction_closure15, A.handleUserAction_closure17, A.handleUserAction_closure16, A._editUser_closure, A._viewUser_closure, A._viewUserList_closure0, A._viewUserList__closure, A._archiveUser_closure, A._archiveUser__closure, A._archiveUser__closure0, A._archiveUser__closure1, A._deleteUser_closure, A._deleteUser__closure, A._deleteUser__closure0, A._deleteUser__closure1, A._restoreUser_closure, A._restoreUser__closure, A._restoreUser__closure0, A._restoreUser__closure1, A._removeUser_closure, A._removeUser__closure, A._removeUser__closure0, A._resendInvite_closure, A._resendInvite__closure, A._resendInvite__closure0, A._saveUser_closure, A._saveUser__closure, A._saveUser__closure0, A._loadUser_closure, A._loadUser__closure, A._loadUser__closure0, A._loadUsers_closure, A._loadUsers__closure, A._loadUsers__closure0, A.userUIReducer_closure, A.editingReducer__closure15, A._viewUserList_closure, A._filterUsersByCustom1_closure, A._filterUsersByCustom1_closure0, A._filterUsersByCustom2_closure, A._filterUsersByCustom2_closure0, A._filterUsersByCustom3_closure, A._filterUsersByCustom3_closure0, A._filterUsersByCustom4_closure, A._filterUsersByCustom4_closure0, A._filterUsersByState_closure, A._filterUsersByState_closure0, A._filterUsers_closure, A._sortUsers_closure, A._startListMultiselect_closure9, A._addToListMultiselect_closure9, A._removeFromListMultiselect_closure9, A._clearListMultiselect_closure9, A._archiveUserSuccess_closure, A._deleteUserSuccess_closure, A._restoreUserSuccess_closure, A._removeUserSuccess_closure, A._addUser_closure, A._updateUser_closure, A._updateAuthUser_closure, A._connectOAuthUser_closure, A._connectGmailUser_closure, A._setLoadedUser_closure, A._setLoadedUsers_closure, A._setLoadedUsers__closure, A._setLoadedUsers__closure0, A._setLoadedUsers_closure0, A._setLoadedCompany_closure5, A._setLoadedCompany__closure5, A._setLoadedCompany__closure6, A._setLoadedCompany_closure6, A.memoizedFilteredUserList_closure, A.filteredUsersSelector_closure, A.memoizedUserList_closure, A.userList_closure, A.memoizedGmailUserList_closure, A.gmailUserList_closure, A.memoizedMicrosoftUserList_closure, A.microsoftUserList_closure, A.handleVendorAction_closure, A._editVendor_closure, A._viewVendor_closure, A._viewVendorList_closure0, A._viewVendorList__closure, A._archiveVendor_closure, A._archiveVendor__closure, A._archiveVendor__closure0, A._archiveVendor__closure1, A._deleteVendor_closure, A._deleteVendor__closure, A._deleteVendor__closure0, A._deleteVendor__closure1, A._restoreVendor_closure, A._restoreVendor__closure, A._restoreVendor__closure0, A._restoreVendor__closure1, A._saveVendor_closure, A._saveVendor__closure, A._saveVendor__closure0, A._loadVendor_closure, A._loadVendor__closure, A._loadVendor__closure0, A._loadVendors_closure, A._loadVendors__closure, A._loadVendors__closure0, A._saveDocument_closure8, A._saveDocument__closure17, A._saveDocument__closure18, A.vendorUIReducer_closure, A.editingReducer__closure9, A._addContact_closure, A._removeContact_closure, A._updateContact_closure, A._viewVendorList_closure, A._filterVendorsByCustom1_closure, A._filterVendorsByCustom1_closure0, A._filterVendorsByCustom2_closure, A._filterVendorsByCustom2_closure0, A._filterVendorsByCustom3_closure, A._filterVendorsByCustom3_closure0, A._filterVendorsByCustom4_closure, A._filterVendorsByCustom4_closure0, A._filterVendorsByState_closure, A._filterVendorsByState_closure0, A._filterVendors_closure, A._sortVendors_closure, A._startListMultiselect_closure3, A._addToListMultiselect_closure3, A._removeFromListMultiselect_closure3, A._clearListMultiselect_closure3, A._archiveVendorSuccess_closure, A._deleteVendorSuccess_closure, A._restoreVendorSuccess_closure, A._addVendor_closure, A._updateVendor_closure, A._setLoadedVendor_closure, A.memoizedDropdownVendorList_closure, A.dropdownVendorsSelector_closure, A.memoizedFilteredVendorList_closure, A.filteredVendorsSelector_closure, A.memoizedCalculateVendorBalance_closure, A.calculateVendorBalance_closure, A.VendorState_loadVendors_closure0, A.VendorState_loadVendors_closure1, A.VendorState_loadVendors_closure, A.handleWebhookAction_closure, A._editWebhook_closure, A._viewWebhook_closure, A._viewWebhookList_closure0, A._viewWebhookList__closure, A._archiveWebhook_closure, A._archiveWebhook__closure, A._archiveWebhook__closure0, A._archiveWebhook__closure1, A._deleteWebhook_closure, A._deleteWebhook__closure, A._deleteWebhook__closure0, A._deleteWebhook__closure1, A._restoreWebhook_closure, A._restoreWebhook__closure, A._restoreWebhook__closure0, A._restoreWebhook__closure1, A._saveWebhook_closure, A._saveWebhook__closure, A._saveWebhook__closure0, A._loadWebhook_closure, A._loadWebhook__closure, A._loadWebhook__closure0, A._loadWebhooks_closure, A._loadWebhooks__closure, A._loadWebhooks__closure0, A.webhookUIReducer_closure, A.editingReducer__closure26, A._viewWebhookList_closure, A._filterWebhooksByCustom1_closure, A._filterWebhooksByCustom1_closure0, A._filterWebhooksByCustom2_closure, A._filterWebhooksByCustom2_closure0, A._filterWebhooksByState_closure, A._filterWebhooksByState_closure0, A._filterWebhooks_closure, A._sortWebhooks_closure, A._startListMultiselect_closure14, A._addToListMultiselect_closure14, A._removeFromListMultiselect_closure14, A._clearListMultiselect_closure14, A._archiveWebhookSuccess_closure, A._deleteWebhookSuccess_closure, A._restoreWebhookSuccess_closure, A._addWebhook_closure, A._updateWebhook_closure, A._setLoadedWebhook_closure, A.memoizedFilteredWebhookList_closure, A.filteredWebhooksSelector_closure, A.WebhookState_loadWebhooks_closure0, A.WebhookState_loadWebhooks_closure1, A.WebhookState_loadWebhooks_closure, A.ActionMenuButton_build_closure, A.ActionMenuButton_build_closure0, A.ActionMenuButton_build_closure1, A._AppBottomBarState_build__closure14, A._AppBottomBarState_build___closure8, A._AppBottomBarState_build____closure1, A._AppBottomBarState_build_____closure2, A._AppBottomBarState_build__closure12, A._AppBottomBarState_build___closure6, A._AppBottomBarState_build____closure0, A._AppBottomBarState_build_____closure1, A._AppBottomBarState_build__closure2, A._AppBottomBarState_build___closure0, A._AppBottomBarState_build____closure, A._AppBottomBarState_build_____closure, A._AppBottomBarState_build__closure10, A._AppBottomBarState_build___closure4, A._AppBottomBarState_build__closure8, A._AppBottomBarState_build___closure3, A._AppBottomBarState_build__closure6, A._AppBottomBarState_build___closure2, A._AppBottomBarState_build__closure4, A._AppBottomBarState_build___closure1, A._AppBottomBarState_build___onColumnsPressed_closure, A._AppBottomBarState_build___onColumnsPressed__closure, A._AppBottomBarState_build___onColumnsPressed__closure0, A._AppBottomBarState_build___onColumnsPressed__closure1, A.CustomFieldSelector_build_closure0, A.CustomFieldSelector_build__closure, A.CustomFieldSelector_build___closure, A._ChangeLayoutBannerState_build__closure, A.ConfirmEmail_build___closure, A.ConfirmEmailVM_fromStore_closure2, A.ConfirmEmailVM_fromStore__closure, A._DesktopSessionTimeoutState_initState_closure, A._DesktopSessionTimeoutState_build__closure, A.MessageDialog_build_closure, A.ErrorDialog_build__closure, A._HealthCheckDialogState_runCheck_closure0, A._HealthCheckDialogState_runCheck_closure1, A._HealthCheckDialogState_clearCache_closure0, A._HealthCheckDialogState_clearCache__closure, A._HealthCheckDialogState_clearCache_closure1, A.multiselectDialog_closure, A.multiselectDialog__closure, A.MultiSelectListState_build_closure, A.MultiSelectListState_build_closure0, A.MultiSelectListState_build_closure2, A.MultiSelectListState_build_closure3, A.MultiSelectListState_build_closure4, A.DismissibleEntity_build_closure, A.DismissibleEntity_build_closure0, A.DismissibleEntity_build_closure1, A.DismissibleEntity_build_closure2, A.DismissibleEntity_build_closure3, A.DocumentGrid_build__closure, A.DocumentTile_build_closure0, A.DocumentTile_build__closure, A.DocumentTile_build_closure, A.DocumentPreview_build_closure, A.EditScaffold_build_closure, A.EditScaffold_build_closure2, A.EditScaffold_build__closure2, A.EditScaffold_build__closure1, A.EditScaffold_build___closure, A.EditScaffold_build_closure4, A.EditScaffold_build_closure3, A.EditScaffold_build_closure5, A.EditScaffold_build__closure, A.EditScaffold_build_closure6, A.showEntityActionsDialog_closure, A.showEntityActionsDialog_closure0, A._EntityListTileState_build_closure3, A._EntityListTileState_build_closure4, A._EntitiesListTileState_build_closure2, A._EntitiesListTileState_build_closure3, A._EntityDropdownState__showOptions_closure, A._EntityDropdownState__showOptions__closure0, A._EntityDropdownState_build__closure8, A._EntityDropdownState_build_closure5, A._EntityDropdownState_build__closure, A._EntityDropdownState_build__closure0, A._EntityDropdownState_build__closure1, A._EntityDropdownState_build_closure3, A._EntityDropdownState_build_closure4, A._EntityDropdownState_build_closure__wrapUp, A._EntityDropdownState_build___wrapUp_closure, A._EntityDropdownState_build__closure2, A._EntityDropdownState_build__closure3, A._EntityDropdownState_build__closure4, A._EntityDropdownState_build_closure1, A._EntityDropdownState_build__closure7, A._EntityDropdownState_build__closure6, A._EntityDropdownState_build_closure2, A._EntityDropdownState_build___closure, A._EntityDropdownState_build____closure, A._EntityDropdownState_build____closure0, A._EntityDropdownDialogState_build__selectEntity, A._EntityDropdownDialogState_build__headerRow_closure, A._EntityDropdownDialogState_build__headerRow__closure, A._EntityDropdownDialogState_build__createList_closure, A._EntityDropdownDialogState_build__createList_closure0, A._EntityDropdownDialogState_build__createList__closure, A.EntityTopFilter_build_closure, A.EntityTopFilter_build__closure0, A.EntityTopFilter_build__closure, A.EntityTopFilter_build___closure, A.EntityTopFilter_build___closure0, A.EntityTopFilterHeader_build_closure, A.EntityTopFilterHeader_build_closure4, A.EntityTopFilterHeader_build__closure1, A.EntityTopFilterHeader_build__closure0, A.EntityTopFilterHeader_build___closure, A.AppDropdownButton_build_closure, A.AppToggleButtons_build__closure, A.AppToggleButtons_build__closure0, A.BoolDropdownButton_build_closure, A.BoolDropdownButton_build_closure0, A.BoolDropdownButton_build_closure1, A.BoolDropdownButton_build_closure3, A.ClientPicker_build_closure, A._FormColorPickerState_didChangeDependencies_closure, A._FormColorPickerState_didChangeDependencies_closure0, A._FormColorPickerState__showPicker_closure, A._FormColorPickerState__showPicker__closure, A._CustomFieldState_build_closure, A._CustomFieldState_build_closure1, A._CustomFieldState_build_closure2, A._DatePickerState_build_closure0, A._DecoratedFormFieldState_build_closure0, A._DecoratedFormFieldState_build_closure1, A.DesignPicker_build_closure1, A.DesignPicker_build_closure, A.DesignPicker_build_closure0, A._DurationPickerState_build_closure1, A._DurationPickerState_build_closure, A._DurationPickerState_build__closure0, A._DurationPickerState_build_closure0, A.DynamicSelector_build_closure0, A.DynamicSelector_build_closure, A.DynamicSelector_build_closure1, A.NotificationSettings_build_closure, A.NotificationSettings_build_closure0, A.NotificationSettings_build_closure1, A.NotificationSettings_build__closure, A._NotificationSelector_build_closure, A._PasswordFormFieldState_build_closure0, A.ProjectPicker_build_closure0, A.ProjectPicker_build__closure, A.SaveCancelButtons_build_closure, A.SaveCancelButtons_build_closure0, A._TimePickerState_build_closure0, A._TimePickerState_build__closure, A._TimePickerState_build__closure0, A.VendorPicker_build_closure0, A.VendorPicker_build__closure, A.HistoryDrawer_build_closure, A._HistoryListTileState_build__closure, A._InvoiceEmailViewState_dispose_closure, A._InvoiceEmailViewState__loadTemplate_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure1, A._InvoiceEmailViewState__buildTemplateDropdown_closure2, A._InvoiceEmailViewState__buildEdit_closure0, A._InvoiceEmailViewState__buildEdit_closure1, A._InvoiceEmailViewState__buildEdit_closure2, A._InvoiceEmailViewState_build_closure, A._InvoiceEmailViewState_build_closure0, A._InvoiceEmailViewState_build_closure1, A._InvoiceEmailViewState_build_closure2, A._TaxRateDropdownState_didChangeDependencies_closure, A._TaxRateDropdownState_didChangeDependencies_closure0, A._TaxRateDropdownState_build_closure, A._TaxRateDropdownState_build_closure0, A._TaxRateDropdownState_build_closure1, A._TaxRateDropdownState_build_closure3, A.TaxRateField_build_closure, A.TaxRateField_build_closure0, A._LinkTextRelatedEntityState_build_closure2, A._LinkTextRelatedEntityState_build_closure1, A._ListFilterState_build_closure0, A._ListFilterState_build_closure3, A._ListFilterState_build__closure2, A._ListFilterState_build__closure3, A._ListFilterState_build_closure2, A._ListFilterState_build_closure1, A._ListFilterState_build__closure4, A._ListFilterState_build_closure6, A._ListFilterState_build__closure, A._ListFilterState_build___closure0, A._ListFilterState_build__closure0, A._ListFilterState_build___closure, A._ListFilterState_build_closure5, A._ListFilterState_build_closure4, A._ListFilterState_build__closure1, A.ListScaffold_build_closure1, A.ListScaffold_build_closure5, A._LiveTextState_initState_closure, A._MenuDrawerState_build__companyLogo, A._MenuDrawerState_build__companyListItem, A._MenuDrawerState_build__companyListItem_closure, A._MenuDrawerState_build__companyListItem_closure2, A._MenuDrawerState_build__companyListItem_closure3, A._MenuDrawerState_build_closure, A._MenuDrawerState_build__closure1, A._MenuDrawerState_build_closure0, A._MenuDrawerState_build__closure0, A._MenuDrawerState_build_closure3, A._MenuDrawerState_build__closure, A._MenuDrawerState_build_closure1, A._MenuDrawerState_build_closure2, A._DrawerTileState_build_closure3, A._DrawerTileState_build_closure4, A.SidebarFooter_build__closure, A.SidebarFooterCollapsed_build_closure0, A.SidebarFooterCollapsed_build_closure, A._showContactUs_closure, A._showUpdate_closure, A._showAbout_closure, A._showAbout___closure0, A._showAbout_____closure, A._showAbout___closure, A._ContactUsDialogState__sendMessage_closure0, A._ContactUsDialogState__sendMessage__closure1, A._ContactUsDialogState__sendMessage_closure1, A._ContactUsDialogState_build_closure1, A._ContactUsDialogState_build_closure2, A.MenuDrawerVM_fromStore_closure1, A.MenuDrawerVM_fromStore__closure, A.MenuDrawerVM_fromStore_closure, A.MenuDrawerVM_fromStore_closure0, A.MenuDrawerVM_fromStore__closure0, A.MenuDrawerVM_fromStore___closure, A.MenuDrawerVM_fromStore___closure0, A._DropDownMultiSelectState_initState_closure, A._DropDownMultiSelectState_build__closure1, A._DropDownMultiSelectState_build__closure2, A._DropDownMultiSelectState_build___closure, A._DropDownMultiSelectState_build__closure0, A._DropDownMultiSelectState_build____closure, A._SystemLogViewerState_build_closure, A._SystemLogViewerState_build_closure0, A._SystemLogViewerState_build_closure1, A.AppDataTable_build_closure, A.AppDataTable_build_closure0, A.AppPaginatedDataTableState__getBlankRowFor_closure, A.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure, A.AppPaginatedDataTableState_build_closure, A.EntityDataTableSource_getRow_closure, A.EntityDataTableSource_getRow_closure0, A.EntityDataTableSource_getRow_closure5, A._EntityListState_initState_closure, A._EntityListState_build_closure, A._EntityListState_build__closure, A._EntityListState_build__closure3, A._EntityListState_build__closure6, A._EntityListState_build___closure, A._EntityListState_build___closure0, A._EntityListState_build__closure5, A._EntityListState_build__closure7, A._EntityListState_build__closure8, A._EntityListState_build_closure0, A._EntityListState_build_closure1, A._EntityListState_build_closure2, A._EntityListState_build__closure13, A._EntityListState_build_closure4, A._EntityListState_build__closure12, A._EntityListState_build__closure11, A._EntityListState_build___closure2, A._EntityListState_build_closure6, A._EntityListState_build__closure9, A._EntityListState_build_closure5, A._VariablesHelpState_build_closure, A._VariablesHelpState_build_closure0, A._VariablesHelpState_build_closure1, A._VariableGrid_build__closure, A.ViewScaffold_build_closure4, A._WebSessionTimeoutState_initState_closure, A.InitScreen_build_closure0, A._LoginState__submitSignUpForm_closure0, A._LoginState__submitSignUpForm_closure1, A._LoginState__submitSignUpForm_closure2, A._LoginState__submitLoginForm_closure0, A._LoginState__submitLoginForm___closure, A._LoginState__submitLoginForm_closure1, A._LoginState_build_closure2, A._LoginState_build_closure3, A._LoginState_build_closure5, A._LoginState_build_closure4, A._LoginState_build_closure6, A._LoginState_build_closure7, A._LoginState_build_closure8, A._LoginState_build_closure9, A._LoginState_build_closure10, A.LoginVM_fromStore__handleLogin, A.LoginVM_fromStore__handleLogin_closure, A.LoginVM_fromStore__formatApiUrl, A.LoginVM_fromStore_closure3, A.LoginVM_fromStore___closure2, A.LoginVM_fromStore_closure4, A.LoginVM_fromStore___closure1, A.LoginVM_fromStore_closure5, A.LoginVM_fromStore___closure0, A.LoginVM_fromStore__closure4, A.LoginVM_fromStore_closure6, A.LoginVM_fromStore___closure, A.LoginVM_fromStore__closure2, A.LoginVM_fromStore_closure7, A.LoginVM_fromStore__closure0, A.LoginVM_fromStore_closure8, A.LoginVM_fromStore__closure, A.LoginVM_fromStore_closure1, A.LoginVM_fromStore__closure7, A.LoginVM_fromStore_closure0, A.LoginVM_fromStore_closure, A.LoginVM_fromStore__closure8, A.LoginVM_fromStore_closure2, A.ClientListItem_build__closure, A.ClientListItem_build__closure3, A.ClientListVM_fromStore__handleRefresh, A.ClientListVM_fromStore_closure, A.ClientListVM_fromStore_closure0, A._ClientPdfViewState_loadPdf_closure0, A._ClientPdfViewState_loadPdf_closure1, A._ClientPdfViewState_build_closure, A._ClientPdfViewState_build_closure0, A._ClientPdfViewState_build_closure2, A._ClientPdfViewState_build_closure1, A._ClientPdfViewState_build_closure4, A._ClientPdfViewState_build_closure3, A._ClientPdfViewState_build_closure10, A.ClientPdfScreen_build_closure0, A.ClientPresenter_getField_closure0, A.ClientScreen_build_closure7, A.ClientScreen_build_closure4, A.ClientScreen_build_closure0, A.ClientScreen_build_closure1, A.ClientScreen_build_closure2, A.ClientScreen_build_closure3, A._ClientEditState_build_closure, A._ClientEditState_build_closure0, A.ClientEditBillingAddressState_didChangeDependencies_closure, A.ClientEditBillingAddressState_didChangeDependencies_closure0, A.ClientEditBillingAddressState_dispose_closure, A.ClientEditBillingAddressState__onChanged_closure, A.ClientEditBillingAddressState_build_closure, A.ClientEditBillingAddressState_build__closure0, A.ClientEditBillingAddressState_build__closure, A._ClientEditContactsState__showContactEditor_closure, A._ClientEditContactsState__showContactEditor__closure, A._ClientEditContactsState_build_closure, A._ClientEditContactsState_build_closure0, A.ContactEditDetailsState_didChangeDependencies_closure, A.ContactEditDetailsState_didChangeDependencies_closure0, A.ContactEditDetailsState_dispose_closure, A.ContactEditDetailsState__onChanged_closure, A.ContactEditDetailsState_build_closure0, A.ContactEditDetailsState_build_closure, A.ContactEditDetailsState_build_closure2, A.ContactEditDetailsState_build_closure1, A.ContactEditDetailsState_build_closure4, A.ContactEditDetailsState_build_closure3, A.ContactEditDetailsState_build_closure6, A.ContactEditDetailsState_build_closure5, A.ContactEditDetailsState_build_closure7, A.ContactEditDetailsState_build_closure8, A.ContactEditDetailsState_build_closure9, A.ContactEditDetailsState_build_closure10, A.ContactEditDetailsState_build_closure11, A.ContactEditDetailsState_build_closure12, A.ContactEditDetailsState_build___closure, A.ContactEditDetailsState_build__closure1, A.ContactEditDetailsState_build__closure, A.ClientEditContactsScreen_build_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1, A.ClientEditDetailsState_didChangeDependencies_closure, A.ClientEditDetailsState_didChangeDependencies_closure0, A.ClientEditDetailsState_dispose_closure, A.ClientEditDetailsState__onChanged_closure, A.ClientEditDetailsState_build_closure, A.ClientEditDetailsState_build_closure0, A.ClientEditDetailsState_build__closure0, A.ClientEditDetailsState_build_closure1, A.ClientEditDetailsState_build__closure, A.ClientEditNotesState_didChangeDependencies_closure, A.ClientEditNotesState_didChangeDependencies_closure0, A.ClientEditNotesState_dispose_closure, A.ClientEditNotesState__onChanged_closure, A.ClientEditNotesState_build_closure, A.ClientEditNotesState_build_closure0, A.ClientEditNotesState_build__closure0, A.ClientEditNotesState_build_closure1, A.ClientEditNotesState_build__closure, A.ClientEditSettingsState_didChangeDependencies_closure, A.ClientEditSettingsState_didChangeDependencies_closure0, A.ClientEditSettingsState_dispose_closure, A.ClientEditSettingsState__onChanged_closure, A.ClientEditSettingsState_build_closure, A.ClientEditSettingsState_build__closure3, A.ClientEditSettingsState_build_closure0, A.ClientEditSettingsState_build__closure2, A.ClientEditSettingsState_build_closure1, A.ClientEditSettingsState_build_closure2, A.ClientEditSettingsState_build__closure1, A.ClientEditSettingsState_build_closure3, A.ClientEditSettingsState_build_closure4, A.ClientEditSettingsState_build__closure0, A.ClientEditSettingsState_build_closure5, A.ClientEditSettingsState_build__closure, A.ClientEditShippingAddressState_didChangeDependencies_closure, A.ClientEditShippingAddressState_didChangeDependencies_closure0, A.ClientEditShippingAddressState_dispose_closure, A.ClientEditShippingAddressState__onChanged_closure, A.ClientEditShippingAddressState_build_closure, A.ClientEditShippingAddressState_build__closure0, A.ClientEditShippingAddressState_build__closure, A.ClientEditScreen_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure, A.ClientEditVM_ClientEditVM$fromStore__closure, A.ClientEditVM_ClientEditVM$fromStore__closure0, A.ClientEditVM_ClientEditVM$fromStore_closure1, A.ClientEditVM_ClientEditVM$fromStore_closure0, A.ClientEditVM_ClientEditVM$fromStore___closure, A.ClientEditVM_ClientEditVM$fromStore___closure0, A.ClientEditVM_ClientEditVM$fromStore___closure1, A.ClientEditVM_ClientEditVM$fromStore____closure, A._ClientViewState_build_closure0, A._ClientViewState_build__closure5, A._ClientViewDetailsState_build__buildDetailsList_closure, A.ClientViewDocuments_build_closure, A.ClientViewDocuments_build_closure0, A._ClientViewFullwidthState_build__closure1, A._ClientViewLedgerState_build_closure, A.ClientOverview_build_closure, A.ClientOverview_build_closure0, A.ClientViewScreen_build_closure0, A.ClientViewVM_ClientViewVM$fromStore__handleRefresh, A.ClientViewVM_ClientViewVM$fromStore_closure, A.ClientViewVM_ClientViewVM$fromStore__closure0, A.ClientViewVM_ClientViewVM$fromStore__closure1, A.ClientViewVM_ClientViewVM$fromStore___closure, A.ClientViewVM_ClientViewVM$fromStore_closure1, A.ClientViewVM_ClientViewVM$fromStore__closure, A._CompanyGatewayListState_build_closure, A.CompanyGatewayListItem_build_closure, A.CompanyGatewayListVM_fromStore__handleRefresh, A.CompanyGatewayListVM_fromStore_closure, A.CompanyGatewayListVM_fromStore_closure1, A.CompanyGatewayListVM_fromStore__closure, A.CompanyGatewayListVM_fromStore__closure0, A.CompanyGatewayScreen_build_closure, A.CompanyGatewayScreen_build__closure0, A.CompanyGatewayScreen_build__closure1, A.CompanyGatewayScreen_build_closure0, A.CompanyGatewayScreen_build__closure, A.CompanyGatewayScreen_build_closure2, A.CompanyGatewayScreen_build_closure4, A.CompanyGatewayScreen_build_closure5, A.CompanyGatewayScreen_build_closure6, A.CompanyGatewayScreen_build_closure7, A.CompanyGatewayScreenVM_fromStore_closure, A._CompanyGatewayEditState_didChangeDependencies_closure, A._CompanyGatewayEditState_build_closure, A._CompanyGatewayEditState_build_closure0, A._CompanyGatewayEditState_build__closure12, A._CompanyGatewayEditState_build_closure3, A._CompanyGatewayEditState_build__closure11, A._CompanyGatewayEditState_build_closure5, A._CompanyGatewayEditState_build__closure10, A._CompanyGatewayEditState_build_closure4, A._CompanyGatewayEditState_build_closure6, A._CompanyGatewayEditState_build__closure9, A._CompanyGatewayEditState_build___closure, A._CompanyGatewayEditState_build_closure7, A._CompanyGatewayEditState_build__closure8, A._CompanyGatewayEditState_build_closure8, A._CompanyGatewayEditState_build__closure7, A._CompanyGatewayEditState_build_closure9, A._CompanyGatewayEditState_build__closure6, A._CompanyGatewayEditState_build_closure10, A._CompanyGatewayEditState_build__closure5, A._CompanyGatewayEditState_build_closure11, A._CompanyGatewayEditState_build__closure4, A._CompanyGatewayEditState_build_closure12, A._CompanyGatewayEditState_build__closure3, A._CompanyGatewayEditState_build_closure13, A._CompanyGatewayEditState_build__closure2, A._CompanyGatewayEditState_build_closure14, A._CompanyGatewayEditState_build__closure1, A._CompanyGatewayEditState_build_closure15, A._CompanyGatewayEditState_build__closure0, A._CompanyGatewayEditState_build_closure16, A._CompanyGatewayEditState_build_closure17, A.GatewayConfigSettings_build_closure0, A.GatewayConfigSettings_build__closure, A._GatewayConfigFieldState__obscureText_closure, A._GatewayConfigFieldState_build_closure0, A._GatewayConfigFieldState_build_closure, A._GatewayConfigFieldState_build_closure1, A._GatewayConfigFieldState_build_closure2, A._GatewayConfigFieldState_build_closure3, A._LimitEditorState__onChanged_closure, A._LimitEditorState__onChanged_closure0, A._LimitEditorState_build_closure, A._LimitEditorState_build_closure0, A._FeesEditorState_dispose_closure, A._FeesEditorState_didChangeDependencies_closure, A._FeesEditorState_didChangeDependencies_closure0, A._FeesEditorState__onChanged_closure, A._FeesEditorState__onChanged__closure, A._FeesEditorState_build_closure, A._FeesEditorState_build__closure2, A._FeesEditorState_build___closure2, A._FeesEditorState_build_closure0, A._FeesEditorState_build__closure1, A._FeesEditorState_build___closure1, A._FeesEditorState_build_closure1, A._FeesEditorState_build__closure0, A._FeesEditorState_build___closure0, A._FeesEditorState_build_closure2, A._FeesEditorState_build__closure, A._FeesEditorState_build___closure, A.CompanyGatewayEditScreen_build_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0, A._CompanyGatewayOverview_build_closure2, A.CompanyGatewayViewScreen_build_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2, A.CreditEmailScreen_build_closure1, A.CreditEmailScreen_build_closure0, A.EmailCreditVM_EmailCreditVM$fromStore_closure, A.EmailCreditVM_EmailCreditVM$fromStore__closure, A.CreditListItem_build__closure, A.CreditListItem_build__closure3, A.CreditListVM_fromStore__handleRefresh, A.CreditListVM_fromStore_closure, A.CreditListVM_fromStore_closure0, A.CreditPdfScreen_build_closure0, A.CreditScreen_build_closure7, A.CreditScreen_build_closure4, A.CreditScreen_build_closure0, A.CreditScreen_build_closure1, A.CreditScreen_build_closure2, A.CreditScreen_build_closure3, A._CreditEditState_build_closure1, A._CreditEditState_build_closure2, A._CreditEditState_build__closure, A._CreditEditState_build___closure0, A._CreditEditState_build___closure1, A._CreditEditState_build___closure, A.CreditEditDetailsScreen_build_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0, A.CreditEditItemsScreen_build_closure0, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure, A.CreditEditNotesScreen_build_closure0, A.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure, A.CreditEditPDFScreen_build_closure0, A.CreditEditScreen_build_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure, A.CreditEditVM_CreditEditVM$fromStore___closure, A.CreditEditVM_CreditEditVM$fromStore___closure0, A.CreditEditVM_CreditEditVM$fromStore___closure1, A.CreditEditVM_CreditEditVM$fromStore____closure, A.CreditEditVM_CreditEditVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure1, A.CreditViewScreen_build_closure0, A.CreditViewVM_CreditViewVM$fromStore__handleRefresh, A.CreditViewVM_CreditViewVM$fromStore_closure, A.CreditViewVM_CreditViewVM$fromStore_closure0, A.CreditViewVM_CreditViewVM$fromStore__closure0, A.CreditViewVM_CreditViewVM$fromStore__closure1, A.CreditViewVM_CreditViewVM$fromStore___closure, A.CreditViewVM_CreditViewVM$fromStore_closure2, A.CreditViewVM_CreditViewVM$fromStore__closure, A.CreditViewVM_CreditViewVM$fromStore_closure3, A._DashboardChartState__onSelectionChanged_closure, A._DashboardChartState__onSelectionChanged_closure0, A._DashboardChartState_build_closure, A._DashboardDateRangePickerState_build_closure, A._DashboardDateRangePickerState_build_closure0, A._DashboardDateRangePickerState_build_closure1, A._DashboardDateRangePickerState_build_closure4, A._DashboardDateRangePickerState_build_closure5, A._DashboardDateRangePickerState_build__closure, A.DashboardPanels__showDateOptions_closure, A.DashboardPanels__header__closure, A.DashboardPanels__header__closure0, A.DashboardPanels__header___closure1, A.DashboardPanels__header__closure1, A.DashboardPanels__header___closure0, A.DashboardPanels__header__closure2, A.DashboardPanels__header__closure3, A.DashboardPanels__header___closure, A.DashboardPanels__paymentChart_closure, A.DashboardPanels__quoteChart_closure, A.DashboardPanels__taskChart_closure, A.DashboardPanels__expenseChart_closure, A.DashboardPanels_build__runningTasks_closure, A.DashboardPanels_build__closure2, A.DashboardPanels_build__closure3, A.DashboardPanels_build__closure4, A.DashboardPanels_build__closure5, A.DashboardPanels_build__closure6, A.__DashboardPanelState_build_closure, A._InvoiceChart_build_closure, A._DashboardScreenState_initState_closure, A._DashboardScreenState_initState_closure0, A._DashboardScreenState_initState__closure, A._DashboardScreenState_build_closure, A._DashboardScreenState_build_closure0, A._DashboardScreenState_build__closure0, A._DashboardScreenState_build__closure1, A._DashboardScreenState_build__closure2, A._DashboardScreenState_build_closure3, A.DashboardVM_fromStore__handleRefresh, A.DashboardVM_fromStore_closure, A.DashboardVM_fromStore_closure2, A.DashboardVM_fromStore_closure0, A.DashboardVM_fromStore_closure5, A.DashboardVM_fromStore_closure3, A.DashboardVM_fromStore_closure4, A.DesignListItem_build_closure, A.DesignListVM_fromStore__handleRefresh, A.DesignListVM_fromStore_closure, A.DesignListVM_fromStore_closure0, A.DesignScreen_build_closure7, A.DesignScreen_build_closure4, A.DesignScreen_build_closure0, A.DesignScreen_build_closure1, A.DesignScreen_build_closure2, A.DesignScreen_build_closure3, A._DesignEditState_didChangeDependencies_closure, A._DesignEditState_didChangeDependencies_closure0, A._DesignEditState_dispose_closure, A._DesignEditState__onChanged_closure, A._DesignEditState__loadDesign_closure, A._DesignEditState__loadDesign_closure0, A._DesignEditState__loadPreview_closure0, A._DesignEditState_build_closure2, A._DesignEditState_build_closure, A._DesignEditState_build_closure0, A._DesignEditState_build_closure1, A._DesignSettingsState_build_closure, A.DesignEditScreen_build_closure0, A.DesignEditVM_DesignEditVM$fromStore_closure, A.DesignEditVM_DesignEditVM$fromStore_closure1, A.DesignEditVM_DesignEditVM$fromStore_closure0, A._DesignViewState_build_closure, A._DesignViewState_build_closure0, A._DesignViewState_build_closure1, A._DesignViewState_build_closure2, A._DesignViewState_build_closure3, A._DesignViewState_build_closure4, A._DesignViewState_build_closure5, A._DesignViewState_build_closure6, A.DesignViewScreen_build_closure0, A.DocumentListItem_build_closure, A.DocumentListVM_fromStore__handleRefresh, A.DocumentListVM_fromStore_closure, A.DocumentListVM_fromStore_closure0, A.DocumentScreen_build_closure7, A.DocumentScreen_build_closure4, A.DocumentScreen_build_closure0, A.DocumentScreen_build_closure1, A.DocumentScreen_build_closure2, A.DocumentScreen_build_closure3, A._DocumentEditState_didChangeDependencies_closure, A._DocumentEditState_didChangeDependencies_closure0, A._DocumentEditState_dispose_closure, A._DocumentEditState__onChanged_closure, A._DocumentEditState_build_closure0, A._DocumentEditState_build_closure, A.DocumentEditScreen_build_closure0, A.DocumentEditVM_DocumentEditVM$fromStore_closure, A.DocumentEditVM_DocumentEditVM$fromStore_closure0, A.DocumentViewScreen_build_closure0, A._ExpenseEditState__onSavePressed_closure, A._ExpenseEditState_build_closure1, A._ExpenseEditState_build_closure2, A.ExpenseEditDetailsState_didChangeDependencies_closure, A.ExpenseEditDetailsState_didChangeDependencies_closure0, A.ExpenseEditDetailsState_dispose_closure, A.ExpenseEditDetailsState__onChanged_closure, A.ExpenseEditDetailsState_build_closure1, A.ExpenseEditDetailsState_build__closure18, A.ExpenseEditDetailsState_build_closure, A.ExpenseEditDetailsState_build__closure19, A.ExpenseEditDetailsState_build_closure3, A.ExpenseEditDetailsState_build__closure17, A.ExpenseEditDetailsState_build_closure2, A.ExpenseEditDetailsState_build_closure4, A.ExpenseEditDetailsState_build__closure16, A.ExpenseEditDetailsState_build_closure6, A.ExpenseEditDetailsState_build__closure14, A.ExpenseEditDetailsState_build__closure15, A.ExpenseEditDetailsState_build_closure7, A.ExpenseEditDetailsState_build__closure13, A.ExpenseEditDetailsState_build_closure8, A.ExpenseEditDetailsState_build__closure12, A.ExpenseEditDetailsState_build_closure9, A.ExpenseEditDetailsState_build__closure11, A.ExpenseEditDetailsState_build_closure10, A.ExpenseEditDetailsState_build__closure10, A.ExpenseEditDetailsState_build_closure11, A.ExpenseEditDetailsState_build__closure9, A.ExpenseEditDetailsState_build_closure12, A.ExpenseEditDetailsState_build__closure8, A.ExpenseEditDetailsState_build_closure13, A.ExpenseEditDetailsState_build__closure7, A.ExpenseEditDetailsState_build_closure14, A.ExpenseEditDetailsState_build__closure6, A.ExpenseEditDetailsState_build_closure15, A.ExpenseEditDetailsState_build__closure5, A.ExpenseEditDetailsState_build_closure16, A.ExpenseEditDetailsState_build__closure4, A.ExpenseEditDetailsState_build_closure17, A.ExpenseEditDetailsState_build__closure3, A.ExpenseEditDetailsState_build__closure2, A.ExpenseEditDetailsState_build_closure20, A.ExpenseEditDetailsState_build__closure1, A.ExpenseEditDetailsState_build_closure19, A.ExpenseEditDetailsState_build__closure0, A.ExpenseEditDetailsState_build_closure23, A.ExpenseEditDetailsState_build__closure, A.ExpenseEditDetailsState_build_closure22, A.ExpenseEditNotesState_didChangeDependencies_closure, A.ExpenseEditNotesState_didChangeDependencies_closure0, A.ExpenseEditNotesState_dispose_closure, A.ExpenseEditNotesState__onChanged_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure0, A.ExpenseEditSettingsState_dispose_closure, A.ExpenseEditSettingsState__onChanged_closure, A.ExpenseEditSettingsState__setCurrency_closure, A.ExpenseEditSettingsState__setCurrency_closure0, A.ExpenseEditSettingsState__calculateExchangeRate_closure, A.ExpenseEditSettingsState_build_closure, A.ExpenseEditSettingsState_build__closure11, A.ExpenseEditSettingsState_build_closure0, A.ExpenseEditSettingsState_build__closure7, A.ExpenseEditSettingsState_build__closure8, A.ExpenseEditSettingsState_build__closure9, A.ExpenseEditSettingsState_build_closure1, A.ExpenseEditSettingsState_build__closure6, A.ExpenseEditSettingsState_build__closure5, A.ExpenseEditSettingsState_build_closure3, A.ExpenseEditSettingsState_build__closure3, A.ExpenseEditSettingsState_build__closure4, A.ExpenseEditSettingsState_build_closure4, A.ExpenseEditSettingsState_build_closure7, A.ExpenseEditSettingsState_build_closure5, A.ExpenseEditSettingsState_build_closure6, A.ExpenseEditSettingsState_build_closure8, A.ExpenseEditSettingsState_build__closure1, A.ExpenseEditSettingsState_build_closure10, A.ExpenseEditSettingsState_build__closure0, A.ExpenseEditSettingsState_build_closure11, A.ExpenseEditSettingsState_build__closure, A.ExpenseEditScreen_build_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore____closure, A.ExpenseListItem_build__closure, A.ExpenseListItem_build__closure3, A.ExpenseListVM_fromStore__handleRefresh, A.ExpenseListVM_fromStore_closure, A.ExpenseListVM_fromStore_closure0, A.ExpenseScreen_build_closure, A.ExpenseScreen_build_closure0, A.ExpenseScreen_build_closure1, A.ExpenseScreen_build_closure2, A.ExpenseScreen_build_closure3, A.ExpenseScreen_build_closure13, A.ExpenseScreen_build_closure9, A.ExpenseScreen_build_closure5, A.ExpenseScreen_build_closure6, A.ExpenseScreen_build_closure7, A.ExpenseScreen_build_closure8, A._ExpenseViewState_build_closure, A.ExpenseViewDocuments_build_closure, A.ExpenseViewDocuments_build_closure0, A._ExpenseViewScheduleState_build_closure, A.ExpenseViewScreen_build_closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure1, A.ExpenseViewVM_ExpenseViewVM$fromStore___closure, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure1, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure, A._ExpenseCategoryEditState_didChangeDependencies_closure, A._ExpenseCategoryEditState_didChangeDependencies_closure0, A._ExpenseCategoryEditState_dispose_closure, A._ExpenseCategoryEditState__onChanged_closure, A._ExpenseCategoryEditState_build_closure0, A._ExpenseCategoryEditState_build_closure1, A._ExpenseCategoryEditState_build_closure, A._ExpenseCategoryEditState_build__closure0, A._ExpenseCategoryEditState_build___closure, A.ExpenseCategoryEditScreen_build_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure, A.ExpenseCategoryListItem_build_closure, A.ExpenseCategoryListVM_fromStore__handleRefresh, A.ExpenseCategoryListVM_fromStore_closure, A.ExpenseCategoryListVM_fromStore_closure0, A.ExpenseCategoryScreen_build_closure7, A.ExpenseCategoryScreen_build_closure4, A.ExpenseCategoryScreen_build_closure0, A.ExpenseCategoryScreen_build_closure1, A.ExpenseCategoryScreen_build_closure2, A.ExpenseCategoryScreen_build_closure3, A.ExpenseCategoryViewScreen_build_closure0, A._GroupEditState_didChangeDependencies_closure, A._GroupEditState_didChangeDependencies_closure0, A._GroupEditState_dispose_closure, A._GroupEditState__onChanged_closure, A._GroupEditState_build_closure0, A._GroupEditState_build_closure1, A._GroupEditState_build_closure, A._GroupEditState_build__closure0, A.GroupEditScreen_build_closure0, A.GroupEditVM_GroupEditVM$fromStore_closure, A.GroupEditVM_GroupEditVM$fromStore_closure1, A.GroupEditVM_GroupEditVM$fromStore_closure0, A.GroupEditVM_GroupEditVM$fromStore___closure, A.GroupEditVM_GroupEditVM$fromStore___closure0, A.GroupEditVM_GroupEditVM$fromStore____closure, A.GroupListItem_build_closure, A.GroupListVM_fromStore__handleRefresh, A.GroupListVM_fromStore_closure, A.GroupListVM_fromStore_closure0, A.GroupSettingsScreen_build_closure3, A.GroupSettingsScreen_build_closure0, A._GroupViewState_build_closure0, A._GroupViewState_build_closure1, A.GroupViewScreen_build_closure0, A.GroupViewVM_GroupViewVM$fromStore__closure0, A.GroupViewVM_GroupViewVM$fromStore__closure1, A.GroupViewVM_GroupViewVM$fromStore___closure, A.GroupViewVM_GroupViewVM$fromStore_closure1, A.GroupViewVM_GroupViewVM$fromStore__closure, A._InvoiceEditState__onSavePressed_closure, A._InvoiceEditState_build_closure1, A._InvoiceEditState_build_closure2, A._InvoiceEditState_build__closure, A._InvoiceEditState_build___closure0, A._InvoiceEditState_build___closure1, A._InvoiceEditState_build___closure, A.InvoiceEditContacts_build_closure0, A.InvoiceEditContacts_build_closure2, A._ClientContactListTile_build_closure, A._VendorContactListTile_build_closure, A.InvoiceEditContactsScreen_build_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1, A.InvoiceEditDesktopState_didChangeDependencies_closure, A.InvoiceEditDesktopState_didChangeDependencies_closure0, A.InvoiceEditDesktopState_dispose_closure, A.InvoiceEditDesktopState__onChanged_closure, A.InvoiceEditDesktopState_build_closure, A.InvoiceEditDesktopState_build_closure0, A.InvoiceEditDesktopState_build_closure1, A.InvoiceEditDesktopState_build_closure2, A.InvoiceEditDesktopState_build_closure3, A.InvoiceEditDesktopState_build_closure4, A.InvoiceEditDesktopState_build_closure8, A.InvoiceEditDesktopState_build__closure17, A.InvoiceEditDesktopState_build_closure7, A.InvoiceEditDesktopState_build__closure16, A.InvoiceEditDesktopState_build_closure11, A.InvoiceEditDesktopState_build__closure15, A.InvoiceEditDesktopState_build_closure10, A.InvoiceEditDesktopState_build_closure13, A.InvoiceEditDesktopState_build__closure14, A.InvoiceEditDesktopState_build_closure12, A.InvoiceEditDesktopState_build_closure15, A.InvoiceEditDesktopState_build__closure13, A.InvoiceEditDesktopState_build__closure12, A.InvoiceEditDesktopState_build_closure17, A.InvoiceEditDesktopState_build__closure11, A.InvoiceEditDesktopState_build_closure19, A.InvoiceEditDesktopState_build_closure20, A.InvoiceEditDesktopState_build__closure10, A.InvoiceEditDesktopState_build_closure22, A.InvoiceEditDesktopState_build__closure9, A.InvoiceEditDesktopState_build_closure21, A.InvoiceEditDesktopState_build_closure23, A.InvoiceEditDesktopState_build_closure24, A.InvoiceEditDesktopState_build__closure, A.InvoiceEditDesktopState_build___closure8, A.InvoiceEditDesktopState_build__closure0, A.InvoiceEditDesktopState_build___closure6, A.InvoiceEditDesktopState_build___closure7, A.InvoiceEditDesktopState_build__closure1, A.InvoiceEditDesktopState_build___closure5, A.InvoiceEditDesktopState_build__closure3, A.InvoiceEditDesktopState_build___closure3, A.InvoiceEditDesktopState_build___closure4, A.InvoiceEditDesktopState_build__closure4, A.InvoiceEditDesktopState_build___closure2, A.InvoiceEditDesktopState_build__closure5, A.InvoiceEditDesktopState_build___closure1, A.InvoiceEditDesktopState_build__closure6, A.InvoiceEditDesktopState_build___closure0, A.InvoiceEditDesktopState_build__closure7, A.InvoiceEditDesktopState_build___closure, A.InvoiceEditDesktopState_build_closure26, A.InvoiceEditDesktopState_build_closure27, A.InvoiceEditDesktopState_build_closure28, A.__PdfPreviewState__loadPdf_closure0, A.__PdfPreviewState__loadPdf_closure1, A.__PdfPreviewState_build_closure1, A.InvoiceEditDetailsState_didChangeDependencies_closure, A.InvoiceEditDetailsState_didChangeDependencies_closure0, A.InvoiceEditDetailsState_dispose_closure, A.InvoiceEditDetailsState__onChanged_closure, A.InvoiceEditDetailsState_build_closure, A.InvoiceEditDetailsState_build_closure0, A.InvoiceEditDetailsState_build_closure1, A.InvoiceEditDetailsState_build_closure2, A.InvoiceEditDetailsState_build_closure3, A.InvoiceEditDetailsState_build_closure4, A.InvoiceEditDetailsState_build__closure17, A.InvoiceEditDetailsState_build_closure6, A.InvoiceEditDetailsState_build__closure16, A.InvoiceEditDetailsState_build_closure5, A.InvoiceEditDetailsState_build__closure15, A.InvoiceEditDetailsState_build_closure9, A.InvoiceEditDetailsState_build__closure14, A.InvoiceEditDetailsState_build_closure8, A.InvoiceEditDetailsState_build_closure11, A.InvoiceEditDetailsState_build__closure13, A.InvoiceEditDetailsState_build_closure10, A.InvoiceEditDetailsState_build_closure13, A.InvoiceEditDetailsState_build__closure12, A.InvoiceEditDetailsState_build__closure11, A.InvoiceEditDetailsState_build_closure15, A.InvoiceEditDetailsState_build__closure10, A.InvoiceEditDetailsState_build_closure17, A.InvoiceEditDetailsState_build__closure9, A.InvoiceEditDetailsState_build_closure19, A.InvoiceEditDetailsState_build__closure8, A.InvoiceEditDetailsState_build_closure18, A.InvoiceEditDetailsState_build_closure20, A.InvoiceEditDetailsState_build_closure21, A.InvoiceEditDetailsState_build_closure22, A.InvoiceEditDetailsState_build_closure23, A.InvoiceEditDetailsState_build__closure7, A.InvoiceEditDetailsState_build_closure24, A.InvoiceEditDetailsState_build__closure5, A.InvoiceEditDetailsState_build__closure6, A.InvoiceEditDetailsState_build_closure25, A.InvoiceEditDetailsState_build__closure4, A.InvoiceEditDetailsState_build_closure27, A.InvoiceEditDetailsState_build__closure2, A.InvoiceEditDetailsState_build__closure3, A.InvoiceEditDetailsState_build_closure28, A.InvoiceEditDetailsState_build__closure1, A.InvoiceEditDetailsState_build_closure29, A.InvoiceEditDetailsState_build__closure0, A.InvoiceEditDetailsState_build_closure30, A.InvoiceEditDetailsState_build__closure, A.InvoiceEditDetailsScreen_build_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0, A._InvoiceEditItemsState__showInvoiceItemEditor_closure, A._InvoiceEditItemsState_build_closure, A.ItemEditDetailsState_didChangeDependencies_closure, A.ItemEditDetailsState_dispose_closure, A.ItemEditDetailsState__onChanged_closure, A.ItemEditDetailsState_build__closure2, A.ItemEditDetailsState_build_closure1, A.ItemEditDetailsState_build_closure2, A.ItemEditDetailsState_build_closure3, A._InvoiceEditItemsDesktopState__updateColumns_closure, A._InvoiceEditItemsDesktopState__updateColumns_closure0, A._InvoiceEditItemsDesktopState__updateColumns_closure1, A._InvoiceEditItemsDesktopState__updateColumns_closure2, A._InvoiceEditItemsDesktopState__updateColumns_closure3, A._InvoiceEditItemsDesktopState__onFocusChange_closure, A._InvoiceEditItemsDesktopState_build_closure, A._InvoiceEditItemsDesktopState_build_closure0, A._InvoiceEditItemsDesktopState_build__closure29, A._InvoiceEditItemsDesktopState_build__closure30, A._InvoiceEditItemsDesktopState_build_closure4, A._InvoiceEditItemsDesktopState_build_closure5, A._InvoiceEditItemsDesktopState_build_closure7, A._InvoiceEditItemsDesktopState_build__closure5, A._InvoiceEditItemsDesktopState_build__closure4, A._InvoiceEditItemsDesktopState_build___closure10, A._InvoiceEditItemsDesktopState_build___closure11, A._InvoiceEditItemsDesktopState_build__closure2, A._InvoiceEditItemsDesktopState_build__closure3, A._InvoiceEditItemsDesktopState_build___closure12, A._InvoiceEditItemsDesktopState_build___closure13, A._InvoiceEditItemsDesktopState_build__closure0, A._InvoiceEditItemsDesktopState_build___closure16, A._InvoiceEditItemsDesktopState_build___closure15, A._InvoiceEditItemsDesktopState_build____closure0, A._InvoiceEditItemsDesktopState_build__closure1, A._InvoiceEditItemsDesktopState_build____closure, A._InvoiceEditItemsDesktopState_build__closure7, A._InvoiceEditItemsDesktopState_build__closure6, A._InvoiceEditItemsDesktopState_build___closure9, A._InvoiceEditItemsDesktopState_build__closure9, A._InvoiceEditItemsDesktopState_build__closure8, A._InvoiceEditItemsDesktopState_build___closure8, A._InvoiceEditItemsDesktopState_build__closure11, A._InvoiceEditItemsDesktopState_build__closure10, A._InvoiceEditItemsDesktopState_build___closure7, A._InvoiceEditItemsDesktopState_build__closure13, A._InvoiceEditItemsDesktopState_build__closure12, A._InvoiceEditItemsDesktopState_build___closure6, A._InvoiceEditItemsDesktopState_build__closure15, A._InvoiceEditItemsDesktopState_build__closure14, A._InvoiceEditItemsDesktopState_build___closure5, A._InvoiceEditItemsDesktopState_build__closure17, A._InvoiceEditItemsDesktopState_build__closure16, A._InvoiceEditItemsDesktopState_build___closure4, A._InvoiceEditItemsDesktopState_build__closure19, A._InvoiceEditItemsDesktopState_build__closure18, A._InvoiceEditItemsDesktopState_build___closure3, A._InvoiceEditItemsDesktopState_build__closure21, A._InvoiceEditItemsDesktopState_build__closure20, A._InvoiceEditItemsDesktopState_build___closure2, A._InvoiceEditItemsDesktopState_build__closure23, A._InvoiceEditItemsDesktopState_build__closure22, A._InvoiceEditItemsDesktopState_build___closure1, A._InvoiceEditItemsDesktopState_build__closure25, A._InvoiceEditItemsDesktopState_build__closure24, A._InvoiceEditItemsDesktopState_build___closure0, A._InvoiceEditItemsDesktopState_build__closure27, A._InvoiceEditItemsDesktopState_build__closure26, A._InvoiceEditItemsDesktopState_build___closure, A._InvoiceEditItemsDesktopState_build_closure8, A._InvoiceEditItemsDesktopState_build__closure, A._InvoiceEditItemsDesktopState_build_closure9, A.InvoiceEditItemsScreen_build_closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure, A.InvoiceEditNotesState_didChangeDependencies_closure, A.InvoiceEditNotesState_didChangeDependencies_closure0, A.InvoiceEditNotesState_dispose_closure, A.InvoiceEditNotesState__onChanged_closure, A.InvoiceEditNotesScreen_build_closure0, A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure, A.InvoiceEditPDFState_didChangeDependencies_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure1, A.InvoiceEditPDFScreen_build_closure0, A.InvoiceEditScreen_build_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure2, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure3, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4, A.InvoiceEditVM_InvoiceEditVM$fromStore____closure, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1, A._InvoiceItemSelectorState__onItemsSelected_closure, A._InvoiceItemSelectorState__updateClientId_closure, A._InvoiceItemSelectorState_build_closure, A._InvoiceItemSelectorState_build_closure0, A._InvoiceItemSelectorState_build_closure1, A._InvoiceItemSelectorState_build__productList__closure, A._InvoiceItemSelectorState_build__taskList__closure, A._InvoiceItemSelectorState_build__expenseList__closure, A._InvoiceItemSelectorState_build_closure2, A.InvoiceEmailScreen_build_closure1, A.InvoiceEmailScreen_build_closure0, A.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure, A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure, A.InvoiceListItem_build__closure, A.InvoiceListItem_build__closure3, A.InvoiceListVM_fromStore__handleRefresh, A.InvoiceListVM_fromStore_closure, A.InvoiceListVM_fromStore_closure0, A._InvoicePdfViewState_loadPdf_closure0, A._InvoicePdfViewState_loadPdf_closure1, A._InvoicePdfViewState_build_closure, A.InvoicePdfScreen_build_closure0, A.InvoiceScreen_build_closure, A.InvoiceScreen_build_closure0, A.InvoiceScreen_build_closure1, A.InvoiceScreen_build_closure2, A.InvoiceScreen_build_closure3, A.InvoiceScreen_build_closure4, A.InvoiceScreen_build_closure5, A.InvoiceScreen_build_closure15, A.InvoiceScreen_build_closure11, A.InvoiceScreen_build_closure7, A.InvoiceScreen_build_closure8, A.InvoiceScreen_build_closure9, A.InvoiceScreen_build_closure10, A._InvoiceViewState_build_closure, A.InvoiceViewContacts_build_closure, A._InvitationListTile_build_closure, A._InvitationListTile_build_closure1, A.InvoiceViewDocuments_build_closure, A.InvoiceViewDocuments_build_closure0, A.InvoiceViewDocuments_build_closure1, A._InvoiceViewHistoryState_build_closure, A.InvoiceOverview_build_closure, A.InvoiceOverview_build__closure0, A.InvoiceOverview_build__closure1, A.InvoiceOverview_build_closure0, A.InvoiceOverview_build_closure1, A.InvoiceOverview_build_closure2, A.InvoiceOverview_build__closure, A._InvoiceViewScheduleState_build_closure, A.InvoiceViewScreen_build_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure1, A.InvoiceViewVM_InvoiceViewVM$fromStore___closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure2, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure4, A._PaymentEditState_didChangeDependencies_closure, A._PaymentEditState_didChangeDependencies_closure0, A._PaymentEditState_dispose_closure, A._PaymentEditState__onChanged_closure, A._PaymentEditState_convertCurrency_closure, A._PaymentEditState_build_closure, A._PaymentEditState_build_closure0, A._PaymentEditState_build_closure1, A._PaymentEditState_build_closure2, A._PaymentEditState_build_closure4, A._PaymentEditState_build_closure3, A._PaymentEditState_build__closure5, A._PaymentEditState_build_closure5, A._PaymentEditState_build_closure7, A._PaymentEditState_build__closure4, A._PaymentEditState_build_closure8, A._PaymentEditState_build__closure3, A._PaymentEditState_build_closure9, A._PaymentEditState_build__closure2, A._PaymentEditState_build_closure10, A._PaymentEditState_build__closure0, A._PaymentEditState_build_closure11, A._PaymentEditState_build_closure13, A._PaymentEditState_build__closure, A._PaymentEditState_build_closure12, A._PaymentEditState_build_onSavePressed, A._PaymentEditState_build_closure16, A._PaymentableEditorState_didChangeDependencies_closure, A._PaymentableEditorState_didChangeDependencies_closure0, A._PaymentableEditorState_dispose_closure0, A._PaymentableEditorState__onChanged_closure, A._PaymentableEditorState__onChanged_closure0, A._PaymentableEditorState__onChanged_closure1, A._PaymentableEditorState__onChanged_closure2, A._PaymentableEditorState__onChanged_closure3, A._PaymentableEditorState__onChanged_closure4, A._PaymentableEditorState__onChanged_closure5, A._PaymentableEditorState_build_closure, A._PaymentableEditorState_build_closure0, A._PaymentableEditorState_build_closure3, A._PaymentableEditorState_build_closure2, A._PaymentableEditorState_build_closure1, A._PaymentableEditorState_build_closure6, A._PaymentableEditorState_build_closure5, A._PaymentableEditorState_build_closure4, A._PaymentableEditorState_build__closure, A._PaymentableEditorState_build__closure0, A.PaymentEditScreen_build_closure0, A.PaymentEditVM_PaymentEditVM$fromStore_closure, A.PaymentEditVM_PaymentEditVM$fromStore_closure1, A.PaymentEditVM_PaymentEditVM$fromStore_closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure, A.PaymentEditVM_PaymentEditVM$fromStore___closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure1, A.PaymentEditVM_PaymentEditVM$fromStore___closure2, A.PaymentEditVM_PaymentEditVM$fromStore___closure3, A.PaymentEditVM_PaymentEditVM$fromStore____closure, A.PaymentListItem_build__closure, A.PaymentListItem_build__closure3, A.PaymentListVM_fromStore__handleRefresh, A.PaymentListVM_fromStore_closure, A.PaymentListVM_fromStore_closure0, A.PaymentPresenter_getField_closure, A.PaymentPresenter_getField_closure0, A.PaymentPresenter_getField_closure1, A.PaymentPresenter_getField_closure2, A.PaymentScreen_build_closure7, A.PaymentScreen_build_closure4, A.PaymentScreen_build_closure0, A.PaymentScreen_build_closure1, A.PaymentScreen_build_closure2, A.PaymentScreen_build_closure3, A._PaymentRefundState_didChangeDependencies_closure, A._PaymentRefundState_didChangeDependencies_closure0, A._PaymentRefundState_dispose_closure, A._PaymentRefundState__onChanged__closure, A._PaymentRefundState_build_closure, A._PaymentRefundState_build_closure1, A._PaymentRefundState_build__closure1, A._PaymentRefundState_build_closure2, A._PaymentRefundState_build__closure0, A._PaymentRefundState_build_closure3, A._PaymentRefundState_build__closure, A._PaymentRefundState_build_onSavePressed, A._PaymentRefundState_build_onSavePressed_closure0, A._PaymentRefundState_build_closure4, A._PaymentRefundState_build_closure5, A._PaymentableEditorState_didChangeDependencies_closure1, A._PaymentableEditorState_didChangeDependencies_closure2, A._PaymentableEditorState_dispose_closure, A._PaymentableEditorState__onChanged_closure6, A._PaymentableEditorState__onChanged_closure7, A._PaymentableEditorState__onChanged_closure8, A._PaymentableEditorState__onChanged_closure9, A._PaymentableEditorState_build_closure8, A._PaymentableEditorState_build_closure10, A._PaymentableEditorState_build_closure9, A._PaymentableEditorState_build_closure11, A._PaymentableEditorState_build__closure1, A.PaymentRefundScreen_build_closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore___closure, A._PaymentViewState_build_closure, A.PaymentViewScreen_build_closure0, A.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh, A.PaymentViewVM_PaymentViewVM$fromStore_closure, A._PaymentTermEditState_didChangeDependencies_closure, A._PaymentTermEditState_didChangeDependencies_closure0, A._PaymentTermEditState_dispose_closure, A._PaymentTermEditState__onChanged_closure, A._PaymentTermEditState_build_closure0, A._PaymentTermEditState_build_closure1, A._PaymentTermEditState_build_closure, A._PaymentTermEditState_build__closure, A.PaymentTermEditScreen_build_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure, A.PaymentTermListItem_build_closure, A.PaymentTermListVM_fromStore__handleRefresh, A.PaymentTermListVM_fromStore_closure, A.PaymentTermListVM_fromStore_closure0, A.PaymentTermScreen_build_closure7, A.PaymentTermScreen_build_closure4, A.PaymentTermScreen_build_closure0, A.PaymentTermScreen_build_closure1, A.PaymentTermScreen_build_closure2, A.PaymentTermScreen_build_closure3, A.PaymentTermViewScreen_build_closure0, A._ProductEditState_didChangeDependencies_closure, A._ProductEditState_didChangeDependencies_closure0, A._ProductEditState_dispose_closure, A._ProductEditState__onChanged_closure, A._ProductEditState_build_closure4, A._ProductEditState_build_closure5, A._ProductEditState_build_closure, A._ProductEditState_build_closure0, A._ProductEditState_build__closure3, A._ProductEditState_build_closure1, A._ProductEditState_build__closure2, A._ProductEditState_build_closure2, A._ProductEditState_build__closure1, A._ProductEditState_build_closure3, A._ProductEditState_build__closure0, A.ProductEditScreen_build_closure0, A.ProductEditVM_ProductEditVM$fromStore_closure, A.ProductEditVM_ProductEditVM$fromStore_closure1, A.ProductEditVM_ProductEditVM$fromStore_closure0, A.ProductEditVM_ProductEditVM$fromStore___closure, A.ProductEditVM_ProductEditVM$fromStore___closure0, A.ProductEditVM_ProductEditVM$fromStore____closure, A.ProductListItem_build__closure, A.ProductListItem_build__closure3, A.ProductListVM_fromStore__handleRefresh, A.ProductListVM_fromStore_closure, A.ProductListVM_fromStore_closure0, A.ProductScreen_build_closure7, A.ProductScreen_build_closure4, A.ProductScreen_build_closure0, A.ProductScreen_build_closure1, A.ProductScreen_build_closure2, A.ProductScreen_build_closure3, A._ProductViewState_build_closure, A.ProductViewDocuments_build_closure, A.ProductViewDocuments_build_closure0, A.ProductViewScreen_build_closure0, A.ProductViewVM_ProductViewVM$fromStore__handleRefresh, A.ProductViewVM_ProductViewVM$fromStore_closure, A.ProductViewVM_ProductViewVM$fromStore__closure0, A.ProductViewVM_ProductViewVM$fromStore__closure1, A.ProductViewVM_ProductViewVM$fromStore___closure, A.ProductViewVM_ProductViewVM$fromStore_closure1, A.ProductViewVM_ProductViewVM$fromStore__closure, A._ProjectEditState_didChangeDependencies_closure, A._ProjectEditState_didChangeDependencies_closure0, A._ProjectEditState_dispose_closure, A._ProjectEditState__onChanged_closure, A._ProjectEditState_build_closure0, A._ProjectEditState_build_closure1, A._ProjectEditState_build_closure, A._ProjectEditState_build__closure0, A._ProjectEditState_build__closure3, A._ProjectEditState_build__closure2, A._ProjectEditState_build___closure1, A._ProjectEditState_build__closure1, A._ProjectEditState_build__closure5, A._ProjectEditState_build___closure, A._ProjectEditState_build___closure0, A.ProjectEditScreen_build_closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure1, A.ProjectEditVM_ProjectEditVM$fromStore__closure, A.ProjectEditVM_ProjectEditVM$fromStore__closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure0, A.ProjectEditVM_ProjectEditVM$fromStore___closure, A.ProjectEditVM_ProjectEditVM$fromStore___closure0, A.ProjectEditVM_ProjectEditVM$fromStore____closure, A.ProjectListItem_build__closure, A.ProjectListItem_build__closure3, A.ProjectListVM_fromStore__handleRefresh, A.ProjectListVM_fromStore_closure, A.ProjectListVM_fromStore_closure0, A.ProjectScreen_build_closure7, A.ProjectScreen_build_closure4, A.ProjectScreen_build_closure0, A.ProjectScreen_build_closure1, A.ProjectScreen_build_closure2, A.ProjectScreen_build_closure3, A._ProjectViewState_build_closure0, A.ProjectViewDocuments_build_closure, A.ProjectViewDocuments_build_closure0, A._ProjectOverviewState_initState_closure, A.ProjectViewScreen_build_closure0, A.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh, A.ProjectViewVM_ProjectViewVM$fromStore_closure0, A.ProjectViewVM_ProjectViewVM$fromStore_closure, A.ProjectViewVM_ProjectViewVM$fromStore__closure2, A.ProjectViewVM_ProjectViewVM$fromStore__closure0, A.ProjectViewVM_ProjectViewVM$fromStore__closure1, A.ProjectViewVM_ProjectViewVM$fromStore___closure, A.ProjectViewVM_ProjectViewVM$fromStore_closure2, A.ProjectViewVM_ProjectViewVM$fromStore__closure, A._PurchaseOrderEditState_build_closure1, A._PurchaseOrderEditState_build_closure2, A._PurchaseOrderEditState_build__closure, A._PurchaseOrderEditState_build___closure0, A._PurchaseOrderEditState_build___closure1, A._PurchaseOrderEditState_build___closure, A.PurchaseOrderEditDetailsScreen_build_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0, A.PurchaseOrderEditItemsScreen_build_closure0, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure, A.PurchaseOrderEditNotesScreen_build_closure0, A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure, A.PurchaseOrderEditPDFScreen_build_closure0, A.PurchaseOrderEditScreen_build_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1, A.PurchaseOrderEmailScreen_build_closure0, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure, A.PurchaseOrderListItem_build__closure, A.PurchaseOrderListItem_build__closure3, A.PurchaseOrderListVM_fromStore__handleRefresh, A.PurchaseOrderListVM_fromStore_closure, A.PurchaseOrderListVM_fromStore_closure0, A.PurchaseOrderPdfScreen_build_closure0, A.PurchaseOrderScreen_build_closure, A.PurchaseOrderScreen_build_closure0, A.PurchaseOrderScreen_build_closure1, A.PurchaseOrderScreen_build_closure2, A.PurchaseOrderScreen_build_closure12, A.PurchaseOrderScreen_build_closure8, A.PurchaseOrderScreen_build_closure4, A.PurchaseOrderScreen_build_closure5, A.PurchaseOrderScreen_build_closure6, A.PurchaseOrderScreen_build_closure7, A.PurchaseOrderViewScreen_build_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure1, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure3, A.QuoteEditDetailsScreen_build_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0, A.QuoteEditItemsScreen_build_closure0, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure, A.QuoteEditNotesScreen_build_closure0, A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure, A.QuoteEditPDFScreen_build_closure0, A.QuoteEditScreen_build_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure, A.QuoteEditVM_QuoteEditVM$fromStore___closure, A.QuoteEditVM_QuoteEditVM$fromStore___closure0, A.QuoteEditVM_QuoteEditVM$fromStore___closure1, A.QuoteEditVM_QuoteEditVM$fromStore____closure, A.QuoteEditVM_QuoteEditVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure1, A._QuoteEditState_build_closure1, A._QuoteEditState_build_closure2, A._QuoteEditState_build__closure, A._QuoteEditState_build___closure0, A._QuoteEditState_build___closure1, A._QuoteEditState_build___closure, A.QuoteEmailScreen_build_closure1, A.QuoteEmailScreen_build_closure0, A.EmailQuoteVM_EmailQuoteVM$fromStore_closure, A.EmailQuoteVM_EmailQuoteVM$fromStore__closure, A.QuoteListItem_build__closure, A.QuoteListItem_build__closure3, A.QuoteListVM_fromStore__handleRefresh, A.QuoteListVM_fromStore_closure, A.QuoteListVM_fromStore_closure0, A.QuotePdfScreen_build_closure0, A.QuoteScreen_build_closure, A.QuoteScreen_build_closure0, A.QuoteScreen_build_closure1, A.QuoteScreen_build_closure2, A.QuoteScreen_build_closure3, A.QuoteScreen_build_closure13, A.QuoteScreen_build_closure9, A.QuoteScreen_build_closure5, A.QuoteScreen_build_closure6, A.QuoteScreen_build_closure7, A.QuoteScreen_build_closure8, A.QuoteViewScreen_build_closure0, A.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh, A.QuoteViewVM_QuoteViewVM$fromStore_closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure0, A.QuoteViewVM_QuoteViewVM$fromStore__closure0, A.QuoteViewVM_QuoteViewVM$fromStore__closure1, A.QuoteViewVM_QuoteViewVM$fromStore___closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure2, A.QuoteViewVM_QuoteViewVM$fromStore__closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure3, A.RecurringExpenseEditScreen_build_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure, A.RecurringExpenseListItem_build__closure, A.RecurringExpenseListItem_build__closure3, A.RecurringExpenseListVM_fromStore__handleRefresh, A.RecurringExpenseListVM_fromStore_closure, A.RecurringExpenseListVM_fromStore_closure0, A.RecurringExpenseScreen_build_closure7, A.RecurringExpenseScreen_build_closure4, A.RecurringExpenseScreen_build_closure0, A.RecurringExpenseScreen_build_closure1, A.RecurringExpenseScreen_build_closure2, A.RecurringExpenseScreen_build_closure3, A.RecurringExpenseViewScreen_build_closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure, A._RecurringInvoiceEditState_build_closure1, A._RecurringInvoiceEditState_build_closure2, A._RecurringInvoiceEditState_build__closure, A._RecurringInvoiceEditState_build___closure0, A._RecurringInvoiceEditState_build___closure1, A._RecurringInvoiceEditState_build___closure, A.RecurringInvoiceEditDetailsScreen_build_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0, A.RecurringInvoiceEditItemsScreen_build_closure0, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure, A.RecurringInvoiceEditNotesScreen_build_closure0, A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure, A.RecurringInvoiceEditPDFScreen_build_closure0, A.RecurringInvoiceEditScreen_build_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1, A.RecurringInvoiceListItem_build__closure, A.RecurringInvoiceListItem_build__closure3, A.RecurringInvoiceListVM_fromStore__handleRefresh, A.RecurringInvoiceListVM_fromStore_closure, A.RecurringInvoiceListVM_fromStore_closure0, A.RecurringInvoicePdfScreen_build_closure0, A.RecurringInvoiceScreen_build_closure, A.RecurringInvoiceScreen_build_closure0, A.RecurringInvoiceScreen_build_closure1, A.RecurringInvoiceScreen_build_closure2, A.RecurringInvoiceScreen_build_closure3, A.RecurringInvoiceScreen_build_closure13, A.RecurringInvoiceScreen_build_closure9, A.RecurringInvoiceScreen_build_closure5, A.RecurringInvoiceScreen_build_closure6, A.RecurringInvoiceScreen_build_closure7, A.RecurringInvoiceScreen_build_closure8, A.RecurringInvoiceViewScreen_build_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3, A.memoizedClientReport_closure, A.clientReport_closure, A.clientReport_closure0, A.clientReport_closure1, A.clientReport_closure3, A.clientReport_closure4, A.memoizedContactReport_closure, A.contactReport_closure, A.contactReport_closure0, A.contactReport_closure1, A.contactReport_closure3, A.contactReport_closure4, A.memoizedCreditReport_closure, A.creditReport_closure, A.creditReport_closure0, A.creditReport_closure1, A.creditReport_closure3, A.creditReport_closure4, A.memoizedDocumentReport_closure, A.documentReport_closure, A.documentReport_closure0, A.documentReport__closure2, A.documentReport__closure1, A.documentReport__closure0, A.documentReport__closure, A.documentReport_closure5, A.documentReport_closure7, A.documentReport_closure8, A.memoizedExpenseReport_closure, A.expenseReport_closure, A.expenseReport_closure0, A.expenseReport_closure1, A.expenseReport_closure3, A.expenseReport_closure4, A.memoizedInvoiceItemReport_closure, A.lineItemReport_closure5, A.lineItemReport_closure6, A.lineItemReport_closure7, A.lineItemReport_closure9, A.lineItemReport_closure10, A.memoizedInvoiceReport_closure, A.invoiceReport_closure, A.invoiceReport_closure0, A.invoiceReport_closure1, A.invoiceReport_closure3, A.invoiceReport_closure4, A.memoizedInvoiceTaxReport_closure, A.taxReport_closure, A.taxReport_closure0, A.taxReport_closure2, A.taxReport_closure3, A.taxReport_closure4, A.taxReport_closure5, A.memoizedPaymentReport_closure, A.paymentReport_closure, A.paymentReport_closure0, A.paymentReport_closure1, A.paymentReport_closure3, A.paymentReport_closure4, A.memoizedPaymentTaxReport_closure, A.paymentTaxReport_closure, A.paymentTaxReport_closure0, A.paymentTaxReport_closure2, A.paymentTaxReport_closure3, A.paymentTaxReport_closure4, A.paymentTaxReport_closure5, A.memoizedProductReport_closure, A.productReport_closure, A.productReport_closure0, A.productReport_closure1, A.productReport_closure3, A.productReport_closure4, A.memoizedProfitAndLossReport_closure, A.profitAndLossReport_closure, A.profitAndLossReport_closure0, A.profitAndLossReport_closure2, A.profitAndLossReport_closure3, A.profitAndLossReport_closure4, A.profitAndLossReport_closure5, A.memoizedPurchaseOrderReport_closure, A.purchaseOrderReport_closure, A.purchaseOrderReport_closure0, A.purchaseOrderReport_closure1, A.purchaseOrderReport_closure3, A.purchaseOrderReport_closure4, A.memoizedQuoteItemReport_closure, A.lineItemReport_closure, A.lineItemReport_closure0, A.lineItemReport_closure1, A.lineItemReport_closure3, A.lineItemReport_closure4, A.memoizedQuoteReport_closure, A.quoteReport_closure, A.quoteReport_closure0, A.quoteReport_closure1, A.quoteReport_closure3, A.quoteReport_closure4, A.memoizedRecurringExpenseReport_closure, A.recurringExpenseReport_closure, A.recurringExpenseReport_closure0, A.recurringExpenseReport_closure1, A.recurringExpenseReport_closure3, A.recurringExpenseReport_closure4, A.memoizedRecurringInvoiceReport_closure, A.recurringInvoiceReport_closure, A.recurringInvoiceReport_closure0, A.recurringInvoiceReport_closure1, A.recurringInvoiceReport_closure3, A.recurringInvoiceReport_closure4, A.ReportCharts_build_closure0, A.ReportCharts_build_closure3, A.ReportCharts_build_closure6, A.ReportsScreen_build_closure, A.ReportsScreen_build_closure0, A.ReportsScreen_build_closure3, A.ReportsScreen_build_closure2, A.ReportsScreen_build_closure6, A.ReportsScreen_build_closure4, A.ReportsScreen_build_closure5, A.ReportsScreen_build_closure7, A.ReportsScreen_build_closure8, A.ReportsScreen_build_closure9, A.ReportsScreen_build_closure11, A.ReportsScreen_build__closure4, A.ReportsScreen_build_closure10, A.ReportsScreen_build_closure12, A.ReportsScreen_build__closure3, A.ReportsScreen_build_closure13, A.ReportsScreen_build_closure18, A.ReportsScreen_build_closure16, A.ReportsScreen_build_closure17, A.ReportsScreen_build_closure19, A.ReportsScreen_build___closure0, A.ReportsScreen_build__closure1, A.ReportsScreen_build_closure22, A.ReportsScreen_build_closure24, A.ReportsScreen_build___closure, A._ReportDataTableState_initState__closure, A._ReportDataTableState__onChanged_closure, A._ReportDataTableState_dispose_closure, A._ReportDataTableState_dispose__closure, A.getReportColumnType_convertCustomFieldType, A.ReportResult_tableFilters_closure, A.ReportResult_tableFilters_closure0, A.ReportResult_tableFilters_closure1, A.ReportResult_tableFilters_closure3, A.ReportResult_tableFilters_closure4, A.ReportResult_tableFilters_closure8, A.ReportResult_tableFilters__closure, A.ReportResult_tableFilters__closure0, A.ReportResult_tableFilters_closure7, A.ReportResult_tableFilters__closure1, A.ReportResult_tableFilters_closure5, A.ReportResult_tableFilters__closure4, A.ReportResult_tableFilters_closure6, A.ReportResult_tableRow__closure, A.ReportResult_totalColumns_closure, A.ReportResult_totalRows_closure, A.ReportResult_totalRows_closure1, A.ReportResult_totalRows_closure3, A.ReportResult_totalRows__closure, A.ReportsScreenVM_fromStore__closure6, A.ReportsScreenVM_fromStore___closure0, A.ReportsScreenVM_fromStore__closure7, A.ReportsScreenVM_fromStore__closure8, A.ReportsScreenVM_fromStore_closure4, A.ReportsScreenVM_fromStore_closure0, A.ReportsScreenVM_fromStore__closure0, A.ReportsScreenVM_fromStore__closure1, A.ReportsScreenVM_fromStore__closure2, A.ReportsScreenVM_fromStore__closure4, A.ReportsScreenVM_fromStore__closure5, A.ReportsScreenVM_fromStore___closure, A.memoizeedGroupTotals_closure, A.memoizedTaskReport_closure, A.taskReport_closure, A.taskReport_closure0, A.taskReport_closure1, A.taskReport_closure3, A.taskReport_closure4, A._AccountManagementState_didChangeDependencies_closure, A._AccountManagementState_didChangeDependencies_closure0, A._AccountManagementState__onChanged_closure, A._AccountManagementState_dispose_closure, A._AccountManagementState_build_closure, A._AccountManagementState_build__closure2, A._AccountManagementState_build___closure, A._AccountManagementState_build_closure0, A._AccountManagementState_build__closure1, A._AccountManagementState_build_closure1, A._AccountManagementState_build__closure0, A._AccountManagementState_build_closure2, A._AccountManagementState_build__closure, A._AccountOverview_build_closure1, A._AccountOverview_build__closure5, A._AccountOverview_build_closure2, A._AccountOverview_build__closure4, A._AccountOverview_build_closure3, A._AccountOverview_build__closure3, A._AccountOverview_build_closure4, A._AccountOverview_build__closure2, A._AccountOverview_build__closure1, A._AccountOverview_build___closure1, A._AccountOverview_build___closure2, A._AccountOverview_build___closure3, A._AccountOverview_build__closure0, A._AccountOverview_build__closure, A.AccountManagementVM_fromStore_closure1, A.AccountManagementVM_fromStore_closure2, A.AccountManagementVM_fromStore__closure, A.AccountManagementVM_fromStore__closure0, A.AccountManagementVM_fromStore___closure0, A.AccountManagementVM_fromStore__closure1, A.AccountManagementVM_fromStore___closure, A.AccountManagementVM_fromStore_closure, A.AccountManagementVM_fromStore_closure3, A.AccountManagementVM_fromStore_closure0, A._ClientPortalState__validateSubdomain__closure1, A._ClientPortalState__validateSubdomain__closure2, A._ClientPortalState_dispose_closure, A._ClientPortalState_didChangeDependencies_closure, A._ClientPortalState_didChangeDependencies_closure0, A._ClientPortalState__onChanged__closure, A._ClientPortalState__onChanged__closure0, A._ClientPortalState_build_closure20, A._ClientPortalState_build_closure, A._ClientPortalState_build__closure12, A._ClientPortalState_build_closure1, A._ClientPortalState_build_closure0, A._ClientPortalState_build_closure2, A._ClientPortalState_build_closure5, A._ClientPortalState_build__closure11, A._ClientPortalState_build_closure6, A._ClientPortalState_build__closure10, A._ClientPortalState_build_closure7, A._ClientPortalState_build__closure9, A._ClientPortalState_build_closure8, A._ClientPortalState_build__closure8, A._ClientPortalState_build_closure10, A._ClientPortalState_build__closure7, A._ClientPortalState_build_closure12, A._ClientPortalState_build__closure6, A._ClientPortalState_build___closure, A._ClientPortalState_build____closure, A._ClientPortalState_build_closure13, A._ClientPortalState_build__closure5, A._ClientPortalState_build_closure14, A._ClientPortalState_build__closure4, A._ClientPortalState_build_closure15, A._ClientPortalState_build__closure3, A._ClientPortalState_build_closure16, A._ClientPortalState_build__closure2, A._ClientPortalState_build_closure17, A._ClientPortalState_build__closure1, A._ClientPortalState_build_closure18, A._ClientPortalState_build__closure0, A._ClientPortalState_build_closure19, A._ClientPortalState_build__closure, A.ClientPortalVM_fromStore_closure1, A.ClientPortalVM_fromStore_closure0, A.ClientPortalVM_fromStore_closure, A.ClientPortalVM_fromStore___closure, A._CompanyDetailsState_didChangeDependencies_closure, A._CompanyDetailsState_didChangeDependencies_closure0, A._CompanyDetailsState_dispose_closure, A._CompanyDetailsState__onSettingsChanged_closure, A._CompanyDetailsState_build_closure, A._CompanyDetailsState_build_closure0, A._CompanyDetailsState_build_closure1, A._CompanyDetailsState_build__closure14, A._CompanyDetailsState_build_closure2, A._CompanyDetailsState_build__closure13, A._CompanyDetailsState_build_closure3, A._CompanyDetailsState_build__closure12, A._CompanyDetailsState_build_closure4, A._CompanyDetailsState_build___closure, A._CompanyDetailsState_build_closure6, A._CompanyDetailsState_build__closure9, A._CompanyDetailsState_build_closure5, A._CompanyDetailsState_build_closure7, A._CompanyDetailsState_build__closure8, A._CompanyDetailsState_build_closure8, A._CompanyDetailsState_build_closure9, A._CompanyDetailsState_build__closure7, A._CompanyDetailsState_build_closure10, A._CompanyDetailsState_build_closure11, A._CompanyDetailsState_build__closure6, A._CompanyDetailsState_build_closure13, A._CompanyDetailsState_build__closure5, A._CompanyDetailsState_build_closure14, A._CompanyDetailsState_build__closure4, A._CompanyDetailsState_build_closure15, A._CompanyDetailsState_build__closure3, A._CompanyDetailsState_build_closure16, A._CompanyDetailsState_build__closure2, A._CompanyDetailsState_build_closure17, A._CompanyDetailsState_build__closure1, A._CompanyDetailsState_build_closure18, A._CompanyDetailsState_build__closure0, A._CompanyDetailsState_build_closure19, A._CompanyDetailsState_build__closure, A._CompanyDetailsState_build_closure20, A._CompanyDetailsState_build_closure21, A.CompanyDetailsVM_fromStore_closure, A.CompanyDetailsVM_fromStore_closure0, A.CompanyDetailsVM_fromStore_closure3, A.CompanyDetailsVM_fromStore__closure2, A.CompanyDetailsVM_fromStore__closure3, A.CompanyDetailsVM_fromStore__closure4, A.CompanyDetailsVM_fromStore_closure1, A.CompanyDetailsVM_fromStore_closure4, A.CompanyDetailsVM_fromStore__closure0, A.CompanyDetailsVM_fromStore__closure1, A.CompanyDetailsVM_fromStore___closure, A.CompanyDetailsVM_fromStore_closure6, A.CompanyDetailsVM_fromStore__closure, A._CreditCardsAndBanksState_dispose_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure0, A._CustomFieldsState_initState_closure, A.CustomFieldsSettings_build_closure, A.CustomFieldsSettings_build__closure6, A.CustomFieldsSettings_build_closure0, A.CustomFieldsSettings_build__closure5, A.CustomFieldsSettings_build_closure1, A.CustomFieldsSettings_build__closure4, A.CustomFieldsSettings_build_closure2, A.CustomFieldsSettings_build__closure3, A.CustomFieldsSettings_build_closure3, A.CustomFieldsSettings_build__closure2, A.CustomFieldsSettings_build_closure4, A.CustomFieldsSettings_build__closure1, A.CustomFieldsSettings_build_closure5, A.CustomFieldsSettings_build__closure0, A.CustomFieldsSettings_build_closure6, A.CustomFieldsSettings_build__closure, A._CustomFormFieldState_dispose_closure, A._CustomFormFieldState_didChangeDependencies_closure, A._CustomFormFieldState_didChangeDependencies_closure0, A._CustomFormFieldState__onChanged_closure, A._CustomFormFieldState_build_closure, A._CustomFormFieldState_build_closure1, A.CustomFieldsVM_fromStore_closure0, A.CustomFieldsVM_fromStore_closure, A._DataVisualizationsState_dispose_closure, A._DataVisualizationsState_didChangeDependencies_closure, A._DataVisualizationsState_didChangeDependencies_closure0, A._DeviceSettingsState_build_closure, A._DeviceSettingsState_build_closure0, A._DeviceSettingsState_build_closure1, A._DeviceSettingsState_build_closure2, A._DeviceSettingsState_build_closure3, A._DeviceSettingsState_build_closure4, A._DeviceSettingsState_build_closure5, A._DeviceSettingsState_build__closure7, A._DeviceSettingsState_build_closure7, A._DeviceSettingsState_build_closure8, A._DeviceSettingsState_build_closure9, A._DeviceSettingsState_build_closure10, A._DeviceSettingsState_build_closure11, A._DeviceSettingsState_build_closure12, A._DeviceSettingsState_build_closure13, A._DeviceSettingsState_build__closure4, A._DeviceSettingsState_build_closure15, A._DeviceSettingsState_build_closure16, A._DeviceSettingsState_build_closure17, A._DeviceSettingsState_build_closure18, A._DeviceSettingsState_build__closure2, A._DeviceSettingsState_build__closure3, A._DeviceSettingsState_build_closure19, A._DeviceSettingsState_build__closure1, A._DeviceSettingsState_build___closure0, A._DeviceSettingsState_build__closure0, A._DeviceSettingsState_build__closure, A._DeviceSettingsState_build___closure, A.DeviceSettingsVM_fromStore_closure, A.DeviceSettingsVM_fromStore_closure0, A.DeviceSettingsVM_fromStore__closure, A._EmailSettingsState_dispose_closure, A._EmailSettingsState_didChangeDependencies_closure, A._EmailSettingsState_didChangeDependencies_closure0, A._EmailSettingsState__onChanged_closure, A._EmailSettingsState_build_closure, A._EmailSettingsState_build__closure6, A._EmailSettingsState_build_closure1, A._EmailSettingsState_build__closure5, A._EmailSettingsState_build_closure2, A._EmailSettingsState_build_closure4, A._EmailSettingsState_build__closure4, A._EmailSettingsState_build_closure5, A._EmailSettingsState_build_closure7, A._EmailSettingsState_build__closure3, A._EmailSettingsState_build_closure6, A._EmailSettingsState_build_closure8, A._EmailSettingsState_build__closure2, A._EmailSettingsState_build_closure9, A._EmailSettingsState_build__closure1, A._EmailSettingsState_build_closure10, A._EmailSettingsState_build__closure0, A._EmailSettingsState_build_closure11, A._EmailSettingsState_build__closure, A.EmailSettingsVM_fromStore_closure0, A.EmailSettingsVM_fromStore_closure, A._ExpenseSettingsState_build_closure, A._ExpenseSettingsState_build__closure3, A._ExpenseSettingsState_build_closure0, A._ExpenseSettingsState_build__closure2, A._ExpenseSettingsState_build_closure1, A._ExpenseSettingsState_build__closure1, A._ExpenseSettingsState_build_closure2, A._ExpenseSettingsState_build__closure0, A._ExpenseSettingsState_build_closure3, A._ExpenseSettingsState_build__closure, A.ExpenseSettingsVM_fromStore_closure0, A.ExpenseSettingsVM_fromStore_closure, A.ExpenseSettingsVM_fromStore_closure1, A._GeneratedNumbersState_initState_closure, A._GeneratedNumbersState_dispose_closure, A._GeneratedNumbersState_didChangeDependencies_closure, A._GeneratedNumbersState_didChangeDependencies_closure0, A._GeneratedNumbersState__onChanged__closure, A._GeneratedNumbersState__onSavePressed_closure, A._GeneratedNumbersState__onSavePressed_closure0, A._GeneratedNumbersState_build_closure0, A._GeneratedNumbersState_build__closure16, A._GeneratedNumbersState_build_closure, A._GeneratedNumbersState_build_closure1, A._GeneratedNumbersState_build__closure15, A._GeneratedNumbersState_build_closure2, A._GeneratedNumbersState_build__closure14, A._GeneratedNumbersState_build_closure3, A._GeneratedNumbersState_build__closure13, A._GeneratedNumbersState_build_closure5, A._GeneratedNumbersState_build__closure12, A._GeneratedNumbersState_build__closure11, A._GeneratedNumbersState_build__closure10, A._GeneratedNumbersState_build__closure9, A._GeneratedNumbersState_build__closure8, A._GeneratedNumbersState_build__closure7, A._GeneratedNumbersState_build__closure6, A._GeneratedNumbersState_build__closure5, A._GeneratedNumbersState_build__closure4, A._GeneratedNumbersState_build__closure3, A._GeneratedNumbersState_build__closure2, A._GeneratedNumbersState_build__closure1, A._GeneratedNumbersState_build__closure0, A._GeneratedNumbersState_build__closure, A._EntityNumberSettingsState_dispose_closure, A._EntityNumberSettingsState_didChangeDependencies_closure, A._EntityNumberSettingsState_didChangeDependencies_closure0, A._EntityNumberSettingsState_build_closure0, A.HelpPanel_build_closure, A.HelpPanel_build_closure0, A.HelpPanel_build_closure1, A.HelpPanel_build_closure2, A.GeneratedNumbersVM_fromStore_closure0, A.GeneratedNumbersVM_fromStore_closure, A._ImportExportState_build_closure0, A._ImportExportState_build_closure, A._ImportExportState_build_closure3, A._ImportExportState_build_closure2, A._ImportExportState_build_closure5, A._ImportExportState_build_closure4, A._ImportExportState_build__closure0, A._ImportExportState_build__closure1, A._FileImportState_uploadJsonFile_closure0, A._FileImportState_uploadJsonFile_closure1, A._FileImportState_uploadFile_closure0, A._FileImportState_uploadFile_closure1, A._FileImportState_build_closure0, A._FileImportState_build_closure, A._FileImportState_build_closure2, A._FileImportState_build_closure3, A.__FileMapperState_build_closure, A.__FileMapperState_build_closure0, A.__FileMapperState_build__closure0, A.__FileMapperState_build__closure1, A._FieldMapper_build_closure1, A._FieldMapper_build__closure, A._FieldMapper_build_closure0, A._InvoiceDesignState_initState_closure, A._InvoiceDesignState_build_closure62, A._InvoiceDesignState_build_closure, A._InvoiceDesignState_build__closure20, A._InvoiceDesignState_build_closure0, A._InvoiceDesignState_build_closure1, A._InvoiceDesignState_build__closure17, A._InvoiceDesignState_build_closure2, A._InvoiceDesignState_build_closure3, A._InvoiceDesignState_build__closure14, A._InvoiceDesignState_build_closure4, A._InvoiceDesignState_build_closure5, A._InvoiceDesignState_build__closure11, A._InvoiceDesignState_build_closure6, A._InvoiceDesignState_build_closure9, A._InvoiceDesignState_build__closure8, A._InvoiceDesignState_build_closure8, A._InvoiceDesignState_build_closure11, A._InvoiceDesignState_build__closure7, A._InvoiceDesignState_build_closure10, A._InvoiceDesignState_build_closure13, A._InvoiceDesignState_build__closure6, A._InvoiceDesignState_build_closure12, A._InvoiceDesignState_build_closure14, A._InvoiceDesignState_build__closure5, A._InvoiceDesignState_build_closure15, A._InvoiceDesignState_build__closure4, A._InvoiceDesignState_build_closure16, A._InvoiceDesignState_build__closure3, A._InvoiceDesignState_build_closure17, A._InvoiceDesignState_build__closure2, A._InvoiceDesignState_build_closure18, A._InvoiceDesignState_build__closure1, A._InvoiceDesignState_build_closure19, A._InvoiceDesignState_build__closure0, A._InvoiceDesignState_build_closure21, A._InvoiceDesignState_build__closure, A._InvoiceDesignState_build_closure22, A._InvoiceDesignState_build_closure23, A._InvoiceDesignState_build_closure24, A._InvoiceDesignState_build_closure25, A._InvoiceDesignState_build_closure26, A._InvoiceDesignState_build_closure27, A._InvoiceDesignState_build_closure28, A._InvoiceDesignState_build_closure29, A._InvoiceDesignState_build_closure30, A._InvoiceDesignState_build_closure31, A._InvoiceDesignState_build_closure32, A._InvoiceDesignState_build_closure33, A._InvoiceDesignState_build_closure34, A._InvoiceDesignState_build_closure35, A._InvoiceDesignState_build_closure36, A._InvoiceDesignState_build_closure37, A._InvoiceDesignState_build_closure38, A._InvoiceDesignState_build_closure39, A._InvoiceDesignState_build_closure40, A._InvoiceDesignState_build_closure41, A._InvoiceDesignState_build_closure42, A._InvoiceDesignState_build_closure43, A._InvoiceDesignState_build_closure44, A._InvoiceDesignState_build_closure45, A._InvoiceDesignState_build_closure46, A._InvoiceDesignState_build_closure47, A._InvoiceDesignState_build_closure48, A._InvoiceDesignState_build_closure49, A._InvoiceDesignState_build_closure50, A._InvoiceDesignState_build_closure51, A._InvoiceDesignState_build_closure52, A._InvoiceDesignState_build_closure53, A._InvoiceDesignState_build_closure54, A._InvoiceDesignState_build_closure55, A._InvoiceDesignState_build_closure56, A._InvoiceDesignState_build_closure57, A._InvoiceDesignState_build_closure58, A._InvoiceDesignState_build_closure59, A._InvoiceDesignState_build_closure60, A._InvoiceDesignState_build_closure61, A.InvoiceDesignVM_fromStore_closure, A.InvoiceDesignVM_fromStore___closure, A.InvoiceDesignVM_fromStore____closure, A.InvoiceDesignVM_fromStore_____closure, A.InvoiceDesignVM_fromStore_____closure0, A._LocalizationSettingsState_dispose_closure, A._LocalizationSettingsState_didChangeDependencies_closure, A._LocalizationSettingsState_didChangeDependencies_closure0, A._LocalizationSettingsState_build_closure, A._LocalizationSettingsState_build_closure1, A._LocalizationSettingsState_build__closure13, A._LocalizationSettingsState_build_closure2, A._LocalizationSettingsState_build__closure12, A._LocalizationSettingsState_build_closure3, A._LocalizationSettingsState_build__closure11, A._LocalizationSettingsState_build_closure4, A._LocalizationSettingsState_build__closure10, A._LocalizationSettingsState_build_closure5, A._LocalizationSettingsState_build__closure9, A._LocalizationSettingsState_build_closure6, A._LocalizationSettingsState_build__closure8, A._LocalizationSettingsState_build_closure7, A._LocalizationSettingsState_build__closure7, A._LocalizationSettingsState_build_closure9, A._LocalizationSettingsState_build__closure6, A._LocalizationSettingsState_build_closure10, A._LocalizationSettingsState_build_closure11, A._LocalizationSettingsState_build__closure5, A._LocalizationSettingsState_build__closure3, A._LocalizationSettingsState_build___closure, A._LocalizationSettingsState_build__closure1, A._LocalizationSettingsState_build__closure2, A._LocalizationSettingsState_build_closure14, A._LocalizationSettingsState_build__closure0, A._LocalizationSettingsState_build__closure, A._AddCompanyDialogState_build_closure1, A.LocalizationSettingsVM_fromStore_closure0, A.LocalizationSettingsVM_fromStore_closure, A.LocalizationSettingsVM_fromStore_closure1, A.LocalizationSettingsVM_fromStore___closure, A.LocalizationSettingsVM_fromStore____closure, A._PaymentSettingsState_didChangeDependencies_closure, A._PaymentSettingsState_didChangeDependencies_closure0, A._PaymentSettingsState__onChanged_closure, A._PaymentSettingsState_build_closure, A._PaymentSettingsState_build__closure3, A._PaymentSettingsState_build_closure0, A._PaymentSettingsState_build__closure2, A._PaymentSettingsState_build_closure1, A._PaymentSettingsState_build__closure1, A._PaymentSettingsState_build_closure2, A._PaymentSettingsState_build__closure0, A._PaymentSettingsState_build_closure3, A._PaymentSettingsState_build__closure, A.PaymentSettingsVM_fromStore_closure0, A.PaymentSettingsVM_fromStore_closure1, A.PaymentSettingsVM_fromStore_closure, A.PaymentSettingsVM_fromStore_closure2, A._ProductSettingsState_didChangeDependencies_closure, A._ProductSettingsState_didChangeDependencies_closure0, A._ProductSettingsState_dispose_closure, A._ProductSettingsState__onChanged_closure, A._ProductSettingsState_build_closure, A._ProductSettingsState_build__closure9, A._ProductSettingsState_build_closure0, A._ProductSettingsState_build__closure8, A._ProductSettingsState_build_closure1, A._ProductSettingsState_build__closure7, A._ProductSettingsState_build_closure2, A._ProductSettingsState_build__closure6, A._ProductSettingsState_build_closure3, A._ProductSettingsState_build__closure5, A._ProductSettingsState_build_closure4, A._ProductSettingsState_build__closure4, A._ProductSettingsState_build_closure5, A._ProductSettingsState_build__closure3, A._ProductSettingsState_build_closure6, A._ProductSettingsState_build__closure2, A._ProductSettingsState_build_closure7, A._ProductSettingsState_build__closure1, A._ProductSettingsState_build_closure8, A._ProductSettingsState_build__closure0, A._ProductSettingsState_build_closure9, A._ProductSettingsState_build__closure, A.ProductSettingsVM_fromStore_closure0, A.ProductSettingsVM_fromStore_closure, A.SettingsListVM_fromStore_closure, A.SettingsListVM_fromStore_closure1, A.SettingsListVM_fromStore_closure0, A.SettingsScreen_build_closure, A._SettingsWizardState_dispose_closure, A._SettingsWizardState__validateSubdomain__closure1, A._SettingsWizardState__validateSubdomain__closure2, A._SettingsWizardState__onSavePressed__closure, A._SettingsWizardState__onSavePressed___closure0, A._SettingsWizardState__onSavePressed___closure1, A._SettingsWizardState__onSavePressed___closure2, A._SettingsWizardState__onSavePressed__closure0, A._SettingsWizardState__onSavePressed__closure2, A._SettingsWizardState_build_closure, A._SettingsWizardState_build_closure0, A._SettingsWizardState_build_closure1, A._SettingsWizardState_build_closure2, A._SettingsWizardState_build_closure3, A._SettingsWizardState_build_closure4, A._SettingsWizardState_build_closure5, A._SettingsWizardState_build__closure, A._SettingsWizardState_build_closure8, A._SettingsWizardState_build_closure7, A._TaskSettingsState_didChangeDependencies_closure, A._TaskSettingsState_didChangeDependencies_closure0, A._TaskSettingsState_dispose_closure, A._TaskSettingsState__onChanged_closure, A._TaskSettingsState_build_closure, A._TaskSettingsState_build__closure6, A._TaskSettingsState_build_closure0, A._TaskSettingsState_build__closure5, A._TaskSettingsState_build_closure1, A._TaskSettingsState_build__closure4, A._TaskSettingsState_build_closure2, A._TaskSettingsState_build__closure3, A._TaskSettingsState_build_closure3, A._TaskSettingsState_build__closure2, A._TaskSettingsState_build_closure4, A._TaskSettingsState_build__closure1, A._TaskSettingsState_build_closure5, A._TaskSettingsState_build__closure0, A._TaskSettingsState_build_closure6, A._TaskSettingsState_build__closure, A._TaskSettingsState_build_closure7, A.TaskSettingsVM_fromStore_closure0, A.TaskSettingsVM_fromStore_closure1, A.TaskSettingsVM_fromStore_closure, A.TaskSettingsVM_fromStore_closure2, A._TaxSettingsState_build_closure, A._TaxSettingsState_build__closure4, A._TaxSettingsState_build_closure0, A._TaxSettingsState_build__closure3, A._TaxSettingsState_build_closure1, A._TaxSettingsState_build__closure2, A._TaxSettingsState_build_closure2, A._TaxSettingsState_build__closure1, A._TaxSettingsState_build_closure3, A._TaxSettingsState_build__closure0, A._TaxSettingsState_build_closure4, A._TaxSettingsState_build__closure, A.NumberOfRatesSelector_build_closure, A.TaxSettingsVM_fromStore_closure0, A.TaxSettingsVM_fromStore_closure1, A.TaxSettingsVM_fromStore_closure, A.TaxSettingsVM_fromStore_closure2, A._TemplatesAndRemindersState_initState_closure, A._TemplatesAndRemindersState_dispose_closure, A._TemplatesAndRemindersState__onChanged_closure, A._TemplatesAndRemindersState__onChanged_closure0, A._TemplatesAndRemindersState__onChanged_closure1, A._TemplatesAndRemindersState__onChanged_closure2, A._TemplatesAndRemindersState__onChanged_closure3, A._TemplatesAndRemindersState__onChanged_closure4, A._TemplatesAndRemindersState__onChanged_closure5, A._TemplatesAndRemindersState__onChanged_closure6, A._TemplatesAndRemindersState__onChanged_closure7, A._TemplatesAndRemindersState__onChanged_closure8, A._TemplatesAndRemindersState__onChanged_closure9, A._TemplatesAndRemindersState__onChanged_closure10, A._TemplatesAndRemindersState__onChanged_closure11, A._TemplatesAndRemindersState__onChanged_closure12, A._TemplatesAndRemindersState__renderTemplate_closure0, A._TemplatesAndRemindersState_build_closure9, A._TemplatesAndRemindersState_build_closure1, A._TemplatesAndRemindersState_build_closure, A._TemplatesAndRemindersState_build_closure0, A._TemplatesAndRemindersState_build_closure2, A._TemplatesAndRemindersState_build__closure3, A._TemplatesAndRemindersState_build_closure3, A._TemplatesAndRemindersState_build__closure2, A._TemplatesAndRemindersState_build_closure4, A._TemplatesAndRemindersState_build__closure1, A._TemplatesAndRemindersState_build_closure5, A._TemplatesAndRemindersState_build__closure0, A._TemplatesAndRemindersState_build_closure7, A._TemplatesAndRemindersState_build__closure, A._TemplatesAndRemindersState_build_closure8, A._ReminderSettingsState_dispose_closure, A._ReminderSettingsState_didChangeDependencies_closure, A._ReminderSettingsState_didChangeDependencies_closure0, A._ReminderSettingsState_build_closure, A._ReminderSettingsState_build_closure0, A.TemplatesAndRemindersVM_fromStore_closure0, A.TemplatesAndRemindersVM_fromStore_closure, A.TemplatesAndRemindersVM_fromStore____closure, A.TemplatesAndRemindersVM_fromStore____closure0, A.TemplatesAndRemindersVM_fromStore___closure0, A.TemplatesAndRemindersVM_fromStore___closure1, A.TemplatesAndRemindersVM_fromStore___closure2, A._UserDetailsState_dispose_closure, A._UserDetailsState_didChangeDependencies_closure, A._UserDetailsState_didChangeDependencies_closure0, A._UserDetailsState__onChanged_closure, A._UserDetailsState_build_closure4, A._UserDetailsState_build_closure5, A._UserDetailsState_build_closure6, A._UserDetailsState_build_closure7, A._UserDetailsState_build__closure4, A._UserDetailsState_build__closure3, A._UserDetailsState_build_closure10, A._UserDetailsState_build__closure2, A._UserDetailsState_build_closure12, A._UserDetailsState_build__closure1, A._UserDetailsState_build_closure11, A._UserDetailsState_build_closure13, A._UserDetailsState_build__closure0, A._UserDetailsState_build__closure, A._EnableTwoFactorState_initState_closure, A._EnableTwoFactorState_initState_closure0, A._EnableTwoFactorState__onSavePressed_closure1, A._EnableTwoFactorState__onSavePressed_closure2, A._EnableTwoFactorState_build_closure, A._EnableTwoFactorState_build_closure1, A._EnableTwoFactorState_build_closure0, A.__SmsVerificationState__sendCode_closure0, A.__SmsVerificationState__sendCode_closure1, A.__SmsVerificationState__verifyCode_closure1, A.__SmsVerificationState__verifyCode_closure2, A.__SmsVerificationState_build_closure, A.__SmsVerificationState_build_closure0, A.UserDetailsVM_fromStore_closure, A.UserDetailsVM_fromStore_closure5, A.UserDetailsVM_fromStore__closure2, A.UserDetailsVM_fromStore____closure2, A.UserDetailsVM_fromStore_closure6, A.UserDetailsVM_fromStore__closure1, A.UserDetailsVM_fromStore____closure1, A.UserDetailsVM_fromStore_closure7, A.UserDetailsVM_fromStore__closure0, A.UserDetailsVM_fromStore_closure2, A.UserDetailsVM_fromStore__closure5, A.UserDetailsVM_fromStore____closure5, A.UserDetailsVM_fromStore____closure6, A.UserDetailsVM_fromStore_closure1, A.UserDetailsVM_fromStore_closure4, A.UserDetailsVM_fromStore__closure3, A.UserDetailsVM_fromStore____closure3, A.UserDetailsVM_fromStore____closure4, A.UserDetailsVM_fromStore_closure8, A.UserDetailsVM_fromStore__closure, A.UserDetailsVM_fromStore____closure, A.UserDetailsVM_fromStore____closure0, A.UserDetailsVM_fromStore_closure3, A.UserDetailsVM_fromStore___closure5, A.UserDetailsVM_fromStore_closure0, A.UserDetailsVM_fromStore___closure8, A.UserDetailsVM_fromStore____closure8, A.UserDetailsVM_fromStore___closure9, A._WorkflowSettingsState_build_closure, A._WorkflowSettingsState_build__closure5, A._WorkflowSettingsState_build_closure0, A._WorkflowSettingsState_build__closure4, A._WorkflowSettingsState_build_closure1, A._WorkflowSettingsState_build__closure3, A._WorkflowSettingsState_build_closure2, A._WorkflowSettingsState_build__closure2, A._WorkflowSettingsState_build_closure4, A._WorkflowSettingsState_build__closure1, A._WorkflowSettingsState_build_closure3, A._WorkflowSettingsState_build_closure5, A._WorkflowSettingsState_build__closure0, A._WorkflowSettingsState_build_closure6, A._WorkflowSettingsState_build__closure, A.WorkflowSettingsVM_fromStore_closure0, A.WorkflowSettingsVM_fromStore_closure1, A.WorkflowSettingsVM_fromStore_closure, A._SubscriptionEditState_didChangeDependencies_closure, A._SubscriptionEditState_didChangeDependencies_closure0, A._SubscriptionEditState_dispose_closure, A._SubscriptionEditState__onChanged_closure, A._SubscriptionEditState_build_closure24, A._SubscriptionEditState_build_closure25, A._SubscriptionEditState_build_closure, A._SubscriptionEditState_build__closure21, A._SubscriptionEditState_build_closure0, A._SubscriptionEditState_build__closure20, A._SubscriptionEditState_build_closure1, A._SubscriptionEditState_build__closure18, A._SubscriptionEditState_build___closure3, A._SubscriptionEditState_build__closure19, A._SubscriptionEditState_build_closure2, A._SubscriptionEditState_build_closure3, A._SubscriptionEditState_build___closure2, A._SubscriptionEditState_build_closure4, A._SubscriptionEditState_build__closure15, A._SubscriptionEditState_build___closure1, A._SubscriptionEditState_build__closure16, A._SubscriptionEditState_build_closure5, A._SubscriptionEditState_build_closure6, A._SubscriptionEditState_build___closure0, A._SubscriptionEditState_build_closure8, A._SubscriptionEditState_build__closure13, A._SubscriptionEditState_build_closure7, A._SubscriptionEditState_build_closure10, A._SubscriptionEditState_build__closure12, A._SubscriptionEditState_build_closure9, A._SubscriptionEditState_build_closure11, A._SubscriptionEditState_build__closure11, A._SubscriptionEditState_build_closure12, A._SubscriptionEditState_build__closure10, A._SubscriptionEditState_build_closure13, A._SubscriptionEditState_build__closure9, A._SubscriptionEditState_build_closure14, A._SubscriptionEditState_build__closure8, A._SubscriptionEditState_build_closure15, A._SubscriptionEditState_build__closure7, A._SubscriptionEditState_build_closure16, A._SubscriptionEditState_build__closure6, A._SubscriptionEditState_build_closure17, A._SubscriptionEditState_build__closure5, A._SubscriptionEditState_build_closure18, A._SubscriptionEditState_build__closure4, A._SubscriptionEditState_build_closure19, A._SubscriptionEditState_build__closure3, A._SubscriptionEditState_build_closure20, A._SubscriptionEditState_build_closure21, A._SubscriptionEditState_build__closure0, A._SubscriptionEditState_build_closure23, A._SubscriptionEditState_build___closure, A.SubscriptionEditScreen_build_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure, A.SubscriptionListItem_build_closure, A.SubscriptionListVM_fromStore__handleRefresh, A.SubscriptionListVM_fromStore_closure, A.SubscriptionListVM_fromStore_closure0, A.SubscriptionScreen_build_closure7, A.SubscriptionScreen_build_closure4, A.SubscriptionScreen_build_closure0, A.SubscriptionScreen_build_closure1, A.SubscriptionScreen_build_closure2, A.SubscriptionScreen_build_closure3, A.SubscriptionViewScreen_build_closure0, A._UpdateDialogState_updateApp__closure0, A._UpdateDialogState_updateApp__closure1, A._TaskEditState_build_closure1, A._TaskEditState_build_closure2, A._TaskEditDesktopState_didChangeDependencies_closure, A._TaskEditDesktopState_didChangeDependencies_closure0, A._TaskEditDesktopState_dispose_closure, A._TaskEditDesktopState__onChanged_closure, A._TaskEditDesktopState_build_closure, A._TaskEditDesktopState_build_closure0, A._TaskEditDesktopState_build_closure2, A._TaskEditDesktopState_build__closure8, A._TaskEditDesktopState_build_closure1, A._TaskEditDesktopState_build_closure3, A._TaskEditDesktopState_build__closure7, A._TaskEditDesktopState_build_closure4, A._TaskEditDesktopState_build_closure5, A._TaskEditDesktopState_build__closure6, A._TaskEditDesktopState_build_closure6, A._TaskEditDesktopState_build__closure5, A._TaskEditDesktopState_build_closure8, A._TaskEditDesktopState_build_closure10, A._TaskEditDesktopState_build_closure11, A._TaskEditDetailsState_didChangeDependencies_closure, A._TaskEditDetailsState_didChangeDependencies_closure0, A._TaskEditDetailsState_dispose_closure, A._TaskEditDetailsState__onChanged_closure, A._TaskEditDetailsState_build_closure0, A._TaskEditDetailsState_build__closure2, A._TaskEditDetailsState_build_closure, A._TaskEditDetailsState_build_closure1, A._TaskEditDetailsState_build__closure1, A._TaskEditDetailsState_build_closure2, A._TaskEditDetailsState_build_closure3, A._TaskEditDetailsState_build__closure0, A._TaskEditDetailsState_build_closure4, A._TaskEditDetailsState_build__closure, A.TaskEditDetailsScreen_build_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1, A._TaskEditTimesState__showTaskTimeEditor_closure, A._TaskEditTimesState__showTaskTimeEditor__closure, A._TaskEditTimesState_build_closure, A._TaskEditTimesState_build_closure0, A.TimeEditDetailsState_build_closure0, A.TimeEditDetailsState_build_closure1, A.TimeEditDetailsState_build_closure3, A.TaskEditTimesScreen_build_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure, A.TaskEditScreen_build_closure0, A.TaskEditVM_TaskEditVM$fromStore_closure0, A.TaskEditVM_TaskEditVM$fromStore__closure, A.TaskEditVM_TaskEditVM$fromStore_closure, A.TaskEditVM_TaskEditVM$fromStore___closure, A.TaskEditVM_TaskEditVM$fromStore___closure0, A.TaskEditVM_TaskEditVM$fromStore___closure1, A.TaskEditVM_TaskEditVM$fromStore____closure, A._KanbanTaskCardState_build_closure, A._KanbanTaskCardState_build__closure4, A._KanbanTaskCardState_build_closure10, A._KanbanTaskCardState_build_closure9, A._KanbanTaskCardState_build_closure6, A._KanbanTaskCardState_build__closure2, A._KanbanTaskCardState_build_closure7, A._KanbanStatusCardState__onSavePressed_closure, A._KanbanStatusCardState_build_closure, A._KanbanStatusCardState_build_closure0, A.KanbanViewState__initBoard_closure, A.KanbanViewState__onBoardChanged_closure, A.KanbanViewState_build_closure, A.KanbanViewState_build_closure0, A.KanbanViewState_build____closure3, A.KanbanViewState_build__closure3, A.KanbanViewState_build__closure4, A.KanbanViewState_build___closure3, A.KanbanViewState_build___closure2, A.KanbanVM_fromStore_closure, A.KanbanVM_fromStore_closure1, A.KanbanVM_fromStore__closure, A.KanbanVM_fromStore_closure0, A.KanbanVM_fromStore__closure0, A.KanbanVM_fromStore__closure1, A.KanbanVM_fromStore__closure2, A.KanbanVM_fromStore__closure3, A.TaskListItem_build__closure, A.TaskListItem_build__closure3, A.TaskListVM_fromStore__handleRefresh, A.TaskListVM_fromStore_closure0, A.TaskListVM_fromStore_closure, A.TaskPresenter_getField_closure, A.TaskPresenter_getField_closure0, A.TaskScreen_build_closure, A.TaskScreen_build_closure0, A.TaskScreen_build_closure1, A.TaskScreen_build_closure13, A.TaskScreen_build_closure9, A.TaskScreen_build_closure5, A.TaskScreen_build_closure6, A.TaskScreen_build_closure7, A.TaskScreen_build_closure8, A._TaskViewState_build_closure, A.TaskViewDocuments_build_closure, A.TaskViewDocuments_build_closure0, A._TaskOverviewState_initState_closure, A._TaskOverviewState_build__buildView_closure, A._TaskOverviewState_build__buildView__closure, A.TaskViewScreen_build_closure0, A.TaskViewVM_TaskViewVM$fromStore__handleRefresh, A.TaskViewVM_TaskViewVM$fromStore__toggleTask, A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure, A.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0, A.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure, A.TaskViewVM_TaskViewVM$fromStore_closure0, A.TaskViewVM_TaskViewVM$fromStore_closure, A.TaskViewVM_TaskViewVM$fromStore_closure1, A.TaskViewVM_TaskViewVM$fromStore__closure0, A.TaskViewVM_TaskViewVM$fromStore__closure1, A.TaskViewVM_TaskViewVM$fromStore___closure, A.TaskViewVM_TaskViewVM$fromStore_closure3, A.TaskViewVM_TaskViewVM$fromStore__closure, A._TaskStatusEditState_didChangeDependencies_closure, A._TaskStatusEditState_didChangeDependencies_closure0, A._TaskStatusEditState_dispose_closure, A._TaskStatusEditState__onChanged_closure, A._TaskStatusEditState_build_closure0, A._TaskStatusEditState_build_closure1, A._TaskStatusEditState_build_closure, A._TaskStatusEditState_build__closure0, A._TaskStatusEditState_build__closure1, A._TaskStatusEditState_build___closure, A.TaskStatusEditScreen_build_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure, A.TaskStatusListItem_build_closure, A.TaskStatusListVM_fromStore__handleRefresh, A.TaskStatusListVM_fromStore_closure, A.TaskStatusListVM_fromStore_closure0, A.TaskStatusScreen_build_closure7, A.TaskStatusScreen_build_closure4, A.TaskStatusScreen_build_closure0, A.TaskStatusScreen_build_closure1, A.TaskStatusScreen_build_closure2, A.TaskStatusScreen_build_closure3, A.TaskStatusViewScreen_build_closure0, A._TaxRateEditState_didChangeDependencies_closure, A._TaxRateEditState_didChangeDependencies_closure0, A._TaxRateEditState_dispose_closure, A._TaxRateEditState__onChanged_closure, A._TaxRateEditState_build_closure, A.TaxRateEditScreen_build_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore____closure, A.TaxRateListItem_build_closure, A.TaxRateListVM_fromStore__handleRefresh, A.TaxRateListVM_fromStore_closure, A.TaxRateListVM_fromStore_closure0, A.TaxRateSettingsScreen_build_closure3, A.TaxRateSettingsScreen_build_closure0, A.TaxRateViewScreen_build_closure0, A._TokenEditState_didChangeDependencies_closure, A._TokenEditState_didChangeDependencies_closure0, A._TokenEditState_dispose_closure, A._TokenEditState__onChanged_closure, A._TokenEditState_build_closure0, A._TokenEditState_build_closure1, A._TokenEditState_build_closure, A._TokenEditState_build__closure0, A.TokenEditScreen_build_closure0, A.TokenEditVM_TokenEditVM$fromStore_closure, A.TokenEditVM_TokenEditVM$fromStore_closure1, A.TokenEditVM_TokenEditVM$fromStore_closure0, A.TokenEditVM_TokenEditVM$fromStore____closure, A.TokenEditVM_TokenEditVM$fromStore____closure0, A.TokenEditVM_TokenEditVM$fromStore_____closure, A.TokenListItem_build_closure, A.TokenListVM_fromStore__handleRefresh, A.TokenListVM_fromStore_closure, A.TokenListVM_fromStore_closure0, A.TokenScreen_build_closure7, A.TokenScreen_build_closure4, A.TokenScreen_build_closure0, A.TokenScreen_build_closure1, A.TokenScreen_build_closure2, A.TokenScreen_build_closure3, A.TokenViewScreen_build_closure0, A._UserEditState_didChangeDependencies_closure, A._UserEditState_didChangeDependencies_closure0, A._UserEditState_dispose_closure, A._UserEditState__onChanged_closure, A._UserEditState__togglePermission_closure, A._UserEditState__togglePermission_closure0, A._UserEditState_build_closure13, A._UserEditState_build_closure14, A._UserEditState_build_closure, A._UserEditState_build_closure0, A._UserEditState_build_closure1, A._UserEditState_build__closure9, A._UserEditState_build_closure3, A._UserEditState_build__closure8, A._UserEditState_build__closure7, A._UserEditState_build___closure0, A._UserEditState_build_closure5, A._UserEditState_build_closure7, A._UserEditState_build_closure9, A._UserEditState_build_closure11, A._UserEditState_build_closure12, A._UserEditState_build___closure, A._UserEditState_build____closure, A._UserEditState_build__closure2, A._UserEditState_build__closure4, A._UserEditState_build__closure6, A.UserEditScreen_build_closure0, A.UserEditVM_UserEditVM$fromStore_closure, A.UserEditVM_UserEditVM$fromStore_closure1, A.UserEditVM_UserEditVM$fromStore_closure0, A.UserEditVM_UserEditVM$fromStore___closure0, A.UserEditVM_UserEditVM$fromStore___closure1, A.UserEditVM_UserEditVM$fromStore____closure, A.UserListItem_build_closure, A.UserListVM_fromStore__handleRefresh, A.UserListVM_fromStore_closure, A.UserListVM_fromStore_closure0, A.UserScreen_build_closure7, A.UserScreen_build_closure4, A.UserScreen_build_closure0, A.UserScreen_build_closure1, A.UserScreen_build_closure2, A.UserScreen_build_closure3, A.UserViewScreen_build_closure0, A._VendorEditState_build_closure, A._VendorEditState_build_closure0, A.VendorEditAddressState_didChangeDependencies_closure, A.VendorEditAddressState_didChangeDependencies_closure0, A.VendorEditAddressState_dispose_closure, A.VendorEditAddressState__onChanged_closure, A.VendorEditAddressState_build_closure, A.VendorEditAddressState_build__closure, A._VendorEditContactsState__showContactEditor_closure, A._VendorEditContactsState__showContactEditor__closure, A._VendorEditContactsState_build_closure, A._VendorEditContactsState_build_closure0, A.VendorContactEditDetailsState_didChangeDependencies_closure, A.VendorContactEditDetailsState_didChangeDependencies_closure0, A.VendorContactEditDetailsState_dispose_closure, A.VendorContactEditDetailsState__onChanged_closure, A.VendorContactEditDetailsState_build_closure, A.VendorContactEditDetailsState_build_closure0, A.VendorContactEditDetailsState_build_closure1, A.VendorContactEditDetailsState_build_closure2, A.VendorContactEditDetailsState_build_closure3, A.VendorContactEditDetailsState_build__closure, A.VendorEditContactsScreen_build_closure0, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0, A.VendorEditDetailsState_didChangeDependencies_closure, A.VendorEditDetailsState_didChangeDependencies_closure0, A.VendorEditDetailsState_dispose_closure, A.VendorEditDetailsState__onChanged_closure, A.VendorEditDetailsState_build_closure, A.VendorEditDetailsState_build_closure0, A.VendorEditDetailsState_build__closure, A.VendorEditNotesState_didChangeDependencies_closure, A.VendorEditNotesState_didChangeDependencies_closure0, A.VendorEditNotesState_dispose_closure, A.VendorEditNotesState__onChanged_closure, A.VendorEditNotesState_build_closure, A.VendorEditNotesState_build__closure, A.VendorEditScreen_build_closure0, A.VendorEditVM_VendorEditVM$fromStore_closure, A.VendorEditVM_VendorEditVM$fromStore_closure1, A.VendorEditVM_VendorEditVM$fromStore_closure0, A.VendorEditVM_VendorEditVM$fromStore___closure, A.VendorEditVM_VendorEditVM$fromStore___closure0, A.VendorEditVM_VendorEditVM$fromStore___closure1, A.VendorEditVM_VendorEditVM$fromStore____closure, A.VendorListItem_build__closure, A.VendorListItem_build__closure3, A.VendorListVM_fromStore__handleRefresh, A.VendorListVM_fromStore_closure, A.VendorListVM_fromStore_closure0, A.VendorPresenter_getField_closure, A.VendorScreen_build_closure7, A.VendorScreen_build_closure4, A.VendorScreen_build_closure0, A.VendorScreen_build_closure1, A.VendorScreen_build_closure2, A.VendorScreen_build_closure3, A._VendorViewState_build_closure0, A._VendorViewDetailsState_build__buildDetailsList_closure, A.VendorViewDocuments_build_closure, A.VendorViewDocuments_build_closure0, A._VendorViewFullwidthState_build__closure0, A.VendorViewScreen_build_closure0, A.VendorViewVM_VendorViewVM$fromStore__handleRefresh, A.VendorViewVM_VendorViewVM$fromStore_closure, A.VendorViewVM_VendorViewVM$fromStore_closure0, A.VendorViewVM_VendorViewVM$fromStore__closure0, A.VendorViewVM_VendorViewVM$fromStore__closure1, A.VendorViewVM_VendorViewVM$fromStore___closure, A.VendorViewVM_VendorViewVM$fromStore_closure2, A.VendorViewVM_VendorViewVM$fromStore__closure, A._WebhookEditState_didChangeDependencies_closure, A._WebhookEditState_didChangeDependencies_closure0, A._WebhookEditState_dispose_closure, A._WebhookEditState__onChanged_closure, A._WebhookEditState_build_closure0, A._WebhookEditState_build_closure1, A._WebhookEditState_build_closure, A._WebhookEditState_build__closure, A._WebhookEditState_build__closure1, A._WebhookEditState_build___closure4, A._WebhookEditState_build__closure0, A._WebhookEditState_build__closure2, A._WebhookEditState_build___closure3, A._WebhookEditState_build__closure3, A._WebhookEditState_build__closure4, A._WebhookEditState_build___closure0, A._WebhookEditState_build__closure6, A._WebhookEditState_build____closure, A.WebhookEditScreen_build_closure0, A.WebhookEditVM_WebhookEditVM$fromStore_closure, A.WebhookEditVM_WebhookEditVM$fromStore_closure1, A.WebhookEditVM_WebhookEditVM$fromStore_closure0, A.WebhookEditVM_WebhookEditVM$fromStore___closure, A.WebhookEditVM_WebhookEditVM$fromStore___closure0, A.WebhookEditVM_WebhookEditVM$fromStore____closure, A.WebhookViewScreen_build_closure0, A.WebhookListItem_build_closure, A.WebhookListVM_fromStore__handleRefresh, A.WebhookListVM_fromStore_closure, A.WebhookListVM_fromStore_closure0, A.WebhookScreen_build_closure7, A.WebhookScreen_build_closure4, A.WebhookScreen_build_closure0, A.WebhookScreen_build_closure1, A.WebhookScreen_build_closure2, A.WebhookScreen_build_closure3, A.snackBarCompleter_closure, A.snackBarCompleter_closure0, A.snackBarCompleter__closure, A.loadDesign_closure, A.loadDesign_closure0, A.showRefreshDataDialog_closure, A.showErrorDialog_closure, A.showMessageDialog_closure, A.confirmCallback_closure, A.confirmCallback__closure, A.confirmCallback__closure0, A.confirmCallback__closure1, A.passwordCallback_closure0, A.passwordCallback__closure0, A.passwordCallback__closure, A.passwordCallback_closure3, A._PasswordConfirmationState_build_closure0, A._PasswordConfirmationState_build_closure1, A.fieldCallback_closure, A._FieldConfirmationState_build_closure0, A._FieldConfirmationState_build_closure, A._FieldConfirmationState_build_closure1, A.cloneToDialog_closure, A.changeTaskStatusDialog_closure, A.changeTaskStatusDialog_closure0, A.changeTaskStatusDialog__closure, A.changeTaskStatusDialog____closure, A.addToInvoiceDialog_closure, A.addToInvoiceDialog_closure0, A.addToInvoiceDialog__closure, A.addToInvoiceDialog____closure, A.EnumUtils_fromString_closure, A._extension_0__encodeLinkMarker_closure, A._extension_0_toMarkdown_closure, A.GoogleOAuth_signIn_closure, A.GoogleOAuth_signUp_closure, A.toSnakeCase_closure, A.toCamelCase_closure, A.toSpaceCase_closure, A.toTitleCase_closure, A.matchesStrings_closure, A.matchesString_closure, A.matchesStringsValue_closure, A._ExampleEditorState__showEditorToolbar_closure, A._ExampleEditorState__showEditorToolbar_closure0, A._ExampleEditorState__showImageToolbar_closure, A._ExampleEditorState__showImageToolbar_closure0, A._ExampleEditorState__buildEditor_closure, A._ExampleEditorState__buildEditor_closure0, A._ExampleEditorState__buildMountedToolbar_closure, A._EditorToolbarState__getSelectedLinkSpans_closure, A._EditorToolbarState__onLinkPressed_closure, A._EditorToolbarState_build_closure, A._EditorToolbarState__buildToolbar_closure, A._EditorToolbarState__buildToolbar_closure0, A._EditorToolbarState__buildUrlField_closure, A._ImageFormatToolbarState_build_closure, A._PositionedToolbar_build_closure, A.loadEmailTemplate_closure, A.loadEmailTemplate_closure0, A.WebUtils_registerWebView_closure, A.WebUtils_warnChanges_closure, A.WebUtils_microsoftLogin_closure, A.WebUtils_microsoftLogin_closure0, A.linkify_closure, A.EmailLinkifier_parse_closure, A.UrlLinkifier_parse_closure, A.Element_textContent_closure, A.BlockSyntax_isAtBlockEnd_closure, A.BlockquoteSyntax_parseChildLines_closure, A.ListSyntax_parse_tryMatch, A.ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition, A.InlineParser_parse_closure, A.InlineParser__linkOrImage_closure, A.InlineParser__linkOrImage_closure0, A.InlineParser__linkOrImage_closure1, A.InlineParser__processEmphasis_closure0, A.LinkSyntax_closure, A.ImageSyntax__createNode_closure, A.memo1_closure, A.memo3_closure, A.memo4_closure, A.memo5_closure, A.memo6_closure, A.memo7_closure, A.memo8_closure, A.memo9_closure, A.memo10_closure, A.RenderOverflowView_resetOffstage_closure, A.RenderOverflowView_performFixedLayout_getChildOffset, A.RenderOverflowView_visitOnlyOnStageChildren_closure, A.RenderOverflowView_paint_paintChild, A.RenderOverflowView_hitTestChildren_closure, A.Context_joinAll_closure, A.Context_split_closure, A._validateArgList_closure, A.encodePermissions_closure, A._registerFactory_closure, A.PrintingPlugin__initPlugin_closure, A.PrintingPlugin_layoutPdf_closure, A.PrintingPlugin_layoutPdf_closure0, A.PrintingPlugin_raster_closure, A.PrintingPlugin_raster_closure0, A.MethodChannelPrinting__handleMethod_closure, A.PdfPreviewCustomState_didChangeDependencies_closure, A._PdfPreviewState_didChangeDependencies_closure, A._PdfPreviewState_build_closure, A.PdfRaster_toImage_closure, A.Store__createReduceAndNotify_closure, A.Store__createDispatchers_closure, A.RoundedLoadingButtonState_initState_closure1, A.RoundedLoadingButtonState_initState_closure3, A.Subject_addStream_closure, A._forwardMulti_closure, A._forwardMulti_closure_listenToUpstream, A._forward_closure_listenToUpstream, A.SentryNavigatorObserver__startTransaction_closure, A.SentryNavigatorObserver__startTransaction_closure0, A.SharedPreferencesPlugin__storedFlutterKeys_closure, A.MethodChannelSignInWithApple__signInWithAppleAndroid_closure, A.Highlighter$__closure, A.Highlighter$___closure, A.Highlighter$__closure0, A.Highlighter__collateLines_closure, A.Highlighter__collateLines_closure1, A.Highlighter__collateLines__closure, A.Highlighter_highlight_closure, A.InjectedImp_initialize_closure, A.InjectedImp_initialize_closure0, A.InjectedImp_initialize_closure1, A.ReactiveModelBase__setInitialStateCreator__closure, A.ReactiveModelBase_setStateFn__closure0, A.ReactiveModelBase__streamSubscription_closure, A.OnBuilder_closure, A.OnBuilder_build_closure2, A.SideEffects__closure, A.OnX_listenTo__closure, A.OnX_listenTo___closure, A.OnX_listenTo____closure, A.OnX_listenTo___closure1, A.OnX_listenTo__closure0, A.OnX_listenTo__closure1, A.MutableDocument_getNodeById_closure, A.MutableDocument_getNode_closure, A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.CommonEditorOperations_convertParagraphByPatternMatching_closure4, A._PasteEditorCommand_execute_closure, A._DocumentMouseInteractorState__onSelectionChange_closure, A._DocumentMouseInteractorState__buildGestureInput_closure0, A._DocumentMouseInteractorState__buildGestureInput_closure2, A._AndroidDocumentTouchInteractorState_initState_closure1, A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure, A._AndroidDocumentTouchInteractorState_reassemble_closure, A._AndroidDocumentTouchInteractorState_dispose_closure, A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure, A._AndroidDocumentTouchInteractorState__onDocumentChange_closure, A._AndroidDocumentTouchInteractorState__onSelectionChange_closure, A._AndroidDocumentTouchInteractorState__showEditingControlsOverlay_closure, A._AndroidDocumentTouchInteractorState__buildGestureInput_closure0, A._AndroidDocumentTouchEditingControlsState_build_closure, A._IOSDocumentTouchInteractorState_didChangeDependencies_closure, A._IOSDocumentTouchInteractorState_reassemble_closure, A._IOSDocumentTouchInteractorState_didChangeMetrics_closure, A._IOSDocumentTouchInteractorState__onDocumentChange_closure, A._IOSDocumentTouchInteractorState__onSelectionChange_closure, A._IOSDocumentTouchInteractorState__showEditingControlsOverlay_closure, A._IOSDocumentTouchInteractorState__buildGestureInput_closure0, A._IOSDocumentTouchInteractorState__buildGestureInput_closure2, A._IosDocumentTouchEditingControlsState__onFloatingCursorChange_closure, A._IosDocumentTouchEditingControlsState_build_closure, A._IosDocumentTouchEditingControlsState__buildHandleOld_closure, A._IosDocumentTouchEditingControlsState__buildFloatingCursor_closure, A._IosDocumentTouchEditingControlsState__buildToolbar_closure, A._DocumentImeInteractorState_updateEditingValueWithDeltas_closure, A.KeyboardEditingToolbar_build_closure, A._SingleColumnDocumentLayoutState__getDocumentPositionInComponentNearOffset_closure, A._SingleColumnDocumentLayoutState__getNodeIdsBetween_closure, A._SingleColumnDocumentLayoutState__getNodeIdsBetween__closure, A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure, A._SingleColumnDocumentLayoutState_getDocumentSelectionInRegion_closure0, A.SingleColumnLayoutSelectionStyler__computeNodeSelection_closure, A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.ComputerTextSpan_computeTextSpan_closure, A.CharacterMovement__moveOffsetByWord_closure, A.CharacterMovement__moveOffsetByWord_closure0, A.CharacterMovement__moveOffsetByWord_closure1, A.CharacterMovement__moveOffsetByCharacter_closure, A._RebuildOptimizedSuperTextWithSelectionState__buildLayerBeneath_closure, A._RebuildOptimizedSuperTextWithSelectionState__buildLayerAbove_closure, A.format_closure, A.MethodChannelUrlLauncher_canLaunch_closure, A.MethodChannelUrlLauncher_launch_closure]); _inheritMany(A.Closure0Args, [A.AppBootstrap_prepareEngineInitializer_closure, A.AssetManager__baseUrl_closure0, A.ProductionCollector_collect_closure, A.patchCanvasKitModule_closure, A.patchCanvasKitModule_closure1, A.HtmlViewEmbedder__compositeWithParams_closure, A.HtmlViewEmbedder__applyMutators_closure, A.HtmlViewEmbedder__applyMutators_closure0, A.FontFallbackData_createNotoFontTree_closure, A.FontFallbackData_registerFallbackFont_closure, A._makeResolvedNotoFontFromCss_closure, A.FallbackFontDownloadQueue_startDownloads_closure, A.SkiaFontCollection_ensureFontsLoaded_closure, A.SkiaFontCollection_ensureFontsLoaded_closure0, A.SkiaFontCollection__registerFont__downloadFont, A.skiaDecodeImageFromPixels_closure, A.httpRequestFactory_closure, A.CkImage_closure, A.CkBrowserImageDecoder__cacheExpirationClock_closure, A.CkBrowserImageDecoder__getOrCreateWebDecoder_closure, A.Frame_raster_closure, A.Frame_raster_closure0, A.CkTextStyle_skTextStyle_closure, A.PersistedPicture__applyBitmapPaint_closure, A.SurfaceSceneBuilder_build_closure, A.SurfaceSceneBuilder_build_closure0, A.initializeEngineServices_closure, A.initializeEngineServices_closure1, A._addUrlStrategyListener_closure0, A.Keyboard$__closure1, A.Keyboard__handleHtmlEvent_closure, A.KeyboardConverter__scheduleAsyncEvent_closure0, A.KeyboardConverter__startGuardingKey_closure, A.KeyboardConverter__startGuardingKey_closure0, A.KeyboardConverter__handleEvent_closure, A.KeyboardConverter__handleEvent_closure0, A.KeyboardConverter__handleEvent_closure1, A.HashUrlStrategy_addPopStateListener_closure, A.EnginePlatformDispatcher_invokeOnKeyData_closure, A.EnginePlatformDispatcher__addFontSizeObserver_closure0, A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0, A.invoke2_closure, A.invoke3_closure, A.PlatformViewManager_renderContent_closure, A._PointerAdapter__ensureSanitizer_closure, A.PointerDataConverter__ensureStateForPointer_closure, A.AccessibilityAnnouncements$__closure, A.AccessibilityAnnouncements_handleMessage_closure, A.Scrollable_update_closure, A.EngineSemanticsOwner$__closure, A.EngineSemanticsOwner__now_closure, A.EngineSemanticsOwner__getGestureModeClock_closure, A.MobileSemanticsEnabler_tryEnableSemantics_closure, A.TextField_update_closure, A._PolyfillFontManager_registerAsset__watchWidth, A.IOSTextEditingStrategy__schedulePlacement_closure, A.FirefoxTextEditingStrategy__postponeFocus_closure, A.TextEditingChannel_handleTextInput_closure, A.EngineFlutterWindow_closure, A.EngineFlutterWindow_handleNavigationMessage_closure, A._HeaderValue__parse_done, A._HeaderValue__parse_skipWS, A._HeaderValue__parse_parseValue, A._HeaderValue__parse_parseParameters, A._HeaderValue__parse_parseParameters_parseParameterName, A._HeaderValue__parse_parseParameters_parseParameterValue, A.CastMap_putIfAbsent_closure, A.nullFuture_closure, A.Primitives_initTicker_closure, A._AsyncRun__scheduleImmediateJsOverride_internalCallback, A._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback, A._TimerImpl_internalCallback, A._TimerImpl$periodic_closure, A._asyncStarHelper_closure, A._AsyncStarStreamController__resumeBody, A._AsyncStarStreamController__resumeBody_closure, A._AsyncStarStreamController_closure0, A._AsyncStarStreamController_closure1, A._AsyncStarStreamController_closure, A._AsyncStarStreamController__closure, A.Future_Future_closure, A.Future_Future$microtask_closure, A.Future_Future$delayed_closure, A._Future__addListener_closure, A._Future__prependListeners_closure, A._Future__chainForeignFuture_closure1, A._Future__asyncCompleteWithValue_closure, A._Future__chainFuture_closure, A._Future__asyncCompleteError_closure, A._Future__propagateToListeners_handleWhenCompleteCallback, A._Future__propagateToListeners_handleValueCallback, A._Future__propagateToListeners_handleError, A._Future_timeout_closure, A.Stream_fold_closure, A.Stream_fold__closure, A.Stream_forEach_closure, A.Stream_forEach__closure, A.Stream_length_closure0, A.Stream_isEmpty_closure, A.Stream_toList_closure0, A.Stream_first_closure, A._StreamController__subscribe_closure, A._StreamController__recordCancel_complete, A._AddStreamState_cancel_closure, A._BufferingStreamSubscription__sendError_sendError, A._BufferingStreamSubscription__sendDone_sendDone, A._PendingEvents_schedule_closure, A._MultiStream_listen_closure, A._cancelAndError_closure, A._cancelAndValue_closure, A._rootHandleError_closure, A._RootZone_bindCallback_closure, A._RootZone_bindCallbackGuarded_closure, A.Utf8Decoder__decoder_closure, A.Utf8Decoder__decoderNonfatal_closure, A._BigIntImpl_toDouble_roundUp, A.Entry_remove_closure, A._FileStream_listen_closure, A._FileStream__closeFile_done, A._File_readAsBytes_readDataChunked_read, A.ChannelBuffers_push_closure, A.ChannelBuffers_setListener_closure, A.webOnlyWarmupEngine_closure, A.webOnlyWarmupEngine_closure0, A.KeyData__logicalToString_closure, A.AttributedSpans_copyAttributionRegion__closure1, A.AttributedSpans_copyAttributionRegion__closure2, A.AttributedSpans_copyAttributionRegion__closure, A.AttributedSpans_copyAttributionRegion__closure0, A.BoardItemState_onDropItem_closure, A.BoardItemState__startDrag_closure, A.BoardItemState__startDrag_closure0, A.BoardItemState_build_closure2, A.BoardItemState_build_closure1, A.BoardItemState_build_closure0, A.BoardListState_onDropList_closure, A.BoardListState__startDrag_closure, A.BoardListState_build_closure0, A.BoardListState_build_closure1, A.BoardListState_build_closure, A.BoardViewState_moveDown_closure, A.BoardViewState_moveUp_closure, A.BoardViewState_moveListRight_closure, A.BoardViewState_moveListRight__closure, A.BoardViewState_moveListRight_closure0, A.BoardViewState_moveRight_closure, A.BoardViewState_moveRight_closure0, A.BoardViewState_moveRight_closure1, A.BoardViewState_moveRight__closure, A.BoardViewState_moveRight_closure2, A.BoardViewState_moveListLeft_closure, A.BoardViewState_moveListLeft__closure, A.BoardViewState_moveListLeft_closure0, A.BoardViewState_moveLeft_closure, A.BoardViewState_moveLeft_closure0, A.BoardViewState_moveLeft_closure1, A.BoardViewState_moveLeft__closure, A.BoardViewState_moveLeft_closure2, A.BoardViewState_build__closure5, A.BoardViewState_build_closure1, A.BoardViewState_build__closure4, A.BoardViewState_build_closure2, A.BoardViewState_build__closure3, A.BoardViewState_build__closure2, A.BoardViewState_build__closure0, A.BoardViewState_build__closure1, A.BoardViewState_build__closure, A.BoardViewState_run_closure, A.Serializers_Serializers_closure, A.Serializers_Serializers_closure0, A.Serializers_Serializers_closure1, A.Serializers_Serializers_closure2, A.Serializers_Serializers_closure3, A.CachedNetworkImageProvider__loadAsyncHttpGet_closure, A.BaseBarRenderer_preprocessSeries__closure1, A.BaseBarRenderer_update__closure, A.BaseBarRenderer_update__closure1, A._ReversedSeriesIterator_closure, A.BaseChart_getSelectionModel_closure, A.BaseChart_configureSeries__closure, A.BaseChart_preprocessSeries__closure, A.GestureListener_defaultTapCancel_closure, A.MaterialPalette__orderedPalettes_closure, A.MaterialPalette__orderedPalettes_closure0, A.MaterialPalette__orderedPalettes_closure1, A.MaterialPalette__orderedPalettes_closure2, A.MaterialPalette__orderedPalettes_closure3, A.MaterialPalette__orderedPalettes_closure4, A.MaterialPalette__orderedPalettes_closure5, A.MaterialPalette__orderedPalettes_closure6, A.MaterialPalette__orderedPalettes_closure7, A.MaterialPalette__orderedPalettes_closure8, A.MaterialPalette__orderedPalettes_closure9, A.BaseChartState_requestRebuild_closure, A.BaseChartState__animationTick_closure, A.LinePainter__drawDashedLine_closure, A.ChartGestureDetector_makeWidget_closure, A.ChartGestureDetector_onTapDown_closure, A.CanonicalizedMap_putIfAbsent_closure, A.MemoryDirectory_createTempSync_closure, A.MemoryDirectory_createTempSync_closure0, A.MemoryDirectory_createTempSync_name, A.MemoryFile__resolvedBackingOrCreate_closure, A.MemoryFile__resolvedBackingOrCreate_closure0, A._FileSink__FileSink$fromFile_closure, A._FileSink_addStream_finish, A._MemoryFileSystem_findNode_subpath, A.MemoryFileSystemEntity_backing_closure, A.MemoryFileSystemEntity_resolvedBacking_closure, A.MemoryFileSystemEntity_resolvedBacking_closure0, A.MemoryFileSystemEntity_defaultCheckType_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure0, A._CupertinoScrollbarState_initState_closure, A._CupertinoSwitchState__handleDragEnd_closure, A._testPlatform_closure, A._browserPlatform_closure, A.FlutterErrorDetails_summary_formatException, A.FlutterErrorDetails_summary_closure0, A.BindingBase_initServiceExtensions_closure, A.BindingBase_initServiceExtensions_closure1, A.BindingBase_lockEvents_closure, A.BindingBase_registerServiceExtension__closure, A.ChangeNotifier_notifyListeners_closure, A.LicenseEntryWithLineBreaks_paragraphs_addLine, A.LicenseEntryWithLineBreaks_paragraphs_getParagraph, A.LicenseRegistry_licenses_closure, A.GestureArenaManager_add_closure, A.GestureArenaManager__tryToResolveArena_closure, A.GestureBinding_dispatchEvent_closure, A.GestureBinding_dispatchEvent_closure0, A.ForcePressGestureRecognizer_handleEvent_closure, A.ForcePressGestureRecognizer_acceptGesture_closure, A.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure, A.LongPressGestureRecognizer__checkLongPressStart_closure, A.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure, A.LongPressGestureRecognizer__checkLongPressEnd_closure, A.DragGestureRecognizer__checkDown_closure, A.DragGestureRecognizer__checkStart_closure, A.DragGestureRecognizer__checkUpdate_closure, A.DragGestureRecognizer__checkEnd_closure, A.DragGestureRecognizer__checkEnd_closure0, A.DragGestureRecognizer__checkEnd_closure1, A.MultiDragGestureRecognizer__startDrag_closure, A.PointerRouter_addRoute_closure, A.PrimaryPointerGestureRecognizer_addAllowedPointer_closure, A.ScaleGestureRecognizer__reconfigure_closure, A.ScaleGestureRecognizer__reconfigure_closure0, A.ScaleGestureRecognizer__advanceStateMachine_closure, A.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure, A.TapGestureRecognizer_handleTapDown_closure, A.TapGestureRecognizer_handleTapDown_closure0, A.TapGestureRecognizer_handleTapUp_closure, A.TapGestureRecognizer_handleTapUp_closure0, A.GestureArenaTeam_add_closure, A._PackagesViewState__packagesList__closure, A._PackageLicensePageState__initLicenses_closure, A._PackageLicensePageState__initLicenses_closure0, A._MasterDetailFlowState__nestedUI_closure1, A._MasterDetailFlowState__masterPageRoute__closure, A._MasterDetailFlowState__detailPageRoute__closure, A.AppBar__getEffectiveCenterTitle_platformCenter, A._AppBarState__handleScrollNotification_closure, A.MaterialPointArcTween__initialize_sweepAngle, A.BackButton_build_closure, A._ButtonStyleState_build__closure1, A._CalendarDatePickerState__handleModeChanged_closure, A._CalendarDatePickerState__handleMonthChanged_closure, A._CalendarDatePickerState__handleYearChanged_closure, A._CalendarDatePickerState__handleDayChanged_closure, A._CalendarDatePickerState_build_closure, A._MonthPickerState__handleMonthPageChanged_closure, A._MonthPickerState__handleGridFocusChange_closure, A._MonthPickerState__handleDirectionFocus_closure, A._DayPickerState_build_closure, A._YearPickerState__buildYearItem_closure, A.DataTable_build_closure5, A.TableRowInkWell_getRectCallback_closure, A._SortArrowState__rebuild_closure, A._DatePickerDialogState__handleOk_closure, A._DatePickerDialogState__handleEntryModeToggle_closure, A._DatePickerDialogState__handleDateChanged_closure, A._DatePickerDialogState_build_calendarDatePicker, A._DatePickerDialogState_build_inputDatePicker, A.DrawerControllerState__animationChanged_closure, A._DropdownMenuState_build_closure, A._DropdownButtonState__handleFocusChanged_closure, A.DropdownButtonFormField_closure_isHintOrDisabledHintAvailable, A.Feedback_wrapForTap_closure, A._getClipCallback_closure, A._getClipCallback_closure0, A._InkResponseState_updateHighlight_handleInkRemoval, A._InkResponseState__createInkFeature_onRemoved, A._InkResponseState__handleFocusHighlightModeChange_closure, A._InputDatePickerFormFieldState_didUpdateWidget__closure, A._HelperErrorState__handleChange_closure, A._InputDecoratorState__handleChange_closure, A._InputDecoratorState__getFloatingLabelStyle_getFallbackTextStyle, A.MaterialStateMixin_addMaterialState_closure, A.MaterialStateMixin_removeMaterialState_closure, A._MergeableMaterialState__handleTick_closure, A.PaginatedDataTableState__handleDataSourceChanged_closure, A.PaginatedDataTableState_pageTo_closure, A.PaginatedDataTableState__getRows_closure, A.RadioListTile_build_closure, A.RefreshIndicatorState__handleScrollNotification_closure, A.RefreshIndicatorState__dismiss_closure, A.RefreshIndicatorState__dismiss_closure0, A.RefreshIndicatorState__show__closure, A.RefreshIndicatorState__show__closure0, A._ReorderableListViewState__wrapWithSemantics_moveToStart, A._ReorderableListViewState__wrapWithSemantics_moveToEnd, A._ReorderableListViewState__wrapWithSemantics_moveBefore, A._ReorderableListViewState__wrapWithSemantics_moveAfter, A._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure, A.ScaffoldState__drawerOpenedCallback_closure, A.ScaffoldState__endDrawerOpenedCallback_closure, A.ScaffoldState__updateSnackBar_closure, A.ScaffoldState__updateMaterialBanner_closure, A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet, A.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure, A.ScaffoldState__buildBottomSheet_closure, A.ScaffoldState__buildBottomSheet__removeEntryIfNeeded, A.ScaffoldState__buildBottomSheet_closure0, A.ScaffoldState__buildBottomSheet_closure1, A.ScaffoldState__buildBottomSheet__closure, A.ScaffoldState__buildBottomSheet_closure2, A.ScaffoldState_showBottomSheet_closure, A.ScaffoldState__moveFloatingActionButton_closure, A.ScaffoldState_showBodyScrim_closure, A._MaterialScrollbarState_initState_closure, A._MaterialScrollbarState_handleThumbPressStart_closure, A._MaterialScrollbarState_handleThumbPressEnd_closure, A._MaterialScrollbarState_handleHover_closure, A._MaterialScrollbarState_handleHover_closure0, A._MaterialScrollbarState_handleHoverExit_closure, A._SelectableTextState__onControllerChanged_closure, A._SelectableTextState__handleSelectionChanged_closure, A._SelectableTextState_build_closure, A._MaterialSwitchState__handleDragEnd_closure, A.SwitchListTile_build_closure, A.TabController__changeIndex_closure, A._TabBarState__handleTabControllerTick_closure, A._TabBarState_build_closure0, A._TabBarViewState__warpToCurrentIndex_closure, A._TabBarViewState__warpToCurrentIndex_closure0, A._TextFieldState__handleFocusChanged_closure, A._TextFieldState__handleSelectionChanged_closure, A._TextFieldState__handleHover_closure, A._TextFieldState_build_closure, A._TextFieldState_build_closure0, A._TextFieldState_build__closure, A.ThemeData_localize_closure, A._HourControl_build_closure1, A._HourControl_build_closure0, A._HourControl_build_closure, A._MinuteControl_build_closure1, A._MinuteControl_build_closure0, A._MinuteControl_build_closure, A._DayPeriodControl_build_closure1, A._DayPeriodControl_build_closure2, A._DialState_initState_closure, A._DialState_initState__closure, A._DialState__updateThetaForPan_closure, A._DialState__build24HourRing_closure, A._DialState__build12HourRing_closure, A._DialState__buildMinutes_closure, A._TimePickerInputState__validateHour_closure, A._TimePickerInputState__validateMinute_closure, A._HourMinuteTextFieldState_initState_closure, A._HourMinuteTextFieldState_initState__closure, A._HourMinuteTextFieldState_build_closure, A._TimePickerDialogState_initState_closure, A._TimePickerDialogState__vibrate_closure, A._TimePickerDialogState__handleModeChanged_closure, A._TimePickerDialogState__handleEntryModeToggle_closure, A._TimePickerDialogState__handleTimeChanged_closure, A._TimePickerDialogState__handleHourSelected_closure, A._TimePickerDialogState__handleOk_closure, A.ToggleButtons_build__closure, A.ToggleableStateMixin__handleTapDown_closure, A.ToggleableStateMixin__handleTapEnd_closure, A.ToggleableStateMixin__handleFocusHighlightChanged_closure, A.ToggleableStateMixin__handleHoverChanged_closure, A.TooltipState__handleMouseTrackerChange_closure, A.ImageCache__trackLiveImage_closure, A.ImageCache__trackLiveImage__closure, A._LiveImage_closure, A.ImageProvider_resolveStreamForKey_closure, A.ImageProvider_resolveStreamForKey_closure0, A.MultiFrameImageStreamCompleter__handleAppFrame_closure, A.RenderAnimatedSize_closure, A.RenderBox__computeIntrinsicDimension_closure, A.RenderBox_getDryLayout_closure, A.RenderBox_getDistanceToActualBaseline_closure, A.RenderEditable__createShowOnScreenFor_closure, A.MouseTracker_updateWithEvent_closure, A.MouseTracker_updateWithEvent__closure, A.MouseTracker_updateAllDevices_closure, A.PaintingContext_pushClipRect_closure, A.PaintingContext_pushClipRRect_closure, A.PaintingContext_pushClipPath_closure, A.RenderObject__debugReportException_closure, A.RenderObject_invokeLayoutCallback_closure, A.RenderParagraph__createShowOnScreenFor_closure, A.RenderSliverList_performLayout_advance, A.RenderSliverFloatingPersistentHeader__updateAnimation_closure, A._TaskEntry_run_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure0, A.SchedulerBinding_scheduleWarmUpFrame_closure1, A.ServicesBinding__addLicenses_closure, A.RawKeyEvent_RawKeyEvent$fromMessage__dataFromWeb, A.RestorationBucket__rawChildren_closure, A.RestorationBucket__rawValues_closure, A.RestorationBucket__addChildData_closure, A.SystemChrome_setSystemUIOverlayStyle_closure, A.TextInput__scheduleHide_closure, A._ActionsState__handleActionChanged_closure, A._FocusableActionDetectorState__updateHighlightMode_closure, A._FocusableActionDetectorState__handleMouseEnter_closure, A._FocusableActionDetectorState__handleMouseExit_closure, A._FocusableActionDetectorState__handleFocusChange_closure, A._AnimatedCrossFadeState_initState__closure, A._AnimatedSwitcherState__newEntry__closure, A._WidgetsAppState_didChangeLocales_closure, A._StreamBuilderBaseState__subscribe__closure1, A._StreamBuilderBaseState__subscribe__closure, A._StreamBuilderBaseState__subscribe_closure0, A._StreamBuilderBaseState__subscribe__closure0, A._FutureBuilderState__subscribe__closure0, A._FutureBuilderState__subscribe__closure, A.AutofillGroupState_register_closure, A._AutomaticKeepAliveState__createCallback_closure, A._AutomaticKeepAliveState__createCallback__closure, A._AutomaticKeepAliveState__createCallback__closure0, A._AutomaticKeepAliveState__createCallback___closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3, A.WidgetsBinding_scheduleAttachRootWidget_closure, A.RenderObjectToWidgetAdapter_attachToRenderTree_closure, A.RenderObjectToWidgetAdapter_attachToRenderTree_closure0, A._DraggableScrollableSheetState__setExtent_closure, A._DraggableScrollableSheetScrollController_createScrollPosition_closure, A._DraggableScrollableSheetScrollPosition_goBallistic__tick, A._DraggableScrollableSheetScrollPosition_goBallistic_closure, A.EditableTextState__cursorTick_closure, A.EditableTextState__didChangeTextEditingValue_closure, A.EditableTextState__handleFocusChanged_closure, A.EditableTextState_insertTextPlaceholder_closure, A.EditableTextState_removeTextPlaceholder_closure, A.EditableTextState_showAutocorrectionPromptRect_closure, A.EditableTextState__semanticsOnCopy_closure, A.EditableTextState__semanticsOnCut_closure, A.EditableTextState__semanticsOnPaste_closure, A.EditableTextState_build__closure, A._throttle__closure, A._FocusState__handleFocusChanged_closure, A._FocusState__handleFocusChanged_closure0, A._FocusState__handleFocusChanged_closure1, A._FocusState__handleFocusChanged_closure2, A.FormState__forceRebuild_closure, A.FormFieldState_validate_closure, A.FormFieldState_didChange_closure, A.BuildOwner_buildScope_closure, A.ComponentElement_performRebuild_closure, A.ComponentElement_performRebuild_closure0, A.GestureDetector_build_closure, A.GestureDetector_build_closure1, A.GestureDetector_build_closure3, A.GestureDetector_build_closure5, A.GestureDetector_build_closure7, A.GestureDetector_build_closure9, A.GestureDetector_build_closure11, A._DefaultSemanticsGestureDelegate__getTapHandler_closure, A._DefaultSemanticsGestureDelegate__getLongPressHandler_closure, A._HeroState_startFlight_closure, A._HeroState_endFlight_closure, A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate, A._ImageState__getListener__closure, A._ImageState__handleImageFrame_closure, A._ImageState__handleImageChunk_closure, A._ImageState__updateSourceStream_closure, A._ImageState__updateSourceStream_closure0, A.AnimatedWidgetBaseState__handleAnimationChanged_closure, A._InteractiveViewerState__onTransformationControllerChange_closure, A._LayoutBuilderElement__layout_layoutCallback, A._LayoutBuilderElement__layout_layoutCallback_closure, A._LayoutBuilderElement__layout_layoutCallback_closure0, A._LocalizationsState_load__closure, A._MediaQueryFromWindowState_didChangeMetrics_closure, A._MediaQueryFromWindowState_didChangeTextScaleFactor_closure, A._MediaQueryFromWindowState_didChangePlatformBrightness_closure, A.ModalBarrier_build_handleDismiss, A.Route_isCurrent_closure0, A.Route_isFirst_closure0, A.Route_isActive_closure0, A._RouteEntry_handlePush_closure, A._RouteEntry_dispose_closure0, A.NavigatorState__flushHistoryUpdates_closure0, A.NavigatorState_maybePop_closure0, A.NavigatorState_maybePop_closure2, A.NavigatorState_removeRoute_closure0, A.NavigatorState__cancelActivePointers_closure, A._RenderOverflowBar_performLayout_nextChild, A._OverlayEntryWidgetState__markNeedsBuild_closure, A.OverlayState_insert_closure, A.OverlayState_insertAll_closure, A.OverlayState_rearrange_closure, A.OverlayState__markDirty_closure, A.OverlayState__didChangeEntryOpacity_closure, A._GlowController_pull_closure, A.SliverReorderableListState_startItemDragReorder_closure, A.SliverReorderableListState__dragUpdate_closure, A.SliverReorderableListState__dragEnd_closure, A.SliverReorderableListState__dragReset_closure, A._ReorderableItemState_dragging_closure, A._ReorderableItemState_rebuild_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary__closure, A.RestorationMixin_registerForRestoration_listener, A.TransitionRoute__updateSecondaryAnimation_closure, A.TransitionRoute__updateSecondaryAnimation_closure0, A._ModalScopeState__forceRebuildPage_closure, A.ModalRoute_offstage_closure, A.ModalRoute_changedInternalState_closure, A.ScrollAwareImageProvider_resolveStreamForKey__closure, A.ScrollNotificationObserverState__notifyListeners_closure, A.ScrollableState_setCanDrag_closure, A.ScrollableState_setCanDrag_closure1, A.RawScrollbarState__maybeStartFadeoutTimer_closure, A.RawScrollbarState__gestures_closure, A.RawScrollbarState__gestures_closure1, A.ShortcutManager__indexShortcuts__closure, A.SliverMultiBoxAdaptorElement_performRebuild_closure, A.SliverMultiBoxAdaptorElement_performRebuild_closure0, A.SliverMultiBoxAdaptorElement_createChild_closure, A.SliverMultiBoxAdaptorElement_removeChild_closure, A._SliverPersistentHeaderElement__build_closure, A._TextSelectionGestureDetectorState_build_closure, A._TextSelectionGestureDetectorState_build_closure1, A._TextSelectionGestureDetectorState_build_closure3, A._TextSelectionGestureDetectorState_build_closure5, A._AnimatedState__handleChange_closure, A._ValueListenableBuilderState__valueChanged_closure, A.CacheStore__scheduleCleanup_closure, A._BlockPickerState_changeColor_closure, A._BlockPickerState_build__closure, A.JsonObjectViewerState__getList_closure, A.JsonObjectViewerState__getList__closure, A.JsonObjectViewerState_getValueWidget_closure, A.JsonObjectViewerState_getValueWidget__closure0, A.JsonObjectViewerState_getValueWidget_closure0, A.JsonObjectViewerState_getValueWidget__closure, A._JsonArrayViewerState_getInkWell_closure, A._JsonArrayViewerState_getInkWell__closure, A._JsonArrayViewerState_getValueWidget_closure, A._JsonArrayViewerState_getValueWidget__closure0, A._JsonArrayViewerState_getValueWidget_closure0, A._JsonArrayViewerState_getValueWidget__closure, A._GlobalCupertinoLocalizationsDelegate_load_closure, A._MaterialLocalizationsDelegate_load_closure, A.CustomSlidableAction_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure0, A._ActionPaneState_handleRatioChanged_closure, A._SlidableState_handleActionPanelTypeChanged_closure, A.StyledToastWidgetState_initState_closure, A.StyledToastWidgetState_dismissToast_closure, A.StyledToastWidgetState_didChangeMetrics_closure, A.ToastFuture$create_closure, A.inject_closure, A.init_closure, A.Phase_startTagHtml__closure, A.InBodyPhase_startTagBody__closure, A.entitiesByFirstChar_closure, A.entitiesByFirstChar__closure, A.HtmlTokenizer_emitCurrentToken_closure, A.Rule_findRule_closure1, A._CommonRules_referenceLink_closure, A.MediaType_MediaType$parse_closure, A.ClientEntity_primaryContact_closure0, A.ClientEntity_getContact_closure0, A.InvoiceEntity_getInvitationForClientContact_closure0, A.InvoiceEntity_getInvitationForVendorContact_closure0, A.InvoiceEntity__calculateTax_closure, A.CalculateInvoiceTotal_calculateTaxes__closure0, A.CalculateInvoiceTotal_calculateTaxes__closure2, A.CalculateInvoiceTotal_calculateTaxes__closure4, A.CalculateInvoiceTotal_calculateTaxes_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure3, A.CalculateInvoiceTotal_calculateTaxes_closure5, A.PaymentEntity_invoiceId_closure0, A._$serializers_closure, A._$serializers_closure0, A._$serializers_closure1, A._$serializers_closure2, A._$serializers_closure3, A._$serializers_closure4, A._$serializers_closure5, A._$serializers_closure6, A._$serializers_closure7, A._$serializers_closure8, A._$serializers_closure9, A._$serializers_closure10, A._$serializers_closure11, A._$serializers_closure12, A._$serializers_closure13, A._$serializers_closure14, A._$serializers_closure15, A._$serializers_closure16, A._$serializers_closure17, A._$serializers_closure18, A._$serializers_closure19, A._$serializers_closure20, A._$serializers_closure21, A._$serializers_closure22, A._$serializers_closure23, A._$serializers_closure24, A._$serializers_closure25, A._$serializers_closure26, A._$serializers_closure27, A._$serializers_closure28, A._$serializers_closure29, A._$serializers_closure30, A._$serializers_closure31, A._$serializers_closure32, A._$serializers_closure33, A._$serializers_closure34, A._$serializers_closure35, A._$serializers_closure36, A._$serializers_closure37, A._$serializers_closure38, A._$serializers_closure39, A._$serializers_closure40, A._$serializers_closure41, A._$serializers_closure42, A._$serializers_closure43, A._$serializers_closure44, A._$serializers_closure45, A._$serializers_closure46, A._$serializers_closure47, A._$serializers_closure48, A._$serializers_closure49, A._$serializers_closure50, A._$serializers_closure51, A._$serializers_closure52, A._$serializers_closure53, A._$serializers_closure54, A._$serializers_closure55, A._$serializers_closure56, A._$serializers_closure57, A._$serializers_closure58, A._$serializers_closure59, A._$serializers_closure60, A._$serializers_closure61, A._$serializers_closure62, A._$serializers_closure63, A._$serializers_closure64, A._$serializers_closure65, A._$serializers_closure66, A._$serializers_closure67, A._$serializers_closure68, A._$serializers_closure69, A._$serializers_closure70, A._$serializers_closure71, A._$serializers_closure72, A._$serializers_closure73, A._$serializers_closure74, A._$serializers_closure75, A._$serializers_closure76, A._$serializers_closure77, A._$serializers_closure78, A._$serializers_closure79, A._$serializers_closure80, A._$serializers_closure81, A._$serializers_closure82, A._$serializers_closure83, A._$serializers_closure84, A._$serializers_closure85, A._$serializers_closure86, A._$serializers_closure87, A._$serializers_closure88, A._$serializers_closure89, A._$serializers_closure90, A._$serializers_closure91, A._$serializers_closure92, A._$serializers_closure93, A._$serializers_closure94, A._$serializers_closure95, A._$serializers_closure96, A._$serializers_closure97, A._$serializers_closure98, A._$serializers_closure99, A._$serializers_closure100, A._$serializers_closure101, A._$serializers_closure102, A._$serializers_closure103, A._$serializers_closure104, A._$serializers_closure105, A._$serializers_closure106, A._$serializers_closure107, A._$serializers_closure108, A._$serializers_closure109, A._$serializers_closure110, A._$serializers_closure111, A._$serializers_closure112, A._$serializers_closure113, A._$serializers_closure114, A._$serializers_closure115, A._$serializers_closure116, A._$serializers_closure117, A._$serializers_closure118, A._$serializers_closure119, A._$serializers_closure120, A._$serializers_closure121, A._$serializers_closure122, A._$serializers_closure123, A._$serializers_closure124, A._$serializers_closure125, A._$serializers_closure126, A._$serializers_closure127, A._$serializers_closure128, A._$serializers_closure129, A._$serializers_closure130, A._$serializers_closure131, A._$serializers_closure132, A._$serializers_closure133, A._$serializers_closure134, A._$serializers_closure135, A._$serializers_closure136, A._$serializers_closure137, A._$serializers_closure138, A._$serializers_closure139, A._$serializers_closure140, A._$serializers_closure141, A._$serializers_closure142, A._$serializers_closure143, A._$serializers_closure144, A._$serializers_closure145, A._$serializers_closure146, A._$serializers_closure147, A._$serializers_closure148, A._$serializers_closure149, A._$serializers_closure150, A._$serializers_closure151, A._$serializers_closure152, A._$serializers_closure153, A._$serializers_closure154, A._$serializers_closure155, A._$serializers_closure156, A._$serializers_closure157, A._$serializers_closure158, A._$serializers_closure159, A._$serializers_closure160, A._$serializers_closure161, A._$serializers_closure162, A._$serializers_closure163, A._$serializers_closure164, A._$serializers_closure165, A._$serializers_closure166, A._$serializers_closure167, A._$serializers_closure168, A._$serializers_closure169, A._$serializers_closure170, A._$serializers_closure171, A._$serializers_closure172, A._$serializers_closure173, A._$serializers_closure174, A._$serializers_closure175, A._$serializers_closure176, A._$serializers_closure177, A._$serializers_closure178, A._$serializers_closure179, A._$serializers_closure180, A._$serializers_closure181, A._$serializers_closure182, A._$serializers_closure183, A._$serializers_closure184, A._$serializers_closure185, A._$serializers_closure186, A._$serializers_closure187, A._$serializers_closure188, A._$serializers_closure189, A._$serializers_closure190, A._$serializers_closure191, A.VendorEntity_primaryContact_closure0, A.VendorEntity_getContact_closure0, A.InvoiceNinjaAppState__authenticate_closure, A.viewEntitiesByType_closure, A.viewEntityById_closure, A.createEntityByType_closure, A.createEntity_closure, A.editEntity_closure, A.checkForChanges__closure, A._createPersistUI__closure, A.__MergClientPickerState_build__closure0, A.__MergClientPickerState_build_closure0, A.__MergClientPickerState_build_closure1, A.handleCreditAction_closure1, A._createViewDashboard__closure, A.DesignState_cleanDesign_closure0, A.handleInvoiceAction_closure3, A.handlePurchaseOrderAction_closure1, A.handleQuoteAction_closure1, A._viewReports__closure, A._viewSettings__closure, A._addToHistory_closure0, A._AppBottomBarState_build_closure0, A._AppBottomBarState_build__closure15, A._AppBottomBarState_build_closure1, A._AppBottomBarState_build__closure13, A._AppBottomBarState_build_closure6, A._AppBottomBarState_build_____closure0, A._AppBottomBarState_build__closure3, A._AppBottomBarState_build_closure2, A._AppBottomBarState_build__closure11, A._AppBottomBarState_build_closure3, A._AppBottomBarState_build__closure9, A._AppBottomBarState_build_closure4, A._AppBottomBarState_build__closure7, A._AppBottomBarState_build_closure5, A._AppBottomBarState_build__closure5, A._AppBottomBarState_build_closure__onColumnsPressed, A._AppBottomBarState_build__closure, A._AppBottomBarState_build__closure0, A._AppBottomBarState_build__closure1, A.AppBuilderState_rebuild_closure, A.AppHeader_build__value1, A.AppHeader_build__value2, A.BottomButtons_build_closure, A.BottomButtons_build_closure0, A._ChangeLayoutBannerState_build_closure, A._ChangeLayoutBannerState_build__closure0, A._ChangeLayoutBannerState_build_closure0, A.ConfirmEmail_build_closure, A.ConfirmEmailVM_fromStore_closure0, A.ConfirmEmailVM_fromStore_closure1, A.ConfirmEmailVM_fromStore_closure, A.CopyToClipboard_build_closure, A._DesktopSessionTimeoutState_initState__closure, A._DesktopSessionTimeoutState_build_closure, A._DesktopSessionTimeoutState_build___closure, A.MessageDialog_build_closure0, A.MessageDialog_build_closure1, A.ErrorDialog_build_closure, A.ErrorDialog_build_closure0, A.ErrorDialog_build_closure1, A._HealthCheckDialogState_runCheck_closure, A._HealthCheckDialogState_runCheck__closure, A._HealthCheckDialogState_clearCache_closure, A._HealthCheckDialogState_build_closure, A._HealthCheckDialogState_build_closure0, A._HealthCheckDialogState_build_closure1, A._HealthListTile_build_closure, A.MultiSelectListState_build__closure3, A.MultiSelectListState_build__closure2, A.MultiSelectListState_build___closure, A.MultiSelectListState_build__closure1, A.MultiSelectListState_build_closure6, A.MultiSelectListState_build__closure0, A.MultiSelectListState_build_closure7, A.MultiSelectListState_build__closure, A.MultiSelectListState_build_closure8, A.MultiSelectListState_build_closure9, A.DocumentGrid_build_closure, A.DocumentGrid_build_closure0, A.EditScaffold_build_closure7, A.EditScaffold_build_closure0, A.EditScaffold_build__closure0, A.EntityActionListTile_build_closure, A._EntityListTileState_build_closure0, A._EntityListTileState_build__closure0, A._EntityListTileState_build__closure, A._EntityListTileState_build_closure2, A._EntityListTileState_build_closure1, A._EntitiesListTileState_build__closure0, A._EntitiesListTileState_build__closure, A._EntitiesListTileState_build_closure, A._EntitiesListTileState_build_closure1, A._EntitiesListTileState_build_closure0, A._EntityDropdownState_build_closure, A._EntityDropdownState_build_closure0, A._EntityDropdownState_build_closure6, A._EntityDropdownState_build_closure7, A._EntityDropdownDialogState_build__headerRow, A._EntityDropdownDialogState_build__headerRow__closure0, A._EntityDropdownDialogState_build__headerRow_closure0, A._EntityDropdownDialogState_build__headerRow_closure1, A._EntityDropdownDialogState_build__createList, A.EntityAutocompleteListTile_build_closure, A.EntityHeader_build__value1, A.EntityHeader_build__value2, A.EntityTopFilter_build_closure0, A.EntityTopFilter_build_closure2, A.EntityTopFilter_build_closure1, A.EntityTopFilter_build_closure4, A.EntityTopFilter_build_closure3, A.EntityTopFilter_build_closure6, A.EntityTopFilterHeader_build_closure0, A.EntityTopFilterHeader_build_closure2, A.EntityTopFilterHeader_build_closure1, A.EntityTopFilterHeader_build__closure, A.EntityTopFilterHeader_build_closure5, A.BoolDropdownButton_build_closure2, A.BoolDropdownButton_build_closure4, A._FormColorPickerState__onChanged_closure, A._FormColorPickerState__selectColor_closure, A._FormColorPickerState__showPicker__closure0, A._FormColorPickerState__showPicker__closure1, A._FormColorPickerState_build_closure, A._CustomFieldState_build__closure, A._DatePickerState__onFoucsChanged_closure, A._DatePickerState_build_closure, A._DatePickerState_build__closure, A._DecoratedFormFieldState_build_closure, A._DecoratedFormFieldState_build__closure, A._DurationPickerState__onFoucsChanged_closure, A._DurationPickerState_build__closure, A._GrowableFormFieldState__onFoucsChanged_closure, A.LearnMoreUrl_build_closure, A._PasswordFormFieldState_build_closure, A._PasswordFormFieldState_build__closure, A.SaveCancelButtons_build__closure0, A.SaveCancelButtons_build__closure, A._TimePickerState__onFoucsChanged_closure, A._TimePickerState_build_closure, A._TimePickerState_build__closure1, A.HistoryDrawer_build__closure, A.HistoryDrawer_build_closure0, A._HistoryListTileState_build_closure1, A._HistoryListTileState_build_closure0, A._HistoryListTileState_build_closure, A._InvoiceEmailViewState__onChanged_closure, A._InvoiceEmailViewState__loadTemplate_closure, A._InvoiceEmailViewState__loadTemplate__closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure1, A._InvoiceEmailViewState__buildTemplateDropdown__closure, A._InvoiceEmailViewState__buildEdit_closure, A._TaxRateDropdownState_didChangeDependencies_closure1, A._TaxRateDropdownState_build_closure2, A._LinkTextRelatedEntityState_build__closure, A._LinkTextRelatedEntityState_build__closure0, A._LinkTextRelatedEntityState_build_closure0, A._LinkTextRelatedEntityState_build_closure, A.LinkTextSpan_closure, A._ListFilterState_onFocusChanged_closure, A._ListFilterState_build_closure, A._ListFilterState_build__closure5, A.ListScaffold_build_closure, A.ListScaffold_build_closure0, A.ListScaffold_build__closure0, A.ListScaffold_build_closure2, A.ListScaffold_build_closure3, A.ListScaffold_build_closure6, A.ListScaffold_build_closure4, A.ListScaffold_build__closure, A.ActivityListTile_build_closure, A.AppListTile_build_closure0, A.AppListTile_build_closure, A.FilterListTile_build__closure, A._LiveTextState_initState__closure, A.MainScreen_build__closure, A._MenuDrawerState_build__companyListItem__closure0, A._MenuDrawerState_build__companyListItem__closure, A._MenuDrawerState_build__companyListItem_closure0, A._MenuDrawerState_build__companyListItem_closure1, A._MenuDrawerState_build_closure4, A._MenuDrawerState_build_closure5, A._MenuDrawerState_build_closure6, A._MenuDrawerState_build_closure7, A._MenuDrawerState_build_closure9, A._MenuDrawerState_build_closure8, A._MenuDrawerState_build_closure10, A._MenuDrawerState_build_closure11, A._DrawerTileState_build_closure, A._DrawerTileState_build_closure0, A._DrawerTileState_build_closure1, A._DrawerTileState_build_closure2, A._DrawerTileState_build__closure0, A._DrawerTileState_build__closure, A.SidebarFooter_build_closure, A.SidebarFooter_build__closure4, A.SidebarFooter_build__closure5, A.SidebarFooter_build_closure0, A.SidebarFooter_build_closure1, A.SidebarFooter_build_closure2, A.SidebarFooter_build_closure3, A.SidebarFooter_build__closure2, A.SidebarFooter_build__closure0, A.SidebarFooter_build__closure1, A.SidebarFooter_build__closure3, A.SidebarFooter_build_closure4, A.SidebarFooter_build_closure5, A.SidebarFooter_build_closure6, A.SidebarFooter_build_closure7, A.SidebarFooter_build_closure8, A.SidebarFooter_build_closure9, A.SidebarFooterCollapsed_build_closure1, A._showConnectStripe_closure, A._showAbout__closure, A._showAbout__closure0, A._showAbout__closure2, A._showAbout__closure1, A._showAbout___closure1, A._showAbout__closure3, A._showAbout____closure, A._showAbout______closure, A._showAbout______closure0, A._showAbout______closure1, A._showAbout______closure2, A._showAbout____closure0, A._showAbout____closure1, A._showAbout____closure2, A._showAbout____closure3, A._showAbout____closure4, A._showAbout____closure5, A._showAbout____closure6, A._showAbout__closure4, A._showAbout__closure5, A._showAbout__closure6, A._showAbout__closure7, A._showAbout__closure8, A._showAbout__closure9, A._showAbout__closure10, A._showAbout__closure11, A._showAbout__closure12, A._ContactUsDialogState__sendMessage_closure, A._ContactUsDialogState__sendMessage__closure0, A._ContactUsDialogState__sendMessage__closure, A._ContactUsDialogState_build_closure, A._ContactUsDialogState_build_closure0, A._ContactUsDialogState_build__closure, A.MenuDrawerVM_fromStore__closure1, A._theState_closure, A._SelectRow_build_closure, A._DropDownMultiSelectState_initState__closure, A._DropDownMultiSelectState_build__closure, A._DropDownMultiSelectState_build___closure0, A._DropDownMultiSelectState_build___closure1, A.PortalLinks_build_closure, A.PortalLinks_build_closure0, A._SystemLogViewerState_build__closure, A._SystemLogViewerState_build___closure, A._SystemLogViewerState_build____closure, A.AppDataTable__buildHeadingCell_arrowWithPadding, A.AppDataTable_build_closure1, A.AppDataTable_build_closure2, A.AppDataTable_build_closure3, A.TableRowInkWell_getRectCallback_closure0, A._SortArrowState__rebuild_closure0, A.AppPaginatedDataTableState__handleDataSourceChanged_closure, A.AppPaginatedDataTableState_pageTo_closure, A.AppPaginatedDataTableState__getRows_closure, A.EntityDataTableSource_getRow_closure2, A.EntityDataTableSource_getRow_closure1, A.EntityDataTableSource_getRow_closure4, A.EntityDataTableSource_getRow__closure, A._EntityListState_build_closure7, A._EntityListState_build__closure0, A._EntityListState_build__closure4, A._EntityListState_build_closure8, A._EntityListState_build__closure10, A._VariableGrid_build___closure, A.ViewScaffold_build_closure, A.ViewScaffold_build_closure0, A.ViewScaffold_build_closure1, A.ViewScaffold_build_closure2, A.ViewScaffold_build_closure6, A.ViewScaffold_build_closure3, A.ViewScaffold_build__closure, A._LoginState__submitSignUpForm_closure, A._LoginState__submitSignUpForm__closure1, A._LoginState__submitSignUpForm__closure0, A._LoginState__submitSignUpForm__closure, A._LoginState__submitLoginForm_closure, A._LoginState__submitLoginForm__closure0, A._LoginState__submitLoginForm__closure, A._LoginState_build_closure, A._LoginState_build_closure0, A._LoginState_build__closure5, A._LoginState_build_closure1, A._LoginState_build__closure4, A._LoginState_build__closure3, A._LoginState_build__closure2, A._LoginState_build__closure1, A._LoginState_build_closure11, A._LoginState_build_closure12, A._LoginState_build_closure13, A._LoginState_build__closure0, A._LoginState_build_closure14, A._LoginState_build__closure, A._LoginState_build_closure15, A._LoginState_build_closure16, A.ClientListItem_build__closure2, A.ClientListItem_build__closure1, A.ClientListItem_build__closure5, A.ClientListItem_build__closure4, A.ClientListVM_fromStore_closure1, A._ClientPdfViewState_loadPdf_closure, A._ClientPdfViewState_loadPdf__closure0, A._ClientPdfViewState_loadPdf__closure, A._ClientPdfViewState_build__closure4, A._ClientPdfViewState_build__closure3, A._ClientPdfViewState_build__closure2, A._ClientPdfViewState_build__closure1, A._ClientPdfViewState_build_closure5, A._ClientPdfViewState_build_closure6, A._ClientPdfViewState_build__closure0, A._ClientPdfViewState_build__closure, A._ClientPdfViewState_build_closure9, A.ClientPresenter_getField_closure, A.ClientScreen_build_closure10, A.ClientScreen_build_closure9, A.ClientScreen_build_closure, A.ClientScreen_build_closure6, A._ClientEditState_build__closure, A.ClientEditBillingAddressState__onChanged_closure0, A.ClientEditBillingAddressState_build_closure0, A._ClientEditContactsState_build__closure, A._ClientEditContactsState_build_closure1, A.ContactEditDetailsState__onChanged_closure0, A.ContactEditDetailsState_build__closure0, A.ContactEditDetailsState_build_closure13, A.ContactEditDetailsState_build_closure14, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure, A.ClientEditDetailsState__onChanged_closure0, A.ClientEditFooter_build_closure, A.ClientEditNotesState__onChanged_closure0, A.ClientEditSettingsState__onChanged_closure0, A.ClientEditShippingAddressState__onChanged_closure0, A.ClientEditShippingAddressState_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure3, A.ClientEditVM_ClientEditVM$fromStore_closure2, A.ClientEditVM_ClientEditVM$fromStore__closure1, A._ClientViewState_build__closure, A._ClientViewState_build__closure0, A._ClientViewState_build__closure1, A._ClientViewState_build__closure2, A._ClientViewState_build__closure3, A._ClientViewState_build__closure4, A._ClientViewState_build_closure, A._ClientViewState_build___closure, A._ClientViewState_build___closure0, A._ClientViewState_build___closure1, A._ClientViewState_build___closure2, A._ClientViewState_build___closure3, A._ClientViewState_build___closure4, A._ClientViewDetailsState_build__buildDetailsList, A._ClientViewDetailsState_build__buildDetailsList__closure1, A._ClientViewDetailsState_build__buildDetailsList___closure0, A._ClientViewDetailsState_build__buildDetailsList__closure2, A._ClientViewDetailsState_build__buildDetailsList___closure, A._ClientViewDetailsState_build__buildDetailsList_closure0, A._ClientViewDetailsState_build__buildDetailsList__closure0, A._ClientViewDetailsState_build__buildDetailsList_closure1, A._ClientViewDetailsState_build__buildDetailsList__closure, A._ClientViewDetailsState_build__buildDetailsList_closure2, A._ClientViewDetailsState_build__buildDetailsList_closure3, A._ClientViewFullwidthState_build__closure, A._ClientViewFullwidthState_build__closure0, A._ClientViewFullwidthState_build__closure2, A._ClientViewFullwidthState_build__closure3, A._ClientViewFullwidthState_build__closure4, A._ClientViewFullwidthState_build__closure5, A._ClientViewLedgerState_build__closure0, A._ClientViewLedgerState_build__closure, A.ClientOverview_build_closure1, A.ClientOverview_build_closure2, A.ClientOverview_build_closure3, A._CompanyGatewayListState_build_closure1, A._CompanyGatewayListState_build__closure, A.CompanyGatewayListItem_build_closure0, A.CompanyGatewayScreen_build_closure11, A.CompanyGatewayScreen_build_closure10, A.CompanyGatewayScreen_build_closure1, A.CompanyGatewayScreen_build_closure3, A.CompanyGatewayScreen_build_closure9, A.CompanyGatewayScreenVM_fromStore__closure, A._CompanyGatewayEditState_build_closure1, A._CompanyGatewayEditState_build_closure2, A._CompanyGatewayEditState_build__closure, A.GatewayConfigSettings_build_closure, A._LimitEditorState__onTextChange_closure, A._LimitEditorState_build__closure0, A._LimitEditorState_build__closure, A._FeesEditorState__onChanged_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1, A._CompanyGatewayViewState_build_closure1, A._CompanyGatewayViewState_build_closure, A._CompanyGatewayViewState_build_closure0, A._CompanyGatewayOverview_build_closure, A._CompanyGatewayOverview_build_closure0, A._CompanyGatewayOverview_build_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure, A.CreditListItem_build__closure2, A.CreditListItem_build__closure1, A.CreditListItem_build__closure5, A.CreditListItem_build__closure4, A.CreditListVM_fromStore_closure1, A.CreditPresenter_getField_closure, A.CreditScreen_build_closure10, A.CreditScreen_build_closure9, A.CreditScreen_build_closure, A.CreditScreen_build_closure6, A._CreditEditState_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore__closure, A._DashboardChartState__onSelectionChanged_closure1, A._DashboardChartState_build__closure, A._DashboardChartState_build___closure, A._DashboardDateRangePickerState_build__closure6, A._DashboardDateRangePickerState_build__closure5, A._DashboardDateRangePickerState_build__closure4, A._DashboardDateRangePickerState_build__closure3, A._DashboardDateRangePickerState_build__closure2, A._DashboardDateRangePickerState_build__closure1, A._DashboardDateRangePickerState_build__closure0, A._DashboardDateRangePickerState_build_closure8, A.DashboardPanels__header__closure4, A.DashboardPanels__header__closure5, A.DashboardPanels__header__closure6, A.DashboardPanels__header____closure, A.DashboardPanels__header__closure7, A.DashboardPanels_build__runningTasks, A.DashboardPanels_build__runningTasks__closure2, A.DashboardPanels_build__runningTasks__closure1, A.DashboardPanels_build__runningTasks__closure0, A.DashboardPanels_build__closure, A.DashboardPanels_build__closure0, A.DashboardPanels_build__closure1, A._DashboardScreenState_build__closure3, A._DashboardScreenState_build_closure1, A._DashboardScreenState_build_closure2, A._DashboardScreenState_build__closure, A._DashboardScreenState_build_closure4, A._CustomTabBarView_build__closure, A._CustomTabBarView_build_closure0, A._CustomTabBarView_build_closure1, A._CustomTabBarView_build_closure2, A.DashboardVM_fromStore_closure6, A.SidebarScaffold_build_closure, A._DashboardSidebar_build_closure, A.DesignListItem_build_closure1, A.DesignListItem_build_closure0, A.DesignListVM_fromStore_closure1, A.DesignScreen_build_closure10, A.DesignScreen_build_closure9, A.DesignScreen_build_closure, A.DesignScreen_build_closure6, A._DesignEditState__onChanged_closure0, A._DesignEditState__onHtmlChanged_closure, A._DesignEditState__onHtmlChanged__closure, A._DesignEditState__loadPreview_closure, A._DesignEditState__loadPreview__closure, A._DesignEditState__setDraftMode_closure, A._DesignSettingsState_build_closure0, A.DesignEditVM_DesignEditVM$fromStore__closure, A._DesignViewState_build_closure7, A.DesignViewVM_DesignViewVM$fromStore_closure, A.DocumentListItem_build_closure1, A.DocumentListItem_build_closure0, A.DocumentListVM_fromStore_closure1, A.DocumentScreen_build_closure10, A.DocumentScreen_build_closure9, A.DocumentScreen_build_closure, A.DocumentScreen_build_closure6, A._DocumentEditState__onChanged_closure0, A._ExpenseEditState_build_closure, A.ExpenseEditDetailsState__onChanged_closure0, A.ExpenseEditNotesState__onChanged_closure0, A.ExpenseEditSettingsState__onChanged_closure0, A.ExpenseEditSettingsState_build__closure10, A.ExpenseEditSettingsState_build__closure2, A.ExpenseEditSettingsState_build_closure9, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3, A.ExpenseListItem_build__closure2, A.ExpenseListItem_build__closure1, A.ExpenseListItem_build__closure5, A.ExpenseListItem_build__closure4, A.ExpenseListVM_fromStore_closure1, A.ExpenseScreen_build_closure17, A.ExpenseScreen_build_closure16, A.ExpenseScreen_build_closure4, A.ExpenseScreen_build_closure12, A._ExpenseViewState_build__closure, A._ExpenseViewState_build__closure0, A._ExpenseViewState_build__closure1, A.ExpenseOverview_build__buildDetailsList, A._ExpenseCategoryEditState__onChanged_closure0, A._ExpenseCategoryEditState_build__closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure, A.ExpenseCategoryListItem_build_closure1, A.ExpenseCategoryListItem_build_closure0, A.ExpenseCategoryListVM_fromStore_closure1, A.ExpenseCategoryScreen_build_closure10, A.ExpenseCategoryScreen_build_closure9, A.ExpenseCategoryScreen_build_closure, A.ExpenseCategoryScreen_build_closure6, A._ExpenseCategoryViewState_build_closure, A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure, A._GroupEditState__onChanged_closure0, A._GroupEditState_build__closure, A.GroupEditVM_GroupEditVM$fromStore__closure, A.GroupListItem_build_closure1, A.GroupListItem_build_closure0, A.GroupListVM_fromStore_closure1, A.GroupSettingsScreen_build_closure6, A.GroupSettingsScreen_build_closure5, A.GroupSettingsScreen_build_closure, A.GroupSettingsScreen_build_closure2, A._GroupViewState_build_closure2, A._GroupViewState_build_closure, A.GroupViewVM_GroupViewVM$fromStore_closure, A._InvoiceEditState_build_closure, A.InvoiceEditContacts_build__closure0, A.InvoiceEditContacts_build__closure, A._ClientContactListTile_build_closure0, A._VendorContactListTile_build_closure0, A.InvoiceEditDesktopState__onChanged_closure0, A.InvoiceEditDesktopState_build_closure5, A.InvoiceEditDesktopState_build_closure6, A.InvoiceEditDesktopState_build__closure8, A.__PdfPreviewState_loadPdf_closure, A.__PdfPreviewState__loadPdf_closure, A.__PdfPreviewState__loadPdf__closure0, A.__PdfPreviewState__loadPdf__closure, A.__PdfPreviewState_build_closure, A.__PdfPreviewState_build__closure0, A.__PdfPreviewState_build_closure0, A.__PdfPreviewState_build__closure, A.InvoiceEditDetailsState__onChanged_closure0, A.InvoiceEditFooter_build_closure, A._InvoiceEditItemsState_build_closure0, A.ItemEditDetailsState__onTextChanged_closure, A.ItemEditDetailsState_build_closure, A.ItemEditDetailsState_build_closure0, A.ItemEditDetailsState_build__closure1, A.ItemEditDetailsState_build__closure0, A.ItemEditDetailsState_build__closure, A._InvoiceEditItemsDesktopState__updateTable_closure, A._InvoiceEditItemsDesktopState__onChanged_closure, A._InvoiceEditItemsDesktopState_build_closure1, A._InvoiceEditItemsDesktopState_build__closure31, A._InvoiceEditItemsDesktopState_build_closure6, A._InvoiceEditItemsDesktopState_build__closure28, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0, A.InvoiceEditNotesState__onChanged_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure, A.InvoiceEditPDFState_didChangeDependencies__closure0, A.InvoiceEditPDFState_didChangeDependencies__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0, A._InvoiceItemSelectorState__toggleEntity_closure, A._InvoiceItemSelectorState__updateClientId_closure0, A._InvoiceItemSelectorState_build__productList, A._InvoiceItemSelectorState_build__productList__closure0, A._InvoiceItemSelectorState_build__taskList, A._InvoiceItemSelectorState_build__taskList__closure0, A._InvoiceItemSelectorState_build__expenseList, A._InvoiceItemSelectorState_build__expenseList__closure0, A._InvoiceItemSelectorState_build__closure0, A._InvoiceItemSelectorState_build_closure3, A._InvoiceItemSelectorState_build__closure, A._InvoiceItemSelectorState_build_closure4, A._InvoiceItemSelectorState_build_closure5, A.InvoiceListItem_build__closure2, A.InvoiceListItem_build__closure1, A.InvoiceListItem_build__closure5, A.InvoiceListItem_build__closure4, A.InvoiceListVM_fromStore_closure1, A._InvoicePdfViewState_loadPdf_closure, A._InvoicePdfViewState_loadPdf__closure, A._InvoicePdfViewState_build__closure, A._InvoicePdfViewState_build_closure0, A._InvoicePdfViewState_build_closure1, A._InvoicePdfViewState_build_closure2, A.InvoicePresenter_getField_closure, A.InvoiceScreen_build_closure19, A.InvoiceScreen_build_closure18, A.InvoiceScreen_build_closure6, A.InvoiceScreen_build_closure14, A._InvoiceViewState_build__closure5, A._InvoiceViewState_build__closure, A._InvoiceViewState_build__closure0, A._InvoiceViewState_build__closure1, A._InvoiceViewState_build__closure2, A._InvoiceViewState_build__closure3, A._InvoiceViewState_build__closure4, A._InvitationListTile_build_closure0, A._InvitationListTile_build_closure2, A._InvoiceViewHistoryState_build__closure, A.InvoiceOverview_build___closure, A._PaymentEditState__onChanged_closure0, A._PaymentEditState_build__closure1, A._PaymentEditState_build_onSavePressed_closure, A._PaymentEditState_build_closure14, A._PaymentEditState_build_closure15, A._PaymentableEditorState_build_closure7, A.PaymentEditVM_PaymentEditVM$fromStore__closure, A.PaymentListItem_build__closure2, A.PaymentListItem_build__closure1, A.PaymentListItem_build__closure5, A.PaymentListItem_build__closure4, A.PaymentListVM_fromStore_closure1, A.PaymentScreen_build_closure10, A.PaymentScreen_build_closure9, A.PaymentScreen_build_closure, A.PaymentScreen_build_closure6, A._PaymentRefundState__onChanged_closure, A._PaymentRefundState_build_onSavePressed_closure, A._PaymentRefundState_build_closure6, A._PaymentRefundState_build_closure7, A._PaymentableEditorState_build__closure2, A._PaymentableEditorState_build_closure12, A._PaymentViewState_build__closure2, A._PaymentViewState_build__closure, A._PaymentViewState_build__closure0, A._PaymentViewState_build__closure1, A._PaymentTermEditState__onChanged_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure, A.PaymentTermListItem_build_closure1, A.PaymentTermListItem_build_closure0, A.PaymentTermListVM_fromStore_closure1, A.PaymentTermScreen_build_closure10, A.PaymentTermScreen_build_closure9, A.PaymentTermScreen_build_closure, A.PaymentTermScreen_build_closure6, A._PaymentTermViewState_build_closure, A.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure, A._ProductEditState__onChanged_closure0, A._ProductEditState_build__closure, A.ProductEditVM_ProductEditVM$fromStore__closure, A.ProductListItem_build__closure2, A.ProductListItem_build__closure1, A.ProductListItem_build__closure5, A.ProductListItem_build__closure4, A.ProductListVM_fromStore_closure1, A.ProductScreen_build_closure10, A.ProductScreen_build_closure9, A.ProductScreen_build_closure, A.ProductScreen_build_closure6, A._ProductViewState_build__closure, A._ProductViewState_build__closure0, A._ProjectEditState__onChanged_closure0, A._ProjectEditState_build__closure, A.ProjectEditVM_ProjectEditVM$fromStore__closure1, A.ProjectListItem_build__closure2, A.ProjectListItem_build__closure1, A.ProjectListItem_build__closure5, A.ProjectListItem_build__closure4, A.ProjectListVM_fromStore_closure1, A.ProjectScreen_build_closure10, A.ProjectScreen_build_closure9, A.ProjectScreen_build_closure, A.ProjectScreen_build_closure6, A._ProjectViewState_build__closure, A._ProjectViewState_build__closure0, A._ProjectViewState_build_closure, A._ProjectOverviewState_initState__closure, A._ProjectOverviewState_build__buildView, A._ProjectOverviewState_build_closure, A._PurchaseOrderEditState_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure, A.PurchaseOrderListItem_build__closure2, A.PurchaseOrderListItem_build__closure1, A.PurchaseOrderListItem_build__closure5, A.PurchaseOrderListItem_build__closure4, A.PurchaseOrderListVM_fromStore_closure1, A.PurchaseOrderPresenter_getField_closure, A.PurchaseOrderScreen_build_closure16, A.PurchaseOrderScreen_build_closure15, A.PurchaseOrderScreen_build_closure3, A.PurchaseOrderScreen_build_closure11, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore__closure, A._QuoteEditState_build_closure, A.QuoteListItem_build__closure2, A.QuoteListItem_build__closure1, A.QuoteListItem_build__closure5, A.QuoteListItem_build__closure4, A.QuoteListVM_fromStore_closure1, A.QuotePresenter_getField_closure, A.QuoteScreen_build_closure17, A.QuoteScreen_build_closure16, A.QuoteScreen_build_closure4, A.QuoteScreen_build_closure12, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3, A.RecurringExpenseListItem_build__closure2, A.RecurringExpenseListItem_build__closure1, A.RecurringExpenseListItem_build__closure5, A.RecurringExpenseListItem_build__closure4, A.RecurringExpenseListVM_fromStore_closure1, A.RecurringExpenseScreen_build_closure10, A.RecurringExpenseScreen_build_closure9, A.RecurringExpenseScreen_build_closure, A.RecurringExpenseScreen_build_closure6, A._RecurringInvoiceEditState_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure, A.RecurringInvoiceListItem_build__closure2, A.RecurringInvoiceListItem_build__closure1, A.RecurringInvoiceListItem_build__closure5, A.RecurringInvoiceListItem_build__closure4, A.RecurringInvoiceListVM_fromStore_closure1, A.RecurringInvoiceScreen_build_closure17, A.RecurringInvoiceScreen_build_closure16, A.RecurringInvoiceScreen_build_closure4, A.RecurringInvoiceScreen_build_closure12, A.ReportsScreen_build__closure5, A.ReportsScreen_build_closure26, A.ReportsScreen_build__closure2, A.ReportsScreen_build_closure20, A.ReportsScreen_build__closure0, A.ReportsScreen_build_closure23, A.ReportsScreen_build__closure, A.ReportsScreen_build_closure25, A._ReportDataTableState_didChangeDependencies_closure, A.ReportResult_tableColumns_closure, A.ReportResult_tableFilters_closure2, A.ReportResult_tableFilters__closure3, A.ReportResult_tableFilters___closure, A.ReportResult_tableRow_closure, A.ReportResult_tableRow_closure0, A.ReportsScreenVM_fromStore__closure, A._AccountManagementState__onChanged_closure0, A._AccountOverview_build__getDataStats, A._AccountOverview_build_closure, A._AccountOverview_build_closure0, A._AccountOverview_build_closure5, A._AccountOverview_build_closure6, A._AccountOverview_build_closure7, A._AccountOverview_build_closure8, A._AccountOverview_build_closure9, A._AccountOverview_build_closure10, A._AccountOverview_build_closure11, A._AccountOverview_build_closure12, A.AccountManagementVM_fromStore__closure2, A.AccountManagementVM_fromStore_closure4, A._ClientPortalState__validateSubdomain_closure, A._ClientPortalState__validateSubdomain_closure0, A._ClientPortalState__validateSubdomain__closure, A._ClientPortalState__validateSubdomain__closure0, A._ClientPortalState__validateSubdomain___closure0, A._ClientPortalState__validateSubdomain___closure, A._ClientPortalState__onChanged_closure, A._ClientPortalState__onSavePressed_closure, A._ClientPortalState_build_closure3, A._ClientPortalState_build_closure4, A._ClientPortalState_build_closure9, A._ClientPortalState_build_closure11, A.ClientPortalVM_fromStore__closure, A._CompanyDetailsState__onSettingsChanged_closure0, A._CompanyDetailsState_build__closure10, A._CompanyDetailsState_build__closure11, A._CompanyDetailsState_build_closure12, A.CompanyDetailsVM_fromStore__closure5, A._CustomFormFieldState_build_closure0, A._CustomFormFieldState_build__closure, A.CustomFieldsVM_fromStore__closure, A._DeviceSettingsState_build__closure6, A._DeviceSettingsState_build__closure5, A._DeviceSettingsState_build_closure14, A._DeviceSettingsState_build_closure20, A._DeviceSettingsState_build_closure21, A.DeviceSettingsVM_fromStore_closure18, A._EmailSettingsState_build_closure0, A._EmailSettingsState_build_closure3, A.EmailSettingsVM_fromStore__closure, A._ExpenseSettingsState_build_closure4, A.ExpenseSettingsVM_fromStore__closure, A._GeneratedNumbersState__onChanged_closure, A._EntityNumberSettingsState__onChanged_closure, A._EntityNumberSettingsState_build_closure, A.HelpPanel_build__closure, A.GeneratedNumbersVM_fromStore__closure, A._ImportExportState_build__closure5, A._ImportExportState_build__closure6, A._ImportExportState_build_closure1, A._ImportExportState_build__closure4, A._ImportExportState_build__closure3, A._ImportExportState_build__closure2, A._ImportExportState_build_closure6, A._ImportExportState_build__closure, A._ImportExportState_build___closure0, A._ImportExportState_build___closure, A._FileImportState_uploadJsonFile_closure, A._FileImportState_uploadJsonFile__closure0, A._FileImportState_uploadJsonFile__closure, A._FileImportState_uploadFile_closure, A._FileImportState_uploadFile__closure0, A._FileImportState_uploadFile__closure, A._FileImportState_build_closure1, A._FileImportState_build__closure1, A._FileImportState_build__closure0, A._FileImportState_build__closure, A._FileImportState_build_closure4, A.__FileMapperState_build__closure3, A.__FileMapperState_build__closure2, A.__FileMapperState_build_closure1, A.__FileMapperState_build_closure2, A.__FileMapperState_build__closure, A.__FileMapperState_build___closure0, A.__FileMapperState_build___closure, A._InvoiceDesignState_build_closure20, A._InvoiceDesignState_build__closure19, A._InvoiceDesignState_build__closure18, A._InvoiceDesignState_build__closure16, A._InvoiceDesignState_build__closure15, A._InvoiceDesignState_build__closure13, A._InvoiceDesignState_build__closure12, A._InvoiceDesignState_build__closure10, A._InvoiceDesignState_build__closure9, A._InvoiceDesignState_build_closure7, A.InvoiceDesignVM_fromStore__closure, A._LocalizationSettingsState_build_closure12, A._LocalizationSettingsState_build__closure4, A._LocalizationSettingsState_build_closure13, A._LocalizationSettingsState_build_closure15, A._AddCompanyDialogState_build_closure, A._AddCompanyDialogState_build_closure0, A.LocalizationSettingsVM_fromStore__closure, A._PaymentSettingsState_build_closure4, A.PaymentSettingsVM_fromStore__closure, A._ProductSettingsState__onChanged_closure0, A.ProductSettingsVM_fromStore__closure, A.SettingsListTile_build_closure, A.SettingsSearch_build_closure, A.SettingsListVM_fromStore_closure2, A._SettingsWizardState__validateSubdomain_closure, A._SettingsWizardState__validateSubdomain__closure, A._SettingsWizardState__validateSubdomain__closure0, A._SettingsWizardState__validateSubdomain___closure0, A._SettingsWizardState__validateSubdomain___closure, A._SettingsWizardState__onSavePressed_closure, A._SettingsWizardState__onSavePressed____closure, A._SettingsWizardState__onSavePressed___closure, A._SettingsWizardState__onSavePressed__closure1, A._SettingsWizardState_build__closure1, A._SettingsWizardState_build__closure0, A._SettingsWizardState_build_closure9, A._TaskSettingsState_build_closure8, A.TaskSettingsVM_fromStore__closure, A._TaxSettingsState_build_closure5, A.TaxSettingsVM_fromStore__closure, A._TemplatesAndRemindersState__loadTemplate_closure, A._TemplatesAndRemindersState__onTextChanged_closure, A._TemplatesAndRemindersState__onTabChanged_closure, A._TemplatesAndRemindersState__renderTemplate_closure, A._TemplatesAndRemindersState__renderTemplate__closure, A._TemplatesAndRemindersState_build__closure4, A._ReminderSettingsState__onTextChanged_closure, A.TemplatesAndRemindersVM_fromStore__closure, A.TemplatesAndRemindersVM_fromStore___closure, A.TemplatesAndRemindersVM_fromStore_____closure, A._UserDetailsState__onChanged_closure0, A._UserDetailsState__onSavePressed_closure, A._UserDetailsState_build_closure, A._UserDetailsState_build_closure0, A._UserDetailsState_build_closure1, A._UserDetailsState_build_closure2, A._UserDetailsState_build_closure3, A._UserDetailsState_build_closure8, A._UserDetailsState_build_closure9, A._EnableTwoFactorState_initState__closure, A._EnableTwoFactorState__onSavePressed_closure, A._EnableTwoFactorState__onSavePressed_closure0, A._EnableTwoFactorState__onSavePressed__closure0, A._EnableTwoFactorState__onSavePressed__closure, A._EnableTwoFactorState_build_closure2, A._EnableTwoFactorState_build_closure3, A._EnableTwoFactorState_build_closure4, A.__SmsVerificationState__sendCode_closure, A.__SmsVerificationState__sendCode__closure0, A.__SmsVerificationState__sendCode__closure, A.__SmsVerificationState__verifyCode_closure, A.__SmsVerificationState__verifyCode_closure0, A.__SmsVerificationState__verifyCode__closure0, A.__SmsVerificationState__verifyCode__closure, A.__SmsVerificationState_build_closure1, A.__SmsVerificationState_build_closure2, A.__SmsVerificationState_build_closure3, A.UserDetailsVM_fromStore__closure7, A.WorkflowSettingsVM_fromStore__closure, A._SubscriptionEditState__onChanged_closure0, A._SubscriptionEditState_build__closure17, A._SubscriptionEditState_build__closure14, A._SubscriptionEditState_build__closure2, A._SubscriptionEditState_build__closure1, A._SubscriptionEditState_build_closure22, A._SubscriptionEditState_build__closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure, A.SubscriptionListItem_build_closure1, A.SubscriptionListItem_build_closure0, A.SubscriptionListVM_fromStore_closure1, A.SubscriptionScreen_build_closure10, A.SubscriptionScreen_build_closure9, A.SubscriptionScreen_build_closure, A.SubscriptionScreen_build_closure6, A._SubscriptionViewState_build_closure1, A._SubscriptionViewState_build_closure0, A._SubscriptionViewState_build_closure, A.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure, A._UpdateDialogState_build_closure, A._UpdateDialogState_build_closure0, A._UpdateDialogState_build_closure1, A._UpdateDialogState_build_closure2, A._UpdateDialogState_build_closure3, A._UpdateDialogState_build_closure4, A._UpdateDialogState_updateApp__closure, A._UpdateDialogState_updateApp___closure0, A._UpdateDialogState_updateApp___closure, A._TaskEditState_build_closure, A._TaskEditState_build__closure, A._BottomBar_build_closure, A._BottomBar_build_closure0, A._TaskEditDesktopState__onChanged_closure0, A._TaskEditDesktopState_build__closure4, A._TaskEditDesktopState_build__closure3, A._TaskEditDesktopState_build__closure2, A._TaskEditDesktopState_build__closure1, A._TaskEditDesktopState_build__closure0, A._TaskEditDesktopState_build_closure12, A._TaskEditDesktopState_build__closure, A._TaskEditDetailsState__onChanged_closure0, A.TimeEditDetailsState_build__closure3, A.TimeEditDetailsState_build__closure2, A.TimeEditDetailsState_build__closure1, A.TimeEditDetailsState_build__closure0, A.TimeEditDetailsState_build__closure, A.TimeEditDetailsState_build_closure4, A.TimeEditDetailsState_build_closure5, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2, A.TaskEditVM_TaskEditVM$fromStore_closure1, A.TaskEditVM_TaskEditVM$fromStore__closure0, A._KanbanTaskCardState_build_closure1, A._KanbanTaskCardState_build__closure3, A._KanbanTaskCardState_build_closure0, A._KanbanTaskCardState_build___closure, A._KanbanTaskCardState_build__closure, A._KanbanTaskCardState_build__closure0, A._KanbanTaskCardState_build_closure2, A._KanbanTaskCardState_build_closure3, A._KanbanTaskCardState_build_closure4, A._KanbanTaskCardState_build_closure5, A._KanbanTaskCardState_build_closure8, A._KanbanTaskCardState_build__closure1, A._KanbanStatusCardState__onSavePressed__closure, A._KanbanStatusCardState_build_closure1, A._KanbanStatusCardState_build__closure0, A._KanbanStatusCardState_build_closure2, A._KanbanStatusCardState_build__closure, A.KanbanViewState_build___closure, A.KanbanViewState_build__closure0, A.KanbanViewState_build___closure5, A.KanbanViewState_build__closure2, A.KanbanViewState_build___closure4, A.KanbanViewState_build___closure0, A.KanbanViewState_build____closure2, A.KanbanViewState_build____closure, A.KanbanViewState_build____closure0, A.KanbanViewState_build____closure1, A.TaskListItem_build_closure1, A.TaskListItem_build_closure, A.TaskListItem_build__closure2, A.TaskListItem_build__closure1, A.TaskListItem_build__closure5, A.TaskListItem_build__closure4, A.TaskListVM_fromStore_closure1, A.TaskScreen_build_closure17, A.TaskScreen_build_closure16, A.TaskScreen_build_closure2, A.TaskScreen_build_closure3, A.TaskScreen_build_closure4, A.TaskScreen_build_closure12, A.TaskTimeListTile_build_closure0, A.TaskTimeListTile_build_closure, A._TaskViewState_build__closure, A._TaskViewState_build__closure0, A._TaskOverviewState_initState__closure, A._TaskOverviewState_build__buildView, A._TaskOverviewState_build_closure, A._TaskStatusEditState__onChanged_closure0, A._TaskStatusEditState_build__closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure, A.TaskStatusListItem_build_closure1, A.TaskStatusListItem_build_closure0, A.TaskStatusListVM_fromStore_closure1, A.TaskStatusScreen_build_closure10, A.TaskStatusScreen_build_closure9, A.TaskStatusScreen_build_closure, A.TaskStatusScreen_build_closure6, A._TaskStatusViewState_build_closure, A.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure, A._TaxRateEditState__onChanged_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore__closure, A.TaxRateListItem_build_closure1, A.TaxRateListItem_build_closure0, A.TaxRateListVM_fromStore_closure1, A.TaxRateSettingsScreen_build_closure6, A.TaxRateSettingsScreen_build_closure5, A.TaxRateSettingsScreen_build_closure, A.TaxRateSettingsScreen_build_closure2, A._TaxRateViewState_build_closure, A.TaxRateViewVM_TaxRateViewVM$fromStore_closure, A._TokenEditState__onChanged_closure0, A._TokenEditState_build__closure, A.TokenEditVM_TokenEditVM$fromStore__closure, A.TokenListItem_build_closure1, A.TokenListItem_build_closure0, A.TokenListVM_fromStore_closure1, A.TokenScreen_build_closure10, A.TokenScreen_build_closure9, A.TokenScreen_build_closure, A.TokenScreen_build_closure6, A._TokenViewState_build_closure, A._TokenListTile_build_closure, A.TokenViewVM_TokenViewVM$fromStore_closure, A._UserEditState__onChanged_closure0, A._UserEditState_build__closure, A._UserEditState_build_closure4, A._UserEditState_build_closure6, A._UserEditState_build_closure8, A._UserEditState_build_closure10, A._UserEditState_build__closure0, A._UserEditState_build__closure1, A._UserEditState_build__closure3, A._UserEditState_build__closure5, A.UserEditVM_UserEditVM$fromStore__closure, A.UserListItem_build_closure1, A.UserListItem_build_closure0, A.UserListBuilder_build__closure_showDialog, A.UserListBuilder_build___closure, A.UserListVM_fromStore_closure1, A.UserScreen_build_closure10, A.UserScreen_build_closure9, A.UserScreen_build_closure, A.UserScreen_build_closure6, A.UserView_build_closure, A.UserViewVM_UserViewVM$fromStore_closure, A.VendorEditAddressState__onChanged_closure0, A._VendorEditContactsState_build__closure, A._VendorEditContactsState_build_closure1, A.VendorContactEditDetailsState__onChanged_closure0, A.VendorContactEditDetailsState_build_closure4, A.VendorContactEditDetailsState_build_closure5, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1, A.VendorEditDetailsState__onChanged_closure0, A.VendorEditFooter_build_closure, A.VendorEditNotesState__onChanged_closure0, A.VendorEditVM_VendorEditVM$fromStore__closure, A.VendorListItem_build__closure2, A.VendorListItem_build__closure1, A.VendorListItem_build__closure5, A.VendorListItem_build__closure4, A.VendorListVM_fromStore_closure1, A.VendorScreen_build_closure10, A.VendorScreen_build_closure9, A.VendorScreen_build_closure, A.VendorScreen_build_closure6, A._VendorViewState_build__closure, A._VendorViewState_build__closure0, A._VendorViewState_build__closure1, A._VendorViewState_build_closure, A._VendorViewDetailsState_build__buildDetailsList, A._VendorViewDetailsState_build__buildDetailsList__closure1, A._VendorViewDetailsState_build__buildDetailsList___closure0, A._VendorViewDetailsState_build__buildDetailsList__closure2, A._VendorViewDetailsState_build__buildDetailsList___closure, A._VendorViewDetailsState_build__buildDetailsList_closure0, A._VendorViewDetailsState_build__buildDetailsList__closure0, A._VendorViewDetailsState_build__buildDetailsList_closure1, A._VendorViewDetailsState_build__buildDetailsList__closure, A._VendorViewDetailsState_build__buildDetailsList_closure2, A._VendorViewFullwidthState_build__closure, A._VendorViewFullwidthState_build__closure1, A._WebhookEditState__onChanged_closure0, A._WebhookEditState_build___closure2, A._WebhookEditState_build___closure1, A._WebhookEditState_build__closure5, A._WebhookEditState_build___closure, A.WebhookEditVM_WebhookEditVM$fromStore__closure, A._WebhookViewState_build_closure, A.TargetListTile_build_closure, A.WebhookViewVM_WebhookViewVM$fromStore_closure, A.WebhookListItem_build_closure1, A.WebhookListItem_build_closure0, A.WebhookListVM_fromStore_closure1, A.WebhookScreen_build_closure10, A.WebhookScreen_build_closure9, A.WebhookScreen_build_closure, A.WebhookScreen_build_closure6, A.Debouncer_run_closure, A.PersistUIDebouncer_run_closure, A.confirmCallback_closure__onPressed, A.confirmCallback__closure2, A.confirmCallback__closure3, A.passwordCallback_closure, A._PasswordConfirmationState_build_closure, A._PasswordConfirmationState_build__closure, A._PasswordConfirmationState_build_closure2, A._PasswordConfirmationState_build_closure3, A._FieldConfirmationState_build_closure2, A._FieldConfirmationState_build_closure3, A.cloneToDialog__closure, A.cloneToDialog__closure0, A.cloneToDialog__closure1, A.cloneToDialog__closure2, A.cloneToDialog__closure3, A.cloneToDialog__closure4, A.changeTaskStatusDialog___closure, A.changeTaskStatusDialog__closure0, A.addToInvoiceDialog___closure, A.EnumUtils_fromString_closure0, A._ExampleEditorState_initState_closure, A._EditorToolbarState__onLinkPressed_closure0, A._EditorToolbarState__applyLink_closure, A._EditorToolbarState__buildUrlField_closure0, A._EditorToolbarState__buildUrlField__closure, A.Logger_Logger_closure, A.ListSyntax_parse_endItem, A.ParagraphSyntax__parseReflinkDefinition_closure, A.InlineParser__linkOrImage_closure2, A.InlineParser__processEmphasis_closure, A.InlineParser__processEmphasis_closure1, A.PublicClientApplication_loginPopup_closure, A.PublicClientApplication_logoutPopup_closure, A._FadeWidgetState_animationStatusChange_closure, A.PrintingPlugin_layoutPdf__closure, A.PdfPreviewAction_build_closure, A.PdfPreviewCustomState_didChangeDependencies__closure, A.PdfPreviewCustomState__createPreview__closure, A.PdfPreviewCustomState__createPreview___closure, A.PdfPreviewCustomState__zoomPreview_closure, A.PdfPreviewCustomState__zoomPreview__closure, A.PdfPreviewCustomState_build_closure, A._PdfPreviewState_initState_closure, A._PdfPreviewState_initState__closure, A._PdfPreviewState_didUpdateWidget_closure, A._PdfPreviewState_didChangeDependencies__closure, A.PdfPreviewRaster_raster_closure, A.PdfPreviewRaster__raster_closure, A.PdfPreviewRaster__raster_closure0, A.PdfPreviewRaster__raster_closure1, A.PdfPreviewRaster__raster_closure2, A.LoggingMiddleware_call_closure, A.RoundedLoadingButtonState_initState_closure, A.RoundedLoadingButtonState_initState__closure1, A.RoundedLoadingButtonState_initState_closure0, A.RoundedLoadingButtonState_initState__closure0, A.RoundedLoadingButtonState_initState_closure2, A.RoundedLoadingButtonState_initState__closure, A.BehaviorSubject__deferStream_closure, A.Subject_addStream_complete, A.Subject_addStream_closure0, A.StartWithStreamTransformer_bind_closure, A.StartWithErrorStreamTransformer_bind_closure, A._forwardMulti__closure, A._forward_closure, A._forward_closure0, A._forward__listenToUpstream_closure, A._forward__listenToUpstream_closure0, A._forward_closure1, A.Highlighter_closure, A.Highlighter__writeFileStart_closure, A.Highlighter__writeMultilineHighlights_closure, A.Highlighter__writeMultilineHighlights_closure0, A.Highlighter__writeMultilineHighlights_closure1, A.Highlighter__writeMultilineHighlights_closure2, A.Highlighter__writeMultilineHighlights__closure, A.Highlighter__writeMultilineHighlights__closure0, A.Highlighter__writeHighlightedText_closure, A.Highlighter__writeIndicator_closure, A.Highlighter__writeIndicator_closure0, A.Highlighter__writeIndicator_closure1, A.Highlighter__writeSidebar_closure, A._Highlight_closure, A.InjectedImp_initialize__closure, A.ReactiveModelBase__setInitialStateCreator_closure, A.ReactiveModelBase_setStateFn_closure, A.ReactiveModelBase_setStateFn__closure, A.ReactiveModelBase_setStateFn__closure1, A.ReactiveModelBase__streamSubscription_closure0, A.ReactiveModelListener_addListenerForRebuild_closure0, A.ReactiveModelListener_addListenerForRebuild_closure, A.ReactiveModelListener_addCleaner_closure, A._StateBuilderBaseState_initState_closure, A._StateBuilderBaseState_initState__closure, A.OnBuilder_build_closure, A.OnBuilder_build_closure0, A.OnBuilder_build_closure1, A.SideEffects_closure, A.OnX_listenTo___closure0, A.RM_inject_closure, A.addToInjectedModels_closure, A.addToContextSet_closure, A.DocumentComposer_closure, A._DocumentMouseInteractorState__onPanUpdate_closure, A._DocumentMouseInteractorState__onDragEnd_closure, A._DocumentMouseInteractorState__buildGestureInput_closure, A._DocumentMouseInteractorState__buildGestureInput_closure1, A._AndroidDocumentTouchInteractorState_initState_closure, A._AndroidDocumentTouchInteractorState_initState_closure0, A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure, A._AndroidDocumentTouchInteractorState__positionCollapsedHandle_closure, A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure, A._AndroidDocumentTouchInteractorState__positionExpandedHandles_closure0, A._AndroidDocumentTouchInteractorState__buildGestureInput_closure, A._AndroidDocumentTouchEditingControlsState__onCollapsedPanStart_closure, A._AndroidDocumentTouchEditingControlsState__onExpandedHandleDragStart_closure, A._AndroidDocumentTouchEditingControlsState__onPanUpdate_closure, A._AndroidDocumentTouchEditingControlsState__onHandleDragEnd_closure, A._IOSDocumentTouchInteractorState_initState_closure, A._IOSDocumentTouchInteractorState_initState_closure0, A._IOSDocumentTouchInteractorState_didChangeDependencies__closure, A._IOSDocumentTouchInteractorState_didChangeMetrics__closure, A._IOSDocumentTouchInteractorState__onTapUp_closure, A._IOSDocumentTouchInteractorState__onTapTimeout_closure, A._IOSDocumentTouchInteractorState__positionCollapsedHandle_closure, A._IOSDocumentTouchInteractorState__buildGestureInput_closure, A._IOSDocumentTouchInteractorState__buildGestureInput_closure1, A._DocumentImeInteractorState_updateEditingValue_closure, A._SingleColumnDocumentLayoutState__onViewModelChange_closure, A._PresenterComponentBuilderState__onViewModelChange_closure, A.SingleColumnLayoutPresenter__assemblePipeline_closure, A._SuperEditorState__createEditContext_closure, A._SuperEditorState__createEditContext_closure0, A._SuperEditorState__buildGestureSystem_closure, A._SuperEditorState__buildGestureSystem_closure0, A.ToggleTextAttributionsCommand_execute_closure, A._MultiListenableBuilderState__onListenableChange_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure0, A.TapSequenceGestureRecognizer__checkUp_closure, A.TapSequenceGestureRecognizer__checkUp_closure0, A.TapSequenceGestureRecognizer__checkUp_closure1, A.main_closure0, A.main_closure]); _inheritMany(A.Closure2Args, [A.AppBootstrap_prepareEngineInitializer__closure0, A.AppBootstrap_prepareEngineInitializer__closure, A.AppBootstrap__prepareAppRunner__closure, A.HtmlViewEmbedder_submitFrame_closure1, A.downloadCanvasKit_closure, A.IntervalTree_IntervalTree$createFromRanges_closure, A.IntervalTree_IntervalTree$createFromRanges_closure0, A.Surface_acquireFrame_closure, A.commitScene_closure, A.PersistedContainerSurface__matchChildren_closure, A.initializeEngineServices_closure0, A.KeyboardConverter__handleEvent_closure2, A.KeyboardConverter__handleEvent__closure, A.EnginePlatformDispatcher__addFontSizeObserver_closure, A.StandardMessageCodec_writeValue_closure0, A.saveForms_closure, A.HybridTextEditing__startEditing_closure0, A._HeaderValue_toString_closure, A._CastListBase_sort_closure, A.CastMap_forEach_closure, A.ConstantMap_map_closure, A.Primitives_functionNoSuchMethod_closure, A.JsLinkedHashMap_addAll_closure, A.initHooks_closure0, A._awaitOnObject_closure0, A._wrapJsFunctionForAsync_closure, A.Future_wait_handleError, A._Future__chainForeignFuture_closure0, A._Future_timeout_closure1, A.Stream_Stream$fromFuture_closure0, A._AddStreamState_makeErrorHandler_closure, A._cancelAndErrorClosure_closure, A._RootZone_bindBinaryCallbackGuarded_closure, A._HashMap_addAll_closure, A.HashMap_HashMap$from_closure, A.LinkedHashMap_LinkedHashMap$from_closure, A.MapBase_mapToString_closure, A.SplayTreeSet__copyNode_copyChildren, A._JsonStringifier_writeMap_closure, A._JsonPrettyPrintMixin_writeMap_closure, A._symbolMapToStringMap_closure, A.NoSuchMethodError_toString_closure, A._BigIntImpl_hashCode_combine, A.Uri_splitQueryString_closure, A.Uri__parseIPv4Address_error, A.Uri_parseIPv6Address_error, A.Uri_parseIPv6Address_parseHex, A._Uri__makeQuery_writeParameter, A._Uri__makeQuery_closure, A._createTables_build, A.MidiInputMap_keys_closure, A.MidiInputMap_values_closure, A.MidiOutputMap_keys_closure, A.MidiOutputMap_values_closure, A.MutationObserver_observe_override, A.RtcStatsReport_keys_closure, A.RtcStatsReport_values_closure, A.Storage_keys_closure, A.Storage_values_closure, A._DataAttributeMap_forEach_closure, A._DataAttributeMap_keys_closure, A._DataAttributeMap_values_closure, A._ValidatingTreeSanitizer_sanitizeTree_walk, A._StructuredClone_walk_closure, A._StructuredClone_walk_closure0, A._AcceptStructuredClone_walk_closure, A.convertDartToNative_Dictionary_closure, A._FileStream__readBlock_closure0, A._FileStream__start_onOpenFile_closure, A._FileStream__start_openFailed, A.AudioParamMap_keys_closure, A.AudioParamMap_values_closure, A.AttributedSpans_copyAttributionRegion_closure1, A.AttributedSpans_copyAttributionRegion_closure6, A.BoardListState_build_closure3, A.BoardViewState_build_closure0, A.hashObjects_closure, A.BuiltListMultimap_forEach_closure, A.MapBuilder_replace_closure, A.MapBuilder_replace_closure0, A.BuiltSetMultimap_forEach_closure, A.StandardJsonPlugin__toList_closure0, A.StandardJsonPlugin__toListUsingDiscriminator_closure0, A.loadAsyncHtmlImage_closure, A.MultiImageStreamCompleter_closure0, A.MultiImageStreamCompleter_closure1, A.BaseBarRenderer_preprocessSeries__closure, A.BaseBarRenderer_update_closure0, A.BaseBarRenderer_paint_closure, A.BaseBarRenderer_paint_closure0, A.BaseBarRenderer_paint_closure1, A.BaseBarRenderer__getSegmentsForDomainValue_closure, A._ReversedSeriesIterator_closure0, A.BaseTickDrawStrategy_collides_closure, A.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure, A.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure, A.CartesianChart_init_closure, A.CartesianChart_preprocessSeries_closure, A.CartesianChart_preprocessSeries_closure0, A.CartesianChart_preprocessSeries_closure1, A.CartesianChart_preprocessSeries_closure2, A.CartesianChart_onSkipLayout_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure0, A.BaseChart_configureSeries_closure0, A.BaseChart_preprocessSeries_closure1, A.BaseChart_onPostLayout_closure, A.LinePointHighlighter__updateViewData_closure, A._LinePointLayoutView_paint_closure, A._LinePointLayoutView_paint_closure0, A.SelectNearest__onSelect_closure, A.LayoutManagerImpl_paintOrderedViews_closure, A.LayoutManagerImpl_positionOrderedViews_closure, A.LineRenderer_update_closure0, A.LineRenderer_paint_closure, A.LineRenderer_paint_closure0, A.PointRenderer_paint_closure, A.PointRenderer_paint_closure0, A.BaseChartState_build_closure, A.BaseChartState_dispose_closure, A.TabularLegendLayout__buildTableFromRows_closure0, A.CanonicalizedMap_addAll_closure, A.CanonicalizedMap_forEach_closure, A.CanonicalizedMap_map_closure, A.MemoryDirectory_createSync_closure, A.MemoryFile__doCreate_closure, A._FileSink_addStream_closure0, A._FileSink_close_closure0, A.FilePickerWeb__fileType_closure, A.CupertinoDynamicColor_toString_toString, A._RenderCupertinoSwitch_paint_closure, A.BindingBase_registerServiceExtension_closure, A.PointerRouter__dispatchEventToRoutes_closure, A._PackagesViewState_licenses_closure, A._PackagesViewState_build_closure, A._PackagesViewState_build__closure, A._LicenseData_sortPackages_closure, A._PackageLicensePageState_build_closure, A._MasterDetailFlowState_build_closure, A._MasterDetailFlowState__nestedUI_closure, A._MasterDetailFlowState__lateralUI_closure1, A._MasterDetailFlowState__lateralUI_closure, A._MasterDetailScaffoldState_build__closure, A._DetailView_build_closure, A.MaterialApp_createMaterialHeroController_closure, A._MaterialAppState_build_closure, A._RenderInputPadding_hitTest_closure, A._RenderInputPadding_hitTest_closure0, A.__DatePickerDialogState_State_RestorationMixin_dispose_closure, A._DropdownRoute_buildPage_closure, A._DropdownRoute_getItemOffset_closure, A._DropdownRoute_getMenuLimits_closure, A._RenderDecoration_performLayout_centerLayout, A._RenderDecoration_performLayout_baselineLayout, A._RenderDecoration_hitTestChildren_closure, A._RenderListTile_hitTestChildren_closure, A._ZoomEnterTransition_build_closure, A.PaginatedDataTableState_build_closure, A._PopupMenu_build_closure0, A._LinearProgressIndicatorPainter_paint_drawBar, A._LinearProgressIndicatorState_build_closure, A._CircularProgressIndicatorState__buildAnimation_closure, A._RefreshProgressIndicatorState__buildAnimation_closure, A.RefreshIndicatorState_build_closure, A.ReorderableListView_closure, A._ReorderableListViewState__wrapWithSemantics_reorder, A._ReorderableListViewState__proxyDecorator_closure, A.ScaffoldState_build_closure, A._StandardBottomSheetState_build_closure, A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._TextFieldState_build_closure1, A._TextFieldState_build_closure2, A.__TextFieldState_State_RestorationMixin_dispose_closure, A.ThemeData__lerpThemeExtensions_closure, A._RenderInputPadding_hitTest_closure1, A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure, A.__TimePickerDialogState_State_RestorationMixin_dispose_closure, A.__TimePickerInputState_State_RestorationMixin_dispose_closure, A._RenderInputPadding_hitTest_closure2, A.NetworkImage__loadAsync_closure, A._CompoundBorder_dimensions_closure, A.ImageCache_putIfAbsent_listener, A.ImageProvider_resolve_closure, A.ImageProvider__createErrorHandlerAndKey_handleError, A.AssetImage_obtainKey_closure0, A.OneFrameImageStreamCompleter_closure, A.MultiFrameImageStreamCompleter_closure, A.MultiFrameImageStreamCompleter_closure0, A.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure, A.RenderEditable_getRectForComposingRange_closure, A.RenderEditable_hitTestChildren_closure, A.RenderEditable__paintContents_closure, A.RenderFlex_computeMinIntrinsicWidth_closure, A.RenderFlex_computeMaxIntrinsicWidth_closure, A.RenderFlex_computeMinIntrinsicHeight_closure, A.RenderFlex_computeMaxIntrinsicHeight_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure, A.PipelineOwner_flushLayout_closure, A.PipelineOwner_flushCompositingBits_closure, A.PipelineOwner_flushPaint_closure, A.PipelineOwner_flushSemantics_closure, A.RenderParagraph_hitTestChildren_closure, A.RenderParagraph_paint_closure, A.RenderTransform_hitTestChildren_closure, A.RenderFittedBox_hitTestChildren_closure, A.RenderFractionalTranslation_hitTestChildren_closure, A.RenderFollowerLayer_hitTestChildren_closure, A.RenderShiftedBox_hitTestChildren_closure, A.RenderIndexedStack_hitTestChildren_closure, A.RenderTable_computeDryLayout_closure, A.RenderTable_hitTestChildren_closure, A.SchedulerBinding_handleBeginFrame_closure, A._SemanticsSortGroup_sortedWithinKnot_closure, A.SemanticsOwner_sendSemanticsUpdate_closure0, A.SemanticsOwner_sendSemanticsUpdate_closure1, A._DefaultBinaryMessenger_setMessageHandler_closure, A.StandardMessageCodec_writeValue_closure, A._StreamBuilderBaseState__subscribe_closure1, A._FutureBuilderState__subscribe_closure0, A._DraggableScrollableSheetState_build_closure, A.EditableTextState__formatAndSetValue_closure, A.EditableTextState_build_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure4, A._ReadingOrderSortData_sortWithDirectionality_closure, A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure, A.ReadingOrderTraversalPolicy__pickNext_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand, A._FormFieldState_State_RestorationMixin_dispose_closure, A.RenderObjectElement_updateChildren_slotFor, A.Hero__allHeroesFor_inviteHero, A._HeroFlight__buildOverlay_closure, A._ImageState__getListener_closure, A._HistoryProperty_fromPrimitives_closure, A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._RenderTheatre_hitTestChildren_closure, A._StretchingOverscrollIndicatorState_build_closure, A._PageViewState_build_closure0, A.HtmlElementView_build_closure, A._DragItemProxy_build_closure, A.__RestorationScopeState_State_RestorationMixin_dispose_closure, A._ModalScopeState_build_closure, A._ModalScopeState_build__closure0, A._ModalScopeState_build___closure, A.ScrollView_build_closure, A.ListView$separated_closure, A.ListView$separated_closure0, A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A.ShortcutManager__indexShortcuts_closure, A.SingleChildScrollView_build_closure, A._RenderSingleChildViewport_paint_paintContents, A._RenderSingleChildViewport_hitTestChildren_closure, A.loadDateIntlDataIfNotLoaded_closure, A._StoreStreamListenerState_build_closure, A._RenderFlexEntranceTransition_hitTestChildren_closure, A.Element__addOuterHtml_closure, A.Phase_startTagHtml_closure, A.InBodyPhase_startTagBody_closure, A.formatStr_closure, A._separatingNewlines_closure, A._BaseRules_blankRule_closure, A._BaseRules_defaultRule_closure, A._CommonRules_paragraph_closure, A._CommonRules_lineBreak_closure, A._CommonRules_heading_closure, A._CommonRules_blockquote_closure, A._CommonRules_list_closure, A._CommonRules_listItem_closure, A._CommonRules_indentedCodeBlock_closure0, A._CommonRules_fencedCodeBlock_closure0, A._CommonRules_horizontalRule_closure, A._CommonRules_inlineLink_closure0, A._CommonRules_referenceLink_closure1, A._CommonRules_emphasis_closure, A._CommonRules_strong_closure, A._CommonRules_strike_closure, A._CommonRules_code_closure0, A._CommonRules_image_closure, A._TableRules_table_closure, A._TableRules_tr_closure, A._TableRules_tHeadBody_closure, A._TableRules_th_closure, A._TableRules_td_closure, A.BaseRequest_closure, A.mapToQuery_closure, A.MediaType_toString_closure, A.DateFormat__fieldConstructors_closure, A.DateFormat__fieldConstructors_closure0, A.DateFormat__fieldConstructors_closure1, A._DateFormatPatternField_parseEnumeratedString_closure0, A.GatewayEntity_supportedEvents_closure, A.InvoiceEntity_getTaxes_calculateAmount, A.TaskEntity_getTaskTimes_closure0, A._parseError_closure, A.InvoiceNinjaAppState_build__closure109, A.lastErrorReducer_closure, A.lastErrorReducer_closure0, A.lastErrorReducer_closure1, A.lastErrorReducer_closure2, A.lastErrorReducer_closure3, A.lastErrorReducer_closure4, A.lastErrorReducer_closure5, A.lastErrorReducer_closure6, A.lastErrorReducer_closure7, A.lastErrorReducer_closure8, A.lastErrorReducer_closure9, A.lastErrorReducer_closure10, A.lastErrorReducer_closure11, A.lastErrorReducer_closure12, A.lastErrorReducer_closure13, A.lastErrorReducer_closure14, A.lastErrorReducer_closure15, A.lastErrorReducer_closure16, A.lastErrorReducer_closure17, A.lastErrorReducer_closure18, A.lastErrorReducer_closure19, A.dismissedNativeWarningReducer_closure, A.dismissedNativeWarningReducer_closure0, A.handleClientAction__closure, A.__MergClientPickerState_build__closure, A.forceSelectedReducer_closure175, A.forceSelectedReducer_closure176, A.forceSelectedReducer_closure177, A.forceSelectedReducer_closure178, A.forceSelectedReducer_closure179, A.forceSelectedReducer_closure180, A.forceSelectedReducer_closure181, A.forceSelectedReducer_closure182, A.tabIndexReducer_closure23, A.tabIndexReducer_closure24, A.saveCompleterReducer_closure1, A.cancelCompleterReducer_closure1, A.editingContactReducer_closure, A.editingContactReducer_closure0, A.selectedIdReducer_closure354, A.selectedIdReducer_closure355, A.selectedIdReducer_closure356, A.selectedIdReducer_closure357, A.selectedIdReducer_closure358, A.selectedIdReducer_closure359, A.selectedIdReducer_closure360, A.selectedIdReducer_closure361, A.selectedIdReducer_closure362, A.selectedIdReducer_closure363, A.selectedIdReducer_closure364, A.selectedIdReducer_closure365, A.selectedIdReducer_closure366, A.selectedIdReducer_closure367, A.selectedIdReducer_closure368, A.selectedIdReducer_closure369, A.selectedIdReducer_closure370, A.editingReducer_closure125, A.editingReducer_closure126, A.editingReducer_closure127, A.editingReducer_closure128, A.editingReducer_closure129, A.editingReducer_closure130, A.editingReducer_closure131, A.editingReducer_closure132, A.editingReducer_closure133, A.editingReducer_closure134, A.editingReducer_closure135, A.editingReducer_closure136, A.editingReducer_closure137, A.editingReducer_closure138, A.dropdownClientsSelector_closure0, A.memoizedClientStatsForUser_closure, A.clientStatsForUser_closure, A.filteredClientsSelector_closure0, A.userCompanyEntityReducer_closure, A.userCompanyEntityReducer_closure0, A.userCompanyEntityReducer_closure1, A.userCompanyEntityReducer_closure2, A.userCompanyEntityReducer_closure3, A.userCompanyEntityReducer_closure4, A.userCompanyEntityReducer_closure5, A.lastUpdatedReducer_closure, A.lastUpdatedReducer_closure0, A.memoizedDropdownExpenseCategoriesList_closure, A.dropdownExpenseCategoriesSelector_closure0, A.getCurrencyIds_closure, A.memoizedFilteredSelector_closure, A.filteredSelector_closure13, A.handleCompanyGatewayAction__closure, A.forceSelectedReducer_closure59, A.forceSelectedReducer_closure60, A.forceSelectedReducer_closure61, A.forceSelectedReducer_closure62, A.forceSelectedReducer_closure63, A.forceSelectedReducer_closure64, A.forceSelectedReducer_closure65, A.forceSelectedReducer_closure66, A.selectedIdReducer_closure119, A.selectedIdReducer_closure120, A.selectedIdReducer_closure121, A.selectedIdReducer_closure122, A.selectedIdReducer_closure123, A.selectedIdReducer_closure124, A.selectedIdReducer_closure125, A.selectedIdReducer_closure126, A.selectedIdReducer_closure127, A.selectedIdReducer_closure128, A.selectedIdReducer_closure129, A.selectedIdReducer_closure130, A.selectedIdReducer_closure131, A.selectedIdReducer_closure132, A.selectedIdReducer_closure133, A.editingReducer_closure37, A.editingReducer_closure38, A.editingReducer_closure39, A.editingReducer_closure40, A.memoizedCalculateCompanyGatewayProcessed_closure, A.calculateCompanyGatewayProcessed_closure, A.memoizedClientStatsForCompanyGateway_closure, A.clientStatsForCompanyGateway_closure, A.memoizedPaymentStatsForCompanyGateway_closure, A.paymentStatsForCompanyGateway_closure, A.getUnconnectedStripeAccount_closure, A.forceSelectedReducer_closure79, A.forceSelectedReducer_closure80, A.forceSelectedReducer_closure81, A.forceSelectedReducer_closure82, A.forceSelectedReducer_closure83, A.forceSelectedReducer_closure84, A.forceSelectedReducer_closure85, A.forceSelectedReducer_closure86, A.tabIndexReducer_closure11, A.tabIndexReducer_closure12, A.historyActivityIdReducer_closure0, A.editingItemReducer_closure1, A.editingItemReducer_closure2, A.selectedIdReducer_closure160, A.selectedIdReducer_closure161, A.selectedIdReducer_closure162, A.selectedIdReducer_closure163, A.selectedIdReducer_closure164, A.selectedIdReducer_closure165, A.selectedIdReducer_closure166, A.selectedIdReducer_closure167, A.selectedIdReducer_closure168, A.selectedIdReducer_closure169, A.selectedIdReducer_closure170, A.selectedIdReducer_closure171, A.selectedIdReducer_closure172, A.selectedIdReducer_closure173, A.selectedIdReducer_closure174, A.selectedIdReducer_closure175, A.selectedIdReducer_closure176, A.selectedIdReducer_closure177, A.selectedIdReducer_closure178, A.editingReducer_closure49, A.editingReducer_closure50, A.editingReducer_closure51, A.editingReducer_closure52, A.editingReducer_closure53, A.editingReducer_closure54, A.editingReducer_closure55, A.editingReducer_closure56, A.editingReducer_closure57, A.editingReducer_closure58, A.editingReducer_closure59, A.dropdownCreditSelector_closure0, A.filteredCreditsSelector_closure0, A.memoizedCreditStatsForDesign_closure, A.creditStatsForDesign_closure, A.memoizedCreditStatsForClient_closure, A.creditStatsForClient_closure, A.memoizedCreditStatsForUser_closure, A.creditStatsForUser_closure, A.selectedEntitiesReducer_closure, A.selectedEntitiesReducer_closure0, A.selectedEntityTypeReducer_closure, A.showSidebarReducer_closure, A._chartInvoices_closure, A.chartQuotes_closure, A.chartPayments_closure, A.chartTasks_closure, A.chartTasks___closure, A.chartExpenses_closure, A.memoizedRunningTasks_closure0, A.runningTasks_closure, A.memoizedUpcomingInvoices_closure, A._upcomingInvoices_closure, A._upcomingInvoices_closure0, A.memoizedPastDueInvoices_closure, A._pastDueInvoices_closure, A._pastDueInvoices_closure0, A.memoizedRecentPayments_closure, A._recentPayments_closure, A._recentPayments_closure0, A.memoizedUpcomingQuotes_closure, A._upcomingQuotes_closure, A._upcomingQuotes_closure0, A.memoizedExpiredQuotes_closure, A._expiredQuotes_closure, A._expiredQuotes_closure0, A.memoizedRunningTasks_closure, A._runningTasks_closure, A._runningTasks_closure0, A.memoizedRecentTasks_closure, A._recentTasks_closure, A._recentTasks_closure0, A.memoizedRecentExpenses_closure, A._recentExpenses_closure, A._recentExpenses_closure0, A.forceSelectedReducer_closure87, A.forceSelectedReducer_closure88, A.forceSelectedReducer_closure89, A.forceSelectedReducer_closure90, A.forceSelectedReducer_closure91, A.forceSelectedReducer_closure92, A.forceSelectedReducer_closure93, A.forceSelectedReducer_closure94, A.selectedIdReducer_closure179, A.selectedIdReducer_closure180, A.selectedIdReducer_closure181, A.selectedIdReducer_closure182, A.selectedIdReducer_closure183, A.selectedIdReducer_closure184, A.selectedIdReducer_closure185, A.selectedIdReducer_closure186, A.selectedIdReducer_closure187, A.selectedIdReducer_closure188, A.selectedIdReducer_closure189, A.selectedIdReducer_closure190, A.selectedIdReducer_closure191, A.selectedIdReducer_closure192, A.editingReducer_closure60, A.editingReducer_closure61, A.editingReducer_closure62, A.editingReducer_closure63, A.filteredDesignsSelector_closure0, A.forceSelectedReducer_closure47, A.forceSelectedReducer_closure48, A.forceSelectedReducer_closure49, A.forceSelectedReducer_closure50, A.forceSelectedReducer_closure51, A.forceSelectedReducer_closure52, A.forceSelectedReducer_closure53, A.forceSelectedReducer_closure54, A.selectedIdReducer_closure94, A.selectedIdReducer_closure95, A.selectedIdReducer_closure96, A.selectedIdReducer_closure97, A.selectedIdReducer_closure98, A.selectedIdReducer_closure99, A.selectedIdReducer_closure100, A.selectedIdReducer_closure101, A.selectedIdReducer_closure102, A.selectedIdReducer_closure103, A.selectedIdReducer_closure104, A.selectedIdReducer_closure105, A.selectedIdReducer_closure106, A.editingReducer_closure32, A.filteredDocumentsSelector_closure0, A.forceSelectedReducer_closure39, A.forceSelectedReducer_closure40, A.forceSelectedReducer_closure41, A.forceSelectedReducer_closure42, A.forceSelectedReducer_closure43, A.forceSelectedReducer_closure44, A.forceSelectedReducer_closure45, A.forceSelectedReducer_closure46, A.tabIndexReducer_closure9, A.tabIndexReducer_closure10, A.selectedIdReducer_closure79, A.selectedIdReducer_closure80, A.selectedIdReducer_closure81, A.selectedIdReducer_closure82, A.selectedIdReducer_closure83, A.selectedIdReducer_closure84, A.selectedIdReducer_closure85, A.selectedIdReducer_closure86, A.selectedIdReducer_closure87, A.selectedIdReducer_closure88, A.selectedIdReducer_closure89, A.selectedIdReducer_closure90, A.selectedIdReducer_closure91, A.selectedIdReducer_closure92, A.selectedIdReducer_closure93, A.editingReducer_closure28, A.editingReducer_closure29, A.editingReducer_closure30, A.editingReducer_closure31, A.memoizedExpensePurchaseOrderSelector_closure, A.expensePurchaseOrderSelector_closure, A.filteredExpensesSelector_closure0, A.memoizedExpenseStatsForVendor_closure, A.expenseStatsForVendor_closure, A.memoizedExpenseStatsForClient_closure, A.expenseStatsForClient_closure, A.memoizedClientExpenseList_closure, A.clientExpenseList_closure0, A.memoizedExpenseStatsForProject_closure, A.expenseStatsForProject_closure, A.memoizedExpenseStatsForUser_closure, A.expenseStatsForUser_closure, A.forceSelectedReducer_closure127, A.forceSelectedReducer_closure128, A.forceSelectedReducer_closure129, A.forceSelectedReducer_closure130, A.forceSelectedReducer_closure131, A.forceSelectedReducer_closure132, A.forceSelectedReducer_closure133, A.forceSelectedReducer_closure134, A.selectedIdReducer_closure256, A.selectedIdReducer_closure257, A.selectedIdReducer_closure258, A.selectedIdReducer_closure259, A.selectedIdReducer_closure260, A.selectedIdReducer_closure261, A.selectedIdReducer_closure262, A.selectedIdReducer_closure263, A.selectedIdReducer_closure264, A.selectedIdReducer_closure265, A.selectedIdReducer_closure266, A.selectedIdReducer_closure267, A.selectedIdReducer_closure268, A.selectedIdReducer_closure269, A.selectedIdReducer_closure270, A.editingReducer_closure87, A.editingReducer_closure88, A.editingReducer_closure89, A.editingReducer_closure90, A.filteredExpenseCategoriesSelector_closure0, A.memoizedCalculateExpenseCategoryAmount_closure, A.calculateExpenseCategoryAmount_closure, A.memoizedExpenseStatsForExpenseCategory_closure, A.expenseStatsForExpenseCategory_closure, A.forceSelectedReducer_closure55, A.forceSelectedReducer_closure56, A.forceSelectedReducer_closure57, A.forceSelectedReducer_closure58, A.selectedIdReducer_closure107, A.selectedIdReducer_closure108, A.selectedIdReducer_closure109, A.selectedIdReducer_closure110, A.selectedIdReducer_closure111, A.selectedIdReducer_closure112, A.selectedIdReducer_closure113, A.selectedIdReducer_closure114, A.selectedIdReducer_closure115, A.selectedIdReducer_closure116, A.selectedIdReducer_closure117, A.selectedIdReducer_closure118, A.editingReducer_closure33, A.editingReducer_closure34, A.editingReducer_closure35, A.editingReducer_closure36, A.filteredGroupsSelector_closure0, A.memoizedClientStatsForGroup_closure, A.clientStatsForGroup_closure, A.forceSelectedReducer_closure167, A.forceSelectedReducer_closure168, A.forceSelectedReducer_closure169, A.forceSelectedReducer_closure170, A.forceSelectedReducer_closure171, A.forceSelectedReducer_closure172, A.forceSelectedReducer_closure173, A.forceSelectedReducer_closure174, A.tabIndexReducer_closure21, A.tabIndexReducer_closure22, A.historyActivityIdReducer_closure3, A.editingItemIndexReducer_closure1, A.editingItemIndexReducer_closure2, A.selectedIdReducer_closure335, A.selectedIdReducer_closure336, A.selectedIdReducer_closure337, A.selectedIdReducer_closure338, A.selectedIdReducer_closure339, A.selectedIdReducer_closure340, A.selectedIdReducer_closure341, A.selectedIdReducer_closure342, A.selectedIdReducer_closure343, A.selectedIdReducer_closure344, A.selectedIdReducer_closure345, A.selectedIdReducer_closure346, A.selectedIdReducer_closure347, A.selectedIdReducer_closure348, A.selectedIdReducer_closure349, A.selectedIdReducer_closure350, A.selectedIdReducer_closure351, A.selectedIdReducer_closure352, A.selectedIdReducer_closure353, A.editingReducer_closure114, A.editingReducer_closure115, A.editingReducer_closure116, A.editingReducer_closure117, A.editingReducer_closure118, A.editingReducer_closure119, A.editingReducer_closure120, A.editingReducer_closure121, A.editingReducer_closure122, A.editingReducer_closure123, A.editingReducer_closure124, A.memoizedInvoiceQuoteSelector_closure, A.invoiceQuoteSelector_closure, A.dropdownInvoiceSelector_closure0, A.filteredInvoicesSelector_closure, A.filteredInvoicesSelector_closure1, A.memoizedInvoiceStatsForClient_closure, A.invoiceStatsForClient_closure, A.memoizedInvoiceStatsForDesign_closure, A.invoiceStatsForDesign_closure, A.memoizedInvoiceStatsForSubscription_closure, A.invoiceStatsForSubscription_closure, A.memoizedInvoiceStatsForProject_closure, A.invoiceStatsForProject_closure, A.memoizedInvoiceStatsForUser_closure, A.invoiceStatsForUser_closure, A.forceSelectedReducer_closure7, A.forceSelectedReducer_closure8, A.forceSelectedReducer_closure9, A.forceSelectedReducer_closure10, A.forceSelectedReducer_closure11, A.forceSelectedReducer_closure12, A.forceSelectedReducer_closure13, A.forceSelectedReducer_closure14, A.tabIndexReducer_closure1, A.tabIndexReducer_closure2, A.selectedIdReducer_closure18, A.selectedIdReducer_closure19, A.selectedIdReducer_closure20, A.selectedIdReducer_closure21, A.selectedIdReducer_closure22, A.selectedIdReducer_closure23, A.selectedIdReducer_closure24, A.selectedIdReducer_closure25, A.selectedIdReducer_closure26, A.selectedIdReducer_closure27, A.selectedIdReducer_closure28, A.selectedIdReducer_closure29, A.selectedIdReducer_closure30, A.selectedIdReducer_closure31, A.selectedIdReducer_closure32, A.selectedIdReducer_closure33, A.editingReducer_closure10, A.editingReducer_closure11, A.editingReducer_closure12, A.editingReducer_closure13, A.filteredPaymentsSelector_closure0, A.paymentStatsForClient_closure, A.forceSelectedReducer_closure95, A.forceSelectedReducer_closure96, A.forceSelectedReducer_closure97, A.forceSelectedReducer_closure98, A.forceSelectedReducer_closure99, A.forceSelectedReducer_closure100, A.forceSelectedReducer_closure101, A.forceSelectedReducer_closure102, A.selectedIdReducer_closure193, A.selectedIdReducer_closure194, A.selectedIdReducer_closure195, A.selectedIdReducer_closure196, A.selectedIdReducer_closure197, A.selectedIdReducer_closure198, A.selectedIdReducer_closure199, A.selectedIdReducer_closure200, A.selectedIdReducer_closure201, A.selectedIdReducer_closure202, A.selectedIdReducer_closure203, A.selectedIdReducer_closure204, A.selectedIdReducer_closure205, A.selectedIdReducer_closure206, A.editingReducer_closure64, A.editingReducer_closure65, A.editingReducer_closure66, A.editingReducer_closure67, A.memoizedDropdownPaymentTermList_closure, A.dropdownPaymentTermsSelector_closure0, A.filteredPaymentTermsSelector_closure0, A.forceSelectedReducer_closure183, A.forceSelectedReducer_closure184, A.forceSelectedReducer_closure185, A.forceSelectedReducer_closure186, A.forceSelectedReducer_closure187, A.forceSelectedReducer_closure188, A.forceSelectedReducer_closure189, A.forceSelectedReducer_closure190, A.tabIndexReducer_closure25, A.tabIndexReducer_closure26, A.editingReducer_closure139, A.editingReducer_closure140, A.editingReducer_closure141, A.editingReducer_closure142, A.selectedIdReducer_closure371, A.selectedIdReducer_closure372, A.selectedIdReducer_closure373, A.selectedIdReducer_closure374, A.selectedIdReducer_closure375, A.selectedIdReducer_closure376, A.selectedIdReducer_closure377, A.selectedIdReducer_closure378, A.selectedIdReducer_closure379, A.selectedIdReducer_closure380, A.selectedIdReducer_closure381, A.selectedIdReducer_closure382, A.selectedIdReducer_closure383, A.selectedIdReducer_closure384, A.dropdownProductsSelector_closure0, A.productList_closure0, A.filteredProductsSelector_closure0, A.forceSelectedReducer_closure15, A.forceSelectedReducer_closure16, A.forceSelectedReducer_closure17, A.forceSelectedReducer_closure18, A.forceSelectedReducer_closure19, A.forceSelectedReducer_closure20, A.forceSelectedReducer_closure21, A.forceSelectedReducer_closure22, A.tabIndexReducer_closure3, A.tabIndexReducer_closure4, A.saveCompleterReducer_closure, A.cancelCompleterReducer_closure, A.selectedIdReducer_closure34, A.selectedIdReducer_closure35, A.selectedIdReducer_closure36, A.selectedIdReducer_closure37, A.selectedIdReducer_closure38, A.selectedIdReducer_closure39, A.selectedIdReducer_closure40, A.selectedIdReducer_closure41, A.selectedIdReducer_closure42, A.selectedIdReducer_closure43, A.selectedIdReducer_closure44, A.selectedIdReducer_closure45, A.selectedIdReducer_closure46, A.selectedIdReducer_closure47, A.selectedIdReducer_closure48, A.editingReducer_closure14, A.editingReducer_closure15, A.editingReducer_closure16, A.editingReducer_closure17, A.convertProjectToInvoiceItem_closure, A.convertProjectToInvoiceItem_closure0, A.convertProjectToInvoiceItem_closure1, A.convertProjectToInvoiceItem_closure2, A.dropdownProjectsSelector_closure0, A.filteredProjectsSelector_closure0, A.taskDurationForProject_closure, A.memoizedProjectStatsForClient_closure, A.projectStatsForClient_closure, A.memoizedProjectStatsForUser_closure, A.forceSelectedReducer_closure159, A.forceSelectedReducer_closure160, A.forceSelectedReducer_closure161, A.forceSelectedReducer_closure162, A.forceSelectedReducer_closure163, A.forceSelectedReducer_closure164, A.forceSelectedReducer_closure165, A.forceSelectedReducer_closure166, A.tabIndexReducer_closure19, A.tabIndexReducer_closure20, A.historyActivityIdReducer_closure2, A.editingItemReducer_closure3, A.editingItemReducer_closure4, A.selectedIdReducer_closure316, A.selectedIdReducer_closure317, A.selectedIdReducer_closure318, A.selectedIdReducer_closure319, A.selectedIdReducer_closure320, A.selectedIdReducer_closure321, A.selectedIdReducer_closure322, A.selectedIdReducer_closure323, A.selectedIdReducer_closure324, A.selectedIdReducer_closure325, A.selectedIdReducer_closure326, A.selectedIdReducer_closure327, A.selectedIdReducer_closure328, A.selectedIdReducer_closure329, A.selectedIdReducer_closure330, A.selectedIdReducer_closure331, A.selectedIdReducer_closure332, A.selectedIdReducer_closure333, A.selectedIdReducer_closure334, A.editingReducer_closure103, A.editingReducer_closure104, A.editingReducer_closure105, A.editingReducer_closure106, A.editingReducer_closure107, A.editingReducer_closure108, A.editingReducer_closure109, A.editingReducer_closure110, A.editingReducer_closure111, A.editingReducer_closure112, A.editingReducer_closure113, A.filteredPurchaseOrdersSelector_closure0, A.memoizedPurchaseOrderStatsForVendor_closure, A.purchaseOrderStatsForVendor_closure, A.forceSelectedReducer_closure, A.forceSelectedReducer_closure0, A.forceSelectedReducer_closure1, A.forceSelectedReducer_closure2, A.forceSelectedReducer_closure3, A.forceSelectedReducer_closure4, A.forceSelectedReducer_closure5, A.forceSelectedReducer_closure6, A.tabIndexReducer_closure, A.tabIndexReducer_closure0, A.historyActivityIdReducer_closure, A.editingItemReducer_closure, A.editingItemReducer_closure0, A.selectedIdReducer_closure, A.selectedIdReducer_closure0, A.selectedIdReducer_closure1, A.selectedIdReducer_closure2, A.selectedIdReducer_closure3, A.selectedIdReducer_closure4, A.selectedIdReducer_closure5, A.selectedIdReducer_closure6, A.selectedIdReducer_closure7, A.selectedIdReducer_closure8, A.selectedIdReducer_closure9, A.selectedIdReducer_closure10, A.selectedIdReducer_closure11, A.selectedIdReducer_closure12, A.selectedIdReducer_closure13, A.selectedIdReducer_closure14, A.selectedIdReducer_closure15, A.selectedIdReducer_closure16, A.selectedIdReducer_closure17, A.editingReducer_closure, A.editingReducer_closure0, A.editingReducer_closure1, A.editingReducer_closure2, A.editingReducer_closure3, A.editingReducer_closure4, A.editingReducer_closure5, A.editingReducer_closure6, A.editingReducer_closure7, A.editingReducer_closure8, A.editingReducer_closure9, A.filteredQuotesSelector_closure0, A.memoizedQuoteStatsForClient_closure, A.quoteStatsForClient_closure, A.memoizedQuoteStatsForDesign_closure, A.quoteStatsForDesign_closure, A.memoizedQuoteStatsForUser_closure, A.quoteStatsForUser_closure, A.forceSelectedReducer_closure151, A.forceSelectedReducer_closure152, A.forceSelectedReducer_closure153, A.forceSelectedReducer_closure154, A.forceSelectedReducer_closure155, A.forceSelectedReducer_closure156, A.forceSelectedReducer_closure157, A.forceSelectedReducer_closure158, A.tabIndexReducer_closure17, A.tabIndexReducer_closure18, A.selectedIdReducer_closure301, A.selectedIdReducer_closure302, A.selectedIdReducer_closure303, A.selectedIdReducer_closure304, A.selectedIdReducer_closure305, A.selectedIdReducer_closure306, A.selectedIdReducer_closure307, A.selectedIdReducer_closure308, A.selectedIdReducer_closure309, A.selectedIdReducer_closure310, A.selectedIdReducer_closure311, A.selectedIdReducer_closure312, A.selectedIdReducer_closure313, A.selectedIdReducer_closure314, A.selectedIdReducer_closure315, A.editingReducer_closure99, A.editingReducer_closure100, A.editingReducer_closure101, A.editingReducer_closure102, A.filteredRecurringExpensesSelector_closure0, A.memoizedRecurringExpenseStatsForClient_closure, A.recurringExpenseStatsForClient_closure, A.memoizedRecurringExpenseStatsForVendor_closure, A.recurringExpenseStatsForVendor_closure, A.memoizedRecurringExpenseStatsForUser_closure, A.recurringExpenseStatsForUser_closure, A.memoizedRecurringExpenseStatsForExpense_closure, A.recurringExpenseStatsForExpense_closure, A.forceSelectedReducer_closure119, A.forceSelectedReducer_closure120, A.forceSelectedReducer_closure121, A.forceSelectedReducer_closure122, A.forceSelectedReducer_closure123, A.forceSelectedReducer_closure124, A.forceSelectedReducer_closure125, A.forceSelectedReducer_closure126, A.tabIndexReducer_closure13, A.tabIndexReducer_closure14, A.historyActivityIdReducer_closure1, A.editingItemIndexReducer_closure, A.editingItemIndexReducer_closure0, A.selectedIdReducer_closure237, A.selectedIdReducer_closure238, A.selectedIdReducer_closure239, A.selectedIdReducer_closure240, A.selectedIdReducer_closure241, A.selectedIdReducer_closure242, A.selectedIdReducer_closure243, A.selectedIdReducer_closure244, A.selectedIdReducer_closure245, A.selectedIdReducer_closure246, A.selectedIdReducer_closure247, A.selectedIdReducer_closure248, A.selectedIdReducer_closure249, A.selectedIdReducer_closure250, A.selectedIdReducer_closure251, A.selectedIdReducer_closure252, A.selectedIdReducer_closure253, A.selectedIdReducer_closure254, A.selectedIdReducer_closure255, A.editingReducer_closure76, A.editingReducer_closure77, A.editingReducer_closure78, A.editingReducer_closure79, A.editingReducer_closure80, A.editingReducer_closure81, A.editingReducer_closure82, A.editingReducer_closure83, A.editingReducer_closure84, A.editingReducer_closure85, A.editingReducer_closure86, A.filteredRecurringInvoicesSelector_closure0, A.memoizedRecurringInvoiceStatsForClient_closure, A.recurringInvoiceStatsForClient_closure, A.memoizedRecurringInvoiceStatsForUser_closure, A.recurringInvoiceStatsForUser_closure, A.memoizedRecurringInvoiceStatsForInvoice_closure, A.recurringInvoiceStatsForInvoice_closure, A.memoizedRecurringInvoiceStatsForDesign_closure, A.recurringInvoiceStatsForDesign_closure, A.memoizedRecurringInvoiceStatsForSubscription_closure, A.recurringInvoiceStatsForSubscription_closure, A.settingsUIReducer_closure, A.settingsUIReducer_closure0, A.settingsUIReducer_closure1, A.settingsUIReducer_closure2, A.settingsUIReducer_closure3, A.settingsUIReducer_closure4, A.settingsUIReducer_closure5, A.settingsUIReducer_closure6, A.settingsUIReducer_closure7, A.settingsUIReducer_closure8, A.settingsUIReducer_closure9, A.settingsUIReducer_closure10, A.settingsUIReducer_closure11, A.settingsUIReducer_closure12, A.countryList_closure, A.groupList_closure0, A.languageList_closure, A.currencyList_closure, A.timezoneList_closure, A.dateFormatList_closure, A.industryList_closure, A.sizeList_closure, A.gatewayList_closure0, A.paymentTypeList_closure, A.forceSelectedReducer_closure143, A.forceSelectedReducer_closure144, A.forceSelectedReducer_closure145, A.forceSelectedReducer_closure146, A.forceSelectedReducer_closure147, A.forceSelectedReducer_closure148, A.forceSelectedReducer_closure149, A.forceSelectedReducer_closure150, A.tabIndexReducer_closure15, A.tabIndexReducer_closure16, A.selectedIdReducer_closure286, A.selectedIdReducer_closure287, A.selectedIdReducer_closure288, A.selectedIdReducer_closure289, A.selectedIdReducer_closure290, A.selectedIdReducer_closure291, A.selectedIdReducer_closure292, A.selectedIdReducer_closure293, A.selectedIdReducer_closure294, A.selectedIdReducer_closure295, A.selectedIdReducer_closure296, A.selectedIdReducer_closure297, A.selectedIdReducer_closure298, A.selectedIdReducer_closure299, A.selectedIdReducer_closure300, A.editingReducer_closure95, A.editingReducer_closure96, A.editingReducer_closure97, A.editingReducer_closure98, A.filteredSubscriptionsSelector_closure0, A.handleTaskAction_closure1, A.forceSelectedReducer_closure23, A.forceSelectedReducer_closure24, A.forceSelectedReducer_closure25, A.forceSelectedReducer_closure26, A.forceSelectedReducer_closure27, A.forceSelectedReducer_closure28, A.forceSelectedReducer_closure29, A.forceSelectedReducer_closure30, A.tabIndexReducer_closure5, A.tabIndexReducer_closure6, A.kanbanLastUpdatedReducer_closure, A.editingTimeReducer_closure, A.editingTimeReducer_closure0, A.selectedIdReducer_closure49, A.selectedIdReducer_closure50, A.selectedIdReducer_closure51, A.selectedIdReducer_closure52, A.selectedIdReducer_closure53, A.selectedIdReducer_closure54, A.selectedIdReducer_closure55, A.selectedIdReducer_closure56, A.selectedIdReducer_closure57, A.selectedIdReducer_closure58, A.selectedIdReducer_closure59, A.selectedIdReducer_closure60, A.selectedIdReducer_closure61, A.selectedIdReducer_closure62, A.selectedIdReducer_closure63, A.editingReducer_closure18, A.editingReducer_closure19, A.editingReducer_closure20, A.editingReducer_closure21, A.editingReducer_closure22, A.editingReducer_closure23, A.taskList_closure0, A.kanbanTasksSelector_closure0, A.filteredTasksSelector_closure0, A.memoizedTaskStatsForClient_closure, A.taskStatsForClient_closure, A.memoizedTaskStatsForProject_closure, A.taskStatsForProject_closure, A.memoizedTaskStatsForUser_closure, A.forceSelectedReducer_closure135, A.forceSelectedReducer_closure136, A.forceSelectedReducer_closure137, A.forceSelectedReducer_closure138, A.forceSelectedReducer_closure139, A.forceSelectedReducer_closure140, A.forceSelectedReducer_closure141, A.forceSelectedReducer_closure142, A.selectedIdReducer_closure271, A.selectedIdReducer_closure272, A.selectedIdReducer_closure273, A.selectedIdReducer_closure274, A.selectedIdReducer_closure275, A.selectedIdReducer_closure276, A.selectedIdReducer_closure277, A.selectedIdReducer_closure278, A.selectedIdReducer_closure279, A.selectedIdReducer_closure280, A.selectedIdReducer_closure281, A.selectedIdReducer_closure282, A.selectedIdReducer_closure283, A.selectedIdReducer_closure284, A.selectedIdReducer_closure285, A.editingReducer_closure91, A.editingReducer_closure92, A.editingReducer_closure93, A.editingReducer_closure94, A.memoizedSortedActiveTaskStatusIds_closure, A.sortedActiveTaskStatusIds_closure0, A.dropdownTaskStatusesSelector_closure0, A.filteredTaskStatusesSelector_closure0, A.memoizedCalculateTaskStatusAmount_closure, A.calculateTaskStatusAmount_closure, A.memoizedTaskStatsForTaskStatus_closure, A.taskStatsForTaskStatus_closure, A.defaultTaskStatusId_closure0, A.forceSelectedReducer_closure67, A.forceSelectedReducer_closure68, A.forceSelectedReducer_closure69, A.forceSelectedReducer_closure70, A.selectedIdReducer_closure134, A.selectedIdReducer_closure135, A.selectedIdReducer_closure136, A.selectedIdReducer_closure137, A.selectedIdReducer_closure138, A.selectedIdReducer_closure139, A.selectedIdReducer_closure140, A.selectedIdReducer_closure141, A.selectedIdReducer_closure142, A.selectedIdReducer_closure143, A.editingReducer_closure41, A.editingReducer_closure42, A.editingReducer_closure43, A.editingReducer_closure44, A.filteredTaxRatesSelector_closure0, A.forceSelectedReducer_closure103, A.forceSelectedReducer_closure104, A.forceSelectedReducer_closure105, A.forceSelectedReducer_closure106, A.forceSelectedReducer_closure107, A.forceSelectedReducer_closure108, A.forceSelectedReducer_closure109, A.forceSelectedReducer_closure110, A.selectedIdReducer_closure207, A.selectedIdReducer_closure208, A.selectedIdReducer_closure209, A.selectedIdReducer_closure210, A.selectedIdReducer_closure211, A.selectedIdReducer_closure212, A.selectedIdReducer_closure213, A.selectedIdReducer_closure214, A.selectedIdReducer_closure215, A.selectedIdReducer_closure216, A.selectedIdReducer_closure217, A.selectedIdReducer_closure218, A.selectedIdReducer_closure219, A.selectedIdReducer_closure220, A.selectedIdReducer_closure221, A.editingReducer_closure68, A.editingReducer_closure69, A.editingReducer_closure70, A.editingReducer_closure71, A.filteredTokensSelector_closure0, A.sortFieldsReducer_closure, A.sortFieldsReducer_closure0, A.sortFieldsReducer_closure1, A.sortFieldsReducer_closure2, A.sortFieldsReducer_closure3, A.sortFieldsReducer_closure4, A.sortFieldsReducer_closure5, A.sortFieldsReducer_closure6, A.sortFieldsReducer_closure7, A.sortFieldsReducer_closure8, A.sortFieldsReducer_closure9, A.sortFieldsReducer_closure10, A.sortFieldsReducer_closure11, A.sortFieldsReducer_closure12, A.sortFieldsReducer_closure13, A.sortFieldsReducer_closure14, A.sortFieldsReducer_closure15, A.sortFieldsReducer_closure16, A.sortFieldsReducer_closure17, A.sortFieldsReducer_closure18, A.sortFieldsReducer_closure19, A.sortFieldsReducer_closure20, A.sidebarEditorReducer_closure, A.sidebarViewerReducer_closure, A.menuVisibleReducer_closure, A.menuVisibleReducer_closure0, A.textScaleFactorReducer_closure, A.historyVisibleReducer_closure, A.historyVisibleReducer_closure0, A.hideDesktopWarningReducer_closure, A.hideGatewayWarningReducer_closure, A.hideReviewAppReducer_closure, A.layoutReducer_closure, A.moduleLayoutReducer_closure, A.moduleLayoutReducer_closure0, A.rowsPerPageReducer_closure, A.manuSidebarReducer_closure, A.historySidebarReducer_closure, A.darkModeReducer_closure, A.enableJspdfReducer_closure, A.enableTooltipsReducer_closure, A.enableFlexibleSearchReducer_closure, A.persistDataReducer_closure, A.persistUIReducer_closure, A.showKanbanReducer_closure, A.isFilterVisibleReducer_closure, A.longPressReducer_closure, A.tapSelectedToEditReducer_closure, A.isPreviewVisibleReducer_closure, A.isPreviewVisibleReducer_closure0, A.requireAuthenticationReducer_closure, A.colorThemeReducer_closure, A.showPdfPreviewReducer_closure, A.editAfterSavingReducer_closure, A.enableTouchEventsReducer_closure, A.customColorsReducer_closure, A.historyReducer_closure, A.historyReducer_closure0, A.historyReducer_closure1, A.historyReducer_closure2, A.historyReducer_closure3, A.historyReducer_closure4, A.historyReducer_closure5, A.historyReducer_closure6, A.historyReducer_closure7, A.historyReducer_closure8, A.historyReducer_closure9, A.historyReducer_closure10, A.historyReducer_closure11, A.historyReducer_closure12, A.historyReducer_closure13, A.historyReducer_closure14, A.historyReducer_closure15, A.historyReducer_closure16, A.historyReducer_closure17, A.historyReducer_closure18, A.historyReducer_closure19, A.historyReducer_closure20, A.historyReducer_closure21, A.historyReducer_closure22, A.historyReducer_closure23, A.historyReducer_closure24, A.historyReducer_closure25, A.historyReducer_closure26, A.historyReducer_closure27, A.historyReducer_closure28, A.historyReducer_closure29, A.historyReducer_closure30, A.historyReducer_closure31, A.historyReducer_closure32, A.historyReducer_closure33, A.historyReducer_closure34, A.historyReducer_closure35, A.historyReducer_closure36, A.historyReducer_closure37, A.historyReducer_closure38, A.historyReducer_closure39, A.historyReducer_closure40, A.historyReducer_closure41, A.historyReducer_closure42, A.historyReducer_closure43, A.historyReducer_closure44, A.historyReducer_closure45, A.historyReducer_closure46, A.historyReducer_closure47, A.historyReducer_closure48, A.lastActivityReducer_closure, A.filterReducer_closure, A.filterReducer_closure0, A.loadingEntityTypeReducer_closure, A.loadingEntityTypeReducer_closure0, A.loadingEntityTypeReducer_closure1, A.loadingEntityTypeReducer_closure2, A.loadingEntityTypeReducer_closure3, A.loadingEntityTypeReducer_closure4, A.loadingEntityTypeReducer_closure5, A.loadingEntityTypeReducer_closure6, A.loadingEntityTypeReducer_closure7, A.loadingEntityTypeReducer_closure8, A.loadingEntityTypeReducer_closure9, A.loadingEntityTypeReducer_closure10, A.loadingEntityTypeReducer_closure11, A.loadingEntityTypeReducer_closure12, A.filterClearedAtReducer_closure, A.filterClearedAtReducer_closure0, A.currentRouteReducer_closure, A.selectedCompanyIndexReducer_closure, A.previewStackReducer_closure, A.previewStackReducer_closure0, A.previewStackReducer_closure1, A.filterStackReducer_closure, A.filterStackReducer_closure0, A.filterStackReducer_closure1, A.handleUserAction_closure10, A.handleUserAction_closure12, A.handleUserAction_closure14, A.handleUserAction__closure, A.handleUserAction_closure18, A.forceSelectedReducer_closure71, A.forceSelectedReducer_closure72, A.forceSelectedReducer_closure73, A.forceSelectedReducer_closure74, A.forceSelectedReducer_closure75, A.forceSelectedReducer_closure76, A.forceSelectedReducer_closure77, A.forceSelectedReducer_closure78, A.selectedIdReducer_closure144, A.selectedIdReducer_closure145, A.selectedIdReducer_closure146, A.selectedIdReducer_closure147, A.selectedIdReducer_closure148, A.selectedIdReducer_closure149, A.selectedIdReducer_closure150, A.selectedIdReducer_closure151, A.selectedIdReducer_closure152, A.selectedIdReducer_closure153, A.selectedIdReducer_closure154, A.selectedIdReducer_closure155, A.selectedIdReducer_closure156, A.selectedIdReducer_closure157, A.selectedIdReducer_closure158, A.selectedIdReducer_closure159, A.editingReducer_closure45, A.editingReducer_closure46, A.editingReducer_closure47, A.editingReducer_closure48, A.filteredUsersSelector_closure0, A.userList_closure0, A.forceSelectedReducer_closure31, A.forceSelectedReducer_closure32, A.forceSelectedReducer_closure33, A.forceSelectedReducer_closure34, A.forceSelectedReducer_closure35, A.forceSelectedReducer_closure36, A.forceSelectedReducer_closure37, A.forceSelectedReducer_closure38, A.tabIndexReducer_closure7, A.tabIndexReducer_closure8, A.saveCompleterReducer_closure0, A.cancelCompleterReducer_closure0, A.selectedIdReducer_closure64, A.selectedIdReducer_closure65, A.selectedIdReducer_closure66, A.selectedIdReducer_closure67, A.selectedIdReducer_closure68, A.selectedIdReducer_closure69, A.selectedIdReducer_closure70, A.selectedIdReducer_closure71, A.selectedIdReducer_closure72, A.selectedIdReducer_closure73, A.selectedIdReducer_closure74, A.selectedIdReducer_closure75, A.selectedIdReducer_closure76, A.selectedIdReducer_closure77, A.selectedIdReducer_closure78, A.editingReducer_closure24, A.editingReducer_closure25, A.editingReducer_closure26, A.editingReducer_closure27, A.dropdownVendorsSelector_closure0, A.filteredVendorsSelector_closure0, A.memoizedVendorStatsForUser_closure, A.vendorStatsForUser_closure, A.forceSelectedReducer_closure111, A.forceSelectedReducer_closure112, A.forceSelectedReducer_closure113, A.forceSelectedReducer_closure114, A.forceSelectedReducer_closure115, A.forceSelectedReducer_closure116, A.forceSelectedReducer_closure117, A.forceSelectedReducer_closure118, A.selectedIdReducer_closure222, A.selectedIdReducer_closure223, A.selectedIdReducer_closure224, A.selectedIdReducer_closure225, A.selectedIdReducer_closure226, A.selectedIdReducer_closure227, A.selectedIdReducer_closure228, A.selectedIdReducer_closure229, A.selectedIdReducer_closure230, A.selectedIdReducer_closure231, A.selectedIdReducer_closure232, A.selectedIdReducer_closure233, A.selectedIdReducer_closure234, A.selectedIdReducer_closure235, A.selectedIdReducer_closure236, A.editingReducer_closure72, A.editingReducer_closure73, A.editingReducer_closure74, A.editingReducer_closure75, A.filteredWebhooksSelector_closure0, A.FieldGrid_build_closure, A.FieldGrid_build_closure0, A._AppBottomBarState_build___closure7, A._AppBottomBarState_build___closure5, A._AppBottomBarState_build___closure, A._AppBottomBarState_build_closure, A.CustomFieldSelector_build_closure, A.ConfirmEmail_build__closure, A.ConfirmEmailBuilder_build_closure, A.MultiSelectListState_build_closure1, A.MultiSelectListState_build_closure5, A.DocumentGrid_build_closure1, A.DocumentTile_build___closure, A.DocumentPreview_build_closure0, A.EditScaffold_build_closure1, A._EntityListTileState_build_closure, A._EntityDropdownState__showOptions__closure, A._EntityDropdownState_build__closure5, A._EntityDropdownDialogState_build__createList_closure1, A.EntityTopFilter_build_closure5, A.EntityTopFilterHeader_build_closure3, A.AppToggleButtons_build_closure, A._CustomFieldState_build_closure0, A.ProjectPicker_build_closure, A._TimePickerState__showTimePicker_closure, A.VendorPicker_build_closure, A.HistoryDrawerBuilder_build_closure, A._InvoiceEmailViewState__buildHistory_closure, A.FilterListTile_build_closure, A.MainScreen_build_closure, A.MenuDrawerBuilder_build_closure, A._DropDownMultiSelectState_build_closure, A._SystemLogViewerState_build_closure2, A._SystemLogViewerState_build__closure0, A.AppPaginatedDataTableState_build_closure0, A.EntityDataTableSource_getRow_closure3, A._EntityListState_build__closure2, A._EntityListState_build__closure1, A._EntityListState_build___closure1, A._EntityListState_build_closure3, A._VariableGrid_build_closure, A._VariableGrid_build_closure0, A.ViewScaffold_build_closure5, A.InitScreen_build_closure, A.LoginScreen_build_closure, A.LoginVM_fromStore__closure6, A.LoginVM_fromStore__closure5, A.LoginVM_fromStore__closure3, A.LoginVM_fromStore__closure1, A.ClientListItem_build_closure, A.ClientListItem_build__closure0, A.ClientListBuilder_build_closure, A.ClientListBuilder_build__closure, A._ClientPdfViewState_build_closure7, A._ClientPdfViewState_build_closure8, A.ClientPdfScreen_build_closure, A.ClientScreen_build_closure8, A.ClientScreen_build_closure5, A.ClientScreenBuilder_build_closure, A.ClientEditContactsScreen_build_closure, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2, A.ClientEditScreen_build_closure, A._ClientViewActivityState_build_closure0, A._ClientViewActivityState_build_closure, A._ClientViewFullwidthState_build_closure, A._ClientViewLedgerState_build_closure1, A._ClientViewLedgerState_build_closure0, A.ClientViewScreen_build_closure, A.ClientViewVM_ClientViewVM$fromStore_closure0, A._CompanyGatewayListState_build_closure0, A.CompanyGatewayListBuilder_build_closure, A.CompanyGatewayListVM_fromStore_closure0, A.CompanyGatewayScreen_build_closure8, A.CompanyGatewayScreenBuilder_build_closure, A.CompanyGatewayEditScreen_build_closure, A.CompanyGatewayViewScreen_build_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0, A.CreditEmailScreen_build_closure, A.CreditListItem_build_closure, A.CreditListItem_build__closure0, A.CreditListBuilder_build_closure, A.CreditListBuilder_build__closure, A.CreditPdfScreen_build_closure, A.CreditScreen_build_closure8, A.CreditScreen_build_closure5, A.CreditScreenBuilder_build_closure, A._CreditEditState_build_closure0, A.CreditEditDetailsScreen_build_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1, A.CreditEditItemsScreen_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2, A.CreditEditNotesScreen_build_closure, A.CreditEditPDFScreen_build_closure, A.CreditEditScreen_build_closure, A.CreditViewScreen_build_closure, A.CreditViewVM_CreditViewVM$fromStore_closure1, A.DashboardActivity_build_closure0, A.DashboardActivity_build_closure, A._DashboardDateRangePickerState_build_closure2, A._DashboardDateRangePickerState_build_closure3, A._DashboardDateRangePickerState_build_closure6, A._DashboardDateRangePickerState_build_closure7, A.DashboardPanels__header_closure, A.DashboardPanels__paymentChart_closure0, A.DashboardPanels__quoteChart_closure0, A.DashboardPanels__taskChart_closure0, A.DashboardPanels__expenseChart_closure0, A.DashboardPanels_build__runningTasks__closure, A.DashboardPanels_build_closure, A.__DashboardPanelState_build__closure0, A.__DashboardPanelState_build__closure1, A.__DashboardPanelState_build__closure, A.__DashboardPanelState_build__closure2, A.__DashboardPanelState_build__closure4, A.__DashboardPanelState_build__closure5, A.__DashboardPanelState_build__closure3, A.__DashboardPanelState_build__closure6, A._InvoiceChart_build_closure0, A._CustomTabBarView_build_closure, A.DashboardScreenBuilder_build_closure, A.DashboardVM_fromStore_closure1, A.InvoiceSidebar_build_closure, A.InvoiceSidebar_build_closure0, A.InvoiceSidebar_build_closure1, A.InvoiceSidebar_build_closure2, A.InvoiceSidebar_build_closure3, A.InvoiceSidebar_build_closure4, A.PaymentSidebar_build_closure, A.PaymentSidebar_build_closure0, A.PaymentSidebar_build_closure1, A.PaymentSidebar_build_closure2, A.QuoteSidebar_build_closure, A.QuoteSidebar_build_closure0, A.QuoteSidebar_build_closure1, A.QuoteSidebar_build_closure2, A.QuoteSidebar_build_closure3, A.QuoteSidebar_build_closure4, A.TaskSidebar_build_closure, A.TaskSidebar_build_closure0, A.TaskSidebar_build_closure1, A.TaskSidebar_build_closure2, A.TaskSidebar_build_closure3, A.TaskSidebar_build_closure4, A.ExpenseSidbar_build_closure, A.ExpenseSidbar_build_closure0, A.ExpenseSidbar_build_closure1, A.ExpenseSidbar_build_closure2, A.DesignListBuilder_build_closure, A.DesignListBuilder_build__closure, A.DesignScreen_build_closure8, A.DesignScreen_build_closure5, A.DesignScreenBuilder_build_closure, A.DesignEditScreen_build_closure, A.DesignViewScreen_build_closure, A.DocumentListBuilder_build_closure, A.DocumentListBuilder_build__closure, A.DocumentScreen_build_closure8, A.DocumentScreen_build_closure5, A.DocumentScreenBuilder_build_closure, A.DocumentEditScreen_build_closure, A.DocumentViewScreen_build_closure, A._ExpenseEditState_build_closure0, A.ExpenseEditDetailsState_build_closure0, A.ExpenseEditDetailsState_build_closure5, A.ExpenseEditDetailsState_build_closure18, A.ExpenseEditDetailsState_build_closure21, A.ExpenseEditSettingsState_build_closure2, A.ExpenseEditScreen_build_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3, A.ExpenseListItem_build_closure, A.ExpenseListItem_build__closure0, A.ExpenseListBuilder_build_closure, A.ExpenseListBuilder_build__closure, A.ExpenseScreen_build_closure15, A.ExpenseScreen_build_closure14, A.ExpenseScreen_build_closure10, A.ExpenseScreen_build_closure11, A.ExpenseScreenBuilder_build_closure, A.ExpenseViewScreen_build_closure, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure0, A.ExpenseCategoryEditScreen_build_closure, A.ExpenseCategoryListBuilder_build_closure, A.ExpenseCategoryListBuilder_build__closure, A.ExpenseCategoryScreen_build_closure8, A.ExpenseCategoryScreen_build_closure5, A.ExpenseCategoryScreenBuilder_build_closure, A.ExpenseCategoryViewScreen_build_closure, A.GroupEditScreen_build_closure, A.GroupListBuilder_build_closure, A.GroupListBuilder_build__closure, A.GroupSettingsScreen_build_closure4, A.GroupSettingsScreen_build_closure1, A.GroupScreenBuilder_build_closure, A.GroupViewScreen_build_closure, A.GroupViewVM_GroupViewVM$fromStore_closure0, A._InvoiceEditState_build_closure0, A.InvoiceEditContacts_build_closure, A.InvoiceEditContacts_build_closure1, A.InvoiceEditContactsScreen_build_closure, A.InvoiceEditDesktopState_build_closure9, A.InvoiceEditDesktopState_build_closure14, A.InvoiceEditDesktopState_build_closure16, A.InvoiceEditDesktopState_build_closure18, A.InvoiceEditDesktopState_build_closure25, A.InvoiceEditDesktopState_build__closure2, A.InvoiceEditDetailsState_build_closure7, A.InvoiceEditDetailsState_build_closure12, A.InvoiceEditDetailsState_build_closure14, A.InvoiceEditDetailsState_build_closure16, A.InvoiceEditDetailsState_build_closure26, A.InvoiceEditDetailsScreen_build_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1, A._InvoiceEditItemsDesktopState_build_closure2, A._InvoiceEditItemsDesktopState_build_closure3, A._InvoiceEditItemsDesktopState_build___closure14, A.InvoiceEditItemsScreen_build_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2, A.InvoiceEditNotesScreen_build_closure, A.InvoiceEditPDFScreen_build_closure, A.InvoiceEditScreen_build_closure, A._InvoiceItemSelectorState_build__productList_closure, A._InvoiceItemSelectorState_build__taskList_closure, A._InvoiceItemSelectorState_build__expenseList_closure, A.InvoiceEmailScreen_build_closure, A.InvoiceListItem_build_closure, A.InvoiceListItem_build__closure0, A.InvoiceListBuilder_build_closure, A.InvoiceListBuilder_build__closure, A.InvoicePdfScreen_build_closure, A.InvoiceScreen_build_closure17, A.InvoiceScreen_build_closure16, A.InvoiceScreen_build_closure12, A.InvoiceScreen_build_closure13, A.InvoiceScreenBuilder_build_closure, A._InvoiceViewActivityState_build_closure0, A._InvoiceViewActivityState_build_closure, A._InvoiceViewHistoryState_build_closure0, A._InvoiceViewHistoryState_build_closure1, A._InvoiceViewHistoryState_build_closure2, A.InvoiceOverview_build_surchargeRow, A.InvoiceOverview_build_closure3, A.InvoiceViewScreen_build_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure1, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure3, A._PaymentEditState_build_closure6, A.PaymentEditScreen_build_closure, A.PaymentListItem_build_closure, A.PaymentListItem_build__closure0, A.PaymentListBuilder_build_closure, A.PaymentListBuilder_build__closure, A.PaymentScreen_build_closure8, A.PaymentScreen_build_closure5, A.PaymentScreenBuilder_build_closure, A._PaymentRefundState_build_closure0, A.PaymentRefundScreen_build_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure0, A.PaymentViewScreen_build_closure, A.PaymentTermEditScreen_build_closure, A.PaymentTermListBuilder_build_closure, A.PaymentTermListBuilder_build__closure, A.PaymentTermScreen_build_closure8, A.PaymentTermScreen_build_closure5, A.PaymentTermScreenBuilder_build_closure, A.PaymentTermViewScreen_build_closure, A.ProductEditScreen_build_closure, A.ProductListItem_build_closure, A.ProductListItem_build__closure0, A.ProductListBuilder_build_closure, A.ProductListBuilder_build__closure, A.ProductScreen_build_closure8, A.ProductScreen_build_closure5, A.ProductScreenBuilder_build_closure, A.ProductViewScreen_build_closure, A.ProductViewVM_ProductViewVM$fromStore_closure0, A._ProjectEditState_build__closure4, A.ProjectEditScreen_build_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure2, A.ProjectListItem_build_closure, A.ProjectListItem_build__closure0, A.ProjectListBuilder_build_closure, A.ProjectListBuilder_build__closure, A.ProjectScreen_build_closure8, A.ProjectScreen_build_closure5, A.ProjectScreenBuilder_build_closure, A.ProjectViewScreen_build_closure, A.ProjectViewVM_ProjectViewVM$fromStore_closure1, A._PurchaseOrderEditState_build_closure0, A.PurchaseOrderEditDetailsScreen_build_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1, A.PurchaseOrderEditItemsScreen_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2, A.PurchaseOrderEditNotesScreen_build_closure, A.PurchaseOrderEditPDFScreen_build_closure, A.PurchaseOrderEditScreen_build_closure, A.PurchaseOrderEmailScreen_build_closure, A.PurchaseOrderListItem_build_closure, A.PurchaseOrderListItem_build__closure0, A.PurchaseOrderListBuilder_build_closure, A.PurchaseOrderListBuilder_build__closure, A.PurchaseOrderPdfScreen_build_closure, A.PurchaseOrderScreen_build_closure14, A.PurchaseOrderScreen_build_closure13, A.PurchaseOrderScreen_build_closure9, A.PurchaseOrderScreen_build_closure10, A.PurchaseOrderScreenBuilder_build_closure, A.PurchaseOrderViewScreen_build_closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1, A.QuoteEditDetailsScreen_build_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1, A.QuoteEditItemsScreen_build_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2, A.QuoteEditNotesScreen_build_closure, A.QuoteEditPDFScreen_build_closure, A.QuoteEditScreen_build_closure, A._QuoteEditState_build_closure0, A.QuoteEmailScreen_build_closure, A.QuoteListItem_build_closure, A.QuoteListItem_build__closure0, A.QuoteListBuilder_build_closure, A.QuoteListBuilder_build__closure, A.QuotePdfScreen_build_closure, A.QuoteScreen_build_closure15, A.QuoteScreen_build_closure14, A.QuoteScreen_build_closure10, A.QuoteScreen_build_closure11, A.QuoteScreenBuilder_build_closure, A.QuoteViewScreen_build_closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure1, A.RecurringExpenseEditScreen_build_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3, A.RecurringExpenseListItem_build_closure, A.RecurringExpenseListItem_build__closure0, A.RecurringExpenseListBuilder_build_closure, A.RecurringExpenseListBuilder_build__closure, A.RecurringExpenseScreen_build_closure8, A.RecurringExpenseScreen_build_closure5, A.RecurringExpenseScreenBuilder_build_closure, A.RecurringExpenseViewScreen_build_closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0, A._RecurringInvoiceEditState_build_closure0, A.RecurringInvoiceEditDetailsScreen_build_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1, A.RecurringInvoiceEditItemsScreen_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2, A.RecurringInvoiceEditNotesScreen_build_closure, A.RecurringInvoiceEditPDFScreen_build_closure, A.RecurringInvoiceEditScreen_build_closure, A.RecurringInvoiceListItem_build_closure, A.RecurringInvoiceListItem_build__closure0, A.RecurringInvoiceListBuilder_build_closure, A.RecurringInvoiceListBuilder_build__closure, A.RecurringInvoicePdfScreen_build_closure, A.RecurringInvoiceScreen_build_closure14, A.RecurringInvoiceScreen_build_closure15, A.RecurringInvoiceScreen_build_closure11, A.RecurringInvoiceScreen_build_closure10, A.RecurringInvoiceScreenBuilder_build_closure, A.RecurringInvoiceViewScreen_build_closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1, A.clientReport_closure2, A.contactReport_closure2, A.creditReport_closure2, A.documentReport__getRow, A.documentReport_closure1, A.documentReport_closure2, A.documentReport_closure3, A.documentReport_closure4, A.documentReport_closure6, A.expenseReport_closure2, A.lineItemReport_closure8, A.invoiceReport_closure2, A.taxReport_closure1, A.paymentReport_closure2, A.paymentTaxReport_closure1, A.productReport_closure2, A.profitAndLossReport_closure1, A.purchaseOrderReport_closure2, A.lineItemReport_closure2, A.quoteReport_closure2, A.recurringExpenseReport_closure2, A.recurringInvoiceReport_closure2, A.ReportCharts_build_closure, A.ReportCharts_build_closure1, A.ReportCharts_build_closure2, A.ReportCharts_build_closure4, A.ReportCharts_build_closure5, A.ReportCharts_build_closure7, A.ReportCharts_build_closure8, A.ReportsScreen_build_closure1, A.ReportsScreen_build_closure14, A.ReportsScreen_build_closure15, A.ReportsScreen_build_closure21, A._ReportDataTableState_initState_closure, A._ReportDataTableState_build_closure, A.TotalsDataTable_build_closure, A.ReportDataTableSource_getRow_closure, A.ReportResult_tableFilters__closure2, A.ReportResult_totalColumns_closure0, A.ReportResult_totalRows_closure0, A.ReportResult_totalRows__closure0, A.ReportResult_totalRows_closure2, A.ReportsScreenBuilder_build_closure, A.ReportsScreenVM_fromStore_closure2, A.ReportsScreenVM_fromStore_closure3, A.ReportsScreenVM_fromStore_closure1, A.ReportsScreenVM_fromStore_closure, A.ReportsScreenVM_fromStore__closure3, A.calculateReportTotals_closure, A.taskReport_closure2, A._AccountOverview_build___closure0, A._AccountOverview_build___closure, A.AccountManagementScreen_build_closure, A.ClientPortalScreen_build_closure, A.CompanyDetailsScreen_build_closure, A.CompanyDetailsVM_fromStore_closure2, A.CompanyDetailsVM_fromStore_closure5, A.CreditCardsAndBanksScreen_build_closure, A.CustomFieldsScreen_build_closure, A.DataVisualizationsScreen_build_closure, A._DeviceSettingsState_build_closure6, A.DeviceSettingsScreen_build_closure, A.DeviceSettingsVM_fromStore_closure1, A.DeviceSettingsVM_fromStore_closure7, A.DeviceSettingsVM_fromStore_closure4, A.DeviceSettingsVM_fromStore_closure5, A.DeviceSettingsVM_fromStore_closure8, A.DeviceSettingsVM_fromStore_closure14, A.DeviceSettingsVM_fromStore_closure12, A.DeviceSettingsVM_fromStore_closure13, A.DeviceSettingsVM_fromStore_closure17, A.DeviceSettingsVM_fromStore_closure15, A.DeviceSettingsVM_fromStore_closure16, A.DeviceSettingsVM_fromStore_closure6, A.DeviceSettingsVM_fromStore_closure9, A.DeviceSettingsVM_fromStore_closure3, A.DeviceSettingsVM_fromStore_closure10, A.DeviceSettingsVM_fromStore_closure2, A.DeviceSettingsVM_fromStore_closure11, A.EmailSettingsScreen_build_closure, A.ExpenseSettingsScreen_build_closure, A._GeneratedNumbersState_build_closure4, A._GeneratedNumbersState_build_closure6, A._GeneratedNumbersState_build_closure7, A._GeneratedNumbersState_build_closure8, A._GeneratedNumbersState_build_closure9, A._GeneratedNumbersState_build_closure10, A._GeneratedNumbersState_build_closure11, A._GeneratedNumbersState_build_closure12, A._GeneratedNumbersState_build_closure13, A._GeneratedNumbersState_build_closure14, A._GeneratedNumbersState_build_closure15, A._GeneratedNumbersState_build_closure16, A._GeneratedNumbersState_build_closure17, A._GeneratedNumbersState_build_closure18, A.GeneratedNumbersScreen_build_closure, A._FieldMapper_build_closure, A.ImportExportScreen_build_closure, A.InvoiceDesignScreen_build_closure, A.InvoiceDesignVM_fromStore_closure0, A._LocalizationSettingsState_build_closure0, A._LocalizationSettingsState_build_closure8, A.LocalizationScreen_build_closure, A.PaymentsSettingsScreen_build_closure, A.ProductSettingsScreen_build_closure, A.SettingsListBuilder_build_closure, A.SettingsScreenBuilder_build_closure, A._SettingsWizardState__onSavePressed_closure0, A._SettingsWizardState_build_closure6, A.TaskSettingsScreen_build_closure, A.TaxSettingsScreen_build_closure, A._TemplatesAndRemindersState_build_closure6, A.TemplatesAndRemindersScreen_build_closure, A.TemplatesAndRemindersVM_fromStore_closure1, A._UserDetailsState_build_closure14, A.UserDetailsScreen_build_closure, A.UserDetailsVM_fromStore___closure2, A.UserDetailsVM_fromStore___closure1, A.UserDetailsVM_fromStore___closure0, A.UserDetailsVM_fromStore___closure6, A.UserDetailsVM_fromStore__closure6, A.UserDetailsVM_fromStore___closure7, A.UserDetailsVM_fromStore___closure3, A.UserDetailsVM_fromStore___closure, A.UserDetailsVM_fromStore__closure4, A.UserDetailsVM_fromStore___closure4, A.UserDetailsVM_fromStore____closure7, A.WorkflowSettingsScreen_build_closure, A.SubscriptionEditScreen_build_closure, A.SubscriptionListBuilder_build_closure, A.SubscriptionListBuilder_build__closure, A.SubscriptionScreen_build_closure8, A.SubscriptionScreen_build_closure5, A.SubscriptionScreenBuilder_build_closure, A.SubscriptionViewScreen_build_closure, A._UpdateDialogState_updateApp_closure, A._TaskEditState_build_closure0, A._TaskEditDesktopState_build_closure7, A._TaskEditDesktopState_build_closure9, A.TaskEditDetailsScreen_build_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1, A.TimeEditDetailsState_build_closure, A.TimeEditDetailsState_build_closure2, A.TaskEditTimesScreen_build_closure, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1, A.TaskEditScreen_build_closure, A.KanbanViewState__initBoard_closure0, A.KanbanViewState__initBoard__closure, A.KanbanViewState_build__closure5, A.KanbanViewState_build__closure, A.KanbanViewState_build__closure1, A.KanbanViewState_build___closure1, A._KanbanViewBuilderState_build_closure, A.TaskListItem_build_closure0, A.TaskListItem_build__closure0, A.TaskListBuilder_build_closure, A.TaskListBuilder_build__closure, A.TaskScreen_build_closure15, A.TaskScreen_build_closure14, A.TaskScreen_build_closure11, A.TaskScreen_build_closure10, A.TaskScreenBuilder_build_closure, A.TaskViewScreen_build_closure, A.TaskViewVM_TaskViewVM$fromStore_closure2, A.TaskStatusEditScreen_build_closure, A.TaskStatusListBuilder_build_closure, A.TaskStatusListBuilder_build__closure, A.TaskStatusScreen_build_closure8, A.TaskStatusScreen_build_closure5, A.TaskStatusScreenBuilder_build_closure, A.TaskStatusViewScreen_build_closure, A.TaxRateEditScreen_build_closure, A.TaxRateListBuilder_build_closure, A.TaxRateListBuilder_build__closure, A.TaxRateSettingsScreen_build_closure4, A.TaxRateSettingsScreen_build_closure1, A.TaxRateScreenBuilder_build_closure, A.TaxRateViewScreen_build_closure, A.TokenEditScreen_build_closure, A.TokenEditVM_TokenEditVM$fromStore___closure, A.TokenListBuilder_build_closure, A.TokenListBuilder_build__closure, A.TokenScreen_build_closure8, A.TokenScreen_build_closure5, A.TokenScreenBuilder_build_closure, A.TokenViewScreen_build_closure, A._UserEditState_build_closure2, A.UserEditScreen_build_closure, A.UserEditVM_UserEditVM$fromStore___closure, A.UserListBuilder_build_closure, A.UserListBuilder_build__closure, A.UserScreen_build_closure8, A.UserScreen_build_closure5, A.UserScreenBuilder_build_closure, A.UserViewScreen_build_closure, A.VendorEditContactsScreen_build_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2, A.VendorEditScreen_build_closure, A.VendorListItem_build_closure, A.VendorListItem_build__closure0, A.VendorListBuilder_build_closure, A.VendorListBuilder_build__closure, A.VendorScreen_build_closure8, A.VendorScreen_build_closure5, A.VendorScreenBuilder_build_closure, A._VendorViewFullwidthState_build_closure, A.VendorViewScreen_build_closure, A.VendorViewVM_VendorViewVM$fromStore_closure1, A.WebhookEditScreen_build_closure, A.WebhookViewScreen_build_closure, A.WebhookListBuilder_build_closure, A.WebhookListBuilder_build__closure, A.WebhookScreen_build_closure8, A.WebhookScreen_build_closure5, A.WebhookScreenBuilder_build_closure, A.passwordCallback_closure1, A.passwordCallback_closure2, A._ExampleEditorState__showImageToolbar__closure, A.memo2_closure, A.RenderOverflowView_performFlexibleLayout_closure, A.RenderOverflowView_paint_defaultPaint, A.RenderOverflowView_hitTestChildren__closure, A.OverflowView$_all_closure, A.decodePermissionRequestResult_closure, A.PdfPreviewCustomState__createPreview_closure, A._QrImageViewState_build_closure, A.hashObjects_closure0, A.combineReducers_closure, A.RoundedLoadingButtonState_build_closure, A.Subject_addStream_closure1, A.RouteObserverBreadcrumb__formatArgs_closure, A.Highlighter__collateLines_closure0, A.ReactiveModelBase__streamSubscription_closure1, A.OnX_listenTo_closure, A.OnX_listenTo__closure2, A.On_On_closure, A.On_On$or_closure, A.CommonEditorOperations_deleteUpstream_closure, A.CommonEditorOperations_deleteUpstream_closure0, A.CommonEditorOperations__replaceBlockNodeWithEmptyParagraphAndCollapsedSelection_closure, A.CommonEditorOperations_convertParagraphByPatternMatching_closure, A.CommonEditorOperations_convertParagraphByPatternMatching_closure0, A.CommonEditorOperations_convertParagraphByPatternMatching_closure1, A.CommonEditorOperations_convertParagraphByPatternMatching_closure2, A.CommonEditorOperations_convertParagraphByPatternMatching_closure3, A.CommonEditorOperations__processUrlNode_closure, A.CommonEditorOperations_insertBlockLevelNewline_closure, A.CommonEditorOperations_insertBlockLevelNewline_closure0, A.CommonEditorOperations_convertToListItem_closure, A.CommonEditorOperations_convertToBlockquote_closure, A.CommonEditorOperations_convertToParagraph_closure, A._DocumentMouseInteractorState__buildCursorStyle_closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure0, A.defaultStylesheet_closure, A.defaultStylesheet_closure0, A.defaultStylesheet_closure1, A.defaultStylesheet_closure2, A.defaultStylesheet_closure3, A.defaultStylesheet_closure4, A.defaultStylesheet_closure5, A.defaultStylesheet_closure6, A.defaultStylesheet_closure7, A.defaultStylesheet_closure8, A.ListenableBuilder_build_closure, A.SuperTextState_build_closure, A.SuperTextState_build_closure0]); _inheritMany(A._Enum, [A.BrowserEngine, A.OperatingSystem, A.MutatorType, A._ParagraphCommandType, A.PersistedSurfaceState, A.DebugEngineInitializationState, A._CheckableKind, A.Role, A.AccessibilityMode, A.GestureMode, A.EnabledState, A.LineCharProperty, A.LineBreakType, A._ComparisonResult, A.WordCharProperty, A.TextCapitalization, A.TransformKind, A.ClipOp, A.PathFillType, A.KeyEventType, A.StrokeCap, A.StrokeJoin, A.PaintingStyle, A.BlendMode, A.Clip, A.BlurStyle, A.FilterQuality, A.ImageByteFormat, A.PixelFormat, A.AppLifecycleState, A.PointerChange, A.PointerDeviceKind, A.PointerSignalKind, A.FontStyle, A.PlaceholderAlignment, A.TextAlign, A.TextBaseline, A.TextDecorationStyle, A.TextLeadingDistribution, A.TextDirection, A.TextAffinity, A.BoxHeightStyle, A.BoxWidthStyle, A.TileMode, A.Brightness, A.SpanMarkerType, A.AttributionVisitEvent, A.ImageRenderMethodForWeb, A.BarGroupingType, A.AxisOrientation, A._PixelVerticalDirection, A.RangeBandType, A.StepSizeType, A.TickLabelAnchor, A.TickLabelJustification, A.CalendarField, A.BehaviorPosition, A.OutsideJustification, A.InsideJustification, A.LegendTapHandling, A.LegendDefaultMeasure, A.LinePointHighlighterFollowLineType, A.SelectionMode, A.SelectionTrigger, A.FillPatternType, A.SelectionModelType, A.LayoutPosition, A.TextDirection0, A.MaxWidthStrategy, A.GestureType, A._HorizontalJustification, A.MessageLevel, A.FileType, A.AnimationStatus, A._AnimationDirection, A.AnimationBehavior, A._TrainHoppingMode, A.DiagnosticLevel, A.DiagnosticsTreeStyle, A._WordWrapParseMode, A._LicenseEntryWithLineBreaksParserState, A.TargetPlatform, A.GestureDisposition, A._ForceState, A._DragState, A.DragStartBehavior, A.GestureRecognizerState, A._ScaleState, A._ActionLevel, A._LayoutMode, A._Focus, A.ThemeMode, A._CornerId, A.ButtonTextTheme, A.ButtonBarLayoutBehavior, A.DatePickerEntryMode, A.DatePickerMode, A.DrawerAlignment, A._FloatingActionButtonType, A._HighlightType, A.FloatingLabelBehavior, A._DecorationSlot, A.ListTileStyle, A.ListTileControlAffinity, A._ListTileSlot, A.MaterialType, A.MaterialState, A.PopupMenuPosition, A._ActivityIndicatorType, A._RefreshIndicatorMode, A.RefreshIndicatorTriggerMode, A._ScaffoldSlot, A.SnackBarClosedReason, A._SwitchType, A._SwitchListTileType, A.MaterialTapTargetSize, A.DayPeriod, A.TimeOfDayFormat, A.HourFormat, A._TimePickerMode, A.TimePickerEntryMode, A.TooltipTriggerMode, A.ScriptCategory, A.RenderComparison, A.Axis0, A.VerticalDirection, A.AxisDirection, A.BorderStyle, A.BoxShape, A.BoxFit, A.ImageRepeat, A.TextOverflow, A.TextWidthBasis, A.SpringType, A.RenderAnimatedSizeState, A._IntrinsicDimension, A.FlexFit, A.MainAxisSize, A.MainAxisAlignment, A.CrossAxisAlignment, A.PlatformViewHitTestBehavior, A.HitTestBehavior, A.DecorationPosition, A.GrowthDirection, A.StackFit, A.TableCellVerticalAlignment, A.CacheExtentStyle, A.ScrollDirection, A.WrapAlignment, A.WrapCrossAlignment, A.SchedulerPhase, A.DebugSemanticsDumpOrder, A.KeyDataTransitMode, A.KeyboardSide, A.ModifierKey, A.SystemSoundType, A.MaxLengthEnforcement, A.SmartDashesType, A.SmartQuotesType, A.TextInputAction, A.TextCapitalization0, A.FloatingCursorDragState, A.SelectionChangedCause, A.CrossFadeState, A.ConnectionState, A.AutofillContextAction, A.KeyEventResult, A.UnfocusDisposition, A.FocusHighlightMode, A.FocusHighlightStrategy, A.TraversalDirection, A.AutovalidateMode, A._StateLifecycle, A._ElementLifecycle, A.HeroFlightDirection, A._GestureType, A.Orientation, A.NavigationMode, A._ToolbarSlot, A.RoutePopDisposition, A._RouteLifecycle, A._RouteRestorationType, A.OverflowBarAlignment, A._GlowState, A._StretchState, A.AndroidOverscrollIndicator, A.ScrollPositionAlignmentPolicy, A.ScrollViewKeyboardDismissBehavior, A.ScrollIncrementType, A.ScrollbarOrientation, A.TextSelectionHandleType, A.ActionPaneType, A.GestureDirection, A.StyledToastAnimation, A.SignInOption, A.CropAspectRatioPreset, A.CropStyle, A.ImageCompressFormat, A.CameraDevice, A.ImageSource, A.PluralCase, A.ClientReportFields, A.ContactReportFields, A.CreditReportFields, A.DocumentReportFields, A.ExpenseReportFields, A.InvoiceItemReportFields, A.InvoiceReportFields, A.TaxRateReportFields0, A.PaymentReportFields, A.TaxRateReportFields, A.ProductReportFields, A.ProfitAndLossReportFields, A.PurchaseOrderReportFields, A.QuoteItemReportFields, A.QuoteReportFields, A.RecurringExpenseReportFields, A.RecurringInvoiceReportFields, A.ReportColumnType, A.TaskReportFields, A.UpdateState, A.FormatNumberType, A._TextType, A.AnimationDirection, A._PlaceholderType, A.OverflowViewLayoutBehavior, A.PermissionStatus0, A.QrCodeElement, A.FinderPatternPosition, A.QrEyeShape, A.QrDataModuleShape, A.QrValidationStatus, A.ButtonState, A._MissingCase, A.SignInWithAppleButtonStyle, A.IconAlignment, A.AppleIDAuthorizationScopes, A.AuthorizationErrorCode, A.SelectionType, A.SelectionType0, A._DragMode, A.ExecutionInstruction, A.ListItemType, A.DocumentInputSource, A.DocumentGestureMode, A.ViewportEdge, A.HandleType]); _inherit(A.CanvasPool, A._SaveStackTracking); _inherit(A.RecordingCkCanvas, A.CkCanvas); _inheritMany(A.CkPaintCommand, [A.CkClearCommand, A.CkSaveCommand, A.CkRestoreCommand, A.CkRestoreToCountCommand, A.CkTranslateCommand, A.CkScaleCommand, A.CkRotateCommand, A.CkTransformCommand, A.CkClipRectCommand, A.CkDrawArcCommand, A.CkClipRRectCommand, A.CkClipPathCommand, A.CkDrawLineCommand, A.CkDrawPaintCommand, A.CkDrawRectCommand, A.CkDrawRRectCommand, A.CkDrawDRRectCommand, A.CkDrawCircleCommand, A.CkDrawPathCommand, A.CkDrawShadowCommand, A.CkDrawImageRectCommand, A.CkDrawParagraphCommand, A.CkDrawPictureCommand, A.CkSaveLayerCommand, A.CkSaveLayerWithFilterCommand]); _inheritMany(J.Interceptor, [J.JavaScriptObject, J.JSBool, J.JSNull, J.JSArray, J.JSNumber, J.JSString, A.NativeByteBuffer, A.NativeTypedData]); _inheritMany(J.JavaScriptObject, [J.LegacyJavaScriptObject, A.EventTarget, A.AccessibleNodeList, A.Event, A.Blob, A.BluetoothRemoteGattDescriptor, A.Body, A.CanvasRenderingContext2D, A.Client, A.Credential, A.CredentialUserData, A.CssRule, A.CssStyleValue, A.CssTransformComponent, A._CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase, A.StyleSheet, A.DataTransferItemList, A.ReportBody, A.DomError, A.DomException, A._DomRectList_JavaScriptObject_ListMixin, A.DomRectReadOnly, A._DomStringList_JavaScriptObject_ListMixin, A.DomTokenList, A.Entry, A._FileList_JavaScriptObject_ListMixin, A.FileSystem, A.FontFace, A.Gamepad, A.GamepadButton, A.History, A._HtmlCollection_JavaScriptObject_ListMixin, A.ImageData, A.Location, A.MediaError, A.MediaList, A._MidiInputMap_JavaScriptObject_MapMixin, A._MidiOutputMap_JavaScriptObject_MapMixin, A.MimeType, A._MimeTypeArray_JavaScriptObject_ListMixin, A.MutationObserver, A.MutationRecord, A.NavigatorConcurrentHardware, A.NavigatorUserMediaError, A._NodeList_JavaScriptObject_ListMixin, A.OverconstrainedError, A.PerformanceEntry, A.PerformanceServerTiming, A.Plugin, A._PluginArray_JavaScriptObject_ListMixin, A.PositionError, A.RelatedApplication, A.RtcLegacyStatsReport, A._RtcStatsReport_JavaScriptObject_MapMixin, A.SpeechGrammar, A._SpeechGrammarList_JavaScriptObject_ListMixin, A.SpeechRecognitionResult, A.SpeechSynthesisVoice, A._Storage_JavaScriptObject_MapMixin, A._TextTrackCueList_JavaScriptObject_ListMixin, A.TimeRanges, A.Touch, A._TouchList_JavaScriptObject_ListMixin, A.TrackDefaultList, A.Url, A.VideoTrack, A.VttRegion, A.__CssRuleList_JavaScriptObject_ListMixin, A.__GamepadList_JavaScriptObject_ListMixin, A.__NamedNodeMap_JavaScriptObject_ListMixin, A._Report, A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin, A.__StyleSheetList_JavaScriptObject_ListMixin, A.Cursor, A.Index, A.KeyRange, A.ObjectStore, A.Observation, A.Angle, A.Length, A._LengthList_JavaScriptObject_ListMixin, A.Number, A._NumberList_JavaScriptObject_ListMixin, A.PointList, A._StringList_JavaScriptObject_ListMixin, A.Transform0, A._TransformList_JavaScriptObject_ListMixin, A.AudioBuffer, A.AudioParam, A._AudioParamMap_JavaScriptObject_MapMixin, A.AudioTrack, A.ActiveInfo]); _inheritMany(J.LegacyJavaScriptObject, [A.H5vcc, A.CanvasKit, A.CanvasKitInitOptions, A.CanvasKitInitPromise, A.ColorSpace, A.SkWebGLContextOptions, A.SkSurface, A.SkGrContext, A.SkFontSlantEnum, A.SkFontSlant, A.SkFontWeightEnum, A.SkFontWeight, A.SkAffinityEnum, A.SkAffinity, A.SkTextDirectionEnum, A.SkTextDirection, A.SkTextAlignEnum, A.SkTextAlign, A.SkTextHeightBehaviorEnum, A.SkTextHeightBehavior, A.SkRectHeightStyleEnum, A.SkRectHeightStyle, A.SkRectWidthStyleEnum, A.SkRectWidthStyle, A.SkVertexModeEnum, A.SkVertexMode, A.SkPointModeEnum, A.SkPointMode, A.SkClipOpEnum, A.SkClipOp, A.SkFillTypeEnum, A.SkFillType, A.SkPathOpEnum, A.SkPathOp, A.SkBlurStyleEnum, A.SkBlurStyle, A.SkStrokeCapEnum, A.SkStrokeCap, A.SkPaintStyleEnum, A.SkPaintStyle, A.SkBlendModeEnum, A.SkBlendMode, A.SkStrokeJoinEnum, A.SkStrokeJoin, A.SkTileModeEnum, A.SkTileMode, A.SkFilterModeEnum, A.SkFilterMode, A.SkMipmapModeEnum, A.SkMipmapMode, A.SkAlphaTypeEnum, A.SkAlphaType, A.SkColorTypeEnum, A.SkColorType, A.SkAnimatedImage, A.SkImage, A.SkShaderNamespace, A.SkShader, A.SkMaskFilterNamespace, A.SkPaint, A.CkFilterOptions, A.SkMaskFilter, A.SkColorFilterNamespace, A.SkColorFilter, A.SkImageFilterNamespace, A.SkImageFilter, A.SkPathNamespace, A._NativeFloat32ArrayType, A.SkFloat32List, A.SkPath, A.SkContourMeasureIter, A.SkContourMeasure, A.SkPictureRecorder, A.SkCanvas, A.SkPicture, A.SkParagraphBuilderNamespace, A.SkParagraphBuilder, A.SkParagraphStyle, A.SkParagraphStyleProperties, A.SkTextStyle, A.SkTextDecorationStyleEnum, A.SkTextDecorationStyle, A.SkTextBaselineEnum, A.SkTextBaseline, A.SkPlaceholderAlignmentEnum, A.SkPlaceholderAlignment, A.SkTextStyleProperties, A.SkStrutStyleProperties, A.SkFontStyle, A.SkTextShadow, A.SkFontFeature, A.SkTypeface, A.SkFont, A.SkFontMgr, A.SkLineMetrics, A.SkParagraph, A.SkTextPosition, A.SkTextRange, A.SkVertices, A.SkTonalColors, A.SkFontMgrNamespace, A.TypefaceFontProviderNamespace, A.SkTypefaceFactory, A.SkDeletable, A.JsConstructor, A.SkObjectFinalizationRegistry, A.SkData, A.SkImageInfo, A.SkPartialImageInfo, A.JsFlutterConfiguration, A.FlutterEngineInitializer, A.InitializeEngineFnParameters, A.FlutterAppRunner, A.RunAppFnParameters, A.FlutterApp, A.Promise, A.JsUrlStrategy, A.JsPromise, A.ImageDecoder, A.ImageDecoderOptions, A.DecodeResult, A.DecodeOptions, A.VideoFrame, A.ImageTrackList, A.ImageTrack, J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction, A.JsUrlStrategy0, A.LoadConfig, A.GoogleAuthInitFailureError, A.GoogleAuthSignInError, A.OfflineAccessResponse, A.GoogleAuth, A._GoogleAuth, A.IsSignedIn, A.CurrentUser, A.SigninOptions, A.OfflineAccessOptions, A.ClientConfig, A.SigninOptionsBuilder, A.BasicProfile, A.AuthResponse, A.AuthorizeConfig, A.AuthorizeResponse, A.GoogleUser, A._GoogleUser, A.Promise0, A.Promise1, A.BindConfiguration, A.Data, A.Boundary, A.ViewPort, A.Options, A.CroppieJS, A.AccountInfo, A.AuthenticationResult0, A.Configuration0, A.BrowserAuthOptions0, A.CacheOptions, A.BrowserSystemOptions, A.LoggerOptions, A.JsError, A.EventMessage, A.Logger1, A.NavigationOptions, A.NetworkRequestOptions, A.NetworkResponse, A.PublicClientApplication0, A.CommonAuthorizationUrlRequest0, A.CommonEndSessionRequest0, A.CommonSilentFlowRequest, A.Promise2, A.Array, A.Object0, A.Reflect, A.PdfJs, A.Settings, A.PdfJsDocLoader, A.PdfJsDoc, A.PdfJsPage, A.PdfJsViewport, A.PdfJsRender, A.SignInWithAppleInitOptions, A.SignInResponseI, A.AuthorizationI, A.UserI, A.NameI]); _inheritMany(A.CkFilterOptions, [A._CkCubicFilterOptions, A._CkTransformFilterOptions]); _inherit(A.TypefaceFontProvider, A.SkFontMgr); _inheritMany(A.SkiaObject, [A.ManagedSkiaObject, A.SkiaObjectBox, A.CkParagraph]); _inheritMany(A.ManagedSkiaObject, [A.ManagedSkColorFilter, A.CkImageFilter, A.CkAnimatedImage, A.CkMaskFilter, A.CkPaint, A.CkPath, A.CkPicture, A.CkShader]); _inheritMany(A.CkColorFilter, [A.CkBlendModeColorFilter, A.CkMatrixColorFilter, A.CkComposeColorFilter]); _inheritMany(A.Iterable, [A.MutatorsStack, A._CastIterableBase, A.EfficientLengthIterable, A.MappedIterable, A.WhereIterable, A.ExpandIterable, A.TakeIterable, A.SkipIterable, A.SkipWhileIterable, A.FollowedByIterable, A.WhereTypeIterable, A._ConstantMapKeyIterable, A.IterableBase, A._StringAllMatchesIterable, A.LinkedList, A.DoubleLinkedQueue, A.Runes, A.StringCharacters, A._ReversedSeriesIterable, A.TimeStepIteratorFactory, A.ObserverList, A.HashedObserverList]); _inherit(A._CkMatrixImageFilter, A.CkImageFilter); _inheritMany(A.Layer, [A.ContainerLayer, A.PictureLayer0, A.PlatformViewLayer0]); _inheritMany(A.ContainerLayer, [A.RootLayer, A.BackdropFilterEngineLayer, A.ClipPathEngineLayer, A.ClipRectEngineLayer, A.ClipRRectEngineLayer, A.OpacityEngineLayer, A.TransformEngineLayer, A.PhysicalShapeEngineLayer]); _inherit(A.OffsetEngineLayer, A.TransformEngineLayer); _inherit(A.CkGradientLinear, A.CkShader); _inheritMany(A.Error, [A.CanvasKitError, A.LateError, A.ReachabilityError, A.NotNullableError, A.TypeError, A.JsNoSuchMethodError, A.UnknownJsTypeError, A.RuntimeError, A._Error, A.JsonUnsupportedObjectError, A.AssertionError, A.NullThrownError, A.ArgumentError, A.NoSuchMethodError, A.UnsupportedError, A.UnimplementedError, A.StateError, A.ConcurrentModificationError, A.CyclicInitializationError, A.BuiltValueNullFieldError, A.BuiltValueNestedFieldError, A.DeserializationError, A._FlutterError_Error_DiagnosticableTreeMixin, A.StoreProviderError, A.ConverterError, A.ValueStreamError]); _inheritMany(A.PersistedSurface, [A.PersistedContainerSurface, A.PersistedLeafSurface]); _inheritMany(A.PersistedContainerSurface, [A.PersistedBackdropFilter, A._PersistedClipRect_PersistedContainerSurface__DomClip, A._PersistedClipRRect_PersistedContainerSurface__DomClip, A._PersistedPhysicalShape_PersistedContainerSurface__DomClip, A.PersistedClipPath, A.PersistedOffset, A.PersistedOpacity, A.PersistedScene, A.PersistedTransform]); _inheritMany(A.EngineCanvas, [A.BitmapCanvas, A._DomCanvas_EngineCanvas_SaveElementStackTracking]); _inherit(A.PersistedClipRect, A._PersistedClipRect_PersistedContainerSurface__DomClip); _inherit(A.PersistedClipRRect, A._PersistedClipRRect_PersistedContainerSurface__DomClip); _inherit(A.PersistedPhysicalShape, A._PersistedPhysicalShape_PersistedContainerSurface__DomClip); _inherit(A.DomCanvas, A._DomCanvas_EngineCanvas_SaveElementStackTracking); _inheritMany(A.PersistedLeafSurface, [A.PersistedPicture, A.PersistedPlatformView]); _inheritMany(A.PaintCommand, [A.DrawCommand, A.PaintSave, A.PaintRestore, A.PaintTranslate, A.PaintScale, A.PaintRotate, A.PaintTransform]); _inheritMany(A.DrawCommand, [A.PaintClipRect, A.PaintClipRRect, A.PaintClipPath, A.PaintDrawLine, A.PaintDrawRect, A.PaintDrawRRect, A.PaintDrawDRRect, A.PaintDrawCircle, A.PaintDrawPath, A.PaintDrawShadow, A.PaintDrawImageRect, A.PaintDrawParagraph]); _inherit(A.GradientLinear, A.EngineGradient); _inherit(A._MatrixEngineImageFilter, A.EngineImageFilter); _inherit(A.HtmlBlobCodec, A.HtmlCodec); _inheritMany(A.BrowserHistory, [A.MultiEntriesBrowserHistory, A.SingleEntryBrowserHistory]); _inheritMany(A.UrlStrategy, [A.HashUrlStrategy, A.CustomUrlStrategy]); _inherit(A.BrowserPlatformLocation, A.PlatformLocation); _inherit(A.EnginePlatformDispatcher, A.PlatformDispatcher); _inheritMany(A._BaseAdapter, [A.__PointerAdapter__BaseAdapter__WheelEventListenerMixin, A._TouchAdapter, A.__MouseAdapter__BaseAdapter__WheelEventListenerMixin]); _inherit(A._PointerAdapter, A.__PointerAdapter__BaseAdapter__WheelEventListenerMixin); _inherit(A._MouseAdapter, A.__MouseAdapter__BaseAdapter__WheelEventListenerMixin); _inheritMany(A.RoleManager, [A.Checkable, A.ImageRoleManager, A.Incrementable, A.LabelAndValue, A.LiveRegion, A.Scrollable0, A.Tappable, A.TextField0]); _inheritMany(A.SemanticsEnabler, [A.DesktopSemanticsEnabler, A.MobileSemanticsEnabler]); _inheritMany(A.DefaultTextEditingStrategy, [A.SemanticsTextEditingStrategy, A.GloballyPositionedTextEditingStrategy, A.SafariDesktopTextEditingStrategy]); _inherit(A.ListBase, A._ListBase_Object_ListMixin); _inheritMany(A.ListBase, [A._TypedDataBuffer, A.UnmodifiableListBase, A._ChildrenElementList, A._FrozenElementList, A._ChildNodeListLazy, A.FilteredElementList0, A.ListProxy]); _inherit(A._IntBuffer, A._TypedDataBuffer); _inherit(A.Uint8Buffer, A._IntBuffer); _inherit(A.PlaceholderSpan0, A.ParagraphPlaceholder); _inheritMany(A.StyleNode, [A.ChildStyleNode, A.RootStyleNode]); _inherit(A._PolyfillFontManager, A.FontManager); _inheritMany(A.RangeBox, [A.PlaceholderBox, A.SpanBox]); _inheritMany(A.EngineInputType, [A.NoTextInputType, A.TextInputType0, A.NumberInputType, A.DecimalInputType, A.PhoneInputType, A.EmailInputType, A.UrlInputType, A.MultilineInputType]); _inheritMany(A.GloballyPositionedTextEditingStrategy, [A.IOSTextEditingStrategy, A.AndroidTextEditingStrategy, A.FirefoxTextEditingStrategy]); _inheritMany(A.TextInputCommand, [A.TextInputSetClient, A.TextInputUpdateConfig, A.TextInputSetEditingState, A.TextInputShow, A.TextInputSetEditableSizeAndTransform, A.TextInputSetStyle, A.TextInputClearClient, A.TextInputHide, A.TextInputSetMarkedTextRect, A.TextInputSetCaretRect, A.TextInputRequestAutofill, A.TextInputFinishAutofillContext]); _inherit(A.FlutterWindow, A.FlutterView); _inherit(A.SingletonFlutterWindow, A.FlutterWindow); _inherit(A.EngineFlutterWindow, A.SingletonFlutterWindow); _inherit(A.EngineSingletonFlutterWindow, A.EngineFlutterWindow); _inherit(A._ContentType, A._HeaderValue); _inherit(J.JSUnmodifiableArray, J.JSArray); _inheritMany(J.JSNumber, [J.JSInt, J.JSNumNotInt]); _inheritMany(A._CastIterableBase, [A.CastIterable, A.__CastListBase__CastIterableBase_ListMixin]); _inherit(A._EfficientLengthCastIterable, A.CastIterable); _inherit(A._CastListBase, A.__CastListBase__CastIterableBase_ListMixin); _inherit(A.CastList, A._CastListBase); _inherit(A.MapBase, A.MapMixin); _inheritMany(A.MapBase, [A.CastMap, A.UnmodifiableMapBase, A.JsLinkedHashMap, A._HashMap, A._JsonMap, A._AttributeMap, A._DataAttributeMap]); _inheritMany(A.UnmodifiableListBase, [A.CodeUnits, A.UnmodifiableListView]); _inheritMany(A.EfficientLengthIterable, [A.ListIterable, A.EmptyIterable, A.LinkedHashMapKeyIterable, A._HashMapKeyIterable, A._MapBaseValueIterable, A._SplayTreeKeyIterable, A._SplayTreeValueIterable, A._SplayTreeMapEntryIterable]); _inheritMany(A.ListIterable, [A.SubListIterable, A.MappedListIterable, A._ListIndicesIterable, A.ReversedListIterable, A.ListQueue, A._JsonMapKeyIterable, A._GeneratorIterable]); _inherit(A.EfficientLengthMappedIterable, A.MappedIterable); _inheritMany(A.Iterator, [A.MappedIterator, A.WhereIterator, A.TakeIterator, A.SkipIterator, A.SkipWhileIterator, A._ReversedSeriesIterator]); _inherit(A.EfficientLengthTakeIterable, A.TakeIterable); _inherit(A.EfficientLengthSkipIterable, A.SkipIterable); _inherit(A.ListMapView, A.UnmodifiableMapBase); _inherit(A._UnmodifiableMapView_MapView__UnmodifiableMapMixin, A.MapView); _inherit(A.UnmodifiableMapView, A._UnmodifiableMapView_MapView__UnmodifiableMapMixin); _inherit(A.ConstantMapView, A.UnmodifiableMapView); _inheritMany(A.ConstantMap, [A.ConstantStringMap, A.GeneralConstantMap]); _inherit(A.Instantiation1, A.Instantiation); _inherit(A.NullError, A.TypeError); _inheritMany(A.TearOffClosure, [A.StaticClosure, A.BoundClosure]); _inheritMany(A.IterableBase, [A._AllMatchesIterable, A._SyncStarIterable, A._FilteredElementList_IterableBase_ListMixin]); _inheritMany(A.NativeTypedData, [A.NativeByteData, A.NativeTypedArray]); _inheritMany(A.NativeTypedArray, [A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin, A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin]); _inherit(A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin, A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin); _inherit(A.NativeTypedArrayOfDouble, A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin); _inherit(A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin, A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin); _inherit(A.NativeTypedArrayOfInt, A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin); _inheritMany(A.NativeTypedArrayOfDouble, [A.NativeFloat32List, A.NativeFloat64List]); _inheritMany(A.NativeTypedArrayOfInt, [A.NativeInt16List, A.NativeInt32List, A.NativeInt8List, A.NativeUint16List, A.NativeUint32List, A.NativeUint8ClampedList, A.NativeUint8List]); _inherit(A._TypeError, A._Error); _inheritMany(A.Stream, [A._StreamImpl, A.StreamView, A._EmptyStream, A._MultiStream, A._ForwardingStream, A._BoundSinkStream, A._EventStream, A._FileStream, A.DeferStream]); _inherit(A._ControllerStream, A._StreamImpl); _inherit(A._BroadcastStream, A._ControllerStream); _inheritMany(A._BufferingStreamSubscription, [A._ControllerSubscription, A._ForwardingStreamSubscription, A._SinkTransformerStreamSubscription]); _inherit(A._BroadcastSubscription, A._ControllerSubscription); _inheritMany(A._BroadcastStreamController, [A._SyncBroadcastStreamController, A._AsyncBroadcastStreamController]); _inheritMany(A._Completer, [A._AsyncCompleter, A._SyncCompleter]); _inheritMany(A._StreamController, [A._AsyncStreamController, A._SyncStreamController]); _inherit(A._StreamControllerAddStreamState, A._AddStreamState); _inheritMany(A._DelayedEvent, [A._DelayedData, A._DelayedError]); _inherit(A._StreamImplEvents, A._PendingEvents); _inherit(A._MultiStreamController, A._AsyncStreamController); _inheritMany(A._ForwardingStream, [A._WhereStream, A._MapStream]); _inheritMany(A.StreamTransformerBase, [A._StreamSinkTransformer, A.Converter, A.LineSplitter, A.StartWithStreamTransformer, A.StartWithErrorStreamTransformer]); _inherit(A._StreamHandlerTransformer, A._StreamSinkTransformer); _inherit(A._RootZone, A._Zone); _inheritMany(A._HashMap, [A._IdentityHashMap, A._CustomHashMap]); _inheritMany(A.JsLinkedHashMap, [A._LinkedIdentityHashMap, A._LinkedCustomHashMap]); _inherit(A._SetBase, A.__SetBase_Object_SetMixin); _inheritMany(A._SetBase, [A._HashSet, A._LinkedHashSet, A.__UnmodifiableSet__SetBase__UnmodifiableSetMixin]); _inheritMany(A._DoubleLinkedQueueEntry, [A._DoubleLinkedQueueElement, A._DoubleLinkedQueueSentinel]); _inherit(A.SetBase, A._SetBase_Object_SetMixin); _inherit(A._UnmodifiableSet, A.__UnmodifiableSet__SetBase__UnmodifiableSetMixin); _inheritMany(A._SplayTreeNode, [A._SplayTreeSetNode, A._SplayTreeMapNode]); _inheritMany(A._SplayTree, [A._SplayTreeMap__SplayTree_MapMixin, A._SplayTreeSet__SplayTree_IterableMixin]); _inherit(A.SplayTreeMap, A._SplayTreeMap__SplayTree_MapMixin); _inheritMany(A._SplayTreeIterator, [A._SplayTreeKeyIterator, A._SplayTreeValueIterator, A._SplayTreeMapEntryIterator]); _inherit(A._SplayTreeSet__SplayTree_IterableMixin_SetMixin, A._SplayTreeSet__SplayTree_IterableMixin); _inherit(A.SplayTreeSet, A._SplayTreeSet__SplayTree_IterableMixin_SetMixin); _inheritMany(A.Codec0, [A.Encoding, A.Base64Codec, A.JsonCodec]); _inheritMany(A.Encoding, [A.AsciiCodec, A.Latin1Codec, A.Utf8Codec, A.SystemEncoding]); _inheritMany(A.Converter, [A._UnicodeSubsetEncoder, A._UnicodeSubsetDecoder, A.Base64Encoder, A.Base64Decoder, A.HtmlEscape, A.JsonEncoder, A.JsonDecoder, A.Utf8Encoder, A.Utf8Decoder]); _inheritMany(A._UnicodeSubsetEncoder, [A.AsciiEncoder, A.Latin1Encoder]); _inheritMany(A._UnicodeSubsetDecoder, [A.AsciiDecoder, A.Latin1Decoder]); _inherit(A.ByteConversionSink, A.ChunkedConversionSink); _inherit(A.ByteConversionSinkBase, A.ByteConversionSink); _inherit(A._ByteCallbackSink, A.ByteConversionSinkBase); _inherit(A.JsonCyclicError, A.JsonUnsupportedObjectError); _inherit(A._JsonStringStringifier, A._JsonStringifier); _inherit(A.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin, A._JsonStringStringifier); _inherit(A._JsonStringStringifierPretty, A.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin); _inheritMany(A.ArgumentError, [A.RangeError, A.IndexError]); _inherit(A._DataUri, A._Uri); _inheritMany(A.EventTarget, [A.Node1, A.Animation, A.BackgroundFetchRegistration, A.BroadcastChannel, A.FileReader, A.FileWriter, A.FontFaceSet, A.HttpRequestEventTarget, A.MediaKeySession, A.MediaQueryList, A.MediaStream, A.MediaStreamTrack, A.MessagePort, A.MidiPort, A.Notification, A.OffscreenCanvas, A.PaymentRequest, A.Performance, A.PresentationAvailability, A.PresentationConnection, A.RtcDataChannel, A.ScreenOrientation, A.WorkerGlobalScope, A.SourceBuffer, A._SourceBufferList_EventTarget_ListMixin, A.TextTrack, A.TextTrackCue, A._TextTrackList_EventTarget_ListMixin, A.VideoTrackList, A.Window, A.Database, A.AudioTrackList, A.BaseAudioContext]); _inheritMany(A.Node1, [A.Element2, A.CharacterData, A.Document1, A._Attr]); _inheritMany(A.Element2, [A.HtmlElement, A.SvgElement]); _inheritMany(A.HtmlElement, [A.AnchorElement, A.AreaElement, A.BaseElement, A.BodyElement, A.ButtonElement, A.CanvasElement, A.DataElement, A.DivElement, A.EmbedElement, A.FieldSetElement, A.FormElement, A.IFrameElement, A.ImageElement, A.InputElement, A.LIElement, A.LabelElement, A.MapElement, A.MetaElement, A.MeterElement, A.ObjectElement, A.OptionElement, A.OutputElement, A.ParagraphElement, A.ParamElement, A.ProgressElement, A.SelectElement, A.SlotElement, A.StyleElement, A.TableElement, A.TableRowElement, A.TableSectionElement, A.TemplateElement, A.TextAreaElement]); _inheritMany(A.Event, [A.ApplicationCacheErrorEvent, A.ExtendableEvent, A.BeforeUnloadEvent, A.ErrorEvent, A.UIEvent, A.MediaKeyMessageEvent, A.MediaQueryListEvent, A.PresentationConnectionCloseEvent, A.ProgressEvent, A.SpeechRecognitionError, A.SpeechSynthesisEvent, A.VersionChangeEvent]); _inherit(A.BackgroundFetchEvent, A.ExtendableEvent); _inherit(A.CssKeyframesRule, A.CssRule); _inheritMany(A.CssStyleValue, [A.CssKeywordValue, A.CssNumericValue, A.CssTransformValue, A.CssUnparsedValue]); _inherit(A.CssPerspective, A.CssTransformComponent); _inherit(A.CssStyleDeclaration, A._CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase); _inherit(A.CssStyleSheet, A.StyleSheet); _inherit(A.CssUnitValue, A.CssNumericValue); _inheritMany(A.ReportBody, [A.DeprecationReport, A.InterventionReport]); _inherit(A._DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin, A._DomRectList_JavaScriptObject_ListMixin); _inherit(A.DomRectList, A._DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin, A._DomStringList_JavaScriptObject_ListMixin); _inherit(A.DomStringList, A._DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin); _inheritMany(A.Credential, [A.FederatedCredential, A.PasswordCredential]); _inherit(A.File, A.Blob); _inherit(A._FileList_JavaScriptObject_ListMixin_ImmutableListMixin, A._FileList_JavaScriptObject_ListMixin); _inherit(A.FileList, A._FileList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin, A._HtmlCollection_JavaScriptObject_ListMixin); _inherit(A.HtmlCollection, A._HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.HtmlDocument, A.Document1); _inherit(A.HttpRequest, A.HttpRequestEventTarget); _inheritMany(A.UIEvent, [A.KeyboardEvent, A.MouseEvent, A.TouchEvent]); _inherit(A.MidiInputMap, A._MidiInputMap_JavaScriptObject_MapMixin); _inherit(A.MidiOutputMap, A._MidiOutputMap_JavaScriptObject_MapMixin); _inherit(A._MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin, A._MimeTypeArray_JavaScriptObject_ListMixin); _inherit(A.MimeTypeArray, A._MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.Navigator0, A.NavigatorConcurrentHardware); _inherit(A._NodeList_JavaScriptObject_ListMixin_ImmutableListMixin, A._NodeList_JavaScriptObject_ListMixin); _inherit(A.NodeList0, A._NodeList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin, A._PluginArray_JavaScriptObject_ListMixin); _inherit(A.PluginArray, A._PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin); _inheritMany(A.MouseEvent, [A.PointerEvent0, A.WheelEvent]); _inherit(A.RtcStatsReport, A._RtcStatsReport_JavaScriptObject_MapMixin); _inherit(A.SharedWorkerGlobalScope, A.WorkerGlobalScope); _inherit(A._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin, A._SourceBufferList_EventTarget_ListMixin); _inherit(A.SourceBufferList, A._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin); _inherit(A._SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin, A._SpeechGrammarList_JavaScriptObject_ListMixin); _inherit(A.SpeechGrammarList, A._SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.Storage, A._Storage_JavaScriptObject_MapMixin); _inherit(A._TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin, A._TextTrackCueList_JavaScriptObject_ListMixin); _inherit(A.TextTrackCueList, A._TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._TextTrackList_EventTarget_ListMixin_ImmutableListMixin, A._TextTrackList_EventTarget_ListMixin); _inherit(A.TextTrackList, A._TextTrackList_EventTarget_ListMixin_ImmutableListMixin); _inherit(A._TouchList_JavaScriptObject_ListMixin_ImmutableListMixin, A._TouchList_JavaScriptObject_ListMixin); _inherit(A.TouchList, A._TouchList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.__CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin, A.__CssRuleList_JavaScriptObject_ListMixin); _inherit(A._CssRuleList, A.__CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._DomRect, A.DomRectReadOnly); _inherit(A.__GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin, A.__GamepadList_JavaScriptObject_ListMixin); _inherit(A._GamepadList, A.__GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.__NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin, A.__NamedNodeMap_JavaScriptObject_ListMixin); _inherit(A._NamedNodeMap, A.__NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin, A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin); _inherit(A._SpeechRecognitionResultList, A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.__StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin, A.__StyleSheetList_JavaScriptObject_ListMixin); _inherit(A._StyleSheetList, A.__StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._ElementAttributeMap, A._AttributeMap); _inherit(A._ElementEventStreamImpl, A._EventStream); _inherit(A._EventStreamSubscription, A.StreamSubscription); _inherit(A._TemplatingNodeValidator, A._SimpleNodeValidator); _inherit(A._StructuredCloneDart2Js, A._StructuredClone); _inherit(A._AcceptStructuredCloneDart2Js, A._AcceptStructuredClone); _inherit(A.CursorWithValue, A.Cursor); _inheritMany(A.FileSystemEntity, [A._Directory, A._File]); _inheritMany(A.JsObject, [A.JsFunction, A._JsArray_JsObject_ListMixin]); _inherit(A.JsArray, A._JsArray_JsObject_ListMixin); _inherit(A.Rectangle, A._RectangleBase); _inheritMany(A.SvgElement, [A.GraphicsElement, A.FEBlendElement, A.FEColorMatrixElement, A.FECompositeElement, A.FEFloodElement, A.FilterElement, A.ScriptElement0]); _inheritMany(A.GraphicsElement, [A.ClipPathElement, A.DefsElement, A.GeometryElement, A.SvgSvgElement]); _inherit(A._LengthList_JavaScriptObject_ListMixin_ImmutableListMixin, A._LengthList_JavaScriptObject_ListMixin); _inherit(A.LengthList, A._LengthList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._NumberList_JavaScriptObject_ListMixin_ImmutableListMixin, A._NumberList_JavaScriptObject_ListMixin); _inherit(A.NumberList, A._NumberList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A.PathElement, A.GeometryElement); _inherit(A._StringList_JavaScriptObject_ListMixin_ImmutableListMixin, A._StringList_JavaScriptObject_ListMixin); _inherit(A.StringList, A._StringList_JavaScriptObject_ListMixin_ImmutableListMixin); _inherit(A._TransformList_JavaScriptObject_ListMixin_ImmutableListMixin, A._TransformList_JavaScriptObject_ListMixin); _inherit(A.TransformList, A._TransformList_JavaScriptObject_ListMixin_ImmutableListMixin); _inheritMany(A.OffsetBase, [A.Offset, A.Size]); _inherit(A.AudioParamMap, A._AudioParamMap_JavaScriptObject_MapMixin); _inherit(A.OfflineAudioContext, A.BaseAudioContext); _inherit(A.ArchiveException, A.FormatException); _inherit(A.InputStream, A.InputStreamBase); _inherit(A.OutputStream, A.OutputStreamBase); _inherit(A.DiagnosticableTree, A._DiagnosticableTree_Object_Diagnosticable); _inheritMany(A.DiagnosticableTree, [A.Widget, A.InlineSpan, A.SemanticsHintOverrides, A.SemanticsProperties, A.Element0]); _inheritMany(A.Widget, [A.StatefulWidget, A.StatelessWidget, A.RenderObjectWidget, A.ProxyWidget, A._NullWidget, A._NullWidget1, A._NullWidget3]); _inheritMany(A.StatefulWidget, [A.BoardItem, A.BoardList, A.BoardView, A.BaseChart, A.CupertinoButton, A._CupertinoBackGestureDetector, A.RawScrollbar, A.CupertinoSwitch, A.LicensePage, A._PackagesView, A._PackageLicensePage, A._MasterDetailFlow, A._MasterDetailScaffold, A.MaterialApp, A.AppBar, A.SliverAppBar, A.BottomAppBar, A.BottomSheet, A.RawMaterialButton, A.ButtonStyleButton, A.CalendarDatePicker, A._DatePickerModeToggleButton, A._MonthPicker, A._DayPicker, A.YearPicker, A.Checkbox, A._SortArrow, A.DatePickerDialog, A.DrawerController, A._DropdownMenuItemButton, A._DropdownMenu, A.DropdownButton, A.FormField, A.ExpandIcon, A.ExpansionPanelList, A.Ink, A._InkResponseStateWidget, A.InputDatePickerFormField, A._BorderContainer, A.AnimatedWidget, A._HelperError, A.InputDecorator, A.Material, A.ImplicitlyAnimatedWidget, A.MergeableMaterial, A.PaginatedDataTable, A.PopupMenuEntry, A.PopupMenuButton, A.ProgressIndicator, A.Radio, A.RefreshIndicator, A.ReorderableListView, A.ScaffoldMessenger, A._FloatingActionButtonTransition, A.Scaffold, A._StandardBottomSheet, A.SelectableText, A._MaterialSwitch, A.DefaultTabController, A.TabBar, A.TabBarView, A.TextField, A._Dial, A._TimePickerInput, A._HourMinuteTextField, A.TimePickerDialog, A.Tooltip, A.Actions, A.FocusableActionDetector, A.AnimatedCrossFade, A.AnimatedSize, A.AnimatedSwitcher, A.WidgetsApp, A.StreamBuilderBase, A.FutureBuilder, A.RawAutocomplete, A.AutofillGroup, A.AutomaticKeepAlive, A.Shortcuts, A.DraggableScrollableSheet, A.DualTransitionBuilder, A.EditableText, A._ScribbleFocusable, A._TextEditingHistory, A.Focus, A.FocusTraversalGroup, A.Form, A.RawGestureDetector, A.Hero, A.Image, A.InteractiveViewer, A.Localizations, A._MediaQueryFromWindow, A.Navigator, A._OverlayEntryWidget, A.Overlay, A.GlowingOverscrollIndicator, A.StretchingOverscrollIndicator, A.PageView, A.PlatformViewLink, A.SliverReorderableList, A._ReorderableItem, A.RestorationScope, A.RootRestorationScope, A._ModalScope, A.ScrollNotificationObserver, A.Scrollable, A.SharedAppData, A._FloatingHeader, A._SelectionHandleOverlay, A.TextSelectionGestureDetector, A.TickerMode, A.ValueListenableBuilder, A.WillPopScope, A.BlockPicker, A.JsonViewer, A.JsonObjectViewer, A.JsonArrayViewer, A._StoreStreamListener, A.SlidableAutoCloseBarrierNotificationSender, A.SlidableAutoCloseBarrierBehaviorListener, A._SlidableNotificationSender, A.SlidableDismissal, A.SlidableGestureDetector, A.SlidableGroupBehaviorListener, A.SlidableNotificationSender, A.SlidableScrollingBehavior, A.ActionPane, A.Slidable, A.StyledToast, A._StyledToastWidget, A.InvoiceNinjaApp, A._MergClientPicker, A.AppBottomBar, A.AppBuilder, A.ChangeLayoutBanner, A.DesktopSessionTimeout, A.HealthCheckDialog, A.MultiSelectList, A.EntityListTile, A.EntitiesListTile, A.EntityDropdown, A.EntityDropdownDialog, A.FormColorPicker, A.CustomField, A.DatePicker, A.DecoratedFormField, A.DurationPicker, A.GrowableFormField, A.PasswordFormField, A.TimePicker, A.HistoryListTile, A.InvoiceEmailView, A.TaxRateDropdown, A.LinkTextRelatedEntity, A.ListFilter, A.LiveText, A.MenuDrawer, A.DrawerTile, A.ContactUsDialog, A.DropDownMultiSelect, A.ReviewApp, A.ScrollableListView, A.ScrollableListViewBuilder, A.SystemLogViewer, A._SortArrow0, A.AppPaginatedDataTable, A.EntityList, A.VariablesHelp, A.WebSessionTimeout, A.WebSocketRefresh, A.LoginView, A.ClientPdfView, A.ClientEdit, A.ClientEditBillingAddress, A.ClientEditContacts, A.ContactEditDetails, A.ClientEditDetails, A.ClientEditNotes, A.ClientEditSettings, A.ClientEditShippingAddress, A.ClientView, A.ClientViewActivity, A.ClientViewDetails, A.ClientViewFullwidth, A.ClientViewLedger, A.ClientViewSystemLogs, A.CompanyGatewayList, A.CompanyGatewayEdit, A.GatewayConfigField, A.LimitEditor, A.FeesEditor, A.CompanyGatewayView, A._CompanyGatewaySystemLog, A.CreditEdit, A.DashboardChart, A.DashboardDateRangePicker, A._DashboardPanel, A.DashboardScreen, A.DesignEdit, A.DesignSettings, A.PdfDesignPreview, A.DesignView, A.DocumentEdit, A.DocumentView, A.ExpenseEdit, A.ExpenseEditDetails, A.ExpenseEditNotes, A.ExpenseEditSettings, A.ExpenseView, A.ExpenseViewSchedule, A.ExpenseCategoryEdit, A.ExpenseCategoryView, A.GroupEdit, A.GroupView, A.InvoiceEdit, A.InvoiceEditDesktop, A._PdfPreview, A.InvoiceEditDetails, A.InvoiceEditItems, A.ItemEditDetails, A.InvoiceEditItemsDesktop, A.InvoiceEditNotes, A.InvoiceEditPDF, A.InvoiceItemSelector, A.InvoicePdfView, A.InvoiceView, A.InvoiceViewActivity, A.InvoiceViewHistory, A.InvoiceViewSchedule, A.PaymentEdit, A.PaymentableEditor, A.PaymentRefund, A.PaymentableEditor0, A.PaymentView, A.PaymentTermEdit, A.PaymentTermView, A.ProductEdit, A.ProductView, A.ProductOverview, A.ProjectEdit, A.ProjectView, A.ProjectOverview, A.PurchaseOrderEdit, A.QuoteEdit, A.RecurringInvoiceEdit, A.ReportDataTable, A.AccountManagement, A.ClientPortal, A.CompanyDetails, A.CreditCardsAndBanks, A.CustomFields, A.CustomFormField, A.DataVisualizations, A.DeviceSettings, A.EmailSettings, A.ExpenseSettings, A.GeneratedNumbers, A.EntityNumberSettings, A.ImportExport, A._FileImport, A._FileMapper, A.InvoiceDesign, A.LocalizationSettings, A._AddCompanyDialog, A.PaymentSettings, A.ProductSettings, A.SettingsList, A.SettingsWizard, A.TaskSettings, A.TaxSettings, A.TemplatesAndReminders, A.ReminderSettings, A.UserDetails, A._EnableTwoFactor, A._SmsVerification, A.WorkflowSettings, A.SubscriptionEdit, A.SubscriptionView, A.UpdateDialog, A.TaskEdit, A.TaskEditDesktop, A.TaskEditDetails, A.TaskEditTimes, A.TimeEditDetails, A.KanbanTaskCard, A.KanbanStatusCard, A.KanbanView, A.KanbanViewBuilder, A.TaskView, A.TaskOverview, A.TaskStatusEdit, A.TaskStatusView, A.TaxRateEdit, A.TaxRateView, A.TokenEdit, A.TokenView, A.UserEdit, A.VendorEdit, A.VendorEditAddress, A.VendorEditContacts, A.VendorContactEditDetails, A.VendorEditDetails, A.VendorEditNotes, A.VendorView, A.VendorViewDetails, A.VendorViewFullwidth, A.WebhookEdit, A.WebhookView, A.PasswordConfirmation, A.FieldConfirmation, A.ExampleEditor, A.EditorToolbar, A.ImageFormatToolbar, A.FadeWidget, A.OctoImage, A.PdfPreviewCustom, A.PdfPreview, A.QrImageView, A.RoundedLoadingButton, A.MyStatefulWidget, A.BoxComponent, A.DocumentMouseInteractor, A.AndroidDocumentTouchInteractor, A.AndroidDocumentTouchEditingControls, A.IOSDocumentTouchInteractor, A.IosDocumentTouchEditingControls, A.DocumentImeInteractor, A.SingleColumnDocumentLayout, A._PresenterComponentBuilder, A.SuperEditor, A.TextComponent, A.MultiListenableBuilder, A.BlinkingCaret, A.TextLayoutCaret, A.SuperText, A.SuperTextWithSelection, A._RebuildOptimizedSuperTextWithSelection]); _inherit(A.State, A._State_Object_Diagnosticable); _inheritMany(A.State, [A._BoardItemState_State_AutomaticKeepAliveClientMixin, A._BoardListState_State_AutomaticKeepAliveClientMixin, A._BoardViewState_State_AutomaticKeepAliveClientMixin, A._BaseChartState_State_TickerProviderStateMixin, A.__CupertinoButtonState_State_SingleTickerProviderStateMixin, A._CupertinoBackGestureDetectorState, A._RawScrollbarState_State_TickerProviderStateMixin, A.__CupertinoSwitchState_State_TickerProviderStateMixin, A._LicensePageState, A._PackagesViewState, A._PackageLicensePageState, A._MasterDetailFlowState, A._MasterDetailScaffoldState, A._MaterialAppState, A._AppBarState, A.__SliverAppBarState_State_TickerProviderStateMixin, A._BottomAppBarState, A._BottomSheetState, A.__RawMaterialButtonState_State_MaterialStateMixin, A.__ButtonStyleState_State_MaterialStateMixin, A._CalendarDatePickerState, A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, A._MonthPickerState, A._DayPickerState, A._YearPickerState, A.__CheckboxState_State_TickerProviderStateMixin, A.__SortArrowState_State_TickerProviderStateMixin, A.__DatePickerDialogState_State_RestorationMixin, A._DrawerControllerState_State_SingleTickerProviderStateMixin, A._DropdownMenuItemButtonState, A._DropdownMenuState, A.__DropdownButtonState_State_WidgetsBindingObserver, A._FormFieldState_State_RestorationMixin, A.__ExpandIconState_State_SingleTickerProviderStateMixin, A._ExpansionPanelListState, A._InkState, A.__InkResponseState_State_AutomaticKeepAliveClientMixin, A._InputDatePickerFormFieldState, A.__BorderContainerState_State_TickerProviderStateMixin, A.__HelperErrorState_State_SingleTickerProviderStateMixin, A.__InputDecoratorState_State_TickerProviderStateMixin, A.__MaterialState_State_TickerProviderStateMixin, A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, A.__MergeableMaterialState_State_TickerProviderStateMixin, A.PaginatedDataTableState, A._PopupMenuDividerState, A.PopupMenuItemState, A.PopupMenuButtonState, A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__RadioState_State_TickerProviderStateMixin, A._RefreshIndicatorState_State_TickerProviderStateMixin, A._ReorderableListViewState, A._ScaffoldMessengerState_State_TickerProviderStateMixin, A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, A._ScaffoldState_State_TickerProviderStateMixin, A._StandardBottomSheetState, A._SelectableTextState, A.__MaterialSwitchState_State_TickerProviderStateMixin, A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, A._TabBarState, A._TabBarViewState, A.__TextFieldState_State_RestorationMixin, A.__DialState_State_SingleTickerProviderStateMixin, A.__TimePickerInputState_State_RestorationMixin, A.__HourMinuteTextFieldState_State_RestorationMixin, A.__TimePickerDialogState_State_RestorationMixin, A._TooltipState_State_SingleTickerProviderStateMixin, A._ActionsState, A._FocusableActionDetectorState, A.__AnimatedCrossFadeState_State_TickerProviderStateMixin, A.__AnimatedSizeState_State_SingleTickerProviderStateMixin, A.__AnimatedSwitcherState_State_TickerProviderStateMixin, A.__WidgetsAppState_State_WidgetsBindingObserver, A._StreamBuilderBaseState, A._FutureBuilderState, A._RawAutocompleteState, A._AutofillGroupState_State_AutofillScopeMixin, A._AutomaticKeepAliveState, A._DraggableScrollableSheetState, A._DualTransitionBuilderState, A._EditableTextState_State_AutomaticKeepAliveClientMixin, A._ScribbleFocusableState, A._TextEditingHistoryState, A._FocusState, A._FocusTraversalGroupState, A.FormState, A.RawGestureDetectorState, A._HeroState, A.__ImageState_State_WidgetsBindingObserver, A.__InteractiveViewerState_State_TickerProviderStateMixin, A._LocalizationsState, A.__MediaQueryFromWindowState_State_WidgetsBindingObserver, A._NavigatorState_State_TickerProviderStateMixin, A._OverlayEntryWidgetState, A._OverlayState_State_TickerProviderStateMixin, A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin, A._PageViewState, A._PlatformViewLinkState, A._SliverReorderableListState_State_TickerProviderStateMixin, A._ReorderableItemState, A.__RestorationScopeState_State_RestorationMixin, A._RootRestorationScopeState, A._ModalScopeState, A.ScrollNotificationObserverState, A._ScrollableState_State_TickerProviderStateMixin, A._SharedAppDataState, A._ShortcutsState, A._FloatingHeaderState, A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin, A._TextSelectionGestureDetectorState, A._TickerModeState, A._AnimatedState, A._ValueListenableBuilderState, A._WillPopScopeState, A._BlockPickerState, A._JsonViewerState, A.JsonObjectViewerState, A._JsonArrayViewerState, A._StoreStreamListenerState, A._SlidableAutoCloseBarrierNotificationSenderState, A._SlidableAutoCloseBarrierBehaviorListenerState, A._SlidableNotificationSenderState0, A.__SlidableDismissalState_State_SingleTickerProviderStateMixin, A._SlidableGestureDetectorState, A._SlidableGroupBehaviorListenerState, A._SlidableNotificationSenderState, A._SlidableScrollingBehaviorState, A._ActionPaneState, A.__SlidableState_State_TickerProviderStateMixin, A._StyledToastState, A._StyledToastWidgetState_State_TickerProviderStateMixin, A.InvoiceNinjaAppState, A.__MergClientPickerState, A._AppBottomBarState, A.AppBuilderState, A._ChangeLayoutBannerState, A._DesktopSessionTimeoutState, A._HealthCheckDialogState, A.MultiSelectListState, A._EntityListTileState, A._EntitiesListTileState, A._EntityDropdownState, A._EntityDropdownDialogState, A._FormColorPickerState, A._CustomFieldState, A._DatePickerState, A._DecoratedFormFieldState, A._DurationPickerState, A._GrowableFormFieldState, A._PasswordFormFieldState, A._TimePickerState, A._HistoryListTileState, A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, A._TaxRateDropdownState, A._LinkTextRelatedEntityState, A._ListFilterState, A._LiveTextState, A._MenuDrawerState, A._DrawerTileState, A._ContactUsDialogState, A._DropDownMultiSelectState, A._ReviewAppState, A._ScrollableListViewState, A._ScrollableListViewBuilderState, A._SystemLogViewerState, A.__SortArrowState_State_TickerProviderStateMixin0, A.AppPaginatedDataTableState, A._EntityListState, A.__VariablesHelpState_State_SingleTickerProviderStateMixin, A._WebSessionTimeoutState, A._WebSocketRefreshState, A._LoginState, A._ClientPdfViewState, A.__ClientEditState_State_SingleTickerProviderStateMixin, A.ClientEditBillingAddressState, A._ClientEditContactsState, A.ContactEditDetailsState, A.ClientEditDetailsState, A.ClientEditNotesState, A.ClientEditSettingsState, A.ClientEditShippingAddressState, A.__ClientViewState_State_SingleTickerProviderStateMixin, A._ClientViewActivityState, A._ClientViewDetailsState, A.__ClientViewFullwidthState_State_TickerProviderStateMixin, A._ClientViewLedgerState, A._ClientViewSystemLogsState, A._CompanyGatewayListState, A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, A._GatewayConfigFieldState, A._LimitEditorState, A._FeesEditorState, A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, A.__CompanyGatewaySystemLogState, A.__CreditEditState_State_SingleTickerProviderStateMixin, A._DashboardChartState, A._DashboardDateRangePickerState, A.__DashboardPanelState, A.__DashboardScreenState_State_TickerProviderStateMixin, A.__DesignEditState_State_SingleTickerProviderStateMixin, A._DesignSettingsState, A._PdfDesignPreviewState, A._DesignViewState, A._DocumentEditState, A._DocumentViewState, A.__ExpenseEditState_State_SingleTickerProviderStateMixin, A.ExpenseEditDetailsState, A.ExpenseEditNotesState, A.ExpenseEditSettingsState, A.__ExpenseViewState_State_SingleTickerProviderStateMixin, A._ExpenseViewScheduleState, A._ExpenseCategoryEditState, A._ExpenseCategoryViewState, A._GroupEditState, A.__GroupViewState_State_SingleTickerProviderStateMixin, A.__InvoiceEditState_State_SingleTickerProviderStateMixin, A._InvoiceEditDesktopState_State_TickerProviderStateMixin, A.__PdfPreviewState, A.InvoiceEditDetailsState, A._InvoiceEditItemsState, A.ItemEditDetailsState, A._InvoiceEditItemsDesktopState, A.InvoiceEditNotesState, A.InvoiceEditPDFState, A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, A._InvoicePdfViewState, A.__InvoiceViewState_State_SingleTickerProviderStateMixin, A._InvoiceViewActivityState, A._InvoiceViewHistoryState, A._InvoiceViewScheduleState, A._PaymentEditState, A._PaymentableEditorState, A._PaymentRefundState, A._PaymentableEditorState0, A._PaymentViewState, A._PaymentTermEditState, A._PaymentTermViewState, A._ProductEditState, A.__ProductViewState_State_SingleTickerProviderStateMixin, A._ProductOverviewState, A._ProjectEditState, A.__ProjectViewState_State_SingleTickerProviderStateMixin, A._ProjectOverviewState, A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin, A.__QuoteEditState_State_SingleTickerProviderStateMixin, A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, A._ReportDataTableState, A.__AccountManagementState_State_SingleTickerProviderStateMixin, A.__ClientPortalState_State_SingleTickerProviderStateMixin, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, A.__CustomFieldsState_State_SingleTickerProviderStateMixin, A._CustomFormFieldState, A._DataVisualizationsState, A.__DeviceSettingsState_State_SingleTickerProviderStateMixin, A._EmailSettingsState, A._ExpenseSettingsState, A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, A._EntityNumberSettingsState, A._ImportExportState, A._FileImportState, A.__FileMapperState, A.__InvoiceDesignState_State_SingleTickerProviderStateMixin, A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, A._AddCompanyDialogState, A._PaymentSettingsState, A._ProductSettingsState, A._SettingsListState, A._SettingsWizardState, A._TaskSettingsState, A._TaxSettingsState, A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, A._ReminderSettingsState, A.__UserDetailsState_State_SingleTickerProviderStateMixin, A._EnableTwoFactorState, A.__SmsVerificationState, A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, A.__SubscriptionEditState_State_SingleTickerProviderStateMixin, A._SubscriptionViewState, A._UpdateDialogState, A.__TaskEditState_State_SingleTickerProviderStateMixin, A._TaskEditDesktopState, A._TaskEditDetailsState, A._TaskEditTimesState, A.TimeEditDetailsState, A._KanbanTaskCardState, A._KanbanStatusCardState, A.KanbanViewState, A._KanbanViewBuilderState, A.__TaskViewState_State_SingleTickerProviderStateMixin, A._TaskOverviewState, A._TaskStatusEditState, A._TaskStatusViewState, A._TaxRateEditState, A._TaxRateViewState, A._TokenEditState, A._TokenViewState, A.__UserEditState_State_SingleTickerProviderStateMixin, A.__VendorEditState_State_SingleTickerProviderStateMixin, A.VendorEditAddressState, A._VendorEditContactsState, A.VendorContactEditDetailsState, A.VendorEditDetailsState, A.VendorEditNotesState, A.__VendorViewState_State_SingleTickerProviderStateMixin, A._VendorViewDetailsState, A.__VendorViewFullwidthState_State_TickerProviderStateMixin, A._WebhookEditState, A._WebhookViewState, A._PasswordConfirmationState, A._FieldConfirmationState, A._ExampleEditorState, A._EditorToolbarState, A._ImageFormatToolbarState, A.__FadeWidgetState_State_SingleTickerProviderStateMixin, A._OctoImageState, A._PdfPreviewCustomState_State_PdfPreviewRaster, A._PdfPreviewState, A._QrImageViewState, A._RoundedLoadingButtonState_State_TickerProviderStateMixin, A.ExtendedState, A.__BoxComponentState_State_DocumentComponent, A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver, A.__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin, A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver, A.__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin, A._DocumentImeInteractorState, A._SingleColumnDocumentLayoutState, A._PresenterComponentBuilderState, A._SuperEditorState, A.__TextComponentState_State_DocumentComponent, A._MultiListenableBuilderState, A._BlinkingCaretState_State_SingleTickerProviderStateMixin, A.__TextLayoutCaretState_State_TickerProviderStateMixin, A._SuperTextState_State_ProseTextBlock, A._ProseTextState_State_ProseTextBlock, A._RebuildOptimizedSuperTextWithSelectionState]); _inherit(A.BoardItemState, A._BoardItemState_State_AutomaticKeepAliveClientMixin); _inherit(A.BoardListState, A._BoardListState_State_AutomaticKeepAliveClientMixin); _inherit(A.BoardViewState, A._BoardViewState_State_AutomaticKeepAliveClientMixin); _inherit(A._BuiltList, A.BuiltList); _inherit(A._BuiltListMultimap, A.BuiltListMultimap); _inherit(A._BuiltMap, A.BuiltMap); _inherit(A._BuiltSet, A.BuiltSet); _inherit(A._BuiltSetMultimap, A.BuiltSetMultimap); _inheritMany(A.JsonObject, [A.BoolJsonObject, A.ListJsonObject, A.MapJsonObject, A.NumJsonObject, A.StringJsonObject]); _inheritMany(A.StatelessWidget, [A.CachedNetworkImage, A.CupertinoPageTransition, A.CupertinoTheme, A._AboutProgram, A._PackageListTile, A._PackageLicensePageTitle, A._MasterPage, A._DetailView, A.BackButtonIcon, A.BackButton, A.Card, A.CheckboxListTile, A.DataTable, A.InkResponse, A._DatePickerHeader, A.Dialog, A.AlertDialog, A.SimpleDialogOption, A.SimpleDialog, A.Divider, A.Drawer, A._DropdownRoutePage, A._DropdownMenuItemContainer, A.FloatingActionButton, A.IconButton, A.ListTile, A._ShapeBorderPaint, A._FadeUpwardsPageTransition, A._ZoomPageTransition, A._ZoomEnterTransition, A._ZoomExitTransition, A._PopupMenu, A.RadioListTile, A._BodyBuilder, A.Scrollbar, A.Switch, A.SwitchListTile, A.Tab, A.Theme, A._TimePickerHeader, A._HourMinuteControl, A._HourControl, A._StringFragment, A._MinuteControl, A._DayPeriodControl, A._HourTextField, A._MinuteTextField, A.ToggleButtons, A._ToggleButton, A._TooltipOverlay, A._NullWidget0, A.PositionedDirectional, A.KeyedSubtree, A.Builder, A.Container, A.DisplayFeatureSubScreen, A.ExcludeFocus, A.GestureDetector, A.Icon, A._CaptureAll, A._InteractiveViewerBuilt, A.ModalBarrier, A._ModalBarrierGestureDetector, A.NavigationToolbar, A.PageStorage, A.Placeholder, A.HtmlElementView, A.PreferredSize, A.ReorderableDragStartListener, A._DragItemProxy, A.SafeArea, A.ScrollView, A.SingleChildScrollView, A.SliverFillViewport, A.SliverPersistentHeader, A.Spacer, A._NullWidget2, A.Text, A.Title, A.StoreConnector, A.StoreBuilder, A.DrawerMotion, A.CustomSlidableAction, A.SlidableAction, A.SlidableAutoCloseBehaviorInteractor, A.SlidableAutoCloseInteractor, A.SlidableAutoCloseBehaviorListener, A.SlidableAutoCloseNotificationSender, A.SlidableAutoCloseBarrierInteractor, A.FieldGrid, A.ActionMenuButton, A.ViewActionMenuButton, A.AppBorder, A.CustomFieldSelector, A.AppHeader, A.AppTitleBar, A.AppWebView, A._WebWebView, A.BlankScreen, A.AppTextButton, A.BottomButtons, A.AppButton, A.ConfirmEmail, A.ConfirmEmailBuilder, A.CopyToClipboard, A.MessageDialog, A.ErrorDialog, A._HealthListTile, A.LoadingDialog, A.DismissibleEntity, A.DocumentGrid, A.DocumentTile, A.DocumentPreview, A.EditScaffold, A.EntityActionListTile, A.EntityStatusChip, A.EntityAutocompleteListTile, A.EntityHeader, A.EntityStateLabel, A.EntityTopFilter, A.EntityTopFilterHeader, A.FormCard, A.AppDropdownButton, A.AppForm, A.AppTabForm, A.AppTabBar, A.AppToggleButtons, A.BoolDropdownButton, A.ClientPicker, A.CustomSurcharges, A.DesignPicker, A.DiscountField, A.DynamicSelector, A.LearnMoreUrl, A.NotificationSettings, A._NotificationSelector, A.ProjectPicker, A.SaveCancelButtons, A.UserPicker, A.VendorPicker, A.TokenMeta, A.HelpText, A.HistoryDrawer, A.HistoryDrawerBuilder, A.IconMessage, A.IconText, A.InvoiceItemListTile, A.TaxRateField, A.ListScaffold, A.ActivityListTile, A.AppListTile, A.ListDivider, A.ListFilterMessage, A.FilterListTile, A.SelectedIndicator, A.LoadingIndicator, A.MainScreen, A.EntityScreens, A.SettingsScreens, A.SidebarFooter, A.SidebarFooterCollapsed, A.MenuDrawerBuilder, A._SelectRow, A.PortalLinks, A.TableTooltip, A.CachedImage, A.ResponsivePadding, A.AppDataTable, A._VariableGrid, A.ViewScaffold, A.InitScreen, A.LockScreen, A.RuledText, A.LoginScreen, A.ClientListItem, A.ClientListBuilder, A.ClientPdfScreen, A.ClientScreen, A.ClientScreenBuilder, A.ContactListTile0, A.ClientEditContactsScreen, A.ClientEditDesktop, A.ClientEditFooter, A.ClientEditScreen, A.ClientViewDocuments, A.ClientOverview, A.ClientViewScreen, A.CompanyGatewayListItem, A.CompanyGatewayListBuilder, A.CompanyGatewayScreen, A.CompanyGatewayScreenBuilder, A.GatewayConfigSettings, A.CompanyGatewayEditScreen, A._CompanyGatewayOverview, A.CompanyGatewayViewScreen, A.CreditEmailScreen, A.CreditListItem, A.CreditListBuilder, A.CreditPdfScreen, A.CreditScreen, A.CreditScreenBuilder, A.CreditEditDetailsScreen, A.CreditEditItemsScreen, A.CreditEditNotesScreen, A.CreditEditPDFScreen, A.CreditEditScreen, A.CreditViewScreen, A.DashboardActivity, A.DashboardPanels, A._InvoiceChart, A._CustomTabBarView, A.DashboardScreenBuilder, A.SidebarScaffold, A.InvoiceSidebar, A.PaymentSidebar, A.QuoteSidebar, A.TaskSidebar, A.ExpenseSidbar, A._DashboardSidebar, A.DashboardSystemLogs, A.DesignListItem, A.DesignListBuilder, A.DesignScreen, A.DesignScreenBuilder, A.DesignSection, A.HtmlDesignPreview, A.DesignEditScreen, A.DesignViewScreen, A.DocumentListItem, A.DocumentListBuilder, A.DocumentScreen, A.DocumentScreenBuilder, A.DocumentEditScreen, A.DocumentViewScreen, A.ExpenseEditDesktop, A.ExpenseEditScreen, A.ExpenseListItem, A.ExpenseListBuilder, A.ExpenseScreen, A.ExpenseScreenBuilder, A.ExpenseViewDocuments, A.ExpenseOverview, A.ExpenseViewScreen, A.ExpenseCategoryEditScreen, A.ExpenseCategoryListItem, A.ExpenseCategoryListBuilder, A.ExpenseCategoryScreen, A.ExpenseCategoryScreenBuilder, A.ExpenseCategoryViewScreen, A.GroupEditScreen, A.GroupListItem, A.GroupListBuilder, A.GroupSettingsScreen, A.GroupScreenBuilder, A.SettingsViewer, A.GroupViewScreen, A.InvoiceEditContacts, A._ClientContactListTile, A._VendorContactListTile, A.InvoiceEditContactsScreen, A.InvoiceEditDetailsScreen, A.InvoiceEditFooter, A.TableHeader, A.InvoiceEditItemsScreen, A.InvoiceEditNotesScreen, A.InvoiceEditPDFScreen, A.InvoiceEditScreen, A.InvoiceEmailScreen, A.InvoiceListItem, A.InvoiceListBuilder, A.InvoicePdfScreen, A.InvoiceScreen, A.InvoiceScreenBuilder, A.InvoiceViewContacts, A._InvitationListTile, A.InvoiceViewDocuments, A.InvoiceOverview, A.InvoiceViewScreen, A.PaymentEditScreen, A.PaymentListItem, A.PaymentListBuilder, A.PaymentScreen, A.PaymentScreenBuilder, A.PaymentRefundScreen, A.PaymentViewScreen, A.PaymentTermEditScreen, A.PaymentTermListItem, A.PaymentTermListBuilder, A.PaymentTermScreen, A.PaymentTermScreenBuilder, A.PaymentTermViewScreen, A.ProductEditScreen, A.ProductListItem, A.ProductListBuilder, A.ProductScreen, A.ProductScreenBuilder, A.ProductViewDocuments, A.ProductViewScreen, A.ProjectEditScreen, A.ProjectListItem, A.ProjectListBuilder, A.ProjectScreen, A.ProjectScreenBuilder, A.ProjectViewDocuments, A.ProjectViewScreen, A.PurchaseOrderEditDetailsScreen, A.PurchaseOrderEditItemsScreen, A.PurchaseOrderEditNotesScreen, A.PurchaseOrderEditPDFScreen, A.PurchaseOrderEditScreen, A.PurchaseOrderEmailScreen, A.PurchaseOrderListItem, A.PurchaseOrderListBuilder, A.PurchaseOrderPdfScreen, A.PurchaseOrderScreen, A.PurchaseOrderScreenBuilder, A.PurchaseOrderViewScreen, A.QuoteEditDetailsScreen, A.QuoteEditItemsScreen, A.QuoteEditNotesScreen, A.QuoteEditPDFScreen, A.QuoteEditScreen, A.QuoteEmailScreen, A.QuoteListItem, A.QuoteListBuilder, A.QuotePdfScreen, A.QuoteScreen, A.QuoteScreenBuilder, A.QuoteViewScreen, A.RecurringExpenseEditScreen, A.RecurringExpenseListItem, A.RecurringExpenseListBuilder, A.RecurringExpenseScreen, A.RecurringExpenseScreenBuilder, A.RecurringExpenseViewScreen, A.RecurringInvoiceEditDetailsScreen, A.RecurringInvoiceEditItemsScreen, A.RecurringInvoiceEditNotesScreen, A.RecurringInvoiceEditPDFScreen, A.RecurringInvoiceEditScreen, A.RecurringInvoiceListItem, A.RecurringInvoiceListBuilder, A.RecurringInvoicePdfScreen, A.RecurringInvoiceScreen, A.RecurringInvoiceScreenBuilder, A.RecurringInvoiceViewScreen, A.ReportCharts, A.ReportsScreen, A.TotalsDataTable, A.ReportsScreenBuilder, A._AccountOverview, A.AccountManagementScreen, A.ClientPortalScreen, A.CompanyDetailsScreen, A.CreditCardsAndBanksScreen, A.CustomFieldsSettings, A.CustomFieldsScreen, A.DataVisualizationsScreen, A.DeviceSettingsScreen, A.EmailSettingsScreen, A.ExpenseSettingsScreen, A.HelpPanel, A.GeneratedNumbersScreen, A._FieldMapper, A.ImportExportScreen, A.InvoiceDesignScreen, A.LocalizationScreen, A.PaymentsSettingsScreen, A.ProductSettingsScreen, A.SettingsListTile, A.SettingsSearch, A.SettingsListBuilder, A.SettingsScreen, A.SettingsScreenBuilder, A.TaskSettingsScreen, A.NumberOfRatesSelector, A.TaxSettingsScreen, A.EmailPreview, A.TemplatesAndRemindersScreen, A.UserDetailsScreen, A.WorkflowSettingsScreen, A.SubscriptionEditScreen, A.SubscriptionListItem, A.SubscriptionListBuilder, A.SubscriptionScreen, A.SubscriptionScreenBuilder, A.SubscriptionViewScreen, A._BottomBar, A.TaskEditDetailsScreen, A.TaskEditTimesScreen, A.TaskEditScreen, A.TaskListItem, A.TaskListBuilder, A.TaskScreen, A.TaskScreenBuilder, A.TaskTimeListTile, A.TaskViewDocuments, A.TaskViewScreen, A.TaskStatusEditScreen, A.TaskStatusListItem, A.TaskStatusListBuilder, A.TaskStatusScreen, A.TaskStatusScreenBuilder, A.TaskStatusViewScreen, A.TaxRateEditScreen, A.TaxRateListItem, A.TaxRateListBuilder, A.TaxRateSettingsScreen, A.TaxRateScreenBuilder, A.TaxRateViewScreen, A.TokenEditScreen, A.TokenListItem, A.TokenListBuilder, A.TokenScreen, A.TokenScreenBuilder, A._TokenListTile, A.TokenViewScreen, A._PermissionCheckbox, A.UserEditScreen, A.UserListItem, A.UserListBuilder, A.UserScreen, A.UserScreenBuilder, A.UserView, A.UserViewScreen, A.ContactListTile, A.VendorEditContactsScreen, A.VendorEditDesktop, A.VendorEditFooter, A.VendorEditScreen, A.VendorListItem, A.VendorListBuilder, A.VendorScreen, A.VendorScreenBuilder, A.VendorViewDocuments, A.VendorOverview, A.VendorViewScreen, A.WebhookEditScreen, A.TargetListTile, A.WebhookViewScreen, A.WebhookListItem, A.WebhookListBuilder, A.WebhookScreen, A.WebhookScreenBuilder, A._PositionedToolbar, A.PointerInterceptor, A.PdfPreviewAction, A.PdfPrintAction, A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds, A.PdfPreviewPage, A._QrContentView, A.SignInWithAppleButton, A.OnBuilder, A.BlockquoteComponent, A.SelectableBox, A.ScrollableDocument, A.KeyboardEditingToolbar, A.DocumentKeyboardInteractor, A.HorizontalRuleComponent, A.ImageComponent, A._Component, A.UnorderedListItemComponent, A.OrderedListItemComponent, A.ListenableBuilder, A.AndroidFollowingMagnifier, A.AndroidMagnifyingGlass, A.AndroidSelectionHandle, A.AndroidTextEditingFloatingToolbar, A.IOSFollowingMagnifier, A.IOSRoundedRectangleMagnifyingGlass, A.IOSSelectionHandle, A.IOSCollapsedHandle, A.IOSTextEditingFloatingToolbar, A.MagnifyingGlass, A.TextLayoutSelectionHighlight, A.TextLayoutEmptyHighlight]); _inheritMany(A.ImageProvider, [A.CachedNetworkImageProvider, A.NetworkImage, A.AssetBundleImageProvider, A.ScrollAwareImageProvider, A.PdfRasterImage]); _inherit(A.ImageStreamCompleter, A._ImageStreamCompleter_Object_Diagnosticable); _inheritMany(A.ImageStreamCompleter, [A.MultiImageStreamCompleter, A._ErrorImageCompleter, A.OneFrameImageStreamCompleter, A.MultiFrameImageStreamCompleter]); _inherit(A.CartesianChart, A.BaseChart0); _inheritMany(A.CartesianChart, [A.OrdinalCartesianChart, A.TimeSeriesChart]); _inherit(A.BarChart0, A.OrdinalCartesianChart); _inherit(A.BaseCartesianRenderer, A.BaseSeriesRenderer); _inheritMany(A.BaseCartesianRenderer, [A.BaseBarRenderer, A.LineRenderer, A.PointRenderer]); _inherit(A.BarRenderer, A.BaseBarRenderer); _inherit(A.BarRendererElement, A.BaseBarRendererElement); _inherit(A.AnimatedBar, A.BaseAnimatedBar); _inheritMany(A.LayoutViewConfig, [A.BaseBarRendererConfig, A.LineRendererConfig, A.PointRendererConfig]); _inherit(A.BarRendererConfig, A.BaseBarRendererConfig); _inherit(A.Axis, A.ImmutableAxis); _inheritMany(A.Axis, [A.NumericAxis, A.OrdinalAxis, A.DateTimeAxis]); _inherit(A.AxisTicks, A.Tick); _inherit(A.SmallTickRendererSpec, A.BaseRenderSpec); _inherit(A.GridlineRendererSpec, A.SmallTickRendererSpec); _inheritMany(A.BaseTickDrawStrategy, [A.GridlineTickDrawStrategy, A.SmallTickDrawStrategy]); _inheritMany(A.BaseTickProvider, [A.NumericTickProvider, A.OrdinalTickProvider, A.TimeRangeTickProvider]); _inherit(A.MutableScale, A.Scale); _inheritMany(A.AxisSpec, [A.DateTimeAxisSpec, A.NumericAxisSpec, A.OrdinalAxisSpec]); _inheritMany(A.SimpleTickFormatterBase, [A.OrdinalTickFormatter, A.NumericTickFormatter]); _inherit(A._TimeStepIteratorFactoryImpl, A.TimeStepIteratorFactory); _inherit(A.DateTimeExtents, A.Extents); _inherit(A.DateTimeScale, A.MutableScale); _inheritMany(A.BaseTimeStepper, [A.DayTimeStepper, A.HourTimeStepper, A.MinuteTimeStepper, A.MonthTimeStepper, A.YearTimeStepper]); _inherit(A.HourTickFormatter, A.TimeTickFormatterImpl); _inherit(A.TimeRangeTickProviderImpl, A.TimeRangeTickProvider); _inherit(A.LegendEntry, A.LegendEntryBase); _inherit(A.SeriesLegend0, A.Legend); _inherit(A._LinePointLayoutView, A.LayoutView); _inheritMany(A.NullablePoint, [A._DatumPoint0, A._DatumPoint, A.DatumPoint]); _inherit(A.MutableSeries, A.ImmutableSeries); _inherit(A.MutableSelectionModel, A.SelectionModel); _inheritMany(A.TypedRegistry, [A.RendererAttributes, A.SeriesAttributes]); _inheritMany(A.VerticalMarginStrategy, [A.LeftMarginLayoutStrategy, A.RightMarginLayoutStrategy]); _inheritMany(A.HorizontalMarginStrategy, [A.TopMarginLayoutStrategy, A.BottomMarginLayoutStrategy]); _inheritMany(A.Palette, [A.MaterialBlue, A.MaterialRed, A.MaterialYellow, A.MaterialGreen, A.MaterialPurple, A.MaterialCyan, A.MaterialDeepOrange, A.MaterialLime, A.MaterialIndigo, A.MaterialPink, A.MaterialTeal]); _inherit(A.SymbolRenderer, A.BaseSymbolRenderer); _inheritMany(A.SymbolRenderer, [A.RoundedRectSymbolRenderer, A.LineSymbolRenderer, A.CircleSymbolRenderer]); _inherit(A.AttributeKey, A.TypedKey); _inherit(A.CartesianChart0, A.BaseChart); _inheritMany(A.CartesianChart0, [A.BarChart, A.TimeSeriesChart0]); _inherit(A.BaseChartState, A._BaseChartState_State_TickerProviderStateMixin); _inheritMany(A.ChartBehavior, [A.DomainHighlighter, A.SeriesLegend, A.LinePointHighlighter, A.SelectNearest]); _inherit(A.TabularLegendContentBuilder, A.BaseLegendContentBuilder); _inherit(A._FlutterSeriesLegend, A.SeriesLegend0); _inheritMany(A.RenderObjectWidget, [A.SingleChildRenderObjectWidget, A.LeafRenderObjectWidget, A.__Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin, A.__ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin, A.MultiChildRenderObjectWidget, A.RenderObjectToWidgetAdapter, A.ConstrainedLayoutBuilder, A.SliverWithKeepAliveWidget, A._SliverPersistentHeaderRenderObjectWidget, A.Table]); _inheritMany(A.SingleChildRenderObjectWidget, [A.CustomPaint, A._AppBarTitleBox, A._InputPadding, A._InputPadding0, A._MenuItem, A._ChildOverflowBox, A._InkFeatures, A._MenuItem0, A._DayPeriodInputPadding, A._SelectToggleButton, A._InputPadding1, A._AnimatedSize, A.AnnotatedRegion, A.Opacity, A.BackdropFilter, A.ClipRect, A.ClipRRect, A.ClipOval, A.ClipPath, A.PhysicalModel, A.PhysicalShape, A.Transform, A.CompositedTransformTarget, A.CompositedTransformFollower, A.FittedBox, A.FractionalTranslation, A.Padding, A.Align, A.CustomSingleChildLayout, A.SizedBox, A.ConstrainedBox, A.FractionallySizedBox, A.LimitedBox, A.OverflowBox, A.Offstage, A.AspectRatio, A.IntrinsicWidth, A.IntrinsicHeight, A.SliverPadding, A.Listener, A.MouseRegion, A.RepaintBoundary, A.IgnorePointer, A.AbsorbPointer, A.Semantics, A.MergeSemantics, A.BlockSemantics, A.ExcludeSemantics, A.IndexedSemantics, A.ColoredBox, A.DecoratedBox, A._GestureSemantics, A.FocusTrap, A.FocusTrapArea, A._ScrollSemantics, A._SingleChildViewport, A._SliverFractionalPadding, A.FadeTransition]); _inherit(A.ChartContainer, A.CustomPaint); _inheritMany(A.AbstractNode, [A._RenderObject_AbstractNode_DiagnosticableTreeMixin, A._Layer_AbstractNode_DiagnosticableTreeMixin, A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin]); _inherit(A.RenderObject, A._RenderObject_AbstractNode_DiagnosticableTreeMixin); _inheritMany(A.RenderObject, [A.RenderBox, A.RenderSliver, A._RenderView_RenderObject_RenderObjectWithChildMixin]); _inheritMany(A.RenderBox, [A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin, A._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin, A.__RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin, A.__RenderListTile_RenderBox_SlottedContainerRenderObjectMixin, A._RenderListBody_RenderBox_ContainerRenderObjectMixin, A._RenderFlex_RenderBox_ContainerRenderObjectMixin, A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin, A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin, A._RenderEditableCustomPaint, A.RenderErrorBox, A.RenderImage, A._RenderParagraph_RenderBox_ContainerRenderObjectMixin, A.RenderPerformanceOverlay, A._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin, A._RenderStack_RenderBox_ContainerRenderObjectMixin, A.RenderTable, A._RenderViewportBase_RenderBox_ContainerRenderObjectMixin, A._RenderWrap_RenderBox_ContainerRenderObjectMixin, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin, A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin, A.__RenderTheatre_RenderBox_ContainerRenderObjectMixin, A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin, A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin, A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin, A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin, A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin]); _inherit(A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin, A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin); _inherit(A.RenderProxyBox, A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin); _inheritMany(A.RenderProxyBox, [A.RenderCustomPaint, A.RenderConstrainedBox, A._RenderMenuItem, A._RenderInkFeatures, A.RenderProxyBoxWithHitTestBehavior, A.RenderLimitedBox, A.RenderAspectRatio, A.RenderIntrinsicWidth, A.RenderIntrinsicHeight, A.RenderOpacity, A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin, A.RenderBackdropFilter, A._RenderCustomClip, A.RenderDecoratedBox, A.RenderTransform, A.RenderFittedBox, A.RenderFractionalTranslation, A.RenderRepaintBoundary, A.RenderIgnorePointer, A.RenderOffstage, A.RenderAbsorbPointer, A.RenderSemanticsAnnotations, A.RenderBlockSemantics, A.RenderMergeSemantics, A.RenderExcludeSemantics, A.RenderIndexedSemantics, A.RenderLeaderLayer, A.RenderFollowerLayer, A.RenderAnnotatedRegion, A._RenderFocusTrapArea, A._RenderScrollSemantics]); _inherit(A.ChartContainerRenderObject, A.RenderCustomPaint); _inheritMany(A.Listenable, [A.CustomPainter, A.Animation0, A._MergingListenable, A.CustomClipper, A._SystemFontsNotifier]); _inheritMany(A.CustomPainter, [A.ChartContainerCustomPaint, A._SymbolCustomPaint, A._TextSelectionHandlePainter0, A._DropdownMenuPainter, A._InputBorderPainter, A._ShapeBorderPainter, A._LinearProgressIndicatorPainter, A._CircularProgressIndicatorPainter, A._IndicatorPainter, A._TextSelectionHandlePainter, A._DialPainter, A._GlowingOverscrollIndicatorPainter, A._PlaceholderPainter, A.QrPainter, A.AppleLogoPainter, A._CaretPainter, A.CaretPainter, A._EmptyHighlightPainter, A.TextSelectionPainter]); _inheritMany(A.MultiChildLayoutDelegate, [A.WidgetLayoutDelegate, A._ScaffoldLayout, A._ToolbarLayout]); _inheritMany(A._UnorderedEquality, [A.UnorderedIterableEquality, A.SetEquality]); _inherit(A.XFile, A.XFileBase); _inherit(A.IdentifierToken, A.Token); _inherit(A.Tokenizer, A.TokenizerBase); _inheritMany(A.TreeNode, [A.Identifier, A.Wildcard, A.ThisOperator, A.Negation, A.SelectorGroup, A.Selector, A.SimpleSelectorSequence, A.SimpleSelector, A.SelectorExpression, A.Expression]); _inheritMany(A.SimpleSelector, [A.ElementSelector, A.NamespaceSelector, A.AttributeSelector, A.IdSelector, A.ClassSelector, A.PseudoClassSelector, A.PseudoElementSelector, A.NegationSelector]); _inherit(A.PseudoClassFunctionSelector, A.PseudoClassSelector); _inherit(A.PseudoElementFunctionSelector, A.PseudoElementSelector); _inheritMany(A.Expression, [A.OperatorPlus, A.OperatorMinus, A.LiteralTerm]); _inheritMany(A.LiteralTerm, [A.NumberTerm, A.UnitTerm, A.PercentageTerm, A.EmTerm, A.ExTerm, A.FractionTerm]); _inheritMany(A.UnitTerm, [A.LengthTerm, A.AngleTerm, A.TimeTerm, A.FreqTerm, A.ResolutionTerm, A.ChTerm, A.RemTerm, A.ViewportTerm]); _inherit(A._RealtimeClock, A.Clock0); _inheritMany(A.MemoryFileSystemEntity, [A._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin, A.MemoryFile]); _inherit(A.MemoryDirectory, A._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin); _inherit(A._MemoryFileSystem, A.FileSystem0); _inherit(A.RealNode, A.Node2); _inheritMany(A.RealNode, [A.DirectoryNode, A.FileNode]); _inherit(A.RootNode, A.DirectoryNode); _inherit(A._Posix, A.FileSystemStyle); _inheritMany(A.PlatformInterface, [A.FilePicker, A.ImageCropperPlatform, A.ImagePickerPlatform, A.PackageInfoPlatform, A.PathProviderPlatform, A.PermissionHandlerPlatform, A.PrintingPlatform, A.SignInWithApplePlatform, A.UrlLauncherPlatform]); _inheritMany(A.FilePicker, [A.FilePickerWeb, A.FilePickerIO, A.FilePickerMacOS, A.FilePickerLinux]); _inheritMany(A.Animation0, [A._AnimationController_Animation_AnimationEagerListenerMixin, A._AlwaysCompleteAnimation, A._AlwaysDismissedAnimation, A.AlwaysStoppedAnimation, A._ProxyAnimation_Animation_AnimationLazyListenerMixin, A._ReverseAnimation_Animation_AnimationLazyListenerMixin, A._CurvedAnimation_Animation_AnimationWithParentMixin, A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin, A._CompoundAnimation_Animation_AnimationLazyListenerMixin, A.__AnimatedEvaluation_Animation_AnimationWithParentMixin, A.__ChangeAnimation_Animation_AnimationWithParentMixin, A.__DragAnimation_Animation_AnimationWithParentMixin]); _inherit(A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, A._AnimationController_Animation_AnimationEagerListenerMixin); _inherit(A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin); _inherit(A.AnimationController, A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inheritMany(A.Simulation, [A._InterpolationSimulation, A._RepeatingSimulation, A.FrictionSimulation, A.SpringSimulation, A.BouncingScrollSimulation, A.ClampingScrollSimulation]); _inherit(A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, A._ProxyAnimation_Animation_AnimationLazyListenerMixin); _inherit(A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin); _inherit(A.ProxyAnimation, A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inherit(A._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin, A._ReverseAnimation_Animation_AnimationLazyListenerMixin); _inherit(A.ReverseAnimation, A._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin); _inherit(A.CurvedAnimation, A._CurvedAnimation_Animation_AnimationWithParentMixin); _inherit(A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin); _inherit(A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin); _inherit(A.TrainHoppingAnimation, A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inherit(A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, A._CompoundAnimation_Animation_AnimationLazyListenerMixin); _inherit(A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin); _inherit(A.CompoundAnimation, A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inheritMany(A.CompoundAnimation, [A.AnimationMin, A._AnimationSwap]); _inheritMany(A.ParametricCurve, [A.Curve, A._BottomSheetSuspendedCurve]); _inheritMany(A.Curve, [A._Linear, A.SawTooth, A.Interval, A.Threshold, A.Cubic, A.ThreePointCubic, A.FlippedCurve, A._DecelerateCurve, A.ElasticOutCurve]); _inherit(A._AnimatedEvaluation, A.__AnimatedEvaluation_Animation_AnimationWithParentMixin); _inheritMany(A.Animatable, [A._ChainedEvaluation, A.Tween, A.CurveTween, A.TweenSequence]); _inheritMany(A.Tween, [A.ReverseTween, A.ColorTween, A.SizeTween, A.RectTween, A.IntTween, A.MaterialPointArcTween, A._InputBorderTween, A.ShapeBorderTween, A.ThemeDataTween, A.AlignmentGeometryTween, A.BoxConstraintsTween, A.DecorationTween, A.EdgeInsetsGeometryTween, A.BorderRadiusTween, A.Matrix4Tween, A.TextStyleTween]); _inherit(A._CupertinoButtonState, A.__CupertinoButtonState_State_SingleTickerProviderStateMixin); _inheritMany(A.Color, [A._CupertinoDynamicColor_Color_Diagnosticable, A.ColorSwatch, A.MaterialStateColor]); _inherit(A.CupertinoDynamicColor, A._CupertinoDynamicColor_Color_Diagnosticable); _inheritMany(A.TextSelectionControls, [A._CupertinoDesktopTextSelectionControls, A.CupertinoTextSelectionControls, A._DesktopTextSelectionControls, A.MaterialTextSelectionControls]); _inherit(A.IconThemeData, A._IconThemeData_Object_Diagnosticable); _inherit(A._CupertinoIconThemeData_IconThemeData_Diagnosticable, A.IconThemeData); _inherit(A.CupertinoIconThemeData, A._CupertinoIconThemeData_IconThemeData_Diagnosticable); _inheritMany(A.LocalizationsDelegate, [A._CupertinoLocalizationsDelegate, A._MaterialLocalizationsDelegate, A._WidgetsLocalizationsDelegate, A._GlobalCupertinoLocalizationsDelegate, A._MaterialLocalizationsDelegate0, A._WidgetsLocalizationsDelegate0, A.AppLocalizationsDelegate]); _inherit(A.Decoration, A._Decoration_Object_Diagnosticable); _inheritMany(A.Decoration, [A._CupertinoEdgeShadowDecoration, A.UnderlineTabIndicator, A.BoxDecoration, A.ShapeDecoration]); _inheritMany(A.BoxPainter, [A._CupertinoEdgeShadowPainter, A._UnderlinePainter, A._BoxDecorationPainter, A._ShapeDecorationPainter]); _inheritMany(A.RawScrollbar, [A.CupertinoScrollbar, A._MaterialScrollbar]); _inherit(A.RawScrollbarState, A._RawScrollbarState_State_TickerProviderStateMixin); _inheritMany(A.RawScrollbarState, [A._CupertinoScrollbarState, A._MaterialScrollbarState]); _inherit(A._CupertinoSwitchState, A.__CupertinoSwitchState_State_TickerProviderStateMixin); _inheritMany(A.LeafRenderObjectWidget, [A._CupertinoSwitchRenderObjectWidget, A.RawImage, A.ErrorWidget, A.PerformanceOverlay, A.PlatformViewSurface]); _inherit(A._RenderCupertinoSwitch, A.RenderConstrainedBox); _inherit(A.CupertinoTextThemeData, A._CupertinoTextThemeData_Object_Diagnosticable); _inheritMany(A.ProxyWidget, [A.InheritedWidget, A.ParentDataWidget, A.NotificationListener]); _inheritMany(A.InheritedWidget, [A._InheritedCupertinoTheme, A.InheritedTheme, A._FocusedDate, A.DropdownButtonHideUnderline, A.FlexibleSpaceBarSettings, A._ParentInkResponseProvider, A._ScaffoldMessengerScope, A._ScaffoldScope, A._TabControllerScope, A._ActionsMarker, A.InheritedNotifier, A._AutofillScope, A.Directionality, A._FocusTraversalGroupMarker, A._FormScope, A.InheritedModel, A._LocalizationsScope, A.MediaQuery, A.HeroControllerScope, A.PrimaryScrollController, A.UnmanagedRestorationScope, A._ModalScopeStatus, A.ScrollConfiguration, A._ScrollNotificationObserverScope, A._ScrollableScope, A._EffectiveTickerMode, A.StoreProvider, A.ActionPaneConfiguration, A._ActionPaneScope, A._SlidableControllerScope, A.StyledToastTheme]); _inherit(A._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable, A.NoDefaultCupertinoThemeData); _inherit(A.CupertinoThemeData, A._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable); _inherit(A._DefaultCupertinoTextThemeData, A.CupertinoTextThemeData); _inheritMany(A.DiagnosticsNode, [A.DiagnosticsProperty, A.DiagnosticsBlock, A.DiagnosticableNode]); _inheritMany(A.DiagnosticsProperty, [A._ErrorDiagnostic, A.ErrorSpacer]); _inheritMany(A._ErrorDiagnostic, [A.ErrorDescription, A.ErrorSummary, A.ErrorHint]); _inherit(A.FlutterErrorDetails, A._FlutterErrorDetails_Object_Diagnosticable); _inherit(A.FlutterError, A._FlutterError_Error_DiagnosticableTreeMixin); _inherit(A.DiagnosticsStackTrace, A.DiagnosticsBlock); _inheritMany(A.DiagnosticableNode, [A._FlutterErrorDetailsNode, A.DiagnosticableTreeNode, A._SemanticsDiagnosticableNode]); _inheritMany(A.ChangeNotifier, [A.ValueNotifier, A.ToggleablePainter, A.DataTableSource, A.RestorableProperty, A._InputBorderGap, A._ScaffoldGeometryNotifier, A.TabController, A.ViewportOffset, A.ScrollController, A.RenderEditablePainter, A.MouseTracker, A.SemanticsOwner, A.RestorationManager, A.KeepAliveHandle, A.OverlayEntry, A._GlowController, A._StretchController, A.ScrollbarPainter, A._ShortcutManager_ChangeNotifier_Diagnosticable, A.AppDataTableSource, A.PdfPreviewData]); _inheritMany(A.Key, [A.LocalKey, A.GlobalKey]); _inheritMany(A.LocalKey, [A.UniqueKey, A.ValueKey, A._SaltedKey, A.ObjectKey]); _inherit(A.LicenseEntryWithLineBreaks, A.LicenseEntry); _inherit(A.FlutterErrorDetailsForPointerEventDispatcher, A.FlutterErrorDetails); _inherit(A.PointerEvent, A._PointerEvent_Object_Diagnosticable); _inherit(A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable, A._AbstractPointerEvent); _inherit(A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription, A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable); _inherit(A._TransformedPointerEvent, A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription); _inheritMany(A.PointerEvent, [A._PointerAddedEvent_PointerEvent__PointerEventDescription, A._PointerRemovedEvent_PointerEvent__PointerEventDescription, A._PointerHoverEvent_PointerEvent__PointerEventDescription, A._PointerEnterEvent_PointerEvent__PointerEventDescription, A._PointerExitEvent_PointerEvent__PointerEventDescription, A._PointerDownEvent_PointerEvent__PointerEventDescription, A._PointerMoveEvent_PointerEvent__PointerEventDescription, A._PointerUpEvent_PointerEvent__PointerEventDescription, A.PointerSignalEvent, A._PointerCancelEvent_PointerEvent__PointerEventDescription]); _inherit(A._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent, A._PointerAddedEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerAddedEvent, A._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent); _inheritMany(A._TransformedPointerEvent, [A.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent, A.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent, A.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent, A.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent, A.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent, A.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent, A.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent, A.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent, A.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent, A.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent]); _inherit(A._TransformedPointerAddedEvent, A.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent); _inherit(A._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent, A._PointerRemovedEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerRemovedEvent, A._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent); _inherit(A._TransformedPointerRemovedEvent, A.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent); _inherit(A._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent, A._PointerHoverEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerHoverEvent, A._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent); _inherit(A._TransformedPointerHoverEvent, A.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent); _inherit(A._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent, A._PointerEnterEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerEnterEvent, A._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent); _inherit(A._TransformedPointerEnterEvent, A.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent); _inherit(A._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent, A._PointerExitEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerExitEvent, A._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent); _inherit(A._TransformedPointerExitEvent, A.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent); _inherit(A._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent, A._PointerDownEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerDownEvent, A._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent); _inherit(A._TransformedPointerDownEvent, A.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent); _inherit(A._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent, A._PointerMoveEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerMoveEvent, A._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent); _inherit(A._TransformedPointerMoveEvent, A.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent); _inherit(A._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent, A._PointerUpEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerUpEvent, A._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent); _inherit(A._TransformedPointerUpEvent, A.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent); _inherit(A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription, A.PointerSignalEvent); _inherit(A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent, A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription); _inherit(A.PointerScrollEvent, A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent); _inherit(A._TransformedPointerScrollEvent, A.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent); _inherit(A._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent, A._PointerCancelEvent_PointerEvent__PointerEventDescription); _inherit(A.PointerCancelEvent, A._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent); _inherit(A._TransformedPointerCancelEvent, A.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent); _inheritMany(A.GestureArenaMember, [A._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin, A._CombiningGestureArenaMember]); _inherit(A.GestureRecognizer, A._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin); _inheritMany(A.GestureRecognizer, [A.OneSequenceGestureRecognizer, A.MultiDragGestureRecognizer, A.DoubleTapGestureRecognizer, A.TapSequenceGestureRecognizer]); _inheritMany(A.OneSequenceGestureRecognizer, [A.ForcePressGestureRecognizer, A.PrimaryPointerGestureRecognizer, A.DragGestureRecognizer, A.ScaleGestureRecognizer, A._PlatformViewGestureRecognizer]); _inheritMany(A._TransformPart, [A._MatrixTransformPart, A._OffsetTransformPart]); _inheritMany(A.PrimaryPointerGestureRecognizer, [A.LongPressGestureRecognizer, A.BaseTapGestureRecognizer]); _inheritMany(A.DragGestureRecognizer, [A.VerticalDragGestureRecognizer, A.HorizontalDragGestureRecognizer, A.PanGestureRecognizer]); _inheritMany(A.MultiDragPointerState, [A._ImmediatePointerState, A._DelayedPointerState]); _inheritMany(A.MultiDragGestureRecognizer, [A.ImmediateMultiDragGestureRecognizer, A.DelayedMultiDragGestureRecognizer]); _inheritMany(A.BaseTapGestureRecognizer, [A.TapGestureRecognizer, A._AnyTapGestureRecognizer]); _inherit(A.IOSScrollViewFlingVelocityTracker, A.VelocityTracker); _inherit(A.MaterialScrollBehavior, A.ScrollBehavior); _inheritMany(A.SingleChildLayoutDelegate, [A._ToolbarContainerLayout, A._DropdownMenuRouteLayout, A._PopupMenuRouteLayout, A._TooltipPositionDelegate, A.ToolbarPositionDelegate]); _inherit(A._PreferredAppBarSize, A.Size); _inherit(A._SliverAppBarDelegate, A.SliverPersistentHeaderDelegate); _inherit(A._SliverAppBarState, A.__SliverAppBarState_State_TickerProviderStateMixin); _inherit(A.RenderShiftedBox, A._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin); _inheritMany(A.RenderShiftedBox, [A.RenderAligningShiftedBox, A._RenderInputPadding, A._RenderInputPadding0, A._RenderMenuItem0, A._RenderInputPadding1, A._SelectToggleButtonRenderObject, A._RenderInputPadding2, A.RenderPadding, A.RenderCustomSingleChildLayoutBox]); _inheritMany(A.RenderAligningShiftedBox, [A._RenderAppBarTitleBox, A._RenderChildOverflowBox, A.RenderAnimatedSize, A.RenderPositionedBox, A.RenderConstrainedOverflowBox, A.RenderFractionallySizedOverflowBox]); _inherit(A.AppBarTheme, A._AppBarTheme_Object_Diagnosticable); _inherit(A._DefaultsM20, A.AppBarTheme); _inherit(A.MaterialRectArcTween, A.RectTween); _inherit(A.MaterialBannerThemeData, A._MaterialBannerThemeData_Object_Diagnosticable); _inheritMany(A.CustomClipper, [A._BottomAppBarClipper, A.ShapeBorderClipper, A._DecorationClipper, A._SlidableClipper]); _inherit(A.BottomAppBarTheme, A._BottomAppBarTheme_Object_Diagnosticable); _inherit(A.BottomNavigationBarThemeData, A._BottomNavigationBarThemeData_Object_Diagnosticable); _inherit(A.BottomSheetThemeData, A._BottomSheetThemeData_Object_Diagnosticable); _inherit(A._RawMaterialButtonState, A.__RawMaterialButtonState_State_MaterialStateMixin); _inherit(A.ButtonBarThemeData, A._ButtonBarThemeData_Object_Diagnosticable); _inherit(A.ButtonStyle, A._ButtonStyle_Object_Diagnosticable); _inherit(A.__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin, A.__ButtonStyleState_State_MaterialStateMixin); _inherit(A._ButtonStyleState, A.__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin); _inherit(A.MouseCursor0, A._MouseCursor_Object_Diagnosticable); _inheritMany(A.MouseCursor0, [A.MaterialStateMouseCursor, A._DeferringMouseCursor, A._NoopMouseCursor, A.SystemMouseCursor]); _inheritMany(A.MaterialStateMouseCursor, [A._MouseCursor, A._EnabledAndDisabledMouseCursor, A._EffectiveMouseCursor]); _inheritMany(A.InheritedTheme, [A.ButtonTheme, A.ListTileTheme, A._InheritedTheme, A.IconTheme, A.DefaultTextStyle]); _inherit(A.ButtonThemeData, A._ButtonThemeData_Object_Diagnosticable); _inherit(A._DatePickerModeToggleButtonState, A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin); _inheritMany(A.SliverGridDelegate, [A._DayPickerGridDelegate, A._YearPickerGridDelegate, A.SliverGridDelegateWithFixedCrossAxisCount]); _inherit(A.CardTheme, A._CardTheme_Object_Diagnosticable); _inherit(A._DefaultsM21, A.CardTheme); _inherit(A.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin, A.__CheckboxState_State_TickerProviderStateMixin); _inherit(A._CheckboxState, A.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin); _inheritMany(A.ToggleablePainter, [A._CheckboxPainter, A._RadioPainter, A._SwitchPainter]); _inherit(A.CheckboxThemeData, A._CheckboxThemeData_Object_Diagnosticable); _inherit(A.ChipThemeData, A._ChipThemeData_Object_Diagnosticable); _inherit(A.ColorScheme, A._ColorScheme_Object_Diagnosticable); _inheritMany(A.ColorSwatch, [A.MaterialColor, A.MaterialAccentColor]); _inheritMany(A.InkResponse, [A.TableRowInkWell, A.InkWell, A.TableRowInkWell0]); _inherit(A._SortArrowState, A.__SortArrowState_State_TickerProviderStateMixin); _inheritMany(A.TableColumnWidth, [A._NullTableColumnWidth, A.IntrinsicColumnWidth, A.FixedColumnWidth, A.FlexColumnWidth, A._NullTableColumnWidth0]); _inherit(A.DataTableThemeData, A._DataTableThemeData_Object_Diagnosticable); _inherit(A._DatePickerDialogState, A.__DatePickerDialogState_State_RestorationMixin); _inheritMany(A.RestorableProperty, [A.RestorableValue, A._HistoryProperty, A.RestorableListenable]); _inheritMany(A.RestorableValue, [A._RestorableDatePickerEntryMode, A._RestorableAutovalidateMode, A.RestorableTimeOfDay, A._RestorableTimePickerEntryMode, A._RestorableTimePickerMode, A._RestorableAutovalidateMode0, A._RestorableTimePickerModeN, A._RestorablePrimitiveValueN, A.RestorableDateTime, A._RestorableScrollOffset]); _inheritMany(A.Route, [A.OverlayRoute, A._NotAnnounced]); _inherit(A.TransitionRoute, A.OverlayRoute); _inherit(A._ModalRoute_TransitionRoute_LocalHistoryRoute, A.TransitionRoute); _inherit(A.ModalRoute, A._ModalRoute_TransitionRoute_LocalHistoryRoute); _inheritMany(A.ModalRoute, [A.PopupRoute, A.PageRoute]); _inheritMany(A.PopupRoute, [A.RawDialogRoute, A._DropdownRoute, A._PopupMenuRoute]); _inherit(A.DialogRoute, A.RawDialogRoute); _inherit(A.DialogTheme, A._DialogTheme_Object_Diagnosticable); _inherit(A._DefaultsM2, A.DialogTheme); _inherit(A.DividerThemeData, A._DividerThemeData_Object_Diagnosticable); _inherit(A.DrawerControllerState, A._DrawerControllerState_State_SingleTickerProviderStateMixin); _inherit(A.DrawerThemeData, A._DrawerThemeData_Object_Diagnosticable); _inherit(A.DropdownMenuItem, A._DropdownMenuItemContainer); _inherit(A._DropdownButtonState, A.__DropdownButtonState_State_WidgetsBindingObserver); _inheritMany(A.FormField, [A.DropdownButtonFormField, A.TextFormField]); _inherit(A.FormFieldState, A._FormFieldState_State_RestorationMixin); _inheritMany(A.FormFieldState, [A._DropdownButtonFormFieldState, A._TextFormFieldState]); _inheritMany(A.ButtonStyleButton, [A.ElevatedButton, A.OutlinedButton, A.TextButton]); _inheritMany(A.MaterialStateProperty, [A.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable, A.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, A.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, A.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable, A.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, A.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, A.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A._TextButtonDefaultForeground, A._TextButtonDefaultOverlay, A.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A.__ResolveFillColor_MaterialStateProperty_Diagnosticable, A.__DefaultFillColor_MaterialStateProperty_Diagnosticable]); _inherit(A._ElevatedButtonDefaultBackground, A.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable); _inherit(A._ElevatedButtonDefaultForeground, A.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable); _inherit(A._ElevatedButtonDefaultOverlay, A.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable); _inherit(A._ElevatedButtonDefaultElevation, A.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable); _inherit(A._ElevatedButtonDefaultMouseCursor, A.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(A.ElevatedButtonThemeData, A._ElevatedButtonThemeData_Object_Diagnosticable); _inherit(A._ExpandIconState, A.__ExpandIconState_State_SingleTickerProviderStateMixin); _inherit(A.ExpansionTileThemeData, A._ExpansionTileThemeData_Object_Diagnosticable); _inherit(A.FloatingActionButtonThemeData, A._FloatingActionButtonThemeData_Object_Diagnosticable); _inherit(A._M2Defaults, A.FloatingActionButtonThemeData); _inheritMany(A.FloatingActionButtonLocation, [A.StandardFabLocation, A._TransitionSnapshotFabLocation]); _inheritMany(A.StandardFabLocation, [A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX]); _inherit(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY, A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndTopFabLocation, A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY); _inherit(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndFloatFabLocation, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY); _inherit(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndDockedFabLocation, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY); _inherit(A._ScalingFabMotionAnimator, A.FloatingActionButtonAnimator); _inheritMany(A.InkFeature, [A.InkDecoration, A.InteractiveInkFeature]); _inheritMany(A.InteractiveInkFeature, [A.InkHighlight, A.InkRipple, A.InkSplash]); _inheritMany(A.InteractiveInkFeatureFactory, [A._InkRippleFactory, A._InkSplashFactory]); _inherit(A._InkResponseState, A.__InkResponseState_State_AutomaticKeepAliveClientMixin); _inheritMany(A.ShapeBorder, [A.InputBorder, A.OutlinedBorder, A._CompoundBorder, A.BoxBorder]); _inheritMany(A.InputBorder, [A._NoInputBorder, A.UnderlineInputBorder, A.OutlineInputBorder]); _inherit(A._BorderContainerState, A.__BorderContainerState_State_TickerProviderStateMixin); _inheritMany(A.AnimatedWidget, [A._Shaker, A._TabStyle, A.AnimatedModalBarrier, A.SlideTransition, A.ScaleTransition, A.RotationTransition, A.SizeTransition, A.DecoratedBoxTransition, A.AnimatedBuilder, A.CustomSizeTransition]); _inherit(A._HelperErrorState, A.__HelperErrorState_State_SingleTickerProviderStateMixin); _inherit(A._RenderDecoration, A.__RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin); _inherit(A._Decorator, A.__Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin); _inherit(A._InputDecoratorState, A.__InputDecoratorState_State_TickerProviderStateMixin); _inherit(A.InputDecorationTheme, A._InputDecorationTheme_Object_Diagnosticable); _inherit(A._ListTile, A.__ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin); _inherit(A._RenderListTile, A.__RenderListTile_RenderBox_SlottedContainerRenderObjectMixin); _inherit(A.ListTileThemeData, A._ListTileThemeData_Object_Diagnosticable); _inherit(A._MaterialState, A.__MaterialState_State_TickerProviderStateMixin); _inheritMany(A.ImplicitlyAnimatedWidget, [A._MaterialInterior, A.AnimatedTheme, A.AnimatedContainer, A.AnimatedPadding, A.AnimatedOpacity, A.AnimatedDefaultTextStyle, A.AnimatedPhysicalModel]); _inherit(A.ImplicitlyAnimatedWidgetState, A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin); _inheritMany(A.ImplicitlyAnimatedWidgetState, [A.AnimatedWidgetBaseState, A._AnimatedOpacityState]); _inheritMany(A.AnimatedWidgetBaseState, [A._MaterialInteriorState, A._AnimatedThemeState, A._AnimatedContainerState, A._AnimatedPaddingState, A._AnimatedDefaultTextStyleState, A._AnimatedPhysicalModelState]); _inherit(A._MaterialStateColor, A.MaterialStateColor); _inheritMany(A.MergeableMaterialItem, [A.MaterialSlice, A.MaterialGap]); _inherit(A._MergeableMaterialState, A.__MergeableMaterialState_State_TickerProviderStateMixin); _inheritMany(A.GlobalKey, [A._MergeableMaterialSliceKey, A.GlobalObjectKey, A.LabeledGlobalKey]); _inheritMany(A.MultiChildRenderObjectWidget, [A.ListBody, A.Flex, A.CustomMultiChildLayout, A.Stack, A.Wrap, A.RichText, A._Editable, A.OverflowBar, A._Theatre, A.Viewport, A.ShrinkWrappingViewport, A.FlexEntranceTransition, A.OverflowView, A._SuperTextLayout]); _inherit(A._MergeableMaterialListBody, A.ListBody); _inherit(A._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderListBody_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderListBody, A._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A._RenderMergeableMaterialListBody, A.RenderListBody); _inherit(A.NavigationBarThemeData, A._NavigationBarThemeData_Object_Diagnosticable); _inherit(A.NavigationRailThemeData, A._NavigationRailThemeData_Object_Diagnosticable); _inherit(A._OutlinedButtonDefaultForeground, A.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable); _inherit(A._OutlinedButtonDefaultOverlay, A.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable); _inherit(A._OutlinedButtonDefaultMouseCursor, A.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(A.OutlinedButtonThemeData, A._OutlinedButtonThemeData_Object_Diagnosticable); _inherit(A._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin, A.PageRoute); _inherit(A.MaterialPageRoute, A._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin); _inheritMany(A.PageTransitionsBuilder, [A.ZoomPageTransitionsBuilder, A.CupertinoPageTransitionsBuilder]); _inherit(A.PageTransitionsTheme, A._PageTransitionsTheme_Object_Diagnosticable); _inheritMany(A.PopupMenuEntry, [A.PopupMenuDivider, A.PopupMenuItem]); _inherit(A.PopupMenuThemeData, A._PopupMenuThemeData_Object_Diagnosticable); _inheritMany(A.ProgressIndicator, [A.LinearProgressIndicator, A.CircularProgressIndicator]); _inherit(A._LinearProgressIndicatorState, A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin); _inherit(A._CircularProgressIndicatorState, A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin); _inherit(A._RefreshProgressIndicatorPainter, A._CircularProgressIndicatorPainter); _inherit(A.RefreshProgressIndicator, A.CircularProgressIndicator); _inherit(A._RefreshProgressIndicatorState, A._CircularProgressIndicatorState); _inherit(A.ProgressIndicatorThemeData, A._ProgressIndicatorThemeData_Object_Diagnosticable); _inherit(A.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin, A.__RadioState_State_TickerProviderStateMixin); _inherit(A._RadioState, A.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin); _inherit(A.RadioThemeData, A._RadioThemeData_Object_Diagnosticable); _inherit(A.RefreshIndicatorState, A._RefreshIndicatorState_State_TickerProviderStateMixin); _inheritMany(A.GlobalObjectKey, [A._ReorderableListViewChildGlobalKey, A._ReorderableItemGlobalKey]); _inherit(A.ScaffoldMessengerState, A._ScaffoldMessengerState_State_TickerProviderStateMixin); _inheritMany(A.Constraints, [A.BoxConstraints, A.SliverConstraints]); _inheritMany(A.BoxConstraints, [A._BodyBoxConstraints, A.BoxValueConstraints]); _inherit(A._FloatingActionButtonTransitionState, A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin); _inherit(A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin, A._ScaffoldState_State_TickerProviderStateMixin); _inherit(A.ScaffoldState, A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin); _inherit(A.PersistentBottomSheetController, A.ScaffoldFeatureController); _inherit(A.ScrollbarThemeData, A._ScrollbarThemeData_Object_Diagnosticable); _inheritMany(A.ValueNotifier, [A.TextEditingController, A.TransformationController, A._ValueNotifier]); _inherit(A._TextSpanEditingController, A.TextEditingController); _inheritMany(A.TextSelectionGestureDetectorBuilder, [A._SelectableTextSelectionGestureDetectorBuilder, A._TextFieldSelectionGestureDetectorBuilder]); _inherit(A.SliderThemeData, A._SliderThemeData_Object_Diagnosticable); _inherit(A.SnackBarThemeData, A._SnackBarThemeData_Object_Diagnosticable); _inherit(A.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin, A.__MaterialSwitchState_State_TickerProviderStateMixin); _inherit(A._MaterialSwitchState, A.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin); _inherit(A.SwitchThemeData, A._SwitchThemeData_Object_Diagnosticable); _inherit(A.TabBarTheme, A._TabBarTheme_Object_Diagnosticable); _inherit(A._DefaultTabControllerState, A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin); _inherit(A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderFlex_RenderBox_ContainerRenderObjectMixin); _inherit(A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin, A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.RenderFlex, A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin); _inherit(A._TabLabelBarRenderer, A.RenderFlex); _inheritMany(A.Flex, [A._TabLabelBar, A.Row, A.Column]); _inherit(A._ChangeAnimation, A.__ChangeAnimation_Animation_AnimationWithParentMixin); _inherit(A._DragAnimation, A.__DragAnimation_Animation_AnimationWithParentMixin); _inherit(A._ScrollPosition_ViewportOffset_ScrollMetrics, A.ViewportOffset); _inherit(A.ScrollPosition, A._ScrollPosition_ViewportOffset_ScrollMetrics); _inherit(A.ScrollPositionWithSingleContext, A.ScrollPosition); _inheritMany(A.ScrollPositionWithSingleContext, [A._TabBarScrollPosition, A._DraggableScrollableSheetScrollPosition, A._PagePosition]); _inheritMany(A.ScrollController, [A._TabBarScrollController, A._DraggableScrollableSheetScrollController, A.PageController]); _inherit(A._TextButtonDefaultMouseCursor, A.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(A.TextButtonThemeData, A._TextButtonThemeData_Object_Diagnosticable); _inherit(A._TextFieldState, A.__TextFieldState_State_RestorationMixin); _inherit(A.TextSelectionThemeData, A._TextSelectionThemeData_Object_Diagnosticable); _inherit(A.TextTheme, A._TextTheme_Object_Diagnosticable); _inherit(A.ThemeData, A._ThemeData_Object_Diagnosticable); _inherit(A.MaterialBasedCupertinoThemeData, A.CupertinoThemeData); _inherit(A.VisualDensity, A._VisualDensity_Object_Diagnosticable); _inherit(A._DialState, A.__DialState_State_SingleTickerProviderStateMixin); _inherit(A._TimePickerInputState, A.__TimePickerInputState_State_RestorationMixin); _inherit(A._HourMinuteTextFieldState, A.__HourMinuteTextFieldState_State_RestorationMixin); _inherit(A._TimePickerDialogState, A.__TimePickerDialogState_State_RestorationMixin); _inherit(A.TimePickerThemeData, A._TimePickerThemeData_Object_Diagnosticable); _inherit(A._ResolveFillColor, A.__ResolveFillColor_MaterialStateProperty_Diagnosticable); _inherit(A._DefaultFillColor, A.__DefaultFillColor_MaterialStateProperty_Diagnosticable); _inherit(A.ToggleButtonsThemeData, A._ToggleButtonsThemeData_Object_Diagnosticable); _inherit(A.TooltipState, A._TooltipState_State_SingleTickerProviderStateMixin); _inherit(A.TooltipThemeData, A._TooltipThemeData_Object_Diagnosticable); _inherit(A.Typography, A._Typography_Object_Diagnosticable); _inheritMany(A.AlignmentGeometry, [A.Alignment, A.AlignmentDirectional, A._MixedAlignment]); _inheritMany(A.BorderRadiusGeometry, [A.BorderRadius, A._MixedBorderRadius]); _inheritMany(A.BoxBorder, [A.Border, A.BorderDirectional]); _inherit(A.BoxShadow, A.Shadow); _inheritMany(A.OutlinedBorder, [A.CircleBorder, A.RoundedRectangleBorder, A._RoundedRectangleToCircleBorder, A.StadiumBorder, A._StadiumToCircleBorder, A._StadiumToRoundedRectangleBorder]); _inheritMany(A.EdgeInsetsGeometry, [A.EdgeInsets, A.EdgeInsetsDirectional, A._MixedEdgeInsets]); _inherit(A.FractionalOffset, A.Alignment); _inherit(A.LinearGradient, A.Gradient); _inheritMany(A._CachedImageBase, [A._CachedImage, A._LiveImage]); _inherit(A.AssetImage, A.AssetBundleImageProvider); _inherit(A.ImageChunkEvent, A._ImageChunkEvent_Object_Diagnosticable); _inherit(A.ImageStream, A._ImageStream_Object_Diagnosticable); _inherit(A.CircularNotchedRectangle, A.NotchedShape); _inheritMany(A.InlineSpan, [A.PlaceholderSpan, A.TextSpan]); _inherit(A.StrutStyle, A._StrutStyle_Object_Diagnosticable); _inherit(A.TextStyle, A._TextStyle_Object_Diagnosticable); _inherit(A.ScrollSpringSimulation, A.SpringSimulation); _inheritMany(A.HitTestResult, [A.BoxHitTestResult, A.SliverHitTestResult]); _inheritMany(A.HitTestEntry, [A.BoxHitTestEntry, A.SliverHitTestEntry]); _inheritMany(A.ParentData, [A.BoxParentData, A.SliverLogicalParentData, A.SliverPhysicalParentData]); _inheritMany(A.BoxParentData, [A._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin, A.TableCellParentData]); _inherit(A.ContainerBoxParentData, A._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin); _inheritMany(A.ContainerBoxParentData, [A.MultiChildLayoutParentData, A.FlexParentData, A.ListBodyParentData, A.TextParentData, A.StackParentData, A.WrapParentData, A._OverflowBarParentData, A.OverflowViewParentData, A._SuperTextLayoutParentData]); _inherit(A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderCustomMultiChildLayoutBox, A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.VerticalCaretMovementRun, A.BidirectionalIterator); _inherit(A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin, A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin); _inherit(A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin); _inherit(A.RenderEditable, A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inheritMany(A.RenderEditablePainter, [A._TextHighlightPainter, A._FloatingCursorPainter, A._CompositeRenderEditablePainter]); _inherit(A.Layer0, A._Layer_AbstractNode_DiagnosticableTreeMixin); _inheritMany(A.Layer0, [A.PictureLayer, A.PlatformViewLayer, A.PerformanceOverlayLayer, A.ContainerLayer0]); _inheritMany(A.ContainerLayer0, [A.OffsetLayer, A.ClipRectLayer, A.ClipRRectLayer, A.ClipPathLayer, A.BackdropFilterLayer, A.PhysicalModelLayer, A.LeaderLayer, A.FollowerLayer, A.AnnotatedRegionLayer]); _inheritMany(A.OffsetLayer, [A.TransformLayer, A.OpacityLayer]); _inherit(A._MouseTrackerUpdateDetails, A.__MouseTrackerUpdateDetails_Object_Diagnosticable); _inherit(A.PaintingContext, A.ClipContext); _inheritMany(A._SemanticsFragment, [A._ContainerSemanticsFragment, A._InterestingSemanticsFragment]); _inheritMany(A._InterestingSemanticsFragment, [A._RootSemanticsFragment, A._SwitchableSemanticsFragment]); _inherit(A.PlaceholderSpanIndexSemanticsTag, A.SemanticsTag); _inherit(A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderParagraph_RenderBox_ContainerRenderObjectMixin); _inherit(A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin, A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.RenderParagraph, A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin); _inherit(A.PlatformViewRenderBox, A._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin); _inherit(A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin, A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin); _inherit(A.RenderAnimatedOpacity, A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin); _inheritMany(A._RenderCustomClip, [A.RenderClipRect, A.RenderClipRRect, A.RenderClipOval, A.RenderClipPath, A._RenderPhysicalModelBase]); _inheritMany(A._RenderPhysicalModelBase, [A.RenderPhysicalModel, A.RenderPhysicalShape]); _inheritMany(A.RenderProxyBoxWithHitTestBehavior, [A.RenderPointerListener, A.RenderMouseRegion, A.RenderSemanticsGestureHandler, A._RenderColoredBox, A._RenderFocusTrap]); _inherit(A.SliverGeometry, A._SliverGeometry_Object_Diagnosticable); _inheritMany(A.SliverLogicalParentData, [A._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin, A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin]); _inherit(A.SliverLogicalContainerParentData, A._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin); _inherit(A._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin, A.SliverPhysicalParentData); _inherit(A.SliverPhysicalContainerParentData, A._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin); _inheritMany(A.RenderSliver, [A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin, A._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin, A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin]); _inherit(A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers, A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin); _inherit(A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin, A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers); _inherit(A.RenderSliverMultiBoxAdaptor, A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin); _inheritMany(A.RenderSliverMultiBoxAdaptor, [A.RenderSliverFixedExtentBoxAdaptor, A.RenderSliverGrid, A.RenderSliverList]); _inherit(A.RenderSliverFillViewport, A.RenderSliverFixedExtentBoxAdaptor); _inherit(A.SliverGridRegularTileLayout, A.SliverGridLayout); _inherit(A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin, A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin); _inherit(A.SliverMultiBoxAdaptorParentData, A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin); _inherit(A.SliverGridParentData, A.SliverMultiBoxAdaptorParentData); _inherit(A.RenderSliverEdgeInsetsPadding, A._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin); _inheritMany(A.RenderSliverEdgeInsetsPadding, [A.RenderSliverPadding, A._RenderSliverFractionalPadding]); _inherit(A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers, A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin); _inherit(A.RenderSliverPersistentHeader, A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers); _inherit(A.RenderSliverPinnedPersistentHeader, A.RenderSliverPersistentHeader); _inherit(A._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderStack_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderStack, A._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.RenderIndexedStack, A.RenderStack); _inherit(A.RenderView, A._RenderView_RenderObject_RenderObjectWithChildMixin); _inherit(A.RenderViewportBase, A._RenderViewportBase_RenderBox_ContainerRenderObjectMixin); _inheritMany(A.RenderViewportBase, [A.RenderViewport, A.RenderShrinkWrappingViewport]); _inherit(A._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderWrap_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderWrap, A._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.SemanticsData, A._SemanticsData_Object_Diagnosticable); _inherit(A.SemanticsNode, A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin); _inherit(A._SemanticsSortGroup, A.Comparable); _inherit(A.SemanticsSortKey, A._SemanticsSortKey_Object_Diagnosticable); _inherit(A.OrdinalSortKey, A.SemanticsSortKey); _inheritMany(A.SemanticsEvent, [A.AnnounceSemanticsEvent, A.TooltipSemanticsEvent, A.LongPressSemanticsEvent, A.TapSemanticEvent]); _inherit(A.CachingAssetBundle, A.AssetBundle); _inherit(A.PlatformAssetBundle, A.CachingAssetBundle); _inherit(A._AutofillScopeTextInputConfiguration, A.TextInputConfiguration); _inheritMany(A.BinaryMessenger, [A._DefaultBinaryMessenger, A.Registrar]); _inherit(A.KeyEvent, A._KeyEvent_Object_Diagnosticable); _inheritMany(A.KeyEvent, [A.KeyDownEvent, A.KeyUpEvent, A.KeyRepeatEvent]); _inherit(A.KeyboardKey, A._KeyboardKey_Object_Diagnosticable); _inheritMany(A.KeyboardKey, [A.LogicalKeyboardKey, A.PhysicalKeyboardKey]); _inheritMany(A.MouseCursorSession, [A._NoopMouseCursorSession, A._SystemMouseCursorSession]); _inherit(A.OptionalMethodChannel, A.MethodChannel); _inherit(A.RawKeyEventData, A._RawKeyEventData_Object_Diagnosticable); _inherit(A.RawKeyEvent, A._RawKeyEvent_Object_Diagnosticable); _inheritMany(A.RawKeyEvent, [A.RawKeyDownEvent, A.RawKeyUpEvent]); _inheritMany(A.RawKeyEventData, [A.RawKeyEventDataFuchsia, A.RawKeyEventDataLinux, A.RawKeyEventDataMacOs, A.RawKeyEventDataWeb]); _inherit(A.TextSelection, A.TextRange); _inheritMany(A.TextEditingDelta, [A.TextEditingDeltaInsertion, A.TextEditingDeltaDeletion, A.TextEditingDeltaReplacement, A.TextEditingDeltaNonTextUpdate]); _inheritMany(A.TextInputFormatter, [A.FilteringTextInputFormatter, A.LengthLimitingTextInputFormatter]); _inherit(A.Intent, A._Intent_Object_Diagnosticable); _inherit(A.Action, A._Action_Object_Diagnosticable); _inheritMany(A.Action, [A.ContextAction, A.CallbackAction, A.DoNothingAction, A.DismissAction, A.PrioritizedAction, A._ContextActionToActionAdapter, A.RequestFocusAction, A.NextFocusAction, A.PreviousFocusAction, A.DirectionalFocusAction, A.ScrollAction, A.InsertTabAction]); _inherit(A.ActionDispatcher, A._ActionDispatcher_Object_Diagnosticable); _inheritMany(A.Intent, [A.ActivateIntent, A.ButtonActivateIntent, A.DismissIntent, A.PrioritizedIntents, A.AutocompletePreviousOptionIntent, A.AutocompleteNextOptionIntent, A.NextFocusIntent, A.PreviousFocusIntent, A.DirectionalFocusIntent, A.ScrollIntent, A.DoNothingAndStopPropagationTextIntent, A.ReplaceTextIntent, A.UpdateSelectionIntent, A.InsertTabIntent]); _inheritMany(A.ContextAction, [A.__OverridableAction_ContextAction__OverridableActionMixin, A.__OverridableContextAction_ContextAction__OverridableActionMixin, A._DeleteTextAction, A._UpdateTextSelectionAction, A._ExtendSelectionOrCaretPositionAction, A._UpdateTextSelectionToAdjacentLineAction, A._SelectAllAction, A._CopySelectionAction]); _inherit(A._OverridableAction, A.__OverridableAction_ContextAction__OverridableActionMixin); _inherit(A._OverridableContextAction, A.__OverridableContextAction_ContextAction__OverridableActionMixin); _inherit(A._AnimatedCrossFadeState, A.__AnimatedCrossFadeState_State_TickerProviderStateMixin); _inherit(A._AnimatedSizeState, A.__AnimatedSizeState_State_SingleTickerProviderStateMixin); _inherit(A._AnimatedSwitcherState, A.__AnimatedSwitcherState_State_TickerProviderStateMixin); _inherit(A._WidgetsAppState, A.__WidgetsAppState_State_WidgetsBindingObserver); _inherit(A.StreamBuilder, A.StreamBuilderBase); _inherit(A._AutocompleteCallbackAction, A.CallbackAction); _inheritMany(A.InheritedNotifier, [A.AutocompleteHighlightedOption, A._FocusMarker, A._ShortcutsMarker, A.PdfPreviewController]); _inherit(A.AutofillGroupState, A._AutofillGroupState_State_AutofillScopeMixin); _inheritMany(A.Notification0, [A.KeepAliveNotification, A._DraggableScrollableNotification_Notification_ViewportNotificationMixin, A.LayoutChangedNotification, A._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin, A._ScrollMetricsNotification_Notification_ViewportNotificationMixin]); _inherit(A.Center, A.Align); _inheritMany(A.ParentDataWidget, [A.LayoutId, A.Positioned, A.Flexible, A.KeepAlive, A.TableCell]); _inheritMany(A.Element0, [A.RenderObjectElement, A.ComponentElement, A._NullElement]); _inheritMany(A.RenderObjectElement, [A.SingleChildRenderObjectElement, A.RootRenderObjectElement, A.LeafRenderObjectElement, A.MultiChildRenderObjectElement, A._LayoutBuilderElement, A.SliverMultiBoxAdaptorElement, A._SliverPersistentHeaderElement, A.SlottedRenderObjectElement, A._TableElement]); _inheritMany(A.SingleChildRenderObjectElement, [A._OffstageElement, A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin]); _inherit(A.IndexedStack, A.Stack); _inherit(A.Expanded, A.Flexible); _inherit(A.RenderObjectToWidgetElement, A.RootRenderObjectElement); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding, A.BindingBase); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding); _inherit(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding); _inherit(A.WidgetsFlutterBinding, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding); _inherit(A.DefaultTextEditingShortcuts, A.Shortcuts); _inherit(A.DraggableScrollableNotification, A._DraggableScrollableNotification_Notification_ViewportNotificationMixin); _inherit(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver, A._EditableTextState_State_AutomaticKeepAliveClientMixin); _inherit(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin, A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver); _inherit(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate, A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin); _inherit(A.EditableTextState, A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate); _inherit(A.WidgetSpan, A.PlaceholderSpan); _inherit(A._ScribblePlaceholder, A.WidgetSpan); _inheritMany(A._TextBoundary, [A._CodeUnitBoundary, A._WhitespaceBoundary, A._CharacterBoundary, A._WordBoundary, A._LineBreak, A._DocumentBoundary, A._ExpandedTextBoundary, A._CollapsedSelectionBoundary, A._MixedBoundary]); _inherit(A._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier, A._FocusNode_Object_DiagnosticableTreeMixin); _inherit(A.FocusNode, A._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier); _inherit(A.FocusScopeNode, A.FocusNode); _inherit(A._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier, A._FocusManager_Object_DiagnosticableTreeMixin); _inherit(A.FocusManager, A._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier); _inherit(A.FocusScope, A.Focus); _inherit(A._FocusScopeState, A._FocusState); _inherit(A.FocusTraversalPolicy, A._FocusTraversalPolicy_Object_Diagnosticable); _inherit(A._ReadingOrderSortData, A.__ReadingOrderSortData_Object_Diagnosticable); _inherit(A._ReadingOrderDirectionalGroupData, A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable); _inherit(A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin, A.FocusTraversalPolicy); _inherit(A.ReadingOrderTraversalPolicy, A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin); _inherit(A._ElementDiagnosticableTreeNode, A.DiagnosticableTreeNode); _inheritMany(A.ComponentElement, [A.StatelessElement, A.StatefulElement, A.ProxyElement]); _inheritMany(A.ProxyElement, [A.ParentDataElement, A.InheritedElement, A.__NotificationElement_ProxyElement_NotifiableElementMixin]); _inheritMany(A.GestureRecognizerFactory, [A.GestureRecognizerFactoryWithHandlers, A._AnyTapGestureRecognizerFactory]); _inheritMany(A.SemanticsGestureDelegate, [A._DefaultSemanticsGestureDelegate, A._ModalBarrierSemanticsDelegate]); _inheritMany(A.NavigatorObserver, [A.HeroController, A.RouteObserver]); _inherit(A._ImageState, A.__ImageState_State_WidgetsBindingObserver); _inheritMany(A.InheritedElement, [A.InheritedModelElement, A._InheritedNotifierElement]); _inherit(A._InteractiveViewerState, A.__InteractiveViewerState_State_TickerProviderStateMixin); _inheritMany(A.ConstrainedLayoutBuilder, [A.LayoutBuilder, A.ValueLayoutBuilder]); _inherit(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin); _inherit(A._RenderLayoutBuilder, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder); _inherit(A._MediaQueryFromWindowState, A.__MediaQueryFromWindowState_State_WidgetsBindingObserver); _inherit(A.DefaultTransitionDelegate, A.TransitionDelegate); _inherit(A._RouteEntry, A.RouteTransitionRecord); _inheritMany(A._NavigatorObservation, [A._NavigatorPushObservation, A._NavigatorPopObservation, A._NavigatorRemoveObservation, A._NavigatorReplaceObservation]); _inherit(A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin, A._NavigatorState_State_TickerProviderStateMixin); _inherit(A.NavigatorState, A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin); _inheritMany(A._RestorationInformation, [A._NamedRestorationInformation, A._AnonymousRestorationInformation]); _inherit(A._NotificationElement, A.__NotificationElement_ProxyElement_NotifiableElementMixin); _inherit(A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin); _inherit(A._RenderOverflowBar, A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.OverlayState, A._OverlayState_State_TickerProviderStateMixin); _inheritMany(A.MultiChildRenderObjectElement, [A._TheatreElement, A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin, A._OverflowViewElement]); _inherit(A._RenderTheatre, A.__RenderTheatre_RenderBox_ContainerRenderObjectMixin); _inherit(A._GlowingOverscrollIndicatorState, A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin); _inherit(A._StretchingOverscrollIndicatorState, A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin); _inherit(A.OverscrollIndicatorNotification, A._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin); _inherit(A.FixedScrollMetrics, A._FixedScrollMetrics_Object_ScrollMetrics); _inherit(A.PageMetrics, A.FixedScrollMetrics); _inheritMany(A.ScrollPhysics, [A._ForceImplicitScrollPhysics, A.PageScrollPhysics, A.RangeMaintainingScrollPhysics, A.BouncingScrollPhysics, A.ClampingScrollPhysics, A.AlwaysScrollableScrollPhysics, A.NeverScrollableScrollPhysics]); _inherit(A.DefaultPlatformMenuDelegate, A.PlatformMenuDelegate); _inherit(A._HtmlElementViewController, A.PlatformViewController); _inherit(A.SliverReorderableListState, A._SliverReorderableListState_State_TickerProviderStateMixin); _inherit(A.ReorderableDelayedDragStartListener, A.ReorderableDragStartListener); _inherit(A._DragInfo, A.Drag); _inherit(A._RestorationScopeState, A.__RestorationScopeState_State_RestorationMixin); _inheritMany(A._RestorablePrimitiveValueN, [A._RestorablePrimitiveValue, A.RestorableBoolN, A.RestorableStringN]); _inheritMany(A._RestorablePrimitiveValue, [A.RestorableNum, A.RestorableBool]); _inherit(A.RestorableChangeNotifier, A.RestorableListenable); _inherit(A.RestorableTextEditingController, A.RestorableChangeNotifier); _inherit(A._DismissModalAction, A.DismissAction); _inheritMany(A.ScrollActivity, [A.IdleScrollActivity, A.HoldScrollActivity, A.DragScrollActivity, A.BallisticScrollActivity, A.DrivenScrollActivity]); _inherit(A._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin, A.LayoutChangedNotification); _inherit(A.ScrollNotification, A._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin); _inheritMany(A.ScrollNotification, [A.ScrollStartNotification, A.ScrollUpdateNotification, A.OverscrollNotification, A.ScrollEndNotification, A.UserScrollNotification]); _inherit(A._ListenerEntry, A.LinkedListEntry); _inherit(A.ScrollMetricsNotification, A._ScrollMetricsNotification_Notification_ViewportNotificationMixin); _inheritMany(A.ScrollView, [A.CustomScrollView, A.BoxScrollView]); _inheritMany(A.BoxScrollView, [A.ListView, A.GridView]); _inherit(A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin, A._ScrollableState_State_TickerProviderStateMixin); _inherit(A.ScrollableState, A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin); _inherit(A._ThumbPressGestureRecognizer, A.LongPressGestureRecognizer); _inherit(A._TrackTapGestureRecognizer, A.TapGestureRecognizer); _inherit(A._SharedAppModel, A.InheritedModel); _inherit(A._LogicalKeySet_KeySet_Diagnosticable, A.KeySet); _inherit(A.LogicalKeySet, A._LogicalKeySet_KeySet_Diagnosticable); _inherit(A._SingleActivator_Object_Diagnosticable_MenuSerializableShortcut, A._SingleActivator_Object_Diagnosticable); _inherit(A.SingleActivator, A._SingleActivator_Object_Diagnosticable_MenuSerializableShortcut); _inherit(A._ActivatorIntentPair, A.__ActivatorIntentPair_Object_Diagnosticable); _inherit(A.ShortcutManager, A._ShortcutManager_ChangeNotifier_Diagnosticable); _inherit(A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin, A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin); _inherit(A._SingleChildViewportElement, A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin); _inherit(A._RenderSingleChildViewport, A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin); _inherit(A._SaltedValueKey, A.ValueKey); _inheritMany(A.SliverChildDelegate, [A.SliverChildBuilderDelegate, A.SliverChildListDelegate]); _inherit(A.SliverMultiBoxAdaptorWidget, A.SliverWithKeepAliveWidget); _inheritMany(A.SliverMultiBoxAdaptorWidget, [A.SliverList, A.SliverGrid, A._SliverFillViewportRenderObjectWidget]); _inherit(A._SliverPinnedPersistentHeader, A._SliverPersistentHeaderRenderObjectWidget); _inherit(A.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin, A.RenderSliverPinnedPersistentHeader); _inherit(A._RenderSliverPinnedPersistentHeaderForWidgets, A.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin); _inherit(A._TableSlot, A.__TableSlot_Object_Diagnosticable); _inherit(A._SelectionHandleOverlayState, A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin); _inherit(A._WidgetTicker, A.Ticker); _inherit(A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin, A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin); _inherit(A._ViewportElement, A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin); _inherit(A._DefaultCacheManager_CacheManager_ImageCacheManager, A.CacheManager); _inherit(A.DefaultCacheManager, A._DefaultCacheManager_CacheManager_ImageCacheManager); _inheritMany(A.FileResponse, [A.DownloadProgress, A.FileInfo]); _inherit(A.HttpFileService, A.FileService); _inherit(A.HttpExceptionWithStatus, A.HttpException); _inheritMany(A.GlobalCupertinoLocalizations, [A.CupertinoLocalizationAf, A.CupertinoLocalizationAm, A.CupertinoLocalizationAr, A.CupertinoLocalizationAs, A.CupertinoLocalizationAz, A.CupertinoLocalizationBe, A.CupertinoLocalizationBg, A.CupertinoLocalizationBn, A.CupertinoLocalizationBs, A.CupertinoLocalizationCa, A.CupertinoLocalizationCs, A.CupertinoLocalizationDa, A.CupertinoLocalizationDe, A.CupertinoLocalizationEl, A.CupertinoLocalizationEn, A.CupertinoLocalizationEs, A.CupertinoLocalizationEt, A.CupertinoLocalizationEu, A.CupertinoLocalizationFa, A.CupertinoLocalizationFi, A.CupertinoLocalizationFil, A.CupertinoLocalizationFr, A.CupertinoLocalizationGl, A.CupertinoLocalizationGsw, A.CupertinoLocalizationGu, A.CupertinoLocalizationHe, A.CupertinoLocalizationHi, A.CupertinoLocalizationHr, A.CupertinoLocalizationHu, A.CupertinoLocalizationHy, A.CupertinoLocalizationId, A.CupertinoLocalizationIs, A.CupertinoLocalizationIt, A.CupertinoLocalizationJa, A.CupertinoLocalizationKa, A.CupertinoLocalizationKk, A.CupertinoLocalizationKm, A.CupertinoLocalizationKn, A.CupertinoLocalizationKo, A.CupertinoLocalizationKy, A.CupertinoLocalizationLo, A.CupertinoLocalizationLt, A.CupertinoLocalizationLv, A.CupertinoLocalizationMk, A.CupertinoLocalizationMl, A.CupertinoLocalizationMn, A.CupertinoLocalizationMr, A.CupertinoLocalizationMs, A.CupertinoLocalizationMy, A.CupertinoLocalizationNb, A.CupertinoLocalizationNe, A.CupertinoLocalizationNl, A.CupertinoLocalizationNo, A.CupertinoLocalizationOr, A.CupertinoLocalizationPa, A.CupertinoLocalizationPl, A.CupertinoLocalizationPt, A.CupertinoLocalizationRo, A.CupertinoLocalizationRu, A.CupertinoLocalizationSi, A.CupertinoLocalizationSk, A.CupertinoLocalizationSl, A.CupertinoLocalizationSq, A.CupertinoLocalizationSr, A.CupertinoLocalizationSv, A.CupertinoLocalizationSw, A.CupertinoLocalizationTa, A.CupertinoLocalizationTe, A.CupertinoLocalizationTh, A.CupertinoLocalizationTl, A.CupertinoLocalizationTr, A.CupertinoLocalizationUk, A.CupertinoLocalizationUr, A.CupertinoLocalizationUz, A.CupertinoLocalizationVi, A.CupertinoLocalizationZh, A.CupertinoLocalizationZu]); _inherit(A.CupertinoLocalizationDeCh, A.CupertinoLocalizationDe); _inheritMany(A.CupertinoLocalizationEn, [A.CupertinoLocalizationEnAu, A.CupertinoLocalizationEnCa, A.CupertinoLocalizationEnGb, A.CupertinoLocalizationEnIe, A.CupertinoLocalizationEnIn, A.CupertinoLocalizationEnNz, A.CupertinoLocalizationEnSg, A.CupertinoLocalizationEnZa]); _inheritMany(A.CupertinoLocalizationEs, [A.CupertinoLocalizationEs419, A.CupertinoLocalizationEsAr, A.CupertinoLocalizationEsBo, A.CupertinoLocalizationEsCl, A.CupertinoLocalizationEsCo, A.CupertinoLocalizationEsCr, A.CupertinoLocalizationEsDo, A.CupertinoLocalizationEsEc, A.CupertinoLocalizationEsGt, A.CupertinoLocalizationEsHn, A.CupertinoLocalizationEsMx, A.CupertinoLocalizationEsNi, A.CupertinoLocalizationEsPa, A.CupertinoLocalizationEsPe, A.CupertinoLocalizationEsPr, A.CupertinoLocalizationEsPy, A.CupertinoLocalizationEsSv, A.CupertinoLocalizationEsUs, A.CupertinoLocalizationEsUy, A.CupertinoLocalizationEsVe]); _inherit(A.CupertinoLocalizationFrCa, A.CupertinoLocalizationFr); _inherit(A.CupertinoLocalizationPtPt, A.CupertinoLocalizationPt); _inheritMany(A.CupertinoLocalizationSr, [A.CupertinoLocalizationSrCyrl, A.CupertinoLocalizationSrLatn]); _inheritMany(A.CupertinoLocalizationZh, [A.CupertinoLocalizationZhHans, A.CupertinoLocalizationZhHant]); _inheritMany(A.CupertinoLocalizationZhHant, [A.CupertinoLocalizationZhHantHk, A.CupertinoLocalizationZhHantTw]); _inheritMany(A.GlobalMaterialLocalizations, [A.MaterialLocalizationAf, A.MaterialLocalizationAm, A.MaterialLocalizationAr, A.MaterialLocalizationAs, A.MaterialLocalizationAz, A.MaterialLocalizationBe, A.MaterialLocalizationBg, A.MaterialLocalizationBn, A.MaterialLocalizationBs, A.MaterialLocalizationCa, A.MaterialLocalizationCs, A.MaterialLocalizationDa, A.MaterialLocalizationDe, A.MaterialLocalizationEl, A.MaterialLocalizationEn, A.MaterialLocalizationEs, A.MaterialLocalizationEt, A.MaterialLocalizationEu, A.MaterialLocalizationFa, A.MaterialLocalizationFi, A.MaterialLocalizationFil, A.MaterialLocalizationFr, A.MaterialLocalizationGl, A.MaterialLocalizationGsw, A.MaterialLocalizationGu, A.MaterialLocalizationHe, A.MaterialLocalizationHi, A.MaterialLocalizationHr, A.MaterialLocalizationHu, A.MaterialLocalizationHy, A.MaterialLocalizationId, A.MaterialLocalizationIs, A.MaterialLocalizationIt, A.MaterialLocalizationJa, A.MaterialLocalizationKa, A.MaterialLocalizationKk, A.MaterialLocalizationKm, A.MaterialLocalizationKn, A.MaterialLocalizationKo, A.MaterialLocalizationKy, A.MaterialLocalizationLo, A.MaterialLocalizationLt, A.MaterialLocalizationLv, A.MaterialLocalizationMk, A.MaterialLocalizationMl, A.MaterialLocalizationMn, A.MaterialLocalizationMr, A.MaterialLocalizationMs, A.MaterialLocalizationMy, A.MaterialLocalizationNb, A.MaterialLocalizationNe, A.MaterialLocalizationNl, A.MaterialLocalizationNo, A.MaterialLocalizationOr, A.MaterialLocalizationPa, A.MaterialLocalizationPl, A.MaterialLocalizationPs, A.MaterialLocalizationPt, A.MaterialLocalizationRo, A.MaterialLocalizationRu, A.MaterialLocalizationSi, A.MaterialLocalizationSk, A.MaterialLocalizationSl, A.MaterialLocalizationSq, A.MaterialLocalizationSr, A.MaterialLocalizationSv, A.MaterialLocalizationSw, A.MaterialLocalizationTa, A.MaterialLocalizationTe, A.MaterialLocalizationTh, A.MaterialLocalizationTl, A.MaterialLocalizationTr, A.MaterialLocalizationUk, A.MaterialLocalizationUr, A.MaterialLocalizationUz, A.MaterialLocalizationVi, A.MaterialLocalizationZh, A.MaterialLocalizationZu]); _inherit(A.MaterialLocalizationDeCh, A.MaterialLocalizationDe); _inheritMany(A.MaterialLocalizationEn, [A.MaterialLocalizationEnAu, A.MaterialLocalizationEnCa, A.MaterialLocalizationEnGb, A.MaterialLocalizationEnIe, A.MaterialLocalizationEnIn, A.MaterialLocalizationEnNz, A.MaterialLocalizationEnSg, A.MaterialLocalizationEnZa]); _inheritMany(A.MaterialLocalizationEs, [A.MaterialLocalizationEs419, A.MaterialLocalizationEsAr, A.MaterialLocalizationEsBo, A.MaterialLocalizationEsCl, A.MaterialLocalizationEsCo, A.MaterialLocalizationEsCr, A.MaterialLocalizationEsDo, A.MaterialLocalizationEsEc, A.MaterialLocalizationEsGt, A.MaterialLocalizationEsHn, A.MaterialLocalizationEsMx, A.MaterialLocalizationEsNi, A.MaterialLocalizationEsPa, A.MaterialLocalizationEsPe, A.MaterialLocalizationEsPr, A.MaterialLocalizationEsPy, A.MaterialLocalizationEsSv, A.MaterialLocalizationEsUs, A.MaterialLocalizationEsUy, A.MaterialLocalizationEsVe]); _inherit(A.MaterialLocalizationFrCa, A.MaterialLocalizationFr); _inherit(A.MaterialLocalizationPtPt, A.MaterialLocalizationPt); _inheritMany(A.MaterialLocalizationSr, [A.MaterialLocalizationSrCyrl, A.MaterialLocalizationSrLatn]); _inheritMany(A.MaterialLocalizationZh, [A.MaterialLocalizationZhHans, A.MaterialLocalizationZhHant]); _inheritMany(A.MaterialLocalizationZhHant, [A.MaterialLocalizationZhHantHk, A.MaterialLocalizationZhHantTw]); _inheritMany(A.EndGesture, [A.OpeningGesture, A.ClosingGesture, A.StillGesture]); _inherit(A._SlidableDismissalState, A.__SlidableDismissalState_State_SingleTickerProviderStateMixin); _inherit(A._FlexEntranceTransitionParentData, A.FlexParentData); _inherit(A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin); _inherit(A._RenderFlexEntranceTransition, A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin, A.__SlidableState_State_TickerProviderStateMixin); _inherit(A._SlidableState, A.__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin); _inherit(A._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver, A._StyledToastWidgetState_State_TickerProviderStateMixin); _inherit(A.StyledToastWidgetState, A._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver); _inherit(A.PluginRegistry, A.Registrar); _inheritMany(A.GoogleSignInPlatform, [A.MethodChannelGoogleSignIn, A.GoogleSignInPlugin]); _inheritMany(A.Node0, [A._Document_Node__ParentNode, A.DocumentType, A.Text0, A._Element_Node__ParentNode, A.Comment]); _inherit(A._Document_Node__ParentNode__NonElementParentNode, A._Document_Node__ParentNode); _inherit(A._Document_Node__ParentNode__NonElementParentNode__ElementAndDocument, A._Document_Node__ParentNode__NonElementParentNode); _inherit(A.Document, A._Document_Node__ParentNode__NonElementParentNode__ElementAndDocument); _inherit(A._Element_Node__ParentNode__ElementAndDocument, A._Element_Node__ParentNode); _inherit(A.Element, A._Element_Node__ParentNode__ElementAndDocument); _inheritMany(A.ListProxy, [A.NodeList, A.ActiveFormattingElements]); _inherit(A.FilteredElementList, A._FilteredElementList_IterableBase_ListMixin); _inherit(A._ConcatTextVisitor, A.TreeVisitor); _inheritMany(A.Phase, [A.InitialPhase, A.BeforeHtmlPhase, A.BeforeHeadPhase, A.InHeadPhase, A.AfterHeadPhase, A.InBodyPhase, A.TextPhase, A.InTablePhase, A.InTableTextPhase, A.InCaptionPhase, A.InColumnGroupPhase, A.InTableBodyPhase, A.InRowPhase, A.InCellPhase, A.InSelectPhase, A.InSelectInTablePhase, A.InForeignContentPhase, A.AfterBodyPhase, A.InFramesetPhase, A.AfterFramesetPhase, A.AfterAfterBodyPhase, A.AfterAfterFramesetPhase]); _inherit(A._CssClassSetImpl, A.SetBase); _inherit(A.ElementCssClassSet, A._CssClassSetImpl); _inherit(A.SelectorEvaluator, A.Visitor); _inheritMany(A.Token0, [A.TagToken, A.StringToken, A.DoctypeToken]); _inheritMany(A.TagToken, [A.StartTagToken, A.EndTagToken]); _inheritMany(A.StringToken, [A.ParseErrorToken, A.CharactersToken, A.SpaceCharactersToken, A.CommentToken]); _inherit(A.BrowserClient, A.BaseClient); _inheritMany(A.StreamView, [A.ByteStream, A.Subject]); _inheritMany(A.BaseRequest, [A.MultipartRequest, A.Request]); _inheritMany(A.BaseResponse, [A.Response, A.StreamedResponse]); _inherit(A.CaseInsensitiveMap, A.CanonicalizedMap); _inherit(A.InternalPngFrame, A.PngFrame); _inherit(A.PngInfo, A.DecodeInfo); _inherit(A.InternalPngInfo, A.PngInfo); _inherit(A.PngDecoder, A.Decoder); _inheritMany(A.ImageCropperPlatform, [A.ImageCropperPlugin, A.MethodChannelImageCropper]); _inherit(A.CroppedFile, A.CroppedFileBase); _inheritMany(A.ImagePickerPlatform, [A.ImagePickerPlugin, A.MethodChannelImagePicker]); _inheritMany(A._DateFormatField, [A._DateFormatLiteralField, A._DateFormatQuotedField, A._DateFormatPatternField]); _inherit(A._$AccountEntity, A.AccountEntity); _inherit(A._ClientEntity_Object_BaseEntity_SelectableEntity, A._ClientEntity_Object_BaseEntity); _inherit(A._ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities, A._ClientEntity_Object_BaseEntity_SelectableEntity); _inherit(A.ClientEntity, A._ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities); _inherit(A._ClientContactEntity_Object_BaseEntity_SelectableEntity, A._ClientContactEntity_Object_BaseEntity); _inherit(A.ClientContactEntity, A._ClientContactEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$ClientListResponse, A.ClientListResponse); _inherit(A._$ClientItemResponse, A.ClientItemResponse); _inherit(A._$ClientEntity, A.ClientEntity); _inherit(A._$ClientContactEntity, A.ClientContactEntity); _inherit(A._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity, A._CompanyGatewayEntity_Object_BaseEntity); _inherit(A.CompanyGatewayEntity, A._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$CompanyGatewayListResponse, A.CompanyGatewayListResponse); _inherit(A._$CompanyGatewayItemResponse, A.CompanyGatewayItemResponse); _inherit(A._$CompanyGatewayEntity, A.CompanyGatewayEntity); _inherit(A._$FeesAndLimitsSettings, A.FeesAndLimitsSettings); _inherit(A.CompanyEntity, A._CompanyEntity_Object_BaseEntity); _inherit(A.GatewayEntity, A._GatewayEntity_Object_SelectableEntity); _inherit(A._$CompanyEntity, A.CompanyEntity); _inherit(A._$GatewayEntity, A.GatewayEntity); _inherit(A._$GatewayOptionsEntity, A.GatewayOptionsEntity); _inherit(A._$UserCompanyEntity, A.UserCompanyEntity); _inherit(A._$UserSettingsEntity, A.UserSettingsEntity); _inherit(A._$ReportSettingsEntity, A.ReportSettingsEntity); _inherit(A._$CompanyItemResponse, A.CompanyItemResponse); _inherit(A._$RegistrationFieldEntity, A.RegistrationFieldEntity); _inherit(A._$CreditListResponse, A.CreditListResponse); _inherit(A._$CreditItemResponse, A.CreditItemResponse); _inheritMany(A.EnumClass, [A.DateRange, A.DateRangeComparison, A.EntityType, A.EntityState, A.EmailTemplate, A.UserPermission, A.ImportType, A.ExportType, A.EntityAction, A.AppLayout, A.ModuleLayout, A.AppSidebar, A.AppSidebarMode]); _inherit(A.DesignEntity, A._DesignEntity_Object_BaseEntity); _inherit(A._$DesignListResponse, A.DesignListResponse); _inherit(A._$DesignItemResponse, A.DesignItemResponse); _inherit(A._$DesignPreviewRequest, A.DesignPreviewRequest); _inherit(A._$DesignEntity, A.DesignEntity); _inherit(A._DocumentEntity_Object_BaseEntity_SelectableEntity, A._DocumentEntity_Object_BaseEntity); _inherit(A.DocumentEntity, A._DocumentEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$DocumentListResponse, A.DocumentListResponse); _inherit(A._$DocumentItemResponse, A.DocumentItemResponse); _inherit(A._$DocumentEntity, A.DocumentEntity); _inherit(A._$LoginResponse, A.LoginResponse); _inherit(A._$ActivityEntity, A.ActivityEntity); _inherit(A._$LedgerEntity, A.LedgerEntity); _inherit(A._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity, A._ExpenseCategoryEntity_Object_BaseEntity); _inherit(A.ExpenseCategoryEntity, A._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$ExpenseCategoryListResponse, A.ExpenseCategoryListResponse); _inherit(A._$ExpenseCategoryItemResponse, A.ExpenseCategoryItemResponse); _inherit(A._$ExpenseCategoryEntity, A.ExpenseCategoryEntity); _inherit(A._ExpenseEntity_Object_BaseEntity_SelectableEntity, A._ExpenseEntity_Object_BaseEntity); _inherit(A._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A._ExpenseEntity_Object_BaseEntity_SelectableEntity); _inherit(A.ExpenseEntity, A._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(A._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity, A._ExpenseStatusEntity_Object_EntityStatus); _inherit(A.ExpenseStatusEntity, A._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity); _inherit(A._$ExpenseListResponse, A.ExpenseListResponse); _inherit(A._$ExpenseItemResponse, A.ExpenseItemResponse); _inherit(A._$ExpenseEntity, A.ExpenseEntity); _inherit(A._$ExpenseScheduleEntity, A.ExpenseScheduleEntity); _inherit(A._$ExpenseStatusEntity, A.ExpenseStatusEntity); _inherit(A._GatewayTokenEntity_Object_BaseEntity_SelectableEntity, A._GatewayTokenEntity_Object_BaseEntity); _inherit(A.GatewayTokenEntity, A._GatewayTokenEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$GatewayTokenListResponse, A.GatewayTokenListResponse); _inherit(A._$GatewayTokenItemResponse, A.GatewayTokenItemResponse); _inherit(A._$GatewayTokenEntity, A.GatewayTokenEntity); _inherit(A._$GatewayTokenMetaEntity, A.GatewayTokenMetaEntity); _inherit(A._GroupEntity_Object_BaseEntity_SelectableEntity, A._GroupEntity_Object_BaseEntity); _inherit(A.GroupEntity, A._GroupEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$GroupListResponse, A.GroupListResponse); _inherit(A._$GroupItemResponse, A.GroupItemResponse); _inherit(A._$GroupEntity, A.GroupEntity); _inherit(A._$HealthCheckResponse, A.HealthCheckResponse); _inherit(A._$HealthCheckPHPResponse, A.HealthCheckPHPResponse); _inherit(A._$PreImportResponse, A.PreImportResponse); _inherit(A._$PreImportResponseEntityDetails, A.PreImportResponseEntityDetails); _inherit(A._$ImportRequest, A.ImportRequest); _inherit(A._$ImportRequestMapping, A.ImportRequestMapping); _inherit(A._InvoiceEntity_Object_BaseEntity_SelectableEntity, A._InvoiceEntity_Object_BaseEntity); _inherit(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal, A._InvoiceEntity_Object_BaseEntity_SelectableEntity); _inherit(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient, A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal); _inherit(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor, A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient); _inherit(A.InvoiceEntity, A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor); _inherit(A._InvitationEntity_Object_BaseEntity_SelectableEntity, A._InvitationEntity_Object_BaseEntity); _inherit(A.InvitationEntity, A._InvitationEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$InvoiceListResponse, A.InvoiceListResponse); _inherit(A._$InvoiceItemResponse, A.InvoiceItemResponse); _inherit(A._$InvoiceEntity, A.InvoiceEntity); _inherit(A._$InvoiceItemEntity, A.InvoiceItemEntity); _inherit(A._$InvitationEntity, A.InvitationEntity); _inherit(A._$InvoiceScheduleEntity, A.InvoiceScheduleEntity); _inherit(A._$InvoiceHistoryEntity, A.InvoiceHistoryEntity); _inherit(A._PaymentEntity_Object_BaseEntity_SelectableEntity, A._PaymentEntity_Object_BaseEntity); _inherit(A._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A._PaymentEntity_Object_BaseEntity_SelectableEntity); _inherit(A.PaymentEntity, A._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(A.PaymentableEntity, A._PaymentableEntity_Object_SelectableEntity); _inherit(A._$PaymentListResponse, A.PaymentListResponse); _inherit(A._$PaymentItemResponse, A.PaymentItemResponse); _inherit(A._$PaymentEntity, A.PaymentEntity); _inherit(A._$PaymentableEntity, A.PaymentableEntity); _inherit(A._PaymentTermEntity_Object_BaseEntity_SelectableEntity, A._PaymentTermEntity_Object_BaseEntity); _inherit(A.PaymentTermEntity, A._PaymentTermEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$PaymentTermListResponse, A.PaymentTermListResponse); _inherit(A._$PaymentTermItemResponse, A.PaymentTermItemResponse); _inherit(A._$PaymentTermEntity, A.PaymentTermEntity); _inherit(A._ProductEntity_Object_BaseEntity_SelectableEntity, A._ProductEntity_Object_BaseEntity); _inherit(A.ProductEntity, A._ProductEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$ProductListResponse, A.ProductListResponse); _inherit(A._$ProductItemResponse, A.ProductItemResponse); _inherit(A._$ProductEntity, A.ProductEntity); _inherit(A._ProjectEntity_Object_BaseEntity_SelectableEntity, A._ProjectEntity_Object_BaseEntity); _inherit(A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A._ProjectEntity_Object_BaseEntity_SelectableEntity); _inherit(A.ProjectEntity, A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(A._$ProjectListResponse, A.ProjectListResponse); _inherit(A._$ProjectItemResponse, A.ProjectItemResponse); _inherit(A._$ProjectEntity, A.ProjectEntity); _inherit(A._$SettingsEntity, A.SettingsEntity); _inherit(A.CountryEntity, A._CountryEntity_Object_SelectableEntity); _inherit(A._$CountryListResponse, A.CountryListResponse); _inherit(A._$CountryItemResponse, A.CountryItemResponse); _inherit(A._$CountryEntity, A.CountryEntity); _inherit(A.CurrencyEntity, A._CurrencyEntity_Object_SelectableEntity); _inherit(A._$CurrencyListResponse, A.CurrencyListResponse); _inherit(A._$CurrencyItemResponse, A.CurrencyItemResponse); _inherit(A._$CurrencyEntity, A.CurrencyEntity); _inherit(A.DateFormatEntity, A._DateFormatEntity_Object_SelectableEntity); _inherit(A._$DateFormatListResponse, A.DateFormatListResponse); _inherit(A._$DateFormatItemResponse, A.DateFormatItemResponse); _inherit(A._$DateFormatEntity, A.DateFormatEntity); _inherit(A._$DatetimeFormatListResponse, A.DatetimeFormatListResponse); _inherit(A._$DatetimeFormatItemResponse, A.DatetimeFormatItemResponse); _inherit(A._$DatetimeFormatEntity, A.DatetimeFormatEntity); _inherit(A.FontEntity, A._FontEntity_Object_SelectableEntity); _inherit(A._$FontEntity, A.FontEntity); _inherit(A.IndustryEntity, A._IndustryEntity_Object_SelectableEntity); _inherit(A._$IndustryListResponse, A.IndustryListResponse); _inherit(A._$IndustryItemResponse, A.IndustryItemResponse); _inherit(A._$IndustryEntity, A.IndustryEntity); _inherit(A.InvoiceStatusEntity, A._InvoiceStatusEntity_Object_EntityStatus); _inherit(A._$InvoiceStatusEntity, A.InvoiceStatusEntity); _inherit(A.LanguageEntity, A._LanguageEntity_Object_SelectableEntity); _inherit(A._$LanguageListResponse, A.LanguageListResponse); _inherit(A._$LanguageItemResponse, A.LanguageItemResponse); _inherit(A._$LanguageEntity, A.LanguageEntity); _inherit(A.PaymentTypeEntity, A._PaymentTypeEntity_Object_SelectableEntity); _inherit(A._$PaymentTypeListResponse, A.PaymentTypeListResponse); _inherit(A._$PaymentTypeItemResponse, A.PaymentTypeItemResponse); _inherit(A._$PaymentTypeEntity, A.PaymentTypeEntity); _inherit(A.SizeEntity, A._SizeEntity_Object_SelectableEntity); _inherit(A._$SizeListResponse, A.SizeListResponse); _inherit(A._$SizeItemResponse, A.SizeItemResponse); _inherit(A._$SizeEntity, A.SizeEntity); _inherit(A._$StaticDataItemResponse, A.StaticDataItemResponse); _inherit(A._$StaticDataEntity, A.StaticDataEntity); _inherit(A._$TemplateEntity, A.TemplateEntity); _inherit(A.TimezoneEntity, A._TimezoneEntity_Object_SelectableEntity); _inherit(A._$TimezoneListResponse, A.TimezoneListResponse); _inherit(A._$TimezoneItemResponse, A.TimezoneItemResponse); _inherit(A._$TimezoneEntity, A.TimezoneEntity); _inherit(A.SubscriptionEntity, A._SubscriptionEntity_Object_BaseEntity); _inherit(A._$SubscriptionListResponse, A.SubscriptionListResponse); _inherit(A._$SubscriptionItemResponse, A.SubscriptionItemResponse); _inherit(A._$SubscriptionEntity, A.SubscriptionEntity); _inherit(A._$WebhookConfigurationEntity, A.WebhookConfigurationEntity); _inherit(A._$SystemLogEntity, A.SystemLogEntity); _inherit(A._TaskEntity_Object_BaseEntity_SelectableEntity, A._TaskEntity_Object_BaseEntity); _inherit(A._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A._TaskEntity_Object_BaseEntity_SelectableEntity); _inherit(A.TaskEntity, A._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(A._$TaskListResponse, A.TaskListResponse); _inherit(A._$TaskItemResponse, A.TaskItemResponse); _inherit(A._$TaskTime, A.TaskTime); _inherit(A._$TaskEntity, A.TaskEntity); _inherit(A._TaskStatusEntity_Object_BaseEntity_SelectableEntity, A._TaskStatusEntity_Object_BaseEntity); _inherit(A._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus, A._TaskStatusEntity_Object_BaseEntity_SelectableEntity); _inherit(A.TaskStatusEntity, A._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus); _inherit(A._$TaskStatusListResponse, A.TaskStatusListResponse); _inherit(A._$TaskStatusItemResponse, A.TaskStatusItemResponse); _inherit(A._$TaskStatusEntity, A.TaskStatusEntity); _inherit(A._TaxRateEntity_Object_BaseEntity_SelectableEntity, A._TaxRateEntity_Object_BaseEntity); _inherit(A.TaxRateEntity, A._TaxRateEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$TaxRateListResponse, A.TaxRateListResponse); _inherit(A._$TaxRateItemResponse, A.TaxRateItemResponse); _inherit(A._$TaxRateEntity, A.TaxRateEntity); _inherit(A._TokenEntity_Object_BaseEntity_SelectableEntity, A._TokenEntity_Object_BaseEntity); _inherit(A.TokenEntity, A._TokenEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$TokenListResponse, A.TokenListResponse); _inherit(A._$TokenItemResponse, A.TokenItemResponse); _inherit(A._$TokenEntity, A.TokenEntity); _inherit(A._UserEntity_Object_BaseEntity_SelectableEntity, A._UserEntity_Object_BaseEntity); _inherit(A.UserEntity, A._UserEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$UserListResponse, A.UserListResponse); _inherit(A._$UserItemResponse, A.UserItemResponse); _inherit(A._$UserTwoFactorResponse, A.UserTwoFactorResponse); _inherit(A._$UserTwoFactorData, A.UserTwoFactorData); _inherit(A._$UserCompanyItemResponse, A.UserCompanyItemResponse); _inherit(A._$UserEntity, A.UserEntity); _inherit(A._VendorEntity_Object_BaseEntity_SelectableEntity, A._VendorEntity_Object_BaseEntity); _inherit(A._VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities, A._VendorEntity_Object_BaseEntity_SelectableEntity); _inherit(A.VendorEntity, A._VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities); _inherit(A.VendorContactEntity, A._VendorContactEntity_Object_BaseEntity); _inherit(A._$VendorListResponse, A.VendorListResponse); _inherit(A._$VendorItemResponse, A.VendorItemResponse); _inherit(A._$VendorEntity, A.VendorEntity); _inherit(A._$VendorContactEntity, A.VendorContactEntity); _inherit(A._WebhookEntity_Object_BaseEntity_SelectableEntity, A._WebhookEntity_Object_BaseEntity); _inherit(A.WebhookEntity, A._WebhookEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$WebhookListResponse, A.WebhookListResponse); _inherit(A._$WebhookItemResponse, A.WebhookItemResponse); _inherit(A._$WebhookEntity, A.WebhookEntity); _inherit(A.MyCustomScrollBehavior, A.MaterialScrollBehavior); _inherit(A._$AppState, A.AppState); _inherit(A._$AuthState, A.AuthState); _inherit(A.ClientUIState, A._ClientUIState_Object_EntityUIState); _inherit(A._$ClientState, A.ClientState); _inherit(A._$ClientUIState, A.ClientUIState); _inherit(A._$UserCompanyState, A.UserCompanyState); _inherit(A._$SettingsUIState, A.SettingsUIState); _inherit(A.CompanyGatewayUIState, A._CompanyGatewayUIState_Object_EntityUIState); _inherit(A._$CompanyGatewayState, A.CompanyGatewayState); _inherit(A._$CompanyGatewayUIState, A.CompanyGatewayUIState); _inherit(A.CreditUIState, A._CreditUIState_Object_EntityUIState); _inherit(A._$CreditState, A.CreditState); _inherit(A._$CreditUIState, A.CreditUIState); _inherit(A._$DashboardUIState, A.DashboardUIState); _inherit(A._$DashboardUISettings, A.DashboardUISettings); _inherit(A.DesignUIState, A._DesignUIState_Object_EntityUIState); _inherit(A._$DesignState, A.DesignState); _inherit(A._$DesignUIState, A.DesignUIState); _inherit(A.DocumentUIState, A._DocumentUIState_Object_EntityUIState); _inherit(A._$DocumentState, A.DocumentState); _inherit(A._$DocumentUIState, A.DocumentUIState); _inherit(A.ExpenseUIState, A._ExpenseUIState_Object_EntityUIState); _inherit(A._$ExpenseState, A.ExpenseState); _inherit(A._$ExpenseUIState, A.ExpenseUIState); _inherit(A.ExpenseCategoryUIState, A._ExpenseCategoryUIState_Object_EntityUIState); _inherit(A._$ExpenseCategoryState, A.ExpenseCategoryState); _inherit(A._$ExpenseCategoryUIState, A.ExpenseCategoryUIState); _inherit(A.GroupUIState, A._GroupUIState_Object_EntityUIState); _inherit(A._$GroupState, A.GroupState); _inherit(A._$GroupUIState, A.GroupUIState); _inherit(A.InvoiceUIState, A._InvoiceUIState_Object_EntityUIState); _inherit(A._$InvoiceState, A.InvoiceState); _inherit(A._$InvoiceUIState, A.InvoiceUIState); _inherit(A.PaymentUIState, A._PaymentUIState_Object_EntityUIState); _inherit(A._$PaymentState, A.PaymentState); _inherit(A._$PaymentUIState, A.PaymentUIState); _inherit(A.PaymentTermUIState, A._PaymentTermUIState_Object_EntityUIState); _inherit(A._$PaymentTermState, A.PaymentTermState); _inherit(A._$PaymentTermUIState, A.PaymentTermUIState); _inherit(A.ProductUIState, A._ProductUIState_Object_EntityUIState); _inherit(A._$ProductState, A.ProductState); _inherit(A._$ProductUIState, A.ProductUIState); _inherit(A.ProjectUIState, A._ProjectUIState_Object_EntityUIState); _inherit(A._$ProjectState, A.ProjectState); _inherit(A._$ProjectUIState, A.ProjectUIState); _inherit(A.PurchaseOrderUIState, A._PurchaseOrderUIState_Object_EntityUIState); _inherit(A._$PurchaseOrderState, A.PurchaseOrderState); _inherit(A._$PurchaseOrderUIState, A.PurchaseOrderUIState); _inherit(A.QuoteUIState, A._QuoteUIState_Object_EntityUIState); _inherit(A._$QuoteState, A.QuoteState); _inherit(A._$QuoteUIState, A.QuoteUIState); _inherit(A.RecurringExpenseUIState, A._RecurringExpenseUIState_Object_EntityUIState); _inherit(A._$RecurringExpenseState, A.RecurringExpenseState); _inherit(A._$RecurringExpenseUIState, A.RecurringExpenseUIState); _inherit(A.RecurringInvoiceUIState, A._RecurringInvoiceUIState_Object_EntityUIState); _inherit(A._$RecurringInvoiceState, A.RecurringInvoiceState); _inherit(A._$RecurringInvoiceUIState, A.RecurringInvoiceUIState); _inherit(A._$ReportsUIState, A.ReportsUIState); _inherit(A._$StaticState, A.StaticState); _inherit(A.SubscriptionUIState, A._SubscriptionUIState_Object_EntityUIState); _inherit(A._$SubscriptionState, A.SubscriptionState); _inherit(A._$SubscriptionUIState, A.SubscriptionUIState); _inherit(A.TaskUIState, A._TaskUIState_Object_EntityUIState); _inherit(A._$TaskState, A.TaskState); _inherit(A._$TaskUIState, A.TaskUIState); _inherit(A.TaskStatusUIState, A._TaskStatusUIState_Object_EntityUIState); _inherit(A._$TaskStatusState, A.TaskStatusState); _inherit(A._$TaskStatusUIState, A.TaskStatusUIState); _inherit(A.TaxRateUIState, A._TaxRateUIState_Object_EntityUIState); _inherit(A._$TaxRateState, A.TaxRateState); _inherit(A._$TaxRateUIState, A.TaxRateUIState); _inherit(A.TokenUIState, A._TokenUIState_Object_EntityUIState); _inherit(A._$TokenState, A.TokenState); _inherit(A._$TokenUIState, A.TokenUIState); _inherit(A._$ListUIState, A.ListUIState); _inherit(A._$PrefState, A.PrefState); _inherit(A._$PrefStateSortField, A.PrefStateSortField); _inherit(A._$CompanyPrefState, A.CompanyPrefState); _inherit(A._$HistoryRecord, A.HistoryRecord); _inherit(A._$UIState, A.UIState); _inherit(A.UserUIState, A._UserUIState_Object_EntityUIState); _inherit(A._$UserState, A.UserState); _inherit(A._$UserUIState, A.UserUIState); _inherit(A.VendorUIState, A._VendorUIState_Object_EntityUIState); _inherit(A._$VendorState, A.VendorState); _inherit(A._$VendorUIState, A.VendorUIState); _inherit(A.WebhookUIState, A._WebhookUIState_Object_EntityUIState); _inherit(A._$WebhookState, A.WebhookState); _inherit(A._$WebhookUIState, A.WebhookUIState); _inherit(A._AutocompleteEntity, A.__AutocompleteEntity_Object_SelectableEntity); _inherit(A._InvoiceEmailViewState, A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin); _inherit(A.LinkTextSpan, A.TextSpan); _inherit(A._SortArrowState0, A.__SortArrowState_State_TickerProviderStateMixin0); _inherit(A.EntityDataTableSource, A.AppDataTableSource); _inherit(A._VariablesHelpState, A.__VariablesHelpState_State_SingleTickerProviderStateMixin); _inheritMany(A.EntityPresenter, [A.ClientPresenter, A.CreditPresenter, A.ExpensePresenter, A.ExpenseCategoryPresenter, A.InvoicePresenter, A.PaymentPresenter, A.ProductPresenter, A.ProjectPresenter, A.PurchaseOrderPresenter, A.QuotePresenter, A.RecurringExpensePresenter, A.RecurringInvoicePresenter, A.SubscriptionPresenter, A.TaskPresenter, A.TaskStatusPresenter, A.TokenPresenter, A.VendorPresenter, A.WebhookPresenter]); _inherit(A._ClientEditState, A.__ClientEditState_State_SingleTickerProviderStateMixin); _inherit(A._ClientViewState, A.__ClientViewState_State_SingleTickerProviderStateMixin); _inherit(A._ClientViewFullwidthState, A.__ClientViewFullwidthState_State_TickerProviderStateMixin); _inherit(A._CompanyGatewayEditState, A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin); _inherit(A._CompanyGatewayViewState, A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin); _inheritMany(A.EmailEntityVM, [A.EmailCreditVM, A.EmailInvoiceVM, A.EmailPurchaseOrderVM, A.EmailQuoteVM]); _inheritMany(A.EntityListVM, [A.CreditListVM, A.InvoiceListVM, A.PurchaseOrderListVM, A.QuoteListVM]); _inheritMany(A.EntityPdfVM, [A.CreditPdfVM, A.InvoicePdfVM, A.PurchaseOrderPdfVM, A.QuotePdfVM, A.RecurringInvoicePdfVM]); _inherit(A._CreditEditState, A.__CreditEditState_State_SingleTickerProviderStateMixin); _inheritMany(A.EntityEditDetailsVM, [A.CreditEditDetailsVM, A.InvoiceEditDetailsVM, A.PurchaseOrderEditDetailsVM, A.QuoteEditDetailsVM, A.RecurringInvoiceEditDetailsVM]); _inheritMany(A.EntityEditItemsVM, [A.CreditEditItemsVM, A.InvoiceEditItemsVM, A.PurchaseOrderEditItemsVM, A.QuoteEditItemsVM, A.RecurringInvoiceEditItemsVM]); _inheritMany(A.EntityEditNotesVM, [A.CreditEditNotesVM, A.InvoiceEditNotesVM, A.PurchaseOrderEditNotesVM, A.QuoteEditNotesVM, A.RecurringInvoiceEditNotesVM]); _inheritMany(A.EntityEditPDFVM, [A.CreditEditPDFVM, A.InvoiceEditPDFVM, A.PurchaseOrderEditPDFVM, A.QuoteEditPDFVM, A.RecurringInvoiceEditPDFVM]); _inheritMany(A.AbstractInvoiceEditVM, [A.CreditEditVM, A.InvoiceEditVM, A.PurchaseOrderEditVM, A.QuoteEditVM, A.RecurringInvoiceEditVM]); _inheritMany(A.AbstractInvoiceViewVM, [A.CreditViewVM, A.InvoiceViewVM, A.PurchaseOrderViewVM, A.QuoteViewVM, A.RecurringInvoiceViewVM]); _inherit(A._DashboardScreenState, A.__DashboardScreenState_State_TickerProviderStateMixin); _inherit(A._DesignEditState, A.__DesignEditState_State_SingleTickerProviderStateMixin); _inherit(A._ExpenseEditState, A.__ExpenseEditState_State_SingleTickerProviderStateMixin); _inheritMany(A.AbstractExpenseEditVM, [A.ExpenseEditVM, A.RecurringExpenseEditVM]); _inherit(A._ExpenseViewState, A.__ExpenseViewState_State_SingleTickerProviderStateMixin); _inheritMany(A.AbstractExpenseViewVM, [A.ExpenseViewVM, A.RecurringExpenseViewVM]); _inherit(A._GroupViewState, A.__GroupViewState_State_SingleTickerProviderStateMixin); _inherit(A._InvoiceEditState, A.__InvoiceEditState_State_SingleTickerProviderStateMixin); _inherit(A.InvoiceEditContactsVM, A.EntityEditContactsVM); _inherit(A.InvoiceEditDesktopState, A._InvoiceEditDesktopState_State_TickerProviderStateMixin); _inherit(A._InvoiceItemSelectorState, A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin); _inherit(A._InvoiceViewState, A.__InvoiceViewState_State_SingleTickerProviderStateMixin); _inherit(A._ProductViewState, A.__ProductViewState_State_SingleTickerProviderStateMixin); _inherit(A._ProjectViewState, A.__ProjectViewState_State_SingleTickerProviderStateMixin); _inherit(A._PurchaseOrderEditState, A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin); _inherit(A._QuoteEditState, A.__QuoteEditState_State_SingleTickerProviderStateMixin); _inherit(A._RecurringInvoiceEditState, A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin); _inherit(A.ReportDataTableSource, A.DataTableSource); _inheritMany(A.ReportElement, [A.ReportStringValue, A.ReportEntityTypeValue, A.ReportAgeValue, A.ReportDurationValue, A.ReportIntValue, A.ReportNumberValue, A.ReportBoolValue]); _inherit(A._AccountManagementState, A.__AccountManagementState_State_SingleTickerProviderStateMixin); _inherit(A._ClientPortalState, A.__ClientPortalState_State_SingleTickerProviderStateMixin); _inherit(A._CompanyDetailsState, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin); _inherit(A._CreditCardsAndBanksState, A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin); _inherit(A._CustomFieldsState, A.__CustomFieldsState_State_SingleTickerProviderStateMixin); _inherit(A._DeviceSettingsState, A.__DeviceSettingsState_State_SingleTickerProviderStateMixin); _inherit(A._GeneratedNumbersState, A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin); _inherit(A._InvoiceDesignState, A.__InvoiceDesignState_State_SingleTickerProviderStateMixin); _inherit(A._LocalizationSettingsState, A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin); _inherit(A._TemplatesAndRemindersState, A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin); _inherit(A._UserDetailsState, A.__UserDetailsState_State_SingleTickerProviderStateMixin); _inherit(A._WorkflowSettingsState, A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin); _inherit(A._SubscriptionEditState, A.__SubscriptionEditState_State_SingleTickerProviderStateMixin); _inherit(A._TaskEditState, A.__TaskEditState_State_SingleTickerProviderStateMixin); _inherit(A._TaskViewState, A.__TaskViewState_State_SingleTickerProviderStateMixin); _inherit(A._UserEditState, A.__UserEditState_State_SingleTickerProviderStateMixin); _inherit(A._VendorEditState, A.__VendorEditState_State_SingleTickerProviderStateMixin); _inherit(A._VendorViewState, A.__VendorViewState_State_SingleTickerProviderStateMixin); _inherit(A._VendorViewFullwidthState, A.__VendorViewFullwidthState_State_TickerProviderStateMixin); _inherit(A._AppLocalization_LocaleCodeAware_LocalizationsProvider, A.LocaleCodeAware); _inherit(A.AppLocalization, A._AppLocalization_LocaleCodeAware_LocalizationsProvider); _inheritMany(A.LinkifyElement, [A.LinkableElement, A.TextElement]); _inheritMany(A.Linkifier, [A.EmailLinkifier, A.UrlLinkifier]); _inheritMany(A.LinkableElement, [A.EmailElement, A.UrlElement]); _inheritMany(A.BlockSyntax, [A.EmptyBlockSyntax, A.SetextHeaderSyntax, A.HeaderSyntax, A.BlockquoteSyntax, A.CodeBlockSyntax, A.FencedCodeBlockSyntax, A.HorizontalRuleSyntax, A.BlockHtmlSyntax, A.ListSyntax, A.ParagraphSyntax]); _inheritMany(A.BlockHtmlSyntax, [A.BlockTagBlockHtmlSyntax, A.LongBlockHtmlSyntax]); _inherit(A.OtherTagBlockHtmlSyntax, A.BlockTagBlockHtmlSyntax); _inheritMany(A.ListSyntax, [A.UnorderedListSyntax, A.OrderedListSyntax]); _inheritMany(A.InlineSyntax, [A.LineBreakSyntax, A.TextSyntax, A.EscapeSyntax, A.EmailAutolinkSyntax, A.AutolinkSyntax, A.TagSyntax, A.CodeSyntax]); _inherit(A.InlineHtmlSyntax, A.TextSyntax); _inherit(A.LinkSyntax, A.TagSyntax); _inherit(A.ImageSyntax, A.LinkSyntax); _inherit(A._MdiIconData, A.IconData); _inherit(A.EndSessionPopupRequest, A.CommonEndSessionRequest); _inherit(A.PopupRequest, A.CommonAuthorizationUrlRequest); _inherit(A.AuthException, A.MsalJsException); _inheritMany(A.AuthException, [A.ClientAuthException, A.ServerException, A.BrowserAuthException, A.BrowserConfigurationAuthException]); _inherit(A.ClientConfigurationException, A.ClientAuthException); _inherit(A.InteractionRequiredAuthException, A.ServerException); _inherit(A.AuthError, A.JsError); _inheritMany(A.CommonAuthorizationUrlRequest0, [A.SsoSilentRequest, A.RedirectRequest, A.PopupRequest0]); _inheritMany(A.CommonEndSessionRequest0, [A.EndSessionRequest, A.EndSessionPopupRequest0]); _inherit(A.SilentRequest, A.CommonSilentFlowRequest); _inherit(A._FadeWidgetState, A.__FadeWidgetState_State_SingleTickerProviderStateMixin); _inherit(A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderOverflowView, A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inheritMany(A.PackageInfoPlatform, [A.MethodChannelPackageInfo, A.PackageInfoPlugin]); _inherit(A.InternalStyle, A.Style); _inheritMany(A.InternalStyle, [A.PosixStyle, A.UrlStyle, A.WindowsStyle]); _inherit(A.MethodChannelPathProvider, A.PathProviderPlatform); _inherit(A.PermissionWithService, A.Permission); _inherit(A.MethodChannelPermissionHandler, A.PermissionHandlerPlatform); _inherit(A.LocalPlatform, A.Platform0); _inheritMany(A.PrintingPlatform, [A.PrintingPlugin, A.MethodChannelPrinting]); _inherit(A._WebPdfRaster, A.PdfRaster); _inherit(A.PdfShareAction, A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds); _inherit(A.PdfPreviewCustomState, A._PdfPreviewCustomState_State_PdfPreviewRaster); _inherit(A.QrBitBuffer, A._QrBitBuffer_Object_ListMixin); _inherit(A.LoggingMiddleware, A.MiddlewareClass); _inherit(A.RoundedLoadingButtonState, A._RoundedLoadingButtonState_State_TickerProviderStateMixin); _inherit(A.BehaviorSubject, A.Subject); _inheritMany(A.ForwardingSink, [A._StartWithStreamSink, A._StartWithErrorStreamSink]); _inherit(A.WebEnvironmentVariables, A.EnvironmentVariables); _inherit(A.NoOpSentrySpan, A.ISentrySpan); _inherit(A.WebPlatform, A.Platform1); _inherit(A.SentryNavigatorObserver, A.RouteObserver); _inherit(A.RouteObserverBreadcrumb, A.Breadcrumb); _inheritMany(A.SharedPreferencesStorePlatform, [A.MethodChannelSharedPreferencesStore, A.SharedPreferencesPlugin]); _inherit(A.UnknownSignInWithAppleException, A.PlatformException); _inheritMany(A.SignInWithApplePlatform, [A.MethodChannelSignInWithApple, A.SignInWithApplePlugin]); _inherit(A.FileLocation, A.SourceLocationMixin); _inheritMany(A.SourceSpanMixin, [A._FileSpan, A.SourceSpanBase]); _inherit(A.SourceSpanFormatException, A.SourceSpanException); _inherit(A.SourceSpanWithContext, A.SourceSpanBase); _inherit(A.InjectedBase, A.InjectedBaseState); _inherit(A.ReactiveModel, A.InjectedBase); _inherit(A.Injected, A.ReactiveModel); _inherit(A.InjectedImp, A.Injected); _inherit(A.StateBuilderBase, A.MyStatefulWidget); _inherit(A._StateBuilderBaseState, A.ExtendedState); _inherit(A.MyElement, A.StatefulElement); _inherit(A.StringScannerException, A.SourceSpanFormatException); _inherit(A.DocumentComposer, A._DocumentComposer_Object_ChangeNotifier); _inherit(A.ComposerPreferences, A._ComposerPreferences_Object_ChangeNotifier); _inherit(A.MutableDocument, A._MutableDocument_Object_ChangeNotifier); _inheritMany(A.SingleColumnLayoutComponentViewModel, [A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A.HorizontalRuleComponentViewModel, A.ImageComponentViewModel, A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel]); _inherit(A.BlockquoteComponentViewModel, A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel); _inheritMany(A.DocumentNode, [A.BlockNode, A._TextNode_DocumentNode_ChangeNotifier]); _inherit(A._BoxComponentState, A.__BoxComponentState_State_DocumentComponent); _inherit(A._DocumentMouseInteractorState, A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin); _inherit(A.MagnifierAndToolbarController, A._MagnifierAndToolbarController_Object_ChangeNotifier); _inherit(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver); _inherit(A._AndroidDocumentTouchInteractorState, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin); _inherit(A._AndroidDocumentTouchEditingControlsState, A.__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin); _inheritMany(A.MagnifierAndToolbarController, [A.AndroidDocumentGestureEditingController, A.IosDocumentGestureEditingController]); _inherit(A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver); _inherit(A._IOSDocumentTouchInteractorState, A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin); _inherit(A.FloatingCursorController, A._FloatingCursorController_Object_ChangeNotifier); _inherit(A._IosDocumentTouchEditingControlsState, A.__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin); _inheritMany(A.BlockNode, [A._HorizontalRuleNode_BlockNode_ChangeNotifier, A._ImageNode_BlockNode_ChangeNotifier]); _inherit(A.HorizontalRuleNode, A._HorizontalRuleNode_BlockNode_ChangeNotifier); _inherit(A.ImageNode, A._ImageNode_BlockNode_ChangeNotifier); _inheritMany(A.SingleColumnLayoutStylePhase, [A.SingleColumnLayoutCustomComponentStyler, A.SingleColumnStylesheetStyler, A.SingleColumnLayoutSelectionStyler]); _inherit(A.TextNode, A._TextNode_DocumentNode_ChangeNotifier); _inheritMany(A.TextNode, [A.ListItemNode, A.ParagraphNode]); _inherit(A.ListItemComponentViewModel, A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel); _inherit(A.ParagraphComponentViewModel, A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel); _inherit(A.TextNodeSelection, A.TextSelection); _inherit(A.TextNodePosition, A.TextPosition); _inherit(A._TextComponentState, A.__TextComponentState_State_DocumentComponent); _inherit(A.BlinkingCaretState, A._BlinkingCaretState_State_SingleTickerProviderStateMixin); _inherit(A.OuterBoxShadow, A.BoxShadow); _inherit(A._TextLayoutCaretState, A.__TextLayoutCaretState_State_TickerProviderStateMixin); _inherit(A.BlinkController, A._BlinkController_Object_ChangeNotifier); _inherit(A.SuperTextState, A._SuperTextState_State_ProseTextBlock); _inherit(A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin); _inherit(A.RenderSuperTextLayout, A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.LayoutAwareRichText, A.RichText); _inherit(A.RenderLayoutAwareParagraph, A.RenderParagraph); _inherit(A.ProseTextState, A._ProseTextState_State_ProseTextBlock); _inherit(A._SuperTextWithSelectionState, A.ProseTextState); _inheritMany(A.UrlLauncherPlatform, [A.MethodChannelUrlLauncher, A.UrlLauncherPlugin]); _inherit(A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin); _inherit(A._RenderValueLayoutBuilder, A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder); _mixin(A._DomCanvas_EngineCanvas_SaveElementStackTracking, A.SaveElementStackTracking); _mixinHard(A._PersistedClipRRect_PersistedContainerSurface__DomClip, A._DomClip); _mixinHard(A._PersistedClipRect_PersistedContainerSurface__DomClip, A._DomClip); _mixinHard(A._PersistedPhysicalShape_PersistedContainerSurface__DomClip, A._DomClip); _mixin(A.__MouseAdapter__BaseAdapter__WheelEventListenerMixin, A._WheelEventListenerMixin); _mixin(A.__PointerAdapter__BaseAdapter__WheelEventListenerMixin, A._WheelEventListenerMixin); _mixin(A.UnmodifiableListBase, A.UnmodifiableListMixin); _mixin(A.__CastListBase__CastIterableBase_ListMixin, A.ListMixin); _mixin(A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin, A.ListMixin); _mixin(A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin, A.FixedLengthListMixin); _mixin(A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin, A.ListMixin); _mixin(A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin, A.FixedLengthListMixin); _mixin(A._AsyncStreamController, A._AsyncStreamControllerDispatch); _mixin(A._SyncStreamController, A._SyncStreamControllerDispatch); _mixin(A.UnmodifiableMapBase, A._UnmodifiableMapMixin); _mixin(A._ListBase_Object_ListMixin, A.ListMixin); _mixin(A._SetBase_Object_SetMixin, A.SetMixin); _mixin(A._SplayTreeMap__SplayTree_MapMixin, A.MapMixin); _mixin(A._SplayTreeSet__SplayTree_IterableMixin, A.IterableMixin); _mixin(A._SplayTreeSet__SplayTree_IterableMixin_SetMixin, A.SetMixin); _mixin(A._UnmodifiableMapView_MapView__UnmodifiableMapMixin, A._UnmodifiableMapMixin); _mixin(A.__SetBase_Object_SetMixin, A.SetMixin); _mixin(A.__UnmodifiableSet__SetBase__UnmodifiableSetMixin, A._UnmodifiableSetMixin); _mixin(A.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin, A._JsonPrettyPrintMixin); _mixin(A._CssStyleDeclaration_JavaScriptObject_CssStyleDeclarationBase, A.CssStyleDeclarationBase); _mixin(A._DomRectList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._DomRectList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._DomStringList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._DomStringList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._FileList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._FileList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._HtmlCollection_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._HtmlCollection_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._MidiInputMap_JavaScriptObject_MapMixin, A.MapMixin); _mixin(A._MidiOutputMap_JavaScriptObject_MapMixin, A.MapMixin); _mixin(A._MimeTypeArray_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._MimeTypeArray_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._NodeList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._NodeList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._PluginArray_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._PluginArray_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._RtcStatsReport_JavaScriptObject_MapMixin, A.MapMixin); _mixin(A._SourceBufferList_EventTarget_ListMixin, A.ListMixin); _mixin(A._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._SpeechGrammarList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._SpeechGrammarList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._Storage_JavaScriptObject_MapMixin, A.MapMixin); _mixin(A._TextTrackCueList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._TextTrackCueList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._TextTrackList_EventTarget_ListMixin, A.ListMixin); _mixin(A._TextTrackList_EventTarget_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._TouchList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._TouchList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A.__CssRuleList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A.__CssRuleList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A.__GamepadList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A.__GamepadList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A.__NamedNodeMap_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A.__NamedNodeMap_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A.__SpeechRecognitionResultList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A.__StyleSheetList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A.__StyleSheetList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixinHard(A._JsArray_JsObject_ListMixin, A.ListMixin); _mixin(A._LengthList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._LengthList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._NumberList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._NumberList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._StringList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._StringList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._TransformList_JavaScriptObject_ListMixin, A.ListMixin); _mixin(A._TransformList_JavaScriptObject_ListMixin_ImmutableListMixin, A.ImmutableListMixin); _mixin(A._AudioParamMap_JavaScriptObject_MapMixin, A.MapMixin); _mixinHard(A._BoardItemState_State_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixinHard(A._BoardListState_State_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixinHard(A._BoardViewState_State_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixinHard(A._BaseChartState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin, A.DirectoryAddOnsMixin); _mixin(A._AnimationController_Animation_AnimationEagerListenerMixin, A.AnimationEagerListenerMixin); _mixin(A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, A.AnimationLocalListenersMixin); _mixin(A._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A.AnimationLocalStatusListenersMixin); _mixin(A._CompoundAnimation_Animation_AnimationLazyListenerMixin, A.AnimationLazyListenerMixin); _mixin(A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, A.AnimationLocalListenersMixin); _mixin(A._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A.AnimationLocalStatusListenersMixin); _mixin(A._CurvedAnimation_Animation_AnimationWithParentMixin, A.AnimationWithParentMixin); _mixin(A._ProxyAnimation_Animation_AnimationLazyListenerMixin, A.AnimationLazyListenerMixin); _mixin(A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, A.AnimationLocalListenersMixin); _mixin(A._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A.AnimationLocalStatusListenersMixin); _mixin(A._ReverseAnimation_Animation_AnimationLazyListenerMixin, A.AnimationLazyListenerMixin); _mixin(A._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin, A.AnimationLocalStatusListenersMixin); _mixin(A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin, A.AnimationEagerListenerMixin); _mixin(A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, A.AnimationLocalListenersMixin); _mixin(A._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, A.AnimationLocalStatusListenersMixin); _mixin(A.__AnimatedEvaluation_Animation_AnimationWithParentMixin, A.AnimationWithParentMixin); _mixinHard(A.__CupertinoButtonState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._CupertinoDynamicColor_Color_Diagnosticable, A.Diagnosticable); _mixin(A._CupertinoIconThemeData_IconThemeData_Diagnosticable, A.Diagnosticable); _mixinHard(A.__CupertinoSwitchState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._CupertinoTextThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable, A.Diagnosticable); _mixin(A._FlutterError_Error_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixin(A._FlutterErrorDetails_Object_Diagnosticable, A.Diagnosticable); _mixin(A._DiagnosticableTree_Object_Diagnosticable, A.Diagnosticable); _mixin(A._PointerAddedEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent, A._CopyPointerAddedEvent); _mixin(A._PointerCancelEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent, A._CopyPointerCancelEvent); _mixin(A._PointerDownEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent, A._CopyPointerDownEvent); _mixin(A._PointerEnterEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent, A._CopyPointerEnterEvent); _mixin(A._PointerEvent_Object_Diagnosticable, A.Diagnosticable); _mixin(A._PointerExitEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent, A._CopyPointerExitEvent); _mixin(A._PointerHoverEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent, A._CopyPointerHoverEvent); _mixin(A._PointerMoveEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent, A._CopyPointerMoveEvent); _mixin(A._PointerRemovedEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent, A._CopyPointerRemovedEvent); _mixin(A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent, A._CopyPointerScrollEvent); _mixin(A._PointerUpEvent_PointerEvent__PointerEventDescription, A._PointerEventDescription); _mixin(A._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent, A._CopyPointerUpEvent); _mixin(A.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent, A._CopyPointerAddedEvent); _mixin(A.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent, A._CopyPointerCancelEvent); _mixin(A.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent, A._CopyPointerDownEvent); _mixin(A.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent, A._CopyPointerEnterEvent); _mixin(A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable, A.Diagnosticable); _mixin(A.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription, A._PointerEventDescription); _mixin(A.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent, A._CopyPointerExitEvent); _mixin(A.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent, A._CopyPointerHoverEvent); _mixin(A.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent, A._CopyPointerMoveEvent); _mixin(A.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent, A._CopyPointerRemovedEvent); _mixin(A.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent, A._CopyPointerScrollEvent); _mixin(A.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent, A._CopyPointerUpEvent); _mixin(A._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixinHard(A.__SliverAppBarState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._AppBarTheme_Object_Diagnosticable, A.Diagnosticable); _mixin(A._MaterialBannerThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._BottomAppBarTheme_Object_Diagnosticable, A.Diagnosticable); _mixin(A._BottomNavigationBarThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._BottomSheetThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__RawMaterialButtonState_State_MaterialStateMixin, A.MaterialStateMixin); _mixin(A._ButtonBarThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ButtonStyle_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__ButtonStyleState_State_MaterialStateMixin, A.MaterialStateMixin); _mixinHard(A.__ButtonStyleState_State_MaterialStateMixin_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._ButtonThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._CardTheme_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__CheckboxState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin, A.ToggleableStateMixin); _mixin(A._CheckboxThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ChipThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ColorScheme_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__SortArrowState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._DataTableThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__DatePickerDialogState_State_RestorationMixin, A.RestorationMixin); _mixin(A._DialogTheme_Object_Diagnosticable, A.Diagnosticable); _mixin(A._DividerThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._DrawerControllerState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._DrawerThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__DropdownButtonState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixin(A.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A._ElevatedButtonThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__ExpandIconState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._ExpansionTileThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY, A.FabDockedOffsetY); _mixin(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY, A.FabFloatOffsetY); _mixin(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY, A.FabTopOffsetY); _mixin(A._FloatingActionButtonThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__InkResponseState_State_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixin(A._InputDecorationTheme_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__BorderContainerState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__Decorator_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin, A.SlottedMultiChildRenderObjectWidgetMixin); _mixinHard(A.__HelperErrorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__InputDecoratorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__RenderDecoration_RenderBox_SlottedContainerRenderObjectMixin, A.SlottedContainerRenderObjectMixin); _mixinHard(A.__ListTile_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin, A.SlottedMultiChildRenderObjectWidgetMixin); _mixinHard(A.__RenderListTile_RenderBox_SlottedContainerRenderObjectMixin, A.SlottedContainerRenderObjectMixin); _mixin(A._ListTileThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__MaterialState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__MergeableMaterialState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._NavigationBarThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._NavigationRailThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A._OutlinedButtonThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin, A.MaterialRouteTransitionMixin); _mixin(A._PageTransitionsTheme_Object_Diagnosticable, A.Diagnosticable); _mixin(A._PopupMenuThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._ProgressIndicatorThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__RadioState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin, A.ToggleableStateMixin); _mixin(A._RadioThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._RefreshIndicatorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._ScaffoldMessengerState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._ScaffoldState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin, A.RestorationMixin); _mixinHard(A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._ScrollbarThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._SliderThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._SnackBarThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__MaterialSwitchState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin, A.ToggleableStateMixin); _mixin(A._SwitchThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._TabBarTheme_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A.__ChangeAnimation_Animation_AnimationWithParentMixin, A.AnimationWithParentMixin); _mixin(A.__DragAnimation_Animation_AnimationWithParentMixin, A.AnimationWithParentMixin); _mixin(A.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A._TextButtonThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__TextFieldState_State_RestorationMixin, A.RestorationMixin); _mixin(A._TextSelectionThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._TextTheme_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._VisualDensity_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__DialState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__HourMinuteTextFieldState_State_RestorationMixin, A.RestorationMixin); _mixinHard(A.__TimePickerDialogState_State_RestorationMixin, A.RestorationMixin); _mixinHard(A.__TimePickerInputState_State_RestorationMixin, A.RestorationMixin); _mixin(A._TimePickerThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__DefaultFillColor_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A.__ResolveFillColor_MaterialStateProperty_Diagnosticable, A.Diagnosticable); _mixin(A._ToggleButtonsThemeData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._TooltipState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._TooltipThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._Typography_Object_Diagnosticable, A.Diagnosticable); _mixin(A._Decoration_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ImageChunkEvent_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ImageStream_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ImageStreamCompleter_Object_Diagnosticable, A.Diagnosticable); _mixin(A._StrutStyle_Object_Diagnosticable, A.Diagnosticable); _mixin(A._TextStyle_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin, A.ContainerParentDataMixin); _mixinHard(A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin, A.RelayoutWhenSystemFontsChangeMixin); _mixinHard(A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._RenderFlex_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin, A.DebugOverflowIndicatorMixin); _mixin(A._Layer_AbstractNode_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixinHard(A._RenderListBody_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixin(A.__MouseTrackerUpdateDetails_Object_Diagnosticable, A.Diagnosticable); _mixin(A._RenderObject_AbstractNode_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixinHard(A._RenderParagraph_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin, A.RelayoutWhenSystemFontsChangeMixin); _mixinHard(A._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin, A._PlatformViewGestureMixin); _mixinHard(A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin, A.RenderProxyBoxMixin); _mixinHard(A._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin, A.RenderAnimatedOpacityMixin); _mixinHard(A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixinHard(A._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin, A.RenderProxyBoxMixin); _mixinHard(A._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixin(A._SliverGeometry_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin, A.ContainerParentDataMixin); _mixinHard(A._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin, A.ContainerParentDataMixin); _mixinHard(A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers, A.RenderSliverHelpers); _mixin(A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin, A.RenderSliverWithKeepAliveMixin); _mixinHard(A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin, A.ContainerParentDataMixin); _mixin(A._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin, A.KeepAliveParentDataMixin); _mixinHard(A._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixinHard(A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixin(A._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers, A.RenderSliverHelpers); _mixinHard(A._RenderStack_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._RenderView_RenderObject_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixinHard(A._RenderViewportBase_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixinHard(A._RenderWrap_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixin(A._SemanticsData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixin(A._SemanticsSortKey_Object_Diagnosticable, A.Diagnosticable); _mixin(A._KeyEvent_Object_Diagnosticable, A.Diagnosticable); _mixin(A._KeyboardKey_Object_Diagnosticable, A.Diagnosticable); _mixin(A._MouseCursor_Object_Diagnosticable, A.Diagnosticable); _mixin(A._RawKeyEvent_Object_Diagnosticable, A.Diagnosticable); _mixin(A._RawKeyEventData_Object_Diagnosticable, A.Diagnosticable); _mixin(A._Action_Object_Diagnosticable, A.Diagnosticable); _mixin(A._ActionDispatcher_Object_Diagnosticable, A.Diagnosticable); _mixin(A._Intent_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__OverridableAction_ContextAction__OverridableActionMixin, A._OverridableActionMixin); _mixinHard(A.__OverridableContextAction_ContextAction__OverridableActionMixin, A._OverridableActionMixin); _mixinHard(A.__AnimatedCrossFadeState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__AnimatedSizeState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__AnimatedSwitcherState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A.__WidgetsAppState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixin(A._AutofillGroupState_State_AutofillScopeMixin, A.AutofillScopeMixin); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding, A.GestureBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding, A.SchedulerBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding, A.ServicesBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding, A.PaintingBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding, A.SemanticsBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding, A.RendererBinding); _mixinHard(A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding, A.WidgetsBinding); _mixinHard(A._DraggableScrollableNotification_Notification_ViewportNotificationMixin, A.ViewportNotificationMixin); _mixinHard(A._EditableTextState_State_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixin(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate, A.TextSelectionDelegate); _mixin(A._FocusManager_Object_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixin(A._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier, A.ChangeNotifier); _mixin(A._FocusNode_Object_DiagnosticableTreeMixin, A.DiagnosticableTreeMixin); _mixin(A._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier, A.ChangeNotifier); _mixin(A._FocusTraversalPolicy_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin, A.DirectionalFocusTraversalPolicyMixin); _mixin(A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__ReadingOrderSortData_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A._FormFieldState_State_RestorationMixin, A.RestorationMixin); _mixin(A._State_Object_Diagnosticable, A.Diagnosticable); _mixin(A._IconThemeData_Object_Diagnosticable, A.Diagnosticable); _mixin(A.__ImageState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__InteractiveViewerState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixin(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.RenderConstrainedLayoutBuilder); _mixin(A.__MediaQueryFromWindowState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A._NavigatorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin, A.RestorationMixin); _mixin(A.__NotificationElement_ProxyElement_NotifiableElementMixin, A.NotifiableElementMixin); _mixinHard(A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A._OverlayState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__RenderTheatre_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixinHard(A._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin, A.ViewportNotificationMixin); _mixinHard(A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._SliverReorderableListState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__RestorationScopeState_State_RestorationMixin, A.RestorationMixin); _mixinHard(A._ModalRoute_TransitionRoute_LocalHistoryRoute, A.LocalHistoryRoute); _mixin(A._FixedScrollMetrics_Object_ScrollMetrics, A.ScrollMetrics); _mixinHard(A._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin, A.ViewportNotificationMixin); _mixinHard(A._ScrollMetricsNotification_Notification_ViewportNotificationMixin, A.ViewportNotificationMixin); _mixin(A._ScrollPosition_ViewportOffset_ScrollMetrics, A.ScrollMetrics); _mixinHard(A._ScrollableState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin, A.RestorationMixin); _mixinHard(A._RawScrollbarState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._LogicalKeySet_KeySet_Diagnosticable, A.Diagnosticable); _mixin(A._ShortcutManager_ChangeNotifier_Diagnosticable, A.Diagnosticable); _mixin(A._SingleActivator_Object_Diagnosticable, A.Diagnosticable); _mixin(A._SingleActivator_Object_Diagnosticable_MenuSerializableShortcut, A.MenuSerializableShortcut); _mixin(A.__ActivatorIntentPair_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixin(A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin, A.NotifiableElementMixin); _mixin(A.__SingleChildViewportElement_SingleChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin, A.ViewportElementMixin); _mixin(A.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin, A._RenderSliverPersistentHeaderForWidgetsMixin); _mixin(A.__TableSlot_Object_Diagnosticable, A.Diagnosticable); _mixinHard(A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin, A.NotifiableElementMixin); _mixin(A.__ViewportElement_MultiChildRenderObjectElement_NotifiableElementMixin_ViewportElementMixin, A.ViewportElementMixin); _mixin(A._DefaultCacheManager_CacheManager_ImageCacheManager, A.ImageCacheManager); _mixinHard(A.__SlidableDismissalState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixinHard(A.__SlidableState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin, A.AutomaticKeepAliveClientMixin); _mixinHard(A._StyledToastWidgetState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixin(A._Document_Node__ParentNode, A._ParentNode); _mixin(A._Document_Node__ParentNode__NonElementParentNode, A._NonElementParentNode); _mixin(A._Document_Node__ParentNode__NonElementParentNode__ElementAndDocument, A._ElementAndDocument); _mixin(A._Element_Node__ParentNode, A._ParentNode); _mixin(A._Element_Node__ParentNode__ElementAndDocument, A._ElementAndDocument); _mixin(A._FilteredElementList_IterableBase_ListMixin, A.ListMixin); _mixin(A._ClientContactEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ClientContactEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ClientEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ClientEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ClientEntity_Object_BaseEntity_SelectableEntity_HasActivities, A.HasActivities); _mixin(A._CompanyGatewayEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._CompanyEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._GatewayEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._DesignEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._DocumentEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._DocumentEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ExpenseCategoryEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ExpenseEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ExpenseEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A.BelongsToClient); _mixin(A._ExpenseStatusEntity_Object_EntityStatus, A.EntityStatus); _mixin(A._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity, A.SelectableEntity); _mixin(A._GatewayTokenEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._GatewayTokenEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._GroupEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._GroupEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._InvitationEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._InvitationEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._InvoiceEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._InvoiceEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal, A.CalculateInvoiceTotal); _mixin(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient, A.BelongsToClient); _mixin(A._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient_BelongsToVendor, A.BelongsToVendor); _mixin(A._PaymentEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._PaymentEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A.BelongsToClient); _mixin(A._PaymentableEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._PaymentTermEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._PaymentTermEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ProductEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ProductEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ProjectEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._ProjectEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A.BelongsToClient); _mixin(A._CountryEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._CurrencyEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._DateFormatEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._FontEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._IndustryEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._InvoiceStatusEntity_Object_EntityStatus, A.EntityStatus); _mixin(A._LanguageEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._PaymentTypeEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._SizeEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._TimezoneEntity_Object_SelectableEntity, A.SelectableEntity); _mixin(A._SubscriptionEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._TaskEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._TaskEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A.BelongsToClient); _mixin(A._TaskStatusEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._TaskStatusEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus, A.EntityStatus); _mixin(A._TaxRateEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._TaxRateEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._TokenEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._TokenEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._UserEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._UserEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._VendorContactEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._VendorEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._VendorEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._VendorEntity_Object_BaseEntity_SelectableEntity_HasActivities, A.HasActivities); _mixin(A._WebhookEntity_Object_BaseEntity, A.BaseEntity); _mixin(A._WebhookEntity_Object_BaseEntity_SelectableEntity, A.SelectableEntity); _mixin(A._ClientUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._CompanyGatewayUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._CreditUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._DesignUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._DocumentUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._ExpenseUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._ExpenseCategoryUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._GroupUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._InvoiceUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._PaymentUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._PaymentTermUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._ProductUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._ProjectUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._PurchaseOrderUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._QuoteUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._RecurringExpenseUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._RecurringInvoiceUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._SubscriptionUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._TaskUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._TaskStatusUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._TaxRateUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._TokenUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._UserUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._VendorUIState_Object_EntityUIState, A.EntityUIState); _mixin(A._WebhookUIState_Object_EntityUIState, A.EntityUIState); _mixin(A.__AutocompleteEntity_Object_SelectableEntity, A.SelectableEntity); _mixinHard(A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__SortArrowState_State_TickerProviderStateMixin0, A.TickerProviderStateMixin); _mixinHard(A.__VariablesHelpState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ClientEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ClientViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ClientViewFullwidthState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__CreditEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__DashboardScreenState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__DesignEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ExpenseEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ExpenseViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__GroupViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__InvoiceEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A._InvoiceEditDesktopState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__InvoiceViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ProductViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ProjectViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__QuoteEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__AccountManagementState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__ClientPortalState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__CustomFieldsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__DeviceSettingsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__InvoiceDesignState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__UserDetailsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__SubscriptionEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__TaskEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__TaskViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__UserEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__VendorEditState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__VendorViewState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__VendorViewFullwidthState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._AppLocalization_LocaleCodeAware_LocalizationsProvider, A.LocalizationsProvider); _mixinHard(A.__FadeWidgetState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixin(A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds, A.PdfPreviewActionBounds); _mixinHard(A._PdfPreviewCustomState_State_PdfPreviewRaster, A.PdfPreviewRaster); _mixin(A._QrBitBuffer_Object_ListMixin, A.ListMixin); _mixinHard(A._RoundedLoadingButtonState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._ComposerPreferences_Object_ChangeNotifier, A.ChangeNotifier); _mixin(A._DocumentComposer_Object_ChangeNotifier, A.ChangeNotifier); _mixin(A._MutableDocument_Object_ChangeNotifier, A.ChangeNotifier); _mixinHard(A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A.TextComponentViewModel); _mixin(A.__BoxComponentState_State_DocumentComponent, A.DocumentComponent); _mixinHard(A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._MagnifierAndToolbarController_Object_ChangeNotifier, A.ChangeNotifier); _mixinHard(A.__AndroidDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._FloatingCursorController_Object_ChangeNotifier, A.ChangeNotifier); _mixin(A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A.__IOSDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__IosDocumentTouchEditingControlsState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._HorizontalRuleNode_BlockNode_ChangeNotifier, A.ChangeNotifier); _mixin(A._ImageNode_BlockNode_ChangeNotifier, A.ChangeNotifier); _mixinHard(A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A.TextComponentViewModel); _mixinHard(A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A.TextComponentViewModel); _mixin(A._TextNode_DocumentNode_ChangeNotifier, A.ChangeNotifier); _mixin(A.__TextComponentState_State_DocumentComponent, A.DocumentComponent); _mixinHard(A._BlinkingCaretState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__TextLayoutCaretState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixin(A._BlinkController_Object_ChangeNotifier, A.ChangeNotifier); _mixinHard(A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin, A.ContainerRenderObjectMixin); _mixin(A._RenderSuperTextLayout_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, A.RenderBoxContainerDefaultsMixin); _mixin(A._SuperTextState_State_ProseTextBlock, A.ProseTextBlock); _mixin(A._ProseTextState_State_ProseTextBlock, A.ProseTextBlock); _mixinHard(A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin, A.RenderObjectWithChildMixin); _mixin(A.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.RenderConstrainedLayoutBuilder); })(); var init = { typeUniverse: {eC: new Map(), tR: {}, eT: {}, tPV: {}, sEA: []}, mangledGlobalNames: {int: "int", double: "double", num: "num", String: "String", bool: "bool", Null: "Null", List: "List"}, mangledNames: {}, types: ["~()", "Null()", "ListUIStateBuilder*(ListUIStateBuilder*)", "Null(Object*)", "Null(Store*,@,@(@)*)", "@(String*)", "InvoiceEntityBuilder*(InvoiceEntityBuilder*)", "Null(@)", "double(double)", "@()", "@(bool*)", "Null(String*)", "@(@)", "SettingsEntityBuilder*(SettingsEntityBuilder*)", "Null(BuildContext*)", "String*(String*)", "bool*(String*)", "Future*(BuildContext*)", "bool()", "int*(String*,String*)", "Null(bool*)", "bool*()", "~(Duration)", "CompanyEntityBuilder*(CompanyEntityBuilder*)", "ErrorDialog*(BuildContext*)", "String*(@)", "Future*()", "Null(EntityState*,bool*)", "Future*(Store*,@,@(@)*)", "ExpenseEntityBuilder*(ExpenseEntityBuilder*)", "~(BuildContext*)", "Future<~>*()", "Null(List*)", "~(TextEditingController*)", "Null(SelectableEntity*)", "~(Object?)", "Null(Duration*)", "Future*()", "Null(String*,String*)", "ListBuilder*()", "~(bool*)", "String*(BaseEntity*)", "~(AnimationStatus)", "DropdownMenuItem*(String*)", "PaymentEntityBuilder*(PaymentEntityBuilder*)", "bool*(Route<@>*)", "bool(SpanMarker)", "PluralCase()", "ClientEntityBuilder*(ClientEntityBuilder*)", "Null(String*,InvoiceEntity*)", "TaskEntityBuilder*(TaskEntityBuilder*)", "@(BuildContext*)", "bool(String)", "Null(String*,bool*)", "String*(String*,PreviewEntity*)", "String*(String*,SelectCompany*)", "String*(String*,ClearEntityFilter*)", "bool*(InvoiceItemEntity*)", "InvoiceItemEntityBuilder*(InvoiceItemEntityBuilder*)", "~(BuildContext*,EntityAction*)", "CompanyGatewayEntityBuilder*(CompanyGatewayEntityBuilder*)", "@(SelectableEntity*)", "String(String,Node)", "ExecutionInstruction({editContext!EditContext,keyEvent!RawKeyEvent})", "Null(InvoiceEntity*)", "String()", "InvoiceStatusEntityBuilder*(InvoiceStatusEntityBuilder*)", "~(String*)", "InvoiceEntity*(String*)", "~(Event)", "~(DragUpdateDetails)", "Null(TextEditingController*)", "Null(DocumentEntity*)", "bool(BoxHitTestResult,Offset)", "~(bool)", "SubscriptionEntityBuilder*(SubscriptionEntityBuilder*)", "bool*(bool*,UpdateUserPreferences*)", "UserEntityBuilder*(UserEntityBuilder*)", "Widget(BuildContext)", "String*(String*,FilterByEntity*)", "Null(Event)", "int*(List*,List*)", "ListDivider*(BuildContext*,int*)", "~(@)", "~(TapDownDetails)", "~(DragStartDetails)", "Null(~)", "EntityStats*(String*,BuiltMap*)", "@(int*,String*)", "~(int)", "String*(String*,@)", "SettingsUIStateBuilder*(SettingsUIStateBuilder*)", "double(RenderBox)", "~(PaintingContext,Offset)", "@(TaxRateEntity*)", "~(TapUpDetails)", "Null(BuildContext*,MultipartFile*)", "~(Element0)", "~(PointerEvent)", "InvoiceEntity*(@)", "Future<~>()", "int*(int*,PreviewEntity*)", "Null(BuildContext*,DocumentEntity*,String*,String*)", "Future?(Object*)", "Null(List*)", "VendorEntityBuilder*(VendorEntityBuilder*)", "Null(int*)", "bool(Object?)", "String(String)", "StatelessWidget*(BuildContext*,BoxConstraints*)", "~(RenderObject)", "UserCompanyEntityBuilder*(UserCompanyEntityBuilder*)", "String(Match)", "Null(String*,ExpenseEntity*)", "~(DragEndDetails)", "Null(EntityStatus*,bool*)", "Color(Set)", "~(String)", "~(Document2,DocumentEditorTransaction)", "Null(BuildContext*,Completer*)", "Null(Object,StackTrace)", "int(int)", "UserStateBuilder*(UserStateBuilder*)", "~(@,@)", "Widget*()", "bool(@)", "Palette()", "String*()", "@(CompanyEntity*)", "~(Object,StackTrace)", "~(RestorableProperty,~())", "Widget*(BuildContext*,int*)", "InvoiceEntity*(InvoiceEntity*,@)", "Map(Document2,DocumentNode)", "bool(FocusNode)", "~(ByteData?)", "String*(InvoiceEntityBuilder*)", "@(InvoiceEntity*)", "List()", "PurchaseOrderStateBuilder*(PurchaseOrderStateBuilder*)", "Null(ExpenseEntity*)", "Null(TaxRateEntity*)", "~(String,@)", "Null(String*,TaskEntity*)", "bool*(ClientContactEntity*)", "Null(BaseEntity*)", "ListBuilder*()", "Null(int*,int*)", "Null(PaymentEntity*)", "@(DocumentEntity*,String*,String*)", "DashboardUISettingsBuilder*(DashboardUISettingsBuilder*)", "String*(String*,ClearEntitySelection*)", "@(MultipartFile*)", "Null(DesignEntity*)", "~(Object*)", "~(SelectableEntity*)", "EntityStats*(String*,BuiltMap*)", "~(LayoutView)", "AuthStateBuilder*(AuthStateBuilder*)", "Widget(BuildContext,int)", "int()", "Null(SettingsEntity*)", "bool(ScrollNotification)", "bool*(InvoiceEntity*)", "ProjectEntityBuilder*(ProjectEntityBuilder*)", "AlertDialog*(BuildContext*)", "~(ForcePressDetails)", "ScrollableListView*(BuildContext*)", "TaskStatusEntityBuilder*(TaskStatusEntityBuilder*)", "ProductEntityBuilder*(ProductEntityBuilder*)", "Null(BuildContext*[EntityAction*])", "bool*(BaseEntity*)", "SimpleDialog*(BuildContext*)", "~(String,String)", "bool(FlutterHtmlKeyboardEvent)", "Null(List*)", "Object?(@)", "~(ProgressEvent)", "bool(int)", "FeesAndLimitsSettingsBuilder*(FeesAndLimitsSettingsBuilder*)", "@(int*)", "Null(UserEntity*)", "DropdownMenuItem*(int*)", "Null(TaskEntity*)", "Null(Completer*)", "InvitationEntity*(ClientContactEntity*)", "CompanyGatewayStateBuilder*(CompanyGatewayStateBuilder*)", "ListBuilder*()", "TaskEntity*(String*)", "MapBuilder*()", "String*(PaymentableEntity*)", "Null(EntityType*)", "GroupStateBuilder*(GroupStateBuilder*)", "Null(@,@)", "bool*(VendorContactEntity*)", "bool(_RouteEntry?)", "TaxRateStateBuilder*(TaxRateStateBuilder*)", "Null(TaskTime*)", "double*(double*)", "Color0(int?)", "~(PointerExitEvent)", "QuoteStateBuilder*(QuoteStateBuilder*)", "MapBuilder*(MapBuilder*)", "@(Event)", "bool*(TaskTime*)", "Null(String*,PaymentEntity*)", "bool*(PaymentableEntity*)", "Column*(BuildContext*)", "ClientStateBuilder*(ClientStateBuilder*)", "int(_Codes)", "bool(Node)", "Widget(BuildContext,Widget?)", "bool(InlineSpan)", "ExpenseEntity*(String*)", "Null(Completer*,String*)", "Null(TaskStateBuilder*)", "WebhookEntityBuilder*(WebhookEntityBuilder*)", "Null(LoginResponse*)", "PaymentEntity*(String*)", "@(List*)", "Null(RecurringInvoiceStateBuilder*)", "Future*(BuildContext*,bool*)", "Null(InvoiceStateBuilder*)", "PaymentTermStateBuilder*(PaymentTermStateBuilder*)", "Color?(Set)", "double(RenderBox,double)", "Future()", "List*()", "Null(ProductEntity*)", "Null(BuildContext*,bool*)", "double*()", "Null(BuiltList*)", "Null(InvoiceItemEntity*)", "Null(InvoiceItemEntity*,int*)", "@(DesignEntity*)", "ListTile*(String*)", "DocumentStateBuilder*(DocumentStateBuilder*)", "~(PointerExitEvent*)", "~(LongPressMoveUpdateDetails)", "~(String?)", "Null(String*,ClientEntity*)", "Null(GroupEntity*)", "ProductEntity*(String*)", "Null(List*)", "Null(PaymentableEntity*)", "TextStyle(Set)", "Uint8List*(PdfPageFormat*)", "~(DateTime)", "~(PointerDownEvent)", "bool(Element0)", "Null(ClientEntity*)", "~(String,NumericAxis)", "bool(GestureListener)", "~(LongPressStartDetails)", "MapBuilder*()", "AppStateBuilder*(AppStateBuilder*)", "Null(VendorEntity*)", "InvoiceItemSelector*(BuildContext*)", "Null(ProjectEntity*)", "Future>(Map)", "Null(List*)", "Null(BuildContext*,InvoiceEntity*[String*])", "~(Object?,Object?)", "Null(EntityAction*)", "~(PointerEnterEvent)", "BaseEntity*(InvoiceItemEntity*)", "Null(BuildContext*[int*])", "Null(RecurringExpenseStateBuilder*)", "Null(List*[String*,String*])", "int(FocusNode,FocusNode)", "TaxRateEntity*(String*)", "Null(List*,String*,String*)", "Null(TaskStatusEntity*)", "bool*(EntityType*)", "~(SpanMarker)", "ExpenseStatusEntityBuilder*(ExpenseStatusEntityBuilder*)", "Widget(BuildContext,BoxConstraints)", "WebhookStateBuilder*(WebhookStateBuilder*)", "~({curve:Curve,descendant:RenderObject?,duration:Duration,rect:Rect?})", "Null(CompanyGatewayEntity*)", "int*(InvoiceEntity*,InvoiceEntity*)", "ColorTween(@)", "int(Object?)", "ExpenseStateBuilder*(ExpenseStateBuilder*)", "String(int)", "Future()", "Null(BuildContext*,InvoiceEntity*,ClientEntity*)", "~(PointerEnterEvent*)", "@(String*,bool*)", "String*(ProfitAndLossReportFields*)", "@(Completer*)", "Null(ExpenseCategoryEntity*)", "ExpenseCategoryEntityBuilder*(ExpenseCategoryEntityBuilder*)", "ExpenseCategoryStateBuilder*(ExpenseCategoryStateBuilder*)", "MessageDialog*(BuildContext*)", "Null(BuildContext*,EmailTemplate*,String*,String*)", "String*(TaxRateReportFields*)", "InvoiceStateBuilder*(InvoiceStateBuilder*)", "DropdownMenuItem*(MapEntry*)", "Future*(String*)", "DocumentLayout()", "DesignEntity*(String*)", "~(MouseEvent)", "String*(TaxRateReportFields0*)", "Null(DateTime*)", "Future<@>(MethodCall0)", "CustomFieldSelector*(BuildContext*)", "bool(MapEntry>>)", "bool(InheritedElement)", "Null(List*)", "CreditStateBuilder*(CreditStateBuilder*)", "GridView*(BuildContext*,BoxConstraints*)", "bool(_RouteEntry)", "String*(InvitationEntity*)", "Null(PointerEvent0)", "Null(WebhookEntity*)", "PaymentStateBuilder*(PaymentStateBuilder*)", "DropdownMenuItem*(DateRange*)", "VendorStateBuilder*(VendorStateBuilder*)", "DateTime()", "Null(PaymentTermEntity*)", "Future>(Map)", "TaskListItem*(BuildContext*,int*)", "Offset()", "DesignStateBuilder*(DesignStateBuilder*)", "~(int,int)", "ProductStateBuilder*(ProductStateBuilder*)", "int(@,@)", "_TextBoundary(DirectionalTextEditingIntent)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*)", "ProjectStateBuilder*(ProjectStateBuilder*)", "ProjectEntity*(String*)", "ListBuilder*()", "@([String*,String*])", "~(NavigatorObserver)", "MapBuilder*(MapBuilder*)", "TokenStateBuilder*(TokenStateBuilder*)", "double*(ChartMoneyData*,int*)", "Null(TokenEntity*)", "Null(TouchEvent)", "Future()", "ExpenseEntity*(ExpenseEntity*,@)", "ClientEntity*(String*)", "InkWell*(BuildContext*)", "bool*(@)", "RecurringExpenseStateBuilder*(RecurringExpenseStateBuilder*)", "KeyEventResult(FocusNode,RawKeyEvent)", "ActivityListTile*(BuildContext*,int*)", "TaskStatusStateBuilder*(TaskStatusStateBuilder*)", "Null(TaskStatusStateBuilder*)", "CompanyGatewayEntity*(String*)", "AppTextButton*(BuildContext*)", "List*(BuiltMap*,BuiltMap*)", "RecurringInvoiceStateBuilder*(RecurringInvoiceStateBuilder*)", "EntityStats*(String*,BuiltMap*)", "TaskStateBuilder*(TaskStateBuilder*)", "double(double,double)", "Color(Color)", "PanGestureRecognizer()", "~(PanGestureRecognizer)", "MaterialStateProperty?(ButtonStyle?)", "SubscriptionStateBuilder*(SubscriptionStateBuilder*)", "int(RenderObject,RenderObject)", "ClientContactEntityBuilder*(ClientContactEntityBuilder*)", "Null(SubscriptionEntity*)", "PopupMenuItem*(EntityAction*)", "Null(SubscriptionStateBuilder*)", "ReportsUIStateBuilder*(ReportsUIStateBuilder*)", "EdgeInsetsGeometryTween(@)", "TaskStatusEntity*(String*)", "Null(List*)", "~(PointerSignalEvent)", "Null(List*)", "Null(TaxRateStateBuilder*)", "TokenEntity*(String*)", "Null(QuoteStateBuilder*)", "Null(List*)", "Null(TokenStateBuilder*)", "ListBuilder*(ListBuilder*)", "Null(Timer*)", "Null(PurchaseOrderStateBuilder*)", "UserEntity*(String*)", "Null(UserStateBuilder*)", "Null(ProjectStateBuilder*)", "List*(BuiltMap*)", "Null(List*)", "VendorEntity*(String*)", "Null(ProductStateBuilder*)", "Null(List*)", "Null(List*)", "~(LongPressEndDetails)", "Future<~>(bool)", "Null(PaymentTermStateBuilder*)", "Null(VendorStateBuilder*)", "Null(List*)", "PaymentTermEntity*(String*)", "WebhookEntity*(String*)", "Null(List*)", "Null(PaymentStateBuilder*)", "Null(WebhookStateBuilder*)", "bool(FocusableActionDetector)", "Future<~>(MethodCall0)", "List*>*(BuildContext*)", "bool*(EntityAction*)", "OutlinedButton*(EntityAction*)", "Null(GroupStateBuilder*)", "GroupEntityBuilder*(GroupEntityBuilder*)", "PopupMenuButton*(BuildContext*,int*)", "Null(List*)", "GroupEntity*(String*)", "List*>*(BuildContext*)", "Null(ExpenseCategoryStateBuilder*)", "SubscriptionEntity*(String*)", "int(SemanticsNode,SemanticsNode)", "Null(List*)", "ExpenseCategoryEntity*(String*)", "bool(SemanticsNode)", "~(List)", "~(SliverConstraints)", "Null(ExpenseStateBuilder*)", "~(Object,String)", "bool(Node0)", "DecoratedFormField*(BuildContext*,TextEditingController*,FocusNode*,~()*)", "Set()", "IconButton*(BuildContext*)", "~(Timer*)", "Null(int*,bool*)", "Null(List*)", "Future()", "BaseEntity*(String*)", "Future*(BuildContext*,Completer*{oneTimePassword:String*,secret:String*,url:String*})", "Null(DesignStateBuilder*)", "Future*(BuildContext*,Completer*,String*)", "Null(List*)", "Null(@,StackTrace)", "Null(Store*)", "int*(TaskEntity*,TaskEntity*)", "Tween(@)", "String?(String?)", "InvoiceListItem*(BuildContext*,int*)", "Rect()", "QuoteListItem*(BuildContext*,int*)", "~(bool?)", "String*(ProductReportFields*)", "bool(DataRow)", "ClientContactEntity*()", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,ListUIState*,BuiltMap*)", "MouseCursor0(Set)", "Null(CreditStateBuilder*)", "DesignEntityBuilder*(DesignEntityBuilder*)", "bool*(ActivityEntity*)", "ExpenseListItem*(BuildContext*,int*)", "@(double*)", "InvitationEntity*(VendorContactEntity*)", "Null(bool)", "bool*(InvitationEntity*)", "DropdownMenuItem*(int*)", "Null(MouseEvent)", "MaterialStateProperty?(ButtonStyle?)", "~(TaxRateEntity*)", "Null(List*)", "PaymentableEntityBuilder*(PaymentableEntityBuilder*)", "String*(ClientReportFields*)", "String*(ContactReportFields*)", "String*(CreditReportFields*)", "String*(DocumentReportFields*)", "String*(ExpenseReportFields*)", "ListBuilder*()", "String*(InvoiceItemReportFields*)", "String*(InvoiceReportFields*)", "String*(PaymentReportFields*)", "String*(PurchaseOrderReportFields*)", "Null(CompanyGatewayStateBuilder*)", "String*(QuoteItemReportFields*)", "ListBuilder*()", "String*(QuoteReportFields*)", "Null(List*)", "String*(RecurringExpenseReportFields*)", "String*(RecurringInvoiceReportFields*)", "String*(TaskReportFields*)", "@(SettingsEntity*)", "ListBuilder*()", "bool*(PaymentEntity*)", "MapEntry*>*(String*,String*)", "Null(bool*,int*,String*,double*,double*)", "Null(String*,List*)", "MapBuilder*>*()", "Future*(String*,String*)", "PasswordConfirmation*(BuildContext*)", "Null(ClientStateBuilder*)", "bool*(Attribution*)", "bool(Object?,Object?)", "Null(List*)", "Widget(BuildContext,Widget,int?,bool)", "Iterable(Iterable)", "bool(_Highlight)", "bool(Point)", "bool(KeyData)", "bool(DocumentNode)", "TapSequenceGestureRecognizer()", "~(TapSequenceGestureRecognizer)", "~(ImageStreamListener)", "~(~())", "bool(String?)", "~(Codec)", "~(Timer)", "Object?(Object?)", "int(int,int)", "double()", "~(FocusHighlightMode)", "PaymentListItem*(BuildContext*,int*)", "TaxRateEntity*(TaxRateEntity*,@)", "ListTile*(BuildContext*,int*)", "TokenEntityBuilder*(TokenEntityBuilder*)", "~(Attribution,int)", "Color0*(ChartMoneyData*,int*)", "~(DragDownDetails)", "TaxRateEntity*(@)", "CustomSingleChildLayout(BuildContext)", "Null(GoogleSignInAuthentication*)", "DateTime*(ChartMoneyData*,int*)", "TaxRateEntityBuilder*(TaxRateEntityBuilder*)", "~(Size)", "SpanMarker(SpanMarker)", "Null(DateRange*)", "bool(Element2,String,String,_Html5NodeValidator)", "~([Intent?])", "int(_ReadingOrderSortData,_ReadingOrderSortData)", "~(List)", "Null(Completer*,String*)", "Null(TaskTime*,int*)", "Node2?(DirectoryNode,String,Node2?)", "TaskStatusEntity*(TaskStatusEntity*,@)", "UpdateState*()", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltList*,ListUIState*)", "~(RenderBox?)", "TapGestureRecognizer()", "~(TapGestureRecognizer)", "bool(Node1)", "bool(bool?)", "LongPressGestureRecognizer()", "~(LongPressGestureRecognizer)", "VerticalDragGestureRecognizer()", "~(VerticalDragGestureRecognizer)", "HorizontalDragGestureRecognizer()", "~(HorizontalDragGestureRecognizer)", "TaskEntity*(TaskEntity*,@)", "Stack(BuildContext,List,Widget?)", "@(Object?)", "Future*(Object*)", "LocalKey(MergeableMaterialItem)", "_ZoomEnterTransition(BuildContext,Animation0,Widget?)", "Positioned(BuildContext,Widget?)", "_ZoomExitTransition(BuildContext,Animation0,Widget?)", "Widget(BuildContext,TextLayout)", "Future(Body)", "Null(CompanyEntity*)", "DataCell(DataColumn)", "Tween<@>?(Tween<@>?,@,Tween<@>(@))", "AlignmentGeometryTween(@)", "Set<~>*()", "DecorationTween(@)", "ByteBuffer(@)", "DropdownMenuItem*(ImportType*)", "InvoiceEntity*(InvoiceEntity*,UpdateRecurringInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteRecurringInvoiceItem*)", "String(@)", "InvoiceEntity*(InvoiceEntity*,AddRecurringInvoiceItem*)", "String*(String*,ShowPdfRecurringInvoice*)", "int(int,@)", "Future<~>(~)", "List()", "Color?(Color?)", "List()", "Row*(BuildContext*,BoxConstraints*)", "bool(NodeValidator)", "InvoiceEntity*(InvoiceEntity*,UpdateQuoteItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteQuoteItem*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteItem*)", "SubscriptionEntity*(SubscriptionEntity*,@)", "Null(ClientContactEntity*)", "Widget*(BuildContext*,AsyncSnapshot*)", "InvoiceEntity*(InvoiceEntity*,UpdatePurchaseOrderItem*)", "InvoiceEntity*(InvoiceEntity*,DeletePurchaseOrderItem*)", "InvoiceEntity*(InvoiceEntity*,AddPurchaseOrderItem*)", "String*(String*,ShowPdfPurchaseOrder*)", "~(_DragInfo)", "EntityStats*(String*,BuiltMap*)", "String*(InvoiceItemEntityBuilder*)", "ProjectEntity*(ProjectEntity*,@)", "Future*(BuildContext*,AppSidebarMode*)", "Completer*(Completer*,EditProject*)", "~({addedComponents!List,changedComponents!List,removedComponents!List})", "VelocityTracker(PointerEvent)", "~(TextSelection,SelectionChangedCause?)", "String*(MapBuilder*)", "String(String,String)", "bool(ScrollMetricsNotification)", "Future()", "Future<~>(String)", "Padding(BuildContext)", "ProductEntity*(ProductEntity*,@)", "InvoiceItemEntity*(String*)", "PaymentTermEntity*(@)", "@(Object*)", "~(DiagnosticsNode)", "PaymentTermEntityBuilder*(PaymentTermEntityBuilder*)", "PaymentTermEntity*(PaymentTermEntity*,@)", "RenderBox()", "Widget(BuildContext,Object,StackTrace?)", "~(_TimePickerMode)", "List*(String*,BuiltMap*,BuiltList*)", "DataCell0*(String*)", "Null(BuildContext*,BuiltMap*)", "DataCell0*(DataColumn0*)", "~(TimeOfDay)", "bool*(DataRow0*)", "@(int*,bool*)", "Null(Uint8List)", "InvoiceEntity*(InvoiceEntity*,UpdateInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,AddInvoiceItem*)", "String*(String*,ShowPdfInvoice*)", "GroupEntity*(@)", "Map*(String*)", "bool*(SystemLogEntity*)", "DropdownMenuItem<@>*(@)", "~(ImageInfo,bool)", "Future*(@)", "PointerInterceptor*(BuildContext*)", "num*(@,int*)", "Widget*(CompanyEntity*)", "Color0*(@,int*)", "ImageStreamCompleter()", "Drag?(Offset)", "Align*(List<@>*)", "ExpenseEntity*(@)", "~(ImageChunkEvent)", "Text*(@)", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,ListUIState*,BuiltMap*,BuiltMap*,StaticState*)", "~(bool(String))", "List?(int?)", "Null(List<@>*)", "Null(PointerHoverEvent*)", "Null(BuiltList*)", "TaxRateEntity*()", "bool*(TaxRateEntity*)", "ScrollPosition()", "Null(EmailTemplate*)", "Null(String*,String*,String*,String*,String*)", "Null(DocumentStateBuilder*)", "DocumentEntityBuilder*(DocumentEntityBuilder*)", "~(Rect)", "bool(Rule)", "DocumentEntity*(String*)", "~(Offset)", "~(RandomAccessFile)", "bool(InlineSpanSemanticsInformation)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "Widget(BuildContext,Object?,ScrollController?)", "Widget(BuildContext,bool)", "~(String,String?)", "~(Symbol0,@)", "Null(ProgressEvent)", "int*(ExpenseEntity*,ExpenseEntity*)", "List()", "List*(BuiltMap*,BuiltMap*)", "PaymentEntity*(PaymentEntity*,@)", "GroupEntity*(GroupEntity*,@)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*)", "Future(RandomAccessFile)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*,BuiltMap*)", "LicenseEntry(int)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "bool(BoxHitTestResult)", "MapBuilder*>*(MapBuilder*>*)", "String(num?)", "bool*(SelectableEntity*)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "~(GestureMode)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,@)", "int(String?)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "MapBuilder*>*(MapBuilder*>*)", "DesignEntity*(DesignEntity*,@)", "WebhookEntity*(WebhookEntity*,@)", "VendorEntity*(VendorEntity*,@)", "List(_SemanticsSortGroup)", "~(BuildContext)", "Widget(Widget,Animation0)", "InvoiceEntity*(InvoiceEntity*,UpdateCreditItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteCreditItem*)", "InvoiceEntity*(InvoiceEntity*,AddCreditItem*)", "_Channel()", "String*(String*,ShowPdfCredit*)", "String*(String*,ShowPdfQuote*)", "double*(PaymentableEntity*)", "~([~])", "int(LayoutView,LayoutView)", "~([String*])", "bool(LayoutView)", "Null(MapEntry*)", "List*()", "Null(PrintingInfo)", "Future(ByteData?)", "RefreshIndicator*(BuildContext*)", "ListBuilder*()", "bool(DraggableScrollableNotification)", "~(RestorationBucket)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "PaymentableEntity*(BaseEntity*)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "Map()", "MapBuilder*()", "ListBuilder*()", "Null(BuildContext*,String*,String*,String*)", "Future<~>(BuildContext,Uint8List/(PdfPageFormat),PdfPageFormat)", "CompanyGatewayEntity*(@)", "ProductListItem*(BuildContext*,int*)", "PopupMenuItem*(String*)", "UserSettingsEntityBuilder*(UserSettingsEntityBuilder*)", "ListBuilder*()", "List*>*(BuildContext*)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "MapBuilder*()", "ListBuilder*()", "ListBuilder*()", "CompanyGatewayEntity*(CompanyGatewayEntity*,@)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "UserEntity*(UserEntity*,@)", "InkWell*(String*)", "Container*(BuildContext*,int*)", "int*(BaseEntity*,BaseEntity*)", "List*>*(BuildContext*)", "TokenEntity*(TokenEntity*,@)", "~(GestureListener)", "num?(int?)", "bool(ChartBehavior<@>)", "Element2(int)", "bool*(ProductEntity*)", "Object?(DismissIntent)", "MapBuilder*()", "ReportSettingsEntityBuilder*(ReportSettingsEntityBuilder*)", "bool*(GatewayTokenEntity*)", "~(ChartBehavior<@>)", "Null(VendorContactEntity*)", "EntityStats*(String*,BuiltMap*)", "~(Uint8List,String,int)", "List()", "bool(Delimiter)", "Completer*(Completer*,EditClient*)", "KeyData()", "bool(InlineSyntax)", "bool(BlockSyntax)", "Future*(Response*)", "String(Node3)", "Completer*(Completer*,EditVendor*)", "~([Object?])", "String*(ProjectEntityBuilder*)", "String*(PaymentEntityBuilder*)", "MapBuilder*()", "~(Object[StackTrace?])", "Null(UserCompanyEntity*)", "~(LinkifyElement)", "bool(DisplayFeature)", "Size(RenderBox,BoxConstraints)", "bool*(HistoryRecord*)", "bool*(CompanyEntity*)", "bool*(bool*,DismissNativeWarningPermanently*)", "UserEntity*(@)", "~(PersistenceRepository*)", "Future<~>(~(FlutterApp),~(Object?))", "Future(String,Map)", "Widget*(BuildContext*,DocumentSelection*,Widget*)", "UIStateBuilder*(UIStateBuilder*)", "~(ScaleStartDetails)", "~(ScaleUpdateDetails)", "PaymentRefundScreen*(BuildContext*)", "PaymentEditScreen*(BuildContext*)", "~(ScaleEndDetails)", "TaskTimeBuilder*(TaskTimeBuilder*)", "~(num)", "String*(Match*)", "bool(BuildContext)", "MediaQuery*(BuildContext*,Widget*)", "VendorContactEntityBuilder*(VendorContactEntityBuilder*)", "bool(RenderBox)", "VendorContactEntity*()", "AppSidebarMode*(AppSidebarMode*,UpdateUserPreferences*)", "MainScreen*(BuildContext*)", "PrefStateBuilder*(PrefStateBuilder*)", "LoginScreen*(BuildContext*)", "bool*(SubscriptionEntityBuilder*)", "bool(Color)", "Route<@>*(RouteSettings*)", "SurfaceScene()", "Null(String*,@)", "StyledToast*(BuildContext*)", "int*(TaskTime*,TaskTime*)", "Locale*(String*)", "ChangeLayoutBanner*(BuildContext*)", "ProductScreenBuilder*(BuildContext*)", "ProductViewScreen*(BuildContext*)", "ProductEditScreen*(BuildContext*)", "ClientScreenBuilder*(BuildContext*)", "ClientViewScreen*(BuildContext*)", "ClientEditScreen*(BuildContext*)", "ClientPdfScreen*(BuildContext*)", "InvoiceScreenBuilder*(BuildContext*)", "InvoiceViewScreen*(BuildContext*)", "InvoiceEditScreen*(BuildContext*)", "InvoiceEmailScreen*(BuildContext*)", "InvoicePdfScreen*(BuildContext*)", "DocumentScreenBuilder*(BuildContext*)", "DocumentViewScreen*(BuildContext*)", "DocumentEditScreen*(BuildContext*)", "ExpenseScreenBuilder*(BuildContext*)", "ExpenseViewScreen*(BuildContext*)", "ExpenseEditScreen*(BuildContext*)", "VendorScreenBuilder*(BuildContext*)", "VendorViewScreen*(BuildContext*)", "VendorEditScreen*(BuildContext*)", "TaskScreenBuilder*(BuildContext*)", "TaskViewScreen*(BuildContext*)", "TaskEditScreen*(BuildContext*)", "ProjectScreenBuilder*(BuildContext*)", "ProjectViewScreen*(BuildContext*)", "ProjectEditScreen*(BuildContext*)", "PaymentScreenBuilder*(BuildContext*)", "PaymentViewScreen*(BuildContext*)", "MapBuilder*()", "MapBuilder*()", "QuoteScreenBuilder*(BuildContext*)", "QuoteViewScreen*(BuildContext*)", "QuoteEditScreen*(BuildContext*)", "QuoteEmailScreen*(BuildContext*)", "QuotePdfScreen*(BuildContext*)", "PurchaseOrderScreenBuilder*(BuildContext*)", "PurchaseOrderViewScreen*(BuildContext*)", "PurchaseOrderEditScreen*(BuildContext*)", "RecurringExpenseScreenBuilder*(BuildContext*)", "RecurringExpenseViewScreen*(BuildContext*)", "RecurringExpenseEditScreen*(BuildContext*)", "SubscriptionScreenBuilder*(BuildContext*)", "SubscriptionViewScreen*(BuildContext*)", "SubscriptionEditScreen*(BuildContext*)", "TaskStatusScreenBuilder*(BuildContext*)", "TaskStatusViewScreen*(BuildContext*)", "TaskStatusEditScreen*(BuildContext*)", "ExpenseCategoryScreenBuilder*(BuildContext*)", "ExpenseCategoryViewScreen*(BuildContext*)", "ExpenseCategoryEditScreen*(BuildContext*)", "RecurringInvoiceScreenBuilder*(BuildContext*)", "RecurringInvoiceViewScreen*(BuildContext*)", "RecurringInvoiceEditScreen*(BuildContext*)", "RecurringInvoicePdfScreen*(BuildContext*)", "WebhookScreenBuilder*(BuildContext*)", "WebhookViewScreen*(BuildContext*)", "WebhookEditScreen*(BuildContext*)", "TokenScreenBuilder*(BuildContext*)", "TokenViewScreen*(BuildContext*)", "TokenEditScreen*(BuildContext*)", "PaymentTermScreenBuilder*(BuildContext*)", "PaymentTermEditScreen*(BuildContext*)", "PaymentTermViewScreen*(BuildContext*)", "DesignScreenBuilder*(BuildContext*)", "DesignViewScreen*(BuildContext*)", "DesignEditScreen*(BuildContext*)", "CreditScreenBuilder*(BuildContext*)", "CreditViewScreen*(BuildContext*)", "CreditEditScreen*(BuildContext*)", "CreditEmailScreen*(BuildContext*)", "CreditPdfScreen*(BuildContext*)", "UserScreenBuilder*(BuildContext*)", "UserViewScreen*(BuildContext*)", "UserEditScreen*(BuildContext*)", "GroupScreenBuilder*(BuildContext*)", "GroupViewScreen*(BuildContext*)", "GroupEditScreen*(BuildContext*)", "SettingsScreenBuilder*(BuildContext*)", "ReportsScreenBuilder*(BuildContext*)", "CompanyDetailsScreen*(BuildContext*)", "UserDetailsScreen*(BuildContext*)", "LocalizationScreen*(BuildContext*)", "PaymentsSettingsScreen*(BuildContext*)", "CompanyGatewayScreenBuilder*(BuildContext*)", "CompanyGatewayViewScreen*(BuildContext*)", "CompanyGatewayEditScreen*(BuildContext*)", "TaxSettingsScreen*(BuildContext*)", "TaxRateScreenBuilder*(BuildContext*)", "TaxRateViewScreen*(BuildContext*)", "TaxRateEditScreen*(BuildContext*)", "ProductSettingsScreen*(BuildContext*)", "ExpenseSettingsScreen*(BuildContext*)", "TaskSettingsScreen*(BuildContext*)", "ImportExportScreen*(BuildContext*)", "DeviceSettingsScreen*(BuildContext*)", "AccountManagementScreen*(BuildContext*)", "CustomFieldsScreen*(BuildContext*)", "GeneratedNumbersScreen*(BuildContext*)", "WorkflowSettingsScreen*(BuildContext*)", "InvoiceDesignScreen*(BuildContext*)", "ClientPortalScreen*(BuildContext*)", "EmailSettingsScreen*(BuildContext*)", "TemplatesAndRemindersScreen*(BuildContext*)", "CreditCardsAndBanksScreen*(BuildContext*)", "DataVisualizationsScreen*(BuildContext*)", "MapBuilder*()", "MapBuilder*()", "int(PaintRequest,PaintRequest)", "MapBuilder*()", "MapBuilder*()", "int(_PersistedSurfaceMatch,_PersistedSurfaceMatch)", "MapBuilder*()", "~(JsUrlStrategy?)", "MapBuilder*()", "Future*(SharedPreferences*)", "MapBuilder*()", "MapBuilder*()", "String*(String*,ClearLastError*)", "String*(String*,LoadClientsFailure*)", "String*(String*,LoadProductsFailure*)", "String*(String*,LoadInvoicesFailure*)", "String*(String*,LoadPaymentsFailure*)", "String*(String*,LoadQuotesFailure*)", "String*(String*,LoadProjectsFailure*)", "String*(String*,LoadTasksFailure*)", "String*(String*,LoadVendorsFailure*)", "String*(String*,LoadExpensesFailure*)", "String*(String*,LoadPurchaseOrdersFailure*)", "String*(String*,LoadRecurringExpensesFailure*)", "String*(String*,LoadSubscriptionsFailure*)", "String*(String*,LoadTaskStatusesFailure*)", "String*(String*,LoadRecurringInvoicesFailure*)", "String*(String*,LoadWebhooksFailure*)", "String*(String*,LoadTokensFailure*)", "String*(String*,LoadPaymentTermsFailure*)", "String*(String*,LoadDesignsFailure*)", "String*(String*,LoadCreditsFailure*)", "String*(String*,RefreshDataFailure*)", "bool*(bool*,DismissNativeWarning*)", "MapBuilder*()", "UserCompanyState*(int*)", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "Null(UserCompanyState*)", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "_MergClientPicker*(BuildContext*)", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "Promise<1&>([InitializeEngineFnParameters?])", "Null(BuiltList*)", "ClientUIStateBuilder*(ClientUIStateBuilder*)", "bool*(bool*,ViewClient*)", "bool*(bool*,ViewClientList*)", "bool*(bool*,FilterClientsByState*)", "bool*(bool*,FilterClients*)", "bool*(bool*,FilterClientsByCustom1*)", "bool*(bool*,FilterClientsByCustom2*)", "bool*(bool*,FilterClientsByCustom3*)", "bool*(bool*,FilterClientsByCustom4*)", "int*(int*,UpdateClientTab*)", "MapBuilder*()", "MapBuilder*()", "ClientContactEntity*(ClientContactEntity*,EditClient*)", "ClientContactEntity*(ClientContactEntity*,EditContact*)", "String*(String*,ArchiveClientsSuccess*)", "String*(String*,DeleteClientsSuccess*)", "~(int,bool(FlutterHtmlKeyboardEvent))", "String*(String*,ViewClient*)", "String*(String*,AddClientSuccess*)", "String*(String*,ShowPdfClient*)", "bool(int,int)", "Future<~>(~(FlutterAppRunner),~(Object?))", "String*(String*,SortClients*)", "String*(String*,FilterClients*)", "String*(String*,FilterClientsByState*)", "String*(String*,FilterClientsByCustom1*)", "String*(String*,FilterClientsByCustom2*)", "String*(String*,FilterClientsByCustom3*)", "String*(String*,FilterClientsByCustom4*)", "MapBuilder*()", "Null(ByteData)", "ClientEntity*(ClientEntity*,SaveClientSuccess*)", "ClientEntity*(ClientEntity*,AddClientSuccess*)", "ClientEntity*(ClientEntity*,RestoreClientSuccess*)", "ClientEntity*(ClientEntity*,ArchiveClientsSuccess*)", "ClientEntity*(ClientEntity*,DeleteClientsSuccess*)", "ClientEntity*(ClientEntity*,EditClient*)", "ClientEntity*(ClientEntity*,UpdateClient*)", "ClientEntity*(ClientEntity*,AddContact*)", "ClientEntity*(ClientEntity*,DeleteContact*)", "ClientEntity*(ClientEntity*,UpdateContact*)", "ClientEntity*(ClientEntity*,ViewClient*)", "ClientEntity*(ClientEntity*,ViewClientList*)", "ClientEntity*(ClientEntity*,SelectCompany*)", "ClientEntity*(ClientEntity*,DiscardChanges*)", "~(Element2)", "MapBuilder*()", "MapBuilder*()", "List*(BuiltMap*,BuiltList*,BuiltMap*,StaticState*)", "~(List<@>,MutationObserver)", "MapBuilder*()", "MapBuilder*()", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,ListUIState*,BuiltMap*,StaticState*)", "MapBuilder*()", "Element2()", "ClientEntity*(@)", "UserCompanyStateBuilder*(UserCompanyStateBuilder*)", "UserCompanyEntity*(UserCompanyEntity*,UpdateReportSettings*)", "~(Iterable)", "MapBuilder*()", "UserCompanyEntity*(UserCompanyEntity*,SaveAuthUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,ConnecOAuthUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,ConnecGmailUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,DisableTwoFactorSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,SaveUserSettingsSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,UpdateCompanyLanguage*)", "CompanyEntityBuilder*(UserCompanyEntityBuilder*)", "int*(int*,LoadCompanySuccess*)", "int*(int*,LoadExpensesSuccess*)", "List*(BuiltMap*,BuiltList*)", "bool*(CompanyEntity*,BuiltMap*,BuiltMap*)", "List*(CompanyEntity*,BuiltMap*,BuiltMap*)", "List*(String*,UserCompanyState*)", "MapBuilder*>*()", "ListBuilder*()", "bool*(ClientEntity*)", "_ButtonSanitizer()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*>*()", "ListBuilder*()", "bool*(ProjectEntity*)", "ListBuilder*()", "bool*(TaskEntity*)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "Null(BuiltList*)", "CompanyGatewayUIStateBuilder*(CompanyGatewayUIStateBuilder*)", "bool*(bool*,ViewCompanyGateway*)", "bool*(bool*,ViewCompanyGatewayList*)", "bool*(bool*,FilterCompanyGatewaysByState*)", "bool*(bool*,FilterCompanyGateways*)", "bool*(bool*,FilterCompanyGatewaysByCustom1*)", "bool*(bool*,FilterCompanyGatewaysByCustom2*)", "bool*(bool*,FilterCompanyGatewaysByCustom3*)", "bool*(bool*,FilterCompanyGatewaysByCustom4*)", "String*(String*,ArchiveCompanyGatewaySuccess*)", "String*(String*,DeleteCompanyGatewaySuccess*)", "String*(String*,ViewCompanyGateway*)", "String*(String*,AddCompanyGatewaySuccess*)", "String*(String*,SortCompanyGateways*)", "String*(String*,FilterCompanyGateways*)", "String*(String*,FilterCompanyGatewaysByState*)", "String*(String*,FilterCompanyGatewaysByCustom1*)", "String*(String*,FilterCompanyGatewaysByCustom2*)", "String*(String*,FilterCompanyGatewaysByCustom3*)", "String*(String*,FilterCompanyGatewaysByCustom4*)", "CompanyGatewayEntity*(CompanyGatewayEntity*,RestoreCompanyGatewaySuccess*)", "CompanyGatewayEntity*(CompanyGatewayEntity*,ArchiveCompanyGatewaySuccess*)", "CompanyGatewayEntity*(CompanyGatewayEntity*,DeleteCompanyGatewaySuccess*)", "CompanyGatewayEntity*(CompanyGatewayEntity*,UpdateCompanyGateway*)", "ListBuilder*()", "~(Event?)", "ListBuilder*()", "List*(BuiltMap*,BuiltList*,ListUIState*,String*,bool*)", "double*(String*,BuiltMap*)", "ListBuilder*()", "EntityStats*(String*,BuiltMap*)", "Null(String*,CompanyGatewayEntity*)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "Null(SkDeletable)", "Map*()", "CreditUIStateBuilder*(CreditUIStateBuilder*)", "bool*(bool*,ViewCredit*)", "bool*(bool*,ViewCreditList*)", "bool*(bool*,FilterCreditsByState*)", "bool*(bool*,FilterCredits*)", "bool*(bool*,FilterCreditsByCustom1*)", "bool*(bool*,FilterCreditsByCustom2*)", "bool*(bool*,FilterCreditsByCustom3*)", "bool*(bool*,FilterCreditsByCustom4*)", "int*(int*,UpdateCreditTab*)", "double*(double*,double*)", "int*(int*,EditCredit*)", "int*(int*,EditCreditItem*)", "String*(String*,ArchiveCreditsSuccess*)", "String*(String*,DeleteCreditsSuccess*)", "String*(String*,ViewCredit*)", "String*(String*,AddCreditSuccess*)", "String*(String*,ShowEmailCredit*)", "String*(String*,SortCredits*)", "String*(String*,FilterCredits*)", "String*(String*,FilterCreditsByState*)", "String*(String*,FilterCreditsByStatus*)", "String*(String*,FilterCreditsByCustom1*)", "String*(String*,FilterCreditsByCustom2*)", "String*(String*,FilterCreditsByCustom3*)", "String*(String*,FilterCreditsByCustom4*)", "InvoiceEntity*(InvoiceEntity*,UpdateCredit*)", "InvoiceHistoryEntity*(ActivityEntity*)", "InvoiceEntity*(InvoiceEntity*,MoveCreditItem*)", "InvitationEntity*(InvitationEntity*)", "Null(String)", "InvoiceEntity*(InvoiceEntity*,UpdateCreditClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddCreditContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveCreditContact*)", "_PointerState()", "Promise<1&>()", "Null(String*,GatewayOptionsEntity*)", "SkTextStyle()", "List*(BuiltMap*,BuiltMap*,BuiltMap*,BuiltList*,String*,BuiltMap*,List*)", "~(Surface)", "bool(SurfaceFrame,CkCanvas)", "Incrementable(SemanticsObject)", "DashboardUIStateBuilder*(DashboardUIStateBuilder*)", "BuiltMap*>*(BuiltMap*>*,UpdateDashboardSelection*)", "String(NumberSymbols)", "BuiltMap*>*(BuiltMap*>*,SelectCompany*)", "EntityType*(EntityType*,UpdateDashboardEntityType*)", "bool*(bool*,UpdateDashboardSidebar*)", "String?(NumberSymbols)", "_DateFormatLiteralField(String,DateFormat)", "_DateFormatPatternField(String,DateFormat)", "_DateFormatQuotedField(String,DateFormat)", "bool(_DateFormatField)", "Null(String*,Duration*)", "Scrollable0(SemanticsObject)", "DateTime(int,int,int,int,int,int,int,bool)", "List*(BuiltMap*,String*)", "RegExp()", "List(String)", "List*(BuiltMap*,BuiltMap*)", "int*(PaymentEntity*,PaymentEntity*)", "XFile(File)", "MediaType()", "List*(BuiltMap*,BuiltMap*)", "String(List)", "int(String)", "bool(String,String)", "Future(Client0)", "Future(Client0)", "Null(BuiltList*)", "DesignUIStateBuilder*(DesignUIStateBuilder*)", "bool*(bool*,ViewDesign*)", "bool*(bool*,ViewDesignList*)", "bool*(bool*,FilterDesignsByState*)", "bool*(bool*,FilterDesigns*)", "bool*(bool*,FilterDesignsByCustom1*)", "bool*(bool*,FilterDesignsByCustom2*)", "bool*(bool*,FilterDesignsByCustom3*)", "bool*(bool*,FilterDesignsByCustom4*)", "String*(String*,ArchiveDesignsSuccess*)", "String*(String*,DeleteDesignsSuccess*)", "LabelAndValue(SemanticsObject)", "String*(String*,SortDesigns*)", "String*(String*,FilterDesigns*)", "String*(String*,FilterDesignsByState*)", "String*(String*,FilterDesignsByCustom1*)", "String*(String*,FilterDesignsByCustom2*)", "String*(String*,FilterDesignsByCustom3*)", "String*(String*,FilterDesignsByCustom4*)", "DesignEntity*(DesignEntity*,RestoreDesignsSuccess*)", "DesignEntity*(DesignEntity*,ArchiveDesignsSuccess*)", "DesignEntity*(DesignEntity*,DeleteDesignsSuccess*)", "DesignEntity*(DesignEntity*,UpdateDesign*)", "~(Node0)", "String?(RegExpMatch)", "List*(BuiltMap*,BuiltList*,ListUIState*)", "DesignEntity*(@)", "Rule()", "int(String?,String?)", "Tappable(SemanticsObject)", "Null(BuiltList*)", "DocumentUIStateBuilder*(DocumentUIStateBuilder*)", "bool*(bool*,ViewDocument*)", "bool*(bool*,ViewDocumentList*)", "bool*(bool*,FilterDocumentsByState*)", "bool*(bool*,FilterDocuments*)", "bool*(bool*,FilterDocumentsByCustom1*)", "bool*(bool*,FilterDocumentsByCustom2*)", "bool*(bool*,FilterDocumentsByCustom3*)", "bool*(bool*,FilterDocumentsByCustom4*)", "String*(String*,ArchiveDocumentSuccess*)", "String*(String*,DeleteDocumentSuccess*)", "String*(String*,ViewDocument*)", "String*(String*,SortDocuments*)", "String*(String*,FilterDocuments*)", "String*(String*,FilterDocumentsByState*)", "String*(String*,FilterDocumentsByCustom1*)", "String*(String*,FilterDocumentsByCustom2*)", "String*(String*,FilterDocumentsByCustom3*)", "String*(String*,FilterDocumentsByCustom4*)", "DocumentEntity*(DocumentEntity*,UpdateDocument*)", "~(Rule)", "~(CanvasKit)", "List()", "DocumentEntity*(@)", "List*(BuiltMap*,BuiltList*,ListUIState*)", "Map>()", "InvoiceItemEntity*(BaseEntity*)", "bool(Selector)", "bool(Set)", "String(StringToken)", "~(Element)", "ExpenseUIStateBuilder*(ExpenseUIStateBuilder*)", "bool*(bool*,ViewExpense*)", "bool*(bool*,ViewExpenseList*)", "bool*(bool*,FilterExpensesByState*)", "bool*(bool*,FilterExpenses*)", "bool*(bool*,FilterExpensesByCustom1*)", "bool*(bool*,FilterExpensesByCustom2*)", "bool*(bool*,FilterExpensesByCustom3*)", "bool*(bool*,FilterExpensesByCustom4*)", "int*(int*,UpdateExpenseTab*)", "String*(String*,ArchiveExpenseSuccess*)", "String*(String*,DeleteExpenseSuccess*)", "String*(String*,ViewExpense*)", "String*(String*,AddExpenseSuccess*)", "String*(String*,SortExpenses*)", "String*(String*,FilterExpenses*)", "String*(String*,FilterExpensesByState*)", "String*(String*,FilterExpensesByStatus*)", "String*(String*,FilterExpensesByCustom1*)", "String*(String*,FilterExpensesByCustom2*)", "String*(String*,FilterExpensesByCustom3*)", "String*(String*,FilterExpensesByCustom4*)", "ExpenseEntity*(ExpenseEntity*,RestoreExpenseSuccess*)", "ExpenseEntity*(ExpenseEntity*,ArchiveExpenseSuccess*)", "ExpenseEntity*(ExpenseEntity*,DeleteExpenseSuccess*)", "ExpenseEntity*(ExpenseEntity*,UpdateExpense*)", "Null(GoogleAuthInitFailureError)", "Null(GoogleAuth)", "InvoiceEntity*(ExpenseEntity*,BuiltMap*)", "GoogleSignInTokenData(Map?)", "GoogleSignInAccount?/(~)", "List*(BuiltMap*,String*)", "Future<~>(String,ByteData?,~(ByteData?)?)", "~(ToastFuture)", "IgnorePointer(BuildContext)", "~(SlidableAutoCloseBarrierNotification)", "Null(BuiltList*)", "ExpenseCategoryUIStateBuilder*(ExpenseCategoryUIStateBuilder*)", "bool*(bool*,ViewExpenseCategory*)", "bool*(bool*,ViewExpenseCategoryList*)", "bool*(bool*,FilterExpenseCategoriesByState*)", "bool*(bool*,FilterExpenseCategories*)", "bool*(bool*,FilterExpenseCategoriesByCustom1*)", "bool*(bool*,FilterExpenseCategoriesByCustom2*)", "bool*(bool*,FilterExpenseCategoriesByCustom3*)", "bool*(bool*,FilterExpenseCategoriesByCustom4*)", "String*(String*,ArchiveExpenseCategoriesSuccess*)", "String*(String*,DeleteExpenseCategoriesSuccess*)", "String*(String*,SortExpenseCategories*)", "String*(String*,FilterExpenseCategories*)", "String*(String*,FilterExpenseCategoriesByState*)", "String*(String*,FilterExpenseCategoriesByCustom1*)", "String*(String*,FilterExpenseCategoriesByCustom2*)", "String*(String*,FilterExpenseCategoriesByCustom3*)", "String*(String*,FilterExpenseCategoriesByCustom4*)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,RestoreExpenseCategoriesSuccess*)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,ArchiveExpenseCategoriesSuccess*)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,DeleteExpenseCategoriesSuccess*)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,UpdateExpenseCategory*)", "~(SlidableAutoCloseNotification)", "Flexible(Widget)", "~(Object,StackTrace,Object?)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "double*(String*,BuiltMap*)", "ExpenseCategoryEntity*(@)", "~(String,Map)", "SynchronousFuture()", "SynchronousFuture()", "Null(BuiltList*)", "GroupUIStateBuilder*(GroupUIStateBuilder*)", "bool*(bool*,ViewGroup*)", "bool*(bool*,ViewGroupList*)", "bool*(bool*,FilterGroupsByState*)", "bool*(bool*,FilterGroups*)", "String*(String*,ArchiveGroupSuccess*)", "String*(String*,DeleteGroupSuccess*)", "String*(String*,ViewGroup*)", "String*(String*,AddGroupSuccess*)", "String*(String*,SortGroups*)", "String*(String*,FilterGroups*)", "String*(String*,FilterGroupsByState*)", "GroupEntity*(GroupEntity*,RestoreGroupSuccess*)", "GroupEntity*(GroupEntity*,ArchiveGroupSuccess*)", "GroupEntity*(GroupEntity*,DeleteGroupSuccess*)", "GroupEntity*(GroupEntity*,UpdateGroup*)", "Widget(Color)", "List(List)", "Future<~>(CacheObject?)", "CacheInfoRepository(bool)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "EntityStats*(BuiltMap*,String*)", "InvoiceUIStateBuilder*(InvoiceUIStateBuilder*)", "bool*(bool*,ViewInvoice*)", "bool*(bool*,ViewInvoiceList*)", "bool*(bool*,FilterInvoicesByState*)", "bool*(bool*,FilterInvoices*)", "bool*(bool*,FilterInvoicesByCustom1*)", "bool*(bool*,FilterInvoicesByCustom2*)", "bool*(bool*,FilterInvoicesByCustom3*)", "bool*(bool*,FilterInvoicesByCustom4*)", "int*(int*,UpdateInvoiceTab*)", "~(ForcePressGestureRecognizer)", "int*(int*,EditInvoice*)", "int*(int*,EditInvoiceItem*)", "String*(String*,ArchiveInvoicesSuccess*)", "String*(String*,DeleteInvoicesSuccess*)", "String*(String*,ViewInvoice*)", "String*(String*,AddInvoiceSuccess*)", "String*(String*,ShowEmailInvoice*)", "String*(String*,SortInvoices*)", "String*(String*,FilterInvoices*)", "String*(String*,FilterInvoicesByState*)", "String*(String*,FilterInvoicesByStatus*)", "String*(String*,FilterInvoicesByCustom1*)", "String*(String*,FilterInvoicesByCustom2*)", "String*(String*,FilterInvoicesByCustom3*)", "String*(String*,FilterInvoicesByCustom4*)", "InvoiceEntity*(InvoiceEntity*,UpdateInvoice*)", "ForcePressGestureRecognizer()", "InvoiceEntity*(InvoiceEntity*,MoveInvoiceItem*)", "~(DragStartDetails,DragUpdateDetails)", "List(_TableElementRow)", "InvoiceEntity*(InvoiceEntity*,UpdateInvoiceClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddInvoiceContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveInvoiceContact*)", "RenderBox(Element0)", "Iterable(_TableElementRow)", "InvoiceEntity*(InvoiceEntity*,BuiltMap*)", "List*(BuiltMap*,BuiltMap*,BuiltMap*,BuiltList*,String*,BuiltMap*,List*,String*)", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,BuiltMap*,ListUIState*,BuiltMap*,String*)", "bool(List)", "bool(_TableElementRow)", "Element0(Widget)", "Null(BuiltList*)", "PaymentUIStateBuilder*(PaymentUIStateBuilder*)", "bool*(bool*,ViewPayment*)", "bool*(bool*,ViewPaymentList*)", "bool*(bool*,FilterPaymentsByState*)", "bool*(bool*,FilterPayments*)", "bool*(bool*,FilterPaymentsByCustom1*)", "bool*(bool*,FilterPaymentsByCustom2*)", "bool*(bool*,FilterPaymentsByCustom3*)", "bool*(bool*,FilterPaymentsByCustom4*)", "int*(int*,UpdatePaymentTab*)", "String*(String*,ArchivePaymentsSuccess*)", "String*(String*,DeletePaymentsSuccess*)", "String*(String*,ViewPayment*)", "String*(String*,AddPaymentSuccess*)", "String*(String*,SortPayments*)", "String*(String*,FilterPayments*)", "String*(String*,FilterPaymentsByState*)", "String*(String*,FilterPaymentsByCustom1*)", "String*(String*,FilterPaymentsByCustom2*)", "String*(String*,FilterPaymentsByCustom3*)", "String*(String*,FilterPaymentsByCustom4*)", "PaymentEntity*(PaymentEntity*,RestorePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,ArchivePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,DeletePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,UpdatePayment*)", "_TableElementRow(TableRow)", "Decoration?(TableRow)", "bool(TableRow)", "Element0?()", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,ListUIState*)", "EntityStats*(String*,BuiltMap*,BuiltMap*)", "PaymentEntity*(@)", "~(RenderBox)", "_SingleChildViewport(BuildContext,ViewportOffset)", "List<_ActivatorIntentPair>()", "Null(BuiltList*)", "PaymentTermUIStateBuilder*(PaymentTermUIStateBuilder*)", "bool*(bool*,ViewPaymentTerm*)", "bool*(bool*,ViewPaymentTermList*)", "bool*(bool*,FilterPaymentTermsByState*)", "bool*(bool*,FilterPaymentTerms*)", "bool*(bool*,FilterPaymentTermsByCustom1*)", "bool*(bool*,FilterPaymentTermsByCustom2*)", "bool*(bool*,FilterPaymentTermsByCustom3*)", "bool*(bool*,FilterPaymentTermsByCustom4*)", "String*(String*,ArchivePaymentTermsSuccess*)", "String*(String*,DeletePaymentTermsSuccess*)", "String*(String*,SortPaymentTerms*)", "String*(String*,FilterPaymentTerms*)", "String*(String*,FilterPaymentTermsByState*)", "String*(String*,FilterPaymentTermsByCustom1*)", "String*(String*,FilterPaymentTermsByCustom2*)", "String*(String*,FilterPaymentTermsByCustom3*)", "String*(String*,FilterPaymentTermsByCustom4*)", "PaymentTermEntity*(PaymentTermEntity*,RestorePaymentTermsSuccess*)", "PaymentTermEntity*(PaymentTermEntity*,ArchivePaymentTermsSuccess*)", "PaymentTermEntity*(PaymentTermEntity*,DeletePaymentTermsSuccess*)", "PaymentTermEntity*(PaymentTermEntity*,UpdatePaymentTerm*)", "~(ShortcutActivator,Intent)", "List(LogicalKeyboardKey)", "~(PointerHoverEvent)", "~(_TrackTapGestureRecognizer)", "List*(BuiltMap*,BuiltList*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "_TrackTapGestureRecognizer()", "~(_ThumbPressGestureRecognizer)", "_ThumbPressGestureRecognizer()", "Null(BuiltList*)", "ProductUIStateBuilder*(ProductUIStateBuilder*)", "bool*(bool*,ViewProduct*)", "bool*(bool*,ViewProductList*)", "bool*(bool*,FilterProductsByState*)", "bool*(bool*,FilterProducts*)", "bool*(bool*,FilterProductsByCustom1*)", "bool*(bool*,FilterProductsByCustom2*)", "bool*(bool*,FilterProductsByCustom3*)", "bool*(bool*,FilterProductsByCustom4*)", "int*(int*,UpdateProductTab*)", "ProductEntity*(ProductEntity*,UpdateProduct*)", "ProductEntity*(ProductEntity*,RestoreProductsSuccess*)", "ProductEntity*(ProductEntity*,ArchiveProductsSuccess*)", "ProductEntity*(ProductEntity*,DeleteProductsSuccess*)", "String*(String*,ArchiveProductsSuccess*)", "String*(String*,DeleteProductsSuccess*)", "String*(String*,ViewProduct*)", "String*(String*,AddProductSuccess*)", "String*(String*,SortProducts*)", "String*(String*,FilterProducts*)", "String*(String*,FilterProductsByState*)", "String*(String*,FilterProductsByCustom1*)", "String*(String*,FilterProductsByCustom2*)", "String*(String*,FilterProductsByCustom3*)", "String*(String*,FilterProductsByCustom4*)", "bool(ScrollMetrics?)", "bool(ScrollUpdateNotification)", "List*(BuiltMap*,BuiltList*,BuiltMap*)", "List*(BuiltMap*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*)", "ProductEntity*(@)", "Widget(BuildContext,ViewportOffset)", "IOSScrollViewFlingVelocityTracker(PointerEvent)", "Null(BuiltList*)", "ProjectUIStateBuilder*(ProjectUIStateBuilder*)", "bool*(bool*,ViewProject*)", "bool*(bool*,ViewProjectList*)", "bool*(bool*,FilterProjectsByState*)", "bool*(bool*,FilterProjects*)", "bool*(bool*,FilterProjectsByCustom1*)", "bool*(bool*,FilterProjectsByCustom2*)", "bool*(bool*,FilterProjectsByCustom3*)", "bool*(bool*,FilterProjectsByCustom4*)", "int*(int*,UpdateProjectTab*)", "IgnorePointer(BuildContext,Widget?)", "String*(String*,ArchiveProjectSuccess*)", "String*(String*,DeleteProjectSuccess*)", "String*(String*,ViewProject*)", "String*(String*,AddProjectSuccess*)", "String*(String*,SortProjects*)", "String*(String*,FilterProjects*)", "String*(String*,FilterProjectsByState*)", "String*(String*,FilterProjectsByCustom1*)", "String*(String*,FilterProjectsByCustom2*)", "String*(String*,FilterProjectsByCustom3*)", "String*(String*,FilterProjectsByCustom4*)", "ProjectEntity*(ProjectEntity*,RestoreProjectSuccess*)", "ProjectEntity*(ProjectEntity*,ArchiveProjectSuccess*)", "ProjectEntity*(ProjectEntity*,DeleteProjectSuccess*)", "ProjectEntity*(ProjectEntity*,UpdateProject*)", "Actions(BuildContext)", "RestorationScope(BuildContext,Widget?)", "~(RestorableProperty)", "List*(BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,String*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*,BuiltMap*)", "Null(RestorationBucket?)", "Null(String*,ProjectEntity*)", "ProjectEntity*(@)", "PurchaseOrderUIStateBuilder*(PurchaseOrderUIStateBuilder*)", "bool*(bool*,ViewPurchaseOrder*)", "bool*(bool*,ViewPurchaseOrderList*)", "bool*(bool*,FilterPurchaseOrdersByState*)", "bool*(bool*,FilterPurchaseOrders*)", "bool*(bool*,FilterPurchaseOrdersByCustom1*)", "bool*(bool*,FilterPurchaseOrdersByCustom2*)", "bool*(bool*,FilterPurchaseOrdersByCustom3*)", "bool*(bool*,FilterPurchaseOrdersByCustom4*)", "int*(int*,UpdatePurchaseOrderTab*)", "~(_DragInfo,Offset,Offset)", "int*(int*,EditPurchaseOrder*)", "int*(int*,EditPurchaseOrderItem*)", "String*(String*,ArchivePurchaseOrdersSuccess*)", "String*(String*,DeletePurchaseOrdersSuccess*)", "String*(String*,ViewPurchaseOrder*)", "String*(String*,AddPurchaseOrderSuccess*)", "String*(String*,ShowEmailPurchaseOrder*)", "String*(String*,SortPurchaseOrders*)", "String*(String*,FilterPurchaseOrders*)", "String*(String*,FilterPurchaseOrdersByState*)", "String*(String*,FilterPurchaseOrdersByStatus*)", "String*(String*,FilterPurchaseOrdersByCustom1*)", "String*(String*,FilterPurchaseOrdersByCustom2*)", "String*(String*,FilterPurchaseOrdersByCustom3*)", "String*(String*,FilterPurchaseOrdersByCustom4*)", "InvoiceEntity*(InvoiceEntity*,UpdatePurchaseOrder*)", "Future<~>(PointerEvent)", "InvoiceEntity*(InvoiceEntity*,MovePurchaseOrderItem*)", "PlatformViewSurface(BuildContext,PlatformViewController)", "_HtmlElementViewController(PlatformViewCreationParams)", "InvoiceEntity*(InvoiceEntity*,UpdatePurchaseOrderVendor*)", "InvoiceEntity*(InvoiceEntity*,RestorePurchaseOrdersSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchivePurchaseOrdersSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeletePurchaseOrdersSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddPurchaseOrderContact*)", "InvoiceEntity*(InvoiceEntity*,RemovePurchaseOrderContact*)", "Viewport(BuildContext,ViewportOffset)", "ClipRect(BuildContext,Widget?)", "QuoteUIStateBuilder*(QuoteUIStateBuilder*)", "bool*(bool*,ViewQuote*)", "bool*(bool*,ViewQuoteList*)", "bool*(bool*,FilterQuotesByState*)", "bool*(bool*,FilterQuotes*)", "bool*(bool*,FilterQuotesByCustom1*)", "bool*(bool*,FilterQuotesByCustom2*)", "bool*(bool*,FilterQuotesByCustom3*)", "bool*(bool*,FilterQuotesByCustom4*)", "int*(int*,UpdateQuoteTab*)", "RenderBox?()", "int*(int*,EditQuote*)", "int*(int*,EditQuoteItem*)", "String*(String*,ArchiveQuotesSuccess*)", "String*(String*,DeleteQuotesSuccess*)", "String*(String*,ViewQuote*)", "String*(String*,AddQuoteSuccess*)", "String*(String*,ShowEmailQuote*)", "String*(String*,SortQuotes*)", "String*(String*,FilterQuotes*)", "String*(String*,FilterQuotesByState*)", "String*(String*,FilterQuotesByStatus*)", "String*(String*,FilterQuotesByCustom1*)", "String*(String*,FilterQuotesByCustom2*)", "String*(String*,FilterQuotesByCustom3*)", "String*(String*,FilterQuotesByCustom4*)", "InvoiceEntity*(InvoiceEntity*,UpdateQuote*)", "MapEntry>(@,@)", "InvoiceEntity*(InvoiceEntity*,MoveQuoteItem*)", "String(Object?)", "_RouteEntry(Route<@>)", "InvoiceEntity*(InvoiceEntity*,UpdateQuoteClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveQuoteContact*)", "bool(OverlayEntry)", "bool(Route<@>?)", "RecurringExpenseUIStateBuilder*(RecurringExpenseUIStateBuilder*)", "bool*(bool*,ViewRecurringExpense*)", "bool*(bool*,ViewRecurringExpenseList*)", "bool*(bool*,FilterRecurringExpensesByState*)", "bool*(bool*,FilterRecurringExpenses*)", "bool*(bool*,FilterRecurringExpensesByCustom1*)", "bool*(bool*,FilterRecurringExpensesByCustom2*)", "bool*(bool*,FilterRecurringExpensesByCustom3*)", "bool*(bool*,FilterRecurringExpensesByCustom4*)", "int*(int*,UpdateRecurringExpenseTab*)", "String*(String*,ArchiveRecurringExpensesSuccess*)", "String*(String*,DeleteRecurringExpensesSuccess*)", "String*(String*,SortRecurringExpenses*)", "String*(String*,FilterRecurringExpenses*)", "String*(String*,FilterRecurringExpensesByState*)", "String*(String*,FilterRecurringExpensesByCustom1*)", "String*(String*,FilterRecurringExpensesByCustom2*)", "String*(String*,FilterRecurringExpensesByCustom3*)", "String*(String*,FilterRecurringExpensesByCustom4*)", "ExpenseEntity*(ExpenseEntity*,RestoreRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,ArchiveRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,DeleteRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,UpdateRecurringExpense*)", "Null(Map)", "Map(Map)", "RecurringInvoiceUIStateBuilder*(RecurringInvoiceUIStateBuilder*)", "bool*(bool*,ViewRecurringInvoice*)", "bool*(bool*,ViewRecurringInvoiceList*)", "bool*(bool*,FilterRecurringInvoicesByState*)", "bool*(bool*,FilterRecurringInvoices*)", "bool*(bool*,FilterRecurringInvoicesByCustom1*)", "bool*(bool*,FilterRecurringInvoicesByCustom2*)", "bool*(bool*,FilterRecurringInvoicesByCustom3*)", "bool*(bool*,FilterRecurringInvoicesByCustom4*)", "int*(int*,UpdateRecurringInvoiceTab*)", "Map(List<@>)", "int*(int*,EditRecurringInvoice*)", "int*(int*,EditRecurringInvoiceItem*)", "String*(String*,ArchiveRecurringInvoicesSuccess*)", "String*(String*,DeleteRecurringInvoicesSuccess*)", "String*(String*,ViewRecurringInvoice*)", "String*(String*,AddRecurringInvoiceSuccess*)", "String*(String*,ShowEmailRecurringInvoice*)", "String*(String*,SortRecurringInvoices*)", "String*(String*,FilterRecurringInvoices*)", "String*(String*,FilterRecurringInvoicesByState*)", "String*(String*,FilterRecurringInvoicesByStatus*)", "String*(String*,FilterRecurringInvoicesByCustom1*)", "String*(String*,FilterRecurringInvoicesByCustom2*)", "String*(String*,FilterRecurringInvoicesByCustom3*)", "String*(String*,FilterRecurringInvoicesByCustom4*)", "InvoiceEntity*(InvoiceEntity*,UpdateRecurringInvoice*)", "Future<@>(_Pending)", "InvoiceEntity*(InvoiceEntity*,MoveRecurringInvoiceItem*)", "BorderRadiusTween(@)", "TextStyleTween(@)", "InvoiceEntity*(InvoiceEntity*,UpdateRecurringInvoiceClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddRecurringInvoiceContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveRecurringInvoiceContact*)", "Matrix4Tween(@)", "BoxConstraintsTween(@)", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*)", "~(Object,StackTrace?)", "IconTheme(BuildContext)", "bool(_HeroFlight)", "SettingsUIState*(SettingsUIState*,ViewSettings*)", "TextField0(SemanticsObject)", "SettingsUIState*(SettingsUIState*,UpdateCompany*)", "SettingsUIState*(SettingsUIState*,UpdateSettings*)", "SettingsUIState*(SettingsUIState*,UpdateUserSettings*)", "SettingsUIState*(SettingsUIState*,ResetSettings*)", "SettingsUIState*(SettingsUIState*,SaveCompanySuccess*)", "SettingsUIState*(SettingsUIState*,SaveGroupSuccess*)", "SettingsUIState*(SettingsUIState*,SaveClientSuccess*)", "SettingsUIState*(SettingsUIState*,SaveAuthUserSuccess*)", "SettingsUIState*(SettingsUIState*,FilterSettings*)", "SettingsUIState*(SettingsUIState*,ClearSettingsFilter*)", "SettingsUIState*(SettingsUIState*,UpdateSettingsTab*)", "SettingsUIState*(SettingsUIState*,UpdateSettingsTemplate*)", "SettingsUIState*(SettingsUIState*,UpdatedSetting*)", "StaticStateBuilder*(StaticStateBuilder*)", "CurrencyEntity*(@)", "SizeEntity*(@)", "IndustryEntity*(@)", "TimezoneEntity*(@)", "DateFormatEntity*(@)", "LanguageEntity*(@)", "PaymentTypeEntity*(@)", "CountryEntity*(@)", "GatewayEntity*(@)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "BuiltMap*(List<@>*)", "FontEntity*(@)", "Widget(BuildContext,Animation0,HeroFlightDirection,BuildContext,BuildContext)", "~(_HeroFlight)", "~(StatefulElement,Object)", "Null(BuiltList*)", "SubscriptionUIStateBuilder*(SubscriptionUIStateBuilder*)", "bool*(bool*,ViewSubscription*)", "bool*(bool*,ViewSubscriptionList*)", "bool*(bool*,FilterSubscriptionsByState*)", "bool*(bool*,FilterSubscriptions*)", "bool*(bool*,FilterSubscriptionsByCustom1*)", "bool*(bool*,FilterSubscriptionsByCustom2*)", "bool*(bool*,FilterSubscriptionsByCustom3*)", "bool*(bool*,FilterSubscriptionsByCustom4*)", "int*(int*,UpdateSubscriptionTab*)", "String*(String*,ArchiveSubscriptionsSuccess*)", "String*(String*,DeleteSubscriptionsSuccess*)", "String*(String*,SortSubscriptions*)", "String*(String*,FilterSubscriptions*)", "String*(String*,FilterSubscriptionsByState*)", "String*(String*,FilterSubscriptionsByCustom1*)", "String*(String*,FilterSubscriptionsByCustom2*)", "String*(String*,FilterSubscriptionsByCustom3*)", "String*(String*,FilterSubscriptionsByCustom4*)", "SubscriptionEntity*(SubscriptionEntity*,RestoreSubscriptionsSuccess*)", "SubscriptionEntity*(SubscriptionEntity*,ArchiveSubscriptionsSuccess*)", "SubscriptionEntity*(SubscriptionEntity*,DeleteSubscriptionsSuccess*)", "SubscriptionEntity*(SubscriptionEntity*,UpdateSubscription*)", "Checkable(SemanticsObject)", "~(RenderSemanticsGestureHandler)", "~(ScaleGestureRecognizer)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "SubscriptionEntity*(@)", "ScaleGestureRecognizer()", "~(DoubleTapGestureRecognizer)", "Null(BuiltList*)", "TaskUIStateBuilder*(TaskUIStateBuilder*)", "bool*(bool*,ViewTask*)", "bool*(bool*,ViewTaskList*)", "bool*(bool*,FilterTasksByState*)", "bool*(bool*,FilterTasks*)", "bool*(bool*,FilterTasksByCustom1*)", "bool*(bool*,FilterTasksByCustom2*)", "bool*(bool*,FilterTasksByCustom3*)", "bool*(bool*,FilterTasksByCustom4*)", "int*(int*,UpdateTaskTab*)", "int*(int*,UpdateKanban*)", "int*(int*,EditTask*)", "int*(int*,EditTaskTime*)", "String*(String*,ArchiveTaskSuccess*)", "String*(String*,DeleteTaskSuccess*)", "String*(String*,ViewTask*)", "String*(String*,AddTaskSuccess*)", "String*(String*,SortTasks*)", "String*(String*,FilterTasks*)", "String*(String*,FilterTasksByState*)", "String*(String*,FilterTasksByStatus*)", "String*(String*,FilterTasksByCustom1*)", "String*(String*,FilterTasksByCustom2*)", "String*(String*,FilterTasksByCustom3*)", "String*(String*,FilterTasksByCustom4*)", "TaskEntity*(TaskEntity*,RestoreTaskSuccess*)", "TaskEntity*(TaskEntity*,ArchiveTaskSuccess*)", "TaskEntity*(TaskEntity*,StartTasksSuccess*)", "TaskEntity*(TaskEntity*,StopTasksSuccess*)", "TaskEntity*(TaskEntity*,DeleteTaskSuccess*)", "TaskEntity*(TaskEntity*,UpdateTask*)", "DoubleTapGestureRecognizer()", "Object?(int,Element0?)", "List*(BuiltMap*,String*,BuiltMap*,BuiltMap*,BuiltMap*)", "Element0?(Element0)", "bool(FormFieldState<@>)", "TaskEntity*(@)", "bool(_ReadingOrderSortData)", "List<_ReadingOrderSortData>(_ReadingOrderSortData,Iterable<_ReadingOrderSortData>)", "int(_ReadingOrderDirectionalGroupData,_ReadingOrderDirectionalGroupData)", "Null(BuiltList*)", "TaskStatusUIStateBuilder*(TaskStatusUIStateBuilder*)", "bool*(bool*,ViewTaskStatus*)", "bool*(bool*,ViewTaskStatusList*)", "bool*(bool*,FilterTaskStatusesByState*)", "bool*(bool*,FilterTaskStatuses*)", "bool*(bool*,FilterTaskStatusesByCustom1*)", "bool*(bool*,FilterTaskStatusesByCustom2*)", "bool*(bool*,FilterTaskStatusesByCustom3*)", "bool*(bool*,FilterTaskStatusesByCustom4*)", "String*(String*,ArchiveTaskStatusesSuccess*)", "String*(String*,DeleteTaskStatusesSuccess*)", "String*(String*,SortTaskStatuses*)", "String*(String*,FilterTaskStatuses*)", "int?(Widget,int)", "String*(String*,FilterTaskStatusesByCustom1*)", "String*(String*,FilterTaskStatusesByCustom2*)", "String*(String*,FilterTaskStatusesByCustom3*)", "String*(String*,FilterTaskStatusesByCustom4*)", "TaskStatusEntity*(TaskStatusEntity*,RestoreTaskStatusesSuccess*)", "TaskStatusEntity*(TaskStatusEntity*,ArchiveTaskStatusesSuccess*)", "TaskStatusEntity*(TaskStatusEntity*,DeleteTaskStatusesSuccess*)", "TaskStatusEntity*(TaskStatusEntity*,UpdateTaskStatus*)", "Rect(_ReadingOrderSortData)", "List(BuildContext)", "Set(_ReadingOrderSortData)", "List*(BuiltList*,BuiltMap*)", "List*(BuiltMap*,BuiltList*,StaticState*,BuiltMap*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "int*(String*,BuiltMap*)", "TaskStatusEntity*(@)", "bool(TraversalDirection)", "bool(_DirectionalPolicyDataEntry)", "~(_FocusTraversalGroupInfo)", "Null(BuiltList*)", "TaxRateUIStateBuilder*(TaxRateUIStateBuilder*)", "bool*(bool*,ViewTaxRate*)", "bool*(bool*,ViewTaxRateList*)", "bool*(bool*,FilterTaxRatesByState*)", "bool*(bool*,FilterTaxRates*)", "String*(String*,ArchiveTaxRatesSuccess*)", "String*(String*,DeleteTaxRatesSuccess*)", "String*(String*,ViewTaxRate*)", "String*(String*,AddTaxRateSuccess*)", "String*(String*,SortTaxRates*)", "String*(String*,FilterTaxRates*)", "String*(String*,FilterTaxRatesByState*)", "TaxRateEntity*(TaxRateEntity*,RestoreTaxRatesSuccess*)", "TaxRateEntity*(TaxRateEntity*,ArchiveTaxRatesSuccess*)", "TaxRateEntity*(TaxRateEntity*,DeleteTaxRatesSuccess*)", "TaxRateEntity*(TaxRateEntity*,UpdateTaxRate*)", "bool(KeyMessage)", "DiagnosticsNode(FocusNode)", "~(RedoTextIntent)", "~(UndoTextIntent)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "TextSelection(TextSelection)", "bool(HitTestEntry)", "CompositedTransformTarget(BuildContext,ViewportOffset)", "Null(BuiltList*)", "TokenUIStateBuilder*(TokenUIStateBuilder*)", "bool*(bool*,ViewToken*)", "bool*(bool*,ViewTokenList*)", "bool*(bool*,FilterTokensByState*)", "bool*(bool*,FilterTokens*)", "bool*(bool*,FilterTokensByCustom1*)", "bool*(bool*,FilterTokensByCustom2*)", "bool*(bool*,FilterTokensByCustom3*)", "bool*(bool*,FilterTokensByCustom4*)", "String*(String*,ArchiveTokensSuccess*)", "String*(String*,DeleteTokensSuccess*)", "String*(String*,SortTokens*)", "String*(String*,FilterTokens*)", "String*(String*,FilterTokensByState*)", "String*(String*,FilterTokensByCustom1*)", "String*(String*,FilterTokensByCustom2*)", "String*(String*,FilterTokensByCustom3*)", "String*(String*,FilterTokensByCustom4*)", "TokenEntity*(TokenEntity*,RestoreTokensSuccess*)", "TokenEntity*(TokenEntity*,ArchiveTokensSuccess*)", "TokenEntity*(TokenEntity*,DeleteTokensSuccess*)", "TokenEntity*(TokenEntity*,UpdateToken*)", "~(TextEditingValue)", "Future<~>(PasteTextIntent)", "SelectionRect(SelectionRect?)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "TokenEntity*(@)", "PrefStateSortFieldBuilder*(PrefStateSortFieldBuilder*)", "MapBuilder*(MapBuilder*)", "BuiltMap*(BuiltMap*,SortClients*)", "BuiltMap*(BuiltMap*,SortProducts*)", "BuiltMap*(BuiltMap*,SortInvoices*)", "BuiltMap*(BuiltMap*,SortPayments*)", "BuiltMap*(BuiltMap*,SortRecurringInvoices*)", "BuiltMap*(BuiltMap*,SortQuotes*)", "BuiltMap*(BuiltMap*,SortCredits*)", "BuiltMap*(BuiltMap*,SortProjects*)", "BuiltMap*(BuiltMap*,SortTasks*)", "BuiltMap*(BuiltMap*,SortVendors*)", "BuiltMap*(BuiltMap*,SortExpenses*)", "BuiltMap*(BuiltMap*,SortPaymentTerms*)", "BuiltMap*(BuiltMap*,SortTaxRates*)", "BuiltMap*(BuiltMap*,SortCompanyGateways*)", "BuiltMap*(BuiltMap*,SortUsers*)", "BuiltMap*(BuiltMap*,SortGroups*)", "BuiltMap*(BuiltMap*,SortDesigns*)", "BuiltMap*(BuiltMap*,SortTokens*)", "BuiltMap*(BuiltMap*,SortWebhooks*)", "BuiltMap*(BuiltMap*,SortExpenseCategories*)", "BuiltMap*(BuiltMap*,SortTaskStatuses*)", "BuiltMap*(BuiltMap*,SortSubscriptions*)", "BuiltMap*(BuiltMap*,ToggleEditorLayout*)", "bool(SelectionRect?)", "BuiltMap*(BuiltMap*,ToggleViewerLayout*)", "ImageRoleManager(SemanticsObject)", "double*(double*,UpdateUserPreferences*)", "bool*(bool*,DismissGatewayWarningPermanently*)", "bool*(bool*,DismissReviewAppPermanently*)", "AppLayout*(AppLayout*,UpdateUserPreferences*)", "ModuleLayout*(ModuleLayout*,UpdateUserPreferences*)", "ModuleLayout*(ModuleLayout*,SwitchListTableLayout*)", "int*(int*,UpdateUserPreferences*)", "SelectionRect?(int)", "bool*(bool*,TogglePreviewSidebar*)", "String*(String*,UpdateUserPreferences*)", "BuiltMap*(BuiltMap*,UpdateUserPreferences*)", "CompanyPrefStateBuilder*(CompanyPrefStateBuilder*)", "BuiltList*(BuiltList*,PopLastHistory*)", "TextEditingValue(TextEditingValue,TextInputFormatter)", "BuiltList*(BuiltList*,ViewDashboard*)", "BuiltList*(BuiltList*,ViewReports*)", "BuiltList*(BuiltList*,ViewSettings*)", "BuiltList*(BuiltList*,ViewClient*)", "BuiltList*(BuiltList*,EditClient*)", "BuiltList*(BuiltList*,ViewProduct*)", "BuiltList*(BuiltList*,EditProduct*)", "BuiltList*(BuiltList*,ViewInvoice*)", "BuiltList*(BuiltList*,EditInvoice*)", "BuiltList*(BuiltList*,ViewPayment*)", "BuiltList*(BuiltList*,EditPayment*)", "BuiltList*(BuiltList*,ViewQuote*)", "BuiltList*(BuiltList*,EditQuote*)", "BuiltList*(BuiltList*,ViewTask*)", "BuiltList*(BuiltList*,EditTask*)", "BuiltList*(BuiltList*,ViewProject*)", "BuiltList*(BuiltList*,EditProject*)", "BuiltList*(BuiltList*,ViewVendor*)", "BuiltList*(BuiltList*,EditVendor*)", "BuiltList*(BuiltList*,ViewExpense*)", "BuiltList*(BuiltList*,EditExpense*)", "BuiltList*(BuiltList*,ViewCompanyGateway*)", "BuiltList*(BuiltList*,EditCompanyGateway*)", "BuiltList*(BuiltList*,ViewUser*)", "BuiltList*(BuiltList*,EditUser*)", "BuiltList*(BuiltList*,ViewGroup*)", "BuiltList*(BuiltList*,EditGroup*)", "BuiltList*(BuiltList*,ViewPurchaseOrder*)", "BuiltList*(BuiltList*,EditPurchaseOrder*)", "BuiltList*(BuiltList*,ViewRecurringExpense*)", "BuiltList*(BuiltList*,EditRecurringExpense*)", "BuiltList*(BuiltList*,ViewSubscription*)", "BuiltList*(BuiltList*,EditSubscription*)", "BuiltList*(BuiltList*,ViewTaskStatus*)", "BuiltList*(BuiltList*,EditTaskStatus*)", "BuiltList*(BuiltList*,ViewExpenseCategory*)", "BuiltList*(BuiltList*,EditExpenseCategory*)", "BuiltList*(BuiltList*,ViewRecurringInvoice*)", "BuiltList*(BuiltList*,EditRecurringInvoice*)", "BuiltList*(BuiltList*,ViewWebhook*)", "BuiltList*(BuiltList*,EditWebhook*)", "BuiltList*(BuiltList*,ViewToken*)", "BuiltList*(BuiltList*,EditToken*)", "BuiltList*(BuiltList*,ViewPaymentTerm*)", "BuiltList*(BuiltList*,EditPaymentTerm*)", "BuiltList*(BuiltList*,EditDesign*)", "BuiltList*(BuiltList*,ViewCredit*)", "BuiltList*(BuiltList*,EditCredit*)", "BuiltList*(BuiltList*,FilterByEntity*)", "int*(int*,UpdateCurrentRoute*)", "String*(String*,FilterCompany*)", "String*(String*,ViewDashboard*)", "Null(EntityType*,StopLoading*)", "EntityType*(EntityType*,LoadClientsRequest*)", "EntityType*(EntityType*,LoadProductsRequest*)", "EntityType*(EntityType*,LoadInvoicesRequest*)", "EntityType*(EntityType*,LoadRecurringInvoicesRequest*)", "EntityType*(EntityType*,LoadPaymentsRequest*)", "EntityType*(EntityType*,LoadQuotesRequest*)", "EntityType*(EntityType*,LoadCreditsRequest*)", "EntityType*(EntityType*,LoadProjectsRequest*)", "EntityType*(EntityType*,LoadTasksRequest*)", "EntityType*(EntityType*,LoadVendorsRequest*)", "EntityType*(EntityType*,LoadPurchaseOrdersRequest*)", "EntityType*(EntityType*,LoadExpensesRequest*)", "EntityType*(EntityType*,LoadRecurringExpensesRequest*)", "int*(int*,FilterCompany*)", "int*(int*,ViewDashboard*)", "String*(String*,UpdateCurrentRoute*)", "int*(int*,SelectCompany*)", "BuiltList*(BuiltList*,PreviewEntity*)", "BuiltList*(BuiltList*,ClearPreviewStack*)", "BuiltList*(BuiltList*,PopPreviewStack*)", "BuiltList*(BuiltList*,ClearEntityFilter*)", "BuiltList*(BuiltList*,FilterByEntity*)", "BuiltList*(BuiltList*,PopFilterStack*)", "String*(ClientEntityBuilder*)", "String*(ExpenseEntityBuilder*)", "String*(TaskEntityBuilder*)", "String*(VendorEntityBuilder*)", "~(ExpandSelectionToLineBreakIntent)", "~(ExpandSelectionToDocumentBoundaryIntent)", "~(UpdateSelectionIntent)", "Null(BuiltList*)", "UserUIStateBuilder*(UserUIStateBuilder*)", "bool*(bool*,ViewUser*)", "bool*(bool*,ViewUserList*)", "bool*(bool*,FilterUsersByState*)", "bool*(bool*,FilterUsers*)", "bool*(bool*,FilterUsersByCustom1*)", "bool*(bool*,FilterUsersByCustom2*)", "bool*(bool*,FilterUsersByCustom3*)", "bool*(bool*,FilterUsersByCustom4*)", "String*(String*,ArchiveUserSuccess*)", "String*(String*,DeleteUserSuccess*)", "String*(String*,ViewUser*)", "String*(String*,AddUserSuccess*)", "String*(String*,SortUsers*)", "String*(String*,FilterUsers*)", "String*(String*,FilterUsersByState*)", "String*(String*,FilterUsersByCustom1*)", "String*(String*,FilterUsersByCustom2*)", "String*(String*,FilterUsersByCustom3*)", "String*(String*,FilterUsersByCustom4*)", "UserEntity*(UserEntity*,RestoreUserSuccess*)", "UserEntity*(UserEntity*,ArchiveUserSuccess*)", "UserEntity*(UserEntity*,DeleteUserSuccess*)", "UserEntity*(UserEntity*,UpdateUser*)", "LiveRegion(SemanticsObject)", "~(ScrollToDocumentBoundaryIntent)", "~(ReplaceTextIntent)", "_DraggableSheetExtent()", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,String*)", "Rect(DisplayFeature)", "Future>(Map)", "Future<~>(@)", "Future<~>(double)", "Null(BuiltList*)", "VendorUIStateBuilder*(VendorUIStateBuilder*)", "bool*(bool*,ViewVendor*)", "bool*(bool*,ViewVendorList*)", "bool*(bool*,FilterVendorsByState*)", "bool*(bool*,FilterVendors*)", "bool*(bool*,FilterVendorsByCustom1*)", "bool*(bool*,FilterVendorsByCustom2*)", "bool*(bool*,FilterVendorsByCustom3*)", "bool*(bool*,FilterVendorsByCustom4*)", "int*(int*,UpdateVendorTab*)", "Future()", "String*(String*,ArchiveVendorSuccess*)", "String*(String*,DeleteVendorSuccess*)", "String*(String*,ViewVendor*)", "String*(String*,AddVendorSuccess*)", "String*(String*,SortVendors*)", "String*(String*,FilterVendors*)", "String*(String*,FilterVendorsByState*)", "String*(String*,FilterVendorsByCustom1*)", "String*(String*,FilterVendorsByCustom2*)", "String*(String*,FilterVendorsByCustom3*)", "String*(String*,FilterVendorsByCustom4*)", "VendorEntity*(VendorEntity*,RestoreVendorSuccess*)", "VendorEntity*(VendorEntity*,ArchiveVendorSuccess*)", "VendorEntity*(VendorEntity*,DeleteVendorSuccess*)", "VendorEntity*(VendorEntity*,UpdateVendor*)", "HitTestResult()", "ClipPath(BuildContext)", "bool(KeepAliveNotification)", "List*(BuiltMap*,BuiltList*,BuiltMap*,StaticState*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*,StaticState*)", "EntityStats*(String*,BuiltMap*)", "Null(String*,VendorEntity*)", "double*(String*,String*,BuiltMap*,BuiltList*)", "VendorEntity*(@)", "AutofillClient()", "bool(AutofillClient)", "CompositedTransformFollower(BuildContext)", "Null(BuiltList*)", "WebhookUIStateBuilder*(WebhookUIStateBuilder*)", "bool*(bool*,ViewWebhook*)", "bool*(bool*,ViewWebhookList*)", "bool*(bool*,FilterWebhooksByState*)", "bool*(bool*,FilterWebhooks*)", "bool*(bool*,FilterWebhooksByCustom1*)", "bool*(bool*,FilterWebhooksByCustom2*)", "bool*(bool*,FilterWebhooksByCustom3*)", "bool*(bool*,FilterWebhooksByCustom4*)", "String*(String*,ArchiveWebhooksSuccess*)", "String*(String*,DeleteWebhooksSuccess*)", "String*(String*,SortWebhooks*)", "String*(String*,FilterWebhooks*)", "String*(String*,FilterWebhooksByState*)", "String*(String*,FilterWebhooksByCustom1*)", "String*(String*,FilterWebhooksByCustom2*)", "String*(String*,FilterWebhooksByCustom3*)", "String*(String*,FilterWebhooksByCustom4*)", "WebhookEntity*(WebhookEntity*,RestoreWebhooksSuccess*)", "WebhookEntity*(WebhookEntity*,ArchiveWebhooksSuccess*)", "WebhookEntity*(WebhookEntity*,DeleteWebhooksSuccess*)", "WebhookEntity*(WebhookEntity*,UpdateWebhook*)", "~(AutocompleteNextOptionIntent)", "~(AutocompletePreviousOptionIntent)", "Route<@>(RouteSettings)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "WebhookEntity*(@)", "Route<@>?(RouteSettings)", "Widget(_ChildEntry)", "~(_ChildEntry)", "StoreConnector*>*(BuildContext*)", "BuiltList*(Store*)", "Container*(BuildContext*,BuiltList*)", "CheckboxListTile*(EntityState*)", "StoreConnector*>*(BuildContext*)", "BuiltList*(Store*)", "Container*(BuildContext*,BuiltList*)", "CheckboxListTile*(EntityStatus*)", "StoreConnector*(BuildContext*)", "ListUIState*(Store*)", "Container*(BuildContext*,ListUIState*)", "~(Action)", "List<@>(String)", "Null(FontFace)", "BottomAppBar*(BuildContext*,Store*)", "CkCanvas(CkPictureRecorder)", "double(num)", "BuiltList*(Store*)", "Container*(BuildContext*,BuiltList*)", "CheckboxListTile*(String*)", "List(SelectionRect)", "List(List)", "ConfirmEmail*(BuildContext*,ConfirmEmailVM*)", "List()", "Padding*(TextButton*)", "bool(PhysicalKeyboardKey)", "MultiSelectList*(BuildContext*)", "RawKeyEventData()", "~(KeyboardEvent)", "Padding*(MapEntry*)", "~(RawKeyEvent)", "Future>(@)", "~(String,FormElement)", "DocumentTile*(DocumentEntity*)", "Future<~>(ByteData?,~(ByteData?))", "Future(String?)", "Container*(BuildContext*,String*)", "Text*(BuildContext*,String*,Object*)", "Stream()", "TextInputConfiguration(AutofillClient)", "Map(TextInputConfiguration)", "SemanticsNode(int)", "int(SemanticsNode)", "~(EditingState?,TextEditingDeltaState?)", "StatefulWidget*(EntityAction*)", "@(EntityAction*)", "StatelessWidget*(EntityAction*)", "DiagnosticsNode(SemanticsNode)", "SemanticsNode(_TraversalSortNode)", "~(int,_FrameCallbackEntry)", "~(FrameTiming)", "EntityDropdownDialog*(BuildContext*)", "Null(SelectableEntity*[bool*])", "@(BuildContext*,Completer<@>*)", "bool(RenderSliver)", "List*(TextEditingValue*)", "SelectableEntity*(String*)", "HitTestResult(Offset)", "String*(SelectableEntity*)", "bool(SliverHitTestResult{crossAxisPosition!double,mainAxisPosition!double})", "Theme*(BuildContext*,~(SelectableEntity*)*,Iterable*)", "Builder*(BuildContext*,int*)", "Container*(BuildContext*)", "EntityAutocompleteListTile*(BuildContext*,int*)", "PopupMenuButton*(BuildContext*,int*)", "TransformLayer?(PaintingContext,Offset)", "List*>*(BuildContext*)", "PopupMenuItem*(EntityType*)", "Padding*(BuildContext*,BoxConstraints*)", "Container*(String*)", "OneSequenceGestureRecognizer(Factory)", "SkImage()", "bool(MouseTrackerAnnotation)", "Null(Color*)", "~(MouseTrackerAnnotation,Matrix4)", "ViewClipChain()", "List*>*(BuildContext*)", "PopupMenuItem*(int*)", "MouseCursor0(MouseTrackerAnnotation)", "bool(Pattern[int])", "DataRow*(String*)", "Rect(Rect?,TextBox)", "Rect(TextBox)", "~(TextSelection)", "HistoryDrawer*(BuildContext*,AppDrawerVM*)", "double?()", "BaseEntity*(InvitationEntity*)", "Size()", "String(double,double,String)", "~(int,SemanticsAction,ByteData?)", "DiagnosticsNode(InlineSpan)", "DropdownMenuItem*(TaxRateEntity*)", "Path(BoxShadow)", "Null(PointerExitEvent*)", "Paint(BoxShadow)", "~(ImageChunkEvent)?(ImageStreamListener)", "~(Object,StackTrace?)?(ImageStreamListener)", "~(ImageInfo)", "String*(EntityStatus*)", "Null(Map>?)", "ListTile*(BuildContext*,BoxConstraints*)", "Future<~>(Object,StackTrace?)", "Widget*(BuildContext*,Store*)", "~(ImageInfo?,bool)", "Widget*(CompanyEntity*{showAccentColor:bool*})", "bool*(UserCompanyState*)", "PopupMenuItem*(CompanyEntity*)", "List*(BuildContext*)", "DropdownMenuItem*(CompanyEntity*)", "Future*()", "_LiveImage()", "ContactUsDialog*(BuildContext*)", "UpdateDialog*(BuildContext*)", "Color(double)", "HealthCheckDialog*(BuildContext*)", "bool(double)", "MenuDrawer*(BuildContext*,MenuDrawerVM*)", "Null(BuildContext*,int*,CompanyEntity*)", "_TheState*()", "Stack*(BuildContext*,BoxConstraints*)", "List*>*(BuildContext*)", "String(ShapeBorder)", "_SelectRow*()", "ShapeBorder(ShapeBorder)", "EdgeInsetsGeometry(EdgeInsetsGeometry,ShapeBorder)", "ExpansionPanel*(SystemLogEntity*)", "ListTile*(BuildContext*,bool*)", "Future(Uint8List{allowUpscaling:bool,cacheHeight:int?,cacheWidth:int?})", "~([TapUpDetails?])", "_ToggleButton(int)", "Rect*()*(RenderBox*)", "bool*(BuildContext*)", "Rect*()", "~(AnimationStatus*)", "~(List<_TappableLabel>?)", "DataRow0*()", "Offset(double)", "Card*(BuildContext*,BoxConstraints*)", "TimeOfDay(int)", "~(BaseEntity*)", "Column*()", "bool(MapEntry>)", "MapEntry>(Object,ThemeExtension<@>)", "DataColumn0*(String*)", "int*(int*)", "ThemeData()", "ThemeDataTween(@)", "UnmanagedRestorationScope(FormFieldState)", "@(@,String)", "TextButton*(String*)", "@(Store*)", "Container*(BuildContext*,Store*)", "LoginView*(BuildContext*,LoginVM*)", "~({context:BuildContext*,isSignUp:bool*})", "Semantics(BuildContext,Widget?)", "InputDecorator(BuildContext,Widget?)", "Center(int)", "Future*(BuildContext*,Completer*{email:String*,password:String*})", "Future*(BuildContext*,Completer*{email:String*,secret:String*,url:String*})", "Future*(BuildContext*,Completer*{email:String*,oneTimePassword:String*,password:String*,secret:String*,url:String*})", "Future*(BuildContext*,Completer*{token:String*})", "@(String)", "EntityList*(BuildContext*,ClientListVM*)", "ClientListItem*(BuildContext*,int*)", "Null(Response*)", "GlobalKey>(Widget)", "ClientPdfVM*(Store*)", "ClientPdfView*(BuildContext*,ClientPdfVM*)", "String*(ClientContactEntity*)", "String?(int)", "ClientScreen*(BuildContext*,ClientScreenVM*)", "ContactEditDetails*(BuildContext*)", "ContactListTile0*(ClientContactEntity*)", "ClientEditContactsVM*(Store*)", "ClientEditContacts*(BuildContext*,ClientEditContactsVM*)", "Null(ClientContactEntity*,int*)", "ClientEditVM*(Store*)", "ClientEdit*(BuildContext*,ClientEditVM*)", "@(ClientEntity*)", "~(List,TextDirection,double)", "Null(~())", "double(Set)", "bool(Set)", "Align(BuildContext,Widget?)", "~(DragEndDetails{isClosing:bool?})", "CustomMultiChildLayout(BuildContext,Widget?)", "Column*(ClientContactEntity*)", "bool*(LedgerEntity*)", "Null(GatewayTokenEntity*)", "TokenMeta*(GatewayTokenEntity*)", "ClientViewVM*(Store*)", "ClientView*(BuildContext*,ClientViewVM*)", "Material(BuildContext,Widget?)", "Widget(Widget,int,Animation0)", "~(int,@)", "CompanyGatewayListItem*(String*)", "CompanyGatewayList*(BuildContext*,CompanyGatewayListVM*)", "CompanyGatewayScreen*(BuildContext*,CompanyGatewayScreenVM*)", "RefreshProgressIndicator(BuildContext,Widget?)", "GatewayConfigField*(String*)", "_Future<@>?()", "CompanyGatewayEditVM*(Store*)", "CompanyGatewayEdit*(BuildContext*,CompanyGatewayEditVM*)", "CompanyGatewayViewVM*(Store*)", "CompanyGatewayView*(BuildContext*,CompanyGatewayViewVM*)", "bool(OverscrollIndicatorNotification)", "EmailCreditVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailCreditVM*)", "~(double,double)", "EntityList*(BuildContext*,CreditListVM*)", "CreditListItem*(BuildContext*,int*)", "CreditPdfVM*(Store*)", "InvoicePdfView*(BuildContext*,CreditPdfVM*)", "CreditScreen*(BuildContext*,CreditScreenVM*)", "FadeTransition(BuildContext,Widget?)", "Column(BuildContext,BoxConstraints)", "DataRow?()", "CreditEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,CreditEditDetailsVM*)", "PageTransitionsBuilder?(TargetPlatform)", "ColoredBox(BuildContext,Widget?)", "ShapeBorderTween(@)", "CreditEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,CreditEditItemsVM*)", "bool(LayoutChangedNotification)", "CreditEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,CreditEditNotesVM*)", "CreditEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,CreditEditPDFVM*)", "CreditEditVM*(Store*)", "CreditEdit*(BuildContext*,CreditEditVM*)", "ListTileTheme(BuildContext)", "TextStyle()", "CreditViewVM*(Store*)", "InvoiceView*(BuildContext*,CreditViewVM*)", "bool(InkHighlight?)", "Rect()?(RenderBox)", "~(SelectionModel<@>*)", "bool*(SeriesDatum<@>*)", "Null(SeriesDatum<@>*)", "InkWell*(ChartDataGroup*)", "DropdownButtonHideUnderline(BuildContext)", "DateRange*()", "DropdownMenuItem*(DateRangeComparison*)", "Null(DateRangeComparison*)", "DateRangeComparison*()", "DashboardDateRangePicker*(BuildContext*)", "Material*(BuildContext*,BoxConstraints*)", "List*>*(BuildContext*)", "PopupMenuItem*(DateRange*)", "RenderObjectWidget(Widget)", "Card*(TaskEntity*)", "Null(ChartDataGroup*)", "~(ButtonActivateIntent)", "~(ActivateIntent)", "Widget(BuildContext,Animation0,Animation0)", "SettingsWizard*(BuildContext*)", "AccountEntityBuilder*(AccountEntityBuilder*)", "Flex(BuildContext)", "Widget*(BuildContext*,DashboardVM*)", "@(DashboardSettings*)", "Null(EntityType*,List*)", "Form()", "CalendarDatePicker()", "Rect()(RenderBox)", "TableRow(int)", "~(DirectionalFocusIntent)", "EntityList*(BuildContext*,DesignListVM*)", "DesignListItem*(BuildContext*,int*)", "DesignScreen*(BuildContext*,DesignScreenVM*)", "~({debounce:bool*})", "~(DesignEntity*)", "~(PreviousFocusIntent)", "~(NextFocusIntent)", "InteractiveInkFeatureFactory?(ButtonStyle?)", "DesignEditVM*(Store*)", "DesignEdit*(BuildContext*,DesignEditVM*)", "DesignViewVM*(Store*)", "DesignView*(BuildContext*,DesignViewVM*)", "EntityList*(BuildContext*,DocumentListVM*)", "DocumentListItem*(BuildContext*,int*)", "DocumentScreen*(BuildContext*,DocumentScreenVM*)", "AlignmentGeometry?(ButtonStyle?)", "DocumentEditVM*(Store*)", "DocumentEdit*(BuildContext*,DocumentEditVM*)", "DocumentViewVM*(Store*)", "DocumentView*(BuildContext*,DocumentViewVM*)", "bool?(ButtonStyle?)", "Duration?(ButtonStyle?)", "MaterialTapTargetSize?(ButtonStyle?)", "ExpenseEditVM*(Store*)", "ExpenseEdit*(BuildContext*,ExpenseEditVM*)", "EntityList*(BuildContext*,ExpenseListVM*)", "VisualDensity?(ButtonStyle?)", "Uint8List({seed:int})", "ExpenseScreen*(BuildContext*,ExpenseScreenVM*)", "Padding*(ExpenseScheduleEntity*)", "ExpenseViewVM*(Store*)", "ExpenseView*(BuildContext*,ExpenseViewVM*)", "ExpenseCategoryEditVM*(Store*)", "ExpenseCategoryEdit*(BuildContext*,ExpenseCategoryEditVM*)", "EntityList*(BuildContext*,ExpenseCategoryListVM*)", "ExpenseCategoryListItem*(BuildContext*,int*)", "ExpenseCategoryScreen*(BuildContext*,ExpenseCategoryScreenVM*)", "ExpenseCategoryViewVM*(Store*)", "ExpenseCategoryView*(BuildContext*,ExpenseCategoryViewVM*)", "GroupEditVM*(Store*)", "GroupEdit*(BuildContext*,GroupEditVM*)", "EntityList*(BuildContext*,GroupListVM*)", "GroupListItem*(BuildContext*,int*)", "GroupSettingsScreen*(BuildContext*,GroupScreenVM*)", "GroupViewVM*(Store*)", "GroupView*(BuildContext*,GroupViewVM*)", "int*(VendorContactEntity*,VendorContactEntity*)", "_VendorContactListTile*(VendorContactEntity*)", "int*(ClientContactEntity*,ClientContactEntity*)", "_ClientContactListTile*(ClientContactEntity*)", "InvoiceEditContactsVM*(Store*)", "InvoiceEditContacts*(BuildContext*,InvoiceEditContactsVM*)", "Color?(ButtonStyle?)", "Null(InvitationEntity*)", "MouseCursor0?(ButtonStyle?)", "MouseCursor0?(Set)", "MaterialStateProperty?(ButtonStyle?)", "MaterialStateProperty?(ButtonStyle?)", "InvoiceEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,InvoiceEditDetailsVM*)", "ItemEditDetails*(BuildContext*)", "Future*(Duration*)", "Expanded*(Widget*)", "Text*(String*)", "Expanded*(Text*)", "Focus*(String*)", "List*(TextEditingValue*)", "String*(ProductEntity*)", "Theme*(BuildContext*,~(ProductEntity*)*,Iterable*)", "MaterialStateProperty?(ButtonStyle?)", "MaterialStateProperty?(ButtonStyle?)", "MaterialStateProperty?(ButtonStyle?)", "0^?(MaterialStateProperty<0^>?(ButtonStyle?))", "InvoiceEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,InvoiceEditItemsVM*)", "InvoiceEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,InvoiceEditNotesVM*)", "InvoiceEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,InvoiceEditPDFVM*)", "InvoiceEditVM*(Store*)", "InvoiceEdit*(BuildContext*,InvoiceEditVM*)", "0^?(0^?(ButtonStyle?))", "EmailInvoiceVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailInvoiceVM*)", "EntityList*(BuildContext*,InvoiceListVM*)", "InvoicePdfVM*(Store*)", "InvoicePdfView*(BuildContext*,InvoicePdfVM*)", "HttpRequest()", "InvoiceScreen*(BuildContext*,InvoiceScreenVM*)", "double(_Diagonal)", "_InvitationListTile*(InvitationEntity*)", "@(DocumentEntity*)", "int*(ActivityEntity*,ActivityEntity*)", "~(ScrollNotification)", "InvoiceItemListTile*(BuildContext*)", "Widget*(String*,double*)", "Null(String*,double*)", "Padding*(InvoiceScheduleEntity*)", "InvoiceViewVM*(Store*)", "InvoiceView*(BuildContext*,InvoiceViewVM*)", "Null(BuildContext*,DocumentEntity*)", "MaterialPageRoute<0^>(RouteSettings,Widget(BuildContext))", "Widget(BuildContext,~())", "PaymentEditVM*(Store*)", "PaymentEdit*(BuildContext*,PaymentEditVM*)", "MaterialRectArcTween(Rect?,Rect?)", "EntityList*(BuildContext*,PaymentListVM*)", "InvoiceEntity*(PaymentableEntity*)", "Padding*(InvoiceEntity*)", "PaymentScreen*(BuildContext*,PaymentScreenVM*)", "PaymentRefundVM*(Store*)", "PaymentRefund*(BuildContext*,PaymentRefundVM*)", "Future*(BuildContext*,Completer*)", "PaymentViewVM*(Store*)", "PaymentView*(BuildContext*,PaymentViewVM*)", "PaymentTermEditVM*(Store*)", "PaymentTermEdit*(BuildContext*,PaymentTermEditVM*)", "EntityList*(BuildContext*,PaymentTermListVM*)", "PaymentTermListItem*(BuildContext*,int*)", "PaymentTermScreen*(BuildContext*,PaymentTermScreenVM*)", "PaymentTermViewVM*(Store*)", "PaymentTermView*(BuildContext*,PaymentTermViewVM*)", "ProductEditVM*(Store*)", "ProductEdit*(BuildContext*,ProductEditVM*)", "EntityList*(BuildContext*,ProductListVM*)", "ProductScreen*(BuildContext*,ProductScreenVM*)", "ProductViewVM*(Store*)", "ProductView*(BuildContext*,ProductViewVM*)", "ProjectEditVM*(Store*)", "ProjectEdit*(BuildContext*,ProjectEditVM*)", "EntityList*(BuildContext*,ProjectListVM*)", "ProjectListItem*(BuildContext*,int*)", "ProjectScreen*(BuildContext*,ProjectScreenVM*)", "ProjectViewVM*(Store*)", "ProjectView*(BuildContext*,ProjectViewVM*)", "PurchaseOrderEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,PurchaseOrderEditDetailsVM*)", "Null(BuildContext*,InvoiceEntity*,VendorEntity*)", "PurchaseOrderEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,PurchaseOrderEditItemsVM*)", "PurchaseOrderEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,PurchaseOrderEditNotesVM*)", "PurchaseOrderEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,PurchaseOrderEditPDFVM*)", "PurchaseOrderEditVM*(Store*)", "PurchaseOrderEdit*(BuildContext*,PurchaseOrderEditVM*)", "EmailPurchaseOrderVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailPurchaseOrderVM*)", "EntityList*(BuildContext*,PurchaseOrderListVM*)", "PurchaseOrderListItem*(BuildContext*,int*)", "PurchaseOrderPdfVM*(Store*)", "InvoicePdfView*(BuildContext*,PurchaseOrderPdfVM*)", "PurchaseOrderScreen*(BuildContext*,PurchaseOrderScreenVM*)", "PurchaseOrderViewVM*(Store*)", "InvoiceView*(BuildContext*,PurchaseOrderViewVM*)", "QuoteEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,QuoteEditDetailsVM*)", "QuoteEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,QuoteEditItemsVM*)", "QuoteEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,QuoteEditNotesVM*)", "QuoteEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,QuoteEditPDFVM*)", "QuoteEditVM*(Store*)", "QuoteEdit*(BuildContext*,QuoteEditVM*)", "EmailQuoteVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailQuoteVM*)", "EntityList*(BuildContext*,QuoteListVM*)", "QuotePdfVM*(Store*)", "InvoicePdfView*(BuildContext*,QuotePdfVM*)", "QuoteScreen*(BuildContext*,QuoteScreenVM*)", "QuoteViewVM*(Store*)", "InvoiceView*(BuildContext*,QuoteViewVM*)", "RecurringExpenseEditVM*(Store*)", "ExpenseEdit*(BuildContext*,RecurringExpenseEditVM*)", "EntityList*(BuildContext*,RecurringExpenseListVM*)", "RecurringExpenseListItem*(BuildContext*,int*)", "RecurringExpenseScreen*(BuildContext*,RecurringExpenseScreenVM*)", "RecurringExpenseViewVM*(Store*)", "ExpenseView*(BuildContext*,RecurringExpenseViewVM*)", "RecurringInvoiceEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,RecurringInvoiceEditDetailsVM*)", "RecurringInvoiceEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,RecurringInvoiceEditItemsVM*)", "RecurringInvoiceEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,RecurringInvoiceEditNotesVM*)", "RecurringInvoiceEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,RecurringInvoiceEditPDFVM*)", "RecurringInvoiceEditVM*(Store*)", "RecurringInvoiceEdit*(BuildContext*,RecurringInvoiceEditVM*)", "EntityList*(BuildContext*,RecurringInvoiceListVM*)", "RecurringInvoiceListItem*(BuildContext*,int*)", "RecurringInvoicePdfVM*(Store*)", "InvoicePdfView*(BuildContext*,RecurringInvoicePdfVM*)", "RecurringInvoiceScreen*(BuildContext*,RecurringInvoiceScreenVM*)", "RecurringInvoiceViewVM*(Store*)", "InvoiceView*(BuildContext*,RecurringInvoiceViewVM*)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ClientReportFields*(String*)", "bool*(ClientReportFields*)", "MouseRegion(BuildContext,ScrollController)", "_Future<@>(@)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,StaticState*)", "ContactReportFields*(String*)", "bool*(ContactReportFields*)", "AnimatedSwitcher(BuildContext,Object?,Widget?)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "CreditReportFields*(String*)", "bool*(CreditReportFields*)", "List(BuildContext,_ActionLevel)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*)", "DocumentReportFields*(String*)", "bool*(DocumentReportFields*)", "List*(BaseEntity*,DocumentEntity*)", "Null(String*,ProductEntity*)", "WillPopScope(BuildContext)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ExpenseReportFields*(String*)", "bool*(ExpenseReportFields*)", "BlockSemantics(BuildContext)", "MaterialPageRoute<~>(RouteSettings)", "InvoiceItemReportFields*(String*)", "bool*(InvoiceItemReportFields*)", "List>(NavigatorState,String)", "Localizations(BuildContext,int)", "InvoiceReportFields*(String*)", "bool*(InvoiceReportFields*)", "int(String,String)", "_PackageListTile(MapEntry)", "TaxRateReportFields0*(String*)", "bool*(TaxRateReportFields0*)", "Center(BuildContext,int?,Widget?)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "PaymentReportFields*(String*)", "bool*(PaymentReportFields*)", "StatefulWidget(BuildContext,BoxConstraints)", "TaxRateReportFields*(String*)", "bool*(TaxRateReportFields*)", "LayoutBuilder(BuildContext,AsyncSnapshot<_LicenseData>)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ProductReportFields*(String*)", "bool*(ProductReportFields*)", "_LicenseData(_LicenseData)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ProfitAndLossReportFields*(String*)", "bool*(ProfitAndLossReportFields*)", "_LicenseData(_LicenseData,LicenseEntry)", "LicensePage(BuildContext)", "PurchaseOrderReportFields*(String*)", "bool*(PurchaseOrderReportFields*)", "_CombiningGestureArenaMember()", "QuoteItemReportFields*(String*)", "bool*(QuoteItemReportFields*)", "~(~(PointerEvent),Matrix4?)", "QuoteReportFields*(String*)", "bool*(QuoteReportFields*)", "Map<~(PointerEvent),Matrix4?>()", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "RecurringExpenseReportFields*(String*)", "bool*(RecurringExpenseReportFields*)", "~(_TapTracker)", "RecurringInvoiceReportFields*(String*)", "bool*(RecurringInvoiceReportFields*)", "Drag?()", "_PointerEventDescription(PointerData)", "String*(@,int*)", "bool(PointerData)", "Future()", "DateTime*(@,int*)", "~(PointerDataPacket)", "Null(BuildContext*,EntityAction*)", "Expanded*(BuildContext*)", "_GestureArena()", "ReportColumnType*(String*)", "@(String*,String*)", "List*(TextEditingValue*)", "bool*(List*)", "String*(List*)", "Theme*(BuildContext*,~(String*)*,Iterable*)", "ReportsScreen*(BuildContext*,ReportsScreenVM*)", "String(GestureArenaMember)", "Null(BuildContext*,List*)", "Null({chart:String*,customEndDate:String*,customStartDate:String*,group:String*,report:String*,selectedGroup:String*,subgroup:String*})", "Null(List*)", "GroupTotals*(ReportResult*,ReportsUIState*,ReportSettingsEntity*,BuiltMap*,CompanyEntity*)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "TaskReportFields*(String*)", "bool*(TaskReportFields*)", "~(AbstractNode)", "CheckboxListTile*(int*)", "bool*(CompanyEntityBuilder*)", "AccountManagement*(BuildContext*,AccountManagementVM*)", "LicenseParagraph()", "Null(BuildContext*,String*,String*)", "SwitchListTile*(RegistrationFieldEntity*)", "RegistrationFieldEntityBuilder*(RegistrationFieldEntityBuilder*)", "ClientPortal*(BuildContext*,ClientPortalVM*)", "bool(DiagnosticsNode)", "Row*(BuildContext*)", "CompanyDetails*(BuildContext*,CompanyDetailsVM*)", "CreditCardsAndBanks*(BuildContext*,CreditCardsAndBanksVM*)", "CustomFields*(BuildContext*,CustomFieldsVM*)", "DataVisualizations*(BuildContext*,DataVisualizationsVM*)", "Widget*(BuildContext*,AsyncSnapshot<@>*)", "ListTile*(BuildContext*)", "~(MapBuilder*)", "FormColorPicker*(String*)", "String(DiagnosticsNode)", "DeviceSettings*(BuildContext*,DeviceSettingsVM*)", "ErrorDescription(String)", "bool(StackFrame)", "bool(DiagnosticsNode?)", "Null(BuildContext*,double*)", "Future*(BuildContext*,String*)", "Future*(BuildContext*,AppLayout*)", "EmailSettings*(BuildContext*,EmailSettingsVM*)", "TargetPlatform()", "ExpenseSettings*(BuildContext*,ExpenseSettingsVM*)", "TargetPlatform?()", "GeneratedNumbers*(BuildContext*,GeneratedNumbersVM*)", "Set*>*(PreImportResponse*)", "PreImportResponse*()", "~(ImportType*)", "ImportType*()", "Future(Body)", "DropdownMenuItem*(ExportType*)", "String(String,Color)", "ImportExport*(BuildContext*,ImportExportVM*)", "InvoiceDesign*(BuildContext*,InvoiceDesignVM*)", "Null(BuildContext*,List*)", "_AddCompanyDialog*(BuildContext*)", "LocalizationSettings*(BuildContext*,LocalizationSettingsVM*)", "PaymentSettings*(BuildContext*,PaymentSettingsVM*)", "ProductSettings*(BuildContext*,ProductSettingsVM*)", "SettingsList*(BuildContext*,SettingsListVM*)", "Null(BuildContext*,String*,int*)", "SettingsScreen*(BuildContext*,SettingsScreenVM*)", "ToggleButtons*(BuildContext*,BoxConstraints*)", "TaskSettings*(BuildContext*,TaskSettingsVM*)", "TaxSettings*(BuildContext*,TaxSettingsVM*)", "bool*(EmailTemplate*)", "DropdownMenuItem*(EmailTemplate*)", "Promise<1&>([RunAppFnParameters?])", "TemplatesAndReminders*(BuildContext*,TemplatesAndRemindersVM*)", "~({canceled:bool})", "Future*(GroupEntity*)", "Future*(ClientEntity*)", "_SmsVerification*(BuildContext*)", "_EnableTwoFactor*(BuildContext*)", "~(_AnimationDirection)", "UserDetails*(BuildContext*,UserDetailsVM*)", "@(UserEntity*)", "TickerFuture({from:double?})", "WorkflowSettings*(BuildContext*,WorkflowSettingsVM*)", "Future(String)", "~(File,Uint8List?,String?,Stream>?)", "SubscriptionEditVM*(Store*)", "SubscriptionEdit*(BuildContext*,SubscriptionEditVM*)", "EntityList*(BuildContext*,SubscriptionListVM*)", "SubscriptionListItem*(BuildContext*,int*)", "SubscriptionScreen*(BuildContext*,SubscriptionScreenVM*)", "SubscriptionViewVM*(Store*)", "SubscriptionView*(BuildContext*,SubscriptionViewVM*)", "Node2?(DirectoryNode,String,Node2?,int,int)", "~(BuildContext*[EntityAction*])", "~(Node2)", "TaskEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,TaskEditDetailsVM*)", "FileNode(FileNode)", "TimeEditDetails*(BuildContext*)", "TaskEditTimesVM*(Store*)", "TaskEditTimes*(BuildContext*,TaskEditTimesVM*)", "TaskEditVM*(Store*)", "TaskEdit*(BuildContext*,TaskEditVM*)", "BoardList*(String*)", "Null(Completer*,String*)", "~(FileNode)", "BoardItem*(TaskEntity*)", "Null(int*,int*,BoardItemState*)", "Null(int*,int*,int*,int*,BoardItemState*)", "KanbanView*(BuildContext*,KanbanVM*)", "Null(Completer*,List*,Map*>*)", "Null(Completer*,String*,String*,int*)", "Null(Completer*,String*,String*,String*,int*)", "EntityList*(BuildContext*,TaskListVM*)", "TaskScreen*(BuildContext*,TaskScreenVM*)", "TaskViewVM*(Store*)", "TaskView*(BuildContext*,TaskViewVM*)", "Null(BuildContext*[TaskTime*])", "TaskStatusEditVM*(Store*)", "TaskStatusEdit*(BuildContext*,TaskStatusEditVM*)", "EntityList*(BuildContext*,TaskStatusListVM*)", "TaskStatusListItem*(BuildContext*,int*)", "TaskStatusScreen*(BuildContext*,TaskStatusScreenVM*)", "TaskStatusViewVM*(Store*)", "TaskStatusView*(BuildContext*,TaskStatusViewVM*)", "TaxRateEditVM*(Store*)", "TaxRateEdit*(BuildContext*,TaxRateEditVM*)", "EntityList*(BuildContext*,TaxRateListVM*)", "TaxRateListItem*(BuildContext*,int*)", "TaxRateSettingsScreen*(BuildContext*,TaxRateScreenVM*)", "TaxRateViewVM*(Store*)", "TaxRateView*(BuildContext*,TaxRateViewVM*)", "TokenEditVM*(Store*)", "TokenEdit*(BuildContext*,TokenEditVM*)", "EntityList*(BuildContext*,TokenListVM*)", "TokenListItem*(BuildContext*,int*)", "TokenScreen*(BuildContext*,TokenScreenVM*)", "TokenViewVM*(Store*)", "TokenView*(BuildContext*,TokenViewVM*)", "DataRow*(EntityType*)", "UserEditVM*(Store*)", "UserEdit*(BuildContext*,UserEditVM*)", "EntityList*(BuildContext*,UserListVM*)", "UserListItem*(BuildContext*,int*)", "UserScreen*(BuildContext*,UserScreenVM*)", "UserViewVM*(Store*)", "UserView*(BuildContext*,UserViewVM*)", "VendorContactEditDetails*(BuildContext*)", "ContactListTile*(VendorContactEntity*)", "VendorEditContactsVM*(Store*)", "VendorEditContacts*(BuildContext*,VendorEditContactsVM*)", "Null(VendorContactEntity*,int*)", "VendorEditVM*(Store*)", "VendorEdit*(BuildContext*,VendorEditVM*)", "EntityList*(BuildContext*,VendorListVM*)", "VendorListItem*(BuildContext*,int*)", "String*(VendorContactEntity*)", "VendorScreen*(BuildContext*,VendorScreenVM*)", "Column*(VendorContactEntity*)", "VendorViewVM*(Store*)", "VendorView*(BuildContext*,VendorViewVM*)", "WebhookEditVM*(Store*)", "WebhookEdit*(BuildContext*,WebhookEditVM*)", "WebhookViewVM*(Store*)", "WebhookView*(BuildContext*,WebhookViewVM*)", "EntityList*(BuildContext*,WebhookListVM*)", "WebhookListItem*(BuildContext*,int*)", "WebhookScreen*(BuildContext*,WebhookScreenVM*)", "FileNode()", "FieldConfirmation*(BuildContext*)", "Null(BuildContext*{currentLength:int*,isFocused:bool*,maxLength:int*})", "SimpleDialogOption*(InvoiceEntity*)", "RealNode?(DirectoryNode,bool)", "Null(AttributedText*,int*,Set*,AttributionVisitEvent*)", "DirectoryNode?(DirectoryNode,bool)", "ChartContainerRenderObject<@>()", "DocumentLayout*()", "Theme*(BuildContext*)", "ImageFormatToolbar*(BuildContext*)", "AndroidTextEditingFloatingToolbar*(BuildContext*)", "IOSTextEditingFloatingToolbar*(BuildContext*)", "Widget*(BuildContext*)", "~(_TextType*)", "List(Size)", "bool*(_TextType*)", "DropdownMenuItem<_TextType*>*(_TextType*)", "SizedBox*(BuildContext*,Offset*,Widget*)", "IFrameElement*(int*)", "Null(Event*)", "Null(AuthenticationResult*)", "~(Linkifier)", "Padding(int)", "Logger()", "int(TableRow)", "Padding(Widget)", "~(ListItem)", "bool(RegExp)", "LinkReference()", "~(_ResolvedNotoSubset)", "Widget(LegendEntry<@>)", "bool(Node3)", "~(ChartStateBehavior>,AnimationController)", "Null(String[String?])", "~(String,ChartBehavior0<@>)", "Widget(BuildContext,Widget,ImageChunkEvent?)", "Offset(int)", "double(double,RenderBox)", "Widget(BuildContext,BoxValueConstraints)", "String(String?)", "MapEntry(int,int)", "int(Permission)", "~(SelectionModelType)", "Palette(Palette())", "~(_LineRendererElement)", "Color0?(int?)", "GestureDetector(BuildContext,int)", "PdfPageFormat()", "PdfPreviewCustom(BuildContext)", "~(Image1)", "@(Object?,@,@(@))", "AnimatedSwitcher(BuildContext,AsyncSnapshot)", "~(ButtonState)", "String(int?)", "Future<~>(ISentrySpan)", "~(Scope)", "MapEntry(String,@)", "String(AppleIDAuthorizationScopes)", "String?()", "int(_Line)", "bool(Point,double,double)", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry>)", "SourceSpanWithContext()", "String(String{color:@})", "@(@())", "Widget()", "bool(SnapState?)", "LifeCycleHooks<_OnWidget>(_OnWidget,bool())", "bool(Point[double?])", "~(BuildContext,_OnWidget,_OnWidget)", "Widget(BuildContext,_OnWidget)", "int(int?)", "double(TextElement2)", "TextElement2(String)", "int(int,LinkifyElement)", "String(String,LinkifyElement)", "bool(LinkifyElement)", "ParagraphNode(String)", "Listener(BuildContext,Widget?)", "~(String?,List)", "Set(Set,Set)", "~(HandleType,Offset)", "num(int?)", "Map()", "bool(NotoFont)", "AndroidDocumentTouchEditingControls(BuildContext)", "SetMultimapBuilder()", "SetBuilder()", "IosDocumentTouchEditingControls(BuildContext)", "IOSCollapsedHandle(BuildContext,bool,Widget?)", "Widget(BuildContext,Offset?,Widget?)", "bool(TextEditingDelta)", "Row(BuildContext)", "MapBuilder()", "ListMultimapBuilder()", "String(GlobalKey>)", "_Component(BuildContext,SingleColumnLayoutComponentViewModel)", "~(String,GlobalKey>)", "ListBuilder()", "IndentingBuiltValueToStringHelper(String)", "SpanRange()", "TextSpan(MultiAttributionSpan)", "~(_TapTracker0)", "~(PointerUpEvent)", "~(PointerMoveEvent)", "~(int?)", "~(HtmlElement)", "String?(String)", "~(Zone?,ZoneDelegate?,Zone,~())", "int(Comparable<@>,Comparable<@>)", "~(int?,int?)", "0^(0^,0^)", "Size?(Size?,Size?,double)", "double?(num?,num?,double)", "Color?(Color?,Color?,double)", "~(String,FileSystemOp)", "~(FlutterErrorDetails{forceReport:bool})", "DiagnosticsNode(String)", "StackFrame?(String)", "double(double,double,double)", "Widget(BuildContext,Animation0,Animation0,Widget)", "bool?(bool?,bool?,double)", "EdgeInsetsGeometry?(EdgeInsetsGeometry?,EdgeInsetsGeometry?,double)", "Future>?>(String?)", "TextStyle?(TextStyle?,TextStyle?,double)", "int(_TaskEntry<@>,_TaskEntry<@>)", "bool({priority!int,scheduler!SchedulerBinding})", "String(ByteData)", "List(String)", "Widget(Widget,Key,Widget,Key)", "Widget(Widget?,List)", "int(Element0,Element0)", "IconThemeData(IconThemeData?,IconThemeData?,double)", "List>(NavigatorState,String)", "int(Widget,int)", "Widget(BuildContext,List,Widget(Color))", "Widget(Color,bool,~())", "Store<0^>(Store<0^>)", "bool(bool)", "String(CropAspectRatioPreset?)", "Null(FrameInfo)", "~({isTesting:bool*})", "AppState*(AppState*,@)", "AuthState*(AuthState*,UserLoadUrl*)", "AuthState*(AuthState*,UserSignUpRequest*)", "AuthState*(AuthState*,UserLoginRequest*)", "AuthState*(AuthState*,OAuthLoginRequest*)", "AuthState*(AuthState*,OAuthSignUpRequest*)", "AuthState*(AuthState*,UserLoginSuccess*)", "AuthState*(AuthState*,UserVerifiedPassword*)", "AuthState*(AuthState*,UserUnverifiedPassword*)", "ListUIState*(ListUIState*,ViewClientList*)", "ListUIState*(ListUIState*,FilterClientsByCustom1*)", "ListUIState*(ListUIState*,FilterClientsByCustom2*)", "ListUIState*(ListUIState*,FilterClientsByCustom3*)", "ListUIState*(ListUIState*,FilterClientsByCustom4*)", "ListUIState*(ListUIState*,FilterClientsByState*)", "ListUIState*(ListUIState*,FilterClients*)", "ListUIState*(ListUIState*,SortClients*)", "ListUIState*(ListUIState*,StartClientMultiselect*)", "ListUIState*(ListUIState*,AddToClientMultiselect*)", "ListUIState*(ListUIState*,RemoveFromClientMultiselect*)", "ListUIState*(ListUIState*,ClearClientMultiselect*)", "ClientState*(ClientState*,ArchiveClientsSuccess*)", "ClientState*(ClientState*,DeleteClientsSuccess*)", "ClientState*(ClientState*,RestoreClientSuccess*)", "ClientState*(ClientState*,AddClientSuccess*)", "ClientState*(ClientState*,SaveClientSuccess*)", "ClientState*(ClientState*,LoadClientSuccess*)", "ClientState*(ClientState*,MergeClientsSuccess*)", "ClientState*(ClientState*,PurgeClientSuccess*)", "ClientState*(ClientState*,LoadClientsSuccess*)", "ClientState*(ClientState*,LoadCompanySuccess*)", "UserCompanyEntity*(UserCompanyEntity*,LoadCompanySuccess*)", "UserCompanyEntity*(UserCompanyEntity*,SaveCompanySuccess*)", "String?(~(Codec))", "ListUIState*(ListUIState*,FilterCompanyGatewaysByCustom1*)", "ListUIState*(ListUIState*,FilterCompanyGatewaysByCustom2*)", "ListUIState*(ListUIState*,FilterCompanyGatewaysByState*)", "ListUIState*(ListUIState*,FilterCompanyGateways*)", "ListUIState*(ListUIState*,SortCompanyGateways*)", "ListUIState*(ListUIState*,StartCompanyGatewayMultiselect*)", "ListUIState*(ListUIState*,AddToCompanyGatewayMultiselect*)", "ListUIState*(ListUIState*,RemoveFromCompanyGatewayMultiselect*)", "ListUIState*(ListUIState*,ClearCompanyGatewayMultiselect*)", "CompanyGatewayState*(CompanyGatewayState*,ArchiveCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,DeleteCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,RestoreCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,AddCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,SaveCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,LoadCompanyGatewaySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,LoadCompanySuccess*)", "CompanyGatewayState*(CompanyGatewayState*,LoadCompanyGatewaysSuccess*)", "JsObject(@)", "InvoiceEntity*(InvoiceEntity*,AddCreditItems*)", "ListUIState*(ListUIState*,ViewCreditList*)", "ListUIState*(ListUIState*,FilterCreditsByCustom1*)", "ListUIState*(ListUIState*,FilterCreditsByCustom2*)", "ListUIState*(ListUIState*,FilterCreditsByCustom3*)", "ListUIState*(ListUIState*,FilterCreditsByCustom4*)", "ListUIState*(ListUIState*,FilterCreditsByState*)", "ListUIState*(ListUIState*,FilterCreditsByStatus*)", "ListUIState*(ListUIState*,FilterCredits*)", "ListUIState*(ListUIState*,SortCredits*)", "ListUIState*(ListUIState*,StartCreditMultiselect*)", "ListUIState*(ListUIState*,AddToCreditMultiselect*)", "ListUIState*(ListUIState*,RemoveFromCreditMultiselect*)", "ListUIState*(ListUIState*,ClearCreditMultiselect*)", "CreditState*(CreditState*,MarkSentCreditSuccess*)", "CreditState*(CreditState*,ArchiveCreditsSuccess*)", "CreditState*(CreditState*,DeleteCreditsSuccess*)", "CreditState*(CreditState*,RestoreCreditsSuccess*)", "CreditState*(CreditState*,AddCreditSuccess*)", "CreditState*(CreditState*,@)", "CreditState*(CreditState*,LoadCreditsSuccess*)", "CreditState*(CreditState*,LoadCompanySuccess*)", "JsArray<@>(@)", "ListUIState*(ListUIState*,ViewDesignList*)", "ListUIState*(ListUIState*,FilterDesignsByCustom1*)", "ListUIState*(ListUIState*,FilterDesignsByCustom2*)", "ListUIState*(ListUIState*,FilterDesignsByState*)", "ListUIState*(ListUIState*,FilterDesigns*)", "ListUIState*(ListUIState*,SortDesigns*)", "ListUIState*(ListUIState*,StartDesignMultiselect*)", "ListUIState*(ListUIState*,AddToDesignMultiselect*)", "ListUIState*(ListUIState*,RemoveFromDesignMultiselect*)", "ListUIState*(ListUIState*,ClearDesignMultiselect*)", "DesignState*(DesignState*,ArchiveDesignsSuccess*)", "DesignState*(DesignState*,DeleteDesignsSuccess*)", "DesignState*(DesignState*,RestoreDesignsSuccess*)", "DesignState*(DesignState*,AddDesignSuccess*)", "DesignState*(DesignState*,SaveDesignSuccess*)", "DesignState*(DesignState*,LoadDesignSuccess*)", "DesignState*(DesignState*,LoadDesignsSuccess*)", "DesignState*(DesignState*,LoadCompanySuccess*)", "DocumentEntity*(DocumentEntity*,@)", "ListUIState*(ListUIState*,ViewDocumentList*)", "ListUIState*(ListUIState*,FilterDocumentsByCustom1*)", "ListUIState*(ListUIState*,FilterDocumentsByCustom2*)", "ListUIState*(ListUIState*,FilterDocumentsByState*)", "ListUIState*(ListUIState*,FilterDocuments*)", "ListUIState*(ListUIState*,SortDocuments*)", "ListUIState*(ListUIState*,StartDocumentMultiselect*)", "ListUIState*(ListUIState*,AddToDocumentMultiselect*)", "ListUIState*(ListUIState*,RemoveFromDocumentMultiselect*)", "ListUIState*(ListUIState*,ClearDocumentMultiselect*)", "DocumentState*(DocumentState*,ArchiveDocumentSuccess*)", "DocumentState*(DocumentState*,DeleteDocumentSuccess*)", "DocumentState*(DocumentState*,RestoreDocumentSuccess*)", "DocumentState*(DocumentState*,SaveDocumentSuccess*)", "DocumentState*(DocumentState*,LoadDocumentSuccess*)", "DocumentState*(DocumentState*,LoadDocumentsSuccess*)", "JsFunction(@)", "ListUIState*(ListUIState*,ViewExpenseList*)", "ListUIState*(ListUIState*,FilterExpensesByCustom1*)", "ListUIState*(ListUIState*,FilterExpensesByCustom2*)", "ListUIState*(ListUIState*,FilterExpensesByCustom3*)", "ListUIState*(ListUIState*,FilterExpensesByCustom4*)", "ListUIState*(ListUIState*,FilterExpensesByState*)", "ListUIState*(ListUIState*,FilterExpensesByStatus*)", "ListUIState*(ListUIState*,FilterExpenses*)", "ListUIState*(ListUIState*,SortExpenses*)", "ListUIState*(ListUIState*,StartExpenseMultiselect*)", "ListUIState*(ListUIState*,AddToExpenseMultiselect*)", "ListUIState*(ListUIState*,RemoveFromExpenseMultiselect*)", "ListUIState*(ListUIState*,ClearExpenseMultiselect*)", "ExpenseState*(ExpenseState*,ArchiveExpenseSuccess*)", "ExpenseState*(ExpenseState*,DeleteExpenseSuccess*)", "ExpenseState*(ExpenseState*,RestoreExpenseSuccess*)", "ExpenseState*(ExpenseState*,AddExpenseSuccess*)", "ExpenseState*(ExpenseState*,SaveExpenseSuccess*)", "ExpenseState*(ExpenseState*,LoadExpenseSuccess*)", "ExpenseState*(ExpenseState*,LoadExpensesSuccess*)", "ExpenseState*(ExpenseState*,LoadCompanySuccess*)", "Future(int)", "ListUIState*(ListUIState*,FilterExpenseCategoriesByCustom1*)", "ListUIState*(ListUIState*,FilterExpenseCategoriesByCustom2*)", "ListUIState*(ListUIState*,FilterExpenseCategoriesByState*)", "ListUIState*(ListUIState*,FilterExpenseCategories*)", "ListUIState*(ListUIState*,SortExpenseCategories*)", "ListUIState*(ListUIState*,StartExpenseCategoryMultiselect*)", "ListUIState*(ListUIState*,AddToExpenseCategoryMultiselect*)", "ListUIState*(ListUIState*,RemoveFromExpenseCategoryMultiselect*)", "ListUIState*(ListUIState*,ClearExpenseCategoryMultiselect*)", "ExpenseCategoryState*(ExpenseCategoryState*,ArchiveExpenseCategoriesSuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,DeleteExpenseCategoriesSuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,RestoreExpenseCategoriesSuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,AddExpenseCategorySuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,SaveExpenseCategorySuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,LoadExpenseCategorySuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,LoadExpenseCategoriesSuccess*)", "ExpenseCategoryState*(ExpenseCategoryState*,LoadCompanySuccess*)", "int/(@)", "ListUIState*(ListUIState*,ViewGroupList*)", "ListUIState*(ListUIState*,FilterGroupsByState*)", "ListUIState*(ListUIState*,FilterGroups*)", "ListUIState*(ListUIState*,SortGroups*)", "ListUIState*(ListUIState*,StartGroupMultiselect*)", "ListUIState*(ListUIState*,AddToGroupMultiselect*)", "ListUIState*(ListUIState*,RemoveFromGroupMultiselect*)", "ListUIState*(ListUIState*,ClearGroupMultiselect*)", "GroupState*(GroupState*,ArchiveGroupSuccess*)", "GroupState*(GroupState*,DeleteGroupSuccess*)", "GroupState*(GroupState*,RestoreGroupSuccess*)", "GroupState*(GroupState*,AddGroupSuccess*)", "GroupState*(GroupState*,SaveGroupSuccess*)", "GroupState*(GroupState*,LoadGroupSuccess*)", "GroupState*(GroupState*,LoadGroupsSuccess*)", "GroupState*(GroupState*,LoadCompanySuccess*)", "InvoiceEntity*(InvoiceEntity*,AddInvoiceItems*)", "ListUIState*(ListUIState*,ViewInvoiceList*)", "ListUIState*(ListUIState*,FilterInvoicesByCustom1*)", "ListUIState*(ListUIState*,FilterInvoicesByCustom2*)", "ListUIState*(ListUIState*,FilterInvoicesByCustom3*)", "ListUIState*(ListUIState*,FilterInvoicesByCustom4*)", "ListUIState*(ListUIState*,FilterInvoicesByState*)", "ListUIState*(ListUIState*,FilterInvoicesByStatus*)", "ListUIState*(ListUIState*,FilterInvoices*)", "ListUIState*(ListUIState*,SortInvoices*)", "ListUIState*(ListUIState*,StartInvoiceMultiselect*)", "ListUIState*(ListUIState*,AddToInvoiceMultiselect*)", "ListUIState*(ListUIState*,RemoveFromInvoiceMultiselect*)", "ListUIState*(ListUIState*,ClearInvoiceMultiselect*)", "InvoiceState*(InvoiceState*,MarkInvoicesSentSuccess*)", "InvoiceState*(InvoiceState*,MarkInvoicesPaidSuccess*)", "InvoiceState*(InvoiceState*,CancelInvoicesSuccess*)", "InvoiceState*(InvoiceState*,ArchiveInvoicesSuccess*)", "InvoiceState*(InvoiceState*,DeleteInvoicesSuccess*)", "InvoiceState*(InvoiceState*,EmailInvoiceSuccess*)", "InvoiceState*(InvoiceState*,RestoreInvoicesSuccess*)", "InvoiceState*(InvoiceState*,AddInvoiceSuccess*)", "InvoiceState*(InvoiceState*,@)", "InvoiceState*(InvoiceState*,LoadInvoicesSuccess*)", "InvoiceState*(InvoiceState*,LoadCompanySuccess*)", "_RandomAccessFile(@)", "ListUIState*(ListUIState*,ViewPaymentList*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom1*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom2*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom3*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom4*)", "ListUIState*(ListUIState*,FilterPaymentsByState*)", "ListUIState*(ListUIState*,FilterPayments*)", "ListUIState*(ListUIState*,SortPayments*)", "ListUIState*(ListUIState*,StartPaymentMultiselect*)", "ListUIState*(ListUIState*,AddToPaymentMultiselect*)", "ListUIState*(ListUIState*,RemoveFromPaymentMultiselect*)", "ListUIState*(ListUIState*,ClearPaymentMultiselect*)", "PaymentState*(PaymentState*,ArchivePaymentsSuccess*)", "PaymentState*(PaymentState*,DeletePaymentsSuccess*)", "PaymentState*(PaymentState*,RestorePaymentsSuccess*)", "PaymentState*(PaymentState*,AddPaymentSuccess*)", "PaymentState*(PaymentState*,SavePaymentSuccess*)", "PaymentState*(PaymentState*,LoadPaymentSuccess*)", "PaymentState*(PaymentState*,LoadPaymentsSuccess*)", "PaymentState*(PaymentState*,LoadCompanySuccess*)", "Future<@>()", "ListUIState*(ListUIState*,ViewPaymentTermList*)", "ListUIState*(ListUIState*,FilterPaymentTermsByCustom1*)", "ListUIState*(ListUIState*,FilterPaymentTermsByCustom2*)", "ListUIState*(ListUIState*,FilterPaymentTermsByState*)", "ListUIState*(ListUIState*,FilterPaymentTerms*)", "ListUIState*(ListUIState*,SortPaymentTerms*)", "ListUIState*(ListUIState*,StartPaymentTermMultiselect*)", "ListUIState*(ListUIState*,AddToPaymentTermMultiselect*)", "ListUIState*(ListUIState*,RemoveFromPaymentTermMultiselect*)", "ListUIState*(ListUIState*,ClearPaymentTermMultiselect*)", "PaymentTermState*(PaymentTermState*,ArchivePaymentTermsSuccess*)", "PaymentTermState*(PaymentTermState*,DeletePaymentTermsSuccess*)", "PaymentTermState*(PaymentTermState*,RestorePaymentTermsSuccess*)", "PaymentTermState*(PaymentTermState*,AddPaymentTermSuccess*)", "PaymentTermState*(PaymentTermState*,SavePaymentTermSuccess*)", "PaymentTermState*(PaymentTermState*,LoadPaymentTermSuccess*)", "PaymentTermState*(PaymentTermState*,LoadPaymentTermsSuccess*)", "PaymentTermState*(PaymentTermState*,LoadCompanySuccess*)", "Element2(Node1)", "ListUIState*(ListUIState*,ViewProductList*)", "ListUIState*(ListUIState*,FilterProductsByState*)", "ListUIState*(ListUIState*,FilterProductsByCustom1*)", "ListUIState*(ListUIState*,FilterProductsByCustom2*)", "ListUIState*(ListUIState*,FilterProductsByCustom3*)", "ListUIState*(ListUIState*,FilterProductsByCustom4*)", "ListUIState*(ListUIState*,FilterProducts*)", "ListUIState*(ListUIState*,SortProducts*)", "ListUIState*(ListUIState*,StartProductMultiselect*)", "ListUIState*(ListUIState*,AddToProductMultiselect*)", "ListUIState*(ListUIState*,RemoveFromProductMultiselect*)", "ListUIState*(ListUIState*,ClearProductMultiselect*)", "ProductState*(ProductState*,ArchiveProductsSuccess*)", "ProductState*(ProductState*,DeleteProductsSuccess*)", "ProductState*(ProductState*,RestoreProductsSuccess*)", "ProductState*(ProductState*,AddProductSuccess*)", "ProductState*(ProductState*,SaveProductSuccess*)", "ProductState*(ProductState*,LoadProductSuccess*)", "ProductState*(ProductState*,LoadProductsSuccess*)", "ProductState*(ProductState*,LoadCompanySuccess*)", "@(@,@)", "ListUIState*(ListUIState*,ViewProjectList*)", "ListUIState*(ListUIState*,FilterProjectsByCustom1*)", "ListUIState*(ListUIState*,FilterProjectsByCustom2*)", "ListUIState*(ListUIState*,FilterProjectsByCustom3*)", "ListUIState*(ListUIState*,FilterProjectsByCustom4*)", "ListUIState*(ListUIState*,FilterProjectsByState*)", "ListUIState*(ListUIState*,FilterProjects*)", "ListUIState*(ListUIState*,SortProjects*)", "ListUIState*(ListUIState*,StartProjectMultiselect*)", "ListUIState*(ListUIState*,AddToProjectMultiselect*)", "ListUIState*(ListUIState*,RemoveFromProjectMultiselect*)", "ListUIState*(ListUIState*,ClearProjectMultiselect*)", "ProjectState*(ProjectState*,ArchiveProjectSuccess*)", "ProjectState*(ProjectState*,DeleteProjectSuccess*)", "ProjectState*(ProjectState*,RestoreProjectSuccess*)", "ProjectState*(ProjectState*,AddProjectSuccess*)", "ProjectState*(ProjectState*,SaveProjectSuccess*)", "ProjectState*(ProjectState*,LoadProjectSuccess*)", "ProjectState*(ProjectState*,LoadProjectsSuccess*)", "ProjectState*(ProjectState*,LoadCompanySuccess*)", "InvoiceEntity*(InvoiceEntity*,AddPurchaseOrderItems*)", "ListUIState*(ListUIState*,ViewPurchaseOrderList*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByCustom1*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByCustom2*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByCustom3*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByCustom4*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByState*)", "ListUIState*(ListUIState*,FilterPurchaseOrdersByStatus*)", "ListUIState*(ListUIState*,FilterPurchaseOrders*)", "ListUIState*(ListUIState*,SortPurchaseOrders*)", "ListUIState*(ListUIState*,StartPurchaseOrderMultiselect*)", "ListUIState*(ListUIState*,AddToPurchaseOrderMultiselect*)", "ListUIState*(ListUIState*,RemoveFromPurchaseOrderMultiselect*)", "ListUIState*(ListUIState*,ClearPurchaseOrderMultiselect*)", "PurchaseOrderState*(PurchaseOrderState*,MarkPurchaseOrderSentSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,ConvertPurchaseOrdersToExpensesSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,AddPurchaseOrdersToInventorySuccess*)", "PurchaseOrderState*(PurchaseOrderState*,AcceptPurchaseOrderSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,CancelPurchaseOrderSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,ArchivePurchaseOrdersSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,DeletePurchaseOrdersSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,RestorePurchaseOrdersSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,EmailPurchaseOrderSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,ApprovePurchaseOrderSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,AddPurchaseOrderSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,@)", "PurchaseOrderState*(PurchaseOrderState*,LoadPurchaseOrdersSuccess*)", "PurchaseOrderState*(PurchaseOrderState*,LoadCompanySuccess*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteItems*)", "ListUIState*(ListUIState*,ViewQuoteList*)", "ListUIState*(ListUIState*,FilterQuotesByCustom1*)", "ListUIState*(ListUIState*,FilterQuotesByCustom2*)", "ListUIState*(ListUIState*,FilterQuotesByCustom3*)", "ListUIState*(ListUIState*,FilterQuotesByCustom4*)", "ListUIState*(ListUIState*,FilterQuotesByState*)", "ListUIState*(ListUIState*,FilterQuotesByStatus*)", "ListUIState*(ListUIState*,FilterQuotes*)", "ListUIState*(ListUIState*,SortQuotes*)", "ListUIState*(ListUIState*,StartQuoteMultiselect*)", "ListUIState*(ListUIState*,AddToQuoteMultiselect*)", "ListUIState*(ListUIState*,RemoveFromQuoteMultiselect*)", "ListUIState*(ListUIState*,ClearQuoteMultiselect*)", "QuoteState*(QuoteState*,MarkSentQuoteSuccess*)", "QuoteState*(QuoteState*,ArchiveQuotesSuccess*)", "QuoteState*(QuoteState*,DeleteQuotesSuccess*)", "QuoteState*(QuoteState*,RestoreQuotesSuccess*)", "QuoteState*(QuoteState*,EmailQuoteSuccess*)", "QuoteState*(QuoteState*,ConvertQuoteSuccess*)", "QuoteState*(QuoteState*,AddQuoteSuccess*)", "QuoteState*(QuoteState*,@)", "QuoteState*(QuoteState*,LoadQuotesSuccess*)", "QuoteState*(QuoteState*,LoadCompanySuccess*)", "ListUIState*(ListUIState*,ViewRecurringExpenseList*)", "ListUIState*(ListUIState*,FilterRecurringExpensesByCustom1*)", "ListUIState*(ListUIState*,FilterRecurringExpensesByCustom2*)", "ListUIState*(ListUIState*,FilterRecurringExpensesByState*)", "ListUIState*(ListUIState*,FilterRecurringExpenses*)", "ListUIState*(ListUIState*,SortRecurringExpenses*)", "ListUIState*(ListUIState*,StartRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,AddToRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,RemoveFromRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,ClearRecurringExpenseMultiselect*)", "RecurringExpenseState*(RecurringExpenseState*,ArchiveRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,DeleteRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,RestoreRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,AddRecurringExpenseSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,SaveRecurringExpenseSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,StartRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,StopRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,LoadRecurringExpenseSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,LoadRecurringExpensesSuccess*)", "RecurringExpenseState*(RecurringExpenseState*,LoadCompanySuccess*)", "InvoiceEntity*(InvoiceEntity*,AddRecurringInvoiceItems*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByCustom1*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByCustom2*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByCustom3*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByCustom4*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByState*)", "ListUIState*(ListUIState*,FilterRecurringInvoicesByStatus*)", "ListUIState*(ListUIState*,FilterRecurringInvoices*)", "ListUIState*(ListUIState*,SortRecurringInvoices*)", "ListUIState*(ListUIState*,StartRecurringInvoiceMultiselect*)", "ListUIState*(ListUIState*,AddToRecurringInvoiceMultiselect*)", "ListUIState*(ListUIState*,RemoveFromRecurringInvoiceMultiselect*)", "ListUIState*(ListUIState*,ClearRecurringInvoiceMultiselect*)", "RecurringInvoiceState*(RecurringInvoiceState*,ArchiveRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,DeleteRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,EmailRecurringInvoiceSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,RestoreRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,SendNowRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,StartRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,StopRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,AddRecurringInvoiceSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,@)", "RecurringInvoiceState*(RecurringInvoiceState*,LoadRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,LoadCompanySuccess*)", "StaticState*(StaticState*,LoadStaticSuccess*)", "~(Node1,Node1?)", "ListUIState*(ListUIState*,FilterSubscriptionsByCustom1*)", "ListUIState*(ListUIState*,FilterSubscriptionsByCustom2*)", "ListUIState*(ListUIState*,FilterSubscriptionsByState*)", "ListUIState*(ListUIState*,FilterSubscriptions*)", "ListUIState*(ListUIState*,SortSubscriptions*)", "ListUIState*(ListUIState*,StartSubscriptionMultiselect*)", "ListUIState*(ListUIState*,AddToSubscriptionMultiselect*)", "ListUIState*(ListUIState*,RemoveFromSubscriptionMultiselect*)", "ListUIState*(ListUIState*,ClearSubscriptionMultiselect*)", "SubscriptionState*(SubscriptionState*,ArchiveSubscriptionsSuccess*)", "SubscriptionState*(SubscriptionState*,DeleteSubscriptionsSuccess*)", "SubscriptionState*(SubscriptionState*,RestoreSubscriptionsSuccess*)", "SubscriptionState*(SubscriptionState*,AddSubscriptionSuccess*)", "SubscriptionState*(SubscriptionState*,SaveSubscriptionSuccess*)", "SubscriptionState*(SubscriptionState*,LoadSubscriptionSuccess*)", "SubscriptionState*(SubscriptionState*,LoadSubscriptionsSuccess*)", "SubscriptionState*(SubscriptionState*,LoadCompanySuccess*)", "~(DomException)", "ListUIState*(ListUIState*,ViewTaskList*)", "ListUIState*(ListUIState*,FilterTasksByCustom1*)", "ListUIState*(ListUIState*,FilterTasksByCustom2*)", "ListUIState*(ListUIState*,FilterTasksByState*)", "ListUIState*(ListUIState*,FilterTasksByStatus*)", "ListUIState*(ListUIState*,FilterTasks*)", "ListUIState*(ListUIState*,SortTasks*)", "TaskEntity*(TaskEntity*,AddTaskTime*)", "TaskEntity*(TaskEntity*,DeleteTaskTime*)", "TaskEntity*(TaskEntity*,UpdateTaskTime*)", "ListUIState*(ListUIState*,StartTaskMultiselect*)", "ListUIState*(ListUIState*,AddToTaskMultiselect*)", "ListUIState*(ListUIState*,RemoveFromTaskMultiselect*)", "ListUIState*(ListUIState*,ClearTaskMultiselect*)", "TaskState*(TaskState*,SortTasksSuccess*)", "TaskState*(TaskState*,ArchiveTaskSuccess*)", "TaskState*(TaskState*,StartTasksSuccess*)", "TaskState*(TaskState*,StopTasksSuccess*)", "TaskState*(TaskState*,DeleteTaskSuccess*)", "TaskState*(TaskState*,RestoreTaskSuccess*)", "TaskState*(TaskState*,AddTaskSuccess*)", "TaskState*(TaskState*,SaveTaskSuccess*)", "TaskState*(TaskState*,LoadTaskSuccess*)", "TaskState*(TaskState*,LoadTasksSuccess*)", "TaskState*(TaskState*,LoadCompanySuccess*)", "bool(Element2)", "ListUIState*(ListUIState*,ViewTaskStatusList*)", "ListUIState*(ListUIState*,FilterTaskStatusesByCustom1*)", "ListUIState*(ListUIState*,FilterTaskStatusesByCustom2*)", "ListUIState*(ListUIState*,FilterTaskStatusesByState*)", "ListUIState*(ListUIState*,FilterTaskStatuses*)", "ListUIState*(ListUIState*,SortTaskStatuses*)", "ListUIState*(ListUIState*,StartTaskStatusMultiselect*)", "ListUIState*(ListUIState*,AddToTaskStatusMultiselect*)", "ListUIState*(ListUIState*,RemoveFromTaskStatusMultiselect*)", "ListUIState*(ListUIState*,ClearTaskStatusMultiselect*)", "TaskStatusState*(TaskStatusState*,SortTasksSuccess*)", "TaskStatusState*(TaskStatusState*,ArchiveTaskStatusesSuccess*)", "TaskStatusState*(TaskStatusState*,DeleteTaskStatusesSuccess*)", "TaskStatusState*(TaskStatusState*,RestoreTaskStatusesSuccess*)", "TaskStatusState*(TaskStatusState*,AddTaskStatusSuccess*)", "TaskStatusState*(TaskStatusState*,SaveTaskStatusSuccess*)", "TaskStatusState*(TaskStatusState*,LoadTaskStatusSuccess*)", "TaskStatusState*(TaskStatusState*,LoadTaskStatusesSuccess*)", "TaskStatusState*(TaskStatusState*,LoadCompanySuccess*)", "~(Blob?)", "ListUIState*(ListUIState*,ViewTaxRateList*)", "ListUIState*(ListUIState*,FilterTaxRatesByState*)", "ListUIState*(ListUIState*,FilterTaxRates*)", "ListUIState*(ListUIState*,SortTaxRates*)", "ListUIState*(ListUIState*,StartTaxRateMultiselect*)", "ListUIState*(ListUIState*,AddToTaxRateMultiselect*)", "ListUIState*(ListUIState*,RemoveFromTaxRateMultiselect*)", "ListUIState*(ListUIState*,ClearTaxRateMultiselect*)", "TaxRateState*(TaxRateState*,ArchiveTaxRatesSuccess*)", "TaxRateState*(TaxRateState*,DeleteTaxRatesSuccess*)", "TaxRateState*(TaxRateState*,RestoreTaxRatesSuccess*)", "TaxRateState*(TaxRateState*,AddTaxRateSuccess*)", "TaxRateState*(TaxRateState*,SaveTaxRateSuccess*)", "TaxRateState*(TaxRateState*,LoadTaxRateSuccess*)", "TaxRateState*(TaxRateState*,LoadTaxRatesSuccess*)", "TaxRateState*(TaxRateState*,LoadCompanySuccess*)", "Uint8List(@,@)", "ListUIState*(ListUIState*,ViewTokenList*)", "ListUIState*(ListUIState*,FilterTokensByCustom1*)", "ListUIState*(ListUIState*,FilterTokensByCustom2*)", "ListUIState*(ListUIState*,FilterTokensByState*)", "ListUIState*(ListUIState*,FilterTokens*)", "ListUIState*(ListUIState*,SortTokens*)", "ListUIState*(ListUIState*,StartTokenMultiselect*)", "ListUIState*(ListUIState*,AddToTokenMultiselect*)", "ListUIState*(ListUIState*,RemoveFromTokenMultiselect*)", "ListUIState*(ListUIState*,ClearTokenMultiselect*)", "TokenState*(TokenState*,ArchiveTokensSuccess*)", "TokenState*(TokenState*,DeleteTokensSuccess*)", "TokenState*(TokenState*,RestoreTokensSuccess*)", "TokenState*(TokenState*,AddTokenSuccess*)", "TokenState*(TokenState*,SaveTokenSuccess*)", "TokenState*(TokenState*,LoadTokenSuccess*)", "TokenState*(TokenState*,LoadTokensSuccess*)", "TokenState*(TokenState*,LoadCompanySuccess*)", "~(String,int?)", "ListUIState*(ListUIState*,ViewUserList*)", "ListUIState*(ListUIState*,FilterUsersByCustom1*)", "ListUIState*(ListUIState*,FilterUsersByCustom2*)", "ListUIState*(ListUIState*,FilterUsersByCustom3*)", "ListUIState*(ListUIState*,FilterUsersByCustom4*)", "ListUIState*(ListUIState*,FilterUsersByState*)", "ListUIState*(ListUIState*,FilterUsers*)", "ListUIState*(ListUIState*,SortUsers*)", "ListUIState*(ListUIState*,StartUserMultiselect*)", "ListUIState*(ListUIState*,AddToUserMultiselect*)", "ListUIState*(ListUIState*,RemoveFromUserMultiselect*)", "ListUIState*(ListUIState*,ClearUserMultiselect*)", "UserState*(UserState*,ArchiveUserSuccess*)", "UserState*(UserState*,DeleteUserSuccess*)", "UserState*(UserState*,RestoreUserSuccess*)", "UserState*(UserState*,RemoveUserSuccess*)", "UserState*(UserState*,AddUserSuccess*)", "UserState*(UserState*,SaveUserSuccess*)", "UserState*(UserState*,SaveAuthUserSuccess*)", "UserState*(UserState*,ConnecOAuthUserSuccess*)", "UserState*(UserState*,ConnecGmailUserSuccess*)", "UserState*(UserState*,LoadUserSuccess*)", "UserState*(UserState*,LoadUsersSuccess*)", "UserState*(UserState*,LoadCompanySuccess*)", "VendorContactEntity*(VendorContactEntity*,@)", "~(String,int)", "VendorEntity*(VendorEntity*,AddVendorContact*)", "VendorEntity*(VendorEntity*,DeleteVendorContact*)", "VendorEntity*(VendorEntity*,UpdateVendorContact*)", "ListUIState*(ListUIState*,ViewVendorList*)", "ListUIState*(ListUIState*,FilterVendorsByCustom1*)", "ListUIState*(ListUIState*,FilterVendorsByCustom2*)", "ListUIState*(ListUIState*,FilterVendorsByCustom3*)", "ListUIState*(ListUIState*,FilterVendorsByCustom4*)", "ListUIState*(ListUIState*,FilterVendorsByState*)", "ListUIState*(ListUIState*,FilterVendors*)", "ListUIState*(ListUIState*,SortVendors*)", "ListUIState*(ListUIState*,StartVendorMultiselect*)", "ListUIState*(ListUIState*,AddToVendorMultiselect*)", "ListUIState*(ListUIState*,RemoveFromVendorMultiselect*)", "ListUIState*(ListUIState*,ClearVendorMultiselect*)", "VendorState*(VendorState*,ArchiveVendorSuccess*)", "VendorState*(VendorState*,DeleteVendorSuccess*)", "VendorState*(VendorState*,RestoreVendorSuccess*)", "VendorState*(VendorState*,AddVendorSuccess*)", "VendorState*(VendorState*,SaveVendorSuccess*)", "VendorState*(VendorState*,LoadVendorSuccess*)", "VendorState*(VendorState*,LoadVendorsSuccess*)", "VendorState*(VendorState*,LoadCompanySuccess*)", "Map(Map,String)", "ListUIState*(ListUIState*,ViewWebhookList*)", "ListUIState*(ListUIState*,FilterWebhooksByCustom1*)", "ListUIState*(ListUIState*,FilterWebhooksByCustom2*)", "ListUIState*(ListUIState*,FilterWebhooksByState*)", "ListUIState*(ListUIState*,FilterWebhooks*)", "ListUIState*(ListUIState*,SortWebhooks*)", "ListUIState*(ListUIState*,StartWebhookMultiselect*)", "ListUIState*(ListUIState*,AddToWebhookMultiselect*)", "ListUIState*(ListUIState*,RemoveFromWebhookMultiselect*)", "ListUIState*(ListUIState*,ClearWebhookMultiselect*)", "WebhookState*(WebhookState*,ArchiveWebhooksSuccess*)", "WebhookState*(WebhookState*,DeleteWebhooksSuccess*)", "WebhookState*(WebhookState*,RestoreWebhooksSuccess*)", "WebhookState*(WebhookState*,AddWebhookSuccess*)", "WebhookState*(WebhookState*,SaveWebhookSuccess*)", "WebhookState*(WebhookState*,LoadWebhookSuccess*)", "WebhookState*(WebhookState*,LoadWebhooksSuccess*)", "WebhookState*(WebhookState*,LoadCompanySuccess*)", "ConfirmEmailVM*(Store*)", "AppDrawerVM*(Store*)", "MenuDrawerVM*(Store*)", "LoginVM*(Store*)", "ClientListVM*(Store*)", "ClientScreenVM*(Store*)", "CompanyGatewayListVM*(Store*)", "CompanyGatewayScreenVM*(Store*)", "CreditListVM*(Store*)", "CreditScreenVM*(Store*)", "DashboardVM*(Store*)", "DesignListVM*(Store*)", "DesignScreenVM*(Store*)", "DocumentListVM*(Store*)", "DocumentScreenVM*(Store*)", "ExpenseListVM*(Store*)", "ExpenseScreenVM*(Store*)", "ExpenseCategoryListVM*(Store*)", "ExpenseCategoryScreenVM*(Store*)", "GroupListVM*(Store*)", "GroupScreenVM*(Store*)", "InvoiceListVM*(Store*)", "InvoiceScreenVM*(Store*)", "PaymentListVM*(Store*)", "PaymentScreenVM*(Store*)", "PaymentTermListVM*(Store*)", "PaymentTermScreenVM*(Store*)", "ProductListVM*(Store*)", "ProductScreenVM*(Store*)", "ProjectListVM*(Store*)", "ProjectScreenVM*(Store*)", "PurchaseOrderListVM*(Store*)", "PurchaseOrderScreenVM*(Store*)", "QuoteListVM*(Store*)", "QuoteScreenVM*(Store*)", "RecurringExpenseListVM*(Store*)", "RecurringExpenseScreenVM*(Store*)", "RecurringInvoiceListVM*(Store*)", "RecurringInvoiceScreenVM*(Store*)", "ReportsScreenVM*(Store*)", "AccountManagementVM*(Store*)", "ClientPortalVM*(Store*)", "CompanyDetailsVM*(Store*)", "CreditCardsAndBanksVM*(Store*)", "CustomFieldsVM*(Store*)", "DataVisualizationsVM*(Store*)", "DeviceSettingsVM*(Store*)", "EmailSettingsVM*(Store*)", "ExpenseSettingsVM*(Store*)", "GeneratedNumbersVM*(Store*)", "ImportExportVM*(Store*)", "InvoiceDesignVM*(Store*)", "LocalizationSettingsVM*(Store*)", "PaymentSettingsVM*(Store*)", "ProductSettingsVM*(Store*)", "SettingsListVM*(Store*)", "SettingsScreenVM*(Store*)", "TaskSettingsVM*(Store*)", "TaxSettingsVM*(Store*)", "TemplatesAndRemindersVM*(Store*)", "UserDetailsVM*(Store*)", "WorkflowSettingsVM*(Store*)", "SubscriptionListVM*(Store*)", "SubscriptionScreenVM*(Store*)", "KanbanVM*(Store*)", "TaskListVM*(Store*)", "TaskScreenVM*(Store*)", "TaskStatusListVM*(Store*)", "TaskStatusScreenVM*(Store*)", "TaxRateListVM*(Store*)", "TaxRateScreenVM*(Store*)", "TokenListVM*(Store*)", "TokenScreenVM*(Store*)", "UserListVM*(Store*)", "UserScreenVM*(Store*)", "VendorListVM*(Store*)", "VendorScreenVM*(Store*)", "WebhookListVM*(Store*)", "WebhookScreenVM*(Store*)", "Future()", "~(SentryLevel,String{exception:Object?,logger:String?,stackTrace:StackTrace?})", "Widget(BuildContext,UnorderedListItemComponent)", "double(TextStyle,int)", "Widget(BuildContext,OrderedListItemComponent)", "Future<@>(@)", "TextStyle(Set,TextStyle)", "Widget(BuildContext,Offset)", "Future<1^>(1^/(0^),0^{debugLabel:String?})", "~(String?{wrapWidth:int?})", "~(@,StackTrace)", "GoogleSignInUserData?(Map?)", "bool*(bool*,StartLoading*)", "bool*(bool*,StopLoading*)", "bool*(bool*,StartSaving*)", "bool*(bool*,StopSaving*)", "String*(String*,FilterTaskStatusesByState*)"], interceptorsByTag: null, leafTags: null, arrayRti: Symbol("$ti") }; A._Universe_addRules(init.typeUniverse, JSON.parse('{"CanvasKit":"LegacyJavaScriptObject","SkFontSlant":"LegacyJavaScriptObject","SkFontWeight":"LegacyJavaScriptObject","SkTextDirection":"LegacyJavaScriptObject","SkTextAlign":"LegacyJavaScriptObject","SkTextHeightBehavior":"LegacyJavaScriptObject","SkRectHeightStyle":"LegacyJavaScriptObject","SkRectWidthStyle":"LegacyJavaScriptObject","SkClipOp":"LegacyJavaScriptObject","SkFillType":"LegacyJavaScriptObject","SkBlurStyle":"LegacyJavaScriptObject","SkStrokeCap":"LegacyJavaScriptObject","SkPaintStyle":"LegacyJavaScriptObject","SkBlendMode":"LegacyJavaScriptObject","SkStrokeJoin":"LegacyJavaScriptObject","SkTileMode":"LegacyJavaScriptObject","SkAnimatedImage":"LegacyJavaScriptObject","SkImage":"LegacyJavaScriptObject","SkShader":"LegacyJavaScriptObject","SkPaint":"LegacyJavaScriptObject","CkFilterOptions":"LegacyJavaScriptObject","SkMaskFilter":"LegacyJavaScriptObject","SkColorFilter":"LegacyJavaScriptObject","SkImageFilter":"LegacyJavaScriptObject","SkPath":"LegacyJavaScriptObject","SkPicture":"LegacyJavaScriptObject","SkTextStyle":"LegacyJavaScriptObject","SkTextDecorationStyle":"LegacyJavaScriptObject","SkTextBaseline":"LegacyJavaScriptObject","SkPlaceholderAlignment":"LegacyJavaScriptObject","SkTextShadow":"LegacyJavaScriptObject","SkFontFeature":"LegacyJavaScriptObject","SkFont":"LegacyJavaScriptObject","SkParagraph":"LegacyJavaScriptObject","SkDeletable":"LegacyJavaScriptObject","InitializeEngineFnParameters":"LegacyJavaScriptObject","FlutterAppRunner":"LegacyJavaScriptObject","RunAppFnParameters":"LegacyJavaScriptObject","FlutterApp":"LegacyJavaScriptObject","Promise":"LegacyJavaScriptObject","JsUrlStrategy":"LegacyJavaScriptObject","ImageDecoder":"LegacyJavaScriptObject","DecodeResult":"LegacyJavaScriptObject","H5vcc":"LegacyJavaScriptObject","CanvasKitInitOptions":"LegacyJavaScriptObject","CanvasKitInitPromise":"LegacyJavaScriptObject","ColorSpace":"LegacyJavaScriptObject","SkWebGLContextOptions":"LegacyJavaScriptObject","SkSurface":"LegacyJavaScriptObject","SkGrContext":"LegacyJavaScriptObject","SkFontSlantEnum":"LegacyJavaScriptObject","SkFontWeightEnum":"LegacyJavaScriptObject","SkAffinityEnum":"LegacyJavaScriptObject","SkAffinity":"LegacyJavaScriptObject","SkTextDirectionEnum":"LegacyJavaScriptObject","SkTextAlignEnum":"LegacyJavaScriptObject","SkTextHeightBehaviorEnum":"LegacyJavaScriptObject","SkRectHeightStyleEnum":"LegacyJavaScriptObject","SkRectWidthStyleEnum":"LegacyJavaScriptObject","SkVertexModeEnum":"LegacyJavaScriptObject","SkVertexMode":"LegacyJavaScriptObject","SkPointModeEnum":"LegacyJavaScriptObject","SkPointMode":"LegacyJavaScriptObject","SkClipOpEnum":"LegacyJavaScriptObject","SkFillTypeEnum":"LegacyJavaScriptObject","SkPathOpEnum":"LegacyJavaScriptObject","SkPathOp":"LegacyJavaScriptObject","SkBlurStyleEnum":"LegacyJavaScriptObject","SkStrokeCapEnum":"LegacyJavaScriptObject","SkPaintStyleEnum":"LegacyJavaScriptObject","SkBlendModeEnum":"LegacyJavaScriptObject","SkStrokeJoinEnum":"LegacyJavaScriptObject","SkTileModeEnum":"LegacyJavaScriptObject","SkFilterModeEnum":"LegacyJavaScriptObject","SkFilterMode":"LegacyJavaScriptObject","SkMipmapModeEnum":"LegacyJavaScriptObject","SkMipmapMode":"LegacyJavaScriptObject","SkAlphaTypeEnum":"LegacyJavaScriptObject","SkAlphaType":"LegacyJavaScriptObject","SkColorTypeEnum":"LegacyJavaScriptObject","SkColorType":"LegacyJavaScriptObject","SkShaderNamespace":"LegacyJavaScriptObject","SkMaskFilterNamespace":"LegacyJavaScriptObject","_CkCubicFilterOptions":"LegacyJavaScriptObject","_CkTransformFilterOptions":"LegacyJavaScriptObject","SkColorFilterNamespace":"LegacyJavaScriptObject","SkImageFilterNamespace":"LegacyJavaScriptObject","SkPathNamespace":"LegacyJavaScriptObject","_NativeFloat32ArrayType":"LegacyJavaScriptObject","SkFloat32List":"LegacyJavaScriptObject","SkContourMeasureIter":"LegacyJavaScriptObject","SkContourMeasure":"LegacyJavaScriptObject","SkPictureRecorder":"LegacyJavaScriptObject","SkCanvas":"LegacyJavaScriptObject","SkParagraphBuilderNamespace":"LegacyJavaScriptObject","SkParagraphBuilder":"LegacyJavaScriptObject","SkParagraphStyle":"LegacyJavaScriptObject","SkParagraphStyleProperties":"LegacyJavaScriptObject","SkTextDecorationStyleEnum":"LegacyJavaScriptObject","SkTextBaselineEnum":"LegacyJavaScriptObject","SkPlaceholderAlignmentEnum":"LegacyJavaScriptObject","SkTextStyleProperties":"LegacyJavaScriptObject","SkStrutStyleProperties":"LegacyJavaScriptObject","SkFontStyle":"LegacyJavaScriptObject","SkTypeface":"LegacyJavaScriptObject","SkFontMgr":"LegacyJavaScriptObject","TypefaceFontProvider":"LegacyJavaScriptObject","SkLineMetrics":"LegacyJavaScriptObject","SkTextPosition":"LegacyJavaScriptObject","SkTextRange":"LegacyJavaScriptObject","SkVertices":"LegacyJavaScriptObject","SkTonalColors":"LegacyJavaScriptObject","SkFontMgrNamespace":"LegacyJavaScriptObject","TypefaceFontProviderNamespace":"LegacyJavaScriptObject","SkTypefaceFactory":"LegacyJavaScriptObject","JsConstructor":"LegacyJavaScriptObject","SkObjectFinalizationRegistry":"LegacyJavaScriptObject","SkData":"LegacyJavaScriptObject","SkImageInfo":"LegacyJavaScriptObject","SkPartialImageInfo":"LegacyJavaScriptObject","JsFlutterConfiguration":"LegacyJavaScriptObject","FlutterEngineInitializer":"LegacyJavaScriptObject","JsPromise":"LegacyJavaScriptObject","ImageDecoderOptions":"LegacyJavaScriptObject","DecodeOptions":"LegacyJavaScriptObject","VideoFrame":"LegacyJavaScriptObject","ImageTrackList":"LegacyJavaScriptObject","ImageTrack":"LegacyJavaScriptObject","PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","JavaScriptFunction":"LegacyJavaScriptObject","JsUrlStrategy0":"LegacyJavaScriptObject","LoadConfig":"LegacyJavaScriptObject","GoogleAuthInitFailureError":"LegacyJavaScriptObject","GoogleAuth":"LegacyJavaScriptObject","GoogleUser":"LegacyJavaScriptObject","GoogleAuthSignInError":"LegacyJavaScriptObject","OfflineAccessResponse":"LegacyJavaScriptObject","_GoogleAuth":"LegacyJavaScriptObject","IsSignedIn":"LegacyJavaScriptObject","CurrentUser":"LegacyJavaScriptObject","SigninOptions":"LegacyJavaScriptObject","OfflineAccessOptions":"LegacyJavaScriptObject","ClientConfig":"LegacyJavaScriptObject","SigninOptionsBuilder":"LegacyJavaScriptObject","BasicProfile":"LegacyJavaScriptObject","AuthResponse":"LegacyJavaScriptObject","AuthorizeConfig":"LegacyJavaScriptObject","AuthorizeResponse":"LegacyJavaScriptObject","_GoogleUser":"LegacyJavaScriptObject","Promise0":"LegacyJavaScriptObject","Promise1":"LegacyJavaScriptObject","BindConfiguration":"LegacyJavaScriptObject","Data":"LegacyJavaScriptObject","Boundary":"LegacyJavaScriptObject","ViewPort":"LegacyJavaScriptObject","Options":"LegacyJavaScriptObject","CroppieJS":"LegacyJavaScriptObject","AuthenticationResult0":"LegacyJavaScriptObject","AccountInfo":"LegacyJavaScriptObject","Configuration0":"LegacyJavaScriptObject","BrowserAuthOptions0":"LegacyJavaScriptObject","CacheOptions":"LegacyJavaScriptObject","BrowserSystemOptions":"LegacyJavaScriptObject","LoggerOptions":"LegacyJavaScriptObject","AuthError":"LegacyJavaScriptObject","EventMessage":"LegacyJavaScriptObject","Logger1":"LegacyJavaScriptObject","NavigationOptions":"LegacyJavaScriptObject","NetworkRequestOptions":"LegacyJavaScriptObject","NetworkResponse":"LegacyJavaScriptObject","PublicClientApplication0":"LegacyJavaScriptObject","SsoSilentRequest":"LegacyJavaScriptObject","EndSessionRequest":"LegacyJavaScriptObject","EndSessionPopupRequest0":"LegacyJavaScriptObject","SilentRequest":"LegacyJavaScriptObject","RedirectRequest":"LegacyJavaScriptObject","PopupRequest0":"LegacyJavaScriptObject","CommonSilentFlowRequest":"LegacyJavaScriptObject","CommonAuthorizationUrlRequest0":"LegacyJavaScriptObject","CommonEndSessionRequest0":"LegacyJavaScriptObject","JsError":"LegacyJavaScriptObject","Promise2":"LegacyJavaScriptObject","Array":"LegacyJavaScriptObject","Object0":"LegacyJavaScriptObject","Reflect":"LegacyJavaScriptObject","PdfJsDoc":"LegacyJavaScriptObject","PdfJsPage":"LegacyJavaScriptObject","PdfJs":"LegacyJavaScriptObject","Settings":"LegacyJavaScriptObject","PdfJsDocLoader":"LegacyJavaScriptObject","PdfJsViewport":"LegacyJavaScriptObject","PdfJsRender":"LegacyJavaScriptObject","SignInResponseI":"LegacyJavaScriptObject","SignInWithAppleInitOptions":"LegacyJavaScriptObject","AuthorizationI":"LegacyJavaScriptObject","UserI":"LegacyJavaScriptObject","NameI":"LegacyJavaScriptObject","AnimationEvent":"Event","AudioContext":"BaseAudioContext","AbsoluteOrientationSensor":"EventTarget","OrientationSensor":"EventTarget","Sensor":"EventTarget","AnimateElement":"SvgElement","AnimationElement":"SvgElement","AElement":"GraphicsElement","CircleElement":"GeometryElement","_Request":"Body","_ResourceProgressEvent":"ProgressEvent","AudioElement":"HtmlElement","MediaElement":"HtmlElement","ShadowRoot":"Node1","DocumentFragment":"Node1","XmlDocument":"Document1","VttCue":"TextTrackCue","CompositionEvent":"UIEvent","AbortPaymentEvent":"ExtendableEvent","DedicatedWorkerGlobalScope":"WorkerGlobalScope","CDataSection":"CharacterData","Text2":"CharacterData","MidiInput":"MidiPort","HttpRequestUpload":"HttpRequestEventTarget","HtmlFormControlsCollection":"HtmlCollection","CssCharsetRule":"CssRule","CanvasCaptureMediaStreamTrack":"MediaStreamTrack","BackgroundFetchClickEvent":"BackgroundFetchEvent","OperatingSystem":{"Enum":[]},"CkImage":{"Image1":[]},"CkBrowserImageDecoder":{"Codec":[]},"ManagedSkiaObject":{"SkiaObject":["1"]},"PersistedContainerSurface":{"PersistedSurface":[]},"Checkable":{"RoleManager":[]},"ImageRoleManager":{"RoleManager":[]},"Incrementable":{"RoleManager":[]},"LabelAndValue":{"RoleManager":[]},"LiveRegion":{"RoleManager":[]},"Scrollable0":{"RoleManager":[]},"Role":{"Enum":[]},"GestureMode":{"Enum":[]},"Tappable":{"RoleManager":[]},"TextField0":{"RoleManager":[]},"LineCharProperty":{"Enum":[]},"EngineLineMetrics":{"LineMetrics":[]},"WordCharProperty":{"Enum":[]},"AssetManagerException":{"Exception":[]},"BrowserEngine":{"Enum":[]},"RecordingCkCanvas":{"CkCanvas":[]},"CkClearCommand":{"CkPaintCommand":[]},"CkSaveCommand":{"CkPaintCommand":[]},"CkRestoreCommand":{"CkPaintCommand":[]},"CkRestoreToCountCommand":{"CkPaintCommand":[]},"CkTranslateCommand":{"CkPaintCommand":[]},"CkScaleCommand":{"CkPaintCommand":[]},"CkRotateCommand":{"CkPaintCommand":[]},"CkTransformCommand":{"CkPaintCommand":[]},"CkClipRectCommand":{"CkPaintCommand":[]},"CkDrawArcCommand":{"CkPaintCommand":[]},"CkClipRRectCommand":{"CkPaintCommand":[]},"CkClipPathCommand":{"CkPaintCommand":[]},"CkDrawLineCommand":{"CkPaintCommand":[]},"CkDrawPaintCommand":{"CkPaintCommand":[]},"CkDrawRectCommand":{"CkPaintCommand":[]},"CkDrawRRectCommand":{"CkPaintCommand":[]},"CkDrawDRRectCommand":{"CkPaintCommand":[]},"CkDrawCircleCommand":{"CkPaintCommand":[]},"CkDrawPathCommand":{"CkPaintCommand":[]},"CkDrawShadowCommand":{"CkPaintCommand":[]},"CkDrawImageRectCommand":{"CkPaintCommand":[]},"CkDrawParagraphCommand":{"CkPaintCommand":[]},"CkDrawPictureCommand":{"CkPaintCommand":[]},"CkSaveLayerCommand":{"CkPaintCommand":[]},"CkSaveLayerWithFilterCommand":{"CkPaintCommand":[]},"SkiaObjectCollectionError":{"Error":[]},"ManagedSkColorFilter":{"ManagedSkiaObject":["SkColorFilter"],"SkiaObject":["SkColorFilter"]},"CkColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkMatrixColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkComposeColorFilter":{"CkManagedSkImageFilterConvertible":[]},"MutatorType":{"Enum":[]},"MutatorsStack":{"Iterable":["Mutator"],"Iterable.E":"Mutator"},"ImageCodecException":{"Exception":[]},"AnimatedImageFrameInfo":{"FrameInfo":[]},"CkImageFilter":{"ManagedSkiaObject":["SkImageFilter"],"CkManagedSkImageFilterConvertible":[],"SkiaObject":["SkImageFilter"]},"_CkMatrixImageFilter":{"ManagedSkiaObject":["SkImageFilter"],"CkManagedSkImageFilterConvertible":[],"SkiaObject":["SkImageFilter"]},"CkAnimatedImage":{"ManagedSkiaObject":["SkAnimatedImage"],"SkiaObject":["SkAnimatedImage"],"Codec":[]},"ContainerLayer":{"Layer":[]},"RootLayer":{"Layer":[]},"BackdropFilterEngineLayer":{"Layer":[],"BackdropFilterEngineLayer0":[]},"ClipPathEngineLayer":{"Layer":[],"ClipPathEngineLayer0":[]},"ClipRectEngineLayer":{"Layer":[],"ClipRectEngineLayer0":[]},"ClipRRectEngineLayer":{"Layer":[],"ClipRRectEngineLayer0":[]},"OpacityEngineLayer":{"Layer":[],"OpacityEngineLayer0":[]},"TransformEngineLayer":{"Layer":[],"TransformEngineLayer0":[]},"OffsetEngineLayer":{"Layer":[],"TransformEngineLayer0":[],"OffsetEngineLayer0":[]},"PictureLayer0":{"Layer":[]},"PhysicalShapeEngineLayer":{"Layer":[],"PhysicalShapeEngineLayer0":[]},"PlatformViewLayer0":{"Layer":[]},"CkMaskFilter":{"ManagedSkiaObject":["SkMaskFilter"],"SkiaObject":["SkMaskFilter"]},"CkPaint":{"ManagedSkiaObject":["SkPaint"],"SkiaObject":["SkPaint"],"Paint":[]},"CkPath":{"ManagedSkiaObject":["SkPath"],"SkiaObject":["SkPath"],"Path":[]},"CkPicture":{"ManagedSkiaObject":["SkPicture"],"SkiaObject":["SkPicture"]},"CkShader":{"ManagedSkiaObject":["SkShader"],"SkiaObject":["SkShader"]},"CkGradientLinear":{"CkShader":[],"ManagedSkiaObject":["SkShader"],"SkiaObject":["SkShader"]},"SkiaObjectBox":{"SkiaObject":["2"]},"CkParagraph":{"SkiaObject":["SkParagraph"]},"CkLineMetrics":{"LineMetrics":[]},"_ParagraphCommandType":{"Enum":[]},"CanvasKitError":{"Error":[]},"PersistedBackdropFilter":{"PersistedContainerSurface":[],"PersistedSurface":[],"BackdropFilterEngineLayer0":[]},"PersistedClipRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRectEngineLayer0":[]},"PersistedClipRRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRRectEngineLayer0":[]},"PersistedPhysicalShape":{"PersistedContainerSurface":[],"PersistedSurface":[],"PhysicalShapeEngineLayer0":[]},"PersistedClipPath":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipPathEngineLayer0":[]},"PersistedOffset":{"PersistedContainerSurface":[],"PersistedSurface":[],"OffsetEngineLayer0":[]},"PersistedOpacity":{"PersistedContainerSurface":[],"PersistedSurface":[],"OpacityEngineLayer0":[]},"SurfacePaint":{"Paint":[]},"SurfacePath":{"Path":[]},"PersistedPicture":{"PersistedSurface":[]},"PersistedPlatformView":{"PersistedSurface":[]},"DrawCommand":{"PaintCommand":[]},"PaintSave":{"PaintCommand":[]},"PaintRestore":{"PaintCommand":[]},"PaintTranslate":{"PaintCommand":[]},"PaintScale":{"PaintCommand":[]},"PaintRotate":{"PaintCommand":[]},"PaintTransform":{"PaintCommand":[]},"PaintClipRect":{"PaintCommand":[]},"PaintClipRRect":{"PaintCommand":[]},"PaintClipPath":{"PaintCommand":[]},"PaintDrawLine":{"PaintCommand":[]},"PaintDrawRect":{"PaintCommand":[]},"PaintDrawRRect":{"PaintCommand":[]},"PaintDrawDRRect":{"PaintCommand":[]},"PaintDrawCircle":{"PaintCommand":[]},"PaintDrawPath":{"PaintCommand":[]},"PaintDrawShadow":{"PaintCommand":[]},"PaintDrawImageRect":{"PaintCommand":[]},"PaintDrawParagraph":{"PaintCommand":[]},"PersistedScene":{"PersistedContainerSurface":[],"PersistedSurface":[]},"_MatrixEngineImageFilter":{"EngineImageFilter":[]},"PersistedSurfaceState":{"Enum":[]},"PersistedLeafSurface":{"PersistedSurface":[]},"PersistedTransform":{"PersistedContainerSurface":[],"PersistedSurface":[],"TransformEngineLayer0":[]},"HtmlCodec":{"Codec":[]},"HtmlBlobCodec":{"Codec":[]},"SingleFrameInfo":{"FrameInfo":[]},"HtmlImage":{"Image1":[]},"DebugEngineInitializationState":{"Enum":[]},"_CheckableKind":{"Enum":[]},"AccessibilityMode":{"Enum":[]},"EnabledState":{"Enum":[]},"_TypedDataBuffer":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_IntBuffer":{"_TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8Buffer":{"_TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int","_TypedDataBuffer.E":"int"},"FlatTextSpan":{"ParagraphSpan":[]},"PlaceholderSpan0":{"ParagraphSpan":[]},"ChildStyleNode":{"StyleNode":[]},"RootStyleNode":{"StyleNode":[]},"PlaceholderBox":{"RangeBox":[]},"SpanBox":{"RangeBox":[]},"LineBreakType":{"Enum":[]},"_ComparisonResult":{"Enum":[]},"TextCapitalization":{"Enum":[]},"TransformKind":{"Enum":[]},"EngineFlutterWindow":{"FlutterWindow":[]},"EngineSingletonFlutterWindow":{"FlutterWindow":[]},"HttpException":{"Exception":[]},"JSBool":{"bool":[]},"JSNull":{"Null":[]},"LegacyJavaScriptObject":{"JSObject":[],"CanvasKit":[],"SkFontSlant":[],"SkFontWeight":[],"SkTextDirection":[],"SkTextAlign":[],"SkTextHeightBehavior":[],"SkRectHeightStyle":[],"SkRectWidthStyle":[],"SkClipOp":[],"SkFillType":[],"SkBlurStyle":[],"SkStrokeCap":[],"SkPaintStyle":[],"SkBlendMode":[],"SkStrokeJoin":[],"SkTileMode":[],"SkAnimatedImage":[],"SkImage":[],"SkShader":[],"SkPaint":[],"CkFilterOptions":[],"SkMaskFilter":[],"SkColorFilter":[],"SkImageFilter":[],"SkPath":[],"SkPicture":[],"SkTextStyle":[],"SkTextDecorationStyle":[],"SkTextBaseline":[],"SkPlaceholderAlignment":[],"SkTextShadow":[],"SkFontFeature":[],"SkFont":[],"SkParagraph":[],"SkDeletable":[],"InitializeEngineFnParameters":[],"FlutterAppRunner":[],"RunAppFnParameters":[],"FlutterApp":[],"Promise":["1&"],"JsUrlStrategy":[],"ImageDecoder":[],"DecodeResult":[],"GoogleAuthInitFailureError":[],"GoogleAuthSignInError":[],"GoogleAuth":[],"GoogleUser":[],"AuthenticationResult0":[],"JsError":[],"PdfJsDoc":[],"PdfJsPage":[],"SignInResponseI":[]},"JSArray":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"JSIndexable":["1"]},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"JSIndexable":["1"]},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"]},"_CastIterableBase":{"Iterable":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListMixin.E":"2","Iterable.E":"2"},"CastMap":{"MapMixin":["3","4"],"Map":["3","4"],"MapMixin.K":"3","MapMixin.V":"4"},"LateError":{"Error":[]},"ReachabilityError":{"Error":[]},"CodeUnits":{"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NotNullableError":{"TypeError":[],"Error":[]},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2","ListIterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipWhileIterable":{"Iterable":["1"],"Iterable.E":"1"},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"FollowedByIterable":{"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"UnmodifiableListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_ListIndicesIterable":{"ListIterable":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"Iterable.E":"int","ListIterable.E":"int"},"ListMapView":{"MapMixin":["int","1"],"_UnmodifiableMapMixin":["int","1"],"Map":["int","1"],"MapMixin.K":"int","MapMixin.V":"1"},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"Symbol":{"Symbol0":[]},"ConstantMapView":{"UnmodifiableMapView":["1","2"],"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_ConstantMapKeyIterable":{"Iterable":["1"],"Iterable.E":"1"},"GeneralConstantMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"Instantiation":{"Function":[]},"Instantiation1":{"Function":[]},"NullError":{"TypeError":[],"NoSuchMethodError":[],"Error":[]},"JsNoSuchMethodError":{"NoSuchMethodError":[],"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Function":[]},"Closure2Args":{"Function":[]},"TearOffClosure":{"Function":[]},"StaticClosure":{"Function":[]},"BoundClosure":{"Function":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"LinkedHashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"NativeByteBuffer":{"ByteBuffer":[]},"NativeTypedData":{"TypedData":[]},"NativeByteData":{"NativeTypedData":[],"ByteData":[],"TypedData":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"NativeTypedData":[],"TypedData":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"]},"NativeTypedArrayOfInt":{"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"Float32List":[],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"Float64List":[],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"Int32List":[],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"Uint8List":[],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"_Future":{"Future":["1"]},"MultiStreamController":{"EventSink":["1"]},"_BufferingStreamSubscription":{"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_HandlerEventSink":{"EventSink":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_SyncStarIterable":{"Iterable":["1"],"Iterable.E":"1"},"AsyncError":{"Error":[]},"_BroadcastStream":{"_ControllerStream":["1"],"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_BroadcastSubscription":{"_ControllerSubscription":["1"],"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BroadcastStreamController":{"EventSink":["1"]},"_SyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"_AsyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"TimeoutException":{"Exception":[]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"_SyncCompleter":{"_Completer":["1"],"Completer":["1"]},"StreamView":{"Stream":["1"]},"_StreamController":{"EventSink":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"EventSink":["1"]},"_SyncStreamController":{"_StreamController":["1"],"EventSink":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_StreamImpl":{"Stream":["1"]},"_DoneStreamSubscription":{"StreamSubscription":["1"]},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStreamController":{"_AsyncStreamController":["1"],"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"MultiStreamController":["1"],"EventSink":["1"]},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_WhereStream":{"_ForwardingStream":["1","1"],"Stream":["1"],"Stream.T":"1","_ForwardingStream.T":"1","_ForwardingStream.S":"1"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2","_ForwardingStream.T":"2","_ForwardingStream.S":"1"},"_EventSinkWrapper":{"EventSink":["1"]},"_SinkTransformerStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_BoundSinkStream":{"Stream":["2"],"Stream.T":"2"},"_StreamHandlerTransformer":{"_StreamSinkTransformer":["1","2"]},"_Zone":{"Zone":[]},"_RootZone":{"Zone":[]},"_SplayTreeMapNode":{"MapEntry":["1","2"]},"_HashMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_CustomHashMap":{"_HashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedIdentityHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_HashSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"_LinkedHashSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"UnmodifiableListView":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"IterableBase":{"Iterable":["1"]},"LinkedList":{"Iterable":["1"],"Iterable.E":"1"},"ListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"MapMixin":["1","2"],"Map":["1","2"]},"MapMixin":{"Map":["1","2"]},"UnmodifiableMapBase":{"MapMixin":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_MapBaseValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_DoubleLinkedQueueElement":{"_DoubleLinkedQueueEntry":["1"],"DoubleLinkedQueueEntry":["1"]},"_DoubleLinkedQueueSentinel":{"_DoubleLinkedQueueEntry":["1"]},"DoubleLinkedQueue":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"ListQueue":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"SetBase":{"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SetBase":{"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_UnmodifiableSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"SplayTreeMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_SplayTreeKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_SplayTreeValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_SplayTreeMapEntryIterable":{"EfficientLengthIterable":["MapEntry<1,2>"],"Iterable":["MapEntry<1,2>"],"Iterable.E":"MapEntry<1,2>"},"_SplayTreeKeyIterator":{"_SplayTreeIterator":["1","2","1"]},"_SplayTreeValueIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","2"]},"_SplayTreeMapEntryIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","MapEntry<1,2>"]},"SplayTreeSet":{"SetMixin":["1"],"Set":["1"],"IterableMixin":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"Encoding":{"Codec0":["String","List"]},"_JsonMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","ListIterable.E":"String"},"AsciiCodec":{"Encoding":[],"Codec0":["String","List"]},"_UnicodeSubsetEncoder":{"Converter":["String","List"]},"AsciiEncoder":{"Converter":["String","List"]},"_UnicodeSubsetDecoder":{"Converter":["List","String"]},"AsciiDecoder":{"Converter":["List","String"]},"Base64Codec":{"Codec0":["List","String"]},"Base64Encoder":{"Converter":["List","String"]},"Base64Decoder":{"Converter":["String","List"]},"HtmlEscape":{"Converter":["String","String"]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonCodec":{"Codec0":["Object?","String"]},"JsonEncoder":{"Converter":["Object?","String"]},"JsonDecoder":{"Converter":["String","Object?"]},"Latin1Codec":{"Encoding":[],"Codec0":["String","List"]},"Latin1Encoder":{"Converter":["String","List"]},"Latin1Decoder":{"Converter":["List","String"]},"Utf8Codec":{"Encoding":[],"Codec0":["String","List"]},"Utf8Encoder":{"Converter":["String","List"]},"Utf8Decoder":{"Converter":["List","String"]},"BigInt":{"Comparable":["BigInt"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExp":{"Pattern":[]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"],"Pattern":[]},"_BigIntImpl":{"Comparable":["BigInt"]},"_Enum":{"Enum":[]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"NullThrownError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"NoSuchMethodError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"CyclicInitializationError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[],"Error":[]},"_GeneratorIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_StringStackTrace":{"StackTrace":[]},"Runes":{"Iterable":["int"],"Iterable.E":"int"},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"HtmlElement":{"Element2":[],"Node1":[],"EventTarget":[]},"BeforeUnloadEvent":{"Event":[]},"CanvasElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"Element2":{"Node1":[],"EventTarget":[]},"File":{"Blob":[]},"FormElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"HttpRequest":{"EventTarget":[]},"IFrameElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"KeyboardEvent":{"Event":[]},"MetaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"MouseEvent":{"Event":[]},"Node1":{"EventTarget":[]},"PointerEvent0":{"MouseEvent":[],"Event":[]},"ProgressEvent":{"Event":[]},"SourceBuffer":{"EventTarget":[]},"TextTrack":{"EventTarget":[]},"TextTrackCue":{"EventTarget":[]},"TouchEvent":{"Event":[]},"_Html5NodeValidator":{"NodeValidator":[]},"AnchorElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"Animation":{"EventTarget":[]},"ApplicationCacheErrorEvent":{"Event":[]},"AreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"BackgroundFetchEvent":{"Event":[]},"BackgroundFetchRegistration":{"EventTarget":[]},"BaseElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"BodyElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"BroadcastChannel":{"EventTarget":[]},"ButtonElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"CharacterData":{"Node1":[],"EventTarget":[]},"CssKeyframesRule":{"CssRule":[]},"CssStyleSheet":{"StyleSheet":[]},"DataElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"DivElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"Document1":{"Node1":[],"EventTarget":[]},"DomRectList":{"ListMixin":["Rectangle"],"ImmutableListMixin":["Rectangle"],"List":["Rectangle"],"JavaScriptIndexingBehavior":["Rectangle"],"EfficientLengthIterable":["Rectangle"],"Iterable":["Rectangle"],"JSIndexable":["Rectangle"],"ImmutableListMixin.E":"Rectangle","ListMixin.E":"Rectangle"},"DomRectReadOnly":{"Rectangle":["num"]},"DomStringList":{"ListMixin":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptIndexingBehavior":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"JSIndexable":["String"],"ImmutableListMixin.E":"String","ListMixin.E":"String"},"_ChildrenElementList":{"ListMixin":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListMixin.E":"Element2"},"_FrozenElementList":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"EmbedElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"ErrorEvent":{"Event":[]},"ExtendableEvent":{"Event":[]},"FieldSetElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FileList":{"ListMixin":["File"],"ImmutableListMixin":["File"],"List":["File"],"JavaScriptIndexingBehavior":["File"],"EfficientLengthIterable":["File"],"Iterable":["File"],"JSIndexable":["File"],"ImmutableListMixin.E":"File","ListMixin.E":"File"},"FileReader":{"EventTarget":[]},"FileWriter":{"EventTarget":[]},"FontFaceSet":{"EventTarget":[]},"HtmlCollection":{"ListMixin":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListMixin.E":"Node1"},"HtmlDocument":{"Document1":[],"Node1":[],"EventTarget":[]},"HttpRequestEventTarget":{"EventTarget":[]},"ImageElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"InputElement":{"FileUploadInputElement":[],"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"LIElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"LabelElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"MapElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"MediaKeyMessageEvent":{"Event":[]},"MediaKeySession":{"EventTarget":[]},"MediaQueryList":{"EventTarget":[]},"MediaQueryListEvent":{"Event":[]},"MediaStream":{"EventTarget":[]},"MediaStreamTrack":{"EventTarget":[]},"MessagePort":{"EventTarget":[]},"MeterElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"MidiInputMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"MidiOutputMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"MidiPort":{"EventTarget":[]},"MimeTypeArray":{"ListMixin":["MimeType"],"ImmutableListMixin":["MimeType"],"List":["MimeType"],"JavaScriptIndexingBehavior":["MimeType"],"EfficientLengthIterable":["MimeType"],"Iterable":["MimeType"],"JSIndexable":["MimeType"],"ImmutableListMixin.E":"MimeType","ListMixin.E":"MimeType"},"_ChildNodeListLazy":{"ListMixin":["Node1"],"List":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"ListMixin.E":"Node1"},"NodeList0":{"ListMixin":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListMixin.E":"Node1"},"Notification":{"EventTarget":[]},"ObjectElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"OffscreenCanvas":{"EventTarget":[]},"OptionElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"OutputElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"ParagraphElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"ParamElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"PaymentRequest":{"EventTarget":[]},"Performance":{"EventTarget":[]},"PluginArray":{"ListMixin":["Plugin"],"ImmutableListMixin":["Plugin"],"List":["Plugin"],"JavaScriptIndexingBehavior":["Plugin"],"EfficientLengthIterable":["Plugin"],"Iterable":["Plugin"],"JSIndexable":["Plugin"],"ImmutableListMixin.E":"Plugin","ListMixin.E":"Plugin"},"PresentationAvailability":{"EventTarget":[]},"PresentationConnection":{"EventTarget":[]},"PresentationConnectionCloseEvent":{"Event":[]},"ProgressElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"RtcDataChannel":{"EventTarget":[]},"RtcStatsReport":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"ScreenOrientation":{"EventTarget":[]},"SelectElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"SharedWorkerGlobalScope":{"WorkerGlobalScope":[],"EventTarget":[]},"SlotElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"SourceBufferList":{"ListMixin":["SourceBuffer"],"ImmutableListMixin":["SourceBuffer"],"EventTarget":[],"List":["SourceBuffer"],"JavaScriptIndexingBehavior":["SourceBuffer"],"EfficientLengthIterable":["SourceBuffer"],"Iterable":["SourceBuffer"],"JSIndexable":["SourceBuffer"],"ImmutableListMixin.E":"SourceBuffer","ListMixin.E":"SourceBuffer"},"SpeechGrammarList":{"ListMixin":["SpeechGrammar"],"ImmutableListMixin":["SpeechGrammar"],"List":["SpeechGrammar"],"JavaScriptIndexingBehavior":["SpeechGrammar"],"EfficientLengthIterable":["SpeechGrammar"],"Iterable":["SpeechGrammar"],"JSIndexable":["SpeechGrammar"],"ImmutableListMixin.E":"SpeechGrammar","ListMixin.E":"SpeechGrammar"},"SpeechRecognitionError":{"Event":[]},"SpeechSynthesisEvent":{"Event":[]},"Storage":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"StyleElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TableElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TableRowElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TableSectionElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TemplateElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TextAreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TextTrackCueList":{"ListMixin":["TextTrackCue"],"ImmutableListMixin":["TextTrackCue"],"List":["TextTrackCue"],"JavaScriptIndexingBehavior":["TextTrackCue"],"EfficientLengthIterable":["TextTrackCue"],"Iterable":["TextTrackCue"],"JSIndexable":["TextTrackCue"],"ImmutableListMixin.E":"TextTrackCue","ListMixin.E":"TextTrackCue"},"TextTrackList":{"ListMixin":["TextTrack"],"ImmutableListMixin":["TextTrack"],"EventTarget":[],"List":["TextTrack"],"JavaScriptIndexingBehavior":["TextTrack"],"EfficientLengthIterable":["TextTrack"],"Iterable":["TextTrack"],"JSIndexable":["TextTrack"],"ImmutableListMixin.E":"TextTrack","ListMixin.E":"TextTrack"},"TouchList":{"ListMixin":["Touch"],"ImmutableListMixin":["Touch"],"List":["Touch"],"JavaScriptIndexingBehavior":["Touch"],"EfficientLengthIterable":["Touch"],"Iterable":["Touch"],"JSIndexable":["Touch"],"ImmutableListMixin.E":"Touch","ListMixin.E":"Touch"},"UIEvent":{"Event":[]},"VideoTrackList":{"EventTarget":[]},"WheelEvent":{"MouseEvent":[],"Event":[]},"Window":{"EventTarget":[]},"WorkerGlobalScope":{"EventTarget":[]},"_Attr":{"Node1":[],"EventTarget":[]},"_CssRuleList":{"ListMixin":["CssRule"],"ImmutableListMixin":["CssRule"],"List":["CssRule"],"JavaScriptIndexingBehavior":["CssRule"],"EfficientLengthIterable":["CssRule"],"Iterable":["CssRule"],"JSIndexable":["CssRule"],"ImmutableListMixin.E":"CssRule","ListMixin.E":"CssRule"},"_DomRect":{"Rectangle":["num"]},"_GamepadList":{"ListMixin":["Gamepad?"],"ImmutableListMixin":["Gamepad?"],"List":["Gamepad?"],"JavaScriptIndexingBehavior":["Gamepad?"],"EfficientLengthIterable":["Gamepad?"],"Iterable":["Gamepad?"],"JSIndexable":["Gamepad?"],"ImmutableListMixin.E":"Gamepad?","ListMixin.E":"Gamepad?"},"_NamedNodeMap":{"ListMixin":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListMixin.E":"Node1"},"_SpeechRecognitionResultList":{"ListMixin":["SpeechRecognitionResult"],"ImmutableListMixin":["SpeechRecognitionResult"],"List":["SpeechRecognitionResult"],"JavaScriptIndexingBehavior":["SpeechRecognitionResult"],"EfficientLengthIterable":["SpeechRecognitionResult"],"Iterable":["SpeechRecognitionResult"],"JSIndexable":["SpeechRecognitionResult"],"ImmutableListMixin.E":"SpeechRecognitionResult","ListMixin.E":"SpeechRecognitionResult"},"_StyleSheetList":{"ListMixin":["StyleSheet"],"ImmutableListMixin":["StyleSheet"],"List":["StyleSheet"],"JavaScriptIndexingBehavior":["StyleSheet"],"EfficientLengthIterable":["StyleSheet"],"Iterable":["StyleSheet"],"JSIndexable":["StyleSheet"],"ImmutableListMixin.E":"StyleSheet","ListMixin.E":"StyleSheet"},"_AttributeMap":{"MapMixin":["String","String"],"Map":["String","String"]},"_ElementAttributeMap":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"_DataAttributeMap":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_ElementEventStreamImpl":{"_EventStream":["1"],"Stream":["1"],"Stream.T":"1"},"_EventStreamSubscription":{"StreamSubscription":["1"]},"NodeValidatorBuilder":{"NodeValidator":[]},"_SimpleNodeValidator":{"NodeValidator":[]},"_TemplatingNodeValidator":{"NodeValidator":[]},"_SvgNodeValidator":{"NodeValidator":[]},"_DOMWindowCrossFrame":{"EventTarget":[]},"FilteredElementList0":{"ListMixin":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListMixin.E":"Element2"},"Database":{"EventTarget":[]},"VersionChangeEvent":{"Event":[]},"Directory":{"FileSystemEntity":[]},"File0":{"FileSystemEntity":[]},"_RandomAccessFile":{"RandomAccessFile":[]},"OSError":{"Exception":[]},"_Directory":{"Directory":[],"FileSystemEntity":[]},"FileSystemException":{"Exception":[]},"_FileStream":{"Stream":["List"],"Stream.T":"List"},"_File":{"File0":[],"FileSystemEntity":[]},"SystemEncoding":{"Encoding":[],"Codec0":["String","List"]},"JsArray":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"NullRejectionException":{"Exception":[]},"Rectangle":{"_RectangleBase":["1"]},"ClipPathElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"DefsElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FEBlendElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FEColorMatrixElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FECompositeElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FEFloodElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"FilterElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"GeometryElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"GraphicsElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"LengthList":{"ListMixin":["Length"],"ImmutableListMixin":["Length"],"List":["Length"],"EfficientLengthIterable":["Length"],"Iterable":["Length"],"ImmutableListMixin.E":"Length","ListMixin.E":"Length"},"NumberList":{"ListMixin":["Number"],"ImmutableListMixin":["Number"],"List":["Number"],"EfficientLengthIterable":["Number"],"Iterable":["Number"],"ImmutableListMixin.E":"Number","ListMixin.E":"Number"},"PathElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"ScriptElement0":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"StringList":{"ListMixin":["String"],"ImmutableListMixin":["String"],"List":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"ImmutableListMixin.E":"String","ListMixin.E":"String"},"SvgElement":{"Element2":[],"Node1":[],"EventTarget":[]},"SvgSvgElement":{"SvgElement":[],"Element2":[],"Node1":[],"EventTarget":[]},"TransformList":{"ListMixin":["Transform0"],"ImmutableListMixin":["Transform0"],"List":["Transform0"],"EfficientLengthIterable":["Transform0"],"Iterable":["Transform0"],"ImmutableListMixin.E":"Transform0","ListMixin.E":"Transform0"},"ByteData":{"TypedData":[]},"Int8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8ClampedList":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Float32List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"Float64List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"FilterQuality":{"Enum":[]},"PointerDeviceKind":{"Enum":[]},"TextAlign":{"Enum":[]},"TextBaseline":{"Enum":[]},"TextDirection":{"Enum":[]},"TextAffinity":{"Enum":[]},"ClipOp":{"Enum":[]},"PathFillType":{"Enum":[]},"KeyEventType":{"Enum":[]},"StrokeCap":{"Enum":[]},"StrokeJoin":{"Enum":[]},"PaintingStyle":{"Enum":[]},"BlendMode":{"Enum":[]},"Clip":{"Enum":[]},"BlurStyle":{"Enum":[]},"ImageByteFormat":{"Enum":[]},"PixelFormat":{"Enum":[]},"AppLifecycleState":{"Enum":[]},"PointerChange":{"Enum":[]},"PointerSignalKind":{"Enum":[]},"FontStyle":{"Enum":[]},"PlaceholderAlignment":{"Enum":[]},"TextDecorationStyle":{"Enum":[]},"TextLeadingDistribution":{"Enum":[]},"BoxHeightStyle":{"Enum":[]},"BoxWidthStyle":{"Enum":[]},"TileMode":{"Enum":[]},"SingletonFlutterWindow":{"FlutterWindow":[]},"Brightness":{"Enum":[]},"AudioParamMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"AudioTrackList":{"EventTarget":[]},"BaseAudioContext":{"EventTarget":[]},"OfflineAudioContext":{"EventTarget":[]},"ArchiveException":{"FormatException":[],"Exception":[]},"InputStream":{"InputStreamBase":[]},"SpanMarker":{"Comparable":["SpanMarker"]},"SpanMarkerType":{"Enum":[]},"IncompatibleOverlappingAttributionsException":{"Exception":[]},"AttributionVisitEvent":{"Enum":[]},"NamedAttribution":{"Attribution":[]},"BoardItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardItemState":{"State":["BoardItem"]},"BoardList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardListState":{"State":["BoardList"]},"BoardView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardViewState":{"State":["BoardView"]},"CopyOnWriteList":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"CopyOnWriteSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"]},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["1"]},"_BuiltSetMultimap":{"BuiltSetMultimap":["1","2"]},"BuiltValueNullFieldError":{"Error":[]},"BuiltValueNestedFieldError":{"Error":[]},"DeserializationError":{"Error":[]},"BigIntSerializer":{"PrimitiveSerializer":["BigInt"],"Serializer":["BigInt"]},"BoolSerializer":{"PrimitiveSerializer":["bool"],"Serializer":["bool"]},"BuiltListMultimapSerializer":{"StructuredSerializer":["BuiltListMultimap<@,@>"],"Serializer":["BuiltListMultimap<@,@>"]},"BuiltListSerializer":{"StructuredSerializer":["BuiltList<@>"],"Serializer":["BuiltList<@>"]},"BuiltMapSerializer":{"StructuredSerializer":["BuiltMap<@,@>"],"Serializer":["BuiltMap<@,@>"]},"BuiltSetMultimapSerializer":{"StructuredSerializer":["BuiltSetMultimap<@,@>"],"Serializer":["BuiltSetMultimap<@,@>"]},"BuiltSetSerializer":{"StructuredSerializer":["BuiltSet<@>"],"Serializer":["BuiltSet<@>"]},"DateTimeSerializer":{"PrimitiveSerializer":["DateTime"],"Serializer":["DateTime"]},"DoubleSerializer":{"PrimitiveSerializer":["double"],"Serializer":["double"]},"DurationSerializer":{"PrimitiveSerializer":["Duration"],"Serializer":["Duration"]},"Int64Serializer":{"PrimitiveSerializer":["Int64"],"Serializer":["Int64"]},"IntSerializer":{"PrimitiveSerializer":["int"],"Serializer":["int"]},"JsonObjectSerializer":{"PrimitiveSerializer":["JsonObject"],"Serializer":["JsonObject"]},"NullSerializer":{"PrimitiveSerializer":["Null"],"Serializer":["Null"]},"NumSerializer":{"PrimitiveSerializer":["num"],"Serializer":["num"]},"RegExpSerializer":{"PrimitiveSerializer":["RegExp"],"Serializer":["RegExp"]},"StringSerializer":{"PrimitiveSerializer":["String"],"Serializer":["String"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"StandardJsonPlugin":{"SerializerPlugin":[]},"CachedNetworkImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedNetworkImageProvider":{"ImageProvider":["CachedNetworkImageProvider0"],"ImageProvider.T":"CachedNetworkImageProvider0"},"CachedNetworkImageProvider0":{"ImageProvider":["CachedNetworkImageProvider0"]},"ImageRenderMethodForWeb":{"Enum":[]},"StringCharacters":{"Characters":[],"Iterable":["String"],"Iterable.E":"String"},"BarChart0":{"CartesianChart":["String"],"BaseChart0":["String"],"BaseChart0.D":"String","CartesianChart.D":"String"},"BarRendererElement":{"BaseBarRendererElement":[]},"AnimatedBar":{"BaseAnimatedBar":["1","BarRendererElement<1>"]},"BarRenderer":{"BaseBarRenderer":["1","BarRendererElement<1>","AnimatedBar<1>"],"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[],"BaseBarRenderer.D":"1","BaseBarRenderer.B":"AnimatedBar<1>","BaseBarRenderer.R":"BarRendererElement<1>"},"BaseBarRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"_ReversedSeriesIterable":{"Iterable":["1"],"Iterable.E":"1"},"BarGroupingType":{"Enum":[]},"Axis":{"ImmutableAxis":["1"],"LayoutView":[]},"NumericAxis":{"Axis":["num"],"ImmutableAxis":["num"],"LayoutView":[],"Axis.D":"num"},"AxisOrientation":{"Enum":[]},"OrdinalAxis":{"Axis":["String"],"ImmutableAxis":["String"],"LayoutView":[],"Axis.D":"String"},"AxisTicks":{"Tick":["1"],"Comparable":["AxisTicks<1>"]},"_PixelVerticalDirection":{"Enum":[]},"GridlineRendererSpec":{"SmallTickRendererSpec":["1"]},"GridlineTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"SmallTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"NumericTickProvider":{"BaseTickProvider":["num"],"BaseTickProvider.D":"num"},"OrdinalTickProvider":{"BaseTickProvider":["String"],"BaseTickProvider.D":"String"},"RangeBandType":{"Enum":[]},"StepSizeType":{"Enum":[]},"SimpleOrdinalScale":{"OrdinalScale":[]},"TickLabelAnchor":{"Enum":[]},"TickLabelJustification":{"Enum":[]},"DateTimeAxisSpec":{"AxisSpec":["DateTime"]},"NumericAxisSpec":{"AxisSpec":["num"]},"OrdinalAxisSpec":{"AxisSpec":["String"]},"OrdinalTickFormatter":{"SimpleTickFormatterBase":["String"],"SimpleTickFormatterBase.D":"String"},"NumericTickFormatter":{"SimpleTickFormatterBase":["num"],"SimpleTickFormatterBase.D":"num"},"_TimeStepIteratorFactoryImpl":{"Iterable":["DateTime"],"Iterable.E":"DateTime"},"DateTimeAxis":{"Axis":["DateTime"],"ImmutableAxis":["DateTime"],"LayoutView":[],"Axis.D":"DateTime"},"DateTimeScale":{"MutableScale":["DateTime"]},"HourTickFormatter":{"TimeTickFormatter":[]},"TimeRangeTickProvider":{"BaseTickProvider":["DateTime"]},"TimeRangeTickProviderImpl":{"TimeRangeTickProvider":[],"BaseTickProvider":["DateTime"],"BaseTickProvider.D":"DateTime"},"TimeStepIteratorFactory":{"Iterable":["DateTime"]},"TimeTickFormatterImpl":{"TimeTickFormatter":[]},"CalendarField":{"Enum":[]},"OrdinalCartesianChart":{"CartesianChart":["String"],"BaseChart0":["String"]},"CartesianChart":{"BaseChart0":["1"]},"BaseCartesianRenderer":{"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"BehaviorPosition":{"Enum":[]},"OutsideJustification":{"Enum":[]},"InsideJustification":{"Enum":[]},"DomainHighlighter0":{"ChartBehavior0":["1"]},"Legend":{"ChartBehavior0":["1"],"LayoutView":[]},"LegendTapHandling":{"Enum":[]},"LegendDefaultMeasure":{"Enum":[]},"SeriesLegend0":{"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[]},"LinePointHighlighter0":{"ChartBehavior0":["1"]},"_LinePointLayoutView":{"LayoutView":[]},"LinePointHighlighterFollowLineType":{"Enum":[]},"SelectNearest0":{"ChartBehavior0":["1"]},"SelectionMode":{"Enum":[]},"SelectionTrigger":{"Enum":[]},"FillPatternType":{"Enum":[]},"MutableSeries":{"ImmutableSeries":["1"]},"MutableSelectionModel":{"SelectionModel":["1"]},"SelectionModelType":{"Enum":[]},"SeriesRenderer":{"LayoutView":[]},"BaseSeriesRenderer":{"SeriesRenderer":["1"],"LayoutView":[]},"LayoutPosition":{"Enum":[]},"LineRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"PointRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"TimeSeriesChart":{"CartesianChart":["DateTime"],"BaseChart0":["DateTime"],"BaseChart0.D":"DateTime","CartesianChart.D":"DateTime"},"MaterialBlue":{"Palette":[]},"MaterialRed":{"Palette":[]},"MaterialYellow":{"Palette":[]},"MaterialGreen":{"Palette":[]},"MaterialPurple":{"Palette":[]},"MaterialCyan":{"Palette":[]},"MaterialDeepOrange":{"Palette":[]},"MaterialLime":{"Palette":[]},"MaterialIndigo":{"Palette":[]},"MaterialPink":{"Palette":[]},"MaterialTeal":{"Palette":[]},"TextDirection0":{"Enum":[]},"MaxWidthStrategy":{"Enum":[]},"AttributeKey":{"TypedKey":["1"]},"BarChart":{"BaseChart":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"String"},"BaseChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BaseChartState":{"State":["BaseChart<1>"]},"GestureType":{"Enum":[]},"DomainHighlighter":{"ChartBehavior":["1"]},"SeriesLegend":{"ChartBehavior":["1"]},"_FlutterSeriesLegend":{"SeriesLegend0":["1"],"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[],"BuildableBehavior":["ChartBehavior0<@>"]},"LinePointHighlighter":{"ChartBehavior":["1"]},"SelectNearest":{"ChartBehavior":["1"]},"CartesianChart0":{"BaseChart":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ChartContainer":{"CustomPaint":[],"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerCustomPaint":{"Listenable":[]},"_SymbolCustomPaint":{"Listenable":[]},"TextElement0":{"TextElement2":[]},"TimeSeriesChart0":{"BaseChart":["DateTime"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"DateTime"},"_HorizontalJustification":{"Enum":[]},"CanonicalizedMap":{"Map":["2","3"]},"UnorderedIterableEquality":{"_UnorderedEquality":["1","Iterable<1>"],"_UnorderedEquality.E":"1"},"SetEquality":{"_UnorderedEquality":["1","Set<1>"],"_UnorderedEquality.E":"1"},"MessageLevel":{"Enum":[]},"ElementSelector":{"SimpleSelector":[]},"NamespaceSelector":{"SimpleSelector":[]},"AttributeSelector":{"SimpleSelector":[]},"IdSelector":{"SimpleSelector":[]},"ClassSelector":{"SimpleSelector":[]},"PseudoClassSelector":{"SimpleSelector":[]},"PseudoElementSelector":{"SimpleSelector":[]},"PseudoClassFunctionSelector":{"SimpleSelector":[]},"PseudoElementFunctionSelector":{"SimpleSelector":[]},"NegationSelector":{"SimpleSelector":[]},"OperatorPlus":{"Expression":[]},"OperatorMinus":{"Expression":[]},"LiteralTerm":{"Expression":[]},"NumberTerm":{"LiteralTerm":[],"Expression":[]},"UnitTerm":{"LiteralTerm":[],"Expression":[]},"LengthTerm":{"LiteralTerm":[],"Expression":[]},"PercentageTerm":{"LiteralTerm":[],"Expression":[]},"EmTerm":{"LiteralTerm":[],"Expression":[]},"ExTerm":{"LiteralTerm":[],"Expression":[]},"AngleTerm":{"LiteralTerm":[],"Expression":[]},"TimeTerm":{"LiteralTerm":[],"Expression":[]},"FreqTerm":{"LiteralTerm":[],"Expression":[]},"FractionTerm":{"LiteralTerm":[],"Expression":[]},"ResolutionTerm":{"LiteralTerm":[],"Expression":[]},"ChTerm":{"LiteralTerm":[],"Expression":[]},"RemTerm":{"LiteralTerm":[],"Expression":[]},"ViewportTerm":{"LiteralTerm":[],"Expression":[]},"MemoryDirectory":{"Directory0":[],"FileSystemEntity0":[],"Directory":[],"FileSystemEntity":[]},"MemoryFile":{"File1":[],"FileSystemEntity0":[],"File0":[],"FileSystemEntity":[]},"_FileSink":{"EventSink":["List"]},"MemoryFileSystemEntity":{"FileSystemEntity0":[],"FileSystemEntity":[]},"RealNode":{"Node2":[]},"DirectoryNode":{"Node2":[]},"FileNode":{"Node2":[]},"LinkNode":{"Node2":[]},"RootNode":{"DirectoryNode":[],"Node2":[]},"_LinuxCodes":{"_Codes":[]},"FileType":{"Enum":[]},"Int64":{"Comparable":["Object"]},"AnimationStatus":{"Enum":[]},"Animation0":{"Listenable":[]},"_AnimationDirection":{"Enum":[]},"AnimationController":{"Animation0":["double"],"Listenable":[]},"AnimationBehavior":{"Enum":[]},"_AlwaysCompleteAnimation":{"Animation0":["double"],"Listenable":[]},"_AlwaysDismissedAnimation":{"Animation0":["double"],"Listenable":[]},"AlwaysStoppedAnimation":{"Animation0":["1"],"Listenable":[]},"ProxyAnimation":{"Animation0":["double"],"Listenable":[]},"ReverseAnimation":{"Animation0":["double"],"Listenable":[]},"CurvedAnimation":{"Animation0":["double"],"Listenable":[]},"_TrainHoppingMode":{"Enum":[]},"TrainHoppingAnimation":{"Animation0":["double"],"Listenable":[]},"CompoundAnimation":{"Animation0":["1"],"Listenable":[]},"AnimationMin":{"Animation0":["1"],"Listenable":[]},"_Linear":{"Curve":[]},"SawTooth":{"Curve":[]},"Interval":{"Curve":[]},"Threshold":{"Curve":[]},"Cubic":{"Curve":[]},"ThreePointCubic":{"Curve":[]},"FlippedCurve":{"Curve":[]},"_DecelerateCurve":{"Curve":[]},"ElasticOutCurve":{"Curve":[]},"Tween":{"Animatable":["1"],"Tween.T":"1","Animatable.T":"1"},"ColorTween":{"Tween":["Color?"],"Animatable":["Color?"],"Tween.T":"Color?","Animatable.T":"Color?"},"_AnimatedEvaluation":{"Animation0":["1"],"Listenable":[]},"_ChainedEvaluation":{"Animatable":["1"],"Animatable.T":"1"},"ReverseTween":{"Tween":["1"],"Animatable":["1"],"Tween.T":"1","Animatable.T":"1"},"SizeTween":{"Tween":["Size?"],"Animatable":["Size?"],"Tween.T":"Size?","Animatable.T":"Size?"},"RectTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Tween.T":"Rect?","Animatable.T":"Rect?"},"IntTween":{"Tween":["int"],"Animatable":["int"],"Tween.T":"int","Animatable.T":"int"},"CurveTween":{"Animatable":["double"],"Animatable.T":"double"},"TweenSequence":{"Animatable":["1"],"Animatable.T":"1"},"CupertinoButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoButtonState":{"State":["CupertinoButton"]},"CupertinoDynamicColor":{"Color":[]},"CupertinoIconThemeData":{"IconThemeData":[]},"_CupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"DefaultCupertinoLocalizations":{"CupertinoLocalizations":[]},"_CupertinoBackGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoBackGestureDetectorState":{"State":["_CupertinoBackGestureDetector<1>"]},"_CupertinoEdgeShadowDecoration":{"Decoration":[]},"_CupertinoEdgeShadowPainter":{"BoxPainter":[]},"CupertinoScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoScrollbarState":{"RawScrollbarState":["CupertinoScrollbar"],"State":["CupertinoScrollbar"]},"CupertinoSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoSwitchState":{"State":["CupertinoSwitch"]},"_CupertinoSwitchRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCupertinoSwitch":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_TextSelectionHandlePainter0":{"Listenable":[]},"_InheritedCupertinoTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTheme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ErrorDiagnostic":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorDescription":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSummary":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorHint":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSpacer":{"DiagnosticsProperty":["~"],"DiagnosticsNode":[]},"FlutterError":{"DiagnosticableTree":[],"AssertionError":[],"Error":[]},"DiagnosticsStackTrace":{"DiagnosticsNode":[]},"_FlutterErrorDetailsNode":{"DiagnosticableNode":["FlutterErrorDetails"],"DiagnosticsNode":[]},"ChangeNotifier":{"Listenable":[]},"ValueNotifier":{"ChangeNotifier":[],"Listenable":[]},"_MergingListenable":{"Listenable":[]},"DiagnosticLevel":{"Enum":[]},"DiagnosticsTreeStyle":{"Enum":[]},"_WordWrapParseMode":{"Enum":[]},"DiagnosticsProperty":{"DiagnosticsNode":[]},"DiagnosticableNode":{"DiagnosticsNode":[]},"DiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"DiagnosticsBlock":{"DiagnosticsNode":[]},"LocalKey":{"Key":[]},"ValueKey":{"LocalKey":[],"Key":[],"ValueKey.T":"1"},"UniqueKey":{"LocalKey":[],"Key":[]},"_LicenseEntryWithLineBreaksParserState":{"Enum":[]},"LicenseEntryWithLineBreaks":{"LicenseEntry":[]},"ObserverList":{"Iterable":["1"],"Iterable.E":"1"},"HashedObserverList":{"Iterable":["1"],"Iterable.E":"1"},"TargetPlatform":{"Enum":[]},"SynchronousFuture":{"Future":["1"]},"GestureDisposition":{"Enum":[]},"GestureBinding":{"HitTestTarget":[]},"FlutterErrorDetailsForPointerEventDispatcher":{"FlutterErrorDetails":[]},"_PointerEventDescription":{"PointerEvent":[]},"PointerHoverEvent":{"PointerEvent":[]},"PointerEnterEvent":{"PointerEvent":[]},"PointerExitEvent":{"PointerEvent":[]},"PointerDownEvent":{"PointerEvent":[]},"PointerMoveEvent":{"PointerEvent":[]},"PointerUpEvent":{"PointerEvent":[]},"PointerSignalEvent":{"PointerEvent":[]},"_AbstractPointerEvent":{"PointerEvent":[]},"_TransformedPointerEvent":{"PointerEvent":[]},"PointerAddedEvent":{"PointerEvent":[]},"_TransformedPointerAddedEvent":{"PointerAddedEvent":[],"PointerEvent":[]},"PointerRemovedEvent":{"PointerEvent":[]},"_TransformedPointerRemovedEvent":{"PointerRemovedEvent":[],"PointerEvent":[]},"_TransformedPointerHoverEvent":{"PointerHoverEvent":[],"PointerEvent":[]},"_TransformedPointerEnterEvent":{"PointerEnterEvent":[],"PointerEvent":[]},"_TransformedPointerExitEvent":{"PointerExitEvent":[],"PointerEvent":[]},"_TransformedPointerDownEvent":{"PointerDownEvent":[],"PointerEvent":[]},"_TransformedPointerMoveEvent":{"PointerMoveEvent":[],"PointerEvent":[]},"_TransformedPointerUpEvent":{"PointerUpEvent":[],"PointerEvent":[]},"PointerScrollEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScrollEvent":{"PointerScrollEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"PointerCancelEvent":{"PointerEvent":[]},"_TransformedPointerCancelEvent":{"PointerCancelEvent":[],"PointerEvent":[]},"ForcePressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_ForceState":{"Enum":[]},"_MatrixTransformPart":{"_TransformPart":[]},"_OffsetTransformPart":{"_TransformPart":[]},"LongPressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"VerticalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"HorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_DragState":{"Enum":[]},"DragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"MultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_ImmediatePointerState":{"MultiDragPointerState":[]},"ImmediateMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_DelayedPointerState":{"MultiDragPointerState":[]},"DelayedMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DoubleTapGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"GestureRecognizer":{"DiagnosticableTree":[],"GestureArenaMember":[]},"OneSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DragStartBehavior":{"Enum":[]},"GestureRecognizerState":{"Enum":[]},"PrimaryPointerGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScaleGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_ScaleState":{"Enum":[]},"TapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_CombiningGestureArenaMember":{"GestureArenaMember":[]},"_CombiningGestureArenaEntry":{"GestureArenaEntry":[]},"IOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"LicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageLicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionLevel":{"Enum":[]},"_MasterDetailFlow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailFlowState":{"State":["_MasterDetailFlow"]},"_MasterDetailScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailScaffoldState":{"State":["_MasterDetailScaffold"]},"_LicensePageState":{"State":["LicensePage"]},"_AboutProgram":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesViewState":{"State":["_PackagesView"]},"_PackageLicensePageState":{"State":["_PackageLicensePage"]},"_PackageLicensePageTitle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LayoutMode":{"Enum":[]},"_Focus":{"Enum":[]},"_MasterPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DetailView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ThemeMode":{"Enum":[]},"_MaterialAppState":{"State":["MaterialApp"]},"AppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PreferredAppBarSize":{"Size":[]},"_AppBarState":{"State":["AppBar"]},"_SliverAppBarState":{"State":["SliverAppBar"]},"_AppBarTitleBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderAppBarTitleBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"MaterialRectArcTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Tween.T":"Rect?","Animatable.T":"Rect?"},"MaterialPointArcTween":{"Tween":["Offset"],"Animatable":["Offset"],"Tween.T":"Offset","Animatable.T":"Offset"},"_CornerId":{"Enum":[]},"BackButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialBannerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomAppBarState":{"State":["BottomAppBar"]},"_BottomAppBarClipper":{"CustomClipper":["Path"],"Listenable":[]},"BottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetState":{"State":["BottomSheet"]},"RawMaterialButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawMaterialButtonState":{"State":["RawMaterialButton"]},"_InputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_LerpProperties":{"MaterialStateProperty":["1?"]},"_LerpSides":{"MaterialStateProperty":["BorderSide?"]},"_LerpShapes":{"MaterialStateProperty":["OutlinedBorder?"]},"ButtonStyleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ButtonStyleState":{"State":["ButtonStyleButton"]},"_MouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_InputPadding0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ButtonTextTheme":{"Enum":[]},"ButtonBarLayoutBehavior":{"Enum":[]},"CalendarDatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerModeToggleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MonthPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusedDate":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"YearPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CalendarDatePickerState":{"State":["CalendarDatePicker"]},"_DatePickerModeToggleButtonState":{"State":["_DatePickerModeToggleButton"]},"_MonthPickerState":{"State":["_MonthPicker"]},"_DayPickerState":{"State":["_DayPicker"]},"_YearPickerState":{"State":["YearPicker"]},"Card":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Checkbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CheckboxState":{"State":["Checkbox"]},"_CheckboxPainter":{"ChangeNotifier":[],"Listenable":[]},"CheckboxListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CheckboxTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties4":{"MaterialStateProperty":["1"]},"MaterialColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"MaterialAccentColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"_SortArrow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableRowInkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SortArrowState":{"State":["_SortArrow"]},"_NullTableColumnWidth":{"TableColumnWidth":[]},"_NullWidget":{"Widget":[],"DiagnosticableTree":[]},"DataTableSource":{"ChangeNotifier":[],"Listenable":[]},"DataTableTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties3":{"MaterialStateProperty":["1"]},"DatePickerEntryMode":{"Enum":[]},"DatePickerMode":{"Enum":[]},"DatePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDialogState":{"State":["DatePickerDialog"]},"_RestorableDatePickerEntryMode":{"RestorableProperty":["DatePickerEntryMode"],"ChangeNotifier":[],"Listenable":[]},"_RestorableAutovalidateMode":{"RestorableProperty":["AutovalidateMode"],"ChangeNotifier":[],"Listenable":[]},"_DatePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AlertDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialogOption":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Dialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"Divider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DividerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerControllerState":{"State":["DrawerController"]},"DrawerAlignment":{"Enum":[]},"Drawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuItemButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenu":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownRoutePage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuItem":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownMenuItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButtonHideUnderline":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuPainter":{"Listenable":[]},"_DropdownMenuItemButtonState":{"State":["_DropdownMenuItemButton<1>"]},"_DropdownMenuState":{"State":["_DropdownMenu<1>"]},"_DropdownRoute":{"ModalRoute":["_DropdownRouteResult<1>"],"TransitionRoute":["_DropdownRouteResult<1>"],"Route":["_DropdownRouteResult<1>"],"ModalRoute.T":"_DropdownRouteResult<1>"},"_RenderMenuItem":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_DropdownMenuItemContainer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownButtonState":{"State":["DropdownButton<1>"],"WidgetsBindingObserver":[]},"DropdownButtonFormField":{"FormField":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"1"},"_DropdownButtonFormFieldState":{"FormFieldState":["1"],"State":["FormField<1>"]},"ElevatedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElevatedButtonDefaultBackground":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultElevation":{"MaterialStateProperty":["double"]},"_ElevatedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"ElevatedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpandIcon":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpandIconState":{"State":["ExpandIcon"]},"ExpansionPanelRadio":{"ExpansionPanel":[]},"ExpansionPanelList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SaltedKey":{"LocalKey":[],"Key":[]},"_ExpansionPanelListState":{"State":["ExpansionPanelList"]},"FlexibleSpaceBarSettings":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonType":{"Enum":[]},"FloatingActionButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ChildOverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderChildOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_AnimationSwap":{"Animation0":["1"],"Listenable":[]},"IconButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Ink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkState":{"State":["Ink"]},"InkDecoration":{"InkFeature":[]},"InkHighlight":{"InteractiveInkFeature":[],"InkFeature":[]},"InkRipple":{"InteractiveInkFeature":[],"InkFeature":[]},"InkSplash":{"InteractiveInkFeature":[],"InkFeature":[]},"InteractiveInkFeature":{"InkFeature":[]},"_ParentInkResponseProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseStateWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HighlightType":{"Enum":[]},"InkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkResponse":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseState":{"State":["_InkResponseStateWidget"],"_ParentInkResponseState":[]},"InputBorder":{"ShapeBorder":[]},"_NoInputBorder":{"InputBorder":[],"ShapeBorder":[]},"UnderlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"OutlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"InputDatePickerFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputDatePickerFormFieldState":{"State":["InputDatePickerFormField"]},"_BorderContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperError":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecorationSlot":{"Enum":[]},"InputDecorator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputBorderGap":{"ChangeNotifier":[],"Listenable":[]},"_InputBorderTween":{"Tween":["InputBorder"],"Animatable":["InputBorder"],"Tween.T":"InputBorder","Animatable.T":"InputBorder"},"_InputBorderPainter":{"Listenable":[]},"_BorderContainerState":{"State":["_BorderContainer"]},"_Shaker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperErrorState":{"State":["_HelperError"]},"FloatingLabelBehavior":{"Enum":[]},"_RenderDecoration":{"SlottedContainerRenderObjectMixin":["_DecorationSlot"],"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.S":"_DecorationSlot"},"_Decorator":{"SlottedMultiChildRenderObjectWidgetMixin":["_DecorationSlot"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.S":"_DecorationSlot"},"_InputDecoratorState":{"State":["InputDecorator"]},"ListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListTileSlot":{"Enum":[]},"ListTileStyle":{"Enum":[]},"ListTileControlAffinity":{"Enum":[]},"_ListTile":{"SlottedMultiChildRenderObjectWidgetMixin":["_ListTileSlot"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.S":"_ListTileSlot"},"_RenderListTile":{"SlottedContainerRenderObjectMixin":["_ListTileSlot"],"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.S":"_ListTileSlot"},"ListTileTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialType":{"Enum":[]},"Material":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInkFeatures":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ShapeBorderTween":{"Tween":["ShapeBorder?"],"Animatable":["ShapeBorder?"],"Tween.T":"ShapeBorder?","Animatable.T":"ShapeBorder?"},"_MaterialInterior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialState":{"State":["Material"]},"_InkFeatures":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialInteriorState":{"State":["_MaterialInterior"]},"_ShapeBorderPaint":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ShapeBorderPainter":{"Listenable":[]},"_MaterialLocalizationsDelegate":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"DefaultMaterialLocalizations":{"MaterialLocalizations":[]},"MaterialState":{"Enum":[]},"MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"_MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"MaterialStateMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_EnabledAndDisabledMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_MaterialStatePropertyWith":{"MaterialStateProperty":["1"]},"_MaterialStatePropertyAll":{"MaterialStateProperty":["1"]},"MergeableMaterial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialSlice":{"MergeableMaterialItem":[]},"MaterialGap":{"MergeableMaterialItem":[]},"_MergeableMaterialState":{"State":["MergeableMaterial"]},"_MergeableMaterialSliceKey":{"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State"},"_MergeableMaterialListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMergeableMaterialListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_LerpProperties2":{"MaterialStateProperty":["1"]},"OutlinedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OutlinedButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0"]},"OutlinedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialPageRoute":{"MaterialRouteTransitionMixin":["1"],"PageRoute":["1"],"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"_ZoomEnterTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomExitTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FadeUpwardsPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ZoomPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"CupertinoPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"PaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaginatedDataTableState":{"State":["PaginatedDataTable"]},"PopupMenuEntry":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuDivider":{"PopupMenuEntry":["0&"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuItem":{"PopupMenuEntry":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuPosition":{"Enum":[]},"_PopupMenuDividerState":{"State":["PopupMenuDivider"]},"_MenuItem0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMenuItem0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"PopupMenuItemState":{"State":["2"]},"_PopupMenu":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"PopupMenuButtonState":{"State":["PopupMenuButton<1>"]},"_EffectiveMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"PopupMenuTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinearProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CircularProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActivityIndicatorType":{"Enum":[]},"ProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinearProgressIndicatorPainter":{"Listenable":[]},"_LinearProgressIndicatorState":{"State":["LinearProgressIndicator"]},"_CircularProgressIndicatorPainter":{"Listenable":[]},"_CircularProgressIndicatorState":{"State":["CircularProgressIndicator"]},"_RefreshProgressIndicatorPainter":{"Listenable":[]},"_RefreshProgressIndicatorState":{"State":["CircularProgressIndicator"]},"ProgressIndicatorTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Radio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RadioState":{"State":["Radio<1>"]},"_RadioPainter":{"ChangeNotifier":[],"Listenable":[]},"RadioListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RadioTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties1":{"MaterialStateProperty":["1"]},"RefreshIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RefreshIndicatorMode":{"Enum":[]},"RefreshIndicatorTriggerMode":{"Enum":[]},"RefreshIndicatorState":{"State":["RefreshIndicator"]},"ReorderableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableListViewState":{"State":["ReorderableListView"]},"_ReorderableListViewChildGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalObjectKey.T":"State","GlobalKey.T":"State"},"ScaffoldMessenger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScaffoldMessengerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaffoldState":{"State":["Scaffold"]},"_StandardBottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StandardBottomSheetState":{"State":["_StandardBottomSheet"]},"_ScaffoldScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScaffoldSlot":{"Enum":[]},"ScaffoldMessengerState":{"State":["ScaffoldMessenger"]},"_ScaffoldGeometryNotifier":{"ChangeNotifier":[],"Listenable":[]},"_BodyBoxConstraints":{"BoxConstraints":[]},"_BodyBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransitionState":{"State":["_FloatingActionButtonTransition"]},"PersistentBottomSheetController":{"ScaffoldFeatureController":["_StandardBottomSheet","1"]},"_MaterialScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbarState":{"RawScrollbarState":["_MaterialScrollbar"],"State":["_MaterialScrollbar"]},"_LerpProperties5":{"MaterialStateProperty":["1"]},"SelectableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSpanEditingController":{"TextEditingController":[],"ValueNotifier":["TextEditingValue"],"ChangeNotifier":[],"Listenable":[]},"_SelectableTextState":{"State":["SelectableText"]},"SnackBarClosedReason":{"Enum":[]},"SnackBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SwitchType":{"Enum":[]},"Switch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitchState":{"State":["_MaterialSwitch"]},"_SwitchPainter":{"ChangeNotifier":[],"Listenable":[]},"SwitchListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SwitchListTileType":{"Enum":[]},"SwitchTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties0":{"MaterialStateProperty":["1"]},"_LerpColors":{"MaterialStateProperty":["Color?"]},"_TabControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTabController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabController":{"ChangeNotifier":[],"Listenable":[]},"_DefaultTabControllerState":{"State":["DefaultTabController"]},"UnderlineTabIndicator":{"Decoration":[]},"_UnderlinePainter":{"BoxPainter":[]},"TabBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBarView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Tab":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabLabelBarRenderer":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_TabLabelBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndicatorPainter":{"Listenable":[]},"_ChangeAnimation":{"Animation0":["double"],"Listenable":[]},"_DragAnimation":{"Animation0":["double"],"Listenable":[]},"_TabBarScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"ChangeNotifier":[],"Listenable":[],"ScrollMetrics":[]},"_TabBarScrollController":{"ScrollController":[],"ChangeNotifier":[],"Listenable":[]},"_TabBarState":{"State":["TabBar"]},"_TabBarViewState":{"State":["TabBarView"]},"TextButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0"]},"TextButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextFieldState":{"State":["TextField"],"AutofillClient":[]},"TextFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_TextFormFieldState":{"FormFieldState":["String"],"State":["FormField"]},"_TextSelectionHandlePainter":{"Listenable":[]},"TextSelectionTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Theme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ThemeDataTween":{"Tween":["ThemeData"],"Animatable":["ThemeData"],"Tween.T":"ThemeData","Animatable.T":"ThemeData"},"AnimatedTheme":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedThemeState":{"State":["AnimatedTheme"]},"MaterialTapTargetSize":{"Enum":[]},"DayPeriod":{"Enum":[]},"RestorableTimeOfDay":{"RestorableProperty":["TimeOfDay"],"ChangeNotifier":[],"Listenable":[]},"TimeOfDayFormat":{"Enum":[]},"HourFormat":{"Enum":[]},"_TimePickerMode":{"Enum":[]},"TimePickerEntryMode":{"Enum":[]},"_Dial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerInput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StringFragment":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodInputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding1":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_DialPainter":{"Listenable":[]},"_DialState":{"State":["_Dial"]},"_TimePickerInputState":{"State":["_TimePickerInput"]},"_HourTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextFieldState":{"State":["_HourMinuteTextField"]},"_RestorableTimePickerEntryMode":{"RestorableProperty":["TimePickerEntryMode"],"ChangeNotifier":[],"Listenable":[]},"_RestorableTimePickerMode":{"RestorableProperty":["_TimePickerMode"],"ChangeNotifier":[],"Listenable":[]},"_RestorableAutovalidateMode0":{"RestorableProperty":["AutovalidateMode"],"ChangeNotifier":[],"Listenable":[]},"_RestorableTimePickerModeN":{"RestorableProperty":["_TimePickerMode?"],"ChangeNotifier":[],"Listenable":[]},"_TimePickerDialogState":{"State":["TimePickerDialog"]},"TimePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ToggleButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ResolveFillColor":{"MaterialStateProperty":["Color?"]},"_DefaultFillColor":{"MaterialStateProperty":["Color"]},"_SelectToggleButton":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectToggleButtonRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_InputPadding1":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding2":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ToggleButtonsTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter":{"ChangeNotifier":[],"Listenable":[]},"Tooltip":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipState":{"State":["Tooltip"]},"_TooltipOverlay":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipTriggerMode":{"Enum":[]},"ScriptCategory":{"Enum":[]},"NetworkImage":{"ImageProvider":["NetworkImage0"],"ImageProvider.T":"NetworkImage0"},"Alignment":{"AlignmentGeometry":[]},"AlignmentDirectional":{"AlignmentGeometry":[]},"_MixedAlignment":{"AlignmentGeometry":[]},"RenderComparison":{"Enum":[]},"Axis0":{"Enum":[]},"VerticalDirection":{"Enum":[]},"AxisDirection":{"Enum":[]},"PaintingBinding":{"SchedulerBinding":[]},"_SystemFontsNotifier":{"Listenable":[]},"OutlinedBorder":{"ShapeBorder":[]},"BorderStyle":{"Enum":[]},"_CompoundBorder":{"ShapeBorder":[]},"BoxShape":{"Enum":[]},"BoxBorder":{"ShapeBorder":[]},"Border":{"ShapeBorder":[]},"BorderDirectional":{"ShapeBorder":[]},"BoxDecoration":{"Decoration":[]},"_BoxDecorationPainter":{"BoxPainter":[]},"BoxFit":{"Enum":[]},"BoxShadow":{"Shadow":[]},"CircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ColorSwatch":{"Color":[]},"ImageRepeat":{"Enum":[]},"EdgeInsets":{"EdgeInsetsGeometry":[]},"EdgeInsetsDirectional":{"EdgeInsetsGeometry":[]},"_MixedEdgeInsets":{"EdgeInsetsGeometry":[]},"FractionalOffset":{"AlignmentGeometry":[]},"NetworkImage0":{"ImageProvider":["NetworkImage0"]},"AssetBundleImageProvider":{"ImageProvider":["AssetBundleImageKey"]},"AssetImage":{"ImageProvider":["AssetBundleImageKey"],"ImageProvider.T":"AssetBundleImageKey"},"InlineSpan":{"DiagnosticableTree":[]},"PlaceholderSpan":{"InlineSpan":[],"DiagnosticableTree":[]},"RoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_RoundedRectangleToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ShapeDecoration":{"Decoration":[]},"_ShapeDecorationPainter":{"BoxPainter":[]},"StadiumBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToRoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"TextOverflow":{"Enum":[]},"TextWidthBasis":{"Enum":[]},"TextSpan":{"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"SpringType":{"Enum":[]},"RenderAnimatedSizeState":{"Enum":[]},"RenderAnimatedSize":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RendererBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"BoxHitTestResult":{"HitTestResult":[]},"RenderBox":{"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"BoxHitTestEntry":{"HitTestEntry":["RenderBox"]},"BoxParentData":{"ParentData":[]},"ContainerBoxParentData":{"BoxParentData":[],"ContainerParentDataMixin":["1"],"ParentData":[]},"_IntrinsicDimension":{"Enum":[]},"MultiChildLayoutParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderCustomMultiChildLayoutBox":{"RenderBoxContainerDefaultsMixin":["RenderBox","MultiChildLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","MultiChildLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"CustomPainter":{"Listenable":[]},"RenderCustomPaint":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderEditablePainter":{"ChangeNotifier":[],"Listenable":[]},"RenderEditable":{"RenderBoxContainerDefaultsMixin":["RenderBox","TextParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_RenderEditableCustomPaint":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_TextHighlightPainter":{"RenderEditablePainter":[],"ChangeNotifier":[],"Listenable":[]},"_FloatingCursorPainter":{"RenderEditablePainter":[],"ChangeNotifier":[],"Listenable":[]},"_CompositeRenderEditablePainter":{"RenderEditablePainter":[],"ChangeNotifier":[],"Listenable":[]},"RenderErrorBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"FlexParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"FlexFit":{"Enum":[]},"MainAxisSize":{"Enum":[]},"MainAxisAlignment":{"Enum":[]},"CrossAxisAlignment":{"Enum":[]},"RenderFlex":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderImage":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"Layer0":{"DiagnosticableTree":[],"AbstractNode":[]},"ContainerLayer0":{"DiagnosticableTree":[],"AbstractNode":[]},"ClipRectLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ClipRRectLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"TransformLayer":{"OffsetLayer":[],"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"PictureLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"PlatformViewLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"PerformanceOverlayLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"OffsetLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ClipPathLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"OpacityLayer":{"OffsetLayer":[],"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"BackdropFilterLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"PhysicalModelLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"LeaderLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"FollowerLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"AnnotatedRegionLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ListBodyParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"MouseTracker":{"ChangeNotifier":[],"Listenable":[]},"RenderObject":{"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ContainerParentDataMixin":{"ParentData":[]},"_RootSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_SwitchableSemanticsFragment":{"_InterestingSemanticsFragment":[]},"TextParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"PlaceholderSpanIndexSemanticsTag":{"SemanticsTag":[]},"RenderParagraph":{"RenderBoxContainerDefaultsMixin":["RenderBox","TextParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderPerformanceOverlay":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"PlatformViewHitTestBehavior":{"Enum":[]},"_PlatformViewGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PlatformViewRenderBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"AbstractNode":[],"HitTestTarget":[]},"ShapeBorderClipper":{"CustomClipper":["Path"],"Listenable":[]},"RenderAbsorbPointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSemanticsGestureHandler":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"HitTestBehavior":{"Enum":[]},"RenderProxyBoxWithHitTestBehavior":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderConstrainedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderLimitedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderAspectRatio":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderIntrinsicWidth":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderIntrinsicHeight":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderAnimatedOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderBackdropFilter":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"CustomClipper":{"Listenable":[]},"_RenderCustomClip":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderClipRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderClipRRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderClipOval":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderClipPath":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_RenderPhysicalModelBase":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderPhysicalModel":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderPhysicalShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"DecorationPosition":{"Enum":[]},"RenderDecoratedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderTransform":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderFittedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderFractionalTranslation":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderPointerListener":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"AbstractNode":[],"HitTestTarget":[]},"RenderRepaintBoundary":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderIgnorePointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderOffstage":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSemanticsAnnotations":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderBlockSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderMergeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderExcludeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderIndexedSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderLeaderLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderFollowerLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderAnnotatedRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderAligningShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderPositionedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderConstrainedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderFractionallySizedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderCustomSingleChildLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"SliverHitTestResult":{"HitTestResult":[]},"SliverLogicalContainerParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"SliverPhysicalContainerParentData":{"SliverPhysicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"RenderSliver":{"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"GrowthDirection":{"Enum":[]},"SliverHitTestEntry":{"HitTestEntry":["RenderSliver"]},"SliverLogicalParentData":{"ParentData":[]},"SliverPhysicalParentData":{"ParentData":[]},"RenderSliverFillViewport":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverFixedExtentBoxAdaptor":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"SliverGridParentData":{"SliverMultiBoxAdaptorParentData":[],"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverGrid":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverList":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"KeepAliveParentDataMixin":{"ParentData":[]},"SliverMultiBoxAdaptorParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverMultiBoxAdaptor":{"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSliverEdgeInsetsPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSliverPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSliverFloatingPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSliverPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderSliverPinnedPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"StackParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"StackFit":{"Enum":[]},"RenderStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderIndexedStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TableCellParentData":{"BoxParentData":[],"ParentData":[]},"IntrinsicColumnWidth":{"TableColumnWidth":[]},"FixedColumnWidth":{"TableColumnWidth":[]},"FlexColumnWidth":{"TableColumnWidth":[]},"TableCellVerticalAlignment":{"Enum":[]},"RenderTable":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"AlignmentGeometryTween":{"Tween":["AlignmentGeometry?"],"Animatable":["AlignmentGeometry?"],"Tween.T":"AlignmentGeometry?","Animatable.T":"AlignmentGeometry?"},"RenderView":{"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"CacheExtentStyle":{"Enum":[]},"RenderViewportBase":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["1"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","1"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"RenderViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverPhysicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverPhysicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverPhysicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverPhysicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"RenderShrinkWrappingViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverLogicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverLogicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverLogicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverLogicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"ViewportOffset":{"ChangeNotifier":[],"Listenable":[]},"ScrollDirection":{"Enum":[]},"WrapParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"WrapAlignment":{"Enum":[]},"WrapCrossAlignment":{"Enum":[]},"RenderWrap":{"RenderBoxContainerDefaultsMixin":["RenderBox","WrapParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","WrapParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"SchedulerPhase":{"Enum":[]},"TickerFuture":{"Future":["~"]},"TickerCanceled":{"Exception":[]},"SemanticsNode":{"DiagnosticableTree":[],"AbstractNode":[]},"_BoxEdge":{"Comparable":["_BoxEdge"]},"_SemanticsSortGroup":{"Comparable":["_SemanticsSortGroup"]},"_TraversalSortNode":{"Comparable":["_TraversalSortNode"]},"SemanticsSortKey":{"Comparable":["SemanticsSortKey"]},"_SemanticsDiagnosticableNode":{"DiagnosticableNode":["SemanticsNode"],"DiagnosticsNode":[]},"SemanticsHintOverrides":{"DiagnosticableTree":[]},"SemanticsProperties":{"DiagnosticableTree":[]},"SemanticsOwner":{"ChangeNotifier":[],"Listenable":[]},"DebugSemanticsDumpOrder":{"Enum":[]},"OrdinalSortKey":{"Comparable":["SemanticsSortKey"]},"_AutofillScopeTextInputConfiguration":{"TextInputConfiguration":[]},"ServicesBinding":{"SchedulerBinding":[]},"KeyDownEvent":{"KeyEvent":[]},"KeyUpEvent":{"KeyEvent":[]},"KeyRepeatEvent":{"KeyEvent":[]},"KeyDataTransitMode":{"Enum":[]},"PlatformException":{"Exception":[]},"MissingPluginException":{"Exception":[]},"_DeferringMouseCursor":{"MouseCursor0":[]},"_NoopMouseCursorSession":{"MouseCursorSession":[]},"_NoopMouseCursor":{"MouseCursor0":[]},"_SystemMouseCursorSession":{"MouseCursorSession":[]},"SystemMouseCursor":{"MouseCursor0":[]},"KeyboardSide":{"Enum":[]},"ModifierKey":{"Enum":[]},"RawKeyDownEvent":{"RawKeyEvent":[]},"RawKeyUpEvent":{"RawKeyEvent":[]},"RestorationManager":{"ChangeNotifier":[],"Listenable":[]},"SystemSoundType":{"Enum":[]},"TextSelection":{"TextRange":[]},"TextEditingDeltaInsertion":{"TextEditingDelta":[]},"TextEditingDeltaDeletion":{"TextEditingDelta":[]},"TextEditingDeltaReplacement":{"TextEditingDelta":[]},"TextEditingDeltaNonTextUpdate":{"TextEditingDelta":[]},"MaxLengthEnforcement":{"Enum":[]},"FilteringTextInputFormatter":{"TextInputFormatter":[]},"LengthLimitingTextInputFormatter":{"TextInputFormatter":[]},"SelectionChangedCause":{"Enum":[]},"SmartDashesType":{"Enum":[]},"SmartQuotesType":{"Enum":[]},"TextInputAction":{"Enum":[]},"TextCapitalization0":{"Enum":[]},"FloatingCursorDragState":{"Enum":[]},"Actions":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionsMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusableActionDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DoNothingIntent":{"Intent":[]},"DoNothingAndStopPropagationIntent":{"Intent":[]},"ActivateIntent":{"Intent":[]},"ButtonActivateIntent":{"Intent":[]},"DismissIntent":{"Intent":[]},"PrioritizedIntents":{"Intent":[]},"ContextAction":{"Action":["1"]},"CallbackAction":{"Action":["1"],"Action.T":"1"},"_ActionsState":{"State":["Actions"]},"_FocusableActionDetectorState":{"State":["FocusableActionDetector"]},"DoNothingAction":{"Action":["Intent"],"Action.T":"Intent"},"DismissAction":{"Action":["DismissIntent"]},"PrioritizedAction":{"Action":["PrioritizedIntents"],"Action.T":"PrioritizedIntents"},"_OverridableAction":{"__OverridableAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_OverridableContextAction":{"__OverridableContextAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_ContextActionToActionAdapter":{"Action":["1"],"Action.T":"1"},"CrossFadeState":{"Enum":[]},"AnimatedCrossFade":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedCrossFadeState":{"State":["AnimatedCrossFade"]},"AnimatedSize":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSizeState":{"State":["AnimatedSize"]},"_AnimatedSize":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedSwitcher":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSwitcherState":{"State":["AnimatedSwitcher"]},"AnnotatedRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"WidgetsApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsAppState":{"State":["WidgetsApp"],"WidgetsBindingObserver":[]},"StreamBuilderBase":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConnectionState":{"Enum":[]},"FutureBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StreamBuilderBaseState":{"State":["StreamBuilderBase<1,2>"]},"StreamBuilder":{"StreamBuilderBase":["1","AsyncSnapshot<1>"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"StreamBuilderBase.T":"1","StreamBuilderBase.S":"AsyncSnapshot<1>"},"_FutureBuilderState":{"State":["FutureBuilder<1>"]},"RawAutocomplete":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutocompletePreviousOptionIntent":{"Intent":[]},"AutocompleteNextOptionIntent":{"Intent":[]},"AutocompleteHighlightedOption":{"InheritedNotifier":["ValueNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"ValueNotifier"},"_RawAutocompleteState":{"State":["RawAutocomplete<1>"]},"_AutocompleteCallbackAction":{"CallbackAction":["1"],"Action":["1"],"Action.T":"1"},"AutofillGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutofillScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutofillContextAction":{"Enum":[]},"AutofillGroupState":{"State":["AutofillGroup"]},"AutomaticKeepAlive":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutomaticKeepAliveState":{"State":["AutomaticKeepAlive"]},"KeepAliveHandle":{"ChangeNotifier":[],"Listenable":[]},"_NullWidget0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Directionality":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipPath":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformTarget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformFollower":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Padding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Align":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Center":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSingleChildLayout":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LayoutId":{"ParentDataWidget":["MultiChildLayoutParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"MultiChildLayoutParentData"},"CustomMultiChildLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Stack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Positioned":{"ParentDataWidget":["StackParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"StackParentData"},"Flex":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Row":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Column":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Flexible":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"Expanded":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"DefaultAssetBundle":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Listener":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IgnorePointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Semantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlockSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Builder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ColoredBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Opacity":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackdropFilter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomPaint":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipOval":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalModel":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalShape":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Transform":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FittedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionalTranslation":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConstrainedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionallySizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Offstage":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OffstageElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"AspectRatio":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicWidth":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicHeight":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedStack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PositionedDirectional":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Wrap":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawImage":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RepaintBoundary":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AbsorbPointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MergeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExcludeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyedSubtree":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderColoredBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"WidgetsBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"RenderObjectToWidgetAdapter":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderObjectToWidgetElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"WidgetsFlutterBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"Container":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecorationClipper":{"CustomClipper":["Path"],"Listenable":[]},"DefaultTextEditingShortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DisplayFeatureSubScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableNotification":{"ViewportNotificationMixin":[]},"_ResetNotifier":{"ChangeNotifier":[],"Listenable":[]},"_InheritedResetNotifier":{"InheritedNotifier":["_ResetNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"_ResetNotifier"},"_DraggableScrollableSheetState":{"State":["DraggableScrollableSheet"]},"_DraggableScrollableSheetScrollController":{"ScrollController":[],"ChangeNotifier":[],"Listenable":[]},"_DraggableScrollableSheetScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"ChangeNotifier":[],"Listenable":[],"ScrollMetrics":[]},"DualTransitionBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DualTransitionBuilderState":{"State":["DualTransitionBuilder"]},"TextEditingController":{"ValueNotifier":["TextEditingValue"],"ChangeNotifier":[],"Listenable":[]},"EditableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditableTextState":{"State":["EditableText"],"WidgetsBindingObserver":[],"AutofillClient":[]},"_ScribbleFocusable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribblePlaceholder":{"WidgetSpan":[],"PlaceholderSpan":[],"InlineSpan":[],"DiagnosticableTree":[]},"_TextEditingHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Editable":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribbleFocusableState":{"State":["_ScribbleFocusable"],"ScribbleClient":[]},"_DeleteTextAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_UpdateTextSelectionAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_ExtendSelectionOrCaretPositionAction":{"ContextAction":["ExtendSelectionToNextWordBoundaryOrCaretLocationIntent"],"Action":["ExtendSelectionToNextWordBoundaryOrCaretLocationIntent"],"Action.T":"ExtendSelectionToNextWordBoundaryOrCaretLocationIntent","ContextAction.T":"ExtendSelectionToNextWordBoundaryOrCaretLocationIntent"},"_UpdateTextSelectionToAdjacentLineAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_SelectAllAction":{"ContextAction":["SelectAllTextIntent"],"Action":["SelectAllTextIntent"],"Action.T":"SelectAllTextIntent","ContextAction.T":"SelectAllTextIntent"},"_CopySelectionAction":{"ContextAction":["CopySelectionTextIntent"],"Action":["CopySelectionTextIntent"],"Action.T":"CopySelectionTextIntent","ContextAction.T":"CopySelectionTextIntent"},"_TextEditingHistoryState":{"State":["_TextEditingHistory"]},"KeyEventResult":{"Enum":[]},"FocusNode":{"DiagnosticableTree":[],"ChangeNotifier":[],"Listenable":[]},"FocusScopeNode":{"FocusNode":[],"DiagnosticableTree":[],"ChangeNotifier":[],"Listenable":[]},"FocusHighlightMode":{"Enum":[]},"UnfocusDisposition":{"Enum":[]},"FocusHighlightStrategy":{"Enum":[]},"FocusManager":{"DiagnosticableTree":[],"ChangeNotifier":[],"Listenable":[]},"Focus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusMarker":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"_FocusState":{"State":["Focus"]},"FocusScope":{"Focus":[],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusScopeState":{"State":["Focus"]},"ExcludeFocus":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TraversalDirection":{"Enum":[]},"FocusTraversalGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusTraversalGroupMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RequestFocusIntent":{"Intent":[]},"NextFocusIntent":{"Intent":[]},"PreviousFocusIntent":{"Intent":[]},"DirectionalFocusIntent":{"Intent":[]},"_FocusTraversalGroupState":{"State":["FocusTraversalGroup"]},"RequestFocusAction":{"Action":["RequestFocusIntent"],"Action.T":"RequestFocusIntent"},"NextFocusAction":{"Action":["NextFocusIntent"],"Action.T":"NextFocusIntent"},"PreviousFocusAction":{"Action":["PreviousFocusIntent"],"Action.T":"PreviousFocusIntent"},"DirectionalFocusAction":{"Action":["DirectionalFocusIntent"],"Action.T":"DirectionalFocusIntent"},"Form":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormState":{"State":["Form"]},"_FormScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormFieldState":{"State":["FormField<1>"]},"AutovalidateMode":{"Enum":[]},"ObjectKey":{"LocalKey":[],"Key":[]},"GlobalKey":{"Key":[]},"LabeledGlobalKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1"},"Widget":{"DiagnosticableTree":[]},"StatelessWidget":{"Widget":[],"DiagnosticableTree":[]},"StatefulWidget":{"Widget":[],"DiagnosticableTree":[]},"RenderObjectWidget":{"Widget":[],"DiagnosticableTree":[]},"Element0":{"DiagnosticableTree":[],"BuildContext":[]},"StatefulElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"GlobalObjectKey":{"GlobalKey":["1"],"Key":[],"GlobalObjectKey.T":"1","GlobalKey.T":"1"},"_StateLifecycle":{"Enum":[]},"ProxyWidget":{"Widget":[],"DiagnosticableTree":[]},"ParentDataWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LeafRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElementLifecycle":{"Enum":[]},"_ElementDiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"ErrorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ComponentElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"StatelessElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ProxyElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ParentDataElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderObjectElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RootRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"LeafRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SingleChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"MultiChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget1":{"Widget":[],"DiagnosticableTree":[]},"GestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetectorState":{"State":["RawGestureDetector"]},"GestureRecognizerFactoryWithHandlers":{"GestureRecognizerFactory":["1"]},"_GestureSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"HeroFlightDirection":{"Enum":[]},"Hero":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HeroState":{"State":["Hero"]},"HeroController":{"NavigatorObserver":[]},"Icon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Image":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImageState":{"State":["Image"],"WidgetsBindingObserver":[]},"BoxConstraintsTween":{"Tween":["BoxConstraints"],"Animatable":["BoxConstraints"],"Tween.T":"BoxConstraints","Animatable.T":"BoxConstraints"},"DecorationTween":{"Tween":["Decoration"],"Animatable":["Decoration"],"Tween.T":"Decoration","Animatable.T":"Decoration"},"EdgeInsetsGeometryTween":{"Tween":["EdgeInsetsGeometry"],"Animatable":["EdgeInsetsGeometry"],"Tween.T":"EdgeInsetsGeometry","Animatable.T":"EdgeInsetsGeometry"},"BorderRadiusTween":{"Tween":["BorderRadius?"],"Animatable":["BorderRadius?"],"Tween.T":"BorderRadius?","Animatable.T":"BorderRadius?"},"Matrix4Tween":{"Tween":["Matrix4"],"Animatable":["Matrix4"],"Tween.T":"Matrix4","Animatable.T":"Matrix4"},"TextStyleTween":{"Tween":["TextStyle"],"Animatable":["TextStyle"],"Tween.T":"TextStyle","Animatable.T":"TextStyle"},"AnimatedContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPadding":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedOpacity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedDefaultTextStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPhysicalModel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImplicitlyAnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImplicitlyAnimatedWidgetState":{"State":["1"]},"AnimatedWidgetBaseState":{"State":["1"]},"_AnimatedContainerState":{"State":["AnimatedContainer"]},"_AnimatedPaddingState":{"State":["AnimatedPadding"]},"_AnimatedOpacityState":{"State":["AnimatedOpacity"]},"_AnimatedDefaultTextStyleState":{"State":["AnimatedDefaultTextStyle"]},"_AnimatedPhysicalModelState":{"State":["AnimatedPhysicalModel"]},"InheritedModel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedModelElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedNotifier":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedNotifierElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CaptureAll":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InteractiveViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InteractiveViewerState":{"State":["InteractiveViewer"]},"_InteractiveViewerBuilt":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransformationController":{"ValueNotifier":["Matrix4"],"ChangeNotifier":[],"Listenable":[]},"_GestureType":{"Enum":[]},"LayoutBuilder":{"ConstrainedLayoutBuilder":["BoxConstraints"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxConstraints"},"ConstrainedLayoutBuilder":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LayoutBuilderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxConstraints","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxConstraints"},"_LocalizationsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Localizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsLocalizationsDelegate":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"DefaultWidgetsLocalizations":{"WidgetsLocalizations":[]},"_LocalizationsState":{"State":["Localizations"]},"MediaQuery":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MediaQueryFromWindow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Orientation":{"Enum":[]},"NavigationMode":{"Enum":[]},"_MediaQueryFromWindowState":{"State":["_MediaQueryFromWindow"],"WidgetsBindingObserver":[]},"_AnyTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ModalBarrier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedModalBarrier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnyTapGestureRecognizerFactory":{"GestureRecognizerFactory":["_AnyTapGestureRecognizer"]},"_ModalBarrierGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigationToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ToolbarSlot":{"Enum":[]},"RoutePopDisposition":{"Enum":[]},"Page":{"RouteSettings":[]},"HeroControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Navigator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigatorState":{"State":["Navigator"]},"_RouteRestorationType":{"Enum":[]},"_RouteLifecycle":{"Enum":[]},"_NotAnnounced":{"Route":["~"]},"_NavigatorPushObservation":{"_NavigatorObservation":[]},"_NavigatorPopObservation":{"_NavigatorObservation":[]},"_NavigatorRemoveObservation":{"_NavigatorObservation":[]},"_NavigatorReplaceObservation":{"_NavigatorObservation":[]},"_HistoryProperty":{"RestorableProperty":["Map>?"],"ChangeNotifier":[],"Listenable":[]},"NotificationListener":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_OverflowBarParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"OverflowBarAlignment":{"Enum":[]},"OverflowBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderOverflowBar":{"RenderBoxContainerDefaultsMixin":["RenderBox","_OverflowBarParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_OverflowBarParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverlayEntry":{"ChangeNotifier":[],"Listenable":[]},"_OverlayEntryWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayEntryWidgetState":{"State":["_OverlayEntryWidget"]},"Overlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverlayState":{"State":["Overlay"]},"_Theatre":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TheatreElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderTheatre":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","ContainerRenderObjectMixin.0":"RenderBox"},"GlowingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StretchingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverscrollIndicatorNotification":{"ViewportNotificationMixin":[]},"_GlowingOverscrollIndicatorState":{"State":["GlowingOverscrollIndicator"]},"_GlowState":{"Enum":[]},"_GlowController":{"ChangeNotifier":[],"Listenable":[]},"_GlowingOverscrollIndicatorPainter":{"Listenable":[]},"_StretchingOverscrollIndicatorState":{"State":["StretchingOverscrollIndicator"]},"_StretchState":{"Enum":[]},"_StretchController":{"ChangeNotifier":[],"Listenable":[]},"PageStorageKey":{"ValueKey":["1"],"LocalKey":[],"Key":[]},"PageStorage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageController":{"ScrollController":[],"ChangeNotifier":[],"Listenable":[]},"PageMetrics":{"ScrollMetrics":[]},"_PagePosition":{"ScrollPosition":[],"PageMetrics":[],"ViewportOffset":[],"ChangeNotifier":[],"Listenable":[],"ScrollMetrics":[]},"_PageViewState":{"State":["PageView"]},"PageRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"PerformanceOverlay":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PlaceholderPainter":{"Listenable":[]},"Placeholder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HtmlElementViewController":{"PlatformViewController":[]},"PlatformViewLink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewSurface":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"HtmlElementView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PlatformViewLinkState":{"State":["PlatformViewLink"]},"PreferredSize":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PrimaryScrollController":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableListState":{"State":["SliverReorderableList"]},"_ReorderableItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemState":{"State":["_ReorderableItem"]},"ReorderableDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReorderableDelayedDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DragItemProxy":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalObjectKey.T":"State","GlobalKey.T":"State"},"RestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UnmanagedRestorationScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RootRestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RestorableProperty":{"ChangeNotifier":[],"Listenable":[]},"_RestorationScopeState":{"State":["RestorationScope"]},"_RootRestorationScopeState":{"State":["RootRestorationScope"]},"RestorableValue":{"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[]},"_RestorablePrimitiveValueN":{"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[]},"_RestorablePrimitiveValue":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[]},"RestorableNum":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[],"_RestorablePrimitiveValueN.T":"1"},"RestorableBool":{"_RestorablePrimitiveValueN":["bool"],"RestorableProperty":["bool"],"ChangeNotifier":[],"Listenable":[],"_RestorablePrimitiveValueN.T":"bool"},"RestorableBoolN":{"_RestorablePrimitiveValueN":["bool?"],"RestorableProperty":["bool?"],"ChangeNotifier":[],"Listenable":[],"_RestorablePrimitiveValueN.T":"bool?"},"RestorableStringN":{"_RestorablePrimitiveValueN":["String?"],"RestorableProperty":["String?"],"ChangeNotifier":[],"Listenable":[],"_RestorablePrimitiveValueN.T":"String?"},"RestorableDateTime":{"RestorableProperty":["DateTime"],"ChangeNotifier":[],"Listenable":[]},"RestorableListenable":{"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[]},"RestorableChangeNotifier":{"RestorableProperty":["1"],"ChangeNotifier":[],"Listenable":[]},"RestorableTextEditingController":{"RestorableProperty":["TextEditingController"],"ChangeNotifier":[],"Listenable":[]},"_ModalScopeStatus":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScopeState":{"State":["_ModalScope<1>"]},"OverlayRoute":{"Route":["1"]},"TransitionRoute":{"Route":["1"]},"_DismissModalAction":{"Action":["DismissIntent"],"Action.T":"DismissIntent"},"ModalRoute":{"TransitionRoute":["1"],"Route":["1"]},"PopupRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"RouteObserver":{"NavigatorObserver":[]},"RawDialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"FocusTrap":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusTrapArea":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderFocusTrapArea":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_RenderFocusTrap":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"SafeArea":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollAwareImageProvider":{"ImageProvider":["1"],"ImageProvider.T":"1"},"ScrollConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidOverscrollIndicator":{"Enum":[]},"ScrollController":{"ChangeNotifier":[],"Listenable":[]},"FixedScrollMetrics":{"ScrollMetrics":[]},"ScrollNotification":{"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollUpdateNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollStartNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"OverscrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollEndNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"UserScrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"_ScrollNotificationObserverScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListenerEntry":{"LinkedListEntry":["_ListenerEntry"],"LinkedListEntry.E":"_ListenerEntry"},"ScrollNotificationObserver":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollNotificationObserverState":{"State":["ScrollNotificationObserver"]},"ScrollPosition":{"ViewportOffset":[],"ChangeNotifier":[],"Listenable":[],"ScrollMetrics":[]},"ScrollMetricsNotification":{"ViewportNotificationMixin":[]},"ScrollPositionAlignmentPolicy":{"Enum":[]},"ScrollPositionWithSingleContext":{"ScrollPosition":[],"ViewportOffset":[],"ChangeNotifier":[],"Listenable":[],"ScrollMetrics":[]},"GridView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollViewKeyboardDismissBehavior":{"Enum":[]},"ScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollIntent":{"Intent":[]},"ScrollableState":{"State":["Scrollable"]},"_ScrollSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScrollSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"ScrollIncrementType":{"Enum":[]},"ScrollAction":{"Action":["ScrollIntent"],"Action.T":"ScrollIntent"},"_RestorableScrollOffset":{"RestorableProperty":["double?"],"ChangeNotifier":[],"Listenable":[]},"RawScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScrollbarOrientation":{"Enum":[]},"ScrollbarPainter":{"ChangeNotifier":[],"Listenable":[]},"RawScrollbarState":{"State":["1"]},"SharedAppData":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SharedAppDataState":{"State":["SharedAppData"]},"_SharedAppModel":{"InheritedModel":["Object"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"Object"},"SingleActivator":{"ShortcutActivator":[]},"ShortcutManager":{"ChangeNotifier":[],"Listenable":[]},"Shortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ShortcutsMarker":{"InheritedNotifier":["ShortcutManager"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"ShortcutManager"},"LogicalKeySet":{"KeySet":["LogicalKeyboardKey"],"ShortcutActivator":[],"KeySet.T":"LogicalKeyboardKey"},"_ShortcutsState":{"State":["Shortcuts"]},"_SingleChildViewport":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleChildViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderSingleChildViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_SaltedValueKey":{"ValueKey":["Key"],"LocalKey":[],"Key":[],"ValueKey.T":"Key"},"SliverWithKeepAliveWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverList":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverGrid":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"KeepAlive":{"ParentDataWidget":["KeepAliveParentDataMixin"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"KeepAliveParentDataMixin"},"SliverFillViewport":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFillViewportRenderObjectWidget":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFractionalPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverFractionalPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"_FloatingHeader":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPersistentHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingHeaderState":{"State":["_FloatingHeader"]},"_SliverPersistentHeaderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_SliverPersistentHeaderRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverPinnedPersistentHeader":{"_SliverPersistentHeaderRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverPinnedPersistentHeaderForWidgets":{"_RenderSliverPersistentHeaderForWidgetsMixin":[],"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[]},"SlottedRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"Spacer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Table":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TableElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"TableCell":{"ParentDataWidget":["TableCellParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TableCellParentData"},"DefaultTextStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextHeightBehavior":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Text":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget2":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DoNothingAndStopPropagationTextIntent":{"Intent":[]},"DirectionalTextEditingIntent":{"Intent":[]},"DeleteCharacterIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"DeleteToNextWordBoundaryIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"DeleteToLineBreakIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionByCharacterIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryOrCaretLocationIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExpandSelectionToDocumentBoundaryIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExpandSelectionToLineBreakIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionToLineBreakIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionVerticallyToAdjacentLineIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ExtendSelectionToDocumentBoundaryIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"ScrollToDocumentBoundaryIntent":{"DirectionalTextEditingIntent":[],"Intent":[]},"SelectAllTextIntent":{"Intent":[]},"CopySelectionTextIntent":{"Intent":[]},"PasteTextIntent":{"Intent":[]},"RedoTextIntent":{"Intent":[]},"ReplaceTextIntent":{"Intent":[]},"UndoTextIntent":{"Intent":[]},"UpdateSelectionIntent":{"Intent":[]},"_SelectionHandleOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionHandleType":{"Enum":[]},"_SelectionHandleOverlayState":{"State":["_SelectionHandleOverlay"]},"_TextSelectionGestureDetectorState":{"State":["TextSelectionGestureDetector"]},"TickerMode":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EffectiveTickerMode":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TickerModeState":{"State":["TickerMode"]},"Title":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FadeTransition":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedState":{"State":["AnimatedWidget"]},"SlideTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaleTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RotationTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBoxTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ValueListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ValueListenableBuilderState":{"State":["ValueListenableBuilder<1>"]},"Viewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ShrinkWrappingViewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"WidgetSpan":{"PlaceholderSpan":[],"InlineSpan":[],"DiagnosticableTree":[]},"WillPopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WillPopScopeState":{"State":["WillPopScope"]},"DownloadProgress":{"FileResponse":[]},"FileInfo":{"FileResponse":[]},"NonStoringObjectProvider":{"CacheInfoRepository":[]},"HttpGetResponse":{"FileServiceResponse":[]},"HttpExceptionWithStatus":{"Exception":[]},"BlockPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BlockPickerState":{"State":["BlockPicker"]},"JsonViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonObjectViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonArrayViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_JsonViewerState":{"State":["JsonViewer"]},"JsonObjectViewerState":{"State":["JsonObjectViewer"]},"_JsonArrayViewerState":{"State":["JsonArrayViewer"]},"GlobalCupertinoLocalizations":{"CupertinoLocalizations":[]},"_GlobalCupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"CupertinoLocalizationAf":{"CupertinoLocalizations":[]},"CupertinoLocalizationAm":{"CupertinoLocalizations":[]},"CupertinoLocalizationAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationAs":{"CupertinoLocalizations":[]},"CupertinoLocalizationAz":{"CupertinoLocalizations":[]},"CupertinoLocalizationBe":{"CupertinoLocalizations":[]},"CupertinoLocalizationBg":{"CupertinoLocalizations":[]},"CupertinoLocalizationBn":{"CupertinoLocalizations":[]},"CupertinoLocalizationBs":{"CupertinoLocalizations":[]},"CupertinoLocalizationCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationCs":{"CupertinoLocalizations":[]},"CupertinoLocalizationDa":{"CupertinoLocalizations":[]},"CupertinoLocalizationDe":{"CupertinoLocalizations":[]},"CupertinoLocalizationDeCh":{"CupertinoLocalizations":[]},"CupertinoLocalizationEl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnAu":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnGb":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnNz":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnSg":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnZa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs419":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsBo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsDo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsEc":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsGt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsHn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsMx":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsNi":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsVe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEu":{"CupertinoLocalizations":[]},"CupertinoLocalizationFa":{"CupertinoLocalizations":[]},"CupertinoLocalizationFi":{"CupertinoLocalizations":[]},"CupertinoLocalizationFil":{"CupertinoLocalizations":[]},"CupertinoLocalizationFr":{"CupertinoLocalizations":[]},"CupertinoLocalizationFrCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationGl":{"CupertinoLocalizations":[]},"CupertinoLocalizationGsw":{"CupertinoLocalizations":[]},"CupertinoLocalizationGu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHe":{"CupertinoLocalizations":[]},"CupertinoLocalizationHi":{"CupertinoLocalizations":[]},"CupertinoLocalizationHr":{"CupertinoLocalizations":[]},"CupertinoLocalizationHu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHy":{"CupertinoLocalizations":[]},"CupertinoLocalizationId":{"CupertinoLocalizations":[]},"CupertinoLocalizationIs":{"CupertinoLocalizations":[]},"CupertinoLocalizationIt":{"CupertinoLocalizations":[]},"CupertinoLocalizationJa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKk":{"CupertinoLocalizations":[]},"CupertinoLocalizationKm":{"CupertinoLocalizations":[]},"CupertinoLocalizationKn":{"CupertinoLocalizations":[]},"CupertinoLocalizationKo":{"CupertinoLocalizations":[]},"CupertinoLocalizationKy":{"CupertinoLocalizations":[]},"CupertinoLocalizationLo":{"CupertinoLocalizations":[]},"CupertinoLocalizationLt":{"CupertinoLocalizations":[]},"CupertinoLocalizationLv":{"CupertinoLocalizations":[]},"CupertinoLocalizationMk":{"CupertinoLocalizations":[]},"CupertinoLocalizationMl":{"CupertinoLocalizations":[]},"CupertinoLocalizationMn":{"CupertinoLocalizations":[]},"CupertinoLocalizationMr":{"CupertinoLocalizations":[]},"CupertinoLocalizationMs":{"CupertinoLocalizations":[]},"CupertinoLocalizationMy":{"CupertinoLocalizations":[]},"CupertinoLocalizationNb":{"CupertinoLocalizations":[]},"CupertinoLocalizationNe":{"CupertinoLocalizations":[]},"CupertinoLocalizationNl":{"CupertinoLocalizations":[]},"CupertinoLocalizationNo":{"CupertinoLocalizations":[]},"CupertinoLocalizationOr":{"CupertinoLocalizations":[]},"CupertinoLocalizationPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationPl":{"CupertinoLocalizations":[]},"CupertinoLocalizationPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationPtPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationRo":{"CupertinoLocalizations":[]},"CupertinoLocalizationRu":{"CupertinoLocalizations":[]},"CupertinoLocalizationSi":{"CupertinoLocalizations":[]},"CupertinoLocalizationSk":{"CupertinoLocalizations":[]},"CupertinoLocalizationSl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSq":{"CupertinoLocalizations":[]},"CupertinoLocalizationSr":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrCyrl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrLatn":{"CupertinoLocalizations":[]},"CupertinoLocalizationSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationSw":{"CupertinoLocalizations":[]},"CupertinoLocalizationTa":{"CupertinoLocalizations":[]},"CupertinoLocalizationTe":{"CupertinoLocalizations":[]},"CupertinoLocalizationTh":{"CupertinoLocalizations":[]},"CupertinoLocalizationTl":{"CupertinoLocalizations":[]},"CupertinoLocalizationTr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUk":{"CupertinoLocalizations":[]},"CupertinoLocalizationUr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUz":{"CupertinoLocalizations":[]},"CupertinoLocalizationVi":{"CupertinoLocalizations":[]},"CupertinoLocalizationZh":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHans":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHant":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantHk":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantTw":{"CupertinoLocalizations":[]},"CupertinoLocalizationZu":{"CupertinoLocalizations":[]},"MaterialLocalizationAf":{"MaterialLocalizations":[]},"MaterialLocalizationAm":{"MaterialLocalizations":[]},"MaterialLocalizationAr":{"MaterialLocalizations":[]},"MaterialLocalizationAs":{"MaterialLocalizations":[]},"MaterialLocalizationAz":{"MaterialLocalizations":[]},"MaterialLocalizationBe":{"MaterialLocalizations":[]},"MaterialLocalizationBg":{"MaterialLocalizations":[]},"MaterialLocalizationBn":{"MaterialLocalizations":[]},"MaterialLocalizationBs":{"MaterialLocalizations":[]},"MaterialLocalizationCa":{"MaterialLocalizations":[]},"MaterialLocalizationCs":{"MaterialLocalizations":[]},"MaterialLocalizationDa":{"MaterialLocalizations":[]},"MaterialLocalizationDe":{"MaterialLocalizations":[]},"MaterialLocalizationDeCh":{"MaterialLocalizations":[]},"MaterialLocalizationEl":{"MaterialLocalizations":[]},"MaterialLocalizationEn":{"MaterialLocalizations":[]},"MaterialLocalizationEnAu":{"MaterialLocalizations":[]},"MaterialLocalizationEnCa":{"MaterialLocalizations":[]},"MaterialLocalizationEnGb":{"MaterialLocalizations":[]},"MaterialLocalizationEnIe":{"MaterialLocalizations":[]},"MaterialLocalizationEnIn":{"MaterialLocalizations":[]},"MaterialLocalizationEnNz":{"MaterialLocalizations":[]},"MaterialLocalizationEnSg":{"MaterialLocalizations":[]},"MaterialLocalizationEnZa":{"MaterialLocalizations":[]},"MaterialLocalizationEs":{"MaterialLocalizations":[]},"MaterialLocalizationEs419":{"MaterialLocalizations":[]},"MaterialLocalizationEsAr":{"MaterialLocalizations":[]},"MaterialLocalizationEsBo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCl":{"MaterialLocalizations":[]},"MaterialLocalizationEsCo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCr":{"MaterialLocalizations":[]},"MaterialLocalizationEsDo":{"MaterialLocalizations":[]},"MaterialLocalizationEsEc":{"MaterialLocalizations":[]},"MaterialLocalizationEsGt":{"MaterialLocalizations":[]},"MaterialLocalizationEsHn":{"MaterialLocalizations":[]},"MaterialLocalizationEsMx":{"MaterialLocalizations":[]},"MaterialLocalizationEsNi":{"MaterialLocalizations":[]},"MaterialLocalizationEsPa":{"MaterialLocalizations":[]},"MaterialLocalizationEsPe":{"MaterialLocalizations":[]},"MaterialLocalizationEsPr":{"MaterialLocalizations":[]},"MaterialLocalizationEsPy":{"MaterialLocalizations":[]},"MaterialLocalizationEsSv":{"MaterialLocalizations":[]},"MaterialLocalizationEsUs":{"MaterialLocalizations":[]},"MaterialLocalizationEsUy":{"MaterialLocalizations":[]},"MaterialLocalizationEsVe":{"MaterialLocalizations":[]},"MaterialLocalizationEt":{"MaterialLocalizations":[]},"MaterialLocalizationEu":{"MaterialLocalizations":[]},"MaterialLocalizationFa":{"MaterialLocalizations":[]},"MaterialLocalizationFi":{"MaterialLocalizations":[]},"MaterialLocalizationFil":{"MaterialLocalizations":[]},"MaterialLocalizationFr":{"MaterialLocalizations":[]},"MaterialLocalizationFrCa":{"MaterialLocalizations":[]},"MaterialLocalizationGl":{"MaterialLocalizations":[]},"MaterialLocalizationGsw":{"MaterialLocalizations":[]},"MaterialLocalizationGu":{"MaterialLocalizations":[]},"MaterialLocalizationHe":{"MaterialLocalizations":[]},"MaterialLocalizationHi":{"MaterialLocalizations":[]},"MaterialLocalizationHr":{"MaterialLocalizations":[]},"MaterialLocalizationHu":{"MaterialLocalizations":[]},"MaterialLocalizationHy":{"MaterialLocalizations":[]},"MaterialLocalizationId":{"MaterialLocalizations":[]},"MaterialLocalizationIs":{"MaterialLocalizations":[]},"MaterialLocalizationIt":{"MaterialLocalizations":[]},"MaterialLocalizationJa":{"MaterialLocalizations":[]},"MaterialLocalizationKa":{"MaterialLocalizations":[]},"MaterialLocalizationKk":{"MaterialLocalizations":[]},"MaterialLocalizationKm":{"MaterialLocalizations":[]},"MaterialLocalizationKn":{"MaterialLocalizations":[]},"MaterialLocalizationKo":{"MaterialLocalizations":[]},"MaterialLocalizationKy":{"MaterialLocalizations":[]},"MaterialLocalizationLo":{"MaterialLocalizations":[]},"MaterialLocalizationLt":{"MaterialLocalizations":[]},"MaterialLocalizationLv":{"MaterialLocalizations":[]},"MaterialLocalizationMk":{"MaterialLocalizations":[]},"MaterialLocalizationMl":{"MaterialLocalizations":[]},"MaterialLocalizationMn":{"MaterialLocalizations":[]},"MaterialLocalizationMr":{"MaterialLocalizations":[]},"MaterialLocalizationMs":{"MaterialLocalizations":[]},"MaterialLocalizationMy":{"MaterialLocalizations":[]},"MaterialLocalizationNb":{"MaterialLocalizations":[]},"MaterialLocalizationNe":{"MaterialLocalizations":[]},"MaterialLocalizationNl":{"MaterialLocalizations":[]},"MaterialLocalizationNo":{"MaterialLocalizations":[]},"MaterialLocalizationOr":{"MaterialLocalizations":[]},"MaterialLocalizationPa":{"MaterialLocalizations":[]},"MaterialLocalizationPl":{"MaterialLocalizations":[]},"MaterialLocalizationPs":{"MaterialLocalizations":[]},"MaterialLocalizationPt":{"MaterialLocalizations":[]},"MaterialLocalizationPtPt":{"MaterialLocalizations":[]},"MaterialLocalizationRo":{"MaterialLocalizations":[]},"MaterialLocalizationRu":{"MaterialLocalizations":[]},"MaterialLocalizationSi":{"MaterialLocalizations":[]},"MaterialLocalizationSk":{"MaterialLocalizations":[]},"MaterialLocalizationSl":{"MaterialLocalizations":[]},"MaterialLocalizationSq":{"MaterialLocalizations":[]},"MaterialLocalizationSr":{"MaterialLocalizations":[]},"MaterialLocalizationSrCyrl":{"MaterialLocalizations":[]},"MaterialLocalizationSrLatn":{"MaterialLocalizations":[]},"MaterialLocalizationSv":{"MaterialLocalizations":[]},"MaterialLocalizationSw":{"MaterialLocalizations":[]},"MaterialLocalizationTa":{"MaterialLocalizations":[]},"MaterialLocalizationTe":{"MaterialLocalizations":[]},"MaterialLocalizationTh":{"MaterialLocalizations":[]},"MaterialLocalizationTl":{"MaterialLocalizations":[]},"MaterialLocalizationTr":{"MaterialLocalizations":[]},"MaterialLocalizationUk":{"MaterialLocalizations":[]},"MaterialLocalizationUr":{"MaterialLocalizations":[]},"MaterialLocalizationUz":{"MaterialLocalizations":[]},"MaterialLocalizationVi":{"MaterialLocalizations":[]},"MaterialLocalizationZh":{"MaterialLocalizations":[]},"MaterialLocalizationZhHans":{"MaterialLocalizations":[]},"MaterialLocalizationZhHant":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantHk":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantTw":{"MaterialLocalizations":[]},"MaterialLocalizationZu":{"MaterialLocalizations":[]},"GlobalMaterialLocalizations":{"MaterialLocalizations":[]},"_MaterialLocalizationsDelegate0":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"GlobalWidgetsLocalizations":{"WidgetsLocalizations":[]},"_WidgetsLocalizationsDelegate0":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"StoreProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreConnector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListenerState":{"State":["_StoreStreamListener<1,2>"]},"StoreProviderError":{"Error":[]},"ConverterError":{"Error":[]},"ActionPaneConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerMotion":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseData":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseNotificationSender":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseBarrierNotificationSenderState":{"State":["SlidableAutoCloseBarrierNotificationSender"]},"_SlidableAutoCloseBarrierBehaviorListenerState":{"State":["SlidableAutoCloseBarrierBehaviorListener"]},"_SlidableNotificationSenderState0":{"State":["_SlidableNotificationSender"]},"ActionPaneType":{"Enum":[]},"GestureDirection":{"Enum":[]},"_ValueNotifier":{"ValueNotifier":["1"],"ChangeNotifier":[],"Listenable":[]},"SlidableDismissal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableDismissalState":{"State":["SlidableDismissal"]},"_FlexEntranceTransitionParentData":{"FlexParentData":[],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"FlexEntranceTransition":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderFlexEntranceTransition":{"RenderBoxContainerDefaultsMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"SlidableGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGestureDetectorState":{"State":["SlidableGestureDetector"]},"_InheritedSlidableNotification":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableGroupBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGroupBehaviorListenerState":{"State":["SlidableGroupBehaviorListener<1>"]},"_SlidableNotificationListenerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSenderState":{"State":["SlidableNotificationSender"]},"SlidableScrollingBehavior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableScrollingBehaviorState":{"State":["SlidableScrollingBehavior"]},"ActionPane":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Slidable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneState":{"State":["ActionPane"]},"_SlidableState":{"State":["Slidable"]},"_SlidableClipper":{"CustomClipper":["Rect"],"Listenable":[]},"CustomSizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToast":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StyledToastWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToastWidgetState":{"State":["_StyledToastWidget"],"WidgetsBindingObserver":[]},"_StyledToastState":{"State":["StyledToast"]},"StyledToastAnimation":{"Enum":[]},"StyledToastTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SignInOption":{"Enum":[]},"AttributeName":{"Comparable":["Object"]},"Element":{"Node0":[]},"Document":{"Node0":[]},"DocumentType":{"Node0":[]},"Text0":{"Node0":[]},"Comment":{"Node0":[]},"NodeList":{"ListProxy":["Node0"],"ListMixin":["Node0"],"List":["Node0"],"EfficientLengthIterable":["Node0"],"Iterable":["Node0"],"ListMixin.E":"Node0"},"FilteredElementList":{"ListMixin":["Element"],"List":["Element"],"EfficientLengthIterable":["Element"],"Iterable":["Element"],"ListMixin.E":"Element","Iterable.E":"Element"},"ParseError":{"Exception":[]},"ElementCssClassSet":{"SetMixin":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"SetMixin.E":"String"},"_CssClassSetImpl":{"SetMixin":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"]},"ListProxy":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"StringToken":{"Token0":[]},"TagToken":{"Token0":[]},"StartTagToken":{"TagToken":[],"Token0":[]},"EndTagToken":{"TagToken":[],"Token0":[]},"ParseErrorToken":{"StringToken":[],"Token0":[]},"CharactersToken":{"StringToken":[],"Token0":[]},"SpaceCharactersToken":{"StringToken":[],"Token0":[]},"CommentToken":{"StringToken":[],"Token0":[]},"DoctypeToken":{"Token0":[]},"ActiveFormattingElements":{"ListProxy":["Element?"],"ListMixin":["Element?"],"List":["Element?"],"EfficientLengthIterable":["Element?"],"Iterable":["Element?"],"ListMixin.E":"Element?"},"BaseClient":{"Client0":[]},"BrowserClient":{"Client0":[]},"ByteStream":{"Stream":["List"],"Stream.T":"List"},"ClientException":{"Exception":[]},"CaseInsensitiveMap":{"CanonicalizedMap":["String","String","1"],"Map":["String","1"],"CanonicalizedMap.V":"1","CanonicalizedMap.K":"String","CanonicalizedMap.C":"String"},"InternalPngFrame":{"PngFrame":[]},"ImageException":{"Exception":[]},"CropAspectRatioPreset":{"Enum":[]},"CropStyle":{"Enum":[]},"ImageCompressFormat":{"Enum":[]},"CameraDevice":{"Enum":[]},"ImageSource":{"Enum":[]},"_DateFormatLiteralField":{"_DateFormatField":[]},"_DateFormatQuotedField":{"_DateFormatField":[]},"_DateFormatPatternField":{"_DateFormatField":[]},"LocaleDataException":{"Exception":[]},"PluralCase":{"Enum":[]},"_$AccountEntitySerializer":{"StructuredSerializer":["AccountEntity*"],"Serializer":["AccountEntity*"]},"_$AccountEntity":{"AccountEntity":[]},"ClientEntity":{"BaseEntity":[],"SelectableEntity":[]},"ClientContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ClientListResponseSerializer":{"StructuredSerializer":["ClientListResponse*"],"Serializer":["ClientListResponse*"]},"_$ClientItemResponseSerializer":{"StructuredSerializer":["ClientItemResponse*"],"Serializer":["ClientItemResponse*"]},"_$ClientEntitySerializer":{"StructuredSerializer":["ClientEntity*"],"Serializer":["ClientEntity*"]},"_$ClientContactEntitySerializer":{"StructuredSerializer":["ClientContactEntity*"],"Serializer":["ClientContactEntity*"]},"_$ClientListResponse":{"ClientListResponse":[]},"_$ClientItemResponse":{"ClientItemResponse":[]},"_$ClientEntity":{"ClientEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$ClientContactEntity":{"ClientContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"CompanyGatewayEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$CompanyGatewayListResponseSerializer":{"StructuredSerializer":["CompanyGatewayListResponse*"],"Serializer":["CompanyGatewayListResponse*"]},"_$CompanyGatewayItemResponseSerializer":{"StructuredSerializer":["CompanyGatewayItemResponse*"],"Serializer":["CompanyGatewayItemResponse*"]},"_$CompanyGatewayEntitySerializer":{"StructuredSerializer":["CompanyGatewayEntity*"],"Serializer":["CompanyGatewayEntity*"]},"_$FeesAndLimitsSettingsSerializer":{"StructuredSerializer":["FeesAndLimitsSettings*"],"Serializer":["FeesAndLimitsSettings*"]},"_$CompanyGatewayListResponse":{"CompanyGatewayListResponse":[]},"_$CompanyGatewayItemResponse":{"CompanyGatewayItemResponse":[]},"_$CompanyGatewayEntity":{"CompanyGatewayEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$FeesAndLimitsSettings":{"FeesAndLimitsSettings":[]},"CompanyEntity":{"BaseEntity":[],"SelectableEntity":[]},"GatewayEntity":{"SelectableEntity":[]},"_$CompanyEntitySerializer":{"StructuredSerializer":["CompanyEntity*"],"Serializer":["CompanyEntity*"]},"_$GatewayEntitySerializer":{"StructuredSerializer":["GatewayEntity*"],"Serializer":["GatewayEntity*"]},"_$GatewayOptionsEntitySerializer":{"StructuredSerializer":["GatewayOptionsEntity*"],"Serializer":["GatewayOptionsEntity*"]},"_$UserCompanyEntitySerializer":{"StructuredSerializer":["UserCompanyEntity*"],"Serializer":["UserCompanyEntity*"]},"_$UserSettingsEntitySerializer":{"StructuredSerializer":["UserSettingsEntity*"],"Serializer":["UserSettingsEntity*"]},"_$ReportSettingsEntitySerializer":{"StructuredSerializer":["ReportSettingsEntity*"],"Serializer":["ReportSettingsEntity*"]},"_$CompanyItemResponseSerializer":{"StructuredSerializer":["CompanyItemResponse*"],"Serializer":["CompanyItemResponse*"]},"_$RegistrationFieldEntitySerializer":{"StructuredSerializer":["RegistrationFieldEntity*"],"Serializer":["RegistrationFieldEntity*"]},"_$CompanyEntity":{"CompanyEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayEntity":{"GatewayEntity":[],"SelectableEntity":[]},"_$GatewayOptionsEntity":{"GatewayOptionsEntity":[]},"_$UserCompanyEntity":{"UserCompanyEntity":[]},"_$UserSettingsEntity":{"UserSettingsEntity":[]},"_$ReportSettingsEntity":{"ReportSettingsEntity":[]},"_$CompanyItemResponse":{"CompanyItemResponse":[]},"_$RegistrationFieldEntity":{"RegistrationFieldEntity":[]},"_$CreditListResponseSerializer":{"StructuredSerializer":["CreditListResponse*"],"Serializer":["CreditListResponse*"]},"_$CreditItemResponseSerializer":{"StructuredSerializer":["CreditItemResponse*"],"Serializer":["CreditItemResponse*"]},"_$DateRangeSerializer":{"PrimitiveSerializer":["DateRange*"],"Serializer":["DateRange*"]},"_$DateRangeComparisonSerializer":{"PrimitiveSerializer":["DateRangeComparison*"],"Serializer":["DateRangeComparison*"]},"DesignEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DesignListResponseSerializer":{"StructuredSerializer":["DesignListResponse*"],"Serializer":["DesignListResponse*"]},"_$DesignItemResponseSerializer":{"StructuredSerializer":["DesignItemResponse*"],"Serializer":["DesignItemResponse*"]},"_$DesignPreviewRequestSerializer":{"StructuredSerializer":["DesignPreviewRequest*"],"Serializer":["DesignPreviewRequest*"]},"_$DesignEntitySerializer":{"StructuredSerializer":["DesignEntity*"],"Serializer":["DesignEntity*"]},"_$DesignListResponse":{"DesignListResponse":[]},"_$DesignItemResponse":{"DesignItemResponse":[]},"_$DesignEntity":{"DesignEntity":[],"BaseEntity":[],"SelectableEntity":[]},"DocumentEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DocumentListResponseSerializer":{"StructuredSerializer":["DocumentListResponse*"],"Serializer":["DocumentListResponse*"]},"_$DocumentItemResponseSerializer":{"StructuredSerializer":["DocumentItemResponse*"],"Serializer":["DocumentItemResponse*"]},"_$DocumentEntitySerializer":{"StructuredSerializer":["DocumentEntity*"],"Serializer":["DocumentEntity*"]},"_$DocumentListResponse":{"DocumentListResponse":[]},"_$DocumentItemResponse":{"DocumentItemResponse":[]},"_$DocumentEntity":{"DocumentEntity":[],"BaseEntity":[],"SelectableEntity":[]},"BaseEntity":{"SelectableEntity":[]},"_$EntityTypeSerializer":{"PrimitiveSerializer":["EntityType*"],"Serializer":["EntityType*"]},"_$EntityStateSerializer":{"PrimitiveSerializer":["EntityState*"],"Serializer":["EntityState*"]},"_$EmailTemplateSerializer":{"PrimitiveSerializer":["EmailTemplate*"],"Serializer":["EmailTemplate*"]},"_$LoginResponseSerializer":{"StructuredSerializer":["LoginResponse*"],"Serializer":["LoginResponse*"]},"_$ActivityEntitySerializer":{"StructuredSerializer":["ActivityEntity*"],"Serializer":["ActivityEntity*"]},"_$LedgerEntitySerializer":{"StructuredSerializer":["LedgerEntity*"],"Serializer":["LedgerEntity*"]},"_$LoginResponse":{"LoginResponse":[]},"_$ActivityEntity":{"ActivityEntity":[]},"_$LedgerEntity":{"LedgerEntity":[]},"ExpenseCategoryEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ExpenseCategoryListResponseSerializer":{"StructuredSerializer":["ExpenseCategoryListResponse*"],"Serializer":["ExpenseCategoryListResponse*"]},"_$ExpenseCategoryItemResponseSerializer":{"StructuredSerializer":["ExpenseCategoryItemResponse*"],"Serializer":["ExpenseCategoryItemResponse*"]},"_$ExpenseCategoryEntitySerializer":{"StructuredSerializer":["ExpenseCategoryEntity*"],"Serializer":["ExpenseCategoryEntity*"]},"_$ExpenseCategoryListResponse":{"ExpenseCategoryListResponse":[]},"_$ExpenseCategoryItemResponse":{"ExpenseCategoryItemResponse":[]},"_$ExpenseCategoryEntity":{"ExpenseCategoryEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ExpenseEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"ExpenseStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$ExpenseListResponseSerializer":{"StructuredSerializer":["ExpenseListResponse*"],"Serializer":["ExpenseListResponse*"]},"_$ExpenseItemResponseSerializer":{"StructuredSerializer":["ExpenseItemResponse*"],"Serializer":["ExpenseItemResponse*"]},"_$ExpenseEntitySerializer":{"StructuredSerializer":["ExpenseEntity*"],"Serializer":["ExpenseEntity*"]},"_$ExpenseScheduleEntitySerializer":{"StructuredSerializer":["ExpenseScheduleEntity*"],"Serializer":["ExpenseScheduleEntity*"]},"_$ExpenseStatusEntitySerializer":{"StructuredSerializer":["ExpenseStatusEntity*"],"Serializer":["ExpenseStatusEntity*"]},"_$ExpenseListResponse":{"ExpenseListResponse":[]},"_$ExpenseItemResponse":{"ExpenseItemResponse":[]},"_$ExpenseEntity":{"ExpenseEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ExpenseScheduleEntity":{"ExpenseScheduleEntity":[]},"_$ExpenseStatusEntity":{"ExpenseStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"GatewayTokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenListResponseSerializer":{"StructuredSerializer":["GatewayTokenListResponse*"],"Serializer":["GatewayTokenListResponse*"]},"_$GatewayTokenItemResponseSerializer":{"StructuredSerializer":["GatewayTokenItemResponse*"],"Serializer":["GatewayTokenItemResponse*"]},"_$GatewayTokenEntitySerializer":{"StructuredSerializer":["GatewayTokenEntity*"],"Serializer":["GatewayTokenEntity*"]},"_$GatewayTokenMetaEntitySerializer":{"StructuredSerializer":["GatewayTokenMetaEntity*"],"Serializer":["GatewayTokenMetaEntity*"]},"_$GatewayTokenEntity":{"GatewayTokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenMetaEntity":{"GatewayTokenMetaEntity":[]},"GroupEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GroupListResponseSerializer":{"StructuredSerializer":["GroupListResponse*"],"Serializer":["GroupListResponse*"]},"_$GroupItemResponseSerializer":{"StructuredSerializer":["GroupItemResponse*"],"Serializer":["GroupItemResponse*"]},"_$GroupEntitySerializer":{"StructuredSerializer":["GroupEntity*"],"Serializer":["GroupEntity*"]},"_$GroupListResponse":{"GroupListResponse":[]},"_$GroupItemResponse":{"GroupItemResponse":[]},"_$GroupEntity":{"GroupEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$HealthCheckResponseSerializer":{"StructuredSerializer":["HealthCheckResponse*"],"Serializer":["HealthCheckResponse*"]},"_$HealthCheckPHPResponseSerializer":{"StructuredSerializer":["HealthCheckPHPResponse*"],"Serializer":["HealthCheckPHPResponse*"]},"_$HealthCheckResponse":{"HealthCheckResponse":[]},"_$HealthCheckPHPResponse":{"HealthCheckPHPResponse":[]},"_$PreImportResponseSerializer":{"StructuredSerializer":["PreImportResponse*"],"Serializer":["PreImportResponse*"]},"_$PreImportResponseEntityDetailsSerializer":{"StructuredSerializer":["PreImportResponseEntityDetails*"],"Serializer":["PreImportResponseEntityDetails*"]},"_$ImportRequestSerializer":{"StructuredSerializer":["ImportRequest*"],"Serializer":["ImportRequest*"]},"_$ImportRequestMappingSerializer":{"StructuredSerializer":["ImportRequestMapping*"],"Serializer":["ImportRequestMapping*"]},"_$PreImportResponse":{"PreImportResponse":[]},"_$PreImportResponseEntityDetails":{"PreImportResponseEntityDetails":[]},"_$ImportRequestMapping":{"ImportRequestMapping":[]},"InvoiceEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"InvitationEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceListResponseSerializer":{"StructuredSerializer":["InvoiceListResponse*"],"Serializer":["InvoiceListResponse*"]},"_$InvoiceItemResponseSerializer":{"StructuredSerializer":["InvoiceItemResponse*"],"Serializer":["InvoiceItemResponse*"]},"_$InvoiceEntitySerializer":{"StructuredSerializer":["InvoiceEntity*"],"Serializer":["InvoiceEntity*"]},"_$InvoiceItemEntitySerializer":{"StructuredSerializer":["InvoiceItemEntity*"],"Serializer":["InvoiceItemEntity*"]},"_$InvitationEntitySerializer":{"StructuredSerializer":["InvitationEntity*"],"Serializer":["InvitationEntity*"]},"_$InvoiceScheduleEntitySerializer":{"StructuredSerializer":["InvoiceScheduleEntity*"],"Serializer":["InvoiceScheduleEntity*"]},"_$InvoiceHistoryEntitySerializer":{"StructuredSerializer":["InvoiceHistoryEntity*"],"Serializer":["InvoiceHistoryEntity*"]},"_$InvoiceListResponse":{"InvoiceListResponse":[]},"_$InvoiceItemResponse":{"InvoiceItemResponse":[]},"_$InvoiceEntity":{"InvoiceEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$InvoiceItemEntity":{"InvoiceItemEntity":[]},"_$InvitationEntity":{"InvitationEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceScheduleEntity":{"InvoiceScheduleEntity":[]},"_$InvoiceHistoryEntity":{"InvoiceHistoryEntity":[]},"PaymentEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"PaymentableEntity":{"SelectableEntity":[]},"_$PaymentListResponseSerializer":{"StructuredSerializer":["PaymentListResponse*"],"Serializer":["PaymentListResponse*"]},"_$PaymentItemResponseSerializer":{"StructuredSerializer":["PaymentItemResponse*"],"Serializer":["PaymentItemResponse*"]},"_$PaymentEntitySerializer":{"StructuredSerializer":["PaymentEntity*"],"Serializer":["PaymentEntity*"]},"_$PaymentableEntitySerializer":{"StructuredSerializer":["PaymentableEntity*"],"Serializer":["PaymentableEntity*"]},"_$PaymentListResponse":{"PaymentListResponse":[]},"_$PaymentItemResponse":{"PaymentItemResponse":[]},"_$PaymentEntity":{"PaymentEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$PaymentableEntity":{"PaymentableEntity":[],"SelectableEntity":[]},"PaymentTermEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$PaymentTermListResponseSerializer":{"StructuredSerializer":["PaymentTermListResponse*"],"Serializer":["PaymentTermListResponse*"]},"_$PaymentTermItemResponseSerializer":{"StructuredSerializer":["PaymentTermItemResponse*"],"Serializer":["PaymentTermItemResponse*"]},"_$PaymentTermEntitySerializer":{"StructuredSerializer":["PaymentTermEntity*"],"Serializer":["PaymentTermEntity*"]},"_$PaymentTermListResponse":{"PaymentTermListResponse":[]},"_$PaymentTermItemResponse":{"PaymentTermItemResponse":[]},"_$PaymentTermEntity":{"PaymentTermEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProductEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ProductListResponseSerializer":{"StructuredSerializer":["ProductListResponse*"],"Serializer":["ProductListResponse*"]},"_$ProductItemResponseSerializer":{"StructuredSerializer":["ProductItemResponse*"],"Serializer":["ProductItemResponse*"]},"_$ProductEntitySerializer":{"StructuredSerializer":["ProductEntity*"],"Serializer":["ProductEntity*"]},"_$ProductListResponse":{"ProductListResponse":[]},"_$ProductItemResponse":{"ProductItemResponse":[]},"_$ProductEntity":{"ProductEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProjectEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ProjectListResponseSerializer":{"StructuredSerializer":["ProjectListResponse*"],"Serializer":["ProjectListResponse*"]},"_$ProjectItemResponseSerializer":{"StructuredSerializer":["ProjectItemResponse*"],"Serializer":["ProjectItemResponse*"]},"_$ProjectEntitySerializer":{"StructuredSerializer":["ProjectEntity*"],"Serializer":["ProjectEntity*"]},"_$ProjectListResponse":{"ProjectListResponse":[]},"_$ProjectItemResponse":{"ProjectItemResponse":[]},"_$ProjectEntity":{"ProjectEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$SettingsEntitySerializer":{"StructuredSerializer":["SettingsEntity*"],"Serializer":["SettingsEntity*"]},"_$SettingsEntity":{"SettingsEntity":[]},"CountryEntity":{"SelectableEntity":[]},"_$CountryListResponseSerializer":{"StructuredSerializer":["CountryListResponse*"],"Serializer":["CountryListResponse*"]},"_$CountryItemResponseSerializer":{"StructuredSerializer":["CountryItemResponse*"],"Serializer":["CountryItemResponse*"]},"_$CountryEntitySerializer":{"StructuredSerializer":["CountryEntity*"],"Serializer":["CountryEntity*"]},"_$CountryEntity":{"CountryEntity":[],"SelectableEntity":[]},"CurrencyEntity":{"SelectableEntity":[]},"_$CurrencyListResponseSerializer":{"StructuredSerializer":["CurrencyListResponse*"],"Serializer":["CurrencyListResponse*"]},"_$CurrencyItemResponseSerializer":{"StructuredSerializer":["CurrencyItemResponse*"],"Serializer":["CurrencyItemResponse*"]},"_$CurrencyEntitySerializer":{"StructuredSerializer":["CurrencyEntity*"],"Serializer":["CurrencyEntity*"]},"_$CurrencyEntity":{"CurrencyEntity":[],"SelectableEntity":[]},"DateFormatEntity":{"SelectableEntity":[]},"_$DateFormatListResponseSerializer":{"StructuredSerializer":["DateFormatListResponse*"],"Serializer":["DateFormatListResponse*"]},"_$DateFormatItemResponseSerializer":{"StructuredSerializer":["DateFormatItemResponse*"],"Serializer":["DateFormatItemResponse*"]},"_$DateFormatEntitySerializer":{"StructuredSerializer":["DateFormatEntity*"],"Serializer":["DateFormatEntity*"]},"_$DateFormatEntity":{"DateFormatEntity":[],"SelectableEntity":[]},"_$DatetimeFormatListResponseSerializer":{"StructuredSerializer":["DatetimeFormatListResponse*"],"Serializer":["DatetimeFormatListResponse*"]},"_$DatetimeFormatItemResponseSerializer":{"StructuredSerializer":["DatetimeFormatItemResponse*"],"Serializer":["DatetimeFormatItemResponse*"]},"_$DatetimeFormatEntitySerializer":{"StructuredSerializer":["DatetimeFormatEntity*"],"Serializer":["DatetimeFormatEntity*"]},"_$DatetimeFormatEntity":{"DatetimeFormatEntity":[]},"FontEntity":{"SelectableEntity":[]},"_$FontEntity":{"SelectableEntity":[]},"IndustryEntity":{"SelectableEntity":[]},"_$IndustryListResponseSerializer":{"StructuredSerializer":["IndustryListResponse*"],"Serializer":["IndustryListResponse*"]},"_$IndustryItemResponseSerializer":{"StructuredSerializer":["IndustryItemResponse*"],"Serializer":["IndustryItemResponse*"]},"_$IndustryEntitySerializer":{"StructuredSerializer":["IndustryEntity*"],"Serializer":["IndustryEntity*"]},"_$IndustryEntity":{"IndustryEntity":[],"SelectableEntity":[]},"InvoiceStatusEntity":{"EntityStatus":[]},"_$InvoiceStatusEntitySerializer":{"StructuredSerializer":["InvoiceStatusEntity*"],"Serializer":["InvoiceStatusEntity*"]},"_$InvoiceStatusEntity":{"InvoiceStatusEntity":[],"EntityStatus":[]},"LanguageEntity":{"SelectableEntity":[]},"_$LanguageListResponseSerializer":{"StructuredSerializer":["LanguageListResponse*"],"Serializer":["LanguageListResponse*"]},"_$LanguageItemResponseSerializer":{"StructuredSerializer":["LanguageItemResponse*"],"Serializer":["LanguageItemResponse*"]},"_$LanguageEntitySerializer":{"StructuredSerializer":["LanguageEntity*"],"Serializer":["LanguageEntity*"]},"_$LanguageEntity":{"LanguageEntity":[],"SelectableEntity":[]},"PaymentTypeEntity":{"SelectableEntity":[]},"_$PaymentTypeListResponseSerializer":{"StructuredSerializer":["PaymentTypeListResponse*"],"Serializer":["PaymentTypeListResponse*"]},"_$PaymentTypeItemResponseSerializer":{"StructuredSerializer":["PaymentTypeItemResponse*"],"Serializer":["PaymentTypeItemResponse*"]},"_$PaymentTypeEntitySerializer":{"StructuredSerializer":["PaymentTypeEntity*"],"Serializer":["PaymentTypeEntity*"]},"_$PaymentTypeEntity":{"PaymentTypeEntity":[],"SelectableEntity":[]},"SizeEntity":{"SelectableEntity":[]},"_$SizeListResponseSerializer":{"StructuredSerializer":["SizeListResponse*"],"Serializer":["SizeListResponse*"]},"_$SizeItemResponseSerializer":{"StructuredSerializer":["SizeItemResponse*"],"Serializer":["SizeItemResponse*"]},"_$SizeEntitySerializer":{"StructuredSerializer":["SizeEntity*"],"Serializer":["SizeEntity*"]},"_$SizeEntity":{"SizeEntity":[],"SelectableEntity":[]},"_$StaticDataItemResponseSerializer":{"StructuredSerializer":["StaticDataItemResponse*"],"Serializer":["StaticDataItemResponse*"]},"_$StaticDataEntitySerializer":{"StructuredSerializer":["StaticDataEntity*"],"Serializer":["StaticDataEntity*"]},"_$TemplateEntitySerializer":{"StructuredSerializer":["TemplateEntity*"],"Serializer":["TemplateEntity*"]},"_$StaticDataEntity":{"StaticDataEntity":[]},"_$TemplateEntity":{"TemplateEntity":[]},"TimezoneEntity":{"SelectableEntity":[]},"_$TimezoneListResponseSerializer":{"StructuredSerializer":["TimezoneListResponse*"],"Serializer":["TimezoneListResponse*"]},"_$TimezoneItemResponseSerializer":{"StructuredSerializer":["TimezoneItemResponse*"],"Serializer":["TimezoneItemResponse*"]},"_$TimezoneEntitySerializer":{"StructuredSerializer":["TimezoneEntity*"],"Serializer":["TimezoneEntity*"]},"_$TimezoneEntity":{"TimezoneEntity":[],"SelectableEntity":[]},"SubscriptionEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$SubscriptionListResponseSerializer":{"StructuredSerializer":["SubscriptionListResponse*"],"Serializer":["SubscriptionListResponse*"]},"_$SubscriptionItemResponseSerializer":{"StructuredSerializer":["SubscriptionItemResponse*"],"Serializer":["SubscriptionItemResponse*"]},"_$SubscriptionEntitySerializer":{"StructuredSerializer":["SubscriptionEntity*"],"Serializer":["SubscriptionEntity*"]},"_$WebhookConfigurationEntitySerializer":{"StructuredSerializer":["WebhookConfigurationEntity*"],"Serializer":["WebhookConfigurationEntity*"]},"_$SubscriptionListResponse":{"SubscriptionListResponse":[]},"_$SubscriptionItemResponse":{"SubscriptionItemResponse":[]},"_$SubscriptionEntity":{"SubscriptionEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$WebhookConfigurationEntity":{"WebhookConfigurationEntity":[]},"_$SystemLogEntitySerializer":{"StructuredSerializer":["SystemLogEntity*"],"Serializer":["SystemLogEntity*"]},"_$SystemLogEntity":{"SystemLogEntity":[]},"TaskEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$TaskListResponseSerializer":{"StructuredSerializer":["TaskListResponse*"],"Serializer":["TaskListResponse*"]},"_$TaskItemResponseSerializer":{"StructuredSerializer":["TaskItemResponse*"],"Serializer":["TaskItemResponse*"]},"_$TaskEntitySerializer":{"StructuredSerializer":["TaskEntity*"],"Serializer":["TaskEntity*"]},"_$TaskListResponse":{"TaskListResponse":[]},"_$TaskItemResponse":{"TaskItemResponse":[]},"_$TaskTime":{"TaskTime":[]},"_$TaskEntity":{"TaskEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"TaskStatusEntity":{"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"_$TaskStatusListResponseSerializer":{"StructuredSerializer":["TaskStatusListResponse*"],"Serializer":["TaskStatusListResponse*"]},"_$TaskStatusItemResponseSerializer":{"StructuredSerializer":["TaskStatusItemResponse*"],"Serializer":["TaskStatusItemResponse*"]},"_$TaskStatusEntitySerializer":{"StructuredSerializer":["TaskStatusEntity*"],"Serializer":["TaskStatusEntity*"]},"_$TaskStatusListResponse":{"TaskStatusListResponse":[]},"_$TaskStatusItemResponse":{"TaskStatusItemResponse":[]},"_$TaskStatusEntity":{"TaskStatusEntity":[],"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"TaxRateEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TaxRateListResponseSerializer":{"StructuredSerializer":["TaxRateListResponse*"],"Serializer":["TaxRateListResponse*"]},"_$TaxRateItemResponseSerializer":{"StructuredSerializer":["TaxRateItemResponse*"],"Serializer":["TaxRateItemResponse*"]},"_$TaxRateEntitySerializer":{"StructuredSerializer":["TaxRateEntity*"],"Serializer":["TaxRateEntity*"]},"_$TaxRateListResponse":{"TaxRateListResponse":[]},"_$TaxRateItemResponse":{"TaxRateItemResponse":[]},"_$TaxRateEntity":{"TaxRateEntity":[],"BaseEntity":[],"SelectableEntity":[]},"TokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TokenListResponseSerializer":{"StructuredSerializer":["TokenListResponse*"],"Serializer":["TokenListResponse*"]},"_$TokenItemResponseSerializer":{"StructuredSerializer":["TokenItemResponse*"],"Serializer":["TokenItemResponse*"]},"_$TokenEntitySerializer":{"StructuredSerializer":["TokenEntity*"],"Serializer":["TokenEntity*"]},"_$TokenListResponse":{"TokenListResponse":[]},"_$TokenItemResponse":{"TokenItemResponse":[]},"_$TokenEntity":{"TokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"UserEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$UserListResponseSerializer":{"StructuredSerializer":["UserListResponse*"],"Serializer":["UserListResponse*"]},"_$UserItemResponseSerializer":{"StructuredSerializer":["UserItemResponse*"],"Serializer":["UserItemResponse*"]},"_$UserTwoFactorResponseSerializer":{"StructuredSerializer":["UserTwoFactorResponse*"],"Serializer":["UserTwoFactorResponse*"]},"_$UserTwoFactorDataSerializer":{"StructuredSerializer":["UserTwoFactorData*"],"Serializer":["UserTwoFactorData*"]},"_$UserCompanyItemResponseSerializer":{"StructuredSerializer":["UserCompanyItemResponse*"],"Serializer":["UserCompanyItemResponse*"]},"_$UserEntitySerializer":{"StructuredSerializer":["UserEntity*"],"Serializer":["UserEntity*"]},"_$UserListResponse":{"UserListResponse":[]},"_$UserItemResponse":{"UserItemResponse":[]},"_$UserTwoFactorResponse":{"UserTwoFactorResponse":[]},"_$UserTwoFactorData":{"UserTwoFactorData":[]},"_$UserCompanyItemResponse":{"UserCompanyItemResponse":[]},"_$UserEntity":{"UserEntity":[],"BaseEntity":[],"SelectableEntity":[]},"VendorEntity":{"BaseEntity":[],"SelectableEntity":[]},"VendorContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$VendorListResponseSerializer":{"StructuredSerializer":["VendorListResponse*"],"Serializer":["VendorListResponse*"]},"_$VendorItemResponseSerializer":{"StructuredSerializer":["VendorItemResponse*"],"Serializer":["VendorItemResponse*"]},"_$VendorEntitySerializer":{"StructuredSerializer":["VendorEntity*"],"Serializer":["VendorEntity*"]},"_$VendorContactEntitySerializer":{"StructuredSerializer":["VendorContactEntity*"],"Serializer":["VendorContactEntity*"]},"_$VendorListResponse":{"VendorListResponse":[]},"_$VendorItemResponse":{"VendorItemResponse":[]},"_$VendorEntity":{"VendorEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$VendorContactEntity":{"VendorContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"WebhookEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$WebhookListResponseSerializer":{"StructuredSerializer":["WebhookListResponse*"],"Serializer":["WebhookListResponse*"]},"_$WebhookItemResponseSerializer":{"StructuredSerializer":["WebhookItemResponse*"],"Serializer":["WebhookItemResponse*"]},"_$WebhookEntitySerializer":{"StructuredSerializer":["WebhookEntity*"],"Serializer":["WebhookEntity*"]},"_$WebhookListResponse":{"WebhookListResponse":[]},"_$WebhookItemResponse":{"WebhookItemResponse":[]},"_$WebhookEntity":{"WebhookEntity":[],"BaseEntity":[],"SelectableEntity":[]},"InvoiceNinjaApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceNinjaAppState":{"State":["InvoiceNinjaApp*"]},"SwitchListTableLayout":{"PersistUI":[],"PersistPrefs":[]},"PopLastHistory":{"PersistUI":[]},"DismissNativeWarning":{"PersistUI":[]},"DismissNativeWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissGatewayWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"LoadStaticSuccess":{"PersistStatic":[]},"ToggleEditorLayout":{"PersistPrefs":[]},"ToggleViewerLayout":{"PersistPrefs":[]},"UpdateUserPreferences":{"PersistPrefs":[]},"LoadAccountSuccess":{"StopLoading":[]},"ResendConfirmation":{"StartLoading":[]},"RefreshData":{"StartLoading":[]},"RefreshDataSuccess":{"StopLoading":[]},"RefreshDataFailure":{"StopLoading":[]},"FilterByEntity":{"PersistUI":[]},"FilterCompany":{"PersistUI":[]},"ResendConfirmationFailure":{"StopLoading":[]},"ResendConfirmationSuccess":{"StopLoading":[]},"_$AppStateSerializer":{"StructuredSerializer":["AppState*"],"Serializer":["AppState*"]},"_$AppState":{"AppState":[]},"OAuthLoginRequest":{"StartLoading":[]},"UserLoginRequest":{"StartLoading":[]},"UserLoginSuccess":{"StopLoading":[]},"RecoverPasswordRequest":{"StartLoading":[]},"UserLogout":{"PersistData":[],"PersistUI":[]},"UserLogoutAll":{"StartLoading":[]},"UserSignUpRequest":{"StartLoading":[]},"OAuthSignUpRequest":{"StartLoading":[]},"UserLoginFailure":{"StopLoading":[]},"RecoverPasswordSuccess":{"StopLoading":[]},"RecoverPasswordFailure":{"StopLoading":[]},"UserLogoutAllSuccess":{"StopLoading":[]},"UserLogoutAllFailure":{"StopLoading":[]},"_$AuthStateSerializer":{"StructuredSerializer":["AuthState*"],"Serializer":["AuthState*"]},"_$AuthState":{"AuthState":[]},"ViewClientList":{"PersistUI":[]},"ViewClient":{"PersistUI":[],"PersistPrefs":[]},"EditClient":{"PersistUI":[],"PersistPrefs":[]},"EditContact":{"PersistUI":[]},"UpdateClient":{"PersistUI":[]},"LoadClientSuccess":{"StopLoading":[],"PersistData":[]},"LoadClientsRequest":{"StartLoading":[]},"LoadClientsFailure":{"StopLoading":[]},"LoadClientsSuccess":{"StopLoading":[]},"AddContact":{"PersistUI":[]},"UpdateContact":{"PersistUI":[]},"DeleteContact":{"PersistUI":[]},"SaveClientRequest":{"StartSaving":[]},"SaveClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveClientsRequest":{"StartSaving":[]},"ArchiveClientsSuccess":{"StopSaving":[],"PersistData":[]},"MergeClientsRequest":{"StartSaving":[]},"MergeClientsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteClientsRequest":{"StartSaving":[]},"DeleteClientsSuccess":{"StopSaving":[],"PersistData":[]},"PurgeClientRequest":{"StartSaving":[]},"PurgeClientSuccess":{"StopSaving":[],"PersistData":[]},"RestoreClientsRequest":{"StartSaving":[]},"RestoreClientSuccess":{"StopSaving":[],"PersistData":[]},"FilterClients":{"PersistUI":[]},"SortClients":{"PersistUI":[],"PersistPrefs":[]},"FilterClientsByState":{"PersistUI":[]},"FilterClientsByCustom1":{"PersistUI":[]},"FilterClientsByCustom2":{"PersistUI":[]},"FilterClientsByCustom3":{"PersistUI":[]},"FilterClientsByCustom4":{"PersistUI":[]},"SaveClientDocumentRequest":{"StartSaving":[]},"UpdateClientTab":{"PersistUI":[]},"_MergClientPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadClientRequest":{"StartLoading":[]},"LoadClientFailure":{"StopLoading":[]},"SaveClientFailure":{"StopSaving":[]},"ArchiveClientsFailure":{"StopSaving":[]},"MergeClientsFailure":{"StopSaving":[]},"DeleteClientsFailure":{"StopSaving":[]},"PurgeClientFailure":{"StopSaving":[]},"RestoreClientFailure":{"StopSaving":[]},"SaveClientDocumentFailure":{"StopSaving":[]},"__MergClientPickerState":{"State":["_MergClientPicker*"]},"_$ClientStateSerializer":{"StructuredSerializer":["ClientState*"],"Serializer":["ClientState*"]},"_$ClientUIStateSerializer":{"StructuredSerializer":["ClientUIState*"],"Serializer":["ClientUIState*"]},"_$ClientState":{"ClientState":[]},"_$ClientUIState":{"ClientUIState":[]},"SelectCompany":{"ClearClientMultiselect":[]},"UpdateCompany":{"PersistUI":[]},"SaveCompanyRequest":{"StartSaving":[]},"SaveCompanySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompany":{"StartSaving":[]},"DeleteCompanyRequest":{"StartSaving":[]},"PurgeDataRequest":{"StartSaving":[]},"SaveCompanyDocumentRequest":{"StartSaving":[]},"SetDefaultCompanyRequest":{"StartSaving":[]},"SaveCompanyFailure":{"StopSaving":[]},"AddCompanySuccess":{"StopSaving":[]},"DeleteCompanySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyFailure":{"StopSaving":[]},"PurgeDataSuccess":{"StopSaving":[],"PersistData":[]},"PurgeDataFailure":{"StopSaving":[]},"SaveCompanyDocumentFailure":{"StopSaving":[]},"SetDefaultCompanySuccess":{"StopSaving":[]},"SetDefaultCompanyFailure":{"StopSaving":[]},"_$UserCompanyStateSerializer":{"StructuredSerializer":["UserCompanyState*"],"Serializer":["UserCompanyState*"]},"_$SettingsUIStateSerializer":{"StructuredSerializer":["SettingsUIState*"],"Serializer":["SettingsUIState*"]},"_$UserCompanyState":{"UserCompanyState":[]},"_$SettingsUIState":{"SettingsUIState":[]},"ViewCompanyGatewayList":{"PersistUI":[]},"ViewCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"EditCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"UpdateCompanyGateway":{"PersistUI":[]},"LoadCompanyGatewaySuccess":{"StopLoading":[],"PersistData":[]},"LoadCompanyGatewaysSuccess":{"StopLoading":[]},"SaveCompanyGatewayRequest":{"StartSaving":[]},"SaveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveCompanyGatewayRequest":{"StartSaving":[]},"ArchiveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyGatewayRequest":{"StartSaving":[]},"DeleteCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"FilterCompanyGateways":{"PersistUI":[]},"SortCompanyGateways":{"PersistUI":[],"PersistPrefs":[]},"FilterCompanyGatewaysByState":{"PersistUI":[]},"FilterCompanyGatewaysByCustom1":{"PersistUI":[]},"FilterCompanyGatewaysByCustom2":{"PersistUI":[]},"FilterCompanyGatewaysByCustom3":{"PersistUI":[]},"FilterCompanyGatewaysByCustom4":{"PersistUI":[]},"LoadCompanyGatewayRequest":{"StartLoading":[]},"LoadCompanyGatewayFailure":{"StopLoading":[]},"LoadCompanyGatewaysRequest":{"StartLoading":[]},"LoadCompanyGatewaysFailure":{"StopLoading":[]},"SaveCompanyGatewayFailure":{"StopSaving":[]},"ArchiveCompanyGatewayFailure":{"StopSaving":[]},"DeleteCompanyGatewayFailure":{"StopSaving":[]},"DisconnectCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayFailure":{"StopSaving":[]},"RestoreCompanyGatewayFailure":{"StopSaving":[]},"_$CompanyGatewayStateSerializer":{"StructuredSerializer":["CompanyGatewayState*"],"Serializer":["CompanyGatewayState*"]},"_$CompanyGatewayUIStateSerializer":{"StructuredSerializer":["CompanyGatewayUIState*"],"Serializer":["CompanyGatewayUIState*"]},"_$CompanyGatewayState":{"CompanyGatewayState":[]},"_$CompanyGatewayUIState":{"CompanyGatewayUIState":[]},"ViewCreditList":{"PersistUI":[]},"ViewCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCreditItem":{"PersistUI":[]},"UpdateCredit":{"PersistUI":[]},"UpdateCreditClient":{"PersistUI":[]},"LoadCreditSuccess":{"StopLoading":[],"PersistData":[]},"LoadCreditsRequest":{"StartLoading":[]},"LoadCreditsFailure":{"StopLoading":[]},"LoadCreditsSuccess":{"StopLoading":[]},"AddCreditContact":{"PersistUI":[]},"RemoveCreditContact":{"PersistUI":[]},"AddCreditItem":{"PersistUI":[]},"MoveCreditItem":{"PersistUI":[]},"AddCreditItems":{"PersistUI":[]},"UpdateCreditItem":{"PersistUI":[]},"DeleteCreditItem":{"PersistUI":[]},"SaveCreditRequest":{"StartSaving":[]},"SaveCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailCreditRequest":{"StartSaving":[]},"MarkSentCreditRequest":{"StartSaving":[]},"MarkSentCreditSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsRequest":{"StartSaving":[]},"MarkCreditsPaidRequest":{"StartSaving":[]},"ArchiveCreditsRequest":{"StartSaving":[]},"ArchiveCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteCreditsRequest":{"StartSaving":[]},"DeleteCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DownloadCreditsRequest":{"StartSaving":[]},"RestoreCreditsRequest":{"StartSaving":[]},"RestoreCreditsSuccess":{"StopSaving":[],"PersistData":[]},"FilterCredits":{"PersistUI":[]},"SortCredits":{"PersistUI":[],"PersistPrefs":[]},"FilterCreditsByState":{"PersistUI":[]},"FilterCreditsByStatus":{"PersistUI":[]},"FilterCreditsByCustom1":{"PersistUI":[]},"FilterCreditsByCustom2":{"PersistUI":[]},"FilterCreditsByCustom3":{"PersistUI":[]},"FilterCreditsByCustom4":{"PersistUI":[]},"SaveCreditDocumentRequest":{"StartSaving":[]},"UpdateCreditTab":{"PersistUI":[]},"LoadCreditRequest":{"StartLoading":[]},"LoadCreditFailure":{"StopLoading":[]},"SaveCreditFailure":{"StopSaving":[]},"EmailCreditSuccess":{"StopSaving":[],"PersistData":[]},"EmailCreditFailure":{"StopSaving":[]},"MarkSentCreditFailure":{"StopSaving":[]},"BulkEmailCreditsSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsFailure":{"StopSaving":[]},"MarkCreditsPaidSuccess":{"StopSaving":[]},"MarkCreditsPaidFailure":{"StopSaving":[]},"ArchiveCreditsFailure":{"StopSaving":[]},"DeleteCreditsFailure":{"StopSaving":[]},"DownloadCreditsSuccess":{"StopSaving":[]},"DownloadCreditsFailure":{"StopSaving":[]},"RestoreCreditsFailure":{"StopSaving":[]},"SaveCreditDocumentFailure":{"StopSaving":[]},"_$CreditStateSerializer":{"StructuredSerializer":["CreditState*"],"Serializer":["CreditState*"]},"_$CreditUIStateSerializer":{"StructuredSerializer":["CreditUIState*"],"Serializer":["CreditUIState*"]},"_$CreditState":{"CreditState":[]},"_$CreditUIState":{"CreditUIState":[]},"ViewDashboard":{"PersistUI":[]},"UpdateDashboardSelection":{"PersistUI":[]},"UpdateDashboardEntityType":{"PersistUI":[]},"UpdateDashboardSidebar":{"PersistUI":[]},"UpdateDashboardSettings":{"PersistUI":[]},"_$DashboardUIStateSerializer":{"StructuredSerializer":["DashboardUIState*"],"Serializer":["DashboardUIState*"]},"_$DashboardUISettingsSerializer":{"StructuredSerializer":["DashboardUISettings*"],"Serializer":["DashboardUISettings*"]},"_$DashboardUIState":{"DashboardUIState":[]},"_$DashboardUISettings":{"DashboardUISettings":[]},"ViewDesignList":{"PersistUI":[]},"ViewDesign":{"PersistUI":[],"PersistPrefs":[]},"EditDesign":{"PersistUI":[],"PersistPrefs":[]},"UpdateDesign":{"PersistUI":[]},"LoadDesignSuccess":{"StopLoading":[],"PersistData":[]},"LoadDesignsFailure":{"StopLoading":[]},"LoadDesignsSuccess":{"StopLoading":[]},"SaveDesignRequest":{"StartSaving":[]},"SaveDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveDesignsRequest":{"StartSaving":[]},"ArchiveDesignsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDesignsRequest":{"StartSaving":[]},"DeleteDesignsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreDesignsRequest":{"StartSaving":[]},"RestoreDesignsSuccess":{"StopSaving":[],"PersistData":[]},"FilterDesigns":{"PersistUI":[]},"SortDesigns":{"PersistUI":[],"PersistPrefs":[]},"FilterDesignsByState":{"PersistUI":[]},"FilterDesignsByCustom1":{"PersistUI":[]},"FilterDesignsByCustom2":{"PersistUI":[]},"FilterDesignsByCustom3":{"PersistUI":[]},"FilterDesignsByCustom4":{"PersistUI":[]},"LoadDesignRequest":{"StartLoading":[]},"LoadDesignFailure":{"StopLoading":[]},"LoadDesignsRequest":{"StartLoading":[]},"SaveDesignFailure":{"StopSaving":[]},"ArchiveDesignsFailure":{"StopSaving":[]},"DeleteDesignsFailure":{"StopSaving":[]},"RestoreDesignsFailure":{"StopSaving":[]},"_$DesignStateSerializer":{"StructuredSerializer":["DesignState*"],"Serializer":["DesignState*"]},"_$DesignUIStateSerializer":{"StructuredSerializer":["DesignUIState*"],"Serializer":["DesignUIState*"]},"_$DesignState":{"DesignState":[]},"_$DesignUIState":{"DesignUIState":[]},"ViewDocumentList":{"PersistUI":[]},"ViewDocument":{"PersistUI":[]},"EditDocument":{"PersistUI":[]},"UpdateDocument":{"PersistUI":[]},"LoadDocumentSuccess":{"StopLoading":[],"PersistData":[]},"LoadDocumentsSuccess":{"StopLoading":[]},"SaveDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"DownloadDocumentsRequest":{"StartSaving":[]},"ArchiveDocumentRequest":{"StartSaving":[]},"ArchiveDocumentSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDocumentRequest":{"StartSaving":[]},"DeleteDocumentSuccess":{"StopSaving":[],"PersistData":[]},"RestoreDocumentRequest":{"StartSaving":[]},"RestoreDocumentSuccess":{"StopSaving":[],"PersistData":[]},"FilterDocuments":{"PersistUI":[]},"SortDocuments":{"PersistUI":[],"PersistPrefs":[]},"FilterDocumentsByState":{"PersistUI":[]},"FilterDocumentsByCustom1":{"PersistUI":[]},"FilterDocumentsByCustom2":{"PersistUI":[]},"FilterDocumentsByCustom3":{"PersistUI":[]},"FilterDocumentsByCustom4":{"PersistUI":[]},"LoadDocumentRequest":{"StartLoading":[]},"LoadDocumentFailure":{"StopLoading":[]},"LoadDocumentsRequest":{"StartLoading":[]},"LoadDocumentsFailure":{"StopLoading":[]},"DownloadDocumentsSuccess":{"StopSaving":[]},"DownloadDocumentsFailure":{"StopSaving":[]},"ArchiveDocumentFailure":{"StopSaving":[]},"DeleteDocumentFailure":{"StopSaving":[]},"RestoreDocumentFailure":{"StopSaving":[]},"_$DocumentStateSerializer":{"StructuredSerializer":["DocumentState*"],"Serializer":["DocumentState*"]},"_$DocumentUIStateSerializer":{"StructuredSerializer":["DocumentUIState*"],"Serializer":["DocumentUIState*"]},"_$DocumentState":{"DocumentState":[]},"_$DocumentUIState":{"DocumentUIState":[]},"ViewExpenseList":{"PersistUI":[]},"ViewExpense":{"PersistUI":[],"PersistPrefs":[]},"EditExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpense":{"PersistUI":[]},"LoadExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadExpensesRequest":{"StartLoading":[]},"LoadExpensesFailure":{"StopLoading":[]},"LoadExpensesSuccess":{"StopLoading":[]},"SaveExpenseRequest":{"StartSaving":[]},"SaveExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseRequest":{"StartSaving":[]},"ArchiveExpenseSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseRequest":{"StartSaving":[]},"DeleteExpenseSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseRequest":{"StartSaving":[]},"RestoreExpenseSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenses":{"PersistUI":[]},"SortExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterExpensesByState":{"PersistUI":[]},"FilterExpensesByStatus":{"PersistUI":[]},"FilterExpensesByCustom1":{"PersistUI":[]},"FilterExpensesByCustom2":{"PersistUI":[]},"FilterExpensesByCustom3":{"PersistUI":[]},"FilterExpensesByCustom4":{"PersistUI":[]},"SaveExpenseDocumentRequest":{"StartSaving":[]},"UpdateExpenseTab":{"PersistUI":[]},"LoadExpenseRequest":{"StartLoading":[]},"LoadExpenseFailure":{"StopLoading":[]},"SaveExpenseFailure":{"StopSaving":[]},"ArchiveExpenseFailure":{"StopSaving":[]},"DeleteExpenseFailure":{"StopSaving":[]},"RestoreExpenseFailure":{"StopSaving":[]},"SaveExpenseDocumentFailure":{"StopSaving":[]},"_$ExpenseStateSerializer":{"StructuredSerializer":["ExpenseState*"],"Serializer":["ExpenseState*"]},"_$ExpenseUIStateSerializer":{"StructuredSerializer":["ExpenseUIState*"],"Serializer":["ExpenseUIState*"]},"_$ExpenseState":{"ExpenseState":[]},"_$ExpenseUIState":{"ExpenseUIState":[]},"ViewExpenseCategoryList":{"PersistUI":[]},"ViewExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"EditExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpenseCategory":{"PersistUI":[]},"LoadExpenseCategorySuccess":{"StopLoading":[],"PersistData":[]},"LoadExpenseCategoriesSuccess":{"StopLoading":[]},"SaveExpenseCategoryRequest":{"StartSaving":[]},"SaveExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseCategoriesRequest":{"StartSaving":[]},"ArchiveExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseCategoriesRequest":{"StartSaving":[]},"DeleteExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseCategoriesRequest":{"StartSaving":[]},"RestoreExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenseCategories":{"PersistUI":[]},"SortExpenseCategories":{"PersistUI":[],"PersistPrefs":[]},"FilterExpenseCategoriesByState":{"PersistUI":[]},"FilterExpenseCategoriesByCustom1":{"PersistUI":[]},"FilterExpenseCategoriesByCustom2":{"PersistUI":[]},"FilterExpenseCategoriesByCustom3":{"PersistUI":[]},"FilterExpenseCategoriesByCustom4":{"PersistUI":[]},"LoadExpenseCategoryRequest":{"StartLoading":[]},"LoadExpenseCategoryFailure":{"StopLoading":[]},"LoadExpenseCategoriesRequest":{"StartLoading":[]},"LoadExpenseCategoriesFailure":{"StopLoading":[]},"SaveExpenseCategoryFailure":{"StopSaving":[]},"ArchiveExpenseCategoriesFailure":{"StopSaving":[]},"DeleteExpenseCategoriesFailure":{"StopSaving":[]},"RestoreExpenseCategoriesFailure":{"StopSaving":[]},"_$ExpenseCategoryStateSerializer":{"StructuredSerializer":["ExpenseCategoryState*"],"Serializer":["ExpenseCategoryState*"]},"_$ExpenseCategoryUIStateSerializer":{"StructuredSerializer":["ExpenseCategoryUIState*"],"Serializer":["ExpenseCategoryUIState*"]},"_$ExpenseCategoryState":{"ExpenseCategoryState":[]},"_$ExpenseCategoryUIState":{"ExpenseCategoryUIState":[]},"ViewGroupList":{"PersistUI":[]},"ViewGroup":{"PersistUI":[],"PersistPrefs":[]},"EditGroup":{"PersistUI":[],"PersistPrefs":[]},"UpdateGroup":{"PersistUI":[]},"LoadGroupSuccess":{"StopLoading":[],"PersistData":[]},"LoadGroupsSuccess":{"StopLoading":[]},"SaveGroupRequest":{"StartSaving":[]},"SaveGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveGroupRequest":{"StartSaving":[]},"ArchiveGroupSuccess":{"StopSaving":[],"PersistData":[]},"DeleteGroupRequest":{"StartSaving":[]},"DeleteGroupSuccess":{"StopSaving":[],"PersistData":[]},"RestoreGroupRequest":{"StartSaving":[]},"RestoreGroupSuccess":{"StopSaving":[],"PersistData":[]},"FilterGroups":{"PersistUI":[]},"SortGroups":{"PersistUI":[],"PersistPrefs":[]},"FilterGroupsByState":{"PersistUI":[]},"SaveGroupDocumentRequest":{"StartSaving":[]},"LoadGroupRequest":{"StartLoading":[]},"LoadGroupFailure":{"StopLoading":[]},"LoadGroupsRequest":{"StartLoading":[]},"LoadGroupsFailure":{"StopLoading":[]},"SaveGroupFailure":{"StopSaving":[]},"ArchiveGroupFailure":{"StopSaving":[]},"DeleteGroupFailure":{"StopSaving":[]},"RestoreGroupFailure":{"StopSaving":[]},"SaveGroupDocumentFailure":{"StopSaving":[]},"_$GroupStateSerializer":{"StructuredSerializer":["GroupState*"],"Serializer":["GroupState*"]},"_$GroupUIStateSerializer":{"StructuredSerializer":["GroupUIState*"],"Serializer":["GroupUIState*"]},"_$GroupState":{"GroupState":[]},"_$GroupUIState":{"GroupUIState":[]},"ViewInvoiceList":{"PersistUI":[]},"ViewInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoiceItem":{"PersistUI":[]},"UpdateInvoice":{"PersistUI":[]},"UpdateInvoiceClient":{"PersistUI":[]},"LoadInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadInvoicesRequest":{"StartLoading":[]},"LoadInvoicesFailure":{"StopLoading":[]},"LoadInvoicesSuccess":{"StopLoading":[]},"AddInvoiceContact":{"PersistUI":[]},"RemoveInvoiceContact":{"PersistUI":[]},"AddInvoiceItem":{"PersistUI":[]},"MoveInvoiceItem":{"PersistUI":[]},"AddInvoiceItems":{"PersistUI":[]},"UpdateInvoiceItem":{"PersistUI":[]},"DeleteInvoiceItem":{"PersistUI":[]},"SaveInvoiceRequest":{"StartSaving":[]},"SaveInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"AddInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"EmailInvoiceRequest":{"StartSaving":[]},"EmailInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"MarkInvoicesSentRequest":{"StartSaving":[]},"MarkInvoicesSentSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesRequest":{"StartSaving":[]},"MarkInvoicesPaidRequest":{"StartSaving":[]},"MarkInvoicesPaidSuccess":{"StopSaving":[]},"CancelInvoicesRequest":{"StartSaving":[]},"CancelInvoicesSuccess":{"StopSaving":[]},"ArchiveInvoicesRequest":{"StartSaving":[]},"ArchiveInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteInvoicesRequest":{"StartSaving":[]},"DeleteInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterInvoices":{"PersistUI":[]},"SortInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterInvoicesByState":{"PersistUI":[]},"FilterInvoicesByStatus":{"PersistUI":[]},"FilterInvoicesByCustom1":{"PersistUI":[]},"FilterInvoicesByCustom2":{"PersistUI":[]},"FilterInvoicesByCustom3":{"PersistUI":[]},"FilterInvoicesByCustom4":{"PersistUI":[]},"SaveInvoiceDocumentRequest":{"StartSaving":[]},"UpdateInvoiceTab":{"PersistUI":[]},"LoadInvoiceRequest":{"StartLoading":[]},"LoadInvoiceFailure":{"StopLoading":[]},"SaveInvoiceFailure":{"StopSaving":[]},"EmailInvoiceFailure":{"StopSaving":[]},"MarkInvoicesSentFailure":{"StopSaving":[]},"BulkEmailInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesFailure":{"StopSaving":[]},"MarkInvoicesPaidFailure":{"StopSaving":[]},"CancelInvoicesFailure":{"StopSaving":[]},"ArchiveInvoicesFailure":{"StopSaving":[]},"DeleteInvoicesFailure":{"StopSaving":[]},"DownloadInvoicesSuccess":{"StopSaving":[]},"DownloadInvoicesFailure":{"StopSaving":[]},"RestoreInvoicesFailure":{"StopSaving":[]},"SaveInvoiceDocumentFailure":{"StopSaving":[]},"_$InvoiceStateSerializer":{"StructuredSerializer":["InvoiceState*"],"Serializer":["InvoiceState*"]},"_$InvoiceUIStateSerializer":{"StructuredSerializer":["InvoiceUIState*"],"Serializer":["InvoiceUIState*"]},"_$InvoiceState":{"InvoiceState":[]},"_$InvoiceUIState":{"InvoiceUIState":[]},"ViewPaymentList":{"PersistUI":[]},"ViewPayment":{"PersistUI":[],"PersistPrefs":[]},"EditPayment":{"PersistUI":[],"PersistPrefs":[]},"ViewRefundPayment":{"PersistUI":[],"PersistPrefs":[]},"UpdatePayment":{"PersistUI":[]},"LoadPaymentSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentsRequest":{"StartLoading":[]},"LoadPaymentsFailure":{"StopLoading":[]},"LoadPaymentsSuccess":{"StopLoading":[]},"SavePaymentRequest":{"StartSaving":[]},"SavePaymentSuccess":{"StopSaving":[],"PersistUI":[]},"AddPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentRequest":{"StartSaving":[]},"ArchivePaymentsRequest":{"StartSaving":[]},"ArchivePaymentsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentsRequest":{"StartSaving":[]},"DeletePaymentsSuccess":{"StopSaving":[]},"RestorePaymentsRequest":{"StartSaving":[]},"RestorePaymentsSuccess":{"StopSaving":[]},"EmailPaymentRequest":{"StartSaving":[]},"FilterPayments":{"PersistUI":[]},"SortPayments":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentsByState":{"PersistUI":[]},"FilterPaymentsByCustom1":{"PersistUI":[]},"FilterPaymentsByCustom2":{"PersistUI":[]},"FilterPaymentsByCustom3":{"PersistUI":[]},"FilterPaymentsByCustom4":{"PersistUI":[]},"UpdatePaymentTab":{"PersistUI":[]},"LoadPaymentRequest":{"StartLoading":[]},"LoadPaymentFailure":{"StopLoading":[]},"SavePaymentFailure":{"StopSaving":[]},"RefundPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentFailure":{"StopSaving":[]},"ArchivePaymentsFailure":{"StopSaving":[]},"DeletePaymentsFailure":{"StopSaving":[]},"RestorePaymentsFailure":{"StopSaving":[]},"EmailPaymentSuccess":{"StopSaving":[],"PersistData":[]},"_$PaymentStateSerializer":{"StructuredSerializer":["PaymentState*"],"Serializer":["PaymentState*"]},"_$PaymentUIStateSerializer":{"StructuredSerializer":["PaymentUIState*"],"Serializer":["PaymentUIState*"]},"_$PaymentState":{"PaymentState":[]},"_$PaymentUIState":{"PaymentUIState":[]},"ViewPaymentTermList":{"PersistUI":[]},"ViewPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"EditPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"UpdatePaymentTerm":{"PersistUI":[]},"LoadPaymentTermSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentTermsFailure":{"StopLoading":[]},"LoadPaymentTermsSuccess":{"StopLoading":[]},"SavePaymentTermRequest":{"StartSaving":[]},"SavePaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchivePaymentTermsRequest":{"StartSaving":[]},"ArchivePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentTermsRequest":{"StartSaving":[]},"DeletePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"RestorePaymentTermsRequest":{"StartSaving":[]},"RestorePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"FilterPaymentTerms":{"PersistUI":[]},"SortPaymentTerms":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentTermsByState":{"PersistUI":[]},"FilterPaymentTermsByCustom1":{"PersistUI":[]},"FilterPaymentTermsByCustom2":{"PersistUI":[]},"FilterPaymentTermsByCustom3":{"PersistUI":[]},"FilterPaymentTermsByCustom4":{"PersistUI":[]},"LoadPaymentTermRequest":{"StartLoading":[]},"LoadPaymentTermFailure":{"StopLoading":[]},"LoadPaymentTermsRequest":{"StartLoading":[]},"SavePaymentTermFailure":{"StopSaving":[]},"ArchivePaymentTermsFailure":{"StopSaving":[]},"DeletePaymentTermsFailure":{"StopSaving":[]},"RestorePaymentTermsFailure":{"StopSaving":[]},"_$PaymentTermStateSerializer":{"StructuredSerializer":["PaymentTermState*"],"Serializer":["PaymentTermState*"]},"_$PaymentTermUIStateSerializer":{"StructuredSerializer":["PaymentTermUIState*"],"Serializer":["PaymentTermUIState*"]},"_$PaymentTermState":{"PaymentTermState":[]},"_$PaymentTermUIState":{"PaymentTermUIState":[]},"ViewProductList":{"PersistUI":[]},"ViewProduct":{"PersistUI":[],"PersistPrefs":[]},"EditProduct":{"PersistUI":[],"PersistPrefs":[]},"UpdateProduct":{"PersistUI":[]},"LoadProductSuccess":{"StopLoading":[],"PersistData":[]},"LoadProductsRequest":{"StartLoading":[]},"LoadProductsFailure":{"StopLoading":[]},"LoadProductsSuccess":{"StopLoading":[]},"SaveProductRequest":{"StartSaving":[]},"SaveProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProductsRequest":{"StartSaving":[]},"ArchiveProductsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProductsRequest":{"StartSaving":[]},"DeleteProductsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProductsRequest":{"StartSaving":[]},"RestoreProductsSuccess":{"StopSaving":[],"PersistData":[]},"FilterProducts":{"PersistUI":[]},"SortProducts":{"PersistUI":[],"PersistPrefs":[]},"FilterProductsByState":{"PersistUI":[]},"FilterProductsByCustom1":{"PersistUI":[]},"FilterProductsByCustom2":{"PersistUI":[]},"FilterProductsByCustom3":{"PersistUI":[]},"FilterProductsByCustom4":{"PersistUI":[]},"SaveProductDocumentRequest":{"StartSaving":[]},"UpdateProductTab":{"PersistUI":[]},"LoadProductRequest":{"StartLoading":[]},"LoadProductFailure":{"StopLoading":[]},"SaveProductFailure":{"StopSaving":[]},"ArchiveProductsFailure":{"StopSaving":[]},"DeleteProductsFailure":{"StopSaving":[]},"RestoreProductsFailure":{"StopSaving":[]},"SaveProductDocumentFailure":{"StopSaving":[]},"_$ProductStateSerializer":{"StructuredSerializer":["ProductState*"],"Serializer":["ProductState*"]},"_$ProductUIStateSerializer":{"StructuredSerializer":["ProductUIState*"],"Serializer":["ProductUIState*"]},"_$ProductState":{"ProductState":[]},"_$ProductUIState":{"ProductUIState":[]},"ViewProjectList":{"PersistUI":[]},"ViewProject":{"PersistUI":[],"PersistPrefs":[]},"EditProject":{"PersistUI":[],"PersistPrefs":[]},"UpdateProject":{"PersistUI":[]},"LoadProjectSuccess":{"StopLoading":[],"PersistData":[]},"LoadProjectsRequest":{"StartLoading":[]},"LoadProjectsFailure":{"StopLoading":[]},"LoadProjectsSuccess":{"StopLoading":[]},"SaveProjectRequest":{"StartSaving":[]},"SaveProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProjectRequest":{"StartSaving":[]},"ArchiveProjectSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProjectRequest":{"StartSaving":[]},"DeleteProjectSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProjectRequest":{"StartSaving":[]},"RestoreProjectSuccess":{"StopSaving":[],"PersistData":[]},"FilterProjects":{"PersistUI":[]},"SortProjects":{"PersistUI":[],"PersistPrefs":[]},"FilterProjectsByState":{"PersistUI":[]},"FilterProjectsByCustom1":{"PersistUI":[]},"FilterProjectsByCustom2":{"PersistUI":[]},"FilterProjectsByCustom3":{"PersistUI":[]},"FilterProjectsByCustom4":{"PersistUI":[]},"SaveProjectDocumentRequest":{"StartSaving":[]},"UpdateProjectTab":{"PersistUI":[]},"LoadProjectRequest":{"StartLoading":[]},"LoadProjectFailure":{"StopLoading":[]},"SaveProjectFailure":{"StopSaving":[]},"ArchiveProjectFailure":{"StopSaving":[]},"DeleteProjectFailure":{"StopSaving":[]},"RestoreProjectFailure":{"StopSaving":[]},"SaveProjectDocumentFailure":{"StopSaving":[]},"_$ProjectStateSerializer":{"StructuredSerializer":["ProjectState*"],"Serializer":["ProjectState*"]},"_$ProjectUIStateSerializer":{"StructuredSerializer":["ProjectUIState*"],"Serializer":["ProjectUIState*"]},"_$ProjectState":{"ProjectState":[]},"_$ProjectUIState":{"ProjectUIState":[]},"ViewPurchaseOrderList":{"PersistUI":[]},"ViewPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrderItem":{"PersistUI":[]},"UpdatePurchaseOrder":{"PersistUI":[]},"UpdatePurchaseOrderVendor":{"PersistUI":[]},"LoadPurchaseOrderSuccess":{"StopLoading":[],"PersistData":[]},"LoadPurchaseOrdersRequest":{"StartLoading":[]},"LoadPurchaseOrdersFailure":{"StopLoading":[]},"LoadPurchaseOrdersSuccess":{"StopLoading":[]},"SavePurchaseOrderDocumentRequest":{"StartSaving":[]},"SavePurchaseOrderRequest":{"StartSaving":[]},"SavePurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"BulkEmailPurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DeletePurchaseOrdersRequest":{"StartSaving":[]},"DeletePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DownloadPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrderSuccess":{"StopSaving":[]},"CancelPurchaseOrdersRequest":{"StartSaving":[]},"CancelPurchaseOrderSuccess":{"StopSaving":[]},"RestorePurchaseOrdersRequest":{"StartSaving":[]},"RestorePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"EmailPurchaseOrderRequest":{"StartSaving":[]},"EmailPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[]},"MarkPurchaseOrdersSentRequest":{"StartSaving":[]},"MarkPurchaseOrderSentSuccess":{"StopSaving":[],"PersistData":[]},"ConvertPurchaseOrdersToExpensesRequest":{"StartSaving":[]},"ConvertPurchaseOrdersToExpensesSuccess":{"StopSaving":[],"PersistData":[]},"AddPurchaseOrdersToInventoryRequest":{"StartSaving":[]},"AddPurchaseOrdersToInventorySuccess":{"StopSaving":[],"PersistData":[]},"ApprovePurchaseOrders":{"StartSaving":[]},"ApprovePurchaseOrderSuccess":{"StopSaving":[]},"AddPurchaseOrderContact":{"PersistUI":[]},"RemovePurchaseOrderContact":{"PersistUI":[]},"AddPurchaseOrderItem":{"PersistUI":[]},"MovePurchaseOrderItem":{"PersistUI":[]},"AddPurchaseOrderItems":{"PersistUI":[]},"UpdatePurchaseOrderItem":{"PersistUI":[]},"DeletePurchaseOrderItem":{"PersistUI":[]},"FilterPurchaseOrders":{"PersistUI":[]},"SortPurchaseOrders":{"PersistUI":[],"PersistPrefs":[]},"FilterPurchaseOrdersByState":{"PersistUI":[]},"FilterPurchaseOrdersByStatus":{"PersistUI":[]},"FilterPurchaseOrdersByCustom1":{"PersistUI":[]},"FilterPurchaseOrdersByCustom2":{"PersistUI":[]},"FilterPurchaseOrdersByCustom3":{"PersistUI":[]},"FilterPurchaseOrdersByCustom4":{"PersistUI":[]},"UpdatePurchaseOrderTab":{"PersistUI":[]},"LoadPurchaseOrderRequest":{"StartLoading":[]},"LoadPurchaseOrderFailure":{"StopLoading":[]},"SavePurchaseOrderDocumentFailure":{"StopSaving":[]},"SavePurchaseOrderFailure":{"StopSaving":[]},"BulkEmailPurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailPurchaseOrdersFailure":{"StopSaving":[]},"ArchivePurchaseOrdersFailure":{"StopSaving":[]},"DeletePurchaseOrdersFailure":{"StopSaving":[]},"DownloadPurchaseOrdersSuccess":{"StopSaving":[]},"DownloadPurchaseOrdersFailure":{"StopSaving":[]},"AcceptPurchaseOrderFailure":{"StopSaving":[]},"CancelPurchaseOrderFailure":{"StopSaving":[]},"RestorePurchaseOrdersFailure":{"StopSaving":[]},"EmailPurchaseOrderFailure":{"StopSaving":[]},"MarkPurchaseOrderSentFailure":{"StopSaving":[]},"ConvertPurchaseOrdersToExpensesFailure":{"StopSaving":[]},"AddPurchaseOrdersToInventoryFailure":{"StopSaving":[]},"ApprovePurchaseOrderFailure":{"StopSaving":[]},"_$PurchaseOrderStateSerializer":{"StructuredSerializer":["PurchaseOrderState*"],"Serializer":["PurchaseOrderState*"]},"_$PurchaseOrderUIStateSerializer":{"StructuredSerializer":["PurchaseOrderUIState*"],"Serializer":["PurchaseOrderUIState*"]},"_$PurchaseOrderState":{"PurchaseOrderState":[]},"_$PurchaseOrderUIState":{"PurchaseOrderUIState":[]},"ViewQuoteList":{"PersistUI":[]},"ViewQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuoteItem":{"PersistUI":[]},"UpdateQuote":{"PersistUI":[]},"UpdateQuoteClient":{"PersistUI":[]},"LoadQuoteSuccess":{"StopLoading":[],"PersistData":[]},"LoadQuotesRequest":{"StartLoading":[]},"LoadQuotesFailure":{"StopLoading":[]},"LoadQuotesSuccess":{"StopLoading":[]},"AddQuoteContact":{"PersistUI":[]},"RemoveQuoteContact":{"PersistUI":[]},"AddQuoteItem":{"PersistUI":[]},"MoveQuoteItem":{"PersistUI":[]},"AddQuoteItems":{"PersistUI":[]},"UpdateQuoteItem":{"PersistUI":[]},"DeleteQuoteItem":{"PersistUI":[]},"SaveQuoteRequest":{"StartSaving":[]},"SaveQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailQuoteRequest":{"StartSaving":[]},"EmailQuoteSuccess":{"StopSaving":[],"PersistData":[]},"MarkSentQuotesRequest":{"StartSaving":[]},"MarkSentQuoteSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesRequest":{"StartSaving":[]},"ArchiveQuotesRequest":{"StartSaving":[]},"ArchiveQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteQuotesRequest":{"StartSaving":[]},"DeleteQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadQuotesRequest":{"StartSaving":[]},"RestoreQuotesRequest":{"StartSaving":[]},"RestoreQuotesSuccess":{"StopSaving":[],"PersistData":[]},"FilterQuotes":{"PersistUI":[]},"SortQuotes":{"PersistUI":[],"PersistPrefs":[]},"FilterQuotesByState":{"PersistUI":[]},"FilterQuotesByStatus":{"PersistUI":[]},"FilterQuotesByCustom1":{"PersistUI":[]},"FilterQuotesByCustom2":{"PersistUI":[]},"FilterQuotesByCustom3":{"PersistUI":[]},"FilterQuotesByCustom4":{"PersistUI":[]},"ConvertQuotes":{"StartSaving":[]},"ConvertQuoteSuccess":{"StopSaving":[]},"ApproveQuotes":{"StartSaving":[]},"SaveQuoteDocumentRequest":{"StartSaving":[]},"UpdateQuoteTab":{"PersistUI":[]},"LoadQuoteRequest":{"StartLoading":[]},"LoadQuoteFailure":{"StopLoading":[]},"SaveQuoteFailure":{"StopSaving":[]},"EmailQuoteFailure":{"StopSaving":[]},"MarkSentQuoteFailure":{"StopSaving":[]},"BulkEmailQuotesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesFailure":{"StopSaving":[]},"ArchiveQuotesFailure":{"StopSaving":[]},"DeleteQuotesFailure":{"StopSaving":[]},"DownloadQuotesSuccess":{"StopSaving":[]},"DownloadQuotesFailure":{"StopSaving":[]},"RestoreQuotesFailure":{"StopSaving":[]},"ConvertQuoteFailure":{"StopSaving":[]},"ApproveQuoteSuccess":{"StopSaving":[]},"ApproveQuoteFailure":{"StopSaving":[]},"SaveQuoteDocumentFailure":{"StopSaving":[]},"_$QuoteStateSerializer":{"StructuredSerializer":["QuoteState*"],"Serializer":["QuoteState*"]},"_$QuoteUIStateSerializer":{"StructuredSerializer":["QuoteUIState*"],"Serializer":["QuoteUIState*"]},"_$QuoteState":{"QuoteState":[]},"_$QuoteUIState":{"QuoteUIState":[]},"ViewRecurringExpenseList":{"PersistUI":[]},"ViewRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateRecurringExpense":{"PersistUI":[]},"LoadRecurringExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringExpensesRequest":{"StartLoading":[]},"LoadRecurringExpensesFailure":{"StopLoading":[]},"LoadRecurringExpensesSuccess":{"StopLoading":[]},"SaveRecurringExpenseRequest":{"StartSaving":[]},"SaveRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveRecurringExpensesRequest":{"StartSaving":[]},"ArchiveRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteRecurringExpensesRequest":{"StartSaving":[]},"DeleteRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringExpensesRequest":{"StartSaving":[]},"RestoreRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringExpenses":{"PersistUI":[]},"SortRecurringExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringExpensesByState":{"PersistUI":[]},"FilterRecurringExpensesByCustom1":{"PersistUI":[]},"FilterRecurringExpensesByCustom2":{"PersistUI":[]},"FilterRecurringExpensesByCustom3":{"PersistUI":[]},"FilterRecurringExpensesByCustom4":{"PersistUI":[]},"UpdateRecurringExpenseTab":{"PersistUI":[]},"StartRecurringExpensesRequest":{"StartSaving":[]},"StartRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringExpensesRequest":{"StartSaving":[]},"StopRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveRecurringExpenseDocumentRequest":{"StartSaving":[]},"LoadRecurringExpenseRequest":{"StartLoading":[]},"LoadRecurringExpenseFailure":{"StopLoading":[]},"SaveRecurringExpenseFailure":{"StopSaving":[]},"ArchiveRecurringExpensesFailure":{"StopSaving":[]},"DeleteRecurringExpensesFailure":{"StopSaving":[]},"RestoreRecurringExpensesFailure":{"StopSaving":[]},"StartRecurringExpensesFailure":{"StopSaving":[]},"StopRecurringExpensesFailure":{"StopSaving":[]},"SaveRecurringExpenseDocumentFailure":{"StopSaving":[]},"_$RecurringExpenseStateSerializer":{"StructuredSerializer":["RecurringExpenseState*"],"Serializer":["RecurringExpenseState*"]},"_$RecurringExpenseUIStateSerializer":{"StructuredSerializer":["RecurringExpenseUIState*"],"Serializer":["RecurringExpenseUIState*"]},"_$RecurringExpenseState":{"RecurringExpenseState":[]},"_$RecurringExpenseUIState":{"RecurringExpenseUIState":[]},"ViewRecurringInvoiceList":{"PersistUI":[]},"ViewRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoiceItem":{"PersistUI":[]},"UpdateRecurringInvoice":{"PersistUI":[]},"UpdateRecurringInvoiceClient":{"PersistUI":[]},"LoadRecurringInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringInvoicesRequest":{"StartLoading":[]},"LoadRecurringInvoicesFailure":{"StopLoading":[]},"LoadRecurringInvoicesSuccess":{"StopLoading":[]},"AddRecurringInvoiceContact":{"PersistUI":[]},"RemoveRecurringInvoiceContact":{"PersistUI":[]},"SaveRecurringInvoiceRequest":{"StartSaving":[]},"SaveRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceItem":{"PersistUI":[]},"MoveRecurringInvoiceItem":{"PersistUI":[]},"AddRecurringInvoiceItems":{"PersistUI":[]},"UpdateRecurringInvoiceItem":{"PersistUI":[]},"DeleteRecurringInvoiceItem":{"PersistUI":[]},"EmailRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"ArchiveRecurringInvoicesRequest":{"StartSaving":[]},"ArchiveRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"SendNowRecurringInvoicesRequest":{"StartSaving":[]},"SendNowRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteRecurringInvoicesRequest":{"StartSaving":[]},"DeleteRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringInvoicesRequest":{"StartSaving":[]},"RestoreRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringInvoices":{"PersistUI":[]},"SortRecurringInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringInvoicesByState":{"PersistUI":[]},"FilterRecurringInvoicesByStatus":{"PersistUI":[]},"FilterRecurringInvoicesByCustom1":{"PersistUI":[]},"FilterRecurringInvoicesByCustom2":{"PersistUI":[]},"FilterRecurringInvoicesByCustom3":{"PersistUI":[]},"FilterRecurringInvoicesByCustom4":{"PersistUI":[]},"SaveRecurringInvoiceDocumentRequest":{"StartSaving":[]},"StartRecurringInvoicesRequest":{"StartSaving":[]},"StartRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringInvoicesRequest":{"StartSaving":[]},"StopRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"UpdateRecurringInvoiceTab":{"PersistUI":[]},"LoadRecurringInvoiceRequest":{"StartLoading":[]},"LoadRecurringInvoiceFailure":{"StopLoading":[]},"SaveRecurringInvoiceFailure":{"StopSaving":[]},"ArchiveRecurringInvoicesFailure":{"StopSaving":[]},"SendNowRecurringInvoicesFailure":{"StopSaving":[]},"DeleteRecurringInvoicesFailure":{"StopSaving":[]},"RestoreRecurringInvoicesFailure":{"StopSaving":[]},"SaveRecurringInvoiceDocumentFailure":{"StopSaving":[]},"StartRecurringInvoicesFailure":{"StopSaving":[]},"StopRecurringInvoicesFailure":{"StopSaving":[]},"_$RecurringInvoiceStateSerializer":{"StructuredSerializer":["RecurringInvoiceState*"],"Serializer":["RecurringInvoiceState*"]},"_$RecurringInvoiceUIStateSerializer":{"StructuredSerializer":["RecurringInvoiceUIState*"],"Serializer":["RecurringInvoiceUIState*"]},"_$RecurringInvoiceState":{"RecurringInvoiceState":[]},"_$RecurringInvoiceUIState":{"RecurringInvoiceUIState":[]},"ViewReports":{"PersistUI":[]},"UpdateReportSettings":{"PersistUI":[]},"_$ReportsUIStateSerializer":{"StructuredSerializer":["ReportsUIState*"],"Serializer":["ReportsUIState*"]},"_$ReportsUIState":{"ReportsUIState":[]},"ViewSettings":{"PersistUI":[]},"ClearSettingsFilter":{"PersistUI":[]},"UpdateSettings":{"PersistUI":[]},"UpdateSettingsTab":{"PersistUI":[]},"UpdatedSetting":{"PersistUI":[]},"UpdateSettingsTemplate":{"PersistUI":[]},"UpdateUserSettings":{"PersistUI":[]},"UploadLogoRequest":{"StartSaving":[]},"SaveUserSettingsRequest":{"StartSaving":[]},"SaveUserSettingsSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveAuthUserRequest":{"StartSaving":[]},"SaveAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ConnecOAuthUserRequest":{"StartSaving":[]},"ConnecOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisableTwoFactorRequest":{"StartSaving":[]},"DisableTwoFactorSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"ConnecGmailUserRequest":{"StartSaving":[]},"ConnecGmailUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"FilterSettings":{"PersistUI":[]},"UploadLogoFailure":{"StopSaving":[]},"SaveUserSettingsFailure":{"StopSaving":[]},"SaveAuthUserFailure":{"StopSaving":[]},"ConnecOAuthUserFailure":{"StopSaving":[]},"DisableTwoFactorFailure":{"StopSaving":[]},"ConnecGmailUserFailure":{"StopSaving":[]},"_$StaticStateSerializer":{"StructuredSerializer":["StaticState*"],"Serializer":["StaticState*"]},"_$StaticState":{"StaticState":[]},"ViewSubscriptionList":{"PersistUI":[]},"ViewSubscription":{"PersistUI":[],"PersistPrefs":[]},"EditSubscription":{"PersistUI":[],"PersistPrefs":[]},"UpdateSubscription":{"PersistUI":[]},"LoadSubscriptionSuccess":{"StopLoading":[],"PersistData":[]},"LoadSubscriptionsFailure":{"StopLoading":[]},"LoadSubscriptionsSuccess":{"StopLoading":[]},"SaveSubscriptionRequest":{"StartSaving":[]},"SaveSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveSubscriptionsRequest":{"StartSaving":[]},"ArchiveSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteSubscriptionsRequest":{"StartSaving":[]},"DeleteSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreSubscriptionsRequest":{"StartSaving":[]},"RestoreSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"FilterSubscriptions":{"PersistUI":[]},"SortSubscriptions":{"PersistUI":[],"PersistPrefs":[]},"FilterSubscriptionsByState":{"PersistUI":[]},"FilterSubscriptionsByCustom1":{"PersistUI":[]},"FilterSubscriptionsByCustom2":{"PersistUI":[]},"FilterSubscriptionsByCustom3":{"PersistUI":[]},"FilterSubscriptionsByCustom4":{"PersistUI":[]},"UpdateSubscriptionTab":{"PersistUI":[]},"LoadSubscriptionRequest":{"StartLoading":[]},"LoadSubscriptionFailure":{"StopLoading":[]},"LoadSubscriptionsRequest":{"StartLoading":[]},"SaveSubscriptionFailure":{"StopSaving":[]},"ArchiveSubscriptionsFailure":{"StopSaving":[]},"DeleteSubscriptionsFailure":{"StopSaving":[]},"RestoreSubscriptionsFailure":{"StopSaving":[]},"_$SubscriptionStateSerializer":{"StructuredSerializer":["SubscriptionState*"],"Serializer":["SubscriptionState*"]},"_$SubscriptionUIStateSerializer":{"StructuredSerializer":["SubscriptionUIState*"],"Serializer":["SubscriptionUIState*"]},"_$SubscriptionState":{"SubscriptionState":[]},"_$SubscriptionUIState":{"SubscriptionUIState":[]},"ViewTaskList":{"PersistUI":[]},"ViewTask":{"PersistUI":[],"PersistPrefs":[]},"EditTask":{"PersistUI":[],"PersistPrefs":[]},"UpdateTask":{"PersistUI":[]},"LoadTaskSuccess":{"StopLoading":[],"PersistData":[]},"EditTaskTime":{"PersistUI":[]},"AddTaskTime":{"PersistUI":[]},"UpdateTaskTime":{"PersistUI":[]},"DeleteTaskTime":{"PersistUI":[]},"LoadTasksRequest":{"StartLoading":[]},"LoadTasksFailure":{"StopLoading":[]},"LoadTasksSuccess":{"StopLoading":[]},"SaveTaskRequest":{"StartSaving":[]},"SaveTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskRequest":{"StartSaving":[]},"ArchiveTaskSuccess":{"StopSaving":[],"PersistData":[]},"StartTasksRequest":{"StartSaving":[]},"StartTasksSuccess":{"StopSaving":[],"PersistData":[]},"StopTasksRequest":{"StartSaving":[]},"StopTasksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskRequest":{"StartSaving":[]},"DeleteTaskSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskRequest":{"StartSaving":[]},"RestoreTaskSuccess":{"StopSaving":[],"PersistData":[]},"SortTasksRequest":{"StartSaving":[]},"SortTasksSuccess":{"StopSaving":[],"PersistData":[]},"FilterTasks":{"PersistUI":[]},"SortTasks":{"PersistUI":[],"PersistPrefs":[]},"FilterTasksByState":{"PersistUI":[]},"FilterTasksByStatus":{"PersistUI":[]},"FilterTasksByCustom1":{"PersistUI":[]},"FilterTasksByCustom2":{"PersistUI":[]},"FilterTasksByCustom3":{"PersistUI":[]},"FilterTasksByCustom4":{"PersistUI":[]},"SaveTaskDocumentRequest":{"StartSaving":[]},"UpdateTaskTab":{"PersistUI":[]},"LoadTaskRequest":{"StartLoading":[]},"LoadTaskFailure":{"StopLoading":[]},"SaveTaskFailure":{"StopSaving":[]},"ArchiveTaskFailure":{"StopSaving":[]},"StartTasksFailure":{"StopSaving":[]},"StopTasksFailure":{"StopSaving":[]},"DeleteTaskFailure":{"StopSaving":[]},"RestoreTaskFailure":{"StopSaving":[]},"SortTasksFailure":{"StopSaving":[]},"SaveTaskDocumentFailure":{"StopSaving":[]},"_$TaskStateSerializer":{"StructuredSerializer":["TaskState*"],"Serializer":["TaskState*"]},"_$TaskUIStateSerializer":{"StructuredSerializer":["TaskUIState*"],"Serializer":["TaskUIState*"]},"_$TaskState":{"TaskState":[]},"_$TaskUIState":{"TaskUIState":[]},"ViewTaskStatusList":{"PersistUI":[]},"ViewTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"EditTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"UpdateTaskStatus":{"PersistUI":[]},"LoadTaskStatusSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaskStatusesFailure":{"StopLoading":[]},"LoadTaskStatusesSuccess":{"StopLoading":[]},"SaveTaskStatusRequest":{"StartSaving":[]},"SaveTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskStatusesRequest":{"StartSaving":[]},"ArchiveTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskStatusesRequest":{"StartSaving":[]},"DeleteTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskStatusesRequest":{"StartSaving":[]},"RestoreTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaskStatuses":{"PersistUI":[]},"SortTaskStatuses":{"PersistUI":[],"PersistPrefs":[]},"FilterTaskStatusesByState":{"PersistUI":[]},"FilterTaskStatusesByCustom1":{"PersistUI":[]},"FilterTaskStatusesByCustom2":{"PersistUI":[]},"FilterTaskStatusesByCustom3":{"PersistUI":[]},"FilterTaskStatusesByCustom4":{"PersistUI":[]},"LoadTaskStatusRequest":{"StartLoading":[]},"LoadTaskStatusFailure":{"StopLoading":[]},"LoadTaskStatusesRequest":{"StartLoading":[]},"SaveTaskStatusFailure":{"StopSaving":[]},"ArchiveTaskStatusesFailure":{"StopSaving":[]},"DeleteTaskStatusesFailure":{"StopSaving":[]},"RestoreTaskStatusesFailure":{"StopSaving":[]},"_$TaskStatusStateSerializer":{"StructuredSerializer":["TaskStatusState*"],"Serializer":["TaskStatusState*"]},"_$TaskStatusUIStateSerializer":{"StructuredSerializer":["TaskStatusUIState*"],"Serializer":["TaskStatusUIState*"]},"_$TaskStatusState":{"TaskStatusState":[]},"_$TaskStatusUIState":{"TaskStatusUIState":[]},"ViewTaxRateList":{"PersistUI":[]},"ViewTaxRate":{"PersistUI":[]},"EditTaxRate":{"PersistUI":[]},"UpdateTaxRate":{"PersistUI":[]},"LoadTaxRateSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaxRatesSuccess":{"StopLoading":[]},"SaveTaxRateRequest":{"StartSaving":[]},"SaveTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaxRateRequest":{"StartSaving":[]},"ArchiveTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaxRateRequest":{"StartSaving":[]},"DeleteTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaxRateRequest":{"StartSaving":[]},"RestoreTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaxRates":{"PersistUI":[]},"SortTaxRates":{"PersistUI":[],"PersistPrefs":[]},"FilterTaxRatesByState":{"PersistUI":[]},"LoadTaxRateRequest":{"StartLoading":[]},"LoadTaxRateFailure":{"StopLoading":[]},"LoadTaxRatesRequest":{"StartLoading":[]},"LoadTaxRatesFailure":{"StopLoading":[]},"SaveTaxRateFailure":{"StopSaving":[]},"ArchiveTaxRateFailure":{"StopSaving":[]},"DeleteTaxRateFailure":{"StopSaving":[]},"RestoreTaxRateFailure":{"StopSaving":[]},"_$TaxRateStateSerializer":{"StructuredSerializer":["TaxRateState*"],"Serializer":["TaxRateState*"]},"_$TaxRateUIStateSerializer":{"StructuredSerializer":["TaxRateUIState*"],"Serializer":["TaxRateUIState*"]},"_$TaxRateState":{"TaxRateState":[]},"_$TaxRateUIState":{"TaxRateUIState":[]},"ViewTokenList":{"PersistUI":[]},"ViewToken":{"PersistUI":[],"PersistPrefs":[]},"EditToken":{"PersistUI":[],"PersistPrefs":[]},"UpdateToken":{"PersistUI":[]},"LoadTokenSuccess":{"StopLoading":[],"PersistData":[]},"LoadTokensFailure":{"StopLoading":[]},"LoadTokensSuccess":{"StopLoading":[]},"SaveTokenRequest":{"StartSaving":[]},"SaveTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveTokensRequest":{"StartSaving":[]},"ArchiveTokensSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTokensRequest":{"StartSaving":[]},"DeleteTokensSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTokensRequest":{"StartSaving":[]},"RestoreTokensSuccess":{"StopSaving":[],"PersistData":[]},"FilterTokens":{"PersistUI":[]},"SortTokens":{"PersistUI":[],"PersistPrefs":[]},"FilterTokensByState":{"PersistUI":[]},"FilterTokensByCustom1":{"PersistUI":[]},"FilterTokensByCustom2":{"PersistUI":[]},"FilterTokensByCustom3":{"PersistUI":[]},"FilterTokensByCustom4":{"PersistUI":[]},"LoadTokenRequest":{"StartLoading":[]},"LoadTokenFailure":{"StopLoading":[]},"LoadTokensRequest":{"StartLoading":[]},"SaveTokenFailure":{"StopSaving":[]},"ArchiveTokensFailure":{"StopSaving":[]},"DeleteTokensFailure":{"StopSaving":[]},"RestoreTokensFailure":{"StopSaving":[]},"_$TokenStateSerializer":{"StructuredSerializer":["TokenState*"],"Serializer":["TokenState*"]},"_$TokenUIStateSerializer":{"StructuredSerializer":["TokenUIState*"],"Serializer":["TokenUIState*"]},"_$TokenState":{"TokenState":[]},"_$TokenUIState":{"TokenUIState":[]},"_$ListUIStateSerializer":{"StructuredSerializer":["ListUIState*"],"Serializer":["ListUIState*"]},"_$ListUIState":{"ListUIState":[]},"_$PrefStateSerializer":{"StructuredSerializer":["PrefState*"],"Serializer":["PrefState*"]},"_$PrefStateSortFieldSerializer":{"StructuredSerializer":["PrefStateSortField*"],"Serializer":["PrefStateSortField*"]},"_$CompanyPrefStateSerializer":{"StructuredSerializer":["CompanyPrefState*"],"Serializer":["CompanyPrefState*"]},"_$AppLayoutSerializer":{"PrimitiveSerializer":["AppLayout*"],"Serializer":["AppLayout*"]},"_$ModuleLayoutSerializer":{"PrimitiveSerializer":["ModuleLayout*"],"Serializer":["ModuleLayout*"]},"_$AppSidebarModeSerializer":{"PrimitiveSerializer":["AppSidebarMode*"],"Serializer":["AppSidebarMode*"]},"_$HistoryRecordSerializer":{"StructuredSerializer":["HistoryRecord*"],"Serializer":["HistoryRecord*"]},"_$PrefState":{"PrefState":[]},"_$PrefStateSortField":{"PrefStateSortField":[]},"_$CompanyPrefState":{"CompanyPrefState":[]},"_$HistoryRecord":{"HistoryRecord":[]},"_$UIStateSerializer":{"StructuredSerializer":["UIState*"],"Serializer":["UIState*"]},"_$UIState":{"UIState":[]},"ViewUserList":{"PersistUI":[]},"ViewUser":{"PersistUI":[],"PersistPrefs":[]},"EditUser":{"PersistUI":[],"PersistPrefs":[]},"UpdateUser":{"PersistUI":[]},"LoadUserSuccess":{"StopLoading":[],"PersistData":[]},"LoadUsersSuccess":{"StopLoading":[]},"SaveUserRequest":{"StartSaving":[]},"SaveUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveUserRequest":{"StartSaving":[]},"ArchiveUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"DeleteUserRequest":{"StartSaving":[]},"DeleteUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RestoreUserRequest":{"StartSaving":[]},"RestoreUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RemoveUserRequest":{"StartSaving":[]},"RemoveUserSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteRequest":{"StartSaving":[]},"SortUsers":{"PersistUI":[],"PersistPrefs":[]},"FilterUsersByState":{"PersistUI":[]},"FilterUsersByCustom1":{"PersistUI":[]},"FilterUsersByCustom2":{"PersistUI":[]},"FilterUsersByCustom3":{"PersistUI":[]},"FilterUsersByCustom4":{"PersistUI":[]},"LoadUserRequest":{"StartLoading":[]},"LoadUserFailure":{"StopLoading":[]},"LoadUsersRequest":{"StartLoading":[]},"LoadUsersFailure":{"StopLoading":[]},"SaveUserFailure":{"StopSaving":[]},"ArchiveUserFailure":{"StopSaving":[]},"DeleteUserFailure":{"StopSaving":[]},"RestoreUserFailure":{"StopSaving":[]},"RemoveUserFailure":{"StopSaving":[]},"ResendInviteSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteFailure":{"StopSaving":[]},"_$UserStateSerializer":{"StructuredSerializer":["UserState*"],"Serializer":["UserState*"]},"_$UserUIStateSerializer":{"StructuredSerializer":["UserUIState*"],"Serializer":["UserUIState*"]},"_$UserState":{"UserState":[]},"_$UserUIState":{"UserUIState":[]},"ViewVendorList":{"PersistUI":[]},"ViewVendor":{"PersistUI":[],"PersistPrefs":[]},"EditVendor":{"PersistUI":[],"PersistPrefs":[]},"UpdateVendor":{"PersistUI":[]},"LoadVendorSuccess":{"StopLoading":[],"PersistData":[]},"LoadVendorsRequest":{"StartLoading":[]},"LoadVendorsFailure":{"StopLoading":[]},"LoadVendorsSuccess":{"StopLoading":[]},"SaveVendorRequest":{"StartSaving":[]},"SaveVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveVendorRequest":{"StartSaving":[]},"ArchiveVendorSuccess":{"StopSaving":[],"PersistData":[]},"DeleteVendorRequest":{"StartSaving":[]},"DeleteVendorSuccess":{"StopSaving":[],"PersistData":[]},"RestoreVendorRequest":{"StartSaving":[]},"RestoreVendorSuccess":{"StopSaving":[],"PersistData":[]},"EditVendorContact":{"PersistUI":[]},"AddVendorContact":{"PersistUI":[]},"UpdateVendorContact":{"PersistUI":[]},"DeleteVendorContact":{"PersistUI":[]},"FilterVendors":{"PersistUI":[]},"SortVendors":{"PersistUI":[],"PersistPrefs":[]},"FilterVendorsByState":{"PersistUI":[]},"FilterVendorsByCustom1":{"PersistUI":[]},"FilterVendorsByCustom2":{"PersistUI":[]},"FilterVendorsByCustom3":{"PersistUI":[]},"FilterVendorsByCustom4":{"PersistUI":[]},"SaveVendorDocumentRequest":{"StartSaving":[]},"UpdateVendorTab":{"PersistUI":[]},"LoadVendorRequest":{"StartLoading":[]},"LoadVendorFailure":{"StopLoading":[]},"SaveVendorFailure":{"StopSaving":[]},"ArchiveVendorFailure":{"StopSaving":[]},"DeleteVendorFailure":{"StopSaving":[]},"RestoreVendorFailure":{"StopSaving":[]},"SaveVendorDocumentFailure":{"StopSaving":[]},"_$VendorStateSerializer":{"StructuredSerializer":["VendorState*"],"Serializer":["VendorState*"]},"_$VendorUIStateSerializer":{"StructuredSerializer":["VendorUIState*"],"Serializer":["VendorUIState*"]},"_$VendorState":{"VendorState":[]},"_$VendorUIState":{"VendorUIState":[]},"ViewWebhookList":{"PersistUI":[]},"ViewWebhook":{"PersistUI":[],"PersistPrefs":[]},"EditWebhook":{"PersistUI":[],"PersistPrefs":[]},"UpdateWebhook":{"PersistUI":[]},"LoadWebhookSuccess":{"StopLoading":[],"PersistData":[]},"LoadWebhooksFailure":{"StopLoading":[]},"LoadWebhooksSuccess":{"StopLoading":[]},"SaveWebhookRequest":{"StartSaving":[]},"SaveWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveWebhooksRequest":{"StartSaving":[]},"ArchiveWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteWebhooksRequest":{"StartSaving":[]},"DeleteWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"RestoreWebhooksRequest":{"StartSaving":[]},"RestoreWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"FilterWebhooks":{"PersistUI":[]},"SortWebhooks":{"PersistUI":[],"PersistPrefs":[]},"FilterWebhooksByState":{"PersistUI":[]},"FilterWebhooksByCustom1":{"PersistUI":[]},"FilterWebhooksByCustom2":{"PersistUI":[]},"FilterWebhooksByCustom3":{"PersistUI":[]},"FilterWebhooksByCustom4":{"PersistUI":[]},"LoadWebhookRequest":{"StartLoading":[]},"LoadWebhookFailure":{"StopLoading":[]},"LoadWebhooksRequest":{"StartLoading":[]},"SaveWebhookFailure":{"StopSaving":[]},"ArchiveWebhooksFailure":{"StopSaving":[]},"DeleteWebhooksFailure":{"StopSaving":[]},"RestoreWebhooksFailure":{"StopSaving":[]},"_$WebhookStateSerializer":{"StructuredSerializer":["WebhookState*"],"Serializer":["WebhookState*"]},"_$WebhookUIStateSerializer":{"StructuredSerializer":["WebhookUIState*"],"Serializer":["WebhookUIState*"]},"_$WebhookState":{"WebhookState":[]},"_$WebhookUIState":{"WebhookUIState":[]},"FieldGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBorder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBottomBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFieldSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AppBottomBarState":{"State":["AppBottomBar*"]},"AppBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBuilderState":{"State":["AppBuilder*"]},"AppHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTitleBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlankScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTextButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChangeLayoutBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ChangeLayoutBannerState":{"State":["ChangeLayoutBanner*"]},"ConfirmEmail":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConfirmEmailBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CopyToClipboard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesktopSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesktopSessionTimeoutState":{"State":["DesktopSessionTimeout*"]},"MessageDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ErrorDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HealthCheckDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HealthCheckDialogState":{"State":["HealthCheckDialog*"]},"_HealthListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadingDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectListState":{"State":["MultiSelectList*"]},"DismissibleEntity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityActionListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntitiesListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListTileState":{"State":["EntityListTile*"]},"_EntitiesListTileState":{"State":["EntitiesListTile*"]},"EntityStatusChip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdownDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityAutocompleteListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityDropdownState":{"State":["EntityDropdown*"]},"_EntityDropdownDialogState":{"State":["EntityDropdownDialog*"]},"_AutocompleteEntity":{"SelectableEntity":[]},"EntityHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityStateLabel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilterHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormCard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoolDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormColorPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FormColorPickerState":{"State":["FormColorPicker*"]},"CustomField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldState":{"State":["CustomField*"]},"CustomSurcharges":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerState":{"State":["DatePicker*"]},"DecoratedFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecoratedFormFieldState":{"State":["DecoratedFormField*"]},"DesignPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DiscountField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DurationPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DurationPickerState":{"State":["DurationPicker*"]},"DynamicSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GrowableFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GrowableFormFieldState":{"State":["GrowableFormField*"]},"LearnMoreUrl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NotificationSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordFormFieldState":{"State":["PasswordFormField*"]},"ProjectPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SaveCancelButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerState":{"State":["TimePicker*"]},"UserPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenMeta":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HelpText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryDrawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HistoryListTileState":{"State":["HistoryListTile*"]},"HistoryDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEmailView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEmailViewState":{"State":["InvoiceEmailView*"]},"InvoiceItemListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateDropdownState":{"State":["TaxRateDropdown*"]},"TaxRateField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinkTextRelatedEntity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinkTextRelatedEntityState":{"State":["LinkTextRelatedEntity*"]},"LinkTextSpan":{"TextSpan":[],"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"ListFilter":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListFilterState":{"State":["ListFilter*"]},"ListScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActivityListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListDivider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListFilterMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FilterListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SelectedIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LiveText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LiveTextState":{"State":["LiveText*"]},"LoadingIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MainScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MenuDrawer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactUsDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuDrawerState":{"State":["MenuDrawer*"]},"_DrawerTileState":{"State":["DrawerTile*"]},"SidebarFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarFooterCollapsed":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactUsDialogState":{"State":["ContactUsDialog*"]},"MenuDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectRow":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropDownMultiSelect":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropDownMultiSelectState":{"State":["DropDownMultiSelect*"]},"PortalLinks":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableTooltip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ResponsivePadding":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReviewApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReviewAppState":{"State":["ReviewApp*"]},"ScrollableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableListViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableListViewState":{"State":["ScrollableListView*"]},"_ScrollableListViewBuilderState":{"State":["ScrollableListViewBuilder*"]},"SystemLogViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SystemLogViewerState":{"State":["SystemLogViewer*"]},"_SortArrow0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppDataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableRowInkWell0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SortArrowState0":{"State":["_SortArrow0*"]},"_NullTableColumnWidth0":{"TableColumnWidth":[]},"_NullWidget3":{"Widget":[],"DiagnosticableTree":[]},"AppDataTableSource":{"ChangeNotifier":[],"Listenable":[]},"AppPaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppPaginatedDataTableState":{"State":["AppPaginatedDataTable*"]},"EntityDataTableSource":{"ChangeNotifier":[],"Listenable":[]},"EntityList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListState":{"State":["EntityList*"]},"VariablesHelp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VariablesHelpState":{"State":["VariablesHelp*"]},"_VariableGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSessionTimeoutState":{"State":["WebSessionTimeout*"]},"WebSocketRefresh":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSocketRefreshState":{"State":["WebSocketRefresh*"]},"InitScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LockScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LoginState":{"State":["LoginView*"]},"RuledText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPdfViewState":{"State":["ClientPdfView*"]},"ClientPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditState":{"State":["ClientEdit*"]},"ClientEditBillingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditBillingAddressState":{"State":["ClientEditBillingAddress*"]},"ClientEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditContactsState":{"State":["ClientEditContacts*"]},"ContactEditDetailsState":{"State":["ContactEditDetails*"]},"ClientEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetailsState":{"State":["ClientEditDetails*"]},"ClientEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotesState":{"State":["ClientEditNotes*"]},"ClientEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditSettingsState":{"State":["ClientEditSettings*"]},"ClientEditShippingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditShippingAddressState":{"State":["ClientEditShippingAddress*"]},"ClientEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewState":{"State":["ClientView*"]},"ClientViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewActivityState":{"State":["ClientViewActivity*"]},"ClientViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewDetailsState":{"State":["ClientViewDetails*"]},"ClientViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewFullwidthState":{"State":["ClientViewFullwidth*"]},"ClientViewLedger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewLedgerState":{"State":["ClientViewLedger*"]},"ClientOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewSystemLogs":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewSystemLogsState":{"State":["ClientViewSystemLogs*"]},"ClientViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayListState":{"State":["CompanyGatewayList*"]},"CompanyGatewayListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"GatewayConfigField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FeesEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayEditState":{"State":["CompanyGatewayEdit*"]},"GatewayConfigSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GatewayConfigFieldState":{"State":["GatewayConfigField*"]},"_LimitEditorState":{"State":["LimitEditor*"]},"_FeesEditorState":{"State":["FeesEditor*"]},"CompanyGatewayEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewaySystemLog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayViewState":{"State":["CompanyGatewayView*"]},"_CompanyGatewayOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__CompanyGatewaySystemLogState":{"State":["_CompanyGatewaySystemLog*"]},"CompanyGatewayViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditEditState":{"State":["CreditEdit*"]},"CreditEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardActivity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardChartState":{"State":["DashboardChart*"]},"DashboardDateRangePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardDateRangePickerState":{"State":["DashboardDateRangePicker*"]},"_DashboardPanel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardPanels":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__DashboardPanelState":{"State":["_DashboardPanel*"]},"_InvoiceChart":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardScreen":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardScreenState":{"State":["DashboardScreen*"]},"_CustomTabBarView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSidbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardSystemLogs":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfDesignPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabIntent":{"Intent":[]},"_DesignEditState":{"State":["DesignEdit*"]},"DesignSection":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignSettingsState":{"State":["DesignSettings*"]},"_PdfDesignPreviewState":{"State":["PdfDesignPreview*"]},"HtmlDesignPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabAction":{"Action":["Intent*"],"Action.T":"Intent*"},"DesignEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignViewState":{"State":["DesignView*"]},"DesignViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentEditState":{"State":["DocumentEdit*"]},"DocumentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentViewState":{"State":["DocumentView*"]},"DocumentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseEditState":{"State":["ExpenseEdit*"]},"ExpenseEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetailsState":{"State":["ExpenseEditDetails*"]},"ExpenseEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditNotesState":{"State":["ExpenseEditNotes*"]},"ExpenseEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditSettingsState":{"State":["ExpenseEditSettings*"]},"ExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewState":{"State":["ExpenseView*"]},"ExpenseViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewScheduleState":{"State":["ExpenseViewSchedule*"]},"ExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryEditState":{"State":["ExpenseCategoryEdit*"]},"ExpenseCategoryEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryViewState":{"State":["ExpenseCategoryView*"]},"ExpenseCategoryViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupEditState":{"State":["GroupEdit*"]},"GroupEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupViewState":{"State":["GroupView*"]},"SettingsViewer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditState":{"State":["InvoiceEdit*"]},"InvoiceEditContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientContactListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorContactListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktopState":{"State":["InvoiceEditDesktop*"]},"__PdfPreviewState":{"State":["_PdfPreview*"]},"InvoiceEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDetailsState":{"State":["InvoiceEditDetails*"]},"InvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItems":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ItemEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsState":{"State":["InvoiceEditItems*"]},"ItemEditDetailsState":{"State":["ItemEditDetails*"]},"InvoiceEditItemsDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsDesktopState":{"State":["InvoiceEditItemsDesktop*"]},"TableHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotesState":{"State":["InvoiceEditNotes*"]},"InvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDF":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDFState":{"State":["InvoiceEditPDF*"]},"InvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceItemSelector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceItemSelectorState":{"State":["InvoiceItemSelector*"]},"InvoiceEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoicePdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoicePdfViewState":{"State":["InvoicePdfView*"]},"InvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewState":{"State":["InvoiceView*"]},"InvoiceViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewActivityState":{"State":["InvoiceViewActivity*"]},"_InvitationListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewHistoryState":{"State":["InvoiceViewHistory*"]},"InvoiceOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewScheduleState":{"State":["InvoiceViewSchedule*"]},"InvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentEditState":{"State":["PaymentEdit*"]},"_PaymentableEditorState":{"State":["PaymentableEditor*"]},"PaymentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentRefund":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentRefundState":{"State":["PaymentRefund*"]},"_PaymentableEditorState0":{"State":["PaymentableEditor0*"]},"PaymentRefundScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentViewState":{"State":["PaymentView*"]},"PaymentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermEditState":{"State":["PaymentTermEdit*"]},"PaymentTermEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermViewState":{"State":["PaymentTermView*"]},"PaymentTermViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductEditState":{"State":["ProductEdit*"]},"ProductEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductViewState":{"State":["ProductView*"]},"ProductViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductOverviewState":{"State":["ProductOverview*"]},"ProductViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectEditState":{"State":["ProjectEdit*"]},"ProjectEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectViewState":{"State":["ProjectView*"]},"ProjectViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectOverviewState":{"State":["ProjectOverview*"]},"ProjectViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PurchaseOrderEditState":{"State":["PurchaseOrderEdit*"]},"PurchaseOrderEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QuoteEditState":{"State":["QuoteEdit*"]},"QuoteEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuotePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RecurringInvoiceEditState":{"State":["RecurringInvoiceEdit*"]},"RecurringInvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientReportFields":{"Enum":[]},"ContactReportFields":{"Enum":[]},"CreditReportFields":{"Enum":[]},"DocumentReportFields":{"Enum":[]},"ExpenseReportFields":{"Enum":[]},"InvoiceItemReportFields":{"Enum":[]},"InvoiceReportFields":{"Enum":[]},"TaxRateReportFields0":{"Enum":[]},"PaymentReportFields":{"Enum":[]},"TaxRateReportFields":{"Enum":[]},"ProductReportFields":{"Enum":[]},"ProfitAndLossReportFields":{"Enum":[]},"PurchaseOrderReportFields":{"Enum":[]},"QuoteItemReportFields":{"Enum":[]},"QuoteReportFields":{"Enum":[]},"RecurringExpenseReportFields":{"Enum":[]},"RecurringInvoiceReportFields":{"Enum":[]},"ReportCharts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportColumnType":{"Enum":[]},"_ReportDataTableState":{"State":["ReportDataTable*"]},"TotalsDataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTableSource":{"ChangeNotifier":[],"Listenable":[]},"ReportStringValue":{"ReportElement":[]},"ReportEntityTypeValue":{"ReportElement":[]},"ReportAgeValue":{"ReportElement":[]},"ReportDurationValue":{"ReportElement":[]},"ReportIntValue":{"ReportElement":[]},"ReportNumberValue":{"ReportElement":[]},"ReportBoolValue":{"ReportElement":[]},"ReportsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskReportFields":{"Enum":[]},"AccountManagement":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountManagementState":{"State":["AccountManagement*"]},"_AccountOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagementScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPortal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPortalState":{"State":["ClientPortal*"]},"ClientPortalScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyDetailsState":{"State":["CompanyDetails*"]},"CompanyDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditCardsAndBanks":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditCardsAndBanksState":{"State":["CreditCardsAndBanks*"]},"CreditCardsAndBanksScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFields":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldsState":{"State":["CustomFields*"]},"CustomFieldsSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFormFieldState":{"State":["CustomFormField*"]},"CustomFieldsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataVisualizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DataVisualizationsState":{"State":["DataVisualizations*"]},"DataVisualizationsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DeviceSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DeviceSettingsState":{"State":["DeviceSettings*"]},"DeviceSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EmailSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmailSettingsState":{"State":["EmailSettings*"]},"EmailSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseSettingsState":{"State":["ExpenseSettings*"]},"ExpenseSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbers":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityNumberSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GeneratedNumbersState":{"State":["GeneratedNumbers*"]},"_EntityNumberSettingsState":{"State":["EntityNumberSettings*"]},"HelpPanel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileImport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileMapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImportExportState":{"State":["ImportExport*"]},"_FileImportState":{"State":["_FileImport*"]},"__FileMapperState":{"State":["_FileMapper*"]},"_FieldMapper":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExportScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceDesign":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceDesignState":{"State":["InvoiceDesign*"]},"InvoiceDesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LocalizationSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AddCompanyDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LocalizationSettingsState":{"State":["LocalizationSettings*"]},"_AddCompanyDialogState":{"State":["_AddCompanyDialog*"]},"LocalizationScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentSettingsState":{"State":["PaymentSettings*"]},"PaymentsSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductSettingsState":{"State":["ProductSettings*"]},"ProductSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsListState":{"State":["SettingsList*"]},"SettingsListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsSearch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsWizard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsWizardState":{"State":["SettingsWizard*"]},"TaskSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskSettingsState":{"State":["TaskSettings*"]},"TaskSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxSettingsState":{"State":["TaxSettings*"]},"NumberOfRatesSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndReminders":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReminderSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TemplatesAndRemindersState":{"State":["TemplatesAndReminders*"]},"_ReminderSettingsState":{"State":["ReminderSettings*"]},"EmailPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndRemindersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EnableTwoFactor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SmsVerification":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserDetailsState":{"State":["UserDetails*"]},"_EnableTwoFactorState":{"State":["_EnableTwoFactor*"]},"__SmsVerificationState":{"State":["_SmsVerification*"]},"UserDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WorkflowSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WorkflowSettingsState":{"State":["WorkflowSettings*"]},"WorkflowSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionEditState":{"State":["SubscriptionEdit*"]},"SubscriptionEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionViewState":{"State":["SubscriptionView*"]},"SubscriptionViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UpdateDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UpdateState":{"Enum":[]},"_UpdateDialogState":{"State":["UpdateDialog*"]},"TaskEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditState":{"State":["TaskEdit*"]},"_BottomBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDesktopState":{"State":["TaskEditDesktop*"]},"TaskEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDetailsState":{"State":["TaskEditDetails*"]},"TaskEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditTimes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimeEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditTimesState":{"State":["TaskEditTimes*"]},"TimeEditDetailsState":{"State":["TimeEditDetails*"]},"TaskEditTimesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanTaskCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanTaskCardState":{"State":["KanbanTaskCard*"]},"KanbanStatusCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanStatusCardState":{"State":["KanbanStatusCard*"]},"KanbanView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanViewState":{"State":["KanbanView*"]},"KanbanViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanViewBuilderState":{"State":["KanbanViewBuilder*"]},"TaskListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskTimeListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskViewState":{"State":["TaskView*"]},"TaskViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskOverviewState":{"State":["TaskOverview*"]},"TaskViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusEditState":{"State":["TaskStatusEdit*"]},"TaskStatusEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusViewState":{"State":["TaskStatusView*"]},"TaskStatusViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateEditState":{"State":["TaxRateEdit*"]},"TaxRateEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateViewState":{"State":["TaxRateView*"]},"TaxRateViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenEditState":{"State":["TokenEdit*"]},"TokenEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenViewState":{"State":["TokenView*"]},"_TokenListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserEditState":{"State":["UserEdit*"]},"_PermissionCheckbox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditState":{"State":["VendorEdit*"]},"VendorEditAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditAddressState":{"State":["VendorEditAddress*"]},"VendorEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditContactsState":{"State":["VendorEditContacts*"]},"VendorContactEditDetailsState":{"State":["VendorContactEditDetails*"]},"VendorEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetailsState":{"State":["VendorEditDetails*"]},"VendorEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotesState":{"State":["VendorEditNotes*"]},"VendorEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewState":{"State":["VendorView*"]},"VendorViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewDetailsState":{"State":["VendorViewDetails*"]},"VendorViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewFullwidthState":{"State":["VendorViewFullwidth*"]},"VendorOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookEditState":{"State":["WebhookEdit*"]},"WebhookEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookViewState":{"State":["WebhookView*"]},"TargetListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FieldConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordConfirmationState":{"State":["PasswordConfirmation*"]},"_FieldConfirmationState":{"State":["FieldConfirmation*"]},"FormatNumberType":{"Enum":[]},"AppLocalizationsDelegate":{"LocalizationsDelegate":["AppLocalization*"],"LocalizationsDelegate.T":"AppLocalization*"},"ExampleEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExampleEditorState":{"State":["ExampleEditor*"]},"EditorToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextType":{"Enum":[]},"ImageFormatToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditorToolbarState":{"State":["EditorToolbar*"]},"_ImageFormatToolbarState":{"State":["ImageFormatToolbar*"]},"_PositionedToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinkableElement":{"LinkifyElement":[]},"TextElement":{"LinkifyElement":[]},"EmailLinkifier":{"Linkifier":[]},"EmailElement":{"LinkifyElement":[]},"UrlLinkifier":{"Linkifier":[]},"UrlElement":{"LinkifyElement":[]},"Level":{"Comparable":["Level"]},"Element1":{"Node3":[]},"Text1":{"Node3":[]},"UnparsedContent":{"Node3":[]},"EmptyBlockSyntax":{"BlockSyntax":[]},"SetextHeaderSyntax":{"BlockSyntax":[]},"HeaderSyntax":{"BlockSyntax":[]},"BlockquoteSyntax":{"BlockSyntax":[]},"CodeBlockSyntax":{"BlockSyntax":[]},"FencedCodeBlockSyntax":{"BlockSyntax":[]},"HorizontalRuleSyntax":{"BlockSyntax":[]},"BlockHtmlSyntax":{"BlockSyntax":[]},"BlockTagBlockHtmlSyntax":{"BlockSyntax":[]},"OtherTagBlockHtmlSyntax":{"BlockSyntax":[]},"LongBlockHtmlSyntax":{"BlockSyntax":[]},"ListSyntax":{"BlockSyntax":[]},"UnorderedListSyntax":{"BlockSyntax":[]},"OrderedListSyntax":{"BlockSyntax":[]},"ParagraphSyntax":{"BlockSyntax":[]},"LineBreakSyntax":{"InlineSyntax":[]},"TextSyntax":{"InlineSyntax":[]},"EscapeSyntax":{"InlineSyntax":[]},"InlineHtmlSyntax":{"InlineSyntax":[]},"EmailAutolinkSyntax":{"InlineSyntax":[]},"AutolinkSyntax":{"InlineSyntax":[]},"SimpleDelimiter":{"Delimiter":[]},"DelimiterRun":{"Delimiter":[]},"TagSyntax":{"InlineSyntax":[]},"LinkSyntax":{"InlineSyntax":[]},"ImageSyntax":{"InlineSyntax":[]},"CodeSyntax":{"InlineSyntax":[]},"_MdiIconData":{"IconData":[]},"MsalJsException":{"Exception":[]},"AuthException":{"Exception":[]},"ClientAuthException":{"Exception":[]},"ClientConfigurationException":{"Exception":[]},"InteractionRequiredAuthException":{"Exception":[]},"ServerException":{"Exception":[]},"BrowserAuthException":{"Exception":[]},"BrowserConfigurationAuthException":{"Exception":[]},"FadeWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimationDirection":{"Enum":[]},"_FadeWidgetState":{"State":["FadeWidget"]},"OctoImage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OctoImageState":{"State":["OctoImage"]},"_PlaceholderType":{"Enum":[]},"OverflowViewParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"OverflowViewLayoutBehavior":{"Enum":[]},"RenderOverflowView":{"RenderBoxContainerDefaultsMixin":["RenderBox","OverflowViewParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","OverflowViewParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverflowView":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverflowViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"PathException":{"Exception":[]},"MissingPlatformDirectoryException":{"Exception":[]},"PermissionStatus0":{"Enum":[]},"PermissionWithService":{"Permission":[]},"PointerInterceptor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebPdfRaster":{"PdfRaster":[]},"PdfPreviewAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPrintAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfShareAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewController":{"InheritedNotifier":["Listenable"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"Listenable"},"PdfPreviewData":{"ChangeNotifier":[],"Listenable":[]},"PdfPreviewCustom":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewCustomState":{"State":["PdfPreviewCustom"]},"PdfPreviewPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreviewState":{"State":["PdfPreview"]},"PdfRasterImage":{"ImageProvider":["PdfRaster"],"ImageProvider.T":"PdfRaster"},"QrBitBuffer":{"ListMixin":["bool"],"List":["bool"],"EfficientLengthIterable":["bool"],"Iterable":["bool"],"ListMixin.E":"bool"},"QrByte":{"QrDatum":[]},"InputTooLongException":{"Exception":[]},"QrImageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QrImageViewState":{"State":["QrImageView"]},"_QrContentView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QrPainter":{"Listenable":[]},"FinderPatternPosition":{"Enum":[]},"QrCodeElement":{"Enum":[]},"QrEyeShape":{"Enum":[]},"QrDataModuleShape":{"Enum":[]},"QrValidationStatus":{"Enum":[]},"LoggingMiddleware":{"MiddlewareClass":["1"]},"ButtonState":{"Enum":[]},"RoundedLoadingButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RoundedLoadingButtonState":{"State":["RoundedLoadingButton"]},"DeferStream":{"Stream":["1"],"Stream.T":"1"},"_MissingCase":{"Enum":[]},"ValueStreamError":{"Error":[]},"BehaviorSubject":{"Subject":["1"],"EventSink":["1"],"Stream":["1"],"Stream.T":"1"},"Subject":{"EventSink":["1"],"Stream":["1"]},"_MultiControllerSink":{"EventSink":["1"]},"NoOpClient":{"Client0":[]},"NoOpSentrySpan":{"ISentrySpan":[]},"SentryNavigatorObserver":{"RouteObserver":["PageRoute<@>"],"NavigatorObserver":[],"RouteObserver.R":"PageRoute<@>"},"AppleLogoPainter":{"Listenable":[]},"SignInWithAppleButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SignInWithAppleButtonStyle":{"Enum":[]},"IconAlignment":{"Enum":[]},"AppleIDAuthorizationScopes":{"Enum":[]},"UnknownSignInWithAppleException":{"Exception":[]},"SignInWithAppleNotSupportedException":{"Exception":[]},"AuthorizationErrorCode":{"Enum":[]},"SignInWithAppleAuthorizationException":{"Exception":[]},"SignInWithAppleCredentialsException":{"Exception":[]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"FileSpan":[],"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"SourceSpan":[],"Comparable":["SourceSpan"]},"Injected":{"ReactiveModel":["1"],"InjectedBase":["1"],"InjectedBaseState":["1"]},"_InheritedInjected":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"StateBuilderBase":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InjectedBase":{"InjectedBaseState":["1"]},"InjectedImp":{"Injected":["1"],"ReactiveModel":["1"],"InjectedBase":["1"],"InjectedBaseState":["1"]},"ReactiveModel":{"InjectedBase":["1"],"InjectedBaseState":["1"]},"_StateBuilderBaseState":{"ExtendedState":["StateBuilderBase<1>"],"State":["StateBuilderBase<1>"]},"MyStatefulWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MyElement":{"StatefulElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ExtendedState":{"State":["1"]},"OnBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"StringScannerException":{"FormatException":[],"Exception":[]},"Document2":{"ChangeNotifier":[],"Listenable":[]},"DocumentNode":{"ChangeNotifier":[],"Listenable":[]},"DocumentComposer":{"ChangeNotifier":[],"Listenable":[]},"ComposerPreferences":{"ChangeNotifier":[],"Listenable":[]},"MutableDocument":{"Document2":[],"ChangeNotifier":[],"Listenable":[]},"LinkAttribution":{"Attribution":[]},"BlockquoteComponentBuilder":{"ComponentBuilder":[]},"BlockquoteComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"BlockquoteComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlockNode":{"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"_BoxComponentState":{"DocumentComponent":["BoxComponent"],"State":["BoxComponent"]},"SelectableBox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentMouseInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentMouseInteractorState":{"State":["DocumentMouseInteractor"]},"SelectionType":{"Enum":[]},"ScrollableDocument":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MagnifierAndToolbarController":{"ChangeNotifier":[],"Listenable":[]},"AndroidDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidDocumentTouchEditingControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AndroidDocumentTouchInteractorState":{"State":["AndroidDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"_AndroidDocumentTouchEditingControlsState":{"State":["AndroidDocumentTouchEditingControls"]},"SelectionType0":{"Enum":[]},"AndroidDocumentGestureEditingController":{"ChangeNotifier":[],"Listenable":[]},"IOSDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IosDocumentTouchEditingControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IOSDocumentTouchInteractorState":{"State":["IOSDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"FloatingCursorController":{"ChangeNotifier":[],"Listenable":[]},"_DragMode":{"Enum":[]},"_IosDocumentTouchEditingControlsState":{"State":["IosDocumentTouchEditingControls"]},"IosDocumentGestureEditingController":{"ChangeNotifier":[],"Listenable":[]},"DocumentImeInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentImeInteractorState":{"State":["DocumentImeInteractor"],"DeltaTextInputClient":[]},"KeyboardEditingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExecutionInstruction":{"Enum":[]},"DocumentKeyboardInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HorizontalRuleNode":{"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"HorizontalRuleComponentBuilder":{"ComponentBuilder":[]},"HorizontalRuleComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"HorizontalRuleComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageNode":{"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"ImageComponentBuilder":{"ComponentBuilder":[]},"ImageComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"ImageComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleColumnDocumentLayout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PresenterComponentBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Component":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleColumnDocumentLayoutState":{"State":["SingleColumnDocumentLayout"],"DocumentLayout":[]},"_PresenterComponentBuilderState":{"State":["_PresenterComponentBuilder"]},"SingleColumnLayoutCustomComponentStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnStylesheetStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnLayoutSelectionStyler":{"SingleColumnLayoutStylePhase":[]},"ListItemType":{"Enum":[]},"UnorderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OrderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListItemNode":{"TextNode":[],"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"ListItemComponentBuilder":{"ComponentBuilder":[]},"ListItemComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"ParagraphNode":{"TextNode":[],"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"ParagraphComponentBuilder":{"ComponentBuilder":[]},"ParagraphComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"SuperEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperEditorState":{"State":["SuperEditor"]},"DocumentInputSource":{"Enum":[]},"DocumentGestureMode":{"Enum":[]},"TextNode":{"DocumentNode":[],"ChangeNotifier":[],"Listenable":[]},"TextComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextNodeSelection":{"TextSelection":[],"TextRange":[]},"TextNodePosition":{"TextPosition":[]},"_TextComponentState":{"DocumentComponent":["TextComponent"],"State":["TextComponent"],"TextComposable":[]},"UnknownComponentBuilder":{"ComponentBuilder":[]},"MultiListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MultiListenableBuilderState":{"State":["MultiListenableBuilder"]},"ListenableBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlinkingCaret":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlinkingCaretState":{"State":["BlinkingCaret"]},"_CaretPainter":{"Listenable":[]},"TapSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"AndroidFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSRoundedRectangleMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSCollapsedHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewportEdge":{"Enum":[]},"MagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OuterBoxShadow":{"BoxShadow":[],"Shadow":[]},"HandleType":{"Enum":[]},"TextLayoutCaret":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextLayoutCaretState":{"State":["TextLayoutCaret"]},"CaretPainter":{"Listenable":[]},"BlinkController":{"ChangeNotifier":[],"Listenable":[]},"SuperText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperTextLayoutParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"SuperTextState":{"State":["SuperText"],"ProseTextBlock":[]},"_SuperTextLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderSuperTextLayout":{"RenderBoxContainerDefaultsMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"LayoutAwareRichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderLayoutAwareParagraph":{"RenderBoxContainerDefaultsMixin":["RenderBox","TextParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"SuperTextWithSelection":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RebuildOptimizedSuperTextWithSelection":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperTextWithSelectionState":{"ProseTextState":["SuperTextWithSelection"],"State":["SuperTextWithSelection"],"ProseTextBlock":[]},"_RebuildOptimizedSuperTextWithSelectionState":{"State":["_RebuildOptimizedSuperTextWithSelection"]},"ProseTextState":{"State":["1"],"ProseTextBlock":[]},"RenderParagraphProseTextLayout":{"TextLayout":[]},"TextLayoutSelectionHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextLayoutEmptyHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmptyHighlightPainter":{"Listenable":[]},"TextSelectionPainter":{"Listenable":[]},"ArMessages":{"LookupMessages":[]},"CaMessages":{"LookupMessages":[]},"CsMessages":{"LookupMessages":[]},"DaMessages":{"LookupMessages":[]},"DeMessages":{"LookupMessages":[]},"EnMessages":{"LookupMessages":[]},"EnShortMessages":{"LookupMessages":[]},"EsMessages":{"LookupMessages":[]},"EsShortMessages":{"LookupMessages":[]},"FaMessages":{"LookupMessages":[]},"FrMessages":{"LookupMessages":[]},"FrShortMessages":{"LookupMessages":[]},"ItMessages":{"LookupMessages":[]},"ItShortMessages":{"LookupMessages":[]},"JaMessages":{"LookupMessages":[]},"NbNoShortMessages":{"LookupMessages":[]},"NbNoMessages":{"LookupMessages":[]},"NlMessages":{"LookupMessages":[]},"NlShortMessages":{"LookupMessages":[]},"PlMessages":{"LookupMessages":[]},"PtBrMessages":{"LookupMessages":[]},"PtBrShortMessages":{"LookupMessages":[]},"RoMessages":{"LookupMessages":[]},"RoShortMessages":{"LookupMessages":[]},"RuMessages":{"LookupMessages":[]},"RuShortMessages":{"LookupMessages":[]},"SvMessages":{"LookupMessages":[]},"SvShortMessages":{"LookupMessages":[]},"ThMessages":{"LookupMessages":[]},"ThShortMessages":{"LookupMessages":[]},"ZhMessages":{"LookupMessages":[]},"BoxValueConstraints":{"BoxConstraints":[]},"ValueLayoutBuilder":{"ConstrainedLayoutBuilder":["BoxValueConstraints<1>"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"_RenderValueLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxValueConstraints<1>","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"Version":{"Comparable":["Version"]},"Directory0":{"FileSystemEntity0":[],"Directory":[],"FileSystemEntity":[]},"File1":{"FileSystemEntity0":[],"File0":[],"FileSystemEntity":[]},"FileSystemEntity0":{"FileSystemEntity":[]},"CupertinoUserInterfaceLevel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialBannerClosedReason":{"Enum":[]},"MaterialBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TooltipVisibilityScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinkViewController":{"PlatformViewController":[]}}')); A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"SkiaObject":1,"ManagedSkiaObject":1,"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"NativeTypedArray":1,"EventSink":1,"MultiStreamController":1,"StreamView":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_DelayedEvent":1,"_PendingEvents":1,"IterableBase":1,"ListBase":1,"MapBase":2,"UnmodifiableMapBase":2,"SetBase":1,"_UnmodifiableSetMixin":1,"_SplayTreeNode":2,"_SplayTree":2,"_ListBase_Object_ListMixin":1,"_SetBase_Object_SetMixin":1,"_SplayTreeMap__SplayTree_MapMixin":2,"_SplayTreeSet__SplayTree_IterableMixin":1,"_SplayTreeSet__SplayTree_IterableMixin_SetMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"__SetBase_Object_SetMixin":1,"__UnmodifiableSet__SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":1,"Comparable":1,"BidirectionalIterator":1,"Iterator":1,"_JsArray_JsObject_ListMixin":1,"Serializer":1,"BaseBarRendererConfig":1,"BaseRenderSpec":1,"Scale":1,"Extents":1,"TypedKey":1,"_BaseChartState_State_TickerProviderStateMixin":1,"CartesianChart0":1,"AnimationWithParentMixin":1,"CompoundAnimation":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin":1,"ParametricCurve":1,"__AnimatedEvaluation_Animation_AnimationWithParentMixin":1,"__DropdownButtonState_State_WidgetsBindingObserver":1,"MaterialStateMixin":1,"_MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin":1,"__RadioState_State_TickerProviderStateMixin":1,"__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin":1,"ContainerBoxParentData":1,"_ContainerBoxParentData_BoxParentData_ContainerParentDataMixin":1,"ContainerParentDataMixin":1,"RenderProxyBoxMixin":1,"RenderAnimatedOpacityMixin":1,"_RenderCustomClip":1,"_RenderPhysicalModelBase":1,"RenderViewportBase":1,"AutomaticKeepAliveClientMixin":1,"_FormFieldState_State_RestorationMixin":1,"ImplicitlyAnimatedWidgetState":1,"AnimatedWidgetBaseState":1,"_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin":1,"Page":1,"TransitionDelegate":1,"PageStorageKey":1,"PageRoute":1,"RestorableProperty":1,"RestorationMixin":1,"RestorableValue":1,"_RestorablePrimitiveValue":1,"RestorableListenable":1,"RestorableChangeNotifier":1,"OverlayRoute":1,"LocalHistoryRoute":1,"PopupRoute":1,"RawDialogRoute":1,"_ModalRoute_TransitionRoute_LocalHistoryRoute":1,"_RawScrollbarState_State_TickerProviderStateMixin":1,"SingleTickerProviderStateMixin":1,"TickerProviderStateMixin":1,"ForwardingSink":2,"_ProseTextState_State_ProseTextBlock":1,"__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder":1}')); var string$ = { x10__0__: "\x10@\x100@@\xa0\x80 0P`pPP\xb1\x10@\x100@@\xa0\x80 0P`pPP\xb0\x11@\x100@@\xa0\x80 0P`pPP\xb0\x10@\x100@@\xa0\x80 1P`pPP\xb0\x10A\x101AA\xa1\x81 1QaqQQ\xb0\x10@\x100@@\xa0\x80 1Q`pPP\xb0\x10@\x100@@\xa0\x80 1QapQP\xb0\x10@\x100@@\xa0\x80 1PaqQQ\xb0\x10\xe0\x100@@\xa0\x80 1P`pPP\xb0\xb1\xb1\xb1\xb1\x91\xb1\xc1\x81\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\x10@\x100@@\xd0\x80 1P`pPP\xb0\x11A\x111AA\xa1\x81!1QaqQQ\xb1\x10@\x100@@\x90\x80 1P`pPP\xb0", x200_000: " 0\x10000\xa0\x80\x10@P`p`p\xb1 0\x10000\xa0\x80\x10@P`p`p\xb0 0\x10000\xa0\x80\x11@P`p`p\xb0 1\x10011\xa0\x80\x10@P`p`p\xb0 1\x10111\xa1\x81\x10AQaqaq\xb0 1\x10011\xa0\x80\x10@Qapaq\xb0 1\x10011\xa0\x80\x10@Paq`p\xb0 1\x10011\xa0\x80\x10@P`q`p\xb0 \x91\x100\x811\xa0\x80\x10@P`p`p\xb0 1\x10011\xa0\x81\x10@P`p`p\xb0 1\x100111\x80\x10@P`p`p\xb0!1\x11111\xa1\x81\x11AQaqaq\xb1", x20must_: " must not be greater than the number of characters in the file, ", x22_____: '""""""""""""""""DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""3333s3#7333333339433333333333333CDDDDDDDDDDDDDDDDDDDDDDC433DDDDD4DDDDDDDDDDDDDDDDDD3CU33333333333333333333333333334T5333333333333333333333333333CCD3D33CD533333333333333333333333TEDTET53U5UE3333C33333333333333333333333333333CETUTDT5333333333333333333333333SUUUUUEUDDDDD43333433333333333333333333ET533E3333SDD3U3U4333343333C4333333333333CSD33343333333433333333333333333SUUUEDDDTE4333SDDSUSU\x94333343333C43333333333333333s333333333337333333333333wwwww73sw33sww7swwwwwss33373733s33333w33333\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xba\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xcb\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xec\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee>33333\xb3\xbb\xbb\xbb\xbb\xbb\xbb\xbb;3\xc3\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc334343C33333333333SET333333333333333EDTETD433333333CD33333333333333CD33333CDD4333333333333333333333333CDTDDDCTE43C4CD3C333333333333333D3C33333\x99\x99\x9933333DDDDD42333333333333333333CDDD4333333333333333333333333DDDD433334333C53333333333333333333333C33TEDCSUUU433333333S533333333333333333333333333333CD4DDDDD3D5333333333333333333333333333CSEUCUSE4333D33333C43333333333333CDDD9DDD3DCD433333333CDCDDDDDDEDDD33433C3E433#""""\x82" """"""""2333333333333333CDUUDU53SEUUUD43SDD3U3U4333C43333C43333333333333SE43CD33333333DD33333CDDDDDDDDDD3333333343333333B!233333333333#"""333333s3CD533333333333333333333333333CESEU3333333333333333333DDDD433333CD2333333333333333333333333""""23333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDD33333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333SUDDDDUDT43333333333343333333333333333333333333333333333333333TEDDTTEETD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CUDD3UUDE43333333333333D33333333333333333333333333333333333333333UEDDDTEE43333333333333333333333333333333333333333333333333333CEUDDDE33333333333333333333333333333333333333333333333333CDUDDEDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333D#"2333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUUUUUUU333CD4333333333333333333333333333333333333333333333333333333""""""33EDDCTSE3333333333D33333333333DDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDDDDDDDCDDDDDDDD3DDD4DCDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CD4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333s73333s33333333333""""""""3333333373s333333333333333333333333333333CTDDDTU5D4DD333C433333D33333333333333DU433333333333333333333DDDUDUD3333S3333333333333333334333333333333s733333s33333333333CD4DDDD4D4DD4333333333sww73333333w3333333333sw3333s33333337333333sw333333333s733333333333333333UTEUS433333333C433333333333333C433333333333334443SUE4333333333333CDDDDDDDD4333333DDDDDT533333\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa3SDDDDUUT5DDD43333C43333333333333333C33333333333EEDDDCC3DDDDUUUDDDDD3T5333333333333333333333333333CSDDD433E533333333333333333333333333DDDDDDD4333333333333333333333333333CD53333333333333333333333UEDTE4\x933333333\x933333333333333333333333333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT5\x9933CD433333333333333333333333333333333333333333333333UEDUTD33343333333333333333333333333333333333333333333333333333333333333333333333333333333CUEDDD43333333333DU333333333333333333333333333C4TTU5S5SU3333C33333U3DDD43DD4333333333333333333333333333333333333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTTU43333333333333333333333333333DDD733333s373ss33w7733333ww733333333333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333333333333333333333333333333333333333333333333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7wwwwwwswwwwwwwwwwwwwwwwwwwww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffff6wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDDDD33333333DDDDDDDDDDDDDDDD43333333DC44333333333333333333333333333SUDDDDTD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333UED4CTUE3S33333333333333DDDDD33333333333333333333DDD\x95DD333343333DDDUD43333333333333333333\x93\x99\x99IDDDDDDE4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD33334333333C33333333333DD4DDDDDDD43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333TD43EDD""""DDDD3DDD433333333333333CD43333333333333333333333333333333333333333333333333333333333333333333333333CD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333C33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333433333333333333333333333333333333333333333333333333333333333333333333333333DD4333333333333333333333333333333333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DU333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD333333333333333333333333333333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDC433DD33333333333333333333D43C3333333333333333333333333333333333333333333333333333333333333333333333333333333333C4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334EDDDD3\x03', x24firstda: "$firstRow\u2013$lastRow dari kira-kira $rowCount", x24firstde: "$firstRow\u2013$lastRow de aproximadamente $rowCount", x24firstn: "$firstRow\u2013$lastRow ng humigit kumulang $rowCount", x24remai: "$remainingCount na character ang natitira", x27_has_: "' has been assigned during initialization.", x3000000: "00000008A0009!B000a!C000b000cD000d!E000e000vA000w!F000x!G000y!H000z!I0010!J0011!K0012!I0013!H0014!L0015!M0016!I0017!J0018!N0019!O001a!N001b!P001c001lQ001m001nN001o001qI001r!G001s002iI002j!L002k!J002l!M002m003eI003f!L003g!B003h!R003i!I003j003oA003p!D003q004fA004g!S004h!L004i!K004j004lJ004m004qI004r!H004s!I004t!B004u004vI004w!K004x!J004y004zI0050!T00510056I0057!H0058005aI005b!L005c00jrI00js!T00jt00jvI00jw!T00jx00keI00kf!T00kg00lbI00lc00niA00nj!S00nk00nvA00nw00o2S00o300ofA00og00otI00ou!N00ov00w2I00w300w9A00wa013cI013d!N013e!B013h013iI013j!J013l014tA014u!B014v!A014w!I014x014yA014z!I01500151A0152!G0153!A015c0162U0167016aU016b016wI016x016zK01700171N01720173I0174017eA017f!G017g!A017i017jG017k018qI018r019bA019c019lQ019m!K019n019oQ019p019rI019s!A019t01cjI01ck!G01cl!I01cm01csA01ct01cuI01cv01d0A01d101d2I01d301d4A01d5!I01d601d9A01da01dbI01dc01dlQ01dm01e8I01e9!A01ea01f3I01f401fuA01fx01idI01ie01ioA01ip!I01j401jdQ01je01kaI01kb01kjA01kk01knI01ko!N01kp!G01kq!I01kt!A01ku01kvJ01kw01lhI01li01llA01lm!I01ln01lvA01lw!I01lx01lzA01m0!I01m101m5A01m801ncI01nd01nfA01ni01qfI01qr01r5A01r6!I01r701s3A01s401tlI01tm01toA01tp!I01tq01u7A01u8!I01u901ufA01ug01upI01uq01urA01us01utB01uu01v3Q01v401vkI01vl01vnA01vp01x5I01x8!A01x9!I01xa01xgA01xj01xkA01xn01xpA01xq!I01xz!A01y401y9I01ya01ybA01ye01ynQ01yo01ypI01yq01yrK01ys01ywI01yx!K01yy!I01yz!J01z001z1I01z2!A01z501z7A01z9020pI020s!A020u020yA02130214A02170219A021d!A021l021qI021y0227Q02280229A022a022cI022d!A022e!I022p022rA022t0249I024c!A024d!I024e024lA024n024pA024r024tA024w025dI025e025fA025i025rQ025s!I025t!J0261!I02620267A0269026bA026d027tI027w!A027x!I027y0284A02870288A028b028dA028l028nA028s028xI028y028zA0292029bQ029c029jI029u!A029v02bdI02bi02bmA02bq02bsA02bu02bxA02c0!I02c7!A02cm02cvQ02cw02d4I02d5!J02d6!I02dc02dgA02dh02f1I02f202f8A02fa02fcA02fe02fhA02fp02fqA02fs02g1I02g202g3A02g602gfQ02gn!T02go02gwI02gx02gzA02h0!T02h102ihI02ik!A02il!I02im02isA02iu02iwA02iy02j1A02j902jaA02ji02jlI02jm02jnA02jq02jzQ02k102k2I02kg02kjA02kk02m2I02m302m4A02m5!I02m602mcA02me02mgA02mi02mlA02mm02muI02mv!A02mw02n5I02n602n7A02na02njQ02nk02nsI02nt!K02nu02nzI02o102o3A02o502pyI02q2!A02q702qcA02qe!A02qg02qnA02qu02r3Q02r602r7A02r802t6I02tb!J02tc02trI02ts02u1Q02u202u3B02v502x9I02xc02xlQ02xo02yoI02yp02ysT02yt!I02yu02yvT02yw!S02yx02yyT02yz!B02z0!S02z102z5G02z6!S02z7!I02z8!G02z902zbI02zc02zdA02ze02zjI02zk02ztQ02zu0303I0304!B0305!A0306!I0307!A0308!I0309!A030a!L030b!R030c!L030d!R030e030fA030g031oI031t0326A0327!B0328032cA032d!B032e032fA032g032kI032l032vA032x033wA033y033zB03400345I0346!A0347034fI034g034hT034i!B034j!T034k034oI034p034qS035s037jI037k037tQ037u037vB037w039rI039s03a1Q03a203cvI03cw03fjV03fk03hjW03hk03jzX03k003tmI03tp03trA03ts!I03tt!B03tu03y5I03y8!B03y904fzI04g0!B04g104gqI04gr!L04gs!R04gw04iyI04iz04j1B04j204k1I04k204k4A04kg04kxI04ky04l0A04l104l2B04lc04ltI04lu04lvA04m804moI04mq04mrA04n404pfI04pg04phB04pi!Y04pj!I04pk!B04pl!I04pm!B04pn!J04po04ppI04ps04q1Q04q804qpI04qq04qrG04qs04qtB04qu!T04qv!I04qw04qxG04qy!I04qz04r1A04r2!S04r404rdQ04rk04ucI04ud04ueA04uf04vcI04vd!A04ve04ymI04yo04yzA04z404zfA04zk!I04zo04zpG04zq04zzQ0500053dI053k053tQ053u055iI055j055nA055q058cI058f!A058g058pQ058w0595Q059c059pI059s05a8A05c005c4A05c505dfI05dg05dwA05dx05e3I05e805ehQ05ei05ejB05ek!I05el05eoB05ep05eyI05ez05f7A05f805fgI05fk05fmA05fn05ggI05gh05gtA05gu05gvI05gw05h5Q05h605idI05ie05irA05j005k3I05k405knA05kr05kvB05kw05l5Q05l905lbI05lc05llQ05lm05mlI05mm05mnB05mo05onI05ow05oyA05oz!I05p005pkA05pl05poI05pp!A05pq05pvI05pw!A05px05pyI05pz05q1A05q205vjI05vk05x5A05x705xbA05xc06bgI06bh!T06bi!I06bk06bqB06br!S06bs06buB06bv!Z06bw!A06bx!a06by06bzA06c0!B06c1!S06c206c3B06c4!b06c506c7I06c806c9H06ca!L06cb06cdH06ce!L06cf!H06cg06cjI06ck06cmc06cn!B06co06cpD06cq06cuA06cv!S06cw06d3K06d4!I06d506d6H06d7!I06d806d9Y06da06dfI06dg!N06dh!L06di!R06dj06dlY06dm06dxI06dy!B06dz!I06e006e3B06e4!I06e506e7B06e8!d06e906ecI06ee06enA06eo06f0I06f1!L06f2!R06f306fgI06fh!L06fi!R06fk06fwI06g006g6J06g7!K06g806glJ06gm!K06gn06gqJ06gr!K06gs06gtJ06gu!K06gv06hbJ06hc06i8A06io06iqI06ir!K06is06iwI06ix!K06iy06j9I06ja!J06jb06q9I06qa06qbJ06qc06weI06wf!c06wg06x3I06x4!L06x5!R06x6!L06x7!R06x806xlI06xm06xne06xo06y0I06y1!L06y2!R06y3073jI073k073ne073o07i7I07i807ibe07ic07irI07is07ite07iu07ivI07iw!e07ix!I07iy07j0e07j1!f07j207j3e07j407jsI07jt07jve07jw07l3I07l4!e07l507lqI07lr!e07ls07ngI07nh07nse07nt07nwI07nx!e07ny!I07nz07o1e07o2!I07o307o4e07o507o7I07o807o9e07oa07obI07oc!e07od07oeI07of07ohe07oi07opI07oq!e07or07owI07ox07p1e07p2!I07p307p4e07p5!f07p6!e07p707p8I07p907pge07ph07pjI07pk07ple07pm07ppf07pq07ruI07rv07s0H07s1!I07s207s3G07s4!e07s507s7I07s8!L07s9!R07sa!L07sb!R07sc!L07sd!R07se!L07sf!R07sg!L07sh!R07si!L07sj!R07sk!L07sl!R07sm07usI07ut!L07uu!R07uv07vpI07vq!L07vr!R07vs!L07vt!R07vu!L07vv!R07vw!L07vx!R07vy!L07vz!R07w00876I0877!L0878!R0879!L087a!R087b!L087c!R087d!L087e!R087f!L087g!R087h!L087i!R087j!L087k!R087l!L087m!R087n!L087o!R087p!L087q!R087r!L087s!R087t089jI089k!L089l!R089m!L089n!R089o08ajI08ak!L08al!R08am08viI08vj08vlA08vm08vnI08vt!G08vu08vwB08vx!I08vy!G08vz!B08w008z3I08z4!B08zj!A08zk0926I09280933A0934093hH093i093pB093q!I093r!B093s!L093t!B093u093vI093w093xH093y093zI09400941H0942!L0943!R0944!L0945!R0946!L0947!R0948!L0949!R094a094dB094e!G094f!I094g094hB094i!I094j094kB094l094pI094q094rb094s094uB094v!I094w094xB094y!L094z0956B0957!I0958!B0959!I095a095bB095c095eI096o097de097f099ve09a809g5e09gw09h7e09hc!B09hd09heR09hf09hge09hh!Y09hi09hje09hk!L09hl!R09hm!L09hn!R09ho!L09hp!R09hq!L09hr!R09hs!L09ht!R09hu09hve09hw!L09hx!R09hy!L09hz!R09i0!L09i1!R09i2!L09i3!R09i4!Y09i5!L09i609i7R09i809ihe09ii09inA09io09ise09it!A09iu09iye09iz09j0Y09j109j3e09j5!Y09j6!e09j7!Y09j8!e09j9!Y09ja!e09jb!Y09jc!e09jd!Y09je09k2e09k3!Y09k409kye09kz!Y09l0!e09l1!Y09l2!e09l3!Y09l409l9e09la!Y09lb09lge09lh09liY09ll09lmA09ln09lqY09lr!e09ls09ltY09lu!e09lv!Y09lw!e09lx!Y09ly!e09lz!Y09m0!e09m1!Y09m209mqe09mr!Y09ms09nme09nn!Y09no!e09np!Y09nq!e09nr!Y09ns09nxe09ny!Y09nz09o4e09o509o6Y09o709oae09ob09oeY09of!e09ol09pre09pt09see09sg09ure09v409vjY09vk09wee09wg09xje09xk09xrI09xs0fcve0fcw0fenI0feo0vmce0vmd!Y0vme0wi4e0wi80wjqe0wk00wl9I0wla0wlbB0wlc0wssI0wst!B0wsu!G0wsv!B0wsw0wtbI0wtc0wtlQ0wtm0wviI0wvj0wvmA0wvn!I0wvo0wvxA0wvy0wwtI0wwu0wwvA0www0wz3I0wz40wz5A0wz6!I0wz70wzbB0wzk0x6pI0x6q!A0x6r0x6tI0x6u!A0x6v0x6yI0x6z!A0x700x7mI0x7n0x7rA0x7s0x7vI0x7w!A0x800x87I0x88!K0x890x9vI0x9w0x9xT0x9y0x9zG0xa80xa9A0xaa0xbnI0xbo0xc5A0xce0xcfB0xcg0xcpQ0xcw0xddA0xde0xdnI0xdo!T0xdp0xdqI0xdr!A0xds0xe1Q0xe20xetI0xeu0xf1A0xf20xf3B0xf40xfqI0xfr0xg3A0xgf!I0xgg0xh8V0xhc0xhfA0xhg0xiqI0xir0xj4A0xj50xjaI0xjb0xjdB0xje0xjjI0xjk0xjtQ0xjy0xkfI0xkg0xkpQ0xkq0xm0I0xm10xmeA0xmo0xmqI0xmr!A0xms0xmzI0xn00xn1A0xn40xndQ0xng!I0xnh0xnjB0xnk0xreI0xrf0xrjA0xrk0xrlB0xrm0xroI0xrp0xrqA0xs10xyaI0xyb0xyiA0xyj!B0xyk0xylA0xyo0xyxQ0xz4!g0xz50xzvh0xzw!g0xzx0y0nh0y0o!g0y0p0y1fh0y1g!g0y1h0y27h0y28!g0y290y2zh0y30!g0y310y3rh0y3s!g0y3t0y4jh0y4k!g0y4l0y5bh0y5c!g0y5d0y63h0y64!g0y650y6vh0y6w!g0y6x0y7nh0y7o!g0y7p0y8fh0y8g!g0y8h0y97h0y98!g0y990y9zh0ya0!g0ya10yarh0yas!g0yat0ybjh0ybk!g0ybl0ycbh0ycc!g0ycd0yd3h0yd4!g0yd50ydvh0ydw!g0ydx0yenh0yeo!g0yep0yffh0yfg!g0yfh0yg7h0yg8!g0yg90ygzh0yh0!g0yh10yhrh0yhs!g0yht0yijh0yik!g0yil0yjbh0yjc!g0yjd0yk3h0yk4!g0yk50ykvh0ykw!g0ykx0ylnh0ylo!g0ylp0ymfh0ymg!g0ymh0yn7h0yn8!g0yn90ynzh0yo0!g0yo10yorh0yos!g0yot0ypjh0ypk!g0ypl0yqbh0yqc!g0yqd0yr3h0yr4!g0yr50yrvh0yrw!g0yrx0ysnh0yso!g0ysp0ytfh0ytg!g0yth0yu7h0yu8!g0yu90yuzh0yv0!g0yv10yvrh0yvs!g0yvt0ywjh0ywk!g0ywl0yxbh0yxc!g0yxd0yy3h0yy4!g0yy50yyvh0yyw!g0yyx0yznh0yzo!g0yzp0z0fh0z0g!g0z0h0z17h0z18!g0z190z1zh0z20!g0z210z2rh0z2s!g0z2t0z3jh0z3k!g0z3l0z4bh0z4c!g0z4d0z53h0z54!g0z550z5vh0z5w!g0z5x0z6nh0z6o!g0z6p0z7fh0z7g!g0z7h0z87h0z88!g0z890z8zh0z90!g0z910z9rh0z9s!g0z9t0zajh0zak!g0zal0zbbh0zbc!g0zbd0zc3h0zc4!g0zc50zcvh0zcw!g0zcx0zdnh0zdo!g0zdp0zefh0zeg!g0zeh0zf7h0zf8!g0zf90zfzh0zg0!g0zg10zgrh0zgs!g0zgt0zhjh0zhk!g0zhl0zibh0zic!g0zid0zj3h0zj4!g0zj50zjvh0zjw!g0zjx0zknh0zko!g0zkp0zlfh0zlg!g0zlh0zm7h0zm8!g0zm90zmzh0zn0!g0zn10znrh0zns!g0znt0zojh0zok!g0zol0zpbh0zpc!g0zpd0zq3h0zq4!g0zq50zqvh0zqw!g0zqx0zrnh0zro!g0zrp0zsfh0zsg!g0zsh0zt7h0zt8!g0zt90ztzh0zu0!g0zu10zurh0zus!g0zut0zvjh0zvk!g0zvl0zwbh0zwc!g0zwd0zx3h0zx4!g0zx50zxvh0zxw!g0zxx0zynh0zyo!g0zyp0zzfh0zzg!g0zzh1007h1008!g1009100zh1010!g1011101rh101s!g101t102jh102k!g102l103bh103c!g103d1043h1044!g1045104vh104w!g104x105nh105o!g105p106fh106g!g106h1077h1078!g1079107zh1080!g1081108rh108s!g108t109jh109k!g109l10abh10ac!g10ad10b3h10b4!g10b510bvh10bw!g10bx10cnh10co!g10cp10dfh10dg!g10dh10e7h10e8!g10e910ezh10f0!g10f110frh10fs!g10ft10gjh10gk!g10gl10hbh10hc!g10hd10i3h10i4!g10i510ivh10iw!g10ix10jnh10jo!g10jp10kfh10kg!g10kh10l7h10l8!g10l910lzh10m0!g10m110mrh10ms!g10mt10njh10nk!g10nl10obh10oc!g10od10p3h10p4!g10p510pvh10pw!g10px10qnh10qo!g10qp10rfh10rg!g10rh10s7h10s8!g10s910szh10t0!g10t110trh10ts!g10tt10ujh10uk!g10ul10vbh10vc!g10vd10w3h10w4!g10w510wvh10ww!g10wx10xnh10xo!g10xp10yfh10yg!g10yh10z7h10z8!g10z910zzh1100!g1101110rh110s!g110t111jh111k!g111l112bh112c!g112d1133h1134!g1135113vh113w!g113x114nh114o!g114p115fh115g!g115h1167h1168!g1169116zh1170!g1171117rh117s!g117t118jh118k!g118l119bh119c!g119d11a3h11a4!g11a511avh11aw!g11ax11bnh11bo!g11bp11cfh11cg!g11ch11d7h11d8!g11d911dzh11e0!g11e111erh11es!g11et11fjh11fk!g11fl11gbh11gc!g11gd11h3h11h4!g11h511hvh11hw!g11hx11inh11io!g11ip11jfh11jg!g11jh11k7h11k8!g11k911kzh11l0!g11l111lrh11ls!g11lt11mjh11mk!g11ml11nbh11nc!g11nd11o3h11o4!g11o511ovh11ow!g11ox11pnh11po!g11pp11qfh11qg!g11qh11r7h11r8!g11r911rzh11s0!g11s111srh11ss!g11st11tjh11tk!g11tl11ubh11uc!g11ud11v3h11v4!g11v511vvh11vw!g11vx11wnh11wo!g11wp11xfh11xg!g11xh11y7h11y8!g11y911yzh11z0!g11z111zrh11zs!g11zt120jh120k!g120l121bh121c!g121d1223h1224!g1225122vh122w!g122x123nh123o!g123p124fh124g!g124h1257h1258!g1259125zh1260!g1261126rh126s!g126t127jh127k!g127l128bh128c!g128d1293h1294!g1295129vh129w!g129x12anh12ao!g12ap12bfh12bg!g12bh12c7h12c8!g12c912czh12d0!g12d112drh12ds!g12dt12ejh12ek!g12el12fbh12fc!g12fd12g3h12g4!g12g512gvh12gw!g12gx12hnh12ho!g12hp12ifh12ig!g12ih12j7h12j8!g12j912jzh12k0!g12k112krh12ks!g12kt12ljh12lk!g12ll12mbh12mc!g12md12n3h12n4!g12n512nvh12nw!g12nx12onh12oo!g12op12pfh12pg!g12ph12q7h12q8!g12q912qzh12r0!g12r112rrh12rs!g12rt12sjh12sk!g12sl12tbh12tc!g12td12u3h12u4!g12u512uvh12uw!g12ux12vnh12vo!g12vp12wfh12wg!g12wh12x7h12x8!g12x912xzh12y0!g12y112yrh12ys!g12yt12zjh12zk!g12zl130bh130c!g130d1313h1314!g1315131vh131w!g131x132nh132o!g132p133fh133g!g133h1347h1348!g1349134zh1350!g1351135rh135s!g135t136jh136k!g136l137bh137c!g137d1383h1384!g1385138vh138w!g138x139nh139o!g139p13afh13ag!g13ah13b7h13b8!g13b913bzh13c0!g13c113crh13cs!g13ct13djh13dk!g13dl13ebh13ec!g13ed13f3h13f4!g13f513fvh13fw!g13fx13gnh13go!g13gp13hfh13hg!g13hh13i7h13i8!g13i913izh13j0!g13j113jrh13js!g13jt13kjh13kk!g13kl13lbh13lc!g13ld13m3h13m4!g13m513mvh13mw!g13mx13nnh13no!g13np13ofh13og!g13oh13p7h13p8!g13p913pzh13q0!g13q113qrh13qs!g13qt13rjh13rk!g13rl13sbh13sc!g13sd13t3h13t4!g13t513tvh13tw!g13tx13unh13uo!g13up13vfh13vg!g13vh13w7h13w8!g13w913wzh13x0!g13x113xrh13xs!g13xt13yjh13yk!g13yl13zbh13zc!g13zd1403h1404!g1405140vh140w!g140x141nh141o!g141p142fh142g!g142h1437h1438!g1439143zh1440!g1441144rh144s!g144t145jh145k!g145l146bh146c!g146d1473h1474!g1475147vh147w!g147x148nh148o!g148p149fh149g!g149h14a7h14a8!g14a914azh14b0!g14b114brh14bs!g14bt14cjh14ck!g14cl14dbh14dc!g14dd14e3h14e4!g14e514evh14ew!g14ex14fnh14fo!g14fp14gfh14gg!g14gh14h7h14h8!g14h914hzh14i0!g14i114irh14is!g14it14jjh14jk!g14jl14kbh14kc!g14kd14l3h14l4!g14l514lvh14lw!g14lx14mnh14mo!g14mp14nfh14ng!g14nh14o7h14o8!g14o914ozh14p0!g14p114prh14ps!g14pt14qjh14qk!g14ql14rbh14rc!g14rd14s3h14s4!g14s514svh14sw!g14sx14tnh14to!g14tp14ufh14ug!g14uh14v7h14v8!g14v914vzh14w0!g14w114wrh14ws!g14wt14xjh14xk!g14xl14ybh14yc!g14yd14z3h14z4!g14z514zvh14zw!g14zx150nh150o!g150p151fh151g!g151h1527h1528!g1529152zh1530!g1531153rh153s!g153t154jh154k!g154l155bh155c!g155d1563h1564!g1565156vh156w!g156x157nh157o!g157p158fh158g!g158h1597h1598!g1599159zh15a0!g15a115arh15as!g15at15bjh15bk!g15bl15cbh15cc!g15cd15d3h15d4!g15d515dvh15dw!g15dx15enh15eo!g15ep15ffh15fg!g15fh15g7h15g8!g15g915gzh15h0!g15h115hrh15hs!g15ht15ijh15ik!g15il15jbh15jc!g15jd15k3h15k4!g15k515kvh15kw!g15kx15lnh15lo!g15lp15mfh15mg!g15mh15n7h15n8!g15n915nzh15o0!g15o115orh15os!g15ot15pjh15pk!g15pl15qbh15qc!g15qd15r3h15r4!g15r515rvh15rw!g15rx15snh15so!g15sp15tfh15tg!g15th15u7h15u8!g15u915uzh15v0!g15v115vrh15vs!g15vt15wjh15wk!g15wl15xbh15xc!g15xd15y3h15y4!g15y515yvh15yw!g15yx15znh15zo!g15zp160fh160g!g160h1617h1618!g1619161zh1620!g1621162rh162s!g162t163jh163k!g163l164bh164c!g164d1653h1654!g1655165vh165w!g165x166nh166o!g166p167fh167g!g167h1687h1688!g1689168zh1690!g1691169rh169s!g169t16ajh16ak!g16al16bbh16bc!g16bd16c3h16c4!g16c516cvh16cw!g16cx16dnh16do!g16dp16efh16eg!g16eh16f7h16f8!g16f916fzh16g0!g16g116grh16gs!g16gt16hjh16hk!g16hl16ibh16ic!g16id16j3h16j4!g16j516jvh16jw!g16jx16knh16ko!g16kp16lfh16ls16meW16mj16nvX16o01d6nI1d6o1dkve1dkw1dljI1dlp!U1dlq!A1dlr1dm0U1dm1!I1dm21dmeU1dmg1dmkU1dmm!U1dmo1dmpU1dmr1dmsU1dmu1dn3U1dn41e0tI1e0u!R1e0v!L1e1c1e63I1e64!K1e65!I1e681e6nA1e6o!N1e6p1e6qR1e6r1e6sN1e6t1e6uG1e6v!L1e6w!R1e6x!c1e741e7jA1e7k1e7oe1e7p!L1e7q!R1e7r!L1e7s!R1e7t!L1e7u!R1e7v!L1e7w!R1e7x!L1e7y!R1e7z!L1e80!R1e81!L1e82!R1e83!L1e84!R1e851e86e1e87!L1e88!R1e891e8fe1e8g!R1e8h!e1e8i!R1e8k1e8lY1e8m1e8nG1e8o!e1e8p!L1e8q!R1e8r!L1e8s!R1e8t!L1e8u!R1e8v1e92e1e94!e1e95!J1e96!K1e97!e1e9c1ed8I1edb!d1edd!G1ede1edfe1edg!J1edh!K1edi1edje1edk!L1edl!R1edm1edne1edo!R1edp!e1edq!R1edr1ee1e1ee21ee3Y1ee41ee6e1ee7!G1ee81eeye1eez!L1ef0!e1ef1!R1ef21efue1efv!L1efw!e1efx!R1efy!e1efz!L1eg01eg1R1eg2!L1eg31eg4R1eg5!Y1eg6!e1eg71eggY1egh1ehpe1ehq1ehrY1ehs1eime1eiq1eive1eiy1ej3e1ej61ejbe1eje1ejge1ejk!K1ejl!J1ejm1ejoe1ejp1ejqJ1ejs1ejyI1ek91ekbA1ekc!i1ekd1ereI1erk1ermB1err1eykI1eyl!A1f281f4gI1f4w!A1f4x1f91I1f921f96A1f9c1fa5I1fa7!B1fa81fbjI1fbk!B1fbl1fh9I1fhc1fhlQ1fhs1g7pI1g7r!B1g7s1gd7I1gdb!B1gdc1gjkI1gjl1gjnA1gjp1gjqA1gjw1gjzA1gk01gl1I1gl41gl6A1glb!A1glc1glkI1gls1glzB1gm01gpwI1gpx1gpyA1gq31gq7I1gq81gqdB1gqe!c1gqo1gs5I1gs91gsfB1gsg1h5vI1h5w1h5zA1h681h6hQ1heo1hgpI1hgr1hgsA1hgt!B1hgw1hl1I1hl21hlcA1hld1hpyI1hq81hqaA1hqb1hrrI1hrs1hs6A1hs71hs8B1hs91ht1I1ht21htbQ1htr1htuA1htv1hv3I1hv41hveA1hvf1hvhI1hvi1hvlB1hvx1hwoI1hww1hx5Q1hxc1hxeA1hxf1hyeI1hyf1hysA1hyu1hz3Q1hz41hz7B1hz8!I1hz91hzaA1hzb1i0iI1i0j!A1i0k!I1i0l!T1i0m!I1i0w1i0yA1i0z1i2aI1i2b1i2oA1i2p1i2sI1i2t1i2uB1i2v!I1i2w!B1i2x1i30A1i31!I1i321i33A1i341i3dQ1i3e!I1i3f!T1i3g!I1i3h1i3jB1i3l1i5nI1i5o1i5zA1i601i61B1i62!I1i631i64B1i65!I1i66!A1i801i94I1i95!B1i9c1iamI1ian1iayA1ib41ibdQ1ibk1ibnA1ibp1id5I1id71id8A1id9!I1ida1idgA1idj1idkA1idn1idpA1ids!I1idz!A1ie51ie9I1iea1iebA1iee1iekA1ieo1iesA1iio1ik4I1ik51ikmA1ikn1ikqI1ikr1ikuB1ikv!I1ikw1il5Q1il61il7B1il9!I1ila!A1ilb1injI1ink1io3A1io41io7I1iog1iopQ1itc1iumI1iun1iutA1iuw1iv4A1iv5!T1iv61iv7B1iv81iv9G1iva1ivcI1ivd1ivrB1ivs1ivvI1ivw1ivxA1iww1iy7I1iy81iyoA1iyp1iyqB1iyr1iysI1iz41izdQ1izk1izwT1j0g1j1mI1j1n1j1zA1j20!I1j281j2hQ1j401j57I1j5c1j5lQ1j5m1j5nI1j5o1j5qB1j5r1jcbI1jcc1jcqA1jcr1jhbI1jhc1jhlQ1jhm1jjjI1jjk1jjpA1jjr1jjsA1jjv1jjyA1jjz!I1jk0!A1jk1!I1jk21jk3A1jk41jk6B1jkg1jkpQ1jmo1jo0I1jo11jo7A1joa1jogA1joh!I1joi!T1joj!I1jok!A1jpc!I1jpd1jpmA1jpn1jqqI1jqr1jqxA1jqy!I1jqz1jr2A1jr3!T1jr4!I1jr51jr8B1jr9!T1jra!I1jrb!A1jrk!I1jrl1jrvA1jrw1jt5I1jt61jtlA1jtm1jtoB1jtp!I1jtq1jtsT1jtt1jtuB1juo1k4uI1k4v1k52A1k541k5bA1k5c!I1k5d1k5hB1k5s1k61Q1k621k6kI1k6o!T1k6p!G1k6q1k7jI1k7m1k87A1k891k8mA1kao1kc0I1kc11kc6A1kca!A1kcc1kcdA1kcf1kclA1kcm!I1kcn!A1kcw1kd5Q1kdc1kehI1kei1kemA1keo1kepA1ker1kevA1kew!I1kf41kfdQ1ko01koiI1koj1komA1kon1kv0I1kv11kv4K1kv51kvlI1kvz!B1kw01lriI1lrk1lroB1ls01oifI1oig1oiiL1oij1oilR1oim1ojlI1ojm!R1ojn1ojpI1ojq!L1ojr!R1ojs!L1ojt!R1oju1oqgI1oqh!L1oqi1oqjR1oqk1oviI1ovk1ovqS1ovr!L1ovs!R1s001sctI1scu!L1scv!R1scw1zkuI1zkw1zl5Q1zla1zlbB1zo01zotI1zow1zp0A1zp1!B1zpc1zqnI1zqo1zquA1zqv1zqxB1zqy1zr7I1zr8!B1zr9!I1zrk1zrtQ1zrv20euI20ev20ewB20ex20juI20jz!A20k0!I20k120ljA20lr20luA20lv20m7I20o020o3Y20o4!S20og20ohA20ow25fbe25fk260ve260w26dxI26f426fce2dc02djye2dlc2dleY2dlw2dlzY2dm82dx7e2fpc2ftoI2ftp2ftqA2ftr!B2fts2ftvA2jnk2jxgI2jxh2jxlA2jxm2jxoI2jxp2jyaA2jyb2jycI2jyd2jyjA2jyk2jzdI2jze2jzhA2jzi2k3lI2k3m2k3oA2k3p2l6zI2l722l8fQ2l8g2lmnI2lmo2lo6A2lo72loaI2lob2lpoA2lpp2lpwI2lpx!A2lpy2lqbI2lqc!A2lqd2lqeI2lqf2lqiB2lqj!I2lqz2lr3A2lr52lrjA2mtc2mtiA2mtk2mu0A2mu32mu9A2mub2mucA2mue2muiA2n0g2n1oI2n1s2n1yA2n1z2n25I2n282n2hQ2n2m2ne3I2ne42ne7A2ne82nehQ2nen!J2oe82ojzI2ok02ok6A2olc2on7I2on82oneA2onf!I2onk2ontQ2ony2onzL2p9t2pbfI2pbg!K2pbh2pbjI2pbk!K2pbl2prlI2pz42q67e2q682q6kI2q6l2q6ne2q6o2q98I2q992q9be2q9c2qb0I2qb12qcle2qcm2qdbj2qdc2qo4e2qo5!f2qo62qore2qos2qotI2qou2qpge2qph2qpiI2qpj2qpne2qpo!I2qpp2qpte2qpu2qpwf2qpx2qpye2qpz!f2qq02qq1e2qq22qq4f2qq52qree2qrf2qrjk2qrk2qtde2qte2qtff2qtg2qthe2qti2qtsf2qtt2qude2que2quwf2qux2quze2qv0!f2qv12qv4e2qv52qv7f2qv8!e2qv92qvbf2qvc2qvie2qvj!f2qvk!e2qvl!f2qvm2qvze2qw0!I2qw1!e2qw2!I2qw3!e2qw4!I2qw52qw9e2qwa!f2qwb2qwee2qwf!I2qwg!e2qwh2qwiI2qwj2qyne2qyo2qyuI2qyv2qzae2qzb2qzoI2qzp2r01e2r022r0pI2r0q2r1ve2r1w2r1xf2r1y2r21e2r22!f2r232r2ne2r2o!f2r2p2r2se2r2t2r2uf2r2v2r4je2r4k2r4rI2r4s2r5fe2r5g2r5lI2r5m2r7oe2r7p2r7rf2r7s2r7ue2r7v2r7zf2r802r91I2r922r94H2r952r97Y2r982r9bI2r9c2raae2rab!f2rac2rare2ras2rauf2rav2rb3e2rb4!f2rb52rbfe2rbg!f2rbh2rcve2rcw2rg3I2rg42rgfe2rgg2risI2rit2rjze2rk02rkbI2rkc2rkfe2rkg2rlzI2rm02rm7e2rm82rmhI2rmi2rmne2rmo2rnrI2rns2rnze2ro02rotI2rou2rr3e2rr42rrfI2rrg!f2rrh2rrie2rrj!f2rrk2rrre2rrs2rrzf2rs02rs5e2rs6!f2rs72rsfe2rsg2rspf2rsq2rsre2rss2rsuf2rsv2ruee2ruf!f2rug2rw4e2rw52rw6f2rw7!e2rw82rw9f2rwa!e2rwb!f2rwc2rwse2rwt2rwvf2rww!e2rwx2rx9f2rxa2ry7e2ry82s0jI2s0k2s5be2s5c2sayI2sc02sc9Q2scg2t4te2t4w47p9e47pc5m9pejny9!Ajnz4jo1rAjo5cjobzAl2ionvnhI", x3finclua: "?include=activities,history&show_dates=true", x3finclug: "?include=gateway_tokens,activities,ledger,system_logs,documents", ABCDEF: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", Broadc: "Broadcast stream controllers do not support pause callbacks", Cannoteff: "Cannot extract a file path from a URI with a fragment component", Cannotefq: "Cannot extract a file path from a URI with a query component", Cannoten: "Cannot extract a non-Windows file path from a file URI with an authority", Cannotf: "Cannot fire new event. Controller is already firing an event", Error_: "Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type", Expand: "Expandos are not allowed on strings, numbers, booleans or null", ExpectaT1: "Expected a TextNodePosition for position1 but received a ", ExpectaT2: "Expected a TextNodePosition for position2 but received a ", ExpectaU1: "Expected a UpstreamDownstreamNodePosition for position1 but received a ", ExpectaU2: "Expected a UpstreamDownstreamNodePosition for position2 but received a ", ExpectnT: "Expected nodePosition of type TextPosition but received: ", ExpectnU: "Expected nodePosition of type UpstreamDownstreamNodePosition but received: ", Failed: "Failed to load network image.\nImage URL: ", Platfo: "Platform interfaces must not be implemented with `implements`", Receiv: "Received key event, but ignoring because it's not a down event: ", Se_sel: "Se seleccionaron $selectedRowCount elementos", Shared: 'Shared preferences keys must start with prefix "flutter.".', Stream: "Stream has been disposed.\nAn ImageStream is considered disposed once at least one listener has been added and subsequently all listeners have been removed and no handles are outstanding from the keepAlive method.\nTo resolve this error, maintain at least one listener on the stream, or create an ImageStreamCompleterHandle from the keepAlive method, or create a new stream for the image.", System: "SystemChrome.setApplicationSwitcherDescription", TextInD: "TextInputClient.updateEditingStateWithDeltas", TextInT: "TextInputClient.updateEditingStateWithTag", The_se: "The selected position is an UpstreamDownstreamPosition. Inserting new paragraph first.", There_a: 'There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html', There_w: "There was a problem trying to load FontManifest.json", Tried_o: "Tried to obtain non-existent component by node id: ", Tried_sd: "Tried to scroll down but the scroll position is already beyond the max", Tried_su: "Tried to scroll up but the scroll position is already at the top", Tried_uc_: "Tried to update collapsed handle offset but the selection is expanded", Tried_ucr: "Tried to update collapsed handle offset but there is no document selection", Tried_ue_: "Tried to update expanded handle offsets but the selection is collapsed", Tried_uer: "Tried to update expanded handle offsets but there is no document selection", Upload: "Uploading documents requires an enterprise plan", You_ca: "You cannot add items while items are being added from addStream", x5d__Cus: "]. Custom extension filters are only allowed with FileType.custom, please change it or remove filters.", x5ffloat: "_floatingActionButtonVisibilityController", x60null_c: "`null` encountered as case in a switch expression with a non-nullable enum type.", x60null_t: "`null` encountered as the result from expression with type `Never`.", docker: "docker-compose down\ndocker-compose pull\ndocker-compose up", expecta: "expected-attribute-value-but-got-right-bracket", expectc: "expected-closing-tag-but-got-right-bracket", expectd: "expected-doctype-name-but-got-right-bracket", expects: "expected-space-or-right-bracket-in-doctype", https_a_: "https://app.invoiceninja.com/buy_now/?account_key=AsFmBAeLXF0IKf7tmi0eiyZfmWW9hxMT&product_id=3", https_as: "https://apps.apple.com/us/app/invoice-ninja-v5/id1503970375", https_g: "https://github.com/invoiceninja/invoiceninja/wiki/Release-notes", https_p: "https://play.google.com/store/apps/details?id=com.invoiceninja.app", https_w: "https://www.microsoft.com/en-us/p/invoice-ninja/9n3f2bbcfdr6", max_mu: "max must be in range 0 < max \u2264 2^32, was ", rememb: "remembering this marker to insert in copied region", serial: "serializer must be StructuredSerializer or PrimitiveSerializer", this_m: "this marker counters an earlier one we found. We will not re-insert this marker in the copied region", typeof: 'typeof pdfjsLib !== "undefined" && pdfjsLib.GlobalWorkerOptions.workerSrc!="";', x75nexpeb: "unexpected-bang-after-double-dash-in-comment", x75nexpecaa: "unexpected-character-after-attribute-value", x75nexpecas: "unexpected-character-after-soldius-in-tag", x75nexpeci: "unexpected-character-in-unquoted-attribute-value", x75nexped: "unexpected-dash-after-double-dash-in-comment", x75nexpef: "unexpected-frameset-in-frameset-innerhtml", x75nexpeh: "unexpected-html-element-in-foreign-content", x75nexpes: "unexpected-start-tag-implies-table-voodoo", x75nexpete: "unexpected-table-element-end-tag-in-select-in-table", x75nexpets: "unexpected-table-element-start-tag-in-select-in-table", u0e3b_____: "\u0e3b\u1cdb\u05d0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b \u389c\u102b\u102b\u102b\u102b\u489c\u102b\u102b\u102b\u0620\u392b\u0c26\u0efa\u102b\u0dcb\u0601\u3e7e\u228f\u0c77\u24d3\u40b2\u102b\u1d51\u0f6f\u2681\u0698\u0851\u0d63\u0be6\u0d63\u1d2a\u06d5\u0e9b\u0771\u075c\u2b98\u23fe\u2707\u0da1\u2a52\u08eb\u0d13\u0ce3\u2712\u0c62\u4d9d\u0b97\u25cb\u2b21\u0659\u42c5\u0baa\u0ec5\u088d\u102b\u09b9\u09d9\u09f9\u0a21\u102b\u102b\u102b\u102b\u102b\u40ae\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0b5f\u25b1\u23c1\u07f5\u0fe2\u102b\u269e\u102b\u0e5b\u102b\u102b\u102b\u2427\u26c9\u275a\u102b\u2b5c\u0fad\u0b31\u0789\u08ab\u102b\u102b\u0dfb\u102b\u102b\u102b\u1d74\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0f2f\u2372\u102b\u38ec\u090f\u102b\u2501\u102b\u102b\u102b\u102b\u102b\u24a9\u102b\u35c8\u0939\u102b\u102b\u102b\u23b5\u102b\u102b\u2345\u2c27\u3457\u2d9d\u3491\u2d9d\u0979\u2be5\u252c\u102b\u102b\u102b\u102b\u102b\u233b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2566\u23a2\u102b\u102b\u102b\u102b\u102b\u409c\u102b\u428c\u102b\u3db9\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2bac\u102b\u16c9\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2c0e\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0d24\u4c95\u4c83\u102b\u102b\u102b\u102b\u0b0c\u102b\u07bb\u2609\u0c43\u2641\u071f\u2483\u2443\u0cb1\u06e1\u0811\u102b\u102b\u102b\u2583\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a95\u0ace\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u42ad\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u38bc\u102b\u102b\u1cdb\u102b\u102b\u4c95\u1cea\u40ce\u102b\u49ce\u1f6f\u2752\u1506\u393f\u449f\u102b\u102b\u102b\u102b\u102b\u0ff2\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u113b\u191a\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u1869\u102b\u102b\u102b\u102b\u3e89\u102b\u3bd9\u102b\u1da7\u102b\u47cf\u102b\u34a1\u305d\u2c56\u2d9d\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\x00\u01f0\u01f0\u01f0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b" }; var type$ = (function rtii() { var findType = A.findType; return { $env_1_1_String: findType("@"), ActionPaneConfiguration: findType("ActionPaneConfiguration"), Action_Intent: findType("Action"), AlignmentGeometry: findType("AlignmentGeometry"), AlwaysStoppedAnimation_Color: findType("AlwaysStoppedAnimation"), AnimationController: findType("AnimationController"), Animation_Offset: findType("Animation0"), Animation_double: findType("Animation0"), Animation_nullable_Color: findType("Animation0"), AnnotatedRegion_SystemUiOverlayStyle: findType("AnnotatedRegion"), AppDropdownButton_legacy_DateRange: findType("AppDropdownButton"), AppDropdownButton_legacy_String: findType("AppDropdownButton"), AppDropdownButton_legacy_bool: findType("AppDropdownButton"), AssertionError: findType("AssertionError"), AttributeKey_legacy_Axis_legacy_Object: findType("AttributeKey*>"), AttributeKey_legacy_String: findType("AttributeKey"), AttributeKey_legacy_double: findType("AttributeKey"), AttributeKey_legacy_int: findType("AttributeKey"), Attribution: findType("Attribution"), AttributionSpan: findType("AttributionSpan"), AuthenticationResult: findType("AuthenticationResult"), AuthenticationResult_2: findType("AuthenticationResult0"), AuthorizationCredentialAppleID: findType("AuthorizationCredentialAppleID"), AutocompleteHighlightedOption: findType("AutocompleteHighlightedOption"), AutocompleteNextOptionIntent: findType("AutocompleteNextOptionIntent"), AutocompletePreviousOptionIntent: findType("AutocompletePreviousOptionIntent"), AutofillClient: findType("AutofillClient"), AutofillInfo: findType("AutofillInfo"), BaseBarRendererElement: findType("BaseBarRendererElement"), BaseElement: findType("BaseElement"), BasicMessageChannel_nullable_Object: findType("BasicMessageChannel"), BehaviorSubject_FileResponse: findType("BehaviorSubject"), Blob: findType("Blob"), BlockSyntax: findType("BlockSyntax"), Body: findType("Body"), BodyElement: findType("BodyElement"), BorderRadius: findType("BorderRadius"), BorderRadiusTween: findType("BorderRadiusTween"), BoxConstraints: findType("BoxConstraints"), BoxParentData: findType("BoxParentData"), BuildableBehavior_ChartBehavior_dynamic: findType("BuildableBehavior>"), ButtonState: findType("ButtonState"), ButtonTheme: findType("ButtonTheme"), ByteBuffer: findType("ByteBuffer"), ByteData: findType("ByteData"), CacheInfoRepository: findType("CacheInfoRepository"), CacheObject: findType("CacheObject"), CallbackAction_ActivateIntent: findType("CallbackAction"), CallbackAction_ButtonActivateIntent: findType("CallbackAction"), CallbackAction_DirectionalFocusIntent: findType("CallbackAction"), CallbackAction_DismissIntent: findType("CallbackAction"), CallbackAction_ExpandSelectionToDocumentBoundaryIntent: findType("CallbackAction"), CallbackAction_ExpandSelectionToLineBreakIntent: findType("CallbackAction"), CallbackAction_NextFocusIntent: findType("CallbackAction"), CallbackAction_PasteTextIntent: findType("CallbackAction"), CallbackAction_PreviousFocusIntent: findType("CallbackAction"), CallbackAction_RedoTextIntent: findType("CallbackAction"), CallbackAction_ReplaceTextIntent: findType("CallbackAction"), CallbackAction_ScrollToDocumentBoundaryIntent: findType("CallbackAction"), CallbackAction_UndoTextIntent: findType("CallbackAction"), CallbackAction_UpdateSelectionIntent: findType("CallbackAction"), CanvasKit: findType("CanvasKit"), CanvasParagraph: findType("CanvasParagraph"), CastList_of_nullable_Route_dynamic_and_Route_dynamic: findType("CastList?,Route<@>>"), ChangeNotifier: findType("ChangeNotifier"), Characters: findType("Characters"), CharactersToken: findType("CharactersToken"), ChartBehavior_DateTime: findType("ChartBehavior0"), ChartBehavior_String: findType("ChartBehavior0"), ChartBehavior_dynamic: findType("ChartBehavior0<@>"), ChartContainerRenderObject_dynamic: findType("ChartContainerRenderObject<@>"), ChartStateBehavior_ChartBehavior_dynamic: findType("ChartStateBehavior>"), CheckboxTheme: findType("CheckboxTheme"), CkBrowserImageDecoder: findType("CkBrowserImageDecoder"), CkImage: findType("CkImage"), CkManagedSkImageFilterConvertible: findType("CkManagedSkImageFilterConvertible"), CkPaint: findType("CkPaint"), CkParagraph: findType("CkParagraph"), CkParagraphStyle: findType("CkParagraphStyle"), CkPath: findType("CkPath"), CkPicture: findType("CkPicture"), CkPictureRecorder: findType("CkPictureRecorder"), CkStrutStyle: findType("CkStrutStyle"), CkTextStyle: findType("CkTextStyle"), ClipPathElement: findType("ClipPathElement"), ClipRRectLayer: findType("ClipRRectLayer"), ClipRectLayer: findType("ClipRectLayer"), CodeUnits: findType("CodeUnits"), Codec: findType("Codec"), Color: findType("Color"), ColorTween: findType("ColorTween"), Comment: findType("Comment"), CommentToken: findType("CommentToken"), Comparable_dynamic: findType("Comparable<@>"), ComponentBuilder: findType("ComponentBuilder"), ConstantMapView_Symbol_dynamic: findType("ConstantMapView"), ConstantStringMap_of_legacy_String_and_Null: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_dynamic: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_legacy_String: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_legacy_int: findType("ConstantStringMap"), ContainerLayer: findType("ContainerLayer"), ContainerLayer_2: findType("ContainerLayer0"), ContainerRenderObjectMixin_of_RenderObject_and_ContainerParentDataMixin_RenderObject: findType("ContainerRenderObjectMixin>"), CrossFrameCache_HtmlElement: findType("CrossFrameCache"), CssStyleSheet: findType("CssStyleSheet"), CupertinoUserInterfaceLevel: findType("CupertinoUserInterfaceLevel"), CurveTween: findType("CurveTween"), CustomPaint: findType("CustomPaint"), CustomSemanticsAction: findType("CustomSemanticsAction"), DataTableTheme: findType("DataTableTheme"), DateSymbols: findType("DateSymbols"), DateTime: findType("DateTime"), DateTimeAxisSpec: findType("DateTimeAxisSpec"), DecodeResult: findType("DecodeResult"), Decoration: findType("Decoration"), DefaultAssetBundle: findType("DefaultAssetBundle"), DefaultTextHeightBehavior: findType("DefaultTextHeightBehavior"), DefaultTextStyle: findType("DefaultTextStyle"), DefsElement: findType("DefsElement"), DeltaTextInputClient: findType("DeltaTextInputClient"), DiagnosticableTree: findType("DiagnosticableTree"), DiagnosticsNode: findType("DiagnosticsNode"), DiagnosticsProperty_Object: findType("DiagnosticsProperty"), Directionality: findType("Directionality"), Directory: findType("Directory0"), DirectoryNode: findType("DirectoryNode"), Directory_2: findType("Directory"), DismissIntent: findType("DismissIntent"), DisposableBuildContext_State_Image: findType("DisposableBuildContext>"), DividerTheme: findType("DividerTheme"), DoctypeToken: findType("DoctypeToken"), Document: findType("Document"), DocumentComponent_StatefulWidget: findType("DocumentComponent"), DocumentFragment: findType("DocumentFragment0"), DocumentLayout: findType("DocumentLayout"), DocumentNodeSelection_NodeSelection: findType("DocumentNodeSelection"), DocumentType: findType("DocumentType"), Document_2: findType("Document1"), DomException: findType("DomException"), DomainHighlighter_String: findType("DomainHighlighter"), DragStartDetails: findType("DragStartDetails"), DragUpdateDetails: findType("DragUpdateDetails"), DrawerTheme: findType("DrawerTheme"), DropdownButtonHideUnderline: findType("DropdownButtonHideUnderline"), DropdownMenuItem_legacy_bool: findType("DropdownMenuItem"), Duration: findType("Duration"), EdgeInsetsGeometry: findType("EdgeInsetsGeometry"), EfficientLengthIterable_dynamic: findType("EfficientLengthIterable<@>"), Element: findType("Element2"), Element_2: findType("Element0"), Element_3: findType("Element"), Element_Function_int: findType("Element2(int)"), Element_Function_int_$named_params_nullable_Object: findType("Element2(int{params:Object?})"), ElevatedButtonTheme: findType("ElevatedButtonTheme"), EndTagToken: findType("EndTagToken"), EngineImageFilter: findType("EngineImageFilter"), EngineParagraphStyle: findType("EngineParagraphStyle"), EnginePicture: findType("EnginePicture"), EnginePictureRecorder: findType("EnginePictureRecorder"), EngineTextStyle: findType("EngineTextStyle"), Enum: findType("Enum"), Error: findType("Error"), Event: findType("Event"), EventTarget: findType("EventTarget"), Exception: findType("Exception"), ExpandIterable__SemanticsSortGroup_SemanticsNode: findType("ExpandIterable<_SemanticsSortGroup,SemanticsNode>"), Expando_BoxHitTestResult: findType("Expando"), ExtendSelectionByCharacterIntent: findType("ExtendSelectionByCharacterIntent"), ExtendSelectionToDocumentBoundaryIntent: findType("ExtendSelectionToDocumentBoundaryIntent"), ExtendSelectionToLineBreakIntent: findType("ExtendSelectionToLineBreakIntent"), ExtendSelectionToNextWordBoundaryIntent: findType("ExtendSelectionToNextWordBoundaryIntent"), ExtendedState_StatefulWidget: findType("ExtendedState"), FEBlendElement: findType("FEBlendElement"), FEColorMatrixElement: findType("FEColorMatrixElement"), FECompositeElement: findType("FECompositeElement"), FEFloodElement: findType("FEFloodElement"), File: findType("File"), FileList: findType("FileList"), FileNode: findType("FileNode"), FileResponse: findType("FileResponse"), FileServiceResponse: findType("FileServiceResponse"), FileSpan: findType("FileSpan"), FileSystemEntity: findType("FileSystemEntity0"), File_2: findType("File1"), FilterElement: findType("FilterElement"), FlatTextSpan: findType("FlatTextSpan"), FlexParentData: findType("FlexParentData"), FlexibleSpaceBarSettings: findType("FlexibleSpaceBarSettings"), Float32List: findType("Float32List"), Float64List: findType("Float64List"), FlutterApp: findType("FlutterApp"), FlutterAppRunner: findType("FlutterAppRunner"), FlutterError: findType("FlutterError"), FocusNode: findType("FocusNode"), FocusScopeNode: findType("FocusScopeNode"), FontFace: findType("FontFace"), FormFieldState_dynamic: findType("FormFieldState<@>"), FormatException: findType("FormatException"), FrameInfo: findType("FrameInfo"), FrameReference_PersistedSurface: findType("FrameReference"), FullType: findType("FullType"), Function: findType("Function"), Future_bool_Function: findType("Future()"), Future_dynamic: findType("Future<@>"), Future_nullable_CacheObject: findType("Future"), Future_void: findType("Future<~>"), GeneralConstantMap_of_legacy_MaterialState_and_Null: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_MessageLevel_and_legacy_String: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_int_and_legacy_Color: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_int_and_legacy_PhysicalKeyboardKey: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_int_and_legacy_String: findType("GeneralConstantMap"), GestureArenaEntry: findType("GestureArenaEntry"), GestureListener: findType("GestureListener"), GestureRecognizer: findType("GestureRecognizer"), GestureRecognizerFactoryWithHandlers_DoubleTapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_ForcePressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_PanGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_ScaleGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_TapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_TapSequenceGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers__ThumbPressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers<_ThumbPressGestureRecognizer>"), GestureRecognizerFactoryWithHandlers__TrackTapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers<_TrackTapGestureRecognizer>"), GestureRecognizerFactory_GestureRecognizer: findType("GestureRecognizerFactory"), GestureType: findType("GestureType"), GlobalKey_State_StatefulWidget: findType("GlobalKey>"), GlobalObjectKey_NavigatorState: findType("GlobalObjectKey"), GlobalObjectKey_State_StatefulWidget: findType("GlobalObjectKey>"), GoogleAuthSignInError: findType("GoogleAuthSignInError"), GoogleSignInAuthentication: findType("GoogleSignInAuthentication"), GoogleSignInTokenData: findType("GoogleSignInTokenData"), GoogleUser: findType("GoogleUser"), HashedObserverList_of_void_Function_FocusHighlightMode: findType("HashedObserverList<~(FocusHighlightMode)>"), HeapPriorityQueue__TaskEntry_dynamic: findType("HeapPriorityQueue<_TaskEntry<@>>"), Hero: findType("Hero"), HeroControllerScope: findType("HeroControllerScope"), HitTestEntry_HitTestTarget: findType("HitTestEntry"), HitTestResult: findType("HitTestResult"), HitTestTarget: findType("HitTestTarget"), HtmlElement: findType("HtmlElement"), HtmlImage: findType("HtmlImage"), HttpRequest: findType("HttpRequest"), IconTheme: findType("IconTheme"), Image: findType("Image1"), ImageChunkEvent: findType("ImageChunkEvent"), ImageData: findType("ImageData"), ImageDecoder: findType("ImageDecoder"), ImageElement: findType("ImageElement"), ImageInfo: findType("ImageInfo"), ImageSizeInfo: findType("ImageSizeInfo"), ImageStreamListener: findType("ImageStreamListener"), ImmutableAxis_num: findType("ImmutableAxis"), InTableTextPhase: findType("InTableTextPhase"), IndexedSlot_nullable_Element: findType("IndexedSlot"), InheritedElement: findType("InheritedElement"), InheritedTheme: findType("InheritedTheme"), InheritedWidget: findType("InheritedWidget"), InlineSyntax: findType("InlineSyntax"), InputBorder: findType("InputBorder"), InputElement: findType("InputElement"), InputStreamBase: findType("InputStreamBase"), Int32List: findType("Int32List"), Int64List: findType("Int64List"), IntTween: findType("IntTween"), Intent: findType("Intent"), InteractiveInkFeature: findType("InteractiveInkFeature"), InteractiveInkFeatureFactory: findType("InteractiveInkFeatureFactory"), IterableEquality_dynamic: findType("IterableEquality<@>"), Iterable_dynamic: findType("Iterable<@>"), Iterable_nullable_Object: findType("Iterable"), JSArray_A11yNode: findType("JSArray"), JSArray_AxisTicks_DateTime: findType("JSArray>"), JSArray_AxisTicks_String: findType("JSArray>"), JSArray_AxisTicks_num: findType("JSArray>"), JSArray_BaseBarRendererElement: findType("JSArray"), JSArray_BlockSyntax: findType("JSArray"), JSArray_BoardItemState: findType("JSArray"), JSArray_BoardListState: findType("JSArray"), JSArray_BoxShadow: findType("JSArray"), JSArray_CacheObject: findType("JSArray"), JSArray_CanvasElement: findType("JSArray"), JSArray_CanvasRect: findType("JSArray"), JSArray_ChartBehavior_DateTime: findType("JSArray>"), JSArray_ChartBehavior_String: findType("JSArray>"), JSArray_CkCanvas: findType("JSArray"), JSArray_CkPaintCommand: findType("JSArray"), JSArray_CkTextStyle: findType("JSArray"), JSArray_CodeunitRange: findType("JSArray"), JSArray_Color: findType("JSArray"), JSArray_Color_2: findType("JSArray"), JSArray_Completer_dynamic: findType("JSArray>"), JSArray_Conic: findType("JSArray"), JSArray_ContainerLayer: findType("JSArray"), JSArray_CustomPainterSemantics: findType("JSArray"), JSArray_DataRow: findType("JSArray"), JSArray_DateTime: findType("JSArray"), JSArray_Delimiter: findType("JSArray"), JSArray_DiagnosticsNode: findType("JSArray"), JSArray_Directionality: findType("JSArray"), JSArray_DocumentNode: findType("JSArray"), JSArray_Element: findType("JSArray"), JSArray_Element_2: findType("JSArray"), JSArray_Element_3: findType("JSArray"), JSArray_Element_4: findType("JSArray"), JSArray_EngineLineMetrics: findType("JSArray"), JSArray_Expression: findType("JSArray"), JSArray_FocusNode: findType("JSArray"), JSArray_FrameReference_dynamic: findType("JSArray>"), JSArray_FrameTiming: findType("JSArray"), JSArray_Future_nullable_RegisteredFont: findType("JSArray>"), JSArray_Future_void: findType("JSArray>"), JSArray_GestureArenaMember: findType("JSArray"), JSArray_GestureListener: findType("JSArray"), JSArray_GlobalKey_State_StatefulWidget: findType("JSArray>>"), JSArray_HitTestEntry_HitTestTarget: findType("JSArray>"), JSArray_HtmlElement: findType("JSArray"), JSArray_ImageStreamListener: findType("JSArray"), JSArray_InheritedTheme: findType("JSArray"), JSArray_InkFeature: findType("JSArray"), JSArray_InlineSpan: findType("JSArray"), JSArray_InlineSpanSemanticsInformation: findType("JSArray"), JSArray_InlineSyntax: findType("JSArray"), JSArray_KeyEvent: findType("JSArray"), JSArray_KeyEventResult: findType("JSArray"), JSArray_Layer: findType("JSArray"), JSArray_LayoutId: findType("JSArray"), JSArray_LayoutView: findType("JSArray"), JSArray_LicenseEntry: findType("JSArray"), JSArray_LicenseParagraph: findType("JSArray"), JSArray_LifecycleListener_DateTime: findType("JSArray>"), JSArray_LifecycleListener_String: findType("JSArray>"), JSArray_LineMetrics: findType("JSArray"), JSArray_LineSegment: findType("JSArray"), JSArray_LinkifyElement: findType("JSArray"), JSArray_ListItem: findType("JSArray"), JSArray_List_String: findType("JSArray>"), JSArray_List_int: findType("JSArray>"), JSArray_List_nullable_bool: findType("JSArray>"), JSArray_Listenable: findType("JSArray"), JSArray_LocalHistoryEntry: findType("JSArray"), JSArray_Locale: findType("JSArray"), JSArray_LocalizationsDelegate_dynamic: findType("JSArray>"), JSArray_LogicalKeyboardKey: findType("JSArray"), JSArray_Map_String_dynamic: findType("JSArray>"), JSArray_Map_dynamic_dynamic: findType("JSArray>"), JSArray_Matrix4: findType("JSArray"), JSArray_Matrix4_2: findType("JSArray"), JSArray_MergeableMaterialItem: findType("JSArray"), JSArray_Message: findType("JSArray"), JSArray_MultiAttributionSpan: findType("JSArray"), JSArray_MultipartFile: findType("JSArray"), JSArray_Mutator: findType("JSArray"), JSArray_NavigatorObserver: findType("JSArray"), JSArray_Node: findType("JSArray"), JSArray_NodeValidator: findType("JSArray"), JSArray_Node_2: findType("JSArray"), JSArray_Node_3: findType("JSArray"), JSArray_NotoFont: findType("JSArray"), JSArray_Object: findType("JSArray"), JSArray_Offset: findType("JSArray"), JSArray_OverlayEntry: findType("JSArray"), JSArray_PageStorageKey_dynamic: findType("JSArray>"), JSArray_Paint: findType("JSArray"), JSArray_PaintCommand: findType("JSArray"), JSArray_PaintRequest: findType("JSArray"), JSArray_ParagraphSpan: findType("JSArray"), JSArray_ParseError: findType("JSArray"), JSArray_PdfPreviewPage: findType("JSArray"), JSArray_Permission: findType("JSArray"), JSArray_PersistedContainerSurface: findType("JSArray"), JSArray_PersistedSurface: findType("JSArray"), JSArray_PlaceholderDimensions: findType("JSArray"), JSArray_PlaceholderSpan: findType("JSArray"), JSArray_PlatformFile: findType("JSArray"), JSArray_PngFrame: findType("JSArray"), JSArray_Point_double: findType("JSArray>"), JSArray_Point_num: findType("JSArray>"), JSArray_PointerData: findType("JSArray"), JSArray_PointerEvent: findType("JSArray"), JSArray_PointerEvent_2: findType("JSArray"), JSArray_QrDatum: findType("JSArray"), JSArray_QrRsBlock: findType("JSArray"), JSArray_Radius: findType("JSArray"), JSArray_RangeBox: findType("JSArray"), JSArray_Rect: findType("JSArray"), JSArray_RegisteredFont: findType("JSArray"), JSArray_RenderBox: findType("JSArray"), JSArray_RenderEditablePainter: findType("JSArray"), JSArray_RenderObject: findType("JSArray"), JSArray_RenderSliver: findType("JSArray"), JSArray_RestorationBucket: findType("JSArray"), JSArray_Route_void: findType("JSArray>"), JSArray_SaveClipEntry: findType("JSArray"), JSArray_SaveStackEntry: findType("JSArray"), JSArray_ScrollPosition: findType("JSArray"), JSArray_SelectionRect: findType("JSArray"), JSArray_Selector: findType("JSArray"), JSArray_SemanticsNode: findType("JSArray"), JSArray_SemanticsNodeUpdate: findType("JSArray"), JSArray_SentryMeasurement: findType("JSArray"), JSArray_ShaderDeclaration: findType("JSArray"), JSArray_ShaderMethod: findType("JSArray"), JSArray_Shadow: findType("JSArray"), JSArray_ShapeBorder: findType("JSArray"), JSArray_SimpleSelectorSequence: findType("JSArray"), JSArray_SingleColumnLayoutComponentViewModel: findType("JSArray"), JSArray_SingleColumnLayoutStylePhase: findType("JSArray"), JSArray_SkDeletable: findType("JSArray"), JSArray_SkFont: findType("JSArray"), JSArray_SkFontFeature: findType("JSArray"), JSArray_SkTextShadow: findType("JSArray"), JSArray_SpanMarker: findType("JSArray"), JSArray_StreamSubscription_Event: findType("JSArray>"), JSArray_String: findType("JSArray"), JSArray_StringAttribute: findType("JSArray"), JSArray_StringToken: findType("JSArray"), JSArray_StyleNode: findType("JSArray"), JSArray_Surface: findType("JSArray"), JSArray_TableRow: findType("JSArray"), JSArray_TagAttribute: findType("JSArray"), JSArray_TextBox: findType("JSArray"), JSArray_TextDecoration: findType("JSArray"), JSArray_TextEditingDelta: findType("JSArray"), JSArray_TextEditingValue: findType("JSArray"), JSArray_TextInputFormatter: findType("JSArray"), JSArray_TextSelectionPoint: findType("JSArray"), JSArray_TextSpan: findType("JSArray"), JSArray_ThemeExtension_ThemeExtension_dynamic: findType("JSArray>>"), JSArray_Tick_DateTime: findType("JSArray>"), JSArray_Tick_num: findType("JSArray>"), JSArray_TimeRangeTickProvider: findType("JSArray"), JSArray_TweenSequenceItem_double: findType("JSArray>"), JSArray_Uint8List: findType("JSArray"), JSArray_UserSelection: findType("JSArray"), JSArray_Widget: findType("JSArray"), JSArray_WidgetsBindingObserver: findType("JSArray"), JSArray__ActivatorIntentPair: findType("JSArray<_ActivatorIntentPair>"), JSArray__Autofocus: findType("JSArray<_Autofocus>"), JSArray__BoxEdge: findType("JSArray<_BoxEdge>"), JSArray__DateFormatField: findType("JSArray<_DateFormatField>"), JSArray__DirectionalPolicyDataEntry: findType("JSArray<_DirectionalPolicyDataEntry>"), JSArray__Highlight: findType("JSArray<_Highlight>"), JSArray__InterestingSemanticsFragment: findType("JSArray<_InterestingSemanticsFragment>"), JSArray__Interval: findType("JSArray<_Interval>"), JSArray__Line: findType("JSArray<_Line>"), JSArray__ParagraphCommand: findType("JSArray<_ParagraphCommand>"), JSArray__ParentInkResponseState: findType("JSArray<_ParentInkResponseState>"), JSArray__Pending: findType("JSArray<_Pending>"), JSArray__PersistedSurfaceMatch: findType("JSArray<_PersistedSurfaceMatch>"), JSArray__ReadingOrderDirectionalGroupData: findType("JSArray<_ReadingOrderDirectionalGroupData>"), JSArray__ReadingOrderSortData: findType("JSArray<_ReadingOrderSortData>"), JSArray__ResolvedNotoSubset: findType("JSArray<_ResolvedNotoSubset>"), JSArray__RouteEntry: findType("JSArray<_RouteEntry>"), JSArray__RunMetrics: findType("JSArray<_RunMetrics>"), JSArray__SaveElementStackEntry: findType("JSArray<_SaveElementStackEntry>"), JSArray__ScribblePlaceholder: findType("JSArray<_ScribblePlaceholder>"), JSArray__SemanticsSortGroup: findType("JSArray<_SemanticsSortGroup>"), JSArray__StandardBottomSheet: findType("JSArray<_StandardBottomSheet>"), JSArray__TableElementRow: findType("JSArray<_TableElementRow>"), JSArray__TableSlot: findType("JSArray<_TableSlot>"), JSArray__TappableLabel: findType("JSArray<_TappableLabel>"), JSArray__TransformPart: findType("JSArray<_TransformPart>"), JSArray__TraversalSortNode: findType("JSArray<_TraversalSortNode>"), JSArray_bool: findType("JSArray"), JSArray_double: findType("JSArray"), JSArray_dynamic: findType("JSArray<@>"), JSArray_int: findType("JSArray"), JSArray_legacy_AppDropdownButton_legacy_String: findType("JSArray*>"), JSArray_legacy_AppleIDAuthorizationScopes: findType("JSArray"), JSArray_legacy_AttributedText: findType("JSArray"), JSArray_legacy_BaseEntity: findType("JSArray"), JSArray_legacy_BoxShadow: findType("JSArray"), JSArray_legacy_ChartBehavior_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_ChartDataGroup: findType("JSArray"), JSArray_legacy_ChartMoneyData: findType("JSArray"), JSArray_legacy_ClientContactEntity: findType("JSArray"), JSArray_legacy_ClientReportFields: findType("JSArray"), JSArray_legacy_Color: findType("JSArray"), JSArray_legacy_CompanyEntity: findType("JSArray"), JSArray_legacy_ContactReportFields: findType("JSArray"), JSArray_legacy_CreditReportFields: findType("JSArray"), JSArray_legacy_DataCell: findType("JSArray"), JSArray_legacy_DataCell_2: findType("JSArray"), JSArray_legacy_DataColumn: findType("JSArray"), JSArray_legacy_DataColumn_2: findType("JSArray"), JSArray_legacy_DataRow: findType("JSArray"), JSArray_legacy_DataRow_2: findType("JSArray"), JSArray_legacy_DatePicker: findType("JSArray"), JSArray_legacy_DocumentEntity: findType("JSArray"), JSArray_legacy_DocumentNode: findType("JSArray"), JSArray_legacy_DocumentReportFields: findType("JSArray"), JSArray_legacy_DropdownMenuItem_legacy_EmailTemplate: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_String: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_TaxRateEntity: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_bool: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_double: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_int: findType("JSArray*>"), JSArray_legacy_EmailTemplate: findType("JSArray"), JSArray_legacy_EntityAction: findType("JSArray"), JSArray_legacy_EntityState: findType("JSArray"), JSArray_legacy_EntityType: findType("JSArray"), JSArray_legacy_ExpenseCategoryEntity: findType("JSArray"), JSArray_legacy_ExpenseEntity: findType("JSArray"), JSArray_legacy_ExpenseReportFields: findType("JSArray"), JSArray_legacy_ExpenseStatusEntity: findType("JSArray"), JSArray_legacy_FontFeature: findType("JSArray"), JSArray_legacy_FormatNumberType: findType("JSArray"), JSArray_legacy_FullType: findType("JSArray"), JSArray_legacy_GatewayTokenEntity: findType("JSArray"), JSArray_legacy_IconButton: findType("JSArray"), JSArray_legacy_ImportType: findType("JSArray"), JSArray_legacy_InvoiceEntity: findType("JSArray"), JSArray_legacy_InvoiceItemEntity: findType("JSArray"), JSArray_legacy_InvoiceItemReportFields: findType("JSArray"), JSArray_legacy_InvoiceReportFields: findType("JSArray"), JSArray_legacy_InvoiceStatusEntity: findType("JSArray"), JSArray_legacy_ListItemType: findType("JSArray"), JSArray_legacy_List_legacy_ReportElement: findType("JSArray*>"), JSArray_legacy_List_legacy_String: findType("JSArray*>"), JSArray_legacy_List_legacy_int: findType("JSArray*>"), JSArray_legacy_Locale: findType("JSArray"), JSArray_legacy_LocalizationsDelegate_dynamic: findType("JSArray*>"), JSArray_legacy_Map_of_legacy_String_and_dynamic: findType("JSArray*>"), JSArray_legacy_MultipartFile: findType("JSArray"), JSArray_legacy_NavigatorObserver: findType("JSArray"), JSArray_legacy_Object: findType("JSArray"), JSArray_legacy_Pair_of_legacy_String_and_legacy_String: findType("JSArray*>"), JSArray_legacy_PaymentEntity: findType("JSArray"), JSArray_legacy_PaymentReportFields: findType("JSArray"), JSArray_legacy_PopupMenuEntry_legacy_EntityAction: findType("JSArray*>"), JSArray_legacy_PopupMenuEntry_legacy_String: findType("JSArray*>"), JSArray_legacy_ProductEntity: findType("JSArray"), JSArray_legacy_ProductReportFields: findType("JSArray"), JSArray_legacy_ProfitAndLossReportFields: findType("JSArray"), JSArray_legacy_PurchaseOrderReportFields: findType("JSArray"), JSArray_legacy_QuoteItemReportFields: findType("JSArray"), JSArray_legacy_QuoteReportFields: findType("JSArray"), JSArray_legacy_RecurringExpenseReportFields: findType("JSArray"), JSArray_legacy_RecurringInvoiceReportFields: findType("JSArray"), JSArray_legacy_ReportColumnType: findType("JSArray"), JSArray_legacy_ReportElement: findType("JSArray"), JSArray_legacy_SelectableEntity: findType("JSArray"), JSArray_legacy_SelectionModelConfig_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_Series_of_dynamic_and_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_Series_of_dynamic_and_legacy_String: findType("JSArray*>"), JSArray_legacy_String: findType("JSArray"), JSArray_legacy_TableRow: findType("JSArray"), JSArray_legacy_TaskEntity: findType("JSArray"), JSArray_legacy_TaskReportFields: findType("JSArray"), JSArray_legacy_TaskStatusEntity: findType("JSArray"), JSArray_legacy_TaskTime: findType("JSArray"), JSArray_legacy_TaxRateReportFields: findType("JSArray"), JSArray_legacy_TaxRateReportFields_2: findType("JSArray"), JSArray_legacy_TextButton: findType("JSArray"), JSArray_legacy_TextEditingController: findType("JSArray"), JSArray_legacy_TextInputFormatter: findType("JSArray"), JSArray_legacy_TextSpan: findType("JSArray"), JSArray_legacy_TimeOfDay: findType("JSArray"), JSArray_legacy_Type: findType("JSArray"), JSArray_legacy_UserCompanyState: findType("JSArray"), JSArray_legacy_VendorContactEntity: findType("JSArray"), JSArray_legacy_Widget: findType("JSArray"), JSArray_legacy_bool: findType("JSArray"), JSArray_legacy_double: findType("JSArray"), JSArray_legacy_int: findType("JSArray"), JSArray_nullable_Element: findType("JSArray"), JSArray_nullable_LogicalKeyboardKey: findType("JSArray"), JSArray_nullable_Node: findType("JSArray"), JSArray_nullable_PersistedSurface: findType("JSArray"), JSArray_nullable_Rect: findType("JSArray"), JSArray_nullable_RenderBox: findType("JSArray"), JSArray_nullable_Route_dynamic: findType("JSArray?>"), JSArray_nullable_SemanticsObject: findType("JSArray"), JSArray_nullable_ShapeBorder: findType("JSArray"), JSArray_nullable_SingleColumnLayoutViewModel: findType("JSArray"), JSArray_nullable_String: findType("JSArray"), JSArray_nullable__AsyncBlock: findType("JSArray<_AsyncBlock?>"), JSArray_nullable_int: findType("JSArray"), JSArray_num: findType("JSArray"), JSArray_of_Future_bool_Function: findType("JSArray()>"), JSArray_of_Stream_LicenseEntry_Function: findType("JSArray()>"), JSArray_of__DateFormatField_Function_String_DateFormat: findType("JSArray<_DateFormatField(String,DateFormat)>"), JSArray_of_bool_Function_KeyEvent: findType("JSArray"), JSArray_of_dynamic_Function_dynamic: findType("JSArray<@(@)>"), JSArray_of_legacy_dynamic_Function_3_legacy_Store_legacy_AppState_and_dynamic_and_legacy_dynamic_Function_dynamic: findType("JSArray<@(Store*,@,@(@)*)*>"), JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic: findType("JSArray*(Completer*,@)*>"), JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic: findType("JSArray"), JSArray_of_nullable_dynamic_Function: findType("JSArray<@()?>"), JSArray_of_nullable_void_Function_GestureMode: findType("JSArray<~(GestureMode)?>"), JSArray_of_void_Function: findType("JSArray<~()>"), JSArray_of_void_Function_Action_Intent: findType("JSArray<~(Action)>"), JSArray_of_void_Function_AnimationStatus: findType("JSArray<~(AnimationStatus)>"), JSArray_of_void_Function_Duration: findType("JSArray<~(Duration)>"), JSArray_of_void_Function_List_FrameTiming: findType("JSArray<~(List)>"), JSIndexable_dynamic: findType("JSIndexable<@>"), JSNull: findType("JSNull"), JSObject: findType("JSObject"), JavaScriptFunction: findType("JavaScriptFunction"), JavaScriptIndexingBehavior_dynamic: findType("JavaScriptIndexingBehavior<@>"), JsArray_dynamic: findType("JsArray<@>"), JsError: findType("JsError"), JsFunction: findType("JsFunction"), JsLinkedHashMap_String_bool: findType("JsLinkedHashMap"), JsLinkedHashMap_String_dynamic: findType("JsLinkedHashMap"), JsLinkedHashMap_Symbol_dynamic: findType("JsLinkedHashMap"), KeepAliveParentDataMixin: findType("KeepAliveParentDataMixin"), Key: findType("Key"), KeyRange: findType("KeyRange"), KeyboardEvent: findType("KeyboardEvent"), KeyboardLockMode: findType("KeyboardLockMode"), KeyboardSide: findType("KeyboardSide"), LabeledGlobalKey_DrawerControllerState: findType("LabeledGlobalKey"), LabeledGlobalKey_EditableTextState: findType("LabeledGlobalKey"), LabeledGlobalKey_FormState: findType("LabeledGlobalKey"), LabeledGlobalKey_NavigatorState: findType("LabeledGlobalKey"), LabeledGlobalKey_OverlayState: findType("LabeledGlobalKey"), LabeledGlobalKey_PdfPreviewCustomState: findType("LabeledGlobalKey"), LabeledGlobalKey_ProseTextState_StatefulWidget: findType("LabeledGlobalKey>"), LabeledGlobalKey_RawGestureDetectorState: findType("LabeledGlobalKey"), LabeledGlobalKey_State_StatefulWidget: findType("LabeledGlobalKey>"), LabeledGlobalKey_StyledToastWidgetState: findType("LabeledGlobalKey"), LabeledGlobalKey__OverlayEntryWidgetState: findType("LabeledGlobalKey<_OverlayEntryWidgetState>"), LabeledGlobalKey__StandardBottomSheetState: findType("LabeledGlobalKey<_StandardBottomSheetState>"), LabeledGlobalKey_legacy_FormState: findType("LabeledGlobalKey"), LabeledGlobalKey_legacy_State_legacy_StatefulWidget: findType("LabeledGlobalKey*>"), Layer: findType("Layer"), LayerScene: findType("LayerScene"), Layer_2: findType("Layer0"), LayoutView: findType("LayoutView"), LeaderLayer: findType("LeaderLayer"), LicenseEntry: findType("LicenseEntry"), LifeCycleHooks__OnWidget_Widget: findType("LifeCycleHooks<_OnWidget>"), LineCharProperty: findType("LineCharProperty"), LinePointHighlighter_DateTime: findType("LinePointHighlighter"), LinkNode: findType("LinkNode"), LinkReference: findType("LinkReference"), LinkedList__ListenerEntry: findType("LinkedList<_ListenerEntry>"), ListBodyParentData: findType("ListBodyParentData"), ListBuilder_dynamic: findType("ListBuilder<@>"), ListBuilder_legacy_ActivityEntity: findType("ListBuilder"), ListBuilder_legacy_BaseEntity: findType("ListBuilder"), ListBuilder_legacy_BuiltList_legacy_String: findType("ListBuilder*>"), ListBuilder_legacy_ClientContactEntity: findType("ListBuilder"), ListBuilder_legacy_ClientEntity: findType("ListBuilder"), ListBuilder_legacy_CompanyGatewayEntity: findType("ListBuilder"), ListBuilder_legacy_CountryEntity: findType("ListBuilder"), ListBuilder_legacy_CurrencyEntity: findType("ListBuilder"), ListBuilder_legacy_DateFormatEntity: findType("ListBuilder"), ListBuilder_legacy_DatetimeFormatEntity: findType("ListBuilder"), ListBuilder_legacy_DesignEntity: findType("ListBuilder"), ListBuilder_legacy_DocumentEntity: findType("ListBuilder"), ListBuilder_legacy_EntityState: findType("ListBuilder"), ListBuilder_legacy_EntityStatus: findType("ListBuilder"), ListBuilder_legacy_EntityType: findType("ListBuilder"), ListBuilder_legacy_ExpenseCategoryEntity: findType("ListBuilder"), ListBuilder_legacy_ExpenseEntity: findType("ListBuilder"), ListBuilder_legacy_ExpenseScheduleEntity: findType("ListBuilder"), ListBuilder_legacy_GatewayEntity: findType("ListBuilder"), ListBuilder_legacy_GatewayTokenEntity: findType("ListBuilder"), ListBuilder_legacy_GroupEntity: findType("ListBuilder"), ListBuilder_legacy_HistoryRecord: findType("ListBuilder"), ListBuilder_legacy_IndustryEntity: findType("ListBuilder"), ListBuilder_legacy_InvitationEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceItemEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceScheduleEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceStatusEntity: findType("ListBuilder"), ListBuilder_legacy_LanguageEntity: findType("ListBuilder"), ListBuilder_legacy_LedgerEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentTermEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentTypeEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentableEntity: findType("ListBuilder"), ListBuilder_legacy_ProductEntity: findType("ListBuilder"), ListBuilder_legacy_ProjectEntity: findType("ListBuilder"), ListBuilder_legacy_RegistrationFieldEntity: findType("ListBuilder"), ListBuilder_legacy_SizeEntity: findType("ListBuilder"), ListBuilder_legacy_String: findType("ListBuilder"), ListBuilder_legacy_SubscriptionEntity: findType("ListBuilder"), ListBuilder_legacy_SystemLogEntity: findType("ListBuilder"), ListBuilder_legacy_TaskEntity: findType("ListBuilder"), ListBuilder_legacy_TaskStatusEntity: findType("ListBuilder"), ListBuilder_legacy_TaxRateEntity: findType("ListBuilder"), ListBuilder_legacy_TimezoneEntity: findType("ListBuilder"), ListBuilder_legacy_TokenEntity: findType("ListBuilder"), ListBuilder_legacy_UserCompanyEntity: findType("ListBuilder"), ListBuilder_legacy_UserCompanyState: findType("ListBuilder"), ListBuilder_legacy_UserEntity: findType("ListBuilder"), ListBuilder_legacy_VendorContactEntity: findType("ListBuilder"), ListBuilder_legacy_VendorEntity: findType("ListBuilder"), ListBuilder_legacy_WebhookEntity: findType("ListBuilder"), ListEquality_dynamic: findType("ListEquality<@>"), ListEquality_int: findType("ListEquality"), ListItemNode: findType("ListItemNode"), ListMultimapBuilder_dynamic_dynamic: findType("ListMultimapBuilder<@,@>"), ListTileTheme: findType("ListTileTheme"), List_CacheObject: findType("List"), List_CodeunitRange: findType("List"), List_Color: findType("List"), List_Element: findType("List"), List_FrameTiming: findType("List"), List_LicenseEntry: findType("List"), List_LicenseParagraph: findType("List"), List_Node: findType("List"), List_Object: findType("List"), List_OverlayEntry: findType("List"), List_PointerEvent: findType("List"), List_RestorationBucket: findType("List"), List_SemanticsNode: findType("List"), List_SkFont: findType("List"), List_String: findType("List"), List_UserSelection: findType("List"), List__ActivatorIntentPair: findType("List<_ActivatorIntentPair>"), List_double: findType("List"), List_dynamic: findType("List<@>"), List_int: findType("List"), List_nullable_Object: findType("List"), Listenable: findType("Listenable"), LiteralTerm: findType("LiteralTerm"), LocalKey: findType("LocalKey"), Locale: findType("Locale"), LocalizationsDelegate_dynamic: findType("LocalizationsDelegate<@>"), Logger: findType("Logger"), LogicalKeyboardKey: findType("LogicalKeyboardKey"), MapBuilder_dynamic_dynamic: findType("MapBuilder<@,@>"), MapBuilder_of_legacy_EntityType_and_legacy_BuiltList_legacy_String: findType("MapBuilder*>"), MapBuilder_of_legacy_EntityType_and_legacy_PrefStateSortField: findType("MapBuilder"), MapBuilder_of_legacy_EntityType_and_legacy_bool: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String: findType("MapBuilder*>"), MapBuilder_of_legacy_String_and_legacy_ClientEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CompanyPrefState: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CountryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CurrencyEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DateFormatEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DesignEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DocumentEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ExpenseEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_FeesAndLimitsSettings: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GatewayEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GatewayOptionsEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GroupEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ImportRequestMapping: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_IndustryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_InvoiceEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_LanguageEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentTypeEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PreImportResponseEntityDetails: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ProductEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ProjectEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ReportSettingsEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_SizeEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_String: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaskEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaxRateEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TemplateEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TimezoneEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TokenEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_UserEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_VendorEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_WebhookEntity: findType("MapBuilder"), MapBuilder_of_legacy_int_and_legacy_String: findType("MapBuilder"), MapEntry_Offset_TextPosition: findType("MapEntry"), MapEntry_Permission_PermissionStatus: findType("MapEntry"), MapEntry_String_String: findType("MapEntry"), MapEntry_int_Offset: findType("MapEntry"), MapEntry_of_Object_and_ThemeExtension_dynamic: findType("MapEntry>"), MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String: findType("MapEntry*>"), MapEntry_of_nullable_String_and_List_Object: findType("MapEntry>"), MapEquality_dynamic_dynamic: findType("MapEquality<@,@>"), Map_Permission_PermissionStatus: findType("Map"), Map_String_BaseBarRendererElement: findType("Map"), Map_String_Object: findType("Map"), Map_String_String: findType("Map"), Map_String_dynamic: findType("Map"), Map_Type_dynamic: findType("Map"), Map_dynamic_dynamic: findType("Map<@,@>"), Map_of_String_and_nullable_Object: findType("Map"), Map_of_nullable_Object_and_nullable_Object: findType("Map"), Map_of_void_Function_PointerEvent_and_nullable_Matrix4: findType("Map<~(PointerEvent),Matrix4?>"), MappedIterable_of_String_and_legacy_ListTile: findType("MappedIterable"), MappedIterable_of_String_and_nullable_StackFrame: findType("MappedIterable"), MappedIterable_of_legacy_EntityType_and_legacy_DataRow: findType("MappedIterable"), MappedIterable_of_legacy_String_and_legacy_DataRow: findType("MappedIterable"), MappedIterable_of_legacy__TextType_and_legacy_DropdownMenuItem_legacy__TextType: findType("MappedIterable<_TextType*,DropdownMenuItem<_TextType*>*>"), MappedListIterable_String_ParagraphNode: findType("MappedListIterable"), MappedListIterable_String_String: findType("MappedListIterable"), MappedListIterable_String_TextElement: findType("MappedListIterable"), MappedListIterable_String_dynamic: findType("MappedListIterable"), MappedListIterable_Widget_Widget: findType("MappedListIterable"), MappedListIterable__TraversalSortNode_SemanticsNode: findType("MappedListIterable<_TraversalSortNode,SemanticsNode>"), MappedListIterable_int_SemanticsNode: findType("MappedListIterable"), MappedListIterable_of_List_String_and_String: findType("MappedListIterable,String>"), MappedListIterable_of_String_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_String_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ClientReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ContactReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_CreditReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_DocumentReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_EntityAction_and_legacy_OutlinedButton: findType("MappedListIterable"), MappedListIterable_of_legacy_ExpenseReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ImportType_and_legacy_DropdownMenuItem_legacy_ImportType: findType("MappedListIterable*>"), MappedListIterable_of_legacy_InvoiceItemReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_InvoiceReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_PaymentReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ProductReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ProfitAndLossReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_PurchaseOrderReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_QuoteItemReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_QuoteReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_RecurringExpenseReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_RecurringInvoiceReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_String: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_String_and_legacy_FormColorPicker: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_Locale: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_PopupMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_String_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TargetPlatform_and_nullable_PageTransitionsBuilder: findType("MappedListIterable"), MappedListIterable_of_legacy_TaskReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String_2: findType("MappedListIterable"), MappedListIterable_of_legacy_Widget_and_legacy_Expanded: findType("MappedListIterable"), MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_int_and_legacy_PopupMenuItem_legacy_int: findType("MappedListIterable*>"), MaterialBannerTheme: findType("MaterialBannerTheme"), MaterialGap: findType("MaterialGap"), MaterialLocalizations: findType("MaterialLocalizations"), MaterialRouteTransitionMixin_dynamic: findType("MaterialRouteTransitionMixin<@>"), MaterialSlice: findType("MaterialSlice"), MaterialState: findType("MaterialState"), MaterialTapTargetSize: findType("MaterialTapTargetSize"), Matrix4: findType("Matrix4"), MediaQuery: findType("MediaQuery"), MediaQueryListEvent: findType("MediaQueryListEvent"), MenuItem: findType("MenuItem"), MergeableMaterialItem: findType("MergeableMaterialItem"), MessagePort: findType("MessagePort"), ModifierKey: findType("ModifierKey"), MouseCursor: findType("MouseCursor0"), MouseCursorSession: findType("MouseCursorSession"), MouseEvent: findType("MouseEvent"), MouseTrackerAnnotation: findType("MouseTrackerAnnotation"), MultiChildLayoutParentData: findType("MultiChildLayoutParentData"), MultiChildRenderObjectWidget: findType("MultiChildRenderObjectWidget"), MultiDragPointerState: findType("MultiDragPointerState"), MutableSelectionModel_DateTime: findType("MutableSelectionModel"), MutableSelectionModel_String: findType("MutableSelectionModel"), MutationObserver: findType("MutationObserver"), MutationRecord: findType("MutationRecord"), Mutator: findType("Mutator"), NativeByteBuffer: findType("NativeByteBuffer"), NativeTypedArrayOfDouble: findType("NativeTypedArrayOfDouble"), NativeTypedArrayOfInt: findType("NativeTypedArrayOfInt"), NativeTypedData: findType("NativeTypedData"), NativeUint8List: findType("NativeUint8List"), NavigatorState: findType("NavigatorState"), NoSuchMethodError: findType("NoSuchMethodError"), Node: findType("Node1"), Node_2: findType("Node0"), Node_3: findType("Node"), Node_4: findType("Node2"), NotificationListener_DraggableScrollableNotification: findType("NotificationListener"), NotificationListener_KeepAliveNotification: findType("NotificationListener"), NotificationListener_LayoutChangedNotification: findType("NotificationListener"), NotificationListener_OverscrollIndicatorNotification: findType("NotificationListener"), NotificationListener_ScrollMetricsNotification: findType("NotificationListener"), NotificationListener_ScrollNotification: findType("NotificationListener"), NotificationListener_ScrollUpdateNotification: findType("NotificationListener"), NotoFont: findType("NotoFont"), Null: findType("Null"), NumericAxis: findType("NumericAxis"), Object: findType("Object"), ObserverList__ParentInkResponseState: findType("ObserverList<_ParentInkResponseState>"), ObserverList_of_void_Function: findType("ObserverList<~()>"), ObserverList_of_void_Function_Action_Intent: findType("ObserverList<~(Action)>"), ObserverList_of_void_Function_AnimationStatus: findType("ObserverList<~(AnimationStatus)>"), Offset: findType("Offset"), OffsetLayer: findType("OffsetLayer"), OneSequenceGestureRecognizer: findType("OneSequenceGestureRecognizer"), OrdinalScale: findType("OrdinalScale"), OutlinedButtonTheme: findType("OutlinedButtonTheme"), OverflowViewParentData: findType("OverflowViewParentData"), OverlayEntry: findType("OverlayEntry"), OverlayState: findType("OverlayState"), Padding: findType("Padding"), PageMetrics: findType("PageMetrics"), PageRoute_dynamic: findType("PageRoute<@>"), PageStorage: findType("PageStorage"), Paint: findType("Paint"), Pair_of_String_and_nullable_String: findType("Pair"), Pair_of_legacy_String_and_legacy_String: findType("Pair"), Pair_of_nullable_String_and_nullable_String: findType("Pair"), ParagraphNode: findType("ParagraphNode"), ParentDataWidget_KeepAliveParentDataMixin: findType("ParentDataWidget"), ParentDataWidget_ParentData: findType("ParentDataWidget"), ParseErrorToken: findType("ParseErrorToken"), Path: findType("Path"), PathElement: findType("PathElement"), Pattern: findType("Pattern"), PdfJsDoc: findType("PdfJsDoc"), PdfJsPage: findType("PdfJsPage"), PdfPreviewController: findType("PdfPreviewController"), PdfRaster: findType("PdfRaster"), Permission: findType("Permission"), PermissionStatus: findType("PermissionStatus0"), PersistedContainerSurface: findType("PersistedContainerSurface"), PersistedPlatformView: findType("PersistedPlatformView"), PersistedScene: findType("PersistedScene"), PersistedSurface: findType("PersistedSurface"), PhysicalKeyboardKey: findType("PhysicalKeyboardKey"), PlaceholderDimensions: findType("PlaceholderDimensions"), PlatformFile: findType("PlatformFile"), Point_double: findType("Point"), Point_num: findType("Point"), PointerAddedEvent: findType("PointerAddedEvent"), PointerCancelEvent: findType("PointerCancelEvent"), PointerDataPacket: findType("PointerDataPacket"), PointerDeviceKind: findType("PointerDeviceKind"), PointerDownEvent: findType("PointerDownEvent"), PointerEvent: findType("PointerEvent0"), PointerEventResampler: findType("PointerEventResampler"), PointerEvent_2: findType("PointerEvent"), PointerHoverEvent: findType("PointerHoverEvent"), PointerMoveEvent: findType("PointerMoveEvent"), PointerRemovedEvent: findType("PointerRemovedEvent"), PointerScrollEvent: findType("PointerScrollEvent"), PointerSignalEvent: findType("PointerSignalEvent"), PointerUpEvent: findType("PointerUpEvent"), PopupMenuTheme: findType("PopupMenuTheme"), PrimaryScrollController: findType("PrimaryScrollController"), PrimitiveSerializer_dynamic: findType("PrimitiveSerializer<@>"), PrintingInfo: findType("PrintingInfo"), ProgressEvent: findType("ProgressEvent"), ProgressIndicatorTheme: findType("ProgressIndicatorTheme"), ProseTextBlock: findType("ProseTextBlock"), ProxyWidget: findType("ProxyWidget"), QueueItem: findType("QueueItem"), RadioListTile_legacy_String: findType("RadioListTile"), RadioTheme: findType("RadioTheme"), RandomAccessFile: findType("RandomAccessFile"), RawAutocomplete_legacy_ProductEntity: findType("RawAutocomplete"), RawAutocomplete_legacy_SelectableEntity: findType("RawAutocomplete"), RawAutocomplete_legacy_String: findType("RawAutocomplete"), RawScrollbar: findType("RawScrollbar"), Rectangle_num: findType("Rectangle"), RegExp: findType("RegExp"), RenderAbsorbPointer: findType("RenderAbsorbPointer"), RenderAbstractViewport: findType("RenderAbstractViewport"), RenderBox: findType("RenderBox"), RenderCustomMultiChildLayoutBox: findType("RenderCustomMultiChildLayoutBox"), RenderEditable: findType("RenderEditable"), RenderIgnorePointer: findType("RenderIgnorePointer"), RenderLayoutAwareParagraph: findType("RenderLayoutAwareParagraph"), RenderObject: findType("RenderObject"), RenderObjectToWidgetAdapter_RenderBox: findType("RenderObjectToWidgetAdapter"), RenderObjectWidget: findType("RenderObjectWidget"), RenderObjectWithChildMixin_RenderObject: findType("RenderObjectWithChildMixin"), RenderPointerListener: findType("RenderPointerListener"), RenderSemanticsGestureHandler: findType("RenderSemanticsGestureHandler"), RenderSliver: findType("RenderSliver"), RenderSliverFloatingPersistentHeader: findType("RenderSliverFloatingPersistentHeader"), RenderSliverMultiBoxAdaptor: findType("RenderSliverMultiBoxAdaptor"), RenderSuperTextLayout: findType("RenderSuperTextLayout"), RenderTable: findType("RenderTable"), RenderViewport: findType("RenderViewport"), ReplaceTextIntent: findType("ReplaceTextIntent"), Response: findType("Response"), RestorableNum_int: findType("RestorableNum"), RestorableProperty_nullable_Object: findType("RestorableProperty"), RestorationBucket: findType("RestorationBucket"), ReverseTween_nullable_Rect: findType("ReverseTween"), ReversedListIterable_String: findType("ReversedListIterable"), ReversedListIterable_Widget: findType("ReversedListIterable"), ReversedListIterable__SemanticsSortGroup: findType("ReversedListIterable<_SemanticsSortGroup>"), ReversedListIterable_legacy_NamedAttribution: findType("ReversedListIterable"), ReversedListIterable_of_dynamic_Function_dynamic: findType("ReversedListIterable<@(@)>"), Role: findType("Role"), RoutePopDisposition: findType("RoutePopDisposition"), Route_dynamic_Function_2_BuildContext_and_nullable_Object: findType("Route<@>(BuildContext,Object?)"), SaveClipEntry: findType("SaveClipEntry"), ScaffoldFeatureController_MaterialBanner_MaterialBannerClosedReason: findType("ScaffoldFeatureController"), ScaffoldFeatureController_SnackBar_SnackBarClosedReason: findType("ScaffoldFeatureController"), ScaffoldState: findType("ScaffoldState"), ScriptElement: findType("ScriptElement0"), ScrollAwareImageProvider_Object: findType("ScrollAwareImageProvider"), ScrollConfiguration: findType("ScrollConfiguration"), ScrollNotificationObserverState: findType("ScrollNotificationObserverState"), ScrollPosition: findType("ScrollPosition"), ScrollbarPainter: findType("ScrollbarPainter"), SelectionModelConfig_legacy_DateTime: findType("SelectionModelConfig"), SelectionModelType: findType("SelectionModelType"), SelectorExpression: findType("SelectorExpression"), SemanticsAction: findType("SemanticsAction"), SemanticsNode: findType("SemanticsNode"), SemanticsObject: findType("SemanticsObject"), SemanticsTag: findType("SemanticsTag"), SerializerPlugin: findType("SerializerPlugin"), Serializer_dynamic: findType("Serializer<@>"), SeriesLegend_legacy_DateTime: findType("SeriesLegend"), SeriesRenderer_DateTime: findType("SeriesRenderer"), SeriesRenderer_String: findType("SeriesRenderer"), ServiceExtensionResponse: findType("ServiceExtensionResponse"), SetBuilder_dynamic: findType("SetBuilder<@>"), SetEquality_dynamic: findType("SetEquality<@>"), SetMultimapBuilder_dynamic_dynamic: findType("SetMultimapBuilder<@,@>"), Set_RouteAware: findType("Set"), Set_String: findType("Set"), Set_dynamic: findType("Set<@>"), ShapeBorder: findType("ShapeBorder"), ShapeBorderClipper: findType("ShapeBorderClipper"), SharedPreferences: findType("SharedPreferences"), SignInResponseI: findType("SignInResponseI"), SimpleDelimiter: findType("SimpleDelimiter"), SingleChildRenderObjectWidget: findType("SingleChildRenderObjectWidget"), SingleColumnLayoutComponentViewModel: findType("SingleColumnLayoutComponentViewModel"), SingleColumnLayoutPresenterChangeListener: findType("SingleColumnLayoutPresenterChangeListener"), Size: findType("Size"), SkiaObjectBox_CkImage_SkImage: findType("SkiaObjectBox"), SkipWhileIterable_String: findType("SkipWhileIterable"), SlidableAutoCloseBarrierNotification: findType("SlidableAutoCloseBarrierNotification"), SlidableAutoCloseNotification: findType("SlidableAutoCloseNotification"), SlidableGroupBehaviorListener_SlidableAutoCloseBarrierNotification: findType("SlidableGroupBehaviorListener"), SlidableGroupBehaviorListener_SlidableAutoCloseNotification: findType("SlidableGroupBehaviorListener"), SliverConstraints: findType("SliverConstraints"), SliverGridParentData: findType("SliverGridParentData"), SliverLogicalParentData: findType("SliverLogicalParentData"), SliverMultiBoxAdaptorElement: findType("SliverMultiBoxAdaptorElement"), SliverMultiBoxAdaptorParentData: findType("SliverMultiBoxAdaptorParentData"), SliverMultiBoxAdaptorWidget: findType("SliverMultiBoxAdaptorWidget"), SliverPhysicalParentData: findType("SliverPhysicalParentData"), SliverReorderableListState: findType("SliverReorderableListState"), SourceLocation: findType("SourceLocation"), SourceSpan: findType("SourceSpan"), SourceSpanWithContext: findType("SourceSpanWithContext"), SpaceCharactersToken: findType("SpaceCharactersToken"), SpanMarker: findType("SpanMarker"), SpanRange: findType("SpanRange"), StackParentData: findType("StackParentData"), StackTrace: findType("StackTrace"), StartTagToken: findType("StartTagToken"), StateBuilderBase__OnWidget_Widget: findType("StateBuilderBase<_OnWidget>"), StatefulElement: findType("StatefulElement"), StatefulWidget: findType("StatefulWidget"), StatelessWidget: findType("StatelessWidget"), StoreProvider_legacy_AppState: findType("StoreProvider"), Store_legacy_AppState: findType("Store"), StreamedResponse: findType("StreamedResponse"), String: findType("String"), StringAttribute: findType("StringAttribute"), StringToken: findType("StringToken"), StructuredSerializer_dynamic: findType("StructuredSerializer<@>"), StyledToastTheme: findType("StyledToastTheme"), SurfacePaint: findType("SurfacePaint"), SurfacePath: findType("SurfacePath"), SurfaceScene: findType("SurfaceScene"), SvgElement: findType("SvgElement"), SvgSvgElement: findType("SvgSvgElement"), SwitchTheme: findType("SwitchTheme"), Symbol: findType("Symbol0"), SynchronousFuture_AssetBundleImageKey: findType("SynchronousFuture"), SynchronousFuture_CachedNetworkImageProvider: findType("SynchronousFuture"), SynchronousFuture_CupertinoLocalizations: findType("SynchronousFuture"), SynchronousFuture_Map_Type_dynamic: findType("SynchronousFuture>"), SynchronousFuture_MaterialLocalizations: findType("SynchronousFuture"), SynchronousFuture_NetworkImage: findType("SynchronousFuture"), SynchronousFuture_WidgetsLocalizations: findType("SynchronousFuture"), SynchronousFuture_legacy_AppLocalization: findType("SynchronousFuture"), SynchronousFuture_nullable_Map_of_String_and_List_String: findType("SynchronousFuture>?>"), SynchronousFuture_nullable_RestorationBucket: findType("SynchronousFuture"), SystemMouseCursor: findType("SystemMouseCursor"), SystemUiOverlayStyle: findType("SystemUiOverlayStyle"), Table: findType("Table"), TableCellParentData: findType("TableCellParentData"), TableColumnWidth: findType("TableColumnWidth"), TableRow: findType("TableRow"), TagToken: findType("TagToken"), TemplateElement: findType("TemplateElement"), Text: findType("Text0"), TextAreaElement: findType("TextAreaElement"), TextBaseline: findType("TextBaseline"), TextButtonTheme: findType("TextButtonTheme"), TextComponentViewModel: findType("TextComponentViewModel"), TextComposable: findType("TextComposable"), TextEditingValue: findType("TextEditingValue"), TextFormField: findType("TextFormField"), TextNode: findType("TextNode"), TextNodePosition: findType("TextNodePosition"), TextPainter: findType("TextPainter"), TextParentData: findType("TextParentData"), TextPosition: findType("TextPosition"), TextRange: findType("TextRange"), TextSelection: findType("TextSelection"), TextSelectionTheme: findType("TextSelectionTheme"), TextSpan: findType("TextSpan"), TextStyle: findType("TextStyle"), TextStyle_Function_2_Set_Attribution_and_TextStyle: findType("TextStyle(Set,TextStyle)"), ThemeData: findType("ThemeData"), ThemeDataTween: findType("ThemeDataTween"), ThemeExtension_ThemeExtension_dynamic: findType("ThemeExtension>"), ThemeExtension_dynamic: findType("ThemeExtension<@>"), TimeOfDay: findType("TimeOfDay"), TimePickerTheme: findType("TimePickerTheme"), TimeTickFormatter: findType("TimeTickFormatter"), Timer: findType("Timer"), ToastFuture: findType("ToastFuture"), ToggleButtonsTheme: findType("ToggleButtonsTheme"), TooltipTheme: findType("TooltipTheme"), TouchEvent: findType("TouchEvent"), TweenSequenceItem_double: findType("TweenSequenceItem"), Tween_Offset: findType("Tween"), Tween_double: findType("Tween"), Type: findType("Type"), TypeError: findType("TypeError"), TypedData: findType("TypedData"), TypedKey_nullable_Object: findType("TypedKey"), TypedMiddleware_of_legacy_AppState_and_legacy_AcceptPurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_AddCompany: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_AddPurchaseOrdersToInventoryRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ApprovePurchaseOrders: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ApproveQuotes: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailPurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_CancelInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_CancelPurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ClearPersistedData: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConnecGmailUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConnecOAuthUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConvertPurchaseOrdersToExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConvertQuotes: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeletePurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DisableTwoFactorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DisconnectCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadDocumentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadPurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditPurchaseOrder: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailPaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailPurchaseOrderRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailQuoteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadAccountSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadClients: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateways: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredits: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesigns: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocuments: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategories: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroups: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoices: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerms: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayments: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProducts: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProjects: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPurchaseOrder: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPurchaseOrders: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuotes: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpenses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoices: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadStateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscriptions: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatuses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTasks: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRates: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTokens: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadUsers: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendors: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhooks: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkCreditsPaidRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesPaidRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesSentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkPurchaseOrdersSentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MergeClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_OAuthLoginRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_OAuthSignUpRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistData: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistPrefs: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistStatic: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistUI: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PurgeClientRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PurgeDataRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RecoverPasswordRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefreshData: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefreshDataSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefundPaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RemoveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ResendConfirmation: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ResendInviteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestorePurchaseOrdersRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveAuthUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveDesignRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseCategoryRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentTermRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePurchaseOrderDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePurchaseOrderRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveSubscriptionRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskStatusRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTokenRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserSettingsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveWebhookRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SendNowRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SetDefaultCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailPurchaseOrder: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfPurchaseOrder: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SortTasksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StartTasksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StopTasksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UploadLogoRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLogout: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLogoutAll: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserSignUpRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewClientList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGatewayList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCreditList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDashboard: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesignList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocumentList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategoryList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroupList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoiceList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewMainScreen: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTermList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProductList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProjectList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPurchaseOrder: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPurchaseOrderList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuoteList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpenseList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoiceList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRefundPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewReports: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSettings: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscriptionList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatusList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRateList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTokenList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewUserList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendorList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhookList: findType("TypedMiddleware"), Uint8List: findType("Uint8List"), UnicodePropertyLookup_LineCharProperty: findType("UnicodePropertyLookup"), UnicodeRange_legacy_TextDirection: findType("UnicodeRange"), UnknownJavaScriptObject: findType("UnknownJavaScriptObject"), UnmanagedRestorationScope: findType("UnmanagedRestorationScope"), UnmodifiableListView_nullable_Object: findType("UnmodifiableListView"), UnmodifiableMapView_String_String: findType("UnmodifiableMapView"), UnmodifiableMapView_of_String_and_nullable_Object: findType("UnmodifiableMapView"), UnorderedIterableEquality_dynamic: findType("UnorderedIterableEquality<@>"), UpdateSelectionIntent: findType("UpdateSelectionIntent"), UpstreamDownstreamNodeSelection: findType("UpstreamDownstreamNodeSelection"), Uri: findType("Uri"), ValueKey_ConnectionState: findType("ValueKey"), ValueKey_DateTime: findType("ValueKey"), ValueKey_ImageProvider_Object: findType("ValueKey>"), ValueKey_Key: findType("ValueKey"), ValueKey_Object: findType("ValueKey"), ValueKey_String: findType("ValueKey"), ValueKey_int: findType("ValueKey"), ValueKey_legacy_CrossFadeState: findType("ValueKey"), ValueKey_legacy_String: findType("ValueKey"), ValueKey_legacy_int: findType("ValueKey"), ValueKey_nullable_Object: findType("ValueKey"), ValueKey_nullable_int: findType("ValueKey"), ValueLayoutBuilder_int: findType("ValueLayoutBuilder"), ValueNotifier_ActionPaneType: findType("ValueNotifier"), ValueNotifier_ImeConfiguration: findType("ValueNotifier"), ValueNotifier_List_UserSelection: findType("ValueNotifier>"), ValueNotifier_MouseCursor: findType("ValueNotifier"), ValueNotifier_bool: findType("ValueNotifier"), ValueNotifier_double: findType("ValueNotifier"), ValueNotifier_int: findType("ValueNotifier"), ValueNotifier_legacy_Offset: findType("ValueNotifier"), ValueNotifier_nullable_DocumentSelection: findType("ValueNotifier"), ValueNotifier_nullable_EndGesture: findType("ValueNotifier"), ValueNotifier_nullable_Object: findType("ValueNotifier"), ValueNotifier_nullable_Offset: findType("ValueNotifier"), ValueNotifier_nullable_ResizeRequest: findType("ValueNotifier"), ValueNotifier_nullable_String: findType("ValueNotifier"), ValueNotifier_nullable_int: findType("ValueNotifier"), VelocityTracker: findType("VelocityTracker"), Viewport: findType("Viewport"), ViewportNotificationMixin: findType("ViewportNotificationMixin"), VisualDensity: findType("VisualDensity"), WheelEvent: findType("WheelEvent"), WhereIterable_String: findType("WhereIterable"), WhereIterable_legacy_CompanyEntity: findType("WhereIterable"), WhereIterable_legacy_EntityType: findType("WhereIterable"), WhereIterable_legacy_String: findType("WhereIterable"), WhereIterable_legacy__TextType: findType("WhereIterable<_TextType*>"), WhereTypeIterable_Element: findType("WhereTypeIterable"), WhereTypeIterable_StackFrame: findType("WhereTypeIterable"), WhereTypeIterable_String: findType("WhereTypeIterable"), WhereTypeIterable_nullable_MetaElement: findType("WhereTypeIterable"), WhereTypeIterable_of_void_Function_2_Object_and_nullable_StackTrace: findType("WhereTypeIterable<~(Object,StackTrace?)>"), WhereTypeIterable_of_void_Function_ImageChunkEvent: findType("WhereTypeIterable<~(ImageChunkEvent)>"), WhereTypeIterator_Element: findType("WhereTypeIterator"), WhereTypeIterator_FocusScopeNode: findType("WhereTypeIterator"), Widget: findType("Widget"), WidgetLayoutDelegate: findType("WidgetLayoutDelegate"), WidgetSpan: findType("WidgetSpan"), WidgetsBindingObserver: findType("WidgetsBindingObserver"), WidgetsLocalizations: findType("WidgetsLocalizations"), Window: findType("Window"), WorkerGlobalScope: findType("WorkerGlobalScope"), WrapParentData: findType("WrapParentData"), XFile: findType("XFile"), _ActionPaneScope: findType("_ActionPaneScope"), _ActionsMarker: findType("_ActionsMarker"), _AsyncBroadcastStreamController_FileResponse: findType("_AsyncBroadcastStreamController"), _AsyncBroadcastStreamController_legacy_AppState: findType("_AsyncBroadcastStreamController"), _AsyncCompleter_AssetBundleImageKey: findType("_AsyncCompleter"), _AsyncCompleter_Blob: findType("_AsyncCompleter"), _AsyncCompleter_CanvasKit: findType("_AsyncCompleter"), _AsyncCompleter_FrameInfo: findType("_AsyncCompleter"), _AsyncCompleter_HttpRequest: findType("_AsyncCompleter"), _AsyncCompleter_Image: findType("_AsyncCompleter"), _AsyncCompleter_List_XFile: findType("_AsyncCompleter>"), _AsyncCompleter_Null: findType("_AsyncCompleter"), _AsyncCompleter_SharedPreferences: findType("_AsyncCompleter"), _AsyncCompleter_StreamedResponse: findType("_AsyncCompleter"), _AsyncCompleter_Uint8List: findType("_AsyncCompleter"), _AsyncCompleter_bool: findType("_AsyncCompleter"), _AsyncCompleter_dynamic: findType("_AsyncCompleter<@>"), _AsyncCompleter_legacy_ClientEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_CompanyGatewayEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_DocumentEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ExpenseCategoryEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ExpenseEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_GroupEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_InvoiceEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_PaymentEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_PaymentTermEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ProductEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ProjectEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_SelectableEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_SubscriptionEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaskEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaskStatusEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaxRateEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TokenEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_UserEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_VendorEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_WebhookEntity: findType("_AsyncCompleter"), _AsyncCompleter_nullable_ByteData: findType("_AsyncCompleter"), _AsyncCompleter_nullable_CacheObject: findType("_AsyncCompleter"), _AsyncCompleter_nullable_List_PlatformFile: findType("_AsyncCompleter?>"), _AsyncCompleter_nullable_RestorationBucket: findType("_AsyncCompleter"), _AsyncCompleter_void: findType("_AsyncCompleter<~>"), _Attr: findType("_Attr"), _AutofillScope: findType("_AutofillScope"), _BuiltMap_dynamic_dynamic: findType("_BuiltMap<@,@>"), _ButtonSanitizer: findType("_ButtonSanitizer"), _CachedImage: findType("_CachedImage"), _ChildEntry: findType("_ChildEntry"), _ChildNodeListLazy: findType("_ChildNodeListLazy"), _CombiningGestureArenaMember: findType("_CombiningGestureArenaMember"), _DecorationSlot: findType("_DecorationSlot"), _DeleteTextAction_DeleteCharacterIntent: findType("_DeleteTextAction"), _DeleteTextAction_DeleteToLineBreakIntent: findType("_DeleteTextAction"), _DeleteTextAction_DeleteToNextWordBoundaryIntent: findType("_DeleteTextAction"), _DetailArguments: findType("_DetailArguments"), _DirectionalPolicyData: findType("_DirectionalPolicyData"), _DraggableScrollableSheetScrollPosition: findType("_DraggableScrollableSheetScrollPosition"), _EffectiveTickerMode: findType("_EffectiveTickerMode"), _ElementEventStreamImpl_legacy_Event: findType("_ElementEventStreamImpl"), _ElementEventStreamImpl_legacy_KeyboardEvent: findType("_ElementEventStreamImpl"), _ElementEventStreamImpl_legacy_MouseEvent: findType("_ElementEventStreamImpl"), _EventStream_legacy_ProgressEvent: findType("_EventStream"), _FlexEntranceTransitionParentData: findType("_FlexEntranceTransitionParentData"), _FocusMarker: findType("_FocusMarker"), _FocusTraversalGroupInfo: findType("_FocusTraversalGroupInfo"), _FocusTraversalGroupMarker: findType("_FocusTraversalGroupMarker"), _FocusedDate: findType("_FocusedDate"), _FormScope: findType("_FormScope"), _FrameCallbackEntry: findType("_FrameCallbackEntry"), _FrozenElementList_Element: findType("_FrozenElementList"), _Future_AssetBundleImageKey: findType("_Future"), _Future_Blob: findType("_Future"), _Future_CanvasKit: findType("_Future"), _Future_FrameInfo: findType("_Future"), _Future_HttpRequest: findType("_Future"), _Future_Image: findType("_Future"), _Future_List_XFile: findType("_Future>"), _Future_Null: findType("_Future"), _Future_SharedPreferences: findType("_Future"), _Future_StreamedResponse: findType("_Future"), _Future_Uint8List: findType("_Future"), _Future_bool: findType("_Future"), _Future_dynamic: findType("_Future<@>"), _Future_int: findType("_Future"), _Future_legacy_ClientEntity: findType("_Future"), _Future_legacy_CompanyGatewayEntity: findType("_Future"), _Future_legacy_DocumentEntity: findType("_Future"), _Future_legacy_ExpenseCategoryEntity: findType("_Future"), _Future_legacy_ExpenseEntity: findType("_Future"), _Future_legacy_GroupEntity: findType("_Future"), _Future_legacy_InvoiceEntity: findType("_Future"), _Future_legacy_PaymentEntity: findType("_Future"), _Future_legacy_PaymentTermEntity: findType("_Future"), _Future_legacy_ProductEntity: findType("_Future"), _Future_legacy_ProjectEntity: findType("_Future"), _Future_legacy_SelectableEntity: findType("_Future"), _Future_legacy_SubscriptionEntity: findType("_Future"), _Future_legacy_TaskEntity: findType("_Future"), _Future_legacy_TaskStatusEntity: findType("_Future"), _Future_legacy_TaxRateEntity: findType("_Future"), _Future_legacy_TokenEntity: findType("_Future"), _Future_legacy_UserEntity: findType("_Future"), _Future_legacy_VendorEntity: findType("_Future"), _Future_legacy_WebhookEntity: findType("_Future"), _Future_nullable_ByteData: findType("_Future"), _Future_nullable_CacheObject: findType("_Future"), _Future_nullable_List_PlatformFile: findType("_Future?>"), _Future_nullable_RestorationBucket: findType("_Future"), _Future_void: findType("_Future<~>"), _GestureArena: findType("_GestureArena"), _HeroFlight: findType("_HeroFlight"), _HeroState: findType("_HeroState"), _Highlight: findType("_Highlight"), _HighlightType: findType("_HighlightType"), _IdentityHashMap_dynamic_dynamic: findType("_IdentityHashMap<@,@>"), _InheritedCupertinoTheme: findType("_InheritedCupertinoTheme"), _InheritedResetNotifier: findType("_InheritedResetNotifier"), _InheritedTheme: findType("_InheritedTheme"), _InterestingSemanticsFragment: findType("_InterestingSemanticsFragment"), _IntrinsicDimensionsCacheEntry: findType("_IntrinsicDimensionsCacheEntry"), _LicenseData: findType("_LicenseData"), _ListTileSlot: findType("_ListTileSlot"), _ListenerEntry: findType("_ListenerEntry"), _LiveImage: findType("_LiveImage"), _LocalizationsScope: findType("_LocalizationsScope"), _MapEntry: findType("_MapEntry"), _MasterDetailFlowState: findType("_MasterDetailFlowState"), _MasterDetailScaffoldState: findType("_MasterDetailScaffoldState"), _MaterialStatePropertyAll_BorderSide: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_Color: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_EdgeInsetsGeometry: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_OutlinedBorder: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_Size: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_TextStyle: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_double: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_nullable_TextStyle: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyWith_Color: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_MouseCursor: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_bool: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_double: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_nullable_Color: findType("_MaterialStatePropertyWith"), _ModalScopeStatus: findType("_ModalScopeStatus"), _MouseState: findType("_MouseState"), _NavigatorObservation: findType("_NavigatorObservation"), _OnWidget_Widget: findType("_OnWidget"), _OverflowBarParentData: findType("_OverflowBarParentData"), _PagePosition: findType("_PagePosition"), _ParentInkResponseProvider: findType("_ParentInkResponseProvider"), _PendingImage: findType("_PendingImage"), _PointerState: findType("_PointerState"), _Range_num: findType("_Range"), _ReadingOrderDirectionalGroupData: findType("_ReadingOrderDirectionalGroupData"), _ReadingOrderSortData: findType("_ReadingOrderSortData"), _RenderColoredBox: findType("_RenderColoredBox"), _RenderInkFeatures: findType("_RenderInkFeatures"), _RenderMergeableMaterialListBody: findType("_RenderMergeableMaterialListBody"), _RenderOverflowBar: findType("_RenderOverflowBar"), _RenderSliverPersistentHeaderForWidgetsMixin: findType("_RenderSliverPersistentHeaderForWidgetsMixin"), _RenderTheatre: findType("_RenderTheatre"), _ReorderableItemState: findType("_ReorderableItemState"), _ResolvedNotoSubset: findType("_ResolvedNotoSubset"), _RouteEntry: findType("_RouteEntry"), _SaltedKey_BuildContext_int: findType("_SaltedKey"), _ScaffoldMessengerScope: findType("_ScaffoldMessengerScope"), _ScaffoldScope: findType("_ScaffoldScope"), _ScrollNotificationObserverScope: findType("_ScrollNotificationObserverScope"), _ScrollableScope: findType("_ScrollableScope"), _ShortcutsMarker: findType("_ShortcutsMarker"), _SlidableAutoCloseData: findType("_SlidableAutoCloseData"), _SlidableControllerScope: findType("_SlidableControllerScope"), _SlidableNotificationListenerScope: findType("_SlidableNotificationListenerScope"), _SliverPersistentHeaderRenderObjectWidget: findType("_SliverPersistentHeaderRenderObjectWidget"), _StoredMessage: findType("_StoredMessage"), _StreamIterator_FileResponse: findType("_StreamIterator"), _StreamIterator_PdfRaster: findType("_StreamIterator"), _StreamIterator_int: findType("_StreamIterator"), _SuperTextLayoutParentData: findType("_SuperTextLayoutParentData"), _TabControllerScope: findType("_TabControllerScope"), _TapTracker: findType("_TapTracker"), _TapTracker_2: findType("_TapTracker0"), _TextFormFieldState: findType("_TextFormFieldState"), _TooltipVisibilityScope: findType("_TooltipVisibilityScope"), _UndoStack_TextEditingValue: findType("_UndoStack"), _UnmodifiableSet_legacy_MaterialState: findType("_UnmodifiableSet"), _UnmodifiableSet_legacy_String: findType("_UnmodifiableSet"), _UpdateTextSelectionToAdjacentLineAction_ExtendSelectionVerticallyToAdjacentLineIntent: findType("_UpdateTextSelectionToAdjacentLineAction"), _ValueNotifier_nullable_DismissGesture: findType("_ValueNotifier"), _WidgetTicker: findType("_WidgetTicker"), _Wrapper_FileResponse: findType("_Wrapper"), bool: findType("bool"), double: findType("double"), dynamic: findType("@"), dynamic_Function: findType("@()"), dynamic_Function_Event: findType("@(Event)"), dynamic_Function_Object: findType("@(Object)"), dynamic_Function_Object_StackTrace: findType("@(Object,StackTrace)"), int: findType("int"), legacy_AcceptPurchaseOrdersRequest: findType("AcceptPurchaseOrdersRequest*"), legacy_AccountEntity: findType("AccountEntity*"), legacy_AccountManagementVM: findType("AccountManagementVM*"), legacy_Action_legacy_Intent: findType("Action*"), legacy_ActivityEntity: findType("ActivityEntity*"), legacy_AddCompany: findType("AddCompany*"), legacy_AddPurchaseOrdersToInventoryRequest: findType("AddPurchaseOrdersToInventoryRequest*"), legacy_AlertDialog: findType("AlertDialog*"), legacy_AppBuilderState: findType("AppBuilderState*"), legacy_AppDrawerVM: findType("AppDrawerVM*"), legacy_AppLayout: findType("AppLayout*"), legacy_AppLocalization: findType("AppLocalization*"), legacy_AppSidebarMode: findType("AppSidebarMode*"), legacy_AppState: findType("AppState*"), legacy_ApprovePurchaseOrders: findType("ApprovePurchaseOrders*"), legacy_ApproveQuotes: findType("ApproveQuotes*"), legacy_ArchiveClientsRequest: findType("ArchiveClientsRequest*"), legacy_ArchiveCompanyGatewayRequest: findType("ArchiveCompanyGatewayRequest*"), legacy_ArchiveCreditsRequest: findType("ArchiveCreditsRequest*"), legacy_ArchiveDesignsRequest: findType("ArchiveDesignsRequest*"), legacy_ArchiveDocumentRequest: findType("ArchiveDocumentRequest*"), legacy_ArchiveExpenseCategoriesRequest: findType("ArchiveExpenseCategoriesRequest*"), legacy_ArchiveExpenseRequest: findType("ArchiveExpenseRequest*"), legacy_ArchiveGroupRequest: findType("ArchiveGroupRequest*"), legacy_ArchiveInvoicesRequest: findType("ArchiveInvoicesRequest*"), legacy_ArchivePaymentTermsRequest: findType("ArchivePaymentTermsRequest*"), legacy_ArchivePaymentsRequest: findType("ArchivePaymentsRequest*"), legacy_ArchiveProductsRequest: findType("ArchiveProductsRequest*"), legacy_ArchiveProjectRequest: findType("ArchiveProjectRequest*"), legacy_ArchivePurchaseOrdersRequest: findType("ArchivePurchaseOrdersRequest*"), legacy_ArchiveQuotesRequest: findType("ArchiveQuotesRequest*"), legacy_ArchiveRecurringExpensesRequest: findType("ArchiveRecurringExpensesRequest*"), legacy_ArchiveRecurringInvoicesRequest: findType("ArchiveRecurringInvoicesRequest*"), legacy_ArchiveSubscriptionsRequest: findType("ArchiveSubscriptionsRequest*"), legacy_ArchiveTaskRequest: findType("ArchiveTaskRequest*"), legacy_ArchiveTaskStatusesRequest: findType("ArchiveTaskStatusesRequest*"), legacy_ArchiveTaxRateRequest: findType("ArchiveTaxRateRequest*"), legacy_ArchiveTokensRequest: findType("ArchiveTokensRequest*"), legacy_ArchiveUserRequest: findType("ArchiveUserRequest*"), legacy_ArchiveVendorRequest: findType("ArchiveVendorRequest*"), legacy_ArchiveWebhooksRequest: findType("ArchiveWebhooksRequest*"), legacy_Attribution: findType("Attribution*"), legacy_AuthState: findType("AuthState*"), legacy_BaseEntity: findType("BaseEntity*"), legacy_BeforeUnloadEvent: findType("BeforeUnloadEvent*"), legacy_BelongsToClient: findType("BelongsToClient*"), legacy_BoardItem: findType("BoardItem*"), legacy_BuiltList_legacy_ClientEntity: findType("BuiltList*"), legacy_BuiltList_legacy_CompanyGatewayEntity: findType("BuiltList*"), legacy_BuiltList_legacy_DesignEntity: findType("BuiltList*"), legacy_BuiltList_legacy_DocumentEntity: findType("BuiltList*"), legacy_BuiltList_legacy_EntityState: findType("BuiltList*"), legacy_BuiltList_legacy_EntityStatus: findType("BuiltList*"), legacy_BuiltList_legacy_ExpenseCategoryEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ExpenseEntity: findType("BuiltList*"), legacy_BuiltList_legacy_GroupEntity: findType("BuiltList*"), legacy_BuiltList_legacy_InvoiceEntity: findType("BuiltList*"), legacy_BuiltList_legacy_Object: findType("BuiltList*"), legacy_BuiltList_legacy_PaymentEntity: findType("BuiltList*"), legacy_BuiltList_legacy_PaymentTermEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ProductEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ProjectEntity: findType("BuiltList*"), legacy_BuiltList_legacy_String: findType("BuiltList*"), legacy_BuiltList_legacy_SubscriptionEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaskEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaskStatusEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaxRateEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TokenEntity: findType("BuiltList*"), legacy_BuiltList_legacy_UserEntity: findType("BuiltList*"), legacy_BuiltList_legacy_VendorEntity: findType("BuiltList*"), legacy_BuiltList_legacy_WebhookEntity: findType("BuiltList*"), legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity: findType("BuiltMap*"), legacy_BulkEmailCreditsRequest: findType("BulkEmailCreditsRequest*"), legacy_BulkEmailInvoicesRequest: findType("BulkEmailInvoicesRequest*"), legacy_BulkEmailPurchaseOrdersRequest: findType("BulkEmailPurchaseOrdersRequest*"), legacy_BulkEmailQuotesRequest: findType("BulkEmailQuotesRequest*"), legacy_CancelInvoicesRequest: findType("CancelInvoicesRequest*"), legacy_CancelPurchaseOrdersRequest: findType("CancelPurchaseOrdersRequest*"), legacy_Card: findType("Card*"), legacy_ChartMoneyData: findType("ChartMoneyData*"), legacy_CheckboxListTile: findType("CheckboxListTile*"), legacy_ClearEntityFilter: findType("ClearEntityFilter*"), legacy_ClearEntitySelection: findType("ClearEntitySelection*"), legacy_ClientContactEntity: findType("ClientContactEntity*"), legacy_ClientEditContactsVM: findType("ClientEditContactsVM*"), legacy_ClientEditVM: findType("ClientEditVM*"), legacy_ClientEntity: findType("ClientEntity*"), legacy_ClientItemResponse: findType("ClientItemResponse*"), legacy_ClientListResponse: findType("ClientListResponse*"), legacy_ClientListVM: findType("ClientListVM*"), legacy_ClientPdfVM: findType("ClientPdfVM*"), legacy_ClientPortalVM: findType("ClientPortalVM*"), legacy_ClientReportFields: findType("ClientReportFields*"), legacy_ClientScreenVM: findType("ClientScreenVM*"), legacy_ClientState: findType("ClientState*"), legacy_ClientUIState: findType("ClientUIState*"), legacy_ClientViewVM: findType("ClientViewVM*"), legacy_Color: findType("Color*"), legacy_CompanyDetailsVM: findType("CompanyDetailsVM*"), legacy_CompanyEntity: findType("CompanyEntity*"), legacy_CompanyGatewayEditVM: findType("CompanyGatewayEditVM*"), legacy_CompanyGatewayEntity: findType("CompanyGatewayEntity*"), legacy_CompanyGatewayItemResponse: findType("CompanyGatewayItemResponse*"), legacy_CompanyGatewayListItem: findType("CompanyGatewayListItem*"), legacy_CompanyGatewayListResponse: findType("CompanyGatewayListResponse*"), legacy_CompanyGatewayListVM: findType("CompanyGatewayListVM*"), legacy_CompanyGatewayScreenVM: findType("CompanyGatewayScreenVM*"), legacy_CompanyGatewayState: findType("CompanyGatewayState*"), legacy_CompanyGatewayUIState: findType("CompanyGatewayUIState*"), legacy_CompanyGatewayViewVM: findType("CompanyGatewayViewVM*"), legacy_CompanyItemResponse: findType("CompanyItemResponse*"), legacy_CompanyPrefState: findType("CompanyPrefState*"), legacy_Completer_legacy_SelectableEntity: findType("Completer*"), legacy_ComponentBuilder: findType("ComponentBuilder*"), legacy_ConfirmEmailVM: findType("ConfirmEmailVM*"), legacy_ConnecGmailUserRequest: findType("ConnecGmailUserRequest*"), legacy_ConnecOAuthUserRequest: findType("ConnecOAuthUserRequest*"), legacy_ContactReportFields: findType("ContactReportFields*"), legacy_ContactUsDialog: findType("ContactUsDialog*"), legacy_ConvertPurchaseOrdersToExpensesRequest: findType("ConvertPurchaseOrdersToExpensesRequest*"), legacy_ConvertQuotes: findType("ConvertQuotes*"), legacy_CountryEntity: findType("CountryEntity*"), legacy_CreditCardsAndBanksVM: findType("CreditCardsAndBanksVM*"), legacy_CreditEditDetailsVM: findType("CreditEditDetailsVM*"), legacy_CreditEditItemsVM: findType("CreditEditItemsVM*"), legacy_CreditEditNotesVM: findType("CreditEditNotesVM*"), legacy_CreditEditPDFVM: findType("CreditEditPDFVM*"), legacy_CreditEditVM: findType("CreditEditVM*"), legacy_CreditListVM: findType("CreditListVM*"), legacy_CreditPdfVM: findType("CreditPdfVM*"), legacy_CreditReportFields: findType("CreditReportFields*"), legacy_CreditScreenVM: findType("CreditScreenVM*"), legacy_CreditState: findType("CreditState*"), legacy_CreditUIState: findType("CreditUIState*"), legacy_CreditViewVM: findType("CreditViewVM*"), legacy_CurrencyEntity: findType("CurrencyEntity*"), legacy_CustomFieldsVM: findType("CustomFieldsVM*"), legacy_DashboardDateRangePicker: findType("DashboardDateRangePicker*"), legacy_DashboardUISettings: findType("DashboardUISettings*"), legacy_DashboardUIState: findType("DashboardUIState*"), legacy_DashboardVM: findType("DashboardVM*"), legacy_DataCell: findType("DataCell0*"), legacy_DataColumn: findType("DataColumn0*"), legacy_DataRow: findType("DataRow0*"), legacy_DataVisualizationsVM: findType("DataVisualizationsVM*"), legacy_DateFormatEntity: findType("DateFormatEntity*"), legacy_DateRange: findType("DateRange*"), legacy_DateRangeComparison: findType("DateRangeComparison*"), legacy_DateTime: findType("DateTime*"), legacy_DatetimeFormatEntity: findType("DatetimeFormatEntity*"), legacy_DeleteClientsRequest: findType("DeleteClientsRequest*"), legacy_DeleteCompanyGatewayRequest: findType("DeleteCompanyGatewayRequest*"), legacy_DeleteCompanyRequest: findType("DeleteCompanyRequest*"), legacy_DeleteCreditsRequest: findType("DeleteCreditsRequest*"), legacy_DeleteDesignsRequest: findType("DeleteDesignsRequest*"), legacy_DeleteDocumentRequest: findType("DeleteDocumentRequest*"), legacy_DeleteExpenseCategoriesRequest: findType("DeleteExpenseCategoriesRequest*"), legacy_DeleteExpenseRequest: findType("DeleteExpenseRequest*"), legacy_DeleteGroupRequest: findType("DeleteGroupRequest*"), legacy_DeleteInvoicesRequest: findType("DeleteInvoicesRequest*"), legacy_DeletePaymentTermsRequest: findType("DeletePaymentTermsRequest*"), legacy_DeletePaymentsRequest: findType("DeletePaymentsRequest*"), legacy_DeleteProductsRequest: findType("DeleteProductsRequest*"), legacy_DeleteProjectRequest: findType("DeleteProjectRequest*"), legacy_DeletePurchaseOrdersRequest: findType("DeletePurchaseOrdersRequest*"), legacy_DeleteQuotesRequest: findType("DeleteQuotesRequest*"), legacy_DeleteRecurringExpensesRequest: findType("DeleteRecurringExpensesRequest*"), legacy_DeleteRecurringInvoicesRequest: findType("DeleteRecurringInvoicesRequest*"), legacy_DeleteSubscriptionsRequest: findType("DeleteSubscriptionsRequest*"), legacy_DeleteTaskRequest: findType("DeleteTaskRequest*"), legacy_DeleteTaskStatusesRequest: findType("DeleteTaskStatusesRequest*"), legacy_DeleteTaxRateRequest: findType("DeleteTaxRateRequest*"), legacy_DeleteTokensRequest: findType("DeleteTokensRequest*"), legacy_DeleteUserRequest: findType("DeleteUserRequest*"), legacy_DeleteVendorRequest: findType("DeleteVendorRequest*"), legacy_DeleteWebhooksRequest: findType("DeleteWebhooksRequest*"), legacy_DesignEditVM: findType("DesignEditVM*"), legacy_DesignEntity: findType("DesignEntity*"), legacy_DesignItemResponse: findType("DesignItemResponse*"), legacy_DesignListResponse: findType("DesignListResponse*"), legacy_DesignListVM: findType("DesignListVM*"), legacy_DesignScreenVM: findType("DesignScreenVM*"), legacy_DesignState: findType("DesignState*"), legacy_DesignUIState: findType("DesignUIState*"), legacy_DesignViewVM: findType("DesignViewVM*"), legacy_DeviceSettingsVM: findType("DeviceSettingsVM*"), legacy_DisableTwoFactorRequest: findType("DisableTwoFactorRequest*"), legacy_DiscardChanges: findType("DiscardChanges*"), legacy_DisconnectCompanyGatewayRequest: findType("DisconnectCompanyGatewayRequest*"), legacy_DocumentEditVM: findType("DocumentEditVM*"), legacy_DocumentEntity: findType("DocumentEntity*"), legacy_DocumentItemResponse: findType("DocumentItemResponse*"), legacy_DocumentLayout: findType("DocumentLayout*"), legacy_DocumentListResponse: findType("DocumentListResponse*"), legacy_DocumentListVM: findType("DocumentListVM*"), legacy_DocumentReportFields: findType("DocumentReportFields*"), legacy_DocumentScreenVM: findType("DocumentScreenVM*"), legacy_DocumentSelection: findType("DocumentSelection*"), legacy_DocumentState: findType("DocumentState*"), legacy_DocumentTile: findType("DocumentTile*"), legacy_DocumentUIState: findType("DocumentUIState*"), legacy_DocumentViewVM: findType("DocumentViewVM*"), legacy_DownloadCreditsRequest: findType("DownloadCreditsRequest*"), legacy_DownloadDocumentsRequest: findType("DownloadDocumentsRequest*"), legacy_DownloadInvoicesRequest: findType("DownloadInvoicesRequest*"), legacy_DownloadPurchaseOrdersRequest: findType("DownloadPurchaseOrdersRequest*"), legacy_DownloadQuotesRequest: findType("DownloadQuotesRequest*"), legacy_DropdownMenuItem_legacy_String: findType("DropdownMenuItem*"), legacy_Duration: findType("Duration*"), legacy_EditClient: findType("EditClient*"), legacy_EditCompanyGateway: findType("EditCompanyGateway*"), legacy_EditCredit: findType("EditCredit*"), legacy_EditDesign: findType("EditDesign*"), legacy_EditDocument: findType("EditDocument*"), legacy_EditExpense: findType("EditExpense*"), legacy_EditExpenseCategory: findType("EditExpenseCategory*"), legacy_EditGroup: findType("EditGroup*"), legacy_EditInvoice: findType("EditInvoice*"), legacy_EditPayment: findType("EditPayment*"), legacy_EditPaymentTerm: findType("EditPaymentTerm*"), legacy_EditProduct: findType("EditProduct*"), legacy_EditProject: findType("EditProject*"), legacy_EditPurchaseOrder: findType("EditPurchaseOrder*"), legacy_EditQuote: findType("EditQuote*"), legacy_EditRecurringExpense: findType("EditRecurringExpense*"), legacy_EditRecurringInvoice: findType("EditRecurringInvoice*"), legacy_EditSubscription: findType("EditSubscription*"), legacy_EditTask: findType("EditTask*"), legacy_EditTaskStatus: findType("EditTaskStatus*"), legacy_EditTaxRate: findType("EditTaxRate*"), legacy_EditToken: findType("EditToken*"), legacy_EditUser: findType("EditUser*"), legacy_EditVendor: findType("EditVendor*"), legacy_EditWebhook: findType("EditWebhook*"), legacy_EmailCreditRequest: findType("EmailCreditRequest*"), legacy_EmailCreditVM: findType("EmailCreditVM*"), legacy_EmailInvoiceRequest: findType("EmailInvoiceRequest*"), legacy_EmailInvoiceVM: findType("EmailInvoiceVM*"), legacy_EmailPaymentRequest: findType("EmailPaymentRequest*"), legacy_EmailPurchaseOrderRequest: findType("EmailPurchaseOrderRequest*"), legacy_EmailPurchaseOrderVM: findType("EmailPurchaseOrderVM*"), legacy_EmailQuoteRequest: findType("EmailQuoteRequest*"), legacy_EmailQuoteVM: findType("EmailQuoteVM*"), legacy_EmailSettingsVM: findType("EmailSettingsVM*"), legacy_EmailTemplate: findType("EmailTemplate*"), legacy_EntityAction: findType("EntityAction*"), legacy_EntityDropdownDialog: findType("EntityDropdownDialog*"), legacy_EntityState: findType("EntityState*"), legacy_EntityStats: findType("EntityStats*"), legacy_EntityStatus: findType("EntityStatus*"), legacy_EntityType: findType("EntityType*"), legacy_Error: findType("Error*"), legacy_ErrorDialog: findType("ErrorDialog*"), legacy_Event: findType("Event*"), legacy_ExpenseCategoryEditVM: findType("ExpenseCategoryEditVM*"), legacy_ExpenseCategoryEntity: findType("ExpenseCategoryEntity*"), legacy_ExpenseCategoryItemResponse: findType("ExpenseCategoryItemResponse*"), legacy_ExpenseCategoryListResponse: findType("ExpenseCategoryListResponse*"), legacy_ExpenseCategoryListVM: findType("ExpenseCategoryListVM*"), legacy_ExpenseCategoryScreenVM: findType("ExpenseCategoryScreenVM*"), legacy_ExpenseCategoryState: findType("ExpenseCategoryState*"), legacy_ExpenseCategoryUIState: findType("ExpenseCategoryUIState*"), legacy_ExpenseCategoryViewVM: findType("ExpenseCategoryViewVM*"), legacy_ExpenseEditVM: findType("ExpenseEditVM*"), legacy_ExpenseEntity: findType("ExpenseEntity*"), legacy_ExpenseItemResponse: findType("ExpenseItemResponse*"), legacy_ExpenseListResponse: findType("ExpenseListResponse*"), legacy_ExpenseListVM: findType("ExpenseListVM*"), legacy_ExpenseReportFields: findType("ExpenseReportFields*"), legacy_ExpenseScheduleEntity: findType("ExpenseScheduleEntity*"), legacy_ExpenseScreenVM: findType("ExpenseScreenVM*"), legacy_ExpenseSettingsVM: findType("ExpenseSettingsVM*"), legacy_ExpenseState: findType("ExpenseState*"), legacy_ExpenseUIState: findType("ExpenseUIState*"), legacy_ExpenseViewVM: findType("ExpenseViewVM*"), legacy_ExportType: findType("ExportType*"), legacy_FeesAndLimitsSettings: findType("FeesAndLimitsSettings*"), legacy_File: findType("File0*"), legacy_FileSystemEntity: findType("FileSystemEntity*"), legacy_FilterByEntity: findType("FilterByEntity*"), legacy_FocusNode: findType("FocusNode*"), legacy_FormState: findType("FormState*"), legacy_FutureOr_legacy_AuthState: findType("AuthState*/*"), legacy_FutureOr_legacy_StaticState: findType("StaticState*/*"), legacy_FutureOr_legacy_UIState: findType("UIState*/*"), legacy_GatewayConfigField: findType("GatewayConfigField*"), legacy_GatewayEntity: findType("GatewayEntity*"), legacy_GatewayOptionsEntity: findType("GatewayOptionsEntity*"), legacy_GatewayTokenEntity: findType("GatewayTokenEntity*"), legacy_GatewayTokenMetaEntity: findType("GatewayTokenMetaEntity*"), legacy_GeneratedNumbersVM: findType("GeneratedNumbersVM*"), legacy_GoogleSignInAccount: findType("GoogleSignInAccount*"), legacy_GroupEditVM: findType("GroupEditVM*"), legacy_GroupEntity: findType("GroupEntity*"), legacy_GroupItemResponse: findType("GroupItemResponse*"), legacy_GroupListResponse: findType("GroupListResponse*"), legacy_GroupListVM: findType("GroupListVM*"), legacy_GroupScreenVM: findType("GroupScreenVM*"), legacy_GroupState: findType("GroupState*"), legacy_GroupUIState: findType("GroupUIState*"), legacy_GroupViewVM: findType("GroupViewVM*"), legacy_HealthCheckDialog: findType("HealthCheckDialog*"), legacy_HealthCheckPHPResponse: findType("HealthCheckPHPResponse*"), legacy_HealthCheckResponse: findType("HealthCheckResponse*"), legacy_HistoryRecord: findType("HistoryRecord*"), legacy_IconData: findType("IconData*"), legacy_ImportExportVM: findType("ImportExportVM*"), legacy_ImportRequestMapping: findType("ImportRequestMapping*"), legacy_ImportType: findType("ImportType*"), legacy_IndustryEntity: findType("IndustryEntity*"), legacy_InkWell: findType("InkWell*"), legacy_Intent: findType("Intent*"), legacy_InvitationEntity: findType("InvitationEntity*"), legacy_InvoiceDesignVM: findType("InvoiceDesignVM*"), legacy_InvoiceEditContactsVM: findType("InvoiceEditContactsVM*"), legacy_InvoiceEditDetailsVM: findType("InvoiceEditDetailsVM*"), legacy_InvoiceEditItemsVM: findType("InvoiceEditItemsVM*"), legacy_InvoiceEditNotesVM: findType("InvoiceEditNotesVM*"), legacy_InvoiceEditPDFVM: findType("InvoiceEditPDFVM*"), legacy_InvoiceEditVM: findType("InvoiceEditVM*"), legacy_InvoiceEntity: findType("InvoiceEntity*"), legacy_InvoiceHistoryEntity: findType("InvoiceHistoryEntity*"), legacy_InvoiceItemEntity: findType("InvoiceItemEntity*"), legacy_InvoiceItemReportFields: findType("InvoiceItemReportFields*"), legacy_InvoiceItemResponse: findType("InvoiceItemResponse*"), legacy_InvoiceItemSelector: findType("InvoiceItemSelector*"), legacy_InvoiceListResponse: findType("InvoiceListResponse*"), legacy_InvoiceListVM: findType("InvoiceListVM*"), legacy_InvoicePdfVM: findType("InvoicePdfVM*"), legacy_InvoiceReportFields: findType("InvoiceReportFields*"), legacy_InvoiceScheduleEntity: findType("InvoiceScheduleEntity*"), legacy_InvoiceScreenVM: findType("InvoiceScreenVM*"), legacy_InvoiceState: findType("InvoiceState*"), legacy_InvoiceStatusEntity: findType("InvoiceStatusEntity*"), legacy_InvoiceUIState: findType("InvoiceUIState*"), legacy_InvoiceViewVM: findType("InvoiceViewVM*"), legacy_ItemEditDetails: findType("ItemEditDetails*"), legacy_Iterable_dynamic: findType("Iterable<@>*"), legacy_KanbanVM: findType("KanbanVM*"), legacy_KanbanViewState: findType("KanbanViewState*"), legacy_LanguageEntity: findType("LanguageEntity*"), legacy_LedgerEntity: findType("LedgerEntity*"), legacy_LinkAttribution: findType("LinkAttribution*"), legacy_ListUIState: findType("ListUIState*"), legacy_List_dynamic: findType("List<@>*"), legacy_List_legacy_ChartDataGroup: findType("List*"), legacy_List_legacy_ClientEntity: findType("List*"), legacy_List_legacy_CompanyGatewayEntity: findType("List*"), legacy_List_legacy_DesignEntity: findType("List*"), legacy_List_legacy_DocumentEntity: findType("List*"), legacy_List_legacy_ExpenseCategoryEntity: findType("List*"), legacy_List_legacy_ExpenseEntity: findType("List*"), legacy_List_legacy_GatewayTokenEntity: findType("List*"), legacy_List_legacy_GroupEntity: findType("List*"), legacy_List_legacy_InvoiceEntity: findType("List*"), legacy_List_legacy_List_legacy_String: findType("List*>*"), legacy_List_legacy_PaymentEntity: findType("List*"), legacy_List_legacy_PaymentTermEntity: findType("List*"), legacy_List_legacy_ProductEntity: findType("List*"), legacy_List_legacy_ProjectEntity: findType("List*"), legacy_List_legacy_String: findType("List*"), legacy_List_legacy_SubscriptionEntity: findType("List*"), legacy_List_legacy_TaskEntity: findType("List*"), legacy_List_legacy_TaskStatusEntity: findType("List*"), legacy_List_legacy_TaxRateEntity: findType("List*"), legacy_List_legacy_TokenEntity: findType("List*"), legacy_List_legacy_UserEntity: findType("List*"), legacy_List_legacy_VendorEntity: findType("List*"), legacy_List_legacy_WebhookEntity: findType("List*"), legacy_Listenable: findType("Listenable*"), legacy_LoadAccountSuccess: findType("LoadAccountSuccess*"), legacy_LoadClient: findType("LoadClient*"), legacy_LoadClients: findType("LoadClients*"), legacy_LoadCompanyGateway: findType("LoadCompanyGateway*"), legacy_LoadCompanyGateways: findType("LoadCompanyGateways*"), legacy_LoadCompanySuccess: findType("LoadCompanySuccess*"), legacy_LoadCredit: findType("LoadCredit*"), legacy_LoadCredits: findType("LoadCredits*"), legacy_LoadDesign: findType("LoadDesign*"), legacy_LoadDesigns: findType("LoadDesigns*"), legacy_LoadDocument: findType("LoadDocument*"), legacy_LoadDocuments: findType("LoadDocuments*"), legacy_LoadExpense: findType("LoadExpense*"), legacy_LoadExpenseCategories: findType("LoadExpenseCategories*"), legacy_LoadExpenseCategory: findType("LoadExpenseCategory*"), legacy_LoadExpenses: findType("LoadExpenses*"), legacy_LoadGroup: findType("LoadGroup*"), legacy_LoadGroups: findType("LoadGroups*"), legacy_LoadInvoice: findType("LoadInvoice*"), legacy_LoadInvoices: findType("LoadInvoices*"), legacy_LoadPayment: findType("LoadPayment*"), legacy_LoadPaymentTerm: findType("LoadPaymentTerm*"), legacy_LoadPaymentTerms: findType("LoadPaymentTerms*"), legacy_LoadPayments: findType("LoadPayments*"), legacy_LoadProduct: findType("LoadProduct*"), legacy_LoadProducts: findType("LoadProducts*"), legacy_LoadProject: findType("LoadProject*"), legacy_LoadProjects: findType("LoadProjects*"), legacy_LoadPurchaseOrder: findType("LoadPurchaseOrder*"), legacy_LoadPurchaseOrders: findType("LoadPurchaseOrders*"), legacy_LoadQuote: findType("LoadQuote*"), legacy_LoadQuotes: findType("LoadQuotes*"), legacy_LoadRecurringExpense: findType("LoadRecurringExpense*"), legacy_LoadRecurringExpenses: findType("LoadRecurringExpenses*"), legacy_LoadRecurringInvoice: findType("LoadRecurringInvoice*"), legacy_LoadRecurringInvoices: findType("LoadRecurringInvoices*"), legacy_LoadStateRequest: findType("LoadStateRequest*"), legacy_LoadSubscription: findType("LoadSubscription*"), legacy_LoadSubscriptions: findType("LoadSubscriptions*"), legacy_LoadTask: findType("LoadTask*"), legacy_LoadTaskStatus: findType("LoadTaskStatus*"), legacy_LoadTaskStatuses: findType("LoadTaskStatuses*"), legacy_LoadTasks: findType("LoadTasks*"), legacy_LoadTaxRate: findType("LoadTaxRate*"), legacy_LoadTaxRates: findType("LoadTaxRates*"), legacy_LoadToken: findType("LoadToken*"), legacy_LoadTokens: findType("LoadTokens*"), legacy_LoadUser: findType("LoadUser*"), legacy_LoadUsers: findType("LoadUsers*"), legacy_LoadVendor: findType("LoadVendor*"), legacy_LoadVendors: findType("LoadVendors*"), legacy_LoadWebhook: findType("LoadWebhook*"), legacy_LoadWebhooks: findType("LoadWebhooks*"), legacy_LocalizationSettingsVM: findType("LocalizationSettingsVM*"), legacy_LoginResponse: findType("LoginResponse*"), legacy_LoginVM: findType("LoginVM*"), legacy_Map_dynamic_dynamic: findType("Map<@,@>*"), legacy_Map_of_legacy_String_and_dynamic: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_FocusNode: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_String: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_TextEditingController: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_double: findType("Map*"), legacy_Map_of_legacy_int_and_legacy_String: findType("Map*"), legacy_MarkCreditsPaidRequest: findType("MarkCreditsPaidRequest*"), legacy_MarkInvoicesPaidRequest: findType("MarkInvoicesPaidRequest*"), legacy_MarkInvoicesSentRequest: findType("MarkInvoicesSentRequest*"), legacy_MarkPurchaseOrdersSentRequest: findType("MarkPurchaseOrdersSentRequest*"), legacy_MarkSentCreditRequest: findType("MarkSentCreditRequest*"), legacy_MarkSentQuotesRequest: findType("MarkSentQuotesRequest*"), legacy_MenuDrawerVM: findType("MenuDrawerVM*"), legacy_MergeClientsRequest: findType("MergeClientsRequest*"), legacy_MessageDialog: findType("MessageDialog*"), legacy_ModuleLayout: findType("ModuleLayout*"), legacy_MultipartFile: findType("MultipartFile*"), legacy_Never: findType("0&*"), legacy_OAuthLoginRequest: findType("OAuthLoginRequest*"), legacy_OAuthSignUpRequest: findType("OAuthSignUpRequest*"), legacy_Object: findType("Object*"), legacy_Offset: findType("Offset*"), legacy_Padding: findType("Padding*"), legacy_PageTransitionsBuilder: findType("PageTransitionsBuilder*"), legacy_ParagraphNode: findType("ParagraphNode*"), legacy_PaymentEditScreen: findType("PaymentEditScreen*"), legacy_PaymentEditVM: findType("PaymentEditVM*"), legacy_PaymentEntity: findType("PaymentEntity*"), legacy_PaymentItemResponse: findType("PaymentItemResponse*"), legacy_PaymentListResponse: findType("PaymentListResponse*"), legacy_PaymentListVM: findType("PaymentListVM*"), legacy_PaymentRefundScreen: findType("PaymentRefundScreen*"), legacy_PaymentRefundVM: findType("PaymentRefundVM*"), legacy_PaymentReportFields: findType("PaymentReportFields*"), legacy_PaymentScreenVM: findType("PaymentScreenVM*"), legacy_PaymentSettingsVM: findType("PaymentSettingsVM*"), legacy_PaymentState: findType("PaymentState*"), legacy_PaymentTermEditVM: findType("PaymentTermEditVM*"), legacy_PaymentTermEntity: findType("PaymentTermEntity*"), legacy_PaymentTermItemResponse: findType("PaymentTermItemResponse*"), legacy_PaymentTermListResponse: findType("PaymentTermListResponse*"), legacy_PaymentTermListVM: findType("PaymentTermListVM*"), legacy_PaymentTermScreenVM: findType("PaymentTermScreenVM*"), legacy_PaymentTermState: findType("PaymentTermState*"), legacy_PaymentTermUIState: findType("PaymentTermUIState*"), legacy_PaymentTermViewVM: findType("PaymentTermViewVM*"), legacy_PaymentTypeEntity: findType("PaymentTypeEntity*"), legacy_PaymentUIState: findType("PaymentUIState*"), legacy_PaymentViewVM: findType("PaymentViewVM*"), legacy_PaymentableEntity: findType("PaymentableEntity*"), legacy_PersistData: findType("PersistData*"), legacy_PersistPrefs: findType("PersistPrefs*"), legacy_PersistStatic: findType("PersistStatic*"), legacy_PersistUI: findType("PersistUI*"), legacy_PointerDeviceKind: findType("PointerDeviceKind*"), legacy_PopupMenuEntry_legacy_String: findType("PopupMenuEntry*"), legacy_PopupMenuItem_legacy_String: findType("PopupMenuItem*"), legacy_PreImportResponse: findType("PreImportResponse*"), legacy_PreImportResponseEntityDetails: findType("PreImportResponseEntityDetails*"), legacy_PrefState: findType("PrefState*"), legacy_PrefStateSortField: findType("PrefStateSortField*"), legacy_PreviewEntity: findType("PreviewEntity*"), legacy_ProductEditVM: findType("ProductEditVM*"), legacy_ProductEntity: findType("ProductEntity*"), legacy_ProductItemResponse: findType("ProductItemResponse*"), legacy_ProductListResponse: findType("ProductListResponse*"), legacy_ProductListVM: findType("ProductListVM*"), legacy_ProductReportFields: findType("ProductReportFields*"), legacy_ProductScreenVM: findType("ProductScreenVM*"), legacy_ProductSettingsVM: findType("ProductSettingsVM*"), legacy_ProductState: findType("ProductState*"), legacy_ProductUIState: findType("ProductUIState*"), legacy_ProductViewVM: findType("ProductViewVM*"), legacy_ProfitAndLossReportFields: findType("ProfitAndLossReportFields*"), legacy_ProgressEvent: findType("ProgressEvent*"), legacy_ProjectEditVM: findType("ProjectEditVM*"), legacy_ProjectEntity: findType("ProjectEntity*"), legacy_ProjectItemResponse: findType("ProjectItemResponse*"), legacy_ProjectListResponse: findType("ProjectListResponse*"), legacy_ProjectListVM: findType("ProjectListVM*"), legacy_ProjectScreenVM: findType("ProjectScreenVM*"), legacy_ProjectState: findType("ProjectState*"), legacy_ProjectUIState: findType("ProjectUIState*"), legacy_ProjectViewVM: findType("ProjectViewVM*"), legacy_PurchaseOrderEditDetailsVM: findType("PurchaseOrderEditDetailsVM*"), legacy_PurchaseOrderEditItemsVM: findType("PurchaseOrderEditItemsVM*"), legacy_PurchaseOrderEditNotesVM: findType("PurchaseOrderEditNotesVM*"), legacy_PurchaseOrderEditPDFVM: findType("PurchaseOrderEditPDFVM*"), legacy_PurchaseOrderEditVM: findType("PurchaseOrderEditVM*"), legacy_PurchaseOrderListVM: findType("PurchaseOrderListVM*"), legacy_PurchaseOrderPdfVM: findType("PurchaseOrderPdfVM*"), legacy_PurchaseOrderReportFields: findType("PurchaseOrderReportFields*"), legacy_PurchaseOrderScreenVM: findType("PurchaseOrderScreenVM*"), legacy_PurchaseOrderState: findType("PurchaseOrderState*"), legacy_PurchaseOrderUIState: findType("PurchaseOrderUIState*"), legacy_PurchaseOrderViewVM: findType("PurchaseOrderViewVM*"), legacy_PurgeClientRequest: findType("PurgeClientRequest*"), legacy_PurgeDataRequest: findType("PurgeDataRequest*"), legacy_QuoteEditDetailsVM: findType("QuoteEditDetailsVM*"), legacy_QuoteEditItemsVM: findType("QuoteEditItemsVM*"), legacy_QuoteEditNotesVM: findType("QuoteEditNotesVM*"), legacy_QuoteEditPDFVM: findType("QuoteEditPDFVM*"), legacy_QuoteEditVM: findType("QuoteEditVM*"), legacy_QuoteItemReportFields: findType("QuoteItemReportFields*"), legacy_QuoteListVM: findType("QuoteListVM*"), legacy_QuotePdfVM: findType("QuotePdfVM*"), legacy_QuoteReportFields: findType("QuoteReportFields*"), legacy_QuoteScreenVM: findType("QuoteScreenVM*"), legacy_QuoteState: findType("QuoteState*"), legacy_QuoteUIState: findType("QuoteUIState*"), legacy_QuoteViewVM: findType("QuoteViewVM*"), legacy_RecoverPasswordRequest: findType("RecoverPasswordRequest*"), legacy_RecurringExpenseEditVM: findType("RecurringExpenseEditVM*"), legacy_RecurringExpenseListVM: findType("RecurringExpenseListVM*"), legacy_RecurringExpenseReportFields: findType("RecurringExpenseReportFields*"), legacy_RecurringExpenseScreenVM: findType("RecurringExpenseScreenVM*"), legacy_RecurringExpenseState: findType("RecurringExpenseState*"), legacy_RecurringExpenseUIState: findType("RecurringExpenseUIState*"), legacy_RecurringExpenseViewVM: findType("RecurringExpenseViewVM*"), legacy_RecurringInvoiceEditDetailsVM: findType("RecurringInvoiceEditDetailsVM*"), legacy_RecurringInvoiceEditItemsVM: findType("RecurringInvoiceEditItemsVM*"), legacy_RecurringInvoiceEditNotesVM: findType("RecurringInvoiceEditNotesVM*"), legacy_RecurringInvoiceEditPDFVM: findType("RecurringInvoiceEditPDFVM*"), legacy_RecurringInvoiceEditVM: findType("RecurringInvoiceEditVM*"), legacy_RecurringInvoiceListVM: findType("RecurringInvoiceListVM*"), legacy_RecurringInvoicePdfVM: findType("RecurringInvoicePdfVM*"), legacy_RecurringInvoiceReportFields: findType("RecurringInvoiceReportFields*"), legacy_RecurringInvoiceScreenVM: findType("RecurringInvoiceScreenVM*"), legacy_RecurringInvoiceState: findType("RecurringInvoiceState*"), legacy_RecurringInvoiceUIState: findType("RecurringInvoiceUIState*"), legacy_RecurringInvoiceViewVM: findType("RecurringInvoiceViewVM*"), legacy_RefreshData: findType("RefreshData*"), legacy_RefreshDataSuccess: findType("RefreshDataSuccess*"), legacy_RefundPaymentRequest: findType("RefundPaymentRequest*"), legacy_RegistrationFieldEntity: findType("RegistrationFieldEntity*"), legacy_RemoveUserRequest: findType("RemoveUserRequest*"), legacy_RenderBox: findType("RenderBox*"), legacy_ReportResult: findType("ReportResult*"), legacy_ReportSettingsEntity: findType("ReportSettingsEntity*"), legacy_ReportsScreenVM: findType("ReportsScreenVM*"), legacy_ReportsUIState: findType("ReportsUIState*"), legacy_ResendConfirmation: findType("ResendConfirmation*"), legacy_ResendInviteRequest: findType("ResendInviteRequest*"), legacy_Response: findType("Response*"), legacy_ResponsivePadding: findType("ResponsivePadding*"), legacy_RestoreClientsRequest: findType("RestoreClientsRequest*"), legacy_RestoreCompanyGatewayRequest: findType("RestoreCompanyGatewayRequest*"), legacy_RestoreCreditsRequest: findType("RestoreCreditsRequest*"), legacy_RestoreDesignsRequest: findType("RestoreDesignsRequest*"), legacy_RestoreDocumentRequest: findType("RestoreDocumentRequest*"), legacy_RestoreExpenseCategoriesRequest: findType("RestoreExpenseCategoriesRequest*"), legacy_RestoreExpenseRequest: findType("RestoreExpenseRequest*"), legacy_RestoreGroupRequest: findType("RestoreGroupRequest*"), legacy_RestoreInvoicesRequest: findType("RestoreInvoicesRequest*"), legacy_RestorePaymentTermsRequest: findType("RestorePaymentTermsRequest*"), legacy_RestorePaymentsRequest: findType("RestorePaymentsRequest*"), legacy_RestoreProductsRequest: findType("RestoreProductsRequest*"), legacy_RestoreProjectRequest: findType("RestoreProjectRequest*"), legacy_RestorePurchaseOrdersRequest: findType("RestorePurchaseOrdersRequest*"), legacy_RestoreQuotesRequest: findType("RestoreQuotesRequest*"), legacy_RestoreRecurringExpensesRequest: findType("RestoreRecurringExpensesRequest*"), legacy_RestoreRecurringInvoicesRequest: findType("RestoreRecurringInvoicesRequest*"), legacy_RestoreSubscriptionsRequest: findType("RestoreSubscriptionsRequest*"), legacy_RestoreTaskRequest: findType("RestoreTaskRequest*"), legacy_RestoreTaskStatusesRequest: findType("RestoreTaskStatusesRequest*"), legacy_RestoreTaxRateRequest: findType("RestoreTaxRateRequest*"), legacy_RestoreTokensRequest: findType("RestoreTokensRequest*"), legacy_RestoreUserRequest: findType("RestoreUserRequest*"), legacy_RestoreVendorRequest: findType("RestoreVendorRequest*"), legacy_RestoreWebhooksRequest: findType("RestoreWebhooksRequest*"), legacy_SaveAuthUserRequest: findType("SaveAuthUserRequest*"), legacy_SaveClientDocumentRequest: findType("SaveClientDocumentRequest*"), legacy_SaveClientRequest: findType("SaveClientRequest*"), legacy_SaveCompanyDocumentRequest: findType("SaveCompanyDocumentRequest*"), legacy_SaveCompanyGatewayRequest: findType("SaveCompanyGatewayRequest*"), legacy_SaveCompanyRequest: findType("SaveCompanyRequest*"), legacy_SaveCreditDocumentRequest: findType("SaveCreditDocumentRequest*"), legacy_SaveCreditRequest: findType("SaveCreditRequest*"), legacy_SaveDesignRequest: findType("SaveDesignRequest*"), legacy_SaveExpenseCategoryRequest: findType("SaveExpenseCategoryRequest*"), legacy_SaveExpenseDocumentRequest: findType("SaveExpenseDocumentRequest*"), legacy_SaveExpenseRequest: findType("SaveExpenseRequest*"), legacy_SaveGroupDocumentRequest: findType("SaveGroupDocumentRequest*"), legacy_SaveGroupRequest: findType("SaveGroupRequest*"), legacy_SaveInvoiceDocumentRequest: findType("SaveInvoiceDocumentRequest*"), legacy_SaveInvoiceRequest: findType("SaveInvoiceRequest*"), legacy_SavePaymentRequest: findType("SavePaymentRequest*"), legacy_SavePaymentTermRequest: findType("SavePaymentTermRequest*"), legacy_SaveProductDocumentRequest: findType("SaveProductDocumentRequest*"), legacy_SaveProductRequest: findType("SaveProductRequest*"), legacy_SaveProjectDocumentRequest: findType("SaveProjectDocumentRequest*"), legacy_SaveProjectRequest: findType("SaveProjectRequest*"), legacy_SavePurchaseOrderDocumentRequest: findType("SavePurchaseOrderDocumentRequest*"), legacy_SavePurchaseOrderRequest: findType("SavePurchaseOrderRequest*"), legacy_SaveQuoteDocumentRequest: findType("SaveQuoteDocumentRequest*"), legacy_SaveQuoteRequest: findType("SaveQuoteRequest*"), legacy_SaveRecurringExpenseDocumentRequest: findType("SaveRecurringExpenseDocumentRequest*"), legacy_SaveRecurringExpenseRequest: findType("SaveRecurringExpenseRequest*"), legacy_SaveRecurringInvoiceDocumentRequest: findType("SaveRecurringInvoiceDocumentRequest*"), legacy_SaveRecurringInvoiceRequest: findType("SaveRecurringInvoiceRequest*"), legacy_SaveSubscriptionRequest: findType("SaveSubscriptionRequest*"), legacy_SaveTaskDocumentRequest: findType("SaveTaskDocumentRequest*"), legacy_SaveTaskRequest: findType("SaveTaskRequest*"), legacy_SaveTaskStatusRequest: findType("SaveTaskStatusRequest*"), legacy_SaveTaxRateRequest: findType("SaveTaxRateRequest*"), legacy_SaveTokenRequest: findType("SaveTokenRequest*"), legacy_SaveUserRequest: findType("SaveUserRequest*"), legacy_SaveUserSettingsRequest: findType("SaveUserSettingsRequest*"), legacy_SaveVendorDocumentRequest: findType("SaveVendorDocumentRequest*"), legacy_SaveVendorRequest: findType("SaveVendorRequest*"), legacy_SaveWebhookRequest: findType("SaveWebhookRequest*"), legacy_SelectCompany: findType("SelectCompany*"), legacy_SelectableEntity: findType("SelectableEntity*"), legacy_SelectionState: findType("SelectionState*"), legacy_SendNowRecurringInvoicesRequest: findType("SendNowRecurringInvoicesRequest*"), legacy_SetDefaultCompanyRequest: findType("SetDefaultCompanyRequest*"), legacy_Set_void: findType("Set<~>*"), legacy_SettingsEntity: findType("SettingsEntity*"), legacy_SettingsListVM: findType("SettingsListVM*"), legacy_SettingsScreenVM: findType("SettingsScreenVM*"), legacy_SettingsUIState: findType("SettingsUIState*"), legacy_ShortcutActivator: findType("ShortcutActivator*"), legacy_ShowEmailCredit: findType("ShowEmailCredit*"), legacy_ShowEmailInvoice: findType("ShowEmailInvoice*"), legacy_ShowEmailPurchaseOrder: findType("ShowEmailPurchaseOrder*"), legacy_ShowEmailQuote: findType("ShowEmailQuote*"), legacy_ShowPdfClient: findType("ShowPdfClient*"), legacy_ShowPdfCredit: findType("ShowPdfCredit*"), legacy_ShowPdfInvoice: findType("ShowPdfInvoice*"), legacy_ShowPdfPurchaseOrder: findType("ShowPdfPurchaseOrder*"), legacy_ShowPdfQuote: findType("ShowPdfQuote*"), legacy_ShowPdfRecurringInvoice: findType("ShowPdfRecurringInvoice*"), legacy_SimpleDialog: findType("SimpleDialog*"), legacy_SizeEntity: findType("SizeEntity*"), legacy_SortTasksRequest: findType("SortTasksRequest*"), legacy_StartRecurringExpensesRequest: findType("StartRecurringExpensesRequest*"), legacy_StartRecurringInvoicesRequest: findType("StartRecurringInvoicesRequest*"), legacy_StartTasksRequest: findType("StartTasksRequest*"), legacy_StaticDataEntity: findType("StaticDataEntity*"), legacy_StaticState: findType("StaticState*"), legacy_StopRecurringExpensesRequest: findType("StopRecurringExpensesRequest*"), legacy_StopRecurringInvoicesRequest: findType("StopRecurringInvoicesRequest*"), legacy_StopTasksRequest: findType("StopTasksRequest*"), legacy_StoreConnector_dynamic_dynamic: findType("StoreConnector<@,@>*"), legacy_String: findType("String*"), legacy_SubscriptionEditVM: findType("SubscriptionEditVM*"), legacy_SubscriptionEntity: findType("SubscriptionEntity*"), legacy_SubscriptionItemResponse: findType("SubscriptionItemResponse*"), legacy_SubscriptionListResponse: findType("SubscriptionListResponse*"), legacy_SubscriptionListVM: findType("SubscriptionListVM*"), legacy_SubscriptionScreenVM: findType("SubscriptionScreenVM*"), legacy_SubscriptionState: findType("SubscriptionState*"), legacy_SubscriptionUIState: findType("SubscriptionUIState*"), legacy_SubscriptionViewVM: findType("SubscriptionViewVM*"), legacy_SystemLogEntity: findType("SystemLogEntity*"), legacy_TableCellParentData: findType("TableCellParentData*"), legacy_TableColumnWidth: findType("TableColumnWidth*"), legacy_TableRow: findType("TableRow*"), legacy_TargetPlatform: findType("TargetPlatform*"), legacy_TaskEditDetailsVM: findType("TaskEditDetailsVM*"), legacy_TaskEditTimesVM: findType("TaskEditTimesVM*"), legacy_TaskEditVM: findType("TaskEditVM*"), legacy_TaskEntity: findType("TaskEntity*"), legacy_TaskItemResponse: findType("TaskItemResponse*"), legacy_TaskListResponse: findType("TaskListResponse*"), legacy_TaskListVM: findType("TaskListVM*"), legacy_TaskReportFields: findType("TaskReportFields*"), legacy_TaskScreenVM: findType("TaskScreenVM*"), legacy_TaskSettingsVM: findType("TaskSettingsVM*"), legacy_TaskState: findType("TaskState*"), legacy_TaskStatusEditVM: findType("TaskStatusEditVM*"), legacy_TaskStatusEntity: findType("TaskStatusEntity*"), legacy_TaskStatusItemResponse: findType("TaskStatusItemResponse*"), legacy_TaskStatusListResponse: findType("TaskStatusListResponse*"), legacy_TaskStatusListVM: findType("TaskStatusListVM*"), legacy_TaskStatusScreenVM: findType("TaskStatusScreenVM*"), legacy_TaskStatusState: findType("TaskStatusState*"), legacy_TaskStatusUIState: findType("TaskStatusUIState*"), legacy_TaskStatusViewVM: findType("TaskStatusViewVM*"), legacy_TaskUIState: findType("TaskUIState*"), legacy_TaskViewVM: findType("TaskViewVM*"), legacy_TaxRateEditVM: findType("TaxRateEditVM*"), legacy_TaxRateEntity: findType("TaxRateEntity*"), legacy_TaxRateItemResponse: findType("TaxRateItemResponse*"), legacy_TaxRateListResponse: findType("TaxRateListResponse*"), legacy_TaxRateListVM: findType("TaxRateListVM*"), legacy_TaxRateReportFields: findType("TaxRateReportFields0*"), legacy_TaxRateReportFields_2: findType("TaxRateReportFields*"), legacy_TaxRateScreenVM: findType("TaxRateScreenVM*"), legacy_TaxRateState: findType("TaxRateState*"), legacy_TaxRateUIState: findType("TaxRateUIState*"), legacy_TaxRateViewVM: findType("TaxRateViewVM*"), legacy_TaxSettingsVM: findType("TaxSettingsVM*"), legacy_TemplateEntity: findType("TemplateEntity*"), legacy_TemplatesAndRemindersVM: findType("TemplatesAndRemindersVM*"), legacy_TextEditingController: findType("TextEditingController*"), legacy_TextNode: findType("TextNode*"), legacy_TextPosition: findType("TextPosition*"), legacy_TimezoneEntity: findType("TimezoneEntity*"), legacy_ToastFuture: findType("ToastFuture*"), legacy_TokenEditVM: findType("TokenEditVM*"), legacy_TokenEntity: findType("TokenEntity*"), legacy_TokenItemResponse: findType("TokenItemResponse*"), legacy_TokenListResponse: findType("TokenListResponse*"), legacy_TokenListVM: findType("TokenListVM*"), legacy_TokenScreenVM: findType("TokenScreenVM*"), legacy_TokenState: findType("TokenState*"), legacy_TokenUIState: findType("TokenUIState*"), legacy_TokenViewVM: findType("TokenViewVM*"), legacy_Type: findType("Type*"), legacy_UIState: findType("UIState*"), legacy_UpdateDialog: findType("UpdateDialog*"), legacy_UpdateUserPreferences: findType("UpdateUserPreferences*"), legacy_UploadLogoRequest: findType("UploadLogoRequest*"), legacy_UserCompanyEntity: findType("UserCompanyEntity*"), legacy_UserCompanyItemResponse: findType("UserCompanyItemResponse*"), legacy_UserCompanyState: findType("UserCompanyState*"), legacy_UserDetailsVM: findType("UserDetailsVM*"), legacy_UserEditVM: findType("UserEditVM*"), legacy_UserEntity: findType("UserEntity*"), legacy_UserItemResponse: findType("UserItemResponse*"), legacy_UserListResponse: findType("UserListResponse*"), legacy_UserListVM: findType("UserListVM*"), legacy_UserLoginRequest: findType("UserLoginRequest*"), legacy_UserLoginSuccess: findType("UserLoginSuccess*"), legacy_UserLogout: findType("UserLogout*"), legacy_UserLogoutAll: findType("UserLogoutAll*"), legacy_UserScreenVM: findType("UserScreenVM*"), legacy_UserSettingsEntity: findType("UserSettingsEntity*"), legacy_UserSignUpRequest: findType("UserSignUpRequest*"), legacy_UserState: findType("UserState*"), legacy_UserTwoFactorData: findType("UserTwoFactorData*"), legacy_UserTwoFactorResponse: findType("UserTwoFactorResponse*"), legacy_UserUIState: findType("UserUIState*"), legacy_UserViewVM: findType("UserViewVM*"), legacy_VendorContactEditDetails: findType("VendorContactEditDetails*"), legacy_VendorContactEntity: findType("VendorContactEntity*"), legacy_VendorEditContactsVM: findType("VendorEditContactsVM*"), legacy_VendorEditVM: findType("VendorEditVM*"), legacy_VendorEntity: findType("VendorEntity*"), legacy_VendorItemResponse: findType("VendorItemResponse*"), legacy_VendorListResponse: findType("VendorListResponse*"), legacy_VendorListVM: findType("VendorListVM*"), legacy_VendorScreenVM: findType("VendorScreenVM*"), legacy_VendorState: findType("VendorState*"), legacy_VendorUIState: findType("VendorUIState*"), legacy_VendorViewVM: findType("VendorViewVM*"), legacy_ViewClient: findType("ViewClient*"), legacy_ViewClientList: findType("ViewClientList*"), legacy_ViewCompanyGateway: findType("ViewCompanyGateway*"), legacy_ViewCompanyGatewayList: findType("ViewCompanyGatewayList*"), legacy_ViewCredit: findType("ViewCredit*"), legacy_ViewCreditList: findType("ViewCreditList*"), legacy_ViewDashboard: findType("ViewDashboard*"), legacy_ViewDesign: findType("ViewDesign*"), legacy_ViewDesignList: findType("ViewDesignList*"), legacy_ViewDocument: findType("ViewDocument*"), legacy_ViewDocumentList: findType("ViewDocumentList*"), legacy_ViewExpense: findType("ViewExpense*"), legacy_ViewExpenseCategory: findType("ViewExpenseCategory*"), legacy_ViewExpenseCategoryList: findType("ViewExpenseCategoryList*"), legacy_ViewExpenseList: findType("ViewExpenseList*"), legacy_ViewGroup: findType("ViewGroup*"), legacy_ViewGroupList: findType("ViewGroupList*"), legacy_ViewInvoice: findType("ViewInvoice*"), legacy_ViewInvoiceList: findType("ViewInvoiceList*"), legacy_ViewMainScreen: findType("ViewMainScreen*"), legacy_ViewPaymentList: findType("ViewPaymentList*"), legacy_ViewPaymentTerm: findType("ViewPaymentTerm*"), legacy_ViewPaymentTermList: findType("ViewPaymentTermList*"), legacy_ViewProduct: findType("ViewProduct*"), legacy_ViewProductList: findType("ViewProductList*"), legacy_ViewProject: findType("ViewProject*"), legacy_ViewProjectList: findType("ViewProjectList*"), legacy_ViewPurchaseOrder: findType("ViewPurchaseOrder*"), legacy_ViewPurchaseOrderList: findType("ViewPurchaseOrderList*"), legacy_ViewQuote: findType("ViewQuote*"), legacy_ViewQuoteList: findType("ViewQuoteList*"), legacy_ViewRecurringExpense: findType("ViewRecurringExpense*"), legacy_ViewRecurringExpenseList: findType("ViewRecurringExpenseList*"), legacy_ViewRecurringInvoice: findType("ViewRecurringInvoice*"), legacy_ViewRecurringInvoiceList: findType("ViewRecurringInvoiceList*"), legacy_ViewRefundPayment: findType("ViewRefundPayment*"), legacy_ViewReports: findType("ViewReports*"), legacy_ViewSettings: findType("ViewSettings*"), legacy_ViewSubscription: findType("ViewSubscription*"), legacy_ViewSubscriptionList: findType("ViewSubscriptionList*"), legacy_ViewTask: findType("ViewTask*"), legacy_ViewTaskList: findType("ViewTaskList*"), legacy_ViewTaskStatus: findType("ViewTaskStatus*"), legacy_ViewTaskStatusList: findType("ViewTaskStatusList*"), legacy_ViewTaxRate: findType("ViewTaxRate*"), legacy_ViewTaxRateList: findType("ViewTaxRateList*"), legacy_ViewToken: findType("ViewToken*"), legacy_ViewTokenList: findType("ViewTokenList*"), legacy_ViewUser: findType("ViewUser*"), legacy_ViewUserList: findType("ViewUserList*"), legacy_ViewVendor: findType("ViewVendor*"), legacy_ViewVendorList: findType("ViewVendorList*"), legacy_ViewWebhook: findType("ViewWebhook*"), legacy_ViewWebhookList: findType("ViewWebhookList*"), legacy_WebhookConfigurationEntity: findType("WebhookConfigurationEntity*"), legacy_WebhookEditVM: findType("WebhookEditVM*"), legacy_WebhookEntity: findType("WebhookEntity*"), legacy_WebhookItemResponse: findType("WebhookItemResponse*"), legacy_WebhookListResponse: findType("WebhookListResponse*"), legacy_WebhookListVM: findType("WebhookListVM*"), legacy_WebhookScreenVM: findType("WebhookScreenVM*"), legacy_WebhookState: findType("WebhookState*"), legacy_WebhookUIState: findType("WebhookUIState*"), legacy_WebhookViewVM: findType("WebhookViewVM*"), legacy_Widget: findType("Widget*"), legacy_WorkflowSettingsVM: findType("WorkflowSettingsVM*"), legacy__AutocompleteEntity: findType("_AutocompleteEntity*"), legacy__ClientContactListTile: findType("_ClientContactListTile*"), legacy__TextType: findType("_TextType*"), legacy__VendorContactListTile: findType("_VendorContactListTile*"), legacy_bool: findType("bool*"), legacy_double: findType("double*"), legacy_dynamic_Function_legacy_List_legacy_String: findType("@(List*)*"), legacy_int: findType("int*"), legacy_legacy_Widget_Function_legacy_BuildContext: findType("Widget*(BuildContext*)*"), legacy_num: findType("num*"), nullable_AlignmentGeometryTween: findType("AlignmentGeometryTween?"), nullable_AppLocalization: findType("AppLocalization?"), nullable_Axis_Object: findType("Axis?"), nullable_Axis_num: findType("Axis?"), nullable_BackdropFilterEngineLayer: findType("BackdropFilterEngineLayer0?"), nullable_BackdropFilterLayer: findType("BackdropFilterLayer?"), nullable_BitmapCanvas: findType("BitmapCanvas?"), nullable_Border: findType("Border?"), nullable_BorderDirectional: findType("BorderDirectional?"), nullable_BorderRadiusTween: findType("BorderRadiusTween?"), nullable_BorderSide: findType("BorderSide?"), nullable_BoxConstraintsTween: findType("BoxConstraintsTween?"), nullable_BoxPainter: findType("BoxPainter?"), nullable_ByteData: findType("ByteData?"), nullable_CacheObject: findType("CacheObject?"), nullable_CanvasRenderingContext2D: findType("CanvasRenderingContext2D?"), nullable_CascadingPadding: findType("CascadingPadding?"), nullable_ChartContainerCustomPaint: findType("ChartContainerCustomPaint?"), nullable_CkPaint: findType("CkPaint?"), nullable_CkShader: findType("CkShader?"), nullable_ClipPathEngineLayer: findType("ClipPathEngineLayer0?"), nullable_ClipPathLayer: findType("ClipPathLayer?"), nullable_ClipRRectEngineLayer: findType("ClipRRectEngineLayer0?"), nullable_ClipRRectLayer: findType("ClipRRectLayer?"), nullable_ClipRectEngineLayer: findType("ClipRectEngineLayer0?"), nullable_ClipRectLayer: findType("ClipRectLayer?"), nullable_ClipboardData: findType("ClipboardData?"), nullable_Clock: findType("Clock?"), nullable_Color: findType("Color?"), nullable_ColorTween: findType("ColorTween?"), nullable_ContainerLayer: findType("ContainerLayer0?"), nullable_CroppedFile: findType("CroppedFile?"), nullable_DataRow: findType("DataRow?"), nullable_DateTime: findType("DateTime?"), nullable_DecorationTween: findType("DecorationTween?"), nullable_DiagnosticsNode: findType("DiagnosticsNode?"), nullable_Directionality: findType("Directionality?"), nullable_DirectoryNode: findType("DirectoryNode?"), nullable_EdgeInsetsGeometry: findType("EdgeInsetsGeometry?"), nullable_EdgeInsetsGeometryTween: findType("EdgeInsetsGeometryTween?"), nullable_Element: findType("Element0?"), nullable_Element_2: findType("Element?"), nullable_EngineStrutStyle: findType("EngineStrutStyle?"), nullable_FileInfo: findType("FileInfo?"), nullable_FilePickerResult: findType("FilePickerResult?"), nullable_FileUploadInputElement: findType("FileUploadInputElement?"), nullable_FocusNode: findType("FocusNode?"), nullable_FollowerLayer: findType("FollowerLayer?"), nullable_Future_Null: findType("Future?"), nullable_GlProgram: findType("GlProgram?"), nullable_GoogleSignInAccount: findType("GoogleSignInAccount?"), nullable_GoogleSignInUserData: findType("GoogleSignInUserData?"), nullable_HeroControllerScope: findType("HeroControllerScope?"), nullable_HorizontalDragGestureRecognizer: findType("HorizontalDragGestureRecognizer?"), nullable_IconThemeData: findType("IconThemeData?"), nullable_InkHighlight: findType("InkHighlight?"), nullable_InputBorder: findType("InputBorder?"), nullable_Key: findType("Key?"), nullable_List_BaseBarRendererElement: findType("List?"), nullable_List__LineRendererElement_Object: findType("List<_LineRendererElement>?"), nullable_List_double: findType("List?"), nullable_List_dynamic: findType("List<@>?"), nullable_List_int: findType("List?"), nullable_LogicalKeyboardKey: findType("LogicalKeyboardKey?"), nullable_LongPressGestureRecognizer: findType("LongPressGestureRecognizer?"), nullable_Map_String_dynamic: findType("Map?"), nullable_Map_of_String_and_List_String: findType("Map>?"), nullable_Map_of_nullable_Object_and_nullable_Object: findType("Map?"), nullable_MaterialLocalizations: findType("MaterialLocalizations?"), nullable_Matrix4: findType("Matrix4?"), nullable_Matrix4Tween: findType("Matrix4Tween?"), nullable_MetaElement: findType("MetaElement?"), nullable_MouseCursor: findType("MouseCursor0?"), nullable_NamedAttribution: findType("NamedAttribution?"), nullable_NativeFrames: findType("NativeFrames?"), nullable_Node: findType("Node1?"), nullable_Object: findType("Object?"), nullable_Offset: findType("Offset?"), nullable_OffsetEngineLayer: findType("OffsetEngineLayer0?"), nullable_OffsetLayer: findType("OffsetLayer?"), nullable_OpacityEngineLayer: findType("OpacityEngineLayer0?"), nullable_OpacityLayer: findType("OpacityLayer?"), nullable_OutlinedBorder: findType("OutlinedBorder?"), nullable_PanGestureRecognizer: findType("PanGestureRecognizer?"), nullable_ParentDataElement_KeepAliveParentDataMixin: findType("ParentDataElement?"), nullable_PersistedBackdropFilter: findType("PersistedBackdropFilter?"), nullable_PersistedClipPath: findType("PersistedClipPath?"), nullable_PersistedClipRect: findType("PersistedClipRect?"), nullable_PersistedOffset: findType("PersistedOffset?"), nullable_PersistedOpacity: findType("PersistedOpacity?"), nullable_PersistedPhysicalShape: findType("PersistedPhysicalShape?"), nullable_PersistedSurface: findType("PersistedSurface?"), nullable_PersistedTransform: findType("PersistedTransform?"), nullable_PhysicalModelLayer: findType("PhysicalModelLayer?"), nullable_PhysicalShapeEngineLayer: findType("PhysicalShapeEngineLayer0?"), nullable_PipelineOwner: findType("PipelineOwner?"), nullable_Rect: findType("Rect?"), nullable_RegisteredFont: findType("RegisteredFont?"), nullable_RenderBox: findType("RenderBox?"), nullable_RenderEditable: findType("RenderEditable?"), nullable_RenderObject: findType("RenderObject?"), nullable_RenderObjectElement: findType("RenderObjectElement?"), nullable_RenderObjectToWidgetElement_RenderBox: findType("RenderObjectToWidgetElement?"), nullable_RenderSemanticsGestureHandler: findType("RenderSemanticsGestureHandler?"), nullable_RenderSliver: findType("RenderSliver?"), nullable_RoleManager: findType("RoleManager?"), nullable_SelectionRect: findType("SelectionRect?"), nullable_SemanticsNode: findType("SemanticsNode?"), nullable_SemanticsOwner: findType("SemanticsOwner?"), nullable_SeriesRenderer_Object: findType("SeriesRenderer?"), nullable_ShapeBorder: findType("ShapeBorder?"), nullable_ShapeBorderTween: findType("ShapeBorderTween?"), nullable_ShapeDecoration: findType("ShapeDecoration?"), nullable_SimpleSelector: findType("SimpleSelector?"), nullable_Size: findType("Size?"), nullable_SkDeletable: findType("SkDeletable?"), nullable_SliverMultiBoxAdaptorParentData: findType("SliverMultiBoxAdaptorParentData?"), nullable_StatefulElement: findType("StatefulElement?"), nullable_String: findType("String?"), nullable_SurfacePaint: findType("SurfacePaint?"), nullable_TapGestureRecognizer: findType("TapGestureRecognizer?"), nullable_TextStyle: findType("TextStyle?"), nullable_TextStyleTween: findType("TextStyleTween?"), nullable_TimeOfDay: findType("TimeOfDay?"), nullable_Token: findType("Token0?"), nullable_TransformEngineLayer: findType("TransformEngineLayer0?"), nullable_TransformLayer: findType("TransformLayer?"), nullable_Tween_double: findType("Tween?"), nullable_Uint8List: findType("Uint8List?"), nullable_VerticalDragGestureRecognizer: findType("VerticalDragGestureRecognizer?"), nullable_XFile: findType("XFile?"), nullable__AnimationTuple: findType("_AnimationTuple?"), nullable__EffectiveTickerMode: findType("_EffectiveTickerMode?"), nullable__FlexEntranceTransitionParentData: findType("_FlexEntranceTransitionParentData?"), nullable__FocusTraversalGroupMarker: findType("_FocusTraversalGroupMarker?"), nullable__Highlight: findType("_Highlight?"), nullable__PointAtTime: findType("_PointAtTime?"), nullable__ScrollableScope: findType("_ScrollableScope?"), nullable__SlidableControllerScope: findType("_SlidableControllerScope?"), nullable__TaskEntry_dynamic: findType("_TaskEntry<@>?"), nullable_bool: findType("bool?"), nullable_double: findType("double?"), nullable_int: findType("int?"), nullable_void_Function: findType("~()?"), num: findType("num"), void: findType("~"), void_Function: findType("~()"), void_Function_AnimationStatus: findType("~(AnimationStatus)"), void_Function_Duration: findType("~(Duration)"), void_Function_FocusHighlightMode: findType("~(FocusHighlightMode)"), void_Function_List_FrameTiming: findType("~(List)"), void_Function_Object: findType("~(Object)"), void_Function_Object_StackTrace: findType("~(Object,StackTrace)"), void_Function_PointerEvent: findType("~(PointerEvent)"), void_Function_RawKeyEvent: findType("~(RawKeyEvent)"), void_Function_nullable_Object: findType("~(Object?)") }; })(); (function constants() { var makeConstList = hunkHelpers.makeConstList; B.AnchorElement_methods = A.AnchorElement.prototype; B.BodyElement_methods = A.BodyElement.prototype; B.CanvasElement_methods = A.CanvasElement.prototype; B.CanvasRenderingContext2D_methods = A.CanvasRenderingContext2D.prototype; B.CssStyleDeclaration_methods = A.CssStyleDeclaration.prototype; B.DivElement_methods = A.DivElement.prototype; B.FileReader_methods = A.FileReader.prototype; B.FormElement_methods = A.FormElement.prototype; B.HtmlDocument_methods = A.HtmlDocument.prototype; B.HttpRequest_methods = A.HttpRequest.prototype; B.ImageElement_methods = A.ImageElement.prototype; B.InputElement_methods = A.InputElement.prototype; B.Interceptor_methods = J.Interceptor.prototype; B.JSArray_methods = J.JSArray.prototype; B.JSBool_methods = J.JSBool.prototype; B.JSInt_methods = J.JSInt.prototype; B.JSNull_methods = J.JSNull.prototype; B.JSNumber_methods = J.JSNumber.prototype; B.JSString_methods = J.JSString.prototype; B.JavaScriptFunction_methods = J.JavaScriptFunction.prototype; B.JavaScriptObject_methods = J.JavaScriptObject.prototype; B.LabelElement_methods = A.LabelElement.prototype; B.MediaQueryList_methods = A.MediaQueryList.prototype; B.MetaElement_methods = A.MetaElement.prototype; B.MutationObserver_methods = A.MutationObserver.prototype; B.NativeByteBuffer_methods = A.NativeByteBuffer.prototype; B.NativeByteData_methods = A.NativeByteData.prototype; B.NativeFloat32List_methods = A.NativeFloat32List.prototype; B.NativeInt32List_methods = A.NativeInt32List.prototype; B.NativeUint32List_methods = A.NativeUint32List.prototype; B.NativeUint8List_methods = A.NativeUint8List.prototype; B.NodeList_methods = A.NodeList0.prototype; B.OffscreenCanvas_methods = A.OffscreenCanvas.prototype; B.ParagraphElement_methods = A.ParagraphElement.prototype; B.Performance_methods = A.Performance.prototype; B.PlainJavaScriptObject_methods = J.PlainJavaScriptObject.prototype; B.Storage_methods = A.Storage.prototype; B.StyleElement_methods = A.StyleElement.prototype; B.SvgSvgElement_methods = A.SvgSvgElement.prototype; B.TableElement_methods = A.TableElement.prototype; B.TouchList_methods = A.TouchList.prototype; B.UnknownJavaScriptObject_methods = J.UnknownJavaScriptObject.prototype; B.WheelEvent_methods = A.WheelEvent.prototype; B.Window_methods = A.Window.prototype; B.AccessibilityMode_0 = new A.AccessibilityMode(0, "unknown"); B.ActionPaneType_0 = new A.ActionPaneType(0, "end"); B.ActionPaneType_1 = new A.ActionPaneType(1, "none"); B.ActionPaneType_2 = new A.ActionPaneType(2, "start"); B.AlignmentDirectional_0_1 = new A.AlignmentDirectional(0, 1); B.AlignmentDirectional_0_m1 = new A.AlignmentDirectional(0, -1); B.AlignmentDirectional_1_0 = new A.AlignmentDirectional(1, 0); B.AlignmentDirectional_1_m1 = new A.AlignmentDirectional(1, -1); B.AlignmentDirectional_m1_0 = new A.AlignmentDirectional(-1, 0); B.AlignmentDirectional_m1_m1 = new A.AlignmentDirectional(-1, -1); B.Alignment_0_0 = new A.Alignment(0, 0); B.Alignment_0_1 = new A.Alignment(0, 1); B.Alignment_0_m1 = new A.Alignment(0, -1); B.Alignment_1_0 = new A.Alignment(1, 0); B.Alignment_1_1 = new A.Alignment(1, 1); B.Alignment_1_m1 = new A.Alignment(1, -1); B.Alignment_m1_0 = new A.Alignment(-1, 0); B.Alignment_m1_1 = new A.Alignment(-1, 1); B.Alignment_m1_m1 = new A.Alignment(-1, -1); B.AlwaysScrollableScrollPhysics_null = new A.AlwaysScrollableScrollPhysics(null); B.AndroidOverscrollIndicator_0 = new A.AndroidOverscrollIndicator(0, "stretch"); B.AndroidOverscrollIndicator_1 = new A.AndroidOverscrollIndicator(1, "glow"); B.AnimationBehavior_0 = new A.AnimationBehavior(0, "normal"); B.AnimationBehavior_1 = new A.AnimationBehavior(1, "preserve"); B.AnimationDirection_0 = new A.AnimationDirection(0, "forward"); B.AnimationDirection_1 = new A.AnimationDirection(1, "reverse"); B.AnimationStatus_0 = new A.AnimationStatus(0, "dismissed"); B.AnimationStatus_1 = new A.AnimationStatus(1, "forward"); B.AnimationStatus_2 = new A.AnimationStatus(2, "reverse"); B.AnimationStatus_3 = new A.AnimationStatus(3, "completed"); B.AppBarTheme_ahf = new A.AppBarTheme(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.AppLayout_desktop = new A.AppLayout("desktop"); B.AppLayout_mobile = new A.AppLayout("mobile"); B.AppLifecycleState_0 = new A.AppLifecycleState(0, "resumed"); B.AppLifecycleState_1 = new A.AppLifecycleState(1, "inactive"); B.AppLifecycleState_2 = new A.AppLifecycleState(2, "paused"); B.AppLifecycleState_3 = new A.AppLifecycleState(3, "detached"); B.AppSidebarMode_collapse = new A.AppSidebarMode("collapse"); B.AppSidebarMode_float = new A.AppSidebarMode("float"); B.AppSidebarMode_visible = new A.AppSidebarMode("visible"); B.AppSidebar_history = new A.AppSidebar("history"); B.AppSidebar_menu = new A.AppSidebar("menu"); B.AppleIDAuthorizationScopes_0 = new A.AppleIDAuthorizationScopes(0, "email"); B.AppleIDAuthorizationScopes_1 = new A.AppleIDAuthorizationScopes(1, "fullName"); B.AsciiDecoder_false_127 = new A.AsciiDecoder(false, 127); B.AsciiEncoder_127 = new A.AsciiEncoder(127); B.AttributeKey_2Sa = new A.AttributeKey("BarRenderer.barGroupIndex", type$.AttributeKey_legacy_int); B.AttributeKey_8Tg = new A.AttributeKey("BarRenderer.barGroupCount", type$.AttributeKey_legacy_int); B.AttributeKey_Bwd = new A.AttributeKey("Axis.measureAxisId", type$.AttributeKey_legacy_String); B.AttributeKey_Db0 = new A.AttributeKey("BarRenderer.stackKey", type$.AttributeKey_legacy_String); B.AttributeKey_Ex1 = new A.AttributeKey("LineRenderer.styleSegments", A.findType("AttributeKey*>*>")); B.AttributeKey_I4y = new A.AttributeKey("SeriesRenderer.renderer", A.findType("AttributeKey*>")); B.AttributeKey_MYA = new A.AttributeKey("LineRenderer.lineStackIndex", type$.AttributeKey_legacy_int); B.AttributeKey_OBU = new A.AttributeKey("Axis.domainAxis", type$.AttributeKey_legacy_Axis_legacy_Object); B.AttributeKey_Ubu = new A.AttributeKey("BarRenderer.allBarGroupWeights", A.findType("AttributeKey*>")); B.AttributeKey_YGG = new A.AttributeKey("BarRenderer.previousBarGroupWeight", type$.AttributeKey_legacy_double); B.AttributeKey_esd = new A.AttributeKey("BarRenderer.barGroupWeight", type$.AttributeKey_legacy_double); B.AttributeKey_kKQ = new A.AttributeKey("SeriesRenderer.rendererId", type$.AttributeKey_legacy_String); B.AttributeKey_kWM = new A.AttributeKey("Axis.measureAxis", type$.AttributeKey_legacy_Axis_legacy_Object); B.AttributeKey_vl2 = new A.AttributeKey("BarRenderer.elements", A.findType("AttributeKey*>")); B.AttributionVisitEvent_0 = new A.AttributionVisitEvent(0, "start"); B.AttributionVisitEvent_1 = new A.AttributionVisitEvent(1, "end"); B.AuthorizationErrorCode_0 = new A.AuthorizationErrorCode(0, "canceled"); B.AuthorizationErrorCode_1 = new A.AuthorizationErrorCode(1, "failed"); B.AuthorizationErrorCode_2 = new A.AuthorizationErrorCode(2, "invalidResponse"); B.AuthorizationErrorCode_3 = new A.AuthorizationErrorCode(3, "notHandled"); B.AuthorizationErrorCode_4 = new A.AuthorizationErrorCode(4, "notInteractive"); B.AuthorizationErrorCode_5 = new A.AuthorizationErrorCode(5, "unknown"); B.List_empty0 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_String); B.TextAffinity_1 = new A.TextAffinity(1, "downstream"); B.TextSelection_ke5 = new A.TextSelection(-1, -1, B.TextAffinity_1, false, -1, -1); B.TextRange_m1_m1 = new A.TextRange(-1, -1); B.TextEditingValue_li8 = new A.TextEditingValue("", B.TextSelection_ke5, B.TextRange_m1_m1); B.AutofillConfiguration_lYx = new A.AutofillConfiguration(false, "", B.List_empty0, B.TextEditingValue_li8, null); B.AutofillContextAction_0 = new A.AutofillContextAction(0, "commit"); B.AutovalidateMode_0 = new A.AutovalidateMode(0, "disabled"); B.AutovalidateMode_1 = new A.AutovalidateMode(1, "always"); B.AutovalidateMode_2 = new A.AutovalidateMode(2, "onUserInteraction"); B.AxisDirection_0 = new A.AxisDirection(0, "up"); B.AxisDirection_1 = new A.AxisDirection(1, "right"); B.AxisDirection_2 = new A.AxisDirection(2, "down"); B.AxisDirection_3 = new A.AxisDirection(3, "left"); B.AxisOffset_100_100 = new A.AxisOffset(100, 100); B.AxisOffset_54_54 = new A.AxisOffset(54, 54); B.AxisOrientation_0 = new A.AxisOrientation(0, "top"); B.AxisOrientation_1 = new A.AxisOrientation(1, "right"); B.AxisOrientation_2 = new A.AxisOrientation(2, "bottom"); B.AxisOrientation_3 = new A.AxisOrientation(3, "left"); B.Axis_0 = new A.Axis0(0, "horizontal"); B.Axis_1 = new A.Axis0(1, "vertical"); B.BackButtonIcon_null = new A.BackButtonIcon(null); B.BackButton_null_null = new A.BackButton(null, null); B.BarGroupingType_0 = new A.BarGroupingType(0, "grouped"); B.BarGroupingType_1 = new A.BarGroupingType(1, "groupedStacked"); B.BarGroupingType_2 = new A.BarGroupingType(2, "stacked"); B.C_StringCodec = new A.StringCodec(); B.BasicMessageChannel_5UB = new A.BasicMessageChannel("flutter/lifecycle", B.C_StringCodec, null, A.findType("BasicMessageChannel")); B.C_JSONMessageCodec0 = new A.JSONMessageCodec0(); B.BasicMessageChannel_MYE = new A.BasicMessageChannel("flutter/system", B.C_JSONMessageCodec0, null, type$.BasicMessageChannel_nullable_Object); B.C_StandardMessageCodec = new A.StandardMessageCodec0(); B.BasicMessageChannel_QXb = new A.BasicMessageChannel("flutter/accessibility", B.C_StandardMessageCodec, null, type$.BasicMessageChannel_nullable_Object); B.BasicMessageChannel_kqo = new A.BasicMessageChannel("flutter/keyevent", B.C_JSONMessageCodec0, null, type$.BasicMessageChannel_nullable_Object); B.BehaviorPosition_0 = new A.BehaviorPosition(0, "top"); B.BehaviorPosition_1 = new A.BehaviorPosition(1, "bottom"); B.BehaviorPosition_2 = new A.BehaviorPosition(2, "start"); B.BehaviorPosition_3 = new A.BehaviorPosition(3, "end"); B.BehaviorPosition_4 = new A.BehaviorPosition(4, "inside"); B.BlendMode_13 = new A.BlendMode(13, "modulate"); B.BlendMode_20 = new A.BlendMode(20, "hardLight"); B.BlendMode_26 = new A.BlendMode(26, "saturation"); B.BlendMode_3 = new A.BlendMode(3, "srcOver"); B.BlockSelector_header1_null_null_null = new A.BlockSelector("header1", null, null, null); B.BlockSelector_header2_null_null_null = new A.BlockSelector("header2", null, null, null); B.BlockSelector_header3_null_null_null = new A.BlockSelector("header3", null, null, null); B.BlockSelector_listItem_null_null_null = new A.BlockSelector("listItem", null, null, null); B.BlockSelector_null_null_null_null = new A.BlockSelector(null, null, null, null); B.BlockSelector_paragraph_null_null_null = new A.BlockSelector("paragraph", null, null, null); B.BlurStyle_0 = new A.BlurStyle(0, "normal"); B.BlurStyle_2 = new A.BlurStyle(2, "outer"); B.Radius_0_0 = new A.Radius(0, 0); B.BorderRadius_tLn = new A.BorderRadius(B.Radius_0_0, B.Radius_0_0, B.Radius_0_0, B.Radius_0_0); B.Radius_4_4 = new A.Radius(4, 4); B.BorderRadius_tLn1 = new A.BorderRadius(B.Radius_4_4, B.Radius_4_4, B.Radius_0_0, B.Radius_0_0); B.Radius_2_2 = new A.Radius(2, 2); B.BorderRadius_tLn2 = new A.BorderRadius(B.Radius_2_2, B.Radius_2_2, B.Radius_2_2, B.Radius_2_2); B.BorderRadius_tLn0 = new A.BorderRadius(B.Radius_4_4, B.Radius_4_4, B.Radius_4_4, B.Radius_4_4); B.Radius_8_8 = new A.Radius(8, 8); B.BorderRadius_tLn3 = new A.BorderRadius(B.Radius_8_8, B.Radius_8_8, B.Radius_8_8, B.Radius_8_8); B.Color_4278190080 = new A.Color(4278190080); B.BorderStyle_0 = new A.BorderStyle(0, "none"); B.BorderSide_0CF = new A.BorderSide(B.Color_4278190080, 0, B.BorderStyle_0); B.BorderStyle_1 = new A.BorderStyle(1, "solid"); B.BorderSide_27z = new A.BorderSide(B.Color_4278190080, 1, B.BorderStyle_1); B.Border_27z = new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_0CF); B.BottomAppBarTheme_null_null_null = new A.BottomAppBarTheme(null, null, null); B.BottomNavigationBarThemeData_mRH = new A.BottomNavigationBarThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.BottomSheetThemeData_OEE = new A.BottomSheetThemeData(null, null, null, null, null, null, null); B.RangeMaintainingScrollPhysics_null = new A.RangeMaintainingScrollPhysics(null); B.BouncingScrollPhysics_MuS = new A.BouncingScrollPhysics(B.RangeMaintainingScrollPhysics_null); B.BoxConstraints_40_40_40_40 = new A.BoxConstraints(40, 40, 40, 40); B.BoxConstraints_56_56_56_56 = new A.BoxConstraints(56, 56, 56, 56); B.BoxConstraints_59_59_39_39 = new A.BoxConstraints(59, 59, 39, 39); B.BoxConstraints_96_96_96_96 = new A.BoxConstraints(96, 96, 96, 96); B.BoxConstraints_ALM = new A.BoxConstraints(1 / 0, 1 / 0, 1 / 0, 1 / 0); B.BoxConstraints_CWG = new A.BoxConstraints(0, 1 / 0, 48, 48); B.BoxConstraints_EcO = new A.BoxConstraints(112, 280, 0, 1 / 0); B.BoxConstraints_mlX5 = new A.BoxConstraints(0, 1 / 0, 0, 1 / 0); B.BoxConstraints_mlX4 = new A.BoxConstraints(64, 1 / 0, 0, 1 / 0); B.BoxConstraints_mlX = new A.BoxConstraints(280, 1 / 0, 0, 1 / 0); B.BoxConstraints_mlX1 = new A.BoxConstraints(36, 1 / 0, 36, 1 / 0); B.BoxConstraints_mlX6 = new A.BoxConstraints(88, 1 / 0, 36, 1 / 0); B.BoxConstraints_mlX2 = new A.BoxConstraints(0, 1 / 0, 48, 1 / 0); B.BoxConstraints_mlX0 = new A.BoxConstraints(48, 1 / 0, 48, 1 / 0); B.BoxConstraints_mlX3 = new A.BoxConstraints(0, 1 / 0, 52, 1 / 0); B.Color_4290624957 = new A.Color(4290624957); B.BorderSide_SJV = new A.BorderSide(B.Color_4290624957, 0, B.BorderStyle_1); B.Border_D34 = new A.Border(B.BorderSide_0CF, B.BorderSide_0CF, B.BorderSide_SJV, B.BorderSide_0CF); B.BoxShape_0 = new A.BoxShape(0, "rectangle"); B.BoxDecoration_1ZZ = new A.BoxDecoration(null, null, B.Border_D34, null, null, null, B.BoxShape_0); B.BoxDecoration_423 = new A.BoxDecoration(null, null, null, null, null, null, B.BoxShape_0); B.Color_4294967295 = new A.Color(4294967295); B.Offset_0_3 = new A.Offset(0, 3); B.BoxShadow_oyn = new A.BoxShadow(0, B.BlurStyle_0, B.Color_4278190080, B.Offset_0_3, 5); B.List_JeD = A._setArrayType(makeConstList([B.BoxShadow_oyn]), type$.JSArray_legacy_BoxShadow); B.BoxDecoration_6H2 = new A.BoxDecoration(B.Color_4294967295, null, null, null, B.List_JeD, null, B.BoxShape_0); B.BoxFit_1 = new A.BoxFit(1, "contain"); B.BoxFit_2 = new A.BoxFit(2, "cover"); B.BoxFit_6 = new A.BoxFit(6, "scaleDown"); B.BoxHeightStyle_0 = new A.BoxHeightStyle(0, "tight"); B.BoxHeightStyle_5 = new A.BoxHeightStyle(5, "strut"); B.BoxShape_1 = new A.BoxShape(1, "circle"); B.BoxWidthStyle_0 = new A.BoxWidthStyle(0, "tight"); B.Brightness_0 = new A.Brightness(0, "dark"); B.Brightness_1 = new A.Brightness(1, "light"); B.BrowserEngine_0 = new A.BrowserEngine(0, "blink"); B.BrowserEngine_1 = new A.BrowserEngine(1, "webkit"); B.BrowserEngine_2 = new A.BrowserEngine(2, "firefox"); B.BrowserEngine_3 = new A.BrowserEngine(3, "edge"); B.BrowserEngine_4 = new A.BrowserEngine(4, "ie11"); B.BrowserEngine_5 = new A.BrowserEngine(5, "samsung"); B.BrowserEngine_6 = new A.BrowserEngine(6, "unknown"); B.ButtonBarLayoutBehavior_1 = new A.ButtonBarLayoutBehavior(1, "padded"); B.ButtonBarThemeData_A0t = new A.ButtonBarThemeData(null, null, null, null, null, null, null, null, null); B.ButtonState_0 = new A.ButtonState(0, "idle"); B.ButtonState_1 = new A.ButtonState(1, "loading"); B.ButtonState_2 = new A.ButtonState(2, "success"); B.ButtonState_3 = new A.ButtonState(3, "error"); B.ButtonTextTheme_0 = new A.ButtonTextTheme(0, "normal"); B.C__EmptyStream0 = new A._EmptyStream(A.findType("_EmptyStream*>")); B.ByteStream__EmptyStream = new A.ByteStream(B.C__EmptyStream0); B.CONSTANT0 = new A.Instantiation1(A.math__max$closure(), A.findType("Instantiation1")); B.CONSTANT = new A.Instantiation1(A.math__max$closure(), A.findType("Instantiation1")); B.C_AccessibilityFeatures = new A.AccessibilityFeatures(); B.C_ActionDispatcher = new A.ActionDispatcher(); B.C_AndroidAuthMessages = new A.AndroidAuthMessages(); B.C_AppLocalizationsDelegate = new A.AppLocalizationsDelegate(); B.C_AsciiCodec = new A.AsciiCodec(); B.C_AssetManager = new A.AssetManager(); B.C_WebClient = new A.WebClient(); B.C_AuthRepository = new A.AuthRepository(); B.C_Base64Encoder = new A.Base64Encoder(); B.C_Base64Codec = new A.Base64Codec(); B.C_Base64Decoder = new A.Base64Decoder(); B.C_BlockTagBlockHtmlSyntax = new A.BlockTagBlockHtmlSyntax(); B.C_BlockquoteComponentBuilder = new A.BlockquoteComponentBuilder(); B.C_BlockquoteSyntax = new A.BlockquoteSyntax(); B.C_BrowserPlatformLocation = new A.BrowserPlatformLocation(); B.C_CkRestoreCommand = new A.CkRestoreCommand(); B.C_CkSaveCommand = new A.CkSaveCommand(); B.C_ClientRepository = new A.ClientRepository(); B.C_Clock = new A.Clock(); B.C_CodeBlockSyntax = new A.CodeBlockSyntax(); B.C_CompanyGatewayRepository = new A.CompanyGatewayRepository(); B.C_Console = new A.Console(); B.C_ConstCornerStrategy = new A.ConstCornerStrategy(); B.C_CreditRepository = new A.CreditRepository(); B.C_DebugPaintConfig = new A.DebugPaintConfig(); B.C_DecimalInputType = new A.DecimalInputType(); B.C_DefaultCupertinoLocalizations = new A.DefaultCupertinoLocalizations(); B.C_DefaultEquality = new A.DefaultEquality(A.findType("DefaultEquality<0&*>")); B.C_DefaultMaterialLocalizations = new A.DefaultMaterialLocalizations(); B.C_DefaultTransitionDelegate = new A.DefaultTransitionDelegate(A.findType("DefaultTransitionDelegate<@>")); B.C_DefaultWidgetsLocalizations = new A.DefaultWidgetsLocalizations(); B.C_DesignRepository = new A.DesignRepository(); B.C_DoNothingAndStopPropagationTextIntent = new A.DoNothingAndStopPropagationTextIntent(); B.C_DocumentRepository = new A.DocumentRepository(); B.C_ElasticOutCurve = new A.ElasticOutCurve(); B.C_EmailInputType = new A.EmailInputType(); B.C_EmptyBlockSyntax = new A.EmptyBlockSyntax(); B.C_EmptyIterable = new A.EmptyIterable(A.findType("EmptyIterable")); B.C_EmptyIterable0 = new A.EmptyIterable(A.findType("EmptyIterable")); B.C_EmptyIterator = new A.EmptyIterator(A.findType("EmptyIterator<0&*>")); B.C_Endian0 = new A.Endian(); B.C_Endian = new A.Endian(); B.C_ExpenseCategoryRepository = new A.ExpenseCategoryRepository(); B.C_ExpenseRepository = new A.ExpenseRepository(); B.C_FencedCodeBlockSyntax = new A.FencedCodeBlockSyntax(); B.C_FloatingLabelAlignment = new A.FloatingLabelAlignment(); B.C_GestureSettings = new A.GestureSettings(); B.C_GroupRepository = new A.GroupRepository(); B.C_HashUrlStrategy = new A.HashUrlStrategy(); B.C_HeaderSyntax = new A.HeaderSyntax(); B.C_HorizontalRuleComponentBuilder = new A.HorizontalRuleComponentBuilder(); B.C_HorizontalRuleSyntax = new A.HorizontalRuleSyntax(); B.C_IOSAuthMessages = new A.IOSAuthMessages(); B.C_IdentityConverter = new A.IdentityConverter(A.findType("IdentityConverter")); B.C_ImageComponentBuilder = new A.ImageComponentBuilder(); B.TextInputAction_12 = new A.TextInputAction(12, "newline"); B.C_ImeConfiguration = new A.ImeConfiguration(); B.FloatingLabelBehavior_1 = new A.FloatingLabelBehavior(1, "auto"); B.C_InputDecorationTheme = new A.InputDecorationTheme(); B.C_IntegerDivisionByZeroException = new A.IntegerDivisionByZeroException(); B.C_InvoiceRepository = new A.InvoiceRepository(); B.C_JSONMessageCodec = new A.JSONMessageCodec(); B.C_JSONMethodCodec = new A.JSONMethodCodec(); B.C_JSONMethodCodec0 = new A.JSONMethodCodec0(); B.C_JS_CONST = function getTagFallback(o) { var s = Object.prototype.toString.call(o); return s.substring(8, s.length - 1); }; B.C_JS_CONST0 = function() { var toStringFunction = Object.prototype.toString; function getTag(o) { var s = toStringFunction.call(o); return s.substring(8, s.length - 1); } function getUnknownTag(object, tag) { if (/^HTML[A-Z].*Element$/.test(tag)) { var name = toStringFunction.call(object); if (name == "[object Object]") return null; return "HTMLElement"; } } function getUnknownTagGenericBrowser(object, tag) { if (self.HTMLElement && object instanceof HTMLElement) return "HTMLElement"; return getUnknownTag(object, tag); } function prototypeForTag(tag) { if (typeof window == "undefined") return null; if (typeof window[tag] == "undefined") return null; var constructor = window[tag]; if (typeof constructor != "function") return null; return constructor.prototype; } function discriminator(tag) { return null; } var isBrowser = typeof navigator == "object"; return { getTag: getTag, getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, prototypeForTag: prototypeForTag, discriminator: discriminator }; }; B.C_JS_CONST6 = function(getTagFallback) { return function(hooks) { if (typeof navigator != "object") return hooks; var ua = navigator.userAgent; if (ua.indexOf("DumpRenderTree") >= 0) return hooks; if (ua.indexOf("Chrome") >= 0) { function confirm(p) { return typeof window == "object" && window[p] && window[p].name == p; } if (confirm("Window") && confirm("HTMLElement")) return hooks; } hooks.getTag = getTagFallback; }; }; B.C_JS_CONST1 = function(hooks) { if (typeof dartExperimentalFixupGetTag != "function") return hooks; hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); }; B.C_JS_CONST2 = function(hooks) { var getTag = hooks.getTag; var prototypeForTag = hooks.prototypeForTag; function getTagFixed(o) { var tag = getTag(o); if (tag == "Document") { if (!!o.xmlVersion) return "!Document"; return "!HTMLDocument"; } return tag; } function prototypeForTagFixed(tag) { if (tag == "Document") return null; return prototypeForTag(tag); } hooks.getTag = getTagFixed; hooks.prototypeForTag = prototypeForTagFixed; }; B.C_JS_CONST5 = function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Firefox") == -1) return hooks; var getTag = hooks.getTag; var quickMap = { "BeforeUnloadEvent": "Event", "DataTransfer": "Clipboard", "GeoGeolocation": "Geolocation", "Location": "!Location", "WorkerMessageEvent": "MessageEvent", "XMLDocument": "!Document"}; function getTagFirefox(o) { var tag = getTag(o); return quickMap[tag] || tag; } hooks.getTag = getTagFirefox; }; B.C_JS_CONST4 = function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Trident/") == -1) return hooks; var getTag = hooks.getTag; var quickMap = { "BeforeUnloadEvent": "Event", "DataTransfer": "Clipboard", "HTMLDDElement": "HTMLElement", "HTMLDTElement": "HTMLElement", "HTMLPhraseElement": "HTMLElement", "Position": "Geoposition" }; function getTagIE(o) { var tag = getTag(o); var newTag = quickMap[tag]; if (newTag) return newTag; if (tag == "Object") { if (window.DataView && (o instanceof window.DataView)) return "DataView"; } return tag; } function prototypeForTagIE(tag) { var constructor = window[tag]; if (constructor == null) return null; return constructor.prototype; } hooks.getTag = getTagIE; hooks.prototypeForTag = prototypeForTagIE; }; B.C_JS_CONST3 = function(hooks) { return hooks; } ; B.C_JsonCodec = new A.JsonCodec(); B.C_Latin1Codec = new A.Latin1Codec(); B.C_LineSplitter = new A.LineSplitter(); B.C_ListItemComponentBuilder = new A.ListItemComponentBuilder(); B.C_LocalDateTimeFactory = new A.LocalDateTimeFactory(); B.C_LocalPlatform = new A.LocalPlatform(); B.C_MaterialBlue = new A.MaterialBlue(); B.C_MaterialCyan = new A.MaterialCyan(); B.C_MaterialDeepOrange = new A.MaterialDeepOrange(); B.C_MaterialGreen = new A.MaterialGreen(); B.C_MaterialIndigo = new A.MaterialIndigo(); B.C_MaterialLime = new A.MaterialLime(); B.C_MaterialPink = new A.MaterialPink(); B.C_MaterialPurple = new A.MaterialPurple(); B.C_MaterialRed = new A.MaterialRed(); B.C_MaterialStyle = new A.MaterialStyle(); B.C_MaterialTeal = new A.MaterialTeal(); B.C_MaterialYellow = new A.MaterialYellow(); B.C_MultilineInputType = new A.MultilineInputType(); B.C_NoTextInputType = new A.NoTextInputType(); B.C_NumberInputType = new A.NumberInputType(); B.C_Object = new A.Object(); B.C_OrderedListSyntax = new A.OrderedListSyntax(); B.C_OrdinalTickFormatter = new A.OrdinalTickFormatter(); B.C_OrdinalTickProvider = new A.OrdinalTickProvider(); B.C_OtherTagBlockHtmlSyntax = new A.OtherTagBlockHtmlSyntax(); B.C_OutOfMemoryError = new A.OutOfMemoryError(); B.C_PaintRestore = new A.PaintRestore(); B.C_PaintSave = new A.PaintSave(); B.C_ParagraphComponentBuilder = new A.ParagraphComponentBuilder(); B.C_ParagraphSyntax = new A.ParagraphSyntax(); B.C_PaymentRepository = new A.PaymentRepository(); B.C_PaymentTermRepository = new A.PaymentTermRepository(); B.C_PhoneInputType = new A.PhoneInputType(); B.C_PointerSupportDetector = new A.PointerSupportDetector(); B.C_ProductRepository = new A.ProductRepository(); B.C_ProjectRepository = new A.ProjectRepository(); B.C_PurchaseOrderRepository = new A.PurchaseOrderRepository(); B.QrDataModuleShape_0 = new A.QrDataModuleShape(0, "square"); B.C_QrDataModuleStyle = new A.QrDataModuleStyle(); B.QrEyeShape_0 = new A.QrEyeShape(0, "square"); B.C_QrEyeStyle = new A.QrEyeStyle(); B.C_QuoteRepository = new A.QuoteRepository(); B.C_RecurringExpenseRepository = new A.RecurringExpenseRepository(); B.C_RecurringInvoiceRepository = new A.RecurringInvoiceRepository(); B.Color_4289515255 = new A.Color(4289515255); B.C_SelectionStyles = new A.SelectionStyles(); B.C_SentinelValue = new A.SentinelValue(); B.C_SetextHeaderSyntax = new A.SetextHeaderSyntax(); B.C_SettingsRepository = new A.SettingsRepository(); B.C_SimpleLegendEntryLayout = new A.SimpleLegendEntryLayout(); B.C_StandardMessageCodec0 = new A.StandardMessageCodec(); B.C_StandardMethodCodec0 = new A.StandardMethodCodec(); B.C_StandardMethodCodec = new A.StandardMethodCodec0(); B.StepSizeType_0 = new A.StepSizeType(0, "autoDetect"); B.C_StepSizeConfig = new A.StepSizeConfig(); B.C_StyledToastPosition = new A.StyledToastPosition(); B.C_SubscriptionRepository = new A.SubscriptionRepository(); B.C_SystemEncoding = new A.SystemEncoding(); B.C_TaskRepository = new A.TaskRepository(); B.C_TaskStatusRepository = new A.TaskStatusRepository(); B.C_TaxRateRepository = new A.TaxRateRepository(); B.C_TextInputClearClient = new A.TextInputClearClient(); B.C_TextInputHide = new A.TextInputHide(); B.C_TextInputRequestAutofill = new A.TextInputRequestAutofill(); B.C_TextInputSetCaretRect = new A.TextInputSetCaretRect(); B.C_TextInputSetMarkedTextRect = new A.TextInputSetMarkedTextRect(); B.C_TextInputShow = new A.TextInputShow(); B.C_TextInputType = new A.TextInputType0(); B.C_TextInputUpdateConfig = new A.TextInputUpdateConfig(); B.Offset_ILV = new A.Offset(0.05, 0); B.Offset_dGA = new A.Offset(0.133333, 0.06); B.Offset_GNx = new A.Offset(0.166666, 0.4); B.Offset_Muk = new A.Offset(0.208333, 0.82); B.Offset_chs0 = new A.Offset(0.25, 1); B.C_ThreePointCubic = new A.ThreePointCubic(); B.C_TokenRepository = new A.TokenRepository(); B.C_UnknownComponentBuilder = new A.UnknownComponentBuilder(); B.C_UnorderedListSyntax = new A.UnorderedListSyntax(); B.C_UrlInputType = new A.UrlInputType(); B.C_UserRepository = new A.UserRepository(); B.C_Utf8Codec = new A.Utf8Codec(); B.C_Utf8Encoder = new A.Utf8Encoder(); B.C_Uuid = new A.Uuid(); B.C_VendorRepository = new A.VendorRepository(); B.Rect_0_0_0_0 = new A.Rect(0, 0, 0, 0); B.WindowPadding_0_0_0_0 = new A.WindowPadding(0, 0, 0, 0); B.List_empty4 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.C_ViewConfiguration = new A.ViewConfiguration0(); B.C_ViewMargin = new A.ViewMargin(); B.C_WebPlatform = new A.WebPlatform(); B.C_WebhookRepository = new A.WebhookRepository(); B.C_ZoomPageTransitionsBuilder = new A.ZoomPageTransitionsBuilder(); B.C__AlwaysCompleteAnimation = new A._AlwaysCompleteAnimation(); B.C__AlwaysDismissedAnimation = new A._AlwaysDismissedAnimation(); B.C__CupertinoLocalizationsDelegate = new A._CupertinoLocalizationsDelegate(); B.C__DayPickerGridDelegate = new A._DayPickerGridDelegate(); B.C__DecelerateCurve = new A._DecelerateCurve(); B.C__DefaultBinaryMessenger = new A._DefaultBinaryMessenger(); B.C__DefaultHeroTag = new A._DefaultHeroTag(); B.C__DeferringMouseCursor = new A._DeferringMouseCursor(); B.C__DelayedDone = new A._DelayedDone(); B.C__Empty = new A._Empty(); B.C__EmptyStream = new A._EmptyStream(A.findType("_EmptyStream")); B.C__EndDockedFabLocation = new A._EndDockedFabLocation(); B.C__EndFloatFabLocation = new A._EndFloatFabLocation(); B.C__EndTopFabLocation = new A._EndTopFabLocation(); B.C__GlobalCupertinoLocalizationsDelegate = new A._GlobalCupertinoLocalizationsDelegate(); B.C__HashEnd = new A._HashEnd(); B.C__InkRippleFactory = new A._InkRippleFactory(); B.C__InkSplashFactory = new A._InkSplashFactory(); B.C__JSRandom = new A._JSRandom(); B.C__LastBlockMatcher = new A._LastBlockMatcher(); B.C__Linear = new A._Linear(); B.C__LinuxCodes = new A._LinuxCodes(); B.C__MaterialLocalizationsDelegate0 = new A._MaterialLocalizationsDelegate(); B.C__MaterialLocalizationsDelegate = new A._MaterialLocalizationsDelegate0(); B.C__NoDefaultValue = new A._NoDefaultValue(); B.C__NoopMouseCursor = new A._NoopMouseCursor(); B.C__NullTableColumnWidth = new A._NullTableColumnWidth(); B.C__NullTableColumnWidth0 = new A._NullTableColumnWidth0(); B.C__Posix = new A._Posix(); B.C__RealtimeClock = new A._RealtimeClock(); B.C__Required = new A._Required(); B.C__RootZone = new A._RootZone(); B.C__ScalingFabMotionAnimator = new A._ScalingFabMotionAnimator(); B.C__WidgetsLocalizationsDelegate0 = new A._WidgetsLocalizationsDelegate(); B.C__WidgetsLocalizationsDelegate = new A._WidgetsLocalizationsDelegate0(); B.C__YearPickerGridDelegate = new A._YearPickerGridDelegate(); B.CacheExtentStyle_0 = new A.CacheExtentStyle(0, "pixel"); B.CacheExtentStyle_1 = new A.CacheExtentStyle(1, "viewport"); B.CalendarField_0 = new A.CalendarField(0, "year"); B.CalendarField_1 = new A.CalendarField(1, "month"); B.CalendarField_2 = new A.CalendarField(2, "date"); B.CalendarField_3 = new A.CalendarField(3, "hourOfDay"); B.CameraDevice_0 = new A.CameraDevice(0, "rear"); B.CameraDevice_1 = new A.CameraDevice(1, "front"); B.CardTheme_wEo = new A.CardTheme(null, null, null, null, null, null, null); B.CascadingPadding_24_24_null_null = new A.CascadingPadding(24, 24, null, null); B.CascadingPadding_null_null_0_null = new A.CascadingPadding(null, null, 0, null); B.CascadingPadding_null_null_24_null = new A.CascadingPadding(null, null, 24, null); B.CascadingPadding_null_null_28_null = new A.CascadingPadding(null, null, 28, null); B.CascadingPadding_null_null_32_null = new A.CascadingPadding(null, null, 32, null); B.CascadingPadding_null_null_40_null = new A.CascadingPadding(null, null, 40, null); B.CascadingPadding_null_null_null_96 = new A.CascadingPadding(null, null, null, 96); B._ActivityIndicatorType_0 = new A._ActivityIndicatorType(0, "material"); B.CircularProgressIndicator_MQk = new A.CircularProgressIndicator(4, null, null, null, null, null, null, null); B.Center_mtF = new A.Center(B.Alignment_0_0, null, null, B.CircularProgressIndicator_MQk, null); B.CheckboxThemeData_EkK = new A.CheckboxThemeData(null, null, null, null, null, null, null, null, null); B.ChipThemeData_OhV = new A.ChipThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.CircleBorder_IVQ = new A.CircleBorder(B.BorderSide_0CF); B.ClampingScrollPhysics_KYr = new A.ClampingScrollPhysics(B.RangeMaintainingScrollPhysics_null); B.ClampingScrollPhysics_null = new A.ClampingScrollPhysics(null); B.ClientReportFields_0 = new A.ClientReportFields(0, "id"); B.ClientReportFields_1 = new A.ClientReportFields(1, "name"); B.ClientReportFields_10 = new A.ClientReportFields(10, "address1"); B.ClientReportFields_11 = new A.ClientReportFields(11, "address2"); B.ClientReportFields_12 = new A.ClientReportFields(12, "city"); B.ClientReportFields_13 = new A.ClientReportFields(13, "state"); B.ClientReportFields_14 = new A.ClientReportFields(14, "postal_code"); B.ClientReportFields_15 = new A.ClientReportFields(15, "phone"); B.ClientReportFields_16 = new A.ClientReportFields(16, "country"); B.ClientReportFields_17 = new A.ClientReportFields(17, "shipping_address1"); B.ClientReportFields_18 = new A.ClientReportFields(18, "shipping_address2"); B.ClientReportFields_19 = new A.ClientReportFields(19, "shipping_city"); B.ClientReportFields_2 = new A.ClientReportFields(2, "group"); B.ClientReportFields_20 = new A.ClientReportFields(20, "shipping_state"); B.ClientReportFields_21 = new A.ClientReportFields(21, "shipping_postal_code"); B.ClientReportFields_22 = new A.ClientReportFields(22, "shipping_country"); B.ClientReportFields_23 = new A.ClientReportFields(23, "client1"); B.ClientReportFields_24 = new A.ClientReportFields(24, "client2"); B.ClientReportFields_25 = new A.ClientReportFields(25, "client3"); B.ClientReportFields_26 = new A.ClientReportFields(26, "client4"); B.ClientReportFields_27 = new A.ClientReportFields(27, "created_by"); B.ClientReportFields_28 = new A.ClientReportFields(28, "assigned_to"); B.ClientReportFields_29 = new A.ClientReportFields(29, "balance"); B.ClientReportFields_3 = new A.ClientReportFields(3, "website"); B.ClientReportFields_30 = new A.ClientReportFields(30, "credit_balance"); B.ClientReportFields_31 = new A.ClientReportFields(31, "paid_to_date"); B.ClientReportFields_32 = new A.ClientReportFields(32, "total"); B.ClientReportFields_33 = new A.ClientReportFields(33, "converted_balance"); B.ClientReportFields_34 = new A.ClientReportFields(34, "converted_credit_balance"); B.ClientReportFields_35 = new A.ClientReportFields(35, "converted_paid_to_date"); B.ClientReportFields_36 = new A.ClientReportFields(36, "converted_total"); B.ClientReportFields_37 = new A.ClientReportFields(37, "number"); B.ClientReportFields_38 = new A.ClientReportFields(38, "id_number"); B.ClientReportFields_39 = new A.ClientReportFields(39, "vat_number"); B.ClientReportFields_4 = new A.ClientReportFields(4, "currency"); B.ClientReportFields_40 = new A.ClientReportFields(40, "contact_full_name"); B.ClientReportFields_41 = new A.ClientReportFields(41, "contact_first_name"); B.ClientReportFields_42 = new A.ClientReportFields(42, "contact_last_name"); B.ClientReportFields_43 = new A.ClientReportFields(43, "contact_email"); B.ClientReportFields_44 = new A.ClientReportFields(44, "contact_phone"); B.ClientReportFields_45 = new A.ClientReportFields(45, "contact1"); B.ClientReportFields_46 = new A.ClientReportFields(46, "contact2"); B.ClientReportFields_47 = new A.ClientReportFields(47, "contact3"); B.ClientReportFields_48 = new A.ClientReportFields(48, "contact4"); B.ClientReportFields_49 = new A.ClientReportFields(49, "contact_last_login"); B.ClientReportFields_5 = new A.ClientReportFields(5, "language"); B.ClientReportFields_50 = new A.ClientReportFields(50, "is_active"); B.ClientReportFields_51 = new A.ClientReportFields(51, "created_at"); B.ClientReportFields_52 = new A.ClientReportFields(52, "updated_at"); B.ClientReportFields_6 = new A.ClientReportFields(6, "private_notes"); B.ClientReportFields_7 = new A.ClientReportFields(7, "public_notes"); B.ClientReportFields_8 = new A.ClientReportFields(8, "industry"); B.ClientReportFields_9 = new A.ClientReportFields(9, "size"); B.ClipOp_0 = new A.ClipOp(0, "difference"); B.ClipOp_1 = new A.ClipOp(1, "intersect"); B.Clip_0 = new A.Clip(0, "none"); B.Clip_1 = new A.Clip(1, "hardEdge"); B.Clip_2 = new A.Clip(2, "antiAlias"); B.Clip_3 = new A.Clip(3, "antiAliasWithSaveLayer"); B.CodeunitRange_0_255 = new A.CodeunitRange(0, 255); B.CodeunitRange_1024_1119 = new A.CodeunitRange(1024, 1119); B.CodeunitRange_1120_1327 = new A.CodeunitRange(1120, 1327); B.CodeunitRange_11360_11391 = new A.CodeunitRange(11360, 11391); B.CodeunitRange_11520_11567 = new A.CodeunitRange(11520, 11567); B.CodeunitRange_11648_11742 = new A.CodeunitRange(11648, 11742); B.CodeunitRange_1168_1169 = new A.CodeunitRange(1168, 1169); B.CodeunitRange_11744_11775 = new A.CodeunitRange(11744, 11775); B.CodeunitRange_11841_11841 = new A.CodeunitRange(11841, 11841); B.CodeunitRange_1200_1201 = new A.CodeunitRange(1200, 1201); B.CodeunitRange_12288_12351 = new A.CodeunitRange(12288, 12351); B.CodeunitRange_12288_12543 = new A.CodeunitRange(12288, 12543); B.CodeunitRange_12288_12591 = new A.CodeunitRange(12288, 12591); B.CodeunitRange_12549_12585 = new A.CodeunitRange(12549, 12585); B.CodeunitRange_12593_12686 = new A.CodeunitRange(12593, 12686); B.CodeunitRange_12800_12828 = new A.CodeunitRange(12800, 12828); B.CodeunitRange_12800_13311 = new A.CodeunitRange(12800, 13311); B.CodeunitRange_12896_12923 = new A.CodeunitRange(12896, 12923); B.CodeunitRange_1328_1424 = new A.CodeunitRange(1328, 1424); B.CodeunitRange_1417_1417 = new A.CodeunitRange(1417, 1417); B.CodeunitRange_1424_1535 = new A.CodeunitRange(1424, 1535); B.CodeunitRange_1536_1791 = new A.CodeunitRange(1536, 1791); B.CodeunitRange_19968_40959 = new A.CodeunitRange(19968, 40959); B.CodeunitRange_2304_2431 = new A.CodeunitRange(2304, 2431); B.CodeunitRange_2385_2386 = new A.CodeunitRange(2385, 2386); B.CodeunitRange_2404_2405 = new A.CodeunitRange(2404, 2405); B.CodeunitRange_2433_2555 = new A.CodeunitRange(2433, 2555); B.CodeunitRange_2561_2677 = new A.CodeunitRange(2561, 2677); B.CodeunitRange_256_591 = new A.CodeunitRange(256, 591); B.CodeunitRange_258_259 = new A.CodeunitRange(258, 259); B.CodeunitRange_2688_2815 = new A.CodeunitRange(2688, 2815); B.CodeunitRange_272_273 = new A.CodeunitRange(272, 273); B.CodeunitRange_2946_3066 = new A.CodeunitRange(2946, 3066); B.CodeunitRange_296_297 = new A.CodeunitRange(296, 297); B.CodeunitRange_305_305 = new A.CodeunitRange(305, 305); B.CodeunitRange_3072_3199 = new A.CodeunitRange(3072, 3199); B.CodeunitRange_3202_3314 = new A.CodeunitRange(3202, 3314); B.CodeunitRange_3330_3455 = new A.CodeunitRange(3330, 3455); B.CodeunitRange_338_339 = new A.CodeunitRange(338, 339); B.CodeunitRange_3458_3572 = new A.CodeunitRange(3458, 3572); B.CodeunitRange_3585_3675 = new A.CodeunitRange(3585, 3675); B.CodeunitRange_360_361 = new A.CodeunitRange(360, 361); B.CodeunitRange_3713_3807 = new A.CodeunitRange(3713, 3807); B.CodeunitRange_4096_4255 = new A.CodeunitRange(4096, 4255); B.CodeunitRange_416_417 = new A.CodeunitRange(416, 417); B.CodeunitRange_42560_42655 = new A.CodeunitRange(42560, 42655); B.CodeunitRange_4256_4351 = new A.CodeunitRange(4256, 4351); B.CodeunitRange_42784_43007 = new A.CodeunitRange(42784, 43007); B.CodeunitRange_43056_43065 = new A.CodeunitRange(43056, 43065); B.CodeunitRange_431_432 = new A.CodeunitRange(431, 432); B.CodeunitRange_43232_43259 = new A.CodeunitRange(43232, 43259); B.CodeunitRange_43777_43822 = new A.CodeunitRange(43777, 43822); B.CodeunitRange_44032_55215 = new A.CodeunitRange(44032, 55215); B.CodeunitRange_4608_5017 = new A.CodeunitRange(4608, 5017); B.CodeunitRange_6016_6143 = new A.CodeunitRange(6016, 6143); B.CodeunitRange_601_601 = new A.CodeunitRange(601, 601); B.CodeunitRange_64275_64279 = new A.CodeunitRange(64275, 64279); B.CodeunitRange_64285_64335 = new A.CodeunitRange(64285, 64335); B.CodeunitRange_64336_65023 = new A.CodeunitRange(64336, 65023); B.CodeunitRange_65070_65071 = new A.CodeunitRange(65070, 65071); B.CodeunitRange_65072_65135 = new A.CodeunitRange(65072, 65135); B.CodeunitRange_65132_65276 = new A.CodeunitRange(65132, 65276); B.CodeunitRange_65279_65279 = new A.CodeunitRange(65279, 65279); B.CodeunitRange_65280_65519 = new A.CodeunitRange(65280, 65519); B.CodeunitRange_65533_65533 = new A.CodeunitRange(65533, 65533); B.CodeunitRange_699_700 = new A.CodeunitRange(699, 700); B.CodeunitRange_710_710 = new A.CodeunitRange(710, 710); B.CodeunitRange_7296_7304 = new A.CodeunitRange(7296, 7304); B.CodeunitRange_730_730 = new A.CodeunitRange(730, 730); B.CodeunitRange_732_732 = new A.CodeunitRange(732, 732); B.CodeunitRange_7376_7414 = new A.CodeunitRange(7376, 7414); B.CodeunitRange_7386_7386 = new A.CodeunitRange(7386, 7386); B.CodeunitRange_7416_7417 = new A.CodeunitRange(7416, 7417); B.CodeunitRange_7680_7935 = new A.CodeunitRange(7680, 7935); B.CodeunitRange_775_775 = new A.CodeunitRange(775, 775); B.CodeunitRange_77824_78894 = new A.CodeunitRange(77824, 78894); B.CodeunitRange_7840_7929 = new A.CodeunitRange(7840, 7929); B.CodeunitRange_7936_8191 = new A.CodeunitRange(7936, 8191); B.CodeunitRange_803_803 = new A.CodeunitRange(803, 803); B.CodeunitRange_8192_8303 = new A.CodeunitRange(8192, 8303); B.CodeunitRange_8204_8204 = new A.CodeunitRange(8204, 8204); B.CodeunitRange_8204_8205 = new A.CodeunitRange(8204, 8205); B.CodeunitRange_8204_8206 = new A.CodeunitRange(8204, 8206); B.CodeunitRange_8208_8209 = new A.CodeunitRange(8208, 8209); B.CodeunitRange_8224_8224 = new A.CodeunitRange(8224, 8224); B.CodeunitRange_8271_8271 = new A.CodeunitRange(8271, 8271); B.CodeunitRange_8308_8308 = new A.CodeunitRange(8308, 8308); B.CodeunitRange_8352_8363 = new A.CodeunitRange(8352, 8363); B.CodeunitRange_8360_8360 = new A.CodeunitRange(8360, 8360); B.CodeunitRange_8362_8362 = new A.CodeunitRange(8362, 8362); B.CodeunitRange_8363_8363 = new A.CodeunitRange(8363, 8363); B.CodeunitRange_8364_8364 = new A.CodeunitRange(8364, 8364); B.CodeunitRange_8365_8399 = new A.CodeunitRange(8365, 8399); B.CodeunitRange_8372_8372 = new A.CodeunitRange(8372, 8372); B.CodeunitRange_8377_8377 = new A.CodeunitRange(8377, 8377); B.CodeunitRange_8467_8467 = new A.CodeunitRange(8467, 8467); B.CodeunitRange_8470_8470 = new A.CodeunitRange(8470, 8470); B.CodeunitRange_8482_8482 = new A.CodeunitRange(8482, 8482); B.CodeunitRange_8593_8593 = new A.CodeunitRange(8593, 8593); B.CodeunitRange_8595_8595 = new A.CodeunitRange(8595, 8595); B.CodeunitRange_8722_8722 = new A.CodeunitRange(8722, 8722); B.CodeunitRange_8725_8725 = new A.CodeunitRange(8725, 8725); B.CodeunitRange_880_1023 = new A.CodeunitRange(880, 1023); B.CodeunitRange_9676_9676 = new A.CodeunitRange(9676, 9676); B.CodeunitRange_9772_9772 = new A.CodeunitRange(9772, 9772); B.Color_0 = new A.Color(0); B.Color_1087163596 = new A.Color(1087163596); B.Color_1308622847 = new A.Color(1308622847); B.Color_134217728 = new A.Color(134217728); B.Color_1375731712 = new A.Color(1375731712); B.Color_1627389952 = new A.Color(1627389952); B.Color_1660944383 = new A.Color(1660944383); B.Color_16777215 = new A.Color(16777215); B.Color_167772160 = new A.Color(167772160); B.Color_1723645116 = new A.Color(1723645116); B.Color_1724434632 = new A.Color(1724434632); B.Color_1929379840 = new A.Color(1929379840); B.Color_2315255808 = new A.Color(2315255808); B.Color_234881023 = new A.Color(234881023); B.Color_2566914048 = new A.Color(2566914048); B.Color_2583691263 = new A.Color(2583691263); B.Color_3019898879 = new A.Color(3019898879); B.Color_3707764736 = new A.Color(3707764736); B.Color_4039164096 = new A.Color(4039164096); B.Color_4278221567 = new A.Color(4278221567); B.Color_4278226106 = new A.Color(4278226106); B.Color_4278230236 = new A.Color(4278230236); B.Color_4278238348 = new A.Color(4278238348); B.Color_4278239141 = new A.Color(4278239141); B.Color_4278360783 = new A.Color(4278360783); B.Color_4278368373 = new A.Color(4278368373); B.Color_4278402163 = new A.Color(4278402163); B.Color_4278442694 = new A.Color(4278442694); B.Color_4278994339 = new A.Color(4278994339); B.Color_4279066001 = new A.Color(4279066001); B.Color_4279374354 = new A.Color(4279374354); B.Color_4279482709 = new A.Color(4279482709); B.Color_4279602362 = new A.Color(4279602362); B.Color_4279739064 = new A.Color(4279739064); B.Color_4279811228 = new A.Color(4279811228); B.Color_4279858898 = new A.Color(4279858898); B.Color_4279900698 = new A.Color(4279900698); B.Color_4279966750 = new A.Color(4279966750); B.Color_4280150454 = new A.Color(4280150454); B.Color_4280191205 = new A.Color(4280191205); B.Color_4280261583 = new A.Color(4280261583); B.Color_4280361249 = new A.Color(4280361249); B.Color_4280391411 = new A.Color(4280391411); B.Color_4280427042 = new A.Color(4280427042); B.Color_4280463948 = new A.Color(4280463948); B.Color_4280716242 = new A.Color(4280716242); B.Color_4280778979 = new A.Color(4280778979); B.Color_4280854341 = new A.Color(4280854341); B.Color_4280858156 = new A.Color(4280858156); B.Color_4280912555 = new A.Color(4280912555); B.Color_4280921056 = new A.Color(4280921056); B.Color_4280983510 = new A.Color(4280983510); B.Color_4280983960 = new A.Color(4280983960); B.Color_4281089616 = new A.Color(4281089616); B.Color_4281312487 = new A.Color(4281312487); B.Color_4281348144 = new A.Color(4281348144); B.Color_4281486753 = new A.Color(4281486753); B.Color_4281490824 = new A.Color(4281490824); B.Color_4281545523 = new A.Color(4281545523); B.Color_4281558681 = new A.Color(4281558681); B.Color_4281571827 = new A.Color(4281571827); B.Color_4281637083 = new A.Color(4281637083); B.Color_4281794739 = new A.Color(4281794739); B.Color_4281817727 = new A.Color(4281817727); B.Color_4281906250 = new A.Color(4281906250); B.Color_4282007364 = new A.Color(4282007364); B.Color_4282168609 = new A.Color(4282168609); B.Color_4282365464 = new A.Color(4282365464); B.Color_4282414389 = new A.Color(4282414389); B.Color_4282532418 = new A.Color(4282532418); B.Color_4282549748 = new A.Color(4282549748); B.Color_4282625130 = new A.Color(4282625130); B.Color_4282674843 = new A.Color(4282674843); B.Color_4282735204 = new A.Color(4282735204); B.Color_4282745580 = new A.Color(4282745580); B.Color_4282815496 = new A.Color(4282815496); B.Color_4283045004 = new A.Color(4283045004); B.Color_4283154291 = new A.Color(4283154291); B.Color_4283210268 = new A.Color(4283210268); B.Color_4283215696 = new A.Color(4283215696); B.Color_4283878557 = new A.Color(4283878557); B.Color_4283934436 = new A.Color(4283934436); B.Color_4284035478 = new A.Color(4284035478); B.Color_4284203230 = new A.Color(4284203230); B.Color_4284266588 = new A.Color(4284266588); B.Color_4284328948 = new A.Color(4284328948); B.Color_4284572001 = new A.Color(4284572001); B.Color_4284662882 = new A.Color(4284662882); B.Color_4284790262 = new A.Color(4284790262); B.Color_4284809178 = new A.Color(4284809178); B.Color_4285318101 = new A.Color(4285318101); B.Color_4285769785 = new A.Color(4285769785); B.Color_4285909739 = new A.Color(4285909739); B.Color_4286034688 = new A.Color(4286034688); B.Color_4286104237 = new A.Color(4286104237); B.Color_4287137928 = new A.Color(4287137928); B.Color_4287315264 = new A.Color(4287315264); B.Color_4287679225 = new A.Color(4287679225); B.Color_4287874379 = new A.Color(4287874379); B.Color_4288230348 = new A.Color(4288230348); B.Color_4288238779 = new A.Color(4288238779); B.Color_4288366495 = new A.Color(4288366495); B.Color_4288423856 = new A.Color(4288423856); B.Color_4288585374 = new A.Color(4288585374); B.Color_4289228800 = new A.Color(4289228800); B.Color_4290087168 = new A.Color(4290087168); B.Color_4290328320 = new A.Color(4290328320); B.Color_4290479868 = new A.Color(4290479868); B.Color_4290502395 = new A.Color(4290502395); B.Color_4291238946 = new A.Color(4291238946); B.Color_4291513110 = new A.Color(4291513110); B.Color_4291559424 = new A.Color(4291559424); B.Color_4291611852 = new A.Color(4291611852); B.Color_4291625472 = new A.Color(4291625472); B.Color_4291660032 = new A.Color(4291660032); B.Color_4291782265 = new A.Color(4291782265); B.Color_4292030255 = new A.Color(4292030255); B.Color_4292032130 = new A.Color(4292032130); B.Color_4292113664 = new A.Color(4292113664); B.Color_4292420367 = new A.Color(4292420367); B.Color_4292432719 = new A.Color(4292432719); B.Color_4292444959 = new A.Color(4292444959); B.Color_4292621637 = new A.Color(4292621637); B.Color_4292695552 = new A.Color(4292695552); B.Color_4292730333 = new A.Color(4292730333); B.Color_4292818988 = new A.Color(4292818988); B.Color_4292831514 = new A.Color(4292831514); B.Color_4292927712 = new A.Color(4292927712); B.Color_4293128957 = new A.Color(4293128957); B.Color_4293191915 = new A.Color(4293191915); B.Color_4293205027 = new A.Color(4293205027); B.Color_4293348412 = new A.Color(4293348412); B.Color_4293481504 = new A.Color(4293481504); B.Color_4293496834 = new A.Color(4293496834); B.Color_4293617764 = new A.Color(4293617764); B.Color_4293812059 = new A.Color(4293812059); B.Color_4293848814 = new A.Color(4293848814); B.Color_4293880832 = new A.Color(4293880832); B.Color_4293894941 = new A.Color(4293894941); B.Color_4293900094 = new A.Color(4293900094); B.Color_4293935396 = new A.Color(4293935396); B.Color_4293963086 = new A.Color(4293963086); B.Color_4294155282 = new A.Color(4294155282); B.Color_4294178038 = new A.Color(4294178038); B.Color_4294212668 = new A.Color(4294212668); B.Color_4294277632 = new A.Color(4294277632); B.Color_4294305317 = new A.Color(4294305317); B.Color_4294309365 = new A.Color(4294309365); B.Color_4294480902 = new A.Color(4294480902); B.Color_4294638330 = new A.Color(4294638330); B.Color_4294719801 = new A.Color(4294719801); B.Color_4294901760 = new A.Color(4294901760); B.Color_4294901817 = new A.Color(4294901817); B.Color_4294918454 = new A.Color(4294918454); B.Color_4294931736 = new A.Color(4294931736); B.Color_4294932561 = new A.Color(4294932561); B.Color_4294935835 = new A.Color(4294935835); B.Color_4294936576 = new A.Color(4294936576); B.Color_4294940672 = new A.Color(4294940672); B.Color_4294951175 = new A.Color(4294951175); B.Color_4294954599 = new A.Color(4294954599); B.Color_436207616 = new A.Color(436207616); B.Color_452984831 = new A.Color(452984831); B.Color_503316480 = new A.Color(503316480); B.Color_520093696 = new A.Color(520093696); B.Color_536870911 = new A.Color(536870911); B.Color_83886080 = new A.Color(83886080); B.Color_ww81 = new A.Color0(194, 24, 91, 255, null, null); B.Color_ww82 = new A.Color0(244, 143, 177, 255, null, null); B.Color_Feh = new A.Color0(233, 30, 99, 255, B.Color_ww81, B.Color_ww82); B.Color_ww83 = new A.Color0(25, 118, 210, 255, null, null); B.Color_OBc = new A.Color0(144, 202, 249, 255, null, null); B.Color_U0W = new A.Color0(33, 150, 243, 255, B.Color_ww83, B.Color_OBc); B.Color_WL1 = new A.Color0(0, 0, 0, 0, null, null); B.Color_ww84 = new A.Color0(175, 180, 43, 255, null, null); B.Color_ww85 = new A.Color0(230, 238, 156, 255, null, null); B.Color_ePM2 = new A.Color0(205, 220, 57, 255, B.Color_ww84, B.Color_ww85); B.Color_ww86 = new A.Color0(56, 142, 60, 255, null, null); B.Color_ww87 = new A.Color0(165, 214, 167, 255, null, null); B.Color_ePM5 = new A.Color0(76, 175, 80, 255, B.Color_ww86, B.Color_ww87); B.Color_ww80 = new A.Color0(97, 97, 97, 255, null, null); B.Color_ww88 = new A.Color0(238, 238, 238, 255, null, null); B.Color_ePM = new A.Color0(158, 158, 158, 255, B.Color_ww80, B.Color_ww88); B.Color_ww89 = new A.Color0(0, 121, 107, 255, null, null); B.Color_ww810 = new A.Color0(128, 203, 196, 255, null, null); B.Color_ePM0 = new A.Color0(0, 150, 136, 255, B.Color_ww89, B.Color_ww810); B.Color_ww811 = new A.Color0(48, 63, 159, 255, null, null); B.Color_ww812 = new A.Color0(159, 168, 218, 255, null, null); B.Color_ePM1 = new A.Color0(63, 81, 181, 255, B.Color_ww811, B.Color_ww812); B.Color_ww813 = new A.Color0(123, 31, 162, 255, null, null); B.Color_ww814 = new A.Color0(206, 147, 216, 255, null, null); B.Color_ePM4 = new A.Color0(156, 39, 176, 255, B.Color_ww813, B.Color_ww814); B.Color_ww815 = new A.Color0(0, 151, 167, 255, null, null); B.Color_ww816 = new A.Color0(128, 222, 234, 255, null, null); B.Color_ePM3 = new A.Color0(0, 188, 212, 255, B.Color_ww815, B.Color_ww816); B.Color_bUY = new A.Color0(251, 192, 45, 255, null, null); B.Color_uUv = new A.Color0(255, 245, 157, 255, null, null); B.Color_g3G = new A.Color0(255, 235, 59, 255, B.Color_bUY, B.Color_uUv); B.Color_ww817 = new A.Color0(211, 47, 47, 255, null, null); B.Color_bUY0 = new A.Color0(239, 154, 154, 255, null, null); B.Color_kvD = new A.Color0(244, 67, 54, 255, B.Color_ww817, B.Color_bUY0); B.Color_toQ = new A.Color0(255, 255, 255, 255, null, null); B.Color_ww8 = new A.Color0(0, 0, 0, 255, null, null); B.Color_ww818 = new A.Color0(230, 74, 25, 255, null, null); B.Color_bUY1 = new A.Color0(255, 171, 145, 255, null, null); B.Color_wz6 = new A.Color0(255, 87, 34, 255, B.Color_ww818, B.Color_bUY1); B.ConnectionState_0 = new A.ConnectionState(0, "none"); B.ConnectionState_1 = new A.ConnectionState(1, "waiting"); B.ConnectionState_2 = new A.ConnectionState(2, "active"); B.ConnectionState_3 = new A.ConnectionState(3, "done"); B.ContactReportFields_0 = new A.ContactReportFields(0, "id"); B.ContactReportFields_1 = new A.ContactReportFields(1, "name"); B.ContactReportFields_10 = new A.ContactReportFields(10, "address2"); B.ContactReportFields_11 = new A.ContactReportFields(11, "city"); B.ContactReportFields_12 = new A.ContactReportFields(12, "state"); B.ContactReportFields_13 = new A.ContactReportFields(13, "postal_code"); B.ContactReportFields_14 = new A.ContactReportFields(14, "phone"); B.ContactReportFields_15 = new A.ContactReportFields(15, "country"); B.ContactReportFields_16 = new A.ContactReportFields(16, "shipping_address1"); B.ContactReportFields_17 = new A.ContactReportFields(17, "shipping_address2"); B.ContactReportFields_18 = new A.ContactReportFields(18, "shipping_city"); B.ContactReportFields_19 = new A.ContactReportFields(19, "shipping_state"); B.ContactReportFields_2 = new A.ContactReportFields(2, "website"); B.ContactReportFields_20 = new A.ContactReportFields(20, "shipping_postal_code"); B.ContactReportFields_21 = new A.ContactReportFields(21, "shipping_country"); B.ContactReportFields_22 = new A.ContactReportFields(22, "client1"); B.ContactReportFields_23 = new A.ContactReportFields(23, "client2"); B.ContactReportFields_24 = new A.ContactReportFields(24, "client3"); B.ContactReportFields_25 = new A.ContactReportFields(25, "client4"); B.ContactReportFields_26 = new A.ContactReportFields(26, "created_by"); B.ContactReportFields_27 = new A.ContactReportFields(27, "assigned_to"); B.ContactReportFields_28 = new A.ContactReportFields(28, "balance"); B.ContactReportFields_29 = new A.ContactReportFields(29, "credit_balance"); B.ContactReportFields_3 = new A.ContactReportFields(3, "currency"); B.ContactReportFields_30 = new A.ContactReportFields(30, "paid_to_date"); B.ContactReportFields_31 = new A.ContactReportFields(31, "total"); B.ContactReportFields_32 = new A.ContactReportFields(32, "converted_balance"); B.ContactReportFields_33 = new A.ContactReportFields(33, "converted_credit_balance"); B.ContactReportFields_34 = new A.ContactReportFields(34, "converted_paid_to_date"); B.ContactReportFields_35 = new A.ContactReportFields(35, "converted_total"); B.ContactReportFields_36 = new A.ContactReportFields(36, "number"); B.ContactReportFields_37 = new A.ContactReportFields(37, "id_number"); B.ContactReportFields_38 = new A.ContactReportFields(38, "vat_number"); B.ContactReportFields_39 = new A.ContactReportFields(39, "contact_full_name"); B.ContactReportFields_4 = new A.ContactReportFields(4, "language"); B.ContactReportFields_40 = new A.ContactReportFields(40, "contact_first_name"); B.ContactReportFields_41 = new A.ContactReportFields(41, "contact_last_name"); B.ContactReportFields_42 = new A.ContactReportFields(42, "contact_email"); B.ContactReportFields_43 = new A.ContactReportFields(43, "contact_phone"); B.ContactReportFields_44 = new A.ContactReportFields(44, "contact1"); B.ContactReportFields_45 = new A.ContactReportFields(45, "contact2"); B.ContactReportFields_46 = new A.ContactReportFields(46, "contact3"); B.ContactReportFields_47 = new A.ContactReportFields(47, "contact4"); B.ContactReportFields_48 = new A.ContactReportFields(48, "contact_last_login"); B.ContactReportFields_49 = new A.ContactReportFields(49, "is_active"); B.ContactReportFields_5 = new A.ContactReportFields(5, "private_notes"); B.ContactReportFields_50 = new A.ContactReportFields(50, "created_at"); B.ContactReportFields_51 = new A.ContactReportFields(51, "updated_at"); B.ContactReportFields_6 = new A.ContactReportFields(6, "public_notes"); B.ContactReportFields_7 = new A.ContactReportFields(7, "industry"); B.ContactReportFields_8 = new A.ContactReportFields(8, "size"); B.ContactReportFields_9 = new A.ContactReportFields(9, "address1"); B.CreditReportFields_0 = new A.CreditReportFields(0, "id"); B.CreditReportFields_1 = new A.CreditReportFields(1, "amount"); B.CreditReportFields_10 = new A.CreditReportFields(10, "client_country"); B.CreditReportFields_11 = new A.CreditReportFields(11, "client_shipping_address1"); B.CreditReportFields_12 = new A.CreditReportFields(12, "client_shipping_address2"); B.CreditReportFields_13 = new A.CreditReportFields(13, "client_state"); B.CreditReportFields_14 = new A.CreditReportFields(14, "client_shipping_city"); B.CreditReportFields_15 = new A.CreditReportFields(15, "client_shipping_state"); B.CreditReportFields_16 = new A.CreditReportFields(16, "client_shipping_postal_code"); B.CreditReportFields_17 = new A.CreditReportFields(17, "client_shipping_country"); B.CreditReportFields_18 = new A.CreditReportFields(18, "status"); B.CreditReportFields_19 = new A.CreditReportFields(19, "number"); B.CreditReportFields_2 = new A.CreditReportFields(2, "balance"); B.CreditReportFields_20 = new A.CreditReportFields(20, "discount"); B.CreditReportFields_21 = new A.CreditReportFields(21, "po_number"); B.CreditReportFields_22 = new A.CreditReportFields(22, "date"); B.CreditReportFields_23 = new A.CreditReportFields(23, "valid_until"); B.CreditReportFields_24 = new A.CreditReportFields(24, "partial"); B.CreditReportFields_25 = new A.CreditReportFields(25, "partial_due_date"); B.CreditReportFields_26 = new A.CreditReportFields(26, "auto_bill"); B.CreditReportFields_27 = new A.CreditReportFields(27, "invoice1"); B.CreditReportFields_28 = new A.CreditReportFields(28, "invoice2"); B.CreditReportFields_29 = new A.CreditReportFields(29, "invoice3"); B.CreditReportFields_3 = new A.CreditReportFields(3, "converted_amount"); B.CreditReportFields_30 = new A.CreditReportFields(30, "invoice4"); B.CreditReportFields_31 = new A.CreditReportFields(31, "surcharge1"); B.CreditReportFields_32 = new A.CreditReportFields(32, "surcharge2"); B.CreditReportFields_33 = new A.CreditReportFields(33, "surcharge3"); B.CreditReportFields_34 = new A.CreditReportFields(34, "surcharge4"); B.CreditReportFields_35 = new A.CreditReportFields(35, "updated_at"); B.CreditReportFields_36 = new A.CreditReportFields(36, "archived_at"); B.CreditReportFields_37 = new A.CreditReportFields(37, "is_deleted"); B.CreditReportFields_38 = new A.CreditReportFields(38, "tax_amount"); B.CreditReportFields_39 = new A.CreditReportFields(39, "net_amount"); B.CreditReportFields_4 = new A.CreditReportFields(4, "converted_balance"); B.CreditReportFields_40 = new A.CreditReportFields(40, "net_remaining"); B.CreditReportFields_41 = new A.CreditReportFields(41, "exchange_rate"); B.CreditReportFields_42 = new A.CreditReportFields(42, "public_notes"); B.CreditReportFields_43 = new A.CreditReportFields(43, "private_notes"); B.CreditReportFields_44 = new A.CreditReportFields(44, "client_vat_number"); B.CreditReportFields_45 = new A.CreditReportFields(45, "client_city"); B.CreditReportFields_46 = new A.CreditReportFields(46, "client_postal_code"); B.CreditReportFields_47 = new A.CreditReportFields(47, "client_website"); B.CreditReportFields_48 = new A.CreditReportFields(48, "tax_rate1"); B.CreditReportFields_49 = new A.CreditReportFields(49, "tax_rate2"); B.CreditReportFields_5 = new A.CreditReportFields(5, "client"); B.CreditReportFields_50 = new A.CreditReportFields(50, "tax_rate3"); B.CreditReportFields_51 = new A.CreditReportFields(51, "tax_name1"); B.CreditReportFields_52 = new A.CreditReportFields(52, "tax_name2"); B.CreditReportFields_53 = new A.CreditReportFields(53, "tax_name3"); B.CreditReportFields_54 = new A.CreditReportFields(54, "currency"); B.CreditReportFields_55 = new A.CreditReportFields(55, "is_viewed"); B.CreditReportFields_56 = new A.CreditReportFields(56, "assigned_to"); B.CreditReportFields_57 = new A.CreditReportFields(57, "created_by"); B.CreditReportFields_58 = new A.CreditReportFields(58, "client_phone"); B.CreditReportFields_59 = new A.CreditReportFields(59, "contact_email"); B.CreditReportFields_6 = new A.CreditReportFields(6, "client_number"); B.CreditReportFields_60 = new A.CreditReportFields(60, "contact_phone"); B.CreditReportFields_61 = new A.CreditReportFields(61, "contact_name"); B.CreditReportFields_7 = new A.CreditReportFields(7, "client_balance"); B.CreditReportFields_8 = new A.CreditReportFields(8, "client_address1"); B.CreditReportFields_9 = new A.CreditReportFields(9, "client_address2"); B.CropAspectRatioPreset_0 = new A.CropAspectRatioPreset(0, "original"); B.CropAspectRatioPreset_1 = new A.CropAspectRatioPreset(1, "square"); B.CropAspectRatioPreset_2 = new A.CropAspectRatioPreset(2, "ratio3x2"); B.CropAspectRatioPreset_3 = new A.CropAspectRatioPreset(3, "ratio5x3"); B.CropAspectRatioPreset_4 = new A.CropAspectRatioPreset(4, "ratio4x3"); B.CropAspectRatioPreset_5 = new A.CropAspectRatioPreset(5, "ratio5x4"); B.CropAspectRatioPreset_6 = new A.CropAspectRatioPreset(6, "ratio7x5"); B.CropAspectRatioPreset_7 = new A.CropAspectRatioPreset(7, "ratio16x9"); B.CropStyle_0 = new A.CropStyle(0, "rectangle"); B.CrossAxisAlignment_0 = new A.CrossAxisAlignment(0, "start"); B.CrossAxisAlignment_1 = new A.CrossAxisAlignment(1, "end"); B.CrossAxisAlignment_2 = new A.CrossAxisAlignment(2, "center"); B.CrossAxisAlignment_3 = new A.CrossAxisAlignment(3, "stretch"); B.CrossAxisAlignment_4 = new A.CrossAxisAlignment(4, "baseline"); B.CrossFadeState_0 = new A.CrossFadeState(0, "showFirst"); B.CrossFadeState_1 = new A.CrossFadeState(1, "showSecond"); B.Cubic_2Vk = new A.Cubic(0.18, 1, 0.04, 1); B.Cubic_2jN = new A.Cubic(0.215, 0.61, 0.355, 1); B.Cubic_HzT = new A.Cubic(0.05, 0, 0.133333, 0.06); B.Cubic_JUR = new A.Cubic(0.25, 0.1, 0.25, 1); B.Cubic_JUR0 = new A.Cubic(0.42, 0, 1, 1); B.Cubic_OcD = new A.Cubic(0.67, 0.03, 0.65, 0.09); B.Cubic_QB2 = new A.Cubic(0.785, 0.135, 0.15, 0.86); B.Cubic_YAz = new A.Cubic(0.075, 0.82, 0.165, 1); B.Cubic_bP1 = new A.Cubic(0.208333, 0.82, 0.25, 1); B.Cubic_ifx = new A.Cubic(0.4, 0, 0.2, 1); B.Cubic_izR = new A.Cubic(0.35, 0.91, 0.33, 0.97); B.Cubic_oKc = new A.Cubic(0.645, 0.045, 0.355, 1); B.Cubic_xDo0 = new A.Cubic(0, 0, 0.58, 1); B.Cubic_xDo = new A.Cubic(0.42, 0, 0.58, 1); B.Color_678983808 = new A.Color(678983808); B.Color_1366849664 = new A.Color(1366849664); B.Color_1031305344 = new A.Color(1031305344); B.Color_1719171200 = new A.Color(1719171200); B.CupertinoDynamicColor_MdH = new A.CupertinoDynamicColor(B.Color_678983808, "secondarySystemFill", null, B.Color_678983808, B.Color_1366849664, B.Color_1031305344, B.Color_1719171200, B.Color_678983808, B.Color_1366849664, B.Color_1031305344, B.Color_1719171200, 0); B.Color_4288256409 = new A.Color(4288256409); B.Color_4285887861 = new A.Color(4285887861); B.CupertinoDynamicColor_YIZ = new A.CupertinoDynamicColor(B.Color_4288256409, "inactiveGray", null, B.Color_4288256409, B.Color_4285887861, B.Color_4288256409, B.Color_4285887861, B.Color_4288256409, B.Color_4285887861, B.Color_4288256409, B.Color_4285887861, 0); B.Color_4281648985 = new A.Color(4281648985); B.Color_4281389400 = new A.Color(4281389400); B.Color_4280584765 = new A.Color(4280584765); B.Color_4281391963 = new A.Color(4281391963); B.CupertinoDynamicColor_gg4 = new A.CupertinoDynamicColor(B.Color_4281648985, "systemGreen", null, B.Color_4281648985, B.Color_4281389400, B.Color_4280584765, B.Color_4281391963, B.Color_4281648985, B.Color_4281389400, B.Color_4280584765, B.Color_4281391963, 0); B.Color_1279016003 = new A.Color(1279016003); B.Color_1290529781 = new A.Color(1290529781); B.Color_1614560323 = new A.Color(1614560323); B.Color_1626074101 = new A.Color(1626074101); B.CupertinoDynamicColor_oxt = new A.CupertinoDynamicColor(B.Color_1279016003, "placeholderText", null, B.Color_1279016003, B.Color_1290529781, B.Color_1614560323, B.Color_1626074101, B.Color_1279016003, B.Color_1290529781, B.Color_1614560323, B.Color_1626074101, 0); B.CupertinoDynamicColor_qQo = new A.CupertinoDynamicColor(B.Color_4278190080, "label", null, B.Color_4278190080, B.Color_4294967295, B.Color_4278190080, B.Color_4294967295, B.Color_4278190080, B.Color_4294967295, B.Color_4278190080, B.Color_4294967295, 0); B.Color_343176320 = new A.Color(343176320); B.Color_762738304 = new A.Color(762738304); B.Color_678720640 = new A.Color(678720640); B.Color_1115059840 = new A.Color(1115059840); B.CupertinoDynamicColor_xDe = new A.CupertinoDynamicColor(B.Color_343176320, "quaternarySystemFill", null, B.Color_343176320, B.Color_762738304, B.Color_678720640, B.Color_1115059840, B.Color_343176320, B.Color_762738304, B.Color_678720640, B.Color_1115059840, 0); B.Color_1493172224 = new A.Color(1493172224); B.Color_2164260863 = new A.Color(2164260863); B.CupertinoDynamicColor_zPV = new A.CupertinoDynamicColor(B.Color_1493172224, null, null, B.Color_1493172224, B.Color_2164260863, B.Color_1493172224, B.Color_2164260863, B.Color_1493172224, B.Color_2164260863, B.Color_1493172224, B.Color_2164260863, 0); B.Color_4278879487 = new A.Color(4278879487); B.Color_4278206685 = new A.Color(4278206685); B.Color_4282424575 = new A.Color(4282424575); B.CupertinoDynamicColor_948 = new A.CupertinoDynamicColor(B.Color_4278221567, "systemBlue", null, B.Color_4278221567, B.Color_4278879487, B.Color_4278206685, B.Color_4282424575, B.Color_4278221567, B.Color_4278879487, B.Color_4278206685, B.Color_4282424575, 0); B.Color_4280032286 = new A.Color(4280032286); B.Color_4280558630 = new A.Color(4280558630); B.CupertinoDynamicColor_k0n = new A.CupertinoDynamicColor(B.Color_4294967295, "systemBackground", null, B.Color_4294967295, B.Color_4278190080, B.Color_4294967295, B.Color_4278190080, B.Color_4294967295, B.Color_4280032286, B.Color_4294967295, B.Color_4280558630, 0); B.Color_4042914297 = new A.Color(4042914297); B.Color_4028439837 = new A.Color(4028439837); B.CupertinoDynamicColor_wEo = new A.CupertinoDynamicColor(B.Color_4042914297, null, null, B.Color_4042914297, B.Color_4028439837, B.Color_4042914297, B.Color_4028439837, B.Color_4042914297, B.Color_4028439837, B.Color_4042914297, B.Color_4028439837, 0); B._CupertinoTextThemeDefaults_954 = new A._CupertinoTextThemeDefaults(B.CupertinoDynamicColor_qQo, B.CupertinoDynamicColor_YIZ); B._CupertinoThemeDefaults_iF8 = new A._CupertinoThemeDefaults(null, B.CupertinoDynamicColor_948, B.CupertinoDynamicColor_k0n, B.CupertinoDynamicColor_wEo, B.CupertinoDynamicColor_k0n, B._CupertinoTextThemeDefaults_954); B.CupertinoThemeData_KQb = new A.CupertinoThemeData(B._CupertinoThemeDefaults_iF8, null, null, null, null, null, null); B.SizedBox_0_0_null_null = new A.SizedBox(0, 0, null, null); B.DataCell_AHF = new A.DataCell(B.SizedBox_0_0_null_null, null); B.DataCell_R8h = new A.DataCell0(B.CircularProgressIndicator_MQk, null, null); B.DataCell_mS8 = new A.DataCell0(B.SizedBox_0_0_null_null, null, null); B.DataCell_su2 = new A.DataCell(B.CircularProgressIndicator_MQk, null); B.DataTableThemeData_SL9 = new A.DataTableThemeData(null, null, null, null, null, null, null, null, null, null, null); B.DatePickerEntryMode_0 = new A.DatePickerEntryMode(0, "calendar"); B.DatePickerEntryMode_1 = new A.DatePickerEntryMode(1, "input"); B.DatePickerEntryMode_2 = new A.DatePickerEntryMode(2, "calendarOnly"); B.DatePickerEntryMode_3 = new A.DatePickerEntryMode(3, "inputOnly"); B.DatePickerMode_0 = new A.DatePickerMode(0, "day"); B.DatePickerMode_1 = new A.DatePickerMode(1, "year"); B.DateRangeComparison_customRange = new A.DateRangeComparison("customRange"); B.DateRangeComparison_previousPeriod = new A.DateRangeComparison("previousPeriod"); B.DateRangeComparison_previousYear = new A.DateRangeComparison("previousYear"); B.DateRange_custom = new A.DateRange("custom"); B.DateRange_last30Days = new A.DateRange("last30Days"); B.DateRange_last7Days = new A.DateRange("last7Days"); B.DateRange_lastMonth = new A.DateRange("lastMonth"); B.DateRange_lastQuarter = new A.DateRange("lastQuarter"); B.DateRange_lastYear = new A.DateRange("lastYear"); B.DateRange_thisMonth = new A.DateRange("thisMonth"); B.DateRange_thisQuarter = new A.DateRange("thisQuarter"); B.DateRange_thisYear = new A.DateRange("thisYear"); B.DayPeriod_0 = new A.DayPeriod(0, "am"); B.DayPeriod_1 = new A.DayPeriod(1, "pm"); B.DebugEngineInitializationState_0 = new A.DebugEngineInitializationState(0, "uninitialized"); B.DebugEngineInitializationState_1 = new A.DebugEngineInitializationState(1, "initializingServices"); B.DebugEngineInitializationState_2 = new A.DebugEngineInitializationState(2, "initializedServices"); B.DebugEngineInitializationState_3 = new A.DebugEngineInitializationState(3, "initializingUi"); B.DebugEngineInitializationState_4 = new A.DebugEngineInitializationState(4, "initialized"); B.DebugSemanticsDumpOrder_0 = new A.DebugSemanticsDumpOrder(0, "inverseHitTest"); B.DebugSemanticsDumpOrder_1 = new A.DebugSemanticsDumpOrder(1, "traversalOrder"); B.DecorationPosition_0 = new A.DecorationPosition(0, "background"); B.DecorationPosition_1 = new A.DecorationPosition(1, "foreground"); B.DeepCollectionEquality_false = new A.DeepCollectionEquality(false); B.DeepCollectionEquality_true = new A.DeepCollectionEquality(true); B.TextStyle_zIQ = new A.TextStyle(true, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextOverflow_0 = new A.TextOverflow(0, "clip"); B.TextWidthBasis_0 = new A.TextWidthBasis(0, "parent"); B._NullWidget_null3 = new A._NullWidget2(null); B.DefaultTextStyle_40S = new A.DefaultTextStyle(B.TextStyle_zIQ, null, true, B.TextOverflow_0, null, B.TextWidthBasis_0, null, B._NullWidget_null3, null); B.DeviceGestureSettings_18 = new A.DeviceGestureSettings(18); B.DiagnosticLevel_0 = new A.DiagnosticLevel(0, "hidden"); B.DiagnosticLevel_1 = new A.DiagnosticLevel(1, "fine"); B.DiagnosticLevel_2 = new A.DiagnosticLevel(2, "debug"); B.DiagnosticLevel_3 = new A.DiagnosticLevel(3, "info"); B.DiagnosticLevel_4 = new A.DiagnosticLevel(4, "warning"); B.DiagnosticLevel_5 = new A.DiagnosticLevel(5, "hint"); B.DiagnosticLevel_6 = new A.DiagnosticLevel(6, "summary"); B.DiagnosticLevel_7 = new A.DiagnosticLevel(7, "error"); B.DiagnosticsTreeStyle_1 = new A.DiagnosticsTreeStyle(1, "sparse"); B.DiagnosticsTreeStyle_10 = new A.DiagnosticsTreeStyle(10, "shallow"); B.DiagnosticsTreeStyle_11 = new A.DiagnosticsTreeStyle(11, "truncateChildren"); B.DiagnosticsTreeStyle_2 = new A.DiagnosticsTreeStyle(2, "offstage"); B.DiagnosticsTreeStyle_4 = new A.DiagnosticsTreeStyle(4, "transition"); B.DiagnosticsTreeStyle_5 = new A.DiagnosticsTreeStyle(5, "error"); B.DiagnosticsTreeStyle_7 = new A.DiagnosticsTreeStyle(7, "flat"); B.DiagnosticsTreeStyle_8 = new A.DiagnosticsTreeStyle(8, "singleLine"); B.DiagnosticsTreeStyle_9 = new A.DiagnosticsTreeStyle(9, "errorProperty"); B.DialogTheme_zPV = new A.DialogTheme(null, null, null, null, null, null); B.DividerThemeData_Tnu = new A.DividerThemeData(null, null, null, null, null); B.Divider_null_null_null_null = new A.Divider(null, null, null, null); B.DocumentGestureMode_0 = new A.DocumentGestureMode(0, "mouse"); B.DocumentGestureMode_1 = new A.DocumentGestureMode(1, "android"); B.DocumentGestureMode_2 = new A.DocumentGestureMode(2, "iOS"); B.DocumentInputSource_0 = new A.DocumentInputSource(0, "keyboard"); B.DocumentInputSource_1 = new A.DocumentInputSource(1, "ime"); B.DocumentReportFields_0 = new A.DocumentReportFields(0, "name"); B.DocumentReportFields_1 = new A.DocumentReportFields(1, "size"); B.DocumentReportFields_2 = new A.DocumentReportFields(2, "width"); B.DocumentReportFields_3 = new A.DocumentReportFields(3, "height"); B.DocumentReportFields_4 = new A.DocumentReportFields(4, "file_type"); B.DocumentReportFields_5 = new A.DocumentReportFields(5, "record_type"); B.DocumentReportFields_6 = new A.DocumentReportFields(6, "record_name"); B.DocumentReportFields_7 = new A.DocumentReportFields(7, "created_at"); B.DocumentReportFields_8 = new A.DocumentReportFields(8, "created_by"); B.DocumentReportFields_9 = new A.DocumentReportFields(9, "updated_at"); B.DragStartBehavior_0 = new A.DragStartBehavior(0, "down"); B.DragStartBehavior_1 = new A.DragStartBehavior(1, "start"); B.DrawerAlignment_0 = new A.DrawerAlignment(0, "start"); B.DrawerAlignment_1 = new A.DrawerAlignment(1, "end"); B.DrawerMotion_null = new A.DrawerMotion(null); B.DrawerThemeData_jfn = new A.DrawerThemeData(null, null, null, null, null); B.Duration_0 = new A.Duration(0); B.Duration_1000 = new A.Duration(1000); B.Duration_100000 = new A.Duration(100000); B.Duration_1000000 = new A.Duration(1000000); B.Duration_10000000 = new A.Duration(10000000); B.Duration_120000 = new A.Duration(120000); B.Duration_1200000 = new A.Duration(1200000); B.Duration_125000 = new A.Duration(125000); B.Duration_15000 = new A.Duration(15000); B.Duration_150000 = new A.Duration(150000); B.Duration_1500000 = new A.Duration(1500000); B.Duration_15000000 = new A.Duration(15000000); B.Duration_160000 = new A.Duration(160000); B.Duration_16667 = new A.Duration(16667); B.Duration_167000 = new A.Duration(167000); B.Duration_180000 = new A.Duration(180000); B.Duration_1800000 = new A.Duration(1800000); B.Duration_200000 = new A.Duration(200000); B.Duration_2000000 = new A.Duration(2000000); B.Duration_210000 = new A.Duration(210000); B.Duration_225000 = new A.Duration(225000); B.Duration_2300000 = new A.Duration(2300000); B.Duration_246000 = new A.Duration(246000); B.Duration_250000 = new A.Duration(250000); B.Duration_2592000000000 = new A.Duration(2592e9); B.Duration_2961926000 = new A.Duration(2961926000); B.Duration_300000 = new A.Duration(300000); B.Duration_3000000 = new A.Duration(3000000); B.Duration_375000 = new A.Duration(375000); B.Duration_40000 = new A.Duration(40000); B.Duration_400000 = new A.Duration(400000); B.Duration_4000000 = new A.Duration(4000000); B.Duration_50000 = new A.Duration(50000); B.Duration_500000 = new A.Duration(500000); B.Duration_5000000 = new A.Duration(5000000); B.Duration_600000 = new A.Duration(600000); B.Duration_600000000 = new A.Duration(600000000); B.Duration_604800000000 = new A.Duration(6048e8); B.Duration_75000 = new A.Duration(75000); B.Duration_m38000 = new A.Duration(-38000); B.EdgeInsetsDirectional_0_0_8_0 = new A.EdgeInsetsDirectional(0, 0, 8, 0); B.EdgeInsetsDirectional_16_0_24_0 = new A.EdgeInsetsDirectional(16, 0, 24, 0); B.EdgeInsetsDirectional_16_0_4_0 = new A.EdgeInsetsDirectional(16, 0, 4, 0); B.EdgeInsetsDirectional_24_0_12_0 = new A.EdgeInsetsDirectional(24, 0, 12, 0); B.EdgeInsetsDirectional_24_0_14_0 = new A.EdgeInsetsDirectional(24, 0, 14, 0); B.EdgeInsets_0_0_0_0 = new A.EdgeInsets(0, 0, 0, 0); B.EdgeInsets_0_0_0_1 = new A.EdgeInsets(0, 0, 0, 1); B.EdgeInsets_0_0_0_10 = new A.EdgeInsets(0, 0, 0, 10); B.EdgeInsets_0_0_0_16 = new A.EdgeInsets(0, 0, 0, 16); B.EdgeInsets_0_0_0_18 = new A.EdgeInsets(0, 0, 0, 18); B.EdgeInsets_0_0_0_20 = new A.EdgeInsets(0, 0, 0, 20); B.EdgeInsets_0_0_0_4 = new A.EdgeInsets(0, 0, 0, 4); B.EdgeInsets_0_0_0_6 = new A.EdgeInsets(0, 0, 0, 6); B.EdgeInsets_0_0_0_8 = new A.EdgeInsets(0, 0, 0, 8); B.EdgeInsets_0_0_10_0 = new A.EdgeInsets(0, 0, 10, 0); B.EdgeInsets_0_0_12_0 = new A.EdgeInsets(0, 0, 12, 0); B.EdgeInsets_0_0_16_0 = new A.EdgeInsets(0, 0, 16, 0); B.EdgeInsets_0_0_20_0 = new A.EdgeInsets(0, 0, 20, 0); B.EdgeInsets_0_0_2_0 = new A.EdgeInsets(0, 0, 2, 0); B.EdgeInsets_0_0_4_0 = new A.EdgeInsets(0, 0, 4, 0); B.EdgeInsets_0_0_5_0 = new A.EdgeInsets(0, 0, 5, 0); B.EdgeInsets_0_0_8_0 = new A.EdgeInsets(0, 0, 8, 0); B.EdgeInsets_0_10_0_0 = new A.EdgeInsets(0, 10, 0, 0); B.EdgeInsets_0_10_0_10 = new A.EdgeInsets(0, 10, 0, 10); B.EdgeInsets_0_10_10_0 = new A.EdgeInsets(0, 10, 10, 0); B.EdgeInsets_0_12_0_0 = new A.EdgeInsets(0, 12, 0, 0); B.EdgeInsets_0_12_0_12 = new A.EdgeInsets(0, 12, 0, 12); B.EdgeInsets_0_12_0_16 = new A.EdgeInsets(0, 12, 0, 16); B.EdgeInsets_0_13_0_13 = new A.EdgeInsets(0, 13, 0, 13); B.EdgeInsets_0_16_0_0 = new A.EdgeInsets(0, 16, 0, 0); B.EdgeInsets_0_16_0_16 = new A.EdgeInsets(0, 16, 0, 16); B.EdgeInsets_0_16_0_8 = new A.EdgeInsets(0, 16, 0, 8); B.EdgeInsets_0_16_0_80 = new A.EdgeInsets(0, 16, 0, 80); B.EdgeInsets_0_20_0_0 = new A.EdgeInsets(0, 20, 0, 0); B.EdgeInsets_0_20_0_20 = new A.EdgeInsets(0, 20, 0, 20); B.EdgeInsets_0_22_0_0 = new A.EdgeInsets(0, 22, 0, 0); B.EdgeInsets_0_25_0_0 = new A.EdgeInsets(0, 25, 0, 0); B.EdgeInsets_0_2_0_0 = new A.EdgeInsets(0, 2, 0, 0); B.EdgeInsets_0_30_0_0 = new A.EdgeInsets(0, 30, 0, 0); B.EdgeInsets_0_32_0_0 = new A.EdgeInsets(0, 32, 0, 0); B.EdgeInsets_0_3_0_0 = new A.EdgeInsets(0, 3, 0, 0); B.EdgeInsets_0_4_0_0 = new A.EdgeInsets(0, 4, 0, 0); B.EdgeInsets_0_4_0_4 = new A.EdgeInsets(0, 4, 0, 4); B.EdgeInsets_0_4_8_0 = new A.EdgeInsets(0, 4, 8, 0); B.EdgeInsets_0_50_0_0 = new A.EdgeInsets(0, 50, 0, 0); B.EdgeInsets_0_52_0_0 = new A.EdgeInsets(0, 52, 0, 0); B.EdgeInsets_0_6_0_10 = new A.EdgeInsets(0, 6, 0, 10); B.EdgeInsets_0_6_0_6 = new A.EdgeInsets(0, 6, 0, 6); B.EdgeInsets_0_8_0_0 = new A.EdgeInsets(0, 8, 0, 0); B.EdgeInsets_0_8_0_8 = new A.EdgeInsets(0, 8, 0, 8); B.EdgeInsets_10_0_0_0 = new A.EdgeInsets(10, 0, 0, 0); B.EdgeInsets_10_0_10_0 = new A.EdgeInsets(10, 0, 10, 0); B.EdgeInsets_10_10_10_10 = new A.EdgeInsets(10, 10, 10, 10); B.EdgeInsets_10_3_10_3 = new A.EdgeInsets(10, 3, 10, 3); B.EdgeInsets_10_4_16_4 = new A.EdgeInsets(10, 4, 16, 4); B.EdgeInsets_10_4_28_4 = new A.EdgeInsets(10, 4, 28, 4); B.EdgeInsets_12_0_0_0 = new A.EdgeInsets(12, 0, 0, 0); B.EdgeInsets_12_0_12_0 = new A.EdgeInsets(12, 0, 12, 0); B.EdgeInsets_12_12_12_12 = new A.EdgeInsets(12, 12, 12, 12); B.EdgeInsets_12_12_6_0 = new A.EdgeInsets(12, 12, 6, 0); B.EdgeInsets_12_12_6_12 = new A.EdgeInsets(12, 12, 6, 12); B.EdgeInsets_12_20_0_0 = new A.EdgeInsets(12, 20, 0, 0); B.EdgeInsets_12_20_12_12 = new A.EdgeInsets(12, 20, 12, 12); B.EdgeInsets_12_24_12_16 = new A.EdgeInsets(12, 24, 12, 16); B.EdgeInsets_12_8_12_8 = new A.EdgeInsets(12, 8, 12, 8); B.EdgeInsets_14_14_14_14 = new A.EdgeInsets(14, 14, 14, 14); B.EdgeInsets_16_0_0_0 = new A.EdgeInsets(16, 0, 0, 0); B.EdgeInsets_16_0_16_0 = new A.EdgeInsets(16, 0, 16, 0); B.EdgeInsets_16_0_16_10 = new A.EdgeInsets(16, 0, 16, 10); B.EdgeInsets_16_0_16_16 = new A.EdgeInsets(16, 0, 16, 16); B.EdgeInsets_16_0_16_20 = new A.EdgeInsets(16, 0, 16, 20); B.EdgeInsets_16_0_16_8 = new A.EdgeInsets(16, 0, 16, 8); B.EdgeInsets_16_13_16_13 = new A.EdgeInsets(16, 13, 16, 13); B.EdgeInsets_16_16_0_16 = new A.EdgeInsets(16, 16, 0, 16); B.EdgeInsets_16_16_16_0 = new A.EdgeInsets(16, 16, 16, 0); B.EdgeInsets_16_16_16_16 = new A.EdgeInsets(16, 16, 16, 16); B.EdgeInsets_16_20_16_8 = new A.EdgeInsets(16, 20, 16, 8); B.EdgeInsets_16_24_16_24 = new A.EdgeInsets(16, 24, 16, 24); B.EdgeInsets_16_2_16_16 = new A.EdgeInsets(16, 2, 16, 16); B.EdgeInsets_16_8_0_0 = new A.EdgeInsets(16, 8, 0, 0); B.EdgeInsets_16_8_16_2 = new A.EdgeInsets(16, 8, 16, 2); B.EdgeInsets_16_8_16_8 = new A.EdgeInsets(16, 8, 16, 8); B.EdgeInsets_17_8_17_8 = new A.EdgeInsets(17, 8, 17, 8); B.EdgeInsets_18_0_18_0 = new A.EdgeInsets(18, 0, 18, 0); B.EdgeInsets_18_20_18_10 = new A.EdgeInsets(18, 20, 18, 10); B.EdgeInsets_19_16_0_16 = new A.EdgeInsets(19, 16, 0, 16); B.EdgeInsets_20_0_20_0 = new A.EdgeInsets(20, 0, 20, 0); B.EdgeInsets_20_10_56_8 = new A.EdgeInsets(20, 10, 56, 8); B.EdgeInsets_20_16_20_16 = new A.EdgeInsets(20, 16, 20, 16); B.EdgeInsets_20_20_0_0 = new A.EdgeInsets(20, 20, 0, 0); B.EdgeInsets_20_20_20_20 = new A.EdgeInsets(20, 20, 20, 20); B.EdgeInsets_20_3_20_3 = new A.EdgeInsets(20, 3, 20, 3); B.EdgeInsets_20_4_20_4 = new A.EdgeInsets(20, 4, 20, 4); B.EdgeInsets_22_22_22_22 = new A.EdgeInsets(22, 22, 22, 22); B.EdgeInsets_24_0_10_16 = new A.EdgeInsets(24, 0, 10, 16); B.EdgeInsets_24_0_24_0 = new A.EdgeInsets(24, 0, 24, 0); B.EdgeInsets_24_12_10_12 = new A.EdgeInsets(24, 12, 10, 12); B.EdgeInsets_24_16_24_16 = new A.EdgeInsets(24, 16, 24, 16); B.EdgeInsets_24_20_24_24 = new A.EdgeInsets(24, 20, 24, 24); B.EdgeInsets_24_24_24_0 = new A.EdgeInsets(24, 24, 24, 0); B.EdgeInsets_24_24_24_24 = new A.EdgeInsets(24, 24, 24, 24); B.EdgeInsets_24_2_18_0 = new A.EdgeInsets(24, 2, 18, 0); B.EdgeInsets_24_8_24_8 = new A.EdgeInsets(24, 8, 24, 8); B.EdgeInsets_25_0_25_6 = new A.EdgeInsets(25, 0, 25, 6); B.EdgeInsets_28_28_28_28 = new A.EdgeInsets(28, 28, 28, 28); B.EdgeInsets_30_16_30_0 = new A.EdgeInsets(30, 16, 30, 0); B.EdgeInsets_36_24_36_24 = new A.EdgeInsets(36, 24, 36, 24); B.EdgeInsets_40_24_40_24 = new A.EdgeInsets(40, 24, 40, 24); B.EdgeInsets_4_0_20_0 = new A.EdgeInsets(4, 0, 20, 0); B.EdgeInsets_4_0_4_0 = new A.EdgeInsets(4, 0, 4, 0); B.EdgeInsets_4_4_4_4 = new A.EdgeInsets(4, 4, 4, 4); B.EdgeInsets_4_4_4_5 = new A.EdgeInsets(4, 4, 4, 5); B.EdgeInsets_4_6_0_6 = new A.EdgeInsets(4, 6, 0, 6); B.EdgeInsets_5_0_5_0 = new A.EdgeInsets(5, 0, 5, 0); B.EdgeInsets_6_0_6_0 = new A.EdgeInsets(6, 0, 6, 0); B.EdgeInsets_6_10_0_0 = new A.EdgeInsets(6, 10, 0, 0); B.EdgeInsets_6_12_12_0 = new A.EdgeInsets(6, 12, 12, 0); B.EdgeInsets_6_12_12_12 = new A.EdgeInsets(6, 12, 12, 12); B.EdgeInsets_6_12_6_0 = new A.EdgeInsets(6, 12, 6, 0); B.EdgeInsets_6_12_6_12 = new A.EdgeInsets(6, 12, 6, 12); B.EdgeInsets_6_2_0_0 = new A.EdgeInsets(6, 2, 0, 0); B.EdgeInsets_6_6_6_6 = new A.EdgeInsets(6, 6, 6, 6); B.EdgeInsets_7_7_7_7 = new A.EdgeInsets(7, 7, 7, 7); B.EdgeInsets_8_0_0_0 = new A.EdgeInsets(8, 0, 0, 0); B.EdgeInsets_8_0_8_0 = new A.EdgeInsets(8, 0, 8, 0); B.EdgeInsets_8_0_8_12 = new A.EdgeInsets(8, 0, 8, 12); B.EdgeInsets_8_0_8_8 = new A.EdgeInsets(8, 0, 8, 8); B.EdgeInsets_8_2_0_4 = new A.EdgeInsets(8, 2, 0, 4); B.EdgeInsets_8_5_8_5 = new A.EdgeInsets(8, 5, 8, 5); B.EdgeInsets_8_8_8_4 = new A.EdgeInsets(8, 8, 8, 4); B.EdgeInsets_8_8_8_8 = new A.EdgeInsets(8, 8, 8, 8); B.EdgeInsets_Otk = new A.EdgeInsets(0.5, 1, 0.5, 1); B.ElevatedButtonThemeData_null = new A.ElevatedButtonThemeData(null); B.EmailTemplate_credit = new A.EmailTemplate("credit"); B.EmailTemplate_custom1 = new A.EmailTemplate("custom1"); B.EmailTemplate_custom2 = new A.EmailTemplate("custom2"); B.EmailTemplate_custom3 = new A.EmailTemplate("custom3"); B.EmailTemplate_invoice = new A.EmailTemplate("invoice"); B.EmailTemplate_payment = new A.EmailTemplate("payment"); B.EmailTemplate_payment_partial = new A.EmailTemplate("payment_partial"); B.EmailTemplate_purchase_order = new A.EmailTemplate("purchase_order"); B.EmailTemplate_quote = new A.EmailTemplate("quote"); B.EmailTemplate_reminder1 = new A.EmailTemplate("reminder1"); B.EmailTemplate_reminder2 = new A.EmailTemplate("reminder2"); B.EmailTemplate_reminder3 = new A.EmailTemplate("reminder3"); B.EmailTemplate_reminder_endless = new A.EmailTemplate("reminder_endless"); B.EmailTemplate_statement = new A.EmailTemplate("statement"); B.EnabledState_0 = new A.EnabledState(0, "noOpinion"); B.EnabledState_1 = new A.EnabledState(1, "enabled"); B.EnabledState_2 = new A.EnabledState(2, "disabled"); B.EntityAction_accept = new A.EntityAction("accept"); B.EntityAction_addToInventory = new A.EntityAction("addToInventory"); B.EntityAction_addToInvoice = new A.EntityAction("addToInvoice"); B.EntityAction_applyCredit = new A.EntityAction("applyCredit"); B.EntityAction_applyPayment = new A.EntityAction("applyPayment"); B.EntityAction_approve = new A.EntityAction("approve"); B.EntityAction_archive = new A.EntityAction("archive"); B.EntityAction_bulkDownload = new A.EntityAction("bulkDownload"); B.EntityAction_bulkSendEmail = new A.EntityAction("bulkSendEmail"); B.EntityAction_cancel = new A.EntityAction("cancel"); B.EntityAction_cancelInvoice = new A.EntityAction("cancelInvoice"); B.EntityAction_changeStatus = new A.EntityAction("changeStatus"); B.EntityAction_clientPortal = new A.EntityAction("clientPortal"); B.EntityAction_clone = new A.EntityAction("clone"); B.EntityAction_cloneToCredit = new A.EntityAction("cloneToCredit"); B.EntityAction_cloneToExpense = new A.EntityAction("cloneToExpense"); B.EntityAction_cloneToInvoice = new A.EntityAction("cloneToInvoice"); B.EntityAction_cloneToOther = new A.EntityAction("cloneToOther"); B.EntityAction_cloneToPurchaseOrder = new A.EntityAction("cloneToPurchaseOrder"); B.EntityAction_cloneToQuote = new A.EntityAction("cloneToQuote"); B.EntityAction_cloneToRecurring = new A.EntityAction("cloneToRecurring"); B.EntityAction_convertToExpense = new A.EntityAction("convertToExpense"); B.EntityAction_convertToInvoice = new A.EntityAction("convertToInvoice"); B.EntityAction_copy = new A.EntityAction("copy"); B.EntityAction_delete = new A.EntityAction("delete"); B.EntityAction_disconnect = new A.EntityAction("disconnect"); B.EntityAction_documents = new A.EntityAction("documents"); B.EntityAction_download = new A.EntityAction("download"); B.EntityAction_edit = new A.EntityAction("edit"); B.EntityAction_invoiceExpense = new A.EntityAction("invoiceExpense"); B.EntityAction_invoiceProject = new A.EntityAction("invoiceProject"); B.EntityAction_invoiceTask = new A.EntityAction("invoiceTask"); B.EntityAction_markPaid = new A.EntityAction("markPaid"); B.EntityAction_markSent = new A.EntityAction("markSent"); B.EntityAction_merge = new A.EntityAction("merge"); B.EntityAction_more = new A.EntityAction("more"); B.EntityAction_newClient = new A.EntityAction("newClient"); B.EntityAction_newCredit = new A.EntityAction("newCredit"); B.EntityAction_newExpense = new A.EntityAction("newExpense"); B.EntityAction_newInvoice = new A.EntityAction("newInvoice"); B.EntityAction_newPayment = new A.EntityAction("newPayment"); B.EntityAction_newProject = new A.EntityAction("newProject"); B.EntityAction_newPurchaseOrder = new A.EntityAction("newPurchaseOrder"); B.EntityAction_newQuote = new A.EntityAction("newQuote"); B.EntityAction_newRecurringExpense = new A.EntityAction("newRecurringExpense"); B.EntityAction_newRecurringInvoice = new A.EntityAction("newRecurringInvoice"); B.EntityAction_newRecurringQuote = new A.EntityAction("newRecurringQuote"); B.EntityAction_newTask = new A.EntityAction("newTask"); B.EntityAction_newVendor = new A.EntityAction("newVendor"); B.EntityAction_printPdf = new A.EntityAction("printPdf"); B.EntityAction_purge = new A.EntityAction("purge"); B.EntityAction_refundPayment = new A.EntityAction("refundPayment"); B.EntityAction_remove = new A.EntityAction("remove"); B.EntityAction_resendInvite = new A.EntityAction("resendInvite"); B.EntityAction_restore = new A.EntityAction("restore"); B.EntityAction_resume = new A.EntityAction("resume"); B.EntityAction_reverse = new A.EntityAction("reverse"); B.EntityAction_save = new A.EntityAction("save"); B.EntityAction_sendEmail = new A.EntityAction("sendEmail"); B.EntityAction_sendNow = new A.EntityAction("sendNow"); B.EntityAction_settings = new A.EntityAction("settings"); B.EntityAction_start = new A.EntityAction("start"); B.EntityAction_stop = new A.EntityAction("stop"); B.EntityAction_toggleMultiselect = new A.EntityAction("toggleMultiselect"); B.EntityAction_viewExpense = new A.EntityAction("viewExpense"); B.EntityAction_viewInvoice = new A.EntityAction("viewInvoice"); B.EntityAction_viewPdf = new A.EntityAction("viewPdf"); B.EntityAction_viewStatement = new A.EntityAction("viewStatement"); B.EntityState_active = new A.EntityState("active"); B.EntityState_archived = new A.EntityState("archived"); B.EntityState_deleted = new A.EntityState("deleted"); B.EntityType_client = new A.EntityType("client"); B.EntityType_company = new A.EntityType("company"); B.EntityType_companyGateway = new A.EntityType("companyGateway"); B.EntityType_contact = new A.EntityType("contact"); B.EntityType_country = new A.EntityType("country"); B.EntityType_credit = new A.EntityType("credit"); B.EntityType_currency = new A.EntityType("currency"); B.EntityType_dashboard = new A.EntityType("dashboard"); B.EntityType_dateFormat = new A.EntityType("dateFormat"); B.EntityType_design = new A.EntityType("design"); B.EntityType_document = new A.EntityType("document"); B.EntityType_expense = new A.EntityType("expense"); B.EntityType_expenseCategory = new A.EntityType("expenseCategory"); B.EntityType_font = new A.EntityType("font"); B.EntityType_gateway = new A.EntityType("gateway"); B.EntityType_gatewayToken = new A.EntityType("gatewayToken"); B.EntityType_group = new A.EntityType("group"); B.EntityType_industry = new A.EntityType("industry"); B.EntityType_invoice = new A.EntityType("invoice"); B.EntityType_invoiceItem = new A.EntityType("invoiceItem"); B.EntityType_language = new A.EntityType("language"); B.EntityType_payment = new A.EntityType("payment"); B.EntityType_paymentTerm = new A.EntityType("paymentTerm"); B.EntityType_paymentType = new A.EntityType("paymentType"); B.EntityType_product = new A.EntityType("product"); B.EntityType_project = new A.EntityType("project"); B.EntityType_purchaseOrder = new A.EntityType("purchaseOrder"); B.EntityType_quote = new A.EntityType("quote"); B.EntityType_recurringExpense = new A.EntityType("recurringExpense"); B.EntityType_recurringInvoice = new A.EntityType("recurringInvoice"); B.EntityType_recurringQuote = new A.EntityType("recurringQuote"); B.EntityType_reports = new A.EntityType("reports"); B.EntityType_settings = new A.EntityType("settings"); B.EntityType_size = new A.EntityType("size"); B.EntityType_subscription = new A.EntityType("subscription"); B.EntityType_task = new A.EntityType("task"); B.EntityType_taskStatus = new A.EntityType("taskStatus"); B.EntityType_taxRate = new A.EntityType("taxRate"); B.EntityType_timezone = new A.EntityType("timezone"); B.EntityType_token = new A.EntityType("token"); B.EntityType_user = new A.EntityType("user"); B.EntityType_vendor = new A.EntityType("vendor"); B.EntityType_vendorContact = new A.EntityType("vendorContact"); B.EntityType_webhook = new A.EntityType("webhook"); B.ExecutionInstruction_0 = new A.ExecutionInstruction(0, "continueExecution"); B.ExecutionInstruction_1 = new A.ExecutionInstruction(1, "blocked"); B.ExecutionInstruction_2 = new A.ExecutionInstruction(2, "haltExecution"); B.ExpansionTileThemeData_O5j = new A.ExpansionTileThemeData(null, null, null, null, null, null, null, null, null); B.ExpenseReportFields_0 = new A.ExpenseReportFields(0, "id"); B.ExpenseReportFields_1 = new A.ExpenseReportFields(1, "amount"); B.ExpenseReportFields_10 = new A.ExpenseReportFields(10, "tax_rate2"); B.ExpenseReportFields_11 = new A.ExpenseReportFields(11, "tax_rate3"); B.ExpenseReportFields_12 = new A.ExpenseReportFields(12, "client"); B.ExpenseReportFields_13 = new A.ExpenseReportFields(13, "client_balance"); B.ExpenseReportFields_14 = new A.ExpenseReportFields(14, "client_address1"); B.ExpenseReportFields_15 = new A.ExpenseReportFields(15, "client_address2"); B.ExpenseReportFields_16 = new A.ExpenseReportFields(16, "client_shipping_address1"); B.ExpenseReportFields_17 = new A.ExpenseReportFields(17, "client_shipping_address2"); B.ExpenseReportFields_18 = new A.ExpenseReportFields(18, "invoice"); B.ExpenseReportFields_19 = new A.ExpenseReportFields(19, "invoice_amount"); B.ExpenseReportFields_2 = new A.ExpenseReportFields(2, "net_amount"); B.ExpenseReportFields_20 = new A.ExpenseReportFields(20, "invoice_date"); B.ExpenseReportFields_21 = new A.ExpenseReportFields(21, "vendor"); B.ExpenseReportFields_22 = new A.ExpenseReportFields(22, "project"); B.ExpenseReportFields_23 = new A.ExpenseReportFields(23, "expense1"); B.ExpenseReportFields_24 = new A.ExpenseReportFields(24, "expense2"); B.ExpenseReportFields_25 = new A.ExpenseReportFields(25, "expense3"); B.ExpenseReportFields_26 = new A.ExpenseReportFields(26, "expense4"); B.ExpenseReportFields_27 = new A.ExpenseReportFields(27, "category"); B.ExpenseReportFields_28 = new A.ExpenseReportFields(28, "assigned_to"); B.ExpenseReportFields_29 = new A.ExpenseReportFields(29, "created_by"); B.ExpenseReportFields_3 = new A.ExpenseReportFields(3, "tax_amount"); B.ExpenseReportFields_30 = new A.ExpenseReportFields(30, "public_notes"); B.ExpenseReportFields_31 = new A.ExpenseReportFields(31, "private_notes"); B.ExpenseReportFields_32 = new A.ExpenseReportFields(32, "tax_amount1"); B.ExpenseReportFields_33 = new A.ExpenseReportFields(33, "tax_amount2"); B.ExpenseReportFields_34 = new A.ExpenseReportFields(34, "tax_amount3"); B.ExpenseReportFields_35 = new A.ExpenseReportFields(35, "created_at"); B.ExpenseReportFields_36 = new A.ExpenseReportFields(36, "updated_at"); B.ExpenseReportFields_4 = new A.ExpenseReportFields(4, "transaction_reference"); B.ExpenseReportFields_5 = new A.ExpenseReportFields(5, "currency"); B.ExpenseReportFields_6 = new A.ExpenseReportFields(6, "date"); B.ExpenseReportFields_7 = new A.ExpenseReportFields(7, "payment_date"); B.ExpenseReportFields_8 = new A.ExpenseReportFields(8, "payment_type"); B.ExpenseReportFields_9 = new A.ExpenseReportFields(9, "tax_rate1"); B.ExportType_clients = new A.ExportType("clients"); B.FileMode_0 = new A.FileMode(0); B.FileMode_1 = new A.FileMode(1); B.FileMode_2 = new A.FileMode(2); B.FileMode_3 = new A.FileMode(3); B.FileMode_4 = new A.FileMode(4); B.FileSystemEntityType_0 = new A.FileSystemEntityType(0); B.FileSystemEntityType_1 = new A.FileSystemEntityType(1); B.FileSystemEntityType_2 = new A.FileSystemEntityType(2); B.FileSystemException_sV6 = new A.FileSystemException("All nodes must have a parent.", "", null); B.FileSystemOp_0 = new A.FileSystemOp(0); B.FileSystemOp_2 = new A.FileSystemOp(2); B.FileSystemOp_3 = new A.FileSystemOp(3); B.FileSystemOp_4 = new A.FileSystemOp(4); B.FileSystemOp_6 = new A.FileSystemOp(6); B.FileType_0 = new A.FileType(0, "any"); B.FileType_2 = new A.FileType(2, "image"); B.FileType_5 = new A.FileType(5, "custom"); B.FillPatternType_0 = new A.FillPatternType(0, "forwardHatch"); B.FillPatternType_1 = new A.FillPatternType(1, "solid"); B.FilterQuality_0 = new A.FilterQuality(0, "none"); B.FilterQuality_1 = new A.FilterQuality(1, "low"); B.FilterQuality_2 = new A.FilterQuality(2, "medium"); B.FilterQuality_3 = new A.FilterQuality(3, "high"); B.FinderPatternPosition_0 = new A.FinderPatternPosition(0, "topLeft"); B.FinderPatternPosition_1 = new A.FinderPatternPosition(1, "topRight"); B.FinderPatternPosition_2 = new A.FinderPatternPosition(2, "bottomLeft"); B.Size_0_0 = new A.Size(0, 0); B.FittedSizes_46c = new A.FittedSizes(B.Size_0_0, B.Size_0_0); B.FlexColumnWidth_1 = new A.FlexColumnWidth(1); B.FlexFit_0 = new A.FlexFit(0, "tight"); B.FlexFit_1 = new A.FlexFit(1, "loose"); B.SizedBox_null_38_null_null = new A.SizedBox(null, 38, null, null); B.Flexible_swd = new A.Flexible(1, B.FlexFit_1, B.SizedBox_null_38_null_null, null); B.FloatingActionButtonThemeData_pYw = new A.FloatingActionButtonThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.FloatingCursorDragState_0 = new A.FloatingCursorDragState(0, "Start"); B.FloatingCursorDragState_1 = new A.FloatingCursorDragState(1, "Update"); B.FloatingCursorDragState_2 = new A.FloatingCursorDragState(2, "End"); B.FloatingLabelBehavior_0 = new A.FloatingLabelBehavior(0, "never"); B.FloatingLabelBehavior_2 = new A.FloatingLabelBehavior(2, "always"); B.FocusHighlightMode_0 = new A.FocusHighlightMode(0, "touch"); B.FocusHighlightMode_1 = new A.FocusHighlightMode(1, "traditional"); B.FocusHighlightStrategy_0 = new A.FocusHighlightStrategy(0, "automatic"); B.FontStyle_0 = new A.FontStyle(0, "normal"); B.FontStyle_1 = new A.FontStyle(1, "italic"); B.FontWeight_3 = new A.FontWeight(3); B.FontWeight_4 = new A.FontWeight(4); B.FontWeight_5 = new A.FontWeight(5); B.FontWeight_6 = new A.FontWeight(6); B.FormatException_Qi2 = new A.FormatException("Invalid method call", null, null); B.FormatException_iDw = new A.FormatException("Expected envelope, got nothing", null, null); B.FormatException_oCg = new A.FormatException("Message corrupted", null, null); B.FormatException_oQ2 = new A.FormatException("Too many percent/permill", null, null); B.FormatException_pSr = new A.FormatException("Invalid envelope", null, null); B.FormatNumberType_0 = new A.FormatNumberType(0, "money"); B.FormatNumberType_1 = new A.FormatNumberType(1, "percent"); B.FormatNumberType_2 = new A.FormatNumberType(2, "int"); B.FormatNumberType_3 = new A.FormatNumberType(3, "double"); B.FormatNumberType_4 = new A.FormatNumberType(4, "inputMoney"); B.FormatNumberType_5 = new A.FormatNumberType(5, "inputAmount"); B.FormatNumberType_6 = new A.FormatNumberType(6, "duration"); B.FractionalOffset_0_0 = new A.FractionalOffset(0, 0); B.Type_BuiltMap_qd4 = A.typeLiteral("BuiltMap<@,@>"); B.Type_String_k8F = A.typeLiteral("String"); B.List_empty10 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_FullType); B.FullType_h8g = new A.FullType(B.Type_String_k8F, B.List_empty10, false); B.Type_DocumentEntity_4AN = A.typeLiteral("DocumentEntity"); B.FullType_uzh = new A.FullType(B.Type_DocumentEntity_4AN, B.List_empty10, false); B.List_B8J0 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_uzh]), type$.JSArray_legacy_FullType); B.FullType_0 = new A.FullType(B.Type_BuiltMap_qd4, B.List_B8J0, false); B.Type_QuoteUIState_WI9 = A.typeLiteral("QuoteUIState"); B.FullType_0eC = new A.FullType(B.Type_QuoteUIState_WI9, B.List_empty10, false); B.Type_CountryEntity_1Wj = A.typeLiteral("CountryEntity"); B.FullType_i9j = new A.FullType(B.Type_CountryEntity_1Wj, B.List_empty10, false); B.List_4m4 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_i9j]), type$.JSArray_legacy_FullType); B.FullType_0kM = new A.FullType(B.Type_BuiltMap_qd4, B.List_4m4, false); B.Type_BuiltList_iTR = A.typeLiteral("BuiltList<@>"); B.Type_ExpenseEntity_OLh = A.typeLiteral("ExpenseEntity"); B.FullType_UcG = new A.FullType(B.Type_ExpenseEntity_OLh, B.List_empty10, false); B.List_Min = A._setArrayType(makeConstList([B.FullType_UcG]), type$.JSArray_legacy_FullType); B.FullType_0vR = new A.FullType(B.Type_BuiltList_iTR, B.List_Min, false); B.Type_PaymentUIState_kyk = A.typeLiteral("PaymentUIState"); B.FullType_1cc = new A.FullType(B.Type_PaymentUIState_kyk, B.List_empty10, false); B.Type_ModuleLayout_0mz = A.typeLiteral("ModuleLayout"); B.FullType_2No = new A.FullType(B.Type_ModuleLayout_0mz, B.List_empty10, false); B.Type_CompanyGatewayUIState_0Ae = A.typeLiteral("CompanyGatewayUIState"); B.FullType_2Px = new A.FullType(B.Type_CompanyGatewayUIState_0Ae, B.List_empty10, false); B.Type_VendorUIState_ohJ = A.typeLiteral("VendorUIState"); B.FullType_2be = new A.FullType(B.Type_VendorUIState_ohJ, B.List_empty10, false); B.Type_GroupUIState_Ejg = A.typeLiteral("GroupUIState"); B.FullType_2bx = new A.FullType(B.Type_GroupUIState_Ejg, B.List_empty10, false); B.Type_PaymentTypeEntity_3f7 = A.typeLiteral("PaymentTypeEntity"); B.FullType_G05 = new A.FullType(B.Type_PaymentTypeEntity_3f7, B.List_empty10, false); B.List_ujW = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_G05]), type$.JSArray_legacy_FullType); B.FullType_2fF = new A.FullType(B.Type_BuiltMap_qd4, B.List_ujW, false); B.Type_LedgerEntity_mHe = A.typeLiteral("LedgerEntity"); B.FullType_Nws = new A.FullType(B.Type_LedgerEntity_mHe, B.List_empty10, false); B.List_O98 = A._setArrayType(makeConstList([B.FullType_Nws]), type$.JSArray_legacy_FullType); B.FullType_2jN = new A.FullType(B.Type_BuiltList_iTR, B.List_O98, false); B.Type_SubscriptionState_4CA = A.typeLiteral("SubscriptionState"); B.FullType_3BG = new A.FullType(B.Type_SubscriptionState_4CA, B.List_empty10, false); B.Type_WebhookEntity_Cfr = A.typeLiteral("WebhookEntity"); B.FullType_iL9 = new A.FullType(B.Type_WebhookEntity_Cfr, B.List_empty10, false); B.List_hCL = A._setArrayType(makeConstList([B.FullType_iL9]), type$.JSArray_legacy_FullType); B.FullType_46c = new A.FullType(B.Type_BuiltList_iTR, B.List_hCL, false); B.Type_InvoiceUIState_YU8 = A.typeLiteral("InvoiceUIState"); B.FullType_4QF = new A.FullType(B.Type_InvoiceUIState_YU8, B.List_empty10, false); B.Type_TaskEntity_33h = A.typeLiteral("TaskEntity"); B.FullType_4QF0 = new A.FullType(B.Type_TaskEntity_33h, B.List_empty10, false); B.Type_BuiltListMultimap_2Mt = A.typeLiteral("BuiltListMultimap<@,@>"); B.Type_Object_xQ6 = A.typeLiteral("Object"); B.FullType_1MH = new A.FullType(B.Type_Object_xQ6, B.List_empty10, false); B.List_a1A = A._setArrayType(makeConstList([B.FullType_1MH, B.FullType_1MH]), type$.JSArray_legacy_FullType); B.FullType_4Wf = new A.FullType(B.Type_BuiltListMultimap_2Mt, B.List_a1A, false); B.Type_BuiltSet_fcN = A.typeLiteral("BuiltSet<@>"); B.List_yym = A._setArrayType(makeConstList([B.FullType_1MH]), type$.JSArray_legacy_FullType); B.FullType_4e8 = new A.FullType(B.Type_BuiltSet_fcN, B.List_yym, false); B.Type_DesignEntity_0 = A.typeLiteral("DesignEntity"); B.FullType_CNd = new A.FullType(B.Type_DesignEntity_0, B.List_empty10, false); B.List_cLJ = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_CNd]), type$.JSArray_legacy_FullType); B.FullType_4ig = new A.FullType(B.Type_BuiltMap_qd4, B.List_cLJ, false); B.Type_ClientContactEntity_yrB = A.typeLiteral("ClientContactEntity"); B.FullType_CqM = new A.FullType(B.Type_ClientContactEntity_yrB, B.List_empty10, false); B.List_7Y5 = A._setArrayType(makeConstList([B.FullType_CqM]), type$.JSArray_legacy_FullType); B.FullType_4pa = new A.FullType(B.Type_BuiltList_iTR, B.List_7Y5, false); B.Type_ExpenseCategoryState_58F = A.typeLiteral("ExpenseCategoryState"); B.FullType_4qm = new A.FullType(B.Type_ExpenseCategoryState_58F, B.List_empty10, false); B.Type_CurrencyEntity_nZd = A.typeLiteral("CurrencyEntity"); B.FullType_Yio = new A.FullType(B.Type_CurrencyEntity_nZd, B.List_empty10, false); B.List_SlD = A._setArrayType(makeConstList([B.FullType_Yio]), type$.JSArray_legacy_FullType); B.FullType_4uk = new A.FullType(B.Type_BuiltList_iTR, B.List_SlD, false); B.Type_UserEntity_IVQ = A.typeLiteral("UserEntity"); B.FullType_oyU = new A.FullType(B.Type_UserEntity_IVQ, B.List_empty10, false); B.List_iHe = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_oyU]), type$.JSArray_legacy_FullType); B.FullType_4y3 = new A.FullType(B.Type_BuiltMap_qd4, B.List_iHe, false); B.Type_int_tHn = A.typeLiteral("int"); B.FullType_kjq = new A.FullType(B.Type_int_tHn, B.List_empty10, false); B.List_f1j = A._setArrayType(makeConstList([B.FullType_kjq, B.FullType_h8g]), type$.JSArray_legacy_FullType); B.FullType_5FV = new A.FullType(B.Type_BuiltMap_qd4, B.List_f1j, false); B.Type_ExpenseState_yzp = A.typeLiteral("ExpenseState"); B.FullType_5OF = new A.FullType(B.Type_ExpenseState_yzp, B.List_empty10, false); B.List_UqR = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Yio]), type$.JSArray_legacy_FullType); B.FullType_5m9 = new A.FullType(B.Type_BuiltMap_qd4, B.List_UqR, false); B.Type_TaskUIState_oqK = A.typeLiteral("TaskUIState"); B.FullType_5xM = new A.FullType(B.Type_TaskUIState_oqK, B.List_empty10, false); B.Type_DocumentState_yL2 = A.typeLiteral("DocumentState"); B.FullType_61h = new A.FullType(B.Type_DocumentState_yL2, B.List_empty10, false); B.Type_UIState_sxw = A.typeLiteral("UIState"); B.FullType_69P = new A.FullType(B.Type_UIState_sxw, B.List_empty10, false); B.List_4AN = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_UcG]), type$.JSArray_legacy_FullType); B.FullType_6Ps = new A.FullType(B.Type_BuiltMap_qd4, B.List_4AN, false); B.Type_CompanyGatewayEntity_Yu9 = A.typeLiteral("CompanyGatewayEntity"); B.FullType_UQL = new A.FullType(B.Type_CompanyGatewayEntity_Yu9, B.List_empty10, false); B.List_9pl = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_UQL]), type$.JSArray_legacy_FullType); B.FullType_6Re = new A.FullType(B.Type_BuiltMap_qd4, B.List_9pl, false); B.List_CVN = A._setArrayType(makeConstList([B.FullType_h8g]), type$.JSArray_legacy_FullType); B.FullType_6m4 = new A.FullType(B.Type_BuiltList_iTR, B.List_CVN, false); B.Type_DashboardUISettings_cg9 = A.typeLiteral("DashboardUISettings"); B.FullType_86y = new A.FullType(B.Type_DashboardUISettings_cg9, B.List_empty10, false); B.Type_AppLayout_co1 = A.typeLiteral("AppLayout"); B.FullType_88H = new A.FullType(B.Type_AppLayout_co1, B.List_empty10, false); B.Type_UserCompanyEntity_XrT = A.typeLiteral("UserCompanyEntity"); B.FullType_whX = new A.FullType(B.Type_UserCompanyEntity_XrT, B.List_empty10, false); B.List_gMT = A._setArrayType(makeConstList([B.FullType_whX]), type$.JSArray_legacy_FullType); B.FullType_89t = new A.FullType(B.Type_BuiltList_iTR, B.List_gMT, false); B.Type_ExpenseCategoryEntity_ccl = A.typeLiteral("ExpenseCategoryEntity"); B.FullType_M6L = new A.FullType(B.Type_ExpenseCategoryEntity_ccl, B.List_empty10, false); B.List_n5x = A._setArrayType(makeConstList([B.FullType_M6L]), type$.JSArray_legacy_FullType); B.FullType_8cq = new A.FullType(B.Type_BuiltList_iTR, B.List_n5x, false); B.Type_IndustryEntity_a7D = A.typeLiteral("IndustryEntity"); B.FullType_8h5 = new A.FullType(B.Type_IndustryEntity_a7D, B.List_empty10, false); B.List_zTX = A._setArrayType(makeConstList([B.FullType_CNd]), type$.JSArray_legacy_FullType); B.FullType_8sg = new A.FullType(B.Type_BuiltList_iTR, B.List_zTX, false); B.Type_DateFormatEntity_OME = A.typeLiteral("DateFormatEntity"); B.FullType_gg9 = new A.FullType(B.Type_DateFormatEntity_OME, B.List_empty10, false); B.List_SZl = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_gg9]), type$.JSArray_legacy_FullType); B.FullType_9Sk = new A.FullType(B.Type_BuiltMap_qd4, B.List_SZl, false); B.Type_TaskStatusState_Dm4 = A.typeLiteral("TaskStatusState"); B.FullType_A6W = new A.FullType(B.Type_TaskStatusState_Dm4, B.List_empty10, false); B.Type_UserUIState_ymM = A.typeLiteral("UserUIState"); B.FullType_A8J0 = new A.FullType(B.Type_UserUIState_ymM, B.List_empty10, false); B.List_Ahx = A._setArrayType(makeConstList([B.FullType_UQL]), type$.JSArray_legacy_FullType); B.FullType_A8J = new A.FullType(B.Type_BuiltList_iTR, B.List_Ahx, false); B.Type_WebhookUIState_HFe = A.typeLiteral("WebhookUIState"); B.FullType_AUo = new A.FullType(B.Type_WebhookUIState_HFe, B.List_empty10, false); B.Type_DateRange_avx = A.typeLiteral("DateRange"); B.FullType_AaU = new A.FullType(B.Type_DateRange_avx, B.List_empty10, false); B.Type_ClientEntity_PI2 = A.typeLiteral("ClientEntity"); B.FullType_W34 = new A.FullType(B.Type_ClientEntity_PI2, B.List_empty10, false); B.List_1ns = A._setArrayType(makeConstList([B.FullType_W34]), type$.JSArray_legacy_FullType); B.FullType_Ag3 = new A.FullType(B.Type_BuiltList_iTR, B.List_1ns, false); B.Type_ProductEntity_P4I = A.typeLiteral("ProductEntity"); B.FullType_Art = new A.FullType(B.Type_ProductEntity_P4I, B.List_empty10, false); B.Type_TokenEntity_QoM = A.typeLiteral("TokenEntity"); B.FullType_Azp = new A.FullType(B.Type_TokenEntity_QoM, B.List_empty10, false); B.Type_GatewayTokenEntity_goM = A.typeLiteral("GatewayTokenEntity"); B.FullType_C0V = new A.FullType(B.Type_GatewayTokenEntity_goM, B.List_empty10, false); B.List_cQL = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Azp]), type$.JSArray_legacy_FullType); B.FullType_C42 = new A.FullType(B.Type_BuiltMap_qd4, B.List_cQL, false); B.Type_GatewayEntity_kOG = A.typeLiteral("GatewayEntity"); B.FullType_uRN0 = new A.FullType(B.Type_GatewayEntity_kOG, B.List_empty10, false); B.List_mHe = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_uRN0]), type$.JSArray_legacy_FullType); B.FullType_CWG = new A.FullType(B.Type_BuiltMap_qd4, B.List_mHe, false); B.Type_PaymentEntity_Usy = A.typeLiteral("PaymentEntity"); B.FullType_CxZ0 = new A.FullType(B.Type_PaymentEntity_Usy, B.List_empty10, false); B.Type_GroupEntity_CJE = A.typeLiteral("GroupEntity"); B.FullType_Iiu = new A.FullType(B.Type_GroupEntity_CJE, B.List_empty10, false); B.List_i7B = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Iiu]), type$.JSArray_legacy_FullType); B.FullType_CxZ = new A.FullType(B.Type_BuiltMap_qd4, B.List_i7B, false); B.Type_UserTwoFactorData_wwi = A.typeLiteral("UserTwoFactorData"); B.FullType_CyS = new A.FullType(B.Type_UserTwoFactorData_wwi, B.List_empty10, false); B.Type_AppSidebarMode_ZeT = A.typeLiteral("AppSidebarMode"); B.FullType_D72 = new A.FullType(B.Type_AppSidebarMode_ZeT, B.List_empty10, false); B.Type_ProductUIState_luG = A.typeLiteral("ProductUIState"); B.FullType_DDR = new A.FullType(B.Type_ProductUIState_luG, B.List_empty10, false); B.Type_AuthState_Eo2 = A.typeLiteral("AuthState"); B.FullType_DFh = new A.FullType(B.Type_AuthState_Eo2, B.List_empty10, false); B.Type_LanguageEntity_eDt = A.typeLiteral("LanguageEntity"); B.FullType_DZ5 = new A.FullType(B.Type_LanguageEntity_eDt, B.List_empty10, false); B.Type_WebhookState_6v8 = A.typeLiteral("WebhookState"); B.FullType_EAC = new A.FullType(B.Type_WebhookState_6v8, B.List_empty10, false); B.List_vRf = A._setArrayType(makeConstList([B.FullType_uzh]), type$.JSArray_legacy_FullType); B.FullType_EBZ = new A.FullType(B.Type_BuiltList_iTR, B.List_vRf, false); B.Type_ProjectUIState_osT = A.typeLiteral("ProjectUIState"); B.FullType_EOF = new A.FullType(B.Type_ProjectUIState_osT, B.List_empty10, false); B.List_fRy = A._setArrayType(makeConstList([B.FullType_Iiu]), type$.JSArray_legacy_FullType); B.FullType_EOZ = new A.FullType(B.Type_BuiltList_iTR, B.List_fRy, false); B.Type_RecurringInvoiceState_qX6 = A.typeLiteral("RecurringInvoiceState"); B.FullType_Elr = new A.FullType(B.Type_RecurringInvoiceState_qX6, B.List_empty10, false); B.List_ecN = A._setArrayType(makeConstList([B.FullType_Art]), type$.JSArray_legacy_FullType); B.FullType_GBo = new A.FullType(B.Type_BuiltList_iTR, B.List_ecN, false); B.Type_VendorContactEntity_2Vk = A.typeLiteral("VendorContactEntity"); B.FullType_HVD = new A.FullType(B.Type_VendorContactEntity_2Vk, B.List_empty10, false); B.Type_ProductState_jr5 = A.typeLiteral("ProductState"); B.FullType_HZ2 = new A.FullType(B.Type_ProductState_jr5, B.List_empty10, false); B.List_uCs = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_M6L]), type$.JSArray_legacy_FullType); B.FullType_HZS = new A.FullType(B.Type_BuiltMap_qd4, B.List_uCs, false); B.Type_TaxRateEntity_uQj = A.typeLiteral("TaxRateEntity"); B.FullType_ML3 = new A.FullType(B.Type_TaxRateEntity_uQj, B.List_empty10, false); B.List_fs3 = A._setArrayType(makeConstList([B.FullType_ML3]), type$.JSArray_legacy_FullType); B.FullType_IIj = new A.FullType(B.Type_BuiltList_iTR, B.List_fs3, false); B.Type_TemplateEntity_Mm0 = A.typeLiteral("TemplateEntity"); B.FullType_AKW = new A.FullType(B.Type_TemplateEntity_Mm0, B.List_empty10, false); B.List_0bo = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_AKW]), type$.JSArray_legacy_FullType); B.FullType_IWk = new A.FullType(B.Type_BuiltMap_qd4, B.List_0bo, false); B.Type_EntityStatus_gc6 = A.typeLiteral("EntityStatus"); B.FullType_7N7 = new A.FullType(B.Type_EntityStatus_gc6, B.List_empty10, false); B.List_muE = A._setArrayType(makeConstList([B.FullType_7N7]), type$.JSArray_legacy_FullType); B.FullType_Icb = new A.FullType(B.Type_BuiltList_iTR, B.List_muE, false); B.Type_ListUIState_46y = A.typeLiteral("ListUIState"); B.FullType_Iqz = new A.FullType(B.Type_ListUIState_46y, B.List_empty10, false); B.Type_SettingsEntity_46y = A.typeLiteral("SettingsEntity"); B.FullType_Iqz0 = new A.FullType(B.Type_SettingsEntity_46y, B.List_empty10, false); B.Type_InvoiceItemEntity_23h = A.typeLiteral("InvoiceItemEntity"); B.FullType_lqU0 = new A.FullType(B.Type_InvoiceItemEntity_23h, B.List_empty10, false); B.List_YYx = A._setArrayType(makeConstList([B.FullType_lqU0]), type$.JSArray_legacy_FullType); B.FullType_JhS = new A.FullType(B.Type_BuiltList_iTR, B.List_YYx, false); B.Type_EntityState_NQk = A.typeLiteral("EntityState"); B.FullType_LCa = new A.FullType(B.Type_EntityState_NQk, B.List_empty10, false); B.List_fnD = A._setArrayType(makeConstList([B.FullType_LCa]), type$.JSArray_legacy_FullType); B.FullType_JmU = new A.FullType(B.Type_BuiltList_iTR, B.List_fnD, false); B.Type_ProjectEntity_mZ3 = A.typeLiteral("ProjectEntity"); B.FullType_vbG = new A.FullType(B.Type_ProjectEntity_mZ3, B.List_empty10, false); B.List_6Fb = A._setArrayType(makeConstList([B.FullType_vbG]), type$.JSArray_legacy_FullType); B.FullType_KEc = new A.FullType(B.Type_BuiltList_iTR, B.List_6Fb, false); B.Type_PaymentTermState_gkc = A.typeLiteral("PaymentTermState"); B.FullType_KIj = new A.FullType(B.Type_PaymentTermState_gkc, B.List_empty10, false); B.List_SGa = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_h8g]), type$.JSArray_legacy_FullType); B.FullType_LNO = new A.FullType(B.Type_BuiltMap_qd4, B.List_SGa, false); B.Type_ClientState_QAb = A.typeLiteral("ClientState"); B.FullType_MIo = new A.FullType(B.Type_ClientState_QAb, B.List_empty10, false); B.Type_TaxRateUIState_QAb = A.typeLiteral("TaxRateUIState"); B.FullType_MIo0 = new A.FullType(B.Type_TaxRateUIState_QAb, B.List_empty10, false); B.Type_double_K1J = A.typeLiteral("double"); B.FullType_MME = new A.FullType(B.Type_double_K1J, B.List_empty10, false); B.List_TBb = A._setArrayType(makeConstList([B.FullType_HVD]), type$.JSArray_legacy_FullType); B.FullType_MO9 = new A.FullType(B.Type_BuiltList_iTR, B.List_TBb, false); B.Type_StaticDataEntity_7Re = A.typeLiteral("StaticDataEntity"); B.FullType_Met = new A.FullType(B.Type_StaticDataEntity_7Re, B.List_empty10, false); B.Type_bool_lhE = A.typeLiteral("bool"); B.FullType_MtR = new A.FullType(B.Type_bool_lhE, B.List_empty10, false); B.List_int = A._setArrayType(makeConstList([B.FullType_uRN0]), type$.JSArray_legacy_FullType); B.FullType_N80 = new A.FullType(B.Type_BuiltList_iTR, B.List_int, false); B.Type_SubscriptionEntity_Wl2 = A.typeLiteral("SubscriptionEntity"); B.FullType_VCV = new A.FullType(B.Type_SubscriptionEntity_Wl2, B.List_empty10, false); B.List_0 = A._setArrayType(makeConstList([B.FullType_VCV]), type$.JSArray_legacy_FullType); B.FullType_NIe = new A.FullType(B.Type_BuiltList_iTR, B.List_0, false); B.Type_ReportsUIState_YKi = A.typeLiteral("ReportsUIState"); B.FullType_NPy = new A.FullType(B.Type_ReportsUIState_YKi, B.List_empty10, false); B.Type_SubscriptionUIState_jf1 = A.typeLiteral("SubscriptionUIState"); B.FullType_NT2 = new A.FullType(B.Type_SubscriptionUIState_jf1, B.List_empty10, false); B.Type_TimezoneEntity_fPO = A.typeLiteral("TimezoneEntity"); B.FullType_bTj = new A.FullType(B.Type_TimezoneEntity_fPO, B.List_empty10, false); B.List_MIe = A._setArrayType(makeConstList([B.FullType_bTj]), type$.JSArray_legacy_FullType); B.FullType_NYu = new A.FullType(B.Type_BuiltList_iTR, B.List_MIe, false); B.Type_ReportSettingsEntity_piR = A.typeLiteral("ReportSettingsEntity"); B.FullType_Zyt = new A.FullType(B.Type_ReportSettingsEntity_piR, B.List_empty10, false); B.List_6lH = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Zyt]), type$.JSArray_legacy_FullType); B.FullType_Nhy = new A.FullType(B.Type_BuiltMap_qd4, B.List_6lH, false); B.List_scn = A._setArrayType(makeConstList([B.FullType_CxZ0]), type$.JSArray_legacy_FullType); B.FullType_ORM = new A.FullType(B.Type_BuiltList_iTR, B.List_scn, false); B.Type_BuiltSetMultimap_9Fi = A.typeLiteral("BuiltSetMultimap<@,@>"); B.FullType_Ofx = new A.FullType(B.Type_BuiltSetMultimap_9Fi, B.List_a1A, false); B.Type_VendorEntity_Fh9 = A.typeLiteral("VendorEntity"); B.FullType_efs = new A.FullType(B.Type_VendorEntity_Fh9, B.List_empty10, false); B.List_neu = A._setArrayType(makeConstList([B.FullType_efs]), type$.JSArray_legacy_FullType); B.FullType_Pss = new A.FullType(B.Type_BuiltList_iTR, B.List_neu, false); B.List_gsm = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_iL9]), type$.JSArray_legacy_FullType); B.FullType_QKO = new A.FullType(B.Type_BuiltMap_qd4, B.List_gsm, false); B.Type_DesignState_jZd = A.typeLiteral("DesignState"); B.FullType_QKT = new A.FullType(B.Type_DesignState_jZd, B.List_empty10, false); B.Type_ActivityEntity_bvx = A.typeLiteral("ActivityEntity"); B.FullType_U4K = new A.FullType(B.Type_ActivityEntity_bvx, B.List_empty10, false); B.List_gQW = A._setArrayType(makeConstList([B.FullType_U4K]), type$.JSArray_legacy_FullType); B.FullType_QWw = new A.FullType(B.Type_BuiltList_iTR, B.List_gQW, false); B.Type_EntityType_6qb = A.typeLiteral("EntityType"); B.FullType_qBb = new A.FullType(B.Type_EntityType_6qb, B.List_empty10, false); B.List_2bG = A._setArrayType(makeConstList([B.FullType_qBb, B.FullType_MtR]), type$.JSArray_legacy_FullType); B.FullType_QqY = new A.FullType(B.Type_BuiltMap_qd4, B.List_2bG, false); B.Type_InvoiceScheduleEntity_26b = A.typeLiteral("InvoiceScheduleEntity"); B.FullType_M7M = new A.FullType(B.Type_InvoiceScheduleEntity_26b, B.List_empty10, false); B.List_OXJ = A._setArrayType(makeConstList([B.FullType_M7M]), type$.JSArray_legacy_FullType); B.FullType_RDC = new A.FullType(B.Type_BuiltList_iTR, B.List_OXJ, false); B.Type_GroupState_QS8 = A.typeLiteral("GroupState"); B.FullType_SNv = new A.FullType(B.Type_GroupState_QS8, B.List_empty10, false); B.Type_StaticState_AgZ = A.typeLiteral("StaticState"); B.FullType_SQp0 = new A.FullType(B.Type_StaticState_AgZ, B.List_empty10, false); B.Type_TaskState_AgZ = A.typeLiteral("TaskState"); B.FullType_SQp = new A.FullType(B.Type_TaskState_AgZ, B.List_empty10, false); B.Type_PaymentableEntity_e3c = A.typeLiteral("PaymentableEntity"); B.FullType_NH6 = new A.FullType(B.Type_PaymentableEntity_e3c, B.List_empty10, false); B.List_0jy = A._setArrayType(makeConstList([B.FullType_NH6]), type$.JSArray_legacy_FullType); B.FullType_U06 = new A.FullType(B.Type_BuiltList_iTR, B.List_0jy, false); B.Type_UserCompanyState_8aB = A.typeLiteral("UserCompanyState"); B.FullType_MQk = new A.FullType(B.Type_UserCompanyState_8aB, B.List_empty10, false); B.List_9Sf = A._setArrayType(makeConstList([B.FullType_MQk]), type$.JSArray_legacy_FullType); B.FullType_UH2 = new A.FullType(B.Type_BuiltList_iTR, B.List_9Sf, false); B.List_IoD = A._setArrayType(makeConstList([B.FullType_4QF0]), type$.JSArray_legacy_FullType); B.FullType_UWS = new A.FullType(B.Type_BuiltList_iTR, B.List_IoD, false); B.Type_TaskStatusUIState_6VO = A.typeLiteral("TaskStatusUIState"); B.FullType_Ufa = new A.FullType(B.Type_TaskStatusUIState_6VO, B.List_empty10, false); B.Type_TaskStatusEntity_wAl = A.typeLiteral("TaskStatusEntity"); B.FullType_ef4 = new A.FullType(B.Type_TaskStatusEntity_wAl, B.List_empty10, false); B.List_7z6 = A._setArrayType(makeConstList([B.FullType_ef4]), type$.JSArray_legacy_FullType); B.FullType_WVg = new A.FullType(B.Type_BuiltList_iTR, B.List_7z6, false); B.Type_HistoryRecord_ato = A.typeLiteral("HistoryRecord"); B.FullType_4eO = new A.FullType(B.Type_HistoryRecord_ato, B.List_empty10, false); B.List_UEQ = A._setArrayType(makeConstList([B.FullType_4eO]), type$.JSArray_legacy_FullType); B.FullType_WXJ = new A.FullType(B.Type_BuiltList_iTR, B.List_UEQ, false); B.Type_ExpenseCategoryUIState_ESz = A.typeLiteral("ExpenseCategoryUIState"); B.FullType_Xjb = new A.FullType(B.Type_ExpenseCategoryUIState_ESz, B.List_empty10, false); B.List_gkc0 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_VCV]), type$.JSArray_legacy_FullType); B.FullType_YGD = new A.FullType(B.Type_BuiltMap_qd4, B.List_gkc0, false); B.List_wEo = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_DZ5]), type$.JSArray_legacy_FullType); B.FullType_YiR = new A.FullType(B.Type_BuiltMap_qd4, B.List_wEo, false); B.Type_UserSettingsEntity_ES6 = A.typeLiteral("UserSettingsEntity"); B.FullType_Ymm = new A.FullType(B.Type_UserSettingsEntity_ES6, B.List_empty10, false); B.Type_ImportRequestMapping_WUU = A.typeLiteral("ImportRequestMapping"); B.FullType_xwA = new A.FullType(B.Type_ImportRequestMapping_WUU, B.List_empty10, false); B.List_dGI = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_xwA]), type$.JSArray_legacy_FullType); B.FullType_Yup = new A.FullType(B.Type_BuiltMap_qd4, B.List_dGI, false); B.Type_PurchaseOrderUIState_Ume = A.typeLiteral("PurchaseOrderUIState"); B.FullType_a5W = new A.FullType(B.Type_PurchaseOrderUIState_Ume, B.List_empty10, false); B.Type_CompanyEntity_Gbn = A.typeLiteral("CompanyEntity"); B.FullType_a9P = new A.FullType(B.Type_CompanyEntity_Gbn, B.List_empty10, false); B.Type_ExpenseScheduleEntity_QWG = A.typeLiteral("ExpenseScheduleEntity"); B.FullType_yzu = new A.FullType(B.Type_ExpenseScheduleEntity_QWG, B.List_empty10, false); B.List_NS7 = A._setArrayType(makeConstList([B.FullType_yzu]), type$.JSArray_legacy_FullType); B.FullType_aXU = new A.FullType(B.Type_BuiltList_iTR, B.List_NS7, false); B.Type_InvoiceHistoryEntity_1R3 = A.typeLiteral("InvoiceHistoryEntity"); B.FullType_bLp = new A.FullType(B.Type_InvoiceHistoryEntity_1R3, B.List_empty10, false); B.Type_BaseEntity_E1L = A.typeLiteral("BaseEntity"); B.FullType_i7r = new A.FullType(B.Type_BaseEntity_E1L, B.List_empty10, false); B.List_mPk = A._setArrayType(makeConstList([B.FullType_i7r]), type$.JSArray_legacy_FullType); B.FullType_bQV = new A.FullType(B.Type_BuiltList_iTR, B.List_mPk, false); B.Type_2fc = A.typeLiteral("PreImportResponseEntityDetails"); B.FullType_ORf = new A.FullType(B.Type_2fc, B.List_empty10, false); B.List_EKj = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_ORf]), type$.JSArray_legacy_FullType); B.FullType_blF = new A.FullType(B.Type_BuiltMap_qd4, B.List_EKj, false); B.Type_DesignUIState_IkK = A.typeLiteral("DesignUIState"); B.FullType_cE9 = new A.FullType(B.Type_DesignUIState_IkK, B.List_empty10, false); B.Type_ProjectState_OLY = A.typeLiteral("ProjectState"); B.FullType_cEX = new A.FullType(B.Type_ProjectState_OLY, B.List_empty10, false); B.Type_InvoiceStatusEntity_mqK = A.typeLiteral("InvoiceStatusEntity"); B.FullType_ES1 = new A.FullType(B.Type_InvoiceStatusEntity_mqK, B.List_empty10, false); B.List_0ju = A._setArrayType(makeConstList([B.FullType_ES1]), type$.JSArray_legacy_FullType); B.FullType_cL3 = new A.FullType(B.Type_BuiltList_iTR, B.List_0ju, false); B.Type_PaymentTermUIState_2No = A.typeLiteral("PaymentTermUIState"); B.FullType_cg9 = new A.FullType(B.Type_PaymentTermUIState_2No, B.List_empty10, false); B.Type_ClientUIState_ekJ = A.typeLiteral("ClientUIState"); B.FullType_cys = new A.FullType(B.Type_ClientUIState_ekJ, B.List_empty10, false); B.Type_UserState_WZn = A.typeLiteral("UserState"); B.FullType_d4x = new A.FullType(B.Type_UserState_WZn, B.List_empty10, false); B.Type_TaxRateState_axY = A.typeLiteral("TaxRateState"); B.FullType_dIX = new A.FullType(B.Type_TaxRateState_axY, B.List_empty10, false); B.Type_WebhookConfigurationEntity_WRw = A.typeLiteral("WebhookConfigurationEntity"); B.FullType_dct = new A.FullType(B.Type_WebhookConfigurationEntity_WRw, B.List_empty10, false); B.Type_GatewayTokenMetaEntity_AuK = A.typeLiteral("GatewayTokenMetaEntity"); B.FullType_e10 = new A.FullType(B.Type_GatewayTokenMetaEntity_AuK, B.List_empty10, false); B.List_weg = A._setArrayType(makeConstList([B.FullType_oyU]), type$.JSArray_legacy_FullType); B.FullType_e7r = new A.FullType(B.Type_BuiltList_iTR, B.List_weg, false); B.Type_SettingsUIState_kvD = A.typeLiteral("SettingsUIState"); B.FullType_eFJ = new A.FullType(B.Type_SettingsUIState_kvD, B.List_empty10, false); B.FullType_eLJ = new A.FullType(B.Type_BuiltList_iTR, B.List_yym, false); B.Type_PrefStateSortField_Ekc = A.typeLiteral("PrefStateSortField"); B.FullType_00 = new A.FullType(B.Type_PrefStateSortField_Ekc, B.List_empty10, false); B.List_nD0 = A._setArrayType(makeConstList([B.FullType_qBb, B.FullType_00]), type$.JSArray_legacy_FullType); B.FullType_fL6 = new A.FullType(B.Type_BuiltMap_qd4, B.List_nD0, false); B.Type_InvoiceEntity_UcM = A.typeLiteral("InvoiceEntity"); B.FullType_fXI = new A.FullType(B.Type_InvoiceEntity_UcM, B.List_empty10, false); B.Type_RecurringExpenseUIState_TTS = A.typeLiteral("RecurringExpenseUIState"); B.FullType_fs3 = new A.FullType(B.Type_RecurringExpenseUIState_TTS, B.List_empty10, false); B.Type_RecurringInvoiceUIState_Sof = A.typeLiteral("RecurringInvoiceUIState"); B.FullType_gA4 = new A.FullType(B.Type_RecurringInvoiceUIState_Sof, B.List_empty10, false); B.Type_CompanyGatewayState_ckm = A.typeLiteral("CompanyGatewayState"); B.FullType_gGD = new A.FullType(B.Type_CompanyGatewayState_ckm, B.List_empty10, false); B.Type_DatetimeFormatEntity_EyI = A.typeLiteral("DatetimeFormatEntity"); B.FullType_kqZ = new A.FullType(B.Type_DatetimeFormatEntity_EyI, B.List_empty10, false); B.List_Ht6 = A._setArrayType(makeConstList([B.FullType_kqZ]), type$.JSArray_legacy_FullType); B.FullType_gsm = new A.FullType(B.Type_BuiltList_iTR, B.List_Ht6, false); B.Type_ExpenseUIState_wKu = A.typeLiteral("ExpenseUIState"); B.FullType_ivT = new A.FullType(B.Type_ExpenseUIState_wKu, B.List_empty10, false); B.Type_PurchaseOrderState_Y5a = A.typeLiteral("PurchaseOrderState"); B.FullType_kGC = new A.FullType(B.Type_PurchaseOrderState_Y5a, B.List_empty10, false); B.List_TdU = A._setArrayType(makeConstList([B.FullType_qBb]), type$.JSArray_legacy_FullType); B.FullType_kSI = new A.FullType(B.Type_BuiltList_iTR, B.List_TdU, false); B.Type_CreditUIState_pyp = A.typeLiteral("CreditUIState"); B.FullType_kiO = new A.FullType(B.Type_CreditUIState_pyp, B.List_empty10, false); B.Type_InvitationEntity_qtf = A.typeLiteral("InvitationEntity"); B.FullType_69t = new A.FullType(B.Type_InvitationEntity_qtf, B.List_empty10, false); B.List_PLv = A._setArrayType(makeConstList([B.FullType_69t]), type$.JSArray_legacy_FullType); B.FullType_koo = new A.FullType(B.Type_BuiltList_iTR, B.List_PLv, false); B.List_ww80 = A._setArrayType(makeConstList([B.FullType_i9j]), type$.JSArray_legacy_FullType); B.FullType_kr30 = new A.FullType(B.Type_BuiltList_iTR, B.List_ww80, false); B.List_ww81 = A._setArrayType(makeConstList([B.FullType_C0V]), type$.JSArray_legacy_FullType); B.FullType_kr3 = new A.FullType(B.Type_BuiltList_iTR, B.List_ww81, false); B.Type_PaymentTermEntity_EHU = A.typeLiteral("PaymentTermEntity"); B.FullType_y87 = new A.FullType(B.Type_PaymentTermEntity_EHU, B.List_empty10, false); B.List_IJC = A._setArrayType(makeConstList([B.FullType_y87]), type$.JSArray_legacy_FullType); B.FullType_kvD = new A.FullType(B.Type_BuiltList_iTR, B.List_IJC, false); B.List_yzJ = A._setArrayType(makeConstList([B.FullType_8h5]), type$.JSArray_legacy_FullType); B.FullType_l2n = new A.FullType(B.Type_BuiltList_iTR, B.List_yzJ, false); B.Type_CreditState_23h = A.typeLiteral("CreditState"); B.FullType_lqU = new A.FullType(B.Type_CreditState_23h, B.List_empty10, false); B.List_44F = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_CxZ0]), type$.JSArray_legacy_FullType); B.FullType_mC7 = new A.FullType(B.Type_BuiltMap_qd4, B.List_44F, false); B.List_00 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_8h5]), type$.JSArray_legacy_FullType); B.FullType_mFp = new A.FullType(B.Type_BuiltMap_qd4, B.List_00, false); B.List_S9b = A._setArrayType(makeConstList([B.FullType_G05]), type$.JSArray_legacy_FullType); B.FullType_mJb = new A.FullType(B.Type_BuiltList_iTR, B.List_S9b, false); B.List_Xy5 = A._setArrayType(makeConstList([B.FullType_Azp]), type$.JSArray_legacy_FullType); B.FullType_mKc = new A.FullType(B.Type_BuiltList_iTR, B.List_Xy5, false); B.List_x2x = A._setArrayType(makeConstList([B.FullType_qBb, B.FullType_6m4]), type$.JSArray_legacy_FullType); B.FullType_mVA = new A.FullType(B.Type_BuiltMap_qd4, B.List_x2x, false); B.Type_InvoiceState_YnY = A.typeLiteral("InvoiceState"); B.FullType_mXg = new A.FullType(B.Type_InvoiceState_YnY, B.List_empty10, false); B.List_w61 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_6m4]), type$.JSArray_legacy_FullType); B.FullType_mZn = new A.FullType(B.Type_BuiltMap_qd4, B.List_w61, false); B.List_fDt = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_fXI]), type$.JSArray_legacy_FullType); B.FullType_n67 = new A.FullType(B.Type_BuiltMap_qd4, B.List_fDt, false); B.Type_RecurringExpenseState_o7m = A.typeLiteral("RecurringExpenseState"); B.FullType_nrV = new A.FullType(B.Type_RecurringExpenseState_o7m, B.List_empty10, false); B.FullType_null_List_empty_false = new A.FullType(null, B.List_empty10, false); B.List_8aB = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_ML3]), type$.JSArray_legacy_FullType); B.FullType_o2l = new A.FullType(B.Type_BuiltMap_qd4, B.List_8aB, false); B.Type_FeesAndLimitsSettings_wgw = A.typeLiteral("FeesAndLimitsSettings"); B.FullType_A4t = new A.FullType(B.Type_FeesAndLimitsSettings_wgw, B.List_empty10, false); B.List_Cny = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_A4t]), type$.JSArray_legacy_FullType); B.FullType_oCX = new A.FullType(B.Type_BuiltMap_qd4, B.List_Cny, false); B.Type_DateRangeComparison_wco = A.typeLiteral("DateRangeComparison"); B.FullType_oEc = new A.FullType(B.Type_DateRangeComparison_wco, B.List_empty10, false); B.Type_SystemLogEntity_eL6 = A.typeLiteral("SystemLogEntity"); B.FullType_IFE = new A.FullType(B.Type_SystemLogEntity_eL6, B.List_empty10, false); B.List_ivT = A._setArrayType(makeConstList([B.FullType_IFE]), type$.JSArray_legacy_FullType); B.FullType_oGx = new A.FullType(B.Type_BuiltList_iTR, B.List_ivT, false); B.Type_TokenUIState_bDN = A.typeLiteral("TokenUIState"); B.FullType_oeJ = new A.FullType(B.Type_TokenUIState_bDN, B.List_empty10, false); B.Type_TokenState_EOw = A.typeLiteral("TokenState"); B.FullType_ouN = new A.FullType(B.Type_TokenState_EOw, B.List_empty10, false); B.Type_SizeEntity_ROq = A.typeLiteral("SizeEntity"); B.FullType_paV = new A.FullType(B.Type_SizeEntity_ROq, B.List_empty10, false); B.List_VAd = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_paV]), type$.JSArray_legacy_FullType); B.FullType_pUI = new A.FullType(B.Type_BuiltMap_qd4, B.List_VAd, false); B.Type_RegistrationFieldEntity_k2a = A.typeLiteral("RegistrationFieldEntity"); B.FullType_mdN = new A.FullType(B.Type_RegistrationFieldEntity_k2a, B.List_empty10, false); B.List_cg9 = A._setArrayType(makeConstList([B.FullType_mdN]), type$.JSArray_legacy_FullType); B.FullType_pjG = new A.FullType(B.Type_BuiltList_iTR, B.List_cg9, false); B.Type_PrefState_ePg = A.typeLiteral("PrefState"); B.FullType_qBb0 = new A.FullType(B.Type_PrefState_ePg, B.List_empty10, false); B.List_08H = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_vbG]), type$.JSArray_legacy_FullType); B.FullType_qFt = new A.FullType(B.Type_BuiltMap_qd4, B.List_08H, false); B.List_gLw = A._setArrayType(makeConstList([B.FullType_6m4]), type$.JSArray_legacy_FullType); B.FullType_qwt = new A.FullType(B.Type_BuiltList_iTR, B.List_gLw, false); B.List_0yb = A._setArrayType(makeConstList([B.FullType_DZ5]), type$.JSArray_legacy_FullType); B.FullType_r6h = new A.FullType(B.Type_BuiltList_iTR, B.List_0yb, false); B.List_lC7 = A._setArrayType(makeConstList([B.FullType_gg9]), type$.JSArray_legacy_FullType); B.FullType_rQK = new A.FullType(B.Type_BuiltList_iTR, B.List_lC7, false); B.List_OzE = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_bTj]), type$.JSArray_legacy_FullType); B.FullType_sYl = new A.FullType(B.Type_BuiltMap_qd4, B.List_OzE, false); B.List_ouN = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_efs]), type$.JSArray_legacy_FullType); B.FullType_sav = new A.FullType(B.Type_BuiltMap_qd4, B.List_ouN, false); B.Type_PaymentState_ChD = A.typeLiteral("PaymentState"); B.FullType_sgl = new A.FullType(B.Type_PaymentState_ChD, B.List_empty10, false); B.Type_GatewayOptionsEntity_Ucj = A.typeLiteral("GatewayOptionsEntity"); B.FullType_Au4 = new A.FullType(B.Type_GatewayOptionsEntity_Ucj, B.List_empty10, false); B.List_iPu = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Au4]), type$.JSArray_legacy_FullType); B.FullType_sm9 = new A.FullType(B.Type_BuiltMap_qd4, B.List_iPu, false); B.Type_EmailTemplate_GAI = A.typeLiteral("EmailTemplate"); B.FullType_t81 = new A.FullType(B.Type_EmailTemplate_GAI, B.List_empty10, false); B.Type_HealthCheckPHPResponse_kOG = A.typeLiteral("HealthCheckPHPResponse"); B.FullType_uRN = new A.FullType(B.Type_HealthCheckPHPResponse_kOG, B.List_empty10, false); B.Type_DashboardUIState_4YB = A.typeLiteral("DashboardUIState"); B.FullType_wEo = new A.FullType(B.Type_DashboardUIState_4YB, B.List_empty10, false); B.List_y1Y = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_W34]), type$.JSArray_legacy_FullType); B.FullType_wHc = new A.FullType(B.Type_BuiltMap_qd4, B.List_y1Y, false); B.FullType_wIv = new A.FullType(B.Type_BuiltMap_qd4, B.List_a1A, false); B.List_a99 = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_y87]), type$.JSArray_legacy_FullType); B.FullType_weg = new A.FullType(B.Type_BuiltMap_qd4, B.List_a99, false); B.Type_AccountEntity_46S = A.typeLiteral("AccountEntity"); B.FullType_wg3 = new A.FullType(B.Type_AccountEntity_46S, B.List_empty10, false); B.List_skt = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_Art]), type$.JSArray_legacy_FullType); B.FullType_woD = new A.FullType(B.Type_BuiltMap_qd4, B.List_skt, false); B.List_VWp = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_4QF0]), type$.JSArray_legacy_FullType); B.FullType_woc0 = new A.FullType(B.Type_BuiltMap_qd4, B.List_VWp, false); B.List_W3L = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_ef4]), type$.JSArray_legacy_FullType); B.FullType_woc = new A.FullType(B.Type_BuiltMap_qd4, B.List_W3L, false); B.List_kHV = A._setArrayType(makeConstList([B.FullType_paV]), type$.JSArray_legacy_FullType); B.FullType_wsa = new A.FullType(B.Type_BuiltList_iTR, B.List_kHV, false); B.Type_DocumentUIState_CyS = A.typeLiteral("DocumentUIState"); B.FullType_wwi = new A.FullType(B.Type_DocumentUIState_CyS, B.List_empty10, false); B.Type_VendorState_Db0 = A.typeLiteral("VendorState"); B.FullType_xI0 = new A.FullType(B.Type_VendorState_Db0, B.List_empty10, false); B.List_kSI = A._setArrayType(makeConstList([B.FullType_fXI]), type$.JSArray_legacy_FullType); B.FullType_xS5 = new A.FullType(B.Type_BuiltList_iTR, B.List_kSI, false); B.Type_CompanyPrefState_Y50 = A.typeLiteral("CompanyPrefState"); B.FullType_mes = new A.FullType(B.Type_CompanyPrefState_Y50, B.List_empty10, false); B.List_b9P = A._setArrayType(makeConstList([B.FullType_h8g, B.FullType_mes]), type$.JSArray_legacy_FullType); B.FullType_ym9 = new A.FullType(B.Type_BuiltMap_qd4, B.List_b9P, false); B.Type_QuoteState_aJC = A.typeLiteral("QuoteState"); B.FullType_yqa = new A.FullType(B.Type_QuoteState_aJC, B.List_empty10, false); B.GestureDirection_0 = new A.GestureDirection(0, "opening"); B.GestureDirection_1 = new A.GestureDirection(1, "closing"); B.GestureDisposition_0 = new A.GestureDisposition(0, "accepted"); B.GestureDisposition_1 = new A.GestureDisposition(1, "rejected"); B.GestureMode_0 = new A.GestureMode(0, "pointerEvents"); B.GestureMode_1 = new A.GestureMode(1, "browserGestures"); B.GestureRecognizerState_0 = new A.GestureRecognizerState(0, "ready"); B.GestureRecognizerState_1 = new A.GestureRecognizerState(1, "possible"); B.GestureRecognizerState_2 = new A.GestureRecognizerState(2, "defunct"); B.GestureType_0 = new A.GestureType(0, "onLongPress"); B.GestureType_1 = new A.GestureType(1, "onTap"); B.GestureType_3 = new A.GestureType(3, "onDrag"); B.GrowthDirection_0 = new A.GrowthDirection(0, "forward"); B.GrowthDirection_1 = new A.GrowthDirection(1, "reverse"); B.HandleType_0 = new A.HandleType(0, "collapsed"); B.HandleType_1 = new A.HandleType(1, "upstream"); B.HandleType_2 = new A.HandleType(2, "downstream"); B.HeroFlightDirection_0 = new A.HeroFlightDirection(0, "push"); B.HeroFlightDirection_1 = new A.HeroFlightDirection(1, "pop"); B.HitTestBehavior_0 = new A.HitTestBehavior(0, "deferToChild"); B.HitTestBehavior_1 = new A.HitTestBehavior(1, "opaque"); B.HitTestBehavior_2 = new A.HitTestBehavior(2, "translucent"); B.HourFormat_0 = new A.HourFormat(0, "HH"); B.HourFormat_1 = new A.HourFormat(1, "H"); B.HourFormat_2 = new A.HourFormat(2, "h"); B.HtmlEscapeMode_attribute_true = new A.HtmlEscapeMode("attribute", true); B.HtmlEscape_HtmlEscapeMode_attribute_true = new A.HtmlEscape(B.HtmlEscapeMode_attribute_true); B.HtmlEscapeMode_element_false = new A.HtmlEscapeMode("element", false); B.HtmlEscape_HtmlEscapeMode_element_false = new A.HtmlEscape(B.HtmlEscapeMode_element_false); B.IconAlignment_0 = new A.IconAlignment(0, "center"); B.IconData_57402_MaterialIcons_null_false = new A.IconData(57402, "MaterialIcons", null, false); B.IconData_57411_MaterialIcons_null_false = new A.IconData(57411, "MaterialIcons", null, false); B.IconData_57415_MaterialIcons_null_false = new A.IconData(57415, "MaterialIcons", null, false); B.IconData_57423_MaterialIcons_null_false = new A.IconData(57423, "MaterialIcons", null, false); B.IconData_57424_MaterialIcons_null_false = new A.IconData(57424, "MaterialIcons", null, false); B.IconData_57441_MaterialIcons_null_false = new A.IconData(57441, "MaterialIcons", null, false); B.IconData_57477_MaterialIcons_null_false = new A.IconData(57477, "MaterialIcons", null, false); B.IconData_57489_MaterialIcons_null_false = new A.IconData(57489, "MaterialIcons", null, false); B.IconData_57490_MaterialIcons_null_true = new A.IconData(57490, "MaterialIcons", null, true); B.IconData_57491_MaterialIcons_null_true = new A.IconData(57491, "MaterialIcons", null, true); B.IconData_57494_MaterialIcons_null_false = new A.IconData(57494, "MaterialIcons", null, false); B.IconData_57495_MaterialIcons_null_false = new A.IconData(57495, "MaterialIcons", null, false); B.IconData_57496_MaterialIcons_null_false = new A.IconData(57496, "MaterialIcons", null, false); B.IconData_57497_MaterialIcons_null_false = new A.IconData(57497, "MaterialIcons", null, false); B.IconData_57502_MaterialIcons_null_true = new A.IconData(57502, "MaterialIcons", null, true); B.IconData_57627_MaterialIcons_null_false = new A.IconData(57627, "MaterialIcons", null, false); B.IconData_57648_MaterialIcons_null_false = new A.IconData(57648, "MaterialIcons", null, false); B.IconData_57686_MaterialIcons_null_false = new A.IconData(57686, "MaterialIcons", null, false); B.IconData_57687_MaterialIcons_null_false = new A.IconData(57687, "MaterialIcons", null, false); B.IconData_57689_MaterialIcons_null_false = new A.IconData(57689, "MaterialIcons", null, false); B.IconData_57690_MaterialIcons_null_false = new A.IconData(57690, "MaterialIcons", null, false); B.IconData_57694_MaterialIcons_null_true = new A.IconData(57694, "MaterialIcons", null, true); B.IconData_57695_MaterialIcons_null_true = new A.IconData(57695, "MaterialIcons", null, true); B.IconData_57698_MaterialIcons_null_true = new A.IconData(57698, "MaterialIcons", null, true); B.IconData_57704_MaterialIcons_null_false = new A.IconData(57704, "MaterialIcons", null, false); B.IconData_57706_MaterialIcons_null_false = new A.IconData(57706, "MaterialIcons", null, false); B.IconData_57712_MaterialIcons_null_false = new A.IconData(57712, "MaterialIcons", null, false); B.IconData_57713_MaterialIcons_null_false = new A.IconData(57713, "MaterialIcons", null, false); B.IconData_57714_MaterialIcons_null_false = new A.IconData(57714, "MaterialIcons", null, false); B.IconData_57717_MaterialIcons_null_false = new A.IconData(57717, "MaterialIcons", null, false); B.IconData_57724_MaterialIcons_null_false = new A.IconData(57724, "MaterialIcons", null, false); B.IconData_57743_MaterialIcons_null_false = new A.IconData(57743, "MaterialIcons", null, false); B.IconData_57744_MaterialIcons_null_false = new A.IconData(57744, "MaterialIcons", null, false); B.IconData_57750_MaterialIcons_null_false = new A.IconData(57750, "MaterialIcons", null, false); B.IconData_57759_MaterialIcons_null_false = new A.IconData(57759, "MaterialIcons", null, false); B.IconData_57782_MaterialIcons_null_false = new A.IconData(57782, "MaterialIcons", null, false); B.IconData_57785_MaterialIcons_null_false = new A.IconData(57785, "MaterialIcons", null, false); B.IconData_57786_MaterialIcons_null_false = new A.IconData(57786, "MaterialIcons", null, false); B.IconData_57835_MaterialIcons_null_false = new A.IconData(57835, "MaterialIcons", null, false); B.IconData_57846_MaterialIcons_null_false = new A.IconData(57846, "MaterialIcons", null, false); B.IconData_57857_MaterialIcons_null_false = new A.IconData(57857, "MaterialIcons", null, false); B.IconData_57862_MaterialIcons_null_false = new A.IconData(57862, "MaterialIcons", null, false); B.IconData_57898_MaterialIcons_null_false = new A.IconData(57898, "MaterialIcons", null, false); B.IconData_57911_MaterialIcons_null_false = new A.IconData(57911, "MaterialIcons", null, false); B.IconData_57912_MaterialIcons_null_false = new A.IconData(57912, "MaterialIcons", null, false); B.IconData_57967_MaterialIcons_null_false = new A.IconData(57967, "MaterialIcons", null, false); B.IconData_57984_MaterialIcons_null_false = new A.IconData(57984, "MaterialIcons", null, false); B.IconData_58051_MaterialIcons_null_false = new A.IconData(58051, "MaterialIcons", null, false); B.IconData_58123_MaterialIcons_null_true = new A.IconData(58123, "MaterialIcons", null, true); B.IconData_58132_MaterialIcons_null_false = new A.IconData(58132, "MaterialIcons", null, false); B.IconData_58168_MaterialIcons_null_false = new A.IconData(58168, "MaterialIcons", null, false); B.IconData_58173_MaterialIcons_null_false = new A.IconData(58173, "MaterialIcons", null, false); B.IconData_58178_MaterialIcons_null_false = new A.IconData(58178, "MaterialIcons", null, false); B.IconData_58185_MaterialIcons_null_false = new A.IconData(58185, "MaterialIcons", null, false); B.IconData_58193_MaterialIcons_null_false = new A.IconData(58193, "MaterialIcons", null, false); B.IconData_58214_MaterialIcons_null_false = new A.IconData(58214, "MaterialIcons", null, false); B.IconData_58236_MaterialIcons_null_false = new A.IconData(58236, "MaterialIcons", null, false); B.IconData_58240_MaterialIcons_null_false = new A.IconData(58240, "MaterialIcons", null, false); B.IconData_58280_MaterialIcons_null_false = new A.IconData(58280, "MaterialIcons", null, false); B.IconData_58286_MaterialIcons_null_false = new A.IconData(58286, "MaterialIcons", null, false); B.IconData_58291_MaterialIcons_null_false = new A.IconData(58291, "MaterialIcons", null, false); B.IconData_58293_MaterialIcons_null_false = new A.IconData(58293, "MaterialIcons", null, false); B.IconData_58294_MaterialIcons_null_false = new A.IconData(58294, "MaterialIcons", null, false); B.IconData_58297_MaterialIcons_null_false = new A.IconData(58297, "MaterialIcons", null, false); B.IconData_58298_MaterialIcons_null_false = new A.IconData(58298, "MaterialIcons", null, false); B.IconData_58307_MaterialIcons_null_false = new A.IconData(58307, "MaterialIcons", null, false); B.IconData_58312_MaterialIcons_null_false = new A.IconData(58312, "MaterialIcons", null, false); B.IconData_58332_MaterialIcons_null_false = new A.IconData(58332, "MaterialIcons", null, false); B.IconData_58370_MaterialIcons_null_false = new A.IconData(58370, "MaterialIcons", null, false); B.IconData_58372_MaterialIcons_null_false = new A.IconData(58372, "MaterialIcons", null, false); B.IconData_58396_MaterialIcons_null_true = new A.IconData(58396, "MaterialIcons", null, true); B.IconData_58397_MaterialIcons_null_true = new A.IconData(58397, "MaterialIcons", null, true); B.IconData_58446_MaterialIcons_null_false = new A.IconData(58446, "MaterialIcons", null, false); B.IconData_58458_MaterialIcons_null_false = new A.IconData(58458, "MaterialIcons", null, false); B.IconData_58460_MaterialIcons_null_true = new A.IconData(58460, "MaterialIcons", null, true); B.IconData_58497_MaterialIcons_null_false = new A.IconData(58497, "MaterialIcons", null, false); B.IconData_58502_MaterialIcons_null_false = new A.IconData(58502, "MaterialIcons", null, false); B.IconData_58513_MaterialIcons_null_false = new A.IconData(58513, "MaterialIcons", null, false); B.IconData_58530_MaterialIcons_null_false = new A.IconData(58530, "MaterialIcons", null, false); B.IconData_58531_MaterialIcons_null_false = new A.IconData(58531, "MaterialIcons", null, false); B.IconData_58560_MaterialIcons_null_false = new A.IconData(58560, "MaterialIcons", null, false); B.IconData_58567_MaterialIcons_null_false = new A.IconData(58567, "MaterialIcons", null, false); B.IconData_58571_MaterialIcons_null_false = new A.IconData(58571, "MaterialIcons", null, false); B.IconData_58602_MaterialIcons_null_false = new A.IconData(58602, "MaterialIcons", null, false); B.IconData_58608_MaterialIcons_null_false = new A.IconData(58608, "MaterialIcons", null, false); B.IconData_58644_MaterialIcons_null_false = new A.IconData(58644, "MaterialIcons", null, false); B.IconData_58648_MaterialIcons_null_false = new A.IconData(58648, "MaterialIcons", null, false); B.IconData_58676_MaterialIcons_null_false = new A.IconData(58676, "MaterialIcons", null, false); B.IconData_58705_MaterialIcons_null_false = new A.IconData(58705, "MaterialIcons", null, false); B.IconData_58727_MaterialIcons_null_false = new A.IconData(58727, "MaterialIcons", null, false); B.IconData_58729_MaterialIcons_null_false = new A.IconData(58729, "MaterialIcons", null, false); B.IconData_58737_MaterialIcons_null_true = new A.IconData(58737, "MaterialIcons", null, true); B.IconData_58751_MaterialIcons_null_false = new A.IconData(58751, "MaterialIcons", null, false); B.IconData_58813_MaterialIcons_null_false = new A.IconData(58813, "MaterialIcons", null, false); B.IconData_58814_MaterialIcons_null_false = new A.IconData(58814, "MaterialIcons", null, false); B.IconData_58835_MaterialIcons_null_false = new A.IconData(58835, "MaterialIcons", null, false); B.IconData_58873_MaterialIcons_null_false = new A.IconData(58873, "MaterialIcons", null, false); B.IconData_58886_MaterialIcons_null_false = new A.IconData(58886, "MaterialIcons", null, false); B.IconData_58887_MaterialIcons_null_false = new A.IconData(58887, "MaterialIcons", null, false); B.IconData_58910_MaterialIcons_null_false = new A.IconData(58910, "MaterialIcons", null, false); B.IconData_58919_MaterialIcons_null_false = new A.IconData(58919, "MaterialIcons", null, false); B.IconData_58938_MaterialIcons_null_false = new A.IconData(58938, "MaterialIcons", null, false); B.IconData_58992_MaterialIcons_null_false = new A.IconData(58992, "MaterialIcons", null, false); B.IconData_59020_MaterialIcons_null_true = new A.IconData(59020, "MaterialIcons", null, true); B.IconData_59061_MaterialIcons_null_true = new A.IconData(59061, "MaterialIcons", null, true); B.IconData_59064_MaterialIcons_null_false = new A.IconData(59064, "MaterialIcons", null, false); B.IconData_59066_MaterialIcons_null_false = new A.IconData(59066, "MaterialIcons", null, false); B.IconData_59069_MaterialIcons_null_false = new A.IconData(59069, "MaterialIcons", null, false); B.IconData_59070_MaterialIcons_null_false = new A.IconData(59070, "MaterialIcons", null, false); B.IconData_59083_MaterialIcons_null_false = new A.IconData(59083, "MaterialIcons", null, false); B.IconData_61224_MaterialIcons_null_false = new A.IconData(61224, "MaterialIcons", null, false); B.IconData_62057_MaterialIcons_null_false = new A.IconData(62057, "MaterialIcons", null, false); B.IconData_984386_MaterialIcons_null_false = new A.IconData(984386, "MaterialIcons", null, false); B.IconData_984508_MaterialIcons_null_false = new A.IconData(984508, "MaterialIcons", null, false); B.IconThemeData_UfZ0 = new A.IconThemeData(B.Color_3707764736, null, null, null); B.IconThemeData_UfZ1 = new A.IconThemeData(B.Color_4278190080, null, null, null); B.IconThemeData_UfZ = new A.IconThemeData(B.Color_4278190080, 1, 24, null); B.IconThemeData_XJy = new A.IconThemeData(null, 0.54, null, null); B.IconThemeData_yrt = new A.IconThemeData(B.Color_4294967295, null, null, null); B.IconData_57926_MaterialIcons_null_false = new A.IconData(57926, "MaterialIcons", null, false); B.Icon_8Gl = new A.Icon(B.IconData_57926_MaterialIcons_null_false, null, null, null); B.IconData_58031_MaterialIcons_null_false = new A.IconData(58031, "MaterialIcons", null, false); B.Icon_8kG = new A.Icon(B.IconData_58031_MaterialIcons_null_false, null, null, null); B.IconData_57504_MaterialIcons_null_false = new A.IconData(57504, "MaterialIcons", null, false); B.Icon_CKg = new A.Icon(B.IconData_57504_MaterialIcons_null_false, 16, null, null); B.IconData_58244_MaterialIcons_null_true = new A.IconData(58244, "MaterialIcons", null, true); B.Icon_ES6 = new A.Icon(B.IconData_58244_MaterialIcons_null_true, null, null, null); B.IconData_58555_MaterialIcons_null_false = new A.IconData(58555, "MaterialIcons", null, false); B.Icon_Gv2 = new A.Icon(B.IconData_58555_MaterialIcons_null_false, null, null, null); B.Icon_IID = new A.Icon(B.IconData_58332_MaterialIcons_null_false, null, null, null); B.IconData_58556_MaterialIcons_null_false = new A.IconData(58556, "MaterialIcons", null, false); B.Icon_IID2 = new A.Icon(B.IconData_58556_MaterialIcons_null_false, null, null, null); B.Icon_IID3 = new A.Icon(B.IconData_58602_MaterialIcons_null_false, null, null, null); B.IconData_58897_MaterialIcons_null_false = new A.IconData(58897, "MaterialIcons", null, false); B.Icon_IID0 = new A.Icon(B.IconData_58897_MaterialIcons_null_false, null, null, null); B.IconData_59128_MaterialIcons_null_true = new A.IconData(59128, "MaterialIcons", null, true); B.Icon_IID1 = new A.Icon(B.IconData_59128_MaterialIcons_null_true, null, null, null); B.IconData_58143_MaterialIcons_null_false = new A.IconData(58143, "MaterialIcons", null, false); B.Icon_K4B = new A.Icon(B.IconData_58143_MaterialIcons_null_false, null, null, null); B.Icon_MC7 = new A.Icon(B.IconData_57496_MaterialIcons_null_false, null, null, null); B.IconData_57882_MaterialIcons_null_false = new A.IconData(57882, "MaterialIcons", null, false); B.Icon_NEt = new A.Icon(B.IconData_57882_MaterialIcons_null_false, null, null, null); B.Icon_O5U = new A.Icon(B.IconData_57706_MaterialIcons_null_false, null, null, null); B.IconData_58050_MaterialIcons_null_false = new A.IconData(58050, "MaterialIcons", null, false); B.Icon_Opy = new A.Icon(B.IconData_58050_MaterialIcons_null_false, null, null, null); B.Icon_OxR = new A.Icon(B.IconData_58727_MaterialIcons_null_false, null, null, null); B.IconData_58771_MaterialIcons_null_false = new A.IconData(58771, "MaterialIcons", null, false); B.Icon_OxR0 = new A.Icon(B.IconData_58771_MaterialIcons_null_false, null, null, null); B.Icon_Q06 = new A.Icon(B.IconData_58240_MaterialIcons_null_false, null, null, null); B.IconData_58044_MaterialIcons_null_false = new A.IconData(58044, "MaterialIcons", null, false); B.Icon_WPj = new A.Icon(B.IconData_58044_MaterialIcons_null_false, null, null, null); B.IconData_63632_MaterialIcons_null_false = new A.IconData(63632, "MaterialIcons", null, false); B.Icon_YoF = new A.Icon(B.IconData_63632_MaterialIcons_null_false, null, null, null); B.IconData_58984_MaterialIcons_null_false = new A.IconData(58984, "MaterialIcons", null, false); B.Icon_bbH = new A.Icon(B.IconData_58984_MaterialIcons_null_false, null, null, null); B.Icon_cKo = new A.Icon(B.IconData_57694_MaterialIcons_null_true, null, null, null); B.Icon_kXN = new A.Icon(B.IconData_57502_MaterialIcons_null_true, 14, B.Color_0, null); B.Icon_m5n = new A.Icon(B.IconData_57862_MaterialIcons_null_false, null, null, null); B.IconData_58038_MaterialIcons_null_false = new A.IconData(58038, "MaterialIcons", null, false); B.Icon_oqF = new A.Icon(B.IconData_58038_MaterialIcons_null_false, null, null, null); B.IconData_58201_MaterialIcons_null_false = new A.IconData(58201, "MaterialIcons", null, false); B.Icon_skt = new A.Icon(B.IconData_58201_MaterialIcons_null_false, null, null, null); B.IconData_57634_MaterialIcons_null_false = new A.IconData(57634, "MaterialIcons", null, false); B.Icon_vjf = new A.Icon(B.IconData_57634_MaterialIcons_null_false, null, null, null); B.Icon_wEo = new A.Icon(B.IconData_57695_MaterialIcons_null_true, null, null, null); B.Icon_yXb = new A.Icon(B.IconData_57415_MaterialIcons_null_false, null, B.Color_4294967295, null); B.ImageByteFormat_0 = new A.ImageByteFormat(0, "rawRgba"); B.ImageByteFormat_1 = new A.ImageByteFormat(1, "rawStraightRgba"); B.ImageCompressFormat_0 = new A.ImageCompressFormat(0, "jpg"); B.ImageRenderMethodForWeb_0 = new A.ImageRenderMethodForWeb(0, "HtmlImage"); B.ImageRenderMethodForWeb_1 = new A.ImageRenderMethodForWeb(1, "HttpGet"); B.ImageRepeat_0 = new A.ImageRepeat(0, "repeat"); B.ImageRepeat_1 = new A.ImageRepeat(1, "repeatX"); B.ImageRepeat_2 = new A.ImageRepeat(2, "repeatY"); B.ImageRepeat_3 = new A.ImageRepeat(3, "noRepeat"); B.ImageSource_0 = new A.ImageSource(0, "camera"); B.ImportType_csv = new A.ImportType("csv"); B.ImportType_freshbooks = new A.ImportType("freshbooks"); B.ImportType_invoice2go = new A.ImportType("invoice2go"); B.ImportType_invoicely = new A.ImportType("invoicely"); B.ImportType_json = new A.ImportType("json"); B.ImportType_waveaccounting = new A.ImportType("waveaccounting"); B.ImportType_zoho = new A.ImportType("zoho"); B.List_empty3 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.InlineSpanSemanticsInformation_o8k = new A.InlineSpanSemanticsInformation("\ufffc", null, null, true, true, B.List_empty3); B.InputDecoration_C4W = new A.InputDecoration(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, false, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, true, null, null, null); B._NoInputBorder_sqK = new A._NoInputBorder(B.BorderSide_0CF); B.InputDecoration_EtP = new A.InputDecoration(null, null, null, null, null, null, null, null, null, "enter url...", null, null, null, null, null, null, null, null, null, null, false, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, B._NoInputBorder_sqK, true, null, null, null); B.InsideJustification_0 = new A.InsideJustification(0, "topStart"); B.Int64_0_0_0 = new A.Int64(0, 0, 0); B.Cubic_iYc = new A.Cubic(0.1, 0, 0.45, 1); B.Interval_2ds = new A.Interval(0.7038888888888889, 1, B.Cubic_iYc); B.Interval_75R1 = new A.Interval(0, 0.1, B.C__Linear); B.Interval_75R2 = new A.Interval(0, 0.25, B.C__Linear); B.Interval_75R5 = new A.Interval(0, 0.3333333333333333, B.C__Linear); B.Interval_75R6 = new A.Interval(0, 0.6666666666666666, B.C__Linear); B.Interval_75R7 = new A.Interval(0.1, 0.33, B.C__Linear); B.Interval_75R = new A.Interval(0.125, 0.25, B.C__Linear); B.Interval_75R4 = new A.Interval(0.25, 0.5, B.C__Linear); B.Interval_75R0 = new A.Interval(0.6, 1, B.C__Linear); B.Interval_75R3 = new A.Interval(0.75, 1, B.C__Linear); B.Cubic_7pl = new A.Cubic(0.2, 0, 0.8, 1); B.Interval_8Wd = new A.Interval(0, 0.4166666666666667, B.Cubic_7pl); B.Interval_E4y = new A.Interval(0.5, 1, B.Cubic_JUR); B.Interval_EeP = new A.Interval(0.2075, 0.4175, B.C__Linear); B.Interval_IqE = new A.Interval(0.4, 1, B.Cubic_ifx); B.Interval_oqF1 = new A.Interval(0, 0.5, B.Cubic_ifx); B.Interval_oqF2 = new A.Interval(0, 0.6, B.Cubic_ifx); B.Interval_oqF = new A.Interval(0.25, 1, B.Cubic_ifx); B.Interval_oqF0 = new A.Interval(0.5, 1, B.Cubic_ifx); B.Cubic_WGA = new A.Cubic(0, 0, 0.65, 1); B.Interval_q3Z = new A.Interval(0.5555555555555556, 0.8705555555555555, B.Cubic_WGA); B.Interval_ulv = new A.Interval(0.0825, 0.2075, B.C__Linear); B.Cubic_XVM = new A.Cubic(0.4, 0, 1, 1); B.Interval_unQ = new A.Interval(0.185, 0.6016666666666667, B.Cubic_XVM); B.IntrinsicColumnWidth_1 = new A.IntrinsicColumnWidth(1); B.IntrinsicColumnWidth_null = new A.IntrinsicColumnWidth(null); B.InvoiceItemReportFields_0 = new A.InvoiceItemReportFields(0, "productKey"); B.InvoiceItemReportFields_1 = new A.InvoiceItemReportFields(1, "description"); B.InvoiceItemReportFields_10 = new A.InvoiceItemReportFields(10, "custom3"); B.InvoiceItemReportFields_11 = new A.InvoiceItemReportFields(11, "custom4"); B.InvoiceItemReportFields_12 = new A.InvoiceItemReportFields(12, "invoiceNumber"); B.InvoiceItemReportFields_13 = new A.InvoiceItemReportFields(13, "invoiceDate"); B.InvoiceItemReportFields_14 = new A.InvoiceItemReportFields(14, "client"); B.InvoiceItemReportFields_15 = new A.InvoiceItemReportFields(15, "dueDate"); B.InvoiceItemReportFields_16 = new A.InvoiceItemReportFields(16, "hasTaxes"); B.InvoiceItemReportFields_17 = new A.InvoiceItemReportFields(17, "taxRates"); B.InvoiceItemReportFields_18 = new A.InvoiceItemReportFields(18, "taxAmount"); B.InvoiceItemReportFields_19 = new A.InvoiceItemReportFields(19, "netTotal"); B.InvoiceItemReportFields_2 = new A.InvoiceItemReportFields(2, "price"); B.InvoiceItemReportFields_20 = new A.InvoiceItemReportFields(20, "currency"); B.InvoiceItemReportFields_3 = new A.InvoiceItemReportFields(3, "cost"); B.InvoiceItemReportFields_4 = new A.InvoiceItemReportFields(4, "quantity"); B.InvoiceItemReportFields_5 = new A.InvoiceItemReportFields(5, "profit"); B.InvoiceItemReportFields_6 = new A.InvoiceItemReportFields(6, "total"); B.InvoiceItemReportFields_7 = new A.InvoiceItemReportFields(7, "discount"); B.InvoiceItemReportFields_8 = new A.InvoiceItemReportFields(8, "custom1"); B.InvoiceItemReportFields_9 = new A.InvoiceItemReportFields(9, "custom2"); B.InvoiceReportFields_0 = new A.InvoiceReportFields(0, "id"); B.InvoiceReportFields_1 = new A.InvoiceReportFields(1, "amount"); B.InvoiceReportFields_10 = new A.InvoiceReportFields(10, "client_vat_number"); B.InvoiceReportFields_11 = new A.InvoiceReportFields(11, "client_city"); B.InvoiceReportFields_12 = new A.InvoiceReportFields(12, "client_postal_code"); B.InvoiceReportFields_13 = new A.InvoiceReportFields(13, "client_country"); B.InvoiceReportFields_14 = new A.InvoiceReportFields(14, "client_shipping_address1"); B.InvoiceReportFields_15 = new A.InvoiceReportFields(15, "client_shipping_address2"); B.InvoiceReportFields_16 = new A.InvoiceReportFields(16, "client_state"); B.InvoiceReportFields_17 = new A.InvoiceReportFields(17, "client_shipping_city"); B.InvoiceReportFields_18 = new A.InvoiceReportFields(18, "client_shipping_state"); B.InvoiceReportFields_19 = new A.InvoiceReportFields(19, "client_shipping_postal_code"); B.InvoiceReportFields_2 = new A.InvoiceReportFields(2, "balance"); B.InvoiceReportFields_20 = new A.InvoiceReportFields(20, "client_shipping_country"); B.InvoiceReportFields_21 = new A.InvoiceReportFields(21, "status"); B.InvoiceReportFields_22 = new A.InvoiceReportFields(22, "number"); B.InvoiceReportFields_23 = new A.InvoiceReportFields(23, "discount"); B.InvoiceReportFields_24 = new A.InvoiceReportFields(24, "po_number"); B.InvoiceReportFields_25 = new A.InvoiceReportFields(25, "date"); B.InvoiceReportFields_26 = new A.InvoiceReportFields(26, "due_date"); B.InvoiceReportFields_27 = new A.InvoiceReportFields(27, "age"); B.InvoiceReportFields_28 = new A.InvoiceReportFields(28, "partial"); B.InvoiceReportFields_29 = new A.InvoiceReportFields(29, "partial_due_date"); B.InvoiceReportFields_3 = new A.InvoiceReportFields(3, "converted_amount"); B.InvoiceReportFields_30 = new A.InvoiceReportFields(30, "auto_bill"); B.InvoiceReportFields_31 = new A.InvoiceReportFields(31, "invoice1"); B.InvoiceReportFields_32 = new A.InvoiceReportFields(32, "invoice2"); B.InvoiceReportFields_33 = new A.InvoiceReportFields(33, "invoice3"); B.InvoiceReportFields_34 = new A.InvoiceReportFields(34, "invoice4"); B.InvoiceReportFields_35 = new A.InvoiceReportFields(35, "has_expenses"); B.InvoiceReportFields_36 = new A.InvoiceReportFields(36, "has_tasks"); B.InvoiceReportFields_37 = new A.InvoiceReportFields(37, "surcharge1"); B.InvoiceReportFields_38 = new A.InvoiceReportFields(38, "surcharge2"); B.InvoiceReportFields_39 = new A.InvoiceReportFields(39, "surcharge3"); B.InvoiceReportFields_4 = new A.InvoiceReportFields(4, "converted_balance"); B.InvoiceReportFields_40 = new A.InvoiceReportFields(40, "surcharge4"); B.InvoiceReportFields_41 = new A.InvoiceReportFields(41, "updated_at"); B.InvoiceReportFields_42 = new A.InvoiceReportFields(42, "archived_at"); B.InvoiceReportFields_43 = new A.InvoiceReportFields(43, "is_deleted"); B.InvoiceReportFields_44 = new A.InvoiceReportFields(44, "tax_amount"); B.InvoiceReportFields_45 = new A.InvoiceReportFields(45, "net_amount"); B.InvoiceReportFields_46 = new A.InvoiceReportFields(46, "net_balance"); B.InvoiceReportFields_47 = new A.InvoiceReportFields(47, "reminder1_sent"); B.InvoiceReportFields_48 = new A.InvoiceReportFields(48, "reminder2_sent"); B.InvoiceReportFields_49 = new A.InvoiceReportFields(49, "reminder3_sent"); B.InvoiceReportFields_5 = new A.InvoiceReportFields(5, "client"); B.InvoiceReportFields_50 = new A.InvoiceReportFields(50, "reminder_last_sent"); B.InvoiceReportFields_51 = new A.InvoiceReportFields(51, "exchange_rate"); B.InvoiceReportFields_52 = new A.InvoiceReportFields(52, "public_notes"); B.InvoiceReportFields_53 = new A.InvoiceReportFields(53, "private_notes"); B.InvoiceReportFields_54 = new A.InvoiceReportFields(54, "client_website"); B.InvoiceReportFields_55 = new A.InvoiceReportFields(55, "tax_rate1"); B.InvoiceReportFields_56 = new A.InvoiceReportFields(56, "tax_rate2"); B.InvoiceReportFields_57 = new A.InvoiceReportFields(57, "tax_rate3"); B.InvoiceReportFields_58 = new A.InvoiceReportFields(58, "tax_name1"); B.InvoiceReportFields_59 = new A.InvoiceReportFields(59, "tax_name2"); B.InvoiceReportFields_6 = new A.InvoiceReportFields(6, "client_number"); B.InvoiceReportFields_60 = new A.InvoiceReportFields(60, "tax_name3"); B.InvoiceReportFields_61 = new A.InvoiceReportFields(61, "currency"); B.InvoiceReportFields_62 = new A.InvoiceReportFields(62, "is_viewed"); B.InvoiceReportFields_63 = new A.InvoiceReportFields(63, "assigned_to"); B.InvoiceReportFields_64 = new A.InvoiceReportFields(64, "created_by"); B.InvoiceReportFields_65 = new A.InvoiceReportFields(65, "project"); B.InvoiceReportFields_66 = new A.InvoiceReportFields(66, "vendor"); B.InvoiceReportFields_67 = new A.InvoiceReportFields(67, "is_paid"); B.InvoiceReportFields_68 = new A.InvoiceReportFields(68, "client_phone"); B.InvoiceReportFields_69 = new A.InvoiceReportFields(69, "contact_email"); B.InvoiceReportFields_7 = new A.InvoiceReportFields(7, "client_balance"); B.InvoiceReportFields_70 = new A.InvoiceReportFields(70, "contact_phone"); B.InvoiceReportFields_71 = new A.InvoiceReportFields(71, "contact_name"); B.InvoiceReportFields_72 = new A.InvoiceReportFields(72, "age_group_0"); B.InvoiceReportFields_73 = new A.InvoiceReportFields(73, "age_group_30"); B.InvoiceReportFields_74 = new A.InvoiceReportFields(74, "age_group_60"); B.InvoiceReportFields_75 = new A.InvoiceReportFields(75, "age_group_90"); B.InvoiceReportFields_76 = new A.InvoiceReportFields(76, "age_group_120"); B.InvoiceReportFields_8 = new A.InvoiceReportFields(8, "client_address1"); B.InvoiceReportFields_9 = new A.InvoiceReportFields(9, "client_address2"); B.JsonDecoder_null = new A.JsonDecoder(null); B.JsonEncoder_null_null = new A.JsonEncoder(null, null); B.KeyDataTransitMode_0 = new A.KeyDataTransitMode(0, "rawKeyData"); B.KeyDataTransitMode_1 = new A.KeyDataTransitMode(1, "keyDataThenRawKeyData"); B.KeyEventType_0 = new A.KeyEventType(0, "down"); B.KeyData_cgD = new A.KeyData(B.Duration_0, B.KeyEventType_0, 0, 0, null, false); B.KeyEventResult_0 = new A.KeyEventResult(0, "handled"); B.KeyEventResult_1 = new A.KeyEventResult(1, "ignored"); B.KeyEventResult_2 = new A.KeyEventResult(2, "skipRemainingHandlers"); B.KeyEventType_1 = new A.KeyEventType(1, "up"); B.KeyEventType_2 = new A.KeyEventType(2, "repeat"); B.LogicalKeyboardKey_4294967556 = new A.LogicalKeyboardKey(4294967556); B.KeyboardLockMode_LogicalKeyboardKey_4294967556 = new A.KeyboardLockMode(B.LogicalKeyboardKey_4294967556); B.LogicalKeyboardKey_4294967562 = new A.LogicalKeyboardKey(4294967562); B.KeyboardLockMode_LogicalKeyboardKey_4294967562 = new A.KeyboardLockMode(B.LogicalKeyboardKey_4294967562); B.LogicalKeyboardKey_4294967564 = new A.LogicalKeyboardKey(4294967564); B.KeyboardLockMode_LogicalKeyboardKey_4294967564 = new A.KeyboardLockMode(B.LogicalKeyboardKey_4294967564); B.KeyboardSide_0 = new A.KeyboardSide(0, "any"); B.KeyboardSide_3 = new A.KeyboardSide(3, "all"); B.Latin1Decoder_false_255 = new A.Latin1Decoder(false, 255); B.Latin1Encoder_255 = new A.Latin1Encoder(255); B.LayoutPosition_0 = new A.LayoutPosition(0, "Bottom"); B.LayoutPosition_1 = new A.LayoutPosition(1, "FullBottom"); B.LayoutPosition_2 = new A.LayoutPosition(2, "Top"); B.LayoutPosition_3 = new A.LayoutPosition(3, "FullTop"); B.LayoutPosition_4 = new A.LayoutPosition(4, "Left"); B.LayoutPosition_5 = new A.LayoutPosition(5, "FullLeft"); B.LayoutPosition_6 = new A.LayoutPosition(6, "Right"); B.LayoutPosition_7 = new A.LayoutPosition(7, "FullRight"); B.LayoutPosition_8 = new A.LayoutPosition(8, "DrawArea"); B.LegendDefaultMeasure_0 = new A.LegendDefaultMeasure(0, "none"); B.LegendDefaultMeasure_1 = new A.LegendDefaultMeasure(1, "sum"); B.LegendDefaultMeasure_2 = new A.LegendDefaultMeasure(2, "average"); B.LegendDefaultMeasure_3 = new A.LegendDefaultMeasure(3, "firstValue"); B.LegendDefaultMeasure_4 = new A.LegendDefaultMeasure(4, "lastValue"); B.LegendTapHandling_1 = new A.LegendTapHandling(1, "hide"); B.Level_FINER_400 = new A.Level("FINER", 400); B.Level_FINEST_300 = new A.Level("FINEST", 300); B.Level_FINE_500 = new A.Level("FINE", 500); B.Level_INFO_800 = new A.Level("INFO", 800); B.Level_SHOUT_1200 = new A.Level("SHOUT", 1200); B.Level_WARNING_900 = new A.Level("WARNING", 900); B.LineBreakType_1 = new A.LineBreakType(1, "prohibited"); B.LineBreakResult_vhn = new A.LineBreakResult(0, 0, 0, B.LineBreakType_1); B.LineBreakType_0 = new A.LineBreakType(0, "opportunity"); B.LineBreakType_2 = new A.LineBreakType(2, "mandatory"); B.LineBreakType_3 = new A.LineBreakType(3, "endOfText"); B.LineCharProperty_0 = new A.LineCharProperty(0, "CM"); B.LineCharProperty_1 = new A.LineCharProperty(1, "BA"); B.LineCharProperty_10 = new A.LineCharProperty(10, "PO"); B.LineCharProperty_11 = new A.LineCharProperty(11, "OP"); B.LineCharProperty_12 = new A.LineCharProperty(12, "CP"); B.LineCharProperty_13 = new A.LineCharProperty(13, "IS"); B.LineCharProperty_14 = new A.LineCharProperty(14, "HY"); B.LineCharProperty_15 = new A.LineCharProperty(15, "SY"); B.LineCharProperty_16 = new A.LineCharProperty(16, "NU"); B.LineCharProperty_17 = new A.LineCharProperty(17, "CL"); B.LineCharProperty_18 = new A.LineCharProperty(18, "GL"); B.LineCharProperty_19 = new A.LineCharProperty(19, "BB"); B.LineCharProperty_2 = new A.LineCharProperty(2, "LF"); B.LineCharProperty_20 = new A.LineCharProperty(20, "HL"); B.LineCharProperty_21 = new A.LineCharProperty(21, "JL"); B.LineCharProperty_22 = new A.LineCharProperty(22, "JV"); B.LineCharProperty_23 = new A.LineCharProperty(23, "JT"); B.LineCharProperty_24 = new A.LineCharProperty(24, "NS"); B.LineCharProperty_25 = new A.LineCharProperty(25, "ZW"); B.LineCharProperty_26 = new A.LineCharProperty(26, "ZWJ"); B.LineCharProperty_27 = new A.LineCharProperty(27, "B2"); B.LineCharProperty_28 = new A.LineCharProperty(28, "IN"); B.LineCharProperty_29 = new A.LineCharProperty(29, "WJ"); B.LineCharProperty_3 = new A.LineCharProperty(3, "BK"); B.LineCharProperty_30 = new A.LineCharProperty(30, "ID"); B.LineCharProperty_31 = new A.LineCharProperty(31, "EB"); B.LineCharProperty_32 = new A.LineCharProperty(32, "H2"); B.LineCharProperty_33 = new A.LineCharProperty(33, "H3"); B.LineCharProperty_34 = new A.LineCharProperty(34, "CB"); B.LineCharProperty_35 = new A.LineCharProperty(35, "RI"); B.LineCharProperty_36 = new A.LineCharProperty(36, "EM"); B.LineCharProperty_4 = new A.LineCharProperty(4, "CR"); B.LineCharProperty_5 = new A.LineCharProperty(5, "SP"); B.LineCharProperty_6 = new A.LineCharProperty(6, "EX"); B.LineCharProperty_7 = new A.LineCharProperty(7, "QU"); B.LineCharProperty_8 = new A.LineCharProperty(8, "AL"); B.LineCharProperty_9 = new A.LineCharProperty(9, "PR"); B.LinePointHighlighterFollowLineType_0 = new A.LinePointHighlighterFollowLineType(0, "nearest"); B.LinePointHighlighterFollowLineType_1 = new A.LinePointHighlighterFollowLineType(1, "none"); B.LinePointHighlighterFollowLineType_2 = new A.LinePointHighlighterFollowLineType(2, "all"); B.LinkifyOptions_false = new A.LinkifyOptions(false); B.LinkifyOptions_true = new A.LinkifyOptions(true); B.ListItemType_0 = new A.ListItemType(0, "ordered"); B.ListItemType_1 = new A.ListItemType(1, "unordered"); B.ListTileControlAffinity_0 = new A.ListTileControlAffinity(0, "leading"); B.ListTileControlAffinity_2 = new A.ListTileControlAffinity(2, "platform"); B.ListTileStyle_0 = new A.ListTileStyle(0, "list"); B.ListTileStyle_1 = new A.ListTileStyle(1, "drawer"); B.ListTileThemeData_muk = new A.ListTileThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.Type__$ExpenseCategoryState_kyj = A.typeLiteral("_$ExpenseCategoryState"); B.List_01 = A._setArrayType(makeConstList([B.Type_ExpenseCategoryState_58F, B.Type__$ExpenseCategoryState_kyj]), type$.JSArray_legacy_Type); B.Type__$ProjectEntity_kW8 = A.typeLiteral("_$ProjectEntity"); B.List_02 = A._setArrayType(makeConstList([B.Type_ProjectEntity_mZ3, B.Type__$ProjectEntity_kW8]), type$.JSArray_legacy_Type); B.Type_DesignListResponse_skj = A.typeLiteral("DesignListResponse"); B.Type__$DesignListResponse_mBb = A.typeLiteral("_$DesignListResponse"); B.List_0O2 = A._setArrayType(makeConstList([B.Type_DesignListResponse_skj, B.Type__$DesignListResponse_mBb]), type$.JSArray_legacy_Type); B.List_0_1 = A._setArrayType(makeConstList([0, 1]), type$.JSArray_legacy_double); B.Type_IndustryListResponse_kmC = A.typeLiteral("IndustryListResponse"); B.Type__$IndustryListResponse_gyf = A.typeLiteral("_$IndustryListResponse"); B.List_0kz = A._setArrayType(makeConstList([B.Type_IndustryListResponse_kmC, B.Type__$IndustryListResponse_gyf]), type$.JSArray_legacy_Type); B.Type_InvoiceListResponse_a9P = A.typeLiteral("InvoiceListResponse"); B.Type__$InvoiceListResponse_8IM = A.typeLiteral("_$InvoiceListResponse"); B.List_0qh = A._setArrayType(makeConstList([B.Type_InvoiceListResponse_a9P, B.Type__$InvoiceListResponse_8IM]), type$.JSArray_legacy_Type); B.Type__$CurrencyEntity_ANW = A.typeLiteral("_$CurrencyEntity"); B.List_0sW = A._setArrayType(makeConstList([B.Type_CurrencyEntity_nZd, B.Type__$CurrencyEntity_ANW]), type$.JSArray_legacy_Type); B.List_10_20_50_100 = A._setArrayType(makeConstList([10, 20, 50, 100]), type$.JSArray_legacy_int); B.List_13_10 = A._setArrayType(makeConstList([13, 10]), type$.JSArray_legacy_int); B.List_1_0_3_2 = A._setArrayType(makeConstList([1, 0, 3, 2]), type$.JSArray_legacy_int); B.Type_CompanyItemResponse_kPa = A.typeLiteral("CompanyItemResponse"); B.Type__$CompanyItemResponse_Flu = A.typeLiteral("_$CompanyItemResponse"); B.List_1ru = A._setArrayType(makeConstList([B.Type_CompanyItemResponse_kPa, B.Type__$CompanyItemResponse_Flu]), type$.JSArray_legacy_Type); B.List_200_202 = A._setArrayType(makeConstList([200, 202]), type$.JSArray_legacy_int); B.Type_ExpenseStatusEntity_0 = A.typeLiteral("ExpenseStatusEntity"); B.Type__$ExpenseStatusEntity_wMy = A.typeLiteral("_$ExpenseStatusEntity"); B.List_23h = A._setArrayType(makeConstList([B.Type_ExpenseStatusEntity_0, B.Type__$ExpenseStatusEntity_wMy]), type$.JSArray_legacy_Type); B.FontWeight_0 = new A.FontWeight(0); B.FontWeight_1 = new A.FontWeight(1); B.FontWeight_2 = new A.FontWeight(2); B.FontWeight_7 = new A.FontWeight(7); B.FontWeight_8 = new A.FontWeight(8); B.List_27p = A._setArrayType(makeConstList([B.FontWeight_0, B.FontWeight_1, B.FontWeight_2, B.FontWeight_3, B.FontWeight_4, B.FontWeight_5, B.FontWeight_6, B.FontWeight_7, B.FontWeight_8]), A.findType("JSArray")); B.List_2Bc = A._setArrayType(makeConstList([8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8]), type$.JSArray_legacy_int); B.Type_TaskItemResponse_CXi = A.typeLiteral("TaskItemResponse"); B.Type__$TaskItemResponse_8Jr = A.typeLiteral("_$TaskItemResponse"); B.List_2DL = A._setArrayType(makeConstList([B.Type_TaskItemResponse_CXi, B.Type__$TaskItemResponse_8Jr]), type$.JSArray_legacy_Type); B.Type__$SubscriptionEntity_G1q = A.typeLiteral("_$SubscriptionEntity"); B.List_2No = A._setArrayType(makeConstList([B.Type_SubscriptionEntity_Wl2, B.Type__$SubscriptionEntity_G1q]), type$.JSArray_legacy_Type); B.Type_CompanyGatewayListResponse_6aG = A.typeLiteral("CompanyGatewayListResponse"); B.Type__$CompanyGatewayListResponse_XJ7 = A.typeLiteral("_$CompanyGatewayListResponse"); B.List_2Vk2 = A._setArrayType(makeConstList([B.Type_CompanyGatewayListResponse_6aG, B.Type__$CompanyGatewayListResponse_XJ7]), type$.JSArray_legacy_Type); B.List_2Vk = A._setArrayType(makeConstList([0, 0, 32776, 33792, 1, 10240, 0, 0]), type$.JSArray_legacy_int); B.List_2Vk0 = A._setArrayType(makeConstList([1, 2, 5, 10, 50, 100, 500, 1000]), type$.JSArray_legacy_int); B.List_2Vk1 = A._setArrayType(makeConstList([137, 80, 78, 71, 13, 10, 26, 10]), type$.JSArray_legacy_int); B.C_ActivateIntent = new A.ActivateIntent(); B.ScrollIncrementType_1 = new A.ScrollIncrementType(1, "page"); B.ScrollIntent_KrF = new A.ScrollIntent(B.AxisDirection_2, B.ScrollIncrementType_1); B.List_2WE = A._setArrayType(makeConstList([B.C_ActivateIntent, B.ScrollIntent_KrF]), A.findType("JSArray")); B.Type__$ExpenseScheduleEntity_4uk = A.typeLiteral("_$ExpenseScheduleEntity"); B.List_2Z6 = A._setArrayType(makeConstList([B.Type_ExpenseScheduleEntity_QWG, B.Type__$ExpenseScheduleEntity_4uk]), type$.JSArray_legacy_Type); B.List_2Zi = A._setArrayType(makeConstList(["*::class", "*::dir", "*::draggable", "*::hidden", "*::id", "*::inert", "*::itemprop", "*::itemref", "*::itemscope", "*::lang", "*::spellcheck", "*::title", "*::translate", "A::accesskey", "A::coords", "A::hreflang", "A::name", "A::shape", "A::tabindex", "A::target", "A::type", "AREA::accesskey", "AREA::alt", "AREA::coords", "AREA::nohref", "AREA::shape", "AREA::tabindex", "AREA::target", "AUDIO::controls", "AUDIO::loop", "AUDIO::mediagroup", "AUDIO::muted", "AUDIO::preload", "BDO::dir", "BODY::alink", "BODY::bgcolor", "BODY::link", "BODY::text", "BODY::vlink", "BR::clear", "BUTTON::accesskey", "BUTTON::disabled", "BUTTON::name", "BUTTON::tabindex", "BUTTON::type", "BUTTON::value", "CANVAS::height", "CANVAS::width", "CAPTION::align", "COL::align", "COL::char", "COL::charoff", "COL::span", "COL::valign", "COL::width", "COLGROUP::align", "COLGROUP::char", "COLGROUP::charoff", "COLGROUP::span", "COLGROUP::valign", "COLGROUP::width", "COMMAND::checked", "COMMAND::command", "COMMAND::disabled", "COMMAND::label", "COMMAND::radiogroup", "COMMAND::type", "DATA::value", "DEL::datetime", "DETAILS::open", "DIR::compact", "DIV::align", "DL::compact", "FIELDSET::disabled", "FONT::color", "FONT::face", "FONT::size", "FORM::accept", "FORM::autocomplete", "FORM::enctype", "FORM::method", "FORM::name", "FORM::novalidate", "FORM::target", "FRAME::name", "H1::align", "H2::align", "H3::align", "H4::align", "H5::align", "H6::align", "HR::align", "HR::noshade", "HR::size", "HR::width", "HTML::version", "IFRAME::align", "IFRAME::frameborder", "IFRAME::height", "IFRAME::marginheight", "IFRAME::marginwidth", "IFRAME::width", "IMG::align", "IMG::alt", "IMG::border", "IMG::height", "IMG::hspace", "IMG::ismap", "IMG::name", "IMG::usemap", "IMG::vspace", "IMG::width", "INPUT::accept", "INPUT::accesskey", "INPUT::align", "INPUT::alt", "INPUT::autocomplete", "INPUT::autofocus", "INPUT::checked", "INPUT::disabled", "INPUT::inputmode", "INPUT::ismap", "INPUT::list", "INPUT::max", "INPUT::maxlength", "INPUT::min", "INPUT::multiple", "INPUT::name", "INPUT::placeholder", "INPUT::readonly", "INPUT::required", "INPUT::size", "INPUT::step", "INPUT::tabindex", "INPUT::type", "INPUT::usemap", "INPUT::value", "INS::datetime", "KEYGEN::disabled", "KEYGEN::keytype", "KEYGEN::name", "LABEL::accesskey", "LABEL::for", "LEGEND::accesskey", "LEGEND::align", "LI::type", "LI::value", "LINK::sizes", "MAP::name", "MENU::compact", "MENU::label", "MENU::type", "METER::high", "METER::low", "METER::max", "METER::min", "METER::value", "OBJECT::typemustmatch", "OL::compact", "OL::reversed", "OL::start", "OL::type", "OPTGROUP::disabled", "OPTGROUP::label", "OPTION::disabled", "OPTION::label", "OPTION::selected", "OPTION::value", "OUTPUT::for", "OUTPUT::name", "P::align", "PRE::width", "PROGRESS::max", "PROGRESS::min", "PROGRESS::value", "SELECT::autocomplete", "SELECT::disabled", "SELECT::multiple", "SELECT::name", "SELECT::required", "SELECT::size", "SELECT::tabindex", "SOURCE::type", "TABLE::align", "TABLE::bgcolor", "TABLE::border", "TABLE::cellpadding", "TABLE::cellspacing", "TABLE::frame", "TABLE::rules", "TABLE::summary", "TABLE::width", "TBODY::align", "TBODY::char", "TBODY::charoff", "TBODY::valign", "TD::abbr", "TD::align", "TD::axis", "TD::bgcolor", "TD::char", "TD::charoff", "TD::colspan", "TD::headers", "TD::height", "TD::nowrap", "TD::rowspan", "TD::scope", "TD::valign", "TD::width", "TEXTAREA::accesskey", "TEXTAREA::autocomplete", "TEXTAREA::cols", "TEXTAREA::disabled", "TEXTAREA::inputmode", "TEXTAREA::name", "TEXTAREA::placeholder", "TEXTAREA::readonly", "TEXTAREA::required", "TEXTAREA::rows", "TEXTAREA::tabindex", "TEXTAREA::wrap", "TFOOT::align", "TFOOT::char", "TFOOT::charoff", "TFOOT::valign", "TH::abbr", "TH::align", "TH::axis", "TH::bgcolor", "TH::char", "TH::charoff", "TH::colspan", "TH::headers", "TH::height", "TH::nowrap", "TH::rowspan", "TH::scope", "TH::valign", "TH::width", "THEAD::align", "THEAD::char", "THEAD::charoff", "THEAD::valign", "TR::align", "TR::bgcolor", "TR::char", "TR::charoff", "TR::valign", "TRACK::default", "TRACK::kind", "TRACK::label", "TRACK::srclang", "UL::compact", "UL::type", "VIDEO::controls", "VIDEO::height", "VIDEO::loop", "VIDEO::mediagroup", "VIDEO::muted", "VIDEO::preload", "VIDEO::width"]), type$.JSArray_legacy_String); B.Type_ExpenseListResponse_hHc = A.typeLiteral("ExpenseListResponse"); B.Type__$ExpenseListResponse_2nP = A.typeLiteral("_$ExpenseListResponse"); B.List_2nm = A._setArrayType(makeConstList([B.Type_ExpenseListResponse_hHc, B.Type__$ExpenseListResponse_2nP]), type$.JSArray_legacy_Type); B.Type__$CompanyGatewayEntity_qV6 = A.typeLiteral("_$CompanyGatewayEntity"); B.List_2uL = A._setArrayType(makeConstList([B.Type_CompanyGatewayEntity_Yu9, B.Type__$CompanyGatewayEntity_qV6]), type$.JSArray_legacy_Type); B.List_304 = A._setArrayType(makeConstList([304]), type$.JSArray_legacy_int); B.Type_DatetimeFormatItemResponse_ww8 = A.typeLiteral("DatetimeFormatItemResponse"); B.Type__$DatetimeFormatItemResponse_ohJ = A.typeLiteral("_$DatetimeFormatItemResponse"); B.List_3GN = A._setArrayType(makeConstList([B.Type_DatetimeFormatItemResponse_ww8, B.Type__$DatetimeFormatItemResponse_ohJ]), type$.JSArray_legacy_Type); B.Type__$GroupState_mmH = A.typeLiteral("_$GroupState"); B.List_3IR = A._setArrayType(makeConstList([B.Type_GroupState_QS8, B.Type__$GroupState_mmH]), type$.JSArray_legacy_Type); B.List_3US = A._setArrayType(makeConstList(["S", "M", "T", "W", "T", "F", "S"]), type$.JSArray_legacy_String); B.Pair_8Gl = new A.Pair("http://www.w3.org/1999/xhtml", "applet", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_EOZ = new A.Pair("http://www.w3.org/1999/xhtml", "caption", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_oWp = new A.Pair("http://www.w3.org/1999/xhtml", "html", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_QcL = new A.Pair("http://www.w3.org/1999/xhtml", "marquee", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_oyn = new A.Pair("http://www.w3.org/1999/xhtml", "object", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_2jN = new A.Pair("http://www.w3.org/1999/xhtml", "table", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_QE6 = new A.Pair("http://www.w3.org/1999/xhtml", "td", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_4Cz = new A.Pair("http://www.w3.org/1999/xhtml", "th", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_dSk = new A.Pair("http://www.w3.org/1998/Math/MathML", "mi", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_CCQ = new A.Pair("http://www.w3.org/1998/Math/MathML", "mo", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_jvJ = new A.Pair("http://www.w3.org/1998/Math/MathML", "mn", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_MDg = new A.Pair("http://www.w3.org/1998/Math/MathML", "ms", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_6iW = new A.Pair("http://www.w3.org/1998/Math/MathML", "mtext", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_gWk = new A.Pair("http://www.w3.org/1998/Math/MathML", "annotation-xml", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_SDM = new A.Pair("http://www.w3.org/2000/svg", "foreignObject", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ijl = new A.Pair("http://www.w3.org/2000/svg", "desc", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_27z = new A.Pair("http://www.w3.org/2000/svg", "title", type$.Pair_of_legacy_String_and_legacy_String); B.List_46y = A._setArrayType(makeConstList([B.Pair_8Gl, B.Pair_EOZ, B.Pair_oWp, B.Pair_QcL, B.Pair_oyn, B.Pair_2jN, B.Pair_QE6, B.Pair_4Cz, B.Pair_dSk, B.Pair_CCQ, B.Pair_jvJ, B.Pair_MDg, B.Pair_6iW, B.Pair_gWk, B.Pair_SDM, B.Pair_ijl, B.Pair_27z]), type$.JSArray_dynamic); B.Pair_mhU = new A.Pair("http://www.w3.org/1999/xhtml", "button", type$.Pair_of_legacy_String_and_legacy_String); B.List_4CA = A._setArrayType(makeConstList([B.Pair_mhU]), type$.JSArray_dynamic); B.ModifierKey_0 = new A.ModifierKey(0, "controlModifier"); B.ModifierKey_1 = new A.ModifierKey(1, "shiftModifier"); B.ModifierKey_2 = new A.ModifierKey(2, "altModifier"); B.ModifierKey_3 = new A.ModifierKey(3, "metaModifier"); B.ModifierKey_4 = new A.ModifierKey(4, "capsLockModifier"); B.ModifierKey_5 = new A.ModifierKey(5, "numLockModifier"); B.ModifierKey_6 = new A.ModifierKey(6, "scrollLockModifier"); B.ModifierKey_7 = new A.ModifierKey(7, "functionModifier"); B.ModifierKey_8 = new A.ModifierKey(8, "symbolModifier"); B.List_4LR = A._setArrayType(makeConstList([B.ModifierKey_0, B.ModifierKey_1, B.ModifierKey_2, B.ModifierKey_3, B.ModifierKey_4, B.ModifierKey_5, B.ModifierKey_6, B.ModifierKey_7, B.ModifierKey_8]), A.findType("JSArray")); B.Type__$TaskStatusEntity_1Wj = A.typeLiteral("_$TaskStatusEntity"); B.List_4MM = A._setArrayType(makeConstList([B.Type_TaskStatusEntity_wAl, B.Type__$TaskStatusEntity_1Wj]), type$.JSArray_legacy_Type); B.List_4Sq = A._setArrayType(makeConstList([B.ContactReportFields_0, B.ContactReportFields_1, B.ContactReportFields_2, B.ContactReportFields_3, B.ContactReportFields_4, B.ContactReportFields_5, B.ContactReportFields_6, B.ContactReportFields_7, B.ContactReportFields_8, B.ContactReportFields_9, B.ContactReportFields_10, B.ContactReportFields_11, B.ContactReportFields_12, B.ContactReportFields_13, B.ContactReportFields_14, B.ContactReportFields_15, B.ContactReportFields_16, B.ContactReportFields_17, B.ContactReportFields_18, B.ContactReportFields_19, B.ContactReportFields_20, B.ContactReportFields_21, B.ContactReportFields_22, B.ContactReportFields_23, B.ContactReportFields_24, B.ContactReportFields_25, B.ContactReportFields_26, B.ContactReportFields_27, B.ContactReportFields_28, B.ContactReportFields_29, B.ContactReportFields_30, B.ContactReportFields_31, B.ContactReportFields_32, B.ContactReportFields_33, B.ContactReportFields_34, B.ContactReportFields_35, B.ContactReportFields_36, B.ContactReportFields_37, B.ContactReportFields_38, B.ContactReportFields_39, B.ContactReportFields_40, B.ContactReportFields_41, B.ContactReportFields_42, B.ContactReportFields_43, B.ContactReportFields_44, B.ContactReportFields_45, B.ContactReportFields_46, B.ContactReportFields_47, B.ContactReportFields_48, B.ContactReportFields_49, B.ContactReportFields_50, B.ContactReportFields_51]), type$.JSArray_legacy_ContactReportFields); B.TargetPlatform_0 = new A.TargetPlatform(0, "android"); B.TargetPlatform_1 = new A.TargetPlatform(1, "fuchsia"); B.TargetPlatform_2 = new A.TargetPlatform(2, "iOS"); B.TargetPlatform_3 = new A.TargetPlatform(3, "linux"); B.TargetPlatform_4 = new A.TargetPlatform(4, "macOS"); B.TargetPlatform_5 = new A.TargetPlatform(5, "windows"); B.List_4fl = A._setArrayType(makeConstList([B.TargetPlatform_0, B.TargetPlatform_1, B.TargetPlatform_2, B.TargetPlatform_3, B.TargetPlatform_4, B.TargetPlatform_5]), A.findType("JSArray")); B.List_4md = A._setArrayType(makeConstList(["b", "big", "blockquote", "body", "br", "center", "code", "dd", "div", "dl", "dt", "em", "embed", "h1", "h2", "h3", "h4", "h5", "h6", "head", "hr", "i", "img", "li", "listing", "menu", "meta", "nobr", "ol", "p", "pre", "ruby", "s", "small", "span", "strike", "strong", "sub", "sup", "table", "tt", "u", "ul", "var"]), type$.JSArray_legacy_String); B.Type__$CompanyGatewayUIState_Vs0 = A.typeLiteral("_$CompanyGatewayUIState"); B.List_56s = A._setArrayType(makeConstList([B.Type_CompanyGatewayUIState_0Ae, B.Type__$CompanyGatewayUIState_Vs0]), type$.JSArray_legacy_Type); B.Type_EIw = A.typeLiteral("_$PreImportResponseEntityDetails"); B.List_5U9 = A._setArrayType(makeConstList([B.Type_2fc, B.Type_EIw]), type$.JSArray_legacy_Type); B.List_5_6 = A._setArrayType(makeConstList([5, 6]), type$.JSArray_legacy_int); B.ExportType_contacts = new A.ExportType("contacts"); B.ExportType_credits = new A.ExportType("credits"); B.ExportType_documents = new A.ExportType("documents"); B.ExportType_expenses = new A.ExportType("expenses"); B.ExportType_invoices = new A.ExportType("invoices"); B.ExportType_invoice_items = new A.ExportType("invoice_items"); B.ExportType_quotes = new A.ExportType("quotes"); B.ExportType_quote_items = new A.ExportType("quote_items"); B.ExportType_recurring_invoices = new A.ExportType("recurring_invoices"); B.ExportType_payments = new A.ExportType("payments"); B.ExportType_products = new A.ExportType("products"); B.ExportType_tasks = new A.ExportType("tasks"); B.ExportType_profitloss = new A.ExportType("profitloss"); B.List_5bR = A._setArrayType(makeConstList([B.ExportType_clients, B.ExportType_contacts, B.ExportType_credits, B.ExportType_documents, B.ExportType_expenses, B.ExportType_invoices, B.ExportType_invoice_items, B.ExportType_quotes, B.ExportType_quote_items, B.ExportType_recurring_invoices, B.ExportType_payments, B.ExportType_products, B.ExportType_tasks, B.ExportType_profitloss]), A.findType("JSArray")); B.Type_DateFormatItemResponse_KBd = A.typeLiteral("DateFormatItemResponse"); B.Type__$DateFormatItemResponse_WTK = A.typeLiteral("_$DateFormatItemResponse"); B.List_5dG = A._setArrayType(makeConstList([B.Type_DateFormatItemResponse_KBd, B.Type__$DateFormatItemResponse_WTK]), type$.JSArray_legacy_Type); B.Type__$DesignUIState_C1B = A.typeLiteral("_$DesignUIState"); B.List_5uk = A._setArrayType(makeConstList([B.Type_DesignUIState_IkK, B.Type__$DesignUIState_C1B]), type$.JSArray_legacy_Type); B.Type_DocumentItemResponse_E9t = A.typeLiteral("DocumentItemResponse"); B.Type__$DocumentItemResponse_okl = A.typeLiteral("_$DocumentItemResponse"); B.List_65l = A._setArrayType(makeConstList([B.Type_DocumentItemResponse_E9t, B.Type__$DocumentItemResponse_okl]), type$.JSArray_legacy_Type); B.Type__$ProductUIState_6YB = A.typeLiteral("_$ProductUIState"); B.List_6H2 = A._setArrayType(makeConstList([B.Type_ProductUIState_luG, B.Type__$ProductUIState_6YB]), type$.JSArray_legacy_Type); B.Type__$PaymentEntity_PTm = A.typeLiteral("_$PaymentEntity"); B.List_6PY = A._setArrayType(makeConstList([B.Type_PaymentEntity_Usy, B.Type__$PaymentEntity_PTm]), type$.JSArray_legacy_Type); B.Type__$IndustryEntity_Mld = A.typeLiteral("_$IndustryEntity"); B.List_6n0 = A._setArrayType(makeConstList([B.Type_IndustryEntity_a7D, B.Type__$IndustryEntity_Mld]), type$.JSArray_legacy_Type); B.List_6xs = A._setArrayType(makeConstList(["Before Christ", "Anno Domini"]), type$.JSArray_legacy_String); B.List_7Jw = A._setArrayType(makeConstList([B.InvoiceReportFields_0, B.InvoiceReportFields_1, B.InvoiceReportFields_2, B.InvoiceReportFields_3, B.InvoiceReportFields_4, B.InvoiceReportFields_5, B.InvoiceReportFields_6, B.InvoiceReportFields_7, B.InvoiceReportFields_8, B.InvoiceReportFields_9, B.InvoiceReportFields_10, B.InvoiceReportFields_11, B.InvoiceReportFields_12, B.InvoiceReportFields_13, B.InvoiceReportFields_14, B.InvoiceReportFields_15, B.InvoiceReportFields_16, B.InvoiceReportFields_17, B.InvoiceReportFields_18, B.InvoiceReportFields_19, B.InvoiceReportFields_20, B.InvoiceReportFields_21, B.InvoiceReportFields_22, B.InvoiceReportFields_23, B.InvoiceReportFields_24, B.InvoiceReportFields_25, B.InvoiceReportFields_26, B.InvoiceReportFields_27, B.InvoiceReportFields_28, B.InvoiceReportFields_29, B.InvoiceReportFields_30, B.InvoiceReportFields_31, B.InvoiceReportFields_32, B.InvoiceReportFields_33, B.InvoiceReportFields_34, B.InvoiceReportFields_35, B.InvoiceReportFields_36, B.InvoiceReportFields_37, B.InvoiceReportFields_38, B.InvoiceReportFields_39, B.InvoiceReportFields_40, B.InvoiceReportFields_41, B.InvoiceReportFields_42, B.InvoiceReportFields_43, B.InvoiceReportFields_44, B.InvoiceReportFields_45, B.InvoiceReportFields_46, B.InvoiceReportFields_47, B.InvoiceReportFields_48, B.InvoiceReportFields_49, B.InvoiceReportFields_50, B.InvoiceReportFields_51, B.InvoiceReportFields_52, B.InvoiceReportFields_53, B.InvoiceReportFields_54, B.InvoiceReportFields_55, B.InvoiceReportFields_56, B.InvoiceReportFields_57, B.InvoiceReportFields_58, B.InvoiceReportFields_59, B.InvoiceReportFields_60, B.InvoiceReportFields_61, B.InvoiceReportFields_62, B.InvoiceReportFields_63, B.InvoiceReportFields_64, B.InvoiceReportFields_65, B.InvoiceReportFields_66, B.InvoiceReportFields_67, B.InvoiceReportFields_68, B.InvoiceReportFields_69, B.InvoiceReportFields_70, B.InvoiceReportFields_71, B.InvoiceReportFields_72, B.InvoiceReportFields_73, B.InvoiceReportFields_74, B.InvoiceReportFields_75, B.InvoiceReportFields_76]), type$.JSArray_legacy_InvoiceReportFields); B.ProductReportFields_0 = new A.ProductReportFields(0, "id"); B.ProductReportFields_1 = new A.ProductReportFields(1, "name"); B.ProductReportFields_2 = new A.ProductReportFields(2, "price"); B.ProductReportFields_3 = new A.ProductReportFields(3, "description"); B.ProductReportFields_4 = new A.ProductReportFields(4, "cost"); B.ProductReportFields_5 = new A.ProductReportFields(5, "quantity"); B.ProductReportFields_6 = new A.ProductReportFields(6, "tax_rate1"); B.ProductReportFields_7 = new A.ProductReportFields(7, "tax_rate2"); B.ProductReportFields_8 = new A.ProductReportFields(8, "tax_rate3"); B.ProductReportFields_9 = new A.ProductReportFields(9, "product1"); B.ProductReportFields_10 = new A.ProductReportFields(10, "product2"); B.ProductReportFields_11 = new A.ProductReportFields(11, "product3"); B.ProductReportFields_12 = new A.ProductReportFields(12, "product4"); B.ProductReportFields_13 = new A.ProductReportFields(13, "stock_quantity"); B.ProductReportFields_14 = new A.ProductReportFields(14, "notification_threshold"); B.ProductReportFields_15 = new A.ProductReportFields(15, "created_at"); B.ProductReportFields_16 = new A.ProductReportFields(16, "updated_at"); B.List_7xV = A._setArrayType(makeConstList([B.ProductReportFields_0, B.ProductReportFields_1, B.ProductReportFields_2, B.ProductReportFields_3, B.ProductReportFields_4, B.ProductReportFields_5, B.ProductReportFields_6, B.ProductReportFields_7, B.ProductReportFields_8, B.ProductReportFields_9, B.ProductReportFields_10, B.ProductReportFields_11, B.ProductReportFields_12, B.ProductReportFields_13, B.ProductReportFields_14, B.ProductReportFields_15, B.ProductReportFields_16]), type$.JSArray_legacy_ProductReportFields); B.Type_CreditListResponse_GRu = A.typeLiteral("CreditListResponse"); B.Type__$CreditListResponse_G79 = A.typeLiteral("_$CreditListResponse"); B.List_86y = A._setArrayType(makeConstList([B.Type_CreditListResponse_GRu, B.Type__$CreditListResponse_G79]), type$.JSArray_legacy_Type); B.Type_TaskListResponse_2Px = A.typeLiteral("TaskListResponse"); B.Type__$TaskListResponse_Met = A.typeLiteral("_$TaskListResponse"); B.List_86y0 = A._setArrayType(makeConstList([B.Type_TaskListResponse_2Px, B.Type__$TaskListResponse_Met]), type$.JSArray_legacy_Type); B.Type_SizeListResponse_gbq = A.typeLiteral("SizeListResponse"); B.Type__$SizeListResponse_4Q6 = A.typeLiteral("_$SizeListResponse"); B.List_8Gh = A._setArrayType(makeConstList([B.Type_SizeListResponse_gbq, B.Type__$SizeListResponse_4Q6]), type$.JSArray_legacy_Type); B.Type__$StaticState_pYG = A.typeLiteral("_$StaticState"); B.List_8LU = A._setArrayType(makeConstList([B.Type_StaticState_AgZ, B.Type__$StaticState_pYG]), type$.JSArray_legacy_Type); B.Type__$InvoiceStatusEntity_ecN = A.typeLiteral("_$InvoiceStatusEntity"); B.List_8aB0 = A._setArrayType(makeConstList([B.Type_InvoiceStatusEntity_mqK, B.Type__$InvoiceStatusEntity_ecN]), type$.JSArray_legacy_Type); B.List_8eb = A._setArrayType(makeConstList(["h1", "h2", "h3", "h4", "h5", "h6"]), type$.JSArray_legacy_String); B.List_8oN = A._setArrayType(makeConstList(["dd", "dt", "li", "option", "optgroup", "p", "rp", "rt"]), type$.JSArray_legacy_String); B.Type__$RecurringInvoiceState_Qk1 = A.typeLiteral("_$RecurringInvoiceState"); B.List_8zm = A._setArrayType(makeConstList([B.Type_RecurringInvoiceState_qX6, B.Type__$RecurringInvoiceState_Qk1]), type$.JSArray_legacy_Type); B.List_9W7 = A._setArrayType(makeConstList([B.ExpenseReportFields_0, B.ExpenseReportFields_1, B.ExpenseReportFields_2, B.ExpenseReportFields_3, B.ExpenseReportFields_4, B.ExpenseReportFields_5, B.ExpenseReportFields_6, B.ExpenseReportFields_7, B.ExpenseReportFields_8, B.ExpenseReportFields_9, B.ExpenseReportFields_10, B.ExpenseReportFields_11, B.ExpenseReportFields_12, B.ExpenseReportFields_13, B.ExpenseReportFields_14, B.ExpenseReportFields_15, B.ExpenseReportFields_16, B.ExpenseReportFields_17, B.ExpenseReportFields_18, B.ExpenseReportFields_19, B.ExpenseReportFields_20, B.ExpenseReportFields_21, B.ExpenseReportFields_22, B.ExpenseReportFields_23, B.ExpenseReportFields_24, B.ExpenseReportFields_25, B.ExpenseReportFields_26, B.ExpenseReportFields_27, B.ExpenseReportFields_28, B.ExpenseReportFields_29, B.ExpenseReportFields_30, B.ExpenseReportFields_31, B.ExpenseReportFields_32, B.ExpenseReportFields_33, B.ExpenseReportFields_34, B.ExpenseReportFields_35, B.ExpenseReportFields_36]), type$.JSArray_legacy_ExpenseReportFields); B.Type__$TemplateEntity_4BO = A.typeLiteral("_$TemplateEntity"); B.List_9e5 = A._setArrayType(makeConstList([B.Type_TemplateEntity_Mm0, B.Type__$TemplateEntity_4BO]), type$.JSArray_legacy_Type); B.Type__$UserUIState_GZK = A.typeLiteral("_$UserUIState"); B.List_9rO = A._setArrayType(makeConstList([B.Type_UserUIState_ymM, B.Type__$UserUIState_GZK]), type$.JSArray_legacy_Type); B.Type__$PurchaseOrderUIState_oAy = A.typeLiteral("_$PurchaseOrderUIState"); B.List_AGi = A._setArrayType(makeConstList([B.Type_PurchaseOrderUIState_Ume, B.Type__$PurchaseOrderUIState_oAy]), type$.JSArray_legacy_Type); B.Type__$InvoiceHistoryEntity_Kaw = A.typeLiteral("_$InvoiceHistoryEntity"); B.List_AKW = A._setArrayType(makeConstList([B.Type_InvoiceHistoryEntity_1R3, B.Type__$InvoiceHistoryEntity_Kaw]), type$.JSArray_legacy_Type); B.List_ALf = A._setArrayType(makeConstList(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]), type$.JSArray_legacy_String); B.List_AM_PM = A._setArrayType(makeConstList(["AM", "PM"]), type$.JSArray_legacy_String); B.List_ANz = A._setArrayType(makeConstList([B.ClientReportFields_0, B.ClientReportFields_1, B.ClientReportFields_2, B.ClientReportFields_3, B.ClientReportFields_4, B.ClientReportFields_5, B.ClientReportFields_6, B.ClientReportFields_7, B.ClientReportFields_8, B.ClientReportFields_9, B.ClientReportFields_10, B.ClientReportFields_11, B.ClientReportFields_12, B.ClientReportFields_13, B.ClientReportFields_14, B.ClientReportFields_15, B.ClientReportFields_16, B.ClientReportFields_17, B.ClientReportFields_18, B.ClientReportFields_19, B.ClientReportFields_20, B.ClientReportFields_21, B.ClientReportFields_22, B.ClientReportFields_23, B.ClientReportFields_24, B.ClientReportFields_25, B.ClientReportFields_26, B.ClientReportFields_27, B.ClientReportFields_28, B.ClientReportFields_29, B.ClientReportFields_30, B.ClientReportFields_31, B.ClientReportFields_32, B.ClientReportFields_33, B.ClientReportFields_34, B.ClientReportFields_35, B.ClientReportFields_36, B.ClientReportFields_37, B.ClientReportFields_38, B.ClientReportFields_39, B.ClientReportFields_40, B.ClientReportFields_41, B.ClientReportFields_42, B.ClientReportFields_43, B.ClientReportFields_44, B.ClientReportFields_45, B.ClientReportFields_46, B.ClientReportFields_47, B.ClientReportFields_48, B.ClientReportFields_49, B.ClientReportFields_50, B.ClientReportFields_51, B.ClientReportFields_52]), type$.JSArray_legacy_ClientReportFields); B.Type__$TaxRateEntity_4H8 = A.typeLiteral("_$TaxRateEntity"); B.List_AOK = A._setArrayType(makeConstList([B.Type_TaxRateEntity_uQj, B.Type__$TaxRateEntity_4H8]), type$.JSArray_legacy_Type); B.Type__$FeesAndLimitsSettings_zio = A.typeLiteral("_$FeesAndLimitsSettings"); B.List_AcR = A._setArrayType(makeConstList([B.Type_FeesAndLimitsSettings_wgw, B.Type__$FeesAndLimitsSettings_zio]), type$.JSArray_legacy_Type); B.List_AmY = A._setArrayType(makeConstList([-1, 0, 0, 1, 0, 0, -1, 0, 1, 0, 0, 0, -1, 1, 0, 1, 1, 1, 1, 0]), type$.JSArray_legacy_double); B._TextType_0 = new A._TextType(0, "header1"); B._TextType_1 = new A._TextType(1, "header2"); B._TextType_2 = new A._TextType(2, "header3"); B._TextType_3 = new A._TextType(3, "paragraph"); B._TextType_4 = new A._TextType(4, "blockquote"); B._TextType_5 = new A._TextType(5, "orderedListItem"); B._TextType_6 = new A._TextType(6, "unorderedListItem"); B.List_Axm = A._setArrayType(makeConstList([B._TextType_0, B._TextType_1, B._TextType_2, B._TextType_3, B._TextType_4, B._TextType_5, B._TextType_6]), A.findType("JSArray<_TextType*>")); B.List_AyI = A._setArrayType(makeConstList([0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 16, 17, 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29]), type$.JSArray_legacy_int); B.List_B8J = A._setArrayType(makeConstList([0, 1996959894, 3993919788, 2567524794, 124634137, 1886057615, 3915621685, 2657392035, 249268274, 2044508324, 3772115230, 2547177864, 162941995, 2125561021, 3887607047, 2428444049, 498536548, 1789927666, 4089016648, 2227061214, 450548861, 1843258603, 4107580753, 2211677639, 325883990, 1684777152, 4251122042, 2321926636, 335633487, 1661365465, 4195302755, 2366115317, 997073096, 1281953886, 3579855332, 2724688242, 1006888145, 1258607687, 3524101629, 2768942443, 901097722, 1119000684, 3686517206, 2898065728, 853044451, 1172266101, 3705015759, 2882616665, 651767980, 1373503546, 3369554304, 3218104598, 565507253, 1454621731, 3485111705, 3099436303, 671266974, 1594198024, 3322730930, 2970347812, 795835527, 1483230225, 3244367275, 3060149565, 1994146192, 31158534, 2563907772, 4023717930, 1907459465, 112637215, 2680153253, 3904427059, 2013776290, 251722036, 2517215374, 3775830040, 2137656763, 141376813, 2439277719, 3865271297, 1802195444, 476864866, 2238001368, 4066508878, 1812370925, 453092731, 2181625025, 4111451223, 1706088902, 314042704, 2344532202, 4240017532, 1658658271, 366619977, 2362670323, 4224994405, 1303535960, 984961486, 2747007092, 3569037538, 1256170817, 1037604311, 2765210733, 3554079995, 1131014506, 879679996, 2909243462, 3663771856, 1141124467, 855842277, 2852801631, 3708648649, 1342533948, 654459306, 3188396048, 3373015174, 1466479909, 544179635, 3110523913, 3462522015, 1591671054, 702138776, 2966460450, 3352799412, 1504918807, 783551873, 3082640443, 3233442989, 3988292384, 2596254646, 62317068, 1957810842, 3939845945, 2647816111, 81470997, 1943803523, 3814918930, 2489596804, 225274430, 2053790376, 3826175755, 2466906013, 167816743, 2097651377, 4027552580, 2265490386, 503444072, 1762050814, 4150417245, 2154129355, 426522225, 1852507879, 4275313526, 2312317920, 282753626, 1742555852, 4189708143, 2394877945, 397917763, 1622183637, 3604390888, 2714866558, 953729732, 1340076626, 3518719985, 2797360999, 1068828381, 1219638859, 3624741850, 2936675148, 906185462, 1090812512, 3747672003, 2825379669, 829329135, 1181335161, 3412177804, 3160834842, 628085408, 1382605366, 3423369109, 3138078467, 570562233, 1426400815, 3317316542, 2998733608, 733239954, 1555261956, 3268935591, 3050360625, 752459403, 1541320221, 2607071920, 3965973030, 1969922972, 40735498, 2617837225, 3943577151, 1913087877, 83908371, 2512341634, 3803740692, 2075208622, 213261112, 2463272603, 3855990285, 2094854071, 198958881, 2262029012, 4057260610, 1759359992, 534414190, 2176718541, 4139329115, 1873836001, 414664567, 2282248934, 4279200368, 1711684554, 285281116, 2405801727, 4167216745, 1634467795, 376229701, 2685067896, 3608007406, 1308918612, 956543938, 2808555105, 3495958263, 1231636301, 1047427035, 2932959818, 3654703836, 1088359270, 936918000, 2847714899, 3736837829, 1202900863, 817233897, 3183342108, 3401237130, 1404277552, 615818150, 3134207493, 3453421203, 1423857449, 601450431, 3009837614, 3294710456, 1567103746, 711928724, 3020668471, 3272380065, 1510334235, 755167117]), type$.JSArray_legacy_int); B.List_BC_AD = A._setArrayType(makeConstList(["BC", "AD"]), type$.JSArray_legacy_String); B.List_CC9 = A._setArrayType(makeConstList([B.DateRange_last7Days, B.DateRange_last30Days, B.DateRange_thisMonth, B.DateRange_lastMonth, B.DateRange_thisQuarter, B.DateRange_lastQuarter, B.DateRange_thisYear, B.DateRange_lastYear, B.DateRange_custom]), A.findType("JSArray")); B.Type__$DesignState_K17 = A.typeLiteral("_$DesignState"); B.List_CCG = A._setArrayType(makeConstList([B.Type_DesignState_jZd, B.Type__$DesignState_K17]), type$.JSArray_legacy_Type); B.Type__$WebhookState_eAf = A.typeLiteral("_$WebhookState"); B.List_CFL = A._setArrayType(makeConstList([B.Type_WebhookState_6v8, B.Type__$WebhookState_eAf]), type$.JSArray_legacy_Type); B.Type__$ReportsUIState_cc6 = A.typeLiteral("_$ReportsUIState"); B.List_CHP = A._setArrayType(makeConstList([B.Type_ReportsUIState_YKi, B.Type__$ReportsUIState_cc6]), type$.JSArray_legacy_Type); B.List_empty24 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_int); B.List_6_18 = A._setArrayType(makeConstList([6, 18]), type$.JSArray_legacy_int); B.List_6_22 = A._setArrayType(makeConstList([6, 22]), type$.JSArray_legacy_int); B.List_6_26 = A._setArrayType(makeConstList([6, 26]), type$.JSArray_legacy_int); B.List_6_30 = A._setArrayType(makeConstList([6, 30]), type$.JSArray_legacy_int); B.List_6_34 = A._setArrayType(makeConstList([6, 34]), type$.JSArray_legacy_int); B.List_6_22_38 = A._setArrayType(makeConstList([6, 22, 38]), type$.JSArray_legacy_int); B.List_6_24_42 = A._setArrayType(makeConstList([6, 24, 42]), type$.JSArray_legacy_int); B.List_6_26_46 = A._setArrayType(makeConstList([6, 26, 46]), type$.JSArray_legacy_int); B.List_6_28_50 = A._setArrayType(makeConstList([6, 28, 50]), type$.JSArray_legacy_int); B.List_6_30_54 = A._setArrayType(makeConstList([6, 30, 54]), type$.JSArray_legacy_int); B.List_6_32_58 = A._setArrayType(makeConstList([6, 32, 58]), type$.JSArray_legacy_int); B.List_6_34_62 = A._setArrayType(makeConstList([6, 34, 62]), type$.JSArray_legacy_int); B.List_6_26_46_66 = A._setArrayType(makeConstList([6, 26, 46, 66]), type$.JSArray_legacy_int); B.List_6_26_48_70 = A._setArrayType(makeConstList([6, 26, 48, 70]), type$.JSArray_legacy_int); B.List_6_26_50_74 = A._setArrayType(makeConstList([6, 26, 50, 74]), type$.JSArray_legacy_int); B.List_6_30_54_78 = A._setArrayType(makeConstList([6, 30, 54, 78]), type$.JSArray_legacy_int); B.List_6_30_56_82 = A._setArrayType(makeConstList([6, 30, 56, 82]), type$.JSArray_legacy_int); B.List_6_30_58_86 = A._setArrayType(makeConstList([6, 30, 58, 86]), type$.JSArray_legacy_int); B.List_6_34_62_90 = A._setArrayType(makeConstList([6, 34, 62, 90]), type$.JSArray_legacy_int); B.List_yTu1 = A._setArrayType(makeConstList([6, 28, 50, 72, 94]), type$.JSArray_legacy_int); B.List_yTu2 = A._setArrayType(makeConstList([6, 26, 50, 74, 98]), type$.JSArray_legacy_int); B.List_yTu3 = A._setArrayType(makeConstList([6, 30, 54, 78, 102]), type$.JSArray_legacy_int); B.List_yTu4 = A._setArrayType(makeConstList([6, 28, 54, 80, 106]), type$.JSArray_legacy_int); B.List_yTu5 = A._setArrayType(makeConstList([6, 32, 58, 84, 110]), type$.JSArray_legacy_int); B.List_yTu6 = A._setArrayType(makeConstList([6, 30, 58, 86, 114]), type$.JSArray_legacy_int); B.List_yTu7 = A._setArrayType(makeConstList([6, 34, 62, 90, 118]), type$.JSArray_legacy_int); B.List_ww82 = A._setArrayType(makeConstList([6, 26, 50, 74, 98, 122]), type$.JSArray_legacy_int); B.List_ww83 = A._setArrayType(makeConstList([6, 30, 54, 78, 102, 126]), type$.JSArray_legacy_int); B.List_ww84 = A._setArrayType(makeConstList([6, 26, 52, 78, 104, 130]), type$.JSArray_legacy_int); B.List_ww85 = A._setArrayType(makeConstList([6, 30, 56, 82, 108, 134]), type$.JSArray_legacy_int); B.List_ww86 = A._setArrayType(makeConstList([6, 34, 60, 86, 112, 138]), type$.JSArray_legacy_int); B.List_ww87 = A._setArrayType(makeConstList([6, 30, 58, 86, 114, 142]), type$.JSArray_legacy_int); B.List_ww88 = A._setArrayType(makeConstList([6, 34, 62, 90, 118, 146]), type$.JSArray_legacy_int); B.List_E7y0 = A._setArrayType(makeConstList([6, 30, 54, 78, 102, 126, 150]), type$.JSArray_legacy_int); B.List_E7y1 = A._setArrayType(makeConstList([6, 24, 50, 76, 102, 128, 154]), type$.JSArray_legacy_int); B.List_E7y2 = A._setArrayType(makeConstList([6, 28, 54, 80, 106, 132, 158]), type$.JSArray_legacy_int); B.List_E7y3 = A._setArrayType(makeConstList([6, 32, 58, 84, 110, 136, 162]), type$.JSArray_legacy_int); B.List_E7y4 = A._setArrayType(makeConstList([6, 26, 54, 82, 110, 138, 166]), type$.JSArray_legacy_int); B.List_E7y5 = A._setArrayType(makeConstList([6, 30, 58, 86, 114, 142, 170]), type$.JSArray_legacy_int); B.List_CI3 = A._setArrayType(makeConstList([B.List_empty24, B.List_6_18, B.List_6_22, B.List_6_26, B.List_6_30, B.List_6_34, B.List_6_22_38, B.List_6_24_42, B.List_6_26_46, B.List_6_28_50, B.List_6_30_54, B.List_6_32_58, B.List_6_34_62, B.List_6_26_46_66, B.List_6_26_48_70, B.List_6_26_50_74, B.List_6_30_54_78, B.List_6_30_56_82, B.List_6_30_58_86, B.List_6_34_62_90, B.List_yTu1, B.List_yTu2, B.List_yTu3, B.List_yTu4, B.List_yTu5, B.List_yTu6, B.List_yTu7, B.List_ww82, B.List_ww83, B.List_ww84, B.List_ww85, B.List_ww86, B.List_ww87, B.List_ww88, B.List_E7y0, B.List_E7y1, B.List_E7y2, B.List_E7y3, B.List_E7y4, B.List_E7y5]), type$.JSArray_legacy_List_legacy_int); B.Color_637534208 = new A.Color(637534208); B.BoxShadow_oyn0 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_637534208, B.Offset_0_3, 8); B.Color_251658240 = new A.Color(251658240); B.BoxShadow_oyn1 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_251658240, B.Offset_0_3, 1); B.List_CQc = A._setArrayType(makeConstList([B.BoxShadow_oyn0, B.BoxShadow_oyn1]), type$.JSArray_legacy_BoxShadow); B.List_CVk = A._setArrayType(makeConstList([0, 0, 65490, 45055, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.List_Cg9 = A._setArrayType(makeConstList(["pointerdown", "pointermove", "pointerup", "pointercancel", "touchstart", "touchend", "touchmove", "touchcancel", "mousedown", "mousemove", "mouseup", "keyup", "keydown"]), type$.JSArray_legacy_String); B.Type__$CompanyEntity_4GP = A.typeLiteral("_$CompanyEntity"); B.List_ChN = A._setArrayType(makeConstList([B.Type_CompanyEntity_Gbn, B.Type__$CompanyEntity_4GP]), type$.JSArray_legacy_Type); B.Type__$ProductState_sxB = A.typeLiteral("_$ProductState"); B.List_E4Q = A._setArrayType(makeConstList([B.Type_ProductState_jr5, B.Type__$ProductState_sxB]), type$.JSArray_legacy_Type); B.List_E7S = A._setArrayType(makeConstList(["+//silmaril//dtd html pro v0r11 19970101//", "-//advasoft ltd//dtd html 3.0 aswedit + extensions//", "-//as//dtd html 3.0 aswedit + extensions//", "-//ietf//dtd html 2.0 level 1//", "-//ietf//dtd html 2.0 level 2//", "-//ietf//dtd html 2.0 strict level 1//", "-//ietf//dtd html 2.0 strict level 2//", "-//ietf//dtd html 2.0 strict//", "-//ietf//dtd html 2.0//", "-//ietf//dtd html 2.1e//", "-//ietf//dtd html 3.0//", "-//ietf//dtd html 3.2 final//", "-//ietf//dtd html 3.2//", "-//ietf//dtd html 3//", "-//ietf//dtd html level 0//", "-//ietf//dtd html level 1//", "-//ietf//dtd html level 2//", "-//ietf//dtd html level 3//", "-//ietf//dtd html strict level 0//", "-//ietf//dtd html strict level 1//", "-//ietf//dtd html strict level 2//", "-//ietf//dtd html strict level 3//", "-//ietf//dtd html strict//", "-//ietf//dtd html//", "-//metrius//dtd metrius presentational//", "-//microsoft//dtd internet explorer 2.0 html strict//", "-//microsoft//dtd internet explorer 2.0 html//", "-//microsoft//dtd internet explorer 2.0 tables//", "-//microsoft//dtd internet explorer 3.0 html strict//", "-//microsoft//dtd internet explorer 3.0 html//", "-//microsoft//dtd internet explorer 3.0 tables//", "-//netscape comm. corp.//dtd html//", "-//netscape comm. corp.//dtd strict html//", "-//o'reilly and associates//dtd html 2.0//", "-//o'reilly and associates//dtd html extended 1.0//", "-//o'reilly and associates//dtd html extended relaxed 1.0//", "-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", "-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", "-//spyglass//dtd html 2.0 extended//", "-//sq//dtd html 2.0 hotmetal + extensions//", "-//sun microsystems corp.//dtd hotjava html//", "-//sun microsystems corp.//dtd hotjava strict html//", "-//w3c//dtd html 3 1995-03-24//", "-//w3c//dtd html 3.2 draft//", "-//w3c//dtd html 3.2 final//", "-//w3c//dtd html 3.2//", "-//w3c//dtd html 3.2s draft//", "-//w3c//dtd html 4.0 frameset//", "-//w3c//dtd html 4.0 transitional//", "-//w3c//dtd html experimental 19960712//", "-//w3c//dtd html experimental 970421//", "-//w3c//dtd w3 html//", "-//w3o//dtd w3 html 3.0//", "-//webtechs//dtd mozilla html 2.0//", "-//webtechs//dtd mozilla html//"]), type$.JSArray_legacy_String); B.List_E7y = A._setArrayType(makeConstList([1, 2, 3, 4, 6, 12, 24]), type$.JSArray_legacy_int); B.List_ECn = A._setArrayType(makeConstList(["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]), type$.JSArray_legacy_String); B.List_EGJ = A._setArrayType(makeConstList([B.CropAspectRatioPreset_0, B.CropAspectRatioPreset_1, B.CropAspectRatioPreset_2, B.CropAspectRatioPreset_4, B.CropAspectRatioPreset_7]), A.findType("JSArray")); B.Type__$PrefState_y1F = A.typeLiteral("_$PrefState"); B.List_ERv = A._setArrayType(makeConstList([B.Type_PrefState_ePg, B.Type__$PrefState_y1F]), type$.JSArray_legacy_Type); B.Type_ClientListResponse_apS = A.typeLiteral("ClientListResponse"); B.Type__$ClientListResponse_m5d = A.typeLiteral("_$ClientListResponse"); B.List_EkK = A._setArrayType(makeConstList([B.Type_ClientListResponse_apS, B.Type__$ClientListResponse_m5d]), type$.JSArray_legacy_Type); B.Type__$PaymentableEntity_rUw = A.typeLiteral("_$PaymentableEntity"); B.List_FIw = A._setArrayType(makeConstList([B.Type_PaymentableEntity_e3c, B.Type__$PaymentableEntity_rUw]), type$.JSArray_legacy_Type); B.Type__$GroupUIState_Zwj = A.typeLiteral("_$GroupUIState"); B.List_FVt = A._setArrayType(makeConstList([B.Type_GroupUIState_Ejg, B.Type__$GroupUIState_Zwj]), type$.JSArray_legacy_Type); B.Type__$ExpenseCategoryUIState_wsa = A.typeLiteral("_$ExpenseCategoryUIState"); B.List_FcO = A._setArrayType(makeConstList([B.Type_ExpenseCategoryUIState_ESz, B.Type__$ExpenseCategoryUIState_wsa]), type$.JSArray_legacy_Type); B.Type_TimezoneListResponse_alh = A.typeLiteral("TimezoneListResponse"); B.Type__$TimezoneListResponse_43h = A.typeLiteral("_$TimezoneListResponse"); B.List_FeN = A._setArrayType(makeConstList([B.Type_TimezoneListResponse_alh, B.Type__$TimezoneListResponse_43h]), type$.JSArray_legacy_Type); B.Type_AppState_omH = A.typeLiteral("AppState"); B.Type__$AppState_IYd = A.typeLiteral("_$AppState"); B.List_FeV = A._setArrayType(makeConstList([B.Type_AppState_omH, B.Type__$AppState_IYd]), type$.JSArray_legacy_Type); B.Type__$ProjectState_ynv = A.typeLiteral("_$ProjectState"); B.List_Fgs = A._setArrayType(makeConstList([B.Type_ProjectState_OLY, B.Type__$ProjectState_ynv]), type$.JSArray_legacy_Type); B.Type__$SubscriptionState_wv8 = A.typeLiteral("_$SubscriptionState"); B.List_G3h = A._setArrayType(makeConstList([B.Type_SubscriptionState_4CA, B.Type__$SubscriptionState_wv8]), type$.JSArray_legacy_Type); B.WordCharProperty_0 = new A.WordCharProperty(0, "DoubleQuote"); B.WordCharProperty_1 = new A.WordCharProperty(1, "SingleQuote"); B.WordCharProperty_2 = new A.WordCharProperty(2, "HebrewLetter"); B.WordCharProperty_3 = new A.WordCharProperty(3, "CR"); B.WordCharProperty_4 = new A.WordCharProperty(4, "LF"); B.WordCharProperty_5 = new A.WordCharProperty(5, "Newline"); B.WordCharProperty_6 = new A.WordCharProperty(6, "Extend"); B.WordCharProperty_7 = new A.WordCharProperty(7, "RegionalIndicator"); B.WordCharProperty_8 = new A.WordCharProperty(8, "Format"); B.WordCharProperty_9 = new A.WordCharProperty(9, "Katakana"); B.WordCharProperty_10 = new A.WordCharProperty(10, "ALetter"); B.WordCharProperty_11 = new A.WordCharProperty(11, "MidLetter"); B.WordCharProperty_12 = new A.WordCharProperty(12, "MidNum"); B.WordCharProperty_13 = new A.WordCharProperty(13, "MidNumLet"); B.WordCharProperty_14 = new A.WordCharProperty(14, "Numeric"); B.WordCharProperty_15 = new A.WordCharProperty(15, "ExtendNumLet"); B.WordCharProperty_16 = new A.WordCharProperty(16, "ZWJ"); B.WordCharProperty_17 = new A.WordCharProperty(17, "WSegSpace"); B.WordCharProperty_18 = new A.WordCharProperty(18, "Unknown"); B.List_G7P = A._setArrayType(makeConstList([B.WordCharProperty_0, B.WordCharProperty_1, B.WordCharProperty_2, B.WordCharProperty_3, B.WordCharProperty_4, B.WordCharProperty_5, B.WordCharProperty_6, B.WordCharProperty_7, B.WordCharProperty_8, B.WordCharProperty_9, B.WordCharProperty_10, B.WordCharProperty_11, B.WordCharProperty_12, B.WordCharProperty_13, B.WordCharProperty_14, B.WordCharProperty_15, B.WordCharProperty_16, B.WordCharProperty_17, B.WordCharProperty_18]), A.findType("JSArray")); B.Type_IndustryItemResponse_XhK = A.typeLiteral("IndustryItemResponse"); B.Type__$IndustryItemResponse_gyf = A.typeLiteral("_$IndustryItemResponse"); B.List_GBj = A._setArrayType(makeConstList([B.Type_IndustryItemResponse_XhK, B.Type__$IndustryItemResponse_gyf]), type$.JSArray_legacy_Type); B.Type__$SettingsEntity_OPf = A.typeLiteral("_$SettingsEntity"); B.List_GXp = A._setArrayType(makeConstList([B.Type_SettingsEntity_46y, B.Type__$SettingsEntity_OPf]), type$.JSArray_legacy_Type); B.List_GZw = A._setArrayType(makeConstList(["text", "multiline", "number", "phone", "datetime", "emailAddress", "url", "visiblePassword", "name", "address", "none"]), type$.JSArray_legacy_String); B.FileStorage_company_state_0 = new A.FileStorage("company_state_0"); B.PersistenceRepository_FileStorage_company_state_0 = new A.PersistenceRepository(B.FileStorage_company_state_0); B.FileStorage_company_state_1 = new A.FileStorage("company_state_1"); B.PersistenceRepository_FileStorage_company_state_1 = new A.PersistenceRepository(B.FileStorage_company_state_1); B.FileStorage_company_state_2 = new A.FileStorage("company_state_2"); B.PersistenceRepository_FileStorage_company_state_2 = new A.PersistenceRepository(B.FileStorage_company_state_2); B.FileStorage_company_state_3 = new A.FileStorage("company_state_3"); B.PersistenceRepository_FileStorage_company_state_3 = new A.PersistenceRepository(B.FileStorage_company_state_3); B.FileStorage_company_state_4 = new A.FileStorage("company_state_4"); B.PersistenceRepository_FileStorage_company_state_4 = new A.PersistenceRepository(B.FileStorage_company_state_4); B.FileStorage_company_state_5 = new A.FileStorage("company_state_5"); B.PersistenceRepository_FileStorage_company_state_5 = new A.PersistenceRepository(B.FileStorage_company_state_5); B.FileStorage_company_state_6 = new A.FileStorage("company_state_6"); B.PersistenceRepository_FileStorage_company_state_6 = new A.PersistenceRepository(B.FileStorage_company_state_6); B.FileStorage_company_state_7 = new A.FileStorage("company_state_7"); B.PersistenceRepository_FileStorage_company_state_7 = new A.PersistenceRepository(B.FileStorage_company_state_7); B.FileStorage_company_state_8 = new A.FileStorage("company_state_8"); B.PersistenceRepository_FileStorage_company_state_8 = new A.PersistenceRepository(B.FileStorage_company_state_8); B.FileStorage_company_state_9 = new A.FileStorage("company_state_9"); B.PersistenceRepository_FileStorage_company_state_9 = new A.PersistenceRepository(B.FileStorage_company_state_9); B.List_Ga5 = A._setArrayType(makeConstList([B.PersistenceRepository_FileStorage_company_state_0, B.PersistenceRepository_FileStorage_company_state_1, B.PersistenceRepository_FileStorage_company_state_2, B.PersistenceRepository_FileStorage_company_state_3, B.PersistenceRepository_FileStorage_company_state_4, B.PersistenceRepository_FileStorage_company_state_5, B.PersistenceRepository_FileStorage_company_state_6, B.PersistenceRepository_FileStorage_company_state_7, B.PersistenceRepository_FileStorage_company_state_8, B.PersistenceRepository_FileStorage_company_state_9]), A.findType("JSArray")); B.Type__$TokenState_Kn5 = A.typeLiteral("_$TokenState"); B.List_H7P = A._setArrayType(makeConstList([B.Type_TokenState_EOw, B.Type__$TokenState_Kn5]), type$.JSArray_legacy_Type); B.Type__$TokenEntity_p5D = A.typeLiteral("_$TokenEntity"); B.List_HFE = A._setArrayType(makeConstList([B.Type_TokenEntity_QoM, B.Type__$TokenEntity_p5D]), type$.JSArray_legacy_Type); B.List_HT3 = A._setArrayType(makeConstList([B.CreditReportFields_0, B.CreditReportFields_1, B.CreditReportFields_2, B.CreditReportFields_3, B.CreditReportFields_4, B.CreditReportFields_5, B.CreditReportFields_6, B.CreditReportFields_7, B.CreditReportFields_8, B.CreditReportFields_9, B.CreditReportFields_10, B.CreditReportFields_11, B.CreditReportFields_12, B.CreditReportFields_13, B.CreditReportFields_14, B.CreditReportFields_15, B.CreditReportFields_16, B.CreditReportFields_17, B.CreditReportFields_18, B.CreditReportFields_19, B.CreditReportFields_20, B.CreditReportFields_21, B.CreditReportFields_22, B.CreditReportFields_23, B.CreditReportFields_24, B.CreditReportFields_25, B.CreditReportFields_26, B.CreditReportFields_27, B.CreditReportFields_28, B.CreditReportFields_29, B.CreditReportFields_30, B.CreditReportFields_31, B.CreditReportFields_32, B.CreditReportFields_33, B.CreditReportFields_34, B.CreditReportFields_35, B.CreditReportFields_36, B.CreditReportFields_37, B.CreditReportFields_38, B.CreditReportFields_39, B.CreditReportFields_40, B.CreditReportFields_41, B.CreditReportFields_42, B.CreditReportFields_43, B.CreditReportFields_44, B.CreditReportFields_45, B.CreditReportFields_46, B.CreditReportFields_47, B.CreditReportFields_48, B.CreditReportFields_49, B.CreditReportFields_50, B.CreditReportFields_51, B.CreditReportFields_52, B.CreditReportFields_53, B.CreditReportFields_54, B.CreditReportFields_55, B.CreditReportFields_56, B.CreditReportFields_57, B.CreditReportFields_58, B.CreditReportFields_59, B.CreditReportFields_60, B.CreditReportFields_61]), type$.JSArray_legacy_CreditReportFields); B.Type__$PaymentUIState_SOa = A.typeLiteral("_$PaymentUIState"); B.List_HTT = A._setArrayType(makeConstList([B.Type_PaymentUIState_kyk, B.Type__$PaymentUIState_SOa]), type$.JSArray_legacy_Type); B.Type_DesignPreviewRequest_4eq = A.typeLiteral("DesignPreviewRequest"); B.Type__$DesignPreviewRequest_Jot = A.typeLiteral("_$DesignPreviewRequest"); B.List_Hx4 = A._setArrayType(makeConstList([B.Type_DesignPreviewRequest_4eq, B.Type__$DesignPreviewRequest_Jot]), type$.JSArray_legacy_Type); B.List_I2K = A._setArrayType(makeConstList([B.ActionPaneType_0, B.ActionPaneType_1, B.ActionPaneType_2]), A.findType("JSArray")); B.List_ILN = A._setArrayType(makeConstList(["address", "article", "aside", "audio", "blockquote", "body", "canvas", "center", "dd", "dir", "div", "dl", "dt", "fieldset", "figcaption", "figure", "footer", "form", "frameset", "h1", "h2", "h3", "h4", "h5", "h6", "header", "hgroup", "hr", "html", "isindex", "li", "main", "menu", "nav", "noframes", "noscript", "ol", "output", "p", "pre", "section", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "ul"]), type$.JSArray_legacy_String); B.Type_WebhookItemResponse_2fO = A.typeLiteral("WebhookItemResponse"); B.Type__$WebhookItemResponse_AeS = A.typeLiteral("_$WebhookItemResponse"); B.List_IMQ = A._setArrayType(makeConstList([B.Type_WebhookItemResponse_2fO, B.Type__$WebhookItemResponse_AeS]), type$.JSArray_legacy_Type); B.Type__$UserEntity_sxB = A.typeLiteral("_$UserEntity"); B.List_IU1 = A._setArrayType(makeConstList([B.Type_UserEntity_IVQ, B.Type__$UserEntity_sxB]), type$.JSArray_legacy_Type); B.Type__$PrefStateSortField_Crw = A.typeLiteral("_$PrefStateSortField"); B.List_JEy = A._setArrayType(makeConstList([B.Type_PrefStateSortField_Ekc, B.Type__$PrefStateSortField_Crw]), type$.JSArray_legacy_Type); B.Type__$HealthCheckPHPResponse_03G = A.typeLiteral("_$HealthCheckPHPResponse"); B.List_JQT = A._setArrayType(makeConstList([B.Type_HealthCheckPHPResponse_kOG, B.Type__$HealthCheckPHPResponse_03G]), type$.JSArray_legacy_Type); B.List_JYB = A._setArrayType(makeConstList([0, 0, 26624, 1023, 65534, 2047, 65534, 2047]), type$.JSArray_legacy_int); B.Type__$InvoiceState_7BT = A.typeLiteral("_$InvoiceState"); B.List_Js5 = A._setArrayType(makeConstList([B.Type_InvoiceState_YnY, B.Type__$InvoiceState_7BT]), type$.JSArray_legacy_Type); B.Type__$CompanyGatewayState_2xi = A.typeLiteral("_$CompanyGatewayState"); B.List_Jwp = A._setArrayType(makeConstList([B.Type_CompanyGatewayState_ckm, B.Type__$CompanyGatewayState_2xi]), type$.JSArray_legacy_Type); B.Type__$StaticDataEntity_qVS = A.typeLiteral("_$StaticDataEntity"); B.List_K12 = A._setArrayType(makeConstList([B.Type_StaticDataEntity_7Re, B.Type__$StaticDataEntity_qVS]), type$.JSArray_legacy_Type); B.Type_LoginResponse_zLR = A.typeLiteral("LoginResponse"); B.Type__$LoginResponse_zPV = A.typeLiteral("_$LoginResponse"); B.List_K9P = A._setArrayType(makeConstList([B.Type_LoginResponse_zLR, B.Type__$LoginResponse_zPV]), type$.JSArray_legacy_Type); B.Type__$ClientState_1OJ = A.typeLiteral("_$ClientState"); B.List_K9i = A._setArrayType(makeConstList([B.Type_ClientState_QAb, B.Type__$ClientState_1OJ]), type$.JSArray_legacy_Type); B.List_KAC = A._setArrayType(makeConstList(["ar", "bg", "ca", "cs", "da", "de", "el", "en", "en_GB", "en_AU", "es", "es_ES", "et", "fa", "fi", "fr", "fr_CA", "hr", "it", "ja", "lt", "lv_LV", "mk_MK", "nb_NO", "nl", "pl", "pt_BR", "pt_PT", "ro", "ru_RU", "sk", "sl", "sq", "sr", "sv", "th", "tr_TR", "zh_TW"]), type$.JSArray_legacy_String); B.List_KIf = A._setArrayType(makeConstList([0, 0, 26498, 1023, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.Type__$VendorState_7Nt = A.typeLiteral("_$VendorState"); B.List_KLt = A._setArrayType(makeConstList([B.Type_VendorState_Db0, B.Type__$VendorState_7Nt]), type$.JSArray_legacy_Type); B.List_Ka6 = A._setArrayType(makeConstList(["uU", "bB", "lL", "iI", "cC"]), type$.JSArray_legacy_String); B.Type__$GatewayTokenMetaEntity_A0N = A.typeLiteral("_$GatewayTokenMetaEntity"); B.List_Ks3 = A._setArrayType(makeConstList([B.Type_GatewayTokenMetaEntity_AuK, B.Type__$GatewayTokenMetaEntity_A0N]), type$.JSArray_legacy_Type); B.List_Kxv = A._setArrayType(makeConstList([43, 95, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122]), type$.JSArray_legacy_int); B.Type__$PaymentTermState_Icu = A.typeLiteral("_$PaymentTermState"); B.List_LCF = A._setArrayType(makeConstList([B.Type_PaymentTermState_gkc, B.Type__$PaymentTermState_Icu]), type$.JSArray_legacy_Type); B.Locale_en_US = new A.Locale("en", "US"); B.List_Locale_en_US = A._setArrayType(makeConstList([B.Locale_en_US]), type$.JSArray_legacy_Locale); B.PurchaseOrderReportFields_0 = new A.PurchaseOrderReportFields(0, "id"); B.PurchaseOrderReportFields_1 = new A.PurchaseOrderReportFields(1, "amount"); B.PurchaseOrderReportFields_2 = new A.PurchaseOrderReportFields(2, "converted_amount"); B.PurchaseOrderReportFields_3 = new A.PurchaseOrderReportFields(3, "vendor"); B.PurchaseOrderReportFields_4 = new A.PurchaseOrderReportFields(4, "vendor_number"); B.PurchaseOrderReportFields_5 = new A.PurchaseOrderReportFields(5, "vendor_address1"); B.PurchaseOrderReportFields_6 = new A.PurchaseOrderReportFields(6, "vendor_address2"); B.PurchaseOrderReportFields_7 = new A.PurchaseOrderReportFields(7, "vendor_state"); B.PurchaseOrderReportFields_8 = new A.PurchaseOrderReportFields(8, "vendor_country"); B.PurchaseOrderReportFields_9 = new A.PurchaseOrderReportFields(9, "status"); B.PurchaseOrderReportFields_10 = new A.PurchaseOrderReportFields(10, "number"); B.PurchaseOrderReportFields_11 = new A.PurchaseOrderReportFields(11, "discount"); B.PurchaseOrderReportFields_12 = new A.PurchaseOrderReportFields(12, "po_number"); B.PurchaseOrderReportFields_13 = new A.PurchaseOrderReportFields(13, "date"); B.PurchaseOrderReportFields_14 = new A.PurchaseOrderReportFields(14, "partial_due_date"); B.PurchaseOrderReportFields_15 = new A.PurchaseOrderReportFields(15, "valid_until"); B.PurchaseOrderReportFields_16 = new A.PurchaseOrderReportFields(16, "partial"); B.PurchaseOrderReportFields_17 = new A.PurchaseOrderReportFields(17, "auto_bill"); B.PurchaseOrderReportFields_18 = new A.PurchaseOrderReportFields(18, "invoice1"); B.PurchaseOrderReportFields_19 = new A.PurchaseOrderReportFields(19, "invoice2"); B.PurchaseOrderReportFields_20 = new A.PurchaseOrderReportFields(20, "invoice3"); B.PurchaseOrderReportFields_21 = new A.PurchaseOrderReportFields(21, "invoice4"); B.PurchaseOrderReportFields_22 = new A.PurchaseOrderReportFields(22, "surcharge1"); B.PurchaseOrderReportFields_23 = new A.PurchaseOrderReportFields(23, "surcharge2"); B.PurchaseOrderReportFields_24 = new A.PurchaseOrderReportFields(24, "surcharge3"); B.PurchaseOrderReportFields_25 = new A.PurchaseOrderReportFields(25, "surcharge4"); B.PurchaseOrderReportFields_26 = new A.PurchaseOrderReportFields(26, "updated_at"); B.PurchaseOrderReportFields_27 = new A.PurchaseOrderReportFields(27, "archived_at"); B.PurchaseOrderReportFields_28 = new A.PurchaseOrderReportFields(28, "is_deleted"); B.PurchaseOrderReportFields_29 = new A.PurchaseOrderReportFields(29, "is_approved"); B.PurchaseOrderReportFields_30 = new A.PurchaseOrderReportFields(30, "tax_amount"); B.PurchaseOrderReportFields_31 = new A.PurchaseOrderReportFields(31, "net_amount"); B.PurchaseOrderReportFields_32 = new A.PurchaseOrderReportFields(32, "exchange_rate"); B.PurchaseOrderReportFields_33 = new A.PurchaseOrderReportFields(33, "public_notes"); B.PurchaseOrderReportFields_34 = new A.PurchaseOrderReportFields(34, "private_notes"); B.PurchaseOrderReportFields_35 = new A.PurchaseOrderReportFields(35, "vendor_vat_number"); B.PurchaseOrderReportFields_36 = new A.PurchaseOrderReportFields(36, "vendor_city"); B.PurchaseOrderReportFields_37 = new A.PurchaseOrderReportFields(37, "vendor_postal_code"); B.PurchaseOrderReportFields_38 = new A.PurchaseOrderReportFields(38, "vendor_website"); B.PurchaseOrderReportFields_39 = new A.PurchaseOrderReportFields(39, "tax_rate1"); B.PurchaseOrderReportFields_40 = new A.PurchaseOrderReportFields(40, "tax_rate2"); B.PurchaseOrderReportFields_41 = new A.PurchaseOrderReportFields(41, "tax_rate3"); B.PurchaseOrderReportFields_42 = new A.PurchaseOrderReportFields(42, "tax_name1"); B.PurchaseOrderReportFields_43 = new A.PurchaseOrderReportFields(43, "tax_name2"); B.PurchaseOrderReportFields_44 = new A.PurchaseOrderReportFields(44, "tax_name3"); B.PurchaseOrderReportFields_45 = new A.PurchaseOrderReportFields(45, "currency"); B.PurchaseOrderReportFields_46 = new A.PurchaseOrderReportFields(46, "is_viewed"); B.PurchaseOrderReportFields_47 = new A.PurchaseOrderReportFields(47, "assigned_to"); B.PurchaseOrderReportFields_48 = new A.PurchaseOrderReportFields(48, "created_by"); B.PurchaseOrderReportFields_49 = new A.PurchaseOrderReportFields(49, "vendor_phone"); B.PurchaseOrderReportFields_50 = new A.PurchaseOrderReportFields(50, "contact_email"); B.PurchaseOrderReportFields_51 = new A.PurchaseOrderReportFields(51, "contact_phone"); B.PurchaseOrderReportFields_52 = new A.PurchaseOrderReportFields(52, "contact_name"); B.List_MAa = A._setArrayType(makeConstList([B.PurchaseOrderReportFields_0, B.PurchaseOrderReportFields_1, B.PurchaseOrderReportFields_2, B.PurchaseOrderReportFields_3, B.PurchaseOrderReportFields_4, B.PurchaseOrderReportFields_5, B.PurchaseOrderReportFields_6, B.PurchaseOrderReportFields_7, B.PurchaseOrderReportFields_8, B.PurchaseOrderReportFields_9, B.PurchaseOrderReportFields_10, B.PurchaseOrderReportFields_11, B.PurchaseOrderReportFields_12, B.PurchaseOrderReportFields_13, B.PurchaseOrderReportFields_14, B.PurchaseOrderReportFields_15, B.PurchaseOrderReportFields_16, B.PurchaseOrderReportFields_17, B.PurchaseOrderReportFields_18, B.PurchaseOrderReportFields_19, B.PurchaseOrderReportFields_20, B.PurchaseOrderReportFields_21, B.PurchaseOrderReportFields_22, B.PurchaseOrderReportFields_23, B.PurchaseOrderReportFields_24, B.PurchaseOrderReportFields_25, B.PurchaseOrderReportFields_26, B.PurchaseOrderReportFields_27, B.PurchaseOrderReportFields_28, B.PurchaseOrderReportFields_29, B.PurchaseOrderReportFields_30, B.PurchaseOrderReportFields_31, B.PurchaseOrderReportFields_32, B.PurchaseOrderReportFields_33, B.PurchaseOrderReportFields_34, B.PurchaseOrderReportFields_35, B.PurchaseOrderReportFields_36, B.PurchaseOrderReportFields_37, B.PurchaseOrderReportFields_38, B.PurchaseOrderReportFields_39, B.PurchaseOrderReportFields_40, B.PurchaseOrderReportFields_41, B.PurchaseOrderReportFields_42, B.PurchaseOrderReportFields_43, B.PurchaseOrderReportFields_44, B.PurchaseOrderReportFields_45, B.PurchaseOrderReportFields_46, B.PurchaseOrderReportFields_47, B.PurchaseOrderReportFields_48, B.PurchaseOrderReportFields_49, B.PurchaseOrderReportFields_50, B.PurchaseOrderReportFields_51, B.PurchaseOrderReportFields_52]), type$.JSArray_legacy_PurchaseOrderReportFields); B.Type_VendorListResponse_zLp = A.typeLiteral("VendorListResponse"); B.Type__$VendorListResponse_Pv7 = A.typeLiteral("_$VendorListResponse"); B.List_MQk = A._setArrayType(makeConstList([B.Type_VendorListResponse_zLp, B.Type__$VendorListResponse_Pv7]), type$.JSArray_legacy_Type); B.Type__$ClientContactEntity_8gt = A.typeLiteral("_$ClientContactEntity"); B.List_MUw = A._setArrayType(makeConstList([B.Type_ClientContactEntity_yrB, B.Type__$ClientContactEntity_8gt]), type$.JSArray_legacy_Type); B.Type_GroupListResponse_Iwp = A.typeLiteral("GroupListResponse"); B.Type__$GroupListResponse_LZB = A.typeLiteral("_$GroupListResponse"); B.List_MUw0 = A._setArrayType(makeConstList([B.Type_GroupListResponse_Iwp, B.Type__$GroupListResponse_LZB]), type$.JSArray_legacy_Type); B.Type_DocumentListResponse_AEn = A.typeLiteral("DocumentListResponse"); B.Type__$DocumentListResponse_okl = A.typeLiteral("_$DocumentListResponse"); B.List_MYA = A._setArrayType(makeConstList([B.Type_DocumentListResponse_AEn, B.Type__$DocumentListResponse_okl]), type$.JSArray_legacy_Type); B.Type__$DashboardUISettings_cM5 = A.typeLiteral("_$DashboardUISettings"); B.List_MYE = A._setArrayType(makeConstList([B.Type_DashboardUISettings_cg9, B.Type__$DashboardUISettings_cM5]), type$.JSArray_legacy_Type); B._RouteRestorationType_0 = new A._RouteRestorationType(0, "named"); B._RouteRestorationType_1 = new A._RouteRestorationType(1, "anonymous"); B.List_MYz = A._setArrayType(makeConstList([B._RouteRestorationType_0, B._RouteRestorationType_1]), A.findType("JSArray<_RouteRestorationType*>")); B.Type_InvoiceItemResponse_GJk = A.typeLiteral("InvoiceItemResponse"); B.Type__$InvoiceItemResponse_TDC = A.typeLiteral("_$InvoiceItemResponse"); B.List_Mkn = A._setArrayType(makeConstList([B.Type_InvoiceItemResponse_GJk, B.Type__$InvoiceItemResponse_TDC]), type$.JSArray_legacy_Type); B.Type__$InvitationEntity_0mj = A.typeLiteral("_$InvitationEntity"); B.List_NQk = A._setArrayType(makeConstList([B.Type_InvitationEntity_qtf, B.Type__$InvitationEntity_0mj]), type$.JSArray_legacy_Type); B.Type_PaymentListResponse_R2g = A.typeLiteral("PaymentListResponse"); B.Type__$PaymentListResponse_0pA = A.typeLiteral("_$PaymentListResponse"); B.List_NQk0 = A._setArrayType(makeConstList([B.Type_PaymentListResponse_R2g, B.Type__$PaymentListResponse_0pA]), type$.JSArray_legacy_Type); B.List_NUU = A._setArrayType(makeConstList([0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28]), type$.JSArray_legacy_int); B.Type_LanguageItemResponse_c8P = A.typeLiteral("LanguageItemResponse"); B.Type__$LanguageItemResponse_YOT = A.typeLiteral("_$LanguageItemResponse"); B.List_NcA = A._setArrayType(makeConstList([B.Type_LanguageItemResponse_c8P, B.Type__$LanguageItemResponse_YOT]), type$.JSArray_legacy_Type); B.Type__$GatewayTokenEntity_uwZ = A.typeLiteral("_$GatewayTokenEntity"); B.List_Now = A._setArrayType(makeConstList([B.Type_GatewayTokenEntity_goM, B.Type__$GatewayTokenEntity_uwZ]), type$.JSArray_legacy_Type); B.Type__$DesignEntity_0 = A.typeLiteral("_$DesignEntity"); B.List_O9m = A._setArrayType(makeConstList([B.Type_DesignEntity_0, B.Type__$DesignEntity_0]), type$.JSArray_legacy_Type); B.Type__$ExpenseState_o5r = A.typeLiteral("_$ExpenseState"); B.List_OXO = A._setArrayType(makeConstList([B.Type_ExpenseState_yzp, B.Type__$ExpenseState_o5r]), type$.JSArray_legacy_Type); B.Type__$LanguageEntity_bTF = A.typeLiteral("_$LanguageEntity"); B.List_Ohq = A._setArrayType(makeConstList([B.Type_LanguageEntity_eDt, B.Type__$LanguageEntity_bTF]), type$.JSArray_legacy_Type); B.Type__$LedgerEntity_QwF = A.typeLiteral("_$LedgerEntity"); B.List_P7V = A._setArrayType(makeConstList([B.Type_LedgerEntity_mHe, B.Type__$LedgerEntity_QwF]), type$.JSArray_legacy_Type); B.Type_TimezoneItemResponse_Yiv = A.typeLiteral("TimezoneItemResponse"); B.Type__$TimezoneItemResponse_43h = A.typeLiteral("_$TimezoneItemResponse"); B.List_Phi = A._setArrayType(makeConstList([B.Type_TimezoneItemResponse_Yiv, B.Type__$TimezoneItemResponse_43h]), type$.JSArray_legacy_Type); B.Type__$ProductEntity_bMg = A.typeLiteral("_$ProductEntity"); B.List_PiJ = A._setArrayType(makeConstList([B.Type_ProductEntity_P4I, B.Type__$ProductEntity_bMg]), type$.JSArray_legacy_Type); B.List_Q1_Q2_Q3_Q4 = A._setArrayType(makeConstList(["Q1", "Q2", "Q3", "Q4"]), type$.JSArray_legacy_String); B.Type__$ReportSettingsEntity_inD = A.typeLiteral("_$ReportSettingsEntity"); B.List_QLF0 = A._setArrayType(makeConstList([B.Type_ReportSettingsEntity_piR, B.Type__$ReportSettingsEntity_inD]), type$.JSArray_legacy_Type); B.List_QLF = A._setArrayType(makeConstList([11, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111]), type$.JSArray_legacy_int); B.RecurringInvoiceReportFields_0 = new A.RecurringInvoiceReportFields(0, "id"); B.RecurringInvoiceReportFields_1 = new A.RecurringInvoiceReportFields(1, "amount"); B.RecurringInvoiceReportFields_2 = new A.RecurringInvoiceReportFields(2, "converted_amount"); B.RecurringInvoiceReportFields_3 = new A.RecurringInvoiceReportFields(3, "client"); B.RecurringInvoiceReportFields_4 = new A.RecurringInvoiceReportFields(4, "client_number"); B.RecurringInvoiceReportFields_5 = new A.RecurringInvoiceReportFields(5, "client_balance"); B.RecurringInvoiceReportFields_6 = new A.RecurringInvoiceReportFields(6, "client_address1"); B.RecurringInvoiceReportFields_7 = new A.RecurringInvoiceReportFields(7, "client_address2"); B.RecurringInvoiceReportFields_8 = new A.RecurringInvoiceReportFields(8, "client_vat_number"); B.RecurringInvoiceReportFields_9 = new A.RecurringInvoiceReportFields(9, "client_city"); B.RecurringInvoiceReportFields_10 = new A.RecurringInvoiceReportFields(10, "client_postal_code"); B.RecurringInvoiceReportFields_11 = new A.RecurringInvoiceReportFields(11, "client_country"); B.RecurringInvoiceReportFields_12 = new A.RecurringInvoiceReportFields(12, "client_shipping_address1"); B.RecurringInvoiceReportFields_13 = new A.RecurringInvoiceReportFields(13, "client_shipping_address2"); B.RecurringInvoiceReportFields_14 = new A.RecurringInvoiceReportFields(14, "client_state"); B.RecurringInvoiceReportFields_15 = new A.RecurringInvoiceReportFields(15, "client_shipping_city"); B.RecurringInvoiceReportFields_16 = new A.RecurringInvoiceReportFields(16, "client_shipping_state"); B.RecurringInvoiceReportFields_17 = new A.RecurringInvoiceReportFields(17, "client_shipping_postal_code"); B.RecurringInvoiceReportFields_18 = new A.RecurringInvoiceReportFields(18, "client_shipping_country"); B.RecurringInvoiceReportFields_19 = new A.RecurringInvoiceReportFields(19, "status"); B.RecurringInvoiceReportFields_20 = new A.RecurringInvoiceReportFields(20, "number"); B.RecurringInvoiceReportFields_21 = new A.RecurringInvoiceReportFields(21, "discount"); B.RecurringInvoiceReportFields_22 = new A.RecurringInvoiceReportFields(22, "po_number"); B.RecurringInvoiceReportFields_23 = new A.RecurringInvoiceReportFields(23, "auto_bill"); B.RecurringInvoiceReportFields_24 = new A.RecurringInvoiceReportFields(24, "invoice1"); B.RecurringInvoiceReportFields_25 = new A.RecurringInvoiceReportFields(25, "invoice2"); B.RecurringInvoiceReportFields_26 = new A.RecurringInvoiceReportFields(26, "invoice3"); B.RecurringInvoiceReportFields_27 = new A.RecurringInvoiceReportFields(27, "invoice4"); B.RecurringInvoiceReportFields_28 = new A.RecurringInvoiceReportFields(28, "has_expenses"); B.RecurringInvoiceReportFields_29 = new A.RecurringInvoiceReportFields(29, "has_tasks"); B.RecurringInvoiceReportFields_30 = new A.RecurringInvoiceReportFields(30, "surcharge1"); B.RecurringInvoiceReportFields_31 = new A.RecurringInvoiceReportFields(31, "surcharge2"); B.RecurringInvoiceReportFields_32 = new A.RecurringInvoiceReportFields(32, "surcharge3"); B.RecurringInvoiceReportFields_33 = new A.RecurringInvoiceReportFields(33, "surcharge4"); B.RecurringInvoiceReportFields_34 = new A.RecurringInvoiceReportFields(34, "updated_at"); B.RecurringInvoiceReportFields_35 = new A.RecurringInvoiceReportFields(35, "archived_at"); B.RecurringInvoiceReportFields_36 = new A.RecurringInvoiceReportFields(36, "is_deleted"); B.RecurringInvoiceReportFields_37 = new A.RecurringInvoiceReportFields(37, "tax_amount"); B.RecurringInvoiceReportFields_38 = new A.RecurringInvoiceReportFields(38, "net_amount"); B.RecurringInvoiceReportFields_39 = new A.RecurringInvoiceReportFields(39, "net_balance"); B.RecurringInvoiceReportFields_40 = new A.RecurringInvoiceReportFields(40, "reminder1_sent"); B.RecurringInvoiceReportFields_41 = new A.RecurringInvoiceReportFields(41, "reminder2_sent"); B.RecurringInvoiceReportFields_42 = new A.RecurringInvoiceReportFields(42, "reminder3_sent"); B.RecurringInvoiceReportFields_43 = new A.RecurringInvoiceReportFields(43, "reminder_last_sent"); B.RecurringInvoiceReportFields_44 = new A.RecurringInvoiceReportFields(44, "exchange_rate"); B.RecurringInvoiceReportFields_45 = new A.RecurringInvoiceReportFields(45, "public_notes"); B.RecurringInvoiceReportFields_46 = new A.RecurringInvoiceReportFields(46, "private_notes"); B.RecurringInvoiceReportFields_47 = new A.RecurringInvoiceReportFields(47, "client_website"); B.RecurringInvoiceReportFields_48 = new A.RecurringInvoiceReportFields(48, "tax_rate1"); B.RecurringInvoiceReportFields_49 = new A.RecurringInvoiceReportFields(49, "tax_rate2"); B.RecurringInvoiceReportFields_50 = new A.RecurringInvoiceReportFields(50, "tax_rate3"); B.RecurringInvoiceReportFields_51 = new A.RecurringInvoiceReportFields(51, "tax_name1"); B.RecurringInvoiceReportFields_52 = new A.RecurringInvoiceReportFields(52, "tax_name2"); B.RecurringInvoiceReportFields_53 = new A.RecurringInvoiceReportFields(53, "tax_name3"); B.RecurringInvoiceReportFields_54 = new A.RecurringInvoiceReportFields(54, "currency"); B.RecurringInvoiceReportFields_55 = new A.RecurringInvoiceReportFields(55, "assigned_to"); B.RecurringInvoiceReportFields_56 = new A.RecurringInvoiceReportFields(56, "created_by"); B.RecurringInvoiceReportFields_57 = new A.RecurringInvoiceReportFields(57, "project"); B.RecurringInvoiceReportFields_58 = new A.RecurringInvoiceReportFields(58, "vendor"); B.RecurringInvoiceReportFields_59 = new A.RecurringInvoiceReportFields(59, "is_paid"); B.RecurringInvoiceReportFields_60 = new A.RecurringInvoiceReportFields(60, "client_phone"); B.RecurringInvoiceReportFields_61 = new A.RecurringInvoiceReportFields(61, "contact_email"); B.RecurringInvoiceReportFields_62 = new A.RecurringInvoiceReportFields(62, "contact_phone"); B.RecurringInvoiceReportFields_63 = new A.RecurringInvoiceReportFields(63, "contact_name"); B.RecurringInvoiceReportFields_64 = new A.RecurringInvoiceReportFields(64, "frequency"); B.RecurringInvoiceReportFields_65 = new A.RecurringInvoiceReportFields(65, "start_date"); B.RecurringInvoiceReportFields_66 = new A.RecurringInvoiceReportFields(66, "remaining_cycles"); B.List_QXJ = A._setArrayType(makeConstList([B.RecurringInvoiceReportFields_0, B.RecurringInvoiceReportFields_1, B.RecurringInvoiceReportFields_2, B.RecurringInvoiceReportFields_3, B.RecurringInvoiceReportFields_4, B.RecurringInvoiceReportFields_5, B.RecurringInvoiceReportFields_6, B.RecurringInvoiceReportFields_7, B.RecurringInvoiceReportFields_8, B.RecurringInvoiceReportFields_9, B.RecurringInvoiceReportFields_10, B.RecurringInvoiceReportFields_11, B.RecurringInvoiceReportFields_12, B.RecurringInvoiceReportFields_13, B.RecurringInvoiceReportFields_14, B.RecurringInvoiceReportFields_15, B.RecurringInvoiceReportFields_16, B.RecurringInvoiceReportFields_17, B.RecurringInvoiceReportFields_18, B.RecurringInvoiceReportFields_19, B.RecurringInvoiceReportFields_20, B.RecurringInvoiceReportFields_21, B.RecurringInvoiceReportFields_22, B.RecurringInvoiceReportFields_23, B.RecurringInvoiceReportFields_24, B.RecurringInvoiceReportFields_25, B.RecurringInvoiceReportFields_26, B.RecurringInvoiceReportFields_27, B.RecurringInvoiceReportFields_28, B.RecurringInvoiceReportFields_29, B.RecurringInvoiceReportFields_30, B.RecurringInvoiceReportFields_31, B.RecurringInvoiceReportFields_32, B.RecurringInvoiceReportFields_33, B.RecurringInvoiceReportFields_34, B.RecurringInvoiceReportFields_35, B.RecurringInvoiceReportFields_36, B.RecurringInvoiceReportFields_37, B.RecurringInvoiceReportFields_38, B.RecurringInvoiceReportFields_39, B.RecurringInvoiceReportFields_40, B.RecurringInvoiceReportFields_41, B.RecurringInvoiceReportFields_42, B.RecurringInvoiceReportFields_43, B.RecurringInvoiceReportFields_44, B.RecurringInvoiceReportFields_45, B.RecurringInvoiceReportFields_46, B.RecurringInvoiceReportFields_47, B.RecurringInvoiceReportFields_48, B.RecurringInvoiceReportFields_49, B.RecurringInvoiceReportFields_50, B.RecurringInvoiceReportFields_51, B.RecurringInvoiceReportFields_52, B.RecurringInvoiceReportFields_53, B.RecurringInvoiceReportFields_54, B.RecurringInvoiceReportFields_55, B.RecurringInvoiceReportFields_56, B.RecurringInvoiceReportFields_57, B.RecurringInvoiceReportFields_58, B.RecurringInvoiceReportFields_59, B.RecurringInvoiceReportFields_60, B.RecurringInvoiceReportFields_61, B.RecurringInvoiceReportFields_62, B.RecurringInvoiceReportFields_63, B.RecurringInvoiceReportFields_64, B.RecurringInvoiceReportFields_65, B.RecurringInvoiceReportFields_66]), type$.JSArray_legacy_RecurringInvoiceReportFields); B.List_QXN = A._setArrayType(makeConstList(["af", "am", "ar", "as", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en", "es", "et", "eu", "fa", "fi", "fil", "fr", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "pt", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zu"]), type$.JSArray_legacy_String); B.List_QcX = A._setArrayType(makeConstList(["table", "tbody", "tfoot", "thead", "tr"]), type$.JSArray_legacy_String); B.Type_SubscriptionItemResponse_uzU = A.typeLiteral("SubscriptionItemResponse"); B.Type__$SubscriptionItemResponse_pM4 = A.typeLiteral("_$SubscriptionItemResponse"); B.List_QgW = A._setArrayType(makeConstList([B.Type_SubscriptionItemResponse_uzU, B.Type__$SubscriptionItemResponse_pM4]), type$.JSArray_legacy_Type); B.Type_SubscriptionListResponse_uzU = A.typeLiteral("SubscriptionListResponse"); B.Type__$SubscriptionListResponse_pM4 = A.typeLiteral("_$SubscriptionListResponse"); B.List_QgW0 = A._setArrayType(makeConstList([B.Type_SubscriptionListResponse_uzU, B.Type__$SubscriptionListResponse_pM4]), type$.JSArray_legacy_Type); B.Type__$ExpenseCategoryEntity_apI = A.typeLiteral("_$ExpenseCategoryEntity"); B.List_QoN = A._setArrayType(makeConstList([B.Type_ExpenseCategoryEntity_ccl, B.Type__$ExpenseCategoryEntity_apI]), type$.JSArray_legacy_Type); B.Type_TaxRateListResponse_2jN = A.typeLiteral("TaxRateListResponse"); B.Type__$TaxRateListResponse_atK = A.typeLiteral("_$TaxRateListResponse"); B.List_Qwv = A._setArrayType(makeConstList([B.Type_TaxRateListResponse_2jN, B.Type__$TaxRateListResponse_atK]), type$.JSArray_legacy_Type); B.Type__$DocumentUIState_MYA = A.typeLiteral("_$DocumentUIState"); B.List_ROa = A._setArrayType(makeConstList([B.Type_DocumentUIState_CyS, B.Type__$DocumentUIState_MYA]), type$.JSArray_legacy_Type); B.Pair_0 = new A.Pair("http://www.w3.org/1999/xhtml", "ol", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_RXb = new A.Pair("http://www.w3.org/1999/xhtml", "ul", type$.Pair_of_legacy_String_and_legacy_String); B.List_RXb = A._setArrayType(makeConstList([B.Pair_0, B.Pair_RXb]), type$.JSArray_dynamic); B.Type__$ListUIState_fWW = A.typeLiteral("_$ListUIState"); B.List_RsV = A._setArrayType(makeConstList([B.Type_ListUIState_46y, B.Type__$ListUIState_fWW]), type$.JSArray_legacy_Type); B.Type_UserListResponse_AP0 = A.typeLiteral("UserListResponse"); B.Type__$UserListResponse_cAk = A.typeLiteral("_$UserListResponse"); B.List_RsV0 = A._setArrayType(makeConstList([B.Type_UserListResponse_AP0, B.Type__$UserListResponse_cAk]), type$.JSArray_legacy_Type); B.Type__$SettingsUIState_TYx = A.typeLiteral("_$SettingsUIState"); B.List_SFj = A._setArrayType(makeConstList([B.Type_SettingsUIState_kvD, B.Type__$SettingsUIState_TYx]), type$.JSArray_legacy_Type); B.Type__$QuoteUIState_gbq = A.typeLiteral("_$QuoteUIState"); B.List_SIL = A._setArrayType(makeConstList([B.Type_QuoteUIState_WI9, B.Type__$QuoteUIState_gbq]), type$.JSArray_legacy_Type); B.Type__$DateFormatEntity_g7r = A.typeLiteral("_$DateFormatEntity"); B.List_SJx = A._setArrayType(makeConstList([B.Type_DateFormatEntity_OME, B.Type__$DateFormatEntity_g7r]), type$.JSArray_legacy_Type); B.List_SL9 = A._setArrayType(makeConstList(["ar", "fa", "he", "ps", "ur"]), type$.JSArray_legacy_String); B.Type_GroupItemResponse_9we = A.typeLiteral("GroupItemResponse"); B.Type__$GroupItemResponse_LZB = A.typeLiteral("_$GroupItemResponse"); B.List_SLW = A._setArrayType(makeConstList([B.Type_GroupItemResponse_9we, B.Type__$GroupItemResponse_LZB]), type$.JSArray_legacy_Type); B.Offset_1_0 = new A.Offset(1, 0); B.Offset_1_1 = new A.Offset(1, 1); B.Offset_0_1 = new A.Offset(0, 1); B.Offset_m1_1 = new A.Offset(-1, 1); B.Offset_m1_0 = new A.Offset(-1, 0); B.Offset_m1_m1 = new A.Offset(-1, -1); B.Offset_0_m1 = new A.Offset(0, -1); B.Offset_1_m1 = new A.Offset(1, -1); B.List_SbI = A._setArrayType(makeConstList([B.Offset_1_0, B.Offset_1_1, B.Offset_0_1, B.Offset_m1_1, B.Offset_m1_0, B.Offset_m1_m1, B.Offset_0_m1, B.Offset_1_m1]), A.findType("JSArray")); B.List_Sfa = A._setArrayType(makeConstList(["invoice_created", "invoice_sent", "invoice_viewed", "invoice_late", "payment_success", "payment_failure", "quote_created", "quote_sent", "quote_viewed", "quote_approved", "quote_expired", "credit_created", "credit_sent", "credit_viewed"]), type$.JSArray_legacy_String); B.ProfitAndLossReportFields_0 = new A.ProfitAndLossReportFields(0, "client"); B.ProfitAndLossReportFields_1 = new A.ProfitAndLossReportFields(1, "client_address1"); B.ProfitAndLossReportFields_2 = new A.ProfitAndLossReportFields(2, "client_address2"); B.ProfitAndLossReportFields_3 = new A.ProfitAndLossReportFields(3, "client_city"); B.ProfitAndLossReportFields_4 = new A.ProfitAndLossReportFields(4, "client_state"); B.ProfitAndLossReportFields_5 = new A.ProfitAndLossReportFields(5, "client_country"); B.ProfitAndLossReportFields_6 = new A.ProfitAndLossReportFields(6, "vendor"); B.ProfitAndLossReportFields_7 = new A.ProfitAndLossReportFields(7, "vendor_address1"); B.ProfitAndLossReportFields_8 = new A.ProfitAndLossReportFields(8, "vendor_address2"); B.ProfitAndLossReportFields_9 = new A.ProfitAndLossReportFields(9, "vendor_city"); B.ProfitAndLossReportFields_10 = new A.ProfitAndLossReportFields(10, "vendor_state"); B.ProfitAndLossReportFields_11 = new A.ProfitAndLossReportFields(11, "vendor_country"); B.ProfitAndLossReportFields_12 = new A.ProfitAndLossReportFields(12, "type"); B.ProfitAndLossReportFields_13 = new A.ProfitAndLossReportFields(13, "amount"); B.ProfitAndLossReportFields_14 = new A.ProfitAndLossReportFields(14, "payment"); B.ProfitAndLossReportFields_15 = new A.ProfitAndLossReportFields(15, "expense"); B.ProfitAndLossReportFields_16 = new A.ProfitAndLossReportFields(16, "profit"); B.ProfitAndLossReportFields_17 = new A.ProfitAndLossReportFields(17, "date"); B.ProfitAndLossReportFields_18 = new A.ProfitAndLossReportFields(18, "category"); B.List_T8q = A._setArrayType(makeConstList([B.ProfitAndLossReportFields_0, B.ProfitAndLossReportFields_1, B.ProfitAndLossReportFields_2, B.ProfitAndLossReportFields_3, B.ProfitAndLossReportFields_4, B.ProfitAndLossReportFields_5, B.ProfitAndLossReportFields_6, B.ProfitAndLossReportFields_7, B.ProfitAndLossReportFields_8, B.ProfitAndLossReportFields_9, B.ProfitAndLossReportFields_10, B.ProfitAndLossReportFields_11, B.ProfitAndLossReportFields_12, B.ProfitAndLossReportFields_13, B.ProfitAndLossReportFields_14, B.ProfitAndLossReportFields_15, B.ProfitAndLossReportFields_16, B.ProfitAndLossReportFields_17, B.ProfitAndLossReportFields_18]), type$.JSArray_legacy_ProfitAndLossReportFields); B.Type__$CountryEntity_HRq = A.typeLiteral("_$CountryEntity"); B.List_THJ = A._setArrayType(makeConstList([B.Type_CountryEntity_1Wj, B.Type__$CountryEntity_HRq]), type$.JSArray_legacy_Type); B.TextAffinity_0 = new A.TextAffinity(0, "upstream"); B.List_TextAffinity_0_TextAffinity_1 = A._setArrayType(makeConstList([B.TextAffinity_0, B.TextAffinity_1]), A.findType("JSArray")); B.TextDirection_0 = new A.TextDirection(0, "rtl"); B.TextDirection_1 = new A.TextDirection(1, "ltr"); B.List_TextDirection_0_TextDirection_1 = A._setArrayType(makeConstList([B.TextDirection_0, B.TextDirection_1]), A.findType("JSArray")); B.Type__$SubscriptionUIState_mR7 = A.typeLiteral("_$SubscriptionUIState"); B.List_Tfa = A._setArrayType(makeConstList([B.Type_SubscriptionUIState_jf1, B.Type__$SubscriptionUIState_mR7]), type$.JSArray_legacy_Type); B.Type__$InvoiceItemEntity_tdJ = A.typeLiteral("_$InvoiceItemEntity"); B.List_Tph = A._setArrayType(makeConstList([B.Type_InvoiceItemEntity_23h, B.Type__$InvoiceItemEntity_tdJ]), type$.JSArray_legacy_Type); B.List_Type_AppLayout_co1 = A._setArrayType(makeConstList([B.Type_AppLayout_co1]), type$.JSArray_legacy_Type); B.List_Type_AppSidebarMode_ZeT = A._setArrayType(makeConstList([B.Type_AppSidebarMode_ZeT]), type$.JSArray_legacy_Type); B.List_Type_DateRangeComparison_wco = A._setArrayType(makeConstList([B.Type_DateRangeComparison_wco]), type$.JSArray_legacy_Type); B.List_Type_DateRange_avx = A._setArrayType(makeConstList([B.Type_DateRange_avx]), type$.JSArray_legacy_Type); B.List_Type_EmailTemplate_GAI = A._setArrayType(makeConstList([B.Type_EmailTemplate_GAI]), type$.JSArray_legacy_Type); B.List_Type_EntityState_NQk = A._setArrayType(makeConstList([B.Type_EntityState_NQk]), type$.JSArray_legacy_Type); B.List_Type_EntityType_6qb = A._setArrayType(makeConstList([B.Type_EntityType_6qb]), type$.JSArray_legacy_Type); B.List_Type_ModuleLayout_0mz = A._setArrayType(makeConstList([B.Type_ModuleLayout_0mz]), type$.JSArray_legacy_Type); B.Type_CompanyGatewayItemResponse_OLF = A.typeLiteral("CompanyGatewayItemResponse"); B.Type__$CompanyGatewayItemResponse_XJ7 = A.typeLiteral("_$CompanyGatewayItemResponse"); B.List_U3i = A._setArrayType(makeConstList([B.Type_CompanyGatewayItemResponse_OLF, B.Type__$CompanyGatewayItemResponse_XJ7]), type$.JSArray_legacy_Type); B.Permission_0 = new A.Permission(0); B.Permission_1 = new A.Permission(1); B.Permission_2 = new A.Permission(2); B.PermissionWithService_3 = new A.PermissionWithService(3); B.PermissionWithService_4 = new A.PermissionWithService(4); B.PermissionWithService_5 = new A.PermissionWithService(5); B.Permission_6 = new A.Permission(6); B.Permission_7 = new A.Permission(7); B.PermissionWithService_8 = new A.PermissionWithService(8); B.Permission_9 = new A.Permission(9); B.Permission_10 = new A.Permission(10); B.Permission_11 = new A.Permission(11); B.Permission_12 = new A.Permission(12); B.Permission_13 = new A.Permission(13); B.Permission_14 = new A.Permission(14); B.Permission_15 = new A.Permission(15); B.Permission_16 = new A.Permission(16); B.Permission_17 = new A.Permission(17); B.Permission_18 = new A.Permission(18); B.Permission_19 = new A.Permission(19); B.Permission_20 = new A.Permission(20); B.Permission_21 = new A.Permission(21); B.Permission_22 = new A.Permission(22); B.Permission_23 = new A.Permission(23); B.Permission_24 = new A.Permission(24); B.Permission_25 = new A.Permission(25); B.Permission_26 = new A.Permission(26); B.Permission_27 = new A.Permission(27); B.Permission_28 = new A.Permission(28); B.Permission_29 = new A.Permission(29); B.Permission_30 = new A.Permission(30); B.List_U8N = A._setArrayType(makeConstList([B.Permission_0, B.Permission_1, B.Permission_2, B.PermissionWithService_3, B.PermissionWithService_4, B.PermissionWithService_5, B.Permission_6, B.Permission_7, B.PermissionWithService_8, B.Permission_9, B.Permission_10, B.Permission_11, B.Permission_12, B.Permission_13, B.Permission_14, B.Permission_15, B.Permission_16, B.Permission_17, B.Permission_18, B.Permission_19, B.Permission_20, B.Permission_21, B.Permission_22, B.Permission_23, B.Permission_24, B.Permission_25, B.Permission_26, B.Permission_27, B.Permission_28, B.Permission_29, B.Permission_30]), A.findType("JSArray")); B.Type__$TimezoneEntity_59Q = A.typeLiteral("_$TimezoneEntity"); B.List_U8b = A._setArrayType(makeConstList([B.Type_TimezoneEntity_fPO, B.Type__$TimezoneEntity_59Q]), type$.JSArray_legacy_Type); B.List_unit_value = A._setArrayType(makeConstList(["unit", "value"]), type$.JSArray_legacy_String); B.Map_El4a4 = new A.ConstantStringMap(2, {unit: 600, value: "em"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Eli9K = new A.ConstantStringMap(2, {unit: 601, value: "ex"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElslV = new A.ConstantStringMap(2, {unit: 602, value: "px"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElTcW = new A.ConstantStringMap(2, {unit: 603, value: "cm"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Elg8f = new A.ConstantStringMap(2, {unit: 604, value: "mm"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElQ9z = new A.ConstantStringMap(2, {unit: 605, value: "in"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_El4N0 = new A.ConstantStringMap(2, {unit: 606, value: "pt"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Ely1e = new A.ConstantStringMap(2, {unit: 607, value: "pc"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElOpy = new A.ConstantStringMap(2, {unit: 608, value: "deg"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElpsY = new A.ConstantStringMap(2, {unit: 609, value: "rad"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_El8eb = new A.ConstantStringMap(2, {unit: 610, value: "grad"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Elkwk = new A.ConstantStringMap(2, {unit: 611, value: "turn"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElC9x = new A.ConstantStringMap(2, {unit: 612, value: "ms"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Elgg4 = new A.ConstantStringMap(2, {unit: 613, value: "s"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElFcu = new A.ConstantStringMap(2, {unit: 614, value: "hz"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElwMy = new A.ConstantStringMap(2, {unit: 615, value: "khz"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElJZS = new A.ConstantStringMap(2, {unit: 617, value: "fr"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_El85q = new A.ConstantStringMap(2, {unit: 618, value: "dpi"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElF9d = new A.ConstantStringMap(2, {unit: 619, value: "dpcm"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElTXs = new A.ConstantStringMap(2, {unit: 620, value: "dppx"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_El60i = new A.ConstantStringMap(2, {unit: 621, value: "ch"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_EleMT = new A.ConstantStringMap(2, {unit: 622, value: "rem"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElmBP = new A.ConstantStringMap(2, {unit: 623, value: "vw"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElaJC = new A.ConstantStringMap(2, {unit: 624, value: "vh"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_Elww8 = new A.ConstantStringMap(2, {unit: 625, value: "vmin"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_ElGb2 = new A.ConstantStringMap(2, {unit: 626, value: "vmax"}, B.List_unit_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_UJh = A._setArrayType(makeConstList([B.Map_El4a4, B.Map_Eli9K, B.Map_ElslV, B.Map_ElTcW, B.Map_Elg8f, B.Map_ElQ9z, B.Map_El4N0, B.Map_Ely1e, B.Map_ElOpy, B.Map_ElpsY, B.Map_El8eb, B.Map_Elkwk, B.Map_ElC9x, B.Map_Elgg4, B.Map_ElFcu, B.Map_ElwMy, B.Map_ElJZS, B.Map_El85q, B.Map_ElF9d, B.Map_ElTXs, B.Map_El60i, B.Map_EleMT, B.Map_ElmBP, B.Map_ElaJC, B.Map_Elww8, B.Map_ElGb2]), type$.JSArray_legacy_Map_of_legacy_String_and_dynamic); B.Type_StaticDataItemResponse_6WV = A.typeLiteral("StaticDataItemResponse"); B.Type__$StaticDataItemResponse_yTI = A.typeLiteral("_$StaticDataItemResponse"); B.List_UNp = A._setArrayType(makeConstList([B.Type_StaticDataItemResponse_6WV, B.Type__$StaticDataItemResponse_yTI]), type$.JSArray_legacy_Type); B.Color_855638016 = new A.Color(855638016); B.Offset_0_2 = new A.Offset(0, 2); B.BoxShadow_HZc = new A.BoxShadow(-1, B.BlurStyle_0, B.Color_855638016, B.Offset_0_2, 1); B.Color_603979776 = new A.Color(603979776); B.BoxShadow_oyn2 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_603979776, B.Offset_0_1, 1); B.BoxShadow_oyn3 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_520093696, B.Offset_0_1, 3); B.List_UOM = A._setArrayType(makeConstList([B.BoxShadow_HZc, B.BoxShadow_oyn2, B.BoxShadow_oyn3]), type$.JSArray_legacy_BoxShadow); B.Type__$PaymentState_ES6 = A.typeLiteral("_$PaymentState"); B.List_UOT = A._setArrayType(makeConstList([B.Type_PaymentState_ChD, B.Type__$PaymentState_ES6]), type$.JSArray_legacy_Type); B.Type_SizeItemResponse_mV4 = A.typeLiteral("SizeItemResponse"); B.Type__$SizeItemResponse_f7L = A.typeLiteral("_$SizeItemResponse"); B.List_USZ = A._setArrayType(makeConstList([B.Type_SizeItemResponse_mV4, B.Type__$SizeItemResponse_f7L]), type$.JSArray_legacy_Type); B._DecorationSlot_0 = new A._DecorationSlot(0, "icon"); B._DecorationSlot_1 = new A._DecorationSlot(1, "input"); B._DecorationSlot_2 = new A._DecorationSlot(2, "label"); B._DecorationSlot_3 = new A._DecorationSlot(3, "hint"); B._DecorationSlot_4 = new A._DecorationSlot(4, "prefix"); B._DecorationSlot_5 = new A._DecorationSlot(5, "suffix"); B._DecorationSlot_6 = new A._DecorationSlot(6, "prefixIcon"); B._DecorationSlot_7 = new A._DecorationSlot(7, "suffixIcon"); B._DecorationSlot_8 = new A._DecorationSlot(8, "helperError"); B._DecorationSlot_9 = new A._DecorationSlot(9, "counter"); B._DecorationSlot_10 = new A._DecorationSlot(10, "container"); B.List_UUO = A._setArrayType(makeConstList([B._DecorationSlot_0, B._DecorationSlot_1, B._DecorationSlot_2, B._DecorationSlot_3, B._DecorationSlot_4, B._DecorationSlot_5, B._DecorationSlot_6, B._DecorationSlot_7, B._DecorationSlot_8, B._DecorationSlot_9, B._DecorationSlot_10]), A.findType("JSArray<_DecorationSlot*>")); B.List_UVg = A._setArrayType(makeConstList([B.LineCharProperty_0, B.LineCharProperty_1, B.LineCharProperty_2, B.LineCharProperty_3, B.LineCharProperty_4, B.LineCharProperty_5, B.LineCharProperty_6, B.LineCharProperty_7, B.LineCharProperty_8, B.LineCharProperty_9, B.LineCharProperty_10, B.LineCharProperty_11, B.LineCharProperty_12, B.LineCharProperty_13, B.LineCharProperty_14, B.LineCharProperty_15, B.LineCharProperty_16, B.LineCharProperty_17, B.LineCharProperty_18, B.LineCharProperty_19, B.LineCharProperty_20, B.LineCharProperty_21, B.LineCharProperty_22, B.LineCharProperty_23, B.LineCharProperty_24, B.LineCharProperty_25, B.LineCharProperty_26, B.LineCharProperty_27, B.LineCharProperty_28, B.LineCharProperty_29, B.LineCharProperty_30, B.LineCharProperty_31, B.LineCharProperty_32, B.LineCharProperty_33, B.LineCharProperty_34, B.LineCharProperty_35, B.LineCharProperty_36]), A.findType("JSArray")); B.C_UrlLinkifier = new A.UrlLinkifier(); B.C_EmailLinkifier = new A.EmailLinkifier(); B.List_UrlLinkifier_EmailLinkifier = A._setArrayType(makeConstList([B.C_UrlLinkifier, B.C_EmailLinkifier]), A.findType("JSArray")); B.Type__$WebhookEntity_MrK = A.typeLiteral("_$WebhookEntity"); B.List_VOT = A._setArrayType(makeConstList([B.Type_WebhookEntity_Cfr, B.Type__$WebhookEntity_MrK]), type$.JSArray_legacy_Type); B.Type__$UserTwoFactorData_B8J = A.typeLiteral("_$UserTwoFactorData"); B.List_Vet = A._setArrayType(makeConstList([B.Type_UserTwoFactorData_wwi, B.Type__$UserTwoFactorData_B8J]), type$.JSArray_legacy_Type); B.Type_DesignItemResponse_skj = A.typeLiteral("DesignItemResponse"); B.Type__$DesignItemResponse_NBt = A.typeLiteral("_$DesignItemResponse"); B.List_VgL = A._setArrayType(makeConstList([B.Type_DesignItemResponse_skj, B.Type__$DesignItemResponse_NBt]), type$.JSArray_legacy_Type); B.List_Vqn = A._setArrayType(makeConstList(["area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr"]), type$.JSArray_legacy_String); B.List_WB4 = A._setArrayType(makeConstList([31, -1, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]), type$.JSArray_legacy_int); B.List_Wii = A._setArrayType(makeConstList([B.InvoiceItemReportFields_0, B.InvoiceItemReportFields_1, B.InvoiceItemReportFields_2, B.InvoiceItemReportFields_3, B.InvoiceItemReportFields_4, B.InvoiceItemReportFields_5, B.InvoiceItemReportFields_6, B.InvoiceItemReportFields_7, B.InvoiceItemReportFields_8, B.InvoiceItemReportFields_9, B.InvoiceItemReportFields_10, B.InvoiceItemReportFields_11, B.InvoiceItemReportFields_12, B.InvoiceItemReportFields_13, B.InvoiceItemReportFields_14, B.InvoiceItemReportFields_15, B.InvoiceItemReportFields_16, B.InvoiceItemReportFields_17, B.InvoiceItemReportFields_18, B.InvoiceItemReportFields_19, B.InvoiceItemReportFields_20]), type$.JSArray_legacy_InvoiceItemReportFields); B.List_WrN = A._setArrayType(makeConstList([0, 0, 1048576, 531441, 1048576, 390625, 279936, 823543, 262144, 531441, 1000000, 161051, 248832, 371293, 537824, 759375, 1048576, 83521, 104976, 130321, 160000, 194481, 234256, 279841, 331776, 390625, 456976, 531441, 614656, 707281, 810000, 923521, 1048576, 35937, 39304, 42875, 46656]), type$.JSArray_legacy_int); B.List_WxT = A._setArrayType(makeConstList(["-//w3c//dtd html 4.01 frameset//", "-//w3c//dtd html 4.01 transitional//"]), type$.JSArray_legacy_String); B.List_X3d = A._setArrayType(makeConstList([0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13]), type$.JSArray_legacy_int); B.List_X3d0 = A._setArrayType(makeConstList([0, 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576]), type$.JSArray_legacy_int); B.List_X3d1 = A._setArrayType(makeConstList([5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]), type$.JSArray_legacy_int); B.Type__$UserSettingsEntity_cQi = A.typeLiteral("_$UserSettingsEntity"); B.List_XBZ = A._setArrayType(makeConstList([B.Type_UserSettingsEntity_ES6, B.Type__$UserSettingsEntity_cQi]), type$.JSArray_legacy_Type); B.Type_WebhookListResponse_dK2 = A.typeLiteral("WebhookListResponse"); B.Type__$WebhookListResponse_7Nb = A.typeLiteral("_$WebhookListResponse"); B.List_XRi = A._setArrayType(makeConstList([B.Type_WebhookListResponse_dK2, B.Type__$WebhookListResponse_7Nb]), type$.JSArray_legacy_Type); B.List_Xg4 = A._setArrayType(makeConstList([12, 8, 140, 8, 76, 8, 204, 8, 44, 8, 172, 8, 108, 8, 236, 8, 28, 8, 156, 8, 92, 8, 220, 8, 60, 8, 188, 8, 124, 8, 252, 8, 2, 8, 130, 8, 66, 8, 194, 8, 34, 8, 162, 8, 98, 8, 226, 8, 18, 8, 146, 8, 82, 8, 210, 8, 50, 8, 178, 8, 114, 8, 242, 8, 10, 8, 138, 8, 74, 8, 202, 8, 42, 8, 170, 8, 106, 8, 234, 8, 26, 8, 154, 8, 90, 8, 218, 8, 58, 8, 186, 8, 122, 8, 250, 8, 6, 8, 134, 8, 70, 8, 198, 8, 38, 8, 166, 8, 102, 8, 230, 8, 22, 8, 150, 8, 86, 8, 214, 8, 54, 8, 182, 8, 118, 8, 246, 8, 14, 8, 142, 8, 78, 8, 206, 8, 46, 8, 174, 8, 110, 8, 238, 8, 30, 8, 158, 8, 94, 8, 222, 8, 62, 8, 190, 8, 126, 8, 254, 8, 1, 8, 129, 8, 65, 8, 193, 8, 33, 8, 161, 8, 97, 8, 225, 8, 17, 8, 145, 8, 81, 8, 209, 8, 49, 8, 177, 8, 113, 8, 241, 8, 9, 8, 137, 8, 73, 8, 201, 8, 41, 8, 169, 8, 105, 8, 233, 8, 25, 8, 153, 8, 89, 8, 217, 8, 57, 8, 185, 8, 121, 8, 249, 8, 5, 8, 133, 8, 69, 8, 197, 8, 37, 8, 165, 8, 101, 8, 229, 8, 21, 8, 149, 8, 85, 8, 213, 8, 53, 8, 181, 8, 117, 8, 245, 8, 13, 8, 141, 8, 77, 8, 205, 8, 45, 8, 173, 8, 109, 8, 237, 8, 29, 8, 157, 8, 93, 8, 221, 8, 61, 8, 189, 8, 125, 8, 253, 8, 19, 9, 275, 9, 147, 9, 403, 9, 83, 9, 339, 9, 211, 9, 467, 9, 51, 9, 307, 9, 179, 9, 435, 9, 115, 9, 371, 9, 243, 9, 499, 9, 11, 9, 267, 9, 139, 9, 395, 9, 75, 9, 331, 9, 203, 9, 459, 9, 43, 9, 299, 9, 171, 9, 427, 9, 107, 9, 363, 9, 235, 9, 491, 9, 27, 9, 283, 9, 155, 9, 411, 9, 91, 9, 347, 9, 219, 9, 475, 9, 59, 9, 315, 9, 187, 9, 443, 9, 123, 9, 379, 9, 251, 9, 507, 9, 7, 9, 263, 9, 135, 9, 391, 9, 71, 9, 327, 9, 199, 9, 455, 9, 39, 9, 295, 9, 167, 9, 423, 9, 103, 9, 359, 9, 231, 9, 487, 9, 23, 9, 279, 9, 151, 9, 407, 9, 87, 9, 343, 9, 215, 9, 471, 9, 55, 9, 311, 9, 183, 9, 439, 9, 119, 9, 375, 9, 247, 9, 503, 9, 15, 9, 271, 9, 143, 9, 399, 9, 79, 9, 335, 9, 207, 9, 463, 9, 47, 9, 303, 9, 175, 9, 431, 9, 111, 9, 367, 9, 239, 9, 495, 9, 31, 9, 287, 9, 159, 9, 415, 9, 95, 9, 351, 9, 223, 9, 479, 9, 63, 9, 319, 9, 191, 9, 447, 9, 127, 9, 383, 9, 255, 9, 511, 9, 0, 7, 64, 7, 32, 7, 96, 7, 16, 7, 80, 7, 48, 7, 112, 7, 8, 7, 72, 7, 40, 7, 104, 7, 24, 7, 88, 7, 56, 7, 120, 7, 4, 7, 68, 7, 36, 7, 100, 7, 20, 7, 84, 7, 52, 7, 116, 7, 3, 8, 131, 8, 67, 8, 195, 8, 35, 8, 163, 8, 99, 8, 227, 8]), type$.JSArray_legacy_int); B.Type__$UserState_UwG = A.typeLiteral("_$UserState"); B.List_Y3r = A._setArrayType(makeConstList([B.Type_UserState_WZn, B.Type__$UserState_UwG]), type$.JSArray_legacy_Type); B.List_YT6 = A._setArrayType(makeConstList([B.DatePickerEntryMode_0, B.DatePickerEntryMode_1, B.DatePickerEntryMode_2, B.DatePickerEntryMode_3]), A.findType("JSArray")); B.Color_4294962158 = new A.Color(4294962158); B.Color_4294954450 = new A.Color(4294954450); B.Color_4293892762 = new A.Color(4293892762); B.Color_4293227379 = new A.Color(4293227379); B.Color_4293874512 = new A.Color(4293874512); B.Color_4294198070 = new A.Color(4294198070); B.Color_4293212469 = new A.Color(4293212469); B.Color_4291176488 = new A.Color(4291176488); B.Color_4290190364 = new A.Color(4290190364); B.Map_JNc9P = new A.GeneralConstantMap([50, B.Color_4294962158, 100, B.Color_4294954450, 200, B.Color_4293892762, 300, B.Color_4293227379, 400, B.Color_4293874512, 500, B.Color_4294198070, 600, B.Color_4293212469, 700, B.Color_4292030255, 800, B.Color_4291176488, 900, B.Color_4290190364], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNc9P_4294198070 = new A.MaterialColor(B.Map_JNc9P, 4294198070); B.Color_4294763756 = new A.Color(4294763756); B.Color_4294491088 = new A.Color(4294491088); B.Color_4294217649 = new A.Color(4294217649); B.Color_4293943954 = new A.Color(4293943954); B.Color_4293673082 = new A.Color(4293673082); B.Color_4293467747 = new A.Color(4293467747); B.Color_4292352864 = new A.Color(4292352864); B.Color_4290910299 = new A.Color(4290910299); B.Color_4289533015 = new A.Color(4289533015); B.Color_4287106639 = new A.Color(4287106639); B.Map_JN0o6 = new A.GeneralConstantMap([50, B.Color_4294763756, 100, B.Color_4294491088, 200, B.Color_4294217649, 300, B.Color_4293943954, 400, B.Color_4293673082, 500, B.Color_4293467747, 600, B.Color_4292352864, 700, B.Color_4290910299, 800, B.Color_4289533015, 900, B.Color_4287106639], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JN0o6_4293467747 = new A.MaterialColor(B.Map_JN0o6, 4293467747); B.Color_4294174197 = new A.Color(4294174197); B.Color_4292984551 = new A.Color(4292984551); B.Color_4291728344 = new A.Color(4291728344); B.Color_4290406600 = new A.Color(4290406600); B.Color_4289415100 = new A.Color(4289415100); B.Color_4287505578 = new A.Color(4287505578); B.Color_4286259106 = new A.Color(4286259106); B.Color_4285143962 = new A.Color(4285143962); B.Map_JNNS7 = new A.GeneralConstantMap([50, B.Color_4294174197, 100, B.Color_4292984551, 200, B.Color_4291728344, 300, B.Color_4290406600, 400, B.Color_4289415100, 500, B.Color_4288423856, 600, B.Color_4287505578, 700, B.Color_4286259106, 800, B.Color_4285143962, 900, B.Color_4283045004], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNNS7_4288423856 = new A.MaterialColor(B.Map_JNNS7, 4288423856); B.Color_4293781494 = new A.Color(4293781494); B.Color_4291937513 = new A.Color(4291937513); B.Color_4289961435 = new A.Color(4289961435); B.Color_4287985101 = new A.Color(4287985101); B.Color_4286470082 = new A.Color(4286470082); B.Color_4284955319 = new A.Color(4284955319); B.Color_4284364209 = new A.Color(4284364209); B.Color_4283510184 = new A.Color(4283510184); B.Color_4282722208 = new A.Color(4282722208); B.Color_4281408402 = new A.Color(4281408402); B.Map_JNEyN = new A.GeneralConstantMap([50, B.Color_4293781494, 100, B.Color_4291937513, 200, B.Color_4289961435, 300, B.Color_4287985101, 400, B.Color_4286470082, 500, B.Color_4284955319, 600, B.Color_4284364209, 700, B.Color_4283510184, 800, B.Color_4282722208, 900, B.Color_4281408402], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNEyN_4284955319 = new A.MaterialColor(B.Map_JNEyN, 4284955319); B.Color_4293454582 = new A.Color(4293454582); B.Color_4291152617 = new A.Color(4291152617); B.Color_4288653530 = new A.Color(4288653530); B.Color_4286154443 = new A.Color(4286154443); B.Color_4284246976 = new A.Color(4284246976); B.Color_4282339765 = new A.Color(4282339765); B.Color_4281944491 = new A.Color(4281944491); B.Color_4281352095 = new A.Color(4281352095); B.Color_4280825235 = new A.Color(4280825235); B.Color_4279903102 = new A.Color(4279903102); B.Map_JN8qN = new A.GeneralConstantMap([50, B.Color_4293454582, 100, B.Color_4291152617, 200, B.Color_4288653530, 300, B.Color_4286154443, 400, B.Color_4284246976, 500, B.Color_4282339765, 600, B.Color_4281944491, 700, B.Color_4281352095, 800, B.Color_4280825235, 900, B.Color_4279903102], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JN8qN_4282339765 = new A.MaterialColor(B.Map_JN8qN, 4282339765); B.Color_4282557941 = new A.Color(4282557941); B.Color_4279592384 = new A.Color(4279592384); B.Color_4279060385 = new A.Color(4279060385); B.Map_JNwaj = new A.GeneralConstantMap([50, B.Color_4293128957, 100, B.Color_4290502395, 200, B.Color_4287679225, 300, B.Color_4284790262, 400, B.Color_4282557941, 500, B.Color_4280391411, 600, B.Color_4280191205, 700, B.Color_4279858898, 800, B.Color_4279592384, 900, B.Color_4279060385], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNwaj_4280391411 = new A.MaterialColor(B.Map_JNwaj, 4280391411); B.Color_4292998654 = new A.Color(4292998654); B.Color_4289979900 = new A.Color(4289979900); B.Color_4286698746 = new A.Color(4286698746); B.Color_4283417591 = new A.Color(4283417591); B.Color_4280923894 = new A.Color(4280923894); B.Color_4278430196 = new A.Color(4278430196); B.Color_4278426597 = new A.Color(4278426597); B.Color_4278356177 = new A.Color(4278356177); B.Color_4278351805 = new A.Color(4278351805); B.Color_4278278043 = new A.Color(4278278043); B.Map_JN3Gf = new A.GeneralConstantMap([50, B.Color_4292998654, 100, B.Color_4289979900, 200, B.Color_4286698746, 300, B.Color_4283417591, 400, B.Color_4280923894, 500, B.Color_4278430196, 600, B.Color_4278426597, 700, B.Color_4278356177, 800, B.Color_4278351805, 900, B.Color_4278278043], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JN3Gf_4278430196 = new A.MaterialColor(B.Map_JN3Gf, 4278430196); B.Color_4292933626 = new A.Color(4292933626); B.Color_4289915890 = new A.Color(4289915890); B.Color_4286635754 = new A.Color(4286635754); B.Color_4283289825 = new A.Color(4283289825); B.Color_4280731354 = new A.Color(4280731354); B.Color_4278238420 = new A.Color(4278238420); B.Color_4278234305 = new A.Color(4278234305); B.Color_4278228903 = new A.Color(4278228903); B.Color_4278223759 = new A.Color(4278223759); B.Color_4278214756 = new A.Color(4278214756); B.Map_JN94k = new A.GeneralConstantMap([50, B.Color_4292933626, 100, B.Color_4289915890, 200, B.Color_4286635754, 300, B.Color_4283289825, 400, B.Color_4280731354, 500, B.Color_4278238420, 600, B.Color_4278234305, 700, B.Color_4278228903, 800, B.Color_4278223759, 900, B.Color_4278214756], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JN94k_4278238420 = new A.MaterialColor(B.Map_JN94k, 4278238420); B.Color_4292932337 = new A.Color(4292932337); B.Color_4289912795 = new A.Color(4289912795); B.Color_4286630852 = new A.Color(4286630852); B.Color_4283283116 = new A.Color(4283283116); B.Color_4280723098 = new A.Color(4280723098); B.Color_4278228616 = new A.Color(4278228616); B.Color_4278225275 = new A.Color(4278225275); B.Color_4278221163 = new A.Color(4278221163); B.Color_4278217052 = new A.Color(4278217052); B.Color_4278209856 = new A.Color(4278209856); B.Map_JN0Sr = new A.GeneralConstantMap([50, B.Color_4292932337, 100, B.Color_4289912795, 200, B.Color_4286630852, 300, B.Color_4283283116, 400, B.Color_4280723098, 500, B.Color_4278228616, 600, B.Color_4278225275, 700, B.Color_4278221163, 800, B.Color_4278217052, 900, B.Color_4278209856], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JN0Sr_4278228616 = new A.MaterialColor(B.Map_JN0Sr, 4278228616); B.Color_4293457385 = new A.Color(4293457385); B.Color_4291356361 = new A.Color(4291356361); B.Color_4289058471 = new A.Color(4289058471); B.Color_4286695300 = new A.Color(4286695300); B.Color_4284922730 = new A.Color(4284922730); B.Color_4282622023 = new A.Color(4282622023); B.Color_4281896508 = new A.Color(4281896508); B.Color_4281236786 = new A.Color(4281236786); B.Color_4279983648 = new A.Color(4279983648); B.Map_JNEaM = new A.GeneralConstantMap([50, B.Color_4293457385, 100, B.Color_4291356361, 200, B.Color_4289058471, 300, B.Color_4286695300, 400, B.Color_4284922730, 500, B.Color_4283215696, 600, B.Color_4282622023, 700, B.Color_4281896508, 800, B.Color_4281236786, 900, B.Color_4279983648], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNEaM_4283215696 = new A.MaterialColor(B.Map_JNEaM, 4283215696); B.Color_4294047977 = new A.Color(4294047977); B.Color_4292668872 = new A.Color(4292668872); B.Color_4291158437 = new A.Color(4291158437); B.Color_4289648001 = new A.Color(4289648001); B.Color_4288466021 = new A.Color(4288466021); B.Color_4287349578 = new A.Color(4287349578); B.Color_4286362434 = new A.Color(4286362434); B.Color_4285046584 = new A.Color(4285046584); B.Color_4283796271 = new A.Color(4283796271); B.Color_4281559326 = new A.Color(4281559326); B.Map_JNJAl = new A.GeneralConstantMap([50, B.Color_4294047977, 100, B.Color_4292668872, 200, B.Color_4291158437, 300, B.Color_4289648001, 400, B.Color_4288466021, 500, B.Color_4287349578, 600, B.Color_4286362434, 700, B.Color_4285046584, 800, B.Color_4283796271, 900, B.Color_4281559326], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNJAl_4287349578 = new A.MaterialColor(B.Map_JNJAl, 4287349578); B.Color_4294573031 = new A.Color(4294573031); B.Color_4293981379 = new A.Color(4293981379); B.Color_4293324444 = new A.Color(4293324444); B.Color_4292667253 = new A.Color(4292667253); B.Color_4292141399 = new A.Color(4292141399); B.Color_4291681337 = new A.Color(4291681337); B.Color_4290824755 = new A.Color(4290824755); B.Color_4289705003 = new A.Color(4289705003); B.Color_4288584996 = new A.Color(4288584996); B.Color_4286740247 = new A.Color(4286740247); B.Map_JNQQJ = new A.GeneralConstantMap([50, B.Color_4294573031, 100, B.Color_4293981379, 200, B.Color_4293324444, 300, B.Color_4292667253, 400, B.Color_4292141399, 500, B.Color_4291681337, 600, B.Color_4290824755, 700, B.Color_4289705003, 800, B.Color_4288584996, 900, B.Color_4286740247], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNQQJ_4291681337 = new A.MaterialColor(B.Map_JNQQJ, 4291681337); B.Color_4294966759 = new A.Color(4294966759); B.Color_4294965700 = new A.Color(4294965700); B.Color_4294964637 = new A.Color(4294964637); B.Color_4294963574 = new A.Color(4294963574); B.Color_4294962776 = new A.Color(4294962776); B.Color_4294961979 = new A.Color(4294961979); B.Color_4294826037 = new A.Color(4294826037); B.Color_4294688813 = new A.Color(4294688813); B.Color_4294551589 = new A.Color(4294551589); B.Color_4294278935 = new A.Color(4294278935); B.Map_JNHRl = new A.GeneralConstantMap([50, B.Color_4294966759, 100, B.Color_4294965700, 200, B.Color_4294964637, 300, B.Color_4294963574, 400, B.Color_4294962776, 500, B.Color_4294961979, 600, B.Color_4294826037, 700, B.Color_4294688813, 800, B.Color_4294551589, 900, B.Color_4294278935], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNHRl_4294961979 = new A.MaterialColor(B.Map_JNHRl, 4294961979); B.Color_4294965473 = new A.Color(4294965473); B.Color_4294962355 = new A.Color(4294962355); B.Color_4294959234 = new A.Color(4294959234); B.Color_4294956367 = new A.Color(4294956367); B.Color_4294953512 = new A.Color(4294953512); B.Color_4294947584 = new A.Color(4294947584); B.Color_4294942720 = new A.Color(4294942720); B.Color_4294938368 = new A.Color(4294938368); B.Color_4294930176 = new A.Color(4294930176); B.Map_JNsy5 = new A.GeneralConstantMap([50, B.Color_4294965473, 100, B.Color_4294962355, 200, B.Color_4294959234, 300, B.Color_4294956367, 400, B.Color_4294953512, 500, B.Color_4294951175, 600, B.Color_4294947584, 700, B.Color_4294942720, 800, B.Color_4294938368, 900, B.Color_4294930176], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNsy5_4294951175 = new A.MaterialColor(B.Map_JNsy5, 4294951175); B.Color_4294964192 = new A.Color(4294964192); B.Color_4294959282 = new A.Color(4294959282); B.Color_4294954112 = new A.Color(4294954112); B.Color_4294948685 = new A.Color(4294948685); B.Color_4294944550 = new A.Color(4294944550); B.Color_4294675456 = new A.Color(4294675456); B.Color_4294278144 = new A.Color(4294278144); B.Color_4293284096 = new A.Color(4293284096); B.Map_JNZaB = new A.GeneralConstantMap([50, B.Color_4294964192, 100, B.Color_4294959282, 200, B.Color_4294954112, 300, B.Color_4294948685, 400, B.Color_4294944550, 500, B.Color_4294940672, 600, B.Color_4294675456, 700, B.Color_4294278144, 800, B.Color_4293880832, 900, B.Color_4293284096], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNZaB_4294940672 = new A.MaterialColor(B.Map_JNZaB, 4294940672); B.Color_4294699495 = new A.Color(4294699495); B.Color_4294954172 = new A.Color(4294954172); B.Color_4294945681 = new A.Color(4294945681); B.Color_4294937189 = new A.Color(4294937189); B.Color_4294930499 = new A.Color(4294930499); B.Color_4294924066 = new A.Color(4294924066); B.Color_4294201630 = new A.Color(4294201630); B.Color_4293282329 = new A.Color(4293282329); B.Color_4292363029 = new A.Color(4292363029); B.Color_4290721292 = new A.Color(4290721292); B.Map_JNUn6 = new A.GeneralConstantMap([50, B.Color_4294699495, 100, B.Color_4294954172, 200, B.Color_4294945681, 300, B.Color_4294937189, 400, B.Color_4294930499, 500, B.Color_4294924066, 600, B.Color_4294201630, 700, B.Color_4293282329, 800, B.Color_4292363029, 900, B.Color_4290721292], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNUn6_4294924066 = new A.MaterialColor(B.Map_JNUn6, 4294924066); B.Color_4293913577 = new A.Color(4293913577); B.Color_4292332744 = new A.Color(4292332744); B.Color_4290554532 = new A.Color(4290554532); B.Color_4288776319 = new A.Color(4288776319); B.Color_4287458915 = new A.Color(4287458915); B.Color_4286141768 = new A.Color(4286141768); B.Color_4285353025 = new A.Color(4285353025); B.Color_4284301367 = new A.Color(4284301367); B.Color_4283315246 = new A.Color(4283315246); B.Color_4282263331 = new A.Color(4282263331); B.Map_JNUEV = new A.GeneralConstantMap([50, B.Color_4293913577, 100, B.Color_4292332744, 200, B.Color_4290554532, 300, B.Color_4288776319, 400, B.Color_4287458915, 500, B.Color_4286141768, 600, B.Color_4285353025, 700, B.Color_4284301367, 800, B.Color_4283315246, 900, B.Color_4282263331], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNUEV_4286141768 = new A.MaterialColor(B.Map_JNUEV, 4286141768); B.Color_4293718001 = new A.Color(4293718001); B.Color_4291811548 = new A.Color(4291811548); B.Color_4289773253 = new A.Color(4289773253); B.Color_4287669422 = new A.Color(4287669422); B.Color_4286091420 = new A.Color(4286091420); B.Color_4284513675 = new A.Color(4284513675); B.Color_4283723386 = new A.Color(4283723386); B.Color_4281812815 = new A.Color(4281812815); B.Color_4280693304 = new A.Color(4280693304); B.Map_JNy8A = new A.GeneralConstantMap([50, B.Color_4293718001, 100, B.Color_4291811548, 200, B.Color_4289773253, 300, B.Color_4287669422, 400, B.Color_4286091420, 500, B.Color_4284513675, 600, B.Color_4283723386, 700, B.Color_4282735204, 800, B.Color_4281812815, 900, B.Color_4280693304], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_JNy8A_4284513675 = new A.MaterialColor(B.Map_JNy8A, 4284513675); B.List_YVI = A._setArrayType(makeConstList([B.MaterialColor_Map_JNc9P_4294198070, B.MaterialColor_Map_JN0o6_4293467747, B.MaterialColor_Map_JNNS7_4288423856, B.MaterialColor_Map_JNEyN_4284955319, B.MaterialColor_Map_JN8qN_4282339765, B.MaterialColor_Map_JNwaj_4280391411, B.MaterialColor_Map_JN3Gf_4278430196, B.MaterialColor_Map_JN94k_4278238420, B.MaterialColor_Map_JN0Sr_4278228616, B.MaterialColor_Map_JNEaM_4283215696, B.MaterialColor_Map_JNJAl_4287349578, B.MaterialColor_Map_JNQQJ_4291681337, B.MaterialColor_Map_JNHRl_4294961979, B.MaterialColor_Map_JNsy5_4294951175, B.MaterialColor_Map_JNZaB_4294940672, B.MaterialColor_Map_JNUn6_4294924066, B.MaterialColor_Map_JNUEV_4286141768, B.MaterialColor_Map_JNy8A_4284513675]), A.findType("JSArray")); B.List_Yb0 = A._setArrayType(makeConstList([B.FinderPatternPosition_0, B.FinderPatternPosition_1, B.FinderPatternPosition_2]), A.findType("JSArray")); B.Type__$TaskUIState_gg4 = A.typeLiteral("_$TaskUIState"); B.List_YgE = A._setArrayType(makeConstList([B.Type_TaskUIState_oqK, B.Type__$TaskUIState_gg4]), type$.JSArray_legacy_Type); B.Type__$TokenUIState_Gnb = A.typeLiteral("_$TokenUIState"); B.List_YuA = A._setArrayType(makeConstList([B.Type_TokenUIState_bDN, B.Type__$TokenUIState_Gnb]), type$.JSArray_legacy_Type); B.Type_TokenItemResponse_WnQ = A.typeLiteral("TokenItemResponse"); B.Type__$TokenItemResponse_Tti = A.typeLiteral("_$TokenItemResponse"); B.List_ZAJ = A._setArrayType(makeConstList([B.Type_TokenItemResponse_WnQ, B.Type__$TokenItemResponse_Tti]), type$.JSArray_legacy_Type); B.Type__$TaskState_qjR = A.typeLiteral("_$TaskState"); B.List_a1Y = A._setArrayType(makeConstList([B.Type_TaskState_AgZ, B.Type__$TaskState_qjR]), type$.JSArray_legacy_Type); B.Type_ClientItemResponse_apS = A.typeLiteral("ClientItemResponse"); B.Type__$ClientItemResponse_qHS = A.typeLiteral("_$ClientItemResponse"); B.List_a5W = A._setArrayType(makeConstList([B.Type_ClientItemResponse_apS, B.Type__$ClientItemResponse_qHS]), type$.JSArray_legacy_Type); B.Type__$RecurringExpenseUIState_yzJ = A.typeLiteral("_$RecurringExpenseUIState"); B.List_a9w = A._setArrayType(makeConstList([B.Type_RecurringExpenseUIState_TTS, B.Type__$RecurringExpenseUIState_yzJ]), type$.JSArray_legacy_Type); B.Type_DatetimeFormatListResponse_qJO = A.typeLiteral("DatetimeFormatListResponse"); B.Type__$DatetimeFormatListResponse_ohJ = A.typeLiteral("_$DatetimeFormatListResponse"); B.List_aYE = A._setArrayType(makeConstList([B.Type_DatetimeFormatListResponse_qJO, B.Type__$DatetimeFormatListResponse_ohJ]), type$.JSArray_legacy_Type); B.Type__$QuoteState_NMc = A.typeLiteral("_$QuoteState"); B.List_ad2 = A._setArrayType(makeConstList([B.Type_QuoteState_aJC, B.Type__$QuoteState_NMc]), type$.JSArray_legacy_Type); B.List_address_div_p = A._setArrayType(makeConstList(["address", "div", "p"]), type$.JSArray_legacy_String); B.Type__$PurchaseOrderState_cf1 = A.typeLiteral("_$PurchaseOrderState"); B.List_apR = A._setArrayType(makeConstList([B.Type_PurchaseOrderState_Y5a, B.Type__$PurchaseOrderState_cf1]), type$.JSArray_legacy_Type); B.Type__$RegistrationFieldEntity_sEt = A.typeLiteral("_$RegistrationFieldEntity"); B.List_awF = A._setArrayType(makeConstList([B.Type_RegistrationFieldEntity_k2a, B.Type__$RegistrationFieldEntity_sEt]), type$.JSArray_legacy_Type); B.List_b75 = A._setArrayType(makeConstList([B.EmailTemplate_invoice, B.EmailTemplate_quote, B.EmailTemplate_payment, B.EmailTemplate_payment_partial, B.EmailTemplate_credit, B.EmailTemplate_statement, B.EmailTemplate_reminder1, B.EmailTemplate_reminder2, B.EmailTemplate_reminder3, B.EmailTemplate_reminder_endless, B.EmailTemplate_custom1, B.EmailTemplate_custom2, B.EmailTemplate_custom3, B.EmailTemplate_purchase_order]), type$.JSArray_legacy_EmailTemplate); B.List_bJM = A._setArrayType(makeConstList(["1st quarter", "2nd quarter", "3rd quarter", "4th quarter"]), type$.JSArray_legacy_String); B.List_bdu = A._setArrayType(makeConstList(["1", "10", "11", "2", "8", "22", "24", "9", "3", "6", "21", "23", "7", "4", "12", "5", "13", "14", "15", "16", "17", "18", "19", "20", "25", "26"]), type$.JSArray_legacy_String); B.Type_ProjectListResponse_aD9 = A.typeLiteral("ProjectListResponse"); B.Type__$ProjectListResponse_UEs = A.typeLiteral("_$ProjectListResponse"); B.List_bfP = A._setArrayType(makeConstList([B.Type_ProjectListResponse_aD9, B.Type__$ProjectListResponse_UEs]), type$.JSArray_legacy_Type); B.Type__$HistoryRecord_GEi = A.typeLiteral("_$HistoryRecord"); B.List_blc = A._setArrayType(makeConstList([B.Type_HistoryRecord_ato, B.Type__$HistoryRecord_GEi]), type$.JSArray_legacy_Type); B.TimePickerEntryMode_0 = new A.TimePickerEntryMode(0, "dial"); B.TimePickerEntryMode_1 = new A.TimePickerEntryMode(1, "input"); B.List_boW = A._setArrayType(makeConstList([B.TimePickerEntryMode_0, B.TimePickerEntryMode_1]), A.findType("JSArray")); B.Type_UserItemResponse_RsV = A.typeLiteral("UserItemResponse"); B.Type__$UserItemResponse_qbf = A.typeLiteral("_$UserItemResponse"); B.List_bti = A._setArrayType(makeConstList([B.Type_UserItemResponse_RsV, B.Type__$UserItemResponse_qbf]), type$.JSArray_legacy_Type); B.List_cIc = A._setArrayType(makeConstList(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]), type$.JSArray_legacy_String); B.Type_CountryItemResponse_ZOg = A.typeLiteral("CountryItemResponse"); B.Type__$CountryItemResponse_I93 = A.typeLiteral("_$CountryItemResponse"); B.List_cKo = A._setArrayType(makeConstList([B.Type_CountryItemResponse_ZOg, B.Type__$CountryItemResponse_I93]), type$.JSArray_legacy_Type); B.Type__$RecurringInvoiceUIState_OPS = A.typeLiteral("_$RecurringInvoiceUIState"); B.List_cMx = A._setArrayType(makeConstList([B.Type_RecurringInvoiceUIState_Sof, B.Type__$RecurringInvoiceUIState_OPS]), type$.JSArray_legacy_Type); B.Type__$CompanyPrefState_lUt = A.typeLiteral("_$CompanyPrefState"); B.List_cOY = A._setArrayType(makeConstList([B.Type_CompanyPrefState_Y50, B.Type__$CompanyPrefState_lUt]), type$.JSArray_legacy_Type); B.Type__$AuthState_RcD = A.typeLiteral("_$AuthState"); B.List_cYh = A._setArrayType(makeConstList([B.Type_AuthState_Eo2, B.Type__$AuthState_RcD]), type$.JSArray_legacy_Type); B.List_cjm = A._setArrayType(makeConstList([B.Pair_dSk, B.Pair_CCQ, B.Pair_jvJ, B.Pair_MDg, B.Pair_6iW]), type$.JSArray_legacy_Pair_of_legacy_String_and_legacy_String); B.Type__$TaskEntity_FiV = A.typeLiteral("_$TaskEntity"); B.List_ckJ = A._setArrayType(makeConstList([B.Type_TaskEntity_33h, B.Type__$TaskEntity_FiV]), type$.JSArray_legacy_Type); B.List_click_scroll = A._setArrayType(makeConstList(["click", "scroll"]), type$.JSArray_legacy_String); B.List_cno = A._setArrayType(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "M/d/yy"]), type$.JSArray_legacy_String); B.List_type_value = A._setArrayType(makeConstList(["type", "value"]), type$.JSArray_legacy_String); B.Map_puYRd = new A.ConstantStringMap(2, {type: 670, value: "top-left-corner"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puQKY = new A.ConstantStringMap(2, {type: 671, value: "top-left"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puikG = new A.ConstantStringMap(2, {type: 672, value: "top-center"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pukOG = new A.ConstantStringMap(2, {type: 673, value: "top-right"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu2ax = new A.ConstantStringMap(2, {type: 674, value: "top-right-corner"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puAPm = new A.ConstantStringMap(2, {type: 675, value: "bottom-left-corner"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puV8I = new A.ConstantStringMap(2, {type: 676, value: "bottom-left"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puiPR = new A.ConstantStringMap(2, {type: 677, value: "bottom-center"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu46y = new A.ConstantStringMap(2, {type: 678, value: "bottom-right"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puIFE = new A.ConstantStringMap(2, {type: 679, value: "bottom-right-corner"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pug3y = new A.ConstantStringMap(2, {type: 680, value: "left-top"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puKML = new A.ConstantStringMap(2, {type: 681, value: "left-middle"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puCRY = new A.ConstantStringMap(2, {type: 682, value: "right-bottom"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu4S8 = new A.ConstantStringMap(2, {type: 683, value: "right-top"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puad7 = new A.ConstantStringMap(2, {type: 684, value: "right-middle"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pubLX = new A.ConstantStringMap(2, {type: 685, value: "right-bottom"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_d5v = A._setArrayType(makeConstList([B.Map_puYRd, B.Map_puQKY, B.Map_puikG, B.Map_pukOG, B.Map_pu2ax, B.Map_puAPm, B.Map_puV8I, B.Map_puiPR, B.Map_pu46y, B.Map_puIFE, B.Map_pug3y, B.Map_puKML, B.Map_puCRY, B.Map_pu4S8, B.Map_puad7, B.Map_pubLX]), type$.JSArray_legacy_Map_of_legacy_String_and_dynamic); B.List_e5Z = A._setArrayType(makeConstList([0.01, 0.02, 0.025, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 2, 2.5, 3, 4, 5, 6, 7, 8, 9]), type$.JSArray_legacy_double); B.List_eea = A._setArrayType(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0]), type$.JSArray_legacy_int); B.List_ego = A._setArrayType(makeConstList(["HEAD", "AREA", "BASE", "BASEFONT", "BR", "COL", "COLGROUP", "EMBED", "FRAME", "FRAMESET", "HR", "IMAGE", "IMG", "INPUT", "ISINDEX", "LINK", "META", "PARAM", "SOURCE", "STYLE", "TITLE", "WBR"]), type$.JSArray_legacy_String); B.List_ek3 = A._setArrayType(makeConstList([0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]), type$.JSArray_legacy_double); B.List_empty = A._setArrayType(makeConstList([]), type$.JSArray_dynamic); B.List_empty25 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty23 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty2 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty22 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty1 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty15 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty18 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty17 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_IconButton); B.List_empty7 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty26 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_Locale); B.List_empty11 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_NavigatorObserver); B.List_empty6 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty5 = A._setArrayType(makeConstList([]), A.findType("JSArray*>")); B.List_empty27 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty20 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty16 = A._setArrayType(makeConstList([]), A.findType("JSArray*>")); B.List_empty21 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty19 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty28 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_TableRow); B.List_empty8 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty9 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.List_empty12 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_Widget); B.List_empty14 = A._setArrayType(makeConstList([]), A.findType("JSArray<_TableElementRow*>")); B.List_empty13 = A._setArrayType(makeConstList([]), type$.JSArray_nullable_RenderBox); B.List_1_26_19 = A._setArrayType(makeConstList([1, 26, 19]), type$.JSArray_legacy_int); B.List_1_26_16 = A._setArrayType(makeConstList([1, 26, 16]), type$.JSArray_legacy_int); B.List_1_26_13 = A._setArrayType(makeConstList([1, 26, 13]), type$.JSArray_legacy_int); B.List_1_26_9 = A._setArrayType(makeConstList([1, 26, 9]), type$.JSArray_legacy_int); B.List_1_44_34 = A._setArrayType(makeConstList([1, 44, 34]), type$.JSArray_legacy_int); B.List_1_44_28 = A._setArrayType(makeConstList([1, 44, 28]), type$.JSArray_legacy_int); B.List_1_44_22 = A._setArrayType(makeConstList([1, 44, 22]), type$.JSArray_legacy_int); B.List_1_44_16 = A._setArrayType(makeConstList([1, 44, 16]), type$.JSArray_legacy_int); B.List_1_70_55 = A._setArrayType(makeConstList([1, 70, 55]), type$.JSArray_legacy_int); B.List_1_70_44 = A._setArrayType(makeConstList([1, 70, 44]), type$.JSArray_legacy_int); B.List_2_35_17 = A._setArrayType(makeConstList([2, 35, 17]), type$.JSArray_legacy_int); B.List_2_35_13 = A._setArrayType(makeConstList([2, 35, 13]), type$.JSArray_legacy_int); B.List_1_100_80 = A._setArrayType(makeConstList([1, 100, 80]), type$.JSArray_legacy_int); B.List_2_50_32 = A._setArrayType(makeConstList([2, 50, 32]), type$.JSArray_legacy_int); B.List_2_50_24 = A._setArrayType(makeConstList([2, 50, 24]), type$.JSArray_legacy_int); B.List_4_25_9 = A._setArrayType(makeConstList([4, 25, 9]), type$.JSArray_legacy_int); B.List_1_134_108 = A._setArrayType(makeConstList([1, 134, 108]), type$.JSArray_legacy_int); B.List_2_67_43 = A._setArrayType(makeConstList([2, 67, 43]), type$.JSArray_legacy_int); B.List_ww89 = A._setArrayType(makeConstList([2, 33, 15, 2, 34, 16]), type$.JSArray_legacy_int); B.List_ww810 = A._setArrayType(makeConstList([2, 33, 11, 2, 34, 12]), type$.JSArray_legacy_int); B.List_2_86_68 = A._setArrayType(makeConstList([2, 86, 68]), type$.JSArray_legacy_int); B.List_4_43_27 = A._setArrayType(makeConstList([4, 43, 27]), type$.JSArray_legacy_int); B.List_4_43_19 = A._setArrayType(makeConstList([4, 43, 19]), type$.JSArray_legacy_int); B.List_4_43_15 = A._setArrayType(makeConstList([4, 43, 15]), type$.JSArray_legacy_int); B.List_2_98_78 = A._setArrayType(makeConstList([2, 98, 78]), type$.JSArray_legacy_int); B.List_4_49_31 = A._setArrayType(makeConstList([4, 49, 31]), type$.JSArray_legacy_int); B.List_ww811 = A._setArrayType(makeConstList([2, 32, 14, 4, 33, 15]), type$.JSArray_legacy_int); B.List_ww812 = A._setArrayType(makeConstList([4, 39, 13, 1, 40, 14]), type$.JSArray_legacy_int); B.List_2_121_97 = A._setArrayType(makeConstList([2, 121, 97]), type$.JSArray_legacy_int); B.List_ww813 = A._setArrayType(makeConstList([2, 60, 38, 2, 61, 39]), type$.JSArray_legacy_int); B.List_ww814 = A._setArrayType(makeConstList([4, 40, 18, 2, 41, 19]), type$.JSArray_legacy_int); B.List_ww815 = A._setArrayType(makeConstList([4, 40, 14, 2, 41, 15]), type$.JSArray_legacy_int); B.List_2_146_116 = A._setArrayType(makeConstList([2, 146, 116]), type$.JSArray_legacy_int); B.List_ww816 = A._setArrayType(makeConstList([3, 58, 36, 2, 59, 37]), type$.JSArray_legacy_int); B.List_ww817 = A._setArrayType(makeConstList([4, 36, 16, 4, 37, 17]), type$.JSArray_legacy_int); B.List_ww818 = A._setArrayType(makeConstList([4, 36, 12, 4, 37, 13]), type$.JSArray_legacy_int); B.List_ww819 = A._setArrayType(makeConstList([2, 86, 68, 2, 87, 69]), type$.JSArray_legacy_int); B.List_ww820 = A._setArrayType(makeConstList([4, 69, 43, 1, 70, 44]), type$.JSArray_legacy_int); B.List_ww821 = A._setArrayType(makeConstList([6, 43, 19, 2, 44, 20]), type$.JSArray_legacy_int); B.List_ww822 = A._setArrayType(makeConstList([6, 43, 15, 2, 44, 16]), type$.JSArray_legacy_int); B.List_4_101_81 = A._setArrayType(makeConstList([4, 101, 81]), type$.JSArray_legacy_int); B.List_ww823 = A._setArrayType(makeConstList([1, 80, 50, 4, 81, 51]), type$.JSArray_legacy_int); B.List_ww824 = A._setArrayType(makeConstList([4, 50, 22, 4, 51, 23]), type$.JSArray_legacy_int); B.List_ww825 = A._setArrayType(makeConstList([3, 36, 12, 8, 37, 13]), type$.JSArray_legacy_int); B.List_ww826 = A._setArrayType(makeConstList([2, 116, 92, 2, 117, 93]), type$.JSArray_legacy_int); B.List_ww827 = A._setArrayType(makeConstList([6, 58, 36, 2, 59, 37]), type$.JSArray_legacy_int); B.List_ww828 = A._setArrayType(makeConstList([4, 46, 20, 6, 47, 21]), type$.JSArray_legacy_int); B.List_ww829 = A._setArrayType(makeConstList([7, 42, 14, 4, 43, 15]), type$.JSArray_legacy_int); B.List_4_133_107 = A._setArrayType(makeConstList([4, 133, 107]), type$.JSArray_legacy_int); B.List_ww830 = A._setArrayType(makeConstList([8, 59, 37, 1, 60, 38]), type$.JSArray_legacy_int); B.List_ww831 = A._setArrayType(makeConstList([8, 44, 20, 4, 45, 21]), type$.JSArray_legacy_int); B.List_ww832 = A._setArrayType(makeConstList([12, 33, 11, 4, 34, 12]), type$.JSArray_legacy_int); B.List_ww833 = A._setArrayType(makeConstList([3, 145, 115, 1, 146, 116]), type$.JSArray_legacy_int); B.List_ww834 = A._setArrayType(makeConstList([4, 64, 40, 5, 65, 41]), type$.JSArray_legacy_int); B.List_ww835 = A._setArrayType(makeConstList([11, 36, 16, 5, 37, 17]), type$.JSArray_legacy_int); B.List_ww836 = A._setArrayType(makeConstList([11, 36, 12, 5, 37, 13]), type$.JSArray_legacy_int); B.List_ww837 = A._setArrayType(makeConstList([5, 109, 87, 1, 110, 88]), type$.JSArray_legacy_int); B.List_ww838 = A._setArrayType(makeConstList([5, 65, 41, 5, 66, 42]), type$.JSArray_legacy_int); B.List_ww839 = A._setArrayType(makeConstList([5, 54, 24, 7, 55, 25]), type$.JSArray_legacy_int); B.List_11_36_12 = A._setArrayType(makeConstList([11, 36, 12]), type$.JSArray_legacy_int); B.List_ww840 = A._setArrayType(makeConstList([5, 122, 98, 1, 123, 99]), type$.JSArray_legacy_int); B.List_ww841 = A._setArrayType(makeConstList([7, 73, 45, 3, 74, 46]), type$.JSArray_legacy_int); B.List_ww842 = A._setArrayType(makeConstList([15, 43, 19, 2, 44, 20]), type$.JSArray_legacy_int); B.List_ww843 = A._setArrayType(makeConstList([3, 45, 15, 13, 46, 16]), type$.JSArray_legacy_int); B.List_ww844 = A._setArrayType(makeConstList([1, 135, 107, 5, 136, 108]), type$.JSArray_legacy_int); B.List_ww845 = A._setArrayType(makeConstList([10, 74, 46, 1, 75, 47]), type$.JSArray_legacy_int); B.List_ww846 = A._setArrayType(makeConstList([1, 50, 22, 15, 51, 23]), type$.JSArray_legacy_int); B.List_ww847 = A._setArrayType(makeConstList([2, 42, 14, 17, 43, 15]), type$.JSArray_legacy_int); B.List_ww848 = A._setArrayType(makeConstList([5, 150, 120, 1, 151, 121]), type$.JSArray_legacy_int); B.List_ww849 = A._setArrayType(makeConstList([9, 69, 43, 4, 70, 44]), type$.JSArray_legacy_int); B.List_ww850 = A._setArrayType(makeConstList([17, 50, 22, 1, 51, 23]), type$.JSArray_legacy_int); B.List_ww851 = A._setArrayType(makeConstList([2, 42, 14, 19, 43, 15]), type$.JSArray_legacy_int); B.List_ww852 = A._setArrayType(makeConstList([3, 141, 113, 4, 142, 114]), type$.JSArray_legacy_int); B.List_ww853 = A._setArrayType(makeConstList([3, 70, 44, 11, 71, 45]), type$.JSArray_legacy_int); B.List_ww854 = A._setArrayType(makeConstList([17, 47, 21, 4, 48, 22]), type$.JSArray_legacy_int); B.List_ww855 = A._setArrayType(makeConstList([9, 39, 13, 16, 40, 14]), type$.JSArray_legacy_int); B.List_ww856 = A._setArrayType(makeConstList([3, 135, 107, 5, 136, 108]), type$.JSArray_legacy_int); B.List_ww857 = A._setArrayType(makeConstList([3, 67, 41, 13, 68, 42]), type$.JSArray_legacy_int); B.List_ww858 = A._setArrayType(makeConstList([15, 54, 24, 5, 55, 25]), type$.JSArray_legacy_int); B.List_ww859 = A._setArrayType(makeConstList([15, 43, 15, 10, 44, 16]), type$.JSArray_legacy_int); B.List_ww860 = A._setArrayType(makeConstList([4, 144, 116, 4, 145, 117]), type$.JSArray_legacy_int); B.List_17_68_42 = A._setArrayType(makeConstList([17, 68, 42]), type$.JSArray_legacy_int); B.List_ww861 = A._setArrayType(makeConstList([17, 50, 22, 6, 51, 23]), type$.JSArray_legacy_int); B.List_ww862 = A._setArrayType(makeConstList([19, 46, 16, 6, 47, 17]), type$.JSArray_legacy_int); B.List_ww863 = A._setArrayType(makeConstList([2, 139, 111, 7, 140, 112]), type$.JSArray_legacy_int); B.List_17_74_46 = A._setArrayType(makeConstList([17, 74, 46]), type$.JSArray_legacy_int); B.List_ww864 = A._setArrayType(makeConstList([7, 54, 24, 16, 55, 25]), type$.JSArray_legacy_int); B.List_34_37_13 = A._setArrayType(makeConstList([34, 37, 13]), type$.JSArray_legacy_int); B.List_ww865 = A._setArrayType(makeConstList([4, 151, 121, 5, 152, 122]), type$.JSArray_legacy_int); B.List_ww866 = A._setArrayType(makeConstList([4, 75, 47, 14, 76, 48]), type$.JSArray_legacy_int); B.List_ww867 = A._setArrayType(makeConstList([11, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); B.List_ww868 = A._setArrayType(makeConstList([16, 45, 15, 14, 46, 16]), type$.JSArray_legacy_int); B.List_ww869 = A._setArrayType(makeConstList([6, 147, 117, 4, 148, 118]), type$.JSArray_legacy_int); B.List_ww870 = A._setArrayType(makeConstList([6, 73, 45, 14, 74, 46]), type$.JSArray_legacy_int); B.List_ww871 = A._setArrayType(makeConstList([11, 54, 24, 16, 55, 25]), type$.JSArray_legacy_int); B.List_ww872 = A._setArrayType(makeConstList([30, 46, 16, 2, 47, 17]), type$.JSArray_legacy_int); B.List_ww873 = A._setArrayType(makeConstList([8, 132, 106, 4, 133, 107]), type$.JSArray_legacy_int); B.List_ww874 = A._setArrayType(makeConstList([8, 75, 47, 13, 76, 48]), type$.JSArray_legacy_int); B.List_ww875 = A._setArrayType(makeConstList([7, 54, 24, 22, 55, 25]), type$.JSArray_legacy_int); B.List_ww876 = A._setArrayType(makeConstList([22, 45, 15, 13, 46, 16]), type$.JSArray_legacy_int); B.List_ww877 = A._setArrayType(makeConstList([10, 142, 114, 2, 143, 115]), type$.JSArray_legacy_int); B.List_ww878 = A._setArrayType(makeConstList([19, 74, 46, 4, 75, 47]), type$.JSArray_legacy_int); B.List_ww879 = A._setArrayType(makeConstList([28, 50, 22, 6, 51, 23]), type$.JSArray_legacy_int); B.List_ww880 = A._setArrayType(makeConstList([33, 46, 16, 4, 47, 17]), type$.JSArray_legacy_int); B.List_ww881 = A._setArrayType(makeConstList([8, 152, 122, 4, 153, 123]), type$.JSArray_legacy_int); B.List_ww882 = A._setArrayType(makeConstList([22, 73, 45, 3, 74, 46]), type$.JSArray_legacy_int); B.List_ww883 = A._setArrayType(makeConstList([8, 53, 23, 26, 54, 24]), type$.JSArray_legacy_int); B.List_ww884 = A._setArrayType(makeConstList([12, 45, 15, 28, 46, 16]), type$.JSArray_legacy_int); B.List_ww885 = A._setArrayType(makeConstList([3, 147, 117, 10, 148, 118]), type$.JSArray_legacy_int); B.List_ww886 = A._setArrayType(makeConstList([3, 73, 45, 23, 74, 46]), type$.JSArray_legacy_int); B.List_ww887 = A._setArrayType(makeConstList([4, 54, 24, 31, 55, 25]), type$.JSArray_legacy_int); B.List_ww888 = A._setArrayType(makeConstList([11, 45, 15, 31, 46, 16]), type$.JSArray_legacy_int); B.List_ww889 = A._setArrayType(makeConstList([7, 146, 116, 7, 147, 117]), type$.JSArray_legacy_int); B.List_ww890 = A._setArrayType(makeConstList([21, 73, 45, 7, 74, 46]), type$.JSArray_legacy_int); B.List_ww891 = A._setArrayType(makeConstList([1, 53, 23, 37, 54, 24]), type$.JSArray_legacy_int); B.List_ww892 = A._setArrayType(makeConstList([19, 45, 15, 26, 46, 16]), type$.JSArray_legacy_int); B.List_ww893 = A._setArrayType(makeConstList([5, 145, 115, 10, 146, 116]), type$.JSArray_legacy_int); B.List_ww894 = A._setArrayType(makeConstList([19, 75, 47, 10, 76, 48]), type$.JSArray_legacy_int); B.List_ww895 = A._setArrayType(makeConstList([15, 54, 24, 25, 55, 25]), type$.JSArray_legacy_int); B.List_ww896 = A._setArrayType(makeConstList([23, 45, 15, 25, 46, 16]), type$.JSArray_legacy_int); B.List_ww897 = A._setArrayType(makeConstList([13, 145, 115, 3, 146, 116]), type$.JSArray_legacy_int); B.List_ww898 = A._setArrayType(makeConstList([2, 74, 46, 29, 75, 47]), type$.JSArray_legacy_int); B.List_ww899 = A._setArrayType(makeConstList([42, 54, 24, 1, 55, 25]), type$.JSArray_legacy_int); B.List_ww8100 = A._setArrayType(makeConstList([23, 45, 15, 28, 46, 16]), type$.JSArray_legacy_int); B.List_17_145_115 = A._setArrayType(makeConstList([17, 145, 115]), type$.JSArray_legacy_int); B.List_ww8101 = A._setArrayType(makeConstList([10, 74, 46, 23, 75, 47]), type$.JSArray_legacy_int); B.List_ww8102 = A._setArrayType(makeConstList([10, 54, 24, 35, 55, 25]), type$.JSArray_legacy_int); B.List_ww8103 = A._setArrayType(makeConstList([19, 45, 15, 35, 46, 16]), type$.JSArray_legacy_int); B.List_ww8104 = A._setArrayType(makeConstList([17, 145, 115, 1, 146, 116]), type$.JSArray_legacy_int); B.List_ww8105 = A._setArrayType(makeConstList([14, 74, 46, 21, 75, 47]), type$.JSArray_legacy_int); B.List_ww8106 = A._setArrayType(makeConstList([29, 54, 24, 19, 55, 25]), type$.JSArray_legacy_int); B.List_ww8107 = A._setArrayType(makeConstList([11, 45, 15, 46, 46, 16]), type$.JSArray_legacy_int); B.List_ww8108 = A._setArrayType(makeConstList([13, 145, 115, 6, 146, 116]), type$.JSArray_legacy_int); B.List_ww8109 = A._setArrayType(makeConstList([14, 74, 46, 23, 75, 47]), type$.JSArray_legacy_int); B.List_ww8110 = A._setArrayType(makeConstList([44, 54, 24, 7, 55, 25]), type$.JSArray_legacy_int); B.List_ww8111 = A._setArrayType(makeConstList([59, 46, 16, 1, 47, 17]), type$.JSArray_legacy_int); B.List_ww8112 = A._setArrayType(makeConstList([12, 151, 121, 7, 152, 122]), type$.JSArray_legacy_int); B.List_ww8113 = A._setArrayType(makeConstList([12, 75, 47, 26, 76, 48]), type$.JSArray_legacy_int); B.List_ww8114 = A._setArrayType(makeConstList([39, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); B.List_ww8115 = A._setArrayType(makeConstList([22, 45, 15, 41, 46, 16]), type$.JSArray_legacy_int); B.List_ww8116 = A._setArrayType(makeConstList([6, 151, 121, 14, 152, 122]), type$.JSArray_legacy_int); B.List_ww8117 = A._setArrayType(makeConstList([6, 75, 47, 34, 76, 48]), type$.JSArray_legacy_int); B.List_ww8118 = A._setArrayType(makeConstList([46, 54, 24, 10, 55, 25]), type$.JSArray_legacy_int); B.List_ww8119 = A._setArrayType(makeConstList([2, 45, 15, 64, 46, 16]), type$.JSArray_legacy_int); B.List_ww8120 = A._setArrayType(makeConstList([17, 152, 122, 4, 153, 123]), type$.JSArray_legacy_int); B.List_ww8121 = A._setArrayType(makeConstList([29, 74, 46, 14, 75, 47]), type$.JSArray_legacy_int); B.List_ww8122 = A._setArrayType(makeConstList([49, 54, 24, 10, 55, 25]), type$.JSArray_legacy_int); B.List_ww8123 = A._setArrayType(makeConstList([24, 45, 15, 46, 46, 16]), type$.JSArray_legacy_int); B.List_ww8124 = A._setArrayType(makeConstList([4, 152, 122, 18, 153, 123]), type$.JSArray_legacy_int); B.List_ww8125 = A._setArrayType(makeConstList([13, 74, 46, 32, 75, 47]), type$.JSArray_legacy_int); B.List_ww8126 = A._setArrayType(makeConstList([48, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); B.List_ww8127 = A._setArrayType(makeConstList([42, 45, 15, 32, 46, 16]), type$.JSArray_legacy_int); B.List_ww8128 = A._setArrayType(makeConstList([20, 147, 117, 4, 148, 118]), type$.JSArray_legacy_int); B.List_ww8129 = A._setArrayType(makeConstList([40, 75, 47, 7, 76, 48]), type$.JSArray_legacy_int); B.List_ww8130 = A._setArrayType(makeConstList([43, 54, 24, 22, 55, 25]), type$.JSArray_legacy_int); B.List_ww8131 = A._setArrayType(makeConstList([10, 45, 15, 67, 46, 16]), type$.JSArray_legacy_int); B.List_ww8132 = A._setArrayType(makeConstList([19, 148, 118, 6, 149, 119]), type$.JSArray_legacy_int); B.List_ww8133 = A._setArrayType(makeConstList([18, 75, 47, 31, 76, 48]), type$.JSArray_legacy_int); B.List_ww8134 = A._setArrayType(makeConstList([34, 54, 24, 34, 55, 25]), type$.JSArray_legacy_int); B.List_ww8135 = A._setArrayType(makeConstList([20, 45, 15, 61, 46, 16]), type$.JSArray_legacy_int); B.List_exN = A._setArrayType(makeConstList([B.List_1_26_19, B.List_1_26_16, B.List_1_26_13, B.List_1_26_9, B.List_1_44_34, B.List_1_44_28, B.List_1_44_22, B.List_1_44_16, B.List_1_70_55, B.List_1_70_44, B.List_2_35_17, B.List_2_35_13, B.List_1_100_80, B.List_2_50_32, B.List_2_50_24, B.List_4_25_9, B.List_1_134_108, B.List_2_67_43, B.List_ww89, B.List_ww810, B.List_2_86_68, B.List_4_43_27, B.List_4_43_19, B.List_4_43_15, B.List_2_98_78, B.List_4_49_31, B.List_ww811, B.List_ww812, B.List_2_121_97, B.List_ww813, B.List_ww814, B.List_ww815, B.List_2_146_116, B.List_ww816, B.List_ww817, B.List_ww818, B.List_ww819, B.List_ww820, B.List_ww821, B.List_ww822, B.List_4_101_81, B.List_ww823, B.List_ww824, B.List_ww825, B.List_ww826, B.List_ww827, B.List_ww828, B.List_ww829, B.List_4_133_107, B.List_ww830, B.List_ww831, B.List_ww832, B.List_ww833, B.List_ww834, B.List_ww835, B.List_ww836, B.List_ww837, B.List_ww838, B.List_ww839, B.List_11_36_12, B.List_ww840, B.List_ww841, B.List_ww842, B.List_ww843, B.List_ww844, B.List_ww845, B.List_ww846, B.List_ww847, B.List_ww848, B.List_ww849, B.List_ww850, B.List_ww851, B.List_ww852, B.List_ww853, B.List_ww854, B.List_ww855, B.List_ww856, B.List_ww857, B.List_ww858, B.List_ww859, B.List_ww860, B.List_17_68_42, B.List_ww861, B.List_ww862, B.List_ww863, B.List_17_74_46, B.List_ww864, B.List_34_37_13, B.List_ww865, B.List_ww866, B.List_ww867, B.List_ww868, B.List_ww869, B.List_ww870, B.List_ww871, B.List_ww872, B.List_ww873, B.List_ww874, B.List_ww875, B.List_ww876, B.List_ww877, B.List_ww878, B.List_ww879, B.List_ww880, B.List_ww881, B.List_ww882, B.List_ww883, B.List_ww884, B.List_ww885, B.List_ww886, B.List_ww887, B.List_ww888, B.List_ww889, B.List_ww890, B.List_ww891, B.List_ww892, B.List_ww893, B.List_ww894, B.List_ww895, B.List_ww896, B.List_ww897, B.List_ww898, B.List_ww899, B.List_ww8100, B.List_17_145_115, B.List_ww8101, B.List_ww8102, B.List_ww8103, B.List_ww8104, B.List_ww8105, B.List_ww8106, B.List_ww8107, B.List_ww8108, B.List_ww8109, B.List_ww8110, B.List_ww8111, B.List_ww8112, B.List_ww8113, B.List_ww8114, B.List_ww8115, B.List_ww8116, B.List_ww8117, B.List_ww8118, B.List_ww8119, B.List_ww8120, B.List_ww8121, B.List_ww8122, B.List_ww8123, B.List_ww8124, B.List_ww8125, B.List_ww8126, B.List_ww8127, B.List_ww8128, B.List_ww8129, B.List_ww8130, B.List_ww8131, B.List_ww8132, B.List_ww8133, B.List_ww8134, B.List_ww8135]), type$.JSArray_legacy_List_legacy_int); B.List_file_directory_link_notFound = A._setArrayType(makeConstList(["file", "directory", "link", "notFound"]), type$.JSArray_legacy_String); B.Type__$ExpenseUIState_s30 = A.typeLiteral("_$ExpenseUIState"); B.List_fkg = A._setArrayType(makeConstList([B.Type_ExpenseUIState_wKu, B.Type__$ExpenseUIState_s30]), type$.JSArray_legacy_Type); B.List_gRj = A._setArrayType(makeConstList([0, 0, 32722, 12287, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.List_gT4 = A._setArrayType(makeConstList(["af", "am", "ar", "as", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en", "es", "et", "eu", "fa", "fi", "fil", "fr", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zu"]), type$.JSArray_legacy_String); B.List_gc6 = A._setArrayType(makeConstList(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]), type$.JSArray_legacy_String); B.Type__$ImportRequestMapping_AaU = A.typeLiteral("_$ImportRequestMapping"); B.List_gg4 = A._setArrayType(makeConstList([B.Type_ImportRequestMapping_WUU, B.Type__$ImportRequestMapping_AaU]), type$.JSArray_legacy_Type); B.Type__$ProjectUIState_dUt = A.typeLiteral("_$ProjectUIState"); B.List_gg40 = A._setArrayType(makeConstList([B.Type_ProjectUIState_osT, B.Type__$ProjectUIState_dUt]), type$.JSArray_legacy_Type); B.Type__$InvoiceScheduleEntity_mLc = A.typeLiteral("_$InvoiceScheduleEntity"); B.List_gkc1 = A._setArrayType(makeConstList([B.Type_InvoiceScheduleEntity_26b, B.Type__$InvoiceScheduleEntity_mLc]), type$.JSArray_legacy_Type); B.List_gkc = A._setArrayType(makeConstList(["png", "svg", "jpeg", "gif", "jpg", "bmp", "txt", "doc", "docx", "xls", "xlsx", "pdf"]), type$.JSArray_legacy_String); B.List_gnE = A._setArrayType(makeConstList([0, 0, 65498, 45055, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.QuoteItemReportFields_0 = new A.QuoteItemReportFields(0, "productKey"); B.QuoteItemReportFields_1 = new A.QuoteItemReportFields(1, "description"); B.QuoteItemReportFields_2 = new A.QuoteItemReportFields(2, "price"); B.QuoteItemReportFields_3 = new A.QuoteItemReportFields(3, "cost"); B.QuoteItemReportFields_4 = new A.QuoteItemReportFields(4, "quantity"); B.QuoteItemReportFields_5 = new A.QuoteItemReportFields(5, "profit"); B.QuoteItemReportFields_6 = new A.QuoteItemReportFields(6, "total"); B.QuoteItemReportFields_7 = new A.QuoteItemReportFields(7, "discount"); B.QuoteItemReportFields_8 = new A.QuoteItemReportFields(8, "custom1"); B.QuoteItemReportFields_9 = new A.QuoteItemReportFields(9, "custom2"); B.QuoteItemReportFields_10 = new A.QuoteItemReportFields(10, "custom3"); B.QuoteItemReportFields_11 = new A.QuoteItemReportFields(11, "custom4"); B.QuoteItemReportFields_12 = new A.QuoteItemReportFields(12, "quoteNumber"); B.QuoteItemReportFields_13 = new A.QuoteItemReportFields(13, "quoteDate"); B.QuoteItemReportFields_14 = new A.QuoteItemReportFields(14, "client"); B.QuoteItemReportFields_15 = new A.QuoteItemReportFields(15, "validUntil"); B.QuoteItemReportFields_16 = new A.QuoteItemReportFields(16, "hasTaxes"); B.QuoteItemReportFields_17 = new A.QuoteItemReportFields(17, "taxRates"); B.QuoteItemReportFields_18 = new A.QuoteItemReportFields(18, "taxAmount"); B.QuoteItemReportFields_19 = new A.QuoteItemReportFields(19, "netTotal"); B.QuoteItemReportFields_20 = new A.QuoteItemReportFields(20, "currency"); B.List_gqs = A._setArrayType(makeConstList([B.QuoteItemReportFields_0, B.QuoteItemReportFields_1, B.QuoteItemReportFields_2, B.QuoteItemReportFields_3, B.QuoteItemReportFields_4, B.QuoteItemReportFields_5, B.QuoteItemReportFields_6, B.QuoteItemReportFields_7, B.QuoteItemReportFields_8, B.QuoteItemReportFields_9, B.QuoteItemReportFields_10, B.QuoteItemReportFields_11, B.QuoteItemReportFields_12, B.QuoteItemReportFields_13, B.QuoteItemReportFields_14, B.QuoteItemReportFields_15, B.QuoteItemReportFields_16, B.QuoteItemReportFields_17, B.QuoteItemReportFields_18, B.QuoteItemReportFields_19, B.QuoteItemReportFields_20]), type$.JSArray_legacy_QuoteItemReportFields); B.List_h8w = A._setArrayType(makeConstList(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]), type$.JSArray_legacy_String); B.Type__$GatewayOptionsEntity_M6L = A.typeLiteral("_$GatewayOptionsEntity"); B.List_hWW = A._setArrayType(makeConstList([B.Type_GatewayOptionsEntity_Ucj, B.Type__$GatewayOptionsEntity_M6L]), type$.JSArray_legacy_Type); B.List_hbB = A._setArrayType(makeConstList(["oO", "cC", "tT", "yY", "pP", "eE"]), type$.JSArray_legacy_String); B.TimeOfDay_0_0 = new A.TimeOfDay(0, 0); B.TimeOfDay_0_5 = new A.TimeOfDay(0, 5); B.TimeOfDay_0_10 = new A.TimeOfDay(0, 10); B.TimeOfDay_0_15 = new A.TimeOfDay(0, 15); B.TimeOfDay_0_20 = new A.TimeOfDay(0, 20); B.TimeOfDay_0_25 = new A.TimeOfDay(0, 25); B.TimeOfDay_0_30 = new A.TimeOfDay(0, 30); B.TimeOfDay_0_35 = new A.TimeOfDay(0, 35); B.TimeOfDay_0_40 = new A.TimeOfDay(0, 40); B.TimeOfDay_0_45 = new A.TimeOfDay(0, 45); B.TimeOfDay_0_50 = new A.TimeOfDay(0, 50); B.TimeOfDay_0_55 = new A.TimeOfDay(0, 55); B.List_htm = A._setArrayType(makeConstList([B.TimeOfDay_0_0, B.TimeOfDay_0_5, B.TimeOfDay_0_10, B.TimeOfDay_0_15, B.TimeOfDay_0_20, B.TimeOfDay_0_25, B.TimeOfDay_0_30, B.TimeOfDay_0_35, B.TimeOfDay_0_40, B.TimeOfDay_0_45, B.TimeOfDay_0_50, B.TimeOfDay_0_55]), type$.JSArray_legacy_TimeOfDay); B.TimeOfDay_2_0 = new A.TimeOfDay(2, 0); B.TimeOfDay_4_0 = new A.TimeOfDay(4, 0); B.TimeOfDay_6_0 = new A.TimeOfDay(6, 0); B.TimeOfDay_8_0 = new A.TimeOfDay(8, 0); B.TimeOfDay_10_0 = new A.TimeOfDay(10, 0); B.TimeOfDay_12_0 = new A.TimeOfDay(12, 0); B.TimeOfDay_14_0 = new A.TimeOfDay(14, 0); B.TimeOfDay_16_0 = new A.TimeOfDay(16, 0); B.TimeOfDay_18_0 = new A.TimeOfDay(18, 0); B.TimeOfDay_20_0 = new A.TimeOfDay(20, 0); B.TimeOfDay_22_0 = new A.TimeOfDay(22, 0); B.List_htm1 = A._setArrayType(makeConstList([B.TimeOfDay_0_0, B.TimeOfDay_2_0, B.TimeOfDay_4_0, B.TimeOfDay_6_0, B.TimeOfDay_8_0, B.TimeOfDay_10_0, B.TimeOfDay_12_0, B.TimeOfDay_14_0, B.TimeOfDay_16_0, B.TimeOfDay_18_0, B.TimeOfDay_20_0, B.TimeOfDay_22_0]), type$.JSArray_legacy_TimeOfDay); B.TimeOfDay_1_0 = new A.TimeOfDay(1, 0); B.TimeOfDay_3_0 = new A.TimeOfDay(3, 0); B.TimeOfDay_5_0 = new A.TimeOfDay(5, 0); B.TimeOfDay_7_0 = new A.TimeOfDay(7, 0); B.TimeOfDay_9_0 = new A.TimeOfDay(9, 0); B.TimeOfDay_11_0 = new A.TimeOfDay(11, 0); B.List_htm0 = A._setArrayType(makeConstList([B.TimeOfDay_12_0, B.TimeOfDay_1_0, B.TimeOfDay_2_0, B.TimeOfDay_3_0, B.TimeOfDay_4_0, B.TimeOfDay_5_0, B.TimeOfDay_6_0, B.TimeOfDay_7_0, B.TimeOfDay_8_0, B.TimeOfDay_9_0, B.TimeOfDay_10_0, B.TimeOfDay_11_0]), type$.JSArray_legacy_TimeOfDay); B.List_i3t = A._setArrayType(makeConstList([1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577]), type$.JSArray_legacy_int); B.Type__$DocumentEntity_58f = A.typeLiteral("_$DocumentEntity"); B.List_iDT = A._setArrayType(makeConstList([B.Type_DocumentEntity_4AN, B.Type__$DocumentEntity_58f]), type$.JSArray_legacy_Type); B.List_iDZ = A._setArrayType(makeConstList(["{1} 'at' {0}", "{1} 'at' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_legacy_String); B.Type_ExpenseItemResponse_GC7 = A.typeLiteral("ExpenseItemResponse"); B.Type__$ExpenseItemResponse_EGJ = A.typeLiteral("_$ExpenseItemResponse"); B.List_iEE = A._setArrayType(makeConstList([B.Type_ExpenseItemResponse_GC7, B.Type__$ExpenseItemResponse_EGJ]), type$.JSArray_legacy_Type); B.Type__$ExpenseEntity_cet = A.typeLiteral("_$ExpenseEntity"); B.List_iFM = A._setArrayType(makeConstList([B.Type_ExpenseEntity_OLh, B.Type__$ExpenseEntity_cet]), type$.JSArray_legacy_Type); B.List_iYO = A._setArrayType(makeConstList([0, 5, 16, 5, 8, 5, 24, 5, 4, 5, 20, 5, 12, 5, 28, 5, 2, 5, 18, 5, 10, 5, 26, 5, 6, 5, 22, 5, 14, 5, 30, 5, 1, 5, 17, 5, 9, 5, 25, 5, 5, 5, 21, 5, 13, 5, 29, 5, 3, 5, 19, 5, 11, 5, 27, 5, 7, 5, 23, 5]), type$.JSArray_legacy_int); B.Type__$VendorUIState_ato = A.typeLiteral("_$VendorUIState"); B.List_ifx = A._setArrayType(makeConstList([B.Type_VendorUIState_ohJ, B.Type__$VendorUIState_ato]), type$.JSArray_legacy_Type); B.List_ijq = A._setArrayType(makeConstList(["-//w3o//dtd w3 html strict 3.0//en//", "-/w3c/dtd html 4.0 transitional/en", "html"]), type$.JSArray_legacy_String); B._TimePickerMode_0 = new A._TimePickerMode(0, "hour"); B._TimePickerMode_1 = new A._TimePickerMode(1, "minute"); B.List_izR = A._setArrayType(makeConstList([B._TimePickerMode_0, B._TimePickerMode_1]), A.findType("JSArray<_TimePickerMode*>")); B.Type_DateFormatListResponse_Pd4 = A.typeLiteral("DateFormatListResponse"); B.Type__$DateFormatListResponse_WTK = A.typeLiteral("_$DateFormatListResponse"); B.List_jjG = A._setArrayType(makeConstList([B.Type_DateFormatListResponse_Pd4, B.Type__$DateFormatListResponse_WTK]), type$.JSArray_legacy_Type); B.List_k6K = A._setArrayType(makeConstList([B.EntityState_active, B.EntityState_archived, B.EntityState_deleted]), type$.JSArray_legacy_EntityState); B.Map_puwEs = new A.ConstantStringMap(2, {type: 641, value: "import"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puUcj = new A.ConstantStringMap(2, {type: 642, value: "media"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puSKd = new A.ConstantStringMap(2, {type: 643, value: "page"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_putQ0 = new A.ConstantStringMap(2, {type: 644, value: "charset"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puZf2 = new A.ConstantStringMap(2, {type: 645, value: "stylet"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu4MR = new A.ConstantStringMap(2, {type: 646, value: "keyframes"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pucg9 = new A.ConstantStringMap(2, {type: 647, value: "-webkit-keyframes"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puwEo = new A.ConstantStringMap(2, {type: 648, value: "-moz-keyframes"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puWDo = new A.ConstantStringMap(2, {type: 649, value: "-ms-keyframes"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puKEA = new A.ConstantStringMap(2, {type: 650, value: "-o-keyframes"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puzVh = new A.ConstantStringMap(2, {type: 651, value: "font-face"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puQK8 = new A.ConstantStringMap(2, {type: 652, value: "namespace"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puU5r = new A.ConstantStringMap(2, {type: 653, value: "host"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu2jN = new A.ConstantStringMap(2, {type: 654, value: "mixin"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pueTJ = new A.ConstantStringMap(2, {type: 655, value: "include"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puorM = new A.ConstantStringMap(2, {type: 656, value: "content"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu9kk = new A.ConstantStringMap(2, {type: 657, value: "extend"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puoqK = new A.ConstantStringMap(2, {type: 658, value: "-moz-document"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_pu5kv = new A.ConstantStringMap(2, {type: 659, value: "supports"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puQ4t = new A.ConstantStringMap(2, {type: 660, value: "viewport"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_puy8q = new A.ConstantStringMap(2, {type: 661, value: "-ms-viewport"}, B.List_type_value, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_k92 = A._setArrayType(makeConstList([B.Map_puwEs, B.Map_puUcj, B.Map_puSKd, B.Map_putQ0, B.Map_puZf2, B.Map_pu4MR, B.Map_pucg9, B.Map_puwEo, B.Map_puWDo, B.Map_puKEA, B.Map_puzVh, B.Map_puQK8, B.Map_puU5r, B.Map_pu2jN, B.Map_pueTJ, B.Map_puorM, B.Map_pu9kk, B.Map_puoqK, B.Map_pu5kv, B.Map_puQ4t, B.Map_puy8q]), type$.JSArray_legacy_Map_of_legacy_String_and_dynamic); B.Type__$DocumentState_yzz = A.typeLiteral("_$DocumentState"); B.List_kHh = A._setArrayType(makeConstList([B.Type_DocumentState_yL2, B.Type__$DocumentState_yzz]), type$.JSArray_legacy_Type); B.Type__$InvoiceUIState_O8C = A.typeLiteral("_$InvoiceUIState"); B.List_kMT = A._setArrayType(makeConstList([B.Type_InvoiceUIState_YU8, B.Type__$InvoiceUIState_O8C]), type$.JSArray_legacy_Type); B.Type__$CreditState_4YB = A.typeLiteral("_$CreditState"); B.List_kQR = A._setArrayType(makeConstList([B.Type_CreditState_23h, B.Type__$CreditState_4YB]), type$.JSArray_legacy_Type); B.List_kWG = A._setArrayType(makeConstList(["h:mm:ss a zzzz", "h:mm:ss a z", "h:mm:ss a", "h:mm a"]), type$.JSArray_legacy_String); B.List_kaS = A._setArrayType(makeConstList(["yY", "sS", "tT", "eE", "mM"]), type$.JSArray_legacy_String); B.Type__$TaxRateState_EUq = A.typeLiteral("_$TaxRateState"); B.List_kii = A._setArrayType(makeConstList([B.Type_TaxRateState_axY, B.Type__$TaxRateState_EUq]), type$.JSArray_legacy_Type); B.Type__$InvoiceEntity_kmf = A.typeLiteral("_$InvoiceEntity"); B.List_kuc = A._setArrayType(makeConstList([B.Type_InvoiceEntity_UcM, B.Type__$InvoiceEntity_kmf]), type$.JSArray_legacy_Type); B.Type__$ClientUIState_rx9 = A.typeLiteral("_$ClientUIState"); B.List_kya = A._setArrayType(makeConstList([B.Type_ClientUIState_ekJ, B.Type__$ClientUIState_rx9]), type$.JSArray_legacy_Type); B.Type__$TaskStatusUIState_t2C = A.typeLiteral("_$TaskStatusUIState"); B.List_kyy = A._setArrayType(makeConstList([B.Type_TaskStatusUIState_6VO, B.Type__$TaskStatusUIState_t2C]), type$.JSArray_legacy_Type); B.List_lqi = A._setArrayType(makeConstList([B.DocumentReportFields_0, B.DocumentReportFields_1, B.DocumentReportFields_2, B.DocumentReportFields_3, B.DocumentReportFields_4, B.DocumentReportFields_5, B.DocumentReportFields_6, B.DocumentReportFields_7, B.DocumentReportFields_8, B.DocumentReportFields_9]), type$.JSArray_legacy_DocumentReportFields); B.Type__$SystemLogEntity_M42 = A.typeLiteral("_$SystemLogEntity"); B.List_m2M = A._setArrayType(makeConstList([B.Type_SystemLogEntity_eL6, B.Type__$SystemLogEntity_M42]), type$.JSArray_legacy_Type); B.Type__$UserCompanyEntity_qhc = A.typeLiteral("_$UserCompanyEntity"); B.List_m3m = A._setArrayType(makeConstList([B.Type_UserCompanyEntity_XrT, B.Type__$UserCompanyEntity_qhc]), type$.JSArray_legacy_Type); B.List_m5d = A._setArrayType(makeConstList(["custom_designs", "group_settings", "client_portal", "custom_fields", "email_settings", "generated_numbers", "invoice_design", "templates_and_reminders", "subscriptions", "user_management"]), type$.JSArray_legacy_String); B.QuoteReportFields_0 = new A.QuoteReportFields(0, "id"); B.QuoteReportFields_1 = new A.QuoteReportFields(1, "amount"); B.QuoteReportFields_2 = new A.QuoteReportFields(2, "converted_amount"); B.QuoteReportFields_3 = new A.QuoteReportFields(3, "client"); B.QuoteReportFields_4 = new A.QuoteReportFields(4, "client_number"); B.QuoteReportFields_5 = new A.QuoteReportFields(5, "client_balance"); B.QuoteReportFields_6 = new A.QuoteReportFields(6, "client_address1"); B.QuoteReportFields_7 = new A.QuoteReportFields(7, "client_address2"); B.QuoteReportFields_8 = new A.QuoteReportFields(8, "client_state"); B.QuoteReportFields_9 = new A.QuoteReportFields(9, "client_country"); B.QuoteReportFields_10 = new A.QuoteReportFields(10, "client_shipping_address1"); B.QuoteReportFields_11 = new A.QuoteReportFields(11, "client_shipping_address2"); B.QuoteReportFields_12 = new A.QuoteReportFields(12, "client_shipping_city"); B.QuoteReportFields_13 = new A.QuoteReportFields(13, "client_shipping_state"); B.QuoteReportFields_14 = new A.QuoteReportFields(14, "client_shipping_postal_code"); B.QuoteReportFields_15 = new A.QuoteReportFields(15, "client_shipping_country"); B.QuoteReportFields_16 = new A.QuoteReportFields(16, "status"); B.QuoteReportFields_17 = new A.QuoteReportFields(17, "number"); B.QuoteReportFields_18 = new A.QuoteReportFields(18, "discount"); B.QuoteReportFields_19 = new A.QuoteReportFields(19, "po_number"); B.QuoteReportFields_20 = new A.QuoteReportFields(20, "date"); B.QuoteReportFields_21 = new A.QuoteReportFields(21, "partial_due_date"); B.QuoteReportFields_22 = new A.QuoteReportFields(22, "valid_until"); B.QuoteReportFields_23 = new A.QuoteReportFields(23, "partial"); B.QuoteReportFields_24 = new A.QuoteReportFields(24, "auto_bill"); B.QuoteReportFields_25 = new A.QuoteReportFields(25, "invoice1"); B.QuoteReportFields_26 = new A.QuoteReportFields(26, "invoice2"); B.QuoteReportFields_27 = new A.QuoteReportFields(27, "invoice3"); B.QuoteReportFields_28 = new A.QuoteReportFields(28, "invoice4"); B.QuoteReportFields_29 = new A.QuoteReportFields(29, "surcharge1"); B.QuoteReportFields_30 = new A.QuoteReportFields(30, "surcharge2"); B.QuoteReportFields_31 = new A.QuoteReportFields(31, "surcharge3"); B.QuoteReportFields_32 = new A.QuoteReportFields(32, "surcharge4"); B.QuoteReportFields_33 = new A.QuoteReportFields(33, "updated_at"); B.QuoteReportFields_34 = new A.QuoteReportFields(34, "archived_at"); B.QuoteReportFields_35 = new A.QuoteReportFields(35, "is_deleted"); B.QuoteReportFields_36 = new A.QuoteReportFields(36, "is_approved"); B.QuoteReportFields_37 = new A.QuoteReportFields(37, "tax_amount"); B.QuoteReportFields_38 = new A.QuoteReportFields(38, "net_amount"); B.QuoteReportFields_39 = new A.QuoteReportFields(39, "exchange_rate"); B.QuoteReportFields_40 = new A.QuoteReportFields(40, "public_notes"); B.QuoteReportFields_41 = new A.QuoteReportFields(41, "private_notes"); B.QuoteReportFields_42 = new A.QuoteReportFields(42, "client_vat_number"); B.QuoteReportFields_43 = new A.QuoteReportFields(43, "client_city"); B.QuoteReportFields_44 = new A.QuoteReportFields(44, "client_postal_code"); B.QuoteReportFields_45 = new A.QuoteReportFields(45, "client_website"); B.QuoteReportFields_46 = new A.QuoteReportFields(46, "tax_rate1"); B.QuoteReportFields_47 = new A.QuoteReportFields(47, "tax_rate2"); B.QuoteReportFields_48 = new A.QuoteReportFields(48, "tax_rate3"); B.QuoteReportFields_49 = new A.QuoteReportFields(49, "tax_name1"); B.QuoteReportFields_50 = new A.QuoteReportFields(50, "tax_name2"); B.QuoteReportFields_51 = new A.QuoteReportFields(51, "tax_name3"); B.QuoteReportFields_52 = new A.QuoteReportFields(52, "currency"); B.QuoteReportFields_53 = new A.QuoteReportFields(53, "is_viewed"); B.QuoteReportFields_54 = new A.QuoteReportFields(54, "assigned_to"); B.QuoteReportFields_55 = new A.QuoteReportFields(55, "created_by"); B.QuoteReportFields_56 = new A.QuoteReportFields(56, "client_phone"); B.QuoteReportFields_57 = new A.QuoteReportFields(57, "contact_email"); B.QuoteReportFields_58 = new A.QuoteReportFields(58, "contact_phone"); B.QuoteReportFields_59 = new A.QuoteReportFields(59, "contact_name"); B.List_m9u = A._setArrayType(makeConstList([B.QuoteReportFields_0, B.QuoteReportFields_1, B.QuoteReportFields_2, B.QuoteReportFields_3, B.QuoteReportFields_4, B.QuoteReportFields_5, B.QuoteReportFields_6, B.QuoteReportFields_7, B.QuoteReportFields_8, B.QuoteReportFields_9, B.QuoteReportFields_10, B.QuoteReportFields_11, B.QuoteReportFields_12, B.QuoteReportFields_13, B.QuoteReportFields_14, B.QuoteReportFields_15, B.QuoteReportFields_16, B.QuoteReportFields_17, B.QuoteReportFields_18, B.QuoteReportFields_19, B.QuoteReportFields_20, B.QuoteReportFields_21, B.QuoteReportFields_22, B.QuoteReportFields_23, B.QuoteReportFields_24, B.QuoteReportFields_25, B.QuoteReportFields_26, B.QuoteReportFields_27, B.QuoteReportFields_28, B.QuoteReportFields_29, B.QuoteReportFields_30, B.QuoteReportFields_31, B.QuoteReportFields_32, B.QuoteReportFields_33, B.QuoteReportFields_34, B.QuoteReportFields_35, B.QuoteReportFields_36, B.QuoteReportFields_37, B.QuoteReportFields_38, B.QuoteReportFields_39, B.QuoteReportFields_40, B.QuoteReportFields_41, B.QuoteReportFields_42, B.QuoteReportFields_43, B.QuoteReportFields_44, B.QuoteReportFields_45, B.QuoteReportFields_46, B.QuoteReportFields_47, B.QuoteReportFields_48, B.QuoteReportFields_49, B.QuoteReportFields_50, B.QuoteReportFields_51, B.QuoteReportFields_52, B.QuoteReportFields_53, B.QuoteReportFields_54, B.QuoteReportFields_55, B.QuoteReportFields_56, B.QuoteReportFields_57, B.QuoteReportFields_58, B.QuoteReportFields_59]), type$.JSArray_legacy_QuoteReportFields); B.List_mC8 = A._setArrayType(makeConstList([0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]), type$.JSArray_legacy_int); B.Type_PaymentTypeItemResponse_4QF = A.typeLiteral("PaymentTypeItemResponse"); B.Type__$PaymentTypeItemResponse_QIl = A.typeLiteral("_$PaymentTypeItemResponse"); B.List_mNZ = A._setArrayType(makeConstList([B.Type_PaymentTypeItemResponse_4QF, B.Type__$PaymentTypeItemResponse_QIl]), type$.JSArray_legacy_Type); B.Type_PaymentTypeListResponse_4QF = A.typeLiteral("PaymentTypeListResponse"); B.Type__$PaymentTypeListResponse_QIl = A.typeLiteral("_$PaymentTypeListResponse"); B.List_mNZ0 = A._setArrayType(makeConstList([B.Type_PaymentTypeListResponse_4QF, B.Type__$PaymentTypeListResponse_QIl]), type$.JSArray_legacy_Type); B.List_mRX = A._setArrayType(makeConstList(["A5", "A4", "A3", "B5", "B4", "JIS-B5", "JIS-B4", "letter", "legal", "ledger"]), type$.JSArray_legacy_String); B.Type_CurrencyListResponse_SJF = A.typeLiteral("CurrencyListResponse"); B.Type__$CurrencyListResponse_UKT = A.typeLiteral("_$CurrencyListResponse"); B.List_mb4 = A._setArrayType(makeConstList([B.Type_CurrencyListResponse_SJF, B.Type__$CurrencyListResponse_UKT]), type$.JSArray_legacy_Type); B._ListTileSlot_0 = new A._ListTileSlot(0, "leading"); B._ListTileSlot_1 = new A._ListTileSlot(1, "title"); B._ListTileSlot_2 = new A._ListTileSlot(2, "subtitle"); B._ListTileSlot_3 = new A._ListTileSlot(3, "trailing"); B.List_ml5 = A._setArrayType(makeConstList([B._ListTileSlot_0, B._ListTileSlot_1, B._ListTileSlot_2, B._ListTileSlot_3]), A.findType("JSArray<_ListTileSlot*>")); B.Type_ProductItemResponse_E8w = A.typeLiteral("ProductItemResponse"); B.Type__$ProductItemResponse_evi = A.typeLiteral("_$ProductItemResponse"); B.List_mxd = A._setArrayType(makeConstList([B.Type_ProductItemResponse_E8w, B.Type__$ProductItemResponse_evi]), type$.JSArray_legacy_Type); B.Type__$DatetimeFormatEntity_Cxz = A.typeLiteral("_$DatetimeFormatEntity"); B.List_myU = A._setArrayType(makeConstList([B.Type_DatetimeFormatEntity_EyI, B.Type__$DatetimeFormatEntity_Cxz]), type$.JSArray_legacy_Type); B.Pair_DVt = new A.Pair("http://www.w3.org/1998/Math/MathML", "annotaion-xml", type$.Pair_of_legacy_String_and_legacy_String); B.List_mzi = A._setArrayType(makeConstList([B.Pair_DVt, B.Pair_SDM, B.Pair_ijl, B.Pair_27z]), type$.JSArray_legacy_Pair_of_legacy_String_and_legacy_String); B.Type__$WebhookConfigurationEntity_BxI = A.typeLiteral("_$WebhookConfigurationEntity"); B.List_n7e = A._setArrayType(makeConstList([B.Type_WebhookConfigurationEntity_WRw, B.Type__$WebhookConfigurationEntity_BxI]), type$.JSArray_legacy_Type); B.Type_TaskStatusItemResponse_gPT = A.typeLiteral("TaskStatusItemResponse"); B.Type__$TaskStatusItemResponse_EK0 = A.typeLiteral("_$TaskStatusItemResponse"); B.List_n7k = A._setArrayType(makeConstList([B.Type_TaskStatusItemResponse_gPT, B.Type__$TaskStatusItemResponse_EK0]), type$.JSArray_legacy_Type); B.Type_UserCompanyItemResponse_eaJ = A.typeLiteral("UserCompanyItemResponse"); B.Type__$UserCompanyItemResponse_9m9 = A.typeLiteral("_$UserCompanyItemResponse"); B.List_nTi = A._setArrayType(makeConstList([B.Type_UserCompanyItemResponse_eaJ, B.Type__$UserCompanyItemResponse_9m9]), type$.JSArray_legacy_Type); B.Type_CountryListResponse_KeE = A.typeLiteral("CountryListResponse"); B.Type__$CountryListResponse_ktn = A.typeLiteral("_$CountryListResponse"); B.List_nXg = A._setArrayType(makeConstList([B.Type_CountryListResponse_KeE, B.Type__$CountryListResponse_ktn]), type$.JSArray_legacy_Type); B.Type__$UIState_L7j = A.typeLiteral("_$UIState"); B.List_nZd = A._setArrayType(makeConstList([B.Type_UIState_sxw, B.Type__$UIState_L7j]), type$.JSArray_legacy_Type); B.List_nxB = A._setArrayType(makeConstList([0, 0, 24576, 1023, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.List_oGx = A._setArrayType(makeConstList([B.DateRangeComparison_previousPeriod, B.DateRangeComparison_previousYear, B.DateRangeComparison_customRange]), A.findType("JSArray")); B.Type__$WebhookUIState_MQu = A.typeLiteral("_$WebhookUIState"); B.List_oUG = A._setArrayType(makeConstList([B.Type_WebhookUIState_HFe, B.Type__$WebhookUIState_MQu]), type$.JSArray_legacy_Type); B.Type__$GatewayEntity_8eb = A.typeLiteral("_$GatewayEntity"); B.List_oW3 = A._setArrayType(makeConstList([B.Type_GatewayEntity_kOG, B.Type__$GatewayEntity_8eb]), type$.JSArray_legacy_Type); B.List_omi = A._setArrayType(makeConstList(["-//w3c//dtd xhtml 1.0 frameset//", "-//w3c//dtd xhtml 1.0 transitional//"]), type$.JSArray_legacy_String); B.Type_ProductListResponse_INA = A.typeLiteral("ProductListResponse"); B.Type__$ProductListResponse_qYN = A.typeLiteral("_$ProductListResponse"); B.List_ooa = A._setArrayType(makeConstList([B.Type_ProductListResponse_INA, B.Type__$ProductListResponse_qYN]), type$.JSArray_legacy_Type); B.RecurringExpenseReportFields_0 = new A.RecurringExpenseReportFields(0, "id"); B.RecurringExpenseReportFields_1 = new A.RecurringExpenseReportFields(1, "amount"); B.RecurringExpenseReportFields_2 = new A.RecurringExpenseReportFields(2, "net_amount"); B.RecurringExpenseReportFields_3 = new A.RecurringExpenseReportFields(3, "tax_amount"); B.RecurringExpenseReportFields_4 = new A.RecurringExpenseReportFields(4, "transaction_reference"); B.RecurringExpenseReportFields_5 = new A.RecurringExpenseReportFields(5, "currency"); B.RecurringExpenseReportFields_6 = new A.RecurringExpenseReportFields(6, "date"); B.RecurringExpenseReportFields_7 = new A.RecurringExpenseReportFields(7, "payment_date"); B.RecurringExpenseReportFields_8 = new A.RecurringExpenseReportFields(8, "payment_type"); B.RecurringExpenseReportFields_9 = new A.RecurringExpenseReportFields(9, "tax_rate1"); B.RecurringExpenseReportFields_10 = new A.RecurringExpenseReportFields(10, "tax_rate2"); B.RecurringExpenseReportFields_11 = new A.RecurringExpenseReportFields(11, "tax_rate3"); B.RecurringExpenseReportFields_12 = new A.RecurringExpenseReportFields(12, "client"); B.RecurringExpenseReportFields_13 = new A.RecurringExpenseReportFields(13, "client_balance"); B.RecurringExpenseReportFields_14 = new A.RecurringExpenseReportFields(14, "client_address1"); B.RecurringExpenseReportFields_15 = new A.RecurringExpenseReportFields(15, "client_address2"); B.RecurringExpenseReportFields_16 = new A.RecurringExpenseReportFields(16, "client_shipping_address1"); B.RecurringExpenseReportFields_17 = new A.RecurringExpenseReportFields(17, "client_shipping_address2"); B.RecurringExpenseReportFields_18 = new A.RecurringExpenseReportFields(18, "vendor"); B.RecurringExpenseReportFields_19 = new A.RecurringExpenseReportFields(19, "expense1"); B.RecurringExpenseReportFields_20 = new A.RecurringExpenseReportFields(20, "expense2"); B.RecurringExpenseReportFields_21 = new A.RecurringExpenseReportFields(21, "expense3"); B.RecurringExpenseReportFields_22 = new A.RecurringExpenseReportFields(22, "expense4"); B.RecurringExpenseReportFields_23 = new A.RecurringExpenseReportFields(23, "category"); B.RecurringExpenseReportFields_24 = new A.RecurringExpenseReportFields(24, "assigned_to"); B.RecurringExpenseReportFields_25 = new A.RecurringExpenseReportFields(25, "created_by"); B.RecurringExpenseReportFields_26 = new A.RecurringExpenseReportFields(26, "public_notes"); B.RecurringExpenseReportFields_27 = new A.RecurringExpenseReportFields(27, "private_notes"); B.RecurringExpenseReportFields_28 = new A.RecurringExpenseReportFields(28, "frequency"); B.RecurringExpenseReportFields_29 = new A.RecurringExpenseReportFields(29, "start_date"); B.RecurringExpenseReportFields_30 = new A.RecurringExpenseReportFields(30, "remaining_cycles"); B.List_oqK = A._setArrayType(makeConstList([B.RecurringExpenseReportFields_0, B.RecurringExpenseReportFields_1, B.RecurringExpenseReportFields_2, B.RecurringExpenseReportFields_3, B.RecurringExpenseReportFields_4, B.RecurringExpenseReportFields_5, B.RecurringExpenseReportFields_6, B.RecurringExpenseReportFields_7, B.RecurringExpenseReportFields_8, B.RecurringExpenseReportFields_9, B.RecurringExpenseReportFields_10, B.RecurringExpenseReportFields_11, B.RecurringExpenseReportFields_12, B.RecurringExpenseReportFields_13, B.RecurringExpenseReportFields_14, B.RecurringExpenseReportFields_15, B.RecurringExpenseReportFields_16, B.RecurringExpenseReportFields_17, B.RecurringExpenseReportFields_18, B.RecurringExpenseReportFields_19, B.RecurringExpenseReportFields_20, B.RecurringExpenseReportFields_21, B.RecurringExpenseReportFields_22, B.RecurringExpenseReportFields_23, B.RecurringExpenseReportFields_24, B.RecurringExpenseReportFields_25, B.RecurringExpenseReportFields_26, B.RecurringExpenseReportFields_27, B.RecurringExpenseReportFields_28, B.RecurringExpenseReportFields_29, B.RecurringExpenseReportFields_30]), type$.JSArray_legacy_RecurringExpenseReportFields); B.NamedAttribution_code = new A.NamedAttribution("code"); B.NamedAttribution_bold = new A.NamedAttribution("bold"); B.NamedAttribution_italics = new A.NamedAttribution("italics"); B.NamedAttribution_strikethrough = new A.NamedAttribution("strikethrough"); B.List_ot1 = A._setArrayType(makeConstList([B.NamedAttribution_code, B.NamedAttribution_bold, B.NamedAttribution_italics, B.NamedAttribution_strikethrough]), A.findType("JSArray")); B.Type_TaskStatusListResponse_OvD = A.typeLiteral("TaskStatusListResponse"); B.Type__$TaskStatusListResponse_EK0 = A.typeLiteral("_$TaskStatusListResponse"); B.List_ouA = A._setArrayType(makeConstList([B.Type_TaskStatusListResponse_OvD, B.Type__$TaskStatusListResponse_EK0]), type$.JSArray_legacy_Type); B.Type__$PaymentTermUIState_88f = A.typeLiteral("_$PaymentTermUIState"); B.List_oyU0 = A._setArrayType(makeConstList([B.Type_PaymentTermUIState_2No, B.Type__$PaymentTermUIState_88f]), type$.JSArray_legacy_Type); B._CornerId_0 = new A._CornerId(0, "topLeft"); B._CornerId_3 = new A._CornerId(3, "bottomRight"); B._Diagonal__CornerId_0__CornerId_3 = new A._Diagonal(B._CornerId_0, B._CornerId_3); B._Diagonal__CornerId_3__CornerId_0 = new A._Diagonal(B._CornerId_3, B._CornerId_0); B._CornerId_1 = new A._CornerId(1, "topRight"); B._CornerId_2 = new A._CornerId(2, "bottomLeft"); B._Diagonal__CornerId_1__CornerId_2 = new A._Diagonal(B._CornerId_1, B._CornerId_2); B._Diagonal__CornerId_2__CornerId_1 = new A._Diagonal(B._CornerId_2, B._CornerId_1); B.List_oyU = A._setArrayType(makeConstList([B._Diagonal__CornerId_0__CornerId_3, B._Diagonal__CornerId_3__CornerId_0, B._Diagonal__CornerId_1__CornerId_2, B._Diagonal__CornerId_2__CornerId_1]), A.findType("JSArray<_Diagonal*>")); B.List_portrait_landscape = A._setArrayType(makeConstList(["portrait", "landscape"]), type$.JSArray_legacy_String); B.List_pre_listing_textarea = A._setArrayType(makeConstList(["pre", "listing", "textarea"]), type$.JSArray_legacy_String); B.Type_PaymentItemResponse_Hr9 = A.typeLiteral("PaymentItemResponse"); B.Type__$PaymentItemResponse_d2q = A.typeLiteral("_$PaymentItemResponse"); B.List_puA = A._setArrayType(makeConstList([B.Type_PaymentItemResponse_Hr9, B.Type__$PaymentItemResponse_d2q]), type$.JSArray_legacy_Type); B.List_qNA = A._setArrayType(makeConstList([0, 0, 32754, 11263, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.Type_GatewayTokenListResponse_4jG = A.typeLiteral("GatewayTokenListResponse"); B.Type__$GatewayTokenListResponse_O1u = A.typeLiteral("_$GatewayTokenListResponse"); B.List_qNu = A._setArrayType(makeConstList([B.Type_GatewayTokenListResponse_4jG, B.Type__$GatewayTokenListResponse_O1u]), type$.JSArray_legacy_Type); B.TaxRateReportFields_0 = new A.TaxRateReportFields(0, "client"); B.TaxRateReportFields_1 = new A.TaxRateReportFields(1, "invoice"); B.TaxRateReportFields_2 = new A.TaxRateReportFields(2, "invoice_amount"); B.TaxRateReportFields_3 = new A.TaxRateReportFields(3, "invoice_date"); B.TaxRateReportFields_4 = new A.TaxRateReportFields(4, "payment_date"); B.TaxRateReportFields_5 = new A.TaxRateReportFields(5, "tax_name"); B.TaxRateReportFields_6 = new A.TaxRateReportFields(6, "tax_rate"); B.TaxRateReportFields_7 = new A.TaxRateReportFields(7, "tax_amount"); B.TaxRateReportFields_8 = new A.TaxRateReportFields(8, "tax_paid"); B.TaxRateReportFields_9 = new A.TaxRateReportFields(9, "payment_amount"); B.TaxRateReportFields_10 = new A.TaxRateReportFields(10, "currency"); B.TaxRateReportFields_11 = new A.TaxRateReportFields(11, "transaction_reference"); B.List_qPn = A._setArrayType(makeConstList([B.TaxRateReportFields_0, B.TaxRateReportFields_1, B.TaxRateReportFields_2, B.TaxRateReportFields_3, B.TaxRateReportFields_4, B.TaxRateReportFields_5, B.TaxRateReportFields_6, B.TaxRateReportFields_7, B.TaxRateReportFields_8, B.TaxRateReportFields_9, B.TaxRateReportFields_10, B.TaxRateReportFields_11]), type$.JSArray_legacy_TaxRateReportFields); B.List_qQn = A._setArrayType(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0]), type$.JSArray_legacy_int); B.List_qQn0 = A._setArrayType(makeConstList([0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 0]), type$.JSArray_legacy_int); B.List_qQn1 = A._setArrayType(makeConstList([3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258]), type$.JSArray_legacy_int); B.List_qg40 = A._setArrayType(makeConstList([0, 0, 32722, 12287, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.List_qg4 = A._setArrayType(makeConstList([0, 0, 65490, 12287, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); B.List_qhE = A._setArrayType(makeConstList(["calendar", "camera", "contacts", "location", "locationAlways", "locationWhenInUse", "mediaLibrary", "microphone", "phone", "photos", "photosAddOnly", "reminders", "sensors", "sms", "speech", "storage", "ignoreBatteryOptimizations", "notification", "access_media_location", "activity_recognition", "unknown", "bluetooth", "manageExternalStorage", "systemAlertWindow", "requestInstallPackages", "appTrackingTransparency", "criticalAlerts", "accessNotificationPolicy", "bluetoothScan", "bluetoothAdvertise", "bluetoothConnect"]), type$.JSArray_legacy_String); B.Type__$DashboardUIState_gkc = A.typeLiteral("_$DashboardUIState"); B.List_qjZ = A._setArrayType(makeConstList([B.Type_DashboardUIState_4YB, B.Type__$DashboardUIState_gkc]), type$.JSArray_legacy_Type); B.List_2Vk3 = A._setArrayType(makeConstList([137, 80, 78, 71, 13, 10, 26, 10]), type$.JSArray_nullable_int); B.ImageFileFormat_iDT = new A.ImageFileFormat(B.List_2Vk3, "image/png"); B.List_ww8136 = A._setArrayType(makeConstList([71, 73, 70, 56, 55, 97]), type$.JSArray_nullable_int); B.ImageFileFormat_fL6 = new A.ImageFileFormat(B.List_ww8136, "image/gif"); B.List_ww8137 = A._setArrayType(makeConstList([71, 73, 70, 56, 57, 97]), type$.JSArray_nullable_int); B.ImageFileFormat_fL60 = new A.ImageFileFormat(B.List_ww8137, "image/gif"); B.List_255_216_255 = A._setArrayType(makeConstList([255, 216, 255]), type$.JSArray_nullable_int); B.ImageFileFormat_34s = new A.ImageFileFormat(B.List_255_216_255, "image/jpeg"); B.List_UiL = A._setArrayType(makeConstList([82, 73, 70, 70, null, null, null, null, 87, 69, 66, 80]), type$.JSArray_nullable_int); B.ImageFileFormat_CZk = new A.ImageFileFormat(B.List_UiL, "image/webp"); B.List_66_77 = A._setArrayType(makeConstList([66, 77]), type$.JSArray_nullable_int); B.ImageFileFormat_23h = new A.ImageFileFormat(B.List_66_77, "image/bmp"); B.List_qp8 = A._setArrayType(makeConstList([B.ImageFileFormat_iDT, B.ImageFileFormat_fL6, B.ImageFileFormat_fL60, B.ImageFileFormat_34s, B.ImageFileFormat_CZk, B.ImageFileFormat_23h]), A.findType("JSArray")); B.List_qpm = A._setArrayType(makeConstList(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_legacy_String); B.TaskReportFields_0 = new A.TaskReportFields(0, "id"); B.TaskReportFields_1 = new A.TaskReportFields(1, "rate"); B.TaskReportFields_2 = new A.TaskReportFields(2, "calculated_rate"); B.TaskReportFields_3 = new A.TaskReportFields(3, "start_time"); B.TaskReportFields_4 = new A.TaskReportFields(4, "end_time"); B.TaskReportFields_5 = new A.TaskReportFields(5, "duration"); B.TaskReportFields_6 = new A.TaskReportFields(6, "description"); B.TaskReportFields_7 = new A.TaskReportFields(7, "invoice"); B.TaskReportFields_8 = new A.TaskReportFields(8, "invoice_amount"); B.TaskReportFields_9 = new A.TaskReportFields(9, "invoice_date"); B.TaskReportFields_10 = new A.TaskReportFields(10, "invoice_due_date"); B.TaskReportFields_11 = new A.TaskReportFields(11, "project"); B.TaskReportFields_12 = new A.TaskReportFields(12, "client"); B.TaskReportFields_13 = new A.TaskReportFields(13, "client_balance"); B.TaskReportFields_14 = new A.TaskReportFields(14, "client_address1"); B.TaskReportFields_15 = new A.TaskReportFields(15, "client_address2"); B.TaskReportFields_16 = new A.TaskReportFields(16, "client_shipping_address1"); B.TaskReportFields_17 = new A.TaskReportFields(17, "client_shipping_address2"); B.TaskReportFields_18 = new A.TaskReportFields(18, "task1"); B.TaskReportFields_19 = new A.TaskReportFields(19, "task2"); B.TaskReportFields_20 = new A.TaskReportFields(20, "task3"); B.TaskReportFields_21 = new A.TaskReportFields(21, "task4"); B.TaskReportFields_22 = new A.TaskReportFields(22, "status"); B.TaskReportFields_23 = new A.TaskReportFields(23, "assigned_to"); B.TaskReportFields_24 = new A.TaskReportFields(24, "created_by"); B.List_qrv = A._setArrayType(makeConstList([B.TaskReportFields_0, B.TaskReportFields_1, B.TaskReportFields_2, B.TaskReportFields_3, B.TaskReportFields_4, B.TaskReportFields_5, B.TaskReportFields_6, B.TaskReportFields_7, B.TaskReportFields_8, B.TaskReportFields_9, B.TaskReportFields_10, B.TaskReportFields_11, B.TaskReportFields_12, B.TaskReportFields_13, B.TaskReportFields_14, B.TaskReportFields_15, B.TaskReportFields_16, B.TaskReportFields_17, B.TaskReportFields_18, B.TaskReportFields_19, B.TaskReportFields_20, B.TaskReportFields_21, B.TaskReportFields_22, B.TaskReportFields_23, B.TaskReportFields_24]), type$.JSArray_legacy_TaskReportFields); B.TextAlign_0 = new A.TextAlign(0, "left"); B.TextAlign_1 = new A.TextAlign(1, "right"); B.TextAlign_2 = new A.TextAlign(2, "center"); B.TextAlign_3 = new A.TextAlign(3, "justify"); B.TextAlign_4 = new A.TextAlign(4, "start"); B.TextAlign_5 = new A.TextAlign(5, "end"); B.List_s2p = A._setArrayType(makeConstList([B.TextAlign_0, B.TextAlign_1, B.TextAlign_2, B.TextAlign_3, B.TextAlign_4, B.TextAlign_5]), A.findType("JSArray")); B.List_sDr = A._setArrayType(makeConstList(["C", "D", "A", "T", "A", "["]), type$.JSArray_legacy_String); B.Pair_06w = new A.Pair("http://www.w3.org/1999/xhtml", "optgroup", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_wsa = new A.Pair("http://www.w3.org/1999/xhtml", "option", type$.Pair_of_legacy_String_and_legacy_String); B.List_sEs = A._setArrayType(makeConstList([B.Pair_06w, B.Pair_wsa]), type$.JSArray_dynamic); B.List_soA = A._setArrayType(makeConstList(["sidebar_active_background_color", "sidebar_active_font_color", "sidebar_inactive_background_color", "sidebar_inactive_font_color", "invoice_header_background_color", "invoice_header_font_color", "table_alternate_row_background_color"]), type$.JSArray_legacy_String); B.List_tbody_tfoot_thead_html = A._setArrayType(makeConstList(["tbody", "tfoot", "thead", "html"]), type$.JSArray_legacy_String); B.Color_1140850688 = new A.Color(1140850688); B.Offset_0_0 = new A.Offset(0, 0); B.OuterBoxShadow_kUP = new A.OuterBoxShadow(0, B.BlurStyle_0, B.Color_1140850688, B.Offset_0_0, 8); B.List_tcr = A._setArrayType(makeConstList([B.OuterBoxShadow_kUP]), type$.JSArray_legacy_BoxShadow); B.List_true_false = A._setArrayType(makeConstList([true, false]), type$.JSArray_legacy_bool); B.Type__$ClientEntity_RU1 = A.typeLiteral("_$ClientEntity"); B.List_u3D = A._setArrayType(makeConstList([B.Type_ClientEntity_PI2, B.Type__$ClientEntity_RU1]), type$.JSArray_legacy_Type); B.Type__$UserCompanyState_C0V = A.typeLiteral("_$UserCompanyState"); B.List_uEs = A._setArrayType(makeConstList([B.Type_UserCompanyState_8aB, B.Type__$UserCompanyState_C0V]), type$.JSArray_legacy_Type); B.Type__$ActivityEntity_EKW = A.typeLiteral("_$ActivityEntity"); B.List_uPE = A._setArrayType(makeConstList([B.Type_ActivityEntity_bvx, B.Type__$ActivityEntity_EKW]), type$.JSArray_legacy_Type); B.Type__$CreditUIState_LF7 = A.typeLiteral("_$CreditUIState"); B.List_uQd = A._setArrayType(makeConstList([B.Type_CreditUIState_pyp, B.Type__$CreditUIState_LF7]), type$.JSArray_legacy_Type); B.List_uSC0 = A._setArrayType(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7]), type$.JSArray_legacy_int); B.List_uSC = A._setArrayType(makeConstList([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]), type$.JSArray_legacy_int); B.Type_CurrencyItemResponse_2Th = A.typeLiteral("CurrencyItemResponse"); B.Type__$CurrencyItemResponse_UKT = A.typeLiteral("_$CurrencyItemResponse"); B.List_uUY = A._setArrayType(makeConstList([B.Type_CurrencyItemResponse_2Th, B.Type__$CurrencyItemResponse_UKT]), type$.JSArray_legacy_Type); B.Type__$VendorEntity_XtO = A.typeLiteral("_$VendorEntity"); B.List_uUY0 = A._setArrayType(makeConstList([B.Type_VendorEntity_Fh9, B.Type__$VendorEntity_XtO]), type$.JSArray_legacy_Type); B.Type_VendorItemResponse_zLp = A.typeLiteral("VendorItemResponse"); B.Type__$VendorItemResponse_YIO = A.typeLiteral("_$VendorItemResponse"); B.List_uae = A._setArrayType(makeConstList([B.Type_VendorItemResponse_zLp, B.Type__$VendorItemResponse_YIO]), type$.JSArray_legacy_Type); B.Type__$AccountEntity_Gqz = A.typeLiteral("_$AccountEntity"); B.List_uv0 = A._setArrayType(makeConstList([B.Type_AccountEntity_46S, B.Type__$AccountEntity_Gqz]), type$.JSArray_legacy_Type); B.Type_ProjectItemResponse_Wn0 = A.typeLiteral("ProjectItemResponse"); B.Type__$ProjectItemResponse_uTE = A.typeLiteral("_$ProjectItemResponse"); B.List_vhP = A._setArrayType(makeConstList([B.Type_ProjectItemResponse_Wn0, B.Type__$ProjectItemResponse_uTE]), type$.JSArray_legacy_Type); B.Type_ExpenseCategoryItemResponse_72A = A.typeLiteral("ExpenseCategoryItemResponse"); B.Type_5m4 = A.typeLiteral("_$ExpenseCategoryItemResponse"); B.List_vnU = A._setArrayType(makeConstList([B.Type_ExpenseCategoryItemResponse_72A, B.Type_5m4]), type$.JSArray_legacy_Type); B.Type_ExpenseCategoryListResponse_72A = A.typeLiteral("ExpenseCategoryListResponse"); B.Type_5m40 = A.typeLiteral("_$ExpenseCategoryListResponse"); B.List_vnU0 = A._setArrayType(makeConstList([B.Type_ExpenseCategoryListResponse_72A, B.Type_5m40]), type$.JSArray_legacy_Type); B.Type_PreImportResponse_GJu = A.typeLiteral("PreImportResponse"); B.Type__$PreImportResponse_kYz = A.typeLiteral("_$PreImportResponse"); B.List_vx7 = A._setArrayType(makeConstList([B.Type_PreImportResponse_GJu, B.Type__$PreImportResponse_kYz]), type$.JSArray_legacy_Type); B.Type_TokenListResponse_71T = A.typeLiteral("TokenListResponse"); B.Type__$TokenListResponse_Tti = A.typeLiteral("_$TokenListResponse"); B.List_vzd = A._setArrayType(makeConstList([B.Type_TokenListResponse_71T, B.Type__$TokenListResponse_Tti]), type$.JSArray_legacy_Type); B.Type__$TaskStatusState_swM = A.typeLiteral("_$TaskStatusState"); B.List_w4G = A._setArrayType(makeConstList([B.Type_TaskStatusState_Dm4, B.Type__$TaskStatusState_swM]), type$.JSArray_legacy_Type); B.LogicalKeyboardKey_4294968066 = new A.LogicalKeyboardKey(4294968066); B.LogicalKeyboardKey_4294968067 = new A.LogicalKeyboardKey(4294968067); B.LogicalKeyboardKey_4294968068 = new A.LogicalKeyboardKey(4294968068); B.LogicalKeyboardKey_4294968065 = new A.LogicalKeyboardKey(4294968065); B.List_w97 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968066, B.LogicalKeyboardKey_4294968067, B.LogicalKeyboardKey_4294968068, B.LogicalKeyboardKey_4294968065]), A.findType("JSArray")); B.Type__$RecurringExpenseState_5Ru = A.typeLiteral("_$RecurringExpenseState"); B.List_wD4 = A._setArrayType(makeConstList([B.Type_RecurringExpenseState_o7m, B.Type__$RecurringExpenseState_5Ru]), type$.JSArray_legacy_Type); B.Type_TaxRateItemResponse_km0 = A.typeLiteral("TaxRateItemResponse"); B.Type__$TaxRateItemResponse_atK = A.typeLiteral("_$TaxRateItemResponse"); B.List_wEo0 = A._setArrayType(makeConstList([B.Type_TaxRateItemResponse_km0, B.Type__$TaxRateItemResponse_atK]), type$.JSArray_legacy_Type); B.Type__$TaxRateUIState_x4Q = A.typeLiteral("_$TaxRateUIState"); B.List_wEo1 = A._setArrayType(makeConstList([B.Type_TaxRateUIState_QAb, B.Type__$TaxRateUIState_x4Q]), type$.JSArray_legacy_Type); B.Type__$GroupEntity_8qN = A.typeLiteral("_$GroupEntity"); B.List_wIq = A._setArrayType(makeConstList([B.Type_GroupEntity_CJE, B.Type__$GroupEntity_8qN]), type$.JSArray_legacy_Type); B.Type__$SizeEntity_aLp = A.typeLiteral("_$SizeEntity"); B.List_wMy1 = A._setArrayType(makeConstList([B.Type_SizeEntity_ROq, B.Type__$SizeEntity_aLp]), type$.JSArray_legacy_Type); B.List_wMy = A._setArrayType(makeConstList(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]), type$.JSArray_legacy_String); B.PaymentReportFields_0 = new A.PaymentReportFields(0, "id"); B.PaymentReportFields_1 = new A.PaymentReportFields(1, "number"); B.PaymentReportFields_2 = new A.PaymentReportFields(2, "amount"); B.PaymentReportFields_3 = new A.PaymentReportFields(3, "client"); B.PaymentReportFields_4 = new A.PaymentReportFields(4, "client_number"); B.PaymentReportFields_5 = new A.PaymentReportFields(5, "client_balance"); B.PaymentReportFields_6 = new A.PaymentReportFields(6, "client_address1"); B.PaymentReportFields_7 = new A.PaymentReportFields(7, "client_address2"); B.PaymentReportFields_8 = new A.PaymentReportFields(8, "client_vat_number"); B.PaymentReportFields_9 = new A.PaymentReportFields(9, "client_city"); B.PaymentReportFields_10 = new A.PaymentReportFields(10, "client_postal_code"); B.PaymentReportFields_11 = new A.PaymentReportFields(11, "client_country"); B.PaymentReportFields_12 = new A.PaymentReportFields(12, "client_shipping_address1"); B.PaymentReportFields_13 = new A.PaymentReportFields(13, "client_shipping_address2"); B.PaymentReportFields_14 = new A.PaymentReportFields(14, "client_state"); B.PaymentReportFields_15 = new A.PaymentReportFields(15, "client_shipping_city"); B.PaymentReportFields_16 = new A.PaymentReportFields(16, "client_shipping_state"); B.PaymentReportFields_17 = new A.PaymentReportFields(17, "client_shipping_postal_code"); B.PaymentReportFields_18 = new A.PaymentReportFields(18, "client_shipping_country"); B.PaymentReportFields_19 = new A.PaymentReportFields(19, "transaction_reference"); B.PaymentReportFields_20 = new A.PaymentReportFields(20, "date"); B.PaymentReportFields_21 = new A.PaymentReportFields(21, "type"); B.PaymentReportFields_22 = new A.PaymentReportFields(22, "payment1"); B.PaymentReportFields_23 = new A.PaymentReportFields(23, "payment2"); B.PaymentReportFields_24 = new A.PaymentReportFields(24, "payment3"); B.PaymentReportFields_25 = new A.PaymentReportFields(25, "payment4"); B.PaymentReportFields_26 = new A.PaymentReportFields(26, "exchange_rate"); B.PaymentReportFields_27 = new A.PaymentReportFields(27, "converted_amount"); B.PaymentReportFields_28 = new A.PaymentReportFields(28, "invoices"); B.PaymentReportFields_29 = new A.PaymentReportFields(29, "credits"); B.List_wMy0 = A._setArrayType(makeConstList([B.PaymentReportFields_0, B.PaymentReportFields_1, B.PaymentReportFields_2, B.PaymentReportFields_3, B.PaymentReportFields_4, B.PaymentReportFields_5, B.PaymentReportFields_6, B.PaymentReportFields_7, B.PaymentReportFields_8, B.PaymentReportFields_9, B.PaymentReportFields_10, B.PaymentReportFields_11, B.PaymentReportFields_12, B.PaymentReportFields_13, B.PaymentReportFields_14, B.PaymentReportFields_15, B.PaymentReportFields_16, B.PaymentReportFields_17, B.PaymentReportFields_18, B.PaymentReportFields_19, B.PaymentReportFields_20, B.PaymentReportFields_21, B.PaymentReportFields_22, B.PaymentReportFields_23, B.PaymentReportFields_24, B.PaymentReportFields_25, B.PaymentReportFields_26, B.PaymentReportFields_27, B.PaymentReportFields_28, B.PaymentReportFields_29]), type$.JSArray_legacy_PaymentReportFields); B.List_wSV = A._setArrayType(makeConstList(["bind", "if", "ref", "repeat", "syntax"]), type$.JSArray_legacy_String); B.Type__$PaymentTermEntity_yvi = A.typeLiteral("_$PaymentTermEntity"); B.List_wTh = A._setArrayType(makeConstList([B.Type_PaymentTermEntity_EHU, B.Type__$PaymentTermEntity_yvi]), type$.JSArray_legacy_Type); B.List_wbZ = A._setArrayType(makeConstList([B.AutovalidateMode_0, B.AutovalidateMode_1, B.AutovalidateMode_2]), A.findType("JSArray")); B.Type_HealthCheckResponse_EKW = A.typeLiteral("HealthCheckResponse"); B.Type__$HealthCheckResponse_wvU = A.typeLiteral("_$HealthCheckResponse"); B.List_woD = A._setArrayType(makeConstList([B.Type_HealthCheckResponse_EKW, B.Type__$HealthCheckResponse_wvU]), type$.JSArray_legacy_Type); B.List_ww8 = A._setArrayType(makeConstList([1, 2, 3, 4, 6, 12]), type$.JSArray_legacy_int); B.List_wwd = A._setArrayType(makeConstList([B.Pair_oWp, B.Pair_2jN]), type$.JSArray_dynamic); B.TaxRateReportFields_00 = new A.TaxRateReportFields0(0, "client"); B.TaxRateReportFields_12 = new A.TaxRateReportFields0(1, "client_number"); B.TaxRateReportFields_20 = new A.TaxRateReportFields0(2, "number"); B.TaxRateReportFields_30 = new A.TaxRateReportFields0(3, "amount"); B.TaxRateReportFields_40 = new A.TaxRateReportFields0(4, "date"); B.TaxRateReportFields_50 = new A.TaxRateReportFields0(5, "tax_name"); B.TaxRateReportFields_60 = new A.TaxRateReportFields0(6, "tax_rate"); B.TaxRateReportFields_70 = new A.TaxRateReportFields0(7, "tax_amount"); B.TaxRateReportFields_80 = new A.TaxRateReportFields0(8, "tax_paid"); B.TaxRateReportFields_90 = new A.TaxRateReportFields0(9, "currency"); B.List_y1j = A._setArrayType(makeConstList([B.TaxRateReportFields_00, B.TaxRateReportFields_12, B.TaxRateReportFields_20, B.TaxRateReportFields_30, B.TaxRateReportFields_40, B.TaxRateReportFields_50, B.TaxRateReportFields_60, B.TaxRateReportFields_70, B.TaxRateReportFields_80, B.TaxRateReportFields_90]), type$.JSArray_legacy_TaxRateReportFields_2); B.Type_LanguageListResponse_WzG = A.typeLiteral("LanguageListResponse"); B.Type__$LanguageListResponse_YOT = A.typeLiteral("_$LanguageListResponse"); B.List_y6N = A._setArrayType(makeConstList([B.Type_LanguageListResponse_WzG, B.Type__$LanguageListResponse_YOT]), type$.JSArray_legacy_Type); B.List_yHT = A._setArrayType(makeConstList(["style", "script", "xmp", "iframe", "noembed", "noframes", "noscript"]), type$.JSArray_legacy_String); B.Type_UserTwoFactorResponse_69P = A.typeLiteral("UserTwoFactorResponse"); B.Type__$UserTwoFactorResponse_66y = A.typeLiteral("_$UserTwoFactorResponse"); B.List_yHZ = A._setArrayType(makeConstList([B.Type_UserTwoFactorResponse_69P, B.Type__$UserTwoFactorResponse_66y]), type$.JSArray_legacy_Type); B.Type_GatewayTokenItemResponse_4jG = A.typeLiteral("GatewayTokenItemResponse"); B.Type__$GatewayTokenItemResponse_ald = A.typeLiteral("_$GatewayTokenItemResponse"); B.List_yK7 = A._setArrayType(makeConstList([B.Type_GatewayTokenItemResponse_4jG, B.Type__$GatewayTokenItemResponse_ald]), type$.JSArray_legacy_Type); B.Type_PaymentTermItemResponse_WYC = A.typeLiteral("PaymentTermItemResponse"); B.Type__$PaymentTermItemResponse_hWR = A.typeLiteral("_$PaymentTermItemResponse"); B.List_yNA = A._setArrayType(makeConstList([B.Type_PaymentTermItemResponse_WYC, B.Type__$PaymentTermItemResponse_hWR]), type$.JSArray_legacy_Type); B.Type_PaymentTermListResponse_WYC = A.typeLiteral("PaymentTermListResponse"); B.Type__$PaymentTermListResponse_hWR = A.typeLiteral("_$PaymentTermListResponse"); B.List_yNA0 = A._setArrayType(makeConstList([B.Type_PaymentTermListResponse_WYC, B.Type__$PaymentTermListResponse_hWR]), type$.JSArray_legacy_Type); B.Pair_oS9 = new A.Pair("http://www.w3.org/1999/xhtml", "address", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_2Vk = new A.Pair("http://www.w3.org/1999/xhtml", "area", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_zgw = new A.Pair("http://www.w3.org/1999/xhtml", "article", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_VSP = new A.Pair("http://www.w3.org/1999/xhtml", "aside", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_dAW = new A.Pair("http://www.w3.org/1999/xhtml", "base", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_MYA = new A.Pair("http://www.w3.org/1999/xhtml", "basefont", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_NEK = new A.Pair("http://www.w3.org/1999/xhtml", "bgsound", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_lLQ = new A.Pair("http://www.w3.org/1999/xhtml", "blockquote", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_KPK = new A.Pair("http://www.w3.org/1999/xhtml", "body", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_UgT = new A.Pair("http://www.w3.org/1999/xhtml", "br", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_nfu = new A.Pair("http://www.w3.org/1999/xhtml", "center", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_43h = new A.Pair("http://www.w3.org/1999/xhtml", "col", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_qh0 = new A.Pair("http://www.w3.org/1999/xhtml", "colgroup", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_XLZ = new A.Pair("http://www.w3.org/1999/xhtml", "command", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ujV = new A.Pair("http://www.w3.org/1999/xhtml", "dd", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_gc6 = new A.Pair("http://www.w3.org/1999/xhtml", "details", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_HFk = new A.Pair("http://www.w3.org/1999/xhtml", "dir", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_AqW = new A.Pair("http://www.w3.org/1999/xhtml", "div", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_t9A = new A.Pair("http://www.w3.org/1999/xhtml", "dl", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_bLJ = new A.Pair("http://www.w3.org/1999/xhtml", "dt", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_3s4 = new A.Pair("http://www.w3.org/1999/xhtml", "embed", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_06X = new A.Pair("http://www.w3.org/1999/xhtml", "fieldset", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ki2 = new A.Pair("http://www.w3.org/1999/xhtml", "figure", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_u7k = new A.Pair("http://www.w3.org/1999/xhtml", "footer", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_IIf = new A.Pair("http://www.w3.org/1999/xhtml", "form", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_cDU = new A.Pair("http://www.w3.org/1999/xhtml", "frame", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_2No = new A.Pair("http://www.w3.org/1999/xhtml", "frameset", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_4pG = new A.Pair("http://www.w3.org/1999/xhtml", "h1", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_zT2 = new A.Pair("http://www.w3.org/1999/xhtml", "h2", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_2Vk0 = new A.Pair("http://www.w3.org/1999/xhtml", "h3", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_gkc = new A.Pair("http://www.w3.org/1999/xhtml", "h4", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_vop = new A.Pair("http://www.w3.org/1999/xhtml", "h5", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_keG = new A.Pair("http://www.w3.org/1999/xhtml", "h6", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_Nw8 = new A.Pair("http://www.w3.org/1999/xhtml", "head", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_yTF = new A.Pair("http://www.w3.org/1999/xhtml", "header", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_VWp = new A.Pair("http://www.w3.org/1999/xhtml", "hr", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_olH = new A.Pair("http://www.w3.org/1999/xhtml", "iframe", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_lCi = new A.Pair("http://www.w3.org/1999/xhtml", "image", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_cGl = new A.Pair("http://www.w3.org/1999/xhtml", "img", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_hWH = new A.Pair("http://www.w3.org/1999/xhtml", "input", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_oCX = new A.Pair("http://www.w3.org/1999/xhtml", "isindex", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_Q05 = new A.Pair("http://www.w3.org/1999/xhtml", "li", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_OGa = new A.Pair("http://www.w3.org/1999/xhtml", "link", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_nYT = new A.Pair("http://www.w3.org/1999/xhtml", "listing", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_69P = new A.Pair("http://www.w3.org/1999/xhtml", "men", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_mCA = new A.Pair("http://www.w3.org/1999/xhtml", "meta", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_Nw80 = new A.Pair("http://www.w3.org/1999/xhtml", "nav", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_uyr = new A.Pair("http://www.w3.org/1999/xhtml", "noembed", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_eD3 = new A.Pair("http://www.w3.org/1999/xhtml", "noframes", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_cb9 = new A.Pair("http://www.w3.org/1999/xhtml", "noscript", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_qVK = new A.Pair("http://www.w3.org/1999/xhtml", "p", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_46y = new A.Pair("http://www.w3.org/1999/xhtml", "param", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_iOU = new A.Pair("http://www.w3.org/1999/xhtml", "plaintext", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_00 = new A.Pair("http://www.w3.org/1999/xhtml", "pre", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_gsm = new A.Pair("http://www.w3.org/1999/xhtml", "script", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_MYA0 = new A.Pair("http://www.w3.org/1999/xhtml", "section", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_Hhw = new A.Pair("http://www.w3.org/1999/xhtml", "select", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_7BT = new A.Pair("http://www.w3.org/1999/xhtml", "style", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ql5 = new A.Pair("http://www.w3.org/1999/xhtml", "tbody", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_AiQ = new A.Pair("http://www.w3.org/1999/xhtml", "textarea", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_mdZ = new A.Pair("http://www.w3.org/1999/xhtml", "tfoot", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ImU = new A.Pair("http://www.w3.org/1999/xhtml", "thead", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_ivJ = new A.Pair("http://www.w3.org/1999/xhtml", "title", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_4AN = new A.Pair("http://www.w3.org/1999/xhtml", "tr", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_vEV = new A.Pair("http://www.w3.org/1999/xhtml", "wbr", type$.Pair_of_legacy_String_and_legacy_String); B.Pair_qp8 = new A.Pair("http://www.w3.org/1999/xhtml", "xmp", type$.Pair_of_legacy_String_and_legacy_String); B.List_yTE = A._setArrayType(makeConstList([B.Pair_oS9, B.Pair_8Gl, B.Pair_2Vk, B.Pair_zgw, B.Pair_VSP, B.Pair_dAW, B.Pair_MYA, B.Pair_NEK, B.Pair_lLQ, B.Pair_KPK, B.Pair_UgT, B.Pair_mhU, B.Pair_EOZ, B.Pair_nfu, B.Pair_43h, B.Pair_qh0, B.Pair_XLZ, B.Pair_ujV, B.Pair_gc6, B.Pair_HFk, B.Pair_AqW, B.Pair_t9A, B.Pair_bLJ, B.Pair_3s4, B.Pair_06X, B.Pair_ki2, B.Pair_u7k, B.Pair_IIf, B.Pair_cDU, B.Pair_2No, B.Pair_4pG, B.Pair_zT2, B.Pair_2Vk0, B.Pair_gkc, B.Pair_vop, B.Pair_keG, B.Pair_Nw8, B.Pair_yTF, B.Pair_VWp, B.Pair_oWp, B.Pair_olH, B.Pair_lCi, B.Pair_cGl, B.Pair_hWH, B.Pair_oCX, B.Pair_Q05, B.Pair_OGa, B.Pair_nYT, B.Pair_QcL, B.Pair_69P, B.Pair_mCA, B.Pair_Nw80, B.Pair_uyr, B.Pair_eD3, B.Pair_cb9, B.Pair_oyn, B.Pair_0, B.Pair_qVK, B.Pair_46y, B.Pair_iOU, B.Pair_00, B.Pair_gsm, B.Pair_MYA0, B.Pair_Hhw, B.Pair_7BT, B.Pair_2jN, B.Pair_ql5, B.Pair_QE6, B.Pair_AiQ, B.Pair_mdZ, B.Pair_4Cz, B.Pair_ImU, B.Pair_ivJ, B.Pair_4AN, B.Pair_RXb, B.Pair_vEV, B.Pair_qp8, B.Pair_SDM]), type$.JSArray_legacy_Pair_of_legacy_String_and_legacy_String); B.List_yTu = A._setArrayType(makeConstList([1, 2, 3, 7, 14]), type$.JSArray_legacy_int); B.List_yTu0 = A._setArrayType(makeConstList([5, 10, 15, 20, 30]), type$.JSArray_legacy_int); B.List_yXZ = A._setArrayType(makeConstList([0, 4, 12, 1, 5, 13, 3, 7, 15]), type$.JSArray_legacy_int); B.Type__$VendorContactEntity_2Zs = A.typeLiteral("_$VendorContactEntity"); B.List_yjH = A._setArrayType(makeConstList([B.Type_VendorContactEntity_2Vk, B.Type__$VendorContactEntity_2Zs]), type$.JSArray_legacy_Type); B.Type_CreditItemResponse_GRu = A.typeLiteral("CreditItemResponse"); B.Type__$CreditItemResponse_eTJ = A.typeLiteral("_$CreditItemResponse"); B.List_ypO = A._setArrayType(makeConstList([B.Type_CreditItemResponse_GRu, B.Type__$CreditItemResponse_eTJ]), type$.JSArray_legacy_Type); B.List_yrN = A._setArrayType(makeConstList(["A::href", "AREA::href", "BLOCKQUOTE::cite", "BODY::background", "COMMAND::icon", "DEL::cite", "FORM::action", "IMG::src", "INPUT::src", "INS::cite", "Q::cite", "VIDEO::poster"]), type$.JSArray_legacy_String); B.Type_ImportRequest_yTp = A.typeLiteral("ImportRequest"); B.Type__$ImportRequest_gZb = A.typeLiteral("_$ImportRequest"); B.List_yvL = A._setArrayType(makeConstList([B.Type_ImportRequest_yTp, B.Type__$ImportRequest_gZb]), type$.JSArray_legacy_Type); B.Type__$PaymentTypeEntity_YuA = A.typeLiteral("_$PaymentTypeEntity"); B.List_zgG = A._setArrayType(makeConstList([B.Type_PaymentTypeEntity_3f7, B.Type__$PaymentTypeEntity_YuA]), type$.JSArray_legacy_Type); B.Locale_und_null = new A.Locale("und", null); B.LogicalKeyboardKey_101 = new A.LogicalKeyboardKey(101); B.LogicalKeyboardKey_105 = new A.LogicalKeyboardKey(105); B.LogicalKeyboardKey_118 = new A.LogicalKeyboardKey(118); B.LogicalKeyboardKey_120 = new A.LogicalKeyboardKey(120); B.LogicalKeyboardKey_4294967304 = new A.LogicalKeyboardKey(4294967304); B.LogicalKeyboardKey_4294967305 = new A.LogicalKeyboardKey(4294967305); B.LogicalKeyboardKey_4294967309 = new A.LogicalKeyboardKey(4294967309); B.LogicalKeyboardKey_4294967323 = new A.LogicalKeyboardKey(4294967323); B.LogicalKeyboardKey_4294967423 = new A.LogicalKeyboardKey(4294967423); B.LogicalKeyboardKey_4294967558 = new A.LogicalKeyboardKey(4294967558); B.LogicalKeyboardKey_8589934848 = new A.LogicalKeyboardKey(8589934848); B.LogicalKeyboardKey_8589934849 = new A.LogicalKeyboardKey(8589934849); B.LogicalKeyboardKey_8589934850 = new A.LogicalKeyboardKey(8589934850); B.LogicalKeyboardKey_8589934851 = new A.LogicalKeyboardKey(8589934851); B.LogicalKeyboardKey_8589934852 = new A.LogicalKeyboardKey(8589934852); B.LogicalKeyboardKey_8589934853 = new A.LogicalKeyboardKey(8589934853); B.LogicalKeyboardKey_8589934854 = new A.LogicalKeyboardKey(8589934854); B.LogicalKeyboardKey_8589934855 = new A.LogicalKeyboardKey(8589934855); B.LogicalKeyboardKey_8589935088 = new A.LogicalKeyboardKey(8589935088); B.LogicalKeyboardKey_8589935090 = new A.LogicalKeyboardKey(8589935090); B.LogicalKeyboardKey_8589935092 = new A.LogicalKeyboardKey(8589935092); B.LogicalKeyboardKey_8589935094 = new A.LogicalKeyboardKey(8589935094); B.LogicalKeyboardKey_8589935117 = new A.LogicalKeyboardKey(8589935117); B.LogicalKeyboardKey_97 = new A.LogicalKeyboardKey(97); B.LogicalKeyboardKey_98 = new A.LogicalKeyboardKey(98); B.LogicalKeyboardKey_99 = new A.LogicalKeyboardKey(99); B.Velocity_Offset_0_0 = new A.Velocity(B.Offset_0_0); B.LongPressEndDetails_aB0 = new A.LongPressEndDetails(B.Offset_0_0, B.Velocity_Offset_0_0); B.LongPressSemanticsEvent_longPress = new A.LongPressSemanticsEvent("longPress"); B.LongPressStartDetails_aWR = new A.LongPressStartDetails(B.Offset_0_0, B.Offset_0_0); B.MainAxisAlignment_0 = new A.MainAxisAlignment(0, "start"); B.MainAxisAlignment_1 = new A.MainAxisAlignment(1, "end"); B.MainAxisAlignment_2 = new A.MainAxisAlignment(2, "center"); B.MainAxisAlignment_3 = new A.MainAxisAlignment(3, "spaceBetween"); B.MainAxisAlignment_4 = new A.MainAxisAlignment(4, "spaceAround"); B.MainAxisAlignment_5 = new A.MainAxisAlignment(5, "spaceEvenly"); B.MainAxisSize_0 = new A.MainAxisSize(0, "min"); B.MainAxisSize_1 = new A.MainAxisSize(1, "max"); B.List_0AS = A._setArrayType(makeConstList(["BU", "DD", "FX", "TP", "YD", "ZR"]), type$.JSArray_legacy_String); B.Map_0Agg9 = new A.ConstantStringMap(6, {BU: "MM", DD: "DE", FX: "FR", TP: "TL", YD: "YE", ZR: "CD"}, B.List_0AS, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_0mM = A._setArrayType(makeConstList(["AVRInput", "AVRPower", "Accel", "Accept", "Again", "AllCandidates", "Alphanumeric", "AltGraph", "AppSwitch", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "Attn", "AudioBalanceLeft", "AudioBalanceRight", "AudioBassBoostDown", "AudioBassBoostToggle", "AudioBassBoostUp", "AudioFaderFront", "AudioFaderRear", "AudioSurroundModeNext", "AudioTrebleDown", "AudioTrebleUp", "AudioVolumeDown", "AudioVolumeMute", "AudioVolumeUp", "Backspace", "BrightnessDown", "BrightnessUp", "BrowserBack", "BrowserFavorites", "BrowserForward", "BrowserHome", "BrowserRefresh", "BrowserSearch", "BrowserStop", "Call", "Camera", "CameraFocus", "Cancel", "CapsLock", "ChannelDown", "ChannelUp", "Clear", "Close", "ClosedCaptionToggle", "CodeInput", "ColorF0Red", "ColorF1Green", "ColorF2Yellow", "ColorF3Blue", "ColorF4Grey", "ColorF5Brown", "Compose", "ContextMenu", "Convert", "Copy", "CrSel", "Cut", "DVR", "Delete", "Dimmer", "DisplaySwap", "Eisu", "Eject", "End", "EndCall", "Enter", "EraseEof", "Escape", "ExSel", "Execute", "Exit", "F1", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F2", "F20", "F21", "F22", "F23", "F24", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "FavoriteClear0", "FavoriteClear1", "FavoriteClear2", "FavoriteClear3", "FavoriteRecall0", "FavoriteRecall1", "FavoriteRecall2", "FavoriteRecall3", "FavoriteStore0", "FavoriteStore1", "FavoriteStore2", "FavoriteStore3", "FinalMode", "Find", "Fn", "FnLock", "GoBack", "GoHome", "GroupFirst", "GroupLast", "GroupNext", "GroupPrevious", "Guide", "GuideNextDay", "GuidePreviousDay", "HangulMode", "HanjaMode", "Hankaku", "HeadsetHook", "Help", "Hibernate", "Hiragana", "HiraganaKatakana", "Home", "Hyper", "Info", "Insert", "InstantReplay", "JunjaMode", "KanaMode", "KanjiMode", "Katakana", "Key11", "Key12", "LastNumberRedial", "LaunchApplication1", "LaunchApplication2", "LaunchAssistant", "LaunchCalendar", "LaunchContacts", "LaunchControlPanel", "LaunchMail", "LaunchMediaPlayer", "LaunchMusicPlayer", "LaunchPhone", "LaunchScreenSaver", "LaunchSpreadsheet", "LaunchWebBrowser", "LaunchWebCam", "LaunchWordProcessor", "Link", "ListProgram", "LiveContent", "Lock", "LogOff", "MailForward", "MailReply", "MailSend", "MannerMode", "MediaApps", "MediaAudioTrack", "MediaClose", "MediaFastForward", "MediaLast", "MediaPause", "MediaPlay", "MediaPlayPause", "MediaRecord", "MediaRewind", "MediaSkip", "MediaSkipBackward", "MediaSkipForward", "MediaStepBackward", "MediaStepForward", "MediaStop", "MediaTopMenu", "MediaTrackNext", "MediaTrackPrevious", "MicrophoneToggle", "MicrophoneVolumeDown", "MicrophoneVolumeMute", "MicrophoneVolumeUp", "ModeChange", "NavigateIn", "NavigateNext", "NavigateOut", "NavigatePrevious", "New", "NextCandidate", "NextFavoriteChannel", "NextUserProfile", "NonConvert", "Notification", "NumLock", "OnDemand", "Open", "PageDown", "PageUp", "Pairing", "Paste", "Pause", "PinPDown", "PinPMove", "PinPToggle", "PinPUp", "Play", "PlaySpeedDown", "PlaySpeedReset", "PlaySpeedUp", "Power", "PowerOff", "PreviousCandidate", "Print", "PrintScreen", "Process", "Props", "RandomToggle", "RcLowBattery", "RecordSpeedNext", "Redo", "RfBypass", "Romaji", "STBInput", "STBPower", "Save", "ScanChannelsToggle", "ScreenModeNext", "ScrollLock", "Select", "Settings", "ShiftLevel5", "SingleCandidate", "Soft1", "Soft2", "Soft3", "Soft4", "Soft5", "Soft6", "Soft7", "Soft8", "SpeechCorrectionList", "SpeechInputToggle", "SpellCheck", "SplitScreenToggle", "Standby", "Subtitle", "Super", "Symbol", "SymbolLock", "TV", "TV3DMode", "TVAntennaCable", "TVAudioDescription", "TVAudioDescriptionMixDown", "TVAudioDescriptionMixUp", "TVContentsMenu", "TVDataService", "TVInput", "TVInputComponent1", "TVInputComponent2", "TVInputComposite1", "TVInputComposite2", "TVInputHDMI1", "TVInputHDMI2", "TVInputHDMI3", "TVInputHDMI4", "TVInputVGA1", "TVMediaContext", "TVNetwork", "TVNumberEntry", "TVPower", "TVRadioService", "TVSatellite", "TVSatelliteBS", "TVSatelliteCS", "TVSatelliteToggle", "TVTerrestrialAnalog", "TVTerrestrialDigital", "TVTimer", "Tab", "Teletext", "Undo", "Unidentified", "VideoModeNext", "VoiceDial", "WakeUp", "Wink", "Zenkaku", "ZenkakuHankaku", "ZoomIn", "ZoomOut", "ZoomToggle"]), type$.JSArray_legacy_String); B.LogicalKeyboardKey_4294970632 = new A.LogicalKeyboardKey(4294970632); B.LogicalKeyboardKey_4294970633 = new A.LogicalKeyboardKey(4294970633); B.LogicalKeyboardKey_4294967553 = new A.LogicalKeyboardKey(4294967553); B.LogicalKeyboardKey_4294968577 = new A.LogicalKeyboardKey(4294968577); B.LogicalKeyboardKey_4294968578 = new A.LogicalKeyboardKey(4294968578); B.LogicalKeyboardKey_4294969089 = new A.LogicalKeyboardKey(4294969089); B.LogicalKeyboardKey_4294969090 = new A.LogicalKeyboardKey(4294969090); B.LogicalKeyboardKey_4294967555 = new A.LogicalKeyboardKey(4294967555); B.LogicalKeyboardKey_4294971393 = new A.LogicalKeyboardKey(4294971393); B.LogicalKeyboardKey_4294968579 = new A.LogicalKeyboardKey(4294968579); B.LogicalKeyboardKey_4294970625 = new A.LogicalKeyboardKey(4294970625); B.LogicalKeyboardKey_4294970626 = new A.LogicalKeyboardKey(4294970626); B.LogicalKeyboardKey_4294970627 = new A.LogicalKeyboardKey(4294970627); B.LogicalKeyboardKey_4294970882 = new A.LogicalKeyboardKey(4294970882); B.LogicalKeyboardKey_4294970628 = new A.LogicalKeyboardKey(4294970628); B.LogicalKeyboardKey_4294970629 = new A.LogicalKeyboardKey(4294970629); B.LogicalKeyboardKey_4294970630 = new A.LogicalKeyboardKey(4294970630); B.LogicalKeyboardKey_4294970631 = new A.LogicalKeyboardKey(4294970631); B.LogicalKeyboardKey_4294970884 = new A.LogicalKeyboardKey(4294970884); B.LogicalKeyboardKey_4294970885 = new A.LogicalKeyboardKey(4294970885); B.LogicalKeyboardKey_4294969871 = new A.LogicalKeyboardKey(4294969871); B.LogicalKeyboardKey_4294969873 = new A.LogicalKeyboardKey(4294969873); B.LogicalKeyboardKey_4294969872 = new A.LogicalKeyboardKey(4294969872); B.LogicalKeyboardKey_4294968833 = new A.LogicalKeyboardKey(4294968833); B.LogicalKeyboardKey_4294968834 = new A.LogicalKeyboardKey(4294968834); B.LogicalKeyboardKey_4294970369 = new A.LogicalKeyboardKey(4294970369); B.LogicalKeyboardKey_4294970370 = new A.LogicalKeyboardKey(4294970370); B.LogicalKeyboardKey_4294970371 = new A.LogicalKeyboardKey(4294970371); B.LogicalKeyboardKey_4294970372 = new A.LogicalKeyboardKey(4294970372); B.LogicalKeyboardKey_4294970373 = new A.LogicalKeyboardKey(4294970373); B.LogicalKeyboardKey_4294970374 = new A.LogicalKeyboardKey(4294970374); B.LogicalKeyboardKey_4294970375 = new A.LogicalKeyboardKey(4294970375); B.LogicalKeyboardKey_4294971394 = new A.LogicalKeyboardKey(4294971394); B.LogicalKeyboardKey_4294968835 = new A.LogicalKeyboardKey(4294968835); B.LogicalKeyboardKey_4294971395 = new A.LogicalKeyboardKey(4294971395); B.LogicalKeyboardKey_4294968580 = new A.LogicalKeyboardKey(4294968580); B.LogicalKeyboardKey_4294970634 = new A.LogicalKeyboardKey(4294970634); B.LogicalKeyboardKey_4294970635 = new A.LogicalKeyboardKey(4294970635); B.LogicalKeyboardKey_4294968321 = new A.LogicalKeyboardKey(4294968321); B.LogicalKeyboardKey_4294969857 = new A.LogicalKeyboardKey(4294969857); B.LogicalKeyboardKey_4294970642 = new A.LogicalKeyboardKey(4294970642); B.LogicalKeyboardKey_4294969091 = new A.LogicalKeyboardKey(4294969091); B.LogicalKeyboardKey_4294970636 = new A.LogicalKeyboardKey(4294970636); B.LogicalKeyboardKey_4294970637 = new A.LogicalKeyboardKey(4294970637); B.LogicalKeyboardKey_4294970638 = new A.LogicalKeyboardKey(4294970638); B.LogicalKeyboardKey_4294970639 = new A.LogicalKeyboardKey(4294970639); B.LogicalKeyboardKey_4294970640 = new A.LogicalKeyboardKey(4294970640); B.LogicalKeyboardKey_4294970641 = new A.LogicalKeyboardKey(4294970641); B.LogicalKeyboardKey_4294969092 = new A.LogicalKeyboardKey(4294969092); B.LogicalKeyboardKey_4294968581 = new A.LogicalKeyboardKey(4294968581); B.LogicalKeyboardKey_4294969093 = new A.LogicalKeyboardKey(4294969093); B.LogicalKeyboardKey_4294968322 = new A.LogicalKeyboardKey(4294968322); B.LogicalKeyboardKey_4294968323 = new A.LogicalKeyboardKey(4294968323); B.LogicalKeyboardKey_4294968324 = new A.LogicalKeyboardKey(4294968324); B.LogicalKeyboardKey_4294970703 = new A.LogicalKeyboardKey(4294970703); B.LogicalKeyboardKey_4294970643 = new A.LogicalKeyboardKey(4294970643); B.LogicalKeyboardKey_4294970644 = new A.LogicalKeyboardKey(4294970644); B.LogicalKeyboardKey_4294969108 = new A.LogicalKeyboardKey(4294969108); B.LogicalKeyboardKey_4294968836 = new A.LogicalKeyboardKey(4294968836); B.LogicalKeyboardKey_4294968069 = new A.LogicalKeyboardKey(4294968069); B.LogicalKeyboardKey_4294971396 = new A.LogicalKeyboardKey(4294971396); B.LogicalKeyboardKey_4294968325 = new A.LogicalKeyboardKey(4294968325); B.LogicalKeyboardKey_4294968326 = new A.LogicalKeyboardKey(4294968326); B.LogicalKeyboardKey_4294968582 = new A.LogicalKeyboardKey(4294968582); B.LogicalKeyboardKey_4294970645 = new A.LogicalKeyboardKey(4294970645); B.LogicalKeyboardKey_4294969345 = new A.LogicalKeyboardKey(4294969345); B.LogicalKeyboardKey_4294969354 = new A.LogicalKeyboardKey(4294969354); B.LogicalKeyboardKey_4294969355 = new A.LogicalKeyboardKey(4294969355); B.LogicalKeyboardKey_4294969356 = new A.LogicalKeyboardKey(4294969356); B.LogicalKeyboardKey_4294969357 = new A.LogicalKeyboardKey(4294969357); B.LogicalKeyboardKey_4294969358 = new A.LogicalKeyboardKey(4294969358); B.LogicalKeyboardKey_4294969359 = new A.LogicalKeyboardKey(4294969359); B.LogicalKeyboardKey_4294969360 = new A.LogicalKeyboardKey(4294969360); B.LogicalKeyboardKey_4294969361 = new A.LogicalKeyboardKey(4294969361); B.LogicalKeyboardKey_4294969362 = new A.LogicalKeyboardKey(4294969362); B.LogicalKeyboardKey_4294969363 = new A.LogicalKeyboardKey(4294969363); B.LogicalKeyboardKey_4294969346 = new A.LogicalKeyboardKey(4294969346); B.LogicalKeyboardKey_4294969364 = new A.LogicalKeyboardKey(4294969364); B.LogicalKeyboardKey_4294969365 = new A.LogicalKeyboardKey(4294969365); B.LogicalKeyboardKey_4294969366 = new A.LogicalKeyboardKey(4294969366); B.LogicalKeyboardKey_4294969367 = new A.LogicalKeyboardKey(4294969367); B.LogicalKeyboardKey_4294969368 = new A.LogicalKeyboardKey(4294969368); B.LogicalKeyboardKey_4294969347 = new A.LogicalKeyboardKey(4294969347); B.LogicalKeyboardKey_4294969348 = new A.LogicalKeyboardKey(4294969348); B.LogicalKeyboardKey_4294969349 = new A.LogicalKeyboardKey(4294969349); B.LogicalKeyboardKey_4294969350 = new A.LogicalKeyboardKey(4294969350); B.LogicalKeyboardKey_4294969351 = new A.LogicalKeyboardKey(4294969351); B.LogicalKeyboardKey_4294969352 = new A.LogicalKeyboardKey(4294969352); B.LogicalKeyboardKey_4294969353 = new A.LogicalKeyboardKey(4294969353); B.LogicalKeyboardKey_4294970646 = new A.LogicalKeyboardKey(4294970646); B.LogicalKeyboardKey_4294970647 = new A.LogicalKeyboardKey(4294970647); B.LogicalKeyboardKey_4294970648 = new A.LogicalKeyboardKey(4294970648); B.LogicalKeyboardKey_4294970649 = new A.LogicalKeyboardKey(4294970649); B.LogicalKeyboardKey_4294970650 = new A.LogicalKeyboardKey(4294970650); B.LogicalKeyboardKey_4294970651 = new A.LogicalKeyboardKey(4294970651); B.LogicalKeyboardKey_4294970652 = new A.LogicalKeyboardKey(4294970652); B.LogicalKeyboardKey_4294970653 = new A.LogicalKeyboardKey(4294970653); B.LogicalKeyboardKey_4294970654 = new A.LogicalKeyboardKey(4294970654); B.LogicalKeyboardKey_4294970655 = new A.LogicalKeyboardKey(4294970655); B.LogicalKeyboardKey_4294970656 = new A.LogicalKeyboardKey(4294970656); B.LogicalKeyboardKey_4294970657 = new A.LogicalKeyboardKey(4294970657); B.LogicalKeyboardKey_4294969094 = new A.LogicalKeyboardKey(4294969094); B.LogicalKeyboardKey_4294968583 = new A.LogicalKeyboardKey(4294968583); B.LogicalKeyboardKey_4294967559 = new A.LogicalKeyboardKey(4294967559); B.LogicalKeyboardKey_4294971397 = new A.LogicalKeyboardKey(4294971397); B.LogicalKeyboardKey_4294971398 = new A.LogicalKeyboardKey(4294971398); B.LogicalKeyboardKey_4294969095 = new A.LogicalKeyboardKey(4294969095); B.LogicalKeyboardKey_4294969096 = new A.LogicalKeyboardKey(4294969096); B.LogicalKeyboardKey_4294969097 = new A.LogicalKeyboardKey(4294969097); B.LogicalKeyboardKey_4294969098 = new A.LogicalKeyboardKey(4294969098); B.LogicalKeyboardKey_4294970658 = new A.LogicalKeyboardKey(4294970658); B.LogicalKeyboardKey_4294970659 = new A.LogicalKeyboardKey(4294970659); B.LogicalKeyboardKey_4294970660 = new A.LogicalKeyboardKey(4294970660); B.LogicalKeyboardKey_4294969105 = new A.LogicalKeyboardKey(4294969105); B.LogicalKeyboardKey_4294969106 = new A.LogicalKeyboardKey(4294969106); B.LogicalKeyboardKey_4294969109 = new A.LogicalKeyboardKey(4294969109); B.LogicalKeyboardKey_4294971399 = new A.LogicalKeyboardKey(4294971399); B.LogicalKeyboardKey_4294968584 = new A.LogicalKeyboardKey(4294968584); B.LogicalKeyboardKey_4294968841 = new A.LogicalKeyboardKey(4294968841); B.LogicalKeyboardKey_4294969110 = new A.LogicalKeyboardKey(4294969110); B.LogicalKeyboardKey_4294969111 = new A.LogicalKeyboardKey(4294969111); B.LogicalKeyboardKey_4294968070 = new A.LogicalKeyboardKey(4294968070); B.LogicalKeyboardKey_4294967560 = new A.LogicalKeyboardKey(4294967560); B.LogicalKeyboardKey_4294970661 = new A.LogicalKeyboardKey(4294970661); B.LogicalKeyboardKey_4294968327 = new A.LogicalKeyboardKey(4294968327); B.LogicalKeyboardKey_4294970662 = new A.LogicalKeyboardKey(4294970662); B.LogicalKeyboardKey_4294969107 = new A.LogicalKeyboardKey(4294969107); B.LogicalKeyboardKey_4294969112 = new A.LogicalKeyboardKey(4294969112); B.LogicalKeyboardKey_4294969113 = new A.LogicalKeyboardKey(4294969113); B.LogicalKeyboardKey_4294969114 = new A.LogicalKeyboardKey(4294969114); B.LogicalKeyboardKey_4294971905 = new A.LogicalKeyboardKey(4294971905); B.LogicalKeyboardKey_4294971906 = new A.LogicalKeyboardKey(4294971906); B.LogicalKeyboardKey_4294971400 = new A.LogicalKeyboardKey(4294971400); B.LogicalKeyboardKey_4294970118 = new A.LogicalKeyboardKey(4294970118); B.LogicalKeyboardKey_4294970113 = new A.LogicalKeyboardKey(4294970113); B.LogicalKeyboardKey_4294970126 = new A.LogicalKeyboardKey(4294970126); B.LogicalKeyboardKey_4294970114 = new A.LogicalKeyboardKey(4294970114); B.LogicalKeyboardKey_4294970124 = new A.LogicalKeyboardKey(4294970124); B.LogicalKeyboardKey_4294970127 = new A.LogicalKeyboardKey(4294970127); B.LogicalKeyboardKey_4294970115 = new A.LogicalKeyboardKey(4294970115); B.LogicalKeyboardKey_4294970116 = new A.LogicalKeyboardKey(4294970116); B.LogicalKeyboardKey_4294970117 = new A.LogicalKeyboardKey(4294970117); B.LogicalKeyboardKey_4294970125 = new A.LogicalKeyboardKey(4294970125); B.LogicalKeyboardKey_4294970119 = new A.LogicalKeyboardKey(4294970119); B.LogicalKeyboardKey_4294970120 = new A.LogicalKeyboardKey(4294970120); B.LogicalKeyboardKey_4294970121 = new A.LogicalKeyboardKey(4294970121); B.LogicalKeyboardKey_4294970122 = new A.LogicalKeyboardKey(4294970122); B.LogicalKeyboardKey_4294970123 = new A.LogicalKeyboardKey(4294970123); B.LogicalKeyboardKey_4294970663 = new A.LogicalKeyboardKey(4294970663); B.LogicalKeyboardKey_4294970664 = new A.LogicalKeyboardKey(4294970664); B.LogicalKeyboardKey_4294970665 = new A.LogicalKeyboardKey(4294970665); B.LogicalKeyboardKey_4294970666 = new A.LogicalKeyboardKey(4294970666); B.LogicalKeyboardKey_4294968837 = new A.LogicalKeyboardKey(4294968837); B.LogicalKeyboardKey_4294969858 = new A.LogicalKeyboardKey(4294969858); B.LogicalKeyboardKey_4294969859 = new A.LogicalKeyboardKey(4294969859); B.LogicalKeyboardKey_4294969860 = new A.LogicalKeyboardKey(4294969860); B.LogicalKeyboardKey_4294971402 = new A.LogicalKeyboardKey(4294971402); B.LogicalKeyboardKey_4294970667 = new A.LogicalKeyboardKey(4294970667); B.LogicalKeyboardKey_4294970704 = new A.LogicalKeyboardKey(4294970704); B.LogicalKeyboardKey_4294970715 = new A.LogicalKeyboardKey(4294970715); B.LogicalKeyboardKey_4294970668 = new A.LogicalKeyboardKey(4294970668); B.LogicalKeyboardKey_4294970669 = new A.LogicalKeyboardKey(4294970669); B.LogicalKeyboardKey_4294970670 = new A.LogicalKeyboardKey(4294970670); B.LogicalKeyboardKey_4294970671 = new A.LogicalKeyboardKey(4294970671); B.LogicalKeyboardKey_4294969861 = new A.LogicalKeyboardKey(4294969861); B.LogicalKeyboardKey_4294970672 = new A.LogicalKeyboardKey(4294970672); B.LogicalKeyboardKey_4294970673 = new A.LogicalKeyboardKey(4294970673); B.LogicalKeyboardKey_4294970674 = new A.LogicalKeyboardKey(4294970674); B.LogicalKeyboardKey_4294970705 = new A.LogicalKeyboardKey(4294970705); B.LogicalKeyboardKey_4294970706 = new A.LogicalKeyboardKey(4294970706); B.LogicalKeyboardKey_4294970707 = new A.LogicalKeyboardKey(4294970707); B.LogicalKeyboardKey_4294970708 = new A.LogicalKeyboardKey(4294970708); B.LogicalKeyboardKey_4294969863 = new A.LogicalKeyboardKey(4294969863); B.LogicalKeyboardKey_4294970709 = new A.LogicalKeyboardKey(4294970709); B.LogicalKeyboardKey_4294969864 = new A.LogicalKeyboardKey(4294969864); B.LogicalKeyboardKey_4294969865 = new A.LogicalKeyboardKey(4294969865); B.LogicalKeyboardKey_4294970886 = new A.LogicalKeyboardKey(4294970886); B.LogicalKeyboardKey_4294970887 = new A.LogicalKeyboardKey(4294970887); B.LogicalKeyboardKey_4294970889 = new A.LogicalKeyboardKey(4294970889); B.LogicalKeyboardKey_4294970888 = new A.LogicalKeyboardKey(4294970888); B.LogicalKeyboardKey_4294969099 = new A.LogicalKeyboardKey(4294969099); B.LogicalKeyboardKey_4294970710 = new A.LogicalKeyboardKey(4294970710); B.LogicalKeyboardKey_4294970711 = new A.LogicalKeyboardKey(4294970711); B.LogicalKeyboardKey_4294970712 = new A.LogicalKeyboardKey(4294970712); B.LogicalKeyboardKey_4294970713 = new A.LogicalKeyboardKey(4294970713); B.LogicalKeyboardKey_4294969866 = new A.LogicalKeyboardKey(4294969866); B.LogicalKeyboardKey_4294969100 = new A.LogicalKeyboardKey(4294969100); B.LogicalKeyboardKey_4294970675 = new A.LogicalKeyboardKey(4294970675); B.LogicalKeyboardKey_4294970676 = new A.LogicalKeyboardKey(4294970676); B.LogicalKeyboardKey_4294969101 = new A.LogicalKeyboardKey(4294969101); B.LogicalKeyboardKey_4294971401 = new A.LogicalKeyboardKey(4294971401); B.LogicalKeyboardKey_4294970677 = new A.LogicalKeyboardKey(4294970677); B.LogicalKeyboardKey_4294969867 = new A.LogicalKeyboardKey(4294969867); B.LogicalKeyboardKey_4294968071 = new A.LogicalKeyboardKey(4294968071); B.LogicalKeyboardKey_4294968072 = new A.LogicalKeyboardKey(4294968072); B.LogicalKeyboardKey_4294970714 = new A.LogicalKeyboardKey(4294970714); B.LogicalKeyboardKey_4294968328 = new A.LogicalKeyboardKey(4294968328); B.LogicalKeyboardKey_4294968585 = new A.LogicalKeyboardKey(4294968585); B.LogicalKeyboardKey_4294970678 = new A.LogicalKeyboardKey(4294970678); B.LogicalKeyboardKey_4294970679 = new A.LogicalKeyboardKey(4294970679); B.LogicalKeyboardKey_4294970680 = new A.LogicalKeyboardKey(4294970680); B.LogicalKeyboardKey_4294970681 = new A.LogicalKeyboardKey(4294970681); B.LogicalKeyboardKey_4294968586 = new A.LogicalKeyboardKey(4294968586); B.LogicalKeyboardKey_4294970682 = new A.LogicalKeyboardKey(4294970682); B.LogicalKeyboardKey_4294970683 = new A.LogicalKeyboardKey(4294970683); B.LogicalKeyboardKey_4294970684 = new A.LogicalKeyboardKey(4294970684); B.LogicalKeyboardKey_4294968838 = new A.LogicalKeyboardKey(4294968838); B.LogicalKeyboardKey_4294968839 = new A.LogicalKeyboardKey(4294968839); B.LogicalKeyboardKey_4294969102 = new A.LogicalKeyboardKey(4294969102); B.LogicalKeyboardKey_4294969868 = new A.LogicalKeyboardKey(4294969868); B.LogicalKeyboardKey_4294968840 = new A.LogicalKeyboardKey(4294968840); B.LogicalKeyboardKey_4294969103 = new A.LogicalKeyboardKey(4294969103); B.LogicalKeyboardKey_4294968587 = new A.LogicalKeyboardKey(4294968587); B.LogicalKeyboardKey_4294970685 = new A.LogicalKeyboardKey(4294970685); B.LogicalKeyboardKey_4294970686 = new A.LogicalKeyboardKey(4294970686); B.LogicalKeyboardKey_4294970687 = new A.LogicalKeyboardKey(4294970687); B.LogicalKeyboardKey_4294968329 = new A.LogicalKeyboardKey(4294968329); B.LogicalKeyboardKey_4294970688 = new A.LogicalKeyboardKey(4294970688); B.LogicalKeyboardKey_4294969115 = new A.LogicalKeyboardKey(4294969115); B.LogicalKeyboardKey_4294970693 = new A.LogicalKeyboardKey(4294970693); B.LogicalKeyboardKey_4294970694 = new A.LogicalKeyboardKey(4294970694); B.LogicalKeyboardKey_4294969869 = new A.LogicalKeyboardKey(4294969869); B.LogicalKeyboardKey_4294970689 = new A.LogicalKeyboardKey(4294970689); B.LogicalKeyboardKey_4294970690 = new A.LogicalKeyboardKey(4294970690); B.LogicalKeyboardKey_4294968588 = new A.LogicalKeyboardKey(4294968588); B.LogicalKeyboardKey_4294970691 = new A.LogicalKeyboardKey(4294970691); B.LogicalKeyboardKey_4294967569 = new A.LogicalKeyboardKey(4294967569); B.LogicalKeyboardKey_4294969104 = new A.LogicalKeyboardKey(4294969104); B.LogicalKeyboardKey_4294969601 = new A.LogicalKeyboardKey(4294969601); B.LogicalKeyboardKey_4294969602 = new A.LogicalKeyboardKey(4294969602); B.LogicalKeyboardKey_4294969603 = new A.LogicalKeyboardKey(4294969603); B.LogicalKeyboardKey_4294969604 = new A.LogicalKeyboardKey(4294969604); B.LogicalKeyboardKey_4294969605 = new A.LogicalKeyboardKey(4294969605); B.LogicalKeyboardKey_4294969606 = new A.LogicalKeyboardKey(4294969606); B.LogicalKeyboardKey_4294969607 = new A.LogicalKeyboardKey(4294969607); B.LogicalKeyboardKey_4294969608 = new A.LogicalKeyboardKey(4294969608); B.LogicalKeyboardKey_4294971137 = new A.LogicalKeyboardKey(4294971137); B.LogicalKeyboardKey_4294971138 = new A.LogicalKeyboardKey(4294971138); B.LogicalKeyboardKey_4294969870 = new A.LogicalKeyboardKey(4294969870); B.LogicalKeyboardKey_4294970692 = new A.LogicalKeyboardKey(4294970692); B.LogicalKeyboardKey_4294968842 = new A.LogicalKeyboardKey(4294968842); B.LogicalKeyboardKey_4294970695 = new A.LogicalKeyboardKey(4294970695); B.LogicalKeyboardKey_4294967566 = new A.LogicalKeyboardKey(4294967566); B.LogicalKeyboardKey_4294967567 = new A.LogicalKeyboardKey(4294967567); B.LogicalKeyboardKey_4294967568 = new A.LogicalKeyboardKey(4294967568); B.LogicalKeyboardKey_4294970697 = new A.LogicalKeyboardKey(4294970697); B.LogicalKeyboardKey_4294971649 = new A.LogicalKeyboardKey(4294971649); B.LogicalKeyboardKey_4294971650 = new A.LogicalKeyboardKey(4294971650); B.LogicalKeyboardKey_4294971651 = new A.LogicalKeyboardKey(4294971651); B.LogicalKeyboardKey_4294971652 = new A.LogicalKeyboardKey(4294971652); B.LogicalKeyboardKey_4294971653 = new A.LogicalKeyboardKey(4294971653); B.LogicalKeyboardKey_4294971654 = new A.LogicalKeyboardKey(4294971654); B.LogicalKeyboardKey_4294971655 = new A.LogicalKeyboardKey(4294971655); B.LogicalKeyboardKey_4294970698 = new A.LogicalKeyboardKey(4294970698); B.LogicalKeyboardKey_4294971656 = new A.LogicalKeyboardKey(4294971656); B.LogicalKeyboardKey_4294971657 = new A.LogicalKeyboardKey(4294971657); B.LogicalKeyboardKey_4294971658 = new A.LogicalKeyboardKey(4294971658); B.LogicalKeyboardKey_4294971659 = new A.LogicalKeyboardKey(4294971659); B.LogicalKeyboardKey_4294971660 = new A.LogicalKeyboardKey(4294971660); B.LogicalKeyboardKey_4294971661 = new A.LogicalKeyboardKey(4294971661); B.LogicalKeyboardKey_4294971662 = new A.LogicalKeyboardKey(4294971662); B.LogicalKeyboardKey_4294971663 = new A.LogicalKeyboardKey(4294971663); B.LogicalKeyboardKey_4294971664 = new A.LogicalKeyboardKey(4294971664); B.LogicalKeyboardKey_4294971665 = new A.LogicalKeyboardKey(4294971665); B.LogicalKeyboardKey_4294971666 = new A.LogicalKeyboardKey(4294971666); B.LogicalKeyboardKey_4294971667 = new A.LogicalKeyboardKey(4294971667); B.LogicalKeyboardKey_4294970699 = new A.LogicalKeyboardKey(4294970699); B.LogicalKeyboardKey_4294971668 = new A.LogicalKeyboardKey(4294971668); B.LogicalKeyboardKey_4294971669 = new A.LogicalKeyboardKey(4294971669); B.LogicalKeyboardKey_4294971670 = new A.LogicalKeyboardKey(4294971670); B.LogicalKeyboardKey_4294971671 = new A.LogicalKeyboardKey(4294971671); B.LogicalKeyboardKey_4294971672 = new A.LogicalKeyboardKey(4294971672); B.LogicalKeyboardKey_4294971673 = new A.LogicalKeyboardKey(4294971673); B.LogicalKeyboardKey_4294971674 = new A.LogicalKeyboardKey(4294971674); B.LogicalKeyboardKey_4294971675 = new A.LogicalKeyboardKey(4294971675); B.LogicalKeyboardKey_4294970696 = new A.LogicalKeyboardKey(4294970696); B.LogicalKeyboardKey_4294968330 = new A.LogicalKeyboardKey(4294968330); B.LogicalKeyboardKey_4294967297 = new A.LogicalKeyboardKey(4294967297); B.LogicalKeyboardKey_4294970700 = new A.LogicalKeyboardKey(4294970700); B.LogicalKeyboardKey_4294971403 = new A.LogicalKeyboardKey(4294971403); B.LogicalKeyboardKey_4294968843 = new A.LogicalKeyboardKey(4294968843); B.LogicalKeyboardKey_4294970701 = new A.LogicalKeyboardKey(4294970701); B.LogicalKeyboardKey_4294969116 = new A.LogicalKeyboardKey(4294969116); B.LogicalKeyboardKey_4294969117 = new A.LogicalKeyboardKey(4294969117); B.LogicalKeyboardKey_4294968589 = new A.LogicalKeyboardKey(4294968589); B.LogicalKeyboardKey_4294968590 = new A.LogicalKeyboardKey(4294968590); B.LogicalKeyboardKey_4294970702 = new A.LogicalKeyboardKey(4294970702); B.Map_0mOHH = new A.ConstantStringMap(300, {AVRInput: B.LogicalKeyboardKey_4294970632, AVRPower: B.LogicalKeyboardKey_4294970633, Accel: B.LogicalKeyboardKey_4294967553, Accept: B.LogicalKeyboardKey_4294968577, Again: B.LogicalKeyboardKey_4294968578, AllCandidates: B.LogicalKeyboardKey_4294969089, Alphanumeric: B.LogicalKeyboardKey_4294969090, AltGraph: B.LogicalKeyboardKey_4294967555, AppSwitch: B.LogicalKeyboardKey_4294971393, ArrowDown: B.LogicalKeyboardKey_4294968065, ArrowLeft: B.LogicalKeyboardKey_4294968066, ArrowRight: B.LogicalKeyboardKey_4294968067, ArrowUp: B.LogicalKeyboardKey_4294968068, Attn: B.LogicalKeyboardKey_4294968579, AudioBalanceLeft: B.LogicalKeyboardKey_4294970625, AudioBalanceRight: B.LogicalKeyboardKey_4294970626, AudioBassBoostDown: B.LogicalKeyboardKey_4294970627, AudioBassBoostToggle: B.LogicalKeyboardKey_4294970882, AudioBassBoostUp: B.LogicalKeyboardKey_4294970628, AudioFaderFront: B.LogicalKeyboardKey_4294970629, AudioFaderRear: B.LogicalKeyboardKey_4294970630, AudioSurroundModeNext: B.LogicalKeyboardKey_4294970631, AudioTrebleDown: B.LogicalKeyboardKey_4294970884, AudioTrebleUp: B.LogicalKeyboardKey_4294970885, AudioVolumeDown: B.LogicalKeyboardKey_4294969871, AudioVolumeMute: B.LogicalKeyboardKey_4294969873, AudioVolumeUp: B.LogicalKeyboardKey_4294969872, Backspace: B.LogicalKeyboardKey_4294967304, BrightnessDown: B.LogicalKeyboardKey_4294968833, BrightnessUp: B.LogicalKeyboardKey_4294968834, BrowserBack: B.LogicalKeyboardKey_4294970369, BrowserFavorites: B.LogicalKeyboardKey_4294970370, BrowserForward: B.LogicalKeyboardKey_4294970371, BrowserHome: B.LogicalKeyboardKey_4294970372, BrowserRefresh: B.LogicalKeyboardKey_4294970373, BrowserSearch: B.LogicalKeyboardKey_4294970374, BrowserStop: B.LogicalKeyboardKey_4294970375, Call: B.LogicalKeyboardKey_4294971394, Camera: B.LogicalKeyboardKey_4294968835, CameraFocus: B.LogicalKeyboardKey_4294971395, Cancel: B.LogicalKeyboardKey_4294968580, CapsLock: B.LogicalKeyboardKey_4294967556, ChannelDown: B.LogicalKeyboardKey_4294970634, ChannelUp: B.LogicalKeyboardKey_4294970635, Clear: B.LogicalKeyboardKey_4294968321, Close: B.LogicalKeyboardKey_4294969857, ClosedCaptionToggle: B.LogicalKeyboardKey_4294970642, CodeInput: B.LogicalKeyboardKey_4294969091, ColorF0Red: B.LogicalKeyboardKey_4294970636, ColorF1Green: B.LogicalKeyboardKey_4294970637, ColorF2Yellow: B.LogicalKeyboardKey_4294970638, ColorF3Blue: B.LogicalKeyboardKey_4294970639, ColorF4Grey: B.LogicalKeyboardKey_4294970640, ColorF5Brown: B.LogicalKeyboardKey_4294970641, Compose: B.LogicalKeyboardKey_4294969092, ContextMenu: B.LogicalKeyboardKey_4294968581, Convert: B.LogicalKeyboardKey_4294969093, Copy: B.LogicalKeyboardKey_4294968322, CrSel: B.LogicalKeyboardKey_4294968323, Cut: B.LogicalKeyboardKey_4294968324, DVR: B.LogicalKeyboardKey_4294970703, Delete: B.LogicalKeyboardKey_4294967423, Dimmer: B.LogicalKeyboardKey_4294970643, DisplaySwap: B.LogicalKeyboardKey_4294970644, Eisu: B.LogicalKeyboardKey_4294969108, Eject: B.LogicalKeyboardKey_4294968836, End: B.LogicalKeyboardKey_4294968069, EndCall: B.LogicalKeyboardKey_4294971396, Enter: B.LogicalKeyboardKey_4294967309, EraseEof: B.LogicalKeyboardKey_4294968325, Escape: B.LogicalKeyboardKey_4294967323, ExSel: B.LogicalKeyboardKey_4294968326, Execute: B.LogicalKeyboardKey_4294968582, Exit: B.LogicalKeyboardKey_4294970645, F1: B.LogicalKeyboardKey_4294969345, F10: B.LogicalKeyboardKey_4294969354, F11: B.LogicalKeyboardKey_4294969355, F12: B.LogicalKeyboardKey_4294969356, F13: B.LogicalKeyboardKey_4294969357, F14: B.LogicalKeyboardKey_4294969358, F15: B.LogicalKeyboardKey_4294969359, F16: B.LogicalKeyboardKey_4294969360, F17: B.LogicalKeyboardKey_4294969361, F18: B.LogicalKeyboardKey_4294969362, F19: B.LogicalKeyboardKey_4294969363, F2: B.LogicalKeyboardKey_4294969346, F20: B.LogicalKeyboardKey_4294969364, F21: B.LogicalKeyboardKey_4294969365, F22: B.LogicalKeyboardKey_4294969366, F23: B.LogicalKeyboardKey_4294969367, F24: B.LogicalKeyboardKey_4294969368, F3: B.LogicalKeyboardKey_4294969347, F4: B.LogicalKeyboardKey_4294969348, F5: B.LogicalKeyboardKey_4294969349, F6: B.LogicalKeyboardKey_4294969350, F7: B.LogicalKeyboardKey_4294969351, F8: B.LogicalKeyboardKey_4294969352, F9: B.LogicalKeyboardKey_4294969353, FavoriteClear0: B.LogicalKeyboardKey_4294970646, FavoriteClear1: B.LogicalKeyboardKey_4294970647, FavoriteClear2: B.LogicalKeyboardKey_4294970648, FavoriteClear3: B.LogicalKeyboardKey_4294970649, FavoriteRecall0: B.LogicalKeyboardKey_4294970650, FavoriteRecall1: B.LogicalKeyboardKey_4294970651, FavoriteRecall2: B.LogicalKeyboardKey_4294970652, FavoriteRecall3: B.LogicalKeyboardKey_4294970653, FavoriteStore0: B.LogicalKeyboardKey_4294970654, FavoriteStore1: B.LogicalKeyboardKey_4294970655, FavoriteStore2: B.LogicalKeyboardKey_4294970656, FavoriteStore3: B.LogicalKeyboardKey_4294970657, FinalMode: B.LogicalKeyboardKey_4294969094, Find: B.LogicalKeyboardKey_4294968583, Fn: B.LogicalKeyboardKey_4294967558, FnLock: B.LogicalKeyboardKey_4294967559, GoBack: B.LogicalKeyboardKey_4294971397, GoHome: B.LogicalKeyboardKey_4294971398, GroupFirst: B.LogicalKeyboardKey_4294969095, GroupLast: B.LogicalKeyboardKey_4294969096, GroupNext: B.LogicalKeyboardKey_4294969097, GroupPrevious: B.LogicalKeyboardKey_4294969098, Guide: B.LogicalKeyboardKey_4294970658, GuideNextDay: B.LogicalKeyboardKey_4294970659, GuidePreviousDay: B.LogicalKeyboardKey_4294970660, HangulMode: B.LogicalKeyboardKey_4294969105, HanjaMode: B.LogicalKeyboardKey_4294969106, Hankaku: B.LogicalKeyboardKey_4294969109, HeadsetHook: B.LogicalKeyboardKey_4294971399, Help: B.LogicalKeyboardKey_4294968584, Hibernate: B.LogicalKeyboardKey_4294968841, Hiragana: B.LogicalKeyboardKey_4294969110, HiraganaKatakana: B.LogicalKeyboardKey_4294969111, Home: B.LogicalKeyboardKey_4294968070, Hyper: B.LogicalKeyboardKey_4294967560, Info: B.LogicalKeyboardKey_4294970661, Insert: B.LogicalKeyboardKey_4294968327, InstantReplay: B.LogicalKeyboardKey_4294970662, JunjaMode: B.LogicalKeyboardKey_4294969107, KanaMode: B.LogicalKeyboardKey_4294969112, KanjiMode: B.LogicalKeyboardKey_4294969113, Katakana: B.LogicalKeyboardKey_4294969114, Key11: B.LogicalKeyboardKey_4294971905, Key12: B.LogicalKeyboardKey_4294971906, LastNumberRedial: B.LogicalKeyboardKey_4294971400, LaunchApplication1: B.LogicalKeyboardKey_4294970118, LaunchApplication2: B.LogicalKeyboardKey_4294970113, LaunchAssistant: B.LogicalKeyboardKey_4294970126, LaunchCalendar: B.LogicalKeyboardKey_4294970114, LaunchContacts: B.LogicalKeyboardKey_4294970124, LaunchControlPanel: B.LogicalKeyboardKey_4294970127, LaunchMail: B.LogicalKeyboardKey_4294970115, LaunchMediaPlayer: B.LogicalKeyboardKey_4294970116, LaunchMusicPlayer: B.LogicalKeyboardKey_4294970117, LaunchPhone: B.LogicalKeyboardKey_4294970125, LaunchScreenSaver: B.LogicalKeyboardKey_4294970119, LaunchSpreadsheet: B.LogicalKeyboardKey_4294970120, LaunchWebBrowser: B.LogicalKeyboardKey_4294970121, LaunchWebCam: B.LogicalKeyboardKey_4294970122, LaunchWordProcessor: B.LogicalKeyboardKey_4294970123, Link: B.LogicalKeyboardKey_4294970663, ListProgram: B.LogicalKeyboardKey_4294970664, LiveContent: B.LogicalKeyboardKey_4294970665, Lock: B.LogicalKeyboardKey_4294970666, LogOff: B.LogicalKeyboardKey_4294968837, MailForward: B.LogicalKeyboardKey_4294969858, MailReply: B.LogicalKeyboardKey_4294969859, MailSend: B.LogicalKeyboardKey_4294969860, MannerMode: B.LogicalKeyboardKey_4294971402, MediaApps: B.LogicalKeyboardKey_4294970667, MediaAudioTrack: B.LogicalKeyboardKey_4294970704, MediaClose: B.LogicalKeyboardKey_4294970715, MediaFastForward: B.LogicalKeyboardKey_4294970668, MediaLast: B.LogicalKeyboardKey_4294970669, MediaPause: B.LogicalKeyboardKey_4294970670, MediaPlay: B.LogicalKeyboardKey_4294970671, MediaPlayPause: B.LogicalKeyboardKey_4294969861, MediaRecord: B.LogicalKeyboardKey_4294970672, MediaRewind: B.LogicalKeyboardKey_4294970673, MediaSkip: B.LogicalKeyboardKey_4294970674, MediaSkipBackward: B.LogicalKeyboardKey_4294970705, MediaSkipForward: B.LogicalKeyboardKey_4294970706, MediaStepBackward: B.LogicalKeyboardKey_4294970707, MediaStepForward: B.LogicalKeyboardKey_4294970708, MediaStop: B.LogicalKeyboardKey_4294969863, MediaTopMenu: B.LogicalKeyboardKey_4294970709, MediaTrackNext: B.LogicalKeyboardKey_4294969864, MediaTrackPrevious: B.LogicalKeyboardKey_4294969865, MicrophoneToggle: B.LogicalKeyboardKey_4294970886, MicrophoneVolumeDown: B.LogicalKeyboardKey_4294970887, MicrophoneVolumeMute: B.LogicalKeyboardKey_4294970889, MicrophoneVolumeUp: B.LogicalKeyboardKey_4294970888, ModeChange: B.LogicalKeyboardKey_4294969099, NavigateIn: B.LogicalKeyboardKey_4294970710, NavigateNext: B.LogicalKeyboardKey_4294970711, NavigateOut: B.LogicalKeyboardKey_4294970712, NavigatePrevious: B.LogicalKeyboardKey_4294970713, New: B.LogicalKeyboardKey_4294969866, NextCandidate: B.LogicalKeyboardKey_4294969100, NextFavoriteChannel: B.LogicalKeyboardKey_4294970675, NextUserProfile: B.LogicalKeyboardKey_4294970676, NonConvert: B.LogicalKeyboardKey_4294969101, Notification: B.LogicalKeyboardKey_4294971401, NumLock: B.LogicalKeyboardKey_4294967562, OnDemand: B.LogicalKeyboardKey_4294970677, Open: B.LogicalKeyboardKey_4294969867, PageDown: B.LogicalKeyboardKey_4294968071, PageUp: B.LogicalKeyboardKey_4294968072, Pairing: B.LogicalKeyboardKey_4294970714, Paste: B.LogicalKeyboardKey_4294968328, Pause: B.LogicalKeyboardKey_4294968585, PinPDown: B.LogicalKeyboardKey_4294970678, PinPMove: B.LogicalKeyboardKey_4294970679, PinPToggle: B.LogicalKeyboardKey_4294970680, PinPUp: B.LogicalKeyboardKey_4294970681, Play: B.LogicalKeyboardKey_4294968586, PlaySpeedDown: B.LogicalKeyboardKey_4294970682, PlaySpeedReset: B.LogicalKeyboardKey_4294970683, PlaySpeedUp: B.LogicalKeyboardKey_4294970684, Power: B.LogicalKeyboardKey_4294968838, PowerOff: B.LogicalKeyboardKey_4294968839, PreviousCandidate: B.LogicalKeyboardKey_4294969102, Print: B.LogicalKeyboardKey_4294969868, PrintScreen: B.LogicalKeyboardKey_4294968840, Process: B.LogicalKeyboardKey_4294969103, Props: B.LogicalKeyboardKey_4294968587, RandomToggle: B.LogicalKeyboardKey_4294970685, RcLowBattery: B.LogicalKeyboardKey_4294970686, RecordSpeedNext: B.LogicalKeyboardKey_4294970687, Redo: B.LogicalKeyboardKey_4294968329, RfBypass: B.LogicalKeyboardKey_4294970688, Romaji: B.LogicalKeyboardKey_4294969115, STBInput: B.LogicalKeyboardKey_4294970693, STBPower: B.LogicalKeyboardKey_4294970694, Save: B.LogicalKeyboardKey_4294969869, ScanChannelsToggle: B.LogicalKeyboardKey_4294970689, ScreenModeNext: B.LogicalKeyboardKey_4294970690, ScrollLock: B.LogicalKeyboardKey_4294967564, Select: B.LogicalKeyboardKey_4294968588, Settings: B.LogicalKeyboardKey_4294970691, ShiftLevel5: B.LogicalKeyboardKey_4294967569, SingleCandidate: B.LogicalKeyboardKey_4294969104, Soft1: B.LogicalKeyboardKey_4294969601, Soft2: B.LogicalKeyboardKey_4294969602, Soft3: B.LogicalKeyboardKey_4294969603, Soft4: B.LogicalKeyboardKey_4294969604, Soft5: B.LogicalKeyboardKey_4294969605, Soft6: B.LogicalKeyboardKey_4294969606, Soft7: B.LogicalKeyboardKey_4294969607, Soft8: B.LogicalKeyboardKey_4294969608, SpeechCorrectionList: B.LogicalKeyboardKey_4294971137, SpeechInputToggle: B.LogicalKeyboardKey_4294971138, SpellCheck: B.LogicalKeyboardKey_4294969870, SplitScreenToggle: B.LogicalKeyboardKey_4294970692, Standby: B.LogicalKeyboardKey_4294968842, Subtitle: B.LogicalKeyboardKey_4294970695, Super: B.LogicalKeyboardKey_4294967566, Symbol: B.LogicalKeyboardKey_4294967567, SymbolLock: B.LogicalKeyboardKey_4294967568, TV: B.LogicalKeyboardKey_4294970697, TV3DMode: B.LogicalKeyboardKey_4294971649, TVAntennaCable: B.LogicalKeyboardKey_4294971650, TVAudioDescription: B.LogicalKeyboardKey_4294971651, TVAudioDescriptionMixDown: B.LogicalKeyboardKey_4294971652, TVAudioDescriptionMixUp: B.LogicalKeyboardKey_4294971653, TVContentsMenu: B.LogicalKeyboardKey_4294971654, TVDataService: B.LogicalKeyboardKey_4294971655, TVInput: B.LogicalKeyboardKey_4294970698, TVInputComponent1: B.LogicalKeyboardKey_4294971656, TVInputComponent2: B.LogicalKeyboardKey_4294971657, TVInputComposite1: B.LogicalKeyboardKey_4294971658, TVInputComposite2: B.LogicalKeyboardKey_4294971659, TVInputHDMI1: B.LogicalKeyboardKey_4294971660, TVInputHDMI2: B.LogicalKeyboardKey_4294971661, TVInputHDMI3: B.LogicalKeyboardKey_4294971662, TVInputHDMI4: B.LogicalKeyboardKey_4294971663, TVInputVGA1: B.LogicalKeyboardKey_4294971664, TVMediaContext: B.LogicalKeyboardKey_4294971665, TVNetwork: B.LogicalKeyboardKey_4294971666, TVNumberEntry: B.LogicalKeyboardKey_4294971667, TVPower: B.LogicalKeyboardKey_4294970699, TVRadioService: B.LogicalKeyboardKey_4294971668, TVSatellite: B.LogicalKeyboardKey_4294971669, TVSatelliteBS: B.LogicalKeyboardKey_4294971670, TVSatelliteCS: B.LogicalKeyboardKey_4294971671, TVSatelliteToggle: B.LogicalKeyboardKey_4294971672, TVTerrestrialAnalog: B.LogicalKeyboardKey_4294971673, TVTerrestrialDigital: B.LogicalKeyboardKey_4294971674, TVTimer: B.LogicalKeyboardKey_4294971675, Tab: B.LogicalKeyboardKey_4294967305, Teletext: B.LogicalKeyboardKey_4294970696, Undo: B.LogicalKeyboardKey_4294968330, Unidentified: B.LogicalKeyboardKey_4294967297, VideoModeNext: B.LogicalKeyboardKey_4294970700, VoiceDial: B.LogicalKeyboardKey_4294971403, WakeUp: B.LogicalKeyboardKey_4294968843, Wink: B.LogicalKeyboardKey_4294970701, Zenkaku: B.LogicalKeyboardKey_4294969116, ZenkakuHankaku: B.LogicalKeyboardKey_4294969117, ZoomIn: B.LogicalKeyboardKey_4294968589, ZoomOut: B.LogicalKeyboardKey_4294968590, ZoomToggle: B.LogicalKeyboardKey_4294970702}, B.List_0mM, A.findType("ConstantStringMap")); B.Map_0mogo = new A.ConstantStringMap(300, {AVRInput: 4294970632, AVRPower: 4294970633, Accel: 4294967553, Accept: 4294968577, Again: 4294968578, AllCandidates: 4294969089, Alphanumeric: 4294969090, AltGraph: 4294967555, AppSwitch: 4294971393, ArrowDown: 4294968065, ArrowLeft: 4294968066, ArrowRight: 4294968067, ArrowUp: 4294968068, Attn: 4294968579, AudioBalanceLeft: 4294970625, AudioBalanceRight: 4294970626, AudioBassBoostDown: 4294970627, AudioBassBoostToggle: 4294970882, AudioBassBoostUp: 4294970628, AudioFaderFront: 4294970629, AudioFaderRear: 4294970630, AudioSurroundModeNext: 4294970631, AudioTrebleDown: 4294970884, AudioTrebleUp: 4294970885, AudioVolumeDown: 4294969871, AudioVolumeMute: 4294969873, AudioVolumeUp: 4294969872, Backspace: 4294967304, BrightnessDown: 4294968833, BrightnessUp: 4294968834, BrowserBack: 4294970369, BrowserFavorites: 4294970370, BrowserForward: 4294970371, BrowserHome: 4294970372, BrowserRefresh: 4294970373, BrowserSearch: 4294970374, BrowserStop: 4294970375, Call: 4294971394, Camera: 4294968835, CameraFocus: 4294971395, Cancel: 4294968580, CapsLock: 4294967556, ChannelDown: 4294970634, ChannelUp: 4294970635, Clear: 4294968321, Close: 4294969857, ClosedCaptionToggle: 4294970642, CodeInput: 4294969091, ColorF0Red: 4294970636, ColorF1Green: 4294970637, ColorF2Yellow: 4294970638, ColorF3Blue: 4294970639, ColorF4Grey: 4294970640, ColorF5Brown: 4294970641, Compose: 4294969092, ContextMenu: 4294968581, Convert: 4294969093, Copy: 4294968322, CrSel: 4294968323, Cut: 4294968324, DVR: 4294970703, Delete: 4294967423, Dimmer: 4294970643, DisplaySwap: 4294970644, Eisu: 4294969108, Eject: 4294968836, End: 4294968069, EndCall: 4294971396, Enter: 4294967309, EraseEof: 4294968325, Escape: 4294967323, ExSel: 4294968326, Execute: 4294968582, Exit: 4294970645, F1: 4294969345, F10: 4294969354, F11: 4294969355, F12: 4294969356, F13: 4294969357, F14: 4294969358, F15: 4294969359, F16: 4294969360, F17: 4294969361, F18: 4294969362, F19: 4294969363, F2: 4294969346, F20: 4294969364, F21: 4294969365, F22: 4294969366, F23: 4294969367, F24: 4294969368, F3: 4294969347, F4: 4294969348, F5: 4294969349, F6: 4294969350, F7: 4294969351, F8: 4294969352, F9: 4294969353, FavoriteClear0: 4294970646, FavoriteClear1: 4294970647, FavoriteClear2: 4294970648, FavoriteClear3: 4294970649, FavoriteRecall0: 4294970650, FavoriteRecall1: 4294970651, FavoriteRecall2: 4294970652, FavoriteRecall3: 4294970653, FavoriteStore0: 4294970654, FavoriteStore1: 4294970655, FavoriteStore2: 4294970656, FavoriteStore3: 4294970657, FinalMode: 4294969094, Find: 4294968583, Fn: 4294967558, FnLock: 4294967559, GoBack: 4294971397, GoHome: 4294971398, GroupFirst: 4294969095, GroupLast: 4294969096, GroupNext: 4294969097, GroupPrevious: 4294969098, Guide: 4294970658, GuideNextDay: 4294970659, GuidePreviousDay: 4294970660, HangulMode: 4294969105, HanjaMode: 4294969106, Hankaku: 4294969109, HeadsetHook: 4294971399, Help: 4294968584, Hibernate: 4294968841, Hiragana: 4294969110, HiraganaKatakana: 4294969111, Home: 4294968070, Hyper: 4294967560, Info: 4294970661, Insert: 4294968327, InstantReplay: 4294970662, JunjaMode: 4294969107, KanaMode: 4294969112, KanjiMode: 4294969113, Katakana: 4294969114, Key11: 4294971905, Key12: 4294971906, LastNumberRedial: 4294971400, LaunchApplication1: 4294970118, LaunchApplication2: 4294970113, LaunchAssistant: 4294970126, LaunchCalendar: 4294970114, LaunchContacts: 4294970124, LaunchControlPanel: 4294970127, LaunchMail: 4294970115, LaunchMediaPlayer: 4294970116, LaunchMusicPlayer: 4294970117, LaunchPhone: 4294970125, LaunchScreenSaver: 4294970119, LaunchSpreadsheet: 4294970120, LaunchWebBrowser: 4294970121, LaunchWebCam: 4294970122, LaunchWordProcessor: 4294970123, Link: 4294970663, ListProgram: 4294970664, LiveContent: 4294970665, Lock: 4294970666, LogOff: 4294968837, MailForward: 4294969858, MailReply: 4294969859, MailSend: 4294969860, MannerMode: 4294971402, MediaApps: 4294970667, MediaAudioTrack: 4294970704, MediaClose: 4294970715, MediaFastForward: 4294970668, MediaLast: 4294970669, MediaPause: 4294970670, MediaPlay: 4294970671, MediaPlayPause: 4294969861, MediaRecord: 4294970672, MediaRewind: 4294970673, MediaSkip: 4294970674, MediaSkipBackward: 4294970705, MediaSkipForward: 4294970706, MediaStepBackward: 4294970707, MediaStepForward: 4294970708, MediaStop: 4294969863, MediaTopMenu: 4294970709, MediaTrackNext: 4294969864, MediaTrackPrevious: 4294969865, MicrophoneToggle: 4294970886, MicrophoneVolumeDown: 4294970887, MicrophoneVolumeMute: 4294970889, MicrophoneVolumeUp: 4294970888, ModeChange: 4294969099, NavigateIn: 4294970710, NavigateNext: 4294970711, NavigateOut: 4294970712, NavigatePrevious: 4294970713, New: 4294969866, NextCandidate: 4294969100, NextFavoriteChannel: 4294970675, NextUserProfile: 4294970676, NonConvert: 4294969101, Notification: 4294971401, NumLock: 4294967562, OnDemand: 4294970677, Open: 4294969867, PageDown: 4294968071, PageUp: 4294968072, Pairing: 4294970714, Paste: 4294968328, Pause: 4294968585, PinPDown: 4294970678, PinPMove: 4294970679, PinPToggle: 4294970680, PinPUp: 4294970681, Play: 4294968586, PlaySpeedDown: 4294970682, PlaySpeedReset: 4294970683, PlaySpeedUp: 4294970684, Power: 4294968838, PowerOff: 4294968839, PreviousCandidate: 4294969102, Print: 4294969868, PrintScreen: 4294968840, Process: 4294969103, Props: 4294968587, RandomToggle: 4294970685, RcLowBattery: 4294970686, RecordSpeedNext: 4294970687, Redo: 4294968329, RfBypass: 4294970688, Romaji: 4294969115, STBInput: 4294970693, STBPower: 4294970694, Save: 4294969869, ScanChannelsToggle: 4294970689, ScreenModeNext: 4294970690, ScrollLock: 4294967564, Select: 4294968588, Settings: 4294970691, ShiftLevel5: 4294967569, SingleCandidate: 4294969104, Soft1: 4294969601, Soft2: 4294969602, Soft3: 4294969603, Soft4: 4294969604, Soft5: 4294969605, Soft6: 4294969606, Soft7: 4294969607, Soft8: 4294969608, SpeechCorrectionList: 4294971137, SpeechInputToggle: 4294971138, SpellCheck: 4294969870, SplitScreenToggle: 4294970692, Standby: 4294968842, Subtitle: 4294970695, Super: 4294967566, Symbol: 4294967567, SymbolLock: 4294967568, TV: 4294970697, TV3DMode: 4294971649, TVAntennaCable: 4294971650, TVAudioDescription: 4294971651, TVAudioDescriptionMixDown: 4294971652, TVAudioDescriptionMixUp: 4294971653, TVContentsMenu: 4294971654, TVDataService: 4294971655, TVInput: 4294970698, TVInputComponent1: 4294971656, TVInputComponent2: 4294971657, TVInputComposite1: 4294971658, TVInputComposite2: 4294971659, TVInputHDMI1: 4294971660, TVInputHDMI2: 4294971661, TVInputHDMI3: 4294971662, TVInputHDMI4: 4294971663, TVInputVGA1: 4294971664, TVMediaContext: 4294971665, TVNetwork: 4294971666, TVNumberEntry: 4294971667, TVPower: 4294970699, TVRadioService: 4294971668, TVSatellite: 4294971669, TVSatelliteBS: 4294971670, TVSatelliteCS: 4294971671, TVSatelliteToggle: 4294971672, TVTerrestrialAnalog: 4294971673, TVTerrestrialDigital: 4294971674, TVTimer: 4294971675, Tab: 4294967305, Teletext: 4294970696, Undo: 4294968330, Unidentified: 4294967297, VideoModeNext: 4294970700, VoiceDial: 4294971403, WakeUp: 4294968843, Wink: 4294970701, Zenkaku: 4294969116, ZenkakuHankaku: 4294969117, ZoomIn: 4294968589, ZoomOut: 4294968590, ZoomToggle: 4294970702}, B.List_0mM, type$.ConstantStringMap_of_legacy_String_and_legacy_int); B.List_03 = A._setArrayType(makeConstList(["AElig", "AElig;", "AMP", "AMP;", "Aacute", "Aacute;", "Abreve;", "Acirc", "Acirc;", "Acy;", "Afr;", "Agrave", "Agrave;", "Alpha;", "Amacr;", "And;", "Aogon;", "Aopf;", "ApplyFunction;", "Aring", "Aring;", "Ascr;", "Assign;", "Atilde", "Atilde;", "Auml", "Auml;", "Backslash;", "Barv;", "Barwed;", "Bcy;", "Because;", "Bernoullis;", "Beta;", "Bfr;", "Bopf;", "Breve;", "Bscr;", "Bumpeq;", "CHcy;", "COPY", "COPY;", "Cacute;", "Cap;", "CapitalDifferentialD;", "Cayleys;", "Ccaron;", "Ccedil", "Ccedil;", "Ccirc;", "Cconint;", "Cdot;", "Cedilla;", "CenterDot;", "Cfr;", "Chi;", "CircleDot;", "CircleMinus;", "CirclePlus;", "CircleTimes;", "ClockwiseContourIntegral;", "CloseCurlyDoubleQuote;", "CloseCurlyQuote;", "Colon;", "Colone;", "Congruent;", "Conint;", "ContourIntegral;", "Copf;", "Coproduct;", "CounterClockwiseContourIntegral;", "Cross;", "Cscr;", "Cup;", "CupCap;", "DD;", "DDotrahd;", "DJcy;", "DScy;", "DZcy;", "Dagger;", "Darr;", "Dashv;", "Dcaron;", "Dcy;", "Del;", "Delta;", "Dfr;", "DiacriticalAcute;", "DiacriticalDot;", "DiacriticalDoubleAcute;", "DiacriticalGrave;", "DiacriticalTilde;", "Diamond;", "DifferentialD;", "Dopf;", "Dot;", "DotDot;", "DotEqual;", "DoubleContourIntegral;", "DoubleDot;", "DoubleDownArrow;", "DoubleLeftArrow;", "DoubleLeftRightArrow;", "DoubleLeftTee;", "DoubleLongLeftArrow;", "DoubleLongLeftRightArrow;", "DoubleLongRightArrow;", "DoubleRightArrow;", "DoubleRightTee;", "DoubleUpArrow;", "DoubleUpDownArrow;", "DoubleVerticalBar;", "DownArrow;", "DownArrowBar;", "DownArrowUpArrow;", "DownBreve;", "DownLeftRightVector;", "DownLeftTeeVector;", "DownLeftVector;", "DownLeftVectorBar;", "DownRightTeeVector;", "DownRightVector;", "DownRightVectorBar;", "DownTee;", "DownTeeArrow;", "Downarrow;", "Dscr;", "Dstrok;", "ENG;", "ETH", "ETH;", "Eacute", "Eacute;", "Ecaron;", "Ecirc", "Ecirc;", "Ecy;", "Edot;", "Efr;", "Egrave", "Egrave;", "Element;", "Emacr;", "EmptySmallSquare;", "EmptyVerySmallSquare;", "Eogon;", "Eopf;", "Epsilon;", "Equal;", "EqualTilde;", "Equilibrium;", "Escr;", "Esim;", "Eta;", "Euml", "Euml;", "Exists;", "ExponentialE;", "Fcy;", "Ffr;", "FilledSmallSquare;", "FilledVerySmallSquare;", "Fopf;", "ForAll;", "Fouriertrf;", "Fscr;", "GJcy;", "GT", "GT;", "Gamma;", "Gammad;", "Gbreve;", "Gcedil;", "Gcirc;", "Gcy;", "Gdot;", "Gfr;", "Gg;", "Gopf;", "GreaterEqual;", "GreaterEqualLess;", "GreaterFullEqual;", "GreaterGreater;", "GreaterLess;", "GreaterSlantEqual;", "GreaterTilde;", "Gscr;", "Gt;", "HARDcy;", "Hacek;", "Hat;", "Hcirc;", "Hfr;", "HilbertSpace;", "Hopf;", "HorizontalLine;", "Hscr;", "Hstrok;", "HumpDownHump;", "HumpEqual;", "IEcy;", "IJlig;", "IOcy;", "Iacute", "Iacute;", "Icirc", "Icirc;", "Icy;", "Idot;", "Ifr;", "Igrave", "Igrave;", "Im;", "Imacr;", "ImaginaryI;", "Implies;", "Int;", "Integral;", "Intersection;", "InvisibleComma;", "InvisibleTimes;", "Iogon;", "Iopf;", "Iota;", "Iscr;", "Itilde;", "Iukcy;", "Iuml", "Iuml;", "Jcirc;", "Jcy;", "Jfr;", "Jopf;", "Jscr;", "Jsercy;", "Jukcy;", "KHcy;", "KJcy;", "Kappa;", "Kcedil;", "Kcy;", "Kfr;", "Kopf;", "Kscr;", "LJcy;", "LT", "LT;", "Lacute;", "Lambda;", "Lang;", "Laplacetrf;", "Larr;", "Lcaron;", "Lcedil;", "Lcy;", "LeftAngleBracket;", "LeftArrow;", "LeftArrowBar;", "LeftArrowRightArrow;", "LeftCeiling;", "LeftDoubleBracket;", "LeftDownTeeVector;", "LeftDownVector;", "LeftDownVectorBar;", "LeftFloor;", "LeftRightArrow;", "LeftRightVector;", "LeftTee;", "LeftTeeArrow;", "LeftTeeVector;", "LeftTriangle;", "LeftTriangleBar;", "LeftTriangleEqual;", "LeftUpDownVector;", "LeftUpTeeVector;", "LeftUpVector;", "LeftUpVectorBar;", "LeftVector;", "LeftVectorBar;", "Leftarrow;", "Leftrightarrow;", "LessEqualGreater;", "LessFullEqual;", "LessGreater;", "LessLess;", "LessSlantEqual;", "LessTilde;", "Lfr;", "Ll;", "Lleftarrow;", "Lmidot;", "LongLeftArrow;", "LongLeftRightArrow;", "LongRightArrow;", "Longleftarrow;", "Longleftrightarrow;", "Longrightarrow;", "Lopf;", "LowerLeftArrow;", "LowerRightArrow;", "Lscr;", "Lsh;", "Lstrok;", "Lt;", "Map;", "Mcy;", "MediumSpace;", "Mellintrf;", "Mfr;", "MinusPlus;", "Mopf;", "Mscr;", "Mu;", "NJcy;", "Nacute;", "Ncaron;", "Ncedil;", "Ncy;", "NegativeMediumSpace;", "NegativeThickSpace;", "NegativeThinSpace;", "NegativeVeryThinSpace;", "NestedGreaterGreater;", "NestedLessLess;", "NewLine;", "Nfr;", "NoBreak;", "NonBreakingSpace;", "Nopf;", "Not;", "NotCongruent;", "NotCupCap;", "NotDoubleVerticalBar;", "NotElement;", "NotEqual;", "NotEqualTilde;", "NotExists;", "NotGreater;", "NotGreaterEqual;", "NotGreaterFullEqual;", "NotGreaterGreater;", "NotGreaterLess;", "NotGreaterSlantEqual;", "NotGreaterTilde;", "NotHumpDownHump;", "NotHumpEqual;", "NotLeftTriangle;", "NotLeftTriangleBar;", "NotLeftTriangleEqual;", "NotLess;", "NotLessEqual;", "NotLessGreater;", "NotLessLess;", "NotLessSlantEqual;", "NotLessTilde;", "NotNestedGreaterGreater;", "NotNestedLessLess;", "NotPrecedes;", "NotPrecedesEqual;", "NotPrecedesSlantEqual;", "NotReverseElement;", "NotRightTriangle;", "NotRightTriangleBar;", "NotRightTriangleEqual;", "NotSquareSubset;", "NotSquareSubsetEqual;", "NotSquareSuperset;", "NotSquareSupersetEqual;", "NotSubset;", "NotSubsetEqual;", "NotSucceeds;", "NotSucceedsEqual;", "NotSucceedsSlantEqual;", "NotSucceedsTilde;", "NotSuperset;", "NotSupersetEqual;", "NotTilde;", "NotTildeEqual;", "NotTildeFullEqual;", "NotTildeTilde;", "NotVerticalBar;", "Nscr;", "Ntilde", "Ntilde;", "Nu;", "OElig;", "Oacute", "Oacute;", "Ocirc", "Ocirc;", "Ocy;", "Odblac;", "Ofr;", "Ograve", "Ograve;", "Omacr;", "Omega;", "Omicron;", "Oopf;", "OpenCurlyDoubleQuote;", "OpenCurlyQuote;", "Or;", "Oscr;", "Oslash", "Oslash;", "Otilde", "Otilde;", "Otimes;", "Ouml", "Ouml;", "OverBar;", "OverBrace;", "OverBracket;", "OverParenthesis;", "PartialD;", "Pcy;", "Pfr;", "Phi;", "Pi;", "PlusMinus;", "Poincareplane;", "Popf;", "Pr;", "Precedes;", "PrecedesEqual;", "PrecedesSlantEqual;", "PrecedesTilde;", "Prime;", "Product;", "Proportion;", "Proportional;", "Pscr;", "Psi;", "QUOT", "QUOT;", "Qfr;", "Qopf;", "Qscr;", "RBarr;", "REG", "REG;", "Racute;", "Rang;", "Rarr;", "Rarrtl;", "Rcaron;", "Rcedil;", "Rcy;", "Re;", "ReverseElement;", "ReverseEquilibrium;", "ReverseUpEquilibrium;", "Rfr;", "Rho;", "RightAngleBracket;", "RightArrow;", "RightArrowBar;", "RightArrowLeftArrow;", "RightCeiling;", "RightDoubleBracket;", "RightDownTeeVector;", "RightDownVector;", "RightDownVectorBar;", "RightFloor;", "RightTee;", "RightTeeArrow;", "RightTeeVector;", "RightTriangle;", "RightTriangleBar;", "RightTriangleEqual;", "RightUpDownVector;", "RightUpTeeVector;", "RightUpVector;", "RightUpVectorBar;", "RightVector;", "RightVectorBar;", "Rightarrow;", "Ropf;", "RoundImplies;", "Rrightarrow;", "Rscr;", "Rsh;", "RuleDelayed;", "SHCHcy;", "SHcy;", "SOFTcy;", "Sacute;", "Sc;", "Scaron;", "Scedil;", "Scirc;", "Scy;", "Sfr;", "ShortDownArrow;", "ShortLeftArrow;", "ShortRightArrow;", "ShortUpArrow;", "Sigma;", "SmallCircle;", "Sopf;", "Sqrt;", "Square;", "SquareIntersection;", "SquareSubset;", "SquareSubsetEqual;", "SquareSuperset;", "SquareSupersetEqual;", "SquareUnion;", "Sscr;", "Star;", "Sub;", "Subset;", "SubsetEqual;", "Succeeds;", "SucceedsEqual;", "SucceedsSlantEqual;", "SucceedsTilde;", "SuchThat;", "Sum;", "Sup;", "Superset;", "SupersetEqual;", "Supset;", "THORN", "THORN;", "TRADE;", "TSHcy;", "TScy;", "Tab;", "Tau;", "Tcaron;", "Tcedil;", "Tcy;", "Tfr;", "Therefore;", "Theta;", "ThickSpace;", "ThinSpace;", "Tilde;", "TildeEqual;", "TildeFullEqual;", "TildeTilde;", "Topf;", "TripleDot;", "Tscr;", "Tstrok;", "Uacute", "Uacute;", "Uarr;", "Uarrocir;", "Ubrcy;", "Ubreve;", "Ucirc", "Ucirc;", "Ucy;", "Udblac;", "Ufr;", "Ugrave", "Ugrave;", "Umacr;", "UnderBar;", "UnderBrace;", "UnderBracket;", "UnderParenthesis;", "Union;", "UnionPlus;", "Uogon;", "Uopf;", "UpArrow;", "UpArrowBar;", "UpArrowDownArrow;", "UpDownArrow;", "UpEquilibrium;", "UpTee;", "UpTeeArrow;", "Uparrow;", "Updownarrow;", "UpperLeftArrow;", "UpperRightArrow;", "Upsi;", "Upsilon;", "Uring;", "Uscr;", "Utilde;", "Uuml", "Uuml;", "VDash;", "Vbar;", "Vcy;", "Vdash;", "Vdashl;", "Vee;", "Verbar;", "Vert;", "VerticalBar;", "VerticalLine;", "VerticalSeparator;", "VerticalTilde;", "VeryThinSpace;", "Vfr;", "Vopf;", "Vscr;", "Vvdash;", "Wcirc;", "Wedge;", "Wfr;", "Wopf;", "Wscr;", "Xfr;", "Xi;", "Xopf;", "Xscr;", "YAcy;", "YIcy;", "YUcy;", "Yacute", "Yacute;", "Ycirc;", "Ycy;", "Yfr;", "Yopf;", "Yscr;", "Yuml;", "ZHcy;", "Zacute;", "Zcaron;", "Zcy;", "Zdot;", "ZeroWidthSpace;", "Zeta;", "Zfr;", "Zopf;", "Zscr;", "aacute", "aacute;", "abreve;", "ac;", "acE;", "acd;", "acirc", "acirc;", "acute", "acute;", "acy;", "aelig", "aelig;", "af;", "afr;", "agrave", "agrave;", "alefsym;", "aleph;", "alpha;", "amacr;", "amalg;", "amp", "amp;", "and;", "andand;", "andd;", "andslope;", "andv;", "ang;", "ange;", "angle;", "angmsd;", "angmsdaa;", "angmsdab;", "angmsdac;", "angmsdad;", "angmsdae;", "angmsdaf;", "angmsdag;", "angmsdah;", "angrt;", "angrtvb;", "angrtvbd;", "angsph;", "angst;", "angzarr;", "aogon;", "aopf;", "ap;", "apE;", "apacir;", "ape;", "apid;", "apos;", "approx;", "approxeq;", "aring", "aring;", "ascr;", "ast;", "asymp;", "asympeq;", "atilde", "atilde;", "auml", "auml;", "awconint;", "awint;", "bNot;", "backcong;", "backepsilon;", "backprime;", "backsim;", "backsimeq;", "barvee;", "barwed;", "barwedge;", "bbrk;", "bbrktbrk;", "bcong;", "bcy;", "bdquo;", "becaus;", "because;", "bemptyv;", "bepsi;", "bernou;", "beta;", "beth;", "between;", "bfr;", "bigcap;", "bigcirc;", "bigcup;", "bigodot;", "bigoplus;", "bigotimes;", "bigsqcup;", "bigstar;", "bigtriangledown;", "bigtriangleup;", "biguplus;", "bigvee;", "bigwedge;", "bkarow;", "blacklozenge;", "blacksquare;", "blacktriangle;", "blacktriangledown;", "blacktriangleleft;", "blacktriangleright;", "blank;", "blk12;", "blk14;", "blk34;", "block;", "bne;", "bnequiv;", "bnot;", "bopf;", "bot;", "bottom;", "bowtie;", "boxDL;", "boxDR;", "boxDl;", "boxDr;", "boxH;", "boxHD;", "boxHU;", "boxHd;", "boxHu;", "boxUL;", "boxUR;", "boxUl;", "boxUr;", "boxV;", "boxVH;", "boxVL;", "boxVR;", "boxVh;", "boxVl;", "boxVr;", "boxbox;", "boxdL;", "boxdR;", "boxdl;", "boxdr;", "boxh;", "boxhD;", "boxhU;", "boxhd;", "boxhu;", "boxminus;", "boxplus;", "boxtimes;", "boxuL;", "boxuR;", "boxul;", "boxur;", "boxv;", "boxvH;", "boxvL;", "boxvR;", "boxvh;", "boxvl;", "boxvr;", "bprime;", "breve;", "brvbar", "brvbar;", "bscr;", "bsemi;", "bsim;", "bsime;", "bsol;", "bsolb;", "bsolhsub;", "bull;", "bullet;", "bump;", "bumpE;", "bumpe;", "bumpeq;", "cacute;", "cap;", "capand;", "capbrcup;", "capcap;", "capcup;", "capdot;", "caps;", "caret;", "caron;", "ccaps;", "ccaron;", "ccedil", "ccedil;", "ccirc;", "ccups;", "ccupssm;", "cdot;", "cedil", "cedil;", "cemptyv;", "cent", "cent;", "centerdot;", "cfr;", "chcy;", "check;", "checkmark;", "chi;", "cir;", "cirE;", "circ;", "circeq;", "circlearrowleft;", "circlearrowright;", "circledR;", "circledS;", "circledast;", "circledcirc;", "circleddash;", "cire;", "cirfnint;", "cirmid;", "cirscir;", "clubs;", "clubsuit;", "colon;", "colone;", "coloneq;", "comma;", "commat;", "comp;", "compfn;", "complement;", "complexes;", "cong;", "congdot;", "conint;", "copf;", "coprod;", "copy", "copy;", "copysr;", "crarr;", "cross;", "cscr;", "csub;", "csube;", "csup;", "csupe;", "ctdot;", "cudarrl;", "cudarrr;", "cuepr;", "cuesc;", "cularr;", "cularrp;", "cup;", "cupbrcap;", "cupcap;", "cupcup;", "cupdot;", "cupor;", "cups;", "curarr;", "curarrm;", "curlyeqprec;", "curlyeqsucc;", "curlyvee;", "curlywedge;", "curren", "curren;", "curvearrowleft;", "curvearrowright;", "cuvee;", "cuwed;", "cwconint;", "cwint;", "cylcty;", "dArr;", "dHar;", "dagger;", "daleth;", "darr;", "dash;", "dashv;", "dbkarow;", "dblac;", "dcaron;", "dcy;", "dd;", "ddagger;", "ddarr;", "ddotseq;", "deg", "deg;", "delta;", "demptyv;", "dfisht;", "dfr;", "dharl;", "dharr;", "diam;", "diamond;", "diamondsuit;", "diams;", "die;", "digamma;", "disin;", "div;", "divide", "divide;", "divideontimes;", "divonx;", "djcy;", "dlcorn;", "dlcrop;", "dollar;", "dopf;", "dot;", "doteq;", "doteqdot;", "dotminus;", "dotplus;", "dotsquare;", "doublebarwedge;", "downarrow;", "downdownarrows;", "downharpoonleft;", "downharpoonright;", "drbkarow;", "drcorn;", "drcrop;", "dscr;", "dscy;", "dsol;", "dstrok;", "dtdot;", "dtri;", "dtrif;", "duarr;", "duhar;", "dwangle;", "dzcy;", "dzigrarr;", "eDDot;", "eDot;", "eacute", "eacute;", "easter;", "ecaron;", "ecir;", "ecirc", "ecirc;", "ecolon;", "ecy;", "edot;", "ee;", "efDot;", "efr;", "eg;", "egrave", "egrave;", "egs;", "egsdot;", "el;", "elinters;", "ell;", "els;", "elsdot;", "emacr;", "empty;", "emptyset;", "emptyv;", "emsp13;", "emsp14;", "emsp;", "eng;", "ensp;", "eogon;", "eopf;", "epar;", "eparsl;", "eplus;", "epsi;", "epsilon;", "epsiv;", "eqcirc;", "eqcolon;", "eqsim;", "eqslantgtr;", "eqslantless;", "equals;", "equest;", "equiv;", "equivDD;", "eqvparsl;", "erDot;", "erarr;", "escr;", "esdot;", "esim;", "eta;", "eth", "eth;", "euml", "euml;", "euro;", "excl;", "exist;", "expectation;", "exponentiale;", "fallingdotseq;", "fcy;", "female;", "ffilig;", "fflig;", "ffllig;", "ffr;", "filig;", "fjlig;", "flat;", "fllig;", "fltns;", "fnof;", "fopf;", "forall;", "fork;", "forkv;", "fpartint;", "frac12", "frac12;", "frac13;", "frac14", "frac14;", "frac15;", "frac16;", "frac18;", "frac23;", "frac25;", "frac34", "frac34;", "frac35;", "frac38;", "frac45;", "frac56;", "frac58;", "frac78;", "frasl;", "frown;", "fscr;", "gE;", "gEl;", "gacute;", "gamma;", "gammad;", "gap;", "gbreve;", "gcirc;", "gcy;", "gdot;", "ge;", "gel;", "geq;", "geqq;", "geqslant;", "ges;", "gescc;", "gesdot;", "gesdoto;", "gesdotol;", "gesl;", "gesles;", "gfr;", "gg;", "ggg;", "gimel;", "gjcy;", "gl;", "glE;", "gla;", "glj;", "gnE;", "gnap;", "gnapprox;", "gne;", "gneq;", "gneqq;", "gnsim;", "gopf;", "grave;", "gscr;", "gsim;", "gsime;", "gsiml;", "gt", "gt;", "gtcc;", "gtcir;", "gtdot;", "gtlPar;", "gtquest;", "gtrapprox;", "gtrarr;", "gtrdot;", "gtreqless;", "gtreqqless;", "gtrless;", "gtrsim;", "gvertneqq;", "gvnE;", "hArr;", "hairsp;", "half;", "hamilt;", "hardcy;", "harr;", "harrcir;", "harrw;", "hbar;", "hcirc;", "hearts;", "heartsuit;", "hellip;", "hercon;", "hfr;", "hksearow;", "hkswarow;", "hoarr;", "homtht;", "hookleftarrow;", "hookrightarrow;", "hopf;", "horbar;", "hscr;", "hslash;", "hstrok;", "hybull;", "hyphen;", "iacute", "iacute;", "ic;", "icirc", "icirc;", "icy;", "iecy;", "iexcl", "iexcl;", "iff;", "ifr;", "igrave", "igrave;", "ii;", "iiiint;", "iiint;", "iinfin;", "iiota;", "ijlig;", "imacr;", "image;", "imagline;", "imagpart;", "imath;", "imof;", "imped;", "in;", "incare;", "infin;", "infintie;", "inodot;", "int;", "intcal;", "integers;", "intercal;", "intlarhk;", "intprod;", "iocy;", "iogon;", "iopf;", "iota;", "iprod;", "iquest", "iquest;", "iscr;", "isin;", "isinE;", "isindot;", "isins;", "isinsv;", "isinv;", "it;", "itilde;", "iukcy;", "iuml", "iuml;", "jcirc;", "jcy;", "jfr;", "jmath;", "jopf;", "jscr;", "jsercy;", "jukcy;", "kappa;", "kappav;", "kcedil;", "kcy;", "kfr;", "kgreen;", "khcy;", "kjcy;", "kopf;", "kscr;", "lAarr;", "lArr;", "lAtail;", "lBarr;", "lE;", "lEg;", "lHar;", "lacute;", "laemptyv;", "lagran;", "lambda;", "lang;", "langd;", "langle;", "lap;", "laquo", "laquo;", "larr;", "larrb;", "larrbfs;", "larrfs;", "larrhk;", "larrlp;", "larrpl;", "larrsim;", "larrtl;", "lat;", "latail;", "late;", "lates;", "lbarr;", "lbbrk;", "lbrace;", "lbrack;", "lbrke;", "lbrksld;", "lbrkslu;", "lcaron;", "lcedil;", "lceil;", "lcub;", "lcy;", "ldca;", "ldquo;", "ldquor;", "ldrdhar;", "ldrushar;", "ldsh;", "le;", "leftarrow;", "leftarrowtail;", "leftharpoondown;", "leftharpoonup;", "leftleftarrows;", "leftrightarrow;", "leftrightarrows;", "leftrightharpoons;", "leftrightsquigarrow;", "leftthreetimes;", "leg;", "leq;", "leqq;", "leqslant;", "les;", "lescc;", "lesdot;", "lesdoto;", "lesdotor;", "lesg;", "lesges;", "lessapprox;", "lessdot;", "lesseqgtr;", "lesseqqgtr;", "lessgtr;", "lesssim;", "lfisht;", "lfloor;", "lfr;", "lg;", "lgE;", "lhard;", "lharu;", "lharul;", "lhblk;", "ljcy;", "ll;", "llarr;", "llcorner;", "llhard;", "lltri;", "lmidot;", "lmoust;", "lmoustache;", "lnE;", "lnap;", "lnapprox;", "lne;", "lneq;", "lneqq;", "lnsim;", "loang;", "loarr;", "lobrk;", "longleftarrow;", "longleftrightarrow;", "longmapsto;", "longrightarrow;", "looparrowleft;", "looparrowright;", "lopar;", "lopf;", "loplus;", "lotimes;", "lowast;", "lowbar;", "loz;", "lozenge;", "lozf;", "lpar;", "lparlt;", "lrarr;", "lrcorner;", "lrhar;", "lrhard;", "lrm;", "lrtri;", "lsaquo;", "lscr;", "lsh;", "lsim;", "lsime;", "lsimg;", "lsqb;", "lsquo;", "lsquor;", "lstrok;", "lt", "lt;", "ltcc;", "ltcir;", "ltdot;", "lthree;", "ltimes;", "ltlarr;", "ltquest;", "ltrPar;", "ltri;", "ltrie;", "ltrif;", "lurdshar;", "luruhar;", "lvertneqq;", "lvnE;", "mDDot;", "macr", "macr;", "male;", "malt;", "maltese;", "map;", "mapsto;", "mapstodown;", "mapstoleft;", "mapstoup;", "marker;", "mcomma;", "mcy;", "mdash;", "measuredangle;", "mfr;", "mho;", "micro", "micro;", "mid;", "midast;", "midcir;", "middot", "middot;", "minus;", "minusb;", "minusd;", "minusdu;", "mlcp;", "mldr;", "mnplus;", "models;", "mopf;", "mp;", "mscr;", "mstpos;", "mu;", "multimap;", "mumap;", "nGg;", "nGt;", "nGtv;", "nLeftarrow;", "nLeftrightarrow;", "nLl;", "nLt;", "nLtv;", "nRightarrow;", "nVDash;", "nVdash;", "nabla;", "nacute;", "nang;", "nap;", "napE;", "napid;", "napos;", "napprox;", "natur;", "natural;", "naturals;", "nbsp", "nbsp;", "nbump;", "nbumpe;", "ncap;", "ncaron;", "ncedil;", "ncong;", "ncongdot;", "ncup;", "ncy;", "ndash;", "ne;", "neArr;", "nearhk;", "nearr;", "nearrow;", "nedot;", "nequiv;", "nesear;", "nesim;", "nexist;", "nexists;", "nfr;", "ngE;", "nge;", "ngeq;", "ngeqq;", "ngeqslant;", "nges;", "ngsim;", "ngt;", "ngtr;", "nhArr;", "nharr;", "nhpar;", "ni;", "nis;", "nisd;", "niv;", "njcy;", "nlArr;", "nlE;", "nlarr;", "nldr;", "nle;", "nleftarrow;", "nleftrightarrow;", "nleq;", "nleqq;", "nleqslant;", "nles;", "nless;", "nlsim;", "nlt;", "nltri;", "nltrie;", "nmid;", "nopf;", "not", "not;", "notin;", "notinE;", "notindot;", "notinva;", "notinvb;", "notinvc;", "notni;", "notniva;", "notnivb;", "notnivc;", "npar;", "nparallel;", "nparsl;", "npart;", "npolint;", "npr;", "nprcue;", "npre;", "nprec;", "npreceq;", "nrArr;", "nrarr;", "nrarrc;", "nrarrw;", "nrightarrow;", "nrtri;", "nrtrie;", "nsc;", "nsccue;", "nsce;", "nscr;", "nshortmid;", "nshortparallel;", "nsim;", "nsime;", "nsimeq;", "nsmid;", "nspar;", "nsqsube;", "nsqsupe;", "nsub;", "nsubE;", "nsube;", "nsubset;", "nsubseteq;", "nsubseteqq;", "nsucc;", "nsucceq;", "nsup;", "nsupE;", "nsupe;", "nsupset;", "nsupseteq;", "nsupseteqq;", "ntgl;", "ntilde", "ntilde;", "ntlg;", "ntriangleleft;", "ntrianglelefteq;", "ntriangleright;", "ntrianglerighteq;", "nu;", "num;", "numero;", "numsp;", "nvDash;", "nvHarr;", "nvap;", "nvdash;", "nvge;", "nvgt;", "nvinfin;", "nvlArr;", "nvle;", "nvlt;", "nvltrie;", "nvrArr;", "nvrtrie;", "nvsim;", "nwArr;", "nwarhk;", "nwarr;", "nwarrow;", "nwnear;", "oS;", "oacute", "oacute;", "oast;", "ocir;", "ocirc", "ocirc;", "ocy;", "odash;", "odblac;", "odiv;", "odot;", "odsold;", "oelig;", "ofcir;", "ofr;", "ogon;", "ograve", "ograve;", "ogt;", "ohbar;", "ohm;", "oint;", "olarr;", "olcir;", "olcross;", "oline;", "olt;", "omacr;", "omega;", "omicron;", "omid;", "ominus;", "oopf;", "opar;", "operp;", "oplus;", "or;", "orarr;", "ord;", "order;", "orderof;", "ordf", "ordf;", "ordm", "ordm;", "origof;", "oror;", "orslope;", "orv;", "oscr;", "oslash", "oslash;", "osol;", "otilde", "otilde;", "otimes;", "otimesas;", "ouml", "ouml;", "ovbar;", "par;", "para", "para;", "parallel;", "parsim;", "parsl;", "part;", "pcy;", "percnt;", "period;", "permil;", "perp;", "pertenk;", "pfr;", "phi;", "phiv;", "phmmat;", "phone;", "pi;", "pitchfork;", "piv;", "planck;", "planckh;", "plankv;", "plus;", "plusacir;", "plusb;", "pluscir;", "plusdo;", "plusdu;", "pluse;", "plusmn", "plusmn;", "plussim;", "plustwo;", "pm;", "pointint;", "popf;", "pound", "pound;", "pr;", "prE;", "prap;", "prcue;", "pre;", "prec;", "precapprox;", "preccurlyeq;", "preceq;", "precnapprox;", "precneqq;", "precnsim;", "precsim;", "prime;", "primes;", "prnE;", "prnap;", "prnsim;", "prod;", "profalar;", "profline;", "profsurf;", "prop;", "propto;", "prsim;", "prurel;", "pscr;", "psi;", "puncsp;", "qfr;", "qint;", "qopf;", "qprime;", "qscr;", "quaternions;", "quatint;", "quest;", "questeq;", "quot", "quot;", "rAarr;", "rArr;", "rAtail;", "rBarr;", "rHar;", "race;", "racute;", "radic;", "raemptyv;", "rang;", "rangd;", "range;", "rangle;", "raquo", "raquo;", "rarr;", "rarrap;", "rarrb;", "rarrbfs;", "rarrc;", "rarrfs;", "rarrhk;", "rarrlp;", "rarrpl;", "rarrsim;", "rarrtl;", "rarrw;", "ratail;", "ratio;", "rationals;", "rbarr;", "rbbrk;", "rbrace;", "rbrack;", "rbrke;", "rbrksld;", "rbrkslu;", "rcaron;", "rcedil;", "rceil;", "rcub;", "rcy;", "rdca;", "rdldhar;", "rdquo;", "rdquor;", "rdsh;", "real;", "realine;", "realpart;", "reals;", "rect;", "reg", "reg;", "rfisht;", "rfloor;", "rfr;", "rhard;", "rharu;", "rharul;", "rho;", "rhov;", "rightarrow;", "rightarrowtail;", "rightharpoondown;", "rightharpoonup;", "rightleftarrows;", "rightleftharpoons;", "rightrightarrows;", "rightsquigarrow;", "rightthreetimes;", "ring;", "risingdotseq;", "rlarr;", "rlhar;", "rlm;", "rmoust;", "rmoustache;", "rnmid;", "roang;", "roarr;", "robrk;", "ropar;", "ropf;", "roplus;", "rotimes;", "rpar;", "rpargt;", "rppolint;", "rrarr;", "rsaquo;", "rscr;", "rsh;", "rsqb;", "rsquo;", "rsquor;", "rthree;", "rtimes;", "rtri;", "rtrie;", "rtrif;", "rtriltri;", "ruluhar;", "rx;", "sacute;", "sbquo;", "sc;", "scE;", "scap;", "scaron;", "sccue;", "sce;", "scedil;", "scirc;", "scnE;", "scnap;", "scnsim;", "scpolint;", "scsim;", "scy;", "sdot;", "sdotb;", "sdote;", "seArr;", "searhk;", "searr;", "searrow;", "sect", "sect;", "semi;", "seswar;", "setminus;", "setmn;", "sext;", "sfr;", "sfrown;", "sharp;", "shchcy;", "shcy;", "shortmid;", "shortparallel;", "shy", "shy;", "sigma;", "sigmaf;", "sigmav;", "sim;", "simdot;", "sime;", "simeq;", "simg;", "simgE;", "siml;", "simlE;", "simne;", "simplus;", "simrarr;", "slarr;", "smallsetminus;", "smashp;", "smeparsl;", "smid;", "smile;", "smt;", "smte;", "smtes;", "softcy;", "sol;", "solb;", "solbar;", "sopf;", "spades;", "spadesuit;", "spar;", "sqcap;", "sqcaps;", "sqcup;", "sqcups;", "sqsub;", "sqsube;", "sqsubset;", "sqsubseteq;", "sqsup;", "sqsupe;", "sqsupset;", "sqsupseteq;", "squ;", "square;", "squarf;", "squf;", "srarr;", "sscr;", "ssetmn;", "ssmile;", "sstarf;", "star;", "starf;", "straightepsilon;", "straightphi;", "strns;", "sub;", "subE;", "subdot;", "sube;", "subedot;", "submult;", "subnE;", "subne;", "subplus;", "subrarr;", "subset;", "subseteq;", "subseteqq;", "subsetneq;", "subsetneqq;", "subsim;", "subsub;", "subsup;", "succ;", "succapprox;", "succcurlyeq;", "succeq;", "succnapprox;", "succneqq;", "succnsim;", "succsim;", "sum;", "sung;", "sup1", "sup1;", "sup2", "sup2;", "sup3", "sup3;", "sup;", "supE;", "supdot;", "supdsub;", "supe;", "supedot;", "suphsol;", "suphsub;", "suplarr;", "supmult;", "supnE;", "supne;", "supplus;", "supset;", "supseteq;", "supseteqq;", "supsetneq;", "supsetneqq;", "supsim;", "supsub;", "supsup;", "swArr;", "swarhk;", "swarr;", "swarrow;", "swnwar;", "szlig", "szlig;", "target;", "tau;", "tbrk;", "tcaron;", "tcedil;", "tcy;", "tdot;", "telrec;", "tfr;", "there4;", "therefore;", "theta;", "thetasym;", "thetav;", "thickapprox;", "thicksim;", "thinsp;", "thkap;", "thksim;", "thorn", "thorn;", "tilde;", "times", "times;", "timesb;", "timesbar;", "timesd;", "tint;", "toea;", "top;", "topbot;", "topcir;", "topf;", "topfork;", "tosa;", "tprime;", "trade;", "triangle;", "triangledown;", "triangleleft;", "trianglelefteq;", "triangleq;", "triangleright;", "trianglerighteq;", "tridot;", "trie;", "triminus;", "triplus;", "trisb;", "tritime;", "trpezium;", "tscr;", "tscy;", "tshcy;", "tstrok;", "twixt;", "twoheadleftarrow;", "twoheadrightarrow;", "uArr;", "uHar;", "uacute", "uacute;", "uarr;", "ubrcy;", "ubreve;", "ucirc", "ucirc;", "ucy;", "udarr;", "udblac;", "udhar;", "ufisht;", "ufr;", "ugrave", "ugrave;", "uharl;", "uharr;", "uhblk;", "ulcorn;", "ulcorner;", "ulcrop;", "ultri;", "umacr;", "uml", "uml;", "uogon;", "uopf;", "uparrow;", "updownarrow;", "upharpoonleft;", "upharpoonright;", "uplus;", "upsi;", "upsih;", "upsilon;", "upuparrows;", "urcorn;", "urcorner;", "urcrop;", "uring;", "urtri;", "uscr;", "utdot;", "utilde;", "utri;", "utrif;", "uuarr;", "uuml", "uuml;", "uwangle;", "vArr;", "vBar;", "vBarv;", "vDash;", "vangrt;", "varepsilon;", "varkappa;", "varnothing;", "varphi;", "varpi;", "varpropto;", "varr;", "varrho;", "varsigma;", "varsubsetneq;", "varsubsetneqq;", "varsupsetneq;", "varsupsetneqq;", "vartheta;", "vartriangleleft;", "vartriangleright;", "vcy;", "vdash;", "vee;", "veebar;", "veeeq;", "vellip;", "verbar;", "vert;", "vfr;", "vltri;", "vnsub;", "vnsup;", "vopf;", "vprop;", "vrtri;", "vscr;", "vsubnE;", "vsubne;", "vsupnE;", "vsupne;", "vzigzag;", "wcirc;", "wedbar;", "wedge;", "wedgeq;", "weierp;", "wfr;", "wopf;", "wp;", "wr;", "wreath;", "wscr;", "xcap;", "xcirc;", "xcup;", "xdtri;", "xfr;", "xhArr;", "xharr;", "xi;", "xlArr;", "xlarr;", "xmap;", "xnis;", "xodot;", "xopf;", "xoplus;", "xotime;", "xrArr;", "xrarr;", "xscr;", "xsqcup;", "xuplus;", "xutri;", "xvee;", "xwedge;", "yacute", "yacute;", "yacy;", "ycirc;", "ycy;", "yen", "yen;", "yfr;", "yicy;", "yopf;", "yscr;", "yucy;", "yuml", "yuml;", "zacute;", "zcaron;", "zcy;", "zdot;", "zeetrf;", "zeta;", "zfr;", "zhcy;", "zigrarr;", "zopf;", "zscr;", "zwj;", "zwnj;"]), type$.JSArray_legacy_String); B.Map_0uQj = new A.ConstantStringMap(2231, {AElig: "\xc6", "AElig;": "\xc6", AMP: "&", "AMP;": "&", Aacute: "\xc1", "Aacute;": "\xc1", "Abreve;": "\u0102", Acirc: "\xc2", "Acirc;": "\xc2", "Acy;": "\u0410", "Afr;": "\ud835\udd04", Agrave: "\xc0", "Agrave;": "\xc0", "Alpha;": "\u0391", "Amacr;": "\u0100", "And;": "\u2a53", "Aogon;": "\u0104", "Aopf;": "\ud835\udd38", "ApplyFunction;": "\u2061", Aring: "\xc5", "Aring;": "\xc5", "Ascr;": "\ud835\udc9c", "Assign;": "\u2254", Atilde: "\xc3", "Atilde;": "\xc3", Auml: "\xc4", "Auml;": "\xc4", "Backslash;": "\u2216", "Barv;": "\u2ae7", "Barwed;": "\u2306", "Bcy;": "\u0411", "Because;": "\u2235", "Bernoullis;": "\u212c", "Beta;": "\u0392", "Bfr;": "\ud835\udd05", "Bopf;": "\ud835\udd39", "Breve;": "\u02d8", "Bscr;": "\u212c", "Bumpeq;": "\u224e", "CHcy;": "\u0427", COPY: "\xa9", "COPY;": "\xa9", "Cacute;": "\u0106", "Cap;": "\u22d2", "CapitalDifferentialD;": "\u2145", "Cayleys;": "\u212d", "Ccaron;": "\u010c", Ccedil: "\xc7", "Ccedil;": "\xc7", "Ccirc;": "\u0108", "Cconint;": "\u2230", "Cdot;": "\u010a", "Cedilla;": "\xb8", "CenterDot;": "\xb7", "Cfr;": "\u212d", "Chi;": "\u03a7", "CircleDot;": "\u2299", "CircleMinus;": "\u2296", "CirclePlus;": "\u2295", "CircleTimes;": "\u2297", "ClockwiseContourIntegral;": "\u2232", "CloseCurlyDoubleQuote;": "\u201d", "CloseCurlyQuote;": "\u2019", "Colon;": "\u2237", "Colone;": "\u2a74", "Congruent;": "\u2261", "Conint;": "\u222f", "ContourIntegral;": "\u222e", "Copf;": "\u2102", "Coproduct;": "\u2210", "CounterClockwiseContourIntegral;": "\u2233", "Cross;": "\u2a2f", "Cscr;": "\ud835\udc9e", "Cup;": "\u22d3", "CupCap;": "\u224d", "DD;": "\u2145", "DDotrahd;": "\u2911", "DJcy;": "\u0402", "DScy;": "\u0405", "DZcy;": "\u040f", "Dagger;": "\u2021", "Darr;": "\u21a1", "Dashv;": "\u2ae4", "Dcaron;": "\u010e", "Dcy;": "\u0414", "Del;": "\u2207", "Delta;": "\u0394", "Dfr;": "\ud835\udd07", "DiacriticalAcute;": "\xb4", "DiacriticalDot;": "\u02d9", "DiacriticalDoubleAcute;": "\u02dd", "DiacriticalGrave;": "`", "DiacriticalTilde;": "\u02dc", "Diamond;": "\u22c4", "DifferentialD;": "\u2146", "Dopf;": "\ud835\udd3b", "Dot;": "\xa8", "DotDot;": "\u20dc", "DotEqual;": "\u2250", "DoubleContourIntegral;": "\u222f", "DoubleDot;": "\xa8", "DoubleDownArrow;": "\u21d3", "DoubleLeftArrow;": "\u21d0", "DoubleLeftRightArrow;": "\u21d4", "DoubleLeftTee;": "\u2ae4", "DoubleLongLeftArrow;": "\u27f8", "DoubleLongLeftRightArrow;": "\u27fa", "DoubleLongRightArrow;": "\u27f9", "DoubleRightArrow;": "\u21d2", "DoubleRightTee;": "\u22a8", "DoubleUpArrow;": "\u21d1", "DoubleUpDownArrow;": "\u21d5", "DoubleVerticalBar;": "\u2225", "DownArrow;": "\u2193", "DownArrowBar;": "\u2913", "DownArrowUpArrow;": "\u21f5", "DownBreve;": "\u0311", "DownLeftRightVector;": "\u2950", "DownLeftTeeVector;": "\u295e", "DownLeftVector;": "\u21bd", "DownLeftVectorBar;": "\u2956", "DownRightTeeVector;": "\u295f", "DownRightVector;": "\u21c1", "DownRightVectorBar;": "\u2957", "DownTee;": "\u22a4", "DownTeeArrow;": "\u21a7", "Downarrow;": "\u21d3", "Dscr;": "\ud835\udc9f", "Dstrok;": "\u0110", "ENG;": "\u014a", ETH: "\xd0", "ETH;": "\xd0", Eacute: "\xc9", "Eacute;": "\xc9", "Ecaron;": "\u011a", Ecirc: "\xca", "Ecirc;": "\xca", "Ecy;": "\u042d", "Edot;": "\u0116", "Efr;": "\ud835\udd08", Egrave: "\xc8", "Egrave;": "\xc8", "Element;": "\u2208", "Emacr;": "\u0112", "EmptySmallSquare;": "\u25fb", "EmptyVerySmallSquare;": "\u25ab", "Eogon;": "\u0118", "Eopf;": "\ud835\udd3c", "Epsilon;": "\u0395", "Equal;": "\u2a75", "EqualTilde;": "\u2242", "Equilibrium;": "\u21cc", "Escr;": "\u2130", "Esim;": "\u2a73", "Eta;": "\u0397", Euml: "\xcb", "Euml;": "\xcb", "Exists;": "\u2203", "ExponentialE;": "\u2147", "Fcy;": "\u0424", "Ffr;": "\ud835\udd09", "FilledSmallSquare;": "\u25fc", "FilledVerySmallSquare;": "\u25aa", "Fopf;": "\ud835\udd3d", "ForAll;": "\u2200", "Fouriertrf;": "\u2131", "Fscr;": "\u2131", "GJcy;": "\u0403", GT: ">", "GT;": ">", "Gamma;": "\u0393", "Gammad;": "\u03dc", "Gbreve;": "\u011e", "Gcedil;": "\u0122", "Gcirc;": "\u011c", "Gcy;": "\u0413", "Gdot;": "\u0120", "Gfr;": "\ud835\udd0a", "Gg;": "\u22d9", "Gopf;": "\ud835\udd3e", "GreaterEqual;": "\u2265", "GreaterEqualLess;": "\u22db", "GreaterFullEqual;": "\u2267", "GreaterGreater;": "\u2aa2", "GreaterLess;": "\u2277", "GreaterSlantEqual;": "\u2a7e", "GreaterTilde;": "\u2273", "Gscr;": "\ud835\udca2", "Gt;": "\u226b", "HARDcy;": "\u042a", "Hacek;": "\u02c7", "Hat;": "^", "Hcirc;": "\u0124", "Hfr;": "\u210c", "HilbertSpace;": "\u210b", "Hopf;": "\u210d", "HorizontalLine;": "\u2500", "Hscr;": "\u210b", "Hstrok;": "\u0126", "HumpDownHump;": "\u224e", "HumpEqual;": "\u224f", "IEcy;": "\u0415", "IJlig;": "\u0132", "IOcy;": "\u0401", Iacute: "\xcd", "Iacute;": "\xcd", Icirc: "\xce", "Icirc;": "\xce", "Icy;": "\u0418", "Idot;": "\u0130", "Ifr;": "\u2111", Igrave: "\xcc", "Igrave;": "\xcc", "Im;": "\u2111", "Imacr;": "\u012a", "ImaginaryI;": "\u2148", "Implies;": "\u21d2", "Int;": "\u222c", "Integral;": "\u222b", "Intersection;": "\u22c2", "InvisibleComma;": "\u2063", "InvisibleTimes;": "\u2062", "Iogon;": "\u012e", "Iopf;": "\ud835\udd40", "Iota;": "\u0399", "Iscr;": "\u2110", "Itilde;": "\u0128", "Iukcy;": "\u0406", Iuml: "\xcf", "Iuml;": "\xcf", "Jcirc;": "\u0134", "Jcy;": "\u0419", "Jfr;": "\ud835\udd0d", "Jopf;": "\ud835\udd41", "Jscr;": "\ud835\udca5", "Jsercy;": "\u0408", "Jukcy;": "\u0404", "KHcy;": "\u0425", "KJcy;": "\u040c", "Kappa;": "\u039a", "Kcedil;": "\u0136", "Kcy;": "\u041a", "Kfr;": "\ud835\udd0e", "Kopf;": "\ud835\udd42", "Kscr;": "\ud835\udca6", "LJcy;": "\u0409", LT: "<", "LT;": "<", "Lacute;": "\u0139", "Lambda;": "\u039b", "Lang;": "\u27ea", "Laplacetrf;": "\u2112", "Larr;": "\u219e", "Lcaron;": "\u013d", "Lcedil;": "\u013b", "Lcy;": "\u041b", "LeftAngleBracket;": "\u27e8", "LeftArrow;": "\u2190", "LeftArrowBar;": "\u21e4", "LeftArrowRightArrow;": "\u21c6", "LeftCeiling;": "\u2308", "LeftDoubleBracket;": "\u27e6", "LeftDownTeeVector;": "\u2961", "LeftDownVector;": "\u21c3", "LeftDownVectorBar;": "\u2959", "LeftFloor;": "\u230a", "LeftRightArrow;": "\u2194", "LeftRightVector;": "\u294e", "LeftTee;": "\u22a3", "LeftTeeArrow;": "\u21a4", "LeftTeeVector;": "\u295a", "LeftTriangle;": "\u22b2", "LeftTriangleBar;": "\u29cf", "LeftTriangleEqual;": "\u22b4", "LeftUpDownVector;": "\u2951", "LeftUpTeeVector;": "\u2960", "LeftUpVector;": "\u21bf", "LeftUpVectorBar;": "\u2958", "LeftVector;": "\u21bc", "LeftVectorBar;": "\u2952", "Leftarrow;": "\u21d0", "Leftrightarrow;": "\u21d4", "LessEqualGreater;": "\u22da", "LessFullEqual;": "\u2266", "LessGreater;": "\u2276", "LessLess;": "\u2aa1", "LessSlantEqual;": "\u2a7d", "LessTilde;": "\u2272", "Lfr;": "\ud835\udd0f", "Ll;": "\u22d8", "Lleftarrow;": "\u21da", "Lmidot;": "\u013f", "LongLeftArrow;": "\u27f5", "LongLeftRightArrow;": "\u27f7", "LongRightArrow;": "\u27f6", "Longleftarrow;": "\u27f8", "Longleftrightarrow;": "\u27fa", "Longrightarrow;": "\u27f9", "Lopf;": "\ud835\udd43", "LowerLeftArrow;": "\u2199", "LowerRightArrow;": "\u2198", "Lscr;": "\u2112", "Lsh;": "\u21b0", "Lstrok;": "\u0141", "Lt;": "\u226a", "Map;": "\u2905", "Mcy;": "\u041c", "MediumSpace;": "\u205f", "Mellintrf;": "\u2133", "Mfr;": "\ud835\udd10", "MinusPlus;": "\u2213", "Mopf;": "\ud835\udd44", "Mscr;": "\u2133", "Mu;": "\u039c", "NJcy;": "\u040a", "Nacute;": "\u0143", "Ncaron;": "\u0147", "Ncedil;": "\u0145", "Ncy;": "\u041d", "NegativeMediumSpace;": "\u200b", "NegativeThickSpace;": "\u200b", "NegativeThinSpace;": "\u200b", "NegativeVeryThinSpace;": "\u200b", "NestedGreaterGreater;": "\u226b", "NestedLessLess;": "\u226a", "NewLine;": "\n", "Nfr;": "\ud835\udd11", "NoBreak;": "\u2060", "NonBreakingSpace;": "\xa0", "Nopf;": "\u2115", "Not;": "\u2aec", "NotCongruent;": "\u2262", "NotCupCap;": "\u226d", "NotDoubleVerticalBar;": "\u2226", "NotElement;": "\u2209", "NotEqual;": "\u2260", "NotEqualTilde;": "\u2242\u0338", "NotExists;": "\u2204", "NotGreater;": "\u226f", "NotGreaterEqual;": "\u2271", "NotGreaterFullEqual;": "\u2267\u0338", "NotGreaterGreater;": "\u226b\u0338", "NotGreaterLess;": "\u2279", "NotGreaterSlantEqual;": "\u2a7e\u0338", "NotGreaterTilde;": "\u2275", "NotHumpDownHump;": "\u224e\u0338", "NotHumpEqual;": "\u224f\u0338", "NotLeftTriangle;": "\u22ea", "NotLeftTriangleBar;": "\u29cf\u0338", "NotLeftTriangleEqual;": "\u22ec", "NotLess;": "\u226e", "NotLessEqual;": "\u2270", "NotLessGreater;": "\u2278", "NotLessLess;": "\u226a\u0338", "NotLessSlantEqual;": "\u2a7d\u0338", "NotLessTilde;": "\u2274", "NotNestedGreaterGreater;": "\u2aa2\u0338", "NotNestedLessLess;": "\u2aa1\u0338", "NotPrecedes;": "\u2280", "NotPrecedesEqual;": "\u2aaf\u0338", "NotPrecedesSlantEqual;": "\u22e0", "NotReverseElement;": "\u220c", "NotRightTriangle;": "\u22eb", "NotRightTriangleBar;": "\u29d0\u0338", "NotRightTriangleEqual;": "\u22ed", "NotSquareSubset;": "\u228f\u0338", "NotSquareSubsetEqual;": "\u22e2", "NotSquareSuperset;": "\u2290\u0338", "NotSquareSupersetEqual;": "\u22e3", "NotSubset;": "\u2282\u20d2", "NotSubsetEqual;": "\u2288", "NotSucceeds;": "\u2281", "NotSucceedsEqual;": "\u2ab0\u0338", "NotSucceedsSlantEqual;": "\u22e1", "NotSucceedsTilde;": "\u227f\u0338", "NotSuperset;": "\u2283\u20d2", "NotSupersetEqual;": "\u2289", "NotTilde;": "\u2241", "NotTildeEqual;": "\u2244", "NotTildeFullEqual;": "\u2247", "NotTildeTilde;": "\u2249", "NotVerticalBar;": "\u2224", "Nscr;": "\ud835\udca9", Ntilde: "\xd1", "Ntilde;": "\xd1", "Nu;": "\u039d", "OElig;": "\u0152", Oacute: "\xd3", "Oacute;": "\xd3", Ocirc: "\xd4", "Ocirc;": "\xd4", "Ocy;": "\u041e", "Odblac;": "\u0150", "Ofr;": "\ud835\udd12", Ograve: "\xd2", "Ograve;": "\xd2", "Omacr;": "\u014c", "Omega;": "\u03a9", "Omicron;": "\u039f", "Oopf;": "\ud835\udd46", "OpenCurlyDoubleQuote;": "\u201c", "OpenCurlyQuote;": "\u2018", "Or;": "\u2a54", "Oscr;": "\ud835\udcaa", Oslash: "\xd8", "Oslash;": "\xd8", Otilde: "\xd5", "Otilde;": "\xd5", "Otimes;": "\u2a37", Ouml: "\xd6", "Ouml;": "\xd6", "OverBar;": "\u203e", "OverBrace;": "\u23de", "OverBracket;": "\u23b4", "OverParenthesis;": "\u23dc", "PartialD;": "\u2202", "Pcy;": "\u041f", "Pfr;": "\ud835\udd13", "Phi;": "\u03a6", "Pi;": "\u03a0", "PlusMinus;": "\xb1", "Poincareplane;": "\u210c", "Popf;": "\u2119", "Pr;": "\u2abb", "Precedes;": "\u227a", "PrecedesEqual;": "\u2aaf", "PrecedesSlantEqual;": "\u227c", "PrecedesTilde;": "\u227e", "Prime;": "\u2033", "Product;": "\u220f", "Proportion;": "\u2237", "Proportional;": "\u221d", "Pscr;": "\ud835\udcab", "Psi;": "\u03a8", QUOT: '"', "QUOT;": '"', "Qfr;": "\ud835\udd14", "Qopf;": "\u211a", "Qscr;": "\ud835\udcac", "RBarr;": "\u2910", REG: "\xae", "REG;": "\xae", "Racute;": "\u0154", "Rang;": "\u27eb", "Rarr;": "\u21a0", "Rarrtl;": "\u2916", "Rcaron;": "\u0158", "Rcedil;": "\u0156", "Rcy;": "\u0420", "Re;": "\u211c", "ReverseElement;": "\u220b", "ReverseEquilibrium;": "\u21cb", "ReverseUpEquilibrium;": "\u296f", "Rfr;": "\u211c", "Rho;": "\u03a1", "RightAngleBracket;": "\u27e9", "RightArrow;": "\u2192", "RightArrowBar;": "\u21e5", "RightArrowLeftArrow;": "\u21c4", "RightCeiling;": "\u2309", "RightDoubleBracket;": "\u27e7", "RightDownTeeVector;": "\u295d", "RightDownVector;": "\u21c2", "RightDownVectorBar;": "\u2955", "RightFloor;": "\u230b", "RightTee;": "\u22a2", "RightTeeArrow;": "\u21a6", "RightTeeVector;": "\u295b", "RightTriangle;": "\u22b3", "RightTriangleBar;": "\u29d0", "RightTriangleEqual;": "\u22b5", "RightUpDownVector;": "\u294f", "RightUpTeeVector;": "\u295c", "RightUpVector;": "\u21be", "RightUpVectorBar;": "\u2954", "RightVector;": "\u21c0", "RightVectorBar;": "\u2953", "Rightarrow;": "\u21d2", "Ropf;": "\u211d", "RoundImplies;": "\u2970", "Rrightarrow;": "\u21db", "Rscr;": "\u211b", "Rsh;": "\u21b1", "RuleDelayed;": "\u29f4", "SHCHcy;": "\u0429", "SHcy;": "\u0428", "SOFTcy;": "\u042c", "Sacute;": "\u015a", "Sc;": "\u2abc", "Scaron;": "\u0160", "Scedil;": "\u015e", "Scirc;": "\u015c", "Scy;": "\u0421", "Sfr;": "\ud835\udd16", "ShortDownArrow;": "\u2193", "ShortLeftArrow;": "\u2190", "ShortRightArrow;": "\u2192", "ShortUpArrow;": "\u2191", "Sigma;": "\u03a3", "SmallCircle;": "\u2218", "Sopf;": "\ud835\udd4a", "Sqrt;": "\u221a", "Square;": "\u25a1", "SquareIntersection;": "\u2293", "SquareSubset;": "\u228f", "SquareSubsetEqual;": "\u2291", "SquareSuperset;": "\u2290", "SquareSupersetEqual;": "\u2292", "SquareUnion;": "\u2294", "Sscr;": "\ud835\udcae", "Star;": "\u22c6", "Sub;": "\u22d0", "Subset;": "\u22d0", "SubsetEqual;": "\u2286", "Succeeds;": "\u227b", "SucceedsEqual;": "\u2ab0", "SucceedsSlantEqual;": "\u227d", "SucceedsTilde;": "\u227f", "SuchThat;": "\u220b", "Sum;": "\u2211", "Sup;": "\u22d1", "Superset;": "\u2283", "SupersetEqual;": "\u2287", "Supset;": "\u22d1", THORN: "\xde", "THORN;": "\xde", "TRADE;": "\u2122", "TSHcy;": "\u040b", "TScy;": "\u0426", "Tab;": "\t", "Tau;": "\u03a4", "Tcaron;": "\u0164", "Tcedil;": "\u0162", "Tcy;": "\u0422", "Tfr;": "\ud835\udd17", "Therefore;": "\u2234", "Theta;": "\u0398", "ThickSpace;": "\u205f\u200a", "ThinSpace;": "\u2009", "Tilde;": "\u223c", "TildeEqual;": "\u2243", "TildeFullEqual;": "\u2245", "TildeTilde;": "\u2248", "Topf;": "\ud835\udd4b", "TripleDot;": "\u20db", "Tscr;": "\ud835\udcaf", "Tstrok;": "\u0166", Uacute: "\xda", "Uacute;": "\xda", "Uarr;": "\u219f", "Uarrocir;": "\u2949", "Ubrcy;": "\u040e", "Ubreve;": "\u016c", Ucirc: "\xdb", "Ucirc;": "\xdb", "Ucy;": "\u0423", "Udblac;": "\u0170", "Ufr;": "\ud835\udd18", Ugrave: "\xd9", "Ugrave;": "\xd9", "Umacr;": "\u016a", "UnderBar;": "_", "UnderBrace;": "\u23df", "UnderBracket;": "\u23b5", "UnderParenthesis;": "\u23dd", "Union;": "\u22c3", "UnionPlus;": "\u228e", "Uogon;": "\u0172", "Uopf;": "\ud835\udd4c", "UpArrow;": "\u2191", "UpArrowBar;": "\u2912", "UpArrowDownArrow;": "\u21c5", "UpDownArrow;": "\u2195", "UpEquilibrium;": "\u296e", "UpTee;": "\u22a5", "UpTeeArrow;": "\u21a5", "Uparrow;": "\u21d1", "Updownarrow;": "\u21d5", "UpperLeftArrow;": "\u2196", "UpperRightArrow;": "\u2197", "Upsi;": "\u03d2", "Upsilon;": "\u03a5", "Uring;": "\u016e", "Uscr;": "\ud835\udcb0", "Utilde;": "\u0168", Uuml: "\xdc", "Uuml;": "\xdc", "VDash;": "\u22ab", "Vbar;": "\u2aeb", "Vcy;": "\u0412", "Vdash;": "\u22a9", "Vdashl;": "\u2ae6", "Vee;": "\u22c1", "Verbar;": "\u2016", "Vert;": "\u2016", "VerticalBar;": "\u2223", "VerticalLine;": "|", "VerticalSeparator;": "\u2758", "VerticalTilde;": "\u2240", "VeryThinSpace;": "\u200a", "Vfr;": "\ud835\udd19", "Vopf;": "\ud835\udd4d", "Vscr;": "\ud835\udcb1", "Vvdash;": "\u22aa", "Wcirc;": "\u0174", "Wedge;": "\u22c0", "Wfr;": "\ud835\udd1a", "Wopf;": "\ud835\udd4e", "Wscr;": "\ud835\udcb2", "Xfr;": "\ud835\udd1b", "Xi;": "\u039e", "Xopf;": "\ud835\udd4f", "Xscr;": "\ud835\udcb3", "YAcy;": "\u042f", "YIcy;": "\u0407", "YUcy;": "\u042e", Yacute: "\xdd", "Yacute;": "\xdd", "Ycirc;": "\u0176", "Ycy;": "\u042b", "Yfr;": "\ud835\udd1c", "Yopf;": "\ud835\udd50", "Yscr;": "\ud835\udcb4", "Yuml;": "\u0178", "ZHcy;": "\u0416", "Zacute;": "\u0179", "Zcaron;": "\u017d", "Zcy;": "\u0417", "Zdot;": "\u017b", "ZeroWidthSpace;": "\u200b", "Zeta;": "\u0396", "Zfr;": "\u2128", "Zopf;": "\u2124", "Zscr;": "\ud835\udcb5", aacute: "\xe1", "aacute;": "\xe1", "abreve;": "\u0103", "ac;": "\u223e", "acE;": "\u223e\u0333", "acd;": "\u223f", acirc: "\xe2", "acirc;": "\xe2", acute: "\xb4", "acute;": "\xb4", "acy;": "\u0430", aelig: "\xe6", "aelig;": "\xe6", "af;": "\u2061", "afr;": "\ud835\udd1e", agrave: "\xe0", "agrave;": "\xe0", "alefsym;": "\u2135", "aleph;": "\u2135", "alpha;": "\u03b1", "amacr;": "\u0101", "amalg;": "\u2a3f", amp: "&", "amp;": "&", "and;": "\u2227", "andand;": "\u2a55", "andd;": "\u2a5c", "andslope;": "\u2a58", "andv;": "\u2a5a", "ang;": "\u2220", "ange;": "\u29a4", "angle;": "\u2220", "angmsd;": "\u2221", "angmsdaa;": "\u29a8", "angmsdab;": "\u29a9", "angmsdac;": "\u29aa", "angmsdad;": "\u29ab", "angmsdae;": "\u29ac", "angmsdaf;": "\u29ad", "angmsdag;": "\u29ae", "angmsdah;": "\u29af", "angrt;": "\u221f", "angrtvb;": "\u22be", "angrtvbd;": "\u299d", "angsph;": "\u2222", "angst;": "\xc5", "angzarr;": "\u237c", "aogon;": "\u0105", "aopf;": "\ud835\udd52", "ap;": "\u2248", "apE;": "\u2a70", "apacir;": "\u2a6f", "ape;": "\u224a", "apid;": "\u224b", "apos;": "'", "approx;": "\u2248", "approxeq;": "\u224a", aring: "\xe5", "aring;": "\xe5", "ascr;": "\ud835\udcb6", "ast;": "*", "asymp;": "\u2248", "asympeq;": "\u224d", atilde: "\xe3", "atilde;": "\xe3", auml: "\xe4", "auml;": "\xe4", "awconint;": "\u2233", "awint;": "\u2a11", "bNot;": "\u2aed", "backcong;": "\u224c", "backepsilon;": "\u03f6", "backprime;": "\u2035", "backsim;": "\u223d", "backsimeq;": "\u22cd", "barvee;": "\u22bd", "barwed;": "\u2305", "barwedge;": "\u2305", "bbrk;": "\u23b5", "bbrktbrk;": "\u23b6", "bcong;": "\u224c", "bcy;": "\u0431", "bdquo;": "\u201e", "becaus;": "\u2235", "because;": "\u2235", "bemptyv;": "\u29b0", "bepsi;": "\u03f6", "bernou;": "\u212c", "beta;": "\u03b2", "beth;": "\u2136", "between;": "\u226c", "bfr;": "\ud835\udd1f", "bigcap;": "\u22c2", "bigcirc;": "\u25ef", "bigcup;": "\u22c3", "bigodot;": "\u2a00", "bigoplus;": "\u2a01", "bigotimes;": "\u2a02", "bigsqcup;": "\u2a06", "bigstar;": "\u2605", "bigtriangledown;": "\u25bd", "bigtriangleup;": "\u25b3", "biguplus;": "\u2a04", "bigvee;": "\u22c1", "bigwedge;": "\u22c0", "bkarow;": "\u290d", "blacklozenge;": "\u29eb", "blacksquare;": "\u25aa", "blacktriangle;": "\u25b4", "blacktriangledown;": "\u25be", "blacktriangleleft;": "\u25c2", "blacktriangleright;": "\u25b8", "blank;": "\u2423", "blk12;": "\u2592", "blk14;": "\u2591", "blk34;": "\u2593", "block;": "\u2588", "bne;": "=\u20e5", "bnequiv;": "\u2261\u20e5", "bnot;": "\u2310", "bopf;": "\ud835\udd53", "bot;": "\u22a5", "bottom;": "\u22a5", "bowtie;": "\u22c8", "boxDL;": "\u2557", "boxDR;": "\u2554", "boxDl;": "\u2556", "boxDr;": "\u2553", "boxH;": "\u2550", "boxHD;": "\u2566", "boxHU;": "\u2569", "boxHd;": "\u2564", "boxHu;": "\u2567", "boxUL;": "\u255d", "boxUR;": "\u255a", "boxUl;": "\u255c", "boxUr;": "\u2559", "boxV;": "\u2551", "boxVH;": "\u256c", "boxVL;": "\u2563", "boxVR;": "\u2560", "boxVh;": "\u256b", "boxVl;": "\u2562", "boxVr;": "\u255f", "boxbox;": "\u29c9", "boxdL;": "\u2555", "boxdR;": "\u2552", "boxdl;": "\u2510", "boxdr;": "\u250c", "boxh;": "\u2500", "boxhD;": "\u2565", "boxhU;": "\u2568", "boxhd;": "\u252c", "boxhu;": "\u2534", "boxminus;": "\u229f", "boxplus;": "\u229e", "boxtimes;": "\u22a0", "boxuL;": "\u255b", "boxuR;": "\u2558", "boxul;": "\u2518", "boxur;": "\u2514", "boxv;": "\u2502", "boxvH;": "\u256a", "boxvL;": "\u2561", "boxvR;": "\u255e", "boxvh;": "\u253c", "boxvl;": "\u2524", "boxvr;": "\u251c", "bprime;": "\u2035", "breve;": "\u02d8", brvbar: "\xa6", "brvbar;": "\xa6", "bscr;": "\ud835\udcb7", "bsemi;": "\u204f", "bsim;": "\u223d", "bsime;": "\u22cd", "bsol;": "\\", "bsolb;": "\u29c5", "bsolhsub;": "\u27c8", "bull;": "\u2022", "bullet;": "\u2022", "bump;": "\u224e", "bumpE;": "\u2aae", "bumpe;": "\u224f", "bumpeq;": "\u224f", "cacute;": "\u0107", "cap;": "\u2229", "capand;": "\u2a44", "capbrcup;": "\u2a49", "capcap;": "\u2a4b", "capcup;": "\u2a47", "capdot;": "\u2a40", "caps;": "\u2229\ufe00", "caret;": "\u2041", "caron;": "\u02c7", "ccaps;": "\u2a4d", "ccaron;": "\u010d", ccedil: "\xe7", "ccedil;": "\xe7", "ccirc;": "\u0109", "ccups;": "\u2a4c", "ccupssm;": "\u2a50", "cdot;": "\u010b", cedil: "\xb8", "cedil;": "\xb8", "cemptyv;": "\u29b2", cent: "\xa2", "cent;": "\xa2", "centerdot;": "\xb7", "cfr;": "\ud835\udd20", "chcy;": "\u0447", "check;": "\u2713", "checkmark;": "\u2713", "chi;": "\u03c7", "cir;": "\u25cb", "cirE;": "\u29c3", "circ;": "\u02c6", "circeq;": "\u2257", "circlearrowleft;": "\u21ba", "circlearrowright;": "\u21bb", "circledR;": "\xae", "circledS;": "\u24c8", "circledast;": "\u229b", "circledcirc;": "\u229a", "circleddash;": "\u229d", "cire;": "\u2257", "cirfnint;": "\u2a10", "cirmid;": "\u2aef", "cirscir;": "\u29c2", "clubs;": "\u2663", "clubsuit;": "\u2663", "colon;": ":", "colone;": "\u2254", "coloneq;": "\u2254", "comma;": ",", "commat;": "@", "comp;": "\u2201", "compfn;": "\u2218", "complement;": "\u2201", "complexes;": "\u2102", "cong;": "\u2245", "congdot;": "\u2a6d", "conint;": "\u222e", "copf;": "\ud835\udd54", "coprod;": "\u2210", copy: "\xa9", "copy;": "\xa9", "copysr;": "\u2117", "crarr;": "\u21b5", "cross;": "\u2717", "cscr;": "\ud835\udcb8", "csub;": "\u2acf", "csube;": "\u2ad1", "csup;": "\u2ad0", "csupe;": "\u2ad2", "ctdot;": "\u22ef", "cudarrl;": "\u2938", "cudarrr;": "\u2935", "cuepr;": "\u22de", "cuesc;": "\u22df", "cularr;": "\u21b6", "cularrp;": "\u293d", "cup;": "\u222a", "cupbrcap;": "\u2a48", "cupcap;": "\u2a46", "cupcup;": "\u2a4a", "cupdot;": "\u228d", "cupor;": "\u2a45", "cups;": "\u222a\ufe00", "curarr;": "\u21b7", "curarrm;": "\u293c", "curlyeqprec;": "\u22de", "curlyeqsucc;": "\u22df", "curlyvee;": "\u22ce", "curlywedge;": "\u22cf", curren: "\xa4", "curren;": "\xa4", "curvearrowleft;": "\u21b6", "curvearrowright;": "\u21b7", "cuvee;": "\u22ce", "cuwed;": "\u22cf", "cwconint;": "\u2232", "cwint;": "\u2231", "cylcty;": "\u232d", "dArr;": "\u21d3", "dHar;": "\u2965", "dagger;": "\u2020", "daleth;": "\u2138", "darr;": "\u2193", "dash;": "\u2010", "dashv;": "\u22a3", "dbkarow;": "\u290f", "dblac;": "\u02dd", "dcaron;": "\u010f", "dcy;": "\u0434", "dd;": "\u2146", "ddagger;": "\u2021", "ddarr;": "\u21ca", "ddotseq;": "\u2a77", deg: "\xb0", "deg;": "\xb0", "delta;": "\u03b4", "demptyv;": "\u29b1", "dfisht;": "\u297f", "dfr;": "\ud835\udd21", "dharl;": "\u21c3", "dharr;": "\u21c2", "diam;": "\u22c4", "diamond;": "\u22c4", "diamondsuit;": "\u2666", "diams;": "\u2666", "die;": "\xa8", "digamma;": "\u03dd", "disin;": "\u22f2", "div;": "\xf7", divide: "\xf7", "divide;": "\xf7", "divideontimes;": "\u22c7", "divonx;": "\u22c7", "djcy;": "\u0452", "dlcorn;": "\u231e", "dlcrop;": "\u230d", "dollar;": "$", "dopf;": "\ud835\udd55", "dot;": "\u02d9", "doteq;": "\u2250", "doteqdot;": "\u2251", "dotminus;": "\u2238", "dotplus;": "\u2214", "dotsquare;": "\u22a1", "doublebarwedge;": "\u2306", "downarrow;": "\u2193", "downdownarrows;": "\u21ca", "downharpoonleft;": "\u21c3", "downharpoonright;": "\u21c2", "drbkarow;": "\u2910", "drcorn;": "\u231f", "drcrop;": "\u230c", "dscr;": "\ud835\udcb9", "dscy;": "\u0455", "dsol;": "\u29f6", "dstrok;": "\u0111", "dtdot;": "\u22f1", "dtri;": "\u25bf", "dtrif;": "\u25be", "duarr;": "\u21f5", "duhar;": "\u296f", "dwangle;": "\u29a6", "dzcy;": "\u045f", "dzigrarr;": "\u27ff", "eDDot;": "\u2a77", "eDot;": "\u2251", eacute: "\xe9", "eacute;": "\xe9", "easter;": "\u2a6e", "ecaron;": "\u011b", "ecir;": "\u2256", ecirc: "\xea", "ecirc;": "\xea", "ecolon;": "\u2255", "ecy;": "\u044d", "edot;": "\u0117", "ee;": "\u2147", "efDot;": "\u2252", "efr;": "\ud835\udd22", "eg;": "\u2a9a", egrave: "\xe8", "egrave;": "\xe8", "egs;": "\u2a96", "egsdot;": "\u2a98", "el;": "\u2a99", "elinters;": "\u23e7", "ell;": "\u2113", "els;": "\u2a95", "elsdot;": "\u2a97", "emacr;": "\u0113", "empty;": "\u2205", "emptyset;": "\u2205", "emptyv;": "\u2205", "emsp13;": "\u2004", "emsp14;": "\u2005", "emsp;": "\u2003", "eng;": "\u014b", "ensp;": "\u2002", "eogon;": "\u0119", "eopf;": "\ud835\udd56", "epar;": "\u22d5", "eparsl;": "\u29e3", "eplus;": "\u2a71", "epsi;": "\u03b5", "epsilon;": "\u03b5", "epsiv;": "\u03f5", "eqcirc;": "\u2256", "eqcolon;": "\u2255", "eqsim;": "\u2242", "eqslantgtr;": "\u2a96", "eqslantless;": "\u2a95", "equals;": "=", "equest;": "\u225f", "equiv;": "\u2261", "equivDD;": "\u2a78", "eqvparsl;": "\u29e5", "erDot;": "\u2253", "erarr;": "\u2971", "escr;": "\u212f", "esdot;": "\u2250", "esim;": "\u2242", "eta;": "\u03b7", eth: "\xf0", "eth;": "\xf0", euml: "\xeb", "euml;": "\xeb", "euro;": "\u20ac", "excl;": "!", "exist;": "\u2203", "expectation;": "\u2130", "exponentiale;": "\u2147", "fallingdotseq;": "\u2252", "fcy;": "\u0444", "female;": "\u2640", "ffilig;": "\ufb03", "fflig;": "\ufb00", "ffllig;": "\ufb04", "ffr;": "\ud835\udd23", "filig;": "\ufb01", "fjlig;": "fj", "flat;": "\u266d", "fllig;": "\ufb02", "fltns;": "\u25b1", "fnof;": "\u0192", "fopf;": "\ud835\udd57", "forall;": "\u2200", "fork;": "\u22d4", "forkv;": "\u2ad9", "fpartint;": "\u2a0d", frac12: "\xbd", "frac12;": "\xbd", "frac13;": "\u2153", frac14: "\xbc", "frac14;": "\xbc", "frac15;": "\u2155", "frac16;": "\u2159", "frac18;": "\u215b", "frac23;": "\u2154", "frac25;": "\u2156", frac34: "\xbe", "frac34;": "\xbe", "frac35;": "\u2157", "frac38;": "\u215c", "frac45;": "\u2158", "frac56;": "\u215a", "frac58;": "\u215d", "frac78;": "\u215e", "frasl;": "\u2044", "frown;": "\u2322", "fscr;": "\ud835\udcbb", "gE;": "\u2267", "gEl;": "\u2a8c", "gacute;": "\u01f5", "gamma;": "\u03b3", "gammad;": "\u03dd", "gap;": "\u2a86", "gbreve;": "\u011f", "gcirc;": "\u011d", "gcy;": "\u0433", "gdot;": "\u0121", "ge;": "\u2265", "gel;": "\u22db", "geq;": "\u2265", "geqq;": "\u2267", "geqslant;": "\u2a7e", "ges;": "\u2a7e", "gescc;": "\u2aa9", "gesdot;": "\u2a80", "gesdoto;": "\u2a82", "gesdotol;": "\u2a84", "gesl;": "\u22db\ufe00", "gesles;": "\u2a94", "gfr;": "\ud835\udd24", "gg;": "\u226b", "ggg;": "\u22d9", "gimel;": "\u2137", "gjcy;": "\u0453", "gl;": "\u2277", "glE;": "\u2a92", "gla;": "\u2aa5", "glj;": "\u2aa4", "gnE;": "\u2269", "gnap;": "\u2a8a", "gnapprox;": "\u2a8a", "gne;": "\u2a88", "gneq;": "\u2a88", "gneqq;": "\u2269", "gnsim;": "\u22e7", "gopf;": "\ud835\udd58", "grave;": "`", "gscr;": "\u210a", "gsim;": "\u2273", "gsime;": "\u2a8e", "gsiml;": "\u2a90", gt: ">", "gt;": ">", "gtcc;": "\u2aa7", "gtcir;": "\u2a7a", "gtdot;": "\u22d7", "gtlPar;": "\u2995", "gtquest;": "\u2a7c", "gtrapprox;": "\u2a86", "gtrarr;": "\u2978", "gtrdot;": "\u22d7", "gtreqless;": "\u22db", "gtreqqless;": "\u2a8c", "gtrless;": "\u2277", "gtrsim;": "\u2273", "gvertneqq;": "\u2269\ufe00", "gvnE;": "\u2269\ufe00", "hArr;": "\u21d4", "hairsp;": "\u200a", "half;": "\xbd", "hamilt;": "\u210b", "hardcy;": "\u044a", "harr;": "\u2194", "harrcir;": "\u2948", "harrw;": "\u21ad", "hbar;": "\u210f", "hcirc;": "\u0125", "hearts;": "\u2665", "heartsuit;": "\u2665", "hellip;": "\u2026", "hercon;": "\u22b9", "hfr;": "\ud835\udd25", "hksearow;": "\u2925", "hkswarow;": "\u2926", "hoarr;": "\u21ff", "homtht;": "\u223b", "hookleftarrow;": "\u21a9", "hookrightarrow;": "\u21aa", "hopf;": "\ud835\udd59", "horbar;": "\u2015", "hscr;": "\ud835\udcbd", "hslash;": "\u210f", "hstrok;": "\u0127", "hybull;": "\u2043", "hyphen;": "\u2010", iacute: "\xed", "iacute;": "\xed", "ic;": "\u2063", icirc: "\xee", "icirc;": "\xee", "icy;": "\u0438", "iecy;": "\u0435", iexcl: "\xa1", "iexcl;": "\xa1", "iff;": "\u21d4", "ifr;": "\ud835\udd26", igrave: "\xec", "igrave;": "\xec", "ii;": "\u2148", "iiiint;": "\u2a0c", "iiint;": "\u222d", "iinfin;": "\u29dc", "iiota;": "\u2129", "ijlig;": "\u0133", "imacr;": "\u012b", "image;": "\u2111", "imagline;": "\u2110", "imagpart;": "\u2111", "imath;": "\u0131", "imof;": "\u22b7", "imped;": "\u01b5", "in;": "\u2208", "incare;": "\u2105", "infin;": "\u221e", "infintie;": "\u29dd", "inodot;": "\u0131", "int;": "\u222b", "intcal;": "\u22ba", "integers;": "\u2124", "intercal;": "\u22ba", "intlarhk;": "\u2a17", "intprod;": "\u2a3c", "iocy;": "\u0451", "iogon;": "\u012f", "iopf;": "\ud835\udd5a", "iota;": "\u03b9", "iprod;": "\u2a3c", iquest: "\xbf", "iquest;": "\xbf", "iscr;": "\ud835\udcbe", "isin;": "\u2208", "isinE;": "\u22f9", "isindot;": "\u22f5", "isins;": "\u22f4", "isinsv;": "\u22f3", "isinv;": "\u2208", "it;": "\u2062", "itilde;": "\u0129", "iukcy;": "\u0456", iuml: "\xef", "iuml;": "\xef", "jcirc;": "\u0135", "jcy;": "\u0439", "jfr;": "\ud835\udd27", "jmath;": "\u0237", "jopf;": "\ud835\udd5b", "jscr;": "\ud835\udcbf", "jsercy;": "\u0458", "jukcy;": "\u0454", "kappa;": "\u03ba", "kappav;": "\u03f0", "kcedil;": "\u0137", "kcy;": "\u043a", "kfr;": "\ud835\udd28", "kgreen;": "\u0138", "khcy;": "\u0445", "kjcy;": "\u045c", "kopf;": "\ud835\udd5c", "kscr;": "\ud835\udcc0", "lAarr;": "\u21da", "lArr;": "\u21d0", "lAtail;": "\u291b", "lBarr;": "\u290e", "lE;": "\u2266", "lEg;": "\u2a8b", "lHar;": "\u2962", "lacute;": "\u013a", "laemptyv;": "\u29b4", "lagran;": "\u2112", "lambda;": "\u03bb", "lang;": "\u27e8", "langd;": "\u2991", "langle;": "\u27e8", "lap;": "\u2a85", laquo: "\xab", "laquo;": "\xab", "larr;": "\u2190", "larrb;": "\u21e4", "larrbfs;": "\u291f", "larrfs;": "\u291d", "larrhk;": "\u21a9", "larrlp;": "\u21ab", "larrpl;": "\u2939", "larrsim;": "\u2973", "larrtl;": "\u21a2", "lat;": "\u2aab", "latail;": "\u2919", "late;": "\u2aad", "lates;": "\u2aad\ufe00", "lbarr;": "\u290c", "lbbrk;": "\u2772", "lbrace;": "{", "lbrack;": "[", "lbrke;": "\u298b", "lbrksld;": "\u298f", "lbrkslu;": "\u298d", "lcaron;": "\u013e", "lcedil;": "\u013c", "lceil;": "\u2308", "lcub;": "{", "lcy;": "\u043b", "ldca;": "\u2936", "ldquo;": "\u201c", "ldquor;": "\u201e", "ldrdhar;": "\u2967", "ldrushar;": "\u294b", "ldsh;": "\u21b2", "le;": "\u2264", "leftarrow;": "\u2190", "leftarrowtail;": "\u21a2", "leftharpoondown;": "\u21bd", "leftharpoonup;": "\u21bc", "leftleftarrows;": "\u21c7", "leftrightarrow;": "\u2194", "leftrightarrows;": "\u21c6", "leftrightharpoons;": "\u21cb", "leftrightsquigarrow;": "\u21ad", "leftthreetimes;": "\u22cb", "leg;": "\u22da", "leq;": "\u2264", "leqq;": "\u2266", "leqslant;": "\u2a7d", "les;": "\u2a7d", "lescc;": "\u2aa8", "lesdot;": "\u2a7f", "lesdoto;": "\u2a81", "lesdotor;": "\u2a83", "lesg;": "\u22da\ufe00", "lesges;": "\u2a93", "lessapprox;": "\u2a85", "lessdot;": "\u22d6", "lesseqgtr;": "\u22da", "lesseqqgtr;": "\u2a8b", "lessgtr;": "\u2276", "lesssim;": "\u2272", "lfisht;": "\u297c", "lfloor;": "\u230a", "lfr;": "\ud835\udd29", "lg;": "\u2276", "lgE;": "\u2a91", "lhard;": "\u21bd", "lharu;": "\u21bc", "lharul;": "\u296a", "lhblk;": "\u2584", "ljcy;": "\u0459", "ll;": "\u226a", "llarr;": "\u21c7", "llcorner;": "\u231e", "llhard;": "\u296b", "lltri;": "\u25fa", "lmidot;": "\u0140", "lmoust;": "\u23b0", "lmoustache;": "\u23b0", "lnE;": "\u2268", "lnap;": "\u2a89", "lnapprox;": "\u2a89", "lne;": "\u2a87", "lneq;": "\u2a87", "lneqq;": "\u2268", "lnsim;": "\u22e6", "loang;": "\u27ec", "loarr;": "\u21fd", "lobrk;": "\u27e6", "longleftarrow;": "\u27f5", "longleftrightarrow;": "\u27f7", "longmapsto;": "\u27fc", "longrightarrow;": "\u27f6", "looparrowleft;": "\u21ab", "looparrowright;": "\u21ac", "lopar;": "\u2985", "lopf;": "\ud835\udd5d", "loplus;": "\u2a2d", "lotimes;": "\u2a34", "lowast;": "\u2217", "lowbar;": "_", "loz;": "\u25ca", "lozenge;": "\u25ca", "lozf;": "\u29eb", "lpar;": "(", "lparlt;": "\u2993", "lrarr;": "\u21c6", "lrcorner;": "\u231f", "lrhar;": "\u21cb", "lrhard;": "\u296d", "lrm;": "\u200e", "lrtri;": "\u22bf", "lsaquo;": "\u2039", "lscr;": "\ud835\udcc1", "lsh;": "\u21b0", "lsim;": "\u2272", "lsime;": "\u2a8d", "lsimg;": "\u2a8f", "lsqb;": "[", "lsquo;": "\u2018", "lsquor;": "\u201a", "lstrok;": "\u0142", lt: "<", "lt;": "<", "ltcc;": "\u2aa6", "ltcir;": "\u2a79", "ltdot;": "\u22d6", "lthree;": "\u22cb", "ltimes;": "\u22c9", "ltlarr;": "\u2976", "ltquest;": "\u2a7b", "ltrPar;": "\u2996", "ltri;": "\u25c3", "ltrie;": "\u22b4", "ltrif;": "\u25c2", "lurdshar;": "\u294a", "luruhar;": "\u2966", "lvertneqq;": "\u2268\ufe00", "lvnE;": "\u2268\ufe00", "mDDot;": "\u223a", macr: "\xaf", "macr;": "\xaf", "male;": "\u2642", "malt;": "\u2720", "maltese;": "\u2720", "map;": "\u21a6", "mapsto;": "\u21a6", "mapstodown;": "\u21a7", "mapstoleft;": "\u21a4", "mapstoup;": "\u21a5", "marker;": "\u25ae", "mcomma;": "\u2a29", "mcy;": "\u043c", "mdash;": "\u2014", "measuredangle;": "\u2221", "mfr;": "\ud835\udd2a", "mho;": "\u2127", micro: "\xb5", "micro;": "\xb5", "mid;": "\u2223", "midast;": "*", "midcir;": "\u2af0", middot: "\xb7", "middot;": "\xb7", "minus;": "\u2212", "minusb;": "\u229f", "minusd;": "\u2238", "minusdu;": "\u2a2a", "mlcp;": "\u2adb", "mldr;": "\u2026", "mnplus;": "\u2213", "models;": "\u22a7", "mopf;": "\ud835\udd5e", "mp;": "\u2213", "mscr;": "\ud835\udcc2", "mstpos;": "\u223e", "mu;": "\u03bc", "multimap;": "\u22b8", "mumap;": "\u22b8", "nGg;": "\u22d9\u0338", "nGt;": "\u226b\u20d2", "nGtv;": "\u226b\u0338", "nLeftarrow;": "\u21cd", "nLeftrightarrow;": "\u21ce", "nLl;": "\u22d8\u0338", "nLt;": "\u226a\u20d2", "nLtv;": "\u226a\u0338", "nRightarrow;": "\u21cf", "nVDash;": "\u22af", "nVdash;": "\u22ae", "nabla;": "\u2207", "nacute;": "\u0144", "nang;": "\u2220\u20d2", "nap;": "\u2249", "napE;": "\u2a70\u0338", "napid;": "\u224b\u0338", "napos;": "\u0149", "napprox;": "\u2249", "natur;": "\u266e", "natural;": "\u266e", "naturals;": "\u2115", nbsp: "\xa0", "nbsp;": "\xa0", "nbump;": "\u224e\u0338", "nbumpe;": "\u224f\u0338", "ncap;": "\u2a43", "ncaron;": "\u0148", "ncedil;": "\u0146", "ncong;": "\u2247", "ncongdot;": "\u2a6d\u0338", "ncup;": "\u2a42", "ncy;": "\u043d", "ndash;": "\u2013", "ne;": "\u2260", "neArr;": "\u21d7", "nearhk;": "\u2924", "nearr;": "\u2197", "nearrow;": "\u2197", "nedot;": "\u2250\u0338", "nequiv;": "\u2262", "nesear;": "\u2928", "nesim;": "\u2242\u0338", "nexist;": "\u2204", "nexists;": "\u2204", "nfr;": "\ud835\udd2b", "ngE;": "\u2267\u0338", "nge;": "\u2271", "ngeq;": "\u2271", "ngeqq;": "\u2267\u0338", "ngeqslant;": "\u2a7e\u0338", "nges;": "\u2a7e\u0338", "ngsim;": "\u2275", "ngt;": "\u226f", "ngtr;": "\u226f", "nhArr;": "\u21ce", "nharr;": "\u21ae", "nhpar;": "\u2af2", "ni;": "\u220b", "nis;": "\u22fc", "nisd;": "\u22fa", "niv;": "\u220b", "njcy;": "\u045a", "nlArr;": "\u21cd", "nlE;": "\u2266\u0338", "nlarr;": "\u219a", "nldr;": "\u2025", "nle;": "\u2270", "nleftarrow;": "\u219a", "nleftrightarrow;": "\u21ae", "nleq;": "\u2270", "nleqq;": "\u2266\u0338", "nleqslant;": "\u2a7d\u0338", "nles;": "\u2a7d\u0338", "nless;": "\u226e", "nlsim;": "\u2274", "nlt;": "\u226e", "nltri;": "\u22ea", "nltrie;": "\u22ec", "nmid;": "\u2224", "nopf;": "\ud835\udd5f", not: "\xac", "not;": "\xac", "notin;": "\u2209", "notinE;": "\u22f9\u0338", "notindot;": "\u22f5\u0338", "notinva;": "\u2209", "notinvb;": "\u22f7", "notinvc;": "\u22f6", "notni;": "\u220c", "notniva;": "\u220c", "notnivb;": "\u22fe", "notnivc;": "\u22fd", "npar;": "\u2226", "nparallel;": "\u2226", "nparsl;": "\u2afd\u20e5", "npart;": "\u2202\u0338", "npolint;": "\u2a14", "npr;": "\u2280", "nprcue;": "\u22e0", "npre;": "\u2aaf\u0338", "nprec;": "\u2280", "npreceq;": "\u2aaf\u0338", "nrArr;": "\u21cf", "nrarr;": "\u219b", "nrarrc;": "\u2933\u0338", "nrarrw;": "\u219d\u0338", "nrightarrow;": "\u219b", "nrtri;": "\u22eb", "nrtrie;": "\u22ed", "nsc;": "\u2281", "nsccue;": "\u22e1", "nsce;": "\u2ab0\u0338", "nscr;": "\ud835\udcc3", "nshortmid;": "\u2224", "nshortparallel;": "\u2226", "nsim;": "\u2241", "nsime;": "\u2244", "nsimeq;": "\u2244", "nsmid;": "\u2224", "nspar;": "\u2226", "nsqsube;": "\u22e2", "nsqsupe;": "\u22e3", "nsub;": "\u2284", "nsubE;": "\u2ac5\u0338", "nsube;": "\u2288", "nsubset;": "\u2282\u20d2", "nsubseteq;": "\u2288", "nsubseteqq;": "\u2ac5\u0338", "nsucc;": "\u2281", "nsucceq;": "\u2ab0\u0338", "nsup;": "\u2285", "nsupE;": "\u2ac6\u0338", "nsupe;": "\u2289", "nsupset;": "\u2283\u20d2", "nsupseteq;": "\u2289", "nsupseteqq;": "\u2ac6\u0338", "ntgl;": "\u2279", ntilde: "\xf1", "ntilde;": "\xf1", "ntlg;": "\u2278", "ntriangleleft;": "\u22ea", "ntrianglelefteq;": "\u22ec", "ntriangleright;": "\u22eb", "ntrianglerighteq;": "\u22ed", "nu;": "\u03bd", "num;": "#", "numero;": "\u2116", "numsp;": "\u2007", "nvDash;": "\u22ad", "nvHarr;": "\u2904", "nvap;": "\u224d\u20d2", "nvdash;": "\u22ac", "nvge;": "\u2265\u20d2", "nvgt;": ">\u20d2", "nvinfin;": "\u29de", "nvlArr;": "\u2902", "nvle;": "\u2264\u20d2", "nvlt;": "<\u20d2", "nvltrie;": "\u22b4\u20d2", "nvrArr;": "\u2903", "nvrtrie;": "\u22b5\u20d2", "nvsim;": "\u223c\u20d2", "nwArr;": "\u21d6", "nwarhk;": "\u2923", "nwarr;": "\u2196", "nwarrow;": "\u2196", "nwnear;": "\u2927", "oS;": "\u24c8", oacute: "\xf3", "oacute;": "\xf3", "oast;": "\u229b", "ocir;": "\u229a", ocirc: "\xf4", "ocirc;": "\xf4", "ocy;": "\u043e", "odash;": "\u229d", "odblac;": "\u0151", "odiv;": "\u2a38", "odot;": "\u2299", "odsold;": "\u29bc", "oelig;": "\u0153", "ofcir;": "\u29bf", "ofr;": "\ud835\udd2c", "ogon;": "\u02db", ograve: "\xf2", "ograve;": "\xf2", "ogt;": "\u29c1", "ohbar;": "\u29b5", "ohm;": "\u03a9", "oint;": "\u222e", "olarr;": "\u21ba", "olcir;": "\u29be", "olcross;": "\u29bb", "oline;": "\u203e", "olt;": "\u29c0", "omacr;": "\u014d", "omega;": "\u03c9", "omicron;": "\u03bf", "omid;": "\u29b6", "ominus;": "\u2296", "oopf;": "\ud835\udd60", "opar;": "\u29b7", "operp;": "\u29b9", "oplus;": "\u2295", "or;": "\u2228", "orarr;": "\u21bb", "ord;": "\u2a5d", "order;": "\u2134", "orderof;": "\u2134", ordf: "\xaa", "ordf;": "\xaa", ordm: "\xba", "ordm;": "\xba", "origof;": "\u22b6", "oror;": "\u2a56", "orslope;": "\u2a57", "orv;": "\u2a5b", "oscr;": "\u2134", oslash: "\xf8", "oslash;": "\xf8", "osol;": "\u2298", otilde: "\xf5", "otilde;": "\xf5", "otimes;": "\u2297", "otimesas;": "\u2a36", ouml: "\xf6", "ouml;": "\xf6", "ovbar;": "\u233d", "par;": "\u2225", para: "\xb6", "para;": "\xb6", "parallel;": "\u2225", "parsim;": "\u2af3", "parsl;": "\u2afd", "part;": "\u2202", "pcy;": "\u043f", "percnt;": "%", "period;": ".", "permil;": "\u2030", "perp;": "\u22a5", "pertenk;": "\u2031", "pfr;": "\ud835\udd2d", "phi;": "\u03c6", "phiv;": "\u03d5", "phmmat;": "\u2133", "phone;": "\u260e", "pi;": "\u03c0", "pitchfork;": "\u22d4", "piv;": "\u03d6", "planck;": "\u210f", "planckh;": "\u210e", "plankv;": "\u210f", "plus;": "+", "plusacir;": "\u2a23", "plusb;": "\u229e", "pluscir;": "\u2a22", "plusdo;": "\u2214", "plusdu;": "\u2a25", "pluse;": "\u2a72", plusmn: "\xb1", "plusmn;": "\xb1", "plussim;": "\u2a26", "plustwo;": "\u2a27", "pm;": "\xb1", "pointint;": "\u2a15", "popf;": "\ud835\udd61", pound: "\xa3", "pound;": "\xa3", "pr;": "\u227a", "prE;": "\u2ab3", "prap;": "\u2ab7", "prcue;": "\u227c", "pre;": "\u2aaf", "prec;": "\u227a", "precapprox;": "\u2ab7", "preccurlyeq;": "\u227c", "preceq;": "\u2aaf", "precnapprox;": "\u2ab9", "precneqq;": "\u2ab5", "precnsim;": "\u22e8", "precsim;": "\u227e", "prime;": "\u2032", "primes;": "\u2119", "prnE;": "\u2ab5", "prnap;": "\u2ab9", "prnsim;": "\u22e8", "prod;": "\u220f", "profalar;": "\u232e", "profline;": "\u2312", "profsurf;": "\u2313", "prop;": "\u221d", "propto;": "\u221d", "prsim;": "\u227e", "prurel;": "\u22b0", "pscr;": "\ud835\udcc5", "psi;": "\u03c8", "puncsp;": "\u2008", "qfr;": "\ud835\udd2e", "qint;": "\u2a0c", "qopf;": "\ud835\udd62", "qprime;": "\u2057", "qscr;": "\ud835\udcc6", "quaternions;": "\u210d", "quatint;": "\u2a16", "quest;": "?", "questeq;": "\u225f", quot: '"', "quot;": '"', "rAarr;": "\u21db", "rArr;": "\u21d2", "rAtail;": "\u291c", "rBarr;": "\u290f", "rHar;": "\u2964", "race;": "\u223d\u0331", "racute;": "\u0155", "radic;": "\u221a", "raemptyv;": "\u29b3", "rang;": "\u27e9", "rangd;": "\u2992", "range;": "\u29a5", "rangle;": "\u27e9", raquo: "\xbb", "raquo;": "\xbb", "rarr;": "\u2192", "rarrap;": "\u2975", "rarrb;": "\u21e5", "rarrbfs;": "\u2920", "rarrc;": "\u2933", "rarrfs;": "\u291e", "rarrhk;": "\u21aa", "rarrlp;": "\u21ac", "rarrpl;": "\u2945", "rarrsim;": "\u2974", "rarrtl;": "\u21a3", "rarrw;": "\u219d", "ratail;": "\u291a", "ratio;": "\u2236", "rationals;": "\u211a", "rbarr;": "\u290d", "rbbrk;": "\u2773", "rbrace;": "}", "rbrack;": "]", "rbrke;": "\u298c", "rbrksld;": "\u298e", "rbrkslu;": "\u2990", "rcaron;": "\u0159", "rcedil;": "\u0157", "rceil;": "\u2309", "rcub;": "}", "rcy;": "\u0440", "rdca;": "\u2937", "rdldhar;": "\u2969", "rdquo;": "\u201d", "rdquor;": "\u201d", "rdsh;": "\u21b3", "real;": "\u211c", "realine;": "\u211b", "realpart;": "\u211c", "reals;": "\u211d", "rect;": "\u25ad", reg: "\xae", "reg;": "\xae", "rfisht;": "\u297d", "rfloor;": "\u230b", "rfr;": "\ud835\udd2f", "rhard;": "\u21c1", "rharu;": "\u21c0", "rharul;": "\u296c", "rho;": "\u03c1", "rhov;": "\u03f1", "rightarrow;": "\u2192", "rightarrowtail;": "\u21a3", "rightharpoondown;": "\u21c1", "rightharpoonup;": "\u21c0", "rightleftarrows;": "\u21c4", "rightleftharpoons;": "\u21cc", "rightrightarrows;": "\u21c9", "rightsquigarrow;": "\u219d", "rightthreetimes;": "\u22cc", "ring;": "\u02da", "risingdotseq;": "\u2253", "rlarr;": "\u21c4", "rlhar;": "\u21cc", "rlm;": "\u200f", "rmoust;": "\u23b1", "rmoustache;": "\u23b1", "rnmid;": "\u2aee", "roang;": "\u27ed", "roarr;": "\u21fe", "robrk;": "\u27e7", "ropar;": "\u2986", "ropf;": "\ud835\udd63", "roplus;": "\u2a2e", "rotimes;": "\u2a35", "rpar;": ")", "rpargt;": "\u2994", "rppolint;": "\u2a12", "rrarr;": "\u21c9", "rsaquo;": "\u203a", "rscr;": "\ud835\udcc7", "rsh;": "\u21b1", "rsqb;": "]", "rsquo;": "\u2019", "rsquor;": "\u2019", "rthree;": "\u22cc", "rtimes;": "\u22ca", "rtri;": "\u25b9", "rtrie;": "\u22b5", "rtrif;": "\u25b8", "rtriltri;": "\u29ce", "ruluhar;": "\u2968", "rx;": "\u211e", "sacute;": "\u015b", "sbquo;": "\u201a", "sc;": "\u227b", "scE;": "\u2ab4", "scap;": "\u2ab8", "scaron;": "\u0161", "sccue;": "\u227d", "sce;": "\u2ab0", "scedil;": "\u015f", "scirc;": "\u015d", "scnE;": "\u2ab6", "scnap;": "\u2aba", "scnsim;": "\u22e9", "scpolint;": "\u2a13", "scsim;": "\u227f", "scy;": "\u0441", "sdot;": "\u22c5", "sdotb;": "\u22a1", "sdote;": "\u2a66", "seArr;": "\u21d8", "searhk;": "\u2925", "searr;": "\u2198", "searrow;": "\u2198", sect: "\xa7", "sect;": "\xa7", "semi;": ";", "seswar;": "\u2929", "setminus;": "\u2216", "setmn;": "\u2216", "sext;": "\u2736", "sfr;": "\ud835\udd30", "sfrown;": "\u2322", "sharp;": "\u266f", "shchcy;": "\u0449", "shcy;": "\u0448", "shortmid;": "\u2223", "shortparallel;": "\u2225", shy: "\xad", "shy;": "\xad", "sigma;": "\u03c3", "sigmaf;": "\u03c2", "sigmav;": "\u03c2", "sim;": "\u223c", "simdot;": "\u2a6a", "sime;": "\u2243", "simeq;": "\u2243", "simg;": "\u2a9e", "simgE;": "\u2aa0", "siml;": "\u2a9d", "simlE;": "\u2a9f", "simne;": "\u2246", "simplus;": "\u2a24", "simrarr;": "\u2972", "slarr;": "\u2190", "smallsetminus;": "\u2216", "smashp;": "\u2a33", "smeparsl;": "\u29e4", "smid;": "\u2223", "smile;": "\u2323", "smt;": "\u2aaa", "smte;": "\u2aac", "smtes;": "\u2aac\ufe00", "softcy;": "\u044c", "sol;": "/", "solb;": "\u29c4", "solbar;": "\u233f", "sopf;": "\ud835\udd64", "spades;": "\u2660", "spadesuit;": "\u2660", "spar;": "\u2225", "sqcap;": "\u2293", "sqcaps;": "\u2293\ufe00", "sqcup;": "\u2294", "sqcups;": "\u2294\ufe00", "sqsub;": "\u228f", "sqsube;": "\u2291", "sqsubset;": "\u228f", "sqsubseteq;": "\u2291", "sqsup;": "\u2290", "sqsupe;": "\u2292", "sqsupset;": "\u2290", "sqsupseteq;": "\u2292", "squ;": "\u25a1", "square;": "\u25a1", "squarf;": "\u25aa", "squf;": "\u25aa", "srarr;": "\u2192", "sscr;": "\ud835\udcc8", "ssetmn;": "\u2216", "ssmile;": "\u2323", "sstarf;": "\u22c6", "star;": "\u2606", "starf;": "\u2605", "straightepsilon;": "\u03f5", "straightphi;": "\u03d5", "strns;": "\xaf", "sub;": "\u2282", "subE;": "\u2ac5", "subdot;": "\u2abd", "sube;": "\u2286", "subedot;": "\u2ac3", "submult;": "\u2ac1", "subnE;": "\u2acb", "subne;": "\u228a", "subplus;": "\u2abf", "subrarr;": "\u2979", "subset;": "\u2282", "subseteq;": "\u2286", "subseteqq;": "\u2ac5", "subsetneq;": "\u228a", "subsetneqq;": "\u2acb", "subsim;": "\u2ac7", "subsub;": "\u2ad5", "subsup;": "\u2ad3", "succ;": "\u227b", "succapprox;": "\u2ab8", "succcurlyeq;": "\u227d", "succeq;": "\u2ab0", "succnapprox;": "\u2aba", "succneqq;": "\u2ab6", "succnsim;": "\u22e9", "succsim;": "\u227f", "sum;": "\u2211", "sung;": "\u266a", sup1: "\xb9", "sup1;": "\xb9", sup2: "\xb2", "sup2;": "\xb2", sup3: "\xb3", "sup3;": "\xb3", "sup;": "\u2283", "supE;": "\u2ac6", "supdot;": "\u2abe", "supdsub;": "\u2ad8", "supe;": "\u2287", "supedot;": "\u2ac4", "suphsol;": "\u27c9", "suphsub;": "\u2ad7", "suplarr;": "\u297b", "supmult;": "\u2ac2", "supnE;": "\u2acc", "supne;": "\u228b", "supplus;": "\u2ac0", "supset;": "\u2283", "supseteq;": "\u2287", "supseteqq;": "\u2ac6", "supsetneq;": "\u228b", "supsetneqq;": "\u2acc", "supsim;": "\u2ac8", "supsub;": "\u2ad4", "supsup;": "\u2ad6", "swArr;": "\u21d9", "swarhk;": "\u2926", "swarr;": "\u2199", "swarrow;": "\u2199", "swnwar;": "\u292a", szlig: "\xdf", "szlig;": "\xdf", "target;": "\u2316", "tau;": "\u03c4", "tbrk;": "\u23b4", "tcaron;": "\u0165", "tcedil;": "\u0163", "tcy;": "\u0442", "tdot;": "\u20db", "telrec;": "\u2315", "tfr;": "\ud835\udd31", "there4;": "\u2234", "therefore;": "\u2234", "theta;": "\u03b8", "thetasym;": "\u03d1", "thetav;": "\u03d1", "thickapprox;": "\u2248", "thicksim;": "\u223c", "thinsp;": "\u2009", "thkap;": "\u2248", "thksim;": "\u223c", thorn: "\xfe", "thorn;": "\xfe", "tilde;": "\u02dc", times: "\xd7", "times;": "\xd7", "timesb;": "\u22a0", "timesbar;": "\u2a31", "timesd;": "\u2a30", "tint;": "\u222d", "toea;": "\u2928", "top;": "\u22a4", "topbot;": "\u2336", "topcir;": "\u2af1", "topf;": "\ud835\udd65", "topfork;": "\u2ada", "tosa;": "\u2929", "tprime;": "\u2034", "trade;": "\u2122", "triangle;": "\u25b5", "triangledown;": "\u25bf", "triangleleft;": "\u25c3", "trianglelefteq;": "\u22b4", "triangleq;": "\u225c", "triangleright;": "\u25b9", "trianglerighteq;": "\u22b5", "tridot;": "\u25ec", "trie;": "\u225c", "triminus;": "\u2a3a", "triplus;": "\u2a39", "trisb;": "\u29cd", "tritime;": "\u2a3b", "trpezium;": "\u23e2", "tscr;": "\ud835\udcc9", "tscy;": "\u0446", "tshcy;": "\u045b", "tstrok;": "\u0167", "twixt;": "\u226c", "twoheadleftarrow;": "\u219e", "twoheadrightarrow;": "\u21a0", "uArr;": "\u21d1", "uHar;": "\u2963", uacute: "\xfa", "uacute;": "\xfa", "uarr;": "\u2191", "ubrcy;": "\u045e", "ubreve;": "\u016d", ucirc: "\xfb", "ucirc;": "\xfb", "ucy;": "\u0443", "udarr;": "\u21c5", "udblac;": "\u0171", "udhar;": "\u296e", "ufisht;": "\u297e", "ufr;": "\ud835\udd32", ugrave: "\xf9", "ugrave;": "\xf9", "uharl;": "\u21bf", "uharr;": "\u21be", "uhblk;": "\u2580", "ulcorn;": "\u231c", "ulcorner;": "\u231c", "ulcrop;": "\u230f", "ultri;": "\u25f8", "umacr;": "\u016b", uml: "\xa8", "uml;": "\xa8", "uogon;": "\u0173", "uopf;": "\ud835\udd66", "uparrow;": "\u2191", "updownarrow;": "\u2195", "upharpoonleft;": "\u21bf", "upharpoonright;": "\u21be", "uplus;": "\u228e", "upsi;": "\u03c5", "upsih;": "\u03d2", "upsilon;": "\u03c5", "upuparrows;": "\u21c8", "urcorn;": "\u231d", "urcorner;": "\u231d", "urcrop;": "\u230e", "uring;": "\u016f", "urtri;": "\u25f9", "uscr;": "\ud835\udcca", "utdot;": "\u22f0", "utilde;": "\u0169", "utri;": "\u25b5", "utrif;": "\u25b4", "uuarr;": "\u21c8", uuml: "\xfc", "uuml;": "\xfc", "uwangle;": "\u29a7", "vArr;": "\u21d5", "vBar;": "\u2ae8", "vBarv;": "\u2ae9", "vDash;": "\u22a8", "vangrt;": "\u299c", "varepsilon;": "\u03f5", "varkappa;": "\u03f0", "varnothing;": "\u2205", "varphi;": "\u03d5", "varpi;": "\u03d6", "varpropto;": "\u221d", "varr;": "\u2195", "varrho;": "\u03f1", "varsigma;": "\u03c2", "varsubsetneq;": "\u228a\ufe00", "varsubsetneqq;": "\u2acb\ufe00", "varsupsetneq;": "\u228b\ufe00", "varsupsetneqq;": "\u2acc\ufe00", "vartheta;": "\u03d1", "vartriangleleft;": "\u22b2", "vartriangleright;": "\u22b3", "vcy;": "\u0432", "vdash;": "\u22a2", "vee;": "\u2228", "veebar;": "\u22bb", "veeeq;": "\u225a", "vellip;": "\u22ee", "verbar;": "|", "vert;": "|", "vfr;": "\ud835\udd33", "vltri;": "\u22b2", "vnsub;": "\u2282\u20d2", "vnsup;": "\u2283\u20d2", "vopf;": "\ud835\udd67", "vprop;": "\u221d", "vrtri;": "\u22b3", "vscr;": "\ud835\udccb", "vsubnE;": "\u2acb\ufe00", "vsubne;": "\u228a\ufe00", "vsupnE;": "\u2acc\ufe00", "vsupne;": "\u228b\ufe00", "vzigzag;": "\u299a", "wcirc;": "\u0175", "wedbar;": "\u2a5f", "wedge;": "\u2227", "wedgeq;": "\u2259", "weierp;": "\u2118", "wfr;": "\ud835\udd34", "wopf;": "\ud835\udd68", "wp;": "\u2118", "wr;": "\u2240", "wreath;": "\u2240", "wscr;": "\ud835\udccc", "xcap;": "\u22c2", "xcirc;": "\u25ef", "xcup;": "\u22c3", "xdtri;": "\u25bd", "xfr;": "\ud835\udd35", "xhArr;": "\u27fa", "xharr;": "\u27f7", "xi;": "\u03be", "xlArr;": "\u27f8", "xlarr;": "\u27f5", "xmap;": "\u27fc", "xnis;": "\u22fb", "xodot;": "\u2a00", "xopf;": "\ud835\udd69", "xoplus;": "\u2a01", "xotime;": "\u2a02", "xrArr;": "\u27f9", "xrarr;": "\u27f6", "xscr;": "\ud835\udccd", "xsqcup;": "\u2a06", "xuplus;": "\u2a04", "xutri;": "\u25b3", "xvee;": "\u22c1", "xwedge;": "\u22c0", yacute: "\xfd", "yacute;": "\xfd", "yacy;": "\u044f", "ycirc;": "\u0177", "ycy;": "\u044b", yen: "\xa5", "yen;": "\xa5", "yfr;": "\ud835\udd36", "yicy;": "\u0457", "yopf;": "\ud835\udd6a", "yscr;": "\ud835\udcce", "yucy;": "\u044e", yuml: "\xff", "yuml;": "\xff", "zacute;": "\u017a", "zcaron;": "\u017e", "zcy;": "\u0437", "zdot;": "\u017c", "zeetrf;": "\u2128", "zeta;": "\u03b6", "zfr;": "\ud835\udd37", "zhcy;": "\u0436", "zigrarr;": "\u21dd", "zopf;": "\ud835\udd6b", "zscr;": "\ud835\udccf", "zwj;": "\u200d", "zwnj;": "\u200c"}, B.List_03, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_1kC = A._setArrayType(makeConstList(["Abort", "Again", "AltLeft", "AltRight", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "AudioVolumeDown", "AudioVolumeMute", "AudioVolumeUp", "Backquote", "Backslash", "Backspace", "BassBoost", "BracketLeft", "BracketRight", "BrightnessAuto", "BrightnessDown", "BrightnessMaximum", "BrightnessMinimum", "BrightnessToggle", "BrightnessUp", "BrowserBack", "BrowserFavorites", "BrowserForward", "BrowserHome", "BrowserRefresh", "BrowserSearch", "BrowserStop", "CapsLock", "ChannelDown", "ChannelUp", "Close", "ClosedCaptionToggle", "Comma", "ContextMenu", "ControlLeft", "ControlRight", "Convert", "Copy", "Cut", "Delete", "Digit0", "Digit1", "Digit2", "Digit3", "Digit4", "Digit5", "Digit6", "Digit7", "Digit8", "Digit9", "DisplayToggleIntExt", "Eject", "End", "Enter", "Equal", "Escape", "Exit", "F1", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F2", "F20", "F21", "F22", "F23", "F24", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "Find", "Fn", "FnLock", "GameButton1", "GameButton10", "GameButton11", "GameButton12", "GameButton13", "GameButton14", "GameButton15", "GameButton16", "GameButton2", "GameButton3", "GameButton4", "GameButton5", "GameButton6", "GameButton7", "GameButton8", "GameButton9", "GameButtonA", "GameButtonB", "GameButtonC", "GameButtonLeft1", "GameButtonLeft2", "GameButtonMode", "GameButtonRight1", "GameButtonRight2", "GameButtonSelect", "GameButtonStart", "GameButtonThumbLeft", "GameButtonThumbRight", "GameButtonX", "GameButtonY", "GameButtonZ", "Help", "Home", "Hyper", "Info", "Insert", "IntlBackslash", "IntlRo", "IntlYen", "KanaMode", "KbdIllumDown", "KbdIllumUp", "KeyA", "KeyB", "KeyC", "KeyD", "KeyE", "KeyF", "KeyG", "KeyH", "KeyI", "KeyJ", "KeyK", "KeyL", "KeyM", "KeyN", "KeyO", "KeyP", "KeyQ", "KeyR", "KeyS", "KeyT", "KeyU", "KeyV", "KeyW", "KeyX", "KeyY", "KeyZ", "KeyboardLayoutSelect", "Lang1", "Lang2", "Lang3", "Lang4", "Lang5", "LaunchApp1", "LaunchApp2", "LaunchAssistant", "LaunchAudioBrowser", "LaunchCalendar", "LaunchContacts", "LaunchControlPanel", "LaunchDocuments", "LaunchInternetBrowser", "LaunchKeyboardLayout", "LaunchMail", "LaunchPhone", "LaunchScreenSaver", "LaunchSpreadsheet", "LaunchWordProcessor", "LockScreen", "LogOff", "MailForward", "MailReply", "MailSend", "MediaFastForward", "MediaLast", "MediaPause", "MediaPlay", "MediaPlayPause", "MediaRecord", "MediaRewind", "MediaSelect", "MediaStop", "MediaTrackNext", "MediaTrackPrevious", "MetaLeft", "MetaRight", "MicrophoneMuteToggle", "Minus", "New", "NonConvert", "NumLock", "Numpad0", "Numpad1", "Numpad2", "Numpad3", "Numpad4", "Numpad5", "Numpad6", "Numpad7", "Numpad8", "Numpad9", "NumpadAdd", "NumpadBackspace", "NumpadClear", "NumpadClearEntry", "NumpadComma", "NumpadDecimal", "NumpadDivide", "NumpadEnter", "NumpadEqual", "NumpadMemoryAdd", "NumpadMemoryClear", "NumpadMemoryRecall", "NumpadMemoryStore", "NumpadMemorySubtract", "NumpadMultiply", "NumpadParenLeft", "NumpadParenRight", "NumpadSignChange", "NumpadSubtract", "Open", "PageDown", "PageUp", "Paste", "Pause", "Period", "Power", "Print", "PrintScreen", "PrivacyScreenToggle", "ProgramGuide", "Props", "Quote", "Redo", "Resume", "Save", "ScrollLock", "Select", "SelectTask", "Semicolon", "ShiftLeft", "ShiftRight", "ShowAllWindows", "Slash", "Sleep", "Space", "SpeechInputToggle", "SpellCheck", "Super", "Suspend", "Tab", "Turbo", "Undo", "UsbErrorRollOver", "UsbErrorUndefined", "UsbPostFail", "UsbReserved", "WakeUp", "ZoomIn", "ZoomOut", "ZoomToggle"]), type$.JSArray_legacy_String); B.PhysicalKeyboardKey_458907 = new A.PhysicalKeyboardKey(458907); B.PhysicalKeyboardKey_458873 = new A.PhysicalKeyboardKey(458873); B.PhysicalKeyboardKey_458978 = new A.PhysicalKeyboardKey(458978); B.PhysicalKeyboardKey_458982 = new A.PhysicalKeyboardKey(458982); B.PhysicalKeyboardKey_458833 = new A.PhysicalKeyboardKey(458833); B.PhysicalKeyboardKey_458832 = new A.PhysicalKeyboardKey(458832); B.PhysicalKeyboardKey_458831 = new A.PhysicalKeyboardKey(458831); B.PhysicalKeyboardKey_458834 = new A.PhysicalKeyboardKey(458834); B.PhysicalKeyboardKey_458881 = new A.PhysicalKeyboardKey(458881); B.PhysicalKeyboardKey_458879 = new A.PhysicalKeyboardKey(458879); B.PhysicalKeyboardKey_458880 = new A.PhysicalKeyboardKey(458880); B.PhysicalKeyboardKey_458805 = new A.PhysicalKeyboardKey(458805); B.PhysicalKeyboardKey_458801 = new A.PhysicalKeyboardKey(458801); B.PhysicalKeyboardKey_458794 = new A.PhysicalKeyboardKey(458794); B.PhysicalKeyboardKey_786661 = new A.PhysicalKeyboardKey(786661); B.PhysicalKeyboardKey_458799 = new A.PhysicalKeyboardKey(458799); B.PhysicalKeyboardKey_458800 = new A.PhysicalKeyboardKey(458800); B.PhysicalKeyboardKey_786549 = new A.PhysicalKeyboardKey(786549); B.PhysicalKeyboardKey_786544 = new A.PhysicalKeyboardKey(786544); B.PhysicalKeyboardKey_786548 = new A.PhysicalKeyboardKey(786548); B.PhysicalKeyboardKey_786547 = new A.PhysicalKeyboardKey(786547); B.PhysicalKeyboardKey_786546 = new A.PhysicalKeyboardKey(786546); B.PhysicalKeyboardKey_786543 = new A.PhysicalKeyboardKey(786543); B.PhysicalKeyboardKey_786980 = new A.PhysicalKeyboardKey(786980); B.PhysicalKeyboardKey_786986 = new A.PhysicalKeyboardKey(786986); B.PhysicalKeyboardKey_786981 = new A.PhysicalKeyboardKey(786981); B.PhysicalKeyboardKey_786979 = new A.PhysicalKeyboardKey(786979); B.PhysicalKeyboardKey_786983 = new A.PhysicalKeyboardKey(786983); B.PhysicalKeyboardKey_786977 = new A.PhysicalKeyboardKey(786977); B.PhysicalKeyboardKey_786982 = new A.PhysicalKeyboardKey(786982); B.PhysicalKeyboardKey_458809 = new A.PhysicalKeyboardKey(458809); B.PhysicalKeyboardKey_786589 = new A.PhysicalKeyboardKey(786589); B.PhysicalKeyboardKey_786588 = new A.PhysicalKeyboardKey(786588); B.PhysicalKeyboardKey_786947 = new A.PhysicalKeyboardKey(786947); B.PhysicalKeyboardKey_786529 = new A.PhysicalKeyboardKey(786529); B.PhysicalKeyboardKey_458806 = new A.PhysicalKeyboardKey(458806); B.PhysicalKeyboardKey_458853 = new A.PhysicalKeyboardKey(458853); B.PhysicalKeyboardKey_458976 = new A.PhysicalKeyboardKey(458976); B.PhysicalKeyboardKey_458980 = new A.PhysicalKeyboardKey(458980); B.PhysicalKeyboardKey_458890 = new A.PhysicalKeyboardKey(458890); B.PhysicalKeyboardKey_458876 = new A.PhysicalKeyboardKey(458876); B.PhysicalKeyboardKey_458875 = new A.PhysicalKeyboardKey(458875); B.PhysicalKeyboardKey_458828 = new A.PhysicalKeyboardKey(458828); B.PhysicalKeyboardKey_458791 = new A.PhysicalKeyboardKey(458791); B.PhysicalKeyboardKey_458782 = new A.PhysicalKeyboardKey(458782); B.PhysicalKeyboardKey_458783 = new A.PhysicalKeyboardKey(458783); B.PhysicalKeyboardKey_458784 = new A.PhysicalKeyboardKey(458784); B.PhysicalKeyboardKey_458785 = new A.PhysicalKeyboardKey(458785); B.PhysicalKeyboardKey_458786 = new A.PhysicalKeyboardKey(458786); B.PhysicalKeyboardKey_458787 = new A.PhysicalKeyboardKey(458787); B.PhysicalKeyboardKey_458788 = new A.PhysicalKeyboardKey(458788); B.PhysicalKeyboardKey_458789 = new A.PhysicalKeyboardKey(458789); B.PhysicalKeyboardKey_458790 = new A.PhysicalKeyboardKey(458790); B.PhysicalKeyboardKey_65717 = new A.PhysicalKeyboardKey(65717); B.PhysicalKeyboardKey_786616 = new A.PhysicalKeyboardKey(786616); B.PhysicalKeyboardKey_458829 = new A.PhysicalKeyboardKey(458829); B.PhysicalKeyboardKey_458792 = new A.PhysicalKeyboardKey(458792); B.PhysicalKeyboardKey_458798 = new A.PhysicalKeyboardKey(458798); B.PhysicalKeyboardKey_458793 = new A.PhysicalKeyboardKey(458793); B.PhysicalKeyboardKey_786580 = new A.PhysicalKeyboardKey(786580); B.PhysicalKeyboardKey_458810 = new A.PhysicalKeyboardKey(458810); B.PhysicalKeyboardKey_458819 = new A.PhysicalKeyboardKey(458819); B.PhysicalKeyboardKey_458820 = new A.PhysicalKeyboardKey(458820); B.PhysicalKeyboardKey_458821 = new A.PhysicalKeyboardKey(458821); B.PhysicalKeyboardKey_458856 = new A.PhysicalKeyboardKey(458856); B.PhysicalKeyboardKey_458857 = new A.PhysicalKeyboardKey(458857); B.PhysicalKeyboardKey_458858 = new A.PhysicalKeyboardKey(458858); B.PhysicalKeyboardKey_458859 = new A.PhysicalKeyboardKey(458859); B.PhysicalKeyboardKey_458860 = new A.PhysicalKeyboardKey(458860); B.PhysicalKeyboardKey_458861 = new A.PhysicalKeyboardKey(458861); B.PhysicalKeyboardKey_458862 = new A.PhysicalKeyboardKey(458862); B.PhysicalKeyboardKey_458811 = new A.PhysicalKeyboardKey(458811); B.PhysicalKeyboardKey_458863 = new A.PhysicalKeyboardKey(458863); B.PhysicalKeyboardKey_458864 = new A.PhysicalKeyboardKey(458864); B.PhysicalKeyboardKey_458865 = new A.PhysicalKeyboardKey(458865); B.PhysicalKeyboardKey_458866 = new A.PhysicalKeyboardKey(458866); B.PhysicalKeyboardKey_458867 = new A.PhysicalKeyboardKey(458867); B.PhysicalKeyboardKey_458812 = new A.PhysicalKeyboardKey(458812); B.PhysicalKeyboardKey_458813 = new A.PhysicalKeyboardKey(458813); B.PhysicalKeyboardKey_458814 = new A.PhysicalKeyboardKey(458814); B.PhysicalKeyboardKey_458815 = new A.PhysicalKeyboardKey(458815); B.PhysicalKeyboardKey_458816 = new A.PhysicalKeyboardKey(458816); B.PhysicalKeyboardKey_458817 = new A.PhysicalKeyboardKey(458817); B.PhysicalKeyboardKey_458818 = new A.PhysicalKeyboardKey(458818); B.PhysicalKeyboardKey_458878 = new A.PhysicalKeyboardKey(458878); B.PhysicalKeyboardKey_18 = new A.PhysicalKeyboardKey(18); B.PhysicalKeyboardKey_19 = new A.PhysicalKeyboardKey(19); B.PhysicalKeyboardKey_392961 = new A.PhysicalKeyboardKey(392961); B.PhysicalKeyboardKey_392970 = new A.PhysicalKeyboardKey(392970); B.PhysicalKeyboardKey_392971 = new A.PhysicalKeyboardKey(392971); B.PhysicalKeyboardKey_392972 = new A.PhysicalKeyboardKey(392972); B.PhysicalKeyboardKey_392973 = new A.PhysicalKeyboardKey(392973); B.PhysicalKeyboardKey_392974 = new A.PhysicalKeyboardKey(392974); B.PhysicalKeyboardKey_392975 = new A.PhysicalKeyboardKey(392975); B.PhysicalKeyboardKey_392976 = new A.PhysicalKeyboardKey(392976); B.PhysicalKeyboardKey_392962 = new A.PhysicalKeyboardKey(392962); B.PhysicalKeyboardKey_392963 = new A.PhysicalKeyboardKey(392963); B.PhysicalKeyboardKey_392964 = new A.PhysicalKeyboardKey(392964); B.PhysicalKeyboardKey_392965 = new A.PhysicalKeyboardKey(392965); B.PhysicalKeyboardKey_392966 = new A.PhysicalKeyboardKey(392966); B.PhysicalKeyboardKey_392967 = new A.PhysicalKeyboardKey(392967); B.PhysicalKeyboardKey_392968 = new A.PhysicalKeyboardKey(392968); B.PhysicalKeyboardKey_392969 = new A.PhysicalKeyboardKey(392969); B.PhysicalKeyboardKey_392977 = new A.PhysicalKeyboardKey(392977); B.PhysicalKeyboardKey_392978 = new A.PhysicalKeyboardKey(392978); B.PhysicalKeyboardKey_392979 = new A.PhysicalKeyboardKey(392979); B.PhysicalKeyboardKey_392980 = new A.PhysicalKeyboardKey(392980); B.PhysicalKeyboardKey_392981 = new A.PhysicalKeyboardKey(392981); B.PhysicalKeyboardKey_392982 = new A.PhysicalKeyboardKey(392982); B.PhysicalKeyboardKey_392983 = new A.PhysicalKeyboardKey(392983); B.PhysicalKeyboardKey_392984 = new A.PhysicalKeyboardKey(392984); B.PhysicalKeyboardKey_392985 = new A.PhysicalKeyboardKey(392985); B.PhysicalKeyboardKey_392986 = new A.PhysicalKeyboardKey(392986); B.PhysicalKeyboardKey_392987 = new A.PhysicalKeyboardKey(392987); B.PhysicalKeyboardKey_392988 = new A.PhysicalKeyboardKey(392988); B.PhysicalKeyboardKey_392989 = new A.PhysicalKeyboardKey(392989); B.PhysicalKeyboardKey_392990 = new A.PhysicalKeyboardKey(392990); B.PhysicalKeyboardKey_392991 = new A.PhysicalKeyboardKey(392991); B.PhysicalKeyboardKey_458869 = new A.PhysicalKeyboardKey(458869); B.PhysicalKeyboardKey_458826 = new A.PhysicalKeyboardKey(458826); B.PhysicalKeyboardKey_16 = new A.PhysicalKeyboardKey(16); B.PhysicalKeyboardKey_786528 = new A.PhysicalKeyboardKey(786528); B.PhysicalKeyboardKey_458825 = new A.PhysicalKeyboardKey(458825); B.PhysicalKeyboardKey_458852 = new A.PhysicalKeyboardKey(458852); B.PhysicalKeyboardKey_458887 = new A.PhysicalKeyboardKey(458887); B.PhysicalKeyboardKey_458889 = new A.PhysicalKeyboardKey(458889); B.PhysicalKeyboardKey_458888 = new A.PhysicalKeyboardKey(458888); B.PhysicalKeyboardKey_786554 = new A.PhysicalKeyboardKey(786554); B.PhysicalKeyboardKey_786553 = new A.PhysicalKeyboardKey(786553); B.PhysicalKeyboardKey_458756 = new A.PhysicalKeyboardKey(458756); B.PhysicalKeyboardKey_458757 = new A.PhysicalKeyboardKey(458757); B.PhysicalKeyboardKey_458758 = new A.PhysicalKeyboardKey(458758); B.PhysicalKeyboardKey_458759 = new A.PhysicalKeyboardKey(458759); B.PhysicalKeyboardKey_458760 = new A.PhysicalKeyboardKey(458760); B.PhysicalKeyboardKey_458761 = new A.PhysicalKeyboardKey(458761); B.PhysicalKeyboardKey_458762 = new A.PhysicalKeyboardKey(458762); B.PhysicalKeyboardKey_458763 = new A.PhysicalKeyboardKey(458763); B.PhysicalKeyboardKey_458764 = new A.PhysicalKeyboardKey(458764); B.PhysicalKeyboardKey_458765 = new A.PhysicalKeyboardKey(458765); B.PhysicalKeyboardKey_458766 = new A.PhysicalKeyboardKey(458766); B.PhysicalKeyboardKey_458767 = new A.PhysicalKeyboardKey(458767); B.PhysicalKeyboardKey_458768 = new A.PhysicalKeyboardKey(458768); B.PhysicalKeyboardKey_458769 = new A.PhysicalKeyboardKey(458769); B.PhysicalKeyboardKey_458770 = new A.PhysicalKeyboardKey(458770); B.PhysicalKeyboardKey_458771 = new A.PhysicalKeyboardKey(458771); B.PhysicalKeyboardKey_458772 = new A.PhysicalKeyboardKey(458772); B.PhysicalKeyboardKey_458773 = new A.PhysicalKeyboardKey(458773); B.PhysicalKeyboardKey_458774 = new A.PhysicalKeyboardKey(458774); B.PhysicalKeyboardKey_458775 = new A.PhysicalKeyboardKey(458775); B.PhysicalKeyboardKey_458776 = new A.PhysicalKeyboardKey(458776); B.PhysicalKeyboardKey_458777 = new A.PhysicalKeyboardKey(458777); B.PhysicalKeyboardKey_458778 = new A.PhysicalKeyboardKey(458778); B.PhysicalKeyboardKey_458779 = new A.PhysicalKeyboardKey(458779); B.PhysicalKeyboardKey_458780 = new A.PhysicalKeyboardKey(458780); B.PhysicalKeyboardKey_458781 = new A.PhysicalKeyboardKey(458781); B.PhysicalKeyboardKey_787101 = new A.PhysicalKeyboardKey(787101); B.PhysicalKeyboardKey_458896 = new A.PhysicalKeyboardKey(458896); B.PhysicalKeyboardKey_458897 = new A.PhysicalKeyboardKey(458897); B.PhysicalKeyboardKey_458898 = new A.PhysicalKeyboardKey(458898); B.PhysicalKeyboardKey_458899 = new A.PhysicalKeyboardKey(458899); B.PhysicalKeyboardKey_458900 = new A.PhysicalKeyboardKey(458900); B.PhysicalKeyboardKey_786836 = new A.PhysicalKeyboardKey(786836); B.PhysicalKeyboardKey_786834 = new A.PhysicalKeyboardKey(786834); B.PhysicalKeyboardKey_786891 = new A.PhysicalKeyboardKey(786891); B.PhysicalKeyboardKey_786871 = new A.PhysicalKeyboardKey(786871); B.PhysicalKeyboardKey_786830 = new A.PhysicalKeyboardKey(786830); B.PhysicalKeyboardKey_786829 = new A.PhysicalKeyboardKey(786829); B.PhysicalKeyboardKey_786847 = new A.PhysicalKeyboardKey(786847); B.PhysicalKeyboardKey_786855 = new A.PhysicalKeyboardKey(786855); B.PhysicalKeyboardKey_786838 = new A.PhysicalKeyboardKey(786838); B.PhysicalKeyboardKey_786862 = new A.PhysicalKeyboardKey(786862); B.PhysicalKeyboardKey_786826 = new A.PhysicalKeyboardKey(786826); B.PhysicalKeyboardKey_786572 = new A.PhysicalKeyboardKey(786572); B.PhysicalKeyboardKey_786865 = new A.PhysicalKeyboardKey(786865); B.PhysicalKeyboardKey_786822 = new A.PhysicalKeyboardKey(786822); B.PhysicalKeyboardKey_786820 = new A.PhysicalKeyboardKey(786820); B.PhysicalKeyboardKey_786846 = new A.PhysicalKeyboardKey(786846); B.PhysicalKeyboardKey_786844 = new A.PhysicalKeyboardKey(786844); B.PhysicalKeyboardKey_787083 = new A.PhysicalKeyboardKey(787083); B.PhysicalKeyboardKey_787081 = new A.PhysicalKeyboardKey(787081); B.PhysicalKeyboardKey_787084 = new A.PhysicalKeyboardKey(787084); B.PhysicalKeyboardKey_786611 = new A.PhysicalKeyboardKey(786611); B.PhysicalKeyboardKey_786563 = new A.PhysicalKeyboardKey(786563); B.PhysicalKeyboardKey_786609 = new A.PhysicalKeyboardKey(786609); B.PhysicalKeyboardKey_786608 = new A.PhysicalKeyboardKey(786608); B.PhysicalKeyboardKey_786637 = new A.PhysicalKeyboardKey(786637); B.PhysicalKeyboardKey_786610 = new A.PhysicalKeyboardKey(786610); B.PhysicalKeyboardKey_786612 = new A.PhysicalKeyboardKey(786612); B.PhysicalKeyboardKey_786819 = new A.PhysicalKeyboardKey(786819); B.PhysicalKeyboardKey_786615 = new A.PhysicalKeyboardKey(786615); B.PhysicalKeyboardKey_786613 = new A.PhysicalKeyboardKey(786613); B.PhysicalKeyboardKey_786614 = new A.PhysicalKeyboardKey(786614); B.PhysicalKeyboardKey_458979 = new A.PhysicalKeyboardKey(458979); B.PhysicalKeyboardKey_458983 = new A.PhysicalKeyboardKey(458983); B.PhysicalKeyboardKey_24 = new A.PhysicalKeyboardKey(24); B.PhysicalKeyboardKey_458797 = new A.PhysicalKeyboardKey(458797); B.PhysicalKeyboardKey_786945 = new A.PhysicalKeyboardKey(786945); B.PhysicalKeyboardKey_458891 = new A.PhysicalKeyboardKey(458891); B.PhysicalKeyboardKey_458835 = new A.PhysicalKeyboardKey(458835); B.PhysicalKeyboardKey_458850 = new A.PhysicalKeyboardKey(458850); B.PhysicalKeyboardKey_458841 = new A.PhysicalKeyboardKey(458841); B.PhysicalKeyboardKey_458842 = new A.PhysicalKeyboardKey(458842); B.PhysicalKeyboardKey_458843 = new A.PhysicalKeyboardKey(458843); B.PhysicalKeyboardKey_458844 = new A.PhysicalKeyboardKey(458844); B.PhysicalKeyboardKey_458845 = new A.PhysicalKeyboardKey(458845); B.PhysicalKeyboardKey_458846 = new A.PhysicalKeyboardKey(458846); B.PhysicalKeyboardKey_458847 = new A.PhysicalKeyboardKey(458847); B.PhysicalKeyboardKey_458848 = new A.PhysicalKeyboardKey(458848); B.PhysicalKeyboardKey_458849 = new A.PhysicalKeyboardKey(458849); B.PhysicalKeyboardKey_458839 = new A.PhysicalKeyboardKey(458839); B.PhysicalKeyboardKey_458939 = new A.PhysicalKeyboardKey(458939); B.PhysicalKeyboardKey_458968 = new A.PhysicalKeyboardKey(458968); B.PhysicalKeyboardKey_458969 = new A.PhysicalKeyboardKey(458969); B.PhysicalKeyboardKey_458885 = new A.PhysicalKeyboardKey(458885); B.PhysicalKeyboardKey_458851 = new A.PhysicalKeyboardKey(458851); B.PhysicalKeyboardKey_458836 = new A.PhysicalKeyboardKey(458836); B.PhysicalKeyboardKey_458840 = new A.PhysicalKeyboardKey(458840); B.PhysicalKeyboardKey_458855 = new A.PhysicalKeyboardKey(458855); B.PhysicalKeyboardKey_458963 = new A.PhysicalKeyboardKey(458963); B.PhysicalKeyboardKey_458962 = new A.PhysicalKeyboardKey(458962); B.PhysicalKeyboardKey_458961 = new A.PhysicalKeyboardKey(458961); B.PhysicalKeyboardKey_458960 = new A.PhysicalKeyboardKey(458960); B.PhysicalKeyboardKey_458964 = new A.PhysicalKeyboardKey(458964); B.PhysicalKeyboardKey_458837 = new A.PhysicalKeyboardKey(458837); B.PhysicalKeyboardKey_458934 = new A.PhysicalKeyboardKey(458934); B.PhysicalKeyboardKey_458935 = new A.PhysicalKeyboardKey(458935); B.PhysicalKeyboardKey_458967 = new A.PhysicalKeyboardKey(458967); B.PhysicalKeyboardKey_458838 = new A.PhysicalKeyboardKey(458838); B.PhysicalKeyboardKey_458868 = new A.PhysicalKeyboardKey(458868); B.PhysicalKeyboardKey_458830 = new A.PhysicalKeyboardKey(458830); B.PhysicalKeyboardKey_458827 = new A.PhysicalKeyboardKey(458827); B.PhysicalKeyboardKey_458877 = new A.PhysicalKeyboardKey(458877); B.PhysicalKeyboardKey_458824 = new A.PhysicalKeyboardKey(458824); B.PhysicalKeyboardKey_458807 = new A.PhysicalKeyboardKey(458807); B.PhysicalKeyboardKey_458854 = new A.PhysicalKeyboardKey(458854); B.PhysicalKeyboardKey_786952 = new A.PhysicalKeyboardKey(786952); B.PhysicalKeyboardKey_458822 = new A.PhysicalKeyboardKey(458822); B.PhysicalKeyboardKey_23 = new A.PhysicalKeyboardKey(23); B.PhysicalKeyboardKey_786573 = new A.PhysicalKeyboardKey(786573); B.PhysicalKeyboardKey_458915 = new A.PhysicalKeyboardKey(458915); B.PhysicalKeyboardKey_458804 = new A.PhysicalKeyboardKey(458804); B.PhysicalKeyboardKey_787065 = new A.PhysicalKeyboardKey(787065); B.PhysicalKeyboardKey_21 = new A.PhysicalKeyboardKey(21); B.PhysicalKeyboardKey_786951 = new A.PhysicalKeyboardKey(786951); B.PhysicalKeyboardKey_458823 = new A.PhysicalKeyboardKey(458823); B.PhysicalKeyboardKey_458871 = new A.PhysicalKeyboardKey(458871); B.PhysicalKeyboardKey_786850 = new A.PhysicalKeyboardKey(786850); B.PhysicalKeyboardKey_458803 = new A.PhysicalKeyboardKey(458803); B.PhysicalKeyboardKey_458977 = new A.PhysicalKeyboardKey(458977); B.PhysicalKeyboardKey_458981 = new A.PhysicalKeyboardKey(458981); B.PhysicalKeyboardKey_787103 = new A.PhysicalKeyboardKey(787103); B.PhysicalKeyboardKey_458808 = new A.PhysicalKeyboardKey(458808); B.PhysicalKeyboardKey_65666 = new A.PhysicalKeyboardKey(65666); B.PhysicalKeyboardKey_458796 = new A.PhysicalKeyboardKey(458796); B.PhysicalKeyboardKey_786639 = new A.PhysicalKeyboardKey(786639); B.PhysicalKeyboardKey_786859 = new A.PhysicalKeyboardKey(786859); B.PhysicalKeyboardKey_17 = new A.PhysicalKeyboardKey(17); B.PhysicalKeyboardKey_20 = new A.PhysicalKeyboardKey(20); B.PhysicalKeyboardKey_458795 = new A.PhysicalKeyboardKey(458795); B.PhysicalKeyboardKey_22 = new A.PhysicalKeyboardKey(22); B.PhysicalKeyboardKey_458874 = new A.PhysicalKeyboardKey(458874); B.PhysicalKeyboardKey_458753 = new A.PhysicalKeyboardKey(458753); B.PhysicalKeyboardKey_458755 = new A.PhysicalKeyboardKey(458755); B.PhysicalKeyboardKey_458754 = new A.PhysicalKeyboardKey(458754); B.PhysicalKeyboardKey_458752 = new A.PhysicalKeyboardKey(458752); B.PhysicalKeyboardKey_65667 = new A.PhysicalKeyboardKey(65667); B.PhysicalKeyboardKey_786989 = new A.PhysicalKeyboardKey(786989); B.PhysicalKeyboardKey_786990 = new A.PhysicalKeyboardKey(786990); B.PhysicalKeyboardKey_786994 = new A.PhysicalKeyboardKey(786994); B.Map_1k5Ax = new A.ConstantStringMap(269, {Abort: B.PhysicalKeyboardKey_458907, Again: B.PhysicalKeyboardKey_458873, AltLeft: B.PhysicalKeyboardKey_458978, AltRight: B.PhysicalKeyboardKey_458982, ArrowDown: B.PhysicalKeyboardKey_458833, ArrowLeft: B.PhysicalKeyboardKey_458832, ArrowRight: B.PhysicalKeyboardKey_458831, ArrowUp: B.PhysicalKeyboardKey_458834, AudioVolumeDown: B.PhysicalKeyboardKey_458881, AudioVolumeMute: B.PhysicalKeyboardKey_458879, AudioVolumeUp: B.PhysicalKeyboardKey_458880, Backquote: B.PhysicalKeyboardKey_458805, Backslash: B.PhysicalKeyboardKey_458801, Backspace: B.PhysicalKeyboardKey_458794, BassBoost: B.PhysicalKeyboardKey_786661, BracketLeft: B.PhysicalKeyboardKey_458799, BracketRight: B.PhysicalKeyboardKey_458800, BrightnessAuto: B.PhysicalKeyboardKey_786549, BrightnessDown: B.PhysicalKeyboardKey_786544, BrightnessMaximum: B.PhysicalKeyboardKey_786548, BrightnessMinimum: B.PhysicalKeyboardKey_786547, BrightnessToggle: B.PhysicalKeyboardKey_786546, BrightnessUp: B.PhysicalKeyboardKey_786543, BrowserBack: B.PhysicalKeyboardKey_786980, BrowserFavorites: B.PhysicalKeyboardKey_786986, BrowserForward: B.PhysicalKeyboardKey_786981, BrowserHome: B.PhysicalKeyboardKey_786979, BrowserRefresh: B.PhysicalKeyboardKey_786983, BrowserSearch: B.PhysicalKeyboardKey_786977, BrowserStop: B.PhysicalKeyboardKey_786982, CapsLock: B.PhysicalKeyboardKey_458809, ChannelDown: B.PhysicalKeyboardKey_786589, ChannelUp: B.PhysicalKeyboardKey_786588, Close: B.PhysicalKeyboardKey_786947, ClosedCaptionToggle: B.PhysicalKeyboardKey_786529, Comma: B.PhysicalKeyboardKey_458806, ContextMenu: B.PhysicalKeyboardKey_458853, ControlLeft: B.PhysicalKeyboardKey_458976, ControlRight: B.PhysicalKeyboardKey_458980, Convert: B.PhysicalKeyboardKey_458890, Copy: B.PhysicalKeyboardKey_458876, Cut: B.PhysicalKeyboardKey_458875, Delete: B.PhysicalKeyboardKey_458828, Digit0: B.PhysicalKeyboardKey_458791, Digit1: B.PhysicalKeyboardKey_458782, Digit2: B.PhysicalKeyboardKey_458783, Digit3: B.PhysicalKeyboardKey_458784, Digit4: B.PhysicalKeyboardKey_458785, Digit5: B.PhysicalKeyboardKey_458786, Digit6: B.PhysicalKeyboardKey_458787, Digit7: B.PhysicalKeyboardKey_458788, Digit8: B.PhysicalKeyboardKey_458789, Digit9: B.PhysicalKeyboardKey_458790, DisplayToggleIntExt: B.PhysicalKeyboardKey_65717, Eject: B.PhysicalKeyboardKey_786616, End: B.PhysicalKeyboardKey_458829, Enter: B.PhysicalKeyboardKey_458792, Equal: B.PhysicalKeyboardKey_458798, Escape: B.PhysicalKeyboardKey_458793, Exit: B.PhysicalKeyboardKey_786580, F1: B.PhysicalKeyboardKey_458810, F10: B.PhysicalKeyboardKey_458819, F11: B.PhysicalKeyboardKey_458820, F12: B.PhysicalKeyboardKey_458821, F13: B.PhysicalKeyboardKey_458856, F14: B.PhysicalKeyboardKey_458857, F15: B.PhysicalKeyboardKey_458858, F16: B.PhysicalKeyboardKey_458859, F17: B.PhysicalKeyboardKey_458860, F18: B.PhysicalKeyboardKey_458861, F19: B.PhysicalKeyboardKey_458862, F2: B.PhysicalKeyboardKey_458811, F20: B.PhysicalKeyboardKey_458863, F21: B.PhysicalKeyboardKey_458864, F22: B.PhysicalKeyboardKey_458865, F23: B.PhysicalKeyboardKey_458866, F24: B.PhysicalKeyboardKey_458867, F3: B.PhysicalKeyboardKey_458812, F4: B.PhysicalKeyboardKey_458813, F5: B.PhysicalKeyboardKey_458814, F6: B.PhysicalKeyboardKey_458815, F7: B.PhysicalKeyboardKey_458816, F8: B.PhysicalKeyboardKey_458817, F9: B.PhysicalKeyboardKey_458818, Find: B.PhysicalKeyboardKey_458878, Fn: B.PhysicalKeyboardKey_18, FnLock: B.PhysicalKeyboardKey_19, GameButton1: B.PhysicalKeyboardKey_392961, GameButton10: B.PhysicalKeyboardKey_392970, GameButton11: B.PhysicalKeyboardKey_392971, GameButton12: B.PhysicalKeyboardKey_392972, GameButton13: B.PhysicalKeyboardKey_392973, GameButton14: B.PhysicalKeyboardKey_392974, GameButton15: B.PhysicalKeyboardKey_392975, GameButton16: B.PhysicalKeyboardKey_392976, GameButton2: B.PhysicalKeyboardKey_392962, GameButton3: B.PhysicalKeyboardKey_392963, GameButton4: B.PhysicalKeyboardKey_392964, GameButton5: B.PhysicalKeyboardKey_392965, GameButton6: B.PhysicalKeyboardKey_392966, GameButton7: B.PhysicalKeyboardKey_392967, GameButton8: B.PhysicalKeyboardKey_392968, GameButton9: B.PhysicalKeyboardKey_392969, GameButtonA: B.PhysicalKeyboardKey_392977, GameButtonB: B.PhysicalKeyboardKey_392978, GameButtonC: B.PhysicalKeyboardKey_392979, GameButtonLeft1: B.PhysicalKeyboardKey_392980, GameButtonLeft2: B.PhysicalKeyboardKey_392981, GameButtonMode: B.PhysicalKeyboardKey_392982, GameButtonRight1: B.PhysicalKeyboardKey_392983, GameButtonRight2: B.PhysicalKeyboardKey_392984, GameButtonSelect: B.PhysicalKeyboardKey_392985, GameButtonStart: B.PhysicalKeyboardKey_392986, GameButtonThumbLeft: B.PhysicalKeyboardKey_392987, GameButtonThumbRight: B.PhysicalKeyboardKey_392988, GameButtonX: B.PhysicalKeyboardKey_392989, GameButtonY: B.PhysicalKeyboardKey_392990, GameButtonZ: B.PhysicalKeyboardKey_392991, Help: B.PhysicalKeyboardKey_458869, Home: B.PhysicalKeyboardKey_458826, Hyper: B.PhysicalKeyboardKey_16, Info: B.PhysicalKeyboardKey_786528, Insert: B.PhysicalKeyboardKey_458825, IntlBackslash: B.PhysicalKeyboardKey_458852, IntlRo: B.PhysicalKeyboardKey_458887, IntlYen: B.PhysicalKeyboardKey_458889, KanaMode: B.PhysicalKeyboardKey_458888, KbdIllumDown: B.PhysicalKeyboardKey_786554, KbdIllumUp: B.PhysicalKeyboardKey_786553, KeyA: B.PhysicalKeyboardKey_458756, KeyB: B.PhysicalKeyboardKey_458757, KeyC: B.PhysicalKeyboardKey_458758, KeyD: B.PhysicalKeyboardKey_458759, KeyE: B.PhysicalKeyboardKey_458760, KeyF: B.PhysicalKeyboardKey_458761, KeyG: B.PhysicalKeyboardKey_458762, KeyH: B.PhysicalKeyboardKey_458763, KeyI: B.PhysicalKeyboardKey_458764, KeyJ: B.PhysicalKeyboardKey_458765, KeyK: B.PhysicalKeyboardKey_458766, KeyL: B.PhysicalKeyboardKey_458767, KeyM: B.PhysicalKeyboardKey_458768, KeyN: B.PhysicalKeyboardKey_458769, KeyO: B.PhysicalKeyboardKey_458770, KeyP: B.PhysicalKeyboardKey_458771, KeyQ: B.PhysicalKeyboardKey_458772, KeyR: B.PhysicalKeyboardKey_458773, KeyS: B.PhysicalKeyboardKey_458774, KeyT: B.PhysicalKeyboardKey_458775, KeyU: B.PhysicalKeyboardKey_458776, KeyV: B.PhysicalKeyboardKey_458777, KeyW: B.PhysicalKeyboardKey_458778, KeyX: B.PhysicalKeyboardKey_458779, KeyY: B.PhysicalKeyboardKey_458780, KeyZ: B.PhysicalKeyboardKey_458781, KeyboardLayoutSelect: B.PhysicalKeyboardKey_787101, Lang1: B.PhysicalKeyboardKey_458896, Lang2: B.PhysicalKeyboardKey_458897, Lang3: B.PhysicalKeyboardKey_458898, Lang4: B.PhysicalKeyboardKey_458899, Lang5: B.PhysicalKeyboardKey_458900, LaunchApp1: B.PhysicalKeyboardKey_786836, LaunchApp2: B.PhysicalKeyboardKey_786834, LaunchAssistant: B.PhysicalKeyboardKey_786891, LaunchAudioBrowser: B.PhysicalKeyboardKey_786871, LaunchCalendar: B.PhysicalKeyboardKey_786830, LaunchContacts: B.PhysicalKeyboardKey_786829, LaunchControlPanel: B.PhysicalKeyboardKey_786847, LaunchDocuments: B.PhysicalKeyboardKey_786855, LaunchInternetBrowser: B.PhysicalKeyboardKey_786838, LaunchKeyboardLayout: B.PhysicalKeyboardKey_786862, LaunchMail: B.PhysicalKeyboardKey_786826, LaunchPhone: B.PhysicalKeyboardKey_786572, LaunchScreenSaver: B.PhysicalKeyboardKey_786865, LaunchSpreadsheet: B.PhysicalKeyboardKey_786822, LaunchWordProcessor: B.PhysicalKeyboardKey_786820, LockScreen: B.PhysicalKeyboardKey_786846, LogOff: B.PhysicalKeyboardKey_786844, MailForward: B.PhysicalKeyboardKey_787083, MailReply: B.PhysicalKeyboardKey_787081, MailSend: B.PhysicalKeyboardKey_787084, MediaFastForward: B.PhysicalKeyboardKey_786611, MediaLast: B.PhysicalKeyboardKey_786563, MediaPause: B.PhysicalKeyboardKey_786609, MediaPlay: B.PhysicalKeyboardKey_786608, MediaPlayPause: B.PhysicalKeyboardKey_786637, MediaRecord: B.PhysicalKeyboardKey_786610, MediaRewind: B.PhysicalKeyboardKey_786612, MediaSelect: B.PhysicalKeyboardKey_786819, MediaStop: B.PhysicalKeyboardKey_786615, MediaTrackNext: B.PhysicalKeyboardKey_786613, MediaTrackPrevious: B.PhysicalKeyboardKey_786614, MetaLeft: B.PhysicalKeyboardKey_458979, MetaRight: B.PhysicalKeyboardKey_458983, MicrophoneMuteToggle: B.PhysicalKeyboardKey_24, Minus: B.PhysicalKeyboardKey_458797, New: B.PhysicalKeyboardKey_786945, NonConvert: B.PhysicalKeyboardKey_458891, NumLock: B.PhysicalKeyboardKey_458835, Numpad0: B.PhysicalKeyboardKey_458850, Numpad1: B.PhysicalKeyboardKey_458841, Numpad2: B.PhysicalKeyboardKey_458842, Numpad3: B.PhysicalKeyboardKey_458843, Numpad4: B.PhysicalKeyboardKey_458844, Numpad5: B.PhysicalKeyboardKey_458845, Numpad6: B.PhysicalKeyboardKey_458846, Numpad7: B.PhysicalKeyboardKey_458847, Numpad8: B.PhysicalKeyboardKey_458848, Numpad9: B.PhysicalKeyboardKey_458849, NumpadAdd: B.PhysicalKeyboardKey_458839, NumpadBackspace: B.PhysicalKeyboardKey_458939, NumpadClear: B.PhysicalKeyboardKey_458968, NumpadClearEntry: B.PhysicalKeyboardKey_458969, NumpadComma: B.PhysicalKeyboardKey_458885, NumpadDecimal: B.PhysicalKeyboardKey_458851, NumpadDivide: B.PhysicalKeyboardKey_458836, NumpadEnter: B.PhysicalKeyboardKey_458840, NumpadEqual: B.PhysicalKeyboardKey_458855, NumpadMemoryAdd: B.PhysicalKeyboardKey_458963, NumpadMemoryClear: B.PhysicalKeyboardKey_458962, NumpadMemoryRecall: B.PhysicalKeyboardKey_458961, NumpadMemoryStore: B.PhysicalKeyboardKey_458960, NumpadMemorySubtract: B.PhysicalKeyboardKey_458964, NumpadMultiply: B.PhysicalKeyboardKey_458837, NumpadParenLeft: B.PhysicalKeyboardKey_458934, NumpadParenRight: B.PhysicalKeyboardKey_458935, NumpadSignChange: B.PhysicalKeyboardKey_458967, NumpadSubtract: B.PhysicalKeyboardKey_458838, Open: B.PhysicalKeyboardKey_458868, PageDown: B.PhysicalKeyboardKey_458830, PageUp: B.PhysicalKeyboardKey_458827, Paste: B.PhysicalKeyboardKey_458877, Pause: B.PhysicalKeyboardKey_458824, Period: B.PhysicalKeyboardKey_458807, Power: B.PhysicalKeyboardKey_458854, Print: B.PhysicalKeyboardKey_786952, PrintScreen: B.PhysicalKeyboardKey_458822, PrivacyScreenToggle: B.PhysicalKeyboardKey_23, ProgramGuide: B.PhysicalKeyboardKey_786573, Props: B.PhysicalKeyboardKey_458915, Quote: B.PhysicalKeyboardKey_458804, Redo: B.PhysicalKeyboardKey_787065, Resume: B.PhysicalKeyboardKey_21, Save: B.PhysicalKeyboardKey_786951, ScrollLock: B.PhysicalKeyboardKey_458823, Select: B.PhysicalKeyboardKey_458871, SelectTask: B.PhysicalKeyboardKey_786850, Semicolon: B.PhysicalKeyboardKey_458803, ShiftLeft: B.PhysicalKeyboardKey_458977, ShiftRight: B.PhysicalKeyboardKey_458981, ShowAllWindows: B.PhysicalKeyboardKey_787103, Slash: B.PhysicalKeyboardKey_458808, Sleep: B.PhysicalKeyboardKey_65666, Space: B.PhysicalKeyboardKey_458796, SpeechInputToggle: B.PhysicalKeyboardKey_786639, SpellCheck: B.PhysicalKeyboardKey_786859, Super: B.PhysicalKeyboardKey_17, Suspend: B.PhysicalKeyboardKey_20, Tab: B.PhysicalKeyboardKey_458795, Turbo: B.PhysicalKeyboardKey_22, Undo: B.PhysicalKeyboardKey_458874, UsbErrorRollOver: B.PhysicalKeyboardKey_458753, UsbErrorUndefined: B.PhysicalKeyboardKey_458755, UsbPostFail: B.PhysicalKeyboardKey_458754, UsbReserved: B.PhysicalKeyboardKey_458752, WakeUp: B.PhysicalKeyboardKey_65667, ZoomIn: B.PhysicalKeyboardKey_786989, ZoomOut: B.PhysicalKeyboardKey_786990, ZoomToggle: B.PhysicalKeyboardKey_786994}, B.List_1kC, A.findType("ConstantStringMap")); B.List_empty29 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_vuL = new A.BoxShadow(-2, B.BlurStyle_0, B.Color_855638016, B.Offset_0_3, 1); B.BoxShadow_oyn4 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_603979776, B.Offset_0_2, 2); B.BoxShadow_oyn5 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_520093696, B.Offset_0_1, 5); B.List_JBE = A._setArrayType(makeConstList([B.BoxShadow_vuL, B.BoxShadow_oyn4, B.BoxShadow_oyn5]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_vuL0 = new A.BoxShadow(-2, B.BlurStyle_0, B.Color_855638016, B.Offset_0_3, 3); B.BoxShadow_oyn6 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_603979776, B.Offset_0_3, 4); B.BoxShadow_oyn7 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_520093696, B.Offset_0_1, 8); B.List_JBE0 = A._setArrayType(makeConstList([B.BoxShadow_vuL0, B.BoxShadow_oyn6, B.BoxShadow_oyn7]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_HZc0 = new A.BoxShadow(-1, B.BlurStyle_0, B.Color_855638016, B.Offset_0_2, 4); B.Offset_0_4 = new A.Offset(0, 4); B.BoxShadow_oyn8 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_603979776, B.Offset_0_4, 5); B.BoxShadow_oyn9 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_520093696, B.Offset_0_1, 10); B.List_UOM0 = A._setArrayType(makeConstList([B.BoxShadow_HZc0, B.BoxShadow_oyn8, B.BoxShadow_oyn9]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_HZc1 = new A.BoxShadow(-1, B.BlurStyle_0, B.Color_855638016, B.Offset_0_3, 5); B.Offset_0_6 = new A.Offset(0, 6); B.BoxShadow_oyn10 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_603979776, B.Offset_0_6, 10); B.BoxShadow_oyn11 = new A.BoxShadow(0, B.BlurStyle_0, B.Color_520093696, B.Offset_0_1, 18); B.List_UOM1 = A._setArrayType(makeConstList([B.BoxShadow_HZc1, B.BoxShadow_oyn10, B.BoxShadow_oyn11]), type$.JSArray_legacy_BoxShadow); B.Offset_0_5 = new A.Offset(0, 5); B.BoxShadow_Jik = new A.BoxShadow(-3, B.BlurStyle_0, B.Color_855638016, B.Offset_0_5, 5); B.Offset_0_8 = new A.Offset(0, 8); B.BoxShadow_oyn12 = new A.BoxShadow(1, B.BlurStyle_0, B.Color_603979776, B.Offset_0_8, 10); B.BoxShadow_oyn13 = new A.BoxShadow(2, B.BlurStyle_0, B.Color_520093696, B.Offset_0_3, 14); B.List_FuN = A._setArrayType(makeConstList([B.BoxShadow_Jik, B.BoxShadow_oyn12, B.BoxShadow_oyn13]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_Jik0 = new A.BoxShadow(-3, B.BlurStyle_0, B.Color_855638016, B.Offset_0_5, 6); B.Offset_0_9 = new A.Offset(0, 9); B.BoxShadow_oyn14 = new A.BoxShadow(1, B.BlurStyle_0, B.Color_603979776, B.Offset_0_9, 12); B.BoxShadow_oyn15 = new A.BoxShadow(2, B.BlurStyle_0, B.Color_520093696, B.Offset_0_3, 16); B.List_FuN0 = A._setArrayType(makeConstList([B.BoxShadow_Jik0, B.BoxShadow_oyn14, B.BoxShadow_oyn15]), type$.JSArray_legacy_BoxShadow); B.Offset_0_7 = new A.Offset(0, 7); B.BoxShadow_2Vk = new A.BoxShadow(-4, B.BlurStyle_0, B.Color_855638016, B.Offset_0_7, 8); B.Offset_0_12 = new A.Offset(0, 12); B.BoxShadow_oyn16 = new A.BoxShadow(2, B.BlurStyle_0, B.Color_603979776, B.Offset_0_12, 17); B.BoxShadow_oyn17 = new A.BoxShadow(4, B.BlurStyle_0, B.Color_520093696, B.Offset_0_5, 22); B.List_hLj = A._setArrayType(makeConstList([B.BoxShadow_2Vk, B.BoxShadow_oyn16, B.BoxShadow_oyn17]), type$.JSArray_legacy_BoxShadow); B.BoxShadow_Drw = new A.BoxShadow(-5, B.BlurStyle_0, B.Color_855638016, B.Offset_0_8, 10); B.Offset_0_16 = new A.Offset(0, 16); B.BoxShadow_oyn18 = new A.BoxShadow(2, B.BlurStyle_0, B.Color_603979776, B.Offset_0_16, 24); B.BoxShadow_oyn19 = new A.BoxShadow(5, B.BlurStyle_0, B.Color_520093696, B.Offset_0_6, 30); B.List_LO4 = A._setArrayType(makeConstList([B.BoxShadow_Drw, B.BoxShadow_oyn18, B.BoxShadow_oyn19]), type$.JSArray_legacy_BoxShadow); B.Offset_0_11 = new A.Offset(0, 11); B.BoxShadow_rVI = new A.BoxShadow(-7, B.BlurStyle_0, B.Color_855638016, B.Offset_0_11, 15); B.Offset_0_24 = new A.Offset(0, 24); B.BoxShadow_oyn20 = new A.BoxShadow(3, B.BlurStyle_0, B.Color_603979776, B.Offset_0_24, 38); B.BoxShadow_oyn21 = new A.BoxShadow(8, B.BlurStyle_0, B.Color_520093696, B.Offset_0_9, 46); B.List_U49 = A._setArrayType(makeConstList([B.BoxShadow_rVI, B.BoxShadow_oyn20, B.BoxShadow_oyn21]), type$.JSArray_legacy_BoxShadow); B.Map_2Vato = new A.GeneralConstantMap([0, B.List_empty29, 1, B.List_UOM, 2, B.List_JBE, 3, B.List_JBE0, 4, B.List_UOM0, 6, B.List_UOM1, 8, B.List_FuN, 9, B.List_FuN0, 12, B.List_hLj, 16, B.List_LO4, 24, B.List_U49], A.findType("GeneralConstantMap*>")); B.List_2zE = A._setArrayType(makeConstList(["af", "am", "ar", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "de_CH", "el", "en", "en_AU", "en_CA", "en_GB", "en_IE", "en_IN", "en_SG", "en_US", "en_ZA", "es", "es_419", "es_MX", "es_US", "et", "eu", "fa", "fi", "fil", "fr", "fr_CA", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "ps", "pt", "pt_PT", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sr_Latn", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zh_HK", "zh_TW", "zu"]), type$.JSArray_legacy_String); B.List_5tX = A._setArrayType(makeConstList(["NAME", "ERAS", "ERANAMES", "NARROWMONTHS", "STANDALONENARROWMONTHS", "MONTHS", "STANDALONEMONTHS", "SHORTMONTHS", "STANDALONESHORTMONTHS", "WEEKDAYS", "STANDALONEWEEKDAYS", "SHORTWEEKDAYS", "STANDALONESHORTWEEKDAYS", "NARROWWEEKDAYS", "STANDALONENARROWWEEKDAYS", "SHORTQUARTERS", "QUARTERS", "AMPMS", "DATEFORMATS", "TIMEFORMATS", "AVAILABLEFORMATS", "FIRSTDAYOFWEEK", "WEEKENDRANGE", "FIRSTWEEKCUTOFFDAY", "DATETIMEFORMATS"]), type$.JSArray_legacy_String); B.List_yPV = A._setArrayType(makeConstList(["v.C.", "n.C."]), type$.JSArray_dynamic); B.List_5VO = A._setArrayType(makeConstList(["voor Christus", "na Christus"]), type$.JSArray_dynamic); B.List_qpm0 = A._setArrayType(makeConstList(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_ebu = A._setArrayType(makeConstList(["Januarie", "Februarie", "Maart", "April", "Mei", "Junie", "Julie", "Augustus", "September", "Oktober", "November", "Desember"]), type$.JSArray_dynamic); B.List_zzJ = A._setArrayType(makeConstList(["Jan.", "Feb.", "Mrt.", "Apr.", "Mei", "Jun.", "Jul.", "Aug.", "Sep.", "Okt.", "Nov.", "Des."]), type$.JSArray_dynamic); B.List_96V = A._setArrayType(makeConstList(["Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag"]), type$.JSArray_dynamic); B.List_L1G = A._setArrayType(makeConstList(["So.", "Ma.", "Di.", "Wo.", "Do.", "Vr.", "Sa."]), type$.JSArray_dynamic); B.List_6O8 = A._setArrayType(makeConstList(["S", "M", "D", "W", "D", "V", "S"]), type$.JSArray_dynamic); B.List_K1_K2_K3_K4 = A._setArrayType(makeConstList(["K1", "K2", "K3", "K4"]), type$.JSArray_dynamic); B.List_SWX = A._setArrayType(makeConstList(["1ste kwartaal", "2de kwartaal", "3de kwartaal", "4de kwartaal"]), type$.JSArray_dynamic); B.List_i7B0 = A._setArrayType(makeConstList(["vm.", "nm."]), type$.JSArray_dynamic); B.List_qJB = A._setArrayType(makeConstList(["EEEE dd MMMM y", "dd MMMM y", "dd MMM y", "y-MM-dd"]), type$.JSArray_dynamic); B.List_aBy = A._setArrayType(makeConstList(["HH:mm:ss zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.List_5_60 = A._setArrayType(makeConstList([5, 6]), type$.JSArray_dynamic); B.List_Pss = A._setArrayType(makeConstList(["{1} {0}", "{1} {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5t4AN = new A.ConstantStringMap(25, {NAME: "af", ERAS: B.List_yPV, ERANAMES: B.List_5VO, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_ebu, STANDALONEMONTHS: B.List_ebu, SHORTMONTHS: B.List_zzJ, STANDALONESHORTMONTHS: B.List_zzJ, WEEKDAYS: B.List_96V, STANDALONEWEEKDAYS: B.List_96V, SHORTWEEKDAYS: B.List_L1G, STANDALONESHORTWEEKDAYS: B.List_L1G, NARROWWEEKDAYS: B.List_6O8, STANDALONENARROWWEEKDAYS: B.List_6O8, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_SWX, AMPMS: B.List_i7B0, DATEFORMATS: B.List_qJB, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_r6C = A._setArrayType(makeConstList(["\u12d3/\u12d3", "\u12d3/\u121d"]), type$.JSArray_dynamic); B.List_cMb = A._setArrayType(makeConstList(["\u12d3\u1218\u1270 \u12d3\u1208\u121d", "\u12d3\u1218\u1270 \u121d\u1215\u1228\u1275"]), type$.JSArray_dynamic); B.List_k6K0 = A._setArrayType(makeConstList(["\u1303", "\u134c", "\u121b", "\u12a4", "\u121c", "\u1301", "\u1301", "\u12a6", "\u1234", "\u12a6", "\u1296", "\u12f2"]), type$.JSArray_dynamic); B.List_ACe = A._setArrayType(makeConstList(["\u1303\u1295\u12e9\u12c8\u122a", "\u134c\u1265\u1229\u12c8\u122a", "\u121b\u122d\u127d", "\u12a4\u1355\u122a\u120d", "\u121c\u12ed", "\u1301\u1295", "\u1301\u120b\u12ed", "\u12a6\u1308\u1235\u1275", "\u1234\u1355\u1274\u121d\u1260\u122d", "\u12a6\u12ad\u1276\u1260\u122d", "\u1296\u126c\u121d\u1260\u122d", "\u12f2\u1234\u121d\u1260\u122d"]), type$.JSArray_dynamic); B.List_y9V = A._setArrayType(makeConstList(["\u1303\u1295\u12e9", "\u134c\u1265\u1229", "\u121b\u122d\u127d", "\u12a4\u1355\u122a", "\u121c\u12ed", "\u1301\u1295", "\u1301\u120b\u12ed", "\u12a6\u1308\u1235", "\u1234\u1355\u1274", "\u12a6\u12ad\u1276", "\u1296\u126c\u121d", "\u12f2\u1234\u121d"]), type$.JSArray_dynamic); B.List_aZ8 = A._setArrayType(makeConstList(["\u12a5\u1211\u12f5", "\u1230\u129e", "\u121b\u12ad\u1230\u129e", "\u1228\u1261\u12d5", "\u1210\u1219\u1235", "\u12d3\u122d\u1265", "\u1245\u12f3\u121c"]), type$.JSArray_dynamic); B.List_Khy = A._setArrayType(makeConstList(["\u12a5\u1211\u12f5", "\u1230\u129e", "\u121b\u12ad\u1230", "\u1228\u1261\u12d5", "\u1210\u1219\u1235", "\u12d3\u122d\u1265", "\u1245\u12f3\u121c"]), type$.JSArray_dynamic); B.List_Q5U = A._setArrayType(makeConstList(["\u12a5", "\u1230", "\u121b", "\u1228", "\u1210", "\u12d3", "\u1245"]), type$.JSArray_dynamic); B.List_KTL = A._setArrayType(makeConstList(["\u1229\u12651", "\u1229\u12652", "\u1229\u12653", "\u1229\u12654"]), type$.JSArray_dynamic); B.List_ASc = A._setArrayType(makeConstList(["1\u129b\u12cd \u1229\u1265", "2\u129b\u12cd \u1229\u1265", "3\u129b\u12cd \u1229\u1265", "4\u129b\u12cd \u1229\u1265"]), type$.JSArray_dynamic); B.List_Z3F = A._setArrayType(makeConstList(["\u1325\u12cb\u1275", "\u12a8\u1230\u12d3\u1275"]), type$.JSArray_dynamic); B.List_VWf = A._setArrayType(makeConstList(["y MMMM d, EEEE", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); B.List_kWG0 = A._setArrayType(makeConstList(["h:mm:ss a zzzz", "h:mm:ss a z", "h:mm:ss a", "h:mm a"]), type$.JSArray_dynamic); B.Map_5t6QF = new A.ConstantStringMap(25, {NAME: "am", ERAS: B.List_r6C, ERANAMES: B.List_cMb, NARROWMONTHS: B.List_k6K0, STANDALONENARROWMONTHS: B.List_k6K0, MONTHS: B.List_ACe, STANDALONEMONTHS: B.List_ACe, SHORTMONTHS: B.List_y9V, STANDALONESHORTMONTHS: B.List_y9V, WEEKDAYS: B.List_aZ8, STANDALONEWEEKDAYS: B.List_aZ8, SHORTWEEKDAYS: B.List_Khy, STANDALONESHORTWEEKDAYS: B.List_Khy, NARROWWEEKDAYS: B.List_Q5U, STANDALONENARROWWEEKDAYS: B.List_Q5U, SHORTQUARTERS: B.List_KTL, QUARTERS: B.List_ASc, AMPMS: B.List_Z3F, DATEFORMATS: B.List_VWf, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_bHr = A._setArrayType(makeConstList(["NAME", "ERAS", "ERANAMES", "NARROWMONTHS", "STANDALONENARROWMONTHS", "MONTHS", "STANDALONEMONTHS", "SHORTMONTHS", "STANDALONESHORTMONTHS", "WEEKDAYS", "STANDALONEWEEKDAYS", "SHORTWEEKDAYS", "STANDALONESHORTWEEKDAYS", "NARROWWEEKDAYS", "STANDALONENARROWWEEKDAYS", "SHORTQUARTERS", "QUARTERS", "AMPMS", "DATEFORMATS", "TIMEFORMATS", "AVAILABLEFORMATS", "FIRSTDAYOFWEEK", "WEEKENDRANGE", "FIRSTWEEKCUTOFFDAY", "DATETIMEFORMATS", "ZERODIGIT"]), type$.JSArray_legacy_String); B.List_Xy50 = A._setArrayType(makeConstList(["\u0642.\u0645", "\u0645"]), type$.JSArray_dynamic); B.List_sJO = A._setArrayType(makeConstList(["\u0642\u0628\u0644 \u0627\u0644\u0645\u064a\u0644\u0627\u062f", "\u0645\u064a\u0644\u0627\u062f\u064a"]), type$.JSArray_dynamic); B.List_a9w0 = A._setArrayType(makeConstList(["\u064a", "\u0641", "\u0645", "\u0623", "\u0648", "\u0646", "\u0644", "\u063a", "\u0633", "\u0643", "\u0628", "\u062f"]), type$.JSArray_dynamic); B.List_ACL = A._setArrayType(makeConstList(["\u064a\u0646\u0627\u064a\u0631", "\u0641\u0628\u0631\u0627\u064a\u0631", "\u0645\u0627\u0631\u0633", "\u0623\u0628\u0631\u064a\u0644", "\u0645\u0627\u064a\u0648", "\u064a\u0648\u0646\u064a\u0648", "\u064a\u0648\u0644\u064a\u0648", "\u0623\u063a\u0633\u0637\u0633", "\u0633\u0628\u062a\u0645\u0628\u0631", "\u0623\u0643\u062a\u0648\u0628\u0631", "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_0DX = A._setArrayType(makeConstList(["\u0627\u0644\u0623\u062d\u062f", "\u0627\u0644\u0627\u062b\u0646\u064a\u0646", "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", "\u0627\u0644\u062e\u0645\u064a\u0633", "\u0627\u0644\u062c\u0645\u0639\u0629", "\u0627\u0644\u0633\u0628\u062a"]), type$.JSArray_dynamic); B.List_Odg = A._setArrayType(makeConstList(["\u062d", "\u0646", "\u062b", "\u0631", "\u062e", "\u062c", "\u0633"]), type$.JSArray_dynamic); B.List_gSl = A._setArrayType(makeConstList(["\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0623\u0648\u0644", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0644\u062b", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0631\u0627\u0628\u0639"]), type$.JSArray_dynamic); B.List_fbg = A._setArrayType(makeConstList(["\u0635", "\u0645"]), type$.JSArray_dynamic); B.List_eBa = A._setArrayType(makeConstList(["EEEE\u060c d MMMM y", "d MMMM y", "dd\u200f/MM\u200f/y", "d\u200f/M\u200f/y"]), type$.JSArray_dynamic); B.List_4_5 = A._setArrayType(makeConstList([4, 5]), type$.JSArray_dynamic); B.Map_bHS8J = new A.ConstantStringMap(26, {NAME: "ar", ERAS: B.List_Xy50, ERANAMES: B.List_sJO, NARROWMONTHS: B.List_a9w0, STANDALONENARROWMONTHS: B.List_a9w0, MONTHS: B.List_ACL, STANDALONEMONTHS: B.List_ACL, SHORTMONTHS: B.List_ACL, STANDALONESHORTMONTHS: B.List_ACL, WEEKDAYS: B.List_0DX, STANDALONEWEEKDAYS: B.List_0DX, SHORTWEEKDAYS: B.List_0DX, STANDALONESHORTWEEKDAYS: B.List_0DX, NARROWWEEKDAYS: B.List_Odg, STANDALONENARROWWEEKDAYS: B.List_Odg, SHORTQUARTERS: B.List_gSl, QUARTERS: B.List_gSl, AMPMS: B.List_fbg, DATEFORMATS: B.List_eBa, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: B.List_4_5, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: B.List_Pss, ZERODIGIT: "\u0660"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_MZv = A._setArrayType(makeConstList(["e.\u0259.", "y.e."]), type$.JSArray_dynamic); B.List_y6N0 = A._setArrayType(makeConstList(["eram\u0131zdan \u0259vv\u0259l", "yeni era"]), type$.JSArray_dynamic); B.List_tO3 = A._setArrayType(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]), type$.JSArray_dynamic); B.List_zrt = A._setArrayType(makeConstList(["yanvar", "fevral", "mart", "aprel", "may", "iyun", "iyul", "avqust", "sentyabr", "oktyabr", "noyabr", "dekabr"]), type$.JSArray_dynamic); B.List_rTd = A._setArrayType(makeConstList(["Yanvar", "Fevral", "Mart", "Aprel", "May", "\u0130yun", "\u0130yul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"]), type$.JSArray_dynamic); B.List_6Vn = A._setArrayType(makeConstList(["yan", "fev", "mar", "apr", "may", "iyn", "iyl", "avq", "sen", "okt", "noy", "dek"]), type$.JSArray_dynamic); B.List_mPL = A._setArrayType(makeConstList(["bazar", "bazar ert\u0259si", "\xe7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131", "\xe7\u0259r\u015f\u0259nb\u0259", "c\xfcm\u0259 ax\u015fam\u0131", "c\xfcm\u0259", "\u015f\u0259nb\u0259"]), type$.JSArray_dynamic); B.List_ATp = A._setArrayType(makeConstList(["B.", "B.E.", "\xc7.A.", "\xc7.", "C.A.", "C.", "\u015e."]), type$.JSArray_dynamic); B.List_4YB = A._setArrayType(makeConstList(["7", "1", "2", "3", "4", "5", "6"]), type$.JSArray_dynamic); B.List_K2a = A._setArrayType(makeConstList(["1-ci kv.", "2-ci kv.", "3-c\xfc kv.", "4-c\xfc kv."]), type$.JSArray_dynamic); B.List_33h = A._setArrayType(makeConstList(["1-ci kvartal", "2-ci kvartal", "3-c\xfc kvartal", "4-c\xfc kvartal"]), type$.JSArray_dynamic); B.List_AM_PM0 = A._setArrayType(makeConstList(["AM", "PM"]), type$.JSArray_dynamic); B.List_MC2 = A._setArrayType(makeConstList(["d MMMM y, EEEE", "d MMMM y", "d MMM y", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5tA4L = new A.ConstantStringMap(25, {NAME: "az", ERAS: B.List_MZv, ERANAMES: B.List_y6N0, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_zrt, STANDALONEMONTHS: B.List_rTd, SHORTMONTHS: B.List_6Vn, STANDALONESHORTMONTHS: B.List_6Vn, WEEKDAYS: B.List_mPL, STANDALONEWEEKDAYS: B.List_mPL, SHORTWEEKDAYS: B.List_ATp, STANDALONESHORTWEEKDAYS: B.List_ATp, NARROWWEEKDAYS: B.List_4YB, STANDALONENARROWWEEKDAYS: B.List_4YB, SHORTQUARTERS: B.List_K2a, QUARTERS: B.List_33h, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_MC2, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Tr4 = A._setArrayType(makeConstList(["\u0434\u0430 \u043d.\u044d.", "\u043d.\u044d."]), type$.JSArray_dynamic); B.List_o96 = A._setArrayType(makeConstList(["\u0434\u0430 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430", "\u0430\u0434 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430"]), type$.JSArray_dynamic); B.List_p2v = A._setArrayType(makeConstList(["\u0441", "\u043b", "\u0441", "\u043a", "\u043c", "\u0447", "\u043b", "\u0436", "\u0432", "\u043a", "\u043b", "\u0441"]), type$.JSArray_dynamic); B.List_AHF = A._setArrayType(makeConstList(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f", "\u043b\u044e\u0442\u0430\u0433\u0430", "\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430", "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430", "\u043c\u0430\u044f", "\u0447\u044d\u0440\u0432\u0435\u043d\u044f", "\u043b\u0456\u043f\u0435\u043d\u044f", "\u0436\u043d\u0456\u045e\u043d\u044f", "\u0432\u0435\u0440\u0430\u0441\u043d\u044f", "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430", "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430", "\u0441\u043d\u0435\u0436\u043d\u044f"]), type$.JSArray_dynamic); B.List_y1F = A._setArrayType(makeConstList(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c", "\u043b\u044e\u0442\u044b", "\u0441\u0430\u043a\u0430\u0432\u0456\u043a", "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a", "\u043c\u0430\u0439", "\u0447\u044d\u0440\u0432\u0435\u043d\u044c", "\u043b\u0456\u043f\u0435\u043d\u044c", "\u0436\u043d\u0456\u0432\u0435\u043d\u044c", "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c", "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a", "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434", "\u0441\u043d\u0435\u0436\u0430\u043d\u044c"]), type$.JSArray_dynamic); B.List_yrN0 = A._setArrayType(makeConstList(["\u0441\u0442\u0443", "\u043b\u044e\u0442", "\u0441\u0430\u043a", "\u043a\u0440\u0430", "\u043c\u0430\u044f", "\u0447\u044d\u0440", "\u043b\u0456\u043f", "\u0436\u043d\u0456", "\u0432\u0435\u0440", "\u043a\u0430\u0441", "\u043b\u0456\u0441", "\u0441\u043d\u0435"]), type$.JSArray_dynamic); B.List_O2f = A._setArrayType(makeConstList(["\u0441\u0442\u0443", "\u043b\u044e\u0442", "\u0441\u0430\u043a", "\u043a\u0440\u0430", "\u043c\u0430\u0439", "\u0447\u044d\u0440", "\u043b\u0456\u043f", "\u0436\u043d\u0456", "\u0432\u0435\u0440", "\u043a\u0430\u0441", "\u043b\u0456\u0441", "\u0441\u043d\u0435"]), type$.JSArray_dynamic); B.List_fcb = A._setArrayType(makeConstList(["\u043d\u044f\u0434\u0437\u0435\u043b\u044f", "\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a", "\u0430\u045e\u0442\u043e\u0440\u0430\u043a", "\u0441\u0435\u0440\u0430\u0434\u0430", "\u0447\u0430\u0446\u0432\u0435\u0440", "\u043f\u044f\u0442\u043d\u0456\u0446\u0430", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_XZy = A._setArrayType(makeConstList(["\u043d\u0434", "\u043f\u043d", "\u0430\u045e", "\u0441\u0440", "\u0447\u0446", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); B.List_bnV = A._setArrayType(makeConstList(["\u043d", "\u043f", "\u0430", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); B.List_C7r = A._setArrayType(makeConstList(["1-\u0448\u044b \u043a\u0432.", "2-\u0433\u0456 \u043a\u0432.", "3-\u0446\u0456 \u043a\u0432.", "4-\u0442\u044b \u043a\u0432."]), type$.JSArray_dynamic); B.List_1mp = A._setArrayType(makeConstList(["1-\u0448\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "2-\u0433\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "3-\u0446\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); B.List_E3c = A._setArrayType(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d.MM.y", "d.MM.yy"]), type$.JSArray_dynamic); B.List_YGg = A._setArrayType(makeConstList(["HH:mm:ss, zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.List_Cju = A._setArrayType(makeConstList(["{1} '\u0443' {0}", "{1} '\u0443' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tfx7 = new A.ConstantStringMap(25, {NAME: "be", ERAS: B.List_Tr4, ERANAMES: B.List_o96, NARROWMONTHS: B.List_p2v, STANDALONENARROWMONTHS: B.List_p2v, MONTHS: B.List_AHF, STANDALONEMONTHS: B.List_y1F, SHORTMONTHS: B.List_yrN0, STANDALONESHORTMONTHS: B.List_O2f, WEEKDAYS: B.List_fcb, STANDALONEWEEKDAYS: B.List_fcb, SHORTWEEKDAYS: B.List_XZy, STANDALONESHORTWEEKDAYS: B.List_XZy, NARROWWEEKDAYS: B.List_bnV, STANDALONENARROWWEEKDAYS: B.List_bnV, SHORTQUARTERS: B.List_C7r, QUARTERS: B.List_1mp, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_E3c, TIMEFORMATS: B.List_YGg, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Cju}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_huc = A._setArrayType(makeConstList(["\u043f\u0440.\u0425\u0440.", "\u0441\u043b.\u0425\u0440."]), type$.JSArray_dynamic); B.List_M2D = A._setArrayType(makeConstList(["\u043f\u0440\u0435\u0434\u0438 \u0425\u0440\u0438\u0441\u0442\u0430", "\u0441\u043b\u0435\u0434 \u0425\u0440\u0438\u0441\u0442\u0430"]), type$.JSArray_dynamic); B.List_gUw = A._setArrayType(makeConstList(["\u044f", "\u0444", "\u043c", "\u0430", "\u043c", "\u044e", "\u044e", "\u0430", "\u0441", "\u043e", "\u043d", "\u0434"]), type$.JSArray_dynamic); B.List_RsV1 = A._setArrayType(makeConstList(["\u044f\u043d\u0443\u0430\u0440\u0438", "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0439", "\u044e\u043d\u0438", "\u044e\u043b\u0438", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]), type$.JSArray_dynamic); B.List_9hp = A._setArrayType(makeConstList(["\u044f\u043d\u0443", "\u0444\u0435\u0432", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440", "\u043c\u0430\u0439", "\u044e\u043d\u0438", "\u044e\u043b\u0438", "\u0430\u0432\u0433", "\u0441\u0435\u043f", "\u043e\u043a\u0442", "\u043d\u043e\u0435", "\u0434\u0435\u043a"]), type$.JSArray_dynamic); B.List_0Nf = A._setArrayType(makeConstList(["\u043d\u0435\u0434\u0435\u043b\u044f", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u044f\u0434\u0430", "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", "\u043f\u0435\u0442\u044a\u043a", "\u0441\u044a\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_04 = A._setArrayType(makeConstList(["\u043d\u0434", "\u043f\u043d", "\u0432\u0442", "\u0441\u0440", "\u0447\u0442", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); B.List_H7P0 = A._setArrayType(makeConstList(["\u043d", "\u043f", "\u0432", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); B.List_A0N = A._setArrayType(makeConstList(["1. \u0442\u0440\u0438\u043c.", "2. \u0442\u0440\u0438\u043c.", "3. \u0442\u0440\u0438\u043c.", "4. \u0442\u0440\u0438\u043c."]), type$.JSArray_dynamic); B.List_aJg = A._setArrayType(makeConstList(["1. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "2. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "3. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "4. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435"]), type$.JSArray_dynamic); B.List_yP5 = A._setArrayType(makeConstList(["\u043f\u0440.\u043e\u0431.", "\u0441\u043b.\u043e\u0431."]), type$.JSArray_dynamic); B.List_e7r = A._setArrayType(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d.MM.y '\u0433'.", "d.MM.yy '\u0433'."]), type$.JSArray_dynamic); B.List_wwi = A._setArrayType(makeConstList(["H:mm:ss '\u0447'. zzzz", "H:mm:ss '\u0447'. z", "H:mm:ss '\u0447'.", "H:mm '\u0447'."]), type$.JSArray_dynamic); B.List_o0N = A._setArrayType(makeConstList(["{1}, {0}", "{1}, {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tW7l = new A.ConstantStringMap(25, {NAME: "bg", ERAS: B.List_huc, ERANAMES: B.List_M2D, NARROWMONTHS: B.List_gUw, STANDALONENARROWMONTHS: B.List_gUw, MONTHS: B.List_RsV1, STANDALONEMONTHS: B.List_RsV1, SHORTMONTHS: B.List_9hp, STANDALONESHORTMONTHS: B.List_9hp, WEEKDAYS: B.List_0Nf, STANDALONEWEEKDAYS: B.List_0Nf, SHORTWEEKDAYS: B.List_04, STANDALONESHORTWEEKDAYS: B.List_04, NARROWWEEKDAYS: B.List_H7P0, STANDALONENARROWWEEKDAYS: B.List_H7P0, SHORTQUARTERS: B.List_A0N, QUARTERS: B.List_aJg, AMPMS: B.List_yP5, DATEFORMATS: B.List_e7r, TIMEFORMATS: B.List_wwi, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_mCA = A._setArrayType(makeConstList(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac", "\u0996\u09c3\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]), type$.JSArray_dynamic); B.List_sAq = A._setArrayType(makeConstList(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac", "\u0996\u09cd\u09b0\u09c0\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]), type$.JSArray_dynamic); B.List_M2b = A._setArrayType(makeConstList(["\u099c\u09be", "\u09ab\u09c7", "\u09ae\u09be", "\u098f", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1", "\u0986", "\u09b8\u09c7", "\u0985", "\u09a8", "\u09a1\u09bf"]), type$.JSArray_dynamic); B.List_MUw1 = A._setArrayType(makeConstList(["\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", "\u09ae\u09be\u09b0\u09cd\u099a", "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1\u09b2\u09be\u0987", "\u0986\u0997\u09b8\u09cd\u099f", "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]), type$.JSArray_dynamic); B.List_uIL = A._setArrayType(makeConstList(["\u099c\u09be\u09a8\u09c1", "\u09ab\u09c7\u09ac", "\u09ae\u09be\u09b0\u09cd\u099a", "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1\u09b2\u09be\u0987", "\u0986\u0997\u09b8\u09cd\u099f", "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]), type$.JSArray_dynamic); B.List_fDn = A._setArrayType(makeConstList(["\u09b0\u09ac\u09bf\u09ac\u09be\u09b0", "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0", "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0", "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0", "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0", "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0", "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"]), type$.JSArray_dynamic); B.List_BzQ = A._setArrayType(makeConstList(["\u09b0\u09ac\u09bf", "\u09b8\u09cb\u09ae", "\u09ae\u0999\u09cd\u0997\u09b2", "\u09ac\u09c1\u09a7", "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf", "\u09b6\u09c1\u0995\u09cd\u09b0", "\u09b6\u09a8\u09bf"]), type$.JSArray_dynamic); B.List_M2I = A._setArrayType(makeConstList(["\u09b0", "\u09b8\u09cb", "\u09ae", "\u09ac\u09c1", "\u09ac\u09c3", "\u09b6\u09c1", "\u09b6"]), type$.JSArray_dynamic); B.List_kDF = A._setArrayType(makeConstList(["\u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u099a\u09a4\u09c1\u09b0\u09cd\u09a5 \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995"]), type$.JSArray_dynamic); B.List_oYk = A._setArrayType(makeConstList(["EEEE, d MMMM, y", "d MMMM, y", "d MMM, y", "d/M/yy"]), type$.JSArray_dynamic); B.Map_bHedh = new A.ConstantStringMap(26, {NAME: "bn", ERAS: B.List_mCA, ERANAMES: B.List_sAq, NARROWMONTHS: B.List_M2b, STANDALONENARROWMONTHS: B.List_M2b, MONTHS: B.List_MUw1, STANDALONEMONTHS: B.List_MUw1, SHORTMONTHS: B.List_uIL, STANDALONESHORTMONTHS: B.List_MUw1, WEEKDAYS: B.List_fDn, STANDALONEWEEKDAYS: B.List_fDn, SHORTWEEKDAYS: B.List_BzQ, STANDALONESHORTWEEKDAYS: B.List_BzQ, NARROWWEEKDAYS: B.List_M2I, STANDALONENARROWWEEKDAYS: B.List_M2I, SHORTQUARTERS: B.List_kDF, QUARTERS: B.List_kDF, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_oYk, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss, ZERODIGIT: "\u09e6"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_PDz = A._setArrayType(makeConstList(["p. n. e.", "n. e."]), type$.JSArray_dynamic); B.List_YYi = A._setArrayType(makeConstList(["prije nove ere", "nove ere"]), type$.JSArray_dynamic); B.List_oEc = A._setArrayType(makeConstList(["j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"]), type$.JSArray_dynamic); B.List_asC = A._setArrayType(makeConstList(["januar", "februar", "mart", "april", "maj", "juni", "juli", "august", "septembar", "oktobar", "novembar", "decembar"]), type$.JSArray_dynamic); B.List_ECG = A._setArrayType(makeConstList(["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); B.List_S49 = A._setArrayType(makeConstList(["nedjelja", "ponedjeljak", "utorak", "srijeda", "\u010detvrtak", "petak", "subota"]), type$.JSArray_dynamic); B.List_8eb0 = A._setArrayType(makeConstList(["ned", "pon", "uto", "sri", "\u010det", "pet", "sub"]), type$.JSArray_dynamic); B.List_KHM = A._setArrayType(makeConstList(["N", "P", "U", "S", "\u010c", "P", "S"]), type$.JSArray_dynamic); B.List_sci = A._setArrayType(makeConstList(["n", "p", "u", "s", "\u010d", "p", "s"]), type$.JSArray_dynamic); B.List_KV1_KV2_KV3_KV4 = A._setArrayType(makeConstList(["KV1", "KV2", "KV3", "KV4"]), type$.JSArray_dynamic); B.List_m9b = A._setArrayType(makeConstList(["Prvi kvartal", "Drugi kvartal", "Tre\u0107i kvartal", "\u010cetvrti kvartal"]), type$.JSArray_dynamic); B.List_prijepodne_popodne = A._setArrayType(makeConstList(["prijepodne", "popodne"]), type$.JSArray_dynamic); B.List_Qs9 = A._setArrayType(makeConstList(["EEEE, d. MMMM y.", "d. MMMM y.", "d. MMM y.", "d. M. y."]), type$.JSArray_dynamic); B.List_CDT = A._setArrayType(makeConstList(["{1} 'u' {0}", "{1} 'u' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tPJs = new A.ConstantStringMap(25, {NAME: "bs", ERAS: B.List_PDz, ERANAMES: B.List_YYi, NARROWMONTHS: B.List_oEc, STANDALONENARROWMONTHS: B.List_oEc, MONTHS: B.List_asC, STANDALONEMONTHS: B.List_asC, SHORTMONTHS: B.List_ECG, STANDALONESHORTMONTHS: B.List_ECG, WEEKDAYS: B.List_S49, STANDALONEWEEKDAYS: B.List_S49, SHORTWEEKDAYS: B.List_8eb0, STANDALONESHORTWEEKDAYS: B.List_8eb0, NARROWWEEKDAYS: B.List_KHM, STANDALONENARROWWEEKDAYS: B.List_sci, SHORTQUARTERS: B.List_KV1_KV2_KV3_KV4, QUARTERS: B.List_m9b, AMPMS: B.List_prijepodne_popodne, DATEFORMATS: B.List_Qs9, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_CDT}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_aC_dC = A._setArrayType(makeConstList(["aC", "dC"]), type$.JSArray_dynamic); B.List_iDZ0 = A._setArrayType(makeConstList(["abans de Crist", "despr\xe9s de Crist"]), type$.JSArray_dynamic); B.List_aV0 = A._setArrayType(makeConstList(["GN", "FB", "M\xc7", "AB", "MG", "JN", "JL", "AG", "ST", "OC", "NV", "DS"]), type$.JSArray_dynamic); B.List_QAb = A._setArrayType(makeConstList(["de gener", "de febrer", "de mar\xe7", "d\u2019abril", "de maig", "de juny", "de juliol", "d\u2019agost", "de setembre", "d\u2019octubre", "de novembre", "de desembre"]), type$.JSArray_dynamic); B.List_AiQ = A._setArrayType(makeConstList(["gener", "febrer", "mar\xe7", "abril", "maig", "juny", "juliol", "agost", "setembre", "octubre", "novembre", "desembre"]), type$.JSArray_dynamic); B.List_14C = A._setArrayType(makeConstList(["de gen.", "de febr.", "de mar\xe7", "d\u2019abr.", "de maig", "de juny", "de jul.", "d\u2019ag.", "de set.", "d\u2019oct.", "de nov.", "de des."]), type$.JSArray_dynamic); B.List_zzp = A._setArrayType(makeConstList(["gen.", "febr.", "mar\xe7", "abr.", "maig", "juny", "jul.", "ag.", "set.", "oct.", "nov.", "des."]), type$.JSArray_dynamic); B.List_A2Y = A._setArrayType(makeConstList(["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"]), type$.JSArray_dynamic); B.List_soA0 = A._setArrayType(makeConstList(["dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds."]), type$.JSArray_dynamic); B.List_33m = A._setArrayType(makeConstList(["dg", "dl", "dt", "dc", "dj", "dv", "ds"]), type$.JSArray_dynamic); B.List_Am8 = A._setArrayType(makeConstList(["1T", "2T", "3T", "4T"]), type$.JSArray_dynamic); B.List_6pl = A._setArrayType(makeConstList(["1r trimestre", "2n trimestre", "3r trimestre", "4t trimestre"]), type$.JSArray_dynamic); B.List_kWM = A._setArrayType(makeConstList(["a.\xa0m.", "p.\xa0m."]), type$.JSArray_dynamic); B.List_n7k0 = A._setArrayType(makeConstList(["EEEE, d MMMM 'de' y", "d MMMM 'de' y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); B.List_84a = A._setArrayType(makeConstList(["H:mm:ss zzzz", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); B.List_YIY = A._setArrayType(makeConstList(["{1} 'a' 'les' {0}", "{1} 'a' 'les' {0}", "{1}, {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5t94O = new A.ConstantStringMap(25, {NAME: "ca", ERAS: B.List_aC_dC, ERANAMES: B.List_iDZ0, NARROWMONTHS: B.List_aV0, STANDALONENARROWMONTHS: B.List_aV0, MONTHS: B.List_QAb, STANDALONEMONTHS: B.List_AiQ, SHORTMONTHS: B.List_14C, STANDALONESHORTMONTHS: B.List_zzp, WEEKDAYS: B.List_A2Y, STANDALONEWEEKDAYS: B.List_A2Y, SHORTWEEKDAYS: B.List_soA0, STANDALONESHORTWEEKDAYS: B.List_soA0, NARROWWEEKDAYS: B.List_33m, STANDALONENARROWWEEKDAYS: B.List_33m, SHORTQUARTERS: B.List_Am8, QUARTERS: B.List_6pl, AMPMS: B.List_kWM, DATEFORMATS: B.List_n7k0, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_YIY}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_swP = A._setArrayType(makeConstList(["p\u0159. n. l.", "n. l."]), type$.JSArray_dynamic); B.List_EOZ = A._setArrayType(makeConstList(["p\u0159ed na\u0161\xedm letopo\u010dtem", "na\u0161eho letopo\u010dtu"]), type$.JSArray_dynamic); B.List_ww8138 = A._setArrayType(makeConstList(["ledna", "\xfanora", "b\u0159ezna", "dubna", "kv\u011btna", "\u010dervna", "\u010dervence", "srpna", "z\xe1\u0159\xed", "\u0159\xedjna", "listopadu", "prosince"]), type$.JSArray_dynamic); B.List_699 = A._setArrayType(makeConstList(["leden", "\xfanor", "b\u0159ezen", "duben", "kv\u011bten", "\u010derven", "\u010dervenec", "srpen", "z\xe1\u0159\xed", "\u0159\xedjen", "listopad", "prosinec"]), type$.JSArray_dynamic); B.List_yXb = A._setArrayType(makeConstList(["led", "\xfano", "b\u0159e", "dub", "kv\u011b", "\u010dvn", "\u010dvc", "srp", "z\xe1\u0159", "\u0159\xedj", "lis", "pro"]), type$.JSArray_dynamic); B.List_aBG = A._setArrayType(makeConstList(["ned\u011ble", "pond\u011bl\xed", "\xfater\xfd", "st\u0159eda", "\u010dtvrtek", "p\xe1tek", "sobota"]), type$.JSArray_dynamic); B.List_oww = A._setArrayType(makeConstList(["ne", "po", "\xfat", "st", "\u010dt", "p\xe1", "so"]), type$.JSArray_dynamic); B.List_2Zi0 = A._setArrayType(makeConstList(["N", "P", "\xda", "S", "\u010c", "P", "S"]), type$.JSArray_dynamic); B.List_Q1_Q2_Q3_Q40 = A._setArrayType(makeConstList(["Q1", "Q2", "Q3", "Q4"]), type$.JSArray_dynamic); B.List_zVD = A._setArrayType(makeConstList(["1. \u010dtvrtlet\xed", "2. \u010dtvrtlet\xed", "3. \u010dtvrtlet\xed", "4. \u010dtvrtlet\xed"]), type$.JSArray_dynamic); B.List_MUs = A._setArrayType(makeConstList(["dop.", "odp."]), type$.JSArray_dynamic); B.List_XZn = A._setArrayType(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. M. y", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5tSTY = new A.ConstantStringMap(25, {NAME: "cs", ERAS: B.List_swP, ERANAMES: B.List_EOZ, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_ww8138, STANDALONEMONTHS: B.List_699, SHORTMONTHS: B.List_yXb, STANDALONESHORTMONTHS: B.List_yXb, WEEKDAYS: B.List_aBG, STANDALONEWEEKDAYS: B.List_aBG, SHORTWEEKDAYS: B.List_oww, STANDALONESHORTWEEKDAYS: B.List_oww, NARROWWEEKDAYS: B.List_2Zi0, STANDALONENARROWWEEKDAYS: B.List_2Zi0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_zVD, AMPMS: B.List_MUs, DATEFORMATS: B.List_XZn, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_OPD = A._setArrayType(makeConstList(["f.Kr.", "e.Kr."]), type$.JSArray_dynamic); B.List_9SI = A._setArrayType(makeConstList(["januar", "februar", "marts", "april", "maj", "juni", "juli", "august", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); B.List_8eb1 = A._setArrayType(makeConstList(["jan.", "feb.", "mar.", "apr.", "maj", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_Ufe = A._setArrayType(makeConstList(["s\xf8ndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "l\xf8rdag"]), type$.JSArray_dynamic); B.List_zPU = A._setArrayType(makeConstList(["s\xf8n.", "man.", "tir.", "ons.", "tor.", "fre.", "l\xf8r."]), type$.JSArray_dynamic); B.List_eVG = A._setArrayType(makeConstList(["s\xf8n", "man", "tir", "ons", "tor", "fre", "l\xf8r"]), type$.JSArray_dynamic); B.List_GVy = A._setArrayType(makeConstList(["S", "M", "T", "O", "T", "F", "L"]), type$.JSArray_dynamic); B.List_VJf = A._setArrayType(makeConstList(["1. kvt.", "2. kvt.", "3. kvt.", "4. kvt."]), type$.JSArray_dynamic); B.List_wg3 = A._setArrayType(makeConstList(["1. kvartal", "2. kvartal", "3. kvartal", "4. kvartal"]), type$.JSArray_dynamic); B.List_4C1 = A._setArrayType(makeConstList(["EEEE 'den' d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.y"]), type$.JSArray_dynamic); B.List_SCE = A._setArrayType(makeConstList(["HH.mm.ss zzzz", "HH.mm.ss z", "HH.mm.ss", "HH.mm"]), type$.JSArray_dynamic); B.List_iEE0 = A._setArrayType(makeConstList(["{1} 'kl'. {0}", "{1} 'kl'. {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tUEs = new A.ConstantStringMap(25, {NAME: "da", ERAS: B.List_OPD, ERANAMES: B.List_OPD, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_9SI, STANDALONEMONTHS: B.List_9SI, SHORTMONTHS: B.List_8eb1, STANDALONESHORTMONTHS: B.List_8eb1, WEEKDAYS: B.List_Ufe, STANDALONEWEEKDAYS: B.List_Ufe, SHORTWEEKDAYS: B.List_zPU, STANDALONESHORTWEEKDAYS: B.List_eVG, NARROWWEEKDAYS: B.List_GVy, STANDALONENARROWWEEKDAYS: B.List_GVy, SHORTQUARTERS: B.List_VJf, QUARTERS: B.List_wg3, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_4C1, TIMEFORMATS: B.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_iEE0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_znv = A._setArrayType(makeConstList(["v. Chr.", "n. Chr."]), type$.JSArray_dynamic); B.List_yvw = A._setArrayType(makeConstList(["Januar", "Februar", "M\xe4rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"]), type$.JSArray_dynamic); B.List_05 = A._setArrayType(makeConstList(["Jan.", "Feb.", "M\xe4rz", "Apr.", "Mai", "Juni", "Juli", "Aug.", "Sept.", "Okt.", "Nov.", "Dez."]), type$.JSArray_dynamic); B.List_AgZ = A._setArrayType(makeConstList(["Jan", "Feb", "M\xe4r", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"]), type$.JSArray_dynamic); B.List_9YN = A._setArrayType(makeConstList(["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]), type$.JSArray_dynamic); B.List_Ssz = A._setArrayType(makeConstList(["So.", "Mo.", "Di.", "Mi.", "Do.", "Fr.", "Sa."]), type$.JSArray_dynamic); B.List_4IJ = A._setArrayType(makeConstList(["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]), type$.JSArray_dynamic); B.List_6v8 = A._setArrayType(makeConstList(["S", "M", "D", "M", "D", "F", "S"]), type$.JSArray_dynamic); B.List_2No0 = A._setArrayType(makeConstList(["1. Quartal", "2. Quartal", "3. Quartal", "4. Quartal"]), type$.JSArray_dynamic); B.List_mGN = A._setArrayType(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "dd.MM.y", "dd.MM.yy"]), type$.JSArray_dynamic); B.List_yCp = A._setArrayType(makeConstList(["{1} 'um' {0}", "{1} 'um' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tI6I = new A.ConstantStringMap(25, {NAME: "de", ERAS: B.List_znv, ERANAMES: B.List_znv, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_yvw, STANDALONEMONTHS: B.List_yvw, SHORTMONTHS: B.List_05, STANDALONESHORTMONTHS: B.List_AgZ, WEEKDAYS: B.List_9YN, STANDALONEWEEKDAYS: B.List_9YN, SHORTWEEKDAYS: B.List_Ssz, STANDALONESHORTWEEKDAYS: B.List_4IJ, NARROWWEEKDAYS: B.List_6v8, STANDALONENARROWWEEKDAYS: B.List_6v8, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_2No0, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_mGN, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_yCp}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_5tqoQ = new A.ConstantStringMap(25, {NAME: "de_CH", ERAS: B.List_znv, ERANAMES: B.List_znv, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_yvw, STANDALONEMONTHS: B.List_yvw, SHORTMONTHS: B.List_05, STANDALONESHORTMONTHS: B.List_AgZ, WEEKDAYS: B.List_9YN, STANDALONEWEEKDAYS: B.List_9YN, SHORTWEEKDAYS: B.List_Ssz, STANDALONESHORTWEEKDAYS: B.List_4IJ, NARROWWEEKDAYS: B.List_6v8, STANDALONENARROWWEEKDAYS: B.List_6v8, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_2No0, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_mGN, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_yCp}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_LJp = A._setArrayType(makeConstList(["\u03c0.\u03a7.", "\u03bc.\u03a7."]), type$.JSArray_dynamic); B.List_ES1 = A._setArrayType(makeConstList(["\u03c0\u03c1\u03bf \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd", "\u03bc\u03b5\u03c4\u03ac \u03a7\u03c1\u03b9\u03c3\u03c4\u03cc\u03bd"]), type$.JSArray_dynamic); B.List_sMI = A._setArrayType(makeConstList(["\u0399", "\u03a6", "\u039c", "\u0391", "\u039c", "\u0399", "\u0399", "\u0391", "\u03a3", "\u039f", "\u039d", "\u0394"]), type$.JSArray_dynamic); B.List_UcM = A._setArrayType(makeConstList(["\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5", "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5", "\u039c\u03b1\u0390\u03bf\u03c5", "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5", "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5", "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5", "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5", "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"]), type$.JSArray_dynamic); B.List_EGJ0 = A._setArrayType(makeConstList(["\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", "\u039c\u03ac\u03b9\u03bf\u03c2", "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"]), type$.JSArray_dynamic); B.List_gJC = A._setArrayType(makeConstList(["\u0399\u03b1\u03bd", "\u03a6\u03b5\u03b2", "\u039c\u03b1\u03c1", "\u0391\u03c0\u03c1", "\u039c\u03b1\u0390", "\u0399\u03bf\u03c5\u03bd", "\u0399\u03bf\u03c5\u03bb", "\u0391\u03c5\u03b3", "\u03a3\u03b5\u03c0", "\u039f\u03ba\u03c4", "\u039d\u03bf\u03b5", "\u0394\u03b5\u03ba"]), type$.JSArray_dynamic); B.List_oXg = A._setArrayType(makeConstList(["\u0399\u03b1\u03bd", "\u03a6\u03b5\u03b2", "\u039c\u03ac\u03c1", "\u0391\u03c0\u03c1", "\u039c\u03ac\u03b9", "\u0399\u03bf\u03cd\u03bd", "\u0399\u03bf\u03cd\u03bb", "\u0391\u03cd\u03b3", "\u03a3\u03b5\u03c0", "\u039f\u03ba\u03c4", "\u039d\u03bf\u03ad", "\u0394\u03b5\u03ba"]), type$.JSArray_dynamic); B.List_OFS = A._setArrayType(makeConstList(["\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", "\u03a4\u03c1\u03af\u03c4\u03b7", "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"]), type$.JSArray_dynamic); B.List_PnF = A._setArrayType(makeConstList(["\u039a\u03c5\u03c1", "\u0394\u03b5\u03c5", "\u03a4\u03c1\u03af", "\u03a4\u03b5\u03c4", "\u03a0\u03ad\u03bc", "\u03a0\u03b1\u03c1", "\u03a3\u03ac\u03b2"]), type$.JSArray_dynamic); B.List_yDV = A._setArrayType(makeConstList(["\u039a", "\u0394", "\u03a4", "\u03a4", "\u03a0", "\u03a0", "\u03a3"]), type$.JSArray_dynamic); B.List_ZGD = A._setArrayType(makeConstList(["\u03a41", "\u03a42", "\u03a43", "\u03a44"]), type$.JSArray_dynamic); B.List_ido = A._setArrayType(makeConstList(["1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "2\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "3\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "4\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf"]), type$.JSArray_dynamic); B.List_kyy0 = A._setArrayType(makeConstList(["\u03c0.\u03bc.", "\u03bc.\u03bc."]), type$.JSArray_dynamic); B.List_INh = A._setArrayType(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); B.List_YsI = A._setArrayType(makeConstList(["{1} - {0}", "{1} - {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tEmr = new A.ConstantStringMap(25, {NAME: "el", ERAS: B.List_LJp, ERANAMES: B.List_ES1, NARROWMONTHS: B.List_sMI, STANDALONENARROWMONTHS: B.List_sMI, MONTHS: B.List_UcM, STANDALONEMONTHS: B.List_EGJ0, SHORTMONTHS: B.List_gJC, STANDALONESHORTMONTHS: B.List_oXg, WEEKDAYS: B.List_OFS, STANDALONEWEEKDAYS: B.List_OFS, SHORTWEEKDAYS: B.List_PnF, STANDALONESHORTWEEKDAYS: B.List_PnF, NARROWWEEKDAYS: B.List_yDV, STANDALONENARROWWEEKDAYS: B.List_yDV, SHORTQUARTERS: B.List_ZGD, QUARTERS: B.List_ido, AMPMS: B.List_kyy0, DATEFORMATS: B.List_INh, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_YsI}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_BC_AD0 = A._setArrayType(makeConstList(["BC", "AD"]), type$.JSArray_dynamic); B.List_6xs0 = A._setArrayType(makeConstList(["Before Christ", "Anno Domini"]), type$.JSArray_dynamic); B.List_cIc0 = A._setArrayType(makeConstList(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]), type$.JSArray_dynamic); B.List_h8w0 = A._setArrayType(makeConstList(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]), type$.JSArray_dynamic); B.List_wMy2 = A._setArrayType(makeConstList(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]), type$.JSArray_dynamic); B.List_gc60 = A._setArrayType(makeConstList(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]), type$.JSArray_dynamic); B.List_3US0 = A._setArrayType(makeConstList(["S", "M", "T", "W", "T", "F", "S"]), type$.JSArray_dynamic); B.List_bJM0 = A._setArrayType(makeConstList(["1st quarter", "2nd quarter", "3rd quarter", "4th quarter"]), type$.JSArray_dynamic); B.List_cno0 = A._setArrayType(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "M/d/yy"]), type$.JSArray_dynamic); B.List_iDZ1 = A._setArrayType(makeConstList(["{1} 'at' {0}", "{1} 'at' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tOTP = new A.ConstantStringMap(25, {NAME: "en", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_r5C = A._setArrayType(makeConstList(["Su.", "M.", "Tu.", "W.", "Th.", "F.", "Sa."]), type$.JSArray_dynamic); B.List_am_pm = A._setArrayType(makeConstList(["am", "pm"]), type$.JSArray_dynamic); B.Map_5tifn = new A.ConstantStringMap(25, {NAME: "en_AU", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_r5C, STANDALONENARROWWEEKDAYS: B.List_r5C, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_am_pm, DATEFORMATS: B.List_INh, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EKW = A._setArrayType(makeConstList(["Jan.", "Feb.", "Mar.", "Apr.", "May", "Jun.", "Jul.", "Aug.", "Sep.", "Oct.", "Nov.", "Dec."]), type$.JSArray_dynamic); B.List_gg41 = A._setArrayType(makeConstList(["Sun.", "Mon.", "Tue.", "Wed.", "Thu.", "Fri.", "Sat."]), type$.JSArray_dynamic); B.List_2fJ = A._setArrayType(makeConstList(["a.m.", "p.m."]), type$.JSArray_dynamic); B.List_U4G = A._setArrayType(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "y-MM-dd"]), type$.JSArray_dynamic); B.Map_5t0 = new A.ConstantStringMap(25, {NAME: "en_CA", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_EKW, STANDALONESHORTMONTHS: B.List_EKW, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gg41, STANDALONESHORTWEEKDAYS: B.List_gg41, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_2fJ, DATEFORMATS: B.List_U4G, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ml50 = A._setArrayType(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); B.Map_5t3mV = new A.ConstantStringMap(25, {NAME: "en_GB", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_am_pm, DATEFORMATS: B.List_ml50, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_IF2 = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); B.Map_5tE4y = new A.ConstantStringMap(25, {NAME: "en_IE", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_2fJ, DATEFORMATS: B.List_IF2, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_IMB = A._setArrayType(makeConstList(["EEEE, d MMMM, y", "d MMMM y", "dd-MMM-y", "dd/MM/yy"]), type$.JSArray_dynamic); B.List_6_6 = A._setArrayType(makeConstList([6, 6]), type$.JSArray_dynamic); B.Map_5tmFp = new A.ConstantStringMap(25, {NAME: "en_IN", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_am_pm, DATEFORMATS: B.List_IMB, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_5tU48 = new A.ConstantStringMap(25, {NAME: "en_SG", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_am_pm, DATEFORMATS: B.List_INh, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_5tgRf = new A.ConstantStringMap(25, {NAME: "en_US", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Wzh = A._setArrayType(makeConstList(["EEEE, dd MMMM y", "dd MMMM y", "dd MMM y", "y/MM/dd"]), type$.JSArray_dynamic); B.Map_5t43h = new A.ConstantStringMap(25, {NAME: "en_ZA", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_cIc0, STANDALONEMONTHS: B.List_cIc0, SHORTMONTHS: B.List_h8w0, STANDALONESHORTMONTHS: B.List_h8w0, WEEKDAYS: B.List_wMy2, STANDALONEWEEKDAYS: B.List_wMy2, SHORTWEEKDAYS: B.List_gc60, STANDALONESHORTWEEKDAYS: B.List_gc60, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_bJM0, AMPMS: B.List_am_pm, DATEFORMATS: B.List_Wzh, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iDZ1}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_AiM = A._setArrayType(makeConstList(["a. C.", "d. C."]), type$.JSArray_dynamic); B.List_YZj = A._setArrayType(makeConstList(["antes de Cristo", "despu\xe9s de Cristo"]), type$.JSArray_dynamic); B.List_Etd = A._setArrayType(makeConstList(["E", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_8Cn = A._setArrayType(makeConstList(["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"]), type$.JSArray_dynamic); B.List_gc61 = A._setArrayType(makeConstList(["ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sept.", "oct.", "nov.", "dic."]), type$.JSArray_dynamic); B.List_Cs5 = A._setArrayType(makeConstList(["domingo", "lunes", "martes", "mi\xe9rcoles", "jueves", "viernes", "s\xe1bado"]), type$.JSArray_dynamic); B.List_fHj = A._setArrayType(makeConstList(["dom.", "lun.", "mar.", "mi\xe9.", "jue.", "vie.", "s\xe1b."]), type$.JSArray_dynamic); B.List_gkc2 = A._setArrayType(makeConstList(["D", "L", "M", "X", "J", "V", "S"]), type$.JSArray_dynamic); B.List_T1_T2_T3_T4 = A._setArrayType(makeConstList(["T1", "T2", "T3", "T4"]), type$.JSArray_dynamic); B.List_2Vk4 = A._setArrayType(makeConstList(["1.er trimestre", "2.\xba trimestre", "3.er trimestre", "4.\xba trimestre"]), type$.JSArray_dynamic); B.List_st1 = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); B.List_8XQ = A._setArrayType(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); B.List_XMt = A._setArrayType(makeConstList(["{1}, {0}", "{1}, {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tQ5r = new A.ConstantStringMap(25, {NAME: "es", ERAS: B.List_AiM, ERANAMES: B.List_YZj, NARROWMONTHS: B.List_Etd, STANDALONENARROWMONTHS: B.List_Etd, MONTHS: B.List_8Cn, STANDALONEMONTHS: B.List_8Cn, SHORTMONTHS: B.List_gc61, STANDALONESHORTMONTHS: B.List_gc61, WEEKDAYS: B.List_Cs5, STANDALONEWEEKDAYS: B.List_Cs5, SHORTWEEKDAYS: B.List_fHj, STANDALONESHORTWEEKDAYS: B.List_fHj, NARROWWEEKDAYS: B.List_gkc2, STANDALONENARROWWEEKDAYS: B.List_gkc2, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_2Vk4, AMPMS: B.List_kWM, DATEFORMATS: B.List_st1, TIMEFORMATS: B.List_8XQ, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_XMt}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_XGb = A._setArrayType(makeConstList(["ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sep.", "oct.", "nov.", "dic."]), type$.JSArray_dynamic); B.List_aJC = A._setArrayType(makeConstList(["d", "l", "m", "m", "j", "v", "s"]), type$.JSArray_dynamic); B.List_ROW = A._setArrayType(makeConstList(["D", "L", "M", "M", "J", "V", "S"]), type$.JSArray_dynamic); B.List_GfX = A._setArrayType(makeConstList(["1.\xba trimestre", "2.\xba trimestre", "3.\xba trimestre", "4.\xba trimestre"]), type$.JSArray_dynamic); B.Map_5tI8w = new A.ConstantStringMap(25, {NAME: "es_419", ERAS: B.List_AiM, ERANAMES: B.List_YZj, NARROWMONTHS: B.List_Etd, STANDALONENARROWMONTHS: B.List_Etd, MONTHS: B.List_8Cn, STANDALONEMONTHS: B.List_8Cn, SHORTMONTHS: B.List_XGb, STANDALONESHORTMONTHS: B.List_XGb, WEEKDAYS: B.List_Cs5, STANDALONEWEEKDAYS: B.List_Cs5, SHORTWEEKDAYS: B.List_fHj, STANDALONESHORTWEEKDAYS: B.List_fHj, NARROWWEEKDAYS: B.List_aJC, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_GfX, AMPMS: B.List_2fJ, DATEFORMATS: B.List_st1, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_XMt}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ZDx = A._setArrayType(makeConstList(["1er. trim.", "2\xba. trim.", "3er. trim.", "4\xba trim."]), type$.JSArray_dynamic); B.List_Xmb = A._setArrayType(makeConstList(["1.er trimestre", "2\xba. trimestre", "3.er trimestre", "4o. trimestre"]), type$.JSArray_dynamic); B.List_qq1 = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); B.Map_5t2jN = new A.ConstantStringMap(25, {NAME: "es_MX", ERAS: B.List_AiM, ERANAMES: B.List_YZj, NARROWMONTHS: B.List_Etd, STANDALONENARROWMONTHS: B.List_Etd, MONTHS: B.List_8Cn, STANDALONEMONTHS: B.List_8Cn, SHORTMONTHS: B.List_XGb, STANDALONESHORTMONTHS: B.List_XGb, WEEKDAYS: B.List_Cs5, STANDALONEWEEKDAYS: B.List_Cs5, SHORTWEEKDAYS: B.List_fHj, STANDALONESHORTWEEKDAYS: B.List_fHj, NARROWWEEKDAYS: B.List_ROW, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_ZDx, QUARTERS: B.List_Xmb, AMPMS: B.List_kWM, DATEFORMATS: B.List_qq1, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_XMt}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_WJ7 = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "d/M/y"]), type$.JSArray_dynamic); B.Map_5tzHO = new A.ConstantStringMap(25, {NAME: "es_US", ERAS: B.List_AiM, ERANAMES: B.List_YZj, NARROWMONTHS: B.List_Etd, STANDALONENARROWMONTHS: B.List_Etd, MONTHS: B.List_8Cn, STANDALONEMONTHS: B.List_8Cn, SHORTMONTHS: B.List_XGb, STANDALONESHORTMONTHS: B.List_XGb, WEEKDAYS: B.List_Cs5, STANDALONEWEEKDAYS: B.List_Cs5, SHORTWEEKDAYS: B.List_fHj, STANDALONESHORTWEEKDAYS: B.List_fHj, NARROWWEEKDAYS: B.List_ROW, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_2Vk4, AMPMS: B.List_kWM, DATEFORMATS: B.List_WJ7, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_XMt}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_eKr_pKr = A._setArrayType(makeConstList(["eKr", "pKr"]), type$.JSArray_dynamic); B.List_Qq8 = A._setArrayType(makeConstList(["enne Kristust", "p\xe4rast Kristust"]), type$.JSArray_dynamic); B.List_xEc = A._setArrayType(makeConstList(["J", "V", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_FQu = A._setArrayType(makeConstList(["jaanuar", "veebruar", "m\xe4rts", "aprill", "mai", "juuni", "juuli", "august", "september", "oktoober", "november", "detsember"]), type$.JSArray_dynamic); B.List_Rss = A._setArrayType(makeConstList(["jaan", "veebr", "m\xe4rts", "apr", "mai", "juuni", "juuli", "aug", "sept", "okt", "nov", "dets"]), type$.JSArray_dynamic); B.List_C3o = A._setArrayType(makeConstList(["p\xfchap\xe4ev", "esmasp\xe4ev", "teisip\xe4ev", "kolmap\xe4ev", "neljap\xe4ev", "reede", "laup\xe4ev"]), type$.JSArray_dynamic); B.List_Avr = A._setArrayType(makeConstList(["P", "E", "T", "K", "N", "R", "L"]), type$.JSArray_dynamic); B.List_GSJ = A._setArrayType(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5t81A = new A.ConstantStringMap(25, {NAME: "et", ERAS: B.List_eKr_pKr, ERANAMES: B.List_Qq8, NARROWMONTHS: B.List_xEc, STANDALONENARROWMONTHS: B.List_xEc, MONTHS: B.List_FQu, STANDALONEMONTHS: B.List_FQu, SHORTMONTHS: B.List_Rss, STANDALONESHORTMONTHS: B.List_Rss, WEEKDAYS: B.List_C3o, STANDALONEWEEKDAYS: B.List_C3o, SHORTWEEKDAYS: B.List_Avr, STANDALONESHORTWEEKDAYS: B.List_Avr, NARROWWEEKDAYS: B.List_Avr, STANDALONENARROWWEEKDAYS: B.List_Avr, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_wg3, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_GSJ, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_6O2 = A._setArrayType(makeConstList(["K.a.", "K.o."]), type$.JSArray_dynamic); B.List_TW6 = A._setArrayType(makeConstList(["K.a.", "Kristo ondoren"]), type$.JSArray_dynamic); B.List_Jgv = A._setArrayType(makeConstList(["U", "O", "M", "A", "M", "E", "U", "A", "I", "U", "A", "A"]), type$.JSArray_dynamic); B.List_Vab = A._setArrayType(makeConstList(["urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina", "uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua"]), type$.JSArray_dynamic); B.List_P1S = A._setArrayType(makeConstList(["urt.", "ots.", "mar.", "api.", "mai.", "eka.", "uzt.", "abu.", "ira.", "urr.", "aza.", "abe."]), type$.JSArray_dynamic); B.List_kfn = A._setArrayType(makeConstList(["igandea", "astelehena", "asteartea", "asteazkena", "osteguna", "ostirala", "larunbata"]), type$.JSArray_dynamic); B.List_06 = A._setArrayType(makeConstList(["ig.", "al.", "ar.", "az.", "og.", "or.", "lr."]), type$.JSArray_dynamic); B.List_KYO = A._setArrayType(makeConstList(["I", "A", "A", "A", "O", "O", "L"]), type$.JSArray_dynamic); B.List_5cf = A._setArrayType(makeConstList(["1Hh", "2Hh", "3Hh", "4Hh"]), type$.JSArray_dynamic); B.List_x4k = A._setArrayType(makeConstList(["1. hiruhilekoa", "2. hiruhilekoa", "3. hiruhilekoa", "4. hiruhilekoa"]), type$.JSArray_dynamic); B.List_Wzv = A._setArrayType(makeConstList(["y('e')'ko' MMMM'ren' d('a'), EEEE", "y('e')'ko' MMMM'ren' d('a')", "y('e')'ko' MMM d('a')", "yy/M/d"]), type$.JSArray_dynamic); B.List_unc = A._setArrayType(makeConstList(["HH:mm:ss (zzzz)", "HH:mm:ss (z)", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.Map_5tuAF = new A.ConstantStringMap(25, {NAME: "eu", ERAS: B.List_6O2, ERANAMES: B.List_TW6, NARROWMONTHS: B.List_Jgv, STANDALONENARROWMONTHS: B.List_Jgv, MONTHS: B.List_Vab, STANDALONEMONTHS: B.List_Vab, SHORTMONTHS: B.List_P1S, STANDALONESHORTMONTHS: B.List_P1S, WEEKDAYS: B.List_kfn, STANDALONEWEEKDAYS: B.List_kfn, SHORTWEEKDAYS: B.List_06, STANDALONESHORTWEEKDAYS: B.List_06, NARROWWEEKDAYS: B.List_KYO, STANDALONENARROWWEEKDAYS: B.List_KYO, SHORTQUARTERS: B.List_5cf, QUARTERS: B.List_x4k, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_Wzv, TIMEFORMATS: B.List_unc, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_8xd = A._setArrayType(makeConstList(["\u0642.\u0645.", "\u0645."]), type$.JSArray_dynamic); B.List_Jik = A._setArrayType(makeConstList(["\u0642\u0628\u0644 \u0627\u0632 \u0645\u06cc\u0644\u0627\u062f", "\u0645\u06cc\u0644\u0627\u062f\u06cc"]), type$.JSArray_dynamic); B.List_gkc3 = A._setArrayType(makeConstList(["\u0698", "\u0641", "\u0645", "\u0622", "\u0645", "\u0698", "\u0698", "\u0627", "\u0633", "\u0627", "\u0646", "\u062f"]), type$.JSArray_dynamic); B.List_qRH = A._setArrayType(makeConstList(["\u0698\u0627\u0646\u0648\u06cc\u0647\u0654", "\u0641\u0648\u0631\u06cc\u0647\u0654", "\u0645\u0627\u0631\u0633", "\u0622\u0648\u0631\u06cc\u0644", "\u0645\u0647\u0654", "\u0698\u0648\u0626\u0646", "\u0698\u0648\u0626\u06cc\u0647\u0654", "\u0627\u0648\u062a", "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0628\u0631", "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_dtr = A._setArrayType(makeConstList(["\u0698\u0627\u0646\u0648\u06cc\u0647", "\u0641\u0648\u0631\u06cc\u0647", "\u0645\u0627\u0631\u0633", "\u0622\u0648\u0631\u06cc\u0644", "\u0645\u0647", "\u0698\u0648\u0626\u0646", "\u0698\u0648\u0626\u06cc\u0647", "\u0627\u0648\u062a", "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0628\u0631", "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_wEo2 = A._setArrayType(makeConstList(["\u06cc\u06a9\u0634\u0646\u0628\u0647", "\u062f\u0648\u0634\u0646\u0628\u0647", "\u0633\u0647\u200c\u0634\u0646\u0628\u0647", "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647", "\u067e\u0646\u062c\u0634\u0646\u0628\u0647", "\u062c\u0645\u0639\u0647", "\u0634\u0646\u0628\u0647"]), type$.JSArray_dynamic); B.List_heL = A._setArrayType(makeConstList(["\u06cc", "\u062f", "\u0633", "\u0686", "\u067e", "\u062c", "\u0634"]), type$.JSArray_dynamic); B.List_P92 = A._setArrayType(makeConstList(["\u0633\u200c\u0645\u06f1", "\u0633\u200c\u0645\u06f2", "\u0633\u200c\u0645\u06f3", "\u0633\u200c\u0645\u06f4"]), type$.JSArray_dynamic); B.List_mnR = A._setArrayType(makeConstList(["\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0627\u0648\u0644", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u062f\u0648\u0645", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0633\u0648\u0645", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0686\u0647\u0627\u0631\u0645"]), type$.JSArray_dynamic); B.List_bpf = A._setArrayType(makeConstList(["\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631", "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"]), type$.JSArray_dynamic); B.List_gkc4 = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "y/M/d"]), type$.JSArray_dynamic); B.List_GxC = A._setArrayType(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss (z)", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); B.List_4_4 = A._setArrayType(makeConstList([4, 4]), type$.JSArray_dynamic); B.List_aIZ = A._setArrayType(makeConstList(["{1}\u060c \u0633\u0627\u0639\u062a {0}", "{1}\u060c \u0633\u0627\u0639\u062a {0}", "{1}\u060c\u200f {0}", "{1}\u060c\u200f {0}"]), type$.JSArray_dynamic); B.Map_bH8aB = new A.ConstantStringMap(26, {NAME: "fa", ERAS: B.List_8xd, ERANAMES: B.List_Jik, NARROWMONTHS: B.List_gkc3, STANDALONENARROWMONTHS: B.List_gkc3, MONTHS: B.List_qRH, STANDALONEMONTHS: B.List_dtr, SHORTMONTHS: B.List_qRH, STANDALONESHORTMONTHS: B.List_dtr, WEEKDAYS: B.List_wEo2, STANDALONEWEEKDAYS: B.List_wEo2, SHORTWEEKDAYS: B.List_wEo2, STANDALONESHORTWEEKDAYS: B.List_wEo2, NARROWWEEKDAYS: B.List_heL, STANDALONENARROWWEEKDAYS: B.List_heL, SHORTQUARTERS: B.List_P92, QUARTERS: B.List_mnR, AMPMS: B.List_bpf, DATEFORMATS: B.List_gkc4, TIMEFORMATS: B.List_GxC, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: B.List_4_4, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: B.List_aIZ, ZERODIGIT: "\u06f0"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_YbV = A._setArrayType(makeConstList(["eKr.", "jKr."]), type$.JSArray_dynamic); B.List_unc0 = A._setArrayType(makeConstList(["ennen Kristuksen syntym\xe4\xe4", "j\xe4lkeen Kristuksen syntym\xe4n"]), type$.JSArray_dynamic); B.List_4CA0 = A._setArrayType(makeConstList(["T", "H", "M", "H", "T", "K", "H", "E", "S", "L", "M", "J"]), type$.JSArray_dynamic); B.List_2fz = A._setArrayType(makeConstList(["tammikuuta", "helmikuuta", "maaliskuuta", "huhtikuuta", "toukokuuta", "kes\xe4kuuta", "hein\xe4kuuta", "elokuuta", "syyskuuta", "lokakuuta", "marraskuuta", "joulukuuta"]), type$.JSArray_dynamic); B.List_33h0 = A._setArrayType(makeConstList(["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kes\xe4kuu", "hein\xe4kuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"]), type$.JSArray_dynamic); B.List_xw8 = A._setArrayType(makeConstList(["tammik.", "helmik.", "maalisk.", "huhtik.", "toukok.", "kes\xe4k.", "hein\xe4k.", "elok.", "syysk.", "lokak.", "marrask.", "jouluk."]), type$.JSArray_dynamic); B.List_u36 = A._setArrayType(makeConstList(["tammi", "helmi", "maalis", "huhti", "touko", "kes\xe4", "hein\xe4", "elo", "syys", "loka", "marras", "joulu"]), type$.JSArray_dynamic); B.List_YeU = A._setArrayType(makeConstList(["sunnuntaina", "maanantaina", "tiistaina", "keskiviikkona", "torstaina", "perjantaina", "lauantaina"]), type$.JSArray_dynamic); B.List_k71 = A._setArrayType(makeConstList(["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"]), type$.JSArray_dynamic); B.List_sYy = A._setArrayType(makeConstList(["su", "ma", "ti", "ke", "to", "pe", "la"]), type$.JSArray_dynamic); B.List_my0 = A._setArrayType(makeConstList(["S", "M", "T", "K", "T", "P", "L"]), type$.JSArray_dynamic); B.List_UEQ0 = A._setArrayType(makeConstList(["1. nelj.", "2. nelj.", "3. nelj.", "4. nelj."]), type$.JSArray_dynamic); B.List_LB9 = A._setArrayType(makeConstList(["1. nelj\xe4nnes", "2. nelj\xe4nnes", "3. nelj\xe4nnes", "4. nelj\xe4nnes"]), type$.JSArray_dynamic); B.List_ifL = A._setArrayType(makeConstList(["ap.", "ip."]), type$.JSArray_dynamic); B.List_6pZ = A._setArrayType(makeConstList(["cccc d. MMMM y", "d. MMMM y", "d.M.y", "d.M.y"]), type$.JSArray_dynamic); B.List_2jN = A._setArrayType(makeConstList(["H.mm.ss zzzz", "H.mm.ss z", "H.mm.ss", "H.mm"]), type$.JSArray_dynamic); B.List_oyn = A._setArrayType(makeConstList(["{1} 'klo' {0}", "{1} 'klo' {0}", "{1} 'klo' {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tMIV = new A.ConstantStringMap(25, {NAME: "fi", ERAS: B.List_YbV, ERANAMES: B.List_unc0, NARROWMONTHS: B.List_4CA0, STANDALONENARROWMONTHS: B.List_4CA0, MONTHS: B.List_2fz, STANDALONEMONTHS: B.List_33h0, SHORTMONTHS: B.List_xw8, STANDALONESHORTMONTHS: B.List_u36, WEEKDAYS: B.List_YeU, STANDALONEWEEKDAYS: B.List_k71, SHORTWEEKDAYS: B.List_sYy, STANDALONESHORTWEEKDAYS: B.List_sYy, NARROWWEEKDAYS: B.List_my0, STANDALONENARROWWEEKDAYS: B.List_my0, SHORTQUARTERS: B.List_UEQ0, QUARTERS: B.List_LB9, AMPMS: B.List_ifL, DATEFORMATS: B.List_6pZ, TIMEFORMATS: B.List_2jN, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_oyn}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Duo = A._setArrayType(makeConstList(["Ene", "Peb", "Mar", "Abr", "May", "Hun", "Hul", "Ago", "Set", "Okt", "Nob", "Dis"]), type$.JSArray_dynamic); B.List_I1L = A._setArrayType(makeConstList(["E", "P", "M", "A", "M", "Hun", "Hul", "Ago", "Set", "Okt", "Nob", "Dis"]), type$.JSArray_dynamic); B.List_hSa = A._setArrayType(makeConstList(["Enero", "Pebrero", "Marso", "Abril", "Mayo", "Hunyo", "Hulyo", "Agosto", "Setyembre", "Oktubre", "Nobyembre", "Disyembre"]), type$.JSArray_dynamic); B.List_xw80 = A._setArrayType(makeConstList(["Linggo", "Lunes", "Martes", "Miyerkules", "Huwebes", "Biyernes", "Sabado"]), type$.JSArray_dynamic); B.List_sdO = A._setArrayType(makeConstList(["Lin", "Lun", "Mar", "Miy", "Huw", "Biy", "Sab"]), type$.JSArray_dynamic); B.List_ciW = A._setArrayType(makeConstList(["ika-1 quarter", "ika-2 quarter", "ika-3 quarter", "ika-4 na quarter"]), type$.JSArray_dynamic); B.List_QkZ = A._setArrayType(makeConstList(["{1} 'nang' {0}", "{1} 'nang' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tGfX = new A.ConstantStringMap(25, {NAME: "fil", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_Duo, STANDALONENARROWMONTHS: B.List_I1L, MONTHS: B.List_hSa, STANDALONEMONTHS: B.List_hSa, SHORTMONTHS: B.List_Duo, STANDALONESHORTMONTHS: B.List_Duo, WEEKDAYS: B.List_xw80, STANDALONEWEEKDAYS: B.List_xw80, SHORTWEEKDAYS: B.List_sdO, STANDALONESHORTWEEKDAYS: B.List_sdO, NARROWWEEKDAYS: B.List_sdO, STANDALONENARROWWEEKDAYS: B.List_sdO, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_ciW, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_QkZ}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_adS = A._setArrayType(makeConstList(["av. J.-C.", "ap. J.-C."]), type$.JSArray_dynamic); B.List_irQ = A._setArrayType(makeConstList(["avant J\xe9sus-Christ", "apr\xe8s J\xe9sus-Christ"]), type$.JSArray_dynamic); B.List_3wE = A._setArrayType(makeConstList(["janvier", "f\xe9vrier", "mars", "avril", "mai", "juin", "juillet", "ao\xfbt", "septembre", "octobre", "novembre", "d\xe9cembre"]), type$.JSArray_dynamic); B.List_OtD = A._setArrayType(makeConstList(["janv.", "f\xe9vr.", "mars", "avr.", "mai", "juin", "juil.", "ao\xfbt", "sept.", "oct.", "nov.", "d\xe9c."]), type$.JSArray_dynamic); B.List_21f = A._setArrayType(makeConstList(["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]), type$.JSArray_dynamic); B.List_v3K = A._setArrayType(makeConstList(["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."]), type$.JSArray_dynamic); B.List_GQ8 = A._setArrayType(makeConstList(["1er trimestre", "2e trimestre", "3e trimestre", "4e trimestre"]), type$.JSArray_dynamic); B.List_b9U = A._setArrayType(makeConstList(["{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tmF3 = new A.ConstantStringMap(25, {NAME: "fr", ERAS: B.List_adS, ERANAMES: B.List_irQ, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_3wE, STANDALONEMONTHS: B.List_3wE, SHORTMONTHS: B.List_OtD, STANDALONESHORTMONTHS: B.List_OtD, WEEKDAYS: B.List_21f, STANDALONEWEEKDAYS: B.List_21f, SHORTWEEKDAYS: B.List_v3K, STANDALONESHORTWEEKDAYS: B.List_v3K, NARROWWEEKDAYS: B.List_ROW, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_GQ8, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_IF2, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_b9U}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EuK = A._setArrayType(makeConstList(["janv.", "f\xe9vr.", "mars", "avr.", "mai", "juin", "juill.", "ao\xfbt", "sept.", "oct.", "nov.", "d\xe9c."]), type$.JSArray_dynamic); B.List_qJx = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "yy-MM-dd"]), type$.JSArray_dynamic); B.List_w88 = A._setArrayType(makeConstList(["HH 'h' mm 'min' ss 's' zzzz", "HH 'h' mm 'min' ss 's' z", "HH 'h' mm 'min' ss 's'", "HH 'h' mm"]), type$.JSArray_dynamic); B.List_CDT0 = A._setArrayType(makeConstList(["{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tStJ = new A.ConstantStringMap(25, {NAME: "fr_CA", ERAS: B.List_adS, ERANAMES: B.List_irQ, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_3wE, STANDALONEMONTHS: B.List_3wE, SHORTMONTHS: B.List_EuK, STANDALONESHORTMONTHS: B.List_EuK, WEEKDAYS: B.List_21f, STANDALONEWEEKDAYS: B.List_21f, SHORTWEEKDAYS: B.List_v3K, STANDALONESHORTWEEKDAYS: B.List_v3K, NARROWWEEKDAYS: B.List_ROW, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_GQ8, AMPMS: B.List_2fJ, DATEFORMATS: B.List_qJx, TIMEFORMATS: B.List_w88, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_CDT0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_2No1 = A._setArrayType(makeConstList(["a.C.", "d.C."]), type$.JSArray_dynamic); B.List_BKg = A._setArrayType(makeConstList(["antes de Cristo", "despois de Cristo"]), type$.JSArray_dynamic); B.List_Tqn = A._setArrayType(makeConstList(["x.", "f.", "m.", "a.", "m.", "x.", "x.", "a.", "s.", "o.", "n.", "d."]), type$.JSArray_dynamic); B.List_a5W0 = A._setArrayType(makeConstList(["X", "F", "M", "A", "M", "X", "X", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_GRA = A._setArrayType(makeConstList(["xaneiro", "febreiro", "marzo", "abril", "maio", "xu\xf1o", "xullo", "agosto", "setembro", "outubro", "novembro", "decembro"]), type$.JSArray_dynamic); B.List_56S = A._setArrayType(makeConstList(["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xu\xf1o", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"]), type$.JSArray_dynamic); B.List_MX8 = A._setArrayType(makeConstList(["xan.", "feb.", "mar.", "abr.", "maio", "xu\xf1o", "xul.", "ago.", "set.", "out.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_blc0 = A._setArrayType(makeConstList(["Xan.", "Feb.", "Mar.", "Abr.", "Maio", "Xu\xf1o", "Xul.", "Ago.", "Set.", "Out.", "Nov.", "Dec."]), type$.JSArray_dynamic); B.List_6TA = A._setArrayType(makeConstList(["domingo", "luns", "martes", "m\xe9rcores", "xoves", "venres", "s\xe1bado"]), type$.JSArray_dynamic); B.List_FKj = A._setArrayType(makeConstList(["Domingo", "Luns", "Martes", "M\xe9rcores", "Xoves", "Venres", "S\xe1bado"]), type$.JSArray_dynamic); B.List_Pxa = A._setArrayType(makeConstList(["dom.", "luns", "mar.", "m\xe9r.", "xov.", "ven.", "s\xe1b."]), type$.JSArray_dynamic); B.List_m9N = A._setArrayType(makeConstList(["Dom.", "Luns", "Mar.", "M\xe9r.", "Xov.", "Ven.", "S\xe1b."]), type$.JSArray_dynamic); B.List_gkc5 = A._setArrayType(makeConstList(["d.", "l.", "m.", "m.", "x.", "v.", "s."]), type$.JSArray_dynamic); B.List_KYU = A._setArrayType(makeConstList(["D", "L", "M", "M", "X", "V", "S"]), type$.JSArray_dynamic); B.List_Ao9 = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d 'de' MMM 'de' y", "dd/MM/yy"]), type$.JSArray_dynamic); B.List_QGQ = A._setArrayType(makeConstList(["{0} 'do' {1}", "{0} 'do' {1}", "{0}, {1}", "{0}, {1}"]), type$.JSArray_dynamic); B.Map_5t0iF = new A.ConstantStringMap(25, {NAME: "gl", ERAS: B.List_2No1, ERANAMES: B.List_BKg, NARROWMONTHS: B.List_Tqn, STANDALONENARROWMONTHS: B.List_a5W0, MONTHS: B.List_GRA, STANDALONEMONTHS: B.List_56S, SHORTMONTHS: B.List_MX8, STANDALONESHORTMONTHS: B.List_blc0, WEEKDAYS: B.List_6TA, STANDALONEWEEKDAYS: B.List_FKj, SHORTWEEKDAYS: B.List_Pxa, STANDALONESHORTWEEKDAYS: B.List_m9N, NARROWWEEKDAYS: B.List_gkc5, STANDALONENARROWWEEKDAYS: B.List_KYU, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_GfX, AMPMS: B.List_2fJ, DATEFORMATS: B.List_Ao9, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_QGQ}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_69P = A._setArrayType(makeConstList(["Januar", "Februar", "M\xe4rz", "April", "Mai", "Juni", "Juli", "Auguscht", "Sept\xe4mber", "Oktoober", "Nov\xe4mber", "Dez\xe4mber"]), type$.JSArray_dynamic); B.List_bxS = A._setArrayType(makeConstList(["Sunntig", "M\xe4\xe4ntig", "Ziischtig", "Mittwuch", "Dunschtig", "Friitig", "Samschtig"]), type$.JSArray_dynamic); B.List_rGN = A._setArrayType(makeConstList(["Su.", "M\xe4.", "Zi.", "Mi.", "Du.", "Fr.", "Sa."]), type$.JSArray_dynamic); B.List_gLW = A._setArrayType(makeConstList(["am Vormittag", "am Namittag"]), type$.JSArray_dynamic); B.Map_5tXzX = new A.ConstantStringMap(25, {NAME: "gsw", ERAS: B.List_znv, ERANAMES: B.List_znv, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_69P, STANDALONEMONTHS: B.List_69P, SHORTMONTHS: B.List_AgZ, STANDALONESHORTMONTHS: B.List_AgZ, WEEKDAYS: B.List_bxS, STANDALONEWEEKDAYS: B.List_bxS, SHORTWEEKDAYS: B.List_rGN, STANDALONESHORTWEEKDAYS: B.List_rGN, NARROWWEEKDAYS: B.List_6v8, STANDALONENARROWWEEKDAYS: B.List_6v8, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_2No0, AMPMS: B.List_gLW, DATEFORMATS: B.List_mGN, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_fXI = A._setArrayType(makeConstList(["\u0a88.\u0ab8.\u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7", "\u0a88.\u0ab8."]), type$.JSArray_dynamic); B.List_knt = A._setArrayType(makeConstList(["\u0a88\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8 \u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7", "\u0a87\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8"]), type$.JSArray_dynamic); B.List_JUC = A._setArrayType(makeConstList(["\u0a9c\u0abe", "\u0aab\u0ac7", "\u0aae\u0abe", "\u0a8f", "\u0aae\u0ac7", "\u0a9c\u0ac2", "\u0a9c\u0ac1", "\u0a91", "\u0ab8", "\u0a91", "\u0aa8", "\u0aa1\u0abf"]), type$.JSArray_dynamic); B.List_Tbc = A._setArrayType(makeConstList(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0", "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0", "\u0aae\u0abe\u0ab0\u0acd\u0a9a", "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", "\u0aae\u0ac7", "\u0a9c\u0ac2\u0aa8", "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", "\u0a91\u0a97\u0ab8\u0acd\u0a9f", "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0", "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0", "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0", "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"]), type$.JSArray_dynamic); B.List_ZqO = A._setArrayType(makeConstList(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1", "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1", "\u0aae\u0abe\u0ab0\u0acd\u0a9a", "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", "\u0aae\u0ac7", "\u0a9c\u0ac2\u0aa8", "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", "\u0a91\u0a97\u0ab8\u0acd\u0a9f", "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7", "\u0a91\u0a95\u0acd\u0a9f\u0acb", "\u0aa8\u0ab5\u0ac7", "\u0aa1\u0abf\u0ab8\u0ac7"]), type$.JSArray_dynamic); B.List_sBb = A._setArrayType(makeConstList(["\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0", "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0", "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0", "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0", "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0", "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0", "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"]), type$.JSArray_dynamic); B.List_YVI0 = A._setArrayType(makeConstList(["\u0ab0\u0ab5\u0abf", "\u0ab8\u0acb\u0aae", "\u0aae\u0a82\u0a97\u0ab3", "\u0aac\u0ac1\u0aa7", "\u0a97\u0ac1\u0ab0\u0ac1", "\u0ab6\u0ac1\u0a95\u0acd\u0ab0", "\u0ab6\u0aa8\u0abf"]), type$.JSArray_dynamic); B.List_Y62 = A._setArrayType(makeConstList(["\u0ab0", "\u0ab8\u0acb", "\u0aae\u0a82", "\u0aac\u0ac1", "\u0a97\u0ac1", "\u0ab6\u0ac1", "\u0ab6"]), type$.JSArray_dynamic); B.List_BDv = A._setArrayType(makeConstList(["1\u0ab2\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "2\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "3\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "4\u0aa5\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8"]), type$.JSArray_dynamic); B.List_TWS = A._setArrayType(makeConstList(["hh:mm:ss a zzzz", "hh:mm:ss a z", "hh:mm:ss a", "hh:mm a"]), type$.JSArray_dynamic); B.List_23h0 = A._setArrayType(makeConstList(["{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7", "{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tyXb = new A.ConstantStringMap(25, {NAME: "gu", ERAS: B.List_fXI, ERANAMES: B.List_knt, NARROWMONTHS: B.List_JUC, STANDALONENARROWMONTHS: B.List_JUC, MONTHS: B.List_Tbc, STANDALONEMONTHS: B.List_Tbc, SHORTMONTHS: B.List_ZqO, STANDALONESHORTMONTHS: B.List_ZqO, WEEKDAYS: B.List_sBb, STANDALONEWEEKDAYS: B.List_sBb, SHORTWEEKDAYS: B.List_YVI0, STANDALONESHORTWEEKDAYS: B.List_YVI0, NARROWWEEKDAYS: B.List_Y62, STANDALONENARROWWEEKDAYS: B.List_Y62, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_BDv, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_oYk, TIMEFORMATS: B.List_TWS, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_23h0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_10r = A._setArrayType(makeConstList(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e1", "\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]), type$.JSArray_dynamic); B.List_yzJ0 = A._setArrayType(makeConstList(["\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e1\u05e4\u05d9\u05e8\u05d4", "\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]), type$.JSArray_dynamic); B.List_3Re = A._setArrayType(makeConstList(["\u05d9\u05e0\u05d5\u05d0\u05e8", "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8", "\u05de\u05e8\u05e5", "\u05d0\u05e4\u05e8\u05d9\u05dc", "\u05de\u05d0\u05d9", "\u05d9\u05d5\u05e0\u05d9", "\u05d9\u05d5\u05dc\u05d9", "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", "\u05d3\u05e6\u05de\u05d1\u05e8"]), type$.JSArray_dynamic); B.List_2Rm = A._setArrayType(makeConstList(["\u05d9\u05e0\u05d5\u05f3", "\u05e4\u05d1\u05e8\u05f3", "\u05de\u05e8\u05e5", "\u05d0\u05e4\u05e8\u05f3", "\u05de\u05d0\u05d9", "\u05d9\u05d5\u05e0\u05d9", "\u05d9\u05d5\u05dc\u05d9", "\u05d0\u05d5\u05d2\u05f3", "\u05e1\u05e4\u05d8\u05f3", "\u05d0\u05d5\u05e7\u05f3", "\u05e0\u05d5\u05d1\u05f3", "\u05d3\u05e6\u05de\u05f3"]), type$.JSArray_dynamic); B.List_2nm0 = A._setArrayType(makeConstList(["\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df", "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9", "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"]), type$.JSArray_dynamic); B.List_4Ep = A._setArrayType(makeConstList(["\u05d9\u05d5\u05dd \u05d0\u05f3", "\u05d9\u05d5\u05dd \u05d1\u05f3", "\u05d9\u05d5\u05dd \u05d2\u05f3", "\u05d9\u05d5\u05dd \u05d3\u05f3", "\u05d9\u05d5\u05dd \u05d4\u05f3", "\u05d9\u05d5\u05dd \u05d5\u05f3", "\u05e9\u05d1\u05ea"]), type$.JSArray_dynamic); B.List_IIV = A._setArrayType(makeConstList(["\u05d0\u05f3", "\u05d1\u05f3", "\u05d2\u05f3", "\u05d3\u05f3", "\u05d4\u05f3", "\u05d5\u05f3", "\u05e9\u05f3"]), type$.JSArray_dynamic); B.List_497 = A._setArrayType(makeConstList(["\u05e8\u05d1\u05e2\u05d5\u05df 1", "\u05e8\u05d1\u05e2\u05d5\u05df 2", "\u05e8\u05d1\u05e2\u05d5\u05df 3", "\u05e8\u05d1\u05e2\u05d5\u05df 4"]), type$.JSArray_dynamic); B.List_uAX = A._setArrayType(makeConstList(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6", "\u05d0\u05d7\u05d4\u05f4\u05e6"]), type$.JSArray_dynamic); B.List_gGk = A._setArrayType(makeConstList(["EEEE, d \u05d1MMMM y", "d \u05d1MMMM y", "d \u05d1MMM y", "d.M.y"]), type$.JSArray_dynamic); B.List_cdS = A._setArrayType(makeConstList(["{1} \u05d1\u05e9\u05e2\u05d4 {0}", "{1} \u05d1\u05e9\u05e2\u05d4 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5t1NX = new A.ConstantStringMap(25, {NAME: "he", ERAS: B.List_10r, ERANAMES: B.List_yzJ0, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_3Re, STANDALONEMONTHS: B.List_3Re, SHORTMONTHS: B.List_2Rm, STANDALONESHORTMONTHS: B.List_2Rm, WEEKDAYS: B.List_2nm0, STANDALONEWEEKDAYS: B.List_2nm0, SHORTWEEKDAYS: B.List_4Ep, STANDALONESHORTWEEKDAYS: B.List_4Ep, NARROWWEEKDAYS: B.List_IIV, STANDALONENARROWWEEKDAYS: B.List_IIV, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_497, AMPMS: B.List_uAX, DATEFORMATS: B.List_gGk, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_4_5, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_cdS}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_MON = A._setArrayType(makeConstList(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u094d\u0935\u0940"]), type$.JSArray_dynamic); B.List_2uL0 = A._setArrayType(makeConstList(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u0935\u0940 \u0938\u0928"]), type$.JSArray_dynamic); B.List_ClP = A._setArrayType(makeConstList(["\u091c", "\u092b\u093c", "\u092e\u093e", "\u0905", "\u092e", "\u091c\u0942", "\u091c\u0941", "\u0905", "\u0938\u093f", "\u0905", "\u0928", "\u0926\u093f"]), type$.JSArray_dynamic); B.List_xY6 = A._setArrayType(makeConstList(["\u091c\u0928\u0935\u0930\u0940", "\u092b\u093c\u0930\u0935\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u0948\u0932", "\u092e\u0908", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u093e\u0908", "\u0905\u0917\u0938\u094d\u0924", "\u0938\u093f\u0924\u0902\u092c\u0930", "\u0905\u0915\u094d\u0924\u0942\u092c\u0930", "\u0928\u0935\u0902\u092c\u0930", "\u0926\u093f\u0938\u0902\u092c\u0930"]), type$.JSArray_dynamic); B.List_oyU1 = A._setArrayType(makeConstList(["\u091c\u0928\u0970", "\u092b\u093c\u0930\u0970", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u0948\u0932", "\u092e\u0908", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0970", "\u0905\u0917\u0970", "\u0938\u093f\u0924\u0970", "\u0905\u0915\u094d\u0924\u0942\u0970", "\u0928\u0935\u0970", "\u0926\u093f\u0938\u0970"]), type$.JSArray_dynamic); B.List_ett = A._setArrayType(makeConstList(["\u0930\u0935\u093f\u0935\u093e\u0930", "\u0938\u094b\u092e\u0935\u093e\u0930", "\u092e\u0902\u0917\u0932\u0935\u093e\u0930", "\u092c\u0941\u0927\u0935\u093e\u0930", "\u0917\u0941\u0930\u0941\u0935\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930", "\u0936\u0928\u093f\u0935\u093e\u0930"]), type$.JSArray_dynamic); B.List_65v = A._setArrayType(makeConstList(["\u0930\u0935\u093f", "\u0938\u094b\u092e", "\u092e\u0902\u0917\u0932", "\u092c\u0941\u0927", "\u0917\u0941\u0930\u0941", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); B.List_Vfn = A._setArrayType(makeConstList(["\u0930", "\u0938\u094b", "\u092e\u0902", "\u092c\u0941", "\u0917\u0941", "\u0936\u0941", "\u0936"]), type$.JSArray_dynamic); B.List_npw = A._setArrayType(makeConstList(["\u0924\u093f1", "\u0924\u093f2", "\u0924\u093f3", "\u0924\u093f4"]), type$.JSArray_dynamic); B.List_Mh7 = A._setArrayType(makeConstList(["\u092a\u0939\u0932\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u0926\u0942\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u0924\u0940\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u091a\u094c\u0925\u0940 \u0924\u093f\u092e\u093e\u0939\u0940"]), type$.JSArray_dynamic); B.List_wu8 = A._setArrayType(makeConstList(["{1} \u0915\u094b {0}", "{1} \u0915\u094b {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5t4AN0 = new A.ConstantStringMap(25, {NAME: "hi", ERAS: B.List_MON, ERANAMES: B.List_2uL0, NARROWMONTHS: B.List_ClP, STANDALONENARROWMONTHS: B.List_ClP, MONTHS: B.List_xY6, STANDALONEMONTHS: B.List_xY6, SHORTMONTHS: B.List_oyU1, STANDALONESHORTMONTHS: B.List_oyU1, WEEKDAYS: B.List_ett, STANDALONEWEEKDAYS: B.List_ett, SHORTWEEKDAYS: B.List_65v, STANDALONESHORTWEEKDAYS: B.List_65v, NARROWWEEKDAYS: B.List_Vfn, STANDALONENARROWWEEKDAYS: B.List_Vfn, SHORTQUARTERS: B.List_npw, QUARTERS: B.List_Mh7, AMPMS: B.List_am_pm, DATEFORMATS: B.List_INh, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_wu8}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_NQV = A._setArrayType(makeConstList(["pr. Kr.", "po. Kr."]), type$.JSArray_dynamic); B.List_Fb0 = A._setArrayType(makeConstList(["prije Krista", "poslije Krista"]), type$.JSArray_dynamic); B.List_ePH = A._setArrayType(makeConstList(["1.", "2.", "3.", "4.", "5.", "6.", "7.", "8.", "9.", "10.", "11.", "12."]), type$.JSArray_dynamic); B.List_6x6 = A._setArrayType(makeConstList(["sije\u010dnja", "velja\u010de", "o\u017eujka", "travnja", "svibnja", "lipnja", "srpnja", "kolovoza", "rujna", "listopada", "studenoga", "prosinca"]), type$.JSArray_dynamic); B.List_s2f = A._setArrayType(makeConstList(["sije\u010danj", "velja\u010da", "o\u017eujak", "travanj", "svibanj", "lipanj", "srpanj", "kolovoz", "rujan", "listopad", "studeni", "prosinac"]), type$.JSArray_dynamic); B.List_qt1 = A._setArrayType(makeConstList(["sij", "velj", "o\u017eu", "tra", "svi", "lip", "srp", "kol", "ruj", "lis", "stu", "pro"]), type$.JSArray_dynamic); B.List_0yI = A._setArrayType(makeConstList(["1kv", "2kv", "3kv", "4kv"]), type$.JSArray_dynamic); B.List_JO4 = A._setArrayType(makeConstList(["EEEE, d. MMMM y.", "d. MMMM y.", "d. MMM y.", "dd. MM. y."]), type$.JSArray_dynamic); B.List_fhZ = A._setArrayType(makeConstList(["HH:mm:ss (zzzz)", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.Map_5t8tP = new A.ConstantStringMap(25, {NAME: "hr", ERAS: B.List_NQV, ERANAMES: B.List_Fb0, NARROWMONTHS: B.List_ePH, STANDALONENARROWMONTHS: B.List_ePH, MONTHS: B.List_6x6, STANDALONEMONTHS: B.List_s2f, SHORTMONTHS: B.List_qt1, STANDALONESHORTMONTHS: B.List_qt1, WEEKDAYS: B.List_S49, STANDALONEWEEKDAYS: B.List_S49, SHORTWEEKDAYS: B.List_8eb0, STANDALONESHORTWEEKDAYS: B.List_8eb0, NARROWWEEKDAYS: B.List_KHM, STANDALONENARROWWEEKDAYS: B.List_sci, SHORTQUARTERS: B.List_0yI, QUARTERS: B.List_wg3, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_JO4, TIMEFORMATS: B.List_fhZ, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_CDT}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EbH = A._setArrayType(makeConstList(["i. e.", "i. sz."]), type$.JSArray_dynamic); B.List_y1j0 = A._setArrayType(makeConstList(["Krisztus el\u0151tt", "id\u0151sz\xe1m\xedt\xe1sunk szerint"]), type$.JSArray_dynamic); B.List_qva = A._setArrayType(makeConstList(["J", "F", "M", "\xc1", "M", "J", "J", "A", "Sz", "O", "N", "D"]), type$.JSArray_dynamic); B.List_q8l = A._setArrayType(makeConstList(["janu\xe1r", "febru\xe1r", "m\xe1rcius", "\xe1prilis", "m\xe1jus", "j\xfanius", "j\xfalius", "augusztus", "szeptember", "okt\xf3ber", "november", "december"]), type$.JSArray_dynamic); B.List_YY6 = A._setArrayType(makeConstList(["jan.", "febr.", "m\xe1rc.", "\xe1pr.", "m\xe1j.", "j\xfan.", "j\xfal.", "aug.", "szept.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_qNA0 = A._setArrayType(makeConstList(["vas\xe1rnap", "h\xe9tf\u0151", "kedd", "szerda", "cs\xfct\xf6rt\xf6k", "p\xe9ntek", "szombat"]), type$.JSArray_dynamic); B.List_q0N = A._setArrayType(makeConstList(["V", "H", "K", "Sze", "Cs", "P", "Szo"]), type$.JSArray_dynamic); B.List_6pP = A._setArrayType(makeConstList(["V", "H", "K", "Sz", "Cs", "P", "Sz"]), type$.JSArray_dynamic); B.List_6pp = A._setArrayType(makeConstList(["I. n.\xe9v", "II. n.\xe9v", "III. n.\xe9v", "IV. n.\xe9v"]), type$.JSArray_dynamic); B.List_BSc = A._setArrayType(makeConstList(["I. negyed\xe9v", "II. negyed\xe9v", "III. negyed\xe9v", "IV. negyed\xe9v"]), type$.JSArray_dynamic); B.List_3BG = A._setArrayType(makeConstList(["de.", "du."]), type$.JSArray_dynamic); B.List_HtW = A._setArrayType(makeConstList(["y. MMMM d., EEEE", "y. MMMM d.", "y. MMM d.", "y. MM. dd."]), type$.JSArray_dynamic); B.Map_5toEG = new A.ConstantStringMap(25, {NAME: "hu", ERAS: B.List_EbH, ERANAMES: B.List_y1j0, NARROWMONTHS: B.List_qva, STANDALONENARROWMONTHS: B.List_qva, MONTHS: B.List_q8l, STANDALONEMONTHS: B.List_q8l, SHORTMONTHS: B.List_YY6, STANDALONESHORTMONTHS: B.List_YY6, WEEKDAYS: B.List_qNA0, STANDALONEWEEKDAYS: B.List_qNA0, SHORTWEEKDAYS: B.List_q0N, STANDALONESHORTWEEKDAYS: B.List_q0N, NARROWWEEKDAYS: B.List_6pP, STANDALONENARROWWEEKDAYS: B.List_6pP, SHORTQUARTERS: B.List_6pp, QUARTERS: B.List_BSc, AMPMS: B.List_3BG, DATEFORMATS: B.List_HtW, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_aRc = A._setArrayType(makeConstList(["\u0574.\u0569.\u0561.", "\u0574.\u0569."]), type$.JSArray_dynamic); B.List_qpm1 = A._setArrayType(makeConstList(["\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0561\u057c\u0561\u057b", "\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0570\u0565\u057f\u0578"]), type$.JSArray_dynamic); B.List_n7k1 = A._setArrayType(makeConstList(["\u0540", "\u0553", "\u0544", "\u0531", "\u0544", "\u0540", "\u0540", "\u0555", "\u054d", "\u0540", "\u0546", "\u0534"]), type$.JSArray_dynamic); B.List_kmg = A._setArrayType(makeConstList(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b", "\u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b", "\u0574\u0561\u0580\u057f\u056b", "\u0561\u057a\u0580\u056b\u056c\u056b", "\u0574\u0561\u0575\u056b\u057d\u056b", "\u0570\u0578\u0582\u0576\u056b\u057d\u056b", "\u0570\u0578\u0582\u056c\u056b\u057d\u056b", "\u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b", "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b", "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b", "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b", "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b"]), type$.JSArray_dynamic); B.List_Kf0 = A._setArrayType(makeConstList(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580", "\u0583\u0565\u057f\u0580\u057e\u0561\u0580", "\u0574\u0561\u0580\u057f", "\u0561\u057a\u0580\u056b\u056c", "\u0574\u0561\u0575\u056b\u057d", "\u0570\u0578\u0582\u0576\u056b\u057d", "\u0570\u0578\u0582\u056c\u056b\u057d", "\u0585\u0563\u0578\u057d\u057f\u0578\u057d", "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580", "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580", "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580", "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580"]), type$.JSArray_dynamic); B.List_Wax = A._setArrayType(makeConstList(["\u0570\u0576\u057e", "\u0583\u057f\u057e", "\u0574\u0580\u057f", "\u0561\u057a\u0580", "\u0574\u0575\u057d", "\u0570\u0576\u057d", "\u0570\u056c\u057d", "\u0585\u0563\u057d", "\u057d\u0565\u057a", "\u0570\u0578\u056f", "\u0576\u0578\u0575", "\u0564\u0565\u056f"]), type$.JSArray_dynamic); B.List_QgR = A._setArrayType(makeConstList(["\u056f\u056b\u0580\u0561\u056f\u056b", "\u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b", "\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b", "\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b", "\u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b", "\u0578\u0582\u0580\u0562\u0561\u0569", "\u0577\u0561\u0562\u0561\u0569"]), type$.JSArray_dynamic); B.List_Uvc = A._setArrayType(makeConstList(["\u056f\u056b\u0580", "\u0565\u0580\u056f", "\u0565\u0580\u0584", "\u0579\u0580\u0584", "\u0570\u0576\u0563", "\u0578\u0582\u0580", "\u0577\u0562\u0569"]), type$.JSArray_dynamic); B.List_JAv = A._setArrayType(makeConstList(["\u053f", "\u0535", "\u0535", "\u0549", "\u0540", "\u0548", "\u0547"]), type$.JSArray_dynamic); B.List_M2I0 = A._setArrayType(makeConstList(["1-\u056b\u0576 \u0565\u057c\u0574\u057d.", "2-\u0580\u0564 \u0565\u057c\u0574\u057d.", "3-\u0580\u0564 \u0565\u057c\u0574\u057d.", "4-\u0580\u0564 \u0565\u057c\u0574\u057d."]), type$.JSArray_dynamic); B.List_wIv = A._setArrayType(makeConstList(["1-\u056b\u0576 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "2-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "3-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "4-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f"]), type$.JSArray_dynamic); B.List_rBh = A._setArrayType(makeConstList(["y \u0569. MMMM d, EEEE", "dd MMMM, y \u0569.", "dd MMM, y \u0569.", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5tKeb = new A.ConstantStringMap(25, {NAME: "hy", ERAS: B.List_aRc, ERANAMES: B.List_qpm1, NARROWMONTHS: B.List_n7k1, STANDALONENARROWMONTHS: B.List_n7k1, MONTHS: B.List_kmg, STANDALONEMONTHS: B.List_Kf0, SHORTMONTHS: B.List_Wax, STANDALONESHORTMONTHS: B.List_Wax, WEEKDAYS: B.List_QgR, STANDALONEWEEKDAYS: B.List_QgR, SHORTWEEKDAYS: B.List_Uvc, STANDALONESHORTWEEKDAYS: B.List_Uvc, NARROWWEEKDAYS: B.List_JAv, STANDALONENARROWWEEKDAYS: B.List_JAv, SHORTQUARTERS: B.List_M2I0, QUARTERS: B.List_wIv, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_rBh, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_SM_M = A._setArrayType(makeConstList(["SM", "M"]), type$.JSArray_dynamic); B.List_Cuw = A._setArrayType(makeConstList(["Sebelum Masehi", "Masehi"]), type$.JSArray_dynamic); B.List_JYK = A._setArrayType(makeConstList(["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"]), type$.JSArray_dynamic); B.List_QW2 = A._setArrayType(makeConstList(["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"]), type$.JSArray_dynamic); B.List_UE0 = A._setArrayType(makeConstList(["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"]), type$.JSArray_dynamic); B.List_xKX = A._setArrayType(makeConstList(["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"]), type$.JSArray_dynamic); B.List_o2T = A._setArrayType(makeConstList(["M", "S", "S", "R", "K", "J", "S"]), type$.JSArray_dynamic); B.List_6Lo = A._setArrayType(makeConstList(["Kuartal ke-1", "Kuartal ke-2", "Kuartal ke-3", "Kuartal ke-4"]), type$.JSArray_dynamic); B.List_Bzp = A._setArrayType(makeConstList(["EEEE, dd MMMM y", "d MMMM y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); B.Map_5tIWo = new A.ConstantStringMap(25, {NAME: "id", ERAS: B.List_SM_M, ERANAMES: B.List_Cuw, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_JYK, STANDALONEMONTHS: B.List_JYK, SHORTMONTHS: B.List_QW2, STANDALONESHORTMONTHS: B.List_QW2, WEEKDAYS: B.List_UE0, STANDALONEWEEKDAYS: B.List_UE0, SHORTWEEKDAYS: B.List_xKX, STANDALONESHORTWEEKDAYS: B.List_xKX, NARROWWEEKDAYS: B.List_o2T, STANDALONENARROWWEEKDAYS: B.List_o2T, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_6Lo, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_Bzp, TIMEFORMATS: B.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_DP9 = A._setArrayType(makeConstList(["fyrir Krist", "eftir Krist"]), type$.JSArray_dynamic); B.List_Xrf = A._setArrayType(makeConstList(["J", "F", "M", "A", "M", "J", "J", "\xc1", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_Lvu = A._setArrayType(makeConstList(["jan\xfaar", "febr\xfaar", "mars", "apr\xedl", "ma\xed", "j\xfan\xed", "j\xfal\xed", "\xe1g\xfast", "september", "okt\xf3ber", "n\xf3vember", "desember"]), type$.JSArray_dynamic); B.List_A3h = A._setArrayType(makeConstList(["jan.", "feb.", "mar.", "apr.", "ma\xed", "j\xfan.", "j\xfal.", "\xe1g\xfa.", "sep.", "okt.", "n\xf3v.", "des."]), type$.JSArray_dynamic); B.List_4AN0 = A._setArrayType(makeConstList(["sunnudagur", "m\xe1nudagur", "\xferi\xf0judagur", "mi\xf0vikudagur", "fimmtudagur", "f\xf6studagur", "laugardagur"]), type$.JSArray_dynamic); B.List_2T7 = A._setArrayType(makeConstList(["sun.", "m\xe1n.", "\xferi.", "mi\xf0.", "fim.", "f\xf6s.", "lau."]), type$.JSArray_dynamic); B.List_sYD = A._setArrayType(makeConstList(["S", "M", "\xde", "M", "F", "F", "L"]), type$.JSArray_dynamic); B.List_F1_F2_F3_F4 = A._setArrayType(makeConstList(["F1", "F2", "F3", "F4"]), type$.JSArray_dynamic); B.List_3y9 = A._setArrayType(makeConstList(["1. fj\xf3r\xf0ungur", "2. fj\xf3r\xf0ungur", "3. fj\xf3r\xf0ungur", "4. fj\xf3r\xf0ungur"]), type$.JSArray_dynamic); B.List_nMZ = A._setArrayType(makeConstList(["f.h.", "e.h."]), type$.JSArray_dynamic); B.List_kjq = A._setArrayType(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "d. MMM y", "d.M.y"]), type$.JSArray_dynamic); B.List_ww8139 = A._setArrayType(makeConstList(["{1} 'kl'. {0}", "{1} 'kl'. {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5twEo = new A.ConstantStringMap(25, {NAME: "is", ERAS: B.List_OPD, ERANAMES: B.List_DP9, NARROWMONTHS: B.List_Xrf, STANDALONENARROWMONTHS: B.List_Xrf, MONTHS: B.List_Lvu, STANDALONEMONTHS: B.List_Lvu, SHORTMONTHS: B.List_A3h, STANDALONESHORTMONTHS: B.List_A3h, WEEKDAYS: B.List_4AN0, STANDALONEWEEKDAYS: B.List_4AN0, SHORTWEEKDAYS: B.List_2T7, STANDALONESHORTWEEKDAYS: B.List_2T7, NARROWWEEKDAYS: B.List_sYD, STANDALONENARROWWEEKDAYS: B.List_sYD, SHORTQUARTERS: B.List_F1_F2_F3_F4, QUARTERS: B.List_3y9, AMPMS: B.List_nMZ, DATEFORMATS: B.List_kjq, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_ww8139}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_OTw = A._setArrayType(makeConstList(["avanti Cristo", "dopo Cristo"]), type$.JSArray_dynamic); B.List_ink = A._setArrayType(makeConstList(["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_YYR = A._setArrayType(makeConstList(["gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre"]), type$.JSArray_dynamic); B.List_qMN = A._setArrayType(makeConstList(["gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic"]), type$.JSArray_dynamic); B.List_EO3 = A._setArrayType(makeConstList(["domenica", "luned\xec", "marted\xec", "mercoled\xec", "gioved\xec", "venerd\xec", "sabato"]), type$.JSArray_dynamic); B.List_wwP = A._setArrayType(makeConstList(["dom", "lun", "mar", "mer", "gio", "ven", "sab"]), type$.JSArray_dynamic); B.List_rxd = A._setArrayType(makeConstList(["D", "L", "M", "M", "G", "V", "S"]), type$.JSArray_dynamic); B.List_i7B1 = A._setArrayType(makeConstList(["1\xba trimestre", "2\xba trimestre", "3\xba trimestre", "4\xba trimestre"]), type$.JSArray_dynamic); B.List_2fK = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); B.List_aYE0 = A._setArrayType(makeConstList(["{1} {0}", "{1} {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5twQW = new A.ConstantStringMap(25, {NAME: "it", ERAS: B.List_2No1, ERANAMES: B.List_OTw, NARROWMONTHS: B.List_ink, STANDALONENARROWMONTHS: B.List_ink, MONTHS: B.List_YYR, STANDALONEMONTHS: B.List_YYR, SHORTMONTHS: B.List_qMN, STANDALONESHORTMONTHS: B.List_qMN, WEEKDAYS: B.List_EO3, STANDALONEWEEKDAYS: B.List_EO3, SHORTWEEKDAYS: B.List_wwP, STANDALONESHORTWEEKDAYS: B.List_wwP, NARROWWEEKDAYS: B.List_rxd, STANDALONENARROWWEEKDAYS: B.List_rxd, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_i7B1, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_2fK, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_aYE0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_cKo0 = A._setArrayType(makeConstList(["\u7d00\u5143\u524d", "\u897f\u66a6"]), type$.JSArray_dynamic); B.List_24C = A._setArrayType(makeConstList(["1\u6708", "2\u6708", "3\u6708", "4\u6708", "5\u6708", "6\u6708", "7\u6708", "8\u6708", "9\u6708", "10\u6708", "11\u6708", "12\u6708"]), type$.JSArray_dynamic); B.List_d8d = A._setArrayType(makeConstList(["\u65e5\u66dc\u65e5", "\u6708\u66dc\u65e5", "\u706b\u66dc\u65e5", "\u6c34\u66dc\u65e5", "\u6728\u66dc\u65e5", "\u91d1\u66dc\u65e5", "\u571f\u66dc\u65e5"]), type$.JSArray_dynamic); B.List_IS6 = A._setArrayType(makeConstList(["\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f"]), type$.JSArray_dynamic); B.List_Pvn = A._setArrayType(makeConstList(["\u7b2c1\u56db\u534a\u671f", "\u7b2c2\u56db\u534a\u671f", "\u7b2c3\u56db\u534a\u671f", "\u7b2c4\u56db\u534a\u671f"]), type$.JSArray_dynamic); B.List_P5r = A._setArrayType(makeConstList(["\u5348\u524d", "\u5348\u5f8c"]), type$.JSArray_dynamic); B.List_F4F = A._setArrayType(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y/MM/dd", "y/MM/dd"]), type$.JSArray_dynamic); B.List_61r = A._setArrayType(makeConstList(["H\u6642mm\u5206ss\u79d2 zzzz", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); B.Map_5ta6h = new A.ConstantStringMap(25, {NAME: "ja", ERAS: B.List_cKo0, ERANAMES: B.List_cKo0, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_24C, STANDALONEMONTHS: B.List_24C, SHORTMONTHS: B.List_24C, STANDALONESHORTMONTHS: B.List_24C, WEEKDAYS: B.List_d8d, STANDALONEWEEKDAYS: B.List_d8d, SHORTWEEKDAYS: B.List_IS6, STANDALONESHORTWEEKDAYS: B.List_IS6, NARROWWEEKDAYS: B.List_IS6, STANDALONENARROWWEEKDAYS: B.List_IS6, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_Pvn, AMPMS: B.List_P5r, DATEFORMATS: B.List_F4F, TIMEFORMATS: B.List_61r, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_NMh = A._setArrayType(makeConstList(["\u10eb\u10d5. \u10ec.", "\u10d0\u10ee. \u10ec."]), type$.JSArray_dynamic); B.List_g8C = A._setArrayType(makeConstList(["\u10eb\u10d5\u10d4\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7", "\u10d0\u10ee\u10d0\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7"]), type$.JSArray_dynamic); B.List_fL6 = A._setArrayType(makeConstList(["\u10d8", "\u10d7", "\u10db", "\u10d0", "\u10db", "\u10d8", "\u10d8", "\u10d0", "\u10e1", "\u10dd", "\u10dc", "\u10d3"]), type$.JSArray_dynamic); B.List_bh9 = A._setArrayType(makeConstList(["\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8", "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8", "\u10db\u10d0\u10e0\u10e2\u10d8", "\u10d0\u10de\u10e0\u10d8\u10da\u10d8", "\u10db\u10d0\u10d8\u10e1\u10d8", "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8", "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8", "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd", "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8", "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"]), type$.JSArray_dynamic); B.List_40x = A._setArrayType(makeConstList(["\u10d8\u10d0\u10dc", "\u10d7\u10d4\u10d1", "\u10db\u10d0\u10e0", "\u10d0\u10de\u10e0", "\u10db\u10d0\u10d8", "\u10d8\u10d5\u10dc", "\u10d8\u10d5\u10da", "\u10d0\u10d2\u10d5", "\u10e1\u10d4\u10e5", "\u10dd\u10e5\u10e2", "\u10dc\u10dd\u10d4", "\u10d3\u10d4\u10d9"]), type$.JSArray_dynamic); B.List_mNP = A._setArrayType(makeConstList(["\u10d9\u10d5\u10d8\u10e0\u10d0", "\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8", "\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8"]), type$.JSArray_dynamic); B.List_oTd = A._setArrayType(makeConstList(["\u10d9\u10d5\u10d8", "\u10dd\u10e0\u10e8", "\u10e1\u10d0\u10db", "\u10dd\u10d7\u10ee", "\u10ee\u10e3\u10d7", "\u10de\u10d0\u10e0", "\u10e8\u10d0\u10d1"]), type$.JSArray_dynamic); B.List_iU9 = A._setArrayType(makeConstList(["\u10d9", "\u10dd", "\u10e1", "\u10dd", "\u10ee", "\u10de", "\u10e8"]), type$.JSArray_dynamic); B.List_8aB1 = A._setArrayType(makeConstList(["I \u10d9\u10d5.", "II \u10d9\u10d5.", "III \u10d9\u10d5.", "IV \u10d9\u10d5."]), type$.JSArray_dynamic); B.List_CkO = A._setArrayType(makeConstList(["I \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "II \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "III \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "IV \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8"]), type$.JSArray_dynamic); B.List_Wm5 = A._setArrayType(makeConstList(["EEEE, dd MMMM, y", "d MMMM, y", "d MMM. y", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5tq4G = new A.ConstantStringMap(25, {NAME: "ka", ERAS: B.List_NMh, ERANAMES: B.List_g8C, NARROWMONTHS: B.List_fL6, STANDALONENARROWMONTHS: B.List_fL6, MONTHS: B.List_bh9, STANDALONEMONTHS: B.List_bh9, SHORTMONTHS: B.List_40x, STANDALONESHORTMONTHS: B.List_40x, WEEKDAYS: B.List_mNP, STANDALONEWEEKDAYS: B.List_mNP, SHORTWEEKDAYS: B.List_oTd, STANDALONESHORTWEEKDAYS: B.List_oTd, NARROWWEEKDAYS: B.List_iU9, STANDALONENARROWWEEKDAYS: B.List_iU9, SHORTQUARTERS: B.List_8aB1, QUARTERS: B.List_CkO, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_Wm5, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_oc6 = A._setArrayType(makeConstList(["\u0431.\u0437.\u0434.", "\u0431.\u0437."]), type$.JSArray_dynamic); B.List_rc4 = A._setArrayType(makeConstList(["\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d", "\u0431\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"]), type$.JSArray_dynamic); B.List_wAg = A._setArrayType(makeConstList(["\u049a", "\u0410", "\u041d", "\u0421", "\u041c", "\u041c", "\u0428", "\u0422", "\u049a", "\u049a", "\u049a", "\u0416"]), type$.JSArray_dynamic); B.List_U1z = A._setArrayType(makeConstList(["\u049b\u0430\u04a3\u0442\u0430\u0440", "\u0430\u049b\u043f\u0430\u043d", "\u043d\u0430\u0443\u0440\u044b\u0437", "\u0441\u04d9\u0443\u0456\u0440", "\u043c\u0430\u043c\u044b\u0440", "\u043c\u0430\u0443\u0441\u044b\u043c", "\u0448\u0456\u043b\u0434\u0435", "\u0442\u0430\u043c\u044b\u0437", "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a", "\u049b\u0430\u0437\u0430\u043d", "\u049b\u0430\u0440\u0430\u0448\u0430", "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); B.List_jXU = A._setArrayType(makeConstList(["\u049a\u0430\u04a3\u0442\u0430\u0440", "\u0410\u049b\u043f\u0430\u043d", "\u041d\u0430\u0443\u0440\u044b\u0437", "\u0421\u04d9\u0443\u0456\u0440", "\u041c\u0430\u043c\u044b\u0440", "\u041c\u0430\u0443\u0441\u044b\u043c", "\u0428\u0456\u043b\u0434\u0435", "\u0422\u0430\u043c\u044b\u0437", "\u049a\u044b\u0440\u043a\u04af\u0439\u0435\u043a", "\u049a\u0430\u0437\u0430\u043d", "\u049a\u0430\u0440\u0430\u0448\u0430", "\u0416\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); B.List_k4X = A._setArrayType(makeConstList(["\u049b\u0430\u04a3.", "\u0430\u049b\u043f.", "\u043d\u0430\u0443.", "\u0441\u04d9\u0443.", "\u043c\u0430\u043c.", "\u043c\u0430\u0443.", "\u0448\u0456\u043b.", "\u0442\u0430\u043c.", "\u049b\u044b\u0440.", "\u049b\u0430\u0437.", "\u049b\u0430\u0440.", "\u0436\u0435\u043b."]), type$.JSArray_dynamic); B.List_w66 = A._setArrayType(makeConstList(["\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456", "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456", "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456", "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456", "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456", "\u0436\u04b1\u043c\u0430", "\u0441\u0435\u043d\u0431\u0456"]), type$.JSArray_dynamic); B.List_IaK = A._setArrayType(makeConstList(["\u0436\u0441", "\u0434\u0441", "\u0441\u0441", "\u0441\u0440", "\u0431\u0441", "\u0436\u043c", "\u0441\u0431"]), type$.JSArray_dynamic); B.List_HNA = A._setArrayType(makeConstList(["\u0416", "\u0414", "\u0421", "\u0421", "\u0411", "\u0416", "\u0421"]), type$.JSArray_dynamic); B.List_a5W1 = A._setArrayType(makeConstList(["\u0406 \u0442\u049b\u0441.", "\u0406\u0406 \u0442\u049b\u0441.", "\u0406\u0406\u0406 \u0442\u049b\u0441.", "IV \u0442\u049b\u0441."]), type$.JSArray_dynamic); B.List_dGK = A._setArrayType(makeConstList(["\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "\u0406\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "IV \u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); B.List_G7N = A._setArrayType(makeConstList(["y '\u0436'. d MMMM, EEEE", "y '\u0436'. d MMMM", "y '\u0436'. dd MMM", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5tIiW = new A.ConstantStringMap(25, {NAME: "kk", ERAS: B.List_oc6, ERANAMES: B.List_rc4, NARROWMONTHS: B.List_wAg, STANDALONENARROWMONTHS: B.List_wAg, MONTHS: B.List_U1z, STANDALONEMONTHS: B.List_jXU, SHORTMONTHS: B.List_k4X, STANDALONESHORTMONTHS: B.List_k4X, WEEKDAYS: B.List_w66, STANDALONEWEEKDAYS: B.List_w66, SHORTWEEKDAYS: B.List_IaK, STANDALONESHORTWEEKDAYS: B.List_IaK, NARROWWEEKDAYS: B.List_HNA, STANDALONENARROWWEEKDAYS: B.List_HNA, SHORTQUARTERS: B.List_a5W1, QUARTERS: B.List_dGK, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_G7N, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_8Ay = A._setArrayType(makeConstList(["\u1798\u17bb\u1793 \u1782.\u179f.", "\u1782.\u179f."]), type$.JSArray_dynamic); B.List_QKA = A._setArrayType(makeConstList(["\u1798\u17bb\u1793\u200b\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787", "\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787"]), type$.JSArray_dynamic); B.List_4m40 = A._setArrayType(makeConstList(["\u1798", "\u1780", "\u1798", "\u1798", "\u17a7", "\u1798", "\u1780", "\u179f", "\u1780", "\u178f", "\u179c", "\u1792"]), type$.JSArray_dynamic); B.List_JUC0 = A._setArrayType(makeConstList(["\u1798\u1780\u179a\u17b6", "\u1780\u17bb\u1798\u17d2\u1797\u17c8", "\u1798\u17b8\u1793\u17b6", "\u1798\u17c1\u179f\u17b6", "\u17a7\u179f\u1797\u17b6", "\u1798\u17b7\u1790\u17bb\u1793\u17b6", "\u1780\u1780\u17d2\u1780\u178a\u17b6", "\u179f\u17b8\u17a0\u17b6", "\u1780\u1789\u17d2\u1789\u17b6", "\u178f\u17bb\u179b\u17b6", "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", "\u1792\u17d2\u1793\u17bc"]), type$.JSArray_dynamic); B.List_cMb0 = A._setArrayType(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u17d0\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); B.List_JMh = A._setArrayType(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); B.List_ww8140 = A._setArrayType(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); B.List_Dpp = A._setArrayType(makeConstList(["\u17a2", "\u1785", "\u17a2", "\u1796", "\u1796", "\u179f", "\u179f"]), type$.JSArray_dynamic); B.List_Nss = A._setArrayType(makeConstList(["\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 1", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 2", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 3", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 4"]), type$.JSArray_dynamic); B.List_CF7 = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); B.List_izR0 = A._setArrayType(makeConstList(["{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}", "{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tmmo = new A.ConstantStringMap(25, {NAME: "km", ERAS: B.List_8Ay, ERANAMES: B.List_QKA, NARROWMONTHS: B.List_4m40, STANDALONENARROWMONTHS: B.List_4m40, MONTHS: B.List_JUC0, STANDALONEMONTHS: B.List_JUC0, SHORTMONTHS: B.List_JUC0, STANDALONESHORTMONTHS: B.List_JUC0, WEEKDAYS: B.List_cMb0, STANDALONEWEEKDAYS: B.List_JMh, SHORTWEEKDAYS: B.List_ww8140, STANDALONESHORTWEEKDAYS: B.List_ww8140, NARROWWEEKDAYS: B.List_Dpp, STANDALONENARROWWEEKDAYS: B.List_Dpp, SHORTQUARTERS: B.List_Nss, QUARTERS: B.List_Nss, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_CF7, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_izR0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_wSV0 = A._setArrayType(makeConstList(["\u0c95\u0ccd\u0cb0\u0cbf.\u0caa\u0cc2", "\u0c95\u0ccd\u0cb0\u0cbf.\u0cb6"]), type$.JSArray_dynamic); B.List_gg42 = A._setArrayType(makeConstList(["\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0caa\u0cc2\u0cb0\u0ccd\u0cb5", "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0cb6\u0c95"]), type$.JSArray_dynamic); B.List_Gfp = A._setArrayType(makeConstList(["\u0c9c", "\u0cab\u0cc6", "\u0cae\u0cbe", "\u0c8f", "\u0cae\u0cc7", "\u0c9c\u0cc2", "\u0c9c\u0cc1", "\u0c86", "\u0cb8\u0cc6", "\u0c85", "\u0ca8", "\u0ca1\u0cbf"]), type$.JSArray_dynamic); B.List_okI = A._setArrayType(makeConstList(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd", "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"]), type$.JSArray_dynamic); B.List_2No2 = A._setArrayType(makeConstList(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb", "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]), type$.JSArray_dynamic); B.List_6Vn0 = A._setArrayType(makeConstList(["\u0c9c\u0ca8", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb", "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]), type$.JSArray_dynamic); B.List_jNn = A._setArrayType(makeConstList(["\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0", "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0", "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0", "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0", "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0", "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0", "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"]), type$.JSArray_dynamic); B.List_kCd = A._setArrayType(makeConstList(["\u0cad\u0cbe\u0ca8\u0cc1", "\u0cb8\u0ccb\u0cae", "\u0cae\u0c82\u0c97\u0cb3", "\u0cac\u0cc1\u0ca7", "\u0c97\u0cc1\u0cb0\u0cc1", "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0", "\u0cb6\u0ca8\u0cbf"]), type$.JSArray_dynamic); B.List_blW = A._setArrayType(makeConstList(["\u0cad\u0cbe", "\u0cb8\u0ccb", "\u0cae\u0c82", "\u0cac\u0cc1", "\u0c97\u0cc1", "\u0cb6\u0cc1", "\u0cb6"]), type$.JSArray_dynamic); B.List_uKK = A._setArrayType(makeConstList(["\u0ca4\u0ccd\u0cb0\u0cc8 1", "\u0ca4\u0ccd\u0cb0\u0cc8 2", "\u0ca4\u0ccd\u0cb0\u0cc8 3", "\u0ca4\u0ccd\u0cb0\u0cc8 4"]), type$.JSArray_dynamic); B.List_a9P = A._setArrayType(makeConstList(["1\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "2\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "3\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "4\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95"]), type$.JSArray_dynamic); B.List_qh2 = A._setArrayType(makeConstList(["\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8", "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"]), type$.JSArray_dynamic); B.List_EkK0 = A._setArrayType(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "d/M/yy"]), type$.JSArray_dynamic); B.Map_5twHn = new A.ConstantStringMap(25, {NAME: "kn", ERAS: B.List_wSV0, ERANAMES: B.List_gg42, NARROWMONTHS: B.List_Gfp, STANDALONENARROWMONTHS: B.List_Gfp, MONTHS: B.List_okI, STANDALONEMONTHS: B.List_okI, SHORTMONTHS: B.List_2No2, STANDALONESHORTMONTHS: B.List_6Vn0, WEEKDAYS: B.List_jNn, STANDALONEWEEKDAYS: B.List_jNn, SHORTWEEKDAYS: B.List_kCd, STANDALONESHORTWEEKDAYS: B.List_kCd, NARROWWEEKDAYS: B.List_blW, STANDALONENARROWWEEKDAYS: B.List_blW, SHORTQUARTERS: B.List_uKK, QUARTERS: B.List_a9P, AMPMS: B.List_qh2, DATEFORMATS: B.List_EkK0, TIMEFORMATS: B.List_TWS, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_8Gl = A._setArrayType(makeConstList(["\uae30\uc6d0\uc804", "\uc11c\uae30"]), type$.JSArray_dynamic); B.List_Ukm = A._setArrayType(makeConstList(["1\uc6d4", "2\uc6d4", "3\uc6d4", "4\uc6d4", "5\uc6d4", "6\uc6d4", "7\uc6d4", "8\uc6d4", "9\uc6d4", "10\uc6d4", "11\uc6d4", "12\uc6d4"]), type$.JSArray_dynamic); B.List_CmY = A._setArrayType(makeConstList(["\uc77c\uc694\uc77c", "\uc6d4\uc694\uc77c", "\ud654\uc694\uc77c", "\uc218\uc694\uc77c", "\ubaa9\uc694\uc77c", "\uae08\uc694\uc77c", "\ud1a0\uc694\uc77c"]), type$.JSArray_dynamic); B.List_cEX = A._setArrayType(makeConstList(["\uc77c", "\uc6d4", "\ud654", "\uc218", "\ubaa9", "\uae08", "\ud1a0"]), type$.JSArray_dynamic); B.List_Ru4 = A._setArrayType(makeConstList(["1\ubd84\uae30", "2\ubd84\uae30", "3\ubd84\uae30", "4\ubd84\uae30"]), type$.JSArray_dynamic); B.List_7TW = A._setArrayType(makeConstList(["\uc81c 1/4\ubd84\uae30", "\uc81c 2/4\ubd84\uae30", "\uc81c 3/4\ubd84\uae30", "\uc81c 4/4\ubd84\uae30"]), type$.JSArray_dynamic); B.List_2Vk5 = A._setArrayType(makeConstList(["\uc624\uc804", "\uc624\ud6c4"]), type$.JSArray_dynamic); B.List_3Zi = A._setArrayType(makeConstList(["y\ub144 M\uc6d4 d\uc77c EEEE", "y\ub144 M\uc6d4 d\uc77c", "y. M. d.", "yy. M. d."]), type$.JSArray_dynamic); B.List_CYy = A._setArrayType(makeConstList(["a h\uc2dc m\ubd84 s\ucd08 zzzz", "a h\uc2dc m\ubd84 s\ucd08 z", "a h:mm:ss", "a h:mm"]), type$.JSArray_dynamic); B.Map_5t2jN0 = new A.ConstantStringMap(25, {NAME: "ko", ERAS: B.List_BC_AD0, ERANAMES: B.List_8Gl, NARROWMONTHS: B.List_Ukm, STANDALONENARROWMONTHS: B.List_Ukm, MONTHS: B.List_Ukm, STANDALONEMONTHS: B.List_Ukm, SHORTMONTHS: B.List_Ukm, STANDALONESHORTMONTHS: B.List_Ukm, WEEKDAYS: B.List_CmY, STANDALONEWEEKDAYS: B.List_CmY, SHORTWEEKDAYS: B.List_cEX, STANDALONESHORTWEEKDAYS: B.List_cEX, NARROWWEEKDAYS: B.List_cEX, STANDALONENARROWWEEKDAYS: B.List_cEX, SHORTQUARTERS: B.List_Ru4, QUARTERS: B.List_7TW, AMPMS: B.List_2Vk5, DATEFORMATS: B.List_3Zi, TIMEFORMATS: B.List_CYy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ALf0 = A._setArrayType(makeConstList(["\u0431.\u0437.\u0447.", "\u0431.\u0437."]), type$.JSArray_dynamic); B.List_MSn = A._setArrayType(makeConstList(["\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d\u0433\u0430 \u0447\u0435\u0439\u0438\u043d", "\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d"]), type$.JSArray_dynamic); B.List_16h = A._setArrayType(makeConstList(["\u042f", "\u0424", "\u041c", "\u0410", "\u041c", "\u0418", "\u0418", "\u0410", "\u0421", "\u041e", "\u041d", "\u0414"]), type$.JSArray_dynamic); B.List_rNu = A._setArrayType(makeConstList(["\u044f\u043d\u0432\u0430\u0440\u044c", "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0435\u043b\u044c", "\u043c\u0430\u0439", "\u0438\u044e\u043d\u044c", "\u0438\u044e\u043b\u044c", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", "\u043d\u043e\u044f\u0431\u0440\u044c", "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"]), type$.JSArray_dynamic); B.List_O5s = A._setArrayType(makeConstList(["\u042f\u043d\u0432\u0430\u0440\u044c", "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", "\u041c\u0430\u0440\u0442", "\u0410\u043f\u0440\u0435\u043b\u044c", "\u041c\u0430\u0439", "\u0418\u044e\u043d\u044c", "\u0418\u044e\u043b\u044c", "\u0410\u0432\u0433\u0443\u0441\u0442", "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", "\u041d\u043e\u044f\u0431\u0440\u044c", "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"]), type$.JSArray_dynamic); B.List_2mB = A._setArrayType(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u0439", "\u0438\u044e\u043d.", "\u0438\u044e\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043d.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); B.List_3Bx = A._setArrayType(makeConstList(["\u042f\u043d\u0432", "\u0424\u0435\u0432", "\u041c\u0430\u0440", "\u0410\u043f\u0440", "\u041c\u0430\u0439", "\u0418\u044e\u043d", "\u0418\u044e\u043b", "\u0410\u0432\u0433", "\u0421\u0435\u043d", "\u041e\u043a\u0442", "\u041d\u043e\u044f", "\u0414\u0435\u043a"]), type$.JSArray_dynamic); B.List_86y1 = A._setArrayType(makeConstList(["\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438", "\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af", "\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438", "\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438", "\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438", "\u0436\u0443\u043c\u0430", "\u0438\u0448\u0435\u043c\u0431\u0438"]), type$.JSArray_dynamic); B.List_AqM = A._setArrayType(makeConstList(["\u0436\u0435\u043a.", "\u0434\u04af\u0439.", "\u0448\u0435\u0439\u0448.", "\u0448\u0430\u0440\u0448.", "\u0431\u0435\u0439\u0448.", "\u0436\u0443\u043c\u0430", "\u0438\u0448\u043c."]), type$.JSArray_dynamic); B.List_6TA0 = A._setArrayType(makeConstList(["\u0416", "\u0414", "\u0428", "\u0428", "\u0411", "\u0416", "\u0418"]), type$.JSArray_dynamic); B.List_0XS = A._setArrayType(makeConstList(["1-\u0447\u0435\u0439.", "2-\u0447\u0435\u0439.", "3-\u0447\u0435\u0439.", "4-\u0447\u0435\u0439."]), type$.JSArray_dynamic); B.List_sav = A._setArrayType(makeConstList(["1-\u0447\u0435\u0439\u0440\u0435\u043a", "2-\u0447\u0435\u0439\u0440\u0435\u043a", "3-\u0447\u0435\u0439\u0440\u0435\u043a", "4-\u0447\u0435\u0439\u0440\u0435\u043a"]), type$.JSArray_dynamic); B.List_iL9 = A._setArrayType(makeConstList(["\u0442\u0430\u04a3\u043a\u044b", "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"]), type$.JSArray_dynamic); B.List_ODz = A._setArrayType(makeConstList(["y-'\u0436'., d-MMMM, EEEE", "y-'\u0436'., d-MMMM", "y-'\u0436'., d-MMM", "d/M/yy"]), type$.JSArray_dynamic); B.Map_5tMul = new A.ConstantStringMap(25, {NAME: "ky", ERAS: B.List_ALf0, ERANAMES: B.List_MSn, NARROWMONTHS: B.List_16h, STANDALONENARROWMONTHS: B.List_16h, MONTHS: B.List_rNu, STANDALONEMONTHS: B.List_O5s, SHORTMONTHS: B.List_2mB, STANDALONESHORTMONTHS: B.List_3Bx, WEEKDAYS: B.List_86y1, STANDALONEWEEKDAYS: B.List_86y1, SHORTWEEKDAYS: B.List_AqM, STANDALONESHORTWEEKDAYS: B.List_AqM, NARROWWEEKDAYS: B.List_6TA0, STANDALONENARROWWEEKDAYS: B.List_6TA0, SHORTQUARTERS: B.List_0XS, QUARTERS: B.List_sav, AMPMS: B.List_iL9, DATEFORMATS: B.List_ODz, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_RVo = A._setArrayType(makeConstList(["\u0e81\u0ec8\u0ead\u0e99 \u0e84.\u0eaa.", "\u0e84.\u0eaa."]), type$.JSArray_dynamic); B.List_k920 = A._setArrayType(makeConstList(["\u0e81\u0ec8\u0ead\u0e99\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94", "\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94"]), type$.JSArray_dynamic); B.List_07 = A._setArrayType(makeConstList(["\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99", "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2", "\u0ea1\u0eb5\u0e99\u0eb2", "\u0ec0\u0ea1\u0eaa\u0eb2", "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2", "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2", "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94", "\u0eaa\u0eb4\u0e87\u0eab\u0eb2", "\u0e81\u0eb1\u0e99\u0e8d\u0eb2", "\u0e95\u0eb8\u0ea5\u0eb2", "\u0e9e\u0eb0\u0e88\u0eb4\u0e81", "\u0e97\u0eb1\u0e99\u0ea7\u0eb2"]), type$.JSArray_dynamic); B.List_q96 = A._setArrayType(makeConstList(["\u0ea1.\u0e81.", "\u0e81.\u0e9e.", "\u0ea1.\u0e99.", "\u0ea1.\u0eaa.", "\u0e9e.\u0e9e.", "\u0ea1\u0eb4.\u0e96.", "\u0e81.\u0ea5.", "\u0eaa.\u0eab.", "\u0e81.\u0e8d.", "\u0e95.\u0ea5.", "\u0e9e.\u0e88.", "\u0e97.\u0ea7."]), type$.JSArray_dynamic); B.List_a1T = A._setArrayType(makeConstList(["\u0ea7\u0eb1\u0e99\u0ead\u0eb2\u0e97\u0eb4\u0e94", "\u0ea7\u0eb1\u0e99\u0e88\u0eb1\u0e99", "\u0ea7\u0eb1\u0e99\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99", "\u0ea7\u0eb1\u0e99\u0e9e\u0eb8\u0e94", "\u0ea7\u0eb1\u0e99\u0e9e\u0eb0\u0eab\u0eb1\u0e94", "\u0ea7\u0eb1\u0e99\u0eaa\u0eb8\u0e81", "\u0ea7\u0eb1\u0e99\u0ec0\u0eaa\u0ebb\u0eb2"]), type$.JSArray_dynamic); B.List_OMD = A._setArrayType(makeConstList(["\u0ead\u0eb2\u0e97\u0eb4\u0e94", "\u0e88\u0eb1\u0e99", "\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99", "\u0e9e\u0eb8\u0e94", "\u0e9e\u0eb0\u0eab\u0eb1\u0e94", "\u0eaa\u0eb8\u0e81", "\u0ec0\u0eaa\u0ebb\u0eb2"]), type$.JSArray_dynamic); B.List_C2f = A._setArrayType(makeConstList(["\u0ead\u0eb2", "\u0e88", "\u0ead", "\u0e9e", "\u0e9e\u0eab", "\u0eaa\u0eb8", "\u0eaa"]), type$.JSArray_dynamic); B.List_qFo = A._setArrayType(makeConstList(["\u0e95\u0ea11", "\u0e95\u0ea12", "\u0e95\u0ea13", "\u0e95\u0ea14"]), type$.JSArray_dynamic); B.List_UV6 = A._setArrayType(makeConstList(["\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 1", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 2", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 3", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 4"]), type$.JSArray_dynamic); B.List_Mfs = A._setArrayType(makeConstList(["\u0e81\u0ec8\u0ead\u0e99\u0e97\u0ec8\u0ebd\u0e87", "\u0eab\u0ebc\u0eb1\u0e87\u0e97\u0ec8\u0ebd\u0e87"]), type$.JSArray_dynamic); B.List_hHb = A._setArrayType(makeConstList(["EEEE \u0e97\u0eb5 d MMMM G y", "d MMMM y", "d MMM y", "d/M/y"]), type$.JSArray_dynamic); B.List_u91 = A._setArrayType(makeConstList(["H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 zzzz", "H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); B.Map_5ta5W = new A.ConstantStringMap(25, {NAME: "lo", ERAS: B.List_RVo, ERANAMES: B.List_k920, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_07, STANDALONEMONTHS: B.List_07, SHORTMONTHS: B.List_q96, STANDALONESHORTMONTHS: B.List_q96, WEEKDAYS: B.List_a1T, STANDALONEWEEKDAYS: B.List_a1T, SHORTWEEKDAYS: B.List_OMD, STANDALONESHORTWEEKDAYS: B.List_OMD, NARROWWEEKDAYS: B.List_C2f, STANDALONENARROWWEEKDAYS: B.List_C2f, SHORTQUARTERS: B.List_qFo, QUARTERS: B.List_UV6, AMPMS: B.List_Mfs, DATEFORMATS: B.List_hHb, TIMEFORMATS: B.List_u91, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_OCX = A._setArrayType(makeConstList(["pr. Kr.", "po Kr."]), type$.JSArray_dynamic); B.List_ECL = A._setArrayType(makeConstList(["prie\u0161 Krist\u0173", "po Kristaus"]), type$.JSArray_dynamic); B.List_e8d = A._setArrayType(makeConstList(["S", "V", "K", "B", "G", "B", "L", "R", "R", "S", "L", "G"]), type$.JSArray_dynamic); B.List_n5d = A._setArrayType(makeConstList(["sausio", "vasario", "kovo", "baland\u017eio", "gegu\u017e\u0117s", "bir\u017eelio", "liepos", "rugpj\u016b\u010dio", "rugs\u0117jo", "spalio", "lapkri\u010dio", "gruod\u017eio"]), type$.JSArray_dynamic); B.List_8lx = A._setArrayType(makeConstList(["sausis", "vasaris", "kovas", "balandis", "gegu\u017e\u0117", "bir\u017eelis", "liepa", "rugpj\u016btis", "rugs\u0117jis", "spalis", "lapkritis", "gruodis"]), type$.JSArray_dynamic); B.List_kue = A._setArrayType(makeConstList(["saus.", "vas.", "kov.", "bal.", "geg.", "bir\u017e.", "liep.", "rugp.", "rugs.", "spal.", "lapkr.", "gruod."]), type$.JSArray_dynamic); B.List_EVN = A._setArrayType(makeConstList(["sekmadienis", "pirmadienis", "antradienis", "tre\u010diadienis", "ketvirtadienis", "penktadienis", "\u0161e\u0161tadienis"]), type$.JSArray_dynamic); B.List_5eO = A._setArrayType(makeConstList(["sk", "pr", "an", "tr", "kt", "pn", "\u0161t"]), type$.JSArray_dynamic); B.List_08 = A._setArrayType(makeConstList(["S", "P", "A", "T", "K", "P", "\u0160"]), type$.JSArray_dynamic); B.List_o0y = A._setArrayType(makeConstList(["I k.", "II k.", "III k.", "IV k."]), type$.JSArray_dynamic); B.List_ww8141 = A._setArrayType(makeConstList(["I ketvirtis", "II ketvirtis", "III ketvirtis", "IV ketvirtis"]), type$.JSArray_dynamic); B.List_AmA = A._setArrayType(makeConstList(["prie\u0161piet", "popiet"]), type$.JSArray_dynamic); B.List_Za1 = A._setArrayType(makeConstList(["y 'm'. MMMM d 'd'., EEEE", "y 'm'. MMMM d 'd'.", "y-MM-dd", "y-MM-dd"]), type$.JSArray_dynamic); B.Map_5tIof = new A.ConstantStringMap(25, {NAME: "lt", ERAS: B.List_OCX, ERANAMES: B.List_ECL, NARROWMONTHS: B.List_e8d, STANDALONENARROWMONTHS: B.List_e8d, MONTHS: B.List_n5d, STANDALONEMONTHS: B.List_8lx, SHORTMONTHS: B.List_kue, STANDALONESHORTMONTHS: B.List_kue, WEEKDAYS: B.List_EVN, STANDALONEWEEKDAYS: B.List_EVN, SHORTWEEKDAYS: B.List_5eO, STANDALONESHORTWEEKDAYS: B.List_5eO, NARROWWEEKDAYS: B.List_08, STANDALONENARROWWEEKDAYS: B.List_08, SHORTQUARTERS: B.List_o0y, QUARTERS: B.List_ww8141, AMPMS: B.List_AmA, DATEFORMATS: B.List_Za1, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_sQR = A._setArrayType(makeConstList(["p.m.\u0113.", "m.\u0113."]), type$.JSArray_dynamic); B.List_Mm5 = A._setArrayType(makeConstList(["pirms m\u016bsu \u0113ras", "m\u016bsu \u0113r\u0101"]), type$.JSArray_dynamic); B.List_IE7 = A._setArrayType(makeConstList(["janv\u0101ris", "febru\u0101ris", "marts", "apr\u012blis", "maijs", "j\u016bnijs", "j\u016blijs", "augusts", "septembris", "oktobris", "novembris", "decembris"]), type$.JSArray_dynamic); B.List_gg9 = A._setArrayType(makeConstList(["janv.", "febr.", "marts", "apr.", "maijs", "j\u016bn.", "j\u016bl.", "aug.", "sept.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_mbw = A._setArrayType(makeConstList(["sv\u0113tdiena", "pirmdiena", "otrdiena", "tre\u0161diena", "ceturtdiena", "piektdiena", "sestdiena"]), type$.JSArray_dynamic); B.List_pea = A._setArrayType(makeConstList(["Sv\u0113tdiena", "Pirmdiena", "Otrdiena", "Tre\u0161diena", "Ceturtdiena", "Piektdiena", "Sestdiena"]), type$.JSArray_dynamic); B.List_soA1 = A._setArrayType(makeConstList(["sv\u0113td.", "pirmd.", "otrd.", "tre\u0161d.", "ceturtd.", "piektd.", "sestd."]), type$.JSArray_dynamic); B.List_Olq = A._setArrayType(makeConstList(["Sv\u0113td.", "Pirmd.", "Otrd.", "Tre\u0161d.", "Ceturtd.", "Piektd.", "Sestd."]), type$.JSArray_dynamic); B.List_gHJ = A._setArrayType(makeConstList(["S", "P", "O", "T", "C", "P", "S"]), type$.JSArray_dynamic); B.List_b1T = A._setArrayType(makeConstList(["1.\xa0cet.", "2.\xa0cet.", "3.\xa0cet.", "4.\xa0cet."]), type$.JSArray_dynamic); B.List_QWS = A._setArrayType(makeConstList(["1. ceturksnis", "2. ceturksnis", "3. ceturksnis", "4. ceturksnis"]), type$.JSArray_dynamic); B.List_Drq = A._setArrayType(makeConstList(["priek\u0161pusdien\u0101", "p\u0113cpusdien\u0101"]), type$.JSArray_dynamic); B.List_Wvf = A._setArrayType(makeConstList(["EEEE, y. 'gada' d. MMMM", "y. 'gada' d. MMMM", "y. 'gada' d. MMM", "dd.MM.yy"]), type$.JSArray_dynamic); B.Map_5twsa = new A.ConstantStringMap(25, {NAME: "lv", ERAS: B.List_sQR, ERANAMES: B.List_Mm5, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_IE7, STANDALONEMONTHS: B.List_IE7, SHORTMONTHS: B.List_gg9, STANDALONESHORTMONTHS: B.List_gg9, WEEKDAYS: B.List_mbw, STANDALONEWEEKDAYS: B.List_pea, SHORTWEEKDAYS: B.List_soA1, STANDALONESHORTWEEKDAYS: B.List_Olq, NARROWWEEKDAYS: B.List_gHJ, STANDALONENARROWWEEKDAYS: B.List_gHJ, SHORTQUARTERS: B.List_b1T, QUARTERS: B.List_QWS, AMPMS: B.List_Drq, DATEFORMATS: B.List_Wvf, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_D34 = A._setArrayType(makeConstList(["\u043f\u0440.\u043d.\u0435.", "\u043d.\u0435."]), type$.JSArray_dynamic); B.List_ud2 = A._setArrayType(makeConstList(["\u043f\u0440\u0435\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430", "\u043e\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430"]), type$.JSArray_dynamic); B.List_owA = A._setArrayType(makeConstList(["\u0458", "\u0444", "\u043c", "\u0430", "\u043c", "\u0458", "\u0458", "\u0430", "\u0441", "\u043e", "\u043d", "\u0434"]), type$.JSArray_dynamic); B.List_2Rm0 = A._setArrayType(makeConstList(["\u0458\u0430\u043d\u0443\u0430\u0440\u0438", "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0458", "\u0458\u0443\u043d\u0438", "\u0458\u0443\u043b\u0438", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]), type$.JSArray_dynamic); B.List_MAi = A._setArrayType(makeConstList(["\u0458\u0430\u043d.", "\u0444\u0435\u0432.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u0458", "\u0458\u0443\u043d.", "\u0458\u0443\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043f\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); B.List_SRb = A._setArrayType(makeConstList(["\u043d\u0435\u0434\u0435\u043b\u0430", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a", "\u043f\u0435\u0442\u043e\u043a", "\u0441\u0430\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_zre = A._setArrayType(makeConstList(["\u043d\u0435\u0434.", "\u043f\u043e\u043d.", "\u0432\u0442.", "\u0441\u0440\u0435.", "\u0447\u0435\u0442.", "\u043f\u0435\u0442.", "\u0441\u0430\u0431."]), type$.JSArray_dynamic); B.List_6QF = A._setArrayType(makeConstList(["\u043d\u0435\u0434.", "\u043f\u043e\u043d.", "\u0432\u0442\u043e.", "\u0441\u0440\u0435.", "\u0447\u0435\u0442.", "\u043f\u0435\u0442.", "\u0441\u0430\u0431."]), type$.JSArray_dynamic); B.List_GNw = A._setArrayType(makeConstList(["\u0458\u0430\u043d-\u043c\u0430\u0440", "\u0430\u043f\u0440-\u0458\u0443\u043d", "\u0458\u0443\u043b-\u0441\u0435\u043f", "\u043e\u043a\u0442-\u0434\u0435\u043a"]), type$.JSArray_dynamic); B.List_ouN0 = A._setArrayType(makeConstList(["\u043f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0432\u0442\u043e\u0440\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0442\u0440\u0435\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0447\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435"]), type$.JSArray_dynamic); B.List_TLI = A._setArrayType(makeConstList(["\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435", "\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435"]), type$.JSArray_dynamic); B.List_iTw = A._setArrayType(makeConstList(["EEEE, dd MMMM y", "dd MMMM y", "dd.M.y", "dd.M.yy"]), type$.JSArray_dynamic); B.Map_5totL = new A.ConstantStringMap(25, {NAME: "mk", ERAS: B.List_D34, ERANAMES: B.List_ud2, NARROWMONTHS: B.List_owA, STANDALONENARROWMONTHS: B.List_owA, MONTHS: B.List_2Rm0, STANDALONEMONTHS: B.List_2Rm0, SHORTMONTHS: B.List_MAi, STANDALONESHORTMONTHS: B.List_MAi, WEEKDAYS: B.List_SRb, STANDALONEWEEKDAYS: B.List_SRb, SHORTWEEKDAYS: B.List_zre, STANDALONESHORTWEEKDAYS: B.List_6QF, NARROWWEEKDAYS: B.List_H7P0, STANDALONENARROWWEEKDAYS: B.List_H7P0, SHORTQUARTERS: B.List_GNw, QUARTERS: B.List_ouN0, AMPMS: B.List_TLI, DATEFORMATS: B.List_iTw, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_aJW = A._setArrayType(makeConstList(["\u0d15\u0d4d\u0d30\u0d3f.\u0d2e\u0d41.", "\u0d0e\u0d21\u0d3f"]), type$.JSArray_dynamic); B.List_g6I = A._setArrayType(makeConstList(["\u0d15\u0d4d\u0d30\u0d3f\u0d38\u0d4d\u200c\u0d24\u0d41\u0d35\u0d3f\u0d28\u0d4d \u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d4d", "\u0d06\u0d28\u0d4d\u0d28\u0d4b \u0d21\u0d4a\u0d2e\u0d3f\u0d28\u0d3f"]), type$.JSArray_dynamic); B.List_MMc = A._setArrayType(makeConstList(["\u0d1c", "\u0d2b\u0d46", "\u0d2e\u0d3e", "\u0d0f", "\u0d2e\u0d46", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42", "\u0d13", "\u0d38\u0d46", "\u0d12", "\u0d28", "\u0d21\u0d3f"]), type$.JSArray_dynamic); B.List_qa3 = A._setArrayType(makeConstList(["\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f", "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f", "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d", "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d", "\u0d2e\u0d47\u0d2f\u0d4d", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42\u0d32\u0d48", "\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d", "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c", "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c", "\u0d28\u0d35\u0d02\u0d2c\u0d7c", "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c"]), type$.JSArray_dynamic); B.List_RtW = A._setArrayType(makeConstList(["\u0d1c\u0d28\u0d41", "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41", "\u0d2e\u0d3e\u0d7c", "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f", "\u0d2e\u0d47\u0d2f\u0d4d", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42\u0d32\u0d48", "\u0d13\u0d17", "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02", "\u0d12\u0d15\u0d4d\u0d1f\u0d4b", "\u0d28\u0d35\u0d02", "\u0d21\u0d3f\u0d38\u0d02"]), type$.JSArray_dynamic); B.List_aha = A._setArrayType(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a", "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]), type$.JSArray_dynamic); B.List_TDm = A._setArrayType(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]), type$.JSArray_dynamic); B.List_orL = A._setArrayType(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d7c", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35", "\u0d2c\u0d41\u0d27\u0d7b", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f", "\u0d36\u0d28\u0d3f"]), type$.JSArray_dynamic); B.List_wTA = A._setArrayType(makeConstList(["\u0d1e", "\u0d24\u0d3f", "\u0d1a\u0d4a", "\u0d2c\u0d41", "\u0d35\u0d4d\u0d2f\u0d3e", "\u0d35\u0d46", "\u0d36"]), type$.JSArray_dynamic); B.List_5pq = A._setArrayType(makeConstList(["\u0d1e\u0d3e", "\u0d24\u0d3f", "\u0d1a\u0d4a", "\u0d2c\u0d41", "\u0d35\u0d4d\u0d2f\u0d3e", "\u0d35\u0d46", "\u0d36"]), type$.JSArray_dynamic); B.List_evX = A._setArrayType(makeConstList(["\u0d12\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d30\u0d23\u0d4d\u0d1f\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d2e\u0d42\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d28\u0d3e\u0d32\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02"]), type$.JSArray_dynamic); B.List_0Pw = A._setArrayType(makeConstList(["y, MMMM d, EEEE", "y, MMMM d", "y, MMM d", "d/M/yy"]), type$.JSArray_dynamic); B.Map_5tivI = new A.ConstantStringMap(25, {NAME: "ml", ERAS: B.List_aJW, ERANAMES: B.List_g6I, NARROWMONTHS: B.List_MMc, STANDALONENARROWMONTHS: B.List_MMc, MONTHS: B.List_qa3, STANDALONEMONTHS: B.List_qa3, SHORTMONTHS: B.List_RtW, STANDALONESHORTMONTHS: B.List_RtW, WEEKDAYS: B.List_aha, STANDALONEWEEKDAYS: B.List_TDm, SHORTWEEKDAYS: B.List_orL, STANDALONESHORTWEEKDAYS: B.List_orL, NARROWWEEKDAYS: B.List_wTA, STANDALONENARROWWEEKDAYS: B.List_5pq, SHORTQUARTERS: B.List_evX, QUARTERS: B.List_evX, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_0Pw, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_S3R = A._setArrayType(makeConstList(["\u041c\u042d\u04e8", "\u041c\u042d"]), type$.JSArray_dynamic); B.List_oqh = A._setArrayType(makeConstList(["\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439 \u04e9\u043c\u043d\u04e9\u0445", "\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439"]), type$.JSArray_dynamic); B.List_U43 = A._setArrayType(makeConstList(["I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"]), type$.JSArray_dynamic); B.List_MIe0 = A._setArrayType(makeConstList(["\u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0433\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0434\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0442\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0437\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0434\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u043d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0435\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); B.List_cMx0 = A._setArrayType(makeConstList(["\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0417\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); B.List_9Mo = A._setArrayType(makeConstList(["1-\u0440 \u0441\u0430\u0440", "2-\u0440 \u0441\u0430\u0440", "3-\u0440 \u0441\u0430\u0440", "4-\u0440 \u0441\u0430\u0440", "5-\u0440 \u0441\u0430\u0440", "6-\u0440 \u0441\u0430\u0440", "7-\u0440 \u0441\u0430\u0440", "8-\u0440 \u0441\u0430\u0440", "9-\u0440 \u0441\u0430\u0440", "10-\u0440 \u0441\u0430\u0440", "11-\u0440 \u0441\u0430\u0440", "12-\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); B.List_xou = A._setArrayType(makeConstList(["\u043d\u044f\u043c", "\u0434\u0430\u0432\u0430\u0430", "\u043c\u044f\u0433\u043c\u0430\u0440", "\u043b\u0445\u0430\u0433\u0432\u0430", "\u043f\u04af\u0440\u044d\u0432", "\u0431\u0430\u0430\u0441\u0430\u043d", "\u0431\u044f\u043c\u0431\u0430"]), type$.JSArray_dynamic); B.List_RkP = A._setArrayType(makeConstList(["\u041d\u044f\u043c", "\u0414\u0430\u0432\u0430\u0430", "\u041c\u044f\u0433\u043c\u0430\u0440", "\u041b\u0445\u0430\u0433\u0432\u0430", "\u041f\u04af\u0440\u044d\u0432", "\u0411\u0430\u0430\u0441\u0430\u043d", "\u0411\u044f\u043c\u0431\u0430"]), type$.JSArray_dynamic); B.List_KPS = A._setArrayType(makeConstList(["\u041d\u044f", "\u0414\u0430", "\u041c\u044f", "\u041b\u0445", "\u041f\u04af", "\u0411\u0430", "\u0411\u044f"]), type$.JSArray_dynamic); B.List_woc = A._setArrayType(makeConstList(["I \u0443\u043b\u0438\u0440\u0430\u043b", "II \u0443\u043b\u0438\u0440\u0430\u043b", "III \u0443\u043b\u0438\u0440\u0430\u043b", "IV \u0443\u043b\u0438\u0440\u0430\u043b"]), type$.JSArray_dynamic); B.List_OXN = A._setArrayType(makeConstList(["1-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "2-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "3-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "4-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b"]), type$.JSArray_dynamic); B.List_dOE = A._setArrayType(makeConstList(["\u04af.\u04e9.", "\u04af.\u0445."]), type$.JSArray_dynamic); B.List_6tp = A._setArrayType(makeConstList(["y.MM.dd, EEEE", "y.MM.dd", "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d", "y.MM.dd"]), type$.JSArray_dynamic); B.Map_5tMdN = new A.ConstantStringMap(25, {NAME: "mn", ERAS: B.List_S3R, ERANAMES: B.List_oqh, NARROWMONTHS: B.List_U43, STANDALONENARROWMONTHS: B.List_U43, MONTHS: B.List_MIe0, STANDALONEMONTHS: B.List_cMx0, SHORTMONTHS: B.List_9Mo, STANDALONESHORTMONTHS: B.List_9Mo, WEEKDAYS: B.List_xou, STANDALONEWEEKDAYS: B.List_RkP, SHORTWEEKDAYS: B.List_KPS, STANDALONESHORTWEEKDAYS: B.List_KPS, NARROWWEEKDAYS: B.List_KPS, STANDALONENARROWWEEKDAYS: B.List_KPS, SHORTQUARTERS: B.List_woc, QUARTERS: B.List_OXN, AMPMS: B.List_dOE, DATEFORMATS: B.List_6tp, TIMEFORMATS: B.List_unc, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_6hW = A._setArrayType(makeConstList(["\u0907. \u0938. \u092a\u0942.", "\u0907. \u0938."]), type$.JSArray_dynamic); B.List_yw6 = A._setArrayType(makeConstList(["\u0908\u0938\u0935\u0940\u0938\u0928\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u0935\u0940\u0938\u0928"]), type$.JSArray_dynamic); B.List_YkH = A._setArrayType(makeConstList(["\u091c\u093e", "\u092b\u0947", "\u092e\u093e", "\u090f", "\u092e\u0947", "\u091c\u0942", "\u091c\u0941", "\u0911", "\u0938", "\u0911", "\u0928\u094b", "\u0921\u093f"]), type$.JSArray_dynamic); B.List_0J8 = A._setArrayType(makeConstList(["\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u090f\u092a\u094d\u0930\u093f\u0932", "\u092e\u0947", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0948", "\u0911\u0917\u0938\u094d\u091f", "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930", "\u0911\u0915\u094d\u091f\u094b\u092c\u0930", "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"]), type$.JSArray_dynamic); B.List_RyE = A._setArrayType(makeConstList(["\u091c\u093e\u0928\u0947", "\u092b\u0947\u092c\u094d\u0930\u0941", "\u092e\u093e\u0930\u094d\u091a", "\u090f\u092a\u094d\u0930\u093f", "\u092e\u0947", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0948", "\u0911\u0917", "\u0938\u092a\u094d\u091f\u0947\u0902", "\u0911\u0915\u094d\u091f\u094b", "\u0928\u094b\u0935\u094d\u0939\u0947\u0902", "\u0921\u093f\u0938\u0947\u0902"]), type$.JSArray_dynamic); B.List_A4L = A._setArrayType(makeConstList(["\u0930\u0935\u093f\u0935\u093e\u0930", "\u0938\u094b\u092e\u0935\u093e\u0930", "\u092e\u0902\u0917\u0933\u0935\u093e\u0930", "\u092c\u0941\u0927\u0935\u093e\u0930", "\u0917\u0941\u0930\u0941\u0935\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930", "\u0936\u0928\u093f\u0935\u093e\u0930"]), type$.JSArray_dynamic); B.List_Ug7 = A._setArrayType(makeConstList(["\u0930\u0935\u093f", "\u0938\u094b\u092e", "\u092e\u0902\u0917\u0933", "\u092c\u0941\u0927", "\u0917\u0941\u0930\u0941", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); B.List_MUw2 = A._setArrayType(makeConstList(["\u0924\u093f\u0967", "\u0924\u093f\u0968", "\u0924\u093f\u0969", "\u0924\u093f\u096a"]), type$.JSArray_dynamic); B.List_Kvb = A._setArrayType(makeConstList(["\u092a\u094d\u0930\u0925\u092e \u0924\u093f\u092e\u093e\u0939\u0940", "\u0926\u094d\u0935\u093f\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940", "\u0924\u0943\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940", "\u091a\u0924\u0941\u0930\u094d\u0925 \u0924\u093f\u092e\u093e\u0939\u0940"]), type$.JSArray_dynamic); B.List_dzv = A._setArrayType(makeConstList(["\u092e.\u092a\u0942.", "\u092e.\u0909."]), type$.JSArray_dynamic); B.List_6TA1 = A._setArrayType(makeConstList(["{1} \u0930\u094b\u091c\u0940 {0}", "{1} \u0930\u094b\u091c\u0940 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_bHq0y = new A.ConstantStringMap(26, {NAME: "mr", ERAS: B.List_6hW, ERANAMES: B.List_yw6, NARROWMONTHS: B.List_YkH, STANDALONENARROWMONTHS: B.List_YkH, MONTHS: B.List_0J8, STANDALONEMONTHS: B.List_0J8, SHORTMONTHS: B.List_RyE, STANDALONESHORTMONTHS: B.List_RyE, WEEKDAYS: B.List_A4L, STANDALONEWEEKDAYS: B.List_A4L, SHORTWEEKDAYS: B.List_Ug7, STANDALONESHORTWEEKDAYS: B.List_Ug7, NARROWWEEKDAYS: B.List_Vfn, STANDALONENARROWWEEKDAYS: B.List_Vfn, SHORTQUARTERS: B.List_MUw2, QUARTERS: B.List_Kvb, AMPMS: B.List_dzv, DATEFORMATS: B.List_oYk, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_6TA1, ZERODIGIT: "\u0966"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EEy = A._setArrayType(makeConstList(["S.M.", "TM"]), type$.JSArray_dynamic); B.List_CKW = A._setArrayType(makeConstList(["J", "F", "M", "A", "M", "J", "J", "O", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_urR = A._setArrayType(makeConstList(["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"]), type$.JSArray_dynamic); B.List_USt = A._setArrayType(makeConstList(["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"]), type$.JSArray_dynamic); B.List_NMc = A._setArrayType(makeConstList(["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"]), type$.JSArray_dynamic); B.List_GVQ = A._setArrayType(makeConstList(["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"]), type$.JSArray_dynamic); B.List_7eO = A._setArrayType(makeConstList(["A", "I", "S", "R", "K", "J", "S"]), type$.JSArray_dynamic); B.List_S1_S2_S3_S4 = A._setArrayType(makeConstList(["S1", "S2", "S3", "S4"]), type$.JSArray_dynamic); B.List_4AN1 = A._setArrayType(makeConstList(["Suku pertama", "Suku Ke-2", "Suku Ke-3", "Suku Ke-4"]), type$.JSArray_dynamic); B.List_PG_PTG = A._setArrayType(makeConstList(["PG", "PTG"]), type$.JSArray_dynamic); B.List_vWA = A._setArrayType(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d/MM/yy"]), type$.JSArray_dynamic); B.Map_5tmT8 = new A.ConstantStringMap(25, {NAME: "ms", ERAS: B.List_EEy, ERANAMES: B.List_EEy, NARROWMONTHS: B.List_CKW, STANDALONENARROWMONTHS: B.List_CKW, MONTHS: B.List_urR, STANDALONEMONTHS: B.List_urR, SHORTMONTHS: B.List_USt, STANDALONESHORTMONTHS: B.List_USt, WEEKDAYS: B.List_NMc, STANDALONEWEEKDAYS: B.List_NMc, SHORTWEEKDAYS: B.List_GVQ, STANDALONESHORTWEEKDAYS: B.List_GVQ, NARROWWEEKDAYS: B.List_7eO, STANDALONENARROWWEEKDAYS: B.List_7eO, SHORTQUARTERS: B.List_S1_S2_S3_S4, QUARTERS: B.List_4AN1, AMPMS: B.List_PG_PTG, DATEFORMATS: B.List_vWA, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_aYE0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_C4A = A._setArrayType(makeConstList(["\u1018\u102e\u1005\u102e", "\u1021\u1012\u1031\u102e"]), type$.JSArray_dynamic); B.List_YYV = A._setArrayType(makeConstList(["\u1001\u101b\u1005\u103a\u1010\u1031\u102c\u103a \u1019\u1015\u1031\u102b\u103a\u1019\u102e\u1014\u103e\u1005\u103a", "\u1001\u101b\u1005\u103a\u1014\u103e\u1005\u103a"]), type$.JSArray_dynamic); B.List_aPH = A._setArrayType(makeConstList(["\u1007", "\u1016", "\u1019", "\u1027", "\u1019", "\u1007", "\u1007", "\u1029", "\u1005", "\u1021", "\u1014", "\u1012"]), type$.JSArray_dynamic); B.List_R3l = A._setArrayType(makeConstList(["\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e", "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e", "\u1019\u1010\u103a", "\u1027\u1015\u103c\u102e", "\u1019\u1031", "\u1007\u103d\u1014\u103a", "\u1007\u1030\u101c\u102d\u102f\u1004\u103a", "\u1029\u1002\u102f\u1010\u103a", "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c", "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c", "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c", "\u1012\u102e\u1007\u1004\u103a\u1018\u102c"]), type$.JSArray_dynamic); B.List_6BD = A._setArrayType(makeConstList(["\u1007\u1014\u103a", "\u1016\u1031", "\u1019\u1010\u103a", "\u1027", "\u1019\u1031", "\u1007\u103d\u1014\u103a", "\u1007\u1030", "\u1029", "\u1005\u1000\u103a", "\u1021\u1031\u102c\u1000\u103a", "\u1014\u102d\u102f", "\u1012\u102e"]), type$.JSArray_dynamic); B.List_xld = A._setArrayType(makeConstList(["\u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031", "\u1010\u1014\u1004\u103a\u1039\u101c\u102c", "\u1021\u1004\u103a\u1039\u1002\u102b", "\u1017\u102f\u1012\u1039\u1013\u101f\u1030\u1038", "\u1000\u103c\u102c\u101e\u1015\u1010\u1031\u1038", "\u101e\u1031\u102c\u1000\u103c\u102c", "\u1005\u1014\u1031"]), type$.JSArray_dynamic); B.List_EyN = A._setArrayType(makeConstList(["\u1010", "\u1010", "\u1021", "\u1017", "\u1000", "\u101e", "\u1005"]), type$.JSArray_dynamic); B.List_09 = A._setArrayType(makeConstList(["\u1015\u1011\u1019 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1012\u102f\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1010\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1005\u1010\u102f\u1010\u1039\u1011 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a"]), type$.JSArray_dynamic); B.List_OXJ0 = A._setArrayType(makeConstList(["\u1014\u1036\u1014\u1000\u103a", "\u100a\u1014\u1031"]), type$.JSArray_dynamic); B.List_3bx = A._setArrayType(makeConstList(["y\u104a MMMM d\u104a EEEE", "y\u104a d MMMM", "y\u104a MMM d", "dd-MM-yy"]), type$.JSArray_dynamic); B.List_2jN0 = A._setArrayType(makeConstList(["zzzz HH:mm:ss", "z HH:mm:ss", "B HH:mm:ss", "B H:mm"]), type$.JSArray_dynamic); B.Map_bHCt8 = new A.ConstantStringMap(26, {NAME: "my", ERAS: B.List_C4A, ERANAMES: B.List_YYV, NARROWMONTHS: B.List_aPH, STANDALONENARROWMONTHS: B.List_aPH, MONTHS: B.List_R3l, STANDALONEMONTHS: B.List_R3l, SHORTMONTHS: B.List_6BD, STANDALONESHORTMONTHS: B.List_6BD, WEEKDAYS: B.List_xld, STANDALONEWEEKDAYS: B.List_xld, SHORTWEEKDAYS: B.List_xld, STANDALONESHORTWEEKDAYS: B.List_xld, NARROWWEEKDAYS: B.List_EyN, STANDALONENARROWWEEKDAYS: B.List_EyN, SHORTQUARTERS: B.List_09, QUARTERS: B.List_09, AMPMS: B.List_OXJ0, DATEFORMATS: B.List_3bx, TIMEFORMATS: B.List_2jN0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss, ZERODIGIT: "\u1040"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_wQ8 = A._setArrayType(makeConstList(["f\xf8r Kristus", "etter Kristus"]), type$.JSArray_dynamic); B.List_si8 = A._setArrayType(makeConstList(["januar", "februar", "mars", "april", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember"]), type$.JSArray_dynamic); B.List_qrV = A._setArrayType(makeConstList(["jan.", "feb.", "mar.", "apr.", "mai", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "des."]), type$.JSArray_dynamic); B.List_gA4 = A._setArrayType(makeConstList(["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"]), type$.JSArray_dynamic); B.List_c4f = A._setArrayType(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.y"]), type$.JSArray_dynamic); B.List_dwF = A._setArrayType(makeConstList(["{1} {0}", "{1} 'kl'. {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tkOw = new A.ConstantStringMap(25, {NAME: "nb", ERAS: B.List_OPD, ERANAMES: B.List_wQ8, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_si8, STANDALONEMONTHS: B.List_si8, SHORTMONTHS: B.List_qrV, STANDALONESHORTMONTHS: B.List_gA4, WEEKDAYS: B.List_Ufe, STANDALONEWEEKDAYS: B.List_Ufe, SHORTWEEKDAYS: B.List_zPU, STANDALONESHORTWEEKDAYS: B.List_zPU, NARROWWEEKDAYS: B.List_GVy, STANDALONENARROWWEEKDAYS: B.List_GVy, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_wg3, AMPMS: B.List_2fJ, DATEFORMATS: B.List_c4f, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_dwF}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_AKu = A._setArrayType(makeConstList(["\u0908\u0938\u093e \u092a\u0942\u0930\u094d\u0935", "\u0938\u0928\u094d"]), type$.JSArray_dynamic); B.List_meg = A._setArrayType(makeConstList(["\u091c\u0928", "\u092b\u0947\u092c", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932", "\u0905\u0917", "\u0938\u0947\u092a", "\u0905\u0915\u094d\u091f\u094b", "\u0928\u094b\u092d\u0947", "\u0921\u093f\u0938\u0947"]), type$.JSArray_dynamic); B.List_oyU2 = A._setArrayType(makeConstList(["\u091c\u0928", "\u092b\u0947\u0947\u092c", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932", "\u0905\u0917", "\u0938\u0947\u092a", "\u0905\u0915\u094d\u091f\u094b", "\u0928\u094b\u092d\u0947", "\u0921\u093f\u0938\u0947"]), type$.JSArray_dynamic); B.List_mtl = A._setArrayType(makeConstList(["\u091c\u0928\u0935\u0930\u0940", "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u093f\u0932", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932\u093e\u0908", "\u0905\u0917\u0938\u094d\u091f", "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930", "\u0905\u0915\u094d\u091f\u094b\u092c\u0930", "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"]), type$.JSArray_dynamic); B.List_KqP = A._setArrayType(makeConstList(["\u0906\u0907\u0924\u092c\u093e\u0930", "\u0938\u094b\u092e\u092c\u093e\u0930", "\u092e\u0919\u094d\u0917\u0932\u092c\u093e\u0930", "\u092c\u0941\u0927\u092c\u093e\u0930", "\u092c\u093f\u0939\u093f\u092c\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u092c\u093e\u0930", "\u0936\u0928\u093f\u092c\u093e\u0930"]), type$.JSArray_dynamic); B.List_Y6W = A._setArrayType(makeConstList(["\u0906\u0907\u0924", "\u0938\u094b\u092e", "\u092e\u0919\u094d\u0917\u0932", "\u092c\u0941\u0927", "\u092c\u093f\u0939\u093f", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); B.List_Dh9 = A._setArrayType(makeConstList(["\u0906", "\u0938\u094b", "\u092e", "\u092c\u0941", "\u092c\u093f", "\u0936\u0941", "\u0936"]), type$.JSArray_dynamic); B.List_KT6 = A._setArrayType(makeConstList(["\u092a\u0939\u093f\u0932\u094b \u0938\u0924\u094d\u0930", "\u0926\u094b\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930", "\u0924\u0947\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930", "\u091a\u094c\u0925\u094b \u0938\u0924\u094d\u0930"]), type$.JSArray_dynamic); B.List_4G4 = A._setArrayType(makeConstList(["\u092a\u0942\u0930\u094d\u0935\u093e\u0939\u094d\u0928", "\u0905\u092a\u0930\u093e\u0939\u094d\u0928"]), type$.JSArray_dynamic); B.List_E8w = A._setArrayType(makeConstList(["y MMMM d, EEEE", "y MMMM d", "y MMM d", "yy/M/d"]), type$.JSArray_dynamic); B.Map_bHcMD = new A.ConstantStringMap(26, {NAME: "ne", ERAS: B.List_AKu, ERANAMES: B.List_AKu, NARROWMONTHS: B.List_meg, STANDALONENARROWMONTHS: B.List_oyU2, MONTHS: B.List_mtl, STANDALONEMONTHS: B.List_mtl, SHORTMONTHS: B.List_mtl, STANDALONESHORTMONTHS: B.List_mtl, WEEKDAYS: B.List_KqP, STANDALONEWEEKDAYS: B.List_KqP, SHORTWEEKDAYS: B.List_Y6W, STANDALONESHORTWEEKDAYS: B.List_Y6W, NARROWWEEKDAYS: B.List_Dh9, STANDALONENARROWWEEKDAYS: B.List_Dh9, SHORTQUARTERS: B.List_KT6, QUARTERS: B.List_KT6, AMPMS: B.List_4G4, DATEFORMATS: B.List_E8w, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_aYE0, ZERODIGIT: "\u0966"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_UAu = A._setArrayType(makeConstList(["v.Chr.", "n.Chr."]), type$.JSArray_dynamic); B.List_DjL = A._setArrayType(makeConstList(["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); B.List_Slt = A._setArrayType(makeConstList(["jan.", "feb.", "mrt.", "apr.", "mei", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_oM3 = A._setArrayType(makeConstList(["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"]), type$.JSArray_dynamic); B.List_HYo = A._setArrayType(makeConstList(["zo", "ma", "di", "wo", "do", "vr", "za"]), type$.JSArray_dynamic); B.List_KB7 = A._setArrayType(makeConstList(["Z", "M", "D", "W", "D", "V", "Z"]), type$.JSArray_dynamic); B.List_nha = A._setArrayType(makeConstList(["1e kwartaal", "2e kwartaal", "3e kwartaal", "4e kwartaal"]), type$.JSArray_dynamic); B.List_6Zu = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd-MM-y"]), type$.JSArray_dynamic); B.List_WRg = A._setArrayType(makeConstList(["{1} 'om' {0}", "{1} 'om' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5t5gb = new A.ConstantStringMap(25, {NAME: "nl", ERAS: B.List_UAu, ERANAMES: B.List_5VO, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_DjL, STANDALONEMONTHS: B.List_DjL, SHORTMONTHS: B.List_Slt, STANDALONESHORTMONTHS: B.List_Slt, WEEKDAYS: B.List_oM3, STANDALONEWEEKDAYS: B.List_oM3, SHORTWEEKDAYS: B.List_HYo, STANDALONESHORTWEEKDAYS: B.List_HYo, NARROWWEEKDAYS: B.List_KB7, STANDALONENARROWWEEKDAYS: B.List_KB7, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_nha, AMPMS: B.List_2fJ, DATEFORMATS: B.List_6Zu, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_WRg}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_5tJNA = new A.ConstantStringMap(25, {NAME: "no", ERAS: B.List_OPD, ERANAMES: B.List_wQ8, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_si8, STANDALONEMONTHS: B.List_si8, SHORTMONTHS: B.List_qrV, STANDALONESHORTMONTHS: B.List_gA4, WEEKDAYS: B.List_Ufe, STANDALONEWEEKDAYS: B.List_Ufe, SHORTWEEKDAYS: B.List_zPU, STANDALONESHORTWEEKDAYS: B.List_zPU, NARROWWEEKDAYS: B.List_GVy, STANDALONENARROWWEEKDAYS: B.List_GVy, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_wg3, AMPMS: B.List_2fJ, DATEFORMATS: B.List_c4f, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_dwF}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EDI = A._setArrayType(makeConstList(["\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b2a\u0b42\u0b30\u0b4d\u0b2c", "\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b3e\u0b2c\u0b4d\u0b26"]), type$.JSArray_dynamic); B.List_Q92 = A._setArrayType(makeConstList(["\u0b1c\u0b3e", "\u0b2b\u0b47", "\u0b2e\u0b3e", "\u0b05", "\u0b2e\u0b07", "\u0b1c\u0b41", "\u0b1c\u0b41", "\u0b05", "\u0b38\u0b47", "\u0b05", "\u0b28", "\u0b21\u0b3f"]), type$.JSArray_dynamic); B.List_ICQ = A._setArrayType(makeConstList(["\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40", "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40", "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a", "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32", "\u0b2e\u0b07", "\u0b1c\u0b41\u0b28", "\u0b1c\u0b41\u0b32\u0b3e\u0b07", "\u0b05\u0b17\u0b37\u0b4d\u0b1f", "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30", "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"]), type$.JSArray_dynamic); B.List_oqK0 = A._setArrayType(makeConstList(["\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30", "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30", "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30", "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30", "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30", "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30", "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"]), type$.JSArray_dynamic); B.List_QZE = A._setArrayType(makeConstList(["\u0b30\u0b2c\u0b3f", "\u0b38\u0b4b\u0b2e", "\u0b2e\u0b19\u0b4d\u0b17\u0b33", "\u0b2c\u0b41\u0b27", "\u0b17\u0b41\u0b30\u0b41", "\u0b36\u0b41\u0b15\u0b4d\u0b30", "\u0b36\u0b28\u0b3f"]), type$.JSArray_dynamic); B.List_oYZ = A._setArrayType(makeConstList(["\u0b30", "\u0b38\u0b4b", "\u0b2e", "\u0b2c\u0b41", "\u0b17\u0b41", "\u0b36\u0b41", "\u0b36"]), type$.JSArray_dynamic); B.List_5zb = A._setArrayType(makeConstList(["1\u0b2e \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "2\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "3\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "4\u0b30\u0b4d\u0b25 \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38"]), type$.JSArray_dynamic); B.List_oU4 = A._setArrayType(makeConstList(["{0} \u0b20\u0b3e\u0b30\u0b47 {1}", "{0} \u0b20\u0b3e\u0b30\u0b47 {1}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tQ49 = new A.ConstantStringMap(25, {NAME: "or", ERAS: B.List_BC_AD0, ERANAMES: B.List_EDI, NARROWMONTHS: B.List_Q92, STANDALONENARROWMONTHS: B.List_Q92, MONTHS: B.List_ICQ, STANDALONEMONTHS: B.List_ICQ, SHORTMONTHS: B.List_ICQ, STANDALONESHORTMONTHS: B.List_ICQ, WEEKDAYS: B.List_oqK0, STANDALONEWEEKDAYS: B.List_oqK0, SHORTWEEKDAYS: B.List_QZE, STANDALONESHORTWEEKDAYS: B.List_QZE, NARROWWEEKDAYS: B.List_oYZ, STANDALONENARROWWEEKDAYS: B.List_oYZ, SHORTQUARTERS: B.List_5zb, QUARTERS: B.List_5zb, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_oU4}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_wnc = A._setArrayType(makeConstList(["\u0a08. \u0a2a\u0a42.", "\u0a38\u0a70\u0a28"]), type$.JSArray_dynamic); B.List_8Ac = A._setArrayType(makeConstList(["\u0a08\u0a38\u0a35\u0a40 \u0a2a\u0a42\u0a30\u0a35", "\u0a08\u0a38\u0a35\u0a40 \u0a38\u0a70\u0a28"]), type$.JSArray_dynamic); B.List_0m2 = A._setArrayType(makeConstList(["\u0a1c", "\u0a2b\u0a3c", "\u0a2e\u0a3e", "\u0a05", "\u0a2e", "\u0a1c\u0a42", "\u0a1c\u0a41", "\u0a05", "\u0a38", "\u0a05", "\u0a28", "\u0a26"]), type$.JSArray_dynamic); B.List_ss1 = A._setArrayType(makeConstList(["\u0a1c\u0a28\u0a35\u0a30\u0a40", "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40", "\u0a2e\u0a3e\u0a30\u0a1a", "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32", "\u0a2e\u0a08", "\u0a1c\u0a42\u0a28", "\u0a1c\u0a41\u0a32\u0a3e\u0a08", "\u0a05\u0a17\u0a38\u0a24", "\u0a38\u0a24\u0a70\u0a2c\u0a30", "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30", "\u0a28\u0a35\u0a70\u0a2c\u0a30", "\u0a26\u0a38\u0a70\u0a2c\u0a30"]), type$.JSArray_dynamic); B.List_AqM0 = A._setArrayType(makeConstList(["\u0a1c\u0a28", "\u0a2b\u0a3c\u0a30", "\u0a2e\u0a3e\u0a30\u0a1a", "\u0a05\u0a2a\u0a4d\u0a30\u0a48", "\u0a2e\u0a08", "\u0a1c\u0a42\u0a28", "\u0a1c\u0a41\u0a32\u0a3e", "\u0a05\u0a17", "\u0a38\u0a24\u0a70", "\u0a05\u0a15\u0a24\u0a42", "\u0a28\u0a35\u0a70", "\u0a26\u0a38\u0a70"]), type$.JSArray_dynamic); B.List_O1M = A._setArrayType(makeConstList(["\u0a10\u0a24\u0a35\u0a3e\u0a30", "\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30", "\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30", "\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30", "\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30", "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30", "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"]), type$.JSArray_dynamic); B.List_010 = A._setArrayType(makeConstList(["\u0a10\u0a24", "\u0a38\u0a4b\u0a2e", "\u0a2e\u0a70\u0a17\u0a32", "\u0a2c\u0a41\u0a71\u0a27", "\u0a35\u0a40\u0a30", "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30", "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"]), type$.JSArray_dynamic); B.List_inH = A._setArrayType(makeConstList(["\u0a10", "\u0a38\u0a4b", "\u0a2e\u0a70", "\u0a2c\u0a41\u0a71", "\u0a35\u0a40", "\u0a38\u0a3c\u0a41\u0a71", "\u0a38\u0a3c"]), type$.JSArray_dynamic); B.List_O5L = A._setArrayType(makeConstList(["\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a401", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a402", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a403", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a404"]), type$.JSArray_dynamic); B.List_DFX = A._setArrayType(makeConstList(["\u0a2a\u0a39\u0a3f\u0a32\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a26\u0a42\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a24\u0a40\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a1a\u0a4c\u0a25\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40"]), type$.JSArray_dynamic); B.List_S40 = A._setArrayType(makeConstList(["\u0a2a\u0a42.\u0a26\u0a41.", "\u0a2c\u0a3e.\u0a26\u0a41."]), type$.JSArray_dynamic); B.Map_5tR3l = new A.ConstantStringMap(25, {NAME: "pa", ERAS: B.List_wnc, ERANAMES: B.List_8Ac, NARROWMONTHS: B.List_0m2, STANDALONENARROWMONTHS: B.List_0m2, MONTHS: B.List_ss1, STANDALONEMONTHS: B.List_ss1, SHORTMONTHS: B.List_AqM0, STANDALONESHORTMONTHS: B.List_AqM0, WEEKDAYS: B.List_O1M, STANDALONEWEEKDAYS: B.List_O1M, SHORTWEEKDAYS: B.List_010, STANDALONESHORTWEEKDAYS: B.List_010, NARROWWEEKDAYS: B.List_inH, STANDALONENARROWWEEKDAYS: B.List_inH, SHORTQUARTERS: B.List_O5L, QUARTERS: B.List_DFX, AMPMS: B.List_S40, DATEFORMATS: B.List_INh, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_aYE0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ASc0 = A._setArrayType(makeConstList(["p.n.e.", "n.e."]), type$.JSArray_dynamic); B.List_Ctr = A._setArrayType(makeConstList(["przed nasz\u0105 er\u0105", "naszej ery"]), type$.JSArray_dynamic); B.List_Rss0 = A._setArrayType(makeConstList(["s", "l", "m", "k", "m", "c", "l", "s", "w", "p", "l", "g"]), type$.JSArray_dynamic); B.List_qBr = A._setArrayType(makeConstList(["S", "L", "M", "K", "M", "C", "L", "S", "W", "P", "L", "G"]), type$.JSArray_dynamic); B.List_EK0 = A._setArrayType(makeConstList(["stycznia", "lutego", "marca", "kwietnia", "maja", "czerwca", "lipca", "sierpnia", "wrze\u015bnia", "pa\u017adziernika", "listopada", "grudnia"]), type$.JSArray_dynamic); B.List_Zgr = A._setArrayType(makeConstList(["stycze\u0144", "luty", "marzec", "kwiecie\u0144", "maj", "czerwiec", "lipiec", "sierpie\u0144", "wrzesie\u0144", "pa\u017adziernik", "listopad", "grudzie\u0144"]), type$.JSArray_dynamic); B.List_8YE = A._setArrayType(makeConstList(["sty", "lut", "mar", "kwi", "maj", "cze", "lip", "sie", "wrz", "pa\u017a", "lis", "gru"]), type$.JSArray_dynamic); B.List_GRv = A._setArrayType(makeConstList(["niedziela", "poniedzia\u0142ek", "wtorek", "\u015broda", "czwartek", "pi\u0105tek", "sobota"]), type$.JSArray_dynamic); B.List_ww8142 = A._setArrayType(makeConstList(["niedz.", "pon.", "wt.", "\u015br.", "czw.", "pt.", "sob."]), type$.JSArray_dynamic); B.List_QXb = A._setArrayType(makeConstList(["n", "p", "w", "\u015b", "c", "p", "s"]), type$.JSArray_dynamic); B.List_Df0 = A._setArrayType(makeConstList(["N", "P", "W", "\u015a", "C", "P", "S"]), type$.JSArray_dynamic); B.List_AeS = A._setArrayType(makeConstList(["I kw.", "II kw.", "III kw.", "IV kw."]), type$.JSArray_dynamic); B.List_TLf = A._setArrayType(makeConstList(["I kwarta\u0142", "II kwarta\u0142", "III kwarta\u0142", "IV kwarta\u0142"]), type$.JSArray_dynamic); B.List_799 = A._setArrayType(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "dd.MM.y"]), type$.JSArray_dynamic); B.Map_5tK5H = new A.ConstantStringMap(25, {NAME: "pl", ERAS: B.List_ASc0, ERANAMES: B.List_Ctr, NARROWMONTHS: B.List_Rss0, STANDALONENARROWMONTHS: B.List_qBr, MONTHS: B.List_EK0, STANDALONEMONTHS: B.List_Zgr, SHORTMONTHS: B.List_8YE, STANDALONESHORTMONTHS: B.List_8YE, WEEKDAYS: B.List_GRv, STANDALONEWEEKDAYS: B.List_GRv, SHORTWEEKDAYS: B.List_ww8142, STANDALONESHORTWEEKDAYS: B.List_ww8142, NARROWWEEKDAYS: B.List_QXb, STANDALONENARROWWEEKDAYS: B.List_Df0, SHORTQUARTERS: B.List_AeS, QUARTERS: B.List_TLf, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_799, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_aYE0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_MfQ = A._setArrayType(makeConstList(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0648\u0693\u0627\u0646\u062f\u06d0", "\u0645."]), type$.JSArray_dynamic); B.List_GAn = A._setArrayType(makeConstList(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0693\u0627\u0646\u062f\u06d0", "\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0631\u0648\u0633\u062a\u0647"]), type$.JSArray_dynamic); B.List_WjJ = A._setArrayType(makeConstList(["\u062c", "\u0641", "\u0645", "\u0627", "\u0645", "\u062c", "\u062c", "\u0627", "\u0633", "\u0627", "\u0646", "\u062f"]), type$.JSArray_dynamic); B.List_7uu = A._setArrayType(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u06d0\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_YyH = A._setArrayType(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u06d0\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_k0n = A._setArrayType(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_v1F = A._setArrayType(makeConstList(["\u064a\u0648\u0646\u06cd", "\u062f\u0648\u0646\u06cd", "\u062f\u0631\u06d0\u0646\u06cd", "\u0685\u0644\u0631\u0646\u06cd", "\u067e\u064a\u0646\u0681\u0646\u06cd", "\u062c\u0645\u0639\u0647", "\u0627\u0648\u0646\u06cd"]), type$.JSArray_dynamic); B.List_rBE = A._setArrayType(makeConstList(["\u0644\u0648\u0645\u0693\u06cd \u0631\u0628\u0639\u0647", "\u06f2\u0645\u0647 \u0631\u0628\u0639\u0647", "\u06f3\u0645\u0647 \u0631\u0628\u0639\u0647", "\u06f4\u0645\u0647 \u0631\u0628\u0639\u0647"]), type$.JSArray_dynamic); B.List_maI = A._setArrayType(makeConstList(["\u063a.\u0645.", "\u063a.\u0648."]), type$.JSArray_dynamic); B.List_zlK = A._setArrayType(makeConstList(["EEEE \u062f y \u062f MMMM d", "\u062f y \u062f MMMM d", "y MMM d", "y/M/d"]), type$.JSArray_dynamic); B.List_3_4 = A._setArrayType(makeConstList([3, 4]), type$.JSArray_dynamic); B.Map_bHm6K = new A.ConstantStringMap(26, {NAME: "ps", ERAS: B.List_MfQ, ERANAMES: B.List_GAn, NARROWMONTHS: B.List_WjJ, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_7uu, STANDALONEMONTHS: B.List_YyH, SHORTMONTHS: B.List_7uu, STANDALONESHORTMONTHS: B.List_k0n, WEEKDAYS: B.List_v1F, STANDALONEWEEKDAYS: B.List_v1F, SHORTWEEKDAYS: B.List_v1F, STANDALONESHORTWEEKDAYS: B.List_v1F, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_rBE, QUARTERS: B.List_rBE, AMPMS: B.List_maI, DATEFORMATS: B.List_zlK, TIMEFORMATS: B.List_GxC, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: B.List_3_4, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: B.List_Pss, ZERODIGIT: "\u06f0"}, B.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_AHF0 = A._setArrayType(makeConstList(["antes de Cristo", "depois de Cristo"]), type$.JSArray_dynamic); B.List_UOW = A._setArrayType(makeConstList(["janeiro", "fevereiro", "mar\xe7o", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"]), type$.JSArray_dynamic); B.List_4CA1 = A._setArrayType(makeConstList(["jan", "fev", "mar", "abr", "mai", "jun", "jul", "ago", "set", "out", "nov", "dez"]), type$.JSArray_dynamic); B.List_izW = A._setArrayType(makeConstList(["domingo", "segunda-feira", "ter\xe7a-feira", "quarta-feira", "quinta-feira", "sexta-feira", "s\xe1bado"]), type$.JSArray_dynamic); B.List_wAg0 = A._setArrayType(makeConstList(["dom", "seg", "ter", "qua", "qui", "sex", "s\xe1b"]), type$.JSArray_dynamic); B.List_42w = A._setArrayType(makeConstList(["D", "S", "T", "Q", "Q", "S", "S"]), type$.JSArray_dynamic); B.List_Mvk = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d 'de' MMM 'de' y", "dd/MM/y"]), type$.JSArray_dynamic); B.Map_5tq5f = new A.ConstantStringMap(25, {NAME: "pt", ERAS: B.List_2No1, ERANAMES: B.List_AHF0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_UOW, STANDALONEMONTHS: B.List_UOW, SHORTMONTHS: B.List_4CA1, STANDALONESHORTMONTHS: B.List_4CA1, WEEKDAYS: B.List_izW, STANDALONEWEEKDAYS: B.List_izW, SHORTWEEKDAYS: B.List_wAg0, STANDALONESHORTWEEKDAYS: B.List_wAg0, NARROWWEEKDAYS: B.List_42w, STANDALONENARROWWEEKDAYS: B.List_42w, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_i7B1, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_Mvk, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_RsV2 = A._setArrayType(makeConstList(["domingo", "segunda", "ter\xe7a", "quarta", "quinta", "sexta", "s\xe1bado"]), type$.JSArray_dynamic); B.List_6vI = A._setArrayType(makeConstList(["da manh\xe3", "da tarde"]), type$.JSArray_dynamic); B.List_ODT = A._setArrayType(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "dd/MM/y", "dd/MM/yy"]), type$.JSArray_dynamic); B.List_gQW0 = A._setArrayType(makeConstList(["{1} '\xe0s' {0}", "{1} '\xe0s' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5t8IM = new A.ConstantStringMap(25, {NAME: "pt_PT", ERAS: B.List_2No1, ERANAMES: B.List_AHF0, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_UOW, STANDALONEMONTHS: B.List_UOW, SHORTMONTHS: B.List_4CA1, STANDALONESHORTMONTHS: B.List_4CA1, WEEKDAYS: B.List_izW, STANDALONEWEEKDAYS: B.List_izW, SHORTWEEKDAYS: B.List_RsV2, STANDALONESHORTWEEKDAYS: B.List_RsV2, NARROWWEEKDAYS: B.List_42w, STANDALONENARROWWEEKDAYS: B.List_42w, SHORTQUARTERS: B.List_T1_T2_T3_T4, QUARTERS: B.List_GfX, AMPMS: B.List_6vI, DATEFORMATS: B.List_ODT, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 2, DATETIMEFORMATS: B.List_gQW0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_cMd = A._setArrayType(makeConstList(["\xee.Hr.", "d.Hr."]), type$.JSArray_dynamic); B.List_435 = A._setArrayType(makeConstList(["\xeenainte de Hristos", "dup\u0103 Hristos"]), type$.JSArray_dynamic); B.List_woc0 = A._setArrayType(makeConstList(["I", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_xKE = A._setArrayType(makeConstList(["ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie"]), type$.JSArray_dynamic); B.List_JmU = A._setArrayType(makeConstList(["ian.", "feb.", "mar.", "apr.", "mai", "iun.", "iul.", "aug.", "sept.", "oct.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_woc1 = A._setArrayType(makeConstList(["duminic\u0103", "luni", "mar\u021bi", "miercuri", "joi", "vineri", "s\xe2mb\u0103t\u0103"]), type$.JSArray_dynamic); B.List_Y7S = A._setArrayType(makeConstList(["dum.", "lun.", "mar.", "mie.", "joi", "vin.", "s\xe2m."]), type$.JSArray_dynamic); B.List_cI2 = A._setArrayType(makeConstList(["trim. I", "trim. II", "trim. III", "trim. IV"]), type$.JSArray_dynamic); B.List_2jN1 = A._setArrayType(makeConstList(["trimestrul I", "trimestrul al II-lea", "trimestrul al III-lea", "trimestrul al IV-lea"]), type$.JSArray_dynamic); B.Map_5teC6 = new A.ConstantStringMap(25, {NAME: "ro", ERAS: B.List_cMd, ERANAMES: B.List_435, NARROWMONTHS: B.List_woc0, STANDALONENARROWMONTHS: B.List_woc0, MONTHS: B.List_xKE, STANDALONEMONTHS: B.List_xKE, SHORTMONTHS: B.List_JmU, STANDALONESHORTMONTHS: B.List_JmU, WEEKDAYS: B.List_woc1, STANDALONEWEEKDAYS: B.List_woc1, SHORTWEEKDAYS: B.List_Y7S, STANDALONESHORTWEEKDAYS: B.List_Y7S, NARROWWEEKDAYS: B.List_ROW, STANDALONENARROWWEEKDAYS: B.List_ROW, SHORTQUARTERS: B.List_cI2, QUARTERS: B.List_2jN1, AMPMS: B.List_2fJ, DATEFORMATS: B.List_799, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ijv = A._setArrayType(makeConstList(["\u0434\u043e \u043d. \u044d.", "\u043d. \u044d."]), type$.JSArray_dynamic); B.List_qH7 = A._setArrayType(makeConstList(["\u0434\u043e \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430", "\u043e\u0442 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430"]), type$.JSArray_dynamic); B.List_aAe = A._setArrayType(makeConstList(["\u044f\u043d\u0432\u0430\u0440\u044f", "\u0444\u0435\u0432\u0440\u0430\u043b\u044f", "\u043c\u0430\u0440\u0442\u0430", "\u0430\u043f\u0440\u0435\u043b\u044f", "\u043c\u0430\u044f", "\u0438\u044e\u043d\u044f", "\u0438\u044e\u043b\u044f", "\u0430\u0432\u0433\u0443\u0441\u0442\u0430", "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f", "\u043e\u043a\u0442\u044f\u0431\u0440\u044f", "\u043d\u043e\u044f\u0431\u0440\u044f", "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"]), type$.JSArray_dynamic); B.List_QWq = A._setArrayType(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432\u0440.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u044f", "\u0438\u044e\u043d.", "\u0438\u044e\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043d\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); B.List_6Wo = A._setArrayType(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432\u0440.", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440.", "\u043c\u0430\u0439", "\u0438\u044e\u043d\u044c", "\u0438\u044e\u043b\u044c", "\u0430\u0432\u0433.", "\u0441\u0435\u043d\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); B.List_mpd = A._setArrayType(makeConstList(["\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0435\u0440\u0433", "\u043f\u044f\u0442\u043d\u0438\u0446\u0430", "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_0Lp = A._setArrayType(makeConstList(["\u0432\u0441", "\u043f\u043d", "\u0432\u0442", "\u0441\u0440", "\u0447\u0442", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); B.List_gA40 = A._setArrayType(makeConstList(["\u0412", "\u041f", "\u0412", "\u0421", "\u0427", "\u041f", "\u0421"]), type$.JSArray_dynamic); B.List_wcW = A._setArrayType(makeConstList(["1-\u0439 \u043a\u0432.", "2-\u0439 \u043a\u0432.", "3-\u0439 \u043a\u0432.", "4-\u0439 \u043a\u0432."]), type$.JSArray_dynamic); B.List_c3X = A._setArrayType(makeConstList(["1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); B.List_VWt = A._setArrayType(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d MMM y '\u0433'.", "dd.MM.y"]), type$.JSArray_dynamic); B.Map_5tDrw = new A.ConstantStringMap(25, {NAME: "ru", ERAS: B.List_ijv, ERANAMES: B.List_qH7, NARROWMONTHS: B.List_16h, STANDALONENARROWMONTHS: B.List_16h, MONTHS: B.List_aAe, STANDALONEMONTHS: B.List_rNu, SHORTMONTHS: B.List_QWq, STANDALONESHORTMONTHS: B.List_6Wo, WEEKDAYS: B.List_mpd, STANDALONEWEEKDAYS: B.List_mpd, SHORTWEEKDAYS: B.List_0Lp, STANDALONESHORTWEEKDAYS: B.List_0Lp, NARROWWEEKDAYS: B.List_0Lp, STANDALONENARROWWEEKDAYS: B.List_gA40, SHORTQUARTERS: B.List_wcW, QUARTERS: B.List_c3X, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_VWt, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_cTZ = A._setArrayType(makeConstList(["\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0db4\u0dd6.", "\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0dc0."]), type$.JSArray_dynamic); B.List_qbf = A._setArrayType(makeConstList(["\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0db4\u0dd6\u0dbb\u0dca\u0dc0", "\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0dc0\u0dbb\u0dca\u0dc2"]), type$.JSArray_dynamic); B.List_nTU = A._setArrayType(makeConstList(["\u0da2", "\u0db4\u0dd9", "\u0db8\u0dcf", "\u0d85", "\u0db8\u0dd0", "\u0da2\u0dd6", "\u0da2\u0dd6", "\u0d85", "\u0dc3\u0dd0", "\u0d94", "\u0db1\u0dd9", "\u0daf\u0dd9"]), type$.JSArray_dynamic); B.List_2el = A._setArrayType(makeConstList(["\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2", "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2", "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4", "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca"]), type$.JSArray_dynamic); B.List_KDE = A._setArrayType(makeConstList(["\u0da2\u0db1", "\u0db4\u0dd9\u0db6", "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd", "\u0dc3\u0dd0\u0db4\u0dca", "\u0d94\u0d9a\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0"]), type$.JSArray_dynamic); B.List_UkW = A._setArrayType(makeConstList(["\u0da2\u0db1", "\u0db4\u0dd9\u0db6", "\u0db8\u0dcf\u0dbb\u0dca", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd", "\u0dc3\u0dd0\u0db4\u0dca", "\u0d94\u0d9a\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0"]), type$.JSArray_dynamic); B.List_Wr1 = A._setArrayType(makeConstList(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf", "\u0dc3\u0db3\u0dd4\u0daf\u0dcf", "\u0d85\u0d9f\u0dc4\u0dbb\u0dd4\u0dc0\u0dcf\u0daf\u0dcf", "\u0db6\u0daf\u0dcf\u0daf\u0dcf", "\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca\u0db4\u0dad\u0dd2\u0db1\u0dca\u0daf\u0dcf", "\u0dc3\u0dd2\u0d9a\u0dd4\u0dbb\u0dcf\u0daf\u0dcf", "\u0dc3\u0dd9\u0db1\u0dc3\u0dd4\u0dbb\u0dcf\u0daf\u0dcf"]), type$.JSArray_dynamic); B.List_EOZ0 = A._setArrayType(makeConstList(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf", "\u0dc3\u0db3\u0dd4\u0daf\u0dcf", "\u0d85\u0d9f\u0dc4", "\u0db6\u0daf\u0dcf\u0daf\u0dcf", "\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca", "\u0dc3\u0dd2\u0d9a\u0dd4", "\u0dc3\u0dd9\u0db1"]), type$.JSArray_dynamic); B.List_gSJ = A._setArrayType(makeConstList(["\u0d89", "\u0dc3", "\u0d85", "\u0db6", "\u0db6\u0dca\u200d\u0dbb", "\u0dc3\u0dd2", "\u0dc3\u0dd9"]), type$.JSArray_dynamic); B.List_Pss0 = A._setArrayType(makeConstList(["\u0d9a\u0dcf\u0dbb\u0dca:1", "\u0d9a\u0dcf\u0dbb\u0dca:2", "\u0d9a\u0dcf\u0dbb\u0dca:3", "\u0d9a\u0dcf\u0dbb\u0dca:4"]), type$.JSArray_dynamic); B.List_C5f = A._setArrayType(makeConstList(["1 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "2 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "3 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "4 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0"]), type$.JSArray_dynamic); B.List_ago = A._setArrayType(makeConstList(["\u0db4\u0dd9.\u0dc0.", "\u0db4.\u0dc0."]), type$.JSArray_dynamic); B.List_qJO = A._setArrayType(makeConstList(["y MMMM d, EEEE", "y MMMM d", "y MMM d", "y-MM-dd"]), type$.JSArray_dynamic); B.Map_5t1p9 = new A.ConstantStringMap(25, {NAME: "si", ERAS: B.List_cTZ, ERANAMES: B.List_qbf, NARROWMONTHS: B.List_nTU, STANDALONENARROWMONTHS: B.List_nTU, MONTHS: B.List_2el, STANDALONEMONTHS: B.List_2el, SHORTMONTHS: B.List_KDE, STANDALONESHORTMONTHS: B.List_UkW, WEEKDAYS: B.List_Wr1, STANDALONEWEEKDAYS: B.List_Wr1, SHORTWEEKDAYS: B.List_EOZ0, STANDALONESHORTWEEKDAYS: B.List_EOZ0, NARROWWEEKDAYS: B.List_gSJ, STANDALONENARROWWEEKDAYS: B.List_gSJ, SHORTQUARTERS: B.List_Pss0, QUARTERS: B.List_C5f, AMPMS: B.List_ago, DATEFORMATS: B.List_qJO, TIMEFORMATS: B.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_ESD = A._setArrayType(makeConstList(["pred Kr.", "po Kr."]), type$.JSArray_dynamic); B.List_C7O = A._setArrayType(makeConstList(["pred Kristom", "po Kristovi"]), type$.JSArray_dynamic); B.List_yzq = A._setArrayType(makeConstList(["janu\xe1ra", "febru\xe1ra", "marca", "apr\xedla", "m\xe1ja", "j\xfana", "j\xfala", "augusta", "septembra", "okt\xf3bra", "novembra", "decembra"]), type$.JSArray_dynamic); B.List_94u = A._setArrayType(makeConstList(["janu\xe1r", "febru\xe1r", "marec", "apr\xedl", "m\xe1j", "j\xfan", "j\xfal", "august", "september", "okt\xf3ber", "november", "december"]), type$.JSArray_dynamic); B.List_XQ8 = A._setArrayType(makeConstList(["jan", "feb", "mar", "apr", "m\xe1j", "j\xfan", "j\xfal", "aug", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); B.List_UJa = A._setArrayType(makeConstList(["nede\u013ea", "pondelok", "utorok", "streda", "\u0161tvrtok", "piatok", "sobota"]), type$.JSArray_dynamic); B.List_gf4 = A._setArrayType(makeConstList(["ne", "po", "ut", "st", "\u0161t", "pi", "so"]), type$.JSArray_dynamic); B.List_qhE0 = A._setArrayType(makeConstList(["n", "p", "u", "s", "\u0161", "p", "s"]), type$.JSArray_dynamic); B.List_gkc6 = A._setArrayType(makeConstList(["1. \u0161tvr\u0165rok", "2. \u0161tvr\u0165rok", "3. \u0161tvr\u0165rok", "4. \u0161tvr\u0165rok"]), type$.JSArray_dynamic); B.List_HV0 = A._setArrayType(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. M. y", "d. M. y"]), type$.JSArray_dynamic); B.List_2Zs = A._setArrayType(makeConstList(["{1}, {0}", "{1}, {0}", "{1}, {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5tUWX = new A.ConstantStringMap(25, {NAME: "sk", ERAS: B.List_ESD, ERANAMES: B.List_C7O, NARROWMONTHS: B.List_oEc, STANDALONENARROWMONTHS: B.List_oEc, MONTHS: B.List_yzq, STANDALONEMONTHS: B.List_94u, SHORTMONTHS: B.List_XQ8, STANDALONESHORTMONTHS: B.List_XQ8, WEEKDAYS: B.List_UJa, STANDALONEWEEKDAYS: B.List_UJa, SHORTWEEKDAYS: B.List_gf4, STANDALONESHORTWEEKDAYS: B.List_gf4, NARROWWEEKDAYS: B.List_qhE0, STANDALONENARROWWEEKDAYS: B.List_qhE0, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_gkc6, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_HV0, TIMEFORMATS: B.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_2Zs}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_fA9 = A._setArrayType(makeConstList(["pred Kristusom", "po Kristusu"]), type$.JSArray_dynamic); B.List_kXN = A._setArrayType(makeConstList(["januar", "februar", "marec", "april", "maj", "junij", "julij", "avgust", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); B.List_DVW = A._setArrayType(makeConstList(["jan.", "feb.", "mar.", "apr.", "maj", "jun.", "jul.", "avg.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_jrB = A._setArrayType(makeConstList(["nedelja", "ponedeljek", "torek", "sreda", "\u010detrtek", "petek", "sobota"]), type$.JSArray_dynamic); B.List_f9Z = A._setArrayType(makeConstList(["ned.", "pon.", "tor.", "sre.", "\u010det.", "pet.", "sob."]), type$.JSArray_dynamic); B.List_0I7 = A._setArrayType(makeConstList(["n", "p", "t", "s", "\u010d", "p", "s"]), type$.JSArray_dynamic); B.List_4if = A._setArrayType(makeConstList(["1. \u010det.", "2. \u010det.", "3. \u010det.", "4. \u010det."]), type$.JSArray_dynamic); B.List_gsm0 = A._setArrayType(makeConstList(["1. \u010detrtletje", "2. \u010detrtletje", "3. \u010detrtletje", "4. \u010detrtletje"]), type$.JSArray_dynamic); B.List_1mI = A._setArrayType(makeConstList(["dop.", "pop."]), type$.JSArray_dynamic); B.List_a7L = A._setArrayType(makeConstList(["EEEE, dd. MMMM y", "dd. MMMM y", "d. MMM y", "d. MM. yy"]), type$.JSArray_dynamic); B.Map_5trp3 = new A.ConstantStringMap(25, {NAME: "sl", ERAS: B.List_OCX, ERANAMES: B.List_fA9, NARROWMONTHS: B.List_oEc, STANDALONENARROWMONTHS: B.List_oEc, MONTHS: B.List_kXN, STANDALONEMONTHS: B.List_kXN, SHORTMONTHS: B.List_DVW, STANDALONESHORTMONTHS: B.List_DVW, WEEKDAYS: B.List_jrB, STANDALONEWEEKDAYS: B.List_jrB, SHORTWEEKDAYS: B.List_f9Z, STANDALONESHORTWEEKDAYS: B.List_f9Z, NARROWWEEKDAYS: B.List_0I7, STANDALONENARROWWEEKDAYS: B.List_0I7, SHORTQUARTERS: B.List_4if, QUARTERS: B.List_gsm0, AMPMS: B.List_1mI, DATEFORMATS: B.List_a7L, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_adc = A._setArrayType(makeConstList(["p.K.", "mb.K."]), type$.JSArray_dynamic); B.List_pm3 = A._setArrayType(makeConstList(["para Krishtit", "mbas Krishtit"]), type$.JSArray_dynamic); B.List_IB4 = A._setArrayType(makeConstList(["j", "sh", "m", "p", "m", "q", "k", "g", "sh", "t", "n", "dh"]), type$.JSArray_dynamic); B.List_O8N = A._setArrayType(makeConstList(["janar", "shkurt", "mars", "prill", "maj", "qershor", "korrik", "gusht", "shtator", "tetor", "n\xebntor", "dhjetor"]), type$.JSArray_dynamic); B.List_GQs = A._setArrayType(makeConstList(["jan", "shk", "mar", "pri", "maj", "qer", "korr", "gush", "sht", "tet", "n\xebn", "dhj"]), type$.JSArray_dynamic); B.List_YSy = A._setArrayType(makeConstList(["e diel", "e h\xebn\xeb", "e mart\xeb", "e m\xebrkur\xeb", "e enjte", "e premte", "e shtun\xeb"]), type$.JSArray_dynamic); B.List_s8I = A._setArrayType(makeConstList(["Die", "H\xebn", "Mar", "M\xebr", "Enj", "Pre", "Sht"]), type$.JSArray_dynamic); B.List_CFB = A._setArrayType(makeConstList(["die", "h\xebn", "mar", "m\xebr", "enj", "pre", "sht"]), type$.JSArray_dynamic); B.List_MQk0 = A._setArrayType(makeConstList(["d", "h", "m", "m", "e", "p", "sh"]), type$.JSArray_dynamic); B.List_lI3 = A._setArrayType(makeConstList(["tremujori I", "tremujori II", "tremujori III", "tremujori IV"]), type$.JSArray_dynamic); B.List_EF2 = A._setArrayType(makeConstList(["tremujori i par\xeb", "tremujori i dyt\xeb", "tremujori i tret\xeb", "tremujori i kat\xebrt"]), type$.JSArray_dynamic); B.List_ew6 = A._setArrayType(makeConstList(["e paradites", "e pasdites"]), type$.JSArray_dynamic); B.List_MTP = A._setArrayType(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d.M.yy"]), type$.JSArray_dynamic); B.List_wsj = A._setArrayType(makeConstList(["h:mm:ss a, zzzz", "h:mm:ss a, z", "h:mm:ss a", "h:mm a"]), type$.JSArray_dynamic); B.List_Jik0 = A._setArrayType(makeConstList(["{1} 'n\xeb' {0}", "{1} 'n\xeb' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tSlD = new A.ConstantStringMap(25, {NAME: "sq", ERAS: B.List_adc, ERANAMES: B.List_pm3, NARROWMONTHS: B.List_IB4, STANDALONENARROWMONTHS: B.List_IB4, MONTHS: B.List_O8N, STANDALONEMONTHS: B.List_O8N, SHORTMONTHS: B.List_GQs, STANDALONESHORTMONTHS: B.List_GQs, WEEKDAYS: B.List_YSy, STANDALONEWEEKDAYS: B.List_YSy, SHORTWEEKDAYS: B.List_s8I, STANDALONESHORTWEEKDAYS: B.List_CFB, NARROWWEEKDAYS: B.List_MQk0, STANDALONENARROWWEEKDAYS: B.List_MQk0, SHORTQUARTERS: B.List_lI3, QUARTERS: B.List_EF2, AMPMS: B.List_ew6, DATEFORMATS: B.List_MTP, TIMEFORMATS: B.List_wsj, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Jik0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_so3 = A._setArrayType(makeConstList(["\u043f. \u043d. \u0435.", "\u043d. \u0435."]), type$.JSArray_dynamic); B.List_atK = A._setArrayType(makeConstList(["\u043f\u0440\u0435 \u043d\u043e\u0432\u0435 \u0435\u0440\u0435", "\u043d\u043e\u0432\u0435 \u0435\u0440\u0435"]), type$.JSArray_dynamic); B.List_agk = A._setArrayType(makeConstList(["\u0458\u0430\u043d\u0443\u0430\u0440", "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0458", "\u0458\u0443\u043d", "\u0458\u0443\u043b", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"]), type$.JSArray_dynamic); B.List_EFh = A._setArrayType(makeConstList(["\u0458\u0430\u043d", "\u0444\u0435\u0431", "\u043c\u0430\u0440", "\u0430\u043f\u0440", "\u043c\u0430\u0458", "\u0458\u0443\u043d", "\u0458\u0443\u043b", "\u0430\u0432\u0433", "\u0441\u0435\u043f", "\u043e\u043a\u0442", "\u043d\u043e\u0432", "\u0434\u0435\u0446"]), type$.JSArray_dynamic); B.List_YoH = A._setArrayType(makeConstList(["\u043d\u0435\u0434\u0435\u0459\u0430", "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a", "\u0443\u0442\u043e\u0440\u0430\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a", "\u043f\u0435\u0442\u0430\u043a", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_A0N0 = A._setArrayType(makeConstList(["\u043d\u0435\u0434", "\u043f\u043e\u043d", "\u0443\u0442\u043e", "\u0441\u0440\u0435", "\u0447\u0435\u0442", "\u043f\u0435\u0442", "\u0441\u0443\u0431"]), type$.JSArray_dynamic); B.List_gg90 = A._setArrayType(makeConstList(["\u043d", "\u043f", "\u0443", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); B.List_011 = A._setArrayType(makeConstList(["\u041a1", "\u041a2", "\u041a3", "\u041a4"]), type$.JSArray_dynamic); B.List_23h1 = A._setArrayType(makeConstList(["\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); B.List_mXg = A._setArrayType(makeConstList(["\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435", "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"]), type$.JSArray_dynamic); B.List_2nh = A._setArrayType(makeConstList(["EEEE, dd. MMMM y.", "dd. MMMM y.", "dd.MM.y.", "d.M.yy."]), type$.JSArray_dynamic); B.Map_5tqJ4 = new A.ConstantStringMap(25, {NAME: "sr", ERAS: B.List_so3, ERANAMES: B.List_atK, NARROWMONTHS: B.List_owA, STANDALONENARROWMONTHS: B.List_owA, MONTHS: B.List_agk, STANDALONEMONTHS: B.List_agk, SHORTMONTHS: B.List_EFh, STANDALONESHORTMONTHS: B.List_EFh, WEEKDAYS: B.List_YoH, STANDALONEWEEKDAYS: B.List_YoH, SHORTWEEKDAYS: B.List_A0N0, STANDALONESHORTWEEKDAYS: B.List_A0N0, NARROWWEEKDAYS: B.List_gg90, STANDALONENARROWWEEKDAYS: B.List_gg90, SHORTQUARTERS: B.List_011, QUARTERS: B.List_23h1, AMPMS: B.List_mXg, DATEFORMATS: B.List_2nh, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Jsm = A._setArrayType(makeConstList(["pre nove ere", "nove ere"]), type$.JSArray_dynamic); B.List_peT = A._setArrayType(makeConstList(["januar", "februar", "mart", "april", "maj", "jun", "jul", "avgust", "septembar", "oktobar", "novembar", "decembar"]), type$.JSArray_dynamic); B.List_CdE = A._setArrayType(makeConstList(["jan", "feb", "mar", "apr", "maj", "jun", "jul", "avg", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); B.List_ntP = A._setArrayType(makeConstList(["nedelja", "ponedeljak", "utorak", "sreda", "\u010detvrtak", "petak", "subota"]), type$.JSArray_dynamic); B.List_JmU0 = A._setArrayType(makeConstList(["ned", "pon", "uto", "sre", "\u010det", "pet", "sub"]), type$.JSArray_dynamic); B.List_mJx = A._setArrayType(makeConstList(["prvi kvartal", "drugi kvartal", "tre\u0107i kvartal", "\u010detvrti kvartal"]), type$.JSArray_dynamic); B.List_hKt = A._setArrayType(makeConstList(["pre podne", "po podne"]), type$.JSArray_dynamic); B.Map_5tN7e = new A.ConstantStringMap(25, {NAME: "sr_Latn", ERAS: B.List_PDz, ERANAMES: B.List_Jsm, NARROWMONTHS: B.List_oEc, STANDALONENARROWMONTHS: B.List_oEc, MONTHS: B.List_peT, STANDALONEMONTHS: B.List_peT, SHORTMONTHS: B.List_CdE, STANDALONESHORTMONTHS: B.List_CdE, WEEKDAYS: B.List_ntP, STANDALONEWEEKDAYS: B.List_ntP, SHORTWEEKDAYS: B.List_JmU0, STANDALONESHORTWEEKDAYS: B.List_JmU0, NARROWWEEKDAYS: B.List_sci, STANDALONENARROWWEEKDAYS: B.List_sci, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_mJx, AMPMS: B.List_hKt, DATEFORMATS: B.List_2nh, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_kvD = A._setArrayType(makeConstList(["f\xf6re Kristus", "efter Kristus"]), type$.JSArray_dynamic); B.List_4MR = A._setArrayType(makeConstList(["januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); B.List_Mmn = A._setArrayType(makeConstList(["jan.", "feb.", "mars", "apr.", "maj", "juni", "juli", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); B.List_HFl = A._setArrayType(makeConstList(["s\xf6ndag", "m\xe5ndag", "tisdag", "onsdag", "torsdag", "fredag", "l\xf6rdag"]), type$.JSArray_dynamic); B.List_aXZ = A._setArrayType(makeConstList(["s\xf6n", "m\xe5n", "tis", "ons", "tors", "fre", "l\xf6r"]), type$.JSArray_dynamic); B.List_52Y = A._setArrayType(makeConstList(["1:a kvartalet", "2:a kvartalet", "3:e kvartalet", "4:e kvartalet"]), type$.JSArray_dynamic); B.List_fm_em = A._setArrayType(makeConstList(["fm", "em"]), type$.JSArray_dynamic); B.List_8Gl0 = A._setArrayType(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "y-MM-dd"]), type$.JSArray_dynamic); B.List_UUO0 = A._setArrayType(makeConstList(["'kl'. HH:mm:ss zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.Map_5tgsm = new A.ConstantStringMap(25, {NAME: "sv", ERAS: B.List_OPD, ERANAMES: B.List_kvD, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_4MR, STANDALONEMONTHS: B.List_4MR, SHORTMONTHS: B.List_Mmn, STANDALONESHORTMONTHS: B.List_Mmn, WEEKDAYS: B.List_HFl, STANDALONEWEEKDAYS: B.List_HFl, SHORTWEEKDAYS: B.List_aXZ, STANDALONESHORTWEEKDAYS: B.List_aXZ, NARROWWEEKDAYS: B.List_GVy, STANDALONENARROWWEEKDAYS: B.List_GVy, SHORTQUARTERS: B.List_K1_K2_K3_K4, QUARTERS: B.List_52Y, AMPMS: B.List_fm_em, DATEFORMATS: B.List_8Gl0, TIMEFORMATS: B.List_UUO0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_KK_BK = A._setArrayType(makeConstList(["KK", "BK"]), type$.JSArray_dynamic); B.List_fL60 = A._setArrayType(makeConstList(["Kabla ya Kristo", "Baada ya Kristo"]), type$.JSArray_dynamic); B.List_j3h = A._setArrayType(makeConstList(["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"]), type$.JSArray_dynamic); B.List_8R1 = A._setArrayType(makeConstList(["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"]), type$.JSArray_dynamic); B.List_MtR = A._setArrayType(makeConstList(["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"]), type$.JSArray_dynamic); B.List_Kep = A._setArrayType(makeConstList(["Robo ya 1", "Robo ya 2", "Robo ya 3", "Robo ya 4"]), type$.JSArray_dynamic); B.Map_5tum9 = new A.ConstantStringMap(25, {NAME: "sw", ERAS: B.List_KK_BK, ERANAMES: B.List_fL60, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_j3h, STANDALONEMONTHS: B.List_j3h, SHORTMONTHS: B.List_8R1, STANDALONESHORTMONTHS: B.List_8R1, WEEKDAYS: B.List_MtR, STANDALONEWEEKDAYS: B.List_MtR, SHORTWEEKDAYS: B.List_MtR, STANDALONESHORTWEEKDAYS: B.List_MtR, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_Kep, QUARTERS: B.List_Kep, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_ml50, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_n3c = A._setArrayType(makeConstList(["\u0b95\u0bbf.\u0bae\u0bc1.", "\u0b95\u0bbf.\u0baa\u0bbf."]), type$.JSArray_dynamic); B.List_5Tk = A._setArrayType(makeConstList(["\u0b95\u0bbf\u0bb1\u0bbf\u0bb8\u0bcd\u0ba4\u0bc1\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd", "\u0b85\u0ba9\u0bcd\u0ba9\u0bcb \u0b9f\u0bcb\u0bae\u0bbf\u0ba9\u0bbf"]), type$.JSArray_dynamic); B.List_csj = A._setArrayType(makeConstList(["\u0b9c", "\u0baa\u0bbf", "\u0bae\u0bbe", "\u0b8f", "\u0bae\u0bc7", "\u0b9c\u0bc2", "\u0b9c\u0bc2", "\u0b86", "\u0b9a\u0bc6", "\u0b85", "\u0ba8", "\u0b9f\u0bbf"]), type$.JSArray_dynamic); B.List_oCX = A._setArrayType(makeConstList(["\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", "\u0bae\u0bc7", "\u0b9c\u0bc2\u0ba9\u0bcd", "\u0b9c\u0bc2\u0bb2\u0bc8", "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd", "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"]), type$.JSArray_dynamic); B.List_IIf = A._setArrayType(makeConstList(["\u0b9c\u0ba9.", "\u0baa\u0bbf\u0baa\u0bcd.", "\u0bae\u0bbe\u0bb0\u0bcd.", "\u0b8f\u0baa\u0bcd.", "\u0bae\u0bc7", "\u0b9c\u0bc2\u0ba9\u0bcd", "\u0b9c\u0bc2\u0bb2\u0bc8", "\u0b86\u0b95.", "\u0b9a\u0bc6\u0baa\u0bcd.", "\u0b85\u0b95\u0bcd.", "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a."]), type$.JSArray_dynamic); B.List_CW0 = A._setArrayType(makeConstList(["\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1", "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd", "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd", "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd", "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd", "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf", "\u0b9a\u0ba9\u0bbf"]), type$.JSArray_dynamic); B.List_bFE = A._setArrayType(makeConstList(["\u0b9e\u0bbe\u0baf\u0bbf.", "\u0ba4\u0bbf\u0b99\u0bcd.", "\u0b9a\u0bc6\u0bb5\u0bcd.", "\u0baa\u0bc1\u0ba4.", "\u0bb5\u0bbf\u0baf\u0bbe.", "\u0bb5\u0bc6\u0bb3\u0bcd.", "\u0b9a\u0ba9\u0bbf"]), type$.JSArray_dynamic); B.List_eIp = A._setArrayType(makeConstList(["\u0b9e\u0bbe", "\u0ba4\u0bbf", "\u0b9a\u0bc6", "\u0baa\u0bc1", "\u0bb5\u0bbf", "\u0bb5\u0bc6", "\u0b9a"]), type$.JSArray_dynamic); B.List_2ig = A._setArrayType(makeConstList(["\u0b95\u0bbe\u0bb2\u0bbe.1", "\u0b95\u0bbe\u0bb2\u0bbe.2", "\u0b95\u0bbe\u0bb2\u0bbe.3", "\u0b95\u0bbe\u0bb2\u0bbe.4"]), type$.JSArray_dynamic); B.List_gkc7 = A._setArrayType(makeConstList(["\u0b92\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0b87\u0bb0\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0bae\u0bc2\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0ba8\u0bbe\u0ba9\u0bcd\u0b95\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1"]), type$.JSArray_dynamic); B.List_THA = A._setArrayType(makeConstList(["\u0bae\u0bc1\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd", "\u0baa\u0bbf\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd"]), type$.JSArray_dynamic); B.List_XRK = A._setArrayType(makeConstList(["a h:mm:ss zzzz", "a h:mm:ss z", "a h:mm:ss", "a h:mm"]), type$.JSArray_dynamic); B.List_iYS = A._setArrayType(makeConstList(["{1} \u2019\u0b85\u0ba9\u0bcd\u0bb1\u0bc1\u2019 {0}", "{1} \u2019\u0b85\u0ba9\u0bcd\u0bb1\u0bc1\u2019 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tDni = new A.ConstantStringMap(25, {NAME: "ta", ERAS: B.List_n3c, ERANAMES: B.List_5Tk, NARROWMONTHS: B.List_csj, STANDALONENARROWMONTHS: B.List_csj, MONTHS: B.List_oCX, STANDALONEMONTHS: B.List_oCX, SHORTMONTHS: B.List_IIf, STANDALONESHORTMONTHS: B.List_IIf, WEEKDAYS: B.List_CW0, STANDALONEWEEKDAYS: B.List_CW0, SHORTWEEKDAYS: B.List_bFE, STANDALONESHORTWEEKDAYS: B.List_bFE, NARROWWEEKDAYS: B.List_eIp, STANDALONENARROWWEEKDAYS: B.List_eIp, SHORTQUARTERS: B.List_2ig, QUARTERS: B.List_gkc7, AMPMS: B.List_THA, DATEFORMATS: B.List_oYk, TIMEFORMATS: B.List_XRK, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_iYS}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_gc62 = A._setArrayType(makeConstList(["\u0c15\u0c4d\u0c30\u0c40\u0c2a\u0c42", "\u0c15\u0c4d\u0c30\u0c40\u0c36"]), type$.JSArray_dynamic); B.List_C3v = A._setArrayType(makeConstList(["\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c2a\u0c42\u0c30\u0c4d\u0c35\u0c02", "\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c36\u0c15\u0c02"]), type$.JSArray_dynamic); B.List_sav0 = A._setArrayType(makeConstList(["\u0c1c", "\u0c2b\u0c3f", "\u0c2e\u0c3e", "\u0c0f", "\u0c2e\u0c47", "\u0c1c\u0c42", "\u0c1c\u0c41", "\u0c06", "\u0c38\u0c46", "\u0c05", "\u0c28", "\u0c21\u0c3f"]), type$.JSArray_dynamic); B.List_kmo = A._setArrayType(makeConstList(["\u0c1c\u0c28\u0c35\u0c30\u0c3f", "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f", "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d", "\u0c2e\u0c47", "\u0c1c\u0c42\u0c28\u0c4d", "\u0c1c\u0c41\u0c32\u0c48", "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41", "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d", "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d", "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d", "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"]), type$.JSArray_dynamic); B.List_6H20 = A._setArrayType(makeConstList(["\u0c1c\u0c28", "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30", "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f", "\u0c2e\u0c47", "\u0c1c\u0c42\u0c28\u0c4d", "\u0c1c\u0c41\u0c32\u0c48", "\u0c06\u0c17", "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02", "\u0c05\u0c15\u0c4d\u0c1f\u0c4b", "\u0c28\u0c35\u0c02", "\u0c21\u0c3f\u0c38\u0c46\u0c02"]), type$.JSArray_dynamic); B.List_MLw = A._setArrayType(makeConstList(["\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02", "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02", "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02", "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02", "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02", "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02", "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"]), type$.JSArray_dynamic); B.List_MIo = A._setArrayType(makeConstList(["\u0c06\u0c26\u0c3f", "\u0c38\u0c4b\u0c2e", "\u0c2e\u0c02\u0c17\u0c33", "\u0c2c\u0c41\u0c27", "\u0c17\u0c41\u0c30\u0c41", "\u0c36\u0c41\u0c15\u0c4d\u0c30", "\u0c36\u0c28\u0c3f"]), type$.JSArray_dynamic); B.List_ahs = A._setArrayType(makeConstList(["\u0c06", "\u0c38\u0c4b", "\u0c2e", "\u0c2c\u0c41", "\u0c17\u0c41", "\u0c36\u0c41", "\u0c36"]), type$.JSArray_dynamic); B.List_mJ1 = A._setArrayType(makeConstList(["\u0c24\u0c4d\u0c30\u0c481", "\u0c24\u0c4d\u0c30\u0c482", "\u0c24\u0c4d\u0c30\u0c483", "\u0c24\u0c4d\u0c30\u0c484"]), type$.JSArray_dynamic); B.List_pXQ = A._setArrayType(makeConstList(["1\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "2\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "3\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "4\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02"]), type$.JSArray_dynamic); B.List_Vav = A._setArrayType(makeConstList(["d, MMMM y, EEEE", "d MMMM, y", "d MMM, y", "dd-MM-yy"]), type$.JSArray_dynamic); B.List_zrt0 = A._setArrayType(makeConstList(["{1} {0}\u0c15\u0c3f", "{1} {0}\u0c15\u0c3f", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); B.Map_5t6Xj = new A.ConstantStringMap(25, {NAME: "te", ERAS: B.List_gc62, ERANAMES: B.List_C3v, NARROWMONTHS: B.List_sav0, STANDALONENARROWMONTHS: B.List_sav0, MONTHS: B.List_kmo, STANDALONEMONTHS: B.List_kmo, SHORTMONTHS: B.List_6H20, STANDALONESHORTMONTHS: B.List_6H20, WEEKDAYS: B.List_MLw, STANDALONEWEEKDAYS: B.List_MLw, SHORTWEEKDAYS: B.List_MIo, STANDALONESHORTWEEKDAYS: B.List_MIo, NARROWWEEKDAYS: B.List_ahs, STANDALONENARROWWEEKDAYS: B.List_ahs, SHORTQUARTERS: B.List_mJ1, QUARTERS: B.List_pXQ, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_Vav, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_zrt0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_RG0 = A._setArrayType(makeConstList(["\u0e01\u0e48\u0e2d\u0e19 \u0e04.\u0e28.", "\u0e04.\u0e28."]), type$.JSArray_dynamic); B.List_T4j = A._setArrayType(makeConstList(["\u0e1b\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e01\u0e32\u0e25", "\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e4c\u0e28\u0e31\u0e01\u0e23\u0e32\u0e0a"]), type$.JSArray_dynamic); B.List_Dx1 = A._setArrayType(makeConstList(["\u0e21.\u0e04.", "\u0e01.\u0e1e.", "\u0e21\u0e35.\u0e04.", "\u0e40\u0e21.\u0e22.", "\u0e1e.\u0e04.", "\u0e21\u0e34.\u0e22.", "\u0e01.\u0e04.", "\u0e2a.\u0e04.", "\u0e01.\u0e22.", "\u0e15.\u0e04.", "\u0e1e.\u0e22.", "\u0e18.\u0e04."]), type$.JSArray_dynamic); B.List_GYK = A._setArrayType(makeConstList(["\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"]), type$.JSArray_dynamic); B.List_Yzz = A._setArrayType(makeConstList(["\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c", "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c", "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23", "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35", "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c", "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"]), type$.JSArray_dynamic); B.List_IRg = A._setArrayType(makeConstList(["\u0e2d\u0e32.", "\u0e08.", "\u0e2d.", "\u0e1e.", "\u0e1e\u0e24.", "\u0e28.", "\u0e2a."]), type$.JSArray_dynamic); B.List_Wnt = A._setArrayType(makeConstList(["\u0e2d\u0e32", "\u0e08", "\u0e2d", "\u0e1e", "\u0e1e\u0e24", "\u0e28", "\u0e2a"]), type$.JSArray_dynamic); B.List_yLX = A._setArrayType(makeConstList(["\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 1", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 2", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 3", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 4"]), type$.JSArray_dynamic); B.List_XOr = A._setArrayType(makeConstList(["\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07", "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"]), type$.JSArray_dynamic); B.List_IoI = A._setArrayType(makeConstList(["EEEE\u0e17\u0e35\u0e48 d MMMM G y", "d MMMM G y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); B.List_YD5 = A._setArrayType(makeConstList(["H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 zzzz", "H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.Map_5tCBD = new A.ConstantStringMap(25, {NAME: "th", ERAS: B.List_RG0, ERANAMES: B.List_T4j, NARROWMONTHS: B.List_Dx1, STANDALONENARROWMONTHS: B.List_Dx1, MONTHS: B.List_GYK, STANDALONEMONTHS: B.List_GYK, SHORTMONTHS: B.List_Dx1, STANDALONESHORTMONTHS: B.List_Dx1, WEEKDAYS: B.List_Yzz, STANDALONEWEEKDAYS: B.List_Yzz, SHORTWEEKDAYS: B.List_IRg, STANDALONESHORTWEEKDAYS: B.List_IRg, NARROWWEEKDAYS: B.List_Wnt, STANDALONENARROWWEEKDAYS: B.List_Wnt, SHORTQUARTERS: B.List_yLX, QUARTERS: B.List_yLX, AMPMS: B.List_XOr, DATEFORMATS: B.List_IoI, TIMEFORMATS: B.List_YD5, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_5t5MH = new A.ConstantStringMap(25, {NAME: "tl", ERAS: B.List_BC_AD0, ERANAMES: B.List_6xs0, NARROWMONTHS: B.List_Duo, STANDALONENARROWMONTHS: B.List_I1L, MONTHS: B.List_hSa, STANDALONEMONTHS: B.List_hSa, SHORTMONTHS: B.List_Duo, STANDALONESHORTMONTHS: B.List_Duo, WEEKDAYS: B.List_xw80, STANDALONEWEEKDAYS: B.List_xw80, SHORTWEEKDAYS: B.List_sdO, STANDALONESHORTWEEKDAYS: B.List_sdO, NARROWWEEKDAYS: B.List_sdO, STANDALONENARROWWEEKDAYS: B.List_sdO, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_ciW, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_QkZ}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_2RQ = A._setArrayType(makeConstList(["M\xd6", "MS"]), type$.JSArray_dynamic); B.List_uwZ = A._setArrayType(makeConstList(["Milattan \xd6nce", "Milattan Sonra"]), type$.JSArray_dynamic); B.List_1wB = A._setArrayType(makeConstList(["O", "\u015e", "M", "N", "M", "H", "T", "A", "E", "E", "K", "A"]), type$.JSArray_dynamic); B.List_FaD = A._setArrayType(makeConstList(["Ocak", "\u015eubat", "Mart", "Nisan", "May\u0131s", "Haziran", "Temmuz", "A\u011fustos", "Eyl\xfcl", "Ekim", "Kas\u0131m", "Aral\u0131k"]), type$.JSArray_dynamic); B.List_6pl0 = A._setArrayType(makeConstList(["Oca", "\u015eub", "Mar", "Nis", "May", "Haz", "Tem", "A\u011fu", "Eyl", "Eki", "Kas", "Ara"]), type$.JSArray_dynamic); B.List_7mv = A._setArrayType(makeConstList(["Pazar", "Pazartesi", "Sal\u0131", "\xc7ar\u015famba", "Per\u015fembe", "Cuma", "Cumartesi"]), type$.JSArray_dynamic); B.List_4KK = A._setArrayType(makeConstList(["Paz", "Pzt", "Sal", "\xc7ar", "Per", "Cum", "Cmt"]), type$.JSArray_dynamic); B.List_2Lo = A._setArrayType(makeConstList(["P", "P", "S", "\xc7", "P", "C", "C"]), type$.JSArray_dynamic); B.List_ouf = A._setArrayType(makeConstList(["\xc71", "\xc72", "\xc73", "\xc74"]), type$.JSArray_dynamic); B.List_8aB2 = A._setArrayType(makeConstList(["1. \xe7eyrek", "2. \xe7eyrek", "3. \xe7eyrek", "4. \xe7eyrek"]), type$.JSArray_dynamic); B.List_Svy = A._setArrayType(makeConstList(["\xd6\xd6", "\xd6S"]), type$.JSArray_dynamic); B.List_ahs0 = A._setArrayType(makeConstList(["d MMMM y EEEE", "d MMMM y", "d MMM y", "d.MM.y"]), type$.JSArray_dynamic); B.Map_5toyU = new A.ConstantStringMap(25, {NAME: "tr", ERAS: B.List_2RQ, ERANAMES: B.List_uwZ, NARROWMONTHS: B.List_1wB, STANDALONENARROWMONTHS: B.List_1wB, MONTHS: B.List_FaD, STANDALONEMONTHS: B.List_FaD, SHORTMONTHS: B.List_6pl0, STANDALONESHORTMONTHS: B.List_6pl0, WEEKDAYS: B.List_7mv, STANDALONEWEEKDAYS: B.List_7mv, SHORTWEEKDAYS: B.List_4KK, STANDALONESHORTWEEKDAYS: B.List_4KK, NARROWWEEKDAYS: B.List_2Lo, STANDALONENARROWWEEKDAYS: B.List_2Lo, SHORTQUARTERS: B.List_ouf, QUARTERS: B.List_8aB2, AMPMS: B.List_Svy, DATEFORMATS: B.List_ahs0, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_sSr = A._setArrayType(makeConstList(["\u0434\u043e \u043d. \u0435.", "\u043d. \u0435."]), type$.JSArray_dynamic); B.List_gA41 = A._setArrayType(makeConstList(["\u0434\u043e \u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438", "\u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438"]), type$.JSArray_dynamic); B.List_gc63 = A._setArrayType(makeConstList(["\u0441", "\u043b", "\u0431", "\u043a", "\u0442", "\u0447", "\u043b", "\u0441", "\u0432", "\u0436", "\u043b", "\u0433"]), type$.JSArray_dynamic); B.List_Zei = A._setArrayType(makeConstList(["\u0421", "\u041b", "\u0411", "\u041a", "\u0422", "\u0427", "\u041b", "\u0421", "\u0412", "\u0416", "\u041b", "\u0413"]), type$.JSArray_dynamic); B.List_avb = A._setArrayType(makeConstList(["\u0441\u0456\u0447\u043d\u044f", "\u043b\u044e\u0442\u043e\u0433\u043e", "\u0431\u0435\u0440\u0435\u0437\u043d\u044f", "\u043a\u0432\u0456\u0442\u043d\u044f", "\u0442\u0440\u0430\u0432\u043d\u044f", "\u0447\u0435\u0440\u0432\u043d\u044f", "\u043b\u0438\u043f\u043d\u044f", "\u0441\u0435\u0440\u043f\u043d\u044f", "\u0432\u0435\u0440\u0435\u0441\u043d\u044f", "\u0436\u043e\u0432\u0442\u043d\u044f", "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430", "\u0433\u0440\u0443\u0434\u043d\u044f"]), type$.JSArray_dynamic); B.List_ksx = A._setArrayType(makeConstList(["\u0441\u0456\u0447\u0435\u043d\u044c", "\u043b\u044e\u0442\u0438\u0439", "\u0431\u0435\u0440\u0435\u0437\u0435\u043d\u044c", "\u043a\u0432\u0456\u0442\u0435\u043d\u044c", "\u0442\u0440\u0430\u0432\u0435\u043d\u044c", "\u0447\u0435\u0440\u0432\u0435\u043d\u044c", "\u043b\u0438\u043f\u0435\u043d\u044c", "\u0441\u0435\u0440\u043f\u0435\u043d\u044c", "\u0432\u0435\u0440\u0435\u0441\u0435\u043d\u044c", "\u0436\u043e\u0432\u0442\u0435\u043d\u044c", "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434", "\u0433\u0440\u0443\u0434\u0435\u043d\u044c"]), type$.JSArray_dynamic); B.List_ouN1 = A._setArrayType(makeConstList(["\u0441\u0456\u0447.", "\u043b\u044e\u0442.", "\u0431\u0435\u0440.", "\u043a\u0432\u0456\u0442.", "\u0442\u0440\u0430\u0432.", "\u0447\u0435\u0440\u0432.", "\u043b\u0438\u043f.", "\u0441\u0435\u0440\u043f.", "\u0432\u0435\u0440.", "\u0436\u043e\u0432\u0442.", "\u043b\u0438\u0441\u0442.", "\u0433\u0440\u0443\u0434."]), type$.JSArray_dynamic); B.List_wEo3 = A._setArrayType(makeConstList(["\u0441\u0456\u0447", "\u043b\u044e\u0442", "\u0431\u0435\u0440", "\u043a\u0432\u0456", "\u0442\u0440\u0430", "\u0447\u0435\u0440", "\u043b\u0438\u043f", "\u0441\u0435\u0440", "\u0432\u0435\u0440", "\u0436\u043e\u0432", "\u043b\u0438\u0441", "\u0433\u0440\u0443"]), type$.JSArray_dynamic); B.List_kAW = A._setArrayType(makeConstList(["\u043d\u0435\u0434\u0456\u043b\u044f", "\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a", "\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a", "\u0441\u0435\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0435\u0440", "\u043f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); B.List_2Vk6 = A._setArrayType(makeConstList(["\u041d", "\u041f", "\u0412", "\u0421", "\u0427", "\u041f", "\u0421"]), type$.JSArray_dynamic); B.List_3QP = A._setArrayType(makeConstList(["\u0434\u043f", "\u043f\u043f"]), type$.JSArray_dynamic); B.List_3nh = A._setArrayType(makeConstList(["EEEE, d MMMM y '\u0440'.", "d MMMM y '\u0440'.", "d MMM y '\u0440'.", "dd.MM.yy"]), type$.JSArray_dynamic); B.List_Cju0 = A._setArrayType(makeConstList(["{1} '\u043e' {0}", "{1} '\u043e' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); B.Map_5tbTF = new A.ConstantStringMap(25, {NAME: "uk", ERAS: B.List_sSr, ERANAMES: B.List_gA41, NARROWMONTHS: B.List_gc63, STANDALONENARROWMONTHS: B.List_Zei, MONTHS: B.List_avb, STANDALONEMONTHS: B.List_ksx, SHORTMONTHS: B.List_ouN1, STANDALONESHORTMONTHS: B.List_wEo3, WEEKDAYS: B.List_kAW, STANDALONEWEEKDAYS: B.List_kAW, SHORTWEEKDAYS: B.List_04, STANDALONESHORTWEEKDAYS: B.List_04, NARROWWEEKDAYS: B.List_2Vk6, STANDALONENARROWWEEKDAYS: B.List_2Vk6, SHORTQUARTERS: B.List_wcW, QUARTERS: B.List_c3X, AMPMS: B.List_3QP, DATEFORMATS: B.List_3nh, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_Cju0}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Fys = A._setArrayType(makeConstList(["\u0642\u0628\u0644 \u0645\u0633\u06cc\u062d", "\u0639\u06cc\u0633\u0648\u06cc"]), type$.JSArray_dynamic); B.List_gQW1 = A._setArrayType(makeConstList(["\u062c\u0646\u0648\u0631\u06cc", "\u0641\u0631\u0648\u0631\u06cc", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u0626\u06cc", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u0626\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); B.List_Dns = A._setArrayType(makeConstList(["\u0627\u062a\u0648\u0627\u0631", "\u067e\u06cc\u0631", "\u0645\u0646\u06af\u0644", "\u0628\u062f\u06be", "\u062c\u0645\u0639\u0631\u0627\u062a", "\u062c\u0645\u0639\u06c1", "\u06c1\u0641\u062a\u06c1"]), type$.JSArray_dynamic); B.List_KDx = A._setArrayType(makeConstList(["\u067e\u06c1\u0644\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u062f\u0648\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u062a\u06cc\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u0686\u0648\u062a\u0647\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc"]), type$.JSArray_dynamic); B.List_wpm = A._setArrayType(makeConstList(["EEEE\u060c d MMMM\u060c y", "d MMMM\u060c y", "d MMM\u060c y", "d/M/yy"]), type$.JSArray_dynamic); B.Map_5tTgY = new A.ConstantStringMap(25, {NAME: "ur", ERAS: B.List_Fys, ERANAMES: B.List_Fys, NARROWMONTHS: B.List_qpm0, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_gQW1, STANDALONEMONTHS: B.List_gQW1, SHORTMONTHS: B.List_gQW1, STANDALONESHORTMONTHS: B.List_gQW1, WEEKDAYS: B.List_Dns, STANDALONEWEEKDAYS: B.List_Dns, SHORTWEEKDAYS: B.List_Dns, STANDALONESHORTWEEKDAYS: B.List_Dns, NARROWWEEKDAYS: B.List_3US0, STANDALONENARROWWEEKDAYS: B.List_3US0, SHORTQUARTERS: B.List_KDx, QUARTERS: B.List_KDx, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_wpm, TIMEFORMATS: B.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_qp80 = A._setArrayType(makeConstList(["m.a.", "milodiy"]), type$.JSArray_dynamic); B.List_x7r = A._setArrayType(makeConstList(["miloddan avvalgi", "milodiy"]), type$.JSArray_dynamic); B.List_aDt = A._setArrayType(makeConstList(["Y", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_Wrl = A._setArrayType(makeConstList(["yanvar", "fevral", "mart", "aprel", "may", "iyun", "iyul", "avgust", "sentabr", "oktabr", "noyabr", "dekabr"]), type$.JSArray_dynamic); B.List_Jcu = A._setArrayType(makeConstList(["Yanvar", "Fevral", "Mart", "Aprel", "May", "Iyun", "Iyul", "Avgust", "Sentabr", "Oktabr", "Noyabr", "Dekabr"]), type$.JSArray_dynamic); B.List_QPD = A._setArrayType(makeConstList(["yan", "fev", "mar", "apr", "may", "iyn", "iyl", "avg", "sen", "okt", "noy", "dek"]), type$.JSArray_dynamic); B.List_2WF = A._setArrayType(makeConstList(["Yan", "Fev", "Mar", "Apr", "May", "Iyn", "Iyl", "Avg", "Sen", "Okt", "Noy", "Dek"]), type$.JSArray_dynamic); B.List_Gt3 = A._setArrayType(makeConstList(["yakshanba", "dushanba", "seshanba", "chorshanba", "payshanba", "juma", "shanba"]), type$.JSArray_dynamic); B.List_6qD = A._setArrayType(makeConstList(["Yak", "Dush", "Sesh", "Chor", "Pay", "Jum", "Shan"]), type$.JSArray_dynamic); B.List_3Vk = A._setArrayType(makeConstList(["Y", "D", "S", "C", "P", "J", "S"]), type$.JSArray_dynamic); B.List_kvD0 = A._setArrayType(makeConstList(["1-ch", "2-ch", "3-ch", "4-ch"]), type$.JSArray_dynamic); B.List_Nm5 = A._setArrayType(makeConstList(["1-chorak", "2-chorak", "3-chorak", "4-chorak"]), type$.JSArray_dynamic); B.List_TO_TK = A._setArrayType(makeConstList(["TO", "TK"]), type$.JSArray_dynamic); B.List_ato = A._setArrayType(makeConstList(["EEEE, d-MMMM, y", "d-MMMM, y", "d-MMM, y", "dd/MM/yy"]), type$.JSArray_dynamic); B.List_W3H = A._setArrayType(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss (z)", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); B.Map_5ti8C = new A.ConstantStringMap(25, {NAME: "uz", ERAS: B.List_qp80, ERANAMES: B.List_x7r, NARROWMONTHS: B.List_aDt, STANDALONENARROWMONTHS: B.List_aDt, MONTHS: B.List_Wrl, STANDALONEMONTHS: B.List_Jcu, SHORTMONTHS: B.List_QPD, STANDALONESHORTMONTHS: B.List_2WF, WEEKDAYS: B.List_Gt3, STANDALONEWEEKDAYS: B.List_Gt3, SHORTWEEKDAYS: B.List_6qD, STANDALONESHORTWEEKDAYS: B.List_6qD, NARROWWEEKDAYS: B.List_3Vk, STANDALONENARROWWEEKDAYS: B.List_3Vk, SHORTQUARTERS: B.List_kvD0, QUARTERS: B.List_Nm5, AMPMS: B.List_TO_TK, DATEFORMATS: B.List_ato, TIMEFORMATS: B.List_W3H, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_o0N}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_8gy = A._setArrayType(makeConstList(["Tr\u01b0\u1edbc CN", "sau CN"]), type$.JSArray_dynamic); B.List_OBU = A._setArrayType(makeConstList(["th\xe1ng 1", "th\xe1ng 2", "th\xe1ng 3", "th\xe1ng 4", "th\xe1ng 5", "th\xe1ng 6", "th\xe1ng 7", "th\xe1ng 8", "th\xe1ng 9", "th\xe1ng 10", "th\xe1ng 11", "th\xe1ng 12"]), type$.JSArray_dynamic); B.List_Utj = A._setArrayType(makeConstList(["Th\xe1ng 1", "Th\xe1ng 2", "Th\xe1ng 3", "Th\xe1ng 4", "Th\xe1ng 5", "Th\xe1ng 6", "Th\xe1ng 7", "Th\xe1ng 8", "Th\xe1ng 9", "Th\xe1ng 10", "Th\xe1ng 11", "Th\xe1ng 12"]), type$.JSArray_dynamic); B.List_gDg = A._setArrayType(makeConstList(["thg 1", "thg 2", "thg 3", "thg 4", "thg 5", "thg 6", "thg 7", "thg 8", "thg 9", "thg 10", "thg 11", "thg 12"]), type$.JSArray_dynamic); B.List_IJC0 = A._setArrayType(makeConstList(["Thg 1", "Thg 2", "Thg 3", "Thg 4", "Thg 5", "Thg 6", "Thg 7", "Thg 8", "Thg 9", "Thg 10", "Thg 11", "Thg 12"]), type$.JSArray_dynamic); B.List_ivD = A._setArrayType(makeConstList(["Ch\u1ee7 Nh\u1eadt", "Th\u1ee9 Hai", "Th\u1ee9 Ba", "Th\u1ee9 T\u01b0", "Th\u1ee9 N\u0103m", "Th\u1ee9 S\xe1u", "Th\u1ee9 B\u1ea3y"]), type$.JSArray_dynamic); B.List_EKW0 = A._setArrayType(makeConstList(["CN", "Th 2", "Th 3", "Th 4", "Th 5", "Th 6", "Th 7"]), type$.JSArray_dynamic); B.List_JqH = A._setArrayType(makeConstList(["CN", "T2", "T3", "T4", "T5", "T6", "T7"]), type$.JSArray_dynamic); B.List_UWS = A._setArrayType(makeConstList(["Qu\xfd 1", "Qu\xfd 2", "Qu\xfd 3", "Qu\xfd 4"]), type$.JSArray_dynamic); B.List_SA_CH = A._setArrayType(makeConstList(["SA", "CH"]), type$.JSArray_dynamic); B.List_IIM = A._setArrayType(makeConstList(["EEEE, d MMMM, y", "d MMMM, y", "d MMM, y", "dd/MM/y"]), type$.JSArray_dynamic); B.List_I2P = A._setArrayType(makeConstList(["{0} {1}", "{0} {1}", "{0}, {1}", "{0}, {1}"]), type$.JSArray_dynamic); B.Map_5tlgS = new A.ConstantStringMap(25, {NAME: "vi", ERAS: B.List_8gy, ERANAMES: B.List_8gy, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_OBU, STANDALONEMONTHS: B.List_Utj, SHORTMONTHS: B.List_gDg, STANDALONESHORTMONTHS: B.List_IJC0, WEEKDAYS: B.List_ivD, STANDALONEWEEKDAYS: B.List_ivD, SHORTWEEKDAYS: B.List_EKW0, STANDALONESHORTWEEKDAYS: B.List_EKW0, NARROWWEEKDAYS: B.List_JqH, STANDALONENARROWWEEKDAYS: B.List_JqH, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_UWS, AMPMS: B.List_SA_CH, DATEFORMATS: B.List_IIM, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: B.List_I2P}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_Mi2 = A._setArrayType(makeConstList(["\u516c\u5143\u524d", "\u516c\u5143"]), type$.JSArray_dynamic); B.List_M9p = A._setArrayType(makeConstList(["\u4e00\u6708", "\u4e8c\u6708", "\u4e09\u6708", "\u56db\u6708", "\u4e94\u6708", "\u516d\u6708", "\u4e03\u6708", "\u516b\u6708", "\u4e5d\u6708", "\u5341\u6708", "\u5341\u4e00\u6708", "\u5341\u4e8c\u6708"]), type$.JSArray_dynamic); B.List_HQz = A._setArrayType(makeConstList(["\u661f\u671f\u65e5", "\u661f\u671f\u4e00", "\u661f\u671f\u4e8c", "\u661f\u671f\u4e09", "\u661f\u671f\u56db", "\u661f\u671f\u4e94", "\u661f\u671f\u516d"]), type$.JSArray_dynamic); B.List_Ivb = A._setArrayType(makeConstList(["\u5468\u65e5", "\u5468\u4e00", "\u5468\u4e8c", "\u5468\u4e09", "\u5468\u56db", "\u5468\u4e94", "\u5468\u516d"]), type$.JSArray_dynamic); B.List_L17 = A._setArrayType(makeConstList(["\u65e5", "\u4e00", "\u4e8c", "\u4e09", "\u56db", "\u4e94", "\u516d"]), type$.JSArray_dynamic); B.List_U0y = A._setArrayType(makeConstList(["1\u5b63\u5ea6", "2\u5b63\u5ea6", "3\u5b63\u5ea6", "4\u5b63\u5ea6"]), type$.JSArray_dynamic); B.List_U4K = A._setArrayType(makeConstList(["\u7b2c\u4e00\u5b63\u5ea6", "\u7b2c\u4e8c\u5b63\u5ea6", "\u7b2c\u4e09\u5b63\u5ea6", "\u7b2c\u56db\u5b63\u5ea6"]), type$.JSArray_dynamic); B.List_oGx0 = A._setArrayType(makeConstList(["\u4e0a\u5348", "\u4e0b\u5348"]), type$.JSArray_dynamic); B.List_AgZ0 = A._setArrayType(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "y/M/d"]), type$.JSArray_dynamic); B.List_r5w = A._setArrayType(makeConstList(["zzzz ah:mm:ss", "z ah:mm:ss", "ah:mm:ss", "ah:mm"]), type$.JSArray_dynamic); B.Map_5tmGC = new A.ConstantStringMap(25, {NAME: "zh", ERAS: B.List_Mi2, ERANAMES: B.List_Mi2, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_M9p, STANDALONEMONTHS: B.List_M9p, SHORTMONTHS: B.List_24C, STANDALONESHORTMONTHS: B.List_24C, WEEKDAYS: B.List_HQz, STANDALONEWEEKDAYS: B.List_HQz, SHORTWEEKDAYS: B.List_Ivb, STANDALONESHORTWEEKDAYS: B.List_Ivb, NARROWWEEKDAYS: B.List_L17, STANDALONENARROWWEEKDAYS: B.List_L17, SHORTQUARTERS: B.List_U0y, QUARTERS: B.List_U4K, AMPMS: B.List_oGx0, DATEFORMATS: B.List_AgZ0, TIMEFORMATS: B.List_r5w, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_kkg = A._setArrayType(makeConstList(["\u9031\u65e5", "\u9031\u4e00", "\u9031\u4e8c", "\u9031\u4e09", "\u9031\u56db", "\u9031\u4e94", "\u9031\u516d"]), type$.JSArray_dynamic); B.List_ek30 = A._setArrayType(makeConstList(["\u7b2c1\u5b63", "\u7b2c2\u5b63", "\u7b2c3\u5b63", "\u7b2c4\u5b63"]), type$.JSArray_dynamic); B.List_ECQ = A._setArrayType(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "d/M/y"]), type$.JSArray_dynamic); B.List_Ybn = A._setArrayType(makeConstList(["ah:mm:ss [zzzz]", "ah:mm:ss [z]", "ah:mm:ss", "ah:mm"]), type$.JSArray_dynamic); B.Map_5tTvc = new A.ConstantStringMap(25, {NAME: "zh_HK", ERAS: B.List_Mi2, ERANAMES: B.List_Mi2, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_24C, STANDALONEMONTHS: B.List_24C, SHORTMONTHS: B.List_24C, STANDALONESHORTMONTHS: B.List_24C, WEEKDAYS: B.List_HQz, STANDALONEWEEKDAYS: B.List_HQz, SHORTWEEKDAYS: B.List_kkg, STANDALONESHORTWEEKDAYS: B.List_kkg, NARROWWEEKDAYS: B.List_L17, STANDALONENARROWWEEKDAYS: B.List_L17, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_ek30, AMPMS: B.List_oGx0, DATEFORMATS: B.List_ECQ, TIMEFORMATS: B.List_Ybn, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EsU = A._setArrayType(makeConstList(["\u897f\u5143\u524d", "\u897f\u5143"]), type$.JSArray_dynamic); B.List_2HT = A._setArrayType(makeConstList(["y\u5e74M\u6708d\u65e5 EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "y/M/d"]), type$.JSArray_dynamic); B.Map_5t5Nr = new A.ConstantStringMap(25, {NAME: "zh_TW", ERAS: B.List_EsU, ERANAMES: B.List_EsU, NARROWMONTHS: B.List_tO3, STANDALONENARROWMONTHS: B.List_tO3, MONTHS: B.List_24C, STANDALONEMONTHS: B.List_24C, SHORTMONTHS: B.List_24C, STANDALONESHORTMONTHS: B.List_24C, WEEKDAYS: B.List_HQz, STANDALONEWEEKDAYS: B.List_HQz, SHORTWEEKDAYS: B.List_kkg, STANDALONESHORTWEEKDAYS: B.List_kkg, NARROWWEEKDAYS: B.List_L17, STANDALONENARROWWEEKDAYS: B.List_L17, SHORTQUARTERS: B.List_ek30, QUARTERS: B.List_ek30, AMPMS: B.List_oGx0, DATEFORMATS: B.List_2HT, TIMEFORMATS: B.List_Ybn, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_MEg = A._setArrayType(makeConstList(["J", "F", "M", "E", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); B.List_izR1 = A._setArrayType(makeConstList(["Januwari", "Februwari", "Mashi", "Ephreli", "Meyi", "Juni", "Julayi", "Agasti", "Septhemba", "Okthoba", "Novemba", "Disemba"]), type$.JSArray_dynamic); B.List_Qw8 = A._setArrayType(makeConstList(["Jan", "Feb", "Mas", "Eph", "Mey", "Jun", "Jul", "Aga", "Sep", "Okt", "Nov", "Dis"]), type$.JSArray_dynamic); B.List_2pH = A._setArrayType(makeConstList(["ISonto", "UMsombuluko", "ULwesibili", "ULwesithathu", "ULwesine", "ULwesihlanu", "UMgqibelo"]), type$.JSArray_dynamic); B.List_GPh = A._setArrayType(makeConstList(["Son", "Mso", "Bil", "Tha", "Sin", "Hla", "Mgq"]), type$.JSArray_dynamic); B.List_AAY = A._setArrayType(makeConstList(["S", "M", "B", "T", "S", "H", "M"]), type$.JSArray_dynamic); B.List_wqy = A._setArrayType(makeConstList(["ikota yesi-1", "ikota yesi-2", "ikota yesi-3", "ikota yesi-4"]), type$.JSArray_dynamic); B.Map_5tFeh = new A.ConstantStringMap(25, {NAME: "zu", ERAS: B.List_BC_AD0, ERANAMES: B.List_BC_AD0, NARROWMONTHS: B.List_MEg, STANDALONENARROWMONTHS: B.List_qpm0, MONTHS: B.List_izR1, STANDALONEMONTHS: B.List_izR1, SHORTMONTHS: B.List_Qw8, STANDALONESHORTMONTHS: B.List_Qw8, WEEKDAYS: B.List_2pH, STANDALONEWEEKDAYS: B.List_2pH, SHORTWEEKDAYS: B.List_GPh, STANDALONESHORTWEEKDAYS: B.List_GPh, NARROWWEEKDAYS: B.List_AAY, STANDALONENARROWWEEKDAYS: B.List_AAY, SHORTQUARTERS: B.List_Q1_Q2_Q3_Q40, QUARTERS: B.List_wqy, AMPMS: B.List_AM_PM0, DATEFORMATS: B.List_cno0, TIMEFORMATS: B.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: B.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: B.List_Pss}, B.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_2zqtW = new A.ConstantStringMap(94, {af: B.Map_5t4AN, am: B.Map_5t6QF, ar: B.Map_bHS8J, az: B.Map_5tA4L, be: B.Map_5tfx7, bg: B.Map_5tW7l, bn: B.Map_bHedh, bs: B.Map_5tPJs, ca: B.Map_5t94O, cs: B.Map_5tSTY, da: B.Map_5tUEs, de: B.Map_5tI6I, de_CH: B.Map_5tqoQ, el: B.Map_5tEmr, en: B.Map_5tOTP, en_AU: B.Map_5tifn, en_CA: B.Map_5t0, en_GB: B.Map_5t3mV, en_IE: B.Map_5tE4y, en_IN: B.Map_5tmFp, en_SG: B.Map_5tU48, en_US: B.Map_5tgRf, en_ZA: B.Map_5t43h, es: B.Map_5tQ5r, es_419: B.Map_5tI8w, es_MX: B.Map_5t2jN, es_US: B.Map_5tzHO, et: B.Map_5t81A, eu: B.Map_5tuAF, fa: B.Map_bH8aB, fi: B.Map_5tMIV, fil: B.Map_5tGfX, fr: B.Map_5tmF3, fr_CA: B.Map_5tStJ, gl: B.Map_5t0iF, gsw: B.Map_5tXzX, gu: B.Map_5tyXb, he: B.Map_5t1NX, hi: B.Map_5t4AN0, hr: B.Map_5t8tP, hu: B.Map_5toEG, hy: B.Map_5tKeb, id: B.Map_5tIWo, is: B.Map_5twEo, it: B.Map_5twQW, ja: B.Map_5ta6h, ka: B.Map_5tq4G, kk: B.Map_5tIiW, km: B.Map_5tmmo, kn: B.Map_5twHn, ko: B.Map_5t2jN0, ky: B.Map_5tMul, lo: B.Map_5ta5W, lt: B.Map_5tIof, lv: B.Map_5twsa, mk: B.Map_5totL, ml: B.Map_5tivI, mn: B.Map_5tMdN, mr: B.Map_bHq0y, ms: B.Map_5tmT8, my: B.Map_bHCt8, nb: B.Map_5tkOw, ne: B.Map_bHcMD, nl: B.Map_5t5gb, no: B.Map_5tJNA, or: B.Map_5tQ49, pa: B.Map_5tR3l, pl: B.Map_5tK5H, ps: B.Map_bHm6K, pt: B.Map_5tq5f, pt_PT: B.Map_5t8IM, ro: B.Map_5teC6, ru: B.Map_5tDrw, si: B.Map_5t1p9, sk: B.Map_5tUWX, sl: B.Map_5trp3, sq: B.Map_5tSlD, sr: B.Map_5tqJ4, sr_Latn: B.Map_5tN7e, sv: B.Map_5tgsm, sw: B.Map_5tum9, ta: B.Map_5tDni, te: B.Map_5t6Xj, th: B.Map_5tCBD, tl: B.Map_5t5MH, tr: B.Map_5toyU, uk: B.Map_5tbTF, ur: B.Map_5tTgY, uz: B.Map_5ti8C, vi: B.Map_5tlgS, zh: B.Map_5tmGC, zh_HK: B.Map_5tTvc, zh_TW: B.Map_5t5Nr, zu: B.Map_5tFeh}, B.List_2zE, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.List_EQM = A._setArrayType(makeConstList(["d", "E", "EEEE", "LLL", "LLLL", "M", "Md", "MEd", "MMM", "MMMd", "MMMEd", "MMMM", "MMMMd", "MMMMEEEEd", "QQQ", "QQQQ", "y", "yM", "yMd", "yMEd", "yMMM", "yMMMd", "yMMMEd", "yMMMM", "yMMMMd", "yMMMMEEEEd", "yQQQ", "yQQQQ", "H", "Hm", "Hms", "j", "jm", "jms", "jmv", "jmz", "jz", "m", "ms", "s", "v", "z", "zzzz", "ZZZZ"]), type$.JSArray_legacy_String); B.Map_EQUuv = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd-MM", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM-y", yMd: "y-MM-dd", yMEd: "EEE y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ27I = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE\u1363 M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE\u1363 MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE\u1363 MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE\u1363 d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE\u1363 MMM d y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ3hK = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/\u200fM", MEd: "EEE\u060c d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE\u060c d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u060c d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M\u200f/y", yMd: "d\u200f/M\u200f/y", yMEd: "EEE\u060c d/\u200fM/\u200fy", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE\u060c d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE\u060c d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQewF = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "dd.MM.y, EEE", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "d MMM y, EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "d MMMM y, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ7FR = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQA0t = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.MM", MEd: "EEE, d.MM", MMM: "MM", MMMd: "d.MM", MMMEd: "EEE, d.MM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y '\u0433'.", yM: "MM.y '\u0433'.", yMd: "d.MM.y '\u0433'.", yMEd: "EEE, d.MM.y '\u0433'.", yMMM: "MM.y '\u0433'.", yMMMd: "d.MM.y '\u0433'.", yMMMEd: "EEE, d.MM.y '\u0433'.", yMMMM: "MMMM y '\u0433'.", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "H '\u0447'.", Hm: "H:mm '\u0447'.", Hms: "H:mm:ss '\u0447'.", j: "H '\u0447'.", jm: "H:mm '\u0447'.", jms: "H:mm:ss '\u0447'.", jmv: "HH:mm '\u0447'. v", jmz: "HH:mm '\u0447'. z", jz: "H '\u0447'. z", m: "m", ms: "m:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ0 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQRi5 = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "MM/y", yMd: "d.M.y.", yMEd: "EEE, d.M.y.", yMMM: "MMM y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "LLLL y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQw5x = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "LLL 'de' y", yMMMd: "d MMM 'de' y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL 'de' y", yMMMMd: "d MMMM 'de' y", yMMMMEEEEd: "EEEE, d MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQckJ = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d. M.", MEd: "EEE d. M.", MMM: "LLL", MMMd: "d. M.", MMMEd: "EEE d. M.", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE d. M. y", yMMM: "LLLL y", yMMMd: "d. M. y", yMMMEd: "EEE d. M. y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQOXv = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "MMM", LLLL: "MMMM", M: "M", Md: "d.M", MEd: "EEE d.M", MMM: "MMM", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "MMMM", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE 'den' d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQKbu = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'Uhr'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH 'Uhr'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH 'Uhr' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQqBb = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "MMM", LLLL: "MMMM", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "MMM", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "MMMM", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQsU8 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE, M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "M/d/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQgeL = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ8Ac = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "EEE, MM-dd", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE, y-MM-dd", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQaha = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ4CA = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQuEV = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ461 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQGVt = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM/dd", MEd: "EEE, MM/dd", MMM: "LLL", MMMd: "dd MMM", MMMEd: "EEE, dd MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, dd MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "y/MM/dd", yMEd: "EEE, y/MM/dd", yMMM: "MMM y", yMMMd: "dd MMM y", yMMMEd: "EEE, dd MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQi7B = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQgsm = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ8TW = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "H:mm", Hms: "H:mm:ss", j: "HH", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQXj5 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQwoc = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "MMMM", LLLL: "MMMM", M: "M", Md: "d.M", MEd: "EEE, d.M", MMM: "MMMM", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "MMMM", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQskt = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "M/d, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y('e')'ko' MMMM", yMMMMd: "y('e')'ko' MMMM'ren' d", yMMMMEEEEd: "y('e')'ko' MMMM'ren' d('a'), EEEE", yQQQ: "y('e')'ko' QQQ", yQQQQ: "y('e')'ko' QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQe0L = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE M/d", MMM: "LLL", MMMd: "d LLL", MMMEd: "EEE d LLL", MMMM: "LLLL", MMMMd: "d LLLL", MMMMEEEEd: "EEEE d LLLL", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y/M", yMd: "y/M/d", yMEd: "EEE y/M/d", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm (z)", jz: "H (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ8Gl = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "ccc d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "cccc d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "L.y", yMd: "d.M.y", yMEd: "EEE d.M.y", yMMM: "LLL y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H.mm", Hms: "H.mm.ss", j: "H", jm: "H.mm", jms: "H.mm.ss", jmv: "H.mm v", jmz: "H.mm z", jz: "H z", m: "m", ms: "m.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQifx = new A.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'h'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH 'h'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH 'h' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQoGx = new A.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M-d", MEd: "EEE M-d", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'h'", Hm: "HH 'h' mm", Hms: "HH 'h' mm 'min' ss 's'", j: "HH 'h'", jm: "HH 'h' mm", jms: "HH 'h' mm 'min' ss 's'", jmv: "HH 'h' mm v", jmz: "HH 'h' mm z", jz: "HH 'h' z", m: "m", ms: "mm 'min' ss 's'", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQwEo = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d 'de' MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM 'de' y", yMMMd: "d/MM/y", yMMMEd: "EEE, d/MM/y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQIIM = new A.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-M", yMd: "d.M.y", yMEd: "EEE, y-M-d", yMMM: "MMM y", yMMMd: "y MMM d", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "HH:mm", Hms: "HH:mm:ss", j: "H", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQpVn = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ6YB = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d \u05d1MMM", MMMEd: "EEE, d \u05d1MMM", MMMM: "LLLL", MMMMd: "d \u05d1MMMM", MMMMEEEEd: "EEEE, d \u05d1MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d \u05d1MMM y", yMMMEd: "EEE, d \u05d1MMM y", yMMMM: "MMMM y", yMMMMd: "d \u05d1MMMM y", yMMMMEEEEd: "EEEE, d \u05d1MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ4CA0 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ2uL = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "dd. MM.", MEd: "EEE, dd. MM.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "MM. y.", yMd: "dd. MM. y.", yMEd: "EEE, dd. MM. y.", yMMM: "LLL y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "LLLL y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQyjx = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M. d.", MEd: "M. d., EEE", MMM: "LLL", MMMd: "MMM d.", MMMEd: "MMM d., EEE", MMMM: "LLLL", MMMMd: "MMMM d.", MMMMEEEEd: "MMMM d., EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "y. M.", yMd: "y. MM. dd.", yMEd: "y. MM. dd., EEE", yMMM: "y. MMM", yMMMd: "y. MMM d.", yMMMEd: "y. MMM d., EEE", yMMMM: "y. MMMM", yMMMMd: "y. MMMM d.", yMMMMEEEEd: "y. MMMM d., EEEE", yQQQ: "y. QQQ", yQQQQ: "y. QQQQ", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQglO = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "d.MM.y \u0569., EEE", yMMM: "y \u0569. LLL", yMMMd: "d MMM, y \u0569.", yMMMEd: "y \u0569. MMM d, EEE", yMMMM: "y \u0569\u2024 LLLL", yMMMMd: "d MMMM, y \u0569.", yMMMMEEEEd: "y \u0569. MMMM d, EEEE", yQQQ: "y \u0569. QQQ", yQQQQ: "y \u0569. QQQQ", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQfZ2 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQE5P = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M. y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "v \u2013 HH:mm", jmz: "z \u2013 HH:mm", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQCeS = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQCKg = new A.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "M\u6708", LLLL: "M\u6708", M: "M\u6708", Md: "M/d", MEd: "M/d(EEE)", MMM: "M\u6708", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5(EEE)", MMMM: "M\u6708", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d(EEE)", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5(EEE)", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y/QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "H:mm", Hms: "H:mm:ss", j: "H\u6642", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ6m4 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM. y", yMMMd: "d MMM. y", yMMMEd: "EEE, d MMM. y", yMMMM: "MMMM, y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ, y", yQQQQ: "QQQQ, y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ56y = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "dd.MM.y, EEE", yMMM: "y '\u0436'. MMM", yMMMd: "y '\u0436'. d MMM", yMMMEd: "y '\u0436'. d MMM, EEE", yMMMM: "y '\u0436'. MMMM", yMMMMd: "y '\u0436'. d MMMM", yMMMMEEEEd: "y '\u0436'. d MMMM, EEEE", yQQQ: "y '\u0436'. QQQ", yQQQQ: "y '\u0436'. QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQN80 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ8CO = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d,y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQgyO = new A.ConstantStringMap(44, {d: "d\uc77c", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\uc6d4", Md: "M. d.", MEd: "M. d. (EEE)", MMM: "LLL", MMMd: "MMM d\uc77c", MMMEd: "MMM d\uc77c (EEE)", MMMM: "LLLL", MMMMd: "MMMM d\uc77c", MMMMEEEEd: "MMMM d\uc77c EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\ub144", yM: "y. M.", yMd: "y. M. d.", yMEd: "y. M. d. (EEE)", yMMM: "y\ub144 MMM", yMMMd: "y\ub144 MMM d\uc77c", yMMMEd: "y\ub144 MMM d\uc77c (EEE)", yMMMM: "y\ub144 MMMM", yMMMMd: "y\ub144 MMMM d\uc77c", yMMMMEEEEd: "y\ub144 MMMM d\uc77c EEEE", yQQQ: "y\ub144 QQQ", yQQQQ: "y\ub144 QQQQ", H: "H\uc2dc", Hm: "HH:mm", Hms: "H\uc2dc m\ubd84 s\ucd08", j: "a h\uc2dc", jm: "a h:mm", jms: "a h:mm:ss", jmv: "a h:mm v", jmz: "a h:mm z", jz: "a h\uc2dc z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQWEg = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd-MM", MEd: "dd-MM, EEE", MMM: "LLL", MMMd: "d-MMM", MMMEd: "d-MMM, EEE", MMMM: "LLLL", MMMMd: "d-MMMM", MMMMEEEEd: "d-MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-dd-MM", yMEd: "y-dd-MM, EEE", yMMM: "y-'\u0436'. MMM", yMMMd: "y-'\u0436'. d-MMM", yMMMEd: "y-'\u0436'. d-MMM, EEE", yMMMM: "y-'\u0436'., MMMM", yMMMMd: "y-'\u0436'., d-MMMM", yMMMMEEEEd: "y-'\u0436'., d-MMMM, EEEE", yQQQ: "y-'\u0436'., QQQ", yQQQQ: "y-'\u0436'., QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQSVO = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQu76 = new A.ConstantStringMap(44, {d: "dd", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "MM", Md: "MM-d", MEd: "MM-dd, EEE", MMM: "MM", MMMd: "MM-dd", MMMEd: "MM-dd, EEE", MMMM: "LLLL", MMMMd: "MMMM d 'd'.", MMMMEEEEd: "MMMM d 'd'., EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y-MM", yMMMd: "y-MM-dd", yMMMEd: "y-MM-dd, EEE", yMMMM: "y 'm'. LLLL", yMMMMd: "y 'm'. MMMM d 'd'.", yMMMMEEEEd: "y 'm'. MMMM d 'd'., EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm; v", jmz: "HH:mm; z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQuxD = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM.", MEd: "EEE, dd.MM.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y. 'g'.", yM: "MM.y.", yMd: "y.MM.d.", yMEd: "EEE, d.M.y.", yMMM: "y. 'g'. MMM", yMMMd: "y. 'g'. d. MMM", yMMMEd: "EEE, y. 'g'. d. MMM", yMMMM: "y. 'g'. MMMM", yMMMMd: "y. 'gada' d. MMMM", yMMMMEEEEd: "EEEE, y. 'gada' d. MMMM", yQQQ: "y. 'g'. QQQ", yQQQQ: "y. 'g'. QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQQXJ = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y '\u0433'.", yMMMd: "d MMM y '\u0433'.", yMMMEd: "EEE, d MMM y '\u0433'.", yMMMM: "MMMM y '\u0433'.", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQn1f = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "d/M/y", yMEd: "d-M-y, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y, MMMM d", yMMMMEEEEd: "y, MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQMYA = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LLLLL", Md: "MMMMM/dd", MEd: "MMMMM/dd. EEE", MMM: "LLL", MMMd: "MMM'\u044b\u043d' d", MMMEd: "MMM'\u044b\u043d' d. EEE", MMMM: "LLLL", MMMMd: "MMMM'\u044b\u043d' d", MMMMEEEEd: "MMMM'\u044b\u043d' d. EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y MMMMM", yMd: "y.MM.dd", yMEd: "y.MM.dd. EEE", yMMM: "y '\u043e\u043d\u044b' MMM", yMMMd: "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d", yMMMEd: "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d. EEE", yMMMM: "y '\u043e\u043d\u044b' MMMM", yMMMMd: "y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d", yMMMMEEEEd: "y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d. EEEE", yQQQ: "y '\u043e\u043d\u044b' QQQ", yQQQQ: "y '\u043e\u043d\u044b' QQQQ", H: "HH '\u0446'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH '\u0446'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH '\u0446' (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQqXv = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d, MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "H:mm", Hms: "H:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQWH7 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d-M", MEd: "EEE, d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M-y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQc6D = new A.ConstantStringMap(44, {d: "d", E: "ccc\u1014\u1031\u1037", EEEE: "cccc\u1014\u1031\u1037", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M\u104a EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "MMM d\u104a EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d \u101b\u1000\u103a EEEE\u1014\u1031\u1037", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "dd-MM-y", yMEd: "d/M/y\u104a EEE", yMMM: "MMM y", yMMMd: "y\u104a MMM d", yMMMEd: "y\u104a MMM d\u104a EEE", yMMMM: "y MMMM", yMMMMd: "y\u104a d MMMM", yMMMMEEEEd: "y\u104a MMMM d\u104a EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "v HH:mm", jmz: "z HH:mm", jz: "z HH", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQOlv = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "d.M.", MEd: "EEE d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE d.MM.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQyxq = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y MMMM d", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQIY7 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d-M", MEd: "EEE d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M-y", yMd: "d-M-y", yMEd: "EEE d-M-y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQU4G = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, dd-MM.", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQQGy = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.MM", MEd: "EEE, d.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "d.MM.y", yMEd: "EEE, d.MM.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQtPa = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "\u062f y \u062f MMMM d", yMMMMEEEEd: "EEEE \u062f y \u062f MMMM d", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ23h = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d 'de' MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM 'de' y", yMMMd: "d 'de' MMM 'de' y", yMMMEd: "EEE, d 'de' MMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ23h0 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d/MM", MMMEd: "EEE, d/MM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "cccc, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MM/y", yMMMd: "d/MM/y", yMMMEd: "EEE, d/MM/y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQcg9 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "EEE, dd.MM.y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ4AN = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "ccc, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "cccc, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "ccc, dd.MM.y '\u0433'.", yMMM: "LLL y '\u0433'.", yMMMd: "d MMM y '\u0433'.", yMMMEd: "EEE, d MMM y '\u0433'.", yMMMM: "LLLL y '\u0433'.", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQCDm = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M-d", MEd: "M-d, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-M", yMd: "y-M-d", yMEd: "y-M-d, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y MMMM d", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ27z = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "d. M.", MEd: "EEE d. M.", MMM: "LLL", MMMd: "d. M.", MMMEd: "EEE d. M.", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE d. M. y", yMMM: "M/y", yMMMd: "d. M. y", yMMMEd: "EEE d. M. y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQC3K = new A.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d. M.", MEd: "EEE, d. M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE, d. M. y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH'h'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH'h'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH'h' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQmKQ = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ, y", yQQQQ: "QQQQ, y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a, v", jmz: "h:mm a, z", jz: "h a, z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQEHY = new A.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "M.y.", yMd: "d.M.y.", yMEd: "EEE, d.M.y.", yMMM: "MMM y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "MMMM y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQyjH = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE, y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQYf3 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "y QQQ", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQulJ = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "dd-MM, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "a h", jm: "a h:mm", jms: "a h:mm:ss", jmv: "a h:mm v", jmz: "a h:mm z", jz: "a h z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQGgs = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "d/M/y, EEE", yMMM: "MMM y", yMMMd: "d, MMM y", yMMMEd: "d MMM, y, EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "d, MMMM y, EEEE", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQbY5 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u0e17\u0e35\u0e48 d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM G y", yMMMMd: "d MMMM G y", yMMMMEEEEd: "EEEE\u0e17\u0e35\u0e48 d MMMM G y", yQQQ: "QQQ y", yQQQQ: "QQQQ G y", H: "HH", Hm: "HH:mm \u0e19.", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm \u0e19.", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ4m4 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/MM EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMMM EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd.MM.y", yMEd: "d.M.y EEE", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "d MMM y EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "d MMMM y EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ46y = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LL", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "EEE, dd.MM.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y '\u0440'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0440'.", yQQQ: "QQQ y", yQQQQ: "QQQQ y '\u0440'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQ8Gl0 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE\u060c d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE\u060c d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u060c d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE\u060c d/M/y", yMMM: "MMM y", yMMMd: "d MMM\u060c y", yMMMEd: "EEE\u060c d MMM\u060c y", yMMMM: "MMMM y", yMMMMd: "d MMMM\u060c y", yMMMMEEEEd: "EEEE\u060c d MMMM\u060c y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQE8w = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LL", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d-MMM", MMMEd: "EEE, d-MMM", MMMM: "LLLL", MMMMd: "d-MMMM", MMMMEEEEd: "EEEE, d-MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM, y", yMMMd: "d-MMM, y", yMMMEd: "EEE, d-MMM, y", yMMMM: "MMMM, y", yMMMMd: "d-MMMM, y", yMMMMEEEEd: "EEEE, d-MMMM, y", yQQQ: "y, QQQ", yQQQQ: "y, QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQiF8 = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/M", MEd: "EEE, dd/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, dd/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM 'n\u0103m' y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'n\u0103m' y", H: "HH", Hm: "H:mm", Hms: "HH:mm:ss", j: "HH", jm: "H:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQinH = new A.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "M/d", MEd: "M/dEEE", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y\u5e74M\u6708", yMd: "y/M/d", yMEd: "y/M/dEEE", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y\u5e74\u7b2cQ\u5b63\u5ea6", yQQQQ: "y\u5e74\u7b2cQ\u5b63\u5ea6", H: "H\u65f6", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u65f6", jm: "ah:mm", jms: "ah:mm:ss", jmv: "v ah:mm", jmz: "z ah:mm", jz: "zah\u65f6", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQp7V = new A.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "d/M", MEd: "d/M\uff08EEE\uff09", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "M/y", yMd: "d/M/y", yMEd: "d/M/y\uff08EEE\uff09", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y\u5e74QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u6642", jm: "ah:mm", jms: "ah:mm:ss", jmv: "ah:mm [v]", jmz: "ah:mm [z]", jz: "ah\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQpI6 = new A.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "M/d", MEd: "M/d\uff08EEE\uff09", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5 EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5 EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d\uff08EEE\uff09", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5 EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5 EEEE", yQQQ: "y\u5e74QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u6642", jm: "ah:mm", jms: "ah:mm:ss", jmv: "ah:mm [v]", jmz: "ah:mm [z]", jz: "ah\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQd8d = new A.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_2zurD = new A.ConstantStringMap(94, {af: B.Map_EQUuv, am: B.Map_EQ27I, ar: B.Map_EQ3hK, az: B.Map_EQewF, be: B.Map_EQ7FR, bg: B.Map_EQA0t, bn: B.Map_EQ0, bs: B.Map_EQRi5, ca: B.Map_EQw5x, cs: B.Map_EQckJ, da: B.Map_EQOXv, de: B.Map_EQKbu, de_CH: B.Map_EQKbu, el: B.Map_EQqBb, en: B.Map_EQsU8, en_AU: B.Map_EQgeL, en_CA: B.Map_EQ8Ac, en_GB: B.Map_EQaha, en_IE: B.Map_EQ4CA, en_IN: B.Map_EQuEV, en_SG: B.Map_EQ461, en_US: B.Map_EQsU8, en_ZA: B.Map_EQGVt, es: B.Map_EQi7B, es_419: B.Map_EQgsm, es_MX: B.Map_EQ8TW, es_US: B.Map_EQXj5, et: B.Map_EQwoc, eu: B.Map_EQskt, fa: B.Map_EQe0L, fi: B.Map_EQ8Gl, fil: B.Map_EQsU8, fr: B.Map_EQifx, fr_CA: B.Map_EQoGx, gl: B.Map_EQwEo, gsw: B.Map_EQIIM, gu: B.Map_EQpVn, he: B.Map_EQ6YB, hi: B.Map_EQ4CA0, hr: B.Map_EQ2uL, hu: B.Map_EQyjx, hy: B.Map_EQglO, id: B.Map_EQfZ2, is: B.Map_EQE5P, it: B.Map_EQCeS, ja: B.Map_EQCKg, ka: B.Map_EQ6m4, kk: B.Map_EQ56y, km: B.Map_EQN80, kn: B.Map_EQ8CO, ko: B.Map_EQgyO, ky: B.Map_EQWEg, lo: B.Map_EQSVO, lt: B.Map_EQu76, lv: B.Map_EQuxD, mk: B.Map_EQQXJ, ml: B.Map_EQn1f, mn: B.Map_EQMYA, mr: B.Map_EQqXv, ms: B.Map_EQWH7, my: B.Map_EQc6D, nb: B.Map_EQOlv, ne: B.Map_EQyxq, nl: B.Map_EQIY7, no: B.Map_EQOlv, or: B.Map_EQsU8, pa: B.Map_EQU4G, pl: B.Map_EQQGy, ps: B.Map_EQtPa, pt: B.Map_EQ23h, pt_PT: B.Map_EQ23h0, ro: B.Map_EQcg9, ru: B.Map_EQ4AN, si: B.Map_EQCDm, sk: B.Map_EQ27z, sl: B.Map_EQC3K, sq: B.Map_EQmKQ, sr: B.Map_EQEHY, sr_Latn: B.Map_EQEHY, sv: B.Map_EQyjH, sw: B.Map_EQYf3, ta: B.Map_EQulJ, te: B.Map_EQGgs, th: B.Map_EQbY5, tl: B.Map_EQsU8, tr: B.Map_EQ4m4, uk: B.Map_EQ46y, ur: B.Map_EQ8Gl0, uz: B.Map_EQE8w, vi: B.Map_EQiF8, zh: B.Map_EQinH, zh_HK: B.Map_EQp7V, zh_TW: B.Map_EQpI6, zu: B.Map_EQd8d}, B.List_2zE, A.findType("ConstantStringMap*>")); B.List_8TI = A._setArrayType(makeConstList(["*", "+", "-", ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "Alt", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "Clear", "Control", "Delete", "End", "Enter", "Home", "Insert", "Meta", "PageDown", "PageUp", "Shift"]), type$.JSArray_legacy_String); B.List_42_null_null_8589935146 = A._setArrayType(makeConstList([42, null, null, 8589935146]), type$.JSArray_nullable_int); B.List_43_null_null_8589935147 = A._setArrayType(makeConstList([43, null, null, 8589935147]), type$.JSArray_nullable_int); B.List_45_null_null_8589935149 = A._setArrayType(makeConstList([45, null, null, 8589935149]), type$.JSArray_nullable_int); B.List_46_null_null_8589935150 = A._setArrayType(makeConstList([46, null, null, 8589935150]), type$.JSArray_nullable_int); B.List_47_null_null_8589935151 = A._setArrayType(makeConstList([47, null, null, 8589935151]), type$.JSArray_nullable_int); B.List_48_null_null_8589935152 = A._setArrayType(makeConstList([48, null, null, 8589935152]), type$.JSArray_nullable_int); B.List_49_null_null_8589935153 = A._setArrayType(makeConstList([49, null, null, 8589935153]), type$.JSArray_nullable_int); B.List_50_null_null_8589935154 = A._setArrayType(makeConstList([50, null, null, 8589935154]), type$.JSArray_nullable_int); B.List_51_null_null_8589935155 = A._setArrayType(makeConstList([51, null, null, 8589935155]), type$.JSArray_nullable_int); B.List_52_null_null_8589935156 = A._setArrayType(makeConstList([52, null, null, 8589935156]), type$.JSArray_nullable_int); B.List_53_null_null_8589935157 = A._setArrayType(makeConstList([53, null, null, 8589935157]), type$.JSArray_nullable_int); B.List_54_null_null_8589935158 = A._setArrayType(makeConstList([54, null, null, 8589935158]), type$.JSArray_nullable_int); B.List_55_null_null_8589935159 = A._setArrayType(makeConstList([55, null, null, 8589935159]), type$.JSArray_nullable_int); B.List_56_null_null_8589935160 = A._setArrayType(makeConstList([56, null, null, 8589935160]), type$.JSArray_nullable_int); B.List_57_null_null_8589935161 = A._setArrayType(makeConstList([57, null, null, 8589935161]), type$.JSArray_nullable_int); B.List_yyP = A._setArrayType(makeConstList([8589934852, 8589934852, 8589934853, null]), type$.JSArray_nullable_int); B.List_4294968065_null_null_8589935154 = A._setArrayType(makeConstList([4294968065, null, null, 8589935154]), type$.JSArray_nullable_int); B.List_4294968066_null_null_8589935156 = A._setArrayType(makeConstList([4294968066, null, null, 8589935156]), type$.JSArray_nullable_int); B.List_4294968067_null_null_8589935158 = A._setArrayType(makeConstList([4294968067, null, null, 8589935158]), type$.JSArray_nullable_int); B.List_4294968068_null_null_8589935160 = A._setArrayType(makeConstList([4294968068, null, null, 8589935160]), type$.JSArray_nullable_int); B.List_4294968321_null_null_8589935157 = A._setArrayType(makeConstList([4294968321, null, null, 8589935157]), type$.JSArray_nullable_int); B.List_yyP0 = A._setArrayType(makeConstList([8589934848, 8589934848, 8589934849, null]), type$.JSArray_nullable_int); B.List_4294967423_null_null_8589935150 = A._setArrayType(makeConstList([4294967423, null, null, 8589935150]), type$.JSArray_nullable_int); B.List_4294968069_null_null_8589935153 = A._setArrayType(makeConstList([4294968069, null, null, 8589935153]), type$.JSArray_nullable_int); B.List_4294967309_null_null_8589935117 = A._setArrayType(makeConstList([4294967309, null, null, 8589935117]), type$.JSArray_nullable_int); B.List_4294968070_null_null_8589935159 = A._setArrayType(makeConstList([4294968070, null, null, 8589935159]), type$.JSArray_nullable_int); B.List_4294968327_null_null_8589935152 = A._setArrayType(makeConstList([4294968327, null, null, 8589935152]), type$.JSArray_nullable_int); B.List_yyP1 = A._setArrayType(makeConstList([8589934854, 8589934854, 8589934855, null]), type$.JSArray_nullable_int); B.List_4294968071_null_null_8589935155 = A._setArrayType(makeConstList([4294968071, null, null, 8589935155]), type$.JSArray_nullable_int); B.List_4294968072_null_null_8589935161 = A._setArrayType(makeConstList([4294968072, null, null, 8589935161]), type$.JSArray_nullable_int); B.List_yyP2 = A._setArrayType(makeConstList([8589934850, 8589934850, 8589934851, null]), type$.JSArray_nullable_int); B.Map_8T4QF = new A.ConstantStringMap(31, {"*": B.List_42_null_null_8589935146, "+": B.List_43_null_null_8589935147, "-": B.List_45_null_null_8589935149, ".": B.List_46_null_null_8589935150, "/": B.List_47_null_null_8589935151, "0": B.List_48_null_null_8589935152, "1": B.List_49_null_null_8589935153, "2": B.List_50_null_null_8589935154, "3": B.List_51_null_null_8589935155, "4": B.List_52_null_null_8589935156, "5": B.List_53_null_null_8589935157, "6": B.List_54_null_null_8589935158, "7": B.List_55_null_null_8589935159, "8": B.List_56_null_null_8589935160, "9": B.List_57_null_null_8589935161, Alt: B.List_yyP, ArrowDown: B.List_4294968065_null_null_8589935154, ArrowLeft: B.List_4294968066_null_null_8589935156, ArrowRight: B.List_4294968067_null_null_8589935158, ArrowUp: B.List_4294968068_null_null_8589935160, Clear: B.List_4294968321_null_null_8589935157, Control: B.List_yyP0, Delete: B.List_4294967423_null_null_8589935150, End: B.List_4294968069_null_null_8589935153, Enter: B.List_4294967309_null_null_8589935117, Home: B.List_4294968070_null_null_8589935159, Insert: B.List_4294968327_null_null_8589935152, Meta: B.List_yyP1, PageDown: B.List_4294968071_null_null_8589935155, PageUp: B.List_4294968072_null_null_8589935161, Shift: B.List_yyP2}, B.List_8TI, A.findType("ConstantStringMap*>")); B.LogicalKeyboardKey_42 = new A.LogicalKeyboardKey(42); B.LogicalKeyboardKey_8589935146 = new A.LogicalKeyboardKey(8589935146); B.List_MHC = A._setArrayType(makeConstList([B.LogicalKeyboardKey_42, null, null, B.LogicalKeyboardKey_8589935146]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_43 = new A.LogicalKeyboardKey(43); B.LogicalKeyboardKey_8589935147 = new A.LogicalKeyboardKey(8589935147); B.List_MHC0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_43, null, null, B.LogicalKeyboardKey_8589935147]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_45 = new A.LogicalKeyboardKey(45); B.LogicalKeyboardKey_8589935149 = new A.LogicalKeyboardKey(8589935149); B.List_MHC1 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_45, null, null, B.LogicalKeyboardKey_8589935149]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_46 = new A.LogicalKeyboardKey(46); B.LogicalKeyboardKey_8589935150 = new A.LogicalKeyboardKey(8589935150); B.List_MHC2 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_46, null, null, B.LogicalKeyboardKey_8589935150]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_47 = new A.LogicalKeyboardKey(47); B.LogicalKeyboardKey_8589935151 = new A.LogicalKeyboardKey(8589935151); B.List_MHC3 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_47, null, null, B.LogicalKeyboardKey_8589935151]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_48 = new A.LogicalKeyboardKey(48); B.LogicalKeyboardKey_8589935152 = new A.LogicalKeyboardKey(8589935152); B.List_yHZ0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_48, null, null, B.LogicalKeyboardKey_8589935152]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_49 = new A.LogicalKeyboardKey(49); B.LogicalKeyboardKey_8589935153 = new A.LogicalKeyboardKey(8589935153); B.List_yHZ1 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_49, null, null, B.LogicalKeyboardKey_8589935153]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_50 = new A.LogicalKeyboardKey(50); B.LogicalKeyboardKey_8589935154 = new A.LogicalKeyboardKey(8589935154); B.List_yHZ2 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_50, null, null, B.LogicalKeyboardKey_8589935154]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_51 = new A.LogicalKeyboardKey(51); B.LogicalKeyboardKey_8589935155 = new A.LogicalKeyboardKey(8589935155); B.List_yHZ3 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_51, null, null, B.LogicalKeyboardKey_8589935155]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_52 = new A.LogicalKeyboardKey(52); B.LogicalKeyboardKey_8589935156 = new A.LogicalKeyboardKey(8589935156); B.List_yHZ4 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_52, null, null, B.LogicalKeyboardKey_8589935156]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_53 = new A.LogicalKeyboardKey(53); B.LogicalKeyboardKey_8589935157 = new A.LogicalKeyboardKey(8589935157); B.List_yHZ5 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_53, null, null, B.LogicalKeyboardKey_8589935157]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_54 = new A.LogicalKeyboardKey(54); B.LogicalKeyboardKey_8589935158 = new A.LogicalKeyboardKey(8589935158); B.List_yHZ6 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_54, null, null, B.LogicalKeyboardKey_8589935158]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_55 = new A.LogicalKeyboardKey(55); B.LogicalKeyboardKey_8589935159 = new A.LogicalKeyboardKey(8589935159); B.List_yHZ7 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_55, null, null, B.LogicalKeyboardKey_8589935159]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_56 = new A.LogicalKeyboardKey(56); B.LogicalKeyboardKey_8589935160 = new A.LogicalKeyboardKey(8589935160); B.List_Sxn = A._setArrayType(makeConstList([B.LogicalKeyboardKey_56, null, null, B.LogicalKeyboardKey_8589935160]), type$.JSArray_nullable_LogicalKeyboardKey); B.LogicalKeyboardKey_57 = new A.LogicalKeyboardKey(57); B.LogicalKeyboardKey_8589935161 = new A.LogicalKeyboardKey(8589935161); B.List_Sxn0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_57, null, null, B.LogicalKeyboardKey_8589935161]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_ABN = A._setArrayType(makeConstList([B.LogicalKeyboardKey_8589934852, B.LogicalKeyboardKey_8589934852, B.LogicalKeyboardKey_8589934853, null]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV3 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968065, null, null, B.LogicalKeyboardKey_8589935154]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV4 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968066, null, null, B.LogicalKeyboardKey_8589935156]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV5 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968067, null, null, B.LogicalKeyboardKey_8589935158]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_3Vk0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968068, null, null, B.LogicalKeyboardKey_8589935160]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_6FR = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968321, null, null, B.LogicalKeyboardKey_8589935157]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_ABN0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_8589934848, B.LogicalKeyboardKey_8589934848, B.LogicalKeyboardKey_8589934849, null]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_IAQ = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294967423, null, null, B.LogicalKeyboardKey_8589935150]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV6 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968069, null, null, B.LogicalKeyboardKey_8589935153]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_bnV0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294967309, null, null, B.LogicalKeyboardKey_8589935117]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV7 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968070, null, null, B.LogicalKeyboardKey_8589935159]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_6FR0 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968327, null, null, B.LogicalKeyboardKey_8589935152]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_ABN1 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_8589934854, B.LogicalKeyboardKey_8589934854, B.LogicalKeyboardKey_8589934855, null]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_RsV8 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968071, null, null, B.LogicalKeyboardKey_8589935155]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_mDg = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294968072, null, null, B.LogicalKeyboardKey_8589935161]), type$.JSArray_nullable_LogicalKeyboardKey); B.List_ABN2 = A._setArrayType(makeConstList([B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589934851, null]), type$.JSArray_nullable_LogicalKeyboardKey); B.Map_8Tc9P = new A.ConstantStringMap(31, {"*": B.List_MHC, "+": B.List_MHC0, "-": B.List_MHC1, ".": B.List_MHC2, "/": B.List_MHC3, "0": B.List_yHZ0, "1": B.List_yHZ1, "2": B.List_yHZ2, "3": B.List_yHZ3, "4": B.List_yHZ4, "5": B.List_yHZ5, "6": B.List_yHZ6, "7": B.List_yHZ7, "8": B.List_Sxn, "9": B.List_Sxn0, Alt: B.List_ABN, ArrowDown: B.List_RsV3, ArrowLeft: B.List_RsV4, ArrowRight: B.List_RsV5, ArrowUp: B.List_3Vk0, Clear: B.List_6FR, Control: B.List_ABN0, Delete: B.List_IAQ, End: B.List_RsV6, Enter: B.List_bnV0, Home: B.List_RsV7, Insert: B.List_6FR0, Meta: B.List_ABN1, PageDown: B.List_RsV8, PageUp: B.List_mDg, Shift: B.List_ABN2}, B.List_8TI, A.findType("ConstantStringMap*>")); B.List_mode = A._setArrayType(makeConstList(["mode"]), type$.JSArray_legacy_String); B.Map_9aZ6I = new A.ConstantStringMap(1, {mode: "basic"}, B.List_mode, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_AR9 = A._setArrayType(makeConstList(["null-character", "invalid-codepoint", "incorrectly-placed-solidus", "incorrect-cr-newline-entity", "illegal-windows-1252-entity", "cant-convert-numeric-entity", "illegal-codepoint-for-numeric-entity", "numeric-entity-without-semicolon", "expected-numeric-entity-but-got-eof", "expected-numeric-entity", "named-entity-without-semicolon", "expected-named-entity", "attributes-in-end-tag", "self-closing-flag-on-end-tag", "expected-tag-name-but-got-right-bracket", "expected-tag-name-but-got-question-mark", "expected-tag-name", string$.expectc, "expected-closing-tag-but-got-eof", "expected-closing-tag-but-got-char", "eof-in-tag-name", "expected-attribute-name-but-got-eof", "eof-in-attribute-name", "invalid-character-in-attribute-name", "duplicate-attribute", "expected-end-of-tag-name-but-got-eof", "expected-attribute-value-but-got-eof", string$.expecta, "equals-in-unquoted-attribute-value", string$.x75nexpeci, "invalid-character-after-attribute-name", string$.x75nexpecaa, "eof-in-attribute-value-double-quote", "eof-in-attribute-value-single-quote", "eof-in-attribute-value-no-quotes", "unexpected-EOF-after-solidus-in-tag", string$.x75nexpecas, "expected-dashes-or-doctype", string$.x75nexpeb, "unexpected-space-after-double-dash-in-comment", "incorrect-comment", "eof-in-comment", "eof-in-comment-end-dash", string$.x75nexped, "eof-in-comment-double-dash", "eof-in-comment-end-space-state", "eof-in-comment-end-bang-state", "unexpected-char-in-comment", "need-space-after-doctype", string$.expectd, "expected-doctype-name-but-got-eof", "eof-in-doctype-name", "eof-in-doctype", string$.expects, "unexpected-end-of-doctype", "unexpected-char-in-doctype", "eof-in-innerhtml", "unexpected-doctype", "non-html-root", "expected-doctype-but-got-eof", "unknown-doctype", "expected-doctype-but-got-chars", "expected-doctype-but-got-start-tag", "expected-doctype-but-got-end-tag", "end-tag-after-implied-root", "expected-named-closing-tag-but-got-eof", "two-heads-are-not-better-than-one", "unexpected-end-tag", "unexpected-start-tag-out-of-my-head", "unexpected-start-tag", "missing-end-tag", "missing-end-tags", "unexpected-start-tag-implies-end-tag", "unexpected-start-tag-treated-as", "deprecated-tag", "unexpected-start-tag-ignored", "expected-one-end-tag-but-got-another", "end-tag-too-early", "end-tag-too-early-named", "end-tag-too-early-ignored", "adoption-agency-1.1", "adoption-agency-1.2", "adoption-agency-1.3", "unexpected-end-tag-treated-as", "no-end-tag", "unexpected-implied-end-tag-in-table", "unexpected-implied-end-tag-in-table-body", "unexpected-char-implies-table-voodoo", "unexpected-hidden-input-in-table", "unexpected-form-in-table", string$.x75nexpes, "unexpected-end-tag-implies-table-voodoo", "unexpected-cell-in-table-body", "unexpected-cell-end-tag", "unexpected-end-tag-in-table-body", "unexpected-implied-end-tag-in-table-row", "unexpected-end-tag-in-table-row", "unexpected-select-in-select", "unexpected-input-in-select", "unexpected-start-tag-in-select", "unexpected-end-tag-in-select", string$.x75nexpets, string$.x75nexpete, "unexpected-char-after-body", "unexpected-start-tag-after-body", "unexpected-end-tag-after-body", "unexpected-char-in-frameset", "unexpected-start-tag-in-frameset", string$.x75nexpef, "unexpected-end-tag-in-frameset", "unexpected-char-after-frameset", "unexpected-start-tag-after-frameset", "unexpected-end-tag-after-frameset", "unexpected-end-tag-after-body-innerhtml", "expected-eof-but-got-char", "expected-eof-but-got-start-tag", "expected-eof-but-got-end-tag", "eof-in-table", "eof-in-select", "eof-in-frameset", "eof-in-script-in-script", "eof-in-foreign-lands", "non-void-element-with-trailing-solidus", string$.x75nexpeh, "unexpected-end-tag-before-html", "undefined-error"]), type$.JSArray_legacy_String); B.Map_ARy3D = new A.ConstantStringMap(126, {"null-character": "Null character in input stream, replaced with U+FFFD.", "invalid-codepoint": "Invalid codepoint in stream.", "incorrectly-placed-solidus": "Solidus (/) incorrectly placed in tag.", "incorrect-cr-newline-entity": "Incorrect CR newline entity, replaced with LF.", "illegal-windows-1252-entity": "Entity used with illegal number (windows-1252 reference).", "cant-convert-numeric-entity": "Numeric entity couldn't be converted to character (codepoint U+%(charAsInt)08x).", "illegal-codepoint-for-numeric-entity": "Numeric entity represents an illegal codepoint: U+%(charAsInt)08x.", "numeric-entity-without-semicolon": "Numeric entity didn't end with ';'.", "expected-numeric-entity-but-got-eof": "Numeric entity expected. Got end of file instead.", "expected-numeric-entity": "Numeric entity expected but none found.", "named-entity-without-semicolon": "Named entity didn't end with ';'.", "expected-named-entity": "Named entity expected. Got none.", "attributes-in-end-tag": "End tag contains unexpected attributes.", "self-closing-flag-on-end-tag": "End tag contains unexpected self-closing flag.", "expected-tag-name-but-got-right-bracket": "Expected tag name. Got '>' instead.", "expected-tag-name-but-got-question-mark": "Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)", "expected-tag-name": "Expected tag name. Got something else instead", "expected-closing-tag-but-got-right-bracket": "Expected closing tag. Got '>' instead. Ignoring ''.", "expected-closing-tag-but-got-eof": "Expected closing tag. Unexpected end of file.", "expected-closing-tag-but-got-char": "Expected closing tag. Unexpected character '%(data)s' found.", "eof-in-tag-name": "Unexpected end of file in the tag name.", "expected-attribute-name-but-got-eof": "Unexpected end of file. Expected attribute name instead.", "eof-in-attribute-name": "Unexpected end of file in attribute name.", "invalid-character-in-attribute-name": "Invalid character in attribute name", "duplicate-attribute": "Dropped duplicate attribute on tag.", "expected-end-of-tag-name-but-got-eof": "Unexpected end of file. Expected = or end of tag.", "expected-attribute-value-but-got-eof": "Unexpected end of file. Expected attribute value.", "expected-attribute-value-but-got-right-bracket": "Expected attribute value. Got '>' instead.", "equals-in-unquoted-attribute-value": "Unexpected = in unquoted attribute", "unexpected-character-in-unquoted-attribute-value": "Unexpected character in unquoted attribute", "invalid-character-after-attribute-name": "Unexpected character after attribute name.", "unexpected-character-after-attribute-value": "Unexpected character after attribute value.", "eof-in-attribute-value-double-quote": 'Unexpected end of file in attribute value (".', "eof-in-attribute-value-single-quote": "Unexpected end of file in attribute value (').", "eof-in-attribute-value-no-quotes": "Unexpected end of file in attribute value.", "unexpected-EOF-after-solidus-in-tag": "Unexpected end of file in tag. Expected >", "unexpected-character-after-soldius-in-tag": "Unexpected character after / in tag. Expected >", "expected-dashes-or-doctype": "Expected '--' or 'DOCTYPE'. Not found.", "unexpected-bang-after-double-dash-in-comment": "Unexpected ! after -- in comment", "unexpected-space-after-double-dash-in-comment": "Unexpected space after -- in comment", "incorrect-comment": "Incorrect comment.", "eof-in-comment": "Unexpected end of file in comment.", "eof-in-comment-end-dash": "Unexpected end of file in comment (-)", "unexpected-dash-after-double-dash-in-comment": "Unexpected '-' after '--' found in comment.", "eof-in-comment-double-dash": "Unexpected end of file in comment (--).", "eof-in-comment-end-space-state": "Unexpected end of file in comment.", "eof-in-comment-end-bang-state": "Unexpected end of file in comment.", "unexpected-char-in-comment": "Unexpected character in comment found.", "need-space-after-doctype": "No space after literal string 'DOCTYPE'.", "expected-doctype-name-but-got-right-bracket": "Unexpected > character. Expected DOCTYPE name.", "expected-doctype-name-but-got-eof": "Unexpected end of file. Expected DOCTYPE name.", "eof-in-doctype-name": "Unexpected end of file in DOCTYPE name.", "eof-in-doctype": "Unexpected end of file in DOCTYPE.", "expected-space-or-right-bracket-in-doctype": "Expected space or '>'. Got '%(data)s'", "unexpected-end-of-doctype": "Unexpected end of DOCTYPE.", "unexpected-char-in-doctype": "Unexpected character in DOCTYPE.", "eof-in-innerhtml": "XXX innerHTML EOF", "unexpected-doctype": "Unexpected DOCTYPE. Ignored.", "non-html-root": "html needs to be the first start tag.", "expected-doctype-but-got-eof": "Unexpected End of file. Expected DOCTYPE.", "unknown-doctype": "Erroneous DOCTYPE.", "expected-doctype-but-got-chars": "Unexpected non-space characters. Expected DOCTYPE.", "expected-doctype-but-got-start-tag": "Unexpected start tag (%(name)s). Expected DOCTYPE.", "expected-doctype-but-got-end-tag": "Unexpected end tag (%(name)s). Expected DOCTYPE.", "end-tag-after-implied-root": "Unexpected end tag (%(name)s) after the (implied) root element.", "expected-named-closing-tag-but-got-eof": "Unexpected end of file. Expected end tag (%(name)s).", "two-heads-are-not-better-than-one": "Unexpected start tag head in existing head. Ignored.", "unexpected-end-tag": "Unexpected end tag (%(name)s). Ignored.", "unexpected-start-tag-out-of-my-head": "Unexpected start tag (%(name)s) that can be in head. Moved.", "unexpected-start-tag": "Unexpected start tag (%(name)s).", "missing-end-tag": "Missing end tag (%(name)s).", "missing-end-tags": "Missing end tags (%(name)s).", "unexpected-start-tag-implies-end-tag": "Unexpected start tag (%(startName)s) implies end tag (%(endName)s).", "unexpected-start-tag-treated-as": "Unexpected start tag (%(originalName)s). Treated as %(newName)s.", "deprecated-tag": "Unexpected start tag %(name)s. Don't use it!", "unexpected-start-tag-ignored": "Unexpected start tag %(name)s. Ignored.", "expected-one-end-tag-but-got-another": "Unexpected end tag (%(gotName)s). Missing end tag (%(expectedName)s).", "end-tag-too-early": "End tag (%(name)s) seen too early. Expected other end tag.", "end-tag-too-early-named": "Unexpected end tag (%(gotName)s). Expected end tag (%(expectedName)s).", "end-tag-too-early-ignored": "End tag (%(name)s) seen too early. Ignored.", "adoption-agency-1.1": "End tag (%(name)s) violates step 1, paragraph 1 of the adoption agency algorithm.", "adoption-agency-1.2": "End tag (%(name)s) violates step 1, paragraph 2 of the adoption agency algorithm.", "adoption-agency-1.3": "End tag (%(name)s) violates step 1, paragraph 3 of the adoption agency algorithm.", "unexpected-end-tag-treated-as": "Unexpected end tag (%(originalName)s). Treated as %(newName)s.", "no-end-tag": "This element (%(name)s) has no end tag.", "unexpected-implied-end-tag-in-table": "Unexpected implied end tag (%(name)s) in the table phase.", "unexpected-implied-end-tag-in-table-body": "Unexpected implied end tag (%(name)s) in the table body phase.", "unexpected-char-implies-table-voodoo": "Unexpected non-space characters in table context caused voodoo mode.", "unexpected-hidden-input-in-table": "Unexpected input with type hidden in table context.", "unexpected-form-in-table": "Unexpected form in table context.", "unexpected-start-tag-implies-table-voodoo": "Unexpected start tag (%(name)s) in table context caused voodoo mode.", "unexpected-end-tag-implies-table-voodoo": "Unexpected end tag (%(name)s) in table context caused voodoo mode.", "unexpected-cell-in-table-body": "Unexpected table cell start tag (%(name)s) in the table body phase.", "unexpected-cell-end-tag": "Got table cell end tag (%(name)s) while required end tags are missing.", "unexpected-end-tag-in-table-body": "Unexpected end tag (%(name)s) in the table body phase. Ignored.", "unexpected-implied-end-tag-in-table-row": "Unexpected implied end tag (%(name)s) in the table row phase.", "unexpected-end-tag-in-table-row": "Unexpected end tag (%(name)s) in the table row phase. Ignored.", "unexpected-select-in-select": "Unexpected select start tag in the select phase treated as select end tag.", "unexpected-input-in-select": "Unexpected input start tag in the select phase.", "unexpected-start-tag-in-select": "Unexpected start tag token (%(name)s in the select phase. Ignored.", "unexpected-end-tag-in-select": "Unexpected end tag (%(name)s) in the select phase. Ignored.", "unexpected-table-element-start-tag-in-select-in-table": "Unexpected table element start tag (%(name)s) in the select in table phase.", "unexpected-table-element-end-tag-in-select-in-table": "Unexpected table element end tag (%(name)s) in the select in table phase.", "unexpected-char-after-body": "Unexpected non-space characters in the after body phase.", "unexpected-start-tag-after-body": "Unexpected start tag token (%(name)s) in the after body phase.", "unexpected-end-tag-after-body": "Unexpected end tag token (%(name)s) in the after body phase.", "unexpected-char-in-frameset": "Unepxected characters in the frameset phase. Characters ignored.", "unexpected-start-tag-in-frameset": "Unexpected start tag token (%(name)s) in the frameset phase. Ignored.", "unexpected-frameset-in-frameset-innerhtml": "Unexpected end tag token (frameset) in the frameset phase (innerHTML).", "unexpected-end-tag-in-frameset": "Unexpected end tag token (%(name)s) in the frameset phase. Ignored.", "unexpected-char-after-frameset": "Unexpected non-space characters in the after frameset phase. Ignored.", "unexpected-start-tag-after-frameset": "Unexpected start tag (%(name)s) in the after frameset phase. Ignored.", "unexpected-end-tag-after-frameset": "Unexpected end tag (%(name)s) in the after frameset phase. Ignored.", "unexpected-end-tag-after-body-innerhtml": "Unexpected end tag after body(innerHtml)", "expected-eof-but-got-char": "Unexpected non-space characters. Expected end of file.", "expected-eof-but-got-start-tag": "Unexpected start tag (%(name)s). Expected end of file.", "expected-eof-but-got-end-tag": "Unexpected end tag (%(name)s). Expected end of file.", "eof-in-table": "Unexpected end of file. Expected table content.", "eof-in-select": "Unexpected end of file. Expected select content.", "eof-in-frameset": "Unexpected end of file. Expected frameset content.", "eof-in-script-in-script": "Unexpected end of file. Expected script content.", "eof-in-foreign-lands": "Unexpected end of file. Expected foreign content", "non-void-element-with-trailing-solidus": "Trailing solidus not allowed on element %(name)s", "unexpected-html-element-in-foreign-content": "Element %(name)s not allowed in a non-html context", "unexpected-end-tag-before-html": "Unexpected end tag (%(name)s) before html.", "undefined-error": "Undefined error (this sucks and should be fixed)"}, B.List_AR9, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_Bzp0 = A._setArrayType(makeConstList(["1", "2", "3", "4", "-1"]), type$.JSArray_legacy_String); B.Map_BzEVk = new A.ConstantStringMap(5, {"1": "draft", "2": "active", "3": "paused", "4": "completed", "-1": "pending"}, B.List_Bzp0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_D1h = A._setArrayType(makeConstList(["altglyph", "altglyphdef", "altglyphitem", "animatecolor", "animatemotion", "animatetransform", "clippath", "feblend", "fecolormatrix", "fecomponenttransfer", "fecomposite", "feconvolvematrix", "fediffuselighting", "fedisplacementmap", "fedistantlight", "feflood", "fefunca", "fefuncb", "fefuncg", "fefuncr", "fegaussianblur", "feimage", "femerge", "femergenode", "femorphology", "feoffset", "fepointlight", "fespecularlighting", "fespotlight", "fetile", "feturbulence", "foreignobject", "glyphref", "lineargradient", "radialgradient", "textpath"]), type$.JSArray_legacy_String); B.Map_D1Fp5 = new A.ConstantStringMap(36, {altglyph: "altGlyph", altglyphdef: "altGlyphDef", altglyphitem: "altGlyphItem", animatecolor: "animateColor", animatemotion: "animateMotion", animatetransform: "animateTransform", clippath: "clipPath", feblend: "feBlend", fecolormatrix: "feColorMatrix", fecomponenttransfer: "feComponentTransfer", fecomposite: "feComposite", feconvolvematrix: "feConvolveMatrix", fediffuselighting: "feDiffuseLighting", fedisplacementmap: "feDisplacementMap", fedistantlight: "feDistantLight", feflood: "feFlood", fefunca: "feFuncA", fefuncb: "feFuncB", fefuncg: "feFuncG", fefuncr: "feFuncR", fegaussianblur: "feGaussianBlur", feimage: "feImage", femerge: "feMerge", femergenode: "feMergeNode", femorphology: "feMorphology", feoffset: "feOffset", fepointlight: "fePointLight", fespecularlighting: "feSpecularLighting", fespotlight: "feSpotLight", fetile: "feTile", feturbulence: "feTurbulence", foreignobject: "foreignObject", glyphref: "glyphRef", lineargradient: "linearGradient", radialgradient: "radialGradient", textpath: "textPath"}, B.List_D1h, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_DmM2k = new A.GeneralConstantMap([0, "\ufffd", 13, "\r", 128, "\u20ac", 129, "\x81", 130, "\u201a", 131, "\u0192", 132, "\u201e", 133, "\u2026", 134, "\u2020", 135, "\u2021", 136, "\u02c6", 137, "\u2030", 138, "\u0160", 139, "\u2039", 140, "\u0152", 141, "\x8d", 142, "\u017d", 143, "\x8f", 144, "\x90", 145, "\u2018", 146, "\u2019", 147, "\u201c", 148, "\u201d", 149, "\u2022", 150, "\u2013", 151, "\u2014", 152, "\u02dc", 153, "\u2122", 154, "\u0161", 155, "\u203a", 156, "\u0153", 157, "\x9d", 158, "\u017e", 159, "\u0178"], type$.GeneralConstantMap_of_legacy_int_and_legacy_String); B.List_EHc = A._setArrayType(makeConstList(["1", "2", "3", "4", "5"]), type$.JSArray_legacy_String); B.Map_EH27z = new A.ConstantStringMap(5, {"1": "draft", "2": "sent", "3": "accepted", "4": "received", "5": "cancelled"}, B.List_EHc, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EHoyn = new A.ConstantStringMap(5, {"1": "logged", "2": "pending", "3": "invoiced", "4": "unpaid", "5": "paid"}, B.List_EHc, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_EQGBe = new A.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE, M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "M/d/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, B.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.SingleActivator_j8H8 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, false, false, false); B.SingleActivator_j8H9 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, false, false, false); B.SingleActivator_j8H7 = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, false, false, false); B.SingleActivator_j8H10 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, false, false, false); B.TraversalDirection_3 = new A.TraversalDirection(3, "left"); B.DirectionalFocusIntent_TraversalDirection_3 = new A.DirectionalFocusIntent(B.TraversalDirection_3); B.TraversalDirection_1 = new A.TraversalDirection(1, "right"); B.DirectionalFocusIntent_TraversalDirection_1 = new A.DirectionalFocusIntent(B.TraversalDirection_1); B.TraversalDirection_2 = new A.TraversalDirection(2, "down"); B.DirectionalFocusIntent_TraversalDirection_2 = new A.DirectionalFocusIntent(B.TraversalDirection_2); B.TraversalDirection_0 = new A.TraversalDirection(0, "up"); B.DirectionalFocusIntent_TraversalDirection_0 = new A.DirectionalFocusIntent(B.TraversalDirection_0); B.Map_FLUW6 = new A.GeneralConstantMap([B.SingleActivator_j8H8, B.DirectionalFocusIntent_TraversalDirection_3, B.SingleActivator_j8H9, B.DirectionalFocusIntent_TraversalDirection_1, B.SingleActivator_j8H7, B.DirectionalFocusIntent_TraversalDirection_2, B.SingleActivator_j8H10, B.DirectionalFocusIntent_TraversalDirection_0], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.MessageLevel_2 = new A.MessageLevel(2, "severe"); B.MessageLevel_1 = new A.MessageLevel(1, "warning"); B.MessageLevel_0 = new A.MessageLevel(0, "info"); B.Map_GpDrw = new A.GeneralConstantMap([B.MessageLevel_2, "error", B.MessageLevel_1, "warning", B.MessageLevel_0, "info"], type$.GeneralConstantMap_of_legacy_MessageLevel_and_legacy_String); B.Map_GpoyU = new A.GeneralConstantMap([B.MessageLevel_2, "\x1b[31m", B.MessageLevel_1, "\x1b[35m", B.MessageLevel_0, "\x1b[32m"], type$.GeneralConstantMap_of_legacy_MessageLevel_and_legacy_String); B.List_IF20 = A._setArrayType(makeConstList(["-1", "1", "2", "3", "4", "-2"]), type$.JSArray_legacy_String); B.Map_IF4bq = new A.ConstantStringMap(6, {"-1": "expired", "1": "draft", "2": "sent", "3": "approved", "4": "converted", "-2": "viewed"}, B.List_IF20, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_IYb = A._setArrayType(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "18", "17", "19", "20", "21", "22"]), type$.JSArray_legacy_String); B.Map_IYMYu = new A.ConstantStringMap(22, {"1": "credit_card", "2": "bank_transfer", "3": "paypal", "4": "crypto", "5": "custom", "6": "alipay", "7": "sofort", "8": "apple_pay", "9": "sepa", "10": "credit", "11": "kbc", "12": "bancontact", "13": "ideal", "14": "hosted", "15": "giropay", "16": "przelewy24", "18": "direct_debit", "17": "eps", "19": "acss", "20": "becs", "21": "instant_bank_pay", "22": "fpx"}, B.List_IYb, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_IY4 = A._setArrayType(makeConstList(["-2", "-1", "1", "2", "3", "4", "5", "6"]), type$.JSArray_legacy_String); B.Map_IYlun = new A.ConstantStringMap(8, {"-2": "partially_unapplied", "-1": "unapplied", "1": "pending", "2": "cancelled", "3": "failed", "4": "completed", "5": "partially_refunded", "6": "refunded"}, B.List_IY4, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_JNAHF = new A.GeneralConstantMap([4096, "invoices", 1, "recurring_invoices", 4, "quotes", 2, "credits", 32, "projects", 8, "tasks", 64, "vendors", 16384, "purchase_orders", 16, "expenses", 512, "recurring_expenses"], type$.GeneralConstantMap_of_legacy_int_and_legacy_String); B.List_KPc = A._setArrayType(makeConstList(["Abort", "Again", "AltLeft", "AltRight", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "AudioVolumeDown", "AudioVolumeMute", "AudioVolumeUp", "Backquote", "Backslash", "Backspace", "BassBoost", "BracketLeft", "BracketRight", "BrightnessAuto", "BrightnessDown", "BrightnessMaximum", "BrightnessMinimum", "BrightnessToggle", "BrightnessUp", "BrowserBack", "BrowserFavorites", "BrowserForward", "BrowserHome", "BrowserRefresh", "BrowserSearch", "BrowserStop", "CapsLock", "ChannelDown", "ChannelUp", "Close", "ClosedCaptionToggle", "Comma", "ContextMenu", "ControlLeft", "ControlRight", "Convert", "Copy", "Cut", "Delete", "Digit0", "Digit1", "Digit2", "Digit3", "Digit4", "Digit5", "Digit6", "Digit7", "Digit8", "Digit9", "DisplayToggleIntExt", "Eject", "End", "Enter", "Equal", "Escape", "Exit", "F1", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F2", "F20", "F21", "F22", "F23", "F24", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "Find", "Fn", "FnLock", "GameButton1", "GameButton10", "GameButton11", "GameButton12", "GameButton13", "GameButton14", "GameButton15", "GameButton16", "GameButton2", "GameButton3", "GameButton4", "GameButton5", "GameButton6", "GameButton7", "GameButton8", "GameButton9", "GameButtonA", "GameButtonB", "GameButtonC", "GameButtonLeft1", "GameButtonLeft2", "GameButtonMode", "GameButtonRight1", "GameButtonRight2", "GameButtonSelect", "GameButtonStart", "GameButtonThumbLeft", "GameButtonThumbRight", "GameButtonX", "GameButtonY", "GameButtonZ", "Help", "Home", "Hyper", "Info", "Insert", "IntlBackslash", "IntlRo", "IntlYen", "KanaMode", "KbdIllumDown", "KbdIllumUp", "KeyA", "KeyB", "KeyC", "KeyD", "KeyE", "KeyF", "KeyG", "KeyH", "KeyI", "KeyJ", "KeyK", "KeyL", "KeyM", "KeyN", "KeyO", "KeyP", "KeyQ", "KeyR", "KeyS", "KeyT", "KeyU", "KeyV", "KeyW", "KeyX", "KeyY", "KeyZ", "KeyboardLayoutSelect", "Lang1", "Lang2", "Lang3", "Lang4", "Lang5", "LaunchApp1", "LaunchApp2", "LaunchAssistant", "LaunchAudioBrowser", "LaunchCalendar", "LaunchContacts", "LaunchControlPanel", "LaunchDocuments", "LaunchInternetBrowser", "LaunchKeyboardLayout", "LaunchMail", "LaunchPhone", "LaunchScreenSaver", "LaunchSpreadsheet", "LaunchWordProcessor", "LockScreen", "LogOff", "MailForward", "MailReply", "MailSend", "MediaFastForward", "MediaLast", "MediaPause", "MediaPlay", "MediaPlayPause", "MediaRecord", "MediaRewind", "MediaSelect", "MediaStop", "MediaTrackNext", "MediaTrackPrevious", "MetaLeft", "MetaRight", "Minus", "New", "NonConvert", "NumLock", "Numpad0", "Numpad1", "Numpad2", "Numpad3", "Numpad4", "Numpad5", "Numpad6", "Numpad7", "Numpad8", "Numpad9", "NumpadAdd", "NumpadBackspace", "NumpadClear", "NumpadClearEntry", "NumpadComma", "NumpadDecimal", "NumpadDivide", "NumpadEnter", "NumpadEqual", "NumpadMemoryAdd", "NumpadMemoryClear", "NumpadMemoryRecall", "NumpadMemoryStore", "NumpadMemorySubtract", "NumpadMultiply", "NumpadParenLeft", "NumpadParenRight", "NumpadSignChange", "NumpadSubtract", "Open", "PageDown", "PageUp", "Paste", "Pause", "Period", "Power", "Print", "PrintScreen", "PrivacyScreenToggle", "ProgramGuide", "Props", "Quote", "Redo", "Resume", "Save", "ScrollLock", "Select", "SelectTask", "Semicolon", "ShiftLeft", "ShiftRight", "ShowAllWindows", "Slash", "Sleep", "Space", "SpeechInputToggle", "SpellCheck", "Super", "Suspend", "Tab", "Turbo", "Undo", "UsbErrorRollOver", "UsbErrorUndefined", "UsbPostFail", "UsbReserved", "WakeUp", "ZoomIn", "ZoomOut", "ZoomToggle"]), type$.JSArray_legacy_String); B.Map_KP6BJ = new A.ConstantStringMap(268, {Abort: 458907, Again: 458873, AltLeft: 458978, AltRight: 458982, ArrowDown: 458833, ArrowLeft: 458832, ArrowRight: 458831, ArrowUp: 458834, AudioVolumeDown: 458881, AudioVolumeMute: 458879, AudioVolumeUp: 458880, Backquote: 458805, Backslash: 458801, Backspace: 458794, BassBoost: 786661, BracketLeft: 458799, BracketRight: 458800, BrightnessAuto: 786549, BrightnessDown: 786544, BrightnessMaximum: 786548, BrightnessMinimum: 786547, BrightnessToggle: 786546, BrightnessUp: 786543, BrowserBack: 786980, BrowserFavorites: 786986, BrowserForward: 786981, BrowserHome: 786979, BrowserRefresh: 786983, BrowserSearch: 786977, BrowserStop: 786982, CapsLock: 458809, ChannelDown: 786589, ChannelUp: 786588, Close: 786947, ClosedCaptionToggle: 786529, Comma: 458806, ContextMenu: 458853, ControlLeft: 458976, ControlRight: 458980, Convert: 458890, Copy: 458876, Cut: 458875, Delete: 458828, Digit0: 458791, Digit1: 458782, Digit2: 458783, Digit3: 458784, Digit4: 458785, Digit5: 458786, Digit6: 458787, Digit7: 458788, Digit8: 458789, Digit9: 458790, DisplayToggleIntExt: 65717, Eject: 786616, End: 458829, Enter: 458792, Equal: 458798, Escape: 458793, Exit: 786580, F1: 458810, F10: 458819, F11: 458820, F12: 458821, F13: 458856, F14: 458857, F15: 458858, F16: 458859, F17: 458860, F18: 458861, F19: 458862, F2: 458811, F20: 458863, F21: 458864, F22: 458865, F23: 458866, F24: 458867, F3: 458812, F4: 458813, F5: 458814, F6: 458815, F7: 458816, F8: 458817, F9: 458818, Find: 458878, Fn: 18, FnLock: 19, GameButton1: 392961, GameButton10: 392970, GameButton11: 392971, GameButton12: 392972, GameButton13: 392973, GameButton14: 392974, GameButton15: 392975, GameButton16: 392976, GameButton2: 392962, GameButton3: 392963, GameButton4: 392964, GameButton5: 392965, GameButton6: 392966, GameButton7: 392967, GameButton8: 392968, GameButton9: 392969, GameButtonA: 392977, GameButtonB: 392978, GameButtonC: 392979, GameButtonLeft1: 392980, GameButtonLeft2: 392981, GameButtonMode: 392982, GameButtonRight1: 392983, GameButtonRight2: 392984, GameButtonSelect: 392985, GameButtonStart: 392986, GameButtonThumbLeft: 392987, GameButtonThumbRight: 392988, GameButtonX: 392989, GameButtonY: 392990, GameButtonZ: 392991, Help: 458869, Home: 458826, Hyper: 16, Info: 786528, Insert: 458825, IntlBackslash: 458852, IntlRo: 458887, IntlYen: 458889, KanaMode: 458888, KbdIllumDown: 786554, KbdIllumUp: 786553, KeyA: 458756, KeyB: 458757, KeyC: 458758, KeyD: 458759, KeyE: 458760, KeyF: 458761, KeyG: 458762, KeyH: 458763, KeyI: 458764, KeyJ: 458765, KeyK: 458766, KeyL: 458767, KeyM: 458768, KeyN: 458769, KeyO: 458770, KeyP: 458771, KeyQ: 458772, KeyR: 458773, KeyS: 458774, KeyT: 458775, KeyU: 458776, KeyV: 458777, KeyW: 458778, KeyX: 458779, KeyY: 458780, KeyZ: 458781, KeyboardLayoutSelect: 787101, Lang1: 458896, Lang2: 458897, Lang3: 458898, Lang4: 458899, Lang5: 458900, LaunchApp1: 786836, LaunchApp2: 786834, LaunchAssistant: 786891, LaunchAudioBrowser: 786871, LaunchCalendar: 786830, LaunchContacts: 786829, LaunchControlPanel: 786847, LaunchDocuments: 786855, LaunchInternetBrowser: 786838, LaunchKeyboardLayout: 786862, LaunchMail: 786826, LaunchPhone: 786572, LaunchScreenSaver: 786865, LaunchSpreadsheet: 786822, LaunchWordProcessor: 786820, LockScreen: 786846, LogOff: 786844, MailForward: 787083, MailReply: 787081, MailSend: 787084, MediaFastForward: 786611, MediaLast: 786563, MediaPause: 786609, MediaPlay: 786608, MediaPlayPause: 786637, MediaRecord: 786610, MediaRewind: 786612, MediaSelect: 786819, MediaStop: 786615, MediaTrackNext: 786613, MediaTrackPrevious: 786614, MetaLeft: 458979, MetaRight: 458983, Minus: 458797, New: 786945, NonConvert: 458891, NumLock: 458835, Numpad0: 458850, Numpad1: 458841, Numpad2: 458842, Numpad3: 458843, Numpad4: 458844, Numpad5: 458845, Numpad6: 458846, Numpad7: 458847, Numpad8: 458848, Numpad9: 458849, NumpadAdd: 458839, NumpadBackspace: 458939, NumpadClear: 458968, NumpadClearEntry: 458969, NumpadComma: 458885, NumpadDecimal: 458851, NumpadDivide: 458836, NumpadEnter: 458840, NumpadEqual: 458855, NumpadMemoryAdd: 458963, NumpadMemoryClear: 458962, NumpadMemoryRecall: 458961, NumpadMemoryStore: 458960, NumpadMemorySubtract: 458964, NumpadMultiply: 458837, NumpadParenLeft: 458934, NumpadParenRight: 458935, NumpadSignChange: 458967, NumpadSubtract: 458838, Open: 458868, PageDown: 458830, PageUp: 458827, Paste: 458877, Pause: 458824, Period: 458807, Power: 458854, Print: 786952, PrintScreen: 458822, PrivacyScreenToggle: 23, ProgramGuide: 786573, Props: 458915, Quote: 458804, Redo: 787065, Resume: 21, Save: 786951, ScrollLock: 458823, Select: 458871, SelectTask: 786850, Semicolon: 458803, ShiftLeft: 458977, ShiftRight: 458981, ShowAllWindows: 787103, Slash: 458808, Sleep: 65666, Space: 458796, SpeechInputToggle: 786639, SpellCheck: 786859, Super: 17, Suspend: 20, Tab: 458795, Turbo: 22, Undo: 458874, UsbErrorRollOver: 458753, UsbErrorUndefined: 458755, UsbPostFail: 458754, UsbReserved: 458752, WakeUp: 65667, ZoomIn: 786989, ZoomOut: 786990, ZoomToggle: 786994}, B.List_KPc, type$.ConstantStringMap_of_legacy_String_and_legacy_int); B.Map_Q5S3m = new A.GeneralConstantMap([16, B.PhysicalKeyboardKey_16, 17, B.PhysicalKeyboardKey_17, 18, B.PhysicalKeyboardKey_18, 19, B.PhysicalKeyboardKey_19, 20, B.PhysicalKeyboardKey_20, 21, B.PhysicalKeyboardKey_21, 22, B.PhysicalKeyboardKey_22, 23, B.PhysicalKeyboardKey_23, 24, B.PhysicalKeyboardKey_24, 65666, B.PhysicalKeyboardKey_65666, 65667, B.PhysicalKeyboardKey_65667, 65717, B.PhysicalKeyboardKey_65717, 392961, B.PhysicalKeyboardKey_392961, 392962, B.PhysicalKeyboardKey_392962, 392963, B.PhysicalKeyboardKey_392963, 392964, B.PhysicalKeyboardKey_392964, 392965, B.PhysicalKeyboardKey_392965, 392966, B.PhysicalKeyboardKey_392966, 392967, B.PhysicalKeyboardKey_392967, 392968, B.PhysicalKeyboardKey_392968, 392969, B.PhysicalKeyboardKey_392969, 392970, B.PhysicalKeyboardKey_392970, 392971, B.PhysicalKeyboardKey_392971, 392972, B.PhysicalKeyboardKey_392972, 392973, B.PhysicalKeyboardKey_392973, 392974, B.PhysicalKeyboardKey_392974, 392975, B.PhysicalKeyboardKey_392975, 392976, B.PhysicalKeyboardKey_392976, 392977, B.PhysicalKeyboardKey_392977, 392978, B.PhysicalKeyboardKey_392978, 392979, B.PhysicalKeyboardKey_392979, 392980, B.PhysicalKeyboardKey_392980, 392981, B.PhysicalKeyboardKey_392981, 392982, B.PhysicalKeyboardKey_392982, 392983, B.PhysicalKeyboardKey_392983, 392984, B.PhysicalKeyboardKey_392984, 392985, B.PhysicalKeyboardKey_392985, 392986, B.PhysicalKeyboardKey_392986, 392987, B.PhysicalKeyboardKey_392987, 392988, B.PhysicalKeyboardKey_392988, 392989, B.PhysicalKeyboardKey_392989, 392990, B.PhysicalKeyboardKey_392990, 392991, B.PhysicalKeyboardKey_392991, 458752, B.PhysicalKeyboardKey_458752, 458753, B.PhysicalKeyboardKey_458753, 458754, B.PhysicalKeyboardKey_458754, 458755, B.PhysicalKeyboardKey_458755, 458756, B.PhysicalKeyboardKey_458756, 458757, B.PhysicalKeyboardKey_458757, 458758, B.PhysicalKeyboardKey_458758, 458759, B.PhysicalKeyboardKey_458759, 458760, B.PhysicalKeyboardKey_458760, 458761, B.PhysicalKeyboardKey_458761, 458762, B.PhysicalKeyboardKey_458762, 458763, B.PhysicalKeyboardKey_458763, 458764, B.PhysicalKeyboardKey_458764, 458765, B.PhysicalKeyboardKey_458765, 458766, B.PhysicalKeyboardKey_458766, 458767, B.PhysicalKeyboardKey_458767, 458768, B.PhysicalKeyboardKey_458768, 458769, B.PhysicalKeyboardKey_458769, 458770, B.PhysicalKeyboardKey_458770, 458771, B.PhysicalKeyboardKey_458771, 458772, B.PhysicalKeyboardKey_458772, 458773, B.PhysicalKeyboardKey_458773, 458774, B.PhysicalKeyboardKey_458774, 458775, B.PhysicalKeyboardKey_458775, 458776, B.PhysicalKeyboardKey_458776, 458777, B.PhysicalKeyboardKey_458777, 458778, B.PhysicalKeyboardKey_458778, 458779, B.PhysicalKeyboardKey_458779, 458780, B.PhysicalKeyboardKey_458780, 458781, B.PhysicalKeyboardKey_458781, 458782, B.PhysicalKeyboardKey_458782, 458783, B.PhysicalKeyboardKey_458783, 458784, B.PhysicalKeyboardKey_458784, 458785, B.PhysicalKeyboardKey_458785, 458786, B.PhysicalKeyboardKey_458786, 458787, B.PhysicalKeyboardKey_458787, 458788, B.PhysicalKeyboardKey_458788, 458789, B.PhysicalKeyboardKey_458789, 458790, B.PhysicalKeyboardKey_458790, 458791, B.PhysicalKeyboardKey_458791, 458792, B.PhysicalKeyboardKey_458792, 458793, B.PhysicalKeyboardKey_458793, 458794, B.PhysicalKeyboardKey_458794, 458795, B.PhysicalKeyboardKey_458795, 458796, B.PhysicalKeyboardKey_458796, 458797, B.PhysicalKeyboardKey_458797, 458798, B.PhysicalKeyboardKey_458798, 458799, B.PhysicalKeyboardKey_458799, 458800, B.PhysicalKeyboardKey_458800, 458801, B.PhysicalKeyboardKey_458801, 458803, B.PhysicalKeyboardKey_458803, 458804, B.PhysicalKeyboardKey_458804, 458805, B.PhysicalKeyboardKey_458805, 458806, B.PhysicalKeyboardKey_458806, 458807, B.PhysicalKeyboardKey_458807, 458808, B.PhysicalKeyboardKey_458808, 458809, B.PhysicalKeyboardKey_458809, 458810, B.PhysicalKeyboardKey_458810, 458811, B.PhysicalKeyboardKey_458811, 458812, B.PhysicalKeyboardKey_458812, 458813, B.PhysicalKeyboardKey_458813, 458814, B.PhysicalKeyboardKey_458814, 458815, B.PhysicalKeyboardKey_458815, 458816, B.PhysicalKeyboardKey_458816, 458817, B.PhysicalKeyboardKey_458817, 458818, B.PhysicalKeyboardKey_458818, 458819, B.PhysicalKeyboardKey_458819, 458820, B.PhysicalKeyboardKey_458820, 458821, B.PhysicalKeyboardKey_458821, 458822, B.PhysicalKeyboardKey_458822, 458823, B.PhysicalKeyboardKey_458823, 458824, B.PhysicalKeyboardKey_458824, 458825, B.PhysicalKeyboardKey_458825, 458826, B.PhysicalKeyboardKey_458826, 458827, B.PhysicalKeyboardKey_458827, 458828, B.PhysicalKeyboardKey_458828, 458829, B.PhysicalKeyboardKey_458829, 458830, B.PhysicalKeyboardKey_458830, 458831, B.PhysicalKeyboardKey_458831, 458832, B.PhysicalKeyboardKey_458832, 458833, B.PhysicalKeyboardKey_458833, 458834, B.PhysicalKeyboardKey_458834, 458835, B.PhysicalKeyboardKey_458835, 458836, B.PhysicalKeyboardKey_458836, 458837, B.PhysicalKeyboardKey_458837, 458838, B.PhysicalKeyboardKey_458838, 458839, B.PhysicalKeyboardKey_458839, 458840, B.PhysicalKeyboardKey_458840, 458841, B.PhysicalKeyboardKey_458841, 458842, B.PhysicalKeyboardKey_458842, 458843, B.PhysicalKeyboardKey_458843, 458844, B.PhysicalKeyboardKey_458844, 458845, B.PhysicalKeyboardKey_458845, 458846, B.PhysicalKeyboardKey_458846, 458847, B.PhysicalKeyboardKey_458847, 458848, B.PhysicalKeyboardKey_458848, 458849, B.PhysicalKeyboardKey_458849, 458850, B.PhysicalKeyboardKey_458850, 458851, B.PhysicalKeyboardKey_458851, 458852, B.PhysicalKeyboardKey_458852, 458853, B.PhysicalKeyboardKey_458853, 458854, B.PhysicalKeyboardKey_458854, 458855, B.PhysicalKeyboardKey_458855, 458856, B.PhysicalKeyboardKey_458856, 458857, B.PhysicalKeyboardKey_458857, 458858, B.PhysicalKeyboardKey_458858, 458859, B.PhysicalKeyboardKey_458859, 458860, B.PhysicalKeyboardKey_458860, 458861, B.PhysicalKeyboardKey_458861, 458862, B.PhysicalKeyboardKey_458862, 458863, B.PhysicalKeyboardKey_458863, 458864, B.PhysicalKeyboardKey_458864, 458865, B.PhysicalKeyboardKey_458865, 458866, B.PhysicalKeyboardKey_458866, 458867, B.PhysicalKeyboardKey_458867, 458868, B.PhysicalKeyboardKey_458868, 458869, B.PhysicalKeyboardKey_458869, 458871, B.PhysicalKeyboardKey_458871, 458873, B.PhysicalKeyboardKey_458873, 458874, B.PhysicalKeyboardKey_458874, 458875, B.PhysicalKeyboardKey_458875, 458876, B.PhysicalKeyboardKey_458876, 458877, B.PhysicalKeyboardKey_458877, 458878, B.PhysicalKeyboardKey_458878, 458879, B.PhysicalKeyboardKey_458879, 458880, B.PhysicalKeyboardKey_458880, 458881, B.PhysicalKeyboardKey_458881, 458885, B.PhysicalKeyboardKey_458885, 458887, B.PhysicalKeyboardKey_458887, 458888, B.PhysicalKeyboardKey_458888, 458889, B.PhysicalKeyboardKey_458889, 458890, B.PhysicalKeyboardKey_458890, 458891, B.PhysicalKeyboardKey_458891, 458896, B.PhysicalKeyboardKey_458896, 458897, B.PhysicalKeyboardKey_458897, 458898, B.PhysicalKeyboardKey_458898, 458899, B.PhysicalKeyboardKey_458899, 458900, B.PhysicalKeyboardKey_458900, 458907, B.PhysicalKeyboardKey_458907, 458915, B.PhysicalKeyboardKey_458915, 458934, B.PhysicalKeyboardKey_458934, 458935, B.PhysicalKeyboardKey_458935, 458939, B.PhysicalKeyboardKey_458939, 458960, B.PhysicalKeyboardKey_458960, 458961, B.PhysicalKeyboardKey_458961, 458962, B.PhysicalKeyboardKey_458962, 458963, B.PhysicalKeyboardKey_458963, 458964, B.PhysicalKeyboardKey_458964, 458967, B.PhysicalKeyboardKey_458967, 458968, B.PhysicalKeyboardKey_458968, 458969, B.PhysicalKeyboardKey_458969, 458976, B.PhysicalKeyboardKey_458976, 458977, B.PhysicalKeyboardKey_458977, 458978, B.PhysicalKeyboardKey_458978, 458979, B.PhysicalKeyboardKey_458979, 458980, B.PhysicalKeyboardKey_458980, 458981, B.PhysicalKeyboardKey_458981, 458982, B.PhysicalKeyboardKey_458982, 458983, B.PhysicalKeyboardKey_458983, 786528, B.PhysicalKeyboardKey_786528, 786529, B.PhysicalKeyboardKey_786529, 786543, B.PhysicalKeyboardKey_786543, 786544, B.PhysicalKeyboardKey_786544, 786546, B.PhysicalKeyboardKey_786546, 786547, B.PhysicalKeyboardKey_786547, 786548, B.PhysicalKeyboardKey_786548, 786549, B.PhysicalKeyboardKey_786549, 786553, B.PhysicalKeyboardKey_786553, 786554, B.PhysicalKeyboardKey_786554, 786563, B.PhysicalKeyboardKey_786563, 786572, B.PhysicalKeyboardKey_786572, 786573, B.PhysicalKeyboardKey_786573, 786580, B.PhysicalKeyboardKey_786580, 786588, B.PhysicalKeyboardKey_786588, 786589, B.PhysicalKeyboardKey_786589, 786608, B.PhysicalKeyboardKey_786608, 786609, B.PhysicalKeyboardKey_786609, 786610, B.PhysicalKeyboardKey_786610, 786611, B.PhysicalKeyboardKey_786611, 786612, B.PhysicalKeyboardKey_786612, 786613, B.PhysicalKeyboardKey_786613, 786614, B.PhysicalKeyboardKey_786614, 786615, B.PhysicalKeyboardKey_786615, 786616, B.PhysicalKeyboardKey_786616, 786637, B.PhysicalKeyboardKey_786637, 786639, B.PhysicalKeyboardKey_786639, 786661, B.PhysicalKeyboardKey_786661, 786819, B.PhysicalKeyboardKey_786819, 786820, B.PhysicalKeyboardKey_786820, 786822, B.PhysicalKeyboardKey_786822, 786826, B.PhysicalKeyboardKey_786826, 786829, B.PhysicalKeyboardKey_786829, 786830, B.PhysicalKeyboardKey_786830, 786834, B.PhysicalKeyboardKey_786834, 786836, B.PhysicalKeyboardKey_786836, 786838, B.PhysicalKeyboardKey_786838, 786844, B.PhysicalKeyboardKey_786844, 786846, B.PhysicalKeyboardKey_786846, 786847, B.PhysicalKeyboardKey_786847, 786850, B.PhysicalKeyboardKey_786850, 786855, B.PhysicalKeyboardKey_786855, 786859, B.PhysicalKeyboardKey_786859, 786862, B.PhysicalKeyboardKey_786862, 786865, B.PhysicalKeyboardKey_786865, 786871, B.PhysicalKeyboardKey_786871, 786891, B.PhysicalKeyboardKey_786891, 786945, B.PhysicalKeyboardKey_786945, 786947, B.PhysicalKeyboardKey_786947, 786951, B.PhysicalKeyboardKey_786951, 786952, B.PhysicalKeyboardKey_786952, 786977, B.PhysicalKeyboardKey_786977, 786979, B.PhysicalKeyboardKey_786979, 786980, B.PhysicalKeyboardKey_786980, 786981, B.PhysicalKeyboardKey_786981, 786982, B.PhysicalKeyboardKey_786982, 786983, B.PhysicalKeyboardKey_786983, 786986, B.PhysicalKeyboardKey_786986, 786989, B.PhysicalKeyboardKey_786989, 786990, B.PhysicalKeyboardKey_786990, 786994, B.PhysicalKeyboardKey_786994, 787065, B.PhysicalKeyboardKey_787065, 787081, B.PhysicalKeyboardKey_787081, 787083, B.PhysicalKeyboardKey_787083, 787084, B.PhysicalKeyboardKey_787084, 787101, B.PhysicalKeyboardKey_787101, 787103, B.PhysicalKeyboardKey_787103], type$.GeneralConstantMap_of_legacy_int_and_legacy_PhysicalKeyboardKey); B.SingleActivator_gc6 = new A.SingleActivator(B.LogicalKeyboardKey_4294967309, false, false, false, false); B.C_NextFocusIntent = new A.NextFocusIntent(); B.Map_TbTh7 = new A.GeneralConstantMap([B.SingleActivator_gc6, B.C_NextFocusIntent], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.List_VIq = A._setArrayType(makeConstList(["xlink:actuate", "xlink:arcrole", "xlink:href", "xlink:role", "xlink:show", "xlink:title", "xlink:type", "xml:base", "xml:lang", "xml:space", "xmlns", "xmlns:xlink"]), type$.JSArray_legacy_String); B.AttributeName_QUH = new A.AttributeName("xlink", "actuate", "http://www.w3.org/1999/xlink"); B.AttributeName_adc = new A.AttributeName("xlink", "arcrole", "http://www.w3.org/1999/xlink"); B.AttributeName_cHZ = new A.AttributeName("xlink", "href", "http://www.w3.org/1999/xlink"); B.AttributeName_aZ8 = new A.AttributeName("xlink", "role", "http://www.w3.org/1999/xlink"); B.AttributeName_Xda = new A.AttributeName("xlink", "show", "http://www.w3.org/1999/xlink"); B.AttributeName_wIv = new A.AttributeName("xlink", "title", "http://www.w3.org/1999/xlink"); B.AttributeName_rP3 = new A.AttributeName("xlink", "type", "http://www.w3.org/1999/xlink"); B.AttributeName_kyU = new A.AttributeName("xml", "base", "http://www.w3.org/XML/1998/namespace"); B.AttributeName_dik = new A.AttributeName("xml", "lang", "http://www.w3.org/XML/1998/namespace"); B.AttributeName_3bx = new A.AttributeName("xml", "space", "http://www.w3.org/XML/1998/namespace"); B.AttributeName_gQW = new A.AttributeName(null, "xmlns", "http://www.w3.org/2000/xmlns/"); B.AttributeName_CTA = new A.AttributeName("xmlns", "xlink", "http://www.w3.org/2000/xmlns/"); B.Map_VIbiD = new A.ConstantStringMap(12, {"xlink:actuate": B.AttributeName_QUH, "xlink:arcrole": B.AttributeName_adc, "xlink:href": B.AttributeName_cHZ, "xlink:role": B.AttributeName_aZ8, "xlink:show": B.AttributeName_Xda, "xlink:title": B.AttributeName_wIv, "xlink:type": B.AttributeName_rP3, "xml:base": B.AttributeName_kyU, "xml:lang": B.AttributeName_dik, "xml:space": B.AttributeName_3bx, xmlns: B.AttributeName_gQW, "xmlns:xlink": B.AttributeName_CTA}, B.List_VIq, A.findType("ConstantStringMap")); B.List_YCM = A._setArrayType(makeConstList(["in", "iw", "ji", "jw", "mo", "aam", "adp", "aue", "ayx", "bgm", "bjd", "ccq", "cjr", "cka", "cmk", "coy", "cqu", "drh", "drw", "gav", "gfx", "ggn", "gti", "guv", "hrr", "ibi", "ilw", "jeg", "kgc", "kgh", "koj", "krm", "ktr", "kvs", "kwq", "kxe", "kzj", "kzt", "lii", "lmm", "meg", "mst", "mwj", "myt", "nad", "ncp", "nnx", "nts", "oun", "pcr", "pmc", "pmu", "ppa", "ppr", "pry", "puz", "sca", "skk", "tdu", "thc", "thx", "tie", "tkk", "tlw", "tmp", "tne", "tnf", "tsf", "uok", "xba", "xia", "xkh", "xsj", "ybd", "yma", "ymt", "yos", "yuu"]), type$.JSArray_legacy_String); B.Map_YCOho = new A.ConstantStringMap(78, {in: "id", iw: "he", ji: "yi", jw: "jv", mo: "ro", aam: "aas", adp: "dz", aue: "ktz", ayx: "nun", bgm: "bcg", bjd: "drl", ccq: "rki", cjr: "mom", cka: "cmr", cmk: "xch", coy: "pij", cqu: "quh", drh: "khk", drw: "prs", gav: "dev", gfx: "vaj", ggn: "gvr", gti: "nyc", guv: "duz", hrr: "jal", ibi: "opa", ilw: "gal", jeg: "oyb", kgc: "tdf", kgh: "kml", koj: "kwv", krm: "bmf", ktr: "dtp", kvs: "gdj", kwq: "yam", kxe: "tvd", kzj: "dtp", kzt: "dtp", lii: "raq", lmm: "rmx", meg: "cir", mst: "mry", mwj: "vaj", myt: "mry", nad: "xny", ncp: "kdz", nnx: "ngv", nts: "pij", oun: "vaj", pcr: "adx", pmc: "huw", pmu: "phr", ppa: "bfy", ppr: "lcq", pry: "prt", puz: "pub", sca: "hle", skk: "oyb", tdu: "dtp", thc: "tpo", thx: "oyb", tie: "ras", tkk: "twm", tlw: "weo", tmp: "tyj", tne: "kak", tnf: "prs", tsf: "taj", uok: "ema", xba: "cax", xia: "acn", xkh: "waw", xsj: "suj", ybd: "rki", yma: "lrr", ymt: "mtm", yos: "zom", yuu: "yug"}, B.List_YCM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_ato0 = A._setArrayType(makeConstList(["1", "10", "11", "2", "8", "9", "3", "21", "6", "7", "4", "12", "5", "13", "14", "15", "16", "17", "18", "19", "20", "22", "23", "24", "25", "26"]), type$.JSArray_legacy_String); B.Map_atQCY = new A.ConstantStringMap(26, {"1": "create_client", "10": "update_client", "11": "delete_client", "2": "create_invoice", "8": "update_invoice", "9": "delete_invoice", "3": "create_quote", "21": "approve_quote", "6": "update_quote", "7": "delete_quote", "4": "create_payment", "12": "delete_payment", "5": "create_vendor", "13": "update_vendor", "14": "delete_vendor", "15": "create_expense", "16": "update_expense", "17": "delete_expense", "18": "create_task", "19": "update_task", "20": "delete_task", "22": "late_invoice", "23": "expired_quote", "24": "remind_invoice", "25": "create_project", "26": "update_project"}, B.List_ato0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.C_AutocompletePreviousOptionIntent = new A.AutocompletePreviousOptionIntent(); B.C_AutocompleteNextOptionIntent = new A.AutocompleteNextOptionIntent(); B.Map_cW2No = new A.GeneralConstantMap([B.SingleActivator_j8H10, B.C_AutocompletePreviousOptionIntent, B.SingleActivator_j8H7, B.C_AutocompleteNextOptionIntent], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.Map_cW2nU = new A.GeneralConstantMap([B.SingleActivator_j8H7, B.DirectionalFocusIntent_TraversalDirection_2, B.SingleActivator_j8H10, B.DirectionalFocusIntent_TraversalDirection_0], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.Map_eRea7 = new A.GeneralConstantMap([9, B.PhysicalKeyboardKey_458793, 10, B.PhysicalKeyboardKey_458782, 11, B.PhysicalKeyboardKey_458783, 12, B.PhysicalKeyboardKey_458784, 13, B.PhysicalKeyboardKey_458785, 14, B.PhysicalKeyboardKey_458786, 15, B.PhysicalKeyboardKey_458787, 16, B.PhysicalKeyboardKey_458788, 17, B.PhysicalKeyboardKey_458789, 18, B.PhysicalKeyboardKey_458790, 19, B.PhysicalKeyboardKey_458791, 20, B.PhysicalKeyboardKey_458797, 21, B.PhysicalKeyboardKey_458798, 22, B.PhysicalKeyboardKey_458794, 23, B.PhysicalKeyboardKey_458795, 24, B.PhysicalKeyboardKey_458772, 25, B.PhysicalKeyboardKey_458778, 26, B.PhysicalKeyboardKey_458760, 27, B.PhysicalKeyboardKey_458773, 28, B.PhysicalKeyboardKey_458775, 29, B.PhysicalKeyboardKey_458780, 30, B.PhysicalKeyboardKey_458776, 31, B.PhysicalKeyboardKey_458764, 32, B.PhysicalKeyboardKey_458770, 33, B.PhysicalKeyboardKey_458771, 34, B.PhysicalKeyboardKey_458799, 35, B.PhysicalKeyboardKey_458800, 36, B.PhysicalKeyboardKey_458792, 37, B.PhysicalKeyboardKey_458976, 38, B.PhysicalKeyboardKey_458756, 39, B.PhysicalKeyboardKey_458774, 40, B.PhysicalKeyboardKey_458759, 41, B.PhysicalKeyboardKey_458761, 42, B.PhysicalKeyboardKey_458762, 43, B.PhysicalKeyboardKey_458763, 44, B.PhysicalKeyboardKey_458765, 45, B.PhysicalKeyboardKey_458766, 46, B.PhysicalKeyboardKey_458767, 47, B.PhysicalKeyboardKey_458803, 48, B.PhysicalKeyboardKey_458804, 49, B.PhysicalKeyboardKey_458805, 50, B.PhysicalKeyboardKey_458977, 51, B.PhysicalKeyboardKey_458801, 52, B.PhysicalKeyboardKey_458781, 53, B.PhysicalKeyboardKey_458779, 54, B.PhysicalKeyboardKey_458758, 55, B.PhysicalKeyboardKey_458777, 56, B.PhysicalKeyboardKey_458757, 57, B.PhysicalKeyboardKey_458769, 58, B.PhysicalKeyboardKey_458768, 59, B.PhysicalKeyboardKey_458806, 60, B.PhysicalKeyboardKey_458807, 61, B.PhysicalKeyboardKey_458808, 62, B.PhysicalKeyboardKey_458981, 63, B.PhysicalKeyboardKey_458837, 64, B.PhysicalKeyboardKey_458978, 65, B.PhysicalKeyboardKey_458796, 66, B.PhysicalKeyboardKey_458809, 67, B.PhysicalKeyboardKey_458810, 68, B.PhysicalKeyboardKey_458811, 69, B.PhysicalKeyboardKey_458812, 70, B.PhysicalKeyboardKey_458813, 71, B.PhysicalKeyboardKey_458814, 72, B.PhysicalKeyboardKey_458815, 73, B.PhysicalKeyboardKey_458816, 74, B.PhysicalKeyboardKey_458817, 75, B.PhysicalKeyboardKey_458818, 76, B.PhysicalKeyboardKey_458819, 77, B.PhysicalKeyboardKey_458835, 78, B.PhysicalKeyboardKey_458823, 79, B.PhysicalKeyboardKey_458847, 80, B.PhysicalKeyboardKey_458848, 81, B.PhysicalKeyboardKey_458849, 82, B.PhysicalKeyboardKey_458838, 83, B.PhysicalKeyboardKey_458844, 84, B.PhysicalKeyboardKey_458845, 85, B.PhysicalKeyboardKey_458846, 86, B.PhysicalKeyboardKey_458839, 87, B.PhysicalKeyboardKey_458841, 88, B.PhysicalKeyboardKey_458842, 89, B.PhysicalKeyboardKey_458843, 90, B.PhysicalKeyboardKey_458850, 91, B.PhysicalKeyboardKey_458851, 93, B.PhysicalKeyboardKey_458900, 94, B.PhysicalKeyboardKey_458852, 95, B.PhysicalKeyboardKey_458820, 96, B.PhysicalKeyboardKey_458821, 97, B.PhysicalKeyboardKey_458887, 98, B.PhysicalKeyboardKey_458898, 99, B.PhysicalKeyboardKey_458899, 100, B.PhysicalKeyboardKey_458890, 101, B.PhysicalKeyboardKey_458888, 102, B.PhysicalKeyboardKey_458891, 104, B.PhysicalKeyboardKey_458840, 105, B.PhysicalKeyboardKey_458980, 106, B.PhysicalKeyboardKey_458836, 107, B.PhysicalKeyboardKey_458822, 108, B.PhysicalKeyboardKey_458982, 110, B.PhysicalKeyboardKey_458826, 111, B.PhysicalKeyboardKey_458834, 112, B.PhysicalKeyboardKey_458827, 113, B.PhysicalKeyboardKey_458832, 114, B.PhysicalKeyboardKey_458831, 115, B.PhysicalKeyboardKey_458829, 116, B.PhysicalKeyboardKey_458833, 117, B.PhysicalKeyboardKey_458830, 118, B.PhysicalKeyboardKey_458825, 119, B.PhysicalKeyboardKey_458828, 121, B.PhysicalKeyboardKey_458879, 122, B.PhysicalKeyboardKey_458881, 123, B.PhysicalKeyboardKey_458880, 124, B.PhysicalKeyboardKey_458854, 125, B.PhysicalKeyboardKey_458855, 126, B.PhysicalKeyboardKey_458967, 127, B.PhysicalKeyboardKey_458824, 128, B.PhysicalKeyboardKey_787103, 129, B.PhysicalKeyboardKey_458885, 130, B.PhysicalKeyboardKey_458896, 131, B.PhysicalKeyboardKey_458897, 132, B.PhysicalKeyboardKey_458889, 133, B.PhysicalKeyboardKey_458979, 134, B.PhysicalKeyboardKey_458983, 135, B.PhysicalKeyboardKey_458853, 136, B.PhysicalKeyboardKey_786982, 137, B.PhysicalKeyboardKey_458873, 139, B.PhysicalKeyboardKey_458874, 140, B.PhysicalKeyboardKey_458871, 141, B.PhysicalKeyboardKey_458876, 142, B.PhysicalKeyboardKey_458868, 143, B.PhysicalKeyboardKey_458877, 144, B.PhysicalKeyboardKey_458878, 145, B.PhysicalKeyboardKey_458875, 146, B.PhysicalKeyboardKey_458869, 148, B.PhysicalKeyboardKey_786834, 150, B.PhysicalKeyboardKey_65666, 151, B.PhysicalKeyboardKey_65667, 152, B.PhysicalKeyboardKey_786836, 158, B.PhysicalKeyboardKey_786838, 160, B.PhysicalKeyboardKey_786846, 163, B.PhysicalKeyboardKey_786826, 164, B.PhysicalKeyboardKey_786986, 166, B.PhysicalKeyboardKey_786980, 167, B.PhysicalKeyboardKey_786981, 169, B.PhysicalKeyboardKey_786616, 171, B.PhysicalKeyboardKey_786613, 172, B.PhysicalKeyboardKey_786637, 173, B.PhysicalKeyboardKey_786614, 174, B.PhysicalKeyboardKey_786615, 175, B.PhysicalKeyboardKey_786610, 176, B.PhysicalKeyboardKey_786612, 177, B.PhysicalKeyboardKey_786572, 179, B.PhysicalKeyboardKey_786819, 180, B.PhysicalKeyboardKey_786979, 181, B.PhysicalKeyboardKey_786983, 182, B.PhysicalKeyboardKey_786580, 187, B.PhysicalKeyboardKey_458934, 188, B.PhysicalKeyboardKey_458935, 189, B.PhysicalKeyboardKey_786945, 190, B.PhysicalKeyboardKey_787065, 191, B.PhysicalKeyboardKey_458856, 192, B.PhysicalKeyboardKey_458857, 193, B.PhysicalKeyboardKey_458858, 194, B.PhysicalKeyboardKey_458859, 195, B.PhysicalKeyboardKey_458860, 196, B.PhysicalKeyboardKey_458861, 197, B.PhysicalKeyboardKey_458862, 198, B.PhysicalKeyboardKey_458863, 199, B.PhysicalKeyboardKey_458864, 200, B.PhysicalKeyboardKey_458865, 201, B.PhysicalKeyboardKey_458866, 202, B.PhysicalKeyboardKey_458867, 209, B.PhysicalKeyboardKey_786609, 214, B.PhysicalKeyboardKey_786947, 215, B.PhysicalKeyboardKey_786608, 216, B.PhysicalKeyboardKey_786611, 217, B.PhysicalKeyboardKey_786661, 218, B.PhysicalKeyboardKey_786952, 225, B.PhysicalKeyboardKey_786977, 232, B.PhysicalKeyboardKey_786544, 233, B.PhysicalKeyboardKey_786543, 235, B.PhysicalKeyboardKey_65717, 237, B.PhysicalKeyboardKey_786554, 238, B.PhysicalKeyboardKey_786553, 239, B.PhysicalKeyboardKey_787084, 240, B.PhysicalKeyboardKey_787081, 241, B.PhysicalKeyboardKey_787083, 242, B.PhysicalKeyboardKey_786951, 243, B.PhysicalKeyboardKey_786855, 252, B.PhysicalKeyboardKey_786549, 256, B.PhysicalKeyboardKey_24, 366, B.PhysicalKeyboardKey_786528, 370, B.PhysicalKeyboardKey_786573, 378, B.PhysicalKeyboardKey_786529, 380, B.PhysicalKeyboardKey_786994, 382, B.PhysicalKeyboardKey_786862, 400, B.PhysicalKeyboardKey_786871, 405, B.PhysicalKeyboardKey_786830, 413, B.PhysicalKeyboardKey_786563, 418, B.PhysicalKeyboardKey_786588, 419, B.PhysicalKeyboardKey_786589, 426, B.PhysicalKeyboardKey_786989, 427, B.PhysicalKeyboardKey_786990, 429, B.PhysicalKeyboardKey_786820, 431, B.PhysicalKeyboardKey_786822, 437, B.PhysicalKeyboardKey_786829, 439, B.PhysicalKeyboardKey_786546, 440, B.PhysicalKeyboardKey_786859, 441, B.PhysicalKeyboardKey_786844, 587, B.PhysicalKeyboardKey_786847, 588, B.PhysicalKeyboardKey_786850, 589, B.PhysicalKeyboardKey_786865, 590, B.PhysicalKeyboardKey_786639, 591, B.PhysicalKeyboardKey_786891, 592, B.PhysicalKeyboardKey_787101, 600, B.PhysicalKeyboardKey_786547, 601, B.PhysicalKeyboardKey_786548, 641, B.PhysicalKeyboardKey_23], type$.GeneralConstantMap_of_legacy_int_and_legacy_PhysicalKeyboardKey); B.Map_empty0 = new A.ConstantStringMap(0, {}, B.List_empty, A.findType("ConstantStringMap<@,@>")); B.Map_empty2 = new A.ConstantStringMap(0, {}, B.List_empty, A.findType("ConstantStringMap")); B.List_empty30 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.Map_empty8 = new A.ConstantStringMap(0, {}, B.List_empty30, A.findType("ConstantStringMap")); B.List_empty31 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.Map_empty1 = new A.ConstantStringMap(0, {}, B.List_empty31, A.findType("ConstantStringMap")); B.Map_empty4 = new A.ConstantStringMap(0, {}, B.List_empty0, type$.ConstantStringMap_of_legacy_String_and_dynamic); B.Map_empty6 = new A.ConstantStringMap(0, {}, B.List_empty0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_empty7 = new A.ConstantStringMap(0, {}, B.List_empty0, A.findType("ConstantStringMap")); B.List_empty32 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.Map_empty = new A.ConstantStringMap(0, {}, B.List_empty32, A.findType("ConstantStringMap")); B.List_empty33 = A._setArrayType(makeConstList([]), type$.JSArray_legacy_Type); B.Map_empty3 = new A.ConstantStringMap(0, {}, B.List_empty33, A.findType("ConstantStringMap")); B.Map_empty5 = new A.ConstantStringMap(0, {}, B.List_empty33, A.findType("ConstantStringMap*>")); B.List_eyO = A._setArrayType(makeConstList(["application/vnd.android.package-archive", "application/epub+zip", "application/gzip", "application/java-archive", "application/json", "application/ld+json", "application/msword", "application/octet-stream", "application/ogg", "application/pdf", "application/php", "application/rtf", "application/vnd.amazon.ebook", "application/vnd.apple.installer+xml", "application/vnd.mozilla.xul+xml", "application/vnd.ms-excel", "application/vnd.ms-fontobject", "application/vnd.ms-powerpoint", "application/vnd.oasis.opendocument.presentation", "application/vnd.oasis.opendocument.spreadsheet", "application/vnd.oasis.opendocument.text", "application/vnd.openxmlformats-officedocument.presentationml.presentation", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.rar", "application/vnd.visio", "application/x-7z-compressed", "application/x-abiword", "application/x-bzip", "application/x-bzip2", "application/x-csh", "application/x-freearc", "application/x-sh", "application/x-shockwave-flash", "application/x-tar", "application/xhtml+xml", "application/xml", "application/zip", "audio/3gpp", "audio/3gpp2", "audio/aac", "audio/x-aac", "audio/midi audio/x-midi", "audio/mpeg", "audio/ogg", "audio/opus", "audio/wav", "audio/webm", "font/otf", "font/ttf", "font/woff", "font/woff2", "image/bmp", "image/gif", "image/jpeg", "image/png", "image/svg+xml", "image/tiff", "image/vnd.microsoft.icon", "image/webp", "text/calendar", "text/css", "text/csv", "text/html", "text/javascript", "text/plain", "text/xml", "video/3gpp", "video/3gpp2", "video/mp2t", "video/mpeg", "video/ogg", "video/webm", "video/x-msvideo", "video/quicktime"]), type$.JSArray_legacy_String); B.Map_eyCh9 = new A.ConstantStringMap(75, {"application/vnd.android.package-archive": ".apk", "application/epub+zip": ".epub", "application/gzip": ".gz", "application/java-archive": ".jar", "application/json": ".json", "application/ld+json": ".jsonld", "application/msword": ".doc", "application/octet-stream": ".bin", "application/ogg": ".ogx", "application/pdf": ".pdf", "application/php": ".php", "application/rtf": ".rtf", "application/vnd.amazon.ebook": ".azw", "application/vnd.apple.installer+xml": ".mpkg", "application/vnd.mozilla.xul+xml": ".xul", "application/vnd.ms-excel": ".xls", "application/vnd.ms-fontobject": ".eot", "application/vnd.ms-powerpoint": ".ppt", "application/vnd.oasis.opendocument.presentation": ".odp", "application/vnd.oasis.opendocument.spreadsheet": ".ods", "application/vnd.oasis.opendocument.text": ".odt", "application/vnd.openxmlformats-officedocument.presentationml.presentation": ".pptx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ".xlsx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ".docx", "application/vnd.rar": ".rar", "application/vnd.visio": ".vsd", "application/x-7z-compressed": ".7z", "application/x-abiword": ".abw", "application/x-bzip": ".bz", "application/x-bzip2": ".bz2", "application/x-csh": ".csh", "application/x-freearc": ".arc", "application/x-sh": ".sh", "application/x-shockwave-flash": ".swf", "application/x-tar": ".tar", "application/xhtml+xml": ".xhtml", "application/xml": ".xml", "application/zip": ".zip", "audio/3gpp": ".3gp", "audio/3gpp2": ".3g2", "audio/aac": ".aac", "audio/x-aac": ".aac", "audio/midi audio/x-midi": ".midi", "audio/mpeg": ".mp3", "audio/ogg": ".oga", "audio/opus": ".opus", "audio/wav": ".wav", "audio/webm": ".weba", "font/otf": ".otf", "font/ttf": ".ttf", "font/woff": ".woff", "font/woff2": ".woff2", "image/bmp": ".bmp", "image/gif": ".gif", "image/jpeg": ".jpg", "image/png": ".png", "image/svg+xml": ".svg", "image/tiff": ".tiff", "image/vnd.microsoft.icon": ".ico", "image/webp": ".webp", "text/calendar": ".ics", "text/css": ".css", "text/csv": ".csv", "text/html": ".html", "text/javascript": ".js", "text/plain": ".txt", "text/xml": ".xml", "video/3gpp": ".3gp", "video/3gpp2": ".3g2", "video/mp2t": ".ts", "video/mpeg": ".mpeg", "video/ogg": ".ogv", "video/webm": ".webm", "video/x-msvideo": ".avi", "video/quicktime": ".mov"}, B.List_eyO, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_fHJmU = new A.GeneralConstantMap([B.TraversalDirection_0, -7, B.TraversalDirection_1, 1, B.TraversalDirection_2, 7, B.TraversalDirection_3, -1], A.findType("GeneralConstantMap")); B.List_fbO = A._setArrayType(makeConstList(["attributename", "attributetype", "basefrequency", "baseprofile", "calcmode", "clippathunits", "contentscripttype", "contentstyletype", "diffuseconstant", "edgemode", "externalresourcesrequired", "filterres", "filterunits", "glyphref", "gradienttransform", "gradientunits", "kernelmatrix", "kernelunitlength", "keypoints", "keysplines", "keytimes", "lengthadjust", "limitingconeangle", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "numoctaves", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "pointsatx", "pointsaty", "pointsatz", "preservealpha", "preserveaspectratio", "primitiveunits", "refx", "refy", "repeatcount", "repeatdur", "requiredextensions", "requiredfeatures", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "surfacescale", "systemlanguage", "tablevalues", "targetx", "targety", "textlength", "viewbox", "viewtarget", "xchannelselector", "ychannelselector", "zoomandpan"]), type$.JSArray_legacy_String); B.Map_fbSNt = new A.ConstantStringMap(62, {attributename: "attributeName", attributetype: "attributeType", basefrequency: "baseFrequency", baseprofile: "baseProfile", calcmode: "calcMode", clippathunits: "clipPathUnits", contentscripttype: "contentScriptType", contentstyletype: "contentStyleType", diffuseconstant: "diffuseConstant", edgemode: "edgeMode", externalresourcesrequired: "externalResourcesRequired", filterres: "filterRes", filterunits: "filterUnits", glyphref: "glyphRef", gradienttransform: "gradientTransform", gradientunits: "gradientUnits", kernelmatrix: "kernelMatrix", kernelunitlength: "kernelUnitLength", keypoints: "keyPoints", keysplines: "keySplines", keytimes: "keyTimes", lengthadjust: "lengthAdjust", limitingconeangle: "limitingConeAngle", markerheight: "markerHeight", markerunits: "markerUnits", markerwidth: "markerWidth", maskcontentunits: "maskContentUnits", maskunits: "maskUnits", numoctaves: "numOctaves", pathlength: "pathLength", patterncontentunits: "patternContentUnits", patterntransform: "patternTransform", patternunits: "patternUnits", pointsatx: "pointsAtX", pointsaty: "pointsAtY", pointsatz: "pointsAtZ", preservealpha: "preserveAlpha", preserveaspectratio: "preserveAspectRatio", primitiveunits: "primitiveUnits", refx: "refX", refy: "refY", repeatcount: "repeatCount", repeatdur: "repeatDur", requiredextensions: "requiredExtensions", requiredfeatures: "requiredFeatures", specularconstant: "specularConstant", specularexponent: "specularExponent", spreadmethod: "spreadMethod", startoffset: "startOffset", stddeviation: "stdDeviation", stitchtiles: "stitchTiles", surfacescale: "surfaceScale", systemlanguage: "systemLanguage", tablevalues: "tableValues", targetx: "targetX", targety: "targetY", textlength: "textLength", viewbox: "viewBox", viewtarget: "viewTarget", xchannelselector: "xChannelSelector", ychannelselector: "yChannelSelector", zoomandpan: "zoomAndPan"}, B.List_fbO, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_gFn = A._setArrayType(makeConstList(["alias", "allScroll", "basic", "cell", "click", "contextMenu", "copy", "forbidden", "grab", "grabbing", "help", "move", "none", "noDrop", "precise", "progress", "text", "resizeColumn", "resizeDown", "resizeDownLeft", "resizeDownRight", "resizeLeft", "resizeLeftRight", "resizeRight", "resizeRow", "resizeUp", "resizeUpDown", "resizeUpLeft", "resizeUpRight", "resizeUpLeftDownRight", "resizeUpRightDownLeft", "verticalText", "wait", "zoomIn", "zoomOut"]), type$.JSArray_legacy_String); B.Map_gFKQ1 = new A.ConstantStringMap(35, {alias: "alias", allScroll: "all-scroll", basic: "default", cell: "cell", click: "pointer", contextMenu: "context-menu", copy: "copy", forbidden: "not-allowed", grab: "grab", grabbing: "grabbing", help: "help", move: "move", none: "none", noDrop: "no-drop", precise: "crosshair", progress: "progress", text: "text", resizeColumn: "col-resize", resizeDown: "s-resize", resizeDownLeft: "sw-resize", resizeDownRight: "se-resize", resizeLeft: "w-resize", resizeLeftRight: "ew-resize", resizeRight: "e-resize", resizeRow: "row-resize", resizeUp: "n-resize", resizeUpDown: "ns-resize", resizeUpLeft: "nw-resize", resizeUpRight: "ne-resize", resizeUpLeftDownRight: "nwse-resize", resizeUpRightDownLeft: "nesw-resize", verticalText: "vertical-text", wait: "wait", zoomIn: "zoom-in", zoomOut: "zoom-out"}, B.List_gFn, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.MaterialType_0 = new A.MaterialType(0, "canvas"); B.MaterialType_1 = new A.MaterialType(1, "card"); B.MaterialType_2 = new A.MaterialType(2, "circle"); B.MaterialType_3 = new A.MaterialType(3, "button"); B.MaterialType_4 = new A.MaterialType(4, "transparency"); B.Map_gnuL2 = new A.GeneralConstantMap([B.MaterialType_0, null, B.MaterialType_1, B.BorderRadius_tLn2, B.MaterialType_2, null, B.MaterialType_3, B.BorderRadius_tLn2, B.MaterialType_4, null], A.findType("GeneralConstantMap")); B.List_gpN = A._setArrayType(makeConstList(["age_group_paid", "age_group_0", "age_group_30", "age_group_60", "age_group_90", "age_group_120"]), type$.JSArray_legacy_String); B.Map_gpKp8 = new A.ConstantStringMap(6, {age_group_paid: -1, age_group_0: 0, age_group_30: 30, age_group_60: 60, age_group_90: 90, age_group_120: 120}, B.List_gpN, type$.ConstantStringMap_of_legacy_String_and_legacy_int); B.List_A4_Letter = A._setArrayType(makeConstList(["A4", "Letter"]), type$.JSArray_legacy_String); B.PdfPageFormat_gg4 = new A.PdfPageFormat(595.275590551181, 841.8897637795275, 56.69291338582677, 56.69291338582677, 56.69291338582677, 56.69291338582677); B.PdfPageFormat_7BY = new A.PdfPageFormat(612, 792, 72, 72, 72, 72); B.Map_gyoqK = new A.ConstantStringMap(2, {A4: B.PdfPageFormat_gg4, Letter: B.PdfPageFormat_7BY}, B.List_A4_Letter, A.findType("ConstantStringMap")); B.List_j3h0 = A._setArrayType(makeConstList(["-1", "1", "2", "3", "4", "5", "6", "-3"]), type$.JSArray_legacy_String); B.Map_j34mP = new A.ConstantStringMap(8, {"-1": "past_due", "1": "draft", "2": "sent", "3": "partial", "4": "paid", "5": "cancelled", "6": "reversed", "-3": "viewed"}, B.List_j3h0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.LogicalKeyboardKey_32 = new A.LogicalKeyboardKey(32); B.LogicalKeyboardKey_33 = new A.LogicalKeyboardKey(33); B.LogicalKeyboardKey_34 = new A.LogicalKeyboardKey(34); B.LogicalKeyboardKey_35 = new A.LogicalKeyboardKey(35); B.LogicalKeyboardKey_36 = new A.LogicalKeyboardKey(36); B.LogicalKeyboardKey_37 = new A.LogicalKeyboardKey(37); B.LogicalKeyboardKey_38 = new A.LogicalKeyboardKey(38); B.LogicalKeyboardKey_39 = new A.LogicalKeyboardKey(39); B.LogicalKeyboardKey_40 = new A.LogicalKeyboardKey(40); B.LogicalKeyboardKey_41 = new A.LogicalKeyboardKey(41); B.LogicalKeyboardKey_44 = new A.LogicalKeyboardKey(44); B.LogicalKeyboardKey_58 = new A.LogicalKeyboardKey(58); B.LogicalKeyboardKey_59 = new A.LogicalKeyboardKey(59); B.LogicalKeyboardKey_60 = new A.LogicalKeyboardKey(60); B.LogicalKeyboardKey_61 = new A.LogicalKeyboardKey(61); B.LogicalKeyboardKey_62 = new A.LogicalKeyboardKey(62); B.LogicalKeyboardKey_63 = new A.LogicalKeyboardKey(63); B.LogicalKeyboardKey_64 = new A.LogicalKeyboardKey(64); B.LogicalKeyboardKey_91 = new A.LogicalKeyboardKey(91); B.LogicalKeyboardKey_92 = new A.LogicalKeyboardKey(92); B.LogicalKeyboardKey_93 = new A.LogicalKeyboardKey(93); B.LogicalKeyboardKey_94 = new A.LogicalKeyboardKey(94); B.LogicalKeyboardKey_95 = new A.LogicalKeyboardKey(95); B.LogicalKeyboardKey_96 = new A.LogicalKeyboardKey(96); B.LogicalKeyboardKey_100 = new A.LogicalKeyboardKey(100); B.LogicalKeyboardKey_102 = new A.LogicalKeyboardKey(102); B.LogicalKeyboardKey_103 = new A.LogicalKeyboardKey(103); B.LogicalKeyboardKey_104 = new A.LogicalKeyboardKey(104); B.LogicalKeyboardKey_106 = new A.LogicalKeyboardKey(106); B.LogicalKeyboardKey_107 = new A.LogicalKeyboardKey(107); B.LogicalKeyboardKey_108 = new A.LogicalKeyboardKey(108); B.LogicalKeyboardKey_109 = new A.LogicalKeyboardKey(109); B.LogicalKeyboardKey_110 = new A.LogicalKeyboardKey(110); B.LogicalKeyboardKey_111 = new A.LogicalKeyboardKey(111); B.LogicalKeyboardKey_112 = new A.LogicalKeyboardKey(112); B.LogicalKeyboardKey_113 = new A.LogicalKeyboardKey(113); B.LogicalKeyboardKey_114 = new A.LogicalKeyboardKey(114); B.LogicalKeyboardKey_115 = new A.LogicalKeyboardKey(115); B.LogicalKeyboardKey_116 = new A.LogicalKeyboardKey(116); B.LogicalKeyboardKey_117 = new A.LogicalKeyboardKey(117); B.LogicalKeyboardKey_119 = new A.LogicalKeyboardKey(119); B.LogicalKeyboardKey_121 = new A.LogicalKeyboardKey(121); B.LogicalKeyboardKey_122 = new A.LogicalKeyboardKey(122); B.LogicalKeyboardKey_123 = new A.LogicalKeyboardKey(123); B.LogicalKeyboardKey_124 = new A.LogicalKeyboardKey(124); B.LogicalKeyboardKey_125 = new A.LogicalKeyboardKey(125); B.LogicalKeyboardKey_126 = new A.LogicalKeyboardKey(126); B.LogicalKeyboardKey_8589934592 = new A.LogicalKeyboardKey(8589934592); B.LogicalKeyboardKey_8589934593 = new A.LogicalKeyboardKey(8589934593); B.LogicalKeyboardKey_8589934594 = new A.LogicalKeyboardKey(8589934594); B.LogicalKeyboardKey_8589934595 = new A.LogicalKeyboardKey(8589934595); B.LogicalKeyboardKey_8589934608 = new A.LogicalKeyboardKey(8589934608); B.LogicalKeyboardKey_8589934609 = new A.LogicalKeyboardKey(8589934609); B.LogicalKeyboardKey_8589934610 = new A.LogicalKeyboardKey(8589934610); B.LogicalKeyboardKey_8589934611 = new A.LogicalKeyboardKey(8589934611); B.LogicalKeyboardKey_8589934612 = new A.LogicalKeyboardKey(8589934612); B.LogicalKeyboardKey_8589934624 = new A.LogicalKeyboardKey(8589934624); B.LogicalKeyboardKey_8589934625 = new A.LogicalKeyboardKey(8589934625); B.LogicalKeyboardKey_8589934626 = new A.LogicalKeyboardKey(8589934626); B.LogicalKeyboardKey_8589935144 = new A.LogicalKeyboardKey(8589935144); B.LogicalKeyboardKey_8589935145 = new A.LogicalKeyboardKey(8589935145); B.LogicalKeyboardKey_8589935148 = new A.LogicalKeyboardKey(8589935148); B.LogicalKeyboardKey_8589935165 = new A.LogicalKeyboardKey(8589935165); B.LogicalKeyboardKey_8589935361 = new A.LogicalKeyboardKey(8589935361); B.LogicalKeyboardKey_8589935362 = new A.LogicalKeyboardKey(8589935362); B.LogicalKeyboardKey_8589935363 = new A.LogicalKeyboardKey(8589935363); B.LogicalKeyboardKey_8589935364 = new A.LogicalKeyboardKey(8589935364); B.LogicalKeyboardKey_8589935365 = new A.LogicalKeyboardKey(8589935365); B.LogicalKeyboardKey_8589935366 = new A.LogicalKeyboardKey(8589935366); B.LogicalKeyboardKey_8589935367 = new A.LogicalKeyboardKey(8589935367); B.LogicalKeyboardKey_8589935368 = new A.LogicalKeyboardKey(8589935368); B.LogicalKeyboardKey_8589935369 = new A.LogicalKeyboardKey(8589935369); B.LogicalKeyboardKey_8589935370 = new A.LogicalKeyboardKey(8589935370); B.LogicalKeyboardKey_8589935371 = new A.LogicalKeyboardKey(8589935371); B.LogicalKeyboardKey_8589935372 = new A.LogicalKeyboardKey(8589935372); B.LogicalKeyboardKey_8589935373 = new A.LogicalKeyboardKey(8589935373); B.LogicalKeyboardKey_8589935374 = new A.LogicalKeyboardKey(8589935374); B.LogicalKeyboardKey_8589935375 = new A.LogicalKeyboardKey(8589935375); B.LogicalKeyboardKey_8589935376 = new A.LogicalKeyboardKey(8589935376); B.LogicalKeyboardKey_8589935377 = new A.LogicalKeyboardKey(8589935377); B.LogicalKeyboardKey_8589935378 = new A.LogicalKeyboardKey(8589935378); B.LogicalKeyboardKey_8589935379 = new A.LogicalKeyboardKey(8589935379); B.LogicalKeyboardKey_8589935380 = new A.LogicalKeyboardKey(8589935380); B.LogicalKeyboardKey_8589935381 = new A.LogicalKeyboardKey(8589935381); B.LogicalKeyboardKey_8589935382 = new A.LogicalKeyboardKey(8589935382); B.LogicalKeyboardKey_8589935383 = new A.LogicalKeyboardKey(8589935383); B.LogicalKeyboardKey_8589935384 = new A.LogicalKeyboardKey(8589935384); B.LogicalKeyboardKey_8589935385 = new A.LogicalKeyboardKey(8589935385); B.LogicalKeyboardKey_8589935386 = new A.LogicalKeyboardKey(8589935386); B.LogicalKeyboardKey_8589935387 = new A.LogicalKeyboardKey(8589935387); B.LogicalKeyboardKey_8589935388 = new A.LogicalKeyboardKey(8589935388); B.LogicalKeyboardKey_8589935389 = new A.LogicalKeyboardKey(8589935389); B.LogicalKeyboardKey_8589935390 = new A.LogicalKeyboardKey(8589935390); B.LogicalKeyboardKey_8589935391 = new A.LogicalKeyboardKey(8589935391); B.Map_mUsBb = new A.GeneralConstantMap([32, B.LogicalKeyboardKey_32, 33, B.LogicalKeyboardKey_33, 34, B.LogicalKeyboardKey_34, 35, B.LogicalKeyboardKey_35, 36, B.LogicalKeyboardKey_36, 37, B.LogicalKeyboardKey_37, 38, B.LogicalKeyboardKey_38, 39, B.LogicalKeyboardKey_39, 40, B.LogicalKeyboardKey_40, 41, B.LogicalKeyboardKey_41, 42, B.LogicalKeyboardKey_42, 43, B.LogicalKeyboardKey_43, 44, B.LogicalKeyboardKey_44, 45, B.LogicalKeyboardKey_45, 46, B.LogicalKeyboardKey_46, 47, B.LogicalKeyboardKey_47, 48, B.LogicalKeyboardKey_48, 49, B.LogicalKeyboardKey_49, 50, B.LogicalKeyboardKey_50, 51, B.LogicalKeyboardKey_51, 52, B.LogicalKeyboardKey_52, 53, B.LogicalKeyboardKey_53, 54, B.LogicalKeyboardKey_54, 55, B.LogicalKeyboardKey_55, 56, B.LogicalKeyboardKey_56, 57, B.LogicalKeyboardKey_57, 58, B.LogicalKeyboardKey_58, 59, B.LogicalKeyboardKey_59, 60, B.LogicalKeyboardKey_60, 61, B.LogicalKeyboardKey_61, 62, B.LogicalKeyboardKey_62, 63, B.LogicalKeyboardKey_63, 64, B.LogicalKeyboardKey_64, 91, B.LogicalKeyboardKey_91, 92, B.LogicalKeyboardKey_92, 93, B.LogicalKeyboardKey_93, 94, B.LogicalKeyboardKey_94, 95, B.LogicalKeyboardKey_95, 96, B.LogicalKeyboardKey_96, 97, B.LogicalKeyboardKey_97, 98, B.LogicalKeyboardKey_98, 99, B.LogicalKeyboardKey_99, 100, B.LogicalKeyboardKey_100, 101, B.LogicalKeyboardKey_101, 102, B.LogicalKeyboardKey_102, 103, B.LogicalKeyboardKey_103, 104, B.LogicalKeyboardKey_104, 105, B.LogicalKeyboardKey_105, 106, B.LogicalKeyboardKey_106, 107, B.LogicalKeyboardKey_107, 108, B.LogicalKeyboardKey_108, 109, B.LogicalKeyboardKey_109, 110, B.LogicalKeyboardKey_110, 111, B.LogicalKeyboardKey_111, 112, B.LogicalKeyboardKey_112, 113, B.LogicalKeyboardKey_113, 114, B.LogicalKeyboardKey_114, 115, B.LogicalKeyboardKey_115, 116, B.LogicalKeyboardKey_116, 117, B.LogicalKeyboardKey_117, 118, B.LogicalKeyboardKey_118, 119, B.LogicalKeyboardKey_119, 120, B.LogicalKeyboardKey_120, 121, B.LogicalKeyboardKey_121, 122, B.LogicalKeyboardKey_122, 123, B.LogicalKeyboardKey_123, 124, B.LogicalKeyboardKey_124, 125, B.LogicalKeyboardKey_125, 126, B.LogicalKeyboardKey_126, 4294967297, B.LogicalKeyboardKey_4294967297, 4294967304, B.LogicalKeyboardKey_4294967304, 4294967305, B.LogicalKeyboardKey_4294967305, 4294967309, B.LogicalKeyboardKey_4294967309, 4294967323, B.LogicalKeyboardKey_4294967323, 4294967423, B.LogicalKeyboardKey_4294967423, 4294967553, B.LogicalKeyboardKey_4294967553, 4294967555, B.LogicalKeyboardKey_4294967555, 4294967556, B.LogicalKeyboardKey_4294967556, 4294967558, B.LogicalKeyboardKey_4294967558, 4294967559, B.LogicalKeyboardKey_4294967559, 4294967560, B.LogicalKeyboardKey_4294967560, 4294967562, B.LogicalKeyboardKey_4294967562, 4294967564, B.LogicalKeyboardKey_4294967564, 4294967566, B.LogicalKeyboardKey_4294967566, 4294967567, B.LogicalKeyboardKey_4294967567, 4294967568, B.LogicalKeyboardKey_4294967568, 4294967569, B.LogicalKeyboardKey_4294967569, 4294968065, B.LogicalKeyboardKey_4294968065, 4294968066, B.LogicalKeyboardKey_4294968066, 4294968067, B.LogicalKeyboardKey_4294968067, 4294968068, B.LogicalKeyboardKey_4294968068, 4294968069, B.LogicalKeyboardKey_4294968069, 4294968070, B.LogicalKeyboardKey_4294968070, 4294968071, B.LogicalKeyboardKey_4294968071, 4294968072, B.LogicalKeyboardKey_4294968072, 4294968321, B.LogicalKeyboardKey_4294968321, 4294968322, B.LogicalKeyboardKey_4294968322, 4294968323, B.LogicalKeyboardKey_4294968323, 4294968324, B.LogicalKeyboardKey_4294968324, 4294968325, B.LogicalKeyboardKey_4294968325, 4294968326, B.LogicalKeyboardKey_4294968326, 4294968327, B.LogicalKeyboardKey_4294968327, 4294968328, B.LogicalKeyboardKey_4294968328, 4294968329, B.LogicalKeyboardKey_4294968329, 4294968330, B.LogicalKeyboardKey_4294968330, 4294968577, B.LogicalKeyboardKey_4294968577, 4294968578, B.LogicalKeyboardKey_4294968578, 4294968579, B.LogicalKeyboardKey_4294968579, 4294968580, B.LogicalKeyboardKey_4294968580, 4294968581, B.LogicalKeyboardKey_4294968581, 4294968582, B.LogicalKeyboardKey_4294968582, 4294968583, B.LogicalKeyboardKey_4294968583, 4294968584, B.LogicalKeyboardKey_4294968584, 4294968585, B.LogicalKeyboardKey_4294968585, 4294968586, B.LogicalKeyboardKey_4294968586, 4294968587, B.LogicalKeyboardKey_4294968587, 4294968588, B.LogicalKeyboardKey_4294968588, 4294968589, B.LogicalKeyboardKey_4294968589, 4294968590, B.LogicalKeyboardKey_4294968590, 4294968833, B.LogicalKeyboardKey_4294968833, 4294968834, B.LogicalKeyboardKey_4294968834, 4294968835, B.LogicalKeyboardKey_4294968835, 4294968836, B.LogicalKeyboardKey_4294968836, 4294968837, B.LogicalKeyboardKey_4294968837, 4294968838, B.LogicalKeyboardKey_4294968838, 4294968839, B.LogicalKeyboardKey_4294968839, 4294968840, B.LogicalKeyboardKey_4294968840, 4294968841, B.LogicalKeyboardKey_4294968841, 4294968842, B.LogicalKeyboardKey_4294968842, 4294968843, B.LogicalKeyboardKey_4294968843, 4294969089, B.LogicalKeyboardKey_4294969089, 4294969090, B.LogicalKeyboardKey_4294969090, 4294969091, B.LogicalKeyboardKey_4294969091, 4294969092, B.LogicalKeyboardKey_4294969092, 4294969093, B.LogicalKeyboardKey_4294969093, 4294969094, B.LogicalKeyboardKey_4294969094, 4294969095, B.LogicalKeyboardKey_4294969095, 4294969096, B.LogicalKeyboardKey_4294969096, 4294969097, B.LogicalKeyboardKey_4294969097, 4294969098, B.LogicalKeyboardKey_4294969098, 4294969099, B.LogicalKeyboardKey_4294969099, 4294969100, B.LogicalKeyboardKey_4294969100, 4294969101, B.LogicalKeyboardKey_4294969101, 4294969102, B.LogicalKeyboardKey_4294969102, 4294969103, B.LogicalKeyboardKey_4294969103, 4294969104, B.LogicalKeyboardKey_4294969104, 4294969105, B.LogicalKeyboardKey_4294969105, 4294969106, B.LogicalKeyboardKey_4294969106, 4294969107, B.LogicalKeyboardKey_4294969107, 4294969108, B.LogicalKeyboardKey_4294969108, 4294969109, B.LogicalKeyboardKey_4294969109, 4294969110, B.LogicalKeyboardKey_4294969110, 4294969111, B.LogicalKeyboardKey_4294969111, 4294969112, B.LogicalKeyboardKey_4294969112, 4294969113, B.LogicalKeyboardKey_4294969113, 4294969114, B.LogicalKeyboardKey_4294969114, 4294969115, B.LogicalKeyboardKey_4294969115, 4294969116, B.LogicalKeyboardKey_4294969116, 4294969117, B.LogicalKeyboardKey_4294969117, 4294969345, B.LogicalKeyboardKey_4294969345, 4294969346, B.LogicalKeyboardKey_4294969346, 4294969347, B.LogicalKeyboardKey_4294969347, 4294969348, B.LogicalKeyboardKey_4294969348, 4294969349, B.LogicalKeyboardKey_4294969349, 4294969350, B.LogicalKeyboardKey_4294969350, 4294969351, B.LogicalKeyboardKey_4294969351, 4294969352, B.LogicalKeyboardKey_4294969352, 4294969353, B.LogicalKeyboardKey_4294969353, 4294969354, B.LogicalKeyboardKey_4294969354, 4294969355, B.LogicalKeyboardKey_4294969355, 4294969356, B.LogicalKeyboardKey_4294969356, 4294969357, B.LogicalKeyboardKey_4294969357, 4294969358, B.LogicalKeyboardKey_4294969358, 4294969359, B.LogicalKeyboardKey_4294969359, 4294969360, B.LogicalKeyboardKey_4294969360, 4294969361, B.LogicalKeyboardKey_4294969361, 4294969362, B.LogicalKeyboardKey_4294969362, 4294969363, B.LogicalKeyboardKey_4294969363, 4294969364, B.LogicalKeyboardKey_4294969364, 4294969365, B.LogicalKeyboardKey_4294969365, 4294969366, B.LogicalKeyboardKey_4294969366, 4294969367, B.LogicalKeyboardKey_4294969367, 4294969368, B.LogicalKeyboardKey_4294969368, 4294969601, B.LogicalKeyboardKey_4294969601, 4294969602, B.LogicalKeyboardKey_4294969602, 4294969603, B.LogicalKeyboardKey_4294969603, 4294969604, B.LogicalKeyboardKey_4294969604, 4294969605, B.LogicalKeyboardKey_4294969605, 4294969606, B.LogicalKeyboardKey_4294969606, 4294969607, B.LogicalKeyboardKey_4294969607, 4294969608, B.LogicalKeyboardKey_4294969608, 4294969857, B.LogicalKeyboardKey_4294969857, 4294969858, B.LogicalKeyboardKey_4294969858, 4294969859, B.LogicalKeyboardKey_4294969859, 4294969860, B.LogicalKeyboardKey_4294969860, 4294969861, B.LogicalKeyboardKey_4294969861, 4294969863, B.LogicalKeyboardKey_4294969863, 4294969864, B.LogicalKeyboardKey_4294969864, 4294969865, B.LogicalKeyboardKey_4294969865, 4294969866, B.LogicalKeyboardKey_4294969866, 4294969867, B.LogicalKeyboardKey_4294969867, 4294969868, B.LogicalKeyboardKey_4294969868, 4294969869, B.LogicalKeyboardKey_4294969869, 4294969870, B.LogicalKeyboardKey_4294969870, 4294969871, B.LogicalKeyboardKey_4294969871, 4294969872, B.LogicalKeyboardKey_4294969872, 4294969873, B.LogicalKeyboardKey_4294969873, 4294970113, B.LogicalKeyboardKey_4294970113, 4294970114, B.LogicalKeyboardKey_4294970114, 4294970115, B.LogicalKeyboardKey_4294970115, 4294970116, B.LogicalKeyboardKey_4294970116, 4294970117, B.LogicalKeyboardKey_4294970117, 4294970118, B.LogicalKeyboardKey_4294970118, 4294970119, B.LogicalKeyboardKey_4294970119, 4294970120, B.LogicalKeyboardKey_4294970120, 4294970121, B.LogicalKeyboardKey_4294970121, 4294970122, B.LogicalKeyboardKey_4294970122, 4294970123, B.LogicalKeyboardKey_4294970123, 4294970124, B.LogicalKeyboardKey_4294970124, 4294970125, B.LogicalKeyboardKey_4294970125, 4294970126, B.LogicalKeyboardKey_4294970126, 4294970127, B.LogicalKeyboardKey_4294970127, 4294970369, B.LogicalKeyboardKey_4294970369, 4294970370, B.LogicalKeyboardKey_4294970370, 4294970371, B.LogicalKeyboardKey_4294970371, 4294970372, B.LogicalKeyboardKey_4294970372, 4294970373, B.LogicalKeyboardKey_4294970373, 4294970374, B.LogicalKeyboardKey_4294970374, 4294970375, B.LogicalKeyboardKey_4294970375, 4294970625, B.LogicalKeyboardKey_4294970625, 4294970626, B.LogicalKeyboardKey_4294970626, 4294970627, B.LogicalKeyboardKey_4294970627, 4294970628, B.LogicalKeyboardKey_4294970628, 4294970629, B.LogicalKeyboardKey_4294970629, 4294970630, B.LogicalKeyboardKey_4294970630, 4294970631, B.LogicalKeyboardKey_4294970631, 4294970632, B.LogicalKeyboardKey_4294970632, 4294970633, B.LogicalKeyboardKey_4294970633, 4294970634, B.LogicalKeyboardKey_4294970634, 4294970635, B.LogicalKeyboardKey_4294970635, 4294970636, B.LogicalKeyboardKey_4294970636, 4294970637, B.LogicalKeyboardKey_4294970637, 4294970638, B.LogicalKeyboardKey_4294970638, 4294970639, B.LogicalKeyboardKey_4294970639, 4294970640, B.LogicalKeyboardKey_4294970640, 4294970641, B.LogicalKeyboardKey_4294970641, 4294970642, B.LogicalKeyboardKey_4294970642, 4294970643, B.LogicalKeyboardKey_4294970643, 4294970644, B.LogicalKeyboardKey_4294970644, 4294970645, B.LogicalKeyboardKey_4294970645, 4294970646, B.LogicalKeyboardKey_4294970646, 4294970647, B.LogicalKeyboardKey_4294970647, 4294970648, B.LogicalKeyboardKey_4294970648, 4294970649, B.LogicalKeyboardKey_4294970649, 4294970650, B.LogicalKeyboardKey_4294970650, 4294970651, B.LogicalKeyboardKey_4294970651, 4294970652, B.LogicalKeyboardKey_4294970652, 4294970653, B.LogicalKeyboardKey_4294970653, 4294970654, B.LogicalKeyboardKey_4294970654, 4294970655, B.LogicalKeyboardKey_4294970655, 4294970656, B.LogicalKeyboardKey_4294970656, 4294970657, B.LogicalKeyboardKey_4294970657, 4294970658, B.LogicalKeyboardKey_4294970658, 4294970659, B.LogicalKeyboardKey_4294970659, 4294970660, B.LogicalKeyboardKey_4294970660, 4294970661, B.LogicalKeyboardKey_4294970661, 4294970662, B.LogicalKeyboardKey_4294970662, 4294970663, B.LogicalKeyboardKey_4294970663, 4294970664, B.LogicalKeyboardKey_4294970664, 4294970665, B.LogicalKeyboardKey_4294970665, 4294970666, B.LogicalKeyboardKey_4294970666, 4294970667, B.LogicalKeyboardKey_4294970667, 4294970668, B.LogicalKeyboardKey_4294970668, 4294970669, B.LogicalKeyboardKey_4294970669, 4294970670, B.LogicalKeyboardKey_4294970670, 4294970671, B.LogicalKeyboardKey_4294970671, 4294970672, B.LogicalKeyboardKey_4294970672, 4294970673, B.LogicalKeyboardKey_4294970673, 4294970674, B.LogicalKeyboardKey_4294970674, 4294970675, B.LogicalKeyboardKey_4294970675, 4294970676, B.LogicalKeyboardKey_4294970676, 4294970677, B.LogicalKeyboardKey_4294970677, 4294970678, B.LogicalKeyboardKey_4294970678, 4294970679, B.LogicalKeyboardKey_4294970679, 4294970680, B.LogicalKeyboardKey_4294970680, 4294970681, B.LogicalKeyboardKey_4294970681, 4294970682, B.LogicalKeyboardKey_4294970682, 4294970683, B.LogicalKeyboardKey_4294970683, 4294970684, B.LogicalKeyboardKey_4294970684, 4294970685, B.LogicalKeyboardKey_4294970685, 4294970686, B.LogicalKeyboardKey_4294970686, 4294970687, B.LogicalKeyboardKey_4294970687, 4294970688, B.LogicalKeyboardKey_4294970688, 4294970689, B.LogicalKeyboardKey_4294970689, 4294970690, B.LogicalKeyboardKey_4294970690, 4294970691, B.LogicalKeyboardKey_4294970691, 4294970692, B.LogicalKeyboardKey_4294970692, 4294970693, B.LogicalKeyboardKey_4294970693, 4294970694, B.LogicalKeyboardKey_4294970694, 4294970695, B.LogicalKeyboardKey_4294970695, 4294970696, B.LogicalKeyboardKey_4294970696, 4294970697, B.LogicalKeyboardKey_4294970697, 4294970698, B.LogicalKeyboardKey_4294970698, 4294970699, B.LogicalKeyboardKey_4294970699, 4294970700, B.LogicalKeyboardKey_4294970700, 4294970701, B.LogicalKeyboardKey_4294970701, 4294970702, B.LogicalKeyboardKey_4294970702, 4294970703, B.LogicalKeyboardKey_4294970703, 4294970704, B.LogicalKeyboardKey_4294970704, 4294970705, B.LogicalKeyboardKey_4294970705, 4294970706, B.LogicalKeyboardKey_4294970706, 4294970707, B.LogicalKeyboardKey_4294970707, 4294970708, B.LogicalKeyboardKey_4294970708, 4294970709, B.LogicalKeyboardKey_4294970709, 4294970710, B.LogicalKeyboardKey_4294970710, 4294970711, B.LogicalKeyboardKey_4294970711, 4294970712, B.LogicalKeyboardKey_4294970712, 4294970713, B.LogicalKeyboardKey_4294970713, 4294970714, B.LogicalKeyboardKey_4294970714, 4294970715, B.LogicalKeyboardKey_4294970715, 4294970882, B.LogicalKeyboardKey_4294970882, 4294970884, B.LogicalKeyboardKey_4294970884, 4294970885, B.LogicalKeyboardKey_4294970885, 4294970886, B.LogicalKeyboardKey_4294970886, 4294970887, B.LogicalKeyboardKey_4294970887, 4294970888, B.LogicalKeyboardKey_4294970888, 4294970889, B.LogicalKeyboardKey_4294970889, 4294971137, B.LogicalKeyboardKey_4294971137, 4294971138, B.LogicalKeyboardKey_4294971138, 4294971393, B.LogicalKeyboardKey_4294971393, 4294971394, B.LogicalKeyboardKey_4294971394, 4294971395, B.LogicalKeyboardKey_4294971395, 4294971396, B.LogicalKeyboardKey_4294971396, 4294971397, B.LogicalKeyboardKey_4294971397, 4294971398, B.LogicalKeyboardKey_4294971398, 4294971399, B.LogicalKeyboardKey_4294971399, 4294971400, B.LogicalKeyboardKey_4294971400, 4294971401, B.LogicalKeyboardKey_4294971401, 4294971402, B.LogicalKeyboardKey_4294971402, 4294971403, B.LogicalKeyboardKey_4294971403, 4294971649, B.LogicalKeyboardKey_4294971649, 4294971650, B.LogicalKeyboardKey_4294971650, 4294971651, B.LogicalKeyboardKey_4294971651, 4294971652, B.LogicalKeyboardKey_4294971652, 4294971653, B.LogicalKeyboardKey_4294971653, 4294971654, B.LogicalKeyboardKey_4294971654, 4294971655, B.LogicalKeyboardKey_4294971655, 4294971656, B.LogicalKeyboardKey_4294971656, 4294971657, B.LogicalKeyboardKey_4294971657, 4294971658, B.LogicalKeyboardKey_4294971658, 4294971659, B.LogicalKeyboardKey_4294971659, 4294971660, B.LogicalKeyboardKey_4294971660, 4294971661, B.LogicalKeyboardKey_4294971661, 4294971662, B.LogicalKeyboardKey_4294971662, 4294971663, B.LogicalKeyboardKey_4294971663, 4294971664, B.LogicalKeyboardKey_4294971664, 4294971665, B.LogicalKeyboardKey_4294971665, 4294971666, B.LogicalKeyboardKey_4294971666, 4294971667, B.LogicalKeyboardKey_4294971667, 4294971668, B.LogicalKeyboardKey_4294971668, 4294971669, B.LogicalKeyboardKey_4294971669, 4294971670, B.LogicalKeyboardKey_4294971670, 4294971671, B.LogicalKeyboardKey_4294971671, 4294971672, B.LogicalKeyboardKey_4294971672, 4294971673, B.LogicalKeyboardKey_4294971673, 4294971674, B.LogicalKeyboardKey_4294971674, 4294971675, B.LogicalKeyboardKey_4294971675, 4294971905, B.LogicalKeyboardKey_4294971905, 4294971906, B.LogicalKeyboardKey_4294971906, 8589934592, B.LogicalKeyboardKey_8589934592, 8589934593, B.LogicalKeyboardKey_8589934593, 8589934594, B.LogicalKeyboardKey_8589934594, 8589934595, B.LogicalKeyboardKey_8589934595, 8589934608, B.LogicalKeyboardKey_8589934608, 8589934609, B.LogicalKeyboardKey_8589934609, 8589934610, B.LogicalKeyboardKey_8589934610, 8589934611, B.LogicalKeyboardKey_8589934611, 8589934612, B.LogicalKeyboardKey_8589934612, 8589934624, B.LogicalKeyboardKey_8589934624, 8589934625, B.LogicalKeyboardKey_8589934625, 8589934626, B.LogicalKeyboardKey_8589934626, 8589934848, B.LogicalKeyboardKey_8589934848, 8589934849, B.LogicalKeyboardKey_8589934849, 8589934850, B.LogicalKeyboardKey_8589934850, 8589934851, B.LogicalKeyboardKey_8589934851, 8589934852, B.LogicalKeyboardKey_8589934852, 8589934853, B.LogicalKeyboardKey_8589934853, 8589934854, B.LogicalKeyboardKey_8589934854, 8589934855, B.LogicalKeyboardKey_8589934855, 8589935088, B.LogicalKeyboardKey_8589935088, 8589935090, B.LogicalKeyboardKey_8589935090, 8589935092, B.LogicalKeyboardKey_8589935092, 8589935094, B.LogicalKeyboardKey_8589935094, 8589935117, B.LogicalKeyboardKey_8589935117, 8589935144, B.LogicalKeyboardKey_8589935144, 8589935145, B.LogicalKeyboardKey_8589935145, 8589935146, B.LogicalKeyboardKey_8589935146, 8589935147, B.LogicalKeyboardKey_8589935147, 8589935148, B.LogicalKeyboardKey_8589935148, 8589935149, B.LogicalKeyboardKey_8589935149, 8589935150, B.LogicalKeyboardKey_8589935150, 8589935151, B.LogicalKeyboardKey_8589935151, 8589935152, B.LogicalKeyboardKey_8589935152, 8589935153, B.LogicalKeyboardKey_8589935153, 8589935154, B.LogicalKeyboardKey_8589935154, 8589935155, B.LogicalKeyboardKey_8589935155, 8589935156, B.LogicalKeyboardKey_8589935156, 8589935157, B.LogicalKeyboardKey_8589935157, 8589935158, B.LogicalKeyboardKey_8589935158, 8589935159, B.LogicalKeyboardKey_8589935159, 8589935160, B.LogicalKeyboardKey_8589935160, 8589935161, B.LogicalKeyboardKey_8589935161, 8589935165, B.LogicalKeyboardKey_8589935165, 8589935361, B.LogicalKeyboardKey_8589935361, 8589935362, B.LogicalKeyboardKey_8589935362, 8589935363, B.LogicalKeyboardKey_8589935363, 8589935364, B.LogicalKeyboardKey_8589935364, 8589935365, B.LogicalKeyboardKey_8589935365, 8589935366, B.LogicalKeyboardKey_8589935366, 8589935367, B.LogicalKeyboardKey_8589935367, 8589935368, B.LogicalKeyboardKey_8589935368, 8589935369, B.LogicalKeyboardKey_8589935369, 8589935370, B.LogicalKeyboardKey_8589935370, 8589935371, B.LogicalKeyboardKey_8589935371, 8589935372, B.LogicalKeyboardKey_8589935372, 8589935373, B.LogicalKeyboardKey_8589935373, 8589935374, B.LogicalKeyboardKey_8589935374, 8589935375, B.LogicalKeyboardKey_8589935375, 8589935376, B.LogicalKeyboardKey_8589935376, 8589935377, B.LogicalKeyboardKey_8589935377, 8589935378, B.LogicalKeyboardKey_8589935378, 8589935379, B.LogicalKeyboardKey_8589935379, 8589935380, B.LogicalKeyboardKey_8589935380, 8589935381, B.LogicalKeyboardKey_8589935381, 8589935382, B.LogicalKeyboardKey_8589935382, 8589935383, B.LogicalKeyboardKey_8589935383, 8589935384, B.LogicalKeyboardKey_8589935384, 8589935385, B.LogicalKeyboardKey_8589935385, 8589935386, B.LogicalKeyboardKey_8589935386, 8589935387, B.LogicalKeyboardKey_8589935387, 8589935388, B.LogicalKeyboardKey_8589935388, 8589935389, B.LogicalKeyboardKey_8589935389, 8589935390, B.LogicalKeyboardKey_8589935390, 8589935391, B.LogicalKeyboardKey_8589935391], A.findType("GeneralConstantMap")); B.List_li_dt_dd = A._setArrayType(makeConstList(["li", "dt", "dd"]), type$.JSArray_legacy_String); B.List_li = A._setArrayType(makeConstList(["li"]), type$.JSArray_legacy_String); B.List_dt_dd = A._setArrayType(makeConstList(["dt", "dd"]), type$.JSArray_legacy_String); B.Map_q1wwi = new A.ConstantStringMap(3, {li: B.List_li, dt: B.List_dt_dd, dd: B.List_dt_dd}, B.List_li_dt_dd, A.findType("ConstantStringMap*>")); B.List_qBb = A._setArrayType(makeConstList(["1", "2", "3", "4"]), type$.JSArray_legacy_String); B.Map_qBa3g = new A.ConstantStringMap(4, {"1": "draft", "2": "sent", "3": "partial", "4": "applied"}, B.List_qBb, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_soKdN = new A.ConstantStringMap(7, {sidebar_active_background_color: "#2F2E2E", sidebar_active_font_color: "#FFFFFF", sidebar_inactive_background_color: "#454544", sidebar_inactive_font_color: "#FFFFFF", invoice_header_background_color: "#777777", invoice_header_font_color: "#FFFFFF", table_alternate_row_background_color: "#F9F9F9"}, B.List_soA, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_tO30 = A._setArrayType(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]), type$.JSArray_legacy_String); B.Map_tOd65 = new A.ConstantStringMap(12, {"1": "january", "2": "february", "3": "march", "4": "april", "5": "may", "6": "june", "7": "july", "8": "august", "9": "september", "10": "october", "11": "november", "12": "december"}, B.List_tO30, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_tOn4d = new A.ConstantStringMap(12, {"1": "freq_daily", "2": "freq_weekly", "3": "freq_two_weeks", "4": "freq_four_weeks", "5": "freq_monthly", "6": "freq_two_months", "7": "freq_three_months", "8": "freq_four_months", "9": "freq_six_months", "10": "freq_annually", "11": "freq_two_years", "12": "freq_three_years"}, B.List_tO30, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.List_wEo4 = A._setArrayType(makeConstList(["437", "850", "852", "855", "857", "860", "861", "862", "863", "865", "866", "869", "ansix341968", "ansix341986", "arabic", "ascii", "asmo708", "big5", "big5hkscs", "chinese", "cp037", "cp1026", "cp154", "cp367", "cp424", "cp437", "cp500", "cp775", "cp819", "cp850", "cp852", "cp855", "cp857", "cp860", "cp861", "cp862", "cp863", "cp864", "cp865", "cp866", "cp869", "cp936", "cpgr", "cpis", "csascii", "csbig5", "cseuckr", "cseucpkdfmtjapanese", "csgb2312", "cshproman8", "csibm037", "csibm1026", "csibm424", "csibm500", "csibm855", "csibm857", "csibm860", "csibm861", "csibm863", "csibm864", "csibm865", "csibm866", "csibm869", "csiso2022jp", "csiso2022jp2", "csiso2022kr", "csiso58gb231280", "csisolatin1", "csisolatin2", "csisolatin3", "csisolatin4", "csisolatin5", "csisolatin6", "csisolatinarabic", "csisolatincyrillic", "csisolatingreek", "csisolatinhebrew", "cskoi8r", "csksc56011987", "cspc775baltic", "cspc850multilingual", "cspc862latinhebrew", "cspc8codepage437", "cspcp852", "csptcp154", "csshiftjis", "csunicode11utf7", "cyrillic", "cyrillicasian", "ebcdiccpbe", "ebcdiccpca", "ebcdiccpch", "ebcdiccphe", "ebcdiccpnl", "ebcdiccpus", "ebcdiccpwt", "ecma114", "ecma118", "elot928", "eucjp", "euckr", "extendedunixcodepackedformatforjapanese", "gb18030", "gb2312", "gb231280", "gbk", "greek", "greek8", "hebrew", "hproman8", "hzgb2312", "ibm037", "ibm1026", "ibm367", "ibm424", "ibm437", "ibm500", "ibm775", "ibm819", "ibm850", "ibm852", "ibm855", "ibm857", "ibm860", "ibm861", "ibm862", "ibm863", "ibm864", "ibm865", "ibm866", "ibm869", "iso2022jp", "iso2022jp2", "iso2022kr", "iso646irv1991", "iso646us", "iso88591", "iso885910", "iso8859101992", "iso885911987", "iso885913", "iso885914", "iso8859141998", "iso885915", "iso885916", "iso8859162001", "iso88592", "iso885921987", "iso88593", "iso885931988", "iso88594", "iso885941988", "iso88595", "iso885951988", "iso88596", "iso885961987", "iso88597", "iso885971987", "iso88598", "iso885981988", "iso88599", "iso885991989", "isoceltic", "isoir100", "isoir101", "isoir109", "isoir110", "isoir126", "isoir127", "isoir138", "isoir144", "isoir148", "isoir149", "isoir157", "isoir199", "isoir226", "isoir58", "isoir6", "koi8r", "koi8u", "korean", "ksc5601", "ksc56011987", "ksc56011989", "l1", "l10", "l2", "l3", "l4", "l5", "l6", "l8", "latin1", "latin10", "latin2", "latin3", "latin4", "latin5", "latin6", "latin8", "latin9", "ms936", "mskanji", "pt154", "ptcp154", "r8", "roman8", "shiftjis", "tis620", "unicode11utf7", "us", "usascii", "utf16", "utf16be", "utf16le", "utf8", "windows1250", "windows1251", "windows1252", "windows1253", "windows1254", "windows1255", "windows1256", "windows1257", "windows1258", "windows936", "x-x-big5"]), type$.JSArray_legacy_String); B.Map_wEdnB = new A.ConstantStringMap(227, {"437": "cp437", "850": "cp850", "852": "cp852", "855": "cp855", "857": "cp857", "860": "cp860", "861": "cp861", "862": "cp862", "863": "cp863", "865": "cp865", "866": "cp866", "869": "cp869", ansix341968: "ascii", ansix341986: "ascii", arabic: "iso8859-6", ascii: "ascii", asmo708: "iso8859-6", big5: "big5", big5hkscs: "big5hkscs", chinese: "gbk", cp037: "cp037", cp1026: "cp1026", cp154: "ptcp154", cp367: "ascii", cp424: "cp424", cp437: "cp437", cp500: "cp500", cp775: "cp775", cp819: "windows-1252", cp850: "cp850", cp852: "cp852", cp855: "cp855", cp857: "cp857", cp860: "cp860", cp861: "cp861", cp862: "cp862", cp863: "cp863", cp864: "cp864", cp865: "cp865", cp866: "cp866", cp869: "cp869", cp936: "gbk", cpgr: "cp869", cpis: "cp861", csascii: "ascii", csbig5: "big5", cseuckr: "cp949", cseucpkdfmtjapanese: "euc_jp", csgb2312: "gbk", cshproman8: "hp-roman8", csibm037: "cp037", csibm1026: "cp1026", csibm424: "cp424", csibm500: "cp500", csibm855: "cp855", csibm857: "cp857", csibm860: "cp860", csibm861: "cp861", csibm863: "cp863", csibm864: "cp864", csibm865: "cp865", csibm866: "cp866", csibm869: "cp869", csiso2022jp: "iso2022_jp", csiso2022jp2: "iso2022_jp_2", csiso2022kr: "iso2022_kr", csiso58gb231280: "gbk", csisolatin1: "windows-1252", csisolatin2: "iso8859-2", csisolatin3: "iso8859-3", csisolatin4: "iso8859-4", csisolatin5: "windows-1254", csisolatin6: "iso8859-10", csisolatinarabic: "iso8859-6", csisolatincyrillic: "iso8859-5", csisolatingreek: "iso8859-7", csisolatinhebrew: "iso8859-8", cskoi8r: "koi8-r", csksc56011987: "cp949", cspc775baltic: "cp775", cspc850multilingual: "cp850", cspc862latinhebrew: "cp862", cspc8codepage437: "cp437", cspcp852: "cp852", csptcp154: "ptcp154", csshiftjis: "shift_jis", csunicode11utf7: "utf-7", cyrillic: "iso8859-5", cyrillicasian: "ptcp154", ebcdiccpbe: "cp500", ebcdiccpca: "cp037", ebcdiccpch: "cp500", ebcdiccphe: "cp424", ebcdiccpnl: "cp037", ebcdiccpus: "cp037", ebcdiccpwt: "cp037", ecma114: "iso8859-6", ecma118: "iso8859-7", elot928: "iso8859-7", eucjp: "euc_jp", euckr: "cp949", extendedunixcodepackedformatforjapanese: "euc_jp", gb18030: "gb18030", gb2312: "gbk", gb231280: "gbk", gbk: "gbk", greek: "iso8859-7", greek8: "iso8859-7", hebrew: "iso8859-8", hproman8: "hp-roman8", hzgb2312: "hz", ibm037: "cp037", ibm1026: "cp1026", ibm367: "ascii", ibm424: "cp424", ibm437: "cp437", ibm500: "cp500", ibm775: "cp775", ibm819: "windows-1252", ibm850: "cp850", ibm852: "cp852", ibm855: "cp855", ibm857: "cp857", ibm860: "cp860", ibm861: "cp861", ibm862: "cp862", ibm863: "cp863", ibm864: "cp864", ibm865: "cp865", ibm866: "cp866", ibm869: "cp869", iso2022jp: "iso2022_jp", iso2022jp2: "iso2022_jp_2", iso2022kr: "iso2022_kr", iso646irv1991: "ascii", iso646us: "ascii", iso88591: "windows-1252", iso885910: "iso8859-10", iso8859101992: "iso8859-10", iso885911987: "windows-1252", iso885913: "iso8859-13", iso885914: "iso8859-14", iso8859141998: "iso8859-14", iso885915: "iso8859-15", iso885916: "iso8859-16", iso8859162001: "iso8859-16", iso88592: "iso8859-2", iso885921987: "iso8859-2", iso88593: "iso8859-3", iso885931988: "iso8859-3", iso88594: "iso8859-4", iso885941988: "iso8859-4", iso88595: "iso8859-5", iso885951988: "iso8859-5", iso88596: "iso8859-6", iso885961987: "iso8859-6", iso88597: "iso8859-7", iso885971987: "iso8859-7", iso88598: "iso8859-8", iso885981988: "iso8859-8", iso88599: "windows-1254", iso885991989: "windows-1254", isoceltic: "iso8859-14", isoir100: "windows-1252", isoir101: "iso8859-2", isoir109: "iso8859-3", isoir110: "iso8859-4", isoir126: "iso8859-7", isoir127: "iso8859-6", isoir138: "iso8859-8", isoir144: "iso8859-5", isoir148: "windows-1254", isoir149: "cp949", isoir157: "iso8859-10", isoir199: "iso8859-14", isoir226: "iso8859-16", isoir58: "gbk", isoir6: "ascii", koi8r: "koi8-r", koi8u: "koi8-u", korean: "cp949", ksc5601: "cp949", ksc56011987: "cp949", ksc56011989: "cp949", l1: "windows-1252", l10: "iso8859-16", l2: "iso8859-2", l3: "iso8859-3", l4: "iso8859-4", l5: "windows-1254", l6: "iso8859-10", l8: "iso8859-14", latin1: "windows-1252", latin10: "iso8859-16", latin2: "iso8859-2", latin3: "iso8859-3", latin4: "iso8859-4", latin5: "windows-1254", latin6: "iso8859-10", latin8: "iso8859-14", latin9: "iso8859-15", ms936: "gbk", mskanji: "shift_jis", pt154: "ptcp154", ptcp154: "ptcp154", r8: "hp-roman8", roman8: "hp-roman8", shiftjis: "shift_jis", tis620: "cp874", unicode11utf7: "utf-7", us: "ascii", usascii: "ascii", utf16: "utf-16", utf16be: "utf-16-be", utf16le: "utf-16-le", utf8: "utf-8", windows1250: "cp1250", windows1251: "cp1251", windows1252: "cp1252", windows1253: "cp1253", windows1254: "cp1254", windows1255: "cp1255", windows1256: "cp1256", windows1257: "cp1257", windows1258: "cp1258", windows936: "gbk", "x-x-big5": "big5"}, B.List_wEo4, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_yXAeS = new A.GeneralConstantMap([0, "FontWeight.w100", 1, "FontWeight.w200", 2, "FontWeight.w300", 3, "FontWeight.w400", 4, "FontWeight.w500", 5, "FontWeight.w600", 6, "FontWeight.w700", 7, "FontWeight.w800", 8, "FontWeight.w900"], type$.GeneralConstantMap_of_legacy_int_and_legacy_String); B.SingleActivator_mmH = new A.SingleActivator(B.LogicalKeyboardKey_32, false, false, false, false); B.SingleActivator_soA = new A.SingleActivator(B.LogicalKeyboardKey_8589935117, false, false, false, false); B.SingleActivator_Qwp = new A.SingleActivator(B.LogicalKeyboardKey_4294967323, false, false, false, false); B.SingleActivator_gc60 = new A.SingleActivator(B.LogicalKeyboardKey_4294967305, false, false, false, false); B.SingleActivator_gc61 = new A.SingleActivator(B.LogicalKeyboardKey_4294967305, false, true, false, false); B.SingleActivator_4MF = new A.SingleActivator(B.LogicalKeyboardKey_4294968072, false, false, false, false); B.SingleActivator_j8H33 = new A.SingleActivator(B.LogicalKeyboardKey_4294968071, false, false, false, false); B.C_PrioritizedIntents = new A.PrioritizedIntents(); B.C_ButtonActivateIntent = new A.ButtonActivateIntent(); B.C_DismissIntent = new A.DismissIntent(); B.C_PreviousFocusIntent = new A.PreviousFocusIntent(); B.ScrollIncrementType_0 = new A.ScrollIncrementType(0, "line"); B.ScrollIntent_ssH = new A.ScrollIntent(B.AxisDirection_0, B.ScrollIncrementType_0); B.ScrollIntent_cKo = new A.ScrollIntent(B.AxisDirection_2, B.ScrollIncrementType_0); B.ScrollIntent_qNW = new A.ScrollIntent(B.AxisDirection_3, B.ScrollIncrementType_0); B.ScrollIntent_wij = new A.ScrollIntent(B.AxisDirection_1, B.ScrollIncrementType_0); B.ScrollIntent_qxw = new A.ScrollIntent(B.AxisDirection_0, B.ScrollIncrementType_1); B.Map_zPybB = new A.GeneralConstantMap([B.SingleActivator_mmH, B.C_PrioritizedIntents, B.SingleActivator_gc6, B.C_ButtonActivateIntent, B.SingleActivator_soA, B.C_ButtonActivateIntent, B.SingleActivator_Qwp, B.C_DismissIntent, B.SingleActivator_gc60, B.C_NextFocusIntent, B.SingleActivator_gc61, B.C_PreviousFocusIntent, B.SingleActivator_j8H10, B.ScrollIntent_ssH, B.SingleActivator_j8H7, B.ScrollIntent_cKo, B.SingleActivator_j8H8, B.ScrollIntent_qNW, B.SingleActivator_j8H9, B.ScrollIntent_wij, B.SingleActivator_4MF, B.ScrollIntent_qxw, B.SingleActivator_j8H33, B.ScrollIntent_KrF], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.MarginSpec_null_null_null_50 = new A.MarginSpec(null, null, null, 50); B.Color_4294937216 = new A.Color(4294937216); B.Color_4294922834 = new A.Color(4294922834); B.Color_4294907716 = new A.Color(4294907716); B.Color_4292149248 = new A.Color(4292149248); B.Map_iTECn = new A.GeneralConstantMap([100, B.Color_4294937216, 200, B.Color_4294922834, 400, B.Color_4294907716, 700, B.Color_4292149248], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialAccentColor_Map_iTECn_4294922834 = new A.MaterialAccentColor(B.Map_iTECn, 4294922834); B.Color_4294955392 = new A.Color(4294955392); B.Color_4294945600 = new A.Color(4294945600); B.Color_4294938880 = new A.Color(4294938880); B.Color_4294929664 = new A.Color(4294929664); B.Map_iTsEs = new A.GeneralConstantMap([100, B.Color_4294955392, 200, B.Color_4294945600, 400, B.Color_4294938880, 700, B.Color_4294929664], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialAccentColor_Map_iTsEs_4294945600 = new A.MaterialAccentColor(B.Map_iTsEs, 4294945600); B.Color_4286634239 = new A.Color(4286634239); B.Color_4282434815 = new A.Color(4282434815); B.Color_4278235391 = new A.Color(4278235391); B.Color_4278227434 = new A.Color(4278227434); B.Map_iTyLX = new A.GeneralConstantMap([100, B.Color_4286634239, 200, B.Color_4282434815, 400, B.Color_4278235391, 700, B.Color_4278227434], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialAccentColor_Map_iTyLX_4282434815 = new A.MaterialAccentColor(B.Map_iTyLX, 4282434815); B.MaterialBannerThemeData_6JY = new A.MaterialBannerThemeData(null, null, null, null, null); B.Color_4292269782 = new A.Color(4292269782); B.Map_HFpTk = new A.GeneralConstantMap([50, B.Color_4294638330, 100, B.Color_4294309365, 200, B.Color_4293848814, 300, B.Color_4292927712, 350, B.Color_4292269782, 400, B.Color_4290624957, 500, B.Color_4288585374, 600, B.Color_4285887861, 700, B.Color_4284572001, 800, B.Color_4282532418, 850, B.Color_4281348144, 900, B.Color_4280361249], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); B.MaterialColor_Map_HFpTk_4288585374 = new A.MaterialColor(B.Map_HFpTk, 4288585374); B.MaterialScrollBehavior_null = new A.MaterialScrollBehavior(null); B.MaterialState_0 = new A.MaterialState(0, "hovered"); B.MaterialState_1 = new A.MaterialState(1, "focused"); B.MaterialState_2 = new A.MaterialState(2, "pressed"); B.MaterialState_3 = new A.MaterialState(3, "dragged"); B.MaterialState_4 = new A.MaterialState(4, "selected"); B.MaterialState_5 = new A.MaterialState(5, "scrolledUnder"); B.MaterialState_6 = new A.MaterialState(6, "disabled"); B.MaterialState_7 = new A.MaterialState(7, "error"); B.MaterialTapTargetSize_0 = new A.MaterialTapTargetSize(0, "padded"); B.MaterialTapTargetSize_1 = new A.MaterialTapTargetSize(1, "shrinkWrap"); B.MaxLengthEnforcement_0 = new A.MaxLengthEnforcement(0, "none"); B.MaxLengthEnforcement_1 = new A.MaxLengthEnforcement(1, "enforced"); B.MaxLengthEnforcement_2 = new A.MaxLengthEnforcement(2, "truncateAfterCompositionEnds"); B.MaxWidthStrategy_1 = new A.MaxWidthStrategy(1, "ellipsize"); B.MethodCall_popRoute_null = new A.MethodCall("popRoute", null); B.MethodChannel_EYo = new A.MethodChannel("plugins.flutter.io/url_launcher", B.C_StandardMethodCodec, null); B.MethodChannel_KDg = new A.MethodChannel("flutter.baseflow.com/permissions/methods", B.C_StandardMethodCodec, null); B.MethodChannel_Kf8 = new A.MethodChannel("plugins.flutter.io/google_sign_in", B.C_StandardMethodCodec, null); B.MethodChannel_NIe = new A.MethodChannel("flutter/service_worker", B.C_StandardMethodCodec, null); B.MethodChannel_OTL = new A.MethodChannel("plugins.flutter.io/path_provider", B.C_StandardMethodCodec, null); B.MethodChannel_U8c = new A.MethodChannel("plugins.hunghd.vn/image_cropper", B.C_StandardMethodCodec, null); B.MethodChannel_YQ9 = new A.MethodChannel("plugins.flutter.io/shared_preferences", B.C_StandardMethodCodec, null); B.MethodChannel_eVZ = new A.MethodChannel("plugins.flutter.io/image_picker", B.C_StandardMethodCodec, null); B.MethodChannel_fP4 = new A.MethodChannel("com.aboutyou.dart_packages.sign_in_with_apple", B.C_StandardMethodCodec, null); B.MethodChannel_jZA = new A.MethodChannel("plugins.flutter.io/local_auth", B.C_StandardMethodCodec, null); B.MethodChannel_mHe = new A.MethodChannel("net.nfet.printing", B.C_StandardMethodCodec, null); B.MethodChannel_qdG = new A.MethodChannel("flutter/platform_views", B.C_StandardMethodCodec, null); B.ModuleLayout_list = new A.ModuleLayout("list"); B.ModuleLayout_table = new A.ModuleLayout("table"); B.MovementModifier_line = new A.MovementModifier("line"); B.MovementModifier_word = new A.MovementModifier("word"); B.MutatorType_0 = new A.MutatorType(0, "clipRect"); B.MutatorType_1 = new A.MutatorType(1, "clipRRect"); B.MutatorType_2 = new A.MutatorType(2, "clipPath"); B.MutatorType_3 = new A.MutatorType(3, "transform"); B.MutatorType_4 = new A.MutatorType(4, "opacity"); B.NamedAttribution_blockquote = new A.NamedAttribution("blockquote"); B.NamedAttribution_header1 = new A.NamedAttribution("header1"); B.NamedAttribution_header2 = new A.NamedAttribution("header2"); B.NamedAttribution_header3 = new A.NamedAttribution("header3"); B.NamedAttribution_header4 = new A.NamedAttribution("header4"); B.NamedAttribution_header5 = new A.NamedAttribution("header5"); B.NamedAttribution_header6 = new A.NamedAttribution("header6"); B.NamedAttribution_horizontalRule = new A.NamedAttribution("horizontalRule"); B.NamedAttribution_image = new A.NamedAttribution("image"); B.NamedAttribution_listItem = new A.NamedAttribution("listItem"); B.NamedAttribution_paragraph = new A.NamedAttribution("paragraph"); B.NamedAttribution_underline = new A.NamedAttribution("underline"); B.NavigationBarThemeData_j8H = new A.NavigationBarThemeData(null, null, null, null, null, null, null, null); B.NavigationMode_0 = new A.NavigationMode(0, "traditional"); B.NavigationRailThemeData_4G2 = new A.NavigationRailThemeData(null, null, null, null, null, null, null, null, null, null, null, null); B.NeverScrollableScrollPhysics_null = new A.NeverScrollableScrollPhysics(null); B.OffsetPair_G6F = new A.OffsetPair(B.Offset_0_0, B.Offset_0_0); B.Offset_0 = new A.Offset(-0.5, -0.5); B.Offset_0_m72 = new A.Offset(0, -72); B.Offset_11_m4 = new A.Offset(11, -4); B.Offset_1_2 = new A.Offset(1, 2); B.Offset_22_0 = new A.Offset(22, 0); B.Offset_6_6 = new A.Offset(6, 6); B.Offset_6pl = new A.Offset(5, 10.5); B.Offset_9_9 = new A.Offset(9, 9); B.Offset_Gl7 = new A.Offset(14.4, 9); B.Offset_L9C = new A.Offset(17976931348623157e292, 0); B.Offset_MNd = new A.Offset(0, -0.25); B.Offset_Oho = new A.Offset(-0.5, 0); B.Offset_Oho0 = new A.Offset(-0.3333333333333333, 0); B.Offset_W7v = new A.Offset(2.6999999999999997, 8.1); B.Offset_aNU = new A.Offset(3.6, 9); B.Offset_chs = new A.Offset(0, 0.25); B.Offset_gPO = new A.Offset(7.2, 12.6); B.Offset_m4_m6 = new A.Offset(-4, -6); B.Offset_m5_0 = new A.Offset(-5, 0); B.Offset_oIk = new A.Offset(15.299999999999999, 4.5); B.Offset_omC = new A.Offset(-0.5, -1.4); B.OperatingSystem_0 = new A.OperatingSystem(0, "iOs"); B.OperatingSystem_1 = new A.OperatingSystem(1, "android"); B.OperatingSystem_2 = new A.OperatingSystem(2, "linux"); B.OperatingSystem_3 = new A.OperatingSystem(3, "windows"); B.OperatingSystem_4 = new A.OperatingSystem(4, "macOs"); B.OperatingSystem_5 = new A.OperatingSystem(5, "unknown"); B.OptionalMethodChannel_0 = new A.OptionalMethodChannel("flutter/platform", B.C_JSONMethodCodec0, null); B.OptionalMethodChannel_4Up = new A.OptionalMethodChannel("flutter/mousecursor", B.C_StandardMethodCodec, null); B.OptionalMethodChannel_AWk = new A.OptionalMethodChannel("flutter/menu", B.C_StandardMethodCodec, null); B.OptionalMethodChannel_L9J = new A.OptionalMethodChannel("flutter/textinput", B.C_JSONMethodCodec0, null); B.OptionalMethodChannel_qNA = new A.OptionalMethodChannel("flutter/navigation", B.C_JSONMethodCodec0, null); B.OptionalMethodChannel_wEo = new A.OptionalMethodChannel("flutter/restoration", B.C_StandardMethodCodec, null); B.OrdinalSortKey_0_null = new A.OrdinalSortKey(0, null); B.OrdinalSortKey_1_null = new A.OrdinalSortKey(1, null); B.Orientation_0 = new A.Orientation(0, "portrait"); B.Orientation_1 = new A.Orientation(1, "landscape"); B.BorderSide_27z0 = new A.BorderSide(B.Color_0, 1, B.BorderStyle_1); B.OutlineInputBorder_Fb0 = new A.OutlineInputBorder(4, B.BorderRadius_tLn0, B.BorderSide_27z0); B.OutlinedButtonThemeData_null = new A.OutlinedButtonThemeData(null); B.OutsideJustification_0 = new A.OutsideJustification(0, "startDrawArea"); B.OutsideJustification_1 = new A.OutsideJustification(1, "start"); B.OutsideJustification_3 = new A.OutsideJustification(3, "middle"); B.OutsideJustification_4 = new A.OutsideJustification(4, "endDrawArea"); B.OutsideJustification_5 = new A.OutsideJustification(5, "end"); B.OverflowBarAlignment_0 = new A.OverflowBarAlignment(0, "start"); B.OverflowBarAlignment_1 = new A.OverflowBarAlignment(1, "end"); B.OverflowViewLayoutBehavior_0 = new A.OverflowViewLayoutBehavior(0, "fixed"); B.OverflowViewLayoutBehavior_1 = new A.OverflowViewLayoutBehavior(1, "flexible"); B.EdgeInsets_18_18_18_18 = new A.EdgeInsets(18, 18, 18, 18); B.Padding_ES6 = new A.Padding(B.EdgeInsets_18_18_18_18, B.Divider_null_null_null_null, null); B.EdgeInsets_0_24_0_24 = new A.EdgeInsets(0, 24, 0, 24); B.Padding_pwt = new A.Padding(B.EdgeInsets_0_24_0_24, B.Center_mtF, null); B.PageScrollPhysics_null = new A.PageScrollPhysics(null); B.C_CupertinoPageTransitionsBuilder = new A.CupertinoPageTransitionsBuilder(); B.Map_DVCx1 = new A.GeneralConstantMap([B.TargetPlatform_0, B.C_ZoomPageTransitionsBuilder, B.TargetPlatform_2, B.C_CupertinoPageTransitionsBuilder, B.TargetPlatform_4, B.C_CupertinoPageTransitionsBuilder], A.findType("GeneralConstantMap")); B.PageTransitionsTheme_Map_DVCx1 = new A.PageTransitionsTheme(B.Map_DVCx1); B.PaintingStyle_0 = new A.PaintingStyle(0, "fill"); B.PaintingStyle_1 = new A.PaintingStyle(1, "stroke"); B.ParagraphConstraints_C5f = new A.ParagraphConstraints(1 / 0); B.PathFillType_0 = new A.PathFillType(0, "nonZero"); B.PathFillType_1 = new A.PathFillType(1, "evenOdd"); B.PermissionStatus_0 = new A.PermissionStatus0(0, "denied"); B.PermissionStatus_1 = new A.PermissionStatus0(1, "granted"); B.PermissionStatus_2 = new A.PermissionStatus0(2, "restricted"); B.PermissionStatus_3 = new A.PermissionStatus0(3, "limited"); B.PermissionStatus_4 = new A.PermissionStatus0(4, "permanentlyDenied"); B.PersistedSurfaceState_0 = new A.PersistedSurfaceState(0, "created"); B.PersistedSurfaceState_1 = new A.PersistedSurfaceState(1, "active"); B.PersistedSurfaceState_2 = new A.PersistedSurfaceState(2, "pendingRetention"); B.PersistedSurfaceState_3 = new A.PersistedSurfaceState(3, "pendingUpdate"); B.PersistedSurfaceState_4 = new A.PersistedSurfaceState(4, "released"); B.FileStorage_auth_state = new A.FileStorage("auth_state"); B.PersistenceRepository_FileStorage_auth_state = new A.PersistenceRepository(B.FileStorage_auth_state); B.FileStorage_static_state = new A.FileStorage("static_state"); B.PersistenceRepository_FileStorage_static_state = new A.PersistenceRepository(B.FileStorage_static_state); B.FileStorage_ui_state = new A.FileStorage("ui_state"); B.PersistenceRepository_FileStorage_ui_state = new A.PersistenceRepository(B.FileStorage_ui_state); B.PersistentHeaderShowOnScreenConfiguration_QA5 = new A.PersistentHeaderShowOnScreenConfiguration(1 / 0); B.PixelFormat_0 = new A.PixelFormat(0, "rgba8888"); B.PlaceholderAlignment_4 = new A.PlaceholderAlignment(4, "bottom"); B.PlaceholderDimensions_8eb = new A.PlaceholderDimensions(B.Size_0_0, null, null); B.Placeholder_Color_4282735204_null = new A.Placeholder(B.Color_4282735204, null); B.PlatformViewHitTestBehavior_0 = new A.PlatformViewHitTestBehavior(0, "opaque"); B.PlatformViewHitTestBehavior_2 = new A.PlatformViewHitTestBehavior(2, "transparent"); B.PluralCase_0 = new A.PluralCase(0, "ZERO"); B.PluralCase_1 = new A.PluralCase(1, "ONE"); B.PluralCase_2 = new A.PluralCase(2, "TWO"); B.PluralCase_3 = new A.PluralCase(3, "FEW"); B.PluralCase_4 = new A.PluralCase(4, "MANY"); B.PluralCase_5 = new A.PluralCase(5, "OTHER"); B.PointerChange_0 = new A.PointerChange(0, "cancel"); B.PointerChange_1 = new A.PointerChange(1, "add"); B.PointerChange_2 = new A.PointerChange(2, "remove"); B.PointerChange_3 = new A.PointerChange(3, "hover"); B.PointerChange_4 = new A.PointerChange(4, "down"); B.PointerChange_5 = new A.PointerChange(5, "move"); B.PointerChange_6 = new A.PointerChange(6, "up"); B.PointerDeviceKind_0 = new A.PointerDeviceKind(0, "touch"); B.PointerDeviceKind_1 = new A.PointerDeviceKind(1, "mouse"); B.PointerDeviceKind_2 = new A.PointerDeviceKind(2, "stylus"); B.PointerDeviceKind_3 = new A.PointerDeviceKind(3, "invertedStylus"); B.PointerDeviceKind_5 = new A.PointerDeviceKind(5, "unknown"); B.PointerSignalKind_0 = new A.PointerSignalKind(0, "none"); B.PointerSignalKind_1 = new A.PointerSignalKind(1, "scroll"); B.PointerSignalKind_2 = new A.PointerSignalKind(2, "unknown"); B.PopupMenuPosition_0 = new A.PopupMenuPosition(0, "over"); B.PopupMenuThemeData_rs3 = new A.PopupMenuThemeData(null, null, null, null, null, null); B.PrintingInfo_XjJ = new A.PrintingInfo(false, false, false, false, false, false, false); B.Priority_100000 = new A.Priority(100000); B.ProgressIndicatorThemeData_Z49 = new A.ProgressIndicatorThemeData(null, null, null, null, null); B.QrCodeElement_0 = new A.QrCodeElement(0, "finderPatternOuter"); B.QrCodeElement_1 = new A.QrCodeElement(1, "finderPatternInner"); B.QrCodeElement_2 = new A.QrCodeElement(2, "finderPatternDot"); B.QrCodeElement_3 = new A.QrCodeElement(3, "codePixel"); B.QrCodeElement_4 = new A.QrCodeElement(4, "codePixelEmpty"); B.QrValidationStatus_0 = new A.QrValidationStatus(0, "valid"); B.QrValidationStatus_1 = new A.QrValidationStatus(1, "contentTooLong"); B.QrValidationStatus_2 = new A.QrValidationStatus(2, "error"); B.RadioThemeData_gDe = new A.RadioThemeData(null, null, null, null, null, null); B.Radius_1_1 = new A.Radius(1, 1); B.Radius_2Vk = new A.Radius(15.5, 15.5); B.Radius_7_7 = new A.Radius(7, 7); B.Radius_ydE = new A.Radius(1.5, 1.5); B.RangeBandType_0 = new A.RangeBandType(0, "none"); B.RangeBandConfig_RangeBandType_0_0 = new A.RangeBandConfig(B.RangeBandType_0, 0); B.RangeBandType_2 = new A.RangeBandType(2, "fixedDomain"); B.RangeBandType_4 = new A.RangeBandType(4, "styleAssignedPercentOfStep"); B.Rect_Vy7 = new A.Rect(-1 / 0, -1 / 0, 1 / 0, 1 / 0); B.Rect_aha = new A.Rect(-1000000000, -1000000000, 1000000000, 1000000000); B.RefreshIndicatorTriggerMode_1 = new A.RefreshIndicatorTriggerMode(1, "onEdge"); B.RenderAnimatedSizeState_0 = new A.RenderAnimatedSizeState(0, "start"); B.RenderAnimatedSizeState_1 = new A.RenderAnimatedSizeState(1, "stable"); B.RenderAnimatedSizeState_2 = new A.RenderAnimatedSizeState(2, "changed"); B.RenderAnimatedSizeState_3 = new A.RenderAnimatedSizeState(3, "unstable"); B.RenderComparison_0 = new A.RenderComparison(0, "identical"); B.RenderComparison_1 = new A.RenderComparison(1, "metadata"); B.RenderComparison_2 = new A.RenderComparison(2, "paint"); B.RenderComparison_3 = new A.RenderComparison(3, "layout"); B.ReportColumnType_0 = new A.ReportColumnType(0, "string"); B.ReportColumnType_1 = new A.ReportColumnType(1, "dateTime"); B.ReportColumnType_2 = new A.ReportColumnType(2, "date"); B.ReportColumnType_3 = new A.ReportColumnType(3, "number"); B.ReportColumnType_4 = new A.ReportColumnType(4, "bool"); B.ReportColumnType_5 = new A.ReportColumnType(5, "age"); B.ReportColumnType_6 = new A.ReportColumnType(6, "duration"); B.Role_0 = new A.Role(0, "incrementable"); B.Role_1 = new A.Role(1, "scrollable"); B.Role_2 = new A.Role(2, "labelAndValue"); B.Role_3 = new A.Role(3, "tappable"); B.Role_4 = new A.Role(4, "textField"); B.Role_5 = new A.Role(5, "checkable"); B.Role_6 = new A.Role(6, "image"); B.Role_7 = new A.Role(7, "liveRegion"); B.RoundedRectangleBorder_LkV1 = new A.RoundedRectangleBorder(B.BorderRadius_tLn, B.BorderSide_0CF); B.Radius_3_3 = new A.Radius(3, 3); B.BorderRadius_tLn4 = new A.BorderRadius(B.Radius_3_3, B.Radius_3_3, B.Radius_0_0, B.Radius_0_0); B.RoundedRectangleBorder_LkV2 = new A.RoundedRectangleBorder(B.BorderRadius_tLn4, B.BorderSide_0CF); B.BorderRadius_tLn5 = new A.BorderRadius(B.Radius_1_1, B.Radius_1_1, B.Radius_1_1, B.Radius_1_1); B.RoundedRectangleBorder_LkV3 = new A.RoundedRectangleBorder(B.BorderRadius_tLn5, B.BorderSide_0CF); B.RoundedRectangleBorder_LkV = new A.RoundedRectangleBorder(B.BorderRadius_tLn2, B.BorderSide_0CF); B.RoundedRectangleBorder_LkV0 = new A.RoundedRectangleBorder(B.BorderRadius_tLn0, B.BorderSide_0CF); B.Radius_24_24 = new A.Radius(24, 24); B.BorderRadius_tLn6 = new A.BorderRadius(B.Radius_24_24, B.Radius_24_24, B.Radius_24_24, B.Radius_24_24); B.RoundedRectangleBorder_LkV4 = new A.RoundedRectangleBorder(B.BorderRadius_tLn6, B.BorderSide_0CF); B.RoutePopDisposition_0 = new A.RoutePopDisposition(0, "pop"); B.RoutePopDisposition_1 = new A.RoutePopDisposition(1, "doNotPop"); B.RoutePopDisposition_2 = new A.RoutePopDisposition(2, "bubble"); B.RouteSettings_null_null = new A.RouteSettings(null, null); B.SawTooth_1333 = new A.SawTooth(1333); B.SawTooth_2222 = new A.SawTooth(2222); B.ScaffoldGeometry_null_null = new A.ScaffoldGeometry(null, null); B.SchedulerPhase_0 = new A.SchedulerPhase(0, "idle"); B.SchedulerPhase_1 = new A.SchedulerPhase(1, "transientCallbacks"); B.SchedulerPhase_2 = new A.SchedulerPhase(2, "midFrameMicrotasks"); B.SchedulerPhase_3 = new A.SchedulerPhase(3, "persistentCallbacks"); B.SchedulerPhase_4 = new A.SchedulerPhase(4, "postFrameCallbacks"); B.ScriptCategory_0 = new A.ScriptCategory(0, "englishLike"); B.ScriptCategory_1 = new A.ScriptCategory(1, "dense"); B.ScriptCategory_2 = new A.ScriptCategory(2, "tall"); B.ScrollBehavior_null = new A.ScrollBehavior(null); B.ScrollDirection_0 = new A.ScrollDirection(0, "idle"); B.ScrollDirection_1 = new A.ScrollDirection(1, "forward"); B.ScrollDirection_2 = new A.ScrollDirection(2, "reverse"); B.ScrollPositionAlignmentPolicy_0 = new A.ScrollPositionAlignmentPolicy(0, "explicit"); B.ScrollPositionAlignmentPolicy_1 = new A.ScrollPositionAlignmentPolicy(1, "keepVisibleAtEnd"); B.ScrollPositionAlignmentPolicy_2 = new A.ScrollPositionAlignmentPolicy(2, "keepVisibleAtStart"); B.ScrollViewKeyboardDismissBehavior_0 = new A.ScrollViewKeyboardDismissBehavior(0, "manual"); B.ScrollViewKeyboardDismissBehavior_1 = new A.ScrollViewKeyboardDismissBehavior(1, "onDrag"); B.ScrollbarOrientation_0 = new A.ScrollbarOrientation(0, "left"); B.ScrollbarOrientation_1 = new A.ScrollbarOrientation(1, "right"); B.ScrollbarOrientation_3 = new A.ScrollbarOrientation(3, "bottom"); B.ScrollbarThemeData_Ep5 = new A.ScrollbarThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null); B.SelectionChangedCause_0 = new A.SelectionChangedCause(0, "tap"); B.SelectionChangedCause_1 = new A.SelectionChangedCause(1, "doubleTap"); B.SelectionChangedCause_2 = new A.SelectionChangedCause(2, "longPress"); B.SelectionChangedCause_3 = new A.SelectionChangedCause(3, "forcePress"); B.SelectionChangedCause_4 = new A.SelectionChangedCause(4, "keyboard"); B.SelectionChangedCause_5 = new A.SelectionChangedCause(5, "toolbar"); B.SelectionChangedCause_6 = new A.SelectionChangedCause(6, "drag"); B.SelectionChangedCause_7 = new A.SelectionChangedCause(7, "scribble"); B.SelectionMode_0 = new A.SelectionMode(0, "expandToDomain"); B.SelectionModelType_0 = new A.SelectionModelType(0, "info"); B.SelectionTrigger_1 = new A.SelectionTrigger(1, "tap"); B.SelectionTrigger_4 = new A.SelectionTrigger(4, "longPressHold"); B.SelectionType_00 = new A.SelectionType(0, "position"); B.SelectionType_0 = new A.SelectionType0(0, "collapsed"); B.SelectionType_10 = new A.SelectionType(1, "word"); B.SelectionType_1 = new A.SelectionType0(1, "base"); B.SelectionType_20 = new A.SelectionType(2, "paragraph"); B.SelectionType_2 = new A.SelectionType0(2, "extent"); B.SemanticsAction_1 = new A.SemanticsAction(1); B.SemanticsAction_1024 = new A.SemanticsAction(1024); B.SemanticsAction_1048576 = new A.SemanticsAction(1048576); B.SemanticsAction_128 = new A.SemanticsAction(128); B.SemanticsAction_131072 = new A.SemanticsAction(131072); B.SemanticsAction_16 = new A.SemanticsAction(16); B.SemanticsAction_16384 = new A.SemanticsAction(16384); B.SemanticsAction_2 = new A.SemanticsAction(2); B.SemanticsAction_2048 = new A.SemanticsAction(2048); B.SemanticsAction_2097152 = new A.SemanticsAction(2097152); B.SemanticsAction_256 = new A.SemanticsAction(256); B.SemanticsAction_262144 = new A.SemanticsAction(262144); B.SemanticsAction_32 = new A.SemanticsAction(32); B.SemanticsAction_32768 = new A.SemanticsAction(32768); B.SemanticsAction_4 = new A.SemanticsAction(4); B.SemanticsAction_4096 = new A.SemanticsAction(4096); B.SemanticsAction_512 = new A.SemanticsAction(512); B.SemanticsAction_524288 = new A.SemanticsAction(524288); B.SemanticsAction_64 = new A.SemanticsAction(64); B.SemanticsAction_8 = new A.SemanticsAction(8); B.SemanticsAction_8192 = new A.SemanticsAction(8192); B.SemanticsFlag_1 = new A.SemanticsFlag(1); B.SemanticsFlag_1024 = new A.SemanticsFlag(1024); B.SemanticsFlag_1048576 = new A.SemanticsFlag(1048576); B.SemanticsFlag_128 = new A.SemanticsFlag(128); B.SemanticsFlag_131072 = new A.SemanticsFlag(131072); B.SemanticsFlag_16 = new A.SemanticsFlag(16); B.SemanticsFlag_16384 = new A.SemanticsFlag(16384); B.SemanticsFlag_2 = new A.SemanticsFlag(2); B.SemanticsFlag_2048 = new A.SemanticsFlag(2048); B.SemanticsFlag_2097152 = new A.SemanticsFlag(2097152); B.SemanticsFlag_256 = new A.SemanticsFlag(256); B.SemanticsFlag_262144 = new A.SemanticsFlag(262144); B.SemanticsFlag_32 = new A.SemanticsFlag(32); B.SemanticsFlag_32768 = new A.SemanticsFlag(32768); B.SemanticsFlag_4 = new A.SemanticsFlag(4); B.SemanticsFlag_4096 = new A.SemanticsFlag(4096); B.SemanticsFlag_4194304 = new A.SemanticsFlag(4194304); B.SemanticsFlag_512 = new A.SemanticsFlag(512); B.SemanticsFlag_524288 = new A.SemanticsFlag(524288); B.SemanticsFlag_64 = new A.SemanticsFlag(64); B.SemanticsFlag_65536 = new A.SemanticsFlag(65536); B.SemanticsFlag_8 = new A.SemanticsFlag(8); B.SemanticsFlag_8192 = new A.SemanticsFlag(8192); B.SemanticsTag_FIw = new A.SemanticsTag("RenderViewport.twoPane"); B.SemanticsTag_bQQ = new A.SemanticsTag("RenderViewport.excludeFromScrolling"); B.SentryLevel_debug = new A.SentryLevel("debug"); B.SentryLevel_error = new A.SentryLevel("error"); B.SentryLevel_info = new A.SentryLevel("info"); B.List_2No3 = A._setArrayType(makeConstList(["click", "touchstart", "touchend", "pointerdown", "pointermove", "pointerup"]), type$.JSArray_legacy_String); B.Map_2NPLv = new A.ConstantStringMap(6, {click: null, touchstart: null, touchend: null, pointerdown: null, pointermove: null, pointerup: null}, B.List_2No3, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_2No4 = new A._UnmodifiableSet(B.Map_2NPLv, type$._UnmodifiableSet_legacy_String); B.List_mailto_tel_sms = A._setArrayType(makeConstList(["mailto", "tel", "sms"]), type$.JSArray_legacy_String); B.Map_4eGok = new A.ConstantStringMap(3, {mailto: null, tel: null, sms: null}, B.List_mailto_tel_sms, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_4e8j2 = new A._UnmodifiableSet(B.Map_4eGok, type$._UnmodifiableSet_legacy_String); B.Map_69gc6 = new A.GeneralConstantMap([B.OperatingSystem_4, null, B.OperatingSystem_2, null, B.OperatingSystem_3, null], A.findType("GeneralConstantMap")); B.Set_69tl2 = new A._UnmodifiableSet(B.Map_69gc6, A.findType("_UnmodifiableSet")); B.List_UOW0 = A._setArrayType(makeConstList(["Dead", "Shift", "Alt", "Escape", "CapsLock", "PageUp", "PageDown", "Home", "End", "Control", "Meta", "Enter", "Backspace", "Delete", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "Num Lock", "Scroll Lock", "Insert", "Paste", "Print Screen", "Power"]), type$.JSArray_legacy_String); B.Map_UOf1j = new A.ConstantStringMap(32, {Dead: null, Shift: null, Alt: null, Escape: null, CapsLock: null, PageUp: null, PageDown: null, Home: null, End: null, Control: null, Meta: null, Enter: null, Backspace: null, Delete: null, F1: null, F2: null, F3: null, F4: null, F5: null, F6: null, F7: null, F8: null, F9: null, F10: null, F11: null, F12: null, "Num Lock": null, "Scroll Lock": null, Insert: null, Paste: null, "Print Screen": null, Power: null}, B.List_UOW0, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_UOWB = new A._UnmodifiableSet(B.Map_UOf1j, type$._UnmodifiableSet_legacy_String); B.Map_WLsxt = new A.GeneralConstantMap([B.MaterialState_0, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); B.Set_WLNEa = new A._UnmodifiableSet(B.Map_WLsxt, type$._UnmodifiableSet_legacy_MaterialState); B.Map_YGDwI = new A.GeneralConstantMap([B.MaterialState_1, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); B.Set_YGDIm = new A._UnmodifiableSet(B.Map_YGDwI, type$._UnmodifiableSet_legacy_MaterialState); B.List_Yab = A._setArrayType(makeConstList(["click", "keyup", "keydown", "mouseup", "mousedown", "pointerdown", "pointerup"]), type$.JSArray_legacy_String); B.Map_Yae5Z = new A.ConstantStringMap(7, {click: null, keyup: null, keydown: null, mouseup: null, mousedown: null, pointerdown: null, pointerup: null}, B.List_Yab, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_Yabt3 = new A._UnmodifiableSet(B.Map_Yae5Z, type$._UnmodifiableSet_legacy_String); B.Map_cMbv8 = new A.GeneralConstantMap([B.MaterialState_2, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); B.Set_cMbP4 = new A._UnmodifiableSet(B.Map_cMbv8, type$._UnmodifiableSet_legacy_MaterialState); B.Map_e2MUw = new A.GeneralConstantMap([B.TargetPlatform_0, null, B.TargetPlatform_2, null, B.TargetPlatform_1, null], A.findType("GeneralConstantMap")); B.Set_e2qq2 = new A._UnmodifiableSet(B.Map_e2MUw, A.findType("_UnmodifiableSet")); B.List_empty34 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.Map_empty9 = new A.ConstantStringMap(0, {}, B.List_empty34, A.findType("ConstantStringMap")); B.Set_empty1 = new A._UnmodifiableSet(B.Map_empty9, A.findType("_UnmodifiableSet")); B.List_empty35 = A._setArrayType(makeConstList([]), A.findType("JSArray*>")); B.Map_empty10 = new A.ConstantStringMap(0, {}, B.List_empty35, A.findType("ConstantStringMap*,Null>")); B.Set_empty = new A._UnmodifiableSet(B.Map_empty10, A.findType("_UnmodifiableSet*>")); B.List_empty36 = A._setArrayType(makeConstList([]), A.findType("JSArray")); B.Map_empty11 = new A.ConstantStringMap(0, {}, B.List_empty36, A.findType("ConstantStringMap")); B.Set_empty0 = new A._UnmodifiableSet(B.Map_empty11, type$._UnmodifiableSet_legacy_MaterialState); B.Map_icAxS = new A.GeneralConstantMap([B.PointerDeviceKind_0, null, B.PointerDeviceKind_2, null, B.PointerDeviceKind_3, null, B.PointerDeviceKind_5, null], A.findType("GeneralConstantMap")); B.Set_icQTf = new A._UnmodifiableSet(B.Map_icAxS, A.findType("_UnmodifiableSet")); B.List_wIv0 = A._setArrayType(makeConstList(["serif", "sans-serif", "monospace", "cursive", "fantasy", "system-ui", "math", "emoji", "fangsong"]), type$.JSArray_legacy_String); B.Map_wImu2 = new A.ConstantStringMap(9, {serif: null, "sans-serif": null, monospace: null, cursive: null, fantasy: null, "system-ui": null, math: null, emoji: null, fangsong: null}, B.List_wIv0, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_wIvsi = new A._UnmodifiableSet(B.Map_wImu2, type$._UnmodifiableSet_legacy_String); B.List_wij = A._setArrayType(makeConstList(["after", "before", "first-letter", "first-line"]), type$.JSArray_legacy_String); B.Map_wiGbr = new A.ConstantStringMap(4, {after: null, before: null, "first-letter": null, "first-line": null}, B.List_wij, type$.ConstantStringMap_of_legacy_String_and_Null); B.Set_wijBi = new A._UnmodifiableSet(B.Map_wiGbr, type$._UnmodifiableSet_legacy_String); B.OuterBoxShadow_kUP0 = new A.OuterBoxShadow(0, B.BlurStyle_0, B.Color_855638016, B.Offset_0_0, 4); B.List_tcr0 = A._setArrayType(makeConstList([B.OuterBoxShadow_kUP0]), type$.JSArray_legacy_BoxShadow); B.ShapeDecoration_6Vn = new A.ShapeDecoration(null, null, null, B.List_tcr0, B.RoundedRectangleBorder_LkV4); B.SignInOption_0 = new A.SignInOption(0, "standard"); B.SignInWithAppleAuthorizationException_BKW = new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_2, "parseAuthorizationCredentialAppleIDFromDeeplink: No `code` query parameter set)"); B.SignInWithAppleAuthorizationException_PGb = new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_0, "User canceled authorization"); B.SignInWithAppleAuthorizationException_U6T = new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_2, "Did receive `null` URL from performAuthorizationRequest"); B.SignInWithAppleAuthorizationException_gsm = new A.SignInWithAppleAuthorizationException(B.AuthorizationErrorCode_2, "parseAuthorizationCredentialAppleID: `authorizationCode` field was `null`"); B.SignInWithAppleButtonStyle_0 = new A.SignInWithAppleButtonStyle(0, "black"); B.SignInWithAppleNotSupportedException_OdV = new A.SignInWithAppleNotSupportedException("The current platform is not supported"); B.SingleActivator_j8H15 = new A.SingleActivator(B.LogicalKeyboardKey_4294968069, false, false, false, false); B.SingleActivator_j8H16 = new A.SingleActivator(B.LogicalKeyboardKey_4294968070, false, false, false, false); B.SingleActivator_j8H25 = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, true, false, false); B.SingleActivator_j8H26 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, true, false, false); B.SingleActivator_j8H27 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, true, false, false); B.SingleActivator_j8H28 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, true, false, false); B.SingleActivator_j8H29 = new A.SingleActivator(B.LogicalKeyboardKey_4294968069, false, true, false, false); B.SingleActivator_j8H30 = new A.SingleActivator(B.LogicalKeyboardKey_4294968070, false, true, false, false); B.SingleActivator_j8H17 = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, false, false, true); B.SingleActivator_j8H18 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, false, false, true); B.SingleActivator_j8H19 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, false, false, true); B.SingleActivator_j8H20 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, false, false, true); B.SingleActivator_j8H21 = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, true, false, true); B.SingleActivator_j8H22 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, true, false, true); B.SingleActivator_j8H23 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, true, false, true); B.SingleActivator_j8H24 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, true, false, true); B.SingleActivator_j8H11 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, true, false, false, false); B.SingleActivator_j8H12 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, true, false, false, false); B.SingleActivator_j8H31 = new A.SingleActivator(B.LogicalKeyboardKey_4294968069, true, false, false, false); B.SingleActivator_j8H32 = new A.SingleActivator(B.LogicalKeyboardKey_4294968070, true, false, false, false); B.SingleActivator_j8H13 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, true, true, false, false); B.SingleActivator_j8H14 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, true, true, false, false); B.SingleActivator_j8H = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, false, true, false); B.SingleActivator_j8H0 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, false, true, false); B.SingleActivator_j8H1 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, false, true, false); B.SingleActivator_j8H2 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, false, true, false); B.SingleActivator_j8H3 = new A.SingleActivator(B.LogicalKeyboardKey_4294968065, false, true, true, false); B.SingleActivator_j8H4 = new A.SingleActivator(B.LogicalKeyboardKey_4294968066, false, true, true, false); B.SingleActivator_j8H5 = new A.SingleActivator(B.LogicalKeyboardKey_4294968067, false, true, true, false); B.SingleActivator_j8H6 = new A.SingleActivator(B.LogicalKeyboardKey_4294968068, false, true, true, false); B.SingleActivator_mmH7 = new A.SingleActivator(B.LogicalKeyboardKey_97, false, false, false, true); B.SingleActivator_mmH3 = new A.SingleActivator(B.LogicalKeyboardKey_99, false, false, false, true); B.SingleActivator_mmH5 = new A.SingleActivator(B.LogicalKeyboardKey_118, false, false, false, true); B.SingleActivator_mmH1 = new A.SingleActivator(B.LogicalKeyboardKey_120, false, false, false, true); B.SingleActivator_mmH6 = new A.SingleActivator(B.LogicalKeyboardKey_97, true, false, false, false); B.SingleActivator_mmH2 = new A.SingleActivator(B.LogicalKeyboardKey_99, true, false, false, false); B.SingleActivator_mmH4 = new A.SingleActivator(B.LogicalKeyboardKey_118, true, false, false, false); B.SingleActivator_mmH0 = new A.SingleActivator(B.LogicalKeyboardKey_120, true, false, false, false); B.Size_0_48 = new A.Size(0, 48); B.Size_100000_100000 = new A.Size(100000, 100000); B.Size_18_18 = new A.Size(18, 18); B.Size_22_22 = new A.Size(22, 22); B.Size_330_270 = new A.Size(330, 270); B.Size_330_518 = new A.Size(330, 518); B.Size_40_40 = new A.Size(40, 40); B.Size_48_48 = new A.Size(48, 48); B.Size_496_160 = new A.Size(496, 160); B.Size_496_346 = new A.Size(496, 346); B.Size_52_96 = new A.Size(52, 96); B.Size_59_40 = new A.Size(59, 40); B.Size_59_48 = new A.Size(59, 48); B.Size_64_36 = new A.Size(64, 36); B.Size_72_48 = new A.Size(72, 48); B.Size_8aB0 = new A.Size(1 / 0, 46); B.Size_8aB = new A.Size(1 / 0, 56); B.Size_92_48 = new A.Size(92, 48); B.Size_UW6 = new A.Size(600, 1 / 0); B.Size_wjo = new A.Size(1 / 0, 1 / 0); B.SizedBox_108_null_null_null = new A.SizedBox(108, null, null, null); B.SizedBox_10_null_null_null = new A.SizedBox(10, null, null, null); B.SizedBox_12_null_null_null = new A.SizedBox(12, null, null, null); B.SizedBox_1_1_null_null = new A.SizedBox(1, 1, null, null); B.SizedBox_2_null_null_null = new A.SizedBox(2, null, null, null); B.SizedBox_3_null_null_null = new A.SizedBox(3, null, null, null); B.SizedBox_null_16_null_null = new A.SizedBox(null, 16, null, null); B.SizedBox_null_18_null_null = new A.SizedBox(null, 18, null, null); B.SizedBox_null_2_null_null = new A.SizedBox(null, 2, null, null); B.SizedBox_null_4_null_null = new A.SizedBox(null, 4, null, null); B.SizedBox_null_8_null_null = new A.SizedBox(null, 8, null, null); B.SizedBox_null_null_null_null = new A.SizedBox(null, null, null, null); B.SliderThemeData_qIG = new A.SliderThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.SliverGeometry_Tbh = new A.SliverGeometry(0, 0, 0, 0, 0, 0, 0, false, false, null, 0); B.SmartDashesType_0 = new A.SmartDashesType(0, "disabled"); B.SmartDashesType_1 = new A.SmartDashesType(1, "enabled"); B.SmartQuotesType_0 = new A.SmartQuotesType(0, "disabled"); B.SmartQuotesType_1 = new A.SmartQuotesType(1, "enabled"); B.SnackBarClosedReason_3 = new A.SnackBarClosedReason(3, "hide"); B.SnackBarClosedReason_5 = new A.SnackBarClosedReason(5, "timeout"); B.SnackBarThemeData_gc6 = new A.SnackBarThemeData(null, null, null, null, null, null, null); B.Spacer_null = new A.Spacer(null); B.SpanMarkerType_0 = new A.SpanMarkerType(0, "start"); B.SpanMarkerType_1 = new A.SpanMarkerType(1, "end"); B.SpringType_0 = new A.SpringType(0, "criticallyDamped"); B.SpringType_1 = new A.SpringType(1, "underDamped"); B.SpringType_2 = new A.SpringType(2, "overDamped"); B.StackFit_0 = new A.StackFit(0, "loose"); B.StackFit_2 = new A.StackFit(2, "passthrough"); B.StackFrame_8sg = new A.StackFrame("...", -1, "", "", "", -1, -1, "", "..."); B.StackFrame_SOW = new A.StackFrame("", -1, "", "", "", -1, -1, "", "asynchronous suspension"); B.StadiumBorder_QSQ = new A.StadiumBorder(B.BorderSide_0CF); B.StringCharacters_ehH = new A.StringCharacters(""); B.StrokeCap_0 = new A.StrokeCap(0, "butt"); B.StrokeCap_1 = new A.StrokeCap(1, "round"); B.StrokeCap_2 = new A.StrokeCap(2, "square"); B.StrokeJoin_0 = new A.StrokeJoin(0, "miter"); B.StrokeJoin_1 = new A.StrokeJoin(1, "round"); B.StrokeJoin_2 = new A.StrokeJoin(2, "bevel"); B.StrutStyle_yfz = new A.StrutStyle(null, null, null, null, null, null, null, null, null); B.StyledToastAnimation_0 = new A.StyledToastAnimation(0, "fade"); B.StyledToastAnimation_1 = new A.StyledToastAnimation(1, "slideFromTop"); B.StyledToastAnimation_10 = new A.StyledToastAnimation(10, "slideToTopFade"); B.StyledToastAnimation_11 = new A.StyledToastAnimation(11, "slideToBottom"); B.StyledToastAnimation_12 = new A.StyledToastAnimation(12, "slideToBottomFade"); B.StyledToastAnimation_13 = new A.StyledToastAnimation(13, "slideToLeft"); B.StyledToastAnimation_14 = new A.StyledToastAnimation(14, "slideToLeftFade"); B.StyledToastAnimation_15 = new A.StyledToastAnimation(15, "slideToRight"); B.StyledToastAnimation_16 = new A.StyledToastAnimation(16, "slideToRightFade"); B.StyledToastAnimation_17 = new A.StyledToastAnimation(17, "scale"); B.StyledToastAnimation_18 = new A.StyledToastAnimation(18, "size"); B.StyledToastAnimation_19 = new A.StyledToastAnimation(19, "sizeFade"); B.StyledToastAnimation_2 = new A.StyledToastAnimation(2, "slideFromTopFade"); B.StyledToastAnimation_20 = new A.StyledToastAnimation(20, "fadeScale"); B.StyledToastAnimation_21 = new A.StyledToastAnimation(21, "rotate"); B.StyledToastAnimation_22 = new A.StyledToastAnimation(22, "fadeRotate"); B.StyledToastAnimation_23 = new A.StyledToastAnimation(23, "scaleRotate"); B.StyledToastAnimation_24 = new A.StyledToastAnimation(24, "none"); B.StyledToastAnimation_3 = new A.StyledToastAnimation(3, "slideFromBottom"); B.StyledToastAnimation_4 = new A.StyledToastAnimation(4, "slideFromBottomFade"); B.StyledToastAnimation_5 = new A.StyledToastAnimation(5, "slideFromLeft"); B.StyledToastAnimation_6 = new A.StyledToastAnimation(6, "slideFromLeftFade"); B.StyledToastAnimation_7 = new A.StyledToastAnimation(7, "slideFromRight"); B.StyledToastAnimation_8 = new A.StyledToastAnimation(8, "slideFromRightFade"); B.StyledToastAnimation_9 = new A.StyledToastAnimation(9, "slideToTop"); B.SvgBlendMode_0 = new A.SvgBlendMode(0); B.SvgBlendMode_09 = new A.SvgBlendMode(0); B.SvgBlendMode_07 = new A.SvgBlendMode(0); B.SvgBlendMode_05 = new A.SvgBlendMode(0); B.SvgBlendMode_06 = new A.SvgBlendMode(0); B.SvgBlendMode_04 = new A.SvgBlendMode(0); B.SvgBlendMode_08 = new A.SvgBlendMode(0); B.SvgBlendMode_03 = new A.SvgBlendMode(0); B.SvgBlendMode_01 = new A.SvgBlendMode(0); B.SvgBlendMode_02 = new A.SvgBlendMode(0); B.SvgBlendMode_00 = new A.SvgBlendMode(0); B.SvgBlendMode_010 = new A.SvgBlendMode(0); B.SvgBlendMode_1 = new A.SvgBlendMode(1); B.SvgBlendMode_10 = new A.SvgBlendMode(10); B.SvgBlendMode_11 = new A.SvgBlendMode(11); B.SvgBlendMode_12 = new A.SvgBlendMode(12); B.SvgBlendMode_13 = new A.SvgBlendMode(13); B.SvgBlendMode_14 = new A.SvgBlendMode(14); B.SvgBlendMode_15 = new A.SvgBlendMode(15); B.SvgBlendMode_16 = new A.SvgBlendMode(16); B.SvgBlendMode_2 = new A.SvgBlendMode(2); B.SvgBlendMode_3 = new A.SvgBlendMode(3); B.SvgBlendMode_4 = new A.SvgBlendMode(4); B.SvgBlendMode_5 = new A.SvgBlendMode(5); B.SvgBlendMode_6 = new A.SvgBlendMode(6); B.SvgBlendMode_7 = new A.SvgBlendMode(7); B.SvgBlendMode_8 = new A.SvgBlendMode(8); B.SvgBlendMode_9 = new A.SvgBlendMode(9); B.SwitchThemeData_v9F = new A.SwitchThemeData(null, null, null, null, null, null); B.Symbol_89P = new A.Symbol("Intl.locale"); B.Symbol_call = new A.Symbol("call"); B.SystemMouseCursor_basic = new A.SystemMouseCursor("basic"); B.SystemMouseCursor_click = new A.SystemMouseCursor("click"); B.SystemMouseCursor_text = new A.SystemMouseCursor("text"); B.SystemSoundType_0 = new A.SystemSoundType(0, "click"); B.SystemSoundType_1 = new A.SystemSoundType(1, "alert"); B.SystemUiOverlayStyle_6UD = new A.SystemUiOverlayStyle(B.Color_4278190080, null, B.Brightness_1, null, null, B.Brightness_0, B.Brightness_1, null); B.SystemUiOverlayStyle_qsc = new A.SystemUiOverlayStyle(B.Color_4278190080, null, B.Brightness_1, null, null, B.Brightness_1, B.Brightness_0, null); B.TabBarTheme_WXI = new A.TabBarTheme(null, null, null, null, null, null, null, null, null, null); B.TableCellVerticalAlignment_0 = new A.TableCellVerticalAlignment(0, "top"); B.TableCellVerticalAlignment_2 = new A.TableCellVerticalAlignment(2, "bottom"); B.TableCellVerticalAlignment_4 = new A.TableCellVerticalAlignment(4, "fill"); B.TapSemanticEvent_tap = new A.TapSemanticEvent("tap"); B.TextAlignVertical_0 = new A.TextAlignVertical(0); B.TextAlignVertical_m1 = new A.TextAlignVertical(-1); B.TextBaseline_0 = new A.TextBaseline(0, "alphabetic"); B.TextBaseline_1 = new A.TextBaseline(1, "ideographic"); B.TextBox_AHF = new A.TextBox(0, 0, 0, 0, B.TextDirection_1); B.TextButtonThemeData_null = new A.TextButtonThemeData(null); B.TextCapitalization_30 = new A.TextCapitalization(3, "none"); B.TextCapitalizationConfig_TextCapitalization_3 = new A.TextCapitalizationConfig(B.TextCapitalization_30); B.TextCapitalization_0 = new A.TextCapitalization(0, "words"); B.TextCapitalization_10 = new A.TextCapitalization(1, "sentences"); B.TextCapitalization_1 = new A.TextCapitalization0(1, "sentences"); B.TextCapitalization_2 = new A.TextCapitalization(2, "characters"); B.TextCapitalization_3 = new A.TextCapitalization0(3, "none"); B.TextDecoration_0 = new A.TextDecoration(0); B.TextDecoration_1 = new A.TextDecoration(1); B.TextDecoration_4 = new A.TextDecoration(4); B.TextDirection_00 = new A.TextDirection0(0, "ltr"); B.TextDirection_10 = new A.TextDirection0(1, "rtl"); B.TextDirection_2 = new A.TextDirection0(2, "center"); B.TextSelection_3Ex0 = new A.TextSelection(0, 0, B.TextAffinity_1, false, 0, 0); B.TextEditingValue_cKo = new A.TextEditingValue("", B.TextSelection_3Ex0, B.TextRange_m1_m1); B.TextInputAction_0 = new A.TextInputAction(0, "none"); B.TextInputAction_1 = new A.TextInputAction(1, "unspecified"); B.TextInputAction_10 = new A.TextInputAction(10, "route"); B.TextInputAction_11 = new A.TextInputAction(11, "emergencyCall"); B.TextInputAction_2 = new A.TextInputAction(2, "done"); B.TextInputAction_3 = new A.TextInputAction(3, "go"); B.TextInputAction_4 = new A.TextInputAction(4, "search"); B.TextInputAction_5 = new A.TextInputAction(5, "send"); B.TextInputAction_6 = new A.TextInputAction(6, "next"); B.TextInputAction_7 = new A.TextInputAction(7, "previous"); B.TextInputAction_8 = new A.TextInputAction(8, "continueAction"); B.TextInputAction_9 = new A.TextInputAction(9, "join"); B.TextInputType_0_null_null = new A.TextInputType(0, null, null); B.TextInputType_1_null_null = new A.TextInputType(1, null, null); B.TextInputType_2_false_false = new A.TextInputType(2, false, false); B.TextInputType_3_null_null = new A.TextInputType(3, null, null); B.TextInputType_4_null_null = new A.TextInputType(4, null, null); B.TextInputType_5_null_null = new A.TextInputType(5, null, null); B.TextInputType_6_null_null = new A.TextInputType(6, null, null); B.TextInputType_7_null_null = new A.TextInputType(7, null, null); B.TextInputType_8_null_null = new A.TextInputType(8, null, null); B.TextInputType_9_null_null = new A.TextInputType(9, null, null); B.TextLeadingDistribution_0 = new A.TextLeadingDistribution(0, "proportional"); B.TextLeadingDistribution_1 = new A.TextLeadingDistribution(1, "even"); B.TextNodePosition_0_TextAffinity_1 = new A.TextNodePosition(0, B.TextAffinity_1); B.TextNodePosition_4_TextAffinity_1 = new A.TextNodePosition(4, B.TextAffinity_1); B.TextOverflow_1 = new A.TextOverflow(1, "fade"); B.TextOverflow_2 = new A.TextOverflow(2, "ellipsis"); B.TextOverflow_3 = new A.TextOverflow(3, "visible"); B.TextPosition_0_TextAffinity_1 = new A.TextPosition(0, B.TextAffinity_1); B.TextPosition_m1_TextAffinity_1 = new A.TextPosition(-1, B.TextAffinity_1); B.TextSelectionHandleType_0 = new A.TextSelectionHandleType(0, "left"); B.TextSelectionHandleType_1 = new A.TextSelectionHandleType(1, "right"); B.TextSelectionHandleType_2 = new A.TextSelectionHandleType(2, "collapsed"); B.TextSelectionThemeData_null_null_null = new A.TextSelectionThemeData(null, null, null); B.TextSelection_3Ex = new A.TextSelection(0, 1, B.TextAffinity_1, false, 0, 1); B.TextStyle_3WR = new A.TextStyle(true, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_1, null, null, null, null, null, null, null); B.TextStyle_K9x = new A.TextStyle(true, B.Color_4278190080, null, null, null, null, 18, null, null, null, null, null, 1.4, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_P9F = new A.TextStyle(false, B.CupertinoDynamicColor_qQo, null, ".SF Pro Text", null, null, 17, null, null, -0.41, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, null, null, null, null); B.Color_3506372608 = new A.Color(3506372608); B.Color_4294967040 = new A.Color(4294967040); B.TextDecorationStyle_1 = new A.TextDecorationStyle(1, "double"); B.TextStyle_kUZ = new A.TextStyle(true, B.Color_3506372608, null, "monospace", null, null, 48, B.FontWeight_8, null, null, null, null, null, null, null, null, null, B.TextDecoration_1, B.Color_4294967040, B.TextDecorationStyle_1, null, "fallback style; consider putting your text in a Material", null, null, null); B.TextStyle_lRE = new A.TextStyle(true, B.Color_4281545523, null, null, null, null, 22, B.FontWeight_6, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_lRE0 = new A.TextStyle(true, B.Color_4281545523, null, null, null, null, 26, B.FontWeight_6, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_lRE1 = new A.TextStyle(true, B.Color_4281545523, null, null, null, null, 38, B.FontWeight_6, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_oqK = new A.TextStyle(true, null, null, null, null, null, null, B.FontWeight_6, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_ul3 = new A.TextStyle(true, B.Color_4294967295, null, null, null, null, 12, B.FontWeight_2, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_xKl0 = new A.TextStyle(true, B.Color_4278190080, null, null, null, null, 12, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_xKl = new A.TextStyle(true, B.Color_4278190080, null, null, null, null, 14, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_zIQ1 = new A.TextStyle(true, null, null, null, null, null, 0, null, null, null, null, null, 0, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_zIQ0 = new A.TextStyle(true, null, null, null, null, null, 16, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_4IJ = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond displayLarge", null, null, null); B.TextStyle_4UD = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond displayMedium", null, null, null); B.TextStyle_c2q = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond displaySmall", null, null, null); B.TextStyle_yw2 = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond headlineLarge", null, null, null); B.TextStyle_yHZ = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond headlineMedium", null, null, null); B.TextStyle_4CA = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond headlineSmall", null, null, null); B.TextStyle_EaB = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond titleLarge", null, null, null); B.TextStyle_GNA = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond titleMedium", null, null, null); B.TextStyle_P12 = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond titleSmall", null, null, null); B.TextStyle_mGH = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond bodyLarge", null, null, null); B.TextStyle_46y = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond bodyMedium", null, null, null); B.TextStyle_MIV = new A.TextStyle(true, B.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond bodySmall", null, null, null); B.TextStyle_ef1 = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond labelLarge", null, null, null); B.TextStyle_hSl = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond labelMedium", null, null, null); B.TextStyle_T9T = new A.TextStyle(true, B.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedmond labelSmall", null, null, null); B.TextTheme_3nh = new A.TextTheme(B.TextStyle_4IJ, B.TextStyle_4UD, B.TextStyle_c2q, B.TextStyle_yw2, B.TextStyle_yHZ, B.TextStyle_4CA, B.TextStyle_EaB, B.TextStyle_GNA, B.TextStyle_P12, B.TextStyle_mGH, B.TextStyle_46y, B.TextStyle_MIV, B.TextStyle_ef1, B.TextStyle_hSl, B.TextStyle_T9T); B.TextStyle_yAK = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity displayLarge", null, null, null); B.TextStyle_Esm = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity displayMedium", null, null, null); B.TextStyle_yAK0 = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity displaySmall", null, null, null); B.TextStyle_8eb = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity headlineLarge", null, null, null); B.TextStyle_myx = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity headlineMedium", null, null, null); B.TextStyle_OgC = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity headlineSmall", null, null, null); B.TextStyle_avx = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity titleLarge", null, null, null); B.TextStyle_0 = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity titleMedium", null, null, null); B.TextStyle_QEL = new A.TextStyle(true, B.Color_4278190080, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity titleSmall", null, null, null); B.TextStyle_4AN = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity bodyLarge", null, null, null); B.TextStyle_XPt = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity bodyMedium", null, null, null); B.TextStyle_2rT = new A.TextStyle(true, B.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity bodySmall", null, null, null); B.TextStyle_yto = new A.TextStyle(true, B.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity labelLarge", null, null, null); B.TextStyle_OX3 = new A.TextStyle(true, B.Color_4278190080, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity labelMedium", null, null, null); B.TextStyle_gMT = new A.TextStyle(true, B.Color_4278190080, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedwoodCity labelSmall", null, null, null); B.TextTheme_6bg = new A.TextTheme(B.TextStyle_yAK, B.TextStyle_Esm, B.TextStyle_yAK0, B.TextStyle_8eb, B.TextStyle_myx, B.TextStyle_OgC, B.TextStyle_avx, B.TextStyle_0, B.TextStyle_QEL, B.TextStyle_4AN, B.TextStyle_XPt, B.TextStyle_2rT, B.TextStyle_yto, B.TextStyle_OX3, B.TextStyle_gMT); B.TextStyle_ub4 = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView displayLarge", null, null, null); B.TextStyle_sIv = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView displayMedium", null, null, null); B.TextStyle_M6L = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView displaySmall", null, null, null); B.TextStyle_jiq = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView headlineLarge", null, null, null); B.TextStyle_RKg = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView headlineMedium", null, null, null); B.TextStyle_ezV = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView headlineSmall", null, null, null); B.TextStyle_OAa = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView titleLarge", null, null, null); B.TextStyle_r9A = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView titleMedium", null, null, null); B.TextStyle_QBc = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView titleSmall", null, null, null); B.TextStyle_cRW = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView bodyLarge", null, null, null); B.TextStyle_irG = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView bodyMedium", null, null, null); B.TextStyle_inH = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView bodySmall", null, null, null); B.TextStyle_wgw = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView labelLarge", null, null, null); B.TextStyle_WXT = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView labelMedium", null, null, null); B.TextStyle_Fcu = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteMountainView labelSmall", null, null, null); B.TextTheme_8I8 = new A.TextTheme(B.TextStyle_ub4, B.TextStyle_sIv, B.TextStyle_M6L, B.TextStyle_jiq, B.TextStyle_RKg, B.TextStyle_ezV, B.TextStyle_OAa, B.TextStyle_r9A, B.TextStyle_QBc, B.TextStyle_cRW, B.TextStyle_irG, B.TextStyle_inH, B.TextStyle_wgw, B.TextStyle_WXT, B.TextStyle_Fcu); B.List_Exl = A._setArrayType(makeConstList(["Ubuntu", "Cantarell", "DejaVu Sans", "Liberation Sans", "Arial"]), type$.JSArray_legacy_String); B.TextStyle_eea = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki displayLarge", null, null, null); B.TextStyle_liY = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki displayMedium", null, null, null); B.TextStyle_8hD = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki displaySmall", null, null, null); B.TextStyle_a9P = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki headlineLarge", null, null, null); B.TextStyle_T7e = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki headlineMedium", null, null, null); B.TextStyle_gMT0 = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki headlineSmall", null, null, null); B.TextStyle_MRv = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki titleLarge", null, null, null); B.TextStyle_nVV = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki titleMedium", null, null, null); B.TextStyle_KzQ = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki titleSmall", null, null, null); B.TextStyle_b88 = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki bodyLarge", null, null, null); B.TextStyle_wwo = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki bodyMedium", null, null, null); B.TextStyle_gA4 = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki bodySmall", null, null, null); B.TextStyle_46y0 = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki labelLarge", null, null, null); B.TextStyle_8dr = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki labelMedium", null, null, null); B.TextStyle_AcR = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackHelsinki labelSmall", null, null, null); B.TextTheme_AZd = new A.TextTheme(B.TextStyle_eea, B.TextStyle_liY, B.TextStyle_8hD, B.TextStyle_a9P, B.TextStyle_T7e, B.TextStyle_gMT0, B.TextStyle_MRv, B.TextStyle_nVV, B.TextStyle_KzQ, B.TextStyle_b88, B.TextStyle_wwo, B.TextStyle_gA4, B.TextStyle_46y0, B.TextStyle_8dr, B.TextStyle_AcR); B.TextStyle_4t1 = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino displayLarge", null, null, null); B.TextStyle_8eb0 = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino displayMedium", null, null, null); B.TextStyle_i7B = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino displaySmall", null, null, null); B.TextStyle_gkc = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino headlineLarge", null, null, null); B.TextStyle_zLf = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino headlineMedium", null, null, null); B.TextStyle_yzp = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino headlineSmall", null, null, null); B.TextStyle_2E5 = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino titleLarge", null, null, null); B.TextStyle_Bcj = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino titleMedium", null, null, null); B.TextStyle_Q1p = new A.TextStyle(true, B.Color_4278190080, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino titleSmall", null, null, null); B.TextStyle_mT8 = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino bodyLarge", null, null, null); B.TextStyle_CKg = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino bodyMedium", null, null, null); B.TextStyle_D3E = new A.TextStyle(true, B.Color_2315255808, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino bodySmall", null, null, null); B.TextStyle_2jN = new A.TextStyle(true, B.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino labelLarge", null, null, null); B.TextStyle_cWd = new A.TextStyle(true, B.Color_4278190080, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino labelMedium", null, null, null); B.TextStyle_4QF = new A.TextStyle(true, B.Color_4278190080, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackCupertino labelSmall", null, null, null); B.TextTheme_QJO = new A.TextTheme(B.TextStyle_4t1, B.TextStyle_8eb0, B.TextStyle_i7B, B.TextStyle_gkc, B.TextStyle_zLf, B.TextStyle_yzp, B.TextStyle_2E5, B.TextStyle_Bcj, B.TextStyle_Q1p, B.TextStyle_mT8, B.TextStyle_CKg, B.TextStyle_D3E, B.TextStyle_2jN, B.TextStyle_cWd, B.TextStyle_4QF); B.TextStyle_OTZ = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView displayLarge", null, null, null); B.TextStyle_CDT = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView displayMedium", null, null, null); B.TextStyle_Kg1 = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView displaySmall", null, null, null); B.TextStyle_woc = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView headlineLarge", null, null, null); B.TextStyle_gcQ = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView headlineMedium", null, null, null); B.TextStyle_Qq8 = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView headlineSmall", null, null, null); B.TextStyle_89t = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView titleLarge", null, null, null); B.TextStyle_Azp = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView titleMedium", null, null, null); B.TextStyle_23h = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView titleSmall", null, null, null); B.TextStyle_2Hq = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView bodyLarge", null, null, null); B.TextStyle_muG = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView bodyMedium", null, null, null); B.TextStyle_fXI = new A.TextStyle(true, B.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView bodySmall", null, null, null); B.TextStyle_rgA = new A.TextStyle(true, B.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView labelLarge", null, null, null); B.TextStyle_4y8 = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView labelMedium", null, null, null); B.TextStyle_8bC = new A.TextStyle(true, B.Color_4278190080, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackMountainView labelSmall", null, null, null); B.TextTheme_WrZ = new A.TextTheme(B.TextStyle_OTZ, B.TextStyle_CDT, B.TextStyle_Kg1, B.TextStyle_woc, B.TextStyle_gcQ, B.TextStyle_Qq8, B.TextStyle_89t, B.TextStyle_Azp, B.TextStyle_23h, B.TextStyle_2Hq, B.TextStyle_muG, B.TextStyle_fXI, B.TextStyle_rgA, B.TextStyle_4y8, B.TextStyle_8bC); B.TextStyle_yPr = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki displayLarge", null, null, null); B.TextStyle_0TE = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki displayMedium", null, null, null); B.TextStyle_g8S = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki displaySmall", null, null, null); B.TextStyle_oUC = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki headlineLarge", null, null, null); B.TextStyle_U0a = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki headlineMedium", null, null, null); B.TextStyle_XZn = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki headlineSmall", null, null, null); B.TextStyle_iL9 = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki titleLarge", null, null, null); B.TextStyle_Odg = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki titleMedium", null, null, null); B.TextStyle_86y = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki titleSmall", null, null, null); B.TextStyle_kUZ0 = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki bodyLarge", null, null, null); B.TextStyle_3Tv = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki bodyMedium", null, null, null); B.TextStyle_CF2 = new A.TextStyle(true, B.Color_3019898879, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki bodySmall", null, null, null); B.TextStyle_Sh2 = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki labelLarge", null, null, null); B.TextStyle_Qug = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki labelMedium", null, null, null); B.TextStyle_Sh20 = new A.TextStyle(true, B.Color_4294967295, null, "Roboto", B.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteHelsinki labelSmall", null, null, null); B.TextTheme_Zy0 = new A.TextTheme(B.TextStyle_yPr, B.TextStyle_0TE, B.TextStyle_g8S, B.TextStyle_oUC, B.TextStyle_U0a, B.TextStyle_XZn, B.TextStyle_iL9, B.TextStyle_Odg, B.TextStyle_86y, B.TextStyle_kUZ0, B.TextStyle_3Tv, B.TextStyle_CF2, B.TextStyle_Sh2, B.TextStyle_Qug, B.TextStyle_Sh20); B.TextStyle_C72 = new A.TextStyle(false, null, null, null, null, null, 112, B.FontWeight_0, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike displayLarge 2014", null, null, null); B.TextStyle_q3P = new A.TextStyle(false, null, null, null, null, null, 56, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike displayMedium 2014", null, null, null); B.TextStyle_00 = new A.TextStyle(false, null, null, null, null, null, 45, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike displaySmall 2014", null, null, null); B.TextStyle_Amm = new A.TextStyle(false, null, null, null, null, null, 40, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike headlineLarge 2014", null, null, null); B.TextStyle_KjO = new A.TextStyle(false, null, null, null, null, null, 34, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike headlineMedium 2014", null, null, null); B.TextStyle_saY = new A.TextStyle(false, null, null, null, null, null, 24, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike headlineSmall 2014", null, null, null); B.TextStyle_eFJ = new A.TextStyle(false, null, null, null, null, null, 20, B.FontWeight_4, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike titleLarge 2014", null, null, null); B.TextStyle_23h0 = new A.TextStyle(false, null, null, null, null, null, 16, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike titleMedium 2014", null, null, null); B.TextStyle_Met = new A.TextStyle(false, null, null, null, null, null, 14, B.FontWeight_4, null, 0.1, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike titleSmall 2014", null, null, null); B.TextStyle_UGQ = new A.TextStyle(false, null, null, null, null, null, 14, B.FontWeight_4, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike bodyLarge 2014", null, null, null); B.TextStyle_yFD = new A.TextStyle(false, null, null, null, null, null, 14, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike bodyMedium 2014", null, null, null); B.TextStyle_mes = new A.TextStyle(false, null, null, null, null, null, 12, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike bodySmall 2014", null, null, null); B.TextStyle_gkc0 = new A.TextStyle(false, null, null, null, null, null, 14, B.FontWeight_4, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike labelLarge 2014", null, null, null); B.TextStyle_u5H = new A.TextStyle(false, null, null, null, null, null, 12, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike labelMedium 2014", null, null, null); B.TextStyle_gsm = new A.TextStyle(false, null, null, null, null, null, 10, B.FontWeight_3, null, 1.5, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike labelSmall 2014", null, null, null); B.TextTheme_gSp = new A.TextTheme(B.TextStyle_C72, B.TextStyle_q3P, B.TextStyle_00, B.TextStyle_Amm, B.TextStyle_KjO, B.TextStyle_saY, B.TextStyle_eFJ, B.TextStyle_23h0, B.TextStyle_Met, B.TextStyle_UGQ, B.TextStyle_yFD, B.TextStyle_mes, B.TextStyle_gkc0, B.TextStyle_u5H, B.TextStyle_gsm); B.TextStyle_kaS = new A.TextStyle(false, null, null, null, null, null, 112, B.FontWeight_0, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense displayLarge 2014", null, null, null); B.TextStyle_IFX = new A.TextStyle(false, null, null, null, null, null, 56, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense displayMedium 2014", null, null, null); B.TextStyle_yzu = new A.TextStyle(false, null, null, null, null, null, 45, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense displaySmall 2014", null, null, null); B.TextStyle_mR7 = new A.TextStyle(false, null, null, null, null, null, 40, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense headlineLarge 2014", null, null, null); B.TextStyle_8MP = new A.TextStyle(false, null, null, null, null, null, 34, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense headlineMedium 2014", null, null, null); B.TextStyle_2Vk = new A.TextStyle(false, null, null, null, null, null, 24, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense headlineSmall 2014", null, null, null); B.TextStyle_oqF = new A.TextStyle(false, null, null, null, null, null, 21, B.FontWeight_4, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense titleLarge 2014", null, null, null); B.TextStyle_NQk = new A.TextStyle(false, null, null, null, null, null, 17, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense titleMedium 2014", null, null, null); B.TextStyle_EYU = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_4, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense titleSmall 2014", null, null, null); B.TextStyle_kJ4 = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_4, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense bodyLarge 2014", null, null, null); B.TextStyle_oge = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense bodyMedium 2014", null, null, null); B.TextStyle_Kx9 = new A.TextStyle(false, null, null, null, null, null, 13, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense bodySmall 2014", null, null, null); B.TextStyle_WfU = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_4, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense labelLarge 2014", null, null, null); B.TextStyle_2Vk0 = new A.TextStyle(false, null, null, null, null, null, 12, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense labelMedium 2014", null, null, null); B.TextStyle_7Tu = new A.TextStyle(false, null, null, null, null, null, 11, B.FontWeight_3, null, null, null, B.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense labelSmall 2014", null, null, null); B.TextTheme_jnH = new A.TextTheme(B.TextStyle_kaS, B.TextStyle_IFX, B.TextStyle_yzu, B.TextStyle_mR7, B.TextStyle_8MP, B.TextStyle_2Vk, B.TextStyle_oqF, B.TextStyle_NQk, B.TextStyle_EYU, B.TextStyle_kJ4, B.TextStyle_oge, B.TextStyle_Kx9, B.TextStyle_WfU, B.TextStyle_2Vk0, B.TextStyle_7Tu); B.TextStyle_kmR = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond displayLarge", null, null, null); B.TextStyle_ald = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond displayMedium", null, null, null); B.TextStyle_04u = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond displaySmall", null, null, null); B.TextStyle_ZY1 = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond headlineLarge", null, null, null); B.TextStyle_sBE = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond headlineMedium", null, null, null); B.TextStyle_66B = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond headlineSmall", null, null, null); B.TextStyle_bJM = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond titleLarge", null, null, null); B.TextStyle_rx4 = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond titleMedium", null, null, null); B.TextStyle_cUt = new A.TextStyle(true, B.Color_4278190080, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond titleSmall", null, null, null); B.TextStyle_sQ0 = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond bodyLarge", null, null, null); B.TextStyle_yzJ = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond bodyMedium", null, null, null); B.TextStyle_MUx = new A.TextStyle(true, B.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond bodySmall", null, null, null); B.TextStyle_bQo = new A.TextStyle(true, B.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond labelLarge", null, null, null); B.TextStyle_TDG = new A.TextStyle(true, B.Color_4278190080, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond labelMedium", null, null, null); B.TextStyle_EO3 = new A.TextStyle(true, B.Color_4278190080, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "blackRedmond labelSmall", null, null, null); B.TextTheme_pEW = new A.TextTheme(B.TextStyle_kmR, B.TextStyle_ald, B.TextStyle_04u, B.TextStyle_ZY1, B.TextStyle_sBE, B.TextStyle_66B, B.TextStyle_bJM, B.TextStyle_rx4, B.TextStyle_cUt, B.TextStyle_sQ0, B.TextStyle_yzJ, B.TextStyle_MUx, B.TextStyle_bQo, B.TextStyle_TDG, B.TextStyle_EO3); B.TextStyle_01 = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity displayLarge", null, null, null); B.TextStyle_woc0 = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity displayMedium", null, null, null); B.TextStyle_02 = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity displaySmall", null, null, null); B.TextStyle_EKj = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity headlineLarge", null, null, null); B.TextStyle_sIv0 = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity headlineMedium", null, null, null); B.TextStyle_oyU = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity headlineSmall", null, null, null); B.TextStyle_Feh = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity titleLarge", null, null, null); B.TextStyle_A2C = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity titleMedium", null, null, null); B.TextStyle_ww8 = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity titleSmall", null, null, null); B.TextStyle_chs = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity bodyLarge", null, null, null); B.TextStyle_int = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity bodyMedium", null, null, null); B.TextStyle_GRv = new A.TextStyle(true, B.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity bodySmall", null, null, null); B.TextStyle_0Wv = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity labelLarge", null, null, null); B.TextStyle_Au4 = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity labelMedium", null, null, null); B.TextStyle_Wby = new A.TextStyle(true, B.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteRedwoodCity labelSmall", null, null, null); B.TextTheme_uDC = new A.TextTheme(B.TextStyle_01, B.TextStyle_woc0, B.TextStyle_02, B.TextStyle_EKj, B.TextStyle_sIv0, B.TextStyle_oyU, B.TextStyle_Feh, B.TextStyle_A2C, B.TextStyle_ww8, B.TextStyle_chs, B.TextStyle_int, B.TextStyle_GRv, B.TextStyle_0Wv, B.TextStyle_Au4, B.TextStyle_Wby); B.TextStyle_NAI = new A.TextStyle(false, null, null, null, null, null, 112, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall displayLarge 2014", null, null, null); B.TextStyle_wEo = new A.TextStyle(false, null, null, null, null, null, 56, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall displayMedium 2014", null, null, null); B.TextStyle_ieL = new A.TextStyle(false, null, null, null, null, null, 45, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall displaySmall 2014", null, null, null); B.TextStyle_iMW = new A.TextStyle(false, null, null, null, null, null, 40, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall headlineLarge 2014", null, null, null); B.TextStyle_ahs = new A.TextStyle(false, null, null, null, null, null, 34, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall headlineMedium 2014", null, null, null); B.TextStyle_wEQ = new A.TextStyle(false, null, null, null, null, null, 24, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall headlineSmall 2014", null, null, null); B.TextStyle_jGK = new A.TextStyle(false, null, null, null, null, null, 21, B.FontWeight_6, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall titleLarge 2014", null, null, null); B.TextStyle_p6N = new A.TextStyle(false, null, null, null, null, null, 17, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall titleMedium 2014", null, null, null); B.TextStyle_dzh = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_4, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall titleSmall 2014", null, null, null); B.TextStyle_Auo = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_6, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall bodyLarge 2014", null, null, null); B.TextStyle_NQk0 = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall bodyMedium 2014", null, null, null); B.TextStyle_ivX = new A.TextStyle(false, null, null, null, null, null, 13, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall bodySmall 2014", null, null, null); B.TextStyle_aL3 = new A.TextStyle(false, null, null, null, null, null, 15, B.FontWeight_6, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall labelLarge 2014", null, null, null); B.TextStyle_HWB = new A.TextStyle(false, null, null, null, null, null, 12, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall labelMedium 2014", null, null, null); B.TextStyle_oOy = new A.TextStyle(false, null, null, null, null, null, 11, B.FontWeight_3, null, null, null, B.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall labelSmall 2014", null, null, null); B.TextTheme_uww = new A.TextTheme(B.TextStyle_NAI, B.TextStyle_wEo, B.TextStyle_ieL, B.TextStyle_iMW, B.TextStyle_ahs, B.TextStyle_wEQ, B.TextStyle_jGK, B.TextStyle_p6N, B.TextStyle_dzh, B.TextStyle_Auo, B.TextStyle_NQk0, B.TextStyle_ivX, B.TextStyle_aL3, B.TextStyle_HWB, B.TextStyle_oOy); B.TextStyle_65W = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino displayLarge", null, null, null); B.TextStyle_gvg = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino displayMedium", null, null, null); B.TextStyle_kGg = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino displaySmall", null, null, null); B.TextStyle_wz6 = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino headlineLarge", null, null, null); B.TextStyle_alT = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino headlineMedium", null, null, null); B.TextStyle_D9d = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino headlineSmall", null, null, null); B.TextStyle_inH0 = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino titleLarge", null, null, null); B.TextStyle_b1Q = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino titleMedium", null, null, null); B.TextStyle_cYv = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino titleSmall", null, null, null); B.TextStyle_qtI = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino bodyLarge", null, null, null); B.TextStyle_GZw = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino bodyMedium", null, null, null); B.TextStyle_yPV = new A.TextStyle(true, B.Color_3019898879, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino bodySmall", null, null, null); B.TextStyle_YCB = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino labelLarge", null, null, null); B.TextStyle_o4Q = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino labelMedium", null, null, null); B.TextStyle_KI5 = new A.TextStyle(true, B.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, "whiteCupertino labelSmall", null, null, null); B.TextTheme_vru = new A.TextTheme(B.TextStyle_65W, B.TextStyle_gvg, B.TextStyle_kGg, B.TextStyle_wz6, B.TextStyle_alT, B.TextStyle_D9d, B.TextStyle_inH0, B.TextStyle_b1Q, B.TextStyle_cYv, B.TextStyle_qtI, B.TextStyle_GZw, B.TextStyle_yPV, B.TextStyle_YCB, B.TextStyle_o4Q, B.TextStyle_KI5); B.TextWidthBasis_1 = new A.TextWidthBasis(1, "longestLine"); B.Text_OPN = new A.Text("", null, null, null, null, null, null, null, null, null, null); B.ThemeMode_0 = new A.ThemeMode(0, "system"); B.Threshold_0 = new A.Threshold(0); B.Threshold_znv = new A.Threshold(0.5); B.TickLabelAnchor_0 = new A.TickLabelAnchor(0, "before"); B.TickLabelAnchor_1 = new A.TickLabelAnchor(1, "centered"); B.TickLabelAnchor_2 = new A.TickLabelAnchor(2, "after"); B.TickLabelAnchor_3 = new A.TickLabelAnchor(3, "inside"); B.TickLabelJustification_0 = new A.TickLabelJustification(0, "inside"); B.TickerCanceled_null = new A.TickerCanceled(null); B.TileMode_0 = new A.TileMode(0, "clamp"); B.TileMode_3 = new A.TileMode(3, "decal"); B.TimeOfDayFormat_0 = new A.TimeOfDayFormat(0, "HH_colon_mm"); B.TimeOfDayFormat_2 = new A.TimeOfDayFormat(2, "frenchCanadian"); B.TimeOfDayFormat_3 = new A.TimeOfDayFormat(3, "H_colon_mm"); B.TimeOfDayFormat_4 = new A.TimeOfDayFormat(4, "h_colon_mm_space_a"); B.TimeOfDayFormat_5 = new A.TimeOfDayFormat(5, "a_space_h_colon_mm"); B.TimePickerThemeData_10O = new A.TimePickerThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.ToggleButtonsThemeData_UsI = new A.ToggleButtonsThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.Tolerance_Gdw = new A.Tolerance(0.001, 0.001); B.Tolerance_qbZ = new A.Tolerance(0.01, 1 / 0); B.ToolbarOptions_false_false_false_false = new A.ToolbarOptions(false, false, false, false); B.ToolbarOptions_false_false_true_true = new A.ToolbarOptions(false, false, true, true); B.ToolbarOptions_true_false_false_true = new A.ToolbarOptions(true, false, false, true); B.ToolbarOptions_true_true_true_true = new A.ToolbarOptions(true, true, true, true); B.TooltipThemeData_kSE = new A.TooltipThemeData(null, null, null, null, null, null, null, null); B.TooltipTriggerMode_1 = new A.TooltipTriggerMode(1, "longPress"); B.TooltipTriggerMode_2 = new A.TooltipTriggerMode(2, "tap"); B.TransformKind_0 = new A.TransformKind(0, "identity"); B.TransformKind_1 = new A.TransformKind(1, "transform2d"); B.TransformKind_2 = new A.TransformKind(2, "complex"); B.Type_0Jp0 = A.typeLiteral("ExtendSelectionToDocumentBoundaryIntent"); B.Type_0Jp = A.typeLiteral("ExtendSelectionToNextWordBoundaryIntent"); B.Type_23B = A.typeLiteral("ExtendSelectionToLineBreakIntent"); B.Type_3dk = A.typeLiteral("ExtendSelectionByCharacterIntent"); B.Type_46c = A.typeLiteral("ScrollToDocumentBoundaryIntent"); B.Type_4mo = A.typeLiteral("AutocompletePreviousOptionIntent"); B.Type_ActivateIntent_OT9 = A.typeLiteral("ActivateIntent"); B.Type_AppLocalization_KyD = A.typeLiteral("AppLocalization"); B.Type_AutocompleteNextOptionIntent_n0f = A.typeLiteral("AutocompleteNextOptionIntent"); B.Type_BigInt_8OV = A.typeLiteral("BigInt"); B.Type_BoolJsonObject_8HQ = A.typeLiteral("BoolJsonObject"); B.Type_ButtonActivateIntent_6Ij = A.typeLiteral("ButtonActivateIntent"); B.Type_ByteBuffer_RkP = A.typeLiteral("ByteBuffer"); B.Type_ByteData_zNC = A.typeLiteral("ByteData"); B.Type_Color_MG2 = A.typeLiteral("Color"); B.Type_CopySelectionTextIntent_T5o = A.typeLiteral("CopySelectionTextIntent"); B.Type_DateTime_8AS = A.typeLiteral("DateTime"); B.Type_DeleteCharacterIntent_NYh = A.typeLiteral("DeleteCharacterIntent"); B.Type_DeleteToLineBreakIntent_MEg = A.typeLiteral("DeleteToLineBreakIntent"); B.Type_DirectionalFocusIntent_evN = A.typeLiteral("DirectionalFocusIntent"); B.Type_DismissIntent_Fb0 = A.typeLiteral("DismissIntent"); B.Type_DoNothingIntent_IQR = A.typeLiteral("DoNothingIntent"); B.Type_DoubleTapGestureRecognizer_oyU = A.typeLiteral("DoubleTapGestureRecognizer"); B.Type_Duration_SnA = A.typeLiteral("Duration"); B.Type_Float32List_LB7 = A.typeLiteral("Float32List"); B.Type_Float64List_LB7 = A.typeLiteral("Float64List"); B.Type_ForcePressGestureRecognizer_TN2 = A.typeLiteral("ForcePressGestureRecognizer"); B.Type_I8o = A.typeLiteral("PlaceholderSpanIndexSemanticsTag"); B.Type_InsertTabIntent_EKj = A.typeLiteral("InsertTabIntent"); B.Type_Int16List_uXf = A.typeLiteral("Int16List"); B.Type_Int32List_O50 = A.typeLiteral("Int32List"); B.Type_Int64_gc6 = A.typeLiteral("Int64"); B.Type_Int8List_ekJ = A.typeLiteral("Int8List"); B.Type_JSObject_8k0 = A.typeLiteral("JSObject"); B.Type_JsonObject_gyf = A.typeLiteral("JsonObject"); B.Type_LabeledGlobalKey_6TW = A.typeLiteral("LabeledGlobalKey>"); B.Type_ListJsonObject_yPV = A.typeLiteral("ListJsonObject"); B.Type_LongPressGestureRecognizer_46y = A.typeLiteral("LongPressGestureRecognizer"); B.Type_MapJsonObject_bBG = A.typeLiteral("MapJsonObject"); B.Type_MaterialLocalizations_flR = A.typeLiteral("MaterialLocalizations"); B.Type_NextFocusIntent_6xB = A.typeLiteral("NextFocusIntent"); B.Type_Null_Yyn = A.typeLiteral("Null"); B.Type_NumJsonObject_H9C = A.typeLiteral("NumJsonObject"); B.Type_ObjectKey_Gsr = A.typeLiteral("ObjectKey"); B.Type_PanGestureRecognizer_bbH = A.typeLiteral("PanGestureRecognizer"); B.Type_PasteTextIntent_i6t = A.typeLiteral("PasteTextIntent"); B.Type_PreviousFocusIntent_wsa = A.typeLiteral("PreviousFocusIntent"); B.Type_PrioritizedIntents_fLu = A.typeLiteral("PrioritizedIntents"); B.Type_RedoTextIntent_yzJ = A.typeLiteral("RedoTextIntent"); B.Type_RegExp_Eeh = A.typeLiteral("RegExp"); B.Type_ReplaceTextIntent_S40 = A.typeLiteral("ReplaceTextIntent"); B.Type_RequestFocusIntent_OPB = A.typeLiteral("RequestFocusIntent"); B.Type_ScaleGestureRecognizer_s8I = A.typeLiteral("ScaleGestureRecognizer"); B.Type_ScrollIntent_mpH = A.typeLiteral("ScrollIntent"); B.Type_SelectAllTextIntent_5TD = A.typeLiteral("SelectAllTextIntent"); B.Type_ShapeBorderClipper_QWG = A.typeLiteral("ShapeBorderClipper"); B.Type_Shortcuts_6TW = A.typeLiteral("Shortcuts"); B.Type_StringJsonObject_GAC = A.typeLiteral("StringJsonObject"); B.Type_TapGestureRecognizer_62h = A.typeLiteral("TapGestureRecognizer"); B.Type_TapSequenceGestureRecognizer_7F1 = A.typeLiteral("TapSequenceGestureRecognizer"); B.Type_TimeOfDay_JJ0 = A.typeLiteral("TimeOfDay"); B.Type_Uint16List_2bx = A.typeLiteral("Uint16List"); B.Type_Uint32List_2bx = A.typeLiteral("Uint32List"); B.Type_Uint8ClampedList_Jik = A.typeLiteral("Uint8ClampedList"); B.Type_Uint8List_WLA = A.typeLiteral("Uint8List"); B.Type_UndoTextIntent_yzJ = A.typeLiteral("UndoTextIntent"); B.Type_UpdateSelectionIntent_RH1 = A.typeLiteral("UpdateSelectionIntent"); B.Type_Uri_EFX = A.typeLiteral("Uri"); B.Type_Vq1 = A.typeLiteral("HorizontalDragGestureRecognizer"); B.Type_WidgetsLocalizations_43h = A.typeLiteral("WidgetsLocalizations"); B.Type__AnyTapGestureRecognizer_5RQ = A.typeLiteral("_AnyTapGestureRecognizer"); B.Type__ModalScopeState_Yap = A.typeLiteral("_ModalScopeState<@>"); B.Type__ThumbPressGestureRecognizer_KUi = A.typeLiteral("_ThumbPressGestureRecognizer"); B.Type__TrackTapGestureRecognizer_LjJ = A.typeLiteral("_TrackTapGestureRecognizer"); B.Type_ejq = A.typeLiteral("ExtendSelectionVerticallyToAdjacentLineIntent"); B.Type_kr3 = A.typeLiteral("ExpandSelectionToDocumentBoundaryIntent"); B.Type_mLh = A.typeLiteral("VerticalDragGestureRecognizer"); B.Type_muk = A.typeLiteral("DoNothingAndStopPropagationTextIntent"); B.Type_mya = A.typeLiteral("ExtendSelectionToNextWordBoundaryOrCaretLocationIntent"); B.Type_num_cv7 = A.typeLiteral("num"); B.Type_oyU = A.typeLiteral("ExpandSelectionToLineBreakIntent"); B.Type_s8I = A.typeLiteral("DoNothingAndStopPropagationIntent"); B.Type_wu8 = A.typeLiteral("DeleteToNextWordBoundaryIntent"); B.UnderlineInputBorder_qFk = new A.UnderlineInputBorder(B.BorderRadius_tLn1, B.BorderSide_27z); B.UnfocusDisposition_0 = new A.UnfocusDisposition(0, "scope"); B.UnfocusDisposition_1 = new A.UnfocusDisposition(1, "previouslyFocusedChild"); B.UnicodeRange_11264_55297_TextDirection_1 = new A.UnicodeRange(11264, 55297, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_1425_1775_TextDirection_0 = new A.UnicodeRange(1425, 1775, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_1786_2303_TextDirection_0 = new A.UnicodeRange(1786, 2303, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_192_214_TextDirection_1 = new A.UnicodeRange(192, 214, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_216_246_TextDirection_1 = new A.UnicodeRange(216, 246, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_2304_8191_TextDirection_1 = new A.UnicodeRange(2304, 8191, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_248_696_TextDirection_1 = new A.UnicodeRange(248, 696, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_55298_55299_TextDirection_0 = new A.UnicodeRange(55298, 55299, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_55300_55353_TextDirection_1 = new A.UnicodeRange(55300, 55353, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_55354_55355_TextDirection_0 = new A.UnicodeRange(55354, 55355, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_55356_56319_TextDirection_1 = new A.UnicodeRange(55356, 56319, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_63744_64284_TextDirection_1 = new A.UnicodeRange(63744, 64284, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_64285_65023_TextDirection_0 = new A.UnicodeRange(64285, 65023, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_65024_65135_TextDirection_1 = new A.UnicodeRange(65024, 65135, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_65136_65276_TextDirection_0 = new A.UnicodeRange(65136, 65276, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_65277_65535_TextDirection_1 = new A.UnicodeRange(65277, 65535, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_65_90_TextDirection_1 = new A.UnicodeRange(65, 90, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_768_1424_TextDirection_1 = new A.UnicodeRange(768, 1424, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_8206_8206_TextDirection_1 = new A.UnicodeRange(8206, 8206, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_8207_8207_TextDirection_0 = new A.UnicodeRange(8207, 8207, B.TextDirection_0, type$.UnicodeRange_legacy_TextDirection); B.UnicodeRange_97_122_TextDirection_1 = new A.UnicodeRange(97, 122, B.TextDirection_1, type$.UnicodeRange_legacy_TextDirection); B.UpdateState_0 = new A.UpdateState(0, "initial"); B.UpdateState_1 = new A.UpdateState(1, "loading"); B.UpdateState_2 = new A.UpdateState(2, "done"); B.UpstreamDownstreamNodePosition_TextAffinity_0 = new A.UpstreamDownstreamNodePosition(B.TextAffinity_0); B.UpstreamDownstreamNodePosition_TextAffinity_1 = new A.UpstreamDownstreamNodePosition(B.TextAffinity_1); B.UserPermission_create = new A.UserPermission("create"); B.UserPermission_edit = new A.UserPermission("edit"); B.UserPermission_view = new A.UserPermission("view"); B.Utf8Decoder_false = new A.Utf8Decoder(false); B.Utf8Decoder_true = new A.Utf8Decoder(true); B.ValueKey_CrossFadeState_0 = new A.ValueKey(B.CrossFadeState_0, type$.ValueKey_legacy_CrossFadeState); B.ValueKey_CrossFadeState_1 = new A.ValueKey(B.CrossFadeState_1, type$.ValueKey_legacy_CrossFadeState); B.ValueKey_U86 = new A.ValueKey("time-picker-dial", type$.ValueKey_legacy_String); B.VelocityEstimate_MMm = new A.VelocityEstimate(B.Offset_0_0, 0, B.Duration_0, B.Offset_0_0); B.VerticalDirection_0 = new A.VerticalDirection(0, "up"); B.VerticalDirection_1 = new A.VerticalDirection(1, "down"); B.ViewMeasuredSizes_0_0_0_0 = new A.ViewMeasuredSizes(0, 0, 0, 0); B.ViewportEdge_0 = new A.ViewportEdge(0, "leading"); B.ViewportEdge_1 = new A.ViewportEdge(1, "trailing"); B.VisualDensity_0_0 = new A.VisualDensity(0, 0); B.VisualDensity_m2_m2 = new A.VisualDensity(-2, -2); B.WrapAlignment_0 = new A.WrapAlignment(0, "start"); B.WrapAlignment_1 = new A.WrapAlignment(1, "end"); B.WrapAlignment_2 = new A.WrapAlignment(2, "center"); B.WrapAlignment_4 = new A.WrapAlignment(4, "spaceAround"); B.WrapCrossAlignment_0 = new A.WrapCrossAlignment(0, "start"); B.WrapCrossAlignment_2 = new A.WrapCrossAlignment(2, "center"); B._ActionLevel_0 = new A._ActionLevel(0, "top"); B._ActionLevel_1 = new A._ActionLevel(1, "view"); B._AnimationDirection_0 = new A._AnimationDirection(0, "forward"); B._AnimationDirection_1 = new A._AnimationDirection(1, "reverse"); B._CheckableKind_0 = new A._CheckableKind(0, "checkbox"); B._CheckableKind_1 = new A._CheckableKind(1, "radio"); B._CheckableKind_2 = new A._CheckableKind(2, "toggle"); B._ComparisonResult_0 = new A._ComparisonResult(0, "inside"); B._ComparisonResult_1 = new A._ComparisonResult(1, "higher"); B._ComparisonResult_2 = new A._ComparisonResult(2, "lower"); B.Color_67108864 = new A.Color(67108864); B.List_Color_67108864_Color_0 = A._setArrayType(makeConstList([B.Color_67108864, B.Color_0]), type$.JSArray_legacy_Color); B._CupertinoEdgeShadowDecoration_0m8 = new A._CupertinoEdgeShadowDecoration(B.List_Color_67108864_Color_0); B._CupertinoEdgeShadowDecoration_null = new A._CupertinoEdgeShadowDecoration(null); B._DragMode_0 = new A._DragMode(0, "collapsed"); B._DragMode_1 = new A._DragMode(1, "base"); B._DragMode_2 = new A._DragMode(2, "extent"); B._DragState_0 = new A._DragState(0, "ready"); B._DragState_1 = new A._DragState(1, "possible"); B._DragState_2 = new A._DragState(2, "accepted"); B._ElementLifecycle_0 = new A._ElementLifecycle(0, "initial"); B._ElementLifecycle_1 = new A._ElementLifecycle(1, "active"); B._ElementLifecycle_2 = new A._ElementLifecycle(2, "inactive"); B._ElementLifecycle_3 = new A._ElementLifecycle(3, "defunct"); B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable = new A._EnabledAndDisabledMouseCursor(B.SystemMouseCursor_click, "clickable"); B._EnabledAndDisabledMouseCursor_SystemMouseCursor_text_textable = new A._EnabledAndDisabledMouseCursor(B.SystemMouseCursor_text, "textable"); B._FindBreakDirection_1 = new A._FindBreakDirection(1); B._FindBreakDirection_m1 = new A._FindBreakDirection(-1); B._FloatingActionButtonType_0 = new A._FloatingActionButtonType(0, "regular"); B._FloatingActionButtonType_1 = new A._FloatingActionButtonType(1, "small"); B._FloatingActionButtonType_2 = new A._FloatingActionButtonType(2, "large"); B._FloatingActionButtonType_3 = new A._FloatingActionButtonType(3, "extended"); B._Focus_0 = new A._Focus(0, "master"); B._Focus_1 = new A._Focus(1, "detail"); B._ForceState_0 = new A._ForceState(0, "ready"); B._ForceState_1 = new A._ForceState(1, "possible"); B._ForceState_2 = new A._ForceState(2, "accepted"); B._ForceState_3 = new A._ForceState(3, "started"); B._ForceState_4 = new A._ForceState(4, "peaked"); B._GestureType_0 = new A._GestureType(0, "pan"); B._GestureType_1 = new A._GestureType(1, "scale"); B._GestureType_2 = new A._GestureType(2, "rotate"); B._GlowState_0 = new A._GlowState(0, "idle"); B._GlowState_1 = new A._GlowState(1, "absorb"); B._GlowState_2 = new A._GlowState(2, "pull"); B._GlowState_3 = new A._GlowState(3, "recede"); B._HighlightType_0 = new A._HighlightType(0, "pressed"); B._HighlightType_1 = new A._HighlightType(1, "hover"); B._HighlightType_2 = new A._HighlightType(2, "focus"); B._HorizontalJustification_0 = new A._HorizontalJustification(0, "leftDrawArea"); B._HorizontalJustification_1 = new A._HorizontalJustification(1, "left"); B._HorizontalJustification_2 = new A._HorizontalJustification(2, "rightDrawArea"); B._HorizontalJustification_3 = new A._HorizontalJustification(3, "right"); B._IntrinsicDimension_0 = new A._IntrinsicDimension(0, "minWidth"); B._IntrinsicDimension_1 = new A._IntrinsicDimension(1, "maxWidth"); B._IntrinsicDimension_2 = new A._IntrinsicDimension(2, "minHeight"); B._IntrinsicDimension_3 = new A._IntrinsicDimension(3, "maxHeight"); B._IterationMarker_null_2 = new A._IterationMarker(null, 2); B._LayoutMode_0 = new A._LayoutMode(0, "auto"); B._LayoutMode_1 = new A._LayoutMode(1, "lateral"); B._LayoutMode_2 = new A._LayoutMode(2, "nested"); B._LicenseEntryWithLineBreaksParserState_0 = new A._LicenseEntryWithLineBreaksParserState(0, "beforeParagraph"); B._LicenseEntryWithLineBreaksParserState_1 = new A._LicenseEntryWithLineBreaksParserState(1, "inParagraph"); B._MdiIconData_2C70 = new A._MdiIconData(983356, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_2C7 = new A._MdiIconData(984891, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_2Nv0 = new A._MdiIconData(983254, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_2Nv = new A._MdiIconData(984960, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_43h0 = new A._MdiIconData(983596, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_43h = new A._MdiIconData(987236, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_4ax = new A._MdiIconData(985108, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7T10 = new A._MdiIconData(983090, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7T1 = new A._MdiIconData(983093, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7T12 = new A._MdiIconData(983462, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7T13 = new A._MdiIconData(984370, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7T11 = new A._MdiIconData(985024, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7vC0 = new A._MdiIconData(983802, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_7vC = new A._MdiIconData(984515, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_90Y1 = new A._MdiIconData(983577, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_90Y2 = new A._MdiIconData(984545, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_90Y = new A._MdiIconData(984688, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_90Y0 = new A._MdiIconData(985428, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_AmO2 = new A._MdiIconData(983359, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_AmO0 = new A._MdiIconData(984211, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_AmO = new A._MdiIconData(984241, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_AmO1 = new A._MdiIconData(984355, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_CtR = new A._MdiIconData(985228, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_EuK0 = new A._MdiIconData(983267, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_EuK = new A._MdiIconData(983492, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_EuK3 = new A._MdiIconData(984034, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_EuK1 = new A._MdiIconData(984402, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_EuK2 = new A._MdiIconData(986194, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_FFB = new A._MdiIconData(983863, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_GDY = new A._MdiIconData(985231, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Gjc0 = new A._MdiIconData(983360, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Gjc = new A._MdiIconData(984216, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Gjc1 = new A._MdiIconData(986034, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_I2F = new A._MdiIconData(983747, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_I2F0 = new A._MdiIconData(986619, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_IAW = new A._MdiIconData(984620, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_MO91 = new A._MdiIconData(983590, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_MO93 = new A._MdiIconData(983591, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_MO90 = new A._MdiIconData(983675, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_MO92 = new A._MdiIconData(983874, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_MO9 = new A._MdiIconData(984499, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Oe4 = new A._MdiIconData(983833, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Qa61 = new A._MdiIconData(983363, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Qa6 = new A._MdiIconData(983391, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Qa60 = new A._MdiIconData(984299, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_SXh = new A._MdiIconData(984388, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Skt0 = new A._MdiIconData(983572, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Skt = new A._MdiIconData(983684, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_UEg0 = new A._MdiIconData(983579, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_UEg = new A._MdiIconData(987446, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Up3 = new A._MdiIconData(983358, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_Up30 = new A._MdiIconData(986032, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_aAu = new A._MdiIconData(983716, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_aAu0 = new A._MdiIconData(984512, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_agj = new A._MdiIconData(984840, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_atK = new A._MdiIconData(986425, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_dDd = new A._MdiIconData(988482, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_dEB0 = new A._MdiIconData(983279, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_dEB = new A._MdiIconData(987119, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_egL2 = new A._MdiIconData(983338, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_egL1 = new A._MdiIconData(983394, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_egL0 = new A._MdiIconData(983962, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_egL = new A._MdiIconData(984048, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_egL3 = new A._MdiIconData(984218, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_gg9 = new A._MdiIconData(985301, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_id2 = new A._MdiIconData(984203, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_ifn0 = new A._MdiIconData(983841, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_ifn = new A._MdiIconData(983869, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_jVE0 = new A._MdiIconData(983527, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_jVE = new A._MdiIconData(983583, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_jVE1 = new A._MdiIconData(983922, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_kmg = new A._MdiIconData(986972, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_omH = new A._MdiIconData(986661, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_ouN = new A._MdiIconData(983871, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_rJg = new A._MdiIconData(984430, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_sUr = new A._MdiIconData(983564, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_sUr0 = new A._MdiIconData(987176, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_uXI = new A._MdiIconData(987743, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_ujl = new A._MdiIconData(984012, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_wMy1 = new A._MdiIconData(983559, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_wMy0 = new A._MdiIconData(983814, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_wMy = new A._MdiIconData(983870, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_yrt = new A._MdiIconData(985308, "Material Design Icons", "material_design_icons_flutter", false); B._MdiIconData_yvL = new A._MdiIconData(983829, "Material Design Icons", "material_design_icons_flutter", false); B._MissingCase_0 = new A._MissingCase(0, "value"); B._MixedEdgeInsets_QWq = new A._MixedEdgeInsets(1 / 0, 1 / 0, 1 / 0, 1 / 0, 1 / 0, 1 / 0); B._ModifierSidePair_ModifierKey_0_KeyboardSide_0 = new A._ModifierSidePair(B.ModifierKey_0, B.KeyboardSide_0); B.KeyboardSide_1 = new A.KeyboardSide(1, "left"); B._ModifierSidePair_ModifierKey_0_KeyboardSide_1 = new A._ModifierSidePair(B.ModifierKey_0, B.KeyboardSide_1); B.KeyboardSide_2 = new A.KeyboardSide(2, "right"); B._ModifierSidePair_ModifierKey_0_KeyboardSide_2 = new A._ModifierSidePair(B.ModifierKey_0, B.KeyboardSide_2); B._ModifierSidePair_ModifierKey_0_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_0, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_1_KeyboardSide_0 = new A._ModifierSidePair(B.ModifierKey_1, B.KeyboardSide_0); B._ModifierSidePair_ModifierKey_1_KeyboardSide_1 = new A._ModifierSidePair(B.ModifierKey_1, B.KeyboardSide_1); B._ModifierSidePair_ModifierKey_1_KeyboardSide_2 = new A._ModifierSidePair(B.ModifierKey_1, B.KeyboardSide_2); B._ModifierSidePair_ModifierKey_1_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_1, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_2_KeyboardSide_0 = new A._ModifierSidePair(B.ModifierKey_2, B.KeyboardSide_0); B._ModifierSidePair_ModifierKey_2_KeyboardSide_1 = new A._ModifierSidePair(B.ModifierKey_2, B.KeyboardSide_1); B._ModifierSidePair_ModifierKey_2_KeyboardSide_2 = new A._ModifierSidePair(B.ModifierKey_2, B.KeyboardSide_2); B._ModifierSidePair_ModifierKey_2_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_2, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_3_KeyboardSide_0 = new A._ModifierSidePair(B.ModifierKey_3, B.KeyboardSide_0); B._ModifierSidePair_ModifierKey_3_KeyboardSide_1 = new A._ModifierSidePair(B.ModifierKey_3, B.KeyboardSide_1); B._ModifierSidePair_ModifierKey_3_KeyboardSide_2 = new A._ModifierSidePair(B.ModifierKey_3, B.KeyboardSide_2); B._ModifierSidePair_ModifierKey_3_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_3, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_4_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_4, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_5_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_5, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_6_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_6, B.KeyboardSide_3); B._ModifierSidePair_ModifierKey_7_KeyboardSide_3 = new A._ModifierSidePair(B.ModifierKey_7, B.KeyboardSide_3); B._NullWidget_null1 = new A._NullWidget(null); B._NullWidget_null0 = new A._NullWidget0(null); B._NullWidget_null = new A._NullWidget1(null); B._NullWidget_null2 = new A._NullWidget3(null); B._ParagraphCommandType_0 = new A._ParagraphCommandType(0, "addText"); B._ParagraphCommandType_2 = new A._ParagraphCommandType(2, "pushStyle"); B._ParagraphCommandType_3 = new A._ParagraphCommandType(3, "addPlaceholder"); B._ParagraphCommandType_1 = new A._ParagraphCommandType(1, "pop"); B._ParagraphCommand_6TA = new A._ParagraphCommand(B._ParagraphCommandType_1, null, null, null); B._PixelVerticalDirection_0 = new A._PixelVerticalDirection(0, "over"); B._PixelVerticalDirection_1 = new A._PixelVerticalDirection(1, "center"); B._PixelVerticalDirection_2 = new A._PixelVerticalDirection(2, "under"); B._PlaceholderType_0 = new A._PlaceholderType(0, "none"); B._PlaceholderType_1 = new A._PlaceholderType(1, "static"); B._PlaceholderType_2 = new A._PlaceholderType(2, "progress"); B._RefreshIndicatorMode_0 = new A._RefreshIndicatorMode(0, "drag"); B._RefreshIndicatorMode_1 = new A._RefreshIndicatorMode(1, "armed"); B._RefreshIndicatorMode_2 = new A._RefreshIndicatorMode(2, "snap"); B._RefreshIndicatorMode_3 = new A._RefreshIndicatorMode(3, "refresh"); B._RefreshIndicatorMode_4 = new A._RefreshIndicatorMode(4, "done"); B._RefreshIndicatorMode_5 = new A._RefreshIndicatorMode(5, "canceled"); B._RouteLifecycle_1 = new A._RouteLifecycle(1, "add"); B._RouteLifecycle_10 = new A._RouteLifecycle(10, "remove"); B._RouteLifecycle_11 = new A._RouteLifecycle(11, "popping"); B._RouteLifecycle_12 = new A._RouteLifecycle(12, "removing"); B._RouteLifecycle_13 = new A._RouteLifecycle(13, "dispose"); B._RouteLifecycle_14 = new A._RouteLifecycle(14, "disposed"); B._RouteLifecycle_2 = new A._RouteLifecycle(2, "adding"); B._RouteLifecycle_3 = new A._RouteLifecycle(3, "push"); B._RouteLifecycle_4 = new A._RouteLifecycle(4, "pushReplace"); B._RouteLifecycle_5 = new A._RouteLifecycle(5, "pushing"); B._RouteLifecycle_6 = new A._RouteLifecycle(6, "replace"); B._RouteLifecycle_7 = new A._RouteLifecycle(7, "idle"); B._RouteLifecycle_8 = new A._RouteLifecycle(8, "pop"); B._RouteLifecycle_9 = new A._RouteLifecycle(9, "complete"); B._ScaffoldSlot_0 = new A._ScaffoldSlot(0, "body"); B._ScaffoldSlot_1 = new A._ScaffoldSlot(1, "appBar"); B._ScaffoldSlot_10 = new A._ScaffoldSlot(10, "endDrawer"); B._ScaffoldSlot_11 = new A._ScaffoldSlot(11, "statusBar"); B._ScaffoldSlot_2 = new A._ScaffoldSlot(2, "bodyScrim"); B._ScaffoldSlot_3 = new A._ScaffoldSlot(3, "bottomSheet"); B._ScaffoldSlot_4 = new A._ScaffoldSlot(4, "snackBar"); B._ScaffoldSlot_5 = new A._ScaffoldSlot(5, "materialBanner"); B._ScaffoldSlot_6 = new A._ScaffoldSlot(6, "persistentFooter"); B._ScaffoldSlot_7 = new A._ScaffoldSlot(7, "bottomNavigationBar"); B._ScaffoldSlot_8 = new A._ScaffoldSlot(8, "floatingActionButton"); B._ScaffoldSlot_9 = new A._ScaffoldSlot(9, "drawer"); B._ScaleState_0 = new A._ScaleState(0, "ready"); B._ScaleState_1 = new A._ScaleState(1, "possible"); B._ScaleState_2 = new A._ScaleState(2, "accepted"); B._ScaleState_3 = new A._ScaleState(3, "started"); B._ScribblePlaceholder_IBZ = new A._ScribblePlaceholder(B.Size_0_0, B.SizedBox_null_null_null_null, B.PlaceholderAlignment_4, null, null); B.Size_100_0 = new A.Size(100, 0); B._ScribblePlaceholder_IBZ0 = new A._ScribblePlaceholder(B.Size_100_0, B.SizedBox_null_null_null_null, B.PlaceholderAlignment_4, null, null); B._StateLifecycle_0 = new A._StateLifecycle(0, "created"); B._StretchState_0 = new A._StretchState(0, "idle"); B._StretchState_1 = new A._StretchState(1, "absorb"); B._StretchState_2 = new A._StretchState(2, "pull"); B._StretchState_3 = new A._StretchState(3, "recede"); B._StringStackTrace_3uE = new A._StringStackTrace(""); B._SwitchListTileType_0 = new A._SwitchListTileType(0, "material"); B._SwitchType_0 = new A._SwitchType(0, "material"); B._TextThemeDefaultsBuilder_1yH = new A._TextThemeDefaultsBuilder(B.CupertinoDynamicColor_qQo, B.CupertinoDynamicColor_YIZ); B._ToolbarSlot_0 = new A._ToolbarSlot(0, "leading"); B._ToolbarSlot_1 = new A._ToolbarSlot(1, "middle"); B._ToolbarSlot_2 = new A._ToolbarSlot(2, "trailing"); B._TrainHoppingMode_0 = new A._TrainHoppingMode(0, "minimize"); B._TrainHoppingMode_1 = new A._TrainHoppingMode(1, "maximize"); B._WordWrapParseMode_0 = new A._WordWrapParseMode(0, "inSpace"); B._WordWrapParseMode_1 = new A._WordWrapParseMode(1, "inWord"); B._WordWrapParseMode_2 = new A._WordWrapParseMode(2, "atBreak"); B._ZoneFunction__RootZone__rootScheduleMicrotask = new A._ZoneFunction(B.C__RootZone, A.async___rootScheduleMicrotask$closure(), A.findType("_ZoneFunction<~(Zone*,ZoneDelegate*,Zone*,~()*)*>")); })(); (function staticFields() { $._cachedWebGLVersion = null; $.__canvasKit = A._Cell$named("canvasKit"); $._kWebDecoderExpireDuration = B.Duration_3000000; $._skiaFontCollection = null; $.skiaSceneHost = null; $.SkiaObjects_resurrectableObjects = A._setArrayType([], A.findType("JSArray>")); $.SkiaObjects_cachesToResize = A._setArrayType([], A.findType("JSArray")); $.SkiaObjects__addedCleanupCallback = false; $.Surface__didWarnAboutWebGlInitializationFailure = false; $.SurfaceFactory__instance = null; $._configuration = null; $._flutterViewEmbedder = null; $._fontChangeScheduled = false; $.frameReferences = A._setArrayType([], type$.JSArray_FrameReference_dynamic); $.SvgFilterBuilder__filterIdCounter = 0; $._clipIdCounter = 0; $._recycledCanvases = A._setArrayType([], A.findType("JSArray")); $.paintQueue = A._setArrayType([], type$.JSArray_PaintRequest); $.glRenderer = null; $.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay = false; $.SurfaceSceneBuilder__lastFrameScene = null; $.VertexShaders__baseVertexShader = null; $.retainedSurfaces = A._setArrayType([], type$.JSArray_PersistedSurface); $._hotRestartListeners = A._setArrayType([], type$.JSArray_of_void_Function); $._initializationState = B.DebugEngineInitializationState_0; $._assetManager = null; $._fontCollection = null; $.Keyboard__instance = null; $.KeyboardBinding__instance = null; $.MouseCursor__instance = null; $.scheduleFrameCallback = null; $.pluginMessageCallHandler = null; $.PointerBinding__instance = null; $._BaseAdapter__listeners = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event); $._BaseAdapter__nativeListeners = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event); $._WheelEventListenerMixin__defaultScrollLineHeight = null; $._PointerState__pointerCount = 0; $._frameTimings = A._setArrayType([], type$.JSArray_FrameTiming); $._vsyncStartMicros = -1; $._buildStartMicros = -1; $._buildFinishMicros = -1; $._rasterStartMicros = -1; $._rasterFinishMicros = -1; $.GlContext____programCache = A._Cell$named("_programCache"); $.OffScreenCanvas__supported = null; $.AccessibilityAnnouncements__instance = null; $.EngineSemanticsOwner__instance = null; $.SemanticsTextEditingStrategy__instance = null; $.Spanometer__rulers = A.LinkedHashMap_LinkedHashMap$_empty(A.findType("TextHeightStyle"), A.findType("TextHeightRuler")); $._lineLookup = null; $._lastStart = -1; $._lastEnd = -1; $._lastText = ""; $._lastCssFont = ""; $._lastWidth = -1; $.formsOnTheDom = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("FormElement")); $._ellipseFeatureDetected = null; $._isUrlStrategySet = false; $._customUrlStrategy = null; $._JS_INTEROP_INTERCEPTOR_TAG = null; $.printToZone = null; $.Primitives__identityHashCodeProperty = null; $.Primitives_timerFrequency = 0; $.Primitives_timerTicks = A._js_helper_Primitives_dateNow$closure(); $.BoundClosure__receiverFieldNameCache = null; $.BoundClosure__interceptorFieldNameCache = null; $.getTagFunction = null; $.alternateTagFunction = null; $.prototypeForTagFunction = null; $.dispatchRecordsForInstanceTags = null; $.interceptorsForUncacheableTags = null; $.initNativeDispatchFlag = null; $._nextCallback = null; $._lastCallback = null; $._lastPriorityCallback = null; $._isInCallbackLoop = false; $.Zone__current = B.C__RootZone; $._toStringVisiting = A._setArrayType([], type$.JSArray_Object); $._BigIntImpl__lastDividendDigits = null; $._BigIntImpl__lastDividendUsed = null; $._BigIntImpl__lastDivisorDigits = null; $._BigIntImpl__lastDivisorUsed = null; $._BigIntImpl____lastQuoRemDigits = A._Cell$named("_lastQuoRemDigits"); $._BigIntImpl____lastQuoRemUsed = A._Cell$named("_lastQuoRemUsed"); $._BigIntImpl____lastRemUsed = A._Cell$named("_lastRemUsed"); $._BigIntImpl____lastRem_nsh = A._Cell$named("_lastRem_nsh"); $._extensions = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("Future(String,Map)")); $._FakeUserTag__instances = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("_FakeUserTag")); $.Timeline__stack = A._setArrayType([], A.findType("JSArray<_SyncBlock?>")); $.Element__parseDocument = null; $.Element__parseRange = null; $.Element__defaultValidator = null; $.Element__defaultSanitizer = null; $._Html5NodeValidator__attributeValidators = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Function); $._Platform__environmentCache = null; $._Platform__cachedOSVersion = null; $.Deflate____config = A._Cell$named("_config"); $._indentingBuiltValueToStringHelperIndent = 0; $.__messages = A._Cell$named("messages"); $._initialized = false; $._singleUnit = function() { var t1 = type$.int; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }(); $._multiUnit = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.List_int); $.FilePickerIO__eventSubscription = null; $.FlutterError_presentError = A.assertions_FlutterError_dumpErrorToConsole$closure(); $.FlutterError__errorCount = 0; $.FlutterError__stackFilters = A._setArrayType([], A.findType("JSArray")); $.BindingBase_debugReassembleConfig = null; $.debugBrightnessOverride = null; $.activeDevToolsServerAddress = null; $.connectedVmServiceUri = null; $.LicenseRegistry__collectors = null; $.debugPrint = A.print__debugPrintThrottled$closure(); $._debugPrintedCharacters = 0; $._debugPrintCompleter = null; $._debugPrintScheduled = false; $.GestureBinding__instance = null; $.Tooltip__openedTooltips = A._setArrayType([], A.findType("JSArray")); $.TooltipState__mouseIn = A.LinkedHashSet_LinkedHashSet$_empty(A.findType("TooltipState")); $.PaintingBinding__instance = null; $._pendingImageSizeInfo = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.ImageSizeInfo); $._lastFrameImageSizeInfo = A.LinkedHashSet_LinkedHashSet$_empty(type$.ImageSizeInfo); $.RendererBinding__instance = null; $.RenderBox__debugIntrinsicsDepth = 0; $.debugProfileLayoutsEnabled = false; $.debugProfilePaintsEnabled = false; $._timeDilation = 1; $.SchedulerBinding__instance = null; $.SemanticsBinding__instance = null; $.CustomSemanticsAction__nextId = 0; $.CustomSemanticsAction__actions = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.CustomSemanticsAction); $.CustomSemanticsAction__ids = A.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.int); $.SemanticsNode__lastIdentifier = 0; $.ServicesBinding__instance = null; $.SystemChrome__pendingStyle = null; $.SystemChrome__latestStyle = null; $.TextInputConnection__nextId = 1; $.WidgetsApp_showPerformanceOverlayOverride = false; $.WidgetsBinding__instance = null; $.debugProfileBuildsEnabled = false; $._ScribbleFocusableState__nextElementIdentifier = 1; $.KeySet__tempHashStore3 = A._setArrayType([0, 0, 0], type$.JSArray_int); $.KeySet__tempHashStore4 = A._setArrayType([0, 0, 0, 0], type$.JSArray_int); $._GlobalCupertinoLocalizationsDelegate__loadedTranslations = A.LinkedHashMap_LinkedHashMap$_empty(type$.Locale, A.findType("Future")); $._MaterialLocalizationsDelegate__loadedTranslations = A.LinkedHashMap_LinkedHashMap$_empty(type$.Locale, A.findType("Future")); $._dateIntlDataInitialized = false; $.currentContext = null; $.ToastManager__instance = null; $._appendRuleSet = A.LinkedHashSet_LinkedHashSet$_empty(A.findType("Rule")); $._customOptions = function() { var t1 = type$.String; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }(); $._linkReferences = A._setArrayType([], type$.JSArray_String); $.Rule__customRules = A._setArrayType([], A.findType("JSArray")); $.Intl__cachedPluralRule = null; $.Intl__cachedPluralLocale = null; $.cachedDateSymbols = null; $.lastDateSymbolLocale = null; $._defaultLocale = null; $.DateFormat__useNativeDigitsByDefault = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.bool); $.DateFormat__digitMatchers = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.RegExp); $._n = 0; $._i = 0; $._precision = null; $._v = 0; $._f = 0; $._t = 0; $.kCustomLabels = A._setArrayType(["address1", "address2", "amount", "balance", "country", "credit", "credit_card", "date", "description", "details", "discount", "due_date", "email", "from", "hours", "id_number", "invoice", "item", "line_total", "paid_to_date", "partial_due", "payment_date", "phone", "po_number", "quantity", "quote", "rate", "service", "statement", "subtotal", "surcharge", "tax", "taxes", "invoice_terms", "quote_terms", "credit_terms", "to", "total", "unit_cost", "valid_until", "vat_number", "website"], type$.JSArray_legacy_String); $.BaseEntity_counter = 0; $.Debouncer_action = null; $.Debouncer_timer = null; $.PersistUIDebouncer_timer = null; $.kGoogleFonts = function() { var _s18_ = "UnifrakturMaguntia", t1 = type$.legacy_String; return A._setArrayType([A.LinkedHashMap_LinkedHashMap$_literal(["value", "ABeeZee", "label", "ABeeZee"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Abel", "label", "Abel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Abril_Fatface", "label", "Abril Fatface"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Aclonica", "label", "Aclonica"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Acme", "label", "Acme"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Actor", "label", "Actor"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Adamina", "label", "Adamina"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Advent_Pro", "label", "Advent Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Aguafina_Script", "label", "Aguafina Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Akronim", "label", "Akronim"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Aladin", "label", "Aladin"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Aldrich", "label", "Aldrich"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alef", "label", "Alef"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya", "label", "Alegreya"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_SC", "label", "Alegreya SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_Sans", "label", "Alegreya Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_Sans_SC", "label", "Alegreya Sans SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alex_Brush", "label", "Alex Brush"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alfa_Slab_One", "label", "Alfa Slab One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alice", "label", "Alice"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alike", "label", "Alike"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Alike_Angular", "label", "Alike Angular"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Allan", "label", "Allan"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Allerta", "label", "Allerta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Allerta_Stencil", "label", "Allerta Stencil"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Allura", "label", "Allura"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra", "label", "Almendra"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra_Display", "label", "Almendra Display"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra_SC", "label", "Almendra SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amarante", "label", "Amarante"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amaranth", "label", "Amaranth"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amatic_SC", "label", "Amatic SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amethysta", "label", "Amethysta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amiri", "label", "Amiri"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Amita", "label", "Amita"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Anaheim", "label", "Anaheim"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Andada", "label", "Andada"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Andika", "label", "Andika"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Angkor", "label", "Angkor"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Annie_Use_Your_Telescope", "label", "Annie Use Your Telescope"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Anonymous_Pro", "label", "Anonymous Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic", "label", "Antic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic_Didone", "label", "Antic Didone"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic_Slab", "label", "Antic Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Anton", "label", "Anton"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arapey", "label", "Arapey"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arbutus", "label", "Arbutus"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arbutus_Slab", "label", "Arbutus Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Architects_Daughter", "label", "Architects Daughter"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Archivo_Black", "label", "Archivo Black"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Archivo_Narrow", "label", "Archivo Narrow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arimo", "label", "Arimo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arizonia", "label", "Arizonia"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Armata", "label", "Armata"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Artifika", "label", "Artifika"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arvo", "label", "Arvo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Arya", "label", "Arya"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Asap", "label", "Asap"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Asar", "label", "Asar"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Asset", "label", "Asset"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Astloch", "label", "Astloch"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Asul", "label", "Asul"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Atomic_Age", "label", "Atomic Age"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Aubrey", "label", "Aubrey"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Audiowide", "label", "Audiowide"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Autour_One", "label", "Autour One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Average", "label", "Average"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Average_Sans", "label", "Average Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Gruesa_Libre", "label", "Averia Gruesa Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Libre", "label", "Averia Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Sans_Libre", "label", "Averia Sans Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Serif_Libre", "label", "Averia Serif Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bad_Script", "label", "Bad Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Balthazar", "label", "Balthazar"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bangers", "label", "Bangers"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Basic", "label", "Basic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Battambang", "label", "Battambang"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Baumans", "label", "Baumans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bayon", "label", "Bayon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Belgrano", "label", "Belgrano"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Belleza", "label", "Belleza"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "BenchNine", "label", "BenchNine"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bentham", "label", "Bentham"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Berkshire_Swash", "label", "Berkshire Swash"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bevan", "label", "Bevan"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bigelow_Rules", "label", "Bigelow Rules"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bigshot_One", "label", "Bigshot One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bilbo", "label", "Bilbo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bilbo_Swash_Caps", "label", "Bilbo Swash Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Biryani", "label", "Biryani"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bitter", "label", "Bitter"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Black_Ops_One", "label", "Black Ops One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bokor", "label", "Bokor"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bonbon", "label", "Bonbon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Boogaloo", "label", "Boogaloo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bowlby_One", "label", "Bowlby One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bowlby_One_SC", "label", "Bowlby One SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Brawler", "label", "Brawler"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bree_Serif", "label", "Bree Serif"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bubblegum_Sans", "label", "Bubblegum Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Bubbler_One", "label", "Bubbler One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Buda", "label", "Buda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Buenard", "label", "Buenard"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Butcherman", "label", "Butcherman"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Butterfly_Kids", "label", "Butterfly Kids"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin", "label", "Cabin"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin_Condensed", "label", "Cabin Condensed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin_Sketch", "label", "Cabin Sketch"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Caesar_Dressing", "label", "Caesar Dressing"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cagliostro", "label", "Cagliostro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Calligraffitti", "label", "Calligraffitti"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cambay", "label", "Cambay"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cambo", "label", "Cambo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Candal", "label", "Candal"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantarell", "label", "Cantarell"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantata_One", "label", "Cantata One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantora_One", "label", "Cantora One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Capriola", "label", "Capriola"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cardo", "label", "Cardo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Carme", "label", "Carme"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Carrois_Gothic", "label", "Carrois Gothic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Carrois_Gothic_SC", "label", "Carrois Gothic SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Carter_One", "label", "Carter One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Catamaran", "label", "Catamaran"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Caudex", "label", "Caudex"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Caveat", "label", "Caveat"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Caveat_Brush", "label", "Caveat Brush"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cedarville_Cursive", "label", "Cedarville Cursive"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ceviche_One", "label", "Ceviche One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Changa_One", "label", "Changa One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chango", "label", "Chango"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chau_Philomene_One", "label", "Chau Philomene One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chela_One", "label", "Chela One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chelsea_Market", "label", "Chelsea Market"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chenla", "label", "Chenla"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cherry_Cream_Soda", "label", "Cherry Cream Soda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cherry_Swash", "label", "Cherry Swash"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chewy", "label", "Chewy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chicle", "label", "Chicle"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chivo", "label", "Chivo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Chonburi", "label", "Chonburi"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cinzel", "label", "Cinzel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cinzel_Decorative", "label", "Cinzel Decorative"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Clicker_Script", "label", "Clicker Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Coda", "label", "Coda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Coda_Caption", "label", "Coda Caption"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Codystar", "label", "Codystar"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Combo", "label", "Combo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Comfortaa", "label", "Comfortaa"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Coming_Soon", "label", "Coming Soon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Concert_One", "label", "Concert One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Condiment", "label", "Condiment"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Content", "label", "Content"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Contrail_One", "label", "Contrail One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Convergence", "label", "Convergence"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cookie", "label", "Cookie"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Copse", "label", "Copse"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Corben", "label", "Corben"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Courgette", "label", "Courgette"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cousine", "label", "Cousine"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Coustard", "label", "Coustard"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Covered_By_Your_Grace", "label", "Covered By Your Grace"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Crafty_Girls", "label", "Crafty Girls"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Creepster", "label", "Creepster"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Crete_Round", "label", "Crete Round"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Crimson_Text", "label", "Crimson Text"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Croissant_One", "label", "Croissant One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Crushed", "label", "Crushed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cuprum", "label", "Cuprum"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cutive", "label", "Cutive"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Cutive_Mono", "label", "Cutive Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Damion", "label", "Damion"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dancing_Script", "label", "Dancing Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dangrek", "label", "Dangrek"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dawning_of_a_New_Day", "label", "Dawning of a New Day"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Days_One", "label", "Days One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dekko", "label", "Dekko"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius", "label", "Delius"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius_Swash_Caps", "label", "Delius Swash Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius_Unicase", "label", "Delius Unicase"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Della_Respira", "label", "Della Respira"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Denk_One", "label", "Denk One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Devonshire", "label", "Devonshire"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dhurjati", "label", "Dhurjati"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Didact_Gothic", "label", "Didact Gothic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Diplomata", "label", "Diplomata"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Diplomata_SC", "label", "Diplomata SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Domine", "label", "Domine"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Donegal_One", "label", "Donegal One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Doppio_One", "label", "Doppio One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dorsa", "label", "Dorsa"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dosis", "label", "Dosis"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dr_Sugiyama", "label", "Dr Sugiyama"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Sans", "label", "Droid Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Sans_Mono", "label", "Droid Sans Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Serif", "label", "Droid Serif"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Duru_Sans", "label", "Duru Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Dynalight", "label", "Dynalight"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "EB_Garamond", "label", "EB Garamond"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Eagle_Lake", "label", "Eagle Lake"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Eater", "label", "Eater"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Economica", "label", "Economica"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Eczar", "label", "Eczar"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ek_Mukta", "label", "Ek Mukta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Electrolize", "label", "Electrolize"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Elsie", "label", "Elsie"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Elsie_Swash_Caps", "label", "Elsie Swash Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Emblema_One", "label", "Emblema One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Emilys_Candy", "label", "Emilys Candy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Engagement", "label", "Engagement"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Englebert", "label", "Englebert"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Enriqueta", "label", "Enriqueta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Erica_One", "label", "Erica One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Esteban", "label", "Esteban"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Euphoria_Script", "label", "Euphoria Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ewert", "label", "Ewert"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Exo", "label", "Exo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Exo_2", "label", "Exo 2"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Expletus_Sans", "label", "Expletus Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fanwood_Text", "label", "Fanwood Text"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fascinate", "label", "Fascinate"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fascinate_Inline", "label", "Fascinate Inline"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Faster_One", "label", "Faster One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fasthand", "label", "Fasthand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fauna_One", "label", "Fauna One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Federant", "label", "Federant"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Federo", "label", "Federo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Felipa", "label", "Felipa"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fenix", "label", "Fenix"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Finger_Paint", "label", "Finger Paint"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fira_Mono", "label", "Fira Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fira_Sans", "label", "Fira Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fjalla_One", "label", "Fjalla One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fjord_One", "label", "Fjord One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Flamenco", "label", "Flamenco"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Flavors", "label", "Flavors"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fondamento", "label", "Fondamento"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fontdiner_Swanky", "label", "Fontdiner Swanky"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Forum", "label", "Forum"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Francois_One", "label", "Francois One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Freckle_Face", "label", "Freckle Face"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fredericka_the_Great", "label", "Fredericka the Great"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fredoka_One", "label", "Fredoka One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Freehand", "label", "Freehand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fresca", "label", "Fresca"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Frijole", "label", "Frijole"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fruktur", "label", "Fruktur"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Fugaz_One", "label", "Fugaz One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "GFS_Didot", "label", "GFS Didot"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "GFS_Neohellenic", "label", "GFS Neohellenic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gabriela", "label", "Gabriela"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gafata", "label", "Gafata"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Galdeano", "label", "Galdeano"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Galindo", "label", "Galindo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gentium_Basic", "label", "Gentium Basic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gentium_Book_Basic", "label", "Gentium Book Basic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Geo", "label", "Geo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Geostar", "label", "Geostar"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Geostar_Fill", "label", "Geostar Fill"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Germania_One", "label", "Germania One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gidugu", "label", "Gidugu"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gilda_Display", "label", "Gilda Display"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Give_You_Glory", "label", "Give You Glory"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Glass_Antiqua", "label", "Glass Antiqua"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Glegoo", "label", "Glegoo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gloria_Hallelujah", "label", "Gloria Hallelujah"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Goblin_One", "label", "Goblin One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gochi_Hand", "label", "Gochi Hand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gorditas", "label", "Gorditas"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Goudy_Bookletter_1911", "label", "Goudy Bookletter 1911"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Graduate", "label", "Graduate"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Grand_Hotel", "label", "Grand Hotel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gravitas_One", "label", "Gravitas One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Great_Vibes", "label", "Great Vibes"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Griffy", "label", "Griffy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gruppo", "label", "Gruppo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gudea", "label", "Gudea"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Gurajada", "label", "Gurajada"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Habibi", "label", "Habibi"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Halant", "label", "Halant"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hammersmith_One", "label", "Hammersmith One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanalei", "label", "Hanalei"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanalei_Fill", "label", "Hanalei Fill"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Handlee", "label", "Handlee"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanuman", "label", "Hanuman"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Happy_Monkey", "label", "Happy Monkey"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Headland_One", "label", "Headland One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Henny_Penny", "label", "Henny Penny"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Herr_Von_Muellerhoff", "label", "Herr Von Muellerhoff"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind", "label", "Hind"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind_Siliguri", "label", "Hind Siliguri"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind_Vadodara", "label", "Hind Vadodara"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Holtwood_One_SC", "label", "Holtwood One SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Homemade_Apple", "label", "Homemade Apple"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Homenaje", "label", "Homenaje"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_DW_Pica", "label", "IM Fell DW Pica"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_DW_Pica_SC", "label", "IM Fell DW Pica SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Double_Pica", "label", "IM Fell Double Pica"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Double_Pica_SC", "label", "IM Fell Double Pica SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_English", "label", "IM Fell English"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_English_SC", "label", "IM Fell English SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_French_Canon", "label", "IM Fell French Canon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_French_Canon_SC", "label", "IM Fell French Canon SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Great_Primer", "label", "IM Fell Great Primer"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Great_Primer_SC", "label", "IM Fell Great Primer SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Iceberg", "label", "Iceberg"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Iceland", "label", "Iceland"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Imprima", "label", "Imprima"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Inconsolata", "label", "Inconsolata"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Inder", "label", "Inder"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Indie_Flower", "label", "Indie Flower"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Inika", "label", "Inika"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Inknut_Antiqua", "label", "Inknut Antiqua"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Irish_Grover", "label", "Irish Grover"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Istok_Web", "label", "Istok Web"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Italiana", "label", "Italiana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Italianno", "label", "Italianno"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Itim", "label", "Itim"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jacques_Francois", "label", "Jacques Francois"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jacques_Francois_Shadow", "label", "Jacques Francois Shadow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jaldi", "label", "Jaldi"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jim_Nightshade", "label", "Jim Nightshade"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jockey_One", "label", "Jockey One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jolly_Lodger", "label", "Jolly Lodger"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Josefin_Sans", "label", "Josefin Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Josefin_Slab", "label", "Josefin Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Joti_One", "label", "Joti One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Judson", "label", "Judson"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Julee", "label", "Julee"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Julius_Sans_One", "label", "Julius Sans One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Junge", "label", "Junge"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Jura", "label", "Jura"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Just_Another_Hand", "label", "Just Another Hand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Just_Me_Again_Down_Here", "label", "Just Me Again Down Here"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kadwa", "label", "Kadwa"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kalam", "label", "Kalam"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kameron", "label", "Kameron"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kantumruy", "label", "Kantumruy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Karla", "label", "Karla"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Karma", "label", "Karma"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kaushan_Script", "label", "Kaushan Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kavoon", "label", "Kavoon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kdam_Thmor", "label", "Kdam Thmor"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Keania_One", "label", "Keania One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kelly_Slab", "label", "Kelly Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kenia", "label", "Kenia"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Khand", "label", "Khand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Khmer", "label", "Khmer"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Khula", "label", "Khula"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kite_One", "label", "Kite One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Knewave", "label", "Knewave"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kotta_One", "label", "Kotta One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Koulen", "label", "Koulen"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kranky", "label", "Kranky"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kreon", "label", "Kreon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kristi", "label", "Kristi"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Krona_One", "label", "Krona One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Kurale", "label", "Kurale"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "La_Belle_Aurore", "label", "La Belle Aurore"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Laila", "label", "Laila"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lakki_Reddy", "label", "Lakki Reddy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lancelot", "label", "Lancelot"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lateef", "label", "Lateef"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lato", "label", "Lato"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "League_Script", "label", "League Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Leckerli_One", "label", "Leckerli One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ledger", "label", "Ledger"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lekton", "label", "Lekton"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lemon", "label", "Lemon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Libre_Baskerville", "label", "Libre Baskerville"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Life_Savers", "label", "Life Savers"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lilita_One", "label", "Lilita One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lily_Script_One", "label", "Lily Script One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Limelight", "label", "Limelight"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Linden_Hill", "label", "Linden Hill"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lobster", "label", "Lobster"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lobster_Two", "label", "Lobster Two"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Outline", "label", "Londrina Outline"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Shadow", "label", "Londrina Shadow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Sketch", "label", "Londrina Sketch"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Solid", "label", "Londrina Solid"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lora", "label", "Lora"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Love_Ya_Like_A_Sister", "label", "Love Ya Like A Sister"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Loved_by_the_King", "label", "Loved by the King"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lovers_Quarrel", "label", "Lovers Quarrel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Luckiest_Guy", "label", "Luckiest Guy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lusitana", "label", "Lusitana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Lustria", "label", "Lustria"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Macondo", "label", "Macondo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Macondo_Swash_Caps", "label", "Macondo Swash Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Magra", "label", "Magra"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Maiden_Orange", "label", "Maiden Orange"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mako", "label", "Mako"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mallanna", "label", "Mallanna"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mandali", "label", "Mandali"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marcellus", "label", "Marcellus"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marcellus_SC", "label", "Marcellus SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marck_Script", "label", "Marck Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Margarine", "label", "Margarine"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marko_One", "label", "Marko One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marmelad", "label", "Marmelad"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Martel", "label", "Martel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Martel_Sans", "label", "Martel Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Marvel", "label", "Marvel"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mate", "label", "Mate"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mate_SC", "label", "Mate SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Maven_Pro", "label", "Maven Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "McLaren", "label", "McLaren"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Meddon", "label", "Meddon"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "MedievalSharp", "label", "MedievalSharp"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Medula_One", "label", "Medula One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Megrim", "label", "Megrim"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Meie_Script", "label", "Meie Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Merienda", "label", "Merienda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Merienda_One", "label", "Merienda One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Merriweather", "label", "Merriweather"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Merriweather_Sans", "label", "Merriweather Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Metal", "label", "Metal"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Metal_Mania", "label", "Metal Mania"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Metamorphous", "label", "Metamorphous"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Metrophobic", "label", "Metrophobic"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Michroma", "label", "Michroma"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Milonga", "label", "Milonga"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Miltonian", "label", "Miltonian"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Miltonian_Tattoo", "label", "Miltonian Tattoo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Miniver", "label", "Miniver"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Miss_Fajardose", "label", "Miss Fajardose"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Modak", "label", "Modak"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Modern_Antiqua", "label", "Modern Antiqua"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Molengo", "label", "Molengo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Molle", "label", "Molle"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Monda", "label", "Monda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Monofett", "label", "Monofett"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Monoton", "label", "Monoton"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Monsieur_La_Doulaise", "label", "Monsieur La Doulaise"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Montaga", "label", "Montaga"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Montez", "label", "Montez"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat", "label", "Montserrat"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat_Alternates", "label", "Montserrat Alternates"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat_Subrayada", "label", "Montserrat Subrayada"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Moul", "label", "Moul"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Moulpali", "label", "Moulpali"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mountains_of_Christmas", "label", "Mountains of Christmas"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mouse_Memoirs", "label", "Mouse Memoirs"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_Bedfort", "label", "Mr Bedfort"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_Dafoe", "label", "Mr Dafoe"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_De_Haviland", "label", "Mr De Haviland"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mrs_Saint_Delafield", "label", "Mrs Saint Delafield"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mrs_Sheppards", "label", "Mrs Sheppards"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Muli", "label", "Muli"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Mystery_Quest", "label", "Mystery Quest"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "NTR", "label", "NTR"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Neucha", "label", "Neucha"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Neuton", "label", "Neuton"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "New_Rocker", "label", "New Rocker"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "News_Cycle", "label", "News Cycle"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Niconne", "label", "Niconne"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nixie_One", "label", "Nixie One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nobile", "label", "Nobile"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nokora", "label", "Nokora"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Norican", "label", "Norican"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nosifer", "label", "Nosifer"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nothing_You_Could_Do", "label", "Nothing You Could Do"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Noticia_Text", "label", "Noticia Text"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Noto_Sans", "label", "Noto Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Noto_Serif", "label", "Noto Serif"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Cut", "label", "Nova Cut"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Flat", "label", "Nova Flat"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Mono", "label", "Nova Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Oval", "label", "Nova Oval"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Round", "label", "Nova Round"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Script", "label", "Nova Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Slim", "label", "Nova Slim"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Square", "label", "Nova Square"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Numans", "label", "Numans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Nunito", "label", "Nunito"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Odor_Mean_Chey", "label", "Odor Mean Chey"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Offside", "label", "Offside"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Old_Standard_TT", "label", "Old Standard TT"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oldenburg", "label", "Oldenburg"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oleo_Script", "label", "Oleo Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oleo_Script_Swash_Caps", "label", "Oleo Script Swash Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Open_Sans", "label", "Open Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Open_Sans_Condensed", "label", "Open Sans Condensed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oranienbaum", "label", "Oranienbaum"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Orbitron", "label", "Orbitron"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oregano", "label", "Oregano"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Orienta", "label", "Orienta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Original_Surfer", "label", "Original Surfer"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oswald", "label", "Oswald"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Over_the_Rainbow", "label", "Over the Rainbow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Overlock", "label", "Overlock"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Overlock_SC", "label", "Overlock SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ovo", "label", "Ovo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oxygen", "label", "Oxygen"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Oxygen_Mono", "label", "Oxygen Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Mono", "label", "PT Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans", "label", "PT Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans_Caption", "label", "PT Sans Caption"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans_Narrow", "label", "PT Sans Narrow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Serif", "label", "PT Serif"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Serif_Caption", "label", "PT Serif Caption"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pacifico", "label", "Pacifico"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Palanquin", "label", "Palanquin"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Palanquin_Dark", "label", "Palanquin Dark"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Paprika", "label", "Paprika"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Parisienne", "label", "Parisienne"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Passero_One", "label", "Passero One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Passion_One", "label", "Passion One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pathway_Gothic_One", "label", "Pathway Gothic One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Patrick_Hand", "label", "Patrick Hand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Patrick_Hand_SC", "label", "Patrick Hand SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Patua_One", "label", "Patua One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Paytone_One", "label", "Paytone One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Peddana", "label", "Peddana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Peralta", "label", "Peralta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Permanent_Marker", "label", "Permanent Marker"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Petit_Formal_Script", "label", "Petit Formal Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Petrona", "label", "Petrona"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Philosopher", "label", "Philosopher"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Piedra", "label", "Piedra"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pinyon_Script", "label", "Pinyon Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pirata_One", "label", "Pirata One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Plaster", "label", "Plaster"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Play", "label", "Play"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Playball", "label", "Playball"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Playfair_Display", "label", "Playfair Display"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Playfair_Display_SC", "label", "Playfair Display SC"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Podkova", "label", "Podkova"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Poiret_One", "label", "Poiret One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Poller_One", "label", "Poller One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Poly", "label", "Poly"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pompiere", "label", "Pompiere"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pontano_Sans", "label", "Pontano Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Poppins", "label", "Poppins"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Port_Lligat_Sans", "label", "Port Lligat Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Port_Lligat_Slab", "label", "Port Lligat Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Pragati_Narrow", "label", "Pragati Narrow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Prata", "label", "Prata"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Preahvihear", "label", "Preahvihear"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Press_Start_2P", "label", "Press Start 2P"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Princess_Sofia", "label", "Princess Sofia"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Prociono", "label", "Prociono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Prosto_One", "label", "Prosto One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Puritan", "label", "Puritan"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Purple_Purse", "label", "Purple Purse"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quando", "label", "Quando"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quantico", "label", "Quantico"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quattrocento", "label", "Quattrocento"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quattrocento_Sans", "label", "Quattrocento Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Questrial", "label", "Questrial"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quicksand", "label", "Quicksand"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Quintessential", "label", "Quintessential"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Qwigley", "label", "Qwigley"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Racing_Sans_One", "label", "Racing Sans One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Radley", "label", "Radley"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rajdhani", "label", "Rajdhani"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Raleway", "label", "Raleway"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Raleway_Dots", "label", "Raleway Dots"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ramabhadra", "label", "Ramabhadra"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ramaraja", "label", "Ramaraja"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rambla", "label", "Rambla"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rammetto_One", "label", "Rammetto One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ranchers", "label", "Ranchers"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rancho", "label", "Rancho"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ranga", "label", "Ranga"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rationale", "label", "Rationale"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ravi_Prakash", "label", "Ravi Prakash"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Redressed", "label", "Redressed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Reenie_Beanie", "label", "Reenie Beanie"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Revalia", "label", "Revalia"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rhodium_Libre", "label", "Rhodium Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ribeye", "label", "Ribeye"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ribeye_Marrow", "label", "Ribeye Marrow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Righteous", "label", "Righteous"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Risque", "label", "Risque"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto", "label", "Roboto"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Condensed", "label", "Roboto Condensed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Mono", "label", "Roboto Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Slab", "label", "Roboto Slab"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rochester", "label", "Rochester"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rock_Salt", "label", "Rock Salt"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rokkitt", "label", "Rokkitt"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Romanesco", "label", "Romanesco"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ropa_Sans", "label", "Ropa Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rosario", "label", "Rosario"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rosarivo", "label", "Rosarivo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rouge_Script", "label", "Rouge Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rozha_One", "label", "Rozha One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik", "label", "Rubik"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik_Mono_One", "label", "Rubik Mono One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik_One", "label", "Rubik One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruda", "label", "Ruda"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rufina", "label", "Rufina"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruge_Boogie", "label", "Ruge Boogie"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruluko", "label", "Ruluko"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rum_Raisin", "label", "Rum Raisin"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruslan_Display", "label", "Ruslan Display"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Russo_One", "label", "Russo One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruthie", "label", "Ruthie"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Rye", "label", "Rye"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sacramento", "label", "Sacramento"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sahitya", "label", "Sahitya"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sail", "label", "Sail"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Salsa", "label", "Salsa"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sanchez", "label", "Sanchez"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sancreek", "label", "Sancreek"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sansita_One", "label", "Sansita One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarala", "label", "Sarala"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarabun", "label", "Sarabun"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarina", "label", "Sarina"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarpanch", "label", "Sarpanch"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Satisfy", "label", "Satisfy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Scada", "label", "Scada"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Scheherazade", "label", "Scheherazade"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Schoolbell", "label", "Schoolbell"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Seaweed_Script", "label", "Seaweed Script"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sevillana", "label", "Sevillana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Seymour_One", "label", "Seymour One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Shadows_Into_Light", "label", "Shadows Into Light"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Shadows_Into_Light_Two", "label", "Shadows Into Light Two"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Shanti", "label", "Shanti"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Share", "label", "Share"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Share_Tech", "label", "Share Tech"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Share_Tech_Mono", "label", "Share Tech Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Shojumaru", "label", "Shojumaru"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Short_Stack", "label", "Short Stack"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Siemreap", "label", "Siemreap"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sigmar_One", "label", "Sigmar One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Signika", "label", "Signika"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Signika_Negative", "label", "Signika Negative"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Simonetta", "label", "Simonetta"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sintony", "label", "Sintony"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sirin_Stencil", "label", "Sirin Stencil"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Six_Caps", "label", "Six Caps"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Skranji", "label", "Skranji"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Slabo_13px", "label", "Slabo 13px"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Slabo_27px", "label", "Slabo 27px"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Slackey", "label", "Slackey"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Smokum", "label", "Smokum"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Smythe", "label", "Smythe"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sniglet", "label", "Sniglet"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Snippet", "label", "Snippet"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Snowburst_One", "label", "Snowburst One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sofadi_One", "label", "Sofadi One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sofia", "label", "Sofia"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sonsie_One", "label", "Sonsie One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sorts_Mill_Goudy", "label", "Sorts Mill Goudy"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Code_Pro", "label", "Source Code Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Sans_Pro", "label", "Source Sans Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Serif_Pro", "label", "Source Serif Pro"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Special_Elite", "label", "Special Elite"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Spicy_Rice", "label", "Spicy Rice"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Spinnaker", "label", "Spinnaker"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Spirax", "label", "Spirax"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Squada_One", "label", "Squada One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sree_Krushnadevaraya", "label", "Sree Krushnadevaraya"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stalemate", "label", "Stalemate"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stalinist_One", "label", "Stalinist One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stardos_Stencil", "label", "Stardos Stencil"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stint_Ultra_Condensed", "label", "Stint Ultra Condensed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stint_Ultra_Expanded", "label", "Stint Ultra Expanded"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Stoke", "label", "Stoke"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Strait", "label", "Strait"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sue_Ellen_Francisco", "label", "Sue Ellen Francisco"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sumana", "label", "Sumana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sunshiney", "label", "Sunshiney"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Supermercado_One", "label", "Supermercado One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Sura", "label", "Sura"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Suranna", "label", "Suranna"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Suravaram", "label", "Suravaram"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Suwannaphum", "label", "Suwannaphum"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Swanky_and_Moo_Moo", "label", "Swanky and Moo Moo"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Syncopate", "label", "Syncopate"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tangerine", "label", "Tangerine"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Taprom", "label", "Taprom"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tauri", "label", "Tauri"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Teko", "label", "Teko"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Telex", "label", "Telex"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tenali_Ramakrishna", "label", "Tenali Ramakrishna"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tenor_Sans", "label", "Tenor Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Text_Me_One", "label", "Text Me One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "The_Girl_Next_Door", "label", "The Girl Next Door"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tienne", "label", "Tienne"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tillana", "label", "Tillana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Timmana", "label", "Timmana"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tinos", "label", "Tinos"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Titan_One", "label", "Titan One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Titillium_Web", "label", "Titillium Web"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Trade_Winds", "label", "Trade Winds"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Trocchi", "label", "Trocchi"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Trochut", "label", "Trochut"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Trykker", "label", "Trykker"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Tulpen_One", "label", "Tulpen One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu", "label", "Ubuntu"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu_Condensed", "label", "Ubuntu Condensed"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu_Mono", "label", "Ubuntu Mono"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Ultra", "label", "Ultra"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Uncial_Antiqua", "label", "Uncial Antiqua"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Underdog", "label", "Underdog"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Unica_One", "label", "Unica One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "UnifrakturCook", "label", "UnifrakturCook"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", _s18_, "label", _s18_], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Unkempt", "label", "Unkempt"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Unlock", "label", "Unlock"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Unna", "label", "Unna"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "VT323", "label", "VT323"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vampiro_One", "label", "Vampiro One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Varela", "label", "Varela"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Varela_Round", "label", "Varela Round"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vast_Shadow", "label", "Vast Shadow"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vesper_Libre", "label", "Vesper Libre"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vibur", "label", "Vibur"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vidaloka", "label", "Vidaloka"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Viga", "label", "Viga"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Voces", "label", "Voces"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Volkhov", "label", "Volkhov"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Vollkorn", "label", "Vollkorn"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Voltaire", "label", "Voltaire"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Waiting_for_the_Sunrise", "label", "Waiting for the Sunrise"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Wallpoet", "label", "Wallpoet"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Walter_Turncoat", "label", "Walter Turncoat"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Warnes", "label", "Warnes"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Wellfleet", "label", "Wellfleet"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Wendy_One", "label", "Wendy One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Wire_One", "label", "Wire One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Work_Sans", "label", "Work Sans"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Yanone_Kaffeesatz", "label", "Yanone Kaffeesatz"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Yantramanav", "label", "Yantramanav"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Yellowtail", "label", "Yellowtail"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Yeseva_One", "label", "Yeseva One"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Yesteryear", "label", "Yesteryear"], t1, t1), A.LinkedHashMap_LinkedHashMap$_literal(["value", "Zeyada", "label", "Zeyada"], t1, t1)], A.findType("JSArray*>")); }(); $.LogRecord__nextNumber = 0; $.Logger__loggers = A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Logger); $._currentUriBase = null; $._current = null; $.PointerInterceptor__registered = false; $.PrintJobs__currentIndex = 0; $.SharedPreferences__completer = null; $.OnReactiveState_addToObs = null; $.StatesRebuilerLogger_message = ""; $.injectedModels = A.LinkedHashSet_LinkedHashSet$_empty(A.findType("InjectedBaseState<@>")); $._contextSet = A._setArrayType([], A.findType("JSArray")); $.defaultComponentBuilders = A._setArrayType([B.C_BlockquoteComponentBuilder, B.C_ParagraphComponentBuilder, B.C_ListItemComponentBuilder, B.C_ImageComponentBuilder, B.C_HorizontalRuleComponentBuilder], A.findType("JSArray")); $.defaultKeyboardActions = A._setArrayType([A.document_keyboard_actions__doNothingWhenThereIsNoSelection$closure(), A.document_keyboard_actions__pasteWhenCmdVIsPressed$closure(), A.document_keyboard_actions__copyWhenCmdCIsPressed$closure(), A.document_keyboard_actions__cutWhenCmdXIsPressed$closure(), A.document_keyboard_actions__collapseSelectionWhenEscIsPressed$closure(), A.document_keyboard_actions__selectAllWhenCmdAIsPressed$closure(), A.document_keyboard_actions__moveUpDownLeftAndRightWithArrowKeys$closure(), A.list_items__tabToIndentListItem$closure(), A.list_items__shiftTabToUnIndentListItem$closure(), A.list_items__backspaceToUnIndentListItem$closure(), A.paragraph0__backspaceToClearParagraphBlockType$closure(), A.document_keyboard_actions__cmdBToToggleBold$closure(), A.document_keyboard_actions__cmdIToToggleItalics$closure(), A.text__shiftEnterToInsertNewlineInBlock$closure(), A.paragraph0__enterToInsertBlockNewline$closure(), A.document_keyboard_actions__backspaceToRemoveUpstreamContent$closure(), A.text__deleteToRemoveDownstreamContent$closure(), A.document_keyboard_actions__moveToLineStartOrEndWithCtrlAOrE$closure(), A.document_keyboard_actions__deleteLineWithCmdBksp$closure(), A.document_keyboard_actions__deleteWordWithAltBksp$closure(), A.document_keyboard_actions__anyCharacterOrDestructiveKeyToDeleteSelection$closure(), A.paragraph0__anyCharacterToInsertInParagraph$closure(), A.text__anyCharacterToInsertInTextContent$closure()], A.findType("JSArray")); $.LinkViewController__instances = A.LinkedHashMap_LinkedHashMap$_empty(type$.int, A.findType("LinkViewController")); $.Matrix4__decomposeV = null; $.Matrix4__decomposeM = null; $.Matrix4__decomposeR = null; })(); (function lazyInitializers() { var _lazyFinal = hunkHelpers.lazyFinal, _lazy = hunkHelpers.lazy, _lazyOld = hunkHelpers.lazyOld; _lazyFinal($, "_browserEngine", "$get$_browserEngine", () => A.detectBrowserEngineByVendorAgent(A.window().navigator.vendor, J.toLowerCase$0$s(A.window().navigator.userAgent))); _lazyFinal($, "_operatingSystem", "$get$_operatingSystem", () => A.detectOperatingSystem()); _lazy($, "CanvasPool__runBuffer", "$get$CanvasPool__runBuffer", () => A.NativeFloat32List_NativeFloat32List(8)); _lazyFinal($, "_SaveStackTracking__unitZ", "$get$_SaveStackTracking__unitZ", () => A.Vector3_Vector3(0, 0, 1)); _lazyFinal($, "_clipOpIntersect", "$get$_clipOpIntersect", () => J.get$Intersect$x(J.get$ClipOp$x(A.canvasKit()))); _lazyFinal($, "useH5vccCanvasKit", "$get$useH5vccCanvasKit", () => self.window.h5vcc != null); _lazyFinal($, "_skFontSlants", "$get$_skFontSlants", () => A._setArrayType([J.get$Upright$x(J.get$FontSlant$x(A.canvasKit())), J.get$Italic$x(J.get$FontSlant$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skFontWeights", "$get$_skFontWeights", () => A._setArrayType([J.get$Thin$x(J.get$FontWeight$x(A.canvasKit())), J.get$ExtraLight$x(J.get$FontWeight$x(A.canvasKit())), J.get$Light$x(J.get$FontWeight$x(A.canvasKit())), J.get$Normal$x(J.get$FontWeight$x(A.canvasKit())), J.get$Medium$x(J.get$FontWeight$x(A.canvasKit())), J.get$SemiBold$x(J.get$FontWeight$x(A.canvasKit())), J.get$Bold$x(J.get$FontWeight$x(A.canvasKit())), J.get$ExtraBold$x(J.get$FontWeight$x(A.canvasKit())), J.get$ExtraBlack$x(J.get$FontWeight$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skTextDirections", "$get$_skTextDirections", () => A._setArrayType([J.get$RTL$x(J.get$TextDirection$x(A.canvasKit())), J.get$LTR$x(J.get$TextDirection$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skTextAligns", "$get$_skTextAligns", () => A._setArrayType([J.get$Left$x(J.get$TextAlign$x(A.canvasKit())), J.get$Right$x(J.get$TextAlign$x(A.canvasKit())), J.get$Center$x(J.get$TextAlign$x(A.canvasKit())), J.get$Justify$x(J.get$TextAlign$x(A.canvasKit())), J.get$Start$x(J.get$TextAlign$x(A.canvasKit())), J.get$End$x(J.get$TextAlign$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skTextHeightBehaviors", "$get$_skTextHeightBehaviors", () => A._setArrayType([J.get$All$x(J.get$TextHeightBehavior$x(A.canvasKit())), J.get$DisableFirstAscent$x(J.get$TextHeightBehavior$x(A.canvasKit())), J.get$DisableLastDescent$x(J.get$TextHeightBehavior$x(A.canvasKit())), J.get$DisableAll$x(J.get$TextHeightBehavior$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skRectHeightStyles", "$get$_skRectHeightStyles", () => A._setArrayType([J.get$Tight$x(J.get$RectHeightStyle$x(A.canvasKit())), J.get$Max$x(J.get$RectHeightStyle$x(A.canvasKit())), J.get$IncludeLineSpacingMiddle$x(J.get$RectHeightStyle$x(A.canvasKit())), J.get$IncludeLineSpacingTop$x(J.get$RectHeightStyle$x(A.canvasKit())), J.get$IncludeLineSpacingBottom$x(J.get$RectHeightStyle$x(A.canvasKit())), J.get$Strut$x(J.get$RectHeightStyle$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skRectWidthStyles", "$get$_skRectWidthStyles", () => A._setArrayType([J.get$Tight$x(J.get$RectWidthStyle$x(A.canvasKit())), J.get$Max$x(J.get$RectWidthStyle$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skClipOps", "$get$_skClipOps", () => A._setArrayType([J.get$Difference$x(J.get$ClipOp$x(A.canvasKit())), J.get$Intersect$x(J.get$ClipOp$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skFillTypes", "$get$_skFillTypes", () => A._setArrayType([J.get$Winding$x(J.get$FillType$x(A.canvasKit())), J.get$EvenOdd$x(J.get$FillType$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skBlurStyles", "$get$_skBlurStyles", () => A._setArrayType([J.get$Normal$x(J.get$BlurStyle$x(A.canvasKit())), J.get$Solid$x(J.get$BlurStyle$x(A.canvasKit())), J.get$Outer$x(J.get$BlurStyle$x(A.canvasKit())), J.get$Inner$x(J.get$BlurStyle$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skStrokeCaps", "$get$_skStrokeCaps", () => A._setArrayType([J.get$Butt$x(J.get$StrokeCap$x(A.canvasKit())), J.get$Round$x(J.get$StrokeCap$x(A.canvasKit())), J.get$Square$x(J.get$StrokeCap$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skPaintStyles", "$get$_skPaintStyles", () => A._setArrayType([J.get$Fill$x(J.get$PaintStyle$x(A.canvasKit())), J.get$Stroke$x(J.get$PaintStyle$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skBlendModes", "$get$_skBlendModes", () => A._setArrayType([J.get$Clear$x(J.get$BlendMode$x(A.canvasKit())), J.get$Src$x(J.get$BlendMode$x(A.canvasKit())), J.get$Dst$x(J.get$BlendMode$x(A.canvasKit())), J.get$SrcOver$x(J.get$BlendMode$x(A.canvasKit())), J.get$DstOver$x(J.get$BlendMode$x(A.canvasKit())), J.get$SrcIn$x(J.get$BlendMode$x(A.canvasKit())), J.get$DstIn$x(J.get$BlendMode$x(A.canvasKit())), J.get$SrcOut$x(J.get$BlendMode$x(A.canvasKit())), J.get$DstOut$x(J.get$BlendMode$x(A.canvasKit())), J.get$SrcATop$x(J.get$BlendMode$x(A.canvasKit())), J.get$DstATop$x(J.get$BlendMode$x(A.canvasKit())), J.get$Xor$x(J.get$BlendMode$x(A.canvasKit())), J.get$Plus$x(J.get$BlendMode$x(A.canvasKit())), J.get$Modulate$x(J.get$BlendMode$x(A.canvasKit())), J.get$Screen$x(J.get$BlendMode$x(A.canvasKit())), J.get$Overlay$x(J.get$BlendMode$x(A.canvasKit())), J.get$Darken$x(J.get$BlendMode$x(A.canvasKit())), J.get$Lighten$x(J.get$BlendMode$x(A.canvasKit())), J.get$ColorDodge$x(J.get$BlendMode$x(A.canvasKit())), J.get$ColorBurn$x(J.get$BlendMode$x(A.canvasKit())), J.get$HardLight$x(J.get$BlendMode$x(A.canvasKit())), J.get$SoftLight$x(J.get$BlendMode$x(A.canvasKit())), J.get$Difference$x(J.get$BlendMode$x(A.canvasKit())), J.get$Exclusion$x(J.get$BlendMode$x(A.canvasKit())), J.get$Multiply$x(J.get$BlendMode$x(A.canvasKit())), J.get$Hue$x(J.get$BlendMode$x(A.canvasKit())), J.get$Saturation$x(J.get$BlendMode$x(A.canvasKit())), J.get$Color$x(J.get$BlendMode$x(A.canvasKit())), J.get$Luminosity$x(J.get$BlendMode$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skStrokeJoins", "$get$_skStrokeJoins", () => A._setArrayType([J.get$Miter$x(J.get$StrokeJoin$x(A.canvasKit())), J.get$Round$x(J.get$StrokeJoin$x(A.canvasKit())), J.get$Bevel$x(J.get$StrokeJoin$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skTileModes", "$get$_skTileModes", () => A._setArrayType([J.get$Clamp$x(J.get$TileMode$x(A.canvasKit())), J.get$Repeat$x(J.get$TileMode$x(A.canvasKit())), J.get$Mirror$x(J.get$TileMode$x(A.canvasKit())), J.get$Decal$x(J.get$TileMode$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_filterOptions", "$get$_filterOptions", () => A.LinkedHashMap_LinkedHashMap$_literal([B.FilterQuality_0, {filter: J.get$Nearest$x(J.get$FilterMode$x(A.canvasKit())), mipmap: J.get$None$x(J.get$MipmapMode$x(A.canvasKit()))}, B.FilterQuality_1, {filter: J.get$Linear$x(J.get$FilterMode$x(A.canvasKit())), mipmap: J.get$None$x(J.get$MipmapMode$x(A.canvasKit()))}, B.FilterQuality_2, {filter: J.get$Linear$x(J.get$FilterMode$x(A.canvasKit())), mipmap: J.get$Linear$x(J.get$MipmapMode$x(A.canvasKit()))}, B.FilterQuality_3, {B: 0.3333333333333333, C: 0.3333333333333333}], A.findType("FilterQuality"), A.findType("CkFilterOptions"))); _lazyFinal($, "_kDefaultSkColorStops", "$get$_kDefaultSkColorStops", () => { var t1 = A.NativeFloat32List_NativeFloat32List(2); t1[0] = 0; t1[1] = 1; return t1; }); _lazyFinal($, "_sharedSkColor1", "$get$_sharedSkColor1", () => A.mallocFloat32List(4)); _lazyFinal($, "_skTextDecorationStyles", "$get$_skTextDecorationStyles", () => A._setArrayType([J.get$Solid$x(J.get$DecorationStyle$x(A.canvasKit())), J.get$Double$x(J.get$DecorationStyle$x(A.canvasKit())), J.get$Dotted$x(J.get$DecorationStyle$x(A.canvasKit())), J.get$Dashed$x(J.get$DecorationStyle$x(A.canvasKit())), J.get$Wavy$x(J.get$DecorationStyle$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skTextBaselines", "$get$_skTextBaselines", () => A._setArrayType([J.get$Alphabetic$x(J.get$TextBaseline$x(A.canvasKit())), J.get$Ideographic$x(J.get$TextBaseline$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "_skPlaceholderAlignments", "$get$_skPlaceholderAlignments", () => A._setArrayType([J.get$Baseline$x(J.get$PlaceholderAlignment$x(A.canvasKit())), J.get$AboveBaseline$x(J.get$PlaceholderAlignment$x(A.canvasKit())), J.get$BelowBaseline$x(J.get$PlaceholderAlignment$x(A.canvasKit())), J.get$Top$x(J.get$PlaceholderAlignment$x(A.canvasKit())), J.get$Bottom$x(J.get$PlaceholderAlignment$x(A.canvasKit())), J.get$Middle$x(J.get$PlaceholderAlignment$x(A.canvasKit()))], A.findType("JSArray"))); _lazyFinal($, "Collector__productionInstance", "$get$Collector__productionInstance", () => A.ProductionCollector$()); _lazy($, "Collector__instance", "$get$Collector__instance", () => $.$get$Collector__productionInstance()); _lazy($, "browserSupportsFinalizationRegistry", "$get$browserSupportsFinalizationRegistry", () => self.window.FinalizationRegistry != null); _lazy($, "HtmlViewEmbedder_instance", "$get$HtmlViewEmbedder_instance", () => { var t1 = type$.int, t2 = type$.JSArray_int; return new A.HtmlViewEmbedder(A.LinkedHashSet_LinkedHashSet$_empty(t1), A._setArrayType([], A.findType("JSArray")), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.CkPictureRecorder), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("EmbeddedViewParams")), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("ViewClipChain")), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("Surface")), A.LinkedHashSet_LinkedHashSet$_empty(t1), A._setArrayType([], t2), A._setArrayType([], t2), $.$get$window().get$physicalSize(), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Set_String)); }); _lazy($, "FontFallbackData__instance", "$get$FontFallbackData__instance", () => { var t1 = type$.int; return new A.FontFallbackData(A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.FontFallbackData_createNotoFontTree(), A._setArrayType([], type$.JSArray_RegisteredFont), A._setArrayType(["Roboto"], type$.JSArray_String), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, t1), A.LinkedHashSet_LinkedHashSet$_empty(t1)); }); _lazy($, "_notoSansSC", "$get$_notoSansSC", () => A.NotoFont$("Noto Sans SC", A._setArrayType([B.CodeunitRange_12288_12591, B.CodeunitRange_12800_13311, B.CodeunitRange_19968_40959, B.CodeunitRange_65072_65135, B.CodeunitRange_65280_65519], type$.JSArray_CodeunitRange))); _lazy($, "_notoSansTC", "$get$_notoSansTC", () => A.NotoFont$("Noto Sans TC", A._setArrayType([B.CodeunitRange_12288_12351, B.CodeunitRange_12549_12585, B.CodeunitRange_19968_40959], type$.JSArray_CodeunitRange))); _lazy($, "_notoSansHK", "$get$_notoSansHK", () => A.NotoFont$("Noto Sans HK", A._setArrayType([B.CodeunitRange_12288_12351, B.CodeunitRange_12549_12585, B.CodeunitRange_19968_40959], type$.JSArray_CodeunitRange))); _lazy($, "_notoSansJP", "$get$_notoSansJP", () => A.NotoFont$("Noto Sans JP", A._setArrayType([B.CodeunitRange_12288_12543, B.CodeunitRange_19968_40959, B.CodeunitRange_65280_65519], type$.JSArray_CodeunitRange))); _lazy($, "_cjkFonts", "$get$_cjkFonts", () => A._setArrayType([$.$get$_notoSansSC(), $.$get$_notoSansTC(), $.$get$_notoSansHK(), $.$get$_notoSansJP()], type$.JSArray_NotoFont)); _lazy($, "_notoFonts", "$get$_notoFonts", () => { var t1 = type$.JSArray_CodeunitRange; return A._setArrayType([$.$get$_notoSansSC(), $.$get$_notoSansTC(), $.$get$_notoSansHK(), $.$get$_notoSansJP(), A.NotoFont$("Noto Naskh Arabic UI", A._setArrayType([B.CodeunitRange_1536_1791, B.CodeunitRange_8204_8206, B.CodeunitRange_8208_8209, B.CodeunitRange_8271_8271, B.CodeunitRange_11841_11841, B.CodeunitRange_64336_65023, B.CodeunitRange_65132_65276], t1)), A.NotoFont$("Noto Sans Armenian", A._setArrayType([B.CodeunitRange_1328_1424, B.CodeunitRange_64275_64279], t1)), A.NotoFont$("Noto Sans Bengali UI", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_2433_2555, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Myanmar UI", A._setArrayType([B.CodeunitRange_4096_4255, B.CodeunitRange_8204_8205, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Egyptian Hieroglyphs", A._setArrayType([B.CodeunitRange_77824_78894], t1)), A.NotoFont$("Noto Sans Ethiopic", A._setArrayType([B.CodeunitRange_4608_5017, B.CodeunitRange_11648_11742, B.CodeunitRange_43777_43822], t1)), A.NotoFont$("Noto Sans Georgian", A._setArrayType([B.CodeunitRange_1417_1417, B.CodeunitRange_4256_4351, B.CodeunitRange_11520_11567], t1)), A.NotoFont$("Noto Sans Gujarati UI", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_2688_2815, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676, B.CodeunitRange_43056_43065], t1)), A.NotoFont$("Noto Sans Gurmukhi UI", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_2561_2677, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676, B.CodeunitRange_9772_9772, B.CodeunitRange_43056_43065], t1)), A.NotoFont$("Noto Sans Hebrew", A._setArrayType([B.CodeunitRange_1424_1535, B.CodeunitRange_8362_8362, B.CodeunitRange_9676_9676, B.CodeunitRange_64285_64335], t1)), A.NotoFont$("Noto Sans Devanagari UI", A._setArrayType([B.CodeunitRange_2304_2431, B.CodeunitRange_7376_7414, B.CodeunitRange_7416_7417, B.CodeunitRange_8204_8205, B.CodeunitRange_8360_8360, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676, B.CodeunitRange_43056_43065, B.CodeunitRange_43232_43259], t1)), A.NotoFont$("Noto Sans Kannada UI", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_3202_3314, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Khmer UI", A._setArrayType([B.CodeunitRange_6016_6143, B.CodeunitRange_8204_8204, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans KR", A._setArrayType([B.CodeunitRange_12593_12686, B.CodeunitRange_12800_12828, B.CodeunitRange_12896_12923, B.CodeunitRange_44032_55215], t1)), A.NotoFont$("Noto Sans Lao UI", A._setArrayType([B.CodeunitRange_3713_3807, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Malayalam UI", A._setArrayType([B.CodeunitRange_775_775, B.CodeunitRange_803_803, B.CodeunitRange_2404_2405, B.CodeunitRange_3330_3455, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Sinhala", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_3458_3572, B.CodeunitRange_8204_8205, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Tamil UI", A._setArrayType([B.CodeunitRange_2404_2405, B.CodeunitRange_2946_3066, B.CodeunitRange_8204_8205, B.CodeunitRange_8377_8377, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Telugu UI", A._setArrayType([B.CodeunitRange_2385_2386, B.CodeunitRange_2404_2405, B.CodeunitRange_3072_3199, B.CodeunitRange_7386_7386, B.CodeunitRange_8204_8205, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans Thai UI", A._setArrayType([B.CodeunitRange_3585_3675, B.CodeunitRange_8204_8205, B.CodeunitRange_9676_9676], t1)), A.NotoFont$("Noto Sans", A._setArrayType([B.CodeunitRange_0_255, B.CodeunitRange_305_305, B.CodeunitRange_338_339, B.CodeunitRange_699_700, B.CodeunitRange_710_710, B.CodeunitRange_730_730, B.CodeunitRange_732_732, B.CodeunitRange_8192_8303, B.CodeunitRange_8308_8308, B.CodeunitRange_8364_8364, B.CodeunitRange_8482_8482, B.CodeunitRange_8593_8593, B.CodeunitRange_8595_8595, B.CodeunitRange_8722_8722, B.CodeunitRange_8725_8725, B.CodeunitRange_65279_65279, B.CodeunitRange_65533_65533, B.CodeunitRange_1024_1119, B.CodeunitRange_1168_1169, B.CodeunitRange_1200_1201, B.CodeunitRange_8470_8470, B.CodeunitRange_1120_1327, B.CodeunitRange_7296_7304, B.CodeunitRange_8372_8372, B.CodeunitRange_11744_11775, B.CodeunitRange_42560_42655, B.CodeunitRange_65070_65071, B.CodeunitRange_880_1023, B.CodeunitRange_7936_8191, B.CodeunitRange_256_591, B.CodeunitRange_601_601, B.CodeunitRange_7680_7935, B.CodeunitRange_8224_8224, B.CodeunitRange_8352_8363, B.CodeunitRange_8365_8399, B.CodeunitRange_8467_8467, B.CodeunitRange_11360_11391, B.CodeunitRange_42784_43007, B.CodeunitRange_258_259, B.CodeunitRange_272_273, B.CodeunitRange_296_297, B.CodeunitRange_360_361, B.CodeunitRange_416_417, B.CodeunitRange_431_432, B.CodeunitRange_7840_7929, B.CodeunitRange_8363_8363], t1))], type$.JSArray_NotoFont); }); _lazy($, "notoDownloadQueue", "$get$notoDownloadQueue", () => { var t1 = type$._ResolvedNotoSubset; return new A.FallbackFontDownloadQueue(new A.NotoDownloader(), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(type$.String, t1)); }); _lazy($, "httpRequestFactory", "$get$httpRequestFactory", () => new A.httpRequestFactory_closure()); _lazyFinal($, "_avifSignature", "$get$_avifSignature", () => A.CodeUnits$("ftyp")); _lazyFinal($, "useCanvasKit", "$get$useCanvasKit", () => { var t1 = $.$get$_hasCanvasKit(); return t1; }); _lazyFinal($, "_hasCanvasKit", "$get$_hasCanvasKit", () => A._detectCanvasKit()); _lazyFinal($, "_invertColorMatrix", "$get$_invertColorMatrix", () => A.NativeFloat32List_NativeFloat32List$fromList(B.List_AmY)); _lazyFinal($, "_invertColorFilter", "$get$_invertColorFilter", () => A.ManagedSkColorFilter$(new A.CkMatrixColorFilter($.$get$_invertColorMatrix()))); _lazyFinal($, "SkiaObjects_expensiveCache", "$get$SkiaObjects_expensiveCache", () => { var t1 = A.findType("SkiaObject"); return new A.SkiaObjectCache(1024, A.DoubleLinkedQueue$(t1), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("DoubleLinkedQueueEntry>"))); }); _lazy($, "CkParagraph__paragraphCache", "$get$CkParagraph__paragraphCache", () => { var t1 = A.findType("SkiaObject"); return new A.SynchronousSkiaObjectCache(500, A.DoubleLinkedQueue$(t1), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("DoubleLinkedQueueEntry>"))); }); _lazyFinal($, "CkParagraphBuilder__defaultTextForeground", "$get$CkParagraphBuilder__defaultTextForeground", () => new self.window.flutterCanvasKit.Paint()); _lazyFinal($, "CkParagraphBuilder__defaultTextBackground", "$get$CkParagraphBuilder__defaultTextBackground", () => { var t1 = new self.window.flutterCanvasKit.Paint(); J.setColorInt$1$x(t1, 0); return t1; }); _lazyFinal($, "SaveElementStackTracking__unitZ", "$get$SaveElementStackTracking__unitZ", () => A.Vector3_Vector3(0, 0, 1)); _lazyFinal($, "_fontChangeMessage", "$get$_fontChangeMessage", () => B.C_JSONMessageCodec.encodeMessage$1(A.LinkedHashMap_LinkedHashMap$_literal(["type", "fontsChange"], type$.String, type$.dynamic))); _lazyFinal($, "kSvgResourceHeader", "$get$kSvgResourceHeader", () => { var t2, t1 = A.SvgSvgElement_SvgSvgElement(); t1.setAttribute("width", 0); t1.setAttribute("height", 0); t2 = t1.style; (t2 && B.CssStyleDeclaration_methods).set$position(t2, "absolute"); return t1; }); _lazyFinal($, "_PaintBounds__tempRectData", "$get$_PaintBounds__tempRectData", () => A.NativeFloat32List_NativeFloat32List(4)); _lazyFinal($, "VertexShaders_vertexIndicesForRect", "$get$VertexShaders_vertexIndicesForRect", () => A.NativeUint16List_NativeUint16List$fromList(A._setArrayType([0, 1, 2, 2, 3, 0], type$.JSArray_int))); _lazyFinal($, "_supportsDecode", "$get$_supportsDecode", () => A.getJsProperty(A.getJsProperty(A.getJsProperty(A.window(), "Image"), "prototype"), "decode") != null); _lazyFinal($, "platformViewManager", "$get$platformViewManager", () => { var t1 = type$.String, t2 = type$.int; return new A.PlatformViewManager(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Function), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Element), A.LinkedHashSet_LinkedHashSet$_empty(t1), A.LinkedHashMap_LinkedHashMap$_empty(t2, t1)); }); _lazyFinal($, "_kLogicalAltLeft", "$get$_kLogicalAltLeft", () => 8589934852); _lazyFinal($, "_kLogicalAltRight", "$get$_kLogicalAltRight", () => 8589934853); _lazyFinal($, "_kLogicalControlLeft", "$get$_kLogicalControlLeft", () => 8589934848); _lazyFinal($, "_kLogicalControlRight", "$get$_kLogicalControlRight", () => 8589934849); _lazyFinal($, "_kLogicalShiftLeft", "$get$_kLogicalShiftLeft", () => 8589934850); _lazyFinal($, "_kLogicalShiftRight", "$get$_kLogicalShiftRight", () => 8589934851); _lazyFinal($, "_kLogicalMetaLeft", "$get$_kLogicalMetaLeft", () => 8589934854); _lazyFinal($, "_kLogicalMetaRight", "$get$_kLogicalMetaRight", () => 8589934855); _lazyFinal($, "_kLogicalKeyToModifierGetter", "$get$_kLogicalKeyToModifierGetter", () => A.LinkedHashMap_LinkedHashMap$_literal([$.$get$_kLogicalAltLeft(), new A._kLogicalKeyToModifierGetter_closure(), $.$get$_kLogicalAltRight(), new A._kLogicalKeyToModifierGetter_closure0(), $.$get$_kLogicalControlLeft(), new A._kLogicalKeyToModifierGetter_closure1(), $.$get$_kLogicalControlRight(), new A._kLogicalKeyToModifierGetter_closure2(), $.$get$_kLogicalShiftLeft(), new A._kLogicalKeyToModifierGetter_closure3(), $.$get$_kLogicalShiftRight(), new A._kLogicalKeyToModifierGetter_closure4(), $.$get$_kLogicalMetaLeft(), new A._kLogicalKeyToModifierGetter_closure5(), $.$get$_kLogicalMetaRight(), new A._kLogicalKeyToModifierGetter_closure6()], type$.int, A.findType("bool(FlutterHtmlKeyboardEvent)"))); _lazyFinal($, "EnginePlatformDispatcher__instance", "$get$EnginePlatformDispatcher__instance", () => { var t1 = type$.Object; t1 = new A.EnginePlatformDispatcher(A.PlatformConfiguration$(B.C_AccessibilityFeatures, false, "/", A.EnginePlatformDispatcher_parseBrowserLanguages(), B.Brightness_1, false, null, A.findBrowserTextScaleFactor()), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("FlutterWindow")), A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("ViewConfiguration0")), A.window().matchMedia("(prefers-color-scheme: dark)")); t1._addBrightnessMediaQueryListener$0(); t1._addFontSizeObserver$0(); return t1; }); _lazy($, "_frameTimingsLastSubmitTime", "$get$_frameTimingsLastSubmitTime", () => A._nowMicros()); _lazyFinal($, "supportsFontLoadingApi", "$get$supportsFontLoadingApi", () => A.hasProperty(A.window(), "FontFace")); _lazyFinal($, "supportsFontsClearApi", "$get$supportsFontsClearApi", () => { if (A.hasProperty(A.document(), "fonts")) { var t1 = A.document().fonts; t1.toString; t1 = A.hasProperty(t1, "clear"); } else t1 = false; return t1; }); _lazy($, "browserSupportsImageDecoder", "$get$browserSupportsImageDecoder", () => { var t1 = self.window.ImageDecoder != null && A.browserEngine() === B.BrowserEngine_0; return t1; }); _lazyFinal($, "accessibilityAnnouncements", "$get$accessibilityAnnouncements", () => { var t1 = $.AccessibilityAnnouncements__instance; return t1 == null ? $.AccessibilityAnnouncements__instance = A.AccessibilityAnnouncements$_() : t1; }); _lazyFinal($, "_roleFactories", "$get$_roleFactories", () => A.LinkedHashMap_LinkedHashMap$_literal([B.Role_0, new A._roleFactories_closure(), B.Role_1, new A._roleFactories_closure0(), B.Role_2, new A._roleFactories_closure1(), B.Role_3, new A._roleFactories_closure2(), B.Role_4, new A._roleFactories_closure3(), B.Role_5, new A._roleFactories_closure4(), B.Role_6, new A._roleFactories_closure5(), B.Role_7, new A._roleFactories_closure6()], type$.Role, A.findType("RoleManager(SemanticsObject)"))); _lazyFinal($, "FontManager_notPunctuation", "$get$FontManager_notPunctuation", () => A.RegExp_RegExp("[a-z0-9\\s]+", false, false, false, false)); _lazyFinal($, "FontManager_startWithDigit", "$get$FontManager_startWithDigit", () => A.RegExp_RegExp("\\b\\d", true, false, false, false)); _lazy($, "Spanometer__rulerHost", "$get$Spanometer__rulerHost", () => { var t1 = A.Element_Element$tag("flt-ruler-host"), t2 = new A.RulerHost(t1), t3 = t1.style; (t3 && B.CssStyleDeclaration_methods).set$position(t3, "fixed"); B.CssStyleDeclaration_methods.set$visibility(t3, "hidden"); B.CssStyleDeclaration_methods.set$overflow(t3, "hidden"); B.CssStyleDeclaration_methods.set$top(t3, "0"); B.CssStyleDeclaration_methods.set$left(t3, "0"); B.CssStyleDeclaration_methods.set$width(t3, "0"); B.CssStyleDeclaration_methods.set$height(t3, "0"); t3 = A.flutterViewEmbedder()._glassPaneShadow.get$node(); t3.appendChild(t1); A.registerHotRestartListener(t2.get$dispose(t2)); return t2; }); _lazyFinal($, "_textDirectionLookup", "$get$_textDirectionLookup", () => A.UnicodePropertyLookup$(A._setArrayType([B.UnicodeRange_65_90_TextDirection_1, B.UnicodeRange_97_122_TextDirection_1, B.UnicodeRange_192_214_TextDirection_1, B.UnicodeRange_216_246_TextDirection_1, B.UnicodeRange_248_696_TextDirection_1, B.UnicodeRange_768_1424_TextDirection_1, B.UnicodeRange_1425_1775_TextDirection_0, B.UnicodeRange_1786_2303_TextDirection_0, B.UnicodeRange_2304_8191_TextDirection_1, B.UnicodeRange_8206_8206_TextDirection_1, B.UnicodeRange_8207_8207_TextDirection_0, B.UnicodeRange_11264_55297_TextDirection_1, B.UnicodeRange_55298_55299_TextDirection_0, B.UnicodeRange_55300_55353_TextDirection_1, B.UnicodeRange_55354_55355_TextDirection_0, B.UnicodeRange_55356_56319_TextDirection_1, B.UnicodeRange_63744_64284_TextDirection_1, B.UnicodeRange_64285_65023_TextDirection_0, B.UnicodeRange_65024_65135_TextDirection_1, B.UnicodeRange_65136_65276_TextDirection_0, B.UnicodeRange_65277_65535_TextDirection_1], A.findType("JSArray>")), null, A.findType("TextDirection?"))); _lazy($, "wordLookup", "$get$wordLookup", () => A.UnicodePropertyLookup_UnicodePropertyLookup$fromPackedData("000a!E000b000cF000d!D000w!R000y!A0013!B0018!M001a!N001c001lO001m!L001n!M001t002iK002n!P002p003eK003p!F004q!K004t!I0051!K0053!L0056!K005c005yK0060006uK006w00k7K00ke00lbK00lc00ofG00og00okK00om00onK00oq00otK00ou!M00ov!K00p2!K00p3!L00p400p6K00p8!K00pa00ptK00pv00s5K00s700w1K00w300w9G00wa010vK010x011yK01210124K0126!K0127!L0128013cK013d!M013e!K013l014tG014v!G014x014yG01500151G0153!G015c0162C0167016aC016b!K016c!L016o016tI01700171M0174017eG017g!I017k018qK018r019bG019c019lO019n!O019o!M019q019rK019s!G019t01cjK01cl!K01cm01csG01ct!I01cv01d0G01d101d2K01d301d4G01d601d9G01da01dbK01dc01dlO01dm01doK01dr!K01e7!I01e8!K01e9!G01ea01f3K01f401fuG01fx01idK01ie01ioG01ip!K01j401jdO01je01kaK01kb01kjG01kk01klK01ko!M01kq!K01kt!G01kw01lhK01li01llG01lm!K01ln01lvG01lw!K01lx01lzG01m0!K01m101m5G01mo01ncK01nd01nfG01nk01nuK01pc01pwK01py01qfK01qr01r5G01r6!I01r701s3G01s401tlK01tm01toG01tp!K01tq01u7G01u8!K01u901ufG01ug01upK01uq01urG01uu01v3O01v501vkK01vl01vnG01vp01vwK01vz01w0K01w301woK01wq01wwK01wy!K01x201x5K01x8!G01x9!K01xa01xgG01xj01xkG01xn01xpG01xq!K01xz!G01y401y5K01y701y9K01ya01ybG01ye01ynO01yo01ypK01z0!K01z2!G01z501z7G01z901zeK01zj01zkK01zn0208K020a020gK020i020jK020l020mK020o020pK020s!G020u020yG02130214G02170219G021d!G021l021oK021q!K021y0227O02280229G022a022cK022d!G022p022rG022t0231K02330235K0237023sK023u0240K02420243K02450249K024c!G024d!K024e024lG024n024pG024r024tG024w!K025c025dK025e025fG025i025rO0261!K02620267G0269026bG026d026kK026n026oK026r027cK027e027kK027m027nK027p027tK027w!G027x!K027y0284G02870288G028b028dG028l028nG028s028tK028v028xK028y028zG0292029bO029d!K029u!G029v!K029x02a2K02a602a8K02aa02adK02ah02aiK02ak!K02am02anK02ar02asK02aw02ayK02b202bdK02bi02bmG02bq02bsG02bu02bxG02c0!K02c7!G02cm02cvO02dc02dgG02dh02doK02dq02dsK02du02egK02ei02exK02f1!K02f202f8G02fa02fcG02fe02fhG02fp02fqG02fs02fuK02g002g1K02g202g3G02g602gfO02gw!K02gx02gzG02h102h8K02ha02hcK02he02i0K02i202ibK02id02ihK02ik!G02il!K02im02isG02iu02iwG02iy02j1G02j902jaG02ji!K02jk02jlK02jm02jnG02jq02jzO02k102k2K02kg02kjG02kk02ksK02ku02kwK02ky02m2K02m302m4G02m5!K02m602mcG02me02mgG02mi02mlG02mm!K02ms02muK02mv!G02n302n5K02n602n7G02na02njO02nu02nzK02o102o3G02o502omK02oq02pdK02pf02pnK02pp!K02ps02pyK02q2!G02q702qcG02qe!G02qg02qnG02qu02r3O02r602r7G02sx!G02t002t6G02tj02tqG02ts02u1O02wh!G02wk02wsG02x402x9G02xc02xlO02yo!K02zc02zdG02zk02ztO0305!G0307!G0309!G030e030fG030g030nK030p031oK031t032cG032e032fG032g032kK032l032vG032x033wG0346!G036z037iG037k037tO03860389G038e038gG038i038kG038n038tG038x0390G039e039pG039r!G039s03a1O03a203a5G03a803b9K03bb!K03bh!K03bk03cqK03cs03m0K03m203m5K03m803meK03mg!K03mi03mlK03mo03nsK03nu03nxK03o003owK03oy03p1K03p403paK03pc!K03pe03phK03pk03pyK03q003rkK03rm03rpK03rs03tmK03tp03trG03uo03v3K03vk03xxK03y003y5K03y904fgK04fj04fzK04g0!R04g104gqK04gw04iyK04j204jcK04jk04jwK04jy04k1K04k204k4G04kg04kxK04ky04l0G04lc04ltK04lu04lvG04m804mkK04mm04moK04mq04mrG04ok04pfG04pp!G04ps04q1O04qz04r1G04r2!I04r404rdO04rk04u0K04u804ucK04ud04ueG04uf04vcK04vd!G04ve!K04vk04xhK04xs04ymK04yo04yzG04z404zfG04zq04zzO053k053tO054w055iK055j055nG0579057iG057k058cG058f!G058g058pO058w0595O059s05a8G05c005c4G05c505dfK05dg05dwG05dx05e3K05e805ehO05ez05f7G05fk05fmG05fn05ggK05gh05gtG05gu05gvK05gw05h5O05h605idK05ie05irG05j405k3K05k405knG05kw05l5O05l905lbK05lc05llO05lm05mlK05mo05mwK05n405oaK05od05ofK05ow05oyG05p005pkG05pl05poK05pp!G05pq05pvK05pw!G05px05pyK05pz05q1G05q2!K05q805vjK05vk05x5G05x705xbG05xc0651K06540659K065c066dK066g066lK066o066vK066x!K066z!K0671!K0673067xK0680069gK069i069oK069q!K069u069wK069y06a4K06a806abK06ae06ajK06ao06b0K06b606b8K06ba06bgK06bk06bqR06bs06buR06bw!G06bx!Q06by06bzI06c806c9N06ck!N06cn!L06co06cpF06cq06cuI06cv!P06db06dcP06dg!M06dw!P06e7!R06e806ecI06ee06enI06ep!K06f3!K06fk06fwK06hc06i8G06iq!K06iv!K06iy06j7K06j9!K06jd06jhK06jo!K06jq!K06js!K06ju06jxK06jz06k9K06kc06kfK06kl06kpK06ku!K06lc06mgK079207ahK08ow08q6K08q808riK08rk08v8K08vf08viK08vj08vlG08vm08vnK08w008x1K08x3!K08x9!K08xc08yvK08z3!K08zj!G08zk0906K090g090mK090o090uK090w0912K0914091aK091c091iK091k091qK091s091yK09200926K09280933G094f!K09hc!R09hh!K09ii09inG09ip09itJ09iz09j0K09ll09lmG09ln09loJ09ls09oaJ09oc09ofJ09ol09prK09pt09seK09sw09trK09v409vjJ0a1c0a2mJ0a2o0a53J0vls0wi4K0wk00wl9K0wlc0wssK0wsw0wtbK0wtc0wtlO0wtm0wtnK0wu80wviK0wvj0wvmG0wvo0wvxG0wvz0wwtK0wwu0wwvG0www0wz3K0wz40wz5G0wzs0x4vK0x4y0x56K0x6d0x6pK0x6q!G0x6r0x6tK0x6u!G0x6v0x6yK0x6z!G0x700x7mK0x7n0x7rG0x7w!G0x8g0x9vK0xa80xa9G0xaa0xbnK0xbo0xc5G0xcg0xcpO0xcw0xddG0xde0xdjK0xdn!K0xdp0xdqK0xdr!G0xds0xe1O0xe20xetK0xeu0xf1G0xf40xfqK0xfr0xg3G0xgg0xh8K0xhc0xhfG0xhg0xiqK0xir0xj4G0xjj!K0xjk0xjtO0xk5!G0xkg0xkpO0xkw0xm0K0xm10xmeG0xmo0xmqK0xmr!G0xms0xmzK0xn00xn1G0xn40xndO0xob0xodG0xps!G0xpu0xpwG0xpz0xq0G0xq60xq7G0xq9!G0xr40xreK0xrf0xrjG0xrm0xroK0xrp0xrqG0xs10xs6K0xs90xseK0xsh0xsmK0xsw0xt2K0xt40xtaK0xtc0xuxK0xv40xyaK0xyb0xyiG0xyk0xylG0xyo0xyxO0xz416lfK16ls16meK16mj16nvK1dkw1dl2K1dlf1dljK1dlp!C1dlq!G1dlr1dm0C1dm21dmeC1dmg1dmkC1dmm!C1dmo1dmpC1dmr1dmsC1dmu1dn3C1dn41dptK1dqr1e0tK1e1c1e33K1e361e4nK1e5s1e63K1e681e6nG1e6o!M1e6r!L1e6s!M1e741e7jG1e7n1e7oP1e8d1e8fP1e8g!M1e8i!N1e8k!M1e8l!L1e9c1e9gK1e9i1ed8K1edb!I1edj!N1edo!M1edq!N1eds1ee1O1ee2!L1ee3!M1ee91eeyK1ef3!P1ef51efuK1eg61ehpJ1ehq1ehrG1ehs1eimK1eiq1eivK1eiy1ej3K1ej61ejbK1eje1ejgK1ek91ekbI1ekg1ekrK1ekt1eliK1elk1em2K1em41em5K1em71emlK1emo1en1K1eo01ereK1etc1eusK1eyl!G1f281f30K1f341f4gK1f4w!G1f5s1f6nK1f711f7uK1f801f91K1f921f96G1f9c1fa5K1fa81fb7K1fbc1fbjK1fbl1fbpK1fcw1fh9K1fhc1fhlO1fhs1firK1fiw1fjvK1fk01fl3K1flc1fmrK1fr41fzqK1g001g0lK1g0w1g13K1g5c1g5hK1g5k!K1g5m1g6tK1g6v1g6wK1g70!K1g731g7pK1g801g8mK1g8w1g9qK1gbk1gc2K1gc41gc5K1gcg1gd1K1gdc1ge1K1gg01ghjK1ghq1ghrK1gjk!K1gjl1gjnG1gjp1gjqG1gjw1gjzG1gk01gk3K1gk51gk7K1gk91gl1K1gl41gl6G1glb!G1gm81gn0K1gn41gnwK1gow1gp3K1gp51gpwK1gpx1gpyG1gqo1gs5K1gsg1gt1K1gtc1gtuK1gu81gupK1gxs1gzsK1h1c1h2qK1h341h4iK1h4w1h5vK1h5w1h5zG1h681h6hO1hfk1hgpK1hgr1hgsG1hgw1hgxK1hj41hjwK1hk7!K1hkg1hl1K1hl21hlcG1ho01hokK1hpc1hpyK1hq81hqaG1hqb1hrrK1hrs1hs6G1ht21htbO1htr1htuG1htv1hv3K1hv41hveG1hvh!I1hvx!I1hw01hwoK1hww1hx5O1hxc1hxeG1hxf1hyeK1hyf1hysG1hyu1hz3O1hz8!K1hz91hzaG1hzb!K1hzk1i0iK1i0j!G1i0m!K1i0w1i0yG1i0z1i2aK1i2b1i2oG1i2p1i2sK1i2x1i30G1i321i33G1i341i3dO1i3e!K1i3g!K1i4g1i4xK1i4z1i5nK1i5o1i5zG1i66!G1i801i86K1i88!K1i8a1i8dK1i8f1i8tK1i8v1i94K1i9c1iamK1ian1iayG1ib41ibdO1ibk1ibnG1ibp1ibwK1ibz1ic0K1ic31icoK1icq1icwK1icy1iczK1id11id5K1id71id8G1id9!K1ida1idgG1idj1idkG1idn1idpG1ids!K1idz!G1ie51ie9K1iea1iebG1iee1iekG1ieo1iesG1iio1ik4K1ik51ikmG1ikn1ikqK1ikw1il5O1ila!G1ilb1ildK1im81injK1ink1io3G1io41io5K1io7!K1iog1iopO1itc1iumK1iun1iutG1iuw1iv4G1ivs1ivvK1ivw1ivxG1iww1iy7K1iy81iyoG1iys!K1iz41izdO1j0g1j1mK1j1n1j1zG1j20!K1j281j2hO1j4t1j57G1j5c1j5lO1jb41jcbK1jcc1jcqG1jfk1jhbK1jhc1jhlO1ji71jieK1jih!K1jik1jirK1jit1jiuK1jiw1jjjK1jjk1jjpG1jjr1jjsG1jjv1jjyG1jjz!K1jk0!G1jk1!K1jk21jk3G1jkg1jkpO1jmo1jmvK1jmy1jo0K1jo11jo7G1joa1jogG1joh!K1joj!K1jok!G1jpc!K1jpd1jpmG1jpn1jqqK1jqr1jqxG1jqy!K1jqz1jr2G1jrb!G1jrk!K1jrl1jrvG1jrw1jt5K1jt61jtlG1jtp!K1juo1jw8K1k3k1k3sK1k3u1k4uK1k4v1k52G1k541k5bG1k5c!K1k5s1k61O1k6q1k7jK1k7m1k87G1k891k8mG1kao1kauK1kaw1kaxK1kaz1kc0K1kc11kc6G1kca!G1kcc1kcdG1kcf1kclG1kcm!K1kcn!G1kcw1kd5O1kdc1kdhK1kdj1kdkK1kdm1kehK1kei1kemG1keo1kepG1ker1kevG1kew!K1kf41kfdO1ko01koiK1koj1komG1kts!K1kw01lllK1log1lriK1ls01lxfK1o1s1oviK1ovk1ovsI1s001sg6K1z401zjsK1zk01zkuK1zkw1zl5O1zo01zotK1zow1zp0G1zpc1zqnK1zqo1zquG1zr41zr7K1zrk1zrtO1zs31zsnK1zst1ztbK20cg20e7K20hs20juK20jz!G20k0!K20k120ljG20lr20luG20lv20m7K20o020o1K20o3!K20o4!G20og20ohG2dc0!J2dlw2dlzJ2fpc2fsaK2fsg2fssK2fsw2ft4K2ftc2ftlK2ftp2ftqG2fts2ftvI2jxh2jxlG2jxp2jxuG2jxv2jy2I2jy32jyaG2jyd2jyjG2jze2jzhG2k3m2k3oG2kg02kicK2kie2kkcK2kke2kkfK2kki!K2kkl2kkmK2kkp2kksK2kku2kl5K2kl7!K2kl92klfK2klh2kn9K2knb2kneK2knh2knoK2knq2knwK2kny2kopK2kor2kouK2kow2kp0K2kp2!K2kp62kpcK2kpe2kytK2kyw2kzkK2kzm2l0aK2l0c2l16K2l182l1wK2l1y2l2sK2l2u2l3iK2l3k2l4eK2l4g2l54K2l562l60K2l622l6qK2l6s2l6zK2l722l8fO2lmo2lo6G2lob2lpoG2lpx!G2lqc!G2lqz2lr3G2lr52lrjG2mtc2mtiG2mtk2mu0G2mu32mu9G2mub2mucG2mue2muiG2n0g2n1oK2n1s2n1yG2n1z2n25K2n282n2hO2n2m!K2ncw2ne3K2ne42ne7G2ne82nehO2oe82ojoK2ok02ok6G2olc2on7K2on82oneG2onf!K2onk2ontO2pkw2pkzK2pl12plrK2plt2pluK2plw!K2plz!K2pm12pmaK2pmc2pmfK2pmh!K2pmj!K2pmq!K2pmv!K2pmx!K2pmz!K2pn12pn3K2pn52pn6K2pn8!K2pnb!K2pnd!K2pnf!K2pnh!K2pnj!K2pnl2pnmK2pno!K2pnr2pnuK2pnw2po2K2po42po7K2po92pocK2poe!K2pog2popK2por2pp7K2ppd2ppfK2pph2pplK2ppn2pq3K2q7k2q89K2q8g2q95K2q9c2qa1K2qcm2qdbH2qrf2qrjG2sc02sc9Ojny9!Ijnz4jo1rGjo5cjobzG", 231, B.List_G7P, B.WordCharProperty_18, A.findType("WordCharProperty"))); _lazyFinal($, "BrowserAutofillHints__singletonInstance", "$get$BrowserAutofillHints__singletonInstance", () => { var t1 = type$.String; return new A.BrowserAutofillHints(A.LinkedHashMap_LinkedHashMap$_literal(["birthday", "bday", "birthdayDay", "bday-day", "birthdayMonth", "bday-month", "birthdayYear", "bday-year", "countryCode", "country", "countryName", "country-name", "creditCardExpirationDate", "cc-exp", "creditCardExpirationMonth", "cc-exp-month", "creditCardExpirationYear", "cc-exp-year", "creditCardFamilyName", "cc-family-name", "creditCardGivenName", "cc-given-name", "creditCardMiddleName", "cc-additional-name", "creditCardName", "cc-name", "creditCardNumber", "cc-number", "creditCardSecurityCode", "cc-csc", "creditCardType", "cc-type", "email", "email", "familyName", "family-name", "fullStreetAddress", "street-address", "gender", "sex", "givenName", "given-name", "impp", "impp", "jobTitle", "organization-title", "language", "language", "middleName", "middleName", "name", "name", "namePrefix", "honorific-prefix", "nameSuffix", "honorific-suffix", "newPassword", "new-password", "nickname", "nickname", "oneTimeCode", "one-time-code", "organizationName", "organization", "password", "current-password", "photo", "photo", "postalCode", "postal-code", "streetAddressLevel1", "address-level1", "streetAddressLevel2", "address-level2", "streetAddressLevel3", "address-level3", "streetAddressLevel4", "address-level4", "streetAddressLine1", "address-line1", "streetAddressLine2", "address-line2", "streetAddressLine3", "address-line3", "telephoneNumber", "tel", "telephoneNumberAreaCode", "tel-area-code", "telephoneNumberCountryCode", "tel-country-code", "telephoneNumberExtension", "tel-extension", "telephoneNumberLocal", "tel-local", "telephoneNumberLocalPrefix", "tel-local-prefix", "telephoneNumberLocalSuffix", "tel-local-suffix", "telephoneNumberNational", "tel-national", "transactionAmount", "transaction-amount", "transactionCurrency", "transaction-currency", "url", "url", "username", "username"], t1, t1)); }); _lazyFinal($, "textEditing", "$get$textEditing", () => new A.HybridTextEditing()); _lazyFinal($, "_tempRectData", "$get$_tempRectData", () => A.NativeFloat32List_NativeFloat32List(4)); _lazyFinal($, "_tempPointData", "$get$_tempPointData", () => A.NativeFloat32List_NativeFloat32List(16)); _lazyFinal($, "_tempPointMatrix", "$get$_tempPointMatrix", () => A.Matrix4$fromFloat32List($.$get$_tempPointData())); _lazy($, "printWarning", "$get$printWarning", () => { A.window(); return B.C_Console.get$warn(); }); _lazyFinal($, "window0", "$get$window", () => A.EngineSingletonFlutterWindow$(0, $.$get$EnginePlatformDispatcher__instance())); _lazyFinal($, "DART_CLOSURE_PROPERTY_NAME", "$get$DART_CLOSURE_PROPERTY_NAME", () => A.getIsolateAffinityTag("_$dart_dartClosure")); _lazyFinal($, "_CopyingBytesBuilder__emptyList", "$get$_CopyingBytesBuilder__emptyList", () => A.NativeUint8List_NativeUint8List(0)); _lazyFinal($, "nullFuture", "$get$nullFuture", () => B.C__RootZone.run$1$1(new A.nullFuture_closure(), A.findType("Future"))); _lazyFinal($, "TypeErrorDecoder_noSuchMethodPattern", "$get$TypeErrorDecoder_noSuchMethodPattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokeCallErrorOn({ toString: function() { return "$receiver$"; } }))); _lazyFinal($, "TypeErrorDecoder_notClosurePattern", "$get$TypeErrorDecoder_notClosurePattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokeCallErrorOn({$method$: null, toString: function() { return "$receiver$"; } }))); _lazyFinal($, "TypeErrorDecoder_nullCallPattern", "$get$TypeErrorDecoder_nullCallPattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokeCallErrorOn(null))); _lazyFinal($, "TypeErrorDecoder_nullLiteralCallPattern", "$get$TypeErrorDecoder_nullLiteralCallPattern", () => A.TypeErrorDecoder_extractPattern(function() { var $argumentsExpr$ = "$arguments$"; try { null.$method$($argumentsExpr$); } catch (e) { return e.message; } }())); _lazyFinal($, "TypeErrorDecoder_undefinedCallPattern", "$get$TypeErrorDecoder_undefinedCallPattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokeCallErrorOn(void 0))); _lazyFinal($, "TypeErrorDecoder_undefinedLiteralCallPattern", "$get$TypeErrorDecoder_undefinedLiteralCallPattern", () => A.TypeErrorDecoder_extractPattern(function() { var $argumentsExpr$ = "$arguments$"; try { (void 0).$method$($argumentsExpr$); } catch (e) { return e.message; } }())); _lazyFinal($, "TypeErrorDecoder_nullPropertyPattern", "$get$TypeErrorDecoder_nullPropertyPattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokePropertyErrorOn(null))); _lazyFinal($, "TypeErrorDecoder_nullLiteralPropertyPattern", "$get$TypeErrorDecoder_nullLiteralPropertyPattern", () => A.TypeErrorDecoder_extractPattern(function() { try { null.$method$; } catch (e) { return e.message; } }())); _lazyFinal($, "TypeErrorDecoder_undefinedPropertyPattern", "$get$TypeErrorDecoder_undefinedPropertyPattern", () => A.TypeErrorDecoder_extractPattern(A.TypeErrorDecoder_provokePropertyErrorOn(void 0))); _lazyFinal($, "TypeErrorDecoder_undefinedLiteralPropertyPattern", "$get$TypeErrorDecoder_undefinedLiteralPropertyPattern", () => A.TypeErrorDecoder_extractPattern(function() { try { (void 0).$method$; } catch (e) { return e.message; } }())); _lazyFinal($, "_AsyncRun__scheduleImmediateClosure", "$get$_AsyncRun__scheduleImmediateClosure", () => A._AsyncRun__initializeScheduleImmediate()); _lazyFinal($, "Future__nullFuture", "$get$Future__nullFuture", () => type$._Future_Null._as($.$get$nullFuture())); _lazyFinal($, "Future__falseFuture", "$get$Future__falseFuture", () => A._Future$zoneValue(false, B.C__RootZone, type$.bool)); _lazyFinal($, "Utf8Decoder__decoder", "$get$Utf8Decoder__decoder", () => new A.Utf8Decoder__decoder_closure().call$0()); _lazyFinal($, "Utf8Decoder__decoderNonfatal", "$get$Utf8Decoder__decoderNonfatal", () => new A.Utf8Decoder__decoderNonfatal_closure().call$0()); _lazyFinal($, "_Base64Decoder__inverseAlphabet", "$get$_Base64Decoder__inverseAlphabet", () => A.NativeInt8List__create1(A._ensureNativeList(A._setArrayType([-2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -2, -2, -2, -2, -2, 62, -2, 62, -2, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -1, -2, -2, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, 63, -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2], type$.JSArray_int)))); _lazy($, "_Base64Decoder__emptyBuffer", "$get$_Base64Decoder__emptyBuffer", () => A.NativeUint8List_NativeUint8List(0)); _lazyFinal($, "Encoding__nameToEncoding", "$get$Encoding__nameToEncoding", () => A.LinkedHashMap_LinkedHashMap$_literal(["iso_8859-1:1987", B.C_Latin1Codec, "iso-ir-100", B.C_Latin1Codec, "iso_8859-1", B.C_Latin1Codec, "iso-8859-1", B.C_Latin1Codec, "latin1", B.C_Latin1Codec, "l1", B.C_Latin1Codec, "ibm819", B.C_Latin1Codec, "cp819", B.C_Latin1Codec, "csisolatin1", B.C_Latin1Codec, "iso-ir-6", B.C_AsciiCodec, "ansi_x3.4-1968", B.C_AsciiCodec, "ansi_x3.4-1986", B.C_AsciiCodec, "iso_646.irv:1991", B.C_AsciiCodec, "iso646-us", B.C_AsciiCodec, "us-ascii", B.C_AsciiCodec, "us", B.C_AsciiCodec, "ibm367", B.C_AsciiCodec, "cp367", B.C_AsciiCodec, "csascii", B.C_AsciiCodec, "ascii", B.C_AsciiCodec, "csutf8", B.C_Utf8Codec, "utf-8", B.C_Utf8Codec], type$.String, A.findType("Encoding"))); _lazyFinal($, "_Uri__isWindowsCached", "$get$_Uri__isWindowsCached", () => typeof process != "undefined" && Object.prototype.toString.call(process) == "[object process]" && process.platform == "win32"); _lazyFinal($, "_Uri__needsNoEncoding", "$get$_Uri__needsNoEncoding", () => A.RegExp_RegExp("^[\\-\\.0-9A-Z_a-z~]*$", true, false, false, false)); _lazy($, "_hasErrorStackProperty", "$get$_hasErrorStackProperty", () => new Error().stack != void 0); _lazyFinal($, "_BigIntImpl_zero", "$get$_BigIntImpl_zero", () => A._BigIntImpl__BigIntImpl$_fromInt(0)); _lazyFinal($, "_BigIntImpl_one", "$get$_BigIntImpl_one", () => A._BigIntImpl__BigIntImpl$_fromInt(1)); _lazyFinal($, "_BigIntImpl__minusOne", "$get$_BigIntImpl__minusOne", () => $.$get$_BigIntImpl_one().$negate(0)); _lazyFinal($, "_BigIntImpl__bigInt10000", "$get$_BigIntImpl__bigInt10000", () => A._BigIntImpl__BigIntImpl$_fromInt(10000)); _lazy($, "_BigIntImpl__parseRE", "$get$_BigIntImpl__parseRE", () => A.RegExp_RegExp("^\\s*([+-]?)((0x[a-f0-9]+)|(\\d+)|([a-z0-9]+))\\s*$", false, false, false, false)); _lazyFinal($, "DateTime__parseFormat", "$get$DateTime__parseFormat", () => A.RegExp_RegExp("^([+-]?\\d{4,6})-?(\\d\\d)-?(\\d\\d)(?:[ T](\\d\\d)(?::?(\\d\\d)(?::?(\\d\\d)(?:[.,](\\d+))?)?)?( ?[zZ]| ?([-+])(\\d\\d)(?::?(\\d\\d))?)?)?$", true, false, false, false)); _lazyFinal($, "_hashSeed", "$get$_hashSeed", () => A.objectHashCode(B.Type_Object_xQ6)); _lazyFinal($, "Stopwatch__frequency", "$get$Stopwatch__frequency", () => { A.Primitives_initTicker(); return $.Primitives_timerFrequency; }); _lazyFinal($, "_scannerTables", "$get$_scannerTables", () => A._createTables()); _lazyFinal($, "_FakeUserTag__defaultTag", "$get$_FakeUserTag__defaultTag", () => A._FakeUserTag__FakeUserTag("Default")); _lazy($, "_currentTag", "$get$_currentTag", () => $.$get$_FakeUserTag__defaultTag()); _lazyFinal($, "CssStyleDeclaration__propertyCache", "$get$CssStyleDeclaration__propertyCache", () => ({})); _lazyFinal($, "_Html5NodeValidator__allowedElements", "$get$_Html5NodeValidator__allowedElements", () => A.LinkedHashSet_LinkedHashSet$from(["A", "ABBR", "ACRONYM", "ADDRESS", "AREA", "ARTICLE", "ASIDE", "AUDIO", "B", "BDI", "BDO", "BIG", "BLOCKQUOTE", "BR", "BUTTON", "CANVAS", "CAPTION", "CENTER", "CITE", "CODE", "COL", "COLGROUP", "COMMAND", "DATA", "DATALIST", "DD", "DEL", "DETAILS", "DFN", "DIR", "DIV", "DL", "DT", "EM", "FIELDSET", "FIGCAPTION", "FIGURE", "FONT", "FOOTER", "FORM", "H1", "H2", "H3", "H4", "H5", "H6", "HEADER", "HGROUP", "HR", "I", "IFRAME", "IMG", "INPUT", "INS", "KBD", "LABEL", "LEGEND", "LI", "MAP", "MARK", "MENU", "METER", "NAV", "NOBR", "OL", "OPTGROUP", "OPTION", "OUTPUT", "P", "PRE", "PROGRESS", "Q", "S", "SAMP", "SECTION", "SELECT", "SMALL", "SOURCE", "SPAN", "STRIKE", "STRONG", "SUB", "SUMMARY", "SUP", "TABLE", "TBODY", "TD", "TEXTAREA", "TFOOT", "TH", "THEAD", "TIME", "TR", "TRACK", "TT", "U", "UL", "VAR", "VIDEO", "WBR"], type$.String)); _lazyFinal($, "Device_isOpera", "$get$Device_isOpera", () => J.contains$2$asx(A.Device_userAgent(), "Opera", 0)); _lazyFinal($, "Device_isIE", "$get$Device_isIE", () => !$.$get$Device_isOpera() && J.contains$2$asx(A.Device_userAgent(), "Trident/", 0)); _lazyFinal($, "Device_isFirefox", "$get$Device_isFirefox", () => J.contains$2$asx(A.Device_userAgent(), "Firefox", 0)); _lazyFinal($, "Device_isWebKit", "$get$Device_isWebKit", () => !$.$get$Device_isOpera() && J.contains$2$asx(A.Device_userAgent(), "WebKit", 0)); _lazyFinal($, "Device_cssPrefix", "$get$Device_cssPrefix", () => "-" + $.$get$Device_propertyPrefix() + "-"); _lazyFinal($, "Device_propertyPrefix", "$get$Device_propertyPrefix", () => { if ($.$get$Device_isFirefox()) var t1 = "moz"; else if ($.$get$Device_isIE()) t1 = "ms"; else t1 = $.$get$Device_isOpera() ? "o" : "webkit"; return t1; }); _lazyFinal($, "_ioOverridesToken", "$get$_ioOverridesToken", () => new A.Object()); _lazyFinal($, "Platform__numberOfProcessors", "$get$Platform__numberOfProcessors", () => A._Platform_numberOfProcessors()); _lazyFinal($, "Platform__pathSeparator", "$get$Platform__pathSeparator", () => A._Platform_pathSeparator()); _lazyFinal($, "Platform__operatingSystem", "$get$Platform__operatingSystem", () => A._Platform_operatingSystem()); _lazyFinal($, "Platform__operatingSystemVersion", "$get$Platform__operatingSystemVersion", () => { A._Platform__operatingSystemVersion(); var t1 = $._Platform__cachedOSVersion; t1.toString; return t1; }); _lazyFinal($, "Platform__localHostname", "$get$Platform__localHostname", () => A._Platform_localHostname()); _lazyFinal($, "Platform_isLinux", "$get$Platform_isLinux", () => { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isMacOS", "$get$Platform_isMacOS", () => { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isWindows", "$get$Platform_isWindows", () => { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isAndroid", "$get$Platform_isAndroid", () => { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isIOS", "$get$Platform_isIOS", () => { $.$get$Platform__operatingSystem(); return false; }); _lazy($, "_Platform_executable", "$get$_Platform_executable", () => A._Platform__executable()); _lazy($, "_Platform_resolvedExecutable", "$get$_Platform_resolvedExecutable", () => A._Platform__resolvedExecutable()); _lazyFinal($, "_stdin", "$get$_stdin", () => A._StdIOUtils__getStdioInputStream(0)); _lazyFinal($, "_stdout", "$get$_stdout", () => A._StdIOUtils__getStdioOutputStream(1)); _lazyFinal($, "_context", "$get$_context", () => A._castToJsObject(A._wrapToDart(self))); _lazyFinal($, "_DART_OBJECT_PROPERTY_NAME", "$get$_DART_OBJECT_PROPERTY_NAME", () => A.getIsolateAffinityTag("_$dart_dartObject")); _lazyFinal($, "_dartProxyCtor", "$get$_dartProxyCtor", () => function DartObject(o) { this.o = o; }); _lazyFinal($, "Endian_host", "$get$Endian_host", () => A.NativeByteData_NativeByteData$view(A.NativeUint16List_NativeUint16List$fromList(A._setArrayType([1], type$.JSArray_int)).buffer, 0, null).getInt8(0) === 1 ? B.C_Endian : B.C_Endian0); _lazyFinal($, "channelBuffers", "$get$channelBuffers", () => new A.ChannelBuffers(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("_Channel")))); _lazyFinal($, "platformViewRegistry", "$get$platformViewRegistry", () => new A.PlatformViewRegistry()); _lazyFinal($, "_StaticTree_staticLDesc", "$get$_StaticTree_staticLDesc", () => A._StaticTree$(B.List_Xg4, B.List_qQn, 257, 286, 15)); _lazyFinal($, "_StaticTree_staticDDesc", "$get$_StaticTree_staticDDesc", () => A._StaticTree$(B.List_iYO, B.List_X3d, 0, 30, 15)); _lazyFinal($, "_StaticTree_staticBlDesc", "$get$_StaticTree_staticBlDesc", () => A._StaticTree$(null, B.List_uSC0, 0, 19, 7)); _lazyFinal($, "_log", "$get$_log1", () => $.$get$attributionsLog()); _lazyFinal($, "_log0", "$get$_log0", () => $.$get$attributionsLog()); _lazyFinal($, "attributionsLog", "$get$attributionsLog", () => A.Logger_Logger("attributions")); _lazyFinal($, "isSoundMode", "$get$isSoundMode", () => !type$.List_int._is(A._setArrayType([], type$.JSArray_nullable_int))); _lazy($, "newBuiltValueToStringHelper", "$get$newBuiltValueToStringHelper", () => new A.newBuiltValueToStringHelper_closure()); _lazyFinal($, "_runtimeType", "$get$_runtimeType", () => A.getRuntimeType(A.RegExp_RegExp("", true, false, false, false))); _lazyFinal($, "StandardJsonPlugin__unsupportedTypes", "$get$StandardJsonPlugin__unsupportedTypes", () => A.BuiltSet_BuiltSet([B.Type_BuiltListMultimap_2Mt, B.Type_BuiltSetMultimap_9Fi], type$.Type)); _lazyFinal($, "CartesianChart__defaultLayoutConfig", "$get$CartesianChart__defaultLayoutConfig", () => { var t1 = A.MarginSpec_MarginSpec$fromPixel(20); return A.LayoutConfig$(A.MarginSpec_MarginSpec$fromPixel(20), A.MarginSpec_MarginSpec$fromPixel(20), A.MarginSpec_MarginSpec$fromPixel(20), t1); }); _lazyFinal($, "Legend__decimalPattern", "$get$Legend__decimalPattern", () => A.NumberFormat_NumberFormat$decimalPattern(null)); _lazyFinal($, "GestureListener_defaultTapCancel", "$get$GestureListener_defaultTapCancel", () => new A.GestureListener_defaultTapCancel_closure()); _lazyFinal($, "GestureListener_defaultTapTest", "$get$GestureListener_defaultTapTest", () => new A.GestureListener_defaultTapTest_closure()); _lazyFinal($, "MaterialPalette__orderedPalettes", "$get$MaterialPalette__orderedPalettes", () => B.JSArray_methods.map$1$1(A._setArrayType([new A.MaterialPalette__orderedPalettes_closure(), new A.MaterialPalette__orderedPalettes_closure0(), new A.MaterialPalette__orderedPalettes_closure1(), new A.MaterialPalette__orderedPalettes_closure2(), new A.MaterialPalette__orderedPalettes_closure3(), new A.MaterialPalette__orderedPalettes_closure4(), new A.MaterialPalette__orderedPalettes_closure5(), new A.MaterialPalette__orderedPalettes_closure6(), new A.MaterialPalette__orderedPalettes_closure7(), new A.MaterialPalette__orderedPalettes_closure8(), new A.MaterialPalette__orderedPalettes_closure9()], A.findType("JSArray")), new A.MaterialPalette__orderedPalettes_closure10(), A.findType("Palette"))); _lazy($, "Performance_time", "$get$Performance_time", () => new A.Performance_time_closure()); _lazy($, "Performance_timeEnd", "$get$Performance_timeEnd", () => new A.Performance_timeEnd_closure()); _lazyFinal($, "StyleFactory__styleFactory", "$get$StyleFactory__styleFactory", () => new A.StyleFactory()); _lazyFinal($, "_clockKey", "$get$_clockKey", () => new A.Object()); _lazyFinal($, "_systemTempCounter", "$get$_systemTempCounter", () => A.Expando$(type$.int)); _lazyFinal($, "FilePickerWeb_platform", "$get$FilePickerWeb_platform", () => { var targetElement, t2, t1 = new A.FilePickerWeb($.$get$FilePicker__token()), target = A.querySelector("#__file_picker_web-file-input"); if (target == null) { targetElement = A.Element_Element$tag("flt-file-picker-inputs"); targetElement.id = "__file_picker_web-file-input"; t2 = A.querySelector("body"); t2.toString; J.get$children$x(t2).add$1(0, targetElement); target = targetElement; } t1.__FilePickerWeb__target = target; return t1; }); _lazyFinal($, "FilePicker__token", "$get$FilePicker__token", () => new A.Object()); _lazy($, "FilePicker__instance", "$get$FilePicker__instance", () => A.FilePicker_FilePicker$_setPlatform()); _lazyFinal($, "_channel", "$get$_channel", () => A.MethodChannel$("miguelruivo.flutter.plugins.filepicker", $.$get$Platform_isLinux() || $.$get$Platform_isWindows() || $.$get$Platform_isMacOS() ? B.C_JSONMethodCodec0 : B.C_StandardMethodCodec, null)); _lazyFinal($, "_kFlingSpringDescription", "$get$_kFlingSpringDescription", () => A.SpringDescription$withDampingRatio(1, 1, 500)); _lazyFinal($, "cupertinoDesktopTextSelectionControls", "$get$cupertinoDesktopTextSelectionControls", () => new A._CupertinoDesktopTextSelectionControls()); _lazyFinal($, "_kRightMiddleTween", "$get$_kRightMiddleTween", () => A.Tween$(B.Offset_1_0, B.Offset_0_0, type$.Offset)); _lazyFinal($, "_kMiddleLeftTween", "$get$_kMiddleLeftTween", () => A.Tween$(B.Offset_0_0, B.Offset_Oho0, type$.Offset)); _lazy($, "_CupertinoEdgeShadowDecoration_kTween", "$get$_CupertinoEdgeShadowDecoration_kTween", () => A.DecorationTween$(B._CupertinoEdgeShadowDecoration_null, B._CupertinoEdgeShadowDecoration_0m8)); _lazyFinal($, "cupertinoTextSelectionControls", "$get$cupertinoTextSelectionControls", () => new A.CupertinoTextSelectionControls()); _lazyFinal($, "_testPlatform", "$get$_testPlatform", () => new A._testPlatform_closure().call$0()); _lazyFinal($, "_browserPlatform", "$get$_browserPlatform", () => new A._browserPlatform_closure().call$0()); _lazy($, "FlutterError_onError", "$get$FlutterError_onError", () => $.FlutterError_presentError); _lazyFinal($, "ChangeNotifier__emptyListeners", "$get$ChangeNotifier__emptyListeners", () => A.List_List$filled(0, null, false, type$.nullable_void_Function)); _lazyFinal($, "sparseTextConfiguration", "$get$sparseTextConfiguration", () => A.TextTreeConfiguration$(true, "", ":", "", "", "", "", "", true, false, "\n", true, "\u2502", "", "\u2514\u2500", "\u251c\u2500", " ", " ", "\u2502 ", " ", "", true, "")); _lazyFinal($, "dashedTextConfiguration", "$get$dashedTextConfiguration", () => A.TextTreeConfiguration$(true, "", ":", "", "", "", "", "", true, false, "\n", true, "\u254e", "", "\u2514\u254c", "\u254e\u254c", " ", " ", "\u2502 ", " ", "", true, "")); _lazyFinal($, "denseTextConfiguration", "$get$denseTextConfiguration", () => A.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", false, false, "\n", false, "\u2502", "", "\u2514", "\u251c", "", "", "\u2502", " ", ", ", true, "")); _lazyFinal($, "transitionTextConfiguration", "$get$transitionTextConfiguration", () => A.TextTreeConfiguration$(false, ":", " \u2550\u2550\u2550", "", "", "", " ", " \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550", false, true, "\n", true, "\u2502", "", "\u2558\u2550\u2566\u2550\u2550 ", "\u255e\u2550\u2566\u2550\u2550 ", " \u2551 ", "", "", "", "", true, "")); _lazyFinal($, "errorTextConfiguration", "$get$errorTextConfiguration", () => A.TextTreeConfiguration$(false, "", ":", "", "\u2550\u2550\u2561 ", "", "", " \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550", false, false, "\n", true, "\u2502", "\u2550\u2550\u2550\u2550\u2550", "\u2558\u2550\u2566", "\u255e\u2550\u2566", " \u2551 ", "", "", "", "", true, " \u255e\u2550\u2550")); _lazyFinal($, "whitespaceTextConfiguration", "$get$whitespaceTextConfiguration", () => A.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, " ", "", "", "", " ", " ", "", "", "", true, "")); _lazyFinal($, "flatTextConfiguration", "$get$flatTextConfiguration", () => A.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, "", "", "", "", "", "", "", "", "", true, "")); _lazyFinal($, "singleLineTextConfiguration", "$get$singleLineTextConfiguration", () => A.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", true, false, "", false, "", "", "", "", "", "", " ", " ", ", ", false, "")); _lazyFinal($, "errorPropertyTextConfiguration", "$get$errorPropertyTextConfiguration", () => A.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", true, true, "\n", false, "", "", "", "", "", "", " ", " ", ", ", false, "")); _lazyFinal($, "shallowTextConfiguration", "$get$shallowTextConfiguration", () => A.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, " ", "", "", "", " ", " ", "", "", "", false, "")); _lazyFinal($, "_debugPrintBuffer", "$get$_debugPrintBuffer", () => A.ListQueue$(null, type$.String)); _lazyFinal($, "_debugPrintStopwatch", "$get$_debugPrintStopwatch", () => A.Stopwatch$()); _lazyFinal($, "WriteBuffer__zeroBuffer", "$get$WriteBuffer__zeroBuffer", () => A.NativeUint8List_NativeUint8List(8)); _lazyFinal($, "StackFrame__webNonDebugFramePattern", "$get$StackFrame__webNonDebugFramePattern", () => A.RegExp_RegExp("^\\s*at ([^\\s]+).*$", true, false, false, false)); _lazyFinal($, "DataTable__headingRowKey", "$get$DataTable__headingRowKey", () => A.UniqueKey$()); _lazyFinal($, "_SortArrowState__turnTween", "$get$_SortArrowState__turnTween", () => A.Tween$(0, 3.141592653589793, type$.double).chain$1(A.CurveTween$(B.Cubic_JUR0))); _lazyFinal($, "desktopTextSelectionControls", "$get$desktopTextSelectionControls", () => new A._DesktopTextSelectionControls()); _lazyFinal($, "_ExpandIconState__iconTurnTween", "$get$_ExpandIconState__iconTurnTween", () => A.Tween$(0, 0.5, type$.double).chain$1(A.CurveTween$(B.Cubic_ifx))); _lazyFinal($, "_ScalingFabMotionAnimator__rotationTween", "$get$_ScalingFabMotionAnimator__rotationTween", () => A.Tween$(0.75, 1, type$.double)); _lazyFinal($, "_ScalingFabMotionAnimator__thresholdCenterTween", "$get$_ScalingFabMotionAnimator__thresholdCenterTween", () => A.CurveTween$(B.Threshold_znv)); _lazyFinal($, "InkRipple__easeCurveTween", "$get$InkRipple__easeCurveTween", () => A.CurveTween$(B.Cubic_JUR)); _lazyFinal($, "InkRipple__fadeOutIntervalTween", "$get$InkRipple__fadeOutIntervalTween", () => A.CurveTween$(B.Interval_75R0)); _lazyFinal($, "_FadeUpwardsPageTransition__bottomUpTween", "$get$_FadeUpwardsPageTransition__bottomUpTween", () => A.Tween$(B.Offset_chs, B.Offset_0_0, type$.Offset)); _lazyFinal($, "_FadeUpwardsPageTransition__fastOutSlowInTween", "$get$_FadeUpwardsPageTransition__fastOutSlowInTween", () => A.CurveTween$(B.Cubic_ifx)); _lazyFinal($, "_FadeUpwardsPageTransition__easeInTween", "$get$_FadeUpwardsPageTransition__easeInTween", () => A.CurveTween$(B.Cubic_JUR0)); _lazyFinal($, "_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems", "$get$_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems", () => { var t1 = type$.double; return A._setArrayType([A.TweenSequenceItem$(A.Tween$(0, 0.4, t1).chain$1(A.CurveTween$(B.Cubic_HzT)), 0.166666, t1), A.TweenSequenceItem$(A.Tween$(0.4, 1, t1).chain$1(A.CurveTween$(B.Cubic_bP1)), 0.833334, t1)], type$.JSArray_TweenSequenceItem_double); }); _lazyFinal($, "_ZoomPageTransition__scaleCurveSequence", "$get$_ZoomPageTransition__scaleCurveSequence", () => A.TweenSequence$($.$get$_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems(), type$.double)); _lazyFinal($, "_ZoomEnterTransition__fadeInTransition", "$get$_ZoomEnterTransition__fadeInTransition", () => A.Tween$(0, 1, type$.double).chain$1(A.CurveTween$(B.Interval_75R))); _lazyFinal($, "_ZoomEnterTransition__scaleDownTransition", "$get$_ZoomEnterTransition__scaleDownTransition", () => A.Tween$(1.1, 1, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence())); _lazyFinal($, "_ZoomEnterTransition__scaleUpTransition", "$get$_ZoomEnterTransition__scaleUpTransition", () => A.Tween$(0.85, 1, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence())); _lazyFinal($, "_ZoomEnterTransition__scrimOpacityTween", "$get$_ZoomEnterTransition__scrimOpacityTween", () => A.Tween$(0, 0.6, type$.nullable_double).chain$1(A.CurveTween$(B.Interval_EeP))); _lazyFinal($, "_ZoomExitTransition__fadeOutTransition", "$get$_ZoomExitTransition__fadeOutTransition", () => A.Tween$(1, 0, type$.double).chain$1(A.CurveTween$(B.Interval_ulv))); _lazyFinal($, "_ZoomExitTransition__scaleUpTransition", "$get$_ZoomExitTransition__scaleUpTransition", () => A.Tween$(1, 1.05, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence())); _lazyFinal($, "_ZoomExitTransition__scaleDownTransition", "$get$_ZoomExitTransition__scaleDownTransition", () => A.Tween$(1, 0.9, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence())); _lazyFinal($, "_CircularProgressIndicatorState__strokeHeadTween", "$get$_CircularProgressIndicatorState__strokeHeadTween", () => A.CurveTween$(B.Interval_oqF1).chain$1(A.CurveTween$(B.SawTooth_2222))); _lazyFinal($, "_CircularProgressIndicatorState__strokeTailTween", "$get$_CircularProgressIndicatorState__strokeTailTween", () => A.CurveTween$(B.Interval_oqF0).chain$1(A.CurveTween$(B.SawTooth_2222))); _lazyFinal($, "_CircularProgressIndicatorState__offsetTween", "$get$_CircularProgressIndicatorState__offsetTween", () => A.CurveTween$(B.SawTooth_2222)); _lazyFinal($, "_CircularProgressIndicatorState__rotationTween", "$get$_CircularProgressIndicatorState__rotationTween", () => A.CurveTween$(B.SawTooth_1333)); _lazyFinal($, "RefreshIndicatorState__threeQuarterTween", "$get$RefreshIndicatorState__threeQuarterTween", () => A.Tween$(0, 0.75, type$.double)); _lazyFinal($, "RefreshIndicatorState__kDragSizeFactorLimitTween", "$get$RefreshIndicatorState__kDragSizeFactorLimitTween", () => A.Tween$(0, 1.5, type$.double)); _lazyFinal($, "RefreshIndicatorState__oneToZeroTween", "$get$RefreshIndicatorState__oneToZeroTween", () => A.Tween$(1, 0, type$.double)); _lazyFinal($, "_FloatingActionButtonTransitionState__entranceTurnTween", "$get$_FloatingActionButtonTransitionState__entranceTurnTween", () => A.Tween$(0.875, 1, type$.double).chain$1(A.CurveTween$(B.Cubic_JUR0))); _lazyFinal($, "materialTextSelectionControls", "$get$materialTextSelectionControls", () => new A.MaterialTextSelectionControls()); _lazyFinal($, "Theme__kFallbackTheme", "$get$Theme__kFallbackTheme", () => A.ThemeData_ThemeData$fallback()); _lazyFinal($, "ThemeData__localizedThemeDataCache", "$get$ThemeData__localizedThemeDataCache", () => new A._FifoCache(A.LinkedHashMap_LinkedHashMap$_empty(A.findType("_IdentityThemeDataCacheKey"), type$.ThemeData), 5, A.findType("_FifoCache<_IdentityThemeDataCacheKey,ThemeData>"))); _lazyFinal($, "AssetImage__extractRatioRegExp", "$get$AssetImage__extractRatioRegExp", () => A.RegExp_RegExp("/?(\\d+(\\.\\d*)?)x$", true, false, false, false)); _lazyFinal($, "MatrixUtils__minMax", "$get$MatrixUtils__minMax", () => A.NativeFloat64List_NativeFloat64List(4)); _lazy($, "RenderErrorBox_backgroundColor", "$get$RenderErrorBox_backgroundColor", () => B.Color_4039164096); _lazy($, "RenderErrorBox_textStyle", "$get$RenderErrorBox_textStyle", () => { var _null = null; return A.TextStyle_TextStyle(_null, B.Color_4281348144, _null, _null, _null, _null, "sans-serif", _null, _null, 18, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }); _lazy($, "RenderErrorBox_paragraphStyle", "$get$RenderErrorBox_paragraphStyle", () => { var _null = null; return A.ParagraphStyle_ParagraphStyle(_null, _null, _null, _null, _null, _null, _null, _null, _null, B.TextAlign_0, B.TextDirection_1, _null); }); _lazyFinal($, "_SemanticsGeometry__temporaryTransformHolder", "$get$_SemanticsGeometry__temporaryTransformHolder", () => A.Matrix4$zero()); _lazyFinal($, "SemanticsNode__kEmptyConfig", "$get$SemanticsNode__kEmptyConfig", () => A.SemanticsConfiguration$()); _lazyFinal($, "SemanticsNode__kEmptyChildList", "$get$SemanticsNode__kEmptyChildList", () => A.NativeInt32List_NativeInt32List(0)); _lazyFinal($, "SemanticsNode__kEmptyCustomSemanticsActionsList", "$get$SemanticsNode__kEmptyCustomSemanticsActionsList", () => A.NativeInt32List_NativeInt32List(0)); _lazyFinal($, "SemanticsNode__kIdentityTransform", "$get$SemanticsNode__kIdentityTransform", () => A.Matrix4_Matrix4$identity()._m4storage); _lazyFinal($, "rootBundle", "$get$rootBundle", () => { var t1 = type$.String; return new A.PlatformAssetBundle(A.LinkedHashMap_LinkedHashMap$_empty(t1, A.findType("Future")), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_dynamic)); }); _lazyFinal($, "KeyboardLockMode__knownLockModes", "$get$KeyboardLockMode__knownLockModes", () => A.LinkedHashMap_LinkedHashMap$_literal([4294967562, B.KeyboardLockMode_LogicalKeyboardKey_4294967562, 4294967564, B.KeyboardLockMode_LogicalKeyboardKey_4294967564, 4294967556, B.KeyboardLockMode_LogicalKeyboardKey_4294967556], type$.int, type$.KeyboardLockMode)); _lazyFinal($, "LogicalKeyboardKey__synonyms", "$get$LogicalKeyboardKey__synonyms", () => { var t1 = type$.LogicalKeyboardKey; return A.LinkedHashMap_LinkedHashMap$_literal([B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589935090, B.LogicalKeyboardKey_8589934851, B.LogicalKeyboardKey_8589935090, B.LogicalKeyboardKey_8589934854, B.LogicalKeyboardKey_8589935094, B.LogicalKeyboardKey_8589934855, B.LogicalKeyboardKey_8589935094, B.LogicalKeyboardKey_8589934852, B.LogicalKeyboardKey_8589935092, B.LogicalKeyboardKey_8589934853, B.LogicalKeyboardKey_8589935092, B.LogicalKeyboardKey_8589934848, B.LogicalKeyboardKey_8589935088, B.LogicalKeyboardKey_8589934849, B.LogicalKeyboardKey_8589935088], t1, t1); }); _lazyFinal($, "platformViewsRegistry", "$get$platformViewsRegistry", () => new A.PlatformViewsRegistry()); _lazyFinal($, "RawKeyboard_instance", "$get$RawKeyboard_instance", () => { var t1 = type$.PhysicalKeyboardKey; return new A.RawKeyboard(A._setArrayType([], A.findType("JSArray<~(RawKeyEvent)>")), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.LogicalKeyboardKey), A.LinkedHashSet_LinkedHashSet$_empty(t1)); }); _lazyFinal($, "RawKeyboard__modifierKeyMap", "$get$RawKeyboard__modifierKeyMap", () => { var t1 = type$.PhysicalKeyboardKey; return A.LinkedHashMap_LinkedHashMap$_literal([B._ModifierSidePair_ModifierKey_2_KeyboardSide_1, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458978], t1), B._ModifierSidePair_ModifierKey_2_KeyboardSide_2, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458982], t1), B._ModifierSidePair_ModifierKey_2_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458978, B.PhysicalKeyboardKey_458982], t1), B._ModifierSidePair_ModifierKey_2_KeyboardSide_0, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458978], t1), B._ModifierSidePair_ModifierKey_1_KeyboardSide_1, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458977], t1), B._ModifierSidePair_ModifierKey_1_KeyboardSide_2, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458981], t1), B._ModifierSidePair_ModifierKey_1_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458977, B.PhysicalKeyboardKey_458981], t1), B._ModifierSidePair_ModifierKey_1_KeyboardSide_0, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458977], t1), B._ModifierSidePair_ModifierKey_0_KeyboardSide_1, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458976], t1), B._ModifierSidePair_ModifierKey_0_KeyboardSide_2, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458980], t1), B._ModifierSidePair_ModifierKey_0_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458976, B.PhysicalKeyboardKey_458980], t1), B._ModifierSidePair_ModifierKey_0_KeyboardSide_0, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458976], t1), B._ModifierSidePair_ModifierKey_3_KeyboardSide_1, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458979], t1), B._ModifierSidePair_ModifierKey_3_KeyboardSide_2, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458983], t1), B._ModifierSidePair_ModifierKey_3_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458979, B.PhysicalKeyboardKey_458983], t1), B._ModifierSidePair_ModifierKey_3_KeyboardSide_0, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458979], t1), B._ModifierSidePair_ModifierKey_4_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458809], t1), B._ModifierSidePair_ModifierKey_5_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458835], t1), B._ModifierSidePair_ModifierKey_6_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_458823], t1), B._ModifierSidePair_ModifierKey_7_KeyboardSide_3, A.LinkedHashSet_LinkedHashSet$_literal([B.PhysicalKeyboardKey_18], t1)], A.findType("_ModifierSidePair"), A.findType("Set")); }); _lazyFinal($, "RawKeyboard__allModifiersExceptFn", "$get$RawKeyboard__allModifiersExceptFn", () => A.LinkedHashMap_LinkedHashMap$_literal([B.PhysicalKeyboardKey_458978, B.LogicalKeyboardKey_8589934852, B.PhysicalKeyboardKey_458982, B.LogicalKeyboardKey_8589934853, B.PhysicalKeyboardKey_458977, B.LogicalKeyboardKey_8589934850, B.PhysicalKeyboardKey_458981, B.LogicalKeyboardKey_8589934851, B.PhysicalKeyboardKey_458976, B.LogicalKeyboardKey_8589934848, B.PhysicalKeyboardKey_458980, B.LogicalKeyboardKey_8589934849, B.PhysicalKeyboardKey_458979, B.LogicalKeyboardKey_8589934854, B.PhysicalKeyboardKey_458983, B.LogicalKeyboardKey_8589934855, B.PhysicalKeyboardKey_458809, B.LogicalKeyboardKey_4294967556, B.PhysicalKeyboardKey_458835, B.LogicalKeyboardKey_4294967562, B.PhysicalKeyboardKey_458823, B.LogicalKeyboardKey_4294967564], type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey)); _lazyFinal($, "RawKeyboard__allModifiers", "$get$RawKeyboard__allModifiers", () => { var t2, t3, t1 = A.LinkedHashMap_LinkedHashMap$_empty(type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey); t1.$indexSet(0, B.PhysicalKeyboardKey_18, B.LogicalKeyboardKey_4294967558); for (t2 = $.$get$RawKeyboard__allModifiersExceptFn(), t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); t1.$indexSet(0, t3.get$key(t3), t3.get$value(t3)); } return t1; }); _lazyFinal($, "FilteringTextInputFormatter_singleLineFormatter", "$get$FilteringTextInputFormatter_singleLineFormatter", () => new A.FilteringTextInputFormatter("\n", false, "")); _lazyFinal($, "TextInput__instance", "$get$TextInput__instance", () => { var t1 = new A.TextInput(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("ScribbleClient"))); t1.__TextInput__channel = B.OptionalMethodChannel_L9J; t1.get$_text_input$_channel().setMethodCallHandler$1(t1.get$_handleTextInputInvocation()); return t1; }); _lazy($, "WidgetsApp_defaultActions", "$get$WidgetsApp_defaultActions", () => { var t1 = A.findType("~(Action)"); return A.LinkedHashMap_LinkedHashMap$_literal([B.Type_DoNothingIntent_IQR, A.DoNothingAction$(true), B.Type_s8I, A.DoNothingAction$(false), B.Type_RequestFocusIntent_OPB, new A.RequestFocusAction(A.ObserverList$(t1)), B.Type_NextFocusIntent_6xB, new A.NextFocusAction(A.ObserverList$(t1)), B.Type_PreviousFocusIntent_wsa, new A.PreviousFocusAction(A.ObserverList$(t1)), B.Type_DirectionalFocusIntent_evN, new A.DirectionalFocusAction(false, A.ObserverList$(t1)), B.Type_ScrollIntent_mpH, new A.ScrollAction(A.ObserverList$(t1)), B.Type_PrioritizedIntents_fLu, new A.PrioritizedAction(A.ObserverList$(t1))], type$.Type, type$.Action_Intent); }); _lazyFinal($, "DefaultTextEditingShortcuts__webShortcuts", "$get$DefaultTextEditingShortcuts__webShortcuts", () => { var t3, _i, pressShift, t4, t5, t1 = type$.Intent, t2 = A.LinkedHashMap_LinkedHashMap$_empty(A.findType("ShortcutActivator"), t1); for (t3 = A.findType("SingleActivator"), _i = 0; _i < 2; ++_i) { pressShift = B.List_true_false[_i]; for (t4 = A.LinkedHashMap_LinkedHashMap$_literal([A.SingleActivator$(B.LogicalKeyboardKey_4294967304, false, false, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967423, false, false, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967304, true, false, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967423, true, false, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967304, false, true, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967423, false, true, false, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967304, false, false, true, pressShift), B.C_DoNothingAndStopPropagationTextIntent, A.SingleActivator$(B.LogicalKeyboardKey_4294967423, false, false, true, pressShift), B.C_DoNothingAndStopPropagationTextIntent], t3, t1), t4 = t4.get$entries(t4), t4 = t4.get$iterator(t4); t4.moveNext$0();) { t5 = t4.get$current(t4); t2.$indexSet(0, t5.get$key(t5), t5.get$value(t5)); } } t2.$indexSet(0, B.SingleActivator_j8H, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H0, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H1, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H2, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H3, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H4, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H5, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H6, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H7, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H8, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H9, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H10, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H11, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H12, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H13, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H14, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H15, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H16, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H17, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H18, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H19, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H20, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H21, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H22, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H23, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H24, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H25, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H26, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H27, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H28, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H29, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H30, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H31, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_j8H32, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_gc6, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH0, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH1, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH2, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH3, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH4, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH5, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH6, B.C_DoNothingAndStopPropagationTextIntent); t2.$indexSet(0, B.SingleActivator_mmH7, B.C_DoNothingAndStopPropagationTextIntent); return t2; }); _lazy($, "_NullElement_instance", "$get$_NullElement_instance", () => new A._NullElement(B._NullWidget_null, B._ElementLifecycle_0)); _lazyFinal($, "_HeroFlight__reverseTween", "$get$_HeroFlight__reverseTween", () => A.Tween$(1, 0, type$.double)); _lazy($, "_RouteEntry_notAnnounced", "$get$_RouteEntry_notAnnounced", () => { var t1 = A.ValueNotifier$(null, type$.nullable_String), t2 = A.Completer_Completer(type$.void); return new A._NotAnnounced(B.RouteSettings_null_null, t1, t2); }); _lazyFinal($, "_GlowController__crossAxisHalfTime", "$get$_GlowController__crossAxisHalfTime", () => A.Duration$(0, 0, 16667, 0, 0, 0)); _lazyFinal($, "_defaultPageController", "$get$_defaultPageController", () => A.PageController$(0, 1)); _lazyFinal($, "ScrollPhysics__kDefaultSpring", "$get$ScrollPhysics__kDefaultSpring", () => A.SpringDescription$withDampingRatio(0.5, 1.1, 100)); _lazyFinal($, "ScrollPhysics__kDefaultTolerance", "$get$ScrollPhysics__kDefaultTolerance", () => { var t1, t2; A.WidgetsBinding_instance().toString; t1 = $.$get$window(); t2 = t1.get$devicePixelRatio(t1); A.WidgetsBinding_instance().toString; return new A.Tolerance(1 / t1.get$devicePixelRatio(t1), 1 / (0.05 * t2)); }); _lazyFinal($, "ClampingScrollSimulation__kDecelerationRate", "$get$ClampingScrollSimulation__kDecelerationRate", () => A.log(0.78) / A.log(0.9)); _lazyFinal($, "LogicalKeySet__unmapSynonyms", "$get$LogicalKeySet__unmapSynonyms", () => { var t1 = type$.JSArray_LogicalKeyboardKey; return A.LinkedHashMap_LinkedHashMap$_literal([B.LogicalKeyboardKey_8589935088, A._setArrayType([B.LogicalKeyboardKey_8589934848, B.LogicalKeyboardKey_8589934849], t1), B.LogicalKeyboardKey_8589935090, A._setArrayType([B.LogicalKeyboardKey_8589934850, B.LogicalKeyboardKey_8589934851], t1), B.LogicalKeyboardKey_8589935092, A._setArrayType([B.LogicalKeyboardKey_8589934852, B.LogicalKeyboardKey_8589934853], t1), B.LogicalKeyboardKey_8589935094, A._setArrayType([B.LogicalKeyboardKey_8589934854, B.LogicalKeyboardKey_8589934855], t1)], type$.LogicalKeyboardKey, A.findType("List")); }); _lazyFinal($, "DefaultCacheManager__instance", "$get$DefaultCacheManager__instance", () => { var t1 = new A._MemoryFileSystem(A.Context_Context(B.C__Posix.get$root(B.C__Posix), $.$get$Style_posix()), A.memory_file_system___defaultOpHandle$closure(), B.C__RealtimeClock, B.C__Posix), t2 = type$.String, t3 = new A.RootNode(t1, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Node_4), null); t3.Node$10(null); t3.RealNode$1(null); t1._memory_file_system$_root = t3; t3 = t1._systemTemp; t1 = t1.directory$1(0, t3 == null ? t1._systemTemp = t1.directory$1(0, B.C__Posix.get$root(B.C__Posix)).createTempSync$1(".tmp_").path : t3); t1.createSync$0(); t1 = new A.MemoryCacheSystem(t1.createTemp$1("cache")); t3 = A.HttpFileService$(); t1 = new A.Config(new A.NonStoringObjectProvider(), t1, B.Duration_2592000000000, 200, t3); t2 = new A.DefaultCacheManager(A.LinkedHashMap_LinkedHashMap$_empty(t2, A.findType("Stream")), t1, A.CacheStore$(t1)); t2.CacheManager$1(t1); return t2; }); _lazy($, "cacheLogger", "$get$cacheLogger", () => new A.CacheLogger()); _lazyFinal($, "kCupertinoSupportedLanguages", "$get$kCupertinoSupportedLanguages", () => A.HashSet_HashSet$from(B.List_QXN, type$.String)); _lazyFinal($, "kMaterialSupportedLanguages", "$get$kMaterialSupportedLanguages", () => A.HashSet_HashSet$from(B.List_gT4, type$.String)); _lazyFinal($, "webPluginRegistrar", "$get$webPluginRegistrar", () => new A.PluginRegistry(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, A.findType("Future?(ByteData?)")))); _lazy($, "GoogleSignInPlatform__instance", "$get$GoogleSignInPlatform__instance", () => new A.MethodChannelGoogleSignIn()); _lazy($, "entitiesByFirstChar", "$get$entitiesByFirstChar", () => new A.entitiesByFirstChar_closure().call$0()); _lazyFinal($, "_leadingNewLinesRegExp", "$get$_leadingNewLinesRegExp", () => A.RegExp_RegExp("^\\n*", true, false, false, false)); _lazyFinal($, "_trailingNewLinesRegExp", "$get$_trailingNewLinesRegExp", () => A.RegExp_RegExp("\\n*$", true, false, false, false)); _lazyFinal($, "_styleMap", "$get$_styleMap", () => { var t1 = type$.JSArray_String; return A.LinkedHashMap_LinkedHashMap$_literal(["headingStyle", A._StyleOption$(A._setArrayType(["setext", "atx"], t1)), "hr", A._StyleOption$(A._setArrayType(["* * *", "- - -", "_ _ _"], t1)), "bulletListMarker", A._StyleOption$(A._setArrayType(["*", "-", "_"], t1)), "codeBlockStyle", A._StyleOption$(A._setArrayType(["indented", "fenced"], t1)), "fence", A._StyleOption$(A._setArrayType(["```", "~~~"], t1)), "emDelimiter", A._StyleOption$(A._setArrayType(["_", "*"], t1)), "strongDelimiter", A._StyleOption$(A._setArrayType(["**", "__"], t1)), "linkStyle", A._StyleOption$(A._setArrayType(["inlined", "referenced"], t1)), "linkReferenceStyle", A._StyleOption$(A._setArrayType(["full", "collapsed", "shortcut"], t1)), "br", A._StyleOption$(A._setArrayType([" "], t1))], type$.String, A.findType("_StyleOption")); }); _lazyFinal($, "_commonMarkRules", "$get$_commonMarkRules", () => A._setArrayType([$.$get$_CommonRules_paragraph(), $.$get$_CommonRules_lineBreak(), $.$get$_CommonRules_heading(), $.$get$_CommonRules_blockquote(), $.$get$_CommonRules_list(), $.$get$_CommonRules_listItem(), $.$get$_CommonRules_indentedCodeBlock(), $.$get$_CommonRules_fencedCodeBlock(), $.$get$_CommonRules_horizontalRule(), $.$get$_CommonRules_inlineLink(), $.$get$_CommonRules_referenceLink(), $.$get$_CommonRules_emphasis(), $.$get$_CommonRules_strong(), $.$get$_CommonRules_strike(), $.$get$_CommonRules_code(), $.$get$_CommonRules_image(), $.$get$_TableRules_table(), $.$get$_TableRules_tHeadBody(), $.$get$_TableRules_th(), $.$get$_TableRules_tr(), $.$get$_TableRules_td()], A.findType("JSArray"))); _lazyFinal($, "_BaseRules_blankRule", "$get$_BaseRules_blankRule", () => A.Rule$("blank", null, null, A._setArrayType(["blank"], type$.JSArray_String), new A._BaseRules_blankRule_closure())); _lazyFinal($, "_BaseRules_defaultRule", "$get$_BaseRules_defaultRule", () => A.Rule$("default", null, null, A._setArrayType(["default"], type$.JSArray_String), new A._BaseRules_defaultRule_closure())); _lazyFinal($, "_CommonRules_paragraph", "$get$_CommonRules_paragraph", () => A.Rule$("paragraph", null, null, A._setArrayType(["p"], type$.JSArray_String), new A._CommonRules_paragraph_closure())); _lazyFinal($, "_CommonRules_lineBreak", "$get$_CommonRules_lineBreak", () => A.Rule$("lineBreak", null, null, A._setArrayType(["br"], type$.JSArray_String), new A._CommonRules_lineBreak_closure())); _lazyFinal($, "_CommonRules_heading", "$get$_CommonRules_heading", () => A.Rule$("heading", null, null, A._setArrayType(["h1", "h2", "h3", "h4", "h5", "h6"], type$.JSArray_String), new A._CommonRules_heading_closure())); _lazyFinal($, "_CommonRules_blockquote", "$get$_CommonRules_blockquote", () => A.Rule$("blockquote", null, null, A._setArrayType(["blockquote"], type$.JSArray_String), new A._CommonRules_blockquote_closure())); _lazyFinal($, "_CommonRules_list", "$get$_CommonRules_list", () => A.Rule$("list", null, null, A._setArrayType(["ul", "ol"], type$.JSArray_String), new A._CommonRules_list_closure())); _lazyFinal($, "_CommonRules_listItem", "$get$_CommonRules_listItem", () => A.Rule$("listItem", null, null, A._setArrayType(["li"], type$.JSArray_String), new A._CommonRules_listItem_closure())); _lazyFinal($, "_CommonRules_indentedCodeBlock", "$get$_CommonRules_indentedCodeBlock", () => A.Rule$("indentedCodeBlock", null, new A._CommonRules_indentedCodeBlock_closure(), null, new A._CommonRules_indentedCodeBlock_closure0())); _lazyFinal($, "_CommonRules_fencedCodeBlock", "$get$_CommonRules_fencedCodeBlock", () => A.Rule$("fencedCodeBlock", null, new A._CommonRules_fencedCodeBlock_closure(), null, new A._CommonRules_fencedCodeBlock_closure0())); _lazyFinal($, "_CommonRules_horizontalRule", "$get$_CommonRules_horizontalRule", () => A.Rule$("horizontalRule", null, null, A._setArrayType(["hr"], type$.JSArray_String), new A._CommonRules_horizontalRule_closure())); _lazyFinal($, "_CommonRules_inlineLink", "$get$_CommonRules_inlineLink", () => A.Rule$("inlineLink", null, new A._CommonRules_inlineLink_closure(), null, new A._CommonRules_inlineLink_closure0())); _lazyFinal($, "_CommonRules_referenceLink", "$get$_CommonRules_referenceLink", () => A.Rule$("referenceLink", new A._CommonRules_referenceLink_closure(), new A._CommonRules_referenceLink_closure0(), null, new A._CommonRules_referenceLink_closure1())); _lazyFinal($, "_CommonRules_emphasis", "$get$_CommonRules_emphasis", () => A.Rule$("emphasis", null, null, A._setArrayType(["em", "i"], type$.JSArray_String), new A._CommonRules_emphasis_closure())); _lazyFinal($, "_CommonRules_strong", "$get$_CommonRules_strong", () => A.Rule$("strong", null, null, A._setArrayType(["strong", "b"], type$.JSArray_String), new A._CommonRules_strong_closure())); _lazyFinal($, "_CommonRules_strike", "$get$_CommonRules_strike", () => A.Rule$("strike", null, null, A._setArrayType(["strike", "s", "del"], type$.JSArray_String), new A._CommonRules_strike_closure())); _lazyFinal($, "_CommonRules_code", "$get$_CommonRules_code", () => A.Rule$("code", null, new A._CommonRules_code_closure(), null, new A._CommonRules_code_closure0())); _lazyFinal($, "_CommonRules_image", "$get$_CommonRules_image", () => A.Rule$("image", null, null, A._setArrayType(["img"], type$.JSArray_String), new A._CommonRules_image_closure())); _lazyFinal($, "_TableRules_table", "$get$_TableRules_table", () => A.Rule$("table", null, null, A._setArrayType(["table"], type$.JSArray_String), new A._TableRules_table_closure())); _lazyFinal($, "_TableRules_tr", "$get$_TableRules_tr", () => A.Rule$("tr", null, null, A._setArrayType(["tr"], type$.JSArray_String), new A._TableRules_tr_closure())); _lazyFinal($, "_TableRules_tHeadBody", "$get$_TableRules_tHeadBody", () => A.Rule$("tHeadBody", null, null, A._setArrayType(["thead", "tbody"], type$.JSArray_String), new A._TableRules_tHeadBody_closure())); _lazyFinal($, "_TableRules_th", "$get$_TableRules_th", () => A.Rule$("th", null, null, A._setArrayType(["th"], type$.JSArray_String), new A._TableRules_th_closure())); _lazyFinal($, "_TableRules_td", "$get$_TableRules_td", () => A.Rule$("td", null, null, A._setArrayType(["td"], type$.JSArray_String), new A._TableRules_td_closure())); _lazyFinal($, "BaseRequest__tokenRE", "$get$BaseRequest__tokenRE", () => A.RegExp_RegExp("^[\\w!#%&'*+\\-.^`|~]+$", true, false, false, false)); _lazyFinal($, "_newlineRegExp", "$get$_newlineRegExp", () => A.RegExp_RegExp("\\r\\n|\\r|\\n", true, false, false, false)); _lazyFinal($, "MultipartRequest__random", "$get$MultipartRequest__random", () => A.Random_Random(null)); _lazyFinal($, "_asciiOnly", "$get$_asciiOnly", () => A.RegExp_RegExp("^[\\x00-\\x7F]+$", true, false, false, false)); _lazyFinal($, "_escapedChar", "$get$_escapedChar", () => A.RegExp_RegExp('["\\x00-\\x1F\\x7F]', true, false, false, false)); _lazyFinal($, "token", "$get$token", () => A.RegExp_RegExp('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+', true, false, false, false)); _lazyFinal($, "_lws", "$get$_lws", () => A.RegExp_RegExp("(?:\\r\\n)?[ \\t]+", true, false, false, false)); _lazyFinal($, "_quotedString", "$get$_quotedString", () => A.RegExp_RegExp('"(?:[^"\\x00-\\x1F\\x7F]|\\\\.)*"', true, false, false, false)); _lazyFinal($, "_quotedPair", "$get$_quotedPair", () => A.RegExp_RegExp("\\\\(.)", true, false, false, false)); _lazyFinal($, "nonToken", "$get$nonToken", () => A.RegExp_RegExp('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]', true, false, false, false)); _lazyFinal($, "whitespace", "$get$whitespace", () => A.RegExp_RegExp("(?:" + $.$get$_lws().pattern + ")*", true, false, false, false)); _lazyFinal($, "ImageCropperPlatform__token", "$get$ImageCropperPlatform__token", () => new A.Object()); _lazy($, "ImageCropperPlatform__instance", "$get$ImageCropperPlatform__instance", () => new A.MethodChannelImageCropper($.$get$ImageCropperPlatform__token())); _lazyFinal($, "ImagePickerPlatform__token", "$get$ImagePickerPlatform__token", () => new A.Object()); _lazy($, "ImagePickerPlatform__instance", "$get$ImagePickerPlatform__instance", () => new A.MethodChannelImagePicker($.$get$ImagePickerPlatform__token())); _lazy($, "en_USSymbols", "$get$en_USSymbols", () => A.DateSymbols$(B.List_AM_PM, null, B.List_cno, B.List_iDZ, B.List_6xs, B.List_BC_AD, 6, 5, B.List_cIc, "en_US", B.List_qpm, B.List_3US, B.List_bJM, B.List_h8w, B.List_Q1_Q2_Q3_Q4, B.List_gc6, B.List_cIc, B.List_qpm, B.List_3US, B.List_h8w, B.List_gc6, B.List_wMy, B.List_kWG, B.List_wMy, B.List_5_6, null)); _lazy($, "numberFormatSymbols", "$get$numberFormatSymbols", () => { var _s1_ = ",", _s1_0 = "\xa0", _s1_1 = "%", _s1_2 = "0", _s1_3 = "+", _s1_4 = "-", _s1_5 = "E", _s1_6 = "\u2030", _s1_7 = "\u221e", _s3_ = "NaN", _s9_ = "#,##0.###", _s3_0 = "#E0", _s6_ = "#,##0%", _s9_0 = "\xa4#,##0.00", _s1_8 = ".", _s2_ = "\u200e+", _s2_0 = "\u200e-", _s9_1 = "\u0644\u064a\u0633\xa0\u0631\u0642\u0645\u064b\u0627", _s10_ = "\xa4\xa0#,##0.00", _s10_0 = "#,##0.00\xa0\xa4", _s7_ = "#,##0\xa0%", _s12_ = "#,##,##0.###", _s3_1 = "EUR", _s3_2 = "USD", _s21_ = "\xa4\xa0#,##0.00;\xa4-#,##0.00", _s3_3 = "CHF", _s9_2 = "#,##,##0%", _s13_ = "\xa4\xa0#,##,##0.00", _s3_4 = "INR", _s1_9 = "\u2212", _s4_ = "\xd710^", _s5_ = "[#E0]", _s12_0 = "\xa4#,##,##0.00", _s24_ = "\u200f#,##0.00\xa0\xa4;\u200f-#,##0.00\xa0\xa4"; return A.LinkedHashMap_LinkedHashMap$_literal(["af", A.NumberSymbols$(_s9_0, _s9_, _s1_, "ZAR", _s1_5, _s1_0, _s1_7, _s1_4, "af", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "am", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "ETB", _s1_5, _s1_, _s1_7, _s1_4, "am", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ar", A.NumberSymbols$(_s10_, _s9_, _s1_8, "EGP", _s1_5, _s1_, _s1_7, _s2_0, "ar", _s9_1, "\u200e%\u200e", _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ar_DZ", A.NumberSymbols$(_s10_, _s9_, _s1_, "DZD", _s1_5, _s1_8, _s1_7, _s2_0, "ar_DZ", _s9_1, "\u200e%\u200e", _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ar_EG", A.NumberSymbols$(_s10_0, _s9_, "\u066b", "EGP", "\u0627\u0633", "\u066c", _s1_7, "\u061c-", "ar_EG", "\u0644\u064a\u0633\xa0\u0631\u0642\u0645", "\u066a\u061c", _s6_, "\u0609", "\u061c+", _s3_0, "\u0660"), "az", A.NumberSymbols$(_s10_0, _s9_, _s1_, "AZN", _s1_5, _s1_8, _s1_7, _s1_4, "az", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "be", A.NumberSymbols$(_s10_0, _s9_, _s1_, "BYN", _s1_5, _s1_0, _s1_7, _s1_4, "be", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "bg", A.NumberSymbols$("0.00\xa0\xa4", _s9_, _s1_, "BGN", _s1_5, _s1_0, _s1_7, _s1_4, "bg", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "bn", A.NumberSymbols$("#,##,##0.00\xa4", _s12_, _s1_8, "BDT", _s1_5, _s1_, _s1_7, _s1_4, "bn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u09e6"), "br", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "br", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "bs", A.NumberSymbols$(_s10_0, _s9_, _s1_, "BAM", _s1_5, _s1_8, _s1_7, _s1_4, "bs", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ca", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "ca", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "chr", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "chr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "cs", A.NumberSymbols$(_s10_0, _s9_, _s1_, "CZK", _s1_5, _s1_0, _s1_7, _s1_4, "cs", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "cy", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "GBP", _s1_5, _s1_, _s1_7, _s1_4, "cy", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "da", A.NumberSymbols$(_s10_0, _s9_, _s1_, "DKK", _s1_5, _s1_8, _s1_7, _s1_4, "da", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "de", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de_AT", A.NumberSymbols$(_s10_, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "de_AT", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de_CH", A.NumberSymbols$(_s21_, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_4, "de_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "el", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_8, _s1_7, _s1_4, "el", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "en", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_AU", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "AUD", "e", _s1_, _s1_7, _s1_4, "en_AU", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_CA", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "CAD", "e", _s1_, _s1_7, _s1_4, "en_CA", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_GB", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "GBP", _s1_5, _s1_, _s1_7, _s1_4, "en_GB", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_IE", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "en_IE", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_IN", A.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "en_IN", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s3_0, _s1_2), "en_MY", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "MYR", _s1_5, _s1_, _s1_7, _s1_4, "en_MY", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_SG", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "SGD", _s1_5, _s1_, _s1_7, _s1_4, "en_SG", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_US", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "en_US", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_ZA", A.NumberSymbols$(_s9_0, _s9_, _s1_, "ZAR", _s1_5, _s1_0, _s1_7, _s1_4, "en_ZA", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "es", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "es", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_419", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "MXN", _s1_5, _s1_, _s1_7, _s1_4, "es_419", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_ES", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "es_ES", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_MX", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "MXN", _s1_5, _s1_, _s1_7, _s1_4, "es_MX", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_US", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "es_US", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "et", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s4_, _s1_0, _s1_7, _s1_9, "et", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "eu", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_9, "eu", _s3_, _s1_1, "%\xa0#,##0", _s1_6, _s1_3, _s3_0, _s1_2), "fa", A.NumberSymbols$("\u200e\xa4#,##0.00", _s9_, "\u066b", "IRR", "\xd7\u06f1\u06f0^", "\u066c", _s1_7, "\u200e\u2212", "fa", "\u0646\u0627\u0639\u062f\u062f", "\u066a", _s6_, "\u0609", _s2_, _s3_0, "\u06f0"), "fi", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_9, "fi", "ep\xe4luku", _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fil", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "PHP", _s1_5, _s1_, _s1_7, _s1_4, "fil", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "fr", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, "\u202f", _s1_7, _s1_4, "fr", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fr_CA", A.NumberSymbols$(_s10_0, _s9_, _s1_, "CAD", _s1_5, _s1_0, _s1_7, _s1_4, "fr_CA", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fr_CH", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_3, _s1_5, "\u202f", _s1_7, _s1_4, "fr_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ga", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "ga", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "gl", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "gl", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "gsw", A.NumberSymbols$(_s10_0, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_9, "gsw", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "gu", A.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "gu", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "haw", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "haw", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "he", A.NumberSymbols$(_s24_, _s9_, _s1_8, "ILS", _s1_5, _s1_, _s1_7, _s2_0, "he", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "hi", A.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "hi", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "hr", A.NumberSymbols$(_s10_0, _s9_, _s1_, "HRK", _s1_5, _s1_8, _s1_7, _s1_4, "hr", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "hu", A.NumberSymbols$(_s10_0, _s9_, _s1_, "HUF", _s1_5, _s1_0, _s1_7, _s1_4, "hu", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "hy", A.NumberSymbols$(_s10_0, _s9_, _s1_, "AMD", _s1_5, _s1_0, _s1_7, _s1_4, "hy", "\u0548\u0579\u0539", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "id", A.NumberSymbols$(_s9_0, _s9_, _s1_, "IDR", _s1_5, _s1_8, _s1_7, _s1_4, "id", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "in", A.NumberSymbols$(_s9_0, _s9_, _s1_, "IDR", _s1_5, _s1_8, _s1_7, _s1_4, "in", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "is", A.NumberSymbols$(_s10_0, _s9_, _s1_, "ISK", _s1_5, _s1_8, _s1_7, _s1_4, "is", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "it", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "it", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "it_CH", A.NumberSymbols$(_s21_, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_4, "it_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "iw", A.NumberSymbols$(_s24_, _s9_, _s1_8, "ILS", _s1_5, _s1_, _s1_7, _s2_0, "iw", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ja", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "JPY", _s1_5, _s1_, _s1_7, _s1_4, "ja", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ka", A.NumberSymbols$(_s10_0, _s9_, _s1_, "GEL", _s1_5, _s1_0, _s1_7, _s1_4, "ka", "\u10d0\u10e0\xa0\u10d0\u10e0\u10d8\u10e1\xa0\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "kk", A.NumberSymbols$(_s10_0, _s9_, _s1_, "KZT", _s1_5, _s1_0, _s1_7, _s1_4, "kk", "\u0441\u0430\u043d\xa0\u0435\u043c\u0435\u0441", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "km", A.NumberSymbols$("#,##0.00\xa4", _s9_, _s1_, "KHR", _s1_5, _s1_8, _s1_7, _s1_4, "km", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "kn", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "kn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ko", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "KRW", _s1_5, _s1_, _s1_7, _s1_4, "ko", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ky", A.NumberSymbols$(_s10_0, _s9_, _s1_, "KGS", _s1_5, _s1_0, _s1_7, _s1_4, "ky", "\u0441\u0430\u043d\xa0\u044d\u043c\u0435\u0441", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ln", A.NumberSymbols$(_s10_0, _s9_, _s1_, "CDF", _s1_5, _s1_8, _s1_7, _s1_4, "ln", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "lo", A.NumberSymbols$("\xa4#,##0.00;\xa4-#,##0.00", _s9_, _s1_, "LAK", _s1_5, _s1_8, _s1_7, _s1_4, "lo", "\u0e9a\u0ecd\u0ec8\u200b\u0ec1\u0ea1\u0ec8\u0e99\u200b\u0ec2\u0e95\u200b\u0ec0\u0ea5\u0e81", _s1_1, _s6_, _s1_6, _s1_3, "#", _s1_2), "lt", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s4_, _s1_0, _s1_7, _s1_9, "lt", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "lv", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "lv", "NS", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mk", A.NumberSymbols$(_s10_0, _s9_, _s1_, "MKD", _s1_5, _s1_8, _s1_7, _s1_4, "mk", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ml", A.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "ml", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mn", A.NumberSymbols$(_s10_, _s9_, _s1_8, "MNT", _s1_5, _s1_, _s1_7, _s1_4, "mn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mr", A.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "mr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s5_, "\u0966"), "ms", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "MYR", _s1_5, _s1_, _s1_7, _s1_4, "ms", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mt", A.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "mt", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "my", A.NumberSymbols$(_s10_0, _s9_, _s1_8, "MMK", _s1_5, _s1_, _s1_7, _s1_4, "my", "\u1002\u100f\u1014\u103a\u1038\u1019\u101f\u102f\u1010\u103a\u101e\u1031\u102c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u1040"), "nb", A.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "nb", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ne", A.NumberSymbols$(_s10_, _s9_, _s1_8, "NPR", _s1_5, _s1_, _s1_7, _s1_4, "ne", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u0966"), "nl", A.NumberSymbols$("\xa4\xa0#,##0.00;\xa4\xa0-#,##0.00", _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "nl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "no", A.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "no", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "no_NO", A.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "no_NO", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "or", A.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "or", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pa", A.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "pa", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "pl", A.NumberSymbols$(_s10_0, _s9_, _s1_, "PLN", _s1_5, _s1_0, _s1_7, _s1_4, "pl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ps", A.NumberSymbols$(_s10_0, _s9_, "\u066b", "AFN", "\xd7\u06f1\u06f0^", "\u066c", _s1_7, "\u200e-\u200e", "ps", _s3_, "\u066a", _s6_, "\u0609", "\u200e+\u200e", _s3_0, "\u06f0"), "pt", A.NumberSymbols$(_s10_, _s9_, _s1_, "BRL", _s1_5, _s1_8, _s1_7, _s1_4, "pt", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pt_BR", A.NumberSymbols$(_s10_, _s9_, _s1_, "BRL", _s1_5, _s1_8, _s1_7, _s1_4, "pt_BR", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pt_PT", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "pt_PT", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ro", A.NumberSymbols$(_s10_0, _s9_, _s1_, "RON", _s1_5, _s1_8, _s1_7, _s1_4, "ro", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ru", A.NumberSymbols$(_s10_0, _s9_, _s1_, "RUB", _s1_5, _s1_0, _s1_7, _s1_4, "ru", "\u043d\u0435\xa0\u0447\u0438\u0441\u043b\u043e", _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "si", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "LKR", _s1_5, _s1_, _s1_7, _s1_4, "si", _s3_, _s1_1, _s6_, _s1_6, _s1_3, "#", _s1_2), "sk", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_0, _s1_7, _s1_4, "sk", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sl", A.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_8, _s1_7, _s1_9, "sl", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sq", A.NumberSymbols$(_s10_0, _s9_, _s1_, "ALL", _s1_5, _s1_0, _s1_7, _s1_4, "sq", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sr", A.NumberSymbols$(_s10_0, _s9_, _s1_, "RSD", _s1_5, _s1_8, _s1_7, _s1_4, "sr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sr_Latn", A.NumberSymbols$(_s10_0, _s9_, _s1_, "RSD", _s1_5, _s1_8, _s1_7, _s1_4, "sr_Latn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sv", A.NumberSymbols$(_s10_0, _s9_, _s1_, "SEK", _s4_, _s1_0, _s1_7, _s1_9, "sv", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sw", A.NumberSymbols$(_s10_, _s9_, _s1_8, "TZS", _s1_5, _s1_, _s1_7, _s1_4, "sw", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ta", A.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "ta", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s3_0, _s1_2), "te", A.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "te", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "th", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "THB", _s1_5, _s1_, _s1_7, _s1_4, "th", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "tl", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "PHP", _s1_5, _s1_, _s1_7, _s1_4, "tl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "tr", A.NumberSymbols$(_s9_0, _s9_, _s1_, "TRY", _s1_5, _s1_8, _s1_7, _s1_4, "tr", _s3_, _s1_1, "%#,##0", _s1_6, _s1_3, _s3_0, _s1_2), "uk", A.NumberSymbols$(_s10_0, _s9_, _s1_, "UAH", "\u0415", _s1_0, _s1_7, _s1_4, "uk", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ur", A.NumberSymbols$(_s10_, _s9_, _s1_8, "PKR", _s1_5, _s1_, _s1_7, _s2_0, "ur", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "uz", A.NumberSymbols$(_s10_0, _s9_, _s1_, "UZS", _s1_5, _s1_0, _s1_7, _s1_4, "uz", "son\xa0emas", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "vi", A.NumberSymbols$(_s10_0, _s9_, _s1_, "VND", _s1_5, _s1_8, _s1_7, _s1_4, "vi", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "CNY", _s1_5, _s1_, _s1_7, _s1_4, "zh", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_CN", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "CNY", _s1_5, _s1_, _s1_7, _s1_4, "zh_CN", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_HK", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "HKD", _s1_5, _s1_, _s1_7, _s1_4, "zh_HK", "\u975e\u6578\u503c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_TW", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "TWD", _s1_5, _s1_, _s1_7, _s1_4, "zh_TW", "\u975e\u6578\u503c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zu", A.NumberSymbols$(_s9_0, _s9_, _s1_8, "ZAR", _s1_5, _s1_, _s1_7, _s1_4, "zu", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2)], type$.String, A.findType("NumberSymbols")); }); _lazy($, "_dateTimeSymbols", "$get$_dateTimeSymbols", () => A.UninitializedLocaleData$("initializeDateFormatting()", $.$get$en_USSymbols(), type$.DateSymbols)); _lazy($, "dateTimePatterns", "$get$dateTimePatterns", () => A.UninitializedLocaleData$("initializeDateFormatting()", B.Map_EQGBe, type$.Map_String_String)); _lazyFinal($, "asciiZeroCodeUnit", "$get$asciiZeroCodeUnit", () => 48); _lazyFinal($, "DateFormat__matchers", "$get$DateFormat__matchers", () => A._setArrayType([A.RegExp_RegExp("^'(?:[^']|'')*'", true, false, false, false), A.RegExp_RegExp("^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)", true, false, false, false), A.RegExp_RegExp("^[^'GyMkSEahKHcLQdDmsvzZ]+", true, false, false, false)], A.findType("JSArray"))); _lazyFinal($, "_DateFormatQuotedField__twoEscapedQuotes", "$get$_DateFormatQuotedField__twoEscapedQuotes", () => A.RegExp_RegExp("''", true, false, false, false)); _lazyFinal($, "NumberFormat__maxInt", "$get$NumberFormat__maxInt", () => { var t1 = A.pow(2, 52); return t1; }); _lazyFinal($, "NumberFormat__maxDigits", "$get$NumberFormat__maxDigits", () => B.JSNumber_methods.ceil$0(A.log($.$get$NumberFormat__maxInt()) / A.log(10))); _lazyFinal($, "_ln10", "$get$_ln100", () => A.log(10)); _lazyFinal($, "_ln100", "$get$_ln10", () => A.log(10)); _lazyFinal($, "asciiDigitMatcher", "$get$asciiDigitMatcher", () => A.RegExp_RegExp("^\\d+", true, false, false, false)); _lazyFinal($, "pluralRules", "$get$pluralRules", () => A.LinkedHashMap_LinkedHashMap$_literal(["af", A.plural_rules___es_rule$closure(), "am", A.plural_rules___hi_rule$closure(), "ar", A.plural_rules___ar_rule$closure(), "az", A.plural_rules___es_rule$closure(), "be", A.plural_rules___be_rule$closure(), "bg", A.plural_rules___es_rule$closure(), "bn", A.plural_rules___hi_rule$closure(), "br", A.plural_rules___br_rule$closure(), "bs", A.plural_rules___sr_rule$closure(), "ca", A.plural_rules___en_rule$closure(), "chr", A.plural_rules___es_rule$closure(), "cs", A.plural_rules___cs_rule$closure(), "cy", A.plural_rules___cy_rule$closure(), "da", A.plural_rules___da_rule$closure(), "de", A.plural_rules___en_rule$closure(), "de_AT", A.plural_rules___en_rule$closure(), "de_CH", A.plural_rules___en_rule$closure(), "el", A.plural_rules___es_rule$closure(), "en", A.plural_rules___en_rule$closure(), "en_AU", A.plural_rules___en_rule$closure(), "en_CA", A.plural_rules___en_rule$closure(), "en_GB", A.plural_rules___en_rule$closure(), "en_IE", A.plural_rules___en_rule$closure(), "en_IN", A.plural_rules___en_rule$closure(), "en_SG", A.plural_rules___en_rule$closure(), "en_US", A.plural_rules___en_rule$closure(), "en_ZA", A.plural_rules___en_rule$closure(), "es", A.plural_rules___es_rule$closure(), "es_419", A.plural_rules___es_rule$closure(), "es_ES", A.plural_rules___es_rule$closure(), "es_MX", A.plural_rules___es_rule$closure(), "es_US", A.plural_rules___es_rule$closure(), "et", A.plural_rules___en_rule$closure(), "eu", A.plural_rules___es_rule$closure(), "fa", A.plural_rules___hi_rule$closure(), "fi", A.plural_rules___en_rule$closure(), "fil", A.plural_rules___fil_rule$closure(), "fr", A.plural_rules___fr_rule$closure(), "fr_CA", A.plural_rules___fr_rule$closure(), "ga", A.plural_rules___ga_rule$closure(), "gl", A.plural_rules___en_rule$closure(), "gsw", A.plural_rules___es_rule$closure(), "gu", A.plural_rules___hi_rule$closure(), "haw", A.plural_rules___es_rule$closure(), "he", A.plural_rules___he_rule$closure(), "hi", A.plural_rules___hi_rule$closure(), "hr", A.plural_rules___sr_rule$closure(), "hu", A.plural_rules___es_rule$closure(), "hy", A.plural_rules___fr_rule$closure(), "id", A.plural_rules___default_rule$closure(), "in", A.plural_rules___default_rule$closure(), "is", A.plural_rules___is_rule$closure(), "it", A.plural_rules___en_rule$closure(), "iw", A.plural_rules___he_rule$closure(), "ja", A.plural_rules___default_rule$closure(), "ka", A.plural_rules___es_rule$closure(), "kk", A.plural_rules___es_rule$closure(), "km", A.plural_rules___default_rule$closure(), "kn", A.plural_rules___hi_rule$closure(), "ko", A.plural_rules___default_rule$closure(), "ky", A.plural_rules___es_rule$closure(), "ln", A.plural_rules___ak_rule$closure(), "lo", A.plural_rules___default_rule$closure(), "lt", A.plural_rules___lt_rule$closure(), "lv", A.plural_rules___lv_rule$closure(), "mk", A.plural_rules___mk_rule$closure(), "ml", A.plural_rules___es_rule$closure(), "mn", A.plural_rules___es_rule$closure(), "mo", A.plural_rules___ro_rule$closure(), "mr", A.plural_rules___hi_rule$closure(), "ms", A.plural_rules___default_rule$closure(), "mt", A.plural_rules___mt_rule$closure(), "my", A.plural_rules___default_rule$closure(), "nb", A.plural_rules___es_rule$closure(), "ne", A.plural_rules___es_rule$closure(), "nl", A.plural_rules___en_rule$closure(), "no", A.plural_rules___es_rule$closure(), "no_NO", A.plural_rules___es_rule$closure(), "or", A.plural_rules___es_rule$closure(), "pa", A.plural_rules___ak_rule$closure(), "pl", A.plural_rules___pl_rule$closure(), "pt", A.plural_rules___pt_rule$closure(), "pt_BR", A.plural_rules___pt_rule$closure(), "pt_PT", A.plural_rules___pt_PT_rule$closure(), "ro", A.plural_rules___ro_rule$closure(), "ru", A.plural_rules___ru_rule$closure(), "sh", A.plural_rules___sr_rule$closure(), "si", A.plural_rules___si_rule$closure(), "sk", A.plural_rules___cs_rule$closure(), "sl", A.plural_rules___sl_rule$closure(), "sq", A.plural_rules___es_rule$closure(), "sr", A.plural_rules___sr_rule$closure(), "sr_Latn", A.plural_rules___sr_rule$closure(), "sv", A.plural_rules___en_rule$closure(), "sw", A.plural_rules___en_rule$closure(), "ta", A.plural_rules___es_rule$closure(), "te", A.plural_rules___es_rule$closure(), "th", A.plural_rules___default_rule$closure(), "tl", A.plural_rules___fil_rule$closure(), "tr", A.plural_rules___es_rule$closure(), "uk", A.plural_rules___ru_rule$closure(), "ur", A.plural_rules___en_rule$closure(), "uz", A.plural_rules___es_rule$closure(), "vi", A.plural_rules___default_rule$closure(), "zh", A.plural_rules___default_rule$closure(), "zh_CN", A.plural_rules___default_rule$closure(), "zh_HK", A.plural_rules___default_rule$closure(), "zh_TW", A.plural_rules___default_rule$closure(), "zu", A.plural_rules___hi_rule$closure(), "default", A.plural_rules___default_rule$closure()], type$.String, A.findType("PluralCase()"))); _lazyOld($, "_$accountEntitySerializer", "$get$_$accountEntitySerializer", () => new A._$AccountEntitySerializer()); _lazyOld($, "_$clientListResponseSerializer", "$get$_$clientListResponseSerializer", () => new A._$ClientListResponseSerializer()); _lazyOld($, "_$clientItemResponseSerializer", "$get$_$clientItemResponseSerializer", () => new A._$ClientItemResponseSerializer()); _lazyOld($, "_$clientEntitySerializer", "$get$_$clientEntitySerializer", () => new A._$ClientEntitySerializer()); _lazyOld($, "_$clientContactEntitySerializer", "$get$_$clientContactEntitySerializer", () => new A._$ClientContactEntitySerializer()); _lazyOld($, "_$companyGatewayListResponseSerializer", "$get$_$companyGatewayListResponseSerializer", () => new A._$CompanyGatewayListResponseSerializer()); _lazyOld($, "_$companyGatewayItemResponseSerializer", "$get$_$companyGatewayItemResponseSerializer", () => new A._$CompanyGatewayItemResponseSerializer()); _lazyOld($, "_$companyGatewayEntitySerializer", "$get$_$companyGatewayEntitySerializer", () => new A._$CompanyGatewayEntitySerializer()); _lazyOld($, "_$feesAndLimitsSettingsSerializer", "$get$_$feesAndLimitsSettingsSerializer", () => new A._$FeesAndLimitsSettingsSerializer()); _lazyOld($, "_$companyEntitySerializer", "$get$_$companyEntitySerializer", () => new A._$CompanyEntitySerializer()); _lazyOld($, "_$gatewayEntitySerializer", "$get$_$gatewayEntitySerializer", () => new A._$GatewayEntitySerializer()); _lazyOld($, "_$gatewayOptionsEntitySerializer", "$get$_$gatewayOptionsEntitySerializer", () => new A._$GatewayOptionsEntitySerializer()); _lazyOld($, "_$userCompanyEntitySerializer", "$get$_$userCompanyEntitySerializer", () => new A._$UserCompanyEntitySerializer()); _lazyOld($, "_$userSettingsEntitySerializer", "$get$_$userSettingsEntitySerializer", () => new A._$UserSettingsEntitySerializer()); _lazyOld($, "_$reportSettingsEntitySerializer", "$get$_$reportSettingsEntitySerializer", () => new A._$ReportSettingsEntitySerializer()); _lazyOld($, "_$companyItemResponseSerializer", "$get$_$companyItemResponseSerializer", () => new A._$CompanyItemResponseSerializer()); _lazyOld($, "_$registrationFieldEntitySerializer", "$get$_$registrationFieldEntitySerializer", () => new A._$RegistrationFieldEntitySerializer()); _lazyOld($, "_$creditListResponseSerializer", "$get$_$creditListResponseSerializer", () => new A._$CreditListResponseSerializer()); _lazyOld($, "_$creditItemResponseSerializer", "$get$_$creditItemResponseSerializer", () => new A._$CreditItemResponseSerializer()); _lazyOld($, "_$values", "$get$_$values", () => A.BuiltSet_BuiltSet(B.List_CC9, type$.legacy_DateRange)); _lazyOld($, "_$comparisonValues", "$get$_$comparisonValues", () => A.BuiltSet_BuiltSet(B.List_oGx, type$.legacy_DateRangeComparison)); _lazyOld($, "_$dateRangeSerializer", "$get$_$dateRangeSerializer", () => new A._$DateRangeSerializer()); _lazyOld($, "_$dateRangeComparisonSerializer", "$get$_$dateRangeComparisonSerializer", () => new A._$DateRangeComparisonSerializer()); _lazyOld($, "_$designListResponseSerializer", "$get$_$designListResponseSerializer", () => new A._$DesignListResponseSerializer()); _lazyOld($, "_$designItemResponseSerializer", "$get$_$designItemResponseSerializer", () => new A._$DesignItemResponseSerializer()); _lazyOld($, "_$designPreviewRequestSerializer", "$get$_$designPreviewRequestSerializer", () => new A._$DesignPreviewRequestSerializer()); _lazyOld($, "_$designEntitySerializer", "$get$_$designEntitySerializer", () => new A._$DesignEntitySerializer()); _lazyOld($, "_$documentListResponseSerializer", "$get$_$documentListResponseSerializer", () => new A._$DocumentListResponseSerializer()); _lazyOld($, "_$documentItemResponseSerializer", "$get$_$documentItemResponseSerializer", () => new A._$DocumentItemResponseSerializer()); _lazyOld($, "_$documentEntitySerializer", "$get$_$documentEntitySerializer", () => new A._$DocumentEntitySerializer()); _lazyOld($, "_$values0", "$get$_$values0", () => A.BuiltSet_BuiltSet(B.List_k6K, type$.legacy_EntityState)); _lazyOld($, "_$templateValues", "$get$_$templateValues", () => A.BuiltSet_BuiltSet(B.List_b75, type$.legacy_EmailTemplate)); _lazyOld($, "_$entityTypeSerializer", "$get$_$entityTypeSerializer", () => new A._$EntityTypeSerializer()); _lazyOld($, "_$entityStateSerializer", "$get$_$entityStateSerializer", () => new A._$EntityStateSerializer()); _lazyOld($, "_$emailTemplateSerializer", "$get$_$emailTemplateSerializer", () => new A._$EmailTemplateSerializer()); _lazyOld($, "_$loginResponseSerializer", "$get$_$loginResponseSerializer", () => new A._$LoginResponseSerializer()); _lazyOld($, "_$activityEntitySerializer", "$get$_$activityEntitySerializer", () => new A._$ActivityEntitySerializer()); _lazyOld($, "_$ledgerEntitySerializer", "$get$_$ledgerEntitySerializer", () => new A._$LedgerEntitySerializer()); _lazyOld($, "_$expenseCategoryListResponseSerializer", "$get$_$expenseCategoryListResponseSerializer", () => new A._$ExpenseCategoryListResponseSerializer()); _lazyOld($, "_$expenseCategoryItemResponseSerializer", "$get$_$expenseCategoryItemResponseSerializer", () => new A._$ExpenseCategoryItemResponseSerializer()); _lazyOld($, "_$expenseCategoryEntitySerializer", "$get$_$expenseCategoryEntitySerializer", () => new A._$ExpenseCategoryEntitySerializer()); _lazyOld($, "_$expenseListResponseSerializer", "$get$_$expenseListResponseSerializer", () => new A._$ExpenseListResponseSerializer()); _lazyOld($, "_$expenseItemResponseSerializer", "$get$_$expenseItemResponseSerializer", () => new A._$ExpenseItemResponseSerializer()); _lazyOld($, "_$expenseEntitySerializer", "$get$_$expenseEntitySerializer", () => new A._$ExpenseEntitySerializer()); _lazyOld($, "_$expenseScheduleEntitySerializer", "$get$_$expenseScheduleEntitySerializer", () => new A._$ExpenseScheduleEntitySerializer()); _lazyOld($, "_$expenseStatusEntitySerializer", "$get$_$expenseStatusEntitySerializer", () => new A._$ExpenseStatusEntitySerializer()); _lazyOld($, "_$gatewayTokenListResponseSerializer", "$get$_$gatewayTokenListResponseSerializer", () => new A._$GatewayTokenListResponseSerializer()); _lazyOld($, "_$gatewayTokenItemResponseSerializer", "$get$_$gatewayTokenItemResponseSerializer", () => new A._$GatewayTokenItemResponseSerializer()); _lazyOld($, "_$gatewayTokenEntitySerializer", "$get$_$gatewayTokenEntitySerializer", () => new A._$GatewayTokenEntitySerializer()); _lazyOld($, "_$gatewayTokenMetaEntitySerializer", "$get$_$gatewayTokenMetaEntitySerializer", () => new A._$GatewayTokenMetaEntitySerializer()); _lazyOld($, "_$groupListResponseSerializer", "$get$_$groupListResponseSerializer", () => new A._$GroupListResponseSerializer()); _lazyOld($, "_$groupItemResponseSerializer", "$get$_$groupItemResponseSerializer", () => new A._$GroupItemResponseSerializer()); _lazyOld($, "_$groupEntitySerializer", "$get$_$groupEntitySerializer", () => new A._$GroupEntitySerializer()); _lazyOld($, "_$healthCheckResponseSerializer", "$get$_$healthCheckResponseSerializer", () => new A._$HealthCheckResponseSerializer()); _lazyOld($, "_$healthCheckPHPResponseSerializer", "$get$_$healthCheckPHPResponseSerializer", () => new A._$HealthCheckPHPResponseSerializer()); _lazyOld($, "_$exportValues", "$get$_$exportValues", () => A.BuiltSet_BuiltSet(B.List_5bR, type$.legacy_ExportType)); _lazyOld($, "_$preImportResponseSerializer", "$get$_$preImportResponseSerializer", () => new A._$PreImportResponseSerializer()); _lazyOld($, "_$preImportResponseEntityDetailsSerializer", "$get$_$preImportResponseEntityDetailsSerializer", () => new A._$PreImportResponseEntityDetailsSerializer()); _lazyOld($, "_$importRequestSerializer", "$get$_$importRequestSerializer", () => new A._$ImportRequestSerializer()); _lazyOld($, "_$importRequestMappingSerializer", "$get$_$importRequestMappingSerializer", () => new A._$ImportRequestMappingSerializer()); _lazyOld($, "_$invoiceListResponseSerializer", "$get$_$invoiceListResponseSerializer", () => new A._$InvoiceListResponseSerializer()); _lazyOld($, "_$invoiceItemResponseSerializer", "$get$_$invoiceItemResponseSerializer", () => new A._$InvoiceItemResponseSerializer()); _lazyOld($, "_$invoiceEntitySerializer", "$get$_$invoiceEntitySerializer", () => new A._$InvoiceEntitySerializer()); _lazyOld($, "_$invoiceItemEntitySerializer", "$get$_$invoiceItemEntitySerializer", () => new A._$InvoiceItemEntitySerializer()); _lazyOld($, "_$invitationEntitySerializer", "$get$_$invitationEntitySerializer", () => new A._$InvitationEntitySerializer()); _lazyOld($, "_$invoiceScheduleEntitySerializer", "$get$_$invoiceScheduleEntitySerializer", () => new A._$InvoiceScheduleEntitySerializer()); _lazyOld($, "_$invoiceHistoryEntitySerializer", "$get$_$invoiceHistoryEntitySerializer", () => new A._$InvoiceHistoryEntitySerializer()); _lazyOld($, "_$paymentListResponseSerializer", "$get$_$paymentListResponseSerializer", () => new A._$PaymentListResponseSerializer()); _lazyOld($, "_$paymentItemResponseSerializer", "$get$_$paymentItemResponseSerializer", () => new A._$PaymentItemResponseSerializer()); _lazyOld($, "_$paymentEntitySerializer", "$get$_$paymentEntitySerializer", () => new A._$PaymentEntitySerializer()); _lazyOld($, "_$paymentableEntitySerializer", "$get$_$paymentableEntitySerializer", () => new A._$PaymentableEntitySerializer()); _lazyOld($, "_$paymentTermListResponseSerializer", "$get$_$paymentTermListResponseSerializer", () => new A._$PaymentTermListResponseSerializer()); _lazyOld($, "_$paymentTermItemResponseSerializer", "$get$_$paymentTermItemResponseSerializer", () => new A._$PaymentTermItemResponseSerializer()); _lazyOld($, "_$paymentTermEntitySerializer", "$get$_$paymentTermEntitySerializer", () => new A._$PaymentTermEntitySerializer()); _lazyOld($, "_$productListResponseSerializer", "$get$_$productListResponseSerializer", () => new A._$ProductListResponseSerializer()); _lazyOld($, "_$productItemResponseSerializer", "$get$_$productItemResponseSerializer", () => new A._$ProductItemResponseSerializer()); _lazyOld($, "_$productEntitySerializer", "$get$_$productEntitySerializer", () => new A._$ProductEntitySerializer()); _lazyOld($, "_$projectListResponseSerializer", "$get$_$projectListResponseSerializer", () => new A._$ProjectListResponseSerializer()); _lazyOld($, "_$projectItemResponseSerializer", "$get$_$projectItemResponseSerializer", () => new A._$ProjectItemResponseSerializer()); _lazyOld($, "_$projectEntitySerializer", "$get$_$projectEntitySerializer", () => new A._$ProjectEntitySerializer()); _lazyOld($, "serializers", "$get$serializers", () => { var t1 = $.$get$_$serializers().toBuilder$0(); t1._plugins.add$1(0, new A.StandardJsonPlugin()); return t1.build$0(0); }); _lazyOld($, "_$serializers", "$get$_$serializers", () => { var t1 = A.Serializers_Serializers().toBuilder$0(); t1.add$1(0, $.$get$_$accountEntitySerializer()); t1.add$1(0, $.$get$_$activityEntitySerializer()); t1.add$1(0, $.$get$_$appLayoutSerializer()); t1.add$1(0, $.$get$_$appSidebarModeSerializer()); t1.add$1(0, $.$get$_$appStateSerializer()); t1.add$1(0, $.$get$_$authStateSerializer()); t1.add$1(0, $.$get$_$clientContactEntitySerializer()); t1.add$1(0, $.$get$_$clientEntitySerializer()); t1.add$1(0, $.$get$_$clientItemResponseSerializer()); t1.add$1(0, $.$get$_$clientListResponseSerializer()); t1.add$1(0, $.$get$_$clientStateSerializer()); t1.add$1(0, $.$get$_$clientUIStateSerializer()); t1.add$1(0, $.$get$_$companyEntitySerializer()); t1.add$1(0, $.$get$_$companyGatewayEntitySerializer()); t1.add$1(0, $.$get$_$companyGatewayItemResponseSerializer()); t1.add$1(0, $.$get$_$companyGatewayListResponseSerializer()); t1.add$1(0, $.$get$_$companyGatewayStateSerializer()); t1.add$1(0, $.$get$_$companyGatewayUIStateSerializer()); t1.add$1(0, $.$get$_$companyItemResponseSerializer()); t1.add$1(0, $.$get$_$companyPrefStateSerializer()); t1.add$1(0, $.$get$_$countryEntitySerializer()); t1.add$1(0, $.$get$_$countryItemResponseSerializer()); t1.add$1(0, $.$get$_$countryListResponseSerializer()); t1.add$1(0, $.$get$_$creditItemResponseSerializer()); t1.add$1(0, $.$get$_$creditListResponseSerializer()); t1.add$1(0, $.$get$_$creditStateSerializer()); t1.add$1(0, $.$get$_$creditUIStateSerializer()); t1.add$1(0, $.$get$_$currencyEntitySerializer()); t1.add$1(0, $.$get$_$currencyItemResponseSerializer()); t1.add$1(0, $.$get$_$currencyListResponseSerializer()); t1.add$1(0, $.$get$_$dashboardUISettingsSerializer()); t1.add$1(0, $.$get$_$dashboardUIStateSerializer()); t1.add$1(0, $.$get$_$dateFormatEntitySerializer()); t1.add$1(0, $.$get$_$dateFormatItemResponseSerializer()); t1.add$1(0, $.$get$_$dateFormatListResponseSerializer()); t1.add$1(0, $.$get$_$dateRangeSerializer()); t1.add$1(0, $.$get$_$dateRangeComparisonSerializer()); t1.add$1(0, $.$get$_$datetimeFormatEntitySerializer()); t1.add$1(0, $.$get$_$datetimeFormatItemResponseSerializer()); t1.add$1(0, $.$get$_$datetimeFormatListResponseSerializer()); t1.add$1(0, $.$get$_$designEntitySerializer()); t1.add$1(0, $.$get$_$designItemResponseSerializer()); t1.add$1(0, $.$get$_$designListResponseSerializer()); t1.add$1(0, $.$get$_$designPreviewRequestSerializer()); t1.add$1(0, $.$get$_$designStateSerializer()); t1.add$1(0, $.$get$_$designUIStateSerializer()); t1.add$1(0, $.$get$_$documentEntitySerializer()); t1.add$1(0, $.$get$_$documentItemResponseSerializer()); t1.add$1(0, $.$get$_$documentListResponseSerializer()); t1.add$1(0, $.$get$_$documentStateSerializer()); t1.add$1(0, $.$get$_$documentUIStateSerializer()); t1.add$1(0, $.$get$_$emailTemplateSerializer()); t1.add$1(0, $.$get$_$entityStateSerializer()); t1.add$1(0, $.$get$_$entityTypeSerializer()); t1.add$1(0, $.$get$_$expenseCategoryEntitySerializer()); t1.add$1(0, $.$get$_$expenseCategoryItemResponseSerializer()); t1.add$1(0, $.$get$_$expenseCategoryListResponseSerializer()); t1.add$1(0, $.$get$_$expenseCategoryStateSerializer()); t1.add$1(0, $.$get$_$expenseCategoryUIStateSerializer()); t1.add$1(0, $.$get$_$expenseEntitySerializer()); t1.add$1(0, $.$get$_$expenseItemResponseSerializer()); t1.add$1(0, $.$get$_$expenseListResponseSerializer()); t1.add$1(0, $.$get$_$expenseScheduleEntitySerializer()); t1.add$1(0, $.$get$_$expenseStateSerializer()); t1.add$1(0, $.$get$_$expenseStatusEntitySerializer()); t1.add$1(0, $.$get$_$expenseUIStateSerializer()); t1.add$1(0, $.$get$_$feesAndLimitsSettingsSerializer()); t1.add$1(0, $.$get$_$gatewayEntitySerializer()); t1.add$1(0, $.$get$_$gatewayOptionsEntitySerializer()); t1.add$1(0, $.$get$_$gatewayTokenEntitySerializer()); t1.add$1(0, $.$get$_$gatewayTokenItemResponseSerializer()); t1.add$1(0, $.$get$_$gatewayTokenListResponseSerializer()); t1.add$1(0, $.$get$_$gatewayTokenMetaEntitySerializer()); t1.add$1(0, $.$get$_$groupEntitySerializer()); t1.add$1(0, $.$get$_$groupItemResponseSerializer()); t1.add$1(0, $.$get$_$groupListResponseSerializer()); t1.add$1(0, $.$get$_$groupStateSerializer()); t1.add$1(0, $.$get$_$groupUIStateSerializer()); t1.add$1(0, $.$get$_$healthCheckPHPResponseSerializer()); t1.add$1(0, $.$get$_$healthCheckResponseSerializer()); t1.add$1(0, $.$get$_$historyRecordSerializer()); t1.add$1(0, $.$get$_$importRequestSerializer()); t1.add$1(0, $.$get$_$importRequestMappingSerializer()); t1.add$1(0, $.$get$_$industryEntitySerializer()); t1.add$1(0, $.$get$_$industryItemResponseSerializer()); t1.add$1(0, $.$get$_$industryListResponseSerializer()); t1.add$1(0, $.$get$_$invitationEntitySerializer()); t1.add$1(0, $.$get$_$invoiceEntitySerializer()); t1.add$1(0, $.$get$_$invoiceHistoryEntitySerializer()); t1.add$1(0, $.$get$_$invoiceItemEntitySerializer()); t1.add$1(0, $.$get$_$invoiceItemResponseSerializer()); t1.add$1(0, $.$get$_$invoiceListResponseSerializer()); t1.add$1(0, $.$get$_$invoiceScheduleEntitySerializer()); t1.add$1(0, $.$get$_$invoiceStateSerializer()); t1.add$1(0, $.$get$_$invoiceStatusEntitySerializer()); t1.add$1(0, $.$get$_$invoiceUIStateSerializer()); t1.add$1(0, $.$get$_$languageEntitySerializer()); t1.add$1(0, $.$get$_$languageItemResponseSerializer()); t1.add$1(0, $.$get$_$languageListResponseSerializer()); t1.add$1(0, $.$get$_$ledgerEntitySerializer()); t1.add$1(0, $.$get$_$listUIStateSerializer()); t1.add$1(0, $.$get$_$loginResponseSerializer()); t1.add$1(0, $.$get$_$moduleLayoutSerializer()); t1.add$1(0, $.$get$_$paymentEntitySerializer()); t1.add$1(0, $.$get$_$paymentItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentListResponseSerializer()); t1.add$1(0, $.$get$_$paymentStateSerializer()); t1.add$1(0, $.$get$_$paymentTermEntitySerializer()); t1.add$1(0, $.$get$_$paymentTermItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentTermListResponseSerializer()); t1.add$1(0, $.$get$_$paymentTermStateSerializer()); t1.add$1(0, $.$get$_$paymentTermUIStateSerializer()); t1.add$1(0, $.$get$_$paymentTypeEntitySerializer()); t1.add$1(0, $.$get$_$paymentTypeItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentTypeListResponseSerializer()); t1.add$1(0, $.$get$_$paymentUIStateSerializer()); t1.add$1(0, $.$get$_$paymentableEntitySerializer()); t1.add$1(0, $.$get$_$preImportResponseSerializer()); t1.add$1(0, $.$get$_$preImportResponseEntityDetailsSerializer()); t1.add$1(0, $.$get$_$prefStateSerializer()); t1.add$1(0, $.$get$_$prefStateSortFieldSerializer()); t1.add$1(0, $.$get$_$productEntitySerializer()); t1.add$1(0, $.$get$_$productItemResponseSerializer()); t1.add$1(0, $.$get$_$productListResponseSerializer()); t1.add$1(0, $.$get$_$productStateSerializer()); t1.add$1(0, $.$get$_$productUIStateSerializer()); t1.add$1(0, $.$get$_$projectEntitySerializer()); t1.add$1(0, $.$get$_$projectItemResponseSerializer()); t1.add$1(0, $.$get$_$projectListResponseSerializer()); t1.add$1(0, $.$get$_$projectStateSerializer()); t1.add$1(0, $.$get$_$projectUIStateSerializer()); t1.add$1(0, $.$get$_$purchaseOrderStateSerializer()); t1.add$1(0, $.$get$_$purchaseOrderUIStateSerializer()); t1.add$1(0, $.$get$_$quoteStateSerializer()); t1.add$1(0, $.$get$_$quoteUIStateSerializer()); t1.add$1(0, $.$get$_$recurringExpenseStateSerializer()); t1.add$1(0, $.$get$_$recurringExpenseUIStateSerializer()); t1.add$1(0, $.$get$_$recurringInvoiceStateSerializer()); t1.add$1(0, $.$get$_$recurringInvoiceUIStateSerializer()); t1.add$1(0, $.$get$_$registrationFieldEntitySerializer()); t1.add$1(0, $.$get$_$reportSettingsEntitySerializer()); t1.add$1(0, $.$get$_$reportsUIStateSerializer()); t1.add$1(0, $.$get$_$settingsEntitySerializer()); t1.add$1(0, $.$get$_$settingsUIStateSerializer()); t1.add$1(0, $.$get$_$sizeEntitySerializer()); t1.add$1(0, $.$get$_$sizeItemResponseSerializer()); t1.add$1(0, $.$get$_$sizeListResponseSerializer()); t1.add$1(0, $.$get$_$staticDataEntitySerializer()); t1.add$1(0, $.$get$_$staticDataItemResponseSerializer()); t1.add$1(0, $.$get$_$staticStateSerializer()); t1.add$1(0, $.$get$_$subscriptionEntitySerializer()); t1.add$1(0, $.$get$_$subscriptionItemResponseSerializer()); t1.add$1(0, $.$get$_$subscriptionListResponseSerializer()); t1.add$1(0, $.$get$_$subscriptionStateSerializer()); t1.add$1(0, $.$get$_$subscriptionUIStateSerializer()); t1.add$1(0, $.$get$_$systemLogEntitySerializer()); t1.add$1(0, $.$get$_$taskEntitySerializer()); t1.add$1(0, $.$get$_$taskItemResponseSerializer()); t1.add$1(0, $.$get$_$taskListResponseSerializer()); t1.add$1(0, $.$get$_$taskStateSerializer()); t1.add$1(0, $.$get$_$taskStatusEntitySerializer()); t1.add$1(0, $.$get$_$taskStatusItemResponseSerializer()); t1.add$1(0, $.$get$_$taskStatusListResponseSerializer()); t1.add$1(0, $.$get$_$taskStatusStateSerializer()); t1.add$1(0, $.$get$_$taskStatusUIStateSerializer()); t1.add$1(0, $.$get$_$taskUIStateSerializer()); t1.add$1(0, $.$get$_$taxRateEntitySerializer()); t1.add$1(0, $.$get$_$taxRateItemResponseSerializer()); t1.add$1(0, $.$get$_$taxRateListResponseSerializer()); t1.add$1(0, $.$get$_$taxRateStateSerializer()); t1.add$1(0, $.$get$_$taxRateUIStateSerializer()); t1.add$1(0, $.$get$_$templateEntitySerializer()); t1.add$1(0, $.$get$_$timezoneEntitySerializer()); t1.add$1(0, $.$get$_$timezoneItemResponseSerializer()); t1.add$1(0, $.$get$_$timezoneListResponseSerializer()); t1.add$1(0, $.$get$_$tokenEntitySerializer()); t1.add$1(0, $.$get$_$tokenItemResponseSerializer()); t1.add$1(0, $.$get$_$tokenListResponseSerializer()); t1.add$1(0, $.$get$_$tokenStateSerializer()); t1.add$1(0, $.$get$_$tokenUIStateSerializer()); t1.add$1(0, $.$get$_$uIStateSerializer()); t1.add$1(0, $.$get$_$userCompanyEntitySerializer()); t1.add$1(0, $.$get$_$userCompanyItemResponseSerializer()); t1.add$1(0, $.$get$_$userCompanyStateSerializer()); t1.add$1(0, $.$get$_$userEntitySerializer()); t1.add$1(0, $.$get$_$userItemResponseSerializer()); t1.add$1(0, $.$get$_$userListResponseSerializer()); t1.add$1(0, $.$get$_$userSettingsEntitySerializer()); t1.add$1(0, $.$get$_$userStateSerializer()); t1.add$1(0, $.$get$_$userTwoFactorDataSerializer()); t1.add$1(0, $.$get$_$userTwoFactorResponseSerializer()); t1.add$1(0, $.$get$_$userUIStateSerializer()); t1.add$1(0, $.$get$_$vendorContactEntitySerializer()); t1.add$1(0, $.$get$_$vendorEntitySerializer()); t1.add$1(0, $.$get$_$vendorItemResponseSerializer()); t1.add$1(0, $.$get$_$vendorListResponseSerializer()); t1.add$1(0, $.$get$_$vendorStateSerializer()); t1.add$1(0, $.$get$_$vendorUIStateSerializer()); t1.add$1(0, $.$get$_$webhookConfigurationEntitySerializer()); t1.add$1(0, $.$get$_$webhookEntitySerializer()); t1.add$1(0, $.$get$_$webhookItemResponseSerializer()); t1.add$1(0, $.$get$_$webhookListResponseSerializer()); t1.add$1(0, $.$get$_$webhookStateSerializer()); t1.add$1(0, $.$get$_$webhookUIStateSerializer()); t1.addBuilderFactory$2(B.FullType_4pa, new A._$serializers_closure()); t1.addBuilderFactory$2(B.FullType_QWw, new A._$serializers_closure0()); t1.addBuilderFactory$2(B.FullType_2jN, new A._$serializers_closure1()); t1.addBuilderFactory$2(B.FullType_kr3, new A._$serializers_closure2()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure3()); t1.addBuilderFactory$2(B.FullType_oGx, new A._$serializers_closure4()); t1.addBuilderFactory$2(B.FullType_Ag3, new A._$serializers_closure5()); t1.addBuilderFactory$2(B.FullType_A8J, new A._$serializers_closure6()); t1.addBuilderFactory$2(B.FullType_kr30, new A._$serializers_closure7()); t1.addBuilderFactory$2(B.FullType_4uk, new A._$serializers_closure8()); t1.addBuilderFactory$2(B.FullType_4uk, new A._$serializers_closure9()); t1.addBuilderFactory$2(B.FullType_wsa, new A._$serializers_closure10()); t1.addBuilderFactory$2(B.FullType_l2n, new A._$serializers_closure11()); t1.addBuilderFactory$2(B.FullType_NYu, new A._$serializers_closure12()); t1.addBuilderFactory$2(B.FullType_N80, new A._$serializers_closure13()); t1.addBuilderFactory$2(B.FullType_rQK, new A._$serializers_closure14()); t1.addBuilderFactory$2(B.FullType_gsm, new A._$serializers_closure15()); t1.addBuilderFactory$2(B.FullType_r6h, new A._$serializers_closure16()); t1.addBuilderFactory$2(B.FullType_mJb, new A._$serializers_closure17()); t1.addBuilderFactory$2(B.FullType_kr30, new A._$serializers_closure18()); t1.addBuilderFactory$2(B.FullType_cL3, new A._$serializers_closure19()); t1.addBuilderFactory$2(B.FullType_IWk, new A._$serializers_closure20()); t1.addBuilderFactory$2(B.FullType_rQK, new A._$serializers_closure21()); t1.addBuilderFactory$2(B.FullType_gsm, new A._$serializers_closure22()); t1.addBuilderFactory$2(B.FullType_8sg, new A._$serializers_closure23()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure24()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure25()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure26()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure27()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure28()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure29()); t1.addBuilderFactory$2(B.FullType_aXU, new A._$serializers_closure30()); t1.addBuilderFactory$2(B.FullType_JmU, new A._$serializers_closure31()); t1.addBuilderFactory$2(B.FullType_Icb, new A._$serializers_closure32()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure33()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure34()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure35()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure36()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure37()); t1.addBuilderFactory$2(B.FullType_kSI, new A._$serializers_closure38()); t1.addBuilderFactory$2(B.FullType_bQV, new A._$serializers_closure39()); t1.addBuilderFactory$2(B.FullType_8cq, new A._$serializers_closure40()); t1.addBuilderFactory$2(B.FullType_0vR, new A._$serializers_closure41()); t1.addBuilderFactory$2(B.FullType_kr3, new A._$serializers_closure42()); t1.addBuilderFactory$2(B.FullType_EOZ, new A._$serializers_closure43()); t1.addBuilderFactory$2(B.FullType_EOZ, new A._$serializers_closure44()); t1.addBuilderFactory$2(B.FullType_QWw, new A._$serializers_closure45()); t1.addBuilderFactory$2(B.FullType_IIj, new A._$serializers_closure46()); t1.addBuilderFactory$2(B.FullType_WVg, new A._$serializers_closure47()); t1.addBuilderFactory$2(B.FullType_woc, new A._$serializers_closure48()); t1.addBuilderFactory$2(B.FullType_A8J, new A._$serializers_closure49()); t1.addBuilderFactory$2(B.FullType_8cq, new A._$serializers_closure50()); t1.addBuilderFactory$2(B.FullType_e7r, new A._$serializers_closure51()); t1.addBuilderFactory$2(B.FullType_Ag3, new A._$serializers_closure52()); t1.addBuilderFactory$2(B.FullType_GBo, new A._$serializers_closure53()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure54()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure55()); t1.addBuilderFactory$2(B.FullType_0vR, new A._$serializers_closure56()); t1.addBuilderFactory$2(B.FullType_ORM, new A._$serializers_closure57()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure58()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure59()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure60()); t1.addBuilderFactory$2(B.FullType_UWS, new A._$serializers_closure61()); t1.addBuilderFactory$2(B.FullType_KEc, new A._$serializers_closure62()); t1.addBuilderFactory$2(B.FullType_0vR, new A._$serializers_closure63()); t1.addBuilderFactory$2(B.FullType_Pss, new A._$serializers_closure64()); t1.addBuilderFactory$2(B.FullType_8sg, new A._$serializers_closure65()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure66()); t1.addBuilderFactory$2(B.FullType_mKc, new A._$serializers_closure67()); t1.addBuilderFactory$2(B.FullType_46c, new A._$serializers_closure68()); t1.addBuilderFactory$2(B.FullType_NIe, new A._$serializers_closure69()); t1.addBuilderFactory$2(B.FullType_kvD, new A._$serializers_closure70()); t1.addBuilderFactory$2(B.FullType_oGx, new A._$serializers_closure71()); t1.addBuilderFactory$2(B.FullType_pjG, new A._$serializers_closure72()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure73()); t1.addBuilderFactory$2(B.FullType_WXJ, new A._$serializers_closure74()); t1.addBuilderFactory$2(B.FullType_l2n, new A._$serializers_closure75()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure76()); t1.addBuilderFactory$2(B.FullType_xS5, new A._$serializers_closure77()); t1.addBuilderFactory$2(B.FullType_RDC, new A._$serializers_closure78()); t1.addBuilderFactory$2(B.FullType_JhS, new A._$serializers_closure79()); t1.addBuilderFactory$2(B.FullType_koo, new A._$serializers_closure80()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure81()); t1.addBuilderFactory$2(B.FullType_QWw, new A._$serializers_closure82()); t1.addBuilderFactory$2(B.FullType_r6h, new A._$serializers_closure83()); t1.addBuilderFactory$2(B.FullType_ORM, new A._$serializers_closure84()); t1.addBuilderFactory$2(B.FullType_kvD, new A._$serializers_closure85()); t1.addBuilderFactory$2(B.FullType_mJb, new A._$serializers_closure86()); t1.addBuilderFactory$2(B.FullType_U06, new A._$serializers_closure87()); t1.addBuilderFactory$2(B.FullType_U06, new A._$serializers_closure88()); t1.addBuilderFactory$2(B.FullType_U06, new A._$serializers_closure89()); t1.addBuilderFactory$2(B.FullType_GBo, new A._$serializers_closure90()); t1.addBuilderFactory$2(B.FullType_KEc, new A._$serializers_closure91()); t1.addBuilderFactory$2(B.FullType_wsa, new A._$serializers_closure92()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure93()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure94()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure95()); t1.addBuilderFactory$2(B.FullType_qwt, new A._$serializers_closure96()); t1.addBuilderFactory$2(B.FullType_NIe, new A._$serializers_closure97()); t1.addBuilderFactory$2(B.FullType_UWS, new A._$serializers_closure98()); t1.addBuilderFactory$2(B.FullType_WVg, new A._$serializers_closure99()); t1.addBuilderFactory$2(B.FullType_IIj, new A._$serializers_closure100()); t1.addBuilderFactory$2(B.FullType_NYu, new A._$serializers_closure101()); t1.addBuilderFactory$2(B.FullType_mKc, new A._$serializers_closure102()); t1.addBuilderFactory$2(B.FullType_89t, new A._$serializers_closure103()); t1.addBuilderFactory$2(B.FullType_UH2, new A._$serializers_closure104()); t1.addBuilderFactory$2(B.FullType_e7r, new A._$serializers_closure105()); t1.addBuilderFactory$2(B.FullType_MO9, new A._$serializers_closure106()); t1.addBuilderFactory$2(B.FullType_QWw, new A._$serializers_closure107()); t1.addBuilderFactory$2(B.FullType_EBZ, new A._$serializers_closure108()); t1.addBuilderFactory$2(B.FullType_Pss, new A._$serializers_closure109()); t1.addBuilderFactory$2(B.FullType_46c, new A._$serializers_closure110()); t1.addBuilderFactory$2(B.FullType_mVA, new A._$serializers_closure111()); t1.addBuilderFactory$2(B.FullType_QqY, new A._$serializers_closure112()); t1.addBuilderFactory$2(B.FullType_QqY, new A._$serializers_closure113()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure114()); t1.addBuilderFactory$2(B.FullType_fL6, new A._$serializers_closure115()); t1.addBuilderFactory$2(B.FullType_ym9, new A._$serializers_closure116()); t1.addBuilderFactory$2(B.FullType_mZn, new A._$serializers_closure117()); t1.addBuilderFactory$2(B.FullType_mZn, new A._$serializers_closure118()); t1.addBuilderFactory$2(B.FullType_Nhy, new A._$serializers_closure119()); t1.addBuilderFactory$2(B.FullType_wHc, new A._$serializers_closure120()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure121()); t1.addBuilderFactory$2(B.FullType_6Re, new A._$serializers_closure122()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure123()); t1.addBuilderFactory$2(B.FullType_5m9, new A._$serializers_closure124()); t1.addBuilderFactory$2(B.FullType_pUI, new A._$serializers_closure125()); t1.addBuilderFactory$2(B.FullType_CWG, new A._$serializers_closure126()); t1.addBuilderFactory$2(B.FullType_mFp, new A._$serializers_closure127()); t1.addBuilderFactory$2(B.FullType_sYl, new A._$serializers_closure128()); t1.addBuilderFactory$2(B.FullType_9Sk, new A._$serializers_closure129()); t1.addBuilderFactory$2(B.FullType_YiR, new A._$serializers_closure130()); t1.addBuilderFactory$2(B.FullType_2fF, new A._$serializers_closure131()); t1.addBuilderFactory$2(B.FullType_0kM, new A._$serializers_closure132()); t1.addBuilderFactory$2(B.FullType_IWk, new A._$serializers_closure133()); t1.addBuilderFactory$2(B.FullType_4ig, new A._$serializers_closure134()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure135()); t1.addBuilderFactory$2(B.FullType_0, new A._$serializers_closure136()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure137()); t1.addBuilderFactory$2(B.FullType_HZS, new A._$serializers_closure138()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure139()); t1.addBuilderFactory$2(B.FullType_6Ps, new A._$serializers_closure140()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure141()); t1.addBuilderFactory$2(B.FullType_6Ps, new A._$serializers_closure142()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure143()); t1.addBuilderFactory$2(B.FullType_oCX, new A._$serializers_closure144()); t1.addBuilderFactory$2(B.FullType_oGx, new A._$serializers_closure145()); t1.addBuilderFactory$2(B.FullType_sm9, new A._$serializers_closure146()); t1.addBuilderFactory$2(B.FullType_CxZ, new A._$serializers_closure147()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure148()); t1.addBuilderFactory$2(B.FullType_Yup, new A._$serializers_closure149()); t1.addBuilderFactory$2(B.FullType_n67, new A._$serializers_closure150()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure151()); t1.addBuilderFactory$2(B.FullType_n67, new A._$serializers_closure152()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure153()); t1.addBuilderFactory$2(B.FullType_n67, new A._$serializers_closure154()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure155()); t1.addBuilderFactory$2(B.FullType_n67, new A._$serializers_closure156()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure157()); t1.addBuilderFactory$2(B.FullType_n67, new A._$serializers_closure158()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure159()); t1.addBuilderFactory$2(B.FullType_mC7, new A._$serializers_closure160()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure161()); t1.addBuilderFactory$2(B.FullType_weg, new A._$serializers_closure162()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure163()); t1.addBuilderFactory$2(B.FullType_blF, new A._$serializers_closure164()); t1.addBuilderFactory$2(B.FullType_woD, new A._$serializers_closure165()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure166()); t1.addBuilderFactory$2(B.FullType_qFt, new A._$serializers_closure167()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure168()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure169()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure170()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure171()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure172()); t1.addBuilderFactory$2(B.FullType_LNO, new A._$serializers_closure173()); t1.addBuilderFactory$2(B.FullType_mZn, new A._$serializers_closure174()); t1.addBuilderFactory$2(B.FullType_YGD, new A._$serializers_closure175()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure176()); t1.addBuilderFactory$2(B.FullType_woc0, new A._$serializers_closure177()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure178()); t1.addBuilderFactory$2(B.FullType_woc, new A._$serializers_closure179()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure180()); t1.addBuilderFactory$2(B.FullType_o2l, new A._$serializers_closure181()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure182()); t1.addBuilderFactory$2(B.FullType_C42, new A._$serializers_closure183()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure184()); t1.addBuilderFactory$2(B.FullType_4y3, new A._$serializers_closure185()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure186()); t1.addBuilderFactory$2(B.FullType_sav, new A._$serializers_closure187()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure188()); t1.addBuilderFactory$2(B.FullType_QKO, new A._$serializers_closure189()); t1.addBuilderFactory$2(B.FullType_6m4, new A._$serializers_closure190()); t1.addBuilderFactory$2(B.FullType_5FV, new A._$serializers_closure191()); return t1.build$0(0); }); _lazyOld($, "_$settingsEntitySerializer", "$get$_$settingsEntitySerializer", () => new A._$SettingsEntitySerializer()); _lazyOld($, "colorThemesMap", "$get$colorThemesMap", () => A.LinkedHashMap_LinkedHashMap$_literal(["light", A.ColorTheme$(B.Color_4290328320, B.Color_4283934436, B.Color_4281486753, B.Color_4283210268, B.Color_4291660032), "dark", A.ColorTheme$(B.Color_4287315264, B.Color_4280912555, B.Color_4278994339, B.Color_4282414389, B.Color_4289228800), "cerulean", A.ColorTheme$(B.Color_4291238946, B.Color_4278402163, B.Color_4281312487, B.Color_4285769785, B.Color_4292695552), "cosmo", A.ColorTheme$(B.Color_4294901817, B.Color_4288238779, B.Color_4280778979, B.Color_4282365464, B.Color_4294931736), "cyborg", A.ColorTheme$(B.Color_4291559424, B.Color_4288230348, B.Color_4280983510, B.Color_4286034688, B.Color_4294936576), "darkly", A.ColorTheme$(B.Color_4293348412, B.Color_4281637083, B.Color_4281817727, B.Color_4278238348, B.Color_4294155282), "flatly", A.ColorTheme$(B.Color_4293348412, B.Color_4281637083, B.Color_4281089616, B.Color_4279811228, B.Color_4294155282), "journal", A.ColorTheme$(B.Color_4294277632, B.Color_4281558681, B.Color_4293617764, B.Color_4280463948, B.Color_4294305317), "litera", A.ColorTheme$(B.Color_4292432719, B.Color_4279739064, B.Color_4282745580, B.Color_4278368373, B.Color_4293963086), "lumen", A.ColorTheme$(B.Color_4294918454, B.Color_4285909739, B.Color_4279602362, B.Color_4280858156, B.Color_4294935835), "lux", A.ColorTheme$(B.Color_4292432719, B.Color_4280261583, B.Color_4279900698, B.Color_4283154291, B.Color_4293963086), "materia", A.ColorTheme$(B.Color_4293205027, B.Color_4288423856, B.Color_4280391411, B.Color_4283215696, B.Color_4294940672), "minty", A.ColorTheme$(B.Color_4294932561, B.Color_4285318101, B.Color_4286104237, B.Color_4283878557, B.Color_4294954599), "pulse", A.ColorTheme$(B.Color_4294719801, B.Color_4278230236, B.Color_4284035478, B.Color_4279482709, B.Color_4293894941), "sandstone", A.ColorTheme$(B.Color_4292432719, B.Color_4280921056, B.Color_4281490824, B.Color_4287874379, B.Color_4294212668), "simplex", A.ColorTheme$(B.Color_4288366495, B.Color_4278360783, B.Color_4292420367, B.Color_4282815496, B.Color_4292444959), "sketchy", A.ColorTheme$(B.Color_4292621637, B.Color_4279739064, B.Color_4281545523, B.Color_4280854341, B.Color_4294951175), "slate", A.ColorTheme$(B.Color_4293812059, B.Color_4284203230, B.Color_4282007364, B.Color_4284662882, B.Color_4294480902), "solar", A.ColorTheme$(B.Color_4292032130, B.Color_4280716242, B.Color_4290087168, B.Color_4280983960, B.Color_4291513110), "spacelab", A.ColorTheme$(B.Color_4291625472, B.Color_4281571827, B.Color_4282674843, B.Color_4282168609, B.Color_4292113664), "superhero", A.ColorTheme$(B.Color_4292432719, B.Color_4284203230, B.Color_4292831514, B.Color_4284266588, B.Color_4293963086), "united", A.ColorTheme$(B.Color_4292818988, B.Color_4279739064, B.Color_4293481504, B.Color_4281906250, B.Color_4293900094), "yeti", A.ColorTheme$(B.Color_4293935396, B.Color_4284203230, B.Color_4278226106, B.Color_4282625130, B.Color_4293496834)], type$.legacy_String, A.findType("ColorTheme*"))); _lazyOld($, "_$countryListResponseSerializer", "$get$_$countryListResponseSerializer", () => new A._$CountryListResponseSerializer()); _lazyOld($, "_$countryItemResponseSerializer", "$get$_$countryItemResponseSerializer", () => new A._$CountryItemResponseSerializer()); _lazyOld($, "_$countryEntitySerializer", "$get$_$countryEntitySerializer", () => new A._$CountryEntitySerializer()); _lazyOld($, "_$currencyListResponseSerializer", "$get$_$currencyListResponseSerializer", () => new A._$CurrencyListResponseSerializer()); _lazyOld($, "_$currencyItemResponseSerializer", "$get$_$currencyItemResponseSerializer", () => new A._$CurrencyItemResponseSerializer()); _lazyOld($, "_$currencyEntitySerializer", "$get$_$currencyEntitySerializer", () => new A._$CurrencyEntitySerializer()); _lazyOld($, "_$dateFormatListResponseSerializer", "$get$_$dateFormatListResponseSerializer", () => new A._$DateFormatListResponseSerializer()); _lazyOld($, "_$dateFormatItemResponseSerializer", "$get$_$dateFormatItemResponseSerializer", () => new A._$DateFormatItemResponseSerializer()); _lazyOld($, "_$dateFormatEntitySerializer", "$get$_$dateFormatEntitySerializer", () => new A._$DateFormatEntitySerializer()); _lazyOld($, "_$datetimeFormatListResponseSerializer", "$get$_$datetimeFormatListResponseSerializer", () => new A._$DatetimeFormatListResponseSerializer()); _lazyOld($, "_$datetimeFormatItemResponseSerializer", "$get$_$datetimeFormatItemResponseSerializer", () => new A._$DatetimeFormatItemResponseSerializer()); _lazyOld($, "_$datetimeFormatEntitySerializer", "$get$_$datetimeFormatEntitySerializer", () => new A._$DatetimeFormatEntitySerializer()); _lazyOld($, "_$industryListResponseSerializer", "$get$_$industryListResponseSerializer", () => new A._$IndustryListResponseSerializer()); _lazyOld($, "_$industryItemResponseSerializer", "$get$_$industryItemResponseSerializer", () => new A._$IndustryItemResponseSerializer()); _lazyOld($, "_$industryEntitySerializer", "$get$_$industryEntitySerializer", () => new A._$IndustryEntitySerializer()); _lazyOld($, "_$invoiceStatusEntitySerializer", "$get$_$invoiceStatusEntitySerializer", () => new A._$InvoiceStatusEntitySerializer()); _lazyOld($, "_$languageListResponseSerializer", "$get$_$languageListResponseSerializer", () => new A._$LanguageListResponseSerializer()); _lazyOld($, "_$languageItemResponseSerializer", "$get$_$languageItemResponseSerializer", () => new A._$LanguageItemResponseSerializer()); _lazyOld($, "_$languageEntitySerializer", "$get$_$languageEntitySerializer", () => new A._$LanguageEntitySerializer()); _lazyOld($, "_$paymentTypeListResponseSerializer", "$get$_$paymentTypeListResponseSerializer", () => new A._$PaymentTypeListResponseSerializer()); _lazyOld($, "_$paymentTypeItemResponseSerializer", "$get$_$paymentTypeItemResponseSerializer", () => new A._$PaymentTypeItemResponseSerializer()); _lazyOld($, "_$paymentTypeEntitySerializer", "$get$_$paymentTypeEntitySerializer", () => new A._$PaymentTypeEntitySerializer()); _lazyOld($, "_$sizeListResponseSerializer", "$get$_$sizeListResponseSerializer", () => new A._$SizeListResponseSerializer()); _lazyOld($, "_$sizeItemResponseSerializer", "$get$_$sizeItemResponseSerializer", () => new A._$SizeItemResponseSerializer()); _lazyOld($, "_$sizeEntitySerializer", "$get$_$sizeEntitySerializer", () => new A._$SizeEntitySerializer()); _lazyOld($, "_$staticDataItemResponseSerializer", "$get$_$staticDataItemResponseSerializer", () => new A._$StaticDataItemResponseSerializer()); _lazyOld($, "_$staticDataEntitySerializer", "$get$_$staticDataEntitySerializer", () => new A._$StaticDataEntitySerializer()); _lazyOld($, "_$templateEntitySerializer", "$get$_$templateEntitySerializer", () => new A._$TemplateEntitySerializer()); _lazyOld($, "_$timezoneListResponseSerializer", "$get$_$timezoneListResponseSerializer", () => new A._$TimezoneListResponseSerializer()); _lazyOld($, "_$timezoneItemResponseSerializer", "$get$_$timezoneItemResponseSerializer", () => new A._$TimezoneItemResponseSerializer()); _lazyOld($, "_$timezoneEntitySerializer", "$get$_$timezoneEntitySerializer", () => new A._$TimezoneEntitySerializer()); _lazyOld($, "_$subscriptionListResponseSerializer", "$get$_$subscriptionListResponseSerializer", () => new A._$SubscriptionListResponseSerializer()); _lazyOld($, "_$subscriptionItemResponseSerializer", "$get$_$subscriptionItemResponseSerializer", () => new A._$SubscriptionItemResponseSerializer()); _lazyOld($, "_$subscriptionEntitySerializer", "$get$_$subscriptionEntitySerializer", () => new A._$SubscriptionEntitySerializer()); _lazyOld($, "_$webhookConfigurationEntitySerializer", "$get$_$webhookConfigurationEntitySerializer", () => new A._$WebhookConfigurationEntitySerializer()); _lazyOld($, "_$systemLogEntitySerializer", "$get$_$systemLogEntitySerializer", () => new A._$SystemLogEntitySerializer()); _lazyOld($, "_$taskListResponseSerializer", "$get$_$taskListResponseSerializer", () => new A._$TaskListResponseSerializer()); _lazyOld($, "_$taskItemResponseSerializer", "$get$_$taskItemResponseSerializer", () => new A._$TaskItemResponseSerializer()); _lazyOld($, "_$taskEntitySerializer", "$get$_$taskEntitySerializer", () => new A._$TaskEntitySerializer()); _lazyOld($, "_$taskStatusListResponseSerializer", "$get$_$taskStatusListResponseSerializer", () => new A._$TaskStatusListResponseSerializer()); _lazyOld($, "_$taskStatusItemResponseSerializer", "$get$_$taskStatusItemResponseSerializer", () => new A._$TaskStatusItemResponseSerializer()); _lazyOld($, "_$taskStatusEntitySerializer", "$get$_$taskStatusEntitySerializer", () => new A._$TaskStatusEntitySerializer()); _lazyOld($, "_$taxRateListResponseSerializer", "$get$_$taxRateListResponseSerializer", () => new A._$TaxRateListResponseSerializer()); _lazyOld($, "_$taxRateItemResponseSerializer", "$get$_$taxRateItemResponseSerializer", () => new A._$TaxRateItemResponseSerializer()); _lazyOld($, "_$taxRateEntitySerializer", "$get$_$taxRateEntitySerializer", () => new A._$TaxRateEntitySerializer()); _lazyOld($, "_$tokenListResponseSerializer", "$get$_$tokenListResponseSerializer", () => new A._$TokenListResponseSerializer()); _lazyOld($, "_$tokenItemResponseSerializer", "$get$_$tokenItemResponseSerializer", () => new A._$TokenItemResponseSerializer()); _lazyOld($, "_$tokenEntitySerializer", "$get$_$tokenEntitySerializer", () => new A._$TokenEntitySerializer()); _lazyOld($, "_$userListResponseSerializer", "$get$_$userListResponseSerializer", () => new A._$UserListResponseSerializer()); _lazyOld($, "_$userItemResponseSerializer", "$get$_$userItemResponseSerializer", () => new A._$UserItemResponseSerializer()); _lazyOld($, "_$userTwoFactorResponseSerializer", "$get$_$userTwoFactorResponseSerializer", () => new A._$UserTwoFactorResponseSerializer()); _lazyOld($, "_$userTwoFactorDataSerializer", "$get$_$userTwoFactorDataSerializer", () => new A._$UserTwoFactorDataSerializer()); _lazyOld($, "_$userCompanyItemResponseSerializer", "$get$_$userCompanyItemResponseSerializer", () => new A._$UserCompanyItemResponseSerializer()); _lazyOld($, "_$userEntitySerializer", "$get$_$userEntitySerializer", () => new A._$UserEntitySerializer()); _lazyOld($, "_$vendorListResponseSerializer", "$get$_$vendorListResponseSerializer", () => new A._$VendorListResponseSerializer()); _lazyOld($, "_$vendorItemResponseSerializer", "$get$_$vendorItemResponseSerializer", () => new A._$VendorItemResponseSerializer()); _lazyOld($, "_$vendorEntitySerializer", "$get$_$vendorEntitySerializer", () => new A._$VendorEntitySerializer()); _lazyOld($, "_$vendorContactEntitySerializer", "$get$_$vendorContactEntitySerializer", () => new A._$VendorContactEntitySerializer()); _lazyOld($, "_$webhookListResponseSerializer", "$get$_$webhookListResponseSerializer", () => new A._$WebhookListResponseSerializer()); _lazyOld($, "_$webhookItemResponseSerializer", "$get$_$webhookItemResponseSerializer", () => new A._$WebhookItemResponseSerializer()); _lazyOld($, "_$webhookEntitySerializer", "$get$_$webhookEntitySerializer", () => new A._$WebhookEntitySerializer()); _lazyOld($, "navigatorKey", "$get$navigatorKey", () => A.GlobalKey_GlobalKey(null, A.findType("NavigatorState*"))); _lazyOld($, "_persistUIDebouncer", "$get$_persistUIDebouncer", () => new A.PersistUIDebouncer()); _lazyOld($, "lastErrorReducer", "$get$lastErrorReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.lastErrorReducer_closure(), t1, A.findType("ClearLastError*")), t3 = A.TypedReducer$(new A.lastErrorReducer_closure0(), t1, A.findType("LoadClientsFailure*")), t4 = A.TypedReducer$(new A.lastErrorReducer_closure1(), t1, A.findType("LoadProductsFailure*")), t5 = A.TypedReducer$(new A.lastErrorReducer_closure2(), t1, A.findType("LoadInvoicesFailure*")), t6 = A.TypedReducer$(new A.lastErrorReducer_closure3(), t1, A.findType("LoadPaymentsFailure*")), t7 = A.TypedReducer$(new A.lastErrorReducer_closure4(), t1, A.findType("LoadQuotesFailure*")), t8 = A.TypedReducer$(new A.lastErrorReducer_closure5(), t1, A.findType("LoadProjectsFailure*")), t9 = A.TypedReducer$(new A.lastErrorReducer_closure6(), t1, A.findType("LoadTasksFailure*")), t10 = A.TypedReducer$(new A.lastErrorReducer_closure7(), t1, A.findType("LoadVendorsFailure*")), t11 = A.TypedReducer$(new A.lastErrorReducer_closure8(), t1, A.findType("LoadExpensesFailure*")), t12 = A.TypedReducer$(new A.lastErrorReducer_closure9(), t1, A.findType("LoadPurchaseOrdersFailure*")), t13 = A.TypedReducer$(new A.lastErrorReducer_closure10(), t1, A.findType("LoadRecurringExpensesFailure*")), t14 = A.TypedReducer$(new A.lastErrorReducer_closure11(), t1, A.findType("LoadSubscriptionsFailure*")), t15 = A.TypedReducer$(new A.lastErrorReducer_closure12(), t1, A.findType("LoadTaskStatusesFailure*")), t16 = A.TypedReducer$(new A.lastErrorReducer_closure13(), t1, A.findType("LoadRecurringInvoicesFailure*")), t17 = A.TypedReducer$(new A.lastErrorReducer_closure14(), t1, A.findType("LoadWebhooksFailure*")), t18 = A.TypedReducer$(new A.lastErrorReducer_closure15(), t1, A.findType("LoadTokensFailure*")), t19 = A.TypedReducer$(new A.lastErrorReducer_closure16(), t1, A.findType("LoadPaymentTermsFailure*")), t20 = A.TypedReducer$(new A.lastErrorReducer_closure17(), t1, A.findType("LoadDesignsFailure*")), t21 = A.TypedReducer$(new A.lastErrorReducer_closure18(), t1, A.findType("LoadCreditsFailure*")), t22 = A.TypedReducer$(new A.lastErrorReducer_closure19(), t1, A.findType("RefreshDataFailure*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call(), t22.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "dismissedNativeWarningReducer", "$get$dismissedNativeWarningReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.dismissedNativeWarningReducer_closure(), t1, A.findType("DismissNativeWarning*")), t3 = A.TypedReducer$(new A.dismissedNativeWarningReducer_closure0(), t1, A.findType("DismissNativeWarningPermanently*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "_$appStateSerializer", "$get$_$appStateSerializer", () => new A._$AppStateSerializer()); _lazyOld($, "loadingReducer", "$get$loadingReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(A.loading_reducer___setLoading$closure(), t1, A.findType("StartLoading*")), t3 = A.TypedReducer$(A.loading_reducer___setLoaded$closure(), t1, A.findType("StopLoading*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "savingReducer", "$get$savingReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(A.loading_reducer___setSaving$closure(), t1, A.findType("StartSaving*")), t3 = A.TypedReducer$(A.loading_reducer___setSaved$closure(), t1, A.findType("StopSaving*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "authReducer", "$get$authReducer", () => { var t1 = type$.legacy_AuthState, t2 = A.TypedReducer$(A.auth_reducer__userLoadUrlReducer$closure(), t1, A.findType("UserLoadUrl*")), t3 = A.TypedReducer$(A.auth_reducer__userLoginRequestReducer$closure(), t1, type$.legacy_UserLoginRequest), t4 = A.TypedReducer$(A.auth_reducer__oauthLoginRequestReducer$closure(), t1, type$.legacy_OAuthLoginRequest), t5 = A.TypedReducer$(A.auth_reducer__oauthSignUpRequestReducer$closure(), t1, type$.legacy_OAuthSignUpRequest), t6 = A.TypedReducer$(A.auth_reducer__userSignUpRequestReducer$closure(), t1, type$.legacy_UserSignUpRequest), t7 = A.TypedReducer$(A.auth_reducer__userLoginSuccessReducer$closure(), t1, type$.legacy_UserLoginSuccess), t8 = A.TypedReducer$(A.auth_reducer__userVerifiedPasswordReducer$closure(), t1, A.findType("UserVerifiedPassword*")), t9 = A.TypedReducer$(A.auth_reducer__userUnverifiedPasswordReducer$closure(), t1, A.findType("UserUnverifiedPassword*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "_$authStateSerializer", "$get$_$authStateSerializer", () => new A._$AuthStateSerializer()); _lazyOld($, "forceSelectedReducer", "$get$forceSelectedReducer22", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure175(), t1, type$.legacy_ViewClient), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure176(), t1, type$.legacy_ViewClientList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure177(), t1, A.findType("FilterClientsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure178(), t1, A.findType("FilterClients*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure179(), t1, A.findType("FilterClientsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure180(), t1, A.findType("FilterClientsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure181(), t1, A.findType("FilterClientsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure182(), t1, A.findType("FilterClientsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer", "$get$tabIndexReducer11", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure23(), t1, A.findType("UpdateClientTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure24(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer", "$get$saveCompleterReducer1", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.saveCompleterReducer_closure1(), t1, type$.legacy_EditClient); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer", "$get$cancelCompleterReducer1", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.cancelCompleterReducer_closure1(), t1, type$.legacy_EditClient); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "editingContactReducer", "$get$editingContactReducer", () => { var t1 = type$.legacy_ClientContactEntity, t2 = A.TypedReducer$(new A.editingContactReducer_closure(), t1, type$.legacy_EditClient), t3 = A.TypedReducer$(new A.editingContactReducer_closure0(), t1, A.findType("EditContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer", "$get$selectedIdReducer22", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure354(), t1, A.findType("ArchiveClientsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure355(), t1, A.findType("DeleteClientsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure356(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure357(), t1, type$.legacy_ViewClient), t6 = A.TypedReducer$(new A.selectedIdReducer_closure358(), t1, A.findType("AddClientSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure359(), t1, type$.legacy_ShowPdfClient), t8 = A.TypedReducer$(new A.selectedIdReducer_closure360(), t1, type$.legacy_SelectCompany), t9 = A.TypedReducer$(new A.selectedIdReducer_closure361(), t1, type$.legacy_ClearEntityFilter), t10 = A.TypedReducer$(new A.selectedIdReducer_closure362(), t1, A.findType("SortClients*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure363(), t1, A.findType("FilterClients*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure364(), t1, A.findType("FilterClientsByState*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure365(), t1, A.findType("FilterClientsByCustom1*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure366(), t1, A.findType("FilterClientsByCustom2*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure367(), t1, A.findType("FilterClientsByCustom3*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure368(), t1, A.findType("FilterClientsByCustom4*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure369(), t1, type$.legacy_ClearEntitySelection), t18 = A.TypedReducer$(new A.selectedIdReducer_closure370(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer", "$get$editingReducer22", () => { var t1 = type$.legacy_ClientEntity, t2 = A.TypedReducer$(new A.editingReducer_closure125(), t1, A.findType("SaveClientSuccess*")), t3 = A.TypedReducer$(new A.editingReducer_closure126(), t1, A.findType("AddClientSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure127(), t1, A.findType("RestoreClientSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure128(), t1, A.findType("ArchiveClientsSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure129(), t1, A.findType("DeleteClientsSuccess*")), t7 = A.TypedReducer$(new A.editingReducer_closure130(), t1, type$.legacy_EditClient), t8 = A.TypedReducer$(new A.editingReducer_closure131(), t1, A.findType("UpdateClient*")), t9 = A.TypedReducer$(new A.editingReducer_closure132(), t1, A.findType("AddContact*")), t10 = A.TypedReducer$(new A.editingReducer_closure133(), t1, A.findType("DeleteContact*")), t11 = A.TypedReducer$(new A.editingReducer_closure134(), t1, A.findType("UpdateContact*")), t12 = A.TypedReducer$(new A.editingReducer_closure135(), t1, type$.legacy_ViewClient), t13 = A.TypedReducer$(new A.editingReducer_closure136(), t1, type$.legacy_ViewClientList), t14 = A.TypedReducer$(new A.editingReducer_closure137(), t1, type$.legacy_SelectCompany), t15 = A.TypedReducer$(new A.editingReducer_closure138(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "clientListReducer", "$get$clientListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.client_reducer___sortClients$closure(), t1, A.findType("SortClients*")), t3 = A.TypedReducer$(A.client_reducer___filterClientsByState$closure(), t1, A.findType("FilterClientsByState*")), t4 = A.TypedReducer$(A.client_reducer___filterClients$closure(), t1, A.findType("FilterClients*")), t5 = A.TypedReducer$(A.client_reducer___filterClientsByCustom1$closure(), t1, A.findType("FilterClientsByCustom1*")), t6 = A.TypedReducer$(A.client_reducer___filterClientsByCustom2$closure(), t1, A.findType("FilterClientsByCustom2*")), t7 = A.TypedReducer$(A.client_reducer___filterClientsByCustom3$closure(), t1, A.findType("FilterClientsByCustom3*")), t8 = A.TypedReducer$(A.client_reducer___filterClientsByCustom4$closure(), t1, A.findType("FilterClientsByCustom4*")), t9 = A.TypedReducer$(A.client_reducer___startListMultiselect$closure(), t1, A.findType("StartClientMultiselect*")), t10 = A.TypedReducer$(A.client_reducer___addToListMultiselect$closure(), t1, A.findType("AddToClientMultiselect*")), t11 = A.TypedReducer$(A.client_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromClientMultiselect*")), t12 = A.TypedReducer$(A.client_reducer___clearListMultiselect$closure(), t1, A.findType("ClearClientMultiselect*")), t13 = A.TypedReducer$(A.client_reducer___viewClientList$closure(), t1, type$.legacy_ViewClientList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "clientsReducer", "$get$clientsReducer", () => { var t1 = type$.legacy_ClientState, t2 = A.TypedReducer$(A.client_reducer___updateClient$closure(), t1, A.findType("SaveClientSuccess*")), t3 = A.TypedReducer$(A.client_reducer___addClient$closure(), t1, A.findType("AddClientSuccess*")), t4 = A.TypedReducer$(A.client_reducer___setLoadedClients$closure(), t1, A.findType("LoadClientsSuccess*")), t5 = A.TypedReducer$(A.client_reducer___setLoadedClient$closure(), t1, A.findType("LoadClientSuccess*")), t6 = A.TypedReducer$(A.client_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.client_reducer___archiveClientSuccess$closure(), t1, A.findType("ArchiveClientsSuccess*")), t8 = A.TypedReducer$(A.client_reducer___deleteClientSuccess$closure(), t1, A.findType("DeleteClientsSuccess*")), t9 = A.TypedReducer$(A.client_reducer___restoreClientSuccess$closure(), t1, A.findType("RestoreClientSuccess*")), t10 = A.TypedReducer$(A.client_reducer___mergeClientSuccess$closure(), t1, A.findType("MergeClientsSuccess*")), t11 = A.TypedReducer$(A.client_reducer___purgeClientSuccess$closure(), t1, A.findType("PurgeClientSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownClientList", "$get$memoizedDropdownClientList", () => A.memo4(new A.memoizedDropdownClientList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedClientStatsForUser", "$get$memoizedClientStatsForUser", () => A.memo2(new A.memoizedClientStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedFilteredClientList", "$get$memoizedFilteredClientList", () => A.memo7(new A.memoizedFilteredClientList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "_$clientStateSerializer", "$get$_$clientStateSerializer", () => new A._$ClientStateSerializer()); _lazyOld($, "_$clientUIStateSerializer", "$get$_$clientUIStateSerializer", () => new A._$ClientUIStateSerializer()); _lazyOld($, "userCompanyEntityReducer", "$get$userCompanyEntityReducer", () => { var t1 = type$.legacy_UserCompanyEntity, t2 = A.TypedReducer$(A.company_reducer__loadCompanySuccessReducer$closure(), t1, type$.legacy_LoadCompanySuccess), t3 = A.TypedReducer$(A.company_reducer__saveCompanySuccessReducer$closure(), t1, A.findType("SaveCompanySuccess*")), t4 = A.TypedReducer$(new A.userCompanyEntityReducer_closure(), t1, A.findType("UpdateReportSettings*")), t5 = A.TypedReducer$(new A.userCompanyEntityReducer_closure0(), t1, A.findType("SaveAuthUserSuccess*")), t6 = A.TypedReducer$(new A.userCompanyEntityReducer_closure1(), t1, A.findType("ConnecOAuthUserSuccess*")), t7 = A.TypedReducer$(new A.userCompanyEntityReducer_closure2(), t1, A.findType("ConnecGmailUserSuccess*")), t8 = A.TypedReducer$(new A.userCompanyEntityReducer_closure3(), t1, A.findType("DisableTwoFactorSuccess*")), t9 = A.TypedReducer$(new A.userCompanyEntityReducer_closure4(), t1, A.findType("SaveUserSettingsSuccess*")), t10 = A.TypedReducer$(new A.userCompanyEntityReducer_closure5(), t1, A.findType("UpdateCompanyLanguage*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "lastUpdatedReducer", "$get$lastUpdatedReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.lastUpdatedReducer_closure(), t1, type$.legacy_LoadCompanySuccess), t3 = A.TypedReducer$(new A.lastUpdatedReducer_closure0(), t1, A.findType("LoadExpensesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "memoizedDropdownExpenseCategoriesList", "$get$memoizedDropdownExpenseCategoriesList", () => A.memo2(new A.memoizedDropdownExpenseCategoriesList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedHasMultipleCurrencies", "$get$memoizedHasMultipleCurrencies", () => A.memo3(new A.memoizedHasMultipleCurrencies_closure(), type$.legacy_CompanyEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_bool)); _lazyOld($, "memoizedGetCurrencyIds", "$get$memoizedGetCurrencyIds", () => A.memo3(new A.memoizedGetCurrencyIds_closure(), type$.legacy_CompanyEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredSelector", "$get$memoizedFilteredSelector", () => A.memo2(new A.memoizedFilteredSelector_closure(), type$.legacy_String, type$.legacy_UserCompanyState, A.findType("List*"))); _lazyOld($, "_$userCompanyStateSerializer", "$get$_$userCompanyStateSerializer", () => new A._$UserCompanyStateSerializer()); _lazyOld($, "_$settingsUIStateSerializer", "$get$_$settingsUIStateSerializer", () => new A._$SettingsUIStateSerializer()); _lazyOld($, "forceSelectedReducer0", "$get$forceSelectedReducer7", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure59(), t1, type$.legacy_ViewCompanyGateway), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure60(), t1, type$.legacy_ViewCompanyGatewayList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure61(), t1, A.findType("FilterCompanyGatewaysByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure62(), t1, A.findType("FilterCompanyGateways*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure63(), t1, A.findType("FilterCompanyGatewaysByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure64(), t1, A.findType("FilterCompanyGatewaysByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure65(), t1, A.findType("FilterCompanyGatewaysByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure66(), t1, A.findType("FilterCompanyGatewaysByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer0", "$get$selectedIdReducer7", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure119(), t1, A.findType("ArchiveCompanyGatewaySuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure120(), t1, A.findType("DeleteCompanyGatewaySuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure121(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure122(), t1, type$.legacy_ViewCompanyGateway), t6 = A.TypedReducer$(new A.selectedIdReducer_closure123(), t1, A.findType("AddCompanyGatewaySuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure124(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure125(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure126(), t1, A.findType("SortCompanyGateways*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure127(), t1, A.findType("FilterCompanyGateways*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure128(), t1, A.findType("FilterCompanyGatewaysByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure129(), t1, A.findType("FilterCompanyGatewaysByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure130(), t1, A.findType("FilterCompanyGatewaysByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure131(), t1, A.findType("FilterCompanyGatewaysByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure132(), t1, A.findType("FilterCompanyGatewaysByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure133(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer0", "$get$editingReducer7", () => { var t1 = type$.legacy_CompanyGatewayEntity, t2 = A.TypedReducer$(A.company_gateway_reducer___updateEditing$closure(), t1, A.findType("SaveCompanyGatewaySuccess*")), t3 = A.TypedReducer$(A.company_gateway_reducer___updateEditing$closure(), t1, A.findType("AddCompanyGatewaySuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure37(), t1, A.findType("RestoreCompanyGatewaySuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure38(), t1, A.findType("ArchiveCompanyGatewaySuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure39(), t1, A.findType("DeleteCompanyGatewaySuccess*")), t7 = A.TypedReducer$(A.company_gateway_reducer___updateEditing$closure(), t1, type$.legacy_EditCompanyGateway), t8 = A.TypedReducer$(new A.editingReducer_closure40(), t1, A.findType("UpdateCompanyGateway*")), t9 = A.TypedReducer$(A.company_gateway_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "companyGatewayListReducer", "$get$companyGatewayListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.company_gateway_reducer___sortCompanyGateways$closure(), t1, A.findType("SortCompanyGateways*")), t3 = A.TypedReducer$(A.company_gateway_reducer___filterCompanyGatewaysByState$closure(), t1, A.findType("FilterCompanyGatewaysByState*")), t4 = A.TypedReducer$(A.company_gateway_reducer___filterCompanyGateways$closure(), t1, A.findType("FilterCompanyGateways*")), t5 = A.TypedReducer$(A.company_gateway_reducer___filterCompanyGatewaysByCustom1$closure(), t1, A.findType("FilterCompanyGatewaysByCustom1*")), t6 = A.TypedReducer$(A.company_gateway_reducer___filterCompanyGatewaysByCustom2$closure(), t1, A.findType("FilterCompanyGatewaysByCustom2*")), t7 = A.TypedReducer$(A.company_gateway_reducer___startListMultiselect$closure(), t1, A.findType("StartCompanyGatewayMultiselect*")), t8 = A.TypedReducer$(A.company_gateway_reducer___addToListMultiselect$closure(), t1, A.findType("AddToCompanyGatewayMultiselect*")), t9 = A.TypedReducer$(A.company_gateway_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromCompanyGatewayMultiselect*")), t10 = A.TypedReducer$(A.company_gateway_reducer___clearListMultiselect$closure(), t1, A.findType("ClearCompanyGatewayMultiselect*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "companyGatewaysReducer", "$get$companyGatewaysReducer", () => { var t1 = type$.legacy_CompanyGatewayState, t2 = A.TypedReducer$(A.company_gateway_reducer___updateCompanyGateway$closure(), t1, A.findType("SaveCompanyGatewaySuccess*")), t3 = A.TypedReducer$(A.company_gateway_reducer___addCompanyGateway$closure(), t1, A.findType("AddCompanyGatewaySuccess*")), t4 = A.TypedReducer$(A.company_gateway_reducer___setLoadedCompanyGateways$closure(), t1, A.findType("LoadCompanyGatewaysSuccess*")), t5 = A.TypedReducer$(A.company_gateway_reducer___setLoadedCompanyGateway$closure(), t1, A.findType("LoadCompanyGatewaySuccess*")), t6 = A.TypedReducer$(A.company_gateway_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.company_gateway_reducer___archiveCompanyGatewaySuccess$closure(), t1, A.findType("ArchiveCompanyGatewaySuccess*")), t8 = A.TypedReducer$(A.company_gateway_reducer___deleteCompanyGatewaySuccess$closure(), t1, A.findType("DeleteCompanyGatewaySuccess*")), t9 = A.TypedReducer$(A.company_gateway_reducer___restoreCompanyGatewaySuccess$closure(), t1, A.findType("RestoreCompanyGatewaySuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredCompanyGatewayList", "$get$memoizedFilteredCompanyGatewayList", () => A.memo5(new A.memoizedFilteredCompanyGatewayList_closure(), A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_String, type$.legacy_bool, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedCalculateCompanyGatewayProcessed", "$get$memoizedCalculateCompanyGatewayProcessed", () => A.memo2(new A.memoizedCalculateCompanyGatewayProcessed_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_double)); _lazyOld($, "memoizedClientStatsForCompanyGateway", "$get$memoizedClientStatsForCompanyGateway", () => A.memo2(new A.memoizedClientStatsForCompanyGateway_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedPaymentStatsForCompanyGateway", "$get$memoizedPaymentStatsForCompanyGateway", () => A.memo2(new A.memoizedPaymentStatsForCompanyGateway_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_EntityStats)); _lazyOld($, "_$companyGatewayStateSerializer", "$get$_$companyGatewayStateSerializer", () => new A._$CompanyGatewayStateSerializer()); _lazyOld($, "_$companyGatewayUIStateSerializer", "$get$_$companyGatewayUIStateSerializer", () => new A._$CompanyGatewayUIStateSerializer()); _lazyOld($, "forceSelectedReducer1", "$get$forceSelectedReducer10", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure79(), t1, type$.legacy_ViewCredit), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure80(), t1, type$.legacy_ViewCreditList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure81(), t1, A.findType("FilterCreditsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure82(), t1, A.findType("FilterCredits*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure83(), t1, A.findType("FilterCreditsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure84(), t1, A.findType("FilterCreditsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure85(), t1, A.findType("FilterCreditsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure86(), t1, A.findType("FilterCreditsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer0", "$get$tabIndexReducer5", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure11(), t1, A.findType("UpdateCreditTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure12(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer", "$get$historyActivityIdReducer0", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.historyActivityIdReducer_closure0(), t1, type$.legacy_ShowPdfCredit); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemReducer", "$get$editingItemReducer0", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingItemReducer_closure1(), t1, type$.legacy_EditCredit), t3 = A.TypedReducer$(new A.editingItemReducer_closure2(), t1, A.findType("EditCreditItem*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer1", "$get$selectedIdReducer10", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure160(), t1, A.findType("ArchiveCreditsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure161(), t1, A.findType("DeleteCreditsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure162(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure163(), t1, type$.legacy_ViewCredit), t6 = A.TypedReducer$(new A.selectedIdReducer_closure164(), t1, A.findType("AddCreditSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure165(), t1, type$.legacy_ShowEmailCredit), t8 = A.TypedReducer$(new A.selectedIdReducer_closure166(), t1, type$.legacy_ShowPdfCredit), t9 = A.TypedReducer$(new A.selectedIdReducer_closure167(), t1, type$.legacy_SelectCompany), t10 = A.TypedReducer$(new A.selectedIdReducer_closure168(), t1, type$.legacy_ClearEntityFilter), t11 = A.TypedReducer$(new A.selectedIdReducer_closure169(), t1, A.findType("SortCredits*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure170(), t1, A.findType("FilterCredits*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure171(), t1, A.findType("FilterCreditsByState*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure172(), t1, A.findType("FilterCreditsByStatus*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure173(), t1, A.findType("FilterCreditsByCustom1*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure174(), t1, A.findType("FilterCreditsByCustom2*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure175(), t1, A.findType("FilterCreditsByCustom3*")), t18 = A.TypedReducer$(new A.selectedIdReducer_closure176(), t1, A.findType("FilterCreditsByCustom4*")), t19 = A.TypedReducer$(new A.selectedIdReducer_closure177(), t1, type$.legacy_ClearEntitySelection), t20 = A.TypedReducer$(new A.selectedIdReducer_closure178(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer1", "$get$editingReducer10", () => { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = A.TypedReducer$(A.credit_reducer___updateEditing$closure(), t1, A.findType("SaveCreditSuccess*")), t3 = A.TypedReducer$(A.credit_reducer___updateEditing$closure(), t1, A.findType("AddCreditSuccess*")), t4 = A.TypedReducer$(A.credit_reducer___updateEditing$closure(), t1, type$.legacy_EditCredit), t5 = A.TypedReducer$(new A.editingReducer_closure49(), t1, A.findType("UpdateCredit*")), t6 = A.findType("AddCreditItem*"), t7 = A.TypedReducer$(new A.editingReducer_closure50(), t1, t6), t8 = A.TypedReducer$(new A.editingReducer_closure51(), t1, A.findType("MoveCreditItem*")), t9 = A.findType("DeleteCreditItem*"), t10 = A.TypedReducer$(new A.editingReducer_closure52(), t1, t9), t11 = A.findType("UpdateCreditItem*"), t12 = A.TypedReducer$(new A.editingReducer_closure53(), t1, t11), t13 = A.TypedReducer$(new A.editingReducer_closure54(), t1, A.findType("UpdateCreditClient*")), t14 = A.TypedReducer$(new A.editingReducer_closure55(), t1, A.findType("RestoreCreditsSuccess*")), t15 = A.TypedReducer$(new A.editingReducer_closure56(), t1, A.findType("ArchiveCreditsSuccess*")), t16 = A.TypedReducer$(new A.editingReducer_closure57(), t1, A.findType("DeleteCreditsSuccess*")); t6 = A.TypedReducer$(A.credit_reducer___addCreditItem$closure(), t1, t6); t17 = A.TypedReducer$(A.credit_reducer___addCreditItems$closure(), t1, A.findType("AddCreditItems*")); t9 = A.TypedReducer$(A.credit_reducer___removeCreditItem$closure(), t1, t9); t11 = A.TypedReducer$(A.credit_reducer___updateCreditItem$closure(), t1, t11); t18 = A.TypedReducer$(A.credit_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = A.TypedReducer$(new A.editingReducer_closure58(), t1, A.findType("AddCreditContact*")); t20 = A.TypedReducer$(new A.editingReducer_closure59(), t1, A.findType("RemoveCreditContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "creditListReducer", "$get$creditListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.credit_reducer___sortCredits$closure(), t1, A.findType("SortCredits*")), t3 = A.TypedReducer$(A.credit_reducer___filterCreditsByState$closure(), t1, A.findType("FilterCreditsByState*")), t4 = A.TypedReducer$(A.credit_reducer___filterCreditsByStatus$closure(), t1, A.findType("FilterCreditsByStatus*")), t5 = A.TypedReducer$(A.credit_reducer___filterCredits$closure(), t1, A.findType("FilterCredits*")), t6 = A.TypedReducer$(A.credit_reducer___filterCreditsByCustom1$closure(), t1, A.findType("FilterCreditsByCustom1*")), t7 = A.TypedReducer$(A.credit_reducer___filterCreditsByCustom2$closure(), t1, A.findType("FilterCreditsByCustom2*")), t8 = A.TypedReducer$(A.credit_reducer___filterCreditsByCustom3$closure(), t1, A.findType("FilterCreditsByCustom3*")), t9 = A.TypedReducer$(A.credit_reducer___filterCreditsByCustom4$closure(), t1, A.findType("FilterCreditsByCustom4*")), t10 = A.TypedReducer$(A.credit_reducer___startListMultiselect$closure(), t1, A.findType("StartCreditMultiselect*")), t11 = A.TypedReducer$(A.credit_reducer___addToListMultiselect$closure(), t1, A.findType("AddToCreditMultiselect*")), t12 = A.TypedReducer$(A.credit_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromCreditMultiselect*")), t13 = A.TypedReducer$(A.credit_reducer___clearListMultiselect$closure(), t1, A.findType("ClearCreditMultiselect*")), t14 = A.TypedReducer$(A.credit_reducer___viewCreditList$closure(), t1, type$.legacy_ViewCreditList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "creditsReducer", "$get$creditsReducer", () => { var t1 = type$.legacy_CreditState, t2 = A.TypedReducer$(A.credit_reducer___updateCredit$closure(), t1, A.findType("SaveCreditSuccess*")), t3 = A.TypedReducer$(A.credit_reducer___addCredit$closure(), t1, A.findType("AddCreditSuccess*")), t4 = A.TypedReducer$(A.credit_reducer___setLoadedCredits$closure(), t1, A.findType("LoadCreditsSuccess*")), t5 = A.TypedReducer$(A.credit_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.credit_reducer___updateCredit$closure(), t1, A.findType("LoadCreditSuccess*")), t7 = A.TypedReducer$(A.credit_reducer___markSentCreditSuccess$closure(), t1, A.findType("MarkSentCreditSuccess*")), t8 = A.TypedReducer$(A.credit_reducer___archiveCreditSuccess$closure(), t1, A.findType("ArchiveCreditsSuccess*")), t9 = A.TypedReducer$(A.credit_reducer___deleteCreditSuccess$closure(), t1, A.findType("DeleteCreditsSuccess*")), t10 = A.TypedReducer$(A.credit_reducer___restoreCreditSuccess$closure(), t1, A.findType("RestoreCreditsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownCreditList", "$get$memoizedDropdownCreditList", () => { var t1 = type$.legacy_List_legacy_String; return A.memo7(new A.memoizedDropdownCreditList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, t1, t1); }); _lazyOld($, "memoizedFilteredCreditList", "$get$memoizedFilteredCreditList", () => A.memo7(new A.memoizedFilteredCreditList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedCreditStatsForDesign", "$get$memoizedCreditStatsForDesign", () => A.memo2(new A.memoizedCreditStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedCreditStatsForClient", "$get$memoizedCreditStatsForClient", () => A.memo2(new A.memoizedCreditStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedCreditStatsForUser", "$get$memoizedCreditStatsForUser", () => A.memo2(new A.memoizedCreditStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$creditStateSerializer", "$get$_$creditStateSerializer", () => new A._$CreditStateSerializer()); _lazyOld($, "_$creditUIStateSerializer", "$get$_$creditUIStateSerializer", () => new A._$CreditUIStateSerializer()); _lazyOld($, "selectedEntitiesReducer", "$get$selectedEntitiesReducer", () => { var t1 = A.findType("BuiltMap*>*"), t2 = A.TypedReducer$(new A.selectedEntitiesReducer_closure(), t1, A.findType("UpdateDashboardSelection*")), t3 = A.TypedReducer$(new A.selectedEntitiesReducer_closure0(), t1, type$.legacy_SelectCompany); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], A.findType("JSArray*>*(BuiltMap*>*,@)*>")), t1); }); _lazyOld($, "selectedEntityTypeReducer", "$get$selectedEntityTypeReducer", () => { var t1 = type$.legacy_EntityType, t2 = A.TypedReducer$(new A.selectedEntityTypeReducer_closure(), t1, A.findType("UpdateDashboardEntityType*")); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "showSidebarReducer", "$get$showSidebarReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.showSidebarReducer_closure(), t1, A.findType("UpdateDashboardSidebar*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "memoizedChartInvoices", "$get$memoizedChartInvoices", () => A.memo5(new A.memoizedChartInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedPreviousChartInvoices", "$get$memoizedPreviousChartInvoices", () => A.memo5(new A.memoizedPreviousChartInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedChartQuotes", "$get$memoizedChartQuotes", () => A.memo5(new A.memoizedChartQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedPreviousChartQuotes", "$get$memoizedPreviousChartQuotes", () => A.memo5(new A.memoizedPreviousChartQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedChartPayments", "$get$memoizedChartPayments", () => A.memo6(new A.memoizedChartPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedPreviousChartPayments", "$get$memoizedPreviousChartPayments", () => A.memo6(new A.memoizedPreviousChartPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedChartTasks", "$get$memoizedChartTasks", () => A.memo8(new A.memoizedChartTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedPreviousChartTasks", "$get$memoizedPreviousChartTasks", () => A.memo8(new A.memoizedPreviousChartTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedChartExpenses", "$get$memoizedChartExpenses", () => A.memo5(new A.memoizedChartExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedPreviousChartExpenses", "$get$memoizedPreviousChartExpenses", () => A.memo5(new A.memoizedPreviousChartExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_List_legacy_ChartDataGroup)); _lazyOld($, "memoizedRunningTasks", "$get$memoizedRunningTasks0", () => A.memo2(new A.memoizedRunningTasks_closure0(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_String, type$.legacy_List_legacy_TaskEntity)); _lazyOld($, "memoizedUpcomingInvoices", "$get$memoizedUpcomingInvoices", () => A.memo2(new A.memoizedUpcomingInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity)); _lazyOld($, "memoizedPastDueInvoices", "$get$memoizedPastDueInvoices", () => A.memo2(new A.memoizedPastDueInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity)); _lazyOld($, "memoizedRecentPayments", "$get$memoizedRecentPayments", () => A.memo2(new A.memoizedRecentPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_PaymentEntity)); _lazyOld($, "memoizedUpcomingQuotes", "$get$memoizedUpcomingQuotes", () => A.memo2(new A.memoizedUpcomingQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity)); _lazyOld($, "memoizedExpiredQuotes", "$get$memoizedExpiredQuotes", () => A.memo2(new A.memoizedExpiredQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity)); _lazyOld($, "memoizedRunningTasks0", "$get$memoizedRunningTasks", () => A.memo2(new A.memoizedRunningTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_TaskEntity)); _lazyOld($, "memoizedRecentTasks", "$get$memoizedRecentTasks", () => A.memo2(new A.memoizedRecentTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_TaskEntity)); _lazyOld($, "memoizedRecentExpenses", "$get$memoizedRecentExpenses", () => A.memo2(new A.memoizedRecentExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ExpenseEntity)); _lazyOld($, "_$dashboardUIStateSerializer", "$get$_$dashboardUIStateSerializer", () => new A._$DashboardUIStateSerializer()); _lazyOld($, "_$dashboardUISettingsSerializer", "$get$_$dashboardUISettingsSerializer", () => new A._$DashboardUISettingsSerializer()); _lazyOld($, "forceSelectedReducer2", "$get$forceSelectedReducer11", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure87(), t1, type$.legacy_ViewDesign), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure88(), t1, type$.legacy_ViewDesignList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure89(), t1, A.findType("FilterDesignsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure90(), t1, A.findType("FilterDesigns*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure91(), t1, A.findType("FilterDesignsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure92(), t1, A.findType("FilterDesignsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure93(), t1, A.findType("FilterDesignsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure94(), t1, A.findType("FilterDesignsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer2", "$get$selectedIdReducer11", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure179(), t1, A.findType("ArchiveDesignsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure180(), t1, A.findType("DeleteDesignsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure181(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure182(), t1, type$.legacy_ViewDesign), t6 = A.TypedReducer$(new A.selectedIdReducer_closure183(), t1, A.findType("AddDesignSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure184(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure185(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure186(), t1, A.findType("SortDesigns*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure187(), t1, A.findType("FilterDesigns*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure188(), t1, A.findType("FilterDesignsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure189(), t1, A.findType("FilterDesignsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure190(), t1, A.findType("FilterDesignsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure191(), t1, A.findType("FilterDesignsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure192(), t1, A.findType("FilterDesignsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer2", "$get$editingReducer11", () => { var t1 = type$.legacy_DesignEntity, t2 = A.TypedReducer$(A.design_reducer___updateEditing$closure(), t1, A.findType("SaveDesignSuccess*")), t3 = A.TypedReducer$(A.design_reducer___updateEditing$closure(), t1, A.findType("AddDesignSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure60(), t1, A.findType("RestoreDesignsSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure61(), t1, A.findType("ArchiveDesignsSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure62(), t1, A.findType("DeleteDesignsSuccess*")), t7 = A.TypedReducer$(A.design_reducer___updateEditing$closure(), t1, type$.legacy_EditDesign), t8 = A.TypedReducer$(new A.editingReducer_closure63(), t1, A.findType("UpdateDesign*")), t9 = A.TypedReducer$(A.design_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "designListReducer", "$get$designListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.design_reducer___sortDesigns$closure(), t1, A.findType("SortDesigns*")), t3 = A.TypedReducer$(A.design_reducer___filterDesignsByState$closure(), t1, A.findType("FilterDesignsByState*")), t4 = A.TypedReducer$(A.design_reducer___filterDesigns$closure(), t1, A.findType("FilterDesigns*")), t5 = A.TypedReducer$(A.design_reducer___filterDesignsByCustom1$closure(), t1, A.findType("FilterDesignsByCustom1*")), t6 = A.TypedReducer$(A.design_reducer___filterDesignsByCustom2$closure(), t1, A.findType("FilterDesignsByCustom2*")), t7 = A.TypedReducer$(A.design_reducer___startListMultiselect$closure(), t1, A.findType("StartDesignMultiselect*")), t8 = A.TypedReducer$(A.design_reducer___addToListMultiselect$closure(), t1, A.findType("AddToDesignMultiselect*")), t9 = A.TypedReducer$(A.design_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromDesignMultiselect*")), t10 = A.TypedReducer$(A.design_reducer___clearListMultiselect$closure(), t1, A.findType("ClearDesignMultiselect*")), t11 = A.TypedReducer$(A.design_reducer___viewDesignList$closure(), t1, type$.legacy_ViewDesignList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "designsReducer", "$get$designsReducer", () => { var t1 = type$.legacy_DesignState, t2 = A.TypedReducer$(A.design_reducer___updateDesign$closure(), t1, A.findType("SaveDesignSuccess*")), t3 = A.TypedReducer$(A.design_reducer___addDesign$closure(), t1, A.findType("AddDesignSuccess*")), t4 = A.TypedReducer$(A.design_reducer___setLoadedDesigns$closure(), t1, A.findType("LoadDesignsSuccess*")), t5 = A.TypedReducer$(A.design_reducer___setLoadedDesign$closure(), t1, A.findType("LoadDesignSuccess*")), t6 = A.TypedReducer$(A.design_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.design_reducer___archiveDesignSuccess$closure(), t1, A.findType("ArchiveDesignsSuccess*")), t8 = A.TypedReducer$(A.design_reducer___deleteDesignSuccess$closure(), t1, A.findType("DeleteDesignsSuccess*")), t9 = A.TypedReducer$(A.design_reducer___restoreDesignSuccess$closure(), t1, A.findType("RestoreDesignsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredDesignList", "$get$memoizedFilteredDesignList", () => A.memo3(new A.memoizedFilteredDesignList_closure(), A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$designStateSerializer", "$get$_$designStateSerializer", () => new A._$DesignStateSerializer()); _lazyOld($, "_$designUIStateSerializer", "$get$_$designUIStateSerializer", () => new A._$DesignUIStateSerializer()); _lazyOld($, "forceSelectedReducer3", "$get$forceSelectedReducer5", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure47(), t1, type$.legacy_ViewDocument), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure48(), t1, type$.legacy_ViewDocumentList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure49(), t1, A.findType("FilterDocumentsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure50(), t1, A.findType("FilterDocuments*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure51(), t1, A.findType("FilterDocumentsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure52(), t1, A.findType("FilterDocumentsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure53(), t1, A.findType("FilterDocumentsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure54(), t1, A.findType("FilterDocumentsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer3", "$get$selectedIdReducer5", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure94(), t1, A.findType("ArchiveDocumentSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure95(), t1, A.findType("DeleteDocumentSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure96(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure97(), t1, type$.legacy_ViewDocument), t6 = A.TypedReducer$(new A.selectedIdReducer_closure98(), t1, type$.legacy_SelectCompany), t7 = A.TypedReducer$(new A.selectedIdReducer_closure99(), t1, type$.legacy_ClearEntityFilter), t8 = A.TypedReducer$(new A.selectedIdReducer_closure100(), t1, A.findType("SortDocuments*")), t9 = A.TypedReducer$(new A.selectedIdReducer_closure101(), t1, A.findType("FilterDocuments*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure102(), t1, A.findType("FilterDocumentsByState*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure103(), t1, A.findType("FilterDocumentsByCustom1*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure104(), t1, A.findType("FilterDocumentsByCustom2*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure105(), t1, A.findType("FilterDocumentsByCustom3*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure106(), t1, A.findType("FilterDocumentsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer3", "$get$editingReducer5", () => { var t1 = type$.legacy_DocumentEntity, t2 = A.TypedReducer$(A.document_reducer___updateEditing$closure(), t1, A.findType("SaveDocumentSuccess*")), t3 = A.TypedReducer$(A.document_reducer___updateEditing$closure(), t1, A.findType("RestoreDocumentSuccess*")), t4 = A.TypedReducer$(A.document_reducer___updateEditing$closure(), t1, A.findType("ArchiveDocumentSuccess*")), t5 = A.TypedReducer$(A.document_reducer___updateEditing$closure(), t1, type$.legacy_EditDocument), t6 = A.TypedReducer$(new A.editingReducer_closure32(), t1, A.findType("UpdateDocument*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "documentListReducer", "$get$documentListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.document_reducer___sortDocuments$closure(), t1, A.findType("SortDocuments*")), t3 = A.TypedReducer$(A.document_reducer___filterDocumentsByState$closure(), t1, A.findType("FilterDocumentsByState*")), t4 = A.TypedReducer$(A.document_reducer___filterDocuments$closure(), t1, A.findType("FilterDocuments*")), t5 = A.TypedReducer$(A.document_reducer___filterDocumentsByCustom1$closure(), t1, A.findType("FilterDocumentsByCustom1*")), t6 = A.TypedReducer$(A.document_reducer___filterDocumentsByCustom2$closure(), t1, A.findType("FilterDocumentsByCustom2*")), t7 = A.TypedReducer$(A.document_reducer___startListMultiselect$closure(), t1, A.findType("StartDocumentMultiselect*")), t8 = A.TypedReducer$(A.document_reducer___addToListMultiselect$closure(), t1, A.findType("AddToDocumentMultiselect*")), t9 = A.TypedReducer$(A.document_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromDocumentMultiselect*")), t10 = A.TypedReducer$(A.document_reducer___clearListMultiselect$closure(), t1, A.findType("ClearDocumentMultiselect*")), t11 = A.TypedReducer$(A.document_reducer___viewDocumentList$closure(), t1, type$.legacy_ViewDocumentList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "documentsReducer", "$get$documentsReducer", () => { var t1 = type$.legacy_DocumentState, t2 = A.TypedReducer$(A.document_reducer___updateDocument$closure(), t1, A.findType("SaveDocumentSuccess*")), t3 = A.TypedReducer$(A.document_reducer___setLoadedDocuments$closure(), t1, A.findType("LoadDocumentsSuccess*")), t4 = A.TypedReducer$(A.document_reducer___setLoadedDocument$closure(), t1, A.findType("LoadDocumentSuccess*")), t5 = A.TypedReducer$(A.document_reducer___archiveDocumentSuccess$closure(), t1, A.findType("ArchiveDocumentSuccess*")), t6 = A.TypedReducer$(A.document_reducer___deleteDocumentSuccess$closure(), t1, A.findType("DeleteDocumentSuccess*")), t7 = A.TypedReducer$(A.document_reducer___restoreDocumentSuccess$closure(), t1, A.findType("RestoreDocumentSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredDocumentList", "$get$memoizedFilteredDocumentList", () => A.memo3(new A.memoizedFilteredDocumentList_closure(), A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$documentStateSerializer", "$get$_$documentStateSerializer", () => new A._$DocumentStateSerializer()); _lazyOld($, "_$documentUIStateSerializer", "$get$_$documentUIStateSerializer", () => new A._$DocumentUIStateSerializer()); _lazyOld($, "forceSelectedReducer4", "$get$forceSelectedReducer4", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure39(), t1, type$.legacy_ViewExpense), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure40(), t1, type$.legacy_ViewExpenseList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure41(), t1, A.findType("FilterExpensesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure42(), t1, A.findType("FilterExpenses*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure43(), t1, A.findType("FilterExpensesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure44(), t1, A.findType("FilterExpensesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure45(), t1, A.findType("FilterExpensesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure46(), t1, A.findType("FilterExpensesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer1", "$get$tabIndexReducer4", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure9(), t1, A.findType("UpdateExpenseTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure10(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer4", "$get$selectedIdReducer4", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure79(), t1, A.findType("ArchiveExpenseSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure80(), t1, A.findType("DeleteExpenseSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure81(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure82(), t1, type$.legacy_ViewExpense), t6 = A.TypedReducer$(new A.selectedIdReducer_closure83(), t1, A.findType("AddExpenseSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure84(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure85(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure86(), t1, A.findType("SortExpenses*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure87(), t1, A.findType("FilterExpenses*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure88(), t1, A.findType("FilterExpensesByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure89(), t1, A.findType("FilterExpensesByStatus*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure90(), t1, A.findType("FilterExpensesByCustom1*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure91(), t1, A.findType("FilterExpensesByCustom2*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure92(), t1, A.findType("FilterExpensesByCustom3*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure93(), t1, A.findType("FilterExpensesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer4", "$get$editingReducer4", () => { var t1 = type$.legacy_ExpenseEntity, t2 = A.TypedReducer$(A.expense_reducer___updateEditing$closure(), t1, A.findType("SaveExpenseSuccess*")), t3 = A.TypedReducer$(A.expense_reducer___updateEditing$closure(), t1, A.findType("AddExpenseSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure28(), t1, A.findType("RestoreExpenseSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure29(), t1, A.findType("ArchiveExpenseSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure30(), t1, A.findType("DeleteExpenseSuccess*")), t7 = A.TypedReducer$(A.expense_reducer___updateEditing$closure(), t1, type$.legacy_EditExpense), t8 = A.TypedReducer$(new A.editingReducer_closure31(), t1, A.findType("UpdateExpense*")), t9 = A.TypedReducer$(A.expense_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "expenseListReducer", "$get$expenseListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.expense_reducer___sortExpenses$closure(), t1, A.findType("SortExpenses*")), t3 = A.TypedReducer$(A.expense_reducer___filterExpensesByState$closure(), t1, A.findType("FilterExpensesByState*")), t4 = A.TypedReducer$(A.expense_reducer___filterExpensesByStatus$closure(), t1, A.findType("FilterExpensesByStatus*")), t5 = A.TypedReducer$(A.expense_reducer___filterExpenses$closure(), t1, A.findType("FilterExpenses*")), t6 = A.TypedReducer$(A.expense_reducer___filterExpensesByCustom1$closure(), t1, A.findType("FilterExpensesByCustom1*")), t7 = A.TypedReducer$(A.expense_reducer___filterExpensesByCustom2$closure(), t1, A.findType("FilterExpensesByCustom2*")), t8 = A.TypedReducer$(A.expense_reducer___filterExpensesByCustom3$closure(), t1, A.findType("FilterExpensesByCustom3*")), t9 = A.TypedReducer$(A.expense_reducer___filterExpensesByCustom4$closure(), t1, A.findType("FilterExpensesByCustom4*")), t10 = A.TypedReducer$(A.expense_reducer___startListMultiselect$closure(), t1, A.findType("StartExpenseMultiselect*")), t11 = A.TypedReducer$(A.expense_reducer___addToListMultiselect$closure(), t1, A.findType("AddToExpenseMultiselect*")), t12 = A.TypedReducer$(A.expense_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromExpenseMultiselect*")), t13 = A.TypedReducer$(A.expense_reducer___clearListMultiselect$closure(), t1, A.findType("ClearExpenseMultiselect*")), t14 = A.TypedReducer$(A.expense_reducer___viewExpenseList$closure(), t1, type$.legacy_ViewExpenseList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "expensesReducer", "$get$expensesReducer", () => { var t1 = type$.legacy_ExpenseState, t2 = A.TypedReducer$(A.expense_reducer___updateExpense$closure(), t1, A.findType("SaveExpenseSuccess*")), t3 = A.TypedReducer$(A.expense_reducer___addExpense$closure(), t1, A.findType("AddExpenseSuccess*")), t4 = A.TypedReducer$(A.expense_reducer___setLoadedExpenses$closure(), t1, A.findType("LoadExpensesSuccess*")), t5 = A.TypedReducer$(A.expense_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.expense_reducer___setLoadedExpense$closure(), t1, A.findType("LoadExpenseSuccess*")), t7 = A.TypedReducer$(A.expense_reducer___archiveExpenseSuccess$closure(), t1, A.findType("ArchiveExpenseSuccess*")), t8 = A.TypedReducer$(A.expense_reducer___deleteExpenseSuccess$closure(), t1, A.findType("DeleteExpenseSuccess*")), t9 = A.TypedReducer$(A.expense_reducer___restoreExpenseSuccess$closure(), t1, A.findType("RestoreExpenseSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedExpensePurchaseOrderSelector", "$get$memoizedExpensePurchaseOrderSelector", () => A.memo2(new A.memoizedExpensePurchaseOrderSelector_closure(), type$.legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_InvoiceEntity)); _lazyOld($, "memoizedFilteredExpenseList", "$get$memoizedFilteredExpenseList", () => A.memo9(new A.memoizedFilteredExpenseList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedExpenseStatsForVendor", "$get$memoizedExpenseStatsForVendor", () => A.memo2(new A.memoizedExpenseStatsForVendor_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedExpenseStatsForClient", "$get$memoizedExpenseStatsForClient", () => A.memo2(new A.memoizedExpenseStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedClientExpenseList", "$get$memoizedClientExpenseList", () => A.memo2(new A.memoizedClientExpenseList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedExpenseStatsForProject", "$get$memoizedExpenseStatsForProject", () => A.memo2(new A.memoizedExpenseStatsForProject_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedExpenseStatsForUser", "$get$memoizedExpenseStatsForUser", () => A.memo2(new A.memoizedExpenseStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "_$expenseStateSerializer", "$get$_$expenseStateSerializer", () => new A._$ExpenseStateSerializer()); _lazyOld($, "_$expenseUIStateSerializer", "$get$_$expenseUIStateSerializer", () => new A._$ExpenseUIStateSerializer()); _lazyOld($, "forceSelectedReducer5", "$get$forceSelectedReducer16", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure127(), t1, type$.legacy_ViewExpenseCategory), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure128(), t1, type$.legacy_ViewExpenseCategoryList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure129(), t1, A.findType("FilterExpenseCategoriesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure130(), t1, A.findType("FilterExpenseCategories*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure131(), t1, A.findType("FilterExpenseCategoriesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure132(), t1, A.findType("FilterExpenseCategoriesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure133(), t1, A.findType("FilterExpenseCategoriesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure134(), t1, A.findType("FilterExpenseCategoriesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer5", "$get$selectedIdReducer16", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure256(), t1, A.findType("ArchiveExpenseCategoriesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure257(), t1, A.findType("DeleteExpenseCategoriesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure258(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure259(), t1, type$.legacy_ViewExpenseCategory), t6 = A.TypedReducer$(new A.selectedIdReducer_closure260(), t1, A.findType("AddExpenseCategorySuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure261(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure262(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure263(), t1, A.findType("SortExpenseCategories*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure264(), t1, A.findType("FilterExpenseCategories*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure265(), t1, A.findType("FilterExpenseCategoriesByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure266(), t1, A.findType("FilterExpenseCategoriesByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure267(), t1, A.findType("FilterExpenseCategoriesByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure268(), t1, A.findType("FilterExpenseCategoriesByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure269(), t1, A.findType("FilterExpenseCategoriesByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure270(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer5", "$get$editingReducer16", () => { var t1 = type$.legacy_ExpenseCategoryEntity, t2 = A.TypedReducer$(A.expense_category_reducer___updateEditing$closure(), t1, A.findType("SaveExpenseCategorySuccess*")), t3 = A.TypedReducer$(A.expense_category_reducer___updateEditing$closure(), t1, A.findType("AddExpenseCategorySuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure87(), t1, A.findType("RestoreExpenseCategoriesSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure88(), t1, A.findType("ArchiveExpenseCategoriesSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure89(), t1, A.findType("DeleteExpenseCategoriesSuccess*")), t7 = A.TypedReducer$(A.expense_category_reducer___updateEditing$closure(), t1, type$.legacy_EditExpenseCategory), t8 = A.TypedReducer$(new A.editingReducer_closure90(), t1, A.findType("UpdateExpenseCategory*")), t9 = A.TypedReducer$(A.expense_category_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "expenseCategoryListReducer", "$get$expenseCategoryListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.expense_category_reducer___sortExpenseCategories$closure(), t1, A.findType("SortExpenseCategories*")), t3 = A.TypedReducer$(A.expense_category_reducer___filterExpenseCategoriesByState$closure(), t1, A.findType("FilterExpenseCategoriesByState*")), t4 = A.TypedReducer$(A.expense_category_reducer___filterExpenseCategories$closure(), t1, A.findType("FilterExpenseCategories*")), t5 = A.TypedReducer$(A.expense_category_reducer___filterExpenseCategoriesByCustom1$closure(), t1, A.findType("FilterExpenseCategoriesByCustom1*")), t6 = A.TypedReducer$(A.expense_category_reducer___filterExpenseCategoriesByCustom2$closure(), t1, A.findType("FilterExpenseCategoriesByCustom2*")), t7 = A.TypedReducer$(A.expense_category_reducer___startListMultiselect$closure(), t1, A.findType("StartExpenseCategoryMultiselect*")), t8 = A.TypedReducer$(A.expense_category_reducer___addToListMultiselect$closure(), t1, A.findType("AddToExpenseCategoryMultiselect*")), t9 = A.TypedReducer$(A.expense_category_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromExpenseCategoryMultiselect*")), t10 = A.TypedReducer$(A.expense_category_reducer___clearListMultiselect$closure(), t1, A.findType("ClearExpenseCategoryMultiselect*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "expenseCategoriesReducer", "$get$expenseCategoriesReducer", () => { var t1 = type$.legacy_ExpenseCategoryState, t2 = A.TypedReducer$(A.expense_category_reducer___updateExpenseCategory$closure(), t1, A.findType("SaveExpenseCategorySuccess*")), t3 = A.TypedReducer$(A.expense_category_reducer___addExpenseCategory$closure(), t1, A.findType("AddExpenseCategorySuccess*")), t4 = A.TypedReducer$(A.expense_category_reducer___setLoadedExpenseCategories$closure(), t1, A.findType("LoadExpenseCategoriesSuccess*")), t5 = A.TypedReducer$(A.expense_category_reducer___setLoadedExpenseCategory$closure(), t1, A.findType("LoadExpenseCategorySuccess*")), t6 = A.TypedReducer$(A.expense_category_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.expense_category_reducer___archiveExpenseCategorySuccess$closure(), t1, A.findType("ArchiveExpenseCategoriesSuccess*")), t8 = A.TypedReducer$(A.expense_category_reducer___deleteExpenseCategorySuccess$closure(), t1, A.findType("DeleteExpenseCategoriesSuccess*")), t9 = A.TypedReducer$(A.expense_category_reducer___restoreExpenseCategorySuccess$closure(), t1, A.findType("RestoreExpenseCategoriesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredExpenseCategoryList", "$get$memoizedFilteredExpenseCategoryList", () => A.memo4(new A.memoizedFilteredExpenseCategoryList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedCalculateExpenseCategoryAmount", "$get$memoizedCalculateExpenseCategoryAmount", () => A.memo2(new A.memoizedCalculateExpenseCategoryAmount_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_double)); _lazyOld($, "memoizedExpenseStatsForExpenseCategory", "$get$memoizedExpenseStatsForExpenseCategory", () => A.memo2(new A.memoizedExpenseStatsForExpenseCategory_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "_$expenseCategoryStateSerializer", "$get$_$expenseCategoryStateSerializer", () => new A._$ExpenseCategoryStateSerializer()); _lazyOld($, "_$expenseCategoryUIStateSerializer", "$get$_$expenseCategoryUIStateSerializer", () => new A._$ExpenseCategoryUIStateSerializer()); _lazyOld($, "forceSelectedReducer6", "$get$forceSelectedReducer6", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure55(), t1, type$.legacy_ViewGroup), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure56(), t1, type$.legacy_ViewGroupList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure57(), t1, A.findType("FilterGroupsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure58(), t1, A.findType("FilterGroups*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer6", "$get$selectedIdReducer6", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure107(), t1, A.findType("ArchiveGroupSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure108(), t1, A.findType("DeleteGroupSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure109(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure110(), t1, type$.legacy_ViewGroup), t6 = A.TypedReducer$(new A.selectedIdReducer_closure111(), t1, A.findType("AddGroupSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure112(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure113(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure114(), t1, A.findType("SortGroups*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure115(), t1, A.findType("FilterGroups*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure116(), t1, A.findType("FilterGroupsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure117(), t1, type$.legacy_ClearEntitySelection), t13 = A.TypedReducer$(new A.selectedIdReducer_closure118(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer6", "$get$editingReducer6", () => { var t1 = type$.legacy_GroupEntity, t2 = A.TypedReducer$(A.group_reducer___updateEditing$closure(), t1, A.findType("SaveGroupSuccess*")), t3 = A.TypedReducer$(A.group_reducer___updateEditing$closure(), t1, A.findType("AddGroupSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure33(), t1, A.findType("RestoreGroupSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure34(), t1, A.findType("ArchiveGroupSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure35(), t1, A.findType("DeleteGroupSuccess*")), t7 = A.TypedReducer$(A.group_reducer___updateEditing$closure(), t1, type$.legacy_EditGroup), t8 = A.TypedReducer$(new A.editingReducer_closure36(), t1, A.findType("UpdateGroup*")), t9 = A.TypedReducer$(A.group_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "groupListReducer", "$get$groupListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.group_reducer___sortGroups$closure(), t1, A.findType("SortGroups*")), t3 = A.TypedReducer$(A.group_reducer___filterGroupsByState$closure(), t1, A.findType("FilterGroupsByState*")), t4 = A.TypedReducer$(A.group_reducer___filterGroups$closure(), t1, A.findType("FilterGroups*")), t5 = A.TypedReducer$(A.group_reducer___startListMultiselect$closure(), t1, A.findType("StartGroupMultiselect*")), t6 = A.TypedReducer$(A.group_reducer___addToListMultiselect$closure(), t1, A.findType("AddToGroupMultiselect*")), t7 = A.TypedReducer$(A.group_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromGroupMultiselect*")), t8 = A.TypedReducer$(A.group_reducer___clearListMultiselect$closure(), t1, A.findType("ClearGroupMultiselect*")), t9 = A.TypedReducer$(A.group_reducer___viewGroupList$closure(), t1, type$.legacy_ViewGroupList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "groupsReducer", "$get$groupsReducer", () => { var t1 = type$.legacy_GroupState, t2 = A.TypedReducer$(A.group_reducer___updateGroup$closure(), t1, A.findType("SaveGroupSuccess*")), t3 = A.TypedReducer$(A.group_reducer___addGroup$closure(), t1, A.findType("AddGroupSuccess*")), t4 = A.TypedReducer$(A.group_reducer___setLoadedGroups$closure(), t1, A.findType("LoadGroupsSuccess*")), t5 = A.TypedReducer$(A.group_reducer___setLoadedGroup$closure(), t1, A.findType("LoadGroupSuccess*")), t6 = A.TypedReducer$(A.group_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.group_reducer___archiveGroupSuccess$closure(), t1, A.findType("ArchiveGroupSuccess*")), t8 = A.TypedReducer$(A.group_reducer___deleteGroupSuccess$closure(), t1, A.findType("DeleteGroupSuccess*")), t9 = A.TypedReducer$(A.group_reducer___restoreGroupSuccess$closure(), t1, A.findType("RestoreGroupSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredGroupList", "$get$memoizedFilteredGroupList", () => A.memo4(new A.memoizedFilteredGroupList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedClientStatsForGroup", "$get$memoizedClientStatsForGroup", () => A.memo2(new A.memoizedClientStatsForGroup_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_String, type$.legacy_EntityStats)); _lazyOld($, "_$groupStateSerializer", "$get$_$groupStateSerializer", () => new A._$GroupStateSerializer()); _lazyOld($, "_$groupUIStateSerializer", "$get$_$groupUIStateSerializer", () => new A._$GroupUIStateSerializer()); _lazyOld($, "forceSelectedReducer7", "$get$forceSelectedReducer21", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure167(), t1, type$.legacy_ViewInvoice), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure168(), t1, type$.legacy_ViewInvoiceList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure169(), t1, A.findType("FilterInvoicesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure170(), t1, A.findType("FilterInvoices*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure171(), t1, A.findType("FilterInvoicesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure172(), t1, A.findType("FilterInvoicesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure173(), t1, A.findType("FilterInvoicesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure174(), t1, A.findType("FilterInvoicesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer2", "$get$tabIndexReducer10", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure21(), t1, A.findType("UpdateInvoiceTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure22(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer0", "$get$historyActivityIdReducer3", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.historyActivityIdReducer_closure3(), t1, type$.legacy_ShowPdfInvoice); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemIndexReducer", "$get$editingItemIndexReducer0", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingItemIndexReducer_closure1(), t1, type$.legacy_EditInvoice), t3 = A.TypedReducer$(new A.editingItemIndexReducer_closure2(), t1, A.findType("EditInvoiceItem*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer7", "$get$selectedIdReducer21", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure335(), t1, A.findType("ArchiveInvoicesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure336(), t1, A.findType("DeleteInvoicesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure337(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure338(), t1, type$.legacy_ViewInvoice), t6 = A.TypedReducer$(new A.selectedIdReducer_closure339(), t1, A.findType("AddInvoiceSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure340(), t1, type$.legacy_ShowEmailInvoice), t8 = A.TypedReducer$(new A.selectedIdReducer_closure341(), t1, type$.legacy_ShowPdfInvoice), t9 = A.TypedReducer$(new A.selectedIdReducer_closure342(), t1, type$.legacy_SelectCompany), t10 = A.TypedReducer$(new A.selectedIdReducer_closure343(), t1, type$.legacy_ClearEntityFilter), t11 = A.TypedReducer$(new A.selectedIdReducer_closure344(), t1, A.findType("SortInvoices*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure345(), t1, A.findType("FilterInvoices*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure346(), t1, A.findType("FilterInvoicesByState*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure347(), t1, A.findType("FilterInvoicesByStatus*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure348(), t1, A.findType("FilterInvoicesByCustom1*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure349(), t1, A.findType("FilterInvoicesByCustom2*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure350(), t1, A.findType("FilterInvoicesByCustom3*")), t18 = A.TypedReducer$(new A.selectedIdReducer_closure351(), t1, A.findType("FilterInvoicesByCustom4*")), t19 = A.TypedReducer$(new A.selectedIdReducer_closure352(), t1, type$.legacy_ClearEntitySelection), t20 = A.TypedReducer$(new A.selectedIdReducer_closure353(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer7", "$get$editingReducer21", () => { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = A.TypedReducer$(A.invoice_reducer___updateEditing$closure(), t1, A.findType("SaveInvoiceSuccess*")), t3 = A.TypedReducer$(A.invoice_reducer___updateEditing$closure(), t1, A.findType("AddInvoiceSuccess*")), t4 = A.TypedReducer$(A.invoice_reducer___updateEditing$closure(), t1, type$.legacy_EditInvoice), t5 = A.TypedReducer$(new A.editingReducer_closure114(), t1, A.findType("UpdateInvoice*")), t6 = A.findType("AddInvoiceItem*"), t7 = A.TypedReducer$(new A.editingReducer_closure115(), t1, t6), t8 = A.TypedReducer$(new A.editingReducer_closure116(), t1, A.findType("MoveInvoiceItem*")), t9 = A.findType("DeleteInvoiceItem*"), t10 = A.TypedReducer$(new A.editingReducer_closure117(), t1, t9), t11 = A.findType("UpdateInvoiceItem*"), t12 = A.TypedReducer$(new A.editingReducer_closure118(), t1, t11), t13 = A.TypedReducer$(new A.editingReducer_closure119(), t1, A.findType("UpdateInvoiceClient*")), t14 = A.TypedReducer$(new A.editingReducer_closure120(), t1, A.findType("RestoreInvoicesSuccess*")), t15 = A.TypedReducer$(new A.editingReducer_closure121(), t1, A.findType("ArchiveInvoicesSuccess*")), t16 = A.TypedReducer$(new A.editingReducer_closure122(), t1, A.findType("DeleteInvoicesSuccess*")); t6 = A.TypedReducer$(A.invoice_reducer___addInvoiceItem$closure(), t1, t6); t17 = A.TypedReducer$(A.invoice_reducer___addInvoiceItems$closure(), t1, A.findType("AddInvoiceItems*")); t9 = A.TypedReducer$(A.invoice_reducer___removeInvoiceItem$closure(), t1, t9); t11 = A.TypedReducer$(A.invoice_reducer___updateInvoiceItem$closure(), t1, t11); t18 = A.TypedReducer$(A.invoice_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = A.TypedReducer$(new A.editingReducer_closure123(), t1, A.findType("AddInvoiceContact*")); t20 = A.TypedReducer$(new A.editingReducer_closure124(), t1, A.findType("RemoveInvoiceContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "invoiceListReducer", "$get$invoiceListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.invoice_reducer___sortInvoices$closure(), t1, A.findType("SortInvoices*")), t3 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByState$closure(), t1, A.findType("FilterInvoicesByState*")), t4 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByStatus$closure(), t1, A.findType("FilterInvoicesByStatus*")), t5 = A.TypedReducer$(A.invoice_reducer___filterInvoices$closure(), t1, A.findType("FilterInvoices*")), t6 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByCustom1$closure(), t1, A.findType("FilterInvoicesByCustom1*")), t7 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByCustom2$closure(), t1, A.findType("FilterInvoicesByCustom2*")), t8 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByCustom3$closure(), t1, A.findType("FilterInvoicesByCustom3*")), t9 = A.TypedReducer$(A.invoice_reducer___filterInvoicesByCustom4$closure(), t1, A.findType("FilterInvoicesByCustom4*")), t10 = A.TypedReducer$(A.invoice_reducer___startListMultiselect$closure(), t1, A.findType("StartInvoiceMultiselect*")), t11 = A.TypedReducer$(A.invoice_reducer___addToListMultiselect$closure(), t1, A.findType("AddToInvoiceMultiselect*")), t12 = A.TypedReducer$(A.invoice_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromInvoiceMultiselect*")), t13 = A.TypedReducer$(A.invoice_reducer___clearListMultiselect$closure(), t1, A.findType("ClearInvoiceMultiselect*")), t14 = A.TypedReducer$(A.invoice_reducer___viewInvoiceList$closure(), t1, type$.legacy_ViewInvoiceList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "invoicesReducer", "$get$invoicesReducer", () => { var t1 = type$.legacy_InvoiceState, t2 = A.TypedReducer$(A.invoice_reducer___updateInvoice$closure(), t1, A.findType("SaveInvoiceSuccess*")), t3 = A.TypedReducer$(A.invoice_reducer___addInvoice$closure(), t1, A.findType("AddInvoiceSuccess*")), t4 = A.TypedReducer$(A.invoice_reducer___setLoadedInvoices$closure(), t1, A.findType("LoadInvoicesSuccess*")), t5 = A.TypedReducer$(A.invoice_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.invoice_reducer___updateInvoice$closure(), t1, A.findType("LoadInvoiceSuccess*")), t7 = A.TypedReducer$(A.invoice_reducer___markInvoicesSentSuccess$closure(), t1, A.findType("MarkInvoicesSentSuccess*")), t8 = A.TypedReducer$(A.invoice_reducer___markInvoicesPaidSuccess$closure(), t1, A.findType("MarkInvoicesPaidSuccess*")), t9 = A.TypedReducer$(A.invoice_reducer___cancelInvoicesSuccess$closure(), t1, A.findType("CancelInvoicesSuccess*")), t10 = A.TypedReducer$(A.invoice_reducer___emailInvoiceSuccess$closure(), t1, A.findType("EmailInvoiceSuccess*")), t11 = A.TypedReducer$(A.invoice_reducer___archiveInvoiceSuccess$closure(), t1, A.findType("ArchiveInvoicesSuccess*")), t12 = A.TypedReducer$(A.invoice_reducer___deleteInvoiceSuccess$closure(), t1, A.findType("DeleteInvoicesSuccess*")), t13 = A.TypedReducer$(A.invoice_reducer___restoreInvoiceSuccess$closure(), t1, A.findType("RestoreInvoicesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedInvoiceQuoteSelector", "$get$memoizedInvoiceQuoteSelector", () => { var t1 = type$.legacy_InvoiceEntity; return A.memo2(new A.memoizedInvoiceQuoteSelector_closure(), t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, t1); }); _lazyOld($, "memoizedDropdownInvoiceList", "$get$memoizedDropdownInvoiceList", () => { var t1 = type$.legacy_String, t2 = type$.legacy_List_legacy_String; return A.memo8(new A.memoizedDropdownInvoiceList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, t2, t1, t2); }); _lazyOld($, "memoizedFilteredInvoiceList", "$get$memoizedFilteredInvoiceList", () => A.memo9(new A.memoizedFilteredInvoiceList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedInvoiceStatsForClient", "$get$memoizedInvoiceStatsForClient", () => A.memo2(new A.memoizedInvoiceStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedInvoiceStatsForDesign", "$get$memoizedInvoiceStatsForDesign", () => A.memo2(new A.memoizedInvoiceStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedInvoiceStatsForSubscription", "$get$memoizedInvoiceStatsForSubscription", () => A.memo2(new A.memoizedInvoiceStatsForSubscription_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedInvoiceStatsForProject", "$get$memoizedInvoiceStatsForProject", () => A.memo2(new A.memoizedInvoiceStatsForProject_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedInvoiceStatsForUser", "$get$memoizedInvoiceStatsForUser", () => A.memo2(new A.memoizedInvoiceStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$invoiceStateSerializer", "$get$_$invoiceStateSerializer", () => new A._$InvoiceStateSerializer()); _lazyOld($, "_$invoiceUIStateSerializer", "$get$_$invoiceUIStateSerializer", () => new A._$InvoiceUIStateSerializer()); _lazyOld($, "forceSelectedReducer8", "$get$forceSelectedReducer0", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure7(), t1, A.findType("ViewPayment*")), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure8(), t1, type$.legacy_ViewPaymentList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure9(), t1, A.findType("FilterPaymentsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure10(), t1, A.findType("FilterPayments*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure11(), t1, A.findType("FilterPaymentsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure12(), t1, A.findType("FilterPaymentsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure13(), t1, A.findType("FilterPaymentsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure14(), t1, A.findType("FilterPaymentsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer3", "$get$tabIndexReducer0", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure1(), t1, A.findType("UpdatePaymentTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure2(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer8", "$get$selectedIdReducer0", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure18(), t1, A.findType("ArchivePaymentsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure19(), t1, A.findType("DeletePaymentsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure20(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure21(), t1, A.findType("ViewPayment*")), t6 = A.TypedReducer$(new A.selectedIdReducer_closure22(), t1, A.findType("AddPaymentSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure23(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure24(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure25(), t1, A.findType("SortPayments*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure26(), t1, A.findType("FilterPayments*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure27(), t1, A.findType("FilterPaymentsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure28(), t1, A.findType("FilterPaymentsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure29(), t1, A.findType("FilterPaymentsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure30(), t1, A.findType("FilterPaymentsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure31(), t1, A.findType("FilterPaymentsByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure32(), t1, type$.legacy_ClearEntitySelection), t17 = A.TypedReducer$(new A.selectedIdReducer_closure33(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer8", "$get$editingReducer0", () => { var t1 = type$.legacy_PaymentEntity, t2 = A.TypedReducer$(A.payment_reducer___updateEditing$closure(), t1, A.findType("SavePaymentSuccess*")), t3 = A.TypedReducer$(A.payment_reducer___updateEditing$closure(), t1, A.findType("AddPaymentSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure10(), t1, A.findType("RestorePaymentsSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure11(), t1, A.findType("ArchivePaymentsSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure12(), t1, A.findType("DeletePaymentsSuccess*")), t7 = A.TypedReducer$(A.payment_reducer___updateEditing$closure(), t1, type$.legacy_EditPayment), t8 = A.TypedReducer$(A.payment_reducer___updateEditing$closure(), t1, type$.legacy_ViewRefundPayment), t9 = A.TypedReducer$(new A.editingReducer_closure13(), t1, A.findType("UpdatePayment*")), t10 = A.TypedReducer$(A.payment_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "paymentListReducer", "$get$paymentListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.payment_reducer___sortPayments$closure(), t1, A.findType("SortPayments*")), t3 = A.TypedReducer$(A.payment_reducer___filterPaymentsByState$closure(), t1, A.findType("FilterPaymentsByState*")), t4 = A.TypedReducer$(A.payment_reducer___filterPayments$closure(), t1, A.findType("FilterPayments*")), t5 = A.TypedReducer$(A.payment_reducer___filterPaymentsByCustom1$closure(), t1, A.findType("FilterPaymentsByCustom1*")), t6 = A.TypedReducer$(A.payment_reducer___filterPaymentsByCustom2$closure(), t1, A.findType("FilterPaymentsByCustom2*")), t7 = A.TypedReducer$(A.payment_reducer___filterPaymentsByCustom3$closure(), t1, A.findType("FilterPaymentsByCustom3*")), t8 = A.TypedReducer$(A.payment_reducer___filterPaymentsByCustom4$closure(), t1, A.findType("FilterPaymentsByCustom4*")), t9 = A.TypedReducer$(A.payment_reducer___startListMultiselect$closure(), t1, A.findType("StartPaymentMultiselect*")), t10 = A.TypedReducer$(A.payment_reducer___addToListMultiselect$closure(), t1, A.findType("AddToPaymentMultiselect*")), t11 = A.TypedReducer$(A.payment_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromPaymentMultiselect*")), t12 = A.TypedReducer$(A.payment_reducer___clearListMultiselect$closure(), t1, A.findType("ClearPaymentMultiselect*")), t13 = A.TypedReducer$(A.payment_reducer___viewPaymentList$closure(), t1, type$.legacy_ViewPaymentList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "paymentsReducer", "$get$paymentsReducer", () => { var t1 = type$.legacy_PaymentState, t2 = A.TypedReducer$(A.payment_reducer___updatePayment$closure(), t1, A.findType("SavePaymentSuccess*")), t3 = A.TypedReducer$(A.payment_reducer___addPayment$closure(), t1, A.findType("AddPaymentSuccess*")), t4 = A.TypedReducer$(A.payment_reducer___setLoadedPayments$closure(), t1, A.findType("LoadPaymentsSuccess*")), t5 = A.TypedReducer$(A.payment_reducer___setLoadedPayment$closure(), t1, A.findType("LoadPaymentSuccess*")), t6 = A.TypedReducer$(A.payment_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.payment_reducer___archivePaymentSuccess$closure(), t1, A.findType("ArchivePaymentsSuccess*")), t8 = A.TypedReducer$(A.payment_reducer___deletePaymentSuccess$closure(), t1, A.findType("DeletePaymentsSuccess*")), t9 = A.TypedReducer$(A.payment_reducer___restorePaymentSuccess$closure(), t1, A.findType("RestorePaymentsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedPaymentsByInvoice", "$get$memoizedPaymentsByInvoice", () => A.memo3(new A.memoizedPaymentsByInvoice_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_PaymentEntity)); _lazyOld($, "memoizedPaymentsByCredit", "$get$memoizedPaymentsByCredit", () => A.memo3(new A.memoizedPaymentsByCredit_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_PaymentEntity)); _lazyOld($, "memoizedFilteredPaymentList", "$get$memoizedFilteredPaymentList", () => A.memo8(new A.memoizedFilteredPaymentList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, A.findType("BuiltMap*"), type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedPaymentStatsForClient", "$get$memoizedPaymentStatsForClient", () => A.memo3(new A.memoizedPaymentStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$paymentStateSerializer", "$get$_$paymentStateSerializer", () => new A._$PaymentStateSerializer()); _lazyOld($, "_$paymentUIStateSerializer", "$get$_$paymentUIStateSerializer", () => new A._$PaymentUIStateSerializer()); _lazyOld($, "forceSelectedReducer9", "$get$forceSelectedReducer12", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure95(), t1, type$.legacy_ViewPaymentTerm), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure96(), t1, type$.legacy_ViewPaymentTermList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure97(), t1, A.findType("FilterPaymentTermsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure98(), t1, A.findType("FilterPaymentTerms*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure99(), t1, A.findType("FilterPaymentTermsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure100(), t1, A.findType("FilterPaymentTermsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure101(), t1, A.findType("FilterPaymentTermsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure102(), t1, A.findType("FilterPaymentTermsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer9", "$get$selectedIdReducer12", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure193(), t1, A.findType("ArchivePaymentTermsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure194(), t1, A.findType("DeletePaymentTermsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure195(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure196(), t1, type$.legacy_ViewPaymentTerm), t6 = A.TypedReducer$(new A.selectedIdReducer_closure197(), t1, A.findType("AddPaymentTermSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure198(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure199(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure200(), t1, A.findType("SortPaymentTerms*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure201(), t1, A.findType("FilterPaymentTerms*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure202(), t1, A.findType("FilterPaymentTermsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure203(), t1, A.findType("FilterPaymentTermsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure204(), t1, A.findType("FilterPaymentTermsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure205(), t1, A.findType("FilterPaymentTermsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure206(), t1, A.findType("FilterPaymentTermsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer9", "$get$editingReducer12", () => { var t1 = type$.legacy_PaymentTermEntity, t2 = A.TypedReducer$(A.payment_term_reducer___updateEditing$closure(), t1, A.findType("SavePaymentTermSuccess*")), t3 = A.TypedReducer$(A.payment_term_reducer___updateEditing$closure(), t1, A.findType("AddPaymentTermSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure64(), t1, A.findType("RestorePaymentTermsSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure65(), t1, A.findType("ArchivePaymentTermsSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure66(), t1, A.findType("DeletePaymentTermsSuccess*")), t7 = A.TypedReducer$(A.payment_term_reducer___updateEditing$closure(), t1, type$.legacy_EditPaymentTerm), t8 = A.TypedReducer$(new A.editingReducer_closure67(), t1, A.findType("UpdatePaymentTerm*")), t9 = A.TypedReducer$(A.payment_term_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "paymentTermListReducer", "$get$paymentTermListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.payment_term_reducer___sortPaymentTerms$closure(), t1, A.findType("SortPaymentTerms*")), t3 = A.TypedReducer$(A.payment_term_reducer___filterPaymentTermsByState$closure(), t1, A.findType("FilterPaymentTermsByState*")), t4 = A.TypedReducer$(A.payment_term_reducer___filterPaymentTerms$closure(), t1, A.findType("FilterPaymentTerms*")), t5 = A.TypedReducer$(A.payment_term_reducer___filterPaymentTermsByCustom1$closure(), t1, A.findType("FilterPaymentTermsByCustom1*")), t6 = A.TypedReducer$(A.payment_term_reducer___filterPaymentTermsByCustom2$closure(), t1, A.findType("FilterPaymentTermsByCustom2*")), t7 = A.TypedReducer$(A.payment_term_reducer___startListMultiselect$closure(), t1, A.findType("StartPaymentTermMultiselect*")), t8 = A.TypedReducer$(A.payment_term_reducer___addToListMultiselect$closure(), t1, A.findType("AddToPaymentTermMultiselect*")), t9 = A.TypedReducer$(A.payment_term_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromPaymentTermMultiselect*")), t10 = A.TypedReducer$(A.payment_term_reducer___clearListMultiselect$closure(), t1, A.findType("ClearPaymentTermMultiselect*")), t11 = A.TypedReducer$(A.payment_term_reducer___viewPaymentTermList$closure(), t1, type$.legacy_ViewPaymentTermList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "paymentTermsReducer", "$get$paymentTermsReducer", () => { var t1 = type$.legacy_PaymentTermState, t2 = A.TypedReducer$(A.payment_term_reducer___updatePaymentTerm$closure(), t1, A.findType("SavePaymentTermSuccess*")), t3 = A.TypedReducer$(A.payment_term_reducer___addPaymentTerm$closure(), t1, A.findType("AddPaymentTermSuccess*")), t4 = A.TypedReducer$(A.payment_term_reducer___setLoadedPaymentTerms$closure(), t1, A.findType("LoadPaymentTermsSuccess*")), t5 = A.TypedReducer$(A.payment_term_reducer___setLoadedPaymentTerm$closure(), t1, A.findType("LoadPaymentTermSuccess*")), t6 = A.TypedReducer$(A.payment_term_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.payment_term_reducer___archivePaymentTermSuccess$closure(), t1, A.findType("ArchivePaymentTermsSuccess*")), t8 = A.TypedReducer$(A.payment_term_reducer___deletePaymentTermSuccess$closure(), t1, A.findType("DeletePaymentTermsSuccess*")), t9 = A.TypedReducer$(A.payment_term_reducer___restorePaymentTermSuccess$closure(), t1, A.findType("RestorePaymentTermsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownPaymentTermList", "$get$memoizedDropdownPaymentTermList", () => A.memo2(new A.memoizedDropdownPaymentTermList_closure(), A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredPaymentTermList", "$get$memoizedFilteredPaymentTermList", () => A.memo4(new A.memoizedFilteredPaymentTermList_closure(), type$.legacy_SelectionState, A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$paymentTermStateSerializer", "$get$_$paymentTermStateSerializer", () => new A._$PaymentTermStateSerializer()); _lazyOld($, "_$paymentTermUIStateSerializer", "$get$_$paymentTermUIStateSerializer", () => new A._$PaymentTermUIStateSerializer()); _lazyOld($, "forceSelectedReducer10", "$get$forceSelectedReducer23", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure183(), t1, type$.legacy_ViewProduct), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure184(), t1, type$.legacy_ViewProductList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure185(), t1, A.findType("FilterProductsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure186(), t1, A.findType("FilterProducts*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure187(), t1, A.findType("FilterProductsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure188(), t1, A.findType("FilterProductsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure189(), t1, A.findType("FilterProductsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure190(), t1, A.findType("FilterProductsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer4", "$get$tabIndexReducer12", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure25(), t1, A.findType("UpdateProductTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure26(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "editingReducer10", "$get$editingReducer23", () => { var t1 = type$.legacy_ProductEntity, t2 = A.TypedReducer$(A.product_reducer___updateEditing$closure(), t1, A.findType("SaveProductSuccess*")), t3 = A.TypedReducer$(A.product_reducer___updateEditing$closure(), t1, A.findType("AddProductSuccess*")), t4 = A.TypedReducer$(A.product_reducer___updateEditing$closure(), t1, type$.legacy_EditProduct), t5 = A.TypedReducer$(new A.editingReducer_closure139(), t1, A.findType("UpdateProduct*")), t6 = A.TypedReducer$(new A.editingReducer_closure140(), t1, A.findType("RestoreProductsSuccess*")), t7 = A.TypedReducer$(new A.editingReducer_closure141(), t1, A.findType("ArchiveProductsSuccess*")), t8 = A.TypedReducer$(new A.editingReducer_closure142(), t1, A.findType("DeleteProductsSuccess*")), t9 = A.TypedReducer$(A.product_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer10", "$get$selectedIdReducer23", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure371(), t1, A.findType("ArchiveProductsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure372(), t1, A.findType("DeleteProductsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure373(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure374(), t1, type$.legacy_ViewProduct), t6 = A.TypedReducer$(new A.selectedIdReducer_closure375(), t1, A.findType("AddProductSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure376(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure377(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure378(), t1, A.findType("SortProducts*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure379(), t1, A.findType("FilterProducts*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure380(), t1, A.findType("FilterProductsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure381(), t1, A.findType("FilterProductsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure382(), t1, A.findType("FilterProductsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure383(), t1, A.findType("FilterProductsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure384(), t1, A.findType("FilterProductsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "productListReducer", "$get$productListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.product_reducer___sortProducts$closure(), t1, A.findType("SortProducts*")), t3 = A.TypedReducer$(A.product_reducer___filterProducts$closure(), t1, A.findType("FilterProducts*")), t4 = A.TypedReducer$(A.product_reducer___filterProductsByState$closure(), t1, A.findType("FilterProductsByState*")), t5 = A.TypedReducer$(A.product_reducer___filterProductsByCustom1$closure(), t1, A.findType("FilterProductsByCustom1*")), t6 = A.TypedReducer$(A.product_reducer___filterProductsByCustom2$closure(), t1, A.findType("FilterProductsByCustom2*")), t7 = A.TypedReducer$(A.product_reducer___filterProductsByCustom3$closure(), t1, A.findType("FilterProductsByCustom3*")), t8 = A.TypedReducer$(A.product_reducer___filterProductsByCustom4$closure(), t1, A.findType("FilterProductsByCustom4*")), t9 = A.TypedReducer$(A.product_reducer___startListMultiselect$closure(), t1, A.findType("StartProductMultiselect*")), t10 = A.TypedReducer$(A.product_reducer___addToListMultiselect$closure(), t1, A.findType("AddToProductMultiselect*")), t11 = A.TypedReducer$(A.product_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromProductMultiselect*")), t12 = A.TypedReducer$(A.product_reducer___clearListMultiselect$closure(), t1, A.findType("ClearProductMultiselect*")), t13 = A.TypedReducer$(A.product_reducer___viewClientList$closure(), t1, type$.legacy_ViewProductList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "productsReducer", "$get$productsReducer", () => { var t1 = type$.legacy_ProductState, t2 = A.TypedReducer$(A.product_reducer___updateProduct$closure(), t1, A.findType("SaveProductSuccess*")), t3 = A.TypedReducer$(A.product_reducer___addProduct$closure(), t1, A.findType("AddProductSuccess*")), t4 = A.TypedReducer$(A.product_reducer___setLoadedProducts$closure(), t1, A.findType("LoadProductsSuccess*")), t5 = A.TypedReducer$(A.product_reducer___setLoadedProduct$closure(), t1, A.findType("LoadProductSuccess*")), t6 = A.TypedReducer$(A.product_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.product_reducer___archiveProductSuccess$closure(), t1, A.findType("ArchiveProductsSuccess*")), t8 = A.TypedReducer$(A.product_reducer___deleteProductSuccess$closure(), t1, A.findType("DeleteProductsSuccess*")), t9 = A.TypedReducer$(A.product_reducer___restoreProductSuccess$closure(), t1, A.findType("RestoreProductsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownProductList", "$get$memoizedDropdownProductList", () => A.memo3(new A.memoizedDropdownProductList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedProductList", "$get$memoizedProductList", () => A.memo1(new A.memoizedProductList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredProductList", "$get$memoizedFilteredProductList", () => A.memo5(new A.memoizedFilteredProductList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "_$productStateSerializer", "$get$_$productStateSerializer", () => new A._$ProductStateSerializer()); _lazyOld($, "_$productUIStateSerializer", "$get$_$productUIStateSerializer", () => new A._$ProductUIStateSerializer()); _lazyOld($, "forceSelectedReducer11", "$get$forceSelectedReducer1", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure15(), t1, type$.legacy_ViewProject), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure16(), t1, type$.legacy_ViewProjectList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure17(), t1, A.findType("FilterProjectsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure18(), t1, A.findType("FilterProjects*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure19(), t1, A.findType("FilterProjectsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure20(), t1, A.findType("FilterProjectsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure21(), t1, A.findType("FilterProjectsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure22(), t1, A.findType("FilterProjectsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer5", "$get$tabIndexReducer1", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure3(), t1, A.findType("UpdateProjectTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure4(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer0", "$get$saveCompleterReducer", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.saveCompleterReducer_closure(), t1, type$.legacy_EditProject); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer0", "$get$cancelCompleterReducer", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.cancelCompleterReducer_closure(), t1, type$.legacy_EditProject); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer11", "$get$selectedIdReducer1", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure34(), t1, A.findType("ArchiveProjectSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure35(), t1, A.findType("DeleteProjectSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure36(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure37(), t1, type$.legacy_ViewProject), t6 = A.TypedReducer$(new A.selectedIdReducer_closure38(), t1, A.findType("AddProjectSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure39(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure40(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure41(), t1, A.findType("SortProjects*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure42(), t1, A.findType("FilterProjects*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure43(), t1, A.findType("FilterProjectsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure44(), t1, A.findType("FilterProjectsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure45(), t1, A.findType("FilterProjectsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure46(), t1, A.findType("FilterProjectsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure47(), t1, A.findType("FilterProjectsByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure48(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer11", "$get$editingReducer1", () => { var t1 = type$.legacy_ProjectEntity, t2 = A.TypedReducer$(A.project_reducer___updateEditing$closure(), t1, A.findType("SaveProjectSuccess*")), t3 = A.TypedReducer$(A.project_reducer___updateEditing$closure(), t1, A.findType("AddProjectSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure14(), t1, A.findType("RestoreProjectSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure15(), t1, A.findType("ArchiveProjectSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure16(), t1, A.findType("DeleteProjectSuccess*")), t7 = A.TypedReducer$(A.project_reducer___updateEditing$closure(), t1, type$.legacy_EditProject), t8 = A.TypedReducer$(new A.editingReducer_closure17(), t1, A.findType("UpdateProject*")), t9 = A.TypedReducer$(A.project_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "projectListReducer", "$get$projectListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.project_reducer___sortProjects$closure(), t1, A.findType("SortProjects*")), t3 = A.TypedReducer$(A.project_reducer___filterProjectsByState$closure(), t1, A.findType("FilterProjectsByState*")), t4 = A.TypedReducer$(A.project_reducer___filterProjects$closure(), t1, A.findType("FilterProjects*")), t5 = A.TypedReducer$(A.project_reducer___filterProjectsByCustom1$closure(), t1, A.findType("FilterProjectsByCustom1*")), t6 = A.TypedReducer$(A.project_reducer___filterProjectsByCustom2$closure(), t1, A.findType("FilterProjectsByCustom2*")), t7 = A.TypedReducer$(A.project_reducer___filterProjectsByCustom3$closure(), t1, A.findType("FilterProjectsByCustom3*")), t8 = A.TypedReducer$(A.project_reducer___filterProjectsByCustom4$closure(), t1, A.findType("FilterProjectsByCustom4*")), t9 = A.TypedReducer$(A.project_reducer___startListMultiselect$closure(), t1, A.findType("StartProjectMultiselect*")), t10 = A.TypedReducer$(A.project_reducer___addToListMultiselect$closure(), t1, A.findType("AddToProjectMultiselect*")), t11 = A.TypedReducer$(A.project_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromProjectMultiselect*")), t12 = A.TypedReducer$(A.project_reducer___clearListMultiselect$closure(), t1, A.findType("ClearProjectMultiselect*")), t13 = A.TypedReducer$(A.project_reducer___viewProjectList$closure(), t1, type$.legacy_ViewProjectList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "projectsReducer", "$get$projectsReducer", () => { var t1 = type$.legacy_ProjectState, t2 = A.TypedReducer$(A.project_reducer___updateProject$closure(), t1, A.findType("SaveProjectSuccess*")), t3 = A.TypedReducer$(A.project_reducer___addProject$closure(), t1, A.findType("AddProjectSuccess*")), t4 = A.TypedReducer$(A.project_reducer___setLoadedProjects$closure(), t1, A.findType("LoadProjectsSuccess*")), t5 = A.TypedReducer$(A.project_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.project_reducer___setLoadedProject$closure(), t1, A.findType("LoadProjectSuccess*")), t7 = A.TypedReducer$(A.project_reducer___archiveProjectSuccess$closure(), t1, A.findType("ArchiveProjectSuccess*")), t8 = A.TypedReducer$(A.project_reducer___deleteProjectSuccess$closure(), t1, A.findType("DeleteProjectSuccess*")), t9 = A.TypedReducer$(A.project_reducer___restoreProjectSuccess$closure(), t1, A.findType("RestoreProjectSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownProjectList", "$get$memoizedDropdownProjectList", () => A.memo5(new A.memoizedDropdownProjectList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredProjectList", "$get$memoizedFilteredProjectList", () => A.memo6(new A.memoizedFilteredProjectList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedProjectStatsForClient", "$get$memoizedProjectStatsForClient", () => A.memo2(new A.memoizedProjectStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedProjectStatsForUser", "$get$memoizedProjectStatsForUser", () => A.memo2(new A.memoizedProjectStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_EntityStats)); _lazyOld($, "_$projectStateSerializer", "$get$_$projectStateSerializer", () => new A._$ProjectStateSerializer()); _lazyOld($, "_$projectUIStateSerializer", "$get$_$projectUIStateSerializer", () => new A._$ProjectUIStateSerializer()); _lazyOld($, "forceSelectedReducer12", "$get$forceSelectedReducer20", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure159(), t1, type$.legacy_ViewPurchaseOrder), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure160(), t1, type$.legacy_ViewPurchaseOrderList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure161(), t1, A.findType("FilterPurchaseOrdersByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure162(), t1, A.findType("FilterPurchaseOrders*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure163(), t1, A.findType("FilterPurchaseOrdersByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure164(), t1, A.findType("FilterPurchaseOrdersByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure165(), t1, A.findType("FilterPurchaseOrdersByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure166(), t1, A.findType("FilterPurchaseOrdersByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer6", "$get$tabIndexReducer9", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure19(), t1, A.findType("UpdatePurchaseOrderTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure20(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer1", "$get$historyActivityIdReducer2", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.historyActivityIdReducer_closure2(), t1, type$.legacy_ShowPdfPurchaseOrder); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemReducer0", "$get$editingItemReducer1", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingItemReducer_closure3(), t1, type$.legacy_EditPurchaseOrder), t3 = A.TypedReducer$(new A.editingItemReducer_closure4(), t1, A.findType("EditPurchaseOrderItem*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer12", "$get$selectedIdReducer20", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure316(), t1, A.findType("ArchivePurchaseOrdersSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure317(), t1, A.findType("DeletePurchaseOrdersSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure318(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure319(), t1, type$.legacy_ViewPurchaseOrder), t6 = A.TypedReducer$(new A.selectedIdReducer_closure320(), t1, A.findType("AddPurchaseOrderSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure321(), t1, type$.legacy_ShowEmailPurchaseOrder), t8 = A.TypedReducer$(new A.selectedIdReducer_closure322(), t1, type$.legacy_ShowPdfPurchaseOrder), t9 = A.TypedReducer$(new A.selectedIdReducer_closure323(), t1, type$.legacy_SelectCompany), t10 = A.TypedReducer$(new A.selectedIdReducer_closure324(), t1, type$.legacy_ClearEntityFilter), t11 = A.TypedReducer$(new A.selectedIdReducer_closure325(), t1, A.findType("SortPurchaseOrders*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure326(), t1, A.findType("FilterPurchaseOrders*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure327(), t1, A.findType("FilterPurchaseOrdersByState*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure328(), t1, A.findType("FilterPurchaseOrdersByStatus*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure329(), t1, A.findType("FilterPurchaseOrdersByCustom1*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure330(), t1, A.findType("FilterPurchaseOrdersByCustom2*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure331(), t1, A.findType("FilterPurchaseOrdersByCustom3*")), t18 = A.TypedReducer$(new A.selectedIdReducer_closure332(), t1, A.findType("FilterPurchaseOrdersByCustom4*")), t19 = A.TypedReducer$(new A.selectedIdReducer_closure333(), t1, type$.legacy_ClearEntitySelection), t20 = A.TypedReducer$(new A.selectedIdReducer_closure334(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer12", "$get$editingReducer20", () => { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = A.TypedReducer$(A.purchase_order_reducer___updateEditing$closure(), t1, A.findType("SavePurchaseOrderSuccess*")), t3 = A.TypedReducer$(A.purchase_order_reducer___updateEditing$closure(), t1, A.findType("AddPurchaseOrderSuccess*")), t4 = A.TypedReducer$(A.purchase_order_reducer___updateEditing$closure(), t1, type$.legacy_EditPurchaseOrder), t5 = A.TypedReducer$(new A.editingReducer_closure103(), t1, A.findType("UpdatePurchaseOrder*")), t6 = A.findType("AddPurchaseOrderItem*"), t7 = A.TypedReducer$(new A.editingReducer_closure104(), t1, t6), t8 = A.TypedReducer$(new A.editingReducer_closure105(), t1, A.findType("MovePurchaseOrderItem*")), t9 = A.findType("DeletePurchaseOrderItem*"), t10 = A.TypedReducer$(new A.editingReducer_closure106(), t1, t9), t11 = A.findType("UpdatePurchaseOrderItem*"), t12 = A.TypedReducer$(new A.editingReducer_closure107(), t1, t11), t13 = A.TypedReducer$(new A.editingReducer_closure108(), t1, A.findType("UpdatePurchaseOrderVendor*")), t14 = A.TypedReducer$(new A.editingReducer_closure109(), t1, A.findType("RestorePurchaseOrdersSuccess*")), t15 = A.TypedReducer$(new A.editingReducer_closure110(), t1, A.findType("ArchivePurchaseOrdersSuccess*")), t16 = A.TypedReducer$(new A.editingReducer_closure111(), t1, A.findType("DeletePurchaseOrdersSuccess*")); t6 = A.TypedReducer$(A.purchase_order_reducer___addPurchaseOrderItem$closure(), t1, t6); t17 = A.TypedReducer$(A.purchase_order_reducer___addPurchaseOrderItems$closure(), t1, A.findType("AddPurchaseOrderItems*")); t9 = A.TypedReducer$(A.purchase_order_reducer___removePurchaseOrderItem$closure(), t1, t9); t11 = A.TypedReducer$(A.purchase_order_reducer___updatePurchaseOrderItem$closure(), t1, t11); t18 = A.TypedReducer$(A.purchase_order_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = A.TypedReducer$(new A.editingReducer_closure112(), t1, A.findType("AddPurchaseOrderContact*")); t20 = A.TypedReducer$(new A.editingReducer_closure113(), t1, A.findType("RemovePurchaseOrderContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "purchaseOrderListReducer", "$get$purchaseOrderListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.purchase_order_reducer___sortPurchaseOrders$closure(), t1, A.findType("SortPurchaseOrders*")), t3 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByState$closure(), t1, A.findType("FilterPurchaseOrdersByState*")), t4 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByStatus$closure(), t1, A.findType("FilterPurchaseOrdersByStatus*")), t5 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrders$closure(), t1, A.findType("FilterPurchaseOrders*")), t6 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByCustom1$closure(), t1, A.findType("FilterPurchaseOrdersByCustom1*")), t7 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByCustom2$closure(), t1, A.findType("FilterPurchaseOrdersByCustom2*")), t8 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByCustom3$closure(), t1, A.findType("FilterPurchaseOrdersByCustom3*")), t9 = A.TypedReducer$(A.purchase_order_reducer___filterPurchaseOrdersByCustom4$closure(), t1, A.findType("FilterPurchaseOrdersByCustom4*")), t10 = A.TypedReducer$(A.purchase_order_reducer___startListMultiselect$closure(), t1, A.findType("StartPurchaseOrderMultiselect*")), t11 = A.TypedReducer$(A.purchase_order_reducer___addToListMultiselect$closure(), t1, A.findType("AddToPurchaseOrderMultiselect*")), t12 = A.TypedReducer$(A.purchase_order_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromPurchaseOrderMultiselect*")), t13 = A.TypedReducer$(A.purchase_order_reducer___clearListMultiselect$closure(), t1, A.findType("ClearPurchaseOrderMultiselect*")), t14 = A.TypedReducer$(A.purchase_order_reducer___viewPurchaseOrderList$closure(), t1, type$.legacy_ViewPurchaseOrderList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "purchaseOrdersReducer", "$get$purchaseOrdersReducer", () => { var t1 = type$.legacy_PurchaseOrderState, t2 = A.TypedReducer$(A.purchase_order_reducer___updatePurchaseOrder$closure(), t1, A.findType("SavePurchaseOrderSuccess*")), t3 = A.TypedReducer$(A.purchase_order_reducer___addPurchaseOrder$closure(), t1, A.findType("AddPurchaseOrderSuccess*")), t4 = A.TypedReducer$(A.purchase_order_reducer___setLoadedPurchaseOrders$closure(), t1, A.findType("LoadPurchaseOrdersSuccess*")), t5 = A.TypedReducer$(A.purchase_order_reducer___updatePurchaseOrder$closure(), t1, A.findType("LoadPurchaseOrderSuccess*")), t6 = A.TypedReducer$(A.purchase_order_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.purchase_order_reducer___markSentPurchaseOrderSuccess$closure(), t1, A.findType("MarkPurchaseOrderSentSuccess*")), t8 = A.TypedReducer$(A.purchase_order_reducer___convertPurchaseOrdersToExpenses$closure(), t1, A.findType("ConvertPurchaseOrdersToExpensesSuccess*")), t9 = A.TypedReducer$(A.purchase_order_reducer___addPurchaseOrdersToInventorySuccess$closure(), t1, A.findType("AddPurchaseOrdersToInventorySuccess*")), t10 = A.TypedReducer$(A.purchase_order_reducer___acceptPurchaseOrderSuccess$closure(), t1, A.findType("AcceptPurchaseOrderSuccess*")), t11 = A.TypedReducer$(A.purchase_order_reducer___cancelPurchaseOrderSuccess$closure(), t1, A.findType("CancelPurchaseOrderSuccess*")), t12 = A.TypedReducer$(A.purchase_order_reducer___emailPurchaseOrderSuccess$closure(), t1, A.findType("EmailPurchaseOrderSuccess*")), t13 = A.TypedReducer$(A.purchase_order_reducer___archivePurchaseOrderSuccess$closure(), t1, A.findType("ArchivePurchaseOrdersSuccess*")), t14 = A.TypedReducer$(A.purchase_order_reducer___deletePurchaseOrderSuccess$closure(), t1, A.findType("DeletePurchaseOrdersSuccess*")), t15 = A.TypedReducer$(A.purchase_order_reducer___restorePurchaseOrderSuccess$closure(), t1, A.findType("RestorePurchaseOrdersSuccess*")), t16 = A.TypedReducer$(A.purchase_order_reducer___approvePurchaseOrderSuccess$closure(), t1, A.findType("ApprovePurchaseOrderSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredPurchaseOrderList", "$get$memoizedFilteredPurchaseOrderList", () => A.memo7(new A.memoizedFilteredPurchaseOrderList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedPurchaseOrderStatsForVendor", "$get$memoizedPurchaseOrderStatsForVendor", () => A.memo2(new A.memoizedPurchaseOrderStatsForVendor_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$purchaseOrderStateSerializer", "$get$_$purchaseOrderStateSerializer", () => new A._$PurchaseOrderStateSerializer()); _lazyOld($, "_$purchaseOrderUIStateSerializer", "$get$_$purchaseOrderUIStateSerializer", () => new A._$PurchaseOrderUIStateSerializer()); _lazyOld($, "forceSelectedReducer13", "$get$forceSelectedReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure(), t1, type$.legacy_ViewQuote), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure0(), t1, type$.legacy_ViewQuoteList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure1(), t1, A.findType("FilterQuotesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure2(), t1, A.findType("FilterQuotes*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure3(), t1, A.findType("FilterQuotesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure4(), t1, A.findType("FilterQuotesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure5(), t1, A.findType("FilterQuotesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure6(), t1, A.findType("FilterQuotesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer7", "$get$tabIndexReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure(), t1, A.findType("UpdateQuoteTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure0(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer2", "$get$historyActivityIdReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.historyActivityIdReducer_closure(), t1, type$.legacy_ShowPdfQuote); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemReducer1", "$get$editingItemReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingItemReducer_closure(), t1, type$.legacy_EditQuote), t3 = A.TypedReducer$(new A.editingItemReducer_closure0(), t1, A.findType("EditQuoteItem*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer13", "$get$selectedIdReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure(), t1, A.findType("ArchiveQuotesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure0(), t1, A.findType("DeleteQuotesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure1(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure2(), t1, type$.legacy_ViewQuote), t6 = A.TypedReducer$(new A.selectedIdReducer_closure3(), t1, A.findType("AddQuoteSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure4(), t1, type$.legacy_ShowEmailQuote), t8 = A.TypedReducer$(new A.selectedIdReducer_closure5(), t1, type$.legacy_ShowPdfQuote), t9 = A.TypedReducer$(new A.selectedIdReducer_closure6(), t1, type$.legacy_SelectCompany), t10 = A.TypedReducer$(new A.selectedIdReducer_closure7(), t1, type$.legacy_ClearEntityFilter), t11 = A.TypedReducer$(new A.selectedIdReducer_closure8(), t1, A.findType("SortQuotes*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure9(), t1, A.findType("FilterQuotes*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure10(), t1, A.findType("FilterQuotesByState*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure11(), t1, A.findType("FilterQuotesByStatus*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure12(), t1, A.findType("FilterQuotesByCustom1*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure13(), t1, A.findType("FilterQuotesByCustom2*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure14(), t1, A.findType("FilterQuotesByCustom3*")), t18 = A.TypedReducer$(new A.selectedIdReducer_closure15(), t1, A.findType("FilterQuotesByCustom4*")), t19 = A.TypedReducer$(new A.selectedIdReducer_closure16(), t1, type$.legacy_ClearEntitySelection), t20 = A.TypedReducer$(new A.selectedIdReducer_closure17(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer13", "$get$editingReducer", () => { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = A.TypedReducer$(A.quote_reducer___updateEditing$closure(), t1, A.findType("SaveQuoteSuccess*")), t3 = A.TypedReducer$(A.quote_reducer___updateEditing$closure(), t1, A.findType("AddQuoteSuccess*")), t4 = A.TypedReducer$(A.quote_reducer___updateEditing$closure(), t1, type$.legacy_EditQuote), t5 = A.TypedReducer$(new A.editingReducer_closure(), t1, A.findType("UpdateQuote*")), t6 = A.findType("AddQuoteItem*"), t7 = A.TypedReducer$(new A.editingReducer_closure0(), t1, t6), t8 = A.TypedReducer$(new A.editingReducer_closure1(), t1, A.findType("MoveQuoteItem*")), t9 = A.findType("DeleteQuoteItem*"), t10 = A.TypedReducer$(new A.editingReducer_closure2(), t1, t9), t11 = A.findType("UpdateQuoteItem*"), t12 = A.TypedReducer$(new A.editingReducer_closure3(), t1, t11), t13 = A.TypedReducer$(new A.editingReducer_closure4(), t1, A.findType("UpdateQuoteClient*")), t14 = A.TypedReducer$(new A.editingReducer_closure5(), t1, A.findType("RestoreQuotesSuccess*")), t15 = A.TypedReducer$(new A.editingReducer_closure6(), t1, A.findType("ArchiveQuotesSuccess*")), t16 = A.TypedReducer$(new A.editingReducer_closure7(), t1, A.findType("DeleteQuotesSuccess*")); t6 = A.TypedReducer$(A.quote_reducer___addQuoteItem$closure(), t1, t6); t17 = A.TypedReducer$(A.quote_reducer___addQuoteItems$closure(), t1, A.findType("AddQuoteItems*")); t9 = A.TypedReducer$(A.quote_reducer___removeQuoteItem$closure(), t1, t9); t11 = A.TypedReducer$(A.quote_reducer___updateQuoteItem$closure(), t1, t11); t18 = A.TypedReducer$(A.quote_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = A.TypedReducer$(new A.editingReducer_closure8(), t1, A.findType("AddQuoteContact*")); t20 = A.TypedReducer$(new A.editingReducer_closure9(), t1, A.findType("RemoveQuoteContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "quoteListReducer", "$get$quoteListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.quote_reducer___sortQuotes$closure(), t1, A.findType("SortQuotes*")), t3 = A.TypedReducer$(A.quote_reducer___filterQuotesByState$closure(), t1, A.findType("FilterQuotesByState*")), t4 = A.TypedReducer$(A.quote_reducer___filterQuotesByStatus$closure(), t1, A.findType("FilterQuotesByStatus*")), t5 = A.TypedReducer$(A.quote_reducer___filterQuotes$closure(), t1, A.findType("FilterQuotes*")), t6 = A.TypedReducer$(A.quote_reducer___filterQuotesByCustom1$closure(), t1, A.findType("FilterQuotesByCustom1*")), t7 = A.TypedReducer$(A.quote_reducer___filterQuotesByCustom2$closure(), t1, A.findType("FilterQuotesByCustom2*")), t8 = A.TypedReducer$(A.quote_reducer___filterQuotesByCustom3$closure(), t1, A.findType("FilterQuotesByCustom3*")), t9 = A.TypedReducer$(A.quote_reducer___filterQuotesByCustom4$closure(), t1, A.findType("FilterQuotesByCustom4*")), t10 = A.TypedReducer$(A.quote_reducer___startListMultiselect$closure(), t1, A.findType("StartQuoteMultiselect*")), t11 = A.TypedReducer$(A.quote_reducer___addToListMultiselect$closure(), t1, A.findType("AddToQuoteMultiselect*")), t12 = A.TypedReducer$(A.quote_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromQuoteMultiselect*")), t13 = A.TypedReducer$(A.quote_reducer___clearListMultiselect$closure(), t1, A.findType("ClearQuoteMultiselect*")), t14 = A.TypedReducer$(A.quote_reducer___viewQuoteList$closure(), t1, type$.legacy_ViewQuoteList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "quotesReducer", "$get$quotesReducer", () => { var t1 = type$.legacy_QuoteState, t2 = A.TypedReducer$(A.quote_reducer___updateQuote$closure(), t1, A.findType("SaveQuoteSuccess*")), t3 = A.TypedReducer$(A.quote_reducer___addQuote$closure(), t1, A.findType("AddQuoteSuccess*")), t4 = A.TypedReducer$(A.quote_reducer___setLoadedQuotes$closure(), t1, A.findType("LoadQuotesSuccess*")), t5 = A.TypedReducer$(A.quote_reducer___updateQuote$closure(), t1, A.findType("LoadQuoteSuccess*")), t6 = A.TypedReducer$(A.quote_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.quote_reducer___markSentQuoteSuccess$closure(), t1, A.findType("MarkSentQuoteSuccess*")), t8 = A.TypedReducer$(A.quote_reducer___emailQuoteSuccess$closure(), t1, A.findType("EmailQuoteSuccess*")), t9 = A.TypedReducer$(A.quote_reducer___archiveQuoteSuccess$closure(), t1, A.findType("ArchiveQuotesSuccess*")), t10 = A.TypedReducer$(A.quote_reducer___deleteQuoteSuccess$closure(), t1, A.findType("DeleteQuotesSuccess*")), t11 = A.TypedReducer$(A.quote_reducer___restoreQuoteSuccess$closure(), t1, A.findType("RestoreQuotesSuccess*")), t12 = A.TypedReducer$(A.quote_reducer___convertQuoteSuccess$closure(), t1, A.findType("ConvertQuoteSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredQuoteList", "$get$memoizedFilteredQuoteList", () => A.memo7(new A.memoizedFilteredQuoteList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedQuoteStatsForClient", "$get$memoizedQuoteStatsForClient", () => A.memo2(new A.memoizedQuoteStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedQuoteStatsForDesign", "$get$memoizedQuoteStatsForDesign", () => A.memo2(new A.memoizedQuoteStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedQuoteStatsForUser", "$get$memoizedQuoteStatsForUser", () => A.memo2(new A.memoizedQuoteStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$quoteStateSerializer", "$get$_$quoteStateSerializer", () => new A._$QuoteStateSerializer()); _lazyOld($, "_$quoteUIStateSerializer", "$get$_$quoteUIStateSerializer", () => new A._$QuoteUIStateSerializer()); _lazyOld($, "forceSelectedReducer14", "$get$forceSelectedReducer19", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure151(), t1, type$.legacy_ViewRecurringExpense), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure152(), t1, type$.legacy_ViewRecurringExpenseList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure153(), t1, A.findType("FilterRecurringExpensesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure154(), t1, A.findType("FilterRecurringExpenses*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure155(), t1, A.findType("FilterRecurringExpensesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure156(), t1, A.findType("FilterRecurringExpensesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure157(), t1, A.findType("FilterRecurringExpensesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure158(), t1, A.findType("FilterRecurringExpensesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer8", "$get$tabIndexReducer8", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure17(), t1, A.findType("UpdateRecurringExpenseTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure18(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer14", "$get$selectedIdReducer19", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure301(), t1, A.findType("ArchiveRecurringExpensesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure302(), t1, A.findType("DeleteRecurringExpensesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure303(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure304(), t1, type$.legacy_ViewRecurringExpense), t6 = A.TypedReducer$(new A.selectedIdReducer_closure305(), t1, A.findType("AddRecurringExpenseSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure306(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure307(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure308(), t1, A.findType("SortRecurringExpenses*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure309(), t1, A.findType("FilterRecurringExpenses*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure310(), t1, A.findType("FilterRecurringExpensesByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure311(), t1, A.findType("FilterRecurringExpensesByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure312(), t1, A.findType("FilterRecurringExpensesByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure313(), t1, A.findType("FilterRecurringExpensesByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure314(), t1, A.findType("FilterRecurringExpensesByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure315(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer14", "$get$editingReducer19", () => { var t1 = type$.legacy_ExpenseEntity, t2 = A.TypedReducer$(A.recurring_expense_reducer___updateEditing$closure(), t1, A.findType("SaveRecurringExpenseSuccess*")), t3 = A.TypedReducer$(A.recurring_expense_reducer___updateEditing$closure(), t1, A.findType("AddRecurringExpenseSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure99(), t1, A.findType("RestoreRecurringExpensesSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure100(), t1, A.findType("ArchiveRecurringExpensesSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure101(), t1, A.findType("DeleteRecurringExpensesSuccess*")), t7 = A.TypedReducer$(A.recurring_expense_reducer___updateEditing$closure(), t1, type$.legacy_EditRecurringExpense), t8 = A.TypedReducer$(new A.editingReducer_closure102(), t1, A.findType("UpdateRecurringExpense*")), t9 = A.TypedReducer$(A.recurring_expense_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "recurringExpenseListReducer", "$get$recurringExpenseListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.recurring_expense_reducer___sortRecurringExpenses$closure(), t1, A.findType("SortRecurringExpenses*")), t3 = A.TypedReducer$(A.recurring_expense_reducer___filterRecurringExpensesByState$closure(), t1, A.findType("FilterRecurringExpensesByState*")), t4 = A.TypedReducer$(A.recurring_expense_reducer___filterRecurringExpenses$closure(), t1, A.findType("FilterRecurringExpenses*")), t5 = A.TypedReducer$(A.recurring_expense_reducer___filterRecurringExpensesByCustom1$closure(), t1, A.findType("FilterRecurringExpensesByCustom1*")), t6 = A.TypedReducer$(A.recurring_expense_reducer___filterRecurringExpensesByCustom2$closure(), t1, A.findType("FilterRecurringExpensesByCustom2*")), t7 = A.TypedReducer$(A.recurring_expense_reducer___startListMultiselect$closure(), t1, A.findType("StartRecurringExpenseMultiselect*")), t8 = A.TypedReducer$(A.recurring_expense_reducer___addToListMultiselect$closure(), t1, A.findType("AddToRecurringExpenseMultiselect*")), t9 = A.TypedReducer$(A.recurring_expense_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromRecurringExpenseMultiselect*")), t10 = A.TypedReducer$(A.recurring_expense_reducer___clearListMultiselect$closure(), t1, A.findType("ClearRecurringExpenseMultiselect*")), t11 = A.TypedReducer$(A.recurring_expense_reducer___viewRecurringExpenseList$closure(), t1, type$.legacy_ViewRecurringExpenseList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "recurringExpensesReducer", "$get$recurringExpensesReducer", () => { var t1 = type$.legacy_RecurringExpenseState, t2 = A.TypedReducer$(A.recurring_expense_reducer___updateRecurringExpense$closure(), t1, A.findType("SaveRecurringExpenseSuccess*")), t3 = A.TypedReducer$(A.recurring_expense_reducer___addRecurringExpense$closure(), t1, A.findType("AddRecurringExpenseSuccess*")), t4 = A.TypedReducer$(A.recurring_expense_reducer___setLoadedRecurringExpenses$closure(), t1, A.findType("LoadRecurringExpensesSuccess*")), t5 = A.TypedReducer$(A.recurring_expense_reducer___setLoadedRecurringExpense$closure(), t1, A.findType("LoadRecurringExpenseSuccess*")), t6 = A.TypedReducer$(A.recurring_expense_reducer___startRecurringExpensesSuccess$closure(), t1, A.findType("StartRecurringExpensesSuccess*")), t7 = A.TypedReducer$(A.recurring_expense_reducer___stopRecurringExpensesSuccess$closure(), t1, A.findType("StopRecurringExpensesSuccess*")), t8 = A.TypedReducer$(A.recurring_expense_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t9 = A.TypedReducer$(A.recurring_expense_reducer___archiveRecurringExpenseSuccess$closure(), t1, A.findType("ArchiveRecurringExpensesSuccess*")), t10 = A.TypedReducer$(A.recurring_expense_reducer___deleteRecurringExpenseSuccess$closure(), t1, A.findType("DeleteRecurringExpensesSuccess*")), t11 = A.TypedReducer$(A.recurring_expense_reducer___restoreRecurringExpenseSuccess$closure(), t1, A.findType("RestoreRecurringExpensesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredRecurringExpenseList", "$get$memoizedFilteredRecurringExpenseList", () => A.memo9(new A.memoizedFilteredRecurringExpenseList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedRecurringExpenseStatsForClient", "$get$memoizedRecurringExpenseStatsForClient", () => A.memo2(new A.memoizedRecurringExpenseStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringExpenseStatsForVendor", "$get$memoizedRecurringExpenseStatsForVendor", () => A.memo2(new A.memoizedRecurringExpenseStatsForVendor_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringExpenseStatsForUser", "$get$memoizedRecurringExpenseStatsForUser", () => A.memo2(new A.memoizedRecurringExpenseStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringExpenseStatsForExpense", "$get$memoizedRecurringExpenseStatsForExpense", () => A.memo2(new A.memoizedRecurringExpenseStatsForExpense_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats)); _lazyOld($, "_$recurringExpenseStateSerializer", "$get$_$recurringExpenseStateSerializer", () => new A._$RecurringExpenseStateSerializer()); _lazyOld($, "_$recurringExpenseUIStateSerializer", "$get$_$recurringExpenseUIStateSerializer", () => new A._$RecurringExpenseUIStateSerializer()); _lazyOld($, "forceSelectedReducer15", "$get$forceSelectedReducer15", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure119(), t1, type$.legacy_ViewRecurringInvoice), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure120(), t1, type$.legacy_ViewRecurringInvoiceList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure121(), t1, A.findType("FilterRecurringInvoicesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure122(), t1, A.findType("FilterRecurringInvoices*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure123(), t1, A.findType("FilterRecurringInvoicesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure124(), t1, A.findType("FilterRecurringInvoicesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure125(), t1, A.findType("FilterRecurringInvoicesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure126(), t1, A.findType("FilterRecurringInvoicesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer9", "$get$tabIndexReducer6", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure13(), t1, A.findType("UpdateRecurringInvoiceTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure14(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer3", "$get$historyActivityIdReducer1", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.historyActivityIdReducer_closure1(), t1, type$.legacy_ShowPdfRecurringInvoice); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemIndexReducer0", "$get$editingItemIndexReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingItemIndexReducer_closure(), t1, type$.legacy_EditRecurringInvoice), t3 = A.TypedReducer$(new A.editingItemIndexReducer_closure0(), t1, A.findType("EditRecurringInvoiceItem*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer15", "$get$selectedIdReducer15", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure237(), t1, A.findType("ArchiveRecurringInvoicesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure238(), t1, A.findType("DeleteRecurringInvoicesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure239(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure240(), t1, type$.legacy_ViewRecurringInvoice), t6 = A.TypedReducer$(new A.selectedIdReducer_closure241(), t1, A.findType("AddRecurringInvoiceSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure242(), t1, A.findType("ShowEmailRecurringInvoice*")), t8 = A.TypedReducer$(new A.selectedIdReducer_closure243(), t1, type$.legacy_ShowPdfRecurringInvoice), t9 = A.TypedReducer$(new A.selectedIdReducer_closure244(), t1, type$.legacy_SelectCompany), t10 = A.TypedReducer$(new A.selectedIdReducer_closure245(), t1, type$.legacy_ClearEntityFilter), t11 = A.TypedReducer$(new A.selectedIdReducer_closure246(), t1, A.findType("SortRecurringInvoices*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure247(), t1, A.findType("FilterRecurringInvoices*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure248(), t1, A.findType("FilterRecurringInvoicesByState*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure249(), t1, A.findType("FilterRecurringInvoicesByStatus*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure250(), t1, A.findType("FilterRecurringInvoicesByCustom1*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure251(), t1, A.findType("FilterRecurringInvoicesByCustom2*")), t17 = A.TypedReducer$(new A.selectedIdReducer_closure252(), t1, A.findType("FilterRecurringInvoicesByCustom3*")), t18 = A.TypedReducer$(new A.selectedIdReducer_closure253(), t1, A.findType("FilterRecurringInvoicesByCustom4*")), t19 = A.TypedReducer$(new A.selectedIdReducer_closure254(), t1, type$.legacy_ClearEntitySelection), t20 = A.TypedReducer$(new A.selectedIdReducer_closure255(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer15", "$get$editingReducer15", () => { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = A.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, A.findType("SaveRecurringInvoiceSuccess*")), t3 = A.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, A.findType("AddRecurringInvoiceSuccess*")), t4 = A.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, type$.legacy_EditRecurringInvoice), t5 = A.TypedReducer$(new A.editingReducer_closure76(), t1, A.findType("UpdateRecurringInvoice*")), t6 = A.findType("AddRecurringInvoiceItem*"), t7 = A.TypedReducer$(new A.editingReducer_closure77(), t1, t6), t8 = A.TypedReducer$(new A.editingReducer_closure78(), t1, A.findType("MoveRecurringInvoiceItem*")), t9 = A.findType("DeleteRecurringInvoiceItem*"), t10 = A.TypedReducer$(new A.editingReducer_closure79(), t1, t9), t11 = A.findType("UpdateRecurringInvoiceItem*"), t12 = A.TypedReducer$(new A.editingReducer_closure80(), t1, t11), t13 = A.TypedReducer$(new A.editingReducer_closure81(), t1, A.findType("UpdateRecurringInvoiceClient*")), t14 = A.TypedReducer$(new A.editingReducer_closure82(), t1, A.findType("RestoreRecurringInvoicesSuccess*")), t15 = A.TypedReducer$(new A.editingReducer_closure83(), t1, A.findType("ArchiveRecurringInvoicesSuccess*")), t16 = A.TypedReducer$(new A.editingReducer_closure84(), t1, A.findType("DeleteRecurringInvoicesSuccess*")); t6 = A.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoiceItem$closure(), t1, t6); t17 = A.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoiceItems$closure(), t1, A.findType("AddRecurringInvoiceItems*")); t9 = A.TypedReducer$(A.recurring_invoice_reducer___removeRecurringInvoiceItem$closure(), t1, t9); t11 = A.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoiceItem$closure(), t1, t11); t18 = A.TypedReducer$(A.recurring_invoice_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = A.TypedReducer$(new A.editingReducer_closure85(), t1, A.findType("AddRecurringInvoiceContact*")); t20 = A.TypedReducer$(new A.editingReducer_closure86(), t1, A.findType("RemoveRecurringInvoiceContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "recurringInvoiceListReducer", "$get$recurringInvoiceListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.recurring_invoice_reducer___sortRecurringInvoices$closure(), t1, A.findType("SortRecurringInvoices*")), t3 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByState$closure(), t1, A.findType("FilterRecurringInvoicesByState*")), t4 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure(), t1, A.findType("FilterRecurringInvoicesByStatus*")), t5 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoices$closure(), t1, A.findType("FilterRecurringInvoices*")), t6 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure(), t1, A.findType("FilterRecurringInvoicesByCustom1*")), t7 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure(), t1, A.findType("FilterRecurringInvoicesByCustom2*")), t8 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure(), t1, A.findType("FilterRecurringInvoicesByCustom3*")), t9 = A.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure(), t1, A.findType("FilterRecurringInvoicesByCustom4*")), t10 = A.TypedReducer$(A.recurring_invoice_reducer___startListMultiselect$closure(), t1, A.findType("StartRecurringInvoiceMultiselect*")), t11 = A.TypedReducer$(A.recurring_invoice_reducer___addToListMultiselect$closure(), t1, A.findType("AddToRecurringInvoiceMultiselect*")), t12 = A.TypedReducer$(A.recurring_invoice_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromRecurringInvoiceMultiselect*")), t13 = A.TypedReducer$(A.recurring_invoice_reducer___clearListMultiselect$closure(), t1, A.findType("ClearRecurringInvoiceMultiselect*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "recurringInvoicesReducer", "$get$recurringInvoicesReducer", () => { var t1 = type$.legacy_RecurringInvoiceState, t2 = A.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoice$closure(), t1, A.findType("SaveRecurringInvoiceSuccess*")), t3 = A.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoice$closure(), t1, A.findType("AddRecurringInvoiceSuccess*")), t4 = A.TypedReducer$(A.recurring_invoice_reducer___setLoadedRecurringInvoices$closure(), t1, A.findType("LoadRecurringInvoicesSuccess*")), t5 = A.TypedReducer$(A.recurring_invoice_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoice$closure(), t1, A.findType("LoadRecurringInvoiceSuccess*")), t7 = A.TypedReducer$(A.recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure(), t1, A.findType("EmailRecurringInvoiceSuccess*")), t8 = A.TypedReducer$(A.recurring_invoice_reducer___startRecurringInvoicesSuccess$closure(), t1, A.findType("StartRecurringInvoicesSuccess*")), t9 = A.TypedReducer$(A.recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure(), t1, A.findType("StopRecurringInvoicesSuccess*")), t10 = A.TypedReducer$(A.recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure(), t1, A.findType("ArchiveRecurringInvoicesSuccess*")), t11 = A.TypedReducer$(A.recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure(), t1, A.findType("DeleteRecurringInvoicesSuccess*")), t12 = A.TypedReducer$(A.recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure(), t1, A.findType("RestoreRecurringInvoicesSuccess*")), t13 = A.TypedReducer$(A.recurring_invoice_reducer___sendNowRecurringInvoiceSuccess$closure(), t1, A.findType("SendNowRecurringInvoicesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredRecurringInvoiceList", "$get$memoizedFilteredRecurringInvoiceList", () => A.memo7(new A.memoizedFilteredRecurringInvoiceList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedRecurringInvoiceStatsForClient", "$get$memoizedRecurringInvoiceStatsForClient", () => A.memo2(new A.memoizedRecurringInvoiceStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringInvoiceStatsForUser", "$get$memoizedRecurringInvoiceStatsForUser", () => A.memo2(new A.memoizedRecurringInvoiceStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringInvoiceStatsForInvoice", "$get$memoizedRecurringInvoiceStatsForInvoice", () => A.memo2(new A.memoizedRecurringInvoiceStatsForInvoice_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringInvoiceStatsForDesign", "$get$memoizedRecurringInvoiceStatsForDesign", () => A.memo2(new A.memoizedRecurringInvoiceStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedRecurringInvoiceStatsForSubscription", "$get$memoizedRecurringInvoiceStatsForSubscription", () => A.memo2(new A.memoizedRecurringInvoiceStatsForSubscription_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats)); _lazyOld($, "_$recurringInvoiceStateSerializer", "$get$_$recurringInvoiceStateSerializer", () => new A._$RecurringInvoiceStateSerializer()); _lazyOld($, "_$recurringInvoiceUIStateSerializer", "$get$_$recurringInvoiceUIStateSerializer", () => new A._$RecurringInvoiceUIStateSerializer()); _lazyOld($, "_$reportsUIStateSerializer", "$get$_$reportsUIStateSerializer", () => new A._$ReportsUIStateSerializer()); _lazyOld($, "settingsUIReducer", "$get$settingsUIReducer", () => { var t1 = type$.legacy_SettingsUIState, t2 = A.TypedReducer$(new A.settingsUIReducer_closure(), t1, type$.legacy_ViewSettings), t3 = A.TypedReducer$(new A.settingsUIReducer_closure0(), t1, A.findType("UpdateCompany*")), t4 = A.TypedReducer$(new A.settingsUIReducer_closure1(), t1, A.findType("UpdateSettings*")), t5 = A.TypedReducer$(new A.settingsUIReducer_closure2(), t1, A.findType("UpdateUserSettings*")), t6 = A.TypedReducer$(new A.settingsUIReducer_closure3(), t1, A.findType("ResetSettings*")), t7 = A.TypedReducer$(new A.settingsUIReducer_closure4(), t1, A.findType("SaveCompanySuccess*")), t8 = A.TypedReducer$(new A.settingsUIReducer_closure5(), t1, A.findType("SaveGroupSuccess*")), t9 = A.TypedReducer$(new A.settingsUIReducer_closure6(), t1, A.findType("SaveClientSuccess*")), t10 = A.TypedReducer$(new A.settingsUIReducer_closure7(), t1, A.findType("SaveAuthUserSuccess*")), t11 = A.TypedReducer$(new A.settingsUIReducer_closure8(), t1, A.findType("FilterSettings*")), t12 = A.TypedReducer$(new A.settingsUIReducer_closure9(), t1, A.findType("ClearSettingsFilter*")), t13 = A.TypedReducer$(new A.settingsUIReducer_closure10(), t1, A.findType("UpdateSettingsTab*")), t14 = A.TypedReducer$(new A.settingsUIReducer_closure11(), t1, A.findType("UpdateSettingsTemplate*")), t15 = A.TypedReducer$(new A.settingsUIReducer_closure12(), t1, A.findType("UpdatedSetting*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "staticReducer", "$get$staticReducer", () => { var t1 = type$.legacy_StaticState, t2 = A.TypedReducer$(A.static_reducer__staticLoadedReducer$closure(), t1, A.findType("LoadStaticSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedCountryList", "$get$memoizedCountryList", () => A.memo1(new A.memoizedCountryList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedGroupList", "$get$memoizedGroupList", () => A.memo1(new A.memoizedGroupList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedLanguageList", "$get$memoizedLanguageList", () => A.memo1(new A.memoizedLanguageList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedCurrencyList", "$get$memoizedCurrencyList", () => A.memo1(new A.memoizedCurrencyList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedTimezoneList", "$get$memoizedTimezoneList", () => A.memo1(new A.memoizedTimezoneList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedDateFormatList", "$get$memoizedDateFormatList", () => A.memo1(new A.memoizedDateFormatList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedIndustryList", "$get$memoizedIndustryList", () => A.memo1(new A.memoizedIndustryList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedSizeList", "$get$memoizedSizeList", () => A.memo1(new A.memoizedSizeList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedGatewayList", "$get$memoizedGatewayList", () => A.memo1(new A.memoizedGatewayList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedPaymentTypeList", "$get$memoizedPaymentTypeList", () => A.memo1(new A.memoizedPaymentTypeList_closure(), A.findType("BuiltMap*"), type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFontMap", "$get$memoizedFontMap", () => A.memo1(new A.memoizedFontMap_closure(), type$.legacy_List_dynamic, A.findType("BuiltMap*"))); _lazyOld($, "_$staticStateSerializer", "$get$_$staticStateSerializer", () => new A._$StaticStateSerializer()); _lazyOld($, "forceSelectedReducer16", "$get$forceSelectedReducer18", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure143(), t1, type$.legacy_ViewSubscription), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure144(), t1, type$.legacy_ViewSubscriptionList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure145(), t1, A.findType("FilterSubscriptionsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure146(), t1, A.findType("FilterSubscriptions*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure147(), t1, A.findType("FilterSubscriptionsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure148(), t1, A.findType("FilterSubscriptionsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure149(), t1, A.findType("FilterSubscriptionsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure150(), t1, A.findType("FilterSubscriptionsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer10", "$get$tabIndexReducer7", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure15(), t1, A.findType("UpdateSubscriptionTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure16(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer16", "$get$selectedIdReducer18", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure286(), t1, A.findType("ArchiveSubscriptionsSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure287(), t1, A.findType("DeleteSubscriptionsSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure288(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure289(), t1, type$.legacy_ViewSubscription), t6 = A.TypedReducer$(new A.selectedIdReducer_closure290(), t1, A.findType("AddSubscriptionSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure291(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure292(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure293(), t1, A.findType("SortSubscriptions*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure294(), t1, A.findType("FilterSubscriptions*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure295(), t1, A.findType("FilterSubscriptionsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure296(), t1, A.findType("FilterSubscriptionsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure297(), t1, A.findType("FilterSubscriptionsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure298(), t1, A.findType("FilterSubscriptionsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure299(), t1, A.findType("FilterSubscriptionsByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure300(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer16", "$get$editingReducer18", () => { var t1 = type$.legacy_SubscriptionEntity, t2 = A.TypedReducer$(A.subscription_reducer___updateEditing$closure(), t1, A.findType("SaveSubscriptionSuccess*")), t3 = A.TypedReducer$(A.subscription_reducer___updateEditing$closure(), t1, A.findType("AddSubscriptionSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure95(), t1, A.findType("RestoreSubscriptionsSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure96(), t1, A.findType("ArchiveSubscriptionsSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure97(), t1, A.findType("DeleteSubscriptionsSuccess*")), t7 = A.TypedReducer$(A.subscription_reducer___updateEditing$closure(), t1, type$.legacy_EditSubscription), t8 = A.TypedReducer$(new A.editingReducer_closure98(), t1, A.findType("UpdateSubscription*")), t9 = A.TypedReducer$(A.subscription_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "subscriptionListReducer", "$get$subscriptionListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.subscription_reducer___sortSubscriptions$closure(), t1, A.findType("SortSubscriptions*")), t3 = A.TypedReducer$(A.subscription_reducer___filterSubscriptionsByState$closure(), t1, A.findType("FilterSubscriptionsByState*")), t4 = A.TypedReducer$(A.subscription_reducer___filterSubscriptions$closure(), t1, A.findType("FilterSubscriptions*")), t5 = A.TypedReducer$(A.subscription_reducer___filterSubscriptionsByCustom1$closure(), t1, A.findType("FilterSubscriptionsByCustom1*")), t6 = A.TypedReducer$(A.subscription_reducer___filterSubscriptionsByCustom2$closure(), t1, A.findType("FilterSubscriptionsByCustom2*")), t7 = A.TypedReducer$(A.subscription_reducer___startListMultiselect$closure(), t1, A.findType("StartSubscriptionMultiselect*")), t8 = A.TypedReducer$(A.subscription_reducer___addToListMultiselect$closure(), t1, A.findType("AddToSubscriptionMultiselect*")), t9 = A.TypedReducer$(A.subscription_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromSubscriptionMultiselect*")), t10 = A.TypedReducer$(A.subscription_reducer___clearListMultiselect$closure(), t1, A.findType("ClearSubscriptionMultiselect*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "subscriptionsReducer", "$get$subscriptionsReducer", () => { var t1 = type$.legacy_SubscriptionState, t2 = A.TypedReducer$(A.subscription_reducer___updateSubscription$closure(), t1, A.findType("SaveSubscriptionSuccess*")), t3 = A.TypedReducer$(A.subscription_reducer___addSubscription$closure(), t1, A.findType("AddSubscriptionSuccess*")), t4 = A.TypedReducer$(A.subscription_reducer___setLoadedSubscriptions$closure(), t1, A.findType("LoadSubscriptionsSuccess*")), t5 = A.TypedReducer$(A.subscription_reducer___setLoadedSubscription$closure(), t1, A.findType("LoadSubscriptionSuccess*")), t6 = A.TypedReducer$(A.subscription_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.subscription_reducer___archiveSubscriptionSuccess$closure(), t1, A.findType("ArchiveSubscriptionsSuccess*")), t8 = A.TypedReducer$(A.subscription_reducer___deleteSubscriptionSuccess$closure(), t1, A.findType("DeleteSubscriptionsSuccess*")), t9 = A.TypedReducer$(A.subscription_reducer___restoreSubscriptionSuccess$closure(), t1, A.findType("RestoreSubscriptionsSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredSubscriptionList", "$get$memoizedFilteredSubscriptionList", () => A.memo4(new A.memoizedFilteredSubscriptionList_closure(), type$.legacy_SelectionState, A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$subscriptionStateSerializer", "$get$_$subscriptionStateSerializer", () => new A._$SubscriptionStateSerializer()); _lazyOld($, "_$subscriptionUIStateSerializer", "$get$_$subscriptionUIStateSerializer", () => new A._$SubscriptionUIStateSerializer()); _lazyOld($, "forceSelectedReducer17", "$get$forceSelectedReducer2", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure23(), t1, type$.legacy_ViewTask), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure24(), t1, type$.legacy_ViewTaskList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure25(), t1, A.findType("FilterTasksByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure26(), t1, A.findType("FilterTasks*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure27(), t1, A.findType("FilterTasksByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure28(), t1, A.findType("FilterTasksByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure29(), t1, A.findType("FilterTasksByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure30(), t1, A.findType("FilterTasksByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer11", "$get$tabIndexReducer2", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure5(), t1, A.findType("UpdateTaskTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure6(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "kanbanLastUpdatedReducer", "$get$kanbanLastUpdatedReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.kanbanLastUpdatedReducer_closure(), t1, A.findType("UpdateKanban*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "editingTimeReducer", "$get$editingTimeReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.editingTimeReducer_closure(), t1, type$.legacy_EditTask), t3 = A.TypedReducer$(new A.editingTimeReducer_closure0(), t1, A.findType("EditTaskTime*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer17", "$get$selectedIdReducer2", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure49(), t1, A.findType("ArchiveTaskSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure50(), t1, A.findType("DeleteTaskSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure51(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure52(), t1, type$.legacy_ViewTask), t6 = A.TypedReducer$(new A.selectedIdReducer_closure53(), t1, A.findType("AddTaskSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure54(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure55(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure56(), t1, A.findType("SortTasks*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure57(), t1, A.findType("FilterTasks*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure58(), t1, A.findType("FilterTasksByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure59(), t1, A.findType("FilterTasksByStatus*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure60(), t1, A.findType("FilterTasksByCustom1*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure61(), t1, A.findType("FilterTasksByCustom2*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure62(), t1, A.findType("FilterTasksByCustom3*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure63(), t1, A.findType("FilterTasksByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer17", "$get$editingReducer2", () => { var t1 = type$.legacy_TaskEntity, t2 = A.TypedReducer$(A.task_reducer___updateEditing$closure(), t1, A.findType("SaveTaskSuccess*")), t3 = A.TypedReducer$(A.task_reducer___updateEditing$closure(), t1, A.findType("AddTaskSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure18(), t1, A.findType("RestoreTaskSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure19(), t1, A.findType("ArchiveTaskSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure20(), t1, A.findType("StartTasksSuccess*")), t7 = A.TypedReducer$(new A.editingReducer_closure21(), t1, A.findType("StopTasksSuccess*")), t8 = A.TypedReducer$(new A.editingReducer_closure22(), t1, A.findType("DeleteTaskSuccess*")), t9 = A.TypedReducer$(A.task_reducer___updateEditing$closure(), t1, type$.legacy_EditTask), t10 = A.TypedReducer$(new A.editingReducer_closure23(), t1, A.findType("UpdateTask*")), t11 = A.TypedReducer$(A.task_reducer___addTaskTime$closure(), t1, A.findType("AddTaskTime*")), t12 = A.TypedReducer$(A.task_reducer___removeTaskTime$closure(), t1, A.findType("DeleteTaskTime*")), t13 = A.TypedReducer$(A.task_reducer___updateTaskTime$closure(), t1, A.findType("UpdateTaskTime*")), t14 = A.TypedReducer$(A.task_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "taskListReducer", "$get$taskListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.task_reducer___sortTasks$closure(), t1, A.findType("SortTasks*")), t3 = A.TypedReducer$(A.task_reducer___filterTasksByState$closure(), t1, A.findType("FilterTasksByState*")), t4 = A.TypedReducer$(A.task_reducer___filterTasksByStatus$closure(), t1, A.findType("FilterTasksByStatus*")), t5 = A.TypedReducer$(A.task_reducer___filterTasks$closure(), t1, A.findType("FilterTasks*")), t6 = A.TypedReducer$(A.task_reducer___filterTasksByCustom1$closure(), t1, A.findType("FilterTasksByCustom1*")), t7 = A.TypedReducer$(A.task_reducer___filterTasksByCustom2$closure(), t1, A.findType("FilterTasksByCustom2*")), t8 = A.TypedReducer$(A.task_reducer___startListMultiselect$closure(), t1, A.findType("StartTaskMultiselect*")), t9 = A.TypedReducer$(A.task_reducer___addToListMultiselect$closure(), t1, A.findType("AddToTaskMultiselect*")), t10 = A.TypedReducer$(A.task_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromTaskMultiselect*")), t11 = A.TypedReducer$(A.task_reducer___clearListMultiselect$closure(), t1, A.findType("ClearTaskMultiselect*")), t12 = A.TypedReducer$(A.task_reducer___viewTaskList$closure(), t1, type$.legacy_ViewTaskList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "tasksReducer", "$get$tasksReducer", () => { var t1 = type$.legacy_TaskState, t2 = A.TypedReducer$(A.task_reducer___updateTask$closure(), t1, A.findType("SaveTaskSuccess*")), t3 = A.TypedReducer$(A.task_reducer___addTask$closure(), t1, A.findType("AddTaskSuccess*")), t4 = A.TypedReducer$(A.task_reducer___setLoadedTasks$closure(), t1, A.findType("LoadTasksSuccess*")), t5 = A.TypedReducer$(A.task_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = A.TypedReducer$(A.task_reducer___setLoadedTask$closure(), t1, A.findType("LoadTaskSuccess*")), t7 = A.TypedReducer$(A.task_reducer___archiveTaskSuccess$closure(), t1, A.findType("ArchiveTaskSuccess*")), t8 = A.TypedReducer$(A.task_reducer___startTaskSuccess$closure(), t1, A.findType("StartTasksSuccess*")), t9 = A.TypedReducer$(A.task_reducer___stopTaskSuccess$closure(), t1, A.findType("StopTasksSuccess*")), t10 = A.TypedReducer$(A.task_reducer___deleteTaskSuccess$closure(), t1, A.findType("DeleteTaskSuccess*")), t11 = A.TypedReducer$(A.task_reducer___restoreTaskSuccess$closure(), t1, A.findType("RestoreTaskSuccess*")), t12 = A.TypedReducer$(A.task_reducer___sortTasksSuccess$closure(), t1, A.findType("SortTasksSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedTaskList", "$get$memoizedTaskList", () => A.memo5(new A.memoizedTaskList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedKanbanTaskList", "$get$memoizedKanbanTaskList", () => A.memo9(new A.memoizedKanbanTaskList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredTaskList", "$get$memoizedFilteredTaskList", () => A.memo9(new A.memoizedFilteredTaskList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedTaskStatsForClient", "$get$memoizedTaskStatsForClient", () => A.memo2(new A.memoizedTaskStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedTaskStatsForProject", "$get$memoizedTaskStatsForProject", () => A.memo2(new A.memoizedTaskStatsForProject_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedTaskStatsForUser", "$get$memoizedTaskStatsForUser", () => A.memo2(new A.memoizedTaskStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats)); _lazyOld($, "_$taskStateSerializer", "$get$_$taskStateSerializer", () => new A._$TaskStateSerializer()); _lazyOld($, "_$taskUIStateSerializer", "$get$_$taskUIStateSerializer", () => new A._$TaskUIStateSerializer()); _lazyOld($, "forceSelectedReducer18", "$get$forceSelectedReducer17", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure135(), t1, type$.legacy_ViewTaskStatus), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure136(), t1, type$.legacy_ViewTaskStatusList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure137(), t1, A.findType("FilterTaskStatusesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure138(), t1, A.findType("FilterTaskStatuses*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure139(), t1, A.findType("FilterTaskStatusesByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure140(), t1, A.findType("FilterTaskStatusesByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure141(), t1, A.findType("FilterTaskStatusesByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure142(), t1, A.findType("FilterTaskStatusesByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer18", "$get$selectedIdReducer17", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure271(), t1, A.findType("ArchiveTaskStatusesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure272(), t1, A.findType("DeleteTaskStatusesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure273(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure274(), t1, type$.legacy_ViewTaskStatus), t6 = A.TypedReducer$(new A.selectedIdReducer_closure275(), t1, A.findType("AddTaskStatusSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure276(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure277(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure278(), t1, A.findType("SortTaskStatuses*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure279(), t1, A.findType("FilterTaskStatuses*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure280(), t1, A.findType("FilterTaskStatusesByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure281(), t1, A.findType("FilterTaskStatusesByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure282(), t1, A.findType("FilterTaskStatusesByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure283(), t1, A.findType("FilterTaskStatusesByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure284(), t1, A.findType("FilterTaskStatusesByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure285(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer18", "$get$editingReducer17", () => { var t1 = type$.legacy_TaskStatusEntity, t2 = A.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, A.findType("SaveTaskStatusSuccess*")), t3 = A.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, A.findType("AddTaskStatusSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure91(), t1, A.findType("RestoreTaskStatusesSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure92(), t1, A.findType("ArchiveTaskStatusesSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure93(), t1, A.findType("DeleteTaskStatusesSuccess*")), t7 = A.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, type$.legacy_EditTaskStatus), t8 = A.TypedReducer$(new A.editingReducer_closure94(), t1, A.findType("UpdateTaskStatus*")), t9 = A.TypedReducer$(A.task_status_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "taskStatusListReducer", "$get$taskStatusListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.task_status_reducer___sortTaskStatuses$closure(), t1, A.findType("SortTaskStatuses*")), t3 = A.TypedReducer$(A.task_status_reducer___filterTaskStatusesByState$closure(), t1, A.findType("FilterTaskStatusesByState*")), t4 = A.TypedReducer$(A.task_status_reducer___filterTaskStatuses$closure(), t1, A.findType("FilterTaskStatuses*")), t5 = A.TypedReducer$(A.task_status_reducer___filterTaskStatusesByCustom1$closure(), t1, A.findType("FilterTaskStatusesByCustom1*")), t6 = A.TypedReducer$(A.task_status_reducer___filterTaskStatusesByCustom2$closure(), t1, A.findType("FilterTaskStatusesByCustom2*")), t7 = A.TypedReducer$(A.task_status_reducer___startListMultiselect$closure(), t1, A.findType("StartTaskStatusMultiselect*")), t8 = A.TypedReducer$(A.task_status_reducer___addToListMultiselect$closure(), t1, A.findType("AddToTaskStatusMultiselect*")), t9 = A.TypedReducer$(A.task_status_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromTaskStatusMultiselect*")), t10 = A.TypedReducer$(A.task_status_reducer___clearListMultiselect$closure(), t1, A.findType("ClearTaskStatusMultiselect*")), t11 = A.TypedReducer$(A.task_status_reducer___viewTaskStatusList$closure(), t1, type$.legacy_ViewTaskStatusList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "taskStatusesReducer", "$get$taskStatusesReducer", () => { var t1 = type$.legacy_TaskStatusState, t2 = A.TypedReducer$(A.task_status_reducer___updateTaskStatus$closure(), t1, A.findType("SaveTaskStatusSuccess*")), t3 = A.TypedReducer$(A.task_status_reducer___addTaskStatus$closure(), t1, A.findType("AddTaskStatusSuccess*")), t4 = A.TypedReducer$(A.task_status_reducer___setLoadedTaskStatuses$closure(), t1, A.findType("LoadTaskStatusesSuccess*")), t5 = A.TypedReducer$(A.task_status_reducer___setLoadedTaskStatus$closure(), t1, A.findType("LoadTaskStatusSuccess*")), t6 = A.TypedReducer$(A.task_status_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.task_status_reducer___archiveTaskStatusSuccess$closure(), t1, A.findType("ArchiveTaskStatusesSuccess*")), t8 = A.TypedReducer$(A.task_status_reducer___deleteTaskStatusSuccess$closure(), t1, A.findType("DeleteTaskStatusesSuccess*")), t9 = A.TypedReducer$(A.task_status_reducer___restoreTaskStatusSuccess$closure(), t1, A.findType("RestoreTaskStatusesSuccess*")), t10 = A.TypedReducer$(A.task_status_reducer___sortTaskStatusSuccess$closure(), t1, A.findType("SortTasksSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedSortedActiveTaskStatusIds", "$get$memoizedSortedActiveTaskStatusIds", () => A.memo2(new A.memoizedSortedActiveTaskStatusIds_closure(), type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedDropdownTaskStatusList", "$get$memoizedDropdownTaskStatusList", () => A.memo4(new A.memoizedDropdownTaskStatusList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_StaticState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredTaskStatusList", "$get$memoizedFilteredTaskStatusList", () => A.memo4(new A.memoizedFilteredTaskStatusList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedCalculateTaskStatusAmount", "$get$memoizedCalculateTaskStatusAmount", () => A.memo2(new A.memoizedCalculateTaskStatusAmount_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_int)); _lazyOld($, "memoizedTaskStatsForTaskStatus", "$get$memoizedTaskStatsForTaskStatus", () => A.memo2(new A.memoizedTaskStatsForTaskStatus_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats)); _lazyOld($, "_$taskStatusStateSerializer", "$get$_$taskStatusStateSerializer", () => new A._$TaskStatusStateSerializer()); _lazyOld($, "_$taskStatusUIStateSerializer", "$get$_$taskStatusUIStateSerializer", () => new A._$TaskStatusUIStateSerializer()); _lazyOld($, "forceSelectedReducer19", "$get$forceSelectedReducer8", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure67(), t1, type$.legacy_ViewTaxRate), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure68(), t1, type$.legacy_ViewTaxRateList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure69(), t1, A.findType("FilterTaxRatesByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure70(), t1, A.findType("FilterTaxRates*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer19", "$get$selectedIdReducer8", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure134(), t1, A.findType("ArchiveTaxRatesSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure135(), t1, A.findType("DeleteTaxRatesSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure136(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure137(), t1, type$.legacy_ViewTaxRate), t6 = A.TypedReducer$(new A.selectedIdReducer_closure138(), t1, A.findType("AddTaxRateSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure139(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure140(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure141(), t1, A.findType("SortTaxRates*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure142(), t1, A.findType("FilterTaxRates*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure143(), t1, A.findType("FilterTaxRatesByState*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer19", "$get$editingReducer8", () => { var t1 = type$.legacy_TaxRateEntity, t2 = A.TypedReducer$(A.tax_rate_reducer___updateEditing$closure(), t1, A.findType("SaveTaxRateSuccess*")), t3 = A.TypedReducer$(A.tax_rate_reducer___updateEditing$closure(), t1, A.findType("AddTaxRateSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure41(), t1, A.findType("RestoreTaxRatesSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure42(), t1, A.findType("ArchiveTaxRatesSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure43(), t1, A.findType("DeleteTaxRatesSuccess*")), t7 = A.TypedReducer$(A.tax_rate_reducer___updateEditing$closure(), t1, type$.legacy_EditTaxRate), t8 = A.TypedReducer$(new A.editingReducer_closure44(), t1, A.findType("UpdateTaxRate*")), t9 = A.TypedReducer$(A.tax_rate_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "taxRateListReducer", "$get$taxRateListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.tax_rate_reducer___sortTaxRates$closure(), t1, A.findType("SortTaxRates*")), t3 = A.TypedReducer$(A.tax_rate_reducer___filterTaxRatesByState$closure(), t1, A.findType("FilterTaxRatesByState*")), t4 = A.TypedReducer$(A.tax_rate_reducer___filterTaxRates$closure(), t1, A.findType("FilterTaxRates*")), t5 = A.TypedReducer$(A.tax_rate_reducer___startListMultiselect$closure(), t1, A.findType("StartTaxRateMultiselect*")), t6 = A.TypedReducer$(A.tax_rate_reducer___addToListMultiselect$closure(), t1, A.findType("AddToTaxRateMultiselect*")), t7 = A.TypedReducer$(A.tax_rate_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromTaxRateMultiselect*")), t8 = A.TypedReducer$(A.tax_rate_reducer___clearListMultiselect$closure(), t1, A.findType("ClearTaxRateMultiselect*")), t9 = A.TypedReducer$(A.tax_rate_reducer___viewTaxRateList$closure(), t1, type$.legacy_ViewTaxRateList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "taxRatesReducer", "$get$taxRatesReducer", () => { var t1 = type$.legacy_TaxRateState, t2 = A.TypedReducer$(A.tax_rate_reducer___updateTaxRate$closure(), t1, A.findType("SaveTaxRateSuccess*")), t3 = A.TypedReducer$(A.tax_rate_reducer___addTaxRate$closure(), t1, A.findType("AddTaxRateSuccess*")), t4 = A.TypedReducer$(A.tax_rate_reducer___setLoadedTaxRates$closure(), t1, A.findType("LoadTaxRatesSuccess*")), t5 = A.TypedReducer$(A.tax_rate_reducer___setLoadedTaxRate$closure(), t1, A.findType("LoadTaxRateSuccess*")), t6 = A.TypedReducer$(A.tax_rate_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.tax_rate_reducer___archiveTaxRateSuccess$closure(), t1, A.findType("ArchiveTaxRatesSuccess*")), t8 = A.TypedReducer$(A.tax_rate_reducer___deleteTaxRateSuccess$closure(), t1, A.findType("DeleteTaxRatesSuccess*")), t9 = A.TypedReducer$(A.tax_rate_reducer___restoreTaxRateSuccess$closure(), t1, A.findType("RestoreTaxRatesSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredTaxRateList", "$get$memoizedFilteredTaxRateList", () => A.memo4(new A.memoizedFilteredTaxRateList_closure(), type$.legacy_SelectionState, A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$taxRateStateSerializer", "$get$_$taxRateStateSerializer", () => new A._$TaxRateStateSerializer()); _lazyOld($, "_$taxRateUIStateSerializer", "$get$_$taxRateUIStateSerializer", () => new A._$TaxRateUIStateSerializer()); _lazyOld($, "forceSelectedReducer20", "$get$forceSelectedReducer13", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure103(), t1, type$.legacy_ViewToken), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure104(), t1, type$.legacy_ViewTokenList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure105(), t1, A.findType("FilterTokensByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure106(), t1, A.findType("FilterTokens*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure107(), t1, A.findType("FilterTokensByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure108(), t1, A.findType("FilterTokensByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure109(), t1, A.findType("FilterTokensByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure110(), t1, A.findType("FilterTokensByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer20", "$get$selectedIdReducer13", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure207(), t1, A.findType("ArchiveTokensSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure208(), t1, A.findType("DeleteTokensSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure209(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure210(), t1, type$.legacy_ViewToken), t6 = A.TypedReducer$(new A.selectedIdReducer_closure211(), t1, A.findType("AddTokenSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure212(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure213(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure214(), t1, A.findType("SortTokens*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure215(), t1, A.findType("FilterTokens*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure216(), t1, A.findType("FilterTokensByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure217(), t1, A.findType("FilterTokensByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure218(), t1, A.findType("FilterTokensByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure219(), t1, A.findType("FilterTokensByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure220(), t1, A.findType("FilterTokensByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure221(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer20", "$get$editingReducer13", () => { var t1 = type$.legacy_TokenEntity, t2 = A.TypedReducer$(A.token_reducer___updateEditing$closure(), t1, A.findType("SaveTokenSuccess*")), t3 = A.TypedReducer$(A.token_reducer___updateEditing$closure(), t1, A.findType("AddTokenSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure68(), t1, A.findType("RestoreTokensSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure69(), t1, A.findType("ArchiveTokensSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure70(), t1, A.findType("DeleteTokensSuccess*")), t7 = A.TypedReducer$(A.token_reducer___updateEditing$closure(), t1, type$.legacy_EditToken), t8 = A.TypedReducer$(new A.editingReducer_closure71(), t1, A.findType("UpdateToken*")), t9 = A.TypedReducer$(A.token_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "tokenListReducer", "$get$tokenListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.token_reducer___sortTokens$closure(), t1, A.findType("SortTokens*")), t3 = A.TypedReducer$(A.token_reducer___filterTokensByState$closure(), t1, A.findType("FilterTokensByState*")), t4 = A.TypedReducer$(A.token_reducer___filterTokens$closure(), t1, A.findType("FilterTokens*")), t5 = A.TypedReducer$(A.token_reducer___filterTokensByCustom1$closure(), t1, A.findType("FilterTokensByCustom1*")), t6 = A.TypedReducer$(A.token_reducer___filterTokensByCustom2$closure(), t1, A.findType("FilterTokensByCustom2*")), t7 = A.TypedReducer$(A.token_reducer___startListMultiselect$closure(), t1, A.findType("StartTokenMultiselect*")), t8 = A.TypedReducer$(A.token_reducer___addToListMultiselect$closure(), t1, A.findType("AddToTokenMultiselect*")), t9 = A.TypedReducer$(A.token_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromTokenMultiselect*")), t10 = A.TypedReducer$(A.token_reducer___clearListMultiselect$closure(), t1, A.findType("ClearTokenMultiselect*")), t11 = A.TypedReducer$(A.token_reducer___viewTokenList$closure(), t1, type$.legacy_ViewTokenList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "tokensReducer", "$get$tokensReducer", () => { var t1 = type$.legacy_TokenState, t2 = A.TypedReducer$(A.token_reducer___updateToken$closure(), t1, A.findType("SaveTokenSuccess*")), t3 = A.TypedReducer$(A.token_reducer___addToken$closure(), t1, A.findType("AddTokenSuccess*")), t4 = A.TypedReducer$(A.token_reducer___setLoadedTokens$closure(), t1, A.findType("LoadTokensSuccess*")), t5 = A.TypedReducer$(A.token_reducer___setLoadedToken$closure(), t1, A.findType("LoadTokenSuccess*")), t6 = A.TypedReducer$(A.token_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.token_reducer___archiveTokenSuccess$closure(), t1, A.findType("ArchiveTokensSuccess*")), t8 = A.TypedReducer$(A.token_reducer___deleteTokenSuccess$closure(), t1, A.findType("DeleteTokensSuccess*")), t9 = A.TypedReducer$(A.token_reducer___restoreTokenSuccess$closure(), t1, A.findType("RestoreTokensSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredTokenList", "$get$memoizedFilteredTokenList", () => A.memo4(new A.memoizedFilteredTokenList_closure(), type$.legacy_SelectionState, A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$tokenStateSerializer", "$get$_$tokenStateSerializer", () => new A._$TokenStateSerializer()); _lazyOld($, "_$tokenUIStateSerializer", "$get$_$tokenUIStateSerializer", () => new A._$TokenUIStateSerializer()); _lazyOld($, "_$listUIStateSerializer", "$get$_$listUIStateSerializer", () => new A._$ListUIStateSerializer()); _lazyOld($, "sortFieldsReducer", "$get$sortFieldsReducer", () => { var t1 = A.findType("BuiltMap*"), t2 = A.TypedReducer$(new A.sortFieldsReducer_closure(), t1, A.findType("SortClients*")), t3 = A.TypedReducer$(new A.sortFieldsReducer_closure0(), t1, A.findType("SortProducts*")), t4 = A.TypedReducer$(new A.sortFieldsReducer_closure1(), t1, A.findType("SortInvoices*")), t5 = A.TypedReducer$(new A.sortFieldsReducer_closure2(), t1, A.findType("SortPayments*")), t6 = A.TypedReducer$(new A.sortFieldsReducer_closure3(), t1, A.findType("SortRecurringInvoices*")), t7 = A.TypedReducer$(new A.sortFieldsReducer_closure4(), t1, A.findType("SortQuotes*")), t8 = A.TypedReducer$(new A.sortFieldsReducer_closure5(), t1, A.findType("SortCredits*")), t9 = A.TypedReducer$(new A.sortFieldsReducer_closure6(), t1, A.findType("SortProjects*")), t10 = A.TypedReducer$(new A.sortFieldsReducer_closure7(), t1, A.findType("SortTasks*")), t11 = A.TypedReducer$(new A.sortFieldsReducer_closure8(), t1, A.findType("SortVendors*")), t12 = A.TypedReducer$(new A.sortFieldsReducer_closure9(), t1, A.findType("SortExpenses*")), t13 = A.TypedReducer$(new A.sortFieldsReducer_closure10(), t1, A.findType("SortPaymentTerms*")), t14 = A.TypedReducer$(new A.sortFieldsReducer_closure11(), t1, A.findType("SortTaxRates*")), t15 = A.TypedReducer$(new A.sortFieldsReducer_closure12(), t1, A.findType("SortCompanyGateways*")), t16 = A.TypedReducer$(new A.sortFieldsReducer_closure13(), t1, A.findType("SortUsers*")), t17 = A.TypedReducer$(new A.sortFieldsReducer_closure14(), t1, A.findType("SortGroups*")), t18 = A.TypedReducer$(new A.sortFieldsReducer_closure15(), t1, A.findType("SortDesigns*")), t19 = A.TypedReducer$(new A.sortFieldsReducer_closure16(), t1, A.findType("SortTokens*")), t20 = A.TypedReducer$(new A.sortFieldsReducer_closure17(), t1, A.findType("SortWebhooks*")), t21 = A.TypedReducer$(new A.sortFieldsReducer_closure18(), t1, A.findType("SortExpenseCategories*")), t22 = A.TypedReducer$(new A.sortFieldsReducer_closure19(), t1, A.findType("SortTaskStatuses*")), t23 = A.TypedReducer$(new A.sortFieldsReducer_closure20(), t1, A.findType("SortSubscriptions*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call(), t22.get$$call(), t23.get$$call()], A.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "sidebarEditorReducer", "$get$sidebarEditorReducer", () => { var t1 = A.findType("BuiltMap*"), t2 = A.TypedReducer$(new A.sidebarEditorReducer_closure(), t1, A.findType("ToggleEditorLayout*")); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "sidebarViewerReducer", "$get$sidebarViewerReducer", () => { var t1 = A.findType("BuiltMap*"), t2 = A.TypedReducer$(new A.sidebarViewerReducer_closure(), t1, A.findType("ToggleViewerLayout*")); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "menuVisibleReducer", "$get$menuVisibleReducer", () => { var t1 = type$.legacy_bool, t2 = type$.legacy_UpdateUserPreferences, t3 = A.TypedReducer$(new A.menuVisibleReducer_closure(), t1, t2); t2 = A.TypedReducer$(new A.menuVisibleReducer_closure0(), t1, t2); return A.combineReducers(A._setArrayType([t3.get$$call(), t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "textScaleFactorReducer", "$get$textScaleFactorReducer", () => { var t1 = type$.legacy_double, t2 = A.TypedReducer$(new A.textScaleFactorReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "historyVisibleReducer", "$get$historyVisibleReducer", () => { var t1 = type$.legacy_bool, t2 = type$.legacy_UpdateUserPreferences, t3 = A.TypedReducer$(new A.historyVisibleReducer_closure(), t1, t2); t2 = A.TypedReducer$(new A.historyVisibleReducer_closure0(), t1, t2); return A.combineReducers(A._setArrayType([t3.get$$call(), t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "hideDesktopWarningReducer", "$get$hideDesktopWarningReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.hideDesktopWarningReducer_closure(), t1, A.findType("DismissNativeWarningPermanently*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "hideGatewayWarningReducer", "$get$hideGatewayWarningReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.hideGatewayWarningReducer_closure(), t1, A.findType("DismissGatewayWarningPermanently*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "hideReviewAppReducer", "$get$hideReviewAppReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.hideReviewAppReducer_closure(), t1, A.findType("DismissReviewAppPermanently*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "layoutReducer", "$get$layoutReducer", () => { var t1 = type$.legacy_AppLayout, t2 = A.TypedReducer$(new A.layoutReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "moduleLayoutReducer", "$get$moduleLayoutReducer", () => { var t1 = type$.legacy_ModuleLayout, t2 = A.TypedReducer$(new A.moduleLayoutReducer_closure(), t1, type$.legacy_UpdateUserPreferences), t3 = A.TypedReducer$(new A.moduleLayoutReducer_closure0(), t1, A.findType("SwitchListTableLayout*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "rowsPerPageReducer", "$get$rowsPerPageReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.rowsPerPageReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "manuSidebarReducer", "$get$manuSidebarReducer", () => { var t1 = type$.legacy_AppSidebarMode, t2 = A.TypedReducer$(new A.manuSidebarReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "historySidebarReducer", "$get$historySidebarReducer", () => { var t1 = type$.legacy_AppSidebarMode, t2 = A.TypedReducer$(new A.historySidebarReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "darkModeReducer", "$get$darkModeReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.darkModeReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "enableJspdfReducer", "$get$enableJspdfReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.enableJspdfReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "enableTooltipsReducer", "$get$enableTooltipsReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.enableTooltipsReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "enableFlexibleSearchReducer", "$get$enableFlexibleSearchReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.enableFlexibleSearchReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "persistDataReducer", "$get$persistDataReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.persistDataReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "persistUIReducer", "$get$persistUIReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.persistUIReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "showKanbanReducer", "$get$showKanbanReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.showKanbanReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "isFilterVisibleReducer", "$get$isFilterVisibleReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.isFilterVisibleReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "longPressReducer", "$get$longPressReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.longPressReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tapSelectedToEditReducer", "$get$tapSelectedToEditReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.tapSelectedToEditReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "isPreviewVisibleReducer", "$get$isPreviewVisibleReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.isPreviewVisibleReducer_closure(), t1, A.findType("TogglePreviewSidebar*")), t3 = A.TypedReducer$(new A.isPreviewVisibleReducer_closure0(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "requireAuthenticationReducer", "$get$requireAuthenticationReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.requireAuthenticationReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "colorThemeReducer", "$get$colorThemeReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.colorThemeReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "showPdfPreviewReducer", "$get$showPdfPreviewReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.showPdfPreviewReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "editAfterSavingReducer", "$get$editAfterSavingReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.editAfterSavingReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "enableTouchEventsReducer", "$get$enableTouchEventsReducer", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.enableTouchEventsReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "customColorsReducer", "$get$customColorsReducer", () => { var t1 = A.findType("BuiltMap*"), t2 = A.TypedReducer$(new A.customColorsReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return A.combineReducers(A._setArrayType([t2.get$$call()], A.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "historyReducer", "$get$historyReducer", () => { var t1 = A.findType("BuiltList*"), t2 = A.TypedReducer$(new A.historyReducer_closure(), t1, A.findType("PopLastHistory*")), t3 = A.TypedReducer$(new A.historyReducer_closure0(), t1, type$.legacy_ViewDashboard), t4 = A.TypedReducer$(new A.historyReducer_closure1(), t1, type$.legacy_ViewReports), t5 = A.TypedReducer$(new A.historyReducer_closure2(), t1, type$.legacy_ViewSettings), t6 = A.TypedReducer$(new A.historyReducer_closure3(), t1, type$.legacy_ViewClient), t7 = A.TypedReducer$(new A.historyReducer_closure4(), t1, type$.legacy_EditClient), t8 = A.TypedReducer$(new A.historyReducer_closure5(), t1, type$.legacy_ViewProduct), t9 = A.TypedReducer$(new A.historyReducer_closure6(), t1, type$.legacy_EditProduct), t10 = A.TypedReducer$(new A.historyReducer_closure7(), t1, type$.legacy_ViewInvoice), t11 = A.TypedReducer$(new A.historyReducer_closure8(), t1, type$.legacy_EditInvoice), t12 = A.TypedReducer$(new A.historyReducer_closure9(), t1, A.findType("ViewPayment*")), t13 = A.TypedReducer$(new A.historyReducer_closure10(), t1, type$.legacy_EditPayment), t14 = A.TypedReducer$(new A.historyReducer_closure11(), t1, type$.legacy_ViewQuote), t15 = A.TypedReducer$(new A.historyReducer_closure12(), t1, type$.legacy_EditQuote), t16 = A.TypedReducer$(new A.historyReducer_closure13(), t1, type$.legacy_ViewTask), t17 = A.TypedReducer$(new A.historyReducer_closure14(), t1, type$.legacy_EditTask), t18 = A.TypedReducer$(new A.historyReducer_closure15(), t1, type$.legacy_ViewProject), t19 = A.TypedReducer$(new A.historyReducer_closure16(), t1, type$.legacy_EditProject), t20 = A.TypedReducer$(new A.historyReducer_closure17(), t1, type$.legacy_ViewVendor), t21 = A.TypedReducer$(new A.historyReducer_closure18(), t1, type$.legacy_EditVendor), t22 = A.TypedReducer$(new A.historyReducer_closure19(), t1, type$.legacy_ViewExpense), t23 = A.TypedReducer$(new A.historyReducer_closure20(), t1, type$.legacy_EditExpense), t24 = A.TypedReducer$(new A.historyReducer_closure21(), t1, type$.legacy_ViewCompanyGateway), t25 = A.TypedReducer$(new A.historyReducer_closure22(), t1, type$.legacy_EditCompanyGateway), t26 = A.TypedReducer$(new A.historyReducer_closure23(), t1, type$.legacy_ViewUser), t27 = A.TypedReducer$(new A.historyReducer_closure24(), t1, type$.legacy_EditUser), t28 = A.TypedReducer$(new A.historyReducer_closure25(), t1, type$.legacy_ViewGroup), t29 = A.TypedReducer$(new A.historyReducer_closure26(), t1, type$.legacy_EditGroup), t30 = A.TypedReducer$(new A.historyReducer_closure27(), t1, type$.legacy_ViewPurchaseOrder), t31 = A.TypedReducer$(new A.historyReducer_closure28(), t1, type$.legacy_EditPurchaseOrder), t32 = A.TypedReducer$(new A.historyReducer_closure29(), t1, type$.legacy_ViewRecurringExpense), t33 = A.TypedReducer$(new A.historyReducer_closure30(), t1, type$.legacy_EditRecurringExpense), t34 = A.TypedReducer$(new A.historyReducer_closure31(), t1, type$.legacy_ViewSubscription), t35 = A.TypedReducer$(new A.historyReducer_closure32(), t1, type$.legacy_EditSubscription), t36 = A.TypedReducer$(new A.historyReducer_closure33(), t1, type$.legacy_ViewTaskStatus), t37 = A.TypedReducer$(new A.historyReducer_closure34(), t1, type$.legacy_EditTaskStatus), t38 = A.TypedReducer$(new A.historyReducer_closure35(), t1, type$.legacy_ViewExpenseCategory), t39 = A.TypedReducer$(new A.historyReducer_closure36(), t1, type$.legacy_EditExpenseCategory), t40 = A.TypedReducer$(new A.historyReducer_closure37(), t1, type$.legacy_ViewRecurringInvoice), t41 = A.TypedReducer$(new A.historyReducer_closure38(), t1, type$.legacy_EditRecurringInvoice), t42 = A.TypedReducer$(new A.historyReducer_closure39(), t1, type$.legacy_ViewWebhook), t43 = A.TypedReducer$(new A.historyReducer_closure40(), t1, type$.legacy_EditWebhook), t44 = A.TypedReducer$(new A.historyReducer_closure41(), t1, type$.legacy_ViewToken), t45 = A.TypedReducer$(new A.historyReducer_closure42(), t1, type$.legacy_EditToken), t46 = A.TypedReducer$(new A.historyReducer_closure43(), t1, type$.legacy_ViewPaymentTerm), t47 = A.TypedReducer$(new A.historyReducer_closure44(), t1, type$.legacy_EditPaymentTerm), t48 = A.TypedReducer$(new A.historyReducer_closure45(), t1, type$.legacy_EditDesign), t49 = A.TypedReducer$(new A.historyReducer_closure46(), t1, type$.legacy_ViewCredit), t50 = A.TypedReducer$(new A.historyReducer_closure47(), t1, type$.legacy_EditCredit), t51 = A.TypedReducer$(new A.historyReducer_closure48(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call(), t22.get$$call(), t23.get$$call(), t24.get$$call(), t25.get$$call(), t26.get$$call(), t27.get$$call(), t28.get$$call(), t29.get$$call(), t30.get$$call(), t31.get$$call(), t32.get$$call(), t33.get$$call(), t34.get$$call(), t35.get$$call(), t36.get$$call(), t37.get$$call(), t38.get$$call(), t39.get$$call(), t40.get$$call(), t41.get$$call(), t42.get$$call(), t43.get$$call(), t44.get$$call(), t45.get$$call(), t46.get$$call(), t47.get$$call(), t48.get$$call(), t49.get$$call(), t50.get$$call(), t51.get$$call()], A.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "_$prefStateSerializer", "$get$_$prefStateSerializer", () => new A._$PrefStateSerializer()); _lazyOld($, "_$prefStateSortFieldSerializer", "$get$_$prefStateSortFieldSerializer", () => new A._$PrefStateSortFieldSerializer()); _lazyOld($, "_$companyPrefStateSerializer", "$get$_$companyPrefStateSerializer", () => new A._$CompanyPrefStateSerializer()); _lazyOld($, "_$appLayoutSerializer", "$get$_$appLayoutSerializer", () => new A._$AppLayoutSerializer()); _lazyOld($, "_$moduleLayoutSerializer", "$get$_$moduleLayoutSerializer", () => new A._$ModuleLayoutSerializer()); _lazyOld($, "_$appSidebarModeSerializer", "$get$_$appSidebarModeSerializer", () => new A._$AppSidebarModeSerializer()); _lazyOld($, "_$historyRecordSerializer", "$get$_$historyRecordSerializer", () => new A._$HistoryRecordSerializer()); _lazyOld($, "lastActivityReducer", "$get$lastActivityReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.lastActivityReducer_closure(), t1, A.findType("UpdateCurrentRoute*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "filterReducer", "$get$filterReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.filterReducer_closure(), t1, A.findType("FilterCompany*")), t3 = A.TypedReducer$(new A.filterReducer_closure0(), t1, type$.legacy_ViewDashboard); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "loadingEntityTypeReducer", "$get$loadingEntityTypeReducer", () => { var t1 = type$.legacy_EntityType, t2 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure(), t1, A.findType("StopLoading*")), t3 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure0(), t1, A.findType("LoadClientsRequest*")), t4 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure1(), t1, A.findType("LoadProductsRequest*")), t5 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure2(), t1, A.findType("LoadInvoicesRequest*")), t6 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure3(), t1, A.findType("LoadRecurringInvoicesRequest*")), t7 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure4(), t1, A.findType("LoadPaymentsRequest*")), t8 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure5(), t1, A.findType("LoadQuotesRequest*")), t9 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure6(), t1, A.findType("LoadCreditsRequest*")), t10 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure7(), t1, A.findType("LoadProjectsRequest*")), t11 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure8(), t1, A.findType("LoadTasksRequest*")), t12 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure9(), t1, A.findType("LoadVendorsRequest*")), t13 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure10(), t1, A.findType("LoadPurchaseOrdersRequest*")), t14 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure11(), t1, A.findType("LoadExpensesRequest*")), t15 = A.TypedReducer$(new A.loadingEntityTypeReducer_closure12(), t1, A.findType("LoadRecurringExpensesRequest*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "filterClearedAtReducer", "$get$filterClearedAtReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.filterClearedAtReducer_closure(), t1, A.findType("FilterCompany*")), t3 = A.TypedReducer$(new A.filterClearedAtReducer_closure0(), t1, type$.legacy_ViewDashboard); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "currentRouteReducer", "$get$currentRouteReducer", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.currentRouteReducer_closure(), t1, A.findType("UpdateCurrentRoute*")); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "selectedCompanyIndexReducer", "$get$selectedCompanyIndexReducer", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.selectedCompanyIndexReducer_closure(), t1, type$.legacy_SelectCompany); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "previewStackReducer", "$get$previewStackReducer", () => { var t1 = A.findType("BuiltList*"), t2 = A.TypedReducer$(new A.previewStackReducer_closure(), t1, type$.legacy_PreviewEntity), t3 = A.TypedReducer$(new A.previewStackReducer_closure0(), t1, A.findType("ClearPreviewStack*")), t4 = A.TypedReducer$(new A.previewStackReducer_closure1(), t1, A.findType("PopPreviewStack*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call()], A.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "filterStackReducer", "$get$filterStackReducer", () => { var t1 = A.findType("BuiltList*"), t2 = A.TypedReducer$(new A.filterStackReducer_closure(), t1, type$.legacy_ClearEntityFilter), t3 = A.TypedReducer$(new A.filterStackReducer_closure0(), t1, type$.legacy_FilterByEntity), t4 = A.TypedReducer$(new A.filterStackReducer_closure1(), t1, A.findType("PopFilterStack*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call()], A.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "_$uIStateSerializer", "$get$_$uIStateSerializer", () => new A._$UIStateSerializer()); _lazyOld($, "forceSelectedReducer21", "$get$forceSelectedReducer9", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure71(), t1, type$.legacy_ViewUser), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure72(), t1, type$.legacy_ViewUserList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure73(), t1, A.findType("FilterUsersByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure74(), t1, A.findType("FilterUsers*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure75(), t1, A.findType("FilterUsersByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure76(), t1, A.findType("FilterUsersByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure77(), t1, A.findType("FilterUsersByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure78(), t1, A.findType("FilterUsersByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer21", "$get$selectedIdReducer9", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure144(), t1, A.findType("ArchiveUserSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure145(), t1, A.findType("DeleteUserSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure146(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure147(), t1, type$.legacy_ViewUser), t6 = A.TypedReducer$(new A.selectedIdReducer_closure148(), t1, A.findType("AddUserSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure149(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure150(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure151(), t1, A.findType("SortUsers*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure152(), t1, A.findType("FilterUsers*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure153(), t1, A.findType("FilterUsersByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure154(), t1, A.findType("FilterUsersByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure155(), t1, A.findType("FilterUsersByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure156(), t1, A.findType("FilterUsersByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure157(), t1, A.findType("FilterUsersByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure158(), t1, type$.legacy_ClearEntitySelection), t17 = A.TypedReducer$(new A.selectedIdReducer_closure159(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer21", "$get$editingReducer9", () => { var t1 = type$.legacy_UserEntity, t2 = A.TypedReducer$(A.user_reducer___updateEditing$closure(), t1, A.findType("SaveUserSuccess*")), t3 = A.TypedReducer$(A.user_reducer___updateEditing$closure(), t1, A.findType("AddUserSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure45(), t1, A.findType("RestoreUserSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure46(), t1, A.findType("ArchiveUserSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure47(), t1, A.findType("DeleteUserSuccess*")), t7 = A.TypedReducer$(A.user_reducer___updateEditing$closure(), t1, type$.legacy_EditUser), t8 = A.TypedReducer$(new A.editingReducer_closure48(), t1, A.findType("UpdateUser*")), t9 = A.TypedReducer$(A.user_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "userListReducer", "$get$userListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.user_reducer___sortUsers$closure(), t1, A.findType("SortUsers*")), t3 = A.TypedReducer$(A.user_reducer___filterUsersByState$closure(), t1, A.findType("FilterUsersByState*")), t4 = A.TypedReducer$(A.user_reducer___filterUsers$closure(), t1, A.findType("FilterUsers*")), t5 = A.TypedReducer$(A.user_reducer___filterUsersByCustom1$closure(), t1, A.findType("FilterUsersByCustom1*")), t6 = A.TypedReducer$(A.user_reducer___filterUsersByCustom2$closure(), t1, A.findType("FilterUsersByCustom2*")), t7 = A.TypedReducer$(A.user_reducer___filterUsersByCustom3$closure(), t1, A.findType("FilterUsersByCustom3*")), t8 = A.TypedReducer$(A.user_reducer___filterUsersByCustom4$closure(), t1, A.findType("FilterUsersByCustom4*")), t9 = A.TypedReducer$(A.user_reducer___startListMultiselect$closure(), t1, A.findType("StartUserMultiselect*")), t10 = A.TypedReducer$(A.user_reducer___addToListMultiselect$closure(), t1, A.findType("AddToUserMultiselect*")), t11 = A.TypedReducer$(A.user_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromUserMultiselect*")), t12 = A.TypedReducer$(A.user_reducer___clearListMultiselect$closure(), t1, A.findType("ClearUserMultiselect*")), t13 = A.TypedReducer$(A.user_reducer___viewUserList$closure(), t1, type$.legacy_ViewUserList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "usersReducer", "$get$usersReducer", () => { var t1 = type$.legacy_UserState, t2 = A.TypedReducer$(A.user_reducer___updateUser$closure(), t1, A.findType("SaveUserSuccess*")), t3 = A.TypedReducer$(A.user_reducer___updateAuthUser$closure(), t1, A.findType("SaveAuthUserSuccess*")), t4 = A.TypedReducer$(A.user_reducer___connectOAuthUser$closure(), t1, A.findType("ConnecOAuthUserSuccess*")), t5 = A.TypedReducer$(A.user_reducer___connectGmailUser$closure(), t1, A.findType("ConnecGmailUserSuccess*")), t6 = A.TypedReducer$(A.user_reducer___addUser$closure(), t1, A.findType("AddUserSuccess*")), t7 = A.TypedReducer$(A.user_reducer___setLoadedUsers$closure(), t1, A.findType("LoadUsersSuccess*")), t8 = A.TypedReducer$(A.user_reducer___setLoadedUser$closure(), t1, A.findType("LoadUserSuccess*")), t9 = A.TypedReducer$(A.user_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t10 = A.TypedReducer$(A.user_reducer___archiveUserSuccess$closure(), t1, A.findType("ArchiveUserSuccess*")), t11 = A.TypedReducer$(A.user_reducer___deleteUserSuccess$closure(), t1, A.findType("DeleteUserSuccess*")), t12 = A.TypedReducer$(A.user_reducer___restoreUserSuccess$closure(), t1, A.findType("RestoreUserSuccess*")), t13 = A.TypedReducer$(A.user_reducer___removeUserSuccess$closure(), t1, A.findType("RemoveUserSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredUserList", "$get$memoizedFilteredUserList", () => A.memo5(new A.memoizedFilteredUserList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_String, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedUserList", "$get$memoizedUserList", () => A.memo1(new A.memoizedUserList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedGmailUserList", "$get$memoizedGmailUserList", () => A.memo1(new A.memoizedGmailUserList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedMicrosoftUserList", "$get$memoizedMicrosoftUserList", () => A.memo1(new A.memoizedMicrosoftUserList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String)); _lazyOld($, "_$userStateSerializer", "$get$_$userStateSerializer", () => new A._$UserStateSerializer()); _lazyOld($, "_$userUIStateSerializer", "$get$_$userUIStateSerializer", () => new A._$UserUIStateSerializer()); _lazyOld($, "forceSelectedReducer22", "$get$forceSelectedReducer3", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure31(), t1, type$.legacy_ViewVendor), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure32(), t1, type$.legacy_ViewVendorList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure33(), t1, A.findType("FilterVendorsByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure34(), t1, A.findType("FilterVendors*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure35(), t1, A.findType("FilterVendorsByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure36(), t1, A.findType("FilterVendorsByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure37(), t1, A.findType("FilterVendorsByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure38(), t1, A.findType("FilterVendorsByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer12", "$get$tabIndexReducer3", () => { var t1 = type$.legacy_int, t2 = A.TypedReducer$(new A.tabIndexReducer_closure7(), t1, A.findType("UpdateVendorTab*")), t3 = A.TypedReducer$(new A.tabIndexReducer_closure8(), t1, type$.legacy_PreviewEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer1", "$get$saveCompleterReducer0", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.saveCompleterReducer_closure0(), t1, type$.legacy_EditVendor); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer1", "$get$cancelCompleterReducer0", () => { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = A.TypedReducer$(new A.cancelCompleterReducer_closure0(), t1, type$.legacy_EditVendor); return A.combineReducers(A._setArrayType([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "editingVendorContactReducer", "$get$editingVendorContactReducer", () => { var t1 = type$.legacy_VendorContactEntity, t2 = A.TypedReducer$(A.vendor_reducer__editVendorContact$closure(), t1, type$.legacy_EditVendor), t3 = A.TypedReducer$(A.vendor_reducer__editVendorContact$closure(), t1, A.findType("EditVendorContact*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer22", "$get$selectedIdReducer3", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure64(), t1, A.findType("ArchiveVendorSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure65(), t1, A.findType("DeleteVendorSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure66(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure67(), t1, type$.legacy_ViewVendor), t6 = A.TypedReducer$(new A.selectedIdReducer_closure68(), t1, A.findType("AddVendorSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure69(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure70(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure71(), t1, A.findType("SortVendors*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure72(), t1, A.findType("FilterVendors*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure73(), t1, A.findType("FilterVendorsByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure74(), t1, A.findType("FilterVendorsByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure75(), t1, A.findType("FilterVendorsByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure76(), t1, A.findType("FilterVendorsByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure77(), t1, A.findType("FilterVendorsByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure78(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer22", "$get$editingReducer3", () => { var t1 = type$.legacy_VendorEntity, t2 = A.TypedReducer$(A.vendor_reducer___updateEditing$closure(), t1, A.findType("SaveVendorSuccess*")), t3 = A.TypedReducer$(A.vendor_reducer___updateEditing$closure(), t1, A.findType("AddVendorSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure24(), t1, A.findType("RestoreVendorSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure25(), t1, A.findType("ArchiveVendorSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure26(), t1, A.findType("DeleteVendorSuccess*")), t7 = A.TypedReducer$(A.vendor_reducer___updateEditing$closure(), t1, type$.legacy_EditVendor), t8 = A.TypedReducer$(new A.editingReducer_closure27(), t1, A.findType("UpdateVendor*")), t9 = A.TypedReducer$(A.vendor_reducer___addContact$closure(), t1, A.findType("AddVendorContact*")), t10 = A.TypedReducer$(A.vendor_reducer___removeContact$closure(), t1, A.findType("DeleteVendorContact*")), t11 = A.TypedReducer$(A.vendor_reducer___updateContact$closure(), t1, A.findType("UpdateVendorContact*")), t12 = A.TypedReducer$(A.vendor_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "vendorListReducer", "$get$vendorListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.vendor_reducer___sortVendors$closure(), t1, A.findType("SortVendors*")), t3 = A.TypedReducer$(A.vendor_reducer___filterVendorsByState$closure(), t1, A.findType("FilterVendorsByState*")), t4 = A.TypedReducer$(A.vendor_reducer___filterVendors$closure(), t1, A.findType("FilterVendors*")), t5 = A.TypedReducer$(A.vendor_reducer___filterVendorsByCustom1$closure(), t1, A.findType("FilterVendorsByCustom1*")), t6 = A.TypedReducer$(A.vendor_reducer___filterVendorsByCustom2$closure(), t1, A.findType("FilterVendorsByCustom2*")), t7 = A.TypedReducer$(A.vendor_reducer___filterVendorsByCustom3$closure(), t1, A.findType("FilterVendorsByCustom3*")), t8 = A.TypedReducer$(A.vendor_reducer___filterVendorsByCustom4$closure(), t1, A.findType("FilterVendorsByCustom4*")), t9 = A.TypedReducer$(A.vendor_reducer___startListMultiselect$closure(), t1, A.findType("StartVendorMultiselect*")), t10 = A.TypedReducer$(A.vendor_reducer___addToListMultiselect$closure(), t1, A.findType("AddToVendorMultiselect*")), t11 = A.TypedReducer$(A.vendor_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromVendorMultiselect*")), t12 = A.TypedReducer$(A.vendor_reducer___clearListMultiselect$closure(), t1, A.findType("ClearVendorMultiselect*")), t13 = A.TypedReducer$(A.vendor_reducer___viewVendorList$closure(), t1, type$.legacy_ViewVendorList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "vendorsReducer", "$get$vendorsReducer", () => { var t1 = type$.legacy_VendorState, t2 = A.TypedReducer$(A.vendor_reducer___updateVendor$closure(), t1, A.findType("SaveVendorSuccess*")), t3 = A.TypedReducer$(A.vendor_reducer___addVendor$closure(), t1, A.findType("AddVendorSuccess*")), t4 = A.TypedReducer$(A.vendor_reducer___setLoadedVendors$closure(), t1, A.findType("LoadVendorsSuccess*")), t5 = A.TypedReducer$(A.vendor_reducer___setLoadedVendor$closure(), t1, A.findType("LoadVendorSuccess*")), t6 = A.TypedReducer$(A.vendor_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.vendor_reducer___archiveVendorSuccess$closure(), t1, A.findType("ArchiveVendorSuccess*")), t8 = A.TypedReducer$(A.vendor_reducer___deleteVendorSuccess$closure(), t1, A.findType("DeleteVendorSuccess*")), t9 = A.TypedReducer$(A.vendor_reducer___restoreVendorSuccess$closure(), t1, A.findType("RestoreVendorSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownVendorList", "$get$memoizedDropdownVendorList", () => A.memo4(new A.memoizedDropdownVendorList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedFilteredVendorList", "$get$memoizedFilteredVendorList", () => A.memo6(new A.memoizedFilteredVendorList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String)); _lazyOld($, "memoizedVendorStatsForUser", "$get$memoizedVendorStatsForUser", () => A.memo2(new A.memoizedVendorStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_EntityStats)); _lazyOld($, "memoizedCalculateVendorBalance", "$get$memoizedCalculateVendorBalance", () => { var t1 = type$.legacy_String; return A.memo4(new A.memoizedCalculateVendorBalance_closure(), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_double); }); _lazyOld($, "_$vendorStateSerializer", "$get$_$vendorStateSerializer", () => new A._$VendorStateSerializer()); _lazyOld($, "_$vendorUIStateSerializer", "$get$_$vendorUIStateSerializer", () => new A._$VendorUIStateSerializer()); _lazyOld($, "forceSelectedReducer23", "$get$forceSelectedReducer14", () => { var t1 = type$.legacy_bool, t2 = A.TypedReducer$(new A.forceSelectedReducer_closure111(), t1, type$.legacy_ViewWebhook), t3 = A.TypedReducer$(new A.forceSelectedReducer_closure112(), t1, type$.legacy_ViewWebhookList), t4 = A.TypedReducer$(new A.forceSelectedReducer_closure113(), t1, A.findType("FilterWebhooksByState*")), t5 = A.TypedReducer$(new A.forceSelectedReducer_closure114(), t1, A.findType("FilterWebhooks*")), t6 = A.TypedReducer$(new A.forceSelectedReducer_closure115(), t1, A.findType("FilterWebhooksByCustom1*")), t7 = A.TypedReducer$(new A.forceSelectedReducer_closure116(), t1, A.findType("FilterWebhooksByCustom2*")), t8 = A.TypedReducer$(new A.forceSelectedReducer_closure117(), t1, A.findType("FilterWebhooksByCustom3*")), t9 = A.TypedReducer$(new A.forceSelectedReducer_closure118(), t1, A.findType("FilterWebhooksByCustom4*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer23", "$get$selectedIdReducer14", () => { var t1 = type$.legacy_String, t2 = A.TypedReducer$(new A.selectedIdReducer_closure222(), t1, A.findType("ArchiveWebhooksSuccess*")), t3 = A.TypedReducer$(new A.selectedIdReducer_closure223(), t1, A.findType("DeleteWebhooksSuccess*")), t4 = A.TypedReducer$(new A.selectedIdReducer_closure224(), t1, type$.legacy_PreviewEntity), t5 = A.TypedReducer$(new A.selectedIdReducer_closure225(), t1, type$.legacy_ViewWebhook), t6 = A.TypedReducer$(new A.selectedIdReducer_closure226(), t1, A.findType("AddWebhookSuccess*")), t7 = A.TypedReducer$(new A.selectedIdReducer_closure227(), t1, type$.legacy_SelectCompany), t8 = A.TypedReducer$(new A.selectedIdReducer_closure228(), t1, type$.legacy_ClearEntityFilter), t9 = A.TypedReducer$(new A.selectedIdReducer_closure229(), t1, A.findType("SortWebhooks*")), t10 = A.TypedReducer$(new A.selectedIdReducer_closure230(), t1, A.findType("FilterWebhooks*")), t11 = A.TypedReducer$(new A.selectedIdReducer_closure231(), t1, A.findType("FilterWebhooksByState*")), t12 = A.TypedReducer$(new A.selectedIdReducer_closure232(), t1, A.findType("FilterWebhooksByCustom1*")), t13 = A.TypedReducer$(new A.selectedIdReducer_closure233(), t1, A.findType("FilterWebhooksByCustom2*")), t14 = A.TypedReducer$(new A.selectedIdReducer_closure234(), t1, A.findType("FilterWebhooksByCustom3*")), t15 = A.TypedReducer$(new A.selectedIdReducer_closure235(), t1, A.findType("FilterWebhooksByCustom4*")), t16 = A.TypedReducer$(new A.selectedIdReducer_closure236(), t1, type$.legacy_FilterByEntity); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer23", "$get$editingReducer14", () => { var t1 = type$.legacy_WebhookEntity, t2 = A.TypedReducer$(A.webhook_reducer___updateEditing$closure(), t1, A.findType("SaveWebhookSuccess*")), t3 = A.TypedReducer$(A.webhook_reducer___updateEditing$closure(), t1, A.findType("AddWebhookSuccess*")), t4 = A.TypedReducer$(new A.editingReducer_closure72(), t1, A.findType("RestoreWebhooksSuccess*")), t5 = A.TypedReducer$(new A.editingReducer_closure73(), t1, A.findType("ArchiveWebhooksSuccess*")), t6 = A.TypedReducer$(new A.editingReducer_closure74(), t1, A.findType("DeleteWebhooksSuccess*")), t7 = A.TypedReducer$(A.webhook_reducer___updateEditing$closure(), t1, type$.legacy_EditWebhook), t8 = A.TypedReducer$(new A.editingReducer_closure75(), t1, A.findType("UpdateWebhook*")), t9 = A.TypedReducer$(A.webhook_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "webhookListReducer", "$get$webhookListReducer", () => { var t1 = type$.legacy_ListUIState, t2 = A.TypedReducer$(A.webhook_reducer___sortWebhooks$closure(), t1, A.findType("SortWebhooks*")), t3 = A.TypedReducer$(A.webhook_reducer___filterWebhooksByState$closure(), t1, A.findType("FilterWebhooksByState*")), t4 = A.TypedReducer$(A.webhook_reducer___filterWebhooks$closure(), t1, A.findType("FilterWebhooks*")), t5 = A.TypedReducer$(A.webhook_reducer___filterWebhooksByCustom1$closure(), t1, A.findType("FilterWebhooksByCustom1*")), t6 = A.TypedReducer$(A.webhook_reducer___filterWebhooksByCustom2$closure(), t1, A.findType("FilterWebhooksByCustom2*")), t7 = A.TypedReducer$(A.webhook_reducer___startListMultiselect$closure(), t1, A.findType("StartWebhookMultiselect*")), t8 = A.TypedReducer$(A.webhook_reducer___addToListMultiselect$closure(), t1, A.findType("AddToWebhookMultiselect*")), t9 = A.TypedReducer$(A.webhook_reducer___removeFromListMultiselect$closure(), t1, A.findType("RemoveFromWebhookMultiselect*")), t10 = A.TypedReducer$(A.webhook_reducer___clearListMultiselect$closure(), t1, A.findType("ClearWebhookMultiselect*")), t11 = A.TypedReducer$(A.webhook_reducer___viewWebhookList$closure(), t1, type$.legacy_ViewWebhookList); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "webhooksReducer", "$get$webhooksReducer", () => { var t1 = type$.legacy_WebhookState, t2 = A.TypedReducer$(A.webhook_reducer___updateWebhook$closure(), t1, A.findType("SaveWebhookSuccess*")), t3 = A.TypedReducer$(A.webhook_reducer___addWebhook$closure(), t1, A.findType("AddWebhookSuccess*")), t4 = A.TypedReducer$(A.webhook_reducer___setLoadedWebhooks$closure(), t1, A.findType("LoadWebhooksSuccess*")), t5 = A.TypedReducer$(A.webhook_reducer___setLoadedWebhook$closure(), t1, A.findType("LoadWebhookSuccess*")), t6 = A.TypedReducer$(A.webhook_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = A.TypedReducer$(A.webhook_reducer___archiveWebhookSuccess$closure(), t1, A.findType("ArchiveWebhooksSuccess*")), t8 = A.TypedReducer$(A.webhook_reducer___deleteWebhookSuccess$closure(), t1, A.findType("DeleteWebhooksSuccess*")), t9 = A.TypedReducer$(A.webhook_reducer___restoreWebhookSuccess$closure(), t1, A.findType("RestoreWebhooksSuccess*")); return A.combineReducers(A._setArrayType([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], A.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredWebhookList", "$get$memoizedFilteredWebhookList", () => A.memo4(new A.memoizedFilteredWebhookList_closure(), type$.legacy_SelectionState, A.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String)); _lazyOld($, "_$webhookStateSerializer", "$get$_$webhookStateSerializer", () => new A._$WebhookStateSerializer()); _lazyOld($, "_$webhookUIStateSerializer", "$get$_$webhookUIStateSerializer", () => new A._$WebhookUIStateSerializer()); _lazyOld($, "_theState", "$get$_theState", () => A.RM_inject(new A._theState_closure(), A.findType("_TheState*"))); _lazyOld($, "AppDataTable__headingRowKey", "$get$AppDataTable__headingRowKey", () => A.UniqueKey$()); _lazyOld($, "_SortArrowState__turnTween0", "$get$_SortArrowState__turnTween0", () => A.Tween$(0, 3.141592653589793, type$.legacy_double).chain$1(A.CurveTween$(B.Cubic_JUR0))); _lazyOld($, "_ClientEditState__formKey", "$get$_ClientEditState__formKey", () => A.GlobalKey_GlobalKey("_clientEdit", type$.legacy_FormState)); _lazyOld($, "_CompanyGatewayEditState__formKey", "$get$_CompanyGatewayEditState__formKey", () => A.GlobalKey_GlobalKey("_companyGatewayEdit", type$.legacy_FormState)); _lazyOld($, "_CreditEditState__formKey", "$get$_CreditEditState__formKey", () => A.GlobalKey_GlobalKey("_creditEdit", type$.legacy_FormState)); _lazyOld($, "_DesignEditState__formKey", "$get$_DesignEditState__formKey", () => A.GlobalKey_GlobalKey("_designEdit", type$.legacy_FormState)); _lazyOld($, "_DocumentEditState__formKey", "$get$_DocumentEditState__formKey", () => A.GlobalKey_GlobalKey("_documentEdit", type$.legacy_FormState)); _lazyOld($, "_ExpenseEditState__formKey", "$get$_ExpenseEditState__formKey", () => A.GlobalKey_GlobalKey("_expenseEdit", type$.legacy_FormState)); _lazyOld($, "_ExpenseCategoryEditState__formKey", "$get$_ExpenseCategoryEditState__formKey", () => A.GlobalKey_GlobalKey("_expenseCategoryEdit", type$.legacy_FormState)); _lazyOld($, "_GroupEditState__formKey", "$get$_GroupEditState__formKey", () => A.GlobalKey_GlobalKey("_groupEdit", type$.legacy_FormState)); _lazyOld($, "_InvoiceEditState__formKey", "$get$_InvoiceEditState__formKey", () => A.GlobalKey_GlobalKey("_invoiceEdit", type$.legacy_FormState)); _lazyOld($, "_PaymentEditState__formKey", "$get$_PaymentEditState__formKey", () => A.GlobalKey_GlobalKey("_paymentEdit", type$.legacy_FormState)); _lazyOld($, "_PaymentRefundState__formKey", "$get$_PaymentRefundState__formKey", () => A.GlobalKey_GlobalKey("_paymentRefund", type$.legacy_FormState)); _lazyOld($, "_PaymentTermEditState__formKey", "$get$_PaymentTermEditState__formKey", () => A.GlobalKey_GlobalKey("_paymentTermEdit", type$.legacy_FormState)); _lazyOld($, "_ProductEditState__formKey", "$get$_ProductEditState__formKey", () => A.GlobalKey_GlobalKey("_productEdit", type$.legacy_FormState)); _lazyOld($, "_ProjectEditState__formKey", "$get$_ProjectEditState__formKey", () => A.GlobalKey_GlobalKey("_projectEdit", type$.legacy_FormState)); _lazyOld($, "_PurchaseOrderEditState__formKey", "$get$_PurchaseOrderEditState__formKey", () => A.GlobalKey_GlobalKey("_purchaseOrderEdit", type$.legacy_FormState)); _lazyOld($, "_QuoteEditState__formKey", "$get$_QuoteEditState__formKey", () => A.GlobalKey_GlobalKey("_quoteEdit", type$.legacy_FormState)); _lazyOld($, "_RecurringInvoiceEditState__formKey", "$get$_RecurringInvoiceEditState__formKey", () => A.GlobalKey_GlobalKey("_recurringInvoiceEdit", type$.legacy_FormState)); _lazyOld($, "memoizedClientReport", "$get$memoizedClientReport", () => A.memo6(new A.memoizedClientReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedContactReport", "$get$memoizedContactReport", () => A.memo5(new A.memoizedContactReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedCreditReport", "$get$memoizedCreditReport", () => A.memo6(new A.memoizedCreditReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedDocumentReport", "$get$memoizedDocumentReport", () => { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return A.memo10(new A.memoizedDocumentReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ReportResult); }); _lazyOld($, "memoizedExpenseReport", "$get$memoizedExpenseReport", () => A.memo10(new A.memoizedExpenseReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedInvoiceItemReport", "$get$memoizedInvoiceItemReport", () => A.memo6(new A.memoizedInvoiceItemReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedInvoiceReport", "$get$memoizedInvoiceReport", () => A.memo8(new A.memoizedInvoiceReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedInvoiceTaxReport", "$get$memoizedInvoiceTaxReport", () => { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return A.memo9(new A.memoizedInvoiceTaxReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, A.findType("BuiltMap*"), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedPaymentReport", "$get$memoizedPaymentReport", () => { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return A.memo8(new A.memoizedPaymentReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, t1, t1, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedPaymentTaxReport", "$get$memoizedPaymentTaxReport", () => { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return A.memo9(new A.memoizedPaymentTaxReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, A.findType("BuiltMap*"), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedProductReport", "$get$memoizedProductReport", () => A.memo6(new A.memoizedProductReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedProfitAndLossReport", "$get$memoizedProfitAndLossReport", () => A.memo9(new A.memoizedProfitAndLossReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedPurchaseOrderReport", "$get$memoizedPurchaseOrderReport", () => A.memo7(new A.memoizedPurchaseOrderReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedQuoteItemReport", "$get$memoizedQuoteItemReport", () => A.memo6(new A.memoizedQuoteItemReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedQuoteReport", "$get$memoizedQuoteReport", () => A.memo7(new A.memoizedQuoteReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedRecurringExpenseReport", "$get$memoizedRecurringExpenseReport", () => A.memo9(new A.memoizedRecurringExpenseReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizedRecurringInvoiceReport", "$get$memoizedRecurringInvoiceReport", () => A.memo8(new A.memoizedRecurringInvoiceReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "memoizeedGroupTotals", "$get$memoizeedGroupTotals", () => A.memo5(new A.memoizeedGroupTotals_closure(), type$.legacy_ReportResult, type$.legacy_ReportsUIState, type$.legacy_ReportSettingsEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, A.findType("GroupTotals*"))); _lazyOld($, "memoizedTaskReport", "$get$memoizedTaskReport", () => A.memo10(new A.memoizedTaskReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_StaticState, type$.legacy_ReportResult)); _lazyOld($, "_AccountManagementState__formKey", "$get$_AccountManagementState__formKey", () => A.GlobalKey_GlobalKey("_accountManagement", type$.legacy_FormState)); _lazyOld($, "_ClientPortalState__formKey", "$get$_ClientPortalState__formKey", () => A.GlobalKey_GlobalKey("_clientPortal", type$.legacy_FormState)); _lazyOld($, "_CompanyDetailsState__formKey", "$get$_CompanyDetailsState__formKey", () => A.GlobalKey_GlobalKey("_companyDetails", type$.legacy_FormState)); _lazyOld($, "_CustomFieldsState__formKey", "$get$_CustomFieldsState__formKey", () => A.GlobalKey_GlobalKey("_customFields", type$.legacy_FormState)); _lazyOld($, "_EmailSettingsState__formKey", "$get$_EmailSettingsState__formKey", () => A.GlobalKey_GlobalKey("_emailSettings", type$.legacy_FormState)); _lazyOld($, "_ExpenseSettingsState__formKey", "$get$_ExpenseSettingsState__formKey", () => A.GlobalKey_GlobalKey("_expenseSettings", type$.legacy_FormState)); _lazyOld($, "_GeneratedNumbersState__formKey", "$get$_GeneratedNumbersState__formKey", () => A.GlobalKey_GlobalKey("_generatedNumbers", type$.legacy_FormState)); _lazyOld($, "_ImportExportState__formKey", "$get$_ImportExportState__formKey", () => A.GlobalKey_GlobalKey("_importExport", type$.legacy_FormState)); _lazyOld($, "_InvoiceDesignState__formKey", "$get$_InvoiceDesignState__formKey", () => A.GlobalKey_GlobalKey("_invoiceDesign", type$.legacy_FormState)); _lazyOld($, "_LocalizationSettingsState__formKey", "$get$_LocalizationSettingsState__formKey", () => A.GlobalKey_GlobalKey("_localizationSettings", type$.legacy_FormState)); _lazyOld($, "_PaymentSettingsState__formKey", "$get$_PaymentSettingsState__formKey", () => A.GlobalKey_GlobalKey("_paymentSettings", type$.legacy_FormState)); _lazyOld($, "_ProductSettingsState__formKey", "$get$_ProductSettingsState__formKey", () => A.GlobalKey_GlobalKey("_productSettings", type$.legacy_FormState)); _lazyOld($, "_SettingsWizardState__formKey", "$get$_SettingsWizardState__formKey", () => A.GlobalKey_GlobalKey("_settingsWizard", type$.legacy_FormState)); _lazyOld($, "_TaskSettingsState__formKey", "$get$_TaskSettingsState__formKey", () => A.GlobalKey_GlobalKey("_taskSettings", type$.legacy_FormState)); _lazyOld($, "_TaxSettingsState__formKey", "$get$_TaxSettingsState__formKey", () => A.GlobalKey_GlobalKey("_taxSettings", type$.legacy_FormState)); _lazyOld($, "_TemplatesAndRemindersState__formKey", "$get$_TemplatesAndRemindersState__formKey", () => A.GlobalKey_GlobalKey("_templatesAndReminders", type$.legacy_FormState)); _lazyOld($, "_UserDetailsState__formKey", "$get$_UserDetailsState__formKey", () => A.GlobalKey_GlobalKey("_userDetails", type$.legacy_FormState)); _lazyOld($, "_EnableTwoFactorState__formKey", "$get$_EnableTwoFactorState__formKey", () => A.GlobalKey_GlobalKey("_twoFactor", type$.legacy_FormState)); _lazyOld($, "__SmsVerificationState__formKey", "$get$__SmsVerificationState__formKey", () => A.GlobalKey_GlobalKey("_verifyPhone", type$.legacy_FormState)); _lazyOld($, "_WorkflowSettingsState__formKey", "$get$_WorkflowSettingsState__formKey", () => A.GlobalKey_GlobalKey("_workflowSettings", type$.legacy_FormState)); _lazyOld($, "_SubscriptionEditState__formKey", "$get$_SubscriptionEditState__formKey", () => A.GlobalKey_GlobalKey("_subscriptionEdit", type$.legacy_FormState)); _lazyOld($, "_TaskEditState__formKey", "$get$_TaskEditState__formKey", () => A.GlobalKey_GlobalKey("_taskEdit", type$.legacy_FormState)); _lazyOld($, "_TaskStatusEditState__formKey", "$get$_TaskStatusEditState__formKey", () => A.GlobalKey_GlobalKey("_taskStatusEdit", type$.legacy_FormState)); _lazyOld($, "_TaxRateEditState__formKey", "$get$_TaxRateEditState__formKey", () => A.GlobalKey_GlobalKey("_taxRateEdit", type$.legacy_FormState)); _lazyOld($, "_TokenEditState__formKey", "$get$_TokenEditState__formKey", () => A.GlobalKey_GlobalKey("_tokenEdit", type$.legacy_FormState)); _lazyOld($, "_UserEditState__formKey", "$get$_UserEditState__formKey", () => A.GlobalKey_GlobalKey("_userEdit", type$.legacy_FormState)); _lazyOld($, "_VendorEditState__formKey", "$get$_VendorEditState__formKey", () => A.GlobalKey_GlobalKey("_vendorEdit", type$.legacy_FormState)); _lazyOld($, "_WebhookEditState__formKey", "$get$_WebhookEditState__formKey", () => A.GlobalKey_GlobalKey("_webhookEdit", type$.legacy_FormState)); _lazyOld($, "LocalizationsProvider__localizedValues", "$get$LocalizationsProvider__localizedValues", () => { var _s21_ = "price_change_accepted", _s21_0 = "Price change accepted", _s19_ = "price_change_failed", _s29_ = "Price change failed with code", _s17_ = "restore_purchases", _s17_0 = "Restore Purchases", _s16_ = "disconnect_apple", _s16_0 = "Disconnect Apple", _s18_ = "disconnected_apple", _s31_ = "Successfully disconnected Apple", _s19_0 = "purchase_order_date", _s19_1 = "Purchase Order Date", _s20_ = "converted_to_expense", _s33_ = "Successfully converted to expense", _s21_1 = "converted_to_expenses", _s34_ = "Successfully converted to expenses", _s18_0 = "convert_to_expense", _s18_1 = "Convert to Expense", _s16_1 = "add_to_inventory", _s16_2 = "Add to Inventory", _s33_0 = "added_purchase_order_to_inventory", _s46_ = "Successfully added purchase order to inventory", _s34_0 = "added_purchase_orders_to_inventory", _s47_ = "Successfully added purchase orders to inventory", _s22_ = "client_document_upload", _s22_0 = "Client Document Upload", _s22_1 = "vendor_document_upload", _s22_2 = "Vendor Document Upload", _s27_ = "vendor_document_upload_help", _s34_1 = "Enable vendors to upload documents", _s24_ = "are_you_enjoying_the_app", _s25_ = "Are you enjoying the app?", _s17_1 = "would_you_rate_it", _s41_ = "Great to hear! Would you like to rate it?", _s22_3 = "would_you_tell_us_more", _s49_ = "Sorry to hear it! Would you like to tell us more?", _s18_2 = "last_sent_template", _s18_3 = "Last Sent Template", _s22_4 = "enable_flexible_search", _s22_5 = "Enable Flexible Search", _s27_0 = "enable_flexible_search_help", _s22_6 = "purchase_order_details", _s22_7 = "Purchase Order Details", _s23_ = "clone_to_purchase_order", _s20_0 = "vendor_email_not_set", _s41_0 = "Vendor does not have an email address set", _s29_0 = "marked_purchase_order_as_sent", _s42_ = "Successfully marked purchase order as sent", _s30_ = "marked_purchase_orders_as_sent", _s43_ = "Successfully marked purchase orders as sent", _s23_0 = "accepted_purchase_order", _s36_ = "Successfully accepted purchase order", _s24_0 = "accepted_purchase_orders", _s37_ = "Successfully accepted purchase orders", _s24_1 = "cancelled_purchase_order", _s37_0 = "Successfully cancelled purchase order", _s25_0 = "cancelled_purchase_orders", _s38_ = "Successfully cancelled purchase orders", _s22_8 = "please_select_a_vendor", _s22_9 = "Please select a vendor", _s20_1 = "purchase_order_total", _s20_2 = "Purchase Order Total", _s20_3 = "email_purchase_order", _s20_4 = "Email Purchase Order", _s18_4 = "disconnected_email", _s31_0 = "Successfully disconnected email", _s16_3 = "disconnect_email", _s16_4 = "Disconnect Email", _s32_ = "use_web_app_to_connect_microsoft", _s46_0 = "Please use the web app to connect to Microsoft", _s17_2 = "connect_microsoft", _s17_3 = "Connect Microsoft", _s20_5 = "disconnect_microsoft", _s20_6 = "Disconnect Microsoft", _s19_2 = "connected_microsoft", _s32_0 = "Successfully connected Microsoft", _s22_10 = "disconnected_microsoft", _s35_ = "Successfully disconnected Microsoft", _s17_4 = "microsoft_sign_in", _s20_7 = "Login with Microsoft", _s17_5 = "microsoft_sign_up", _s22_11 = "Sign up with Microsoft", _s22_12 = "emailed_purchase_order", _s45_ = "Successfully queued purchase order to be sent", _s23_1 = "emailed_purchase_orders", _s46_1 = "Successfully queued purchase orders to be sent", _s16_5 = "enable_react_app", _s27_1 = "Change to the React web app", _s21_2 = "purchase_order_design", _s21_3 = "Purchase Order Design", _s20_8 = "purchase_order_terms", _s20_9 = "Purchase Order Terms", _s21_4 = "purchase_order_footer", _s21_5 = "Purchase Order Footer", _s32_1 = "require_purchase_order_signature", _s24_2 = "Purchase Order Signature", _s37_1 = "require_purchase_order_signature_help", _s42_0 = "Require vendor to provide their signature.", _s18_5 = "new_purchase_order", _s18_6 = "New Purchase Order", _s19_3 = "edit_purchase_order", _s19_4 = "Edit Purchase Order", _s22_13 = "created_purchase_order", _s35_0 = "Successfully created purchase order", _s22_14 = "updated_purchase_order", _s35_1 = "Successfully updated purchase order", _s23_2 = "archived_purchase_order", _s36_0 = "Successfully archived purchase order", _s22_15 = "deleted_purchase_order", _s35_2 = "Successfully deleted purchase order", _s22_16 = "removed_purchase_order", _s35_3 = "Successfully removed purchase order", _s23_3 = "restored_purchase_order", _s36_1 = "Successfully restored purchase order", _s21_6 = "search_purchase_order", _s21_7 = "Search Purchase Order", _s22_17 = "search_purchase_orders", _s22_18 = "Search Purchase Orders", _s24_3 = "enable_applying_payments", _s24_4 = "Enable Applying Payments", _s29_1 = "enable_applying_payments_help", _s49_0 = "Support separately creating and applying payments", _s16_6 = "payment_settings", _s16_7 = "Payment Settings", _s22_19 = "notification_threshold", _s22_20 = "Notification Threshold", _s20_10 = "track_inventory_help", _s63_ = "Display a product stock field and update when invoices are sent", _s19_5 = "stock_notifications", _s19_6 = "Stock Notifications", _s24_5 = "stock_notifications_help", _s50_ = "Send an email when the stock reaches the threshold", _s18_7 = "set_default_design", _s18_8 = "Set Default Design", _s24_6 = "add_gateway_help_message", _s77_ = "Add a payment gateway (ie. Stripe, WePay or PayPal) to accept online payments", _s24_7 = "page_numbering_alignment", _s24_8 = "Page Numbering Alignment", _s31_1 = "invoice_sent_notification_label", _s24_9 = "show_product_description", _s24_10 = "Show Product Description", _s29_2 = "show_product_description_help", _s47_0 = "Include the description in the product dropdown", _s19_7 = "stop_on_unpaid_help", _s63_0 = "Stop creating recurring invoices if the last invoice is unpaid.", _s20_11 = "use_quote_terms_help", _s37_2 = "When converting a quote to an invoice", _s20_12 = "enable_tooltips_help", _s37_3 = "Show tooltips when hovering the mouse", _s21_8 = "multiple_client_error", _s45_0 = "Error: records belong to more than one client", _s30_0 = "Create your account in seconds", _s28_ = "Login to an existing account", _s17_6 = "no_invoices_found", _s17_7 = "No invoices found", _s27_2 = "Successfully created record", _s26_ = "auto_archive_paid_invoices", _s17_8 = "Auto Archive Paid", _s31_2 = "auto_archive_paid_invoices_help", _s50_0 = "Automatically archive invoices when they are paid.", _s31_3 = "auto_archive_cancelled_invoices", _s22_21 = "Auto Archive Cancelled", _s36_2 = "auto_archive_cancelled_invoices_help", _s55_ = "Automatically archive invoices when they are cancelled.", _s20_13 = "alternate_pdf_viewer", _s20_14 = "Alternate PDF Viewer", _s25_1 = "alternate_pdf_viewer_help", _s16_8 = "invoice_currency", _s16_9 = "Invoice Currency", _s32_2 = "Successfully changed task status", _s46_2 = "The fee for a :amount invoice would be :total.", _s19_8 = "enable_touch_events", _s19_9 = "Enable Touch Events", _s24_11 = "enable_touch_events_help", _s29_3 = "Support drag events to scroll", _s21_9 = "enable_email_markdown", _s21_10 = "Enable Email Markdown", _s26_0 = "enable_email_markdown_help", _s19_10 = "enable_pdf_markdown", _s19_11 = "Enable PDF Markdown", _s58_ = "Note: JSON files generated by the v4 app are not supported", _s23_4 = "upgrade_to_view_reports", _s33_1 = "Upgrade your plan to view reports", _s33_2 = "Successfully started :value tasks", _s33_3 = "Successfully stopped :value tasks", _s35_4 = "Successfully :value approved quotes", _s21_11 = "client_shipping_state", _s21_12 = "Client Shipping State", _s20_15 = "client_shipping_city", _s20_16 = "Client Shipping City", _s27_3 = "client_shipping_postal_code", _s27_4 = "Client Shipping Postal Code", _s23_5 = "client_shipping_country", _s23_6 = "Client Shipping Country", _s16_10 = "start_free_trial", _s16_11 = "Start Free Trial", _s24_12 = "start_free_trial_message", _s44_ = "Start your FREE 14 day trial of the pro plan", _s16_12 = "company_currency", _s16_13 = "Company Currency", _s26_1 = "Successfully purged client", _s27_5 = "custom_emails_disabled_help", _s77_0 = "To prevent spam we require upgrading to a paid account to customize the email", _s22_22 = "upgrade_to_add_company", _s34_2 = "Upgrade your plan to add companies", _s30_1 = "file_saved_in_downloads_folder", _s47_1 = "The file has been saved in the downloads folder", _s21_13 = "marked_credit_as_paid", _s34_3 = "Successfully marked credit as paid", _s22_23 = "marked_credits_as_paid", _s35_5 = "Successfully marked credits as paid", _s16_14 = "wait_for_loading", _s45_1 = "Data loading - please wait for it to complete", _s44_0 = "Data saving - please wait for it to complete", _s20_17 = "html_preview_warning", _s94_ = "Note: changes made here are only previewed, they must be applied in the tabs above to be saved", _s50_1 = ":user created recurring expense :recurring_expense", _s50_2 = ":user updated recurring expense :recurring_expense", _s51_ = ":user archived recurring expense :recurring_expense", _s50_3 = ":user deleted recurring expense :recurring_expense", _s51_0 = ":user restored recurring expense :recurring_expense", _s16_15 = "show_pdf_preview", _s16_16 = "Show PDF Preview", _s21_14 = "show_pdf_preview_help", _s42_1 = "Display PDF preview while editing invoices", _s16_17 = "instant_bank_pay", _s16_18 = "Instant Bank Pay", _s27_6 = "credit_is_more_than_invoice", _s57_ = "The credit amount can not be more than the invoice amount", _s21_15 = "please_set_a_password", _s30_2 = "Please set an account password", _s17_9 = "recommend_desktop", _s59_ = "We recommend using the desktop app for the best performance", _s16_19 = "recommend_mobile", _s58_0 = "We recommend using the mobile app for the best performance", _s20_18 = "disconnected_gateway", _s33_4 = "Successfully disconnected gateway", _s17_10 = "persist_data_help", _s104_ = "Save data locally to enable the app to start faster, disabling may improve performance in large accounts", _s104_0 = "Save UI state locally to enable the app to start at the last location, disabling may improve performance", _s18_9 = "client_postal_code", _s18_10 = "Client Postal Code", _s17_11 = "client_vat_number", _s17_12 = "Client VAT Number", _s27_7 = "unauthorized_stripe_warning", _s50_4 = "Please authorize Stripe to accept online payments.", _s18_11 = "update_all_records", _s18_12 = "Update all records", _s19_12 = "set_default_company", _s19_13 = "Set Default Company", _s28_0 = "Successfully updated company", _s19_14 = "why_are_you_leaving", _s44_1 = "Help us improve by telling us why (optional)", _s24_13 = "error_cross_client_tasks", _s40_ = "Tasks must all belong to the same client", _s27_8 = "error_cross_client_expenses", _s43_0 = "Expenses must all belong to the same client", _s20_19 = "for_best_performance", _s46_3 = "For the best performance download the :app app", _s16_20 = "gross_line_total", _s16_21 = "clone_to_expense", _s17_13 = "recurring_expense", _s17_14 = "Recurring Expense", _s18_13 = "recurring_expenses", _s18_14 = "Recurring Expenses", _s21_16 = "new_recurring_expense", _s21_17 = "New Recurring Expense", _s22_24 = "edit_recurring_expense", _s22_25 = "Edit Recurring Expense", _s25_2 = "created_recurring_expense", _s38_0 = "Successfully created recurring expense", _s25_3 = "updated_recurring_expense", _s38_1 = "Successfully updated recurring expense", _s26_2 = "archived_recurring_expense", _s39_ = "Successfully archived recurring expense", _s25_4 = "deleted_recurring_expense", _s25_5 = "removed_recurring_expense", _s38_2 = "Successfully removed recurring expense", _s26_3 = "restored_recurring_expense", _s39_0 = "Successfully restored recurring expense", _s24_14 = "search_recurring_expense", _s24_15 = "Search Recurring Expense", _s25_6 = "search_recurring_expenses", _s25_7 = "Search Recurring Expenses", _s19_15 = "include_drafts_help", _s32_3 = "Include draft records in reports", _s16_22 = "verify_customers", _s16_23 = "Verify Customers", _s16_24 = "google_analytics", _s16_25 = "Google Analytics", _s28_1 = "google_analytics_tracking_id", _s28_2 = "Google Analytics Tracking ID", _s26_4 = "use_comma_as_decimal_place", _s35_6 = "Use comma as decimal place in forms", _s28_3 = "use_web_app_to_connect_gmail", _s42_2 = "Please use the web app to connect to Gmail", _s16_26 = "expense_tax_help", _s27_9 = "Item tax rates are disabled", _s20_20 = "enable_markdown_help", _s35_7 = "Convert markdown to HTML on the PDF", _s18_15 = "add_second_contact", _s18_16 = "Add Second Contact", _s31_4 = "sidebar_active_background_color", _s31_5 = "Sidebar Active Background Color", _s25_8 = "sidebar_active_font_color", _s25_9 = "Sidebar Active Font Color", _s33_5 = "sidebar_inactive_background_color", _s33_6 = "Sidebar Inactive Background Color", _s27_10 = "sidebar_inactive_font_color", _s27_11 = "Sidebar Inactive Font Color", _s36_3 = "table_alternate_row_background_color", _s36_4 = "Table Alternate Row Background Color", _s31_6 = "invoice_header_background_color", _s31_7 = "Invoice Header Background Color", _s25_10 = "invoice_header_font_color", _s25_11 = "Invoice Header Font Color", _s23_7 = "free_trial_ends_in_days", _s21_18 = "free_trial_ends_today", _s25_12 = "client_portal_domain_hint", _s52_ = "Optionally configure a separate client portal domain", _s21_19 = "tasks_shown_in_portal", _s21_20 = "Tasks Shown in Portal", _s120_ = "The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co", _s17_15 = "json_file_missing", _s28_4 = "Please provide the JSON file", _s19_16 = "json_option_missing", _s48_ = "Please select to import the settings and/or data", _s24_16 = "no_payment_types_enabled", _s24_17 = "No payment types enabled", _s42_3 = "Please wait for the data to finish loading", _s16_27 = "import_customers", _s16_28 = "Import Customers", _s18_17 = "imported_customers", _s40_0 = "Successfully started importing customers", _s16_29 = "Successful Login", _s23_8 = "include_deleted_clients", _s23_9 = "Include Deleted Clients", _s28_5 = "include_deleted_clients_help", _s41_1 = "Load records belonging to deleted clients", _s16_30 = "step_2_authorize", _s17_16 = "Step 2: Authorize", _s27_12 = "migration_not_yet_completed", _s35_8 = "The migration has not yet completed", _s50_5 = ":user created recurring invoice :recurring_invoice", _s50_6 = ":user updated recurring invoice :recurring_invoice", _s51_1 = ":user archived recurring invoice :recurring_invoice", _s50_7 = ":user deleted recurring invoice :recurring_invoice", _s51_2 = ":user restored recurring invoice :recurring_invoice", _s18_18 = "show_task_end_date", _s18_19 = "Show Task End Date", _s23_10 = "show_task_end_date_help", _s35_9 = "Enable specifying the task end date", _s16_31 = "years_data_shown", _s16_32 = "Years Data Shown", _s18_20 = "ended_all_sessions", _s31_8 = "Successfully ended all sessions", _s16_33 = "end_all_sessions", _s16_34 = "End All Sessions", _s18_21 = "contact_first_name", _s18_22 = "Contact First Name", _s17_17 = "contact_last_name", _s17_18 = "Contact Last Name", _s49_1 = "Must be greater than zero and less than the total", _s21_21 = "body_variable_missing", _s53_ = "Error: the custom email must include a :body variable", _s25_13 = "add_body_variable_message", _s37_4 = "Make sure to include a :body variable", _s17_19 = "view_date_formats", _s17_20 = "View Date Formats", _s26_5 = "owner_upgrade_to_paid_plan", _s85_ = "The account owner can upgrade to a paid plan to enable the advanced advanced settings", _s20_21 = "upgrade_to_paid_plan", _s54_ = "Upgrade to a paid plan to enable the advanced settings", _s21_22 = "invoice_payment_terms", _s21_23 = "Invoice Payment Terms", _s17_21 = "quote_valid_until", _s17_22 = "Quote Valid Until", _s18_23 = "recurring_products", _s18_24 = "Recurring Products", _s18_25 = "allow_cancellation", _s18_26 = "Allow Cancellation", _s16_35 = "per_seat_enabled", _s16_36 = "Per Seat Enabled", _s21_24 = "allow_query_overrides", _s21_25 = "Allow Query Overrides", _s18_27 = "allow_plan_changes", _s18_28 = "Allow Plan Changes", _s21_26 = "webhook_configuration", _s21_27 = "Webhook Configuration", _s20_22 = "email_spam_complaint", _s16_37 = "webhook_response", _s16_38 = "Webhook Response", _s22_26 = "authentication_failure", _s22_27 = "Authentication Failure", _s16_39 = "new_subscription", _s16_40 = "New Subscription", _s17_23 = "edit_subscription", _s17_24 = "Edit Subscription", _s20_23 = "created_subscription", _s33_7 = "Successfully created subscription", _s20_24 = "updated_subscription", _s33_8 = "Successfully updated subscription", _s21_28 = "archived_subscription", _s34_4 = "Successfully archived subscription", _s20_25 = "deleted_subscription", _s33_9 = "Successfully deleted subscription", _s20_26 = "removed_subscription", _s33_10 = "Successfully removed subscription", _s21_29 = "restored_subscription", _s34_5 = "Successfully restored subscription", _s19_17 = "search_subscription", _s21_30 = "Search 1 Subscription", _s20_27 = "search_subscriptions", _s27_13 = "Search :count Subscriptions", _s26_6 = "subdomain_is_not_available", _s26_7 = "Subdomain is not available", _s16_41 = "disconnect_gmail", _s16_42 = "Disconnect Gmail", _s28_6 = "Successfully connected Gmail", _s18_29 = "disconnected_gmail", _s31_9 = "Successfully disconnected Gmail", _s16_43 = "update_fail_help", _s100_ = "Changes to the codebase may be blocking the update, you can run this command to discard the changes:", _s16_44 = "client_id_number", _s16_45 = "Client ID Number", _s16_46 = "password_timeout", _s16_47 = "Password Timeout", _s29_4 = "shared_invoice_credit_counter", _s29_5 = "Shared Invoice/Credit Counter", _s16_48 = "activate_company", _s16_49 = "Activate Company", _s21_31 = "activate_company_help", _s51_3 = "Enable emails, recurring invoices and notifications", _s27_14 = "an_error_occurred_try_again", _s35_10 = "An error occurred, please try again", _s27_15 = "please_first_set_a_password", _s27_16 = "Please first set a password", _s34_6 = "changing_phone_disables_two_factor", _s52_0 = "Warning: Changing your phone number will disable 2FA", _s23_11 = "please_select_a_country", _s23_12 = "Please select a country", _s19_18 = "disabled_two_factor", _s25_14 = "Successfully disabled 2FA", _s16_50 = "connected_google", _s30_3 = "Successfully connected account", _s19_19 = "disconnected_google", _s33_11 = "Successfully disconnected account", _s32_4 = "enter_phone_to_enable_two_factor", _s72_ = "Please provide a mobile phone number to enable two factor authentication", _s21_32 = "two_factor_setup_help", _s46_4 = "Scan the bar code with a :link compatible app.", _s18_30 = "enabled_two_factor", _s46_5 = "Successfully enabled Two-Factor Authentication", _s17_25 = "disconnect_google", _s17_26 = "Disconnect Google", _s17_27 = "enable_two_factor", _s18_31 = "disable_two_factor", _s18_32 = "Disable Two Factor", _s34_7 = "require_password_with_social_login", _s34_8 = "Require Password with Social Login", _s23_13 = "session_about_to_expire", _s40_1 = "Warning: Your session is about to expire", _s19_20 = "web_session_timeout", _s19_21 = "Web Session Timeout", _s17_28 = "security_settings", _s17_29 = "Security Settings", _s26_8 = "confirm_your_email_address", _s33_12 = "Please confirm your email address", _s16_51 = "refunded_payment", _s19_22 = "partially_unapplied", _s19_23 = "Partially Unapplied", _s19_24 = "select_a_gmail_user", _s45_2 = "Please select a user authenticated with Gmail", _s17_30 = "start_multiselect", _s17_31 = "Start Multiselect", _s27_17 = "email_sent_to_confirm_email", _s51_4 = "An email has been sent to confirm the email address", _s21_33 = "counter_pattern_error", _s97_ = "To use :client_counter please add either :client_number or :client_id_number to prevent conflicts", _s18_33 = "convert_to_invoice", _s18_34 = "Convert to Invoice", _s16_52 = "registration_url", _s16_53 = "Registration URL", _s19_25 = "search_payment_term", _s21_34 = "Search 1 Payment Term", _s20_28 = "search_payment_terms", _s27_18 = "Search :count Payment Terms", _s16_54 = "save_and_preview", _s16_55 = "Save and Preview", _s16_56 = "supported_events", _s16_57 = "Supported Events", _s16_58 = "converted_amount", _s16_59 = "Converted Amount", _s17_32 = "converted_balance", _s17_33 = "Converted Balance", _s22_28 = "converted_paid_to_date", _s22_29 = "Converted Paid to Date", _s24_18 = "converted_credit_balance", _s24_19 = "Converted Credit Balance", _s17_34 = "default_documents", _s17_35 = "Default Documents", _s20_29 = "document_upload_help", _s34_9 = "Enable clients to upload documents", _s21_35 = "debug_mode_is_enabled", _s21_36 = "Debug mode is enabled", _s26_9 = "debug_mode_is_enabled_help", _s96_ = "Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.", _s17_36 = "upcoming_expenses", _s17_37 = "Upcoming Expenses", _s27_19 = "Successfully started import", _s24_20 = "duplicate_column_mapping", _s24_21 = "Duplicate column mapping", _s20_30 = "uses_inclusive_taxes", _s20_31 = "Uses Inclusive Taxes", _s18_35 = "is_amount_discount", _s18_36 = "Is Amount Discount", _s25_15 = "first_row_as_column_names", _s29_6 = "Use first row as column names", _s16_60 = "no_file_selected", _s16_61 = "No File Selected", _s22_30 = "required_files_missing", _s24_22 = "Please provide all CSVs.", _s43_1 = "Preview updates faster but is less accurate", _s17_38 = "fullscreen_editor", _s17_39 = "Fullscreen Editor", _s22_31 = "please_type_to_confirm", _s24_23 = "sent_invoices_are_locked", _s24_24 = "Sent invoices are locked", _s24_25 = "paid_invoices_are_locked", _s24_26 = "Paid invoices are locked", _s23_14 = "recurring_invoice_total", _s24_27 = "company_disabled_warning", _s17_40 = "default_task_rate", _s17_41 = "Default Task Rate", _s16_62 = "edit_task_status", _s16_63 = "Edit Task Status", _s19_26 = "created_task_status", _s32_5 = "Successfully created task status", _s19_27 = "updated_task_status", _s20_32 = "archived_task_status", _s33_13 = "Successfully archived task status", _s19_28 = "deleted_task_status", _s32_6 = "Successfully deleted task status", _s19_29 = "removed_task_status", _s32_7 = "Successfully removed task status", _s20_33 = "restored_task_status", _s33_14 = "Successfully restored task status", _s22_32 = "archived_task_statuses", _s42_4 = "Successfully archived :value task statuses", _s21_37 = "deleted_task_statuses", _s41_2 = "Successfully deleted :value task statuses", _s22_33 = "restored_task_statuses", _s42_5 = "Successfully restored :value task statuses", _s18_37 = "search_task_status", _s20_34 = "Search 1 Task Status", _s20_35 = "search_task_statuses", _s27_20 = "Search :count Task Statuses", _s16_64 = "show_tasks_table", _s16_65 = "Show Tasks Table", _s21_38 = "show_tasks_table_help", _s52_1 = "Always show the tasks section when creating invoices", _s20_36 = "invoice_task_timelog", _s20_37 = "Invoice Task Timelog", _s25_16 = "invoice_task_timelog_help", _s42_6 = "Add time details to the invoice line items", _s20_38 = "invoice_task_datelog", _s20_39 = "Invoice Task Datelog", _s25_17 = "invoice_task_datelog_help", _s42_7 = "Add date details to the invoice line items", _s21_39 = "auto_start_tasks_help", _s25_18 = "Start tasks before saving", _s18_38 = "configure_statuses", _s18_39 = "Configure Statuses", _s20_40 = "configure_categories", _s20_41 = "Configure Categories", _s18_40 = "expense_categories", _s18_41 = "Expense Categories", _s20_42 = "new_expense_category", _s20_43 = "New Expense Category", _s21_40 = "edit_expense_category", _s21_41 = "Edit Expense Category", _s24_28 = "created_expense_category", _s37_5 = "Successfully created expense category", _s24_29 = "updated_expense_category", _s37_6 = "Successfully updated expense category", _s25_19 = "archived_expense_category", _s38_3 = "Successfully archived expense category", _s24_30 = "deleted_expense_category", _s24_31 = "removed_expense_category", _s37_7 = "Successfully removed expense category", _s25_20 = "restored_expense_category", _s38_4 = "Successfully restored expense category", _s27_21 = "archived_expense_categories", _s26_10 = "deleted_expense_categories", _s46_6 = "Successfully deleted expense :value categories", _s27_22 = "restored_expense_categories", _s47_2 = "Successfully restored expense :value categories", _s23_15 = "search_expense_category", _s25_21 = "Search 1 Expense Category", _s25_22 = "search_expense_categories", _s32_8 = "Search :count Expense Categories", _s21_42 = "use_available_credits", _s21_43 = "Use Available Credits", _s22_34 = "negative_payment_error", _s17_42 = "force_update_help", _s76_ = "You are running the latest version but there may be pending fixes available.", _s18_42 = "should_be_invoiced", _s23_16 = "should_be_invoiced_help", _s29_7 = "add_documents_to_invoice_help", _s21_44 = "convert_currency_help", _s20_44 = "Set an exchange rate", _s16_66 = "expense_settings", _s16_67 = "Expense Settings", _s18_43 = "clone_to_recurring", _s18_44 = "Clone to Recurring", _s17_43 = "auto_bill_enabled", _s17_44 = "Auto Bill Enabled", _s25_23 = "stopped_recurring_invoice", _s38_5 = "Successfully stopped recurring invoice", _s25_24 = "started_recurring_invoice", _s38_6 = "Successfully started recurring invoice", _s25_25 = "resumed_recurring_invoice", _s38_7 = "Successfully resumed recurring invoice", _s19_30 = "gateway_refund_help", _s43_2 = "Process the refund with the payment gateway", _s22_35 = "first_day_of_the_month", _s22_36 = "First Day of the Month", _s21_45 = "last_day_of_the_month", _s21_46 = "Last Day of the Month", _s17_45 = "use_payment_terms", _s17_46 = "Use Payment Terms", _s16_68 = "remaining_cycles", _s16_69 = "Remaining Cycles", _s17_47 = "recurring_invoice", _s17_48 = "Recurring Invoice", _s18_45 = "recurring_invoices", _s18_46 = "Recurring Invoices", _s21_47 = "new_recurring_invoice", _s21_48 = "New Recurring Invoice", _s22_37 = "edit_recurring_invoice", _s22_38 = "Edit Recurring Invoice", _s25_26 = "created_recurring_invoice", _s38_8 = "Successfully created recurring invoice", _s25_27 = "updated_recurring_invoice", _s38_9 = "Successfully updated recurring invoice", _s26_11 = "archived_recurring_invoice", _s39_1 = "Successfully archived recurring invoice", _s25_28 = "deleted_recurring_invoice", _s38_10 = "Successfully deleted recurring invoice", _s25_29 = "removed_recurring_invoice", _s38_11 = "Successfully removed recurring invoice", _s26_12 = "restored_recurring_invoice", _s39_2 = "Successfully restored recurring invoice", _s27_23 = "archived_recurring_invoices", _s47_3 = "Successfully archived recurring :value invoices", _s26_13 = "deleted_recurring_invoices", _s46_7 = "Successfully deleted recurring :value invoices", _s27_24 = "restored_recurring_invoices", _s47_4 = "Successfully restored recurring :value invoices", _s24_32 = "search_recurring_invoice", _s26_14 = "Search 1 Recurring Invoice", _s25_30 = "search_recurring_invoices", _s32_9 = "Search :count Recurring Invoices", _s28_7 = "minimum_under_payment_amount", _s28_8 = "Minimum Under Payment Amount", _s18_47 = "allow_over_payment", _s18_48 = "Allow Over Payment", _s23_17 = "allow_over_payment_help", _s35_11 = "Support paying extra to accept tips", _s19_31 = "allow_under_payment", _s19_32 = "Allow Under Payment", _s24_33 = "allow_under_payment_help", _s30_4 = "payment_reconciliation_failure", _s22_39 = "Reconciliation Failure", _s30_5 = "payment_reconciliation_success", _s22_40 = "Reconciliation Success", _s17_49 = "email_retry_queue", _s17_50 = "Email Retry Queue", _s16_70 = "upstream_failure", _s16_71 = "Upstream Failure", _s24_34 = "welcome_to_invoice_ninja", _s24_35 = "Welcome to Invoice Ninja", _s18_49 = "reminder_last_sent", _s18_50 = "Reminder Last Sent", _s23_18 = "Page :current of :total", _s16_72 = "emailed_invoices", _s42_8 = "Enable third-party apps to create invoices", _s20_45 = "online_payment_email", _s20_46 = "Online Payment Email", _s20_47 = "manual_payment_email", _s20_48 = "Manual Payment Email", _s17_51 = "selected_invoices", _s17_52 = "Selected Invoices", _s17_53 = "selected_payments", _s17_54 = "Selected Payments", _s17_55 = "selected_expenses", _s17_56 = "Selected Expenses", _s17_57 = "upcoming_invoices", _s17_58 = "Upcoming Invoices", _s17_59 = "past_due_invoices", _s17_60 = "Past Due Invoices", _s53_0 = "Please restart the app once connected to the internet", _s17_61 = "crons_not_enabled", _s28_9 = "The crons need to be enabled", _s22_41 = "Search :count Webhooks", _s16_73 = "Search 1 Webhook", _s28_10 = "Successfully created webhook", _s28_11 = "Successfully updated webhook", _s16_74 = "archived_webhook", _s29_8 = "Successfully archived webhook", _s28_12 = "Successfully deleted webhook", _s28_13 = "Successfully removed webhook", _s16_75 = "restored_webhook", _s29_9 = "Successfully restored webhook", _s17_62 = "archived_webhooks", _s37_8 = "Successfully archived :value webhooks", _s16_76 = "deleted_webhooks", _s36_5 = "Successfully deleted :value webhooks", _s16_77 = "removed_webhooks", _s36_6 = "Successfully removed :value webhooks", _s17_63 = "restored_webhooks", _s37_9 = "Successfully restored :value webhooks", _s20_49 = "Search :count Tokens", _s26_15 = "Successfully created token", _s26_16 = "Successfully updated token", _s27_25 = "Successfully archived token", _s26_17 = "Successfully deleted token", _s26_18 = "Successfully removed token", _s27_26 = "Successfully restored token", _s35_12 = "Successfully archived :value tokens", _s34_10 = "Successfully deleted :value tokens", _s35_13 = "Successfully restored :value tokens", _s19_33 = "client_registration", _s19_34 = "Client Registration", _s24_36 = "client_registration_help", _s45_3 = "Enable clients to self register in the portal", _s21_49 = "customize_and_preview", _s19_35 = "Customize & Preview", _s20_50 = "client_email_not_set", _s41_3 = "Client does not have an email address set", _s16_78 = "credit_remaining", _s16_79 = "Credit Remaining", _s16_80 = "reminder_endless", _s17_64 = "Endless Reminders", _s23_19 = "configure_payment_terms", _s23_20 = "Configure Payment Terms", _s16_81 = "new_payment_term", _s16_82 = "New Payment Term", _s17_65 = "edit_payment_term", _s17_66 = "Edit Payment Term", _s20_51 = "created_payment_term", _s33_15 = "Successfully created payment term", _s20_52 = "updated_payment_term", _s33_16 = "Successfully updated payment term", _s21_50 = "archived_payment_term", _s34_11 = "Successfully archived payment term", _s20_53 = "deleted_payment_term", _s33_17 = "Successfully deleted payment term", _s20_54 = "removed_payment_term", _s33_18 = "Successfully removed payment term", _s21_51 = "restored_payment_term", _s34_12 = "Successfully restored payment term", _s22_42 = "archived_payment_terms", _s42_9 = "Successfully archived :value payment terms", _s21_52 = "deleted_payment_terms", _s41_4 = "Successfully deleted :value payment terms", _s22_43 = "restored_payment_terms", _s42_10 = "Successfully restored :value payment terms", _s23_21 = "change_to_mobile_layout", _s28_14 = "Change to the mobile layout?", _s24_37 = "change_to_desktop_layout", _s29_10 = "Change to the desktop layout?", _s18_51 = "partially_refunded", _s18_52 = "Partially Refunded", _s16_83 = "search_documents", _s16_84 = "search_tax_rates", _s17_67 = "Search 1 Document", _s16_85 = "Search 1 Invoice", _s16_86 = "Search 1 Product", _s17_68 = "Search 1 Tax Rate", _s16_87 = "Search 1 Project", _s16_88 = "Search 1 Expense", _s16_89 = "Search 1 Payment", _s17_69 = "cancelled_invoice", _s30_6 = "Successfully cancelled invoice", _s18_53 = "cancelled_invoices", _s31_10 = "Successfully cancelled invoices", _s16_90 = "reversed_invoice", _s29_11 = "Successfully reversed invoice", _s17_70 = "reversed_invoices", _s30_7 = "Successfully reversed invoices", _s17_71 = "city_state_postal", _s17_72 = "City/State/Postal", _s17_73 = "postal_city_state", _s17_74 = "Postal/City/State", _s16_91 = "purge_successful", _s32_10 = "Successfully purged company data", _s18_54 = "purge_data_message", _s65_ = "Warning: This will permanently erase your data, there is no undo.", _s25_31 = "Successfully saved design", _s25_32 = "receive_all_notifications", _s25_33 = "Receive All Notifications", _s16_92 = "purchase_license", _s16_93 = "Purchase License", _s22_44 = "cancel_account_message", _s22_45 = "delete_company_message", _s28_15 = "Successfully converted quote", _s27_27 = "Successfully created design", _s27_28 = "Successfully updated design", _s28_16 = "Successfully archived design", _s27_29 = "Successfully deleted design", _s27_30 = "Successfully removed design", _s28_17 = "Successfully restored design", _s16_94 = "archived_designs", _s36_7 = "Successfully archived :value designs", _s35_14 = "Successfully deleted :value designs", _s16_95 = "restored_designs", _s36_8 = "Successfully restored :value designs", _s16_96 = "recurring_quotes", _s16_97 = "Recurring Quotes", _s18_55 = "account_management", _s18_56 = "Account Management", _s27_31 = "Successfully created credit", _s27_32 = "Successfully updated credit", _s28_18 = "Successfully archived credit", _s27_33 = "Successfully deleted credit", _s27_34 = "Successfully removed credit", _s28_19 = "Successfully restored credit", _s16_98 = "archived_credits", _s16_99 = "restored_credits", _s36_9 = "Successfully restored :value credits", _s26_19 = "a_new_version_is_available", _s41_5 = "A new version of the web app is available", _s16_100 = "update_available", _s16_101 = "Update Available", _s29_12 = "Update successfully completed", _s17_75 = "slack_webhook_url", _s17_76 = "Slack Webhook URL", _s26_20 = "Successfully added company", _s16_102 = "Custom Company 1", _s16_103 = "Custom Company 2", _s16_104 = "Custom Company 3", _s16_105 = "Custom Company 4", _s16_106 = "Custom Product 1", _s16_107 = "Custom Product 2", _s16_108 = "Custom Product 3", _s16_109 = "Custom Product 4", _s16_110 = "Custom Contact 1", _s16_111 = "Custom Contact 2", _s16_112 = "Custom Contact 3", _s16_113 = "Custom Contact 4", _s16_114 = "Custom Project 1", _s16_115 = "Custom Project 2", _s16_116 = "Custom Project 3", _s16_117 = "Custom Project 4", _s16_118 = "Custom Expense 1", _s16_119 = "Custom Expense 2", _s16_120 = "Custom Expense 3", _s16_121 = "Custom Expense 4", _s16_122 = "Custom Invoice 1", _s16_123 = "Custom Invoice 2", _s16_124 = "Custom Invoice 3", _s16_125 = "Custom Invoice 4", _s16_126 = "Custom Payment 1", _s16_127 = "Custom Payment 2", _s16_128 = "Custom Payment 3", _s16_129 = "Custom Payment 4", _s18_57 = "Custom Surcharge 1", _s18_58 = "Custom Surcharge 2", _s18_59 = "Custom Surcharge 3", _s18_60 = "Custom Surcharge 4", _s18_61 = "contact_last_login", _s18_62 = "Contact Last Login", _s17_77 = "contact_full_name", _s17_78 = "Contact Full Name", _s21_53 = "contact_custom_value1", _s22_46 = "Contact Custom Value 1", _s21_54 = "contact_custom_value2", _s22_47 = "Contact Custom Value 2", _s21_55 = "contact_custom_value3", _s22_48 = "Contact Custom Value 3", _s21_56 = "contact_custom_value4", _s22_49 = "Contact Custom Value 4", _s17_79 = "shipping_address1", _s17_80 = "shipping_address2", _s18_63 = "Shipping Apt/Suite", _s23_22 = "Shipping State/Province", _s20_55 = "shipping_postal_code", _s20_56 = "Shipping Postal Code", _s16_130 = "shipping_country", _s16_131 = "Shipping Country", _s16_132 = "billing_address1", _s16_133 = "billing_address2", _s17_81 = "Billing Apt/Suite", _s22_50 = "Billing State/Province", _s19_36 = "billing_postal_code", _s19_37 = "Billing Postal Code", _s16_134 = "unapproved_quote", _s16_135 = "Unapproved Quote", _s21_57 = "include_recent_errors", _s35_15 = "Include recent errors from the logs", _s30_8 = "your_message_has_been_received", _s63_1 = "We have received your message and will try to respond promptly.", _s20_57 = "show_product_details", _s20_58 = "Show Product Details", _s25_34 = "show_product_details_help", _s56_ = "Include the description and cost in the product dropdown", _s20_59 = "pdf_min_requirements", _s34_13 = "The PDF renderer requires :version", _s18_64 = "adjust_fee_percent", _s18_65 = "Adjust Fee Percent", _s23_23 = "adjust_fee_percent_help", _s18_66 = "configure_settings", _s18_67 = "Configure Settings", _s21_58 = "password_is_too_short", _s20_60 = "password_is_too_easy", _s58_1 = "Password must contain an upper case character and a number", _s19_38 = "client_portal_tasks", _s19_39 = "Client Portal Tasks", _s23_24 = "client_portal_dashboard", _s23_25 = "Client Portal Dashboard", _s20_61 = "please_enter_a_value", _s20_62 = "Please enter a value", _s25_35 = "Successfully deleted logo", _s17_82 = "show_product_cost", _s17_83 = "Show Product Cost", _s55_0 = "Display a product cost field to track the markup/profit", _s21_59 = "show_product_quantity", _s21_60 = "Show Product Quantity", _s26_21 = "show_product_quantity_help", _s58_2 = "Display a product quantity field, otherwise default to one", _s21_61 = "show_invoice_quantity", _s21_62 = "Show Invoice Quantity", _s26_22 = "show_invoice_quantity_help", _s60_ = "Display a line item quantity field, otherwise default to one", _s21_63 = "show_product_discount", _s21_64 = "Show Product Discount", _s26_23 = "show_product_discount_help", _s34_14 = "Display a line item discount field", _s16_136 = "default_quantity", _s16_137 = "Default Quantity", _s21_65 = "default_quantity_help", _s47_5 = "Automatically set the line item quantity to one", _s16_138 = "default_tax_rate", _s16_139 = "Default Tax Rate", _s17_84 = "invoice_tax_rates", _s17_85 = "Invoice Tax Rates", _s18_68 = "no_client_selected", _s18_69 = "configure_gateways", _s18_70 = "Configure Gateways", _s18_71 = "tax_settings_rates", _s19_40 = "comma_sparated_list", _s20_63 = "Comma separated list", _s16_140 = "single_line_text", _s16_141 = "Single-line text", _s27_35 = "recover_password_email_sent", _s39_3 = "A password recovery email has been sent", _s16_142 = "recover_password", _s16_143 = "late_fee_percent", _s16_144 = "Late Fee Percent", _s19_41 = "Before the due date", _s18_72 = "After the due date", _s18_73 = "after_invoice_date", _s22_51 = "After the invoice date", _s21_66 = "partial_payment_email", _s21_67 = "Partial Payment Email", _s16_145 = "endless_reminder", _s16_146 = "Endless Reminder", _s16_147 = "filtered_by_user", _s16_148 = "Filtered by User", _s18_74 = "administrator_help", _s66_ = "Allow user to manage users, change settings and modify all records", _s25_36 = "Successfully created user", _s25_37 = "Successfully updated user", _s26_24 = "Successfully archived user", _s25_38 = "Successfully deleted user", _s25_39 = "Successfully removed user", _s26_25 = "Successfully restored user", _s34_15 = "Successfully archived :value users", _s33_19 = "Successfully deleted :value users", _s33_20 = "Successfully removed :value users", _s34_16 = "Successfully restored :value users", _s16_149 = "general_settings", _s16_150 = "General Settings", _s17_86 = "hide_paid_to_date", _s17_87 = "Hide Paid to Date", _s22_52 = "hide_paid_to_date_help", _s87_ = 'Only display the "Paid to Date" area on your invoices once a payment has been received.', _s23_26 = "invoice_embed_documents", _s28_20 = "invoice_embed_documents_help", _s39_4 = "Include attached images in the invoice.", _s16_151 = "all_pages_header", _s16_152 = "all_pages_footer", _s18_75 = "auto_email_invoice", _s23_27 = "auto_email_invoice_help", _s61_ = "Automatically email recurring invoices when they are created.", _s18_76 = "auto_archive_quote", _s23_28 = "auto_archive_quote_help", _s53_1 = "Automatically archive quotes when they are converted.", _s18_77 = "auto_convert_quote", _s23_29 = "auto_convert_quote_help", _s70_ = "Automatically convert a quote to an invoice when approved by a client.", _s17_88 = "workflow_settings", _s17_89 = "Workflow Settings", _s17_90 = "freq_three_months", _s16_153 = "freq_four_months", _s16_154 = "freq_three_years", _s17_91 = "generated_numbers", _s17_92 = "Generated Numbers", _s16_155 = "recurring_prefix", _s16_156 = "Recurring Prefix", _s17_93 = "invoice_surcharge", _s17_94 = "Invoice Surcharge", _s17_95 = "custom_javascript", _s17_96 = "Custom JavaScript", _s16_157 = "signature_on_pdf", _s21_68 = "signature_on_pdf_help", _s51_5 = "Show the client signature on the invoice/quote PDF.", _s25_40 = "show_accept_invoice_terms", _s22_53 = "Invoice Terms Checkbox", _s30_9 = "show_accept_invoice_terms_help", _s61_0 = "Require client to confirm that they accept the invoice terms.", _s23_30 = "show_accept_quote_terms", _s20_64 = "Quote Terms Checkbox", _s28_21 = "show_accept_quote_terms_help", _s59_0 = "Require client to confirm that they accept the quote terms.", _s25_41 = "require_invoice_signature", _s17_97 = "Invoice Signature", _s30_10 = "require_invoice_signature_help", _s42_11 = "Require client to provide their signature.", _s23_31 = "require_quote_signature", _s22_54 = "enable_portal_password", _s25_42 = "Password Protect Invoices", _s27_36 = "enable_portal_password_help", _s24_38 = "enable_email_markup_help", _s86_ = "Make it easier for your clients to pay you by adding schema.org markup to your emails.", _s16_158 = "attach_documents", _s16_159 = "Attach Documents", _s19_42 = "enable_email_markup", _s19_43 = "accepted_card_logos", _s19_44 = "Accepted Card Logos", _s19_45 = "update_address_help", _s45_4 = "Update client's address with provided details", _s16_160 = "created_tax_rate", _s29_13 = "Successfully created tax rate", _s16_161 = "updated_tax_rate", _s29_14 = "Successfully updated tax rate", _s17_98 = "archived_tax_rate", _s16_162 = "deleted_tax_rate", _s29_15 = "Successfully deleted tax rate", _s17_99 = "restored_tax_rate", _s30_11 = "Successfully restored tax rate", _s18_78 = "archived_tax_rates", _s38_12 = "Successfully archived :value tax rates", _s17_100 = "deleted_tax_rates", _s37_10 = "Successfully deleted :value tax rates", _s18_79 = "restored_tax_rates", _s38_13 = "Successfully restored :value tax rates", _s18_80 = "fill_products_help", _s71_ = "Selecting a product will automatically fill in the description and cost", _s20_65 = "update_products_help", _s65_0 = "Updating an invoice will automatically update the product library", _s16_163 = "convert_products", _s16_164 = "Convert Products", _s21_69 = "convert_products_help", _s16_165 = "company_gateways", _s16_166 = "Payment Gateways", _s19_46 = "new_company_gateway", _s20_66 = "edit_company_gateway", _s23_32 = "created_company_gateway", _s28_22 = "Successfully created gateway", _s23_33 = "updated_company_gateway", _s28_23 = "Successfully updated gateway", _s24_39 = "archived_company_gateway", _s29_16 = "Successfully archived gateway", _s23_34 = "deleted_company_gateway", _s28_24 = "Successfully deleted gateway", _s24_40 = "restored_company_gateway", _s29_17 = "Successfully restored gateway", _s25_43 = "archived_company_gateways", _s37_11 = "Successfully archived :value gateways", _s24_41 = "deleted_company_gateways", _s36_10 = "Successfully deleted :value gateways", _s25_44 = "restored_company_gateways", _s37_12 = "Successfully restored :value gateways", _s16_167 = "continue_editing", _s16_168 = "Continue Editing", _s21_70 = "first_day_of_the_week", _s21_71 = "First Day of the Week", _s23_35 = "first_month_of_the_year", _s23_36 = "First Month of the Year", _s18_81 = "military_time_help", _s19_47 = "filtered_by_project", _s19_48 = "Filtered by Project", _s17_101 = "filtered_by_group", _s17_102 = "Filtered by Group", _s19_49 = "filtered_by_invoice", _s19_50 = "Filtered by Invoice", _s18_82 = "filtered_by_client", _s18_83 = "Filtered by Client", _s18_84 = "filtered_by_vendor", _s18_85 = "Filtered by Vendor", _s26_26 = "Successfully created group", _s26_27 = "Successfully updated group", _s35_16 = "Successfully archived :value groups", _s34_17 = "Successfully deleted :value groups", _s35_17 = "Successfully restored :value groups", _s27_37 = "Successfully archived group", _s26_28 = "Successfully deleted group", _s27_38 = "Successfully restored group", _s26_29 = "Successfully uploaded logo", _s27_39 = "Successfully saved settings", _s16_169 = "product_settings", _s16_170 = "Product Settings", _s17_103 = "advanced_settings", _s17_104 = "Advanced Settings", _s23_37 = "templates_and_reminders", _s21_72 = "Templates & Reminders", _s22_55 = "credit_cards_and_banks", _s20_67 = "Credit Cards & Banks", _s19_51 = "data_visualizations", _s19_52 = "Data Visualizations", _s27_40 = "thank_you_for_your_purchase", _s28_25 = "Thank you for your purchase!", _s19_53 = "annual_subscription", _s19_54 = "Annual Subscription", _s25_45 = "please_enter_a_first_name", _s25_46 = "Please enter a first name", _s24_42 = "please_enter_a_last_name", _s24_43 = "Please enter a last name", _s33_21 = "please_agree_to_terms_and_privacy", _s77_1 = "Please agree to the terms of service and privacy policy to create an account.", _s16_171 = "terms_of_service", _s16_172 = "Terms of Service", _s18_86 = "no_record_selected", _s18_87 = "No record selected", _s21_73 = "error_unsaved_changes", _s34_18 = "Please save or cancel your changes", _s27_41 = "requires_an_enterprise_plan", _s17_105 = "uploaded_document", _s30_12 = "Successfully uploaded document", _s16_173 = "updated_document", _s29_18 = "Successfully updated document", _s17_106 = "archived_document", _s30_13 = "Successfully archived document", _s16_174 = "deleted_document", _s29_19 = "Successfully deleted document", _s17_107 = "restored_document", _s30_14 = "Successfully restored document", _s18_88 = "archived_documents", _s38_14 = "Successfully archived :value documents", _s17_108 = "deleted_documents", _s37_13 = "Successfully deleted :value documents", _s18_89 = "restored_documents", _s38_15 = "Successfully restored :value documents", _s16_175 = "expense_status_1", _s16_176 = "expense_status_2", _s16_177 = "expense_status_3", _s24_44 = "add_documents_to_invoice", _s24_45 = "Add Documents to Invoice", _s16_178 = "convert_currency", _s27_42 = "Successfully created vendor", _s27_43 = "Successfully updated vendor", _s28_26 = "Successfully archived vendor", _s27_44 = "Successfully deleted vendor", _s28_27 = "Successfully restored vendor", _s16_179 = "archived_vendors", _s16_180 = "restored_vendors", _s36_11 = "Successfully restored :value vendors", _s28_28 = "Successfully created expense", _s28_29 = "Successfully updated expense", _s16_181 = "archived_expense", _s29_20 = "Successfully archived expense", _s28_30 = "Successfully deleted expense", _s16_182 = "restored_expense", _s29_21 = "Successfully restored expense", _s17_109 = "archived_expenses", _s16_183 = "deleted_expenses", _s17_110 = "restored_expenses", _s37_14 = "Successfully restored :value expenses", _s21_74 = "failed_to_find_record", _s21_75 = "Failed to find record", _s36_12 = "Please correct any overlapping times", _s25_47 = "Successfully started task", _s25_48 = "Successfully stopped task", _s25_49 = "Successfully resumed task", _s16_184 = "auto_start_tasks", _s16_185 = "Auto Start Tasks", _s25_50 = "Successfully created task", _s25_51 = "Successfully updated task", _s26_30 = "Successfully archived task", _s25_52 = "Successfully deleted task", _s26_31 = "Successfully restored task", _s34_19 = "Successfully restored :value tasks", _s19_55 = "please_enter_a_name", _s19_56 = "Please enter a name", _s28_31 = "Successfully created project", _s28_32 = "Successfully updated project", _s16_186 = "archived_project", _s29_22 = "Successfully archived project", _s28_33 = "Successfully deleted project", _s16_187 = "restored_project", _s29_23 = "Successfully restored project", _s17_111 = "archived_projects", _s16_188 = "deleted_projects", _s17_112 = "restored_projects", _s37_15 = "Successfully restored :value projects", _s27_45 = "thank_you_for_using_our_app", _s28_34 = "Thank you for using our app!", _s21_76 = "If you like it please", _s18_90 = "click_here_capital", _s30_15 = "authenticate_to_change_setting", _s42_12 = "Please authenticate to change this setting", _s19_57 = "please_authenticate", _s19_58 = "Please authenticate", _s24_46 = "biometric_authentication", _s24_47 = "Biometric Authentication", _s17_113 = "comparison_period", _s17_114 = "Comparison Period", _s16_189 = "clone_to_invoice", _s16_190 = "Clone to Invoice", _s20_68 = "edit_recurring_quote", _s20_69 = "Edit Recurring Quote", _s16_191 = "shipping_address", _s16_192 = "Shipping Address", _s16_193 = "refresh_complete", _s16_194 = "Refresh Complete", _s23_38 = "please_enter_your_email", _s23_39 = "Please enter your email", _s26_32 = "please_enter_your_password", _s26_33 = "Please enter your password", _s21_77 = "please_enter_your_url", _s21_78 = "Please enter your URL", _s26_34 = "please_enter_a_product_key", _s26_35 = "Please enter a product key", _s17_115 = "an_error_occurred", _s17_116 = "An error occurred", _s19_59 = "copied_to_clipboard", _s30_16 = "Copied :value to the clipboard", _s16_195 = "could_not_launch", _s16_196 = "Could not launch", _s16_197 = "email_is_invalid", _s16_198 = "Email is invalid", _s28_35 = "Successfully created product", _s28_36 = "Successfully updated product", _s16_199 = "archived_product", _s29_24 = "Successfully archived product", _s28_37 = "Successfully deleted product", _s16_200 = "restored_product", _s29_25 = "Successfully restored product", _s17_117 = "archived_products", _s16_201 = "deleted_products", _s17_118 = "restored_products", _s37_16 = "Successfully restored :value products", _s27_46 = "Successfully created client", _s27_47 = "Successfully updated client", _s28_38 = "Successfully archived client", _s16_202 = "archived_clients", _s27_48 = "Successfully deleted client", _s28_39 = "Successfully restored client", _s16_203 = "restored_clients", _s36_13 = "Successfully restored :value clients", _s28_40 = "Successfully created invoice", _s28_41 = "Successfully updated invoice", _s16_204 = "archived_invoice", _s29_26 = "Successfully archived invoice", _s28_42 = "Successfully deleted invoice", _s16_205 = "restored_invoice", _s29_27 = "Successfully restored invoice", _s17_119 = "archived_invoices", _s16_206 = "deleted_invoices", _s17_120 = "restored_invoices", _s37_17 = "Successfully restored :value invoices", _s16_207 = "partial_due_date", _s16_208 = "Partial Due Date", _s17_121 = "invoice_status_id", _s22_56 = "click_plus_to_add_item", _s22_57 = "Click + to add an item", _s22_58 = "click_plus_to_add_time", _s20_70 = "please_select_a_date", _s20_71 = "Please select a date", _s22_59 = "please_select_a_client", _s22_60 = "Please select a client", _s24_48 = "please_select_an_invoice", _s24_49 = "Please select an invoice", _s30_17 = "please_enter_an_invoice_number", _s30_18 = "Please enter an invoice number", _s27_49 = "please_enter_a_quote_number", _s27_50 = "Please enter a quote number", _s22_61 = "marked_invoice_as_sent", _s35_18 = "Successfully marked invoice as sent", _s22_62 = "marked_invoice_as_paid", _s23_40 = "marked_invoices_as_sent", _s36_14 = "Successfully marked invoices as sent", _s23_41 = "marked_invoices_as_paid", _s37_18 = "please_enter_a_client_or_contact_name", _s37_19 = "Please enter a client or contact name", _s27_51 = "restart_app_to_apply_change", _s35_19 = "Restart the app to apply the change", _s16_209 = "no_records_found", _s16_210 = "No records found", _s16_211 = "payment_status_1", _s16_212 = "payment_status_2", _s16_213 = "payment_status_3", _s16_214 = "payment_status_4", _s16_215 = "payment_status_5", _s16_216 = "payment_status_6", _s17_122 = "payment_status_-1", _s17_123 = "payment_status_-2", _s35_20 = "Email payment receipt to the client", _s21_79 = "transaction_reference", _s21_80 = "Transaction Reference", _s28_43 = "Successfully created payment", _s28_44 = "Successfully updated payment", _s16_217 = "archived_payment", _s29_28 = "Successfully archived payment", _s28_45 = "Successfully deleted payment", _s16_218 = "restored_payment", _s29_29 = "Successfully restored payment", _s17_124 = "archived_payments", _s16_219 = "deleted_payments", _s17_125 = "restored_payments", _s37_20 = "Successfully restored :value payments", _s26_36 = "Successfully created quote", _s26_37 = "Successfully updated quote", _s27_52 = "Successfully archived quote", _s26_38 = "Successfully deleted quote", _s27_53 = "Successfully restored quote", _s35_21 = "Successfully restored :value quotes", _s28_46 = ":user created client :client", _s29_30 = ":user archived client :client", _s28_47 = ":user deleted client :client", _s30_19 = ":user created invoice :invoice", _s30_20 = ":user updated invoice :invoice", _s31_11 = ":user archived invoice :invoice", _s30_21 = ":user deleted invoice :invoice", _s30_22 = ":user updated payment :payment", _s31_12 = ":user archived payment :payment", _s30_23 = ":user deleted payment :payment", _s28_48 = ":user entered :credit credit", _s28_49 = ":user updated :credit credit", _s29_31 = ":user archived :credit credit", _s28_50 = ":user deleted :credit credit", _s26_39 = ":user created quote :quote", _s26_40 = ":user updated quote :quote", _s28_51 = ":contact viewed quote :quote", _s27_54 = ":user archived quote :quote", _s26_41 = ":user deleted quote :quote", _s27_55 = ":user restored quote :quote", _s31_13 = ":user restored invoice :invoice", _s29_32 = ":user restored client :client", _s31_14 = ":user restored payment :payment", _s29_33 = ":user restored :credit credit", _s28_52 = ":user created vendor :vendor", _s29_34 = ":user archived vendor :vendor", _s28_53 = ":user deleted vendor :vendor", _s29_35 = ":user restored vendor :vendor", _s30_24 = ":user created expense :expense", _s31_15 = ":user archived expense :expense", _s30_25 = ":user deleted expense :expense", _s31_16 = ":user restored expense :expense", _s24_50 = ":user created task :task", _s24_51 = ":user updated task :task", _s25_53 = ":user archived task :task", _s24_52 = ":user deleted task :task", _s25_54 = ":user restored task :task", _s30_26 = ":user updated expense :expense", _s39_5 = "System failed to email invoice :invoice", _s31_17 = ":user reversed invoice :invoice", _s32_11 = ":user cancelled invoice :invoice", _s28_54 = ":user updated client :client", _s28_55 = ":user updated vendor :vendor", _s17_126 = "one_time_password", _s17_127 = "One Time Password", _s20_72 = "marked_quote_as_sent", _s33_22 = "Successfully marked quote as sent", _s21_81 = "marked_credit_as_sent", _s34_20 = "Successfully marked credit as sent", _s22_63 = "long_press_multiselect", _s22_64 = "Long-press Multiselect", _s18_91 = "email_style_custom", _s18_92 = "Custom Email Style", _s24_53 = "custom_message_dashboard", _s24_54 = "Custom Dashboard Message", _s29_36 = "custom_message_unpaid_invoice", _s29_37 = "Custom Unpaid Invoice Message", _s27_56 = "custom_message_paid_invoice", _s27_57 = "Custom Paid Invoice Message", _s31_18 = "custom_message_unapproved_quote", _s31_19 = "Custom Unapproved Quote Message", _s19_60 = "task_number_pattern", _s19_61 = "Task Number Pattern", _s19_62 = "task_number_counter", _s19_63 = "Task Number Counter", _s22_65 = "expense_number_pattern", _s22_66 = "Expense Number Pattern", _s22_67 = "expense_number_counter", _s22_68 = "Expense Number Counter", _s21_82 = "vendor_number_pattern", _s21_83 = "Vendor Number Pattern", _s21_84 = "vendor_number_counter", _s21_85 = "Vendor Number Counter", _s21_86 = "ticket_number_pattern", _s21_87 = "Ticket Number Pattern", _s21_88 = "ticket_number_counter", _s21_89 = "Ticket Number Counter", _s22_69 = "payment_number_pattern", _s22_70 = "Payment Number Pattern", _s22_71 = "payment_number_counter", _s22_72 = "Payment Number Counter", _s22_73 = "invoice_number_pattern", _s22_74 = "Invoice Number Pattern", _s22_75 = "invoice_number_counter", _s22_76 = "Invoice Number Counter", _s20_73 = "quote_number_pattern", _s20_74 = "Quote Number Pattern", _s20_75 = "quote_number_counter", _s20_76 = "Quote Number Counter", _s21_90 = "client_number_pattern", _s21_91 = "Credit Number Pattern", _s21_92 = "client_number_counter", _s21_93 = "Credit Number Counter", _s21_94 = "credit_number_pattern", _s21_95 = "credit_number_counter", _s18_93 = "reset_counter_date", _s18_94 = "Reset Counter Date", _s28_56 = "shared_invoice_quote_counter", _s18_95 = "default_tax_name_1", _s18_96 = "Default Tax Name 1", _s18_97 = "default_tax_rate_1", _s18_98 = "Default Tax Rate 1", _s18_99 = "default_tax_name_2", _s18_100 = "Default Tax Name 2", _s18_101 = "default_tax_rate_2", _s18_102 = "Default Tax Rate 2", _s18_103 = "default_tax_name_3", _s18_104 = "Default Tax Name 3", _s18_105 = "default_tax_rate_3", _s18_106 = "Default Tax Rate 3", _s21_96 = "email_subject_invoice", _s21_97 = "Email Invoice Subject", _s19_64 = "email_subject_quote", _s19_65 = "Email Quote Subject", _s21_98 = "email_subject_payment", _s21_99 = "Email Payment Subject", _s29_38 = "email_subject_payment_partial", _s29_39 = "Email Partial Payment Subject", _s16_220 = "client_is_active", _s16_221 = "Client is Active", _s16_222 = "Client Apt/Suite", _s16_223 = "Vendor Apt/Suite", _s24_55 = "client_shipping_address1", _s22_77 = "Client Shipping Street", _s24_56 = "client_shipping_address2", _s25_55 = "Client Shipping Apt/Suite", _s16_224 = "invoice_due_date", _s17_128 = "custom_surcharge1", _s17_129 = "custom_surcharge2", _s17_130 = "custom_surcharge3", _s17_131 = "custom_surcharge4", _s19_66 = "expense_category_id", _s19_67 = "Expense Category ID", _s16_225 = "expense_category", _s19_68 = "invoice_currency_id", _s19_69 = "Invoice Currency ID", _s18_107 = "status_color_theme", _s18_108 = "Status Color Theme", _s16_226 = "load_color_theme", _s16_227 = "Load Color Theme", _s16_228 = 'Yes, it"s great!', _s55_1 = 'Match non-contiguous characters, ie. "ct" matches "cat"', _s25_56 = "bulk_email_purchase_order", _s45_5 = "Improve scrolling over the PDF preview [BETA]", _s37_21 = "Use visual markdown editor for emails", _s27_58 = "Successfully apporved quote", _s29_40 = "Pre-authorized debit payments", _s17_132 = "BECS Direct Debit", _s17_133 = "SEPA Direct Debit", _s16_229 = "Gross line total", _s18_109 = "bulk_email_invoice", _s16_230 = "bulk_email_quote", _s17_134 = "bulk_email_credit", _s16_231 = "Clone to expense", _s57_0 = "The Pro plan trial ends in :count days, click to upgrade.", _s62_ = "Today is the last day of the Pro plan trial, click to upgrade.", _s67_ = 'Once the file is ready you"ll receive an email with a download link', _s61_1 = "Set the subdomain or display the invoice on your own website.", _s17_135 = "Resend Invitation", _s25_57 = "Two-Factor Authentication", _s31_20 = 'Please type ":value" to confirm', _s48_0 = "Warning: this company has not yet been activated", _s31_21 = "Successfully update task status", _s29_41 = "Successfully deleted category", _s50_8 = "The credit amount cannot exceed the payment amount", _s31_22 = "Track the expense has been paid", _s33_23 = "Enable the expense to be invoiced", _s26_42 = "Make the documents visible", _s16_232 = "Apple/Google Pay", _s52_2 = "Support paying at minimum the partial/deposit amount", _s29_42 = "Successfully emailed invoices", _s27_59 = "Successfully emailed quotes", _s28_57 = "Successfully emailed credits", _s29_43 = "Tokeni \xebsht\xeb fshir\xeb me sukses", _s18_110 = "Sign in with email", _s16_233 = "Search Documents", _s16_234 = "Search Tax Rates", _s19_70 = ":count invoice sent", _s69_ = "Warning: This will permanently delete your company, there is no undo.", _s16_235 = "Created by :name", _s33_24 = "Adjust percent to account for fee", _s21_100 = "Password is too short", _s61_2 = "Automatically convert product prices to the client's currency", _s27_60 = "Requires an enterprise plan", _s24_57 = "Add documents to invoice", _s37_22 = "Successfully archived :count projects", _s36_15 = "Successfully deleted :count projects", _s19_71 = "Sign in with Google", _s20_77 = ":count invoices sent", _s37_23 = "Successfully archived :count products", _s36_16 = "Successfully deleted :count products", _s28_58 = "Successfully emailed payment", _s19_72 = "Click + to add time", _s54_0 = ":user emailed invoice :invoice for :client to :contact", _s44_2 = ":contact viewed invoice :invoice for :client", _s85_0 = ":contact entered payment :payment for :payment_amount on invoice :invoice for :client", _s50_9 = ":user emailed quote :quote for :client to :contact", _s42_13 = ":contact approved quote :quote for :client", _s50_10 = ":user cancelled a :payment_amount payment :payment", _s64_ = ":user refunded :adjustment of a :payment_amount payment :payment", _s24_58 = ":user created user :user", _s24_59 = ":user updated user :user", _s25_58 = ":user archived user :user", _s24_60 = ":user deleted user :user", _s25_59 = ":user restored user :user", _s26_43 = ":user marked sent :invoice", _s29_44 = ":user reopened ticket :ticket", _s31_23 = ":contact replied ticket :ticket", _s27_61 = ":user viewed ticket :ticket", _s61_3 = ":user emailed first reminder for invoice :invoice to :contact", _s62_0 = ":user emailed second reminder for invoice :invoice to :contact", _s61_4 = ":user emailed third reminder for invoice :invoice to :contact", _s63_2 = ":user emailed endless reminder for invoice :invoice to :contact", _s40_2 = ":user created subscription :subscription", _s40_3 = ":user updated subscription :subscription", _s41_6 = ":user archived subscription :subscription", _s40_4 = ":user deleted subscription :subscription", _s41_7 = ":user restored subscription :subscription", _s27_62 = "Successfully emailed credit", _s28_59 = "Shared Invoice Quote Counter", _s16_236 = "Expense Category", _s23_42 = "Add to invoice :invoice", _s23_43 = "View expense # :expense", _s16_237 = "Refunded Payment", _s45_6 = "Successfully archived :count expense category", _s18_111 = "Should be invoiced", _s16_238 = "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u062f\u0648\u0631\u064a\u0629", _s17_136 = "Save card details", _s69_0 = "Warning: This will permanently delete your account, there is no undo.", _s21_101 = "Recover your password", _s142_ = "Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.", _s34_21 = "Successfully archived the tax rate", _s18_112 = "Auto-fill products", _s20_78 = "Auto-update products", _s16_239 = "Convert currency", _s30_27 = "Successfully archived expenses", _s29_45 = "Successfully deleted expenses", _s34_22 = "Successfully archived :count tasks", _s33_25 = "Successfully deleted :count tasks", _s35_22 = "Successfully archived :count quotes", _s34_23 = "Successfully deleted :count quotes", _s41_8 = ":payment_amount payment (:payment) failed", _s26_44 = "Successfully emailed quote", _s21_102 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_240 = "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_103 = "\u0422\u0440\u0435\u0442\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", _s27_63 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 1", _s27_64 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 2", _s27_65 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 3", _s27_66 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 4", _s17_137 = "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_241 = "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0434\u0430\u043d\u044a\u0446\u0438", _s16_242 = "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_243 = "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s32_12 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", _s26_45 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_244 = "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s31_24 = ":contact \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", _s24_61 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", _s24_62 = "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s21_104 = "Dodaj ra\u010dunu :invoice", _s17_138 = "Podr\u017eani doga\u0111aji", _s19_73 = "Kategorije tro\u0161kova", _s24_63 = "Nova kategorija tro\u0161kova", _s27_67 = "Stranica :current od :total", _s18_113 = "Prilago\u0111ene oznake", _s25_60 = "E-po\u0161ta za ru\u010dno pla\u0107anje", _s17_139 = "Obri\u0161i dobavlja\u010da", _s18_114 = "Sakrij bo\u010dnu traku", _s16_245 = "Pretra\u017ei 1 token", _s21_105 = "Registracija klijenta", _s16_246 = "Po\u0161alji e-po\u0161tom", _s20_79 = "Vlasni\u0161tvo korisnika", _s18_115 = "Pretra\u017ei proizvode", _s17_140 = "Pretra\u017ei projekte", _s17_141 = "Pretra\u017ei tro\u0161kove", _s23_44 = "Uspje\u0161no otkazani ra\u010dun", _s19_74 = "Ponavljaju\u0107i zadaci", _s16_247 = "Trenutna verzija", _s19_75 = "A\u017euriranje dostupno", _s16_248 = "Vi\u0161e informacija", _s17_142 = "Puno ime kontakta", _s17_143 = "Kontaktirajte nas", _s20_80 = "Lozinka je prekratka", _s26_46 = "Zadaci klijentskog portala", _s26_47 = "Prika\u017ei koli\u010dinu proizvoda", _s23_45 = "Prika\u017ei koli\u010dinu ra\u010duna", _s23_46 = "Filtrirano po korisniku", _s23_47 = "Upravljanje korisnicima", _s21_106 = "Sakrij datum pla\u0107anja", _s70_0 = 'Prika\u017eite "Datum pla\u0107anja" na ra\u010dunima, onda kada je uplata primljena.', _s20_81 = "Prika\u017ei zaglavlje na", _s19_76 = "Prika\u017ei podno\u017eje na", _s22_78 = "Prilago\u0111eni JavaScript", _s19_77 = "Prilo\u017eite dokumente", _s16_249 = "Kreditna kartica", _s53_2 = "Odabir proizvoda \u0107e automatski ispuniti opis i cijenu", _s19_78 = "Filtrirano po grupi", _s20_82 = "Filtrirano po ra\u010dunu", _s22_79 = "Filtrirano po klijentu", _s24_64 = "Filtrirano po dobavlja\u010du", _s18_116 = "Postavke proizvoda", _s16_250 = "Postavke ure\u0111aja", _s17_144 = "Napredne postavke", _s17_145 = "Detalji korisnika", _s17_146 = "Prilago\u0111ena polja", _s16_251 = "Postavke e-po\u0161te", _s22_80 = "Vizualizacije podataka", _s18_117 = "Godi\u0161nja pretplata", _s16_252 = ":count korisnika", _s18_118 = "Molimo unesite ime", _s18_119 = "Korisni\u010dka prijava", _s21_107 = "Prijava putem e-po\u0161te", _s23_48 = "Uspje\u0161no obrisan tro\u0161ak", _s16_253 = "Prethodna godina", _s16_254 = "Uredi dobavlja\u010da", _s16_255 = "aktivni klijenti", _s18_120 = "Da li ste sigurni?", _s30_28 = "Kliknite + za dodavanje stavke", _s16_256 = "Drugi podsjetnik", _s16_257 = "Tre\u0107i podsjetnik", _s31_25 = "Po\u0161alji e-po\u0161tom ra\u010dun klijentu", _s21_108 = "Referenca transakcije", _s30_29 = ":user kreirao klijenta :client", _s32_13 = ":user arhivirao klijenta :client", _s30_30 = ":user obrisao klijenta :client", _s28_60 = ":user kreirao ra\u010dun :invoice", _s29_46 = ":user a\u017eurirao ra\u010dun :invoice", _s30_31 = ":user arhivirao ra\u010dun :invoice", _s30_32 = ":user a\u017eurirao uplatu :payment", _s30_33 = ":user ahivirao uplatu :payment", _s29_47 = ":user obrisao uplatu :payment", _s29_48 = ":user a\u017eurirao :credit kredit", _s30_34 = ":user arhivirao :credit kredit", _s28_61 = ":user obrisao :credit kredit", _s28_62 = ":user obnovio ra\u010dun :invoice", _s30_35 = ":user obnovio klijenta :client", _s29_49 = ":user obnovio uplatu :payment", _s28_63 = ":user obnovio :credit kredit", _s29_50 = ":user kreirao tro\u0161ak :expense", _s28_64 = ":user otkazao ra\u010dun :invoice", _s24_65 = "Prilago\u0111eni stil e-po\u0161te", _s16_258 = "Zaklju\u010daj ra\u010dune", _s21_109 = "Broja\u010d broja tro\u0161kova", _s18_121 = "Klijent je aktivan", _s17_147 = "Dr\u017eava dobavlja\u010da", _s21_110 = "N\xe1klad \xfasp\u011b\u0161n\u011b smaz\xe1n", _s16_259 = "\u010c\xedslo objedn\xe1vky", _s16_260 = "Datum splatnosti", _s32_14 = ":user archivoval platbu :payment", _s31_26 = ":user archivoval :credit kredit", _s29_51 = ":user obnovil platbu :payment", _s28_65 = ":user obnovil :credit kredit", _s22_81 = "Projektet blev slettet", _s17_148 = "Refunder betaling", _s22_82 = ":count fakturaer sendt", _s19_79 = "Skjul delbetalinger", _s20_83 = "Vilk\xe5r for fakturaen", _s17_149 = "Datavisualisering", _s16_261 = "Faktureringsdato", _s16_262 = "Betaling slettet", _s25_61 = "Het project is verwijderd", _s31_27 = "Succesvol abonnement verwijderd", _s27_68 = "Gedeeltelijk niet toegepast", _s20_84 = "De taak is gewijzigd", _s36_17 = "Succesvol een taak status verwijderd", _s16_263 = "Uitgavecategorie", _s20_85 = "Automatisch omzetten", _s28_66 = "Webhook succesvol verwijderd", _s37_24 = "Succesvol verwijderd: waarde webhooks", _s38_16 = "betalingstermijn met succes verwijderd", _s17_150 = "Eerste aangepaste", _s17_151 = "Tweede aangepaste", _s16_264 = "Derde aangepaste", _s18_122 = "Ontwerp verwijderd", _s20_86 = "Aangepaste Toeslag 1", _s20_87 = "Aangepaste Toeslag 2", _s20_88 = "Aangepaste Toeslag 3", _s20_89 = "Aangepaste Toeslag 4", _s31_28 = "Gelieve een klant te selecteren", _s22_83 = "Gedeeltelijke betaling", _s39_6 = "Succesvol verwijderd: waarde gebruikers", _s16_265 = "Betalingsgateway", _s18_123 = "Eerste herinnering", _s18_124 = "Tweede herinnering", _s17_152 = "Derde herinnering", _s17_153 = "Aangepaste waarde", _s21_111 = "Kredietnummer patroon", _s20_90 = "Kredietnummer teller", _s20_91 = "Please select a file", _s36_18 = "Successfully archived :count credits", _s35_23 = "Successfully deleted :count credits", _s36_19 = "Successfully archived :count vendors", _s35_24 = "Successfully deleted :count vendors", _s36_20 = "Successfully archived :count clients", _s35_25 = "Successfully deleted :count clients", _s37_25 = "Successfully archived :count invoices", _s36_21 = "Successfully deleted :count invoices", _s28_67 = "Successfully emailed invoice", _s37_26 = "Successfully archived :count payments", _s36_22 = "Successfully deleted :count payments", _s16_266 = "Otsige Kanbanist", _s23_49 = "Automaatne teisendamine", _s20_92 = "Osaliselt tagastatud", _s21_112 = "Kohandatud lisatasu 1", _s21_113 = "Kohandatud lisatasu 2", _s21_114 = "Kohandatud lisatasu 3", _s21_115 = "Kohandatud lisatasu 4", _s16_267 = "Viivise protsent", _s16_268 = "Import | Eksport", _s23_50 = "Arved m\xe4rgiti saadetuks", _s37_27 = ":contact vaatas hinnapakkumist :quote", _s28_68 = ":user t\xfchistas arve :invoice", _s18_125 = "Kohandatud V\xe4\xe4rtus", _s23_51 = "Ettemaksu numbri muster", _s24_66 = "Ettemaksu numbri loendur", _s32_15 = "Projekti poistettu onnistuneesti", _s30_36 = "Tilaus poistettu onnistuneesti", _s17_154 = "Mukautetut kent\xe4t", _s35_26 = "Maksuehto poistettiin onnistuneesti", _s22_84 = "Mukautettu Lis\xe4maksu 1", _s22_85 = "Mukautettu Lis\xe4maksu 2", _s22_86 = "Mukautettu Lis\xe4maksu 3", _s22_87 = "Mukautettu Lis\xe4maksu 4", _s16_269 = "Osittainen maksu", _s43_3 = "Arkistoitu onnistuneesti :count asiakas(ta)", _s43_4 = "Laskut merkittiin l\xe4hetetyksi onnistuneesti", _s22_88 = "Automaattinen laskutus", _s22_89 = "Param\xe8tres de paiement", _s22_90 = "Ajouter une passerelle", _s29_52 = "Ajouter \xe0 la facture :invoice", _s20_93 = "Devise de la facture", _s26_48 = "Voir la d\xe9pense # :expense", _s18_126 = "D\xe9pense r\xe9currente", _s20_94 = "D\xe9penses r\xe9currentes", _s27_69 = "Nouvelle d\xe9pense r\xe9currente", _s28_69 = "\xc9diter la d\xe9pense r\xe9currente", _s22_91 = "Guide de l'utilisateur", _s20_95 = "Derni\xe8re mise \xe0 jour", _s17_155 = "Pr\xe9nom du contact", _s19_80 = "\xc9diter l'abonnement", _s27_70 = "Abonnement cr\xe9\xe9 avec succ\xe8s", _s33_26 = "Abonnement mis \xe0 jour avec succ\xe8s", _s30_37 = "Abonnement archiv\xe9 avec succ\xe8s", _s18_127 = "Paiement rembours\xe9", _s17_156 = "Dernier trimestre", _s20_96 = "Convertir en facture", _s18_128 = "Facturer le projet", _s17_157 = "Facturer la t\xe2che", _s28_70 = "Enregistrer et pr\xe9visualiser", _s35_27 = "Enregistrer et envoyer par courriel", _s25_62 = "\xc9v\xe9nements pris en charge", _s16_270 = "Montant converti", _s20_97 = "Documents par d\xe9faut", _s32_16 = "Veuillez s\xe9lectionner un fichier", _s39_7 = "Les factures envoy\xe9es sont verrouill\xe9es", _s37_28 = "Les factures pay\xe9es sont verrouill\xe9es", _s19_81 = "Voir les param\xe8tres", _s29_53 = "Nouvelle cat\xe9gorie de d\xe9pense", _s40_5 = "La cat\xe9gorie a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s21_116 = "Forcer la mise \xe0 jour", _s38_17 = "Suivez les d\xe9penses qui ont \xe9t\xe9 pay\xe9es", _s20_98 = "Cloner en r\xe9currence", _s18_129 = "Champs utilisateur", _s23_52 = "Autofacturation activ\xe9e", _s17_158 = "Champs des totaux", _s47_6 = "La facture r\xe9currente a \xe9t\xe9 arr\xeat\xe9e avec succ\xe8s", _s48_1 = "La facture r\xe9currente a \xe9t\xe9 d\xe9marr\xe9e avec succ\xe8s", _s47_7 = "La facture r\xe9currente a \xe9t\xe9 reprise avec succ\xe8s", _s27_71 = "Remboursement de passerelle", _s56_0 = "Proc\xe9der au remboursement avec la passerelle de paiement", _s20_99 = "Premier jour du mois", _s20_100 = "Dernier jour du mois", _s31_29 = "Utiliser les d\xe9lais de paiement", _s22_92 = "Prochaine date d'envoi", _s18_130 = "Facture r\xe9currente", _s20_101 = "Factures r\xe9currentes", _s27_72 = "Nouvelle facture r\xe9currente", _s45_7 = "La facture r\xe9currente a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", _s51_6 = "La facture r\xe9currente a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s47_8 = "La facture r\xe9currente a \xe9t\xe9 retir\xe9e avec succ\xe8s", _s30_38 = "Recherche 1 facture r\xe9currente", _s37_29 = "Recherche :count factures r\xe9currentes", _s32_17 = "Montant minimum de sous-paiement", _s21_117 = "Accepter Sur-paiement", _s22_93 = "Accepter Sous-paiement", _s24_67 = "Conciliation non r\xe9ussie", _s20_102 = "Conciliation r\xe9ussie", _s18_131 = "Passerelle r\xe9ussie", _s19_82 = "\xc9chec de passerelle", _s20_103 = "Erreur de passerelle", _s24_68 = "File d'envoi de courriel", _s16_271 = "Num\xe9ro de client", _s25_63 = "Convertir automatiquement", _s19_83 = "Nom de l'entreprise", _s23_53 = "Dernier envoi de rappel", _s16_272 = "Voir dans Stripe", _s21_118 = "Appliquer le paiement", _s21_119 = "Type d'enregistrement", _s16_273 = "Type de paiement", _s16_274 = "Cl\xe9 d'entreprise", _s22_94 = "Factures s\xe9lectionn\xe9es", _s22_95 = "Paiements s\xe9lectionn\xe9s", _s20_104 = "T\xe2ches s\xe9lectionn\xe9es", _s22_96 = "D\xe9penses s\xe9lectionn\xe9es", _s16_275 = "Factures \xe0 venir", _s17_159 = "Cr\xe9er une facture", _s20_105 = "Cr\xe9er un fournisseur", _s24_69 = "Mettre \xe0 jour la facture", _s20_106 = "Supprimer la facture", _s23_54 = "Mettre \xe0 jour le client", _s19_84 = "Supprimer ce client", _s21_120 = "Supprimer ce paiement", _s28_71 = "Mettre \xe0 jour le fournisseur", _s24_70 = "Mettre \xe0 jour la d\xe9pense", _s20_107 = "Supprimer la d\xe9pense", _s22_97 = "Mettre \xe0 jour la t\xe2che", _s16_276 = "Lors du paiement", _s26_49 = "Afficher la barre lat\xe9rale", _s25_64 = "Masquer la barre lat\xe9rale", _s16_277 = "Type d'\xe9v\xe9nement", _s72_0 = "Veuillez red\xe9marrer l'application lorsque vous serez connect\xe9 \xe0 internet", _s30_39 = "Les crons doivent \xeatre activ\xe9s", _s28_72 = "Recherche de :count Webhooks", _s22_98 = "Recherche de 1 Webhook", _s33_27 = "Le webhook a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s39_8 = "Le webhook a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s36_23 = "Le webhook a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s37_30 = "Le webhook a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s35_28 = "Le webhook a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s37_31 = "Le webhook a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s26_50 = "Recherche de :count jetons", _s20_108 = "Recherche de 1 jeton", _s33_28 = "Le jeton a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s35_29 = "Le jeton a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s46_8 = "Les :value jetons ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s47_9 = "Les :value jetons ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s47_10 = "Les :value jetons ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s24_71 = "Tous les enregistrements", _s26_51 = "Propri\xe9t\xe9 de l'utilisateur", _s29_54 = "Utiliser la valeur par d\xe9faut", _s40_6 = "Condition de paiement retir\xe9 avec succ\xe8s", _s36_24 = "Basculer vers l'affichage ordinateur", _s17_160 = "Montant du cr\xe9dit", _s16_278 = "Afficher le menu", _s20_109 = "Recherche de cr\xe9dits", _s25_65 = "Recherche de fournisseurs", _s25_66 = "Recherche de taux de taxe", _s23_55 = "Recherche de 1 document", _s21_121 = "Recherche de 1 design", _s22_99 = "Recherche de 1 facture", _s21_122 = "Recherche de 1 client", _s22_100 = "Recherche de 1 produit", _s25_67 = "Recherche de 1 soumission", _s21_123 = "Recherche de 1 cr\xe9dit", _s26_52 = "Recherche de 1 utilisateur", _s27_73 = "Recherche de 1 taux de taxe", _s20_110 = "Recherche de 1 t\xe2che", _s21_124 = "Recherche de 1 projet", _s22_101 = "Recherche de 1 d\xe9pense", _s23_56 = "Recherche de 1 paiement", _s21_125 = "Recherche de 1 groupe", _s37_32 = "La facture a \xe9t\xe9 invers\xe9e avec succ\xe8s", _s42_14 = "Les factures ont \xe9t\xe9 invers\xe9es avec succ\xe8s", _s18_132 = "Purger les donn\xe9es", _s23_57 = "Adresse de l'entreprise", _s16_279 = "Ajouter un champ", _s22_102 = ":count facture envoy\xe9e", _s33_29 = "Recevoir toutes les notifications", _s19_85 = "Acheter une licence", _s18_133 = "Activer la licence", _s19_86 = "Supprimer le compte", _s32_18 = "Le mod\xe8le a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s38_18 = "Le mod\xe8le a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s35_30 = "Le mod\xe8le a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s36_25 = "Le mod\xe8le a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s34_24 = "Le mod\xe8le a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s36_26 = "Le mod\xe8le a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s18_134 = "T\xe2ches r\xe9currentes", _s16_280 = "\xc9diter le cr\xe9dit", _s38_19 = "Le cr\xe9dit a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s34_25 = "Le cr\xe9dit a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s16_281 = "Derni\xe8re version", _s56_1 = "Une nouvelle version de l'application web est disponible", _s22_103 = "Mise \xe0 jour disponible", _s42_15 = "La mise \xe0 jour a \xe9t\xe9 compl\xe9t\xe9e avec succ\xe8s", _s20_111 = "URL du Webhook Slack", _s36_27 = "Conditions d'utilisation pour cr\xe9dit", _s21_126 = "Client personnalis\xe9 2", _s21_127 = "Client personnalis\xe9 3", _s21_128 = "Client personnalis\xe9 4", _s26_53 = "Fournisseur personnalis\xe9 1", _s26_54 = "Fournisseur personnalis\xe9 2", _s26_55 = "Fournisseur personnalis\xe9 3", _s26_56 = "Fournisseur personnalis\xe9 4", _s29_55 = "Derni\xe8re connexion du contact", _s20_112 = "T\xe9l\xe9phone du contact", _s18_135 = "R\xe9gion/D\xe9partement", _s19_87 = "Courriel du contact", _s18_136 = "S\xe9lection multiple", _s24_72 = "V\xe9rifier le mot de passe", _s78_ = "Veuillez inclure la description et le co\xfbt dans la liste d\xe9roulante du produit", _s31_30 = "Ajuster le pourcentage de frais", _s41_9 = "Ajuster le frais de pourcentage au compte", _s33_30 = "Tableau de bord du portail client", _s17_161 = "G\xe9n\xe9rer un nombre", _s18_137 = "Historique lat\xe9ral", _s20_113 = "Premier personnalis\xe9", _s19_88 = "Second personnalis\xe9", _s22_104 = "Troisi\xe8me personnalis\xe9", _s19_89 = "Quantit\xe9 par d\xe9faut", _s17_162 = "Deux taux de taxe", _s23_58 = "Taux de taxe par d\xe9faut", _s31_31 = "Veuillez s\xe9lectionner un client", _s27_74 = "Couleur de mise en \xe9vidence", _s16_282 = "Liste d\xe9roulante", _s18_138 = "Num\xe9ro de paiement", _s28_73 = "Apr\xe8s la date de facturation", _s16_283 = "Paiement partiel", _s22_105 = "Filtr\xe9 par utilisateur", _s24_73 = "Gestion des utilisateurs", _s18_139 = "Nouvel utilisateur", _s20_114 = "\xc9diter l'utilisateur", _s19_90 = "Param\xe8tres g\xe9n\xe9raux", _s24_74 = 'Masquer "Pay\xe9 \xe0 ce jour"', _s18_140 = "Documents int\xe9gr\xe9s", _s18_141 = "Couleur principale", _s18_142 = "Couleur secondaire", _s16_284 = "Taille de police", _s17_163 = "Champs de facture", _s25_68 = "Conditions de facturation", _s29_56 = "Param\xe8tres de flux de travail", _s23_59 = "Prochaine remise \xe0 z\xe9ro", _s17_164 = "Pr\xe9fixe r\xe9current", _s23_60 = "Marge interne du nombre", _s19_91 = "Valeur de compagnie", _s18_143 = "Compteur de nombre", _s16_285 = "Mod\xe8le de nombre", _s16_286 = "CSS personnalis\xe9", _s23_61 = "JavaScript personnalis\xe9", _s19_92 = "Afficher sur le PDF", _s48_2 = "Case \xe0 cocher pour les conditions de facturation", _s20_115 = "Signature de facture", _s42_16 = "Prot\xe9ger les factures avec un mot de passe", _s18_144 = "Mod\xe8le de courriel", _s17_165 = "Virement bancaire", _s17_166 = "Montant des frais", _s21_129 = "Pourcentage des frais", _s16_287 = "Limite des frais", _s26_57 = "Logos des cartes accept\xe9es", _s20_116 = "Nouveau taux de taxe", _s22_106 = "\xc9diter le taux de taxe", _s42_17 = "Le taux de taxe a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s42_18 = "Le taux de taxe a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s65_1 = "La mise \xe0 jour d'une facture entra\xeene la mise \xe0 jour des produits", _s22_107 = "Convertir les produits", _s22_108 = "Passerelle de paiement", _s19_93 = "Nouvelle passerelle", _s20_117 = "\xc9diter la passerelle", _s37_33 = "La passerelle a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", _s43_5 = "La passerelle a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s40_7 = "La passerelle a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s41_10 = "La passerelle a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s41_11 = "La passerelle a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s16_288 = "Format de devise", _s23_62 = "Premier mois de l'ann\xe9e", _s17_167 = "Format date/heure", _s19_94 = "Envoyer des rappels", _s18_145 = "Filtrer par projet", _s18_146 = "Filtrer par groupe", _s16_289 = "\xc9diter le groupe", _s32_19 = "Le groupe a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s38_20 = "Le groupe a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s35_31 = "Le groupe a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s36_28 = "Le groupe a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s36_29 = "Le groupe a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s24_75 = "Param\xe8tres de l'appareil", _s18_147 = "Param\xe8tres de base", _s18_148 = "Param\xe8tres avanc\xe9s", _s18_149 = "Paiements en ligne", _s20_118 = "Champs personnalis\xe9s", _s26_58 = "Boutons Achetez maintenant", _s27_75 = "Cartes de cr\xe9dit et banques", _s25_69 = "Visualisation des donn\xe9es", _s23_63 = "Inscription avec Google", _s17_168 = "Abonnement annuel", _s22_109 = "Veuillez entrer un nom", _s24_76 = "Conditions d'utilisation", _s28_74 = "Politique de confidentialit\xe9", _s32_20 = "Aucun enregistrement s\xe9lectionn\xe9", _s38_21 = "Le document a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s38_22 = "Le document a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s18_150 = "Date de la d\xe9pense", _s19_95 = "Nouveau fournisseur", _s18_151 = "Copier facturation", _s16_290 = "Heures budg\xe9t\xe9es", _s32_21 = "Le projet a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s39_9 = "Le projet a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s35_32 = "Le projet a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s36_30 = "Le projet a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s27_76 = "Si vous appr\xe9ciez, merci de", _s49_2 = "Veuillez vous connecter pour changer ce param\xe8tre", _s23_64 = "Veuillez vous connecter", _s21_130 = "Connexion biom\xe9trique", _s21_131 = "Connexion avec Google", _s19_96 = "Intervalle de dates", _s18_152 = "P\xe9riode pr\xe9c\xe9dente", _s16_291 = "Ann\xe9e pr\xe9c\xe9dente", _s16_292 = "7 derniers jours", _s17_169 = "30 derniers jours", _s19_97 = "Modifier la facture", _s21_132 = "\xc9diter le fournisseur", _s22_110 = "Adresse de facturation", _s24_77 = ":count factures envoy\xe9es", _s35_33 = ":value a \xe9t\xe9 copi\xe9 au presse-papier", _s20_119 = "Lancement impossible", _s18_153 = "Ajouter un contact", _s37_34 = "Le produit a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s36_31 = ":count produits archiv\xe9s avec succ\xe8s", _s35_34 = ":count clients archiv\xe9s avec succ\xe8s", _s16_293 = "Nouvelle facture", _s38_23 = ":count factures supprim\xe9es avec succ\xe8s", _s18_154 = "Notes personnelles", _s35_35 = "Cliquez sur + pour ajouter du temps", _s20_120 = "Marquer comme envoy\xe9", _s16_294 = "Date du paiement", _s16_295 = "\xc9tat du paiement", _s23_65 = "Partiellement rembours\xe9", _s16_296 = "Courriel initial", _s16_297 = "Troisi\xe8me rappel", _s30_40 = ":user a cr\xe9\xe9 le client :client", _s33_31 = ":user a archiv\xe9 le client :client", _s34_26 = ":user a supprim\xe9 le client :client", _s32_22 = ":user a cr\xe9\xe9 la facture :invoice", _s38_24 = ":user a mis \xe0 jour la facture :invoice", _s35_36 = ":user a archiv\xe9 la facture :invoice", _s36_32 = ":user a supprim\xe9 la facture :invoice", _s36_33 = ":user a mis \xe0 jour le cr\xe9dit :credit", _s33_32 = ":user a archiv\xe9 le cr\xe9dit :credit", _s34_27 = ":user a supprim\xe9 le cr\xe9dit :credit", _s36_34 = ":user a restaur\xe9 la facture :invoice", _s34_28 = ":user a restaur\xe9 le client :client", _s37_35 = ":user a restaur\xe9 le paiement :payment", _s34_29 = ":user a restaur\xe9 le cr\xe9dit :credit", _s35_37 = ":user a cr\xe9\xe9 le fournisseur :vendor", _s38_25 = ":user a archiv\xe9 le fournisseur :vendor", _s39_10 = ":user a supprim\xe9 le fournisseur :vendor", _s39_11 = ":user a restaur\xe9 le fournisseur :vendor", _s32_23 = ":user a cr\xe9\xe9 la d\xe9pense :expense", _s35_38 = ":user a archiv\xe9 la d\xe9pense :expense", _s36_35 = ":user a supprim\xe9 la d\xe9pense :expense", _s36_36 = ":user a restaur\xe9 la d\xe9pense :expense", _s50_11 = "Le paiement de :payment_amount a \xe9chou\xe9 (:payment)", _s27_77 = ":user a cr\xe9\xe9 la t\xe2che :task", _s33_33 = ":user a mis \xe0 jour la t\xe2che :task", _s30_41 = ":user a archiv\xe9 la t\xe2che :task", _s31_32 = ":user a supprim\xe9 la t\xe2che :task", _s31_33 = ":user a restaur\xe9 la t\xe2che :task", _s38_26 = ":user a mis \xe0 jour la d\xe9pense :expense", _s32_24 = ":user a cr\xe9\xe9 l'utilisateur :user", _s38_27 = ":user a mis \xe0 jour l'utilisateur :user", _s35_39 = ":user a archiv\xe9 l'utilisateur :user", _s36_37 = ":user a supprim\xe9 l'utilisateur :user", _s36_38 = ":user a restaur\xe9 l'utilisateur :user", _s48_3 = ":user a marqu\xe9 la facture :invoice comme envoy\xe9e", _s35_40 = ":user a invers\xe9 la facture :invoice", _s34_30 = ":user a annul\xe9 la facture :invoice", _s27_78 = "Mot de passe \xe0 usage unique", _s34_31 = "Multis\xe9lection par pression longue", _s22_111 = "Valeur personnalis\xe9e 3", _s22_112 = "Valeur personnalis\xe9e 4", _s30_42 = "Style de courriel personnalis\xe9", _s39_12 = "Message personnalis\xe9 du tableau de bord", _s24_78 = "Verrouiller les factures", _s29_57 = "Compteur du num\xe9ro de facture", _s26_59 = "Mod\xe8le de num\xe9ro de cr\xe9dit", _s28_75 = "Mod\xe8le de compteur de cr\xe9dit", _s33_34 = "Remise \xe0 z\xe9ro du compteur de date", _s22_113 = "Espacement du compteur", _s22_114 = "App / bureau du client", _s21_133 = "Montant de la facture", _s23_66 = "Facturation automatique", _s20_121 = "Ville du fournisseur", _s19_98 = "Pays du fournisseur", _s19_99 = "Montant du paiement", _s16_298 = "Journal de temps", _s20_122 = "Cat\xe9gorie de d\xe9pense", _s17_170 = "ID de transaction", _s27_79 = "Partiellement non-appliqu\xe9e", _s18_155 = "Soumission expir\xe9e", _s20_123 = "Courriel de paiement", _s23_67 = "Facture personnalis\xe9e 2", _s23_68 = "Facture personnalis\xe9e 3", _s23_69 = "Facture personnalis\xe9e 4", _s25_70 = "Surcharge personnalis\xe9e 1", _s25_71 = "Surcharge personnalis\xe9e 2", _s25_72 = "Surcharge personnalis\xe9e 3", _s25_73 = "Surcharge personnalis\xe9e 4", _s17_171 = "Valeur par d\xe9faut", _s50_12 = "La facture a \xe9t\xe9 marqu\xe9e comme envoy\xe9e avec succ\xe8s", _s56_2 = "Les factures ont \xe9t\xe9 marqu\xe9es comme envoy\xe9es avec succ\xe8s", _s20_124 = "Inscrire un paiement", _s26_60 = "Mod\xe8le du num\xe9ro de cr\xe9dit", _s28_76 = "Compteur du num\xe9ro de cr\xe9dit", _s18_156 = "Gewinn und Verlust", _s16_299 = "Angebot annehmen", _s25_74 = "Angebot per E-Mail senden", _s30_43 = "Wiederkehrende Ausgaben suchen", _s16_300 = "Kanban ausw\xe4hlen", _s18_157 = "Rechnung in Verzug", _s19_100 = "Standard-Steuersatz", _s20_125 = "Belegposition Steuer", _s16_301 = "F\xe4lligkeitsdatum", _s23_70 = "Zahlungsanbieter Fehler", _s24_79 = "Automatisch konvertieren", _s41_12 = "Guthaben erfolgreich per E-Mail versendet", _s19_101 = "Teilweise erstattet", _s19_102 = "Benutzerdefiniert 3", _s30_44 = "Benutzerdefinierter Zuschlag 1", _s30_45 = "Benutzerdefinierter Zuschlag 2", _s30_46 = "Benutzerdefinierter Zuschlag 3", _s30_47 = "Benutzerdefinierter Zuschlag 4", _s29_58 = "Bitte w\xe4hlen Sie einen Kunden", _s24_80 = "Allgemeine Einstellungen", _s55_2 = 'Die Rechnung wurde erfolgreich als "versendet" markiert', _s16_302 = "Erste Erinnerung", _s17_172 = "Zweite Erinnerung", _s17_173 = "Dritte Erinnerung", _s16_303 = "Zahlung eingeben", _s34_32 = ":contact schaute Angebot :quote an", _s24_81 = "Benutzerdefinierten Wert", _s23_71 = "Gutschriftnummernz\xe4hler", _s25_75 = "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae project", _s17_174 = "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s22_115 = "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7\u03c2", _s18_158 = "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", _s18_159 = "\u03a3\u03c5\u03bd\u03b5\u03c7\u03ae\u03c2 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s16_304 = "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s18_160 = "\u0394\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s16_305 = "\u03a4\u03c1\u03af\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s26_61 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 1", _s26_62 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 2", _s26_63 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 3", _s26_64 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 4", _s18_161 = "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s24_82 = "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s19_103 = "24\u03c9\u03c1\u03b7 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u038f\u03c1\u03b1\u03c2", _s19_104 = "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03a7\u03c1\u03cc\u03bd\u03bf\u03c2", _s42_19 = "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", _s42_20 = "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1", _s16_306 = "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s18_162 = "\u0394\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s16_307 = "\u03a4\u03c1\u03af\u03c4\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s18_163 = "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s41_13 = "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b5\u03af\u03b4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", _s18_164 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae", _s27_80 = "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ce\u03bd", _s16_308 = "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5 2", _s21_134 = "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s27_81 = "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e1\u05d5\u05de\u05e0\u05d4 \u05db\u05e0\u05e9\u05dc\u05d7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s28_77 = "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e1\u05d5\u05de\u05e0\u05d5 \u05db\u05e0\u05e9\u05dc\u05d7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s30_48 = "Cliente eliminato con successo", _s18_165 = "Fattura in ritardo", _s18_166 = "Preventivo scaduto", _s17_175 = "Tipo di Pagamento", _s19_105 = "Aggiorna Preventivo", _s25_76 = "Promemoria senza scadenza", _s20_126 = "Termini di pagamento", _s23_72 = "Parzialmente rimborsato", _s24_83 = "Imposta personalizzata 1", _s24_84 = "Imposta personalizzata 2", _s24_85 = "Imposta personalizzata 3", _s24_86 = "Imposta personalizzata 4", _s16_309 = "Aliquote Fiscali", _s18_167 = "Pagamento parziale", _s28_78 = "Si prega di inserire un nome", _s17_176 = "Parziale/Deposito", _s48_4 = "Fattura contrassegnata con successo come inviata", _s48_5 = "Fatture contrassegnate con successo come inviate", _s23_73 = "Fatturazione automatica", _s39_13 = ":user ha cancellato la fattura :invoice", _s36_39 = ":user ha creato il preventivo :quote", _s21_135 = "Valore Personalizzato", _s22_116 = "Formato numero crediti", _s24_87 = "Contatore numero credito", _s32_25 = ":user \u306f \u8acb\u6c42\u66f8 :invoice \u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s25_77 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s29_59 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s17_177 = "\u041f\u043e\u0434\u0435\u0441\u0435\u043d\u0430 \u0432\u0440\u0435\u0434\u043d\u043e\u0441\u0442", _s23_74 = "Tilbud sendt som e-post", _s17_178 = "Tredje P\xe5minnelse", _s17_179 = "Faktura zap\u0142acona", _s28_79 = "Szukaj wydatk\xf3w odnawialnych", _s18_168 = "Strona internetowa", _s30_49 = "Wydatki zosta\u0142y zarchiwizowane", _s24_88 = "Wydatki zosta\u0142y usuni\u0119te", _s22_117 = "Pierwsze przypomnienie", _s29_60 = "Visualizar despesa # :expense", _s17_180 = "Nome do Remetente", _s18_169 = "Despesa Recorrente", _s20_127 = "Despesas Recorrentes", _s23_75 = "Nova Despesa Recorrente", _s25_78 = "Editar Despesa Recorrente", _s37_36 = "Despesa recorrente criada com sucesso", _s41_14 = "Despesa recorrente atualizada com sucesso", _s40_8 = "Despesa recorrente arquivada com sucesso", _s28_80 = "Projeto exclu\xeddo com sucesso", _s41_15 = "Despesa recorrente restaurada com sucesso", _s18_170 = "\xdaltima Atualiza\xe7\xe3o", _s21_136 = "Pagamento Reembolsado", _s19_106 = "\xdaltimo Quadrimestre", _s19_107 = "Eventos com Suporte", _s18_171 = "Vencimento Parcial", _s18_172 = "Total do Or\xe7amento", _s25_79 = "Mostrar Tabela de Tarefas", _s22_118 = "Categorias de Despesas", _s26_65 = "Nova Categoria de Despesas", _s18_173 = "For\xe7ar atualiza\xe7\xe3o", _s31_34 = "Acompanhe se a despesa foi paga", _s29_61 = "Tornar os documentos vis\xedveis", _s25_80 = "Defina uma taxa de c\xe2mbio", _s26_66 = "Configura\xe7\xf5es das despesas", _s17_181 = "Cart\xe3o de captura", _s42_21 = "Fatura recorrente interrompida com sucesso", _s38_28 = "Fatura recorrente iniciada com sucesso", _s38_29 = "Fatura recorrente retomada com sucesso", _s18_174 = "Data de vencimento", _s19_108 = "Primeiro dia do M\xeas", _s17_182 = "\xdaltimo dia do M\xeas", _s21_137 = "Pr\xf3xima data de envio", _s16_310 = "Ciclos Restantes", _s24_89 = "Editar Fatura Recorrente", _s36_40 = "Fatura recorrente criada com sucesso", _s40_9 = "Fatura recorrente atualizada com sucesso", _s38_30 = "Fatura recorrente removida com sucesso", _s30_50 = "Encontrado 1 Fatura recorrente", _s37_37 = "Encontrado :count Faturas recorrentes", _s30_51 = "Faturamento Autom\xe1tico Ativado", _s32_26 = "Valor m\xednimo abaixo do pagamento", _s29_62 = "Permitir pagamento em excesso", _s24_90 = "Permitir pagamento menor", _s17_183 = "Sucesso do Portal", _s26_67 = "Fila de Repeti\xe7\xe3o de Email", _s26_68 = "Bem-vindo ao Invoice Ninja", _s18_175 = "Lembrete 1 Enviado", _s18_176 = "Lembrete 2 Enviado", _s18_177 = "Lembrete 3 Enviado", _s23_76 = "\xdaltimo Lembrete Enviado", _s23_77 = "P\xe1gina: atual de: total", _s40_10 = "Cr\xe9ditos enviados por e-mail com sucesso", _s17_184 = "Aplicar Pagamento", _s24_91 = "Etiquetas Personalizadas", _s16_311 = "Tipo de Registro", _s17_185 = "Tipo de Pagamento", _s16_312 = "Chave da Empresa", _s25_81 = "Email de pagamento manual", _s24_92 = "Configura\xe7\xf5es do cliente", _s20_128 = "Faturas Selecionadas", _s23_78 = "Pagamentos Selecionados", _s20_129 = "Tarefas Selecionadas", _s21_138 = "Despesas Selecionadas", _s19_109 = "Pagamentos Recentes", _s19_110 = "Pr\xf3ximos Or\xe7amentos", _s20_130 = "Or\xe7amentos Expirados", _s16_313 = "Criar fornecedor", _s17_186 = "Atualizar Cliente", _s17_187 = "Atualizar Despesa", _s16_314 = "Atualizar Tarefa", _s21_139 = "Ocultar Barra Lateral", _s26_69 = "Pesquisar: contar Webhooks", _s19_111 = "Pesquisar 1 Webhook", _s26_70 = "Webhook Criada com Sucesso", _s30_52 = "Webhook Atualizada com Sucesso", _s29_63 = "Webhook Arquivada com Sucesso", _s28_81 = "Webhook Removida com Sucesso", _s30_53 = "Webhook Restaurada com Sucesso", _s24_93 = "Pesquisar: contar Tokens", _s17_188 = "Pesquisar 1 Token", _s26_71 = "Token Removido com Sucesso", _s28_82 = "Token Restaurado com Sucesso", _s25_82 = "Personalizar & Visualizar", _s19_112 = "Pagamento por Email", _s16_315 = "Cr\xe9dito Restante", _s17_189 = "Lembrete cont\xednuo", _s36_41 = "Configurar as condi\xe7\xf5es de pagamento", _s21_140 = "Condi\xe7\xe3o de Pagamento", _s26_72 = "Novo Condi\xe7\xe3o de Pagamento", _s42_22 = "Condi\xe7\xe3o de pagamento removida com sucesso", _s44_3 = "Condi\xe7\xe3o de pagamento restaurado com sucesso", _s16_316 = "Entrar com email", _s26_73 = "Mudar para o layout m\xf3vel?", _s24_94 = "Parcialmente Reembolsado", _s20_131 = "Pesquisar Documentos", _s18_178 = "Pesquisar Clientes", _s18_179 = "Pesquisar Produtos", _s18_180 = "Pesquisar Cr\xe9ditos", _s27_82 = "Pesquisar taxas de impostos", _s17_190 = "Pesquisar Tarefas", _s23_79 = "Pesquisar Configura\xe7\xf5es", _s18_181 = "Pesquisar Projetos", _s18_182 = "Pesquisar Despesas", _s20_132 = "Pesquisar Pagamentos", _s16_317 = "Pesquisar Grupos", _s17_191 = "Pesquisar Empresa", _s21_141 = "Pesquisar 1 Documento", _s18_183 = "Pesquisar 1 Design", _s19_113 = "Pesquisar 1 Cliente", _s19_114 = "Pesquisar 1 Produto", _s19_115 = "Pesquisar 1 Cota\xe7\xe3o", _s19_116 = "Pesquisar 1 Cr\xe9dito", _s19_117 = "Pesquisar 1 Usu\xe1rio", _s27_83 = "Pesquisar 1 Taxa de Imposto", _s18_184 = "Pesquisar 1 Tarefa", _s19_118 = "Pesquisar 1 Projeto", _s19_119 = "Pesquisar 1 Despesa", _s21_142 = "Pesquisar 1 Pagamento", _s17_192 = "Pesquisar 1 Grupo", _s20_133 = "Reembolsar Pagamento", _s22_119 = "Primeiro Personalizado", _s21_143 = "Segundo Personalizado", _s22_120 = "Terceiro Personalizado", _s20_134 = "Quarto Personalizado", _s35_41 = "Dados da empresa limpos com sucesso", _s19_120 = "Detalhes do cliente", _s19_121 = "Detalhes de cr\xe9dito", _s18_185 = "Colunas de Produto", _s18_186 = "Colunas de Tarefas", _s16_318 = "Todos os eventos", _s31_35 = "Pagamento realizado com sucesso", _s29_64 = "Receber todas as notifica\xe7\xf5es", _s17_193 = "Design de Cr\xe9dito", _s22_121 = "Or\xe7amentos Recorrentes", _s19_122 = "Tarefas Recorrentes", _s28_83 = "Cr\xe9dito removido com sucesso", _s22_122 = "Atualiza\xe7\xe3o dispon\xedvel", _s34_33 = "Atualiza\xe7\xe3o completada com sucesso", _s20_135 = "URL Webhook do Slack", _s17_194 = "Rodap\xe9 do Cr\xe9dito", _s17_195 = "Termos do Cr\xe9dito", _s30_54 = "Empresa adicionada com sucesso", _s25_83 = "Sobretaxa Personalizada 1", _s25_84 = "Sobretaxa Personalizada 2", _s25_85 = "Sobretaxa Personalizada 3", _s25_86 = "Sobretaxa Personalizada 4", _s16_319 = "Adicionar Coluna", _s17_196 = "Adicionar Empresa", _s22_123 = "Or\xe7amento n\xe3o Aprovado", _s17_197 = "Data de Reembolso", _s16_320 = "Sele\xe7\xe3o m\xfaltipla", _s58_3 = "Recebemos sua mensagem e tentaremos responder rapidamente.", _s27_84 = "Mostrar Detalhes do Produto", _s48_6 = "A renderiza\xe7\xe3o de PDF precisa da vers\xe3o :version", _s20_136 = "Configura\xe7\xf5es Gerais", _s16_321 = "f\xf3rum de suporte", _s17_198 = "E-mail de Cr\xe9dito", _s28_84 = "Tarefas do Portal do Cliente", _s27_85 = "Painel do Portal do Cliente", _s18_187 = "Selecionar Empresa", _s21_144 = "Menu da Barra Lateral", _s26_74 = "Barra Lateral de Hist\xf3rico", _s29_65 = "Mostrar Quantidade do Produto", _s72_1 = "Mostrar um campo de quantidade de produto, caso contr\xe1rio o padr\xe3o de um", _s28_85 = "Mostrar quantidade da fatura", _s77_2 = "Exibir um campo de quantidade de item de linha, caso contr\xe1rio, o padr\xe3o \xe9 um", _s17_199 = "Quantidade Padr\xe3o", _s60_0 = "Defina automaticamente a quantidade do item de linha para um", _s19_123 = "Uma taxa de imposto", _s22_124 = "Duas taxas de impostos", _s22_125 = "Tr\xeas taxas de impostos", _s17_200 = "Imposto da Fatura", _s24_95 = "Imposto da Linha do Item", _s17_201 = "Impostos Inclusos", _s27_86 = "Tarifa do Imposto da Fatura", _s25_87 = "Tarifa do Imposto do Item", _s18_188 = "Configurar tarifas", _s27_87 = "Lista separada por v\xedrgulas", _s20_137 = "Texto de linha \xfanica", _s16_322 = "Texto multilinha", _s16_323 = "Quantia da Multa", _s28_86 = "Depois da data de vencimento", _s17_202 = "Pagamento parcial", _s16_324 = "Fonte Secund\xe1ria", _s17_203 = "Tamanho da P\xe1gina", _s19_124 = "Design do Or\xe7amento", _s22_126 = "Condi\xe7\xf5es do Or\xe7amento", _s19_125 = "Rodap\xe9 do Or\xe7amento", _s16_325 = "Email Autom\xe1tico", _s74_ = "Enviar faturas recorrentes por email automaticamente quando forem criadas.", _s24_96 = "Arquivar Automaticamente", _s61_5 = "Arquivar automaticamente or\xe7amentos quando forem convertidos.", _s72_2 = "Converter automaticamente um or\xe7amento quando for aprovado pelo cliente.", _s34_34 = "Configura\xe7\xf5es de Fluxo de Trabalho", _s18_189 = "Reiniciar Contador", _s22_127 = "Prefixo da Recorr\xeancia", _s23_80 = "Preenchimento de n\xfamero", _s18_190 = "Campo de Sobretaxa", _s16_326 = "Campo da Empresa", _s16_327 = "Valor da Empresa", _s16_328 = "Campo de Cr\xe9dito", _s19_126 = "Sobretaxa de Fatura", _s16_329 = "Campo do Cliente", _s16_330 = "Campo do Produto", _s18_191 = "Campo de Pagamento", _s19_127 = "Campo do Fornecedor", _s16_331 = "Campo da Despesa", _s16_332 = "Campo do Projeto", _s17_204 = "Contador Num\xe9rico", _s19_128 = "Padr\xe3o de Numera\xe7\xe3o", _s17_205 = "CSS Personalizado", _s24_97 = "JavaScript Personalizado", _s23_81 = "Assinatura de Or\xe7amento", _s17_206 = "Anexar Documentos", _s17_207 = "Cart\xe3o de Cr\xe9dito", _s22_128 = "Transfer\xeancia Banc\xe1ria", _s36_42 = "Taxa de imposto exclu\xedda com sucesso", _s38_31 = "Taxa de imposto restaurada com sucesso", _s35_42 = "Atualiza\xe7\xe3o autom\xe1tica dos produtos", _s18_192 = "Converter Produtos", _s68_ = "Converter automaticamente pre\xe7os de produtos para a moeda do cliente", _s18_193 = "Descartar Mudan\xe7as", _s16_333 = "Formato de Moeda", _s19_129 = "Primeiro M\xeas do Ano", _s20_138 = "Formato de Data/Hora", _s19_130 = "Formato de Hora 24h", _s16_334 = "Enviar Lembretes", _s20_139 = "Filtrado por Projeto", _s18_194 = "Filtrado por Grupo", _s19_131 = "Filtrado por Fatura", _s20_140 = "Filtrado por Cliente", _s21_145 = "Filtrado por Vendedor", _s23_82 = "Configura\xe7\xf5es de Grupos", _s24_98 = "Grupo criado com sucesso", _s28_87 = "Grupo atualizado com sucesso", _s27_88 = "Grupo arquivado com sucesso", _s26_75 = "Grupo removido com sucesso", _s28_88 = "Grupo restaurado com sucesso", _s28_89 = "Configura\xe7\xf5es do Dispositivo", _s19_132 = "Detalhes da Empresa", _s17_208 = "Pagamentos Online", _s21_146 = "Campos Personalizados", _s21_147 = "Visualiza\xe7\xe3o de Dados", _s16_335 = "Compras Passadas", _s16_336 = "Assinatura Anual", _s17_209 = "Plano Empresarial", _s86_0 = "Por favor, aceite os termos de servi\xe7o e pol\xedtica de privacidade para criar uma conta.", _s20_141 = "Condi\xe7\xf5es do Servi\xe7o", _s23_83 = "Pol\xedtica de Privacidade", _s16_337 = "Editar Documento", _s29_66 = "Documento enviado com sucesso", _s32_27 = "Documento atualizado com sucesso", _s31_36 = "Documento arquivado com sucesso", _s29_67 = "Documento apagado com sucesso", _s32_28 = "Documento recuperado com sucesso", _s16_338 = "Marcar como Pago", _s29_68 = "Fornecedor criado com sucesso", _s33_35 = "Fornecedor atualizado com sucesso", _s32_29 = "Fornecedor arquivado com sucesso", _s42_23 = ":count fornecedores arquivados com sucesso", _s26_76 = "Despesa criada com sucesso", _s30_55 = "Despesa atualizada com sucesso", _s29_69 = "Despesa arquivada com sucesso", _s28_90 = "Despesa exclu\xedda com sucesso", _s30_56 = "Despesa restaurada com sucesso", _s31_37 = "Despesas arquivadas com sucesso", _s30_57 = "Despesas exclu\xeddas com sucesso", _s27_89 = "Tarefa iniciada com sucesso", _s29_70 = "Tarefa continuada com sucesso", _s31_38 = "Iniciar Tarefas Automaticamente", _s26_77 = "Projeto criado com sucesso", _s30_58 = "Projeto atualizado com sucesso", _s29_71 = "Projeto arquivado com sucesso", _s30_59 = "Projeto restaurado com sucesso", _s38_32 = ":count projetos arquivados com sucesso", _s56_3 = "Por favor autentique-se para modificar esta configura\xe7\xe3o", _s23_84 = "Por favor autentique-se", _s23_85 = "Autentica\xe7\xe3o Biom\xe9trica", _s20_142 = "Login Auto-Hospedado", _s21_148 = "Per\xedodo de Compara\xe7\xe3o", _s16_339 = "Per\xedodo Anterior", _s16_340 = "Editar Or\xe7amento", _s16_341 = "Editar Pagamento", _s17_210 = "Editar Fornecedor", _s27_90 = "Editar Or\xe7amento Recorrente", _s17_211 = "Endere\xe7o de envio", _s43_6 = ":value copiado para a \xe1rea de transfer\xeancia", _s24_99 = "N\xe3o foi poss\xedvel iniciar", _s16_342 = "Email \xe9 inv\xe1lido", _s30_60 = "Produto restaurado com sucesso", _s26_78 = "Cliente criado com sucesso", _s30_61 = "Cliente atualizado com sucesso", _s29_72 = "Cliente arquivado com sucesso", _s38_33 = ":count clientes arquivados com sucesso", _s39_14 = "Pagamento enviado por email com sucesso", _s19_133 = "N\xfamero do Or\xe7amento", _s17_212 = "Data do Or\xe7amento", _s16_343 = "Parcial/Dep\xf3sito", _s18_195 = "Data de Vencimento", _s26_79 = "Data de Vencimento Parcial", _s31_39 = "Clique + para adicionar um item", _s29_73 = "Clique + para adicionar tempo", _s19_134 = ":count selecionados", _s30_62 = "Por favor selecione um cliente", _s39_15 = "Por favor digite um n\xfamero de or\xe7amento", _s19_135 = "Marcar como Enviada", _s17_213 = "Data do Pagamento", _s17_214 = "Portal do Cliente", _s17_215 = "Primeiro Lembrete", _s16_344 = "Segundo Lembrete", _s17_216 = "Terceiro Lembrete", _s19_136 = "Cobran\xe7a autom\xe1tica", _s23_86 = "Refer\xeancia da Transa\xe7\xe3o", _s28_91 = "Pagamento criado com sucesso", _s32_30 = "Pagamento atualizado com sucesso", _s31_40 = "Pagamento arquivado com sucesso", _s40_11 = ":count pagamentos arquivados com sucesso", _s28_92 = "Or\xe7amento criado com sucesso", _s40_12 = ":count or\xe7amentos arquivados com sucesso", _s29_74 = ":user criou o cliente :client", _s32_31 = ":user arquivou o cliente :client", _s36_43 = ":user atualizou o pagamento :payment", _s35_43 = ":user arquivou o pagamento :payment", _s38_34 = ":contact visualizou o or\xe7amento :quote", _s33_36 = ":user arquivou o or\xe7amento :quote", _s34_35 = ":user restaurou o or\xe7amento :quote", _s33_37 = ":user restaurou o cliente :client", _s36_44 = ":user restaurou o pagamento :payment", _s32_32 = ":user criou o fornecedor :vendor", _s35_44 = ":user arquivou o fornecedor :vendor", _s36_45 = ":user restaurou o fornecedor :vendor", _s30_63 = ":user criou a despesa :expense", _s33_38 = ":user arquivou a despesa :expense", _s34_36 = ":user restaurou a despesa :expense", _s58_4 = ":user cancelou um pagamento de :payment_amount em :payment", _s72_3 = ":user reembolsou :adjustment de um pagamento :payment_amount em :payment", _s26_80 = ":user criou a tarefa :task", _s30_64 = ":user atualizou a tarefa :task", _s29_75 = ":user arquivou a tarefa :task", _s30_65 = ":user restaurou a tarefa :task", _s34_37 = ":user atualizou a despesa :expense", _s30_66 = ":user reabriu o ticket :ticket", _s33_39 = ":user visualizou o ticket :ticket", _s27_91 = "Cr\xe9dito enviado com sucesso", _s42_24 = "Or\xe7amento marcado como enviado com sucesso", _s40_13 = "Cr\xe9dito marcado com sucesso como enviado", _s33_40 = "Sele\xe7\xe3o m\xfaltipla de longa press\xe3o", _s19_137 = "Valor Personalizado", _s21_149 = "Valor Personalizado 3", _s21_150 = "Valor Personalizado 4", _s30_67 = "Estilo de E-mail Personalizado", _s32_33 = "Mensagem de Painel Personalizada", _s48_7 = "Mensagem Personalizada de Or\xe7amento N\xe3o Aprovado", _s29_76 = "Padr\xe3o de Numera\xe7\xe3o de Tarefa", _s28_93 = "Contador Num\xe9rico de Tarefas", _s30_68 = "Padr\xe3o de Numera\xe7\xe3o de Despesa", _s29_77 = "Contador Num\xe9rico de Despesas", _s29_78 = "Padr\xe3o de Numera\xe7\xe3o de Ticket", _s28_94 = "Contador Num\xe9rico de Tickets", _s32_34 = "Padr\xe3o de Numera\xe7\xe3o de Pagamento", _s31_41 = "Contador Num\xe9rico de Pagamentos", _s29_79 = "Padr\xe3o de Numera\xe7\xe3o de Fatura", _s32_35 = "Padr\xe3o de Numera\xe7\xe3o de Or\xe7amento", _s30_69 = "Padr\xe3o de Numera\xe7\xe3o de Cr\xe9dito", _s29_80 = "Contador Num\xe9rico de Cr\xe9ditos", _s26_81 = "Reiniciar Data do Contador", _s18_196 = "Padr\xe3o do Contador", _s43_7 = "Contador de cota\xe7\xe3o de fatura compartilhada", _s20_143 = "Nome fiscal padr\xe3o 1", _s24_100 = "Taxa de imposto padr\xe3o 1", _s20_144 = "Nome fiscal padr\xe3o 2", _s24_101 = "Taxa de imposto padr\xe3o 2", _s20_145 = "Nome fiscal padr\xe3o 3", _s24_102 = "Taxa de imposto padr\xe3o 3", _s27_92 = "Assunto do E-mail de Fatura", _s30_70 = "Assunto do E-mail de Or\xe7amento", _s30_71 = "Assunto do E-mail de Pagamento", _s38_35 = "Assunto de pagamento parcial por email", _s17_217 = "Cidade do Cliente", _s19_138 = "Endere\xe7o do cliente", _s19_139 = "Endere\xe7o de entrega", _s17_218 = "Taxa de imposto 1", _s17_219 = "Taxa de imposto 2", _s17_220 = "Taxa de imposto 3", _s19_140 = "Cobran\xe7a Autom\xe1tica", _s25_88 = "Impostos personalizados 1", _s25_89 = "Impostos personalizados 2", _s25_90 = "Impostos personalizados 3", _s25_91 = "Impostos personalizados 4", _s19_141 = "Quantia de Impostos", _s27_93 = "Projeto apagado com sucesso", _s25_92 = "Parcialmente N\xe3o Aplicado", _s26_82 = "Nota de Pagamento Atrasada", _s18_197 = "Or\xe7amento Expirado", _s21_151 = "Total da Nota de Pag.", _s18_198 = "Configurar Estados", _s21_152 = "Mostrar Barra Lateral", _s17_221 = "Or\xe7amento enviado", _s23_87 = "Empresa Personalizada 1", _s23_88 = "Empresa Personalizada 2", _s23_89 = "Empresa Personalizada 3", _s23_90 = "Empresa Personalizada 4", _s23_91 = "Cliente Personalizado 1", _s23_92 = "Cliente Personalizado 2", _s23_93 = "Cliente Personalizado 3", _s23_94 = "Cliente Personalizado 4", _s24_103 = "Contacto Personalizado 1", _s24_104 = "Contacto Personalizado 2", _s24_105 = "Contacto Personalizado 3", _s24_106 = "Contacto Personalizado 4", _s21_153 = "Grupo Personalizado 1", _s21_154 = "Grupo Personalizado 2", _s21_155 = "Grupo Personalizado 3", _s21_156 = "Grupo Personalizado 4", _s16_345 = "Rua de Fatura\xe7\xe3o", _s20_146 = "Percentagem da Multa", _s17_222 = "Importar/Exportar", _s16_346 = "Dep\xf3sito/Parcial", _s61_6 = "Excelente! As notas de pagamento foram marcadas como enviada.", _s19_142 = "Valor personalizado", _s25_93 = "Andar / Fra\xe7\xe3o do Cliente", _s65_2 = "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u044d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442 \u043a \u0431\u0435\u0437\u0432\u043e\u0437\u0432\u0440\u0430\u0442\u043d\u043e\u043c\u0443 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044e \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430.", _s23_95 = "\u0417\u0430\u0442\u0440\u0430\u0442\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u044b", _s16_347 = "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u043e\u043f\u043b\u0430\u0442\u0430", _s24_107 = "Projekat uspe\u0161no obrisan", _s22_129 = "Delimi\u010dno neprimenjeno", _s29_81 = "Ra\u010dun uspe\u0161no poslat e-po\u0161tom", _s36_46 = "Predra\u010dun je uspe\u0161no poslat e-po\u0161tom", _s21_157 = "Delimi\u010dno refundirano", _s16_348 = "Prvo prilago\u0111eno", _s17_223 = "Drugo prilago\u0111eno", _s17_224 = "Tre\u0107e prilago\u0111eno", _s21_158 = "Prilago\u0111ena doplata 1", _s21_159 = "Prilago\u0111ena doplata 2", _s21_160 = "Prilago\u0111ena doplata 3", _s21_161 = "Prilago\u0111ena doplata 4", _s25_94 = "Molimo izaberite klijenta", _s19_143 = "Delimi\u010dno plac\u0301anje", _s38_36 = "Ra\u010duni su uspe\u0161no ozna\u010deni kao poslati", _s35_45 = ":contact pregledao predra\u010dun :quote", _s20_147 = "Prilago\u0111ena Vrednost", _s21_162 = "Obrazac broja kredita", _s20_148 = "Broja\u010d broja kredita", _s17_225 = "Pravideln\xe9 v\xfddaje", _s32_36 = "Predplatn\xe9 \xfaspe\u0161ne aktualizovan\xe9", _s34_38 = "Predplatn\xe9 bolo \xfaspe\u0161ne odstr\xe1nen\xe9", _s19_144 = "\u010ciasto\u010dne nepou\u017eit\xe9", _s18_199 = "Oneskoren\xe1 fakt\xfara", _s33_41 = "Stav \xfalohy bol \xfaspe\u0161ne odstr\xe1nen\xfd", _s16_349 = "D\xe1tum splatnosti", _s24_108 = "Fakt\xfara \xfaspe\u0161ne odoslan\xe1", _s23_96 = "Ponuka \xfaspe\u0161ne odoslan\xe1", _s39_16 = "Webhooky :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", _s38_37 = "Platobn\xfd term\xedn bol \xfaspe\u0161ne odstr\xe1nen\xfd", _s17_226 = "\u010ciasto\u010dne vr\xe1ten\xe9", _s26_83 = "\xdaspe\u0161ne stornovan\xe1 fakt\xfara", _s26_84 = "Fakt\xfara \xfaspe\u0161ne odstr\xe1nen\xe1", _s29_82 = "Vzh\u013ead bol \xfaspe\u0161ne odstr\xe1nen\xfd", _s19_145 = "Vlastn\xfd pr\xedplatok 1", _s19_146 = "Vlastn\xfd pr\xedplatok 2", _s19_147 = "Vlastn\xfd pr\xedplatok 3", _s19_148 = "Vlastn\xfd pr\xedplatok 4", _s16_350 = "Faktura\u010dn\xfd email", _s16_351 = "\u010ciasto\u010dn\xe1 platba", _s43_8 = "Pou\u017e\xedvatelia :value boli \xfaspe\u0161ne odstr\xe1nen\xed", _s26_85 = "V\xfddaje \xfaspe\u0161ne archivovan\xe9", _s22_130 = "V\xfddaje \xfaspe\u0161ne zmazan\xe9", _s22_131 = "\xdaloha \xfaspe\u0161ne obnoven\xe1", _s45_8 = "Po\u010det \xfaspe\u0161ne archivovan\xfdch projektov: :count", _s42_25 = "Fakt\xfara bola \xfaspe\u0161ne ozna\u010den\xe1 ako odoslan\xe1", _s42_26 = "Fakt\xfary boli \xfaspe\u0161ne ozna\u010den\xe9 ako odoslan\xe9", _s16_352 = "Tretia Upomienka", _s21_163 = "Automatick\xe9 \xfa\u010dtovanie", _s18_200 = "Vzor \u010d\xedsla kreditu", _s26_86 = "Po\u010d\xedtadlo kreditn\xfdch \u010d\xedsel", _s21_164 = "Ponavaljajo\u010di stro\u0161ki", _s20_149 = "Ra\u010dun uspe\u0161no poslan", _s16_353 = "Vrednost po meri", _s20_150 = "Ver gasto # :expense", _s28_95 = "Proyecto eliminado con \xe9xito", _s32_37 = "Suscripci\xf3n creada correctamente", _s37_38 = "Suscripci\xf3n actualizada correctamente", _s19_149 = "Reenviar Invitaci\xf3n", _s19_150 = "Convertir a Factura", _s18_201 = "Eventos Soportados", _s23_97 = "Seleccionar archivo CSV", _s18_202 = "Nombre del Cliente", _s18_203 = "Debe ser Facturado", _s18_204 = "Marcar como Activo", _s18_205 = "Factura Recurrente", _s20_151 = "Facturas Recurrentes", _s24_109 = "Nueva Factura Recurrente", _s17_227 = "Pr\xf3ximas Facturas", _s16_354 = "Eliminar Factura", _s16_355 = "Eliminar Cliente", _s20_152 = "Actualizar Proveedor", _s16_356 = "Borrar Proveedor", _s19_151 = "Registro de Cliente", _s26_87 = "Editar el T\xe9rminos de Pago", _s19_152 = "Cantidad de Cr\xe9dito", _s18_206 = "Buscar 1 Proveedor", _s17_228 = "Todos los Eventos", _s16_357 = "Comprar Licencia", _s22_132 = "Dise\xf1os Personalizados", _s18_207 = "Tareas Recurrentes", _s16_358 = "Fecha de Cr\xe9dito", _s24_110 = "Actualizaci\xf3n Disponible", _s16_359 = "Saldo de Cr\xe9dito", _s16_360 = "Creado por :name", _s20_153 = "Ganancias y P\xe9rdidas", _s26_88 = "Configuraci\xf3n de Impuestos", _s21_165 = "Configuraci\xf3n General", _s19_153 = "Opciones de Factura", _s17_229 = "Todas las p\xe1ginas", _s16_361 = "Color Secundario", _s17_230 = "Campos de Factura", _s18_208 = "Campos de Producto", _s23_98 = "T\xe9rminos de Facturaci\xf3n", _s17_231 = "N\xfameros Generados", _s16_362 = "Cargar Impuestos", _s18_209 = "Prefijo Recurrente", _s16_363 = "Campo de Empresa", _s32_38 = "Proteger Facturas con Contrase\xf1a", _s18_210 = "Un cordial saludo,", _s118_ = 'Haga que sea f\xe1cil para sus clientes que paguen mediante la adici\xf3n de marcas "schema.org" a sus correos electr\xf3nicos.', _s16_364 = "Dise\xf1o de Correo", _s16_365 = "Habilitar Markup", _s20_154 = "Actualizar Direcci\xf3n", _s74_0 = "Seleccionar un producto autom\xe1ticamente configurar\xe1 la descripci\xf3n y coste", _s20_155 = "Configuraci\xf3n B\xe1sica", _s22_133 = "Configuraci\xf3n Avanzada", _s22_134 = "Detalles de la Empresa", _s19_154 = "Detalles de Usuario", _s36_47 = "Configuraci\xf3n del Correo Electr\xf3nico", _s26_89 = "Plantillas & Recordatorios", _s22_135 = "Visualizaci\xf3n de Datos", _s31_42 = "Agregar documentos a la factura", _s16_366 = "Convertir moneda", _s41_16 = ":count proveedores actualizados con \xe9xito", _s26_90 = "Gasto creado correctamente", _s31_43 = "Gasto actualizado correctamente", _s29_83 = "Gasto archivado correctamente", _s27_94 = "Gasto borrado correctamente", _s31_44 = "Gastos archivados correctamente", _s29_84 = "Gastos borrados correctamente", _s20_156 = "Horas Presupuestadas", _s22_136 = "Periodo de Comparaci\xf3n", _s16_367 = "Editar Proveedor", _s16_368 = "Ingresos Totales", _s23_99 = "Promedio de Facturaci\xf3n", _s18_211 = "Pendiente de Cobro", _s24_111 = ":count facturas enviadas", _s16_369 = "Clientes Activos", _s30_72 = "Producto actualizado con \xe9xito", _s17_232 = "N\xfamero de Factura", _s16_370 = "Fecha de Factura", _s17_233 = "Fecha de Creaci\xf3n", _s16_371 = "T\xe9rminos de Pago", _s19_155 = "Primer Recordatorio", _s20_157 = "Segundo Recordatorio", _s19_156 = "Tercer Recordatorio", _s25_95 = "Referencia de Transacci\xf3n", _s29_85 = ":user cre\xf3 el cliente :client", _s32_39 = ":user archiv\xf3 el cliente :client", _s35_46 = ":user actualiz\xf3 la factura :invoice", _s33_42 = ":user archiv\xf3 la factura :invoice", _s30_73 = ":user archiv\xf3 el pago :payment", _s33_43 = ":user restaur\xf3 el cliente :client", _s31_45 = ":user restaur\xf3 el pago :payment", _s30_74 = ":user cre\xf3 al vendedor :vendor", _s33_44 = ":user archiv\xf3 al vendedor :vendor", _s33_45 = ":user elimin\xf3 al vendedor :vendor", _s34_39 = ":user restaur\xf3 al vendedor :vendor", _s31_46 = ":user archiv\xf3 el gasto :expense", _s31_47 = ":user elimin\xf3 el gasto :expense", _s32_40 = ":user restaur\xf3 el gasto :expense", _s25_96 = ":user cre\xf3 la tarea :task", _s30_75 = ":user actualiz\xf3 la tarea :task", _s28_96 = ":user archiv\xf3 la tarea :task", _s28_97 = ":user elimin\xf3 la tarea :task", _s29_86 = ":user restaur\xf3 la tarea :task", _s36_48 = ":contact respondi\xf3 el ticket :ticket", _s18_212 = "Importe de Factura", _s20_158 = "Fecha de Vencimiento", _s20_159 = "Ciudad del Proveedor", _s18_213 = "Pa\xeds del Proveedor", _s18_214 = "Nombre de Impuesto", _s19_157 = "Nombre del Contacto", _s20_160 = "Presupuesto Expirado", _s29_87 = "Token eliminado correctamente", _s23_100 = "Tercera Personalizaci\xf3n", _s23_101 = "Recargo Personalizado 1", _s23_102 = "Recargo Personalizado 2", _s23_103 = "Recargo Personalizado 3", _s23_104 = "Recargo Personalizado 4", _s45_9 = ":count proveedores actualizados correctamente", _s42_27 = "Factura marcada como enviada correctamente", _s45_10 = "Facturas marcadas como enviadas correctamente", _s33_46 = ":user borr\xf3 el presupuesto :quote", _s34_40 = ":contact vi\xf3 el presupuesto :quote", _s28_98 = "Patr\xf3n del N\xfamero de Cr\xe9dito", _s30_76 = "Contador del N\xfamero de Cr\xe9dito", _s17_234 = "F\xf6rfallen faktura", _s16_372 = "F\xf6rfallen offert", _s32_41 = "Krediten har skickats via e-post", _s17_235 = "Betalningsvillkor", _s18_215 = "Delvis \xe5terbetalad", _s24_112 = ":count fakturor skickade", _s25_97 = "Anpassad till\xe4ggsavgift 1", _s25_98 = "Anpassad till\xe4ggsavgift 2", _s25_99 = "Anpassad till\xe4ggsavgift 3", _s25_100 = "Anpassad till\xe4ggsavgift 4", _s17_236 = "F\xf6reg\xe5ende period", _s16_373 = "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s20_161 = ":count \u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s28_99 = "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s26_91 = "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s18_216 = "\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s24_113 = ":count fatura g\xf6nderildi", t1 = type$.legacy_String; return A.LinkedHashMap_LinkedHashMap$_literal(["en", A.LinkedHashMap_LinkedHashMap$_literal(["verified_phone_number", "Successfully verified phone number", "code_was_sent", "A code has been sent via SMS", "resend", "Resend", "verify", "Verify", "enter_phone_number", "Please provide a phone number", "invalid_phone_number", "Invalid phone number", "verify_phone_number", "Verify Phone Number", "verify_phone_number_help", "Please verify your phone number to send emails", "merged_clients", "Successfully merged clients", "merge_into", "Merge Into", "merge", "Merge", "php81_required", "Note: v5.5 requires PHP 8.1", _s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", "Yes, it's great!", "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, "Match non-contiguous characters, ie. 'ct' matches 'cat'", "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, "bulk_email_purchase_orders", "Email Purchase Orders", _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Add To Invoice", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, "Improve scrolling over the PDF preview", _s16_8, _s16_9, "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create Project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel Invoice", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, "Use visual WYSIWYG markdown editor for emails", _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", "Successfully approved quote", "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "Giropay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Set Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", "ACSS", "becs", "BECS", "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "View Expense", "view_statement", "View Statement", "sepa", "SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, "Gross Line Total", "bulk_email_invoices", "Email Invoices", "bulk_email_quotes", "Email Quotes", "bulk_email_credits", "Email Credits", "from_name", "From Name", _s16_21, "Clone to Expense", _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, "Successfully deleted recurring expense", _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net Subtotal", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, "The Pro plan trial ends in :count days", _s21_18, "Today is the last day of the Pro plan trial", "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", "Once the file is ready you'll receive an email with a download link", _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Enable", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Lowercase letters, numbers and hyphens are supported", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo Code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Resend Invite", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Enable Two Factor", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "Successfully refunded payment", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, _s18_34, _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_15, _s29_6, "select_file", "Select File", _s16_60, _s16_61, "csv_file", "CSV File", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, "Please type ':value' to confirm", "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, "Company is not activated", "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, "Successfully updated task status", _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, "Successfully deleted expense category", _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, "Successfully archived expense :value categories", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, "The payment amount can not be negative", "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", "Track the expense has been paid to the vendor", _s18_42, "Should be Invoiced", _s23_16, "Enable the expense to be invoiced to your client", _s29_7, "Make the documents visible to clients", _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", "Apple Pay", "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, _s18_46, _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, "Support paying a minimum amount", "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Token Billing", _s24_34, _s24_35, "always", "Enabled", "optin", "Disabled by default", "optout", "Enabled by default", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "Successfully queued invoices to be sent", "emailed_quotes", "Successfully queued quotes to be sent", "emailed_credits", "Successfully queued credits to be sent", "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "Taxes", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, _s17_58, _s17_59, _s17_60, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create Vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Delete Invoice", "update_client", "Update Client", "delete_client", "Delete Client", "delete_payment", "Delete Payment", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target URL", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Email Invoice", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use Default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "Login with email", "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, "Search :count Documents", "search_designs", "Search :count Designs", "search_invoices", "Search :count Invoices", "search_clients", "Search :count Clients", "search_products", "Search :count Products", "search_quotes", "Search :count Quotes", "search_credits", "Search :count Credits", "search_vendors", "Search :count Vendors", "search_users", "Search :count Users", _s16_84, "Search :count Tax Rates", "search_tasks", "Search :count Tasks", "search_settings", "Search Settings", "search_projects", "Search :count Projects", "search_expenses", "Search :count Expenses", "search_payments", "Search :count Payments", "search_groups", "Search :count Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "Custom 1", "custom2", "Custom 2", "custom3", "Custom 3", "custom4", "Custom 4", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", "Invoice Sent", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_44, "Warning: This will permanently delete your account [:company], there is no undo", "delete_company", "Delete Company", _s22_45, "Warning: This will permanently delete your company [:company], there is no undo", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "New Credit", "edit_credit", "Edit Credit", "created_credit", _s27_31, "updated_credit", _s27_32, "archived_credit", _s28_18, "deleted_credit", _s27_33, "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, "Successfully archived :value credits", "deleted_credits", "Successfully deleted :value credits", _s16_99, _s36_9, "current_version", "Current Version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Learn More", "integrations", "Integrations", "tracking_id", "Tracking ID", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group By", "credit_balance", "Credit Balance", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client ID", "assigned_to", "Assigned To", "created_by", "Created By", "assigned_to_id", "Assigned To ID", "created_by_id", "Created By ID", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by :value", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "Entity State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Message", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, "Ensure client fee matches the gateway fee", _s18_66, _s18_67, "support_forum", "Support Forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Line Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "iFrame URL", "domain_url", "Domain URL", _s21_58, "Password must be at least 8 character long", _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "No client selected", "configure_rates", "Configure Rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "Recover Password", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_36, "updated_user", _s25_37, "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Invoice Options", _s17_86, _s17_87, _s22_52, _s87_, _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "Invoice Terms", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two Weeks", "freq_four_weeks", "Four Weeks", "freq_monthly", "Monthly", "freq_two_months", "Two Months", _s17_90, "Three Months", _s16_153, "Four Months", "freq_six_months", "Six Months", "freq_annually", "Annually", "freq_two_years", "Two Years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge Taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, "If enabled the contact will be able to set a password when viewing their first invoice.", "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Email Signature", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable Min", "enable_max", "Enable Max", "min_limit", "Min Limit", "max_limit", "Max Limit", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "Rate", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit Tax Rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, "Successfully archived tax rate", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Fill Products", _s18_80, _s71_, "update_products", "Update Products", _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, "Automatically convert product prices using current exchange rate", "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Military Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, _s16_170, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_103, _s17_104, "company_details", "Company Details", "user_details", "User Details", "localization", "Localization", "online_payments", "Online Payments", "tax_rates", "Tax Rates", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s19_52, "price", "Price", "email_sign_up", "Sign up with email", "google_sign_up", "Sign up with Google", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, _s16_172, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Download", _s27_41, "Requires an Enterprise plan", "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_45, "exchange_rate", "Exchange Rate", _s16_178, "Convert Currency", "mark_paid", "Mark Paid", "category", "Category", "address", "Address", "new_vendor", "New Vendor", "created_vendor", _s27_42, "updated_vendor", _s27_43, "archived_vendor", _s28_26, "deleted_vendor", _s27_44, "restored_vendor", _s28_27, _s16_179, "Successfully archived :value vendors", "deleted_vendors", "Successfully deleted :value vendors", _s16_180, _s36_11, "new_expense", "New Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, "Successfully archived :value expenses", _s16_183, "Successfully deleted :value expenses", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_50, "updated_task", _s25_51, "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", "Successfully archived :value tasks", "deleted_tasks", "Successfully deleted :value tasks", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, "Successfully archived :value projects", _s16_188, "Successfully deleted :value projects", _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "click here", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Login with Google", "today", "Today", "custom_range", "Custom", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Client", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Billing Address", _s16_191, _s16_192, "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", "Invoices Sent", "active_clients", "Active Clients", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Secret", "name", "Name", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_115, _s17_116, "paid_to_date", "Paid to Date", "balance_due", "Balance Due", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "Phone", "website", "Website", "vat_number", "VAT Number", "id_number", "ID Number", "create", "Create", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Contacts", "additional", "Additional", "first_name", "First Name", "last_name", "Last Name", "add_contact", "Add Contact", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_35, "updated_product", _s28_36, _s16_199, _s29_24, "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, "Successfully archived :value products", _s16_201, "Successfully deleted :value products", _s17_118, _s37_16, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "Client", "clients", "Clients", "new_client", "New Client", "created_client", _s27_46, "updated_client", _s27_47, "archived_client", _s28_38, _s16_202, "Successfully archived :value clients", "deleted_client", _s27_48, "deleted_clients", "Successfully deleted :value clients", "restored_client", _s28_39, _s16_203, _s36_13, "address1", "Street", "address2", "Apt/Suite", "city", "City", "state", "State/Province", "postal_code", "Postal Code", "country", "Country", "invoice", "Invoice", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_40, "updated_invoice", _s28_41, _s16_204, _s29_26, "deleted_invoice", _s28_42, _s16_205, _s29_27, _s17_119, "Successfully archived :value invoices", _s16_206, "Successfully deleted :value invoices", _s17_120, _s37_17, "emailed_invoice", "Successfully queued invoice to be sent", "emailed_payment", "Successfully queued payment to be sent", "amount", "Amount", "invoice_number", "Invoice Number", "invoice_date", "Invoice Date", "discount", "Discount", "po_number", "PO Number", "terms", "Terms", "public_notes", "Public Notes", "private_notes", "Private Notes", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Description", "unit_cost", "Unit Cost", "quantity", "Quantity", "add_item", "Add Item", "contact", "Contact", "work_phone", "Phone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Due Date", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, "Click \u25b6 to add time", "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Settings", "language", "Language", "currency", "Currency", "created_at", "Created At", "created_on", "Created On", "updated_at", "Updated At", "tax", "Tax", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial", "paid", "Paid", "mark_sent", "Mark Sent", _s22_61, _s35_18, _s22_62, "Successfully marked invoice as paid", _s23_40, _s36_14, _s23_41, "Successfully marked invoices as paid", "done", "Done", _s37_18, _s37_19, "dark_mode", "Dark Mode", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_209, _s16_210, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Payment Terms", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Cancelled", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "Reminder 1", "reminder2", "Reminder 2", "reminder3", "Reminder 3", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, _s21_80, "enter_payment", "Enter Payment", "new_payment", "Enter Payment", "created_payment", _s28_43, "updated_payment", _s28_44, _s16_217, _s29_28, "deleted_payment", _s28_45, _s16_218, _s29_29, _s17_124, "Successfully archived :value payments", _s16_219, "Successfully deleted :value payments", _s17_125, _s37_20, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", "Successfully archived :value quotes", "deleted_quotes", "Successfully deleted :value quotes", "restored_quotes", _s35_21, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_46, "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", _s30_19, "activity_5", _s30_20, "activity_6", ":user emailed invoice :invoice to :client", "activity_7", ":contact viewed invoice :invoice", "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", ":contact entered payment :payment for invoice :invoice", "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", ":user emailed quote :quote to :client", "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", ":contact approved quote :quote", "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", ":user cancelled payment :payment", "activity_40", ":user refunded payment :payment", "activity_41", "Payment :payment failed", "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", ":user created user", "activity_49", ":user updated user", "activity_50", ":user archived user", "activity_51", ":user deleted user", "activity_52", ":user restored user", "activity_53", ":user marked invoice :invoice as sent", "activity_54", ":user applied payment :payment to invoice :invoice", "activity_55", "", "activity_56", "", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", ":user emailed first reminder for invoice :invoice to :client", "activity_64", ":user emailed second reminder for invoice :invoice to :client", "activity_65", ":user emailed third reminder for invoice :invoice to :client", "activity_66", ":user emailed endless reminder for invoice :invoice to :client", "activity_80", ":user created subscription", "activity_81", ":user updated subscription", "activity_82", ":user archived subscription", "activity_83", ":user deleted subscription", "activity_84", ":user restored subscription", _s17_126, _s17_127, "emailed_quote", "Successfully queued quote to be sent", "emailed_credit", "Successfully queued credit to be sent", _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Select", _s22_63, _s22_64, "custom_value1", "Custom Value 1", "custom_value2", "Custom Value 2", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, "Shared Invoice/Quote Counter", _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Invoice Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid Amount", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank Id", _s19_66, _s19_67, _s16_225, "Category", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "sq", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Rregullimi i pages\xebs", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Gjendja", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Shto kanalin e pages\xebs", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Shto n\xeb fatur\xebn :invoice", _s17_6, _s17_7, "week", "Jave", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Valuta e Fatur\xebs", "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprovo", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Vendos Fjal\xebkalim", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Shiko # :expense t\xeb shpenzimit", "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistem", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importo t\xeb dh\xebna", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "E pacaktuar", "partial_value", "Duhet t\xeb jet\xeb m\xeb shum\xeb se zero dhe m\xeb pak se totali", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktivizo", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Siguria", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "Pages\xeb e rimbursuar", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "Ktheje Ofert\xebn n\xeb Fatur\xeb", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Faturo detyr\xebn", "invoice_expense", "Fatur\xeb shpenzimesh", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Fshih", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolona", "sample", "Shembull", "map_to", "Map To", "import", "Importo", _s25_15, _s29_6, "select_file", "Ju lutem zgjedhni nj\xeb fajll", _s16_60, _s16_61, "csv_file", "Skedar CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Paguar pjes\xebrisht", "invoice_total", "Totali i fatur\xebs", "quote_total", "Totali i Ofert\xebs", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Paralajmerim", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Emri i klientit", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Kategorit\xeb e shpenzimeve", _s20_42, "Kategori e re e shpenzimeve", _s21_40, _s21_41, _s24_28, "Kategoria e shpenzimeve \xebsht\xeb krijuar me sukses", _s24_29, "\xcbsht\xeb perditesuar me sukses kategoria e shpenzimeve", _s25_19, "Kategoria e shpenzimeve \xebsht\xeb arkivuar me sukses", _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, "Kategoria e shpenzimeve \xebsht\xeb rikthyer me sukses", _s27_21, ":count kategori t\xeb shpenzimeve jan\xeb arkivuar me sukses", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "Duhet t\xeb faturohet", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Fatur\xeb e p\xebrs\xebritshme", _s18_45, "Fatura t\xeb p\xebrs\xebritshme", _s21_47, "Fatur\xeb e re e p\xebrs\xebritshme", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Faturat e p\xebrs\xebritshme jan\xeb arkivuar me sukses", _s25_28, "Faturat e p\xebrs\xebritshme jan\xeb fshir\xeb me sukses", _s25_29, _s38_11, _s26_12, "Faturat e p\xebrs\xebritshme jan\xeb rikthyer me sukses", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "Shiko portalin", "copy_link", "Copy Link", "token_billing", "Ruaj detajet e pages\xebs", _s24_34, _s24_35, "always", "Gjithmon\xeb", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Emri i kompanis\xeb", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ore", "statement", "Statement", "taxes", "Taksat", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apliko kreditin", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "P\xebr", "health_check", "Health Check", "payment_type_id", "Lloji i pages\xebs", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Faturat e ardhshme", _s17_59, _s17_60, "recent_payments", "Pagesat e fundit", "upcoming_quotes", "Ofertat e ardhshme", "expired_quotes", "Ofertat e skaduara", "create_client", "Create Client", "create_invoice", "Krijo fatur\xeb", "create_quote", "Krijo Ofert\xeb", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Fshi Ofert\xebn", "update_invoice", "Update Invoice", "delete_invoice", "Fshi fatur\xebn", "update_client", "Update Client", "delete_client", "Fshi Klientin", "delete_payment", "Fshi Pages\xebn", "update_vendor", "Update Vendor", "delete_vendor", "Fshi kompanin\xeb", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Fshi shpenzimin", "create_task", "Krijo Detyr\xeb", "update_task", "Update Task", "delete_task", "Fshi Detyr\xebn", "approve_quote", "Approve Quote", "off", "Ndalur", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Falas", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Token\xebt", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token\xebt", "new_token", "New Token", "edit_token", "Edito Tokenin", "created_token", _s29_43, "updated_token", "Tokeni \xebsht\xeb perditesuar me sukses", "archived_token", "Tokeni \xebsht\xeb arkivuar me sukses", "deleted_token", _s29_43, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "D\xebrgo fatur\xebn me email", "email_quote", "D\xebrgo me email Ofert\xebn", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Emri i Kontaktit", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "Edito kushtet e pages\xebs", _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Shuma e kredituar", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Rimburso pages\xebn", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, "Qytet/Shtet/Poste", _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Lejet", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Fshi llogarin\xeb", _s22_44, "V\xebrrejtje: Kjo do t\xeb fshij\xeb t\xeb gjitha t\xeb dh\xebnat tuaja, ky veprim nuk ka mund\xebsi t\xeb kthehet mbrapa.", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, "Menaxhimi i llogarive", "credit_date", "Data e kreditit", "credit", "Kredi", "credits", "Kredi", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", "Krediti \xebsht\xeb krijuar me sukses", "updated_credit", _s27_32, "archived_credit", "Krediti \xebsht\xeb arkivuar me sukses", "deleted_credit", "Krediti \xebsht\xeb fshir\xeb me sukses", "removed_credit", _s27_34, "restored_credit", "Krediti \xebsht\xeb rikhyer me sukses", _s16_98, ":count kredite jan\xeb arkivuar me sukses", "deleted_credits", ":kredi jan\xeb fshir\xeb me sukses", _s16_99, _s36_9, "current_version", "Versioni aktual", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "M\xebso m\xeb shum\xeb", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Kompani e re", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reseto", "number", "Number", "export", "Export", "chart", "Grafik", "count", "Count", "totals", "Totale", "blank", "Bosh", "day", "Dite", "month", "Muaj", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupo sipas", "credit_balance", "Bilanci i kreditit", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "ID e klientit", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Raporte", "report", "Raport", "add_company", "Shto Kompani", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Ndihm\xeb", "refund", "Rimburso", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Mesazhi", "from", "Nga", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Dokumentim", "contact_us", "Contact Us", "subtotal", "N\xebntotali", "line_total", "Totali i linj\xebs", "item", "Nj\xebsi", "credit_email", "Credit Email", "iframe_url", "Webfaqja", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Po", "no", "Jo", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Shiko", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "P\xebrdorues", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Ju lutem zgjedhni nj\xeb klient", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Rregullimet e Taksave", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Kalo", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "Riktheni fjal\xebkalimin tuaj", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Orari", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Emaili i Fatur\xebs", "payment_email", "Emaili i Pages\xebs", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Emaili i Ofert\xebs", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, "Lejon p\xebrdoruesit t\xeb menaxhoj p\xebrdoruesit, t\xeb ndryshoj\xeb rregullimet dhe t\xeb modifikoj\xeb t\xeb gjitha sh\xebnimet.", "user_management", "Menaxhimi i p\xebrdoruesve", "users", "P\xebrdorues", "new_user", "P\xebrdorues i ri", "edit_user", "Edito p\xebrdoruesin", "created_user", _s25_36, "updated_user", "P\xebrdoruesi \xebsht\xeb perditesuar me sukses", "archived_user", "P\xebrdoruesi \xebsht\xeb arkivuar me sukses", "deleted_user", "P\xebrdoruesi \xebsht\xeb fshir\xeb me sukses", "removed_user", _s25_39, "restored_user", "P\xebrdoruesi \xebsht\xeb rikthyer me sukses", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Rregullimet Gjenerale", "invoice_options", "Opsionet e fatur\xebs", _s17_86, "Fshihe Paguar deri m\xeb tash", _s22_52, 'Shfaqni "Paguar deri m\xeb tash" n\xeb faturat tuaja pasi t\xeb jet\xeb pranuar pagesa.', _s23_26, "Dokumentet e lidhura", _s28_20, "Vendos fotografin\xeb n\xeb fatur\xeb.", _s16_151, "Shfaqe Header", _s16_152, "Shfaqe Footer", "first_page", "Faqja e par\xeb", "all_pages", "T\xeb gjitha faqet", "last_page", "Faqja e fundit", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Ngjyra kryesore", "secondary_color", "Ngjyra dyt\xebsore", "page_size", "Madh\xebsia e faqes", "font_size", "Madh\xebsia e fontit", "quote_design", "Quote Design", "invoice_fields", "Fushat e fatur\xebs", "product_fields", "Product Fields", "invoice_terms", "Kushtet e fatur\xebs", "invoice_footer", "Footer i Fatur\xebs", "quote_terms", "Kushtet e Ofertave", "quote_footer", "Footer i Ofert\xebs", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, "Automatikisht konverto ofert\xebn n\xeb fatur\xeb kur pranohet nga klienti.", _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Javore", "freq_two_weeks", "Dy javore", "freq_four_weeks", "Kat\xebr javore", "freq_monthly", "Mujore", "freq_two_months", "Two months", _s17_90, "Tre mujore", _s16_153, "Four months", "freq_six_months", "Gjasht\xeb mujore", "freq_annually", "Vjetore", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Asnj\xebher\xeb", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Vendos taksat", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "CSS i ndryshush\xebm", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, "Ju mund\xebson t\xeb vendosni fjal\xebkalim p\xebr secilin kontakt. N\xebse vendoset fjal\xebkalimi, kontakti duhet t\xeb vendos fjal\xebkalimin para se t'i sheh faturat.", "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "P\xebrsh\xebndetje", _s24_38, "B\xebjeni m\xeb t\xeb leht\xeb p\xebr klient\xebt tuaj t\xeb realizojn\xeb pagesat duke vendosur schema.org markimin n\xeb emailat tuaj.", "plain", "E thjesht\xeb", "light", "E leht\xeb", "dark", "E mbyllt\xeb", "email_design", "Dizajno emailin", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Aktivizo Markimin", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kredit kart\xeb", "bank_transfer", "Transfer bankar", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktivizo min", "enable_max", "Aktivizo max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Perditeso Adres\xebn", _s19_45, "Perditeso adres\xebn e klientit me detajet e ofruara", "rate", "Norma", "tax_rate", "Norma e taksave", "new_tax_rate", "Norm\xeb e re e taksave", "edit_tax_rate", "Edito norm\xebn e taks\xebs", _s16_160, "Norma e taks\xebs \xebsht\xeb krijuar me sukses", _s16_161, "Norma e taks\xebs \xebsht\xeb perditesuar me sukses", _s17_98, "Norma e taks\xebs \xebsht\xeb arkivuar me sukses", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Plot\xebso-automatikisht produktet", _s18_80, "Duke zgjedhur produktin, automatikisht do t\xeb plot\xebsohen fill in the description and cost", "update_products", "Perditeso-automatikisht produktet", _s20_65, "Perditesimi i fatur\xebs automatikisht do t\xeb perditesoje librarine e produktit", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "E \xe7'aktivizuar", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "E diel", "monday", "E h\xebn\xeb", "tuesday", "E marte", "wednesday", "E m\xebrkure", "thursday", "E enj\xebte", "friday", "E premte", "saturday", "E shtune", "january", "Janar", "february", "Shkurt", "march", "Mars", "april", "Prill", "may", "Maj", "june", "Qershor", "july", "Korrik", "august", "Gusht", "september", "Shtator", "october", "Tetor", "november", "N\xebntor", "december", "Dhjetor", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Koha 24 or\xebshe", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Rregullimi i Produktit", "device_settings", "Device Settings", "defaults", "T\xeb paracaktuara", "basic_settings", "Rregullimet bazike", _s17_103, "Rregullimi i Avansuar", "company_details", "Detajet e kompanis\xeb", "user_details", "Detajet e p\xebrdoruesit", "localization", "Vendore", "online_payments", "Pagesat Online", "tax_rates", "Normat e taksave", "notifications", "Njoftimet", "import_export", "Import | Export", "custom_fields", "Fushat e ndryshueshme", "invoice_design", "Dizajni i Fatur\xebs", "buy_now_buttons", "Butonat Blej Tash", "email_settings", "Rregullimi i Emailit", _s23_37, "Shabllonet & P\xebrkujtueset", _s22_55, _s20_67, _s19_51, "Vizualizimi i t\xeb dh\xebnave", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Kushtet e sh\xebrbimit", "privacy_policy", "Politika e Privat\xebsis\xeb", "sign_up", "Regjistrohu", "account_login", "Hyrja me llogari", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Krijo", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Shkarko", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dokumente", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Data e shpenzimit", "pending", "N\xeb pritje", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Konvertuar", _s24_44, _s24_57, "exchange_rate", "Kursi i k\xebmbimit", _s16_178, "Konverto valut\xebn", "mark_paid", "Mark Paid", "category", "Kategoria", "address", "Adresa", "new_vendor", "Kompani e re", "created_vendor", "Kompania \xebsht\xeb krijuar me sukses", "updated_vendor", "Kompania \xebsht\xeb perditesuar me sukses", "archived_vendor", "Kompania \xebsht\xeb arkivuar me sukses", "deleted_vendor", "Kompania \xebsht\xeb fshir\xeb me sukses", "restored_vendor", "Kompania u rikthye me sukses", _s16_179, ":counts kompani jan\xeb arkivuar me sukses", "deleted_vendors", ":count kompani jan\xeb fshir\xeb me sukses", _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", "Shpenzimi \xebsht\xeb krijuar me sukses", "updated_expense", "Shpenzimi \xebsht\xeb perditesuar me sukses", _s16_181, "Shpenzimi \xebsht\xeb arkivuar me sukses", "deleted_expense", "Shpenzimi \xebsht\xeb fshir\xeb me sukses", _s16_182, "Shpenzimet jan\xeb rikthyer me sukses", _s17_109, "Shpenzimet jan\xeb arkivuar me sukses", _s16_183, "Shpenzimet jan\xeb fshir\xeb me sukses", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Faturuar", "logged", "Regjistruar", "running", "Duke ndodhur", "resume", "Vazhdo", "task_errors", "Ju lutem korrigjoni koh\xebt e vendosura mbi nj\xebra-tjetr\xebn", "start", "Fillo", "stop", "Ndalo", "started_task", _s25_47, "stopped_task", "Detyra \xebsht\xeb ndaluar me sukses", "resumed_task", _s25_49, "now", "Tash", _s16_184, _s16_185, "timer", "Koh\xebmat\xebsi", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Koha e fillimit", "end_time", "Koha e p\xebrfundimit", "date", "Data", "times", "Koh\xebt", "duration", "Koh\xebzgjatja", "new_task", "Detyr\xeb e re", "created_task", "Detyra u krijua me sukses", "updated_task", "Detyra \xebsht\xeb perditesuar me sukses", "archived_task", "Detyra \xebsht\xeb arkivuar me sukses", "deleted_task", "Detyra \xebsht\xeb fshir\xeb me sukses", "restored_task", "Detyra \xebsht\xeb rikthyer me sukses", "archived_tasks", ":count detyra jan\xeb arkivuar me sukses", "deleted_tasks", ":count detyra jan\xeb fshir\xeb me sukses", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "kliko k\xebtu", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Shtrirja e Dates", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "E ndryshueshme", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Shiko Fatur\xebn", "convert", "Convert", "more", "More", "edit_client", "Edito klientin", "edit_product", "Edito produkt", "edit_invoice", "Edito Fatur\xebn", "edit_quote", "Edito Ofert\xebn", "edit_payment", "Edito Pages\xebn", "edit_task", "Edito Detyr\xebn", "edit_expense", "Edito shpenzimi", "edit_vendor", "Edito kompanin\xeb", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Adresa e faturimit", _s16_191, _s16_192, "total_revenue", "Totali i Qarkullimit", "average_invoice", "Mesatarja e fatur\xebs", "outstanding", "Pa paguar1", "invoices_sent", _s20_77, "active_clients", "klient\xeb aktiv", "close", "Mbyll", "email", "Emaili", "password", "Fjal\xebkalimi", "url", "URL", "secret", "Sekret", "name", "Emri", "logout", "\xc7'identifikohu", "login", "Identifikohu", "filter", "Filtro", "sort", "Sort", "search", "K\xebrko", "active", "Aktiv", "archived", "Arkivuar", "deleted", "E fshir\xeb", "dashboard", "Paneli", "archive", "Arkivo", "delete", "Fshi", "restore", "Rikthe", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Ruaj", _s17_115, _s17_116, "paid_to_date", "Paguar deri m\xeb sot", "balance_due", "Bilanci aktual", "balance", "Bilanci", "overview", "Overview", "details", "Detajet", "phone", "Telefoni", "website", "Website", "vat_number", "Numri i TVSH", "id_number", "ID numri", "create", "Krijo", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontaktet", "additional", "Additional", "first_name", "Emri", "last_name", "Mbiemri", "add_contact", "Shto kontaktin", "are_you_sure", "A jeni t\xeb sigurt\xeb", "cancel", "Anulo", "ok", "Ok", "remove", "Largo", _s16_197, _s16_198, "product", "Produkt", "products", "Produktet", "new_product", "Produkt i ri", "created_product", "Produkti \xebsht\xeb krijuar me sukses", "updated_product", "Produkti \xebsht\xeb perditesuar me sukses", _s16_199, "Produkti \xebsht\xeb arkivuar me sukses", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Produkt", "notes", "Sh\xebnime", "cost", "Kosto", "client", "Klient", "clients", "Klient\xebt", "new_client", "Klient i ri", "created_client", "Klienti \xebsht\xeb krijuar me sukses", "updated_client", "Klienti \xebsht\xeb perditesuar me sukses", "archived_client", "Klienti \xebsht\xeb arkivuar me sukses", _s16_202, ":count klient\xeb jan\xeb arkivuar me sukses", "deleted_client", "Klienti \xebsht\xeb fshir\xeb me sukses", "deleted_clients", ":count klient\xeb jan\xeb fshir\xeb me sukses", "restored_client", "Klienti \xebsht\xeb rikthyer me sukses", _s16_203, _s36_13, "address1", "Rruga", "address2", "Apartamenti/banesa", "city", "Qyteti", "state", "Shteti/Provinca", "postal_code", "Kodi postar", "country", "Shteti", "invoice", "Fatura", "invoices", "Faturat", "new_invoice", "Fatur\xeb e re", "created_invoice", "Fatura \xebsht\xeb krijuar me sukses", "updated_invoice", "Fatura \xebsht\xeb perditesuar me sukses", _s16_204, "Fatura \xebsht\xeb arkivuar me sukses", "deleted_invoice", "Fatura \xebsht\xeb fshir\xeb me sukses", _s16_205, "Fatura \xebsht\xeb rikthyer me sukses", _s17_119, ":count fatura jan\xeb arkivuar me sukes", _s16_206, ":count fatura jan\xeb fshir\xeb me sukses", _s17_120, _s37_17, "emailed_invoice", "Fatura \xebsht\xeb d\xebrguar me sukses me email", "emailed_payment", _s28_58, "amount", "Shuma", "invoice_number", "Numri i fatur\xebs", "invoice_date", "Data e fatur\xebs", "discount", "Zbritje", "po_number", "Numri UB", "terms", "Kushtet", "public_notes", "Sh\xebnime publike", "private_notes", "Sh\xebnime private", "frequency", "Frekuenca", "start_date", "Data e fillimit", "end_date", "Data e p\xebrfundimit", "quote_number", "Numri i ofert\xebs", "quote_date", "Data e Ofert\xebs", "valid_until", "Valide deri", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "P\xebrshkrimi", "unit_cost", "Kosto p\xebr nj\xebsi", "quantity", "Sasia", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefoni", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Deri m\xeb dat\xeb", _s16_207, _s16_208, "status", "Statusi", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Totali", "percent", "Percent", "edit", "Edito", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Rregullimet", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Taks\xeb", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "D\xebrguar", "viewed", "Viewed", "approved", "Approved", "partial", "E pjesshme/depozite", "paid", "Paguar", "mark_sent", "Shenja \xebsht\xeb d\xebrguar", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "P\xebrfundo", _s37_18, _s37_19, "dark_mode", "Modeli i err\xebt", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktiviteti", _s16_209, _s16_210, "clone", "Klono", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Kushtet e pages\xebs", "payment_date", "Data e pages\xebs", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Portali i klientit", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktivizuar", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "P\xebrkujtuesi i par\xeb", "second_reminder", "P\xebrkujtuesi i dyt\xeb", "third_reminder", "P\xebrkujtuesi i tret\xeb", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Tema", "body", "P\xebrmbajtja", "send_email", "D\xebrgo email", "email_receipt", "D\xebrgo flet\xebpages\xebn tek klienti me email", "auto_billing", "Auto billing", "button", "Button", "preview", "Parashiko", "customize", "Ndrysho", "history", "Historia", "payment", "Pagesa", "payments", "Pagesat", "refunded", "Refunded", "payment_type", "Lloji i pages\xebs", _s21_79, "Referenca e transaksionit", "enter_payment", "Cakto pages\xebn", "new_payment", "Enter Payment", "created_payment", "Pagesa \xebsht\xeb krijuar me sukses", "updated_payment", "Pagesa \xebsht\xeb perditesuar me sukses", _s16_217, "Pagesa \xebsht\xeb arkivuar me sukses", "deleted_payment", "Pagesa \xebsht\xeb fshir\xeb me sukses", _s16_218, "Pagesa \xebsht\xeb rikthyer me sukses", _s17_124, ":count pagesa jan\xeb arkivuar me sukses", _s16_219, ":count pagesa jan\xeb fshir\xeb me sukses", _s17_125, _s37_20, "quote", "Ofert\xeb", "quotes", "Oferta", "new_quote", "Ofert\xeb e re", "created_quote", "Oferta \xebsht\xeb krijuar me sukses", "updated_quote", "Oferta \xebsht\xeb perditesuar me sukses", "archived_quote", "Oferta \xebsht\xeb arkivuar me sukses", "deleted_quote", "Oferta \xebsht\xeb fshir\xeb me sukses", "restored_quote", "Oferta \xebsht\xeb rikthyer me sukses", "archived_quotes", ": count oferta jan\xeb arkivuar me sukses", "deleted_quotes", ":count oferta jan\xeb fshir\xeb me sukses", "restored_quotes", _s35_21, "expense", "Shpenzimet", "expenses", "Shpenzimet", "vendor", "Kompani", "vendors", "Kompanit\xeb", "task", "Detyre", "tasks", "Detyrat", "project", "Project", "projects", "Projects", "activity_1", ":user ka krijuar klientin :client", "activity_2", ":user ka arkivuar klientin :client", "activity_3", ":user ka fshir\xeb klientin :client", "activity_4", ":user ka krijuar fatur\xebn :invoice", "activity_5", ":user ka perditesuar fatur\xebn :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user ka arkivuar fatur\xebn :invoice", "activity_9", ":user ka fshir\xeb fatur\xebn :invoice", "activity_10", _s85_0, "activity_11", ":user ka perditesuar pages\xebn :payment", "activity_12", ":user ka arkivuar pages\xebn :payment", "activity_13", ":user ka fshir\xeb pages\xebn :payment", "activity_14", ":user ka shtuar :credit kredit", "activity_15", ":user ka perditesuar :credit kredit", "activity_16", ":user ka arkivuar :credit kredit", "activity_17", ":user ka fshir\xeb:credit kredit", "activity_18", ":user ka krijuar ofert\xeb :quote", "activity_19", ":user ka perditesuar ofert\xebn :quote", "activity_20", _s50_9, "activity_21", ":contact ka shikuar ofert\xebn :quote", "activity_22", ":user ka arkivuar ofert\xebn :quote", "activity_23", ":user ka fshir\xeb ofert\xebn :quote", "activity_24", ":user ka rikthyer ofert\xebn :quote", "activity_25", ":user ka rikthyer fatur\xebn :invoice", "activity_26", ":user ka rikthyer klientin :client", "activity_27", ":user ka rikthyer pages\xebn :payment", "activity_28", ":user ka rikthyer :credit kredit", "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", ":user ka krijuar shpeznim :expense", "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", ":payment_amount payment (:payment) ka d\xebshtuar", "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Oferta \xebsht\xeb d\xebrguar me sukses me email", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Skaduar", "all", "T\xeb gjitha", "select", "Selekto", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Numruesi i numrit t\xeb fatur\xebs", _s20_73, _s20_74, _s20_75, "Numruesi i numrit t\xeb ofert\xebs", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Shkruaj", "invoice_amount", "Shuma e fatur\xebs", _s16_224, "Deri m\xeb dat\xeb", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Faturo Automatikisht", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Emri i taks\xebs", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Shuma e paguar", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "ar", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s23_42, _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "\u0627\u0644\u0646\u0637\u0627\u0642", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Set Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "\u0635\u0627\u0641\u064a", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ": \u062a\u0645 \u0627\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0641\u0627\u062a\u0648\u0631\u0629 \u0645\u062a\u0643\u0631\u0631\u0629:recurring_invoice", "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u062a\u0641\u0639\u064a\u0644", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "\u0647\u0630\u0627 \u0627\u0644\u0631\u0628\u0639", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0641\u0627\u062a\u0648\u0631\u0629", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, "\u062d\u063a\u0638 \u0648\u0627\u0633\u062a\u0639\u0631\u0627\u0636", "save_and_email", "\u062d\u0641\u0638 \u0648\u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u0645\u0635\u0631\u0648\u0641", "enter_taxes", "\u0623\u062f\u062e\u0644 \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "by_rate", "\u0628\u0627\u0644\u0646\u0633\u0628\u0629", "by_amount", "\u0628\u0627\u0644\u0642\u064a\u0645\u0629", "enter_amount", "\u0623\u062f\u062e\u0644 \u0627\u0644\u0642\u064a\u0645\u0629", "before_taxes", "\u0642\u0628\u0644 \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "after_taxes", "\u0628\u0639\u062f \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "color", "\u0627\u0644\u0644\u0648\u0646", "show", "\u0639\u0631\u0636", "hide", "Hide", "empty_columns", "\u0627\u0644\u0623\u0639\u0645\u062f\u0629 \u0627\u0644\u0641\u0627\u0631\u063a\u0629", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0646\u0634\u0637\u0629", "recent_tasks", "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0623\u062e\u064a\u0631\u0629", "recent_expenses", "\u0627\u0644\u0645\u0635\u0627\u0631\u064a\u0641 \u0627\u0644\u0623\u062e\u064a\u0631\u0629", _s17_36, "\u0627\u0644\u0645\u0635\u0627\u0631\u064a\u0641 \u0627\u0644\u0642\u0627\u062f\u0645\u0629", "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u0639\u0645\u0648\u062f", "sample", "\u0639\u064a\u0646\u0629", "map_to", "Map To", "import", "\u0627\u0633\u062a\u064a\u0631\u0627\u062f", _s25_15, _s29_6, "select_file", "\u064a\u0631\u062c\u0649 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641", _s16_60, _s16_61, "csv_file", "\u0645\u0644\u0641 CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "\u0646\u0633\u062e \u0625\u0644\u0649", "clone_to_other", "\u0646\u0633\u062e \u0644\u0623\u062e\u0631\u0649", "labels", "\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a", "add_custom", "\u0623\u0636\u0641 \u0645\u062e\u0635\u0635", "payment_tax", "\u0636\u0631\u064a\u0628\u0629 \u0627\u0644\u062f\u0641\u0639", "unpaid", "Unpaid", "white_label", "\u0627\u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u064a\u0636\u0627\u0621", "delivery_note", "Delivery Note", _s24_23, "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0645\u0631\u0633\u0644\u0629 \u0645\u0642\u0641\u0648\u0644\u0629", _s24_25, "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0645\u062f\u0641\u0648\u0639\u0629 \u0645\u0642\u0641\u0648\u0644\u0629", "source_code", "\u0643\u0648\u062f \u0627\u0644\u0645\u0635\u062f\u0631", "app_platforms", "\u0645\u0646\u0635\u0627\u062a \u0627\u0644\u062a\u0637\u0628\u064a\u0642", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "\u0645\u062c\u0645\u0648\u0639 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_14, "\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "actions", "\u0627\u0644\u0625\u062c\u0631\u0627\u0621\u0627\u062a", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "\u0627\u0633\u0645 \u0627\u0644\u0645\u0634\u0631\u0648\u0639", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "\u0645\u0633\u062d \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0624\u0642\u062a", "sort_order", "Sort Order", "task_status", "\u0627\u0644\u062d\u0627\u0644\u0629", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0647\u0627\u0645", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "\u062e\u064a\u0627\u0631 \u0627\u0644\u0639\u0631\u0636", _s22_34, _s50_8, "view_changes", "\u0639\u0631\u0636 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u062a", "force_update", "\u062a\u062d\u062f\u064a\u062b \u0625\u062c\u0628\u0627\u0631\u064a", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0646\u0641\u0642\u0627\u062a \u0644\u062a\u062a\u0645 \u0641\u0648\u062a\u0631\u062a\u0647\u0627", _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "\u0625\u0638\u0647\u0627\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631", "hide_password", "\u0625\u062e\u0641\u0627\u0621 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631", "copy_error", "\u062e\u0637\u0623 \u0628\u0627\u0644\u0646\u0633\u062e", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "\u0645\u062c\u0645\u0648\u0639 \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "line_taxes", "\u0636\u0631\u0627\u0626\u0628 \u0627\u0644\u0628\u0646\u0648\u062f", "total_fields", "\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062d\u0642\u0648\u0644", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "\u0645\u062a\u0648\u0642\u0641 \u0645\u0624\u0642\u062a\u0627\u064b", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, "\u0623\u0648\u0644 \u064a\u0648\u0645 \u0641\u064a \u0627\u0644\u0634\u0647\u0631", _s21_45, "\u0622\u062e\u0631 \u064a\u0648\u0645 \u0641\u064a \u0627\u0644\u0634\u0647\u0631", _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, _s16_238, _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0631\u0633\u0627\u0644", "auto_bill_on", "\u0641\u0648\u062a\u0631\u0629 \u062a\u0644\u0642\u0627\u0626\u064a\u0629 \u0641\u064a", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "\u0627\u0644\u0648\u0636\u0639 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "\u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f", _s17_49, _s17_50, "failure", "\u0641\u0634\u0644", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "\u062a\u0642\u0627\u0631\u064a\u0631 \u0627\u0644\u0646\u0638\u0627\u0645", "view_portal", "View Portal", "copy_link", "\u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637", "token_billing", _s17_136, _s24_34, "\u0623\u0647\u0644\u0627 \u0628\u0643 \u0641\u064a Invoice Ninja", "always", "Always", "optin", "\u0627\u0634\u062a\u0631\u0627\u0643", "optout", "\u0625\u0644\u063a\u0627\u0621 \u0627\u0634\u062a\u0631\u0627\u0643", "label", "Label", "client_number", "Client Number", "auto_convert", "\u062a\u062d\u0648\u064a\u0644 \u062a\u0644\u0642\u0627\u0626\u064a", "company_name", "Company Name", "reminder1_sent", "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 1", "reminder2_sent", "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 2", "reminder3_sent", "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 3", _s18_49, "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 \u0627\u0644\u0623\u062e\u064a\u0631", "pdf_page_info", "\u0627\u0644\u0635\u0641\u062d\u0629 :current \u0645\u0646 :total", _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "\u0639\u0631\u0636 \u0641\u064a Stripe", "rows_per_page", "\u0627\u0644\u0635\u0641\u0648\u0641 \u0641\u064a \u0627\u0644\u0635\u0641\u062d\u0629", "hours", "Hours", "statement", "Statement", "taxes", "\u0636\u0631\u0627\u0626\u0628", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "\u0627\u0633\u0645 \u0627\u0644\u0633\u062c\u0644", "file_type", "\u0646\u0648\u0639 \u0627\u0644\u0645\u0644\u0641", "height", "\u0627\u0644\u0637\u0648\u0644", "width", "\u0627\u0644\u0639\u0631\u0636", "to", "To", "health_check", "\u0641\u062d\u0635 \u0627\u0644\u062d\u0627\u0644\u0629", "payment_type_id", "\u0646\u0648\u0639 \u0627\u0644\u062f\u0641\u0639\u0629", "last_login_at", "\u0622\u062e\u0631 \u062f\u062e\u0648\u0644 \u0641\u064a", "company_key", "\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0634\u0631\u0643\u0629", "storefront", "\u0648\u0627\u062c\u0647\u0629 \u0627\u0644\u0645\u062a\u062c\u0631", "storefront_help", _s42_8, "client_created", "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0639\u0645\u064a\u0644", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "\u0645\u0646\u062a\u0647\u064a", "gross", "\u0627\u0644\u0646\u0645\u0648", "net_amount", "\u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u0635\u0627\u0641\u064a\u0629", "net_balance", "\u0627\u0644\u0631\u0635\u064a\u062f \u0627\u0644\u0635\u0627\u0641\u064a", "client_settings", "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0645\u064a\u0644", _s17_51, "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629", _s17_53, "\u0627\u0644\u062f\u0641\u0639\u0627\u062a \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629", "selected_quotes", "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629", "selected_tasks", "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629", _s17_55, "\u0627\u0644\u0645\u0635\u0627\u0631\u064a\u0641 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629", _s17_57, "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0642\u0627\u062f\u0645\u0629", _s17_59, _s17_60, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "\u0625\u0646\u0634\u0627\u0621 \u0641\u0627\u062a\u0648\u0631\u0629", "create_quote", "Create Quote", "create_payment", "\u0623\u0646\u0634\u0626 \u062f\u0641\u0639\u0629", "create_vendor", "Create vendor", "update_quote", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0639\u0631\u0636", "delete_quote", "Delete Quote", "update_invoice", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "delete_invoice", "\u062d\u0630\u0641 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "update_client", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0639\u0645\u064a\u0644", "delete_client", "\u062d\u0630\u0641 \u0627\u0644\u0639\u0645\u064a\u0644", "delete_payment", "\u062d\u0630\u0641 \u0627\u0644\u062f\u0641\u0639\u0629", "update_vendor", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0648\u0631\u062f", "delete_vendor", "Delete Vendor", "create_expense", "\u0623\u0646\u0634\u0626 \u0645\u0635\u0631\u0648\u0641", "update_expense", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0635\u0631\u0648\u0641", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0647\u0645\u0629", "delete_task", "Delete Task", "approve_quote", "\u0642\u0628\u0648\u0644 \u0627\u0644\u0639\u0631\u0636", "off", "Off", "when_paid", "\u0645\u062a\u0649 \u0633\u062a\u062f\u0641\u0639", "expires_on", "\u064a\u0646\u062a\u0647\u064a \u0641\u064a", "free", "Free", "plan", "Plan", "show_sidebar", "\u0639\u0631\u0636 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a", "hide_sidebar", "\u0625\u062e\u0641\u0627\u0621 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a", "event_type", "\u0639 \u0627\u0644\u062d\u062f\u062b", "target_url", "Target", "copy", "\u0646\u0633\u062e", "must_be_online", "\u064a\u0631\u062c\u0649 \u0625\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u0637\u0628\u064a\u0642 \u0639\u0646\u062f \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u0634\u0628\u0643\u0629", _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "\u0631\u0645\u0632 \u062c\u062f\u064a\u062f", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", "\u062a\u0645 \u0645\u0633\u062d \u0627\u0644\u0631\u0645\u0632 \u0628\u0646\u062c\u0627\u062d", "restored_token", "\u062a\u0645 \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0627\u0644\u0631\u0645\u0632 \u0628\u0646\u062c\u0627\u062d", "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0639\u0645\u064a\u0644", _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u0627\u0631\u0633\u0627\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0639\u0628\u0631 \u0627\u0644\u0627\u064a\u0645\u064a\u0644", "email_quote", "Email Quote", "email_credit", "\u0631\u0635\u064a\u062f \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", "email_payment", "Email Payment", _s20_50, "\u0644\u0627 \u064a\u0648\u062c\u062f \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u0633\u062c\u0644 \u0644\u0644\u0639\u0645\u064a\u0644", "ledger", "Ledger", "view_pdf", "\u0639\u0631\u0636 PDF", "all_records", "\u062c\u0645\u064a\u0639 \u0627\u0644\u0633\u062c\u0644\u0627\u062a", "owned_by_user", "\u0627\u0644\u0639\u0627\u0626\u062f\u0629 \u0644\u0644\u0645\u0633\u062a\u062e\u062f\u0645", _s16_78, "\u0627\u0644\u0631\u0635\u064a\u062f \u0627\u0644\u0645\u062a\u0628\u0642\u064a", "contact_name", "Contact Name", "use_default", "\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", _s16_80, _s17_64, "number_of_days", "\u0639\u062f\u062f \u0627\u0644\u0623\u064a\u0627\u0645", _s23_19, "\u0625\u0639\u062f\u0627\u062f \u0634\u0631\u0648\u0637 \u0627\u0644\u062f\u0641\u0639", "payment_term", "\u0634\u0631\u0637 \u0627\u0644\u062f\u0641\u0639", _s16_81, "\u0634\u0631\u0637 \u062f\u0641\u0639 \u062c\u062f\u064a\u062f", _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, "\u062a\u0645 \u062d\u0630\u0641 \u0634\u0631\u0637 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", _s20_54, "\u062a\u0645\u062a \u0625\u0632\u0627\u0644\u0629 \u0634\u0631\u0637 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", _s21_51, "\u062a\u0645 \u0627\u0633\u062a\u0631\u062c\u0627\u0639 \u0634\u0631\u0637 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", "change", "\u062a\u063a\u064a\u064a\u0631", _s23_21, "\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062c\u0648\u0627\u0644", _s24_37, "\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u062a\u0646\u0633\u064a\u0642 \u0633\u0637\u062d \u0627\u0644\u0645\u0643\u062a\u0628", "send_from_gmail", "\u0623\u0631\u0633\u0644 \u0645\u0646 Gmail", "reversed", "\u0645\u0639\u0643\u0648\u0633", "cancelled", "\u0645\u0644\u063a\u0649", "credit_amount", "\u0645\u0628\u0644\u063a \u0627\u0644\u0627\u0626\u062a\u0645\u0627\u0646", "quote_amount", "\u0642\u064a\u0645\u0629 \u0627\u0644\u0639\u0631\u0636", "hosted", "\u0645\u0633\u062a\u0636\u0627\u0641", "selfhosted", "\u0627\u0633\u062a\u0636\u0627\u0641\u0629 \u062e\u0627\u0635\u0629", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "\u0625\u062e\u0641\u0627\u0621 \u0627\u0644\u0642\u0627\u0626\u0645\u0629", "show_menu", "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0642\u0627\u0626\u0645\u0629", _s18_51, _s18_52, _s16_83, "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", "search_designs", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u062a\u0635\u0627\u0645\u064a\u0645", "search_invoices", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631", "search_clients", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0639\u0645\u0644\u0627\u0621", "search_products", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a", "search_quotes", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0639\u0631\u0648\u0636", "search_credits", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0623\u0631\u0635\u062f\u0629", "search_vendors", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0645\u0648\u0631\u062f\u064a\u0646", "search_users", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", _s16_84, "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0645\u0639\u062f\u0644\u0627\u062a \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "search_tasks", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u0647\u0627\u0645", "search_settings", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", "search_projects", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u0634\u0627\u0631\u064a\u0639", "search_expenses", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u0635\u0627\u0631\u064a\u0641", "search_payments", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u062f\u0641\u0639\u0627\u062a", "search_groups", "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0627\u062a", "search_company", "\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0634\u0631\u0643\u0629", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, "\u0641\u0627\u062a\u0648\u0631\u0629 \u0645\u0644\u063a\u0627\u0629 \u0628\u0646\u062c\u0627\u062d", _s18_53, "\u0641\u0648\u0627\u062a\u064a\u0631 \u0645\u0644\u063a\u0627\u0629 \u0628\u0646\u062c\u0627\u062d", _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_238, "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0626\u062a\u0645\u0627\u0646", "credit", "\u0627\u0626\u062a\u0645\u0627\u0646", "credits", "\u0627\u0644\u0623\u0631\u0635\u062f\u0629", "new_credit", "\u0623\u062f\u062e\u0644 \u0627\u0644\u0631\u0635\u064a\u062f", "edit_credit", "Edit Credit", "created_credit", "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0642\u0631\u0636 \u0628\u0646\u062c\u0627\u062d", "updated_credit", _s27_32, "archived_credit", "\u062a\u0645 \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0642\u0631\u0636 \u0628\u0646\u062c\u0627\u062d", "deleted_credit", "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0642\u0631\u0636 \u0628\u0646\u062c\u0627\u062d", "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, "\u062a\u0645 \u0627\u0631\u0634\u0641\u0629 :count \u0641\u0631\u0648\u0636", "deleted_credits", "\u062a\u0645 \u062d\u0630\u0641 :count \u0642\u0631\u0648\u0636 \u0628\u0646\u062c\u0627\u062d", _s16_99, _s36_9, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u0644\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Credit Balance", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u0631\u0633\u0627\u0644\u0629", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "\u0627\u0644\u0645\u0628\u0644\u063a \u0627\u0644\u0625\u062c\u0645\u0627\u0644\u064a", "line_total", "\u0627\u0644\u0625\u062c\u0645\u0627\u0644\u064a", "item", "\u0628\u0646\u062f", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, _s21_101, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "\u0627\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", "users", "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", "new_user", "New User", "edit_user", "\u062a\u0639\u062f\u064a\u0644 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", "created_user", _s25_36, "updated_user", "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0628\u0646\u062c\u0627\u062d", "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0627\u0645\u0629", "invoice_options", "\u062e\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", _s17_86, "\u0627\u062e\u0641\u0627\u0621 \u0645\u0627 \u062a\u0645 \u062f\u0641\u0639\u0629 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646", _s22_52, "\u0627\u0639\u0631\u0636 \u0641\u0642\u0637 -\u0645\u0627 \u062a\u0645 \u062f\u0641\u0639\u0647 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646- \u0641\u064a \u0641\u0648\u0627\u062a\u064a\u0631\u0643 \u0627\u0630\u0627 \u062a\u0645 \u0627\u0633\u062a\u0644\u0627\u0645 \u0627\u0644\u062f\u0641\u0639\u0647", _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "\u062d\u0642\u0648\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "product_fields", "Product Fields", "invoice_terms", "\u0634\u0631\u0648\u0637 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "\u0641\u0631\u0636 \u0627\u0644\u0636\u0631\u0627\u0626\u0628", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "\u0643\u0648\u062f \u0645\u062e\u0635\u0635 CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u0645\u0639 \u062a\u062d\u064a\u0627\u062a\u064a\u060c", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "\u0645\u0639\u062f\u0644", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", _s20_78, _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0646\u062a\u062c", "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0623\u0633\u0627\u0633\u064a\u0629", _s17_103, "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u062a\u0642\u062f\u0645\u0629", "company_details", "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0634\u0631\u0643\u0629", "user_details", "User Details", "localization", "\u0627\u0644\u062a\u0639\u0631\u064a\u0628", "online_payments", "\u0627\u0644\u062f\u0641\u0639\u0627\u062a \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629", "tax_rates", "\u0645\u0639\u062f\u0644\u0627\u062a \u0627\u0644\u0636\u0631\u064a\u0628\u0629", "notifications", "\u062a\u0646\u0628\u064a\u0647\u0627\u062a", "import_export", "\u0627\u0633\u062a\u064a\u0631\u0627\u062f | \u062a\u0635\u062f\u064a\u0631", "custom_fields", "\u062d\u0642\u0648\u0643 \u0645\u062e\u0635\u0635\u0629", "invoice_design", "\u062a\u0635\u0645\u064a\u0645 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "buy_now_buttons", "Buy Now Buttons", "email_settings", "\u0625\u0639\u062f\u0627\u062f\u062a \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s19_52, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u0634\u0631\u0648\u0637 \u0627\u0644\u062e\u062f\u0645\u0629", "privacy_policy", "Privacy Policy", "sign_up", "\u062a\u0633\u062c\u064a\u0644", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u062a\u062d\u0645\u064a\u0644", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Mark Paid", "category", "Category", "address", "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", "new_vendor", "New Vendor", "created_vendor", "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0628\u0627\u0626\u0639 \u0628\u0646\u062c\u0627\u062d", "updated_vendor", "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0628\u0627\u0626\u0639 \u0628\u0646\u062c\u0627\u062d", "archived_vendor", "\u062a\u0645 \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0628\u0627\u0626\u0639 \u0628\u0646\u062c\u0627\u062d", "deleted_vendor", "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0628\u0627\u0626\u0639 \u0628\u0646\u062c\u0627\u062d", "restored_vendor", _s28_27, _s16_179, "\u062a\u0645 \u0627\u0631\u0634\u0641\u0629 :count \u0628\u0627\u0626\u0639\u064a\u0646 \u0628\u0646\u062c\u0627\u062d", "deleted_vendors", "\u062a\u0645 \u062d\u0630\u0641 :count \u0628\u0627\u0626\u0639\u064a\u0646 \u0628\u0646\u062c\u0627\u062d", _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "\u062a\u0627\u0631\u064a\u062e", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_50, "updated_task", _s25_51, "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", _s34_22, "deleted_tasks", _s33_25, "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "click here", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u0639\u0631\u0636 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "convert", "Convert", "more", "More", "edit_client", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0639\u0645\u064a\u0644", "edit_product", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0646\u062a\u062c", "edit_invoice", "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Billing Address", _s16_191, _s16_192, "total_revenue", "Total Revenue", "average_invoice", "\u0645\u0639\u062f\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "outstanding", "Outstanding", "invoices_sent", _s20_77, "active_clients", "\u0639\u0645\u0644\u0627\u0621 \u0641\u0639\u0651\u0627\u0644\u064a\u0646", "close", "\u0625\u063a\u0644\u0627\u0642", "email", "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", "password", "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", "url", "URL", "secret", "Secret", "name", "\u0627\u0644\u0627\u0633\u0645", "logout", "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062e\u0631\u0648\u062c", "login", "Login", "filter", "\u062a\u0631\u0634\u064a\u062d", "sort", "Sort", "search", "\u0627\u0644\u0628\u062d\u062b", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "\u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645", "archive", "\u0627\u0631\u0634\u064a\u0641", "delete", "\u062d\u0630\u0641", "restore", "Restore", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "\u062d\u0641\u0638", _s17_115, _s17_116, "paid_to_date", "\u062f\u0641\u0639\u062a \u062d\u062a\u0649 \u0627\u0644\u0627\u0646", "balance_due", "\u0627\u0644\u0631\u0635\u064a\u062f \u0627\u0644\u0645\u0633\u062a\u062d\u0642", "balance", "\u0627\u0644\u0631\u0635\u064a\u062f", "overview", "Overview", "details", "\u062a\u0641\u0627\u0635\u064a\u0644", "phone", "\u0627\u0644\u0647\u0627\u062a\u0641", "website", "\u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", "vat_number", "VAT Number", "id_number", "ID Number", "create", "\u0625\u0646\u0634\u0627\u0621", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "\u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644", "additional", "Additional", "first_name", "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644", "last_name", "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062e\u064a\u0631", "add_contact", "\u0625\u0636\u0627\u0641\u0629 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644", "are_you_sure", "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f\u061f", "cancel", "\u0625\u0644\u063a\u0627\u0621", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "\u0645\u0646\u062a\u062c", "products", "\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a", "new_product", "New Product", "created_product", "\u062a\u0645 \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0646\u062a\u062c \u0628\u0646\u062c\u0627\u062d", "updated_product", "\u062a\u0645 \u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0646\u062a\u062c \u0628\u0646\u062c\u0627\u062d", _s16_199, "\u062a\u0645\u062a \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0645\u0646\u062a\u062c \u0628\u0646\u062c\u0627\u062d", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "\u0627\u0644\u0639\u0645\u064a\u0644", "clients", "\u0627\u0644\u0639\u0645\u0644\u0627\u0621", "new_client", "\u0639\u0645\u064a\u0644 \u062c\u062f\u064a\u062f", "created_client", "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0639\u0645\u064a\u0644 \u0628\u0646\u062c\u0627\u062d", "updated_client", "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0639\u0645\u064a\u0644 \u0628\u0646\u062c\u0627\u062d", "archived_client", "\u062a\u0645\u062a \u0623\u0631\u0634\u0641\u0629 \u0627\u0644\u0639\u0645\u064a\u0644 \u0628\u0646\u062c\u0627\u062d", _s16_202, "\u062a\u0645\u062a \u0623\u0631\u0634\u0641\u062a\u0647 :count \u0639\u0645\u0644\u0627\u0621 \u0628\u0646\u062c\u0627\u062d", "deleted_client", "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0639\u0645\u064a\u0644 \u0628\u0646\u062c\u0627\u062d", "deleted_clients", "\u062a\u0645 \u062d\u0630\u0641 :count \u0639\u0645\u0644\u0627\u0621 \u0628\u0646\u062c\u0627\u062d", "restored_client", _s28_39, _s16_203, _s36_13, "address1", "\u0627\u0644\u0634\u0627\u0631\u0639", "address2", "\u0634\u0642\u0629 / \u062c\u0646\u0627\u062d", "city", "\u0627\u0644\u0645\u062f\u064a\u0646\u0629", "state", "\u0627\u0644\u0648\u0644\u0627\u064a\u0629/\u0627\u0644\u0645\u0646\u0637\u0642\u0629", "postal_code", "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0628\u0631\u064a\u062f\u064a", "country", "Country", "invoice", "\u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "invoices", "\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631", "new_invoice", "\u0641\u0627\u062a\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629", "created_invoice", "\u062a\u0645 \u0627\u0646\u0634\u0627\u0621 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0628\u0646\u062c\u0627\u062d", "updated_invoice", "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0628\u0646\u062c\u0627\u062d", _s16_204, "\u062a\u0645\u062a \u0623\u0631\u0634\u0641\u0629 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0628\u0646\u062c\u0627\u062d", "deleted_invoice", "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0628\u0646\u062c\u0627\u062d", _s16_205, _s29_27, _s17_119, "\u062a\u0645 \u0627\u0631\u0634\u0641\u0629 :count \u0641\u0648\u0627\u062a\u064a\u0631 \u0628\u0646\u062c\u0627\u062d", _s16_206, "\u062a\u0645 \u062d\u0630\u0641 :count \u0641\u0648\u0627\u062a\u064a\u0631 \u0628\u0646\u062c\u0627\u062d", _s17_120, _s37_17, "emailed_invoice", "\u062a\u0645 \u0627\u0631\u0633\u0627\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0627\u0644\u0649 \u0627\u0644\u0628\u0631\u064a\u062f \u0628\u0646\u062c\u0627\u062d", "emailed_payment", _s28_58, "amount", "\u0627\u0644\u0642\u064a\u0645\u0629", "invoice_number", "\u0631\u0642\u0645 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "invoice_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "discount", "\u062e\u0635\u0645", "po_number", "\u0631\u0642\u0645 \u0627\u0644\u062a\u0639\u0645\u064a\u062f", "terms", "\u0627\u0644\u0634\u0631\u0648\u0637", "public_notes", "Public Notes", "private_notes", "\u0645\u0644\u0627\u062d\u0638\u0627\u062a \u062e\u0627\u0635\u0629", "frequency", "\u0627\u0644\u062a\u0643\u0631\u0627\u0631", "start_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0628\u062f\u0627\u064a\u0629", "end_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0646\u0647\u0627\u064a\u0629", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u0648\u0635\u0641", "unit_cost", "\u062a\u0643\u0644\u0641\u0629 \u0627\u0644\u0648\u062d\u062f\u0629", "quantity", "\u0627\u0644\u0643\u0645\u064a\u0629", "add_item", "Add Item", "contact", "\u062c\u0647\u0629 \u0625\u062a\u0635\u0627\u0644", "work_phone", "\u0627\u0644\u0647\u0627\u062a\u0641", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0633\u062a\u062d\u0642\u0627\u0642", _s16_207, _s16_208, "status", "\u0627\u0644\u062d\u0627\u0644\u0629", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "\u0627\u0644\u0645\u062c\u0645\u0648\u0639", "percent", "Percent", "edit", "\u062a\u0639\u062f\u064a\u0644", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0636\u0631\u064a\u0628\u0629", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "Paid", "mark_sent", "Mark Sent", _s22_61, _s35_18, _s22_62, "\u062a\u0645 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0643\u0645\u0631\u0633\u0644\u0629", _s23_40, _s36_14, _s23_41, "\u062a\u0645 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631 \u0643\u0645\u0631\u0633\u0644\u0629", "done", "\u062a\u0645", _s37_18, _s37_19, "dark_mode", "Dark Mode", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u0646\u0634\u0627\u0637", _s16_209, _s16_210, "clone", "\u0627\u0633\u062a\u0646\u0633\u0627\u062e", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u0634\u0631\u0648\u0637 \u0627\u0644\u062f\u0641\u0639", "payment_date", "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062f\u0641\u0639\u0629", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "\u0627\u0644\u0630\u0627\u0643\u0631\u0629", "payment", "Payment", "payments", "\u0627\u0644\u062f\u0641\u0639\u0627\u062a", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "\u0631\u0645\u0632 \u0627\u0644\u0639\u0645\u0644\u064a\u0629", "enter_payment", "\u0627\u062f\u062e\u0644 \u0627\u0644\u062f\u0641\u0639\u0629", "new_payment", "\u0623\u062f\u062e\u0644 \u0627\u0644\u062f\u0641\u0639\u0629", "created_payment", "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", "updated_payment", _s28_44, _s16_217, "\u062a\u0645\u062a \u0623\u0631\u0634\u0641\u0629 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", "deleted_payment", "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u062f\u0641\u0639 \u0628\u0646\u062c\u0627\u062d", _s16_218, _s29_29, _s17_124, "\u062a\u0645\u062a \u0627\u0631\u0634\u0641\u0629 :count \u0645\u062f\u0641\u0648\u0639\u0627\u062a \u0628\u0646\u062c\u0627\u062d", _s16_219, "\u062a\u0645 \u062d\u0630\u0641 :count \u0645\u062f\u0641\u0648\u0639\u0627\u062a \u0628\u0646\u062c\u0627\u062d", _s17_125, _s37_20, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", _s35_22, "deleted_quotes", _s34_23, "restored_quotes", _s35_21, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_46, "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", _s30_19, "activity_5", _s30_20, "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", _s85_0, "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", ":contact \u0634\u0627\u0647\u062f \u0627\u0644\u0639\u0631\u0636 :quote", "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", _s26_44, "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "\u0627\u062e\u062a\u064a\u0627\u0631", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "\u0642\u0641\u0644 \u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "\u0639\u0631\u0636 \u0627\u0644\u062c\u062f\u0648\u0644", "show_list", "\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0626\u0645\u0629", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "\u0634\u0627\u0631\u0639 \u0627\u0644\u0639\u0645\u064a\u0644", "client_address2", "\u0634\u0642\u0629/\u062c\u0646\u0627\u062d \u0627\u0644\u0639\u0645\u064a\u0644", "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, "\u0634\u0627\u0631\u0639 \u0627\u0644\u0634\u062d\u0646 \u0644\u0644\u0639\u0645\u064a\u0644", _s24_56, "\u0634\u0642\u0629/\u062c\u0646\u0627\u062d \u0627\u0644\u0634\u062d\u0646 \u0644\u0644\u0639\u0645\u064a\u0644", "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u0642\u064a\u0645\u0629 \u0627\u0644\u062f\u0641\u0639\u0629", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, "\u0645\u0639\u0631\u0641 \u0639\u0645\u0644\u0629 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629", "tax_name1", "\u0627\u0633\u0645 \u0627\u0644\u0636\u0631\u064a\u0628\u0629 1", "tax_name2", "\u0627\u0633\u0645 \u0627\u0644\u0636\u0631\u064a\u0628\u0629 2", "tax_name3", "\u0627\u0633\u0645 \u0627\u0644\u0636\u0631\u064a\u0628\u0629 3", "transaction_id", "\u0645\u0639\u0631\u0641 \u0627\u0644\u0639\u0645\u0644\u064a\u0629", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "bg", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "\u041f\u0440\u0438\u0435\u043c\u0430\u043c", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "default", "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u041e\u0442\u0432\u043e\u0440\u0435\u043d", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043a\u044a\u043c \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", _s17_6, _s17_7, "week", "\u0421\u0435\u0434\u043c\u0438\u0446\u0430", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u0412\u0430\u043b\u0443\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "range", "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "\u0422\u0430\u043a\u0441\u0430\u0442\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 :amount \u0449\u0435 \u0431\u044a\u0434\u0435 :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u041e\u0434\u043e\u0431\u0440\u0435\u043d\u0438\u0435", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0447\u0438\u0441\u0442\u0435\u043d \u043a\u043b\u0438\u0435\u043d\u0442", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u0417\u0430\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434 # :expense", "view_statement", "\u0412\u0438\u0436\u0442\u0435 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u0421\u0438\u0441\u0442\u0435\u043c\u0430", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "\u041e\u0442 - \u0418\u043c\u0435", _s16_21, _s16_231, _s17_13, "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s18_13, "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u0449\u0438 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s21_16, "\u041d\u043e\u0432 \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s22_24, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s25_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s25_3, "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s26_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s25_4, _s21_102, _s25_5, _s38_2, _s26_3, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u0420\u044a\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "\u041d\u0435\u0442\u043e", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u0418\u043c\u043f\u043e\u0440\u0442 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0418\u043c\u0435", _s17_17, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0424\u0430\u043c\u0438\u043b\u0438\u044f", "order", "Order", "unassigned", "\u041d\u0435\u043f\u0440\u0438\u0441\u0432\u043e\u0435\u043d\u0430", "partial_value", "\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 0 \u0438 \u043f\u043e-\u043c\u0430\u043b\u043a\u043e \u043e\u0442 \u043e\u0431\u0449\u0430\u0442\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442.", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0420\u0430\u0437\u0440\u0435\u0448\u0438", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u0417\u0430\u043b\u043e\u0436\u0435\u0442\u0435 subdomain \u0438\u043b\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438\u044f \u0441\u0438 \u0441\u0430\u0439\u0442.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "\u0421\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438", _s16_39, _s16_40, _s17_23, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_23, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_24, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s21_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u043a\u0430\u043d\u0430", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "\u0412\u044a\u0440\u043d\u0430\u0442\u0438", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "\u0421\u043a\u0430\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0430\u0440\u043a\u043e\u0434\u0430 \u0441 :link \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435.", _s18_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0430 Two-Factor Authentication", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "to_update_run", "To update run", _s18_33, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043a\u0430\u0442\u043e \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s16_52, _s16_53, "invoice_project", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "invoice_task", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "invoice_expense", "\u041f\u0440\u0435\u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, "\u041f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d\u0438 \u0441\u044a\u0431\u0438\u0442\u0438\u044f", _s16_58, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u0441\u0443\u043c\u0430", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043a\u0440\u0438\u0439", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u041a\u043e\u043b\u043e\u043d\u0430", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440", "map_to", "Map To", "import", "\u0418\u043c\u043f\u043e\u0440\u0442", _s25_15, _s29_6, "select_file", "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0444\u0430\u0439\u043b", _s16_60, _s16_61, "csv_file", "CSV \u0444\u0430\u0439\u043b", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "\u0412\u0438\u0436 \u043b\u0438\u0446\u0435\u043d\u0437\u0438", "webhook_url", "Webhook URL", _s17_38, "\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d", "sidebar_editor", "\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430", _s22_31, '\u0417\u0430 \u0434\u0430 \u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0438\u0442\u0435, \u043c\u043e\u043b\u044f \u043d\u0430\u043f\u0438\u0448\u0435\u0442\u0435 ":value"', "purge", "\u0418\u0437\u0447\u0438\u0441\u0442\u0435\u0442\u0435", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "\u041a\u043b\u043e\u043d\u0438\u0440\u0430\u0439 \u043a\u044a\u043c", "clone_to_other", "\u041a\u043b\u043e\u043d\u0438\u0440\u0430\u0439 \u043a\u044a\u043c \u043d\u0435\u0449\u043e \u0434\u0440\u0443\u0433\u043e", "labels", "\u0415\u0442\u0438\u043a\u0435\u0442\u0438", "add_custom", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e", "payment_tax", "\u0414\u0430\u043d\u044a\u043a \u0432\u044a\u0440\u0445\u0443 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f\u0442\u0430", "unpaid", "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430", "white_label", "White Label", "delivery_note", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", _s24_23, "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u0441\u0430 \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u0438", _s24_25, "\u041f\u043b\u0430\u0442\u0435\u043d\u0438\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u0441\u0430 \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "\u0417\u0430\u043a\u044a\u0441\u043d\u044f\u043b\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "quote_expired", "\u0418\u0437\u0442\u0435\u043a\u043b\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "partial_due", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u0434\u044a\u043b\u0436\u0438\u043c\u0430", "invoice_total", "\u0422\u043e\u0442\u0430\u043b \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_total", "\u041e\u0431\u0449\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", "credit_total", "\u041e\u0431\u0449 \u043a\u0440\u0435\u0434\u0438\u0442", _s23_14, "\u041e\u0431\u0449\u043e \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "actions", "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", "expense_number", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0430", "task_number", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430", "project_number", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "project_name", "Project Name", "warning", "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435", "view_settings", "\u0412\u0438\u0436 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s24_27, "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0435 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0430", "late_invoice", "\u041a\u044a\u0441\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "expired_quote", "\u0418\u0437\u0442\u0435\u043a\u043b\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "remind_invoice", "\u041d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "cvv", "CVV", "client_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "required_fields", "\u0417\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", "calculated_rate", "\u0418\u0437\u0447\u0438\u0441\u043b\u0435\u043d \u0440\u0435\u0439\u0442", _s17_40, "\u0420\u0435\u0439\u0442 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "clear_cache", "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u043a\u0435\u0448\u0430", "sort_order", "\u041f\u043e\u0434\u0440\u0435\u0434\u0431\u0430", "task_status", "\u0421\u0442\u0430\u0442\u0443\u0441", "task_statuses", "\u0421\u0442\u0430\u0442\u0443\u0441\u0438 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430", "new_task_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u043d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s16_62, "\u0421\u043c\u0435\u043d\u0438 \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430", _s19_26, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s19_27, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_32, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s19_28, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0435 \u0438\u0437\u0442\u0440\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s19_29, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0435 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s20_33, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, "\u0422\u044a\u0440\u0441\u0438 1 \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_35, "\u0422\u044a\u0440\u0441\u0438 :count \u0441\u0442\u0430\u0442\u0443\u0441\u0438 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438", _s16_64, "\u041f\u043e\u043a\u0430\u0436\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430 \u0441\u044a\u0441 \u0437\u0430\u0434\u0430\u0447\u0438", _s21_38, "\u0412\u0438\u043d\u0430\u0433\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u0435\u043a\u0446\u0438\u044f\u0442\u0430 \u0441\u044a\u0441 \u0437\u0430\u0434\u0430\u0447\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s20_36, "\u0413\u0440\u0430\u0444\u0438\u043a \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_16, "\u0414\u043e\u0431\u0430\u0432\u0435\u0442\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u0437\u0430 \u0432\u0440\u0435\u043c\u0435\u0442\u043e \u043a\u044a\u043c \u0440\u0435\u0434\u043e\u0432\u0435\u0442\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, "\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u0438 \u0437\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435", _s18_38, "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "task_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_40, "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", _s18_40, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s20_42, "\u041d\u043e\u0432\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s21_40, "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0442\u0430 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0430", _s24_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s24_29, "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s25_19, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s24_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", _s24_31, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0442\u0430 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0435 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s25_20, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s27_21, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, "\u0422\u044a\u0440\u0441\u0435\u0442\u0435 \u0432 1 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s25_22, "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0432 :count \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435", _s21_42, "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043d\u0430\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043a\u0440\u0435\u0434\u0438\u0442\u0438", "show_option", "\u041f\u043e\u043a\u0430\u0436\u0438 \u043e\u043f\u0446\u0438\u044f", _s22_34, "\u0421\u0443\u043c\u0430\u0442\u0430 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043d\u0430\u0434\u0432\u0438\u0448\u0430\u0432\u0430 \u0441\u0443\u043c\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "view_changes", "\u0412\u0438\u0436 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435", "force_update", "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0439 \u043d\u0430\u0441\u0438\u043b\u0430", _s17_42, "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0430\u0439-\u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f, \u043d\u043e \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u0434\u0430 \u0438\u043c\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0438 \u043f\u043e\u043f\u0440\u0430\u0432\u043a\u0438.", "mark_paid_help", "\u041f\u0440\u043e\u0441\u043b\u0435\u0434\u0435\u0442\u0435, \u0447\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u044a\u0442 \u0435 \u0431\u0438\u043b \u043f\u043b\u0430\u0442\u0435\u043d", _s18_42, "\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0435\u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430", _s23_16, "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435", _s29_7, "\u041d\u0430\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435 \u0432\u0438\u0434\u0438\u043c\u0438", _s21_44, "\u0417\u0430\u0434\u0430\u0439 \u043e\u0431\u043c\u0435\u043d\u0435\u043d \u043a\u0443\u0440\u0441", _s16_66, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s18_43, "\u041a\u043b\u043e\u043d\u0438\u0440\u0430\u0439 \u043a\u044a\u043c \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u043d", "crypto", "\u041a\u0440\u0438\u043f\u0442\u043e", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u043f\u043e\u043b\u0435", "variables", "\u041f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438", "show_password", "\u041f\u043e\u043a\u0430\u0436\u0438 \u043f\u0430\u0440\u043e\u043b\u0430", "hide_password", "\u0421\u043a\u0440\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u0430", "copy_error", "\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435", "capture_card", "\u041f\u0440\u0438\u0445\u0432\u0430\u043d\u0438 \u043a\u0430\u0440\u0442\u0430", _s17_43, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e", "total_taxes", "\u041e\u0431\u0449\u043e \u0434\u0430\u043d\u044a\u0446\u0438", "line_taxes", "\u0414\u0430\u043d\u044a\u0446\u0438 \u043d\u0430 \u0440\u0435\u0434\u043e\u0432\u0435\u0442\u0435", "total_fields", "\u0421\u0443\u043c\u0430\u0440\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", _s25_23, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_24, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_25, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "gateway_refund", "\u041f\u043e\u0440\u0442\u0430\u043b \u0437\u0430 \u0432\u0440\u044a\u0449\u0430\u043d\u0435", _s19_30, "\u0412\u044a\u0440\u043d\u0438 \u0441\u0443\u043c\u0430 \u0447\u0440\u0435\u0437 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b", "due_date_days", "\u041a\u0440\u0430\u0435\u043d \u0441\u0440\u043e\u043a", "paused", "\u041d\u0430 \u043f\u0430\u0443\u0437\u0430", "mark_active", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u0432 \u0430\u0440\u0445\u0438\u0432", "day_count", "\u0414\u0435\u043d :count", _s22_35, "\u041f\u044a\u0440\u0432\u0438 \u0434\u0435\u043d \u043e\u0442 \u043c\u0435\u0441\u0435\u0446\u0430", _s21_45, "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u0434\u0435\u043d \u043d\u0430 \u043c\u0435\u0441\u0435\u0446\u0430", _s17_45, "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "endless", "\u0411\u0435\u0437\u043a\u0440\u0430\u0439\u043d\u0438", "next_send_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", _s16_68, "\u041e\u0441\u0442\u0430\u0432\u0430\u0449\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438", _s17_47, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_45, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s21_47, "\u041d\u043e\u0432\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s22_37, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_26, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_27, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s26_11, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_29, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s26_12, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, "\u0422\u044a\u0440\u0441\u0438 1 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_30, "\u0422\u044a\u0440\u0441\u0438 :count \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "send_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", "auto_bill_on", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043d\u0430", _s28_7, "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430 \u0437\u0430 \u0430\u0432\u0430\u043d\u0441\u043e\u0432\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "profit", "\u041f\u0435\u0447\u0430\u043b\u0431\u0430", "line_item", "\u0420\u0435\u0434", _s18_47, "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043f\u043e-\u0433\u043e\u043b\u044f\u043c\u043e \u043e\u0442 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0441\u0443\u043c\u0430", _s23_17, "\u041f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0439 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043d\u0430\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u0430 \u0441\u0443\u043c\u0430 \u0437\u0430 \u0434\u0430 \u043f\u0440\u0438\u0435\u043c\u0430\u0448 \u0431\u0430\u043a\u0448\u0438\u0448\u0438", _s19_31, "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043f\u043e-\u043c\u0430\u043b\u043a\u043e \u043e\u0442 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0441\u0443\u043c\u0430", _s24_33, "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430/\u0434\u0435\u043f\u043e\u0437\u0438\u0442\u043d\u0430 \u0441\u0443\u043c\u0430", "test_mode", "\u0422\u0435\u0441\u0442\u043e\u0432 \u0440\u0435\u0448\u0438\u043c", "opened", "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0438", _s30_4, "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435", _s30_5, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435", "gateway_success", "\u041f\u043e\u0440\u0442\u0430\u043b - \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "gateway_failure", "\u041f\u043e\u0440\u0442\u0430\u043b - \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e", "gateway_error", "\u041f\u043e\u0440\u0442\u0430\u043b - \u0433\u0440\u0435\u0448\u043a\u0430", "email_send", "\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u0438\u043c\u0435\u0439\u043b", _s17_49, "\u041e\u043f\u0430\u0448\u043a\u0430 \u0437\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0438 \u043e\u043f\u0438\u0442\u0438 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b\u0438", "failure", "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e", "quota_exceeded", "\u041f\u0440\u0435\u0432\u0438\u0448\u0435\u043d\u0430 \u043a\u0432\u043e\u0442\u0430", _s16_70, "\u0413\u0440\u0435\u0448\u043a\u0430 \u043d\u0430\u0433\u043e\u0440\u0435 \u043f\u043e \u0432\u0435\u0440\u0438\u0433\u0430\u0442\u0430", "system_logs", "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438 \u043b\u043e\u0433\u043e\u0432\u0435", "view_portal", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b\u0430", "copy_link", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u043b\u0438\u043d\u043a", "token_billing", "\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043d\u0430 \u043a\u0430\u0440\u0442\u0430\u0442\u0430", _s24_34, "\u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 \u0418\u043d\u0432\u043e\u0439\u0441 \u041d\u0438\u043d\u0434\u0436\u0430", "always", "\u0412\u0438\u043d\u0430\u0433\u0438", "optin", "\u0417\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u0435", "optout", "\u041e\u0442\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u0435", "label", "\u0415\u0442\u0438\u043a\u0435\u0442", "client_number", "\u041a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438 \u043d\u043e\u043c\u0435\u0440", "auto_convert", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0432\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435", "company_name", "\u0418\u043c\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "reminder1_sent", "\u041d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u21161 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u043e", "reminder2_sent", "\u041d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u21162 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u043e", "reminder3_sent", "\u041d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u21163 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u043e", _s18_49, "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u043e", "pdf_page_info", "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 :current \u043e\u0442 :total", _s16_72, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "emailed_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "emailed_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0438", "gateway", "\u041f\u043e\u0440\u0442\u0430\u043b", "view_in_stripe", "\u0412\u0438\u0436 \u0432 \u0421\u0442\u0440\u0430\u0439\u043f", "rows_per_page", "\u0420\u0435\u0434\u043e\u0432\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "hours", "\u0427\u0430\u0441\u043e\u0432\u0435", "statement", "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435", "taxes", "\u0414\u0430\u043d\u044a\u0446\u0438", "surcharge", "\u0414\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435", "apply_payment", "\u041f\u0440\u0438\u043b\u043e\u0436\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "apply_credit", "\u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "apply", "\u041f\u0440\u0438\u043b\u043e\u0436\u0438", "unapplied", "\u041d\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438", "select_label", "\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u0435\u0442\u0438\u043a\u0435\u0442", "custom_labels", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0435\u0442\u0438\u043a\u0435\u0442\u0438", "record_type", "\u0422\u0438\u043f \u0437\u0430\u043f\u0438\u0441", "record_name", "\u0418\u043c\u0435 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441", "file_type", "\u0424\u0430\u0439\u043b\u043e\u0432 \u0442\u0438\u043f", "height", "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430", "width", "\u0428\u0438\u0440\u043e\u0447\u0438\u043d\u0430", "to", "\u0414\u043e", "health_check", "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "payment_type_id", "\u041d\u0430\u0447\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "last_login_at", "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u043b\u043e\u0433\u0438\u043d \u0432", "company_key", "\u041a\u043b\u044e\u0447 \u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u0442\u0430", "storefront", "\u0420\u0435\u0436\u0438\u043c \u043d\u0430 \u043c\u0430\u0433\u0430\u0437\u0438\u043d", "storefront_help", "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0442\u0440\u0435\u0442\u0438 \u0441\u0442\u0440\u0430\u043d\u0438 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "client_created", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043a\u043b\u0438\u0435\u043d\u0442", _s20_45, "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u043e\u043d\u043b\u0430\u0439\u043d \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_47, "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0440\u044a\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "completed", "\u0417\u0430\u0432\u044a\u0440\u0448\u0435\u043d", "gross", "\u0411\u0440\u0443\u0442\u043e", "net_amount", "\u041d\u0435\u0442\u043d\u0430 \u0441\u0443\u043c\u0430", "net_balance", "\u041d\u0435\u0442\u0435\u043d \u0431\u0430\u043b\u0430\u043d\u0441", "client_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s17_51, "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_53, "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "selected_quotes", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "selected_tasks", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438", _s17_55, "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s17_57, "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_59, "\u041f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "recent_payments", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "upcoming_quotes", "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "expired_quotes", "\u0418\u0437\u0442\u0435\u043a\u043b\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "create_client", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "create_invoice", "\u0421\u044a\u0437\u0434\u0430\u0439 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "create_quote", "\u0421\u044a\u0437\u0434\u0430\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "create_payment", "\u0421\u044a\u0437\u0434\u0430\u0439 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "create_vendor", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "update_quote", "\u041e\u0431\u043d\u043e\u0432\u0438 \u043e\u0444\u0435\u0440\u0442\u0430", "delete_quote", "\u0418\u0437\u0442\u0440\u0438\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "update_invoice", "\u041e\u0431\u043d\u043e\u0432\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "delete_invoice", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "update_client", "\u041e\u0431\u043d\u043e\u0432\u0438 \u043a\u043b\u0438\u0435\u043d\u0442", "delete_client", "\u0418\u0437\u0442\u0440\u0438\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "delete_payment", "\u0418\u0437\u0442\u0440\u0438\u0439 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "update_vendor", "\u041e\u0431\u043d\u043e\u0432\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "delete_vendor", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "create_expense", "\u0421\u044a\u0437\u0434\u0430\u0439 \u0440\u0430\u0437\u0445\u043e\u0434", "update_expense", "\u041e\u0431\u043d\u043e\u0432\u0438 \u0440\u0430\u0437\u0445\u043e\u0434", "delete_expense", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "create_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "update_task", "\u041e\u0431\u043d\u043e\u0432\u0438 \u0437\u0430\u0434\u0430\u0447\u0430", "delete_task", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "approve_quote", "\u041e\u0434\u043e\u0431\u0440\u0438 \u043e\u0444\u0435\u0440\u0442\u0430", "off", "\u0418\u0437\u043a\u043b.", "when_paid", "\u041a\u043e\u0433\u0430\u0442\u043e \u0435 \u043f\u043b\u0430\u0442\u0435\u043d\u0430", "expires_on", "\u0418\u0437\u0442\u0438\u0447\u0430 \u043d\u0430", "free", "\u0411\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "\u041f\u043b\u0430\u043d", "show_sidebar", "\u041f\u043e\u043a\u0430\u0436\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u043e \u043c\u0435\u043d\u044e", "hide_sidebar", "\u0421\u043a\u0440\u0438\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u043e\u0442\u043e \u043c\u0435\u043d\u044e", "event_type", "\u0422\u0438\u043f \u0441\u044a\u0431\u0438\u0442\u0438\u0435", "target_url", "Target", "copy", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439", "must_be_online", "\u041c\u043e\u043b\u044f, \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e, \u043a\u043e\u0433\u0430\u0442\u043e \u0441\u0435 \u0441\u0432\u044a\u0440\u0436\u0435\u0442\u0435 \u043a\u044a\u043c \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442", _s17_61, "Cron \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "api_webhooks", "API webhooks", "search_webhooks", "\u0422\u044a\u0440\u0441\u0438 :count webhook-\u043e\u0432\u0435", "search_webhook", "\u0422\u044a\u0440\u0441\u0438 1 webhook", "webhook", "Webhook", "webhooks", "Webhook-\u043e\u0432\u0435", "new_webhook", "\u041d\u043e\u0432 Webhook", "edit_webhook", "\u041f\u0440\u043e\u043c\u0435\u043d\u0438 Webhook", "created_webhook", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d webhook", "updated_webhook", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d webhook", _s16_74, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d webhook", "deleted_webhook", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 webhook", "removed_webhook", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 webhook", _s16_75, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d webhook", _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API \u0442\u043e\u043a\u044a\u043d\u0438", "api_docs", "API Docs", "search_tokens", "\u0422\u044a\u0440\u0441\u0438 :count \u0442\u043e\u043a\u0435\u043d\u0438", "search_token", "\u0422\u044a\u0440\u0441\u0438 1 \u0442\u043e\u043a\u0435\u043d", "token", "\u0422\u043e\u043a\u044a\u043d", "tokens", "\u0422\u043e\u043a\u044a\u043d\u0438", "new_token", "\u041d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d", "edit_token", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0442\u043e\u043a\u044a\u043d", "created_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0442\u043e\u043a\u044a\u043d", "updated_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0442\u043e\u043a\u044a\u043d", "archived_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0442\u043e\u043a\u0435\u043d", "deleted_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0442\u043e\u043a\u044a\u043d", "removed_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u0442\u043e\u043a\u0435\u043d", "restored_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u0442\u043e\u043a\u0435\u043d", "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s24_36, "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435 \u0434\u0430 \u043f\u0440\u0430\u0432\u044f\u0442 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0432 \u043f\u043e\u0440\u0442\u0430\u043b\u0430", _s21_49, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0439 & \u0432\u0438\u0436", "email_invoice", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "email_quote", "\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "email_credit", "\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "email_payment", _s16_240, _s20_50, "\u041a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u043d\u044f\u043c\u0430 \u0437\u0430\u0434\u0430\u0434\u0435\u043d \u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441", "ledger", "\u041b\u0435\u0434\u0436\u044a\u0440", "view_pdf", "\u0412\u0438\u0436 PDF", "all_records", "\u0412\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", "owned_by_user", "\u041f\u0440\u0438\u0442\u0435\u0436\u0430\u0432\u0430\u043d\u0438 \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f", _s16_78, "\u041e\u0441\u0442\u0430\u0442\u044a\u0447\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "contact_name", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0438\u043c\u0435", "use_default", "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", _s16_80, "\u0411\u0435\u0437\u043a\u0440\u0430\u0439\u043d\u0438 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f", "number_of_days", "\u0411\u0440\u043e\u0439 \u0434\u043d\u0438", _s23_19, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_term", "\u0423\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_81, "\u041d\u043e\u0432\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_65, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_51, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_52, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_50, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_53, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_54, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_51, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "\u0412\u043b\u0435\u0437 \u0441 \u0438\u043c\u0435\u0439\u043b", "change", "\u041f\u0440\u043e\u043c\u0435\u043d\u0438", _s23_21, "\u0421\u043c\u0435\u043d\u0438 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c?", _s24_37, "\u0421\u043c\u0435\u043d\u0438 \u043d\u0430 \u0434\u0435\u0441\u043a\u0442\u043e\u043f \u0440\u0435\u0436\u0438\u043c?", "send_from_gmail", "\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u043e\u0442 Gmail", "reversed", "\u0421\u0442\u043e\u0440\u043d\u0438\u0440\u0430\u043d\u0430", "cancelled", "\u0410\u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0430", "credit_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "quote_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "hosted", "\u0425\u043e\u0441\u0442\u043d\u0430\u0442", "selfhosted", "\u0421\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u043d\u043e \u0445\u043e\u0441\u0442\u043d\u0430\u0442", "exclusive", "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "inclusive", "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "hide_menu", "\u0421\u043a\u0440\u0438\u0439 \u043c\u0435\u043d\u044e\u0442\u043e", "show_menu", "\u041f\u043e\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u044e", _s18_51, "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e", _s16_83, "\u0422\u044a\u0440\u0441\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "search_designs", "\u0422\u044a\u0440\u0441\u0438 \u0434\u0438\u0437\u0430\u0439\u043d\u0438", "search_invoices", "\u0422\u044a\u0440\u0441\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "search_clients", "\u0422\u044a\u0440\u0441\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "search_products", "\u0422\u044a\u0440\u0441\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "search_quotes", "\u0422\u044a\u0440\u0441\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "search_credits", "\u0422\u044a\u0440\u0441\u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u0438", "search_vendors", "\u0422\u044a\u0440\u0441\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", "search_users", "\u0422\u044a\u0440\u0441\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", _s16_84, "\u0422\u044a\u0440\u0441\u0438 \u0434\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", "search_tasks", "\u0422\u044a\u0440\u0441\u0438 \u0437\u0430\u0434\u0430\u0447\u0438", "search_settings", "\u0422\u044a\u0440\u0441\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "search_projects", "\u0422\u044a\u0440\u0441\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438", "search_expenses", "\u0422\u044a\u0440\u0441\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", "search_payments", "\u0422\u044a\u0440\u0441\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "search_groups", "\u0422\u044a\u0440\u0441\u0438 \u0433\u0440\u0443\u043f\u0438", "search_company", "\u0422\u044a\u0440\u0441\u0438 \u0432 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "search_document", "\u0422\u044a\u0440\u0441\u0438 1 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "search_design", "\u0422\u044a\u0440\u0441\u0438 1 \u0434\u0438\u0437\u0430\u0439\u043d", "search_invoice", "\u0422\u044a\u0440\u0441\u0438 1 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "search_client", "\u0422\u044a\u0440\u0441\u0438 1 \u043a\u043b\u0438\u0435\u043d\u0442", "search_product", "\u0422\u044a\u0440\u0441\u0438 1 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "search_quote", "\u0422\u044a\u0440\u0441\u0438 1 \u043e\u0444\u0435\u0440\u0442\u0430", "search_credit", "\u0422\u044a\u0440\u0441\u0438 1 \u043a\u0440\u0435\u0434\u0438\u0442", "search_vendor", "\u0422\u044a\u0440\u0441\u0438 1 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "search_user", "\u0422\u044a\u0440\u0441\u0438 1 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "search_tax_rate", "\u0422\u044a\u0440\u0441\u0438 1 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", "search_task", "\u0422\u044a\u0440\u0441\u0438 1 \u0437\u0430\u0434\u0430\u0447\u0430", "search_project", "\u0422\u044a\u0440\u0441\u0438 1 \u043f\u0440\u043e\u0435\u043a\u0442", "search_expense", "\u0422\u044a\u0440\u0441\u0438 1 \u0440\u0430\u0437\u0445\u043e\u0434", "search_payment", "\u0422\u044a\u0440\u0441\u0438 1 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "search_group", "\u0422\u044a\u0440\u0441\u0438 1 \u0433\u0440\u0443\u043f\u0430", "refund_payment", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_69, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_53, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s16_90, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0442\u043e\u0440\u043d\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_70, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0442\u043e\u0440\u043d\u0438\u0440\u0430\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "reverse", "\u0421\u0442\u043e\u0440\u043d\u0438\u0440\u0430\u0439", "full_name", "\u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435", _s17_71, "\u0413\u0440\u0430\u0434 / \u0429\u0430\u0442 / \u041f\u043e\u0449. \u043a\u043e\u0434", _s17_73, "\u041f\u043e\u0449. \u043a\u043e\u0434 / \u0429\u0430\u0442 / \u0413\u0440\u0430\u0434", "custom1", "\u041f\u044a\u0440\u0432\u0430 \u043a\u043e\u043b\u043e\u043d\u0430", "custom2", "\u0412\u0442\u043e\u0440\u0430 \u043a\u043e\u043b\u043e\u043d\u0430", "custom3", _s21_103, "custom4", "\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "optional", "\u041f\u043e \u0438\u0437\u0431\u043e\u0440", "license", "\u041b\u0438\u0446\u0435\u043d\u0437", "purge_data", "\u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", _s16_91, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0447\u0438\u0441\u0442\u0435\u043d\u0438 \u0444\u0438\u0440\u043c\u0435\u043d\u0438 \u0434\u0430\u043d\u043d\u0438", _s18_54, "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0431\u0435\u0437 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435.", "invoice_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "age_group_0", "0 - 30 \u0434\u043d\u0438", "age_group_30", "30 - 60 \u0434\u043d\u0438", "age_group_60", "60 - 90 \u0434\u043d\u0438", "age_group_90", "90 - 120 \u0434\u043d\u0438", "age_group_120", "120+ \u0434\u043d\u0438", "refresh", "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435", "saved_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u043f\u0430\u0437\u0435\u043d \u0434\u0438\u0437\u0430\u0439\u043d", "client_details", "\u0414\u0430\u043d\u043d\u0438 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "company_address", "\u0410\u0434\u0440\u0435\u0441 \u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u0442\u0430", "invoice_details", "\u0414\u0435\u0442\u0430\u0439\u043b\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "quote_details", "\u0414\u0430\u043d\u043d\u0438 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", "credit_details", "\u0414\u0430\u043d\u043d\u0438 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "product_columns", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0438 \u043a\u043e\u043b\u043e\u043d\u0438", "task_columns", "\u041a\u043e\u043b\u043e\u043d\u0438 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "add_field", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043f\u043e\u043b\u0435", "all_events", "\u0412\u0441\u0438\u0447\u043a\u0438 \u0441\u044a\u0431\u0438\u0442\u0438\u044f", "permissions", "\u041f\u0440\u0430\u0432\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f", "none", "\u041d\u044f\u043c\u0430", "owned", "\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d", "payment_success", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_failure", "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "invoice_sent", ":count \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_sent", "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "credit_sent", "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "invoice_viewed", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_viewed", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "credit_viewed", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "quote_approved", "\u041e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s25_32, "\u041f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u0439 \u0432\u0441\u0438\u0447\u043a\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u044f", _s16_92, "\u041a\u0443\u043f\u0438 \u043b\u0438\u0446\u0435\u043d\u0437", "apply_license", "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043b\u0438\u0446\u0435\u043d\u0437", "cancel_account", "\u0418\u0437\u0442\u0440\u0438\u0439 \u041f\u0440\u043e\u0444\u0438\u043b", _s22_44, "\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: \u0422\u043e\u0432\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0432\u0430\u0448\u0438\u044f\u0442 \u043f\u0440\u043e\u0444\u0438\u043b \u0438 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0432 \u043d\u0435\u0433\u043e. \u0421\u043b\u0435\u0434 \u0442\u043e\u0432\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043d\u044f\u043c\u0430 \u043a\u0430\u043a \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0438.", "delete_company", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", _s22_45, "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0444\u0438\u0440\u043c\u0430\u0442\u0430\u0412\u0438 \u0431\u0435\u0437 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435.", "enabled_modules", "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u043c\u043e\u0434\u0443\u043b\u0438", "converted_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "credit_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "includes", "\u0421\u044a\u0434\u044a\u0440\u0436\u0430", "header", "\u0425\u0435\u0434\u044a\u0440", "load_design", "\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d", "css_framework", "CSS framework", "custom_designs", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0434\u0438\u0437\u0430\u0439\u043d\u0438", "designs", "\u0414\u0438\u0437\u0430\u0439\u043d\u0438", "new_design", "\u041d\u043e\u0432 \u0434\u0438\u0437\u0430\u0439\u043d", "edit_design", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0434\u0438\u0437\u0430\u0439\u043d", "created_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0434\u0438\u0437\u0430\u0439\u043d", "updated_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u0434\u0438\u0437\u0430\u0439\u043d", "archived_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0434\u0438\u0437\u0430\u0439\u043d", "deleted_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0434\u0438\u0437\u0430\u0439\u043d", "removed_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u0434\u0438\u0437\u0430\u0439\u043d", "restored_design", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u0434\u0438\u0437\u0430\u0439\u043d", _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "tickets", "Tickets", _s16_96, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u041e\u0444\u0435\u0440\u0442\u0438", "recurring_tasks", "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438", _s18_55, "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0430\u043a\u0430\u0443\u043d\u0442\u0438\u0442\u0435", "credit_date", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u0414\u0430\u0442\u0430", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u0438", "new_credit", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "created_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "updated_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "archived_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "deleted_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043a\u0440\u0435\u0434\u0438\u0442", "removed_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u043a\u0440\u0435\u0434\u0438\u0442", "restored_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", _s16_98, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s16_99, _s36_9, "current_version", "\u0422\u0435\u043a\u0443\u0449\u0430 \u0432\u0435\u0440\u0441\u0438\u044f", "latest_version", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f", "update_now", "\u042a\u043f\u0434\u0435\u0439\u0442\u043d\u0438", _s26_19, "\u041d\u0430\u043b\u0438\u0447\u043d\u0430 \u0435 \u043d\u043e\u0432\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 \u0443\u0435\u0431 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e", _s16_100, "\u0418\u043c\u0430 \u044a\u043f\u0434\u0435\u0439\u0442", "app_updated", "\u042a\u043f\u0434\u0435\u0439\u0442\u044a\u0442 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "learn_more", "\u041d\u0430\u0443\u0447\u0438 \u043f\u043e\u0432\u0435\u0447\u0435", "integrations", "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438", "tracking_id", "ID \u0437\u0430 \u043f\u0440\u043e\u0441\u043b\u0435\u0434\u044f\u0432\u0430\u043d\u0435", _s17_75, "Slack webhook URL", "credit_footer", "\u0424\u0443\u0442\u044a\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "credit_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "new_company", "\u041d\u043e\u0432\u0430 \u0444\u0438\u0440\u043c\u0430", "added_company", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "company1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 1", "company2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 2", "company3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 3", "company4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 4", "product1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 1", "product2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 2", "product3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 3", "product4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 4", "client1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 1", "client2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 2", "client3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 3", "client4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 4", "contact1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 1", "contact2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 2", "contact3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 3", "contact4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 4", "task1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 1", "task2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 2", "task3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 3", "task4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 4", "project1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 1", "project2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 2", "project3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 3", "project4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 4", "expense1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 1", "expense2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 2", "expense3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 3", "expense4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 4", "vendor1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 1", "vendor2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 2", "vendor3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 3", "vendor4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 4", "invoice1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 1", "invoice2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 2", "invoice3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 3", "invoice4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 4", "payment1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 1", "payment2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 2", "payment3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 3", "payment4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 4", "surcharge1", _s27_63, "surcharge2", _s27_64, "surcharge3", _s27_65, "surcharge4", _s27_66, "group1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 1", "group2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 2", "group3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 3", "group4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 4", "reset", "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435", "number", "\u041d\u043e\u043c\u0435\u0440", "export", "\u0415\u043a\u0441\u043f\u043e\u0440\u0442", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a\u0430", "count", "\u0411\u0440\u043e\u0439", "totals", "\u041e\u0431\u0449\u0438 \u0441\u0443\u043c\u0438", "blank", "\u041f\u0440\u0430\u0437\u043d\u043e", "day", "\u0414\u0435\u043d", "month", "\u041c\u0435\u0441\u0435\u0446", "year", "\u0413\u043e\u0434\u0438\u043d\u0430", "subgroup", "\u041f\u043e\u0434\u0433\u0440\u0443\u043f\u0430", "is_active", "\u0415 \u0430\u043a\u0442\u0438\u0432\u0435\u043d", "group_by", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0435 \u043f\u043e", "credit_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s18_61, "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0432\u043b\u0438\u0437\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430", _s17_77, "\u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430", "contact_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430", _s21_53, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 1", _s21_54, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 2", _s21_55, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 3", _s21_56, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 4", _s17_79, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0423\u043b\u0438\u0446\u0430", _s17_80, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0410\u043f.", "shipping_city", "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0413\u0440\u0430\u0434", "shipping_state", "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0429\u0430\u0442/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u044f", _s20_55, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u041f\u043e\u0449. \u043a\u043e\u0434", _s16_130, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0414\u044a\u0440\u0436\u0430\u0432\u0430", _s16_132, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0423\u043b\u0438\u0446\u0430", _s16_133, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0410\u043f.", "billing_city", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0413\u0440\u0430\u0434", "billing_state", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0429\u0430\u0442/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u044f", _s19_36, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u041f\u043e\u0449. \u043a\u043e\u0434", "billing_country", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0414\u044a\u0440\u0436\u0430\u0432\u0430", "client_id", "Client Id", "assigned_to", "\u041f\u0440\u0438\u0441\u0432\u043e\u0435\u043d \u043d\u0430", "created_by", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043e\u0442 :name", "assigned_to_id", "\u041f\u0440\u0438\u0441\u0432\u043e\u0435\u043d \u043d\u0430 Id", "created_by_id", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043e\u0442 Id", "add_column", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043a\u043e\u043b\u043e\u043d\u0430", "edit_columns", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043a\u043e\u043b\u043e\u043d\u0438", "columns", "\u041a\u043e\u043b\u043e\u043d\u0438", "aging", "\u041f\u043e \u0434\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435", "profit_and_loss", "\u041f\u0435\u0447\u0430\u043b\u0431\u0430 \u0438 \u0437\u0430\u0433\u0443\u0431\u0430", "reports", "\u0421\u043f\u0440\u0430\u0432\u043a\u0438", "report", "\u0421\u043f\u0440\u0430\u0432\u043a\u0430", "add_company", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "unpaid_invoice", _s17_137, "paid_invoice", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_134, "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "help", "\u041f\u043e\u043c\u043e\u0449", "refund", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", "refund_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0432\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", "filtered_by", "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e", "contact_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430", "multiselect", "\u041c\u0443\u043b\u0442\u0438\u0441\u0435\u043b\u0435\u043a\u0446\u0438\u044f", "entity_state", "\u0429\u0430\u0442", "verify_password", "\u041f\u043e\u0442\u0432\u044a\u0440\u0434\u0438 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430", "applied", "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u043e", _s21_57, "\u0412\u043a\u043b\u044e\u0447\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0433\u0440\u0435\u0448\u043a\u0438 \u043e\u0442 \u043b\u043e\u0433\u043e\u0432\u0435\u0442\u0435", _s30_8, "\u041d\u0438\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0445\u043c\u0435 \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435\u0442\u043e \u0412\u0438 \u0438 \u0449\u0435 \u0441\u0435 \u043e\u043f\u0438\u0442\u0430\u043c\u0435 \u0434\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u043c \u043d\u0435\u0437\u0430\u0431\u0430\u0432\u043d\u043e.", "message", "\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "from", "\u041e\u0442", _s20_57, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0442\u0430\u0439\u043b\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s25_34, "\u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0446\u0435\u043d\u0430\u0442\u0430 \u0432 \u043f\u0430\u0434\u0430\u0449\u043e\u0442\u043e \u043c\u0435\u043d\u044e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s20_59, "PDF \u0440\u0435\u043d\u0434\u0435\u0440-\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 :version", _s18_64, "\u041d\u0430\u0441\u0442\u043e\u0439\u043a\u0430 \u043d\u0430 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0442\u0430\u043a\u0441\u0430\u0442\u0430", _s23_23, _s33_24, _s18_66, "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435", "support_forum", "\u0424\u043e\u0440\u0443\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430", "about", "\u0417\u0430", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "contact_us", "\u0421\u0432\u044a\u0440\u0436\u0435\u0442\u0435 \u0441\u0435 \u0441 \u043d\u0430\u0441", "subtotal", "\u0421\u0443\u0431\u0442\u043e\u0442\u0430\u043b", "line_total", "\u041e\u0431\u0449\u0430 \u0446\u0435\u043d\u0430", "item", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "credit_email", "\u041a\u0440\u0435\u0434\u0438\u0442\u0435\u043d \u0435-\u043c\u0435\u0439\u043b", "iframe_url", "\u0421\u0430\u0439\u0442", "domain_url", "\u0414\u043e\u043c\u0435\u0439\u043d \u0430\u0434\u0440\u0435\u0441", _s21_58, "\u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u0435 \u0442\u0432\u044a\u0440\u0434\u0435 \u043a\u0440\u0430\u0442\u043a\u0430", _s20_60, "\u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0433\u043b\u0430\u0432\u043d\u0430 \u0431\u0443\u043a\u0432\u0430 \u0438 \u0446\u0438\u0444\u0440\u0430", _s19_38, "\u0417\u0430\u0434\u0430\u0447\u0438 \u043e\u0442 \u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b", _s23_24, "\u0422\u0430\u0431\u043b\u043e \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b", _s20_61, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "deleted_logo", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u043b\u043e\u0433\u043e", "yes", "\u0414\u0430", "no", "\u041d\u0435", "generate_number", "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u0439 \u043d\u043e\u043c\u0435\u0440", "when_saved", "\u0435 \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0430", "when_sent", "\u0435 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", "select_company", "\u0418\u0437\u0431\u0435\u0440\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "float", "\u041f\u043b\u0430\u0432\u0430\u0449", "collapse", "\u0421\u044a\u0431\u0435\u0440\u0438", "show_or_hide", "\u041f\u043e\u043a\u0430\u0436\u0438/\u0421\u043a\u0440\u0438\u0439", "menu_sidebar", "\u041c\u0435\u043d\u044e \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430", "history_sidebar", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430", "tablet", "\u0422\u0430\u0431\u043b\u0435\u0442", "mobile", "\u041c\u043e\u0431\u0438\u043b\u043d\u043e", "desktop", "\u0414\u0435\u0441\u043a\u0442\u043e\u043f", "layout", "\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435", "view", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "module", "\u041c\u043e\u0434\u0443\u043b", "first_custom", "\u041f\u044a\u0440\u0432\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "second_custom", "\u0412\u0442\u043e\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "third_custom", _s21_103, "show_cost", "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0446\u0435\u043d\u0430", _s17_82, _s17_83, "show_cost_help", "\u041f\u043e\u043a\u0430\u0436\u0438 \u0446\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0442\u043e \u043f\u043e\u043b\u0435 \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u0441\u043b\u0435\u0434\u0438\u0448 \u043f\u0435\u0447\u0430\u043b\u0431\u0430\u0442\u0430", _s21_59, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0430\u0442\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442", _s26_21, "\u041f\u043e\u043a\u0430\u0436\u0438 \u043f\u043e\u043b\u0435\u0442\u043e \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430, \u0438\u043b\u0438 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0442\u043e \u043f\u043e\u043b\u0435", _s21_61, "\u041f\u043e\u043a\u0430\u0436\u0438 \u0431\u0440\u043e\u044f\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435", _s26_22, "\u041f\u043e\u043a\u0430\u0436\u0438 \u0440\u0435\u0434\u0430 \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442, \u0438\u043b\u0438 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0440\u0435\u0434", _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, "\u041d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", _s21_65, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f\u0442\u0430 \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u0434\u043d\u043e", "one_tax_rate", "\u0415\u0434\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", "two_tax_rates", "\u0414\u0432\u0435 \u0434\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", "three_tax_rates", "\u0422\u0440\u0438 \u0434\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", _s16_138, "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "user", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "invoice_tax", "\u0422\u0430\u043a\u0441\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "line_item_tax", "\u0414\u0430\u043d\u044a\u043a \u0432\u044a\u0440\u0445\u0443 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0435\u043d\u0430\u0442\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430", "inclusive_taxes", "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u0442\u0430\u043a\u0441\u0438", _s17_84, "\u0414\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "item_tax_rates", "\u0414\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", _s18_68, "\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", "configure_rates", "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0440\u0438\u0444\u0438\u0442\u0435", _s18_69, "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Gateways", "tax_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u0434\u0430\u043d\u044a\u043a", _s18_71, _s16_241, "accent_color", "\u0410\u043a\u0446\u0435\u043d\u0442\u0435\u043d \u0446\u0432\u044f\u0442", "switch", "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435", _s19_40, "\u041b\u0438\u0441\u0442 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d \u0441\u044a\u0441 \u0437\u0430\u043f\u0435\u0442\u0430\u0438", "options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s16_140, "\u0415\u0434\u043d\u043e\u0440\u0435\u0434\u043e\u0432 \u0442\u0435\u043a\u0441\u0442", "multi_line_text", "\u041c\u043d\u043e\u0433\u043e\u0440\u0435\u0434\u043e\u0432 \u0442\u0435\u043a\u0441\u0442", "dropdown", "\u041f\u0430\u0434\u0430\u0449\u043e \u043c\u0435\u043d\u044e", "field_type", "\u0412\u0438\u0434 \u043f\u043e\u043b\u0435", _s27_35, "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0435 e-mail \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "submit", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", _s16_142, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "late_fees", "\u0417\u0430\u043a\u044a\u0441\u043d\u0435\u043b\u0438 \u0422\u0430\u043a\u0441\u0438", "credit_number", "\u041a\u0440\u0435\u0434\u0438\u0442 \u043d\u043e\u043c\u0435\u0440", "payment_number", _s16_242, "late_fee_amount", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u044a\u0441\u043d\u0435\u043d\u0438\u0435", _s16_143, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u044a\u0441\u043d\u0435\u043d\u0438\u0435", "schedule", "\u0413\u0440\u0430\u0444\u0438\u043a", "before_due_date", "\u041f\u0440\u0435\u0434\u0438 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0434\u0430\u0442\u0430", "after_due_date", "\u0421\u043b\u0435\u0434 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0434\u0430\u0442\u0430", _s18_73, "\u0421\u043b\u0435\u0434 \u0434\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "days", "\u0414\u043d\u0438", "invoice_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "payment_email", _s16_240, "partial_payment", _s16_243, "payment_partial", _s16_243, _s21_66, "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0447\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "quote_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s16_145, "\u0411\u0435\u0437\u043a\u0440\u0430\u0439\u043d\u043e \u043f\u043e\u0434\u0441\u0435\u0449\u0430\u043d\u0435", _s16_147, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "administrator", "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440", _s18_74, "\u0414\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u044f \u043d\u0430\u0441\u0442\u043e\u0439\u043a\u0438 \u0438 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", "user_management", "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435", "users", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "new_user", "\u041d\u043e\u0432 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "edit_user", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "created_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "updated_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "archived_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "deleted_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "removed_user", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0435 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "restored_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u041e\u0431\u0449\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "invoice_options", "\u041e\u043f\u0446\u0438\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s17_86, '\u0421\u043a\u0440\u0438\u0439 "\u0418\u0437\u043f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430"', _s22_52, '\u041f\u043e\u043a\u0430\u0436\u0438 "\u0418\u0437\u043f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430" \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435, \u0441\u043b\u0435\u0434 \u043a\u0430\u0442\u043e \u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435.', _s23_26, "\u0421\u0432\u044a\u0440\u0437\u0430\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", _s28_20, "\u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s16_151, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0435\u0434\u044a\u0440\u0430 \u043d\u0430", _s16_152, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0443\u0442\u044a\u0440\u0430 \u043d\u0430", "first_page", "\u041f\u044a\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "all_pages", "\u0412\u0441\u0438\u0447\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438", "last_page", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "primary_font", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0428\u0440\u0438\u0444\u0442", "secondary_font", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u0428\u0440\u0438\u0444\u0442", "primary_color", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0446\u0432\u044f\u0442", "secondary_color", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u0446\u0432\u044f\u0442", "page_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430", "font_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", "quote_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "invoice_fields", "\u041f\u043e\u043b\u0435\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "product_fields", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_footer", "\u0424\u0443\u0442\u044a\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "quote_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "quote_footer", "\u0424\u0443\u0442\u044a\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s18_75, "Auto Email", _s23_27, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043f\u0440\u0438 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c", _s18_76, "Auto Archive", _s23_28, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0438 \u043f\u0440\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u0438\u043c", _s18_77, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435", _s23_29, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438\u0435 \u043e\u0442 \u043a\u043b\u0438\u0435\u043d\u0442\u0430.", _s17_88, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441", "freq_daily", "\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e", "freq_weekly", "\u0421\u0435\u0434\u043c\u0438\u0447\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u0441\u0435\u0434\u043c\u0438\u0446\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u0438\u0440\u0438 \u0441\u0435\u0434\u043c\u0438\u0446\u0438", "freq_monthly", "\u041c\u0435\u0441\u0435\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u0435\u0446\u0430", _s17_90, "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430", _s16_153, "\u0427\u0435\u0442\u0438\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430", "freq_six_months", "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0430", "freq_annually", "\u0413\u043e\u0434\u0438\u0448\u043d\u043e", "freq_two_years", "\u041d\u0430 \u0434\u0432\u0435 \u0433\u043e\u0434\u0438\u043d\u0438", _s16_154, "\u0422\u0440\u0438 \u0433\u043e\u0434\u0438\u043d\u0438", "never", "\u041d\u0438\u043a\u043e\u0433\u0430", "company", "\u0424\u0438\u0440\u043c\u0430", _s17_91, "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0438 \u043d\u043e\u043c\u0435\u0440\u0430", "charge_taxes", "\u041d\u0430\u0447\u0438\u0441\u043b\u0438 \u0434\u0430\u043d\u044a\u0446\u0438", "next_reset", "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u043e \u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0435", "reset_counter", "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0440\u043e\u044f\u0447", _s16_155, "\u041f\u0440\u0435\u0444\u0438\u043a\u0441 \u0437\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "number_padding", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0442\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "general", "\u041e\u0431\u0449", "surcharge_field", "\u0415\u0442\u0438\u043a\u0435\u0442 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "company_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0424\u0438\u0440\u043c\u0430\u0442\u0430", "company_value", "\u0424\u0438\u0440\u043c\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "credit_field", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u043e \u043f\u043e\u043b\u0435", "invoice_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s17_93, "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0430 \u0442\u0430\u043a\u0441\u0430 \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "client_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "product_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", "payment_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "contact_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "vendor_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a\u0430", "expense_field", "\u041f\u043e\u043b\u0435 \u0420\u0430\u0437\u0445\u043e\u0434", "project_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "task_field", "\u041f\u043e\u043b\u0435 \u0417\u0430\u0434\u0430\u0447\u0430", "group_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0433\u0440\u0443\u043f\u0430", "number_counter", "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440\u0430", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "\u041c\u043e\u0434\u0435\u043b \u043d\u043e\u043c\u0435\u0440", "messages", "\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u044f", "custom_css", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d CSS", _s17_95, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d JavaScript", _s16_157, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u0432 PDF \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", _s21_68, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043f\u0438\u0441\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0432 PDF \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 / \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430.", _s25_40, "\u0427\u0435\u043a-\u0431\u043e\u043a\u0441 \u0437\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_9, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u044a\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u043f\u0440\u0438\u0435\u043c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s23_30, "\u0427\u0435\u043a-\u0431\u043e\u043a\u0441 \u0437\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s28_21, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u044a\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u043f\u0440\u0438\u0435\u043c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s25_41, "\u041f\u043e\u0434\u043f\u0438\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s30_10, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u043f\u043e\u0434\u043f\u0438\u0448\u0435", _s23_31, "\u041f\u043e\u0434\u043f\u0438\u0441 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s22_54, "\u0417\u0430\u0449\u0438\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u0441 \u043f\u0430\u0440\u043e\u043b\u0430", _s27_36, "\u0414\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0437\u0430\u043b\u043e\u0436\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u0430 \u0437\u0430 \u0432\u0441\u0435\u043a\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442. \u0410\u043a\u043e \u0442\u0430\u043a\u0430\u0432\u0430 \u0435 \u0437\u0430\u043b\u043e\u0436\u0435\u043d\u0430, \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0442\u043e \u043b\u0438\u0446\u0435 \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u044f \u0432\u044a\u0432\u0435\u0434\u0435 \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u0432\u0438\u0434\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435,", "authorization", "\u041e\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f", "subdomain", "Subdomain", "domain", "\u0414\u043e\u043c\u0435\u0439\u043d", "portal_mode", "\u041f\u043e\u0440\u0442\u0430\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c", "email_signature", "\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u0438,", _s24_38, "\u041d\u0430\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u043f\u043b\u0430\u0449\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u0412\u0430\u0441 \u043f\u043e-\u043b\u0435\u0441\u043d\u043e \u0437\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435 \u0441\u0438 \u043a\u0430\u0442\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u0432 \u0438\u043c\u0435\u0439\u043b\u0438\u0442\u0435 \u0441\u0438 schema.org markup.", "plain", "\u0418\u0437\u0447\u0438\u0441\u0442\u0435\u043d\u043e", "light", "\u0421\u0432\u0435\u0442\u043b\u043e", "dark", "\u0422\u044a\u043c\u043d\u043e", "email_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u0438\u043c\u0435\u0439\u043b", "attach_pdf", "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 PDF", _s16_158, "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "attach_ubl", "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 UBL", "email_style", "\u0421\u0442\u0438\u043b\u043e\u0432\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b\u0430", _s19_42, "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "\u041e\u0431\u0440\u0430\u0431\u043e\u0442\u0435\u043d", "credit_card", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", "bank_transfer", "\u0411\u0430\u043d\u043a\u043e\u0432 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440", "priority", "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442", "fee_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430", "fee_percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u0442\u0430\u043a\u0441\u0430", "fee_cap", "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0437\u0430 \u0442\u0430\u043a\u0441\u0430", "limits_and_fees", "\u041b\u0438\u043c\u0438\u0442\u0438/\u0422\u0430\u043a\u0441\u0438", "enable_min", "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 min", "enable_max", "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 max", "min_limit", "\u041c\u0438\u043d.: :min", "max_limit", "\u041c\u0430\u043a\u0441.: :max", "min", "Min", "max", "Max", _s19_43, "\u041b\u043e\u0433\u0430 \u043d\u0430 \u043f\u0440\u0438\u0435\u043c\u0430\u043d\u0438 \u043a\u0430\u0440\u0442\u0438", "credentials", "\u0423\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u0435\u043d\u0438\u0435 \u0437\u0430 \u0441\u0430\u043c\u043e\u043b\u0438\u0447\u043d\u043e\u0441\u0442", "update_address", "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430", _s19_45, "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0441 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438", "rate", "\u0420\u0430\u0437\u043c\u0435\u0440", "tax_rate", "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", "new_tax_rate", "\u041d\u043e\u0432\u0430 \u0442\u0430\u043a\u0441\u0430", "edit_tax_rate", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_160, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_161, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s17_98, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_162, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s17_99, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043f\u043e\u043f\u044a\u043b\u0432\u0430\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s18_80, "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0449\u0435 \u043f\u043e\u043f\u044a\u043b\u043d\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0446\u0435\u043d\u0430\u0442\u0430", "update_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s20_65, "\u041f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0449\u0435 \u043e\u0431\u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0438\u044f \u043a\u0430\u0442\u0430\u043b\u043e\u0433", _s16_163, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s21_69, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u0435\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0442\u0435 \u0432\u044a\u0432 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "fees", "\u0422\u0430\u043a\u0441\u0438", "limits", "\u041b\u0438\u043c\u0438\u0442\u0438", "provider", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "company_gateway", "\u041f\u043e\u0440\u0442\u0430\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_165, "\u041f\u043e\u0440\u0442\u0430\u043b\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s19_46, "\u041d\u043e\u0432 \u043f\u043e\u0440\u0442\u0430\u043b", _s20_66, "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b", _s23_32, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s23_33, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s24_39, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b", _s23_34, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u043e\u0440\u0442\u0430\u043b", _s24_40, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e", "discard_changes", "\u041e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435", "default_value", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "disabled", "\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", "currency_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u043d\u0430 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430", _s21_70, "\u041f\u044a\u0440\u0432\u0438 \u0434\u0435\u043d \u043e\u0442 \u0441\u0435\u0434\u043c\u0438\u0446\u0430\u0442\u0430", _s23_35, "\u041f\u044a\u0440\u0432\u0438 \u043c\u0435\u0441\u0435\u0446 \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430\u0442\u0430", "sunday", "\u043d\u0435\u0434\u0435\u043b\u044f", "monday", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "tuesday", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0441\u0440\u044f\u0434\u0430", "thursday", "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", "friday", "\u043f\u0435\u0442\u044a\u043a", "saturday", "\u0441\u044a\u0431\u043e\u0442\u0430", "january", "\u042f\u043d\u0443\u0430\u0440\u0438", "february", "\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "march", "\u041c\u0430\u0440\u0442", "april", "\u0410\u043f\u0440\u0438\u043b", "may", "\u041c\u0430\u0439", "june", "\u042e\u043d\u0438", "july", "\u042e\u043b\u0438", "august", "\u0410\u0432\u0433\u0443\u0441\u0442", "september", "\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "october", "\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "november", "\u041d\u043e\u0435\u043c\u0432\u0440\u0438", "december", "\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438", "symbol", "\u0421\u0438\u043c\u0432\u043e\u043b", "ocde", "\u041a\u043e\u0434", "date_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u043d\u0430 \u0434\u0430\u0442\u0430\u0442\u0430", "datetime_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u0437\u0430 \u0434\u0430\u0442\u0430", "military_time", "24 \u0447\u0430\u0441\u043e\u0432\u043e \u0432\u0440\u0435\u043c\u0435", _s18_81, "24-\u0447\u0430\u0441\u043e\u0432 \u0444\u043e\u0440\u043c\u0430\u0442", "send_reminders", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f", "timezone", "\u0427\u0430\u0441\u043e\u0432\u0430 \u0437\u043e\u043d\u0430", _s19_47, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u0439 \u043f\u043e \u043f\u0440\u043e\u0435\u043a\u0442", _s17_101, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0443\u043f\u0430", _s19_49, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_82, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u043a\u043b\u0438\u0435\u043d\u0442", _s18_84, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "group_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0433\u0440\u0443\u043f\u0430\u0442\u0430", "group", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0435", "groups", "\u0413\u0440\u0443\u043f\u0438", "new_group", "\u041d\u043e\u0432\u0430 \u0413\u0440\u0443\u043f\u0430", "edit_group", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430 \u043d\u0435 \u0413\u0440\u0443\u043f\u0430", "created_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "updated_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "deleted_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "restored_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "upload_logo", "\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u041b\u043e\u0433\u043e", "uploaded_logo", "\u041b\u043e\u0433\u043e\u0442\u043e \u0431\u0435\u0448\u0435 \u043a\u0430\u0447\u0435\u043d\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "logo", "\u041b\u043e\u0433\u043e", "saved_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0431\u044f\u0445\u0430 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_169, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "device_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043d\u0430 \u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", "defaults", "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s17_103, "\u0420\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "company_details", "\u0414\u0430\u043d\u043d\u0438 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "user_details", "\u0414\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "online_payments", "\u041e\u043d\u043b\u0430\u0439\u043d \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "tax_rates", _s16_241, "notifications", "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", "import_export", "\u0418\u043c\u043f\u043e\u0440\u0442 | \u0415\u043a\u0441\u043f\u043e\u0440\u0442", "custom_fields", "\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", "invoice_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "buy_now_buttons", '\u0411\u0443\u0442\u043e\u043d\u0438 "\u041a\u0443\u043f\u0438 \u0441\u0435\u0433\u0430"', "email_settings", "Email \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s23_37, "\u0428\u0430\u0431\u043b\u043e\u043d\u0438 \u0438 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f", _s22_55, "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0438 \u041a\u0430\u0440\u0442\u0438 & \u0411\u0430\u043d\u043a\u0438", _s19_51, "\u0412\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "price", "\u0426\u0435\u043d\u0430", "email_sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0441 E-mail", "google_sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0441 Google", _s27_40, "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430\u0442\u0430!", "redeem", "\u041e\u0441\u0440\u0435\u0431\u0440\u044f\u0432\u0430\u043d\u0435", "back", "\u041d\u0430\u0437\u0430\u0434", "past_purchases", "\u041c\u0438\u043d\u0430\u043b\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0438", _s19_53, "\u0413\u043e\u0434\u0438\u0448\u0435\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d", "pro_plan", "Pro \u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", "enterprise_plan", "Enterprise \u041f\u043b\u0430\u043d", "count_users", ":count \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "upgrade", "\u041e\u0431\u043d\u043e\u0432\u0438", _s25_45, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e \u0438\u043c\u0435", _s24_42, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0444\u0430\u043c\u0438\u043b\u043d\u043e \u0438\u043c\u0435", _s33_21, "\u041c\u043e\u043b\u044f \u0441\u044a\u0433\u043b\u0430\u0441\u0435\u0442\u0435 \u0441\u0435 \u0441 \u043e\u0431\u0449\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442 \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043f\u0440\u043e\u0444\u0438\u043b.", "i_agree_to_the", "\u0421\u044a\u0433\u043b\u0430\u0441\u044f\u0432\u0430\u043c \u0441\u0435 \u0441", _s16_171, "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", "privacy_policy", "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u0437\u0430 \u0437\u0430\u0449\u0438\u0442\u0430 \u043d\u0430 \u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438", "sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f", "account_login", "\u0412\u0445\u043e\u0434 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430", "view_website", "\u0412\u0438\u0436 \u0443\u0435\u0431\u0441\u0430\u0439\u0442", "create_account", "\u0421\u044a\u0437\u0434\u0430\u0439 \u041f\u0440\u043e\u0444\u0438\u043b", "email_login", "\u0412\u043b\u0438\u0437\u0430\u043d\u0435 \u0437\u0440\u0435\u0437 email", "create_new", "\u041d\u043e\u0432", _s18_86, "\u041d\u044f\u043c\u0430 \u0438\u0437\u0431\u0440\u0430\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", _s21_73, "\u041c\u043e\u043b\u044f \u0437\u0430\u043f\u0430\u0437\u0435\u0442\u0435 \u0438\u043b\u0438 \u043e\u0442\u043a\u0430\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435", "download", "\u0421\u0432\u0430\u043b\u044f\u043d\u0435", _s27_41, '\u0418\u0437\u0438\u0441\u043a\u0432\u0430 "Enterprise" \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442', "take_picture", "\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0421\u043d\u0438\u043c\u043a\u0430", "upload_file", "\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0424\u0430\u0439\u043b", "document", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "new_document", "\u041d\u043e\u0432 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "edit_document", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", _s17_105, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u043a\u0430\u0447\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_173, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s17_106, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_174, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0438\u0437\u0442\u0440\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s17_107, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "\u041d\u044f\u043c\u0430 \u0418\u0441\u0442\u043e\u0440\u0438\u044f", "expense_date", "\u0414\u0430\u0442\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "pending", "\u041e\u0447\u0430\u043a\u0432\u0430\u043d\u043e", _s16_175, "\u041b\u043e\u0433\u043d\u0430\u0442", _s16_176, "\u0418\u0437\u0447\u0430\u043a\u0432\u0430\u0449\u0438", _s16_177, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "converted", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u043e", _s24_44, "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043a\u044a\u043c \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "exchange_rate", "\u041a\u0443\u0440\u0441", _s16_178, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430", "mark_paid", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u043f\u043b\u0430\u0442\u0435\u043d\u043e", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "address", "\u0410\u0434\u0440\u0435\u0441", "new_vendor", "\u041d\u043e\u0432 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "created_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "updated_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "archived_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "deleted_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "restored_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", _s16_180, _s36_11, "new_expense", "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", "created_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0440\u0430\u0437\u0445\u043e\u0434", "updated_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s16_181, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434", "deleted_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0440\u0430\u0437\u0445\u043e\u0434", _s16_182, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s17_109, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s16_183, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s17_110, _s37_14, "copy_shipping", "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", "copy_billing", "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", "design", "\u0414\u0438\u0437\u0430\u0439\u043d", _s21_74, "\u0417\u0430\u043f\u0438\u0441\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d", "invoiced", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "logged", "\u041b\u043e\u0433\u0432\u0430\u043d\u043e", "running", "\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e", "resume", "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u043d\u0435", "task_errors", "\u041c\u043e\u043b\u044f, \u043a\u043e\u0440\u0438\u0433\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0440\u0438\u043f\u043e\u043a\u0440\u0438\u0432\u0430\u0449\u0438\u0442\u0435 \u0441\u0435 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438", "start", "\u0421\u0442\u0430\u0440\u0442", "stop", "\u0421\u0442\u043e\u043f", "started_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "stopped_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043f\u0440\u044f\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "resumed_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u0430 \u043f\u043e \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430", "now", "\u0421\u0435\u0433\u0430", _s16_184, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435", "timer", "\u0422\u0430\u0439\u043c\u0435\u0440", "manual", "\u0420\u044a\u0447\u043d\u043e", "budgeted", "\u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0440\u0430\u043d\u043e", "start_time", "\u041d\u0430\u0447\u0430\u043b\u043e", "end_time", "\u041a\u0440\u0430\u0439", "date", "\u0414\u0430\u0442\u0430", "times", "\u0412\u0440\u0435\u043c\u0435", "duration", "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442", "new_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "created_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "updated_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "deleted_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "restored_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_tasks", _s32_12, "deleted_tasks", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", "restored_tasks", _s34_19, _s19_55, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0438\u043c\u0435", "budgeted_hours", "\u0427\u0430\u0441\u043e\u0432\u0435 \u043f\u043e \u0431\u044e\u0434\u0436\u0435\u0442", "created_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442", "updated_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_186, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442", "deleted_project", _s21_102, _s16_187, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442", _s17_111, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0430", _s16_188, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0430", _s17_112, _s37_15, "new_project", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0435\u043a\u0442", _s27_45, "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0412\u0438, \u0447\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0430\u0448\u0435\u0442\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435!", "if_you_like_it", "\u0410\u043a\u043e \u0433\u043e \u0445\u0430\u0440\u0435\u0441\u0432\u0430\u0442\u0435 \u0412\u0438 \u043c\u043e\u043b\u0438\u043c", "click_here", "\u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0442\u0443\u043a", _s18_90, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0442\u0443\u043a", "to_rate_it", "\u0434\u0430 \u0433\u043e \u043e\u0446\u0435\u043d\u0438\u0442\u0435.", "average", "\u0421\u0440\u0435\u0434\u043d\u043e", "unapproved", "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043e", _s30_15, "\u041c\u043e\u043b\u044f, \u0432\u043b\u0435\u0437\u0442\u0435 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430 \u0441\u0438 \u0437\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u0442\u0430\u0437\u0438 \u043d\u0430\u0441\u0442\u043e\u0439\u043a\u0430", "locked", "\u0411\u043b\u043e\u043a\u0438\u0440\u0430\u043d\u043e", "authenticate", "\u0412\u0445\u043e\u0434 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430", _s19_57, "\u041c\u043e\u043b\u044f, \u0432\u043b\u0435\u0437\u0442\u0435 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430 \u0441\u0438", _s24_46, "\u0411\u0438\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u0435\u043d \u0432\u0445\u043e\u0434", "footer", "\u0424\u0443\u0442\u044a\u0440", "compare", "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "\u0412\u043b\u0435\u0437 \u0441 Google", "today", "\u0414\u043d\u0435\u0441", "custom_range", "\u0414\u0440\u0443\u0433 \u043f\u0435\u0440\u0438\u043e\u0434", "date_range", "\u041f\u0435\u0440\u0438\u043e\u0434", "current", "\u041d\u0430\u0441\u0442\u043e\u044f\u0449", "previous", "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", "current_period", "\u041d\u0430\u0441\u0442\u043e\u044f\u0449 \u043f\u0435\u0440\u0438\u043e\u0434", _s17_113, "\u041f\u0435\u0440\u0438\u043e\u0434 \u0437\u0430 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435", "previous_period", "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d \u043f\u0435\u0440\u0438\u043e\u0434", "previous_year", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "compare_to", "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0441\u044a\u0441", "last7_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 7 \u0434\u043d\u0438", "last_week", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0441\u0435\u0434\u043c\u0438\u0446\u0430", "last30_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 30 \u0434\u043d\u0438", "this_month", "\u0422\u043e\u0437\u0438 \u043c\u0435\u0441\u0435\u0446", "last_month", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u044f \u043c\u0435\u0441\u0435\u0446", "this_year", "\u0422\u0430\u0437\u0438 \u0433\u043e\u0434\u0438\u043d\u0430", "last_year", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "custom", "Custom", _s16_189, "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "clone_to_quote", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u0432 \u043e\u0444\u0435\u0440\u0442\u0430", "clone_to_credit", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u0432 \u043a\u0440\u0435\u0434\u0438\u0442", "view_invoice", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "convert", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439", "more", "\u041e\u0449\u0435", "edit_client", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "edit_product", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "edit_invoice", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "edit_quote", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "edit_payment", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041f\u043b\u0430\u0449\u0430\u043d\u0435", "edit_task", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "edit_expense", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "edit_vendor", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "edit_project", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s20_68, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "billing_address", "\u0410\u0434\u0440\u0435\u0441 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", _s16_191, "\u0410\u0434\u0440\u0435\u0441 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", "total_revenue", "\u041e\u0431\u0449\u043e \u043f\u0440\u0438\u0445\u043e\u0434\u0438", "average_invoice", "\u0421\u0440\u0435\u0434\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "outstanding", "\u041e\u0441\u0442\u0430\u0432\u0430\u0449\u0438", "invoices_sent", ":count \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "active_clients", "\u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "close", "\u0417\u0430\u0442\u0432\u043e\u0440\u0438", "email", "\u0415\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430 \u043f\u043e\u0449\u0430", "password", "\u041f\u0430\u0440\u043e\u043b\u0430", "url", "URL", "secret", "Secret", "name", "\u0418\u043c\u0435", "logout", "\u0418\u0437\u0445\u043e\u0434", "login", "\u0412\u0445\u043e\u0434", "filter", "\u0424\u0438\u043b\u0442\u044a\u0440", "sort", "\u0421\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435", "search", "\u0422\u044a\u0440\u0441\u0435\u043d\u0435", "active", "\u0410\u043a\u0442\u0438\u0432\u0435\u043d", "archived", "\u0410\u0440\u0445\u0438\u0432", "deleted", "\u0438\u0437\u0442\u0440\u0438\u0442\u0430", "dashboard", "\u0422\u0430\u0431\u043b\u043e", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0439", "delete", "\u0418\u0437\u0442\u0440\u0438\u0439", "restore", "\u0412\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u0438", _s16_193, "\u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0435\u043d\u043e", _s23_38, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0438\u044f\u0442 \u0438\u043c\u0435\u0439\u043b", _s26_32, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", _s21_77, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0432\u043e\u044f URL", _s26_34, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 product key", "ascending", "\u041d\u0430\u0440\u0430\u0441\u0442\u0432\u0430\u0449\u043e", "descending", "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u0449\u043e", "save", "\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435", _s17_115, "\u041d\u0430\u0441\u0442\u044a\u043f\u0438\u043b\u0430 \u0435 \u0433\u0440\u0435\u0448\u043a\u0430", "paid_to_date", "\u041f\u043b\u0430\u0442\u0435\u043d\u0438 \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430", "balance_due", "\u041e\u0441\u0442\u0430\u0432\u0430\u0442 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "balance", "\u0411\u0430\u043b\u0430\u043d\u0441", "overview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "details", "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0423\u0435\u0431\u0441\u0430\u0439\u0442", "vat_number", "\u0414\u0414\u0421 \u041d\u043e\u043c\u0435\u0440", "id_number", "\u0415\u0418\u041a/\u0411\u0443\u043b\u0441\u0442\u0430\u0442", "create", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435", _s19_59, "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u043e :value \u0432 \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430", "error", "\u0413\u0440\u0435\u0448\u043a\u0430", _s16_195, "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430", "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "additional", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e", "first_name", "\u041f\u044a\u0440\u0432\u043e \u0438\u043c\u0435", "last_name", "\u0424\u0430\u043c\u0438\u043b\u043d\u043e \u0438\u043c\u0435", "add_contact", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0421\u0438\u0433\u0443\u0440\u0435\u043d \u043b\u0438 \u0441\u0442\u0435?", "cancel", "\u041e\u0442\u043a\u0430\u0437", "ok", "\u041e\u043a", "remove", "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435", _s16_197, "\u0418\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441\u044a\u0442 \u0435 \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d", "product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "products", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "new_product", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "created_product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d", "updated_product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d", _s16_199, "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d", "deleted_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_200, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s17_117, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s16_201, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s17_118, _s37_16, "product_key", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0438", "cost", "\u0426\u0435\u043d\u0430", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u0438", "new_client", "\u041d\u043e\u0432 \u043a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u041a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "updated_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442", "archived_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442", _s16_202, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "deleted_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043a\u043b\u0438\u0435\u043d\u0442", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "restored_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u041a\u043b\u0438\u0435\u043d\u0442", _s16_203, _s36_13, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0410\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442", "city", "\u0413\u0440\u0430\u0434", "state", "\u041e\u0431\u043b\u0430\u0441\u0442", "postal_code", "\u041f\u043e\u0449\u0435\u043d\u0441\u043a\u0438 \u043a\u043e\u0434", "country", "\u0414\u044a\u0440\u0436\u0430\u0432\u0430", "invoice", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430", "invoices", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438", "new_invoice", "\u041d\u043e\u0432\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "created_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "updated_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_204, _s26_45, "deleted_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_205, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_119, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s16_206, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_120, _s37_17, "emailed_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "emailed_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "amount", "\u0421\u0443\u043c\u0430", "invoice_number", _s16_244, "invoice_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "discount", "\u041e\u0442\u0441\u0442\u044a\u043f\u043a\u0430", "po_number", "\u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043e\u0449\u0435\u043d\u0441\u043a\u0430 \u043a\u0443\u0442\u0438\u044f", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f", "public_notes", "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438 \u0437\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0438", "private_notes", "\u041b\u0438\u0447\u043d\u0438 \u0431\u0435\u043b\u0435\u0436\u043a\u0438", "frequency", "\u0427\u0435\u0441\u0442\u043e\u0442\u0430", "start_date", "\u041d\u0430\u0447\u0430\u043b\u043d\u0430 \u0434\u0430\u0442\u0430", "end_date", "\u041a\u0440\u0430\u0439\u043d\u0430 \u0434\u0430\u0442\u0430", "quote_number", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "quote_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "valid_until", "\u0412\u0430\u043b\u0438\u0434\u043d\u0430 \u0434\u043e", "items", "\u0420\u0435\u0434\u043e\u0432\u0435", "partial_deposit", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e/\u0414\u0435\u043f\u043e\u0437\u0438\u0442", "description", "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "unit_cost", "\u0415\u0434. \u0446\u0435\u043d\u0430", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e", "add_item", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "\u041e\u0431\u0449\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "pdf", "PDF", "due_date", "\u041a\u0440\u0430\u0439\u043d\u0430 \u0434\u0430\u0442\u0430 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_207, "\u0427\u0430\u0441\u0442\u0438\u0447\u0435\u043d \u043f\u0430\u0434\u0435\u0436", "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_121, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435", "quote_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s22_56, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 + \u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", _s22_58, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 + \u0437\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u0432\u0440\u0435\u043c\u0435", "count_selected", ":count \u0438\u0437\u0431\u0440\u0430\u043d\u0438", "total", "\u041e\u0431\u0449\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435", "dismiss", "\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435", _s20_70, "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u0442\u0430", _s22_59, "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", _s24_48, "\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "task_rate", "\u0421\u0442\u0430\u0432\u043a\u0430", "settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "language", "\u0415\u0437\u0438\u043a", "currency", "\u0412\u0430\u043b\u0443\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435", "created_on", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u043d\u0430", "updated_at", "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d", "tax", "\u0414\u0430\u043d\u044a\u043a", _s30_17, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_49, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "past_due", "\u041f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d\u043e", "draft", "\u0427\u0435\u0440\u043d\u043e\u0432\u0430", "sent", "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", "viewed", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d\u043e", "approved", "\u041e\u0434\u043e\u0431\u0440\u0435\u043d\u043e", "partial", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 / \u0434\u0435\u043f\u043e\u0437\u0438\u0442", "paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e", "mark_sent", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s22_61, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s22_62, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u0431\u0435\u043b\u044f\u0437\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s23_40, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u0441\u0430 \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438", _s23_41, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438", "done", "\u0413\u043e\u0442\u043e\u0432\u043e", _s37_18, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 \u0438\u043b\u0438 \u043b\u0438\u0446\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "dark_mode", "\u0422\u044a\u043c\u0435\u043d \u0440\u0435\u0436\u0438\u043c", _s27_51, "\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430", "refresh_data", "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "blank_contact", "\u041f\u0440\u0430\u0437\u0435\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", _s16_209, "\u041d\u044f\u043c\u0430 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", "clone", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439", "loading", "\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435", "industry", "\u0411\u0440\u0430\u043d\u0448", "size", "\u0420\u0430\u0437\u043c\u0435\u0440", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u041f\u043b\u0430\u0449\u0430\u043d\u0435\u0442\u043e", _s16_211, "\u0418\u0437\u0447\u0430\u043a\u0432\u0430\u0449\u0438", _s16_212, "\u0410\u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0438", _s16_213, "\u0413\u0440\u0435\u0448\u043d\u0438", _s16_214, "\u0413\u043e\u0442\u043e\u0432\u0438", _s16_215, "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", _s16_216, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430", _s17_122, "\u041d\u0430\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u043e", _s17_123, _s19_23, "net", "\u041d\u0435\u0442\u043e", "client_portal", "\u041a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438 \u043f\u043e\u0440\u0442\u0430\u043b", "show_tasks", "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438", "email_reminders", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "enabled", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e", "recipients", "\u041f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u0438", "initial_email", "\u041f\u044a\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u0435\u043d \u0438\u043c\u0435\u0439\u043b", "first_reminder", "\u041f\u044a\u0440\u0432\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "second_reminder", "\u0412\u0442\u043e\u0440\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "third_reminder", "\u0422\u0440\u0435\u0442\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder1", "\u041f\u044a\u0440\u0432\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder2", "\u0412\u0442\u043e\u0440\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder3", "\u0422\u042a\u0440\u0435\u0442\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", "subject", "\u041e\u0442\u043d\u043e\u0441\u043d\u043e", "body", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0442\u0435\u043a\u0441\u0442", "send_email", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b", "email_receipt", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043a\u044a\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "auto_billing", "Auto billing", "button", "\u0411\u0443\u0442\u043e\u043d", "preview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "customize", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f", "payment", "\u041f\u043b\u0430\u0449\u0430\u043d\u0435", "payments", "\u041f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "refunded", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430", "payment_type", "\u0422\u0438\u043f \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_79, "\u041e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0435\u0432\u043e\u0434", "enter_payment", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "new_payment", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "created_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "updated_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u043e \u041f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_217, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "deleted_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_218, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043do \u041f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_124, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", _s16_219, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", _s17_125, _s37_20, "quote", "\u041e\u0444\u0435\u0440\u0442\u0430", "quotes", "\u041e\u0444\u0435\u0440\u0442\u0438", "new_quote", "\u041d\u043e\u0432\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "created_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "updated_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "archived_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "deleted_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "restored_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "archived_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u041e\u0444\u0435\u0440\u0442\u0438", "deleted_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u041e\u0444\u0435\u0440\u0442\u0438", "restored_quotes", _s35_21, "expense", "\u0420\u0430\u0437\u0445\u043e\u0434", "expenses", "\u0420\u0430\u0437\u0445\u043e\u0434\u0438", "vendor", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "vendors", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", "task", "\u0417\u0430\u0434\u0430\u0447\u0430", "tasks", "\u0417\u0430\u0434\u0430\u0447\u0438", "project", "\u041f\u0440\u043e\u0435\u043a\u0442", "projects", "\u041f\u0440\u043e\u0435\u043a\u0442\u0438", "activity_1", ":user \u0437\u044a\u0437\u0434\u0430\u0434\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_2", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_3", ":user \u0438\u0437\u0442\u0440\u0438 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_4", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_5", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_6", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice, \u043a\u044a\u043c :client, \u043d\u0430 :contact", "activity_7", ":contact \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice, \u043a\u044a\u043c :client", "activity_8", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_9", ":user \u0438\u0437\u0442\u0440\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_10", ":contact \u0432\u044a\u0432\u0435\u0434\u0435 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment \u0432 \u0440\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 :payment_amount \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0437\u0430 :client", "activity_11", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_12", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_13", ":user \u0438\u0437\u0442\u0440\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_14", ":user \u0432\u044a\u0432\u0435\u0434\u0435 :credit credit", "activity_15", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 :credit credit", "activity_16", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 :credit credit", "activity_17", ":user \u0438\u0437\u0442\u0440\u0438 \u043a\u0440\u0435\u0434\u0438\u0442 :credit", "activity_18", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_19", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_20", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote, \u043a\u044a\u043c :client, \u043d\u0430 :contact", "activity_21", _s31_24, "activity_22", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_23", ":user \u0438\u0437\u0442\u0440\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_24", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_25", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_26", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_27", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_28", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043a\u0440\u0435\u0434\u0438\u0442 :credit", "activity_29", ":contact \u043e\u0434\u043e\u0431\u0440\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote, \u043a\u044a\u043c :client", "activity_30", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_31", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_32", ":user \u0438\u0437\u0442\u0440\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_33", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_34", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_35", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_36", ":user \u0438\u0437\u0442\u0440\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_37", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_39", ":user \u0435 \u043e\u0442\u043a\u0430\u0437\u0430\u043b :payment_amount \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_40", ":user \u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b :adjustment \u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 :payment_amount \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_41", "\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u0438 :payment_amount \u043f\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 (:payment)", "activity_42", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_43", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_44", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_45", ":user \u0438\u0437\u0442\u0440\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_46", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_47", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user \u043e\u0442\u043d\u043e\u0432\u043e \u043e\u0442\u0432\u043e\u0440\u0438 :ticket", "activity_55", ":contact \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438 \u043d\u0430 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_56", ":user \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_57", "\u0421\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u043d\u0435 \u0443\u0441\u043f\u044f \u0434\u0430 \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u043f\u043e e-mail", "activity_58", ":user \u0441\u0442\u043e\u0440\u043d\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_59", ":user \u0430\u043d\u0443\u043b\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_60", _s31_24, "activity_61", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_62", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_63", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u043f\u044a\u0440\u0432\u043e \u0438\u043c\u0435\u0439\u043b \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0434\u043e :contact", "activity_64", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0432\u0442\u043e\u0440\u043e \u0438\u043c\u0435\u0439\u043b \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0434\u043e :contact", "activity_65", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0442\u0440\u0435\u0442\u043e \u0438\u043c\u0435\u0439\u043b \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0434\u043e :contact", "activity_66", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0431\u0435\u0437\u043a\u0440\u0430\u0439\u043d\u043e \u0438\u043c\u0435\u0439\u043b \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0434\u043e :contact", "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\u0415\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "emailed_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "emailed_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s20_72, "\u041e\u0444\u0435\u0440\u0442\u0430\u0442\u0430 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s21_81, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u0431\u0435\u043b\u044f\u0437\u0430\u043d \u043a\u0440\u0435\u0434\u0438\u0442 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d", "expired", "\u0418\u0437\u0442\u0435\u043a\u043b\u0430", "all", "\u0412\u0441\u0438\u0447\u043a\u0438", "select", "\u0418\u0437\u0431\u0435\u0440\u0438", _s22_63, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0434\u044a\u043b\u0433\u043e \u0437\u0430 \u043c\u0443\u043b\u0442\u0438\u0441\u0435\u043b\u0435\u043a\u0446\u0438\u044f", "custom_value1", _s24_61, "custom_value2", _s24_61, "custom_value3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 3", "custom_value4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 4", _s18_91, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d \u0441\u0442\u0438\u043b \u043d\u0430 \u0438\u043c\u0435\u0439\u043b\u0430", _s24_53, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u043e\u0442\u043e", _s29_36, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_56, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s31_18, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043d\u0435\u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "lock_invoices", "\u0417\u0430\u043a\u043b\u044e\u0447\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435", "translations", "\u041f\u0440\u0435\u0432\u043e\u0434\u0438", _s19_60, "\u0417\u0430\u0434\u0430\u0447\u0430 \u043d\u043e\u043c\u0435\u0440", _s19_62, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s22_65, "\u0420\u0430\u0437\u0445\u043e\u0434 \u043d\u043e\u043c\u0435\u0440", _s22_67, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s21_82, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s21_84, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s21_86, "\u0411\u0438\u043b\u0435\u0442 \u043d\u043e\u043c\u0435\u0440", _s21_88, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0431\u0438\u043b\u0435\u0442", _s22_69, _s16_242, _s22_71, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s22_73, _s16_244, _s22_75, "\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s20_73, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s20_75, "\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s21_90, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s21_92, _s24_62, _s21_94, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s21_95, _s24_62, _s18_93, "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0431\u0440\u043e\u044f\u0447\u0430", "counter_padding", "\u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u0440\u043e\u044f\u0447", _s28_56, "\u0421\u043f\u043e\u0434\u0435\u043b\u0435\u043d \u0431\u0440\u043e\u044f\u0447 \u043d\u0430 \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0438\u0442\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s18_95, "\u0414\u0430\u043d\u044a\u0447\u043d\u043e \u0438\u043c\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 1", _s18_97, "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 1", _s18_99, "\u0414\u0430\u043d\u044a\u0447\u043d\u043e \u0438\u043c\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 2", _s18_101, "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 2", _s18_103, "\u0414\u0430\u043d\u044a\u0447\u043d\u043e \u0438\u043c\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 3", _s18_105, "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 3", _s21_96, "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s19_64, "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s21_98, "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s29_38, "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u0447\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "show_table", "\u041f\u043e\u043a\u0430\u0436\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430", "show_list", "\u041f\u043e\u043a\u0430\u0436\u0438 \u043b\u0438\u0441\u0442", "client_city", "\u0413\u0440\u0430\u0434 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_state", "\u0429\u0430\u0442 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_country", "\u0414\u044a\u0440\u0436\u0430\u0432\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", _s16_220, "\u041a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u0435 \u0430\u043a\u0442\u0438\u0432\u0435\u043d", "client_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_address1", "\u0423\u043b\u0438\u0446\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_address2", "\u0410\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442/\u0441\u0442\u0430\u044f \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 (\u043a\u043b\u0438\u0435\u043d\u0442) - \u0443\u043b\u0438\u0446\u0430", _s24_56, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 (\u043a\u043b\u0438\u0435\u043d\u0442) - \u0430\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442/\u0441\u0442\u0430\u044f", "type", "\u0422\u0438\u043f", "invoice_amount", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_224, "\u041f\u0430\u0434\u0435\u0436", "tax_rate1", "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 1", "tax_rate2", "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 2", "tax_rate3", "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 3", "auto_bill", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", "archived_at", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043d\u0430", "has_expenses", "\u0418\u043c\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", "custom_taxes1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0434\u0430\u043d\u044a\u0446\u0438 1", "custom_taxes2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0434\u0430\u043d\u044a\u0446\u0438 2", "custom_taxes3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0434\u0430\u043d\u044a\u0446\u0438 3", "custom_taxes4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0434\u0430\u043d\u044a\u0446\u0438 4", _s17_128, _s27_63, _s17_129, _s27_64, _s17_130, _s27_65, _s17_131, _s27_66, "is_deleted", "\u0415 \u0438\u0437\u0442\u0440\u0438\u0442\u0430", "vendor_city", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a - \u0433\u0440\u0430\u0434", "vendor_state", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a - \u0449\u0430\u0442", "vendor_country", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a - \u0434\u044a\u0440\u0436\u0430\u0432\u0430", "is_approved", "\u0415 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430", "tax_name", "\u0418\u043c\u0430 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "tax_amount", "\u0422\u0430\u043a\u0441\u0430", "tax_paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "payment_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "age", "\u0418\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u043f\u0440\u0435\u0434\u0438", "is_running", "\u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435", "time_log", "\u041b\u043e\u0433 \u0437\u0430 \u0432\u0440\u0435\u043c\u0435", "bank_id", "\u0411\u0430\u043d\u043a\u0430", _s19_66, "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0442\u0430 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435", _s16_225, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434", _s19_68, "\u0418\u0434\u0435\u043d\u0442. \u2116 \u043d\u0430 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "tax_name1", "\u0414\u0430\u043d\u044a\u0447\u043d\u043e \u043d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 1", "tax_name2", "\u0414\u0430\u043d\u044a\u0447\u043d\u043e \u043d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 2", "tax_name3", "Tax Name 3", "transaction_id", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "zh_TW", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "\u63a5\u53d7", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "\u4ed8\u6b3e\u8a2d\u5b9a", "default", "\u9810\u8a2d", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u8cc7\u683c", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u65b0\u589e\u9598\u9053", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u65b0\u589e\u81f3\u767c\u7968 :invoice", _s17_6, _s17_7, "week", "\u661f\u671f", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u767c\u7968\u4f7f\u7528\u7684\u8ca8\u5e63", "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u5efa\u7acb\u5c08\u6848", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", ":amount \u4efd\u767c\u7968\u7684\u8cbb\u7528\u61c9\u70ba :total\u3002", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u540c\u610f", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "\u6e05\u9664\u7528\u6236\u6210\u529f", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u8a2d\u5b9a\u5bc6\u78bc", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u6aa2\u8996\u652f\u51fa # :expense", "view_statement", "\u6aa2\u8996\u8ca1\u52d9\u5831\u8868", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u7cfb\u7d71", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "\u6309\u7167\u59d3\u540d", _s16_21, _s16_231, _s17_13, "\u9031\u671f\u6027\u652f\u51fa", _s18_13, "\u9031\u671f\u6027\u652f\u51fa", _s21_16, "\u65b0\u7684\u9031\u671f\u6027\u652f\u51fa", _s22_24, "\u7de8\u8f2f\u9031\u671f\u6027\u652f\u51fa", _s25_2, "\u5efa\u7acb\u9031\u671f\u6027\u652f\u51fa\u6210\u529f", _s25_3, "\u66f4\u65b0\u9031\u671f\u6027\u652f\u51fa\u6210\u529f", _s26_2, "\u6b78\u6a94\u9031\u671f\u6027\u652f\u51fa\u6210\u529f", _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, "\u5fa9\u539f\u9031\u671f\u6027\u652f\u51fa\u6210\u529f", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, "Googlezp \u5206\u6790", _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u4f7f\u7528\u8005\u6307\u5357", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "\u6de8", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u532f\u5165\u8cc7\u6599", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u5c08\u696d\u7248", "enterprise", "Enterprise", "last_updated", "\u4e0a\u6b21\u66f4\u65b0\u6642\u9593", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "\u806f\u7d61\u4eba\u540d\u5b57", _s17_17, "\u806f\u7d61\u4eba\u59d3\u6c0f", "order", "Order", "unassigned", "\u672a\u5206\u914d\u7684", "partial_value", "\u5fc5\u9808\u5927\u65bc\u96f6\u4e14\u5c0f\u65bc\u7e3d\u984d", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "\u770b\u677f", "enable", "\u555f\u7528", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u8a2d\u5b9a\u5b50\u7db2\u57df\u6216\u5728\u60a8\u7684\u7db2\u7ad9\u4e0a\u986f\u793a\u767c\u7968\u3002", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "\u5b89\u5168", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u8a02\u95b1", _s16_39, _s16_40, _s17_23, "\u7de8\u8f2f\u8a02\u95b1\u8cc7\u6599", _s20_23, "\u5efa\u7acb\u8a02\u95b1\u6210\u529f", _s20_24, "\u66f4\u65b0\u8a02\u95b1\u6210\u529f", _s21_28, "\u6b78\u6a94\u8a02\u95b1\u8cc7\u6599\u6210\u529f", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u91cd\u5bc4\u9080\u8acb\u51fd", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "\u5df2\u9000\u56de", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "\u4f7f\u7528 :link \u76f8\u5bb9\u7684 App \u6383\u63cf\u689d\u78bc\u3002", _s18_30, "\u555f\u7528\u5169\u6b65\u9a5f\u9a57\u8b49\u6210\u529f", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "\u5169\u6b65\u9a5f\u9a57\u8b49", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u5df2\u9000\u6b3e\u7684\u4ed8\u6b3e", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "\u8f49\u63db\u81f3\u767c\u7968", _s16_52, _s16_53, "invoice_project", "\u767c\u7968\u5c08\u6848", "invoice_task", "\u70ba\u4efb\u52d9\u958b\u7acb\u767c\u7968", "invoice_expense", "\u70ba\u652f\u51fa\u958b\u7acb\u767c\u7968", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, "\u8f49\u63db\u7684\u91d1\u984d", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u9810\u8a2d\u7684\u6587\u4ef6", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u96b1\u85cf", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u6b04", "sample", "\u6a23\u672c", "map_to", "Map To", "import", "\u532f\u5165", _s25_15, _s29_6, "select_file", "\u8acb\u9078\u64c7\u4e00\u500b\u6a94\u6848", _s16_60, _s16_61, "csv_file", "CSV \u6a94\u6848", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "\u670d\u52d9", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u672a\u4ed8\u6b3e", "white_label", "White Label", "delivery_note", "\u5bc4\u9001\u8a3b\u8a18", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u90e8\u5206\u61c9\u4ed8\u6b3e", "invoice_total", "\u767c\u7968\u7e3d\u984d", "quote_total", "\u5831\u50f9\u55ae\u7e3d\u8a08", "credit_total", "\u8cb8\u6b3e\u7e3d\u984d", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u8b66\u544a", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "\u4fe1\u7528\u5361\u8a8d\u8b49\u7de8\u865f", "client_name", "\u7528\u6236\u540d\u7a31", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, "\u66f4\u65b0\u5de5\u4f5c\u72c0\u614b\u6210\u529f", _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "\u652f\u51fa\u985e\u5225", _s20_42, "\u65b0\u7684\u652f\u51fa\u985e\u5225", _s21_40, _s21_41, _s24_28, "\u6210\u529f\u5efa\u7acb\u652f\u51fa\u985e\u5225", _s24_29, "\u66f4\u65b0\u652f\u51fa\u985e\u5225\u6210\u529f", _s25_19, "\u6b78\u6a94\u652f\u51fa\u985e\u5225\u6210\u529f", _s24_30, "\u522a\u9664\u985e\u5225\u6210\u529f", _s24_31, _s37_7, _s25_20, "\u5fa9\u539f\u652f\u51fa\u985e\u5225\u6210\u529f", _s27_21, "\u6b78\u6a94 :count \u9805\u652f\u51fa\u985e\u5225\u6210\u529f", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "\u61c9\u70ba\u6b64\u958b\u7acb\u767c\u7968", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u6a19\u8a18\u4f7f\u7528\u4e2d", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "\u9031\u671f\u6027\u767c\u7968", _s18_45, "\u9031\u671f\u6027\u767c\u7968", _s21_47, "\u65b0\u7684\u9031\u671f\u6027\u767c\u7968", _s22_37, "\u7de8\u8f2f\u9031\u671f\u6027\u767c\u7968", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "\u6b78\u6a94\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s25_28, "\u522a\u9664\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s25_29, _s38_11, _s26_12, "\u5fa9\u539f\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "\u5229\u6f64", "line_item", "\u55ae\u5217\u54c1\u9805", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "\u5df2\u958b\u555f", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "\u6aa2\u8996\u5165\u53e3\u9801\u9762", "copy_link", "Copy Link", "token_billing", "\u5132\u5b58\u5361\u7247\u8a73\u7d30\u8cc7\u6599", _s24_34, _s24_35, "always", "\u6c38\u9060", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u6a19\u7c64", "client_number", "\u7528\u6236\u7de8\u865f", "auto_convert", "Auto Convert", "company_name", "\u516c\u53f8\u540d\u7a31", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u767c\u7968\u6210\u529f", "emailed_quotes", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u5831\u50f9\u55ae\u6210\u529f", "emailed_credits", _s28_57, "gateway", "\u9598\u9053", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u6642", "statement", "\u8ca1\u52d9\u5831\u8868", "taxes", "\u5404\u985e\u7a05\u91d1", "surcharge", "\u984d\u5916\u8cbb\u7528", "apply_payment", "Apply Payment", "apply_credit", "\u5957\u7528\u8cb8\u6b3e", "apply", "\u5957\u7528", "unapplied", "Unapplied", "select_label", "\u9078\u64c7\u6a19\u7c64", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u5230", "health_check", "Health Check", "payment_type_id", "\u4ed8\u6b3e\u65b9\u5f0f", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "\u5373\u5c07\u5230\u671f\u7684\u767c\u7968", _s17_59, _s17_60, "recent_payments", "\u6700\u8fd1\u7684\u652f\u4ed8", "upcoming_quotes", "\u5373\u5c07\u5230\u671f\u7684\u5831\u50f9\u55ae", "expired_quotes", "\u904e\u671f\u7684\u5831\u50f9\u55ae", "create_client", "\u5efa\u7acb\u7528\u6236", "create_invoice", "\u5efa\u7acb\u767c\u7968", "create_quote", "\u5efa\u7acb\u5831\u50f9\u55ae", "create_payment", "Create Payment", "create_vendor", "\u5efa\u7acb\u4f9b\u61c9\u5546", "update_quote", "Update Quote", "delete_quote", "\u522a\u9664\u5831\u50f9\u55ae", "update_invoice", "Update Invoice", "delete_invoice", "\u522a\u9664\u767c\u7968", "update_client", "Update Client", "delete_client", "\u522a\u9664\u7528\u6236", "delete_payment", "\u522a\u9664\u4ed8\u6b3e\u7d00\u9304", "update_vendor", "Update Vendor", "delete_vendor", "\u522a\u9664\u4f9b\u61c9\u5546", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u522a\u9664\u652f\u51fa", "create_task", "\u5efa\u7acb\u5de5\u4f5c\u9805\u76ee", "update_task", "Update Task", "delete_task", "\u522a\u9664\u5de5\u4f5c\u9805\u76ee", "approve_quote", "Approve Quote", "off", "\u95dc", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u514d\u8cbb", "plan", "\u8cc7\u8cbb\u6848", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u76ee\u6a19", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API \u7684\u5b89\u5168\u4ee3\u78bc", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u5b89\u5168\u4ee3\u78bc", "tokens", "\u5b89\u5168\u4ee3\u78bc", "new_token", "New Token", "edit_token", "\u7de8\u8f2f\u5b89\u5168\u4ee3\u78bc", "created_token", "\u5b89\u5168\u4ee3\u78bc\u5efa\u7acb\u6210\u529f", "updated_token", "\u66f4\u65b0\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "archived_token", "\u6b78\u6a94\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "deleted_token", "\u522a\u9664\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u9001\u767c\u7968", "email_quote", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u5831\u50f9\u55ae", "email_credit", "Email Credit", "email_payment", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u4ed8\u6b3e\u8cc7\u6599", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "\u806f\u7d61\u4eba\u59d3\u540d", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "\u7de8\u8f2f\u4ed8\u6b3e\u689d\u4ef6", _s20_51, "\u5efa\u7acb\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s20_52, "\u66f4\u65b0\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s21_50, "\u6b78\u6a94\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u8cb8\u6b3e\u91d1\u984d", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u4e0d\u542b", "inclusive", "\u5167\u542b", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "\u5df2\u9000\u6b3e\u7684\u652f\u4ed8", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "\u5168\u540d", _s17_71, "\u57ce\u5e02/\u5dde\u7701/\u90f5\u905e\u5340\u865f", _s17_73, "\u57ce\u5e02/\u5dde\u7701/\u90f5\u905e\u5340\u865f", "custom1", "\u9996\u4f4d\u9867\u5ba2", "custom2", "\u7b2c\u4e8c\u540d\u9867\u5ba2", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u6e05\u9664\u8cc7\u6599", _s16_91, "\u6e05\u9664\u516c\u53f8\u8cc7\u6599\u6210\u529f", _s18_54, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u6027\u5730\u62b9\u9664\u60a8\u7684\u8cc7\u6599\uff1b\u6c92\u6709\u6062\u5fa9\u7684\u53ef\u80fd\u3002", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 \u5929", "age_group_30", "30 - 60 \u5929", "age_group_60", "60 - 90 \u5929", "age_group_90", "90 - 120 \u5929", "age_group_120", "120 \u5929\u4ee5\u4e0a", "refresh", "\u66f4\u65b0", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u767c\u7968\u8a73\u7d30\u5167\u5bb9", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u6b0a\u9650", "none", "\u7121", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", "\u5df2\u5bc4\u51fa :count \u4efd\u767c\u7968", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "\u5957\u7528\u6388\u6b0a", "cancel_account", "\u522a\u9664\u5e33\u6236", _s22_44, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u522a\u9664\u60a8\u7684\u5e33\u6236\uff0c\u800c\u4e14\u7121\u6cd5\u6062\u5fa9\u3002", "delete_company", "\u522a\u9664\u516c\u53f8\u8cc7\u6599", _s22_45, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u522a\u9664\u60a8\u7684\u516c\u53f8\u8cc7\u6599\uff0c\u800c\u4e14\u4e0d\u53ef\u80fd\u5fa9\u539f\u3002", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u9801\u9996", "load_design", "\u8f09\u5165\u8a2d\u8a08", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "\u63d0\u6848", "tickets", "\u7968\u8b49", _s16_96, "\u9031\u671f\u6027\u5831\u50f9\u55ae", "recurring_tasks", "Recurring Tasks", _s18_55, "\u5e33\u865f\u7ba1\u7406", "credit_date", "\u8cb8\u6b3e\u65e5\u671f", "credit", "\u8cb8\u6b3e", "credits", "\u8cb8\u6b3e", "new_credit", "\u8f38\u5165\u8cb8\u6b3e\u8cc7\u6599", "edit_credit", "\u7de8\u8f2f\u8cb8\u6b3e\u8cc7\u6599", "created_credit", "\u5efa\u7acb\u8cb8\u6b3e\u8cc7\u6599\u5b8c\u6210", "updated_credit", "\u66f4\u65b0\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "archived_credit", "\u6b78\u6a94\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_credit", "\u522a\u9664\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "removed_credit", _s27_34, "restored_credit", "\u5fa9\u539f\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_98, "\u6b78\u6a94 :count \u7b46\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_credits", "\u522a\u9664 :count \u7b46\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_99, _s36_9, "current_version", "\u76ee\u524d\u7248\u672c", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u77ad\u89e3\u66f4\u591a", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u65b0\u7684\u516c\u53f8\u8cc7\u6599", "added_company", _s26_20, "company1", "\u81ea\u8a02\u516c\u53f81", "company2", "\u81ea\u8a02\u516c\u53f82", "company3", "\u81ea\u8a02\u516c\u53f83", "company4", "\u81ea\u8a02\u516c\u53f84", "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u91cd\u8a2d", "number", "Number", "export", "\u532f\u51fa", "chart", "\u5716\u8868", "count", "Count", "totals", "\u7e3d\u8a08", "blank", "\u7a7a\u767d", "day", "\u65e5", "month", "\u6708", "year", "\u5e74", "subgroup", "\u6b21\u7fa4\u7d44", "is_active", "Is Active", "group_by", "\u5206\u7d44\u65b9\u5f0f", "credit_balance", "\u8cb8\u6b3e\u9918\u984d", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "\u806f\u7d61\u4eba\u96fb\u8a71", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "\u9001\u8ca8\u5730\u5740\u4e4b\u8857\u9053", _s17_80, "\u9001\u8ca8\u5730\u5740\u4e4b\u5927\u6a13/\u5957\u623f", "shipping_city", "\u9001\u8ca8\u5730\u5740\u4e4b\u57ce\u5e02", "shipping_state", "\u9001\u8ca8\u5730\u5740\u4e4b\u5dde/\u7701", _s20_55, "\u9001\u8ca8\u5730\u5740\u4e4b\u90f5\u905e\u5340\u865f", _s16_130, "\u9001\u8ca8\u5730\u5740\u4e4b\u570b\u5bb6", _s16_132, "\u5e33\u55ae\u5730\u5740\u4e4b\u8857/\u8def", _s16_133, "\u5e33\u55ae\u5730\u5740\u4e4b\u5927\u6a13/\u5957\u623f", "billing_city", "\u5e33\u55ae\u5730\u5740\u4e4b\u57ce\u5e02", "billing_state", "\u5e33\u55ae\u5730\u5740\u4e4b\u5dde/\u7701", _s19_36, "\u5e33\u55ae\u5730\u5740\u4e4b\u90f5\u905e\u5340\u865f", "billing_country", "\u5e33\u55ae\u5730\u5740\u4e4b\u570b\u5bb6", "client_id", "\u7528\u6236 Id", "assigned_to", "\u5206\u914d\u7d66", "created_by", "\u7531 :name \u5efa\u7acb", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u6b04", "aging", "\u5e33\u9f61", "profit_and_loss", "\u5229\u6f64\u8207\u640d\u5931", "reports", "\u5831\u544a", "report", "\u5831\u544a", "add_company", "\u65b0\u589e\u516c\u53f8\u8cc7\u6599", "unpaid_invoice", "\u672a\u4ed8\u6b3e\u4e4b\u767c\u7968", "paid_invoice", "\u5df2\u4ed8\u6b3e\u4e4b\u767c\u7968", _s16_134, "\u672a\u540c\u610f\u4e4b\u5831\u50f9\u55ae", "help", "\u8aaa\u660e", "refund", "\u9000\u6b3e", "refund_date", "Refund Date", "filtered_by", "\u7be9\u9078\u4f9d\u64da", "contact_email", "\u806f\u7d61\u4eba\u96fb\u5b50\u90f5\u4ef6", "multiselect", "Multiselect", "entity_state", "\u72c0\u614b", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u8a0a\u606f", "from", "\u5f9e", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, "\u8abf\u6574\u767e\u5206\u6bd4\u4ee5\u8a08\u5165\u8cbb\u7528", _s18_66, _s18_67, "support_forum", "\u652f\u63f4\u8a0e\u8ad6\u5340", "about", "About", "documentation", "\u6587\u4ef6", "contact_us", "\u806f\u7d61\u6211\u5011", "subtotal", "\u5c0f\u8a08", "line_total", "\u7e3d\u8a08", "item", "\u54c1\u9805", "credit_email", "Credit Email", "iframe_url", "\u7db2\u7ad9", "domain_url", "Domain URL", _s21_58, "\u5bc6\u78bc\u592a\u77ed", _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "\u662f", "no", "\u5426", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "\u884c\u52d5\u88dd\u7f6e", "desktop", "\u96fb\u8166\u684c\u9762", "layout", "Layout", "view", "\u6aa2\u8996", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u4f7f\u7528\u8005", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "\u8acb\u9078\u53d6\u4e00\u500b\u7528\u6236", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u7a05\u984d\u8a2d\u5b9a", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "\u9078\u9805", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "\u63d0\u4ea4", _s16_142, "\u91cd\u8a2d\u60a8\u7684\u5bc6\u78bc", "late_fees", "\u6eef\u7d0d\u91d1", "credit_number", "\u8cb8\u6b3e\u7de8\u865f", "payment_number", "\u4ed8\u6b3e\u865f\u78bc", "late_fee_amount", "\u903e\u671f\u8cbb\u7528\u91d1\u984d", _s16_143, "\u903e\u671f\u8cbb\u7528\u7387", "schedule", "\u6642\u9593\u8868", "before_due_date", "\u5230\u671f\u65e5\u4e4b\u524d", "after_due_date", "\u5230\u671f\u65e5\u4e4b\u5f8c", _s18_73, "\u767c\u7968\u65e5\u4e4b\u5f8c", "days", "\u65e5", "invoice_email", "\u767c\u7968\u96fb\u5b50\u90f5\u4ef6", "payment_email", "\u4ed8\u6b3e\u8cc7\u6599\u96fb\u5b50\u90f5\u4ef6", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "\u5831\u50f9\u55ae\u96fb\u5b50\u90f5\u4ef6", _s16_145, "\u4e0d\u7d42\u6b62\u7684\u63d0\u9192\u51fd", _s16_147, "\u4f9d\u4f7f\u7528\u8005\u7be9\u9078", "administrator", "\u7ba1\u7406\u8005", _s18_74, "\u5141\u8a31\u4f7f\u7528\u8005\u7ba1\u7406\u6240\u6709\u4f7f\u7528\u8005\u3001\u6539\u8b8a\u8a2d\u5b9a\u3001\u4fee\u6539\u6240\u6709\u7d00\u9304", "user_management", "\u7ba1\u7406\u4f7f\u7528\u8005", "users", "\u4f7f\u7528\u8005", "new_user", "\u65b0\u4f7f\u7528\u8005", "edit_user", "\u7de8\u8f2f\u4f7f\u7528\u8005", "created_user", "\u5df2\u6210\u529f\u5efa\u7acb\u4f7f\u7528\u8005", "updated_user", "\u66f4\u65b0\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "archived_user", "\u6b78\u6a94\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "deleted_user", "\u522a\u9664\u4f7f\u7528\u8005\u6210\u529f", "removed_user", _s25_39, "restored_user", "\u5fa9\u539f\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u4e00\u822c\u8a2d\u5b9a", "invoice_options", "\u767c\u7968\u9078\u9805", _s17_86, "\u96b1\u85cf\u8fc4\u4eca\u4e4b\u4ed8\u6b3e\u91d1\u984d", _s22_52, "\u4e00\u65e6\u6536\u5230\u4ed8\u6b3e\uff0c\u50c5\u5728\u60a8\u7684\u767c\u7968\u4e0a\u986f\u793a\u300c\u8fc4\u4eca\u4e4b\u4ed8\u6b3e\u91d1\u984d\u300d\u3002", _s23_26, "\u5d4c\u5165\u7684\u6587\u4ef6", _s28_20, "\u5728\u767c\u7968\u4e0a\u9644\u52a0\u5716\u7247\u3002", _s16_151, "\u986f\u793a\u9801\u9996\u65bc", _s16_152, "\u986f\u793a\u9801\u5c3e\u65bc", "first_page", "\u7b2c\u4e00\u9801", "all_pages", "\u6240\u6709\u9801\u9762", "last_page", "\u6700\u5f8c\u4e00\u9801", "primary_font", "\u4e3b\u8981\u5b57\u578b", "secondary_font", "\u6b21\u8981\u5b57\u578b", "primary_color", "\u4e3b\u8981\u8272\u5f69", "secondary_color", "\u6b21\u8981\u8272\u5f69", "page_size", "\u9801\u9762\u5c3a\u5bf8", "font_size", "\u5b57\u578b\u5927\u5c0f", "quote_design", "\u5831\u50f9\u55ae\u8a2d\u8a08", "invoice_fields", "\u767c\u7968\u6b04\u4f4d", "product_fields", "\u7522\u54c1\u6b04\u4f4d", "invoice_terms", "\u767c\u7968\u4e4b\u689d\u6b3e", "invoice_footer", "\u767c\u7968\u9801\u5c3e", "quote_terms", "\u5831\u50f9\u55ae\u689d\u6b3e", "quote_footer", "\u5831\u50f9\u55ae\u9801\u5c3e", _s18_75, "\u81ea\u52d5\u96fb\u5b50\u90f5\u4ef6", _s23_27, "\u9031\u671f\u6027\u767c\u7968\u5efa\u7acb\u5f8c\uff0c\u81ea\u52d5\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u3002", _s18_76, "\u81ea\u52d5\u6b78\u6a94", _s23_28, "\u5831\u50f9\u55ae\u8f49\u63db\u5f8c\uff0c\u81ea\u52d5\u5c07\u5b83\u5011\u6b78\u6a94\u3002", _s18_77, "\u81ea\u52d5\u8f49\u63db", _s23_29, "\u5728\u7528\u6236\u6838\u51c6\u5f8c\u81ea\u52d5\u5c07\u5831\u50f9\u55ae\u8f49\u63db\u70ba\u767c\u7968\u3002", _s17_88, "\u5de5\u4f5c\u6d41\u7a0b\u8a2d\u5b9a", "freq_daily", "\u6bcf\u5929", "freq_weekly", "\u6bcf\u661f\u671f", "freq_two_weeks", "\u5169\u661f\u671f", "freq_four_weeks", "\u56db\u661f\u671f", "freq_monthly", "\u6bcf\u6708", "freq_two_months", "\u5169\u500b\u6708", _s17_90, "\u4e09\u500b\u6708", _s16_153, "\u56db\u500b\u6708", "freq_six_months", "\u516d\u500b\u6708", "freq_annually", "Annually", "freq_two_years", "\u5169\u5e74", _s16_154, "Three Years", "never", "\u6c38\u4e0d", "company", "\u516c\u53f8", _s17_91, "\u81ea\u52d5\u7522\u751f\u4e4b\u865f\u78bc", "charge_taxes", "\u9644\u6536\u7a05\u6b3e", "next_reset", "\u4e0b\u4e00\u6b21\u91cd\u8a2d", "reset_counter", "\u91cd\u8a2d\u8a08\u6578\u5668", _s16_155, "\u7528\u4ee5\u6a19\u793a\u9031\u671f\u6027\u7684\u524d\u7f6e\u7b26\u865f", "number_padding", "\u6578\u5b57\u586b\u5145", "general", "\u4e00\u822c", "surcharge_field", "\u9644\u52a0\u8cbb\u6b04\u4f4d", "company_field", "\u516c\u53f8\u6b04\u4f4d", "company_value", "\u516c\u53f8\u503c", "credit_field", "\u4fe1\u7528\u6b04\u4f4d", "invoice_field", "\u767c\u7968\u6b04\u4f4d", _s17_93, "\u767c\u7968\u984d\u5916\u8cbb\u7528", "client_field", "\u7528\u6236\u6b04\u4f4d", "product_field", "\u7522\u54c1\u6b04\u4f4d", "payment_field", "\u4ed8\u6b3e\u6b04\u4f4d", "contact_field", "\u806f\u7d61\u4eba\u6b04\u4f4d", "vendor_field", "\u4f9b\u61c9\u5546\u6b04\u4f4d", "expense_field", "\u652f\u51fa\u6b04\u4f4d", "project_field", "\u5c08\u6848\u6b04\u4f4d", "task_field", "\u4efb\u52d9\u6b04\u4f4d", "group_field", "\u7fa4\u7d44\u6b04\u4f4d", "number_counter", "\u6578\u5b57\u8a08\u6578\u5668", "prefix", "\u524d\u7f6e\u7b26\u865f", "number_pattern", "\u6578\u5b57\u6a21\u5f0f", "messages", "\u8a0a\u606f", "custom_css", "\u81ea\u8a02\u6a23\u5f0f\u8868", _s17_95, "\u81ea\u8a02 JavaScript", _s16_157, "\u5728 PDF \u6a94\u6848\u4e0a\u986f\u793a", _s21_68, "\u5728\u767c\u7968/\u5831\u50f9\u55ae PDF \u986f\u793a\u7528\u6236\u7c3d\u540d\u3002", _s25_40, "\u767c\u7968\u689d\u6b3e\u6838\u53d6\u65b9\u584a", _s30_9, "\u8981\u6c42\u7528\u6236\u78ba\u8a8d\u4ed6\u5011\u63a5\u53d7\u767c\u7968\u689d\u6b3e\u3002", _s23_30, "\u5831\u50f9\u55ae\u689d\u6b3e\u6838\u53d6\u65b9\u584a", _s28_21, "\u8981\u6c42\u7528\u6236\u78ba\u8a8d\u4ed6\u5011\u63a5\u53d7\u5831\u50f9\u689d\u6b3e\u3002", _s25_41, "\u767c\u7968\u7c3d\u540d", _s30_10, "\u8981\u6c42\u7528\u6236\u63d0\u4f9b\u5176\u7c3d\u540d\u3002", _s23_31, "\u5831\u50f9\u55ae\u7c3d\u540d", _s22_54, "\u7528\u4ee5\u4fdd\u8b77\u767c\u7968\u7684\u5bc6\u78bc", _s27_36, "\u4f7f\u60a8\u80fd\u5920\u70ba\u6bcf\u4f4d\u806f\u7d61\u4eba\u8a2d\u5b9a\u5bc6\u78bc\u3002\u82e5\u8a2d\u5b9a\u5bc6\u78bc\uff0c\u806f\u7d61\u4eba\u5c07\u6703\u5728\u67e5\u770b\u767c\u7968\u4e4b\u524d\u88ab\u8981\u6c42\u8f38\u5165\u5bc6\u78bc\u3002", "authorization", "\u6388\u6b0a", "subdomain", "\u5b50\u7db2\u57df", "domain", "\u7db2\u57df", "portal_mode", "\u5165\u53e3\u7db2\u7ad9\u6a21\u5f0f", "email_signature", "\u5411\u60a8\u81f4\u610f\uff0c", _s24_38, "\u900f\u904e\u5728\u96fb\u5b50\u90f5\u4ef6\u4e2d\u52a0\u5165 schema.org \u6a19\u8a18\uff0c\u4f7f\u60a8\u7684\u7528\u6236\u66f4\u8f15\u9b06\u5730\u652f\u4ed8\u60a8\u7684\u8cbb\u7528\u3002", "plain", "\u7d14\u6587\u5b57", "light", "\u6dfa\u8272", "dark", "\u6df1\u8272", "email_design", "\u96fb\u5b50\u90f5\u4ef6\u7684\u8a2d\u8a08", "attach_pdf", "\u9644\u52a0 PDF \u6a94\u6848", _s16_158, "\u9644\u52a0\u6587\u4ef6", "attach_ubl", "\u9644\u52a0 UBL", "email_style", "\u96fb\u5b50\u90f5\u4ef6\u6a23\u5f0f", _s19_42, "\u555f\u7528\u7db2\u9801\u6a19\u793a", "reply_to_email", "\u56de\u8986\u96fb\u5b50\u90f5\u4ef6", "reply_to_name", "Reply-To Name", "bcc_email", "\u96fb\u5b50\u90f5\u4ef6\u5bc6\u4ef6\u526f\u672c", "processed", "\u8655\u7406", "credit_card", "\u4fe1\u7528\u5361", "bank_transfer", "\u9280\u884c\u8f49\u5e33", "priority", "\u512a\u5148\u9806\u5e8f", "fee_amount", "\u8cbb\u7528\u91d1\u984d", "fee_percent", "\u8cbb\u7528\u767e\u5206\u6bd4", "fee_cap", "\u8cbb\u7528\u4e0a\u9650", "limits_and_fees", "\u9650\u984d/\u8cbb\u7528", "enable_min", "\u555f\u7528\u6700\u5c0f\u503c", "enable_max", "\u555f\u7528\u6700\u5927\u503c", "min_limit", "\u6700\u5c0f\u503c: :min", "max_limit", "\u6700\u5927\u503c: :max", "min", "\u6700\u5c0f\u503c", "max", "\u6700\u5927\u503c", _s19_43, "\u63a5\u53d7\u7684\u5361\u7247\u6a19\u8a8c", "credentials", "\u8a8d\u8b49", "update_address", "\u66f4\u65b0\u5730\u5740", _s19_45, "\u4f7f\u7528\u63d0\u4f9b\u7684\u8a73\u7d30\u8cc7\u6599\u66f4\u65b0\u7528\u6236\u7684\u5730\u5740", "rate", "\u7387", "tax_rate", "\u7a05\u7387", "new_tax_rate", "\u65b0\u7a05\u7387", "edit_tax_rate", "\u7de8\u8f2f\u7a05\u7387", _s16_160, "\u5df2\u6210\u529f\u5730\u5efa\u7acb\u7a05\u7387", _s16_161, "\u66f4\u65b0\u7a05\u7387\u6210\u529f", _s17_98, "\u6b78\u6a94\u7a05\u7387\u8cc7\u6599\u6210\u529f", _s16_162, "\u6210\u529f\u522a\u9664\u7a05\u7387", _s17_99, "\u6210\u529f\u6062\u5fa9\u7a05\u7387", _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u81ea\u52d5\u586b\u5165\u4e4b\u7522\u54c1\u9805\u76ee", _s18_80, "\u9078\u64c7\u7522\u54c1\u5c07\u81ea\u52d5\u586b\u5beb\u63cf\u8ff0\u548c\u6210\u672c", "update_products", "\u81ea\u52d5\u66f4\u65b0\u7522\u54c1", _s20_65, "\u66f4\u65b0\u767c\u7968\u6642\u6703\u81ea\u52d5 \u66f4\u65b0\u7522\u54c1\u8cc7\u6599\u5eab", _s16_163, "\u8f49\u63db\u7522\u54c1", _s21_69, "\u81ea\u52d5\u5c07\u7522\u54c1\u50f9\u683c\u8f49\u63db\u70ba\u7528\u6236\u7684\u8ca8\u5e63", "fees", "\u8cbb\u7528", "limits", "\u9650\u5236", "provider", "\u4f9b\u61c9\u5546", "company_gateway", "\u4ed8\u6b3e\u9598\u9053", _s16_165, "\u4ed8\u6b3e\u9598\u9053", _s19_46, "\u65b0\u589e\u9598\u9053", _s20_66, "\u7de8\u8f2f\u9598\u9053", _s23_32, "\u5efa\u7acb\u9598\u9053\u8cc7\u6599\u6210\u529f", _s23_33, "\u66f4\u65b0\u9598\u9053\u8cc7\u6599\u6210\u529f", _s24_39, "\u5c01\u5b58\u9598\u9053\u8cc7\u6599\u6210\u529f", _s23_34, "\u522a\u9664\u9598\u9053\u8cc7\u6599\u6210\u529f", _s24_40, "\u5fa9\u539f\u9598\u9053\u6210\u529f", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "\u7e7c\u7e8c\u7de8\u8f2f", "discard_changes", "\u653e\u68c4\u8b8a\u66f4", "default_value", "\u9810\u8a2d\u503c", "disabled", "\u5df2\u505c\u7528", "currency_format", "\u8ca8\u5e63\u683c\u5f0f", _s21_70, "\u6bcf\u661f\u671f\u7684\u7b2c\u4e00\u5929", _s23_35, "\u5e74\u5ea6\u7684\u7b2c\u4e00\u500b\u6708", "sunday", "\u661f\u671f\u65e5", "monday", "\u661f\u671f\u4e00", "tuesday", "\u661f\u671f\u4e8c", "wednesday", "\u661f\u671f\u4e09", "thursday", "\u661f\u671f\u56db", "friday", "\u661f\u671f\u4e94", "saturday", "\u661f\u671f\u516d", "january", "\u4e00\u6708", "february", "\u4e8c\u6708", "march", "\u4e09\u6708", "april", "\u56db\u6708", "may", "\u4e94\u6708", "june", "\u516d\u6708", "july", "\u4e03\u6708", "august", "\u516b\u6708", "september", "\u4e5d\u6708", "october", "\u5341\u6708", "november", "\u5341\u4e00\u6708", "december", "\u5341\u4e8c\u6708", "symbol", "\u7b26\u865f", "ocde", "\u4ee3\u78bc", "date_format", "\u65e5\u671f\u683c\u5f0f", "datetime_format", "\u65e5\u671f\u6642\u9593\u683c\u5f0f", "military_time", "24 \u5c0f\u6642\u5236", _s18_81, "24 Hour Display", "send_reminders", "\u50b3\u9001\u63d0\u9192", "timezone", "\u6642\u5340", _s19_47, _s19_48, _s17_101, "\u4f9d\u7fa4\u7d44\u7be9\u9078", _s19_49, "\u4f9d\u767c\u7968\u7be9\u9078", _s18_82, "\u4f9d\u7528\u6236\u7aef\u7be9\u9078", _s18_84, "\u4f9d\u4f9b\u61c9\u5546\u7be9\u9078", "group_settings", "\u7fa4\u7d44\u8a2d\u5b9a", "group", "\u7fa4\u7d44", "groups", "\u7fa4\u7d44", "new_group", "\u65b0\u589e\u7fa4\u7d44", "edit_group", "\u7de8\u8f2f\u7fa4\u7d44", "created_group", "\u5df2\u6210\u529f\u5efa\u7acb\u7fa4\u7d44", "updated_group", "\u5df2\u6210\u529f\u66f4\u65b0\u7fa4\u7d44", "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", "\u5df2\u6210\u529f\u5c01\u5b58\u7fa4\u7d44", "deleted_group", "\u5df2\u6210\u529f\u522a\u9664\u7fa4\u7d44", "restored_group", "\u5df2\u6210\u529f\u9084\u539f\u7fa4\u7d44", "upload_logo", "\u4e0a\u50b3\u5fbd\u6a19", "uploaded_logo", "\u5df2\u6210\u529f\u4e0a\u50b3\u5fbd\u6a19", "logo", "\u6a19\u8a8c", "saved_settings", "\u5df2\u6210\u529f\u5132\u5b58\u8a2d\u5b9a", _s16_169, "\u7522\u54c1\u8a2d\u5b9a", "device_settings", "\u88dd\u7f6e\u8a2d\u5b9a", "defaults", "\u9810\u8a2d\u503c", "basic_settings", "\u57fa\u672c\u8a2d\u5b9a", _s17_103, "\u9032\u968e\u8a2d\u5b9a", "company_details", "\u516c\u53f8\u4e4b\u8a73\u7d30\u8cc7\u6599", "user_details", "\u4f7f\u7528\u8005\u8a73\u7d30\u8cc7\u6599", "localization", "\u672c\u5730\u5316", "online_payments", "\u7dda\u4e0a\u4ed8\u6b3e", "tax_rates", "\u7a05\u7387", "notifications", "\u6ce8\u610f\u4e8b\u9805", "import_export", "\u532f\u5165 | \u532f\u51fa", "custom_fields", "\u81ea\u8a02\u6b04\u4f4d", "invoice_design", "\u767c\u7968\u8a2d\u8a08", "buy_now_buttons", "\u73fe\u5728\u5373\u8cfc\u8cb7\u6309\u9215", "email_settings", "\u96fb\u5b50\u90f5\u4ef6\u8a2d\u5b9a", _s23_37, "\u7bc4\u672c\u8207\u63d0\u9192", _s22_55, "\u4fe1\u7528\u5361 & \u9280\u884c", _s19_51, "\u8cc7\u6599\u8996\u89ba\u5316", "price", "\u50f9\u683c", "email_sign_up", "\u96fb\u5b50\u90f5\u4ef6\u8a3b\u518a", "google_sign_up", "Google \u8a3b\u518a", _s27_40, "\u611f\u8b1d\u60a8\u7684\u8cfc\u8cb7!", "redeem", "\u514c\u63db", "back", "\u8fd4\u56de", "past_purchases", "\u904e\u53bb\u8cfc\u8cb7", _s19_53, "\u5e74\u5ea6\u8a02\u95b1", "pro_plan", "\u5c08\u696d\u65b9\u6848", "enterprise_plan", "\u4f01\u696d\u65b9\u6848", "count_users", ":count users", "upgrade", "\u5347\u7d1a", _s25_45, "\u8acb\u8f38\u5165\u540d\u5b57", _s24_42, "\u8acb\u8f38\u5165\u59d3\u6c0f", _s33_21, "\u8acb\u540c\u610f\u670d\u52d9\u689d\u6b3e\u548c\u96b1\u79c1\u653f\u7b56\u4ee5\u5efa\u7acb\u5e33\u6236\u3002", "i_agree_to_the", "\u6211\u540c\u610f", _s16_171, "\u670d\u52d9\u689d\u6b3e", "privacy_policy", "\u96b1\u79c1\u6b0a\u653f\u7b56", "sign_up", "\u767b\u5165", "account_login", "\u767b\u5165\u5e33\u6236", "view_website", "\u6aa2\u8996\u7db2\u7ad9", "create_account", "\u5efa\u7acb\u5e33\u6236", "email_login", "\u96fb\u5b50\u90f5\u4ef6\u767b\u5165", "create_new", "\u5efa\u7acb\u65b0\u7684", _s18_86, "\u672a\u9078\u53d6\u4efb\u4f55\u8a18\u9304", _s21_73, "\u8acb\u5132\u5b58\u6216\u53d6\u6d88\u60a8\u7684\u8b8a\u66f4", "download", "\u4e0b\u8f09", _s27_41, "\u9700\u8981\u4f01\u696d\u65b9\u6848", "take_picture", "\u62cd\u7167", "upload_file", "\u4e0a\u50b3\u6a94\u6848", "document", "\u6587\u4ef6", "documents", "\u6587\u4ef6", "new_document", "\u65b0\u65b0\u6587\u4ef6", "edit_document", "\u7de8\u8f2f\u6587\u4ef6", _s17_105, "\u5df2\u6210\u529f\u4e0a\u8f09\u6587\u4ef6", _s16_173, "\u5df2\u6210\u529f\u66f4\u65b0\u6587\u4ef6", _s17_106, "\u5df2\u6210\u529f\u5c01\u5b58\u6587\u4ef6", _s16_174, "\u5df2\u6210\u529f\u522a\u9664\u6587\u4ef6", _s17_107, "\u5df2\u6210\u529f\u9084\u539f\u6587\u4ef6", _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "\u7121\u6b77\u53f2\u8a18\u9304", "expense_date", "\u652f\u51fa\u65e5\u671f", "pending", "\u64f1\u7f6e", _s16_175, "\u5df2\u767b\u5165", _s16_176, "\u64f1\u7f6e", _s16_177, "\u5df2\u958b\u7acb\u767c\u7968\u7684", "converted", "\u5df2\u8f49\u63db", _s24_44, "\u65b0\u589e\u6587\u4ef6\u81f3\u767c\u7968", "exchange_rate", "\u532f\u7387", _s16_178, "\u8f49\u63db\u8ca8\u5e63\u55ae\u4f4d", "mark_paid", "\u6a19\u8a18\u5df2\u4ed8", "category", "\u985e\u5225", "address", "\u5730\u5740", "new_vendor", "\u65b0\u4f9b\u61c9\u5546", "created_vendor", "\u5efa\u7acb\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "updated_vendor", "\u66f4\u65b0\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "archived_vendor", "\u6b78\u6a94\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "deleted_vendor", "\u522a\u9664\u4f9b\u61c9\u5546\u6210\u529f", "restored_vendor", "\u5fa9\u539f\u4f9b\u61c9\u5546\u6210\u529f", _s16_179, "\u6b78\u6a94 :count \u7b46\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "deleted_vendors", "\u522a\u9664 :count \u7b46\u4f9b\u61c9\u5546\u6210\u529f", _s16_180, _s36_11, "new_expense", "\u8f38\u5165\u652f\u51fa", "created_expense", "\u5df2\u6210\u529f\u5efa\u7acb\u652f\u51fa", "updated_expense", "\u66f4\u65b0\u652f\u51fa\u8cc7\u6599\u6210\u529f", _s16_181, "\u6b78\u6a94\u652f\u51fa\u9805\u76ee\u6210\u529f", "deleted_expense", "\u522a\u9664\u652f\u51fa\u9805\u76ee\u6210\u529f", _s16_182, "\u5fa9\u539f\u652f\u51fa\u8cc7\u6599\u6210\u529f", _s17_109, "\u6b78\u6a94\u652f\u51fa\u9805\u76ee\u6210\u529f", _s16_183, "\u522a\u9664\u652f\u51fa\u9805\u76ee\u6210\u529f", _s17_110, _s37_14, "copy_shipping", "\u8907\u88fd\u9001\u8ca8\u5730\u5740", "copy_billing", "\u8907\u88fd\u5e33\u55ae\u5730\u5740", "design", "\u8a2d\u8a08", _s21_74, "\u627e\u4e0d\u5230\u8a18\u9304", "invoiced", "\u5df2\u958b\u7acb\u767c\u7968\u7684", "logged", "\u5df2\u767b\u5165", "running", "\u57f7\u884c\u4e2d", "resume", "\u7e7c\u7e8c", "task_errors", "\u8acb\u4fee\u6b63\u6240\u6709\u7684\u91cd\u758a\u6642\u6bb5", "start", "\u958b\u59cb", "stop", "\u505c\u6b62", "started_task", "\u5c55\u958b\u4efb\u52d9\u6210\u529f", "stopped_task", "\u505c\u6b62\u4efb\u52d9\u6210\u529f", "resumed_task", "\u5fa9\u539f\u4efb\u52d9\u6210\u529f", "now", "\u73fe\u5728", _s16_184, "\u81ea\u52d5\u555f\u52d5\u4efb\u52d9", "timer", "\u8a08\u6642\u5668", "manual", "\u624b\u52d5", "budgeted", "\u9810\u7b97", "start_time", "\u958b\u59cb\u6642\u9593", "end_time", "\u7d50\u675f\u6642\u9593", "date", "\u65e5\u671f", "times", "\u6642\u6bb5", "duration", "\u6642\u9593\u9577\u5ea6", "new_task", "\u65b0\u4efb\u52d9", "created_task", "\u5efa\u7acb\u5de5\u4f5c\u9805\u76ee\u6210\u529f", "updated_task", "\u66f4\u65b0\u5de5\u4f5c\u9805\u76ee\u6210\u529f", "archived_task", "\u6b78\u6a94\u4efb\u52d9\u8cc7\u6599\u6210\u529f", "deleted_task", "\u522a\u9664\u4efb\u52d9\u6210\u529f", "restored_task", "\u5fa9\u539f\u4efb\u52d9\u8cc7\u6599\u6210\u529f", "archived_tasks", "\u6b78\u6a94 :count \u9805\u4efb\u52d9\u6210\u529f", "deleted_tasks", "\u522a\u9664 :count \u9805\u4efb\u52d9\u6210\u529f", "restored_tasks", _s34_19, _s19_55, "\u8acb\u8f38\u5165\u59d3\u540d", "budgeted_hours", "\u5217\u5165\u9810\u7b97\u7684\u5c0f\u6642", "created_project", "\u5efa\u7acb\u5c08\u6848\u6210\u529f", "updated_project", "\u6210\u529f\u66f4\u65b0\u7684\u5c08\u6848", _s16_186, "\u6b78\u6a94\u5c08\u6848\u9805\u76ee\u6210\u529f", "deleted_project", _s28_33, _s16_187, "\u5fa9\u539f\u5c08\u6848\u6210\u529f", _s17_111, "\u6b78\u6a94 :count \u9805\u5c08\u6848\u6210\u529f", _s16_188, "\u522a\u9664 :count \u4ef6\u5c08\u6848\u6210\u529f", _s17_112, _s37_15, "new_project", "\u65b0\u5c08\u6848", _s27_45, "\u611f\u8b1d\u60a8\u4f7f\u7528\u6211\u5011\u7684\u61c9\u7528\u7a0b\u5f0f!", "if_you_like_it", "\u5982\u679c\u60a8\u559c\u6b61\uff0c\u8acb", "click_here", "\u6309\u4e00\u4e0b\u6b64\u8655", _s18_90, "Click here", "to_rate_it", "\u7d66\u5b83\u8a55\u5206\u3002", "average", "\u5e73\u5747", "unapproved", "\u672a\u540c\u610f", _s30_15, "\u8acb\u9032\u884c\u8eab\u4efd\u9a57\u8b49\u4ee5\u8b8a\u66f4\u9019\u500b\u8a2d\u5b9a", "locked", "\u9396\u5b9a", "authenticate", "\u8eab\u4efd\u9a57\u8b49", _s19_57, "\u8acb\u9a57\u8b49", _s24_46, "\u751f\u7269\u8b58\u5225\u9a57\u8b49", "footer", "\u9801\u5c3e", "compare", "\u6bd4\u8f03", "hosted_login", "\u8a17\u7ba1\u767b\u5165", "selfhost_login", "Selfhost \u767b\u5165", "google_sign_in", _s19_71, "today", "\u4eca\u5929", "custom_range", "\u81ea\u8a02\u7bc4\u570d", "date_range", "\u65e5\u671f\u7bc4\u570d", "current", "\u76ee\u524d", "previous", "\u4ee5\u524d", "current_period", "\u76ee\u524d\u671f\u9650", _s17_113, "\u6bd4\u8f03\u671f\u9650", "previous_period", "\u4e0a\u4e00\u671f\u9650", "previous_year", "\u4e0a\u4e00\u5e74\u5ea6", "compare_to", "\u6bd4\u8f03", "last7_days", "\u6700\u8fd1 7 \u5929", "last_week", "\u4e0a\u500b\u661f\u671f", "last30_days", "\u6700\u8fd1 30 \u5929", "this_month", "\u672c\u6708", "last_month", "\u4e0a\u500b\u6708", "this_year", "\u4eca\u5e74", "last_year", "\u4e0b\u500b\u6708", "custom", "\u81ea\u8a02", _s16_189, "\u518d\u88fd\u5230\u767c\u7968", "clone_to_quote", "\u518d\u88fd\u5230\u5831\u50f9\u55ae", "clone_to_credit", "Clone to Credit", "view_invoice", "\u6aa2\u8996\u767c\u7968", "convert", "\u8f49\u63db", "more", "\u66f4\u591a", "edit_client", "\u7de8\u8f2f\u7528\u6236", "edit_product", "\u7de8\u8f2f\u7522\u54c1\u8cc7\u6599", "edit_invoice", "\u7de8\u8f2f\u767c\u7968", "edit_quote", "\u7de8\u8f2f\u5831\u50f9\u55ae", "edit_payment", "\u7de8\u8f2f\u4ed8\u6b3e\u8cc7\u6599", "edit_task", "\u7de8\u8f2f\u5de5\u4f5c\u9805\u76ee", "edit_expense", "\u7de8\u8f2f\u652f\u51fa", "edit_vendor", "\u7de8\u8f2f\u4f9b\u61c9\u5546", "edit_project", "\u7de8\u8f2f\u5c08\u6848", _s20_68, "\u7de8\u8f2f\u9031\u671f\u6027\u5831\u50f9\u55ae", "billing_address", "\u5e33\u55ae\u5730\u5740", _s16_191, "\u9001\u8ca8\u4f4d\u5740", "total_revenue", "\u7e3d\u6536\u5165", "average_invoice", "\u5e73\u5747\u92b7\u552e\u984d", "outstanding", "\u672a\u4ed8\u6e05\u7684", "invoices_sent", "\u5df2\u5bc4\u51fa :count \u4efd\u767c\u7968", "active_clients", "\u4f7f\u7528\u4e2d\u7528\u6236", "close", "\u95dc\u9589", "email", "\u96fb\u5b50\u90f5\u4ef6", "password", "\u5bc6\u78bc", "url", "URL", "secret", "\u79d8\u5bc6", "name", "\u59d3\u540d", "logout", "\u767b\u51fa", "login", "\u767b\u5165", "filter", "\u7be9\u9078\u5668", "sort", "\u6392\u5e8f", "search", "\u641c\u5c0b", "active", "\u4f7f\u7528\u4e2d", "archived", "\u5df2\u6b78\u6a94", "deleted", "\u5df2\u522a\u9664", "dashboard", "\u5100\u8868\u677f", "archive", "\u6b78\u6a94", "delete", "\u522a\u9664", "restore", "\u5fa9\u539f", _s16_193, "\u91cd\u65b0\u6574\u7406\u5b8c\u6210", _s23_38, "\u8acb\u8f38\u5165\u60a8\u7684\u96fb\u5b50\u90f5\u4ef6", _s26_32, "\u8acb\u8f38\u5165\u60a8\u7684\u5bc6\u78bc", _s21_77, "\u8acb\u8f38\u5165\u60a8\u7684\u7db2\u5740", _s26_34, "\u8acb\u8f38\u5165\u7522\u54c1\u91d1\u9470", "ascending", "\u905e\u589e", "descending", "\u905e\u6e1b", "save", "\u5132\u5b58", _s17_115, "\u767c\u751f\u932f\u8aa4", "paid_to_date", "\u5df2\u4ed8", "balance_due", "\u5230\u671f\u9918\u984d", "balance", "\u5dee\u984d", "overview", "\u7e3d\u89bd", "details", "\u8a73\u7d30\u8cc7\u6599", "phone", "\u96fb\u8a71", "website", "\u7db2\u7ad9", "vat_number", "\u52a0\u503c\u7a05\u7de8\u865f", "id_number", "ID \u7de8\u865f", "create", "\u5efa\u7acb", _s19_59, "\u8907\u88fd :value \u5230\u526a\u8cbc\u7c3f", "error", "\u932f\u8aa4", _s16_195, "\u7121\u6cd5\u555f\u52d5", "contacts", "\u806f\u7d61\u4eba", "additional", "\u984d\u5916", "first_name", "\u540d\u5b57", "last_name", "\u59d3\u6c0f", "add_contact", "\u65b0\u589e\u806f\u7d61\u8cc7\u6599", "are_you_sure", "\u60a8\u78ba\u5b9a\u55ce?", "cancel", "\u53d6\u6d88", "ok", "\u6b63\u5e38", "remove", "\u522a\u9664", _s16_197, "\u96fb\u5b50\u90f5\u4ef6\u7121\u6548", "product", "\u7522\u54c1", "products", "\u7522\u54c1", "new_product", "\u65b0\u7522\u54c1", "created_product", "\u5efa\u7acb\u7522\u54c1\u8cc7\u6599\u6210\u529f", "updated_product", "\u6210\u529f\u66f4\u65b0\u7684\u7522\u54c1\u8cc7\u6599", _s16_199, "\u6b78\u6a94\u7522\u54c1\u8cc7\u6599\u6210\u529f", "deleted_product", "\u5df2\u6210\u529f\u522a\u9664\u7522\u54c1\u8cc7\u6599", _s16_200, "\u5fa9\u539f\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s17_117, "\u6b78\u6a94 :count \u9805\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s16_201, "\u522a\u9664 :count \u7b46\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s17_118, _s37_16, "product_key", "\u7522\u54c1", "notes", "\u8a3b\u8a18", "cost", "\u6210\u672c", "client", "\u7528\u6236", "clients", "\u7528\u6236", "new_client", "\u65b0\u7528\u6236", "created_client", "\u5efa\u7acb\u7528\u6236\u8cc7\u6599\u6210\u529f", "updated_client", "\u66f4\u65b0\u7528\u6236\u8cc7\u6599\u6210\u529f", "archived_client", "\u6b78\u6a94\u7528\u6236\u8cc7\u6599\u6210\u529f", _s16_202, "\u6b78\u6a94 :count \u500b\u7528\u6236\u8cc7\u6599\u6210\u529f", "deleted_client", "\u522a\u9664\u7528\u6236\u8cc7\u6599\u6210\u529f", "deleted_clients", "\u522a\u9664 :count \u7b46\u7528\u6236\u8cc7\u6599\u6210\u529f", "restored_client", "\u5fa9\u539f\u7528\u6236\u8cc7\u6599\u6210\u529f", _s16_203, _s36_13, "address1", "\u8857\u9053", "address2", "\u5927\u6a13/\u5957\u623f", "city", "\u57ce\u5e02", "state", "\u5dde/\u7701", "postal_code", "\u90f5\u905e\u5340\u865f", "country", "\u570b\u5bb6", "invoice", "\u767c\u7968", "invoices", "\u767c\u7968", "new_invoice", "\u65b0\u767c\u7968", "created_invoice", "\u88fd\u4f5c\u5b8c\u6210\u7684\u767c\u7968", "updated_invoice", "\u66f4\u65b0\u767c\u7968\u6210\u529f", _s16_204, "\u6b78\u6a94\u767c\u7968\u8cc7\u6599\u6210\u529f", "deleted_invoice", "\u522a\u9664\u767c\u7968\u6210\u529f", _s16_205, "\u5fa9\u539f\u767c\u7968\u6210\u529f", _s17_119, "\u6b78\u6a94 :count \u7b46\u767c\u7968\u8cc7\u6599\u6210\u529f", _s16_206, "\u522a\u9664 :count \u7b46\u767c\u7968\u6210\u529f", _s17_120, _s37_17, "emailed_invoice", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u767c\u7968\u6210\u529f", "emailed_payment", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u4ed8\u6b3e\u6210\u529f", "amount", "\u91d1\u984d", "invoice_number", "\u767c\u7968\u865f\u78bc", "invoice_date", "\u767c\u7968\u958b\u7acb\u65e5\u671f", "discount", "\u6298\u6263", "po_number", "\u90f5\u905e\u5340\u865f", "terms", "\u689d\u6b3e", "public_notes", "\u516c\u958b\u8a3b\u8a18", "private_notes", "\u79c1\u4eba\u8a3b\u8a18", "frequency", "\u983b\u7387", "start_date", "\u958b\u59cb\u65e5\u671f", "end_date", "\u7d50\u675f\u65e5\u671f", "quote_number", "\u5831\u50f9\u55ae\u7de8\u865f", "quote_date", "\u5831\u50f9\u55ae\u65e5\u671f", "valid_until", "\u6709\u6548\u81f3", "items", "\u500b\u9805\u76ee", "partial_deposit", "\u5b58\u6b3e", "description", "\u63cf\u8ff0", "unit_cost", "\u55ae\u4f4d\u6210\u672c", "quantity", "\u6578\u91cf", "add_item", "\u52a0\u5165\u9805\u76ee", "contact", "\u806f\u7d61\u4eba", "work_phone", "\u96fb\u8a71", "total_amount", "\u7e3d\u91d1\u984d", "pdf", "PDF", "due_date", "\u61c9\u4ed8\u6b3e\u65e5\u671f", _s16_207, "\u90e8\u5206\u622a\u6b62\u65e5\u671f", "status", "\u72c0\u614b", _s17_121, "\u767c\u7968\u72c0\u614b", "quote_status", "\u5831\u50f9\u55ae\u72c0\u614b", _s22_56, "\u6309\u4e00\u4e0b + \u4f86\u52a0\u5165\u9805\u76ee", _s22_58, "\u6309\u4e00\u4e0b + \u4f86\u52a0\u5165\u9805\u76ee", "count_selected", ":count \u9805\u5df2\u9078\u53d6", "total", "\u7e3d\u8a08", "percent", "\u767e\u5206\u6bd4", "edit", "\u7de8\u8f2f", "dismiss", "\u64a4\u92b7", _s20_70, "\u8acb\u9078\u53d6\u65e5\u671f", _s22_59, "\u8acb\u9078\u53d6\u4e00\u500b\u7528\u6236", _s24_48, "\u8acb\u9078\u53d6\u767c\u7968", "task_rate", "\u4efb\u52d9\u8cbb\u7387", "settings", "\u8a2d\u5b9a", "language", "\u8a9e\u8a00", "currency", "\u8ca8\u5e63", "created_at", "\u5efa\u7acb\u65e5\u671f", "created_on", "Created On", "updated_at", "\u66f4\u65b0", "tax", "\u7a05", _s30_17, "\u8acb\u8f38\u5165\u767c\u7968\u7de8\u865f", _s27_49, "\u8acb\u8f38\u5165\u5831\u50f9\u55ae\u7de8\u865f", "past_due", "\u904e\u53bb\u5230\u671f", "draft", "\u8349\u7a3f", "sent", "\u5df2\u50b3\u9001", "viewed", "\u5df2\u6aa2\u8996", "approved", "\u5df2\u6838\u51c6", "partial", "\u5b58\u6b3e", "paid", "\u5df2\u4ed8\u6b3e", "mark_sent", "\u6a19\u8a18\u5df2\u50b3\u9001", _s22_61, "\u6a19\u8a18\u767c\u7968\u70ba\u5df2\u50b3\u9001\u6210\u529f", _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "\u5b8c\u6210", _s37_18, "\u8acb\u8f38\u5165\u7528\u6236\u6216\u9023\u7d61\u4eba\u59d3\u540d", "dark_mode", "\u9ed1\u6697\u6a21\u5f0f", _s27_51, "\u91cd\u65b0\u555f\u52d5\u61c9\u7528\u7a0b\u5f0f\u4ee5\u5957\u7528\u8b8a\u66f4", "refresh_data", "\u91cd\u65b0\u6574\u7406\u8cc7\u6599", "blank_contact", "\u7a7a\u767d\u9023\u7d61\u4eba", "activity", "\u6d3b\u52d5", _s16_209, "\u627e\u4e0d\u5230\u8a18\u9304", "clone", "\u518d\u88fd", "loading", "\u8f09\u5165\u4e2d", "industry", "\u5de5\u696d", "size", "\u5927\u5c0f", "payment_terms", "\u4ed8\u6b3e\u689d\u4ef6", "payment_date", "\u4ed8\u6b3e\u65e5\u671f", "payment_status", "\u4ed8\u6b3e\u72c0\u614b", _s16_211, "\u64f1\u7f6e", _s16_212, "\u4f5c\u5ee2", _s16_213, "\u5931\u6557", _s16_214, "\u5b8c\u6210", _s16_215, "\u90e8\u5206\u9000\u6b3e", _s16_216, "\u9000\u6b3e", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "\u6de8\u984d", "client_portal", "\u7528\u6236\u9580\u6236\u9801\u9762", "show_tasks", "\u986f\u793a\u4efb\u52d9", "email_reminders", "\u96fb\u5b50\u90f5\u4ef6\u63d0\u9192", "enabled", "\u555f\u7528", "recipients", "\u6536\u4ef6\u4eba", "initial_email", "\u6700\u521d\u7684\u96fb\u5b50\u90f5\u4ef6", "first_reminder", "\u9996\u6b21\u63d0\u9192", "second_reminder", "\u7b2c\u4e8c\u6b21\u63d0\u9192", "third_reminder", "\u7b2c\u4e09\u6b21\u63d0\u9192", "reminder1", "\u9996\u6b21\u63d0\u9192", "reminder2", "\u7b2c\u4e8c\u6b21\u63d0\u9192", "reminder3", "\u7b2c\u4e09\u6b21\u63d0\u9192", "template", "\u7bc4\u672c", "send", "\u50b3\u9001", "subject", "\u4e3b\u65e8", "body", "\u5167\u6587", "send_email", "\u5bc4\u9001\u96fb\u5b50\u90f5\u4ef6", "email_receipt", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u4ed8\u6b3e\u6536\u64da\u7d66\u7528\u6236", "auto_billing", "\u81ea\u52d5\u8a08\u8cbb", "button", "\u6309\u9215", "preview", "\u9810\u89bd", "customize", "\u81ea\u8a02", "history", "\u6b77\u7a0b\u7d00\u9304", "payment", "\u4ed8\u6b3e", "payments", "\u4ed8\u6b3e", "refunded", "\u9000\u6b3e", "payment_type", "\u4ed8\u6b3e\u65b9\u5f0f", _s21_79, "\u8f49\u5e33\u8cc7\u6599", "enter_payment", "\u8f38\u5165\u4ed8\u6b3e\u8cc7\u6599", "new_payment", "\u8f38\u5165\u4ed8\u6b3e\u8cc7\u6599", "created_payment", "\u5df2\u5efa\u7acb\u5b8c\u6210\u7684\u4ed8\u6b3e\u8cc7\u6599", "updated_payment", "\u66f4\u65b0\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_217, "\u6b78\u6a94\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_payment", "\u522a\u9664\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_218, "\u5fa9\u539f\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s17_124, "\u6b78\u6a94 :count \u7b46\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_219, "\u522a\u9664 :count \u7b46\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s17_125, _s37_20, "quote", "\u5831\u50f9\u55ae", "quotes", "\u5831\u50f9\u55ae", "new_quote", "\u65b0\u5831\u50f9\u55ae", "created_quote", "\u5831\u50f9\u55ae\u5efa\u7acb\u6210\u529f", "updated_quote", "\u5831\u50f9\u55ae\u66f4\u65b0\u6210\u529f", "archived_quote", "\u6b78\u6a94\u5831\u50f9\u55ae\u6210\u529f", "deleted_quote", "\u5831\u50f9\u55ae\u522a\u9664\u6210\u529f", "restored_quote", "\u5fa9\u539f\u5831\u50f9\u55ae\u6210\u529f", "archived_quotes", "\u6b78\u6a94 :count \u4efd\u5831\u50f9\u55ae\u6210\u529f", "deleted_quotes", "\u522a\u9664 :count \u7b46\u5831\u50f9\u55ae\u6210\u529f", "restored_quotes", _s35_21, "expense", "\u652f\u51fa", "expenses", "\u652f\u51fa", "vendor", "\u4f9b\u61c9\u5546", "vendors", "\u4f9b\u61c9\u5546", "task", "\u4efb\u52d9", "tasks", "\u4efb\u52d9", "project", "\u5c08\u6848", "projects", "\u5c08\u6848", "activity_1", ":user \u5df2\u5efa\u7acb\u7528\u6236 :client", "activity_2", ":user \u5df2\u5c07\u7528\u6236 :client \u6b78\u6a94", "activity_3", ":user \u5df2\u522a\u9664\u7528\u6236 :client", "activity_4", ":user \u5df2\u5efa\u7acb\u767c\u7968 :invoice", "activity_5", ":user \u5df2\u66f4\u65b0\u767c\u7968 :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user \u5df2\u5c07\u767c\u7968 :invoice \u6b78\u6a94", "activity_9", ":user \u5df2\u522a\u9664\u767c\u7968 :invoice", "activity_10", _s85_0, "activity_11", ":user \u5df2\u66f4\u65b0\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_12", ":user \u5df2\u5c07\u4ed8\u6b3e\u8cc7\u6599 :payment \u6b78\u6a94", "activity_13", ":user \u5df2\u522a\u9664\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_14", ":user \u5df2\u8f38\u5165\u8cb8\u6b3e\u8cc7\u6599 :credit", "activity_15", ":user \u66f4\u65b0\u8cb8\u6b3e :credit", "activity_16", ":user \u5df2\u5c07 :credit \u8cb8\u6b3e\u8cc7\u6599\u6b78\u6a94", "activity_17", ":user \u5df2\u522a\u9664 :credit \u8cb8\u6b3e\u8cc7\u6599", "activity_18", ":user \u5df2\u5efa\u7acb\u5831\u50f9\u55ae :quote", "activity_19", ":user \u5df2\u66f4\u65b0\u5831\u50f9\u55ae :quote", "activity_20", _s50_9, "activity_21", ":contact \u5df2\u6aa2\u8996\u5831\u50f9\u55ae :quote", "activity_22", ":user \u5df2\u5c07\u5831\u50f9\u55ae :quote \u6b78\u6a94", "activity_23", ":user \u5df2\u522a\u9664\u767c\u7968 :quote", "activity_24", ":user \u5df2\u5fa9\u539f\u5831\u50f9\u55ae :quote", "activity_25", ":user \u5df2\u5fa9\u539f\u767c\u7968 :invoice", "activity_26", ":user \u5df2\u5fa9\u539f\u7528\u6236 :client \u8cc7\u6599", "activity_27", ":user \u5df2\u5fa9\u539f\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_28", ":user \u5df2\u5fa9\u539f :credit \u8cb8\u6b3e\u8cc7\u6599", "activity_29", _s42_13, "activity_30", ":user \u5df2\u5efa\u7acb\u4f9b\u61c9\u5546 :vendor", "activity_31", ":user \u5df2\u5c07\u4f9b\u61c9\u5546 :vendor \u6b78\u6a94", "activity_32", ":user \u5df2\u522a\u9664\u4f9b\u61c9\u5546 :vendor", "activity_33", ":user \u5df2\u5fa9\u539f\u4f9b\u61c9\u5546 :vendor", "activity_34", ":user \u5df2\u5efa\u7acb\u652f\u51fa :expense", "activity_35", ":user \u5df2\u5c07\u652f\u51fa :expense \u6b78\u6a94", "activity_36", ":user \u5df2\u522a\u9664\u652f\u51fa :expense", "activity_37", ":user \u5df2\u5fa9\u539f\u652f\u51fa :expense", "activity_39", ":user \u5df2\u53d6\u6d88\u4e00\u9805 :payment_amount \u7684\u4ed8\u6b3e :payment", "activity_40", ":user \u7372\u5f97\u4e00\u7b46\u91d1\u984d :payment_amount \u4ed8\u6b3e :payment \u7684\u9000\u6b3e :adjustment", "activity_41", ":payment_amount \u7684\u4ed8\u6b3e (:payment) \u5931\u6557", "activity_42", ":user \u5df2\u5efa\u7acb\u4efb\u52d9 :task", "activity_43", ":user \u5df2\u5c07\u4efb\u52d9 :task \u66f4\u65b0", "activity_44", ":user \u5df2\u5c07\u4efb\u52d9 :task \u6b78\u6a94", "activity_45", ":user \u5df2\u522a\u9664\u4efb\u52d9 :task", "activity_46", ":user \u5df2\u5c07\u4efb\u52d9 :task\u5fa9\u539f", "activity_47", ":user \u5df2\u5c07\u652f\u51fa :expense \u66f4\u65b0", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user \u5df2\u91cd\u65b0\u958b\u555f\u7968\u8b49 :ticket", "activity_55", ":contact \u5df2\u56de\u8986\u7968\u8b49 :ticket", "activity_56", ":user \u5df2\u6aa2\u8996\u7968\u8b49 :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\u4e00\u6b21\u6027\u5bc6\u78bc", "emailed_quote", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u5831\u50f9\u55ae\u6210\u529f", "emailed_credit", _s27_62, _s20_72, "\u6a19\u8a18\u5831\u50f9\u55ae\u70ba\u5df2\u50b3\u9001\u6210\u529f", _s21_81, _s34_20, "expired", "\u904e\u671f", "all", "\u5168\u90e8", "select", "\u9078\u64c7", _s22_63, "\u9577\u6309\u591a\u9078", "custom_value1", "\u81ea\u8a02\u503c", "custom_value2", "\u81ea\u8a02\u503c", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u767c\u7968\u865f\u78bc\u8a08\u6578\u5668", _s20_73, _s20_74, _s20_75, "\u5831\u50f9\u55ae\u7de8\u865f\u8a08\u6578\u5668", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "\u985e\u578b", "invoice_amount", "\u767c\u7968\u91d1\u984d", _s16_224, "\u61c9\u4ed8\u6b3e\u65e5\u671f", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u81ea\u52d5\u5e33\u55ae", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u7a05\u540d", "tax_amount", "\u7a05\u91d1\u91d1\u984d", "tax_paid", "\u5df2\u4ed8\u7a05", "payment_amount", "\u4ed8\u6b3e\u91d1\u984d", "age", "\u5e74\u9f61", "is_running", "Is Running", "time_log", "\u6642\u9593\u65e5\u8a8c", "bank_id", "\u9280\u884c", _s19_66, _s19_67, _s16_225, "\u652f\u51fa\u985e\u5225", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "hr", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Stanje", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Dodaj usmjernik", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s21_104, _s17_6, _s17_7, "week", "Tjedan", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Valuta ra\u010duna", "range", "Raspon", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Odobri", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Postava zaporke", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Pregled tro\u0161kova # :expense", "view_statement", "Moje Izvje\u0161\u0107e", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sustav", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, "Ukupno bruto", _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, "Redovni tro\u0161ak", _s18_13, "Redovni tro\u0161kovi", _s21_16, "Novi redovni tro\u0161ak", _s22_24, "Uredi redovne tro\u0161kove", _s25_2, "Uspje\u0161no kreiran redovni tro\u0161ak", _s25_3, "Uspje\u0161no ure\u0111en redovni tro\u0161ak", _s26_2, "Uspje\u0161no arhiviran redovni tro\u0161ak", _s25_4, "Uspje\u0161no izbrisan redovni tro\u0161ak", _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Uvezi podatke", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Zadnje a\u017euriranje", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", "Mora biti ve\u0107e od nula i manje od zbroja", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogu\u0107i", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Postavi poddomenu ili prikazujte ra\u010dune na vlastitoj web stranici.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Pro\u0161lo tromjesje\u010dje", "to_update_run", "To update run", _s18_33, "Konverzija ra\u010duna", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Fakturiraj zadatak", "invoice_expense", "Tro\u0161ak ra\u010duna", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s17_138, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Sakrij", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolona", "sample", "Uzorak", "map_to", "Map To", "import", "Uvoz", _s25_15, _s29_6, "select_file", "Molim odaberite datoteku", _s16_60, _s16_61, "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nepla\u0107eno", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Ukupan iznos", "quote_total", "Ukupan iznos", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Klijent", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s19_73, _s20_42, _s24_63, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "Treba biti fakturiran", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Ozna\u010di kao aktivno", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Redovni ra\u010dun", _s18_45, "Redovni ra\u010duni", _s21_47, "Novi redovni ra\u010dun", _s22_37, "Uredi ponavljaju\u0107i ra\u010dun", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Uspje\u0161no arhiviran redoviti ra\u010dun", _s25_28, "Uspje\u0161no obrisan redoviti ra\u010dun", _s25_29, _s38_11, _s26_12, "Uspje\u0161no obnovljen redoviti ra\u010dun", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email poslan", _s17_49, _s17_50, "failure", "Neuspjeh", "quota_exceeded", "Kvota prema\u0161ena", _s16_70, _s16_71, "system_logs", "Zapisnici sustava", "view_portal", "View Portal", "copy_link", "Kopiraj link", "token_billing", "Pohrani detalje kartice", _s24_34, "Dobrodo\u0161li u Invoice Ninja", "always", "Always", "optin", "Dragovoljno sudjeluj", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Automatski pretvoriti", "company_name", "Company Name", "reminder1_sent", "Podsjetnik 1 poslan", "reminder2_sent", "Podsjetnik 2 poslan", "reminder3_sent", "Podsjetnik 3 poslan", _s18_49, "Podsjetnik 4 poslan", "pdf_page_info", _s27_67, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "Pogled u aplikaciji Stripe", "rows_per_page", "Redova po stranici", "hours", "sati", "statement", "Izvje\u0161\u0107e o stanju duga", "taxes", "Porezi", "surcharge", "Surcharge", "apply_payment", "Izvr\u0161i pla\u0107anje", "apply_credit", "Primjeni kredit", "apply", "Apply", "unapplied", "Neprovedeni", "select_label", "Select Label", "custom_labels", _s18_113, "record_type", "Vrsta zapisa", "record_name", "Ime zapisa", "file_type", "Vrsta datoteke", "height", "Visina", "width", "\u0160irina", "to", "Prima", "health_check", "Provjera zdravlja", "payment_type_id", "Tip uplate", "last_login_at", "Posljednja prijava u", "company_key", "Klju\u010d tvrtke", "storefront", "Storefront", "storefront_help", "Omogu\u0107ite aplikacijama tre\u0107ih strana za stvaranje ra\u010duna", "client_created", "Klijent stvoren", _s20_45, "E-po\u0161ta za internetsko pla\u0107anje", _s20_47, _s25_60, "completed", "Dovr\u0161eno", "gross", "Bruto", "net_amount", "Neto iznos", "net_balance", "Neto saldo", "client_settings", "Postavke klijenta", _s17_51, "Odabrani ra\u010duni", _s17_53, "Odabrane transkacije", "selected_quotes", "Odabrane ponude", "selected_tasks", "Odabrani zadaci", _s17_55, "Odabrani tro\u0161kovi", _s17_57, "Dolazni ra\u010duni", _s17_59, _s17_60, "recent_payments", "Nedavne uplate", "upcoming_quotes", "Nadolaze\u0107e ponude", "expired_quotes", "Istekle ponude", "create_client", "Create Client", "create_invoice", "Kreiraj ra\u010dun", "create_quote", "Kreiraj ponudu", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "A\u017euriraj ponudu", "delete_quote", "Obri\u0161i ponudu", "update_invoice", "A\u017euriraj ra\u010dun", "delete_invoice", "Obri\u0161i ra\u010dun", "update_client", "A\u017euriraj klijenta", "delete_client", "Obri\u0161i klijenta", "delete_payment", "Obri\u0161i uplatu", "update_vendor", "A\u017euriraj dobavlja\u010da", "delete_vendor", _s17_139, "create_expense", "Stvori tro\u0161ak", "update_expense", "A\u017euriraj tro\u0161ak", "delete_expense", "Obri\u0161i tro\u0161ak", "create_task", "Kreiraj zadatak", "update_task", "A\u017euriraj zadatak", "delete_task", "Obri\u0161i zadatak", "approve_quote", "Odobri ponudu", "off", "Off", "when_paid", "When Paid", "expires_on", "Istje\u010de u", "free", "Slobodan", "plan", "Plan", "show_sidebar", "Poka\u017ei bo\u010dnu traku", "hide_sidebar", _s18_114, "event_type", "Vrsta doga\u0111aja", "target_url", "Target", "copy", "Kopiraj", "must_be_online", "Ponovo pokrenite aplikaciju nakon povezivanja s internetom", _s17_61, "CRON zadatak mora biti postavljen", "api_webhooks", "API Webhooks", "search_webhooks", "Pretra\u017ei :count Webhooks", "search_webhook", "Pretra\u017ei 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Novi Webhook", "edit_webhook", "Uredi Webhook", "created_webhook", "Webhook uspje\u0161no stvoren", "updated_webhook", "Webhook uspje\u0161no a\u017euriran", _s16_74, "Webhook uspje\u0161no arhiviran", "deleted_webhook", "Webhook uspje\u0161no izbrisan", "removed_webhook", "Webhook uspje\u0161no uklonjen", _s16_75, "Webhook uspje\u0161no vra\u0107en", _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API tokeni", "api_docs", "API Docs", "search_tokens", "Pretra\u017ei :count tokena", "search_token", _s16_245, "token", "Token", "tokens", "Tokeni", "new_token", "Novi token", "edit_token", "Uredi token", "created_token", "Uspje\u0161no kreiran token", "updated_token", "Uspje\u0161no a\u017euriran token", "archived_token", "Uspje\u0161no arhiviran token", "deleted_token", "Uspje\u0161no obrisan token", "removed_token", "Token uspje\u0161no uklonjen", "restored_token", "Token uspje\u0161no vra\u0107en", "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s21_105, _s24_36, "Omogu\u0107ite klijentima da se sami registriraju na portalu", _s21_49, "Prilagodba i pregled", "email_invoice", _s16_246, "email_quote", "\u0160alji ponudu e-po\u0161tom", "email_credit", "Email Credit", "email_payment", "Po\u0161alji uplatu e-mailom", _s20_50, "Klijent nema postavljenu adresu e-po\u0161te", "ledger", "Ledger", "view_pdf", "Pogledaj PDF", "all_records", "Svi zapisi", "owned_by_user", _s20_79, _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Upotrijebi zadanu vrijednost", _s16_80, "Beskrajni podsjetnici", "number_of_days", "Broj dana", _s23_19, "Konfiguriraj rokove pla\u0107anja", "payment_term", "Rok pla\u0107anja", _s16_81, "Novi rok pla\u0107anja", _s17_65, "Uredi uvjete pla\u0107anja", _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, "Uspje\u0161no izbrisan rok pla\u0107anja", _s20_54, "Uspje\u0161no uklonjen rok pla\u0107anja", _s21_51, "Uspje\u0161no vra\u0107en rok pla\u0107anja", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "Prijavite se e-po\u0161tom", "change", "Promijeni", _s23_21, "Promijeni na mobilni izgled?", _s24_37, "Promijeni na izgled stolnog ra\u010dunala", "send_from_gmail", "Po\u0161alji s Gmaila", "reversed", "Stornirano", "cancelled", "Otkazani", "credit_amount", "Iznos kredita", "quote_amount", "Iznos Ponude", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Sakri Izbornik", "show_menu", "Prika\u017ei Izbornik", _s18_51, "Djelomi\u010dan Povrat", _s16_83, "Pretra\u017ei Dokumente", "search_designs", "Pretra\u017ei Dizajne", "search_invoices", "Pretra\u017ei Ra\u010dune", "search_clients", "Pretra\u017ei Klijente", "search_products", _s18_115, "search_quotes", "Pretra\u017ei Ponude", "search_credits", "Search Credits", "search_vendors", "Pretra\u017ei Dobavlja\u010da", "search_users", "Pretra\u017ei Korisnike", _s16_84, "Pretra\u017ei porezne stope", "search_tasks", "Pretra\u017ei Zadatke", "search_settings", "Pretra\u017ei Postavke", "search_projects", _s17_140, "search_expenses", _s17_141, "search_payments", "Pretra\u017ei Uplate", "search_groups", "Pretra\u017ei Grupe", "search_company", "Pretra\u017ei Poduze\u0107e", "search_document", "Pretra\u017ei 1 dokument", "search_design", "Pretra\u017ei 1 dizajn", "search_invoice", "Pretra\u017ei 1 ra\u010dun", "search_client", "Pretra\u017ei 1 klijenta", "search_product", "Pretra\u017ei 1 proizvod", "search_quote", "Pretra\u017ei 1 ponudu", "search_credit", "Search 1 Credit", "search_vendor", "Pretra\u017ei 1 dobavlja\u010da", "search_user", "Pretra\u017ei 1 korisnika", "search_tax_rate", "Pretra\u017ei 1 poreznu stopu", "search_task", "Pretra\u017ei 1 zadatka", "search_project", "Pretra\u017ei 1 projekta", "search_expense", "Pretra\u017ei 1 tro\u0161ka", "search_payment", "Pretra\u017ei 1 transakciju", "search_group", "Pretra\u017ei 1 grupu", "refund_payment", "Refund Payment", _s17_69, _s23_44, _s18_53, _s23_44, _s16_90, "Uspje\u0161no otkazani ra\u010duni", _s17_70, "Uspje\u0161no storniran ra\u010dun", "reverse", "Storniraj", "full_name", "Ime i prezime", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Neobavezno", "license", "Licenca", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Stanje ra\u010duna", "age_group_0", "0 - 30 dana", "age_group_30", "30 - 60 dana", "age_group_60", "60 - 90 dana", "age_group_90", "90 - 120 dana", "age_group_120", "120+ dana", "refresh", "Refresh", "saved_design", "Uspje\u0161no spremljen dizajn", "client_details", "Pojedinosti o klijentu", "company_address", "Adresa tvrtke", "invoice_details", "Detalji ra\u010duna", "quote_details", "Pojedinosti o ponudi", "credit_details", "Credit Details", "product_columns", "Stupci proizvoda", "task_columns", "Stupci zadatka", "add_field", "Dodaj polje", "all_events", "Svi doga\u0111aji", "permissions", "Permissions", "none", "None", "owned", "U vlasni\u0161tvu", "payment_success", "Uspjeh pla\u0107anja", "payment_failure", "Neuspjeh pla\u0107anja", "invoice_sent", _s19_70, "quote_sent", "Ponuda poslana", "credit_sent", "Credit Sent", "invoice_viewed", "Ra\u010dun pregledan", "quote_viewed", "Ponuda pogledana", "credit_viewed", "Credit Viewed", "quote_approved", "Ponuda odobrena", _s25_32, "Primi sve obavijesti", _s16_92, "Kupi licencu", "apply_license", "Apply License", "cancel_account", "Izbri\u0161i korisni\u010dki ra\u010dun", _s22_44, "Pozor: Ovo \u0107e trajno obrisati sve va\u0161e podatke, nema povratka.", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", "Ponuda uspje\u0161no pretvorena", "credit_design", "Credit Design", "includes", "Uklju\u010duje", "header", "Zaglavlje", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Prilago\u0111eni dizajni", "designs", "Dizajni", "new_design", "Novi dizajn", "edit_design", "Uredi dizajn", "created_design", "Dizajn uspje\u0161no stvoren", "updated_design", "Dizajn uspje\u0161no a\u017euriran", "archived_design", "Dizajn uspje\u0161no arhiviran", "deleted_design", "Dizajn uspje\u0161no izbrisan", "removed_design", "Dizajn uspje\u0161no uklonjen", "restored_design", "Dizajn uspje\u0161no vra\u0107en", _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Prijedlozi", "tickets", "Radni nalozi", _s16_96, "Ponavljaju\u0107e ponude", "recurring_tasks", _s19_74, _s18_55, "Upravljanje ra\u010dunima", "credit_date", "Datum kredita", "credit", "Kredit", "credits", "Krediti", "new_credit", "Dodaj kredit", "edit_credit", "Uredi kredit", "created_credit", "Uspje\u0161no kreiran kredit", "updated_credit", _s27_32, "archived_credit", "Uspje\u0161no arhiviran kredit", "deleted_credit", "Uspje\u0161no obrisan kredit", "removed_credit", _s27_34, "restored_credit", "Uspje\u0161no obnovljen kredit", _s16_98, "Uspje\u0161no arhivirano :count kredita", "deleted_credits", "Uspje\u0161no obrisano :count kredita", _s16_99, _s36_9, "current_version", _s16_247, "latest_version", "Najnovija verzija", "update_now", "A\u017euriraj sada", _s26_19, "Dostupna je nova verzija web aplikacije", _s16_100, _s19_75, "app_updated", "A\u017euriranje je uspje\u0161no zavr\u0161eno", "learn_more", _s16_248, "integrations", "Integracije", "tracking_id", "Broj za pra\u0107enje", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Novo poduze\u0107e", "added_company", "Tvrtka je uspje\u0161no dodana", "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Resetiraj", "number", "Broj", "export", "Izvoz", "chart", "Karte", "count", "Zbroj", "totals", "Zbrojevi", "blank", "Blank", "day", "Dan", "month", "Mjesec", "year", "Godina", "subgroup", "Subgroup", "is_active", "Je aktivan", "group_by", "Grupiraj po", "credit_balance", "Stanje kredita", _s18_61, "Zadnje prijavljivanje kontakta", _s17_77, _s17_142, "contact_phone", "Contact Phone", _s21_53, "Prilago\u0111ena vrijednost 1 kontakta", _s21_54, "Prilago\u0111ena vrijednost 2 kontakta", _s21_55, "Prilago\u0111ena vrijednost 3 kontakta", _s21_56, "Prilago\u0111ena vrijednost 4 kontakta", _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Dodijeljeno za", "created_by", _s16_235, "assigned_to_id", "Dodijeljeno ID-u", "created_by_id", "Stvorio ID", "add_column", "Dodaj stupac", "edit_columns", "Uredi stupce", "columns", "Kolone", "aging", "Izvan dospije\u0107a", "profit_and_loss", "Profit i Tro\u0161ak", "reports", "Izvje\u0161\u0107a", "report", "Izvje\u0161\u0107a", "add_company", "Dodaj poduze\u0107e", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Pomo\u0107", "refund", "Refund", "refund_date", "Datum povrata novca", "filtered_by", "Filtrirano po", "contact_email", "Contact Email", "multiselect", "Vi\u0161estruki odabir", "entity_state", "Kanton", "verify_password", "Potvrdi lozinku", "applied", "Primijenjeno", _s21_57, "Uklju\u010dite nedavne pogre\u0161ke iz zapisnika", _s30_8, "Primili smo va\u0161u poruku i poku\u0161at \u0107emo brzo odgovoriti.", "message", "Poruka", "from", "\u0160alje", _s20_57, "Prika\u017ei detalje o proizvodu", _s25_34, "Uklju\u010dite opis i cijenu u padaju\u0107i izbornik proizvoda", _s20_59, "PDF renderer zahtijeva :version", _s18_64, "Prilagodite postotak naknade", _s23_23, "Prilagodite postotak da biste uzeli u obzir naknadu", _s18_66, "Konfigurirajte postavke", "support_forum", "support forum", "about", "About", "documentation", "Dokumentacija", "contact_us", _s17_143, "subtotal", "Osnovica", "line_total", "Ukupno", "item", "Stavka", "credit_email", "Credit Email", "iframe_url", "Web mjesto", "domain_url", "URL domene", _s21_58, _s20_80, _s20_60, "Lozinka mora sadr\u017eavati barem jedno veliko slovo i broj", _s19_38, _s26_46, _s23_24, "Nadzorna plo\u010da klijentskog portala", _s20_61, "Molimo unesite vrijednost", "deleted_logo", "Logo je uspje\u0161no izbrisan", "yes", "Da", "no", "Ne", "generate_number", "Generiraj broj", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Odaberite tvrtku", "float", "Float", "collapse", "Collapse", "show_or_hide", "Poka\u017ei/Sakrij", "menu_sidebar", "Bo\u010dna traka izbornika", "history_sidebar", "Bo\u010dna traka povijesti", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Raspored", "view", "Pregled", "module", "Module", "first_custom", "Prvi stupac", "second_custom", "Drugi stupac", "third_custom", "Tre\u0107i stupac", "show_cost", "Prika\u017ei tro\u0161ak", _s17_82, _s17_83, "show_cost_help", "Prika\u017ei polje tro\u0161kova proizvoda za pra\u0107enje mar\u017ee / dobiti", _s21_59, _s26_47, _s26_21, "Prika\u017ei polje s koli\u010dinom proizvoda, ina\u010de zadano 1", _s21_61, _s23_45, _s26_22, "Prika\u017ei polje za koli\u010dinu stavke, ina\u010de zadano 1", _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, "Zadana koli\u010dina", _s21_65, "Koli\u010dina stavke retka automatski postavi na 1", "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "Korisnik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Postavke poreza", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Opcije", _s16_140, "Tekst u jednom retku", "multi_line_text", "Tekst s vi\u0161e redaka", "dropdown", "Padaju\u0107i izbornik", "field_type", "Vrsta polja", _s27_35, "Poslan je e-mail za oporavak lozinke", "submit", "Submit", _s16_142, "Obnovite va\u0161u zaporku", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Broj transakcije", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Raspored", "before_due_date", "Prije datuma dospije\u0107a", "after_due_date", "Nakon datuma dospije\u0107a", _s18_73, "Nakon datuma ra\u010duna", "days", "Dani", "invoice_email", "E-po\u0161ta ra\u010duna", "payment_email", "E-po\u0161ta uplate", "partial_payment", "Djelomi\u010dno pla\u0107anje", "payment_partial", "Partial Payment", _s21_66, "E-po\u0161ta za djelomi\u010dno pla\u0107anje", "quote_email", "E-po\u0161ta ponude", _s16_145, _s16_146, _s16_147, _s23_46, "administrator", "Administrator", _s18_74, _s66_, "user_management", _s23_47, "users", "Korisnici", "new_user", "Novi korisnik", "edit_user", "Uredi korisnika", "created_user", "Uspje\u0161no stvoren korisnik", "updated_user", "Korisnik je uspje\u0161no a\u017euriran", "archived_user", "Uspje\u0161no arhiviran korisnik", "deleted_user", "Korisnik je uspje\u0161no obrisan", "removed_user", "Korisnik je uspje\u0161no uklonjen", "restored_user", "Uspje\u0161no obnovljen korisnik", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Op\u0107e postavke", "invoice_options", "Opcije ra\u010duna", _s17_86, _s21_106, _s22_52, _s70_0, _s23_26, "Ugra\u0111eni dokumenti", _s28_20, "Ubaci dodane dokumente u ra\u010dun.", _s16_151, _s20_81, _s16_152, _s19_76, "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primarni font", "secondary_font", "Sekundarni font", "primary_color", "Primarna boja", "secondary_color", "Sekundarna boja", "page_size", "Page Size", "font_size", "Veli\u010dina fonta", "quote_design", "Quote Design", "invoice_fields", "Polja ra\u010duna", "product_fields", "Product Fields", "invoice_terms", "Uvjeti ra\u010duna", "invoice_footer", "Podno\u017eje ra\u010duna", "quote_terms", "Uvjeti ponude", "quote_footer", "Podno\u017eje ponude", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, "Automatski konvertirajte ponudu u ra\u010dun nakon \u0161to je odobrena od strane klijenta.", _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Tri godine", "never", "Never", "company", "Company", _s17_91, "Generirani brojevi", "charge_taxes", "Naplati poreze", "next_reset", "Slijede\u0107i reset", "reset_counter", "Resetiraj broja\u010d", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "Op\u0107enito", "surcharge_field", "Polje doplate", "company_field", "Company Field", "company_value", "Vrijednost tvrtke", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Polje transakcije", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Polje Grupe", "number_counter", "Broja\u010d brojeva", "prefix", "Prefiks", "number_pattern", "Uzorak broja", "messages", "Messages", "custom_css", "Prilago\u0111eni CSS", _s17_95, _s22_78, _s16_157, "Poka\u017ei na PDF-u", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Poddomena", "domain", "Domain", "portal_mode", "Na\u010din rada Portal", "email_signature", "Srda\u010dno,", _s24_38, "Olak\u0161ajte svojim klijentima pla\u0107anje dodavanjem schema.org markupa va\u0161oj e-po\u0161ti.", "plain", "Obi\u010dno", "light", "Svijetlo", "dark", "Tamno", "email_design", "Dizajn e-po\u0161te", "attach_pdf", "Prilo\u017eite PDF", _s16_158, _s19_77, "attach_ubl", "Prilo\u017eite UBL", "email_style", "Stil e-po\u0161te", _s19_42, "Omogu\u0107i markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Obra\u0111eno", "credit_card", _s16_249, "bank_transfer", "Bankovni prijenos", "priority", "Prioritet", "fee_amount", "Iznos naknade", "fee_percent", "Postotak naknade", "fee_cap", "Fee Cap", "limits_and_fees", "Limiti/Naknade", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "A\u017euriraj adresu", _s19_45, "A\u017euriraj adresu klijenta uz osigurane detalje", "rate", "Stopa", "tax_rate", "Porezna stopa", "new_tax_rate", "Nova porezna stopa", "edit_tax_rate", "Uredi poreznu stopu", _s16_160, "Uspje\u0161no kreirana porezna stopa", _s16_161, "Uspje\u0161no a\u017eurirana porezna stopa", _s17_98, "Uspje\u0161no arhivirana porezna stopa", _s16_162, "Uspje\u0161no izbrisana porezna stopa", _s17_99, "Uspje\u0161no vra\u0107ena porezna stopa", _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Proizvodi sa samoispunom", _s18_80, _s53_2, "update_products", "Proizvidi sa autoa\u017euriranjem", _s20_65, "A\u017euriranje ra\u010duna automatski a\u017eurirati registar proizvoda", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Dobavlja\u010d", "company_gateway", "Sustav online pla\u0107anja", _s16_165, "Sustavi online pla\u0107anja", _s19_46, "Novi sustav online pla\u0107anja", _s20_66, "Uredi sustav online pla\u0107anja", _s23_32, "Uspje\u0161no stvoren Sustav online pla\u0107anja", _s23_33, "Uspje\u0161no a\u017euriran sustav online pla\u0107anja", _s24_39, "Uspje\u0161no arhiviran sustav online pla\u0107anja", _s23_34, "Uspje\u0161no izbrisan sustav online pla\u0107anja", _s24_40, "Uspje\u0161no vra\u0107en sustav online pla\u0107anja", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "Nastavi ure\u0111ivati", "discard_changes", "Discard Changes", "default_value", "Zadana vrijednost", "disabled", "Onemogu\u0107eno", "currency_format", "Format valute", _s21_70, "Prvi dan u tjednu", _s23_35, "Prvi mjesec u godini", "sunday", "Nedjelja", "monday", "Ponedjeljak", "tuesday", "Utorak", "wednesday", "Srijeda", "thursday", "\u010cetvrtak", "friday", "Petak", "saturday", "Subota", "january", "Sije\u010danj", "february", "Velja\u010da", "march", "O\u017eujak", "april", "Travanj", "may", "Svibanj", "june", "Lipanj", "july", "Srpanj", "august", "Kolovoz", "september", "Rujan", "october", "Listopad", "november", "Studeni", "december", "Prosinac", "symbol", "Simbol", "ocde", "Code", "date_format", "Format datuma", "datetime_format", "Format vremena", "military_time", "24 satno vrijeme", _s18_81, "24-satni prikaz", "send_reminders", "Po\u0161alji podsjetnike", "timezone", "Vremenska zona", _s19_47, "Filtrirano po Projektu", _s17_101, _s19_78, _s19_49, _s20_82, _s18_82, _s22_79, _s18_84, _s24_64, "group_settings", "Postavke grupe", "group", "Group", "groups", "Grupe", "new_group", "Nova grupa", "edit_group", "Uredi grupu", "created_group", "Grupa je uspje\u0161no stvorena", "updated_group", "Grupa je uspje\u0161no a\u017eurirana", "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", "Grupa je uspje\u0161no arhivirana", "deleted_group", "Grupa je uspje\u0161no izbrisana", "restored_group", "Grupa je uspje\u0161no vra\u0107ena", "upload_logo", "Prenesi logo", "uploaded_logo", "Uspje\u0161no preneseni logo", "logo", "Logo", "saved_settings", "Postavke uspje\u0161no spremljene", _s16_169, _s18_116, "device_settings", _s16_250, "defaults", "Zadano", "basic_settings", "Osnovne postavke", _s17_103, _s17_144, "company_details", "Detalji poduze\u0107a", "user_details", _s17_145, "localization", "Lokalizacija", "online_payments", "Online uplate", "tax_rates", "Porezne stope", "notifications", "Obavijesti", "import_export", "Uvoz | Izvoz", "custom_fields", _s17_146, "invoice_design", "Dizajn ra\u010duna", "buy_now_buttons", "Buy Now Buttons", "email_settings", _s16_251, _s23_37, "Predlo\u0161ci & podsjetnici", _s22_55, "Kreditne kartice i banke", _s19_51, _s22_80, "price", "Cijena", "email_sign_up", "Registrirajte se e-po\u0161tom", "google_sign_up", "Registrirajte se putem Google ra\u010duna", _s27_40, "Hvala vam na kupnji!", "redeem", "Redeem", "back", "Natrag", "past_purchases", "Pro\u0161le kupnje", _s19_53, _s18_117, "pro_plan", "Pro plan", "enterprise_plan", "Enterprise Plan", "count_users", _s16_252, "upgrade", "Nadogradi", _s25_45, _s18_118, _s24_42, "Molimo unesite prezime", _s33_21, "Molimo vas da se slo\u017eite s uvjetima pru\u017eanja usluge i pravilima o privatnosti za stvaranje ra\u010duna.", "i_agree_to_the", "I agree to the", _s16_171, "Uvjeti kori\u0161tenja usluge", "privacy_policy", "Privacy Policy", "sign_up", "Prijava", "account_login", _s18_119, "view_website", "Pogledajte web stranicu", "create_account", "Otvori ra\u010dun", "email_login", _s21_107, "create_new", "Create New", _s18_86, "Nije odabran nijedan zapis", _s21_73, "Spremite ili poni\u0161tite svoje promjene", "download", "Preuzmi", _s27_41, _s27_60, "take_picture", "Fotografiraj", "upload_file", "Prenesi datoteku", "document", "Document", "documents", "Dokumenti", "new_document", "Novi Dokument", "edit_document", "Uredi Dokument", _s17_105, "Uspje\u0161no preneseni dokument", _s16_173, "Uspje\u0161no a\u017eurirani dokument", _s17_106, "Uspje\u0161no arhiviran dokument", _s16_174, "Uspje\u0161no izbrisani dokument", _s17_107, "Uspje\u0161no vra\u0107eni dokument", _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "Nema povijesti", "expense_date", "Datum tro\u0161ka", "pending", "Na \u010dekanju", _s16_175, "Evidentirano", _s16_176, "U obradi", _s16_177, "Fakturirano", "converted", "Konvertirano", _s24_44, _s24_57, "exchange_rate", "Te\u010daj", _s16_178, "Konvertiraj valutu", "mark_paid", "Ozna\u010di uplatu", "category", "Kategorija", "address", "Adresa", "new_vendor", "Novi dobavlja\u010d", "created_vendor", "Uspje\u0161no kreiran dobavlja\u010d", "updated_vendor", "Uspje\u0161no a\u017euriran dobavlja\u010d", "archived_vendor", "Uspje\u0161no arhiviran dobavlja\u010d", "deleted_vendor", "Uspje\u0161no obrisan dobavlja\u010d", "restored_vendor", _s28_27, _s16_179, "Uspje\u0161no arhivirano :count dobavlja\u010da", "deleted_vendors", "Uspje\u0161no obrisano :count dobavlja\u010da", _s16_180, _s36_11, "new_expense", "Novi tro\u0161ak", "created_expense", "Uspje\u0161no kreiran tro\u0161ak", "updated_expense", "Uspje\u0161no a\u017euriran tro\u0161ak", _s16_181, "Uspje\u0161no arhiviran tro\u0161ak", "deleted_expense", _s23_48, _s16_182, _s29_21, _s17_109, "Uspje\u0161no arhivirani tro\u0161kovi", _s16_183, _s23_48, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Dizajn", _s21_74, "Pronala\u017eenje zapisa nije uspjelo", "invoiced", "Fakturirano", "logged", "Logirano", "running", "Pokrenuto", "resume", "Nastavi", "task_errors", "Molimo korigirajte preklopna vremena", "start", "Po\u010detak", "stop", "Zavr\u0161etak", "started_task", _s25_47, "stopped_task", "Uspje\u0161no zavr\u0161en zadatak", "resumed_task", _s25_49, "now", "Sada", _s16_184, _s16_185, "timer", "\u0160toperica", "manual", "Ru\u010dno", "budgeted", "Bud\u017eet", "start_time", "Po\u010detno vrijeme", "end_time", "Zavr\u0161no vrijeme", "date", "Datum", "times", "Vremena", "duration", "Trajanje", "new_task", "Novi zadatak", "created_task", "Uspje\u0161no kreiran zadatak", "updated_task", "Uspje\u0161no a\u017euriran zadatak", "archived_task", "Uspje\u0161no arhiviran zadatak", "deleted_task", "Uspje\u0161no obrisan zadatak", "restored_task", "Uspje\u0161no obnovljen zadatak", "archived_tasks", "Uspje\u0161no arhivirano :count zadataka", "deleted_tasks", "Uspje\u0161no obrisano :count zadataka", "restored_tasks", _s34_19, _s19_55, _s18_118, "budgeted_hours", "Dogovoreno radnih sati", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "Novi projekt", _s27_45, "Hvala vam \u0161to koristite na\u0161u aplikaciju!", "if_you_like_it", "Ako vam se svi\u0111a, molim vas", "click_here", "kliknite ovdje", _s18_90, "Kliknite ovdje", "to_rate_it", "da bi ju ocijenili.", "average", "Prosjek", "unapproved", "Neodobreno", _s30_15, "Potvrdite autenti\u010dnost da biste promijenili ovu postavku", "locked", "Zaklju\u010dano", "authenticate", "Provjera autenti\u010dnosti", _s19_57, "Molimo provjerite autenti\u010dnost", _s24_46, "Biometrijska provjera autenti\u010dnosti", "footer", "Podno\u017eje", "compare", "Usporedi", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Prijavite se s Google ra\u010dunom", "today", "Danas", "custom_range", "Prilago\u0111eni Raspon", "date_range", "Raspon datuma", "current", "Trenutni", "previous", "Prija\u0161nji", "current_period", "Teku\u0107e Razdoblje", _s17_113, "Razdoblje usporedbe", "previous_period", "Prethodno razdoblje", "previous_year", _s16_253, "compare_to", "Usporedi s", "last7_days", "Zadnjih 7 dana", "last_week", "Pro\u0161li tjedan", "last30_days", "Zadnjih 30 dana", "this_month", "Ovaj mjesec", "last_month", "Pro\u0161li mjesec", "this_year", "Ova godina", "last_year", "Pro\u0161la godina", "custom", "Prilago\u0111eno", _s16_189, "Kloniraj u Ra\u010dune", "clone_to_quote", "Kloniraj u Ponude", "clone_to_credit", "Clone to Credit", "view_invoice", "Pregled ra\u010duna", "convert", "Pretvori", "more", "Vi\u0161e", "edit_client", "Uredi klijenta", "edit_product", "Uredi proizvod", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi ponudu", "edit_payment", "Uredi uplatu", "edit_task", "Uredi zadatak", "edit_expense", "Uredi tro\u0161ak", "edit_vendor", _s16_254, "edit_project", "Uredi projekt", _s20_68, "Uredi ponavljaju\u0107u ponudu", "billing_address", "Adresa ra\u010duna", _s16_191, _s16_192, "total_revenue", "Ukupni prihod", "average_invoice", "Prosje\u010dni ra\u010dun", "outstanding", "Dospijeva", "invoices_sent", _s20_77, "active_clients", _s16_255, "close", "Zatvori", "email", "E-po\u0161ta", "password", "Zaporka", "url", "URL", "secret", "Secret", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Poredak", "search", "Pretraga", "active", "Aktivan", "archived", "Arhivirano", "deleted", "Obrisano", "dashboard", "Kontrolna plo\u010da", "archive", "Arhiva", "delete", "Obri\u0161i", "restore", "Obnovi", _s16_193, "Osvje\u017eavanje zavr\u0161eno", _s23_38, "Molimo upi\u0161ite va\u0161u email adresu", _s26_32, "Molimo upi\u0161ite va\u0161u zaporku", _s21_77, "Molimo unesite URL", _s26_34, "Molimo upi\u0161ite \u0161ifru proizvoda", "ascending", "Ascending", "descending", "Descending", "save", "Pohrani", _s17_115, "Dogodila se pogre\u0161ka", "paid_to_date", "Do sada pla\u0107eno", "balance_due", "Stanje duga", "balance", "Potra\u017eivanje", "overview", "Pregled", "details", "Detalji", "phone", "Telefon", "website", "Web", "vat_number", "OIB", "id_number", "ID broj", "create", "Kreiraj", _s19_59, "Kopirao :value u me\u0111uspremnik", "error", "Gre\u0161ka", _s16_195, "Pokretanje nije uspjelo", "contacts", "Kontakti", "additional", "Dodatno", "first_name", "Ime", "last_name", "Prezime", "add_contact", "Dodaj kontakt", "are_you_sure", _s18_120, "cancel", "Odustani", "ok", "Ok", "remove", "Remove", _s16_197, "Email adresa je pogre\u0161na", "product", "Proizvod", "products", "Proizvodi", "new_product", "Novi proizvod / usluga", "created_product", "Proizvod je uspje\u0161no kreiran", "updated_product", "Proizvod je uspje\u0161no a\u017euriran", _s16_199, "Proizvod je uspje\u0161no arhiviran", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Proizvod", "notes", "Bilje\u0161ke", "cost", "Cijena", "client", "Klijent", "clients", "Klijenti", "new_client", "Novi klijent", "created_client", "Klijent je uspje\u0161no kreiran", "updated_client", "Uspje\u0161no a\u017euriranje klijenta", "archived_client", "Uspje\u0161no arhiviran klijent", _s16_202, "Uspje\u0161no arhivirano :count klijenata", "deleted_client", "Uspje\u0161no obrisan klijent", "deleted_clients", "Uspje\u0161no obrisano :count klijenata", "restored_client", "Uspje\u0161no obnovljen klijent", _s16_203, _s36_13, "address1", "Ulica i ku\u0107ni broj", "address2", "Kat/Oznaka", "city", "Grad", "state", "\u017dupanija", "postal_code", "Po\u0161tanski broj", "country", "Zemlja", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Novi ra\u010dun", "created_invoice", "Uspje\u0161no kreiran ra\u010dun", "updated_invoice", "Uspje\u0161no a\u017euriran ra\u010dun", _s16_204, "Uspje\u0161no arhiviran ra\u010dun", "deleted_invoice", "Uspje\u0161no obrisan ra\u010dun", _s16_205, "Uspje\u0161no obnovljen ra\u010dun", _s17_119, "Uspje\u0161no arhivirano :count ra\u010duna", _s16_206, "Uspje\u0161no obrisano :count ra\u010duna", _s17_120, _s37_17, "emailed_invoice", "Ra\u010dun uspje\u0161no poslan e-po\u0161tom", "emailed_payment", _s28_58, "amount", "Iznos", "invoice_number", "Broj ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "Broj narud\u017ebe", "terms", "Uvjeti", "public_notes", "Javne bilje\u0161ke", "private_notes", "Privatne bilje\u0161ke", "frequency", "Frekvencija", "start_date", "Po\u010detni datum", "end_date", "Zavr\u0161ni datum", "quote_number", "Broj ponude", "quote_date", "Datum ponude", "valid_until", "Vrijedi do", "items", "Stavke", "partial_deposit", "Djelomi\u010dno/Depozit", "description", "Opis", "unit_cost", "Jedini\u010dna cijena", "quantity", "Koli\u010dina", "add_item", "Dodaj stavku", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Ukupan iznos", "pdf", "PDF", "due_date", "Datum dospije\u0107a", _s16_207, _s16_208, "status", "Status", _s17_121, "Status ra\u010duna", "quote_status", "Status ponude", _s22_56, _s30_28, _s22_58, "Pritisnite + za dodavanje vremena", "count_selected", ":count odabrano", "total", "Sveukupno", "percent", "Percent", "edit", "Uredi", "dismiss", "Odbaci", _s20_70, "Molimo odaberite datum", _s22_59, "Molimo odaberite klijenta", _s24_48, "Molimo odaberite ra\u010dun", "task_rate", "Satnica", "settings", "Postavke", "language", "Jezik", "currency", "Currency", "created_at", "Datum kreiranja", "created_on", "Stvoreno u", "updated_at", "A\u017eurirano", "tax", "Porez", _s30_17, "Molimo upi\u0161ite broj ra\u010duna", _s27_49, "Molimo upi\u0161ite broj ponude", "past_due", "Past Due", "draft", "Skica", "sent", "Poslano", "viewed", "Pregledano", "approved", "Odobreno", "partial", "Partial/Deposit", "paid", "Pla\u0107eno", "mark_sent", "Ozna\u010di kao poslano", _s22_61, "Ra\u010dun je uspje\u0161no ozna\u010den kao poslan", _s22_62, _s35_18, _s23_40, "Ra\u010duni su uspje\u0161no ozna\u010deni kao poslani", _s23_41, _s36_14, "done", "Dovr\u0161eno", _s37_18, "Molimo upi\u0161ite ime klijenta ili kontakta", "dark_mode", "Tamni prikaz", _s27_51, "Ponovno pokrenite aplikaciju za primjenu promjena", "refresh_data", "Osvje\u017ei podatke", "blank_contact", "Prazan kontakt", "activity", "Aktivnost", _s16_209, "Nije prona\u0111en zapis", "clone", "Kloniraj", "loading", "Loading", "industry", "Industrija", "size", "Veli\u010dina", "payment_terms", "Uvjeti pla\u0107anja", "payment_date", "Datum uplate", "payment_status", "Status uplate", _s16_211, "U tijeku", _s16_212, "Poni\u0161teno", _s16_213, "Neuspje\u0161no", _s16_214, "Zavr\u0161eno", _s16_215, "Djelimi\u010dni povrat", _s16_216, "Povrat", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Neto", "client_portal", "Klijentski portal", "show_tasks", "Prika\u017ei zadatke", "email_reminders", "Email podsjetnici", "enabled", "Enabled", "recipients", "Primatelji", "initial_email", "Prvi Email", "first_reminder", "Prvi podsjetnik", "second_reminder", _s16_256, "third_reminder", _s16_257, "reminder1", "Prvi podsjetnik", "reminder2", _s16_256, "reminder3", _s16_257, "template", "Predlo\u017eak", "send", "Po\u0161alji", "subject", "Naslov", "body", "Tijelo", "send_email", "Slanje e-po\u0161te", "email_receipt", _s31_25, "auto_billing", "Automatska naplata", "button", "Gumb", "preview", "Preview", "customize", "Prilagodi", "history", "Povijest", "payment", "Uplata", "payments", "Uplate", "refunded", "Povrat", "payment_type", "Payment Type", _s21_79, _s21_108, "enter_payment", "Unesi uplatu", "new_payment", "Unesi uplatu", "created_payment", "Uspje\u0161no kreirana uplata", "updated_payment", "Uspje\u0161no a\u017eurirana uplata", _s16_217, "Uspje\u0161no arhivirana uplata", "deleted_payment", "Uspje\u0161no obrisana uplata", _s16_218, "Uspje\u0161no obnovljena uplata", _s17_124, "Uspje\u0161no arhivirana :count uplata", _s16_219, "Uspje\u0161no obrisano :count uplata", _s17_125, _s37_20, "quote", "Ponuda", "quotes", "Ponude", "new_quote", "Nova ponuda", "created_quote", "Ponuda uspje\u0161no kreirana", "updated_quote", "Ponuda je uspje\u0161no a\u017eurirana", "archived_quote", "Ponuda uspje\u0161no arhivirana", "deleted_quote", "Ponuda uspje\u0161no obrisana", "restored_quote", "Uspje\u0161no obnovljena ponuda", "archived_quotes", "Uspje\u0161no arhivirano :count ponuda", "deleted_quotes", "Uspje\u0161no obrisano :count ponuda", "restored_quotes", _s35_21, "expense", "Tro\u0161ak", "expenses", "Tro\u0161kovi", "vendor", "Dobavlja\u010d", "vendors", "Dobavlja\u010di", "task", "Task", "tasks", "Zadaci", "project", "Projekt", "projects", "Projekti", "activity_1", _s30_29, "activity_2", _s32_13, "activity_3", _s30_30, "activity_4", _s28_60, "activity_5", _s29_46, "activity_6", ":user poslao e-po\u0161tom ra\u010dun :invoice za :contact", "activity_7", ":contact pregledao ra\u010dun :invoice", "activity_8", _s30_31, "activity_9", ":user obrisao ra\u010dun :invoce", "activity_10", ":contact upisao uplatu :payment za :invoice", "activity_11", _s30_32, "activity_12", _s30_33, "activity_13", _s29_47, "activity_14", ":user upisao :credit kredit", "activity_15", _s29_48, "activity_16", _s30_34, "activity_17", _s28_61, "activity_18", ":user kreirao ponudu :quote", "activity_19", ":user a\u017eurirao ponudu :quote", "activity_20", ":user poslao e-po\u0161tom ponudu :quote za :contact", "activity_21", ":contact pregledao ponudu :quote", "activity_22", ":user arhivirao ponudu :quote", "activity_23", ":user obrisao ponudu :quote", "activity_24", ":user obnovio ponudu :quote", "activity_25", _s28_62, "activity_26", _s30_35, "activity_27", _s29_49, "activity_28", _s28_63, "activity_29", ":contact odobrio ponudu :quote", "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s29_50, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", "Korisnik :user je ponovno otvorio radni nalog :ticket", "activity_55", "Kontakt :contact je odgovorio na radni nalog :ticket", "activity_56", "Korisnik :user je pregledao radni nalog :ticket", "activity_57", "Sustav nije uspio poslati ra\u010dun e-po\u0161tom :invoice", "activity_58", ":user je stornirao ra\u010dun :invoice", "activity_59", _s28_64, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Ponuda uspje\u0161no poslana e-po\u0161tom", "emailed_credit", _s27_62, _s20_72, "Ponuda je uspje\u0161no ozna\u010dena kao poslana", _s21_81, _s34_20, "expired", "Isteklo", "all", "Svi", "select", "Odaberi", _s22_63, "Dugo pritisnite za vi\u0161estruku odabir", "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Prilago\u0111ena vrijednost 3", "custom_value4", "Prilago\u0111ena vrijednost 4", _s18_91, _s24_65, _s24_53, "Prilago\u0111ena poruka nadzorne plo\u010de", _s29_36, "Prilago\u0111ena poruka nepla\u0107enog ra\u010duna", _s27_56, "Prilago\u0111ena poruka pla\u0107enog ra\u010duna", _s31_18, "Prilago\u0111ena poruka ne odobrene ponude", "lock_invoices", _s16_258, "translations", "Prijevodi", _s19_60, "Uzorak broja zadatka", _s19_62, "Broja\u010d broja zadatka", _s22_65, "Uzorak broja tro\u0161kova", _s22_67, _s21_109, _s21_82, "Uzorak broja dobavlja\u010da", _s21_84, "Broja\u010d brojeva dobavlja\u010da", _s21_86, "Uzorak broja radnog naloga", _s21_88, "Broja\u010d broj radnog naloga", _s22_69, "Uzorak broja transakcije", _s22_71, "Broja\u010d broja transakcije", _s22_73, "Uzorak broja ra\u010duna", _s22_75, "Broja\u010d ra\u010duna", _s20_73, "Uzorak broja ponude", _s20_75, "Broja\u010d ponuda", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, "Poni\u0161ti datum broja\u010da", "counter_padding", "Ispuna broja broja\u010da", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Prikaz u tablici", "show_list", "Prikaz u listi", "client_city", "Grad klijenta", "client_state", "\u017dupanija klijenta", "client_country", "Dr\u017eava klijenta", _s16_220, _s18_121, "client_balance", "Stanje ra\u010duna klijenta", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Tip", "invoice_amount", "Iznos ra\u010duna", _s16_224, "Datum valute", "tax_rate1", "Porezna stopa 1", "tax_rate2", "Porezna stopa 2", "tax_rate3", "Porezna stopa 3", "auto_bill", "Auto ra\u010dun", "archived_at", "Arhivirano u", "has_expenses", "Ima tro\u0161kove", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Izbrisan", "vendor_city", "Grad dobavlja\u010da", "vendor_state", "\u017dupanija dobavlja\u010da", "vendor_country", _s17_147, "is_approved", "Odobreno je", "tax_name", "Ime porezne stope", "tax_amount", "Iznos poreza", "tax_paid", "Pla\u0107eno poreza", "payment_amount", "Iznos uplate", "age", "Dospije\u0107e", "is_running", "Is Running", "time_log", "Dnevnik vremena", "bank_id", "Banka", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "cs", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Nastaven\xed plateb", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Trvaj\xedc\xed", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "P\u0159idat platebn\xed br\xe1nu", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "P\u0159idat k faktu\u0159e :invoice", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "M\u011bna faktury", "range", "Rozsah", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Schv\xe1lit", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Na\u010d\xedst PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Je zaplaceno", "age_group_paid", "Zaplaceno", "id", "ID", "convert_to", "Konvertovat na", "client_currency", "M\u011bna klienta", _s16_12, "M\u011bna firmy", "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Mal\xfd", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Zb\xfdv\xe1", "invoice_paid", "Faktura zaplacena", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Norm\xe1ln\xed", "large", "Velk\xfd", "extra_large", "Extra velk\xfd", _s16_15, "Zobrazit PDF n\xe1hled", _s21_14, "Zobrazit PDF n\xe1hled p\u0159i editaci faktur", "print_pdf", "Tisk PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Skr\xfdt n\xe1hle", "edit_record", "Upravit z\xe1znam", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, "Pros\xedm nastavte si heslo \xfa\u010dtu", "set_password", "Nastavit heslo", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Odpojit", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "St\xe1hnout", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, "PS\u010c klienta", _s17_11, "DI\u010c klienta", "has_tasks", "M\xe1 \xfakoly", "registration", "Registrace", _s27_7, "Autorizujte Stripe pro p\u0159ijm\xe1n\xed online plateb.", "view_expense", "Zobrazit n\xe1klad # :expense", "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, "Aktualizovat v\u0161echny z\xe1znamy", "system", "Syst\xe9m", _s19_12, "Nastavit v\xfdchoz\xed firmu", "updated_company", "Firma \xfasp\u011b\u0161n\u011b aktualizov\xe1na", "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "Aplikace", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Poslat fakturu emailem", _s16_230, "Poslat nab\xeddku emailem", _s17_134, "Poslat kredit emaile", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, "Pravideln\xe9 n\xe1klady", _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, "Pravideln\xfd n\xe1klad \xfasp\u011b\u0161n\u011b odstran\u011bn", _s26_3, _s39_0, _s24_14, "Hledat pravideln\xfd n\xe1klad", _s25_6, "Hledat pravideln\xe9 n\xe1klady", "last_sent_date", "Last Sent Date", "include_drafts", "Zahrnout koncepty", _s19_15, "Zahrnout koncepty ve v\xfdpisech", "is_invoiced", "Je vyfakturov\xe1no", "change_plan", "Zm\u011bnit pl\xe1n", "persist_data", "Persistovat data", "customer_count", "Po\u010det z\xe1kazn\xedk\u016f", _s16_22, "Ov\u011b\u0159it klienty", _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Desetinn\xe1 \u010d\xe1rka", _s26_4, "Pou\u017e\xedt \u010d\xe1rku jako desetinn\xfd odd\u011blova\u010d ve formul\xe1\u0159\xedch", "select_method", "Vybrat metodu", "select_platform", "Vybrat platformu", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Zapnout Markdown", _s20_20, "Konvertovat Markdown do HTML na PDF", "user_guide", "User Guide", _s18_15, "P\u0159idat druh\xfd kontakt", "previous_page", "P\u0159echoz\xed str\xe1nka", "next_page", "Dal\u0161\xed str\xe1nka", "export_colors", "Exportovat barvy", "import_colors", "Importovat barvy", "clear_all", "Clear All", "contrast", "Kontrast", "custom_colors", "Vlastn\xed barvy", "colors", "Barvy", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Ohodnotit aplikaci", "check_status", "Zkontrolovat status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Zm\u011bnit email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Nevyfakturov\xe1no", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importovat data", "import_settings", "Importovat nastaven\xed", _s17_15, "Pros\xedm vyberte JSON soubor", _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "M\xe1 dan\u011b", _s16_27, "Importovat klienty", _s18_17, _s40_0, "login_success", "P\u0159ihl\xe1\u0161en\xed \xfasp\u011b\u0161n\xe9", "login_failure", "P\u0159ihl\xe1\u0161en\xed selhalo", "exported_data", _s67_, _s23_8, "Zahrnout odstran\u011bn\xe9 klienty", _s28_5, _s41_1, "step_1_sign_in", "Krok 1: P\u0159ihl\xe1sit se", _s16_30, _s17_16, "account_id", "ID \xfa\u010dtu", _s27_12, "Migrace je\u0161t\u011b nen\xed dokon\u010den\xe1", "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Faktura vytvo\u0159ena", "quote_created", "Nab\xeddka vytvo\u0159ena", "credit_created", "Kredit vytvo\u0159en", "pro", "Profi", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Faktura\u010dn\xed polo\u017eka", "quote_item", "Nab\xeddkov\xe1 polo\u017eka", _s18_21, "K\u0159estn\xed jm\xe9no", _s17_17, "P\u0159ijmen\xed", "order", "Order", "unassigned", "Unassigned", "partial_value", "Mus\xed b\xfdt v\u011bt\u0161\xed ne\u017e nula a m\xe9n\u011b ne\u017e sou\u010det", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Povolit", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Je zobrazeno", "letter", "Letter", "legal", "Legal", "page_layout", "Rozlo\u017een\xed str\xe1nky", "portrait", "Portr\xe9t", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "P\u0159idat hlavi\u010dku", "remove_header", "Odstranit hlavi\u010dku", "return_url", "Return URL", "rest_method", "REST metoda", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo k\xf3d", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Zabezpe\u010den\xed", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, "Autentifikace selhala", "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modifikov\xe1no", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, "P\u0159edplatn\xe9 \xfasp\u011b\u0161n\u011b odstran\u011bno", _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, "Subdom\xe9na nen\xed dostupn\xe1", "connect_gmail", "Propojit s Gmail", _s16_41, "Odpojit Gmail", "connected_gmail", "\xdasp\u011b\u0161n\u011b propojeno s Gmail", _s18_29, "\xdasp\u011b\u0161n\u011b odpojeno od Gmai", _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, "Aktivovat firmu", _s21_31, _s51_3, _s27_14, "Vyskytla se chyba, zkuste to pros\xedm pozd\u011bji", _s27_15, "Nejprve nastavte heslo", _s34_6, _s52_0, "help_translate", "Pomozte p\u0159elo\u017eit", _s23_11, "Vyberte zemi", "resend_invite", _s17_135, _s19_18, "Dvouf\xe1zov\xe9 ov\u011b\u0159en\xed \xfasp\u011b\u0161n\u011b deaktivov\xe1no", _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Doru\u010deno", "bounced", "Bounced", "spam", "Spam", "view_docs", "Zobrazit dokumenty", _s32_4, _s72_, "send_sms", "Odeslat SMS", "sms_code", "SMS k\xf3d", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Propojit s Google", _s17_25, "Odpojit od Google", _s17_27, _s25_57, _s18_31, "Deaktivovat dvouf\xe1zov\xe9 ov\u011b\u0159en\xed", _s34_7, _s34_8, "stay_logged_in", "Z\u016fstat p\u0159ihl\xe1\u0161en", _s23_13, _s40_1, "count_hours", ":count hodin", "count_day", "1 den", "count_days", ":count dn\xed", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Znovu odeslat email", _s26_8, "Potvr\u010fte svou emailovou adresu", _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Zobrazit akce", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "Pro aktualizaci spus\u0165te", _s18_33, "Zm\u011bnit na fakturu", _s16_52, "Registra\u010dn\xed URL", "invoice_project", "Invoice Project", "invoice_task", "Faktura\u010dn\xed \xfaloha", "invoice_expense", "Fakturovat n\xe1klady", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, "Ulo\u017eit a zobrazit n\xe1hled", "save_and_email", "Ulo\u017eit a odeslat emailem", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Je odesl\xe1no", _s17_34, _s17_35, "document_upload", "Nahr\xe1n\xed dokumentu", _s20_29, "Povolit klient\u016fm nahr\xe1vat dokumenty", "expense_total", "V\xfddaj\u016f celkem", "enter_taxes", "Zadejte dan\u011b", "by_rate", "Podle sazby", "by_amount", "Podle \u010d\xe1stky", "enter_amount", "Zadejte \u010d\xe1stku", "before_taxes", "P\u0159ed dan\xed", "after_taxes", "Po dani", "color", "Barva", "show", "Zobrazit", "hide", "Skr\xfdt", "empty_columns", "Pr\xe1zdn\xe9 sloupce", _s21_35, "Debugovac\xed m\xf3d je zapnut\xfd", _s26_9, "Varov\xe1n\xed: je ur\u010den\xfd pouze pro v\xfdvoj na lok\xe1ln\xedm serveru. M\u016f\u017ee vyzradit \xfadaje. Klikn\u011bte pro dal\u0161\xed informace.", "running_tasks", "Running Tasks", "recent_tasks", "Ned\xe1vn\xe9 \xfakoly", "recent_expenses", "Ned\xe1vn\xe9 n\xe1klady", _s17_36, "Nadch\xe1zej\xedc\xed n\xe1klady", "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Sloupec", "sample", "Vzorek", "map_to", "Map To", "import", "Importovat", _s25_15, _s29_6, "select_file", "Pros\xedm zvolte soubor", _s16_60, _s16_61, "csv_file", "CSV soubor", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "\xda\u010detnictv\xed", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML m\xf3d", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Dodac\xed list", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u010c\xe1ste\u010dn\u011b splaceno", "invoice_total", "Celkov\xe1 \u010d\xe1stka", "quote_total", "Celkem", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "N\xe1zev projektu", "warning", "Warning", "view_settings", "View Settings", _s24_27, "Varov\xe1n\xed: tato firma je\u0161t\u011b nebylo aktivov\xe1na", "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV k\xf3d", "client_name", "Jm\xe9no klienta", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, "Task status \xfasp\u011b\u0161n\u011b odstran\u011bn", _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "M\xe1 b\xfdt fakturov\xe1n", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, "Prvn\xed den v m\u011bs\xedci", _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Pravideln\xe1 faktura", _s18_45, "Pravideln\xe9 faktury", _s21_47, "Nov\xe1 pravideln\xe1 faktura", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Pravideln\xe1 faktura \xfasp\u011b\u0161n\u011b archivov\xe1na", _s25_28, "Pravideln\xe1 faktura smaz\xe1na", _s25_29, "Pravideln\xe1 faktura \xfasp\u011b\u0161n\u011b odstran\u011bna", _s26_12, "Pravideln\xe1 faktura obnovena", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Ukl\xe1dat platebn\xed \xfadaje", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "N\xe1zev firmy", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hodiny", "statement", "Statement", "taxes", "Dan\u011b", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Pou\u017e\xedt kredit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Komu", "health_check", "Health Check", "payment_type_id", "Typ platby", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Nadch\xe1zej\xedc\xed faktury", _s17_59, _s17_60, "recent_payments", "Posledn\xed platby", "upcoming_quotes", "Nadch\xe1zej\xedc\xed nab\xeddky", "expired_quotes", "Pro\u0161l\xe9 nab\xeddky", "create_client", "Create Client", "create_invoice", "Vytvo\u0159it fakturu", "create_quote", "Vytvo\u0159it nab\xeddku", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Smazat nab\xeddku", "update_invoice", "Update Invoice", "delete_invoice", "Smazat fakturu", "update_client", "Update Client", "delete_client", "Smazat klienta", "delete_payment", "Smazat platbu", "update_vendor", "Update Vendor", "delete_vendor", "Smazat dodavatele", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Smazat n\xe1klad", "create_task", "Vytvo\u0159it \xfalohu", "update_task", "Update Task", "delete_task", "Smazat \xfalohu", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Zdarma", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", "Webhook \xfasp\u011b\u0161n\u011b odstran\u011bn", _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, ":value webhooky \xfasp\u011b\u0161n\u011b odstran\u011bny", _s17_63, _s37_9, "api_tokens", "API Tokeny", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokeny", "new_token", "New Token", "edit_token", "Editovat token", "created_token", "Token \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_token", "Token \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", "archived_token", "Token \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_token", "Token \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_token", "Token \xfasp\u011b\u0161n\u011b odstran\u011bn", "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Poslat emailem", "email_quote", "Odeslat nab\xeddku emailem", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Jm\xe9no", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "Editovat platebn\xed podm\xednky", _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Po\u010det kreditu", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Hledat projekt", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Hledat firmu", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, "Data firmy \xfasp\u011b\u0161n\u011b smaz\xe1na", _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Adresa firmy", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Pr\xe1va", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count faktura odesl\xe1na", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Smazat \xfa\u010det", _s22_44, "Varov\xe1n\xed: Toto permanentn\u011b odstran\xed V\xe1\u0161 \xfa\u010det. Tato akce je nevratn\xe1.", "delete_company", "Odstranit firmu", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Hlavi\u010dka", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", "Design \xfasp\u011b\u0161n\u011b odstran\u011bn", "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, "Pravideln\xe9 nab\xeddky", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Datum kreditu", "credit", "Kredit", "credits", "Kredity", "new_credit", "Zadat kredit", "edit_credit", "Edit Credit", "created_credit", "Kredit \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_credit", _s27_32, "archived_credit", "Kredit \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_credit", "Kredit \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_credit", _s27_34, "restored_credit", "Kredit \xfasp\u011b\u0161n\u011b obnoven", _s16_98, ":count kredit\u016f bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_credits", ":count kredit\u016f bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s16_99, _s36_9, "current_version", "Sou\u010dasn\xe1 verze", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Zjistit v\xedce", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nov\xe1 firma", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Resetovat", "number", "Number", "export", "Export", "chart", "Graf", "count", "Count", "totals", "Celkem", "blank", "Blank", "day", "Day", "month", "M\u011bs\xedc", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Seskupen\xe9 podle", "credit_balance", "Z\u016fstatek kreditu", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Telefon", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "ID klienta", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "P\u0159idat firmu", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Pomoc", "refund", "Vr\xe1cen\xed pen\u011bz", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Zpr\xe1va", "from", "Od", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "F\xf3rum podpory", "about", "About", "documentation", "Dokumentace", "contact_us", "Kontaktuje n\xe1s", "subtotal", "Mezisou\u010det", "line_total", "Celkem", "item", "Polo\u017eka", "credit_email", "Credit Email", "iframe_url", "Web", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, "Hlavn\xed panel klientsk\xe9 z\xf3ny", _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Ano", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Vybrat firmu", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Zobrazit", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, "Zobrazit slevu produktu", _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "U\u017eivatel", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Nastaven\xed dan\xed", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "Obnovit va\u0161e heslo", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Rozvrh", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Email pro fakturu", "payment_email", "Email pro platbu", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Email pro nab\xeddku", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administr\xe1tor", _s18_74, "Povolit u\u017eivatel\u016fm spravovat dal\u0161\xed u\u017eivatele, m\u011bnit nastaven\xed a v\u0161echny z\xe1znamy", "user_management", "Spr\xe1va u\u017eivatel\u016f", "users", "U\u017eivatel\xe9", "new_user", "Nov\xfd u\u017eivatel", "edit_user", "Upravit u\u017eivatele", "created_user", _s25_36, "updated_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", "archived_user", "U\u017eival \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b odstran\u011bn", "restored_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b obnoven", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", ":value u\u017eivatel\xe9 \xfasp\u011b\u0161n\u011b odstran\u011bni", "restored_users", _s34_16, _s16_149, "Obecn\xe9 nastaven\xed", "invoice_options", "Mo\u017enosti faktury", _s17_86, "Skr\xfdt Zaplaceno ke dni", _s22_52, 'Zobrazit na faktu\u0159e "Zaplaceno ke dni" pouze kdy\u017e p\u0159ijde platba.', _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Zobrazit hlavi\u010dku", _s16_152, "Zobrazit pati\u010dku", "first_page", "prvn\xed str\xe1nka", "all_pages", "v\u0161echny str\xe1nky", "last_page", "posledn\xed str\xe1nka", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Z\xe1kladn\xed barva", "secondary_color", "Druh\xe1 barva", "page_size", "Page Size", "font_size", "Velikost fontu", "quote_design", "Quote Design", "invoice_fields", "Pole na faktu\u0159e", "product_fields", "Product Fields", "invoice_terms", "Faktura\u010dn\xed podm\xednky", "invoice_footer", "Pati\u010dka faktury", "quote_terms", "Podm\xednky nab\xeddky", "quote_footer", "Pati\u010dka nab\xeddky", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Automaticky konvertovat", _s23_29, "Automaticky zkonvertovat nab\xeddku na fakturu po schv\xe1len\xed klientem.", _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "t\xfddn\u011b", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "M\u011bs\xed\u010dn\u011b", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Ro\u010dn\u011b", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Firma", _s17_91, _s17_92, "charge_taxes", "Pou\u017e\xedt dan\u011b", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Pole produktu", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Voliteln\xe9 CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, "Umo\u017en\xed V\xe1m nastavit heslo pro ka\u017ed\xfd kontakt. Pokud heslo nastav\xedte, tak kontakt ho bude pro zobrazen\xed faktury v\u017edy pou\u017e\xedt.", "authorization", "Schv\xe1len\xed", "subdomain", "subdom\xe9na", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "S pozdravem,", _s24_38, "P\u0159idejte si mikrozna\u010dky schema.org do emailu a usnadn\u011bte tak va\u0161im klient\u016fm platby.", "plain", "Prost\xfd text", "light", "Sv\u011btl\xfd", "dark", "Tmav\xfd", "email_design", "Vzhled emailu", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Umo\u017enit mikrozna\u010dky", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Zm\u011bnit adresu", _s19_45, "Zm\u011bnit adresu klienta podle poskytnut\xfdch detail\u016f", "rate", "Sazba", "tax_rate", "Da\u0148ov\xe1 sazba", "new_tax_rate", "Nov\xe1 sazba dan\u011b", "edit_tax_rate", "Editovat da\u0148ovou sazbu", _s16_160, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b vytvo\u0159ena", _s16_161, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", _s17_98, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b archivov\xe1na", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Automaticky p\u0159edvyplnit produkty", _s18_80, "V\xfdb\u011br produktu automaticky vypln\xed popis a cenu", "update_products", "Automaticky aktualizovat produkty", _s20_65, "Zm\u011bna na faktu\u0159e automaticky aktualizuje katalog produkt\u016f", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Nepovolen", "currency_format", "Currency Format", _s21_70, "Prvn\xed den v t\xfddnu", _s23_35, "Prvn\xed m\u011bs\xedc v roce", "sunday", "Ned\u011ble", "monday", "Pond\u011bl\xed", "tuesday", "\xdater\xfd", "wednesday", "St\u0159eda", "thursday", "\u010ctvrtek", "friday", "P\xe1tek", "saturday", "Sobota", "january", "Leden", "february", "\xdanor", "march", "B\u0159ezen", "april", "Duben", "may", "Kv\u011bten", "june", "\u010cerven", "july", "\u010cervenc", "august", "Srpen", "september", "Z\xe1\u0159\xed", "october", "\u0158\xedjen", "november", "Listopad", "december", "Prosinec", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 hodinov\xfd \u010das", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Nastaven\xed produktu", "device_settings", "Device Settings", "defaults", "V\xfdchoz\xed", "basic_settings", "Z\xe1kladn\xed nastaven\xed", _s17_103, "Pokro\u010dil\xe9 nastaven\xed", "company_details", "Detaily firmy", "user_details", "U\u017eivatelsk\xe9 detaily", "localization", "Lokalizace", "online_payments", "Online platby", "tax_rates", "Sazby dan\u011b", "notifications", "Notifikace", "import_export", "Import | Export", "custom_fields", "Voliteln\xe1 pole", "invoice_design", "Vzhled faktur", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Nastaven\xed emailu", _s23_37, "\u0160ablony & P\u0159ipom\xednky", _s22_55, _s20_67, _s19_51, "Vizualizace dat", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Obchodn\xed podm\xednky", "privacy_policy", "Privacy Policy", "sign_up", "Zaregistrovat se", "account_login", "P\u0159ihl\xe1\u0161en\xed k \xfa\u010dtu", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "St\xe1hnout", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Datum n\xe1kladu", "pending", "Nevy\u0159\xedzen\xfd", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Zkonvertov\xe1no", _s24_44, _s24_57, "exchange_rate", "M\u011bnov\xfd kurz", _s16_178, "Zkonvertovat m\u011bnu", "mark_paid", "Mark Paid", "category", "Category", "address", "Adresa", "new_vendor", "Nov\xfd dodavatel", "created_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b aktualizov\xe1n", "archived_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b smaz\xe1n", "restored_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b obnoven", _s16_179, ":count dodavatel\u016f bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_vendors", ":count dodavatel\u016f bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s16_180, _s36_11, "new_expense", "Zadat n\xe1klad", "created_expense", "N\xe1klad \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_expense", "N\xe1klad \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", _s16_181, "N\xe1klad \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_expense", _s21_110, _s16_182, "N\xe1klady \xfasp\u011b\u0161n\u011b obnoveny", _s17_109, "N\xe1klady \xfasp\u011b\u0161n\u011b archivov\xe1ny", _s16_183, _s21_110, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Fakturov\xe1no", "logged", "P\u0159ihl\xe1\u0161en", "running", "Be\u017e\xedc\xed", "resume", "Pokra\u010dovat", "task_errors", "Pros\xedm opravte p\u0159ekr\xfdvaj\xedc\xed se \u010dasy", "start", "Za\u010d\xe1tek", "stop", "Konec", "started_task", _s25_47, "stopped_task", "\xdaloha \xfasp\u011b\u0161n\u011b zastavena", "resumed_task", _s25_49, "now", "Nyn\xed", _s16_184, _s16_185, "timer", "\u010casova\u010d", "manual", "Manu\xe1ln\xed", "budgeted", "Budgeted", "start_time", "Po\u010d\xe1te\u010dn\xed \u010das", "end_time", "\u010cas konce", "date", "Datum", "times", "\u010casy", "duration", "Trv\xe1n\xed", "new_task", "Nov\xfd \xfaloha", "created_task", "\xdaloha \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_task", "\xdaloha \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", "archived_task", "\xdaloha \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_task", "\xdaloha \xfasp\u011b\u0161n\u011b smaz\xe1na", "restored_task", "\xdaloha \xfasp\u011b\u0161n\u011b obnovena", "archived_tasks", "\xdasp\u011b\u0161n\u011b archivov\xe1no :count \xfaloh", "deleted_tasks", "\xdasp\u011b\u0161n\u011b smaz\xe1no :count \xfaloh", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, ":count projekt\u016f archivov\xe1no", _s16_188, ":count projekt\u016f smaz\xe1no", _s17_112, "Projekt :value obnoven", "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "klikn\u011bte zde", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Pati\u010dka", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Tento m\u011bs\xedc", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Voliteln\xe9", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Zobrazit fakturu", "convert", "Convert", "more", "More", "edit_client", "Editovat klienta", "edit_product", "Upravit produkt", "edit_invoice", "Editovat fakturu", "edit_quote", "Upravit nab\xeddku", "edit_payment", "Editovat platbu", "edit_task", "Editovat \xfalohu", "edit_expense", "Editovat n\xe1klad", "edit_vendor", "Editovat dodavatele", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Faktura\u010dn\xed adresa", _s16_191, _s16_192, "total_revenue", "Celkov\xe9 p\u0159\xedjmy", "average_invoice", "Pr\u016fm\u011brn\xe1 faktura", "outstanding", "Nezaplaceno", "invoices_sent", ":count faktur odesl\xe1no", "active_clients", "aktivn\xed klienti", "close", "Zav\u0159\xedt", "email", "Email", "password", "Heslo", "url", "URL", "secret", "Secret", "name", "N\xe1zev", "logout", "Odhl\xe1sit se", "login", "P\u0159ihl\xe1\u0161en\xed", "filter", "Filtr", "sort", "Sort", "search", "Vyhledat", "active", "Aktivn\xed", "archived", "Archivov\xe1no", "deleted", "Smaz\xe1no", "dashboard", "Hlavn\xed panel", "archive", "Archivovat", "delete", "Smazat", "restore", "Obnovit", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Ulo\u017eit", _s17_115, _s17_116, "paid_to_date", "Zaplaceno ke dni", "balance_due", "Zb\xfdv\xe1 zaplatit", "balance", "Z\u016fstatek", "overview", "Overview", "details", "Detaily", "phone", "Telefon", "website", "Str\xe1nky", "vat_number", "DI\u010c", "id_number", "I\u010cO", "create", "Vytvo\u0159it", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontakty", "additional", "Additional", "first_name", "Jm\xe9no", "last_name", "P\u0159\xedjmen\xed", "add_contact", "P\u0159idat kontakt", "are_you_sure", "Jste si jisti?", "cancel", "Zru\u0161it", "ok", "Ok", "remove", "Odstranit", _s16_197, _s16_198, "product", "Produkt", "products", "Produkty", "new_product", "Nov\xfd produkt", "created_product", "Produkt \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_product", "Produkt \xfasp\u011b\u0161n\u011b aktualizov\xe1n", _s16_199, "Produkt \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "Pozn\xe1mky", "cost", "Cena", "client", "Klient", "clients", "Klienti", "new_client", "Nov\xfd klient", "created_client", "Klient \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_client", "Klient \xfasp\u011b\u0161n\u011b aktualizov\xe1n", "archived_client", "Klient \xfasp\u011b\u0161n\u011b archivov\xe1n", _s16_202, ":count klient\u016f bylo \xfasp\u011b\u0161n\u011b\xa0archivov\xe1no", "deleted_client", "Klient \xfasp\u011b\u0161n\u011b\xa0smaz\xe1n", "deleted_clients", ":count klient\u016f bylo \xfasp\u011b\u0161n\u011b\xa0smaz\xe1no", "restored_client", "Klient \xfasp\u011b\u0161n\u011b obnoven", _s16_203, _s36_13, "address1", "Ulice", "address2", "\u010c\xedslo patra/bytu", "city", "M\u011bsto", "state", "Kraj", "postal_code", "PS\u010c", "country", "Zem\u011b", "invoice", "Faktura", "invoices", "Faktury", "new_invoice", "Nov\xe1 faktura", "created_invoice", "Faktura \xfasp\u011b\u0161n\u011b\xa0vytvo\u0159ena", "updated_invoice", "Faktura \xfasp\u011b\u0161n\u011b\xa0aktualizov\xe1na", _s16_204, "Faktura \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_invoice", "Faktura \xfasp\u011b\u0161n\u011b smaz\xe1na", _s16_205, "Faktura \xfasp\u011b\u0161n\u011b obnovena", _s17_119, ":count faktur \xfasp\u011b\u0161n\u011b archivov\xe1no", _s16_206, ":count faktur \xfasp\u011b\u0161n\u011b smaz\xe1no", _s17_120, _s37_17, "emailed_invoice", "Faktura \xfasp\u011b\u0161n\u011b odesl\xe1na", "emailed_payment", _s28_58, "amount", "\u010c\xe1stka", "invoice_number", "\u010c\xedslo faktury", "invoice_date", "Datum vystaven\xed", "discount", "Sleva", "po_number", _s16_259, "terms", "Podm\xednky", "public_notes", "Ve\u0159ejn\xe9 pozn\xe1mky", "private_notes", "Soukrom\xe9 pozn\xe1mky", "frequency", "Frekvence", "start_date", "Po\u010d\xe1te\u010dn\xed datum", "end_date", "Kone\u010dn\xe9 datum", "quote_number", "\u010c\xedslo nab\xeddky", "quote_date", "Datum nab\xeddky", "valid_until", "Plat\xed do", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Popis", "unit_cost", "Jedn. cena", "quantity", "Mno\u017estv\xed", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", _s16_260, _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Celkem", "percent", "Percent", "edit", "Upravit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Nastaven\xed", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "DPH", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Odesl\xe1no", "viewed", "Viewed", "approved", "Approved", "partial", "Z\xe1loha", "paid", "Zaplacen\xe9", "mark_sent", "Zna\u010dka odesl\xe1no", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Dokon\u010dit", _s37_18, _s37_19, "dark_mode", "Tmav\xfd m\xf3d", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Pr\xe1zdn\xfd kontakt", "activity", "Aktivita", _s16_209, "Nebyly nalezeny \u017e\xe1dn\xe9 z\xe1znamy", "clone", "Duplikovat", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Platebn\xed podm\xednky", "payment_date", "Datum platby", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Klientsk\xfd port\xe1l", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Prvn\xed p\u0159ipom\xednka", "second_reminder", "Druh\xe1 p\u0159ipom\xednka", "third_reminder", "T\u0159et\xed p\u0159ipom\xednka", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "P\u0159edm\u011bt", "body", "T\u011blo", "send_email", "Odeslat email", "email_receipt", "Odeslat potvrzen\xed platby klientovi", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "P\u0159izp\u016fsoben\xed", "history", "Historie", "payment", "Platba", "payments", "Platby", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "Odkaz na transakci", "enter_payment", "Zadat platbu", "new_payment", "Zadat platbu", "created_payment", "Platba \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_payment", "Platba \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", _s16_217, "Platba \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_payment", "Platba \xfasp\u011b\u0161n\u011b smaz\xe1na", _s16_218, "Platba \xfasp\u011b\u0161n\u011b obnovena", _s17_124, ":count plateb \xfasp\u011b\u0161n\u011b archivov\xe1no", _s16_219, ":count plateb bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s17_125, _s37_20, "quote", "Nab\xeddka", "quotes", "Nab\xeddky", "new_quote", "Nov\xe1 nab\xeddka", "created_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b aktualizov\xe1na", "archived_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b smaz\xe1na", "restored_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b obnovena", "archived_quotes", ":count nab\xeddek bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_quotes", ":count nab\xeddek bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", "restored_quotes", _s35_21, "expense", "N\xe1klad", "expenses", "N\xe1klady", "vendor", "Dodavatel", "vendors", "Dodavatel\xe9", "task", "Task", "tasks", "\xdalohy", "project", "Project", "projects", "Projekty", "activity_1", ":user vytvo\u0159il klienta :client", "activity_2", ":user archivoval klienta :client", "activity_3", ":user smazal klienta :client", "activity_4", ":user vytvo\u0159il fakturu :invoice", "activity_5", ":user zm\u011bnil fakturu :invoice", "activity_6", ":user poslal email s fakturou :invoice pro :client na :contact", "activity_7", "Klient :contact zobrazil fakturu :invoice pro :client", "activity_8", ":user archivoval fakturu :invoice", "activity_9", ":user smazal fakturu :invoice", "activity_10", _s85_0, "activity_11", ":user zm\u011bnil platbu :payment", "activity_12", _s32_14, "activity_13", ":user smazal platbu :payment", "activity_14", ":user zadal :credit kredit", "activity_15", ":user zm\u011bnil :credit kredit", "activity_16", _s31_26, "activity_17", ":user smazal :credit kredit", "activity_18", ":user vytvo\u0159il nab\xeddku :quote", "activity_19", ":user zm\u011bnil nab\xeddku :quote", "activity_20", _s50_9, "activity_21", ":contact zobrazil nab\xeddku :quote", "activity_22", ":user archivoval nab\xeddku :quote", "activity_23", ":user smazal nab\xeddku :quote", "activity_24", ":user obnovil nab\xeddku :quote", "activity_25", ":user obnovil fakturu :invoice", "activity_26", ":user obnovil klienta :client", "activity_27", _s29_51, "activity_28", _s28_65, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", ":user vytvo\u0159il v\xfddaj :expense", "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user znovu otev\u0159el tiket :ticket", "activity_55", ":contact odpov\u011bd\u011bl na tiket :ticket", "activity_56", ":user zobrazil tiket :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b odesl\xe1na", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expirovan\xe9", "all", "All", "select", "Zvolit", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, "Vlastn\xed zpr\xe1va na hlavn\xedm panelu", _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u010c\xedseln\xe1 \u0159ada faktur", _s20_73, _s20_74, _s20_75, "\u010c\xedseln\xe1 \u0159ada nab\xeddek", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Typ", "invoice_amount", "\u010c\xe1stka faktury", _s16_224, _s16_260, "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Automatick\xe9 fakturov\xe1n\xed", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "N\xe1zev dan\u011b", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u010c\xe1stka k platb\u011b", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "N\xe1zev dan\u011b 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "da", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Betalingsindstillinger", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "St\xe5ende", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Tilf\xf8j gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Tilf\xf8j til faktura nr.: :invoice", _s17_6, _s17_7, "week", "Uge", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "Interval", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Opret projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Godkend", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "S\xe6t adgangskode", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s22_81, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Brugerguide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Senest opdateret", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Ikke tilknyttet", "partial_value", "Skal v\xe6re st\xf8rre end nul og mindre end totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktiv\xe9r", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Angiv subdom\xe6net eller vis fakturaen p\xe5 din egen hjemmeside.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Sikkerhed", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, "Abonnementet blev opdateret", _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "Refunderet betaling", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Forrige kvartal", "to_update_run", "To update run", _s18_33, "Konvert\xe9r til en faktura", _s16_52, _s16_53, "invoice_project", "Faktur\xe9r projekt", "invoice_task", "Fakturer opgave", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skjul", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolonne", "sample", "Eksempel", "map_to", "Map To", "import", "Importer", _s25_15, _s29_6, "select_file", "Venligst v\xe6lg en fil", _s16_60, _s16_61, "csv_file", "V\xe6lg CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Ikke betalt", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Faktura total", "quote_total", "Tilbud total", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Advarsel", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "Kontrolcifre", "client_name", "Kundenavn", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Udgiftskategorier", _s20_42, "Ny udgiftskategori", _s21_40, _s21_41, _s24_28, "Udgiftskategori oprettet", _s24_29, "Ajourf\xf8rt udgiftskategori", _s25_19, "Udgiftskategori arkiveret", _s24_30, "Sletning af kategori er gennemf\xf8rt", _s24_31, _s37_7, _s25_20, "Udgiftskategori genoprettet", _s27_21, ".count udgiftskategori(er) arkiveret", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "Paypal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark\xe9r som aktiv", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Gentaget faktura", _s18_45, "Gentagende fakturaer", _s21_47, "Ny gentaget fakture", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Fortjeneste", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "Se Portal", "copy_link", "Copy Link", "token_billing", "Gem kort detaljer", _s24_34, _s24_35, "always", "Altid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Klientnummer", "auto_convert", "Auto Convert", "company_name", "Firma navn", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Timer", "statement", "Statement", "taxes", "Skatter", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Til", "health_check", "Health Check", "payment_type_id", "Betalingsmetode", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Kommende fakturaer", _s17_59, _s17_60, "recent_payments", "Nylige betalinger", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Opret faktura", "create_quote", "Opret tilbud", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Slet tilbud", "update_invoice", "Update Invoice", "delete_invoice", "Slet faktura", "update_client", "Update Client", "delete_client", "Slet kunde", "delete_payment", "Slet betaling", "update_vendor", "Update Vendor", "delete_vendor", "Slet s\xe6lger", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Opret opgave", "update_task", "Update Task", "delete_task", "Slet opgave", "approve_quote", "Approve Quote", "off", "Deaktiver", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Token's", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token's", "new_token", "New Token", "edit_token", "Redig\xe9r token", "created_token", "Token oprettet", "updated_token", "Token opdateret", "archived_token", _s27_25, "deleted_token", "Token slettet", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Send faktura som e-mail", "email_quote", "E-mail tilbuddet", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Kontakt navn", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kreditbel\xf8b", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Eksklusiv", "inclusive", "Inklusiv", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", _s17_148, _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, "By/Postnummer", _s17_73, "Postnummer/By/Region", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, "Advarsel: Dette vil slette dine data permanent, der er ingen m\xe5der at fortryde.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 dage", "age_group_30", "30 - 60 dage", "age_group_60", "60 - 90 dage", "age_group_90", "90 - 120 dage", "age_group_120", "120+ dage", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Fakturadetaljer", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s22_82, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Anvend licens", "cancel_account", "Annuller konto", _s22_44, "ADVARSEL: Dette vil permanent slette din konto, der er INGEN mulighed for at fortryde.", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Hoved", "load_design", "Indl\xe6s design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Projektforslag", "tickets", "Sager", _s16_96, "Gentagne tilbud", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Kreditdato", "credit", "Kredit", "credits", "Kreditter", "new_credit", "Indtast kredit", "edit_credit", "Redig\xe9r kredit", "created_credit", "Kredit oprettet", "updated_credit", "Opdatering af kredit gennemf\xf8rt", "archived_credit", "Kredit arkiveret", "deleted_credit", "Kredit slettet", "removed_credit", _s27_34, "restored_credit", "Kredit genskabt", _s16_98, "Arkiverede :count kreditter", "deleted_credits", "Slettede :count kreditter", _s16_99, _s36_9, "current_version", "Nuv\xe6rende version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "L\xe6r mere", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nyt firma", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Eksport", "chart", "Diagram", "count", "Count", "totals", "Totaler", "blank", "Blank", "day", "Dag", "month", "M\xe5ned", "year", "\xc5r", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupp\xe9r efter", "credit_balance", "Kreditsaldo", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Kontakttelefon", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Klients ID", "assigned_to", "Assigned to", "created_by", "Oprettet af :navn", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolonner", "aging", "Aging", "profit_and_loss", "Fortjeneste og tab", "reports", "Rapporter", "report", "Rapport", "add_company", "Tilf\xf8j firma", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Hj\xe6lp", "refund", "Refunder", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "E-mailkontakt", "multiselect", "Multiselect", "entity_state", "Status", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Besked", "from", "Fra", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Dokumentation", "contact_us", "Kontakt os", "subtotal", "Subtotal", "line_total", "Sum", "item", "Produkttype", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "V\xe6lg venligst en kunde", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Skift", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Indsend", _s16_142, "Generhverv din adgangskode", "late_fees", "Late Fees", "credit_number", "Kreditnummer", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Dage", "invoice_email", "Faktura e-mail", "payment_email", "Betalings e-mail", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Tilbuds e-mail", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "Brugerh\xe5ndtering", "users", "Brugere", "new_user", "New User", "edit_user", "Rediger bruger", "created_user", _s25_36, "updated_user", "Bruger opdateret", "archived_user", _s26_24, "deleted_user", "Bruger slettet", "removed_user", _s25_39, "restored_user", "Bruger genskabt", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Fakturaindstillinger", _s17_86, _s19_79, _s22_52, "Vis kun delbetalinger hvis der er forekommet en delbetaling.", _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show header on", _s16_152, "Show footer on", "first_page", "first page", "all_pages", "all pages", "last_page", "last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Prim\xe6r Farve", "secondary_color", "Sekund\xe6r Farve", "page_size", "Page Size", "font_size", "Font St\xf8rrelse", "quote_design", "Quote Design", "invoice_fields", "Faktura felt", "product_fields", "Product Fields", "invoice_terms", _s20_83, "invoice_footer", "Faktura fodnoter", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto konvertering", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daglig", "freq_weekly", "Ugentlig", "freq_two_weeks", "To uger", "freq_four_weeks", "Fire uger", "freq_monthly", "M\xe5nedlig", "freq_two_months", "To m\xe5neder", _s17_90, "Tre m\xe5neder", _s16_153, "Fire m\xe5neder", "freq_six_months", "Seks m\xe5neder", "freq_annually", "\xc5rlig", "freq_two_years", "To \xe5r", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, "Dannede numre", "charge_taxes", "Inkluder skat", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Projektfelt", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Pr\xe6fix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Brugerdefineret CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, "Afkrydsningsfelt for fakturavilk\xe5r", _s30_9, "Bed kunden om at bekr\xe6fte, at de accepterer fakturavilk\xe5rene.", _s23_30, "Tilbuds Betingelser Afkrydsningsfelt", _s28_21, "Bed kunden om at bekr\xe6fte, at de accepterer tilbudsbetingelserne.", _s25_41, "Fakturasignatur", _s30_10, "Kr\xe6v at klienten giver deres underskrift.", _s23_31, "Tilbuds underskrift", _s22_54, "Adgangskodebeskyttet Fakturaer", _s27_36, "Lader dig indtaste en adgangskode til hver kontakt. Hvis en adgangskode ikke er lavet, vil kontakten blive p\xe5lagt at indtaste en adgangskode f\xf8r det er muligt at se fakturaer.", "authorization", "Autorisation", "subdomain", "Underdomain", "domain", "Dom\xe6ne", "portal_mode", "Portal Mode", "email_signature", "Venlig hilsen,", _s24_38, "G\xf8r det lettere for dine klienter at betale dig ved at tilf\xf8je schema.org markup i dine e-mails.", "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Brug HTML markup sprog", "reply_to_email", "Svar-til e-mail", "reply_to_name", "Reply-To Name", "bcc_email", "BCC-email", "processed", "Processed", "credit_card", "Kreditkort", "bank_transfer", "Bankoverf\xf8rsel", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktiv\xe9r minimum", "enable_max", "Aktiv\xe9r maksimum", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Opdater adresse", _s19_45, "Opdater kundens adresse med de opgivne detaljer", "rate", "Sats", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Automatisk-udfyld produkter", _s18_80, "Valg af produkt vil automatisk udfylde beskrivelse og pris", "update_products", "Automatisk opdatering af produkter", _s20_65, "En opdatering af en faktura vil automatisk opdaterer Produkt biblioteket", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Gebyrer", "limits", "Gr\xe6nser", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "Januar", "february", "Februar", "march", "Marts", "april", "April", "may", "Maj", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Produkt Indstillinger", "device_settings", "Device Settings", "defaults", "Standarder", "basic_settings", "Basic Settings", _s17_103, "Avancerede indstillinger", "company_details", "Virksomhedsinformation", "user_details", "User Details", "localization", "Lokalisering", "online_payments", "Onlinebetaling", "tax_rates", "Momssatser", "notifications", "P\xe5mindelser", "import_export", "Import/Eksport", "custom_fields", "Brugerdefineret felt", "invoice_design", "Fakturadesign", "buy_now_buttons", '"K\xf8b nu" knapper', "email_settings", "E-mail-indstillinger", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s17_149, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Vilk\xe5r for brug", "privacy_policy", "Privatlivspolitik", "sign_up", "Registrer dig", "account_login", "Konto Log ind", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Opret ny", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Hent", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Afventer", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Konverteret", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Mark\xe9r som betalt", "category", "Kategori", "address", "Adresse", "new_vendor", "Ny s\xe6lger", "created_vendor", "S\xe6lger oprettet", "updated_vendor", "S\xe6lger opdateret succesfuldt", "archived_vendor", "Gennemf\xf8rte arkivering af s\xe6lger", "deleted_vendor", "Sletning af s\xe6lger gennemf\xf8rt", "restored_vendor", "Genskabelse af s\xe6lger gennemf\xf8rt", _s16_179, "Gennemf\xf8rte arkivering af :count s\xe6lgere", "deleted_vendors", "Gennemf\xf8rte sletning af :count s\xe6lgere", _s16_180, _s36_11, "new_expense", "Indtast udgift", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Faktureret", "logged", "Ajourf\xf8rt", "running", "K\xf8rer", "resume", "Genoptag", "task_errors", "Ret venligst de overlappende tider", "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", "Opgave stoppet", "resumed_task", _s25_49, "now", "Nu", _s16_184, _s16_185, "timer", "Tidtager", "manual", "Manuelt", "budgeted", "Budgeted", "start_time", "Start Tidspunkt", "end_time", "Slut tidspunkt", "date", "Dato", "times", "Gange", "duration", "Varighed", "new_task", "Ny opgave", "created_task", "Opgave oprettet", "updated_task", "Opgave opdateret", "archived_task", "Opgave arkiveret", "deleted_task", "Opgave slettet", "restored_task", "Opgave genskabt", "archived_tasks", "Antal arkiverede opgaver: :count", "deleted_tasks", "Antal opgaver slettet: :count", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", "Projektet blev oprettet", "updated_project", "Projektet blev opdateret", _s16_186, "Projektet blev arktiveret", "deleted_project", _s22_81, _s16_187, "Projektet blev genskabt", _s17_111, ":count projekter blev arkiveret", _s16_188, ":count projekter blev slettet", _s17_112, _s37_15, "new_project", "Nyt projekt", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "Klik her", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Fod", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Valgfri periode", "date_range", "Dato omr\xe5de", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Denne m\xe5ned", "last_month", "Forrige m\xe5ned", "this_year", "Dette \xe5r", "last_year", "Forrige \xe5r", "custom", "Brugertilpasset", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Se faktura", "convert", "Convert", "more", "More", "edit_client", "Rediger kunde", "edit_product", "Rediger produkt", "edit_invoice", "Rediger faktura", "edit_quote", "Rediger tilbud", "edit_payment", "Redig\xe9r betaling", "edit_task", "Redig\xe9r opgave", "edit_expense", "Edit Expense", "edit_vendor", "Redig\xe9r s\xe6lger", "edit_project", "Redig\xe9r projekt", _s20_68, _s20_69, "billing_address", "Faktura adresse", _s16_191, _s16_192, "total_revenue", "Samlede indt\xe6gter", "average_invoice", "Gennemsnitlig fakturaer", "outstanding", "Forfaldne", "invoices_sent", _s22_82, "active_clients", "aktive kunder", "close", "Luk", "email", "E-mail", "password", "Kodeord", "url", "URL", "secret", "Hemmelighed", "name", "Navn", "logout", "Log ud", "login", "Log ind", "filter", "Filter", "sort", "Sort", "search", "S\xf8g", "active", "Aktiv", "archived", "Archived", "deleted", "Slettet", "dashboard", "Oversigt", "archive", "Arkiv", "delete", "Slet", "restore", "Genskab", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Gem", _s17_115, _s17_116, "paid_to_date", "Betalt pr. d.d.", "balance_due", "Udest\xe5ende bel\xf8b", "balance", "Balance", "overview", "Overview", "details", "Detaljer", "phone", "Telefon", "website", "Hjemmeside", "vat_number", "CVR/SE-nummer", "id_number", "CVR/SE-nummer", "create", "Opret", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontakter", "additional", "Additional", "first_name", "Fornavn", "last_name", "Efternavn", "add_contact", "Tilf\xf8j kontakt", "are_you_sure", "Er du sikker?", "cancel", "Annuller", "ok", "Ok", "remove", "Fjern", _s16_197, _s16_198, "product", "Produkt", "products", "Produkter", "new_product", "New Product", "created_product", "Produkt oprettet", "updated_product", "Produkt opdateret", _s16_199, "Produkt arkiveret", "deleted_product", "Sletning af produkt gennemf\xf8rt", _s16_200, "Genskabelse af produkt gennemf\xf8rt", _s17_117, _s37_23, _s16_201, "Sletning af :count produkter gennemf\xf8rt", _s17_118, _s37_16, "product_key", "Produkt", "notes", "Notes", "cost", "Cost", "client", "Kunde", "clients", "Kunder", "new_client", "Ny kunde", "created_client", "Kunde oprettet succesfuldt", "updated_client", "Kunde opdateret", "archived_client", "Kunde arkiveret", _s16_202, "Arkiverede :count kunder", "deleted_client", "Kunde slettet", "deleted_clients", "Slettede :count kunder", "restored_client", "Kunde genskabt", _s16_203, _s36_13, "address1", "Gade", "address2", "Nummer", "city", "By", "state", "Omr\xe5de", "postal_code", "Postnummer", "country", "Country", "invoice", "Faktura", "invoices", "Fakturaer", "new_invoice", "Ny faktura", "created_invoice", "Faktura oprettet", "updated_invoice", "Faktura opdateret", _s16_204, "Faktura arkiveret", "deleted_invoice", "Faktura slettet", _s16_205, "Faktura genskabt", _s17_119, "Arkiverede :count fakturaer", _s16_206, "Slettede :count fakturaer", _s17_120, _s37_17, "emailed_invoice", "E-mail faktura sendt", "emailed_payment", _s28_58, "amount", "Bel\xf8b", "invoice_number", "Fakturanummer", "invoice_date", _s16_261, "discount", "Rabat", "po_number", "Ordrenummer", "terms", "Vilk\xe5r", "public_notes", "Public Notes", "private_notes", "Private notater", "frequency", "Frekvens", "start_date", "Startdato", "end_date", "Slutdato", "quote_number", "Tilbuds nummer", "quote_date", "Tilbuds dato", "valid_until", "Gyldig indtil", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Beskrivelse", "unit_cost", "Enhedspris", "quantity", "Stk.", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Betalingsfrist", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Procent", "edit", "Rediger", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Indstillinger", "language", "Language", "currency", "Currency", "created_at", "Oprettelsesdato", "created_on", "Created On", "updated_at", "Opdateret", "tax", "Moms", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Kladde", "sent", "Sendt", "viewed", "Viewed", "approved", "Approved", "partial", "Udbetaling", "paid", "Betalt", "mark_sent", "Mark\xe9r som sendt", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "F\xe6rdig", _s37_18, _s37_19, "dark_mode", "M\xf8rk tilstand", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivitet", _s16_209, _s16_210, "clone", "Kopi\xe9r", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Betalingsvilk\xe5r", "payment_date", "Betalingsdato", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktiveret", "recipients", "Modtagere", "initial_email", "Indledende e-mail", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Skabelon", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send e-mail", "email_receipt", "Send e-mail kvittering til kunden", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "Historie", "payment", "Betaling", "payments", "Betalinger", "refunded", "Refunded", "payment_type", "Betalingstype", _s21_79, "Transaktionsreference", "enter_payment", "Tilf\xf8j betaling", "new_payment", "Indtast betaling", "created_payment", "Betaling oprettet", "updated_payment", "Betaling opdateret", _s16_217, "Betaling arkiveret", "deleted_payment", _s16_262, _s16_218, "Betaling genskabt", _s17_124, "Arkiverede :count betalinger", _s16_219, "Slettede :count betalinger", _s17_125, _s37_20, "quote", "Pristilbud", "quotes", "Pristilbud", "new_quote", "Nyt tilbud", "created_quote", "Tilbud oprettet", "updated_quote", "Tilbud opdateret", "archived_quote", "Tilbud arkiveret", "deleted_quote", "Tilbud slettet", "restored_quote", "Tilbud genskabt", "archived_quotes", "Arkiverede :count tilbud", "deleted_quotes", "Slettede :count tilbud", "restored_quotes", _s35_21, "expense", "Expense", "expenses", "Udgifter", "vendor", "S\xe6lger", "vendors", "S\xe6lgere", "task", "Opgave", "tasks", "Opgaver", "project", "Projekt", "projects", "Projekter", "activity_1", _s28_46, "activity_2", ":user arkiverede kunde :client", "activity_3", ":user slettede kunde :client", "activity_4", ":user oprettede faktura :invoice", "activity_5", ":user ajourf\xf8rte faktura :invoice", "activity_6", ":user emailede fakturaen :invoice for :client til :contact", "activity_7", ":contact l\xe6ste faktura :invoice for :client", "activity_8", ":user arkiverede faktura :invoice", "activity_9", ":user slettede faktura :invoice", "activity_10", ":contact indtastede betaling :payment for :payment_amout i fakturaen :invoice for :client", "activity_11", ":user ajourf\xf8rte betaling :payment", "activity_12", ":user arkiverede betaling :payment", "activity_13", ":user slettede betaling :payment", "activity_14", ":user indtastede :credit kredit", "activity_15", ":user ajourf\xf8rte :credit kredit", "activity_16", ":user arkiverede :credit kredit", "activity_17", ":user slettede :credit kredit", "activity_18", ":user oprettede tilbud :quote", "activity_19", ":user ajourf\xf8rte tilbud :quote", "activity_20", ":user emailede tilbuddet :quote for :client til :contact", "activity_21", ":contact l\xe6ste tilbud :quote", "activity_22", ":user arkiverede tilbud :quote", "activity_23", ":user slettede tilbud:quote", "activity_24", ":user genoprettede tilbud :quote", "activity_25", ":user genoprettede faktura :invoice", "activity_26", ":user genoprettede kunde :client", "activity_27", ":user genoprettede betaling :payment", "activity_28", ":user genoprettede :credit kredit", "activity_29", ":contact godkendte tilbuddet :quote for :client", "activity_30", ":user oprettede s\xe6lger :vendor", "activity_31", ":user arkiverede s\xe6lger :vendor", "activity_32", ":user slettede s\xe6lgeren :vendor", "activity_33", ":user genskabte s\xe6lgeren :vendor", "activity_34", ":user oprettede udgiften :expense", "activity_35", ":user arkiverede udgiften :expense", "activity_36", ":user slettede udgiften :expense", "activity_37", ":user genskabte udgiften :expense", "activity_39", ":user annullerede en :payment_amount betaling :payment", "activity_40", ":bruger refunderet :justering af en :betaling_bel\xf8b betaling :betaling", "activity_41", ":payment_amount betaling (:betaling) mislykkedes", "activity_42", ":user oprettede opgaven :task", "activity_43", ":user opdaterede opgaven :task", "activity_44", ":user arkiverede opgaven :task", "activity_45", ":user slettede opgave :task", "activity_46", ":user genoprettede opgave :task", "activity_47", ":user ajourf\xf8rte udgift :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user gen\xe5bnede sagen :ticket", "activity_55", ":contact besvarede sagen :ticket", "activity_56", ":user l\xe6ste sagen :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Tilbud sendt som e-mail", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "Alle", "select", "V\xe6lg", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Fakturanummer-t\xe6ller", _s20_73, _s20_74, _s20_75, "Tilbuds nummer-t\xe6ller", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Bel\xf8b", "age", "Alder", "is_running", "Is Running", "time_log", "Tids log", "bank_id", "bank", _s19_66, _s19_67, _s16_225, "Udgiftskategori", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "nl", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accepteer", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Betalingsinstellingen", "default", "Standaard", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Openstaand", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Gateway toevoegen", _s24_6, _s77_, "left", "Links", "right", "Rechts", "center", "Midden", "page_numbering", "Pagina nummering", _s24_7, "Pagina nummering uitlijning", _s31_1, "Factuur verstuurd", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Maak binnen enkele seconden uw account aan", "login_label", _s28_, "add_to_invoice", "Toevoegen aan factuur :invoice", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Factuur valuta", "range", "Bereik", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Project aanmaken", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "De toeslag voor een :amount factuur is :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", "Succesvol :value taken gestart", "stopped_tasks", "Succesvol :value taken gestopt", "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Goedkeuren", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Reken om naar", "client_currency", "Klant valuta", _s16_12, "Bedrijf valuta", "purged_client", "De klant is gewist", _s27_5, "Om spam te voorkomen moet je een betaald account hebben om emails aan te passen", _s22_22, "Upgrade uw abonnement om meer bedrijven toe te voegen", _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, "Data is aan het laden - een moment geduld", "wait_for_saving", "Data is aan het opslaan - een moment geduld", _s20_17, "Opmerking: veranderingen die hier worden gemaakt zijn voorvertoningen, ze moeten hierboven worden toegepast", "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", ":user heeft terugkerende uitgave :recurring_expense aangemaakt", "activity_121", "::user heeft terugkerende uitgave :recurring_expense aangepast", "activity_122", ":user heeft terugkerende uitgave :recurring_expense gearchiveerd", "activity_123", ":user heeft terugkerende uitgave :recurring_expense verwijderd", "activity_124", ":user heeft terugkerende uitgave :recurring_expense teruggezet", "normal", "Normaal", "large", "Groot", "extra_large", "Extra groot", _s16_15, "Laat PDF voorvertoning zien", _s21_14, "Laat PDF voorvertoning zien tijdens het aanpassen van de facturen", "print_pdf", "Print PDF", "remind_me", "Herinner mij", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Verberg voorvertoning", "edit_record", "Edit Record", _s27_6, "Het kredietbedrag kan niet meer zijn dan het te factureren bedrag.", "giropay", "GiroPay", "direct_debit", "Automatische Incasso", _s21_15, "Voer een account wachtwoord in", "set_password", "Stel wachtwoord in", _s17_9, "Wij raden de desktop app aan voor de beste werking.", _s16_19, "Wij raden de mobiele app aan voor de beste werking.", _s20_18, _s33_4, "disconnect", "Verbreek verbinding", "add_to_invoices", "Voeg toe aan facturen", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, "Klant postcode", _s17_11, "Klant BTW-nummer", "has_tasks", "Has Tasks", "registration", "Registratie", _s27_7, _s50_4, "view_expense", "Bekijk uitgave #:expense", "view_statement", "Toon overzicht", "sepa", "SEPA Automatisch incasso", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Systeem", _s19_12, "Stel in als standaard bedrijf", "updated_company", "Bedrijf succesvol ge\xfcpdatet", "kbc", "KBC", "bancontact", "Bancontact", _s19_14, "Help ons door aan te geven waarom (optioneel)", "webhook_success", "Webhook Success", _s24_13, "Taken moeten allemaal behoren tot dezelfde klant", _s27_8, "Kosten moeten allemaal behoren tot dezelfde klant", "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email factuur", _s16_230, "Email offerte", _s17_134, "Email Credit", "from_name", "Van naam", _s16_21, "Kopieer naar uitgave", _s17_13, "Terugkerende uitgave", _s18_13, "Terugkerende uitgaven", _s21_16, "Nieuwe terugkerende uitgave", _s22_24, "Terugkerende uitgave bewerken", _s25_2, "De terugkerende uitgave is aangemaakt", _s25_3, "De terugkerende uitgave is gewijzigd", _s26_2, "De terugkerende uitgave is gearchiveerd", _s25_4, _s25_61, _s25_5, _s38_2, _s26_3, "De terugkerende uitgave is hersteld", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Gebruikershandleiding", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Netto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importeer data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user heeft terugkerend factuur :recurring_invoice aangemaakt", "activity_101", ":user heeft terugkerend factuur :recurring_invoice aangepast", "activity_102", ":user heeft terugkerend factuur :recurring_invoice gearchiveerd", "activity_103", ":user heeft terugkerend factuur :recurring_invoice verwijderd", "activity_104", ":user heeft terugkerend factuur :recurring_invoice teruggezet", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Laatst bijgewerkt", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Contact voornaam", _s17_17, "Contact achternaam", "order", "Order", "unassigned", "Niet toegewezen", "partial_value", "Moet groter zijn dan nul en minder dan het totaal", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activeer", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Stel het subdomein in of toon de factuur op uw eigen website.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promocode", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Beveiliging", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnementen", _s16_39, "Nieuw Abonnement", _s17_23, "Abonnement wijzigen", _s20_23, "Het abonnement is aangemaakt", _s20_24, "Het abonnement is gewijzigd", _s21_28, "Het abonnement is gearchiveerd", _s20_25, _s31_27, _s20_26, _s31_27, _s21_29, "Succesvol abonnement hersteld", _s19_17, "Zoek 1 abonnement", _s20_27, "Zoek :count abonnementen", _s26_6, "Subdomein is niet beschikbaar", "connect_gmail", "Verbind Gmail", _s16_41, "Verbreek Gmail", "connected_gmail", "Succesvol verbonden met Gmail", _s18_29, "Succesvol verbroken met Gmail", _s16_43, "Wijzigingen aan de code kunnen leiden tot een blokkade tijdens het updaten. Door het volgende commando kan je de wijzigingen verwijderen:", _s16_44, "Klant-id nummer", "count_minutes", ":count minuten", _s16_46, "Wachtwoord timeout", _s29_4, "Gedeelde factuur/offertenummers teller", "use_last_email", "Gebruik laatste e-mail", _s16_48, "Activeer bedrijf", _s21_31, "Schakel e-mails, terugkerende facturen en meldingen in", _s27_14, "Er is een fout opgetreden, probeer het opnieuw", _s27_15, "Stel eerst een wachtwoord in", _s34_6, "Waarschuwing: als u uw telefoonnummer wijzigt, wordt 2FA uitgeschakeld", "help_translate", "Help vertalen", _s23_11, "Selecteer een land", "resend_invite", "Uitnodiging opnieuw versturen", _s19_18, "2FA succesvol uitgeschakeld", _s16_50, "Account succesvol verbonden", _s19_19, "Account succesvol losgekoppeld", "delivered", "Afgeleverd", "bounced", "Bounced", "spam", "Spam", "view_docs", "Bekijk documenten", _s32_4, "Geef een mobiel telefoonnummer op om tweefactor authenticatie in te schakelen", "send_sms", "Verzend SMS", "sms_code", "SMS Code", _s21_32, "Scan de streepjescode met een :link compatibele app.", _s18_30, "Tweestaps-authenticatie ingeschakeld", "connect_google", "Verbind met Google", _s17_25, "Verwijder Google", _s17_27, "Tweestaps-authenticatie", _s18_31, "Schakel twee factor authenticatie uit", _s34_7, "Vereis wachtwoord met sociale login", "stay_logged_in", "Blijf ingelogd", _s23_13, "Waarschuwing: uw sessie loopt bijna af", "count_hours", ":count uren", "count_day", "1 dag", "count_days", ":count dagen", _s19_20, "Time-out van websessie", _s17_28, "Veiligheidsinstellingen", "resend_email", "Email opnieuw verzenden", _s26_8, "Bevestig je e-mailadres", _s16_51, "Gecrediteerde betaling", _s19_22, _s27_68, _s19_24, "Selecteer een gebruiker die is geverifieerd met Gmail", "list_long_press", "Lijst lang indrukken", "show_actions", "Toon acties", _s17_30, "Start Multi select", _s27_17, "Er is een e-mail verzonden om het e-mailadres te bevestigen", _s21_33, "Om :client_counter te gebruiken, voeg ofwel :client_number of :client_id_number toe om conflicten te voorkomen", "this_quarter", "Dit kwartaal", "last_quarter", "Laatste Kwartaal", "to_update_run", "Om bij te werken voer", _s18_33, "Zet om naar factuur", _s16_52, "Registratie link", "invoice_project", "Factureer project", "invoice_task", "Factureer taak", "invoice_expense", "Factureer uitgave", _s19_25, "Zoek betalingstermijn 1", _s20_28, "Zoek :count betalingstermijnen", _s16_54, "Opslaan en bekijk voorbeeld", "save_and_email", "Opslaan en verstuur email", _s16_56, "Ondersteunde gebeurtenissen", _s16_58, "Omgezet bedrag", _s17_32, "Omgekeerd balans", _s22_28, '"Reeds betaald" omzetten', _s24_18, "Omgerekend creditsaldo", "converted_total", "Totaal omzetten", "is_sent", "Is verzonden", _s17_34, "Standaard documenten", "document_upload", "Document uploaden", _s20_29, "Laat klanten documenten uploaden", "expense_total", "Totale uitgave", "enter_taxes", "Voer belastingen in", "by_rate", "Op tarief", "by_amount", "Op bedrag", "enter_amount", "Voer bedrag in", "before_taxes", "Voor BTW", "after_taxes", "Na BTW", "color", "Kleur", "show", "Tonen", "hide", "Verbergen", "empty_columns", "Lege kolommen", _s21_35, "Foutopsporingsmodus is ingeschakeld", _s26_9, "Opgelet: Debug modus dient enkel gebruikt te worden tijdens lokale ontwikkeling, aangezien gevoelige informatie op deze manier zichtbaar wordt. Klik op meer te weten te komen.", "running_tasks", "Lopende taken", "recent_tasks", "Recente taken", "recent_expenses", "Recente uitgaven", _s17_36, "Aankomende uitgaven", "update_app", "Update App", "started_import", "Succesvol begonnen met importeren", _s24_20, "Dubbele kolommapping", _s20_30, "Gebruik inclusieve belastingen", _s18_35, "Is bedrag korting", "column", "Kolom", "sample", "Voorbeeld", "map_to", "Map naar", "import", "Importeer", _s25_15, "Gebruik eerste rij als kolomnaam", "select_file", "Selecteer een bestand", _s16_60, "Geen bestand geselecteerd", "csv_file", "Selecteer CSV bestand", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave boekhouding", "zoho", "Zoho", "accounting", "Boekhouding", _s22_30, "Geef alle CSV's op.", "import_type", "Importeer type", "html_mode", "HTML Mode", "html_mode_help", "Voorvertoning laadt sneller maar is minder accuraat", "view_licenses", "Bekijk Licenties", "webhook_url", "Webhook URL", _s17_38, "Editor volledig scherm", "sidebar_editor", "Zijbalk Editor", _s22_31, 'Typ ":value" om te bevestigen', "purge", "Wissen", "service", "Service", "clone_to", "Dupliceer naar", "clone_to_other", "Dupliceert naar andere", "labels", "Labels", "add_custom", "Aangepast toevoegen", "payment_tax", "Betalingsbelasting", "unpaid", "Onbetaald", "white_label", "White Label", "delivery_note", "Afleveringsbon", _s24_23, "Verzonden facturen zijn vergrendeld", _s24_25, "Betaalde facturen zijn vergrendeld", "source_code", "Broncode", "app_platforms", "App-platforms", "invoice_late", "Factuur te laat", "quote_expired", "Offerte verlopen", "partial_due", "Te betalen voorschot", "invoice_total", "Factuur totaal", "quote_total", "Offertetotaal", "credit_total", "Totaal Credit", _s23_14, "Factuur totaal", "actions", "Acties", "expense_number", "Uitgave nummer", "task_number", "Taaknummer", "project_number", "Projectnummer", "project_name", "Project naam", "warning", "Waarschuwing", "view_settings", "Instellingen tonen", _s24_27, "Waarschuwing: dit bedrijf is nog niet geactiveerd", "late_invoice", "Late factuur", "expired_quote", "Verlopen offerte", "remind_invoice", "Herinnering Factuur", "cvv", "CVV", "client_name", "Klantnaam", "client_phone", "Klant telefoon", "required_fields", "Verreisde velden", "calculated_rate", "Berekend tarief", _s17_40, "Standaard taak tarief", "clear_cache", "Maak cache leeg", "sort_order", "Sorteer volgorde", "task_status", "Status", "task_statuses", "Taak status", "new_task_status", "Nieuwe taak status", _s16_62, "Taak status aanpassen", _s19_26, "Succesvol een taak status aangemaakt", _s19_27, _s20_84, _s20_32, "Succesvol een taak status gearchiveerd", _s19_28, _s36_17, _s19_29, _s36_17, _s20_33, "Succesvol een taak status hersteld", _s22_32, "Succesvol taakstatussen :value gearchiveerd", _s21_37, "Succesvol taak statussen :value verwijderd", _s22_33, "Succesvol taak statussen :value hersteld", _s18_37, "Zoek 1 taak status", _s20_35, "Zoek :count taak statussen", _s16_64, "Taken tabel tonen", _s21_38, "Weergeef de taken wanneer een factuur wordt aangemaakt", _s20_36, "Factuur taak tijdlog", _s25_16, "Voeg de tijd omschrijvingen toe aan de factuur producten", _s20_38, "Factuur taak datumlog", _s25_17, "Voeg datumdetails toe aan de factuurregelitems", _s21_39, "Start taken voordat het wordt opgeslagen", _s18_38, "Status instellen", "task_settings", "Taak instellingen", _s20_40, "Categorie\xebn instellen", _s18_40, _s16_263, _s20_42, "Nieuwe uitgavecategorie", _s21_40, "Bewerk uitgavencategorie", _s24_28, "De uitgaven categorie is aangemaakt", _s24_29, "De uitgaven categorie is gewijzigd", _s25_19, "De uitgaven categorie is gearchiveerd", _s24_30, "De categorie is verwijderd", _s24_31, "De uitgavencategorie is verwijderd", _s25_20, "De uitgaven categorie hersteld", _s27_21, ":count uitgave-categorie\xebn gearchiveerd", _s26_10, "Succesvol uitgave categorie\xebn :value verwijderd", _s27_22, "Uitgave succesvol hersteld: waarde categorie\xebn", _s23_15, "Zoek 1 uitgavencategorie", _s25_22, "Zoek :count uitgave categorie\xebn", _s21_42, "Gebruik beschikbaar krediet", "show_option", "Toon optie", _s22_34, "Het kredietbedrag mag niet hoger zijn als het te betalen bedrag", "view_changes", "Bekijk wijzigingen", "force_update", "Forceer een update", _s17_42, "De applicatie draait op de laatste versie, maar wellicht zijn er nog een aantal fixes beschikbaar.", "mark_paid_help", "Volg de uitgave dat betaald is", _s18_42, "Moet worden gefactureerd", _s23_16, "Maak het mogelijk de uitgave te factureren", _s29_7, "Laat de documenten zien", _s21_44, "Stel een ruilwaarde in van de valuta", _s16_66, "Uitgave instellingen", _s18_43, "Maak een kopie voor herhaling", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Gebruiker Veld", "variables", "Variabelen", "show_password", "Wachtwoord weergeven", "hide_password", "Wachtwoord verbergen", "copy_error", "Fout kopi\xebren", "capture_card", "Capture Kaart", _s17_43, "Automatisch betalen ingeschakeld", "total_taxes", "Totale belasting", "line_taxes", "Regelitem belastingen", "total_fields", "Totaal velden", _s25_23, "Herhalend factuur succesvol stopgezet", _s25_24, "Herhalend factuur succesvol gestart", _s25_25, "Herhalend factuur succesvol hervat", "gateway_refund", "Gateway terugbetaling", _s19_30, "Verwerk een terugbetaling via de betalingsgateway", "due_date_days", "Verloopdatum", "paused", "Gepauzeerd", "mark_active", "Markeer als actief", "day_count", "Dag :count", _s22_35, "Eerste dag van de maand", _s21_45, "Laatste dag van de maand", _s17_45, "Gebruik betalingseisen", "endless", "Eindeloos", "next_send_date", "Volgende verzenddatum", _s16_68, "Resterende keren", _s17_47, "Terugkerende factuur", _s18_45, "Terugkerende facturen", _s21_47, "Nieuwe terugkerende factuur", _s22_37, "Bewerk terugkerende factuur", _s25_26, "Herhalend factuur succesvol aangemaakt", _s25_27, "Herhalend factuur succesvol bijgewerkt", _s26_11, "De terugkerende factuur is gearchiveerd", _s25_28, "De terugkerende factuur is verwijderd", _s25_29, "Herhalend factuur succesvol verwijderd", _s26_12, "De terugkerende factuur is hersteld", _s27_23, "Terugkerende succesvol gearchiveerd: waarde facturen", _s26_13, "Terugkerende succesvol verwijderd: waarde facturen", _s27_24, "Terugkerende succesvol hersteld: waarde facturen", _s24_32, "Zoek 1 herhalend factuur", _s25_30, "Zoek :count herhalende facturen", "send_date", "Verzenddatum", "auto_bill_on", "Automatische betaling aan", _s28_7, "Minimum onder het te betalen bedrag", "profit", "Winst", "line_item", "Regelitem", _s18_47, "Toestaan te betalen boven het te betalen bedrag", _s23_17, "Draag bij aan extra betalen om fooi te accepteren", _s19_31, "Toestaan te betalen onder het te betalen bedrag", _s24_33, "Ondersteun het betalen van een minimaal gedeeltelijk / aanbetalingsbedrag", "test_mode", "Test modus", "opened", "Geopend", _s30_4, "Koppelen mislukt", _s30_5, "Koppelen gelukt", "gateway_success", "Gateway geslaagd", "gateway_failure", "Gateway gefaald", "gateway_error", "Gateway fout", "email_send", "E-mail verzonden", _s17_49, "E-mail wachtrij voor opnieuw versturen", "failure", "Fout", "quota_exceeded", "Limiet bereikt", _s16_70, "Upload mislukt", "system_logs", "Systeem log", "view_portal", "Toon portaal", "copy_link", "Link kopi\xebren", "token_billing", "Kaartgegevens opslaan", _s24_34, "Welkom bij Invoice Ninja", "always", "Altijd", "optin", "Inschrijven", "optout", "Uitschrijven", "label", "Label", "client_number", "Klantnummer", "auto_convert", _s20_85, "company_name", "Bedrijfsnaam", "reminder1_sent", "1ste herinnering verstuurd", "reminder2_sent", "2de herinnering verstuurd", "reminder3_sent", "3de herinnering verstuurd", _s18_49, "Laatste herinnering verstuurd", "pdf_page_info", "Pagina :current van :total", _s16_72, "De facturen zijn gemaild", "emailed_quotes", "De offertes zijn gemaild", "emailed_credits", "Creditnota is succesvol gemaild", "gateway", "Gateway", "view_in_stripe", "Bekijk in Stripe", "rows_per_page", "Regels per pagina", "hours", "Uren", "statement", "Overzicht", "taxes", "Belastingen", "surcharge", "Toeslag", "apply_payment", "Betaling toepassen", "apply_credit", "Gebruik krediet", "apply", "Toepassen", "unapplied", "Niet toegepast", "select_label", "Selecteer label", "custom_labels", "Aangepaste labels", "record_type", "Record Type", "record_name", "Record naam", "file_type", "Bestandstype", "height", "Hoogte", "width", "Breedte", "to", "Aan", "health_check", "Health Check", "payment_type_id", "Betalingstype", "last_login_at", "Voor het laatst ingelogd", "company_key", "Bedrijfssleutel", "storefront", "Storefront", "storefront_help", "Activeer third-party applicaties om facturen te maken", "client_created", "Klant aangemaakt", _s20_45, "Online betalingsmail", _s20_47, "Handmatige betalingsmail", "completed", "Voltooid", "gross", "Bruto", "net_amount", "Netto bedrag", "net_balance", "Netto balans", "client_settings", "Klantinstellingen", _s17_51, "Geselecteerde facturen", _s17_53, "Geselecteerde betalingen", "selected_quotes", "Geselecteerde offertes", "selected_tasks", "Geselecteerde taken", _s17_55, "Geselecteerde uitgaves", _s17_57, "Aankomende facturen", _s17_59, "Verlopen facturen", "recent_payments", "Recente betalingen", "upcoming_quotes", "Eerstvolgende offertes", "expired_quotes", "Verlopen offertes", "create_client", "Klant aanmaken", "create_invoice", "Factuur aanmaken", "create_quote", "Maak offerte aan", "create_payment", "Cre\xeber betaling", "create_vendor", "Leverancier aanmaken", "update_quote", "Offerte bijwerken", "delete_quote", "Verwijder offerte", "update_invoice", "Factuur bijwerken", "delete_invoice", "Verwijder factuur", "update_client", "Klant bijwerken", "delete_client", "Verwijder klant", "delete_payment", "Verwijder betaling", "update_vendor", "Leverancier bijwerken", "delete_vendor", "Verwijder leverancier", "create_expense", "Cre\xeber uitgave", "update_expense", "Uitgave bijwerken", "delete_expense", "Verwijder uitgave", "create_task", "Taak aanmaken", "update_task", "Taak bijwerken", "delete_task", "Verwijder taak", "approve_quote", "Offerte goedkeuren", "off", "Uit", "when_paid", "Wanneer betaald", "expires_on", "Verloopt op", "free", "Gratis", "plan", "Abonnement", "show_sidebar", "Laat zijbalk zien", "hide_sidebar", "Verberg zijbalk", "event_type", "Event Type", "target_url", "Doel", "copy", "Kopieer", "must_be_online", "Herstart alsjeblieft de applicatie wanneer er verbinding is met het internet", _s17_61, "De crons moeten geactiveerd worden", "api_webhooks", "API Webhooks", "search_webhooks", "Zoek :count webhooks", "search_webhook", "Zoek 1 webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nieuwe webhook", "edit_webhook", "Webhook bijwerken", "created_webhook", "Webhook succesvol aangemaakt", "updated_webhook", "Webhook succesvol bijgewerkt", _s16_74, "Webhook succesvol gearchiveerd", "deleted_webhook", _s28_66, "removed_webhook", _s28_66, _s16_75, "Webhook succesvol hersteld", _s17_62, "Succesvol gearchiveerd: waarde webhooks", _s16_76, _s37_24, _s16_77, _s37_24, _s17_63, "Succesvol hersteld: waarde webhooks", "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", "Zoek :count tokens", "search_token", "Zoek 1 token", "token", "Token", "tokens", "Tokens", "new_token", "Nieuwe token", "edit_token", "Wijzig token", "created_token", "Het token is aangemaakt", "updated_token", "Het token is gewijzigd", "archived_token", "Het token is gearchiveerd", "deleted_token", "Het token is verwijderd", "removed_token", "Token succesvol verwijderd", "restored_token", "Token succesvol hersteld", "archived_tokens", "Succesvol gearchiveerd: waarde tokens", "deleted_tokens", "Succesvol verwijderd: waarde tokens", "restored_tokens", "Succesvol hersteld: waarde tokens", _s19_33, "Klant registratie", _s24_36, "Zelfregistratie voor klanten in het portaal toestaan", _s21_49, "Pas aan & Weergeven", "email_invoice", "E-mail factuur", "email_quote", "E-mail offerte", "email_credit", "E-mail Krediet", "email_payment", "E-mail betaling", _s20_50, "Er is geen e-mailadres ingesteld voor de klant", "ledger", "Grootboek", "view_pdf", "Bekijk PDF", "all_records", "Alle gegevens", "owned_by_user", "Owned door gebruiker", _s16_78, "Resterend krediet", "contact_name", "Contactnaam", "use_default", "Gebruik standaard", _s16_80, "Eindeloze herinneringen", "number_of_days", "Aantal dagen", _s23_19, "Betalingsvoorwaarden configureren", "payment_term", "Betalingstermijn", _s16_81, "Nieuwe betalingstermijn", _s17_65, "Bewerk betalingstermijn", _s20_51, "De betalingstermijn is aangemaakt", _s20_52, "De betalingstermijn is gewijzigd", _s21_50, "De betalingstermijn is gearchiveerd", _s20_53, _s38_16, _s20_54, _s38_16, _s21_51, "betalingstermijn met succes hersteld", _s22_42, "Succesvol gearchiveerd: waarde betalingsvoorwaarden", _s21_52, "Succesvol verwijderd: waarde betalingsvoorwaarden", _s22_43, "Succesvol hersteld: waarde betalingsvoorwaarden", "email_sign_in", "Log in met e-mail", "change", "Aanpassen", _s23_21, "Verander naar de mobiele layout?", _s24_37, "Verander naar de bureaublad layout?", "send_from_gmail", "Verzonden vanaf Gmail", "reversed", "Teruggedraaid", "cancelled", "Geannuleerd", "credit_amount", "Creditbedrag", "quote_amount", "Offertebedrag", "hosted", "Gehost", "selfhosted", "Zelf-Gehost", "exclusive", "Exclusief", "inclusive", "Inclusief", "hide_menu", "Verberg menu", "show_menu", "Toon Menu", _s18_51, "Gedeeltelijk terugbetaald", _s16_83, "Documenten zoeken", "search_designs", "Ontwerpen zoeken", "search_invoices", "Facturen zoeken", "search_clients", "Klanten zoeken", "search_products", "Producten zoeken", "search_quotes", "Offertes zoeken", "search_credits", "Zoek Krediet", "search_vendors", "Zoek Leveranciers", "search_users", "Zoek Gebruikers", _s16_84, "Zoek Belastingstarieven", "search_tasks", "Zoek Taken", "search_settings", "Zoek Instellingen", "search_projects", "Zoek Projecten", "search_expenses", "Zoek Uitgaven", "search_payments", "Zoek Betalingen", "search_groups", "Zoek Groepen", "search_company", "Zoek Bedrijf", "search_document", "Zoek 1 document", "search_design", "Zoek 1 ontwerp", "search_invoice", "Zoek 1 factuur", "search_client", "Zoek 1 klant", "search_product", "Zoek 1 product", "search_quote", "Zoek 1 offerte", "search_credit", "Zoek 1 krediet", "search_vendor", "Zoek 1 leverancier", "search_user", "Zoek 1 gebruiker", "search_tax_rate", "Zoek 1 BTW-tarief", "search_task", "Zoek 1 taak", "search_project", "Zoek 1 project", "search_expense", "Zoek 1 uitgave", "search_payment", "Zoek 1 betaling", "search_group", "Zoek 1 groep", "refund_payment", "Terugbetalen", _s17_69, "Factuur succesvol geannuleerd", _s18_53, "Facturen succesvol geannuleerd", _s16_90, "Factuur succesvol teruggedraaid", _s17_70, "Facturen succesvol teruggedraaid", "reverse", "Terugdraaien", "full_name", "Volledige naam", _s17_71, "Stad/Provincie/Postcode", _s17_73, "Postcode/Stad/Provincie", "custom1", _s17_150, "custom2", _s17_151, "custom3", _s16_264, "custom4", "Vierde aangepaste", "optional", "Optioneel", "license", "Licentie", "purge_data", "Wis gegevens", _s16_91, "De bedrijfsgegevens zijn gewist", _s18_54, "Waarschuwing: Dit zal uw gegevens verwijderen. Er is geen manier om dit ongedaan te maken.", "invoice_balance", "Factuur balans", "age_group_0", "0 - 30 dagen", "age_group_30", "30 - 60 dagen", "age_group_60", "60 - 90 dagen", "age_group_90", "90 - 120 dagen", "age_group_120", "120+ dagen", "refresh", "Verversen", "saved_design", "Ontwerp opgeslagen", "client_details", "Klantgegevens", "company_address", "Bedrijfs-adres", "invoice_details", "Factuur details", "quote_details", "Offerte Details", "credit_details", "Kredietgegevens", "product_columns", "Product kolommen", "task_columns", "Taak kolommen", "add_field", "Veld toevoegen", "all_events", "Alle gebeurtenissen", "permissions", "Rechten", "none", "Geen", "owned", "Eigendom", "payment_success", "Betaling is gelukt", "payment_failure", "Betalingsfout", "invoice_sent", ":count factuur verzonden", "quote_sent", "Offerte Verzonden", "credit_sent", "Factuur verzonden", "invoice_viewed", "Factuur bekeken", "quote_viewed", "Offerte Bekeken", "credit_viewed", "Krediet bekeken", "quote_approved", "Offerte Goedgekeurd", _s25_32, "Ontvang alle notificaties", _s16_92, "Licentie aanschaffen", "apply_license", "Activeer licentie", "cancel_account", "Account verwijderen", _s22_44, "Waarschuwing: Dit zal uw account verwijderen. Er is geen manier om dit ongedaan te maken.", "delete_company", "Verwijder bedrijf", _s22_45, "Waarschuwing: Hiermee verwijder je permanent je bedrijf, dit kan niet worden ontdaan.", "enabled_modules", "Ingeschakelde modules", "converted_quote", "Offerte omgezet", "credit_design", "Krediet ontwerp", "includes", "Inclusief", "header", "Koptekst", "load_design", "Laad ontwerp", "css_framework", "CSS Framework", "custom_designs", "Aangepaste Ontwerpen", "designs", "Ontwerpen", "new_design", "Nieuw ontwerp", "edit_design", "Ontwerp aanpassen", "created_design", "Ontwerp aangemaakt", "updated_design", "Ontwerp bijgewerkt", "archived_design", "Ontwerp gearchiveerd", "deleted_design", _s18_122, "removed_design", _s18_122, "restored_design", "Ontwerp teruggehaald", _s16_94, "Succesvol gearchiveerd: waarde designs", "deleted_designs", "Succesvol verwijderd: waarde designs", _s16_95, "Succesvol hersteld: waarde designs", "proposals", "Voorstellen", "tickets", "Tickets", _s16_96, "Terugkerende offertes", "recurring_tasks", "Terugkerende Taken", _s18_55, "Accountbeheer", "credit_date", "Creditdatum", "credit", "Credit", "credits", "Creditnota's", "new_credit", "Nieuwe creditnota", "edit_credit", "Wijzig krediet", "created_credit", "De creditnota is aangemaakt", "updated_credit", "Het krediet is gewijzigd", "archived_credit", "De creditnota is gearchiveerd", "deleted_credit", "De creditnota is verwijderd", "removed_credit", "Krediet is verwijders", "restored_credit", "De creditnota is hersteld", _s16_98, "Succesvol :count creditnota's gearchiveerd", "deleted_credits", "Succesvol :count creditnota's verwijderd", _s16_99, ":value aan krediet succesvol hersteld", "current_version", "Huidige versie", "latest_version", "Laatste versie", "update_now", "Nu updaten", _s26_19, "Een nieuwe versie van de web applicatie is beschikbaar", _s16_100, "Update beschikbaar", "app_updated", "Update met succes voltooid", "learn_more", "Kom meer te weten", "integrations", "Integraties", "tracking_id", "Tracering Id", _s17_75, _s17_76, "credit_footer", "Krediet voettekst", "credit_terms", "Kredietvoorwaarden", "new_company", "Nieuw bedrijf", "added_company", "Bedrijf toegevoegd", "company1", "Aangepast bedrijf 1", "company2", "Aangepast bedrijf 2", "company3", "Aangepast bedrijf 3", "company4", "Aangepast bedrijf 4", "product1", "Aangepast product 1", "product2", "Aangepast product 2", "product3", "Aangepast product 3", "product4", "Aangepast product 4", "client1", "Aangepast cli\xebnt 1", "client2", "Aangepast cli\xebnt 2", "client3", "Aangepast cli\xebnt 3", "client4", "Aangepast cli\xebnt 4", "contact1", "Aangepast Contact 1", "contact2", "Aangepast Contact 2", "contact3", "Aangepast Contact 3", "contact4", "Aangepast Contact 4", "task1", "Aangepaste Taak 1", "task2", "Aangepaste Taak 2", "task3", "Aangepaste Taak 3", "task4", "Aangepaste Taak 4", "project1", "Aangepast Project 1", "project2", "Aangepast Project 2", "project3", "Aangepast Project 3", "project4", "Aangepast Project 4", "expense1", "Aangepaste Uitgave 1", "expense2", "Aangepaste Uitgave 2", "expense3", "Aangepaste Uitgave 3", "expense4", "Aangepaste Uitgave 4", "vendor1", "Aangepaste Aanbieder 1", "vendor2", "Aangepaste Aanbieder 2", "vendor3", "Aangepaste Aanbieder 3", "vendor4", "Aangepaste Aanbieder 4", "invoice1", "Aangepaste Factuur 1", "invoice2", "Aangepaste Factuur 2", "invoice3", "Aangepaste Factuur 3", "invoice4", "Aangepaste Factuur 4", "payment1", "Aangepaste Betaling 1", "payment2", "Aangepaste Betaling 2", "payment3", "Aangepaste Betaling 3", "payment4", "Aangepaste Betaling 4", "surcharge1", _s20_86, "surcharge2", _s20_87, "surcharge3", _s20_88, "surcharge4", _s20_89, "group1", "Aangepaste Groep 1", "group2", "Aangepaste Groep 2", "group3", "Aangepaste Groep 3", "group4", "Aangepaste Groep 4", "reset", "Reset", "number", "Nummer", "export", "Exporteer", "chart", "Grafiek", "count", "Telling", "totals", "Totalen", "blank", "Blanco", "day", "Dag", "month", "Maand", "year", "Jaar", "subgroup", "Subgroep", "is_active", "Is actief", "group_by", "Groepeer per", "credit_balance", "Kredietsaldo", _s18_61, "Contact laatste Login", _s17_77, "Contact Volledige Naam", "contact_phone", "Contact telefoon", _s21_53, "Contact aangepaste waarde 1", _s21_54, "Contact aangepaste waarde 2", _s21_55, "Contact aangepaste waarde 3", _s21_56, "Contact aangepaste waarde 4", _s17_79, "Leveringsstraat", _s17_80, "Leverings Apt/Suite", "shipping_city", "Leveringsstad", "shipping_state", "Leverings Staat/Provincie", _s20_55, "Leverings Postcode", _s16_130, "Leveringsland", _s16_132, "Facturatie straat", _s16_133, "Facturatie Apt/Suite", "billing_city", "Facturatiestad", "billing_state", "Facturatie Staat/Provincie", _s19_36, "Facturatie Postcode", "billing_country", "Facturatieland", "client_id", "Klantnummer", "assigned_to", "Toegewezen aan", "created_by", "Aangemaakt door :name", "assigned_to_id", "Toegekend aan ID", "created_by_id", "Gemaakt door ID", "add_column", "Voeg kolom toe", "edit_columns", "Wijzig kolom", "columns", "Kolommen", "aging", "Toekomst", "profit_and_loss", "Winst en verlies", "reports", "Rapporten", "report", "Rapport", "add_company", "Bedrijf toevoegen", "unpaid_invoice", "Onbetaalde factuur", "paid_invoice", "Betaalde factuur", _s16_134, "Niet goedgekeurde offerte", "help", "Help", "refund", "Terugbetaling", "refund_date", "Terugbetaling datum", "filtered_by", "Gefilterd op", "contact_email", "Contact e-mail", "multiselect", "Multiselectie", "entity_state", "Staat", "verify_password", "Verifieer wachtwoord", "applied", "Toegepast", _s21_57, "Voeg recente fouten uit de logboeken toe", _s30_8, "We hebben uw bericht ontvangen, en zullen zo spoedig mogelijk reageren.", "message", "Bericht", "from", "Van", _s20_57, "toon product details", _s25_34, "Neem de beschrijving en kosten op in de vervolgkeuzelijst met producten", _s20_59, "De PDF renderaar vereist :version", _s18_64, "Pas Vergoedingspercentage Aan", _s23_23, "Pas percentage aan om rekening te houden met de kosten", _s18_66, "Instellingen configureren", "support_forum", "Support Forum", "about", "Over", "documentation", "Documentatie", "contact_us", "Contacteer ons", "subtotal", "Subtotaal", "line_total", "Totaal", "item", "Artikel", "credit_email", "Krediet E-mail", "iframe_url", "Website", "domain_url", "Domein URL", _s21_58, "Wachtwoord is te kort", _s20_60, "Het wachtwoord moet een hoofdletter en een nummer bevatten", _s19_38, "Klantenportaal taken", _s23_24, "Klantenportaal dashboard", _s20_61, "Voer alstublieft een waarde in", "deleted_logo", "Logo verwijderd", "yes", "Ja", "no", "Nee", "generate_number", "Genereer nummer", "when_saved", "Als opgeslagen", "when_sent", "Als verzonden", "select_company", "Selecteer Bedrijf", "float", "Float", "collapse", "Inklappen", "show_or_hide", "Laten zien/Verbergen", "menu_sidebar", "Menu Zijbalk", "history_sidebar", "Geschiedenis Zijbalk", "tablet", "Tablet", "mobile", "Mobiel", "desktop", "Bureaublad", "layout", "Indeling", "view", "Bekijken", "module", "Module", "first_custom", _s17_150, "second_custom", _s17_151, "third_custom", _s16_264, "show_cost", "Toon kosten", _s17_82, "Laat product kosten zien", "show_cost_help", "Toon het kostenveld van een product om de opmaak / winst te volgen", _s21_59, "Toon product hoeveelheid", _s26_21, "Toon aantallen voor producten, anders de standaard versie", _s21_61, "Toon factuur aantallen", _s26_22, "Toon aantallen voor regelitem, anders de standaard versie", _s21_63, "Toon product korting", _s26_23, "Geef een regelitem kortingssveld weer", _s16_136, "Standaard aantallen", _s21_65, "Stel de producthoeveelheid automatisch in op 1", "one_tax_rate", "Eerste BTW-tarief", "two_tax_rates", "Tweede BTW-tarief", "three_tax_rates", "Derde BTW-tarief", _s16_138, "Standaard BTW-tarief", "user", "Gebruiker", "invoice_tax", "Factuur BTW-tarief", "line_item_tax", "Regelitem BTW-tarief", "inclusive_taxes", "Inclusief belasting", _s17_84, "Factuur belastingtarief", "item_tax_rates", "Product belastingtarief", _s18_68, _s31_28, "configure_rates", "Tarieven instellen", _s18_69, "Configureer Gateways", "tax_settings", "BTW-instellingen", _s18_71, "BTW-tarieven", "accent_color", "Accent Kleur", "switch", "Overschakelen", _s19_40, "Komma gescheiden lijst", "options", "Opties", _s16_140, "Eenregelige tekst", "multi_line_text", "Multi-regelige tekst", "dropdown", "Dropdwon", "field_type", "Veld type", _s27_35, "Een wachtwoord herstel mail is verzonden", "submit", "Opslaan", _s16_142, "Wachtwoord vergeten?", "late_fees", "Late vergoedingen", "credit_number", "Creditnummer", "payment_number", "Betalingsnummer", "late_fee_amount", "Late vergoedingsbedrag", _s16_143, "Late vergoedingspercentage", "schedule", "Schema", "before_due_date", "Voor de vervaldatum", "after_due_date", "Na de vervaldatum", _s18_73, "na de factuurdatum", "days", "Dagen", "invoice_email", "Factuurmail", "payment_email", "Betalingsmail", "partial_payment", _s22_83, "payment_partial", _s22_83, _s21_66, "E-mail voor gedeeltelijke betaling", "quote_email", "Offertemail", _s16_145, "Eindeloze taak", _s16_147, "Gefilterd door gebruiker", "administrator", "Beheerder", _s18_74, "Geef gebruiker de toestemming om andere gebruikers te beheren, instellingen te wijzigen en alle regels te bewerken.", "user_management", "Gebruikersbeheer", "users", "Gebruikers", "new_user", "Nieuwe Gebruiker", "edit_user", "Bewerk gebruiker", "created_user", "De gebruiker is aangemaakt", "updated_user", "De gebruiker is gewijzigd", "archived_user", "De gebruiker is gearchiveerd", "deleted_user", "De gebruiker is verwijderd", "removed_user", "Gebruiker verwijderd", "restored_user", "De gebruiker is hersteld", "archived_users", "Succesvol gearchiveerd: waarde gebruikers", "deleted_users", _s39_6, "removed_users", _s39_6, "restored_users", "Succesvol hersteld: waarde gebruikers", _s16_149, "Algemene instellingen", "invoice_options", "Factuuropties", _s17_86, 'Verberg "Reeds betaald"', _s22_52, 'Toon alleen het "Reeds betaald" gebied op je facturen als er een betaling gemaakt is.', _s23_26, "Documenten invoegen", _s28_20, "Bijgevoegde afbeeldingen weergeven in de factuur.", _s16_151, "Toon header op", _s16_152, "Toon footer op", "first_page", "eerste pagina", "all_pages", "alle pagina's", "last_page", "laatste pagina", "primary_font", "Primair lettertype", "secondary_font", "Secundair lettertype", "primary_color", "Primaire kleur", "secondary_color", "Secundaire kleur", "page_size", "Paginagrootte", "font_size", "Tekstgrootte", "quote_design", "Offerte ontwerp", "invoice_fields", "Factuurvelden", "product_fields", "Productvelden", "invoice_terms", "Factuur voorwaarden", "invoice_footer", "Factuurvoettekst", "quote_terms", "Offertevoorwaarden", "quote_footer", "Offertevoettekst", _s18_75, "Automatisch e-mailen", _s23_27, "Verzend terugkerende facturen automatisch wanneer ze worden gemaakt.", _s18_76, "Automatisch archiveren", _s23_28, "Offertes automatisch archiveren wanneer ze zijn omgezet.", _s18_77, _s20_85, _s23_29, "Zet een offerte automatisch om in een factuur zodra deze door een klant wordt goedgekeurd.", _s17_88, "Workflow instellingen", "freq_daily", "Dagelijks", "freq_weekly", "Wekelijks", "freq_two_weeks", "Twee weken", "freq_four_weeks", "Vier weken", "freq_monthly", "Maandelijks", "freq_two_months", "Twee maanden", _s17_90, "Drie maanden", _s16_153, "Vier maanden", "freq_six_months", "Zes maanden", "freq_annually", "Jaarlijks", "freq_two_years", "Twee jaar", _s16_154, "Drie jaar", "never", "Nooit", "company", "Bedrijf", _s17_91, "Gegenereerde nummers", "charge_taxes", "BTW berekenen", "next_reset", "Volgende reset", "reset_counter", "Teller resetten", _s16_155, "Terugkerend voorvoegsel", "number_padding", "Nummer afstand", "general", "Algemeen", "surcharge_field", "Extra toeslag veld", "company_field", "Bedrijf veld", "company_value", "Bedrijfswaarde", "credit_field", "Credit veld", "invoice_field", "Factuur veld", _s17_93, "Factuurkost", "client_field", "Klant veld", "product_field", "Productveld", "payment_field", "Betaalveld", "contact_field", "Contact veld", "vendor_field", "Leverancier veld", "expense_field", "Uitgave veld", "project_field", "Project veld", "task_field", "Taak veld", "group_field", "Groepsveld", "number_counter", "Nummerteller", "prefix", "Voorvoegsel", "number_pattern", "Nummer patroon", "messages", "Berichten", "custom_css", "Aangepaste CSS", _s17_95, "Zelfgeschreven JavaScript", _s16_157, "Weergeven op PDF", _s21_68, "Toon de handtekening van de klant op de factuur/offerte PDF.", _s25_40, "Factuurvoorwaarden checkbox", _s30_9, "Verplicht de klant om akkoord te gaan met de factuurvoorwaarden.", _s23_30, "Offertevoorwaarden checkbox", _s28_21, "Verplicht de klant om akkoord te gaan met de offertevoorwaarden.", _s25_41, "Factuur handtekening", _s30_10, "Verplicht de klant om zijn handtekening te zetten.", _s23_31, "Offerte handtekening", _s22_54, "Facturen beveiligen met een wachtwoord", _s27_36, "Geeft u de mogelijkheid om een wachtwoord in te stellen voor elke contactpersoon. Als er een wachtwoord is ingesteld moet de contactpersoon het wachtwoord invoeren voordat deze facturen kan bekijken.", "authorization", "Autorisatie", "subdomain", "Subdomein", "domain", "Domein", "portal_mode", "portaalmodus", "email_signature", "Met vriendelijke groeten,", _s24_38, "Maak het gemakkelijker voor uw klanten om te betalen door scherma.org opmaak toe te voegen aan uw e-mails.", "plain", "Platte tekst", "light", "Licht", "dark", "Donker", "email_design", "E-mail Ontwerp", "attach_pdf", "PDF bijvoegen", _s16_158, "Document bijvoegen", "attach_ubl", "UBL bijvoegen", "email_style", "Email opmaak", _s19_42, "Opmaak inschakelen", "reply_to_email", "Antwoord naar e-mail", "reply_to_name", "Antwoordnaam", "bcc_email", "BCC Email", "processed", "Verwerkt", "credit_card", "Creditcard", "bank_transfer", "Overschrijving", "priority", "Prioriteit", "fee_amount", "Vergoedingsbedrag", "fee_percent", "Vergoedingspercentage", "fee_cap", "Maximale vergoeding", "limits_and_fees", "limiet/vergoedingen", "enable_min", "Min inschakelen", "enable_max", "Max inschakelen", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Geaccepteerde kaart logo's", "credentials", "Gegevens", "update_address", "Adres aanpassen", _s19_45, "Pas het adres van de klant aan met de ingevulde gegevens", "rate", "Tarief", "tax_rate", "BTW-tarief", "new_tax_rate", "Nieuw BTW-tarief", "edit_tax_rate", "Bewerk tarief", _s16_160, "Het tarief is aangemaakt", _s16_161, "Het tarief is bijgewerkt", _s17_98, "Het tarief is gearchiveerd", _s16_162, "De BTW heffing is verwijderd", _s17_99, "De BTW heffing is teruggezet", _s18_78, "Succesvol gearchiveerd: waarde belastingstarieven", _s17_100, "Succesvol verwijderd: waarde belastingtarieven", _s18_79, "Succesvol hersteld: waarde belastingtarieven", "fill_products", "Producten Automatisch aanvullen", _s18_80, "Een product selecteren zal automatisch de beschrijving en kosten instellen", "update_products", "Producten automatisch wijzigen", _s20_65, "Het wijzigen van een factuur zal automatisch de producten aanpassen", _s16_163, "Producten omzetten", _s21_69, "Productprijzen automatisch converteren naar het valuta van de klant", "fees", "Transactiekosten", "limits", "Limieten", "provider", "Provider", "company_gateway", _s16_265, _s16_165, _s16_265, _s19_46, "Nieuwe instantie aanmaken", _s20_66, "Huidige instantie bewerken", _s23_32, "De nieuwe instantie is aangemaakt", _s23_33, "De nieuwe instantie is bijgewerkt", _s24_39, "De nieuwe instantie is gearchiveerd", _s23_34, "De nieuwe instantie is verwijderd", _s24_40, "De nieuwe instantie is hersteld", _s25_43, "Succesvol gearchiveerd: waarde gateways", _s24_41, "Succesvol verwijderd: waarde gateways", _s25_44, "Succesvol hersteld: waarde gateways", _s16_167, "Bewerk verder", "discard_changes", "Wis Wijzigingen", "default_value", "Standaard waarde", "disabled", "Uitgeschakeld", "currency_format", "Munt formaat", _s21_70, "Eerste dag van de week", _s23_35, "Eerste maand van het jaar", "sunday", "Zondag", "monday", "Maandag", "tuesday", "Dinsdag", "wednesday", "Woensdag", "thursday", "Donderdag", "friday", "Vrijdag", "saturday", "Zaterdag", "january", "januari", "february", "februari", "march", "maart", "april", "april", "may", "mei", "june", "juni", "july", "juli", "august", "augustus", "september", "september", "october", "oktober", "november", "november", "december", "december", "symbol", "Symbool", "ocde", "Code", "date_format", "Datum formaat", "datetime_format", "Datum/tijd opmaak", "military_time", "24-uurs klok", _s18_81, "24-uurs weergave", "send_reminders", "Verstuur herinneringen", "timezone", "Tijdzone", _s19_47, "Gefilterd op project", _s17_101, "Filteren op groep", _s19_49, "Filteren op factuur", _s18_82, "Filteren op klant", _s18_84, "Filteren op leverancier", "group_settings", "Groepsinstellingen", "group", "Groep", "groups", "Groep", "new_group", "Nieuwe groep", "edit_group", "Wijzig groep", "created_group", "Nieuwe groep aangemaakt", "updated_group", "Groep gewijzigd", "archived_groups", "Succesvol gearchiveerd: waarde groepen", "deleted_groups", "Succesvol verwijderd: waarde groepen", "restored_groups", "Succesvol hersteld: waarde groepen", "archived_group", "Groep gearchiveerd", "deleted_group", "Groep verwijderd", "restored_group", "De groep is hersteld", "upload_logo", "Upload logo", "uploaded_logo", "Het logo is opgeslagen", "logo", "Logo", "saved_settings", "De instellingen zijn opgeslagen", _s16_169, "Productinstellingen", "device_settings", "Apparaatinstellingen", "defaults", "Standaardwaarden", "basic_settings", "Basisinstellingen", _s17_103, "Geavanceerde instellingen", "company_details", "Bedrijfsdetails", "user_details", "Gebruikersgegevens", "localization", "Lokalisatie", "online_payments", "Online betalingen", "tax_rates", "BTW-tarieven", "notifications", "Notificaties", "import_export", "Importeer/Exporteer", "custom_fields", "Aangepaste velden", "invoice_design", "Factuurontwerp", "buy_now_buttons", "Koop nu knoppen", "email_settings", "E-mailinstellingen", _s23_37, "Sjablonen en herinneringen", _s22_55, "Credit Cards & Banken", _s19_51, "Datavisualisaties", "price", "Prijs", "email_sign_up", "Aanmelden voor email", "google_sign_up", "Aanmelden bij Google", _s27_40, "Bedankt voor uw aankoop!", "redeem", "Verzilver", "back", "Terug", "past_purchases", "Voorbije aankopen", _s19_53, "Jaarlijks abonnement", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count gebruikers", "upgrade", "Upgrade", _s25_45, "Vul een voornaam in aub", _s24_42, "Vul een naam in aub", _s33_21, "Ga akkoord met de servicevoorwaarden en het privacybeleid om een account aan te maken.", "i_agree_to_the", "Ik ga akkoord met", _s16_171, "Gebruiksvoorwaarden", "privacy_policy", "Privacybeleid", "sign_up", "Aanmelden", "account_login", "Accountlogin", "view_website", "Bekijk website", "create_account", "Account aanmaken", "email_login", "Email login", "create_new", "Nieuwe aanmaken", _s18_86, "Geen records geselecteerd", _s21_73, "Bewaar of annuleer de wijzigingen", "download", "Download", _s27_41, "Vereist een enterprise plan", "take_picture", "Maak foto", "upload_file", "Upload bestand", "document", "Document", "documents", "Documenten", "new_document", "Nieuw document", "edit_document", "Bewerk Document", _s17_105, "Document is geupload", _s16_173, "Het document is bijgewerkt", _s17_106, "Het document is gearchiveerd", _s16_174, "Het document is verwijderd", _s17_107, "Het document is hersteld", _s18_88, "Succesvol gearchiveerd: waarde documenten", _s17_108, "Succesvol verwijderd: waarde documenten", _s18_89, "Succesvol hersteld: waarde documenten", "no_history", "Geen geschiedenis", "expense_date", "Uitgave datum", "pending", "In afwachting", _s16_175, "Gelogged", _s16_176, "In afwachting", _s16_177, "Gefactureerd", "converted", "Omgezet", _s24_44, "Voeg documenten toe aan factuur", "exchange_rate", "Wisselkoers", _s16_178, "Reken valuta om", "mark_paid", "Markeer als betaald", "category", "Categorie", "address", "Adres", "new_vendor", "Nieuwe leverancier", "created_vendor", "De leverancier is aangemaakt", "updated_vendor", "De leverancier is gewijzigd", "archived_vendor", "De leverancier is gearchiveerd", "deleted_vendor", "De leverancier is verwijderd", "restored_vendor", "De leverancier is hersteld", _s16_179, "Succesvol :count leveranciers gearchiveerd", "deleted_vendors", "Succesvol :count leveranciers verwijderd", _s16_180, "Succesvol hersteld: waarde leveranciers", "new_expense", "Nieuwe uitgave", "created_expense", "De uitgave is aangemaakt", "updated_expense", "De uitgave is gewijzigd", _s16_181, "De uitgave is gearchiveerd", "deleted_expense", "De uitgave is verwijderd", _s16_182, "De uitgave is hersteld", _s17_109, "De uitgaven zijn gearchiveerd", _s16_183, "De uitgaven zijn verwijderd", _s17_110, "Succesvol hersteld: waarde uitgaven", "copy_shipping", "Levering kopi\xebren", "copy_billing", "Facturatie kopi\xebren", "design", "Ontwerp", _s21_74, "Geen gegeven gevonden", "invoiced", "Gefactureerd", "logged", "Gelogd", "running", "Lopend", "resume", "Doorgaan", "task_errors", "Pas overlappende tijden aan a.u.b..", "start", "Start", "stop", "Stop", "started_task", "De taak is gestart", "stopped_task", "De taak is gestopt", "resumed_task", "Taak hervat", "now", "Nu", _s16_184, "Automatisch Startende Taken", "timer", "Timer", "manual", "Manueel", "budgeted", "Begroot", "start_time", "Starttijd", "end_time", "Eindtijd", "date", "Datum", "times", "Tijden", "duration", "Duur", "new_task", "Nieuwe taak", "created_task", "De taak is aangemaakt", "updated_task", _s20_84, "archived_task", "De taak is gearchiveerd", "deleted_task", "De taak is verwijderd", "restored_task", "De taak is hersteld", "archived_tasks", "Succesvol :count taken gearchiveerd", "deleted_tasks", "Succesvol :count taken verwijderd", "restored_tasks", "Succesvol hersteld: waarde taken", _s19_55, "Geef a.u.b. een naam op", "budgeted_hours", "Begrote uren", "created_project", "Het project is aangemaakt", "updated_project", "Het project is gewijzigd", _s16_186, "Het project is gearchiveerd", "deleted_project", _s25_61, _s16_187, "Het project is hersteld", _s17_111, "Succesvol :count projecten gearchiveerd", _s16_188, "Succesvol :count projecten verwijderd", _s17_112, "Succesvol hersteld: waarde projecten", "new_project", "Nieuw project", _s27_45, "Bedankt voor het gebruik van onze app!", "if_you_like_it", "Als je het leuk vindt alsjeblieft", "click_here", "Klik hier", _s18_90, "Klik hier", "to_rate_it", "om een score te geven.", "average", "Gemiddeld", "unapproved", "Afgekeurd", _s30_15, "Gelieve te authenticeren om deze instelling te wijzigen", "locked", "Vergrendeld", "authenticate", "Authenticeer", _s19_57, "Gelieve te authenticeren", _s24_46, "Biometrische authenticatie", "footer", "Voettekst", "compare", "Vergelijk", "hosted_login", "Hosted login", "selfhost_login", "Self-Host login", "google_sign_in", "Log in met Google", "today", "Vandaag", "custom_range", "Aangepast bereik", "date_range", "Datumbereik", "current", "Huidige", "previous", "Vorige", "current_period", "Huidige Periode", _s17_113, "Periode om mee te vergelijken", "previous_period", "Vorige Periode", "previous_year", "Vorig jaar", "compare_to", "Vergelijk met", "last7_days", "Laatste 7 dagen", "last_week", "Afgelopen week", "last30_days", "Laatste 30 Dagen", "this_month", "Deze maand", "last_month", "Vorige maand", "this_year", "Dit jaar", "last_year", "Vorig jaar", "custom", "Aangepast", _s16_189, "Dupliceer als factuur", "clone_to_quote", "Dupliceer als offerte", "clone_to_credit", "Klonen naar krediet", "view_invoice", "Bekijk factuur", "convert", "Converteer", "more", "Meer", "edit_client", "Wijzig klant", "edit_product", "Wijzig product", "edit_invoice", "Wijzig factuur", "edit_quote", "Bewerk offerte", "edit_payment", "Bewerk betaling", "edit_task", "Wijzig taak", "edit_expense", "Bewerk uitgave", "edit_vendor", "Bewerk leverancier", "edit_project", "Wijzig project", _s20_68, "Bewerk terugkerende offerte", "billing_address", "Factuuradres", _s16_191, "Leveringsadres", "total_revenue", "Totale inkomsten", "average_invoice", "Gemiddelde factuur", "outstanding", "Uitstaand", "invoices_sent", "facturen verzonden", "active_clients", "Actieve klanten", "close", "Sluiten", "email", "E-mail", "password", "Wachtwoord", "url", "URL", "secret", "Secret", "name", "Naam", "logout", "Afmelden", "login", "Login", "filter", "Filter", "sort", "Sorteer", "search", "Zoeken", "active", "Actief", "archived", "Gearchiveerd", "deleted", "Verwijderd", "dashboard", "Dashboard", "archive", "Archiveer", "delete", "Verwijder", "restore", "Herstel", _s16_193, "Verversen afgerond", _s23_38, "Gelieve uw e-maildres in te vullen", _s26_32, "Gelieve uw wachtwoord in te voeren", _s21_77, "Gelieve uw URL in te voeren", _s26_34, "Gelieve een productcode in te voeren", "ascending", "Oplopend", "descending", "Aflopend", "save", "Opslaan", _s17_115, "Er is een fout opgetreden", "paid_to_date", "Reeds betaald", "balance_due", "Te voldoen", "balance", "Saldo", "overview", "Overzicht", "details", "Details", "phone", "Telefoon", "website", "Website", "vat_number", "BTW-nummer", "id_number", "KVK-nummer", "create", "Aanmaken", _s19_59, "Waarde :value naar klembord gekopieerd", "error", "Fout", _s16_195, "Kon niet starten", "contacts", "Contactpersonen", "additional", "Extra", "first_name", "Voornaam", "last_name", "Achternaam", "add_contact", "Contact toevoegen", "are_you_sure", "Weet je het zeker?", "cancel", "Annuleren", "ok", "OK", "remove", "Verwijderen", _s16_197, "E-mailadres is incorrect", "product", "Product", "products", "Producten", "new_product", "Nieuw product", "created_product", "Het product is aangemaakt", "updated_product", "Het product is gewijzigd", _s16_199, "Het product is gearchiveerd", "deleted_product", "Het product is verwijderd", _s16_200, "Het product is hersteld", _s17_117, "Succesvol :count producten gearchiveerd", _s16_201, "Succesvol :count producten verwijderd", _s17_118, "Succesvol hersteld: waarde producten", "product_key", "Product", "notes", "Notities", "cost", "Kosten", "client", "Klant", "clients", "Klanten", "new_client", "Nieuwe klant", "created_client", "De klant is aangemaakt", "updated_client", "De klant is bijgewerkt", "archived_client", "De klant is gearchiveerd", _s16_202, "Succesvol :count klanten gearchiveerd", "deleted_client", "De klant is verwijderd", "deleted_clients", "Succesvol :count klanten verwijderd", "restored_client", "De klant is hersteld", _s16_203, "Succesvol hersteld: waarde klanten", "address1", "Straat", "address2", "Bus", "city", "Plaats", "state", "Provincie", "postal_code", "Postcode", "country", "Land", "invoice", "Factuur", "invoices", "Facturen", "new_invoice", "Nieuwe factuur", "created_invoice", "De factuur is aangemaakt", "updated_invoice", "De factuur is gewijzigd", _s16_204, "De factuur is gearchiveerd", "deleted_invoice", "De factuur is verwijderd", _s16_205, "De factuur is hersteld", _s17_119, "Succesvol :count facturen gearchiveerd", _s16_206, "De :count facturen zijn verwijderd", _s17_120, "Succesvol hersteld: waarde facturen", "emailed_invoice", "De factuur is gemaild", "emailed_payment", "De betaling is per mail verstuurd", "amount", "Bedrag", "invoice_number", "Factuurnummer", "invoice_date", "Factuurdatum", "discount", "Korting", "po_number", "Bestelnummer", "terms", "Voorwaarden", "public_notes", "Publieke opmerkingen", "private_notes", "Prive notities", "frequency", "Frequentie", "start_date", "Startdatum", "end_date", "Einddatum", "quote_number", "Offertenummer", "quote_date", "Offertedatum", "valid_until", "Geldig tot", "items", "Artikelen", "partial_deposit", "Voorschot", "description", "Omschrijving", "unit_cost", "Eenheidsprijs", "quantity", "Aantal", "add_item", "Artikel toevoegen", "contact", "Contact", "work_phone", "Telefoon", "total_amount", "Totaal hoeveelheid", "pdf", "PDF", "due_date", "Vervaldatum", _s16_207, "Gedeeltelijke vervaldatum", "status", "Status", _s17_121, "Factuurstatus", "quote_status", "Offertestatus", _s22_56, "Klik op + om een artikel toe te voegen", _s22_58, "Klik + om tijd toe te voegen", "count_selected", ":count geselecteerd", "total", "Totaal", "percent", "Procent", "edit", "Bewerk", "dismiss", "Seponeren", _s20_70, "Gelieve een datum selecteren", _s22_59, _s31_28, _s24_48, "Selecteer een factuur", "task_rate", "Taak tarief", "settings", "Instellingen", "language", "Taal", "currency", "Munteenheid", "created_at", "Aanmaakdatum", "created_on", "Aangemaakt op", "updated_at", "Bijgewerkt", "tax", "Belasting", _s30_17, "Gelieve een factuurnummer in te voeren", _s27_49, "Gelieve een offertenummer in te voeren", "past_due", "Verlopen", "draft", "Concept", "sent", "Verzonden", "viewed", "Bekeken", "approved", "Goedgekeurd", "partial", "Voorschot", "paid", "Betaald", "mark_sent", "Markeer als verzonden", _s22_61, "De factuur is gemarkeerd als verzonden", _s22_62, "Factuur succesvol gemarkeerd als verzonden", _s23_40, "Facturen gemarkeerd als verzonden", _s23_41, "Facturen succesvol gemarkeerd als verzonden", "done", "Klaar", _s37_18, "Gelieve een bedrijfsnaam of contactpersoon in te voeren", "dark_mode", "Donkere modus", _s27_51, "Herstart de applicatie om de wijziging toe te passen", "refresh_data", "Gegevens verversen", "blank_contact", "Leeg contact", "activity", "Activiteit", _s16_209, "Geen gegevens gevonden", "clone", "Dupliceer", "loading", "Laden", "industry", "Industrie", "size", "Grootte", "payment_terms", "Betalingsvoorwaarden", "payment_date", "Betalingsdatum", "payment_status", "Betaalstatus", _s16_211, "In afwachting", _s16_212, "Ongeldig", _s16_213, "Mislukt", _s16_214, "Voltooid", _s16_215, "Deels terugbetaald", _s16_216, "Gecrediteerd", _s17_122, "Niet toegepast", _s17_123, _s27_68, "net", "Betaaltermijn", "client_portal", "Klantenportaal", "show_tasks", "Toon taken", "email_reminders", "E-mail herinneringen", "enabled", "Ingeschakeld", "recipients", "Ontvangers", "initial_email", "Initi\xeble e-mail", "first_reminder", _s18_123, "second_reminder", _s18_124, "third_reminder", _s17_152, "reminder1", _s18_123, "reminder2", _s18_124, "reminder3", _s17_152, "template", "Sjabloon", "send", "Verstuur", "subject", "Onderwerp", "body", "Tekst", "send_email", "Verstuur e-mail", "email_receipt", "Mail betalingsbewijs naar de klant", "auto_billing", "Automatisch incasseren", "button", "Knop", "preview", "Voorbeeld", "customize", "Aanpassen", "history", "Geschiedenis", "payment", "Betaling", "payments", "Betalingen", "refunded", "Gecrediteerd", "payment_type", "Betalingswijze", _s21_79, "Transactie referentie", "enter_payment", "Voer betaling in", "new_payment", "Nieuwe betaling", "created_payment", "De betaling is aangemaakt", "updated_payment", "De betaling is gewijzigd", _s16_217, "De betaling is gearchiveerd", "deleted_payment", "De betaling is verwijderd", _s16_218, "De betaling is hersteld", _s17_124, "Succesvol :count betalingen gearchiveerd", _s16_219, "Succesvol :count betalingen verwijderd", _s17_125, "Succesvol hersteld: waarde betalingen", "quote", "Offerte", "quotes", "Offertes", "new_quote", "Nieuwe offerte", "created_quote", "De offerte is aangemaakt", "updated_quote", "De offerte is gewijzigd", "archived_quote", "De offerte is gearchiveerd", "deleted_quote", "De offerte is verwijderd", "restored_quote", "De offerte is hersteld", "archived_quotes", "Succesvol :count offertes gearchiveerd", "deleted_quotes", "Succesvol :count offertes verwijderd", "restored_quotes", "Succesvol hersteld: waarde offertes", "expense", "Uitgave", "expenses", "Uitgaven", "vendor", "Leverancier", "vendors", "Leveranciers", "task", "Taak", "tasks", "Taken", "project", "Project", "projects", "Projecten", "activity_1", ":user heeft klant :client aangemaakt", "activity_2", ":user heeft klant :client gearchiveerd", "activity_3", ":user heeft klant :client verwijderd", "activity_4", ":user heeft factuur :invoice aangemaakt", "activity_5", ":user heeft factuur :invoice bijgewerkt", "activity_6", ":user heeft factuur :invoice voor :client naar :contact verstuurd", "activity_7", ":contact heeft factuur :invoice voor :client bekeken", "activity_8", ":user heeft factuur :invoice gearchiveerd", "activity_9", ":user heeft factuur :invoice verwijderd", "activity_10", ":contact heeft betaling :payment van :payment_amount ingevoerd voor factuur :invoice voor :client", "activity_11", ":user heeft betaling :payment bijgewerkt", "activity_12", ":user heeft betaling :payment gearchiveerd", "activity_13", ":user heeft betaling :payment verwijderd", "activity_14", ":user heeft :credit krediet ingevoerd", "activity_15", ":user heeft :credit krediet bijgewerkt", "activity_16", ":user heeft :credit krediet gearchiveerd", "activity_17", ":user heeft :credit krediet verwijderd", "activity_18", ":user heeft offerte :quote aangemaakt", "activity_19", ":user heeft offerte :quote bijgewerkt", "activity_20", ":user heeft offerte :quote voor :client verstuurd naar :contact", "activity_21", ":contact heeft offerte :quote bekeken", "activity_22", ":user heeft offerte :quote gearchiveerd", "activity_23", ":user heeft offerte :quote verwijderd", "activity_24", ":user heeft offerte :quote hersteld", "activity_25", ":user heeft factuur :invoice hersteld", "activity_26", ":user heeft klant :client hersteld", "activity_27", ":user heeft betaling :payment hersteld", "activity_28", ":user heeft :credit krediet hersteld", "activity_29", ":contact heeft offerte :quote goedgekeurd voor :client", "activity_30", ":user heeft leverancier :vendor aangemaakt", "activity_31", ":user heeft leverancier :vendor gearchiveerd", "activity_32", ":user heeft leverancier :vendor verwijderd", "activity_33", ":user heeft leverancier :vendor hersteld", "activity_34", ":user heeft uitgave :expense aangemaakt", "activity_35", ":user heeft uitgave :expense gearchiveerd", "activity_36", ":user heeft uitgave :expense verwijderd", "activity_37", ":user heeft uitgave :expense hersteld", "activity_39", ":user heeft een a :payment_amount betaling geannuleerd :payment", "activity_40", ":user heeft :adjustment van een :payment_amount betaling :payment", "activity_41", "Betaling van :payment_amount mislukt (:payment)", "activity_42", ":user heeft taak :task aangemaakt", "activity_43", ":user heeft taak :task bijgewerkt", "activity_44", ":user heeft taak :task gearchiveerd", "activity_45", ":user heeft taak :task verwijderd", "activity_46", ":user heeft taak :task hersteld", "activity_47", ":user heeft uitgave :expense bijgewerkt", "activity_48", ":user heeft de gebruiker: :user aangemaakt", "activity_49", ":user heeft de gebruiker: :user aangepast", "activity_50", ":user heeft de gebruiker: :user gearchiveerd", "activity_51", ":user heeft de gebruiker: :user verwijderd", "activity_52", ":user heeft de gebruiker: :user hersteld", "activity_53", ":user heeft factuur :invoice als verstuurd gemarkeerd", "activity_54", ":user heeft ticket :ticket heropend", "activity_55", ":contact heeft op ticket :ticket gereageerd", "activity_56", ":user heeft ticket :ticket bekeken", "activity_57", "Systeem kon de factuur niet mailen :invoice", "activity_58", ":gebruiker heeft factuur :invoice teruggedraaid", "activity_59", ":gebruiker heeft factuur :invoice geannuleerd", "activity_60", ":contact heeft de offerte :quote bekeken", "activity_61", ":user heeft de klant :client aangepast", "activity_62", ":user heeft de leverancier :vendor gewijzigd", "activity_63", ":user heeft de eerste herinnering voor factuur :invoice naar :contact verzonden", "activity_64", ":user heeft de tweede herinnering voor factuur :invoice naar :contact verzonden", "activity_65", ":user heeft de derde herinnering voor factuur :invoice naar :contact verzonden", "activity_66", ":user heeft eindeloze herinneringen voor factuur :invoice naar :contact verzonden", "activity_80", ":user heeft abonnement :subscription aangemaakt", "activity_81", ":user heeft abonnement :subscription bijgewerkt", "activity_82", ":user heeft abonnement :subscription gearchiveerd", "activity_83", ":user heeft abonnement :subscription verwijderd", "activity_84", ":user heeft abonnement :subscription hersteld", _s17_126, "Eenmalig wachtwoord", "emailed_quote", "De offerte is gemaild", "emailed_credit", "Krediet is verzonden", _s20_72, "De offerte is gemarkeerd als verzonden", _s21_81, "Krediet is gemarkeerd als verzonden", "expired", "Verlopen", "all", "Alles", "select", "Selecteer", _s22_63, "Lang indrukken multiselect", "custom_value1", _s17_153, "custom_value2", _s17_153, "custom_value3", "Aangepaste waarde 3", "custom_value4", "Aangepaste waarde 4", _s18_91, "Aangepaste Email Stijl", _s24_53, "Aangepast bericht Dashboard", _s29_36, "Aangepast bericht Onbetaalde Factuur", _s27_56, "Aangepast bericht Betaalde Factuur", _s31_18, "Aangepast bericht Niet goedgekeurde Offerte", "lock_invoices", "Vergrendel facturen", "translations", "Vertalingen", _s19_60, "Taaknummer patroon", _s19_62, "Taaknummer teller", _s22_65, "Uitgave nummer patroon", _s22_67, "Uitgave nummer teller", _s21_82, "Leverancier nummer patroon", _s21_84, "Leverancier nummer teller", _s21_86, "Ticket nummer patroon", _s21_88, "Ticket nummer teller", _s22_69, "Betalingsnummer patroon", _s22_71, "Betalingsnummer teller", _s22_73, "Factuur nummer patroon", _s22_75, "Factuurnummerteller", _s20_73, "Offertenummer teller", _s20_75, "Offertenummerteller", _s21_90, _s21_111, _s21_92, _s20_90, _s21_94, _s21_111, _s21_95, _s20_90, _s18_93, "Teller datum resetten", "counter_padding", "Teller patroon", _s28_56, "Gedeelde factuur offerte teller", _s18_95, "Standaard BTW naam 1", _s18_97, "Standaard BTW-tarief 1", _s18_99, "Standaard BTW naam 2", _s18_101, "Standaard BTW-tarief 2", _s18_103, "Standaard BTW naam 3", _s18_105, "Standaard BTW-tarief 3", _s21_96, "E-mail factuur onderwerp", _s19_64, "E-mail offerte onderwerp", _s21_98, "E-mail betaling onderwerp", _s29_38, "E-mail gedeeltelijke betalingsonderwerp", "show_table", "Weergeef als tabel", "show_list", "Weergeef als lijst", "client_city", "Klant stad", "client_state", "Klant provincie", "client_country", "Land van de klant", _s16_220, "Klant is actief", "client_balance", "Klanten balans", "client_address1", "Klant straat", "client_address2", "Klant apt/suite", "vendor_address1", "Leverancier straatnaam", "vendor_address2", "Leverancier Apt / Suite", _s24_55, "Klant leveringsadres", _s24_56, "Klant leverings Apt/Suite", "type", "Type", "invoice_amount", "Factuurbedrag", _s16_224, "Vervaldatum", "tax_rate1", "BTW-tarief 1", "tax_rate2", "BTW-tarief 2", "tax_rate3", "BTW-tarief 3", "auto_bill", "Automatische incasso", "archived_at", "Gearchiveerd op", "has_expenses", "Heeft uitgaves", "custom_taxes1", "Aangepaste Belastingen 1", "custom_taxes2", "Aangepaste Belastingen 2", "custom_taxes3", "Aangepaste Belastingen 3", "custom_taxes4", "Aangepaste Belastingen 4", _s17_128, _s20_86, _s17_129, _s20_87, _s17_130, _s20_88, _s17_131, _s20_89, "is_deleted", "Is verwijderd", "vendor_city", "Stad van de klant", "vendor_state", "Leverancier provincie", "vendor_country", "Land van de verkoper", "is_approved", "Is goedgekeurd", "tax_name", "Belasting naam", "tax_amount", "BTW", "tax_paid", "Betaalde Belasting", "payment_amount", "Betalingsbedrag", "age", "Leeftijd", "is_running", "Word uitgevoerd", "time_log", "Tijdschema", "bank_id", "Bank", _s19_66, "Uitgave categorie ID", _s16_225, _s16_263, _s19_68, "Factuur valuta ID", "tax_name1", "BTW naam 1", "tax_name2", "BTW naam 2", "tax_name3", "BTW naam 3", "transaction_id", "Transactie ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "en_GB", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s23_42, _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Set Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Enable", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, _s18_34, _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_15, _s29_6, "select_file", _s20_91, _s16_60, _s16_61, "csv_file", "CSV file", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, _s18_46, _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", _s17_136, _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "Taxes", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, _s17_58, _s17_59, _s17_60, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Delete Invoice", "update_client", "Update Client", "delete_client", "Delete Client", "delete_payment", "Delete Payment", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Email Invoice", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", _s27_31, "updated_credit", _s27_32, "archived_credit", _s28_18, "deleted_credit", _s27_33, "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, _s36_18, "deleted_credits", _s35_23, _s16_99, _s36_9, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Learn more", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Credit Balance", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Message", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Line Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, _s21_101, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_36, "updated_user", _s25_37, "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Invoice Options", _s17_86, _s17_87, _s22_52, _s87_, _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Colour", "secondary_color", "Secondary Colour", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "Invoice Terms", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Fortnightly", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorisation", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Regards,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "Rate", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", _s20_78, _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, _s16_170, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_103, _s17_104, "company_details", "Company Details", "user_details", "User Details", "localization", "Localisation", "online_payments", "Online Payments", "tax_rates", "Tax Rates", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, "Data Visualisations", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, _s16_172, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Download", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Mark Paid", "category", "Category", "address", "Address", "new_vendor", "New Vendor", "created_vendor", _s27_42, "updated_vendor", _s27_43, "archived_vendor", _s28_26, "deleted_vendor", _s27_44, "restored_vendor", _s28_27, _s16_179, _s36_19, "deleted_vendors", _s35_24, _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_50, "updated_task", _s25_51, "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", _s34_22, "deleted_tasks", _s33_25, "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "click here", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Client", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Billing Address", _s16_191, _s16_192, "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", _s20_77, "active_clients", "active clients", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Secret", "name", "Name", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_115, _s17_116, "paid_to_date", "Paid to Date", "balance_due", "Balance Due", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "Phone", "website", "Website", "vat_number", "VAT Number", "id_number", "ID Number", "create", "Create", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Contacts", "additional", "Additional", "first_name", "First Name", "last_name", "Last Name", "add_contact", "Add contact", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_35, "updated_product", _s28_36, _s16_199, _s29_24, "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "Customer", "clients", "Clients", "new_client", "New Client", "created_client", _s27_46, "updated_client", _s27_47, "archived_client", _s28_38, _s16_202, _s36_20, "deleted_client", _s27_48, "deleted_clients", _s35_25, "restored_client", _s28_39, _s16_203, _s36_13, "address1", "Street", "address2", "Unit/Suite", "city", "Town/Suburb", "state", "State", "postal_code", "Postcode", "country", "Country", "invoice", "Invoice", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_40, "updated_invoice", _s28_41, _s16_204, _s29_26, "deleted_invoice", _s28_42, _s16_205, _s29_27, _s17_119, _s37_25, _s16_206, _s36_21, _s17_120, _s37_17, "emailed_invoice", _s28_67, "emailed_payment", _s28_58, "amount", "Amount", "invoice_number", "Invoice Number", "invoice_date", "Invoice Date", "discount", "Discount", "po_number", "PO Number", "terms", "Terms", "public_notes", "Public Notes", "private_notes", "Private Notes", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Description", "unit_cost", "Unit Cost", "quantity", "Quantity", "add_item", "Add Item", "contact", "Contact", "work_phone", "Phone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Due Date", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Settings", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Tax", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "Paid", "mark_sent", "Mark Sent", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Done", _s37_18, _s37_19, "dark_mode", "Dark Mode", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_209, _s16_210, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Payment Terms", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customise", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, _s21_80, "enter_payment", "Enter Payment", "new_payment", "Enter Payment", "created_payment", _s28_43, "updated_payment", _s28_44, _s16_217, _s29_28, "deleted_payment", _s28_45, _s16_218, _s29_29, _s17_124, _s37_26, _s16_219, _s36_22, _s17_125, _s37_20, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", _s35_22, "deleted_quotes", _s34_23, "restored_quotes", _s35_21, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_46, "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", _s30_19, "activity_5", _s30_20, "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", _s85_0, "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", _s26_44, "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Select", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "et", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "N\xf5ustu", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Makseseaded", "default", "Vaikimisi", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Lisa L\xfc\xfcs", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Lisa arvele :invoice", _s17_6, _s17_7, "week", "N\xe4dal", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Arve Valuuta", "range", "Vahemik", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Loo projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Arve summas :amount viivis oleks :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Kinnita", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Tavaline", "large", "Large", "extra_large", "V\xe4ga suur", _s16_15, "Kuva PDF-i eelvaade", _s21_14, "Kuva PDF-i eelvaade arvete redigeerimise ajal", "print_pdf", "Prindi PDF", "remind_me", "Tuleta mulle meelde", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Peida eelvaade", "edit_record", "Redigeeri kirjet", _s27_6, "Ettemaksusumma ei tohi olla suurem kui arve summa", "giropay", "GiroPay", "direct_debit", "Otsekorraldusega", _s21_15, "Palun m\xe4\xe4ra konto parool", "set_password", "Sea Salas\xf5na", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", "Eelvolitatud deebetmaksed", "becs", "BECS otsekorraldus", "bulk_download", "Lae alla", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, "Kliendi postiindeks", _s17_11, "Kliendi KMKR number", "has_tasks", "Has Tasks", "registration", "Registreerimine", _s27_7, "Volitage Stripe v\xf5rgumakseid vastu v\xf5tma.", "view_expense", "Vaadake kulu # :expense", "view_statement", "Vaata aruannet", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, "V\xe4rskendage k\xf5iki kirjeid", "system", "S\xfcsteem", _s19_12, "M\xe4\xe4rake vaikeettev\xf5te", "updated_company", "Ettev\xf5tte v\xe4rskendamine \xf5nnestus", "kbc", "KBC", "bancontact", "Blokeeri kontakt", _s19_14, "Aidake meil t\xe4iustada, \xf6elge meile p\xf5hjus (valikuline)", "webhook_success", "Webhook Success", _s24_13, "K\xf5ik \xfclesanded peavad kuuluma samale kliendile", _s27_8, "K\xf5ik kulud peavad kuuluma samale kliendile", "app", "Rakendus", _s20_19, "Parima suutlikuse saavutamiseks laadige alla rakendus :app", _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Kellelt Nimi", _s16_21, "Klooni kuluks", _s17_13, "Korduva kulu", _s18_13, "Korduvad kulud", _s21_16, "Uus Korduv kulu", _s22_24, "Redigeeri Korduv kulu", _s25_2, "Korduva kulu loomine \xf5nnestus", _s25_3, "Korduva kulu v\xe4rskendamine \xf5nnestus", _s26_2, "Korduva kulu arhiveerimine \xf5nnestus", _s25_4, "Projekti kustutamine \xf5nnestus", _s25_5, _s38_2, _s26_3, "Korduva kulu taastamine \xf5nnestus", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Viimase saatmise kuup\xe4ev", "include_drafts", "Kaasa mustandid", _s19_15, "Kaasake aruannetesse kirjete mustandid", "is_invoiced", "Is Invoiced", "change_plan", "Muuda plaani", "persist_data", "Persist Data", "customer_count", "Klientide arv", _s16_22, "Kinnitage kliendid", _s16_24, _s16_25, _s28_1, "Google Analyticsi j\xe4lgimise ID", "decimal_comma", "K\xfcmnendkoma", _s26_4, "Kasutage vormides koma k\xfcmnendkohana", "select_method", "Valige meetod", "select_platform", "Valige Platvorm", _s28_3, "Kasutage Gmailiga \xfchenduse loomiseks veebirakendust", _s16_26, "Kauba maksum\xe4\xe4rad on keelatud", "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Kasutusjuhend", _s18_15, "Lisa teine \u200b\u200bkontakt", "previous_page", "Eelmine leht", "next_page", "J\xe4rgmine leht", "export_colors", "Ekspordi v\xe4rve", "import_colors", "Impordi v\xe4rve", "clear_all", "Puhasta k\xf5ik", "contrast", "Kontrast", "custom_colors", "Kohandatud v\xe4rvid", "colors", "V\xe4rvid", _s31_4, "K\xfclgriba aktiivne taustav\xe4rv", _s25_8, "K\xfclgriba aktiivne fondiv\xe4rv", _s33_5, "K\xfclgriba mitteaktiivne taustav\xe4rv", _s27_10, "K\xfclgriba passiivne fondi v\xe4rv", _s36_3, "Tabeli alternatiivse rea taustav\xe4rv", _s31_6, "Arve p\xe4ise taustav\xe4rv", _s25_10, "Arve p\xe4ise fondi v\xe4rv", "net_subtotal", "Neto kokku", "review_app", "Vaadake rakendus \xfcle", "check_status", "Kontrolli olekut", "free_trial", "Tasuta prooviversioon", _s23_7, "Pro-paketi prooviperiood l\xf5peb :count p\xe4eva p\xe4rast, kl\xf5psake versiooniuuendamiseks.", _s21_18, "T\xe4na on Pro-paketi prooviversiooni viimane p\xe4ev, kl\xf5psake versiooniuuendamiseks.", "change_email", "Muuda meiliaadressi", _s25_12, _s52_, _s21_19, "Portaalis kuvatud \xfclesanded", "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Impordi Andmed", "import_settings", "Impordi s\xe4tted", _s17_15, "Esitage JSON-fail", _s19_16, "Valige importimiseks seaded ja/v\xf5i andmed", "json", "JSON", _s24_16, "\xdchtegi makset\xfc\xfcpi pole lubatud", "wait_for_data", "Palun oodake andmete laadimise l\xf5petamist", "net_total", "Netosumma", "has_taxes", "On maksud", _s16_27, "Impordi kliendid", _s18_17, "Klientide importimine algas edukalt", "login_success", "Sisselogimine \xf5nnestus", "login_failure", "Sisselogimine eba\xf5nnestus", "exported_data", "Kui fail on valmis, saate allalaadimislingiga meili", _s23_8, "Sisaldab kustutatud kliente", _s28_5, "Laadige kustutatud klientidele kuuluvad kirjed", "step_1_sign_in", "1. samm: logige sisse", _s16_30, "2. samm: autoriseerimine", "account_id", "Konto ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, "N\xe4ita \xfclesande l\xf5ppkuup\xe4eva", _s23_10, "Lubage \xfclesande l\xf5ppkuup\xe4eva m\xe4\xe4ramine", "gateway_setup", "Gateway Setup", "preview_sidebar", "K\xfclgriba eelvaade", _s16_31, "N\xe4idatud aastate andmed", _s18_20, "K\xf5ik seansid on edukalt l\xf5ppenud", _s16_33, "L\xf5petage k\xf5ik seansid", "count_session", "1 seanss", "count_sessions", ":count seansse", "invoice_created", "Arve loodud", "quote_created", "Hinnapakkumine loodud", "credit_created", "Ettemaks loodud", "pro", "Pro", "enterprise", "Ettev\xf5te", "last_updated", "Viimati uuendatud", "invoice_item", "Arve \xfcksus", "quote_item", "Hinnapakkumise \xfcksus", _s18_21, "Kontakti Eesnimi", _s17_17, "Kontakti Perekonnanimi", "order", "Telli", "unassigned", "M\xe4\xe4ramata", "partial_value", "Peab olema suurem kui null ja v\xe4iksem kui kogusumma", "search_kanban", _s16_266, "search_kanbans", _s16_266, "kanban", "Kanban", "enable", "Luba", "move_top", "Liigu \xfcles", "move_up", "Liigu \xfcles", "move_down", "Liigu alla", "move_bottom", "Liigu alla", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "On vaadatud", "letter", "Kiri", "legal", "Juriidiline", "page_layout", "Lehe kujundus", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, "Arve tasumise tingimused", _s17_21, "Pakkumine kehtib kuni", "no_headers", "P\xe4ised puuduvad", "add_header", "Lisa p\xe4is", "remove_header", "Eemalda p\xe4is", "return_url", "Return URL", "rest_method", "REST meetod", "header_key", "Header Key", "header_value", "P\xe4ise v\xe4\xe4rtus", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo allahindlus", _s18_25, "Luba t\xfchistamine", _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Prooviversioon lubatud", "trial_duration", "Prooviperioodi kestus", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Tagastamisperiood", _s21_26, _s21_27, "purchase_page", "Ostu leht", "security", "Turvalisus", "email_bounced", "E-post p\xf5rkus tagasi", _s20_22, "R\xe4mpsposti kaebus", "email_delivery", "E-posti teel kohaletoimetamine", _s16_37, _s16_38, "pdf_response", "PDF vastus", _s22_26, "Autentimise eba\xf5nnestumine", "pdf_failed", "PDF eba\xf5nnestus", "pdf_success", "PDF \xf5nnestus", "modified", "Muudetud", "subscription", "Subscription", "subscriptions", "Tellimused", _s16_39, _s16_40, _s17_23, "Redigeeri tellimust", _s20_23, "Tellimuse loomine \xf5nnestus", _s20_24, "Tellimuse v\xe4rskendamine \xf5nnestus", _s21_28, "Tellimuse arhiveerimine \xf5nnestus", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Saada kutse uuesti", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, "Kahefaktoriline autentimine edukalt rakendatud", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Kaheastmeline Autentimine", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "Tagastatud makse", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "See kvartal", "last_quarter", "Viimane kvartal", "to_update_run", "To update run", _s18_33, "Muuda Arveks", _s16_52, "Registreerimise URL", "invoice_project", "Arve projekt", "invoice_task", "Koosta \xfclesande arve", "invoice_expense", "Arve kulu", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, "Salvesta ja eelvaade", "save_and_email", "Salvesta ja saada meil", _s16_56, _s16_57, _s16_58, "Konverteeritud summa", _s17_32, "Konverteeritud saldo", _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "On saadetud", _s17_34, "Vaikimisi Dokumendid", "document_upload", "Dokumendi \xfcleslaadimine", _s20_29, "V\xf5imaldab klientidel dokumente \xfcles laadida", "expense_total", "Kulud kokku", "enter_taxes", "Sisestage Maksud", "by_rate", "By Rate", "by_amount", "Summa j\xe4rgi", "enter_amount", "Sisesta summa", "before_taxes", "Enne makse", "after_taxes", "Peale makse", "color", "V\xe4rv", "show", "N\xe4ita", "hide", "Peida", "empty_columns", "T\xfchjad veerud", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Viimased \xfclesanded", "recent_expenses", "Viimased kulud", _s17_36, "Eelseisvad kulud", "update_app", "V\xe4rskenda rakendust", "started_import", "Impordi alustamine \xf5nnestus", _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Tulp", "sample", "N\xe4idis", "map_to", "Map To", "import", "Import", _s25_15, _s29_6, "select_file", "Valige fail", _s16_60, _s16_61, "csv_file", "CSV fail", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML re\u017eiim", "html_mode_help", "V\xe4rskenduste eelvaade on kiirem, kuid v\xe4hem t\xe4pne", "view_licenses", "Vaadake litsentse", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, 'Kinnitamiseks tippige ":value".', "purge", "Purge", "service", "Teenus", "clone_to", "Kloonida", "clone_to_other", "Clone to Other", "labels", "Sildid", "add_custom", "Lisa kohandatud", "payment_tax", "Payment Tax", "unpaid", "Maksmata", "white_label", "White Label", "delivery_note", "Saateleht", _s24_23, "Saadetud arved on lukus", _s24_25, "Tasutud arved on lukus", "source_code", "Source Code", "app_platforms", "Rakenduste platvormid", "invoice_late", "Arve Hilinenud", "quote_expired", "Hinnapakkumine aegunud", "partial_due", "Osaline t\xe4htaeg", "invoice_total", "Arve kokku", "quote_total", "Hinnapakkumine kokku", "credit_total", "Ettemakse kokku", _s23_14, "Arve kokku", "actions", "Tegevused", "expense_number", "Kulu number", "task_number", "\xdclesande number", "project_number", "Projekti number", "project_name", "Projekti nimi", "warning", "Hoiatus", "view_settings", "Kuva Seaded", _s24_27, "Hoiatus: see ettev\xf5te pole veel aktiveeritud", "late_invoice", "Hilinenud arve", "expired_quote", "Aegunud hinnapakkumine", "remind_invoice", "Tuleta meelde arvet", "cvv", "CVV", "client_name", "Kliendi Nimi", "client_phone", "Kliendi telefon", "required_fields", "n\xf5utud v\xe4ljad", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Olek", "task_statuses", "\xdclesande olekud", "new_task_status", "Uus \xfclesande olek", _s16_62, "Redigeeri \xfclesande olekut", _s19_26, "\xdclesande olek on edukalt loodud", _s19_27, "\xdclesande staatus edukalt uuendatud", _s20_32, "\xdclesande olek on edukalt arhiveeritud", _s19_28, "\xdclesande olek on edukalt kustutatud", _s19_29, "\xdclesande olek on edukalt eemaldatud", _s20_33, "\xdclesande olek on edukalt taastatud", _s22_32, ":value \xfclesannete olekute arhiveerimine \xf5nnestus", _s21_37, ":value \xfclesannete olekute kustutamine \xf5nnestus", _s22_33, ":value \xfclesannete olekute taastamine \xf5nnestus", _s18_37, _s20_34, _s20_35, "Otsi :count \xfclesande olekuid", _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, "Olekute seadistamine", "task_settings", "\xdclesande seaded", _s20_40, _s20_41, _s18_40, "Kulukategooriad", _s20_42, "Uus kulukategooria", _s21_40, _s21_41, _s24_28, "Kulukategooria loomine \xf5nnestus", _s24_29, "Kulukategooria v\xe4rskendamine \xf5nnestus", _s25_19, "Kulukategooria arhiiveerimine \xf5nnestus", _s24_30, "Kategooria edukalt kustutatud", _s24_31, "Kulukategooria eemaldamine \xf5nnestus", _s25_20, "Kulukategooria edukalt taastatud", _s27_21, "Edukalt arhiveeritud :count kulukategooriat", _s26_10, "Kulude :value kategooriad edukalt kustutatud", _s27_22, "Kulude :value kategooriad edukalt taastatud", _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "N\xe4ita valikut", _s22_34, _s50_8, "view_changes", "Kuva muudatused", "force_update", "Sunniviisiline uuendus", _s17_42, "Kasutate uusimat versiooni, kuid saadaval v\xf5ib olla ootel parandusi.", "mark_paid_help", "J\xe4lgige, et kulu on tasutud", _s18_42, "Tuleks esitada arve", _s23_16, _s33_23, _s29_7, "Tee dokumendid n\xe4htavaks", _s21_44, "M\xe4\xe4rake vahetuskurss", _s16_66, "Kuluseaded", _s18_43, "Klooni korduvasse", "crypto", "Kr\xfcpto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Kasutaja v\xe4li", "variables", "Muutujad", "show_password", "N\xe4ita parooli", "hide_password", "Peida parool", "copy_error", "Kopeerimise viga", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Maksud kokku", "line_taxes", "Rea maksud", "total_fields", "V\xe4ljad kokku", _s25_23, "Korduva arve peatamine \xf5nnestus", _s25_24, "Korduva arve esitamine \xf5nnestus", _s25_25, "Korduva arve esitamise j\xe4tkamine \xf5nnestus", "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "T\xe4htaeg", "paused", "Peatatud", "mark_active", "M\xe4rgi aktiivseks", "day_count", "P\xe4ev :count", _s22_35, "Kuu esimene p\xe4ev", _s21_45, "Kuu viimane p\xe4ev", _s17_45, "Kasutage maksetingimusi", "endless", "L\xf5putu", "next_send_date", "J\xe4rgmise saatmise kuup\xe4ev", _s16_68, "\xdclej\xe4\xe4nud ts\xfcklid", _s17_47, "Perioodiline Arve", _s18_45, "Perioodilised Arved", _s21_47, "Uus Perioodiline Arve", _s22_37, "Redigeeri korduv arvet", _s25_26, "Korduv arve on edukalt loodud", _s25_27, "Korduva arve v\xe4rskendamine \xf5nnestus", _s26_11, "Kordusarve edukalt arhiveeritud", _s25_28, "Kordusarve edukalt kustutatud", _s25_29, "Korduva arve eemaldamine \xf5nnestus", _s26_12, "Kordusarve edukalt taastatud", _s27_23, ":value korduvad arved on edukalt arhiveeritud", _s26_13, ":value korduvad arved on edukalt kustutatud", _s27_24, ":value korduvad arved on edukalt taastatud", _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Kasum", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Testire\u017eiim", "opened", "Avatud", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Saada meil", _s17_49, _s17_50, "failure", "Eba\xf5nnestumine", "quota_exceeded", "Kvoot \xfcletatud", _s16_70, _s16_71, "system_logs", "S\xfcsteemi logid", "view_portal", "Vaata portaali", "copy_link", "Kopeeri link", "token_billing", "Salvestage kaardi andmed", _s24_34, "Tere tulemast Invoice Ninjasse", "always", "Alati", "optin", "Opt-In", "optout", "Opt-Out", "label", "Silt", "client_number", "Kliendi Number", "auto_convert", _s23_49, "company_name", "Ettev\xf5tte nimi", "reminder1_sent", "1. meeldetuletus saadetud", "reminder2_sent", "2. meeldetuletus saadetud", "reminder3_sent", "3. meeldetuletus saadetud", _s18_49, "Viimati saadetud meeldetuletus", "pdf_page_info", "Lehek\xfclg :current :total", _s16_72, "Arved edukalt meili teel saadetud", "emailed_quotes", "Hinnapakkumised edukalt meili teel saadetud", "emailed_credits", "Ettemakse on meili teel edukalt saadetud", "gateway", "L\xfc\xfcs", "view_in_stripe", "Waata Stripe'is", "rows_per_page", "Ridu lehek\xfclje kohta", "hours", "Tundi", "statement", "Aruanne", "taxes", "Maksud", "surcharge", "Surcharge", "apply_payment", "Rakenda makse", "apply_credit", "Kasuta ettemaksu", "apply", "Rakenda", "unapplied", "Rakendamata", "select_label", "Vali Silt", "custom_labels", "Kohandatud sildid", "record_type", "Kirje t\xfc\xfcp", "record_name", "Kirje nimi", "file_type", "Faili t\xfc\xfcp", "height", "K\xf5rgus", "width", "Laius", "to", "Kellele", "health_check", "Health Check", "payment_type_id", "Makse T\xfc\xfcp", "last_login_at", "Viimane sisselogimine", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", "Lubage kolmandate osapoolte rakendustel arveid luua", "client_created", "Klient loodud", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "L\xf5petatud", "gross", "Bruto", "net_amount", "Neto kogus", "net_balance", "Neto j\xe4\xe4k", "client_settings", "Kliendi seaded", _s17_51, "Valitud arved", _s17_53, "Valitud maksed", "selected_quotes", "Valitud hinnapakkumised", "selected_tasks", "Valitud \xfclesanded", _s17_55, "Valitud kulud", _s17_57, "Eesseisvad arved", _s17_59, "T\xe4htaja \xfcletanud arved", "recent_payments", "Hiljutised Maksed", "upcoming_quotes", "Eesseisvad Pakkumused", "expired_quotes", "Aegunud hinnapakkumised", "create_client", "Loo Klient", "create_invoice", "Loo Arve", "create_quote", "Loo Pakkumus", "create_payment", "Create Payment", "create_vendor", "Loo hankija", "update_quote", "V\xe4rskenda hinnapakkumist", "delete_quote", "Kustuta Pakkumus", "update_invoice", "Uuenda arvet", "delete_invoice", "Kustuta Arve", "update_client", "Uuenda klienti", "delete_client", "Kustuta Klient", "delete_payment", "Kustuta Makse", "update_vendor", "V\xe4rskenda tarnijat", "delete_vendor", "Kustuta tarnija", "create_expense", "Loo kulu", "update_expense", "V\xe4rskenda kulusid", "delete_expense", "Kustuta kulud", "create_task", "Loo \xdclesanne", "update_task", "V\xe4rskenda \xfclesannet", "delete_task", "Kustuta \xdclesanne", "approve_quote", "Kinnita pakkumine", "off", "Off", "when_paid", "Kui makstud", "expires_on", "Aegub", "free", "Tasuta", "plan", "Pakett", "show_sidebar", "Kuva k\xfclgriba", "hide_sidebar", "Peida k\xfclgriba", "event_type", "Event Type", "target_url", "Sihtm\xe4rk", "copy", "Kopeeri", "must_be_online", "P\xe4rast Interneti \xfchenduse loomist taask\xe4ivitage rakendus", _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokenid", "api_docs", "API Docs", "search_tokens", "Otsi :count token", "search_token", "Otsi 1 Token", "token", "Token", "tokens", "Tokenid", "new_token", "Uus Token", "edit_token", "Redigeeri Tokenit", "created_token", "Token edukalt loodud", "updated_token", "Token edukalt v\xe4rskendatud", "archived_token", "Tokeni arhiveerimine \xf5nnestus", "deleted_token", "Token edukalt kustutatud", "removed_token", "Token on edukalt eemaldatud", "restored_token", "Token edukalt taastatud", "archived_tokens", ":value tokenit edukalt arhiveeritud", "deleted_tokens", ":value tokenit edukalt kustutatud", "restored_tokens", ":value tokenit edukalt taastatud", _s19_33, "Kliendi registreerimine", _s24_36, "V\xf5imaldab klientidel end portaalis registreerida", _s21_49, "Kohanda ja eelvaade", "email_invoice", "Saada Arve", "email_quote", "Hinnapakkumine e-posti", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, "Kliendil pole e-posti aadressi m\xe4\xe4ratud", "ledger", "Pearaamat", "view_pdf", "Vaata PDF-i", "all_records", "K\xf5ik kirjed", "owned_by_user", "Kasutaja omanduses", _s16_78, "J\xe4relej\xe4\xe4nud ettemakse", "contact_name", "Kontaktisiku nimi", "use_default", "Kasuta vaikeseadet", _s16_80, "L\xf5putud meeldetuletused", "number_of_days", "P\xe4evade arv", _s23_19, "Seadistage maksetingimused", "payment_term", "Maksetingimus", _s16_81, "Uus maksetingimus", _s17_65, "Muuda makset\xe4htaega", _s20_51, "Maksetingimus edukalt loodud", _s20_52, "Maksetingimus edukalt uuendatud", _s21_50, "Maksetingimus edukalt arhiveeritud", _s20_53, "Maksetingimus edukalt kustutatud", _s20_54, "Maksetingimus edukalt eemaldatud", _s21_51, "Maksetingimus edukalt taastatud", _s22_42, ":value maksetingimused edukalt arhiveeritud", _s21_52, ":value maksetingimused edukalt kustutatud", _s22_43, ":value maksetingimused edukalt taastatud", "email_sign_in", "Logige sisse e-postiga", "change", "Muuda", _s23_21, "Kas muuta mobiilipaigutust?", _s24_37, "Kas muuta t\xf6\xf6laua paigutust?", "send_from_gmail", "Saada Gmailist", "reversed", "Reversed", "cancelled", "T\xfchistatud", "credit_amount", "Krediidi summa", "quote_amount", "Pakkumise summa", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Peida men\xfc\xfc", "show_menu", "Kuva men\xfc\xfc", _s18_51, _s20_92, _s16_83, "Otsi dokumente", "search_designs", "Otsi disaine", "search_invoices", "Otsi arveid", "search_clients", "Otsi kliente", "search_products", "Otsi tooteid", "search_quotes", "Otsi hinnapakkumisi", "search_credits", "Otsi ettemakseid", "search_vendors", "Otsi tarnijaid", "search_users", "Otsi kasutajaid", _s16_84, "Otsi maksum\xe4\xe4rasid", "search_tasks", "Otsi \xfclesandeid", "search_settings", "Otsige seadeid", "search_projects", "Otsi projekte", "search_expenses", "Otsi kulusid", "search_payments", "Otsi makseid", "search_groups", "Otsi gruppe", "search_company", "Otsi ettev\xf5tet", "search_document", "Otsi 1 dokumenti", "search_design", "Otsi 1 Disain", "search_invoice", "Otsi 1 Arve", "search_client", "Otsi 1 klienti", "search_product", "Otsi 1 toodet", "search_quote", "Otsi 1 hinnapakkumist", "search_credit", "Otsi 1 ettemakset", "search_vendor", "Otsi 1 tarnijat", "search_user", "Otsi 1 kasutajat", "search_tax_rate", "Otsi 1 Maksum\xe4\xe4r", "search_task", "Search 1 Tasks", "search_project", "Otsi 1 projekti", "search_expense", "Otsi 1 kulu", "search_payment", "Otsi 1 Makset", "search_group", "Otsi 1 r\xfchmast", "refund_payment", "Tagasimakse", _s17_69, "Arve t\xfchistamine \xf5nnestus", _s18_53, "Arvete t\xfchistamine \xf5nnestus", _s16_90, "Arve t\xfchistati edukalt", _s17_70, "Arved t\xfchistati edukalt", "reverse", "T\xfchista", "full_name", "T\xe4isnimi", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "Esimene Kohandatud", "custom2", "Teine Kohandatud", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Valikuline", "license", "Litsents", "purge_data", "Puhasta Andmed", _s16_91, _s32_10, _s18_54, "Hoiatus: see kustutab teie andmed j\xe4\xe4davalt, tagasi v\xf5tta ei saa.", "invoice_balance", "Arve saldo", "age_group_0", "0 - 30 P\xe4eva", "age_group_30", "30 - 60 P\xe4eva", "age_group_60", "60 - 90 P\xe4eva", "age_group_90", "90 - 120 P\xe4eva", "age_group_120", "120+ P\xe4eva", "refresh", "V\xe4rskenda", "saved_design", "Kujundus salvestati edukalt", "client_details", "Kliendi \xfcksikasjad", "company_address", "Ettev\xf5tte aadress", "invoice_details", "Arve \xdcksikasjad", "quote_details", "Hinnapakkumise \xfcksikasjad", "credit_details", "Ettemaksu \xfcksikasjad", "product_columns", "Toote veerud", "task_columns", "\xdclesande veerud", "add_field", "Lisa v\xe4li", "all_events", "K\xf5ik s\xfcndmused", "permissions", "\xd5igused", "none", "Mitte \xfchtegi", "owned", "Owned", "payment_success", "Makse \xf5nnestumine", "payment_failure", "Makse eba\xf5nnestumine", "invoice_sent", ":count arve saadetud", "quote_sent", "Hinnapakkumine on saadetud", "credit_sent", "Ettemakse on saadetud", "invoice_viewed", "Arvet on vaadatud", "quote_viewed", "Hinnapakkumist on vaadatud", "credit_viewed", "Ettemakset on vaadatud", "quote_approved", "Hinnapakkumine heaks kiidetud", _s25_32, "Saa k\xf5ik teated", _s16_92, _s16_93, "apply_license", "Rakenda litsents", "cancel_account", "Kustuta Konto", _s22_44, "Hoiatus: See kustutab j\xe4\xe4davalt teie konto, ennistamis v\xf5imalus puudub.", "delete_company", "Kustuta Ettev\xf5te", _s22_45, "Hoiatus: see kustutab teie ettev\xf5tte j\xe4\xe4davalt ja seda ei saa tagasi v\xf5tta.", "enabled_modules", "Lubatud moodulid", "converted_quote", "Hinnapakkumine on edukalt teisendatud", "credit_design", "Credit Design", "includes", "Sisaldab", "header", "P\xe4is", "load_design", "Lae Kujundus", "css_framework", "CSS Framework", "custom_designs", "Kohandatud kujundused", "designs", "Kujundus", "new_design", "Uus kujundus", "edit_design", "Redigeeri kujundust", "created_design", "Kujundus on edukalt loodud", "updated_design", "Kujundus on edukalt uuendatud", "archived_design", "Kujundus on edukalt arhiveeritud", "deleted_design", "Kujundus on edukalt kustutatud", "removed_design", "Kujundus on edukalt eemaldatud", "restored_design", "Kujundus on edukalt taastatud", _s16_94, ":value kujundust edukalt arhiveeritud", "deleted_designs", ":value kujundust edukalt kustutatud", _s16_95, ":value kujundust edukalt taastatud", "proposals", "Pakkumised", "tickets", "Piletid", _s16_96, "Perioodilised Pakkumised", "recurring_tasks", "Korduvad \xfclesanded", _s18_55, "Konto Haldus", "credit_date", "Krediidi kuup\xe4ev", "credit", "Krediit", "credits", "Krediidid", "new_credit", "Sisesta krediit", "edit_credit", "Redigeeri ettemaksu", "created_credit", "Ettemaksu loomine \xf5nnestus", "updated_credit", "Ettemakse uuendamine \xf5nnestus", "archived_credit", "Ettemaksu arhiveerimine \xf5nnestus", "deleted_credit", "Ettemaksu kustutamine \xf5nnestus", "removed_credit", "Ettemaksu eemaldamine \xf5nnestus", "restored_credit", "Ettemakse taastamine \xf5nnestus", _s16_98, ":count ettemakset on edukalt arhiveeritud", "deleted_credits", ":count ettemakset on edukalt kustutatud", _s16_99, ":value ettemakset edukalt taastatud", "current_version", "Praegune versioon", "latest_version", "Uusim versioon", "update_now", "Uuendage kohe", _s26_19, "Saadaval on veebirakenduse uus versioon", _s16_100, "Uuendus saadaval", "app_updated", "Uuendus edukalt l\xf5pule viidud", "learn_more", "Rohkem teavet", "integrations", "Integrations", "tracking_id", "J\xe4lgimise ID", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Ettemaksu tingimused", "new_company", "Uus Ettev\xf5te", "added_company", "Ettev\xf5te on edukalt lisatud", "company1", "Kohandatud ettev\xf5te 1", "company2", "Kohandatud ettev\xf5te 2", "company3", "Kohandatud ettev\xf5te 3", "company4", "Kohandatud ettev\xf5te 4", "product1", "Kohandatud toode 1", "product2", "Kohandatud toode 2", "product3", "Kohandatud toode 3", "product4", "Kohandatud toode 4", "client1", "Kohandatud klient 1", "client2", "Kohandatud klient 2", "client3", "Kohandatud klient 3", "client4", "Kohandatud klient 4", "contact1", "Kohandatud kontakt 1", "contact2", "Kohandatud kontakt 2", "contact3", "Kohandatud kontakt 3", "contact4", "Kohandatud kontakt 4", "task1", "Kohandatud \xfclesanne 1", "task2", "Kohandatud \xfclesanne 2", "task3", "Kohandatud \xfclesanne 3", "task4", "Kohandatud \xfclesanne 4", "project1", "Kohandatud projekt 1", "project2", "Kohandatud projekt 2", "project3", "Kohandatud projekt 3", "project4", "Kohandatud projekt 4", "expense1", "Kohandatud kulu 1", "expense2", "Kohandatud kulu 2", "expense3", "Kohandatud kulu 3", "expense4", "Kohandatud kulu 4", "vendor1", "Kohandatud tarnija 1", "vendor2", "Kohandatud tarnija 2", "vendor3", "Kohandatud tarnija 3", "vendor4", "Kohandatud tarnija 4", "invoice1", "Kohandatud arve 1", "invoice2", "Kohandatud arve 2", "invoice3", "Kohandatud arve 3", "invoice4", "Kohandatud arve 4", "payment1", "Kohandatud makse 1", "payment2", "Kohandatud makse 2", "payment3", "Kohandatud makse 3", "payment4", "Kohandatud makse 4", "surcharge1", _s21_112, "surcharge2", _s21_113, "surcharge3", _s21_114, "surcharge4", _s21_115, "group1", "Kohandatud r\xfchm 1", "group2", "Kohandatud r\xfchm 2", "group3", "Kohandatud r\xfchm 3", "group4", "Kohandatud r\xfchm 4", "reset", "L\xe4htesta", "number", "Number", "export", "Eksport", "chart", "Diagramm", "count", "Kogus", "totals", "Kokkuv\xf5tted", "blank", "T\xfchi", "day", "P\xe4ev", "month", "Kuu", "year", "Aasta", "subgroup", "Subgroup", "is_active", "On Aktiivne", "group_by", "Grupeeri", "credit_balance", "Kreediidi saldo", _s18_61, "Kontakti viimane sisselogimine", _s17_77, "Kontakti t\xe4isnimi", "contact_phone", "Kontakt Telefon", _s21_53, "Kontakti kohandatud v\xe4\xe4rtus 1", _s21_54, "Kontakti kohandatud v\xe4\xe4rtus 2", _s21_55, "Kontakti kohandatud v\xe4\xe4rtus 3", _s21_56, "Kontakti kohandatud v\xe4\xe4rtus 4", _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, "Saatmise postiindeks", _s16_130, "Tarneriik", _s16_132, "Arvelduse t\xe4nav", _s16_133, "Arvelduse korter/sviit", "billing_city", "Arvelduse linn", "billing_state", "Arvelduse maakond", _s19_36, _s19_37, "billing_country", "Arveldusriik", "client_id", "Kliendi ID", "assigned_to", "M\xe4\xe4ratud", "created_by", "Loonud :name", "assigned_to_id", "M\xe4\xe4ratud Id'le", "created_by_id", "Loodud Id poolt", "add_column", "Lisa veerg", "edit_columns", "Muuda veerge", "columns", "Tulbad", "aging", "Aging", "profit_and_loss", "Kasum ja Kahjum", "reports", "Raportid", "report", "Raport", "add_company", "Lisa Ettev\xf5te", "unpaid_invoice", "Tasutama Arve", "paid_invoice", "Tasutud Arve", _s16_134, "Kinnitamata Pakkumus", "help", "Abi", "refund", "Tagasimakse", "refund_date", "Tagastamise kuup\xe4ev", "filtered_by", "Filtreeritud", "contact_email", "Kontakt e-posti aadress", "multiselect", "Mitmikvalimine", "entity_state", "Maakond", "verify_password", "Kinnita parool", "applied", "Rakendatud", _s21_57, "Kaasake hiljutised vead logidest", _s30_8, "Saime teie s\xf5numi k\xe4tte ja proovime kiiresti vastata.", "message", "S\xf5num", "from", "Kellet", _s20_57, "Kuva toote \xfcksikasjad", _s25_34, "Lisage toote rippmen\xfc\xfcsse kirjeldus ja maksumus", _s20_59, "PDF-i renderdaja n\xf5uab versiooni :version", _s18_64, "Reguleerige viivise protsenti", _s23_23, "Viivise arvestamiseks kohandage protsenti", _s18_66, _s18_67, "support_forum", "Tugifoorum", "about", "About", "documentation", "Dokumentatsioon", "contact_us", "V\xf5ta \xdchendust", "subtotal", "Kokku", "line_total", "Summa", "item", "Kirje", "credit_email", "Credit Email", "iframe_url", "Koduleht", "domain_url", "Domeeni URL", _s21_58, "Parool on liiga l\xfchike", _s20_60, "Parool peab sisaldama suurt\xe4hti ja numbrit", _s19_38, "Kliendiportaali \xfclesanded", _s23_24, _s23_25, _s20_61, "Palun sisestage v\xe4\xe4rtus", "deleted_logo", "Logo kustutamine \xf5nnestus", "yes", "Jah", "no", "Ei", "generate_number", "Loo number", "when_saved", "Kui salvestatud", "when_sent", "Kui saadetud", "select_company", "Valige ettev\xf5te", "float", "Float", "collapse", "Ahenda", "show_or_hide", "N\xe4ita/Peida", "menu_sidebar", "Men\xfc\xfc K\xfclgriba", "history_sidebar", "Ajaloo k\xfclgriba", "tablet", "Tahvelarvuti", "mobile", "Mobiil", "desktop", "Desktop", "layout", "Paigutus", "view", "Vaata", "module", "Moodul", "first_custom", "Esimene kohandatud", "second_custom", "Teine kohandatud", "third_custom", "Kolmas kohandatud", "show_cost", "N\xe4ita maksumust", _s17_82, "N\xe4ita toote maksumust", "show_cost_help", "Lisav\xe4\xe4rtuse/kasumi j\xe4lgimiseks kuvage tootekulu v\xe4li", _s21_59, "N\xe4ita toote kogust", _s26_21, "Kuvage toote koguse v\xe4li, muidu vaikimisi \xfcks", _s21_61, "N\xe4ita arve kogust", _s26_22, "Kuvage rea\xfcksuse koguse v\xe4li, muul juhul vaikimisi \xfcks", _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, "Vaikimisi kogus", _s21_65, "M\xe4\xe4rake rea artikli koguseks automaatselt \xfcks", "one_tax_rate", "\xdcks maksum\xe4\xe4r", "two_tax_rates", "Kaks maksum\xe4\xe4ra", "three_tax_rates", "Kolm maksum\xe4\xe4ra", _s16_138, "Vaikimisi maksum\xe4\xe4r", "user", "Kasutaja", "invoice_tax", "Arve maks", "line_item_tax", "Rea artikli maks", "inclusive_taxes", "Kaasa arvatud maksud", _s17_84, "Arve maksum\xe4\xe4rad", "item_tax_rates", "Kauba maksum\xe4\xe4rad", _s18_68, "Valige klient", "configure_rates", "M\xe4\xe4rake m\xe4\xe4rad", _s18_69, _s18_70, "tax_settings", "Maksu Seaded", _s18_71, "Maksum\xe4\xe4rad", "accent_color", "Aktsentv\xe4rv", "switch", "Switch", _s19_40, "Komaga eraldatud loend", "options", "Valikud", _s16_140, "\xdcherealine tekst", "multi_line_text", "Mitmerealine tekst", "dropdown", "Rippmen\xfc\xfc", "field_type", "V\xe4lja t\xfc\xfcp", _s27_35, "Parooli taastamise meil on saadetud", "submit", "Sisesta", _s16_142, "Taasta oma parool", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Makse number", "late_fee_amount", "Viivise summa", _s16_143, _s16_267, "schedule", "Schedule", "before_due_date", "Enne t\xe4htaega", "after_due_date", "P\xe4rast t\xe4htaega", _s18_73, "P\xe4rast arve kuup\xe4eva", "days", "P\xe4eva", "invoice_email", "Arve E-kiri", "payment_email", "Makse E-kiri", "partial_payment", "Osaline makse", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Pakkumuse E-kiri", _s16_145, "L\xf5putu Meeldetuletus", _s16_147, "Filtreeritud kasutaja j\xe4rgi", "administrator", "Administraator", _s18_74, "Luba kasutajal hallata kasutajaid, muuta seadeid ja muuta k\xf5iki kirjeid", "user_management", "Kasutaja Haldus", "users", "Kasutajad", "new_user", "Uus Kasutaja", "edit_user", "Muuda Kasutajat", "created_user", "Kasutaja loomine \xf5nnestus", "updated_user", "Kasutaja v\xe4rskendamine \xf5nnestus", "archived_user", "Kasutaja arhiveerimine \xf5nnestus", "deleted_user", "Kasutaja edukalt kustutatud", "removed_user", "Kasutaja eemaldamine \xf5nnestus", "restored_user", "Kasutaja taastamine \xf5nnestus", "archived_users", ":value kasutaja arhiveerimine \xf5nnestus", "deleted_users", ":value kasutaja kustutamine \xf5nnestus", "removed_users", ":value kasutaja eemaldamine \xf5nnestus", "restored_users", ":value kasutaja taastamine \xf5nnestus", _s16_149, "\xdcldised Seaded", "invoice_options", "Arve Valikud", _s17_86, "Peida Tasutud V\xe4li", _s22_52, 'Ainult n\xe4ita "Tasutud" v\xe4lja arvel, kui makse on loodud.', _s23_26, "Manusta dokumendid", _s28_20, "Lisage arvele lisatud pildid.", _s16_151, "N\xe4ita P\xe4ist", _s16_152, "N\xe4ita Jalust", "first_page", "Esimene lehek\xfclg", "all_pages", "K\xf5ik lehek\xfcljed", "last_page", "Viimane lehek\xfclg", "primary_font", "Esmane font", "secondary_font", "Sekundaarne font", "primary_color", "P\xf5hi v\xe4rv", "secondary_color", "Sekundaarne v\xe4rv", "page_size", "Lehek\xfclje suurus", "font_size", "Fondi suurus", "quote_design", "Pakkumuse Kujundus", "invoice_fields", "Arve V\xe4ljad", "product_fields", "Toote V\xe4ljad", "invoice_terms", "Arve Tingimused", "invoice_footer", "Arve Jalus", "quote_terms", "Hinnapakkumise tingimused", "quote_footer", "Pakkumuse Jalus", _s18_75, "Automaatne meil", _s23_27, "Saatke korduv arve automatselt meiliga nende loomisel.", _s18_76, "Automaatne arhiveerimine", _s23_28, "Arhiivi hinnapakkumised automaatselt p\xe4rast nende teisendamist.", _s18_77, _s23_49, _s23_29, "Konverteerige hinnapakkumine automaatselt arveks, kui klient on selle heaks kiitnud.", _s17_88, "T\xf6\xf6voo Seaded", "freq_daily", "Igap\xe4evane", "freq_weekly", "Igan\xe4dalane", "freq_two_weeks", "Kaks n\xe4dalat", "freq_four_weeks", "Neli n\xe4dalat", "freq_monthly", "Igakuine", "freq_two_months", "Kaks kuud", _s17_90, "Kvartaalne", _s16_153, "Neli kuud", "freq_six_months", "Poolaastane", "freq_annually", "Aastane", "freq_two_years", "Kaks aastat", _s16_154, "Kolm aastat", "never", "Ei iial", "company", "Ettev\xf5te", _s17_91, "Genereeritud Numbrid", "charge_taxes", "Tasuda makse", "next_reset", "J\xe4rgmine l\xe4htestamine", "reset_counter", "L\xe4htestage loendur", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Lisatasu v\xe4li", "company_field", "Ettev\xf5tte V\xe4ljad", "company_value", "Ettev\xf5tte v\xe4\xe4rtus", "credit_field", "Ettemakse v\xe4li", "invoice_field", "Arve V\xe4ljad", _s17_93, "Arve Lisatasu", "client_field", "Kliendi V\xe4ljad", "product_field", "Toote V\xe4ljad", "payment_field", "Makse v\xe4li", "contact_field", "Kontakti V\xe4li", "vendor_field", "Tarnija v\xe4li", "expense_field", "Kulude v\xe4li", "project_field", "Projekti v\xe4li", "task_field", "\xdclesande V\xe4li", "group_field", "R\xfchma v\xe4li", "number_counter", "Numbri loendur", "prefix", "Prefiks", "number_pattern", "Numbri muster", "messages", "S\xf5numid", "custom_css", "Kohandatud CSS", _s17_95, "Kohandatud JavaScript", _s16_157, "N\xe4ita PDFis", _s21_68, "N\xe4ita kliendi allkirja arve/pakkumuse PDFis.", _s25_40, "Arve Tingimuste M\xe4rkeruut", _s30_9, "N\xf5ua kliendilt kinnitust, et ta n\xf5ustub arve tingimustega.", _s23_30, "Pakkumuse Tingimuste M\xe4rkeruut", _s28_21, "N\xf5ua kliendilt kinnitust, et ta n\xf5ustub hinnapakkumise tingimustega.", _s25_41, "Arve Allkiri", _s30_10, "N\xf5ua kliendi allkirja", _s23_31, "Pakkumuse Allkiri", _s22_54, "Salas\xf5naga Kaitstud Arved", _s27_36, "V\xf5imaldab m\xe4\xe4rata igale kontaktile salas\xf5na. Kui salas\xf5na on m\xe4\xe4ratud siis n\xf5utakse kontaktilt enne arve n\xe4gemist salas\xf5na.", "authorization", "Autoriseerimine", "subdomain", "Alamdomeen", "domain", "Domeen", "portal_mode", "Portaali re\u017eiim", "email_signature", "Lugupidamisega.", _s24_38, "Muutke oma klientidel teile maksmine lihtsamaks, lisades oma meilidele schema.org-i m\xe4rgistuse.", "plain", "Lihtne", "light", "Hele", "dark", "Tume", "email_design", "E-kirja Kujundus", "attach_pdf", "Lisage PDF", _s16_158, "Lisage dokumendid", "attach_ubl", "Kinnitage UBL", "email_style", "Meili stiil", _s19_42, "Luba m\xe4rgistus", "reply_to_email", "Vastus meilile", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Krediitkaart", "bank_transfer", "Panga\xfclekanne", "priority", "Prioriteet", "fee_amount", "Viivise summa", "fee_percent", _s16_267, "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Luba min", "enable_max", "Luba max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "V\xe4rskenda aadressi", _s19_45, "V\xe4rskendage kliendi aadressi esitatud \xfcksikasjadega", "rate", "M\xe4\xe4r", "tax_rate", "Maksum\xe4\xe4r", "new_tax_rate", "Uus Maksum\xe4\xe4r", "edit_tax_rate", "Muuda maksum\xe4\xe4ra", _s16_160, "Maksum\xe4\xe4r on edukalt loodud", _s16_161, "Maksum\xe4\xe4ra v\xe4rskendamine \xf5nnestus", _s17_98, "Maksum\xe4\xe4ra arhiivimine \xf5nnestus", _s16_162, "Maksum\xe4\xe4r kustutati edukalt", _s17_99, "Maksum\xe4\xe4r taastati edukalt", _s18_78, ":value maksum\xe4\xe4rad edukalt arhiveeritud", _s17_100, ":value maksum\xe4\xe4rad edukalt kustutatud", _s18_79, ":value maksum\xe4\xe4rad edukalt taastatud", "fill_products", "Automaatselt t\xe4idetavad tooted", _s18_80, "Toote valimine t\xe4idab automaatselt kirjelduse ja maksumuse", "update_products", "Toodete automaatne v\xe4rskendamine", _s20_65, "Arve v\xe4rskendamine toimub automaatselt v\xe4rskendage tootekogu", _s16_163, "Konverteeri tooteid", _s21_69, "Konverteerige toodete hinnad automaatselt kliendi valuutasse", "fees", "Fees", "limits", "Limiidid", "provider", "Pakkuja", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "J\xe4tka redigeerimist", "discard_changes", "Loobu muudatustest", "default_value", "Vaikev\xe4\xe4rtus", "disabled", "Keelatud", "currency_format", "Valuuta vorming", _s21_70, "N\xe4dala esimene p\xe4ev", _s23_35, "Aasta esimene kuu", "sunday", "p\xfchap\xe4ev", "monday", "esmasp\xe4ev", "tuesday", "teisip\xe4ev", "wednesday", "kolmap\xe4ev", "thursday", "neljap\xe4ev", "friday", "reede", "saturday", "laup\xe4ev", "january", "jaanuar", "february", "veebruar", "march", "m\xe4rts", "april", "aprill", "may", "mai", "june", "juuni", "july", "juuli", "august", "august", "september", "september", "october", "oktoober", "november", "november", "december", "detsember", "symbol", "S\xfcmbol", "ocde", "Kood", "date_format", "Kuup\xe4evavorming", "datetime_format", "Kuup\xe4eva ja kellaaja vorming", "military_time", "24-tunnine Aeg", _s18_81, "24 Hour Display", "send_reminders", "Saatke meeldetuletusi", "timezone", "Ajav\xf6\xf6nd", _s19_47, "Filtreeritud projekti j\xe4rgi", _s17_101, "Filtreeritud grupi j\xe4rgi", _s19_49, "Filtreeritud arve j\xe4rgi", _s18_82, "Filtreeritud kliendi j\xe4rgi", _s18_84, "Filtreeritud tarnija j\xe4rgi", "group_settings", "Grupi seaded", "group", "Grupp", "groups", "Grupid", "new_group", "Uus grupp", "edit_group", "Redigeeri gruppi", "created_group", "Grupi loomine \xf5nnestus", "updated_group", "Grupi uuendamine \xf5nnestus", "archived_groups", ":value r\xfchma edukalt arhiveeritud", "deleted_groups", ":value r\xfchma edukalt kustutatud", "restored_groups", _s35_17, "archived_group", "Grupi arhiveerimine \xf5nnestus", "deleted_group", "Grupi kustutamine \xf5nnestus", "restored_group", "Grupi taastamine \xf5nnestus", "upload_logo", "Laadige logo \xfcles", "uploaded_logo", "Logo \xfcleslaadimine \xf5nnestus", "logo", "Logo", "saved_settings", "Seadete salvestamine \xf5nnestus", _s16_169, "Toote Seaded", "device_settings", "Seadme s\xe4tted", "defaults", "Vaikimisi", "basic_settings", "Elementaarsed Seaded", _s17_103, "T\xe4psemad Seaded", "company_details", "Ettev\xf5tte Andmed", "user_details", "Kasutaja \xdcksikasjad", "localization", "Lokalisatsioon", "online_payments", "V\xf5rgumaksed", "tax_rates", "Maksum\xe4\xe4rad", "notifications", "Teated", "import_export", _s16_268, "custom_fields", "Kohandatud V\xe4ljad", "invoice_design", "Arve Kujundus", "buy_now_buttons", "Osta Kohe Nupp", "email_settings", "E-posti Seaded", _s23_37, "Mallid ja meeldetuletused", _s22_55, "Krediitkaardid ja pangad", _s19_51, "Andmete visualiseerimised", "price", "Hind", "email_sign_up", "Meili registreerumine", "google_sign_up", "Google'i registreerumine", _s27_40, "T\xe4name teid ostu eest!", "redeem", "Redeem", "back", "Tagasi", "past_purchases", "Varasemad ostud", _s19_53, "Aastane tellimus", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count kasutajaid", "upgrade", "Uuendage", _s25_45, "Palun sisestage eesnimi", _s24_42, "Palun sisestage perekonnanimi", _s33_21, "Konto loomiseks n\xf5ustuge teenusetingimuste ja privaatsuspoliitikaga.", "i_agree_to_the", "ma n\xf5ustun", _s16_171, "Teenuse Tingimused", "privacy_policy", "Privaatsuspoliitika", "sign_up", "Registreeru", "account_login", "Konto sisselogimine", "view_website", "Vaata veebisaiti", "create_account", "Loo konto", "email_login", "Email Login", "create_new", "Loo Uus", _s18_86, "Kirjet pole valitud", _s21_73, "Palun salvestage v\xf5i t\xfchistage oma muudatused", "download", "Lae alla", _s27_41, _s27_60, "take_picture", "Tee pilt", "upload_file", "Lae fail \xfcles", "document", "Dokument", "documents", "Dokumendid", "new_document", "Uus dokument", "edit_document", "Redigeeri dokumenti", _s17_105, "Dokument edukalt \xfcles laetud", _s16_173, "Dokument edukalt uuendatud", _s17_106, "Dokument edukalt arhiveeritud", _s16_174, "Dokument edukalt kustutatud", _s17_107, "Dokument edukalt taastatud", _s18_88, ":value dokumenti edukalt arhiveeritud", _s17_108, ":value dokumenti edukalt kustutatud", _s18_89, _s38_15, "no_history", "Ajalugu pole", "expense_date", "Kulu kuup\xe4ev", "pending", "Ootel", _s16_175, "Logitud", _s16_176, "Ootel", _s16_177, "Invoiced", "converted", "Teisendatud", _s24_44, "Lisage arvele dokumendid", "exchange_rate", "Vahetuskurss", _s16_178, "Konverteeri valuutat", "mark_paid", "M\xe4rgi makstuks", "category", "Kategooria", "address", "Aadress", "new_vendor", "Uus Tarnija", "created_vendor", "Tarnija loomine \xf5nnestus", "updated_vendor", "Tarnija v\xe4rskendamine \xf5nnestus", "archived_vendor", "Tarnija arhiivimine \xf5nnestus", "deleted_vendor", "Tarnija edukalt kustutatud", "restored_vendor", "Tarnija edukalt taastatud", _s16_179, ":count tarnijaid on edukalt arhiveeritud", "deleted_vendors", ":count tarnijad on edukalt kustutatud", _s16_180, ":value tarnijat edukalt taastatud", "new_expense", "Sisestage kulu", "created_expense", "Kulu on edukalt loodud", "updated_expense", "Kulu edukalt uuendatud", _s16_181, "Kulu edukalt arhiveeritud", "deleted_expense", "Kulu edukalt kustutatud", _s16_182, "Kulud edukalt taastatud", _s17_109, "Kulud edukalt arhiveeritud", _s16_183, "Kulud edukalt kustutatud", _s17_110, ":value kulu edukalt taastatud", "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Kujundus", _s21_74, "Kirjet ei leitud", "invoiced", "Arve esitatud", "logged", "Logitud", "running", "Running", "resume", "J\xe4tka", "task_errors", "Parandage k\xf5ik kattuvad ajad", "start", "K\xe4ivita", "stop", "Peata", "started_task", "\xdclesanne edukalt k\xe4ivitatud", "stopped_task", "\xdclesanne edukalt peatatud", "resumed_task", "\xdclesanne edukalt j\xe4tkatud", "now", "N\xfc\xfcd", _s16_184, "\xdclesannete automaatne k\xe4ivitamine", "timer", "Taimer", "manual", "Manuaal", "budgeted", "Eelarvestatud", "start_time", "Algusaeg", "end_time", "L\xf5puaeg", "date", "Kuup\xe4ev", "times", "Ajad", "duration", "Kestvus", "new_task", "Uus \xdclesanne", "created_task", "\xdclesanne edukalt loodud", "updated_task", "\xdclesanne edukalt uuendatud", "archived_task", "\xdclesanne edukalt arhiveeritud", "deleted_task", "\xdclesanne edukalt kustutatud", "restored_task", "\xdclesanne edukalt taastatud", "archived_tasks", ":count \xfclesannet edukalt arhiveeritud.", "deleted_tasks", ":count \xfclesannet edukalt kustutatud", "restored_tasks", ":value \xfclesannet edukalt taastatud", _s19_55, "Palun sisesta nimi", "budgeted_hours", "Eelarvestatud tunnid", "created_project", "Projekt edukalt loodud", "updated_project", "Projekt edukalt uuendatud", _s16_186, "Projekt edukalt arhiveeritud", "deleted_project", "Projekt edukalt kustutatud", _s16_187, "Projekt edukalt taastatud", _s17_111, ":count projekti edukalt arhiveeritud", _s16_188, ":count projekti edukalt kustutatud", _s17_112, ":value projekti edukalt taastatud", "new_project", "Uus Projekt", _s27_45, "T\xe4name, et kasutasite meie rakendust!", "if_you_like_it", "Kui teile meeldib, palun", "click_here", "kl\xf5psake siin", _s18_90, "Kliki siia", "to_rate_it", "et seda hinnata.", "average", "Keskmine", "unapproved", "Kinnitamata", _s30_15, "Seadete muutmiseks autentige", "locked", "Lukustatud", "authenticate", "Autentimine", _s19_57, "Palun autentige", _s24_46, "Biomeetriline autentimine", "footer", "Jalus", "compare", "V\xf5rdlema", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Logige sisse Google'iga", "today", "T\xe4na", "custom_range", "Kohandatud Vahemik", "date_range", "Kuup\xe4evavahemik", "current", "Praegune", "previous", "Eelmine", "current_period", "Praegune periood", _s17_113, "V\xf5rdlusperiood", "previous_period", "Eelmine periood", "previous_year", "Eelmine aasta", "compare_to", "V\xf5rdlema", "last7_days", "Viimased 7 p\xe4eva", "last_week", "Eelmine n\xe4dal", "last30_days", "Viimased 30 p\xe4eva", "this_month", "See Kuu", "last_month", "Eelmine Kuu", "this_year", "See Aasta", "last_year", "Eelmine Aasta", "custom", "Kohandatud", _s16_189, "Klooni arveks", "clone_to_quote", "Klooni hinnapakkumiseks", "clone_to_credit", "Clone to Credit", "view_invoice", "Vaata Arvet", "convert", "Teisenda", "more", "Rohkem", "edit_client", "Muuda Klienti", "edit_product", "Muuda Toodet", "edit_invoice", "Muuda Arvet", "edit_quote", "Muuda Pakkumust", "edit_payment", "Muuda Makset", "edit_task", "Muuda \xdclesannet", "edit_expense", "Muuda kulusid", "edit_vendor", "Muuda Tarnijat", "edit_project", "Muuda Projekti", _s20_68, "Redigeeri korduv pakkumist", "billing_address", "Arve aadress", _s16_191, "Kohaletoimetamise aadress", "total_revenue", "Kogutulu", "average_invoice", "Keskmine Arve", "outstanding", "V\xe4ljapaistev", "invoices_sent", ":count arvet saadetud", "active_clients", "aktiivsed kliendid", "close", "Sulge", "email", "E-post", "password", "Salas\xf5na", "url", "URL", "secret", "Secret", "name", "Nimi", "logout", "Logi V\xe4lja", "login", "Logi Sisse", "filter", "Filter", "sort", "Sorteeri", "search", "Otsi", "active", "Aktiivne", "archived", "Arhiveeritud", "deleted", "Kustutatud", "dashboard", "T\xf6\xf6laud", "archive", "Arhiiv", "delete", "Kustuta", "restore", "Taasta", _s16_193, "V\xe4rskendus on l\xf5petatud", _s23_38, "Palun sisesta oma e-maili aadress", _s26_32, "Sisesta oma parool", _s21_77, "Sisesta oma URL", _s26_34, "Sisesta Toote kood", "ascending", "Kasvav", "descending", "Kahanev", "save", "Salvesta", _s17_115, "Ilmnes viga", "paid_to_date", "Tasutud", "balance_due", "Kokku tasuda", "balance", "Saldo", "overview", "\xdclevaade", "details", "\xdcksikasjad", "phone", "Telefon", "website", "Kodulehek\xfclg", "vat_number", "KMKR Number", "id_number", "Registrikood", "create", "Loo", _s19_59, "Kopeeritud :value l\xf5ikelauale", "error", "Viga", _s16_195, "Ei saanud k\xe4ivitada", "contacts", "Kontaktid", "additional", "Lisaks", "first_name", "Eesnimi", "last_name", "Perekonnanimi", "add_contact", "Lisa kontakt", "are_you_sure", "Oled kindel?", "cancel", "Katkesta", "ok", "Ok", "remove", "Eemalda", _s16_197, "E-post on kehtetu", "product", "Toode", "products", "Tooted", "new_product", "Uus Toode", "created_product", "Toote loomine \xf5nnestus", "updated_product", "Toote v\xe4rskendamine \xf5nnestus", _s16_199, "Toote arhiveerimine \xf5nnestus", "deleted_product", "Toode edukalt kustutatud", _s16_200, "Toode edukalt taastatud", _s17_117, ":count tooted edukalt arhiveeritud", _s16_201, ":count toodet edukalt kustutatud", _s17_118, ":value toodet edukalt taastatud", "product_key", "Toode", "notes", "M\xe4rkmed", "cost", "Hind", "client", "Klient", "clients", "Kliendid", "new_client", "Uus Klient", "created_client", "Klient edukalt loodud", "updated_client", "Kliendi v\xe4rskendamine \xf5nnestus", "archived_client", "Kliendi arhiivimine \xf5nnestus", _s16_202, ":count klienti on edukalt arhiveeritud", "deleted_client", "Kliendi kustutamine \xf5nnestus", "deleted_clients", ":count klienti on edukalt kustutatud", "restored_client", "Kliendi taastamine \xf5nnestus", _s16_203, ":value klienti edukalt taastatud", "address1", "T\xe4nav", "address2", "Maja/Korter", "city", "Linn", "state", "Maakond", "postal_code", "Sihtnumber", "country", "Riik", "invoice", "Arve", "invoices", "Arved", "new_invoice", "Uus Arve", "created_invoice", "Arve edukalt loodud", "updated_invoice", "Arve edukalt uuendatud", _s16_204, "Arve edukalt arhiveeritud", "deleted_invoice", "Arve edukalt kustutatud", _s16_205, "Arve edukalt taastatud", _s17_119, ":count arvet edukalt arhiveeritud", _s16_206, ":count arvet edukalt kustutatud", _s17_120, ":value arvet edukalt taastatud", "emailed_invoice", "Arve edukalt saadetud", "emailed_payment", _s28_58, "amount", "Summa", "invoice_number", "Arve Number", "invoice_date", "Arve Kuup\xe4ev", "discount", "Allahindlus", "po_number", "PO Number", "terms", "Tingimused", "public_notes", "Avalikud M\xe4rkmed", "private_notes", "Privaat M\xe4rkmed", "frequency", "Sagedus", "start_date", "Alguskuup\xe4ev", "end_date", "L\xf5ppkuup\xe4ev", "quote_number", "Pakkumuse Number", "quote_date", "Pakkumuse Kuup\xe4ev", "valid_until", "Kehtib Kuni", "items", "\xdcksused", "partial_deposit", "Osaline/tagatis", "description", "Kirjeldus", "unit_cost", "\xdchiku Hind", "quantity", "Kogus", "add_item", "Lisa \xfcksus", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Kogu summa", "pdf", "PDF", "due_date", "Makset\xe4htaeg", _s16_207, _s16_208, "status", "Staatus", _s17_121, "Arve staatus", "quote_status", "Pakkumise olek", _s22_56, "\xdcksuse lisamiseks kl\xf5psake +", _s22_58, "Aja lisamiseks kl\xf5psake +", "count_selected", ":count selected", "total", "Kokku", "percent", "Protsent", "edit", "Muuda", "dismiss", "Dismiss", _s20_70, "Palun valige kuup\xe4ev", _s22_59, "Palun valige klient", _s24_48, "Palun valige arve", "task_rate", "\xdclesande M\xe4\xe4r", "settings", "Seaded", "language", "Keel", "currency", "Valuuta", "created_at", "Loomise kuup\xe4ev", "created_on", "Loodud", "updated_at", "Uuendatud", "tax", "Maks", _s30_17, "Palun sisestage arve number", _s27_49, "Palun sisestage hinnapakkumise number", "past_due", "\xdcle T\xe4htaja", "draft", "Mustand", "sent", "Saadetud", "viewed", "Vaadatud", "approved", "Kinnitatud", "partial", "Osaline/tagatisraha", "paid", "Makstud", "mark_sent", "M\xe4rgi saadetuks", _s22_61, "Arve m\xe4rgiti edukalt saadetuks", _s22_62, "Arve m\xe4rgiti saadetuks", _s23_40, _s23_50, _s23_41, _s23_50, "done", "Valmis", _s37_18, "Sisestage kliendi v\xf5i kontaktisiku nimi", "dark_mode", "Tume Re\u017eiim", _s27_51, "Muudatuse rakendamiseks taask\xe4ivitage rakendus", "refresh_data", "V\xe4rskenda andmeid", "blank_contact", "T\xfchi kontakt", "activity", "Tegevus", _s16_209, "Kirjeid ei leitud", "clone", "Klooni", "loading", "Laen", "industry", "T\xf6\xf6stus", "size", "Suurus", "payment_terms", "Maksetingimused", "payment_date", "Makse kuup\xe4ev", "payment_status", "Makse staatus", _s16_211, "Ootel", _s16_212, "T\xfchistatud", _s16_213, "Eba\xf5nnestunud", _s16_214, "L\xf5petatud", _s16_215, _s20_92, _s16_216, "Tagastatud", _s17_122, "Rakendamata", _s17_123, _s19_23, "net", "Net", "client_portal", "Kliendi Portaal", "show_tasks", "N\xe4ita \xfclesandeid", "email_reminders", "Meili meeldetuletused", "enabled", "Lubatud", "recipients", "Saajad", "initial_email", "Esmane E-kiri", "first_reminder", "Esimene Meeldetuletus", "second_reminder", "Teine Meeldetuletus", "third_reminder", "Kolmas Meeldetuletus", "reminder1", "Esimene meeldetuletus", "reminder2", "Teine meeldetuletus", "reminder3", "Kolmas meeldetuletus", "template", "Mall", "send", "Saada", "subject", "Teema", "body", "Sisu", "send_email", "Saada E-kiri", "email_receipt", "Saada kliendile maksekviitung", "auto_billing", "Automaatne arveldamine", "button", "Nupp", "preview", "Eelvaade", "customize", "Kohanda", "history", "Ajalugu", "payment", "Makse", "payments", "Maksed", "refunded", "Tagastatud", "payment_type", "Makse t\xfc\xfcp", _s21_79, "Tehingu Viide", "enter_payment", "Sisesta Makse", "new_payment", "Sisesta Makse", "created_payment", "Makse loomine \xf5nnestus", "updated_payment", "Makse v\xe4rskendamine \xf5nnestus", _s16_217, "Makse arhiivimine \xf5nnestus", "deleted_payment", "Makse kustutamine \xf5nnestus", _s16_218, "Makse taastamine \xf5nnestus", _s17_124, ":count makset on edukalt arhiveeritud", _s16_219, ":count makset on edukalt kustutatud", _s17_125, ":value makset edukalt taastatud", "quote", "Pakkumus", "quotes", "Pakkumused", "new_quote", "Uus Pakkumus", "created_quote", "Hinnapakkumise loomine \xf5nnestus", "updated_quote", "Hinnapakkumine edukalt v\xe4rskendatud", "archived_quote", "Hinnapakkumine edukalt arhiivitud", "deleted_quote", "Hinnapakkmuise kustutamine \xf5nnestus", "restored_quote", "Hinnapakkumise taastamine \xf5nnestus", "archived_quotes", ":count hinnapakkumisi on edukalt arhiveeritud", "deleted_quotes", ":count hinnapakkumisi on edukalt kustutatud", "restored_quotes", ":value hinnapakkumist edukalt taastatud", "expense", "Kulu", "expenses", "Kulud", "vendor", "Tarnija", "vendors", "Tarnijad", "task", "\xdclesanne", "tasks", "\xdclesanded", "project", "Projekt", "projects", "Projektid", "activity_1", ":user l\xf5i kliendi :client", "activity_2", ":user arhiveeris kliendi :client", "activity_3", ":user kustutas kliendi :client", "activity_4", ":user l\xf5i arve :invoice", "activity_5", ":user uuendas arvet :invoice", "activity_6", ":user saatis arve :invoice e-postiga :client :contact", "activity_7", ":contact on vaadatud arvet :invoice :client", "activity_8", ":user arhiveeris arve :invoice", "activity_9", ":user kustutas arve :invoice", "activity_10", _s85_0, "activity_11", ":user uuendas makset :payment", "activity_12", ":user arhiveeris makse :payment", "activity_13", ":user kustutas makse :payment", "activity_14", ":user sisestas :credit", "activity_15", ":user v\xe4rskendas :credit ettemakset", "activity_16", ":user arhiveeris :credit ettemakse", "activity_17", ":user kustutas :credit ettemakse", "activity_18", ":user l\xf5i hinnapkkumise :quote", "activity_19", ":user uuendas hinnapakkumist :quote", "activity_20", ":user saatis meiliga hinnapakkumise :quote :client :contact", "activity_21", _s37_27, "activity_22", ":user arhiveeris hinnapakkumise :quote", "activity_23", ":user kustutas hinnapakkumise :quote", "activity_24", ":user taastas hinnapakkumise :quote", "activity_25", ":user taastas arve :invoice", "activity_26", ":user taastas kliendi :client", "activity_27", ":user taastas makse :payment", "activity_28", ":user taastas ettemakse :credit", "activity_29", ":contact kinnitas hinnapakkumise :quote :client", "activity_30", ":user l\xf5i tarnija :vendor", "activity_31", ":user arhiveeris tarnija :vendor", "activity_32", ":user kustutas tarnija :vendor", "activity_33", ":user taastas tarnija :vendor", "activity_34", ":user l\xf5i kulu :expense", "activity_35", ":user arhiveeris kulu :expense", "activity_36", ":user kustutas kulu :expense", "activity_37", ":user taastas kulu :expense", "activity_39", ":user t\xfchistas :payment_amount makse :payment", "activity_40", _s64_, "activity_41", ":payment_amount makse (:payment) eba\xf5nnestus", "activity_42", ":user l\xf5i \xfclesande :task", "activity_43", ":user uuendas \xfclesannet :task", "activity_44", ":user arhiveeris \xfclesande :task", "activity_45", ":user kustutas \xfclesande :task", "activity_46", ":user taastas \xfclesande :task", "activity_47", ":user uuendas kulu :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user taasavas pileti :ticket", "activity_55", ":contact vastas piletile :ticket", "activity_56", ":user vaatas piletit :ticket", "activity_57", "S\xfcsteem ei suutnud arvet :invoice meiliga saata", "activity_58", _s28_68, "activity_59", _s28_68, "activity_60", _s37_27, "activity_61", ":user uuendas klienti :client", "activity_62", ":user uuendas tarnijat :vendor", "activity_63", ":user saatis e-kirjaga esimese meeldetuletuse arve kohta :invoice aadressile :contact", "activity_64", ":user saatis e-kirjaga teise meeldetuletuse arve kohta :invoice aadressile :contact", "activity_65", ":kasutaja saatis e-kirjaga kolmanda meeldetuletuse arve kohta :arve aadressile :kontakt", "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\xdchekordne parool", "emailed_quote", "Hinnapakkumise saatmine \xf5nnestus", "emailed_credit", "Ettemaks saadeti meili teel", _s20_72, "Hinnapakkumine m\xe4rgiti saadetuks", _s21_81, "Ettemaks m\xe4rgiti edukalt saadetuks", "expired", "Kehtetu", "all", "K\xf5ik", "select", "Vali", _s22_63, _s22_64, "custom_value1", _s18_125, "custom_value2", _s18_125, "custom_value3", "Kohandatud v\xe4\xe4rtus 3", "custom_value4", "Kohandatud v\xe4\xe4rtus 4", _s18_91, "Kohandatud e-posti stiil", _s24_53, _s24_54, _s29_36, "Kohandatud tasumata arve teade", _s27_56, "Kohandatud tasutud arve teade", _s31_18, "Kohandatud kinnitamata hinnapakkumise teade", "lock_invoices", "Lock Invoices", "translations", "T\xf5lked", _s19_60, "\xdclesande numbri muster", _s19_62, "\xdclesande numbri loendur", _s22_65, "Kulude numbri muster", _s22_67, "Kulude numbri loendur", _s21_82, "Tarnija numbri muster", _s21_84, "Tarnija numbri loendur", _s21_86, "Pileti numbri muster", _s21_88, "Pileti numbri loendur", _s22_69, "Makse numbri muster", _s22_71, "Makse numbri loendur", _s22_73, "Arve numbri muster", _s22_75, "Arve Numbri Loendur", _s20_73, "Hinnapakkumise numbri muster", _s20_75, "Hinnapakkumise numbriloendur", _s21_90, _s23_51, _s21_92, _s24_66, _s21_94, _s23_51, _s21_95, _s24_66, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, "Vaikimisi maksunimi 1", _s18_97, "Vaikimisi maksum\xe4\xe4r 1", _s18_99, "Vaikimisi maksunimi 2", _s18_101, "Vaikimisi maksum\xe4\xe4r 2", _s18_103, "Vaikimisi maksunimi 3", _s18_105, "Vaikimisi maksum\xe4\xe4r 3", _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Kuva tabel", "show_list", "N\xe4ita loendit", "client_city", "Kliendi linn", "client_state", "Kliendi maakond", "client_country", "Kliendi riik", _s16_220, "Klient on aktiivne", "client_balance", "Kliendi saldo", "client_address1", "Kliendi t\xe4nav", "client_address2", "Kliendi korter/sviit", "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "T\xfc\xfcp", "invoice_amount", "Arve summa", _s16_224, "T\xe4htaeg", "tax_rate1", "Maksum\xe4\xe4r 1", "tax_rate2", "Maksum\xe4\xe4r 2", "tax_rate3", "Maksum\xe4\xe4r 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Kohandatud maksud 1", "custom_taxes2", "Kohandatud maksud 2", "custom_taxes3", "Kohandatud maksud 3", "custom_taxes4", "Kohandatud maksud 4", _s17_128, _s21_112, _s17_129, _s21_113, _s17_130, _s21_114, _s17_131, _s21_115, "is_deleted", "On kustutatud", "vendor_city", "Tarnija linn", "vendor_state", "Tarnija maakond", "vendor_country", "Tarnija riik", "is_approved", "On heaks kiidetud", "tax_name", "Maksu Nimi", "tax_amount", "Maksud kokku", "tax_paid", "Makstud maksud", "payment_amount", "Makse summa", "age", "Vanus", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Pank", _s19_66, "Kulukategooria ID", _s16_225, "Kulu kategooria", _s19_68, "Arve valuuta ID", "tax_name1", "Maksu nimi 1", "tax_name2", "Maksu nimi 2", "tax_name3", "Maksu nimi 3", "transaction_id", "Tehingu ID", _s18_107, "Oleku v\xe4rviteema", _s16_226, "Laadige v\xe4rviteema"], t1, t1), "fi", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Maksujen asetukset", "default", "oletus", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Tilanne", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Lis\xe4\xe4 maksunv\xe4litt\xe4j\xe4", _s24_6, _s77_, "left", "Vasemmalla", "right", "Oikealla", "center", "Keskitetty", "page_numbering", "Sivunumerointi", _s24_7, "Sivunumeroinnin tasaus", _s31_1, "Lasku on l\xe4hetetty", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Laskun tuotteet", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Tuonnin muoto", "export_format", "Viennin muoto", "export_type", "Viennin tyyppi", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Lis\xe4\xe4 maa", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", "Kirjaudu olemassaolevalle tilille", "add_to_invoice", "Lis\xe4\xe4 laskulle :invoice", _s17_6, "Laskuja ei l\xf6ydy", "week", "Viikko", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Laskun valuutta", "range", "Alue", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Luo projekti", "update_project", "P\xe4ivit\xe4 projekti", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "The palkkio a :amount lasku would be :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Hyv\xe4ksy", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "onnistuneesti purged asiakas", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Lasku maksettu", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normaali", "large", "Suuri", "extra_large", "Eritt\xe4in suuri", _s16_15, "N\xe4yt\xe4 PDF-esikatselu", _s21_14, "N\xe4yt\xe4 PDF-esikatselu laskujen k\xe4sittelyn aikana", "print_pdf", "Tulosta PDF", "remind_me", "Muistuta minua", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Piilota esikatselu", "edit_record", "Muokkaa tietuetta", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Aseta salasana", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Katkaise yhteys", "add_to_invoices", "Lis\xe4\xe4 laskuille", "acss", "Esihyv\xe4ksy debit korttimaksut", "becs", _s17_132, "bulk_download", "Lataa", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, "Asiakkaan postinumero", _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Rekister\xf6inti", _s27_7, _s50_4, "view_expense", "N\xe4yt\xe4 kulu # :kulu", "view_statement", "N\xe4yt\xe4 Tiliote", "sepa", "SEPA-maksu", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "J\xe4rjestelm\xe4", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "S\xe4hk\xf6postilasku", _s16_230, "S\xe4hk\xf6postitarjous", _s17_134, "Email Credit", "from_name", "From nimi", _s16_21, "Kopioi kuluksi", _s17_13, "toistuva kulu", _s18_13, "toistuva kulut", _s21_16, "uusi toistuva kulu", _s22_24, "muokkaa toistuva kulu", _s25_2, "onnistuneesti luotu toistuva kulu", _s25_3, "onnistuneesti p\xe4ivitetty toistuva kulu", _s26_2, "onnistuneesti arkistoitu toistuva kulu", _s25_4, _s32_15, _s25_5, _s38_2, _s26_3, "onnistuneesti palautettu toistuva kulu", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Laskutettu", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, "Laskun y\xe4tunnisteen taustav\xe4ri", _s25_10, "Laskun yl\xe4tunnisteen tekstiv\xe4ri", "net_subtotal", "Netto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Muuta s\xe4hk\xf6postiosoitetta", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Laskuttamatta", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Tuo tietoja", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Lasku luotu", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "viime p\xe4ivitetty", "invoice_item", "Laskun tuote", "quote_item", "Quote Item", _s18_21, "kontakti ensimm\xe4inen nimi", _s17_17, "kontakti viime nimi", "order", "Order", "unassigned", "Kohdistamaton", "partial_value", "T\xe4ytyy olla suurempi kuin nolla ja v\xe4hemm\xe4n kuin kaikki yhteens\xe4", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Ota k\xe4ytt\xf6\xf6n", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Aseta alidomain tai n\xe4yt\xe4 lasku omalla verkkosivullasi.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, "Laskun maksuehdot", _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Tilaus", "subscriptions", "Subscriptions", _s16_39, "Uusi tilaus", _s17_23, "muokkaa tilaus", _s20_23, "onnistuneesti luotu tilaus", _s20_24, "onnistuneesti p\xe4ivitetty tilaus", _s21_28, "onnistuneesti arkistoitu tilaus", _s20_25, _s30_36, _s20_26, _s30_36, _s21_29, "Tilaus palautettu onnistuneesti", _s19_17, "Etsi 1 tilaus", _s20_27, "Etsi :count tilausta", _s26_6, _s26_7, "connect_gmail", "Yhdist\xe4 Gmailiin", _s16_41, "Katkaise yhteys Gmailiin", "connected_gmail", _s28_6, _s18_29, "Gmail katkaistu onnistuneesti", _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, "Aktivoi yritys", _s21_31, _s51_3, _s27_14, "Tapahtui virhe, yrit\xe4 uudelleen", _s27_15, "Aseta ensin salasana", _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, "Valitse maa", "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Roskaposti", "view_docs", "Katso asiakirjoja", _s32_4, _s72_, "send_sms", "L\xe4het\xe4 tekstiviesti", "sms_code", "SMS Code", _s21_32, "Scan bar koodi a :link compatible app.", _s18_30, "Kaksivaiheinen tunnistautuminen otettu onnistuneesti k\xe4ytt\xf6\xf6n", "connect_google", "Yhdist\xe4 Googleen", _s17_25, "Katkaise yhteys Googleen", _s17_27, "Kaksivaiheinen tunnistautuminen", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count tuntia", "count_day", "1 p\xe4iv\xe4", "count_days", ":count p\xe4iv\xe4\xe4", _s19_20, _s19_21, _s17_28, "Turvallisuusasetukset", "resend_email", "Uudelleenl\xe4het\xe4 s\xe4hk\xf6posti", _s26_8, "Vahvista s\xe4hk\xf6postiosoitteesi", _s16_51, "Hyvitetty maksu", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "viime Quarter", "to_update_run", "To update run", _s18_33, "Muuta laskuksi", _s16_52, _s16_53, "invoice_project", "Lasku projekti", "invoice_task", "Laskuta teht\xe4v\xe4", "invoice_expense", "Lasku kulu", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Tallenna ja l\xe4het\xe4 s\xe4hk\xf6postilla", _s16_56, "Tuetut tapahtumat", _s16_58, "Converted m\xe4\xe4r\xe4", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "oletus Documents", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Piilota", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Sarake", "sample", "Otos", "map_to", "Map To", "import", "Tuo", _s25_15, _s29_6, "select_file", "yst\xe4v\xe4llisesti valitsee tiedosto", _s16_60, _s16_61, "csv_file", "CSV tiedosto", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Kirjanpito", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Lis\xe4\xe4 mukautettu", "payment_tax", "Payment Tax", "unpaid", "Maksamaton", "white_label", "White Label", "delivery_note", "Delivery Huom", _s24_23, "L\xe4hetetut laskut on lukittu", _s24_25, "Maksetut laskut on lukittu", "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Maksettava", "quote_total", "Tarjouksen loppusumma", "credit_total", "luotto yhteens\xe4", _s23_14, "Laskun loppusumma", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Teht\xe4v\xe4numero", "project_number", "Projektinumero", "project_name", "Project Name", "warning", "Varoitus", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Asiakkaan nimi", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, "Onnistuneesti p\xe4ivitetty teht\xe4v\xe4n tila", _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, "N\xe4yt\xe4 teht\xe4v\xe4taulukko", _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, "Lis\xe4\xe4 aikatieto laskun tuoteriville", _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Teht\xe4v\xe4n asetukset", _s20_40, _s20_41, _s18_40, "kulu kategoriat", _s20_42, "uusi kulu kategoria", _s21_40, _s21_41, _s24_28, "onnistuneesti luotu kulukategoria", _s24_29, "onnistuneesti p\xe4ivitetty kulukategoria", _s25_19, "onnistuneesti arkistoitu kulu kategoria", _s24_30, "onnistuneesti poistettu category", _s24_31, _s37_7, _s25_20, "onnistuneesti palautettu kulukategoria", _s27_21, "onnistuneesti arkistoitu :count kulu kategoria", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "Pit\xe4isi laskuttaa", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Er\xe4p\xe4iv\xe4", "paused", "Paused", "mark_active", "Merkitse aktiiviseksi", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "P\xe4\xe4ttym\xe4t\xf6n", "next_send_date", "Next Send Date", _s16_68, "J\xe4ljell\xe4 olevia kertoja", _s17_47, "Toistuva lasku", _s18_45, "Toistuvat laskut", _s21_47, "Uusi toistuva lasku", _s22_37, "muokkaa toistuva Lasku", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Toistuva lasku arkistoitu onnistuneesti", _s25_28, "Toistuva lasku poistettu onnistuneesti", _s25_29, _s38_11, _s26_12, "Toistuva lasku palautettu onnistuneesti", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "S\xe4hk\xf6posti l\xe4hetetty", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "N\xe4yt\xe4 Portaali", "copy_link", "Copy Link", "token_billing", "Tallenna korttitiedot", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "asiakas numero", "auto_convert", "Auto Convert", "company_name", "yritys nimi", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "Laskut l\xe4hetettiin onnistuneesti s\xe4hk\xf6postilla.", "emailed_quotes", "Tarjoukset l\xe4hetettiin onnistuneesti s\xe4hk\xf6postilla.", "emailed_credits", _s28_57, "gateway", "Maksunv\xe4litt\xe4j\xe4", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Tuntia", "statement", "tiliote", "taxes", "Verot", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Hae hyvityst\xe4", "apply", "K\xe4yt\xe4", "unapplied", "Unapplied", "select_label", "Valitse kentt\xe4", "custom_labels", _s17_154, "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Vastaanottaja", "health_check", "Health Check", "payment_type_id", "Maksun tyyppi", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, "Valitut laskut", _s17_53, _s17_54, "selected_quotes", "Valitut tarjoukset", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Er\xe4\xe4ntyv\xe4t laskut", _s17_59, "My\xf6h\xe4ss\xe4 olevat laskut", "recent_payments", "Viimeisimm\xe4t maksut", "upcoming_quotes", "Tulevat tarjoukset", "expired_quotes", "Vanhentuneet tarjoukset", "create_client", "luo asiakas", "create_invoice", "Luo lasku", "create_quote", "Luo tarjous", "create_payment", "Create Payment", "create_vendor", "Luo kauppias", "update_quote", "P\xe4ivit\xe4 tarjous", "delete_quote", "Poista tarjous", "update_invoice", "P\xe4ivit\xe4 lasku", "delete_invoice", "Poista lasku", "update_client", "Update Client", "delete_client", "Poista asiakas", "delete_payment", "Poista maksu", "update_vendor", "P\xe4ivit\xe4 kauppias", "delete_vendor", "Poista kauppias", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Poista kulu", "create_task", "Luo teht\xe4v\xe4", "update_task", "Update Task", "delete_task", "Poista teht\xe4v\xe4", "approve_quote", "Hyv\xe4ksy tarjous", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Ilmainen", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API-salasanat", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokenit", "new_token", "New Token", "edit_token", "Muokkaa tokenia", "created_token", "Token luotu onnistuneesti", "updated_token", "Token p\xe4ivitetty onnistuneesti", "archived_token", "Token arkistoitu onnistuneesti", "deleted_token", "Token poistettu onnistuneesti", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, "Kustomoi ja esikatsele", "email_invoice", "L\xe4het\xe4 lasku s\xe4hk\xf6postitse", "email_quote", "L\xe4het\xe4 tarjous s\xe4hk\xf6postitse", "email_credit", "Email Credit", "email_payment", "Email maksu", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "Katso PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Yhteyshenkil\xf6n nimi", "use_default", "K\xe4yt\xe4 oletusarvoa", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Maksuehdot", _s16_81, "Uudet maksuehdot", _s17_65, "Muokkaa maksuaikaa", _s20_51, "onnistuneesti luotu maksu ehto", _s20_52, "onnistuneesti p\xe4ivitetty maksu ehto", _s21_50, "onnistuneesti arkistoitu maksu ehto", _s20_53, _s35_26, _s20_54, _s35_26, _s21_51, "Maksuehto palautettiin onnistuneesti", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "Kirjaudu s\xe4hk\xf6postiosoitteella", "change", "Vaihda", _s23_21, "Vaihda mobiilin\xe4kym\xe4\xe4n?", _s24_37, "Vaihda ty\xf6p\xf6yt\xe4n\xe4kym\xe4\xe4n?", "send_from_gmail", "L\xe4het\xe4 Gmailista", "reversed", "Reversed", "cancelled", "Peruutettu", "credit_amount", "Luoton m\xe4\xe4r\xe4", "quote_amount", "Tarjouksen summa", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Piilota valikko", "show_menu", "N\xe4yt\xe4 valikko", _s18_51, "Osittain hyvitetty", _s16_83, "Etsi asiakirjoista", "search_designs", "Search Designs", "search_invoices", "Etsi laskuja", "search_clients", "Etsi asiakkaita", "search_products", "Etsi tuotteita", "search_quotes", "Hae tarjouksia", "search_credits", "Etsi luotoista", "search_vendors", "Hae kauppiaita", "search_users", "Etsi k\xe4ytt\xe4ji\xe4", _s16_84, "Etsi verokanta", "search_tasks", "Etsi teht\xe4vi\xe4", "search_settings", "Etsi asetuksia", "search_projects", "Etsi projekteja", "search_expenses", "Etsi kuluja", "search_payments", "Etsi maksuja", "search_groups", "Etsi ryhmi\xe4", "search_company", "Etsi yritys", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", "Etsi 1 lasku", "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Hae 1 tarjous", "search_credit", "Search 1 Credit", "search_vendor", "Hae 1 kauppias", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Hyvitysmaksu", _s17_69, "Lasku on peruutettu onnistuneesti", _s18_53, "Laskut on peruutettu onnistuneesti", _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full nimi", _s17_71, "Kaupunki/Alue/Postitoimipaikka", _s17_73, "Postal/kaupunki/State", "custom1", "ensimm\xe4inen muokattu", "custom2", "toinen muokattu", "custom3", "Kolmas mukautettu", "custom4", "Nelj\xe4s mukautettu", "optional", "Valinnainen", "license", "Lisenssi", "purge_data", "Purge Data", _s16_91, "onnistuneesti purged yritys data", _s18_54, "Warning: t\xe4m\xe4 will pysyv\xe4sti erase sinun data, there is no undo.", "invoice_balance", "Laskun tila", "age_group_0", "0 - 30 p\xe4iv\xe4\xe4", "age_group_30", "30 - 60 p\xe4iv\xe4\xe4", "age_group_60", "60 - 90 p\xe4iv\xe4\xe4", "age_group_90", "90 - 120 p\xe4iv\xe4\xe4", "age_group_120", "120+ p\xe4iv\xe4\xe4", "refresh", "Refresh", "saved_design", "Muotoilu tallennettiin onnistuneesti", "client_details", "Asiakkaan tiedot", "company_address", "Yrityksen osoite", "invoice_details", "Laskun tiedot", "quote_details", "Tarjouksen tiedot", "credit_details", "Hyvityksen tiedot", "product_columns", "Tuotesarake", "task_columns", "Teht\xe4v\xe4sarake", "add_field", "Lis\xe4\xe4 kentt\xe4", "all_events", "Kaikki tapahtumat", "permissions", "Oikeudet", "none", "None", "owned", "Omistettu", "payment_success", "Maksu onnistui", "payment_failure", "Maksu ep\xe4onnistui", "invoice_sent", ":count lasku l\xe4hetetty", "quote_sent", "Tarjous l\xe4hetetty", "credit_sent", "Hyvitys l\xe4hetettiin", "invoice_viewed", "Lasku katsottiin", "quote_viewed", "Tarjous luettu", "credit_viewed", "Hyvitys katsottiin", "quote_approved", "Tarjous hyv\xe4ksytty", _s25_32, "Vastaanota kaikki ilmoitukset", _s16_92, "Osta lisenssi", "apply_license", "K\xe4yt\xe4 lisenssi", "cancel_account", "Poista tili", _s22_44, "Varoitus: T\xe4m\xe4 poistaa tilisi pysyv\xe4sti. Tietoja ei pysty palauttamaan.", "delete_company", "Poista yritys", _s22_45, "Warning: t\xe4m\xe4 will pysyv\xe4sti poista sinun yritys, there is no undo.", "enabled_modules", "Enabled Modules", "converted_quote", "Tarjous on onnistuneesti muunnettu", "credit_design", "Credit Design", "includes", "Includes", "header", "Yl\xe4tunniste", "load_design", "Load malli", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Ehdotukset", "tickets", "Tickets", _s16_96, "Toistuvat tarjoukset", "recurring_tasks", "Recurring Tasks", _s18_55, "K\xe4ytt\xe4j\xe4tilin hallinta", "credit_date", "Luoton p\xe4iv\xe4m\xe4\xe4r\xe4", "credit", "Luotto", "credits", "Luotot", "new_credit", "Uusi luotto", "edit_credit", "Muokkaa hyvityst\xe4", "created_credit", "Luottolasku luotiin onnistuneesti", "updated_credit", "Hyvitys p\xe4ivitettiin onnistuneesti", "archived_credit", "Luottolasku arkistoitiin onnistuneesti", "deleted_credit", "Luottolasku poistettiin onnistuneesti", "removed_credit", _s27_34, "restored_credit", "Luotto palautettu onnistuneesti", _s16_98, ":count hyvitys(t\xe4) arkistoitiin onnistuneesti", "deleted_credits", ":count luotto(a) poistettu onnistuneesti", _s16_99, "Palautettiin onnistuneesti :value luotolle", "current_version", "Nykyinen versio", "latest_version", "Latest Version", "update_now", "P\xe4ivit\xe4 nyt", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Lue lis\xe4\xe4", "integrations", "Integraatiot", "tracking_id", "Seurantatunnus", _s17_75, _s17_76, "credit_footer", "Luotto alatunniste", "credit_terms", "Luoton ehdot", "new_company", "Uusi yritys", "added_company", "Yritys lis\xe4ttiin onnistuneesti", "company1", "Mukautettu Yritys 1", "company2", "Mukautettu Yritys 2", "company3", "Mukautettu Yritys 3", "company4", "Mukautettu Yritys 4", "product1", "Mukautettu Tuote 1", "product2", "Mukautettu Tuote 2", "product3", "Mukautettu Tuote 3", "product4", "Mukautettu Tuote 4", "client1", "Mukautettu Asiakas 1", "client2", "Mukautettu Asiakas 2", "client3", "Mukautettu Asiakas 3", "client4", "Mukautettu Asiakas 4", "contact1", "Mukautettu Yhteystieto 1", "contact2", "Mukautettu Yhteystieto 2", "contact3", "Mukautettu Yhteystieto 3", "contact4", "Mukautettu Yhteystieto 4", "task1", "Mukautettu Teht\xe4v\xe4 1", "task2", "Mukautettu Teht\xe4v\xe4 2", "task3", "Mukautettu Teht\xe4v\xe4 3", "task4", "Mukautettu Teht\xe4v\xe4 4", "project1", "Mukautettu Projekti 1", "project2", "Mukautettu Projekti 2", "project3", "Mukautettu Projekti 3", "project4", "Mukautettu Projekti 4", "expense1", "Mukautettu Kulu 1", "expense2", "Mukautettu Kulu 2", "expense3", "Mukautettu Kulu 3", "expense4", "Mukautettu Kulu 4", "vendor1", "Mukautettu Myyj\xe4 1", "vendor2", "Mukautettu Myyj\xe4 2", "vendor3", "Mukautettu Myyj\xe4 3", "vendor4", "Mukautettu Myyj\xe4 4", "invoice1", "Mukautettu Lasku 1", "invoice2", "Mukautettu Lasku 2", "invoice3", "Mukautettu Lasku 3", "invoice4", "Mukautettu Lasku 4", "payment1", "Mukautettu Maksu 1", "payment2", "Mukautettu Maksu 2", "payment3", "Mukautettu Maksu 3", "payment4", "Mukautettu Maksu 4", "surcharge1", _s22_84, "surcharge2", _s22_85, "surcharge3", _s22_86, "surcharge4", _s22_87, "group1", "Mukautettu Ryhm\xe4 1", "group2", "Mukautettu Ryhm\xe4 2", "group3", "Mukautettu Ryhm\xe4 3", "group4", "Mukautettu Ryhm\xe4 4", "reset", "Nollaa", "number", "Numero", "export", "Vienti", "chart", "Kaavio", "count", "Luku", "totals", "Yhteens\xe4", "blank", "Tyhj\xe4", "day", "P\xe4iv\xe4", "month", "Kuukausi", "year", "Vuosi", "subgroup", "Subgroup", "is_active", "Aktiivinen", "group_by", "Niputa", "credit_balance", "Luoton saldo", _s18_61, "Kontaktin viimeinen kirjautuminen", _s17_77, "Kontaktin koko nimi", "contact_phone", "kontakti puhelin", _s21_53, "Kontakti Mukautettu Arvo 1", _s21_54, "Kontakti Mukautettu Arvo 2", _s21_55, "Kontakti Mukautettu Arvo 3", _s21_56, "Kontakti Mukautettu Arvo 4", _s17_79, "Toimitus: Katu", _s17_80, "Toimitus: Asunto/huoneisto", "shipping_city", "Toimitus: Kaupunki", "shipping_state", "Toimitus: Maakunta", _s20_55, "Toimitus: Postinumero", _s16_130, "Toimitus: Maa", _s16_132, "Laskutus: Katu", _s16_133, "Laskutus: Asunto/huoneisto", "billing_city", "Laskutus: Kaupunki", "billing_state", "Laskutus: Maakunta", _s19_36, "Laskutus: Postinumero", "billing_country", "Laskutus: Maa", "client_id", "Asiakkaan tunniste", "assigned_to", "Assigned", "created_by", "luotu by :name", "assigned_to_id", "Liitetty tunnukseen(Id)", "created_by_id", "Luonut (Id)", "add_column", "Lis\xe4\xe4 Sarake", "edit_columns", "Muokkaa Saraketta", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit ja Loss", "reports", "Raportit", "report", "Raportti", "add_company", "Lis\xe4\xe4 yritys", "unpaid_invoice", "Maksamatonl lasku", "paid_invoice", "Paid Lasku", _s16_134, "Hyv\xe4ksym\xe4t\xf6n tarjous", "help", "Ohje", "refund", "Hyvitys", "refund_date", "Maksunpalautusp\xe4iv\xe4", "filtered_by", "Filtered by", "contact_email", "S\xe4hk\xf6postiosoite", "multiselect", "Monivalinta", "entity_state", "Osavaltio", "verify_password", "Vahvista salasana", "applied", "Haettu", _s21_57, "Sis\xe4llyt\xe4 viimeiset virheet lokiin", _s30_8, "Olemme vastaanottaneet viestisi ja pyrimme vastaamaan siihen pikaisesti.", "message", "Viesti", "from", "L\xe4hett\xe4j\xe4", _s20_57, "N\xe4yt\xe4 tuotteen tiedot", _s25_34, "Sis\xe4llyt\xe4 lis\xe4tieto ja hinta tuotteen alasvetovalikkoon", _s20_59, "PDF sivun muokkaaja vaatii :version", _s18_64, "S\xe4\xe4d\xe4 kuluprosenttia", _s23_23, "Adjust percent tili palkkio", _s18_66, "Muokkaa asetuksia", "support_forum", "support forum", "about", "Tietoja", "documentation", "Dokumentaatio", "contact_us", "Ota meihin yhteytt\xe4", "subtotal", "V\xe4lisumma", "line_total", "Rivin summa", "item", "Tuote", "credit_email", "Credit Email", "iframe_url", "Verkkosivu", "domain_url", "Domain URL", _s21_58, "salasana on liian lyhyt", _s20_60, "Salasanan pit\xe4\xe4 sis\xe4lt\xe4\xe4 iso kirjain ja numero", _s19_38, "Asiakas portaalin teht\xe4v\xe4t", _s23_24, "Asiakas portaalin etusivu", _s20_61, "Aseta arvo", "deleted_logo", "Logo poistettiin onnistuneesti", "yes", "Kyll\xe4", "no", "Ei", "generate_number", "Luo numero", "when_saved", "Milloin tallennettu", "when_sent", "Milloin l\xe4hetetty", "select_company", "Valitse yritys", "float", "Kelluva", "collapse", "Pienenn\xe4", "show_or_hide", "N\xe4yt\xe4/piilota", "menu_sidebar", "Valikon sivupalkki", "history_sidebar", "Historia sivupalkki", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Ulkoasu", "view", "N\xe4yt\xe4", "module", "Moduuli", "first_custom", "Ensim. muokattu", "second_custom", "Toinen muokattu", "third_custom", "Kolmas muokattu", "show_cost", "N\xe4yt\xe4 kustannus", _s17_82, _s17_83, "show_cost_help", "N\xe4yt\xe4 tuotteen kulukentt\xe4 seurataksesi katetta", _s21_59, "N\xe4yt\xe4 tuotteen m\xe4\xe4r\xe4", _s26_21, "N\xe4yt\xe4 tuotteen m\xe4\xe4r\xe4kentt\xe4, muutoin oletus 1", _s21_61, "N\xe4yt\xe4 Laskun m\xe4\xe4r\xe4t", _s26_22, "N\xe4yt\xe4 rivien m\xe4\xe4r\xe4kentt\xe4, muutoin oletus 1", _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, "Oletus m\xe4\xe4r\xe4", _s21_65, "Aseta rivim\xe4\xe4r\xe4 oletuksena 1", "one_tax_rate", "Ensimm\xe4inen veroluokka", "two_tax_rates", "Toinen veroluokka", "three_tax_rates", "Kolmas veroluokka", _s16_138, "Oletus veroluokka", "user", "K\xe4ytt\xe4j\xe4", "invoice_tax", "Laskun vero", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, "Laskun veroluokat", "item_tax_rates", "Item Tax Rates", _s18_68, "Valitse asiakas", "configure_rates", "M\xe4\xe4rit\xe4 kurssit", _s18_69, _s18_70, "tax_settings", "Veroasetukset", _s18_71, "Veroluokat", "accent_color", "Nouseva v\xe4ri", "switch", "Switch", _s19_40, "pilkku eroteltu lista", "options", "Valinnat", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Alasvetovalikko", "field_type", "Kent\xe4n tyyppi", _s27_35, "Salasanan palautuss\xe4hk\xf6posti on l\xe4hetetty.", "submit", "Submit", _s16_142, "Palauta salasana", "late_fees", "Viiv\xe4stysmaksut", "credit_number", "luotto numero", "payment_number", "maksu numero", "late_fee_amount", "Late palkkio m\xe4\xe4r\xe4", _s16_143, "Late palkkio Percent", "schedule", "Aikataulu", "before_due_date", "Ennen er\xe4p\xe4iv\xe4\xe4", "after_due_date", "Er\xe4p\xe4iv\xe4n j\xe4lkeen", _s18_73, "Laskun p\xe4iv\xe4yksen j\xe4lkeen", "days", "P\xe4iv\xe4\xe4", "invoice_email", "Laskus\xe4hk\xf6posti", "payment_email", "Maksus\xe4hk\xf6posti", "partial_payment", _s16_269, "payment_partial", _s16_269, _s21_66, "Osittaisen maksun s\xe4hk\xf6postiosoite", "quote_email", "Tarjouss\xe4hk\xf6posti", _s16_145, "Endless muistutus", _s16_147, _s16_148, "administrator", "Yll\xe4pit\xe4j\xe4", _s18_74, "Allow k\xe4ytt\xe4j\xe4 manage users, change asetus ja modify kaikki records", "user_management", "K\xe4ytt\xe4j\xe4nhallinta", "users", "K\xe4ytt\xe4j\xe4t", "new_user", "Uusi k\xe4ytt\xe4j\xe4", "edit_user", "Muokkaa k\xe4ytt\xe4j\xe4", "created_user", "Onnistuneesti luotu k\xe4ytt\xe4j\xe4", "updated_user", "K\xe4ytt\xe4j\xe4 on p\xe4ivitetty onnistuneesti", "archived_user", "K\xe4ytt\xe4j\xe4 arkistoitu onnistuneesti", "deleted_user", "K\xe4ytt\xe4j\xe4 on poistettu onnistuneesti", "removed_user", "Onnistuneesti poistettu k\xe4ytt\xe4j\xe4", "restored_user", "K\xe4ytt\xe4j\xe4 palautettu onnistuneesti", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Yleiset asetukset", "invoice_options", "Laskun valinnat", _s17_86, 'Piilota "Maksettu t\xe4h\xe4n asti"', _s22_52, 'N\xe4yt\xe4 "Maksettava p\xe4iv\xe4m\xe4\xe4r\xe4\xe4n menness\xe4" kentt\xe4 laskuillasi vain maksetuilla laskuilla.', _s23_26, "Embed Documents", _s28_20, "Sis\xe4llyt\xe4 liitetyt kuvat laskuun.", _s16_151, "n\xe4yt\xe4 Header on", _s16_152, "N\xe4yt\xe4 alatunniste", "first_page", "ensimm\xe4inen page", "all_pages", "All pages", "last_page", "viime page", "primary_font", "Ensisijainen kirjasin", "secondary_font", "toissijainen kirjasin", "primary_color", "P\xe4\xe4v\xe4ri", "secondary_color", "Apuv\xe4ri", "page_size", "Sivukoko", "font_size", "Fontin koko", "quote_design", "Tarjouksen muotoilu", "invoice_fields", "Laskun kent\xe4t", "product_fields", "Tuote kent\xe4t", "invoice_terms", "Laskun ehdot", "invoice_footer", "Laskun alatunniste", "quote_terms", "Tarjouksen ehdot", "quote_footer", "Tarjouksen alatunniste", _s18_75, "automaattinen Email", _s23_27, "automaattisesti s\xe4hk\xf6posti toistuva laskut when they on luotu.", _s18_76, "automaattinen Arkistoi", _s23_28, "Arkistoi tarjoukset automaattisesti kun ne on muunnettu laskuiksi.", _s18_77, "Automaattinen muunnos", _s23_29, "Muunna tarjous automaattisesti laskuksi, kun asiakas on hyv\xe4ksynyt tarjouksen.", _s17_88, "Workflow asetukset", "freq_daily", "p\xe4ivitt\xe4in", "freq_weekly", "viikoittain", "freq_two_weeks", "Kaksi viikkoa", "freq_four_weeks", "nelj\xe4 viikkoa", "freq_monthly", "Kuukausittain", "freq_two_months", "Kaksi kuukautta", _s17_90, "kolme kuukautta", _s16_153, "nelj\xe4 kuukautta", "freq_six_months", "Six kuukautta", "freq_annually", "Vuosittain", "freq_two_years", "Kaksi vuotta", _s16_154, "3 vuotta", "never", "Ei koskaan", "company", "yritys", _s17_91, _s17_92, "charge_taxes", "Veloita veroa", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, "toistuva etuliite", "number_padding", "numero Padding", "general", "General", "surcharge_field", "Surcharge kentt\xe4", "company_field", "yritys kentt\xe4", "company_value", "yritys Value", "credit_field", "luotto kentt\xe4", "invoice_field", "Lasku kentt\xe4", _s17_93, "Lasku Surcharge", "client_field", "asiakas kentt\xe4", "product_field", "Tuote kentt\xe4", "payment_field", "maksu kentt\xe4", "contact_field", "kontakti kentt\xe4", "vendor_field", "Kauppias kentt\xe4", "expense_field", "kulu kentt\xe4", "project_field", "Projekti kentt\xe4", "task_field", "Teht\xe4v\xe4 kentt\xe4", "group_field", "ryhm\xe4 kentt\xe4", "number_counter", "numero Counter", "prefix", "Etuliite", "number_pattern", "numero Pattern", "messages", "Viestit", "custom_css", "Mukautettu CSS", _s17_95, "Muokautettu JavaScript", _s16_157, "n\xe4yt\xe4 on PDF", _s21_68, "N\xe4yt\xe4 asiakkaan allekirjoitus lasku-/tarjous-PDF:ss\xe4.", _s25_40, "Laskun ehdot valintaruutu", _s30_9, "Vaadi asiakasta vahvistamaan, ett\xe4 h\xe4n hyv\xe4ksyy laskun ehdot.", _s23_30, "Tarjouksen ehdot valintaruutu", _s28_21, "Vaadi asiakasta vahvistamaan, ett\xe4 h\xe4n hyv\xe4ksyy tarjouksen ehdot.", _s25_41, "Laskun allekirjoitus", _s30_10, "Vaadi asiakasta t\xe4ytt\xe4m\xe4\xe4n allekirjoitus.", _s23_31, "Tarjouksen allekirjoitus", _s22_54, "salasana suojaa laskut", _s27_36, "Mahdollistaa, ett\xe4 voit antaa salasanan jokaiselle yhteyshenkil\xf6lle. Jos salasana on asetettu, yhteyshenkil\xf6n tulee kirjautua sen avulla sis\xe4\xe4n voidakseen tarkastella laskuja.", "authorization", "Valtuutus", "subdomain", "Alidomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Yst\xe4v\xe4llisesti,", _s24_38, "Tee asiakkaillesi helpommaksi maksaa laskusi ottamalla k\xe4ytt\xf6\xf6n schema.org -merkint\xe4 s\xe4hk\xf6posteissasi.", "plain", "Yksinkertainen", "light", "Vaalea", "dark", "Tumma", "email_design", "S\xe4hk\xf6postin muotoilu", "attach_pdf", "Liit\xe4 PDF", _s16_158, "Liit\xe4 asiakirjoja", "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Ota k\xe4ytt\xf6\xf6n merkint\xe4", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Luottokortti", "bank_transfer", "Pankkisiirto", "priority", "Priority", "fee_amount", "palkkio m\xe4\xe4r\xe4", "fee_percent", "Palkkio prosentti", "fee_cap", "palkkio Cap", "limits_and_fees", "Limits/palkkiot", "enable_min", "Ota k\xe4ytt\xf6\xf6n min", "enable_max", "Ota k\xe4ytt\xf6\xf6n max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Accepted kortti Logos", "credentials", "Tunnukset", "update_address", "P\xe4ivit\xe4 osoite", _s19_45, "P\xe4ivit\xe4 asiakkaan osoite annetuilla tiedoilla", "rate", "Kanta", "tax_rate", "Verokanta", "new_tax_rate", "Uusi verom\xe4\xe4r\xe4", "edit_tax_rate", "Muokkaa verokantaa", _s16_160, "Verokanta luotu onnistuneesti", _s16_161, "Verokanta p\xe4ivitetty onnistuneesti", _s17_98, "Verokanta arkistoitu onnistuneesti", _s16_162, "Verokanta onnistuneesti poistettu", _s17_99, "Verokanta onnistuneesti palautettu", _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Lis\xe4\xe4 automaattisesti tuotteita", _s18_80, "Tuotteen valinta t\xe4ytt\xe4\xe4 kuvauksen ja hinnan automaattisesti", "update_products", "P\xe4ivit\xe4 automaattisesti tuotteet", _s20_65, "Laskun p\xe4ivitt\xe4minen p\xe4ivitt\xe4\xe4 tuotetietokannan automaattisesti", _s16_163, "Convert tuotteet", _s21_69, "Muunna automaattisesti tuotehinnat asiakkaan valuuttaan", "fees", "palkkiot", "limits", "Limits", "provider", "Tarjoaja", "company_gateway", "maksu Gateway", _s16_165, "maksu Gateways", _s19_46, "uusi Gateway", _s20_66, "muokkaa Gateway", _s23_32, "onnistuneesti luotu gateway", _s23_33, "onnistuneesti p\xe4ivitetty gateway", _s24_39, "onnistuneesti arkistoitu gateway", _s23_34, "onnistuneesti poistettu gateway", _s24_40, "onnistuneesti palautettu gateway", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "Jatka muokkausta", "discard_changes", "Discard Changes", "default_value", "Oletus arvo", "disabled", "Pois k\xe4yt\xf6st\xe4", "currency_format", "Valuutan muoto", _s21_70, "Viikon ensimm\xe4inen p\xe4iv\xe4", _s23_35, "Vuoden ensimm\xe4inen kuukausi", "sunday", "sunnuntai", "monday", "Maanantai", "tuesday", "Tiistai", "wednesday", "Keskiviikko", "thursday", "Torstai", "friday", "Perjantai", "saturday", "Lauantai", "january", "Tammikuu", "february", "Helmikuu", "march", "Maaliskuu", "april", "Huhtikuu", "may", "Toukokuu", "june", "Kes\xe4kuu", "july", "Hein\xe4kuu", "august", "Elokuu", "september", "Syyskuu", "october", "Lokakuu", "november", "Marraskuu", "december", "Joulukuu", "symbol", "Symboli", "ocde", "Koodi", "date_format", "P\xe4iv\xe4m\xe4\xe4r\xe4n muoto", "datetime_format", "P\xe4iv\xe4-Aika esitysmuoto", "military_time", "24 tunnin aika", _s18_81, "N\xe4yt\xe4 24 tunnin aikamuoto", "send_reminders", "l\xe4het\xe4 muistutukset", "timezone", "Aikavy\xf6hyke", _s19_47, _s19_48, _s17_101, "Filtered by ryhm\xe4", _s19_49, "Filtered by Lasku", _s18_82, "Filtered by asiakas", _s18_84, "Suodatettu: Kauppias", "group_settings", "ryhm\xe4 asetukset", "group", "ryhm\xe4", "groups", "ryhm\xe4t", "new_group", "uusi ryhm\xe4", "edit_group", "muokkaa ryhm\xe4", "created_group", "onnistuneesti luotu ryhm\xe4", "updated_group", "onnistuneesti p\xe4ivitetty ryhm\xe4", "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", "onnistuneesti arkistoitu ryhm\xe4", "deleted_group", "onnistuneesti poistettu ryhm\xe4", "restored_group", "onnistuneesti palautettu ryhm\xe4", "upload_logo", "Lataa Logo", "uploaded_logo", "Logo onnistuneesti ladattu palvelimelle", "logo", "Logo", "saved_settings", "onnistuneesti saved asetus", _s16_169, "Tuoteasetukset", "device_settings", "Device asetukset", "defaults", "Oletusasetukset", "basic_settings", "Perusasetukset", _s17_103, "Lis\xe4\xe4asetuksia", "company_details", "Yrityksen tiedot", "user_details", "K\xe4ytt\xe4j\xe4tiedot", "localization", "Lokalisointi", "online_payments", "Online maksut", "tax_rates", "Verokannat", "notifications", "S\xe4hk\xf6posti-ilmoitukset", "import_export", "Tuonti | Vienti", "custom_fields", _s17_154, "invoice_design", "Laskun muotoilu", "buy_now_buttons", "Osta nyt napit", "email_settings", "S\xe4hk\xf6postin asetukset", _s23_37, "Pohjat ja muistutukset", _s22_55, "luotto Cards & Banks", _s19_51, "Datan visualisaatiot", "price", "Hinta", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, "kiitos you sinun purchase!", "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, "Annual tilaus", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count k\xe4ytt\xe4j\xe4\xe4", "upgrade", "Upgrade", _s25_45, "Anna etunimi", _s24_42, "Anna sukunimi", _s33_21, "Ole hyv\xe4 ja hyv\xe4ksy palveluehtomme sek\xe4 tietosuojak\xe4yt\xe4nt\xf6mme luodaksesi k\xe4ytt\xe4j\xe4tilin.", "i_agree_to_the", "Hyv\xe4ksyn", _s16_171, "K\xe4ytt\xf6ehdot", "privacy_policy", "Privacy Policy", "sign_up", "Rekister\xf6idy", "account_login", "Tiliin kirjautuminen", "view_website", "N\xe4yt\xe4 verkkosivu", "create_account", "Luo k\xe4ytt\xe4j\xe4tili", "email_login", "Email Login", "create_new", "luo uusi", _s18_86, "ei record selected", _s21_73, "save tai peruuta sinun muutokset", "download", "Lataa", _s27_41, "Requires enterprise plan", "take_picture", "Ota kuva", "upload_file", "Lataa tiedosto palvelimelle", "document", "Document", "documents", "Asiakirjat", "new_document", "Uusi asiakirja", "edit_document", "Muokkaa asiakirjaa", _s17_105, "onnistuneesti l\xe4hetetty dokumentti", _s16_173, "onnistuneesti p\xe4ivitetty dokumentti", _s17_106, "onnistuneesti arkistoitu dokumentti", _s16_174, "onnistuneesti poistettu dokumentti", _s17_107, "onnistuneesti palautettu dokumentti", _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "ei History", "expense_date", "Kulun p\xe4iv\xe4m\xe4\xe4r\xe4", "pending", "Odottaa vastausta", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Muunnettu", _s24_44, "Lis\xe4\xe4 asiakirjoja laskuun", "exchange_rate", "Exchange Rate", _s16_178, "Muunna valuutta", "mark_paid", "Merkitse maksetuksi", "category", "Kategoria", "address", "Osoite", "new_vendor", "Uusi kauppias", "created_vendor", "Kauppias luotin onnistuneesti", "updated_vendor", "Kauppias on p\xe4ivitetty onnistuneesti", "archived_vendor", "Kauppias on arkistoitu onnistuneesti", "deleted_vendor", "Kauppias on poistettu onnistuneesti", "restored_vendor", "Onnistuneesti palautettu kauppias", _s16_179, ":count kauppias(ta) arkistoitu onnistuneesti", "deleted_vendors", ":count kauppias(ta) poistettu onnistuneesti", _s16_180, _s36_11, "new_expense", "Lis\xe4\xe4 kulu", "created_expense", "onnistuneesti luotu kulu", "updated_expense", "onnistuneesti p\xe4ivitetty kulu", _s16_181, "Kulu arkistoitu onnistuneesti", "deleted_expense", "Kulu poistettu onnistuneesti", _s16_182, "onnistuneesti palautettu kulu", _s17_109, "onnistuneesti arkistoitu kulut", _s16_183, "onnistuneesti poistettu kulut", _s17_110, _s37_14, "copy_shipping", "Kopioi toimitus", "copy_billing", "Kopioi laskutus", "design", "malli", _s21_74, "Failed find record", "invoiced", "Laskutettu", "logged", "Kirjattu", "running", "K\xe4ynniss\xe4", "resume", "Jatka", "task_errors", "Ole hyv\xe4 ja korjaa p\xe4\xe4llek\xe4iset ajat", "start", "Aloitus", "stop", "Lopetus", "started_task", "Onnistuneesti aloitettu teht\xe4v\xe4", "stopped_task", "Teht\xe4v\xe4 lopetettu onnistuneesti", "resumed_task", "Onnistuneesti jatkettu teht\xe4v\xe4\xe4", "now", "Nyt", _s16_184, "Automaattinen teht\xe4vien aloitus", "timer", "Ajastin", "manual", "Manuaalinen", "budgeted", "Budjetoitu", "start_time", "Aloitusaika", "end_time", "Lopetusaika", "date", "P\xe4iv\xe4m\xe4\xe4r\xe4", "times", "Ajat", "duration", "Kesto", "new_task", "Uusi teht\xe4v\xe4", "created_task", "Teht\xe4v\xe4 luotu onnistuneesti", "updated_task", "Teht\xe4v\xe4 p\xe4ivitetty onnistuneesti", "archived_task", "Teht\xe4v\xe4 arkistoitu onnistuneesti", "deleted_task", "Teht\xe4v\xe4 poistettu onnistuneesti", "restored_task", "Teht\xe4v\xe4 palautettu onnistuneesti", "archived_tasks", ":count teht\xe4v\xe4\xe4 arkistoitu onnistuneesti", "deleted_tasks", ":count teht\xe4v\xe4\xe4 poistettu onnistuneesti", "restored_tasks", _s34_19, _s19_55, "Ole hyv\xe4 ja anna nimi", "budgeted_hours", "Budjetoidut ty\xf6tunnit", "created_project", "Onnistuneesti luotu projekti", "updated_project", "Onnistuneesti p\xe4ivitetty projekti", _s16_186, "Onnistuneesti arkistoitu projekti", "deleted_project", _s32_15, _s16_187, "Onnistuneesti palautettu projekti", _s17_111, "Onnistuneesti arkistoitu :count projekti(a)", _s16_188, "Onnistuneesti poistettu :count projekti(a)", _s17_112, _s37_15, "new_project", "Uusi projekti", _s27_45, "kiitos you using our app!", "if_you_like_it", _s21_76, "click_here", "klikkaa t\xe4st\xe4", _s18_90, "Klikkaa t\xe4st\xe4", "to_rate_it", "rate it.", "average", "Keskiarvo", "unapproved", "Hyv\xe4ksym\xe4tt\xf6m\xe4t", _s30_15, "authenticate change this asetus", "locked", "Locked", "authenticate", "Authenticate", _s19_57, "authenticate", _s24_46, _s24_47, "footer", "Alatunniste", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "t\xe4n\xe4\xe4n", "custom_range", "muokattu Range", "date_range", "P\xe4iv\xe4m\xe4\xe4r\xe4v\xe4li", "current", "nykyinen", "previous", "Previous", "current_period", "nykyinen kausi", _s17_113, "Comparison kausi", "previous_period", "Previous kausi", "previous_year", "Previous Year", "compare_to", "Compare", "last7_days", "viime 7 p\xe4iv\xe4\xe4", "last_week", "viime viikko", "last30_days", "viime 30 p\xe4iv\xe4\xe4", "this_month", "t\xe4m\xe4 kuukausi", "last_month", "viime kuukausi", "this_year", "t\xe4m\xe4 Year", "last_year", "viime Year", "custom", "Mukautettu", _s16_189, "kloonaa Lasku", "clone_to_quote", "Kopioi tarjous", "clone_to_credit", "Clone to Credit", "view_invoice", "Katso lasku", "convert", "Convert", "more", "Lis\xe4\xe4", "edit_client", "Muokkaa asiakas", "edit_product", "Muokkaa tuote", "edit_invoice", "Muokkaa laskua", "edit_quote", "Muokkaa tarjousta", "edit_payment", "Muokkaa maksua", "edit_task", "Muokkaa teht\xe4v\xe4", "edit_expense", "muokkaa kulu", "edit_vendor", "Muokkaa kauppiasta", "edit_project", "Muokkaa projektia", _s20_68, "Muokkaa toistuvaa tarjousta", "billing_address", "Laskutusosoite", _s16_191, "Toimitusosoite", "total_revenue", "Kokonaistulot", "average_invoice", "Laskujen keskiarvo", "outstanding", "Maksamattomat laskut", "invoices_sent", ":count laskua l\xe4hetetty", "active_clients", "Aktiiviset asiakkaat", "close", "Sulje", "email", "S\xe4hk\xf6posti", "password", "Salasana", "url", "URL", "secret", "Secret", "name", "Nimi", "logout", "Kirjaudu ulos", "login", "Kirjaudu sis\xe4\xe4n", "filter", "Suodata", "sort", "Sort", "search", "Etsi", "active", "Aktiivinen", "archived", "Arkistoitu", "deleted", "Poistettu", "dashboard", "Hallintapaneeli", "archive", "Arkisto", "delete", "Poista", "restore", "Palauta", _s16_193, _s16_194, _s23_38, "Anna s\xe4hk\xf6postiosoitteesi", _s26_32, "Anna salasanasi", _s21_77, "Anna sinun URL-osoitteesi", _s26_34, "Anna tuoteavain", "ascending", "Ascending", "descending", "Descending", "save", "Tallenna", _s17_115, "virhe occurred", "paid_to_date", "Maksettu t\xe4h\xe4n menness\xe4", "balance_due", "Avoin lasku", "balance", "Saldo", "overview", "Yleiskatsaus", "details", "Tiedot", "phone", "Puhelin", "website", "Kotisivu", "vat_number", "ALV-numero", "id_number", "Asiakasnumero", "create", "Luo", _s19_59, "Copied :arvo clipboard", "error", "Virhe", _s16_195, _s16_196, "contacts", "Yhteystiedot", "additional", "Lis\xe4ksi", "first_name", "Etunimi", "last_name", "Sukunimi", "add_contact", "Lis\xe4\xe4 yhteystieto", "are_you_sure", "Oletko varma?", "cancel", "Peruuta", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Tuote", "products", "Tuotteet", "new_product", "Uusi tuote", "created_product", "Tuote on luotu onnistuneesti", "updated_product", "Tuote on p\xe4ivitetty onnistuneesti", _s16_199, "Tuote on arkistoitu onnistuneesti", "deleted_product", "onnistuneesti poistettu tuote", _s16_200, "onnistuneesti palautettu tuote", _s17_117, "onnistuneesti arkistoitu :count tuotteet", _s16_201, "onnistuneesti poistettu :count tuotteet", _s17_118, _s37_16, "product_key", "Tuote", "notes", "Viestit", "cost", "Hinta", "client", "Asiakas", "clients", "Asiakkaat", "new_client", "Uusi asiakas", "created_client", "Luotin onnistuneesti asiakas", "updated_client", "Asiakas on p\xe4ivitetty onnistuneesti", "archived_client", "Asiakas on arkistoitu onnistuneesti", _s16_202, _s43_3, "deleted_client", "Asiakas on poistettu onnistuneesti", "deleted_clients", "Poistettu onnistuneesti :count asiakas(ta)", "restored_client", "Asiakas palautettu onnistuneesti", _s16_203, _s36_13, "address1", "Katu", "address2", "Asunto", "city", "Kaupunki", "state", "L\xe4\xe4ni", "postal_code", "Postinumero", "country", "Maa", "invoice", "Lasku", "invoices", "Laskut", "new_invoice", "Uusi lasku", "created_invoice", "Lasku luotiin onnistuneesti", "updated_invoice", "Lasku p\xe4ivitettiin onnistuneesti", _s16_204, "Lasku arkistoitiin onnistuneesti", "deleted_invoice", "Lasku poistettiin onnistuneesti", _s16_205, "Lasku palautettu onnistuneesti", _s17_119, _s43_3, _s16_206, "Poistettiin onnistuneesti :count laskua", _s17_120, _s37_17, "emailed_invoice", "Lasku l\xe4hetettiin onnistuneesti", "emailed_payment", "onnistuneesti emailed maksu", "amount", "M\xe4\xe4r\xe4", "invoice_number", "Laskun numero", "invoice_date", "Laskun p\xe4iv\xe4m\xe4\xe4r\xe4", "discount", "Alennus", "po_number", "Tilaus numero", "terms", "Ehdot", "public_notes", "Julkiset muistiinpanot", "private_notes", "Yksityiset muistiinpanot", "frequency", "Kuinka usein", "start_date", "Alkamisp\xe4iv\xe4m\xe4\xe4r\xe4", "end_date", "Loppup\xe4iv\xe4m\xe4\xe4r\xe4", "quote_number", "Tarjous numero", "quote_date", "Tarjouksen p\xe4iv\xe4m\xe4\xe4r\xe4", "valid_until", "Voimassa", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Kuvaus", "unit_cost", "Kappalehinta", "quantity", "M\xe4\xe4r\xe4", "add_item", "Lis\xe4\xe4 nimike", "contact", "Yhteyshenkil\xf6", "work_phone", "Puhelin", "total_amount", "yhteens\xe4 m\xe4\xe4r\xe4", "pdf", "PDF", "due_date", "Er\xe4p\xe4iv\xe4", _s16_207, "Partial er\xe4p\xe4iv\xe4", "status", "Tila", _s17_121, "Lasku tila", "quote_status", "Tarjouksen tila", _s22_56, "Napsauta + lis\xe4t\xe4ksesi nimikkeen", _s22_58, "Napsauta + lis\xe4t\xe4ksesi ajan", "count_selected", ":count selected", "total", "Loppusumma", "percent", "Prosentti", "edit", "Muokkaa", "dismiss", "Dismiss", _s20_70, "valitse p\xe4iv\xe4m\xe4\xe4r\xe4", _s22_59, "valitse asiakas", _s24_48, "valitse lasku", "task_rate", "Teht\xe4v\xe4n luokitus", "settings", "Asetukset", "language", "Kieli", "currency", "Valuutta", "created_at", "Luotu", "created_on", "Created On", "updated_at", "p\xe4ivitetty", "tax", "Vero", _s30_17, "Ay\xf6t\xe4 laskunumero", _s27_49, "Ole hyv\xe4 ja anna tarjouksen numero", "past_due", "Past Due", "draft", "Luonnos", "sent", "L\xe4hetetty", "viewed", "N\xe4hty", "approved", "Hyv\xe4ksytty", "partial", "Osittainen/Talletus", "paid", "Maksettu", "mark_sent", "Merkitse l\xe4hetetyksi", _s22_61, "Onnistuneesti merkitty lasku l\xe4hetetyksi", _s22_62, "Lasku merkittiin l\xe4hetetyksi onnistuneesti", _s23_40, _s43_4, _s23_41, _s43_4, "done", "Valmis", _s37_18, "Anna asiakkaan tai yhteyshenkil\xf6n nimi", "dark_mode", "Tumma tila", _s27_51, "Uudelleenk\xe4ynnist\xe4 sovellus ottaaksesi muutoksen k\xe4ytt\xf6\xf6n", "refresh_data", "Refresh Data", "blank_contact", "Blank kontakti", "activity", "Toiminta", _s16_209, "ei records found", "clone", "Monista", "loading", "Loading", "industry", "Toimiala", "size", "Koko", "payment_terms", "Maksuehdot", "payment_date", "Maksun p\xe4iv\xe4m\xe4\xe4r\xe4", "payment_status", "maksu tila", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Asiakasportaali", "show_tasks", "N\xe4yt\xe4 teht\xe4v\xe4t", "email_reminders", "Email muistutukset", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Ensimm\xe4inen muistutus", "second_reminder", "Toinen muistutus", "third_reminder", "Kolmas muistutus", "reminder1", "ensimm\xe4inen muistutus", "reminder2", "toinen muistutus", "reminder3", "Third muistutus", "template", "Malli", "send", "l\xe4het\xe4", "subject", "Otsikko", "body", "Sis\xe4lt\xf6", "send_email", "L\xe4het\xe4 s\xe4hk\xf6posti", "email_receipt", "L\xe4het\xe4 maksukuitti s\xe4hk\xf6postilla asiakkaalle", "auto_billing", _s22_88, "button", "Button", "preview", "Esikatselu", "customize", "Mukauta", "history", "Historia", "payment", "Maksu", "payments", "Maksut", "refunded", "Refunded", "payment_type", "Maksutyyppi", _s21_79, "Tapahtuman viite", "enter_payment", "Kirjaa maksu", "new_payment", "Uusi maksutapahtuma", "created_payment", "Maksu on luotu onnistuneesti", "updated_payment", "Maksu p\xe4ivitetty onnistuneesti", _s16_217, "Maksu on arkistoitu onnistuneesti", "deleted_payment", "Maksu on poistettu onnistuneesti", _s16_218, "Maksu palautettu onnistuneesti", _s17_124, "Arkistoitu onnistuneesti :count maksu(a)", _s16_219, "Poistettu onnistuneesti :count maksu(a)", _s17_125, _s37_20, "quote", "Tarjous", "quotes", "Tarjoukset", "new_quote", "Uusi tarjous", "created_quote", "Tarjous on luotu onnistuneesti", "updated_quote", "Tarjous on p\xe4ivitetty onnistuneesti", "archived_quote", "Tarjous on arkistoitu onnistuneesti", "deleted_quote", "Tarjous on poistettu onnistuneesti", "restored_quote", "Tarjous palautettu onnistuneesti", "archived_quotes", ":count tarjous(ta) arkistoitu onnistuneesti", "deleted_quotes", ":count tarjous(ta) poistettu onnistuneesti", "restored_quotes", _s35_21, "expense", "Kulu", "expenses", "Kulut", "vendor", "Kauppias", "vendors", "Kauppiaat", "task", "Teht\xe4v\xe4", "tasks", "Teht\xe4v\xe4t", "project", "Projekti", "projects", "Projektit", "activity_1", ":user loi asiakkaan :client", "activity_2", ":user arkistoi asiakkaan :client", "activity_3", ":user poisti asiakkaan :client", "activity_4", ":k\xe4ytt\xe4j\xe4 loi laskun :invoice", "activity_5", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti laskun :invoice", "activity_6", ":k\xe4ytt\xe4j\xe4 emailed lasku :lasku for :asiakas :kontakti", "activity_7", ":kontakti katsoi lasku :lasku for :asiakas", "activity_8", ":k\xe4ytt\xe4j\xe4 arkistoi laskun :invoice", "activity_9", ":k\xe4ytt\xe4j\xe4 poisti laskun :invoice", "activity_10", ":kontakti entered maksu :maksu for :payment_amount on lasku :lasku for :asiakas", "activity_11", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti maksun :maksu", "activity_12", ":k\xe4ytt\xe4j\xe4 arkistoi maksun :maksu", "activity_13", ":k\xe4ytt\xe4j\xe4 poisti maksun :maksu", "activity_14", ":k\xe4ytt\xe4j\xe4 sy\xf6tti :luotto hyvityksen", "activity_15", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti :luotto hyvityksen", "activity_16", ":k\xe4ytt\xe4j\xe4 arkistoi :luotto hyvityksen", "activity_17", ":k\xe4ytt\xe4j\xe4 poisti :luotto hyvityksen", "activity_18", ":user loi tarjouksen :quote", "activity_19", ":user p\xe4ivitti tarjouksen :quote", "activity_20", ":user l\xe4hetti s\xe4hk\xf6postitse tarjouksen :quote asiakkaan :client yhteyshenkil\xf6lle :contact", "activity_21", ":contact luki tarjouksen :quote", "activity_22", ":user arkistoi tarjouksen :quote", "activity_23", ":user poisti tarjouksen :quote", "activity_24", ":user palautti tarjouksen :quote", "activity_25", ":k\xe4ytt\xe4j\xe4 palautti laskun :invoice", "activity_26", ":k\xe4ytt\xe4j\xe4 palautti asiakkaan :client", "activity_27", ":k\xe4ytt\xe4j\xe4 palautti maksun :maksu", "activity_28", ":k\xe4ytt\xe4j\xe4 palautti hyvityksen :luotto", "activity_29", ":contact hyv\xe4ksyi tarjouksen :quote asiakkaalle :client", "activity_30", ":k\xe4ytt\xe4j\xe4 loi kauppiaan :vendor", "activity_31", ":k\xe4ytt\xe4j\xe4 arkistoi kauppiaan :vendor", "activity_32", ":k\xe4ytt\xe4j\xe4 poisti kauppiaan :vendor", "activity_33", ":k\xe4ytt\xe4j\xe4 palautti kauppiaan :vendor", "activity_34", ":k\xe4ytt\xe4j\xe4 loi kulun :kulu", "activity_35", ":k\xe4ytt\xe4j\xe4 arkistoi kulun :kulu", "activity_36", ":k\xe4ytt\xe4j\xe4 poisti kulun :kulu", "activity_37", ":k\xe4ytt\xe4j\xe4 palautti kulun :kulu", "activity_39", ":k\xe4ytt\xe4j\xe4 perui :payment_amount maksun :maksu", "activity_40", ":k\xe4ytt\xe4j\xe4 refunded :adjustment a :payment_amount maksu :maksu", "activity_41", ":payment_amount maksu (:maksu) failed", "activity_42", ":k\xe4ytt\xe4j\xe4 loi teht\xe4v\xe4n :teht\xe4v\xe4", "activity_43", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_44", ":k\xe4ytt\xe4j\xe4 arkistoi teht\xe4v\xe4n :teht\xe4v\xe4", "activity_45", ":k\xe4ytt\xe4j\xe4 poisti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_46", ":k\xe4ytt\xe4j\xe4 palautti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_47", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti kulun :kulu", "activity_48", ":user loi k\xe4ytt\xe4j\xe4n :user", "activity_49", ":user p\xe4ivitti k\xe4ytt\xe4j\xe4n :user", "activity_50", ":user arkistoi k\xe4ytt\xe4j\xe4n :user", "activity_51", ":user poisti k\xe4ytt\xe4j\xe4n :user", "activity_52", ":user palutti k\xe4ytt\xe4j\xe4n :user", "activity_53", ":user merkitsi l\xe4hetetyksi laskun :invoice", "activity_54", ":k\xe4ytt\xe4j\xe4 reopened tiketti :tiketti", "activity_55", ":kontakti vastasi tiketti :tiketti", "activity_56", ":k\xe4ytt\xe4j\xe4 katsoi tiketti :tiketti", "activity_57", "J\xe4rjestelm\xe4 ep\xe4onnistui l\xe4hett\xe4m\xe4\xe4n s\xe4hk\xf6postilaskun :invoice", "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Kertak\xe4ytt\xf6inen salasana", "emailed_quote", "Tarjous on l\xe4hetetty onnistuneesti", "emailed_credit", _s27_62, _s20_72, "Tarjous on onnistuneesti merkitty l\xe4hetetyksi", _s21_81, _s34_20, "expired", "Vanhentunut", "all", "Kaikki", "select", "Valitse", _s22_63, _s22_64, "custom_value1", "muokattu Value", "custom_value2", "Mukautettu arvo", "custom_value3", "Muokattu arvo 3", "custom_value4", "Muokattu arvo 4", _s18_91, "Muokattu email tyyli", _s24_53, "Muokattu Etusivu viesti", _s29_36, "Muokattu Avoin Lasku viesti", _s27_56, "Muokattu Maksettu Lasku viesti", _s31_18, "Oma Hyv\xe4ksym\xe4t\xf6n tarjous -viesti", "lock_invoices", "Lukitse lasku", "translations", "K\xe4\xe4nn\xf6kset", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, "Kauppiaan numerolaskuri", _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, "Laskunumeroinnin kaava", _s22_75, "Laskun j\xe4rjestysnumero", _s20_73, "Tarjouksen numeroinnin kuvio", _s20_75, "Tarjouksen j\xe4rjestysnumero", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, "Jaettu lasku tarjous laskuri", _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, "S\xe4hk\xf6postilaskun aihe", _s19_64, "Tarjouss\xe4hk\xf6postin otsikko", _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Asiakkaan kaupunki", "client_state", "Asiakkaan osavaltio", "client_country", "Asiakkaan valtio", _s16_220, "Asiakas on aktiivinen", "client_balance", "Client Balance", "client_address1", "Asiakkaan katu", "client_address2", "Asiakkaan huoneisto", "vendor_address1", "Toimittajan katuosoite", "vendor_address2", "Toimittajan huoneisto-osoite", _s24_55, "Asiakkaan toimituskatuosoite", _s24_56, "Asiakkaan toimitushuoneisto-osoite", "type", "Tyyppi", "invoice_amount", "Lasku m\xe4\xe4r\xe4", _s16_224, "Er\xe4p\xe4iv\xe4", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", _s22_88, "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Mukautettu Vero 1", "custom_taxes2", "Mukautettu Vero 2", "custom_taxes3", "Mukautettu Vero 3", "custom_taxes4", "Mukautettu Vero 4", _s17_128, _s22_84, _s17_129, _s22_85, _s17_130, _s22_86, _s17_131, _s22_87, "is_deleted", "On poistettu", "vendor_city", "Kauppiaan kaupunki", "vendor_state", "Kauppiaan alue", "vendor_country", "Kauppiaan maa", "is_approved", "On hyv\xe4ksytty", "tax_name", "veronimi", "tax_amount", "vero m\xe4\xe4r\xe4", "tax_paid", "vero Paid", "payment_amount", "Maksun m\xe4\xe4r\xe4", "age", "Age", "is_running", "Is Running", "time_log", "Aikaloki", "bank_id", "Pankki", _s19_66, _s19_67, _s16_225, "Kulujen kategoria", _s19_68, _s19_69, "tax_name1", "Veron nimi 1", "tax_name2", "Veron nimi 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "fr", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accepter", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s22_89, "default", "Par d\xe9faut", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "En attente", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", _s22_90, _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s29_52, _s17_6, _s17_7, "week", "Semaine", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s20_93, "range", "Port\xe9e", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Cr\xe9er un projet", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Le frais pour une facture de :amount serait de :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Accepter", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Client purg\xe9 avec succ\xe8s", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, "Afficher l'aper\xe7u PDF", _s21_14, "Afficher l'aper\xe7u PDF lors de la r\xe9daction des factures", "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "D\xe9finir le mot de passe", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, "M\xe9moriser localement les donn\xe9es afin de d\xe9marrer plus rapidement. La d\xe9sactivation peut am\xe9liorer les performances pour les grands comptes.", "persist_ui", "M\xe9moriser l'interface utilisateur", "persist_ui_help", "M\xe9moriser l'\xe9tat de l'interface utilisateur afin de reprendre l\xe0 o\xf9 vous en \xe9tiez. La d\xe9sactivation peut am\xe9liorer les performances.", _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s26_48, "view_statement", "Voir le relev\xe9", "sepa", "Pr\xe9l\xe8vement automatique/domiciliation SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Syst\xe8me", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Nom exp\xe9diteur", _s16_21, _s16_231, _s17_13, _s18_126, _s18_13, _s20_94, _s21_16, _s27_69, _s22_24, _s28_69, _s25_2, "D\xe9pense r\xe9currente cr\xe9\xe9e avec succ\xe8s", _s25_3, "D\xe9pense r\xe9currente mise \xe0 jour avec succ\xe8s", _s26_2, "D\xe9pense r\xe9currente archiv\xe9e avec succ\xe8s", _s25_4, "Projet supprim\xe9 avec succ\xe8s", _s25_5, _s38_2, _s26_3, "D\xe9pense r\xe9currente restaur\xe9e avec succ\xe8s", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "M\xe9moriser les donn\xe9es", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Virgule d\xe9cimale", _s26_4, "Utiliser la virgule comme s\xe9parateur d\xe9cimal dans les formulaires", "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", _s22_91, _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importer des donn\xe9es", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s20_95, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s17_155, _s17_17, "Nom du contact", "order", "Commande", "unassigned", "Non assign\xe9", "partial_value", "Doit \xeatre sup\xe9rieur \xe0 z\xe9ro et inf\xe9rieur au total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activ\xe9(e)", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "D\xe9finissez un sous-domaine ou affichez la facture sur votre propre site web.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "S\xe9curit\xe9", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Abonnements", _s16_39, _s16_40, _s17_23, _s19_80, _s20_23, _s27_70, _s20_24, _s33_26, _s21_28, _s30_37, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Renvoyer une invitation", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Rebondi", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "Scannez le code \xe0 barres avec une application compatible :link", _s18_30, "Authentification \xe0 deux facteurs activ\xe9e avec succ\xe8s", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Authentification \xe0 2 facteurs", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s18_127, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "Ce trimestre", "last_quarter", _s17_156, "to_update_run", "To update run", _s18_33, _s20_96, _s16_52, _s16_53, "invoice_project", _s18_128, "invoice_task", _s17_157, "invoice_expense", "Facturer la d\xe9pense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s28_70, "save_and_email", _s35_27, _s16_56, _s25_62, _s16_58, _s16_270, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s20_97, "document_upload", "T\xe9l\xe9verser un document", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Couleur", "show", "Montrer", "hide", "Cacher", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Colonne", "sample", "Exemple", "map_to", "Map To", "import", "Importer", _s25_15, _s29_6, "select_file", _s32_16, _s16_60, _s16_61, "csv_file", "S\xe9lectionner un fichier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "URL Webhook", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, 'Veuillez entrer ":value" pour confirmer', "purge", "Purger", "service", "Service", "clone_to", "Cloner en", "clone_to_other", 'Cloner en "Autre"', "labels", "Labels", "add_custom", "Ajouter", "payment_tax", "Payment Tax", "unpaid", "Non pay\xe9", "white_label", "Marque blanche", "delivery_note", "Bon de livraison", _s24_23, _s39_7, _s24_25, _s37_28, "source_code", "Code source", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Devis expir\xe9", "partial_due", "Solde partiel", "invoice_total", "Montant total", "quote_total", "Montant du devis", "credit_total", "Total Cr\xe9dit", _s23_14, "Total facture", "actions", "Actions", "expense_number", "N\xb0 d\xe9pense", "task_number", "N\xb0 t\xe2che", "project_number", "N\xb0 projet", "project_name", "Project Name", "warning", "Avertissement", "view_settings", _s19_81, _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Devis p\xe9rim\xe9", "remind_invoice", "Remind Invoice", "cvv", "Cryptogramme visuel", "client_name", "Nom du client", "client_phone", "T\xe9l\xe9phone client", "required_fields", "Champs requis", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Effacer le cache", "sort_order", "Ordre de tri", "task_status", "Statut", "task_statuses", "Statuts des t\xe2ches", "new_task_status", "Nouveau statut de t\xe2che", _s16_62, "Modifier les statuts de t\xe2ches", _s19_26, "Statut de t\xe2che cr\xe9\xe9", _s19_27, "Statut de t\xe2che mis \xe0 jour avec succ\xe8s", _s20_32, "Statut de t\xe2che archiv\xe9", _s19_28, "Statut de t\xe2che supprim\xe9", _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "R\xe9glages des t\xe2ches", _s20_40, _s20_41, _s18_40, "cat\xe9gories de d\xe9pense", _s20_42, _s29_53, _s21_40, _s21_41, _s24_28, "Cat\xe9gorie de d\xe9pense cr\xe9\xe9e avec succ\xe8s", _s24_29, "Cat\xe9gorie de d\xe9pense mise \xe0 jour avec succ\xe8s", _s25_19, "Cat\xe9gorie de d\xe9pense archiv\xe9e avec succ\xe8s", _s24_30, _s40_5, _s24_31, _s37_7, _s25_20, "Cat\xe9gorie de d\xe9pense restaur\xe9e avec succ\xe8s", _s27_21, ":count cat\xe9gorie(s) de d\xe9pense archiv\xe9e(s) avec succ\xe8s", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "Voir les changements", "force_update", _s21_116, _s17_42, "Vous utilisez la derni\xe8re version mais il se peut que des corrections soient en attente.", "mark_paid_help", _s38_17, _s18_42, "Devrait \xeatre factur\xe9", _s23_16, _s33_23, _s29_7, "Rend les documents visibles", _s21_44, "D\xe9finir un taux de change", _s16_66, "R\xe9glages des d\xe9penses", _s18_43, _s20_98, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", _s18_129, "variables", "Variables", "show_password", "Montrer le mot de passe", "hide_password", "Cacher le mot de passe", "copy_error", "Erreur de copie", "capture_card", "Carte saisie", _s17_43, _s23_52, "total_taxes", "Taxes totales", "line_taxes", "Taxes par ligne", "total_fields", _s17_158, _s25_23, _s47_6, _s25_24, _s48_1, _s25_25, _s47_7, "gateway_refund", _s27_71, _s19_30, _s56_0, "due_date_days", "Date d'\xe9ch\xe9ance", "paused", "En pause", "mark_active", "Marquer comme actif", "day_count", "Jour :count", _s22_35, _s20_99, _s21_45, _s20_100, _s17_45, _s31_29, "endless", "Sans fin", "next_send_date", _s22_92, _s16_68, "Cycles restant", _s17_47, _s18_130, _s18_45, _s20_101, _s21_47, _s27_72, _s22_37, "Editer facture r\xe9currente", _s25_26, _s45_7, _s25_27, _s51_6, _s26_11, "Facture r\xe9currente archiv\xe9e avec succ\xe8s", _s25_28, "Facture r\xe9currente supprim\xe9e avec succ\xe8s", _s25_29, _s47_8, _s26_12, "Facture r\xe9currente restaur\xe9e avec succ\xe8s", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s30_38, _s25_30, _s37_29, "send_date", "Date d'envoi", "auto_bill_on", "Autofacturer le", _s28_7, _s32_17, "profit", "Profit", "line_item", "Ligne d'article", _s18_47, _s21_117, _s23_17, "Accepter le paiement suppl\xe9mentaire pour pourboire", _s19_31, _s22_93, _s24_33, "Supporter le paiement au minimum du montant partiel/d\xe9p\xf4t", "test_mode", "Mode test", "opened", "Ouvert(e)", _s30_4, _s24_67, _s30_5, _s20_102, "gateway_success", _s18_131, "gateway_failure", _s19_82, "gateway_error", _s20_103, "email_send", "Envoi de l'e-mail", _s17_49, _s24_68, "failure", "\xc9chec", "quota_exceeded", "Quota d\xe9pass\xe9", _s16_70, "\xc9chec en amont", "system_logs", "Logs syst\xe8me", "view_portal", "Voir le portail", "copy_link", "Copier le lien", "token_billing", "Enregister les d\xe9tails de paiement", _s24_34, "Bienvenue sur Invoice Ninja", "always", "Toujours", "optin", "Adh\xe9sion", "optout", "D\xe9sadh\xe9sion", "label", "Intitul\xe9", "client_number", _s16_271, "auto_convert", _s25_63, "company_name", _s19_83, "reminder1_sent", "Rappel 1 envoy\xe9", "reminder2_sent", "Rappel 2 envoy\xe9", "reminder3_sent", "Rappel 3 envoy\xe9", _s18_49, _s23_53, "pdf_page_info", "Page :current sur :total", _s16_72, "Les factures ont \xe9t\xe9 envoy\xe9es par email avec succ\xe8s", "emailed_quotes", "Les offres ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_credits", "Les cr\xe9dits ont \xe9t\xe9 envoy\xe9s par e-mail avec succ\xe8s", "gateway", "Passerelle", "view_in_stripe", _s16_272, "rows_per_page", "Lignes par page", "hours", "Heures", "statement", "Relev\xe9", "taxes", "Taxes", "surcharge", "Majoration", "apply_payment", _s21_118, "apply_credit", "Appliquer cr\xe9dit", "apply", "Appliquer", "unapplied", "Non appliqu\xe9", "select_label", "S\xe9lectionnez le label", "custom_labels", "Labels personnalis\xe9s", "record_type", _s21_119, "record_name", "Nom d'enregistrement", "file_type", "Type de fichier", "height", "Hauteur", "width", "Largeur", "to", "\xc0", "health_check", "\xc9tat de sant\xe9", "payment_type_id", _s16_273, "last_login_at", "Derni\xe8re connexion", "company_key", _s16_274, "storefront", "Vitrine", "storefront_help", "Autoriser les tierces parties \xe0 cr\xe9er des factures", "client_created", "Client cr\xe9\xe9", _s20_45, "E-mail de paiement en ligne", _s20_47, "E-mail de paiement manuel", "completed", "Effectu\xe9", "gross", "Brut", "net_amount", "Montant net", "net_balance", "Solde net", "client_settings", "Param\xe8tres client", _s17_51, _s22_94, _s17_53, _s22_95, "selected_quotes", "Devis s\xe9lectionn\xe9s", "selected_tasks", _s20_104, _s17_55, _s22_96, _s17_57, _s16_275, _s17_59, "Factures en retard", "recent_payments", "Paiements r\xe9cents", "upcoming_quotes", "Devis \xe0 venir", "expired_quotes", "Devis expir\xe9s", "create_client", "Cr\xe9er un client", "create_invoice", _s17_159, "create_quote", "Cr\xe9er un devis", "create_payment", "Nouveau paiement", "create_vendor", _s20_105, "update_quote", "Mettre \xe0 jour le devis", "delete_quote", "Supprimer ce devis", "update_invoice", _s24_69, "delete_invoice", _s20_106, "update_client", _s23_54, "delete_client", _s19_84, "delete_payment", _s21_120, "update_vendor", _s28_71, "delete_vendor", "Supprimer ce fournisseur", "create_expense", "Nouvelle d\xe9pense", "update_expense", _s24_70, "delete_expense", _s20_107, "create_task", "Cr\xe9er une t\xe2che", "update_task", _s22_97, "delete_task", "Supprimer la t\xe2che", "approve_quote", "Approuver le devis", "off", "Ferm\xe9", "when_paid", _s16_276, "expires_on", "Expire le", "free", "Gratuit", "plan", "Plan", "show_sidebar", _s26_49, "hide_sidebar", _s25_64, "event_type", _s16_277, "target_url", "Cible", "copy", "Copier", "must_be_online", _s72_0, _s17_61, _s30_39, "api_webhooks", "API Webhooks", "search_webhooks", _s28_72, "search_webhook", _s22_98, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nouveau Webhook", "edit_webhook", "Modifier le Webhook", "created_webhook", _s33_27, "updated_webhook", _s39_8, _s16_74, _s36_23, "deleted_webhook", _s37_30, "removed_webhook", _s35_28, _s16_75, _s37_31, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "Jetons d'API", "api_docs", "Documentation des API", "search_tokens", _s26_50, "search_token", _s20_108, "token", "Jeton", "tokens", "Jetons", "new_token", "Nouveau jeton", "edit_token", "\xc9diter ce jeton", "created_token", "Jeton cr\xe9\xe9 avec succ\xe8s", "updated_token", "Jeton mis \xe0 jour avec succ\xe8s", "archived_token", "Jeton archiv\xe9 avec succ\xe8s", "deleted_token", "Jeton supprim\xe9 avec succ\xe8s", "removed_token", _s33_28, "restored_token", _s35_29, "archived_tokens", _s46_8, "deleted_tokens", _s47_9, "restored_tokens", _s47_10, _s19_33, "Enregistrement client", _s24_36, "Autoriser les clients \xe0 s'enregistrer sur le portail", _s21_49, "Personnaliser & pr\xe9visualiser", "email_invoice", "Envoyer la facture par e-mail", "email_quote", "Envoyer ce devis par e-mail", "email_credit", "Cr\xe9dit par mail", "email_payment", "Re\xe7u du paiement par courriel", _s20_50, "Le client n'a pas d'adresse mail d\xe9finie", "ledger", "Grand livre", "view_pdf", "Voir PDF", "all_records", _s24_71, "owned_by_user", _s26_51, _s16_78, "Cr\xe9dit restant", "contact_name", "Nom du contact", "use_default", _s29_54, _s16_80, "Rappels infinis", "number_of_days", "Nombre de jours", _s23_19, "Configurer les conditions de paiements", "payment_term", "Condition de paiement", _s16_81, "Nouvelle condition de paiement", _s17_65, "\xc9diter la condition de paiement", _s20_51, "Conditions de paiement cr\xe9\xe9es avec succ\xe8s", _s20_52, "Conditions de paiement mises \xe0 jour avec succ\xe8s", _s21_50, "Conditions de paiement archiv\xe9es avec succ\xe8s", _s20_53, _s40_6, _s20_54, _s40_6, _s21_51, "Les conditions de paiements ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "S'identifier avec l'email", "change", "Modifier", _s23_21, "Modifier la mise en page pour le mobile ?", _s24_37, _s36_24, "send_from_gmail", "Envoyer depuis Gmail", "reversed", "Invers\xe9", "cancelled", "Annul\xe9", "credit_amount", _s17_160, "quote_amount", "Montant devis", "hosted", "H\xe9berg\xe9", "selfhosted", "Auto-h\xe9berg\xe9", "exclusive", "Exclusif", "inclusive", "Inclusif", "hide_menu", "Masquer le menu", "show_menu", _s16_278, _s18_51, "Rembours\xe9 partiellement", _s16_83, "Rechercher des documents", "search_designs", "Rechercher des designs", "search_invoices", "Rechercher des factures", "search_clients", "Rechercher des clients", "search_products", "Rechercher des produits", "search_quotes", "Rechercher des devis", "search_credits", _s20_109, "search_vendors", _s25_65, "search_users", "Rechercher des utilisateurs", _s16_84, _s25_66, "search_tasks", "Rechercher des t\xe2ches", "search_settings", "Rechercher des param\xe8tres", "search_projects", "Rechercher des projets", "search_expenses", "Rechercher des d\xe9penses", "search_payments", "Rechercher des r\xe8glements", "search_groups", "Rechercher des groupes", "search_company", "Rechercher des entreprises", "search_document", _s23_55, "search_design", _s21_121, "search_invoice", _s22_99, "search_client", _s21_122, "search_product", _s22_100, "search_quote", _s25_67, "search_credit", _s21_123, "search_vendor", "Recherche de 1 fournisseurs", "search_user", _s26_52, "search_tax_rate", _s27_73, "search_task", _s20_110, "search_project", _s21_124, "search_expense", _s22_101, "search_payment", _s23_56, "search_group", _s21_125, "refund_payment", "Remboursement du paiement", _s17_69, "Facture annul\xe9e", _s18_53, "Factures annul\xe9es", _s16_90, _s37_32, _s17_70, _s42_14, "reverse", "Inverse", "full_name", "Nom complet", _s17_71, "Ville/ Province (D\xe9partement)/ CP", _s17_73, "Ville/Province (D\xe9partement)/Code postal", "custom1", "Personnalis\xe91", "custom2", "Personnalis\xe92", "custom3", "Troisi\xe8me champ personnalis\xe9", "custom4", "Quatri\xe8me champ personnalis\xe9", "optional", "Optionnel", "license", "Licence", "purge_data", _s18_132, _s16_91, "Les donn\xe9es de l'entreprise ont \xe9t\xe9 purg\xe9es avec succ\xe8s", _s18_54, "Attention : Cette action va supprimer vos donn\xe9es et est irr\xe9versible", "invoice_balance", "Solde facture", "age_group_0", "0 - 30 jours", "age_group_30", "30 -60 jours", "age_group_60", "60 - 90 jours", "age_group_90", "90 - 120 jours", "age_group_120", "120+ jours", "refresh", "Rafra\xeechir", "saved_design", "Design enregistr\xe9", "client_details", "Coordonn\xe9es du client", "company_address", _s23_57, "invoice_details", "D\xe9tails de la facture", "quote_details", "D\xe9tail du devis", "credit_details", "D\xe9tails du cr\xe9dit", "product_columns", "Colonnes de produits", "task_columns", "Colonnes de t\xe2ches", "add_field", _s16_279, "all_events", "Tous les \xe9v\xe9nements", "permissions", "Permissions", "none", "Aucun(e)", "owned", "Propri\xe9taire", "payment_success", "Paiement r\xe9ussi", "payment_failure", "\xc9chec du paiement", "invoice_sent", _s22_102, "quote_sent", "Devis envoy\xe9", "credit_sent", "Cr\xe9dit envoy\xe9", "invoice_viewed", "Facture vue", "quote_viewed", "Devis vue", "credit_viewed", "Cr\xe9dit vue", "quote_approved", "Devis approuv\xe9", _s25_32, _s33_29, _s16_92, _s19_85, "apply_license", _s18_133, "cancel_account", _s19_86, _s22_44, "Attention : Ceci va supprimer d\xe9finitivement votre compte, il n'y a pas d'annulation possible.", "delete_company", "Supprimer la soci\xe9t\xe9", _s22_45, "Attention : Ceci supprimera d\xe9finitivement votre soci\xe9t\xe9, il n'y a pas d'annulation.", "enabled_modules", "Modules activ\xe9s", "converted_quote", "La devis a \xe9t\xe9 converti avec succ\xe8s", "credit_design", "Design des cr\xe9dits", "includes", "Inclus", "header", "En-t\xeate", "load_design", "Charger un mod\xe8le", "css_framework", "Framework CSS", "custom_designs", "Mod\xe8les personnalis\xe9s", "designs", "Mod\xe8les", "new_design", "Nouveau mod\xe8le", "edit_design", "\xc9diter le mod\xe8le", "created_design", _s32_18, "updated_design", _s38_18, "archived_design", _s35_30, "deleted_design", _s36_25, "removed_design", _s34_24, "restored_design", _s36_26, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Propositions", "tickets", "Tickets", _s16_96, "Devis r\xe9current", "recurring_tasks", _s18_134, _s18_55, "Gestion des comptes", "credit_date", "Date d'avoir", "credit", "Cr\xe9dit", "credits", "Cr\xe9dits", "new_credit", "Entrer un cr\xe9dit", "edit_credit", _s16_280, "created_credit", "Cr\xe9dit cr\xe9\xe9 avec succ\xe8s", "updated_credit", _s38_19, "archived_credit", "Cr\xe9dit archiv\xe9 avec succ\xe8s", "deleted_credit", "Cr\xe9dit supprim\xe9 avec succ\xe8s", "removed_credit", _s34_25, "restored_credit", "Cr\xe9dit restaur\xe9 avec succ\xe8s", _s16_98, ":count cr\xe9dits archiv\xe9s avec succ\xe8s", "deleted_credits", ":count cr\xe9dits supprim\xe9s avec succ\xe8s", _s16_99, _s36_9, "current_version", "Version actuelle", "latest_version", _s16_281, "update_now", "Mettre \xe0 jour", _s26_19, _s56_1, _s16_100, _s22_103, "app_updated", _s42_15, "learn_more", "En savoir plus", "integrations", "Int\xe9grations", "tracking_id", "ID de suivi", _s17_75, _s20_111, "credit_footer", "Pied de page des credits", "credit_terms", _s36_27, "new_company", "Nouveau compte", "added_company", "L'entreprise a \xe9t\xe9 ajout\xe9e", "company1", "Champ personnalis\xe9 Entreprise 1", "company2", "Champ personnalis\xe9 Entreprise 2", "company3", "Champ personnalis\xe9 Entreprise 3", "company4", "Champ personnalis\xe9 Entreprise 4", "product1", "Champ personnalis\xe9 Produit 1", "product2", "Champ personnalis\xe9 Produit 2", "product3", "Champ personnalis\xe9 Produit 3", "product4", "Champ personnalis\xe9 Produit 4", "client1", "Champ personnalis\xe9 Client 1", "client2", _s21_126, "client3", _s21_127, "client4", _s21_128, "contact1", "Champ personnalis\xe9 Contact 1", "contact2", "Champ personnalis\xe9 Contact 2", "contact3", "Champ personnalis\xe9 Contact 3", "contact4", "Champ personnalis\xe9 Contact 4", "task1", "Champ personnalis\xe9 T\xe2che 1", "task2", "Champ personnalis\xe9 T\xe2che 2", "task3", "Champ personnalis\xe9 T\xe2che 3", "task4", "Champ personnalis\xe9 T\xe2che 4", "project1", "Champ personnalis\xe9 Projet 1", "project2", "Champ personnalis\xe9 Projet 2", "project3", "Champ personnalis\xe9 Projet 3", "project4", "Champ personnalis\xe9 Projet 4", "expense1", "Champ personnalis\xe9 D\xe9pense 1", "expense2", "Champ personnalis\xe9 D\xe9pense 2", "expense3", "Champ personnalis\xe9 D\xe9pense 3", "expense4", "Champ personnalis\xe9 D\xe9pense 4", "vendor1", _s26_53, "vendor2", _s26_54, "vendor3", _s26_55, "vendor4", _s26_56, "invoice1", "Champ personnalis\xe9 Facture 1", "invoice2", "Champ personnalis\xe9 Facture 2", "invoice3", "Champ personnalis\xe9 Facture 3", "invoice4", "Champ personnalis\xe9 Facture 4", "payment1", "Champ personnalis\xe9 Paiement 1", "payment2", "Champ personnalis\xe9 Paiement 2", "payment3", "Champ personnalis\xe9 Paiement 3", "payment4", "Champ personnalis\xe9 Paiement 4", "surcharge1", "Autre frais 1", "surcharge2", "Autre frais 2", "surcharge3", "Autre frais 3", "surcharge4", "Autre frais 4", "group1", "Champ personnalis\xe9 Groupe 1", "group2", "Champ personnalis\xe9 Groupe 2", "group3", "Champ personnalis\xe9 Groupe 3", "group4", "Champ personnalis\xe9 Groupe 4", "reset", "Remettre \xe0 z\xe9ro", "number", "Nombre", "export", "Exporter", "chart", "Graphique", "count", "Compte", "totals", "Totaux", "blank", "Vide", "day", "Jour", "month", "Mois", "year", "Ann\xe9e", "subgroup", "Sous-groupe", "is_active", "Actif", "group_by", "Grouper par", "credit_balance", "Solde du cr\xe9dit", _s18_61, _s29_55, _s17_77, "Nom du contact", "contact_phone", _s20_112, _s21_53, "Valeur champ personnalis\xe9 Contact 1", _s21_54, "Valeur champ personnalis\xe9 Contact 2", _s21_55, "Valeur champ personnalis\xe9 Contact 3", _s21_56, "Valeur champ personnalis\xe9 Contact 4", _s17_79, "Rue", _s17_80, "Appt/B\xe2timent", "shipping_city", "Ville", "shipping_state", _s18_135, _s20_55, "Code postal", _s16_130, "Pays", _s16_132, "Rue", _s16_133, "Appt/B\xe2timent", "billing_city", "Ville", "billing_state", _s18_135, _s19_36, "Code postal", "billing_country", "Pays", "client_id", "ID du client", "assigned_to", "Assign\xe9 \xe0", "created_by", "Cr\xe9\xe9 par :name", "assigned_to_id", "Assign\xe9 \xe0 ID", "created_by_id", "Cr\xe9\xe9 par ID", "add_column", "Ajouter une colonne", "edit_columns", "\xc9diter les colonnes", "columns", "Colonnes", "aging", "Vieillissement", "profit_and_loss", "Profits et Pertes", "reports", "Rapports", "report", "Rapport", "add_company", "Ajouter compte", "unpaid_invoice", "Facture impay\xe9e", "paid_invoice", "Facture pay\xe9e", _s16_134, "Devis non-approuv\xe9", "help", "Aide", "refund", "Remboursement", "refund_date", "Date du remboursement", "filtered_by", "Filtr\xe9 par", "contact_email", _s19_87, "multiselect", _s18_136, "entity_state", "\xc9tat", "verify_password", _s24_72, "applied", "Publi\xe9", _s21_57, "Contient les erreurs r\xe9centes des journaux", _s30_8, "Nous avons re\xe7u votre message et r\xe9pondrons dans les meilleurs d\xe9lais", "message", "Message", "from", "De", _s20_57, "Voir les d\xe9tails du produit", _s25_34, _s78_, _s20_59, "Le g\xe9n\xe9rateur de PDF n\xe9cessite la version :version", _s18_64, _s31_30, _s23_23, _s41_9, _s18_66, "Modifier les param\xe8tres", "support_forum", "forum de support", "about", "\xc0 propos", "documentation", "Documentation", "contact_us", "Nous joindre", "subtotal", "Sous-total", "line_total", "Total", "item", "Article", "credit_email", "Courriel de cr\xe9dit", "iframe_url", "Site internet", "domain_url", "URL du domaine", _s21_58, "Mot de passe trop court", _s20_60, "Le mot de passe doit comporter au moins une majuscule et un nombre", _s19_38, "T\xe2che du portail client", _s23_24, _s33_30, _s20_61, "Saisissez une valeur", "deleted_logo", "Le logo a \xe9t\xe9 supprim\xe9", "yes", "Oui", "no", "Non", "generate_number", _s17_161, "when_saved", "Lors de l'enregistrement", "when_sent", "Lors de l'envoi", "select_company", "S\xe9lectionner une entreprise", "float", "Flottant", "collapse", "R\xe9duire", "show_or_hide", "Afficher/cacher", "menu_sidebar", "Barre lat\xe9rale du menu", "history_sidebar", _s18_137, "tablet", "Tablette", "mobile", "Mobile", "desktop", "Bureau", "layout", "Pr\xe9sentation", "view", "Voir", "module", "Module", "first_custom", _s20_113, "second_custom", _s19_88, "third_custom", _s22_104, "show_cost", "Voir le co\xfbt", _s17_82, _s17_83, "show_cost_help", "Afficher un champ co\xfbt du produit pour suivre la marge", _s21_59, "Voir la quantit\xe9 du produit", _s26_21, "Afficher un champ de quantit\xe9 du produit, sinon en choisir un par d\xe9faut", _s21_61, "Voir la quantit\xe9 sur la facture", _s26_22, "Afficher un champ de quantit\xe9 pour la position, sinon en choisir un par d\xe9faut", _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s19_89, _s21_65, "Mettre automatiquement la quantit\xe9 de la position \xe0 un", "one_tax_rate", "Un taux de taxe", "two_tax_rates", _s17_162, "three_tax_rates", "Trois taux de taxe", _s16_138, _s23_58, "user", "Utilisateur", "invoice_tax", "Taxe de la facture", "line_item_tax", "Taxe de la position", "inclusive_taxes", "Taxes incluses", _s17_84, "Taux de taxe de la facture", "item_tax_rates", "Taux de taxe de la position", _s18_68, _s31_31, "configure_rates", "Configurer les taux", _s18_69, _s18_70, "tax_settings", "R\xe9glages des taxes", _s18_71, "Taux de taxes", "accent_color", _s27_74, "switch", "Changer", _s19_40, "Liste s\xe9par\xe9e par des virgules", "options", "Options", _s16_140, "Texte sur une ligne", "multi_line_text", "Texte multi-lignes", "dropdown", _s16_282, "field_type", "Type du champ", _s27_35, "Un courriel de r\xe9cup\xe9ration du mot de passe a \xe9t\xe9 envoy\xe9", "submit", "Envoyer", _s16_142, "R\xe9cup\xe9rer votre mot de passe", "late_fees", "Frais de retard", "credit_number", "Num\xe9ro d'avoir", "payment_number", _s18_138, "late_fee_amount", "Montant de p\xe9nalit\xe9 de retard", _s16_143, "Pourcentage de p\xe9nalit\xe9 de retard", "schedule", "Planification", "before_due_date", "Avant la date d'\xe9ch\xe9ance", "after_due_date", "Apr\xe8s la date d'\xe9ch\xe9ance", _s18_73, _s28_73, "days", "Jours", "invoice_email", "E-mail de facture", "payment_email", "E-mail de paiement", "partial_payment", _s16_283, "payment_partial", "Partial Payment", _s21_66, "Mail de paiement partiel", "quote_email", "E-mail de devis", _s16_145, "Rappel sans fin", _s16_147, _s22_105, "administrator", "Administrateur", _s18_74, "Permettre \xe0 l'utilisateur de g\xe9rer les utilisateurs, modifier les param\xe8tres et de modifier tous les enregistrements", "user_management", _s24_73, "users", "Utilisateurs", "new_user", _s18_139, "edit_user", _s20_114, "created_user", "Utilisateur cr\xe9\xe9 avec succ\xe8s avec succ\xe8s", "updated_user", "Utilisateur mis \xe0 jour avec succ\xe8s", "archived_user", "Utilisateur archiv\xe9 avec succ\xe8s", "deleted_user", "Utilisateur supprim\xe9 avec succ\xe8s", "removed_user", "L'utilisateur a \xe9t\xe9 supprim\xe9", "restored_user", "Commande restaur\xe9e avec succ\xe8s", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s19_90, "invoice_options", "Options de facturation", _s17_86, _s24_74, _s22_52, 'Afficher la ligne "Pay\xe9 \xe0 ce jour" sur vos factures seulement une fois qu\'un paiement a \xe9t\xe9 re\xe7u.', _s23_26, _s18_140, _s28_20, "Inclure l'image attach\xe9e dans la facture.", _s16_151, "Voir les en-t\xeates sur", _s16_152, "Voir les pieds de page sur", "first_page", "Premi\xe8re page", "all_pages", "Toutes les pages", "last_page", "Derni\xe8re page", "primary_font", "Police principale", "secondary_font", "Police secondaire", "primary_color", _s18_141, "secondary_color", _s18_142, "page_size", "Taille de Page", "font_size", _s16_284, "quote_design", "Mise en page des Devis", "invoice_fields", _s17_163, "product_fields", "Champs de produit", "invoice_terms", _s25_68, "invoice_footer", "Pied de facture", "quote_terms", "Conditions des devis", "quote_footer", "Pied de page des devis", _s18_75, "Envoyer automatiquement par courriel", _s23_27, "Envoyer automatiquement par courriel les factures r\xe9currentes lorsqu'elles sont cr\xe9\xe9s.", _s18_76, "Archiver automatiquement", _s23_28, "Archiver automatiquement les devis lorsqu'ils sont convertis.", _s18_77, _s25_63, _s23_29, "Convertir automatiquement un devis en facture d\xe8s qu'il est approuv\xe9 par le client.", _s17_88, _s29_56, "freq_daily", "Quotidien", "freq_weekly", "Hebdomadaire", "freq_two_weeks", "Deux semaines", "freq_four_weeks", "Quatre semaines", "freq_monthly", "Mensuelle", "freq_two_months", "Deux mois", _s17_90, "Trimestrielle", _s16_153, "Quatre mois", "freq_six_months", "Six mois", "freq_annually", "Annuelle", "freq_two_years", "Deux ans", _s16_154, "Trois ans", "never", "Jamais", "company", "Entreprise", _s17_91, "Num\xe9ros g\xe9n\xe9r\xe9s", "charge_taxes", "Taxe suppl\xe9mentaire", "next_reset", _s23_59, "reset_counter", "Remettre le compteur \xe0 z\xe9ro", _s16_155, _s17_164, "number_padding", _s23_60, "general", "G\xe9n\xe9ral", "surcharge_field", "Champ Surcharge", "company_field", "Champ d'entreprise", "company_value", _s19_91, "credit_field", "Champ de Cr\xe9dit", "invoice_field", "Champ de facture", _s17_93, "Majoration de facture", "client_field", "Champ de client", "product_field", "Champ de produit", "payment_field", "Champ de Paiement", "contact_field", "Champ de contact", "vendor_field", "Champ de fournisseur", "expense_field", "Champ de d\xe9pense", "project_field", "Champ de projet", "task_field", "Champ de t\xe2che", "group_field", "Champ de Groupe", "number_counter", _s18_143, "prefix", "Pr\xe9fixe", "number_pattern", _s16_285, "messages", "Messages", "custom_css", _s16_286, _s17_95, _s23_61, _s16_157, _s19_92, _s21_68, "Afficher la signature du client sur la facture / le devis PDF.", _s25_40, _s48_2, _s30_9, "Exiger que le client confirme qu'il accepte les conditions de facturation", _s23_30, "Case \xe0 cocher pour les conditions d'offre", _s28_21, "Exiger que le client confirme qu'il accepte les conditions de l'offre", _s25_41, _s20_115, _s30_10, "Exiger que le client signe", _s23_31, "Signature de l'offre", _s22_54, _s42_16, _s27_36, "Autoriser la cr\xe9ation d'un mot de passe pour chaque contact. Si un mot de passe est cr\xe9\xe9, le contact devra entrer un mot de passe avant de voir les factures.", "authorization", "Autorisation", "subdomain", "Sous-domaine", "domain", "Domaine", "portal_mode", "Mode portail", "email_signature", "Cordialement,", _s24_38, "Rendez le r\xe8glement de vos clients plus facile en ajoutant les markup schema.org \xe0 vos courriels.", "plain", "Brut", "light", "Clair", "dark", "Sombre", "email_design", _s18_144, "attach_pdf", "Joindre PDF", _s16_158, "Joindre les Documents", "attach_ubl", "Joindre UBL", "email_style", "Style d'email", _s19_42, "Activer le balisage", "reply_to_email", "Adresse de r\xe9ponse", "reply_to_name", "Reply-To Name", "bcc_email", "Courriel CCI", "processed", "Trait\xe9", "credit_card", "Carte de Cr\xe9dit", "bank_transfer", _s17_165, "priority", "Priorit\xe9e", "fee_amount", _s17_166, "fee_percent", _s21_129, "fee_cap", _s16_287, "limits_and_fees", "Limites/Frais", "enable_min", "Activer min", "enable_max", "Activer max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s26_57, "credentials", "Identifiants", "update_address", "Mettre \xe0 jour l'adresse", _s19_45, "Mettre \xe0 jour l'adresse du client avec les d\xe9tails fournis", "rate", "Taux", "tax_rate", "Taux de taxe", "new_tax_rate", _s20_116, "edit_tax_rate", _s22_106, _s16_160, "Taux de taxe cr\xe9\xe9 avec succ\xe8s", _s16_161, "Taux de taxe mis \xe0 jour avec succ\xe8s", _s17_98, "Taux de taxe archiv\xe9 avec succ\xe8s", _s16_162, _s42_17, _s17_99, _s42_18, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Remplissage auto des produits", _s18_80, "La s\xe9lection d\u2019un produit entrainera la MAJ de la description et du prix", "update_products", "Mise \xe0 jour auto des produits", _s20_65, _s65_1, _s16_163, _s22_107, _s21_69, "Convertir automatiquement les prix des produits dans la devise du client", "fees", "Frais", "limits", "Limites", "provider", "Fournisseur", "company_gateway", _s22_108, _s16_165, "Passerelles de paiements", _s19_46, _s19_93, _s20_66, _s20_117, _s23_32, _s37_33, _s23_33, _s43_5, _s24_39, _s40_7, _s23_34, _s41_10, _s24_40, _s41_11, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "Continuer l'\xe9dition", "discard_changes", "Ignorer les modifications", "default_value", "Valeur Par D\xe9faut", "disabled", "D\xe9sactiv\xe9", "currency_format", _s16_288, _s21_70, "Premier Jour de la Semaine", _s23_35, _s23_62, "sunday", "Dimanche", "monday", "Lundi", "tuesday", "Mardi", "wednesday", "Mercredi", "thursday", "Jeudi", "friday", "Vendredi", "saturday", "Samedi", "january", "Janvier", "february", "F\xe9vrier", "march", "Mars", "april", "Avril", "may", "Mai", "june", "Juin", "july", "Juillet", "august", "Ao\xfbt", "september", "Septembre", "october", "Octobre", "november", "Novembre", "december", "D\xe9cembre", "symbol", "Symbole", "ocde", "Code", "date_format", "Format de la date", "datetime_format", _s17_167, "military_time", "24H", _s18_81, "Affichage sur 24h", "send_reminders", _s19_94, "timezone", "Fuseau horaire", _s19_47, _s18_145, _s17_101, _s18_146, _s19_49, "Filtr\xe9 par Facture", _s18_82, "Filtr\xe9 par Client", _s18_84, "Filtr\xe9 par Vendeur", "group_settings", "Param\xe8tres de groupe", "group", "Groupe", "groups", "Groupes", "new_group", "Nouveau Groupe", "edit_group", _s16_289, "created_group", _s32_19, "updated_group", _s38_20, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s35_31, "deleted_group", _s36_28, "restored_group", _s36_29, "upload_logo", "Envoyer le logo", "uploaded_logo", "Le logo a \xe9t\xe9 envoy\xe9 avec succ\xe8s", "logo", "Logo", "saved_settings", "Les param\xe8tres ont \xe9t\xe9 enregistr\xe9s avec succ\xe8s", _s16_169, "R\xe9glages du produit", "device_settings", _s24_75, "defaults", "Valeurs par d\xe9faut", "basic_settings", _s18_147, _s17_103, _s18_148, "company_details", "Informations sur l\u2019entreprise", "user_details", "Utilisateur", "localization", "Localisation", "online_payments", _s18_149, "tax_rates", "Taux de taxe", "notifications", "Notifications", "import_export", "Importer/Exporter", "custom_fields", _s20_118, "invoice_design", "Mod\xe8le de facture", "buy_now_buttons", _s26_58, "email_settings", "Param\xe8tres d'e-mail", _s23_37, "Mod\xe8les & Rappels", _s22_55, _s27_75, _s19_51, _s25_69, "price", "Prix", "email_sign_up", "Inscription par email", "google_sign_up", _s23_63, _s27_40, "Merci pour votre achat !", "redeem", "Rembourser", "back", "Retour", "past_purchases", "Achats ant\xe9rieurs", _s19_53, _s17_168, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count utilisateur(s)", "upgrade", "Mettre \xe0 niveau", _s25_45, "Veuillez entrer un pr\xe9nom", _s24_42, _s22_109, _s33_21, "Veuillez accepter les conditions d'utilisation et la politique de confidentialit\xe9 pour cr\xe9er un compte.", "i_agree_to_the", "J'accepte les", _s16_171, _s24_76, "privacy_policy", _s28_74, "sign_up", "S\u2019enregistrer", "account_login", "Connexion \xe0 votre compte", "view_website", "Voir le site Web", "create_account", "Cr\xe9er un compte", "email_login", "Email de connexion", "create_new", "Cr\xe9er", _s18_86, _s32_20, _s21_73, "Veuillez enregistrer ou annuler vos modifications", "download", "T\xe9l\xe9charger", _s27_41, "\u03a7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ac\u03bd\u03bf \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", "take_picture", "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03c3\u03b5\u03c4\u03b5", "upload_file", "Envoyer un fichier", "document", "Document", "documents", "Documents", "new_document", "\u039d\u03ad\u03bf \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "edit_document", "\u0395\u03ba\u03b4\u03ce\u03c3\u03b5\u03c4\u03b5 \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", _s17_105, "Le document a \xe9t\xe9 envoy\xe9 avec succ\xe8s", _s16_173, "Document mis \xe0 jour avec succ\xe8s", _s17_106, "Document archiv\xe9 avec succ\xe8s", _s16_174, _s38_21, _s17_107, _s38_22, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "expense_date", _s18_150, "pending", "En attente", _s16_175, "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7", _s16_176, "\u03a3\u03b5 \u03b5\u03ba\u03ba\u03c1\u03b5\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1", _s16_177, "\u039c\u03b5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "converted", "Converti", _s24_44, "Ajouter un document \xe0 la facture", "exchange_rate", "Taux de change", _s16_178, "Convertir la devise", "mark_paid", "Marquer comme pay\xe9", "category", "Cat\xe9gorie", "address", "Adresse", "new_vendor", _s19_95, "created_vendor", "Fournisseur cr\xe9\xe9 avec succ\xe8s", "updated_vendor", "Founisseur mis \xe0 jour avec succ\xe8s", "archived_vendor", "Fournisseur archiv\xe9 avec succ\xe8s", "deleted_vendor", "Fournisseur supprim\xe9 avec succ\xe8s", "restored_vendor", "Fournisseur restaur\xe9 avec succ\xe8s", _s16_179, ":count fournisseurs archiv\xe9s avec succ\xe8s", "deleted_vendors", ":count fournisseurs supprim\xe9s avec succ\xe8s", _s16_180, _s36_11, "new_expense", "Saisir une d\xe9pense", "created_expense", "D\xe9pense cr\xe9\xe9e avec succ\xe8s", "updated_expense", "D\xe9pense mise \xe0 jour avec succ\xe8s", _s16_181, "D\xe9pense archiv\xe9e avec succ\xe8s", "deleted_expense", "D\xe9pense supprim\xe9e avec succ\xe8s", _s16_182, "D\xe9pense restaur\xe9e avec succ\xe8s", _s17_109, "D\xe9penses archiv\xe9es avec succ\xe8s", _s16_183, "D\xe9penses supprim\xe9es avec succ\xe8s", _s17_110, _s37_14, "copy_shipping", "Copier exp\xe9dition", "copy_billing", _s18_151, "design", "Design", _s21_74, "\xc9l\xe9ment non trouv\xe9", "invoiced", "Factur\xe9", "logged", "Enregistr\xe9", "running", "En cours", "resume", "Reprendre", "task_errors", "Merci de corriger les horaires conflictuels", "start", "D\xe9but", "stop", "Fin", "started_task", "T\xe2che d\xe9marr\xe9e avec succ\xe8s", "stopped_task", "T\xe2che stopp\xe9e avec succ\xe8s", "resumed_task", "T\xe2che relanc\xe9e avec succ\xe8s", "now", "Maintenant", _s16_184, "D\xe9marrer automatiquement les t\xe2ches", "timer", "Compteur", "manual", "Manuel", "budgeted", "Budg\xe9tis\xe9", "start_time", "D\xe9but", "end_time", "Heure de fin", "date", "Date", "times", "Horaires", "duration", "Dur\xe9e", "new_task", "Nouvelle t\xe2che", "created_task", "T\xe2che cr\xe9\xe9e avec succ\xe8s", "updated_task", "T\xe2che mise \xe0 jour avec succ\xe8s", "archived_task", "T\xe2che archiv\xe9e avec succ\xe8s", "deleted_task", "T\xe2che supprim\xe9e avec succ\xe8s", "restored_task", "T\xe2che restaur\xe9e avec succ\xe8s", "archived_tasks", ":count t\xe2ches archiv\xe9es avec succ\xe8s", "deleted_tasks", ":count t\xe2ches supprim\xe9es avec succ\xe8s", "restored_tasks", _s34_19, _s19_55, _s22_109, "budgeted_hours", _s16_290, "created_project", _s32_21, "updated_project", _s39_9, _s16_186, _s35_32, "deleted_project", _s36_30, _s16_187, "Le projet a \xe9t\xe9 r\xe9tabli avec succ\xe8s", _s17_111, ":count projet(s) a (ont) \xe9t\xe9 archiv\xe9(s)", _s16_188, ":count projet(s) a (ont) \xe9t\xe9 supprim\xe9(s) avec succ\xe8s", _s17_112, _s37_15, "new_project", "Nouveau projet", _s27_45, "Merci d'utiliser notre app !", "if_you_like_it", _s27_76, "click_here", "cliquer ici", _s18_90, "Cliquer ici", "to_rate_it", "pour \xe9valuer notre app.", "average", "Moyenne", "unapproved", "Non approuv\xe9", _s30_15, _s49_2, "locked", "Verrouill\xe9", "authenticate", "Connexion", _s19_57, _s23_64, _s24_46, _s21_130, "footer", "Pied de page", "compare", "Comparer", "hosted_login", "Authentification Hosted", "selfhost_login", "Authentification Selfhost", "google_sign_in", _s21_131, "today", "Aujourd'hui", "custom_range", "Intervalle personnalis\xe9", "date_range", _s19_96, "current", "Actuel", "previous", "Pr\xe9c\xe9dent", "current_period", "P\xe9riode actuelle", _s17_113, "Comparaison de p\xe9riode", "previous_period", _s18_152, "previous_year", _s16_291, "compare_to", "Comparer \xe0", "last7_days", _s16_292, "last_week", "Semaine derni\xe8re", "last30_days", _s17_169, "this_month", "Mois en cours", "last_month", "Mois dernier", "this_year", "Cette ann\xe9e", "last_year", "Derni\xe8re ann\xe9e", "custom", "Personnalis\xe9", _s16_189, "Dupliquer la facture", "clone_to_quote", "Dupliquer en devis", "clone_to_credit", "Cloner en cr\xe9dit", "view_invoice", "Voir la facture", "convert", "Convertir", "more", "Plus", "edit_client", "Modifier ce client", "edit_product", "\xc9diter ce produit", "edit_invoice", _s19_97, "edit_quote", "\xc9diter ce devis", "edit_payment", "\xc9diter le paiement", "edit_task", "\xc9diter la t\xe2che", "edit_expense", "\xc9diter la d\xe9pensee", "edit_vendor", _s21_132, "edit_project", "Editer le projet", _s20_68, "Editer devis r\xe9current", "billing_address", _s22_110, _s16_191, "Adresse de Livraison", "total_revenue", "Revenu total", "average_invoice", "Facture moyenne", "outstanding", "Impay\xe9", "invoices_sent", _s24_77, "active_clients", "clients actifs", "close", "Fermer", "email", "E-mail", "password", "Mot de passe", "url", "URL", "secret", "Cl\xe9 secr\xe8te", "name", "Nom", "logout", "Se d\xe9connecter", "login", "Connexion", "filter", "Filtrer", "sort", "Trier", "search", "Rechercher", "active", "Actif", "archived", "Archiv\xe9", "deleted", "Supprim\xe9", "dashboard", "Tableau de bord", "archive", "Archiver", "delete", "Supprimer", "restore", "Restaurer", _s16_193, "Rafraichissement termin\xe9", _s23_38, "Entrez votre adresse e-mail", _s26_32, "Entez votre mot de passe", _s21_77, "Entrez votre URL", _s26_34, "Entrez la cl\xe9 produit", "ascending", "Ascendant", "descending", "Descendant", "save", "Sauvegarder", _s17_115, "Une erreur s'est produite", "paid_to_date", "Pay\xe9 \xe0 ce jour", "balance_due", "Montant d\xfb", "balance", "Solde", "overview", "Vue d'ensemble", "details", "D\xe9tails", "phone", "T\xe9l\xe9phone", "website", "Site Web", "vat_number", "Num\xe9ro de TVA", "id_number", "Num\xe9ro ID", "create", "Cr\xe9er", _s19_59, _s35_33, "error", "Erreur", _s16_195, _s20_119, "contacts", "Informations de contact", "additional", "Additionnel", "first_name", "Pr\xe9nom", "last_name", "Nom", "add_contact", _s18_153, "are_you_sure", "Voulez-vous vraiment effectuer cette action ?", "cancel", "Annuler", "ok", "Ok", "remove", "Supprimer", _s16_197, "L'adresse de courriel n'est pas correcte", "product", "Produit", "products", "Produits", "new_product", "Nouvel article", "created_product", "Produit cr\xe9\xe9 avec succ\xe8s", "updated_product", "Produit mis \xe0 jour avec succ\xe8s", _s16_199, "Produit archiv\xe9 avec succ\xe8s", "deleted_product", _s37_34, _s16_200, "Le produit a \xe9t\xe9 r\xe9tabli avec succ\xe8s", _s17_117, _s36_31, _s16_201, ":count produit(s) supprim\xe9(s) avec succ\xe8s", _s17_118, _s37_16, "product_key", "Produit", "notes", "Notes", "cost", "Co\xfbt", "client", "Client", "clients", "Clients", "new_client", "Nouveau client", "created_client", "Client cr\xe9\xe9 avec succ\xe8s", "updated_client", "Client modifi\xe9 avec succ\xe8s", "archived_client", "Client archiv\xe9 avec succ\xe8s", _s16_202, _s35_34, "deleted_client", "Client supprim\xe9 avec succ\xe8s", "deleted_clients", ":count clients supprim\xe9s avec succ\xe8s", "restored_client", "Client restaur\xe9 avec succ\xe8s", _s16_203, _s36_13, "address1", "Rue", "address2", "Appt/B\xe2timent", "city", "Ville", "state", _s18_135, "postal_code", "Code postal", "country", "Pays", "invoice", "Facture", "invoices", "Factures", "new_invoice", _s16_293, "created_invoice", "Facture cr\xe9\xe9e avec succ\xe8s", "updated_invoice", "Facture modifi\xe9e avec succ\xe8s", _s16_204, "Facture archiv\xe9e avec succ\xe8s", "deleted_invoice", "Facture supprim\xe9e avec succ\xe8s", _s16_205, "Facture restaur\xe9e avec succ\xe8s", _s17_119, ":count factures archiv\xe9es avec succ\xe8s", _s16_206, _s38_23, _s17_120, _s37_17, "emailed_invoice", "Facture envoy\xe9e par e-mail avec succ\xe8s", "emailed_payment", "Paiement envoy\xe9 par email avec succ\xe8s", "amount", "Montant", "invoice_number", "Num\xe9ro de facture", "invoice_date", "Date de facture", "discount", "Remise", "po_number", "N\xb0 de Bon de Commande", "terms", "Conditions", "public_notes", "Note publique", "private_notes", _s18_154, "frequency", "Fr\xe9quence", "start_date", "Date de d\xe9but", "end_date", "Date de fin", "quote_number", "Devis num\xe9ro", "quote_date", "Date du devis", "valid_until", "Valide jusqu'au", "items", "Articles", "partial_deposit", "Depot Partial", "description", "Description", "unit_cost", "Co\xfbt unitaire", "quantity", "Quantit\xe9", "add_item", "Ajouter Article", "contact", "Contact", "work_phone", "T\xe9l\xe9phone", "total_amount", "Montant Total", "pdf", "Fichier PDF", "due_date", "Date d'\xe9ch\xe9ance", _s16_207, _s16_283, "status", "Statut", _s17_121, "Etat de Facture", "quote_status", "\xc9tat du devis", _s22_56, "Cliquer pour ajouter un article (objet)", _s22_58, _s35_35, "count_selected", "nombre selectionne", "total", "Total", "percent", "Pourcent", "edit", "\xc9diter", "dismiss", "Quitter", _s20_70, "S\xe9lectionnez une date", _s22_59, "S\xe9lectionnez un client", _s24_48, "S\xe9lectionnez une facture", "task_rate", "Taux de t\xe2che", "settings", "Param\xe8tres", "language", "Langue", "currency", "Devise", "created_at", "Date de cr\xe9ation", "created_on", "Cr\xe9\xe9 le", "updated_at", "Mis \xe0 jour", "tax", "Taxe", _s30_17, "S\xe9lectionnez un num\xe9ro de facture", _s27_49, "S\xe9lectionner un num\xe9ro de devis", "past_due", "En retard", "draft", "Brouillon", "sent", "Envoy\xe9", "viewed", "Vu", "approved", "Approuv\xe9", "partial", "Partiel/d\xe9p\xf4t", "paid", "Pay\xe9", "mark_sent", _s20_120, _s22_61, "Facture marquee comme envoyee avec succes", _s22_62, "Facture marqu\xe9e comme envoy\xe9e", _s23_40, "Les factures ont \xe9t\xe9 marqu\xe9es envoy\xe9es", _s23_41, "Factures marqu\xe9es comme envoy\xe9es", "done", "Termin\xe9", _s37_18, "Veuillez introduire un nom de client", "dark_mode", "Mode sombre", _s27_51, "Recommencer k'app pour introduire l'app change", "refresh_data", "Rafra\xeechir les donn\xe9es", "blank_contact", "Details pour contacter la Banque", "activity", "Activit\xe9", _s16_209, "Pas d'archives trouves", "clone", "Dupliquer", "loading", "Chargement", "industry", "Champ", "size", "Taille", "payment_terms", "Conditions de paiement", "payment_date", _s16_294, "payment_status", _s16_295, _s16_211, "En attente", _s16_212, "Annul\xe9", _s16_213, "\xc9chou\xe9", _s16_214, "Compl\xe9t\xe9", _s16_215, _s23_65, _s16_216, "Remboursement", _s17_122, "Non appliqu\xe9", _s17_123, _s19_23, "net", "Net", "client_portal", "Portail client", "show_tasks", "Afficher des taches", "email_reminders", "Messages de rappel par courriel", "enabled", "Activ\xe9", "recipients", "Destinataires", "initial_email", _s16_296, "first_reminder", "Premier rappel", "second_reminder", "Second rappel", "third_reminder", _s16_297, "reminder1", "Premier Message de Rappel", "reminder2", "Deuxieme Message de Rappel", "reminder3", "Troisieme Message de Rappel", "template", "Mod\xe8le", "send", "Envoyer", "subject", "Sujet", "body", "Corps", "send_email", "Envoyer l'e-mail", "email_receipt", "Envoyer le re\xe7u par e-mail au client", "auto_billing", "Debit Automatique", "button", "Bouton", "preview", "Pr\xe9visualisation", "customize", "Personnaliser", "history", "Historique", "payment", "Paiement", "payments", "Paiements", "refunded", "Rembours\xe9", "payment_type", _s16_273, _s21_79, "R\xe9f\xe9rence transaction", "enter_payment", "Saisissez un paiement", "new_payment", "Entrer un paiement", "created_payment", "Paiement cr\xe9\xe9 avec succ\xe8s", "updated_payment", "Paiement mis \xe0 jour avec succ\xe8s", _s16_217, "Paiement archiv\xe9 avec succ\xe8s", "deleted_payment", "Paiement supprim\xe9 avec succ\xe8s", _s16_218, "Paiement restaur\xe9 avec succ\xe8s", _s17_124, ":count paiement archiv\xe9s avec succ\xe8s", _s16_219, ":count paiements supprim\xe9s avec succ\xe8s", _s17_125, _s37_20, "quote", "Devis", "quotes", "Devis", "new_quote", "Nouveau devis", "created_quote", "Devis cr\xe9\xe9 avec succ\xe8s", "updated_quote", "Devis mis \xe0 jour avec succ\xe8s", "archived_quote", "Devis archiv\xe9 avec succ\xe8s", "deleted_quote", "Devis supprim\xe9 avec succ\xe8s", "restored_quote", "Devis restaur\xe9 avec succ\xe8s", "archived_quotes", ":count devis archiv\xe9s avec succ\xe8s", "deleted_quotes", ":count devis supprim\xe9s avec succ\xe8s", "restored_quotes", _s35_21, "expense", "D\xe9pense", "expenses", "D\xe9penses", "vendor", "Fournisseur", "vendors", "Fournisseurs", "task", "T\xe2che", "tasks", "T\xe2ches", "project", "Projet", "projects", "Projets", "activity_1", _s30_40, "activity_2", _s33_31, "activity_3", _s34_26, "activity_4", _s32_22, "activity_5", _s38_24, "activity_6", ":user a mail\xe9 la facture :invoice pour :client \xe0 :contact", "activity_7", ":contact a vu la facture :invoice pour :client", "activity_8", _s35_36, "activity_9", _s36_32, "activity_10", ":contact a saisi un paiement :payment concernant :invoice pour :client", "activity_11", ":user a mis \xe0 jour le moyen de paiement :payment", "activity_12", ":user a archiv\xe9 le moyen de paiement :payment", "activity_13", ":user a supprim\xe9 le moyen de paiement :payment", "activity_14", ":user a entr\xe9 le cr\xe9dit :credit", "activity_15", _s36_33, "activity_16", _s33_32, "activity_17", _s34_27, "activity_18", ":user a cr\xe9\xe9 le devis :quote", "activity_19", ":user a mis \xe0 jour le devis :quote", "activity_20", ":user a mail\xe9 un devis :quote pour :client \xe0 :contact", "activity_21", ":contact a lu le devis :quote", "activity_22", ":user a archiv\xe9 le devis :quote", "activity_23", ":user a supprim\xe9 le devis :quote", "activity_24", ":user a restaur\xe9 le devis :quote", "activity_25", _s36_34, "activity_26", _s34_28, "activity_27", _s37_35, "activity_28", _s34_29, "activity_29", ":contact a approuv\xe9 le devis :quote pour :client", "activity_30", _s35_37, "activity_31", _s38_25, "activity_32", _s39_10, "activity_33", _s39_11, "activity_34", _s32_23, "activity_35", _s35_38, "activity_36", _s36_35, "activity_37", _s36_36, "activity_39", ":user a annul\xe9 un paiement de :payment_amount (:payment)", "activity_40", ":user a rembours\xe9 :adjustment d'un paiement de :payment_amount (:payment)", "activity_41", _s50_11, "activity_42", _s27_77, "activity_43", _s33_33, "activity_44", _s30_41, "activity_45", _s31_32, "activity_46", _s31_33, "activity_47", _s38_26, "activity_48", _s32_24, "activity_49", _s38_27, "activity_50", _s35_39, "activity_51", _s36_37, "activity_52", _s36_38, "activity_53", _s48_3, "activity_54", ":user a r\xe9-ouvert le ticket :ticket", "activity_55", ":contact a r\xe9pondu au ticket :ticket", "activity_56", ":user a visualis\xe9 le ticket :ticket", "activity_57", "La facture :invoice n'a pu \xeatre envoy\xe9e", "activity_58", _s35_40, "activity_59", _s34_30, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s27_78, "emailed_quote", "Devis envoy\xe9 par e-mail avec succ\xe8s", "emailed_credit", "Le cr\xe9dit a envoy\xe9 par mail avec succ\xe8s", _s20_72, "Le devis s\xe9lectionn\xe9 a \xe9t\xe9 envoy\xe9 avec succ\xe8s", _s21_81, "Le cr\xe9dit a bien \xe9t\xe9 marqu\xe9 comme envoy\xe9", "expired", "Expir\xe9", "all", "Tous", "select", "S\xe9lectionner", _s22_63, _s34_31, "custom_value1", "Valeur Personnalis\xe9e 1", "custom_value2", "Valeur Personnalis\xe9e 2", "custom_value3", _s22_111, "custom_value4", _s22_112, _s18_91, _s30_42, _s24_53, _s39_12, _s29_36, "Message personnalis\xe9 pour une facture impay\xe9e", _s27_56, "Message personnalis\xe9 pour un paiement de facture", _s31_18, "Message personnalis\xe9 pour un devis refus\xe9", "lock_invoices", _s24_78, "translations", "Traductions", _s19_60, "Mod\xe8le de num\xe9ro de t\xe2che", _s19_62, "Mod\xe8le de compteur de t\xe2che", _s22_65, "Mod\xe8le de num\xe9ro de d\xe9pense", _s22_67, "Mod\xe8le de compteur de d\xe9pense", _s21_82, "Mod\xe8le de num\xe9ro de fournisseur", _s21_84, "Mod\xe8le de compteur de fournisseur", _s21_86, "Mod\xe8le de num\xe9ro de ticket", _s21_88, "Mod\xe8le de compteur de ticket", _s22_69, "Mod\xe8le de num\xe9ro de paiement", _s22_71, "Mod\xe8le de compteur de paiement", _s22_73, "Mod\xe8le de num\xe9ro de facture", _s22_75, _s29_57, _s20_73, "Mod\xe8le de num\xe9ro de devis", _s20_75, "Compteur du num\xe9ro de devis", _s21_90, _s26_59, _s21_92, _s28_75, _s21_94, _s26_59, _s21_95, _s28_75, _s18_93, _s33_34, "counter_padding", _s22_113, _s28_56, "Compteur partag\xe9 pour les factures et les offres", _s18_95, "Nom par d\xe9faut de la taxe 1", _s18_97, "Taux par d\xe9faut de la taxe 1", _s18_99, "Nom par d\xe9faut de la taxe 2", _s18_101, "Taux par d\xe9faut de la taxe 2", _s18_103, "Nom par d\xe9faut de la taxe 3", _s18_105, "Taux par d\xe9faut de la taxe 3", _s21_96, "Sujet du courriel de la facture", _s19_64, "Sujet du courriel du devis", _s21_98, "Sujet du courriel du paiement", _s29_38, "Sujet du mail de paiement partiel", "show_table", "Afficher en tableau", "show_list", "Afficher en liste", "client_city", "Ville du client", "client_state", "R\xe9gion du client", "client_country", "Pays du client", _s16_220, "Le client est actif", "client_balance", "Solde du client", "client_address1", "Adresse du client", "client_address2", _s22_114, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, "Adresse de livraison du client", _s24_56, "App / Bureau de livraison du client", "type", "Type", "invoice_amount", _s21_133, _s16_224, "Date limite", "tax_rate1", "Taux de taxe 1", "tax_rate2", "Taux de taxe 2", "tax_rate3", "Taux de taxe 3", "auto_bill", _s23_66, "archived_at", "Archiv\xe9 le", "has_expenses", "D\xe9penses en cours", "custom_taxes1", "Autres taxes 1", "custom_taxes2", "Autres taxes 2", "custom_taxes3", "Autres taxes 3", "custom_taxes4", "Autres taxes 4", _s17_128, "Autre frais 1", _s17_129, "Autre frais 2", _s17_130, "Autre frais 3", _s17_131, "Autre frais 4", "is_deleted", "Supprim\xe9", "vendor_city", _s20_121, "vendor_state", "R\xe9gion du fournisseur", "vendor_country", _s19_98, "is_approved", "Est approuv\xe9", "tax_name", "Nom de la taxe", "tax_amount", "Montant de la taxe", "tax_paid", "Taxe pay\xe9e", "payment_amount", _s19_99, "age", "Anciennet\xe9", "is_running", "Is Running", "time_log", _s16_298, "bank_id", "Banque", _s19_66, _s19_67, _s16_225, _s20_122, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", _s17_170, _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "fr_CA", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accepter", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s22_89, "default", "Par d\xe9faut", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "En attente", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", _s22_90, _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Cr\xe9er votre compte en quelques secondes", "login_label", _s28_, "add_to_invoice", _s29_52, _s17_6, _s17_7, "week", "Semaine", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s20_93, "range", "\xc9tendue", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Cr\xe9er un projet", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Les frais pour une facture de :amount serait :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approuver", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Le client a \xe9t\xe9 purg\xe9 avec succ\xe8s", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Nouveau mot de passe", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s26_48, "view_statement", "Visualiser le relev\xe9", "sepa", "SEPA D\xe9bit direct", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Syst\xe8me", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Nom de", _s16_21, _s16_231, _s17_13, _s18_126, _s18_13, _s20_94, _s21_16, _s27_69, _s22_24, _s28_69, _s25_2, "La d\xe9pense r\xe9currente a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", _s25_3, "La d\xe9pense r\xe9currente a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s26_2, "La d\xe9pense r\xe9currente a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s25_4, _s36_30, _s25_5, _s38_2, _s26_3, "La d\xe9pense r\xe9currente a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", _s22_91, _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importer les donn\xe9es", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user a cr\xe9\xe9 une facture r\xe9currente :recurring_invoice", "activity_101", ":user a mis \xe0 jour une facture r\xe9currente :recurring_invoice", "activity_102", ":user a archiv\xe9 une facture r\xe9currente :recurring_invoice", "activity_103", ":user a supprim\xe9 une facture r\xe9currente :recurring_invoice", "activity_104", ":user a restaur\xe9 une facture r\xe9currente :recurring_invoice", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s20_95, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s17_155, _s17_17, "Nom du contact", "order", "Order", "unassigned", "Non assign\xe9", "partial_value", "Doit \xeatre plus grand que z\xe9ro et moins que le total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Autoriser", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "D\xe9finissez le sous-domaine ou affichez la facture sur votre site web.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Code promo", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "S\xe9curit\xe9", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnements", _s16_39, "Nouvel abonnement", _s17_23, _s19_80, _s20_23, _s27_70, _s20_24, _s33_26, _s21_28, _s30_37, _s20_25, "L'abonnement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s20_26, "L'abonnement a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s21_29, "L'abonnement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s19_17, "Recherche de 1 abonnement", _s20_27, "Recherche :count abonnements", _s26_6, "Le sous-domaine n'est pas disponible", "connect_gmail", "Connectez Gmail", _s16_41, "D\xe9connecter Gmail", "connected_gmail", "Gmail a \xe9t\xe9 connect\xe9 avec succ\xe8s", _s18_29, "Gmail a \xe9t\xe9 d\xe9connect\xe9 avec succ\xe8s", _s16_43, "Les modifications apport\xe9es au code de base peuvent bloquer la mise \xe0 jour, vous pouvez ex\xe9cuter cette commande pour annuler les modifications:", _s16_44, "Num\xe9ro d'identification du client", "count_minutes", ":count minutes", _s16_46, "D\xe9lai d'expiration du mot de passe", _s29_4, "Compteur partag\xe9 pour les factures et les cr\xe9dits", "use_last_email", "Utiliser le dernier e-mail", _s16_48, "Activer la soci\xe9t\xe9", _s21_31, "Activez les courriels, les factures r\xe9currentes et les notifications", _s27_14, "Une erreur s'est produite, veuillez r\xe9essayer", _s27_15, "Veuillez d'abord d\xe9finir un mot de passe", _s34_6, "Attention: modifier votre num\xe9ro de t\xe9l\xe9phone d\xe9sactivera l'authentification \xe0 deux facteurs (A2F)", "help_translate", "Aide \xe0 la traduction", _s23_11, "Veuillez s\xe9lectionner un pays", "resend_invite", "Renvoyer l'invitation", _s19_18, "L'authentification \xe0 deux facteurs (A2F) a \xe9t\xe9 d\xe9sactiv\xe9e avec succ\xe8s", _s16_50, "Le compte a \xe9t\xe9 connect\xe9 avec succ\xe8s", _s19_19, "Le comte a \xe9t\xe9 d\xe9connect\xe9 avec succ\xe8s", "delivered", "Livr\xe9", "bounced", "Rejet\xe9s", "spam", "Pourriel", "view_docs", "Afficher la documentation", _s32_4, "Veuillez fournir un num\xe9ro de t\xe9l\xe9phone mobile pour activer l'authentification \xe0 deux facteurs", "send_sms", "Envoyer un SMS", "sms_code", "Code SMS", _s21_32, "Scannez le code barre avec une :link app compatible.", _s18_30, "Vous avez activ\xe9 authentification \xe0 deux facteurs avec succ\xe8s.", "connect_google", "Connectez Google", _s17_25, "D\xe9connecter Google", _s17_27, "Authentification \xe0 deux facteurs", _s18_31, "D\xe9sactiver l'authentification \xe0 deux facteurs", _s34_7, "Requiert un mot de passe avec une connexion de r\xe9seau social", "stay_logged_in", "Restez connect\xe9", _s23_13, "Avertissement: Votre session va expirer bient\xf4t", "count_hours", ":count heures", "count_day", "1 jour", "count_days", ":count jours", _s19_20, "Expiration de la session web", _s17_28, "Param\xe8tres de s\xe9curit\xe9", "resend_email", "Renvoyer le courriel", _s26_8, "Veuillez confirmer votre adresse courriel", _s16_51, _s18_127, _s19_22, _s27_79, _s19_24, "Veuillez s\xe9lectionner un utilisateur authentifi\xe9 avec Gmail", "list_long_press", "Longue pression pour liste", "show_actions", "Afficher les actions", _s17_30, "D\xe9marrer la multis\xe9lection", _s27_17, "Un courriel a \xe9t\xe9 envoy\xe9 pour confirmer l'adresse courriel", _s21_33, "Pour utiliser :client_counter veuillez ajouter soit :client_number ou :client_id_number pour \xe9viter les conflits", "this_quarter", "Ce trimestre", "last_quarter", _s17_156, "to_update_run", "Pour mettre \xe0 jour l'ex\xe9cution", _s18_33, _s20_96, _s16_52, "URL d'enregistrement", "invoice_project", _s18_128, "invoice_task", _s17_157, "invoice_expense", "Facture de d\xe9pense", _s19_25, "Rechercher 1 d\xe9lai de paiement", _s20_28, "Rechercher :count d\xe9lais de paiement", _s16_54, _s28_70, "save_and_email", _s35_27, _s16_56, _s25_62, _s16_58, _s16_270, _s17_32, "Solde converti", _s22_28, "Pay\xe9 \xe0 ce jour converti", _s24_18, "Solde de cr\xe9dit converti", "converted_total", "Total converti", "is_sent", "Est Envoy\xe9", _s17_34, _s20_97, "document_upload", "T\xe9l\xe9versement de document", _s20_29, "Autoriser les clients \xe0 t\xe9l\xe9verser des documents", "expense_total", "Total des d\xe9penses", "enter_taxes", "Saisir les taxes", "by_rate", "Par taux", "by_amount", "Par montant", "enter_amount", "Entrer le montant", "before_taxes", "Avant taxes", "after_taxes", "Apr\xe8s taxes", "color", "Couleur", "show", "Voir", "hide", "Cacher", "empty_columns", "Colonnes vides", _s21_35, "Mode debug activ\xe9", _s26_9, "Avertissement: Pour usage local seulement. Fuites de donn\xe9es possible. En savoir plus.", "running_tasks", "T\xe2ches en cours", "recent_tasks", "T\xe2ches r\xe9centes", "recent_expenses", "D\xe9penses r\xe9centes", _s17_36, "D\xe9penses \xe0 venir", "update_app", "Mettre \xe0 jour l'App", "started_import", "L'importation a d\xe9marr\xe9 avec succ\xe8s", _s24_20, "Dupliquer le mappage de colonnes", _s20_30, "Utiliser taxes incluses", _s18_35, "Est Montant rabais", "column", "Colonne", "sample", "Exemple", "map_to", "Mapper vers", "import", "Importer", _s25_15, "Utiliser premi\xe8re rang\xe9e comme noms de colonnes", "select_file", _s32_16, _s16_60, "Aucun fichier s\xe9lectionn\xe9", "csv_file", "Fichier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Comptabilit\xe9", _s22_30, "Veuillez fournir tous les CSV.", "import_type", "Type d'importation", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Voir les licences", "webhook_url", "URL Webhook", _s17_38, "\xc9diteur plein \xe9cran", "sidebar_editor", "\xc9diteur de barre lat\xe9rale", _s22_31, 'Veuillez saisir ":value" pour confirmer', "purge", "Purger", "service", "Service", "clone_to", "Cloner vers", "clone_to_other", "Cloner vers Autre", "labels", "\xc9tiquettes", "add_custom", "Ajout personnalis\xe9", "payment_tax", "Paiement de taxe", "unpaid", "Impay\xe9", "white_label", "Sans marque", "delivery_note", "Note de livraison", _s24_23, _s39_7, _s24_25, _s37_28, "source_code", "Code source", "app_platforms", "Plateformes d'app", "invoice_late", "facture en retard", "quote_expired", _s18_155, "partial_due", "Montant partiel d\xfb", "invoice_total", "Montant total", "quote_total", "Total de la soumission", "credit_total", "Total du cr\xe9dit", _s23_14, "Total de facture", "actions", "Actions", "expense_number", "Num\xe9ro de d\xe9pense", "task_number", "Num\xe9ro de t\xe2che", "project_number", "Num\xe9ro de projet", "project_name", "Nom du projet", "warning", "Avertissement", "view_settings", _s19_81, _s24_27, "Avertissement: Cette entreprise n'a pas encore \xe9t\xe9 activ\xe9e", "late_invoice", "Facture en retard", "expired_quote", _s18_155, "remind_invoice", "Rappeler la facture", "cvv", "CVV", "client_name", "Nom du client", "client_phone", "T\xe9l\xe9phone du client", "required_fields", "Champs requis", "calculated_rate", "Taux calcul\xe9", _s17_40, "Taux de t\xe2che par d\xe9faut", "clear_cache", "Vider le cache", "sort_order", "Ordre de tri", "task_status", "\xc9tat", "task_statuses", "\xc9tats de t\xe2che", "new_task_status", "Nouvel \xe9tat de t\xe2che", _s16_62, "\xc9dition de l'\xe9tat de t\xe2che", _s19_26, "L'\xe9tat de t\xe2che a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s19_27, "Le statut de la t\xe2che a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s20_32, "L'\xe9tat de t\xe2che a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s19_28, "L'\xe9tat de t\xe2che a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s19_29, "L'\xe9tat de t\xe2che a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s20_33, "L'\xe9tat de t\xe2che a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s22_32, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 archiv\xe9s succ\xe8s", _s21_37, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s22_33, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s18_37, "Recherche 1 \xe9tat de t\xe2che", _s20_35, "Recherche :count \xe9tats de t\xe2che", _s16_64, "Afficher le tableau des t\xe2ches", _s21_38, "Toujours afficher la section des t\xe2ches lors de la cr\xe9ation de factures", _s20_36, "Facturer le journal du temps des t\xe2ches", _s25_16, "Ajouter les d\xe9tails de temps aux lignes d'articles des factures", _s20_38, "Facturer le journal des dates des t\xe2ches", _s25_17, "Ajouter les d\xe9tails de date aux lignes d'articles des factures", _s21_39, "D\xe9marrer les t\xe2ches avant de sauvegarder", _s18_38, "Configurer les \xe9tats", "task_settings", "Param\xe8tres des t\xe2ches", _s20_40, "Configurer les cat\xe9gories", _s18_40, "Cat\xe9gories de d\xe9pense", _s20_42, _s29_53, _s21_40, "\xc9diter la cat\xe9gorie D\xe9pense", _s24_28, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s24_29, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s25_19, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s24_30, _s40_5, _s24_31, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 retir\xe9e avec succ\xe8s", _s25_20, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 r\xe9tablie avec succ\xe8s", _s27_21, ":count cat\xe9gories de d\xe9pense ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s26_10, "Les :value cat\xe9gories de d\xe9pense ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s27_22, "Les :value cat\xe9gories de d\xe9pense ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s23_15, "Recherche 1 cat\xe9gorie de d\xe9pense", _s25_22, "Recherche :count cat\xe9gorie de d\xe9pense", _s21_42, "Utiliser les cr\xe9dits disponibles", "show_option", "Afficher les options", _s22_34, "Le montant du cr\xe9dit ne peut pas exc\xe9der le montant du paiement", "view_changes", "Visualiser les changements", "force_update", _s21_116, _s17_42, "Vous \xeates sur la derni\xe8re version, mais il peut y avoir encore quelques mises \xe0 jour en cours", "mark_paid_help", _s38_17, _s18_42, "Devrait \xeatre factur\xe9e", _s23_16, "Activer la facturation de la d\xe9pense", _s29_7, "Rend visibles les documents", _s21_44, "D\xe9finir un taux d'\xe9change", _s16_66, "Param\xe8tres des d\xe9penses", _s18_43, _s20_98, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", "Apple / Google Pay", "user_field", _s18_129, "variables", "Variables", "show_password", "Afficher le mot de passe", "hide_password", "Masquer le mot de passe", "copy_error", "Erreur de copie", "capture_card", "Carte saisie", _s17_43, _s23_52, "total_taxes", "Taxes totales", "line_taxes", "Taxes par ligne", "total_fields", _s17_158, _s25_23, _s47_6, _s25_24, _s48_1, _s25_25, _s47_7, "gateway_refund", _s27_71, _s19_30, _s56_0, "due_date_days", "Date d'\xe9ch\xe9ance", "paused", "En pause", "mark_active", "Cocher actif", "day_count", "Jour :count", _s22_35, _s20_99, _s21_45, _s20_100, _s17_45, _s31_29, "endless", "Sans fin", "next_send_date", _s22_92, _s16_68, "Cycles restants", _s17_47, _s18_130, _s18_45, _s20_101, _s21_47, _s27_72, _s22_37, "\xc9diter la facture r\xe9currente", _s25_26, _s45_7, _s25_27, _s51_6, _s26_11, "La facture r\xe9currente a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s25_28, "La facture r\xe9currente a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s25_29, _s47_8, _s26_12, "La facture r\xe9currente a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s27_23, "Les :value factures r\xe9currentes ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s26_13, "Les :value factures r\xe9currentes ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s27_24, "Les :value factures r\xe9currentes ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s24_32, _s30_38, _s25_30, _s37_29, "send_date", "Date d'envoi", "auto_bill_on", "Autofacturer le", _s28_7, _s32_17, "profit", "Profit", "line_item", "Ligne d'article", _s18_47, _s21_117, _s23_17, "Accepter paiement suppl\xe9mentaire pour pourboire", _s19_31, _s22_93, _s24_33, "Accepter paiement au minimum le montant partiel/d\xe9p\xf4t", "test_mode", "Mode test", "opened", "Ouverts", _s30_4, _s24_67, _s30_5, _s20_102, "gateway_success", _s18_131, "gateway_failure", _s19_82, "gateway_error", _s20_103, "email_send", "Envoi de courriel", _s17_49, _s24_68, "failure", "\xc9chec", "quota_exceeded", "Quota d\xe9pass\xe9", _s16_70, "\xc9chec en amont", "system_logs", "Journaux syst\xe8me", "view_portal", "Voir le portail", "copy_link", "Copier le lien", "token_billing", "Sauvegarder les informations de carte de cr\xe9dit", _s24_34, "Bienvenue dans Invoice Ninja", "always", "Toujours", "optin", "Adh\xe9sion", "optout", "D\xe9sadh\xe9sion", "label", "Libell\xe9", "client_number", _s16_271, "auto_convert", "Conversion automatique", "company_name", _s19_83, "reminder1_sent", "Rappel 1 envoy\xe9", "reminder2_sent", "Rappel 2 envoy\xe9", "reminder3_sent", "Rappel 3 envoy\xe9", _s18_49, _s23_53, "pdf_page_info", "Page :current de :total", _s16_72, "Les factures ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_quotes", "Les soumissions ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_credits", "Les cr\xe9dits ont \xe9t\xe9 envoy\xe9s par courriel avec succ\xe8s", "gateway", "Passerelle", "view_in_stripe", _s16_272, "rows_per_page", "Rang\xe9es par page", "hours", "Heures", "statement", "Relev\xe9", "taxes", "Taxes", "surcharge", "surcharge", "apply_payment", _s21_118, "apply_credit", "Appliquer le cr\xe9dit", "apply", "Appliquer", "unapplied", "Non appliqu\xe9", "select_label", "S\xe9lectionnez le libell\xe9", "custom_labels", "\xc9tiquettes personnalis\xe9es", "record_type", _s21_119, "record_name", "Non d'enregistrement", "file_type", "Type de fichier", "height", "Hauteur", "width", "Largeur", "to", "\xe0", "health_check", "\xc9tat de sant\xe9", "payment_type_id", _s16_273, "last_login_at", "Derni\xe8re connexion \xe0", "company_key", _s16_274, "storefront", "Vitrine", "storefront_help", "Activer les applications externes \xe0 cr\xe9er des factures", "client_created", "Client cr\xe9\xe9", _s20_45, "Courriel de paiement en ligne", _s20_47, "Courriel de paiement manuel", "completed", "Compl\xe9t\xe9", "gross", "Brut", "net_amount", "Montant net", "net_balance", "Solde net", "client_settings", "Param\xe8tres clients", _s17_51, _s22_94, _s17_53, _s22_95, "selected_quotes", "Soumissions s\xe9lectionn\xe9es", "selected_tasks", _s20_104, _s17_55, _s22_96, _s17_57, _s16_275, _s17_59, "Factures impay\xe9es", "recent_payments", "Paiements re\xe7us", "upcoming_quotes", "Soumissions \xe0 venir", "expired_quotes", "Soumissions expir\xe9es", "create_client", "Cr\xe9er un client", "create_invoice", _s17_159, "create_quote", "Cr\xe9er une soumission", "create_payment", "Cr\xe9er un paiement", "create_vendor", _s20_105, "update_quote", "Mettre \xe0 jour la soumission", "delete_quote", "Supprimer la soumission", "update_invoice", _s24_69, "delete_invoice", _s20_106, "update_client", _s23_54, "delete_client", _s19_84, "delete_payment", _s21_120, "update_vendor", _s28_71, "delete_vendor", "Supprimer le fournisseur", "create_expense", "Cr\xe9er une d\xe9pense", "update_expense", _s24_70, "delete_expense", _s20_107, "create_task", "Cr\xe9er une T\xe2che", "update_task", _s22_97, "delete_task", "Supprimer la T\xe2che", "approve_quote", "Approuver la t\xe2che", "off", "Ferm\xe9", "when_paid", _s16_276, "expires_on", "Expiration le", "free", "Gratuit", "plan", "Plan", "show_sidebar", _s26_49, "hide_sidebar", _s25_64, "event_type", _s16_277, "target_url", "Cible", "copy", "Copier", "must_be_online", _s72_0, _s17_61, _s30_39, "api_webhooks", "API Webhooks", "search_webhooks", _s28_72, "search_webhook", _s22_98, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nouveau Webhook", "edit_webhook", "\xc9diter le Webhook", "created_webhook", _s33_27, "updated_webhook", _s39_8, _s16_74, _s36_23, "deleted_webhook", _s37_30, "removed_webhook", _s35_28, _s16_75, _s37_31, _s17_62, "Les :value webhooks ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_76, "Les :value webhooks ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_77, "Les :value webhooks ont \xe9t\xe9 retir\xe9s avec succ\xe8s", _s17_63, "Les :value webhooks ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "api_tokens", "Jetons API", "api_docs", "Docs API", "search_tokens", _s26_50, "search_token", _s20_108, "token", "Jeton", "tokens", "Jetons", "new_token", "Nouveau jeton", "edit_token", "\xc9diter le jeton", "created_token", "Le jeton a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_token", "Le jeton a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_token", "Le jeton a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_token", "Le jeton a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_token", _s33_28, "restored_token", _s35_29, "archived_tokens", _s46_8, "deleted_tokens", _s47_9, "restored_tokens", _s47_10, _s19_33, "Enregistrement d'un client", _s24_36, "Autoriser le client \xe0 s'inscrire sur le portail", _s21_49, "Personnaliser et pr\xe9visualiser", "email_invoice", "Envoyer la facture par courriel", "email_quote", "Envoyer la soumission par courriel", "email_credit", "Cr\xe9dit par courriel", "email_payment", _s20_123, _s20_50, "Le client n'a pas d'adresse courriel d\xe9finie", "ledger", "Grand livre", "view_pdf", "Voir PDF", "all_records", _s24_71, "owned_by_user", _s26_51, _s16_78, "Cr\xe9dit restant", "contact_name", "Nom du contact", "use_default", _s29_54, _s16_80, "Rappels infinis", "number_of_days", "Nombre de jours", _s23_19, "Configuration des d\xe9lais de paiements", "payment_term", "D\xe9lai de paiement", _s16_81, "Nouveau d\xe9lai de paiement", _s17_65, "Modifier le d\xe9lai de paiement", _s20_51, "Le d\xe9lai de paiement a \xe9t\xe9 cr\xe9 avec succ\xe8s", _s20_52, "Le d\xe9lai de paiement a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s21_50, "Le d\xe9lai de paiement a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s20_53, "Le d\xe9lai de paiement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s20_54, "Le d\xe9lai de paiement a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s21_51, "Le d\xe9lai de paiement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s22_42, "Les :value d\xe9lais de paiement ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s21_52, "Les :value d\xe9lais de paiement ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s22_43, "Les :value d\xe9lais de paiement ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "email_sign_in", "Connexion par courriel", "change", "Basculer", _s23_21, "Basculer vers l'affichage mobile", _s24_37, _s36_24, "send_from_gmail", "Envoyer avec Gmail", "reversed", "Invers\xe9", "cancelled", "Annul\xe9", "credit_amount", _s17_160, "quote_amount", "Montant de la soumission", "hosted", "H\xe9berg\xe9", "selfhosted", "Auto-h\xe9berg\xe9", "exclusive", "Exclusif", "inclusive", "Inclusif", "hide_menu", "Masquer le menu", "show_menu", _s16_278, _s18_51, _s23_65, _s16_83, "Recherche de documents", "search_designs", "Recherche de designs", "search_invoices", "Recherche de factures", "search_clients", "Recherche de clients", "search_products", "Recherche de produits", "search_quotes", "Recherche de soumissions", "search_credits", _s20_109, "search_vendors", _s25_65, "search_users", "Recherche d'utilisateurs", _s16_84, _s25_66, "search_tasks", "Recherche de t\xe2ches", "search_settings", "Recherche de param\xe8tres", "search_projects", "Recherche de projets", "search_expenses", "Recherche de d\xe9penses", "search_payments", "Recherche de paiements", "search_groups", "Recherche de groupes", "search_company", "Recherche d'entreprises", "search_document", _s23_55, "search_design", _s21_121, "search_invoice", _s22_99, "search_client", _s21_122, "search_product", _s22_100, "search_quote", _s25_67, "search_credit", _s21_123, "search_vendor", "Recherche de 1 entreprise", "search_user", _s26_52, "search_tax_rate", _s27_73, "search_task", _s20_110, "search_project", _s21_124, "search_expense", _s22_101, "search_payment", _s23_56, "search_group", _s21_125, "refund_payment", "Remboursement", _s17_69, "La facture a \xe9t\xe9 annul\xe9e avec succ\xe8s", _s18_53, "Les factures ont \xe9t\xe9 annul\xe9es avec succ\xe8s", _s16_90, _s37_32, _s17_70, _s42_14, "reverse", "Inverse", "full_name", "Nom complet", _s17_71, "Ville/Prov/CP", _s17_73, "Ville/Province/Code postal", "custom1", "Personnalisation 1", "custom2", "Personnalisation 2", "custom3", _s22_104, "custom4", "Quatri\xe8me personnalis\xe9e", "optional", "Optionnel", "license", "Licence", "purge_data", _s18_132, _s16_91, "Toutes les donn\xe9es de l'entreprise ont \xe9t\xe9 purg\xe9es avec succ\xe8s", _s18_54, "Avertissement: Cette action est irr\xe9versible et va supprimer vos donn\xe9es de fa\xe7on d\xe9finitive.", "invoice_balance", "Solde de facture", "age_group_0", "0 - 30 jours", "age_group_30", "30 - 60 jours", "age_group_60", "60 - 90 jours", "age_group_90", "90 - 120 jours", "age_group_120", "120+ jours", "refresh", "Actualiser", "saved_design", "Le mod\xe8le a \xe9t\xe9 sauvegard\xe9 avec succ\xe8s", "client_details", "Informations du client", "company_address", _s23_57, "invoice_details", "D\xe9tails de facture", "quote_details", "Informations de la soumission", "credit_details", "Informations de cr\xe9dit", "product_columns", "Colonnes produit", "task_columns", "Colonnes t\xe2ches", "add_field", _s16_279, "all_events", "Ajouter un \xe9v\xe9nement", "permissions", "Permissions", "none", "Aucun", "owned", "Propri\xe9taire", "payment_success", "Paiement r\xe9ussi", "payment_failure", "Le paiement a \xe9chou\xe9", "invoice_sent", _s22_102, "quote_sent", "Soumission envoy\xe9e", "credit_sent", "Cr\xe9dit envoy\xe9", "invoice_viewed", "Facture visualis\xe9e", "quote_viewed", "Soumission visualis\xe9e", "credit_viewed", "Cr\xe9dit visualis\xe9", "quote_approved", "Soumission approuv\xe9e", _s25_32, _s33_29, _s16_92, _s19_85, "apply_license", _s18_133, "cancel_account", _s19_86, _s22_44, "Avertissement: cette action est irr\xe9versible et supprimera votre compte de fa\xe7on d\xe9finitive.", "delete_company", "Supprimer l'entreprise", _s22_45, "Avertissement: Cette entreprise sera d\xe9finitivement supprim\xe9e.", "enabled_modules", "Modules activ\xe9s", "converted_quote", "La soumission a \xe9t\xe9 convertie avec succ\xe8s", "credit_design", "Design de cr\xe9dit", "includes", "Inclusions", "header", "En-t\xeate", "load_design", "Charger le design", "css_framework", "Framework CSS", "custom_designs", "Designs personnalis\xe9s", "designs", "Designs", "new_design", "Nouveau design", "edit_design", "\xc9diter le design", "created_design", _s32_18, "updated_design", _s38_18, "archived_design", _s35_30, "deleted_design", _s36_25, "removed_design", _s34_24, "restored_design", _s36_26, _s16_94, "Les :value mod\xe8les ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_designs", "Les :value mod\xe8les ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_95, "Les :value mod\xe8les ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "proposals", "Propositions", "tickets", "Billets", _s16_96, "Soumissions r\xe9currentes", "recurring_tasks", _s18_134, _s18_55, "Gestion du compte", "credit_date", "Date du cr\xe9dit", "credit", "Cr\xe9dit", "credits", "Cr\xe9dits", "new_credit", "Inscrire un cr\xe9dit", "edit_credit", _s16_280, "created_credit", "Le cr\xe9dit a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_credit", _s38_19, "archived_credit", "Le cr\xe9dit a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_credit", "Le cr\xe9dit a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_credit", _s34_25, "restored_credit", "Le cr\xe9dit a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_98, ":count cr\xe9dits ont archiv\xe9s avec succ\xe8s", "deleted_credits", ":count cr\xe9dits ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_99, "Les :value cr\xe9dits ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "current_version", "Version courante", "latest_version", _s16_281, "update_now", "Mettre \xe0 jour", _s26_19, _s56_1, _s16_100, _s22_103, "app_updated", _s42_15, "learn_more", "En savoir plus", "integrations", "Int\xe9grations", "tracking_id", "ID de suivi", _s17_75, _s20_111, "credit_footer", "Pied de page pour cr\xe9dit", "credit_terms", _s36_27, "new_company", "Nouvelle entreprise", "added_company", "L'entreprise a \xe9t\xe9 ajout\xe9e avec succ\xe8s", "company1", "Entreprise personnalis\xe9e 1", "company2", "Entreprise personnalis\xe9e 2", "company3", "Entreprise personnalis\xe9e 3", "company4", "Entreprise personnalis\xe9e 4", "product1", "Produit personnalis\xe9 1", "product2", "Produit personnalis\xe9 2", "product3", "Produit personnalis\xe9 3", "product4", "Produit personnalis\xe9 4", "client1", "Client personnalis\xe9 1", "client2", _s21_126, "client3", _s21_127, "client4", _s21_128, "contact1", "Contact personnalis\xe9 1", "contact2", "Contact personnalis\xe9 2", "contact3", "Contact personnalis\xe9 3", "contact4", "Contact personnalis\xe9 4", "task1", "T\xe2che personnalis\xe9e 1", "task2", "T\xe2che personnalis\xe9e 2", "task3", "T\xe2che personnalis\xe9e 3", "task4", "T\xe2che personnalis\xe9e 4", "project1", "Projet personnalis\xe9 1", "project2", "Projet personnalis\xe9 2", "project3", "Projet personnalis\xe9 3", "project4", "Projet personnalis\xe9 4", "expense1", "D\xe9pense personnalis\xe9e 1", "expense2", "D\xe9pense personnalis\xe9e 2", "expense3", "D\xe9pense personnalis\xe9e 3", "expense4", "D\xe9pense personnalis\xe9e 4", "vendor1", _s26_53, "vendor2", _s26_54, "vendor3", _s26_55, "vendor4", _s26_56, "invoice1", "Facture personnalis\xe9e 1", "invoice2", _s23_67, "invoice3", _s23_68, "invoice4", _s23_69, "payment1", "Paiement personnalis\xe9 1", "payment2", _s23_67, "payment3", _s23_68, "payment4", _s23_69, "surcharge1", _s25_70, "surcharge2", _s25_71, "surcharge3", _s25_72, "surcharge4", _s25_73, "group1", "Groupe personnalis\xe9 1", "group2", "Groupe personnalis\xe9 2", "group3", "Groupe personnalis\xe9 3", "group4", "Groupe personnalis\xe9 4", "reset", "Remise \xe0 z\xe9ro", "number", "Num\xe9ro", "export", "Exporter", "chart", "Graphique", "count", "Compteur", "totals", "Totaux", "blank", "Vide", "day", "Jour", "month", "Mois", "year", "Ann\xe9e", "subgroup", "Sous-groupe", "is_active", "Actif", "group_by", "Grouper par", "credit_balance", "Solde du cr\xe9dit", _s18_61, _s29_55, _s17_77, "Nom complet du contact", "contact_phone", _s20_112, _s21_53, "Valeur personnalis\xe9e du contact 1", _s21_54, "Valeur personnalis\xe9e du contact 2", _s21_55, "Valeur personnalis\xe9e du contact 3", _s21_56, "Valeur personnalis\xe9e du contact 4", _s17_79, "Rue de livraison", _s17_80, "App. de livraison", "shipping_city", "Ville de livraison", "shipping_state", "Province de livraison", _s20_55, "Code postal de livraison", _s16_130, "Pays de livraison", _s16_132, "Rue de facturation", _s16_133, "App. de facturation", "billing_city", "Ville de facturation", "billing_state", "Province de facturation", _s19_36, "Code postal de facturation", "billing_country", "Pays de facturation", "client_id", "ID du client", "assigned_to", "Assign\xe9 \xe0", "created_by", "Cr\xe9\xe9 par :name", "assigned_to_id", "Assign\xe9 \xe0 ID", "created_by_id", "Cr\xe9\xe9 par ID", "add_column", "Ajouter colonne", "edit_columns", "\xc9diter colonne", "columns", "Colonnes", "aging", "Impay\xe9s", "profit_and_loss", "Profit et perte", "reports", "Rapports", "report", "Rapport", "add_company", "Ajouter une entreprise", "unpaid_invoice", "Facture impay\xe9e", "paid_invoice", "Facture pay\xe9e", _s16_134, "Soumission non approuv\xe9e", "help", "Aide", "refund", "Rembousement", "refund_date", "Date de remboursement", "filtered_by", "Filtr\xe9e par", "contact_email", _s19_87, "multiselect", _s18_136, "entity_state", "Statut", "verify_password", _s24_72, "applied", "Appliqu\xe9", _s21_57, "Inclut les erreurs r\xe9centes des journaux syst\xe8me", _s30_8, "Nous avons re\xe7u votre message et vous r\xe9pondrons rapidement.", "message", "Message", "from", "De", _s20_57, "Afficher les d\xe9tails du produit", _s25_34, _s78_, _s20_59, "Le moteur de rendu PDF n\xe9cessite :version", _s18_64, _s31_30, _s23_23, _s41_9, _s18_66, "Configurer les param\xe8tres", "support_forum", "Forum de support", "about", "\xc0 propos", "documentation", "Documentation", "contact_us", "Nous joindre", "subtotal", "Sous-total", "line_total", "Total", "item", "Article", "credit_email", "Courriel pour le cr\xe9dit", "iframe_url", "Site web", "domain_url", "URL de domaine", _s21_58, "Le mot de passe est trop court", _s20_60, "Le mot de passe doit contenir une majuscule et un nombre", _s19_38, "T\xe2ches du portail client", _s23_24, _s33_30, _s20_61, "Veuillez saisir une valeur", "deleted_logo", "Le logo a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "yes", "Oui", "no", "Non", "generate_number", _s17_161, "when_saved", "Lors de la sauvegarde", "when_sent", "Lors de l'envoi", "select_company", "S\xe9lectionnez une entreprise", "float", "Flottant", "collapse", "R\xe9duire", "show_or_hide", "Afficher / masquer", "menu_sidebar", "Menu lat\xe9ral", "history_sidebar", _s18_137, "tablet", "Tablette", "mobile", "Mobile", "desktop", "Fixe", "layout", "Affichage", "view", "Visualiser", "module", "Module", "first_custom", _s20_113, "second_custom", _s19_88, "third_custom", "Troisi\xe8me lat\xe9ral", "show_cost", "Afficher le co\xfbt", _s17_82, "Afficher le montant du produit", "show_cost_help", "Afficher un champ de co\xfbt du produit pour suivre le profit", _s21_59, "Afficher la quantit\xe9 de produit", _s26_21, "Afficher un champ Quantit\xe9 de produit. 1 par d\xe9faut.", _s21_61, "Afficher la quantit\xe9 de facture", _s26_22, "Afficher un champ Quantit\xe9 d'article par ligne. 1 par d\xe9faut.", _s21_63, "Afficher le rabais de produit", _s26_23, "Afficher un champ rabais de ligne d'article", _s16_136, _s19_89, _s21_65, "D\xe9finit automatiquement la quantit\xe9 d'article par ligne \xe0 1.", "one_tax_rate", "Un taux de taxe", "two_tax_rates", _s17_162, "three_tax_rates", "Trois taux de taxes", _s16_138, _s23_58, "user", "Utilisateur", "invoice_tax", "Taxe de facture", "line_item_tax", "Taxe d'article par ligne", "inclusive_taxes", "Taxes incluses", _s17_84, "Taux de taxe de facture", "item_tax_rates", "Taux de taxe par article", _s18_68, _s31_31, "configure_rates", "Configuration des taux", _s18_69, "Configurer les passerelles", "tax_settings", "Param\xe8tres des taxes", _s18_71, "Taux de taxe", "accent_color", _s27_74, "switch", "Changer", _s19_40, "Liste s\xe9par\xe9e par virgule", "options", "Options", _s16_140, "Ligne de texte simple", "multi_line_text", "Multiligne de texte", "dropdown", _s16_282, "field_type", "Type de champ", _s27_35, "Un courriel a \xe9t\xe9 envoy\xe9 pour la r\xe9cup\xe9ration du mot de passe", "submit", "Envoyer", _s16_142, "R\xe9cup\xe9rez votre mot de passe", "late_fees", "Frais de retard", "credit_number", "Num\xe9ro de cr\xe9dit", "payment_number", _s18_138, "late_fee_amount", "Frais de retard", _s16_143, "Pourcentage de frais de retard", "schedule", "Calendrier", "before_due_date", "Avant l'\xe9ch\xe9ance", "after_due_date", "Apr\xe8s l'\xe9ch\xe9ance", _s18_73, _s28_73, "days", "Jours", "invoice_email", "Courriel de facturation", "payment_email", _s20_123, "partial_payment", _s16_283, "payment_partial", _s16_283, _s21_66, "Courriel du paiement partiel", "quote_email", "Courriel de soumission", _s16_145, "Rappel perp\xe9tuel", _s16_147, _s22_105, "administrator", "Administrateur", _s18_74, "Permet \xe0 un utilisateur de g\xe9rer d'autres utilisateurs, modifier les param\xe8tres et tous les enregistrements.", "user_management", _s24_73, "users", "Utilisateurs", "new_user", _s18_139, "edit_user", _s20_114, "created_user", "L'utilisateur a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_user", "L'utilisateur a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_user", "L'utilisateur a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_user", "L'utilisateur a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_user", "L'utilisateur a \xe9t\xe9 retir\xe9 avec succ\xe8s", "restored_user", "L'utilisateur a \xe9t\xe9 restaur\xe9 avec succ\xe8s", "archived_users", "Les :value utilisateurs ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_users", "Les :value utilisateurs ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "removed_users", "Les :value utilisateurs ont \xe9t\xe9 retir\xe9s avec succ\xe8s", "restored_users", "Les :value utilisateurs ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s16_149, _s19_90, "invoice_options", "Options de facture", _s17_86, _s24_74, _s22_52, 'Afficher seulement la ligne "Pay\xe9 \xe0 ce jour" sur les factures pour lesquelles il y a au moins un paiement.', _s23_26, _s18_140, _s28_20, "Inclure les images jointes dans la facture.", _s16_151, "Afficher l'en-t\xeate sur", _s16_152, "Afficher le pied de page sur", "first_page", "premi\xe8re page", "all_pages", "toutes les pages", "last_page", "derni\xe8re page", "primary_font", "Fonte principale", "secondary_font", "Fonte secondaire", "primary_color", _s18_141, "secondary_color", _s18_142, "page_size", "Taille de page", "font_size", _s16_284, "quote_design", "Design de soumission", "invoice_fields", _s17_163, "product_fields", "Champs produit", "invoice_terms", _s25_68, "invoice_footer", "Pied de facture", "quote_terms", "Conditions de soumission", "quote_footer", "Pied de soumission par d\xe9faut", _s18_75, "Envoi automatique", _s23_27, "Envoi automatiquement les factures r\xe9currentes lorsqu'elles sont cr\xe9\xe9es.", _s18_76, "Autoarchivage", _s23_28, "Archive automatiquement les soumissions lorsqu'elles sont converties.", _s18_77, "Autoconversion", _s23_29, "Convertir automatiquement une soumission en facture lorsque le client l'accepte.", _s17_88, _s29_56, "freq_daily", "Quotidienne", "freq_weekly", "Hebdomadaire", "freq_two_weeks", "Aux deux semaines", "freq_four_weeks", "Aux quatre semaines", "freq_monthly", "Mensuelle", "freq_two_months", "Deux mois", _s17_90, "Trimestrielle", _s16_153, "4 mois", "freq_six_months", "Semestrielle", "freq_annually", "Annuelle", "freq_two_years", "Deux ans", _s16_154, "Trois ans", "never", "Jamais", "company", "Entreprise", _s17_91, "Nombres g\xe9n\xe9r\xe9s", "charge_taxes", "Facturer les taxes", "next_reset", _s23_59, "reset_counter", "Remettre \xe0 z\xe9ro le compteur", _s16_155, _s17_164, "number_padding", _s23_60, "general", "G\xe9n\xe9ral", "surcharge_field", "Champ Surcharge", "company_field", "Champ Entreprise", "company_value", _s19_91, "credit_field", "Champ Cr\xe9dit", "invoice_field", "Champ Facture", _s17_93, "Surcharge de facture", "client_field", "Champ Client", "product_field", "Champ Produit", "payment_field", "Champ Paiement", "contact_field", "Champ Contact", "vendor_field", "Champ Fournisseur", "expense_field", "Champ D\xe9pense", "project_field", "Champ Projet", "task_field", "Champ T\xe2che", "group_field", "Champ Groupe", "number_counter", _s18_143, "prefix", "Pr\xe9fixe", "number_pattern", _s16_285, "messages", "Messages", "custom_css", _s16_286, _s17_95, _s23_61, _s16_157, _s19_92, _s21_68, "Afficher la signature du client sur la facture/soumission PDF.", _s25_40, _s48_2, _s30_9, "Requiert du client qu'il confirme et accepte les conditions de facturation", _s23_30, "Case \xe0 cocher pour les conditions de soumssion", _s28_21, "Requiert du client qu'il confirme et accepte les conditions de soumission", _s25_41, _s20_115, _s30_10, "Requiert une signature du client", _s23_31, "Signature de soumission", _s22_54, _s42_16, _s27_36, "Permet de sp\xe9cifier un mot de passe pour chaque contact. Si un mot de passe est sp\xe9cifi\xe9, le contact devra saisir ce mot de passe pour visualiser ses factures.", "authorization", "Autorisation", "subdomain", "sous-domaine", "domain", "Domaine", "portal_mode", "Mode portail", "email_signature", "Cordialement,", _s24_38, "rendez le paiement plus facile \xe0 vos client en ajoutant \xe0 vos courriel, le marquage de schema.org.", "plain", "Ordinaire", "light", "Clair", "dark", "Fonc\xe9", "email_design", _s18_144, "attach_pdf", "Joindre un PDF", _s16_158, "Joindre un document", "attach_ubl", "Joindre UBL", "email_style", "Style de courriel", _s19_42, "Autoriser le marquage", "reply_to_email", "Courriel de r\xe9ponse", "reply_to_name", "Nom de R\xe9pondre \xc0", "bcc_email", "Courriel CCI", "processed", "Trait\xe9", "credit_card", "Carte de cr\xe9dit", "bank_transfer", _s17_165, "priority", "Priorit\xe9", "fee_amount", _s17_166, "fee_percent", _s21_129, "fee_cap", _s16_287, "limits_and_fees", "Limites / frais", "enable_min", "Activer min", "enable_max", "Activer max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s26_57, "credentials", "Identifiants", "update_address", "Mise \xe0 jour de l'adresse", _s19_45, "Met \xe0 jour l'adresse du client avec les informations fournies", "rate", "Taux", "tax_rate", "Taux de taxe", "new_tax_rate", _s20_116, "edit_tax_rate", _s22_106, _s16_160, "Le taux de taxe a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s16_161, "Le taux de taxe a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s17_98, "Le taux de taxe a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_162, _s42_17, _s17_99, _s42_18, _s18_78, "Les :value taux de taxes ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s17_100, "Les :value taux de taxes ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s18_79, "Les :value taux de taxes ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "fill_products", "Remplissage automatique des produits", _s18_80, "La s\xe9lection d'un produit entrainera la mise \xe0 jour de la description et du prix", "update_products", "Mise \xe0 jour automatique des produits", _s20_65, _s65_1, _s16_163, _s22_107, _s21_69, "Convertir automatiquement le prix des produits dans la devise du client", "fees", "Frais", "limits", "Limites", "provider", "Fournisseur", "company_gateway", _s22_108, _s16_165, "Passerelles de paiement", _s19_46, _s19_93, _s20_66, _s20_117, _s23_32, _s37_33, _s23_33, _s43_5, _s24_39, _s40_7, _s23_34, _s41_10, _s24_40, _s41_11, _s25_43, "Les :value passerelles ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s24_41, "Les :value passerelles ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s25_44, "Les :value passerelles ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s16_167, "Continuez l'\xe9dition", "discard_changes", "Annuler les changements", "default_value", _s17_171, "disabled", "D\xe9sactiv\xe9", "currency_format", _s16_288, _s21_70, "Premier jour de la semaine", _s23_35, _s23_62, "sunday", "Dimanche", "monday", "Lundi", "tuesday", "Mardi", "wednesday", "Mercredi", "thursday", "Jeudi", "friday", "Vendredi", "saturday", "Samedi", "january", "Janvier", "february", "F\xe9vrier", "march", "Mars", "april", "Avril", "may", "Mai", "june", "Juin", "july", "Juillet", "august", "Ao\xfbt", "september", "Septembre", "october", "Octobre", "november", "Novembre", "december", "D\xe9cembre", "symbol", "Symbole", "ocde", "Code", "date_format", "Format de date", "datetime_format", _s17_167, "military_time", "Format d'heure 24 h", _s18_81, "Affichage 24h", "send_reminders", _s19_94, "timezone", "Fuseau horaire", _s19_47, _s18_145, _s17_101, _s18_146, _s19_49, "Filtrer par facture", _s18_82, "Filtrer par client", _s18_84, "Filtrer par fournisseur", "group_settings", "Param\xe8tres des groupes", "group", "Groupe", "groups", "Groupes", "new_group", "Nouveau groupe", "edit_group", _s16_289, "created_group", _s32_19, "updated_group", _s38_20, "archived_groups", "Les :value groupes ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_groups", "Les :value groupes ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "restored_groups", "Les :value groupes ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "archived_group", _s35_31, "deleted_group", _s36_28, "restored_group", _s36_29, "upload_logo", "T\xe9l\xe9verser le logo", "uploaded_logo", "Le logo a \xe9t\xe9 t\xe9l\xe9vers\xe9 avec succ\xe8s", "logo", "Logo", "saved_settings", "Les param\xe8tres ont \xe9t\xe9 sauvegard\xe9s avec succ\xe8s", _s16_169, "Param\xe8tres des produits", "device_settings", _s24_75, "defaults", "Par d\xe9faut", "basic_settings", _s18_147, _s17_103, _s18_148, "company_details", "Informations sur l'entreprise", "user_details", "Profil utilisateur", "localization", "Param\xe8tres r\xe9gionaux", "online_payments", _s18_149, "tax_rates", "Taux de taxe", "notifications", "Notifications", "import_export", "Importer / Exporter", "custom_fields", _s20_118, "invoice_design", "Mod\xe8les de factures", "buy_now_buttons", _s26_58, "email_settings", "Param\xe8tres de courriel", _s23_37, "Mod\xe8les et rappels", _s22_55, _s27_75, _s19_51, _s25_69, "price", "Prix", "email_sign_up", "Inscription par courriel", "google_sign_up", _s23_63, _s27_40, "Merci de votre achat!", "redeem", "Rembourser", "back", "Retour", "past_purchases", "Achats pr\xe9c\xe9dents", _s19_53, _s17_168, "pro_plan", "Plan Pro", "enterprise_plan", "Plan Entreprise", "count_users", ":count utilisateurs", "upgrade", "Mettre \xe0 niveau", _s25_45, "Veuillez entrer votre pr\xe9nom", _s24_42, "Veuillez entrer votre nom", _s33_21, "Vous devez accepter les conditions et la politique de confidentialit\xe9 pour cr\xe9er un compte.", "i_agree_to_the", "J'accepte", _s16_171, _s24_76, "privacy_policy", _s28_74, "sign_up", "Inscription", "account_login", "Connexion", "view_website", "Visiter le site web", "create_account", "Cr\xe9er un compte", "email_login", "Courriel de connexion", "create_new", "Cr\xe9er", _s18_86, _s32_20, _s21_73, "Veuillez sauvegarder ou annuler vos modifications", "download", "T\xe9l\xe9charger", _s27_41, "Le plan Entreprise est requis", "take_picture", "Prendre un photo", "upload_file", "T\xe9l\xe9verser un fichier", "document", "Justificatifs", "documents", "Documents", "new_document", "Nouveau document", "edit_document", "\xc9diter un document", _s17_105, "Le document a \xe9t\xe9 t\xe9l\xe9vers\xe9 avec succ\xe8s", _s16_173, "Le document a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s17_106, "Le document a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_174, _s38_21, _s17_107, _s38_22, _s18_88, "Les :value documents ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s17_108, "Les :value documents ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s18_89, "Les :value documents ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "no_history", "Aucun historique", "expense_date", _s18_150, "pending", "En attente", _s16_175, "Connect\xe9", _s16_176, "En attente", _s16_177, "Factur\xe9", "converted", "Convertie", _s24_44, "Ajouter des documents aux factures", "exchange_rate", "Taux de change", _s16_178, "Conversion de devise", "mark_paid", "Marquer pay\xe9e", "category", "Cat\xe9gorie", "address", "Adresse", "new_vendor", _s19_95, "created_vendor", "Le fournisseur a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_vendor", "Le fournisseur a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_vendor", "Le fournisseur a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_vendor", "Le fournisseur a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "restored_vendor", "Le fournisseur a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_179, ":count fournisseurs ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_vendors", ":count fournisseurs ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_180, "Les :value fournisseurs ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "new_expense", "Entrer une d\xe9pense", "created_expense", "La d\xe9pense a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_expense", "La d\xe9pense a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s16_181, "La d\xe9pense a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_expense", "La d\xe9pense a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s16_182, "La d\xe9pense a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s17_109, "Les d\xe9penses ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s16_183, "Les d\xe9penses ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s17_110, "Les :value d\xe9penses ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "copy_shipping", "Copier livraison", "copy_billing", _s18_151, "design", "Conception", _s21_74, "Enregistrement introuvable", "invoiced", "Factur\xe9e", "logged", "Enregistr\xe9e", "running", "En cours", "resume", "Continuer", "task_errors", "Veuillez corriger les plages de temps qui se chevauchent", "start", "D\xe9marrer", "stop", "Arr\xeater", "started_task", "La t\xe2che a d\xe9mar\xe9 avec succ\xe8s", "stopped_task", "La t\xe2che a \xe9t\xe9 arr\xeat\xe9e avec succ\xe8s", "resumed_task", "La t\xe2che a \xe9t\xe9 reprise avec succ\xe8s", "now", "Maintenant", _s16_184, "D\xe9marrage de t\xe2ches automatique", "timer", "Minuteur", "manual", "Manuel", "budgeted", "Budg\xe9t\xe9", "start_time", "D\xe9marr\xe9e \xe0", "end_time", "Arr\xeat\xe9e \xe0", "date", "Date", "times", "Temps", "duration", "Dur\xe9e", "new_task", "Nouvelle t\xe2che", "created_task", "La t\xe2che a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_task", "La t\xe2che a \xe9t\xe9 modifi\xe9e avec succ\xe8s", "archived_task", "La t\xe2che a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_task", "La t\xe2che a \xe9t\xe9 supprim\xe9e avec succ\xe8s", "restored_task", "La t\xe2che a \xe9t\xe9 restaur\xe9e avec succ\xe8s", "archived_tasks", ":count t\xe2ches ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", "deleted_tasks", ":count t\xe2ches ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", "restored_tasks", "Les :value t\xe2ches ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s19_55, _s22_109, "budgeted_hours", _s16_290, "created_project", _s32_21, "updated_project", _s39_9, _s16_186, _s35_32, "deleted_project", _s36_30, _s16_187, "Le projet a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_111, ":count projets ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_188, ":count projets ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_112, "Les :value projets ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "new_project", "Nouveau projet", _s27_45, "Merci d'utiliser notre app!", "if_you_like_it", _s27_76, "click_here", "cliquez ici", _s18_90, "Cliquez ici", "to_rate_it", "pour l'\xe9valuer.", "average", "Moyenne", "unapproved", "Non approuv\xe9", _s30_15, _s49_2, "locked", "Verrouill\xe9", "authenticate", "Connexion", _s19_57, _s23_64, _s24_46, _s21_130, "footer", "Pied de page", "compare", "Comparer", "hosted_login", "Connexion h\xe9berg\xe9e", "selfhost_login", "Connexion autoh\xe9berg\xe9e", "google_sign_in", _s21_131, "today", "Aujourd'hui", "custom_range", "Personnalis\xe9", "date_range", _s19_96, "current", "En cours", "previous", "Pr\xe9c\xe9dent", "current_period", "P\xe9riode en cours", _s17_113, "P\xe9riode de comparaison", "previous_period", _s18_152, "previous_year", _s16_291, "compare_to", "Comparer \xe0", "last7_days", _s16_292, "last_week", "Derni\xe8re semaine", "last30_days", _s17_169, "this_month", "Mois en cours", "last_month", "Mois dernier", "this_year", "Cette ann\xe9e", "last_year", "Derni\xe8re ann\xe9e", "custom", "Personnalis\xe9", _s16_189, "Cloner en facture", "clone_to_quote", "Cloner en soumission", "clone_to_credit", "Cloner au cr\xe9dit", "view_invoice", "Voir la facture", "convert", "Convertir", "more", "Plus", "edit_client", "Modifier le client", "edit_product", "Modifier le produit", "edit_invoice", _s19_97, "edit_quote", "Modifier la soumission", "edit_payment", "Modifier le paiement", "edit_task", "\xc9diter la t\xe2che", "edit_expense", "\xc9diter la d\xe9pense", "edit_vendor", _s21_132, "edit_project", "\xc9diter le projet", _s20_68, "\xc9diter la soumission r\xe9currente", "billing_address", _s22_110, _s16_191, "Adresse de livraison", "total_revenue", "Revenu total", "average_invoice", "Facture moyenne", "outstanding", "Impay\xe9es", "invoices_sent", _s24_77, "active_clients", "clients actifs", "close", "Fermer", "email", "Courriel", "password", "Mot de passe", "url", "URL", "secret", "Secret", "name", "Nom", "logout", "D\xe9connexion", "login", "Connexion", "filter", "Filtrer", "sort", "Trier", "search", "Rechercher", "active", "Actif", "archived", "Archiv\xe9", "deleted", "Supprim\xe9", "dashboard", "Tableau de bord", "archive", "Archiver", "delete", "Supprimer", "restore", "Restaurer", _s16_193, "Actualisation compl\xe9t\xe9e", _s23_38, "Veuillez saisir votre courriel", _s26_32, "Veuillez saisir votre mot de passe", _s21_77, "Veuillez saisir votre URL", _s26_34, "Veuillez saisir la cl\xe9 de produit", "ascending", "Ascendant", "descending", "Descendant", "save", "Sauvegarder", _s17_115, "Il y a eu une erreur", "paid_to_date", "Pay\xe9 \xe0 ce jour", "balance_due", "Solde d\xfb", "balance", "Solde", "overview", "Survol", "details", "D\xe9tails", "phone", "T\xe9l\xe9phone", "website", "Site web", "vat_number", "N\xb0 de taxe", "id_number", "N\xb0 d'entreprise", "create", "Cr\xe9er", _s19_59, _s35_33, "error", "Erreur", _s16_195, _s20_119, "contacts", "Contacts", "additional", "Additionnel", "first_name", "Pr\xe9nom", "last_name", "Nom", "add_contact", _s18_153, "are_you_sure", "Voulez-vous vraiment effectuer cette action?", "cancel", "Annuler", "ok", "Ok", "remove", "Retirer", _s16_197, "Le courriel est invalide", "product", "Produit", "products", "Produits", "new_product", "Nouveau produit", "created_product", "Le produit a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_product", "Le produit a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s16_199, "Le produit a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_product", _s37_34, _s16_200, "Le produit a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_117, _s36_31, _s16_201, ":count produits ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_118, "Les :value produits ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "product_key", "Produit", "notes", "Notes", "cost", "Co\xfbt", "client", "Client", "clients", "Clients", "new_client", "Nouveau client", "created_client", "Le client a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_client", "Le client a \xe9t\xe9 modifi\xe9 avec succ\xe8s", "archived_client", "Le client a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_202, _s35_34, "deleted_client", "Le client a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "deleted_clients", ":count clients ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "restored_client", "Le client a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_203, "Les :value clients ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "address1", "Rue", "address2", "Appartement / bureau", "city", "Ville", "state", "\xc9tat / province", "postal_code", "Code postal", "country", "Pays", "invoice", "Facture", "invoices", "Factures", "new_invoice", _s16_293, "created_invoice", "La facture a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_invoice", "La facture a \xe9t\xe9 modifi\xe9e avec succ\xe8s", _s16_204, "La facture a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_invoice", "La facture a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s16_205, "La facture a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s17_119, ":count factures ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s16_206, _s38_23, _s17_120, "Les :value factures ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "emailed_invoice", "La facture a \xe9t\xe9 envoy\xe9e par courriel avec succ\xe8s", "emailed_payment", "Le paiement a \xe9t\xe9 envoy\xe9 par courriel avec succ\xe8s", "amount", "Montant", "invoice_number", "N\xb0 de facture", "invoice_date", "Date de facturation", "discount", "Escompte", "po_number", "N\xb0 de bon de commande", "terms", "Modalit\xe9s", "public_notes", "Notes publiques", "private_notes", _s18_154, "frequency", "Fr\xe9quence", "start_date", "Date de d\xe9but", "end_date", "Date de fin", "quote_number", "N\xb0 de soumission", "quote_date", "Date de soumission", "valid_until", "Valide jusqu'au", "items", "Articles", "partial_deposit", "Partiel / d\xe9p\xf4t", "description", "Description", "unit_cost", "Co\xfbt unitaire", "quantity", "Quantit\xe9", "add_item", "Ajouter un article", "contact", "Contact", "work_phone", "T\xe9l\xe9phone", "total_amount", "Montant total", "pdf", "PDF", "due_date", "\xc9ch\xe9ance", _s16_207, "Date d'\xe9ch\xe9ance du paiement partiel", "status", "Statut", _s17_121, "\xc9tat de la facture", "quote_status", "\xc9tat de la soumission", _s22_56, "Cliquez + pour ajouter un article", _s22_58, _s35_35, "count_selected", ":count s\xe9lectionn\xe9s", "total", "Total", "percent", "Pourcent", "edit", "Modifier", "dismiss", "Annuler", _s20_70, "Veuillez saisir une date", _s22_59, _s31_31, _s24_48, "Veuillez s\xe9lectionner une facture", "task_rate", "Taux de t\xe2che", "settings", "Param\xe8tres", "language", "Langue", "currency", "Devise", "created_at", "Cr\xe9\xe9 le", "created_on", "Cr\xe9\xe9 le", "updated_at", "Mis \xe0 jour", "tax", "Taxe", _s30_17, "Veuillez saisir un num\xe9ro de facture", _s27_49, "Veuillez saisir un num\xe9ro de soumission", "past_due", "En souffrance", "draft", "Brouillon", "sent", "Envoy\xe9", "viewed", "Vue", "approved", "Approuv\xe9e", "partial", "Partiel / d\xe9p\xf4t", "paid", "Pay\xe9", "mark_sent", _s20_120, _s22_61, _s50_12, _s22_62, _s50_12, _s23_40, _s56_2, _s23_41, _s56_2, "done", "Valider", _s37_18, "Veuillez saisir un nom de client ou de contact", "dark_mode", "Mode fonc\xe9", _s27_51, "Red\xe9marrez l'app pour mettre \xe0 jour les changements", "refresh_data", "Actualiser les donn\xe9es", "blank_contact", "Contact vide", "activity", "Activit\xe9", _s16_209, "Aucun enregistrement trouv\xe9", "clone", "Dupliquer", "loading", "Chargement", "industry", "Entreprise", "size", "Taille", "payment_terms", "D\xe9lais de paiement", "payment_date", _s16_294, "payment_status", _s16_295, _s16_211, "Em attente", _s16_212, "Annul\xe9e", _s16_213, "\xc9chou\xe9e", _s16_214, "Compl\xe9t\xe9e", _s16_215, "Partiellement rembours\xe9e", _s16_216, "Rembours\xe9e", _s17_122, "Non appliqu\xe9", _s17_123, _s27_79, "net", "Net", "client_portal", "Portail client", "show_tasks", "Afficher les t\xe2ches", "email_reminders", "Courriel de rappel", "enabled", "Activ\xe9", "recipients", "destinataires", "initial_email", _s16_296, "first_reminder", "1er rappel", "second_reminder", "2e rappel", "third_reminder", "3e rappel", "reminder1", "Premier rappel", "reminder2", "Deuxi\xe8me rappel", "reminder3", _s16_297, "template", "Mod\xe8le", "send", "Envoyer", "subject", "Sujet", "body", "Corps", "send_email", "Envoyer un courriel", "email_receipt", "Envoyer le re\xe7u de paiement par courriel au client", "auto_billing", _s23_66, "button", "Bouton", "preview", "PR\xc9VISUALISATION", "customize", "Personnalisation", "history", "Historique", "payment", "Paiement", "payments", "Paiements", "refunded", "Rembours\xe9e", "payment_type", _s16_273, _s21_79, "N\xb0 de r\xe9f\xe9rence", "enter_payment", _s20_124, "new_payment", _s20_124, "created_payment", "Le paiement a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_payment", "Le paiement a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s16_217, "Le paiement a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_payment", "Le paiement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s16_218, "Le paiement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_124, ":count paiements ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_219, ":count paiements ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_125, "Les :value paiements ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "quote", "Soumission", "quotes", "Soumissions", "new_quote", "Nouvelle soumission", "created_quote", "La soumission a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_quote", "La soumission a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", "archived_quote", "La soumission a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_quote", "La soumission a \xe9t\xe9 supprim\xe9e avec succ\xe8s", "restored_quote", "La soumission a \xe9t\xe9 restaur\xe9e avec succ\xe8s", "archived_quotes", ":count soumissions ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", "deleted_quotes", ":count soumissions ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", "restored_quotes", "Les :value soumissions ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "expense", "D\xe9pense", "expenses", "D\xe9penses", "vendor", "Fournisseur", "vendors", "Fournisseurs", "task", "T\xe2che", "tasks", "T\xe2ches", "project", "Projet", "projects", "Projets", "activity_1", _s30_40, "activity_2", _s33_31, "activity_3", _s34_26, "activity_4", _s32_22, "activity_5", _s38_24, "activity_6", ":user a envoy\xe9 par courriel la facture :invoice pour :client \xe0 :contact", "activity_7", ":contact a visualis\xe9 la facture :invoice pour :client", "activity_8", _s35_36, "activity_9", _s36_32, "activity_10", ":contact a saisi le paiement :payment de :payment_amount de la facture :invoice pour :client", "activity_11", ":user a mis \xe0 jour le paiement :payment", "activity_12", ":user a archiv\xe9 le paiement :payment", "activity_13", ":user a supprim\xe9 le paiement :payment", "activity_14", ":user a saisi le cr\xe9dit :credit", "activity_15", _s36_33, "activity_16", _s33_32, "activity_17", _s34_27, "activity_18", ":user a cr\xe9\xe9 la soumission :quote", "activity_19", ":user a mis \xe0 jour la soumission :quote", "activity_20", ":user a envoy\xe9 par courriel la soumission :quote pour :client \xe0 :contact", "activity_21", ":contact a visualis\xe9 la soumission :quote", "activity_22", ":user a archiv\xe9 la soumission :quote", "activity_23", ":user a supprim\xe9 la soumission :quote", "activity_24", ":user a restaur\xe9 la soumission :quote", "activity_25", _s36_34, "activity_26", _s34_28, "activity_27", _s37_35, "activity_28", _s34_29, "activity_29", ":contact a approuv\xe9 la soumission :quote pour :client", "activity_30", _s35_37, "activity_31", _s38_25, "activity_32", _s39_10, "activity_33", _s39_11, "activity_34", _s32_23, "activity_35", _s35_38, "activity_36", _s36_35, "activity_37", _s36_36, "activity_39", ":user a annul\xe9 un paiement :payment de :payment_amount", "activity_40", ":user a rembours\xe9 :adjustment d'un paiement :payment de :payment_amount", "activity_41", _s50_11, "activity_42", _s27_77, "activity_43", _s33_33, "activity_44", _s30_41, "activity_45", _s31_32, "activity_46", _s31_33, "activity_47", _s38_26, "activity_48", _s32_24, "activity_49", _s38_27, "activity_50", _s35_39, "activity_51", _s36_37, "activity_52", _s36_38, "activity_53", _s48_3, "activity_54", ":user a r\xe9ouvert le billet :ticket", "activity_55", ":contact a r\xe9pondu au billet :ticket", "activity_56", ":user a vu le billet :ticket", "activity_57", "Le syst\xe8me n'a pas pu envoyer le courriel de la facture :invoice", "activity_58", _s35_40, "activity_59", _s34_30, "activity_60", ":contact a vu la soumission :quote", "activity_61", ":user a mis \xe0 jour le client :client", "activity_62", ":user a mis \xe0 jour le fournisseur :vendor", "activity_63", ":user a envoy\xe9 le premier rappel pour la facture :invoice de :contact", "activity_64", ":user a envoy\xe9 le deuxi\xe8me rappel pour la facture :invoice de :contact", "activity_65", ":user a envoy\xe9 le troisi\xe8me rappel pour la facture :invoice de :contact", "activity_66", ":user a envoy\xe9 un rappel sans fin pour la facture :invoice de :contact", "activity_80", ":user a cr\xe9\xe9 l'abonnement :subscription", "activity_81", ":user a mis \xe0 jour l'abonnement :subscription", "activity_82", ":user a archiv\xe9 l'abonnement :subscription", "activity_83", ":user a supprim\xe9 l'abonnement :subscription", "activity_84", ":user a restaur\xe9 l'abonnement :subscription", _s17_126, _s27_78, "emailed_quote", "La soumission a \xe9t\xe9 envoy\xe9e avec succ\xe8s", "emailed_credit", "Le cr\xe9dit a envoy\xe9 par courriel avec succ\xe8s", _s20_72, "La soumission a \xe9t\xe9 marqu\xe9e comme envoy\xe9e avec succ\xe8s", _s21_81, "Le cr\xe9dit a \xe9t\xe9 marqu\xe9 comme envoy\xe9 avec succ\xe8s", "expired", "Expir\xe9", "all", "Tous", "select", "S\xe9lectionner", _s22_63, _s34_31, "custom_value1", _s17_171, "custom_value2", _s17_171, "custom_value3", _s22_111, "custom_value4", _s22_112, _s18_91, _s30_42, _s24_53, _s39_12, _s29_36, "Message personnalis\xe9 pour facture impay\xe9e", _s27_56, "Message personnalis\xe9 pour facture pay\xe9e", _s31_18, "Message personnalis\xe9 pour soumission non approuv\xe9e", "lock_invoices", _s24_78, "translations", "Traductions", _s19_60, "Mod\xe8le du num\xe9ro de t\xe2che", _s19_62, "Compteur du num\xe9ro de t\xe2che", _s22_65, "Mod\xe8le du num\xe9ro de d\xe9pense", _s22_67, "Compteur du num\xe9ro de d\xe9pense", _s21_82, "Mod\xe8le du num\xe9ro de fournisseur", _s21_84, "Compteur du num\xe9ro de fournisseur", _s21_86, "Mod\xe8le du num\xe9ro de billet", _s21_88, "Compteur du num\xe9ro de billet", _s22_69, "Mod\xe8le du num\xe9ro de paiement", _s22_71, "Compteur du num\xe9ro de paiement", _s22_73, "Mod\xe8le du num\xe9ro de facture", _s22_75, _s29_57, _s20_73, "Mod\xe8le du num\xe9ro de soumission", _s20_75, "Compteur du num\xe9ro de soumission", _s21_90, _s26_60, _s21_92, _s28_76, _s21_94, _s26_60, _s21_95, _s28_76, _s18_93, _s33_34, "counter_padding", _s22_113, _s28_56, "Compteur partag\xe9 pour les factures et les soumissions", _s18_95, "Nom de taxe par d\xe9faut 1", _s18_97, "Taux de taxe par d\xe9faut 1", _s18_99, "Nom de taxe par d\xe9faut 2", _s18_101, "Taux de taxe par d\xe9faut 2", _s18_103, "Nom de taxe par d\xe9faut 3", _s18_105, "Taux de taxe par d\xe9faut 3", _s21_96, "Objet du courriel de facture", _s19_64, "Objet du courriel de soumission", _s21_98, "Objet du courriel de paiement", _s29_38, "Sujet du courriel de paiement partiel", "show_table", "Affiche la table", "show_list", "Afficher la liste", "client_city", "Ville du client", "client_state", "Province du client", "client_country", "Pays du client", _s16_220, "Client actif", "client_balance", "Solde du client", "client_address1", "Rue du clients", "client_address2", _s22_114, "vendor_address1", "Rue du fournisseur", "vendor_address2", "App du fournisseur", _s24_55, "Rue d'exp\xe9dition", _s24_56, "App / bureau d'exp\xe9dition du client", "type", "Type", "invoice_amount", _s21_133, _s16_224, "\xc9ch\xe9ance", "tax_rate1", "Taux de taxe 1", "tax_rate2", "Taux de taxe 2", "tax_rate3", "Taux de taxe 3", "auto_bill", _s23_66, "archived_at", "Archiv\xe9 \xe0", "has_expenses", "A D\xe9penses", "custom_taxes1", "Taxes personnalis\xe9es 1", "custom_taxes2", "Taxes personnalis\xe9es 2", "custom_taxes3", "Taxes personnalis\xe9es 3", "custom_taxes4", "Taxes personnalis\xe9es 4", _s17_128, _s25_70, _s17_129, _s25_71, _s17_130, _s25_72, _s17_131, _s25_73, "is_deleted", "Est supprim\xe9", "vendor_city", _s20_121, "vendor_state", "Province du fournisseur", "vendor_country", _s19_98, "is_approved", "Est approuv\xe9", "tax_name", "Nom de la taxe", "tax_amount", "Montant de taxe", "tax_paid", "Taxe pay\xe9e", "payment_amount", _s19_99, "age", "\xc2ge", "is_running", "En cours", "time_log", _s16_298, "bank_id", "Banque", _s19_66, "ID de cat\xe9gorie de d\xe9pense", _s16_225, _s20_122, _s19_68, "ID de la devise de facturation", "tax_name1", "Nom de la taxe 1", "tax_name2", "Nom de la taxe 2", "tax_name3", "Nom de taxe 3", "transaction_id", _s17_170, _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "de", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, "Bestelldatum", _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Akzeptieren", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Angenommen", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Bestellung", "purchase_orders", "Bestellungen", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Zahlungseinstellungen", "default", "Standard", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Aktueller Stand", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Zahlungsanbieter hinzuf\xfcgen", _s24_6, _s77_, "left", "Links", "right", "Rechts", "center", "Mittig", "page_numbering", "Seiten Nummerierung", _s24_7, "Ausrichtung der Seitennummerierung", _s31_1, "Rechnung versendet", _s24_9, "Produktbeschreibung anzeigen", _s29_2, "Beschreibung bei der Produktauswahl anzeigen", "invoice_items", "Rechnungselemente", "quote_items", "Angebotselemente", "profitloss", _s18_156, "import_format", "Import-Format", "export_format", "Export-Format", "export_type", "Export-Typ", "stop_on_unpaid", "Stoppen falls nicht bezahlt", _s19_7, "Erstelle keine neuen wiederkehrenden Rechnungen, falls die vorige Rechnung noch nicht bezahlt wurde.", "use_quote_terms", "Benutze Angebotsbedingungen", _s20_11, "Wenn ein Angebot in eine Rechnung umgewandelt wird", "add_country", "Land hinzuf\xfcgen", "enable_tooltips", "Quickinfo/Tooltips anzeigen", _s20_12, "Quickinfo/Tooltips beim Dr\xfcberfahren mit der Maus anzeigen", _s21_8, "Fehler: Eintr\xe4ge sind mehr als einem Kunden zugeordnet", "register_label", "Benutzerkonto in wenigen Sekunden erstellen", "login_label", "Mit einem bestehenden Benutzerkonto anmelden", "add_to_invoice", "Zur Rechnung :invoice hinzuf\xfcgen", _s17_6, "Keine Rechnungen gefunden", "week", "Woche", "created_record", "Eintrag erfolgreich erstellt.", _s26_, "Bezahltes Automatisch Archivieren", _s31_2, "Automatische Archivierung von Rechnungen, wenn diese als bezahlt markiert werden.", _s31_3, "Auto-Archivierung abgebrochen", _s36_2, "Automatisch Rechnungen archivieren, wenn diese annulliert wurden.", _s20_13, "Alternativer PDF Viewer", _s25_1, "Verbessere das Scrolling \xfcber die PDF Vorschau [BETA]", _s16_8, "Rechnungs-W\xe4hrung", "range", "Bereich", "tax_amount1", "Steuerh\xf6he 1", "tax_amount2", "Steuerh\xf6he 2", "tax_amount3", "Steuerh\xf6he 3", "create_project", "Projekt erstellen", "update_project", "Projekt aktualisieren", "view_task", "Aufgabe anzeugen", "cancel_invoice", "Abbrechen", "changed_status", "Erfolgreich Aufgabenstatus ge\xe4ndert", "change_status", "Status \xe4ndern", "fees_sample", "Die Geb\xfchren f\xfcr eine Rechnung \xfcber :amount\xa0 w\xfcrden :total betragen.", _s19_8, "Touchscreen-Modus aktivieren", _s24_11, "Scrollen durch wischen", "after_saving", "Nach dem Speichern", "view_record", "Datensatz anzeigen", _s21_9, "Markdown in E-Mails verwenden", _s26_0, "Visuellen Markdown-Editor f\xfcr E-Mails verwenden", _s19_10, "Markdown in PDFs verwenden", "json_help", "Achtung: JSON-Dateien, die mit v4 der App erstellt wurden, werden nicht unterst\xfctzt", "release_notes", "Versionshinweise", _s23_4, "Upgrade deinen Tarif um Berichte anzusehen", "started_tasks", ":value Aufgaben erfolgreich gestartet", "stopped_tasks", ":value Aufgaben erfolgreich angehalten", "approved_quote", "Angebot erfolgreich angenommen", "approved_quotes", ":value Angebote erfolgreich angenommen", "approve", _s16_299, "client_website", "Kunden-Website", "invalid_time", "Ung\xfcltige Zeit", _s21_11, "Liefer-Region Kunde", _s20_15, "Lieferort Kunde", _s27_3, "Liefer-PLZ Kunde", _s23_5, "Kunde Lieferung LAND", "load_pdf", "PDF laden", _s16_10, "Kostenlose Testversion starten", _s24_12, "Teste den Pro-Tarif GRATIS f\xfcr 14 Tage", "due_on_receipt", "F\xe4llig bei Erhalt", "is_paid", "Ist bezahlt", "age_group_paid", "Bezahlt", "id", "ID", "convert_to", "Umwandeln in", "client_currency", "Kundenw\xe4hrung", _s16_12, "Firmenw\xe4hrung", "purged_client", "Kunde erfolgreich bereinigt", _s27_5, "Um Spam zu verhindern braucht es ein Upgrade zu einem bezahlten Account um das E-Mail anzupassen.", _s22_22, "Upgrade deinen Tarif um weitere Firmen hinzuzuf\xfcgen", _s30_1, "Die Datei wurde im Downloads-Ordner gespeichert", "small", "Klein", _s21_13, "Guthaben erfolgreich als bezahlt markiert", _s22_23, "Erfolgreich Kredite als bezahlt markiert", _s16_14, "Daten werden geladen - bitte warten Sie, bis der Vorgang abgeschlossen ist", "wait_for_saving", "Datenspeicherung - bitte warten Sie, bis der Vorgang abgeschlossen ist", _s20_17, "Hinweis: Die hier vorgenommenen \xc4nderungen werden nur in der Vorschau angezeigt, sie m\xfcssen in den obigen Registerkarten angewendet werden, um gespeichert zu werden.", "remaining", "Verbleibende", "invoice_paid", "Rechnung bezahlt", "activity_120", ":user erstellte wiederkehrende Ausgabe :recurring_expense", "activity_121", ":user aktualisiert wiederkehrende Ausgabe :recurring_expense", "activity_122", ":user archivierte wiederkehrende Ausgabe :recurring_expense", "activity_123", ":user l\xf6schte wiederkehrende Ausgabe :recurring_expense", "activity_124", ":user stellte wiederkehrende Ausgabe :recurring_expense wieder her", "normal", "Normal", "large", "Gro\xdf", "extra_large", "Extra Gro\xdf", _s16_15, "PDF-Vorschau anzeigen", _s21_14, "PDF-Vorschau bei der Bearbeitung von Rechnungen anzeigen", "print_pdf", "PDF drucken", "remind_me", "Erinnere mich", _s16_17, "Sofortige Bank\xfcberweisung", "click_selected", "Ausgew\xe4hltes anklicken", "hide_preview", "Vorschau ausblenden", "edit_record", "Datensatz bearbeiten", _s27_6, "Der Kreditbetrag kann nicht h\xf6her sein als der Rechnungsbetrag", "giropay", "GiroPay", "direct_debit", "Lastschriftverfahren", _s21_15, "Bitte legen Sie ein Kontopasswort fest", "set_password", "Passwort festlegen", _s17_9, "Wir empfehlen, die Desktop-Anwendung zu verwenden, um die beste Leistung zu erzielen.", _s16_19, "Wir empfehlen die Verwendung der mobilen App, um die beste Leistung zu erzielen.", _s20_18, "Gateway erfolgreich getrennt", "disconnect", "Trennen", "add_to_invoices", "Zu Rechnungen hinzuf\xfcgen", "acss", "Vorautorisierte Lastschriftzahlungen", "becs", "BECS-Lastschriftverfahren", "bulk_download", "Herunterladen", _s17_10, "Daten lokal speichern, damit die Anwendung schneller starten kann. (Deaktivierung kann die Leistung bei gro\xdfen Konten verbessern)", "persist_ui", "Benutzeroberfl\xe4che beibehalten", "persist_ui_help", "UI-Status lokal speichern, damit die Anwendung an der letzten Position startet (Deaktivierung kann die Leistung verbessern)", _s18_9, "Postleitzahl des Kunden", _s17_11, "Umsatzsteuer-Identifikationsnummer des Kunden", "has_tasks", "Hat Aufgaben", "registration", "Registrierung", _s27_7, "Bitte autorisieren Sie Stripe zur Annahme von Online-Zahlungen.", "view_expense", "Ausgabe # :expense ansehen", "view_statement", "Zeige Bericht", "sepa", "SEPA-Lastschrift", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, "Alle Datens\xe4tze aktualisieren", "system", "System", _s19_12, "Standardunternehmen festlegen", "updated_company", "Unternehmen wurde erfolgreich aktualisiert", "kbc", "KBC", "bancontact", "Bancontact", _s19_14, "Helfen Sie uns, uns zu verbessern, indem Sie uns sagen, warum (optional)", "webhook_success", "Webhook erfolgreich", _s24_13, "Die Aufgaben m\xfcssen alle zum selben Kunden geh\xf6ren", _s27_8, "Die Ausgaben m\xfcssen alle zu demselben Kunden geh\xf6ren", "app", "App", _s20_19, "F\xfcr die beste Leistung laden Sie die App herunter :app", _s16_20, "Bruttozeile gesamt", _s18_109, "Email Rechnung", _s16_230, _s25_74, _s17_134, "Guthaben per E-Mail senden", "from_name", "Absendername", _s16_21, "Klonen zu Ausgabe", _s17_13, "Wiederkehrende Ausgabe", _s18_13, "Wiederkehrende Ausgaben", _s21_16, "Wiederkehrende Ausgabe eingeben", _s22_24, "Wiederkehrende Ausgabe bearbeiten", _s25_2, "Wiederkehrende Ausgabe wurde erstellt", _s25_3, "Wiederkehrende Ausgabe wurde aktualisiert", _s26_2, "Wiederkehrende Ausgabe wurde archiviert", _s25_4, "Projekt wurde gel\xf6scht", _s25_5, "Erfolgreich wiederkehrende Ausgaben entfernt", _s26_3, "Wiederkehrende Ausgabe wurde wiederhergestellt", _s24_14, _s30_43, _s25_6, _s30_43, "last_sent_date", "Datum des letzten Versands", "include_drafts", "Entw\xfcrfe einschlie\xdfen", _s19_15, "Entw\xfcrfe von Aufzeichnungen in Berichte einbeziehen", "is_invoiced", "Ist in Rechnung gestellt", "change_plan", "Tarif \xe4ndern", "persist_data", "Daten aufbewahren", "customer_count", "Kundenzahl", _s16_22, "Kunden \xfcberpr\xfcfen", _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Dezimaltrennzeichen", _s26_4, "Komma als Dezimalstelle in Formularen verwenden", "select_method", "Methode ausw\xe4hlen", "select_platform", "Plattform ausw\xe4hlen", _s28_3, "Bitte verwenden Sie die Web-App, um sich mit Gmail zu verbinden", _s16_26, "Postensteuers\xe4tze sind deaktiviert", "enable_markdown", "Markdown verwenden", _s20_20, "Konvertierung von Markdown in HTML in der PDF-Datei", "user_guide", "Nutzer-Anleitung", _s18_15, "Zweiten Kontakt hinzuf\xfcgen", "previous_page", "Vorherige Seite", "next_page", "N\xe4chste Seite", "export_colors", "Farben exportieren", "import_colors", "Farben importieren", "clear_all", "Alle l\xf6schen", "contrast", "Kontrast", "custom_colors", "Eigene Farben", "colors", "Farben", _s31_4, "Aktive Hintergrundfarbe der Seitenleiste", _s25_8, "Schriftfarbe der aktiven Seitenleiste", _s33_5, "Seitenleiste Inaktive Hintergrundfarbe", _s27_10, "Seitenleiste Inaktiv Schriftfarbe", _s36_3, "Tabelle alternierende Zeilenhintergrundfarbe", _s31_6, "Hintergrundfarbe der Rechnungskopfzeile", _s25_10, "Schriftfarbe der Rechnungskopfzeile", "net_subtotal", "Netto", "review_app", "App bewerten", "check_status", "Status pr\xfcfen", "free_trial", "Kostenlose Testversion", _s23_7, "Die Testversion des Pro-Plans endet in :count Tagen, klicken Sie zum Upgrade.", _s21_18, "Heute ist der letzte Tag des Pro-Tarifs, klicken Sie zum Upgrade.", "change_email", "E-Mail \xe4ndern", _s25_12, "Konfigurieren Sie optional eine separate Kunden-Portal-Dom\xe4ne", _s21_19, "Im Portal angezeigte Aufgaben", "uninvoiced", "Nicht in Rechnung gestellt", "subdomain_guide", "Die Subdomain wird im Kundenportal verwendet, um Links zu personalisieren, die Ihrer Marke entsprechen. z.B. https://your-brand.invoicing.co", "send_time", "Sendezeit", "import_data", "Importiere Daten", "import_settings", "Einstellungen importieren", _s17_15, "Bitte stellen Sie die JSON-Datei zur Verf\xfcgung", _s19_16, "Bitte w\xe4hlen Sie, um die Einstellungen und/oder Daten zu importieren", "json", "JSON", _s24_16, "Keine Zahlungsarten aktiviert", "wait_for_data", "Bitte warten Sie, bis die Daten vollst\xe4ndig geladen sind", "net_total", "Netto Gesamt", "has_taxes", "enth\xe4lt Steuern", _s16_27, "Kunden importieren", _s18_17, _s40_0, "login_success", "Erfolgreiche Anmeldung", "login_failure", "Anmeldung fehlgeschlagen", "exported_data", "Sobald die Datei fertig ist, erhalten Sie eine E-Mail mit einem Download-Link.", _s23_8, "Gel\xf6schte Kunden einbeziehen", _s28_5, "Datens\xe4tze von gel\xf6schten Kunden laden", "step_1_sign_in", "Schritt 1: Registrieren", _s16_30, "Schritt 2: autorisieren", "account_id", "Konto-ID", _s27_12, "Die Migration ist noch nicht abgeschlossen", "activity_100", ":user hat die wiederkehrende Rechnung :recurring_invoice erstellt.", "activity_101", ":user hat die wiederkehrende Rechnung :recurring_invoice aktuallisiert", "activity_102", ":user hat die wiederkehrende Rechnung :recurring_invoice archiviert", "activity_103", ":user hat die wiederkehrende Rechnung :recurring_invoice gel\xf6scht.", "activity_104", ":user hat die wiederkehrende Rechnung :recurring_invoice wiederhergestellt.", _s18_18, "Ende der Aufgabe anzeigen", _s23_10, "Aktivieren Sie die Angabe des Enddatums der Aufgabe", "gateway_setup", "Gateway-Einstellungen", "preview_sidebar", "Vorschau der Seitenleiste", _s16_31, "Daten f\xfcr wie viele Jahre anzeigen?", _s18_20, "alle Sitzungen erfolgreich beendet", _s16_33, "Alle Sitzungen beenden", "count_session", "1 Sitzung", "count_sessions", ":count Sitzungen", "invoice_created", "Rechnung erstellt", "quote_created", "Angebot erstellt", "credit_created", "Gutschrift erstellt", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Zuletzt aktualisiert", "invoice_item", "Rechnungsposition", "quote_item", "Angebotsposition", _s18_21, "Kontakt Vorname", _s17_17, "Kontakt Nachname", "order", "Bestellung", "unassigned", "Nicht zugewiesen", "partial_value", "Muss gr\xf6sser als Null und kleiner als der Gesamtbetrag sein", "search_kanban", _s16_300, "search_kanbans", _s16_300, "kanban", "Kanban", "enable", "Aktivieren", "move_top", "Ganz nach oben verschieben", "move_up", "Nach oben verschieben", "move_down", "Nach unten verschieben", "move_bottom", "Ganz nach unten verschieben", "subdomain_help", "Passen Sie die Rechnungslink-Subdom\xe4ne an oder stellen Sie die Rechnung auf Ihrer eigenen Webseite zur Verf\xfcgung.", _s21_21, "Fehler: das benutzerdefinierte E-Mail Template muss die :body Variable beinhalten", _s25_13, "bitte stelle sicher das die :body Variable eingef\xfcgt ist", _s17_19, "Zeige Datumsformate", "is_viewed", "Ist angesehen", "letter", "Letter", "legal", "Rechtliches", "page_layout", "Seiten Layout", "portrait", "Hochformat", "landscape", "Querformat", _s26_5, "Der Kontoinhaber kann auf einen kostenpflichtigen Plan upgraden, um die erweiterten erweiterten Einstellungen zu aktivieren", _s20_21, "F\xfchren Sie ein Upgrade auf einen kostenpflichtigen Plan durch, um die erweiterten Einstellungen zu aktivieren", _s21_22, "Zahlungsbedingungen f\xfcr Rechnungen", _s17_21, "Angebot g\xfcltig bis", "no_headers", "Keine Header", "add_header", "Header hinzuf\xfcgen", "remove_header", "Kopfzeile entfernen", "return_url", "Return-URL", "rest_method", "REST-Methode", "header_key", "Header-Key", "header_value", "Header-Wert", _s18_23, "Wiederkehrende Produkte", "promo_code", "Gutscheincode", "promo_discount", "Promo-Rabatt", _s18_25, "Erm\xf6gliche Storno", _s16_35, "Pro Platz Aktiviert", "max_seats_limit", "Max. Pl\xe4tze Limit", "trial_enabled", "Testversion aktiv", "trial_duration", "Testzeitraum", _s21_24, "\xdcberschreiben von Abfragen zulassen", _s18_27, "Plan\xe4nderungen zulassen", "plan_map", "Plan Map", "refund_period", "Erstattungszeitraum", _s21_26, "Webhook-Konfiguration", "purchase_page", "Kauf-Seite", "security", "Sicherheit", "email_bounced", "E-Mail zur\xfcckgesendet", _s20_22, "Spam-Beschwerde", "email_delivery", "E-Mail-Zustellung", _s16_37, "Webhook-Antwort", "pdf_response", "PDF-Antwort", _s22_26, "Authentifizierungsfehler", "pdf_failed", "PDF fehgeschlagen", "pdf_success", "PDF erfolgreich", "modified", "ge\xe4ndert", "subscription", "Abonnement", "subscriptions", "Abonnements", _s16_39, "Neues Abonnement", _s17_23, "Abonnement bearbeiten", _s20_23, "Abonnement erfolgreich erstellt", _s20_24, "Abonnement erfolgreich aktualisiert", _s21_28, "Abonnement erfolgreich archiviert", _s20_25, "Abonnement gel\xf6scht", _s20_26, "Abonnement entfernt", _s21_29, "Abonnement wiederhergestellt", _s19_17, "Suchen Sie 1 Abonnement", _s20_27, ":count Abonnements durchsuchen", _s26_6, "Subdomain ist nicht verf\xfcgbar", "connect_gmail", "Mit Gmail verbinden", _s16_41, "von Gmail trennen", "connected_gmail", "Mit Gmail erfolgreich verbunden", _s18_29, "Von Gmail erfolgreich getrennt", _s16_43, "\xc4nderungen an der Codebasis k\xf6nnen das Update blockieren, Sie k\xf6nnen diesen Befehl ausf\xfchren, um die \xc4nderungen zu verwerfen:", _s16_44, "Kundennummer", "count_minutes", ":count Minuten", _s16_46, "Passwort Timeout", _s29_4, "gemeinsamer Rechnungs- / Kreditz\xe4hler", "use_last_email", "Vorherige E-Mail benutzen", _s16_48, "Unternehmen aktivieren", _s21_31, "E-Mails, wiederkehrende Rechnungen und Benachrichtigungen aktivieren", _s27_14, "Ein Fehler ist aufgetreten, bitte versuchen Sie es erneut.", _s27_15, "Bitte vergeben Sie zuerst ein Passwort.", _s34_6, "Achtung: Das \xc4ndern deiner Telefonnummer wird die Zwei-Faktor-Authentifizierung deaktivieren", "help_translate", "Hilf mit beim \xdcbersetzen", _s23_11, "Bitte w\xe4hlen Sie ein Land", "resend_invite", "Einladung erneut versenden", _s19_18, "2FA erfolgreich deaktiviert", _s16_50, "Konto erfolgreich verbunden.", _s19_19, "Konto erfolgreich getrennt.", "delivered", "zugestellt", "bounced", "Abpraller", "spam", "Spam", "view_docs", "Dokumentation ansehen.", _s32_4, "Bitte gib eine Handynummer an, um die Zwei-Faktor-Authentifizierung zu aktivieren", "send_sms", "SMS senden", "sms_code", "SMS-Code", _s21_32, "Barcode mit :link kompatibler App scannen.", _s18_30, "Zwei-Faktor-Authentifizierung erfolgreich aktiviert", "connect_google", "Google-Konto verbinden", _s17_25, "Google-Konto entfernen", _s17_27, "Zwei-Faktor-Authentifizierung", _s18_31, "Zwei-Faktor-Authentifizierung deaktivieren", _s34_7, "Password mit Verkn\xfcpfung zu Sozialmedia notwendig", "stay_logged_in", "Eingeloggt bleiben", _s23_13, "Warnung: Ihre Sitzung l\xe4uft bald ab", "count_hours", ":count Stunden", "count_day", "1 Tag", "count_days", ":count Tage", _s19_20, "Web-Sitzungs-Timeout", _s17_28, "Sicherheitseinstellungen", "resend_email", "Best\xe4tigungs-E-Mail erneut versenden", _s26_8, "Bitte best\xe4tigen Sie Ihre E-Mail-Adresse", _s16_51, "Zahlung erstattet", _s19_22, "Teilweise unangewandt", _s19_24, "Bitte w\xe4hlen Sie einen mit Gmail authentifizierten Benutzer", "list_long_press", "Liste Langes Dr\xfccken", "show_actions", "Zeige Aktionen", _s17_30, "Mehrfachauswahl", _s27_17, "Eine E-Mail wurde versandt um Ihre E-Mail-Adresse zu best\xe4tigen.", _s21_33, "Um :client_counter zu verwenden, f\xfcgen Sie bitte entweder :client_number oder :client_id_number hinzu, um Konflikte zu vermeiden", "this_quarter", "Dieses Quartal", "last_quarter", "Letztes Quartal", "to_update_run", "Zum \xc4nderungslauf", _s18_33, "In Rechnung umwandeln", _s16_52, "Registrierungs-URL", "invoice_project", "Projekt berechnen", "invoice_task", "Aufgabe in Rechnung stellen", "invoice_expense", "Ausgabe abrechnen", _s19_25, "Suche 1 Zahlungsbedingung", _s20_28, "Suche :count Zahlungsbedingungen", _s16_54, "Speichern und Vorschau anzeigen", "save_and_email", "Speichern und verschicken", _s16_56, "Unterst\xfctzte Ereignisse", _s16_58, "Umgerechneter Betrag", _s17_32, "Guthabenstand", _s22_28, "Umgewandelt Bezahlt bis Datum", _s24_18, "Umgerechneter Guthabenbetrag", "converted_total", "Umgerechnet Total", "is_sent", "Gesendet", _s17_34, "Standard-Dokumente", "document_upload", "Dokument hochladen", _s20_29, "Erlaube Kunden Dokumente hochzuladen", "expense_total", "Ausgabensumme", "enter_taxes", "Steuers\xe4tze eingeben", "by_rate", "Nach Satz", "by_amount", "Nach Betrag", "enter_amount", "Betrag eingeben", "before_taxes", "Vor Steuern", "after_taxes", "Nach Steuern", "color", "Farbe", "show", "Anzeigen", "hide", "Verbergen", "empty_columns", "Leere Spalten", _s21_35, "Der Entwicklungsmodus ist aktiviert", _s26_9, "Warnung: Es ist f\xfcr die Verwendung auf lokalen Rechnern gedacht und kann Anmeldedaten preisgeben. Klicken Sie, um mehr zu erfahren.", "running_tasks", "Laufende Aufgaben", "recent_tasks", "K\xfcrzliche Aufgaben", "recent_expenses", "K\xfcrzliche Ausgaben", _s17_36, "Zuk\xfcnftige Ausgaben", "update_app", "App aktualisieren", "started_import", "Import erfolgreich gestartet", _s24_20, "Dupliziere Spaltenzuordnung", _s20_30, "Benutzt Inklusive Steuern", _s18_35, "Ist Betrag erm\xe4\xdfigt", "column", "Spalte", "sample", "Beispiel", "map_to", "Zuordnen", "import", "Importieren", _s25_15, "Benutze erste Zeile als Spalten\xfcberschrift", "select_file", "Bitte w\xe4hlen sie eine Datei", _s16_60, "Keine Datei ausgew\xe4hlt", "csv_file", "W\xe4hle CSV Datei", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Buchhaltung", _s22_30, "Bitte geben Sie alle CSV-Dateien an.", "import_type", "Import Typ", "html_mode", "HTML Modus", "html_mode_help", "Vorschau von Aktualisierungen schneller, aber weniger genau", "view_licenses", "Lizenzen anzeigen", "webhook_url", "Webhook URL", _s17_38, "Vollbild Editor", "sidebar_editor", "Seitenmen\xfc Editor", _s22_31, 'Bitte geben Sie ":value" zur Best\xe4tigung ein', "purge", "Bereinigen", "service", "Dienst", "clone_to", "Duplizieren zu", "clone_to_other", "Duplizieren zu anderem", "labels", "Beschriftung", "add_custom", "Beschriftung hinzuf\xfcgen", "payment_tax", "Steuer-Zahlung", "unpaid", "Unbezahlt", "white_label", "White Label", "delivery_note", "Lieferschein", _s24_23, "Versendete Rechnungen sind gesperrt", _s24_25, "Bezahlte Rechnungen sind gesperrt", "source_code", "Quellcode", "app_platforms", "Applikations Platform", "invoice_late", _s18_157, "quote_expired", "Angebot abgelaufen", "partial_due", "Anzahlung", "invoice_total", "Rechnungsbetrag", "quote_total", "Angebotssumme", "credit_total", "Gesamtguthaben", _s23_14, "Gesamtbetrag", "actions", "Aktionen", "expense_number", "Ausgabennummer", "task_number", "Aufgabennummer", "project_number", "Projektnummer", "project_name", "Projektname", "warning", "Warnung", "view_settings", "Einstellungen anzeigen", _s24_27, "Warnung: diese Firma wurde noch nicht aktiviert", "late_invoice", _s18_157, "expired_quote", "Abgelaufenes Angebot", "remind_invoice", "Rechnungserinnerung", "cvv", "Kartenpr\xfcfziffer", "client_name", "Kunde", "client_phone", "Kunden Telefon", "required_fields", "Ben\xf6tigte Felder", "calculated_rate", "Berechneter Satz", _s17_40, _s19_100, "clear_cache", "Zwischenspeicher leeren", "sort_order", "Sortierreihenfolge", "task_status", "Status", "task_statuses", "Aufgaben Status", "new_task_status", "Neuer Aufgaben Status", _s16_62, "Aufgaben Status bearbeiten", _s19_26, "Aufgaben Status erfolgreich erstellt", _s19_27, "Aufgabenstatus erfolgreich aktualisiert", _s20_32, "Aufgaben Status erfolgreich archiviert", _s19_28, "Aufgaben Status erfolgreich gel\xf6scht", _s19_29, "Aufgaben Status erfolgreich entfernt", _s20_33, "Aufgaben Status erfolgreich wiederhergestellt", _s22_32, ":value Aufgaben Stati erfolgreich archiviert", _s21_37, ":value Aufgaben Stati erfolgreich gel\xf6scht", _s22_33, ":value Aufgaben Stati erfolgreich wiederhergestellt", _s18_37, "Suche 1 Aufgaben Status", _s20_35, "Suche :count Aufgaben Status", _s16_64, "Zeige Aufgaben Tabelle", _s21_38, "Beim Erstellen von Rechnungen immer die Aufgabenauswahl anzeigen", _s20_36, "Aufgaben Zeiterfassung in Rechnung stellen", _s25_16, "Zeitdetails in der Rechnungsposition ausweisen", _s20_38, "Aufgabenzeiterfassung in Rechnung stellen", _s25_17, "Datumsdetails zu den Rechnungsposten hinzuf\xfcgen", _s21_39, "Beginne Aufgabe vor dem Speichern", _s18_38, "Stati bearbeiten", "task_settings", "Aufgaben-Einstellungen", _s20_40, "Kategorien bearbeiten", _s18_40, "Ausgabenkategorien", _s20_42, "Neue Ausgabenkategorie", _s21_40, "Ausgaben Kategorie bearbeiten", _s24_28, "Ausgabenkategorie erfolgreich erstellt", _s24_29, "Ausgabenkategorie erfolgreich aktualisiert", _s25_19, "Ausgabenkategorie erfolgreich archiviert", _s24_30, "Kategorie erfolgreich gel\xf6scht", _s24_31, "Ausgaben Kategorie erfolgreich entfernt", _s25_20, "Ausgabenkategorie erfolgreich wiederhergestellt", _s27_21, ":count Ausgabenkategorien erfolgreich archiviert", _s26_10, ":value Ausgabenkategorien erfolgreich gel\xf6scht", _s27_22, ":value Ausgabenkategorien erfolgreich wiederhergestellt", _s23_15, "Suche 1 Ausgabenkategorie", _s25_22, "Suche :count Ausgabenkategorie", _s21_42, "Verf\xfcgbares Guthaben verwenden", "show_option", "Zeige Option", _s22_34, "Der Guthabenbetrag darf den Zahlungsbetrag nicht \xfcbersteigen", "view_changes", "\xc4nderungen anzeigen", "force_update", "Aktualisierungen erzwingen", _s17_42, "Du benutzt die aktuellste Version, aber es stehen noch ausstehende Fehlerbehebungen zur Verf\xfcgung", "mark_paid_help", "Verfolge ob Ausgabe bezahlt wurde", _s18_42, "Sollte in Rechnung gestellt werden", _s23_16, "Erm\xf6gliche diese Ausgabe in Rechnung zu stellen", _s29_7, "Dokumente sichtbar machen", _s21_44, "Wechselkurs setzen", _s16_66, "Ausgaben-Einstellungen", _s18_43, "Duplizieren zu Widerkehrend", "crypto", "Verschl\xfcsselung", "paypal", "PayPal", "alipay", "Alipay", "sofort", "SOFORT-\xdcberweisung", "apple_pay", _s16_232, "user_field", "Benutzerfeld", "variables", "Variablen", "show_password", "Zeige Passwort", "hide_password", "Verstecke Passwort", "copy_error", "Kopier Fehler", "capture_card", "Zahlungsmittel f\xfcr die weitere Verwendung speichern", _s17_43, "Automatische Bezahlung aktivieren", "total_taxes", "Gesamt Steuern", "line_taxes", _s20_125, "total_fields", "Gesamt Felder", _s25_23, "Wiederkehrende Rechnung erfolgreich gestoppt", _s25_24, "Wiederkehrende Rechnung erfolgreich gestartet", _s25_25, "Wiederkehrende Rechnung erfolgreich fortgesetzt", "gateway_refund", "Zahlungsanbieter R\xfcckerstattung", _s19_30, "R\xfcckerstattung \xfcber das Zahlungs-Gateway abwickeln", "due_date_days", _s16_301, "paused", "Pausiert", "mark_active", "Markiere aktiv", "day_count", "Tag :count", _s22_35, "Erster Tag des Monats", _s21_45, "Letzter Tag des Monats", _s17_45, "Benutze Zahlungsbedingung", "endless", "Endlos", "next_send_date", "N\xe4chstes Versanddatum", _s16_68, "Verbleibende Durchg\xe4nge", _s17_47, "Wiederkehrende Rechnung", _s18_45, "Wiederkehrende Rechnungen", _s21_47, "Neue wiederkehrende Rechnung", _s22_37, "Bearbeite wiederkehrende Rechnung", _s25_26, "Wiederkehrende Rechnung erfolgreich erstellt", _s25_27, "Wiederkehrende Rechnung erfolgreich aktualisiert", _s26_11, "Wiederkehrende Rechnung erfolgreich archiviert", _s25_28, "Wiederkehrende Rechnung erfolgreich gel\xf6scht", _s25_29, "Wiederkehrende Rechnung erfolgreich entfernt", _s26_12, "Wiederkehrende Rechnung erfolgreich wiederhergestellt", _s27_23, ":value Wiederkehrende Rechnung erfolgreich archiviert", _s26_13, ":value Wiederkehrende Rechnungen erfolgreich gel\xf6scht", _s27_24, ":value Wiederkehrende Rechnungen erfolgreich wiederhergestellt", _s24_32, "Suche 1 wiederkehrende Rechnung", _s25_30, "Suche :count Wiederkehrende Rechnungen", "send_date", "Versanddatum", "auto_bill_on", "Automatische Rechnungsstellung zum", _s28_7, "Minimaler Unterzahlungsbetrag", "profit", "Profit", "line_item", "Posten", _s18_47, "\xdcberzahlung zulassen", _s23_17, "\xdcberzahlungen zulassen, beispielsweise Trinkgelder", _s19_31, "Unterzahlung zulassen", _s24_33, "Teilzahlungen zulassen", "test_mode", "Test Modus", "opened", "Ge\xf6ffnet", _s30_4, "Fehler bei Kontenabstimmung", _s30_5, "Kontenabstimmung erfolgreich", "gateway_success", "Zahlungsanbieter erfolgreich", "gateway_failure", _s23_70, "gateway_error", _s23_70, "email_send", "E-Mail gesendet", _s17_49, "E-Mail Wiederholungswarteschlange", "failure", "Fehler", "quota_exceeded", "Quota erreicht", _s16_70, "Upstream Fehler", "system_logs", "System-Log", "view_portal", "Portal anzeigen", "copy_link", "Link kopieren", "token_billing", "Kreditkarte merken", _s24_34, "Willkommen bei Invoice Ninja", "always", "Immer", "optin", "Anmelden", "optout", "Abmelden", "label", "Label", "client_number", "Kundennummer", "auto_convert", _s24_79, "company_name", "Firmenname", "reminder1_sent", "Erste Erinnerung verschickt", "reminder2_sent", "Zweite Erinnerung verschickt", "reminder3_sent", "Dritte Erinnerung verschickt", _s18_49, "Letzte Erinnerung verschickt", "pdf_page_info", "Seite :current von :total", _s16_72, "Rechnungen erfolgreich versendet", "emailed_quotes", "Angebote erfolgreich versendet", "emailed_credits", _s41_12, "gateway", "Provider", "view_in_stripe", "In Stripe anzeigen", "rows_per_page", "Eintr\xe4ge pro Seite", "hours", "Stunden", "statement", "Bericht", "taxes", "Steuern", "surcharge", "Geb\xfchr", "apply_payment", "Zahlungen anwenden", "apply_credit", "Guthaben anwenden", "apply", "Anwenden", "unapplied", "unangewendet", "select_label", "Bezeichnung w\xe4hlen", "custom_labels", "Eigene Beschriftungen", "record_type", "Eintragstyp", "record_name", "Eintragsname", "file_type", "Dateityp", "height", "H\xf6he", "width", "Breite", "to", "An", "health_check", "Systempr\xfcfung", "payment_type_id", "Zahlungsart", "last_login_at", "Letzter Login", "company_key", "Firmen Schl\xfcssel", "storefront", "Storefront", "storefront_help", "Drittanbieter Applikationen erlauben Rechnungen zu erstellen", "client_created", "Kunde wurde erstellt", _s20_45, "Online-Zahlung E-Mail Adresse", _s20_47, "manuelle Zahlung E-Mail Adresse", "completed", "Abgeschlossen", "gross", "Gesamtbetrag", "net_amount", "Netto Betrag", "net_balance", "Netto Betrag", "client_settings", "Kunden-Einstellungen", _s17_51, "Ausgew\xe4hlte Rechnungen", _s17_53, "Ausgew\xe4hlte Zahlungen", "selected_quotes", "Ausgew\xe4hlte Angebote", "selected_tasks", "Ausgew\xe4hlte Aufgaben", _s17_55, "Ausgew\xe4hlte Ausgaben", _s17_57, "Ausstehende Rechnungen", _s17_59, "\xdcberf\xe4llige Rechnungen", "recent_payments", "K\xfcrzliche Zahlungen", "upcoming_quotes", "Ausstehende Angebote", "expired_quotes", "Abgelaufene Angebote", "create_client", "Kunden erstellen", "create_invoice", "Rechnung erstellen", "create_quote", "Angebot erstellen", "create_payment", "Zahlung erstellen", "create_vendor", "Lieferanten erstellen", "update_quote", "Angebot aktualisieren", "delete_quote", "Angebot l\xf6schen", "update_invoice", "Rechnung aktualisieren", "delete_invoice", "Rechnung l\xf6schen", "update_client", "Kunde aktualisieren", "delete_client", "Kunde l\xf6schen", "delete_payment", "Zahlung l\xf6schen", "update_vendor", "Lieferant aktualisieren", "delete_vendor", "Lieferant L\xf6schen", "create_expense", "Ausgabe erstellen", "update_expense", "Ausgabe aktualisieren", "delete_expense", "Ausgabe L\xf6schen", "create_task", "Aufgabe erstellen", "update_task", "Aufgabe aktualisieren", "delete_task", "Aufgabe l\xf6schen", "approve_quote", _s16_299, "off", "Aus", "when_paid", "Bei Zahlung", "expires_on", "G\xfcltig bis", "free", "Kostenlos", "plan", "Plan", "show_sidebar", "Zeige Seitenmen\xfc", "hide_sidebar", "Verstecke Seitenmenu", "event_type", "Ereignistyp", "target_url", "Ziel", "copy", "kopieren", "must_be_online", "Bitte starten Sie die App sobald Sie mit dem Internet verbunden sind", _s17_61, "Die Crons m\xfcssen aktiviert werden", "api_webhooks", "API Webhooks", "search_webhooks", "Suche :count Webhooks", "search_webhook", "Suche 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Neuer Webhook", "edit_webhook", "Webhook bearbeiten", "created_webhook", "Webhook erfolgreich erstellt", "updated_webhook", "Webhook erfolgreich aktualisiert", _s16_74, "Webhook erfolgreich archiviert", "deleted_webhook", "Webhook erfolgreich gel\xf6scht", "removed_webhook", "Webhook erfolgreich entfernt", _s16_75, "Webhook erfolgreich wiederhergestellt", _s17_62, ":value Webhooks erfolgreich archiviert", _s16_76, ":value Webhooks erfolgreich gel\xf6scht", _s16_77, ":value Webhooks erfolgreich entfernt", _s17_63, ":value Webhooks erfolgreich wiederhergestellt", "api_tokens", "API Token", "api_docs", "API Doku", "search_tokens", "Suche :count Token", "search_token", "Suche 1 Token", "token", "Token", "tokens", "Token", "new_token", "Neues Token", "edit_token", "Token bearbeiten", "created_token", "Token erfolgreich erstellt", "updated_token", "Token erfolgreich aktualisiert", "archived_token", "Token erfolgreich archiviert", "deleted_token", "Token erfolgreich gel\xf6scht", "removed_token", "Token erfolgreich entfernt", "restored_token", "Token erfolgreich wiederhergestellt", "archived_tokens", ":count Token erfolgreich archiviert", "deleted_tokens", ":count Token erfolgreich gel\xf6scht", "restored_tokens", ":value Token erfolgreich wiederhergestellt", _s19_33, "Kunden Registration", _s24_36, "Den Kunden erm\xf6glichen, sich selbst im Portal zu registrieren.", _s21_49, "Anpassung und Vorschau", "email_invoice", "Rechnung versenden", "email_quote", _s25_74, "email_credit", "Guthaben per E-Mail versenden", "email_payment", "Sende Zahlungs-E-Mail", _s20_50, "Es wurde noch keine E-Mail Adresse beim Kunden eingetragen.", "ledger", "Hauptbuch", "view_pdf", "Zeige PDF", "all_records", "Alle Eintr\xe4ge", "owned_by_user", "Eigent\xfcmer", _s16_78, "Verbleibendes Guthaben", "contact_name", "Name des Kontakts", "use_default", "Benutze Standardwert", _s16_80, "Endlose Reminder", "number_of_days", "Anzahl Tage", _s23_19, "Zahlungsbedingungen bearbeiten", "payment_term", "Zahlungsbedingung", _s16_81, "Neue Zahlungsbedingung", _s17_65, "Bearbeite Zahlungsbedingungen", _s20_51, "Zahlungsbedingung erfolgreich erstellt", _s20_52, "Zahlungsbedingung erfolgreich aktualisiert", _s21_50, "Zahlungsbedingung erfolgreich archiviert", _s20_53, "Zahlungsbedingung erfolgreich gel\xf6scht", _s20_54, "Zahlungsbedingung erfolgreich entfernt", _s21_51, "Zahlungsbedingungen erfolgreich wiederhergestellt", _s22_42, ":value Zahlungsbedingungen erfolgreich archiviert", _s21_52, ":value Zahlungsbedingungen erfolgreich gel\xf6scht", _s22_43, ":value Zahlungsbedingungen erfolgreich wiederhergestellt", "email_sign_in", "Mit E-Mail anmelden", "change", "\xc4ndern", _s23_21, "M\xf6chten Sie zur mobilen Ansicht wechseln?", _s24_37, "M\xf6chten Sie zur Desktopansicht wechseln?", "send_from_gmail", "Mit Gmail versenden", "reversed", "Umgekehrt", "cancelled", "Storniert", "credit_amount", "Guthabenbetrag", "quote_amount", "Angebotsbetrag", "hosted", "Gehostet", "selfhosted", "Selbstgehostet", "exclusive", "Exklusive", "inclusive", "Inklusive", "hide_menu", "Men\xfc ausblenden", "show_menu", "Men\xfc einblenden", _s18_51, _s19_101, _s16_83, "Suche nach Dokumenten", "search_designs", "Suche nach Designs", "search_invoices", "Suche Rechnungen", "search_clients", "Suche Kunden", "search_products", "Suche Produkte", "search_quotes", "Suche Angebote", "search_credits", "Suche Guthaben", "search_vendors", "Suche Lieferanten", "search_users", "Suche Benutzer", _s16_84, "Suche Steuersatz", "search_tasks", "Suche Aufgaben", "search_settings", "Such-Einstellungen", "search_projects", "Suche nach Projekten", "search_expenses", "Suche Ausgaben", "search_payments", "Suche Zahlungen", "search_groups", "Suche nach Gruppen", "search_company", "Suche Firma", "search_document", "Suche 1 Dokument", "search_design", "Suche 1 Design", "search_invoice", "Suche 1 Angebot", "search_client", "Suche 1 Kunden", "search_product", "Suche 1 Produkt", "search_quote", "Suche 1 Angebot", "search_credit", "Suche 1 Guthaben", "search_vendor", "Suche 1 Hersteller", "search_user", "Suche 1 Benutzer", "search_tax_rate", "Suche 1 Steuersatz", "search_task", "Suche 1 Aufgabe", "search_project", "Suche 1 Projekt", "search_expense", "Suche 1 Ausgabe", "search_payment", "Suche 1 Zahlung", "search_group", "Suche 1 Gruppen", "refund_payment", "Zahlung erstatten", _s17_69, "Rechnung erfolgreich storniert", _s18_53, "Rechnungen erfolgreich storniert", _s16_90, "Rechnung erfolgreich zur\xfcckgebucht", _s17_70, "Rechnungen erfolgreich zur\xfcckgebucht", "reverse", "R\xfcckbuchung", "full_name", "Voller Name", _s17_71, "Stadt / Bundesland / PLZ", _s17_73, "Plz/Stadt/Staat", "custom1", "Benutzerdefiniert 1", "custom2", "Benutzerdefiniert 2", "custom3", _s19_102, "custom4", _s19_102, "optional", "optional", "license", "Lizenz", "purge_data", "Daten s\xe4ubern", _s16_91, "Die Kontodaten wurden erfolgreich gel\xf6scht", _s18_54, "Achtung: Alle Daten werden vollst\xe4ndig gel\xf6scht. Dieser Vorgang kann nicht r\xfcckg\xe4ngig gemacht werden.", "invoice_balance", "Rechnungssaldo", "age_group_0", "0 - 30 Tage", "age_group_30", "30 - 60 Tage", "age_group_60", "60 - 90 Tage", "age_group_90", "90 - 120 Tage", "age_group_120", "120+ Tage", "refresh", "Aktualisieren", "saved_design", "Design erfolgreich gespeichert", "client_details", "Kundeninformationen", "company_address", "Firmenadresse", "invoice_details", "Rechnungsdetails", "quote_details", "Kostenvoranschlag-Details", "credit_details", "Gutschrift Details", "product_columns", "Produktspalten", "task_columns", "Aufgabenspalten", "add_field", "Feld hinzuf\xfcgen", "all_events", "Alle Ereignisse", "permissions", "Berechtigungen", "none", "Nichts", "owned", "Eigent\xfcmer", "payment_success", "Bezahlung erfolgreich", "payment_failure", "Bezahlung fehlgeschlagen", "invoice_sent", ":count Rechnung versendet", "quote_sent", "Kostenvoranschlag versendet", "credit_sent", "Guthaben gesendet", "invoice_viewed", "Rechnung angesehen", "quote_viewed", "Kostenvoranschlag angesehen", "credit_viewed", "Guthaben angesehen", "quote_approved", "Kostenvoranschlag angenommen", _s25_32, "Empfange alle Benachrichtigungen", _s16_92, "Lizenz kaufen", "apply_license", "Lizenz anwenden", "cancel_account", "Konto k\xfcndigen", _s22_44, "Warnung: Diese Aktion wird dein Konto unwiderruflich l\xf6schen.", "delete_company", "Firma l\xf6schen", _s22_45, "Achtung: Dadurch wird Ihre Firma unwiderruflich gel\xf6scht. Es gibt kein Zur\xfcck.", "enabled_modules", "Module aktivieren", "converted_quote", "Angebot erfolgreichen konvertiert", "credit_design", "Guthaben Design", "includes", "Beinhaltet", "header", "Header-Code", "load_design", "Designvorlage laden", "css_framework", "CSS-Framework", "custom_designs", "Benutzerdefinierte Designs", "designs", "Designs", "new_design", "Neues Design", "edit_design", "Design bearbeiten", "created_design", "Design erfolgreich erstellt", "updated_design", "Design erfolgreich aktualisiert", "archived_design", "Design erfolgreich archiviert", "deleted_design", "Design erfolgreich gel\xf6scht", "removed_design", "Design erfolgreich entfernt", "restored_design", "Design erfolgreich wiederhergestellt", _s16_94, ":value Designs erfolgreich archiviert", "deleted_designs", ":value Designs erfolgreich gel\xf6scht", _s16_95, ":value Designs erfolgreich wiederhergestellt", "proposals", "Vorschl\xe4ge", "tickets", "Tickets", _s16_96, "Wiederkehrende Angebote", "recurring_tasks", "Wiederkehrende Aufgabe", _s18_55, "Kontoverwaltung", "credit_date", "Guthabendatum", "credit", "Gutschrift", "credits", "Guthaben", "new_credit", "Guthaben eingeben", "edit_credit", "Saldo bearbeiten", "created_credit", "Guthaben erfolgreich erstellt", "updated_credit", "Saldo erfolgreich aktualisiert", "archived_credit", "Guthaben erfolgreich archiviert", "deleted_credit", "Guthaben erfolgreich gel\xf6scht", "removed_credit", "Guthaben erfolgreich entfernt", "restored_credit", "Guthaben erfolgreich wiederhergestellt", _s16_98, ":count Guthaben erfolgreich archiviert", "deleted_credits", ":count Guthaben erfolgreich gel\xf6scht", _s16_99, ":value Guthaben erfolgreich archiviert", "current_version", "Aktuelle Version", "latest_version", "Neueste Version", "update_now", "Jetzt aktualisieren", _s26_19, "Eine neue Version der Webapp ist verf\xfcgbar.", _s16_100, "Update verf\xfcgbar", "app_updated", "Update erfolgreich", "learn_more", "Mehr erfahren", "integrations", "Integrationen", "tracking_id", "Sendungsnummer", _s17_75, "Slack-Webhook-URL", "credit_footer", "Guthaben-Fu\xdfzeile", "credit_terms", "Gutschrift Bedingungen", "new_company", "Neues Konto", "added_company", "Erfolgreich Firma hinzugef\xfcgt", "company1", "Benutzerdefinierte Firma 1", "company2", "Benutzerdefinierte Firma 2", "company3", "Benutzerdefinierte Firma 3", "company4", "Benutzerdefinierte Firma 4", "product1", "Benutzerdefiniertes Produkt 1", "product2", "Benutzerdefiniertes Produkt 2", "product3", "Benutzerdefiniertes Produkt 3", "product4", "Benutzerdefiniertes Produkt 4", "client1", "Benutzerdefinierter Kunde 1", "client2", "Benutzerdefinierter Kunde 2", "client3", "Benutzerdefinierter Kunde 3", "client4", "Benutzerdefinierter Kunde 4", "contact1", "Benutzerdefinierter Kontakt 1", "contact2", "Benutzerdefinierter Kontakt 2", "contact3", "Benutzerdefinierter Kontakt 3", "contact4", "Benutzerdefinierter Kontakt 4", "task1", "Benutzerdefinierte Aufgabe 1", "task2", "Benutzerdefinierte Aufgabe 2", "task3", "Benutzerdefinierte Aufgabe 3", "task4", "Benutzerdefinierte Aufgabe 4", "project1", "Benutzerdefiniertes Projekt 1", "project2", "Benutzerdefiniertes Projekt 2", "project3", "Benutzerdefiniertes Projekt 3", "project4", "Benutzerdefiniertes Projekt 4", "expense1", "Benutzerdefinierte Ausgabe 1", "expense2", "Benutzerdefinierte Ausgabe 2", "expense3", "Benutzerdefinierte Ausgabe 3", "expense4", "Benutzerdefinierte Ausgabe 4", "vendor1", "Benutzerdefinierter Lieferant 1", "vendor2", "Benutzerdefinierter Lieferant 2", "vendor3", "Benutzerdefinierter Lieferant 3", "vendor4", "Benutzerdefinierter Lieferant 4", "invoice1", "Benutzerdefinierte Rechnung 1", "invoice2", "Benutzerdefinierte Rechnung 2", "invoice3", "Benutzerdefinierte Rechnung 3", "invoice4", "Benutzerdefinierte Rechnung 4", "payment1", "Benutzerdefinierte Zahlung 1", "payment2", "Benutzerdefinierte Zahlung 2", "payment3", "Benutzerdefinierte Zahlung 3", "payment4", "Benutzerdefinierte Zahlung 4", "surcharge1", _s30_44, "surcharge2", _s30_45, "surcharge3", _s30_46, "surcharge4", _s30_47, "group1", "Benutzerdefinierte Gruppe 1", "group2", "Benutzerdefinierte Gruppe 2", "group3", "Benutzerdefinierte Gruppe 3", "group4", "Benutzerdefinierte Gruppe 4", "reset", "Zur\xfccksetzen", "number", "Nummer", "export", "Exportieren", "chart", "Diagramm", "count", "Anzahl", "totals", "Summe", "blank", "Leer", "day", "Tag", "month", "Monat", "year", "Jahr", "subgroup", "Untergruppe", "is_active", "Ist aktiv", "group_by", "Gruppieren nach", "credit_balance", "Guthabenstand", _s18_61, "Letzter Login des Kontakts", _s17_77, "Vollst\xe4ndiger Name des Kontakts", "contact_phone", "Telefonnummer des Kontakts", _s21_53, "Kontakt Benutzerdefinierter Wert 1", _s21_54, "Kontakt Benutzerdefinierter Wert 2", _s21_55, "Kontakt Benutzerdefinierter Wert 3", _s21_56, "Kontakt Benutzerdefinierter Wert 4", _s17_79, "Strasse Versandanschrift", _s17_80, "Versand Adresszusatz", "shipping_city", "Stadt Versandanschrift", "shipping_state", "Versand Bundesland", _s20_55, "Postleitzahl Versandanschrift", _s16_130, "Lieferungsland", _s16_132, "Strasse Rechnungsanschrift", _s16_133, "Rechnung Adresszusatz", "billing_city", "Stadt Rechnungsanschrift", "billing_state", "Rechnung Bundesland", _s19_36, "Postleitzahl Rechnungsanschrift", "billing_country", "Rechnungsland", "client_id", "Kundennummer", "assigned_to", "Zugewiesen an", "created_by", "Erstellt von :name", "assigned_to_id", "Zugewiesen zur ID", "created_by_id", "Erstellt von ID", "add_column", "Spalte hinzuf\xfcgen", "edit_columns", "Spalten bearbeiten", "columns", "Spalten", "aging", "Versendet", "profit_and_loss", _s18_156, "reports", "Berichte", "report", "Bericht", "add_company", "Konto hinzuf\xfcgen", "unpaid_invoice", "Unbezahlte Rechnung", "paid_invoice", "Bezahlte Rechnung", _s16_134, "Nicht genehmigtes Angebot", "help", "Hilfe", "refund", "Erstattung", "refund_date", "Erstattungsdatum", "filtered_by", "Gefiltert nach", "contact_email", "E-Mail-Adresse des Kontakts", "multiselect", "Mehrfachauswahl", "entity_state", "Status", "verify_password", "Passwort \xfcberpr\xfcfen", "applied", "Angewendet", _s21_57, "K\xfcrzliche Fehler aus den Logs einf\xfcgen", _s30_8, "Wir haben ihre Nachricht erhalten und bem\xfchen uns schnellstm\xf6glich zu antworten.", "message", "Nachricht", "from", "Von", _s20_57, "Produktdetails anzeigen", _s25_34, "Beschreibung und Kosten in die Produkt-Dropdown-Liste einf\xfcgen", _s20_59, "Der PDF-Renderer ben\xf6tigt :version", _s18_64, "Anpassungszuschlag Prozent", _s23_23, "Geb\xfchren Prozentsatz an das Konto anpassen", _s18_66, "Einstellungen bearbeiten", "support_forum", "Support-Forum", "about", "\xdcber", "documentation", "Dokumentation", "contact_us", "Kontaktieren Sie uns", "subtotal", "Zwischensumme", "line_total", "Summe", "item", "Artikel", "credit_email", "Guthaben E-Mail", "iframe_url", "Webseite", "domain_url", "Domain-URL", _s21_58, "Das Passwort ist zu kurz", _s20_60, "Das Passwort muss einen Gro\xdfbuchstaben und eine Nummer enthalten", _s19_38, "Kundenportal-Aufgaben", _s23_24, "Kundenportal-\xdcbersicht", _s20_61, "Bitte einen Wert eingeben", "deleted_logo", "Logo erfolgreich gel\xf6scht", "yes", "Ja", "no", "Nein", "generate_number", "Nummer generieren", "when_saved", "Wenn gespeichert", "when_sent", "Wenn gesendet", "select_company", "Firma ausw\xe4hlen", "float", "Schwebend", "collapse", "Einklappen", "show_or_hide", "Anzeigen/verstecken", "menu_sidebar", "Men\xfcleiste", "history_sidebar", "Verlaufs-Seitenleiste", "tablet", "Tablet", "mobile", "Mobil", "desktop", "Desktop", "layout", "Layout", "view", "Ansehen", "module", "Modul", "first_custom", "Erste benutzerdefinierte", "second_custom", "Zweite benutzerdefinierte", "third_custom", "Dritte benutzerdefinierte", "show_cost", "Kosten anzeigen", _s17_82, "Produktkosten anzeigen", "show_cost_help", "Feld f\xfcr Einkaufspreis anzeigen, um Gewinnspanne zu verfolgen", _s21_59, "Produktanzahl anzeigen", _s26_21, "Zeigen ein Mengenangabe Feld, sonst den Standardwert 1", _s21_61, "Rechnungsanzahl anzeigen", _s26_22, "Zeige ein Rechnungsposten Anzahlfeld, sonst den Standardwert 1", _s21_63, "Produkterm\xe4\xdfigung anzeigen", _s26_23, "Zeige Rabattfeld in Belegposition", _s16_136, "Standardanzahl", _s21_65, "Setze den Rechnungsposten automatisch auf Anzahl 1", "one_tax_rate", "Ein Steuersatz", "two_tax_rates", "Zwei Steuers\xe4tze", "three_tax_rates", "Drei Steuers\xe4tze", _s16_138, _s19_100, "user", "Benutzer", "invoice_tax", "Rechnungssteuer", "line_item_tax", _s20_125, "inclusive_taxes", "Inklusive Steuern", _s17_84, "Rechnungs-Steuers\xe4tze", "item_tax_rates", "Element-Steuers\xe4tze", _s18_68, _s29_58, "configure_rates", "Steuers\xe4tze bearbeiten", _s18_69, "Zahlungsanbieter bearbeiten", "tax_settings", "Steuer-Einstellungen", _s18_71, "Steuers\xe4tze", "accent_color", "Akzent-Farbe", "switch", "Switch", _s19_40, "Komma-separierte Liste", "options", "Optionen", _s16_140, "Einzeiliger Text", "multi_line_text", "Mehrzeiliger Text", "dropdown", "Dropdown", "field_type", "Feldtyp", _s27_35, "Eine Passwort-Wiederherstellungs-Mail wurde versendet", "submit", "Abschicken", _s16_142, "Passwort wiederherstellen", "late_fees", "Versp\xe4tungszuschl\xe4ge", "credit_number", "Gutschriftnummer", "payment_number", "Zahlungsnummer", "late_fee_amount", "H\xf6he des Versp\xe4tungszuschlags", _s16_143, "Versp\xe4tungszuschlag Prozent", "schedule", "Zeitgesteuert", "before_due_date", "Vor dem F\xe4lligkeitsdatum", "after_due_date", "Nach dem F\xe4lligkeitsdatum", _s18_73, "Nach dem Rechnungsdatum", "days", "Tage", "invoice_email", "Rechnungsmail", "payment_email", "Zahlungsmail", "partial_payment", "Teilzahlung", "payment_partial", "Teilzahlung", _s21_66, "Teilzahlungsmail", "quote_email", "Angebotsmail", _s16_145, "Endlose Erinnnerung", _s16_147, "Gefiltert nach Benutzer", "administrator", "Administrator", _s18_74, "Dem Benutzer erlauben, andere Benutzer zu administrieren, Einstellungen zu \xe4ndern und alle Eintr\xe4ge zu bearbeiten", "user_management", "Benutzerverwaltung", "users", "Benutzer", "new_user", "Neuer Benutzer", "edit_user", "Benutzer bearbeiten", "created_user", "Benutzer erfolgreich erstellt", "updated_user", "Benutzer erfolgreich aktualisiert", "archived_user", "Benutzer erfolgreich archiviert", "deleted_user", "Benutzer erfolgreich gel\xf6scht", "removed_user", "Benutzer erfolgreich entfernt", "restored_user", "Benutzer erfolgreich wiederhergestellt", "archived_users", ":value Benutzer erfolgreich archiviert", "deleted_users", ":value Benutzer erfolgreich gel\xf6scht", "removed_users", ":value Benutzer erfolgreich entfernt", "restored_users", ":value Benutzer erfolgreich wiederhergestellt", _s16_149, _s24_80, "invoice_options", "Rechnungsoptionen", _s17_86, '"Bereits gezahlt" ausblenden', _s22_52, '"Bereits gezahlt" nur anzeigen, wenn eine Zahlung eingegangen ist.', _s23_26, "Dokumente einbetten", _s28_20, "Bildanh\xe4nge zu den Rechnungen hinzuf\xfcgen.", _s16_151, "Zeige Kopf auf", _s16_152, "Zeige Fu\xdfzeilen auf", "first_page", "Erste Seite", "all_pages", "Alle Seiten", "last_page", "Letzte Seite", "primary_font", "Prim\xe4re Schriftart", "secondary_font", "Sekund\xe4re Schriftart", "primary_color", "Prim\xe4re Farbe", "secondary_color", "Sekund\xe4re Farbe", "page_size", "Seitengr\xf6\xdfe", "font_size", "Schriftgr\xf6\xdfe", "quote_design", "Angebots-Layout", "invoice_fields", "Rechnungsfelder", "product_fields", "Produktfelder", "invoice_terms", "Rechnungsbedingungen", "invoice_footer", "Rechnungsfu\xdfzeile", "quote_terms", "Angebotsbedingungen", "quote_footer", "Angebots-Fu\xdfzeile", _s18_75, "Automatischer E-Mail-Versand", _s23_27, "Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.", _s18_76, "Automatisches Archiv", _s23_28, "Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.", _s18_77, _s24_79, _s23_29, "Das Angebot automatisch in eine Rechnung umwandeln wenn es vom Kunden angenommen wird.", _s17_88, "Workflow-Einstellungen", "freq_daily", "T\xe4glich", "freq_weekly", "W\xf6chentlich", "freq_two_weeks", "Zweiw\xf6chentlich", "freq_four_weeks", "Vierw\xf6chentlich", "freq_monthly", "Monatlich", "freq_two_months", "Zwei Monate", _s17_90, "Dreimonatlich", _s16_153, "Vier Monate", "freq_six_months", "Halbj\xe4hrlich", "freq_annually", "J\xe4hrlich", "freq_two_years", "Zwei Jahre", _s16_154, "Drei Jahre", "never", "Niemals", "company", "Firma", _s17_91, "Generierte Nummern", "charge_taxes", "Steuern erheben", "next_reset", "N\xe4chster Reset", "reset_counter", "Z\xe4hler-Reset", _s16_155, "Wiederkehrender Pr\xe4fix", "number_padding", "Nummernabstand", "general", "Allgemein", "surcharge_field", "Zuschlagsfeld", "company_field", "Firmenfeld", "company_value", "Firmenwert", "credit_field", "Kredit-Feld", "invoice_field", "Rechnungsfeld", _s17_93, "Rechnungsgeb\xfchr", "client_field", "Kundenfeld", "product_field", "Produktfeld", "payment_field", "Zahlungsfeld", "contact_field", "Kontaktfeld", "vendor_field", "Lieferantenfeld", "expense_field", "Ausgabenfeld", "project_field", "Projektfeld", "task_field", "Aufgabenfeld", "group_field", "Gruppen-Feld", "number_counter", "Nummernz\xe4hler", "prefix", "Pr\xe4fix", "number_pattern", "Nummernschema", "messages", "Nachrichten", "custom_css", "Benutzerdefiniertes CSS", _s17_95, "Benutzerdefiniertes JavaScript", _s16_157, "Auf PDF anzeigen", _s21_68, "Unterschrift des Kunden auf dem Angebots/Rechnungs PDF anzeigen.", _s25_40, "Checkbox f\xfcr Rechnungsbedingungen", _s30_9, "Erfordern Sie die Best\xe4tigung der Rechnungsbedingungen durch den Kunden.", _s23_30, "Checkbox f\xfcr Angebotsbedingungen", _s28_21, "Erfordern Sie die Best\xe4tigung der Angebotsbedingungen durch den Kunden.", _s25_41, "Rechnungsunterschrift", _s30_10, "Erfordern Sie die Unterschrift des Kunden bei Rechnungen.", _s23_31, "Angebotsunterschrift", _s22_54, "Rechnungen mit Passwort sch\xfctzen", _s27_36, "Erlaubt Ihnen ein Passwort f\xfcr jeden Kontakt zu erstellen. Wenn ein Passwort erstellt wurde, muss der Kunde dieses eingeben, bevor er eine Rechnung ansehen darf.", "authorization", "Genehmigung", "subdomain", "Subdom\xe4ne", "domain", "Dom\xe4ne", "portal_mode", "Portalmodus", "email_signature", "Mit freundlichen Gr\xfc\xdfen", _s24_38, "Machen Sie es einfacher f\xfcr Ihre Kunden zu bezahlen, indem Sie schema.org Markup zu Ihren E-Mails hinzuf\xfcgen.", "plain", "Einfach", "light", "Hell", "dark", "Dunkel", "email_design", "E-Mail-Design", "attach_pdf", "PDF anh\xe4ngen", _s16_158, "Dokumente anh\xe4ngen", "attach_ubl", "UBL anh\xe4ngen", "email_style", "E-Mail-Stil", _s19_42, "Markup erlauben", "reply_to_email", "Antwort-E-Mail-Adresse", "reply_to_name", "Name der Antwortadresse", "bcc_email", "BCC E-Mail", "processed", "Verarbeitet", "credit_card", "Kreditkarte", "bank_transfer", "\xdcberweisung", "priority", "Priorit\xe4t", "fee_amount", "Zuschlag Betrag", "fee_percent", "Zuschlag Prozent", "fee_cap", "Geb\xfchrenobergrenze", "limits_and_fees", "Grenzwerte/Geb\xfchren", "enable_min", "Min aktivieren", "enable_max", "Max aktivieren", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Logos der akzeptierten Kreditkarten", "credentials", "Zugangsdaten", "update_address", "Adresse aktualisieren", _s19_45, "Kundenadresse mit den gemachten Angaben aktualisieren", "rate", "Satz", "tax_rate", "Steuersatz", "new_tax_rate", "Neuer Steuersatz", "edit_tax_rate", "Steuersatz bearbeiten", _s16_160, "Steuersatz erstellt", _s16_161, "Steuersatz aktualisiert", _s17_98, "Steuersatz archiviert", _s16_162, "Steuersatz erfolgreich gel\xf6scht", _s17_99, "Steuersatz erfolgreich wiederhergestellt", _s18_78, ":value Steuers\xe4tze erfolgreich archiviert", _s17_100, ":value Steuers\xe4tze erfolgreich gel\xf6scht", _s18_79, ":value Steuers\xe4tze erfolgreich wiederhergestellt", "fill_products", "Produkte automatisch ausf\xfcllen", _s18_80, "Beim Ausw\xe4hlen eines Produktes werden automatisch Beschreibung und Kosten ausgef\xfcllt", "update_products", "Produkte automatisch aktualisieren", _s20_65, "Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert", _s16_163, "Produkte konvertieren", _s21_69, "Produktpreise automatisch in die W\xe4hrung des Kunden konvertieren", "fees", "Geb\xfchren", "limits", "Grenzwerte", "provider", "Anbieter", "company_gateway", "Zahlungs-Gateway", _s16_165, "Zahlungs-Gateways", _s19_46, "Neues Gateway", _s20_66, "Gateway bearbeiten", _s23_32, "Gateway erfolgreich erstellt", _s23_33, "Gateway erfolgreich aktualisiert", _s24_39, "Gateway erfolgreich archiviert", _s23_34, "Gateway erfolgreich gel\xf6scht", _s24_40, "Gateway erfolgreich wiederhergestellt", _s25_43, ":value Zahlungsanbieter erfolgreich archiviert", _s24_41, ":value Zahlungsanbieter erfolgreich gel\xf6scht", _s25_44, ":value Zahlungsanbieter erfolgreich wiederhergestellt", _s16_167, "Weiterbearbeiten", "discard_changes", "\xc4nderungen verwerfen", "default_value", "Standardwert", "disabled", "Deaktiviert", "currency_format", "W\xe4hrungsformat", _s21_70, "Erster Tag der Woche", _s23_35, "Erster Monat des Jahres", "sunday", "Sonntag", "monday", "Montag", "tuesday", "Dienstag", "wednesday", "Mittwoch", "thursday", "Donnerstag", "friday", "Freitag", "saturday", "Samstag", "january", "Januar", "february", "Februar", "march", "M\xe4rz", "april", "April", "may", "Mai", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "Dezember", "symbol", "Symbol", "ocde", "Code", "date_format", "Datumsformat", "datetime_format", "Datums-/Zeitformat", "military_time", "24-Stunden-Zeit", _s18_81, "24-Stunden-Anzeige", "send_reminders", "Mahnung senden", "timezone", "Zeitzone", _s19_47, "Nach Projekt filtern", _s17_101, "Gefiltert nach Gruppe", _s19_49, "Gefiltert nach Rechnung", _s18_82, "Gefiltert nach Kunde", _s18_84, "Gefiltert nach Lieferant", "group_settings", "Gruppeneinstellungen", "group", "Gruppe", "groups", "Gruppen", "new_group", "Neue Gruppe", "edit_group", "Gruppe bearbeiten", "created_group", "Gruppe erfolgreich erstellt", "updated_group", "Gruppe erfolgreich aktualisiert", "archived_groups", ":value Gruppen erfolgreich archiviert", "deleted_groups", ":value Gruppen erfolgreich gel\xf6scht", "restored_groups", ":value Gruppen erfolgreich wiederhergestellt", "archived_group", "Gruppe erfolgreich archiviert", "deleted_group", "Gruppe erfolgreich gel\xf6scht", "restored_group", "Gruppe erfolgreich wiederhergestellt", "upload_logo", "Logo hochladen", "uploaded_logo", "Logo erfolgreich hochgeladen", "logo", "Logo", "saved_settings", "Einstellungen erfolgreich gespeichert", _s16_169, "Produkt-Einstellungen", "device_settings", "Ger\xe4te-Einstellungen", "defaults", "Standards", "basic_settings", _s24_80, _s17_103, "Erweiterte Einstellungen", "company_details", "Firmendaten", "user_details", "Benutzerdaten", "localization", "Lokalisierung", "online_payments", "Online-Zahlungen", "tax_rates", "Steuers\xe4tze", "notifications", "Benachrichtigungen", "import_export", "Import/Export", "custom_fields", "Benutzerdefinierte Felder", "invoice_design", "Rechnungsdesign", "buy_now_buttons", '"Kaufe jetzt"-Buttons', "email_settings", "E-Mail-Einstellungen", _s23_37, "Vorlagen & Mahnungen", _s22_55, "Kreditkarten & Banken", _s19_51, "Datenvisualisierungen", "price", "Preis", "email_sign_up", "E-Mail-Registrierung", "google_sign_up", "Registrierung via Google", _s27_40, "Vielen Dank f\xfcr Ihren Kauf!", "redeem", "Einl\xf6sen", "back", "Zur\xfcck", "past_purchases", "Vergangene K\xe4ufe", _s19_53, "Jahres-Abonnement", "pro_plan", "Pro-Tarif", "enterprise_plan", "Enterprise-Tarif", "count_users", ":count Benutzer", "upgrade", "Upgrade", _s25_45, "Bitte geben Sie einen Vornamen ein", _s24_42, "Bitte geben Sie einen Nachnamen ein", _s33_21, "Bitte stimmen Sie den Nutzungsbedingungen und der Datenschutzerkl\xe4rung zu, um ein Konto zu erstellen.", "i_agree_to_the", "Ich stimme den", _s16_171, "Service-Bedingungen", "privacy_policy", "Datenschutzerkl\xe4rung", "sign_up", "Anmeldung", "account_login", "Konto Login", "view_website", "Webseite anschauen", "create_account", "Konto erstellen", "email_login", "E-Mail-Anmeldung", "create_new", "Neu...", _s18_86, "Kein Eintrag ausgew\xe4hlt", _s21_73, "Bitte speichern oder verwerfen Sie Ihre \xc4nderungen", "download", "Herunterladen", _s27_41, "Ben\xf6tigt einen Enterprise Plan", "take_picture", "Bild aufnehmen", "upload_file", "Datei hochladen", "document", "Dokument", "documents", "Dokumente", "new_document", "Neues Dokument", "edit_document", "Dokument bearbeiten", _s17_105, "Dokument erfolgreich hochgeladen", _s16_173, "Dokument erfolgreich aktualisiert", _s17_106, "Dokument erfolgreich archiviert", _s16_174, "Dokument erfolgreich gel\xf6scht", _s17_107, "Dokument erfolgreich wiederhergestellt", _s18_88, ":value Dokumente erfolgreich archiviert", _s17_108, ":value Dokumente erfolgreich gel\xf6scht", _s18_89, ":value Dokumente erfolgreich wiederhergestellt", "no_history", "Kein Verlauf", "expense_date", "Ausgabendatum", "pending", "Ausstehend", _s16_175, "Aufgezeichnet", _s16_176, "Ausstehend", _s16_177, "Fakturiert", "converted", "Umgewandelt", _s24_44, "F\xfcgen Sie Dokumente zur Rechnung hinzu", "exchange_rate", "Wechselkurs", _s16_178, "W\xe4hrung umrechnen", "mark_paid", "Als bezahlt markieren", "category", "Kategorie", "address", "Adresse", "new_vendor", "Neuer Lieferant", "created_vendor", "Lieferant erfolgreich erstellt", "updated_vendor", "Lieferant erfolgreich aktualisiert", "archived_vendor", "Lieferant erfolgreich archiviert", "deleted_vendor", "Lieferant erfolgreich gel\xf6scht", "restored_vendor", "Lieferant erfolgreich wiederhergestellt", _s16_179, ":count Lieferanten erfolgreich archiviert", "deleted_vendors", ":count Lieferanten erfolgreich gel\xf6scht", _s16_180, ":value Lieferanten erfolgreich wiederhergestellt", "new_expense", "Ausgabe eingeben", "created_expense", "Ausgabe erfolgreich erstellt", "updated_expense", "Ausgabe erfolgreich aktualisiert", _s16_181, "Ausgabe erfolgreich archiviert", "deleted_expense", "Ausgabe erfolgreich gel\xf6scht", _s16_182, "Ausgabe erfolgreich wiederhergestellt", _s17_109, "Ausgaben erfolgreich archiviert", _s16_183, "Ausgaben erfolgreich gel\xf6scht", _s17_110, ":value Ausgaben erfolgreich wiederhergestellt", "copy_shipping", "Versand kopieren", "copy_billing", "Zahlung kopieren", "design", "Design", _s21_74, "Eintrag konnte nicht gefunden werden", "invoiced", "In Rechnung gestellt", "logged", "Protokolliert", "running", "L\xe4uft", "resume", "Fortfahren", "task_errors", "Bitte korrigieren Sie alle \xfcberlappenden Zeiten", "start", "Starten", "stop", "Anhalten", "started_task", "Aufgabe erfolgreich gestartet", "stopped_task", "Aufgabe erfolgreich angehalten", "resumed_task", "Aufgabe fortgesetzt", "now", "Jetzt", _s16_184, "Aufgaben f\xfcr den automatischen Start", "timer", "Zeitmesser", "manual", "Manuell", "budgeted", "Budgetiert", "start_time", "Startzeit", "end_time", "Endzeit", "date", "Datum", "times", "Zeiten", "duration", "Dauer", "new_task", "Neue Aufgabe", "created_task", "Aufgabe erfolgreich erstellt", "updated_task", "Aufgabe erfolgreich aktualisiert", "archived_task", "Aufgabe erfolgreich archiviert", "deleted_task", "Aufgabe erfolgreich gel\xf6scht", "restored_task", "Aufgabe erfolgreich wiederhergestellt", "archived_tasks", ":count Aufgaben wurden erfolgreich archiviert", "deleted_tasks", ":count Aufgaben wurden erfolgreich gel\xf6scht", "restored_tasks", ":value Aufgaben erfolgreich wiederhergestellt", _s19_55, "Bitte geben Sie einen Namen ein", "budgeted_hours", "Budgetierte Stunden", "created_project", "Projekt erfolgreich erstellt", "updated_project", "Projekt erfolgreich aktualisiert", _s16_186, "Projekt erfolgreich archiviert", "deleted_project", "Projekt erfolgreich gel\xf6scht", _s16_187, "Projekt erfolgreich wiederhergestellt", _s17_111, "Erfolgreich :count Projekte archiviert", _s16_188, "Erfolgreich :count Projekte gel\xf6scht", _s17_112, ":value Projekte erfolgreich wiederhergestellt", "new_project", "neues Projekt", _s27_45, "Vielen Dank, dass Sie unsere App nutzen!", "if_you_like_it", "Wenn es dir gef\xe4llt, bitte", "click_here", "hier klicken", _s18_90, "Klicke hier", "to_rate_it", ", um es zu bewerten.", "average", "Durchschnittlich", "unapproved", "Nicht genehmigt", _s30_15, "Bitte authentifizieren Sie sich, um diese Einstellung zu \xe4ndern.", "locked", "Gesperrt", "authenticate", "Authentifizieren", _s19_57, "Bitte authentifizieren Sie sich", _s24_46, "Biometrische Authentifizierung", "footer", "Footer-Code", "compare", "Vergleiche", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Anmeldung mit Google", "today", "Heute", "custom_range", "Benutzerdefinierter Bereich", "date_range", "Datumsbereich", "current", "Aktuell", "previous", "Vorherige", "current_period", "Aktuelle Periode", _s17_113, "Vergleichsperiode", "previous_period", "Vorherige Periode", "previous_year", "Vorjahr", "compare_to", "Vergleiche mit", "last7_days", "Letzte 7 Tage", "last_week", "Letzte Woche", "last30_days", "Letzte 30 Tage", "this_month", "Dieser Monat", "last_month", "Letzter Monat", "this_year", "Dieses Jahr", "last_year", "Letztes Jahr", "custom", "Benutzerdefiniert", _s16_189, "Klone in Rechnung", "clone_to_quote", "Klone in Angebot", "clone_to_credit", "Duplizieren in Gutschrift", "view_invoice", "Rechnung anschauen", "convert", "Konvertiere", "more", "Mehr", "edit_client", "Kunde bearbeiten", "edit_product", "Produkt bearbeiten", "edit_invoice", "Rechnung bearbeiten", "edit_quote", "Angebot bearbeiten", "edit_payment", "Zahlung bearbeiten", "edit_task", "Aufgabe bearbeiten", "edit_expense", "Ausgabe Bearbeiten", "edit_vendor", "Lieferant Bearbeiten", "edit_project", "Projekt bearbeiten", _s20_68, "Bearbeite wiederkehrendes Angebot", "billing_address", "Rechnungsadresse", _s16_191, "Lieferadresse", "total_revenue", "Gesamteinnahmen", "average_invoice", "Durchschnittlicher Rechnungsbetrag", "outstanding", "Ausstehend", "invoices_sent", ":count Rechnungen versendet", "active_clients", "aktive Kunden", "close", "Schlie\xdfen", "email", "E-Mail", "password", "Passwort", "url", "URL", "secret", "Passwort", "name", "Name", "logout", "Abmelden", "login", "Login", "filter", "Filter", "sort", "Sortierung", "search", "Suche", "active", "Aktiv", "archived", "Archiviert", "deleted", "Gel\xf6scht", "dashboard", "Dashboard", "archive", "Archivieren", "delete", "L\xf6schen", "restore", "Wiederherstellen", _s16_193, "Aktualisieren beendet", _s23_38, "Bitte geben Sie Ihre E-Mail-Adresse ein", _s26_32, "Bitte geben Sie Ihr Passwort ein", _s21_77, "Bitte geben Sie Ihre URL ein", _s26_34, "Bitte geben Sie Ihren Produkt schl\xfcssel ein", "ascending", "Aufsteigend", "descending", "Absteigend", "save", "Speichern", _s17_115, "Ein Fehler ist aufgetreten", "paid_to_date", "Bereits gezahlt", "balance_due", "Offener Betrag", "balance", "Saldo", "overview", "\xdcbersicht", "details", "Details", "phone", "Telefon", "website", "Webseite", "vat_number", "USt-IdNr.", "id_number", "Registernummer", "create", "Erstellen", _s19_59, ":value in die Zwischenablage kopiert", "error", "Fehler", _s16_195, "Konnte nicht gestartet werden", "contacts", "Kontakte", "additional", "Zus\xe4tzlich", "first_name", "Vorname", "last_name", "Nachname", "add_contact", "Kontakt hinzuf\xfcgen", "are_you_sure", "Sind Sie sicher?", "cancel", "Abbrechen", "ok", "Ok", "remove", "Entfernen", _s16_197, "E-Mail ist ung\xfcltig", "product", "Produkt", "products", "Produkte", "new_product", "Neues Produkt", "created_product", "Produkt erfolgreich erstellt", "updated_product", "Produkt erfolgreich aktualisiert", _s16_199, "Produkt erfolgreich archiviert", "deleted_product", "Produkt erfolgreich gel\xf6scht", _s16_200, "Produkt erfolgreich wiederhergestellt", _s17_117, "Archivierung erfolgreich :Produktz\xe4hler", _s16_201, "Erfolgreich :count Produkte gel\xf6scht", _s17_118, ":value Produkte erfolgreich wiederhergestellt", "product_key", "Produkt", "notes", "Notizen", "cost", "Kosten", "client", "Kunde", "clients", "Kunden", "new_client", "Neuer Kunde", "created_client", "Kunde erfolgreich angelegt", "updated_client", "Kunde erfolgreich aktualisiert", "archived_client", "Kunde erfolgreich archiviert", _s16_202, ":count Kunden erfolgreich archiviert", "deleted_client", "Kunde erfolgreich gel\xf6scht", "deleted_clients", ":count Kunden erfolgreich gel\xf6scht", "restored_client", "Kunde erfolgreich wiederhergestellt", _s16_203, ":value Kunden erfolgreich wiederhergestellt", "address1", "Stra\xdfe", "address2", "Adresszusatz", "city", "Stadt", "state", "Bundesland", "postal_code", "Postleitzahl", "country", "Land", "invoice", "Rechnung", "invoices", "Rechnungen", "new_invoice", "Neue Rechnung", "created_invoice", "Rechnung erfolgreich erstellt", "updated_invoice", "Rechnung erfolgreich aktualisiert", _s16_204, "Rechnung erfolgreich archiviert", "deleted_invoice", "Rechnung erfolgreich gel\xf6scht", _s16_205, "Rechnung erfolgreich wiederhergestellt", _s17_119, ":count Rechnungen erfolgreich archiviert", _s16_206, ":count Rechnungen erfolgreich gel\xf6scht", _s17_120, ":value Rechnungen erfolgreich wiederhergestellt", "emailed_invoice", "Rechnung erfolgreich versendet", "emailed_payment", "Zahlungs-E-Mail erfolgreich gesendet", "amount", "Betrag", "invoice_number", "Rechnungsnummer", "invoice_date", "Rechnungsdatum", "discount", "Rabatt", "po_number", "Bestellnummer", "terms", "Bedingungen", "public_notes", "\xd6ffentliche Notizen", "private_notes", "Interne Notizen", "frequency", "H\xe4ufigkeit", "start_date", "Startdatum", "end_date", "Enddatum", "quote_number", "Angebotsnummer", "quote_date", "Angebotsdatum", "valid_until", "G\xfcltig bis", "items", "Element", "partial_deposit", "Teil-/Anzahlung", "description", "Beschreibung", "unit_cost", "Einzelpreis", "quantity", "Menge", "add_item", "Artikel hinzuf\xfcgen", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Gesamtbetrag", "pdf", "PDF", "due_date", _s16_301, _s16_207, "Teilzahlungsziel", "status", "Status", _s17_121, "Rechnungs Status", "quote_status", "Angebotsstatus", _s22_56, "Klicken Sie auf +, um ein Element hinzuzuf\xfcgen.", _s22_58, "Klicken Sie auf +, um die Zeit hinzuzuf\xfcgen.", "count_selected", ":count ausgew\xe4hlt", "total", "Gesamt", "percent", "Prozent", "edit", "Bearbeiten", "dismiss", "Verwerfen", _s20_70, "Bitte w\xe4hlen Sie ein Datum", _s22_59, _s29_58, _s24_48, "Bitte w\xe4hlen Sie eine Rechnung aus", "task_rate", "Kosten f\xfcr T\xe4tigkeit", "settings", "Einstellungen", "language", "Sprache", "currency", "W\xe4hrung", "created_at", "Erstellt am", "created_on", "Erstellt am", "updated_at", "Aktualisiert", "tax", "Steuer", _s30_17, "Bitte geben Sie eine Rechnungs Nummer ein", _s27_49, "Bitte geben Sie eine Angebots Nummer ein", "past_due", "\xdcberf\xe4llig", "draft", "Entwurf", "sent", "Versendet", "viewed", "Angesehen", "approved", "Best\xe4tigt", "partial", "Teil-/Anzahlung", "paid", "Bezahlt", "mark_sent", "Als versendet markieren", _s22_61, "Rechnung erfolgreich als versendet markiert", _s22_62, _s55_2, _s23_40, "Erfolgreich Rechnungen als versendet markiert", _s23_41, _s55_2, "done", "Erledigt", _s37_18, "Bitte geben Sie einen Kunden- oder Kontaktnamen ein", "dark_mode", "Dunkler Modus", _s27_51, "Starten Sie die App neu, um die \xc4nderung zu \xfcbernehmen.", "refresh_data", "Daten aktualisieren", "blank_contact", "Leerer Kontakt", "activity", "Aktivit\xe4t", _s16_209, "Kein Eintr\xe4ge gefunden", "clone", "Duplizieren", "loading", "L\xe4dt", "industry", "Kategorie", "size", "Gr\xf6\xdfe", "payment_terms", "Zahlungsbedingungen", "payment_date", "Zahlungsdatum", "payment_status", "Zahlungsstatus", _s16_211, "Ausstehend", _s16_212, "entwertet", _s16_213, "Fehlgeschlagen", _s16_214, "Abgeschlossen", _s16_215, _s19_101, _s16_216, "Erstattet", _s17_122, "nicht angewendet", _s17_123, "Teilweise nicht angewendet", "net", "Netto", "client_portal", "Kunden-Portal", "show_tasks", "Aufgaben anzeigen", "email_reminders", "Mahnungs-E-Mail", "enabled", "Aktiviert", "recipients", "Empf\xe4nger", "initial_email", "Initiale E-Mail", "first_reminder", _s16_302, "second_reminder", _s17_172, "third_reminder", _s17_173, "reminder1", _s16_302, "reminder2", _s17_172, "reminder3", _s17_173, "template", "Vorlage", "send", "Senden", "subject", "Betreff", "body", "Inhalt", "send_email", "E-Mail senden", "email_receipt", "Zahlungsbest\xe4tigung an Kunden per E-Mail senden", "auto_billing", "Automatische Rechnungsstellung", "button", "Knopf", "preview", "Vorschau", "customize", "Anpassen", "history", "Verlauf", "payment", "Zahlung", "payments", "Zahlungen", "refunded", "Erstattet", "payment_type", "Zahlungsart", _s21_79, "Abwicklungsreferenz", "enter_payment", _s16_303, "new_payment", _s16_303, "created_payment", "Zahlung erfolgreich erstellt", "updated_payment", "Zahlung erfolgreich aktualisiert", _s16_217, "Zahlung erfolgreich archiviert", "deleted_payment", "Zahlung erfolgreich gel\xf6scht", _s16_218, "Zahlung erfolgreich wiederhergestellt", _s17_124, ":count Zahlungen erfolgreich archiviert", _s16_219, ":count Zahlungen erfolgreich gel\xf6scht", _s17_125, ":value Zahlungen erfolgreich wiederhergestellt", "quote", "Angebot", "quotes", "Angebote", "new_quote", "Neues Angebot", "created_quote", "Angebot erfolgreich erstellt", "updated_quote", "Angebot erfolgreich aktualisiert", "archived_quote", "Angebot erfolgreich archiviert", "deleted_quote", "Angebot erfolgreich gel\xf6scht", "restored_quote", "Angebot erfolgreich wiederhergestellt", "archived_quotes", ":count Angebote erfolgreich archiviert", "deleted_quotes", ":count Angebote erfolgreich gel\xf6scht", "restored_quotes", ":value Angebote erfolgreich wiederhergestellt", "expense", "Ausgabe", "expenses", "Ausgaben", "vendor", "Lieferant", "vendors", "Lieferanten", "task", "Aufgabe", "tasks", "Zeiterfassung", "project", "Projekt", "projects", "Projekte", "activity_1", ":user erstellte Kunde :client", "activity_2", ":user archivierte Kunde :client", "activity_3", ":user l\xf6schte Kunde :client", "activity_4", ":user erstellte Rechnung :invoice", "activity_5", ":user aktualisierte Rechnung :invoice", "activity_6", ":user mailte Rechnung :invoice f\xfcr :client an :contact", "activity_7", ":contact schaute Rechnung :invoice f\xfcr :client an", "activity_8", ":user archivierte Rechnung :invoice", "activity_9", ":user l\xf6schte Rechnung :invoice", "activity_10", ":contact gab Zahlungsinformation :payment \xfcber :payment_amount f\xfcr Rechnung :invoice f\xfcr Kunde :client", "activity_11", ":user aktualisierte Zahlung :payment", "activity_12", ":user archivierte Zahlung :payment", "activity_13", ":user l\xf6schte Zahlung :payment", "activity_14", ":user gab :credit Guthaben ein", "activity_15", ":user aktualisierte :credit Guthaben", "activity_16", ":user archivierte :credit Guthaben", "activity_17", ":user l\xf6schte :credit Guthaben", "activity_18", ":user erstellte Angebot :quote", "activity_19", ":user aktualisierte Angebot :quote", "activity_20", ":user mailte Angebot :quote f\xfcr :client an :contact", "activity_21", _s34_32, "activity_22", ":user archivierte Angebot :quote", "activity_23", ":user l\xf6schte Angebot :quote", "activity_24", ":user stellte Angebot :quote wieder her", "activity_25", ":user stellte Rechnung :invoice wieder her", "activity_26", ":user stellte Kunde :client wieder her", "activity_27", ":user stellte Zahlung :payment wieder her", "activity_28", ":user stellte Guthaben :credit wieder her", "activity_29", ":contact akzeptierte Angebot :quote f\xfcr :client", "activity_30", ":user hat Lieferant :vendor erstellt", "activity_31", ":user hat Lieferant :vendor archiviert", "activity_32", ":user hat Lieferant :vendor gel\xf6scht", "activity_33", ":user hat Lieferant :vendor wiederhergestellt", "activity_34", ":user erstellte Ausgabe :expense", "activity_35", ":user hat Ausgabe :expense archiviert", "activity_36", ":user hat Ausgabe :expense gel\xf6scht", "activity_37", ":user hat Ausgabe :expense wiederhergestellt", "activity_39", ":user brach eine Zahlung \xfcber :payment_amount ab :payment", "activity_40", ":user hat :adjustment von :payment_amount der Zahlung :payment zur\xfcck erstattet", "activity_41", ":payment_amount Zahlung (:payment) schlug fehl", "activity_42", ":user hat Aufgabe :task erstellt", "activity_43", ":user hat Aufgabe :task bearbeitet", "activity_44", ":user hat Aufgabe :task archiviert", "activity_45", ":user hat Aufgabe :task gel\xf6scht", "activity_46", ":user hat Aufgabe :task wiederhergestellt", "activity_47", ":user hat Ausgabe :expense bearbeitet", "activity_48", ":user erstellte Benutzer :user", "activity_49", ":user aktualisierte Benutzer :user", "activity_50", ":user archivierte Benutzer :user", "activity_51", ":user l\xf6schte Benutzer :user", "activity_52", ":user hat Benutzer :user wiederhergestellt", "activity_53", ":user markierte Rechnung :invoice als versendet", "activity_54", ":user hat Ticket :ticket wieder ge\xf6ffnet", "activity_55", ":contact hat auf Ticket :ticket geantwortet", "activity_56", ":user hat Ticket :ticket angesehen", "activity_57", "Das System konnte die Rechnung :invoice nicht per E-Mail versenden", "activity_58", ":user buchte Rechnung :invoice zur\xfcck", "activity_59", ":user brach Rechnung :invoice ab", "activity_60", _s34_32, "activity_61", ":user hat Kunde :client aktualisiert", "activity_62", ":user hat Lieferant :vendor aktualisiert", "activity_63", ":user mailte erste Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_64", ":user mailte zweite Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_65", ":user mailte dritte Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_66", ":user mailte endlose Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_80", ":user hat Abonnement :subscription erstellt", "activity_81", ":user hat Abonnement :subscription ge\xe4ndert", "activity_82", ":user hat Abonnement :subscription archiviert", "activity_83", ":user hat Abonnement :subscription gel\xf6scht", "activity_84", ":user hat Abonnement :subscription wiederhergestellt", _s17_126, "Einmaliges Passwort", "emailed_quote", "Angebot erfolgreich versendet", "emailed_credit", _s41_12, _s20_72, "Angebot erfolgreich als versendet markiert", _s21_81, "Guthaben erfolgreich als versendet markiert", "expired", "Abgelaufen", "all", "Alle", "select", "W\xe4hlen", _s22_63, "Mehrfachauswahl durch langes Dr\xfccken", "custom_value1", _s24_81, "custom_value2", _s24_81, "custom_value3", "Benutzerdefinierter Wert 3", "custom_value4", "Benutzerdefinierter Wert 4", _s18_91, "Benutzer definierter E-Mail-Stil", _s24_53, "Benutzerdefinierte Dashboard-Nachricht", _s29_36, "Benutzerdefinierte Nachricht f\xfcr unbezahlte Rechnung", _s27_56, "Benutzerdefinierte Nachricht f\xfcr bezahlte Rechnung", _s31_18, "Benutzerdefinierte Nachricht f\xfcr nicht genehmigten Kostenvoranschlag", "lock_invoices", "Rechnung sperren", "translations", "\xdcbersetzungen", _s19_60, "Aufgabennummernschema", _s19_62, "Aufgabennummernz\xe4hler", _s22_65, "Ausgabennummernschema", _s22_67, "Ausgabennummernz\xe4hler", _s21_82, "Lieferantennummernschema", _s21_84, "Lieferantennummernz\xe4hler", _s21_86, "Ticketnummernschema", _s21_88, "Ticketnummernz\xe4hler", _s22_69, "Zahlungsnummernschema", _s22_71, "Zahlungsnummernz\xe4hler", _s22_73, "Rechnungsnummernschema", _s22_75, "Z\xe4hler f\xfcr Rechnungsnummer", _s20_73, "Kostenvoranschlags-Nummernschema", _s20_75, "Z\xe4hler f\xfcr Angebotsnummer", _s21_90, "Gutschriftnummernschema", _s21_92, _s23_71, _s21_94, _s23_71, _s21_95, _s23_71, _s18_93, "Z\xe4hlerdatum zur\xfccksetzen", "counter_padding", "Z\xe4hler-Innenabstand", _s28_56, "Gemeinsamen Nummernz\xe4hler f\xfcr Rechnungen und Angebote verwenden", _s18_95, "Standard-Steuername 1", _s18_97, "Standard-Steuersatz 1", _s18_99, "Standard-Steuername 2", _s18_101, "Standard-Steuersatz 2", _s18_103, "Standard-Steuername 3", _s18_105, "Standard-Steuersatz 3", _s21_96, "E-Mail Rechnung Betreff", _s19_64, "E-Mail Angebot Betreff", _s21_98, "E-Mail Zahlung Betreff", _s29_38, "E-Mail Teilzahlung Betreff", "show_table", "Zeige Tabelle", "show_list", "Zeige Liste", "client_city", "Kunden-Stadt", "client_state", "Kunden-Bundesland/Kanton", "client_country", "Kunden-Land", _s16_220, "Kunde ist aktiv", "client_balance", "Kunden Betrag", "client_address1", "Stra\xdfe des Kunden", "client_address2", "Adresszusatz", "vendor_address1", "Stra\xdfe Lieferant", "vendor_address2", "Lieferant Apt/Suite", _s24_55, "Strasse Kundenlieferanschrift", _s24_56, "Addresszusatz Kundenlieferadresse", "type", "Typ", "invoice_amount", "Rechnungssumme", _s16_224, _s16_301, "tax_rate1", "Steuersatz 1", "tax_rate2", "Steuersatz 2", "tax_rate3", "Steuersatz 3", "auto_bill", "Automatische Verrechnung", "archived_at", "Archiviert um", "has_expenses", "Hat Ausgaben", "custom_taxes1", "Benutzerdefinierte Steuern 1", "custom_taxes2", "Benutzerdefinierte Steuern 2", "custom_taxes3", "Benutzerdefinierte Steuern 3", "custom_taxes4", "Benutzerdefinierte Steuern 4", _s17_128, _s30_44, _s17_129, _s30_45, _s17_130, _s30_46, _s17_131, _s30_47, "is_deleted", "ist gel\xf6scht", "vendor_city", "Lieferanten-Stadt", "vendor_state", "Lieferanten-Bundesland/Kanton", "vendor_country", "Lieferanten-Land", "is_approved", "Wurde angenommen", "tax_name", "Steuersatz Name", "tax_amount", "Steuerwert", "tax_paid", "Steuern bezahlt", "payment_amount", "Zahlungsbetrag", "age", "Alter", "is_running", "L\xe4uft derzeit", "time_log", "Zeiten", "bank_id", "Bank", _s19_66, "Ausgabenkategorie ID", _s16_225, "Ausgabenkategorie", _s19_68, "Rechnungs-W\xe4hrungs-ID", "tax_name1", "Steuersatz Name 1", "tax_name2", "Steuersatz Name 2", "tax_name3", "Steuersatz Name 3", "transaction_id", "Transaktions ID", _s18_107, "Status Farbschema", _s16_226, "lade Farbschema"], t1, t1), "el", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "default", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u0398\u03ad\u03c3\u03b7", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :Invoice", _s17_6, _s17_7, "week", "\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u039d\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "range", "\u0395\u03cd\u03c1\u03bf\u03c2", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "\u03a4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c0\u03bf\u03c3\u03bf\u03cd :amount \u03b8\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 # :expense", "view_statement", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0394\u03ae\u03bb\u03c9\u03c3\u03b7\u03c2", "sepa", "\u0391\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u03a3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "\u0391\u03c0\u03cc \u038c\u03bd\u03bf\u03bc\u03b1", _s16_21, _s16_231, _s17_13, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7", _s18_13, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s21_16, "\u039d\u03ad\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7", _s22_24, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_2, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_3, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s26_2, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_4, _s25_75, _s25_5, _s38_2, _s26_3, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc \u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u0395\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03ae", "enterprise", "Enterprise", "last_updated", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", _s17_17, "\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "order", "Order", "unassigned", "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03b1\u03c4\u03b5\u03b8\u03b5\u03af", "partial_value", "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b7\u03b4\u03b5\u03bd\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf.", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u039f\u03c1\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c5\u03c0\u03bf\u03c4\u03bf\u03bc\u03ad\u03b1 \u03ae \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c3\u03c4\u03b7 \u03b4\u03b9\u03ba\u03ae \u03c3\u03b1\u03c2 \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "\u0391\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", _s16_39, _s16_40, _s17_23, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_23, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_24, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s21_28, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u0395\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7\u03c2", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "\u0395\u03c0\u03b5\u03c3\u03c4\u03c1\u03ac\u03c6\u03b7", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "\u03a3\u03ba\u03b1\u03bd\u03ac\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf barcode \u03bc\u03b5 \u03bc\u03af\u03b1 :link \u03c3\u03c5\u03bc\u03b2\u03b1\u03c4\u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae.", _s18_30, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u0394\u03cd\u03bf \u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03bd", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "\u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b4\u03cd\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03bd", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u0395\u03c0\u03b5\u03c3\u03c4\u03c1\u03b1\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03a4\u03b5\u03c4\u03c1\u03ac\u03bc\u03b7\u03bd\u03bf", "last_quarter", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03a4\u03b5\u03c4\u03c1\u03ac\u03bc\u03b7\u03bd\u03bf", "to_update_run", "\u0393\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03b5\u03bb\u03ad\u03c3\u03c4\u03b5", _s18_33, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_52, "URL \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "invoice_project", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 Project", "invoice_task", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "invoice_expense", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s19_25, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u038c\u03c1\u03bf\u03c5 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_28, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_54, "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "save_and_email", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae Email", _s16_56, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b1 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03b1", _s16_58, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc", _s17_32, "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf \u03b1\u03c0\u03cc \u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "\u0388\u03c7\u03b5\u03b9 \u0391\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b5\u03af", _s17_34, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03b1", "document_upload", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", _s20_29, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bf\u03b9 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03bf\u03c5\u03bd \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", "expense_total", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ae \u0394\u03b1\u03c0\u03ac\u03bd\u03b7", "enter_taxes", "\u0395\u03b9\u03c3\u03b1\u03b3\u03b5\u03c4\u03b5 \u03a6\u03cc\u03c1\u03bf\u03c5\u03c2", "by_rate", "\u039c\u03b5 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "by_amount", "\u039c\u03b5 \u03a0\u03bf\u03c3\u03cc", "enter_amount", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03a0\u03bf\u03c3\u03cc", "before_taxes", "\u03a0\u03c1\u03bf \u03a6\u03cc\u03c1\u03c9\u03bd", "after_taxes", "\u039c\u03b5\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "color", "\u03a7\u03c1\u03ce\u03bc\u03b1", "show", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5", "hide", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7", "empty_columns", "\u039a\u03b5\u03bd\u03ad\u03c2 \u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", _s21_35, "\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b1\u03c0\u03bf\u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03c3\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af", _s26_9, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u03c0\u03c1\u03bf\u03bf\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ac \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae\u03bc\u03b1\u03c4\u03b1, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c1\u03c1\u03bf\u03ae \u03ba\u03c9\u03b4\u03b9\u03ba\u03ce\u03bd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1.", "running_tasks", "\u0395\u03ba\u03c4\u03b5\u03bb\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "recent_tasks", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "recent_expenses", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s17_36, "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", "update_app", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "started_import", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", _s24_20, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", _s20_30, "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03a6\u03cc\u03c1\u03bf\u03b9", _s18_35, "\u0395\u03af\u03bd\u03b1\u03b9 \u03a0\u03bf\u03c3\u03cc \u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2", "column", "\u039a\u03bf\u03bb\u03cc\u03bd\u03b1", "sample", "\u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1", "map_to", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03a3\u03b5", "import", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae", _s25_15, "\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03ce\u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03c9\u03c2 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", "select_file", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf", _s16_60, "\u0394\u03b5\u03bd \u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 \u0391\u03c1\u03c7\u03b5\u03af\u03bf", "csv_file", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0391\u03b4\u03b5\u03b9\u03ce\u03bd \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "webhook_url", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c4\u03bf\u03c5 Webhook", _s17_38, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03ae\u03c1\u03bf\u03c5\u03c2 \u039f\u03b8\u03cc\u03bd\u03b7\u03c2", "sidebar_editor", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03ac\u03b3\u03b9\u03b1\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", _s22_31, '\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c0\u03bb\u03b7\u03ba\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 ":value" \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7', "purge", "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7", "service", "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1", "clone_to", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a3\u03b5", "clone_to_other", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u0386\u03bb\u03bb\u03bf", "labels", "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2", "add_custom", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "payment_tax", "\u03a6\u03cc\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "unpaid", "\u039c\u03b7 \u03b5\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03b7", "white_label", "\u039b\u03b5\u03c5\u03ba\u03ae \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1", "delivery_note", "\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03a0\u03b1\u03c1\u03ac\u03b4\u03bf\u03c3\u03b7\u03c2", _s24_23, "\u03a4\u03b1 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b1", _s24_25, "\u03a4\u03b1 \u03b5\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b1", "source_code", "\u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", "app_platforms", "\u03a0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b5\u03c2 \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "invoice_late", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_expired", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "partial_due", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "invoice_total", _s17_174, "quote_total", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_total", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ae \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", _s23_14, _s17_174, "actions", "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2", "expense_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "task_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "project_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 Project", "project_name", "\u038c\u03bd\u03bf\u03bc\u03b1 Project", "warning", "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "view_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2", _s24_27, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u0391\u03c5\u03c4\u03ae \u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03af\u03b1 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03b1\u03ba\u03cc\u03bc\u03b1", "late_invoice", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "expired_quote", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03c0\u03bf\u03c5 \u03ad\u03bb\u03b7\u03be\u03b5", "remind_invoice", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "cvv", "CVV", "client_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "required_fields", "\u0391\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03a0\u03b5\u03b4\u03af\u03b1", "calculated_rate", "\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03bf \u039a\u03cc\u03c3\u03c4\u03bf\u03c2", _s17_40, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u039a\u03cc\u03c3\u03c4\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "clear_cache", "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ae\u03c2 \u039c\u03bd\u03ae\u03bc\u03b7\u03c2", "sort_order", "\u03a3\u03b5\u03b9\u03c1\u03ac \u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7\u03c2", "task_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", "task_statuses", "\u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "new_task_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u039d\u03ad\u03b1\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s16_62, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_26, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_27, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_32, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_28, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_29, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_33, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_32, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s21_37, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_33, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s18_37, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_35, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s16_64, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", _s21_38, "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf \u03c4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03cc\u03c4\u03b1\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s20_36, "\u03a7\u03c1\u03bf\u03bd\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s25_16, "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03b5\u03c1\u03b9\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b9\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 \u03c4\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, "\u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", _s18_38, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd", "task_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_40, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s18_40, "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s20_42, "\u039d\u03ad\u03b1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s21_40, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s24_28, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s24_29, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s25_19, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s24_30, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2", _s24_31, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_20, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s27_21, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s26_10, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 :value \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s27_22, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 :value \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s23_15, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_22, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s21_42, "\u03a7\u03c1\u03ae\u03c3\u03b7 \u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03c9\u03bd \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "show_option", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2", _s22_34, "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c5\u03c0\u03b5\u03c1\u03b2\u03b1\u03af\u03bd\u03b5\u03b9 \u03c4\u03bf \u03c0\u03bf\u03c3\u03cc \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "view_changes", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u0391\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd", "force_update", "\u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", _s17_42, "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03b1\u03bb\u03bb\u03ac \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b1\u03bd\u03b1\u03bc\u03bf\u03bd\u03ae.", "mark_paid_help", "\u0395\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s18_42, "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03b8\u03b5\u03af", _s23_16, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03b8\u03b5\u03af", _s29_7, "\u039a\u03ac\u03bd\u03b5 \u03c4\u03b1 \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03b9\u03bc\u03b1", _s21_44, "\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u0399\u03c3\u03bf\u03c4\u03b9\u03bc\u03af\u03b1\u03c2 \u0391\u03bd\u03c4\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s16_66, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s18_43, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf", "crypto", "\u039a\u03c1\u03cd\u03c0\u03c4\u03bf", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", "Apple/Google \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "user_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "variables", "\u039c\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2", "show_password", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "hide_password", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "copy_error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03b3\u03ae\u03c2", "capture_card", "\u039a\u03ac\u03c1\u03c4\u03b1 \u03a3\u03cd\u03bb\u03bb\u03b7\u03c8\u03b7\u03c2", _s17_43, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5", "total_taxes", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03bf\u03af \u03a6\u03cc\u03c1\u03bf\u03b9", "line_taxes", "\u03a6\u03cc\u03c1\u03bf\u03b9 \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "total_fields", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ac \u03a0\u03b5\u03b4\u03af\u03b1", _s25_23, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_24, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_25, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "gateway_refund", "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03bc\u03ad\u03c3\u03c9 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", _s19_30, "\u0395\u03ba\u03c4\u03b5\u03bb\u03ad\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03bd\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03bc\u03ad\u03c3\u03c9 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", "due_date_days", _s22_115, "paused", "\u03a3\u03b5 \u03c0\u03b1\u03cd\u03c3\u03b7", "mark_active", "\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c9\u03c2 \u0395\u03bd\u03b5\u03c1\u03b3\u03cc", "day_count", "\u0397\u03bc\u03ad\u03c1\u03b1 :count", _s22_35, "\u03a0\u03c1\u03ce\u03c4\u03b7 \u039c\u03ad\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039c\u03ae\u03bd\u03b1", _s21_45, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u039c\u03ad\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039c\u03ae\u03bd\u03b1", _s17_45, "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "endless", "\u03a3\u03c5\u03bd\u03b5\u03c7\u03ae\u03c2", "next_send_date", "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_68, "\u0395\u03bd\u03b1\u03c0\u03bf\u03bc\u03b5\u03af\u03bd\u03b1\u03bd\u03c4\u03b5\u03c2 \u039a\u03cd\u03ba\u03bb\u03bf\u03b9", _s17_47, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s18_45, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s21_47, "\u039d\u03ad\u03bf \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s22_37, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s25_26, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_27, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_28, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_29, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_12, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_23, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s26_13, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s27_24, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s24_32, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_30, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "send_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "auto_bill_on", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2", _s28_7, "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03a0\u03bf\u03c3\u03cc \u03a5\u03c0\u03bf\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "profit", "\u039a\u03ad\u03c1\u03b4\u03bf\u03c2", "line_item", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", _s18_47, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03a5\u03c0\u03b5\u03c1\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s23_17, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b9\u03c0\u03bb\u03b5\u03cc\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03ad\u03c7\u03b5\u03c3\u03c4\u03b5 \u03c6\u03b9\u03bb\u03bf\u03b4\u03bf\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1", _s19_31, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03a5\u03c0\u03bf\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s24_33, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03c4' \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03c0\u03bf\u03c3\u03bf\u03cd", "test_mode", "\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03a4\u03b5\u03c3\u03c4", "opened", "\u0391\u03bd\u03bf\u03af\u03c7\u03b8\u03b7\u03ba\u03b5", _s30_4, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a3\u03c5\u03bc\u03b2\u03b9\u03b2\u03b1\u03c3\u03bc\u03bf\u03cd", _s30_5, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a3\u03c5\u03bc\u03b2\u03b9\u03b2\u03b1\u03c3\u03bc\u03bf\u03cd", "gateway_success", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "gateway_failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "gateway_error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "email_send", "Email \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", _s17_49, "\u039f\u03c5\u03c1\u03ac \u0395\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 Email", "failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1", "quota_exceeded", "\u03a5\u03c0\u03ad\u03c1\u03b2\u03b1\u03c3\u03b7 \u039f\u03c1\u03af\u03bf\u03c5", _s16_70, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a1\u03bf\u03ae\u03c2", "system_logs", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03a3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2", "view_portal", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae portal", "copy_link", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", "token_billing", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03ba\u03ac\u03c1\u03c4\u03b1\u03c2", _s24_34, "\u039a\u03b1\u03bb\u03c9\u03c3\u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Invoice Ninja", "always", "\u03a0\u03ac\u03bd\u03c4\u03b1", "optin", "\u03a3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae", "optout", "\u039c\u03b7 \u03a3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae", "label", "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1", "client_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "auto_convert", _s18_158, "company_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "reminder1_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 1 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "reminder2_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 2 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "reminder3_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 3 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", _s18_49, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "pdf_page_info", "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 :current \u03b1\u03c0\u03cc :total", _s16_72, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "emailed_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "emailed_credits", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u0384\u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd \u03bc\u03b5 email", "gateway", "\u03a0\u03cd\u03bb\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", "view_in_stripe", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03c4\u03bf Stripe", "rows_per_page", "\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 \u03b1\u03bd\u03ac \u03a3\u03b5\u03bb\u03af\u03b4\u03b1", "hours", "\u038f\u03c1\u03b5\u03c2", "statement", "\u0394\u03ae\u03bb\u03c9\u03c3\u03b7", "taxes", "\u03a6\u03cc\u03c1\u03bf\u03b9", "surcharge", "\u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7", "apply_payment", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "apply_credit", "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "apply", "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "unapplied", "\u0391\u03bd\u03b5\u03c6\u03ac\u03c1\u03bc\u03bf\u03c3\u03c4\u03bf", "select_label", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2", "custom_labels", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2", "record_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "record_name", "\u038c\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "file_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", "height", "\u038e\u03c8\u03bf\u03c2", "width", "\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2", "to", "\u03a0\u03c1\u03bf\u03c2", "health_check", "\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03a5\u03b3\u03b5\u03af\u03b1\u03c2", "payment_type_id", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "last_login_at", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c3\u03c4\u03b9\u03c2", "company_key", "\u039a\u03bb\u03b5\u03b9\u03b4\u03af \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "storefront", "\u0392\u03b9\u03c4\u03c1\u03af\u03bd\u03b1 \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2", "storefront_help", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ce\u03bd \u03c4\u03c1\u03af\u03c4\u03c9\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "client_created", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5", _s20_45, "Email Online \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s20_47, "Email \u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "completed", "\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", "gross", "\u039c\u03b5\u03b9\u03ba\u03c4\u03cc", "net_amount", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc \u03a0\u03bf\u03c3\u03cc", "net_balance", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc \u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", "client_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s17_51, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s17_53, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "selected_quotes", "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "selected_tasks", "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", _s17_55, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s17_57, "\u03a0\u03c1\u03bf\u03c3\u03b5\u03c7\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s17_59, "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", "recent_payments", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "upcoming_quotes", "\u03a0\u03c1\u03bf\u03c3\u03b5\u03c7\u03b5\u03af\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "expired_quotes", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03bb\u03b7\u03be\u03b1\u03bd", "create_client", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "create_invoice", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "create_quote", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "create_payment", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "create_vendor", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "update_quote", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "delete_quote", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "update_invoice", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "delete_invoice", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "update_client", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "delete_client", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "delete_payment", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "update_vendor", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "delete_vendor", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "create_expense", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "update_expense", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "delete_expense", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "create_task", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "update_task", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "delete_task", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "approve_quote", "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "off", "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc", "when_paid", "\u039f\u03c4\u03b1\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af", "expires_on", "\u039b\u03ae\u03b3\u03b5\u03b9 \u03c4\u03b7\u03bd", "free", "\u0394\u03c9\u03c1\u03b5\u03ac\u03bd", "plan", "\u03a0\u03bb\u03ac\u03bd\u03bf", "show_sidebar", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03ae\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", "hide_sidebar", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03ae\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", "event_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03bf\u03c2", "target_url", "\u03a3\u03c4\u03cc\u03c7\u03bf\u03c2", "copy", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", "must_be_online", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03cc\u03bb\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf internet", _s17_61, "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b1 crons", "api_webhooks", "API Webhooks", "search_webhooks", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count Webhooks", "search_webhook", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "\u039d\u03ad\u03bf Webhook", "edit_webhook", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 Webhook", "created_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 webhook", "updated_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 webhook", _s16_74, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 webhook", "deleted_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae webhook", "removed_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 webhook", _s16_75, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 webhook", _s17_62, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value webhooks", _s16_76, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value webhooks", _s16_77, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 :value webhooks", _s17_63, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value webhooks", "api_tokens", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac API", "api_docs", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03b1 API", "search_tokens", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "search_token", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "token", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc", "tokens", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac", "new_token", "\u039d\u03ad\u03bf \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc", "edit_token", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "created_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "updated_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "archived_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "deleted_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "removed_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "restored_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "archived_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "deleted_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "restored_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", _s19_33, "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s24_36, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd \u03c3\u03c4\u03bf portal", _s21_49, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae & \u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "email_invoice", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03bc\u03b5 email", "email_quote", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "email_credit", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 email", "email_payment", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 Email", _s20_50, "\u039f \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bc\u03af\u03b1 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email", "ledger", "\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc", "view_pdf", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae PDF", "all_records", "\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "owned_by_user", "\u0399\u03b4\u03b9\u03bf\u03ba\u03c4\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", _s16_78, "\u03a5\u03c0\u03bf\u03bb\u03b5\u03b9\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "contact_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "use_default", "\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2", _s16_80, _s18_159, "number_of_days", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b7\u03bc\u03b5\u03c1\u03ce\u03bd", _s23_19, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_term", "\u038c\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_81, "\u039d\u03ad\u03bf\u03c2 \u038c\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_65, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u038c\u03c1\u03bf\u03c5 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_51, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_52, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b9\u03ba\u03b1\u03b9\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_50, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_53, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_54, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_51, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_42, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_52, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_43, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "email_sign_in", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03b5 email", "change", "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae", _s23_21, "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2;", _s24_37, "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 Desktop \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2;", "send_from_gmail", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03bc\u03ad\u03c3\u03c9 Gmail", "reversed", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5", "cancelled", "\u0391\u03ba\u03c5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7", "credit_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "quote_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "hosted", "\u03a6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7", "selfhosted", "\u0399\u03b4\u03af\u03b1\u03c2 \u03a6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03af\u03b1\u03c2", "exclusive", "\u0394\u03b5\u03bd \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9", "inclusive", "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9", "hide_menu", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u039c\u03b5\u03bd\u03bf\u03cd", "show_menu", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039c\u03b5\u03bd\u03bf\u03cd", _s18_51, "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s16_83, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "search_designs", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "search_invoices", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "search_clients", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "search_products", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "search_quotes", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "search_credits", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "search_vendors", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "search_users", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", _s16_84, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03a6\u03cc\u03c1\u03bf\u03c5", "search_tasks", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "search_settings", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "search_projects", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 Projects", "search_expenses", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", "search_payments", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "search_groups", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "search_company", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ce\u03bd", "search_document", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", "search_design", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", "search_invoice", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "search_client", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "search_product", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "search_quote", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "search_credit", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "search_vendor", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "search_user", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "search_tax_rate", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03a6\u03cc\u03c1\u03bf\u03c5", "search_task", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "search_project", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 Project", "search_expense", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "search_payment", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "search_group", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "refund_payment", "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_69, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s18_53, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s16_90, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_70, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "reverse", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae", "full_name", "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u038c\u03bd\u03bf\u03bc\u03b1", _s17_71, "\u03a0\u03cc\u03bb\u03b7/\u039d\u03bf\u03bc\u03cc\u03c2/\u03a4.\u039a.", _s17_73, "\u03a4\u039a/\u03a0\u03cc\u03bb\u03b7/\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae", "custom1", _s16_304, "custom2", _s18_160, "custom3", _s16_305, "custom4", "\u03a4\u03ad\u03c4\u03b1\u03c1\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "optional", "\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc", "license", "\u0386\u03b4\u03b5\u03b9\u03b1 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "purge_data", "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", _s16_91, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", _s18_54, "\u03a0\u03c1\u03bf\u03c3\u03bf\u03c7\u03ae: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03b2\u03ae\u03c3\u03b5\u03b9 \u03cc\u03bb\u03b1 \u03c3\u03b1\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2.", "invoice_balance", "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "age_group_0", "0 - 30 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_30", "30 - 60 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_60", "60 - 90 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_90", "90 - 120 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_120", "120+ \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "refresh", "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7", "saved_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "client_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "company_address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "invoice_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "product_columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "task_columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "add_field", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03b5\u03b4\u03af\u03bf\u03c5", "all_events", "\u038c\u03bb\u03b1 \u03c4\u03b1 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03b1", "permissions", "\u0394\u03b9\u03ba\u03b1\u03b9\u03ce\u03bc\u03b1\u03c4\u03b1", "none", "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1", "owned", "\u039a\u03b1\u03c4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9", "payment_success", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "invoice_sent", ":count \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "quote_sent", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "credit_sent", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "invoice_viewed", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "quote_viewed", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "credit_viewed", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "quote_approved", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b1\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", _s25_32, "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd", _s16_92, "\u03a0\u03c1\u03bf\u03bc\u03ae\u03b8\u03b5\u03b9\u03b1 \u0386\u03b4\u03b5\u03b9\u03b1\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "apply_license", "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u0386\u03b4\u03b5\u03b9\u03b1\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "cancel_account", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", _s22_44, "\u03a0\u03c1\u03bf\u03c3\u03bf\u03c7\u03ae: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03b2\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2.", "delete_company", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0395\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", _s22_45, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7.", "enabled_modules", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03bd\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2", "converted_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_design", "\u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "includes", "\u03a0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b1", "header", "\u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "load_design", "\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "css_framework", "CSS Framework", "custom_designs", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03b9 \u03a3\u03c7\u03ad\u03b4\u03b9\u03b1", "designs", "\u03a3\u03c7\u03ad\u03b4\u03b9\u03b1", "new_design", "\u039d\u03ad\u03bf \u03c3\u03c7\u03bb\u03b5\u03b4\u03b9\u03bf", "edit_design", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", "created_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "updated_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "archived_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "deleted_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "removed_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "restored_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", _s16_94, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "deleted_designs", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", _s16_95, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "proposals", "\u03a0\u03c1\u03bf\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2", "tickets", "\u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2", _s16_96, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "recurring_tasks", "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", _s18_55, "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "credit_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "credit", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "credits", "\u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2", "new_credit", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "edit_credit", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "created_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "updated_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "archived_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "deleted_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "removed_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03af\u03b1\u03c1\u03b5\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "restored_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", _s16_98, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "deleted_credits", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", _s16_99, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "current_version", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "latest_version", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0388\u03ba\u03b4\u03bf\u03c3\u03b7", "update_now", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a4\u03ce\u03c1\u03b1", _s26_19, "\u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2 web", _s16_100, "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "app_updated", "\u0397 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bf\u03ba\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1", "learn_more", "\u039c\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1", "integrations", "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2", "tracking_id", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7\u03c2", _s17_75, "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c4\u03bf\u03c5 Webhook \u03b3\u03b9\u03b1 \u03c4\u03bf Slack", "credit_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "credit_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "new_company", "\u039d\u03ad\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", "added_company", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", "company1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 1", "company2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 2", "company3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 3", "company4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 4", "product1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 1", "product2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 2", "product3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 3", "product4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 4", "client1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 1", "client2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 2", "client3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 3", "client4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 4", "contact1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 1", "contact2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 2", "contact3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 3", "contact4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 4", "task1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 1", "task2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 2", "task3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 3", "task4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 4", "project1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 1", "project2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 2", "project3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 3", "project4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 4", "expense1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 1", "expense2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 2", "expense3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 3", "expense4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 4", "vendor1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 1", "vendor2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 2", "vendor3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 3", "vendor4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 4", "invoice1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 1", "invoice2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 2", "invoice3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 3", "invoice4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 4", "payment1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 1", "payment2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 2", "payment3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 3", "payment4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 4", "surcharge1", _s26_61, "surcharge2", _s26_62, "surcharge3", _s26_63, "surcharge4", _s26_64, "group1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 1", "group2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 2", "group3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 3", "group4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 4", "reset", "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", "number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2", "export", "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae", "chart", "\u0394\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1", "count", "\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7", "totals", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03b1", "blank", "\u039a\u03b5\u03bd\u03cc", "day", "\u0397\u03bc\u03ad\u03c1\u03b1", "month", "\u039c\u03ae\u03bd\u03b1\u03c2", "year", "\u0388\u03c4\u03bf\u03c2", "subgroup", "\u03a5\u03c0\u03bf\u03bf\u03bc\u03ac\u03b4\u03b1", "is_active", "\u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc", "group_by", "\u039f\u03bc\u03b1\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03b5", "credit_balance", "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", _s18_61, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", _s17_77, "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c4\u03b5\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "contact_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2", _s21_53, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 1", _s21_54, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 2", _s21_55, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 3", _s21_56, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 4", _s17_79, "\u039f\u03b4\u03cc\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s17_80, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "shipping_city", "\u03a0\u03cc\u03bb\u03b7 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "shipping_state", "\u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s20_55, "\u03a4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03cc\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_130, "\u03a7\u03ce\u03c1\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_132, "\u039f\u03b4\u03cc\u03c2 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", _s16_133, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_city", "\u03a0\u03cc\u03bb\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_state", "\u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", _s19_36, "\u03a4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03cc\u03c2 \u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_country", "\u03a7\u03ce\u03c1\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "client_id", "Id \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "assigned_to", "\u0391\u03bd\u03b1\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03b5", "created_by", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc :name", "assigned_to_id", "\u039f\u03c1\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Id", "created_by_id", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03bf Id", "add_column", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2", "edit_columns", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", "columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", "aging", "\u0393\u03ae\u03c1\u03b1\u03bd\u03c3\u03b7", "profit_and_loss", "\u039a\u03ad\u03c1\u03b4\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0396\u03b7\u03bc\u03b9\u03ac", "reports", "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2", "report", "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", "add_company", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "unpaid_invoice", "\u039c\u03b7 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "paid_invoice", "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_134, "\u039c\u03b7 \u0395\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "help", "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", "refund", _s18_161, "refund_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae\u03c2 \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", "filtered_by", "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03bc\u03b5", "contact_email", "Email \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2", "multiselect", "\u03a0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", "entity_state", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", "verify_password", "\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd", "applied", "\u0395\u03b3\u03b9\u03bd\u03b5 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s21_57, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03c9\u03bd \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd \u03b1\u03c0\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", _s30_8, "\u0395\u03c7\u03bf\u03c5\u03bc\u03b5 \u03bb\u03ac\u03b2\u03b5\u03b9 \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03ac \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b1.", "message", "\u039c\u03ae\u03bd\u03c5\u03bc\u03b1", "from", "\u0391\u03c0\u03cc", _s20_57, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03b5\u03c1\u03b5\u03b9\u03ce\u03bd \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s25_34, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03ba\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c4\u03b9\u03bc\u03ae\u03c2 \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03c0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s20_59, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03b7\u03c4\u03ae\u03c2 PDF \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af :version", _s18_64, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c4\u03bf\u03c5 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c4\u03ad\u03bb\u03bf\u03c5\u03c2", _s23_23, "\u03a4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b3\u03b9\u03b1 \u03c4\u03ad\u03bb\u03bf\u03c2", _s18_66, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "support_forum", "\u03c6\u03cc\u03c1\u03bf\u03c5\u03bc \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2", "about", "\u03a0\u03b5\u03c1\u03af", "documentation", "\u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7", "contact_us", "\u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b1\u03b6\u03af \u03bc\u03b1\u03c2", "subtotal", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc \u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "line_total", "\u0391\u03be\u03af\u03b1", "item", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "credit_email", "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03cc \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5", "iframe_url", "\u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "domain_url", "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 URL", _s21_58, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2", _s20_60, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc", _s19_38, "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s23_24, "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", _s20_61, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c4\u03b9\u03bc\u03ae", "deleted_logo", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03bb\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03bf\u03c5", "yes", "\u039d\u03b1\u03b9", "no", "\u038c\u03c7\u03b9", "generate_number", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0391\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd", "when_saved", "\u039f\u03c4\u03b1\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af", "when_sent", "\u039f\u03c4\u03b1\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03bb\u03b5\u03af", "select_company", "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", "float", "Float", "collapse", "\u03a3\u03c5\u03c1\u03c1\u03af\u03ba\u03bd\u03c9\u03c3\u03b7", "show_or_hide", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7/\u03b1\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7", "menu_sidebar", "\u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03cc \u039c\u03b5\u03bd\u03bf\u03cd", "history_sidebar", "\u039c\u03b5\u03bd\u03bf\u03cd \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03bf\u03cd \u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd", "tablet", "\u03a4\u03ac\u03bc\u03c0\u03bb\u03b5\u03c4", "mobile", "\u039a\u03b9\u03bd\u03b7\u03c4\u03cc", "desktop", "\u03a3\u03c4\u03b1\u03b8\u03b5\u03c1\u03cc\u03c2 \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae\u03c2", "layout", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", "view", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae", "module", "\u0395\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "first_custom", _s16_304, "second_custom", _s18_160, "third_custom", _s16_305, "show_cost", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2", _s17_82, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", "show_cost_help", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03ba\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03ad\u03c1\u03b4\u03bf\u03c5\u03c2", _s21_59, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s26_21, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2, \u03b1\u03bb\u03bb\u03b9\u03ce\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", _s21_61, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_22, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2, \u03b1\u03bb\u03bb\u03b9\u03ce\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", _s21_63, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s26_23, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ad\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", _s16_136, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1", _s21_65, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", "one_tax_rate", "\u0388\u03bd\u03b1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "two_tax_rates", "\u0394\u03cd\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "three_tax_rates", "\u03a4\u03c1\u03af\u03b1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", _s16_138, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "user", "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2", "invoice_tax", "\u03a6\u03cc\u03c1\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "line_item_tax", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5 \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "inclusive_taxes", "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03a6\u03cc\u03c1\u03bf\u03b9", _s17_84, "\u03a6\u03cc\u03c1\u03bf\u03b9 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "item_tax_rates", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s18_68, _s24_82, "configure_rates", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd", _s18_69, "\u03a0\u03b1\u03c1\u03b1\u03bc\u03b5\u03c4\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a0\u03c5\u03bb\u03ce\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateways)", "tax_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a6\u03cc\u03c1\u03c9\u03bd", _s18_71, "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "accent_color", "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03a4\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd", "switch", "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", _s19_40, "\u039b\u03af\u03c3\u03c4\u03b1 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b7 \u03bc\u03b5 \u03ba\u03cc\u03bc\u03bc\u03b1\u03c4\u03b1", "options", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2", _s16_140, "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03bc\u03bf\u03bd\u03ae\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "multi_line_text", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd", "dropdown", "\u03a0\u03c4\u03c5\u03c3\u03ce\u03bc\u03b5\u03bd\u03bf", "field_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03b5\u03b4\u03af\u03bf\u03c5", _s27_35, "\u0388\u03bd\u03b1 email \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b5\u03af", "submit", "\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae", _s16_142, "\u0391\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2", "late_fees", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03a4\u03ad\u03bb\u03b7", "credit_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "payment_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "late_fee_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2 \u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7\u03c2 \u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2", _s16_143, "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2 \u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7\u03c2 \u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2", "schedule", "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03b9\u03c3\u03b5", "before_due_date", "\u03a0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "after_due_date", "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s18_73, "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "days", "\u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "invoice_email", "Email \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "payment_email", "Email \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "partial_payment", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "payment_partial", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s21_66, "Email \u039c\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "quote_email", "Email \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", _s16_145, _s18_159, _s16_147, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "administrator", "\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2", _s18_74, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2, \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03b6\u03b5\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "user_management", "\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03b7 \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "users", "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", "new_user", "\u039d\u03ad\u03bf\u03c2 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2", "edit_user", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "created_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "updated_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "archived_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "deleted_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "removed_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "restored_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "archived_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "deleted_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "removed_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "restored_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", _s16_149, "\u0393\u03b5\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "invoice_options", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_86, "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5 \u03a0\u03bf\u03c3\u03bf\u03cd", _s22_52, '\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc" \u03bc\u03cc\u03bd\u03bf \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03c3\u03c4\u03b1\u03c4\u03b9\u03ba\u03cc \u03cc\u03c4\u03b1\u03bd \u03bb\u03b7\u03c6\u03b8\u03b5\u03af \u03bc\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae.', _s23_26, "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", _s28_20, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 \u03c3\u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_151, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1\u03c2", _s16_152, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf\u03c5", "first_page", "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "all_pages", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "last_page", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "primary_font", "\u039a\u03cd\u03c1\u03b9\u03b1 \u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", "secondary_font", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03b5\u03cd\u03bf\u03c5\u03c3\u03b1 \u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", "primary_color", "\u039a\u03cd\u03c1\u03b9\u03bf \u03a7\u03c1\u03ce\u03bc\u03b1", "secondary_color", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03b5\u03cd\u03bf\u03bd \u03a7\u03c1\u03ce\u03bc\u03b1", "page_size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "font_size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u0393\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03c9\u03bd", "quote_design", "\u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "invoice_fields", "\u03a0\u03b5\u03b4\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "product_fields", "\u03a0\u03b5\u03b4\u03af\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "invoice_terms", "\u038c\u03c1\u03bf\u03b9 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "invoice_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "quote_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s18_75, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf Email", _s23_27, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03bc\u03b5 email \u03cc\u03c4\u03b1\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03bf\u03cd\u03bd.", _s18_76, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7", _s23_28, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd \u03cc\u03c4\u03b1\u03bd \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b1\u03c0\u03bf\u03cd\u03bd.", _s18_77, _s18_158, _s23_29, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c3\u03b5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03bc\u03cc\u03bb\u03b9\u03c2 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7.", _s17_88, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a1\u03bf\u03ae\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "freq_daily", "\u0397\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03bf", "freq_weekly", "\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", "freq_two_weeks", "\u0394\u03cd\u03bf \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b5\u03c2", "freq_four_weeks", "\u03a4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b9\u03c2 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b5\u03c2", "freq_monthly", "\u039c\u03ae\u03bd\u03b1\u03c2", "freq_two_months", "\u0394\u03cd\u03bf \u03bc\u03ae\u03bd\u03b5\u03c2", _s17_90, "\u03a4\u03c1\u03b5\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2", _s16_153, "\u03a4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2", "freq_six_months", "\u0388\u03be\u03b9 \u03bc\u03ae\u03bd\u03b5\u03c2", "freq_annually", "\u0388\u03c4\u03bf\u03c2", "freq_two_years", "\u0394\u03cd\u03bf \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1", _s16_154, "\u03a4\u03c1\u03af\u03b1 \u03a7\u03c1\u03cc\u03bd\u03b9\u03b1", "never", "\u03a0\u03bf\u03c4\u03ad", "company", "\u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", _s17_91, "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03bc\u03ad\u03bd\u03bf\u03b9 \u0391\u03c1\u03b9\u03b8\u03bc\u03bf\u03af", "charge_taxes", "\u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c9\u03bd", "next_reset", "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7", "reset_counter", "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae", _s16_155, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a0\u03c1\u03cc\u03b8\u03b5\u03bc\u03b1", "number_padding", "\u03a0\u03b5\u03c1\u03b9\u03b8\u03ce\u03c1\u03b9\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "general", "\u0393\u03b5\u03bd\u03b9\u03ba\u03cc\u03c2", "surcharge_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7\u03c2", "company_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "company_value", "\u0391\u03be\u03af\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03af\u03b1\u03c2", "credit_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "invoice_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_93, "\u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "client_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "product_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "payment_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "contact_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "vendor_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "expense_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "project_field", "\u03a0\u03b5\u03b4\u03af\u03bf Project", "task_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "group_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "number_counter", "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "prefix", "\u03a0\u03c1\u03cc\u03b8\u03b5\u03bc\u03b1", "number_pattern", "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "messages", "\u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03b1", "custom_css", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf CSS", _s17_95, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 JavaScript", _s16_157, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c3\u03c4\u03bf PDF", _s21_68, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03c3\u03c4\u03bf PDF \u03c4\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5/\u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2.", _s25_40, "\u039a\u03bf\u03c5\u03c4\u03ac\u03ba\u03b9 \u038c\u03c1\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s30_9, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03b8\u03b5\u03af \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s23_30, "\u039a\u03bf\u03c5\u03c4\u03ac\u03ba\u03b9 \u038c\u03c1\u03c9\u03bd \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s28_21, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03b8\u03b5\u03af \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s25_41, "\u03a5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s30_10, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5.", _s23_31, "\u03a5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s22_54, "\u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03bc\u03b5 \u039a\u03c9\u03b4\u03b9\u03ba\u03cc \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", _s27_36, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae. \u0391\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2, \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae \u03b8\u03b1 \u03c5\u03c0\u03bf\u03c7\u03c1\u03b5\u03bf\u03cd\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03b9 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c4\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd.", "authorization", "\u0395\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7", "subdomain", "\u03a5\u03c0\u03bf\u03c4\u03bf\u03bc\u03ad\u03b1\u03c2", "domain", "Domain", "portal_mode", "\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Portal", "email_signature", "\u039c\u03b5 \u03b5\u03ba\u03c4\u03af\u03bc\u03b7\u03c3\u03b7,", _s24_38, "\u039a\u03ac\u03bd\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf schema.org \u03c3\u03c4\u03b1 emails \u03c3\u03b1\u03c2.", "plain", "\u0391\u03c0\u03bb\u03cc", "light", "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc", "dark", "\u03a3\u03ba\u03bf\u03cd\u03c1\u03bf", "email_design", "\u03a3\u03c7\u03b5\u03b4\u03af\u03b1\u03c3\u03b7 Email", "attach_pdf", "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b5 PDF", _s16_158, "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b7 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "attach_ubl", "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b7 UBL", "email_style", "\u03a3\u03c4\u03c5\u03bb Email", _s19_42, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a3\u03b7\u03bc\u03b1\u03bd\u03c3\u03b7\u03c2", "reply_to_email", "Email \u0391\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7\u03c2", "reply_to_name", "Reply-To Name", "bcc_email", "Email \u03b9\u03b4\u03b9\u03b1\u03af\u03c4\u03b5\u03c1\u03b7\u03c2 \u03ba\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2", "processed", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03c3\u03b8\u03b7\u03ba\u03b5", "credit_card", "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u039a\u03ac\u03c1\u03c4\u03b1", "bank_transfer", "\u03a4\u03c1\u03b1\u03c0\u03b5\u03b6\u03b9\u03ba\u03cc \u0388\u03bc\u03b2\u03b1\u03c3\u03bc\u03b1", "priority", "\u03a0\u03c1\u03bf\u03c4\u03b5\u03c1\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1", "fee_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "fee_percent", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "fee_cap", "\u0391\u03bd\u03ce\u03c4\u03b1\u03c4\u03bf \u038c\u03c1\u03b9\u03bf \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "limits_and_fees", "\u038c\u03c1\u03b9\u03b1/\u03a4\u03ad\u03bb\u03b7", "enable_min", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c5", "enable_max", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c5", "min_limit", "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf: :min", "max_limit", "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf: :max", "min", "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf", "max", "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf", _s19_43, "\u039b\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03b1 \u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ce\u03bd \u039a\u03b1\u03c1\u03c4\u03ce\u03bd", "credentials", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5", "update_address", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2", _s19_45, "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bc\u03b5 \u03c4\u03b1 \u03c0\u03b1\u03c1\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1", "rate", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "tax_rate", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "new_tax_rate", "\u039d\u03ad\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "edit_tax_rate", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_160, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_161, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_98, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_162, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_99, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s18_78, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_100, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", _s18_79, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", "fill_products", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c3\u03c5\u03bc\u03c0\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s18_80, "\u0395\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b8\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03be\u03af\u03b1", "update_products", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s20_65, "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b8\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af \u03ba\u03b1\u03b9 \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s16_163, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03a4\u03b9\u03bc\u03ce\u03bd \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s21_69, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b9\u03bc\u03ce\u03bd \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c4\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "fees", "\u03a4\u03ad\u03bb\u03b7", "limits", "\u038c\u03c1\u03b9\u03b1", "provider", "Provider", "company_gateway", "\u03a0\u03cd\u03bb\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s16_165, "\u03a0\u03cd\u03bb\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateways)", _s19_46, "\u039d\u03ad\u03b1 \u03a0\u03cd\u03bb\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", _s20_66, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_32, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_33, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s24_39, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_34, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s24_40, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s25_43, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s24_41, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s25_44, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s16_167, "\u03a3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "discard_changes", "\u0391\u03c0\u03cc\u03c1\u03c1\u03b9\u03c8\u03b7 \u0391\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd", "default_value", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03b9\u03bc\u03ae", "disabled", "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf", "currency_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2", _s21_70, "\u03a0\u03c1\u03ce\u03c4\u03b7 \u039c\u03ad\u03c1\u03b1 \u03c4\u03b7\u03c2 \u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2", _s23_35, "\u03a0\u03c1\u03ce\u03c4\u03bf\u03c2 \u039c\u03ae\u03bd\u03b1\u03c2 \u03c4\u03bf\u03c5 \u0388\u03c4\u03bf\u03c5\u03c2", "sunday", "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", "monday", "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", "tuesday", "\u03a4\u03c1\u03af\u03c4\u03b7", "wednesday", "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", "thursday", "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", "friday", "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", "saturday", "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf", "january", "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "february", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "march", "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", "april", "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", "may", "\u039c\u03ac\u03b9\u03bf\u03c2", "june", "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", "july", "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", "august", "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", "september", "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "october", "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", "november", "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "december", "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "symbol", "\u03a3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf", "ocde", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2", "date_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2", "datetime_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2/\u038f\u03c1\u03b1\u03c2", "military_time", _s19_103, _s18_81, _s19_103, "send_reminders", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "timezone", "\u0396\u03ce\u03bd\u03b7 \u03ce\u03c1\u03b1\u03c2", _s19_47, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac Project", _s17_101, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", _s19_49, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s18_82, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s18_84, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "group_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0393\u03c1\u03bf\u03c5\u03c0", "group", "\u039f\u03bc\u03ac\u03b4\u03b1", "groups", "\u0393\u03c1\u03bf\u03c5\u03c0", "new_group", "\u039d\u03ad\u03bf \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "edit_group", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "created_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "updated_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "archived_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "deleted_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "restored_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "archived_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "deleted_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "restored_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "upload_logo", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039b\u03bf\u03b3\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5", "uploaded_logo", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5", "logo", "\u039b\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03bf", "saved_settings", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", _s16_169, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "device_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2", "defaults", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2", "basic_settings", "\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", _s17_103, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2", "company_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "user_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "localization", "\u03a4\u03bf\u03c0\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "online_payments", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2 Online", "tax_rates", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "notifications", "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", "import_export", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae | \u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae", "custom_fields", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b1 \u03a0\u03b5\u03b4\u03af\u03b1", "invoice_design", "\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "buy_now_buttons", "\u039a\u03bf\u03c5\u03bc\u03c0\u03b9\u03ac \u0391\u03b3\u03bf\u03c1\u03ac \u03a4\u03ce\u03c1\u03b1", "email_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 Email", _s23_37, "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 & \u03a5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", _s22_55, "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u039a\u03ac\u03c1\u03c4\u03b5\u03c2 & \u03a4\u03c1\u03ac\u03c0\u03b5\u03b6\u03b5\u03c2", _s19_51, "\u0391\u03c0\u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03c3\u03b5\u03b9\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "price", "\u03a4\u03b9\u03bc\u03ae", "email_sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03ad\u03c3\u03c9 Email", "google_sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03ad\u03c3\u03c9 Google", _s27_40, "\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03b3\u03bf\u03c1\u03ac \u03c3\u03b1\u03c2!", "redeem", "\u0395\u03be\u03b1\u03c1\u03b3\u03cd\u03c1\u03c9\u03c3\u03b5", "back", "\u03a0\u03af\u03c3\u03c9", "past_purchases", "\u03a0\u03b1\u03c1\u03b5\u03bb\u03b8\u03cc\u03bd\u03c4\u03b5\u03c2 \u0391\u03b3\u03bf\u03c1\u03ad\u03c2", _s19_53, "\u0395\u03c4\u03b7\u0384\u03c3\u03b9\u03b1 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae", "pro_plan", "\u0395\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03bd\u03bf", "enterprise_plan", "\u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03bd\u03bf", "count_users", ":count \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", "upgrade", "\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7", _s25_45, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03ba\u03c1\u03cc \u03cc\u03bd\u03bf\u03bc\u03b1", _s24_42, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b5\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf", _s33_21, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03c5\u03bc\u03c6\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc.", "i_agree_to_the", "\u03a3\u03c5\u03bc\u03c6\u03c9\u03bd\u03ce \u03bc\u03b5 \u03c4\u03bf", _s16_171, "\u038c\u03c1\u03bf\u03b9 \u03c4\u03b7\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1\u03c2", "privacy_policy", "\u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u0391\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5", "sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae", "account_login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c3\u03c4\u03bf \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc", "view_website", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "create_account", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "email_login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03b5 Email", "create_new", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u039d\u03ad\u03bf\u03c5", _s18_86, "\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af \u03c0\u03b5\u03b4\u03af\u03b1.", _s21_73, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03ce\u03c3\u03c4\u03b5 \u03ae \u03b1\u03ba\u03c5\u03c1\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2.", "download", "\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1", _s27_41, "\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03ad\u03bd\u03b1 \u03b5\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03ac\u03bd\u03bf", "take_picture", "\u039b\u03ae\u03c8\u03b7 \u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1\u03c2", "upload_file", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", "document", "\u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "documents", "\u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", "new_document", "\u039d\u03ad\u03bf \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "edit_document", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", _s17_105, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s16_173, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s17_106, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s16_174, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s17_107, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s18_88, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", _s17_108, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", _s18_89, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "no_history", "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "expense_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "pending", "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae\u03c2", _s16_175, "\u039a\u03b1\u03c4\u03b1\u03b3\u03b5\u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf", _s16_176, "\u03a3\u03b5 \u03b1\u03bd\u03b1\u03bc\u03bf\u03bd\u03ae", _s16_177, "\u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03bf", "converted", "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03ac\u03c0\u03b7\u03ba\u03b5", _s24_44, "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1 \u03c3\u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "exchange_rate", "\u0399\u03c3\u03bf\u03c4\u03b9\u03bc\u03af\u03b1 \u0391\u03bd\u03c4\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s16_178, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03bd\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2", "mark_paid", "\u038c\u03c1\u03b9\u03c3\u03b5 \u03c9\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1", "category", "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1", "address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7", "new_vendor", "\u039d\u03ad\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2", "created_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "updated_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "archived_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "deleted_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "restored_vendor", "\u039f \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 \u03b1\u03bd\u03b1\u03ba\u03c4\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1", _s16_179, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "deleted_vendors", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", _s16_180, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "new_expense", "\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "created_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "updated_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_181, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "deleted_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_182, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s17_109, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s16_183, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s17_110, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", "copy_shipping", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "copy_billing", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "design", "\u03a3\u03c7\u03b5\u03b4\u03af\u03b1\u03c3\u03b7", _s21_74, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03b1\u03bd\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "invoiced", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03b1", "logged", "\u0395\u03b9\u03c3\u03b7\u03b3\u03bc\u03ad\u03bd\u03bf", "running", "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9", "resume", "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5", "task_errors", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03c4\u03b5 \u03c4\u03c5\u03c7\u03cc\u03bd \u03b5\u03c0\u03b9\u03ba\u03b1\u03bb\u03c5\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03ce\u03c1\u03b5\u03c2", "start", "\u0388\u03bd\u03b1\u03c1\u03be\u03b7", "stop", "\u039b\u03ae\u03be\u03b7", "started_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "stopped_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "resumed_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "now", "\u03a4\u03ce\u03c1\u03b1", _s16_184, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "timer", "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2", "manual", "\u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03bf", "budgeted", "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf", "start_time", "\u038f\u03c1\u03b1 \u0388\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", "end_time", "\u038f\u03c1\u03b1 \u039b\u03ae\u03be\u03b7\u03c2", "date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", "times", "\u03a6\u03bf\u03c1\u03ad\u03c2", "duration", "\u0394\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1", "new_task", "\u039d\u03ad\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "created_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "updated_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "archived_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "deleted_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "restored_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "archived_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "deleted_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "restored_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", _s19_55, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03cc\u03bd\u03bf\u03bc\u03b1", "budgeted_hours", "\u03a7\u03c1\u03b5\u03ce\u03c3\u03b9\u03bc\u03b5\u03c2 \u038f\u03c1\u03b5\u03c2", "created_project", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 project", "updated_project", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 project", _s16_186, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 project", "deleted_project", _s25_75, _s16_187, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 project", _s17_111, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count projects", _s16_188, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count projects", _s17_112, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value projects", "new_project", "\u039d\u03ad\u03bf Project", _s27_45, "\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03b1\u03c2!", "if_you_like_it", "\u0395\u03ac\u03bd \u03c3\u03b1\u03c2 \u03b1\u03c1\u03ad\u03c3\u03b5\u03b9 \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5", "click_here", "\u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce", _s18_90, "\u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce", "to_rate_it", "\u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03be\u03b9\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5.", "average", "\u039c\u03ad\u03c3\u03bf\u03c2 \u03cc\u03c1\u03bf\u03c2", "unapproved", "\u039c\u03b7 \u03b5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7", _s30_15, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7", "locked", "\u039a\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b7", "authenticate", "\u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5", _s19_57, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5", _s24_46, "\u0392\u03b9\u03bf\u03bc\u03b5\u03c4\u03c1\u03b9\u03ba\u03b7 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf", "compare", "\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03bd\u03b5", "hosted_login", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03c6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "selfhost_login", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03b1\u03c5\u03c4\u03bf-\u03c6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "google_sign_in", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03ad\u03c3\u03c9 Google", "today", "\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1", "custom_range", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03cd\u03c1\u03bf\u03c2", "date_range", "\u0395\u03cd\u03c1\u03bf\u03c2 \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03b9\u03ce\u03bd", "current", "\u03a4\u03c9\u03c1\u03b9\u03bd\u03ae", "previous", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7", "current_period", "\u03a4\u03c9\u03c1\u03b9\u03bd\u03ae \u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", _s17_113, "\u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2 \u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7\u03c2", "previous_period", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", "previous_year", _s19_104, "compare_to", "\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7 \u03bc\u03b5", "last7_days", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 7 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2", "last_week", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", "last30_days", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 30 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "this_month", "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u039c\u03ae\u03bd\u03b1\u03c2", "last_month", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u039c\u03ae\u03bd\u03b1\u03c2", "this_year", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03a7\u03c1\u03cc\u03bd\u03bf\u03c2", "last_year", _s19_104, "custom", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf", _s16_189, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "clone_to_quote", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "clone_to_credit", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "view_invoice", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "convert", "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", "more", "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1", "edit_client", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "edit_product", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "edit_invoice", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "edit_quote", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "edit_payment", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "edit_task", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "edit_expense", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "edit_vendor", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "edit_project", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 Project", _s20_68, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "billing_address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2", _s16_191, "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "total_revenue", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ac \u0388\u03c3\u03bf\u03b4\u03b1", "average_invoice", "\u039c\u03ad\u03c3\u03bf\u03c2 \u038c\u03c1\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "outstanding", "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae", "invoices_sent", ":count \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b1\u03bd", "active_clients", "\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03af \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2", "close", "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf", "email", "Email", "password", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "url", "URL", "secret", "\u039a\u03c1\u03c5\u03c6\u03cc", "name", "\u0395\u03c0\u03c9\u03bd\u03c5\u03bc\u03af\u03b1", "logout", "\u0391\u03c0\u03bf\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7", "login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2", "filter", "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf", "sort", "\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7", "search", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "active", "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2", "archived", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf", "deleted", "\u0394\u03b9\u03b5\u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf", "dashboard", "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5", "archive", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7", "delete", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", "restore", "\u0391\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7", _s16_193, "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s23_38, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf email \u03c3\u03b1\u03c2", _s26_32, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2", _s21_77, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf URL \u03c3\u03b1\u03c2", _s26_34, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ba\u03bb\u03b5\u03b9\u03b4\u03af \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2 \u03c3\u03b1\u03c2", "ascending", "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1 \u03c3\u03b5\u03b9\u03c1\u03ac", "descending", "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1 \u03c3\u03b5\u03b9\u03c1\u03ac", "save", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", _s17_115, "\u0395\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1.", "paid_to_date", "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc", "balance_due", "\u039f\u03bb\u03b9\u03ba\u03cc \u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "balance", "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", "overview", "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1", "phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf", "website", "\u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "vat_number", "\u0391\u03a6\u039c", "id_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 ID", "create", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1", _s19_59, "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03c4\u03b7\u03ba\u03b5 :value \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf", "error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1", _s16_195, "\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7", "contacts", "\u0395\u03c0\u03b1\u03c6\u03ad\u03c2", "additional", "\u0395\u03c0\u03b9\u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf", "first_name", "\u038c\u03bd\u03bf\u03bc\u03b1", "last_name", "\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf", "add_contact", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "are_you_sure", "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9;", "cancel", "\u0386\u03ba\u03c5\u03c1\u03bf", "ok", "Ok", "remove", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", _s16_197, "\u03a4\u03bf Email \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", "product", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "products", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1", "new_product", "\u039d\u03ad\u03bf \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "created_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "updated_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s16_199, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "deleted_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s16_200, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s17_117, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s16_201, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s17_118, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "product_key", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "notes", "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "cost", "\u039a\u03cc\u03c3\u03c4\u03bf\u03c2", "client", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2", "clients", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2", "new_client", "\u039d\u03ad\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2", "created_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "updated_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "archived_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_202, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "deleted_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "deleted_clients", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "restored_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_203, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "address1", "\u039f\u03b4\u03cc\u03c2", "address2", "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1", "city", "\u03a0\u03cc\u03bb\u03b7", "state", "\u039d\u03bf\u03bc\u03cc\u03c2", "postal_code", "\u03a4\u03b1\u03c7. \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", "country", "\u03a7\u03ce\u03c1\u03b1", "invoice", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "invoices", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", "new_invoice", "\u039d\u03ad\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "created_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "updated_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_204, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "deleted_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_205, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_119, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s16_206, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s17_120, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "emailed_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "emailed_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 Email", "amount", "\u03a0\u03bf\u03c3\u03cc", "invoice_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "invoice_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "discount", "\u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7", "po_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03b1\u03c1\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03b1\u03c2", "terms", "\u038c\u03c1\u03bf\u03b9", "public_notes", "\u0394\u03b7\u03bc\u03cc\u03c3\u03b9\u03b5\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "private_notes", "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ad\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "frequency", "\u03a3\u03c5\u03c7\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "start_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u0388\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", "end_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u039b\u03ae\u03be\u03b7\u03c2", "quote_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2", "quote_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", "valid_until", "\u0388\u03b3\u03ba\u03c5\u03c1\u03bf \u0388\u03c9\u03c2", "items", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1", "partial_deposit", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc/\u039a\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7", "description", "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", "unit_cost", "\u03a4\u03b9\u03bc\u03ae \u039c\u03bf\u03bd\u03ac\u03b4\u03b1\u03c2", "quantity", "\u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1", "add_item", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "contact", "\u0395\u03c0\u03b1\u03c6\u03ae", "work_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf", "total_amount", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03cc \u03a0\u03bf\u03c3\u03cc", "pdf", "PDF", "due_date", _s22_115, _s16_207, "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u039c\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", _s17_121, "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s22_56, "\u03a0\u03b9\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf + \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s22_58, "\u03a0\u03b9\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf + \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c7\u03c1\u03cc\u03bd\u03bf", "count_selected", ":count \u03b5\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5", "total", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "percent", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "edit", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "dismiss", "\u0391\u03c0\u03ad\u03c1\u03c1\u03b9\u03c8\u03b5", _s20_70, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", _s22_59, _s24_82, _s24_48, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "task_rate", "\u039a\u03cc\u03c3\u03c4\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "language", "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1", "currency", "\u039d\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1", "created_at", "\u0397\u03bc/\u03bd\u03af\u03b1 \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2", "created_on", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2", "updated_at", "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", "tax", "\u03a6\u03cc\u03c1\u03bf\u03c2", _s30_17, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_49, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "past_due", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1", "draft", "\u03a0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf", "sent", "\u0391\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1", "viewed", "\u0395\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1", "approved", "\u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", "partial", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc/\u039a\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7", "paid", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1", "mark_sent", "\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c9\u03c2 \u0391\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", _s22_61, _s42_19, _s22_62, _s42_19, _s23_40, _s42_20, _s23_41, _s42_20, "done", "\u0388\u03c4\u03bf\u03b9\u03bc\u03bf", _s37_18, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03ae \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03bc\u03af\u03b1\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "dark_mode", "\u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc \u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd", _s27_51, "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", "refresh_data", "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "blank_contact", "\u039a\u03b5\u03bd\u03ae \u0395\u03c0\u03b1\u03c6\u03ae", "activity", "\u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1", _s16_209, "\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "clone", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "loading", "\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7", "industry", "\u0392\u03b9\u03bf\u03bc\u03b7\u03c7\u03b1\u03bd\u03af\u03b1", "size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2", "payment_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_211, "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae\u03c2", _s16_212, "\u03a3\u03b5 \u03bb\u03ae\u03be\u03b7", _s16_213, "\u0391\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5", _s16_214, "\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s16_215, "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s16_216, _s18_161, _s17_122, "\u0391\u03bd\u03b5\u03c6\u03ac\u03c1\u03bc\u03bf\u03c3\u03c4\u03bf", _s17_123, _s19_23, "net", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc", "client_portal", "Portal \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "show_tasks", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "email_reminders", "Email \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "enabled", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "recipients", "\u03a0\u03b1\u03c1\u03b1\u03bb\u03ae\u03c0\u03c4\u03b5\u03c2", "initial_email", "\u0391\u03c1\u03c7\u03b9\u03ba\u03cc Email", "first_reminder", _s16_306, "second_reminder", _s18_162, "third_reminder", _s16_307, "reminder1", _s16_306, "reminder2", _s18_162, "reminder3", _s16_307, "template", "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf", "send", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae", "subject", "\u0398\u03ad\u03bc\u03b1", "body", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf", "send_email", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae Email", "email_receipt", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b1\u03c0\u03cc\u03b4\u03b5\u03b9\u03be\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "auto_billing", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7", "button", "\u039a\u03bf\u03c5\u03bc\u03c0\u03af", "preview", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "customize", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "history", "\u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "payment", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "payments", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "refunded", _s18_161, "payment_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_79, _s18_163, "enter_payment", "\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "new_payment", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "created_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "updated_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_217, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "deleted_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_218, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_124, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s16_219, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s17_125, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "quote", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "quotes", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "new_quote", "\u039d\u03ad\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "created_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "updated_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "archived_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "deleted_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "restored_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "archived_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "deleted_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "restored_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "expense", "\u0394\u03b1\u03c0\u03ac\u03bd\u03b7", "expenses", "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", "vendor", "\u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2", "vendors", "\u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2", "task", "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "tasks", "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "project", "Project", "projects", "Projects", "activity_1", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_2", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_3", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_4", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_5", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_6", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_7", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b5\u03af\u03b4\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_8", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_9", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_10", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae \u03c0\u03bf\u03c3\u03bf\u03cd :payment_amount \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_11", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_12", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_13", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_14", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_15", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_16", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_17", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_18", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_19", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_20", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_21", _s41_13, "activity_22", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_23", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_24", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_25", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_26", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_27", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_28", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_29", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b1\u03c0\u03bf\u03b4\u03ad\u03c7\u03c4\u03b7\u03ba\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_30", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_31", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_32", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_33", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_34", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_35", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_36", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_37", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_39", ":user \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b5 :payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 :payment", "activity_40", ":user \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 :adjustment \u03bc\u03b9\u03b1\u03c2 :payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 :payment", "activity_41", ":payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (:payment) \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5", "activity_42", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_43", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_44", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_45", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_46", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_47", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03b1\u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_55", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b5 \u03c3\u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_56", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03af\u03b4\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_57", "\u03a4\u03bf \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03bd\u03b1 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03bc\u03b5 email \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_58", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03bd\u03c4\u03af\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_59", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_60", _s41_13, "activity_61", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_62", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_63", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c0\u03c1\u03ce\u03c4\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_64", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_65", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03c1\u03af\u03c4\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_66", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03b1\u03c4\u03ad\u03c1\u03bc\u03bf\u03bd\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03bc\u03af\u03b1\u03c2 \u03a6\u03bf\u03c1\u03ac\u03c2", "emailed_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "emailed_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 email", _s20_72, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b7", _s21_81, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b7", "expired", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1", "all", "\u038c\u03bb\u03b1", "select", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", _s22_63, "\u03a0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bc\u03b5 \u03a0\u03b1\u03c1\u03b1\u03c4\u03b5\u03c4\u03b1\u03bc\u03ad\u03bd\u03b7 \u03c0\u03af\u03b5\u03c3\u03b7", "custom_value1", _s18_164, "custom_value2", _s18_164, "custom_value3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae 3", "custom_value4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae 4", _s18_91, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a3\u03c4\u03c5\u03bb Email", _s24_53, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1 \u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7\u03c2", _s29_36, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u0391\u03bd\u03b5\u03be\u03cc\u03c6\u03bb\u03b7\u03c4\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_56, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s31_18, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u039c\u03b7 \u0395\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "lock_invoices", "\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03bc\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "translations", "\u039c\u03b5\u03c4\u03b1\u03c6\u03c1\u03ac\u03c3\u03b5\u03b9\u03c2", _s19_60, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_62, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_65, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s22_67, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s21_82, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", _s21_84, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", _s21_86, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1\u03c2", _s21_88, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1\u03c2", _s22_69, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_71, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2\xa0\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_73, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s22_75, "\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s20_73, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s20_75, "\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s21_90, "\u039c\u03bf\u03bd\u03c4\u03ad\u03bb\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd", _s21_92, _s27_80, _s21_94, "\u039c\u03bf\u03bd\u03c4\u03ad\u03bb\u03bf \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd", _s21_95, _s27_80, _s18_93, "\u039c\u03b7\u03b4\u03b5\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2 \u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2", "counter_padding", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03b1\u03b8\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2", _s28_56, "\u039a\u03bf\u03b9\u03bd\u03cc\u03c7\u03c1\u03b7\u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03b1\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s18_95, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 1", _s18_97, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 1", _s18_99, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 2", _s18_101, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 2", _s18_103, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 3", _s18_105, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 3", _s21_96, "\u0398\u03ad\u03bc\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03bc\u03b5 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf", _s19_64, "\u0398\u03ad\u03bc\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5", _s21_98, "\u0398\u03ad\u03bc\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf", _s29_38, "\u0398\u03ad\u03bc\u03b1 Email \u03bc\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "show_table", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1", "show_list", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039b\u03af\u03c3\u03c4\u03b1\u03c2", "client_city", "\u03a0\u03cc\u03bb\u03b7 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_state", "\u039a\u03c1\u03ac\u03c4\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_country", "\u03a7\u03ce\u03c1\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_220, "\u039f \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2", "client_balance", "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf \u03a0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "client_address1", "\u039f\u03b4\u03cc\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_address2", "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, "\u039f\u03b4\u03cc\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s24_56, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "type", "\u03a4\u03cd\u03c0\u03bf\u03c2", "invoice_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_224, _s22_115, "tax_rate1", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 1", "tax_rate2", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 2", "tax_rate3", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 3", "auto_bill", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7", "archived_at", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2", "has_expenses", "\u0395\u03c7\u03b5\u03b9 \u03ad\u03be\u03bf\u03b4\u03b1", "custom_taxes1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 1", "custom_taxes2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 2", "custom_taxes3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 3", "custom_taxes4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 4", _s17_128, _s26_61, _s17_129, _s26_62, _s17_130, _s26_63, _s17_131, _s26_64, "is_deleted", "\u0395\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af", "vendor_city", "\u03a0\u03cc\u03bb\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "vendor_state", "\u039a\u03c1\u03ac\u03c4\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "vendor_country", "\u03a7\u03ce\u03c1\u03b1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "is_approved", "\u0395\u03af\u03bd\u03b1\u03b9 \u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", "tax_name", "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5", "tax_amount", "\u03a0\u03bf\u03c3\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "tax_paid", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a6\u03cc\u03c1\u03bf\u03c2", "payment_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "age", "\u0397\u03bb\u03b9\u03ba\u03af\u03b1", "is_running", "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9", "time_log", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5", "bank_id", "\u03a4\u03c1\u03ac\u03c0\u03b5\u03b6\u03b1", _s19_66, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_225, "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s19_68, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "tax_name1", "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5 1", "tax_name2", _s16_308, "tax_name3", _s16_308, "transaction_id", _s18_163, _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "he", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u05de\u05e2\u05de\u05d3", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u05d4\u05d5\u05e1\u05e4\u05ea Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u05d4\u05d5\u05e1\u05e4\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea: \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s17_6, _s17_7, "week", "\u05e9\u05d1\u05d5\u05e2", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u05de\u05d8\u05d1\u05e2 \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "range", "\u05d8\u05d5\u05d5\u05d7", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u05e6\u05d5\u05e8 \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "\u05d4\u05e2\u05de\u05dc\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :amount \u05ea\u05d4\u05d9\u05d4 :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u05d0\u05d9\u05e9\u05d5\u05e8", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "\u05d9\u05ea\u05e8\u05d4", "invoice_paid", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05d5\u05dc\u05de\u05d4", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, "\u05d4\u05e6\u05d2 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4 \u05e9\u05dc PDF \u05d1\u05e2\u05ea \u05e2\u05e8\u05d9\u05db\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, "\u05e1\u05db\u05d5\u05dd \u05d4\u05d6\u05d9\u05db\u05d5\u05d9 \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8 \u05de\u05e1\u05db\u05d5\u05dd \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u05d4\u05d2\u05d3\u05e8\u05ea \u05e1\u05d9\u05e1\u05de\u05d0", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "\u05d4\u05d5\u05e1\u05e3 \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "\u05d9\u05e9 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u05e6\u05e4\u05d4 \u05d1\u05d4\u05d5\u05e6\u05d0\u05d4 # :expense", "view_statement", "\u05e6\u05e4\u05d4 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u05de\u05e2\u05e8\u05db\u05ea", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, "\u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d7\u05d9\u05d9\u05d1\u05d5\u05ea \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e9\u05d5\u05d9\u05db\u05d5\u05ea \u05db\u05d5\u05dc\u05dd \u05dc\u05d0\u05d5\u05ea\u05d5 \u05dc\u05e7\u05d5\u05d7", _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, '\u05e9\u05dc\u05d7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d3\u05d5\u05d0"\u05dc', _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", _s18_13, "\u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05d5\u05ea", _s21_16, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4", _s22_24, "\u05e2\u05e8\u05d5\u05da \u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", _s25_2, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_3, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s26_2, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_4, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_5, _s38_2, _s26_3, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "\u05e0\u05d8\u05d5", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05d5\u05e6\u05d2\u05d5\u05ea \u05d1\u05e4\u05d5\u05e8\u05d8\u05dc", "uninvoiced", "\u05dc\u05dc\u05d0 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u05d9\u05d1\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, "\u05d4\u05e6\u05d2 \u05d0\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05e1\u05d9\u05d5\u05dd \u05de\u05e9\u05d9\u05de\u05d5\u05ea", _s23_10, "\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05e1\u05d9\u05d5\u05dd \u05de\u05e9\u05d9\u05de\u05d4", "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05d5\u05e6\u05e8\u05d4", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "\u05e4\u05e8\u05d9\u05d8 \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "quote_item", "Quote Item", _s18_21, "\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", _s17_17, "\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", "order", "Order", "unassigned", "\u05dc\u05d0 \u05de\u05d5\u05e7\u05e6\u05d4", "partial_value", "\u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05de\u05d0\u05e4\u05e1 \u05d5\u05e7\u05d8\u05df \u05de\u05d4\u05de\u05e1\u05e4\u05e8 \u05d4\u05e1\u05d5\u05e4\u05d9", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u05d0\u05e4\u05e9\u05e8", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05ea\u05ea-\u05d4\u05d3\u05d5\u05de\u05d9\u05d9\u05df \u05d0\u05d5 \u05d4\u05e6\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, "\u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, "\u05de\u05d5\u05e0\u05d4 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea/\u05d0\u05e9\u05e8\u05d0\u05d9 \u05de\u05e9\u05d5\u05ea\u05e3", "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, "\u05d0\u05e4\u05e9\u05e8 \u05d0\u05d9\u05de\u05d9\u05d9\u05dc\u05d9\u05dd, \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05d7\u05d5\u05d6\u05e8\u05d5\u05ea \u05d5\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea", _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u05e9\u05dc\u05d7 \u05de\u05d7\u05d3\u05e9 \u05d4\u05d6\u05de\u05e0\u05d4", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u05e1\u05db\u05d5\u05dd \u05d4\u05d7\u05d6\u05e8", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "\u05e8\u05d1\u05e2\u05d5\u05df \u05e7\u05d5\u05d3\u05dd", "to_update_run", "To update run", _s18_33, "\u05dc\u05d4\u05de\u05d9\u05e8 \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", _s16_52, _s16_53, "invoice_project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "invoice_task", "\u05de\u05e9\u05d9\u05de\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "invoice_expense", "\u05e9\u05dc\u05d7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e2\u05dc \u05d4\u05d5\u05e6\u05d0\u05d4", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, "\u05d4\u05de\u05e8 \u05e1\u05db\u05d5\u05dd", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u05de\u05e1\u05de\u05db\u05d9 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u05d4\u05e1\u05ea\u05e8", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea", "recent_tasks", "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u05d8\u05d5\u05e8", "sample", "\u05d3\u05d2\u05d9\u05de\u05d4", "map_to", "Map To", "import", "\u05d9\u05d9\u05d1\u05d0", _s25_15, _s29_6, "select_file", "\u05d1\u05d7\u05e8 \u05e7\u05d5\u05d1\u05e5 \u05d1\u05d1\u05e7\u05e9\u05d4", _s16_60, _s16_61, "csv_file", "\u05e7\u05d5\u05d1\u05e5 CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u05dc\u05d0 \u05e9\u05d5\u05dc\u05dd", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05e9\u05dc\u05d7\u05d5 \u05e0\u05e2\u05d5\u05dc\u05d5\u05ea", _s24_25, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05e9\u05d5\u05dc\u05de\u05d5 \u05e0\u05e2\u05d5\u05dc\u05d5\u05ea", "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d0\u05d9\u05d7\u05d5\u05e8", "quote_expired", "Quote Expired", "partial_due", "\u05de\u05d5\u05e2\u05d3 \u05dc\u05ea\u05e9\u05dc\u05d5\u05dd \u05d7\u05dc\u05e7\u05d9", "invoice_total", '\u05e1\u05d4"\u05db \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea', "quote_total", '\u05e1\u05d4"\u05db \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8', "credit_total", '\u05e1\u05d4"\u05db \u05d6\u05d9\u05db\u05d5\u05d9', _s23_14, '\u05e1\u05d4"\u05db \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea', "actions", "Actions", "expense_number", "Expense Number", "task_number", "\u05de\u05e1\u05e4\u05e8 \u05de\u05e9\u05d9\u05de\u05d4", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u05d0\u05d6\u05d4\u05e8\u05d4", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d0\u05d5\u05d7\u05e8\u05ea", "expired_quote", "Expired Quote", "remind_invoice", "\u05ea\u05d6\u05db\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "cvv", "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d5\u05d3\u05d9", "client_name", "\u05e9\u05dd \u05d4\u05dc\u05e7\u05d5\u05d7", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05dc\u05de\u05e9\u05d9\u05de\u05d5\u05ea", "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "\u05e1\u05d8\u05d8\u05d5\u05e1\u05d9 \u05de\u05e9\u05d9\u05de\u05d4", "new_task_status", "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05d7\u05d3\u05e9", _s16_62, "\u05e2\u05e8\u05d5\u05da \u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4", _s19_26, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s19_27, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s20_32, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s19_28, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s19_29, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05d5\u05e1\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s20_33, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, "\u05d7\u05e4\u05e9 \u05e1\u05d8\u05d8\u05d5\u05e1 \u05de\u05e9\u05d9\u05de\u05d4 1", _s20_35, "\u05d7\u05e4\u05e9 :count \u05e1\u05d8\u05d8\u05d5\u05e1\u05d9 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", _s16_64, "\u05d4\u05e6\u05d2 \u05d8\u05d1\u05dc\u05ea \u05de\u05e9\u05d9\u05de\u05d5\u05ea", _s21_38, "\u05d4\u05e6\u05d2 \u05ea\u05de\u05d9\u05d3 \u05d0\u05ea \u05de\u05e7\u05d8\u05e2 \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d1\u05e2\u05ea \u05d9\u05e6\u05d9\u05e8\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", _s20_36, "\u05d9\u05d5\u05de\u05df \u05d6\u05de\u05df \u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s25_16, "\u05d4\u05d5\u05e1\u05e3 \u05e4\u05e8\u05d8\u05d9 \u05e9\u05e2\u05d4 \u05dc\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e9\u05d3\u05d5\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s20_38, "\u05ea\u05d0\u05e8\u05d9\u05da \u05d9\u05d5\u05de\u05df \u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s25_17, "\u05d4\u05d5\u05e1\u05e3 \u05e4\u05e8\u05d8\u05d9 \u05ea\u05d0\u05e8\u05d9\u05da \u05dc\u05e4\u05e8\u05d9\u05d8\u05d9 \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s21_39, "\u05d4\u05ea\u05d7\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05dc\u05e4\u05e0\u05d9 \u05d4\u05e9\u05de\u05d9\u05e8\u05d4", _s18_38, _s18_39, "task_settings", "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05e9\u05d9\u05de\u05d4", _s20_40, _s20_41, _s18_40, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea", _s20_42, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d4", _s21_40, _s21_41, _s24_28, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s24_29, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_19, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d5\u05e2\u05d1\u05e8\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s24_30, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s24_31, _s37_7, _s25_20, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "\u05e6\u05e8\u05d9\u05da \u05dc\u05ea\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s23_16, "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05dc\u05d4\u05d9\u05e9\u05dc\u05d7 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_24, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d4\u05ea\u05d7\u05d9\u05dc\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_25, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d4\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u05e1\u05de\u05df \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", _s18_45, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d7\u05d5\u05d6\u05e8\u05ea", _s21_47, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4", _s22_37, "\u05e2\u05e8\u05d5\u05da \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", _s25_26, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_27, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s26_11, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d4\u05d5\u05e2\u05d1\u05e8\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_28, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s25_29, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05d4\u05d5\u05e1\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s26_12, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s27_23, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05d5\u05ea \u05e0\u05e9\u05dc\u05d7\u05d5 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :value invoices", _s26_13, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05d5\u05ea \u05e0\u05de\u05d7\u05e7\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :value invoices", _s27_24, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05d5\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :value invoices", _s24_32, "\u05d7\u05e4\u05e9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea 1", _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "\u05e8\u05d5\u05d5\u05d7", "line_item", "\u05e1\u05d3\u05e8 \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "\u05d4\u05e6\u05d2 \u05e4\u05d5\u05e8\u05d8\u05dc", "copy_link", "Copy Link", "token_billing", "\u05e9\u05de\u05d9\u05e8\u05ea \u05e4\u05e8\u05d8\u05d9 \u05db\u05e8\u05d8\u05d9\u05e1", _s24_34, _s24_35, "always", "\u05ea\u05de\u05d9\u05d3", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, '\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05e9\u05dc\u05d7\u05d4 \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4', "emailed_quotes", '\u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8 \u05e0\u05e9\u05dc\u05d7\u05d4 \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d1\u05d4\u05e6\u05da\u05d7\u05d4', "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u05e9\u05e2\u05d5\u05ea", "statement", "\u05d7\u05e9\u05d1\u05d5\u05df", "taxes", "\u05de\u05e1\u05d9\u05dd", "surcharge", "\u05d7\u05d9\u05d5\u05d1\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd", "apply_payment", "Apply Payment", "apply_credit", "\u05d4\u05d7\u05dc \u05d9\u05ea\u05e8\u05ea \u05d6\u05db\u05d5\u05ea", "apply", "\u05d4\u05d7\u05dc", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u05e2\u05d1\u05d5\u05e8", "health_check", "Health Check", "payment_type_id", "\u05e9\u05d9\u05d8\u05ea \u05ea\u05e9\u05dc\u05d5\u05dd", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05d9\u05d9\u05e9\u05d5\u05de\u05d9 \u05e6\u05d3 \u05e9\u05dc\u05d9\u05e9\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e0\u05d1\u05d7\u05e8\u05d5\u05ea", _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e9\u05e0\u05d1\u05d7\u05e8\u05d5", _s17_55, _s17_56, _s17_57, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05e8\u05d5\u05d1\u05d5\u05ea", _s17_59, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05e2\u05d1\u05e8\u05d5 \u05d0\u05ea \u05de\u05d5\u05e2\u05d3 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd", "recent_payments", "\u05e7\u05d1\u05dc\u05d4", "upcoming_quotes", "\u05d4\u05e6\u05e2\u05d5\u05ea \u05de\u05d7\u05d9\u05e8 \u05d1\u05e7\u05e8\u05d5\u05d1", "expired_quotes", "\u05d4\u05e6\u05e2\u05d5\u05ea \u05de\u05d7\u05d9\u05e8 \u05e9\u05e4\u05d2 \u05ea\u05d5\u05e7\u05e4\u05df", "create_client", "\u05e6\u05d5\u05e8 \u05dc\u05e7\u05d5\u05d7", "create_invoice", "\u05e6\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "create_quote", "\u05ea\u05d9\u05d9\u05e6\u05e8 \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "create_payment", "Create Payment", "create_vendor", "\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e7", "update_quote", "Update Quote", "delete_quote", "\u05de\u05d7\u05e7 \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "update_invoice", "\u05e2\u05d3\u05db\u05df \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "delete_invoice", "\u05de\u05d7\u05e7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "update_client", "Update Client", "delete_client", "\u05de\u05d7\u05e7 \u05dc\u05e7\u05d5\u05d7", "delete_payment", "\u05de\u05d7\u05e7 \u05ea\u05e9\u05dc\u05d5\u05dd", "update_vendor", "Update Vendor", "delete_vendor", "\u05de\u05d7\u05e7 \u05e1\u05e4\u05e7", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u05de\u05d7\u05e7 \u05d4\u05d5\u05e6\u05d0\u05d4", "create_task", "\u05e6\u05d5\u05e8 \u05de\u05e9\u05d9\u05de\u05d4", "update_task", "\u05e2\u05d3\u05db\u05df \u05de\u05e9\u05d9\u05de\u05d4", "delete_task", "\u05de\u05d7\u05d9\u05e7\u05ea \u05de\u05e9\u05d9\u05de\u05d4", "approve_quote", "Approve Quote", "off", "\u05db\u05d1\u05d5\u05d9", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u05d7\u05d9\u05e0\u05dd", "plan", "\u05ea\u05db\u05e0\u05d9\u05ea", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "\u05d8\u05d5\u05e7\u05df API", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u05d8\u05d5\u05e7\u05df", "tokens", "\u05d8\u05d5\u05e7\u05e0\u05d9\u05dd", "new_token", "New Token", "edit_token", "\u05e2\u05e8\u05d9\u05db\u05ea \u05d8\u05d5\u05e7\u05df", "created_token", "\u05d8\u05d5\u05e7\u05df \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_token", "\u05d8\u05d5\u05e7\u05df \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_token", "\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d4\u05d5\u05e2\u05d1\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_token", "\u05d8\u05d5\u05e7\u05df \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u05e9\u05dc\u05d7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05de\u05d9\u05d9\u05dc", "email_quote", "\u05e9\u05dc\u05d7 \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05d1\u05de\u05d9\u05d9\u05dc", "email_credit", "Email Credit", "email_payment", '\u05e9\u05dc\u05d7 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05d3\u05d5\u05d0"\u05dc', _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "\u05e9\u05dd \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "\u05e2\u05e8\u05d5\u05da \u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd", _s20_51, "\u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05d5\u05e6\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s20_52, "\u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05d5\u05d3\u05db\u05e0\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s21_50, "\u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d4\u05d5\u05e2\u05d1\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u05d2\u05d5\u05d1\u05d4 \u05d9\u05ea\u05e8\u05d4", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "\u05d7\u05e4\u05e9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "\u05d7\u05e4\u05e9 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", "\u05d7\u05e4\u05e9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea 1", "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "\u05d7\u05e4\u05e9 1 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "\u05d4\u05d7\u05d6\u05e8 \u05db\u05e1\u05e4\u05d9", _s17_69, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d5\u05d8\u05dc\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s18_53, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05d1\u05d5\u05d8\u05dc\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_90, _s21_134, _s17_70, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05d5\u05d7\u05d6\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "reverse", "Reverse", "full_name", "\u05e9\u05dd \u05de\u05dc\u05d0", _s17_71, "\u05e2\u05d9\u05e8/\u05de\u05d3\u05d9\u05e0\u05d4/\u05d3\u05d5\u05d0\u05e8", _s17_73, _s17_74, "custom1", "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea 1", "custom2", "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea 2", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u05e8\u05e2\u05e0\u05df \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd", _s16_91, "\u05e0\u05ea\u05d5\u05e0\u05d9 \u05d4\u05d7\u05d1\u05e8\u05d4 \u05e8\u05d5\u05e2\u05e0\u05e0\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s18_54, "\u05d0\u05d6\u05d4\u05e8\u05d4: \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05de\u05d7\u05e7 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05d0\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da, \u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d1\u05d8\u05dc.", "invoice_balance", "\u05d9\u05ea\u05e8\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "age_group_0", "0 - 30 \u05d9\u05de\u05d9\u05dd", "age_group_30", "30 - 60 \u05d9\u05de\u05d9\u05dd", "age_group_60", "60 - 90 \u05d9\u05de\u05d9\u05dd", "age_group_90", "90 - 120 \u05d9\u05de\u05d9\u05dd", "age_group_120", "120+ \u05d9\u05de\u05d9\u05dd", "refresh", "\u05e8\u05e2\u05e0\u05df", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u05e4\u05e8\u05d8\u05d9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "\u05e9\u05d5\u05e8\u05d5\u05ea \u05de\u05e9\u05d9\u05de\u05d4", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u05de\u05ea\u05d7\u05dd", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":\u05de\u05e1\u05e4\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05e0\u05e9\u05dc\u05d7\u05d5", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05e6\u05e4\u05ea\u05d4", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "\u05de\u05d7\u05e7 \u05d7\u05e9\u05d1\u05d5\u05df", _s22_44, "\u05d0\u05d6\u05d4\u05e8\u05d4: \u05de\u05d7\u05d9\u05e7\u05d4 \u05d6\u05d5 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea, \u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d1\u05d8\u05dc", "delete_company", "\u05de\u05d7\u05e7 \u05d7\u05d1\u05e8\u05d4", _s22_45, "\u05d0\u05d6\u05d4\u05e8\u05d4: \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05de\u05d7\u05e7 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05d0\u05ea \u05d4\u05d7\u05d1\u05e8\u05d4 \u05e9\u05dc\u05da, \u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d1\u05d8\u05dc.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u05db\u05d5\u05ea\u05e8\u05ea \u05e2\u05dc\u05d9\u05d5\u05e0\u05d4", "load_design", "\u05d8\u05e2\u05df \u05e2\u05d9\u05e6\u05d5\u05d1", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, "\u05db\u05de\u05d5\u05ea \u05d7\u05d5\u05d6\u05e8\u05ea", "recurring_tasks", "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", _s18_55, "\u05e0\u05d9\u05d4\u05d5\u05dc \u05d7\u05e9\u05d1\u05d5\u05df", "credit_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05d9\u05ea\u05e8\u05d4", "credit", "\u05d0\u05e9\u05e8\u05d0\u05d9 / \u05d9\u05ea\u05e8\u05d4", "credits", "\u05d0\u05e9\u05e8\u05d0\u05d9 / \u05d9\u05ea\u05e8\u05d4", "new_credit", "\u05d4\u05db\u05e0\u05e1 \u05d9\u05ea\u05e8\u05d4", "edit_credit", "\u05e2\u05e8\u05d5\u05da \u05d9\u05ea\u05e8\u05ea \u05d6\u05db\u05d5\u05ea", "created_credit", "\u05d9\u05ea\u05e8\u05d4 \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_credit", "\u05d9\u05ea\u05e8\u05ea \u05d6\u05db\u05d5\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_credit", "\u05d9\u05ea\u05e8\u05d4 \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_credit", "\u05d9\u05ea\u05e8\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "removed_credit", _s27_34, "restored_credit", "\u05d0\u05e9\u05e8\u05d0\u05d9 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_98, "\u05d9\u05ea\u05e8\u05d4 \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", "deleted_credits", "\u05d9\u05ea\u05e8\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4:", _s16_99, _s36_9, "current_version", "\u05d2\u05e8\u05e1\u05d0 \u05e0\u05d5\u05db\u05d7\u05d9\u05ea", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u05dc\u05de\u05d3 \u05e2\u05d5\u05d3", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u05d7\u05d1\u05e8\u05d4 \u05d7\u05d3\u05e9\u05d4", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 1", "task2", "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 2", "task3", "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 3", "task4", "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 1", "invoice2", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 2", "invoice3", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 3", "invoice4", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea 4", "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u05d0\u05ea\u05d7\u05d5\u05dc", "number", "Number", "export", "\u05d9\u05d9\u05e6\u05d5\u05d0", "chart", "\u05ea\u05e8\u05e9\u05d9\u05dd", "count", "Count", "totals", "\u05e1\u05db\u05d5\u05de\u05d9\u05dd \u05e1\u05d5\u05e4\u05d9\u05d9\u05dd", "blank", "\u05e8\u05d9\u05e7", "day", "\u05d9\u05d5\u05dd", "month", "\u05d7\u05d5\u05d3\u05e9", "year", "\u05e9\u05e0\u05d4", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "\u05e7\u05d1\u05e5 \u05dc\u05e4\u05d9", "credit_balance", "\u05de\u05d0\u05d6\u05df \u05d9\u05ea\u05e8\u05d4", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "\u05d8\u05dc\u05e4\u05d5\u05df \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", "\u05e0\u05d5\u05e6\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9: :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u05e9\u05d5\u05e8\u05d5", "aging", "\u05d6\u05de\u05df", "profit_and_loss", "\u05e8\u05d5\u05d5\u05d7 \u05d5\u05d4\u05e4\u05e1\u05d3", "reports", "\u05d3\u05d5\u05d7", "report", '\u05d3\u05d5"\u05d7', "add_company", "\u05d4\u05d5\u05e1\u05e3 \u05d7\u05d1\u05e8\u05d4", "unpaid_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05dc\u05d0 \u05e9\u05d5\u05dc\u05de\u05d4", "paid_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05d5\u05dc\u05de\u05d4", _s16_134, _s16_135, "help", "\u05e2\u05d6\u05e8\u05d4", "refund", "\u05d4\u05d7\u05d6\u05e8", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", '\u05d3\u05d5\u05d0"\u05dc \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8', "multiselect", "Multiselect", "entity_state", "\u05de\u05e6\u05d1", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u05d4\u05d5\u05d3\u05e2\u05d4", "from", "\u05de\u05d0\u05ea", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "\u05d8\u05d5\u05e4\u05e1 \u05e2\u05d6\u05e8\u05d4", "about", "About", "documentation", "\u05de\u05d3\u05e8\u05d9\u05db\u05d9\u05dd", "contact_us", "\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8", "subtotal", "\u05e1\u05d9\u05db\u05d5\u05dd \u05d1\u05d9\u05e0\u05d9\u05d9\u05dd", "line_total", '\u05e1\u05d4"\u05db', "item", "\u05e4\u05e8\u05d9\u05d8", "credit_email", "Credit Email", "iframe_url", "\u05d0\u05ea\u05e8 \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e4\u05d5\u05e8\u05d8\u05dc \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea", _s23_24, "\u05de\u05e8\u05db\u05d6 \u05e9\u05dc\u05d9\u05d8\u05d4 \u05dc\u05dc\u05e7\u05d5\u05d7", _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "\u05db\u05df", "no", "\u05dc\u05d0", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "\u05e6\u05e4\u05d4", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, "\u05d4\u05e6\u05d2 \u05db\u05de\u05d5\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u05de\u05e9\u05ea\u05de\u05e9", "invoice_tax", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05e1", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05d4\u05de\u05e1 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "item_tax_rates", "Item Tax Rates", _s18_68, "\u05d0\u05e0\u05d0 \u05d1\u05d7\u05e8 \u05dc\u05e7\u05d5\u05d7", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05e1", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "\u05e9\u05d7\u05d6\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d0", "late_fees", "Late Fees", "credit_number", "\u05d6\u05d9\u05db\u05d5\u05d9 \u05de\u05e1\u05e4\u05e8", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "\u05ea\u05d6\u05de\u05df", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, "\u05dc\u05d0\u05d7\u05e8 \u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "days", "\u05d9\u05de\u05d9\u05dd", "invoice_email", "\u05de\u05d9\u05d9\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "payment_email", "\u05de\u05d9\u05d9\u05dc \u05ea\u05e9\u05dc\u05d5\u05dd", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "\u05de\u05d9\u05d9\u05dc \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "\u05de\u05e0\u05d4\u05dc", _s18_74, "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05dc\u05e0\u05d4\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd, \u05dc\u05e9\u05e0\u05d5\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d5\u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05db\u05dc \u05d4\u05e8\u05e9\u05d5\u05de\u05d5\u05ea", "user_management", "\u05e0\u05d9\u05d4\u05d5\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "users", "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "new_user", "\u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9", "edit_user", "\u05e2\u05e8\u05d5\u05da \u05de\u05e9\u05ea\u05de\u05e9", "created_user", _s25_36, "updated_user", "\u05de\u05e9\u05ea\u05de\u05e9 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_user", "\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d5\u05e2\u05d1\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_user", "\u05de\u05e9\u05ea\u05de\u05e9 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "removed_user", _s25_39, "restored_user", "\u05de\u05e9\u05ea\u05de\u05e9 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05db\u05dc\u05dc\u05d9\u05d5\u05ea", "invoice_options", "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s17_86, "\u05d4\u05e1\u05ea\u05e8 \u05e9\u05d5\u05dc\u05dd \u05e2\u05d3 \u05db\u05d4", _s22_52, '\u05d4\u05e6\u05d2 \u05d0\u05da \u05d5\u05e8\u05e7 "\u05e9\u05d5\u05dc\u05dd \u05e2\u05d3 \u05ea\u05d0\u05e8\u05d9\u05da" \u05e2\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d0\u05d7\u05e8\u05d9 \u05e9\u05d4\u05ea\u05e7\u05d1\u05dc \u05ea\u05e9\u05dc\u05d5\u05dd', _s23_26, "\u05de\u05e1\u05de\u05db\u05d9\u05dd \u05de\u05d5\u05d8\u05de\u05e2\u05d9\u05dd", _s28_20, "\u05db\u05dc\u05d5\u05dc \u05e7\u05d1\u05e6\u05d9\u05dd \u05de\u05e6\u05d5\u05e8\u05e4\u05d9\u05dd \u05db\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "\u05e2\u05de\u05d5\u05d3 \u05e8\u05d0\u05e9\u05d5\u05df", "all_pages", "\u05db\u05dc \u05d4\u05e2\u05de\u05d5\u05d3\u05d9\u05dd", "last_page", "\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05e8\u05d5\u05df", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u05e6\u05d1\u05e2 \u05e8\u05d0\u05e9\u05d9", "secondary_color", "\u05e6\u05d1\u05e2 \u05de\u05e9\u05e0\u05d9", "page_size", "\u05d2\u05d5\u05d3\u05dc \u05e2\u05de\u05d5\u05d3", "font_size", "\u05d2\u05d5\u05d3\u05dc \u05e4\u05d5\u05e0\u05d8", "quote_design", "\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8", "invoice_fields", "\u05e9\u05d3\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "product_fields", "\u05e9\u05d3\u05d5\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd", "invoice_terms", "\u05ea\u05e0\u05d0\u05d9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "invoice_footer", "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4 \u05d1\u05d3\u05e3 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "quote_terms", "\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e6\u05e2\u05ea \u05d4\u05de\u05d7\u05d9\u05e8", "quote_footer", "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4 \u05dc\u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8", _s18_75, "Auto Email", _s23_27, '\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05d7\u05d5\u05d6\u05e8\u05d5\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e6\u05e8\u05d5\u05ea.', _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "\u05d4\u05de\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea", _s23_29, "\u05d4\u05de\u05e8 \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05dc\u05e7\u05d5\u05d7 \u05de\u05d0\u05e9\u05e8", _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "\u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "\u05d4\u05d5\u05e1\u05e3 \u05de\u05d9\u05e1\u05d9\u05dd", "next_reset", "\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05d1\u05d0", "reset_counter", "\u05d0\u05e4\u05e1 \u05de\u05d5\u05e0\u05d4", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "\u05e9\u05d3\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s17_93, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d7\u05d9\u05d5\u05d1\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd", "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "\u05e9\u05d3\u05d5\u05ea \u05de\u05e9\u05d9\u05de\u05d4", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u05e7\u05d9\u05d3\u05d5\u05de\u05ea", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "CSS \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, "\u05d4\u05e6\u05d2 \u05d0\u05ea \u05d7\u05ea\u05d9\u05de\u05ea \u05d4\u05dc\u05e7\u05d5\u05d7 \u05d1-PDF \u05e9\u05dc \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea/\u05d4\u05e6\u05e2\u05ea \u05d4\u05de\u05d7\u05d9\u05e8.", _s25_40, "\u05ea\u05d9\u05d1\u05ea \u05e1\u05d9\u05de\u05d5\u05df \u05ea\u05e0\u05d0\u05d9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s30_9, "\u05d7\u05d9\u05d9\u05d1 \u05d0\u05ea \u05d4\u05dc\u05e7\u05d5\u05d7 \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s23_30, "\u05ea\u05d9\u05d1\u05ea \u05e1\u05d9\u05de\u05d5\u05df \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8", _s28_21, "\u05d7\u05d9\u05d9\u05d1 \u05d0\u05ea \u05d4\u05dc\u05e7\u05d5\u05d7 \u05dc\u05d4\u05e1\u05db\u05d9\u05dd \u05dc\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e6\u05e2\u05ea \u05d4\u05de\u05d7\u05d9\u05e8", _s25_41, "\u05d7\u05ea\u05d9\u05de\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s30_10, "\u05d7\u05d9\u05d9\u05d1 \u05d0\u05ea \u05d4\u05dc\u05e7\u05d5\u05d7 \u05dc\u05d7\u05ea\u05d5\u05dd \u05e2\u05dc \u05d4\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s23_31, "\u05d7\u05ea\u05d9\u05de\u05ea \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8", _s22_54, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05d2\u05e0\u05ea \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e1\u05d9\u05e1\u05de\u05d4", _s27_36, "\u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05e1\u05d9\u05e1\u05de\u05d4 \u05dc\u05db\u05dc \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8. \u05d0\u05dd \u05d4\u05d5\u05d2\u05d3\u05e8\u05d4 \u05e1\u05d9\u05e1\u05de\u05d4, \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d9\u05d9\u05d3\u05e8\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e1\u05d9\u05e1\u05de\u05d4 \u05dc\u05e4\u05e0\u05d9 \u05e6\u05e4\u05d9\u05d9\u05d4 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea.", "authorization", "\u05d0\u05d9\u05de\u05d5\u05ea", "subdomain", "\u05e1\u05d0\u05d1\u05d3\u05d5\u05de\u05d9\u05d9\u05df", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u05d1\u05ea\u05d5\u05d3\u05d4 \u05de\u05e8\u05d0\u05e9", _s24_38, "\u05d4\u05e7\u05dc \u05e2\u05dc \u05d4\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05e9\u05dc\u05da \u05dc\u05e9\u05dc\u05dd \u05dc\u05da \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d9\u05de\u05d5\u05df schema.org \u05dc\u05d0\u05d9\u05de\u05d9\u05d9\u05dc\u05d9\u05dd \u05e9\u05dc\u05da.", "plain", "\u05e8\u05d2\u05d9\u05dc", "light", "\u05d1\u05d4\u05d9\u05e8", "dark", "\u05db\u05d4\u05d4", "email_design", '\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d3\u05d5\u05d0"\u05dc', "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "\u05d0\u05e4\u05e9\u05e8 \u05e1\u05d9\u05de\u05d5\u05df", "reply_to_email", '\u05d4\u05e9\u05d1 \u05dc\u05d3\u05d5\u05d0"\u05dc', "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "\u05e2\u05d3\u05db\u05d5\u05df \u05db\u05ea\u05d5\u05d1\u05ea", _s19_45, "\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05dc\u05e7\u05d5\u05d7 \u05e2\u05dd \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05d4\u05ea\u05e7\u05d1\u05dc\u05d5", "rate", "\u05ea\u05e2\u05e8\u05d9\u05e3", "tax_rate", "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05de\u05e1", "new_tax_rate", "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05de\u05e1 \u05d7\u05d3\u05e9", "edit_tax_rate", "\u05e2\u05e8\u05d5\u05da \u05e9\u05d9\u05e2\u05d5\u05e8 \u05de\u05e1", _s16_160, "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05d4\u05de\u05e1 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_161, "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05d4\u05de\u05e1 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_98, "\u05e9\u05d9\u05e2\u05d5\u05e8\u05d9 \u05d4\u05de\u05e1 \u05e0\u05e9\u05dc\u05d7\u05d5 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u05de\u05d5\u05e6\u05e8\u05d9\u05dd \u05dc\u05de\u05d9\u05dc\u05d5\u05d9 \u05d0\u05d5\u05d8\u05d5\u05de\u05d9", _s18_80, "\u05d1\u05d7\u05d9\u05e8\u05ea \u05de\u05d5\u05e6\u05e8 \u05d9\u05de\u05dc\u05d0 \u05d0\u05ea \u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d5\u05e2\u05dc\u05d5\u05ea \u05d1\u05d0\u05d5\u05e4\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", "update_products", "\u05e2\u05d9\u05d3\u05db\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05ea\u05d9 \u05dc\u05de\u05d5\u05e6\u05e8\u05d9\u05dd", _s20_65, "\u05e2\u05d9\u05d3\u05db\u05d5\u05df \u05e9\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d9\u05e2\u05d3\u05db\u05df \u05d2\u05dd \u05d0\u05ea \u05d4\u05e1\u05d9\u05e4\u05e8\u05d9\u05ea \u05de\u05d5\u05e6\u05e8\u05d9\u05dd", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "\u05e2\u05de\u05dc\u05d5\u05ea", "limits", "\u05de\u05d2\u05d1\u05dc\u05d5\u05ea", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "\u05d1\u05d8\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd", "default_value", "Default value", "disabled", "\u05d4\u05e9\u05d1\u05ea", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df", "monday", "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9", "tuesday", "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9", "wednesday", "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9", "thursday", "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9", "friday", "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9", "saturday", "\u05e9\u05d1\u05ea", "january", "\u05d9\u05e0\u05d5\u05d0\u05e8", "february", "\u05e4\u05d1\u05d5\u05d0\u05e8", "march", "\u05de\u05e8\u05e5", "april", "\u05d0\u05e4\u05e8\u05d9\u05dc", "may", "\u05de\u05d0\u05d9", "june", "\u05d9\u05d5\u05e0\u05d9", "july", "\u05d9\u05d5\u05dc\u05d9", "august", "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", "september", "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", "october", "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", "november", "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", "december", "\u05d3\u05e6\u05de\u05d1\u05e8", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 \u05e9\u05e2\u05d5\u05ea", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, "\u05e0\u05e1\u05df \u05dc\u05e4\u05d9 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "\u05dc\u05d5\u05d2\u05d5", "saved_settings", _s27_39, _s16_169, "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05d5\u05e6\u05e8/\u05e9\u05d9\u05e8\u05d5\u05ea", "device_settings", "Device Settings", "defaults", "\u05d1\u05e8\u05d9\u05e8\u05d5\u05ea \u05de\u05d7\u05d3\u05dc", "basic_settings", "\u05d4\u05d2\u05d3\u05d5\u05ea \u05d1\u05e1\u05d9\u05e1\u05d9\u05d5\u05ea", _s17_103, "\u05d0\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05ea\u05e7\u05d3\u05de\u05d5\u05ea", "company_details", "\u05e4\u05e8\u05d8\u05d9 \u05d7\u05d1\u05e8\u05d4", "user_details", "\u05e4\u05e8\u05d8\u05d9 \u05de\u05e9\u05ea\u05de\u05e9", "localization", "\u05de\u05d9\u05e7\u05d5\u05dd", "online_payments", "\u05ea\u05e9\u05dc\u05d5\u05dd \u05de\u05e7\u05d5\u05d5\u05df", "tax_rates", "\u05ea\u05e2\u05e8\u05d9\u05e3 \u05de\u05e1", "notifications", "\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea", "import_export", "\u05d9\u05d1\u05d5\u05d0 | \u05d9\u05d9\u05e6\u05d5\u05d0", "custom_fields", "\u05e9\u05d3\u05d5\u05ea \u05de\u05d5\u05d0\u05de\u05d5\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea", "invoice_design", "\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "buy_now_buttons", "Buy Now Buttons", "email_settings", "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05d9\u05d9\u05dc \u05d0\u05dc\u05e7\u05d8\u05e8\u05d5\u05e0\u05d9", _s23_37, "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea \u05d5\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea", _s22_55, _s20_67, _s19_51, "\u05d4\u05d3\u05de\u05d9\u05d9\u05ea \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u05ea\u05e0\u05d0\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9", "privacy_policy", "Privacy Policy", "sign_up", "\u05d4\u05e8\u05e9\u05dd", "account_login", "\u05db\u05e0\u05d9\u05e1\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "\u05e6\u05d5\u05e8 \u05d7\u05d3\u05e9", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u05d4\u05d5\u05e8\u05d3\u05d4", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "\u05de\u05e1\u05de\u05da", "documents", "\u05de\u05e1\u05de\u05db\u05d9\u05dd", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e6\u05d0\u05d4", "pending", "\u05de\u05de\u05ea\u05d9\u05df", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05e4\u05e7\u05d4", "converted", "\u05d4\u05d5\u05de\u05e8", _s24_44, _s24_45, "exchange_rate", "\u05e9\u05e2\u05e8 \u05d7\u05dc\u05d9\u05e4\u05d9\u05df", _s16_178, "\u05d4\u05de\u05e8 \u05de\u05d8\u05d1\u05e2", "mark_paid", "\u05e1\u05de\u05df \u05db\u05e9\u05d5\u05dc\u05dd", "category", "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4", "address", "\u05db\u05ea\u05d5\u05d1\u05ea", "new_vendor", "\u05e1\u05e4\u05e7 \u05d7\u05d3\u05e9", "created_vendor", "\u05e1\u05e4\u05e7 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_vendor", "\u05e1\u05e4\u05e7 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_vendor", "\u05e1\u05e4\u05e7 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_vendor", "\u05e1\u05e4\u05e7 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "restored_vendor", "\u05e1\u05e4\u05e7 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_179, "\u05e1\u05e4\u05e7 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4:", "deleted_vendors", "\u05e1\u05e4\u05e7 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4:", _s16_180, _s36_11, "new_expense", "\u05d4\u05d6\u05df \u05d4\u05d5\u05e6\u05d0\u05d4", "created_expense", "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_expense", "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_181, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05d4\u05d5\u05e2\u05d1\u05e8\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_expense", "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_182, "\u05d4\u05d5\u05e6\u05d0\u05d4 \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_109, "\u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d5\u05e2\u05d1\u05e8\u05d5 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_183, "\u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05e0\u05de\u05d7\u05e7\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05e4\u05e7\u05d4", "logged", "\u05e0\u05e8\u05e9\u05dd \u05d1\u05d9\u05d5\u05de\u05df", "running", "\u05de\u05e8\u05d9\u05e5", "resume", "\u05e7\u05d5\u05e8\u05d5\u05ea \u05d7\u05d9\u05d9\u05dd", "task_errors", "\u05d0\u05e0\u05d0 \u05ea\u05e7\u05df \u05d0\u05ea \u05d4\u05d6\u05de\u05e0\u05d9\u05dd \u05d4\u05d7\u05d5\u05e4\u05e4\u05d9\u05dd", "start", "\u05d4\u05ea\u05d7\u05dc\u05d4", "stop", "\u05d4\u05e4\u05e1\u05e7", "started_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05d5\u05ea\u05d7\u05dc\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "stopped_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "resumed_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05d5\u05de\u05e9\u05db\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "now", "\u05e2\u05db\u05e9\u05d9\u05d5", _s16_184, "\u05d4\u05ea\u05d7\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea", "timer", "\u05d8\u05d9\u05d9\u05de\u05e8", "manual", "\u05d1\u05d0\u05d5\u05e4\u05df \u05d9\u05d3\u05e0\u05d9", "budgeted", "Budgeted", "start_time", "\u05d6\u05de\u05df \u05d4\u05ea\u05d7\u05dc\u05d4", "end_time", "\u05d6\u05de\u05df \u05e1\u05d9\u05d5\u05dd", "date", "\u05ea\u05d0\u05e8\u05d9\u05da", "times", "\u05e4\u05e2\u05de\u05d9\u05dd/\u05d6\u05de\u05e0\u05d9\u05dd", "duration", "\u05de\u05e9\u05da \u05d4\u05d6\u05de\u05df", "new_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05d7\u05d3\u05e9\u05d4", "created_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4", "restored_task", "\u05de\u05e9\u05d9\u05de\u05d4 \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_tasks", "\u05d4\u05d5\u05e2\u05d1\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4: \u05e1\u05e4\u05d9\u05e8\u05ea \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "deleted_tasks", "\u05e0\u05de\u05d7\u05e7: \u05e1\u05e4\u05d9\u05e8\u05ea \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_186, "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d4\u05d5\u05e2\u05d1\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_187, "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d7\u05d3\u05e9", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "\u05dc\u05d7\u05e5 \u05db\u05d0\u05df", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "\u05d8\u05d5\u05d5\u05d7 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "\u05d4\u05d7\u05d5\u05d3\u05e9 \u05d4\u05d6\u05d4", "last_month", "\u05d7\u05d5\u05d3\u05e9 \u05e9\u05e2\u05d1\u05e8", "this_year", "This Year", "last_year", "\u05e9\u05e0\u05d4 \u05e9\u05e2\u05d1\u05e8\u05d4", "custom", "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", _s16_189, "\u05e9\u05db\u05e4\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u05ea\u05e6\u05d9\u05d2 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "convert", "Convert", "more", "More", "edit_client", "\u05e2\u05e8\u05d5\u05da \u05dc\u05e7\u05d5\u05d7", "edit_product", "\u05e2\u05e8\u05d5\u05da \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8", "edit_invoice", "\u05e2\u05e8\u05d5\u05da \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "edit_quote", "\u05e2\u05e8\u05d5\u05da \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "edit_payment", "\u05e2\u05e8\u05d9\u05db\u05ea \u05ea\u05e9\u05dc\u05d5\u05dd", "edit_task", "\u05e2\u05e8\u05d9\u05db\u05ea \u05de\u05e9\u05d9\u05de\u05d4", "edit_expense", "\u05e2\u05e8\u05d5\u05da \u05d4\u05d5\u05e6\u05d0\u05d4", "edit_vendor", "\u05e2\u05e8\u05d5\u05da \u05e1\u05e4\u05e7", "edit_project", "\u05e2\u05e8\u05d5\u05da \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8", _s20_68, "\u05e2\u05e8\u05d5\u05da \u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8 \u05de\u05d7\u05d6\u05d5\u05e8\u05d9\u05ea", "billing_address", "\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05e9\u05dc\u05d9\u05d7\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s16_191, _s16_192, "total_revenue", "\u05e8\u05d5\u05d5\u05d7 \u05db\u05d5\u05dc\u05dc", "average_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05de\u05d5\u05e6\u05e2\u05ea", "outstanding", "\u05e0\u05d5\u05ea\u05e8", "invoices_sent", ":\u05de\u05e1\u05e4\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05e0\u05e9\u05dc\u05d7\u05d5", "active_clients", "\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd", "close", "\u05e1\u05d2\u05d5\u05e8", "email", "\u05d3\u05d5\u05d0\u05e8 \u05d0\u05dc\u05e7\u05d8\u05e8\u05d5\u05e0\u05d9", "password", "\u05e1\u05d9\u05e1\u05de\u05d4", "url", "URL", "secret", "Secret", "name", "\u05e9\u05dd", "logout", "\u05e6\u05d0", "login", "\u05db\u05e0\u05d9\u05e1\u05d4", "filter", "\u05e1\u05d9\u05e0\u05d5\u05df", "sort", "Sort", "search", "\u05d7\u05d9\u05e4\u05d5\u05e9", "active", "\u05e4\u05e2\u05d9\u05dc", "archived", "\u05d0\u05e8\u05db\u05d9\u05d5\u05df", "deleted", "\u05e0\u05de\u05d7\u05e7", "dashboard", "\u05de\u05e8\u05db\u05d6 \u05e9\u05dc\u05d9\u05d8\u05d4", "archive", "\u05d0\u05e8\u05db\u05d9\u05d5\u05df", "delete", "\u05de\u05d7\u05e7", "restore", "\u05e9\u05d7\u05d6\u05d5\u05e8", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "\u05e2\u05d5\u05dc\u05d4", "descending", "\u05d9\u05d5\u05e8\u05d3", "save", "\u05e9\u05de\u05d5\u05e8", _s17_115, _s17_116, "paid_to_date", "\u05dc\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05d3", "balance_due", "\u05d9\u05ea\u05e8\u05d4", "balance", "\u05de\u05d0\u05d6\u05df", "overview", "Overview", "details", "\u05e4\u05e8\u05d8\u05d9\u05dd", "phone", "\u05d8\u05dc\u05e4\u05d5\u05df", "website", "\u05d0\u05ea\u05e8 \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8", "vat_number", '\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e1\u05e7 \u05de\u05e2"\u05de', "id_number", "\u05de\u05e1\u05e4\u05e8 \u05d7.\u05e4. / \u05ea.\u05d6.", "create", "\u05e6\u05d5\u05e8", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8", "additional", "Additional", "first_name", "\u05e9\u05dd", "last_name", "\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4", "add_contact", "\u05d4\u05d5\u05e1\u05e3 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", "are_you_sure", "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7?", "cancel", "\u05d1\u05d8\u05dc", "ok", "Ok", "remove", "\u05d4\u05e1\u05e8", _s16_197, '\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0"\u05dc \u05dc\u05d0 \u05ea\u05e7\u05d9\u05e0\u05d4', "product", "\u05de\u05d5\u05e6\u05e8", "products", "\u05de\u05d5\u05e6\u05e8\u05d9\u05dd", "new_product", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d7\u05d3\u05e9", "created_product", "\u05e0\u05d5\u05e6\u05e8 \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d4\u05e6\u05dc\u05d7\u05d4", "updated_product", "\u05de\u05d5\u05e6\u05e8 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_199, "\u05de\u05d5\u05e6\u05e8 \u05d0\u05d5\u05e1\u05e3 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_product", "\u05e4\u05e8\u05d5\u05d8 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_200, "\u05e4\u05e8\u05d9\u05d8 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "\u05d4\u05e2\u05e8\u05d5\u05ea", "cost", "\u05e2\u05dc\u05d5\u05ea", "client", "\u05dc\u05e7\u05d5\u05d7", "clients", "\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea", "new_client", "\u05dc\u05e7\u05d5\u05d7 \u05d7\u05d3\u05e9", "created_client", "\u05dc\u05e7\u05d5\u05d7 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_client", "\u05dc\u05e7\u05d5\u05d7 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_client", "\u05dc\u05e7\u05d5\u05d7 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_202, "\u05dc\u05e7\u05d5\u05d7 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", "deleted_client", "\u05dc\u05e7\u05d5\u05d7 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_clients", "\u05dc\u05e7\u05d5\u05d7 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", "restored_client", "\u05dc\u05e7\u05d5\u05d7/\u05d4 \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_203, _s36_13, "address1", "\u05e8\u05d7\u05d5\u05d1", "address2", "\u05d3\u05d9\u05e8\u05d4/\u05ea.\u05d3", "city", "\u05e2\u05d9\u05e8", "state", "\u05de\u05d3\u05d9\u05e0\u05d4 / \u05de\u05d7\u05d5\u05d6", "postal_code", "\u05de\u05d9\u05e7\u05d5\u05d3", "country", "\u05de\u05d3\u05d9\u05e0\u05d4", "invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "invoices", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "new_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4", "created_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_204, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_205, _s21_134, _s17_119, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", _s16_206, "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", _s17_120, "\u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :value invoices", "emailed_invoice", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05d3\u05d5\u05d0\u05e8 \u05d0\u05dc\u05e7\u05d8\u05e8\u05d5\u05e0\u05d9 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "emailed_payment", '\u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05e9\u05dc\u05d7 \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4', "amount", "\u05db\u05de\u05d5\u05ea", "invoice_number", "\u05de\u05e1\u05e4\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "invoice_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "discount", "\u05d4\u05e0\u05d7\u05d4", "po_number", "\u05de\u05e1\u05e4\u05e8 \u05ea.\u05d3", "terms", "\u05ea\u05e0\u05d0\u05d9\u05dd", "public_notes", "\u05d4\u05e2\u05e8\u05d4 \u05e6\u05d9\u05d1\u05d5\u05e8\u05d9\u05ea", "private_notes", "\u05d4\u05e2\u05e8\u05d5\u05ea \u05e4\u05e8\u05d8\u05d9\u05d5\u05ea", "frequency", "\u05ea\u05d3\u05d9\u05e8\u05d5\u05ea", "start_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05ea\u05d7\u05dc\u05d4", "end_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05e1\u05d9\u05d5\u05dd", "quote_number", "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d3\u05d5\u05e8\u05ea \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "quote_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "valid_until", "\u05d1\u05ea\u05d5\u05e7\u05e3 \u05e2\u05d3", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u05ea\u05d0\u05d5\u05e8", "unit_cost", "\u05e2\u05dc\u05d5\u05ea \u05d9\u05d7\u05d9\u05d3\u05d4", "quantity", "\u05db\u05de\u05d5\u05ea", "add_item", "Add Item", "contact", "\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", "work_phone", "\u05d8\u05dc\u05e4\u05d5\u05df", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05e4\u05d9\u05e8\u05e2\u05d5\u05df", _s16_207, "\u05ea\u05d0\u05e8\u05d9\u05da \u05d9\u05e2\u05d3 \u05d7\u05dc\u05e7\u05d9", "status", "\u05de\u05e6\u05d1", _s17_121, "\u05e1\u05d8\u05d8\u05d5\u05e1 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", '\u05e1\u05d4"\u05db', "percent", "\u05d0\u05d7\u05d5\u05d6", "edit", "\u05e2\u05e8\u05d5\u05da", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, "\u05d0\u05e0\u05d0 \u05d1\u05d7\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "task_rate", "\u05e9\u05d9\u05e2\u05d5\u05e8 \u05de\u05e9\u05d9\u05de\u05d4", "settings", "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea", "language", "Language", "currency", "\u05de\u05d8\u05d1\u05e2", "created_at", "\u05e0\u05d5\u05e6\u05e8 \u05d1\u05ea\u05d0\u05e8\u05d9\u05da", "created_on", "Created On", "updated_at", "Updated", "tax", "\u05de\u05e1", _s30_17, "\u05d0\u05e0\u05d0 \u05d4\u05d6\u05df \u05de\u05e1\u05e4\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s27_49, _s27_50, "past_due", "\u05d0\u05d7\u05e8\u05d9 \u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d9\u05e2\u05d3", "draft", "\u05d8\u05d9\u05d5\u05d8\u05d4", "sent", "\u05e0\u05e9\u05dc\u05d7", "viewed", "Viewed", "approved", "Approved", "partial", "\u05ea\u05e9\u05dc\u05d5\u05dd / \u05d7\u05dc\u05e7\u05d9", "paid", "\u05e9\u05d5\u05dc\u05dd", "mark_sent", "\u05e1\u05d9\u05de\u05d5\u05df \u05db\u05e0\u05e9\u05dc\u05d7", _s22_61, _s27_81, _s22_62, _s27_81, _s23_40, _s28_77, _s23_41, _s28_77, "done", "\u05e1\u05d9\u05d9\u05dd", _s37_18, _s37_19, "dark_mode", "\u05de\u05e6\u05d1 \u05db\u05d4\u05d4", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea", _s16_209, _s16_210, "clone", "\u05d4\u05e2\u05ea\u05e7", "loading", "\u05d8\u05d5\u05e2\u05df", "industry", "\u05ea\u05e2\u05e9\u05d9\u05d9\u05d4", "size", "Size", "payment_terms", "\u05ea\u05e0\u05d0\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd", "payment_date", "\u05ea\u05d0\u05e8\u05d9\u05da \u05ea\u05e9\u05dc\u05d5\u05dd", "payment_status", "Payment Status", _s16_211, "\u05de\u05de\u05ea\u05d9\u05df", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "\u05e4\u05d5\u05e8\u05d8\u05dc \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea", "show_tasks", "\u05d4\u05e6\u05d2 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", "email_reminders", '\u05e9\u05dc\u05d7 \u05d3\u05d5\u05d0"\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea', "enabled", "Enabled", "recipients", "\u05de\u05e7\u05d1\u05dc", "initial_email", "\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05e8\u05d0\u05e9\u05d5\u05e0\u05d9", "first_reminder", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4", "second_reminder", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05e0\u05d9\u05d4", "third_reminder", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05dc\u05d9\u05e9\u05d9\u05ea", "reminder1", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4", "reminder2", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05e0\u05d9\u05d4", "reminder3", "\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05dc\u05d9\u05e9\u05d9\u05ea", "template", "Template", "send", "Send", "subject", "\u05e0\u05d5\u05e9\u05d0", "body", "\u05d2\u05d5\u05e3", "send_email", "\u05e9\u05dc\u05d9\u05d7\u05ea \u05de\u05d9\u05d9\u05dc", "email_receipt", '\u05e9\u05dc\u05d7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05ea\u05e9\u05dc\u05d5\u05dd \u05dc\u05d3\u05d5\u05d0"\u05dc \u05d4\u05dc\u05e7\u05d5\u05d7', "auto_billing", "\u05d7\u05d9\u05d5\u05d1 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", "button", "Button", "preview", "\u05e6\u05e4\u05d9\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4", "customize", "\u05d4\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "history", "\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4", "payment", "\u05ea\u05e9\u05dc\u05d5\u05dd", "payments", "\u05ea\u05e9\u05dc\u05d5\u05de\u05d9\u05dd", "refunded", "Refunded", "payment_type", "\u05d0\u05de\u05e6\u05e2\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd", _s21_79, "\u05d4\u05e4\u05e0\u05d9\u05d4 \u05e2\u05e1\u05e7\u05d4", "enter_payment", "\u05d4\u05db\u05e0\u05e1 \u05ea\u05e9\u05dc\u05d5\u05dd", "new_payment", "\u05d4\u05db\u05e0\u05e1 \u05ea\u05e9\u05dc\u05d5\u05dd", "created_payment", "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_payment", "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_217, "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_payment", "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s16_218, "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05d5\u05d7\u05d6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", _s17_124, "\u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :", _s16_219, "\u05ea\u05e9\u05dc\u05d5\u05dd \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4:", _s17_125, _s37_20, "quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8", "quotes", "\u05e2\u05e8\u05db\u05d5\u05ea \u05de\u05d7\u05d9\u05e8", "new_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05d7\u05d3\u05e9", "created_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05e0\u05d5\u05e6\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "updated_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05e0\u05d5\u05e1\u05e3 \u05dc\u05e2\u05e8\u05db\u05d9\u05d5\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "deleted_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "restored_quote", "\u05d4\u05e6\u05e2\u05ea \u05de\u05d7\u05d9\u05e8 \u05e9\u05d5\u05d7\u05d6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "archived_quotes", "\u05d0\u05d5\u05e1\u05e3 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05dc\u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 :\u05e1\u05e4\u05d9\u05e8\u05ea \u05e2\u05e8\u05db\u05d5\u05ea \u05de\u05d7\u05d9\u05e8", "deleted_quotes", "\u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05d7\u05dc\u05d4", "restored_quotes", _s35_21, "expense", "\u05d4\u05d5\u05e6\u05d0\u05d4", "expenses", "\u05d4\u05d5\u05e6\u05d0\u05d5\u05ea", "vendor", "\u05e1\u05e4\u05e7", "vendors", "\u05e1\u05e4\u05e7\u05d9\u05dd", "task", "\u05de\u05e9\u05d9\u05de\u05d4", "tasks", "\u05de\u05e9\u05d9\u05de\u05d5\u05ea", "project", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8", "projects", "\u05e4\u05e8\u05d5\u05d9\u05e7\u05d8\u05d9\u05dd", "activity_1", ":\u05de\u05e9\u05ea\u05de\u05e9 \u05e0\u05d5\u05e6\u05e8 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 :\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8", "activity_2", ":\u05de\u05e9\u05ea\u05de\u05e9 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df: \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9", "activity_3", ":\u05de\u05e9\u05ea\u05de\u05e9 \u05e0\u05de\u05d7\u05e7 \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 :\u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9", "activity_4", ":\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05e0\u05e4\u05d9\u05e7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "activity_5", ":\u05de\u05e9\u05ea\u05de\u05e9 \u05e2\u05d3\u05db\u05df \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "activity_6", ':\u05de\u05e9\u05ea\u05de\u05e9 \u05e9\u05dc\u05d7 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e2\u05d1\u05d5\u05e8 : \u05dc\u05e7\u05d5\u05d7 \u05d0\u05dc :\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8', "activity_7", "\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05e6\u05e4\u05d4 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e2\u05d1\u05d5\u05e8 :\u05dc\u05e7\u05d5\u05d7", "activity_8", _s31_11, "activity_9", ":\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05e9\u05e0\u05de\u05d7\u05e7\u05d5 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05de\u05e9\u05ea\u05de\u05e9 :\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "activity_10", ":\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d4\u05d6\u05d9\u05df \u05ea\u05e9\u05dc\u05d5\u05dd :\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05d1\u05d5\u05e8 :payment_amount\xa0 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e2\u05d1\u05d5\u05e8 :\u05dc\u05e7\u05d5\u05d7", "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", '\u05e9\u05dc\u05d9\u05d7\u05ea \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d1\u05d3\u05d5\u05d0"\u05dc \u05e0\u05db\u05e9\u05dc\u05d4 :invoice', "activity_58", ":user \u05e9\u05d7\u05d6\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :invoice", "activity_59", ":user \u05d1\u05d9\u05d8\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea :invoice", "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "\u05e2\u05e8\u05db\u05ea \u05de\u05d7\u05d9\u05e8 \u05e0\u05e9\u05dc\u05d7 \u05dc\u05de\u05d9\u05d9\u05dc \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "\u05e4\u05d2 \u05ea\u05d5\u05e7\u05e3", "all", "\u05d4\u05db\u05dc", "select", "\u05d1\u05d7\u05e8", _s22_63, _s22_64, "custom_value1", "\u05e2\u05e8\u05da \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "custom_value2", "\u05e2\u05e8\u05da \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, "\u05d4\u05d5\u05d3\u05e2\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea \u05d1\u05de\u05e8\u05db\u05d6 \u05d4\u05e9\u05dc\u05d9\u05d8\u05d4", _s29_36, "\u05d4\u05d5\u05d3\u05e2\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05dc\u05d0 \u05e9\u05d5\u05dc\u05de\u05d4", _s27_56, "\u05d4\u05d5\u05d3\u05e2\u05d4 \u05de\u05d5\u05ea\u05d0\u05de\u05ea \u05d0\u05d9\u05e9\u05d9\u05ea \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05e9\u05d5\u05dc\u05de\u05d4", _s31_18, _s31_19, "lock_invoices", "\u05e0\u05e2\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", "translations", "Translations", _s19_60, "\u05d3\u05e4\u05d5\u05e1 \u05de\u05e1\u05e4\u05e8\u05d9 \u05de\u05e9\u05d9\u05de\u05d4", _s19_62, "\u05de\u05d5\u05e0\u05d4 \u05de\u05e9\u05d9\u05de\u05d5\u05ea", _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, "\u05d3\u05e4\u05d5\u05e1 \u05de\u05e1\u05e4\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s22_75, "\u05de\u05e1\u05e4\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea", _s20_73, _s20_74, _s20_75, "\u05de\u05e1\u05e4\u05d5\u05e8 \u05d4\u05e6\u05e2\u05d5\u05ea \u05de\u05d7\u05d9\u05e8", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, "\u05d0\u05e4\u05e1 \u05de\u05d5\u05e0\u05d4 \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea \u05d4\u05e6\u05e2\u05d5\u05ea \u05de\u05d7\u05d9\u05e7", _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, '\u05e9\u05d5\u05e8\u05ea \u05e0\u05d5\u05e9\u05d0 \u05d1\u05d3\u05d5\u05d0"\u05dc \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea', _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "\u05e1\u05d5\u05d2", "invoice_amount", "\u05e1\u05db\u05d5\u05dd \u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", _s16_224, "\u05ea\u05d0\u05e8\u05d9\u05da \u05dc\u05d1\u05d9\u05e6\u05d5\u05e2", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u05e9\u05dd \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea \u05de\u05e1", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u05d2\u05d5\u05d1\u05d4 \u05ea\u05e9\u05dc\u05d5\u05dd", "age", "\u05d6\u05de\u05df", "is_running", "Is Running", "time_log", "\u05d9\u05d5\u05de\u05df \u05d6\u05de\u05df", "bank_id", "\u05d1\u05e0\u05e7", _s19_66, _s19_67, _s16_225, "\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea", _s19_68, "\u05de\u05e1\u05e4\u05e8 \u05de\u05d8\u05d1\u05e2 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05ea", "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "it", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accetta", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Impostazioni Pagamento", "default", "Predefinito", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Fermo", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Aggiungi Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Crea il tuo account in pochi secondi", "login_label", _s28_, "add_to_invoice", "Aggiungi alla fattura :invoice", _s17_6, _s17_7, "week", "Settimana", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Valuta fattura", "range", "Intervallo", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Crea un Progetto", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "La tariffa per una fattura :amount sarebbe :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approva", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s30_48, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Imposta Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Vedi spesa # :expense", "view_statement", "Estratto Conto", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Da Nome", _s16_21, _s16_231, _s17_13, "Spesa Ricorrente", _s18_13, "Spese Ricorrenti", _s21_16, "Nuova Spesa Ricorrente", _s22_24, "Modifica Spesa Ricorrente", _s25_2, "Spesa ricorrente creata con successo", _s25_3, "Spesa ricorrente aggiornata con successo", _s26_2, "Spesa ricorrente archiviata con successo", _s25_4, "Progetto cancellato con sucesso", _s25_5, _s38_2, _s26_3, "Spesa ricorrente riprestinata con successo", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Guida Utente", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Netto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", "fattura ricorrente :recurring_invoice creata dall'utente :user", "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Ultimo aggiornamento", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Nome contatto", _s17_17, "Cognome contatto", "order", "Order", "unassigned", "Non assegnato", "partial_value", "Deve essere maggiore di zero ed inferiore al totale", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Abilita", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Imposta il sottodominio o visualizza la fattura sul tuo sito web.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Codice Promo", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Sicurezza", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abbonamento", "subscriptions", "Abbonamenti", _s16_39, "Nuovo Abbonamento", _s17_23, "Modifica Abbonamento", _s20_23, "Abbonamento creato con successo", _s20_24, "Abbonamento aggiornato con successo", _s21_28, "Abbonamento archiviato con successo", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, "Cerca 1 abbonamento", _s20_27, "Cerca :count abbonamenti", _s26_6, "Sottodominio non disponibile", "connect_gmail", "Connetti Gmail", _s16_41, "Disconnetti Gmail", "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, "Numero ID cliente", "count_minutes", ":count Minuti", _s16_46, "Scadenza Password", _s29_4, "Contatore condiviso per fatture/crediti", "use_last_email", "Usa ultima email", _s16_48, "Attiva azienda", _s21_31, "Abilitare le e-mail, le fatture ricorrenti e le notifiche", _s27_14, "Si \xe8 verificato un errore, per favore riprova", _s27_15, "Si prega di impostare prima una password", _s34_6, "Attenzione: Cambiare il numero di telefono disabiliter\xe0 l'autenticazione a due fattori", "help_translate", "Contribuisci alla traduzione", _s23_11, "Selezionare un paese", "resend_invite", "Re-invia invito", _s19_18, "Disattivato con successo 2FA", _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Consegnato", "bounced", "Bounced", "spam", "Spam", "view_docs", "Vedi documentazione", _s32_4, "Si prega di fornire un numero di telefono cellulare per abilitare l'autenticazione a due fattori", "send_sms", "Invia SMS", "sms_code", "Codice SMS", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Autenticazione a due fattori", _s18_31, "Disabilita 2FA", _s34_7, "Richiedi una password per il login Social", "stay_logged_in", "Rimani autenticato", _s23_13, "Attenzione: la tua sessione sta per scadere", "count_hours", ":count ore", "count_day", "1 giorno", "count_days", ":count giorni", _s19_20, "Timeout della sessione web", _s17_28, "Impostazioni di Sicurezza", "resend_email", "Reinvia email", _s26_8, "Si prega di confermare l'indirizzo email", _s16_51, "Pagamento Rimborsato", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Mostra azioni", _s17_30, "Lancia multiselezione", _s27_17, "Una mail \xe8 stata inviata per confermare l'indirizzo email", _s21_33, "Per usare :client_counter aggiungere :client_number o :client_id_number per evitare conflitti", "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "Per aggiornare esegui", _s18_33, "Converti a Fattura", _s16_52, "URL di registrazione", "invoice_project", "Fattura progetto", "invoice_task", "Fattura l'attivit\xe0", "invoice_expense", "Fattura Spesa", _s19_25, "Ricerca 1 Termine di pagamento", _s20_28, "Cerca :count termini di pagamento", _s16_54, "Salva e mostra anteprima", "save_and_email", "Salva e invia e-mail", _s16_56, _s16_57, _s16_58, "Importo convertito", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "\xc8 inviato", _s17_34, "Documenti predefiniti", "document_upload", "Caricamento Documenti", _s20_29, "Permettere ai clienti di caricare documenti", "expense_total", "Totale Spese", "enter_taxes", "Inserire tasse", "by_rate", "Per prezzo", "by_amount", "Per ammontare", "enter_amount", "Inserire importo", "before_taxes", "Prima delle tasse", "after_taxes", "Dopo le tasse", "color", "Colore", "show", "Mostra", "hide", "Nascondi", "empty_columns", "Colonne vuote", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Attivit\xe0 in corso", "recent_tasks", "Attivit\xe0 Recenti", "recent_expenses", "Spese Recenti", _s17_36, "Spese in arrivo", "update_app", "Aggiorna App", "started_import", "Importazione avviata con successo", _s24_20, _s24_21, _s20_30, "Usa tasse inclusive", _s18_35, _s18_36, "column", "Colonna", "sample", "Esempio", "map_to", "Map To", "import", "Importa", _s25_15, _s29_6, "select_file", "Seleziona un file, per favore", _s16_60, _s16_61, "csv_file", "Seleziona file CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Tipo di importazione", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Visualizza le licenze", "webhook_url", "Webhook URL", _s17_38, "Editor a schermo intero", "sidebar_editor", "Editor barra laterale", _s22_31, 'Digita ":value" per confermare', "purge", "Purge", "service", "Servizio", "clone_to", "Clona come", "clone_to_other", "Clona come altro", "labels", "Etichette", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Non pagata", "white_label", "White Label", "delivery_note", "Nota di consegna", _s24_23, "Le fatture inviate sono bloccate", _s24_25, "Le fatture pagate sono bloccate", "source_code", "Codice Sorgente", "app_platforms", "App Platforms", "invoice_late", _s18_165, "quote_expired", _s18_166, "partial_due", "Da versare (parziale)", "invoice_total", "Totale Fattura", "quote_total", "Totale Preventivo", "credit_total", "Credito Totale", _s23_14, "Totale fattura", "actions", "Azioni", "expense_number", "Numero spesa", "task_number", "Numero attivit\xe0", "project_number", "Numero progetto", "project_name", "Nome progetto", "warning", "Attenzione", "view_settings", "Impostazioni Visualizzazione", _s24_27, "Attenzione: questa azienda non \xe8 ancora stata attivata", "late_invoice", _s18_165, "expired_quote", _s18_166, "remind_invoice", "Ricorda fattura", "cvv", "CVV", "client_name", "Nome Cliente", "client_phone", "Telefono cliente", "required_fields", "Campi richiesti", "calculated_rate", "Calculated Rate", _s17_40, "Prezzo di attivit\xe0 predefinito", "clear_cache", "Pulisci cache", "sort_order", "Ordinamento", "task_status", "Stato", "task_statuses", "Stati attivit\xe0", "new_task_status", "Nuovo stato attivit\xe0", _s16_62, "Modifica stato attivit\xe0", _s19_26, "Stato attivit\xe0 creato con successo", _s19_27, "Stato dell'attivit\xe0 aggiornato con successo", _s20_32, "Stato attivit\xe0 archiviato con successo", _s19_28, "Stato attivit\xe0 cancellato con successo", _s19_29, "Stato attivit\xe0 rimosso con successo", _s20_33, "Stato attivit\xe0 ripristinato con successo", _s22_32, ":value stati attivit\xe0 archiviati con successo", _s21_37, ":value stati attivit\xe0 cancellati con successo", _s22_33, ":value stati attivit\xe0 ripristinati con successo", _s18_37, "Cerca 1 stato attivit\xe0", _s20_35, "Cerca :count stati attivit\xe0", _s16_64, "Mostra tabella attivit\xe0", _s21_38, "Mostra sempre la sezione delle attivit\xe0 quando si creano le fatture", _s20_36, "Timelog delle attivit\xe0 di fatturazione", _s25_16, "Aggiungere i dettagli sull'orario alle voci della fattura", _s20_38, "Datelog delle attivit\xe0 di fatturazione", _s25_17, "Aggiungi i dettagli della data alle voci della fattura", _s21_39, "Avvia le attivit\xe0 prima di salvare", _s18_38, "Configura gli stati", "task_settings", "Impostazioni attivit\xe0", _s20_40, "Configura Categorie", _s18_40, "Categorie di Spesa", _s20_42, "Nuova Categoria di Spesa", _s21_40, "Modifica Categoria di Spesa", _s24_28, "Categoria spese creata con successo", _s24_29, "Categoria spese aggiornata con successo", _s25_19, "Categoria spese archiviata con successo", _s24_30, "Categoria eliminata con successo", _s24_31, "Categoria di spesa rimossa con successo", _s25_20, "Categoria spese ripristinata con successo", _s27_21, "Archiviato con successo :count categorie di spesa", _s26_10, "Eliminate con successo :value categorie di spesa", _s27_22, "Ripristinate con successo :value categorie di spesa", _s23_15, "Cerca 1 categoria di spesa", _s25_22, "Cerca :count categorie di spesa", _s21_42, _s21_43, "show_option", "Mostra opzione", _s22_34, _s50_8, "view_changes", "Vedi modifiche", "force_update", "Forza aggiornamento", _s17_42, "Stai eseguendo l'ultima versione, ma potrebbero essere disponibili dei fix in attesa.", "mark_paid_help", "Traccia se le spese sono state pagate", _s18_42, "Deve essere fatturata", _s23_16, "Permettere la fatturazione della spesa", _s29_7, "Rendi i documenti visibili", _s21_44, "Imposta un tasso di cambio", _s16_66, "Impostazioni Spese", _s18_43, "Clona come ricorrente", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Campo utente", "variables", "Variabili", "show_password", "Mostra Password", "hide_password", "Nascondi Password", "copy_error", "Copia Errore", "capture_card", "Capture Card", _s17_43, "Fattura automatica abilitata", "total_taxes", "Totale Tasse", "line_taxes", "Riga tasse", "total_fields", "Campi Totale", _s25_23, "Fermata con successo la fattura ricorrente", _s25_24, "Fattura ricorrente avviata con successo", _s25_25, "Fattura ricorrente ripresa con successo", "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Pausato", "mark_active", "Segna come attivo", "day_count", "Giorno :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, "Usa termini di pagamento", "endless", "Endless", "next_send_date", "Prossima data di invio", _s16_68, "Cicli restanti", _s17_47, "Fattura Ricorrente", _s18_45, "Fatture Ricorrenti", _s21_47, "Nuova Fattura Ricorrente", _s22_37, "Modifica Fattura Ricorrente", _s25_26, "Fattura ricorrente creata con successo", _s25_27, "Fattura ricorrente aggiornata con successo", _s26_11, "Fattura ricorrente archiviata con successo", _s25_28, "Fattura ricorrente eliminata con successo", _s25_29, "Fattura ricorrente rimossa con successo", _s26_12, "Fattura ricorrente ripristinata con successo", _s27_23, "Archiviato con successo :value fatture ricorrenti", _s26_13, "Cancellato con successo :value fatture ricorrenti", _s27_24, "Ripristinato con successo :value fatture ricorrenti", _s24_32, "Cerca 1 fattura ricorrente", _s25_30, "Cerca :count Fatture ricorrenti", "send_date", "Data di invio", "auto_bill_on", "Fattura automatica attiva", _s28_7, _s28_8, "profit", "Utile", "line_item", "Riga articolo", _s18_47, "Consenti pagamento in eccesso", _s23_17, "Accetta il pagamento di un extra", _s19_31, "Consenti pagamento ridotto", _s24_33, "Accetta il pagamento parziale o di cauzione", "test_mode", "Modalit\xe0 di test", "opened", "Aperto", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "Registri di sistema", "view_portal", "Visualizza il portale", "copy_link", "Copia Collegamento", "token_billing", "Salva carta di credito", _s24_34, "Benvenuti a Invoice Ninja", "always", "Sempre", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etichetta", "client_number", "Numero Cliente", "auto_convert", "Auto Convert", "company_name", "Nome Azienda", "reminder1_sent", "Promemoria 1 inviato", "reminder2_sent", "Promemoria 2 inviato", "reminder3_sent", "Promemoria 3 inviato", _s18_49, "Ultimo invio promemoria", "pdf_page_info", "Pagina :current di :total", _s16_72, "Fatture inviate con successo", "emailed_quotes", "Preventivi inviati con successo", "emailed_credits", _s28_57, "gateway", "Piattaforma", "view_in_stripe", "View in Stripe", "rows_per_page", "Righe per pagina", "hours", "Ore", "statement", "Dichiarazione", "taxes", "Tasse", "surcharge", "Sovrapprezzo", "apply_payment", "Applica pagamento", "apply_credit", "Apply Credit", "apply", "Applica", "unapplied", "Unapplied", "select_label", "Seleziona etichetta", "custom_labels", "Etichette Personalizzate", "record_type", "Record Type", "record_name", "Record Name", "file_type", "Tipo file", "height", "Altezza", "width", "Larghezza", "to", "a", "health_check", "Health Check", "payment_type_id", _s17_175, "last_login_at", "Ultimo login alle", "company_key", "Chiave azienda", "storefront", "Storefront", "storefront_help", "Permetti alle app di terze parti di creare fatture", "client_created", "Cliente creato", _s20_45, "Email di pagamento online", _s20_47, "Email di pagamento manuale", "completed", "Completato", "gross", "Lordo", "net_amount", "Cifra al netto", "net_balance", "Bilancio Netto", "client_settings", "Impostazioni Cliente", _s17_51, "Fatture Selezionate", _s17_53, "Pagamenti selezionati", "selected_quotes", "Preventivi Selezionati", "selected_tasks", "Attivit\xe0 Selezionate", _s17_55, "Spese Selezionate", _s17_57, "Prossime fatture", _s17_59, "Fatture scadute", "recent_payments", "Pagamenti recenti", "upcoming_quotes", "Preventivi in scadenza", "expired_quotes", "Preventivi Scaduti", "create_client", "Crea nuovo cliente", "create_invoice", "Crea Fattura", "create_quote", "Crea Preventivo", "create_payment", "Crea pagamento", "create_vendor", "Crea fornitore", "update_quote", _s19_105, "delete_quote", "Cancella Preventivo", "update_invoice", "Aggiorna Fattura", "delete_invoice", "Elimina Fattura", "update_client", "Aggiorna Cliente", "delete_client", "Elimina cliente", "delete_payment", "Elimina pagamento", "update_vendor", "Aggiorna Fornitore", "delete_vendor", "Cancella Fornitore", "create_expense", "Crea Spesa", "update_expense", "Aggiorna Spesa", "delete_expense", "Cancella Spesa", "create_task", "Crea un'attivit\xe0", "update_task", "Aggiorna Attivit\xe0", "delete_task", "Cancella l'attivit\xe0", "approve_quote", _s19_105, "off", "Off", "when_paid", "Quando Pagato", "expires_on", "Scade il", "free", "Free", "plan", "Piano", "show_sidebar", "Mostra Barra Laterale", "hide_sidebar", "Nascondi Barra Laterale", "event_type", "Tipo Evento", "target_url", "Target", "copy", "Copia", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Token", "api_docs", "Documentazione API", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token", "new_token", "New Token", "edit_token", "Modifica token", "created_token", "Token creato correttamente", "updated_token", "Token aggiornato correttamente", "archived_token", _s27_25, "deleted_token", "Token eliminato correttamente", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, "Registazione cliente", _s24_36, "Permetti al cliente di registrarsi da solo nel portale", _s21_49, "Personalizza & Anteprima", "email_invoice", "Invia Fattura", "email_quote", "Invia Preventivo via Email", "email_credit", "Email Credit", "email_payment", "Email Pagamento", _s20_50, "Il cliente non ha un indirizzo email impostato", "ledger", "Registro", "view_pdf", "Vedi PDF", "all_records", "Tutti i dati", "owned_by_user", "Posseduto da utente", _s16_78, _s16_79, "contact_name", "Nome Contatto", "use_default", "Usa predefinito", _s16_80, _s25_76, "number_of_days", "Number of days", _s23_19, "Configura termini di pagamento", "payment_term", _s20_126, _s16_81, "Nuovi termini di pagamento", _s17_65, "Modifica termini di pagamento", _s20_51, "Termini di pagamento creato con successo", _s20_52, "Termini di pagamento aggiornato con successo", _s21_50, "Termini di pagamento archiviato con successo", _s20_53, "Termini di pagamento cancellati con successo", _s20_54, "Termini di pagamento rimossi con successo", _s21_51, "Termini di pagamento ripristinati con successo", _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Inviato da Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Importo Credito", "quote_amount", "Importo del preventivo", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Esclusiva", "inclusive", "Inclusiva", "hide_menu", "Nascondi menu", "show_menu", "Mostra menu", _s18_51, _s23_72, _s16_83, "Cerca Documenti", "search_designs", "Search Designs", "search_invoices", "Cerca Fatture", "search_clients", "Cerca Clienti", "search_products", "Cerca Prodotti", "search_quotes", "Cerca Preventivi", "search_credits", "Cerca crediti", "search_vendors", "Cerca fornitori", "search_users", "Cerca utenti", _s16_84, "Cerca aliquote", "search_tasks", "Cerca attivit\xe0", "search_settings", "Cerca Impostazioni", "search_projects", "Cerca prodotti", "search_expenses", "Cerca spese", "search_payments", "Cerca pagamenti", "search_groups", "Cerca gruppi", "search_company", "Cerca Azienda", "search_document", "Cerca 1 documento", "search_design", "Cerca 1 stile", "search_invoice", "Cerca 1 fattura", "search_client", "Cerca 1 cliente", "search_product", "Cerca 1 prodotto", "search_quote", "Cerca 1 preventivo", "search_credit", "Cerca 1 credito", "search_vendor", "Cerca 1 Fornitore", "search_user", "Cerca 1 utente", "search_tax_rate", "Cerca 1 aliquota", "search_task", "Cerca 1 attivit\xe0", "search_project", "Cerca 1 progetto", "search_expense", "Cerca 1 spesa", "search_payment", "Cerca 1 pagamento", "search_group", "Cerca 1 gruppo", "refund_payment", "Rimborsa Pagamento", _s17_69, "Fattura annullata con successo", _s18_53, "Fatture annullate con successo", _s16_90, "Fattura stornata con successo", _s17_70, "Fatture stornate con successo", "reverse", "Reverse", "full_name", "Nome Completo", _s17_71, "Citt\xe0/Stato/CAP", _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Opzionale", "license", "Licenza", "purge_data", "Cancella dati permanentemente", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Saldo della fattura", "age_group_0", "0 - 30 Giorni", "age_group_30", "30 - 60 Giorni", "age_group_60", "60 - 90 Giorni", "age_group_90", "90 - 120 Giorni", "age_group_120", "120+ Giorni", "refresh", "Aggiorna", "saved_design", _s25_31, "client_details", "Dettagli Cliente", "company_address", "Indirizzo azienda", "invoice_details", "Dettagli fattura", "quote_details", "Dettagli Preventivo", "credit_details", "Dettagli Credito", "product_columns", "Colonne Prodotto", "task_columns", "Colonne attivit\xe0", "add_field", "Aggiungi campo", "all_events", "Tutti gli eventi", "permissions", "Permissions", "none", "Nessuno/a", "owned", "Posseduto", "payment_success", "Pagamento riuscito", "payment_failure", "Errore di pagamento", "invoice_sent", ":count fattura inviata", "quote_sent", "Preventivo inviato", "credit_sent", "Credito inviato", "invoice_viewed", "Fattura visualizzata", "quote_viewed", "Preventivo visualizzato", "credit_viewed", "Credito visualizzato", "quote_approved", "Preventivo approvato", _s25_32, "Ricevi tutte le notifiche", _s16_92, "Acquista licenza", "apply_license", "Applica Licenza", "cancel_account", "Elimina l'account", _s22_44, "Attenzione: Questo eliminer\xe0 permanentemente il tuo account, non si potr\xe0 pi\xf9 tornare indietro.", "delete_company", "Elimina azienda", _s22_45, _s69_, "enabled_modules", "Moduli abilitati", "converted_quote", "Preventivo convertito con successo", "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Carica Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Stili", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposte", "tickets", "Tickets", _s16_96, "Preventivi Ricorrenti", "recurring_tasks", "Attivit\xe0 ricorrenti", _s18_55, "Gestione Account", "credit_date", "Data Credito", "credit", "Credito", "credits", "Crediti", "new_credit", "Inserisci il credito", "edit_credit", "Modifica Credito", "created_credit", "Credito creato con successo", "updated_credit", "Credito aggiornato con successo", "archived_credit", "Credito archiviato con successo", "deleted_credit", "Credito eliminato con successo", "removed_credit", _s27_34, "restored_credit", "Credito ripristinato con successo", _s16_98, ":count crediti archiviati con successo", "deleted_credits", ":count crediti eliminati con successo", _s16_99, _s36_9, "current_version", "Versione attuale", "latest_version", "Latest Version", "update_now", "Aggiorna ora", _s26_19, _s41_5, _s16_100, "Aggiornamento disponibile", "app_updated", "Aggiornamento completato con successo", "learn_more", "Scopri di pi\xf9", "integrations", "Integrazioni", "tracking_id", "Id di tracciamento", _s17_75, _s17_76, "credit_footer", "Pi\xe8 di pagina Credito", "credit_terms", "Termini del Credito", "new_company", "Nuova azienda", "added_company", "Azienda aggiunta con successo", "company1", "Azienda Personalizzata 1", "company2", "Azienda Personalizzata 2", "company3", "Azienda Personalizzata 3", "company4", "Azienda Personalizzata 4", "product1", "Prodotto personalizzato 1", "product2", "Prodotto personalizzato 2", "product3", "Prodotto personalizzato 3", "product4", "Prodotto personalizzato 4", "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", "Contatto personalizzato 1", "contact2", "Contatto personalizzato 2", "contact3", "Contatto personalizzato 3", "contact4", "Contatto personalizzato 4", "task1", "Attivit\xe0 personalizzata 1", "task2", "Attivit\xe0 personalizzata 2", "task3", "Attivit\xe0 personalizzata 3", "task4", "Attivit\xe0 personalizzata 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", "Spesa personalizzata 1", "expense2", "Spesa personalizzata 2", "expense3", "Spesa personalizzata 3", "expense4", "Spesa personalizzata 4", "vendor1", "Fornitore Personalizzato 1", "vendor2", "Fornitore Personalizzato 2", "vendor3", "Fornitore Personalizzato 3", "vendor4", "Fornitore Personalizzato 4", "invoice1", "Fattura Personalizzata 1", "invoice2", "Fattura Personalizzata 2", "invoice3", "Fattura Personalizzata 3", "invoice4", "Fattura Personalizzata 4", "payment1", "Pagamento personalizzato 1", "payment2", "Pagamento personalizzato 2", "payment3", "Pagamento personalizzato 3", "payment4", "Pagamento personalizzato 4", "surcharge1", _s24_83, "surcharge2", _s24_84, "surcharge3", _s24_85, "surcharge4", _s24_86, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Numero", "export", "Esporta", "chart", "Grafico", "count", "Count", "totals", "Totali", "blank", "Vuoto", "day", "GIorno", "month", "Mese", "year", "Anno", "subgroup", "Sottogruppo", "is_active", "\xc8 attivo", "group_by", "Raggruppa per", "credit_balance", "Saldo Credito", _s18_61, _s18_62, _s17_77, "Nome completo contatto", "contact_phone", "Telefono Contatto", _s21_53, "Valore personalizzato contatto 1", _s21_54, "Valore personalizzato contatto 2", _s21_55, "Valore personalizzato contatto 3", _s21_56, "Valore personalizzato contatto 4", _s17_79, "Via di spedizione", _s17_80, "Piano/Appartamento di spedizione", "shipping_city", "Citt\xe0 di spedizione", "shipping_state", "Provincia di spedizione", _s20_55, "Codice Postale di spedizione", _s16_130, "Paese di spedizione", _s16_132, "Via di fatturazione", _s16_133, "App/scala di fatturazione", "billing_city", "Citt\xe0 di fatturazione", "billing_state", "Stato/Provincia di fatturazione", _s19_36, "Codice postale di fatturazione", "billing_country", "Paese fatturazione", "client_id", "Id Cliente", "assigned_to", "Assegnato a", "created_by", "Creato da :name", "assigned_to_id", "Assegnato all'ID", "created_by_id", "Creato dall'ID", "add_column", "Aggiungi Colonna", "edit_columns", "Modifica Colonne", "columns", "Colonne", "aging", "Aging", "profit_and_loss", "Utile e Perdite", "reports", "Rapporti", "report", "Report", "add_company", "Aggiungi azienda", "unpaid_invoice", "Fattura non pagata", "paid_invoice", "Fattura pagata", _s16_134, "Preventivi non approvati", "help", "Aiuto", "refund", "Rimborso", "refund_date", "Data di rimborso", "filtered_by", "Filtrato per", "contact_email", "Email di contatto", "multiselect", "Multi-selezione", "entity_state", "Stato", "verify_password", "Verifica Password", "applied", "Applicato", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Messaggio", "from", "Da", _s20_57, "Mostra i dettagli del prodotto", _s25_34, "Includi la descrizione ed il costo nel menu a tendina del prodotto", _s20_59, "Il generatore di PDF richiede :version", _s18_64, "Modifica la percentuale di Tassa", _s23_23, _s33_24, _s18_66, "Configura Impostazioni", "support_forum", "Forum di supporto", "about", "Info", "documentation", "Documentazione", "contact_us", "Contattaci", "subtotal", "Subtotale", "line_total", "Totale riga", "item", "Articolo", "credit_email", "Email credito", "iframe_url", "Website", "domain_url", "URL dominio", _s21_58, "La password \xe8 troppo corta", _s20_60, "La password deve contenere una maiuscola ed un numero", _s19_38, "Attivit\xe0 del portale clienti", _s23_24, "Pannello di Controllo Portale Clienti", _s20_61, "Per favore inserisci un valore", "deleted_logo", "Logo eliminato con successo", "yes", "Si", "no", "No", "generate_number", "Genera numero", "when_saved", "Quando salvato", "when_sent", "Quando inviato", "select_company", "Seleziona azienda", "float", "Float", "collapse", "Collapse", "show_or_hide", "Mostra/nascondi", "menu_sidebar", "Barra laterale del menu", "history_sidebar", "Barra laterale dello storico", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Vedi", "module", "Modulo", "first_custom", "Spazio Personalizzato 1", "second_custom", "Spazio Personalizzato 2", "third_custom", "Spazio Personalizzato 3", "show_cost", "Mostra Costo", _s17_82, "Mostra costo prodotto", "show_cost_help", "Mostra un campo costo prodotto per tracciare il markup/profitto", _s21_59, "Mostra quantit\xe0 prodotto", _s26_21, "Mostra un campo quantit\xe0 prodotto, altrimenti imposta di default a 1", _s21_61, "Mostra quantit\xe0 fattura", _s26_22, "Mostra un campo per la quantit\xe0 degli articoli sulla riga, altrimenti imposta a uno", _s21_63, "Mostra sconto prodotto", _s26_23, "Mostra un campo sconto articolo sulla riga", _s16_136, "Quantit\xe0 predefinita", _s21_65, "Imposta automaticamente la quantit\xe0 dell'elemento nella riga ad uno", "one_tax_rate", "Una aliquota", "two_tax_rates", "Due aliquote", "three_tax_rates", "Tre aliquote", _s16_138, "Aliquota predefinita", "user", "Utente", "invoice_tax", "Tassa fattura", "line_item_tax", "Riga imposta articolo", "inclusive_taxes", "Tasse inclusive", _s17_84, "Aliquote della fattura", "item_tax_rates", "Tassi d'imposta articolo", _s18_68, "Per favore seleziona un cliente", "configure_rates", "Configura aliquote", _s18_69, "Configura i gateway", "tax_settings", "Impostazioni tasse", _s18_71, _s16_309, "accent_color", "Accent Color", "switch", "Cambia", _s19_40, "Lista separata da virgole", "options", "Opzioni", _s16_140, "Testo a riga singola", "multi_line_text", "Testo multi-riga", "dropdown", "Menu a discesa", "field_type", "Tipo di campo", _s27_35, "Una mail di recupero password \xe8 stata inviata", "submit", "Invia", _s16_142, "Recupera password", "late_fees", "Late Fees", "credit_number", "Numero Credito", "payment_number", "Numero di pagamento", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", "Prima della data di scadenza", "after_due_date", _s18_72, _s18_73, "Dopo la data della fattura", "days", "Giorni", "invoice_email", "Email Fattura", "payment_email", "Email Pagamento", "partial_payment", _s18_167, "payment_partial", _s18_167, _s21_66, "Email di pagamento parziale", "quote_email", "Email Preventivo", _s16_145, _s25_76, _s16_147, "Filtrato per utente", "administrator", "Administrator", _s18_74, "Permettere all'utente di gestire gli utenti, cambiare le impostazioni e modificare tutti i record", "user_management", "Gestione utente", "users", "Utenti", "new_user", "Nuovo utente", "edit_user", "Modifca utente", "created_user", "Utente creato con successo", "updated_user", "Utente aggiornato con successo", "archived_user", "Utente archiviato con successo", "deleted_user", "Utente eliminato con successo", "removed_user", "Utente rimosso con successo", "restored_user", "Utente ripristinato con successo", "archived_users", "Archiviati con successo :value utenti", "deleted_users", "Cancellati con successo :value utenti", "removed_users", "Rimossi con successo :value utenti", "restored_users", "Ripristinati con successo :value utenti", _s16_149, "Impostazioni generali", "invoice_options", "Opzioni Fattura", _s17_86, "Nascondi la data di pagamento", _s22_52, 'Visualizza l\'area "Pagato alla data" sulle fatture solo dopo aver ricevuto un pagamento.', _s23_26, "Embed Documents", _s28_20, "Includi immagini allegate alla fattura.", _s16_151, "Mostra l'Intestazione su", _s16_152, "Visualizza Pi\xe8 di Pagina su", "first_page", "Prima pagina", "all_pages", "Tutte le pagine", "last_page", "Ultima pagina", "primary_font", "Font primario", "secondary_font", "Font secondario", "primary_color", "Colore primario", "secondary_color", "Colore secondario", "page_size", "Dimensione Pagina", "font_size", "Dimensione Font", "quote_design", "Stile Preventivo", "invoice_fields", "Campi Fattura", "product_fields", "Campi Prodotto", "invoice_terms", "Termini della fattura", "invoice_footer", "Pi\xe8 di Pagina Fattura", "quote_terms", "Termini del preventivo", "quote_footer", "Pi\xe8 di Pagina Preventivi", _s18_75, "Auto Email", _s23_27, "Invia automaticamente per email le fatture ricorrenti quando vengono create.", _s18_76, "Auto Archiviazione", _s23_28, "Archivia automaticamente i preventivi quando vengono convertiti.", _s18_77, "Conversione automatica", _s23_29, "Converti automaticamente un preventivo in una fattura se approvato da un cliente.", _s17_88, "Impostazioni Flusso di Lavoro", "freq_daily", "Giornaliero", "freq_weekly", "Settimanale", "freq_two_weeks", "Due settimane", "freq_four_weeks", "Quattro settimane", "freq_monthly", "Mensile", "freq_two_months", "Due mesi", _s17_90, "Tre Mesi", _s16_153, "Quattro mesi", "freq_six_months", "Sei Mesi", "freq_annually", "Annuale", "freq_two_years", "Due anni", _s16_154, "Tre anni", "never", "Never", "company", "Azienda", _s17_91, "Generazione Numeri", "charge_taxes", "Applica Tasse", "next_reset", "Prossimo reset", "reset_counter", "Resetta contatori", _s16_155, "Prefisso Ricorrente", "number_padding", "Riempimento numero", "general", "Generale", "surcharge_field", "Campo Sovrattassa", "company_field", "Campo azienda", "company_value", "Valore azienda", "credit_field", "Campo Credito", "invoice_field", "Campo fattura", _s17_93, "Sovrapprezzo Fattura", "client_field", "Campo Cliente", "product_field", "Campo Prodotto", "payment_field", "Campo Pagamento", "contact_field", "Campo Contatti", "vendor_field", "Campo Fornitore", "expense_field", "Campo Spese", "project_field", "Campo Progetto", "task_field", "Campo attivit\xe0", "group_field", "Campo Gruppo", "number_counter", "Numero contatore", "prefix", "Prefisso", "number_pattern", "Formato numero", "messages", "Messaggi", "custom_css", "CSS Personalizzato", _s17_95, "Javascript personalizzato", _s16_157, "Mostra su PDF", _s21_68, "Mostra la firma del cliente sul PDF della fattura/preventivo.", _s25_40, "Casella di controllo termini di servizio fatture", _s30_9, "Rendi obbligatoria l'accettazione dei termini della fattura.", _s23_30, "Casella di controllo termini di servizio preventivi", _s28_21, "Rendi obbligatoria l'accettazione dei termini del preventivo.", _s25_41, "Firma Fattura", _s30_10, "Richiedi al cliente di firmare la fattura.", _s23_31, "Firma Bozza", _s22_54, "Fatture Protette da Password", _s27_36, "Permette di impostare una password per ogni contatto. Se una password \xe8 impostata, al contatto sar\xe0 richiesto di inserire una password prima di visualizzare le fatture.", "authorization", "Autorizzazione", "subdomain", "Sottodominio", "domain", "Dominio", "portal_mode", "Modalit\xe0 portale", "email_signature", "Distinti saluti,", _s24_38, "Rendi pi\xf9 facile per i tuoi clienti pagarti aggiungendo il markup schema.org alle tue e-mail.", "plain", "Semplice", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Allega PDF", _s16_158, "Allega documenti", "attach_ubl", "Allega UBL", "email_style", "Stile Email", _s19_42, "Enable Markup", "reply_to_email", "Indirizzo di Risposta mail", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processato", "credit_card", "Carta di Credito", "bank_transfer", "Bonifico Bancario", "priority", "Priorit\xe0", "fee_amount", "Importo della tassa", "fee_percent", "Tassa Percentuale", "fee_cap", "Tassa massima", "limits_and_fees", "Limits/Fees", "enable_min", "Attiva minimo", "enable_max", "Attiva massimo", "min_limit", "Minimo :min", "max_limit", "Massimo :max", "min", "Min", "max", "ax", _s19_43, "Loghi carte accettate", "credentials", "Credenziali", "update_address", "Aggiorna indirizzo", _s19_45, "Aggiorna l'indirizzo del cliente con i dettagli forniti", "rate", "Prezzo Unitario", "tax_rate", "Aliquota Fiscale", "new_tax_rate", "Nuova Aliquota Fiscale", "edit_tax_rate", "Modifica aliquota fiscale", _s16_160, "Aliquota fiscale creata", _s16_161, "Aliquota fiscale aggiornata", _s17_98, "Archiviato con successo l'aliquota fiscale", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Riempimento automatico prodotti", _s18_80, "Selezionare un prodotto far\xe0 automaticamente inserire la descrizione ed il costo", "update_products", "Aggiorna automaticamente i prodotti", _s20_65, "Aggiornare una fatura far\xe0 automaticamente aggiornare i prodotti", _s16_163, "Converti prodotti", _s21_69, "Converti automaticamenti i prezzi dei prodotti nella valuta del cliente", "fees", "Commissioni", "limits", "Limiti", "provider", "Provider", "company_gateway", "Piattaforma di Pagamento", _s16_165, "Piattaforme di Pagamento", _s19_46, "Nuova Piattaforma", _s20_66, "Modifica Piattaforma", _s23_32, "Piattaforma creata con successo", _s23_33, "Piattaforma aggiornata con successo", _s24_39, "Piattaforma archiviata con successo", _s23_34, "Piattaforma eliminata con successo", _s24_40, "Piattaforma ripristinata con successo", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "Continua la modifica", "discard_changes", "Scarta modifiche", "default_value", "Valore predefinito", "disabled", "Disabilitato", "currency_format", "Formato moneta", _s21_70, "Primo giorno della settimana", _s23_35, "Primo mese dell'anno", "sunday", "Domenica", "monday", "Luned\xec", "tuesday", "Marted\xec", "wednesday", "Mercoled\xec", "thursday", "Gioved\xec", "friday", "Venerd\xec", "saturday", "Sabato", "january", "Gennaio", "february", "Febbraio", "march", "Marzo", "april", "Aprile", "may", "Maggio", "june", "Giugno", "july", "Luglio", "august", "Agosto", "september", "Settembre", "october", "Ottobre", "november", "Novembre", "december", "Dicembre", "symbol", "Simbolo", "ocde", "Codice", "date_format", "Formato data", "datetime_format", "Formato data e ora", "military_time", "24 ore", _s18_81, "Formato 24 ore", "send_reminders", "Invia promemoria", "timezone", "Fuso Orario", _s19_47, _s19_48, _s17_101, "Filtrato per gruppo", _s19_49, "Filtrare per fattura", _s18_82, "Filtrato per cliente", _s18_84, "Filtrato per fornitore", "group_settings", "Impostazioni gruppo", "group", "Gruppo", "groups", "Gruppi", "new_group", "Nuovo gruppo", "edit_group", "Modifica gruppo", "created_group", "Gruppo creato con successo", "updated_group", "Gruppo aggiornato con successo", "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", "Gruppo archiviato con successo", "deleted_group", "Gruppo cancellato con successo", "restored_group", "Gruppo ripristinato con successo", "upload_logo", "Carica logo", "uploaded_logo", "Logo caricato con successo", "logo", "Logo", "saved_settings", "Impostazioni salvate con successo", _s16_169, "Preferenze Prodotti", "device_settings", "Impostazioni dispositivo", "defaults", "Predefiniti", "basic_settings", "Impostazioni Base", _s17_103, "Impostazioni Avanzate", "company_details", "Dettagli Azienda", "user_details", "Dettagli Utente", "localization", "Linguaggio", "online_payments", "Pagamenti Online", "tax_rates", _s16_309, "notifications", "Notifiche", "import_export", "Importa/Esporta", "custom_fields", "Campi Personalizzabili", "invoice_design", "Stile Fattura", "buy_now_buttons", "Puslanti Compra Ora", "email_settings", "Impostazioni email", _s23_37, "Modelli & Promemoria", _s22_55, "Carte di credito & banche", _s19_51, "Visualizzazioni dei dati", "price", "Prezzo", "email_sign_up", "Registrati via Email", "google_sign_up", "Registrati con Google", _s27_40, _s28_25, "redeem", "Riscatta", "back", "Indietro", "past_purchases", "Acquisti passati", _s19_53, "Abbonamento Annuale", "pro_plan", "Piano Pro", "enterprise_plan", "Piano Enterprise", "count_users", ":count utenti", "upgrade", "Aggiorna", _s25_45, _s28_78, _s24_42, "Si prega di inserire un cognome", _s33_21, "Si prega di accettare i termini di servizio e della privacy per creare un account.", "i_agree_to_the", "Accetto la", _s16_171, "Termini di Servizio", "privacy_policy", "Privacy Policy", "sign_up", "Registrati", "account_login", "Login account", "view_website", "Visualizza sito web", "create_account", "Crea un account", "email_login", "Login email", "create_new", "Crea Nuovo", _s18_86, "Nessun dato selezionato", _s21_73, _s34_18, "download", "Scarica", _s27_41, "Richiede un piano enterprise", "take_picture", "Fai foto", "upload_file", "Carica file", "document", "Documento", "documents", "Documenti", "new_document", "Nuovo documento", "edit_document", "Modifica documento", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, ":value documenti archiviati con successo", _s17_108, ":value documenti cancellati con successo", _s18_89, ":value documenti ripristinati con successo", "no_history", "Nessuno Storico", "expense_date", "Data Spesa", "pending", "In attesa", _s16_175, "Registrato", _s16_176, "In attesa", _s16_177, "Fatturata", "converted", "Convertito", _s24_44, "Aggiungere documenti a fattura", "exchange_rate", "Tasso di Cambio", _s16_178, "Converti valuta", "mark_paid", "Segna come Pagata", "category", "Categoria", "address", "Indirizzo", "new_vendor", "Nuovo Fornitore", "created_vendor", "Fornitore creato con successo", "updated_vendor", "Fornitore aggiornato con successo", "archived_vendor", "Fornitore archiviato con successo", "deleted_vendor", "Fornitore eliminato con successo", "restored_vendor", _s28_27, _s16_179, ":count fornitori archiviati con successo", "deleted_vendors", ":count fornitori eliminati con successo", _s16_180, "Ripristinati con successo :value fornitori", "new_expense", "Inserisci spesa", "created_expense", "Spesa creata con successo", "updated_expense", "Spesa aggiornata con successo", _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, "Ripristinate con successo :value spese", "copy_shipping", "Copia Spedizione", "copy_billing", "Copia Fatturazione", "design", "Stile", _s21_74, "Impossibile trovare dati", "invoiced", "Fatturato", "logged", "Registrato", "running", "In corso", "resume", "Riprendi", "task_errors", "Si prega di correggere eventuali tempi di sovrapposizione", "start", "Inizia", "stop", "Ferma", "started_task", "Attivit\xe0 iniziata con successo", "stopped_task", "Attivit\xe0 arrestata con successo", "resumed_task", "Attivit\xe0 ripresa con sucesso", "now", "Adesso", _s16_184, "Partenza automatica delle attivit\xe0", "timer", "Timer", "manual", "Manuale", "budgeted", "Preventivato", "start_time", "Tempo di inizio", "end_time", "Tempo di fine", "date", "Data", "times", "Tempi", "duration", "Durata", "new_task", "Nuova Attivit\xe0", "created_task", "Attivit\xe0 creata con successo", "updated_task", "Attivit\xe0 aggiornata con successo", "archived_task", "Attivit\xe0 archiviata con successo", "deleted_task", "Attivit\xe0 cancellata con successo", "restored_task", "Attivit\xe0 ripristinata con successo", "archived_tasks", ":count attivit\xe0 archiviate correttamente", "deleted_tasks", ":count attivit\xe0 eliminate correttamente", "restored_tasks", ":value attivit\xe0 ripristinate con successo", _s19_55, _s28_78, "budgeted_hours", "Ore preventivate", "created_project", "Progetto creato con successo", "updated_project", "Progetto aggiornato con successo", _s16_186, "Progetto archiviato con successo", "deleted_project", "Progetto eliminato con successo", _s16_187, "Progetto ripristinato con successo", _s17_111, ":count progetti archiviati con successo", _s16_188, ":count progetti eliminati con successo", _s17_112, _s37_15, "new_project", "Nuovo Progetto", _s27_45, "Grazie di avere scelto la nostra app!", "if_you_like_it", _s21_76, "click_here", "clicca qui", _s18_90, "Clicca qui", "to_rate_it", "to rate it.", "average", "Media", "unapproved", "non approvato", _s30_15, "Si prega di autenticarsi per cambiare questa impostazione", "locked", "Bloccato", "authenticate", "Autentica", _s19_57, "Si prega di autenticarsi", _s24_46, "Autenticazione biometrica", "footer", "Pi\xe8 di Pagina", "compare", "Compara", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Oggi", "custom_range", "Intervallo personalizzato", "date_range", "Intervallo di Tempo", "current", "Corrente", "previous", "Precedente", "current_period", "Periodo corrente", _s17_113, "Periodo di comparazione", "previous_period", "Periodo precedente", "previous_year", "Anno precedente", "compare_to", "Compara a", "last7_days", "Ultimi 7 giorni", "last_week", "L'ultima settimana", "last30_days", "Ultimi 30 giorni", "this_month", "Questo mese", "last_month", "Mese scorso", "this_year", "Quest'anno", "last_year", "Anno scorso", "custom", "Personalizzato", _s16_189, "Clona come fattura", "clone_to_quote", "Clona come preventivo", "clone_to_credit", "Clona come credito", "view_invoice", "Visualizzare Fattura", "convert", "Convertire", "more", "Altro", "edit_client", "Modifica Cliente", "edit_product", "Modifica Prodotto", "edit_invoice", "Modifica Fattura", "edit_quote", "Modifica Preventivo", "edit_payment", "Modifica pagamento", "edit_task", "Modifica l'attivit\xe0", "edit_expense", "Modifica Spesa", "edit_vendor", "Modifica Fornitore", "edit_project", "Modifica Progetto", _s20_68, "Modifica Preventivo Ricorrente", "billing_address", "Indirizzo di fatturazione", _s16_191, "Indirizzo di spedizione", "total_revenue", "Ricavo totale", "average_invoice", "Fattura media", "outstanding", "Inevase", "invoices_sent", ":count fatture inviate", "active_clients", "clienti attivi", "close", "Chiudi", "email", "Email", "password", "Password", "url", "URL", "secret", "Segreta", "name", "Nome", "logout", "Esci", "login", "Login", "filter", "Filtra", "sort", "Ordina", "search", "Cerca", "active", "Attivo", "archived", "Archived", "deleted", "Eliminato", "dashboard", "Pannello di Controllo", "archive", "Archivia", "delete", "Elimina", "restore", "Ripristina", _s16_193, "Aggiornamento completi", _s23_38, "Inserisci la tua email", _s26_32, "Si prega di inserire la password", _s21_77, "Inserisci il tuo URL", _s26_34, "Inserire una chiave prodotto", "ascending", "Crescente", "descending", "Decrescente", "save", "Salva", _s17_115, "Si \xe8 verificato un errore", "paid_to_date", "Pagato a oggi", "balance_due", "Totale da Pagare", "balance", "Bilancio", "overview", "Panoramica", "details", "Dettagli", "phone", "Telefono", "website", "Sito web", "vat_number", "Partita IVA", "id_number", "Codice Fiscale", "create", "Crea", _s19_59, "Copiato :value negli appunti", "error", "Errore", _s16_195, "Esecuzione non riuscita", "contacts", "Contatti", "additional", "Aggiuntivo", "first_name", "Nome", "last_name", "Cognome", "add_contact", "Aggiungi contatto", "are_you_sure", "Sei sicuro?", "cancel", "Annulla", "ok", "Ok", "remove", "Elimina", _s16_197, "Email non valida", "product", "Prodotto", "products", "Prodotti", "new_product", "Nuovo Prodotto", "created_product", "Prodotto creato con successo", "updated_product", "Prodotto aggiornato con successo", _s16_199, "Prodotto archiviato con successo", "deleted_product", "Prodotto eliminato con successo", _s16_200, "Prodotto ripristinato con successo", _s17_117, "Archiviati con successo :count prodotti", _s16_201, ":count prodotti eliminati con successo", _s17_118, "Ripristinati con successo :value prodotti", "product_key", "Prodotto", "notes", "Note", "cost", "Cost", "client", "Cliente", "clients", "Clienti", "new_client", "Nuovo Cliente", "created_client", "Cliente creato con successo", "updated_client", "Cliente aggiornato con successo", "archived_client", "Cliente archiviato con successo", _s16_202, ":count clienti archiviati con successo", "deleted_client", _s30_48, "deleted_clients", ":count clienti eliminati con successo", "restored_client", "Cliente ripristinato con successo", _s16_203, _s36_13, "address1", "Via", "address2", "Appartamento/Piano", "city", "Citt\xe0", "state", "Stato/Provincia", "postal_code", "Codice postale", "country", "Paese", "invoice", "Fattura", "invoices", "Fatture", "new_invoice", "Nuova Fattura", "created_invoice", "Fattura creata con successo", "updated_invoice", "Fattura aggiornata con successo", _s16_204, "Fattura archiviata con successo", "deleted_invoice", "Fattura eliminata con successo", _s16_205, "Fattura ripristinata con successo", _s17_119, ":count fatture archiviate con successo", _s16_206, ":count fatture eliminate con successo", _s17_120, "Ripristinato con successo :value fatture", "emailed_invoice", "Fattura inviata con successo", "emailed_payment", _s28_58, "amount", "Importo", "invoice_number", "Numero Fattura", "invoice_date", "Data Fattura", "discount", "Sconto", "po_number", "Numero d'ordine d'acquisto", "terms", "Termini", "public_notes", "Note Pubbliche (Descrizione in fattura)", "private_notes", "Note Personali", "frequency", "Frequenza", "start_date", "Data Inizio", "end_date", "Data Fine", "quote_number", "Numero Preventivo", "quote_date", "Data Preventivo", "valid_until", "Valido fino a", "items", "Articoli", "partial_deposit", _s17_176, "description", "Descrizione", "unit_cost", "Costo unitario", "quantity", "Quantit\xe0", "add_item", "Aggiungi Articolo", "contact", "Contatto", "work_phone", "Telefono", "total_amount", "Ammontare Totale", "pdf", "PDF", "due_date", "Scadenza", _s16_207, _s16_208, "status", "Stato", _s17_121, "Stato della fattura", "quote_status", "Stato preventivo", _s22_56, "Clicca su + per aggiungere un articolo", _s22_58, "Premi + per aggiungere tempo", "count_selected", ":count selezionato/i", "total", "Totale", "percent", "Percentuale", "edit", "Modifica", "dismiss", "Chiudi", _s20_70, "Selezionate una data per favore", _s22_59, "Seleziona un cliente", _s24_48, "Selezionate una fattura per favore", "task_rate", "Tariffa per le attivit\xe0", "settings", "Impostazioni", "language", "Linguaggio", "currency", "Valuta", "created_at", "Data Creazione", "created_on", "Creato il", "updated_at", "Aggiornato", "tax", "Tassa", _s30_17, "Si prega di inserire un numero di fattura", _s27_49, "Inserisci un numero preventivo", "past_due", "Scaduta", "draft", "Bozza", "sent", "Inviato", "viewed", "Visto", "approved", "Approvato", "partial", _s17_176, "paid", "Pagata", "mark_sent", "Contrassegna come inviato", _s22_61, _s48_4, _s22_62, _s48_4, _s23_40, _s48_5, _s23_41, _s48_5, "done", "Completato", _s37_18, "Si prega di inserire un cliente o nome del contatto", "dark_mode", "Modalit\xe0 scura", _s27_51, "Riavviare la app per applicare il cambiamento", "refresh_data", "Aggiorna dati", "blank_contact", "Svuota Contatto", "activity", "Attivit\xe0", _s16_209, "Nessun dato trovato", "clone", "Clona", "loading", "Caricando", "industry", "Industria", "size", "Dimensione", "payment_terms", _s20_126, "payment_date", "Data Pagamento", "payment_status", "Stato del pagamento", _s16_211, "In attesa", _s16_212, "Annullato", _s16_213, "Fallito", _s16_214, "Completato", _s16_215, _s23_72, _s16_216, "Rimborsato", _s17_122, "Non applicato", _s17_123, _s19_23, "net", "Netto", "client_portal", "Portale Clienti", "show_tasks", "Mostra attivit\xe0", "email_reminders", "Promemoria email", "enabled", "Abilitato", "recipients", "Destinatari", "initial_email", "Email iniziale", "first_reminder", "Primo Promemoria", "second_reminder", "Secondo Promemoria", "third_reminder", "Terzo Promemoria", "reminder1", "Primo promemoria", "reminder2", "Secondo promemoria", "reminder3", "Terzo promemoria", "template", "Modello", "send", "Invia", "subject", "Oggetto", "body", "Corpo", "send_email", "Invia Email", "email_receipt", "Invia ricevuta di pagamento al cliente", "auto_billing", _s23_73, "button", "Pulsante", "preview", "Anteprima", "customize", "Personalizza", "history", "Storico", "payment", "Pagamento", "payments", "Pagamenti", "refunded", "Rimborsato", "payment_type", _s17_175, _s21_79, "Riferimento Transazione", "enter_payment", "Inserisci Pagamento", "new_payment", "Inserisci il pagamento", "created_payment", "Pagamento creato con successo", "updated_payment", "Pagamento aggiornato con successo", _s16_217, "Pagamento archiviato con successo", "deleted_payment", "Pagamenti eliminati con successo", _s16_218, "Pagamento ripristinato con successo", _s17_124, ":count pagamenti archiviati con successo", _s16_219, ":count pagamenti eliminati con successo", _s17_125, _s37_20, "quote", "Preventivo", "quotes", "Preventivi", "new_quote", "Nuovo Preventivo", "created_quote", "Preventivo creato con successo", "updated_quote", "Preventivo aggiornato con successo", "archived_quote", "Preventivo archiviato con successo", "deleted_quote", "Preventivo cancellato con successo", "restored_quote", "Preventivo ripristinato con successo", "archived_quotes", "Sono stati archiviati :count preventivi con successo", "deleted_quotes", "Sono stati cancellati :count preventivi con successo", "restored_quotes", _s35_21, "expense", "Spesa", "expenses", "Spese", "vendor", "Fornitore", "vendors", "Fornitori", "task", "Attivit\xe0", "tasks", "Attivit\xe0", "project", "Progetto", "projects", "Progetti", "activity_1", ":user ha creato il cliente :client", "activity_2", ":user ha archiviato il cliente :client", "activity_3", ":user ha cancellato il cliente :client", "activity_4", ":user ha creato la fattura :invoice", "activity_5", ":user ha aggiornato la fattura :invoice", "activity_6", ":user ha inviato per email la fattura :invoice per:client a :contact", "activity_7", ":contact ha visualizzato la fattura :invoice per :client", "activity_8", ":user ha archiviato la fattura :invoice", "activity_9", _s39_13, "activity_10", ":contact ha registrato il pagamento :payment di :payment_amount sulla fattura :invoice per :client", "activity_11", ":user ha aggiornato il pagamento :payment", "activity_12", ":user ha archiviato il pagamento :payment", "activity_13", ":user ha cancellato il pagamento :payment", "activity_14", ":user ha inserito il credito :credit", "activity_15", ":user ha aggiornato il credito :credit", "activity_16", ":user ha archiviato il credito :credit", "activity_17", ":user ha cancellato il credito :credit", "activity_18", _s36_39, "activity_19", _s36_39, "activity_20", ":user ha inviato per email il preventivo :quote per :client a :contact", "activity_21", ":contact ha visto il preventivo :quote", "activity_22", ":user ha archiviato il preventivo :quote", "activity_23", ":user ha cancellato il preventivo :quote", "activity_24", ":user ha ripristinato il preventivo :quote", "activity_25", ":user ha ripristinato la fattura :invoice", "activity_26", ":user ha ripristinato il cliente :client", "activity_27", ":user ha ripristinato il pagamento :payment", "activity_28", ":user ha ripristinato il credito :credit", "activity_29", ":contact ha approvato il preventivo :quote per :client", "activity_30", "L'utente :user ha creato il fornitore :vendor", "activity_31", "L'utente :user ha archiviato il fornitore :vendor", "activity_32", "L'utente :user ha eliminato il fornitore :vendor", "activity_33", "L'utente :user ha ripristinato il fornitore :vendor", "activity_34", "L'utente :user ha creato la spesa :expense", "activity_35", "L'utente :user ha archiviato la spesa :expense", "activity_36", "L'utente :user ha eliminato la spesa :expense", "activity_37", "L'utente :user ha ripristinato la spesa :expense", "activity_39", ":user ha annullato un pagamento :payment da :payment_amount", "activity_40", ":user ha rimborsato :adjustment di un pagamento :payment da :payment_amount", "activity_41", "pagamento di :payment_amount (:payment) fallito", "activity_42", "L'utente :user ha creato l'attivit\xe0 :task", "activity_43", "L'utente :user ha aggiornato l'attivit\xe0 :task", "activity_44", "L'utente :user ha archiviato l'attivit\xe0 :task", "activity_45", "L'utente :user ha eliminato l'attivit\xe0 :task", "activity_46", "L'utente :user ha ripristinato l'attivit\xe0 :task", "activity_47", "L'utente :user ha aggiornato la spesa :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user ha riaperto il ticket :ticket", "activity_55", ":contact ha risposto al ticket :ticket", "activity_56", ":user ha visualizzato il ticket :ticket", "activity_57", "Il sistema non \xe8 riuscito a inviare la fattura :invoice via e-mail", "activity_58", ":user ha stornato la fattura :invoice", "activity_59", _s39_13, "activity_60", ":contact ha visualizzato il preventivo :quote", "activity_61", ":user ha aggiornato il cliente :client", "activity_62", ":user ha aggiornato il fornitore :vendor", "activity_63", ":user ha inviato il primo promemoria per la fattura :invoice a :contact", "activity_64", ":user ha inviato un secondo promemoria per la fattura :invoice a :contact", "activity_65", ":user ha inviato il terzo promemoria per la fattura :invoice a :contact", "activity_66", ":user ha inviato un promemoria ricorrente per la fattura :invoice a :contact", "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Password a uso singolo", "emailed_quote", "Preventivo inviato con successo", "emailed_credit", _s27_62, _s20_72, "Preventivo contrassegnato come inviato con successo", _s21_81, _s34_20, "expired", "Scaduto", "all", "Tutti", "select", "Seleziona", _s22_63, _s22_64, "custom_value1", _s21_135, "custom_value2", _s21_135, "custom_value3", "Valore Personalizzato 3", "custom_value4", "Valore Personalizzato 4", _s18_91, _s18_92, _s24_53, "Messaggio Pannello di Controllo Personalizzato", _s29_36, "Messaggio personalizzato su fattura non pagata", _s27_56, "Messaggio personalizzato fattura pagata", _s31_18, _s31_19, "lock_invoices", "Blocca fatture", "translations", "Traduzioni", _s19_60, "Pattern numero attivit\xe0", _s19_62, "Contatore numero attivit\xe0", _s22_65, "Formato numero spesa", _s22_67, "Contatore numero spesa", _s21_82, "Formato numero fornitore", _s21_84, "Contatore numero venditore", _s21_86, "Formato numero ticket", _s21_88, "Contatore numero ticket", _s22_69, "Formato numero pagamento", _s22_71, "Contatore numero pagamento", _s22_73, "Formato numero fatture", _s22_75, "Contatore numerazione fatture", _s20_73, "Formato numero preventivi", _s20_75, "Contatore numerazione preventivi", _s21_90, _s22_116, _s21_92, _s24_87, _s21_94, _s22_116, _s21_95, _s24_87, _s18_93, "Resetta contatore data", "counter_padding", "Riempimento contatore", _s28_56, "Contatore condiviso per fatture/preventivi", _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, "Oggetto della fattura e-mail", _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, "Oggetto e-mail pagamento parziale", "show_table", "Mostra Tabella", "show_list", "Mostra Lista", "client_city", "Citt\xe0 cliente", "client_state", "Stato cliente", "client_country", "Paese cliente", _s16_220, "Il cliente \xe8 attivo", "client_balance", "Bilancio cliente", "client_address1", "Via del cliente", "client_address2", "Appartamento/Scala del cliente", "vendor_address1", "Via Fornitore", "vendor_address2", "Scala/Appartamento Fornitore", _s24_55, "Via spedizione cliente", _s24_56, "Appartametno/Scala spedizione cliente", "type", "Tipo", "invoice_amount", "Importo Fattura", _s16_224, "Scadenza fattura", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", _s23_73, "archived_at", "Archived At", "has_expenses", "Ha spese", "custom_taxes1", "Tasse Personalizzate 1", "custom_taxes2", "Tasse Personalizzate 2", "custom_taxes3", "Tasse Personalizzate 3", "custom_taxes4", "Tasse Personalizzate 4", _s17_128, _s24_83, _s17_129, _s24_84, _s17_130, _s24_85, _s17_131, _s24_86, "is_deleted", "\xc8 cancellato", "vendor_city", "Citt\xe0 Fornitore", "vendor_state", "Stato Fornitore", "vendor_country", "Paese fornitore", "is_approved", "\xc8 approvato", "tax_name", "Nome Tassa", "tax_amount", "Importo tassa", "tax_paid", "Tassa pagata", "payment_amount", "Importo Pagamento", "age", "Et\xe0", "is_running", "Is Running", "time_log", "Log temporale", "bank_id", "Banca", _s19_66, "ID della categoria di spesa", _s16_225, "Categoria Spesa", _s19_68, "ID Valuta Fattura", "tax_name1", "Nome tassa 1", "tax_name2", "Nome tassa 2", "tax_name3", "Tax Name 3", "transaction_id", "ID transazione", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "ja", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u30b2\u30fc\u30c8\u30a6\u30a7\u30a4\u3092\u8ffd\u52a0", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u8acb\u6c42\u66f8 :invoice \u306b\u8ffd\u52a0", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u8acb\u6c42\u66f8\u901a\u8ca8", "range", "\u7bc4\u56f2", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u8a2d\u5b9a", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u6709\u52b9", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u3042\u306a\u305f\u81ea\u8eab\u306eWeb\u30b5\u30a4\u30c8\u3067\u8acb\u6c42\u66f8\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3\u3092\u8a2d\u5b9a", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, "2\u8981\u7d20\u8a8d\u8a3c\u304c\u6709\u52b9\u5316\u3055\u308c\u307e\u3057\u305f", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "2\u8981\u7d20\u8a8d\u8a3c", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\u7528\u30e1\u30fc\u30eb\u304c\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f", _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "\u8acb\u6c42\u66f8\u306b\u5909\u63db", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u96a0\u3059", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u30ab\u30e9\u30e0", "sample", "\u30b5\u30f3\u30d7\u30eb", "map_to", "Map To", "import", "\u30a4\u30f3\u30dd\u30fc\u30c8", _s25_15, _s29_6, "select_file", "\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", _s16_60, _s16_61, "csv_file", "CSV\u30d5\u30a1\u30a4\u30eb", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u672a\u6255\u3044", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, "\u9001\u4fe1\u6e08\u8acb\u6c42\u66f8\u306f\u30ed\u30c3\u30af\u3055\u308c\u307e\u3057\u305f", _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "\u8acb\u6c42\u5408\u8a08", "quote_total", "\u898b\u7a4d\u91d1\u984d\u5408\u8a08", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "\u7d4c\u8cbb\u756a\u53f7", "task_number", "\u30bf\u30b9\u30af\u756a\u53f7", "project_number", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u756a\u53f7", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u9867\u5ba2\u540d", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "\u5f37\u5236\u7684\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8", _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s25_28, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc", "token_billing", _s17_136, _s24_34, "Invoice Ninja \u3078\u3088\u3046\u3053\u305d", "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "\u9867\u5ba2\u756a\u53f7", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc1\u9001\u4fe1\u6e08", "reminder2_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc2\u9001\u4fe1\u6e08", "reminder3_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc3\u9001\u4fe1\u6e08", _s18_49, "\u6700\u7d42\u30ea\u30de\u30a4\u30f3\u30c0\u30fc\u9001\u4fe1\u6e08", "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "\u7a0e", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "\u524d\u53d7\u91d1\u3092\u9069\u7528", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "\u5165\u91d1\u65b9\u6cd5", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "\u9867\u5ba2\u3092\u767b\u9332\u3057\u307e\u3057\u305f", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "\u5b8c\u4e86", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "\u6b21\u56de\u8acb\u6c42", _s17_59, _s17_60, "recent_payments", "\u6700\u8fd1\u306e\u5165\u91d1", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "\u8acb\u6c42\u3092\u65b0\u898f\u4f5c\u6210", "create_quote", "\u898b\u7a4d\u66f8\u3092\u65b0\u898f\u4f5c\u6210", "create_payment", "Create Payment", "create_vendor", "\u65b0\u3057\u3044\u7d0d\u5165\u696d\u8005", "update_quote", "Update Quote", "delete_quote", "\u898b\u7a4d\u66f8\u3092\u524a\u9664", "update_invoice", "Update Invoice", "delete_invoice", "\u8acb\u6c42\u66f8\u3092\u524a\u9664", "update_client", "Update Client", "delete_client", "\u9867\u5ba2\u3092\u524a\u9664", "delete_payment", "\u5165\u91d1\u3092\u524a\u9664", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "\u30bf\u30b9\u30af\u3092\u65b0\u898f\u4f5c\u6210", "update_task", "Update Task", "delete_task", "\u30bf\u30b9\u30af\u3092\u524a\u9664", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u30d5\u30ea\u30fc", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API\u30c8\u30fc\u30af\u30f3", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u30c8\u30fc\u30af\u30f3", "tokens", "\u30c8\u30fc\u30af\u30f3", "new_token", "New Token", "edit_token", "\u30c8\u30fc\u30af\u30f3\u3092\u7de8\u96c6", "created_token", "\u30c8\u30fc\u30af\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002", "updated_token", "\u30c8\u30fc\u30af\u30f3\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_token", "\u30c8\u30fc\u30af\u30f3\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_token", "\u30c8\u30fc\u30af\u30f3\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u8acb\u6c42\u66f8\u3092\u30e1\u30fc\u30eb\u3059\u308b", "email_quote", "\u898b\u7a4d\u66f8\u3092\u30e1\u30fc\u30eb", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3067\u30ed\u30b0\u30a4\u30f3", "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u524d\u53d7\u91d1\u7dcf\u984d", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, "\u6587\u66f8\u306e\u691c\u7d22", "search_designs", "Search Designs", "search_invoices", "\u8acb\u6c42\u66f8\u306e\u691c\u7d22", "search_clients", "\u9867\u5ba2\u306e\u691c\u7d22", "search_products", "\u5546\u54c1\u306e\u691c\u7d22", "search_quotes", "\u898b\u7a4d\u66f8\u306e\u691c\u7d22", "search_credits", "Search Credits", "search_vendors", "\u7d0d\u5165\u696d\u8005\u306e\u691c\u7d22", "search_users", "\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22", _s16_84, "\u7a0e\u7387\u306e\u691c\u7d22", "search_tasks", "\u30bf\u30b9\u30af\u306e\u691c\u7d22", "search_settings", "\u8a2d\u5b9a\u306e\u691c\u7d22", "search_projects", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u691c\u7d22", "search_expenses", "\u7d4c\u8cbb\u306e\u691c\u7d22", "search_payments", "Search Payments", "search_groups", "\u30b0\u30eb\u30fc\u30d7\u306e\u691c\u7d22", "search_company", "\u4f1a\u793e\u306e\u691c\u7d22", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "\u898b\u7a4d\u66f8\u9001\u4fe1\u6e08", "credit_sent", "\u524d\u53d7\u91d1\u9001\u4fe1\u6e08", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30ad\u30e3\u30f3\u30bb\u30eb", _s22_44, "\u6ce8\u610f: \u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059\u3002\u524a\u9664\u306e\u53d6\u308a\u6d88\u3057\u306f\u51fa\u6765\u307e\u305b\u3093\u3002", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u30d8\u30c3\u30c0", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, "\u7e70\u308a\u8fd4\u3057\u306e\u898b\u7a4d\u66f8", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "\u524d\u53d7\u91d1\u53d7\u65e5\u4ed8", "credit", "\u524d\u53d7\u91d1", "credits", "\u524d\u53d7\u91d1", "new_credit", "\u524d\u53d7\u91d1\u3092\u767b\u9332", "edit_credit", "Edit Credit", "created_credit", "\u524d\u53d7\u91d1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_credit", _s27_32, "archived_credit", "\u524d\u53d7\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_credit", "\u524d\u53d7\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "removed_credit", _s27_34, "restored_credit", "\u524d\u53d7\u91d1\u3092\u5fa9\u65e7\u3057\u307e\u3057\u305f", _s16_98, ":count \u4ef6\u306e\u524d\u53d7\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_credits", ":count \u4ef6\u306e\u524d\u53d7\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_99, _s36_9, "current_version", "\u73fe\u5728\u306e\u30d0\u30fc\u30b8\u30e7\u30f3", "latest_version", "Latest Version", "update_now", "\u4eca\u3059\u3050\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8", _s26_19, "Web\u30a2\u30d7\u30ea\u306e\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059", _s16_100, "\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059", "app_updated", _s29_12, "learn_more", "\u8a73\u7d30\u3092\u898b\u308b", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u65b0\u3057\u3044\u4f1a\u793e", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u30ea\u30bb\u30c3\u30c8", "number", "\u756a\u53f7", "export", "\u30a8\u30af\u30b9\u30dd\u30fc\u30c8", "chart", "\u30c1\u30e3\u30fc\u30c8", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "\u524d\u53d7\u91d1\u6b8b\u9ad8", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "\u30ec\u30dd\u30fc\u30c8", "report", "\u30ec\u30dd\u30fc\u30c8", "add_company", "\u4f1a\u793e\u3092\u8ffd\u52a0", "unpaid_invoice", "\u672a\u6255\u306e\u8acb\u6c42\u66f8", "paid_invoice", "\u652f\u6255\u6e08\u306e\u8acb\u6c42\u66f8", _s16_134, _s16_135, "help", "\u30d8\u30eb\u30d7", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u30e1\u30c3\u30bb\u30fc\u30b8", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "\u5c0f\u8a08", "line_total", "Line Total", "item", "\u30a2\u30a4\u30c6\u30e0", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "\u306f\u3044", "no", "\u3044\u3044\u3048", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u30e6\u30fc\u30b6", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u7a0e\u306e\u8a2d\u5b9a", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u518d\u8a2d\u5b9a", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "\u8acb\u6c42\u66f8\u30e1\u30fc\u30eb", "payment_email", "\u652f\u6255\u3044\u30e1\u30fc\u30eb", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "\u898b\u7a4d\u66f8\u30e1\u30fc\u30eb", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "\u30e6\u30fc\u30b6\u7ba1\u7406", "users", "\u30e6\u30fc\u30b6\u30fc", "new_user", "\u65b0\u3057\u3044\u30e6\u30fc\u30b6", "edit_user", "\u30e6\u30fc\u30b6\u306e\u7de8\u96c6", "created_user", _s25_36, "updated_user", "\u30e6\u30fc\u30b6\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f", "archived_user", "\u30e6\u30fc\u30b6\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_user", "\u30e6\u30fc\u30b6\u3092\u524a\u9664\u3057\u307e\u3057\u305f", "removed_user", _s25_39, "restored_user", "\u30e6\u30fc\u30b6\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u4e00\u822c\u8a2d\u5b9a", "invoice_options", "\u8acb\u6c42\u66f8\u30aa\u30d7\u30b7\u30e7\u30f3", _s17_86, _s17_87, _s22_52, _s87_, _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show header on", _s16_152, "Show footer on", "first_page", "\u6700\u521d\u306e\u30da\u30fc\u30b8", "all_pages", "\u5168\u3066\u306e\u30da\u30fc\u30b8", "last_page", "\u6700\u5f8c\u306e\u30da\u30fc\u30b8", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u30d7\u30e9\u30a4\u30de\u30ea\u30fb\u30ab\u30e9\u30fc", "secondary_color", "\u30bb\u30ab\u30f3\u30c0\u30ea\u30fb\u30ab\u30e9\u30fc", "page_size", "Page Size", "font_size", "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba", "quote_design", "Quote Design", "invoice_fields", "\u8acb\u6c42\u66f8\u3092\u30d5\u30a3\u30fc\u30eb\u30c9", "product_fields", "Product Fields", "invoice_terms", "\u8acb\u6c42\u6761\u4ef6", "invoice_footer", "\u8acb\u6c42\u66f8\u30d5\u30c3\u30bf\u30fc", "quote_terms", "Quote Terms", "quote_footer", "\u898b\u7a4d\u66f8\u30d5\u30c3\u30bf", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9", "number_pattern", "Number Pattern", "messages", "\u30e1\u30c3\u30bb\u30fc\u30b8", "custom_css", "\u30ab\u30b9\u30bf\u30e0CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u3069\u3046\u305e\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\u3002", _s24_38, _s86_, "plain", "\u30d7\u30ec\u30fc\u30f3", "light", "\u30e9\u30a4\u30c8", "dark", "\u30c0\u30fc\u30af", "email_design", "E\u30e1\u30fc\u30eb \u30c7\u30b6\u30a4\u30f3", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "\u30de\u30fc\u30af\u30a2\u30c3\u30d7\u3092\u8a31\u53ef\u3059\u308b", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "\u4f4f\u6240\u3092\u66f4\u65b0", _s19_45, _s45_4, "rate", "\u7387", "tax_rate", "\u7a0e\u7387", "new_tax_rate", "\u65b0\u3057\u3044\u7a0e\u7387", "edit_tax_rate", "\u7a0e\u7387\u3092\u7de8\u96c6", _s16_160, "\u7a0e\u7387\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f", _s16_161, "\u7a0e\u7387\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s17_98, "\u7a0e\u7387\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", "\u5546\u54c1\u306e\u81ea\u52d5\u66f4\u65b0", _s20_65, _s65_0, _s16_163, "\u5546\u54c1\u306e\u5909\u63db", _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "\u901a\u8ca8\u30d5\u30a9\u30fc\u30de\u30c3\u30c8", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "\u65e5\u66dc\u65e5", "monday", "\u6708\u66dc\u65e5", "tuesday", "\u706b\u66dc\u65e5", "wednesday", "\u6c34\u66dc\u65e5", "thursday", "\u6728\u66dc\u65e5", "friday", "\u91d1\u66dc\u65e5", "saturday", "\u571f\u66dc\u65e5", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "\u30ed\u30b4", "saved_settings", _s27_39, _s16_169, "\u5546\u54c1\u8a2d\u5b9a", "device_settings", "Device Settings", "defaults", "\u30c7\u30d5\u30a9\u30eb\u30c8", "basic_settings", "Basic Settings", _s17_103, "\u8a73\u7d30\u8a2d\u5b9a", "company_details", "\u4f01\u696d\u60c5\u5831", "user_details", "\u30e6\u30fc\u30b6\u306e\u8a73\u7d30", "localization", "\u5730\u57df\u8a2d\u5b9a", "online_payments", "\u30aa\u30f3\u30e9\u30a4\u30f3\u5165\u91d1", "tax_rates", "\u7a0e\u7387", "notifications", "\u901a\u77e5", "import_export", "\u30a4\u30f3\u30dd\u30fc\u30c8 | \u30a8\u30af\u30b9\u30dd\u30fc\u30c8 | \u30ad\u30e3\u30f3\u30bb\u30eb", "custom_fields", "\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9", "invoice_design", "\u8acb\u6c42\u66f8\u30c7\u30b6\u30a4\u30f3", "buy_now_buttons", "Buy Now Buttons", "email_settings", "E\u30e1\u30fc\u30eb\u8a2d\u5b9a", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, "\u30d3\u30b8\u30e5\u30a2\u30eb\u30c7\u30fc\u30bf", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u5229\u7528\u898f\u7d04", "privacy_policy", "Privacy Policy", "sign_up", "\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "\u4fdd\u7559", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "\u652f\u6255\u6e08\u306b\u3059\u308b", "category", "Category", "address", "\u4f4f\u6240", "new_vendor", "New Vendor", "created_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_vendor", _s28_27, _s16_179, ":count \u4ef6\u306e\u7d0d\u5165\u696d\u8005\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_vendors", ":count \u4ef6\u306e\u7d0d\u5165\u696d\u8005\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, "\u7d4c\u8cbb\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u306b\u6210\u529f\u3057\u307e\u3057\u305f", _s16_183, "\u7d4c\u8cbb\u306e\u524a\u9664\u306b\u6210\u529f\u3057\u307e\u3057\u305f", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "\u30b9\u30bf\u30fc\u30c8", "stop", "\u30b9\u30c8\u30c3\u30d7", "started_task", _s25_47, "stopped_task", "\u30bf\u30b9\u30af\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002", "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "\u30bf\u30a4\u30de\u30fc", "manual", "Manual", "budgeted", "Budgeted", "start_time", "\u958b\u59cb\u6642\u9593", "end_time", "\u7d42\u4e86\u6642\u9593", "date", "\u65e5\u4ed8", "times", "Times", "duration", "Duration", "new_task", "\u65b0\u3057\u3044\u30bf\u30b9\u30af", "created_task", "\u30bf\u30b9\u30af\u304c\u767b\u9332\u3055\u308c\u307e\u3057\u305f\u3002", "updated_task", "\u30bf\u30b9\u30af\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002", "archived_task", "\u30bf\u30b9\u30af\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_task", "\u30bf\u30b9\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_task", "\u30bf\u30b9\u30af\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_tasks", ":count\u4ef6\u306e\u30bf\u30b9\u30af\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_tasks", ":count\u4ef6\u306e\u30bf\u30b9\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_186, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_project", _s28_33, _s16_187, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s17_111, ":count \u4ef6\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "\u65b0\u3057\u3044\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", _s27_45, "\u5f0a\u793e\u306eApp\u3092\u3054\u5229\u7528\u9802\u304d\u8aa0\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002", "if_you_like_it", _s21_76, "click_here", "\u3053\u3061\u3089\u3092\u30af\u30ea\u30c3\u30af", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "\u5e73\u5747", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "\u30d5\u30c3\u30bf", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "\u30ab\u30b9\u30bf\u30e0", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u8acb\u6c42\u66f8\u3092\u8868\u793a", "convert", "Convert", "more", "More", "edit_client", "\u9867\u5ba2\u3092\u7de8\u96c6", "edit_product", "\u5546\u54c1\u3092\u7de8\u96c6", "edit_invoice", "\u8acb\u6c42\u3092\u7de8\u96c6", "edit_quote", "\u898b\u7a4d\u66f8\u3092\u7de8\u96c6", "edit_payment", "\u652f\u6255\u3044\u3092\u7de8\u96c6", "edit_task", "\u30bf\u30b9\u30af\u3092\u66f4\u65b0", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u7de8\u96c6", _s20_68, _s20_69, "billing_address", "\u8acb\u6c42\u5148\u4f4f\u6240", _s16_191, _s16_192, "total_revenue", "Total Revenue", "average_invoice", "\u8acb\u6c42\u306e\u5e73\u5747", "outstanding", "Outstanding", "invoices_sent", _s20_77, "active_clients", "\u6709\u52b9\u306a\u9867\u5ba2", "close", "\u9589\u3058\u308b", "email", "E\u30e1\u30fc\u30eb", "password", "\u30d1\u30b9\u30ef\u30fc\u30c9", "url", "URL", "secret", "Secret", "name", "\u540d\u524d", "logout", "\u30ed\u30b0\u30a2\u30a6\u30c8", "login", "\u30ed\u30b0\u30a4\u30f3", "filter", "\u30d5\u30a3\u30eb\u30bf\u30fc", "sort", "Sort", "search", "\u691c\u7d22", "active", "\u6709\u52b9", "archived", "Archived", "deleted", "Deleted", "dashboard", "\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9", "archive", "\u30a2\u30fc\u30ab\u30a4\u30d6", "delete", "\u524a\u9664", "restore", "\u30ea\u30b9\u30c8\u30a2", _s16_193, "\u66f4\u65b0\u5b8c\u4e86", _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "\u4fdd\u5b58", _s17_115, _s17_116, "paid_to_date", "\u73fe\u5728\u307e\u3067\u306e\u652f\u6255\u6e08\u984d", "balance_due", "Balance Due", "balance", "\u30d0\u30e9\u30f3\u30b9", "overview", "\u6982\u8981", "details", "\u8a73\u7d30", "phone", "\u96fb\u8a71", "website", "WEB\u30b5\u30a4\u30c8", "vat_number", "VAT\u30ca\u30f3\u30d0\u30fc", "id_number", "ID\u30ca\u30f3\u30d0\u30fc", "create", "\u4f5c\u6210", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "\u30b3\u30f3\u30bf\u30af\u30c8", "additional", "Additional", "first_name", "\u540d", "last_name", "\u59d3", "add_contact", "\u9023\u7d61\u5148\u306e\u8ffd\u52a0", "are_you_sure", "\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f", "cancel", "\u30ad\u30e3\u30f3\u30bb\u30eb", "ok", "Ok", "remove", "Remove", _s16_197, "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304c\u7121\u52b9\u3067\u3059", "product", "\u5546\u54c1", "products", "\u5546\u54c1", "new_product", "\u65b0\u3057\u3044\u5546\u54c1", "created_product", "\u5546\u54c1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_product", "\u5546\u54c1\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_199, "\u5546\u54c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, ":count \u500b\u306e\u5546\u54c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_201, ":count \u500b\u306e\u5546\u54c1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_118, _s37_16, "product_key", "Product", "notes", "\u30ce\u30fc\u30c8", "cost", "Cost", "client", "\u9867\u5ba2", "clients", "\u9867\u5ba2", "new_client", "\u65b0\u3057\u3044\u9867\u5ba2", "created_client", "\u9867\u5ba2\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_client", "\u9867\u5ba2\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_client", "\u9867\u5ba2\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_202, ":count \u4ef6\u306e\u9867\u5ba2\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_client", "\u9867\u5ba2\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "deleted_clients", ":count \u770c\u306e\u9867\u5ba2\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_client", "\u9867\u5ba2\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s16_203, _s36_13, "address1", "\u756a\u5730", "address2", "\u5efa\u7269", "city", "\u5e02\u533a\u753a\u6751", "state", "\u90fd\u9053\u5e9c\u770c", "postal_code", "\u90f5\u4fbf\u756a\u53f7", "country", "\u56fd", "invoice", "\u8acb\u6c42\u66f8", "invoices", "\u8acb\u6c42\u66f8", "new_invoice", "\u65b0\u3057\u3044\u8acb\u6c42\u66f8", "created_invoice", "\u8acb\u6c42\u66f8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_invoice", "\u8acb\u6c42\u66f8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_204, "\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_invoice", "\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_205, "\u8acb\u6c42\u66f8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s17_119, ":count \u4ef6\u306e\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_206, ":count \u4ef6\u306e\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_120, _s37_17, "emailed_invoice", "\u8acb\u6c42\u66f8\u3092\u30e1\u30fc\u30eb\u3057\u307e\u3057\u305f\u3002", "emailed_payment", _s28_58, "amount", "\u91d1\u984d", "invoice_number", "\u8acb\u6c42\u66f8\u756a\u53f7", "invoice_date", "\u8acb\u6c42\u65e5", "discount", "\u5024\u5f15\u304d", "po_number", "PO\u756a\u53f7", "terms", "\u6761\u9805", "public_notes", "Public Notes", "private_notes", "\u975e\u516c\u958b\u5099\u8003", "frequency", "\u983b\u5ea6", "start_date", "\u958b\u59cb\u65e5", "end_date", "\u7d42\u4e86\u65e5", "quote_number", "\u898b\u7a4d\u66f8\u756a\u53f7", "quote_date", "\u898b\u7a4d\u65e5", "valid_until", "Valid Until", "items", "\u30a2\u30a4\u30c6\u30e0", "partial_deposit", "Partial/Deposit", "description", "\u8aac\u660e", "unit_cost", "\u5358\u4fa1", "quantity", "\u6570\u91cf", "add_item", "\u30a2\u30a4\u30c6\u30e0\u3092\u8ffd\u52a0", "contact", "\u30b3\u30f3\u30bf\u30af\u30c8", "work_phone", "\u96fb\u8a71\u756a\u53f7", "total_amount", "\u5408\u8a08\u91d1\u984d", "pdf", "PDF", "due_date", "\u652f\u6255\u65e5", _s16_207, _s16_208, "status", "\u30b9\u30c6\u30fc\u30bf\u30b9", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "\u5408\u8a08", "percent", "Percent", "edit", "\u7de8\u96c6", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "\u8a2d\u5b9a", "language", "Language", "currency", "\u901a\u8ca8", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u7a0e", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "\u9001\u4fe1\u6e08", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "\u652f\u6255\u6e08", "mark_sent", "\u9001\u4ed8\u6e08\u307f\u306b\u3059\u308b", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "\u5b8c\u4e86", _s37_18, _s37_19, "dark_mode", "\u30c0\u30fc\u30af\u30e2\u30fc\u30c9", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3", _s16_209, _s16_210, "clone", "\u8907\u88fd", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u652f\u6255\u6761\u4ef6", "payment_date", "\u652f\u6255\u65e5", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "\u5b8c\u4e86", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "\u9867\u5ba2\u30dd\u30fc\u30bf\u30eb", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "\u30b5\u30d6\u30b8\u30a7\u30af\u30c8", "body", "\u672c\u6587", "send_email", "\u30e1\u30fc\u30eb\u3092\u9001\u4fe1", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "\u30ab\u30b9\u30bf\u30de\u30a4\u30ba", "history", "\u5c65\u6b74", "payment", "Payment", "payments", "\u5165\u91d1", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, _s21_80, "enter_payment", "\u5165\u91d1\u3092\u767b\u9332", "new_payment", "\u5165\u91d1\u3092\u767b\u9332", "created_payment", "\u5165\u91d1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_payment", "\u652f\u6255\u3044\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f", _s16_217, "\u5165\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_payment", "\u5165\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_218, _s29_29, _s17_124, ":count \u4ef6\u306e\u5165\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_219, ":count \u4ef6\u306e\u5165\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_125, _s37_20, "quote", "\u898b\u7a4d\u66f8", "quotes", "\u898b\u7a4d\u66f8", "new_quote", "\u65b0\u3057\u3044\u898b\u7a4d\u66f8", "created_quote", "\u898b\u7a4d\u66f8\u3092\u65b0\u898f\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "updated_quote", "\u898b\u7a4d\u66f8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_quote", "\u898b\u7a4d\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_quote", "\u898b\u7a4d\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_quote", "\u898b\u7a4d\u66f8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_quotes", ":count\u4ef6\u306e\u898b\u7a4d\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_quotes", ":count\u4ef6\u306e\u898b\u7a4d\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_quotes", _s35_21, "expense", "Expense", "expenses", "\u7d4c\u8cbb", "vendor", "Vendor", "vendors", "\u7d0d\u5165\u696d\u8005", "task", "Task", "tasks", "\u30bf\u30b9\u30af", "project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", "projects", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", "activity_1", ":user \u306f \u9867\u5ba2 :client \u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "activity_2", ":user \u306f \u9867\u5ba2 :client \u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "activity_3", ":user \u306f \u9867\u5ba2 :client \u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "activity_4", ":user \u306f \u8acb\u6c42\u66f8 :invoice \u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "activity_5", _s32_25, "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s32_25, "activity_9", _s32_25, "activity_10", _s85_0, "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\u30ef\u30f3\u30bf\u30a4\u30e0\u30d1\u30b9\u30ef\u30fc\u30c9", "emailed_quote", "\u898b\u7a4d\u66f8\u3092\u30e1\u30fc\u30eb\u3057\u307e\u3057\u305f\u3002", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "\u9078\u629e", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "\u8acb\u6c42\u66f8\u3092\u30ed\u30c3\u30af", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u8acb\u6c42\u66f8\u756a\u53f7\u30ab\u30a6\u30f3\u30bf\u30fc", _s20_73, _s20_74, _s20_75, "\u8acb\u6c42\u66f8\u756a\u53f7\u30ab\u30a6\u30f3\u30bf\u30fc", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "\u30c6\u30fc\u30d6\u30eb\u3092\u8868\u793a", "show_list", "\u30ea\u30b9\u30c8\u3092\u8868\u793a", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "\u652f\u6255\u671f\u65e5", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u7a0e\u540d\u79f0", "tax_amount", "Tax Amount", "tax_paid", "\u7a0e\u91d1\u652f\u6255\u6e08", "payment_amount", "\u5165\u91d1\u984d", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u9280\u884c", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "lv_LV", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "P\u0113c Noklus\u0113juma", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "St\u0101voklis", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s23_42, _s17_6, _s17_7, "week", "Ned\u0113\u013ca", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "Diapazons", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Set Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "Skat\u012bt kopskatu", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "At\u013caut", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Noraid\u012bts", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Iepriek\u0161\u0113jais Kvart\u0101ls", "to_update_run", "To update run", _s18_33, _s18_34, _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolonna", "sample", "Paraugs", "map_to", "Map To", "import", "Imports", _s25_15, _s29_6, "select_file", "L\u016bdzu, izv\u0113lieties failu", _s16_60, _s16_61, "csv_file", "CSV fails", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Serviss", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Pieg\u0101des piez\u012bme", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Da\u013c\u0113js maks\u0101jums", "invoice_total", "Kop\u0113jais r\u0113\u0137ins", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Klienta v\u0101rds", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, "Atk\u0101rtoti r\u0113\u0137ini", _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Atv\u0113rti", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", _s17_136, _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "Veiksm\u012bgi nos\u016bt\u012bti r\u0113\u0137ini", "emailed_quotes", "Veiksm\u012bgi nos\u016bt\u012bti cit\u0101ti", "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Stundas", "statement", "Konta izraksts", "taxes", "Nodok\u013ci", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Maks\u0101juma veids", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Izv\u0113l\u0113ties Pied\u0101v\u0101jumu", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Gaid\u0101mie r\u0113\u0137ini", _s17_59, _s17_60, "recent_payments", "Recent Payments", "upcoming_quotes", "Gaid\u0101mie Pied\u0101v\u0101jumi", "expired_quotes", "Pied\u0101v\u0101jumi, kuriem beidzies der\u012bguma termi\u0146\u0161.", "create_client", "Create Client", "create_invoice", "Izveidojiet r\u0113\u0137inu", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Dz\u0113st r\u0113\u0137inu", "update_client", "Update Client", "delete_client", "Dz\u0113st klientu", "delete_payment", "Dz\u0113st maks\u0101jumu", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Nos\u016bt\u012bt r\u0113\u0137inu", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kred\u012bta summa", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Mekl\u0113t Pied\u0101v\u0101jumu", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Bi\u013cetes", _s16_96, "Atk\u0101rtoti Pied\u0101v\u0101jumi", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Kred\u012bta datums", "credit", "Kred\u012bts", "credits", "Kred\u012bti", "new_credit", "Ievadiet kred\u012btu", "edit_credit", "Edit Credit", "created_credit", _s27_31, "updated_credit", _s27_32, "archived_credit", _s28_18, "deleted_credit", _s27_33, "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, _s36_18, "deleted_credits", _s35_23, _s16_99, _s36_9, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Uzzin\u0101t vair\u0101k", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Diena", "month", "M\u0113nesis", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Kred\u012bta atlikums", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Nor\u0113\u0137inu iela", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "E-pasts sazi\u0146ai", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Zi\u0146ojums", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Starpsumma", "line_total", "Poz\u012bcija kop\u0101", "item", "Poz\u012bcija", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mob\u012bl\u0101", "desktop", "Desktopa", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Iesniegt", _s16_142, _s21_101, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "R\u0113\u0137ina e-pasts", "payment_email", "Maks\u0101jumu e-pasts", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Cit\u0113t e-pastu", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "User Management", "users", "Lietot\u0101ji", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_36, "updated_user", _s25_37, "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Invoice Options", _s17_86, _s17_87, _s22_52, _s87_, _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "R\u0113\u0137ina nosac\u012bjumi", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, "Autom\u0101tiski arhiv\u0113t Pied\u0101v\u0101jumu, kad tas ticis konvert\u0113ts.", _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Piel\u0101gota CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Ar cie\u0146u,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "E-pasta dizains", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Atbild\u0113t uz e-pastu", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kred\u012btkarte", "bank_transfer", "Bankas p\u0101rskait\u012bjums", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Maks: :maks", "min", "Min", "max", "Maks", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "Likme", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", _s20_78, _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Izmaksas", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "Janv\u0101ris", "february", "Febru\u0101ris", "march", "Marts", "april", "Apr\u012blis", "may", "Maijs", "june", "J\u016bnijs", "july", "J\u016blijs", "august", "Augusts", "september", "Septembris", "october", "Oktobris", "november", "Novembris", "december", "Decembris", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, _s16_170, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_103, _s17_104, "company_details", "Uz\u0146\u0113muma inform\u0101cija", "user_details", "User Details", "localization", "Lokaliz\u0101cija", "online_payments", "Tie\u0161saites maks\u0101jumi", "tax_rates", "Nodok\u013cu likmes", "notifications", "Pazi\u0146ojumi", "import_export", "Imports / Eksports", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "E-pasta iestat\u012bjumi", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s19_52, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, _s16_172, "privacy_policy", "Priv\u0101tuma politika", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Lejupiel\u0101d\u0113t", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Mark Paid", "category", "Category", "address", "Adrese", "new_vendor", "New Vendor", "created_vendor", _s27_42, "updated_vendor", _s27_43, "archived_vendor", _s28_26, "deleted_vendor", _s27_44, "restored_vendor", _s28_27, _s16_179, _s36_19, "deleted_vendors", _s35_24, _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Datums", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_50, "updated_task", _s25_51, "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", _s34_22, "deleted_tasks", _s33_25, "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "Jauns projekts", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "click here", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Sal\u012bdzin\u0101t", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "\u0160odien", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Teko\u0161ais", "previous", "Iepriek\u0161\u0113jais", "current_period", "Teko\u0161ais periods", _s17_113, _s17_114, "previous_period", "Iepriek\u0161\u0113jais periods", "previous_year", "Iepriek\u0161\u0113jais gads", "compare_to", "Sal\u012bdzin\u0101t ar", "last7_days", "P\u0113d\u0113jas 7 dienas", "last_week", "P\u0113d\u0113ja ned\u0113\u013ca", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_189, _s16_190, "clone_to_quote", "Nokop\u0113t uz cenu pied\u0101v\u0101jumu", "clone_to_credit", "Clone to Credit", "view_invoice", "Apskat\u012bt r\u0113\u0137inu", "convert", "Konvert\u0113t", "more", "Vair\u0101k", "edit_client", "Redi\u0123\u0113t klientu", "edit_product", "Edit Product", "edit_invoice", "Redi\u0123\u0113t r\u0113\u0137inu", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Redi\u0123\u0113t projektu", _s20_68, _s20_69, "billing_address", "Billing Address", _s16_191, "Pieg\u0101des adrese", "total_revenue", "Total Revenue", "average_invoice", "Vid\u0113jais r\u0113\u0137ins", "outstanding", "Nesamaks\u0101ts", "invoices_sent", _s20_77, "active_clients", "akt\u012bvie klienti", "close", "Aizv\u0113rt", "email", "Epasts", "password", "Password", "url", "URL", "secret", "Secret", "name", "Nosaukums", "logout", "Log Out", "login", "Login", "filter", "Filtrs", "sort", "\u0160\u0137irot", "search", "Mekl\u0113t", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Inform\u0101cijas panelis", "archive", "Arh\u012bvs", "delete", "Dz\u0113st", "restore", "Restore", _s16_193, "Atjauno\u0161ana pabeigta", _s23_38, "L\u016bdzu ievadiet j\u016bsu epastu", _s26_32, "L\u016bdzu ievadiet j\u016bsu paroli", _s21_77, "L\u016bdzu ievadiet j\u016bsu URL", _s26_34, "L\u016bdzu ievadiet produkta atsl\u0113gu", "ascending", "Ascending", "descending", "Descending", "save", "Saglab\u0101t", _s17_115, _s17_116, "paid_to_date", "Apmaks\u0101ts l\u012bdz r\u0113\u0137ina izrakst\u012b\u0161anas datumam", "balance_due", "Summa apmaksai", "balance", "Bilance", "overview", "Overview", "details", "S\u012bk\u0101ka inform\u0101cija", "phone", "T\u0101lrunis", "website", "M\u0101jas lapa", "vat_number", "PVN re\u0123. Nr.", "id_number", "Re\u0123. Nr.", "create", "Izveidot", _s19_59, _s30_16, "error", "K\u013c\u016bda", _s16_195, _s16_196, "contacts", "Kontakti", "additional", "Additional", "first_name", "V\u0101rds", "last_name", "Uzv\u0101rds", "add_contact", "Pievienot kontaktu", "are_you_sure", "Vai tu esi p\u0101rliecin\u0101ts?", "cancel", "Atcelt", "ok", "Ok", "remove", "No\u0146emt", _s16_197, _s16_198, "product", "Produkts", "products", "Produkti", "new_product", "New Product", "created_product", _s28_35, "updated_product", _s28_36, _s16_199, _s29_24, "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "Piez\u012bmes", "cost", "Cost", "client", "Klients", "clients", "Klienti", "new_client", "Jauns klients", "created_client", "Veiksm\u012bgi izveidots klients", "updated_client", _s27_47, "archived_client", _s28_38, _s16_202, _s36_20, "deleted_client", _s27_48, "deleted_clients", _s35_25, "restored_client", _s28_39, _s16_203, _s36_13, "address1", "Iela", "address2", "Dz/Kab", "city", "Pils\u0113ta", "state", "Novads", "postal_code", "Pasta indekss", "country", "Country", "invoice", "R\u0113\u0137ins", "invoices", "R\u0113\u0137ini", "new_invoice", "Jauns r\u0113\u0137ins", "created_invoice", _s28_40, "updated_invoice", _s28_41, _s16_204, _s29_26, "deleted_invoice", _s28_42, _s16_205, _s29_27, _s17_119, _s37_25, _s16_206, _s36_21, _s17_120, _s37_17, "emailed_invoice", _s28_67, "emailed_payment", _s28_58, "amount", "Summa", "invoice_number", "R\u0113\u0137ina numurs", "invoice_date", "R\u0113\u0137ina datums", "discount", "Atlaide", "po_number", "Pas\u016bt\u012bjuma numurs", "terms", "Nosac\u012bjumi", "public_notes", "Publiskas piez\u012bmes", "private_notes", "Priv\u0101tas piez\u012bmes", "frequency", "Bie\u017eums", "start_date", "S\u0101kuma datums", "end_date", "Beigu datums", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Der\u012bgs l\u012bdz", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Apraksts", "unit_cost", "Vien\u012bbas cena", "quantity", "Daudzums", "add_item", "Add Item", "contact", "Kontakts", "work_phone", "T\u0101lrunis", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Apmaks\u0101t l\u012bdz", _s16_207, _s16_208, "status", "Statuss", _s17_121, "R\u0113\u0137ina statuss", "quote_status", "Cenu pied\u0101v\u0101juma statuss", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Iestat\u012bjumi", "language", "Valoda", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Atjaunots", "tax", "Nodoklis", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Skat\u012bts", "approved", "Approved", "partial", "Partial/Deposit", "paid", "Paid", "mark_sent", "Mark Sent", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Izpild\u012bts", _s37_18, _s37_19, "dark_mode", "Dark Mode", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivit\u0101te", _s16_209, _s16_210, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Izm\u0113rs", "payment_terms", "Apmaksas termi\u0146\u0161", "payment_date", "Maks\u0101juma datums", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Sa\u0146\u0113m\u0113ji", "initial_email", "Standarta e-pasts", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Sagatave", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "S\u016bt\u012bt e-pastu", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Poga", "preview", "Apskat\u012bt", "customize", "Piel\u0101got", "history", "V\u0113sture", "payment", "Payment", "payments", "Maks\u0101jumi", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "Dar\u012bjuma atsauce", "enter_payment", "Ievadiet maks\u0101jumu", "new_payment", "Ievad\u012bt maks\u0101jumu", "created_payment", _s28_43, "updated_payment", _s28_44, _s16_217, _s29_28, "deleted_payment", _s28_45, _s16_218, _s29_29, _s17_124, _s37_26, _s16_219, _s36_22, _s17_125, _s37_20, "quote", "Quote", "quotes", "Pied\u0101v\u0101jumi", "new_quote", "New Quote", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", "Veiksm\u012bgi saarhiv\u0113ti :count Pied\u0101v\u0101jumi", "deleted_quotes", "Veiksm\u012bgi dz\u0113sti :count Pied\u0101v\u0101jumi", "restored_quotes", "Veiksm\u012bgi atjaunin\u0101ti :value Pied\u0101v\u0101jumi", "expense", "Expense", "expenses", "Izdevumi", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Projekts", "projects", "Projekti", "activity_1", _s28_46, "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", _s30_19, "activity_5", _s30_20, "activity_6", ":user nos\u016bt\u012bja r\u0113\u0137inu :invoice priek\u0161 :client uz :contact", "activity_7", ":contact ir apskat\u012bjis R\u0113\u0137inu :invoice priek\u0161 :client", "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", ":contact ievad\u012bja Maks\u0101jumu :payment par Summu :payment_amount R\u0113\u0137inam :invoice priek\u0161 :client", "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", ":user nos\u016bt\u012bja Pied\u0101v\u0101jumu :quote priek\u0161 :client uz :contact", "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", ":contact apstiprin\u0101ja Pied\u0101v\u0101jumu :quote priek\u0161 :client", "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user atk\u0101rtoti atv\u0113ra Zi\u0146ojumu :ticket", "activity_55", ":contact atbild\u0113ja uz Zi\u0146ojumu :ticket", "activity_56", ":user paskatij\u0101s Zi\u0146ojumu :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", _s26_44, "emailed_credit", _s27_62, _s20_72, "Cenu pied\u0101v\u0101jums veiksm\u012bgi atz\u012bm\u0113ts k\u0101 nos\u016bt\u012bts", _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Izv\u0113lieties", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Maks\u0101juma summa", "age", "Age", "is_running", "Is Running", "time_log", "Laika Logi", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, "Izdevumu kategorija", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "lt", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Apmok\u0117jimo s\u0105lygos", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "B\u016bkl\u0117", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s23_42, _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "S\u0105skaitos valiuta", "range", "Intervalas", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u012era\u0161yti slapta\u017eod\u012f", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u012egalinti", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Sauga", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Si\u0173sti el. pa\u0161tu", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, "S\u0117kmingai \u012fjungta Dviej\u0173-Lygi\u0173 Autentifikacija", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Dviej\u0173-Lygi\u0173 Autentifikacija", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "Gr\u0105\u017einti mok\u0117jimai", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, _s18_34, _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "I\u0161ra\u0161yti s\u0105skait\u0105", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Sl\u0117pti", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Stulpelis", "sample", "Pavyzdys", "map_to", "Map To", "import", "Importuoti", _s25_15, _s29_6, "select_file", "Pasirinkite fail\u0105", _s16_60, _s16_61, "csv_file", "Pasirinkti CSV fail\u0105", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Pakavimo Lapas", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Dalinis", "invoice_total", "Suma Viso", "quote_total", "S\u0105matos viso", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Kliento Vardas", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "B\u016btina s\u0105skaita fakt\u016bra", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "Paypal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Debeto s\u0105skaita", _s18_45, "Debeto s\u0105skaitos", _s21_47, "Nauja debeto s\u0105skaita", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "Rodyti tinklap\u012f", "copy_link", "Copy Link", "token_billing", _s17_136, _s24_34, _s24_35, "always", "Visada", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "\u012emon\u0117s pavadinimas", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", "Puslapis :current i\u0161 :total", _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Valandos", "statement", "Statement", "taxes", "Mokes\u010diai", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Pirk\u0117jas", "health_check", "Health Check", "payment_type_id", "Mok\u0117jimo tipas", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Naujos s\u0105skaitos", _s17_59, _s17_60, "recent_payments", "Naujausi mok\u0117jimai", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Sukurti s\u0105skait\u0105", "create_quote", "Sukurti s\u0105mat\u0105", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "I\u0161trinti s\u0105skait\u0105", "update_client", "Update Client", "delete_client", "Trinti klient\u0105", "delete_payment", "I\u0161trinti mok\u0117jim\u0105", "update_vendor", "Update Vendor", "delete_vendor", "Trinti", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Sukurti darb\u0105", "update_task", "Update Task", "delete_task", "Trinti", "approve_quote", "Approve Quote", "off", "I\u0161j.", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", "Ie\u0161koti :count Webhooks", "search_webhook", "Ie\u0161koti 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", "Ie\u0161koti :count rakt\u0173", "search_token", "Ie\u0161koti 1 rakt\u0105", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "I\u0161si\u0173sti s\u0105skait\u0105 el. pa\u0161tu", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kredito suma", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, "Dalinai gr\u0105\u017einta", _s16_83, "Ie\u0161koti dokument\u0173", "search_designs", "Ie\u0161koti dizaino", "search_invoices", "Ie\u0161koti s\u0105skait\u0173-fakt\u016br\u0173", "search_clients", "Ie\u0161koti klient\u0173", "search_products", "Ie\u0161koti preki\u0173", "search_quotes", "Ie\u0161koti pasi\u016blym\u0173", "search_credits", "Ie\u0161koti gr\u0105\u017einim\u0173", "search_vendors", "Ie\u0161koti tiek\u0117j\u0173", "search_users", "Ie\u0161koti vartotoj\u0173", _s16_84, "Ie\u0161koti mokes\u010di\u0173 tarif\u0173", "search_tasks", "Ie\u0161koti u\u017eduo\u010di\u0173", "search_settings", "Ie\u0161koti nustatym\u0173", "search_projects", "Ie\u0161koti projekt\u0173", "search_expenses", "Ie\u0161koti i\u0161laid\u0173", "search_payments", "Ie\u0161koti mok\u0117jim\u0173", "search_groups", "Ie\u0161koti grupi\u0173", "search_company", "Ie\u0161koti \u012fmoni\u0173", "search_document", "Ie\u0161koti 1 dokument\u0105", "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Gr\u0105\u017einti", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count s\u0105skaita i\u0161si\u0173sta", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Cancel Account", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Vir\u0161us", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Pasi\u016blymai", "tickets", "Tickets", _s16_96, "Pasikartojan\u010dios s\u0105matos", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "I\u0161ra\u0161ymo data", "credit", "Kreditas", "credits", "Kreditai", "new_credit", "\u012evesti kredit\u0105", "edit_credit", "Redaguoti Kredit\u0105", "created_credit", _s27_31, "updated_credit", "S\u0117kmingai atnaujintas kreditas", "archived_credit", _s28_18, "deleted_credit", _s27_33, "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, _s36_18, "deleted_credits", _s35_23, _s16_99, _s36_9, "current_version", "Dabartin\u0117 versija", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Pla\u010diau", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Kredito Pora\u0161t\u0117", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Pasirinktinis Klientas 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "I\u0161 naujo", "number", "Number", "export", "Export", "chart", "Diagrama", "count", "Count", "totals", "Viso", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupuoti pagal", "credit_balance", "Kredito balansas", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Kliento Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Ataskaitos", "report", "Ataskaita", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, "Nepatvirtinti pasi\u016blymai", "help", "Pagalba", "refund", "Pinig\u0173 gr\u0105\u017einimas", "refund_date", "Gr\u0105\u017einimo data", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u017dinut\u0117", "from", "Pardav\u0117jas", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "palaikymo forumas", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Tarpin\u0117 suma", "line_total", "Suma", "item", "Prek\u0117/Paslauga", "credit_email", "Credit Email", "iframe_url", "Tinklapis", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, "Slapta\u017eodyje turi b\u016bti did\u017eioji raid\u0117 ir skai\u010dius", _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Taip", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Pra\u0161ome pasirinkti klient\u0105", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Perjungti", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "Atkurti slapta\u017eod\u012f", "late_fees", "Late Fees", "credit_number", "Kredito Numeris", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Grafikas", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Dalinis Apmok\u0117jimas", "payment_partial", "Partial Payment", _s21_66, "Dalino Apmok\u0117jimo El. pa\u0161tas", "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administratorius", _s18_74, _s66_, "user_management", "User Management", "users", "Vartotojai", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_36, "updated_user", _s25_37, "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Invoice Options", _s17_86, "Hide paid to date", _s22_52, _s87_, _s23_26, "\u012ekelti dokumentai", _s28_20, _s39_4, _s16_151, "Show header on", _s16_152, "Show footer on", "first_page", "first page", "all_pages", "all pages", "last_page", "last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "S\u0105skaitos s\u0105lygos", "invoice_footer", "Invoice footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Automati\u0161kai Konvertuoti", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Kasdien", "freq_weekly", "Kas savait\u0119", "freq_two_weeks", "Dvi savait\u0117s", "freq_four_weeks", "Four weeks", "freq_monthly", "Kas m\u0117nes\u012f", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prie\u0161d\u0117lis", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Individualizuotas CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Linkiu geros dienos,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Tamsu", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kreditin\u0117 kortel\u0117", "bank_transfer", "Pavedimu", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "\u012ekainis", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", _s20_78, _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sekmadienis", "monday", "Pirmadienis", "tuesday", "Antradienis", "wednesday", "Tre\u010diadienis", "thursday", "Ketvirtadienis", "friday", "Penktadienis", "saturday", "\u0160e\u0161tadienis", "january", "Sausis", "february", "Vasaris", "march", "Kovas", "april", "Balandis", "may", "Gegu\u017e\u0117", "june", "Bir\u017eelis", "july", "Liepa", "august", "Rugpj\u016btis", "september", "Rugs\u0117jis", "october", "Spalis", "november", "Lapkritis", "december", "Gruodis", "symbol", "Simbolis", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 val. formatas", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logotipas", "saved_settings", _s27_39, _s16_169, _s16_170, "device_settings", "Device Settings", "defaults", "Numatyti", "basic_settings", "Basic Settings", _s17_103, _s17_104, "company_details", "Imon\u0117s informacija", "user_details", "User Details", "localization", "Lokalizacija", "online_payments", "Online mok\u0117jimai", "tax_rates", "Mokes\u010di\u0173 \u012fkainiai", "notifications", "Prane\u0161imai", "import_export", "Importas/Eksportas", "custom_fields", "Custom fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Pirkti dabar mygtukas", "email_settings", "Email nustatymai", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s19_52, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, _s16_172, "privacy_policy", "Privatumo politika", "sign_up", "Prisijunk", "account_login", "Jungtis", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Atsi\u0173sti", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dokumentai", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Laukia patvirtinimo", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Valiutos kursas", _s16_178, "Konvertuoti valiut\u0105", "mark_paid", "Mark Paid", "category", "Kategorija", "address", "Adresas", "new_vendor", "Naujas tiek\u0117jas", "created_vendor", "Sukurtas tiek\u0117jas", "updated_vendor", "Atnaujintas tiek\u0117jas", "archived_vendor", "S\u0117kmingai suarchyvuoti tiek\u0117jai", "deleted_vendor", "S\u0117kmingai i\u0161trintas tiek\u0117jas", "restored_vendor", _s28_27, _s16_179, "S\u0117kmingai suarchyvuoti :count tiek\u0117jai", "deleted_vendors", "I\u0161trinta :count tiek\u0117j\u0173", _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Vykdomas", "resume", "T\u0119sti", "task_errors", _s36_12, "start", "Prad\u0117ti", "stop", "Stabdyti", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Dabar", _s16_184, _s16_185, "timer", "Chronometras", "manual", "Nurodyti", "budgeted", "Budgeted", "start_time", "Prad\u017eia", "end_time", "Pabaiga", "date", "Data", "times", "Laikas", "duration", "Trukm\u0117", "new_task", "Naujas darbas", "created_task", "Sukurtas darbas", "updated_task", "Atnaujintas darbas", "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", _s34_22, "deleted_tasks", _s33_25, "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", "Jei jums patiko pra\u0161ome", "click_here", "spausti \u010dia", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Vidurkis", "unapproved", "Nepatvirtinta", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Apa\u010dia", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Dabartinis", "previous", "Previous", "current_period", "Dabartinis periodas", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Kurti", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Rodyti s\u0105skait\u0105", "convert", "Convert", "more", "More", "edit_client", "Redaguoti", "edit_product", "Edit Product", "edit_invoice", "Redaguoti", "edit_quote", "Keisti s\u0105mat\u0105", "edit_payment", "Edit Payment", "edit_task", "Keisti", "edit_expense", "Edit Expense", "edit_vendor", "Keisti", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Billing address", _s16_191, _s16_192, "total_revenue", "I\u0161 viso pajam\u0173", "average_invoice", "S\u0105skait\u0173 vidurkis", "outstanding", "Neapmok\u0117ta", "invoices_sent", ":count i\u0161si\u0173stos s\u0105skaitos fakt\u016bros", "active_clients", "aktyv\u016bs klientai", "close", "U\u017edaryti", "email", "El. pa\u0161tas", "password", "Slapta\u017eodis", "url", "URL", "secret", "Slaptas \u017eodis", "name", "Pavadinimas", "logout", "Log Out", "login", "Login", "filter", "Filtras", "sort", "Sort", "search", "Paie\u0161ka", "active", "Aktyvus", "archived", "Archived", "deleted", "Deleted", "dashboard", "Darbastalis", "archive", "Archyvas", "delete", "Trinti", "restore", "Atkurti", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Saugoti", _s17_115, _s17_116, "paid_to_date", "Apmok\u0117ta", "balance_due", "Mok\u0117tina suma", "balance", "Balansas", "overview", "Ap\u017evalga", "details", "Informacija", "phone", "Telefonas", "website", "Internetinis puslapis", "vat_number", "PVM kodas", "id_number", "\u012emon\u0117s kodas", "create", "Kurti", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontaktin\u0117 informacija", "additional", "Additional", "first_name", "Vardas", "last_name", "Pavard\u0117", "add_contact", "Prid\u0117ti kontakt\u0105", "are_you_sure", "Ar tikrai?", "cancel", "At\u0161aukti", "ok", "Ok", "remove", "Trinti", _s16_197, _s16_198, "product", "Product", "products", "Prek\u0117s", "new_product", "New Product", "created_product", _s28_35, "updated_product", _s28_36, _s16_199, _s29_24, "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Prek\u0117", "notes", "Notes", "cost", "Cost", "client", "Klientas", "clients", "Klientai", "new_client", "Naujas klientas", "created_client", "Klientas sukurtas", "updated_client", _s27_47, "archived_client", _s28_38, _s16_202, _s36_20, "deleted_client", _s27_48, "deleted_clients", _s35_25, "restored_client", _s28_39, _s16_203, _s36_13, "address1", "Gatv\u0117", "address2", "Adresas 2", "city", "Miestas", "state", "Apskritis", "postal_code", "Pa\u0161to kodas", "country", "Country", "invoice", "PVM S\u0105skaita-fakt\u016bra", "invoices", "S\u0105skaitos", "new_invoice", "Nauja s\u0105skaita", "created_invoice", _s28_40, "updated_invoice", _s28_41, _s16_204, _s29_26, "deleted_invoice", _s28_42, _s16_205, _s29_27, _s17_119, _s37_25, _s16_206, _s36_21, _s17_120, _s37_17, "emailed_invoice", _s28_67, "emailed_payment", _s28_58, "amount", "Suma", "invoice_number", "S\u0105skaitos numeris", "invoice_date", "I\u0161ra\u0161ymo data", "discount", "Nuolaida", "po_number", "U\u017esakymo numeris", "terms", "S\u0105lygos", "public_notes", "Vie\u0161os pastabos", "private_notes", "Privat\u016bs u\u017era\u0161ai", "frequency", "Periodas", "start_date", "Prad\u017eia", "end_date", "Pabaiga", "quote_number", "S\u0105matos numeris", "quote_date", "S\u0105matos data", "valid_until", "Galioja iki", "items", "Prek\u0117s/Paslaugos", "partial_deposit", "Dalinis/Avansas", "description", "Apra\u0161ymas", "unit_cost", "Vnt. kaina", "quantity", "Kiekis", "add_item", "Add Item", "contact", "Kontaktai", "work_phone", "Telefonas", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Apmok\u0117ti iki", _s16_207, "Dalimis Iki Datos", "status", "B\u016bkl\u0117", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Viso", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Nustatymai", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Mokestis", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "I\u0161si\u0173sta", "viewed", "Viewed", "approved", "Approved", "partial", "Dalinis/Avansas", "paid", "Apmok\u0117ta", "mark_sent", "Mark sent", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Baigta", _s37_18, _s37_19, "dark_mode", "Tamsusis R\u0117\u017eimas", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u012evykiai", _s16_209, "Nerasta \u012fra\u0161\u0173", "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Atsiskaitymo s\u0105lygos", "payment_date", "Mok\u0117jimo data", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, "Dalinis gr\u0105\u017einimas", _s16_216, "Gr\u0105\u017einta", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u012ejungti", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0160ablonas", "send", "Send", "subject", "Tema", "body", "\u017dinut\u0117", "send_email", "Si\u0173sti el. lai\u0161k\u0105", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "Istorija", "payment", "Payment", "payments", "Mok\u0117jimai", "refunded", "Gr\u0105\u017einta", "payment_type", "Mok\u0117jimo tipas", _s21_79, "Tranzakcijos numeris", "enter_payment", "\u012evesti apmok\u0117jim\u0105", "new_payment", "Naujas mok\u0117jimas", "created_payment", _s28_43, "updated_payment", "Mok\u0117jimas atnaujintas", _s16_217, _s29_28, "deleted_payment", _s28_45, _s16_218, _s29_29, _s17_124, _s37_26, _s16_219, _s36_22, _s17_125, _s37_20, "quote", "S\u0105mata", "quotes", "S\u0105matos", "new_quote", "Nauja s\u0105mata", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", _s35_22, "deleted_quotes", _s34_23, "restored_quotes", _s35_21, "expense", "I\u0161laidos", "expenses", "I\u0161laidos", "vendor", "Tiek\u0117jas", "vendors", "Tiek\u0117jai", "task", "Task", "tasks", "Darbai", "project", "Project", "projects", "Projects", "activity_1", ":user suk\u016br\u0117 klient\u0105 :client", "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", ":user sukurta s\u0105skaita :invoice", "activity_5", _s30_20, "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", _s85_0, "activity_11", ":user atnaujino mok\u0117jim\u0105 :payment", "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", ":user sukurta s\u0105skaita :expense", "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", ":payment_amount mok\u0117jimas (:payment) nepavyko", "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Vienkartinis Slapta\u017eodis", "emailed_quote", _s26_44, "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "Visi", "select", "Pasirinkite", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, "Tinkintas nepatvirtinto pasi\u016blymo prane\u0161imas", "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, "El. pa\u0161t. Dalino Apmok\u0117jimo Subject", "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "S\u0105skaitos suma", _s16_224, "Terminas", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Automatinis mok\u0117jimas", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Mok\u0117jimo suma", "age", "Age", "is_running", "Is Running", "time_log", "Laiko Registras", "bank_id", "bank", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "mk_MK", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "\u041f\u0440\u0438\u0444\u0430\u0442\u0438", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "\u041f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "default", "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u041f\u043e\u0441\u0442\u043e\u0458\u0430\u043d\u043e", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u0414\u043e\u0434\u0430\u0434\u0438 \u041f\u043b\u0430\u0442\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u0414\u043e\u0434\u0430\u0434\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", _s17_6, _s17_7, "week", "\u041d\u0435\u0434\u0435\u043b\u0430", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u0412\u0430\u043b\u0443\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "range", "\u041e\u043f\u0441\u0435\u0433", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0435\u043a\u0442", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "\u041d\u0430\u0434\u043e\u043c\u0435\u0441\u0442\u043e\u043a\u043e\u0442 \u0437\u0430 :amount \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u0431\u0438 \u0431\u0438\u043b :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u041e\u0434\u043e\u0431\u0440\u0438", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0441\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u0421\u0435\u0442\u0438\u0440\u0430\u0458 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a # :expense", "view_statement", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0438\u0441\u043a\u0430\u0437", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u0421\u0438\u0441\u0442\u0435\u043c", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "\u041e\u0434 \u0438\u043c\u0435", _s16_21, _s16_231, _s17_13, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s18_13, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s21_16, "\u041d\u043e\u0432 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s22_24, "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s25_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s25_3, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s26_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s25_4, _s25_77, _s25_5, _s38_2, _s26_3, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u0423\u043f\u0430\u0442\u0441\u0442\u0432\u043e \u0437\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u0442", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u0412\u043d\u0435\u0441\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u041f\u0440\u043e", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0418\u043c\u0435", _s17_17, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u041f\u0440\u0435\u0437\u0438\u043c\u0435", "order", "Order", "unassigned", "\u041d\u0435\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e", "partial_value", "\u041c\u043e\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043f\u043e\u0433\u043e\u043b\u0435\u043c\u043e \u043e\u0434 \u043d\u0443\u043b\u0430 \u0430 \u043f\u043e\u043c\u0430\u043b\u043e \u043e\u0434 \u0432\u043a\u0443\u043f\u043d\u043e", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0412\u043a\u043b\u0443\u0447\u0438", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0433\u043e \u043f\u043e\u0434\u0434\u043e\u043c\u0435\u043d\u043e\u0442 \u0438\u043b\u0438 \u043f\u0440\u0438\u043a\u0430\u0436\u0435\u0442\u0435 \u0458\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0432\u0435\u0431 \u0441\u0442\u0440\u0430\u043d\u0430.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "\u041e\u0441\u0438\u0433\u0443\u0440\u0443\u0432\u0430\u045a\u0435", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u041f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0438", _s16_39, _s16_40, _s17_23, "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_23, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_24, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s21_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0441\u043f\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u043a\u0430\u043d\u0430", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "\u041e\u0442\u0444\u0440\u043b\u0435\u043d\u043e", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "\u0421\u043a\u0435\u043d\u0438\u0440\u0430\u0458 \u0433\u043e \u0431\u0430\u0440 \u043a\u043e\u0434\u043e\u0442 \u0441\u043e :link \u043a\u043e\u043c\u043f\u0430\u0442\u0438\u0431\u0438\u043b\u043d\u0430 \u0430\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0458\u0430.", _s18_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u0430 \u0430\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043f\u0440\u0435\u043a\u0443 \u0434\u0432\u0430 \u0444\u0430\u043a\u0442\u043e\u0440\u0438", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "\u0410\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043f\u0440\u0435\u043a\u0443 \u0434\u0432\u0430 \u0444\u0430\u043a\u0442\u043e\u0440\u0438", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "to_update_run", "To update run", _s18_33, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_52, _s16_53, "invoice_project", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0435\u043a\u0442", "invoice_task", "\u0417\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_expense", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u0458 \u0442\u0440\u043e\u0448\u043e\u043a", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d \u0438\u0437\u043d\u043e\u0441", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043e\u043a\u0440\u0438\u0458", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u041a\u043e\u043b\u043e\u043d\u0430", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440\u043e\u043a", "map_to", "Map To", "import", "\u0412\u043d\u0435\u0441\u0438", _s25_15, _s29_6, "select_file", "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430", _s16_60, _s16_61, "csv_file", "CSV \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u043e", "white_label", "White Label", "delivery_note", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0430 \u0437\u0430 \u0438\u0441\u043f\u043e\u0440\u0430\u043a\u0430", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u0414\u0435\u043b\u0443\u043c\u0435\u043d \u0434\u043e\u043b\u0433", "invoice_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043f\u043e\u043d\u0443\u0434\u0438", "credit_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043a\u0440\u0435\u0434\u0438\u0442", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s20_42, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u043d\u043e\u0432 \u0442\u0440\u043e\u0448\u043e\u043a", _s21_40, _s21_41, _s24_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s24_29, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s25_19, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s24_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430", _s24_31, _s37_7, _s25_20, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0435\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s27_21, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "\u0422\u0440\u0435\u0431\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u041e\u0431\u0435\u043b\u0435\u0436\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_45, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0448\u0442\u043e \u0441\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0430\u0442", _s21_47, "\u041d\u043e\u0432\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s22_37, "\u0418\u0437\u043c\u0435\u043d\u0438 \u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_29, _s38_11, _s26_12, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0435\u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "\u041f\u0440\u043e\u0444\u0438\u0442", "line_item", "\u0421\u0442\u0430\u0432\u043a\u0430 \u043d\u0430 \u043b\u0438\u043d\u0438\u0458\u0430", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u043e", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0458 \u043f\u043e\u0440\u0442\u0430\u043b", "copy_link", "Copy Link", "token_billing", "\u0417\u0430\u0447\u0443\u0432\u0430\u0458 \u0434\u0435\u0442\u0430\u043b\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", _s24_34, _s24_35, "always", "\u0421\u0435\u043a\u043e\u0433\u0430\u0448", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u041d\u0430\u0437\u043d\u0430\u043a\u0430", "client_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "auto_convert", "Auto Convert", "company_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "emailed_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u043f\u043e\u043d\u0443\u0434\u0438", "emailed_credits", _s28_57, "gateway", "\u041f\u043b\u0430\u0442\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0427\u0430\u0441\u043e\u0432\u0438", "statement", "\u0418\u0441\u043a\u0430\u0437", "taxes", "\u0414\u0430\u043d\u043e\u0446\u0438", "surcharge", "\u0414\u043e\u043f\u043b\u0430\u0442\u0430", "apply_payment", "Apply Payment", "apply_credit", "\u041f\u0440\u0438\u043c\u0435\u043d\u0438 \u043a\u0440\u0435\u0434\u0438\u0442", "apply", "\u041f\u0440\u0438\u043c\u0435\u043d\u0438", "unapplied", "Unapplied", "select_label", "\u0418\u0437\u0431\u0435\u0440\u0438 \u043d\u0430\u0437\u043d\u0430\u043a\u0430", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u0414\u043e", "health_check", "Health Check", "payment_type_id", "\u041d\u0430\u0447\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "\u041d\u0435\u0434\u043e\u0441\u043f\u0435\u0430\u043d\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0438", _s17_59, _s17_60, "recent_payments", "\u041d\u0435\u043e\u0434\u0430\u043c\u043d\u0435\u0448\u043d\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0430", "upcoming_quotes", "\u041f\u0440\u0435\u0442\u0441\u0442\u043e\u0458\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "expired_quotes", "\u0418\u0441\u0442\u0435\u0447\u0435\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "create_client", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043a\u043b\u0438\u0435\u043d\u0442", "create_invoice", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "create_quote", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043f\u043e\u043d\u0443\u0434\u0430", "create_payment", "Create Payment", "create_vendor", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "update_quote", "Update Quote", "delete_quote", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043f\u043e\u043d\u0443\u0434\u0430", "update_invoice", "Update Invoice", "delete_invoice", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "update_client", "Update Client", "delete_client", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u041a\u043b\u0438\u0435\u043d\u0442", "delete_payment", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u041f\u043b\u0430\u045c\u0430\u045a\u0435", "update_vendor", "Update Vendor", "delete_vendor", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "create_task", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0437\u0430\u0434\u0430\u0447\u0430", "update_task", "Update Task", "delete_task", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0437\u0430\u0434\u0430\u0447\u0430", "approve_quote", "Approve Quote", "off", "\u0418\u0441\u043a\u043b\u0443\u0447\u0435\u043d\u043e", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "\u041f\u043b\u0430\u043d", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u0426\u0435\u043b", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API \u0442\u043e\u043a\u0435\u043d\u0438", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u0422\u043e\u043a\u0435\u043d", "tokens", "\u0422\u043e\u043a\u0435\u043d\u0438", "new_token", "New Token", "edit_token", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u043e\u043a\u0435\u043d", "created_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "updated_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "archived_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "deleted_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u041f\u0440\u0430\u0442\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "email_quote", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043e\u043d\u0443\u0434\u0430 \u043f\u043e \u0435\u043b. \u043f\u043e\u0448\u0442\u0430", "email_credit", "Email Credit", "email_payment", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u0435\u0440\u043c\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_51, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_52, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s21_50, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u0415\u043a\u0441\u043a\u043b\u0443\u0437\u0438\u0432\u043d\u043e", "inclusive", "\u0418\u043d\u043a\u043b\u0443\u0437\u0438\u0432\u043d\u043e", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u0458 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "\u0426\u0435\u043b\u043e\u0441\u043d\u043e \u0438\u043c\u0435", _s17_71, "\u0413\u0440\u0430\u0434/\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", _s17_73, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458/\u0413\u0440\u0430\u0434/\u0414\u0440\u0436\u0430\u0432\u0430", "custom1", "\u041f\u0440\u0432\u043e \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", "custom2", "\u0412\u0442\u043e\u0440\u043e \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u041f\u0440\u043e\u0447\u0438\u0441\u0442\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", _s16_91, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0441\u0442\u0435\u043d\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u0430\u043d\u0438\u0458\u0430", _s18_54, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0433\u0438 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430\u0437\u0430\u0434.", "invoice_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043f\u043e \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "age_group_0", "0 - 30 \u0434\u0435\u043d\u0430", "age_group_30", "30 - 60 \u0434\u0435\u043d\u0430", "age_group_60", "60 - 90 \u0434\u0435\u043d\u0430", "age_group_90", "90 - 120 \u0434\u0435\u043d\u0430", "age_group_120", "120+ \u0434\u0435\u043d\u0430", "refresh", "\u041e\u0441\u0432\u0435\u0436\u0438", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u0414\u043e\u0437\u0432\u043e\u043b\u0438", "none", "\u041d\u0435\u043c\u0430", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count \u0438\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "\u041f\u0440\u0438\u043c\u0435\u043d\u0438 \u043b\u0438\u0446\u0435\u043d\u0446\u0430", "cancel_account", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0441\u043c\u0435\u0442\u043a\u0430", _s22_44, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435.", "delete_company", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", _s22_45, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430\u0437\u0430\u0434.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435", "load_design", "\u0412\u0447\u0438\u0442\u0430\u0458 \u0434\u0438\u0437\u0430\u0458\u043d", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "\u041f\u0440\u0435\u0434\u043b\u043e\u0437\u0438", "tickets", "Tickets", _s16_96, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "recurring_tasks", "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0417\u0430\u0434\u0430\u0447\u0438", _s18_55, "\u041c\u0435\u043d\u0430\u045f\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", "credit_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u0438", "new_credit", "\u0412\u043d\u0435\u0441\u0438 \u041a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u0440\u0435\u0434\u0438\u0442", "created_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "updated_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "archived_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "deleted_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "removed_credit", _s27_34, "restored_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s16_98, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0438", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0438", _s16_99, _s36_9, "current_version", "\u0421\u0435\u0433\u0430\u0448\u043d\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u041f\u043e\u0432\u0435\u045c\u0435", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u041d\u043e\u0432\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0420\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u0458", "number", "Number", "export", "\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0458", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a\u043e\u043d", "count", "Count", "totals", "\u0412\u043a\u0443\u043f\u043d\u043e", "blank", "\u0411\u043b\u0430\u043d\u043a\u043e", "day", "\u0414\u0435\u043d", "month", "\u041c\u0435\u0441\u0435\u0446", "year", "\u0413\u043e\u0434\u0438\u043d\u0430", "subgroup", "\u041f\u043e\u0434\u0433\u0440\u0443\u043f\u0430", "is_active", "Is Active", "group_by", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0458 \u043f\u043e", "credit_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "\u0423\u043b\u0438\u0446\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s17_80, "\u0410\u043f\u0430\u0440\u0442\u043c\u0430\u043d \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "shipping_city", "\u0413\u0440\u0430\u0434 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "shipping_state", "\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0458\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s20_55, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s16_130, "\u0414\u0440\u0436\u0430\u0432\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s16_132, "\u0423\u043b\u0438\u0446\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", _s16_133, "\u0410\u043f\u0430\u0440\u0442\u043c\u0430\u043d \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_city", "\u0413\u0440\u0430\u0434 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_state", "\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0458\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", _s19_36, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_country", "\u0414\u0440\u0436\u0430\u0432\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "client_id", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "assigned_to", "Assigned to", "created_by", "\u041a\u0440\u0435\u0438\u0440\u0430\u043d\u043e \u043f\u043e :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u041a\u043e\u043b\u043e\u043d\u0438", "aging", "\u0417\u0430\u0441\u0442\u0430\u0440\u0435\u043d\u043e", "profit_and_loss", "\u041f\u0440\u043e\u0444\u0438\u0442 \u0438 \u0437\u0430\u0433\u0443\u0431\u0430", "reports", "\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0438", "report", "\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458", "add_company", "\u0414\u043e\u0434\u0430\u0458 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "unpaid_invoice", _s17_137, "paid_invoice", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_134, "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "help", "\u041f\u043e\u043c\u043e\u0448", "refund", "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u0458", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u0415-\u043f\u043e\u0448\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "multiselect", "Multiselect", "entity_state", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u041f\u043e\u0440\u0430\u043a\u0430", "from", "\u041e\u0434", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "\u0424\u043e\u0440\u0443\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0440\u0448\u043a\u0430", "about", "About", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430", "contact_us", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438\u0440\u0430\u0458\u0442\u0435 \u043d\u0435'", "subtotal", "\u0412\u043a\u0443\u043f\u043d\u043e \u0431\u0435\u0437 \u0434\u0430\u043d\u043e\u043a", "line_total", "\u0412\u043a\u0443\u043f\u043d\u043e", "item", "\u0421\u0442\u0430\u0432\u043a\u0430", "credit_email", "Credit Email", "iframe_url", "\u0412\u0435\u0431 \u0441\u0442\u0440\u0430\u043d\u0430", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "\u0414\u0430", "no", "\u041d\u0435", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "\u041c\u043e\u0431\u0438\u043b\u0435\u043d", "desktop", "\u0414\u0435\u0441\u043a\u0442\u043e\u043f", "layout", "Layout", "view", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0434\u0430\u043d\u043e\u043a", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "\u041f\u0440\u0435\u0444\u0440\u043b\u0438", _s19_40, _s20_63, "options", "\u041e\u043f\u0446\u0438\u0438", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "\u041f\u043e\u0434\u043d\u0435\u0441\u0438", _s16_142, "\u041f\u043e\u0432\u0440\u0430\u0442\u0438 \u0458\u0430 \u0442\u0432\u043e\u0458\u0430\u0442\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", "late_fees", "Late Fees", "credit_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "payment_number", "Payment Number", "late_fee_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043f\u0440\u043e\u0432\u0438\u0437\u0438\u0458\u0430 \u0437\u0430 \u0437\u0430\u0434\u043e\u0446\u043d\u0443\u0432\u0430\u045a\u0435", _s16_143, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043d\u0430 \u043f\u0440\u043e\u0432\u0438\u0437\u0438\u0458\u0430 \u0437\u0430 \u0437\u0430\u0434\u043e\u0446\u043d\u0443\u0432\u0430\u045a\u0435", "schedule", "\u0420\u0430\u0441\u043f\u043e\u0440\u0435\u0434", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "\u0414\u0435\u043d\u043e\u0432\u0438", "invoice_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "payment_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s16_145, "\u0411\u0435\u0441\u043a\u0440\u0430\u0435\u043d \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", _s16_147, _s16_148, "administrator", "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440", _s18_74, "\u0414\u043e\u0437\u0432\u043e\u043b\u0430 \u0437\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u0442 \u0434\u0430 \u043c\u0435\u043d\u0430\u045f\u0438\u0440\u0430 \u0441\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u0446\u0438\u0442\u0435, \u0434\u0430 \u0433\u0438 \u043c\u0435\u043d\u0443\u0432\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435 \u0438 \u0434\u0430 \u0433\u0438 \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u0430 \u0441\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "user_management", "\u0423\u043f\u0440\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u0441\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "users", "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0446\u0438", "new_user", "\u041d\u043e\u0432 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "edit_user", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "created_user", _s25_36, "updated_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "archived_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "deleted_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "removed_user", _s25_39, "restored_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u041e\u043f\u0448\u0442\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438", "invoice_options", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_86, "\u0421\u043e\u043a\u0440\u0438\u0458 \u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0430\u0442\u0443\u043c", _s22_52, '\u041f\u0440\u0438\u043a\u0430\u0436\u0438 "\u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0430\u0442\u0443\u043c" \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u043e\u0442\u043a\u0430\u043a\u043e \u045c\u0435 \u0431\u0438\u0434\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e.', _s23_26, "\u0412\u043c\u0435\u0442\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", _s28_20, "\u0412\u043a\u043b\u0443\u0447\u0438 \u0433\u0438 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438\u0442\u0435 \u0441\u043b\u0438\u043a\u0438 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s16_151, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0458\u0435 \u043d\u0430", _s16_152, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0444\u0443\u0442\u0435\u0440 \u043d\u0430", "first_page", "\u041f\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "all_pages", "\u0421\u0438\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438", "last_page", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u041f\u0440\u0438\u043c\u0430\u0440\u043d\u0430 \u0431\u043e\u0458\u0430", "secondary_color", "\u0421\u0435\u043a\u0443\u043d\u0434\u0430\u0440\u043d\u0430 \u0431\u043e\u0458\u0430", "page_size", "\u0413\u043e\u043b\u0435\u043c\u0438\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "font_size", "\u0413\u043e\u043b\u0435\u043c\u0438\u043d\u0430 \u043d\u0430 \u0444\u043e\u043d\u0442", "quote_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "invoice_fields", "\u041f\u043e\u043b\u0438\u045a\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "product_fields", "\u041f\u043e\u043b\u0438\u045a\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_footer", "\u0424\u0443\u0442\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "quote_footer", "\u0424\u0443\u0442\u0435\u0440 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s18_75, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s23_27, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0438\u0441\u043f\u0440\u0430\u0442\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0433\u0430 \u045c\u0435 \u0431\u0438\u0434\u0430\u0442 \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0438.", _s18_76, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435", _s23_28, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043a\u043e\u0433\u0430 \u045c\u0435 \u0431\u0438\u0434\u0430\u0442 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438.", _s18_77, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u045a\u0435", _s23_29, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u043f\u043e\u043d\u0443\u0434\u0430 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043a\u043e\u0433\u0430 \u0438\u0441\u0442\u0430\u0442\u0430 \u045c\u0435 \u0431\u0438\u0434\u0435 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442.", _s17_88, "\u041f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430 \u043d\u0430 \u0442\u0435\u043a\u043e\u0442 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430", "freq_daily", "\u0414\u043d\u0435\u0432\u043d\u043e", "freq_weekly", "\u041d\u0435\u0434\u0435\u043b\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u0438\u0440\u0438 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_monthly", "\u041c\u0435\u0441\u0435\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u0435\u0446\u0438", _s17_90, "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0438", _s16_153, "\u0427\u0435\u0442\u0438\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0438", "freq_six_months", "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0438", "freq_annually", "\u0413\u043e\u0434\u0438\u0448\u043d\u043e", "freq_two_years", "\u0414\u0432\u0435 \u0433\u043e\u0434\u0438\u043d\u0438", _s16_154, "Three Years", "never", "\u041d\u0438\u043a\u043e\u0433\u0430\u0448", "company", "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", _s17_91, "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0438 \u0431\u0440\u043e\u0435\u0432\u0438", "charge_taxes", "\u041d\u0430\u043f\u043b\u0430\u0442\u0438 \u0434\u0430\u043d\u043e\u0446\u0438", "next_reset", "\u0421\u043b\u0435\u0434\u043d\u043e \u0440\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u045a\u0435", "reset_counter", "\u0420\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u0458 \u0431\u0440\u043e\u0458\u0430\u0447", _s16_155, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u043f\u0440\u0435\u0444\u0438\u043a\u0441", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_93, "\u0414\u043e\u043f\u043b\u0430\u0442\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "client_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "product_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "payment_field", "Payment Field", "contact_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "vendor_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "expense_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "project_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "task_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "Number Pattern", "messages", "\u041f\u043e\u0440\u0430\u043a\u0438", "custom_css", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d CSS", _s17_95, _s17_96, _s16_157, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043d\u0430 PDF", _s21_68, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0433\u043e \u043f\u043e\u0442\u043f\u0438\u0441\u043e\u0442 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u043d\u0430 PDF \u0444\u0430\u043a\u0442\u0443\u0440\u0430/\u043f\u043e\u043d\u0443\u0434\u0430.", _s25_40, "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_9, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u0440\u0434\u0438 \u0434\u0435\u043a\u0430 \u0433\u0438 \u043f\u0440\u0438\u0444\u0430\u045c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0442\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s23_30, "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438 \u0437\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s28_21, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u0440\u0434\u0438 \u0434\u0435\u043a\u0430 \u0433\u0438 \u043f\u0440\u0438\u0444\u0430\u045c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430.", _s25_41, "\u041f\u043e\u0442\u043f\u0438\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_10, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043e\u0431\u0435\u0437\u0431\u0435\u0434\u0438 \u043f\u043e\u0442\u043f\u0438\u0441.", _s23_31, "\u041f\u043e\u0442\u043f\u0438\u0441 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s22_54, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0437\u0430\u0448\u0442\u0438\u0442\u0435\u043d\u0438 \u0441\u043e \u043b\u043e\u0437\u0438\u043d\u043a\u0430", _s27_36, "\u0412\u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0443\u0432\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430 \u0437\u0430 \u0441\u0435\u043a\u043e\u0458 \u043a\u043e\u043d\u0442\u0430\u043a\u0442. \u0410\u043a\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043b\u043e\u0437\u0438\u043d\u043a\u0430. \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0442 \u045c\u0435 \u043c\u043e\u0440\u0430 \u0434\u0430 \u0458\u0430 \u0432\u043d\u0435\u0441\u0435 \u043b\u043e\u0437\u0438\u043d\u043a\u0430\u0442\u0430 \u043f\u0440\u0435\u0434 \u0434\u0430 \u0433\u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435.", "authorization", "\u041e\u0432\u043b\u0430\u0441\u0442\u0443\u0432\u0430\u045a\u0435", "subdomain", "\u041f\u043e\u0434\u0434\u043e\u043c\u0435\u043d", "domain", "\u0414\u043e\u043c\u0435\u043d", "portal_mode", "Portal Mode", "email_signature", "\u0421\u043e \u043f\u043e\u0447\u0438\u0442,", _s24_38, "\u041d\u0430\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u0433\u043e \u043f\u043e\u043b\u0435\u0441\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e \u0437\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u0441\u043e \u0434\u043e\u0434\u0430\u0432\u0430\u045a\u0435 \u043d\u0430 schema.org \u043e\u0431\u0435\u043b\u0435\u0436\u0458\u0435 \u043d\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0435-\u043f\u043e\u0448\u0442\u0438", "plain", "\u041e\u0431\u0438\u0447\u043d\u043e", "light", "\u0421\u0432\u0435\u0442\u043b\u043e", "dark", "\u0422\u0435\u043c\u043d\u043e", "email_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043e\u0431\u0435\u043b\u0435\u0436\u0443\u0432\u0430\u045a\u0435", "reply_to_email", "\u041e\u0434\u0433\u043e\u0432\u043e\u0440\u0438-\u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "reply_to_name", "Reply-To Name", "bcc_email", "BCC \u0435-\u043f\u043e\u0448\u0442\u0430", "processed", "Processed", "credit_card", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", "bank_transfer", "\u0411\u0430\u043d\u043a\u0430\u0440\u0441\u043a\u0438 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043c\u0438\u043d.", "enable_max", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043c\u0430\u043a\u0441.", "min_limit", "\u041c\u0438\u043d: :min", "max_limit", "\u041c\u0430\u043a\u0441: :max", "min", "\u041c\u0438\u043d", "max", "\u041c\u0430\u043a\u0441", _s19_43, "\u041f\u0440\u0438\u0444\u0430\u0442\u0435\u043d\u0438 \u043b\u043e\u0433\u043e\u0430 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", "credentials", "Credentials", "update_address", "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0430\u0434\u0440\u0435\u0441\u0430", _s19_45, "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0458\u0430 \u0430\u0434\u0440\u0435\u0441\u0430\u0442\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0441\u043e \u043e\u0431\u0435\u0437\u0431\u0435\u0434\u0435\u043d\u0438\u0442\u0435 \u0434\u0435\u0442\u0430\u043b\u0438", "rate", "\u0421\u0442\u0430\u043f\u043a\u0430", "tax_rate", "\u0414\u0430\u043d\u043e\u0447\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430", "new_tax_rate", "\u041d\u043e\u0432\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "edit_tax_rate", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_160, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_161, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s17_98, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u043f\u043e\u043f\u043e\u043b\u043d\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s18_80, "\u0418\u0437\u0431\u0438\u0440\u0430\u045a\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u045c\u0435 \u0433\u0438 \u0438\u0441\u043f\u043e\u043b\u043d\u0438 \u043f\u043e\u043b\u0438\u045a\u0430\u0442\u0430 \u0437\u0430 \u043e\u043f\u0438\u0441 \u0438 \u0446\u0435\u043d\u0430", "update_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s20_65, "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435\u0442\u043e \u043d\u0430 \u0444\u0430\u043a\u0443\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u045c\u0435 \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 ", _s16_163, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s21_69, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0433\u0438 \u0446\u0435\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0442\u0435 \u043f\u043e \u0432\u0430\u043b\u0443\u0442\u0438\u0442\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435", "fees", "\u041d\u0430\u0434\u043e\u043c\u0435\u0441\u0442\u043e\u0446\u0438", "limits", "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0443\u0432\u0430\u045a\u0430", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "\u041e\u0442\u0444\u0440\u043b\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438", "default_value", "Default value", "disabled", "\u041e\u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u043e", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "\u041d\u0435\u0434\u0435\u043b\u0430", "monday", "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "tuesday", "\u0412\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0421\u0440\u0435\u0434\u0430", "thursday", "\u0427\u0435\u0442\u0432\u0440\u0442\u043e\u043a", "friday", "\u041f\u0435\u0442\u043e\u043a", "saturday", "\u0421\u0430\u0431\u043e\u0442\u0430", "january", "\u0408\u0430\u043d\u0443\u0430\u0440\u0438", "february", "\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "march", "\u041c\u0430\u0440\u0442", "april", "\u0410\u043f\u0440\u0438\u043b", "may", "\u041c\u0430\u0458", "june", "\u0408\u0443\u043d\u0438", "july", "\u0408\u0443\u043b\u0438", "august", "\u0410\u0432\u0433\u0443\u0441\u0442", "september", "\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "october", "\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "november", "\u041d\u043e\u0435\u043c\u0432\u0440\u0438", "december", "\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438", "symbol", "\u0421\u0438\u043c\u0431\u043e\u043b", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "\u0412\u0440\u0435\u043c\u0435 \u043e\u0434 24 \u0447\u0430\u0441\u0430", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "\u0413\u0440\u0443\u043f\u0430", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "\u041b\u043e\u0433\u043e", "saved_settings", _s27_39, _s16_169, "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "device_settings", "Device Settings", "defaults", "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434\u0438", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438", _s17_103, "\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u0438 \u043f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430", "company_details", "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430\u0442\u0430", "user_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0437\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u0442", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0458\u0430", "online_payments", "\u041e\u043d\u043b\u0430\u0458\u043d \u043f\u043b\u0430\u045c\u0430\u045a\u0430", "tax_rates", "\u0414\u0430\u043d\u043e\u0447\u043d\u0438 \u0441\u0442\u0430\u043f\u043a\u0438", "notifications", "\u0418\u0437\u0432\u0435\u0441\u0442\u0443\u0432\u0430\u045a\u0430", "import_export", "\u0423\u0432\u043e\u0437 | \u0418\u0437\u0432\u043e\u0437", "custom_fields", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u043b\u0438\u0432\u0438 \u043f\u043e\u043b\u0438\u045a\u0430", "invoice_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "buy_now_buttons", "\u041a\u0443\u043f\u0438 \u0441\u0435\u0433\u0430 \u043a\u043e\u043f\u0447\u0438\u045a\u0430", "email_settings", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s23_37, "\u0428\u0430\u0431\u043b\u043e\u043d\u0438 \u0438 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u0446\u0438", _s22_55, _s20_67, _s19_51, "\u0412\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u043d\u0430 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0435\u045a\u0435", "privacy_policy", "\u041f\u043e\u043b\u0438\u0441\u0430 \u0437\u0430 \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0441\u0442", "sign_up", "\u041d\u0430\u0458\u0430\u0432\u0443\u0432\u0430\u045a\u0435", "account_login", "\u041d\u0430\u0458\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0441\u0435\u0433\u0430", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u041f\u0440\u0435\u0437\u0435\u043c\u0438", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "pending", "\u0412\u043e \u0442\u0435\u043a", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u043e", _s24_44, "\u0414\u043e\u0434\u0430\u0458 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "exchange_rate", "\u0414\u0435\u0432\u0438\u0437\u0435\u043d \u043a\u0443\u0440\u0441", _s16_178, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0432\u0430\u043b\u0443\u0442\u0430", "mark_paid", "\u041e\u0431\u0435\u043b\u0435\u0436\u0438 \u043f\u043b\u0430\u0442\u0435\u043d\u043e", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430", "address", "\u0410\u0434\u0440\u0435\u0441\u0430", "new_vendor", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "created_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "updated_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "archived_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "deleted_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "restored_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", _s16_180, _s36_11, "new_expense", "\u0412\u043d\u0435\u0441\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "created_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "updated_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s16_181, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "deleted_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s16_182, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s17_109, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s16_183, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s17_110, _s37_14, "copy_shipping", "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "copy_billing", "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "design", "Design", _s21_74, _s21_75, "invoiced", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "logged", "\u041d\u0430\u0458\u0430\u0432\u0435\u043d\u043e", "running", "\u0412\u043e \u0442\u0435\u043a", "resume", "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438", "task_errors", "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u043a\u043e\u0440\u0435\u0433\u0438\u0440\u0430\u0458\u0442\u0435 \u0432\u0440\u0435\u043c\u0438\u045a\u0430\u0442\u0430 \u0448\u0442\u043e \u0441\u0435 \u043f\u0440\u0435\u043a\u043b\u043e\u043f\u0443\u0432\u0430\u0430\u0442", "start", "\u041f\u043e\u0447\u0435\u0442\u043e\u043a", "stop", "\u0421\u043e\u043f\u0440\u0438", "started_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u043f\u043e\u0447\u043d\u0430\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "stopped_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u043f\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "resumed_task", _s29_59, "now", "\u0421\u0435\u0433\u0430", _s16_184, _s16_185, "timer", "\u0422\u0430\u0458\u043c\u0435\u0440", "manual", "\u0423\u043f\u0430\u0442\u0441\u0442\u0432\u043e", "budgeted", "Budgeted", "start_time", "\u0412\u0440\u0435\u043c\u0435 \u0437\u0430 \u043f\u043e\u0447\u0435\u0442\u043e\u043a", "end_time", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0432\u0440\u0435\u043c\u0435", "date", "\u0414\u0430\u0442\u0443\u043c", "times", "\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u043d\u043e\u0441\u0442", "duration", "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u045a\u0435", "new_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "created_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "updated_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "deleted_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "restored_task", _s29_59, "archived_tasks", _s32_12, "deleted_tasks", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "\u0411\u0443\u045f\u0435\u0442\u0438\u0440\u0430\u043d\u0438 \u0447\u0430\u0441\u043e\u0432\u0438", "created_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "updated_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_186, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "deleted_project", _s25_77, _s16_187, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s17_111, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0438", _s16_188, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0438", _s17_112, _s37_15, "new_project", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0435\u043a\u0442", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "\u043a\u043b\u0438\u043a\u043d\u0438 \u0442\u0443\u043a\u0430", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "\u0424\u0443\u0442\u0435\u0440", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d \u043e\u043f\u0441\u0435\u0433", "date_range", "\u041e\u043f\u0441\u0435\u0433 \u043d\u0430 \u0434\u0430\u0442\u0443\u043c\u0438", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "\u041e\u0432\u043e\u0458 \u043c\u0435\u0441\u0435\u0446", "last_month", "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u0435\u043d \u043c\u0435\u0441\u0435\u0446", "this_year", "\u041e\u0432\u0430\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "last_year", "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "custom", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "convert", "Convert", "more", "More", "edit_client", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u043b\u0438\u0435\u043d\u0442", "edit_product", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "edit_invoice", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "edit_quote", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0430", "edit_payment", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "edit_task", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0430", "edit_expense", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "edit_vendor", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "edit_project", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0435\u043a\u0442", _s20_68, "\u0418\u0437\u043c\u0435\u043d\u0438 \u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u041f\u043e\u043d\u0443\u0434\u0430", "billing_address", "\u0410\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u045a\u0435", _s16_191, "\u0410\u0434\u0440\u0435\u0441\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "total_revenue", "\u0412\u043a\u0443\u043f\u0435\u043d \u043f\u0440\u0438\u0445\u043e\u0434", "average_invoice", "\u041f\u0440\u043e\u0441\u0435\u0447\u043d\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "outstanding", "\u041d\u0435\u043d\u0430\u043f\u043b\u0430\u0442\u0435\u043d\u043e", "invoices_sent", ":count \u0438\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "active_clients", "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u041a\u043b\u0438\u0435\u043d\u0442\u0438", "close", "\u0417\u0430\u0442\u0432\u043e\u0440\u0438", "email", "\u0415-\u043f\u043e\u0448\u0442\u0430", "password", "\u041b\u043e\u0437\u0438\u043d\u043a\u0430", "url", "URL", "secret", "\u0422\u0430\u0458\u043d\u043e", "name", "\u0418\u043c\u0435", "logout", "\u041e\u0434\u0458\u0430\u0432\u0430", "login", "\u041d\u0430\u0458\u0430\u0432\u0430", "filter", "\u0424\u0438\u043b\u0442\u0435\u0440", "sort", "\u041f\u043e\u0434\u0440\u0435\u0434\u0438", "search", "\u041f\u0440\u0435\u0431\u0430\u0440\u0443\u0432\u0430\u045a\u0435", "active", "\u0410\u043a\u0442\u0438\u0432\u0435\u043d", "archived", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e", "deleted", "\u0418\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u043e", "dashboard", "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0430 \u0442\u0430\u0431\u043b\u0430", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458", "delete", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438", "restore", "\u041f\u043e\u0432\u0440\u0430\u0442\u0438", _s16_193, _s16_194, _s23_38, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s26_32, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", _s21_77, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 URL", _s26_34, _s26_35, "ascending", "\u0420\u0430\u0441\u0442\u0435\u0447\u043a\u0438", "descending", "\u041e\u043f\u0430\u0453\u0430\u0447\u043a\u0438", "save", "\u0417\u0430\u0447\u0443\u0432\u0430\u0458", _s17_115, "\u041d\u0430\u0441\u0442\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430", "paid_to_date", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0435\u043d\u0435\u0441", "balance_due", "\u0412\u043a\u0443\u043f\u043d\u043e \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430", "overview", "Overview", "details", "\u0414\u0435\u0442\u0430\u043b\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0412\u0435\u0431 \u0421\u0442\u0440\u0430\u043d\u0430", "vat_number", "\u0414\u0414\u0412 \u0431\u0440\u043e\u0458", "id_number", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", "create", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458", _s19_59, _s30_16, "error", "\u0413\u0440\u0435\u0448\u043a\u0430", _s16_195, _s16_196, "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "additional", "Additional", "first_name", "\u0418\u043c\u0435", "last_name", "\u041f\u0440\u0435\u0437\u0438\u043c\u0435", "add_contact", "\u0414\u043e\u0434\u0430\u0434\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0414\u0430\u043b\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043d\u0438?", "cancel", "\u041e\u0442\u043a\u0430\u0436\u0438", "ok", "Ok", "remove", "\u041e\u0442\u0441\u0442\u0440\u0430\u043d\u0438", _s16_197, _s16_198, "product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "products", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "new_product", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "created_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "updated_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_199, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "deleted_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_200, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s17_117, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s16_201, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s17_118, _s37_16, "product_key", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "cost", "\u0426\u0435\u043d\u0430", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u0438", "new_client", "\u041d\u043e\u0432 \u041a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "updated_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "archived_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s16_202, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "deleted_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "restored_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s16_203, _s36_13, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0411\u0440\u043e\u0458", "city", "\u0413\u0440\u0430\u0434", "state", "\u041e\u043f\u0448\u0442\u0438\u043d\u0430", "postal_code", "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", "country", "\u0414\u0440\u0436\u0430\u0432\u0430", "invoice", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430", "invoices", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438", "new_invoice", "\u041d\u043e\u0432\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "created_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "updated_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_204, _s26_45, "deleted_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s16_205, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_119, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0424\u0430\u043a\u0442\u0443\u0440\u0438", _s16_206, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_120, _s37_17, "emailed_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "emailed_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "amount", "\u041a\u043e\u043b\u0438\u0447\u0438\u043d\u0430", "invoice_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_date", "\u0414\u0430\u0442\u0430\u0443\u043c \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "discount", "\u041f\u043e\u043f\u0443\u0441\u0442", "po_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043d\u0430\u0440\u0430\u0447\u043a\u0430", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438", "public_notes", "\u0408\u0430\u0432\u043d\u0438 \u0437\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "private_notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "frequency", "\u0424\u0440\u0435\u043a\u0432\u0435\u043d\u0442\u043d\u043e\u0441\u0442", "start_date", "\u041f\u043e\u0447\u0435\u0442\u0435\u043d \u0434\u0430\u0442\u0443\u043c", "end_date", "\u041a\u0440\u0430\u0435\u043d \u0434\u0430\u0442\u0443\u043c", "quote_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "quote_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "valid_until", "\u0412\u0430\u043b\u0438\u0434\u043d\u043e \u0434\u043e", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u041e\u043f\u0438\u0441", "unit_cost", "\u0426\u0435\u043d\u0430 \u043d\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0430", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0438\u043d\u0430", "add_item", "Add Item", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u043f\u0435\u0432\u0430\u045a\u0435", _s16_207, "\u0414\u0435\u043b\u0443\u043c\u0435\u043d \u0434\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "\u0412\u043a\u0443\u043f\u043d\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0418\u0437\u043c\u0435\u043d\u0438", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "\u0421\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "settings", "\u041f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430", "language", "Language", "currency", "\u0412\u0430\u043b\u0443\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0414\u0430\u043d\u043e\u043a", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "\u041c\u0438\u043d\u0430\u0442\u043e \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "draft", "\u041d\u0430\u0446\u0440\u0442", "sent", "\u0418\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u043e", "viewed", "Viewed", "approved", "Approved", "partial", "\u0414\u0435\u043b\u0443\u043c\u043d\u043e/\u0414\u0435\u043f\u043e\u0437\u0438\u0442", "paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e", "mark_sent", "\u0411\u0435\u043b\u0435\u0433\u043e\u0442 \u0435 \u043f\u0440\u0430\u0442\u0435\u043d", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "\u0417\u0430\u0432\u0440\u0448\u0435\u043d\u043e", _s37_18, _s37_19, "dark_mode", "\u0422\u0435\u043c\u0435\u043d \u0440\u0435\u0436\u0438\u043c", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", _s16_209, _s16_210, "clone", "\u041a\u043b\u043e\u043d\u0438\u0440\u0430\u0458", "loading", "\u0412\u0447\u0438\u0442\u0443\u0432\u0430\u045a\u0435", "industry", "Industry", "size", "Size", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "payment_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "\u041f\u043e\u0440\u0442\u0430\u043b \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u043e", "recipients", "\u041f\u0440\u0438\u043c\u0430\u0442\u0435\u043b\u0438", "initial_email", "\u041f\u043e\u0447\u0435\u0442\u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "first_reminder", "\u041f\u0440\u0432 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "second_reminder", "\u0412\u0442\u043e\u0440 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "third_reminder", "\u0422\u0440\u0435\u0442 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "Send", "subject", "\u041f\u0440\u0435\u0434\u043c\u0435\u0442", "body", "\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0458\u0430", "send_email", "\u0418\u0441\u043f\u0440\u0430\u0442\u0438 \u0435\u043c\u0430\u0438\u043b", "email_receipt", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043e\u0442\u0432\u0440\u0434\u0430 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430 \u0434\u043e \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442", "auto_billing", "Auto billing", "button", "Button", "preview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "customize", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0438", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u0458\u0430", "payment", "\u041f\u043b\u0430\u045c\u0430\u045a\u0435", "payments", "\u041f\u043b\u0430\u045c\u0430\u045a\u0430", "refunded", "Refunded", "payment_type", "\u0422\u0438\u043f \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s21_79, "\u0422\u0440\u0430\u043d\u0441\u0430\u043a\u0446\u0438\u0441\u043a\u0430 \u0440\u0435\u0444\u0435\u0440\u0435\u043d\u0446\u0430", "enter_payment", "\u0412\u043d\u0435\u0441\u0438 \u0443\u043f\u043b\u0430\u0442\u0430", "new_payment", "\u0412\u043d\u0435\u0441\u0438 \u041f\u043b\u0430\u045c\u0430\u045a\u0435", "created_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "updated_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s16_217, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "deleted_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s16_218, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s17_124, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043b\u0430\u045c\u0430\u045a\u0430", _s16_219, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u043b\u0430\u045c\u0430\u045a\u0430", _s17_125, _s37_20, "quote", "\u041f\u043e\u043d\u0443\u0434\u0430", "quotes", "\u041f\u043e\u043d\u0443\u0434\u0438", "new_quote", "\u041d\u043e\u0432\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "created_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "updated_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "archived_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "deleted_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "restored_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "archived_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043e\u043d\u0443\u0434\u0438", "deleted_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u043f\u043e\u043d\u0443\u0434\u0438", "restored_quotes", _s35_21, "expense", "\u0422\u0440\u043e\u0448\u043e\u043a", "expenses", "\u0422\u0440\u043e\u0448\u043e\u0446\u0438", "vendor", "\u041f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "vendors", "\u041f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", "task", "\u0417\u0430\u0434\u0430\u0447\u0430", "tasks", "\u0417\u0430\u0434\u0430\u0447\u0438", "project", "\u041f\u0440\u043e\u0435\u043a\u0442", "projects", "\u041f\u0440\u043e\u0435\u043a\u0442\u0438", "activity_1", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u0448\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_2", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0448\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_3", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_4", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430\u0448\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_5", ":user \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u0448\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_9", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_10", _s85_0, "activity_11", ":user \u0433\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_12", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_13", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_14", ":user \u0432\u043d\u0435\u0441\u0435 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_15", ":user \u0430\u0436\u0443\u0440\u0438\u0440\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_16", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_17", ":user \u0438\u0437\u0431\u0440\u0438\u0448\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_18", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_19", ":user \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_20", _s50_9, "activity_21", ":contact \u0458\u0430 \u0432\u0438\u0434\u0435 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_22", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_23", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_24", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_25", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_26", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_27", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_28", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 :credit \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0442", "activity_29", _s42_13, "activity_30", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_31", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_32", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_33", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_34", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_35", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_36", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_37", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_39", ":user \u0433\u043e \u043e\u0442\u043a\u0430\u0436\u0430 :payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_40", ":user \u0433\u043e \u0440\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430 :adjustment \u043d\u0430 :payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435 :payment", "activity_41", ":payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435 (:payment) \u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e", "activity_42", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_43", ":user \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_44", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_45", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_46", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_47", ":user \u0433\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "\u0415\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", "emailed_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430 \u043f\u043e \u0435\u043b. \u043f\u043e\u0448\u0442\u0430", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "\u0418\u0441\u0442\u0435\u0447\u0435\u043d\u043e", "all", "\u0421\u0438\u0442\u0435", "select", "\u0418\u0437\u0431\u0435\u0440\u0438", _s22_63, _s22_64, "custom_value1", _s17_177, "custom_value2", _s17_177, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u0411\u0440\u043e\u0458\u0430\u0447 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s20_73, _s20_74, _s20_75, "\u0411\u0440\u043e\u0458\u0430\u0447 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0438", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "\u0422\u0438\u043f", "invoice_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_224, "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u0418\u043c\u0435 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "tax_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "tax_paid", "\u041f\u043b\u0430\u0442\u0435\u043d \u0434\u0430\u043d\u043e\u043a", "payment_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "age", "\u0412\u043e\u0437\u0440\u0430\u0441\u0442", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u0411\u0430\u043d\u043a\u0430", _s19_66, _s19_67, _s16_225, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "nb_NO", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Betalingsinnstillinger", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "St\xe5ende", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Legg til Tilbyder", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Legg til p\xe5 faktura :invoice", _s17_6, _s17_7, "week", "Uke", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Fakturavaluta", "range", "Periode", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Opprett prosjekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Godkjenn", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Sett Passord", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "Se Erkl\xe6ring", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Fra Navn", _s16_21, _s16_231, _s17_13, "Gjentakende Utgift", _s18_13, "Gjentakende Utgifter", _s21_16, "Opprett Gjentakende Utgift", _s22_24, "Rediger Gjentakende Utgift", _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Brukerguide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Kontakts fornavn", _s17_17, "Etternavn", "order", "Order", "unassigned", "Ikke tilordnet", "partial_value", "M\xe5 v\xe6re st\xf8rre enn null og mindre enn totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktiver", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Sett subdomenet eller vis fakturaen p\xe5 ditt eget nettsted.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Sikkerhet", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnementer", _s16_39, "Nytt Abonnement\xa0", _s17_23, "Rediger Abonnement", _s20_23, "Abonnement opprettet", _s20_24, "Oppdaterte abonnement", _s21_28, "Abonnement arkivert", _s20_25, "Abonnement Slettet", _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, "Underdomene ikke tilgjengelig", "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Send invitasjon p\xe5 nytt", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, "Aktiverte To-faktor-autentisering", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "To-faktor-autentisering", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, "Venligst bekreft din epost adresse", _s16_51, "Refundert betaling", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "For og oppdatere kj\xf8r", _s18_33, "Konverter til en faktura", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Fakturer Oppgave", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "Standard-dokumenter", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skjul", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, "Advarsel: en ment for bruk p\xe5 lokal installasjon, passord er ikke sikkert. Klikk her for og vite mer.", "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolonne", "sample", "Eksempel", "map_to", "Map To", "import", "Importer", _s25_15, _s29_6, "select_file", "Vennligst velg en fil", _s16_60, _s16_61, "csv_file", "Velg CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook-URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Ubetalt", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Totalbel\xf8p", "quote_total", "Tilbud totalt", "credit_total", "Total kreditt", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Advarsel", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Kundenavn", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Utgiftskategorier", _s20_42, "Ny Utgiftskategori", _s21_40, _s21_41, _s24_28, "Utgiftskategori ble opprettet", _s24_29, "Oppdaterte utgiftskategori", _s25_19, "Utgiftskategori ble arkivert", _s24_30, "Slettet kategori", _s24_31, _s37_7, _s25_20, "Utgiftskategori ble gjenopprettet", _s27_21, ":count utgiftskategorier ble arkivert", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Sett Aktiv", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Gjentakende Faktura", _s18_45, "Gjentakende Fakturaer", _s21_47, "Ny Gjentakende Faktura", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Suksessfullt arkivert gjentakende faktura", _s25_28, "Suksessfullt slettet gjentakende faktura", _s25_29, _s38_11, _s26_12, "Suksessfullt gjenopprettet gjentakende faktura", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Fortjeneste", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logger", "view_portal", "Vis Portal", "copy_link", "Kopier Lenke", "token_billing", "Lagre kortdetaljer", _s24_34, "Velkommen til Invoice Ninja", "always", "Alltid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Kundenummer", "auto_convert", "Auto Convert", "company_name", "Firmanavn", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "E-postfakturaer sendt", "emailed_quotes", _s23_74, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "timer", "statement", "Erkl\xe6ring", "taxes", "Skatter", "surcharge", "Tilleggsgebyr", "apply_payment", "Apply Payment", "apply_credit", "Bruk Kredit", "apply", "Bruk", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Til", "health_check", "Health Check", "payment_type_id", "Betalingsmetode", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Forest\xe5ende Fakturaer", _s17_59, _s17_60, "recent_payments", "Nylige Betalinger", "upcoming_quotes", "Oppkommende Tilbud", "expired_quotes", "Utl\xf8pte Tilbud", "create_client", "Create Client", "create_invoice", "Opprett faktura", "create_quote", "Lag tilbud", "create_payment", "Create Payment", "create_vendor", "Opprett leverand\xf8r", "update_quote", "Update Quote", "delete_quote", "Slett tilbud", "update_invoice", "Update Invoice", "delete_invoice", "Slett faktura", "update_client", "Update Client", "delete_client", "Slett kunde", "delete_payment", "Slett betaling", "update_vendor", "Update Vendor", "delete_vendor", "Slett Leverand\xf8r", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Opprett Oppgave", "update_task", "Update Task", "delete_task", "Slett Oppgave", "approve_quote", "Approve Quote", "off", "Av", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API-tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Rediger Token", "created_token", "Opprettet token", "updated_token", "Oppdaterte token", "archived_token", "Suksessfullt arkivert token", "deleted_token", "Suksessfullt slettet token", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "E-postfaktura", "email_quote", "Send tilbudet som E-post", "email_credit", "Email Credit", "email_payment", "E-postbetaling", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Kontakt navn", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kreditbel\xf8p", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Ekslusiv", "inclusive", "Inklusiv", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", _s17_148, _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Fullt Navn", _s17_71, "By/Fylke/Postnummer", _s17_73, "Postnr./Sted/Fylke", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Fjern data", _s16_91, _s32_10, _s18_54, "Advarsel: Dette sletter alle dine data permanent, og kan ikke gjennopprettes.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dager", "age_group_30", "30 - 60 Dager", "age_group_60", "60 - 90 Dager", "age_group_90", "90 - 120 Dager", "age_group_120", "Mer enn 120 dager", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Fakturadetaljer", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count faktura sendt", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "aktiver lisens", "cancel_account", "Kanseler Konto", _s22_44, "Advarsel: Dette vil permanent slette kontoen din, du kan ikke angre.", "delete_company", "Slett Firma", _s22_45, "Advarsel: Dette vil permanent slette ditt firma, dette kan ikke gjennopprettes.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Forslag", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, "Kontoadministrasjon", "credit_date", "Kreditdato", "credit", "Kredit", "credits", "Krediter", "new_credit", "Oppgi Kredit", "edit_credit", "Rediger Kredit", "created_credit", "Kredit opprettet", "updated_credit", "Kredit oppdatert", "archived_credit", "Kredit arkivert", "deleted_credit", "Kredit slettet", "removed_credit", _s27_34, "restored_credit", "Suksessfullt gjenopprettet kredit", _s16_98, "Arkiverte :count krediter", "deleted_credits", "Slettet :count krediter", _s16_99, _s36_9, "current_version", "N\xe5v\xe6rende versjon", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "L\xe6r mer", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nytt Firma", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Nullstill", "number", "Number", "export", "Eksporter", "chart", "Diagram", "count", "Count", "totals", "Totaler", "blank", "Tom", "day", "Dag", "month", "M\xe5ned", "year", "\xc5r", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupper etter", "credit_balance", "Kreditsaldo", _s18_61, _s18_62, _s17_77, "Fult navn", "contact_phone", "Kontakt Telefon", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Leverings adresse", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, "Leverings adresse postnummer", _s16_130, _s16_131, _s16_132, "Fakturaadresse", _s16_133, _s17_81, "billing_city", "Fakturering By", "billing_state", _s22_50, _s19_36, "Fakturering Postnummer", "billing_country", "Fakturering Land", "client_id", "Kunde-ID", "assigned_to", "Assigned to", "created_by", "Laget av :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolonner", "aging", "Aging", "profit_and_loss", "Fortjeneste og Tap", "reports", "Rapporter", "report", "Rapport", "add_company", "Legg til Firma", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Hjelp", "refund", "Refunder", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Kontakt Epost", "multiselect", "Multiselect", "entity_state", "Tilstand", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Beskjed", "from", "Fra", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Dokumentasjon", "contact_us", "Kontakt Oss", "subtotal", "Totalbel\xf8p", "line_total", "Sum", "item", "Produkt", "credit_email", "Credit Email", "iframe_url", "Nettside", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Vennligst velg en klient", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Skatteinnstillinger", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Valg", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Send", _s16_142, "Gjenopprett ditt passord", "late_fees", "Late Fees", "credit_number", "Kreditnummer", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Planlegg", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Dager", "invoice_email", "Faktura-e-post", "payment_email", "Betalings-e-post", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Tilbuds-e-post", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "Brukerh\xe5ndtering", "users", "Brukere", "new_user", "Ny Bruker", "edit_user", "Endre bruker", "created_user", _s25_36, "updated_user", "Bruker oppdatert", "archived_user", "Suksessfullt arkivert bruker", "deleted_user", "Bruker slettet", "removed_user", _s25_39, "restored_user", "Suksessfullt gjenopprettet bruker", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Systeminnstillinger", "invoice_options", "Faktura alternativer", _s17_86, _s19_79, _s22_52, "Bare vis delbetalinger om det har forekommet en delbetaling.", _s23_26, "Embed Dokumenter", _s28_20, _s39_4, _s16_151, "Show header on", _s16_152, "Show footer on", "first_page", "F\xf8rste side", "all_pages", "Alle sider", "last_page", "Siste side", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Prim\xe6rfarge", "secondary_color", "Sekund\xe6r farge", "page_size", "Page Size", "font_size", "Skriftst\xf8rrelse", "quote_design", "Quote Design", "invoice_fields", "Faktura felt", "product_fields", "Produktfelter", "invoice_terms", _s20_83, "invoice_footer", "Faktura Bunntekst", "quote_terms", "Tilbuds Vilk\xe5r", "quote_footer", "Tilbud Bunntekst", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Konverter", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daglig", "freq_weekly", "Ukentlig", "freq_two_weeks", "To uker", "freq_four_weeks", "Fire uker", "freq_monthly", "M\xe5nedlig", "freq_two_months", "To m\xe5neder", _s17_90, "Tre m\xe5neder", _s16_153, "Fire m\xe5neder", "freq_six_months", "Seks m\xe5neder", "freq_annually", "\xc5rlig", "freq_two_years", "To \xe5r", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, "Genererte Nummere", "charge_taxes", "Inkluder skatt", "next_reset", "Neste Nullstilling", "reset_counter", "Nullstill Teller", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Egendefinert CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, "Faktura-signatur", _s30_10, "Krever klients signatur.", _s23_31, "Tilbuds-signatur", _s22_54, "Passord-beskytt fakturaer", _s27_36, _s142_, "authorization", "Autorisasjon", "subdomain", "Subdomene", "domain", "Domene", "portal_mode", "Portal Mode", "email_signature", "Med vennlig hilsen,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Svar til Epost", "reply_to_name", "Reply-To Name", "bcc_email", "BCC E-post", "processed", "Processed", "credit_card", "Betalingskort", "bank_transfer", "Bankoverf\xf8ring", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktiver min", "enable_max", "Aktiver maks", "min_limit", "Min: :min", "max_limit", "Maks: :max", "min", "Min", "max", "Maks", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Oppdater Adresse", _s19_45, "Oppdater kundens adresse med oppgitte detaljer", "rate", "Sats", "tax_rate", "Skattesats", "new_tax_rate", "Ny Skattesats", "edit_tax_rate", "Rediger skattesats", _s16_160, "Suksessfullt opprettet skattesats", _s16_161, "Suksessfullt oppdatert skattesats", _s17_98, "Suksessfullt arkivert skattesatsen", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Automatisk-utfyll produkter", _s18_80, "Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden", "update_products", "Automatisk oppdater produkter", _s20_65, "\xc5 endre en faktura vil automatisk oppdatere produktbilioteket", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Avgifter", "limits", "Begrensninger", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "S\xf8ndag", "monday", "Mandag", "tuesday", "Tirsdag", "wednesday", "Onsdag", "thursday", "Torsdag", "friday", "Fredag", "saturday", "L\xf8rdag", "january", "Januar", "february", "Februar", "march", "Mars", "april", "April", "may", "Mai", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "Desember", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Timers Tid", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Produkt-innstillinger", "device_settings", "Device Settings", "defaults", "Standarder", "basic_settings", "Grunnleggende Innstillinger", _s17_103, "Avanserte innstillinger", "company_details", "Firmainformasjon", "user_details", "Brukerdetaljer", "localization", "Regioninnstillinger", "online_payments", "Nettbetalinger", "tax_rates", "Skattesatser", "notifications", "Varsler", "import_export", _s16_268, "custom_fields", "Egendefinerte felt", "invoice_design", "Fakturadesign", "buy_now_buttons", "Betal N\xe5-knapper", "email_settings", "E-post-innstillinger", _s23_37, "Design & P\xe5minnelser", _s22_55, _s20_67, _s19_51, "Datavisualiseringer", "price", "Pris", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "vilk\xe5r for bruk", "privacy_policy", "Personvernregler", "sign_up", "Registrer deg", "account_login", "Kontoinnlogging", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Lag ny", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Last ned", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenter", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Utgiftsdato", "pending", "Avventer", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Konvertert", _s24_44, "Legg ved dokumenter til faktura", "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Merk som betalt", "category", "Kategori", "address", "Adresse", "new_vendor", "Ny Leverand\xf8r", "created_vendor", "Opprettet leverand\xf8r", "updated_vendor", "Oppdaterte leverand\xf8r", "archived_vendor", "Arkiverte leverand\xf8r", "deleted_vendor", "Slettet leverand\xf8r", "restored_vendor", _s28_27, _s16_179, "Arkiverte :count leverand\xf8rer", "deleted_vendors", "Slettet :count leverand\xf8rer", _s16_180, _s36_11, "new_expense", "Angi utgift", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, "Arkiverte utgifter", _s16_183, "Slettet utgifter", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Fakturert", "logged", "Logget", "running", "L\xf8pende", "resume", "Gjenoppta", "task_errors", "Vennligst rett alle overlappende tider", "start", "Start", "stop", "Stopp", "started_task", _s25_47, "stopped_task", "Suksessfullt stoppet oppgave", "resumed_task", _s25_49, "now", "N\xe5", _s16_184, _s16_185, "timer", "Tidtaker", "manual", "Manuell", "budgeted", "Budgeted", "start_time", "Starttid", "end_time", "Sluttid", "date", "Dato", "times", "Tider", "duration", "Varighet", "new_task", "Ny Oppgave", "created_task", "Suksessfullt opprettet oppgave", "updated_task", "Suksessfullt oppdatert oppgave", "archived_task", "Arkiverte oppgave", "deleted_task", "Slettet oppgave", "restored_task", "Gjenopprettet oppgave", "archived_tasks", "Arkiverte :count oppgaver", "deleted_tasks", "Slettet :count oppgaver", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", "Opprettet prosjekt", "updated_project", "Oppdaterte prosjekt", _s16_186, "Arkiverte prosjekt", "deleted_project", "Slettet prosjekt", _s16_187, "Gjenopprettet prosjekt", _s17_111, "Arkiverte :count prosjekter", _s16_188, "Slettet :count prosjekter", _s17_112, _s37_15, "new_project", "Nytt Prosjekt", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "klikk her", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "L\xe5st", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Bunntekst", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Tilpass Utvalg", "date_range", "Datoperiode", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Denne m\xe5neden", "last_month", "Siste m\xe5ned", "this_year", "Dette \xc5ret", "last_year", "Siste \xe5r", "custom", "Egendefiner", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Se faktura", "convert", "Convert", "more", "More", "edit_client", "Rediger Kunde", "edit_product", "Endre produkt", "edit_invoice", "Rediger faktura", "edit_quote", "Endre tilbud", "edit_payment", "Rediger Betaling", "edit_task", "Rediger Oppgave", "edit_expense", "Edit Expense", "edit_vendor", "Rediger Leverand\xf8r", "edit_project", "Rediger Prosjekt", _s20_68, _s20_69, "billing_address", "Fakturerings Adresse", _s16_191, "Leveringsadresse", "total_revenue", "Sum omsetning", "average_invoice", "Gjennomsnittlige fakturaer", "outstanding", "Utest\xe5ende", "invoices_sent", _s22_82, "active_clients", "aktive kunder", "close", "Lukk", "email", "E-post", "password", "Passord", "url", "URL", "secret", "Secret", "name", "Navn", "logout", "Logg ut", "login", "Logg inn", "filter", "Filter", "sort", "Sort", "search", "S\xf8k", "active", "Aktiv", "archived", "Arkivert", "deleted", "Slettet", "dashboard", "Skrivebord", "archive", "Arkiv", "delete", "Slett", "restore", "Gjenopprette", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Stigende", "descending", "Synkende", "save", "Lagre", _s17_115, _s17_116, "paid_to_date", "Betalt til Dato", "balance_due", "Gjenst\xe5ende", "balance", "Balanse", "overview", "Overview", "details", "Detaljer", "phone", "Telefon", "website", "Nettside", "vat_number", "MVA-nummer", "id_number", "Id nummer", "create", "Lag", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontakter", "additional", "Additional", "first_name", "Fornavn", "last_name", "Etternavn", "add_contact", "Legg til kontakt", "are_you_sure", "Er du sikker?", "cancel", "Avbryt", "ok", "Ok", "remove", "Fjern", _s16_197, _s16_198, "product", "Produkt", "products", "Produkter", "new_product", "Nytt Produkt", "created_product", "Produkt lagret", "updated_product", "Produkt oppdatert", _s16_199, "Produkt arkivert", "deleted_product", "Slettet produkt", _s16_200, "Gjenopprettet produkt", _s17_117, _s37_23, _s16_201, "Slettet :count produkter", _s17_118, _s37_16, "product_key", "Produkt", "notes", "Notater", "cost", "Kostnad", "client", "Kunde", "clients", "Kunder", "new_client", "Ny Kunde", "created_client", "Opprettet kunde", "updated_client", "Oppdaterte kunde", "archived_client", "Arkiverte kunde", _s16_202, "Arkiverte :count kunder", "deleted_client", "Slettet kunde", "deleted_clients", "Slettet :count kunder", "restored_client", "Gjenopprettet kunde", _s16_203, _s36_13, "address1", "Gate", "address2", "Husnummer", "city", "By", "state", "Fylke", "postal_code", "Postnummer", "country", "Country", "invoice", "Faktura", "invoices", "Fakturaer", "new_invoice", "Ny faktura", "created_invoice", "Faktura opprettet", "updated_invoice", "Faktura oppdatert", _s16_204, "Faktura arkivert", "deleted_invoice", "Faktura slettet", _s16_205, "Suksessfullt gjenopprettet faktura", _s17_119, "Fakturaer arkivert", _s16_206, "Slettet :count fakturaer", _s17_120, _s37_17, "emailed_invoice", "E-postfaktura sendt", "emailed_payment", _s28_58, "amount", "Bel\xf8p", "invoice_number", "Fakturanummer", "invoice_date", _s16_261, "discount", "Rabatter:", "po_number", "Ordrenummer", "terms", "Vilk\xe5r", "public_notes", "Offentlig notater", "private_notes", "Private notater", "frequency", "Frekvens", "start_date", "Startdato", "end_date", "Sluttdato", "quote_number", "Tilbudsnummer", "quote_date", "Tilbudsdato", "valid_until", "Gyldig til", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Beskrivelse", "unit_cost", "Stykkpris", "quantity", "Antall", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon (arbeid)", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Forfallsdato", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Totalt", "percent", "Prosent", "edit", "Endre", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Oppgavesats", "settings", "Innstillinger", "language", "Language", "currency", "Currency", "created_at", "Dato Opprettet", "created_on", "Created On", "updated_at", "Updated", "tax", "Skatt", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Forfalt", "draft", "Kladd", "sent", "Sendt", "viewed", "Viewed", "approved", "Approved", "partial", "Delvis/Depositum", "paid", "Betalt", "mark_sent", "Merk som Sendt", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Ferdig", _s37_18, _s37_19, "dark_mode", "M\xf8rk Modus", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivitet", _s16_209, _s16_210, "clone", "Kopier", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Betalingsvilk\xe5r", "payment_date", "Betalingsdato", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Kundeportal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktivert", "recipients", "Mottakere", "initial_email", "F\xf8rste E-post", "first_reminder", "F\xf8rste P\xe5minnelse", "second_reminder", "Andre P\xe5minnelse", "third_reminder", _s17_178, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Mal", "send", "Send", "subject", "Emne", "body", "Body", "send_email", "Send e-post", "email_receipt", "Send betalingskvittering som e-post til kunden", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Tilpass", "history", "Historie", "payment", "Betaling", "payments", "Betalinger", "refunded", "Refunded", "payment_type", "Betalingsmetode", _s21_79, "Transaksjonsreferanse", "enter_payment", "Oppgi betaling", "new_payment", "Oppgi Betaling", "created_payment", "Betaling opprettet", "updated_payment", "Suksessfullt oppdatert betaling", _s16_217, "Betaling arkivert", "deleted_payment", _s16_262, _s16_218, "Suksessfullt gjenopprettet betaling", _s17_124, "Arkiverte :count betalinger", _s16_219, "Slettet :count betalinger", _s17_125, _s37_20, "quote", "Pristilbud", "quotes", "Pristilbud", "new_quote", "Nytt tilbud", "created_quote", "Tilbud opprettet", "updated_quote", "Tilbud oppdatert", "archived_quote", "Tilbud arkivert", "deleted_quote", "Tilbud slettet", "restored_quote", "Suksessfullt gjenopprettet tilbud", "archived_quotes", "Arkiverte :count tilbud", "deleted_quotes", "Slettet :count tilbud", "restored_quotes", _s35_21, "expense", "Utgift", "expenses", "Utgifter", "vendor", "Leverand\xf8r", "vendors", "Leverand\xf8rer", "task", "Oppgave", "tasks", "Oppgaver", "project", "Prosjekt", "projects", "Prosjekter", "activity_1", ":user opprettet kunde :client", "activity_2", ":user arkiverte kunde :client", "activity_3", ":user slettet kunde :client", "activity_4", ":user opprettet faktura :invoice", "activity_5", ":user oppdaterte faktura :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user arkiverte faktura :invoice", "activity_9", ":user slettet faktura :invoice", "activity_10", _s85_0, "activity_11", ":user oppdaterte betaling :payment", "activity_12", ":user arkiverte betaling :payment", "activity_13", ":user slettet betaling :payment", "activity_14", ":user la inn :credit kredit", "activity_15", ":user oppdaterte :credit kredit", "activity_16", ":user arkiverte :credit kredit", "activity_17", ":user slettet :credit kredit", "activity_18", ":user opprettet tilbud :quote", "activity_19", ":user oppdaterte tilbud :quote", "activity_20", _s50_9, "activity_21", ":contact viste tilbud :quote", "activity_22", ":user arkiverte tilbud :quote", "activity_23", ":user slettet tilbud :quote", "activity_24", ":user gjenopprettet tilbud :quote", "activity_25", ":user gjenopprettet faktura :invoice", "activity_26", ":user gjenopprettet kunde :client", "activity_27", ":user gjenopprettet betaling :payment", "activity_28", ":user gjenopprettet :credit kredit", "activity_29", _s42_13, "activity_30", ":user opprettet leverand\xf8r :vendor", "activity_31", ":user arkiverte leverand\xf8r :vendor", "activity_32", ":user slettet leverand\xf8r :vendor", "activity_33", ":user gjenopprettet leverand\xf8r :vendor", "activity_34", ":user opprettet utgift :expense", "activity_35", ":user arkiverte utgift :expense", "activity_36", ":user slettet utgift :expense", "activity_37", ":user gjenopprettet utgift :expense", "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", ":user opprettet oppgave :task", "activity_43", ":user oppdaterte oppgave :task", "activity_44", ":user arkiverte oppgave :task", "activity_45", ":user slettet oppgave :task", "activity_46", ":user gjenopprettet oppgave :task", "activity_47", ":user oppdaterte utgift :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Engangs Passord", "emailed_quote", _s23_74, "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "Alle", "select", "Velg", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Fakturanummer-teller", _s20_73, _s20_74, _s20_75, "Tilbudsnummer-teller", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Forfallsdato", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Fakturer", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Skattenavn", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Bel\xf8p", "age", "Alder", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, "Utgiftskategori", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "fa", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Standing", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Add Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", _s23_42, _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Approve", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Set Password", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0641\u0639\u0627\u0644", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, _s18_34, _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_15, _s29_6, "select_file", _s20_91, _s16_60, _s16_61, "csv_file", "CSV file", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s17_48, _s18_45, _s18_46, _s21_47, _s21_48, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", _s17_136, _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "\u0645\u0627\u0644\u06cc\u0627\u062a", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, _s17_58, _s17_59, _s17_60, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "\u062d\u0630\u0641 \u0641\u0627\u06a9\u062a\u0648\u0631", "update_client", "Update Client", "delete_client", "Delete Client", "delete_payment", "Delete Payment", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_15, "updated_token", _s26_16, "archived_token", _s27_25, "deleted_token", _s26_17, "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u0627\u06cc\u0645\u06cc\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06a9\u062a\u0648\u0631", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_70, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", _s27_31, "updated_credit", _s27_32, "archived_credit", _s28_18, "deleted_credit", _s27_33, "removed_credit", _s27_34, "restored_credit", _s28_19, _s16_98, _s36_18, "deleted_credits", _s35_23, _s16_99, _s36_9, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u06cc\u0634\u062a\u0631", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Credit Balance", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Message", "from", "From", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "\u062c\u0645\u0639 \u062c\u0632", "line_total", "\u062e\u0637 \u06a9\u0644", "item", "\u0627\u0642\u0644\u0627\u0645", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Tax Settings", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, _s21_101, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_36, "updated_user", _s25_37, "archived_user", _s26_24, "deleted_user", _s25_38, "removed_user", _s25_39, "restored_user", _s26_25, "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s16_150, "invoice_options", "Invoice Options", _s17_86, _s17_87, _s22_52, _s87_, _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "\u0642\u0648\u0627\u0646\u06cc\u0646 \u0641\u0627\u06a9\u062a\u0648\u0631", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_90, "Three months", _s16_153, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Regards,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Update Address", _s19_45, _s45_4, "rate", "\u0646\u0631\u062e", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, _s34_21, _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", _s18_112, _s18_80, _s71_, "update_products", _s20_78, _s20_65, _s65_0, _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, _s16_170, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_103, _s17_104, "company_details", "Company Details", "user_details", "User Details", "localization", "Localization", "online_payments", "Online Payments", "tax_rates", "\u0646\u0631\u062e \u0645\u0627\u0644\u06cc\u0627\u062a", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_37, _s21_72, _s22_55, _s20_67, _s19_51, _s19_52, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, _s16_172, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Download", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Converted", _s24_44, _s24_57, "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "Mark Paid", "category", "Category", "address", "\u0622\u062f\u0631\u0633", "new_vendor", "New Vendor", "created_vendor", _s27_42, "updated_vendor", _s27_43, "archived_vendor", _s28_26, "deleted_vendor", _s27_44, "restored_vendor", _s28_27, _s16_179, _s36_19, "deleted_vendors", _s35_24, _s16_180, _s36_11, "new_expense", "Enter Expense", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, _s29_20, "deleted_expense", _s28_30, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s29_45, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_12, "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", _s25_48, "resumed_task", _s25_49, "now", "Now", _s16_184, _s16_185, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_50, "updated_task", _s25_51, "archived_task", _s26_30, "deleted_task", _s25_52, "restored_task", _s26_31, "archived_tasks", _s34_22, "deleted_tasks", _s33_25, "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "click here", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Client", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Billing Address", _s16_191, _s16_192, "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", _s20_77, "active_clients", "active clients", "close", "Close", "email", "\u0627\u06cc\u0645\u06cc\u0644", "password", "Password", "url", "URL", "secret", "Secret", "name", "\u0646\u0627\u0645", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_115, _s17_116, "paid_to_date", "\u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u062a\u0627\u0631\u06cc\u062e", "balance_due", "\u0628\u062f\u0647\u06cc \u062a\u0639\u0627\u062f\u0644", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "\u062a\u0644\u0641\u0646", "website", "\u0648\u0628 \u0633\u0627\u06cc\u062a", "vat_number", "VAT Number", "id_number", "ID Number", "create", "Create", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "\u0645\u062e\u0627\u0637\u0628\u06cc\u0646", "additional", "Additional", "first_name", "\u0646\u0627\u0645", "last_name", "\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc", "add_contact", "\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062e\u0627\u0637\u0628", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_35, "updated_product", _s28_36, _s16_199, _s29_24, "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "\u0645\u0634\u062a\u0631\u06cc\u0627\u0646", "clients", "Clients", "new_client", "New Client", "created_client", _s27_46, "updated_client", _s27_47, "archived_client", _s28_38, _s16_202, _s36_20, "deleted_client", _s27_48, "deleted_clients", _s35_25, "restored_client", _s28_39, _s16_203, _s36_13, "address1", "\u062e\u06cc\u0627\u0628\u0627\u0646", "address2", "\u0646\u0645\u0648\u0646\u0647", "city", "\u0634\u0647\u0631", "state", "\u0627\u0633\u062a\u0627\u0646", "postal_code", "\u06a9\u062f \u067e\u0633\u062a\u06cc", "country", "Country", "invoice", "\u0641\u0627\u06a9\u062a\u0648\u0631", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_40, "updated_invoice", _s28_41, _s16_204, _s29_26, "deleted_invoice", _s28_42, _s16_205, _s29_27, _s17_119, _s37_25, _s16_206, _s36_21, _s17_120, _s37_17, "emailed_invoice", _s28_67, "emailed_payment", _s28_58, "amount", "Amount", "invoice_number", "\u0634\u0645\u0627\u0631\u0647 \u0641\u0627\u06a9\u062a\u0648\u0631", "invoice_date", "\u062a\u0627\u0631\u06cc\u062e \u0641\u0627\u06a9\u062a\u0648\u0631", "discount", "\u062a\u062e\u0641\u06cc\u0641", "po_number", "\u0634\u0645\u0627\u0631\u0647 PO", "terms", "\u0642\u0648\u0627\u0646\u06cc\u0646", "public_notes", "Public Notes", "private_notes", "\u0646\u0648\u0634\u062a\u0647 \u062e\u0635\u0648\u0635\u06cc", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a", "unit_cost", "\u0642\u06cc\u0645\u062a \u0648\u0627\u062d\u062f", "quantity", "\u062a\u0639\u062f\u0627\u062f", "add_item", "Add Item", "contact", "Contact", "work_phone", "\u062a\u0644\u0641\u0646", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u062a\u0627\u0631\u06cc\u062e \u067e\u0631\u062f\u0627\u062e\u062a", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0645\u0627\u0644\u06cc\u0627\u062a", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "Paid", "mark_sent", "Mark Sent", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Done", _s37_18, _s37_19, "dark_mode", "Dark Mode", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_209, _s16_210, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u0642\u0648\u0627\u0646\u06cc\u0646 \u067e\u0631\u062f\u0627\u062e\u062a", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_20, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, _s21_80, "enter_payment", "\u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u062f\u0627\u062e\u062a", "new_payment", "Enter Payment", "created_payment", _s28_43, "updated_payment", _s28_44, _s16_217, _s29_28, "deleted_payment", _s28_45, _s16_218, _s29_29, _s17_124, _s37_26, _s16_219, _s36_22, _s17_125, _s37_20, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_36, "updated_quote", _s26_37, "archived_quote", _s27_52, "deleted_quote", _s26_38, "restored_quote", _s27_53, "archived_quotes", _s35_22, "deleted_quotes", _s34_23, "restored_quotes", _s35_21, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_46, "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", _s30_19, "activity_5", _s30_20, "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", _s85_0, "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", _s30_25, "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", _s26_44, "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Select", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, _s22_76, _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Type", "invoice_amount", "Invoice Amount", _s16_224, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "pl", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Ustawienia P\u0142atno\u015bci", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Oczekuj\u0105ce", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Dodaj dostawc\u0119 p\u0142atno\u015bci", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Dodaj do faktury :invoice", _s17_6, _s17_7, "week", "Tydzie\u0144", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Waluta faktury", "range", "Zakres", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Utw\xf3rz projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Op\u0142ata do faktury :amount wynosi\u0107 b\u0119dzie :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "Po zapisaniu", "view_record", "Podgl\u0105d rekordu", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Zatwierd\u017a", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Waluta klienta", _s16_12, "Waluta firmy", "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, "Zako\u0144czono sukcesem oznaczenia zobowi\u0105zania jako zap\u0142acone", _s22_23, "Zaznaczono zobowi\u0105zania do zap\u0142acenia", _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", _s17_179, "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, "Pokazuj podgl\u0105d PDF", _s21_14, "Wy\u015bwietlanie podgl\u0105du PDF podczas edycji faktur", "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Klikni\u0119cie zaznaczonego", "hide_preview", "Ukryj podgl\u0105d", "edit_record", "Edycja rekordu", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Ustaw has\u0142o", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Zobacz wydatek # :expense", "view_statement", "Zobacz wyci\u0105g", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Nazwa Od", _s16_21, "Powiel do wydatk\xf3w", _s17_13, "Wydatek odnawialny", _s18_13, "Wydatki odnawialne", _s21_16, "Nowy wydatek odnawialny", _s22_24, "Edycja wydatku odnawialnego", _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s28_79, _s25_6, _s28_79, "last_sent_date", "Data ostatniej wysy\u0142ki", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, "Analityka Google", _s28_1, _s28_2, "decimal_comma", "Dziesi\u0119tne jako przecinek", _s26_4, "U\u017cywaj przecinka jako cz\u0119\u015bci dziesi\u0119tne w formularzach", "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Przewodnik u\u017cytkownika", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Cena netto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, "Dzisiaj jest ostatni dzie\u0144 okresu testowego planu Pro, kliknij aby zaktualizowa\u0107.", "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Czas wysy\u0142ki", "import_data", "Importuj dane", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, "Wszystkie sesje zosta\u0142y pomy\u015blnie zako\u0144czone", _s16_33, "Zako\u0144cz wszystkie sesje", "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Ostatnia aktualizacja", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Nieprzypisano", "partial_value", _s49_1, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktywuj", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Ustaw subdomen\u0119 lub wy\u015bwietl faktur\u0119 na swojej stronie.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, "Podgl\u0105d format\xf3w daty", "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, "W\u0142a\u015bciciel konta mo\u017ce przej\u015b\u0107 na plan p\u0142atny, aby w\u0142\u0105czy\u0107 zaawansowane ustawienia zaawansowane", _s20_21, "Zaktualizuj do p\u0142atnego planu aby w\u0142\u0105czy\u0107 zaawansowane ustawienia", _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, "Zezwalaj na anulowania", _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Wersja testowa w\u0142\u0105czona", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan mapy", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Bezpiecze\u0144stwo", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subskrypcje", _s16_39, _s16_40, _s17_23, "Edytuj subskrypcj\u0119", _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, "Subdomena jest niedost\u0119pna", "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minut", _s16_46, "Czas wygasania has\u0142a", _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, "W\u0142\u0105cz emaile, cykliczne faktury i powiadomienia", _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Pon\xf3w zaproszenie", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Wy\u015blij SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, "Wymagaj has\u0142a przy logowaniu spo\u0142eczno\u015bciowym", "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, "Czas wygaszania sesji w przegl\u0105darce", _s17_28, "Ustawienia bezpiecze\u0144stwa", "resend_email", "Wy\u015blij ponownie email", _s26_8, _s33_12, _s16_51, "Zwr\xf3cono p\u0142atno\u015b\u0107", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Poka\u017c akcje", _s17_30, "Rozpocznij zaznaczanie wielu", _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "Ten kwarta\u0142", "last_quarter", "Poprzedni kwarta\u0142", "to_update_run", "To update run", _s18_33, "Konwertuj do faktury", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Fakturuj zadanie", "invoice_expense", "Faktura na wydatek", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, "Zapis i Podgl\u0105d", "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, "Kwota przeliczona", _s17_32, _s17_33, _s22_28, "Konwertowanie zap\u0142acono", _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "Domy\u015blne dokumenty", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Ca\u0142kowity koszt", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Poka\u017c", "hide", "Ukryj", "empty_columns", "Puste kolumny", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Zadania w trakcie", "recent_tasks", "Ostatnie zadania", "recent_expenses", "Ostatnie wydatki", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Kolumna", "sample", "Przyk\u0142ad", "map_to", "Map To", "import", "Importuj", _s25_15, _s29_6, "select_file", "Wybierz plik", _s16_60, _s16_61, "csv_file", "Plik CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Us\u0142uga", "clone_to", "Powiel do", "clone_to_other", "Powiel do Innych", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nie zap\u0142acono", "white_label", "White Label", "delivery_note", "Dow\xf3d dostawy", _s24_23, _s24_24, _s24_25, "Op\u0142acone faktury s\u0105 zablokowane", "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Zaliczka", "invoice_total", "Faktura razem", "quote_total", "Oferta razem", "credit_total", "Credit Total", _s23_14, "Faktura razem", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Ostrze\u017cenie", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "Kod CVV", "client_name", "Nazwa klienta", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Kategorie wydatk\xf3w", _s20_42, "Nowa kategoria wydatk\xf3w", _s21_40, _s21_41, _s24_28, "Kategoria wydatk\xf3w zosta\u0142a utworzona", _s24_29, "Kategoria wydatk\xf3w zosta\u0142a zaktualizowana", _s25_19, "Kategoria wydatk\xf3w zosta\u0142a zarchiwizowana", _s24_30, "Usuni\u0119to kategori\u0119", _s24_31, _s37_7, _s25_20, "Przywr\xf3cono kategori\u0119 wydatk\xf3w", _s27_21, "Zarchiwizowana :count kategorii wydatk\xf3w", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", "\u015aled\u017a op\u0142acony koszt", _s18_42, "Utw\xf3rz faktur\u0119", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, "Powiel do odnawialnych", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Razem podatki", "line_taxes", "Line Taxes", "total_fields", "Suma p\xf3l", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Oznacz jako aktywn\u0105", "day_count", "Day :count", _s22_35, "Pierwszy dzie\u0144 miesi\u0105ca", _s21_45, "Ostatni dzie\u0144 miesi\u0105ca", _s17_45, _s17_46, "endless", "Nieograniczone", "next_send_date", "Najbli\u017csza data wysy\u0142ki", _s16_68, "Ilo\u015b\u0107 powt\xf3rze\u0144", _s17_47, "Faktura cykliczna", _s18_45, "Faktury cykliczne", _s21_47, "Nowa faktura cykliczna", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Odnawialna faktura zosta\u0142a zarchiwizowana", _s25_28, "Faktura cykliczna zosta\u0142a usuni\u0119ta.", _s25_29, _s38_11, _s26_12, "Faktura cykliczna zosta\u0142a przywr\xf3cona", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Data wys\u0142ania", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Zysk", "line_item", "Element na li\u015bcie", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Wy\u015blij E-Mail", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "Logi systemu", "view_portal", "Zobacz portal", "copy_link", "Copy Link", "token_billing", "Zapisz dane karty", _s24_34, _s24_35, "always", "Zawsze", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etykieta", "client_number", "Numer klienta", "auto_convert", "Auto Convert", "company_name", "Nazwa firmy", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, "Ostatnio wys\u0142ane przypomnienie", "pdf_page_info", "Strona :current z :total", _s16_72, "Wysy\u0142ka maili powiod\u0142a si\u0119", "emailed_quotes", "Wysy\u0142ka ofert powiod\u0142a si\u0119", "emailed_credits", "Wys\u0142ano zobowi\u0105zanie", "gateway", "Dostawca p\u0142atno\u015bci", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Godziny", "statement", "Wyci\u0105g", "taxes", "Podatki", "surcharge", "Dop\u0142ata", "apply_payment", "Apply Payment", "apply_credit", "Zastosuj kredyt", "apply", "Zastosuj", "unapplied", "Unapplied", "select_label", "Wybierz etykiet\u0119", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Do", "health_check", "Health Check", "payment_type_id", "Typ p\u0142atno\u015bci", "last_login_at", "Ostanie logowanie", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Zako\u0144czone", "gross", "Gross", "net_amount", "Kwota netto", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Nadchodz\u0105ce faktury", _s17_59, _s17_60, "recent_payments", "Ostatnie p\u0142atno\u015bci", "upcoming_quotes", "Nadchodz\u0105ce oferty", "expired_quotes", "Wygas\u0142e oferty", "create_client", "Create Client", "create_invoice", "Utw\xf3rz Faktur\u0119", "create_quote", "Stw\xf3rz ofert\u0119", "create_payment", "Create Payment", "create_vendor", "Utw\xf3rz dostawc\u0119", "update_quote", "Update Quote", "delete_quote", "Usu\u0144 ofert\u0119", "update_invoice", "Update Invoice", "delete_invoice", "Usu\u0144 faktur\u0119", "update_client", "Update Client", "delete_client", "Usu\u0144 klienta", "delete_payment", "Usu\u0144 p\u0142atno\u015b\u0107", "update_vendor", "Update Vendor", "delete_vendor", "Usu\u0144 dostawc\u0119", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Usu\u0144 wydatek", "create_task", "Stw\xf3rz zadanie", "update_task", "Update Task", "delete_task", "Usu\u0144 zadanie", "approve_quote", "Approve Quote", "off", "Wy\u0142aczono", "when_paid", "Kiedy zap\u0142acono", "expires_on", "Expires On", "free", "Darmowe", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", "Uruchom ponownie aplikacj\u0119 po po\u0142\u0105czeniu z Internetem", _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "Tokeny API", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokeny", "new_token", "New Token", "edit_token", "Edytuj token", "created_token", "Token zosta\u0142 utworzony", "updated_token", "Token zosta\u0142 zaktualizowany", "archived_token", "Token zosta\u0142 zarchiwizowany", "deleted_token", "Token zosta\u0142 usuni\u0119ty", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Wy\u015blij faktur\u0119", "email_quote", "Wy\u015blij ofert\u0119", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "Wy\u015bwietl PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Nazwa kontaktu", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "Edytuj warunki p\u0142atno\u015bci", _s20_51, "Utworzono termin p\u0142atno\u015bci", _s20_52, "Zaktualizowano termin p\u0142atno\u015bci", _s21_50, "Zarchiwizowano termin p\u0142atno\u015bci", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", "Zaloguj si\u0119 przez email", "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Wy\u015blij z Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kwota kredytu", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Doliczanie do kwoty", "inclusive", "Wliczanie w kwot\u0119", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, "Szukaj dokument\xf3w", "search_designs", "Search Designs", "search_invoices", "Szukaj faktur", "search_clients", "Szukaj klient\xf3w", "search_products", "Szukaj produkt\xf3w", "search_quotes", "Szukaj ofert", "search_credits", "Szukaj zobowi\u0105za\u0144", "search_vendors", "Szukaj dostawc\xf3w", "search_users", "Szukaj u\u017cytkownik\xf3w", _s16_84, "Szukaj stawek podatkowych", "search_tasks", "Szukaj zada\u0144", "search_settings", "Szukaj ustawie\u0144", "search_projects", "Szukaj projekt\xf3w", "search_expenses", "Szukaj wydatk\xf3w", "search_payments", "Szukaj p\u0142atno\u015bci", "search_groups", "Szukaj grup", "search_company", "Szukaj w firmie", "search_document", "Szukaj 1 dokumentu", "search_design", "Search 1 Design", "search_invoice", "Szukaj 1 faktury", "search_client", "Szukaj 1 klienta", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Zwrot p\u0142atno\u015bci", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Pe\u0142na nazwa", _s17_71, "Miasto/wojew\xf3dztwo/kod pocztowy", _s17_73, "Kod pocztowy/Miasto/Wojew\xf3dztwo", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Data wyczyszczenia", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 dni", "age_group_30", "30 - 60 dni", "age_group_60", "60 - 90 dni", "age_group_90", "90 - 120 dni", "age_group_120", "ponad 120 dni", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Szczeg\xf3\u0142y faktury", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Uprawnienia", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count wys\u0142ana faktura", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Zastosuj licencj\u0119", "cancel_account", "Usu\u0144 konto", _s22_44, "Ostrze\u017cenie: Nie mo\u017cna cofn\u0105\u0107 tej operacji, wszystkie twoje dane zostan\u0105 usuni\u0119te.", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "W\u0142\u0105czone modu\u0142y", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Nag\u0142\xf3wek", "load_design", "Za\u0142aduj projekt", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Propozycje", "tickets", "Tickets", _s16_96, "Powtarzalne wyceny", "recurring_tasks", "Recurring Tasks", _s18_55, "Zarz\u0105dzanie kontem", "credit_date", "Data kredytu", "credit", "Kredyt", "credits", "Zobowi\u0105zania", "new_credit", "Wprowad\u017a kredyt", "edit_credit", "Edytuj kredyt", "created_credit", "Kredyt zosta\u0142 utworzony", "updated_credit", "Zaktualizowano kredyt", "archived_credit", "Kredyt zarchiwizowano", "deleted_credit", "Kredyt zosta\u0142 usuni\u0119ty", "removed_credit", _s27_34, "restored_credit", "Kredyt zosta\u0142 przywr\xf3cony", _s16_98, "Zarchiwizowano :count zobowi\u0105zania", "deleted_credits", "Usuni\u0119to :count zobowi\u0105zania", _s16_99, _s36_9, "current_version", "Aktualna wersja", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Wi\u0119cej informacji", "integrations", "Integracje", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nowa firma", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Numer", "export", "Eksport", "chart", "Wykres", "count", "Count", "totals", "Razem", "blank", "Puste", "day", "Dzie\u0144", "month", "Miesi\u0105c", "year", "Rok", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupuj wed\u0142ug", "credit_balance", "Saldo kredytowe", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Numer telefonu kontaktu", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Ulica dostawy", _s17_80, "Numer domu dostawy", "shipping_city", "Miasto dostawy", "shipping_state", "Wojew\xf3dztwo/Powiat dostawy", _s20_55, "Kod pocztowy dostawy", _s16_130, "Pa\u0144stwo dostawy", _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Numer klienta", "assigned_to", "Assigned to", "created_by", "Utworzono przez :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolumny", "aging", "Odk\u0142adanie", "profit_and_loss", "Zysk i strata", "reports", "Raporty", "report", "Raport", "add_company", "Dodaj firm\u0119", "unpaid_invoice", "Niezap\u0142acona faktura", "paid_invoice", _s17_179, _s16_134, _s16_135, "help", "Pomoc", "refund", "Zwrot", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Email kontaktowy", "multiselect", "Zaznaczanie wielu", "entity_state", "Stan", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Wiadomo\u015b\u0107", "from", "Od", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "forum wsparcia", "about", "About", "documentation", "Dokumentacja", "contact_us", "Skontaktuj si\u0119 z nami", "subtotal", "Suma cz\u0119\u015bciowa", "line_total", "Warto\u015b\u0107 pozycji", "item", "Pozycja", "credit_email", "Credit Email", "iframe_url", _s18_168, "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Tak", "no", "Nie", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Podgl\u0105d", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "U\u017cytkownik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Wybierz klienta", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Ustawienia podatk\xf3w", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Zmie\u0144", _s19_40, _s20_63, "options", "Opcje", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Wy\u015blij", _s16_142, "Odzyskaj swoje has\u0142o", "late_fees", "Late Fees", "credit_number", "Numery noty", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Zaplanuj", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Dni", "invoice_email", "Email faktury", "payment_email", "Email p\u0142atno\u015bci", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Email oferty", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, "Zezw\xf3l u\u017cytkownikowi na zarz\u0105dzanie u\u017cytkownikami, edytowanie ustawie\u0144 oraz wszystkich danych.", "user_management", "Zarz\u0105dzanie u\u017cytkownikami", "users", "U\u017cytkownicy", "new_user", "Nowy u\u017cytkownik", "edit_user", "Edytuj u\u017cytkownika", "created_user", _s25_36, "updated_user", "U\u017cytkownik zosta\u0142 zaktualizowany", "archived_user", "U\u017cytkownik zosta\u0142 zarchiwizowany", "deleted_user", "U\u017cytkownik zosta\u0142 usuni\u0119ty", "removed_user", _s25_39, "restored_user", "U\u017cytkownik zosta\u0142 przywr\xf3cony", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Ustawienia og\xf3lne", "invoice_options", "Opcje faktury", _s17_86, 'Ukryj pole "Zap\u0142acono"', _s22_52, 'Wy\u015bwietlaj "Zap\u0142acono" tylko przy tych fakturach, do kt\xf3rych otrzymano p\u0142atno\u015b\u0107.', _s23_26, "Za\u0142\u0105czniki", _s28_20, "Wstaw do faktury za\u0142\u0105czniki graficzne.", _s16_151, "Poka\u017c nag\u0142\xf3wek na", _s16_152, "Poka\u017c stopk\u0119 na", "first_page", "Pierwsza strona", "all_pages", "Wszystkie strony", "last_page", "Ostatnia strona", "primary_font", "Czcionka podstawowa", "secondary_font", "Czcionka dodatkowa", "primary_color", "G\u0142\xf3wny kolor", "secondary_color", "Dodatkowy kolor", "page_size", "Rozmiar strony", "font_size", "Rozmiar czcionki", "quote_design", "Quote Design", "invoice_fields", "Pola faktury", "product_fields", "Pola produkt\xf3w", "invoice_terms", "Warunki p\u0142atno\u015bci", "invoice_footer", "Stopka faktury", "quote_terms", "Warunki oferty", "quote_footer", "Stopka oferty", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Automatycznie konwertuj", _s23_29, "Utw\xf3rz automatycznie faktur\u0119 z oferty zaakceptowanej przez klienta.", _s17_88, _s17_89, "freq_daily", "Codziennie", "freq_weekly", "Co tydzie\u0144", "freq_two_weeks", "Co dwa tygodnie", "freq_four_weeks", "Co cztery tygodnie", "freq_monthly", "Co miesi\u0105c", "freq_two_months", "Dwa miesi\u0105ce", _s17_90, "Co trzy miesi\u0105ce", _s16_153, "Cztery miesi\u0105ce", "freq_six_months", "Co sze\u015b\u0107 miesi\u0119cy", "freq_annually", "Co rok", "freq_two_years", "Dwa lata", _s16_154, "Three Years", "never", "Nigdy", "company", "Company", _s17_91, "Wygenerowane numery", "charge_taxes", "Obci\u0105\u017c podatkami", "next_reset", "Nast\u0119pny reset", "reset_counter", "Zresetuj licznik", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "W\u0142asny CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, "Przycisk wyboru do warunk\xf3w faktury", _s30_9, "Wymagaj od klienta potwierdzenia, \u017ce akceptuje warunki faktury.", _s23_30, "Przycisk wyboru do warunk\xf3w oferty", _s28_21, "Wymagaj od klienta potwierdzenia, \u017ce akceptuje warunki oferty.", _s25_41, "Podpis na fakurze", _s30_10, "Wymagaj od klienta podpisania faktury", _s23_31, "Podpis na ofercie", _s22_54, "Faktury chronione has\u0142em", _s27_36, "Zezwala na utworzenie hase\u0142 dla ka\u017cdego kontaktu. Je\u015bli has\u0142o zostanie ustanowione, u\u017cytkownik b\u0119dzie musia\u0142 poda\u0107 has\u0142o, aby przegl\u0105da\u0107 faktury.", "authorization", "Autoryzacja", "subdomain", "Subdomena", "domain", "Domena", "portal_mode", "Tryb portalu", "email_signature", "Z wyrazami szacunku,", _s24_38, _s86_, "plain", "Zwyk\u0142y", "light", "Jasny", "dark", "Ciemny", "email_design", "Motyw email", "attach_pdf", "Za\u0142\u0105cz PDF", _s16_158, "Za\u0142\u0105cz dokumenty", "attach_ubl", "Za\u0142\u0105cz UBL", "email_style", "Email Style", _s19_42, "Aktywuj Markup", "reply_to_email", "Odpowiedz do:", "reply_to_name", "Odpowiedz do", "bcc_email", "UDW Email", "processed", "Processed", "credit_card", "Karta Kredytowa", "bank_transfer", "Przelew bankowy", "priority", "Priorytet", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktywuj min", "enable_max", "Aktywuj max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Aktualizuj adres", _s19_45, "Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji", "rate", "Stawka", "tax_rate", "Stawka podatkowa", "new_tax_rate", "Nowa stawka podatkowa", "edit_tax_rate", "Edytuj stawk\u0119 podatkow\u0105", _s16_160, _s29_13, _s16_161, _s29_14, _s17_98, "Zarchiwizowano stawk\u0119 podatkow\u0105", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Automatycznie uzupe\u0142niaj produkty", _s18_80, "Wybieranie produktu automatycznie uzupe\u0142ni opis i kwot\u0119", "update_products", "Automatycznie aktualizuj produkty", _s20_65, "Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produkt\xf3w", _s16_163, _s16_164, _s21_69, "Automatycznie zamieniaj ceny produktu na walut\u0119 klienta", "fees", "Op\u0142aty", "limits", "Limity", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Wy\u0142\u0105czono", "currency_format", "Format waluty", _s21_70, "Pierwszy dzie\u0144 tygodnia", _s23_35, "Pierwszy miesi\u0105c roku", "sunday", "Niedziela", "monday", "Poniedzia\u0142ek", "tuesday", "Wtorek", "wednesday", "\u015aroda", "thursday", "Czwartek", "friday", "Pi\u0105tek", "saturday", "Sobota", "january", "Stycze\u0144", "february", "Luty", "march", "Marzec", "april", "Kwiecie\u0144", "may", "Maj", "june", "Czerwiec", "july", "Lipiec", "august", "Sierpie\u0144", "september", "Wrzesie\u0144", "october", "Pa\u017adziernik", "november", "Listopad", "december", "Grudzie\u0144", "symbol", "Symbol", "ocde", "Code", "date_format", "Format daty", "datetime_format", "Format daty i godziny", "military_time", "24 godzinny czas", _s18_81, "Wy\u015bwietlanie czasu 24 godzinnego", "send_reminders", "Wy\u015blij przypomnienia", "timezone", "Strefa czasowa", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Grupuj", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Prze\u015blij logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Ustawienia produktu", "device_settings", "Ustawienia urz\u0105dzenia", "defaults", "Domy\u015blne", "basic_settings", "Ustawienia podstawowe", _s17_103, "Ustawienia zaawansowane", "company_details", "Dane firmy", "user_details", "Dane u\u017cytkownika", "localization", "Lokalizacja", "online_payments", "P\u0142atno\u015bci online", "tax_rates", "Stawki podatkowe", "notifications", "Powiadomienia", "import_export", "Import | Eksport danych", "custom_fields", "Dostosowane pola", "invoice_design", "Motyw faktury", "buy_now_buttons", "Przyciski Kup Teraz", "email_settings", "Ustawienia e-mail", _s23_37, "Szablony i przypomnienia", _s22_55, _s20_67, _s19_51, "Wizualizacje danych", "price", "Cena", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Warunki korzystania z Serwisu", "privacy_policy", "Polityka prywatno\u015bci", "sign_up", "Zapisz si\u0119", "account_login", "Logowanie", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Dodaj nowy/now\u0105", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Pobierz", _s27_41, _s27_60, "take_picture", "Zr\xf3b zdj\u0119cie", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenty", "new_document", "Nowy dokument", "edit_document", "Edytuj dokument", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Data obci\u0105\u017cenia", "pending", "Oczekuj\u0119", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Skonwertowano", _s24_44, "Dodaj dokumenty do faktury", "exchange_rate", "Kurs wymiany", _s16_178, "Konwertuj walut\u0119", "mark_paid", "Oznacz jako zap\u0142acon\u0105", "category", "Kategoria", "address", "Adres", "new_vendor", "Nowy dostawca", "created_vendor", "Dostawca zosta\u0142 utworzony", "updated_vendor", "Zaktualizowano dostawc\u0119", "archived_vendor", "Dostawca zosta\u0142 zarchiwizowany", "deleted_vendor", "Dostawca zosta\u0142 usuni\u0119ty", "restored_vendor", "Dostawca zosta\u0142 przywr\xf3cony", _s16_179, "Zarchiwizowano :count dostawc\xf3w", "deleted_vendors", "Usuni\u0119to :count dostawc\xf3w", _s16_180, _s36_11, "new_expense", "Dodaj wydatek", "created_expense", "Wydatek zosta\u0142 utworzony", "updated_expense", "Wydatek zosta\u0142 zaktualizowany", _s16_181, _s30_49, "deleted_expense", _s24_88, _s16_182, "Wydatek zosta\u0142 przywr\xf3cony", _s17_109, _s30_49, _s16_183, _s24_88, _s17_110, _s37_14, "copy_shipping", "Kopiuj dostaw\u0119", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Zafakturowano", "logged", "Zapisano", "running", "W trakcie", "resume", "Wzn\xf3w", "task_errors", "Prosz\u0119 skoryguj nak\u0142adaj\u0105ce si\u0119 czasy", "start", "Rozpocznij", "stop", "Zatrzymaj", "started_task", _s25_47, "stopped_task", "Zako\u0144czono wykonywanie zadania", "resumed_task", _s25_49, "now", "Teraz", _s16_184, _s16_185, "timer", "Odliczanie czasu", "manual", "Wprowad\u017a r\u0119cznie", "budgeted", "Budgeted", "start_time", "Czas rozpocz\u0119cia", "end_time", "Zako\u0144czono", "date", "Data", "times", "Razy/Okresy", "duration", "Czas trwania", "new_task", "Nowe zadanie", "created_task", "Pomy\u015blnie utworzono zadanie", "updated_task", "Pomy\u015blnie zaktualizowano zadanie", "archived_task", "Zadania zosta\u0142o zarchiwizowane", "deleted_task", "Usuni\u0119to zadanie", "restored_task", "Zadanie zosta\u0142o przywr\xf3cone", "archived_tasks", "Zarchiwizowano :count zadania/zada\u0144", "deleted_tasks", "Usuni\u0119to :count zadania/zada\u0144", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", "Utworzono projekt", "updated_project", "Zaktualizowano projekt", _s16_186, "Zarchiwizowano projekt", "deleted_project", "Usuni\u0119to projekt", _s16_187, "Przywr\xf3cono projekt", _s17_111, "Zarchiwizowano :count projekt\xf3w", _s16_188, "Usuni\u0119to :count projekty/projekt\xf3w", _s17_112, _s37_15, "new_project", "Nowy projekt", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "kliknij tutaj", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "\u015arednia", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Stopka", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Zaloguj si\u0119 przez Google", "today", "Today", "custom_range", "Okre\u015blony okres", "date_range", "Zakres czasowy", "current", "Obecny", "previous", "Poprzedni", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Ostatnie 7 dni", "last_week", "Ostatni tydzie\u0144", "last30_days", "Ostatnie 30 dni", "this_month", "Ten miesi\u0105c", "last_month", "Ostatni miesi\u0105c", "this_year", "Ten rok", "last_year", "Ostatni rok", "custom", "Dostosowanie", _s16_189, "Powiel do Faktury", "clone_to_quote", "Powiel do Oferty", "clone_to_credit", "Clone to Credit", "view_invoice", "Zobacz faktur\u0119", "convert", "Convert", "more", "Wi\u0119cej", "edit_client", "Edytuj klienta", "edit_product", "Edytuj produkt", "edit_invoice", "Edytuj faktur\u0119", "edit_quote", "Edytuj ofert\u0119", "edit_payment", "Edytuj p\u0142atno\u015b\u0107", "edit_task", "Edytuj zadanie", "edit_expense", "Edytuj wydatek", "edit_vendor", "Edytuj dostawc\u0119", "edit_project", "Edytuj projekt", _s20_68, _s20_69, "billing_address", "Adres rozliczeniowy", _s16_191, "Adres dostawy", "total_revenue", "Ca\u0142kowity doch\xf3d", "average_invoice", "\u015arednia warto\u015b\u0107", "outstanding", "Zaleg\u0142o\u015bci", "invoices_sent", ":count wys\u0142anych faktur", "active_clients", "aktywni klienci", "close", "Zamknij", "email", "Email", "password", "Has\u0142o", "url", "URL", "secret", "Tajny", "name", "Nazwa", "logout", "Wyloguj si\u0119", "login", "Zaloguj", "filter", "Filtruj", "sort", "Sortuj", "search", "Szukaj", "active", "Aktywny", "archived", "Zarchiwizowano", "deleted", "Usuni\u0119te", "dashboard", "Pulpit", "archive", "Archiwum", "delete", "Usu\u0144", "restore", "Przywr\xf3\u0107", _s16_193, "Od\u015bwie\u017canie zako\u0144czone", _s23_38, "Wprowad\u017a adres E-Mail", _s26_32, "Wprowad\u017a has\u0142o", _s21_77, "Wprowad\u017a adres URL", _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Zapisz", _s17_115, _s17_116, "paid_to_date", "Zap\u0142acono", "balance_due", "Do zap\u0142aty", "balance", "Saldo", "overview", "Podsumowanie", "details", "Szczeg\xf3\u0142y", "phone", "Telefon", "website", _s18_168, "vat_number", "Numer NIP", "id_number", "REGON", "create", "Utw\xf3rz", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Kontakty", "additional", "Additional", "first_name", "Imi\u0119", "last_name", "Nazwisko", "add_contact", "Dodaj kontakt", "are_you_sure", "Jeste\u015b pewny?", "cancel", "Anuluj", "ok", "Ok", "remove", "Usu\u0144", _s16_197, _s16_198, "product", "Produkt", "products", "Produkty", "new_product", "Nowy produkt", "created_product", "Produkt zosta\u0142 utworzony", "updated_product", "Produkt zosta\u0142 zaktualizowany", _s16_199, "Produkt zosta\u0142 zarchiwizowany", "deleted_product", "Usuni\u0119to produkt", _s16_200, "Przywr\xf3cono produkt", _s17_117, _s37_23, _s16_201, "Usuni\u0119to :count produkt\xf3w", _s17_118, _s37_16, "product_key", "Produkt", "notes", "Notatki", "cost", "Koszt", "client", "Klient", "clients", "Klienci", "new_client", "Nowy klient", "created_client", "Klient zosta\u0142 utworzony", "updated_client", "Klient zosta\u0142 zaktualizowany", "archived_client", "Klient zosta\u0142 zarchiwizowany", _s16_202, "Zarchiwizowano :count klient\xf3w", "deleted_client", "Klient zosta\u0142 usuni\u0119ty", "deleted_clients", "Usuni\u0119to :count klient\xf3w", "restored_client", "Klient zosta\u0142 przywr\xf3cony", _s16_203, _s36_13, "address1", "Ulica", "address2", "Nr", "city", "Miasto", "state", "Wojew\xf3dztwo", "postal_code", "Kod pocztowy", "country", "Kraj", "invoice", "Faktura", "invoices", "Faktury", "new_invoice", "Nowa faktura", "created_invoice", "Faktura zosta\u0142a utworzona", "updated_invoice", "Faktura zosta\u0142a zaktualizowana", _s16_204, "Faktura zosta\u0142a zarchiwizowana", "deleted_invoice", "Faktura zosta\u0142a usuni\u0119ta", _s16_205, "Faktura zosta\u0142a przywr\xf3cona", _s17_119, "Zarchiwizowano :count faktury", _s16_206, "Usuni\u0119to :count faktury", _s17_120, _s37_17, "emailed_invoice", "Faktura zosta\u0142a wys\u0142ana", "emailed_payment", _s28_58, "amount", "Kwota", "invoice_number", "Numer Faktury", "invoice_date", "Data Faktury", "discount", "Rabat", "po_number", "Numer zam\xf3wienia", "terms", "Warunki", "public_notes", "Notatki publiczne", "private_notes", "Prywatne notatki", "frequency", "Cz\u0119stotliwo\u015b\u0107", "start_date", "Pocz\u0105tkowa data", "end_date", "Ko\u0144cowa data", "quote_number", "Numer oferty", "quote_date", "Data oferty", "valid_until", "Wa\u017cne do", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Opis", "unit_cost", "Cena brutto", "quantity", "Ilo\u015b\u0107", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon s\u0142u\u017cbowy", "total_amount", "Razem warto\u015b\u0107", "pdf", "PDF", "due_date", "Termin p\u0142atno\u015bci", _s16_207, _s16_208, "status", "Status", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, "Kliknij + aby doda\u0107", _s22_58, "Kliknij + aby doda\u0107 czas", "count_selected", "zaznaczono :count", "total", "Razem", "percent", "Procent", "edit", "Edytuj", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Stawka zadania", "settings", "Ustawienia", "language", "J\u0119zyk", "currency", "Waluta", "created_at", "Data utworzenia", "created_on", "Created On", "updated_at", "Updated", "tax", "Stawka VAT", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Po terminie", "draft", "Wersja robocza", "sent", "Wys\u0142ane", "viewed", "Viewed", "approved", "Approved", "partial", "Zaliczka/Op\u0142.cz\u0119\u015b\u0107", "paid", "Zap\u0142acono", "mark_sent", "Oznacz jako wys\u0142ane", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Gotowe", _s37_18, _s37_19, "dark_mode", "Tryb ciemny", _s27_51, "Uruchom ponownie aplikacj\u0119, aby zastosowa\u0107 zmian\u0119", "refresh_data", "Od\u015bwie\u017canie danych", "blank_contact", "Blank Contact", "activity", "Dziennik aktywno\u015bci", _s16_209, "Brak rekord\xf3w", "clone", "Powiel", "loading", "Loading", "industry", "Industry", "size", "Rozmiar", "payment_terms", "Warunki p\u0142atnicze", "payment_date", "Data p\u0142atno\u015bci", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Suma netto", "client_portal", "Portal klienta", "show_tasks", "Poka\u017c zadania", "email_reminders", "Email Reminders", "enabled", "Aktywny", "recipients", "Odbiorcy", "initial_email", "Pocz\u0105tkowy email", "first_reminder", _s22_117, "second_reminder", "Drugie przypomnienie", "third_reminder", "Trzecie przypomnienie", "reminder1", _s22_117, "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Szablon", "send", "Wy\u015blij", "subject", "Temat", "body", "Tre\u015b\u0107", "send_email", "Wy\u015blij email", "email_receipt", "Wy\u015blij potwierdzenie zap\u0142aty do klienta", "auto_billing", "Auto billing", "button", "Button", "preview", "Podgl\u0105d", "customize", "Dostosuj", "history", "Historia", "payment", "P\u0142atno\u015b\u0107", "payments", "P\u0142atno\u015bci", "refunded", "Refunded", "payment_type", "Typ p\u0142atno\u015bci", _s21_79, "Numer referencyjny transakcji", "enter_payment", "Wprowad\u017a p\u0142atno\u015b\u0107", "new_payment", "Nowa p\u0142atno\u015b\u0107", "created_payment", "P\u0142atno\u015b\u0107 zosta\u0142a utworzona", "updated_payment", "P\u0142atno\u015b\u0107 zosta\u0142a zaktualizowana", _s16_217, "P\u0142atno\u015b\u0107 zosta\u0142\u0105 zarchiwizowana", "deleted_payment", "P\u0142atno\u015b\u0107 zosta\u0142a usuni\u0119ta", _s16_218, "P\u0142atno\u015b\u0107 zosta\u0142a przywr\xf3cona", _s17_124, "Zarchiwizowano :count p\u0142atno\u015bci", _s16_219, "Usuni\u0119to :count p\u0142atno\u015bci", _s17_125, _s37_20, "quote", "Oferta", "quotes", "Oferty", "new_quote", "Nowa oferta", "created_quote", "Oferta zosta\u0142a utworzona", "updated_quote", "Oferta zosta\u0142a zaktualizowana", "archived_quote", "Oferta zosta\u0142a zarchiwizowana", "deleted_quote", "Oferta zosta\u0142a usuni\u0119ta", "restored_quote", "Oferta zosta\u0142a przywr\xf3cona", "archived_quotes", "Zarchiwizowano :count ofert", "deleted_quotes", "Usuni\u0119to :count ofert", "restored_quotes", _s35_21, "expense", "Wydatek", "expenses", "Wydatki", "vendor", "Dostawca", "vendors", "Dostawcy", "task", "Zadanie", "tasks", "Zadania", "project", "Projekt", "projects", "Projekty", "activity_1", ":user stworzy\u0142 klienta :client", "activity_2", ":user zarchiwizowa\u0142 klienta :client", "activity_3", ":user usun\u0105\u0142 klienta :client", "activity_4", ":user stworzy\u0142 faktur\u0119 :invoice", "activity_5", ":user zaktualizowa\u0142 faktur\u0119 :invoice", "activity_6", ":user wys\u0142a\u0142 faktur\u0119 :invoice dla :client do :contact", "activity_7", ":contact obejrza\u0142 faktur\u0119 :invoice dla :client", "activity_8", ":user zarchiwizowa\u0142 faktur\u0119 :invoice", "activity_9", ":user usun\u0105\u0142 faktur\u0119 :invoice", "activity_10", ":contact wprowadzi\u0142 p\u0142atno\u015b\u0107 :payment o warto\u015bci :payment_amount faktury :invoice dla :client", "activity_11", ":user zaktualizowa\u0142 p\u0142atno\u015b\u0107 :payment", "activity_12", ":user zarchiwizowa\u0142 p\u0142atno\u015b\u0107 :payment", "activity_13", ":user usun\u0105\u0142 p\u0142atno\u015b\u0107 :payment", "activity_14", ":user wprowadzi\u0142 kredyt :credit", "activity_15", ":user zaktualizowa\u0142 kredyt :credit", "activity_16", ":user zarchiwizowa\u0142 kredyt :credit", "activity_17", ":user usun\u0105\u0142 kredyt :credit", "activity_18", ":user stworzy\u0142 ofert\u0119 :quote", "activity_19", ":user zakatualizowa\u0142 ofert\u0119 :quote", "activity_20", _s50_9, "activity_21", ":contact wy\u015bwietli\u0142 ofert\u0119 :quote", "activity_22", ":user zarchiwizowa\u0142 ofert\u0119 :quote", "activity_23", ":user usun\u0105\u0142 ofert\u0119 :quote", "activity_24", ":user przywr\xf3ci\u0142 ofert\u0119 :quote", "activity_25", ":user przywr\xf3ci\u0142 faktur\u0119 :invoice", "activity_26", ":user przywr\xf3ci\u0142 klienta :client", "activity_27", ":user przywr\xf3ci\u0142 p\u0142atno\u015b\u0107 :payment", "activity_28", ":user przywr\xf3ci\u0142 kredyt :credit", "activity_29", _s42_13, "activity_30", ":user utworzy\u0142 dostawc\u0119 :vendor", "activity_31", ":user zarchiwizowa\u0142 dostawc\u0119 :vendor", "activity_32", ":user usun\u0105\u0142 dostawc\u0119 :vendor", "activity_33", ":user przywr\xf3ci\u0142 dostawc\u0119 :vendor", "activity_34", ":user utworzy\u0142 wydatek :expense", "activity_35", ":user zarchiwizowa\u0142 wydatek :expense", "activity_36", ":user usun\u0105\u0142 wydatek :expense", "activity_37", ":user przywr\xf3ci\u0142 wydatek :expense", "activity_39", ":user anulowa\u0142 p\u0142atno\u015b\u0107 na :payment_amount nr. :payment", "activity_40", _s64_, "activity_41", "p\u0142atno\u015b\u0107 :payment_amount (:payment) nieudana", "activity_42", ":user stworzy\u0142 zadanie :task", "activity_43", ":user zaktualizowa\u0142 zadanie :task", "activity_44", ":user zarchiwizowa\u0142 zadanie :task", "activity_45", ":user usun\u0105\u0142 zadanie :task", "activity_46", ":user przywr\xf3ci\u0142 zadanie :task", "activity_47", ":user zaktualizowa\u0142 wydatek :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user otworzy\u0142 zg\u0142oszenie\xa0:ticket ponownie\xa0", "activity_55", ":contact odpowiedzia\u0142 w zg\u0142oszeniu :ticket", "activity_56", ":user ogl\u0105da\u0142 zg\u0142oszenie\xa0:ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Oferta zosta\u0142a wys\u0142ana", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Wygas\u0142o", "all", "Wszystko", "select", "Wybierz", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Licznik numeru faktury", _s20_73, _s20_74, _s20_75, "Licznik numeru oferty", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, "Klienta Ulica Dostawy", _s24_56, "Klienta numer budynku dostawy", "type", "Typ", "invoice_amount", "Kwota faktury", _s16_224, "Termin P\u0142atno\u015bci", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "P\u0142atno\u015b\u0107 Automatyczna", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Nazwa podatku", "tax_amount", "Warto\u015b\u0107 podatku", "tax_paid", "Podatek zap\u0142acony", "payment_amount", "Kwota p\u0142atno\u015bci", "age", "Wiek", "is_running", "Is Running", "time_log", "Rejestr czasu", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, "Kategoria wydatku", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "pt_BR", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Aceitar", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Configura\xe7\xf5es de Pagamento", "default", "Padr\xe3o", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Situa\xe7\xe3o", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Adicionar Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Adicionar na fatura :invoice", _s17_6, _s17_7, "week", "Semana", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Moeda da Fatura", "range", "Per\xedodo", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Criar projeto", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "A taxa para uma fatura de :amount seria de :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprovar", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Carregar PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Pago", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Cliente limpo com sucesso", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Pequeno", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Definir Senha", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s29_60, "view_statement", "Ver Compras", "sepa", "D\xe9bito direto SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistema", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", _s17_180, _s16_21, _s16_231, _s17_13, _s18_169, _s18_13, _s20_127, _s21_16, _s23_75, _s22_24, _s25_78, _s25_2, _s37_36, _s25_3, _s41_14, _s26_2, _s40_8, _s25_4, _s28_80, _s25_5, _s38_2, _s26_3, _s41_15, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "V\xedrgula em decimais", _s26_4, "Usar v\xedrgula como separador para campos decimais nos formul\xe1rios", "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Guia do Usu\xe1rio", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, 'O per\xedodo de testes do plano "Pro", termina em :count dias, clique para atualizar.', _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importar Dados", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s18_170, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Primeiro Nome do Contato", _s17_17, "\xdaltimo Nome do Contato", "order", "Order", "unassigned", "N\xe3o Designado", "partial_value", "Precisa ser maior que zero e menor que o total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Habilitar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Definir o subdom\xednio ou mostrar a fatura em seu pr\xf3prio website", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Seguran\xe7a", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modificado", "subscription", "Assinatura", "subscriptions", "Assinaturas", _s16_39, "Nova Assinatura", _s17_23, "Ediar Assinatura", _s20_23, "Assinatura criada com sucesso", _s20_24, "Assinatura atualizada com sucesso", _s21_28, "Assinatura arquivada com sucesso", _s20_25, "Assinatura apagada com sucesso", _s20_26, "Assinatura removida com sucesso", _s21_29, "Assinatura restaurada com sucesso", _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, "Altera\xe7\xf5es no c\xf3digo podem estar bloqueando a atualiza\xe7\xe3o, voc\xea pode executar esse comando para descartar as mudan\xe7as:", _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Reenviar Convite", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Devolvido", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "Eccaneie o c\xf3digo de barras com um app compat\xedvel com :link", _s18_30, "Ativa\xe7\xe3o de Autentica\xe7\xe3o em 2 Fatores realizada com sucesso.", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Autentica\xe7\xe3o em 2 Fatores", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Dias", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s21_136, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", _s19_106, "to_update_run", "To update run", _s18_33, "Converter em Fatura", _s16_52, _s16_53, "invoice_project", "Faturar Projeto", "invoice_task", "Faturar Tarefa", "invoice_expense", "Faturar Despesa", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s19_107, _s16_58, "Quantia Convertida", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "Documentos Padr\xe3o", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Cor", "show", "Mostrar", "hide", "Ocultar", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Coluna", "sample", "Amostra", "map_to", "Map To", "import", "Importar", _s25_15, _s29_6, "select_file", "Selecione um arquivo", _s16_60, _s16_61, "csv_file", "Arquivo CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "Modo HTML", "html_mode_help", _s43_1, "view_licenses", "Ver licen\xe7as", "webhook_url", "Webhook URL", _s17_38, "Tela cheia", "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Servi\xe7o", "clone_to", "Clonar para", "clone_to_other", "Clonar para outro", "labels", "Etiquetas", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "N\xe3o Pago", "white_label", "Sem marca", "delivery_note", "Nota de Entrega", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Proposta expirada", "partial_due", _s18_171, "invoice_total", "Total da Fatura", "quote_total", _s18_172, "credit_total", "Total do Cr\xe9dito", _s23_14, "Total da Fatura", "actions", "A\xe7\xf5es", "expense_number", "N\xba da Despesa", "task_number", "N\xba da Tarefa", "project_number", "N\xba do Projeto", "project_name", "Nome do projeto", "warning", "Aviso", "view_settings", "Ver defini\xe7\xf5es", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Nome do Cliente", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Taxa Calculada", _s17_40, "Taxa de tarefa padr\xe3o", "clear_cache", "Limpar cache", "sort_order", "Ordenar", "task_status", "Situa\xe7\xe3o", "task_statuses", "Status da tarefa", "new_task_status", "Novo Status da tarefa", _s16_62, "Editar Status da Tarefa", _s19_26, "Status da tarefa criado com sucesso", _s19_27, "Status da tarefa atualizado com sucesso", _s20_32, "Status da tarefa arquivado com sucesso", _s19_28, "Status da tarefa apagado com sucesso", _s19_29, "Status da tarefa removido com sucesso", _s20_33, "Status da tarefa restaurado com sucesso", _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, "Encontrado 1 Status da Tarefa", _s20_35, "Encontrado :count Status da Tarefa", _s16_64, _s25_79, _s21_38, "Sempre mostrar a se\xe7\xe3o de tarefas ao criar faturas", _s20_36, "Registro das tarefas de fatura", _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s22_118, _s20_42, _s26_65, _s21_40, _s21_41, _s24_28, "Categoria de despesas criada com sucesso", _s24_29, "Categoria de despesas atualizada com sucesso", _s25_19, "Categoria de despesas arquivada com sucesso", _s24_30, "Categoria exclu\xedda com sucesso", _s24_31, _s37_7, _s25_20, "Categoria de despesas restaurada com sucesso", _s27_21, ":count categorias de despesas arquivadas com sucesso", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Mostrar op\xe7\xe3o", _s22_34, _s50_8, "view_changes", "Ver altera\xe7\xf5es", "force_update", _s18_173, _s17_42, "Voc\xea est\xe1 executando a vers\xe3o mais recente, mas pode haver corre\xe7\xf5es pendentes dispon\xedveis.", "mark_paid_help", _s31_34, _s18_42, "Dever\xe1 ser Faturada", _s23_16, _s33_23, _s29_7, _s29_61, _s21_44, _s25_80, _s16_66, _s26_66, _s18_43, "Clonar recorr\xeancia", "crypto", "Criptomoeda", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Campo do usu\xe1rio", "variables", "Vari\xe1vel", "show_password", "Mostrar senha", "hide_password", "Esconder senha", "copy_error", "Copiar Erro", "capture_card", _s17_181, _s17_43, "Cobran\xe7a autom\xe1tica habilitada", "total_taxes", "Impostos totais", "line_taxes", "Line Taxes", "total_fields", "Campo Total", _s25_23, _s42_21, _s25_24, _s38_28, _s25_25, _s38_29, "gateway_refund", "Gateway Refund", _s19_30, "Processe o reembolso com o portal de pagamento", "due_date_days", _s18_174, "paused", "Pausado", "mark_active", "Marcar como Ativo", "day_count", "Dia :count", _s22_35, _s19_108, _s21_45, _s17_182, _s17_45, "Utilizar Termos de Pagamento", "endless", "Intermin\xe1vel", "next_send_date", _s21_137, _s16_68, _s16_310, _s17_47, "Fatura Recorrente", _s18_45, "Faturas Recorrentes", _s21_47, "Nova Fatura Recorrente", _s22_37, _s24_89, _s25_26, _s36_40, _s25_27, _s40_9, _s26_11, "Fatura Recorrente arquivada com sucesso", _s25_28, "Fatura recorrente exclu\xedda com sucesso", _s25_29, _s38_30, _s26_12, "Fatura Recorrente restaurada com sucesso", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s30_50, _s25_30, _s37_37, "send_date", "Data de envio", "auto_bill_on", _s30_51, _s28_7, _s32_26, "profit", "Lucro", "line_item", "Item de linha", _s18_47, _s29_62, _s23_17, _s35_11, _s19_31, _s24_90, _s24_33, _s52_2, "test_mode", "Modo de teste", "opened", "Aberto", _s30_4, "Falha de reconcilia\xe7\xe3o", _s30_5, "Sucesso de Reconcilia\xe7\xe3o", "gateway_success", _s17_183, "gateway_failure", "Falha do Portal", "gateway_error", "Erro do Portal", "email_send", "Email Enviado", _s17_49, _s26_67, "failure", "Falha", "quota_exceeded", "Cota excedida", _s16_70, "Falha Upstream", "system_logs", "Logs de Sistema", "view_portal", "Visualizar portal", "copy_link", "Link de c\xf3pia", "token_billing", "Salvar detalhes do cart\xe3o", _s24_34, _s26_68, "always", "Sempre", "optin", "Autorizar", "optout", "Desautorizar", "label", "R\xf3tulo", "client_number", "N\xfamero do Cliente", "auto_convert", "Auto Convers\xe3o", "company_name", "Nome da Empresa", "reminder1_sent", _s18_175, "reminder2_sent", _s18_176, "reminder3_sent", _s18_177, _s18_49, _s23_76, "pdf_page_info", _s23_77, _s16_72, "Faturas enviadas por email com sucesso", "emailed_quotes", "Or\xe7amentos enviados por email com sucesso", "emailed_credits", _s40_10, "gateway", "Gateway", "view_in_stripe", "Ver em Listra", "rows_per_page", "Linhas por P\xe1gina", "hours", "Horas", "statement", "Declara\xe7\xe3o", "taxes", "Impostos", "surcharge", "Sobretaxa", "apply_payment", _s17_184, "apply_credit", "Aplicar Cr\xe9dito", "apply", "Aplicar", "unapplied", "N\xe3o Aplicado", "select_label", "Selecione o R\xf3tulo", "custom_labels", _s24_91, "record_type", _s16_311, "record_name", "Nome do Registro", "file_type", "Tipo de Arquivo", "height", "Altura", "width", "Largura", "to", "Para", "health_check", "Exame de sa\xfade", "payment_type_id", _s17_185, "last_login_at", "\xdaltimo login em", "company_key", _s16_312, "storefront", "Vitrine", "storefront_help", "Habilite aplicativos de terceiros para criar faturas", "client_created", "Cliente Criado", _s20_45, "Email de pagamento online", _s20_47, _s25_81, "completed", "Completado", "gross", "Bruto", "net_amount", "Valor l\xedquido", "net_balance", "Saldo L\xedquido", "client_settings", _s24_92, _s17_51, _s20_128, _s17_53, _s23_78, "selected_quotes", "Cota\xe7\xf5es Selecionadas", "selected_tasks", _s20_129, _s17_55, _s21_138, _s17_57, "Pr\xf3ximas Faturas", _s17_59, "Faturas Vencidas", "recent_payments", _s19_109, "upcoming_quotes", _s19_110, "expired_quotes", _s20_130, "create_client", "Criar Cliente", "create_invoice", "Criar Fatura", "create_quote", "Criar Or\xe7amento", "create_payment", "Criar Pagamento", "create_vendor", _s16_313, "update_quote", "Atualizar Cota\xe7\xe3o", "delete_quote", "Excluir Or\xe7amento", "update_invoice", "Atualizar Fatura", "delete_invoice", "Excluir Fatura", "update_client", _s17_186, "delete_client", "Excluir Cliente", "delete_payment", "Excluir Pagamento", "update_vendor", "Atualizar Fornecedor", "delete_vendor", "Excluir Fornecedor", "create_expense", "Criar Despesa", "update_expense", _s17_187, "delete_expense", "Excluir Despesa", "create_task", "Criar Tarefa", "update_task", _s16_314, "delete_task", "Excluir Tarefa", "approve_quote", "Aprovar Cota\xe7\xe3o", "off", "Desligado", "when_paid", "Quando Pago", "expires_on", "Expira em", "free", "Gratuito", "plan", "Plano", "show_sidebar", "Exibir Barra Lateral", "hide_sidebar", _s21_139, "event_type", "Tipo de Evento", "target_url", "Alvo", "copy", "C\xf3pia", "must_be_online", "Reinicie o aplicativo assim que estiver conectado \xe0 internet", _s17_61, "Os crons precisam ser habilitados", "api_webhooks", "API Webhooks", "search_webhooks", _s26_69, "search_webhook", _s19_111, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nova Webhook", "edit_webhook", "Editar Webhook", "created_webhook", _s26_70, "updated_webhook", _s30_52, _s16_74, _s29_63, "deleted_webhook", "Webhook Exclu\xedda com Sucesso", "removed_webhook", _s28_81, _s16_75, _s30_53, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "Tokens de API", "api_docs", "API Docs", "search_tokens", _s24_93, "search_token", _s17_188, "token", "Token", "tokens", "Tokens", "new_token", "Novo Token", "edit_token", "Editar Token", "created_token", "Token criado com sucesso", "updated_token", "Token atualizado com sucesso", "archived_token", "Token arquivado com sucesso", "deleted_token", "Token exclu\xeddo com sucesso", "removed_token", _s26_71, "restored_token", _s28_82, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, "Registro de cliente", _s24_36, "Permitir que os clientes se auto-registrem no portal", _s21_49, _s25_82, "email_invoice", "Enviar Fatura por Email", "email_quote", "Enviar Or\xe7amento por Email", "email_credit", "Cr\xe9dito de Email", "email_payment", _s19_112, _s20_50, "O cliente n\xe3o tem um endere\xe7o de e-mail definido", "ledger", "Ledger", "view_pdf", "Ver PDF", "all_records", "Todos os registros", "owned_by_user", "Propriedade do usu\xe1rio", _s16_78, _s16_315, "contact_name", "Nome do Contato", "use_default", "Use o padr\xe3o", _s16_80, _s17_189, "number_of_days", "N\xfamero de dias", _s23_19, _s36_41, "payment_term", _s21_140, _s16_81, _s26_72, _s17_65, "Editar Condi\xe7\xe3o de Pagamento", _s20_51, "Condi\xe7\xf5es de pagamento criadas com sucesso", _s20_52, "Condi\xe7\xf5es de pagamento atualizadas com sucesso", _s21_50, "Condi\xe7\xf5es de pagamento arquivadas com sucesso", _s20_53, "Condi\xe7\xe3o de pagamento exclu\xeddas com sucesso", _s20_54, _s42_22, _s21_51, _s44_3, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s16_316, "change", "Mudar", _s23_21, _s26_73, _s24_37, "Mudar para o layout da \xe1rea de trabalho?", "send_from_gmail", "Enviar do Gmail", "reversed", "Invertido", "cancelled", "Cancelado", "credit_amount", "Quantia de Cr\xe9dito", "quote_amount", "Valor da cota\xe7\xe3o", "hosted", "Hospedado", "selfhosted", "Auto-hospedado", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Ocultar Menu", "show_menu", "Exibir Menu", _s18_51, _s24_94, _s16_83, _s20_131, "search_designs", "Pesquisar Designs", "search_invoices", "Pesquisar Faturas", "search_clients", _s18_178, "search_products", _s18_179, "search_quotes", "Pesquisar Cota\xe7\xf5es", "search_credits", _s18_180, "search_vendors", "Pesquisar Fornecedores", "search_users", "Pesquisar Usu\xe1rios", _s16_84, _s27_82, "search_tasks", _s17_190, "search_settings", _s23_79, "search_projects", _s18_181, "search_expenses", _s18_182, "search_payments", _s20_132, "search_groups", _s16_317, "search_company", _s17_191, "search_document", _s21_141, "search_design", _s18_183, "search_invoice", "Pesquisar 1 Fatura", "search_client", _s19_113, "search_product", _s19_114, "search_quote", _s19_115, "search_credit", _s19_116, "search_vendor", "Pesquisar 1 Fornecedor", "search_user", _s19_117, "search_tax_rate", _s27_83, "search_task", _s18_184, "search_project", _s19_118, "search_expense", _s19_119, "search_payment", _s21_142, "search_group", _s17_192, "refund_payment", _s20_133, _s17_69, "Fatura Cancelada com Sucesso", _s18_53, "Faturas Canceladas com Sucesso", _s16_90, "Fatura Revertida com Sucesso", _s17_70, "Faturas Revertidas com Sucesso", "reverse", "Reverter", "full_name", "Nome Completo", _s17_71, "Cidade/Estado/CEP", _s17_73, "CEP/Cidade/Estado", "custom1", _s22_119, "custom2", _s21_143, "custom3", _s22_120, "custom4", _s20_134, "optional", "Opcional", "license", "Licen\xe7a", "purge_data", "Limpar Dados", _s16_91, _s35_41, _s18_54, "Aviso: Isto ir\xe1 apagar seus dados permanentemente, n\xe3o h\xe1 como defazer esta a\xe7\xe3o.", "invoice_balance", "Saldo da fatura", "age_group_0", "0 - 30 Dias", "age_group_30", "30 - 60 Dias", "age_group_60", "60 - 90 Dias", "age_group_90", "90 - 120 Dias", "age_group_120", "120+ Dias", "refresh", "Atualizar", "saved_design", "Design salvo com sucesso", "client_details", _s19_120, "company_address", "Endere\xe7o da companhia", "invoice_details", "Detalhes da Fatura", "quote_details", "Detalhes da cota\xe7\xe3o", "credit_details", _s19_121, "product_columns", _s18_185, "task_columns", _s18_186, "add_field", "Adicionar campo", "all_events", _s16_318, "permissions", "Permiss\xf5es", "none", "Nenhum", "owned", "Possu\xeddo", "payment_success", _s31_35, "payment_failure", "Falha de Pagamento", "invoice_sent", ":count fatura enviada", "quote_sent", "Cota\xe7\xe3o enviada", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Fatura visualizada", "quote_viewed", "Cota\xe7\xe3o visualizada", "credit_viewed", "Cr\xe9dito visualizado", "quote_approved", "Cota\xe7\xe3o aprovada", _s25_32, _s29_64, _s16_92, "Comprar licen\xe7a", "apply_license", "Aplicar Licen\xe7a", "cancel_account", "Excluir Conta", _s22_44, "Aviso: Isso excluir\xe1 permanentemente sua conta, n\xe3o h\xe1 como desfazer esta a\xe7\xe3o.", "delete_company", "Excluir Empresa", _s22_45, "Aviso: Isto ir\xe1 excluir permanentemente sua empresa, n\xe3o h\xe1 como desfazer esta a\xe7\xe3o.", "enabled_modules", "Enabled Modules", "converted_quote", "Cota\xe7\xe3o convertida com sucesso", "credit_design", _s17_193, "includes", "Inclui", "header", "Cabe\xe7alho", "load_design", "Carregar Design", "css_framework", "CSS Framework", "custom_designs", "Designs personalizados", "designs", "Designs", "new_design", "Novo Design", "edit_design", "Editar Design", "created_design", "Design criado com sucesso", "updated_design", "Design atualizado com sucesso", "archived_design", "Design arquivado com sucesso", "deleted_design", "Design exclu\xeddo com sucesso", "removed_design", "Design removido com sucesso", "restored_design", "Design restaurado com sucesso", _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Propostas", "tickets", "Tickets", _s16_96, _s22_121, "recurring_tasks", _s19_122, _s18_55, "Gerenciamento da Conta", "credit_date", "Data do Cr\xe9dito", "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Adicionar Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", "Cr\xe9dito criado com sucesso", "updated_credit", "Cr\xe9dito atualizado com sucesso", "archived_credit", "Cr\xe9dito arquivado com sucesso", "deleted_credit", "Cr\xe9dito exclu\xeddo com sucesso", "removed_credit", _s28_83, "restored_credit", "Cr\xe9dito restaurado com sucesso", _s16_98, ":count cr\xe9ditos arquivados com sucesso", "deleted_credits", ":count cr\xe9ditos exclu\xeddos com sucesso", _s16_99, _s36_9, "current_version", "Vers\xe3o Atual", "latest_version", "\xdaltima vers\xe3o", "update_now", "Atualize agora", _s26_19, "Uma nova vers\xe3o do aplicativo da web est\xe1 dispon\xedvel", _s16_100, _s22_122, "app_updated", _s34_33, "learn_more", "Saiba mais", "integrations", "Integra\xe7\xf5es", "tracking_id", "Id de rastreamento", _s17_75, _s20_135, "credit_footer", _s17_194, "credit_terms", _s17_195, "new_company", "Nova Empresa", "added_company", _s30_54, "company1", "Companhia 1 Personalizada", "company2", "Companhia 2 Personalizada", "company3", "Companhia 3 Personalizada", "company4", "Companhia 4 Personalizada", "product1", "Produto 1 Personalizado", "product2", "Produto 2 Personalizado", "product3", "Produto 3 Personalizado", "product4", "Produto 4 Personalizado", "client1", "Cliente 1 Personalizado", "client2", "Cliente 2 Personalizado", "client3", "Cliente 3 Personalizado", "client4", "Cliente 4 Personalizado", "contact1", "Contato 1 Personalizado", "contact2", "Contato 2 Personalizado", "contact3", "Contato 3 Personalizado", "contact4", "Contato 4 Personalizado", "task1", "Tarefa 1 Personalizada", "task2", "Tarefa 2 Personalizada", "task3", "Tarefa 3 Personalizada", "task4", "Tarefa 4 Personalizada", "project1", "Projeto 1 Personalizado", "project2", "Projeto 2 Personalizado", "project3", "Projeto 3 Personalizado", "project4", "Projeto 4 Personalizado", "expense1", "Despesa 1 Personalizada", "expense2", "Despesa 2 Personalizada", "expense3", "Despesa 3 Personalizada", "expense4", "Despesa 4 Personalizada", "vendor1", "Vendedor 1 Personalizado", "vendor2", "Vendedor 2 Personalizado", "vendor3", "Vendedor 3 Personalizado", "vendor4", "Vendedor 4 Personalizado", "invoice1", "Fatura 1 Personalizada", "invoice2", "Fatura 2 Personalizada", "invoice3", "Fatura 3 Personalizada", "invoice4", "Fatura 4 Personalizada", "payment1", "Pagamento 1 Personalizado", "payment2", "Pagamento 2 Personalizado", "payment3", "Pagamento 3 Personalizado", "payment4", "Pagamento 4 Personalizado", "surcharge1", _s25_83, "surcharge2", _s25_84, "surcharge3", _s25_85, "surcharge4", _s25_86, "group1", "Grupo 1 Personalizado", "group2", "Grupo 2 Personalizado", "group3", "Grupo 3 Personalizado", "group4", "Grupo 4 Personalizado", "reset", "Redefinir", "number", "N\xfamero", "export", "Exportar", "chart", "Gr\xe1fico", "count", "Contagem", "totals", "Totais", "blank", "Vazio", "day", "Dia", "month", "M\xeas", "year", "Ano", "subgroup", "Subgrupo", "is_active", "Ativo", "group_by", "Agrupado por", "credit_balance", "Saldo do Cr\xe9dito", _s18_61, "\xdaltimo Login do Contato", _s17_77, "Nome Completo do Contato", "contact_phone", "Telefone de Contato", _s21_53, "Valor personalizado do contato 1", _s21_54, "Valor personalizado do contato 2", _s21_55, "Valor personalizado do contato 3", _s21_56, "Valor personalizado do contato 4", _s17_79, "Rua de envio", _s17_80, "Complemento de envio", "shipping_city", "Cidade de envio", "shipping_state", "Estado/Prov\xedncia de envio", _s20_55, "CEP de envio", _s16_130, "Pa\xeds de envio", _s16_132, "Rua de cobran\xe7a", _s16_133, "Complemento de cobran\xe7a", "billing_city", "Cidade de cobran\xe7a", "billing_state", "Estado/Prov\xedncia de cobran\xe7a", _s19_36, "CEP de cobran\xe7a", "billing_country", "Pa\xeds de cobran\xe7a", "client_id", "C\xf3d Cliente", "assigned_to", "Atribu\xeddo para", "created_by", "Criado por :name", "assigned_to_id", "Atribu\xeddo ao ID", "created_by_id", "Criado pelo ID", "add_column", _s16_319, "edit_columns", "Editar Colunas", "columns", "Colunas", "aging", "Envelhecimento", "profit_and_loss", "Lucro e Preju\xedzo", "reports", "Relat\xf3rios", "report", "Relat\xf3rio", "add_company", _s17_196, "unpaid_invoice", "Fatura n\xe3o Paga", "paid_invoice", "Fatura Paga", _s16_134, _s22_123, "help", "Ajuda", "refund", "Reembolsar", "refund_date", _s17_197, "filtered_by", "Filtrado por", "contact_email", "Email de Contato", "multiselect", _s16_320, "entity_state", "Estado", "verify_password", "Verificar Senha", "applied", "Aplicado", _s21_57, "Inclui erros recentes dos logs", _s30_8, _s58_3, "message", "Mensagem", "from", "De", _s20_57, _s27_84, _s25_34, "Inclua a descri\xe7\xe3o e o custo na lista suspensa do produto", _s20_59, _s48_6, _s18_64, "Ajustar Porcentagem da Multa", _s23_23, "Ajustar o percentual de taxa a contabilizar", _s18_66, _s20_136, "support_forum", _s16_321, "about", "Sobre", "documentation", "Documenta\xe7\xe3o", "contact_us", "Contate-nos", "subtotal", "Subtotal", "line_total", "Total da Linha", "item", "Item", "credit_email", _s17_198, "iframe_url", "Website", "domain_url", "URL do Dom\xednio", _s21_58, "A senha \xe9 muito curta", _s20_60, "A senha deve conter um caractere mai\xfasculo e um n\xfamero", _s19_38, _s28_84, _s23_24, _s27_85, _s20_61, "Por favor digite um valor", "deleted_logo", "Logo removido com sucesso", "yes", "Sim", "no", "N\xe3o", "generate_number", "Gerar N\xfamero", "when_saved", "Quando Salvo", "when_sent", "Quando Enviado", "select_company", _s18_187, "float", "Flutuante", "collapse", "Fechar", "show_or_hide", "Exibir/esconder", "menu_sidebar", _s21_144, "history_sidebar", _s26_74, "tablet", "Tablet", "mobile", "M\xf3vel", "desktop", "Desktop", "layout", "Layout", "view", "Visualizar", "module", "M\xf3dulo", "first_custom", _s22_119, "second_custom", _s21_143, "third_custom", _s22_120, "show_cost", "Mostrar Custo", _s17_82, _s17_83, "show_cost_help", "Exibir um campo de custo do produto para rastrear a marca\xe7\xe3o/lucro", _s21_59, _s29_65, _s26_21, _s72_1, _s21_61, _s28_85, _s26_22, _s77_2, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s17_199, _s21_65, _s60_0, "one_tax_rate", _s19_123, "two_tax_rates", _s22_124, "three_tax_rates", _s22_125, _s16_138, "Taxa de imposto padr\xe3o", "user", "Usu\xe1rio", "invoice_tax", _s17_200, "line_item_tax", _s24_95, "inclusive_taxes", _s17_201, _s17_84, _s27_86, "item_tax_rates", _s25_87, _s18_68, "Selecione um cliente", "configure_rates", _s18_188, _s18_69, "Configurar m\xe9todos de pagamento", "tax_settings", "Configura\xe7\xf5es de Impostos", _s18_71, "Tarifas de Impostos", "accent_color", "Cor de destaque", "switch", "Mudar", _s19_40, _s27_87, "options", "Op\xe7\xf5es", _s16_140, _s20_137, "multi_line_text", _s16_322, "dropdown", "Dropdown", "field_type", "Tipo de Campo", _s27_35, "Foi enviado um e-mail de recupera\xe7\xe3o de senha", "submit", "Enviar", _s16_142, "Recupere sua senha", "late_fees", "Taxas atrasadas", "credit_number", "N\xfamero do Cr\xe9dito", "payment_number", "Pagamento N\xfamero", "late_fee_amount", _s16_323, _s16_143, "Percentual de Multa", "schedule", "Agendamento", "before_due_date", "At\xe9 a data de vencimento", "after_due_date", _s28_86, _s18_73, "At\xe9 a data da fatura", "days", "Dias", "invoice_email", "Email de Fatura", "payment_email", "Email de Pagamento", "partial_payment", _s17_202, "payment_partial", "Partial Payment", _s21_66, "Email de pagamento parcial", "quote_email", "Email de Or\xe7amento", _s16_145, _s17_189, _s16_147, "Filtrado por Usu\xe1rio", "administrator", "Administrador", _s18_74, "Permite ao usu\xe1rio gerenciar usu\xe1rios, mudar configura\xe7\xf5es e modificar todos os registros", "user_management", "Gerenciamento de Usu\xe1rios", "users", "Usu\xe1rios", "new_user", "Novo Usu\xe1rio", "edit_user", "Editar Usu\xe1rio", "created_user", "Usu\xe1rio criado com sucesso", "updated_user", "Usu\xe1rio atualizado com sucesso", "archived_user", "Usu\xe1rio arquivado com sucesso", "deleted_user", "Usu\xe1rio exclu\xeddo com sucesso", "removed_user", "Usu\xe1rio removido com sucesso", "restored_user", "Usu\xe1rio restaurado com sucesso", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s20_136, "invoice_options", "Op\xe7\xf5es da Fatura", _s17_86, "Ocultar Pago at\xe9 Hoje", _s22_52, 'Apenas mostrar "Pago at\xe9 a Data" em suas faturas uma vez que o pagamento for recebido.', _s23_26, "Embutir Documentos", _s28_20, "Incluir imagens anexas na fatura.", _s16_151, "Exibir Cabe\xe7alho em", _s16_152, "Exibir Rodap\xe9 em", "first_page", "Primeira p\xe1gina", "all_pages", "Todas as p\xe1ginas", "last_page", "\xdaltima p\xe1gina", "primary_font", "Fonte Prim\xe1ria", "secondary_font", _s16_324, "primary_color", "Cor Prim\xe1ria", "secondary_color", "Cor Secundaria", "page_size", _s17_203, "font_size", "Tamanho da Fonte", "quote_design", _s19_124, "invoice_fields", "Campos da Fatura", "product_fields", "Campos de Produtos", "invoice_terms", "Condi\xe7\xf5es da Fatura", "invoice_footer", "Rodap\xe9 da Fatura", "quote_terms", _s22_126, "quote_footer", _s19_125, _s18_75, _s16_325, _s23_27, _s74_, _s18_76, _s24_96, _s23_28, _s61_5, _s18_77, "Auto Convers\xe3o", _s23_29, _s72_2, _s17_88, _s34_34, "freq_daily", "Diariamente", "freq_weekly", "Semanalmente", "freq_two_weeks", "2 semanas", "freq_four_weeks", "4 semanas", "freq_monthly", "Mensalmente", "freq_two_months", "Dois meses", _s17_90, "3 meses", _s16_153, "4 meses", "freq_six_months", "6 meses", "freq_annually", "Anualmente", "freq_two_years", "2 anos", _s16_154, "Tr\xeas Anos", "never", "Nunca", "company", "Empresa", _s17_91, "N\xfameros Gerados", "charge_taxes", "Cobrar impostos", "next_reset", "Pr\xf3ximo Reset", "reset_counter", _s18_189, _s16_155, _s22_127, "number_padding", _s23_80, "general", "Geral", "surcharge_field", _s18_190, "company_field", _s16_326, "company_value", _s16_327, "credit_field", _s16_328, "invoice_field", "Campo da Fatura", _s17_93, _s19_126, "client_field", _s16_329, "product_field", _s16_330, "payment_field", _s18_191, "contact_field", "Campo do Contato", "vendor_field", _s19_127, "expense_field", _s16_331, "project_field", _s16_332, "task_field", "Campo da Tarefa", "group_field", "Campo de Grupo", "number_counter", _s17_204, "prefix", "Prefixo", "number_pattern", _s19_128, "messages", "Mensagens", "custom_css", _s17_205, _s17_95, _s24_97, _s16_157, "Exibir em PDF", _s21_68, "Exibir a assinatura do cliente no PDF da fatura/or\xe7amento.", _s25_40, "Checkbox para Condi\xe7\xf5es de Fatura", _s30_9, "Exigir que o cliente confirme que aceita as condi\xe7\xf5es da fatura.", _s23_30, "Checkbox de Condi\xe7\xf5es do Or\xe7amento", _s28_21, "Exigir que cliente confirme que aceita as Condi\xe7\xf5es do Or\xe7amento", _s25_41, "Assinatura de Fatura", _s30_10, "Exigir que o cliente providencie sua assinatura", _s23_31, _s23_81, _s22_54, "Proteger Faturas com Senha", _s27_36, "Permite definir uma senha para cada contato. Se uma senha for definida, o contato dever\xe1 informar uma senha antes de visualizar faturas.", "authorization", "Autoriza\xe7\xe3o", "subdomain", "Subdom\xednio", "domain", "Dom\xednio", "portal_mode", "Modo Portal", "email_signature", "Atenciosamente,", _s24_38, "Tornar mais f\xe1cil para os seus clientes efetuarem seus pagamentos acrescentando marca\xe7\xf5es schema.org a seus emails.", "plain", "Plano", "light", "Claro", "dark", "Escuro", "email_design", "Design do Email", "attach_pdf", "Anexar PDF", _s16_158, _s17_206, "attach_ubl", "Anexar UBL", "email_style", "Estilo do E-mail", _s19_42, "Habilitar Marca\xe7\xe3o", "reply_to_email", "Email para Resposta", "reply_to_name", "Reply-To Name", "bcc_email", "Email CCO", "processed", "Processado", "credit_card", _s17_207, "bank_transfer", _s22_128, "priority", "Prioridade", "fee_amount", "Valor da Multa", "fee_percent", "Porcentagem da Multa", "fee_cap", "Taxa m\xe1xima", "limits_and_fees", "Limites/Multas", "enable_min", "Habilitar m\xedn", "enable_max", "Habilitar m\xe1x", "min_limit", "M\xedn: :min", "max_limit", "M\xe1x: :max", "min", "Min", "max", "M\xe1x", _s19_43, "Logos de Cart\xf5es Aceitos", "credentials", "Credenciais", "update_address", "Atualizar Endere\xe7o", _s19_45, "Atualizar o endere\xe7o do cliente com os dados fornecidos", "rate", "Taxa", "tax_rate", "Taxa do Imposto", "new_tax_rate", "Nova Taxa de Imposto", "edit_tax_rate", "Editar Taxa do Imposto", _s16_160, "Taxa de imposto criada com sucesso", _s16_161, "Taxa de imposto atualizada com sucesso", _s17_98, "Taxa de imposto arquivada com sucesso", _s16_162, _s36_42, _s17_99, _s38_31, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Auto-preencher produtos", _s18_80, "Ao selecionar um produto sua descri\xe7\xe3o e pre\xe7o ser\xe3o automaticamente preenchidos", "update_products", _s35_42, _s20_65, "Atualizar uma fatura ir\xe1 automaticamenteatualizar a biblioteca de produtos", _s16_163, _s18_192, _s21_69, _s68_, "fees", "Taxas", "limits", "Limites", "provider", "Provedor", "company_gateway", "Gateway de Pagamento", _s16_165, "Gateways de Pagamento", _s19_46, "Novo Gateway", _s20_66, "Editar Gateway", _s23_32, "Gateway criado com sucesso", _s23_33, "Gateway atualizado com sucesso", _s24_39, "Gateway arquivado com sucesso", _s23_34, "Gateway exclu\xeddo com sucesso", _s24_40, "Gateway restaurado com sucesso", _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, "Continuar Editando", "discard_changes", _s18_193, "default_value", "Valor padr\xe3o", "disabled", "Desabilitado", "currency_format", _s16_333, _s21_70, "Primeiro dia da Semana", _s23_35, _s19_129, "sunday", "Domingo", "monday", "Segunda-Feira", "tuesday", "Ter\xe7a-Feira", "wednesday", "Quarta-Feira", "thursday", "Quinta-Feira", "friday", "Sexta-Feira", "saturday", "S\xe1bado", "january", "Janeiro", "february", "Fevereiro", "march", "Mar\xe7o", "april", "Abril", "may", "Maio", "june", "Junho", "july", "Julho", "august", "Agosto", "september", "Setembro", "october", "Outubro", "november", "Novembro", "december", "Dezembro", "symbol", "S\xedmbolo", "ocde", "C\xf3digo", "date_format", "Formato de Data", "datetime_format", _s20_138, "military_time", "Formato de Tempo 24h", _s18_81, _s19_130, "send_reminders", _s16_334, "timezone", "Fuso Hor\xe1rio", _s19_47, _s20_139, _s17_101, _s18_194, _s19_49, _s19_131, _s18_82, _s20_140, _s18_84, _s21_145, "group_settings", _s23_82, "group", "Grupo", "groups", "Grupos", "new_group", "Novo Grupo", "edit_group", "Editar Grupo", "created_group", _s24_98, "updated_group", _s28_87, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_88, "deleted_group", _s26_75, "restored_group", _s28_88, "upload_logo", "Carregar Logo", "uploaded_logo", "Logo carregado com sucesso", "logo", "Logo", "saved_settings", "Configura\xe7\xf5es salvas com sucesso", _s16_169, "Configura\xe7\xf5es de Produtos", "device_settings", _s28_89, "defaults", "Padr\xf5es", "basic_settings", "Configura\xe7\xf5es B\xe1sicas", _s17_103, "Configura\xe7\xf5es Avan\xe7adas", "company_details", _s19_132, "user_details", "Detalhes do Usu\xe1rio", "localization", "Localiza\xe7\xe3o", "online_payments", _s17_208, "tax_rates", "Taxas de Impostos", "notifications", "Notifica\xe7\xf5es", "import_export", "Importar | Exportar", "custom_fields", _s21_146, "invoice_design", "Design da Fatura", "buy_now_buttons", "Bot\xf5es Compre J\xe1", "email_settings", "Configura\xe7\xf5es de Email", _s23_37, "Modelos e Lembretes", _s22_55, "Cart\xf5es de Cr\xe9dito & Bancos", _s19_51, _s21_147, "price", "Pre\xe7o", "email_sign_up", "Inscri\xe7\xe3o de Email", "google_sign_up", "Inscri\xe7\xe3o no Google", _s27_40, "Obrigado por sua compra!", "redeem", "Resgatar", "back", "Voltar", "past_purchases", _s16_335, _s19_53, _s16_336, "pro_plan", "Plano Pro", "enterprise_plan", _s17_209, "count_users", ":count usu\xe1rios", "upgrade", "Upgrade", _s25_45, "Por favor digite o primeiro nome", _s24_42, "Por favor digite o sobrenome", _s33_21, _s86_0, "i_agree_to_the", "Aceito os", _s16_171, _s20_141, "privacy_policy", _s23_83, "sign_up", "Cadastro", "account_login", "Login na Conta", "view_website", "Ver o Website", "create_account", "Criar Conta", "email_login", "E-mail de Login", "create_new", "Criar Novo", _s18_86, "Nenhum registro selecionado", _s21_73, "Por favor, salve ou cancele suas altera\xe7\xf5es", "download", "Download", _s27_41, "Necessita um plano empresarial", "take_picture", "Tire uma Foto", "upload_file", "Enviar Arquivo", "document", "Documento", "documents", "Documentos", "new_document", "Novo Documento", "edit_document", _s16_337, _s17_105, _s29_66, _s16_173, _s32_27, _s17_106, _s31_36, _s16_174, _s29_67, _s17_107, _s32_28, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "Sem Hist\xf3rico", "expense_date", "Data da Despesa", "pending", "Pendente", _s16_175, "Autenticado", _s16_176, "Pendente", _s16_177, "Faturado", "converted", "Convertido", _s24_44, "Adicionar documentos \xe0 fatura", "exchange_rate", "Taxa de C\xe2mbio", _s16_178, "Converter moeda", "mark_paid", _s16_338, "category", "Categoria", "address", "Endere\xe7o", "new_vendor", "Novo Fornecedor", "created_vendor", _s29_68, "updated_vendor", _s33_35, "archived_vendor", _s32_29, "deleted_vendor", "Fornecedor exclu\xeddo com sucesso", "restored_vendor", "Fornecedor restaurado com sucesso", _s16_179, _s42_23, "deleted_vendors", ":count fornecedores exclu\xeddos com sucesso", _s16_180, _s36_11, "new_expense", "Informar Despesa", "created_expense", _s26_76, "updated_expense", _s30_55, _s16_181, _s29_69, "deleted_expense", _s28_90, _s16_182, _s30_56, _s17_109, _s31_37, _s16_183, _s30_57, _s17_110, _s37_14, "copy_shipping", "Copiar Envio", "copy_billing", "Copiar Cobran\xe7a", "design", "Design", _s21_74, "Falha ao procurar registro", "invoiced", "Faturado", "logged", "Registrado", "running", "Executando", "resume", "Retomar", "task_errors", "Por favor corrija quaisquer tempos sobrepostos", "start", "Iniciar", "stop", "Parar", "started_task", _s27_89, "stopped_task", "Tarefa interrompida com sucesso", "resumed_task", _s29_70, "now", "Agora", _s16_184, _s31_38, "timer", "Timer", "manual", "Manual", "budgeted", "Or\xe7ado", "start_time", "Hor\xe1rio de In\xedcio", "end_time", "Hor\xe1rio Final", "date", "Data", "times", "Vezes", "duration", "Dura\xe7\xe3o", "new_task", "Nova Tarefa", "created_task", "Tarefa criada com sucesso", "updated_task", "Tarefa atualizada com sucesso", "archived_task", "Tarefa arquivada com sucesso", "deleted_task", "Tarefa exclu\xedda com sucesso", "restored_task", "Tarefa restaurada com sucesso", "archived_tasks", ":count tarefas arquivadas com sucesso", "deleted_tasks", ":count tarefas exclu\xeddas com sucesso", "restored_tasks", _s34_19, _s19_55, "Por favor digite um nome", "budgeted_hours", "Horas Or\xe7adas", "created_project", _s26_77, "updated_project", _s30_58, _s16_186, _s29_71, "deleted_project", _s28_80, _s16_187, _s30_59, _s17_111, _s38_32, _s16_188, ":count projetos exclu\xeddos com sucesso", _s17_112, _s37_15, "new_project", "Novo Projeto", _s27_45, "Obrigado por usar nosso app!", "if_you_like_it", "Se voc\xea desejar por favor", "click_here", "clique aqui", _s18_90, "Clique aqui", "to_rate_it", "para dar uma nota.", "average", "M\xe9dio", "unapproved", "N\xe3o Aprovado", _s30_15, _s56_3, "locked", "Travado", "authenticate", "Autenticar", _s19_57, _s23_84, _s24_46, _s23_85, "footer", "Rodap\xe9", "compare", "Comparar", "hosted_login", "Login Hospedado", "selfhost_login", _s20_142, "google_sign_in", "Entrar com o Google", "today", "Hoje", "custom_range", "Per\xedodo Personalizado", "date_range", "Per\xedodo", "current", "Atual", "previous", "Anterior", "current_period", "Per\xedodo Atual", _s17_113, _s21_148, "previous_period", _s16_339, "previous_year", "Ano Anterior", "compare_to", "Comparar com", "last7_days", "\xdaltimos 7 Dias", "last_week", "\xdaltima Semana", "last30_days", "\xdaltimos 30 Dias", "this_month", "Este M\xeas", "last_month", "\xdaltimo M\xeas", "this_year", "Este Ano", "last_year", "\xdaltimo Ano", "custom", "Personalizado", _s16_189, "Clonar para Fatura", "clone_to_quote", "Clonar ao Or\xe7amento", "clone_to_credit", "Clone para cr\xe9dito", "view_invoice", "Visualizar fatura", "convert", "Converter", "more", "Mais", "edit_client", "Editar Cliente", "edit_product", "Editar Produto", "edit_invoice", "Editar Fatura", "edit_quote", _s16_340, "edit_payment", _s16_341, "edit_task", "Editar Tarefa", "edit_expense", "Editar Despesa", "edit_vendor", _s17_210, "edit_project", "Editar Projeto", _s20_68, _s27_90, "billing_address", "Endere\xe7o de Cobran\xe7a", _s16_191, _s17_211, "total_revenue", "Faturamento Total", "average_invoice", "M\xe9dia por Fatura", "outstanding", "Em Aberto", "invoices_sent", ":count faturas enviadas", "active_clients", "clientes ativos", "close", "Fechar", "email", "Email", "password", "Senha", "url", "URL", "secret", "Segredo", "name", "Nome", "logout", "Sair", "login", "Login", "filter", "Filtrar", "sort", "Ordenar", "search", "Pesquisar", "active", "Ativo", "archived", "Arquivado", "deleted", "Exclu\xeddo", "dashboard", "Painel", "archive", "Arquivar", "delete", "Excluir", "restore", "Restaurar", _s16_193, "Refresh Completo", _s23_38, "Por favor digite seu email", _s26_32, "Por favor digite sua senha", _s21_77, "Por favor digite sua URL", _s26_34, "Por favor digite uma chave de produto", "ascending", "Ascendente", "descending", "Descendente", "save", "Salvar", _s17_115, "Um erro ocorreu", "paid_to_date", "Pago at\xe9 Hoje", "balance_due", "Saldo Devedor", "balance", "Saldo", "overview", "Resumo", "details", "Detalhes", "phone", "Telefone", "website", "Website", "vat_number", "Inscri\xe7\xe3o Municipal", "id_number", "C\xf3digo de identifica\xe7\xe3o", "create", "Criar", _s19_59, _s43_6, "error", "Erro", _s16_195, _s24_99, "contacts", "Contatos", "additional", "Adicional", "first_name", "Nome", "last_name", "Sobrenome", "add_contact", "Adicionar contato", "are_you_sure", "Voc\xea tem certeza?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remover", _s16_197, _s16_342, "product", "Produto", "products", "Produtos", "new_product", "Novo Produto", "created_product", "Produto criado com sucesso", "updated_product", "Produto atualizado com sucesso", _s16_199, "Produto arquivado com sucesso", "deleted_product", "Produto exclu\xeddo com sucesso", _s16_200, _s30_60, _s17_117, ":count produtos arquivados com sucesso", _s16_201, ":count produtos exclu\xeddos com sucesso", _s17_118, _s37_16, "product_key", "Produto", "notes", "Notas", "cost", "Custo", "client", "Cliente", "clients", "Clientes", "new_client", "Novo Cliente", "created_client", _s26_78, "updated_client", _s30_61, "archived_client", _s29_72, _s16_202, _s38_33, "deleted_client", "Cliente exclu\xeddo com sucesso", "deleted_clients", ":count clientes exclu\xeddos com sucesso", "restored_client", "Cliente restaurado com sucesso", _s16_203, _s36_13, "address1", "Rua", "address2", "Complemento", "city", "Cidade", "state", "Estado", "postal_code", "CEP", "country", "Pa\xeds", "invoice", "Fatura", "invoices", "Faturas", "new_invoice", "Nova Fatura", "created_invoice", "Fatura criada com sucesso", "updated_invoice", "Fatura atualizada com sucesso", _s16_204, "Fatura arquivada com sucesso", "deleted_invoice", "Fatura exclu\xedda com sucesso", _s16_205, "Fatura restaurada com sucesso", _s17_119, ":count faturas arquivadas com sucesso", _s16_206, ":count faturas exclu\xeddas com sucesso", _s17_120, _s37_17, "emailed_invoice", "Fatura enviada por email com sucesso", "emailed_payment", _s39_14, "amount", "Valor", "invoice_number", "N\xfamero da Fatura", "invoice_date", "Data da Fatura", "discount", "Desconto", "po_number", "N\xba Ordem de Servi\xe7o", "terms", "Condi\xe7\xf5es", "public_notes", "Notas P\xfablicas", "private_notes", "Notas Privadas", "frequency", "Frequ\xeancia", "start_date", "Data Inicial", "end_date", "Data Final", "quote_number", _s19_133, "quote_date", _s17_212, "valid_until", "V\xe1lido At\xe9", "items", "Itens", "partial_deposit", _s16_343, "description", "Descri\xe7\xe3o", "unit_cost", "Pre\xe7o Unit\xe1rio", "quantity", "Quantidade", "add_item", "Adicionar Item", "contact", "Contato", "work_phone", "Telefone", "total_amount", "Quantia Total", "pdf", "PDF", "due_date", _s18_195, _s16_207, _s26_79, "status", "Status", _s17_121, "Status da Fatura", "quote_status", "Status do Or\xe7amento", _s22_56, _s31_39, _s22_58, _s29_73, "count_selected", _s19_134, "total", "Total", "percent", "Porcento", "edit", "Editar", "dismiss", "Dispensar", _s20_70, "Por favor digite uma data", _s22_59, _s30_62, _s24_48, "Por favor escolha uma fatura", "task_rate", "Taxa de Tarefas", "settings", "Configura\xe7\xf5es", "language", "Idioma", "currency", "Moeda", "created_at", "Data de Cria\xe7\xe3o", "created_on", "Criado em", "updated_at", "Atualizado", "tax", "Imposto", _s30_17, "Por favor digite um n\xfamero de fatura", _s27_49, _s39_15, "past_due", "Vencido", "draft", "Rascunho", "sent", "Enviado", "viewed", "Visualizado", "approved", "Aprovado", "partial", "Dep\xf3sito / Parcial", "paid", "Pago", "mark_sent", _s19_135, _s22_61, "Fatura marcada como enviada com sucesso", _s22_62, "Sucesso! A fatura foi marcada como enviada.", _s23_40, "Faturas marcadas como enviadas com sucesso", _s23_41, "Sucesso! As faturas foram marcadas como enviada.", "done", "Conclu\xeddo", _s37_18, "Por favor digite um cliente ou nome de contato", "dark_mode", "Modo Escuro", _s27_51, "Reinicie o app para aplicar a mudan\xe7a", "refresh_data", "Atualizar Dados", "blank_contact", "Contato Vazio", "activity", "Atividade", _s16_209, "Nenhum registro encontrado", "clone", "Clonar", "loading", "Carregando", "industry", "Ind\xfastria", "size", "Tamanho", "payment_terms", _s21_140, "payment_date", _s17_213, "payment_status", "Status do Pagamento", _s16_211, "Pendente", _s16_212, "Anulado", _s16_213, "Falhou", _s16_214, "Completado", _s16_215, _s24_94, _s16_216, "Reembolsado", _s17_122, "N\xe3o Aplicado", _s17_123, _s19_23, "net", "Vencimento", "client_portal", _s17_214, "show_tasks", "Exibir tarefas", "email_reminders", "Lembretes de Email", "enabled", "Habilitado", "recipients", "Destinat\xe1rios", "initial_email", "Email Inicial", "first_reminder", _s17_215, "second_reminder", _s16_344, "third_reminder", _s17_216, "reminder1", _s17_215, "reminder2", _s16_344, "reminder3", _s17_216, "template", "Modelo", "send", "Enviar", "subject", "Assunto", "body", "Corpo", "send_email", "Enviar Email", "email_receipt", "Enviar recibo de pagamento ao cliente por email", "auto_billing", _s19_136, "button", "Bot\xe3o", "preview", "Preview", "customize", "Personalizar", "history", "Hist\xf3rico", "payment", "Pagamento", "payments", "Pagamentos", "refunded", "Reembolsado", "payment_type", _s17_185, _s21_79, _s23_86, "enter_payment", "Informar Pagamento", "new_payment", "Adicionar Pagamento", "created_payment", _s28_91, "updated_payment", _s32_30, _s16_217, _s31_40, "deleted_payment", "Pagamento exclu\xeddo com sucesso", _s16_218, "Pagamento restaurado com sucesso", _s17_124, _s40_11, _s16_219, ":count pagamentos exclu\xeddos com sucesso", _s17_125, _s37_20, "quote", "Or\xe7amento", "quotes", "Or\xe7amentos", "new_quote", "Novo Or\xe7amento", "created_quote", _s28_92, "updated_quote", "Or\xe7amento atualizado com sucesso", "archived_quote", "Or\xe7amento aquivado com sucesso", "deleted_quote", "Or\xe7amento exclu\xeddo com sucesso", "restored_quote", "Or\xe7amento restaurado com sucesso", "archived_quotes", _s40_12, "deleted_quotes", ":count or\xe7amentos exclu\xeddos com sucesso", "restored_quotes", _s35_21, "expense", "Despesa", "expenses", "Despesas", "vendor", "Fornecedor", "vendors", "Fornecedores", "task", "Tarefa", "tasks", "Tarefas", "project", "Projeto", "projects", "Projetos", "activity_1", _s29_74, "activity_2", _s32_31, "activity_3", ":user excluiu o cliente :client", "activity_4", ":user criou a fatura :invoice", "activity_5", ":user atualizou a fatura :invoice", "activity_6", ":user enviou a fatura :invoice para :client do :contact", "activity_7", ":contact viu a fatura :invoice para o :client", "activity_8", ":user arquivou a fatura :invoice", "activity_9", ":user excluiu a fatura :invoice", "activity_10", ":contact efetuou o pagamento :payment de :payment_amount da fatura :invoice do cliente :client", "activity_11", _s36_43, "activity_12", _s35_43, "activity_13", ":user excluiu o pagamento :payment", "activity_14", ":user adicionou cr\xe9dito :credit", "activity_15", ":user atualizou cr\xe9dito :credit", "activity_16", ":user arquivou o cr\xe9dito de :credit", "activity_17", ":user excluiu cr\xe9dito :credit", "activity_18", ":user criou o or\xe7amento :quote", "activity_19", ":user atualizou o or\xe7amento :quote", "activity_20", ":user enviou o or\xe7amento :quote do cliente :client para o contato :contact", "activity_21", _s38_34, "activity_22", _s33_36, "activity_23", ":user excluiu o or\xe7amento :quote", "activity_24", _s34_35, "activity_25", ":user restaurou a fatura :invoice", "activity_26", _s33_37, "activity_27", _s36_44, "activity_28", ":user restaurou o cr\xe9dito :credit", "activity_29", ":contact aprovou o or\xe7amento :quote para o cliente :client", "activity_30", _s32_32, "activity_31", _s35_44, "activity_32", ":user excluiu :vendor", "activity_33", _s36_45, "activity_34", _s30_63, "activity_35", _s33_38, "activity_36", ":user excluiu a despesa :expense", "activity_37", _s34_36, "activity_39", _s58_4, "activity_40", _s72_3, "activity_41", "Pagamento :payment_amount (:payment) falhou", "activity_42", _s26_80, "activity_43", _s30_64, "activity_44", _s29_75, "activity_45", ":user excluiu a tarefa :task", "activity_46", _s30_65, "activity_47", _s34_37, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s30_66, "activity_55", ":contact respondeu o ticket :ticket", "activity_56", _s33_39, "activity_57", "O sistema falhou ao enviar a fatura :invoice", "activity_58", ": fatura revertida pelo usu\xe1rio: fatura", "activity_59", ": fatura cancelada pelo usu\xe1rio: fatura", "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Senha One-Time (OTP)", "emailed_quote", "Or\xe7amento enviado por email com sucesso", "emailed_credit", _s27_91, _s20_72, _s42_24, _s21_81, _s40_13, "expired", "Expirado", "all", "Todos", "select", "Selecionar", _s22_63, _s33_40, "custom_value1", _s19_137, "custom_value2", _s19_137, "custom_value3", _s21_149, "custom_value4", _s21_150, _s18_91, _s30_67, _s24_53, _s32_33, _s29_36, "Mensagem Personalizada de Fatura Atrasada", _s27_56, "Mensagem Personalizada de Fatura Paga", _s31_18, _s48_7, "lock_invoices", "Bloquear Faturas", "translations", "Tradu\xe7\xf5es", _s19_60, _s29_76, _s19_62, _s28_93, _s22_65, _s30_68, _s22_67, _s29_77, _s21_82, "Padr\xe3o de Numera\xe7\xe3o de Vendedor", _s21_84, "Contador Num\xe9rico de Vendedores", _s21_86, _s29_78, _s21_88, _s28_94, _s22_69, _s32_34, _s22_71, _s31_41, _s22_73, _s29_79, _s22_75, "Contador Num\xe9rico de Faturas", _s20_73, _s32_35, _s20_75, "Contador Num\xe9rico de Or\xe7amentos", _s21_90, _s30_69, _s21_92, _s29_80, _s21_94, _s30_69, _s21_95, _s29_80, _s18_93, _s26_81, "counter_padding", _s18_196, _s28_56, _s43_7, _s18_95, _s20_143, _s18_97, _s24_100, _s18_99, _s20_144, _s18_101, _s24_101, _s18_103, _s20_145, _s18_105, _s24_102, _s21_96, _s27_92, _s19_64, _s30_70, _s21_98, _s30_71, _s29_38, _s38_35, "show_table", "Exibir Tabelas", "show_list", "Exibir Lista", "client_city", _s17_217, "client_state", "Estado do Cliente", "client_country", "Pa\xeds do Cliente", _s16_220, "Cliente Ativo", "client_balance", "Balan\xe7o do Cliente", "client_address1", _s19_138, "client_address2", "Complemento", "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s19_139, _s24_56, "Complemento", "type", "Tipo", "invoice_amount", "Valor da Fatura", _s16_224, _s18_195, "tax_rate1", _s17_218, "tax_rate2", _s17_219, "tax_rate3", _s17_220, "auto_bill", _s19_140, "archived_at", "Arquivado em", "has_expenses", "Tem despesas", "custom_taxes1", _s25_88, "custom_taxes2", _s25_89, "custom_taxes3", _s25_90, "custom_taxes4", _s25_91, _s17_128, _s25_83, _s17_129, _s25_84, _s17_130, _s25_85, _s17_131, _s25_86, "is_deleted", "Exclu\xeddo", "vendor_city", "Cidade do Vendedor", "vendor_state", "Estado do Vendedor", "vendor_country", "Pa\xeds do Vendedor", "is_approved", "Est\xe1 aprovado", "tax_name", "Nome do Imposto", "tax_amount", _s19_141, "tax_paid", "Impostos pagos", "payment_amount", "Quantia de Pagamento", "age", "Idade", "is_running", "Is Running", "time_log", "Log de Tempo", "bank_id", "Banco", _s19_66, _s19_67, _s16_225, "Categoria de Despesa", _s19_68, _s19_69, "tax_name1", "Imposto 1", "tax_name2", "Imposto 2", "tax_name3", "Tax Name 3", "transaction_id", "ID de transa\xe7\xe3o", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "pt_PT", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Aceitar", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Defini\xe7\xf5es de Pagamento", "default", "Pr\xe9-definido", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Resumo", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Adicionar Terminal", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Crie a sua conta em segundos", "login_label", _s28_, "add_to_invoice", "Adicionar na nota de pagamento :invoice", _s17_6, _s17_7, "week", "Semana", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Moeda da Nota de Pagamento", "range", "Per\xedodo", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Criar projeto", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "A taxa para :amount nota de pag. deve ser :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprovar", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Cliente apagado com sucesso", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Definir palavra-passe", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s29_60, "view_statement", "Visualizar declara\xe7\xe3o", "sepa", "D\xe9bito Direto SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistema", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", _s17_180, _s16_21, _s16_231, _s17_13, _s18_169, _s18_13, _s20_127, _s21_16, _s23_75, _s22_24, _s25_78, _s25_2, _s37_36, _s25_3, _s41_14, _s26_2, _s40_8, _s25_4, _s27_93, _s25_5, _s38_2, _s26_3, _s41_15, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Guia do Utilizador", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importar Dados", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user criou uma nota de pagamento recorrente :recurring_invoice", "activity_101", ":user atualizou uma nota de pagamento recorrente :recurring_invoice", "activity_102", ":user arquivou uma nota de pagamento recorrente :recurring_invoice", "activity_103", ":user apagou uma nota de pagamento recorrente :recurring_invoice", "activity_104", ":user restaurou uma nota de pagamento recorrente :recurring_invoice", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s18_170, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Primeiro Nome do Contacto", _s17_17, "\xdaltimo Nome do Contacto", "order", "Order", "unassigned", "N\xe3o atribu\xeddo", "partial_value", "Deve ser maior que zero e menor que o total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Ativar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Indique o subdom\xednio ou mostre a nota de pag. no seu site.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "C\xf3digo Promocional", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Seguran\xe7a", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscri\xe7\xe3o", "subscriptions", "Subscri\xe7\xf5es", _s16_39, "Nova Subscri\xe7\xe3o", _s17_23, "Editar subscri\xe7\xe3o", _s20_23, "Subscri\xe7\xe3o criada com sucesso", _s20_24, "Subscri\xe7\xe3o atualizada com sucesso", _s21_28, "Subscri\xe7\xe3o arquivada com sucesso", _s20_25, "Subscri\xe7\xe3o Apagada com Sucesso", _s20_26, "Subscri\xe7\xe3o Removida com Sucesso", _s21_29, "Subscri\xe7\xe3o Restaurada com Sucesso", _s19_17, "Encontrada 1 Subscri\xe7\xe3o", _s20_27, "Encontradas :count Subscri\xe7\xf5es", _s26_6, "Subdom\xednio n\xe3o dispon\xedvel", "connect_gmail", "Associar Gmail", _s16_41, "Desassociar Gmail", "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, "N\xfamero de Identifica\xe7\xe3o do Cliente", "count_minutes", ":count Minutos", _s16_46, "Timeout da palavra-passe", _s29_4, _s29_5, "use_last_email", "Usar \xfaltimo E-mail", _s16_48, "Ativar Empresa", _s21_31, "Ativar E-mail, notas de pagamento recorrentes e notifica\xe7\xf5es", _s27_14, "Ocorreu um erro, por favor tente novamente", _s27_15, "Por favor defina uma palavra-passe", _s34_6, "Aviso: A mudan\xe7a de n\xfamero de telem\xf3vel vai desativar a autentica\xe7\xe3o de dois fatores (2FA).", "help_translate", "Ajude a traduzir", _s23_11, "Por favor escolha um pa\xeds", "resend_invite", "Reenviar convite", _s19_18, "Autentica\xe7\xe3o de dois fatores (2FA) desativada com sucesso", _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Entregue", "bounced", "Devolvido", "spam", "Spam", "view_docs", "Ver Documentos", _s32_4, "Por favor forne\xe7a um n\xfamero de telem\xf3vel para ativar a autentica\xe7\xe3o de dois fatores", "send_sms", "Enviar SMS", "sms_code", "C\xf3digo SMS", _s21_32, "Ler o c\xf3digo de barras com uma :link aplica\xe7\xe3o compat\xedvel.", _s18_30, "Autentica\xe7\xe3o de Dois Fatores ativada com sucesso", "connect_google", "Associar Google", _s17_25, "Desassociar Google", _s17_27, "Autentica\xe7\xe3o de Dois Fatores", _s18_31, "Desativar Dois Fatores", _s34_7, "Exigir Palavra-passe para In\xedcio de Sess\xe3o Social", "stay_logged_in", "Continuar com sess\xe3o iniciada", _s23_13, "Aviso: A sua sess\xe3o est\xe1 prestes a expirar", "count_hours", ":count Horas", "count_day", "1 Dia", "count_days", ":count Dias", _s19_20, _s19_21, _s17_28, "Defini\xe7\xf5es de Seguran\xe7a", "resend_email", "Reenviar E-mail", _s26_8, "Por favor confirme o seu endere\xe7o de E-mail", _s16_51, _s21_136, _s19_22, _s25_92, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Mostrar A\xe7\xf5es", _s17_30, "Iniciar Multisele\xe7\xe3o", _s27_17, "Um E-mail foi enviado para confirmar este endere\xe7o de correio eletr\xf3nico", _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", _s19_106, "to_update_run", "Para atualizar corra", _s18_33, "Converter em Nota de Pagamento", _s16_52, "URL de Registo", "invoice_project", "Faturar Projeto", "invoice_task", "Faturar Tarefa", "invoice_expense", "Nota de Pagamento da Despesa", _s19_25, "Encontrado 1 Termo de Pagamento", _s20_28, "Encontrados :count Termos de Pagamento", _s16_54, "Guardar e Prever", "save_and_email", "Guardar e Enviar por E-mail", _s16_56, _s19_107, _s16_58, "Valor convertido", _s17_32, "Saldo Convertido", _s22_28, _s22_29, _s24_18, "Saldo de Cr\xe9dito Convertido", "converted_total", "Total Convertido", "is_sent", "Foi Enviado", _s17_34, "Documentos Pr\xe9-Definidos", "document_upload", "Upload de Documento", _s20_29, "Permitir que clientes enviem documentos/anexos", "expense_total", "Total das Despesas", "enter_taxes", "Introduzir impostos", "by_rate", "Por taxa", "by_amount", "Por quantia", "enter_amount", "Introduzir Quantia", "before_taxes", "Sem impostos", "after_taxes", "Com impostos", "color", "Cor", "show", "Mostrar", "hide", "Ocultar", "empty_columns", "Colunas Vazias", _s21_35, "O Modo de depura\xe7\xe3o est\xe1 ativado", _s26_9, "Aviso: este modo apenas deve ser usado em m\xe1quinas locais, pois pode ocorrer fuga de credenciais. Clique para saber mais", "running_tasks", "Tarefas a correr", "recent_tasks", "Tarefas Recentes", "recent_expenses", "Despesas Recentes", _s17_36, "Pr\xf3ximas Despesas", "update_app", "Atualizar Aplica\xe7\xe3o", "started_import", "Importa\xe7\xe3o iniciou com sucesso", _s24_20, "Duplicar mapeamento de colunas", _s20_30, "Usa Taxas Inclusivas", _s18_35, _s18_36, "column", "Coluna", "sample", "Exemplo", "map_to", "Map To", "import", "Importar", _s25_15, "Usar primeira linha como nome das colunas", "select_file", "Por favor selecione um arquivo", _s16_60, "Nenhum Ficheiro Selecionado", "csv_file", "Ficheiro CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Contabilidade", _s22_30, "Por favor forne\xe7a todos os CSVs", "import_type", "Tipo de Importa\xe7\xe3o", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Ver Licen\xe7as", "webhook_url", "Webhook URL", _s17_38, "Editor em ecr\xe3 inteiro", "sidebar_editor", "Editor da Barra Lateral", _s22_31, _s31_20, "purge", "Apagar", "service", "Servi\xe7o", "clone_to", "Duplicar para", "clone_to_other", "Duplicar para outro", "labels", "Etiquetas", "add_custom", "Adicionar Personalizado", "payment_tax", "Imposto de Pagamento", "unpaid", "N\xe3o pago", "white_label", "White Label", "delivery_note", "Nota de Envio", _s24_23, "Notas de Pagamento Enviadas est\xe3o bloqueadas", _s24_25, "Faturas Pagas est\xe3o bloqueadas", "source_code", "C\xf3digo-fonte", "app_platforms", "Plataformas da Aplica\xe7\xe3o", "invoice_late", _s26_82, "quote_expired", _s18_197, "partial_due", _s18_171, "invoice_total", _s21_151, "quote_total", _s18_172, "credit_total", "Total em cr\xe9dito", _s23_14, _s21_151, "actions", "A\xe7\xf5es", "expense_number", "N.\xba da Despesa", "task_number", "N.\xba da Tarefa", "project_number", "N.\xba do Projeto", "project_name", "Nome do Projeto", "warning", "Aviso", "view_settings", "Ver defini\xe7\xf5es", _s24_27, "Aviso: esta empresa ainda n\xe3o foi ativada", "late_invoice", _s26_82, "expired_quote", _s18_197, "remind_invoice", "Enviar Lembrete da Nota de Pagamento", "cvv", "CVV", "client_name", "Nome do Cliente", "client_phone", "Telefone do Cliente", "required_fields", "Campos Necess\xe1rios", "calculated_rate", "Taxa Calculada", _s17_40, "Taxa de Tarefa Pr\xe9-definida", "clear_cache", "Limpar cache", "sort_order", "Ordenar", "task_status", "Estado", "task_statuses", "Estado da Tarefa", "new_task_status", "Novo Estado da Tarefa", _s16_62, "Editar Estado da Tarefa", _s19_26, "Estado da tarefa criado com sucesso", _s19_27, "Estado da tarefa atualizado com sucesso", _s20_32, "Estado da tarefa arquivado com sucesso", _s19_28, "Estado da tarefa apagado com sucesso", _s19_29, "Estado da tarefa removido com sucesso", _s20_33, "Estado da tarefa restaurado com sucesso", _s22_32, "Estado das tarefas arquivados com sucesso", _s21_37, "Estado das tarefas apagados com sucesso", _s22_33, "Estado das tarefas restaurados com sucesso", _s18_37, "Encontrado 1 Estado da Tarefa", _s20_35, "Encontados :count Estados da Tarefa", _s16_64, _s25_79, _s21_38, "Sempre mostrar a se\xe7\xe3o de tarefas ao criar notas de pagamento", _s20_36, "Registo das tarefas da Nota de Pagamento", _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, "Adicionar detalhes da data na linha dos items da Nota de Pagamento", _s21_39, "Come\xe7ar tarefas antes de guardar", _s18_38, _s18_198, "task_settings", "Defini\xe7\xf5es de tarefa", _s20_40, "Configurar Categorias", _s18_40, _s22_118, _s20_42, _s26_65, _s21_40, "Editar Categoria de Despesas", _s24_28, "Categoria de despesa criada com sucesso", _s24_29, "Categoria de despesa atualizada com sucesso", _s25_19, "Categoria de despesa arquivada com sucesso", _s24_30, "Categoria apagada com sucesso", _s24_31, "Categoria de despesa removida com sucesso", _s25_20, "Categoria de despesa restaurada com sucesso", _s27_21, ":count categorias de despesa arquivadas com sucesso", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, "Encontrada 1 Categoria de Despesa", _s25_22, "Encontrada :count Categorias de Despesa", _s21_42, "Usar Cr\xe9ditos Dispon\xedveis", "show_option", "Mostrar Op\xe7\xe3o", _s22_34, _s50_8, "view_changes", "Ver altera\xe7\xf5es", "force_update", _s18_173, _s17_42, "Est\xe1 a usar a vers\xe3o mais recente, mas pode haver corre\xe7\xf5es pendentes dispon\xedveis.", "mark_paid_help", _s31_34, _s18_42, "Deve ser faturada", _s23_16, _s33_23, _s29_7, _s29_61, _s21_44, _s25_80, _s16_66, _s26_66, _s18_43, "Duplicar recorr\xeancia", "crypto", "Criptomoeda", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Campo do utilizador", "variables", "Vari\xe1vel", "show_password", "Mostrar Palavra-passe", "hide_password", "Esconder Palavra-passe", "copy_error", "Copiar Erro", "capture_card", _s17_181, _s17_43, "Cobran\xe7a autom\xe1tica ativada", "total_taxes", "Impostos totais", "line_taxes", "Item", "total_fields", "Campo Total", _s25_23, _s42_21, _s25_24, _s38_28, _s25_25, _s38_29, "gateway_refund", "Reembolso do Terminal", _s19_30, "Processe o reembolso com o terminal de pagamento", "due_date_days", _s18_195, "paused", "Pausado", "mark_active", "Ativar", "day_count", "Dia :count", _s22_35, _s19_108, _s21_45, _s17_182, _s17_45, _s26_72, "endless", "Intermin\xe1vel", "next_send_date", _s21_137, _s16_68, _s16_310, _s17_47, "Nota de Pagamento Recorrente", _s18_45, "Nota de Pagamento Recorrentes", _s21_47, "Nova Nota de Pagamento Recorrente", _s22_37, _s24_89, _s25_26, _s36_40, _s25_27, _s40_9, _s26_11, "Nota de Pagamento Recorrente arquivada", _s25_28, "Nota de Pagamento Recorrente removida", _s25_29, _s38_30, _s26_12, "Nota de Pagamento Recorrente restaurada", _s27_23, ":value Notas de pagamento recorrentes arquivadas com sucesso", _s26_13, ":value Notas de pagamento recorrentes apagadas com sucesso", _s27_24, ":value Notas de pagamento recorrentes restauradas com sucesso", _s24_32, _s30_50, _s25_30, _s37_37, "send_date", "Data de envio", "auto_bill_on", _s30_51, _s28_7, _s32_26, "profit", "Lucro", "line_item", "Item", _s18_47, _s29_62, _s23_17, "Suportar pagamentos com quantias superiores \xe0 pedida para aceitar gorjetas", _s19_31, _s24_90, _s24_33, _s52_2, "test_mode", "Modo de teste", "opened", "Aberto", _s30_4, "Falha na reconcilia\xe7\xe3o", _s30_5, "Sucesso na Reconcilia\xe7\xe3o", "gateway_success", _s17_183, "gateway_failure", "Falha do Portal", "gateway_error", "Erro do Portal", "email_send", "Email Enviado", _s17_49, _s26_67, "failure", "Falha", "quota_exceeded", "Quota ultrapassada", _s16_70, "Falha Upstream", "system_logs", "Logs de Sistema", "view_portal", "View Portal", "copy_link", "Copiar Link", "token_billing", "Guardar detalhes do cart\xe3o", _s24_34, _s26_68, "always", "Sempre", "optin", "Autorizar", "optout", "Desautorizar", "label", "Etiqueta", "client_number", "N\xba Cliente", "auto_convert", "Converter Automaticamente", "company_name", "Nome da Empresa", "reminder1_sent", _s18_175, "reminder2_sent", _s18_176, "reminder3_sent", _s18_177, _s18_49, _s23_76, "pdf_page_info", _s23_77, _s16_72, "Notas de pag. enviadas com sucesso", "emailed_quotes", "Or\xe7amentos enviados com sucesso", "emailed_credits", _s40_10, "gateway", "Gateway", "view_in_stripe", "Ver em Formato Lista", "rows_per_page", "Colunas por P\xe1gina", "hours", "Horas", "statement", "Declara\xe7\xe3o", "taxes", "Impostos", "surcharge", "Sobretaxa", "apply_payment", _s17_184, "apply_credit", "Aplicar Nota de Cr\xe9dito", "apply", "Aplicar", "unapplied", "N\xe3o Aplicado", "select_label", "Selecione a Etiqueta", "custom_labels", _s24_91, "record_type", "Tipo de Registo", "record_name", "Nome do Registo", "file_type", "Tipo de Ficheiro", "height", "Altura", "width", "Largura", "to", "Para", "health_check", "Examinar Sa\xfade do Sistema", "payment_type_id", "Tipo de pagamento", "last_login_at", "\xdaltimo In\xedcio de Sess\xe3o em", "company_key", _s16_312, "storefront", "Vitrine", "storefront_help", "Permitir aplica\xe7\xf5es de terceiros para criar notas de pagamento", "client_created", "Cliente Criado", _s20_45, "E-mail de pagamento online", _s20_47, _s25_81, "completed", "Completo", "gross", "Bruto", "net_amount", "Valor l\xedquido", "net_balance", "Saldo L\xedquido", "client_settings", _s24_92, _s17_51, _s20_128, _s17_53, _s23_78, "selected_quotes", "Or\xe7amentos Selecionados", "selected_tasks", _s20_129, _s17_55, _s21_138, _s17_57, "Pr\xf3ximas Nota de Pagamento", _s17_59, "Notas de Pagamento Vencidas", "recent_payments", _s19_109, "upcoming_quotes", _s19_110, "expired_quotes", _s20_130, "create_client", "Criar Cliente", "create_invoice", "Criar Nota de Pagamento", "create_quote", "Criar Or\xe7amento", "create_payment", "Criar Pagamento", "create_vendor", _s16_313, "update_quote", "Atualizar Or\xe7amento", "delete_quote", "Apagar Or\xe7amento", "update_invoice", "Atualizar Nota de Pagamento", "delete_invoice", "Apagar Nota de Pagamento.", "update_client", _s17_186, "delete_client", "Apagar Cliente", "delete_payment", "Apagar Pagamento", "update_vendor", "Atualizar Fornecedores", "delete_vendor", "Apagar Fornecedor", "create_expense", "Criar Despesa", "update_expense", _s17_187, "delete_expense", "Apagar Despesa", "create_task", "Criar Tarefa", "update_task", _s16_314, "delete_task", "Apagar Tarefa", "approve_quote", "Aprovar Or\xe7amento", "off", "Off", "when_paid", "Quando Pago", "expires_on", "Expira em", "free", "Gr\xe1tis", "plan", "Plano", "show_sidebar", _s21_152, "hide_sidebar", _s21_139, "event_type", "Tipo de Evento", "target_url", "Alvo", "copy", "C\xf3pia", "must_be_online", "Reinicie a aplica\xe7\xe3o assim que estiver conectado \xe0 internet", _s17_61, "Os crons precisam de ser ativados", "api_webhooks", "API Webhooks", "search_webhooks", _s26_69, "search_webhook", _s19_111, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nova Webhook", "edit_webhook", "Editar Webhook", "created_webhook", _s26_70, "updated_webhook", _s30_52, _s16_74, _s29_63, "deleted_webhook", "Webhook Apagada com Sucesso", "removed_webhook", _s28_81, _s16_75, _s30_53, _s17_62, ":value Webhooks arquivadas com sucesso", _s16_76, ":value Webhooks apagadas com sucesso", _s16_77, ":value Webhooks removidas com sucesso", _s17_63, ":value Webhooks restauradas com sucesso", "api_tokens", "API Tokens", "api_docs", "Documenta\xe7\xe3o API", "search_tokens", _s24_93, "search_token", _s17_188, "token", "Token", "tokens", "Tokens", "new_token", "Novo Token", "edit_token", "Editar Token", "created_token", "Token criado", "updated_token", "Token atualizado", "archived_token", "Token arquivado", "deleted_token", "Token apagado", "removed_token", _s26_71, "restored_token", _s28_82, "archived_tokens", ":value Tokens arquivadas com sucesso", "deleted_tokens", ":value Tokens apagadas com sucesso", "restored_tokens", ":value Tokens restauradas com sucesso", _s19_33, "Registo de cliente", _s24_36, "Permitir que os clientes se auto-registem no portal", _s21_49, _s25_82, "email_invoice", "Enviar Nota de Pagamento.", "email_quote", "Enviar Or\xe7amento", "email_credit", "Cr\xe9dito de E-mail", "email_payment", _s19_112, _s20_50, "O cliente n\xe3o tem um endere\xe7o de E-mail definido", "ledger", "Ledger", "view_pdf", "Ver PDF", "all_records", "Todos os registos", "owned_by_user", "Propriedade do utilizador", _s16_78, _s16_315, "contact_name", "Nome do Contacto", "use_default", "Use o padr\xe3o", _s16_80, _s17_189, "number_of_days", "N\xfamero de dias", _s23_19, _s36_41, "payment_term", _s21_140, _s16_81, _s26_72, _s17_65, "Editar Termo de Pagamento", _s20_51, "Criado termo de pagamento com sucesso", _s20_52, "Atualizado termo de pagamento com sucesso", _s21_50, "Arquivado termo de pagamento com sucesso", _s20_53, "Condi\xe7\xe3o de pagamento apagadas com sucesso", _s20_54, _s42_22, _s21_51, _s44_3, _s22_42, ":value Termos de Pagamento arquivados com sucesso", _s21_52, ":value Termos de Pagamento apagados com sucesso", _s22_43, ":value Termos de Pagamento restaurados com sucesso", "email_sign_in", _s16_316, "change", "Mudar", _s23_21, _s26_73, _s24_37, "Mudar para o layout de computador?", "send_from_gmail", "Enviar do Gmail", "reversed", "Invertido", "cancelled", "Cancelado", "credit_amount", "Valor do Nota de Cr\xe9dito", "quote_amount", "Valor do Or\xe7amento", "hosted", "Hospedado", "selfhosted", "Auto-hospedado", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Ocultar Menu", "show_menu", "Mostrar Menu", _s18_51, _s24_94, _s16_83, _s20_131, "search_designs", "Pesquisar Modelos", "search_invoices", "Pesquisar Notas de Pagamento", "search_clients", _s18_178, "search_products", _s18_179, "search_quotes", "Pesquisar Or\xe7amentos", "search_credits", _s18_180, "search_vendors", "Procurar Fornecedores", "search_users", "Pesquisar Utilizadores", _s16_84, _s27_82, "search_tasks", _s17_190, "search_settings", _s23_79, "search_projects", _s18_181, "search_expenses", _s18_182, "search_payments", _s20_132, "search_groups", _s16_317, "search_company", _s17_191, "search_document", _s21_141, "search_design", _s18_183, "search_invoice", "Pesquisar 1 Nota de Pagamento", "search_client", _s19_113, "search_product", _s19_114, "search_quote", _s19_115, "search_credit", _s19_116, "search_vendor", "Procurar 1 Fornecedor", "search_user", _s19_117, "search_tax_rate", _s27_83, "search_task", _s18_184, "search_project", _s19_118, "search_expense", _s19_119, "search_payment", _s21_142, "search_group", _s17_192, "refund_payment", _s20_133, _s17_69, "Nota de Pagamento Cancelada com Sucesso", _s18_53, "Notas de Pagamento Canceladas com Sucesso", _s16_90, "Nota de Pagamento Revertida com Sucesso", _s17_70, "Notas de Pagamento Revertidas com Sucesso", "reverse", "Reverter", "full_name", "Nome completo", _s17_71, "Cidade/Distrito/C. Postal", _s17_73, "C\xf3digo-Postal/Cidade/Distrito", "custom1", _s22_119, "custom2", _s21_143, "custom3", _s22_120, "custom4", _s20_134, "optional", "Opcional", "license", "Licen\xe7a", "purge_data", "Purgar dados", _s16_91, _s35_41, _s18_54, "Aviso: apagar\xe1 todos os seus dados.", "invoice_balance", "Saldo da fatura", "age_group_0", "0 - 30 Dias", "age_group_30", "30 - 60 Dias", "age_group_60", "60 - 90 Dias", "age_group_90", "90 - 120 Dias", "age_group_120", "120+ Dias", "refresh", "Atualizar", "saved_design", "Design guardado com sucesso", "client_details", _s19_120, "company_address", "Endere\xe7o da Empresa", "invoice_details", "Detalhes da nota de pag.", "quote_details", "Detalhes do or\xe7amento", "credit_details", _s19_121, "product_columns", _s18_185, "task_columns", _s18_186, "add_field", "Adicionar campo", "all_events", _s16_318, "permissions", "Permiss\xf5es", "none", "Nenhum", "owned", "Possu\xeddo", "payment_success", _s31_35, "payment_failure", "Falha no Pagamento", "invoice_sent", ":count nota de pag. enviada", "quote_sent", _s17_221, "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Nota de Pagamento Vista", "quote_viewed", "Or\xe7amento Visto", "credit_viewed", "Cr\xe9dito Visto", "quote_approved", "Or\xe7amento Aprovado", _s25_32, _s29_64, _s16_92, "Comprar licen\xe7a", "apply_license", "Aplicar Lince\xe7a", "cancel_account", "Cancelar Conta", _s22_44, "Aviso: Ir\xe1 apagar permanentemente a sua conta.", "delete_company", "Apagar Empresa", _s22_45, "Aviso: Esta a\xe7\xe3o ir\xe1 apagar permanentemente sua empresa, n\xe3o h\xe1 como desfaz\xea-la.", "enabled_modules", "Ativar M\xf3dulos", "converted_quote", _s28_92, "credit_design", _s17_193, "includes", "Inclui", "header", "Cabe\xe7alho", "load_design", "Carregar Design", "css_framework", "CSS Framework", "custom_designs", "Modelos Personalizados", "designs", "Modelos", "new_design", "Novo Modelo", "edit_design", "Editar Modelo", "created_design", "Modelo criado com sucesso", "updated_design", "Modelo atualizado com sucesso", "archived_design", "Model arquivado com sucesso", "deleted_design", "Modelo apagado com sucesso", "removed_design", "Modelo removido com sucesso", "restored_design", "Modelo restaurado com sucesso", _s16_94, ":value Modelos arquivados com sucesso", "deleted_designs", ":value Modelos apagados com sucesso", _s16_95, ":value Modelos restaurados com sucesso", "proposals", "Propostas", "tickets", "Tickets", _s16_96, _s22_121, "recurring_tasks", _s19_122, _s18_55, "Gerir Conta", "credit_date", "Data do Nota de Cr\xe9dito", "credit", "Nota de Cr\xe9dito", "credits", "Nota de Cr\xe9dito", "new_credit", "Introduzir Nota de Cr\xe9dito", "edit_credit", "Editar Nota de Cr\xe9dito", "created_credit", "Nota de Cr\xe9dito criada com sucesso", "updated_credit", "Nota de Cr\xe9dito atualizado com sucesso", "archived_credit", "Nota de Cr\xe9dito arquivada com sucesso", "deleted_credit", "Nota de Cr\xe9dito apagada com sucesso", "removed_credit", _s28_83, "restored_credit", "Nota de Cr\xe9dito restaurado", _s16_98, ":count notas de cr\xe9dito arquivadas com sucesso", "deleted_credits", ":count notas de cr\xe9dito apagadas com sucesso", _s16_99, ":value Cr\xe9ditos restaurados com sucesso", "current_version", "Vers\xe3o Atual", "latest_version", "\xdaltima vers\xe3o", "update_now", "Atualize agora", _s26_19, "Uma nova vers\xe3o da aplica\xe7\xe3o web est\xe1 dispon\xedvel", _s16_100, _s22_122, "app_updated", _s34_33, "learn_more", "Saber mais", "integrations", "Integra\xe7\xf5es", "tracking_id", "Id de acompanhamento", _s17_75, _s20_135, "credit_footer", _s17_194, "credit_terms", _s17_195, "new_company", "Nova Empresa", "added_company", _s30_54, "company1", _s23_87, "company2", _s23_88, "company3", _s23_89, "company4", _s23_90, "product1", "Produto Personalizado 1", "product2", "Produto Personalizado 2", "product3", "Produto Personalizado 3", "product4", "Produto Personalizado 4", "client1", _s23_91, "client2", _s23_92, "client3", _s23_93, "client4", _s23_94, "contact1", _s24_103, "contact2", _s24_104, "contact3", _s24_105, "contact4", _s24_106, "task1", "Tarefa Personalizada 1", "task2", "Tarefa Personalizada 2", "task3", "Tarefa Personalizada 3", "task4", "Tarefa Personalizada 4", "project1", "Projeto Personalizado 1", "project2", "Projeto Personalizado 2", "project3", "Projeto Personalizado 3", "project4", "Projeto Personalizado 4", "expense1", "Despesa Personalizada 1", "expense2", "Despesa Personalizada 2", "expense3", "Despesa Personalizada 3", "expense4", "Despesa Personalizada 4", "vendor1", "Fornecedor Personalizado 1", "vendor2", "Fornecedor Personalizado 2", "vendor3", "Fornecedor Personalizado 3", "vendor4", "Fornecedor Personalizado 4", "invoice1", "Nota de Pagamento Personalizada 1", "invoice2", "Nota de Pagamento Personalizada 2", "invoice3", "Nota de Pagamento Personalizada 3", "invoice4", "Nota de Pagamento Personalizada 4", "payment1", "Pagamento Personalizado 1", "payment2", "Pagamento Personalizado 2", "payment3", "Pagamento Personalizado 3", "payment4", "Pagamento Personalizado 4", "surcharge1", _s25_83, "surcharge2", _s25_84, "surcharge3", _s25_85, "surcharge4", _s25_86, "group1", _s21_153, "group2", _s21_154, "group3", _s21_155, "group4", _s21_156, "reset", "Redefinir", "number", "N\xfamero", "export", "Exportar", "chart", "Gr\xe1fico", "count", "Contagem", "totals", "Totais", "blank", "Vazio", "day", "Dia", "month", "M\xeas", "year", "Ano", "subgroup", "Subgrupo", "is_active", "Ativo", "group_by", "Agrupado por", "credit_balance", "Balan\xe7o do Nota de Cr\xe9dito", _s18_61, "\xdaltimo Login do Contacto", _s17_77, "Nome Completo do Contacto", "contact_phone", "Contato telef\xf3nico", _s21_53, "Valor personalizado do contacto 1", _s21_54, "Valor personalizado do contacto 2", _s21_55, "Valor personalizado do contacto 3", _s21_56, "Valor personalizado do contacto 4", _s17_79, _s16_345, _s17_80, "Andar / Fra\xe7\xe3o de Envio", "shipping_city", "Cidade de Envio", "shipping_state", "Distrito / Regi\xe3o de Envio", _s20_55, "C\xf3digo postal de Envio", _s16_130, "Pa\xeds de Envio", _s16_132, _s16_345, _s16_133, "Andar / Fra\xe7\xe3o de Fatura\xe7\xe3o", "billing_city", "Cidade de Fatura\xe7\xe3o", "billing_state", "Distrito / Regi\xe3o de Fatura\xe7\xe3o", _s19_36, "C\xf3digo postal de Fatura\xe7\xe3o", "billing_country", "Pa\xeds de Fatura\xe7\xe3o", "client_id", "Client Id", "assigned_to", "Atribu\xeddo para", "created_by", "Criado por :nome", "assigned_to_id", "Atribu\xeddo ao ID", "created_by_id", "Criado pelo ID", "add_column", _s16_319, "edit_columns", "Editar Colunas", "columns", "Colunas", "aging", "Vencidas", "profit_and_loss", "Lucro e preju\xedzo", "reports", "Relat\xf3rios", "report", "Relat\xf3rio", "add_company", _s17_196, "unpaid_invoice", "Nota de Pagamento n\xe3o Paga", "paid_invoice", "Nota de Pagamento Paga", _s16_134, _s22_123, "help", "Ajuda", "refund", "Reembolsar", "refund_date", _s17_197, "filtered_by", "Filtrado por", "contact_email", "Email", "multiselect", _s16_320, "entity_state", "Estado", "verify_password", "Verificar Palavra-passe", "applied", "Aplicado", _s21_57, "Incluir erros recentes dos registos", _s30_8, _s58_3, "message", "Mensagem", "from", "De", _s20_57, _s27_84, _s25_34, "Incluir a descri\xe7\xe3o e o custo na lista suspensa do produto", _s20_59, _s48_6, _s18_64, "Ajustar Percentagem da Multa", _s23_23, "Ajustar a percentagem da taxa a contabilizar", _s18_66, _s20_136, "support_forum", _s16_321, "about", "Sobre", "documentation", "Documenta\xe7\xe3o", "contact_us", "Contacte-nos", "subtotal", "Subtotal", "line_total", "Total", "item", "Item", "credit_email", _s17_198, "iframe_url", "Website", "domain_url", "URL do Dom\xednio", _s21_58, "A palavra-passe \xe9 muito curta", _s20_60, "A palavra-passe deve conter um caractere mai\xfasculo e um n\xfamero", _s19_38, _s28_84, _s23_24, _s27_85, _s20_61, "Por favor introduza um valor", "deleted_logo", "Log\xf3tipo removido com sucesso", "yes", "Sim", "no", "N\xe3o", "generate_number", "Gerar N\xfamero", "when_saved", "Quando Guardado", "when_sent", "Quando Enviado", "select_company", _s18_187, "float", "Flutuante", "collapse", "Fechar", "show_or_hide", "Exibir/esconder", "menu_sidebar", _s21_144, "history_sidebar", _s26_74, "tablet", "Tablet", "mobile", "M\xf3vel", "desktop", "Desktop", "layout", "Layout", "view", "Visualizar", "module", "M\xf3dulo", "first_custom", _s22_119, "second_custom", _s21_143, "third_custom", _s22_120, "show_cost", "Mostrar Custo", _s17_82, "Mostrar Custo do Produto", "show_cost_help", "Exibir um campo de custo do produto para acompanhar a marca\xe7\xe3o/lucro", _s21_59, _s29_65, _s26_21, _s72_1, _s21_61, _s28_85, _s26_22, _s77_2, _s21_63, "Mostrar Desconto do Produto", _s26_23, _s34_14, _s16_136, _s17_199, _s21_65, _s60_0, "one_tax_rate", _s19_123, "two_tax_rates", _s22_124, "three_tax_rates", _s22_125, _s16_138, "Imposto Padr\xe3o", "user", "Utilizador", "invoice_tax", _s17_200, "line_item_tax", _s24_95, "inclusive_taxes", _s17_201, _s17_84, _s27_86, "item_tax_rates", _s25_87, _s18_68, _s30_62, "configure_rates", _s18_188, _s18_69, "Configurar Terminais", "tax_settings", "Defini\xe7\xf5es de Impostos", _s18_71, "Impostos", "accent_color", "Cor de destaque", "switch", "Alterar", _s19_40, _s27_87, "options", "Op\xe7\xf5es", _s16_140, _s20_137, "multi_line_text", _s16_322, "dropdown", "Dropdown", "field_type", "Tipo de Campo", _s27_35, "Foi enviado um e-mail de recupera\xe7\xe3o da palavra-passe", "submit", "Submeter", _s16_142, "Recuperar palavra-passe", "late_fees", "Taxas atrasadas", "credit_number", "Nota de r\xe9dito n\xfamero", "payment_number", "N\xfamero do Pagamento", "late_fee_amount", _s16_323, _s16_143, _s20_146, "schedule", "Agendamento", "before_due_date", "At\xe9 \xe0 data de vencimento", "after_due_date", _s28_86, _s18_73, "Depois da data da fatura", "days", "Dias", "invoice_email", "E-mail para Nota de Pagamento", "payment_email", "E-mail para Pagamentos", "partial_payment", _s17_202, "payment_partial", "Pagamento Parcial", _s21_66, "E-mail de pagamento parcial", "quote_email", "E-mail para Or\xe7amentos", _s16_145, _s17_189, _s16_147, "Filtrado pelo Utilizador", "administrator", "Administrador", _s18_74, "Permite ao utilizador gerir utilizadores, alterar defini\xe7\xf5es e modificar registos.", "user_management", "Gerir utilizadores", "users", "Utilizadores", "new_user", "Novo Utilizador", "edit_user", "Editar Utilizador", "created_user", "Utilizador criado com sucesso", "updated_user", "Utilizador atualizado com sucesso", "archived_user", "Utilizador arquivado", "deleted_user", "Utilizador apagado", "removed_user", "Utilizador removido com sucesso", "restored_user", "Utilizador restaurado", "archived_users", ":value Cr\xe9ditos arquivados com sucesso", "deleted_users", ":value Utilizadores arquivados com sucesso", "removed_users", ":value Utilizadores removidos com sucesso", "restored_users", ":value Utilizadores restaurados com sucesso", _s16_149, "Defini\xe7\xf5es Gerais", "invoice_options", "Op\xe7\xf5es da Nota de Pagamento", _s17_86, "Ocultar data de pagamento", _s22_52, 'Apenas mostrar a "Data de Pagamento" quanto o pagamento tiver sido efetuado.', _s23_26, "Documentos Embutidos", _s28_20, "Incluir imagens anexadas na nota de pagamento.", _s16_151, "Mostrar cabe\xe7alho ativo", _s16_152, "Mostrar rodap\xe9 ativo", "first_page", "primeira p\xe1gina", "all_pages", "todas as p\xe1ginas", "last_page", "\xfaltima p\xe1gina", "primary_font", "Fonte Prim\xe1ria", "secondary_font", _s16_324, "primary_color", "Cor Principal", "secondary_color", "Cor Secund\xe1ria", "page_size", _s17_203, "font_size", "Tamanho do Texto", "quote_design", _s19_124, "invoice_fields", "Campos da Nota de Pagamento", "product_fields", "Campos do produto", "invoice_terms", "Condi\xe7\xf5es da Nota de Pagamento", "invoice_footer", "Rodap\xe9 da Nota de Pagamento", "quote_terms", _s22_126, "quote_footer", _s19_125, _s18_75, _s16_325, _s23_27, _s74_, _s18_76, _s24_96, _s23_28, _s61_5, _s18_77, "Auto Convers\xe3o", _s23_29, _s72_2, _s17_88, _s34_34, "freq_daily", "Di\xe1rio", "freq_weekly", "Semanal", "freq_two_weeks", "2 semanas", "freq_four_weeks", "4 semanas", "freq_monthly", "Mensal", "freq_two_months", "Dois meses", _s17_90, "Trimestral", _s16_153, "Quatro Meses", "freq_six_months", "Semestral", "freq_annually", "Anual", "freq_two_years", "Dois Anos", _s16_154, "Tr\xeas Anos", "never", "Nunca", "company", "Empresa", _s17_91, "N\xfameros gerados", "charge_taxes", "Impostos", "next_reset", "Pr\xf3xima redefini\xe7\xe3o", "reset_counter", "Redefinir contador", _s16_155, _s22_127, "number_padding", _s23_80, "general", "Geral", "surcharge_field", _s18_190, "company_field", _s16_326, "company_value", _s16_327, "credit_field", _s16_328, "invoice_field", "Campo da Nota de Pagamento", _s17_93, _s19_126, "client_field", _s16_329, "product_field", _s16_330, "payment_field", _s18_191, "contact_field", "Campo do Contacto", "vendor_field", _s19_127, "expense_field", _s16_331, "project_field", _s16_332, "task_field", "Campo da Tarefa", "group_field", "Campo de Grupo", "number_counter", _s17_204, "prefix", "Prefixo", "number_pattern", _s19_128, "messages", "Mensagens", "custom_css", _s17_205, _s17_95, _s24_97, _s16_157, "Mostrar no PDF", _s21_68, "Mostrar a assinatura do cliente no PDF da nota de pagamento/or\xe7amento.", _s25_40, "Checkbox para Termos da Nota de Pagamento", _s30_9, "Requer que o cliente confirme que aceita os termos da nota de pagamento.", _s23_30, "Checkbox para Termos do Or\xe7amento", _s28_21, "Requer que o cliente confirme que aceita os termos do or\xe7amento.", _s25_41, "Assinatura da Nota de Pagamento", _s30_10, "Requer que o cliente introduza a sua assinatura.", _s23_31, _s23_81, _s22_54, "Proteger notas de pag. com palavra-passe", _s27_36, "Permite definir uma palavra-passe para cada contacto. Se uma palavra-passe for definida, o contacto dever\xe1 introduzir a palavra-passe antes de visualizar a nota de pagamento.", "authorization", "Autoriza\xe7\xe3o", "subdomain", "Subdom\xednio", "domain", "Dom\xednio", "portal_mode", "Modo Portal", "email_signature", "Cumprimentos,", _s24_38, "Tornar mais f\xe1cil para os seus clientes efetuarem os pagamentos, acrescentando marca\xe7\xe3o schema.org a seus e-mails.", "plain", "Plano", "light", "Claro", "dark", "Escuro", "email_design", "Template de E-mail", "attach_pdf", "Anexar PDF", _s16_158, _s17_206, "attach_ubl", "Anexar UBL", "email_style", "Estilo de e-mails", _s19_42, "Ativar Marca\xe7\xe3o", "reply_to_email", "Email de resposta", "reply_to_name", "Responder para nome", "bcc_email", "Email BCC", "processed", "Processado", "credit_card", _s17_207, "bank_transfer", _s22_128, "priority", "Prioridade", "fee_amount", "Valor da Multa", "fee_percent", _s20_146, "fee_cap", "Taxa m\xe1xima", "limits_and_fees", "Limites/Multas", "enable_min", "Ativar min", "enable_max", "Ativar max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Log\xf3tipos de Cart\xf5es Aceites", "credentials", "Credenciais", "update_address", "Atualizar Morada", _s19_45, "Atualizar morada do cliente", "rate", "Valor", "tax_rate", "Imposto", "new_tax_rate", "Novo Imposto", "edit_tax_rate", "Editar Imposto", _s16_160, "Imposto Adicionado", _s16_161, "Imposto Atualizado", _s17_98, "Imposto Arquivado", _s16_162, _s36_42, _s17_99, _s38_31, _s18_78, ":value Taxas de Impostos arquivados com sucesso", _s17_100, ":value Taxas de Impostos apagados com sucesso", _s18_79, ":value Taxas de Impostos restaurados com sucesso", "fill_products", "Preencher automaticamente produtos", _s18_80, "Ao selecionar o produto descri\xe7\xe3o e pre\xe7o ser\xe3o preenchidos automaticamente", "update_products", _s35_42, _s20_65, "Ao atualizar a nota de pagamento o produto tamb\xe9m ser\xe1 atualizado", _s16_163, _s18_192, _s21_69, _s68_, "fees", "Taxas", "limits", "Limites", "provider", "Fornecedor", "company_gateway", "Terminal de Pagamento", _s16_165, "Terminais de Pagamento", _s19_46, "Novo Terminal", _s20_66, "Editar Terminal", _s23_32, "Terminal Criado com Sucesso", _s23_33, "Terminal Atualizado com Sucesso", _s24_39, "Gateway Arquivado com Sucesso", _s23_34, "Terminal Apagado com Sucesso", _s24_40, "Terminal Restaurado com Sucesso", _s25_43, ":value Terminais arquivados com sucesso", _s24_41, ":value Terminais apagados com sucesso", _s25_44, ":value Terminais restaurados com sucesso", _s16_167, "Continuar a Editar", "discard_changes", _s18_193, "default_value", "Valor padr\xe3o", "disabled", "Desativado", "currency_format", _s16_333, _s21_70, "Primeiro Dia da Semana", _s23_35, _s19_129, "sunday", "Domingo", "monday", "Segunda-Feira", "tuesday", "Ter\xe7a-Feira", "wednesday", "Quarta-Feira", "thursday", "Quinta-Feira", "friday", "Sexta-Feira", "saturday", "S\xe1bado", "january", "Janeiro", "february", "Fevereiro", "march", "Mar\xe7o", "april", "Abril", "may", "Maio", "june", "Junho", "july", "Julho", "august", "Agosto", "september", "Setembro", "october", "Outubro", "november", "Novembro", "december", "Dezembro", "symbol", "S\xedmbolo", "ocde", "C\xf3digo", "date_format", "Formato da Data", "datetime_format", _s20_138, "military_time", "24h", _s18_81, _s19_130, "send_reminders", _s16_334, "timezone", "Fuso Hor\xe1rio", _s19_47, _s20_139, _s17_101, _s18_194, _s19_49, _s19_131, _s18_82, _s20_140, _s18_84, _s21_145, "group_settings", _s23_82, "group", "Grupo", "groups", "Grupos", "new_group", "Novo Grupo", "edit_group", "Editar Grupo", "created_group", _s24_98, "updated_group", _s28_87, "archived_groups", ":value Grupos arquivados com sucesso", "deleted_groups", ":value Grupos apagados com sucesso", "restored_groups", ":value Grupos restaurados com sucesso", "archived_group", _s27_88, "deleted_group", _s26_75, "restored_group", _s28_88, "upload_logo", "Carregar Log\xf3tipo", "uploaded_logo", "Log\xf3tipo carregado com sucesso", "logo", "Logo", "saved_settings", "Configura\xe7\xf5es guardadas com sucesso", _s16_169, "Defini\xe7\xf5es de Produtos", "device_settings", _s28_89, "defaults", "Padr\xf5es", "basic_settings", "Defini\xe7\xf5es B\xe1sicas", _s17_103, "Defini\xe7\xf5es Avan\xe7adas", "company_details", _s19_132, "user_details", "Detalhes do Utilizador", "localization", "Localiza\xe7\xe3o", "online_payments", _s17_208, "tax_rates", "Impostos", "notifications", "Notifica\xe7\xf5es", "import_export", _s17_222, "custom_fields", _s21_146, "invoice_design", "Design das Notas de Pagamento", "buy_now_buttons", "Bot\xf5es Comprar Agora", "email_settings", "Defini\xe7\xf5es de E-mail", _s23_37, "Modelos & Lembretes", _s22_55, "Contas Banc\xe1rias", _s19_51, _s21_147, "price", "Pre\xe7o", "email_sign_up", "Registo com Email", "google_sign_up", "Registo via Google", _s27_40, "Obrigado pela sua compra!", "redeem", "Resgatar", "back", "Voltar", "past_purchases", _s16_335, _s19_53, _s16_336, "pro_plan", "Plano Profissional", "enterprise_plan", _s17_209, "count_users", ":count utilizadores", "upgrade", "Atualizar", _s25_45, "Por favor introduza o primeiro nome", _s24_42, "Por favor introduza o apelido", _s33_21, _s86_0, "i_agree_to_the", "Aceito os", _s16_171, _s20_141, "privacy_policy", _s23_83, "sign_up", "Registar", "account_login", "Iniciar sess\xe3o", "view_website", "Ver o Website", "create_account", "Criar Conta", "email_login", "E-mail de Login", "create_new", "Criar Nova", _s18_86, "Nenhum registo selecionado", _s21_73, "Por favor, guarde ou cancele suas altera\xe7\xf5es", "download", "Transferir", _s27_41, "Necessita de um plano empresarial", "take_picture", "Tirar Fotografia", "upload_file", "Enviar Arquivo", "document", "Documento", "documents", "Documentos", "new_document", "Novo Documento", "edit_document", _s16_337, _s17_105, _s29_66, _s16_173, _s32_27, _s17_106, _s31_36, _s16_174, _s29_67, _s17_107, _s32_28, _s18_88, ":value Documentos arquivados com sucesso", _s17_108, ":value Documentos apagados com sucesso", _s18_89, ":value Documentos restaurados com sucesso", "no_history", "Sem Hist\xf3rico", "expense_date", "Data da Despesa", "pending", "Pendente", _s16_175, "Em aberto", _s16_176, "Pendente", _s16_177, "Faturado", "converted", "Convertido", _s24_44, "Adicionar documento \xe0 nota de pag.", "exchange_rate", "Taxa de C\xe2mbio", _s16_178, "Converter moeda", "mark_paid", _s16_338, "category", "Categoria", "address", "Morada", "new_vendor", "Novo Fornecedor", "created_vendor", _s29_68, "updated_vendor", _s33_35, "archived_vendor", _s32_29, "deleted_vendor", "Fornecedor removido com sucesso", "restored_vendor", "Fornecedor restarurado com sucesso", _s16_179, _s42_23, "deleted_vendors", ":count fornecedores removidos com sucesso", _s16_180, ":value Fornecedores Restaurados com Sucesso", "new_expense", "Introduzir Despesa", "created_expense", _s26_76, "updated_expense", _s30_55, _s16_181, _s29_69, "deleted_expense", _s28_90, _s16_182, _s30_56, _s17_109, _s31_37, _s16_183, _s30_57, _s17_110, ":value Despesas restauradas com sucesso", "copy_shipping", "Copiar Envio", "copy_billing", "Copiar Cobran\xe7a", "design", "Modelo", _s21_74, "Falha ao procurar registo", "invoiced", "Faturado", "logged", "Em aberto", "running", "Em execu\xe7\xe3o", "resume", "Retomar", "task_errors", "Corrija os tempos sobrepostos", "start", "Iniciar", "stop", "Parar", "started_task", _s27_89, "stopped_task", "Tarefa interrompida", "resumed_task", _s29_70, "now", "Agora", _s16_184, _s31_38, "timer", "Temporizador", "manual", "Manual", "budgeted", "Or\xe7ado", "start_time", "In\xedcio", "end_time", "Final", "date", "Data", "times", "Tempo", "duration", "Dura\xe7\xe3o", "new_task", "Nova Tarefa", "created_task", "Tarefa criada", "updated_task", "Tarefa atualizada", "archived_task", "Tarefa arquivada", "deleted_task", "Tarefa apagada", "restored_task", "Tarefa restaurada", "archived_tasks", ":count Tarefas arquivadas", "deleted_tasks", ":count Tarefas apagadas", "restored_tasks", ":value Tarefas restauradas com sucesso", _s19_55, "Por favor introduza um nome", "budgeted_hours", "Horas Or\xe7adas", "created_project", _s26_77, "updated_project", _s30_58, _s16_186, _s29_71, "deleted_project", _s27_93, _s16_187, _s30_59, _s17_111, _s38_32, _s16_188, ":count projectos apagadas com sucesso", _s17_112, ":value Projetos restaurados com sucesso", "new_project", "Novo Projeto", _s27_45, "Obrigado por utilizar a nosso aplica\xe7\xe3o!", "if_you_like_it", "Se gostou por favor", "click_here", "clique aqui", _s18_90, "Clique aqui", "to_rate_it", "d\xea uma avalia\xe7\xe3o.", "average", "M\xe9dia", "unapproved", "N\xe3o Aprovado", _s30_15, _s56_3, "locked", "Bloqueado", "authenticate", "Autenticar", _s19_57, _s23_84, _s24_46, _s23_85, "footer", "Rodap\xe9", "compare", "Comparar", "hosted_login", "Login Hospedado", "selfhost_login", _s20_142, "google_sign_in", "Iniciar sess\xe3o atrav\xe9s da Google", "today", "Hoje", "custom_range", "Intervalo Personalizado", "date_range", "Interevalo de Datas", "current", "Atual", "previous", "Anterior", "current_period", "Per\xedodo Atual", _s17_113, _s21_148, "previous_period", _s16_339, "previous_year", "Ano Anterior", "compare_to", "Comparar com", "last7_days", "\xdaltimos 7 dias", "last_week", "\xdaltima Semana", "last30_days", "\xdaltimos 30 dias", "this_month", "Este M\xeas", "last_month", "\xdaltimo M\xeas", "this_year", "Este ano", "last_year", "\xdaltimo Ano", "custom", "Personalizado", _s16_189, "Duplicar para Nota de Pagamento", "clone_to_quote", "Duplicar para Or\xe7amento", "clone_to_credit", "Duplicar para cr\xe9dito", "view_invoice", "Visualizar Nota de Pagamento", "convert", "Converter", "more", "Mais", "edit_client", "Editar Cliente", "edit_product", "Editar Produto", "edit_invoice", "Editar Nota de Pagamento", "edit_quote", _s16_340, "edit_payment", _s16_341, "edit_task", "Editar Tarefa", "edit_expense", "Editar Despesa", "edit_vendor", _s17_210, "edit_project", "Editar Projeto", _s20_68, _s27_90, "billing_address", "Morada de fatura\xe7\xe3o", _s16_191, _s17_211, "total_revenue", "Total faturado", "average_invoice", "M\xe9dia por Nota de Pagamento", "outstanding", "Em Aberto", "invoices_sent", ":count notas de pag. enviadas", "active_clients", "Clientes ativos", "close", "Fechar", "email", "E-mail", "password", "Palavra-passe", "url", "URL", "secret", "Secret", "name", "Nome", "logout", "Sair", "login", "Iniciar sess\xe3o", "filter", "Filtrar", "sort", "Ordenar", "search", "Pesquisa", "active", "Ativo", "archived", "Arquivado", "deleted", "Apagado", "dashboard", "Painel", "archive", "Arquivar", "delete", "Apagar", "restore", "Restaurar", _s16_193, "Recarregar Completo", _s23_38, "Por favor introduza o seu E-mail", _s26_32, "Por favor introduza a sua palavra-passe", _s21_77, "Por favor introduza o seu URL", _s26_34, "Por favor introduza uma chave de produto", "ascending", "Ascendente", "descending", "Descendente", "save", "Guardar", _s17_115, "Ocorreu um erro", "paid_to_date", "Pago at\xe9 \xe0 data", "balance_due", "Valor", "balance", "Saldo", "overview", "Resumo", "details", "Detalhes", "phone", "Telefone", "website", "Website", "vat_number", "NIF", "id_number", "N\xfamero de Identifica\xe7\xe3o", "create", "Criar", _s19_59, _s43_6, "error", "Erro", _s16_195, _s24_99, "contacts", "Contactos", "additional", "Adicional", "first_name", "Primeiro Nome", "last_name", "Apelido", "add_contact", "Adicionar contacto", "are_you_sure", "Tem a certeza?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remover", _s16_197, _s16_342, "product", "Produto", "products", "Produtos", "new_product", "Novo Produto", "created_product", "Produto criado", "updated_product", "Produto atualizado", _s16_199, "Produto arquivado", "deleted_product", "Producto apagado com sucesso", _s16_200, _s30_60, _s17_117, ":count Produtos arquivados com sucesso", _s16_201, ":count produtos apagados com sucesso", _s17_118, ":value Produtos restaurados com sucesso", "product_key", "Produto", "notes", "Observa\xe7\xf5es", "cost", "Custo", "client", "Cliente", "clients", "Clientes", "new_client", "Novo Cliente", "created_client", _s26_78, "updated_client", _s30_61, "archived_client", _s29_72, _s16_202, _s38_33, "deleted_client", "Clientes removidos com sucesso", "deleted_clients", ":count clientes removidos com sucesso", "restored_client", "Cliente restaurado", _s16_203, ":value Clientes restaurados com sucesso", "address1", "Rua", "address2", "Complemento", "city", "Cidade", "state", "Distrito/Prov\xedncia", "postal_code", "C\xf3digo Postal", "country", "Pa\xeds", "invoice", "Nota Pagamento", "invoices", "Notas Pag.", "new_invoice", "Nova Nota de Pagamento", "created_invoice", "Nota de pagamento criada com sucesso", "updated_invoice", "Nota de pagamento atualizada com sucesso", _s16_204, "Nota de pagamento arquivada com sucesso", "deleted_invoice", "Notas de Pagamento apagadas com sucesso", _s16_205, "Nota de pagamento restaurada com sucesso", _s17_119, ":count notas de pagamento arquivadas com sucesso", _s16_206, ":count notas de pagamento apagadas com sucesso", _s17_120, ":value Notas de Pagamento restaurados com sucesso", "emailed_invoice", "Nota de pagamento enviada por e-mail com sucesso", "emailed_payment", _s39_14, "amount", "Valor", "invoice_number", "N\xfamero NP", "invoice_date", "Data da NP", "discount", "Desconto", "po_number", "N\xfam. Ordem de Servi\xe7o", "terms", "Condi\xe7\xf5es", "public_notes", "Notas P\xfablicas", "private_notes", "Notas Privadas", "frequency", "Frequ\xeancia", "start_date", "Data Inicial", "end_date", "Data Final", "quote_number", _s19_133, "quote_date", _s17_212, "valid_until", "V\xe1lido at\xe9", "items", "Itens", "partial_deposit", _s16_346, "description", "Descri\xe7\xe3o", "unit_cost", "Pre\xe7o Unit\xe1rio", "quantity", "Quantidade", "add_item", "Adicionar Item", "contact", "Contacto", "work_phone", "Telefone", "total_amount", "Quantia Total", "pdf", "PDF", "due_date", _s18_195, _s16_207, _s26_79, "status", "Estado", _s17_121, "Estado da Nota de Pagamento", "quote_status", "Estado do Or\xe7amento", _s22_56, _s31_39, _s22_58, _s29_73, "count_selected", _s19_134, "total", "Total", "percent", "Percentagem", "edit", "Editar", "dismiss", "Dispensar", _s20_70, "Por favor selecione uma data", _s22_59, _s30_62, _s24_48, "Por favor escolha uma nota de pagamento", "task_rate", "Taxa de Tarefas", "settings", "Defini\xe7\xf5es", "language", "Idioma", "currency", "Moeda", "created_at", "Data de Cria\xe7\xe3o", "created_on", "Criado em", "updated_at", "Atualizado", "tax", "Imposto", _s30_17, "Por favor digite um n\xfamero de nota de pagamento", _s27_49, _s39_15, "past_due", "Vencido", "draft", "Rascunho", "sent", "Enviado", "viewed", "Visto", "approved", "Aprovado", "partial", _s16_346, "paid", "Pago", "mark_sent", _s19_135, _s22_61, "Sucesso! A nota de pagamento foi marcada como enviada.", _s22_62, "Excelente! A nota de pagamento foi marcada como enviada.", _s23_40, _s61_6, _s23_41, _s61_6, "done", "Conclu\xeddo", _s37_18, "Por favor introduza um cliente ou nome de contacto", "dark_mode", "Modo Escuro", _s27_51, "Reinicie a aplica\xe7\xe3o para aplicar a mudan\xe7a", "refresh_data", "Atualizar Dados", "blank_contact", "Contato Vazio", "activity", "Atividade", _s16_209, "Nenhum registo encontrado", "clone", "Duplicar", "loading", "A Carregar", "industry", "Ind\xfastria", "size", "Tamanho", "payment_terms", "Condi\xe7\xf5es de Pagamento", "payment_date", _s17_213, "payment_status", "Estado do Pagamento", _s16_211, "Pendente", _s16_212, "Anulado", _s16_213, "Falhou", _s16_214, "Completo", _s16_215, _s24_94, _s16_216, "Reembolsado", _s17_122, "N\xe3o Aplicado", _s17_123, _s25_92, "net", "Net", "client_portal", _s17_214, "show_tasks", "Exibir tarefas", "email_reminders", "Lembretes de E-mail", "enabled", "Ativo", "recipients", "Destinat\xe1rios", "initial_email", "Email inicial", "first_reminder", _s17_215, "second_reminder", _s16_344, "third_reminder", _s17_216, "reminder1", _s17_215, "reminder2", _s16_344, "reminder3", _s17_216, "template", "Template", "send", "Enviar", "subject", "Assunto", "body", "Conte\xfado", "send_email", "Enviar email", "email_receipt", "E-mail para envio do recibo de pagamento", "auto_billing", _s19_136, "button", "Bot\xe3o", "preview", "Pr\xe9-visualizar", "customize", "Personalizar", "history", "Hist\xf3rico", "payment", "Pagamento", "payments", "Pagamentos", "refunded", "Reembolsado", "payment_type", _s17_185, _s21_79, _s23_86, "enter_payment", "Introduzir Pag.", "new_payment", "Introduzir Pagamento", "created_payment", _s28_91, "updated_payment", _s32_30, _s16_217, _s31_40, "deleted_payment", "Pagamento apagado com sucesso", _s16_218, "Pagamento restaurado", _s17_124, _s40_11, _s16_219, ":count pagamentos apagados com sucesso", _s17_125, ":value Pagamentos restaurados com sucesso", "quote", "Or\xe7amento", "quotes", "Or\xe7amentos", "new_quote", "Novo Or\xe7amento", "created_quote", "Or\xe7amento criado", "updated_quote", "Or\xe7amento atualizado", "archived_quote", "Or\xe7amento arquivado", "deleted_quote", "Or\xe7amento apagado com sucesso", "restored_quote", "Or\xe7amento restaurado", "archived_quotes", _s40_12, "deleted_quotes", ":count or\xe7amentos apagados com sucesso", "restored_quotes", ":value Or\xe7amentos restaurados com sucesso", "expense", "Despesa", "expenses", "Despesas", "vendor", "Fornecedor", "vendors", "Fornecedor", "task", "Tarefa", "tasks", "Tarefas", "project", "Projeto", "projects", "Projetos", "activity_1", _s29_74, "activity_2", _s32_31, "activity_3", ":user removeu o cliente :client", "activity_4", ":user criou a nota de pagamento :invoice", "activity_5", ":user atualizou a nota de pagamento :invoice", "activity_6", ":user enviou nota de pagamento :invoice para :client, :contact", "activity_7", ":contact viu a nota de pagamento :invoice para :client", "activity_8", ":user arquivou a nota de pagamento :invoice", "activity_9", ":user removeu a nota de pagamento :invoice", "activity_10", ":contact introduziu pagamento :payment para :payment_amount na nota de pagamento :invoice para :cliente", "activity_11", _s36_43, "activity_12", _s35_43, "activity_13", ":user removeu o pagamento :payment", "activity_14", ":user adicionou nota de cr\xe9dito :credit", "activity_15", ":user atualizou nota de cr\xe9dito :credit", "activity_16", ":user arquivou nota de cr\xe9dito :credit", "activity_17", ":user removeu nota de cr\xe9dito :credit", "activity_18", ":user adicionou o or\xe7amento :quote", "activity_19", ":user atualizou o or\xe7amento :quote", "activity_20", ":user enviou or\xe7amento :quote por E-mail para :client, :contact", "activity_21", _s38_34, "activity_22", _s33_36, "activity_23", ":user removeu o or\xe7amento :quote", "activity_24", _s34_35, "activity_25", ":user restaurou a nota de pagamento :invoice", "activity_26", _s33_37, "activity_27", _s36_44, "activity_28", ":user restaurou a nota de cr\xe9dito :credit", "activity_29", ":contact aprovou o or\xe7amento :quote para :cliente", "activity_30", _s32_32, "activity_31", _s35_44, "activity_32", ":user apagou o fornecedor :vendor", "activity_33", _s36_45, "activity_34", _s30_63, "activity_35", _s33_38, "activity_36", ":user apagou a despesa :expense", "activity_37", _s34_36, "activity_39", _s58_4, "activity_40", _s72_3, "activity_41", "pagamento (:payment) de :payment_amount falhou", "activity_42", _s26_80, "activity_43", _s30_64, "activity_44", _s29_75, "activity_45", ":user apagou a tarefa :task", "activity_46", _s30_65, "activity_47", _s34_37, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s30_66, "activity_55", ":contact respondeu ao ticket :ticket", "activity_56", _s33_39, "activity_57", "O sistema falhou ao enviar a nota de pagamento :invoice", "activity_58", ":invoice revertida pelo utilizador: user", "activity_59", ":invoice cancelada pelo utilizador :user", "activity_60", ":contact viu o or\xe7amento :quota", "activity_61", ":user atualizou o cliente :client", "activity_62", ":user atualizou fornecedor :vendor", "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", ":user criou a subscri\xe7\xe3o :subscription", "activity_81", ":user atualizou a subscri\xe7\xe3o :subscription", "activity_82", ":user arquivou a subscri\xe7\xe3o :subscription", "activity_83", ":user apagou a subscri\xe7\xe3o :subscription", "activity_84", ":user restaurou a subscri\xe7\xe3o :subscription", _s17_126, "Palavra-passe descart\xe1vel", "emailed_quote", _s17_221, "emailed_credit", _s27_91, _s20_72, _s42_24, _s21_81, _s40_13, "expired", "Expirada", "all", "Todos", "select", "Selecionar", _s22_63, _s33_40, "custom_value1", _s19_142, "custom_value2", _s19_142, "custom_value3", _s21_149, "custom_value4", _s21_150, _s18_91, _s30_67, _s24_53, _s32_33, _s29_36, "Mensagem Personalizada de Nota de Pagamento Atrasada", _s27_56, "Mensagem Personalizada de Nota de Pagamento Paga", _s31_18, _s48_7, "lock_invoices", "Bloquear Notas de Pagamento", "translations", "Tradu\xe7\xf5es", _s19_60, _s29_76, _s19_62, _s28_93, _s22_65, _s30_68, _s22_67, _s29_77, _s21_82, "Padr\xe3o N\xfamero Fornecedor", _s21_84, "Contador N\xfamero Fornecedor", _s21_86, _s29_78, _s21_88, _s28_94, _s22_69, _s32_34, _s22_71, _s31_41, _s22_73, _s29_79, _s22_75, "Numera\xe7\xe3o das", _s20_73, _s32_35, _s20_75, "Numera\xe7\xe3o dos Or\xe7amentos", _s21_90, _s30_69, _s21_92, _s29_80, _s21_94, _s30_69, _s21_95, _s29_80, _s18_93, _s26_81, "counter_padding", _s18_196, _s28_56, _s43_7, _s18_95, _s20_143, _s18_97, _s24_100, _s18_99, _s20_144, _s18_101, _s24_101, _s18_103, _s20_145, _s18_105, _s24_102, _s21_96, _s27_92, _s19_64, _s30_70, _s21_98, _s30_71, _s29_38, _s38_35, "show_table", "Mostrar Tabelas", "show_list", "Mostrar Lista", "client_city", _s17_217, "client_state", "Distrito do Cliente", "client_country", "Pa\xeds do Cliente", _s16_220, "Cliente Ativo", "client_balance", "Saldo do Cliente", "client_address1", _s19_138, "client_address2", _s25_93, "vendor_address1", "Morada Fornecedor", "vendor_address2", "Andar / Fra\xe7\xe3o Fornecedor", _s24_55, _s19_139, _s24_56, _s25_93, "type", "Tipo", "invoice_amount", "Total da Nota de Pagamento", _s16_224, _s18_174, "tax_rate1", _s17_218, "tax_rate2", _s17_219, "tax_rate3", _s17_220, "auto_bill", _s19_140, "archived_at", "Arquivado em", "has_expenses", "Tem despesas", "custom_taxes1", _s25_88, "custom_taxes2", _s25_89, "custom_taxes3", _s25_90, "custom_taxes4", _s25_91, _s17_128, _s25_83, _s17_129, _s25_84, _s17_130, _s25_85, _s17_131, _s25_86, "is_deleted", "Apagado", "vendor_city", "Cidade Fornecedor", "vendor_state", "Distrito Fornecedor", "vendor_country", "Pa\xeds Fornecedor", "is_approved", "Est\xe1 aprovado", "tax_name", "Nome do Imposto", "tax_amount", _s19_141, "tax_paid", "Impostos pagos", "payment_amount", "Valor do Pagamento", "age", "Idade", "is_running", "Em execu\xe7\xe3o", "time_log", "Registo de Tempo", "bank_id", "Banco", _s19_66, "ID da Categoria de Despesa", _s16_225, "Categoria de Despesas", _s19_68, "ID da Moeda da Nota de Pagamento", "tax_name1", "Imposto 1", "tax_name2", "Imposto 2", "tax_name3", "Imposto 3", "transaction_id", "ID de transa\xe7\xe3o", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "ro", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Curent", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Adaug\u0103 Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Adaug\u0103 la factura :invoice", _s17_6, _s17_7, "week", "S\u0103pt\u0103m\xe2n\u0103", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Moneda Facturii", "range", "Interval", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprob\u0103", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Stabile\u0219te Parola", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "Vezi Extras", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistem", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Import\u0103 Date", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", "Trebuie s\u0103 fie mai mare ca zero \u0219i mai mic ca totalul", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activeaza", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "Transform\u0103 \xeen Factur\u0103", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "F\u0103ctureaz\u0103 task", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ascunde", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Coloana", "sample", "Exemplar", "map_to", "Map To", "import", "Importa", _s25_15, _s29_6, "select_file", "Alege un fisier", _s16_60, _s16_61, "csv_file", "fisier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Total factura", "quote_total", "Total Proforma", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Nume Client", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Factura Recurenta", _s18_45, "Facturi Recurente", _s21_47, "Adauga Factura Recurenta", _s22_37, "Editare factura recurenta", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Factur\u0103 recurent\u0103 arhivat\u0103 cu succes", _s25_28, "Factur\u0103 recurent\u0103 \u0219tears\u0103 cu succes", _s25_29, _s38_11, _s26_12, "Factur\u0103 recurent\u0103 restaurat\u0103 cu succes", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Salveaz\u0103 datele cardului", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ore", "statement", "Extras", "taxes", "Taxe", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "C\u0103tre", "health_check", "Health Check", "payment_type_id", "Tip plata", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Facturi urmatoare", _s17_59, _s17_60, "recent_payments", "Plati recente", "upcoming_quotes", "Proforme urm\u0103toare", "expired_quotes", "Proforme expirate", "create_client", "Create Client", "create_invoice", "Creaza factura", "create_quote", "Creaza Proforma", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Sterge Proforma", "update_invoice", "Update Invoice", "delete_invoice", "Sterge factura", "update_client", "Update Client", "delete_client", "Sterge client", "delete_payment", "Sterge plata", "update_vendor", "Update Vendor", "delete_vendor", "\u0218terge Furnizor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Creaz\u0103 Task", "update_task", "Update Task", "delete_task", "\u0218terge Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "Token API", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token-uri", "new_token", "New Token", "edit_token", "Modifica token", "created_token", "Token creat", "updated_token", "Actualizeaz\u0103 token", "archived_token", _s27_25, "deleted_token", "Token \u0219ters", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Trimite email", "email_quote", "Trimite Proforma", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Valoare credit", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count factur\u0103 trimis\u0103", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Aplic\u0103 Licen\u021b\u0103", "cancel_account", "\u0218terge cont", _s22_44, "ATEN\u021aIE: Toate datele vor fi \u0219terse definitiv, nu se pot recupera.", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Antet", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, "Proforme Recurente", "recurring_tasks", "Recurring Tasks", _s18_55, "Administrare cont", "credit_date", "Data Creditului", "credit", "Credit", "credits", "Credite", "new_credit", "Adaug\u0103 Credit", "edit_credit", "Edit Credit", "created_credit", "Credit ad\u0103ugat cu succes", "updated_credit", _s27_32, "archived_credit", "Credit arhivat cu succes", "deleted_credit", "Credit \u0219ters", "removed_credit", _s27_34, "restored_credit", "Credit restaurat", _s16_98, ":count credite au fost arhivate cu succes", "deleted_credits", ":count \u0219ters", _s16_99, _s36_9, "current_version", "Versiunea Curent\u0103", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Afla mai mult", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Firm\u0103 nou\u0103", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reseteaz\u0103", "number", "Number", "export", "Export\u0103", "chart", "Grafic", "count", "Count", "totals", "Total", "blank", "Blank", "day", "Zi", "month", "Lun\u0103", "year", "An", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupeaz\u0103 dup\u0103", "credit_balance", "Soldul Creditului", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Asignare lui", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit \u0219i Pierdere", "reports", "Reports", "report", "Raport", "add_company", "Adaug\u0103 Firm\u0103", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Ajutor", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Mesaj", "from", "De la", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "forum suport", "about", "About", "documentation", "Documenta\u021bie", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Total linie", "item", "Element", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Da", "no", "Nu", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Vezi", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "Utilizator", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Alege un client", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Setari Taxe", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "Recupereaz\u0103 parola", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Email Factur\u0103", "payment_email", "Email Plat\u0103", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Email Ofert\u0103", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "Utilizatori", "users", "Utilizatori", "new_user", "New User", "edit_user", "Modific\u0103 Utilizator", "created_user", _s25_36, "updated_user", "Utilizator actualizat", "archived_user", "Arhivare utilizator cu succes", "deleted_user", "Utilizator \u0219ters", "removed_user", _s25_39, "restored_user", "Utilizator restaurat", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Optiuni Generale", "invoice_options", "Op\u021biuni Factur\u0103", _s17_86, 'Ascunde c\xe2mpul "Pl\u0103tit p\xe2n\u0103 la"', _s22_52, 'Afi\u0219eaz\u0103 "Pl\u0103tit pana la" dec\xe2t c\xe2nd plata a fost efectuat\u0103.', _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "Prima pagin\u0103", "all_pages", "Toate paginile", "last_page", "Ultima pagin\u0103", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Culoare Principal\u0103", "secondary_color", "Culoare Secundar\u0103", "page_size", "Dimensiune Pagin\u0103", "font_size", "Dimensiune Font", "quote_design", "Quote Design", "invoice_fields", "C\xe2mpuri Factur\u0103", "product_fields", "Product Fields", "invoice_terms", "Termeni facturare", "invoice_footer", "Subsol Factur\u0103", "quote_terms", "Termeni Proform\u0103", "quote_footer", "Subsol Proform\u0103", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Zilnic", "freq_weekly", "S\u0103pt\u0103m\xe2nal", "freq_two_weeks", "Dou\u0103 S\u0103pt\u0103m\xe2ni", "freq_four_weeks", "Patru S\u0103pt\u0103m\xe2ni", "freq_monthly", "Lunar", "freq_two_months", "Dou\u0103 Luni", _s17_90, "Trei Luni", _s16_153, "Patru Luni", "freq_six_months", "\u0218ase Luni", "freq_annually", "Anual", "freq_two_years", "Doi Ani", _s16_154, "Three Years", "never", "Niciodat\u0103", "company", "Company", _s17_91, _s17_92, "charge_taxes", "Taxe", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Editeaza CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Subdomeniu", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\xcen leg\u0103tur\u0103 cu,", _s24_38, _s86_, "plain", "Plain", "light", "Deschisa", "dark", "Intunecata", "email_design", "Design Email", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Card de Credit", "bank_transfer", "Transfer Bancar", "priority", "Prioritate", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Actualizeaz\u0103 Adresa", _s19_45, "Actualizeaz\u0103 adresa clientului cu detaliile trimise", "rate", "Valoare", "tax_rate", "Valoare Tax\u0103", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Editeaz\u0103 valoare tax\u0103", _s16_160, "Valoare tax\u0103 creat\u0103 cu succes", _s16_161, "Valoare tax\u0103 actualizat\u0103 cu succes", _s17_98, "Valoare tax\u0103 arhivat\u0103 cu succes", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Completeaz\u0103 automat produsele", _s18_80, "Aleg\xe2nd un produs descrierea \u0219i pre\u021bul vor fi completate automat", "update_products", "Actualizare automat\u0103 a produselor", _s20_65, "Actualiz\xe2nd o factur\u0103 se va actualiza si libr\u0103ria de produse", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Dezactivat", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Duminic\u0103", "monday", "Luni", "tuesday", "Mar\u021bi", "wednesday", "Miercuri", "thursday", "Joi", "friday", "Vineri", "saturday", "S\xe2mb\u0103t\u0103", "january", "Ianuarie", "february", "Februarie", "march", "Martie", "april", "Aprilie", "may", "Mai", "june", "Iunie", "july", "Iulie", "august", "August", "september", "Septembrie", "october", "Octombrie", "november", "Noiembrie", "december", "Decembrie", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Format 24 Ore", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Op\u021biuni Produs", "device_settings", "Device Settings", "defaults", "Implicit", "basic_settings", "Op\u021biuni de baz\u0103", _s17_103, "Op\u021biuni avansate", "company_details", "Detalii companie", "user_details", "Detalii utilizator", "localization", "Localizare", "online_payments", "Plati online", "tax_rates", "Valori taxa", "notifications", "Notific\u0103ri", "import_export", "Import | Export", "custom_fields", "C\xe2mpuri personalizate", "invoice_design", "Design factur\u0103", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Setari email", _s23_37, "\u0218abloane & Notific\u0103ri", _s22_55, _s20_67, _s19_51, "Vizualizare Date", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Termenii Serviciului", "privacy_policy", "Privacy Policy", "sign_up", "Inscrie-te", "account_login", "Autentificare", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Descarca", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Expense Date", "pending", "\xcen a\u0219teptare", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Transform\u0103", _s24_44, _s24_57, "exchange_rate", "Curs Valutar", _s16_178, "Transform\u0103 moneda", "mark_paid", "Mark Paid", "category", "Category", "address", "Adres\u0103", "new_vendor", "Furnizor Nou", "created_vendor", "Furnizor creat cu succes", "updated_vendor", "Furnizor actualizat cu succes", "archived_vendor", "Furnizor arhivat cu succes", "deleted_vendor", "Furnizor \u0219ters cu succes", "restored_vendor", _s28_27, _s16_179, ":count furnizori arhiva\u021bi cu succes", "deleted_vendors", ":count furnizori \u0219tersi cu succes", _s16_180, _s36_11, "new_expense", "Introdu Cheltuial\u0103", "created_expense", _s28_28, "updated_expense", _s28_29, _s16_181, "Cheltuial\u0103 arhivat\u0103 cu succes", "deleted_expense", "Cheltuial\u0103 \u0219tears\u0103 cu succes", _s16_182, _s29_21, _s17_109, "Cheltuieli arhivate cu succes", _s16_183, "Cheltuieli \u0219terse cu succes", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Facturat", "logged", "\xcenregistrat", "running", "\xcen derulare", "resume", "Continu\u0103", "task_errors", "Te rog corecteaz\u0103 suprapunerea timpilor", "start", "Start", "stop", "Stop", "started_task", _s25_47, "stopped_task", "Task oprit", "resumed_task", _s25_49, "now", "Acum", _s16_184, _s16_185, "timer", "Cronometru", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Timp pornire", "end_time", "Timp \xeencheiere", "date", "Data", "times", "Times", "duration", "Durat\u0103", "new_task", "Task nou", "created_task", "Task creat", "updated_task", "Task actualizat", "archived_task", "Task arhivat", "deleted_task", "Task \u0219ters", "restored_task", "Task restaurat", "archived_tasks", "Arhivat :count task-uri", "deleted_tasks", "\u0218ters :count task-uri", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "Proiect nou", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "apas\u0103 aici", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Subsol", "compare", "Compar\u0103", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Ast\u0103zi", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Curent", "previous", "Anterior", "current_period", "Perioada Curent\u0103", _s17_113, "Perioada Compar\u0103rii", "previous_period", "Perioada Anterioar\u0103", "previous_year", "Anul Anterior", "compare_to", "Compar\u0103 cu", "last7_days", "Ultimele 7 Zile", "last_week", "S\u0103pt\u0103m\xe2na Trecut\u0103", "last30_days", "Ultimele 30 Zile", "this_month", "Luna curent\u0103", "last_month", "Luna trecut\u0103", "this_year", "Anul Curent", "last_year", "Anul Trecut", "custom", "Personalizat", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Vizualizare Factur\u0103", "convert", "Convert", "more", "More", "edit_client", "Modifica client", "edit_product", "Modifica produs", "edit_invoice", "Modifica factura", "edit_quote", "Modifica Proforma", "edit_payment", "Modific\u0103 Plata", "edit_task", "Modific\u0103 Task", "edit_expense", "Edit Expense", "edit_vendor", "Editeaz\u0103 Furnizor", "edit_project", "Editeaz\u0103 Proiect", _s20_68, "Editare oferta recurenta", "billing_address", "Adres\u0103 de facturare", _s16_191, _s16_192, "total_revenue", "Venituri Totale", "average_invoice", "Medie facturi", "outstanding", "Restante", "invoices_sent", ":count facturi trimise", "active_clients", "clienti activi", "close", "Inchide", "email", "Email", "password", "Parola", "url", "URL", "secret", "Secret", "name", "Nume", "logout", "Deconectare", "login", "Autentificare", "filter", "Filtreaza", "sort", "Sort", "search", "Cauta", "active", "Activ", "archived", "Arhivat", "deleted", "\u0218ters", "dashboard", "Panou Control", "archive", "Arhiva", "delete", "Sterge", "restore", "Restaureaz\u0103", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Salveaza", _s17_115, _s17_116, "paid_to_date", "Pl\u0103tit P\xe2na Acum", "balance_due", "Total De Plat\u0103", "balance", "Balanta", "overview", "Overview", "details", "Detalii", "phone", "Telefon", "website", "Site web", "vat_number", "C.I.F.", "id_number", "Nr. Reg. Com.", "create", "Creaza", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Contacte", "additional", "Additional", "first_name", "Prenume", "last_name", "Nume", "add_contact", "Adauga contact", "are_you_sure", "Sigur?", "cancel", "Renunta", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Produs", "products", "Produse", "new_product", "New Product", "created_product", "Produs creat cu succes", "updated_product", "Produs actualizat cu succes", _s16_199, "Produs arhivat cu succes", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "Produs", "notes", "Noti\u021be", "cost", "Cost", "client", "Client", "clients", "Clienti", "new_client", "Client nou", "created_client", "S-a creat clientul cu succes", "updated_client", "Client actualizat cu succes.", "archived_client", "Client arhivat cu succes.", _s16_202, ":count clienti arhivat cu succes.", "deleted_client", "Client sters cu succes.", "deleted_clients", ":count clienti stersi cu succes.", "restored_client", "Client restaurat", _s16_203, _s36_13, "address1", "Strada", "address2", "Apartament", "city", "Localitate", "state", "Jude\u021b/Sector", "postal_code", "Cod po\u0219tal", "country", "Tara", "invoice", "Factur\u0103", "invoices", "Facturi", "new_invoice", "Factura noua", "created_invoice", "Factura creata cu succes.", "updated_invoice", "Factura actualiazata cu succes.", _s16_204, "Factura arhivata cu succes.", "deleted_invoice", "Factura stearsa cu succes.", _s16_205, "Factur\u0103 restaurat\u0103", _s17_119, ":count facturi arhivate cu succes.", _s16_206, ":count facturi sterse cu succes", _s17_120, _s37_17, "emailed_invoice", "Factura trimisa pe email cu succes", "emailed_payment", _s28_58, "amount", "Valoare", "invoice_number", "Num\u0103r factur\u0103", "invoice_date", "Data factur\u0103", "discount", "Discount", "po_number", "Ordin de cump\u0103rare nr", "terms", "Termeni", "public_notes", "Public Notes", "private_notes", "Note particulare", "frequency", "Frecventa", "start_date", "Data inceput", "end_date", "Data sfirsit", "quote_number", "Numar Proforma", "quote_date", "Data Proforma", "valid_until", "Valabil p\xe2n\u0103 la", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Descriere", "unit_cost", "Pre\u021b unitar", "quantity", "Cantitate", "add_item", "Add Item", "contact", "Contact", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Scaden\u021ba", _s16_207, _s16_208, "status", "Stare", _s17_121, "Invoice Status", "quote_status", "Status oferta", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Modifica", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, "Te rugam selecteaza o oferta", "task_rate", "Task Rate", "settings", "Setari", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Tax\u0103", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "Trimis", "viewed", "Viewed", "approved", "Approved", "partial", "Par\u021bial/Depunere", "paid", "Pl\u0103tit", "mark_sent", "Marcheaz\u0103 ca trimis", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Gata", _s37_18, _s37_19, "dark_mode", "Mod \xeentunecat", _s27_51, _s35_19, "refresh_data", "Reactualizeaza datele", "blank_contact", "Contact gol", "activity", "Activitate", _s16_209, "Nu exista inregistrari", "clone", "Multiplic\u0103", "loading", "Loading", "industry", "Industrie", "size", "Size", "payment_terms", "Termeni de plat\u0103", "payment_date", "Data platii", "payment_status", "Status plata", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Portal Client", "show_tasks", "Arata sarcini", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Prima Notificare", "second_reminder", "A Doua Notificare", "third_reminder", "A Treia Notificare", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0218ablon", "send", "Trimite", "subject", "Subiect", "body", "Mesaj", "send_email", "Trimite Email", "email_receipt", "Trimite pe email dovada pl\u0103\u021bii", "auto_billing", "Auto billing", "button", "Buton", "preview", "Previzualizare", "customize", "Personalizeaza", "history", "Istoric", "payment", "Plata", "payments", "Plati", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "Referinta tranzactie", "enter_payment", "Introdu plata", "new_payment", "Introdu plata", "created_payment", "Plata creata cu succes.", "updated_payment", "Plat\u0103 actualizat\u0103", _s16_217, "Plata arhivata cu succes", "deleted_payment", "Plata stearsa cu succes.", _s16_218, "Plat\u0103 restaurat\u0103", _s17_124, ":count plati arhivate cu succes", _s16_219, ":count plati sterse cu succes.", _s17_125, _s37_20, "quote", "Proforma", "quotes", "Proforme", "new_quote", "Proforma Nou", "created_quote", "Proform\u0103 creat\u0103 cu succes", "updated_quote", "Proform\u0103 actualizat\u0103 cu succes", "archived_quote", "Proform\u0103 arhivat\u0103 cu succes", "deleted_quote", "Proform\u0103 \u0219tears\u0103", "restored_quote", "Proform\u0103 restaurat\u0103", "archived_quotes", ":count proforme arhivate cu succes", "deleted_quotes", ":count proforme \u0219terse cu succes", "restored_quotes", _s35_21, "expense", "Cheltuial\u0103", "expenses", "Cheltuieli", "vendor", "Furnizor", "vendors", "Furnizori", "task", "Task", "tasks", "Task-uri", "project", "Proiect", "projects", "Proiecte", "activity_1", ":user a creat clientul :client", "activity_2", ":user a arhivat clientul :client", "activity_3", ":user a \u0219ters clientul :client", "activity_4", ":user a creat factura :invoice", "activity_5", ":user a actualizat factura :invoice", "activity_6", ":user a trimis pe email factura :invoice pentru :client la :contact", "activity_7", ":contact a vizualizat factura :invoice pentru :client", "activity_8", ":user a arhivat factura :invoice", "activity_9", ":user a \u0219ters factura :invoice", "activity_10", _s85_0, "activity_11", ":user a actualizat plata :payment", "activity_12", ":user a arhivat plata :payment", "activity_13", ":user a \u0219ters plata :payment", "activity_14", ":user a \xeenc\u0103rcat :credit credite", "activity_15", ":user a actualizat :credit credite", "activity_16", ":user a arhivat :credit credite", "activity_17", ":user a \u0219ters :credit credite", "activity_18", ":user a creat proforma :quote", "activity_19", ":user a actualizat proforma :quote", "activity_20", ":user a trimis pe email proforma :quote pentru :client la :contact", "activity_21", ":contact a vizualizat proforma :quote", "activity_22", ":user a arhivat proforma :quote", "activity_23", ":user a \u0219ters proforma :quote", "activity_24", ":user a restaurat proforma :quote", "activity_25", ":user a restaurat factura :invoice", "activity_26", ":user a restaurat clientul :client", "activity_27", ":user a restaurat plata :payment", "activity_28", ":user a restaurat :credit credite", "activity_29", ":contact a aprobat proforma :quote pentru :client", "activity_30", ":user a creat furnizorul :vendor", "activity_31", ":user a arhivat furnizorul :vendor", "activity_32", ":user a \u0219ters furnizorul :vendor", "activity_33", ":user a restaurat furnizorul :vendor", "activity_34", ":user a creat cheltuiala :expense", "activity_35", ":user a arhivat cheltuiala :expense", "activity_36", ":user a \u0219ters cheltuiala :expense", "activity_37", ":user a restaurat cheltuiala :expense", "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", _s30_26, "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Proform\u0103 trimis\u0103 cu succes", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Selecteaza", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Plaj\u0103 num\u0103r factur\u0103", _s20_73, _s20_74, _s20_75, "Plaj\u0103 num\u0103r proform\u0103", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Tip", "invoice_amount", "Valoare Factur\u0103", _s16_224, "Data Scadenta", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Facturare", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Valoare plata", "age", "Age", "is_running", "Is Running", "time_log", "Log Timp", "bank_id", "Banca", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "ru_RU", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u044b\u0439 \u0448\u043b\u044e\u0437", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u0447\u0435\u0442 :invoice", _s17_6, _s17_7, "week", "\u041d\u0435\u0434\u0435\u043b\u044f", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "\u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u041e\u0434\u043e\u0431\u0440\u0438\u0442\u044c", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s23_43, "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u0421\u0438\u0447\u0442\u0435\u043c\u0430", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0430\u044f\u0441\u044f \u0417\u0430\u0442\u0440\u0430\u0442\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", _s26_2, _s39_, _s25_4, "\u041f\u0440\u043e\u0435\u043a\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d", _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u0418\u043c\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", "\u0414\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f \u0438 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0432\u0441\u0435\u0433\u043e", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u041f\u043e\u0441\u043b\u0430\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u0441\u0447\u0451\u0442", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432 \u0441\u0447\u0435\u0442", "invoice_expense", "Invoice Expense", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043a\u0440\u044b\u0442\u044c", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u0421\u0442\u043e\u043b\u0431\u0435\u0446", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440", "map_to", "Map To", "import", "\u0418\u043c\u043f\u043e\u0440\u0442", _s25_15, _s29_6, "select_file", "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0444\u0430\u0439\u043b", _s16_60, _s16_61, "csv_file", "CSV-\u0444\u0430\u0439\u043b", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u041d\u0435\u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "\u0418\u0442\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "quote_total", "\u0412\u0441\u0435\u0433\u043e", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0418\u043c\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0417\u0430\u0442\u0440\u0430\u0442", _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0417\u0430\u0442\u0440\u0430\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_111, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0441\u0447\u0435\u0442", _s18_45, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0447\u0435\u0442\u0430", _s21_47, "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0441\u0447\u0435\u0442", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, _s39_1, _s25_28, _s38_10, _s25_29, _s38_11, _s26_12, _s39_2, _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u043a\u0430\u0440\u0442\u044b", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "\u0428\u043b\u044e\u0437", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0427\u0430\u0441\u044b", "statement", "Statement", "taxes", "\u041d\u0430\u043b\u043e\u0433\u0438", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Apply Credit", "apply", "Apply", "unapplied", "Unapplied", "select_label", "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u044f\u0440\u043b\u044b\u043a", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u041a\u043e\u043c\u0443", "health_check", "Health Check", "payment_type_id", "\u0421\u043f\u043e\u0441\u043e\u0431 \u043e\u043f\u043b\u0430\u0442\u044b", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u0441\u0447\u0435\u0442\u0430", _s17_59, _s17_60, "recent_payments", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043f\u043b\u0430\u0442\u0435\u0436\u0438", "upcoming_quotes", "\u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0447\u0451\u0442", "create_quote", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "create_payment", "Create Payment", "create_vendor", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "update_quote", "Update Quote", "delete_quote", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "update_invoice", "Update Invoice", "delete_invoice", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "update_client", "Update Client", "delete_client", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "delete_payment", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "create_task", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "update_task", "Update Task", "delete_task", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u0426\u0435\u043b\u044c", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API \u0442\u043e\u043a\u0435\u043d\u044b", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u041f\u0440\u0430\u0432\u0430", "tokens", "\u0422\u043e\u043a\u0435\u043d\u044b", "new_token", "New Token", "edit_token", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0430", "created_token", "\u0422\u043e\u043a\u0435\u043d \u0441\u043e\u0437\u0434\u0430\u043d", "updated_token", "\u0422\u043e\u043a\u0435\u043d \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_token", _s27_25, "deleted_token", "\u0422\u043e\u043a\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "email_quote", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0421\u0443\u043c\u043c\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "\u041f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f", _s17_71, _s17_72, _s17_73, "\u0418\u043d\u0434\u0435\u043a\u0441/\u0413\u043e\u0440\u043e\u0434/\u0421\u0442\u0440\u0430\u043d\u0430", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0430", _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0-30 \u0434\u043d\u0435\u0439", "age_group_30", "30-60 \u0434\u043d\u0435\u0439", "age_group_60", "60-90 \u0434\u043d\u0435\u0439", "age_group_90", "90-120 \u0434\u043d\u0435\u0439", "age_group_120", "120+ \u0434\u043d\u0435\u0439", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0441\u0447\u0451\u0442\u0430", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count \u0441\u0447\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442", _s22_44, _s65_2, "delete_company", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044e", _s22_45, _s65_2, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "load_design", "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "\u041a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "tickets", "\u0422\u0438\u043a\u0435\u0442\u044b", _s16_96, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "\u0414\u0430\u0442\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u044b", "new_credit", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "Edit Credit", "created_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_credit", _s27_32, "archived_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d", "removed_credit", _s27_34, "restored_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s16_98, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430(\u043e\u0432)", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430(\u043e\u0432)", _s16_99, _s36_9, "current_version", "\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c", "number", "Number", "export", "\u042d\u043a\u0441\u043f\u043e\u0440\u0442", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a", "count", "Count", "totals", "\u0418\u0442\u043e\u0433\u043e", "blank", "Blank", "day", "\u0414\u0435\u043d\u044c", "month", "\u041c\u0435\u0441\u044f\u0446", "year", "\u0413\u043e\u0434", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "credit_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u0421\u0442\u043e\u043b\u0431\u0446\u044b", "aging", "Aging", "profit_and_loss", "\u041f\u0440\u0438\u0431\u044b\u043b\u0438 \u0438 \u0443\u0431\u044b\u0442\u043a\u0438", "reports", "Reports", "report", "\u041e\u0442\u0447\u0435\u0442", "add_company", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044e", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430", _s16_134, _s16_135, "help", "\u041f\u043e\u043c\u043e\u0449\u044c", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u041f\u043e\u0447\u0442\u0430 \u0434\u043b\u044f \u0441\u0432\u044f\u0437\u0438", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "from", "\u041e\u0442", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "\u0424\u043e\u0440\u0443\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "about", "About", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "contact_us", "\u0421\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u043c\u0438", "subtotal", "\u041f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u044b\u0439 \u0438\u0442\u043e\u0433", "line_total", "\u0412\u0441\u0435\u0433\u043e", "item", "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", "credit_email", "Credit Email", "iframe_url", "\u0412\u0435\u0431-\u0441\u0430\u0439\u0442", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430\u043b\u043e\u0433\u043e\u0432", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "\u0421\u0443\u043c\u043c\u0430 \u043f\u0435\u043d\u0438", _s16_143, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043f\u0435\u043d\u0438", "schedule", "Schedule", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "\u0414\u043d\u0438", "invoice_email", "\u041f\u0438\u0441\u044c\u043c\u043e", "payment_email", "\u041f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u044d\u043b. \u043f\u043e\u0447\u0442\u044b", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Quote Email", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", "users", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", "new_user", "New User", "edit_user", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "created_user", _s25_36, "updated_user", "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_user", _s26_24, "deleted_user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u0434\u0430\u043b\u0451\u043d", "removed_user", _s25_39, "restored_user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u041e\u0431\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "invoice_options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0447\u0435\u0442\u0430", _s17_86, '\u0421\u043a\u0440\u044b\u0442\u044c "\u041e\u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0434\u043e"', _s22_52, "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \xab\u041e\u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0434\u043e\xbb \u0432 \u0432\u0430\u0448\u0438\u0445 \u0441\u0447\u0435\u0442\u0430\u0445 \u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0442\u0435\u0436\u0430.", _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0446\u0432\u0435\u0442", "secondary_color", "\u0412\u0442\u043e\u0440\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u044b\u0439 \u0446\u0432\u0435\u0442", "page_size", "Page Size", "font_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", "quote_design", "\u0428\u0430\u0431\u043b\u043e\u043d \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043e\u043a", "invoice_fields", "\u041f\u043e\u043b\u044f \u0441\u0447\u0451\u0442\u0430", "product_fields", "\u041f\u043e\u043b\u044f \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0441\u0447\u0451\u0442\u0430", "invoice_footer", "\u041d\u0438\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b \u0441\u0447\u0435\u0442\u0430", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "\u0415\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u044b\u0440\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_monthly", "\u0415\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u044f\u0446\u0430", _s17_90, "\u0422\u0440\u0438 \u043c\u0435\u0441\u044f\u0446\u0430", _s16_153, "\u0427\u0435\u0442\u044b\u0440\u0435 \u043c\u0435\u0441\u044f\u0446\u0430", "freq_six_months", "\u041f\u043e\u043b\u0433\u043e\u0434\u0430", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "Never", "company", "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", _s17_91, _s17_92, "charge_taxes", "\u0420\u0430\u0441\u0447\u0451\u0442 \u043d\u0430\u043b\u043e\u0433\u043e\u0432", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u043f\u0440\u0435\u0444\u0438\u043a\u0441", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "\u041f\u043e\u043b\u0435 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0438", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "\u041f\u043e\u043b\u0435 \u0421\u0447\u0451\u0442\u0430", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "\u041f\u043e\u043b\u0435 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "\u041f\u043e\u043b\u0435 \u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "Number Pattern", "messages", "\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f", "custom_css", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "\u041f\u043e\u0434\u0434\u043e\u043c\u0435\u043d", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u0421 \u0423\u0432\u0430\u0436\u0435\u043d\u0438\u0435\u043c,", _s24_38, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Enable Markup", "reply_to_email", "\u041e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0430\u0434\u0440\u0435\u0441", _s19_45, "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0430\u0434\u0440\u0435\u0441 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u043c\u0438 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438", "rate", "\u0421\u0442\u0430\u0432\u043a\u0430", "tax_rate", "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u043b\u043e\u0433\u043e\u0432\u0443\u044e \u0441\u0442\u0430\u0432\u043a\u0443", _s16_160, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0430", _s16_161, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", _s17_98, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0432 \u0430\u0440\u0445\u0438\u0432", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u0410\u0432\u0442\u043e\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s18_80, "\u0412\u044b\u0431\u043e\u0440 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c", "update_products", "\u0410\u0432\u0442\u043e\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s20_65, "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0447\u0435\u0442\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s16_163, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0443", _s21_69, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0446\u0435\u043d\u0443 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430 \u0432 \u0432\u0430\u043b\u044e\u0442\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "fees", "\u041f\u043b\u0430\u0442\u044b", "limits", "\u041b\u0438\u043c\u0438\u0442\u044b", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "monday", "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", "tuesday", "\u0412\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0421\u0440\u0435\u0434\u0430", "thursday", "\u0427\u0435\u0442\u0432\u0435\u0440\u0433", "friday", "\u041f\u044f\u0442\u043d\u0438\u0446\u0430", "saturday", "\u0421\u0443\u0431\u0431\u043e\u0442\u0430", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24-\u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0444\u043e\u0440\u043c\u0430\u0442", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "\u0413\u0440\u0443\u043f\u043f\u0430", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "\u041b\u043e\u0433\u043e\u0442\u0438\u043f", "saved_settings", _s27_39, _s16_169, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "device_settings", "Device Settings", "defaults", "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s17_103, "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "company_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438", "user_details", "\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "online_payments", "\u041e\u043d\u043b\u0430\u0439\u043d \u043f\u043b\u0430\u0442\u0435\u0436\u0438", "tax_rates", "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u044b\u0435 \u0441\u0442\u0430\u0432\u043a\u0438", "notifications", "\u041e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f", "import_export", "\u0418\u043c\u043f\u043e\u0440\u0442 | \u042d\u043a\u0441\u043f\u043e\u0440\u0442", "custom_fields", "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044f", "invoice_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u0441\u0447\u0451\u0442\u0430", "buy_now_buttons", "Buy Now Buttons", "email_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b. \u043f\u043e\u0447\u0442\u044b", _s23_37, "\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0438 \u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f", _s22_55, _s20_67, _s19_51, "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f", "privacy_policy", "Privacy Policy", "sign_up", "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f", "account_login", "\u041b\u043e\u0433\u0438\u043d", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u0421\u043a\u0430\u0447\u0430\u0442\u044c", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "\u0414\u0430\u0442\u0430 \u0417\u0430\u0442\u0440\u0430\u0442", "pending", "\u041e\u0436\u0438\u0434\u0430\u044e\u0449\u0438\u0439", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d", _s24_44, "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u0432 \u0421\u0447\u0451\u0442", "exchange_rate", "Exchange Rate", _s16_178, _s16_239, "mark_paid", "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u043c", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "address", "\u0410\u0434\u0440\u0435\u0441", "new_vendor", "\u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a", "created_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "restored_vendor", _s28_27, _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430(\u043e\u0432)", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430(\u043e\u0432)", _s16_180, _s36_11, "new_expense", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "created_expense", _s28_28, "updated_expense", "\u0417\u0430\u0442\u0440\u0430\u0442\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b", _s16_181, _s29_20, "deleted_expense", _s23_95, _s16_182, _s29_21, _s17_109, _s30_27, _s16_183, _s23_95, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "\u0412\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u0441\u0447\u0451\u0442", "logged", "\u0423\u0447\u0442\u0435\u043d\u043e", "running", "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f", "resume", "\u041d\u0430\u0437\u0430\u0434", "task_errors", "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0435\u0440\u0435\u043a\u0440\u044b\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u044b", "start", "\u0421\u0442\u0430\u0440\u0442", "stop", "\u0421\u0442\u043e\u043f", "started_task", _s25_47, "stopped_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "resumed_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "now", "\u0421\u0435\u0439\u0447\u0430\u0441", _s16_184, _s16_185, "timer", "\u0422\u0430\u0439\u043c\u0435\u0440", "manual", "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e", "budgeted", "Budgeted", "start_time", "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430", "end_time", "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "date", "\u0414\u0430\u0442\u0430", "times", "\u0412\u0440\u0435\u043c\u044f", "duration", "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", "new_task", "\u041d\u043e\u0432\u043e\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "created_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u043e", "updated_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "archived_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u043e", "restored_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "archived_tasks", "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432 :count \u0437\u0430\u0434\u0430\u043d\u0438\u0439", "deleted_tasks", "\u0423\u0434\u0430\u043b\u0435\u043d\u043e :count \u0437\u0430\u0434\u0430\u043d\u0438\u0439", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, "\u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0447\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u043d\u0430\u0448\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435!", "if_you_like_it", _s21_76, "click_here", "\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0441\u044e\u0434\u0430", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "\u041d\u0435\u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u044b\u0435", _s30_15, _s42_12, "locked", "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "\u041d\u0438\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", "compare", "\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "\u0421\u0435\u0433\u043e\u0434\u043d\u044f", "custom_range", "Custom Range", "date_range", "Date Range", "current", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439", "previous", "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439", "current_period", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434", _s17_113, "\u041f\u0435\u0440\u0438\u043e\u0434 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f", "previous_period", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434", "previous_year", "\u041f\u0440\u0435\u0434\u0434\u0443\u0448\u0438\u0439 \u0433\u043e\u0434", "compare_to", "\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441", "last7_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439", "last_week", "\u0417\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043d\u0435\u0434\u0435\u043b\u044e", "last30_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 30 \u0434\u043d\u0435\u0439", "this_month", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446", "last_month", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u043c\u0435\u0441\u044f\u0446", "this_year", "This Year", "last_year", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u0433\u043e\u0434", "custom", "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c", _s16_189, "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u0447\u0451\u0442", "clone_to_quote", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442", "clone_to_credit", "Clone to Credit", "view_invoice", "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0447\u0435\u0442", "convert", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d", "more", "More", "edit_client", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "edit_product", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0443", "edit_invoice", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "edit_quote", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "edit_payment", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "edit_task", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "edit_expense", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "edit_vendor", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "\u0410\u0434\u0440\u0435\u0441 \u0434\u043b\u044f \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0447\u0435\u0442\u043e\u0432", _s16_191, _s16_192, "total_revenue", "\u0421\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u044b\u0439 \u0434\u043e\u0445\u043e\u0434", "average_invoice", "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0447\u0451\u0442", "outstanding", "\u0418\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435", "invoices_sent", ":count \u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e", "active_clients", "\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u044b", "close", "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "email", "\u042d\u043b. \u043f\u043e\u0447\u0442\u0430", "password", "\u041f\u0430\u0440\u043e\u043b\u044c", "url", "URL", "secret", "Secret", "name", "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", "logout", "\u0412\u044b\u0439\u0442\u0438", "login", "\u041b\u043e\u0433\u0438\u043d", "filter", "\u0424\u0438\u043b\u044c\u0442\u0440", "sort", "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "search", "\u0418\u0441\u043a\u0430\u0442\u044c", "active", "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439", "archived", "\u0410\u0440\u0445\u0438\u0432", "deleted", "\u0423\u0434\u0430\u043b\u0435\u043d", "dashboard", "\u0413\u043b\u0430\u0432\u043d\u0430\u044f", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "delete", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", "restore", "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043e\u0434 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "ascending", "Ascending", "descending", "Descending", "save", "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", _s17_115, _s17_116, "paid_to_date", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "balance_due", "\u041d\u0435\u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "balance", "\u041a \u043e\u043f\u043b\u0430\u0442\u0435", "overview", "Overview", "details", "\u0414\u0435\u0442\u0430\u043b\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0412\u0435\u0431-\u0441\u0430\u0439\u0442", "vat_number", "\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043b\u0430\u0442\u0435\u043b\u044c\u0449\u0438\u043a\u0430 \u041d\u0414\u0421", "id_number", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440", "create", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c", _s19_59, _s30_16, "error", "\u041e\u0448\u0438\u0431\u043a\u0430", _s16_195, _s16_196, "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b", "additional", "Additional", "first_name", "\u0418\u043c\u044f", "last_name", "\u0424\u0430\u043c\u0438\u043b\u0438\u044f", "add_contact", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b?", "cancel", "\u041e\u0442\u043c\u0435\u043d\u0430", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "products", "\u0422\u043e\u0432\u0430\u0440\u044b/\u0423\u0441\u043b\u0443\u0433\u0438", "new_product", "\u041d\u043e\u0432\u044b\u0439 \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "created_product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_product", "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u043e\u0432\u0430\u0440\u0435/\u0443\u0441\u043b\u0443\u0433\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d\u0430", _s16_199, "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u044b", _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "notes", "\u0417\u0430\u043c\u0435\u0442\u043a\u0438", "cost", "Cost", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u044b", "new_client", "\u041d\u043e\u0432\u044b\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", _s16_202, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043a\u043b\u0438\u0435\u043d\u0442\u0430(\u043e\u0432)", "deleted_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043a\u043b\u0438\u0435\u043d\u0442\u0430(\u043e\u0432)", "restored_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s16_203, _s36_13, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0414\u043e\u043c/\u041e\u0444\u0438\u0441", "city", "\u0413\u043e\u0440\u043e\u0434", "state", "\u0420\u0430\u0439\u043e\u043d", "postal_code", "\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434", "country", "\u0421\u0442\u0440\u0430\u043d\u0430", "invoice", "\u0421\u0447\u0451\u0442", "invoices", "\u0421\u0447\u0435\u0442\u0430", "new_invoice", "\u041d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442", "created_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", _s16_204, "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", _s16_205, "\u0421\u0447\u0451\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s17_119, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u0441\u0447\u0442\u0430(\u043e\u0432)", _s16_206, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u0441\u0447\u0442\u0430(\u043e\u0432)", _s17_120, _s37_17, "emailed_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043f\u043e \u043f\u043e\u0447\u0442\u0435", "emailed_payment", _s28_58, "amount", "\u0412\u0441\u0435\u0433\u043e", "invoice_number", "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430", "invoice_date", "\u0414\u0430\u0442\u0430 \u0441\u0447\u0451\u0442\u0430", "discount", "\u0421\u043a\u0438\u0434\u043a\u0430", "po_number", "\u041d\u043e\u043c\u0435\u0440 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0443\u0447\u0435\u043d\u0438\u044f", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f", "public_notes", "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438", "private_notes", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438", "frequency", "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c", "start_date", "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430", "end_date", "\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "quote_number", "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0438", "quote_date", "\u0414\u0430\u0442\u0430 \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0438", "valid_until", "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d \u0434\u043e", "items", "Items", "partial_deposit", _s16_347, "description", "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "unit_cost", "\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0437\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0443", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e", "add_item", "Add Item", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b", _s16_207, _s16_208, "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_121, "\u0421\u0442\u0430\u0442\u0443\u0441 \u0421\u0447\u0451\u0442\u0430", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "\u0412\u0441\u0435\u0433\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "dismiss", "Dismiss", _s20_70, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0438\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443", _s22_59, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0438\u0440\u0438\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "language", "\u042f\u0437\u044b\u043a", "currency", "\u0412\u0430\u043b\u044e\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "created_on", "Created On", "updated_at", "Updated", "tax", "\u041d\u0430\u043b\u043e\u0433", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "\u0427\u0435\u0440\u043d\u043e\u0432\u0438\u043a", "sent", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c", "viewed", "Viewed", "approved", "Approved", "partial", _s16_347, "paid", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "mark_sent", "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u043c", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "\u0413\u043e\u0442\u043e\u0432\u043e", _s37_18, _s37_19, "dark_mode", "\u0422\u0435\u043c\u043d\u0430\u044f \u0442\u0435\u043c\u0430", _s27_51, _s35_19, "refresh_data", "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0414\u0430\u043d\u043d\u044b\u0435", "blank_contact", "Blank Contact", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", _s16_209, _s16_210, "clone", "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "loading", "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f", "industry", "Industry", "size", "\u0420\u0430\u0437\u043c\u0435\u0440", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043e\u043f\u043b\u0430\u0442\u044b", "payment_date", "\u0414\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430", "payment_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u041f\u043b\u0430\u0442\u0435\u0436\u0430", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "\u041f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u0438", "initial_email", "Initial Email", "first_reminder", "\u041f\u0435\u0440\u0432\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "second_reminder", "\u0412\u0442\u043e\u0440\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "third_reminder", "\u0422\u0440\u0435\u0442\u044c\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "Send", "subject", "\u0422\u0435\u043c\u0430", "body", "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "send_email", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b.\u043f\u043e\u0447\u0442\u0443", "email_receipt", "\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0443 \u043a\u0432\u0438\u0442\u0430\u043d\u0446\u0438\u044e \u043e\u0431 \u043e\u043f\u043b\u0430\u0442\u0435 \u043f\u043e \u044d\u043b.\u043f\u043e\u0447\u0442\u0435", "auto_billing", "Auto billing", "button", "\u041a\u043d\u043e\u043f\u043a\u0430", "preview", "Preview", "customize", "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f", "payment", "\u041f\u043b\u0430\u0442\u0451\u0436", "payments", "\u041e\u043f\u043b\u0430\u0442\u044b", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "\u0420\u0435\u0444\u0435\u0440\u0435\u043d\u0441 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", "enter_payment", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "new_payment", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "created_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", _s16_217, "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", _s16_218, "\u041f\u043b\u0430\u0442\u0451\u0436 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s17_124, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043f\u043b\u0430\u0442\u0435\u0436\u0430(\u0435\u0439)", _s16_219, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043f\u043b\u0430\u0442\u0435\u0436\u0430(\u0435\u0439)", _s17_125, _s37_20, "quote", "\u041a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "quotes", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "new_quote", "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "created_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_quote", "\u041a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0430", "restored_quote", _s27_53, "archived_quotes", "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432 :count \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043e\u043a", "deleted_quotes", _s34_23, "restored_quotes", _s35_21, "expense", "\u0417\u0430\u0442\u0440\u0430\u0442\u0430", "expenses", "\u0417\u0430\u0442\u0440\u0430\u0442\u044b", "vendor", "Vendor", "vendors", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438", "task", "Task", "tasks", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435", "project", "Project", "projects", "Projects", "activity_1", ":user \u0421\u043e\u0437\u0434\u0430\u043b \u041a\u043b\u0438\u0435\u043d\u0442\u0430 :client", "activity_2", _s29_30, "activity_3", _s28_47, "activity_4", ":user \u0421\u043e\u0437\u0434\u0430\u043b \u0421\u0447\u0451\u0442 :invoice", "activity_5", ":user \u041e\u0431\u043d\u043e\u0432\u0438\u043b \u0441\u0447\u0451\u0442 :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", _s31_11, "activity_9", _s30_21, "activity_10", _s85_0, "activity_11", _s30_22, "activity_12", _s31_12, "activity_13", _s30_23, "activity_14", _s28_48, "activity_15", _s28_49, "activity_16", _s29_31, "activity_17", _s28_50, "activity_18", _s26_39, "activity_19", _s26_40, "activity_20", _s50_9, "activity_21", _s28_51, "activity_22", _s27_54, "activity_23", _s26_41, "activity_24", _s27_55, "activity_25", _s31_13, "activity_26", _s29_32, "activity_27", _s31_14, "activity_28", _s29_33, "activity_29", _s42_13, "activity_30", _s28_52, "activity_31", _s29_34, "activity_32", _s28_53, "activity_33", _s29_35, "activity_34", _s30_24, "activity_35", _s31_15, "activity_36", ":user \u0423\u0434\u0430\u043b\u0438\u043b \u0417\u0430\u0442\u0440\u0430\u0442\u044b :expense", "activity_37", _s31_16, "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", _s24_50, "activity_43", _s24_51, "activity_44", _s25_53, "activity_45", _s24_52, "activity_46", _s25_54, "activity_47", ":user \u041e\u0431\u043d\u043e\u0432\u0438\u043b \u0417\u0430\u0442\u0440\u0430\u0442\u044b :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "\u0412\u044b\u0431\u0440\u0430\u0442\u044c", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u0421\u0447\u0435\u0442\u0447\u0438\u043a \u043d\u043e\u043c\u0435\u0440\u0430 \u0441\u0447\u0451\u0442\u0430", _s20_73, _s20_74, _s20_75, _s20_76, _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "\u0422\u0438\u043f", "invoice_amount", "Invoice Amount", _s16_224, "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0410\u0432\u0442\u043e-\u0441\u0447\u0435\u0442", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u0421\u0443\u043c\u043c\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430", "age", "\u0412\u043e\u0437\u0440\u0430\u0441\u0442", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_66, _s19_67, _s16_225, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u0442\u0440\u0430\u0442", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "sr", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Prihvati", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Pode\u0161avanja pla\u0107anja", "default", "Podrazumevano", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Stanje", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Dodaj kanal pla\u0107anja", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Kreirajte svoj nalog za nekoliko sekundi", "login_label", _s28_, "add_to_invoice", _s21_104, _s17_6, _s17_7, "week", "Nedelja", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Valuta ra\u010duna", "range", "Opseg", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Napravi projekat", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Naknada za ra\u010dun :amount bi bila :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Odobri", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Uspe\u0161no o\u010di\u0161\u0107en klijent", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direktni dug", _s21_15, _s30_2, "set_password", "Postavi lozinku", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", "Debitna plac\u0301anja po prethodnom ovla\u0161c\u0301enju", "becs", "BECS direktno zadu\u017eivanje", "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Pregled tro\u0161ka # :expense", "view_statement", "Pogledajte izjavu", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistem", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Od Ime", _s16_21, "Kloniraj u tro\u0161kove", _s17_13, "Ponavljaju\u0107i tro\u0161ak", _s18_13, "Ponavljaju\u0107i tro\u0161kovi", _s21_16, "Novi ponavljaju\u0107i tro\u0161ak", _s22_24, "Izmeni ponavljaju\u0107i tro\u0161ak", _s25_2, "Ponavljaju\u0107i tro\u0161ak uspe\u0161no kreiran", _s25_3, "Ponavljaju\u0107i tro\u0161ak uspe\u0161no izmenjen", _s26_2, "Ponavljaju\u0107i tro\u0161ak uspe\u0161no arhiviran", _s25_4, _s24_107, _s25_5, _s38_2, _s26_3, "Ponavljaju\u0107i tro\u0161ak uspe\u0161no povra\u0107en", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, "Google analitika", _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Uputstvo za upotrebu", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Neto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Uvezi podatke", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", "Kada fajl bude spreman primi\u0107ete mejl sa linkom za preuzimanje.", _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user je kreirao redovni ra\u010dun :recurring_invoice", "activity_101", ":user je a\u017eurirao redovni ra\u010dun :recurring_invoice", "activity_102", ":user je arhivirao redovni ra\u010dun :recurring_invoice", "activity_103", ":user je obrisao redovni ra\u010dun :recurring_invoice", "activity_104", ":user je vratio redovni ra\u010dun :recurring_invoice", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Poslednja izmena", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Ime kontakta", _s17_17, "Prezime kontakta", "order", "Order", "unassigned", "Nije dodeljen.", "partial_value", "Mora biti ve\u0107e od nula i manje od sume", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogu\u0107i", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Postavite poddomen ili prika\u017eite ra\u010dun na va\u0161oj internet stranici.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promotivni kod", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Bezbednost", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Pretplata", "subscriptions", "Pretplate", _s16_39, "Nova pretplata", _s17_23, "Izmeni Pretplatu", _s20_23, "Pretplata uspe\u0161no kreirana", _s20_24, "Pretplata uspe\u0161no a\u017eurirana", _s21_28, "Uspe\u0161no arhivirana pretplata", _s20_25, "Uspe\u0161no obrisana pretplata", _s20_26, "Uspe\u0161no uklonjena pretplata", _s21_29, "Uspe\u0161no vra\u0107ena pretplata", _s19_17, "Pretraga 1 Pretplata", _s20_27, "Tra\u017ei :count pretplate", _s26_6, "Poddomen nije dostupan", "connect_gmail", "Pove\u017eite Gmail", _s16_41, "Prekinite vezu sa Gmail-om", "connected_gmail", "Gmail je uspe\u0161no povezan", _s18_29, "Uspe\u0161no je prekinuta veza sa Gmail-om", _s16_43, "Promene u bazi koda mo\u017eda blokiraju a\u017euriranje, mo\u017eete pokrenuti ovu komandu da biste odbacili promene:", _s16_44, "ID broj klijenta", "count_minutes", ":count minuti", _s16_46, "Vreme isteka lozinke", _s29_4, "Zajedni\u010dki broja\u010d ra\u010duna/kredita", "use_last_email", "Koristite poslednju e-po\u0161tu", _s16_48, "Aktivirajte kompaniju", _s21_31, "Omogu\u0107ite e-po\u0161te, redovne ra\u010dune i obave\u0161tenja", _s27_14, "Do\u0161lo je do gre\u0161ke, poku\u0161ajte ponovo", _s27_15, "Molimo prvo postavite lozinku", _s34_6, "Upozorenje: Promena va\u0161eg broja telefona c\u0301e onemoguc\u0301iti 2FA", "help_translate", "Help Translate", _s23_11, "Molimo odaberite dr\u017eavu", "resend_invite", "Ponovo po\u0161aljite pozivnicu", _s19_18, "Uspe\u0161no onemogu\u0107en 2FA", _s16_50, "Uspe\u0161no povezan nalog", _s19_19, "Uspe\u0161no prekinuta veza sa nalogom", "delivered", "Dostavljeno", "bounced", "Odbijene", "spam", "Nepo\u017eeljna e-po\u0161ta", "view_docs", "Pregled dokumenata", _s32_4, "Molimo navedite broj mobilnog telefona da biste omoguc\u0301ili dvofaktorsku potvrdu", "send_sms", "Po\u0161alji SMS poruku", "sms_code", "SMS kod", _s21_32, "O\u010ditajte bar kod uz pomo\u0107 :link odgovaraju\u0107e aplikacije.", _s18_30, "Dvostepena autorizacija uspe\u0161no aktivirana", "connect_google", "Pove\u017eite Google", _s17_25, "Prekinite vezu sa Google-om", _s17_27, "Dvostepena autorizacija", _s18_31, "Onemoguc\u0301ite dva faktora", _s34_7, _s34_8, "stay_logged_in", "Ostanite prijavljeni", _s23_13, "Upozorenje: Va\u0161a sesija uskoro isti\u010de", "count_hours", ":count sati", "count_day", "1 dan", "count_days", ":count dani", _s19_20, _s19_21, _s17_28, "Bezbednosne postavke", "resend_email", "Ponovo po\u0161alji e-po\u0161tu", _s26_8, "Molimo potvrdite adresu svoje e-po\u0161te", _s16_51, "Refundirana uplata", _s19_22, _s22_129, _s19_24, "Izaberite korisnika koji je potvr\u0111en pomoc\u0301u Gmail-a", "list_long_press", "List Long Press", "show_actions", "Prika\u017ei radnje", _s17_30, "Pokrenite opciju vi\u0161e izbora", _s27_17, "E-po\u0161ta je poslata za potvrdu adrese e-po\u0161te", _s21_33, "Da biste koristili :client_counter, dodajte ili :client_number ili :client_id_number da biste spre\u010dili sukobe", "this_quarter", "Ovaj kvartal", "last_quarter", "Poslednji kvartal", "to_update_run", "Za a\u017euriranje pokrenite", _s18_33, "Pretvori u ra\u010dun", _s16_52, "URL za registraciju", "invoice_project", "Naplati Projekat", "invoice_task", "Fakturi\u0161i zadatak", "invoice_expense", "Tro\u0161ak ra\u010duna", _s19_25, "Pretraga 1 uslovi pla\u0107anja", _s20_28, "Pretra\u017ei :count uslove pla\u0107anja", _s16_54, "Sa\u010duvaj i pregledaj", "save_and_email", "Sa\u010duvaj i po\u0161alji e-po\u0161tom", _s16_56, _s17_138, _s16_58, "Konvertovani iznos", _s17_32, "Konvertovano stanje", _s22_28, "Pretvoreno u plac\u0301eno do danas", _s24_18, "Konvertovano kreditno stanje", "converted_total", "Ukupno konvertovano", "is_sent", "Je poslato", _s17_34, "Podrazumevani dokumenti", "document_upload", "Otpremiti dokument", _s20_29, "Dozvoli klijentima da po\u0161alju dokumente", "expense_total", "Ukupni tro\u0161kovi", "enter_taxes", "Unesite poreze", "by_rate", "Prema stopi", "by_amount", "Prema iznosu", "enter_amount", "Unesite iznos", "before_taxes", "Pre poreza", "after_taxes", "Posle poreza", "color", "Boja", "show", "Prika\u017ei", "hide", "Sakrij", "empty_columns", "Prazne kolone", _s21_35, "Re\u017eim za otklanjanje gre\u0161aka je omoguc\u0301en", _s26_9, "Upozorenje: Namenjeno da se koristi na lokalnim ma\u0161inama, \u0161to mo\u017ee dovesti do odavanja pristupnih parametara. Kliknite da biste saznali vi\u0161e.", "running_tasks", "Aktivni zadaci", "recent_tasks", "Nedavni zadaci", "recent_expenses", "Nedavni tro\u0161kovi", _s17_36, "Nadolaze\u0107i tro\u0161kovi", "update_app", "A\u017euriraj aplikaciju", "started_import", "Uspe\u0161no pokrenut uvoz", _s24_20, "Mapiranje duplikata kolona", _s20_30, "Koristi inkluzivne poreze", _s18_35, "Je popust na iznos", "column", "Kolona", "sample", "Uzorak", "map_to", "Mapiraj u", "import", "Uvoz", _s25_15, "Koristite prvi red kao nazive kolona", "select_file", "Mollim odaberite datoteku", _s16_60, "Nijedna datoteka nije odabrana", "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Po ra\u010dunu", "waveaccounting", "Wave ra\u010dunovodstvo", "zoho", "Zoho", "accounting", "Ra\u010dunovodstvo", _s22_30, "Molimo navedite sve CSV datoteke.", "import_type", "Tip uvoza", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Prika\u017ei licence", "webhook_url", "Webhook URL", _s17_38, "Ure\u0111iva\u010d preko celog ekrana", "sidebar_editor", "Ure\u0111iva\u010d na bo\u010dnoj traci", _s22_31, 'Molimo unesite ":value" da biste potvrdili', "purge", "O\u010distiti", "service", "Usluga", "clone_to", "Kloniraj u", "clone_to_other", "Kloniraj u drugo", "labels", "Oznake", "add_custom", "Dodaj prilago\u0111eno", "payment_tax", "Porez na plac\u0301anje", "unpaid", "Nepla\u0107eno", "white_label", "Licenca bez brendiranja", "delivery_note", "Otpremnica", _s24_23, "Poslati ra\u010duni su zaklju\u010dani", _s24_25, "Pla\u0107eni ra\u010duni su zaklju\u010dani", "source_code", "Izvorni kod", "app_platforms", "Dodaj platforme", "invoice_late", "Zakasneli ra\u010dun", "quote_expired", "Ponuda je istekla", "partial_due", "Datum avansa", "invoice_total", "Ra\u010dun sveukupno", "quote_total", "Ukupna ponuda", "credit_total", "Credit Total", _s23_14, "Ra\u010dun sveukupno", "actions", "Akcije", "expense_number", "Broj tro\u0161ka", "task_number", "Broj zadatka", "project_number", "Broj projekta", "project_name", "Naziv projekta", "warning", "Upozorenje", "view_settings", "Prika\u017ei pode\u0161avanja", _s24_27, "Upozorenje: ovo preduze\u0107e jo\u0161 nije aktivirano", "late_invoice", "Zakasneli ra\u010dun", "expired_quote", "Istekla ponuda", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Ime klijenta", "client_phone", "Broj telefona klijenta", "required_fields", "Obavezna polja", "calculated_rate", "Izra\u010dunata stopa", _s17_40, "Podrazumevana stopa zadatka", "clear_cache", "O\u010distite ke\u0161 memoriju", "sort_order", "Redosled sortiranja", "task_status", "Status", "task_statuses", "Statusi zadataka", "new_task_status", "Status novog zadatka", _s16_62, "Uredi status zadatka", _s19_26, "Uspe\u0161no kreiran status zadatka", _s19_27, "Uspe\u0161no a\u017euriran status zadatka", _s20_32, "Uspe\u0161no arhiviran status zadatka", _s19_28, "Uspe\u0161no obrisan status zadatka", _s19_29, "Uspe\u0161no uklonjen status zadatka", _s20_33, "Uspe\u0161no vra\u0107en status zadatka", _s22_32, "Statusi zadataka :value su uspe\u0161no arhivirani", _s21_37, "Statusi zadataka :value su uspe\u0161no obrisani", _s22_33, "Statusi zadataka :value su uspe\u0161no vra\u0107eni", _s18_37, "Pretraga 1 status zadatka", _s20_35, "Pretra\u017ei :count statuse zadataka", _s16_64, "Prika\u017ei tabelu zadataka", _s21_38, "Uvek prika\u017eite odeljak sa zadacima kada kreirate ra\u010dune", _s20_36, "Vremenski dnevnik zadatka ra\u010duna", _s25_16, "Dodajte detalje o vremenu stavkama ra\u010duna", _s20_38, _s20_39, _s25_17, "Dodajte detalje o datumu u stavke ra\u010duna", _s21_39, "Zapo\u010dnite zadatke pre \u010duvanja", _s18_38, "Konfiguri\u0161ite statuse", "task_settings", "Postavke zadatka", _s20_40, "Konfiguri\u0161ite kategorije", _s18_40, _s19_73, _s20_42, _s24_63, _s21_40, "Kategorija izmene tro\u0161kova", _s24_28, "Kategorija tro\u0161kova uspe\u0161no napravljena", _s24_29, "Kategorija tro\u0161kova uspe\u0161no izmenjena", _s25_19, "Kategorija tro\u0161kova uspe\u0161no arhivirana", _s24_30, "Kategorija uspe\u0161no obrisana", _s24_31, "Uspe\u0161no uklonjena kategorija tro\u0161kova", _s25_20, "Kategorija tro\u0161kova uspe\u0161no vra\u0107ena", _s27_21, "Uspe\u0161no arhivirano :count kategorija tro\u0161kova", _s26_10, "Uspe\u0161no obrisana kategorija tro\u0161kova :value", _s27_22, "Uspe\u0161no vra\u0107ena kategorija tro\u0161kova :value", _s23_15, "Pretraga 1 kategorija tro\u0161kova", _s25_22, "Pretra\u017eiti :count kategorije tro\u0161kova", _s21_42, "Koristite dostupne kredite", "show_option", "Prika\u017ei opciju", _s22_34, "Iznos kredita ne mo\u017ee biti vec\u0301i od iznosa uplate", "view_changes", "Prika\u017ei promene", "force_update", "Prisilno a\u017euriranje", _s17_42, "Pokrec\u0301ete najnoviju verziju, ali mo\u017eda postoje ispravke na \u010dekanju.", "mark_paid_help", "Pratite tro\u0161ak koji je plac\u0301en", _s18_42, "Treba biti fakturisan", _s23_16, "Omoguc\u0301ite da se tro\u0161ak fakturi\u0161e", _s29_7, "U\u010dinite dokumente vidljivim", _s21_44, "Podesite kurs", _s16_66, "Pode\u0161avanja tro\u0161kova", _s18_43, "Kloniraj u ponavljajuc\u0301e", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Polje korisnika", "variables", "Varijable", "show_password", "Prika\u017ei lozinku", "hide_password", "Sakrij lozinku", "copy_error", "Kopiraj gre\u0161ku", "capture_card", "Capture Card", _s17_43, "Automatski obra\u010dun je omoguc\u0301en", "total_taxes", "Ukupni porezi", "line_taxes", "Line Taxes", "total_fields", "Ukupno polja", _s25_23, "Uspe\u0161no zaustavljen redovni ra\u010dun", _s25_24, "Uspe\u0161no zapo\u010det redovni ra\u010dun", _s25_25, "Uspe\u0161no je nastavljena ponavljajuc\u0301a faktura", "gateway_refund", "Gateway Refund", _s19_30, "Obradite povrac\u0301aj preko kanala za plac\u0301anje", "due_date_days", "Datum dospe\u0107a", "paused", "Pauzirano", "mark_active", "Ozna\u010diti aktivno", "day_count", "Dan :count", _s22_35, "Prvi dan u mesecu", _s21_45, "Poslednji dan u mesecu", _s17_45, "Koristite uslove plac\u0301anja", "endless", "Beskona\u010dno", "next_send_date", "Sledec\u0301i datum slanja", _s16_68, "Preostali ciklusi", _s17_47, "Ponavljaju\u0107i ra\u010dun", _s18_45, "Ponavljaju\u0107i ra\u010duni", _s21_47, "Novi ponavljaju\u0107i ra\u010dun", _s22_37, "Izmeni ponavljaju\u0107i ra\u010dun", _s25_26, "Uspe\u0161no napravljen redovni ra\u010dun", _s25_27, "Uspe\u0161no a\u017euriran redovni ra\u010dun", _s26_11, "Redovni ra\u010dun uspe\u0161no arhiviran", _s25_28, "Redovni ra\u010dun uspe\u0161no obrisan", _s25_29, "Uspe\u0161no uklonjen redovni ra\u010dun", _s26_12, "Redovni ra\u010dun uspe\u0161no obnovljen", _s27_23, "Redovni :value ra\u010duni su uspe\u0161no arhivirani", _s26_13, "Redovni :value ra\u010duni su uspe\u0161no obrisani", _s27_24, "Redovni :value ra\u010duni su uspe\u0161no vra\u0107eni", _s24_32, "Pretraga 1 redovni ra\u010dun", _s25_30, "Pretra\u017ei :count redovne ra\u010dune", "send_date", "Datum slanja", "auto_bill_on", "Automatska naplata uklju\u010dena", _s28_7, "Minimalni iznos plac\u0301anja", "profit", "Zarada", "line_item", "Stavka", _s18_47, "Dozvoli preplatu", _s23_17, "Podr\u017eite dodatno plac\u0301anje za prihvatanje saveta", _s19_31, _s19_32, _s24_33, "Podr\u0161ka plac\u0301anja delimi\u010dnog minimalnog iznosa /depozita", "test_mode", "Na\u010din testiranja", "opened", "Otvoreno", _s30_4, "Izmirenje nije uspelo", _s30_5, "Izmirenje je uspelo", "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Po\u0161alji e-po\u0161tu", _s17_49, "Red za ponovni poku\u0161aj e-po\u0161te", "failure", "Neuspeh", "quota_exceeded", "Kvota je prema\u0161ena", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "Pogledaj portal", "copy_link", "Kopiraj link", "token_billing", "Sa\u010duvaj detalje kartice", _s24_34, "Dobrodo\u0161li u Invoice Ninja-u", "always", "Uvek", "optin", "Opt-In", "optout", "Opt-Out", "label", "Oznaka", "client_number", "Broj klijenta", "auto_convert", "Auto konverzija", "company_name", "Ime preduze\u0107a", "reminder1_sent", "Podsetnik 1 poslat", "reminder2_sent", "Podsetnik 2 poslat", "reminder3_sent", "Podsetnik 3 poslat", _s18_49, "Podsetnik koji je poslednji poslat", "pdf_page_info", _s27_67, _s16_72, _s29_81, "emailed_quotes", _s36_46, "emailed_credits", "Krediti uspe\u0161no poslati e-po\u0161tom", "gateway", "Kanal prodaje", "view_in_stripe", "Pogledaj u Stripe-u", "rows_per_page", "Redovi po stranici", "hours", "Sati", "statement", "Izjava", "taxes", "Porezi", "surcharge", "Doplata", "apply_payment", "Primeni pla\u0107anje", "apply_credit", "Primeni kredit", "apply", "Primeni", "unapplied", "Neprimenjeno", "select_label", "Izaberi oznaku", "custom_labels", _s18_113, "record_type", "Tip zapisa", "record_name", "Naziv zapisa", "file_type", "Tip datoteke", "height", "Visina", "width", "\u0160irina", "to", "Prima", "health_check", "Zdravstveni pregled", "payment_type_id", "Tip uplate", "last_login_at", "Poslednje prijavljivanje na", "company_key", "Klju\u010d preduze\u0107a", "storefront", "Izlog", "storefront_help", "Omoguc\u0301ite aplikacijama trec\u0301ih strana da kreiraju ra\u010dune", "client_created", "Klijent kreiran", _s20_45, "E-po\u0161ta za onlajn plac\u0301anje", _s20_47, _s25_60, "completed", "Zavr\u0161eno", "gross", "Bruto", "net_amount", "Neto iznos", "net_balance", "Neto stanje", "client_settings", "Pode\u0161avanja klijenta", _s17_51, "Izabrani ra\u010duni", _s17_53, "Izabrana pla\u0107anja", "selected_quotes", "Izabrane ponude", "selected_tasks", "Izabrani zadaci", _s17_55, "Izabrani tro\u0161kovi", _s17_57, "Dolazni ra\u010duni", _s17_59, "Ra\u010duni van valute", "recent_payments", "Nedavne uplate", "upcoming_quotes", "Nadolaze\u0107i predra\u010duni", "expired_quotes", "Istekli predra\u010duni", "create_client", "Kreiraj klijenta", "create_invoice", "Kreiraj ra\u010dun", "create_quote", "Napravi ponudu", "create_payment", "Kreiraj pla\u0107anje", "create_vendor", "Napravi dobavlja\u010da", "update_quote", "A\u017eurirati ponudu", "delete_quote", "Obri\u0161i ponudu", "update_invoice", "A\u017eurirati ra\u010dun", "delete_invoice", "Obri\u0161i ra\u010dun", "update_client", "A\u017eurirati klijenta", "delete_client", "Obri\u0161i klijenta", "delete_payment", "Obri\u0161i uplatu", "update_vendor", "A\u017eurirati dobavlja\u010da", "delete_vendor", _s17_139, "create_expense", "Kreiraj tro\u0161ak", "update_expense", "A\u017euriraj tro\u0161ak", "delete_expense", "Obri\u0161i tro\u0161ak", "create_task", "Kreiraj zadatak", "update_task", "A\u017euriraj Zadatak", "delete_task", "Obri\u0161i zadatak", "approve_quote", "Odobri ponudu", "off", "Isklju\u010deno", "when_paid", "Kada je pla\u0107ena", "expires_on", "Isti\u010de", "free", "Besplatan", "plan", "Plan", "show_sidebar", "Prika\u017ei bo\u010dnu traku", "hide_sidebar", _s18_114, "event_type", "Tip doga\u0111aja", "target_url", "Cilj", "copy", "Kopiraj", "must_be_online", "Molimo ponovo pokrenite aplikaciju kada se pove\u017eete na internet", _s17_61, "Crons treba da bude omogu\u0107ena", "api_webhooks", "API Webhooks", "search_webhooks", "Tra\u017ei :count Webhooks", "search_webhook", "Tra\u017ei 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Novi Webhook", "edit_webhook", "Uredi Webhook", "created_webhook", "Uspe\u0161no kreiran webhook", "updated_webhook", "Uspe\u0161no a\u017euriran webhook", _s16_74, "Uspe\u0161no arhiviran webhook", "deleted_webhook", "Uspe\u0161no obrisan webhook", "removed_webhook", "Uspe\u0161no uklonjen webhook", _s16_75, "Uspe\u0161no vra\u0107en webhook", _s17_62, "Uspe\u0161no arhiviran :value webhook", _s16_76, "Uspe\u0161no obrisan :value webhook", _s16_77, "Uspe\u0161no uklonjen :value webhook", _s17_63, "Uspe\u0161no vra\u0107en :value webhook", "api_tokens", "API tokeni", "api_docs", "API dokumenti", "search_tokens", "Pretra\u017ei :count tokene", "search_token", _s16_245, "token", "Token", "tokens", "Tokeni", "new_token", "Novi token", "edit_token", "Izmeni token", "created_token", "Uspe\u0161no kreiran token", "updated_token", "Uspe\u0161no a\u017euriran token", "archived_token", "Uspe\u0161no arhiviran token", "deleted_token", "Uspe\u0161no obrisan token", "removed_token", "Uspe\u0161no uklonjen token", "restored_token", "Uspe\u0161no vra\u0107en token", "archived_tokens", "Uspe\u0161no arhivirane :value tokena", "deleted_tokens", "Uspe\u0161no obrisane :value tokena", "restored_tokens", "Uspe\u0161no vra\u0107ene :value tokena", _s19_33, _s21_105, _s24_36, "Omoguc\u0301ite klijentima da se sami registruju na portalu", _s21_49, "Prilagodite i pregledajte", "email_invoice", _s16_246, "email_quote", "Po\u0161alji ponudu e-po\u0161tom", "email_credit", "Email Credit", "email_payment", "Po\u0161alji uplatu e-po\u0161tom", _s20_50, "Klijent nema pode\u0161enu adresu e-po\u0161te", "ledger", "Ledger", "view_pdf", "Vidi PDF", "all_records", "Svi zapisi", "owned_by_user", _s20_79, _s16_78, "Preostali kredit", "contact_name", "Ime kontakta", "use_default", "Koristi kao podrazumevano", _s16_80, "Beskrajni podsetnici", "number_of_days", "Broj dana", _s23_19, "Konfiguri\u0161ite uslove plac\u0301anja", "payment_term", "Uslov pla\u0107anja", _s16_81, "Novi uslov pla\u0107anja", _s17_65, "Uredi uslov pla\u0107anja", _s20_51, "Uspe\u0161no kreiran rok plac\u0301anja", _s20_52, "Uspe\u0161no a\u017euriran rok plac\u0301anja", _s21_50, "Uspe\u0161no arhiviran rok plac\u0301anja", _s20_53, "Uspe\u0161no obrisan uslov pla\u0107anja", _s20_54, "Uspe\u0161no uklonjen uslov pla\u0107anja", _s21_51, "Uspe\u0161no vra\u0107en uslov pla\u0107anja", _s22_42, "Uslovi plac\u0301anja :value su uspe\u0161no arhivirani", _s21_52, "Uslovi plac\u0301anja :value su uspe\u0161no obrisani", _s22_43, "Uslovi plac\u0301anja :value su uspe\u0161no vra\u0107eni", "email_sign_in", "Prijavite se putem e-po\u0161te", "change", "Promeniti", _s23_21, _s28_14, _s24_37, "Promeniti u izgled radne povr\u0161ine?", "send_from_gmail", "Poslati sa Gmail-a", "reversed", "Obrnuto", "cancelled", "Otkazano", "credit_amount", "Iznos kredita", "quote_amount", "Iznos ponude", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Sakrij meni", "show_menu", "Prika\u017ei meni", _s18_51, _s21_157, _s16_83, "Pretra\u017ei dokumenta", "search_designs", "Pretra\u017ei dizajne", "search_invoices", "Pretra\u017ei ra\u010dune", "search_clients", "Pretra\u017ei klijente", "search_products", _s18_115, "search_quotes", "Pretra\u017ei ponude", "search_credits", "Pretra\u017ei kredite", "search_vendors", "Pretra\u017ei dobavlja\u010de", "search_users", "Pretra\u017ei korisnike", _s16_84, "Pretra\u017ei poreske stope", "search_tasks", "Pretra\u017ei zadatke", "search_settings", "Pretra\u017ei postavke", "search_projects", _s17_140, "search_expenses", _s17_141, "search_payments", "Pretra\u017ei pla\u0107anja", "search_groups", "Pretra\u017ei grupe", "search_company", "Pretra\u017ei preduze\u0107e", "search_document", "Pretraga 1 dokument", "search_design", "Pretraga 1 dizajn", "search_invoice", "Pretraga 1 ra\u010dun", "search_client", "Pretraga 1 klijent", "search_product", "Pretraga 1 proizvod", "search_quote", "Pretraga 1 ponuda", "search_credit", "Pretraga 1 kredit", "search_vendor", "Pretraga 1 dobavlja\u010d", "search_user", "Pretraga 1 korisnik", "search_tax_rate", "Pretraga 1 poreska stopa", "search_task", "Pretraga 1 zadaci", "search_project", "Pretra\u017ei 1 projekat", "search_expense", "Pretraga 1 tro\u0161ak", "search_payment", "Pretraga 1 pla\u0107anje", "search_group", "Pretraga 1 grupa", "refund_payment", "Isplata povra\u0107aja novca", _s17_69, "Uspe\u0161no otkazan ra\u010dun", _s18_53, "Uspe\u0161no otkazani ra\u010duni", _s16_90, "Uspe\u0161no promenjen ra\u010dun", _s17_70, "Uspe\u0161no promenjeni ra\u010duni", "reverse", "Promeniti", "full_name", "Puno ime", _s17_71, "Grad/dr\u017eava/po\u0161tanski broj", _s17_73, "Po\u0161tanski broj/Grad/Dr\u017eava", "custom1", _s16_348, "custom2", _s17_223, "custom3", _s17_224, "custom4", "\u010cetvrtvo prilago\u0111eno", "optional", "Opciono", "license", "Licenca", "purge_data", "O\u010distiti podatke", _s16_91, "Uspe\u0161no o\u010di\u0161\u0107eni podaci kompanije", _s18_54, "Upozorenje: Ovo c\u0301e trajno izbrisati Va\u0161e podatke, nema mogu\u0107nosti povratka podataka.", "invoice_balance", "Stanje ra\u010duna", "age_group_0", "0 - 30 Dana", "age_group_30", "30 - 60 Dana", "age_group_60", "60 - 90 Dana", "age_group_90", "90 - 120 Dana", "age_group_120", "120+ Dana", "refresh", "Osve\u017ei", "saved_design", "Uspe\u0161no sa\u010duvan dizajn", "client_details", "Detalji klijenta", "company_address", "Adresa preduze\u0107a", "invoice_details", "Detalji ra\u010duna", "quote_details", "Detalji ponude", "credit_details", "Detalji kredita", "product_columns", "Kolone proizvoda", "task_columns", "Kolone zadataka", "add_field", "Dodaj polje", "all_events", "Svi doga\u0111aji", "permissions", "Dozvole", "none", "Nijedan", "owned", "Vlasni\u0161tvo", "payment_success", "Uspe\u0161no pla\u0107anje", "payment_failure", "Neuspe\u0161no pla\u0107anje", "invoice_sent", ":count ra\u010dun poslat", "quote_sent", "Ponuda poslata", "credit_sent", "Kredit poslat", "invoice_viewed", "Pregledan ra\u010dun", "quote_viewed", "Pregledana ponuda", "credit_viewed", "Pregledan kredit", "quote_approved", "Ponuda odobrena", _s25_32, "Primi sva obave\u0161tenja", _s16_92, "Kupi licencu", "apply_license", "Primeni licencu", "cancel_account", "Obri\u0161i nalog", _s22_44, "Upozorenje: Ovo \u0107e trajno obrisati va\u0161 nalog, bez opcije povra\u0107aja podataka.", "delete_company", "Izbri\u0161i kompaniju", _s22_45, "Upozorenje: Ovo \u0107e potpuno obrisati podatke o Va\u0161oj kompaniji, nema mogu\u0107nosti povratka podataka.", "enabled_modules", "Dozvoljeni moduli", "converted_quote", "Uspe\u0161no konvertovana ponuda", "credit_design", "Dizajn kredita", "includes", "Uklju\u010duje", "header", "Zaglavlje", "load_design", "U\u010ditaj Dizajn", "css_framework", "CSS Okvir", "custom_designs", "Prilago\u0111eni Dizajni", "designs", "Dizajni", "new_design", "Novi dizajn", "edit_design", "Izmeni dizajn", "created_design", "Uspe\u0161no kreiran dizajn", "updated_design", "Uspe\u0161no izmenjen dizajn", "archived_design", "Uspe\u0161no arhiviran dizajn", "deleted_design", "Uspe\u0161no obrisan dizajn", "removed_design", "Uspe\u0161no uklonjen dizajn", "restored_design", "Uspe\u0161no vra\u0107en dizajn", _s16_94, "Uspe\u0161no arhivirane :value dizajna", "deleted_designs", "Uspe\u0161no obrisane :value dizajna", _s16_95, "Uspe\u0161no vra\u0107ene :value dizajna", "proposals", "Ponude", "tickets", "Tiketi", _s16_96, "Ponavljaju\u0107a ponuda", "recurring_tasks", _s19_74, _s18_55, "Upravljanje ra\u010dunom", "credit_date", "Datum kredita", "credit", "Kredit", "credits", "Krediti", "new_credit", "Unesi kredit", "edit_credit", "Uredi kredit", "created_credit", "Uspe\u0161no kreiran kredit", "updated_credit", "Kredit uspe\u0161no izmenjen", "archived_credit", "Uspe\u0161no arhiviran kredit", "deleted_credit", "Uspe\u0161no obrisan kredit", "removed_credit", "Uspe\u0161no uklonjen kredit", "restored_credit", "Uspe\u0161no vra\u0107en kredit", _s16_98, "Uspe\u0161no arhivirano :count kredita", "deleted_credits", "Uspe\u0161no obrisano :count kredita", _s16_99, "Uspe\u0161no vra\u0107ene :value kredita", "current_version", _s16_247, "latest_version", "Poslednja verzija", "update_now", "A\u017euriraj odmah", _s26_19, "Dostupna je nova verzija veb aplikacije", _s16_100, _s19_75, "app_updated", "A\u017euriranje je uspe\u0161no zavr\u0161eno", "learn_more", _s16_248, "integrations", "Integracije", "tracking_id", "ID prac\u0301enja", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Uslovi za kredit", "new_company", "Novo preduze\u0107e", "added_company", "Uspe\u0161no dodano preduze\u0107e", "company1", "Prilago\u0111ena kompanija 1", "company2", "Prilago\u0111ena kompanija 2", "company3", "Prilago\u0111ena kompanija 3", "company4", "Prilago\u0111ena kompanija 4", "product1", "Prilogo\u0111en proizvod 1", "product2", "Prilogo\u0111en proizvod 2", "product3", "Prilogo\u0111en proizvod 3", "product4", "Prilogo\u0111en proizvod 4", "client1", "Prilago\u0111en klijent 1", "client2", "Prilago\u0111en klijent 2", "client3", "Prilago\u0111en klijent 3", "client4", "Prilago\u0111en klijent 4", "contact1", "Prilago\u0111en kontakt 1", "contact2", "Prilago\u0111en kontakt 2", "contact3", "Prilago\u0111en kontakt 3", "contact4", "Prilago\u0111en kontakt 4", "task1", "Prilago\u0111en zadatak 1", "task2", "Prilago\u0111en zadatak 2", "task3", "Prilago\u0111en zadatak 3", "task4", "Prilago\u0111en zadatak 4", "project1", "Prilago\u0111en projekat 1", "project2", "Prilago\u0111en projekat 2", "project3", "Prilago\u0111en projekat 3", "project4", "Prilago\u0111en projekat 4", "expense1", "Prilago\u0111en tro\u0161ak 1", "expense2", "Prilago\u0111en tro\u0161ak 2", "expense3", "Prilago\u0111en tro\u0161ak 3", "expense4", "Prilago\u0111en tro\u0161ak 4", "vendor1", "Prilago\u0111en dobavlja\u010d 1", "vendor2", "Prilago\u0111en dobavlja\u010d 2", "vendor3", "Prilago\u0111en dobavlja\u010d 3", "vendor4", "Prilago\u0111en dobavlja\u010d 4", "invoice1", "Prilago\u0111en ra\u010dun 1", "invoice2", "Prilago\u0111en ra\u010dun 2", "invoice3", "Prilago\u0111en ra\u010dun 3", "invoice4", "Prilago\u0111en ra\u010dun 4", "payment1", "Prilago\u0111eno pla\u0107anje 1", "payment2", "Prilago\u0111eno pla\u0107anje 2", "payment3", "Prilago\u0111eno pla\u0107anje 3", "payment4", "Prilago\u0111eno pla\u0107anje 4", "surcharge1", _s21_158, "surcharge2", _s21_159, "surcharge3", _s21_160, "surcharge4", _s21_161, "group1", "Prilago\u0111ena grupa 1", "group2", "Prilago\u0111ena grupa 2", "group3", "Prilago\u0111ena grupa 3", "group4", "Prilago\u0111ena grupa 4", "reset", "Resetuj", "number", "Broj", "export", "Izvoz", "chart", "Grafikon", "count", "Brojati", "totals", "Totali", "blank", "Prazno", "day", "Dan", "month", "Mesec", "year", "Godina", "subgroup", "Podgrupa", "is_active", "je aktivno", "group_by", "Grupi\u0161i po", "credit_balance", "Stanje kredita", _s18_61, "Poslednja prijava kontakta", _s17_77, _s17_142, "contact_phone", "Kontakt telefon", _s21_53, "Kontaktirajte prilago\u0111enu vrednost 1", _s21_54, "Kontaktirajte prilago\u0111enu vrednost 2", _s21_55, "Kontaktirajte prilago\u0111enu vrednost 3", _s21_56, "Kontaktirajte prilago\u0111enu vrednost 4", _s17_79, "Adresa za isporuku- ulica", _s17_80, "Adresa za isporuku- stan/apartman", "shipping_city", "Adresa za isporuku- grad", "shipping_state", "Adresa za isporuku- Dr\u017eava/Pokrajina", _s20_55, "Adresa za isporuku- po\u0161tanski broj", _s16_130, "Adresa za isporuku- dr\u017eava", _s16_132, "Adresa naplate - Ulica", _s16_133, "Adresa ra\u010duna - Stan/Apartman", "billing_city", "Adresa naplate - Grad", "billing_state", "Adresa naplate - Dr\u017eava/Pokrajina", _s19_36, "Adresa naplate - Po\u0161tanski broj", "billing_country", "Adresa naplate - Dr\u017eava", "client_id", "ID klijenta", "assigned_to", "Dodeljeno za", "created_by", "Kreiran od :name", "assigned_to_id", "Dodeljeno za Id", "created_by_id", "Kreirano od Id", "add_column", "Dodaj kolonu", "edit_columns", "Izmeni kolone", "columns", "Kolone", "aging", "Zastarevanje", "profit_and_loss", "Zarada i gubitak", "reports", "Izve\u0161taji", "report", "Izve\u0161taj", "add_company", "Dodaj preduze\u0107e", "unpaid_invoice", "Nepla\u0107eni ra\u010dun", "paid_invoice", "Pla\u0107eni ra\u010dun", _s16_134, "Neodobrena ponuda", "help", "Pomo\u0107", "refund", "Povra\u0107aj novca", "refund_date", "Datum povra\u0107aja novca", "filtered_by", "Filtrirano po", "contact_email", "Kontakt email", "multiselect", "Vi\u0161e izbora", "entity_state", "Dr\u017eava", "verify_password", "Potvrdi lozinku", "applied", "Primenjeno", _s21_57, "Uklju\u010dite nedavne gre\u0161ke iz prijava", _s30_8, "Primili smo va\u0161u poruku i poku\u0161ac\u0301emo da odgovorimo \u0161to pre.", "message", "Poruka", "from", "\u0160alje", _s20_57, "Prika\u017ei detalje proizvoda", _s25_34, "Prika\u017ei opis i cenu u padaju\u0107oj listi proizvoda", _s20_59, "PDF renderer zahteva :version", _s18_64, "Podesite procenat naknade", _s23_23, "Podesite procenat da biste uzeli u obzir naknadu", _s18_66, "Konfiguri\u0161ite pode\u0161avanja\xa0", "support_forum", "forum podr\u0161ke", "about", "O", "documentation", "Dokumentacija", "contact_us", _s17_143, "subtotal", "Sveukupno", "line_total", "Ukupno", "item", "Stavka", "credit_email", "E-po\u0161ta za kreditiranje", "iframe_url", "Sajt", "domain_url", "Domen URL", _s21_58, _s20_80, _s20_60, "Lozinka mora da sadr\u017ei veliko slovo i broj", _s19_38, _s26_46, _s23_24, "Kontrolna tabla portala za klijente", _s20_61, "Molimo unesite vrednost", "deleted_logo", "Logo je uspe\u0161no obrisan", "yes", "Da", "no", "Ne", "generate_number", "Generi\u0161ite broj", "when_saved", "kada je sa\u010duvan", "when_sent", "kada je poslat", "select_company", "Izaberi kompaniju", "float", "Plutaju\u0107i", "collapse", "Padaju\u0107i", "show_or_hide", "Prika\u017ei/sakrij", "menu_sidebar", "Bo\u010dna traka menija", "history_sidebar", "Bo\u010dna traka istorije", "tablet", "Tablet", "mobile", "Mobilni", "desktop", "Desktop", "layout", "Raspored", "view", "Pregled", "module", "Modul", "first_custom", _s16_348, "second_custom", _s17_223, "third_custom", _s17_224, "show_cost", "Prika\u017ei cenu", _s17_82, "Prika\u017ei cenu proizvoda", "show_cost_help", "Prika\u017eite polje cene proizvoda da biste pratili mar\u017eu/profit", _s21_59, _s26_47, _s26_21, "Prika\u017eite polje za koli\u010dinu proizvoda, ina\u010de podrazumevan je jedan", _s21_61, _s23_45, _s26_22, "Prika\u017eite polje za koli\u010dinu stavke, ina\u010de podrazumevana je jedna", _s21_63, "Prika\u017ei popust na proizvod", _s26_23, "Prika\u017eite polje za popust na stavku", _s16_136, "Podrazumevana koli\u010dina", _s21_65, "Automatski podesite koli\u010dinu stavke na jednu", "one_tax_rate", "Jedna poreska stopa", "two_tax_rates", "Dve poreske stope", "three_tax_rates", "Tri poreske stope", _s16_138, "Zadata poreska stopa", "user", "Korisnik", "invoice_tax", "Porez na ra\u010dun", "line_item_tax", "Porez na stavku", "inclusive_taxes", "Sa ura\u010dunatim porezima", _s17_84, "Stope poreza na ra\u010dun", "item_tax_rates", "Poreske stope stavke", _s18_68, _s25_94, "configure_rates", "Konfiguri\u0161ite stope", _s18_69, "Konfiguri\u0161ite platne kanale", "tax_settings", "Pode\u0161avanja poreza", _s18_71, "Poreske stope", "accent_color", "Naglasiti boju", "switch", "Prebaci", _s19_40, "Lista odvojena zarezima", "options", "Opcije", _s16_140, "Tekst u jednom redu", "multi_line_text", "Tekst u vi\u0161e redova", "dropdown", "Padaju\u0107i meni", "field_type", "Tip polja", _s27_35, "Poruka za povra\u0107aj lozinke je poslata", "submit", "Podneti", _s16_142, "Povratite va\u0161u lozinku", "late_fees", "Zakasnele takse", "credit_number", "Broj kredita", "payment_number", "Broj plac\u0301anja", "late_fee_amount", "Vrednost tro\u0161ka ka\u0161njenja", _s16_143, "Procenat tro\u0161ka ka\u0161njenja", "schedule", "Raspored", "before_due_date", "Pre roka", "after_due_date", "Posle roka", _s18_73, "Posle datuma ra\u010duna", "days", "Dani", "invoice_email", "E-po\u0161ta ra\u010duna", "payment_email", "E-po\u0161ta uplate", "partial_payment", _s19_143, "payment_partial", _s19_143, _s21_66, "Delimi\u010dno plac\u0301anje putem e-po\u0161te", "quote_email", "E-po\u0161ta ponuda", _s16_145, "Beskrajni podsetnik", _s16_147, _s23_46, "administrator", "Administrator", _s18_74, "Dozvolite korisniku da upravlja korisnicima, menja postavke i menja sve zapise", "user_management", _s23_47, "users", "Korisnici", "new_user", "Novi korisnik", "edit_user", "Uredi korisnika", "created_user", "Uspe\u0161no kreiran korisnik", "updated_user", "Korisnik je uspe\u0161no a\u017euriran", "archived_user", "Uspe\u0161no arhiviran korisnik", "deleted_user", "Korisnik je uspe\u0161no obrisan", "removed_user", "Uspe\u0161no uklonjen korisnik", "restored_user", "Uspe\u0161no obnovljen korisnik", "archived_users", "Uspe\u0161no arhivirane :value korisnika", "deleted_users", "Uspe\u0161no obrisane :value korisnika", "removed_users", "Uspe\u0161no uklonjene :value korisnika", "restored_users", "Uspe\u0161no vra\u0107ene :value korisnika", _s16_149, "Op\u0161te postavke", "invoice_options", "Opcije ra\u010duna", _s17_86, _s21_106, _s22_52, _s70_0, _s23_26, _s19_77, _s28_20, "Uklju\u010dite prilo\u017eene slike u fakturu.", _s16_151, _s20_81, _s16_152, _s19_76, "first_page", "Prva stranica", "all_pages", "Sve stranice", "last_page", "Poslednja stranica", "primary_font", "Primarni font", "secondary_font", "Sekundarni font", "primary_color", "Primarna boja", "secondary_color", "Sekundarna boja", "page_size", "Veli\u010dina stranice", "font_size", "Veli\u010dina fonta", "quote_design", "Dizajn ponude", "invoice_fields", "Polja ra\u010duna", "product_fields", "Polja proizvoda", "invoice_terms", "Uslovi ra\u010duna", "invoice_footer", "Podno\u017eje ra\u010duna", "quote_terms", "Uslovi predra\u010duna", "quote_footer", "Podno\u017eje ponude", _s18_75, "Automatsko slanje ePo\u0161te", _s23_27, "Automatski po\u0161alji e-po\u0161tom ponavljaju\u0107e ra\u010dune u momentu kreiranja.", _s18_76, "Automatsko Arhiviranje", _s23_28, "Automatski arhiviraj ponude kada su konvertovane.", _s18_77, "Auto konverzija", _s23_29, "Automatski konvertujte predra\u010dun u ra\u010dun nakon \u0161to je odobren od strane klijenta.", _s17_88, "Pode\u0161avanje toka rada", "freq_daily", "Dnevni", "freq_weekly", "Nedeljni", "freq_two_weeks", "Dve nedelje", "freq_four_weeks", "\u010cetiri nedelje", "freq_monthly", "Mese\u010dno", "freq_two_months", "Dva meseca", _s17_90, "Tri meseca", _s16_153, "\u010cetiri meseca", "freq_six_months", "\u0160est meseci", "freq_annually", "Godi\u0161nje", "freq_two_years", "Dve godine", _s16_154, "Tri godine", "never", "Nikada", "company", "Kompanija", _s17_91, "Generisani brojevi", "charge_taxes", "Naplati poreze", "next_reset", "Slede\u0107e ponovno pode\u0161avanje", "reset_counter", "Ponovo podesite broja\u010d", _s16_155, "Prefiks koji se ponavlja", "number_padding", "Pading broja", "general", "Op\u0161ti", "surcharge_field", "Polje doplate", "company_field", "Polje kompanije", "company_value", "Vrednost kompanije", "credit_field", "Polje kredita", "invoice_field", "Polje ra\u010duna", _s17_93, "Doplata za ra\u010dun", "client_field", "Polje klijenta", "product_field", "Polje proizvoda", "payment_field", "Polje plac\u0301anja", "contact_field", "Kontakt polje", "vendor_field", "Polje dobavlja\u010da", "expense_field", "Polje tro\u0161kova", "project_field", "Polje Projekta", "task_field", "Polje zadatka", "group_field", "Grupno polje", "number_counter", "Broja\u010d brojeva", "prefix", "Prefiks", "number_pattern", "\u0160ablon broja", "messages", "Poruke", "custom_css", "Prilago\u0111eni CSS", _s17_95, _s22_78, _s16_157, "Prika\u017ei na PDF-u", _s21_68, "Prikazite potpis klijenta na PDF-u ra\u010duna/ponude.", _s25_40, "Polje za potvrdu uslova ra\u010duna", _s30_9, "Zahtevajte od klijenata da potvrde da prihvataju uslove ra\u010duna.", _s23_30, "Polje za potvrdu uslova predra\u010duna", _s28_21, "Zahtevajte od klijenata da potvrde da prihvataju uslove predra\u010duna.", _s25_41, "Potpis ra\u010duna", _s30_10, "Zahtevajte od klijenata da dostave potpis.", _s23_31, "Potpis predra\u010duna", _s22_54, "Ra\u010duni za\u0161tic\u0301eni lozinkom", _s27_36, "Omoguc\u0301ava vam da postavite lozinku za svaki kontakt. Ako je lozinka postavljena, kontakt c\u0301e morati da unese lozinku pre nego \u0161to pregleda ra\u010dune.", "authorization", "Ovla\u0161c\u0301enje", "subdomain", "Poddomen", "domain", "Domen", "portal_mode", "Re\u017eim portala", "email_signature", "Sa po\u0161tovanjem,", _s24_38, "Olak\u0161ajte svojim klijentima pla\u0107anje dodavanjem schema.org markapa va\u0161oj e-po\u0161ti.", "plain", "Obi\u010dno", "light", "Svetlo", "dark", "Tamno", "email_design", "Dizajn e-po\u0161te", "attach_pdf", "Zaka\u010di PDF", _s16_158, "Zaka\u010di dokumenta", "attach_ubl", "Zaka\u010di UBL", "email_style", "Stil e-po\u0161te", _s19_42, "Omogu\u0107i markap", "reply_to_email", "Odgovori na email", "reply_to_name", "Odgovori na ime", "bcc_email", "BCC Email", "processed", "Obra\u0111eno", "credit_card", "Kreditna Kartica", "bank_transfer", "Bankovni prenos", "priority", "Prioritet", "fee_amount", "Iznos takse", "fee_percent", "Procenat takse", "fee_cap", "Granica takse", "limits_and_fees", "Ograni\u010denja/takse", "enable_min", "Omogu\u0107i minimum", "enable_max", "Omogu\u0107i maksimum", "min_limit", "Min: :min", "max_limit", "Maks: :max", "min", "Min", "max", "Maks", _s19_43, "Logoi prihva\u0107enih kartica", "credentials", "Podaci", "update_address", "A\u017euriraj adresu", _s19_45, "A\u017euriraj adresu klijenta sa dostavljenim detaljima", "rate", "Stopa", "tax_rate", "Poreska stopa", "new_tax_rate", "Nova poreska stopa", "edit_tax_rate", "Uredi poresku stopu", _s16_160, "Uspe\u0161no kreirana poreska stopa", _s16_161, "Uspe\u0161no a\u017eurirana poreska stopa", _s17_98, "Uspe\u0161no arhivirana poreska stopa", _s16_162, "Poreska stopa uspe\u0161no obrisana", _s17_99, "Poreska stopa uspe\u0161no povra\u0107ena", _s18_78, "Uspe\u0161no arhivirane :value poreskih stopa", _s17_100, "Uspe\u0161no obrisane :value poreskih stopa", _s18_79, "Uspe\u0161no vra\u0107ene :value poreskih stopa", "fill_products", "Automatski popuni proizvode", _s18_80, _s53_2, "update_products", "Automatski a\u017euriraj proizvode", _s20_65, "A\u017euriranje ra\u010duna automatski \u0107e a\u017eurirati registar proizvoda", _s16_163, "Konvertuj proizvode", _s21_69, "Automatski konvertuj cene proizvoda u valutu klijenta", "fees", "Naknade", "limits", "Ograni\u010denja", "provider", "Snadbeva\u010d", "company_gateway", "Platni kanal", _s16_165, "Platni kanali", _s19_46, "Novi platni kanal", _s20_66, "Uredi platni kanal", _s23_32, "Platni kanal uspe\u0161no kreiran", _s23_33, "Platni kanal uspe\u0161no a\u017euriran", _s24_39, "Platni kanal uspe\u0161no arhiviran", _s23_34, "Platni kanal uspe\u0161no obrisan", _s24_40, "Platni kanal uspe\u0161no povra\u0107en", _s25_43, "Uspe\u0161no arhivirana :value platnih kanala", _s24_41, "Uspe\u0161no obrisana :value platnih kanala", _s25_44, "Uspe\u0161no vra\u0107ena :value platnih kanala", _s16_167, "Nastavi izmene", "discard_changes", "Otka\u017ei izmene", "default_value", "Podrazumevana vrednost", "disabled", "Onemogu\u0107eno", "currency_format", "Format valute", _s21_70, "Prvi dan u nedelji", _s23_35, "Prvi mesec u godini", "sunday", "Nedelja", "monday", "Ponedeljak", "tuesday", "Utorak", "wednesday", "Sreda", "thursday", "\u010cetvrtak", "friday", "Petak", "saturday", "Subota", "january", "Januar", "february", "Februar", "march", "Mart", "april", "April", "may", "Maj", "june", "Jun", "july", "Jul", "august", "Avgust", "september", "Septembar", "october", "Oktobar", "november", "Novembar", "december", "Decembar", "symbol", "Simbol", "ocde", "Kod", "date_format", "Format datuma", "datetime_format", "Format datuma i vremena", "military_time", "24 satno vreme", _s18_81, "24-\u010dasovni prikaz", "send_reminders", "Po\u0161alji podsetnike", "timezone", "Vremenska zona", _s19_47, "Filtrirano po projektu", _s17_101, _s19_78, _s19_49, _s20_82, _s18_82, _s22_79, _s18_84, _s24_64, "group_settings", "Pode\u0161avanja grupe", "group", "Grupa", "groups", "Grupe", "new_group", "Nova grupa", "edit_group", "Uredi grupu", "created_group", "Grupa je uspe\u0161no kreirana", "updated_group", "Grupa je uspe\u0161no a\u017eurirana", "archived_groups", "Uspe\u0161no arhivirane :value grupa", "deleted_groups", "Uspe\u0161no obrisane :value grupa", "restored_groups", "Uspe\u0161no vra\u0107ene :value grupa", "archived_group", "Grupa je uspe\u0161no arhivirana", "deleted_group", "Grupa je uspe\u0161no obrisana", "restored_group", "Grupa je uspe\u0161no vra\u0107ena", "upload_logo", "Otpremi logo", "uploaded_logo", "Logo je uspe\u0161no otpremljen", "logo", "Logo", "saved_settings", "Postavke su uspe\u0161no sa\u010duvane", _s16_169, _s18_116, "device_settings", _s16_250, "defaults", "Podrazumevano", "basic_settings", "Osnovna pode\u0161avanja", _s17_103, _s17_144, "company_details", "Detalji preduze\u0107a", "user_details", _s17_145, "localization", "Lokalizacija", "online_payments", "Online uplate", "tax_rates", "Porezne stope", "notifications", "Obave\u0161tenja", "import_export", "Uvoz i Izvoz", "custom_fields", _s17_146, "invoice_design", "Dizajn ra\u010duna", "buy_now_buttons", "Dugmad za kupovinu odmah", "email_settings", _s16_251, _s23_37, "\u0160abloni & podsetnici", _s22_55, "Kreditne kartice & banke", _s19_51, _s22_80, "price", "Cena", "email_sign_up", "Prijavita putem e-po\u0161te", "google_sign_up", "Prijava putem Google-a", _s27_40, "Hvala Vam na kupovini!", "redeem", "Iskoristi", "back", "Nazad", "past_purchases", "Ranije kupovine", _s19_53, _s18_117, "pro_plan", "Pro plan", "enterprise_plan", "Plan preduze\u0107a", "count_users", _s16_252, "upgrade", "Nadogradi", _s25_45, "Unesite ime", _s24_42, "Unesite prezime", _s33_21, "Molimo prihvatite uslove kori\u0161\u0107enja i politiku privatnosti da biste registrovali korisni\u010dki nalog.", "i_agree_to_the", "Sla\u017eem se sa", _s16_171, "Uslovi kori\u0161tenja usluge", "privacy_policy", "Politika privatnosti", "sign_up", "Prijava", "account_login", _s18_119, "view_website", "Poseti internet stranicu", "create_account", "Napravi nalog", "email_login", _s21_107, "create_new", "Kreiraj novo", _s18_86, "Nijedan zapis nije odabran", _s21_73, "Molimo sa\u010duvajte ili otka\u017eite izmene", "download", "Preuzmi", _s27_41, "Zahteva plan preduzec\u0301a", "take_picture", "Fotografi\u0161i", "upload_file", "Otpremi datoteku", "document", "Dokument", "documents", "Dokumenti", "new_document", "Novi dokument", "edit_document", "Izmeni dokument", _s17_105, "Uspe\u0161no otpremljen dokument", _s16_173, "Uspe\u0161no a\u017euriran dokument", _s17_106, "Uspe\u0161no arhiviran dokument", _s16_174, "Uspe\u0161no obrisan dokument", _s17_107, "Uspe\u0161no vra\u0107en dokument", _s18_88, "Uspe\u0161no arhivirane :value dokumenata", _s17_108, "Uspe\u0161no obrisane :value dokumenata", _s18_89, "Uspe\u0161no vra\u0107ene :value dokumenata", "no_history", "Nema istorije", "expense_date", "Datum tro\u0161ka", "pending", "Na \u010dekanju", _s16_175, "Prijavljen", _s16_176, "Na \u010dekanju", _s16_177, "Fakturisano", "converted", "Konvertovano", _s24_44, "Dodaj dokumente uz Ra\u010dun", "exchange_rate", "Kurs", _s16_178, "Konvertuj valutu", "mark_paid", "Ozna\u010diti kao pla\u0107eno", "category", "Kategorija", "address", "Adresa", "new_vendor", "Novi dobavlja\u010d", "created_vendor", "Uspe\u0161no kreiran dobavlja\u010d", "updated_vendor", "Uspe\u0161no a\u017euriran dobavlja\u010d", "archived_vendor", "Uspe\u0161no arhiviran dobavlja\u010d", "deleted_vendor", "Uspe\u0161no obrisan dobavlja\u010d", "restored_vendor", "Uspe\u0161no obnovljen dobavlja\u010d", _s16_179, "Uspe\u0161no arhivirano :count dobavlja\u010da", "deleted_vendors", "Uspe\u0161no obrisano :count dobavlja\u010da", _s16_180, "Uspe\u0161no vra\u0107ene :value dobavlja\u010da", "new_expense", "Unesi tro\u0161ak", "created_expense", "Uspe\u0161no kreiran tro\u0161ak", "updated_expense", "Uspe\u0161no a\u017euriran tro\u0161ak", _s16_181, "Uspe\u0161no arhiviran tro\u0161ak", "deleted_expense", "Uspe\u0161no obrisan tro\u0161ak", _s16_182, "Uspe\u0161no obnovljen tro\u0161ak", _s17_109, "Uspe\u0161no arhivirani tro\u0161kovi", _s16_183, "Uspe\u0161no obrisani tro\u0161kovi", _s17_110, "Uspe\u0161no vra\u0107ene :value tro\u0161kova", "copy_shipping", "Kopiraj adresu za isporuku", "copy_billing", "Kopiraj adresu za naplatu", "design", "Dizajn", _s21_74, "Zapis nije prona\u0111en", "invoiced", "Fakturisano", "logged", "Prijavljen", "running", "Pokrenuto", "resume", "Nastavi", "task_errors", "Molimo korigujte vremena koja se poklapaju", "start", "Po\u010detak", "stop", "Zavr\u0161etak", "started_task", "Zadatak uspe\u0161no pokrenut", "stopped_task", "Uspe\u0161no zavr\u0161en zadatak", "resumed_task", "Uspe\u0161no nastavljen zadatak", "now", "Sada", _s16_184, "Automatsko pokretanje zadataka", "timer", "\u0160toperica", "manual", "Ru\u010dno", "budgeted", "Bud\u017eetirano", "start_time", "Po\u010detno vreme", "end_time", "Vreme zavr\u0161etka", "date", "Datum", "times", "Vremena", "duration", "Trajanje", "new_task", "Novi zadatak", "created_task", "Uspe\u0161no kreiran zadatak", "updated_task", "Uspe\u0161no a\u017euriran zadatak", "archived_task", "Uspe\u0161no arhiviran zadatak", "deleted_task", "Uspe\u0161no obrisan zadatak", "restored_task", "Uspe\u0161no obnovljen zadatak", "archived_tasks", "Uspe\u0161no arhivirano :count zadataka", "deleted_tasks", "Uspe\u0161no obrisano :count zadataka", "restored_tasks", "Uspe\u0161no vra\u0107ene :value zadataka", _s19_55, _s18_118, "budgeted_hours", "Bud\u017eetirani sati", "created_project", "Projekat je uspe\u0161no kreiran", "updated_project", "Projekat je uspe\u0161no a\u017euriran", _s16_186, "Projekat je uspe\u0161no arhiviran", "deleted_project", _s24_107, _s16_187, "Projekat uspe\u0161no vra\u0107en", _s17_111, "Uspe\u0161no arhivirano :count projekata", _s16_188, "Uspe\u0161no obrisano :count projekata", _s17_112, "Uspe\u0161no vra\u0107ene :value projekata", "new_project", "Novi projekat", _s27_45, "Hvala Vam \u0161to koristite na\u0161u aplikaciju!", "if_you_like_it", "Ako Vam se dopada molimo Vas", "click_here", "kliknite ovde", _s18_90, "Kliknite ovde", "to_rate_it", "da je ocenite.", "average", "Prosek", "unapproved", "Neodobreno", _s30_15, "Molimo potvrdite autenti\u010dnost da biste promenili ovo pode\u0161avanje", "locked", "Zaklju\u010dano", "authenticate", "Potvrditi autenti\u010dnost", _s19_57, "Molimo potvrdite autenti\u010dnost", _s24_46, "Biometrijska potvrda autenti\u010dnosti", "footer", "Podno\u017eje", "compare", "Uporedi", "hosted_login", "Hostovani login", "selfhost_login", "Samohostovani login", "google_sign_in", "Prijavite se pomoc\u0301u Google-a", "today", "Danas", "custom_range", "Prilago\u0111eni opseg", "date_range", "Opseg datuma", "current", "Teku\u0107i", "previous", "Prethodni", "current_period", "Teku\u0107i period", _s17_113, "Period za upore\u0111ivanje", "previous_period", "Prethodni period", "previous_year", _s16_253, "compare_to", "Uporedi sa", "last7_days", "Poslednjih 7 dana", "last_week", "Pro\u0161le nedelje", "last30_days", "Poslednjih 30 dana", "this_month", "Ovog meseca", "last_month", "Pro\u0161log meseca", "this_year", "Ove godine", "last_year", "Pro\u0161le godine", "custom", "Prilago\u0111eno", _s16_189, "Kloniraj u ra\u010dun", "clone_to_quote", "Kloniraj u ponudu", "clone_to_credit", "Clone to Credit", "view_invoice", "Pregled ra\u010duna", "convert", "Konvertuj", "more", "Vi\u0161e", "edit_client", "Uredi klijenta", "edit_product", "Uredi proizvod", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi ponudu", "edit_payment", "Izmeni uplatu", "edit_task", "Uredi zadatak", "edit_expense", "Izmeni tro\u0161ak", "edit_vendor", _s16_254, "edit_project", "Uredi projekat", _s20_68, "Izmeni ponavljaju\u0107u ponudu", "billing_address", "Adresa ra\u010duna", _s16_191, "Adresa za slanje", "total_revenue", "Ukupni prihod", "average_invoice", "Prose\u010dni ra\u010dun", "outstanding", "Nenapla\u0107eno", "invoices_sent", ":count ra\u010duni poslati", "active_clients", _s16_255, "close", "Zatvori", "email", "Email", "password", "Lozinka", "url", "URL", "secret", "Secret", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Sortiranje", "search", "Pretraga", "active", "Aktivan", "archived", "Arhivirano", "deleted", "Obrisano", "dashboard", "Kontrolna tabla", "archive", "Arhiva", "delete", "Obri\u0161i", "restore", "Vrati", _s16_193, "Osve\u017eavanje zavr\u0161eno", _s23_38, "Molimo, unesite svoju adresu e-po\u0161te", _s26_32, "Molimo, unesite svoju lozinku", _s21_77, "Molimo, unesite svoj URL", _s26_34, "Molimo, unesite \u0161ifru proizvoda", "ascending", "Rastu\u0107e", "descending", "Opadaju\u0107e", "save", "Snimi", _s17_115, "Do\u0161lo je do gre\u0161ke", "paid_to_date", "Pla\u0107eno na vreme", "balance_due", "Stanje duga", "balance", "Stanje", "overview", "Pregled", "details", "Detalji", "phone", "Telefon", "website", "Sajt", "vat_number", "PIB", "id_number", "Mati\u010dni broj", "create", "Kreiraj", _s19_59, "Vrednost :value kopirana na radnu tablu", "error", "Gre\u0161ka", _s16_195, "Pokretanje nije uspelo", "contacts", "Kontakti", "additional", "Dodatno", "first_name", "Ime", "last_name", "Prezime", "add_contact", "Dodaj kontakt", "are_you_sure", _s18_120, "cancel", "Odustani", "ok", "Ok", "remove", "Ukloni", _s16_197, "Adresa e-po\u0161te nije validna", "product", "Proizvod", "products", "Proizvodi", "new_product", "Novi proizvod", "created_product", "Proizvod je uspe\u0161no kreiran", "updated_product", "Proizvod je uspe\u0161no a\u017euriran", _s16_199, "Proizvod je uspe\u0161no arhiviran", "deleted_product", "Proizvod uspe\u0161no obrisan", _s16_200, "Proizvod uspe\u0161no vra\u0107en", _s17_117, "Uspe\u0161no arhivirano :count proizvoda", _s16_201, "Uspe\u0161no obrisano :count proizvoda", _s17_118, "Uspe\u0161no vra\u0107ene :value proizvoda", "product_key", "Proizvod", "notes", "Bele\u0161ke", "cost", "Cena", "client", "Klijent", "clients", "Klijenti", "new_client", "Novi klijent", "created_client", "Klijent je uspe\u0161no kreiran", "updated_client", "Uspe\u0161no a\u017euriranje klijenta", "archived_client", "Uspe\u0161no arhiviran klijent", _s16_202, "Uspe\u0161no arhivirano :count klijenata", "deleted_client", "Uspe\u0161no obrisan klijent", "deleted_clients", "Uspe\u0161no obrisano :count klijenata", "restored_client", "Uspe\u0161no vra\u0107en klijent", _s16_203, "Uspe\u0161no vra\u0107ene :value klijenata", "address1", "Ulica", "address2", "Stan", "city", "Grad", "state", "Regija/provincija", "postal_code", "Po\u0161tanski broj", "country", "Dr\u017eava", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Novi ra\u010dun", "created_invoice", "Uspe\u0161no kreiran ra\u010dun", "updated_invoice", "Uspe\u0161no a\u017euriran ra\u010dun", _s16_204, "Uspe\u0161no arhiviran ra\u010dun", "deleted_invoice", "Uspe\u0161no obrisan ra\u010dun", _s16_205, "Uspe\u0161no vra\u0107en ra\u010dun", _s17_119, "Uspe\u0161no arhivirano :count ra\u010duna", _s16_206, "Uspe\u0161no obrisano :count ra\u010duna", _s17_120, "Uspe\u0161no vra\u0107ene :value ra\u010duna", "emailed_invoice", _s29_81, "emailed_payment", "Uplata uspe\u0161no poslata putem e-po\u0161te", "amount", "Iznos", "invoice_number", "Broj ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "Broj narud\u017ebe", "terms", "Uslovi", "public_notes", "Javne bele\u0161ke", "private_notes", "Privatne bele\u0161ke", "frequency", "U\u010destalost", "start_date", "Po\u010detni datum", "end_date", "Zavr\u0161ni datum", "quote_number", "Broj ponude", "quote_date", "Datum ponude", "valid_until", "Va\u017ei do", "items", "Stavke", "partial_deposit", "Avans/Depozit", "description", "Opis", "unit_cost", "Jedini\u010dna cena", "quantity", "Koli\u010dina", "add_item", "Dodaj stavku", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Ukupan iznos", "pdf", "PDF", "due_date", "Datum dospe\u0107a", _s16_207, "Datum dospe\u0107a avansa", "status", "Status", _s17_121, "Status ra\u010duna", "quote_status", "Status ponude", _s22_56, _s30_28, _s22_58, "Kliknite + za dodavanje vremena", "count_selected", ":count odabrano", "total", "Sveukupno", "percent", "Procenat", "edit", "Uredi", "dismiss", "Odbaci", _s20_70, "Molimo, izaberite datum", _s22_59, _s25_94, _s24_48, "Izaberite ra\u010dun", "task_rate", "Stopa zadatka", "settings", "Pode\u0161avanja", "language", "Jezik", "currency", "Valuta", "created_at", "Datum kreiranja", "created_on", "Napravljeno dana", "updated_at", "A\u017eurirano", "tax", "Porez", _s30_17, "Molimo, unesite broj ra\u010duna", _s27_49, "Molimo, unesite broj ponude", "past_due", "Rok istekao", "draft", "Nacrt", "sent", "Poslato", "viewed", "Pregledano", "approved", "Odobreno", "partial", "Avans/Depozit", "paid", "Pla\u0107eno", "mark_sent", "Ozna\u010di kao poslato", _s22_61, "Ra\u010dun uspe\u0161no obele\u017een kao poslat", _s22_62, "Ra\u010dun je uspe\u0161no ozna\u010den kao poslat", _s23_40, _s38_36, _s23_41, _s38_36, "done", "Zavr\u0161eno", _s37_18, "Molimo, unesite klijenta ili ime kontakta", "dark_mode", "Tamni prikaz", _s27_51, "Ponovo pokrenite aplikaciju da pokrenuli promenu", "refresh_data", "Osve\u017ei podatke", "blank_contact", "Prazan kontakt", "activity", "Aktivnost", _s16_209, "Nema zapisa", "clone", "Kloniraj", "loading", "U\u010ditavanje", "industry", "Delatnost", "size", "Veli\u010dina", "payment_terms", "Uslovi pla\u0107anja", "payment_date", "Datum uplate", "payment_status", "Status pla\u0107anja", _s16_211, "Na \u010dekanju", _s16_212, "Storno", _s16_213, "Neuspe\u0161no", _s16_214, "Zavr\u0161eno", _s16_215, _s21_157, _s16_216, "Refundirano", _s17_122, "Neprimenjeno", _s17_123, _s22_129, "net", "Net", "client_portal", "Portal Klijenta", "show_tasks", "Prika\u017ei zadatke", "email_reminders", "Podsetnici putem e-po\u0161te", "enabled", "Omogu\u0107eno", "recipients", "Primaoci", "initial_email", "Inicijalna poruka e-po\u0161tom", "first_reminder", "Prvi podsetnik", "second_reminder", "Drugi podsetnik", "third_reminder", "Tre\u0107i podsetnik", "reminder1", "Prvi podsetnik", "reminder2", "Drugi podsetnik", "reminder3", "Tre\u0107i podsetnik", "template", "\u0160ablon", "send", "Po\u0161alji", "subject", "Naslov", "body", "Telo poruke", "send_email", "Poslati Email", "email_receipt", _s31_25, "auto_billing", "Automatski ra\u010dun", "button", "Dugme", "preview", "Pregled", "customize", "Prilagodi", "history", "Istorija", "payment", "Uplata", "payments", "Uplate", "refunded", "Refundirano", "payment_type", "Tip uplate", _s21_79, _s21_108, "enter_payment", "Unesi uplatu", "new_payment", "Unesi uplatu", "created_payment", "Uspe\u0161no kreirana uplata", "updated_payment", "Uspe\u0161no a\u017eurirana uplata", _s16_217, "Uspe\u0161no arhivirana uplata", "deleted_payment", "Uspe\u0161no obrisana uplata", _s16_218, "Uspe\u0161no vra\u0107ena uplata", _s17_124, "Uspe\u0161no arhivirana :count uplata", _s16_219, "Uspe\u0161no obrisano :count uplata", _s17_125, "Uspe\u0161no vra\u0107ene :value pla\u0107anja", "quote", "Ponuda", "quotes", "Ponude", "new_quote", "Nova ponuda", "created_quote", "Predra\u010dun je uspe\u0161no kreiran", "updated_quote", "Predra\u010dun je uspe\u0161no a\u017euriran", "archived_quote", "Predra\u010dun je uspe\u0161no arhiviran", "deleted_quote", "Predra\u010dun uspe\u0161no obrisan", "restored_quote", "Uspe\u0161no vra\u0107en predra\u010dun", "archived_quotes", "Uspe\u0161no arhivirano :count predra\u010duna", "deleted_quotes", "Uspe\u0161no obrisano :count predra\u010duna", "restored_quotes", "Uspe\u0161no vra\u0107ene :value ponuda", "expense", "Tro\u0161ak", "expenses", "Tro\u0161kovi", "vendor", "Dobavlja\u010d", "vendors", "Dobavlja\u010di", "task", "Zadatak", "tasks", "Zadaci", "project", "Projekat", "projects", "Projekti", "activity_1", _s30_29, "activity_2", _s32_13, "activity_3", _s30_30, "activity_4", _s28_60, "activity_5", _s29_46, "activity_6", ":user je poslao ra\u010dun :invoice za :client kontaktu :contact", "activity_7", ":contact je pregledao ra\u010dun :invoice za :client", "activity_8", _s30_31, "activity_9", ":user obrisao ra\u010dun :invoice", "activity_10", ":contact uneo plac\u0301anje :payment za :payment_amount na ra\u010dunu :invoice za :client", "activity_11", _s30_32, "activity_12", _s30_33, "activity_13", _s29_47, "activity_14", ":user uneo :credit kredit", "activity_15", _s29_48, "activity_16", _s30_34, "activity_17", _s28_61, "activity_18", ":user kreirao predra\u010dun :quote", "activity_19", ":user a\u017eurirao predra\u010dun :quote", "activity_20", ":user je poslao predra\u010dun putem e-po\u0161te :quote za :client kontaktu :contact", "activity_21", _s35_45, "activity_22", ":user arhivirao predra\u010dun :quote", "activity_23", ":user obrisao predra\u010dun :quote", "activity_24", ":user obnovio predra\u010dun :quote", "activity_25", _s28_62, "activity_26", _s30_35, "activity_27", _s29_49, "activity_28", _s28_63, "activity_29", ":contact odobrio predra\u010dun :quote za :client", "activity_30", ":user je kreirao dobavlja\u010da/prodavca :vendor", "activity_31", ":user arhivirao dobavlja\u010da/prodavca :vendor", "activity_32", ":user obrisao dobavlja\u010da/prodavca :vendor", "activity_33", ":user obnovio dobavlja\u010da/prodavca :vendor", "activity_34", _s29_50, "activity_35", ":user arhivirao tro\u0161ak :expense", "activity_36", ":user obrisao tro\u0161ak :expense", "activity_37", ":user obnovio tro\u0161ak :expense", "activity_39", ":user je otkazao :payment_amount pla\u0107anje :payment", "activity_40", ":user vratio :adjustment od :payment_amount pla\u0107anja :payment", "activity_41", ":payment_amount pla\u0107anje (:payment) nije uspelo", "activity_42", ":user kreirao zadatak :task", "activity_43", ":user a\u017eurirao zadatak :task", "activity_44", ":user arhivirao zadatak :task", "activity_45", ":user obrisao zadatak :task", "activity_46", ":user obnovio zadatak :task", "activity_47", ":user a\u017eurirao tro\u0161ak :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user obnovio tiket :ticket", "activity_55", ":contact odgovorio na tiket :ticket", "activity_56", ":user pogledao tiket :ticket", "activity_57", "Sistem nije uspeo da po\u0161alje ra\u010dun e-po\u0161tom :invoice", "activity_58", ":user promenio ra\u010dun :invoice", "activity_59", _s28_64, "activity_60", _s35_45, "activity_61", ":user a\u017eurirao klijenta :client", "activity_62", ":user je a\u017eurirao dobavlja\u010da :vendor", "activity_63", ":user je e-po\u0161tom poslao prvi podsetnik za ra\u010dun :invoice na :contact", "activity_64", ":user je e-po\u0161tom poslao drugi podsetnik za ra\u010dun :invoice na :contact", "activity_65", ":user je e-po\u0161tom poslao tre\u0107i podsetnik za ra\u010dun :invoice na :contact", "activity_66", ":user je e-po\u0161tom poslao konstantan podsetnik za ra\u010dun :invoice na :contact", "activity_80", ":user je kreirao pretplatu :subscription", "activity_81", ":user je a\u017eurirao pretplatu :subscription", "activity_82", ":user je arhivirao pretplatu :subscription", "activity_83", ":user je obrisao pretplatu :subscription", "activity_84", ":user je vratio pretplatu :subscription", _s17_126, "Jednokratna lozinka", "emailed_quote", _s36_46, "emailed_credit", "Kredit je uspe\u0161no poslat e-po\u0161tom", _s20_72, "Ponuda uspe\u0161no obele\u017eena kao poslata", _s21_81, "Kredit je uspe\u0161no ozna\u010den kao poslat", "expired", "Isteklo", "all", "Sve", "select", "Odaberi", _s22_63, "Dugo pritisnite Multiselect", "custom_value1", _s20_147, "custom_value2", _s20_147, "custom_value3", "Prilago\u0111ena Vrednost 3", "custom_value4", "Prilago\u0111ena Vrednost 4", _s18_91, _s24_65, _s24_53, "Prilago\u0111ena poruka na kontrolnoj tabli", _s29_36, "Prilago\u0111ena poruka o neplac\u0301enom ra\u010dunu", _s27_56, "Prilago\u0111ena poruka o plac\u0301enom ra\u010dunu", _s31_18, "Prilago\u0111ena poruka o neodobrenoj ponudi", "lock_invoices", _s16_258, "translations", "Prevodi", _s19_60, "Obrazac broja zadatka", _s19_62, "Broja\u010d broja zadataka", _s22_65, "Obrazac broja tro\u0161kova", _s22_67, _s21_109, _s21_82, "Obrazac broja dobavlja\u010da", _s21_84, "Broja\u010d broja dobavlja\u010da", _s21_86, "Obrazac broja tiketa", _s21_88, "Broja\u010d broja tiketa", _s22_69, "Obrazac broja pla\u0107anja", _s22_71, "Broja\u010d broja pla\u0107anja", _s22_73, "Obrazac broja ra\u010duna", _s22_75, "Broja\u010d ra\u010duna", _s20_73, "Obrazac broja ponude", _s20_75, "Broja\u010d ponuda", _s21_90, _s21_162, _s21_92, _s20_148, _s21_94, _s21_162, _s21_95, _s20_148, _s18_93, "Ponovo podesite datum broja\u010da", "counter_padding", "Ispuna ispred broja broja\u010da", _s28_56, "Zajedni\u010dki broja\u010d ponuda ra\u010duna", _s18_95, "Podrazumevani naziv poreza 1", _s18_97, "Podrazumevana poreska stopa 1", _s18_99, "Podrazumevani naziv poreza 2", _s18_101, "Podrazumevana poreska stopa 2", _s18_103, "Podrazumevani naziv poreza 3", _s18_105, "Podrazumevana poreska stopa 3", _s21_96, "Po\u0161alji e-po\u0161tom predmet fakture", _s19_64, "Po\u0161alji e-po\u0161tom predmet ponude", _s21_98, "Po\u0161alji e-po\u0161tom predmet pla\u0107anja", _s29_38, "Predmet delimi\u010dnog plac\u0301anja e-po\u0161te", "show_table", "Prika\u017ei tabelu", "show_list", "Prika\u017eu listu", "client_city", "Grad klijenta", "client_state", "Dr\u017eava klijenta", "client_country", "Dr\u017eava klijenta", _s16_220, _s18_121, "client_balance", "Stanje klijenta", "client_address1", "Ulica klijenta", "client_address2", "Stan/Apartman klijenta", "vendor_address1", "Ulica dobavlja\u010da", "vendor_address2", "Stan/apartman dobavlja\u010da", _s24_55, "Adresa za isporuku klijentu", _s24_56, "Adresa za isporuku- stan/apartman klijentu", "type", "Tip", "invoice_amount", "Iznos ra\u010duna", _s16_224, "Datum dospe\u0107a", "tax_rate1", "Poreska stopa 1", "tax_rate2", "Poreska stopa 2", "tax_rate3", "Poreska stopa 3", "auto_bill", "Auto naplata", "archived_at", "Arhivirano u", "has_expenses", "Ima tro\u0161kove", "custom_taxes1", "Prilago\u0111eni porezi 1", "custom_taxes2", "Prilago\u0111eni porezi 2", "custom_taxes3", "Prilago\u0111eni porezi 3", "custom_taxes4", "Prilago\u0111eni porezi 4", _s17_128, _s21_158, _s17_129, _s21_159, _s17_130, _s21_160, _s17_131, _s21_161, "is_deleted", "Je obrisan", "vendor_city", "Grad dobavlja\u010da", "vendor_state", _s17_147, "vendor_country", _s17_147, "is_approved", "Je odobren", "tax_name", "Naziv poreza", "tax_amount", "Iznos poreza", "tax_paid", "Porez Pla\u0107en", "payment_amount", "Iznos uplate", "age", "Period", "is_running", "je pokrenuto", "time_log", "Vremenski zapisi", "bank_id", "Banka", _s19_66, "ID kategorije tro\u0161kova", _s16_225, "Kategorija tro\u0161kova", _s19_68, "ID valute ra\u010duna", "tax_name1", "Naziv poreza 1", "tax_name2", "Naziv poreza 2", "tax_name3", "Naziv poreza 3", "transaction_id", "ID transakcije", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "sk", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "S\xfahlasi\u0165", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Nastavenia platby", "default", "Z\xe1kladn\xe9", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Trvaj\xfaci", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Prida\u0165 br\xe1nu", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Vytvorte \xfa\u010det za sekundu", "login_label", _s28_, "add_to_invoice", "Prida\u0165 na fakt\xfaru :invoice", _s17_6, _s17_7, "week", "T\xfd\u017ede\u0148", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Faktura\u010dn\xe1 mena", "range", "Rozsah", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Vytvori\u0165 projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Poplatok za fakt\xfaru :amount by bol :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Schv\xe1li\u0165", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Klient bol \xfaspe\u0161ne vy\u010disten\xfd", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Norm\xe1lne", "large", "Ve\u013ek\xe9", "extra_large", "Extra ve\u013ek\xe9", _s16_15, "Zobrazi\u0165 uk\xe1\u017eku PDF", _s21_14, "Zobrazte n\xe1h\u013ead PDF pri \xfaprave fakt\xfar", "print_pdf", "Tla\u010d PDF", "remind_me", "Pripomen\xfa\u0165 mi", _s16_17, "Okam\u017eit\xe1 platba v banke", "click_selected", "Kliknite na polo\u017eku Vybrat\xe9", "hide_preview", "Skry\u0165 uk\xe1\u017eku", "edit_record", "Upravi\u0165 z\xe1znam", _s27_6, "Suma kreditu nem\xf4\u017ee by\u0165 vy\u0161\u0161ia ako suma na fakt\xfare", "giropay", "GiroPay", "direct_debit", "Inkaso", _s21_15, "Nastavte heslo \xfa\u010dtu", "set_password", "Nastavi\u0165 heslo", _s17_9, "Na dosiahnutie najlep\u0161ieho v\xfdkonu odpor\xfa\u010dame pou\u017e\xedva\u0165 po\u010d\xedta\u010dov\xfa aplik\xe1ciu", _s16_19, _s58_0, _s20_18, "Br\xe1na bola \xfaspe\u0161ne odpojen\xe1", "disconnect", "Odpoji\u0165", "add_to_invoices", "Prida\u0165 do fakt\xfar", "acss", "Vopred autorizovan\xe9 debetn\xe9 platby", "becs", "Inkaso BECS", "bulk_download", "Stiahnu\u0165", _s17_10, "Ukladajte \xfadaje lok\xe1lne, aby sa aplik\xe1cia sp\xfa\u0161\u0165ala r\xfdchlej\u0161ie. Deaktiv\xe1cia m\xf4\u017ee zlep\u0161i\u0165 v\xfdkon vo ve\u013ek\xfdch \xfa\u010dtoch", "persist_ui", "Trval\xe9 pou\u017e\xedvate\u013esk\xe9 rozhranie", "persist_ui_help", "Ulo\u017ete stav pou\u017e\xedvate\u013esk\xe9ho rozhrania lok\xe1lne, aby ste umo\u017enili spustenie aplik\xe1cie na poslednom mieste. Deaktiv\xe1cia m\xf4\u017ee zlep\u0161i\u0165 v\xfdkon", _s18_9, "PS\u010c klienta", _s17_11, "I\u010c DPH klienta", "has_tasks", "M\xe1 \xfalohy", "registration", "Registr\xe1cia", _s27_7, "Autorizujte Stripe na prij\xedmanie online platieb.", "view_expense", "Zobrazi\u0165 v\xfddaje # :expense", "view_statement", "Zobrazi\u0165 V\xfdkaz", "sepa", "platba SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, "Aktualizujte v\u0161etky z\xe1znamy", "system", "Syst\xe9m", _s19_12, "Nastavi\u0165 predvolen\xfa spolo\u010dnos\u0165", "updated_company", "Spolo\u010dnos\u0165 bola \xfaspe\u0161ne aktualizovan\xe1", "kbc", "KBC", "bancontact", "Bancontact", _s19_14, "Pom\xf4\u017ete n\xe1m zlep\u0161i\u0165 sa t\xfdm, \u017ee n\xe1m povedzte pre\u010do (volite\u013en\xe9)", "webhook_success", "\xdaspech webhooku", _s24_13, "V\u0161etky \xfalohy musia patri\u0165 tomu ist\xe9mu klientovi", _s27_8, "V\u0161etky v\xfddavky musia patri\u0165 tomu ist\xe9mu klientovi", "app", "Aplik\xe1cia", _s20_19, "Ak chcete dosiahnu\u0165 najlep\u0161\xed v\xfdkon, stiahnite si aplik\xe1ciu :app", _s16_20, "Celkov\xe1 suma brutto", _s18_109, "Odosla\u0165 fakt\xfaru", _s16_230, "Odosla\u0165 ponuku", _s17_134, "Odosla\u0165 kredit", "from_name", "Meno odosielate\u013ea", _s16_21, "Klonova\u0165 do n\xe1kladov", _s17_13, _s17_225, _s18_13, _s17_225, _s21_16, "Nov\xe9 pravideln\xe9 v\xfddaje", _s22_24, "Upravi\u0165 pravideln\xe9 v\xfddaje", _s25_2, "Pravideln\xe9 v\xfddaje \xfaspe\u0161ne vytvoren\xe9", _s25_3, "Pravideln\xe9 v\xfddaje \xfaspe\u0161ne upraven\xe9", _s26_2, "Pravideln\xe9 v\xfddaje \xfaspe\u0161ne archivovan\xe9", _s25_4, "Projekt \xfaspe\u0161ne zmazan\xfd", _s25_5, "Opakovan\xfd v\xfddavok bol \xfaspe\u0161ne odstr\xe1nen\xfd", _s26_3, "Pravideln\xe9 v\xfddaje \xfaspe\u0161ne obnoven\xe9", _s24_14, "H\u013eadaj opakuj\xface sa v\xfddavky", _s25_6, "H\u013eadajte opakuj\xface sa v\xfddavky", "last_sent_date", "D\xe1tum posledn\xe9ho odoslania", "include_drafts", "Zahrn\xfa\u0165 koncepty", _s19_15, "Zahr\u0148te do spr\xe1v koncepty z\xe1znamov", "is_invoiced", "Je fakturovan\xe9", "change_plan", "Zmeni\u0165 pl\xe1n", "persist_data", "Trval\xe9 \xfadaje", "customer_count", "Po\u010det z\xe1kazn\xedkov", _s16_22, "Overi\u0165 z\xe1kazn\xedkov", _s16_24, _s16_25, _s28_1, "ID sledovania Google Analytics", "decimal_comma", "Desatinn\xe1 \u010diarka", _s26_4, _s35_6, "select_method", "Vyberte met\xf3du", "select_platform", "Vyberte platformu", _s28_3, "Na pripojenie k Gmailu pou\u017eite webov\xfa aplik\xe1ciu", _s16_26, "Sadzby dane z polo\u017eiek s\xfa deaktivovan\xe9", "enable_markdown", "Povoli\u0165 Markdown", _s20_20, "Previes\u0165 markdown do HTML na PDF", "user_guide", "U\u017e\xedvate\u013esk\xe1 pr\xedru\u010dka", _s18_15, "Prida\u0165 druh\xfd kontakt", "previous_page", "Predch\xe1dzaj\xfaca strana", "next_page", "\u010eal\u0161ia strana", "export_colors", "Exportova\u0165 farby", "import_colors", "Importova\u0165 farby", "clear_all", "Zmaza\u0165 v\u0161etko", "contrast", "Kontrast", "custom_colors", "Vlastn\xe9 farby", "colors", "Farby", _s31_4, "Akt\xedvna farba pozadia na bo\u010dnom paneli", _s25_8, "Akt\xedvna farba p\xedsma na bo\u010dnom paneli", _s33_5, "Farba pozadia neakt\xedvneho bo\u010dn\xe9ho panela", _s27_10, "Neakt\xedvna farba p\xedsma na bo\u010dnom paneli", _s36_3, "Farba pozadia alternat\xedvneho riadka tabu\u013eky", _s31_6, "Farba pozadia hlavi\u010dky fakt\xfary", _s25_10, "Farba p\xedsma hlavi\u010dky fakt\xfary", "net_subtotal", "Netto", "review_app", "Skontrolova\u0165 aplik\xe1ciu", "check_status", "Skontrolova\u0165 stav", "free_trial", "Sk\xfa\u0161obn\xe9 obdobie", _s23_7, "Sk\xfa\u0161obn\xe1 verzia pl\xe1nu Pro kon\u010d\xed o :count dn\xed, kliknut\xedm aktualizujte.", _s21_18, "Dnes je posledn\xfd de\u0148 sk\xfa\u0161obnej verzie pl\xe1nu Pro, kliknut\xedm aktualizujte.", "change_email", "Zmeni\u0165 e-mail", _s25_12, "Volite\u013ene nakonfigurujte samostatn\xfa dom\xe9nu klientskeho port\xe1lu", _s21_19, "\xdalohy zobrazen\xe9 na port\xe1li", "uninvoiced", "Nevyfakturovan\xe9", "subdomain_guide", "Subdom\xe9na sa pou\u017e\xedva na klientskom port\xe1li na prisp\xf4sobenie odkazov tak, aby zodpovedali va\u0161ej zna\u010dke. tj https://your-brand.invoicing.co", "send_time", "\u010cas odoslania", "import_data", "Importova\u0165 \xfadaje", "import_settings", "Nastavenia importu", _s17_15, "Poskytnite s\xfabor JSON", _s19_16, "Vyberte, ak chcete importova\u0165 nastavenia a/alebo \xfadaje", "json", "JSON", _s24_16, "Nie s\xfa povolen\xe9 \u017eiadne typy platieb", "wait_for_data", "Po\u010dkajte na dokon\u010denie na\u010d\xedtania \xfadajov", "net_total", "\u010cist\xfd s\xfa\u010det", "has_taxes", "M\xe1 dane", _s16_27, "Importova\u0165 z\xe1kazn\xedkov", _s18_17, "\xdaspe\u0161ne sa za\u010dal import z\xe1kazn\xedkov", "login_success", "\xdaspe\u0161n\xe9 prihl\xe1senie", "login_failure", "Prihl\xe1senie zlyhalo", "exported_data", "Ke\u010f bude s\xfabor pripraven\xfd, dostanete e-mail s odkazom na stiahnutie", _s23_8, "Zahrn\xfa\u0165 odstr\xe1nen\xfdch klientov", _s28_5, "Na\u010d\xedta\u0165 z\xe1znamy patriace vymazan\xfdm klientom", "step_1_sign_in", "Krok 1: Prihl\xe1ste sa", _s16_30, "Krok 2: Autoriz\xe1cia", "account_id", "ID \xfa\u010dtu", _s27_12, "Migr\xe1cia sa e\u0161te neskon\u010dila", "activity_100", ":user vytvoril opakuj\xfacu sa fakt\xfaru :recurring_invoice", "activity_101", ":user aktualizoval opakuj\xfacu sa fakt\xfaru :recurring_invoice", "activity_102", ":user archivoval opakuj\xfacu sa fakt\xfaru :recurring_invoice", "activity_103", ":user vymazal opakuj\xfacu sa fakt\xfaru :recurring_invoice", "activity_104", ":user obnovil opakuj\xfacu sa fakt\xfaru :recurring_invoice", _s18_18, "Zobrazi\u0165 d\xe1tum ukon\u010denia \xfalohy", _s23_10, "Povoli\u0165 ur\u010denie d\xe1tumu ukon\u010denia \xfalohy", "gateway_setup", "Nastavenie br\xe1ny", "preview_sidebar", "Uk\xe1\u017eka bo\u010dn\xe9ho panela", _s16_31, "Zobrazen\xe9 \xfadaje za roky", _s18_20, _s31_8, _s16_33, "Ukon\u010di\u0165 v\u0161etky rel\xe1cie", "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Naposledy upraven\xfd", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Krstn\xe9 meno kontaktu", _s17_17, "Priezvisko kontaktu", "order", "Order", "unassigned", "Nepridelen\xe9", "partial_value", "Mus\xed by\u0165 v\xe4\u010d\u0161ie ako 0 a menej ako celkov\xfd s\xfa\u010det", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Povoli\u0165", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Nastavte subdom\xe9nu alebo zobrazte fakt\xfaru na vlastnom webe.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Propaga\u010dn\xfd k\xf3d", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Zabezpe\u010denie", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Predplatn\xe9", "subscriptions", "Predplatn\xe9", _s16_39, "Nov\xe9 predplatn\xe9", _s17_23, "Aktualizova\u0165 predplatn\xe9", _s20_23, "Predplatn\xe9 \xfaspe\u0161ne vytvoren\xe9", _s20_24, _s32_36, _s21_28, _s32_36, _s20_25, _s34_38, _s20_26, _s34_38, _s21_29, "Predplatn\xe9 bolo \xfaspe\u0161ne obnoven\xe9", _s19_17, "H\u013eada\u0165 1 predplatn\xe9", _s20_27, "H\u013eada\u0165 :count odbery", _s26_6, "Subdom\xe9na nie je dostupn\xe1", "connect_gmail", "Pripojte Gmail", _s16_41, "Odpojte Gmail", "connected_gmail", "Gmail bol \xfaspe\u0161ne pripojen\xfd", _s18_29, "Gmail bol \xfaspe\u0161ne odpojen\xfd", _s16_43, "Zmeny v k\xf3dovej z\xe1kladni m\xf4\u017eu blokova\u0165 aktualiz\xe1ciu, m\xf4\u017eete spusti\u0165 tento pr\xedkaz a zru\u0161i\u0165 zmeny:", _s16_44, "Identifika\u010dn\xe9 \u010d\xedslo klienta", "count_minutes", ":count min\xfaty", _s16_46, "\u010casov\xfd limit hesla", _s29_4, "Zdie\u013ean\xe9 po\u010d\xedtadlo fakt\xfar/kreditov", "use_last_email", "Pou\u017ei\u0165 posledn\xfd e-mail", _s16_48, "Aktivova\u0165 spolo\u010dnos\u0165", _s21_31, "Povoli\u0165 e-maily, opakuj\xface sa fakt\xfary a upozornenia", _s27_14, "Vyskytla sa chyba, sk\xfaste to znova", _s27_15, "Najprv nastavte heslo", _s34_6, "Upozornenie: Zmena telef\xf3nneho \u010d\xedsla deaktivuje 2FA", "help_translate", "Pomoc s prekladom", _s23_11, "Vyberte krajinu", "resend_invite", "Znova odosla\u0165 Pozv\xe1nku", _s19_18, "\xdaspe\u0161ne deaktivovan\xe9 2FA", _s16_50, "\xda\u010det bol \xfaspe\u0161ne pripojen\xfd", _s19_19, "\xda\u010det bol \xfaspe\u0161ne odpojen\xfd", "delivered", "Doru\u010den\xe9", "bounced", "Odmietnut\xe9", "spam", "Nevy\u017eiadan\xe1 po\u0161ta", "view_docs", "Zobrazi\u0165 dokumenty", _s32_4, "Ak chcete povoli\u0165 dvojfaktorov\xe9 overenie, zadajte \u010d\xedslo mobiln\xe9ho telef\xf3nu", "send_sms", "Posla\u0165 SMS", "sms_code", "SMS k\xf3d", _s21_32, "Naskenujte \u010diarov\xfd k\xf3d pomocou aplik\xe1cie kompatibilnej s :link.", _s18_30, "Dvojfaktorov\xe9 overovanie \xfaspe\u0161ne nastaven\xe9", "connect_google", "Pripojte Google", _s17_25, "Odpoji\u0165 Google", _s17_27, "Dvojfaktorov\xe9 overovanie", _s18_31, "Zak\xe1za\u0165 dva faktory", _s34_7, "Vy\u017eadova\u0165 heslo s prihl\xe1sen\xedm na soci\xe1lne siete", "stay_logged_in", "Zosta\u0165 prihl\xe1sen\xfd", _s23_13, "Varovanie: Va\u0161a rel\xe1cia \u010doskoro vypr\u0161\xed.", "count_hours", ":count hod\xedn", "count_day", "1 de\u0148", "count_days", ":count dn\xed", _s19_20, "\u010das rel\xe1cie vypr\u0161al", _s17_28, "Nastavenia zabezpe\u010denia", "resend_email", "Preposla\u0165 email", _s26_8, "Pros\xedm, potvr\u010fte svoju emailov\xfa adresu", _s16_51, "Vr\xe1ten\xe1 platba", _s19_22, _s19_144, _s19_24, "Pros\xedm vyber pou\u017e\xedvate\u013esk\xfa autentifik\xe1ciu cez Gmail", "list_long_press", "Dlh\xe9 stla\u010denie zoznamu", "show_actions", "Uk\xe1\u017e akciu", _s17_30, "Za\u010da\u0165 viacn\xe1sobn\xfd v\xfdber", _s27_17, "Bol odoslan\xfd e-mail na potvrdenie e-mailovej adresy", _s21_33, "Ak chcete pou\u017ei\u0165 :client_counter, pridajte bu\u010f :client_number alebo :client_id_number, aby ste predi\u0161li konfliktom", "this_quarter", "Tento \u0161tvr\u0165rok", "last_quarter", "Posledn\xfd \u0160tvr\u0165rok", "to_update_run", "Ak chcete aktualizova\u0165 spustite", _s18_33, "Previes\u0165 na fakt\xfaru", _s16_52, "Registra\u010dn\xe1 adresa URL", "invoice_project", "Fakt\xfarova\u0165 projekt", "invoice_task", "Fakturova\u0165 \xfalohu", "invoice_expense", "Fakt\xfarova\u0165 v\xfddaje", _s19_25, "H\u013eada\u0165 1 platobn\xfd term\xedn", _s20_28, "H\u013eada\u0165 :count platobn\xe9 podmienky", _s16_54, "Ulo\u017ei\u0165 a zobrazi\u0165 uk\xe1\u017eku", "save_and_email", "Ulo\u017ei\u0165 a posla\u0165 e-mailom", _s16_56, "Podporovan\xe9 udalosti", _s16_58, "Konvertovan\xe1 suma", _s17_32, "Prepo\u010d\xedtan\xfd zostatok", _s22_28, "Preveden\xe9 zaplaten\xe9 na d\xe1tum", _s24_18, "Konvertovan\xfd kreditn\xfd zostatok", "converted_total", "Celkom preveden\xe9", "is_sent", "Je odoslan\xe1", _s17_34, "Predvolen\xe9 dokumenty", "document_upload", "Nahratie dokumentu", _s20_29, "Umo\u017enite klientom nahr\xe1va\u0165 dokumenty", "expense_total", "Celkov\xe9 n\xe1klady", "enter_taxes", "Zadajte dane", "by_rate", "Pod\u013ea sadzby", "by_amount", "Pod\u013ea sumy", "enter_amount", "Zadajte \u010diastku", "before_taxes", "Pred zdanen\xedm", "after_taxes", "Po zdanen\xed", "color", "Farba", "show", "Zobrazi\u0165", "hide", "Skry\u0165", "empty_columns", "Pr\xe1zdne st\u013apce", _s21_35, "Re\u017eim ladenia je povolen\xfd", _s26_9, "Upozornenie: je to ur\u010den\xe9 na pou\u017eitie na lok\xe1lnych po\u010d\xedta\u010doch, m\xf4\u017ee d\xf4js\u0165 k \xfaniku poveren\xed. Kliknut\xedm sa dozviete viac.", "running_tasks", "Spusten\xe9 \xfalohy", "recent_tasks", "Ned\xe1vne \xfalohy", "recent_expenses", "Ned\xe1vne v\xfddavky", _s17_36, "Nadch\xe1dzaj\xface v\xfddavky", "update_app", "Aktualizova\u0165 aplik\xe1ciu", "started_import", "Import bol \xfaspe\u0161ne spusten\xfd", _s24_20, "Duplicitn\xe9 mapovanie st\u013apcov", _s20_30, "Pou\u017e\xedva inkluz\xedvne dane", _s18_35, "Je z\u013eava vo v\xfd\u0161ke", "column", "St\u013apec", "sample", "Vzorka", "map_to", "Mapova\u0165", "import", "Import", _s25_15, "Ako n\xe1zvy st\u013apcov pou\u017eite prv\xfd riadok", "select_file", "Vyberte s\xfabor", _s16_60, "Nie je zvolen\xfd \u017eiadny s\xfabor", "csv_file", "S\xfabor CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Fakturovane", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "\xda\u010dtovn\xedctvo", _s22_30, "Zadajte v\u0161etky s\xfabory CSV.", "import_type", "Typ importu", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Zobrazi\u0165 licencie", "webhook_url", "Webhook URL", _s17_38, "Celoobrazovkov\xfd editor", "sidebar_editor", "Editor bo\u010dn\xe9ho panelu", _s22_31, "Potvr\u010fte zadan\xedm \u201e:value\u201c.", "purge", "Vy\u010disti\u0165", "service", "Slu\u017eba", "clone_to", "Klonova\u0165 do", "clone_to_other", "Klonova\u0165 do in\xe9ho", "labels", "\u0160t\xedtky", "add_custom", "Prida\u0165 vlastn\xe9", "payment_tax", "Platba dane", "unpaid", "Nezaplaten\xe9", "white_label", "Biely \u0161t\xedtok", "delivery_note", "Dodac\xed list", _s24_23, "Odoslan\xe9 fakt\xfary s\xfa uzamknut\xe9", _s24_25, "Zaplaten\xe9 fakt\xfary s\xfa uzamknut\xe9", "source_code", "Zdrojov\xfd k\xf3d", "app_platforms", "Platformy aplik\xe1ci\xed", "invoice_late", _s18_199, "quote_expired", "Platnos\u0165 ponuky vypr\u0161ala", "partial_due", "\u010ciasto\u010dn\xe1 splatnos\u0165", "invoice_total", "Celkom k \xfahrade", "quote_total", "Ponuka celkom", "credit_total", "Celkov\xfd kredit", _s23_14, "Celkov\xe1 fakt\xfara", "actions", "Akcie", "expense_number", "\u010c\xedslo v\xfddavku", "task_number", "\u010c\xedslo \xfalohy", "project_number", "\u010cislo projektu", "project_name", "N\xe1zov projektu", "warning", "Varovanie", "view_settings", "Zobrazi\u0165 nastavenia", _s24_27, "Upozornenie: T\xe1to spolo\u010dnos\u0165 e\u0161te nebola aktivovan\xe1", "late_invoice", _s18_199, "expired_quote", "Platnos\u0165 cenovej ponuky vypr\u0161ala", "remind_invoice", "Pripomen\xfa\u0165 fakt\xfaru", "cvv", "CVC k\xf3d", "client_name", "Meno z\xe1kazn\xedka", "client_phone", "Telef\xf3n klienta", "required_fields", "Povinn\xe9 polia", "calculated_rate", "Vypo\u010d\xedtan\xe1 sadzba", _s17_40, "Predvolen\xe1 miera \xfaloh", "clear_cache", "Vymaza\u0165 vyrovn\xe1vaciu pam\xe4\u0165", "sort_order", "Poradie zoradenia", "task_status", "Stav", "task_statuses", "Stavy \xfaloh", "new_task_status", "Stav novej \xfalohy", _s16_62, "Upravi\u0165 stav \xfalohy", _s19_26, "Stav \xfalohy bol \xfaspe\u0161ne vytvoren\xfd", _s19_27, "\xdaspe\u0161ne aktualizova\u0165 stav \xfalohy", _s20_32, "Stav \xfalohy bol \xfaspe\u0161ne archivovan\xfd", _s19_28, _s33_41, _s19_29, _s33_41, _s20_33, "Stav \xfalohy bol \xfaspe\u0161ne obnoven\xfd", _s22_32, "Stavy \xfaloh :value boli \xfaspe\u0161ne archivovan\xe9", _s21_37, "Stavy \xfaloh :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", _s22_33, "Stavy \xfaloh :value boli \xfaspe\u0161ne obnoven\xe9", _s18_37, "H\u013eada\u0165 1 stav \xfalohy", _s20_35, "H\u013eada\u0165: count stavy \xfaloh", _s16_64, "Zobrazi\u0165 tabu\u013eku \xfaloh", _s21_38, "Pri vytv\xe1ran\xed fakt\xfar v\u017edy zobrazova\u0165 sekciu \xfaloh", _s20_36, "\u010casov\xfd denn\xedk faktura\u010dnej \xfalohy", _s25_16, "Pridajte \u010dasov\xe9 \xfadaje do riadkov\xfdch polo\u017eiek fakt\xfary", _s20_38, "D\xe1tumov\xfd denn\xedk \xfalohy fakt\xfary", _s25_17, "Pridajte podrobnosti o d\xe1tume do riadkov\xfdch polo\u017eiek fakt\xfary", _s21_39, "Pred ulo\u017een\xedm za\u010dnite \xfalohy", _s18_38, "Konfigurova\u0165 stavy", "task_settings", "Nastavenia \xfalohy", _s20_40, "Konfigurova\u0165 kateg\xf3rie", _s18_40, "Kateg\xf3rie v\xfddajov", _s20_42, "Nov\xe1 kateg\xf3ria v\xfddajov", _s21_40, "Upravi\u0165 kateg\xf3riu v\xfddavkov", _s24_28, "Kateg\xf3ria v\xfddajov bola \xfaspe\u0161ne vytvoren\xe1", _s24_29, "Kateg\xf3ria v\xfddajov bola \xfaspe\u0161ne aktualizovan\xe1", _s25_19, "Kateg\xf3ria v\xfddajov bola \xfaspe\u0161ne archivovan\xe1", _s24_30, "Kateg\xf3ria bola \xfaspe\u0161ne zmazan\xe1", _s24_31, "Kateg\xf3ria v\xfddavkov bola \xfaspe\u0161ne odstr\xe1nen\xe1", _s25_20, "Kateg\xf3ria v\xfddajov bola \xfaspe\u0161ne obnoven\xe1", _s27_21, "Po\u010det \xfaspe\u0161ne archivovan\xfdch kategorii v\xfddajov: :count", _s26_10, "\xdaspe\u0161ne odstr\xe1nen\xe9 kateg\xf3rie v\xfddavkov :value", _s27_22, "\xdaspe\u0161ne obnoven\xe9 kateg\xf3rie n\xe1kladov :value", _s23_15, "Vyh\u013eadajte 1 kateg\xf3riu v\xfddavkov", _s25_22, "H\u013eada\u0165 :count kateg\xf3rie v\xfddavkov", _s21_42, "Pou\u017eite dostupn\xe9 kredity", "show_option", "Zobrazi\u0165 mo\u017enos\u0165", _s22_34, "Suma kreditu nem\xf4\u017ee presiahnu\u0165 sumu platby", "view_changes", "Zobrazi\u0165 zmeny", "force_update", "Vyn\xfati\u0165 aktualiz\xe1ciu", _s17_42, "Pou\u017e\xedvate najnov\u0161iu verziu, ale m\xf4\u017eu by\u0165 k dispoz\xedcii \u010dakaj\xface opravy.", "mark_paid_help", "Sledujte, \u010di bol v\xfddavok zaplaten\xfd", _s18_42, "Treba fakturova\u0165", _s23_16, "Povoli\u0165 faktur\xe1ciu v\xfddavku", _s29_7, "Zvidite\u013enite dokumenty", _s21_44, "Nastavte v\xfdmenn\xfd kurz", _s16_66, "Nastavenia v\xfddavkov", _s18_43, "Klonova\u0165 na opakuj\xface sa", "crypto", "Kryptomeny", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Pou\u017e\xedvate\u013esk\xe9 pole", "variables", "Premenn\xe9", "show_password", "Uk\xe1za\u0165 heslo", "hide_password", "Skry\u0165 heslo", "copy_error", "Chyba kop\xedrovania", "capture_card", "Zachyti\u0165 kartu", _s17_43, "Automatick\xe9 \xfa\u010dtovanie je povolen\xe9", "total_taxes", "Celkov\xe9 dane", "line_taxes", "Riadkov\xe9 dane", "total_fields", "Polia celkom", _s25_23, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne zastaven\xe1", _s25_24, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne spusten\xe1", _s25_25, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne obnoven\xe1", "gateway_refund", "Vr\xe1tenie platby za br\xe1nu", _s19_30, "Spracujte vr\xe1tenie platby prostredn\xedctvom platobnej br\xe1ny", "due_date_days", _s16_349, "paused", "Pozastaven\xe9", "mark_active", "Ozna\u010d\u0165 ako Akt\xedvne", "day_count", "De\u0148 :count", _s22_35, "Prv\xfd de\u0148 v mesiaci", _s21_45, "Posledn\xfd de\u0148 v mesiaci", _s17_45, "Pou\u017eite platobn\xe9 podmienky", "endless", "Nekone\u010dn\xe9", "next_send_date", "D\xe1tum \u010fal\u0161ieho odoslania", _s16_68, "Zost\xe1vaj\xface cykly", _s17_47, "Pravideln\xe1 fakt\xfara", _s18_45, "Pravideln\xe9 fakt\xfary", _s21_47, "Nov\xe1 pravideln\xe1 fakt\xfara", _s22_37, "Upravi\u0165 pravideln\xfa fakt\xfaru", _s25_26, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne vytvoren\xe1", _s25_27, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne aktualizovan\xe1", _s26_11, "Pravideln\xe1 fakt\xfara \xfaspe\u0161ne archivovan\xe1", _s25_28, "Pravideln\xe1 fakt\xfara \xfaspe\u0161ne vymazan\xe1", _s25_29, "Opakovan\xe1 fakt\xfara bola \xfaspe\u0161ne odstr\xe1nen\xe1", _s26_12, "Pravideln\xe1 fakt\xfara \xfaspe\u0161ne obnoven\xe1", _s27_23, "\xdaspe\u0161ne archivovan\xe9 opakuj\xface sa :value fakt\xfary", _s26_13, "\xdaspe\u0161ne odstr\xe1nen\xe9 opakuj\xface sa :value fakt\xfary", _s27_24, "\xdaspe\u0161ne obnoven\xe9 opakuj\xface sa :value fakt\xfary", _s24_32, "Vyh\u013eada\u0165 1 opakuj\xfacu sa fakt\xfaru", _s25_30, "H\u013eada\u0165 :count opakuj\xface sa fakt\xfary", "send_date", "D\xe1tum odoslania", "auto_bill_on", "Zapn\xfa\u0165 Automatick\xe9 \xfa\u010dtovanie", _s28_7, "Minim\xe1lna \u010diastka platby", "profit", "Zisk", "line_item", "Polo\u017eka v riadku", _s18_47, "Povoli\u0165 preplatenie", _s23_17, "Podporte platenie navy\u0161e za prij\xedmanie tipov", _s19_31, "Povoli\u0165 platbu", _s24_33, "Podpora platenia minim\xe1lnej \u010diastky/vkladu", "test_mode", "Testovac\xed m\xf3d", "opened", "Otvoren\xe9", _s30_4, "Zlyhanie zmierenia", _s30_5, "\xdaspech zmierenia", "gateway_success", "\xdaspech br\xe1ny", "gateway_failure", "Porucha br\xe1ny", "gateway_error", "Chyba br\xe1ny", "email_send", "Odosla\u0165 email", _s17_49, "Zoznam opakovania e-mailu", "failure", "Ne\xfaspech", "quota_exceeded", "Prekro\u010den\xe1 kv\xf3ta", _s16_70, "Zlyhanie Upstream", "system_logs", "Syst\xe9mov\xe9 z\xe1znamy", "view_portal", "Zobrazi\u0165 port\xe1l", "copy_link", "Skop\xedrova\u0165 odkaz", "token_billing", "Ulo\u017ei\u0165 podrobnosti kreditnej karty", _s24_34, "Vitajte v Invoice Ninja", "always", "V\u017edy", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u0160t\xedtok", "client_number", "\u010c\xedslo z\xe1kazn\xedka", "auto_convert", "Automatick\xe1 konverzia", "company_name", "N\xe1zov spolo\u010dnosti", "reminder1_sent", "Pripomienka 1 odoslan\xe1", "reminder2_sent", "Pripomienka 2 odoslan\xe1", "reminder3_sent", "Pripomienka 3 odoslan\xe1", _s18_49, "Naposledy odoslan\xe1 pripomienka", "pdf_page_info", "Strana :current z :total", _s16_72, _s24_108, "emailed_quotes", _s23_96, "emailed_credits", "\xdaspe\u0161ne zaslan\xe9 kredity e-mailom", "gateway", "Br\xe1na", "view_in_stripe", "Zobrazi\u0165 v Stripe", "rows_per_page", "Po\u010det riadkov na str\xe1nku", "hours", "Hodiny", "statement", "V\xfdkaz", "taxes", "Dane", "surcharge", "Pr\xedplatok", "apply_payment", "Pou\u017ei\u0165 platbu", "apply_credit", "Pou\u017ei\u0165 kredit", "apply", "Pou\u017ei\u0165", "unapplied", "Neaplikovan\xe9", "select_label", "Vybra\u0165 \u0161t\xedtok", "custom_labels", "Vlastn\xe9 \u0161t\xedtky", "record_type", "Typ z\xe1znamu", "record_name", "N\xe1zov z\xe1znamu", "file_type", "Typ s\xfaboru", "height", "V\xfd\u0161ka", "width", "\u0160\xedrka", "to", "Komu", "health_check", "Kontrola zdravia", "payment_type_id", "Typ platby", "last_login_at", "Posledn\xe9 prihl\xe1senie o", "company_key", "K\u013e\xfa\u010d spolo\u010dnosti", "storefront", "Storefront", "storefront_help", "Povo\u013ete aplik\xe1ci\xe1m tret\xedch str\xe1n vytv\xe1ra\u0165 fakt\xfary", "client_created", "Klient vytvoren\xfd", _s20_45, "Online platobn\xfd e-mail", _s20_47, "E-mail s manu\xe1lnou platbou", "completed", "Dokon\u010den\xe9", "gross", "Hrub\xfd", "net_amount", "\u010cist\xe1 \u010diastka", "net_balance", "\u010cist\xfd zostatok", "client_settings", "Nastavenia klienta", _s17_51, "Vybran\xe9 fakt\xfary", _s17_53, "Vybran\xe9 platby", "selected_quotes", "Vybran\xe9 ponuky", "selected_tasks", "Vybran\xe9 \xfalohy", _s17_55, "Vybran\xe9 v\xfddavky", _s17_57, "Bud\xface fakt\xfary", _s17_59, "Fakt\xfary po splatnosti", "recent_payments", "Ned\xe1vne platby", "upcoming_quotes", "Bud\xface ponuky", "expired_quotes", "Vypr\u0161an\xe9 ponuky", "create_client", "Vytvori\u0165 z\xe1kazn\xedka", "create_invoice", "Vytvorenie fakt\xfary", "create_quote", "Vytvori\u0165 ponuku", "create_payment", "Vytvori\u0165 platbu", "create_vendor", "Vytvori\u0165 dod\xe1vate\u013ea", "update_quote", "Aktualizova\u0165 cenov\xfa ponuku", "delete_quote", "Vymaza\u0165 ponuku", "update_invoice", "Aktualizova\u0165 fakt\xfaru", "delete_invoice", "Odstr\xe1ni\u0165 fakt\xfaru", "update_client", "Aktualizova\u0165 klienta", "delete_client", "Odstr\xe1ni\u0165 z\xe1kazn\xedkov", "delete_payment", "Odstr\xe1ni\u0165 platbu", "update_vendor", "Aktualizova\u0165 dod\xe1vate\u013ea", "delete_vendor", "Odstr\xe1ni\u0165 dod\xe1vate\u013ea", "create_expense", "Vytvorte n\xe1klady", "update_expense", "Aktualizova\u0165 v\xfddavky", "delete_expense", "Zmaza\u0165 v\xfddaje", "create_task", "Vytvori\u0165 \xfalohu", "update_task", "Aktualizova\u0165 \xfalohu", "delete_task", "Odstr\xe1ni\u0165 \xfalohu", "approve_quote", "Schv\xe1li\u0165 cenov\xfa ponuku", "off", "Vypnut\xe9", "when_paid", "Ke\u010f zaplaten\xe9", "expires_on", "Vypr\u0161\xed", "free", "Zdarma", "plan", "Pl\xe1n", "show_sidebar", "Zobrazi\u0165 bo\u010dn\xfd panel", "hide_sidebar", "Skry\u0165 bo\u010dn\xfd panel", "event_type", "Typ udalosti", "target_url", "Cie\u013e", "copy", "Kop\xedrova\u0165", "must_be_online", "Po pripojen\xed k internetu re\u0161tartujte aplik\xe1ciu", _s17_61, "Je potrebn\xe9 povoli\u0165 crony", "api_webhooks", "API Webhooks", "search_webhooks", "H\u013eada\u0165 :count Webhooky", "search_webhook", "H\u013eada\u0165 1 webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nov\xfd webhook", "edit_webhook", "Upravi\u0165 webhook", "created_webhook", "Webhook bol \xfaspe\u0161ne vytvoren\xfd", "updated_webhook", "Webhook bol \xfaspe\u0161ne aktualizovan\xfd", _s16_74, "Webhook bol \xfaspe\u0161ne archivovan\xfd", "deleted_webhook", "Webhook bol \xfaspe\u0161ne vymazan\xfd", "removed_webhook", "Webhook bol \xfaspe\u0161ne odstr\xe1nen\xfd", _s16_75, "Webhook bol \xfaspe\u0161ne obnoven\xfd", _s17_62, "Webhooky :value boli \xfaspe\u0161ne archivovan\xe9", _s16_76, _s39_16, _s16_77, _s39_16, _s17_63, "Webhooky :value boli \xfaspe\u0161ne obnoven\xe9", "api_tokens", "Tokeny API", "api_docs", "Dokumenty API", "search_tokens", "H\u0161ada\u0165 :count tokeny", "search_token", "Vyh\u013eada\u0165 1 token", "token", "Token", "tokens", "Tokeny", "new_token", "Nov\xfd token", "edit_token", "Upravi\u0165 token", "created_token", "Token \xfaspe\u0161ne vytvoren\xfd", "updated_token", "Token \xfaspe\u0161ne upraven\xfd", "archived_token", "Token \xfaspe\u0161ne archivovan\xfd", "deleted_token", "Token \xfaspe\u0161ne vymazan\xfd", "removed_token", "Token bol \xfaspe\u0161ne odstr\xe1nen\xfd", "restored_token", "Token bol \xfaspe\u0161ne obnoven\xfd", "archived_tokens", "\xdaspe\u0161ne archivovan\xe9 :value tokeny", "deleted_tokens", "Tokeny :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", "restored_tokens", "\xdaspe\u0161ne obnoven\xe9 :value tokeny", _s19_33, "Registr\xe1cia klienta", _s24_36, "Umo\u017enite klientom samoregistr\xe1ciu na port\xe1li", _s21_49, "Prisp\xf4sobi\u0165 a zobrazi\u0165 uk\xe1\u017eku", "email_invoice", "Odosla\u0165 fakt\xfaru", "email_quote", "Odosla\u0165 ponuku", "email_credit", "E-mailov\xfd kredit", "email_payment", "Platba e-mailom", _s20_50, "Klient nem\xe1 nastaven\xfa emailov\xfa adresu", "ledger", "Hlavn\xe1 kniha", "view_pdf", "Zobrazi\u0165 PDF", "all_records", "V\u0161etky z\xe1znamy", "owned_by_user", "Vlastnen\xe9 pou\u017e\xedvate\u013eom", _s16_78, "Zost\xe1vaj\xfaci kredit", "contact_name", "Meno kontaktu", "use_default", "Pou\u017ei predvolen\xe9", _s16_80, "Nekone\u010dn\xe9 pripomienky", "number_of_days", "Po\u010det dn\xed", _s23_19, "Konfigur\xe1cia platobn\xfdch podmienok", "payment_term", "Lehota splatnosti", _s16_81, "Nov\xfd platobn\xfd term\xedn", _s17_65, "Upravi\u0165 platobn\xe9 obdobie", _s20_51, "\xdaspe\u0161ne vytvoren\xe9 platobn\xe9 obdobie", _s20_52, "\xdaspe\u0161ne aktualizovan\xe9 platobn\xe9 obdobie", _s21_50, "\xdaspe\u0161ne archivovan\xe9 platobn\xe9 obdobie", _s20_53, _s38_37, _s20_54, _s38_37, _s21_51, "Platobn\xfd term\xedn bol \xfaspe\u0161ne obnoven\xfd", _s22_42, "\xdaspe\u0161ne archivovan\xe9 :value platobn\xe9 podmienky", _s21_52, "\xdaspe\u0161ne vymazan\xe9 :value platobn\xe9 podmienky", _s22_43, "\xdaspe\u0161ne obnoven\xe9 :value platobn\xe9 podmienky", "email_sign_in", "Prihl\xe1ste sa e-mailom", "change", "Zmeni\u0165", _s23_21, "Chcete zmeni\u0165 rozlo\u017eenie pre mobiln\xe9 zariadenia?", _s24_37, "Chcete zmeni\u0165 na rozlo\u017eenie desktop?", "send_from_gmail", "Odosla\u0165 z Gmailu", "reversed", "Obr\xe1ten\xe9", "cancelled", "Zru\u0161en\xe9", "credit_amount", "\u010ciastka dobropisu", "quote_amount", "Suma ponuky", "hosted", "Hos\u0165ovan\xe9", "selfhosted", "Vlasn\xfd hosting", "exclusive", "V\xfdhradne", "inclusive", "Vr\xe1tane", "hide_menu", "Skry\u0165 ponuku", "show_menu", "Zobrazi\u0165 menu", _s18_51, _s17_226, _s16_83, "H\u013eada\u0165 v dokumentoch", "search_designs", "H\u013eada\u0165 vzh\u013eady", "search_invoices", "Vyh\u013eada\u0165 fakt\xfary", "search_clients", "Vyh\u013eadajte klientov", "search_products", "H\u013eada\u0165 produkty", "search_quotes", "Vyh\u013eada\u0165 ponuky", "search_credits", "H\u013eada\u0165 kredity", "search_vendors", "H\u013eada\u0165 predajcov", "search_users", "H\u013eada\u0165 pou\u017e\xedvate\u013eov", _s16_84, "Vyh\u013eadajte da\u0148ov\xe9 sadzby", "search_tasks", "H\u013eada\u0165 \xfalohy", "search_settings", "Nastavenia vyh\u013ead\xe1vania", "search_projects", "H\u013eada\u0165 projekty", "search_expenses", "H\u013eada\u0165 v\xfddavky", "search_payments", "H\u013eadajte platby", "search_groups", "H\u013eada\u0165 v skupin\xe1ch", "search_company", "H\u013eada\u0165 spolo\u010dnos\u0165", "search_document", "Vyh\u013eada\u0165 1 dokument", "search_design", "Vyh\u013eada\u0165 1 vzh\u013ead", "search_invoice", "Vyh\u013eada\u0165 1 fakt\xfaru", "search_client", "Vyh\u013eada\u0165 1 klienta", "search_product", "Vyh\u013eada\u0165 1 produkt", "search_quote", "Vyh\u013eada\u0165 1 ponuku", "search_credit", "Vyh\u013eada\u0165 1 kredit", "search_vendor", "Vyh\u013eada\u0165 1 dod\xe1vate\u013ea", "search_user", "Vyh\u013eada\u0165 1 pou\u017e\xedvate\u013ea", "search_tax_rate", "Vyh\u013eada\u0165 1 da\u0148ov\xfa sadzbu", "search_task", "Vyh\u013eada\u0165 1 \xfalohy", "search_project", "Vyh\u013eada\u0165 1 projekt", "search_expense", "Vyh\u013eada\u0165 1 v\xfddavok", "search_payment", "Vyh\u013eada\u0165 1 platbu", "search_group", "Vyh\u013eada\u0165 1 skupinu", "refund_payment", "Vr\xe1ti\u0165 platbu", _s17_69, _s26_83, _s18_53, _s26_84, _s16_90, _s26_83, _s17_70, "\xdaspe\u0161ne stornovan\xe9 fakt\xfary", "reverse", "Opak", "full_name", "Cel\xe9 Meno", _s17_71, "Mesto/\u0160t\xe1t/PS\u010c", _s17_73, "PS\u010c/Mesto/\u0160t\xe1t", "custom1", "Prv\xe9 vlastn\xe9", "custom2", "Druh\xe9 vlastn\xe9", "custom3", "Tretie vlastn\xe9", "custom4", "\u0160tvrt\xe9 vlastn\xe9", "optional", "Volite\u013en\xe9", "license", "Licencia", "purge_data", "Vy\u010disti\u0165 \xfadaje", _s16_91, "\xdadaje spolo\u010dnosti boli \xfaspe\u0161ne vymazan\xe9", _s18_54, "Upozornenie: T\xfdmto natrvalo vyma\u017eete va\u0161e \xfadaje, nie je mo\u017en\xe9 vr\xe1ti\u0165 sp\xe4\u0165.", "invoice_balance", "Faktura\u010dn\xfd zostatok", "age_group_0", "0 - 30 Dn\xed", "age_group_30", "30 - 60 Dn\xed", "age_group_60", "60 - 90 Dn\xed", "age_group_90", "90 - 120 Dn\xed", "age_group_120", "120+ Dn\xed", "refresh", "Obnovi\u0165", "saved_design", "Dizajn bol \xfaspe\u0161ne ulo\u017een\xfd", "client_details", "Podrobnosti o klientovi", "company_address", "Adresa firmy", "invoice_details", "Detaily Fakt\xfary", "quote_details", "Podrobnosti ponuky", "credit_details", "Podrobnosti o \xfavere", "product_columns", "Produktov\xe9 st\u013apce", "task_columns", "St\u013apce \xfaloh", "add_field", "Prida\u0165 pole", "all_events", "V\u0161etky udalosti", "permissions", "Opr\xe1vnenia", "none", "\u017diadne", "owned", "Vlastnen\xe9", "payment_success", "\xdaspe\u0161nos\u0165 platby", "payment_failure", "Zlyhanie platby", "invoice_sent", ":count fakt\xfara odoslan\xe1", "quote_sent", "Cenov\xe1 ponuka bola odoslan\xe1", "credit_sent", "Kredit odoslan\xfd", "invoice_viewed", "Zobrazen\xe1 fakt\xfara", "quote_viewed", "Zobrazen\xe1 ponuka", "credit_viewed", "Zobrazen\xfd kredit", "quote_approved", "Cenov\xe1 ponuka bola schv\xe1len\xe1", _s25_32, "Prij\xedma\u0165 v\u0161etky upozornenia", _s16_92, "Zak\xfapi\u0165 licenciu", "apply_license", "Aplikova\u0165 licenciu", "cancel_account", "Vymaza\u0165 \xfa\u010det", _s22_44, "Upozornenie: T\xfdm sa natrvalo odstr\xe1ni v\xe1\u0161 \xfa\u010det, nie je mo\u017en\xe9 ho vr\xe1ti\u0165 sp\xe4\u0165.", "delete_company", "Odstr\xe1ni\u0165 spolo\u010dnos\u0165", _s22_45, "Upozornenie: T\xfdm sa natrvalo zma\u017ee spolo\u010dnos\u0165, nieje mo\u017en\xe9 ju vr\xe1ti\u0165 sp\xe4\u0165.", "enabled_modules", "Povolen\xe9 moduly", "converted_quote", "\xdaspe\u0161ne konvertovan\xe1 cenov\xe1 ponuka", "credit_design", "Kreditn\xfd dizajn", "includes", "Zah\u0155\u0148a", "header", "Hlavi\u010dka", "load_design", "Na\u010d\xedta\u0165 vzh\u013ead", "css_framework", "CSS Framework", "custom_designs", "Vlastn\xe9 vzh\u013eady", "designs", "Vzh\u013eady", "new_design", "Nov\xfd vzh\u013ead", "edit_design", "Upravi\u0165 vzh\u013ead", "created_design", "\xdaspe\u0161ne vytvoren\xfd vzh\u013ead", "updated_design", "\xdaspe\u0161ne aktualizovan\xfd vzh\u013ead", "archived_design", "Vzh\u013ead bol \xfaspe\u0161ne archivovan\xfd", "deleted_design", _s29_82, "removed_design", _s29_82, "restored_design", "\xdaspe\u0161ne obnoven\xfd vzh\u013ead", _s16_94, "\xdaspe\u0161ne archivovan\xe9 :value vzh\u013eady", "deleted_designs", "Vzh\u013eady :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", _s16_95, "\xdaspe\u0161ne obnoven\xe9 :value vzh\u013eady", "proposals", "N\xe1vrhy", "tickets", "Tikety", _s16_96, "Pravideln\xe9 ponuky", "recurring_tasks", "Opakuj\xface sa", _s18_55, "Spr\xe1va \xfa\u010dtu", "credit_date", "D\xe1tum dobropisu", "credit", "Dobropis", "credits", "Dobropisy", "new_credit", "Nov\xfd dobropis", "edit_credit", "Upravi\u0165 dobropis", "created_credit", "Dobropis \xfaspe\u0161ne vytvoren\xfd", "updated_credit", "Dobropis \xfaspe\u0161ne aktualizovan\xfd", "archived_credit", "Dobropis \xfaspe\u0161ne archivovan\xfd", "deleted_credit", "Dobropis \xfaspe\u0161ne odstr\xe1nen\xfd", "removed_credit", "Kredit bol \xfaspe\u0161ne odstr\xe1nen\xfd", "restored_credit", "Dobropis \xfaspe\u0161ne obnoven\xfd", _s16_98, "Po\u010det \xfaspe\u0161ne archivovan\xfdch dobropisov: :count", "deleted_credits", "Po\u010det \xfaspe\u0161ne odstr\xe1nen\xfdch dobropisov: :count", _s16_99, "\xdaspe\u0161ne obnoven\xe9 :value kredity", "current_version", "Aktu\xe1lna verzia", "latest_version", "Najnov\u0161ia verzia", "update_now", "Teraz aktualizova\u0165", _s26_19, "K dispoz\xedcii je nov\xe1 verzia webovej aplik\xe1cie", _s16_100, "Aktualiz\xe1cia k dispoz\xedcii", "app_updated", "Aktualiz\xe1cia bola \xfaspe\u0161ne dokon\u010den\xe1", "learn_more", "Zobrazi\u0165 viac", "integrations", "Integr\xe1cia", "tracking_id", "Id pre sledovanie", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "\xdaverov\xe9 podmienky", "new_company", "Nov\xe1 spolo\u010dnos\u0165", "added_company", "Spolo\u010dnos\u0165 bola \xfaspe\u0161ne pridan\xe1", "company1", "Vlastn\xe1 spolo\u010dnos\u0165 1", "company2", "Vlastn\xe1 spolo\u010dnos\u0165 2", "company3", "Vlastn\xe1 spolo\u010dnos\u0165 3", "company4", "Vlastn\xe1 spolo\u010dnos\u0165 4", "product1", "Produkt na mieru 1", "product2", "Produkt na mieru 2", "product3", "Produkt na mieru 3", "product4", "Produkt na mieru 4", "client1", "Vlastn\xfd klient 1", "client2", "Vlastn\xfd klient 2", "client3", "Vlastn\xfd klient 3", "client4", "Vlastn\xfd klient 4", "contact1", "Vlastn\xfd kontakt 1", "contact2", "Vlastn\xfd kontakt 2", "contact3", "Vlastn\xfd kontakt 3", "contact4", "Vlastn\xfd kontakt 4", "task1", "Vlastn\xe1 \xfaloha 1", "task2", "Vlastn\xe1 \xfaloha 2", "task3", "Vlastn\xe1 \xfaloha 3", "task4", "Vlastn\xe1 \xfaloha 4", "project1", "Vlastn\xfd projekt 1", "project2", "Vlastn\xfd projekt 2", "project3", "Vlastn\xfd projekt 3", "project4", "Vlastn\xfd projekt 4", "expense1", "Vlastn\xe9 n\xe1klady 1", "expense2", "Vlastn\xe9 n\xe1klady 2", "expense3", "Vlastn\xe9 n\xe1klady 3", "expense4", "Vlastn\xe9 n\xe1klady 4", "vendor1", "Vlastn\xfd dod\xe1vate\u013e 1", "vendor2", "Vlastn\xfd dod\xe1vate\u013e 2", "vendor3", "Vlastn\xfd dod\xe1vate\u013e 3", "vendor4", "Vlastn\xfd dod\xe1vate\u013e 4", "invoice1", "Vlastn\xe1 fakt\xfara 1", "invoice2", "Vlastn\xe1 fakt\xfara 2", "invoice3", "Vlastn\xe1 fakt\xfara 3", "invoice4", "Vlastn\xe1 fakt\xfara 4", "payment1", "Vlastn\xe1 platba 1", "payment2", "Vlastn\xe1 platba 2", "payment3", "Vlastn\xe1 platba 3", "payment4", "Vlastn\xe1 platba 4", "surcharge1", _s19_145, "surcharge2", _s19_146, "surcharge3", _s19_147, "surcharge4", _s19_148, "group1", "Vlastn\xe1 skupina 1", "group2", "Vlastn\xe1 skupina 2", "group3", "Vlastn\xe1 skupina 3", "group4", "Vlastn\xe1 skupina 4", "reset", "Resetova\u0165", "number", "\u010c\xedslo", "export", "Exportova\u0165", "chart", "Graf", "count", "Po\u010d\xedta\u0165", "totals", "S\xfa\u010dty", "blank", "Pr\xe1zdne", "day", "De\u0148", "month", "Mesiac", "year", "Rok", "subgroup", "Podskupina", "is_active", "Je akt\xedvne", "group_by", "Zoskupi\u0165 pod\u013ea", "credit_balance", "Zostatok kreditu", _s18_61, "Posledn\xe9 prihl\xe1senie kontaktu", _s17_77, "Cel\xe9 meno kontaktu", "contact_phone", "Kontaktn\xfd telef\xf3n", _s21_53, "Vlastn\xe1 hodnota kontaktu 1", _s21_54, "Vlastn\xe1 hodnota kontaktu 2", _s21_55, "Vlastn\xe1 hodnota kontaktu 3", _s21_56, "Vlastn\xe1 hodnota kontaktu 4", _s17_79, "Ulica dodania", _s17_80, "Byt/Apartm\xe1n dodania", "shipping_city", "Mesto pre dodanie", "shipping_state", "Kraj pre dodanie", _s20_55, "PS\u010c pre dodanie", _s16_130, "Krajina dodania", _s16_132, "Faktura\u010dn\xe1 ulica", _s16_133, "Faktura\u010dn\xfd byt/apartm\xe1n", "billing_city", "Faktura\u010dn\xe9 mesto", "billing_state", "Faktura\u010dn\xfd kraj", _s19_36, "Faktura\u010dn\xe9 PS\u010c", "billing_country", "Faktura\u010dn\xe1 krajina", "client_id", "ID z\xe1kazn\xedka", "assigned_to", "Priraden\xfd", "created_by", "Vytvoril :name", "assigned_to_id", "Priraden\xe9 k Id", "created_by_id", "Vytvoril Id", "add_column", "Prida\u0165 st\u013apec", "edit_columns", "Upravi\u0165 st\u013apce", "columns", "St\u013apce", "aging", "Starnutie", "profit_and_loss", "Zisk a Strata", "reports", "Reporty", "report", "Spr\xe1va", "add_company", "Prida\u0165 spolo\u010dnos\u0165", "unpaid_invoice", "Nezaplaten\xe1 fakt\xfara", "paid_invoice", "Zaplaten\xe1 fakt\xfara", _s16_134, "Neschv\xe1len\xe1 ponuka", "help", "Pomoc", "refund", "Vr\xe1ti\u0165", "refund_date", "D\xe1tum vr\xe1tenia pe\u0148az\xed", "filtered_by", "Filtrovan\xe9 pod\u013ea", "contact_email", "Kontaktn\xfd email", "multiselect", "Viacn\xe1sobn\xfd v\xfdber", "entity_state", "\u0160t\xe1t", "verify_password", "Overte heslo", "applied", "Aplikovan\xe9", _s21_57, "Zahrn\xfa\u0165 ned\xe1vne chyby z logov", _s30_8, "Dostali sme va\u0161u spr\xe1vu a pok\xfasime sa r\xfdchlo odpoveda\u0165.", "message", "Spr\xe1va", "from", "Od", _s20_57, "Zobrazi\u0165 podrobnosti o produkte", _s25_34, "V rozba\u013eovacej ponuke produktu uve\u010fte popis a cenu", _s20_59, "PDF renderer vy\u017eaduje :version", _s18_64, "Upravte percento poplatku", _s23_23, "Upravte percento, aby ste zoh\u013eadnili poplatok", _s18_66, "Konfigurova\u0165 nastavenia", "support_forum", "podporn\xe9 f\xf3rum", "about", "O", "documentation", "Dokument\xe1cia", "contact_us", "Kontaktujte n\xe1s", "subtotal", "Medzis\xfa\u010det", "line_total", "Spolu", "item", "Polo\u017eka", "credit_email", "Kreditn\xfd email", "iframe_url", "Webov\xe1 lokalita", "domain_url", "Adresa URL dom\xe9ny", _s21_58, "Heslo je pr\xedli\u0161 kr\xe1tke", _s20_60, "Heslo mus\xed obsahova\u0165 ve\u013ek\xe9 p\xedsmeno a \u010d\xedslo", _s19_38, "\xdalohy klientskeho port\xe1lu", _s23_24, "Panel klientskeho port\xe1lu", _s20_61, "Zadajte hodnotu", "deleted_logo", "Logo bolo \xfaspe\u0161ne odstr\xe1nen\xe9", "yes", "\xc1no", "no", "Nie", "generate_number", "Generova\u0165 \u010d\xedslo", "when_saved", "Po ulo\u017een\xed", "when_sent", "Ke\u010f odoslan\xe9", "select_company", "Vyberte Spolo\u010dnos\u0165", "float", "Float", "collapse", "Zbali\u0165", "show_or_hide", "Uk\xe1za\u0165/skry\u0165", "menu_sidebar", "Bo\u010dn\xfd panel ponuky", "history_sidebar", "Bo\u010dn\xfd panel hist\xf3rie", "tablet", "Tablet", "mobile", "Mobil", "desktop", "Desktop", "layout", "Rozlo\u017eenie", "view", "Zobrazi\u0165", "module", "Modul", "first_custom", "Prv\xe9 vlastn\xe9", "second_custom", "Druh\xe9 vlastn\xe9", "third_custom", "Tretie vlastn\xe9", "show_cost", "Zobrazi\u0165 cenu", _s17_82, "Zobrazi\u0165 cenu produktu", "show_cost_help", "Zobrazte pole s cenou produktu na sledovanie prir\xe1\u017eky/zisk", _s21_59, "Zobrazi\u0165 mno\u017estvo produktu", _s26_21, "Zobrazte pole mno\u017estva produktu, inak je predvolen\xe9 jedno", _s21_61, "Zobrazi\u0165 mno\u017estvo na fakt\xfare", _s26_22, "Zobrazte pole mno\u017estva riadkovej polo\u017eky, inak je predvolene nastaven\xe9 jedno", _s21_63, "Zobrazi\u0165 z\u013eavu na produkt", _s26_23, "Zobrazte pole z\u013eavy riadkovej polo\u017eky", _s16_136, "Predvolen\xe9 mno\u017estvo", _s21_65, "Automaticky nastavi\u0165 mno\u017estvo riadkovej polo\u017eky na jednu", "one_tax_rate", "Jedna da\u0148ov\xe1 sadzba", "two_tax_rates", "Dve da\u0148ov\xe9 sadzby", "three_tax_rates", "Tri da\u0148ov\xe9 sadzby", _s16_138, "Predvolen\xe1 sadzba dane", "user", "Pou\u017e\xedvate\u013e", "invoice_tax", "Da\u0148 na fakt\xfare", "line_item_tax", "Da\u0148 riadkovej polo\u017eky", "inclusive_taxes", "Vr\xe1tane dan\xed", _s17_84, "Faktura\u010dn\xe9 sadzby dane", "item_tax_rates", "Sadzby dane z polo\u017eiek", _s18_68, "Vyberte kontakt", "configure_rates", "Konfigurova\u0165 sadzby", _s18_69, "Nakonfigurujte br\xe1ny", "tax_settings", "Nastavenia dan\xed", _s18_71, "Sadzby dane", "accent_color", "Farba zv\xfdraznenia", "switch", "Prepn\xfa\u0165", _s19_40, "Zoznam oddelen\xfd \u010diarkami", "options", "Mo\u017enosti", _s16_140, "Jednoriadkov\xfd text", "multi_line_text", "Viacriadkov\xfd text", "dropdown", "Rozba\u013eovacia ponuka", "field_type", "Typ po\u013ea", _s27_35, "E-mail na obnovenie hesla bol odoslan\xfd", "submit", "Potvrdi\u0165", _s16_142, "Obnovi\u0165 heslo", "late_fees", "Poplatky za oneskorenie", "credit_number", "\u010c\xedslo dobropisu", "payment_number", "\u010c\xedslo platby", "late_fee_amount", "V\xfd\u0161ka poplatku z ome\u0161kania", _s16_143, "Poplatok za oneskorenie v percent\xe1ch", "schedule", "Pl\xe1n", "before_due_date", "Pred d\xe1tumom splatnosti", "after_due_date", _s18_72, _s18_73, "Po d\xe1tume fakt\xfary", "days", "Dni", "invoice_email", _s16_350, "payment_email", _s16_350, "partial_payment", _s16_351, "payment_partial", _s16_351, _s21_66, "E-mail s \u010diasto\u010dnou platbou", "quote_email", "Email pre ponuky", _s16_145, "Nekone\u010dn\xe1 pripomienka", _s16_147, "Filtrovan\xe9 pod\u013ea pou\u017e\xedvate\u013ea", "administrator", "Spr\xe1vca", _s18_74, "Umo\u017enite pou\u017e\xedvate\u013eovi spravova\u0165 pou\u017e\xedvate\u013eov, meni\u0165 nastavenia a upravova\u0165 v\u0161etky z\xe1znamy", "user_management", "Spr\xe1va pou\u017e\xedvate\u013eov", "users", "U\u017e\xedvatelia", "new_user", "Nov\xfd u\u017e\xedva\u0165e\u013e", "edit_user", "Upravi\u0165 pou\u017e\xedvate\u013ea", "created_user", "U\u017e\xedvate\u013e \xfaspe\u0161ne vytvoren\xfd", "updated_user", "Pou\u017e\xedvate\u013e \xfaspe\u0161ne upraven\xfd", "archived_user", "Pou\u017e\xedvate\u013e \xfaspe\u0161ne archivovan\xfd", "deleted_user", "Pou\u017e\xedvate\u013e \xfaspe\u0161ne vymazan\xfd", "removed_user", "Pou\u017e\xedvate\u013e bol \xfaspe\u0161ne odstr\xe1nen\xfd", "restored_user", "Pou\u017e\xedvate\u013e \xfaspe\u0161ne obnoven\xfd", "archived_users", "\xdaspe\u0161ne archivovan\xe9 :value pou\u017e\xedvatelia", "deleted_users", _s43_8, "removed_users", _s43_8, "restored_users", "Pou\u017e\xedvatelia :value boli \xfaspe\u0161ne obnoven\xed", _s16_149, "V\u0161eobecn\xe9 nastavenia", "invoice_options", "Mo\u017enosti fakt\xfary", _s17_86, "Skry\u0165 Uhraden\xe9 k d\xe1tumu", _s22_52, 'Po prijat\xed \xfahrady zobrazi\u0165 len oblas\u0165 "Uhraden\xe9 k d\xe1tumu" na fakt\xfarach.', _s23_26, "Zapracova\u0165 dokumenty", _s28_20, "Zahrn\xfa\u0165 prilo\u017een\xe9 obr\xe1zky do fakt\xfary.", _s16_151, "Zobrazi\u0165 hlavi\u010dku na", _s16_152, "Zobrazi\u0165 p\xe4tu na", "first_page", "Prv\xe1 strana", "all_pages", "V\u0161etky strany", "last_page", "Posledn\xe1 strana", "primary_font", "Prim\xe1rne p\xedsmo", "secondary_font", "Sekund\xe1rne p\xedsmo", "primary_color", "Prim\xe1rna farba", "secondary_color", "Sekund\xe1rna farba", "page_size", "Ve\u013ekos\u0165 str\xe1nky", "font_size", "Ve\u013ekos\u0165 p\xedsma", "quote_design", "Vzh\u013ead ponuky", "invoice_fields", "Polia fakt\xfary", "product_fields", "Polia produktu", "invoice_terms", "Faktura\u010dn\xe9 podmienky", "invoice_footer", "P\xe4ta fakt\xfary", "quote_terms", "Podmienky ponuky", "quote_footer", "P\xe4ta ponuky", _s18_75, "Automatick\xfd e-mail", _s23_27, "Automaticky odosiela\u0165 e-mailom opakuj\xface sa fakt\xfary, ke\u010f s\xfa vytvoren\xe9.", _s18_76, "Automatick\xe1 archiv\xe1cia", _s23_28, "Automaticky archivova\u0165 ponuky po konverzii.", _s18_77, "Automaticky konvertova\u0165", _s23_29, "Automaticky previes\u0165 ponuku na fakt\xfaru po schv\xe1len\xed z\xe1kazn\xedkom.", _s17_88, "Nastavenia pracovn\xe9ho postupu", "freq_daily", "Denne", "freq_weekly", "T\xfd\u017edenne", "freq_two_weeks", "Dva t\xfd\u017edne", "freq_four_weeks", "\u0160tyri t\xfd\u017edne", "freq_monthly", "Mesa\u010dne", "freq_two_months", "Dva mesiace", _s17_90, "Tri mesiace", _s16_153, "\u0160tyri mesiace", "freq_six_months", "\u0160es\u0165 mesiacov", "freq_annually", "Ro\u010dne", "freq_two_years", "Dva roky", _s16_154, "Tri roky", "never", "Nikdy", "company", "Spolo\u010dnos\u0165", _s17_91, "Generovan\xe9 \u010c\xedsla", "charge_taxes", "\xda\u010dtova\u0165 dane", "next_reset", "\u010eal\u0161\xed Reset", "reset_counter", "Vynulova\u0165 po\u010d\xedtadlo", _s16_155, "Opakuj\xfaca sa predpona", "number_padding", "Odsadenie \u010d\xedsla", "general", "V\u0161eobecn\xfd", "surcharge_field", "Pr\xedplatkov\xe9 pole", "company_field", "Pole spolo\u010dnosti", "company_value", "Hodnota spolo\u010dnosti", "credit_field", "\xdaverov\xe9 pole", "invoice_field", "Pole fakt\xfary", _s17_93, "Pr\xedplatok za fakt\xfaru", "client_field", "Pole z\xe1kazn\xedka", "product_field", "Pole produktu", "payment_field", "Platobn\xe9 pole", "contact_field", "Pole kontaktu", "vendor_field", "Pole dod\xe1vate\u013ea", "expense_field", "Pole v\xfddajov", "project_field", "Pole produktu", "task_field", "Pole \xfalohy", "group_field", "Skupinov\xe9 pole", "number_counter", "Po\u010d\xedtadlo \u010d\xedsel", "prefix", "Predpona", "number_pattern", "Vzor \u010d\xedsla", "messages", "Spr\xe1vy", "custom_css", "Volite\u013en\xe9 CSS", _s17_95, "Vlastn\xfd JavaScript", _s16_157, "Zobrazi\u0165 v PDF", _s21_68, "Uk\xe1za\u0165 podpis klienta na fakt\xfare/cenovej ponuke PDF.", _s25_40, "Za\u010diarkavacie pol\xed\u010dko Faktura\u010dn\xe9 podmienky", _s30_9, "Vy\u017eadova\u0165 od klienta potvrdenie, \u017ee s\xfahlas\xed s faktura\u010dn\xfdmi podmienkami.", _s23_30, "Za\u010diarkavacie pol\xed\u010dko Podmienky objedn\xe1vky", _s28_21, "Vy\u017eadova\u0165 od z\xe1kazn\xedkov s\xfahlas s podmienkami pon\xfak.", _s25_41, "Podpis na fakt\xfare", _s30_10, "Vy\u017eadova\u0165 od z\xe1kazn\xedka podpis.", _s23_31, "Podpis na objedn\xe1vke", _s22_54, "Zabezpe\u010di\u0165 fakt\xfary heslom", _s27_36, "Umo\u017e\u0148uje nastavi\u0165 heslo pre ka\u017ed\xfd kontakt. Ak je nastaven\xe9 heslo, pred zobrazen\xedm fakt\xfar bude vy\u017eadovan\xe9.", "authorization", "Opr\xe1vnenie", "subdomain", "Poddom\xe9na", "domain", "Dom\xe9na", "portal_mode", "Re\u017eim port\xe1lu", "email_signature", "S pozdravom,", _s24_38, "U\u013eah\u010dite svojim klientom platenie pridan\xedm ozna\u010den\xedm schema.org do va\u0161ich e-mailov.", "plain", "Oby\u010dajn\xfd", "light", "Svetl\xe1", "dark", "Tmav\xe1", "email_design", "Vzh\u013ead emailu", "attach_pdf", "Prilo\u017ei\u0165 PDF", _s16_158, "Prilo\u017ei\u0165 dokumenty", "attach_ubl", "Pripojte URL", "email_style", "\u0160t\xfdl e-mailu", _s19_42, "Mo\u017enos\u0165 ozna\u010di\u0165", "reply_to_email", "Email pre odpove\u010f", "reply_to_name", "Odpoveda\u0165 - pod\u013ea n\xe1zvu", "bcc_email", "BCC E-mail", "processed", "Spracovan\xe9", "credit_card", "Kreditn\xe1 karta", "bank_transfer", "Bankov\xfd prevod", "priority", "Priorita", "fee_amount", "V\xfd\u0161ka poplatku", "fee_percent", "Percento poplatku", "fee_cap", "Obmedzenie poplatku", "limits_and_fees", "Limity/Poplatky", "enable_min", "Povoli\u0165 min", "enable_max", "Povoli\u0165 max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "ax", _s19_43, "Log\xe1 akceptovan\xfdch kariet", "credentials", "Poverenia", "update_address", "Upravi\u0165 adresu", _s19_45, "Aktualizova\u0165 adresu z\xe1kazn\xedka poskytnut\xfdmi \xfadajmi", "rate", "Sadzba", "tax_rate", "Sadzba dane", "new_tax_rate", "Nov\xe1 sadzba dane", "edit_tax_rate", "Upravi\u0165 sadzbu dane", _s16_160, "Sadzba dane \xfaspe\u0161ne vytvoren\xe1", _s16_161, "Sadzba dane \xfaspe\u0161ne upraven\xe1", _s17_98, "Sadzba dane \xfaspe\u0161ne archivovan\xe1", _s16_162, "Sadzba dane \xfaspe\u0161ne odstr\xe1nen\xe1", _s17_99, "Sadzba dane \xfaspe\u0161ne obnoven\xe1", _s18_78, "Sadzby dane :value boli \xfaspe\u0161ne archivovan\xe9", _s17_100, "Stavy \xfaloh :value boli \xfaspe\u0161ne vymazan\xe9", _s18_79, "Sadzby dane :value boli \xfaspe\u0161ne obnoven\xe9", "fill_products", "Automaticky vyplni\u0165 produkty", _s18_80, "V\xfdber produktu automaticky vypln\xed popis a cenu", "update_products", "Automaticky aktualizova\u0165 produkty", _s20_65, "\xdaprava fakt\xfary automaticky uprav\xed kni\u017enicu produktov", _s16_163, "Konvertova\u0165 produkty", _s21_69, "Automaticky prepo\u010d\xedtajte ceny produktov na menu klienta", "fees", "Poplatky", "limits", "Limity", "provider", "Poskytovate\u013e", "company_gateway", "Platobn\xe1 br\xe1na", _s16_165, "Platobn\xe9 br\xe1ny", _s19_46, "Nov\xe1 br\xe1na", _s20_66, "Upravi\u0165 br\xe1nu", _s23_32, "Br\xe1na \xfaspe\u0161ne vytvoren\xe1", _s23_33, "Br\xe1na \xfaspe\u0161ne upraven\xe1", _s24_39, "Br\xe1na \xfaspe\u0161ne archivovan\xe1", _s23_34, "Br\xe1na \xfaspe\u0161ne odstr\xe1nen\xe1", _s24_40, "Br\xe1na \xfaspe\u0161ne obnoven\xe1", _s25_43, "Br\xe1ny :value boli \xfaspe\u0161ne archivovan\xe9", _s24_41, "Br\xe1ny :value boli \xfaspe\u0161ne vymazan\xe9", _s25_44, "Br\xe1ny :value boli \xfaspe\u0161ne obnoven\xe9", _s16_167, "Pokra\u010dova\u0165 v \xfaprave", "discard_changes", "Zahodi\u0165 zmeny", "default_value", "Predvolen\xe1 hodnota", "disabled", "Vypnut\xe9", "currency_format", "Form\xe1t meny", _s21_70, "Prv\xfd de\u0148 v t\xfd\u017edni", _s23_35, "Prv\xfd mesiac v roku", "sunday", "Nede\u013ea", "monday", "Pondelok", "tuesday", "Utorok", "wednesday", "Streda", "thursday", "\u0160tvrtok", "friday", "Piatok", "saturday", "Sobota", "january", "Janu\xe1r", "february", "Febru\xe1r", "march", "Marec", "april", "Apr\xedl", "may", "M\xe1j", "june", "J\xfan", "july", "J\xfal", "august", "August", "september", "September", "october", "Okt\xf3ber", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "K\xf3d", "date_format", "Form\xe1t d\xe1tumu", "datetime_format", "Form\xe1t d\xe1tumu a \u010dasu", "military_time", "24-hodinov\xfd form\xe1t \u010dasu", _s18_81, "24-hodinov\xe9 zobrazenie", "send_reminders", "Odosla\u0165 pripomienky", "timezone", "\u010casov\xe9 p\xe1smo", _s19_47, "Filtrovan\xe9 pod\u013ea projektu", _s17_101, "Filtrovan\xe9 podla skupiny", _s19_49, "Filtrovan\xe9 podla fakt\xfary", _s18_82, "Filtrovan\xe9 podla z\xe1kazn\xedka", _s18_84, "Filtrovan\xe9 podla dod\xe1vate\u013ea", "group_settings", "Nastavenia skupiny", "group", "Skupina", "groups", "Skupiny", "new_group", "Nov\xe1 skupina", "edit_group", "Upravi\u0165 skupinu", "created_group", "Skupina \xfaspe\u0161ne vytvoren\xe1", "updated_group", "Skupina \xfaspe\u0161ne upraven\xe1", "archived_groups", "\xdaspe\u0161ne archivovan\xe9 :value skupiny", "deleted_groups", "Skupiny :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", "restored_groups", "\xdaspe\u0161ne obnoven\xe9 :value skupiny", "archived_group", "Skupina \xfaspe\u0161ne archivovan\xe1", "deleted_group", "Skupina \xfaspe\u0161ne zmazan\xe1", "restored_group", "Skupina \xfaspe\u0161ne obnoven\xe1", "upload_logo", "Nahra\u0165 logo", "uploaded_logo", "Logo \xfaspe\u0161ne nahrat\xe9", "logo", "Logo", "saved_settings", "Nastavenia boli \xfaspe\u0161ne ulo\u017en\xe9", _s16_169, "Nastavenia produktu", "device_settings", "Nastavenie zariadenia", "defaults", "Predvolen\xe9", "basic_settings", "Z\xe1kladn\xe9 nastavenia", _s17_103, "Roz\u0161\xedren\xe9 nastavenia", "company_details", "Firemn\xe9 \xfadaje", "user_details", "Podrobnosti o pou\u017e\xedvate\u013eovi", "localization", "Lokaliz\xe1cia", "online_payments", "Online platby", "tax_rates", "Sadzby dane", "notifications", "Notifik\xe1cie", "import_export", "Import | Export", "custom_fields", "Volite\u013en\xe9 polia", "invoice_design", "Vzh\u013ead fakt\xfary", "buy_now_buttons", "Tla\u010didl\xe1 K\xfapi\u0165 teraz", "email_settings", "Nastavenia Emailov", _s23_37, "\u0160abl\xf3ny a pripomienky", _s22_55, "Kreditn\xe9 karty a banky", _s19_51, "Vizualiz\xe1cie \xfadajov", "price", "Cena", "email_sign_up", "E-mailov\xe1 registr\xe1cia", "google_sign_up", "Registr\xe1cia Google", _s27_40, "\u010eakujeme za V\xe1\u0161 n\xe1kup!", "redeem", "Uplatni\u0165", "back", "Sp\xe4\u0165", "past_purchases", "Predch\xe1dzaj\xface n\xe1kupy", _s19_53, "Ro\u010dn\xe9 predplatn\xe9", "pro_plan", "Verzia Pro", "enterprise_plan", "Verzia Enterprise", "count_users", ":count u\u017e\xedvate\u013eov", "upgrade", "Inovova\u0165", _s25_45, "Pros\xedm vlo\u017ete krstn\xe9 meno", _s24_42, "Pros\xedm vlo\u017ete priezvisko", _s33_21, "Pros\xedm, potvr\u010fte, \u017ee s\xfahlas\xedte s obchodn\xfdmi podmienkami a ochranou s\xfakromia, ak chcete vytvori\u0165 \xfa\u010det.", "i_agree_to_the", "S\xfahlas\xedm s", _s16_171, "Obchodn\xe9 podmienky", "privacy_policy", "Ochrana s\xfakromia", "sign_up", "Regist\xe1cia", "account_login", "Prihl\xe1senie do \xfa\u010dtu", "view_website", "Pozrie\u0165 webstr\xe1nku", "create_account", "Vytvori\u0165 \xfa\u010det", "email_login", "Prihl\xe1senie e-mailom", "create_new", "Vytvori\u0165 nov\xfd", _s18_86, "Nie je vybran\xfd \u017eiadny z\xe1znam", _s21_73, "Pros\xedm ulo\u017ete alebo zru\u0161te Va\u0161e zmeny", "download", "Stiahnu\u0165", _s27_41, "Po\u017eaduje sa verzia Enterprise", "take_picture", "Vyfoti\u0165", "upload_file", "Nahra\u0165 s\xfabor", "document", "Dokument", "documents", "Dokumenty", "new_document", "Nov\xfd dokument", "edit_document", "Editova\u0165 dokument", _s17_105, "Dokument \xfaspe\u0161ne nahran\xfd", _s16_173, "Dokument \xfaspe\u0161ne aktualizovan\xfd", _s17_106, "Dokument \xfaspe\u0161ne archivovan\xfd", _s16_174, "Dokument \xfaspe\u0161ne vymazan\xfd", _s17_107, "Dokument \xfaspe\u0161ne obnoven\xfd", _s18_88, "\xdaspe\u0161ne archivovan\xe9 :value dokumenty", _s17_108, "Dokumenty :value boli \xfaspe\u0161ne odstr\xe1nen\xe9", _s18_89, "\xdaspe\u0161ne obnoven\xe9 :value dokumenty", "no_history", "\u017diadna Hist\xf3ria", "expense_date", "D\xe1tum v\xfddajov", "pending", "\u010cak\xe1 sa", _s16_175, "Prihl\xe1sen\xe9", _s16_176, "\u010cak\xe1", _s16_177, "Fakt\xfarovan\xe9", "converted", "Konvertovan\xe9", _s24_44, "Pridat dokumenty do fakt\xfary", "exchange_rate", "V\xfdmenn\xfd kurz", _s16_178, "Previes\u0165 menu", "mark_paid", "Ozna\u010di\u0165 uhraden\xe9", "category", "Kateg\xf3ria", "address", "Adresa", "new_vendor", "Nov\xfd dod\xe1vate\u013e", "created_vendor", "Dod\xe1vate\u013e \xfaspe\u0161ne vytvoren\xfd", "updated_vendor", "Dod\xe1vate\u013e \xfaspe\u0161ne aktualizovan\xfd", "archived_vendor", "Dod\xe1vate\u013e \xfaspe\u0161ne archivovan\xfd", "deleted_vendor", "Dod\xe1vate\u013e \xfaspe\u0161ne odstr\xe1nen\xfd", "restored_vendor", "Dod\xe1vate\u013e \xfaspe\u0161ne obnoven\xfd", _s16_179, "Po\u010det \xfaspe\u0161ne archivovan\xfdch dod\xe1vate\u013eov: :count", "deleted_vendors", "Po\u010det \xfaspe\u0161ne odstranen\xfdch dod\xe1vate\u013eov: :count", _s16_180, "Dod\xe1vatelia :value boli \xfaspe\u0161ne obnoven\xed", "new_expense", "Zadajte v\xfddaje", "created_expense", "V\xfddaje \xfaspe\u0161ne vytvoren\xe9", "updated_expense", "V\xfddaje \xfaspe\u0161ne aktualizovan\xe9", _s16_181, _s26_85, "deleted_expense", _s22_130, _s16_182, "N\xe1klad \xfaspe\u0161ne obnoven\xfd", _s17_109, _s26_85, _s16_183, _s22_130, _s17_110, "\xdaspe\u0161ne obnoven\xe9 :value v\xfddavky", "copy_shipping", "Kop\xedrova\u0165 dodanie", "copy_billing", "Kop\xedrova\u0165 faktur\xe1ciu", "design", "Vzh\u013ead", _s21_74, "Nepodarilo sa n\xe1js\u0165 z\xe1znam", "invoiced", "Fakturovan\xe9", "logged", "Prihl\xe1sen\xfd", "running", "Spusten\xe9", "resume", "Obnovi\u0165", "task_errors", "Pros\xedm opravte prekr\xfdvaj\xfaci sa \u010das", "start", "Spusti\u0165", "stop", "Zastavi\u0165", "started_task", "\xdaloha \xfaspe\u0161ne spusten\xe1", "stopped_task", "\xdaloha \xfaspe\u0161ne zastaven\xe1", "resumed_task", _s22_131, "now", "Teraz", _s16_184, "Automatick\xe9 spustenie \xfaloh", "timer", "\u010casova\u010d", "manual", "Manu\xe1l", "budgeted", "Rozpo\u010dtovan\xe9", "start_time", "Po\u010diato\u010dn\xfd \u010das", "end_time", "\u010cas ukon\u010denia", "date", "D\xe1tum", "times", "\u010casy", "duration", "Trvanie", "new_task", "Nov\xe1 \xfaloha", "created_task", "\xdaloha \xfaspe\u0161ne vytvoren\xe1", "updated_task", "\xdaloha \xfaspe\u0161ne upraven\xe1", "archived_task", "\xdaloha \xfaspe\u0161ne archivovan\xe1", "deleted_task", "\xdaloha \xfaspe\u0161ne odstr\xe1nen\xe1", "restored_task", _s22_131, "archived_tasks", "Po\u010det \xfaspe\u0161ne archivovan\xfdch \xfaloh: :count", "deleted_tasks", "Po\u010det \xfaspe\u0161ne zmazan\xfdch \xfaloh: :count", "restored_tasks", "\xdaspe\u0161ne obnoven\xe9 :value \xfalohy", _s19_55, "Zadaj meno", "budgeted_hours", "Rozpo\u010dtovan\xe9 hodiny", "created_project", "Projekt bol \xfaspe\u0161ne vytvoren\xfd", "updated_project", "Projekt bol \xfaspe\u0161ne upraven\xfd", _s16_186, "Projekt bol \xfaspe\u0161ne archivovan\xfd", "deleted_project", "Projekt bol \xfaspe\u0161ne zmazan\xfd", _s16_187, "Projekt bol \xfaspe\u0161ne obnoven\xfd", _s17_111, _s45_8, _s16_188, _s45_8, _s17_112, "\xdaspe\u0161ne obnoven\xe9 :value projekty", "new_project", "Nov\xfd projekt", _s27_45, "\u010eakujeme, \u017ee pou\u017e\xedvate na\u0161u aplik\xe1ciu!", "if_you_like_it", "Ak sa V\xe1m p\xe1\u010di pros\xedm", "click_here", "kliknite sem", _s18_90, "Kliknite tu", "to_rate_it", "aby ste to ohodnotil.", "average", "Priemer", "unapproved", "Neschv\xe1len\xe9", _s30_15, "Ak chcete zmeni\u0165 toto nastavenie, overte toto\u017enos\u0165", "locked", "Uzamknut\xe9", "authenticate", "Overi\u0165", _s19_57, "Pros\xedm overte", _s24_46, "Biometrick\xe1 autentifik\xe1cia", "footer", "P\xe4ta", "compare", "Porovna\u0165", "hosted_login", "Hostite\u013esk\xe9 prihl\xe1senie", "selfhost_login", "Vlastn\xe9 prihl\xe1senie", "google_sign_in", "Prihl\xe1ste sa pomocou Google", "today", "Dnes", "custom_range", "Vlastn\xfd rozsah", "date_range", "\u010casov\xfd rozsah", "current", "Aktu\xe1lny", "previous", "Predch\xe1dzaj\xfaci", "current_period", "Aktu\xe1ln\xe9 obdobie", _s17_113, "Porovn\xe1van\xe9 obdobie", "previous_period", "Predch\xe1dzaj\xface obdobie", "previous_year", "Minul\xfd rok", "compare_to", "Porovna\u0165 s", "last7_days", "Posledn\xfdch 7 dn\xed", "last_week", "Posledn\xfd t\xfd\u017ede\u0148", "last30_days", "Posledn\xfdch 30 dn\xed", "this_month", "Tento Mesiac", "last_month", "Posledn\xfd mesiac", "this_year", "Tento Rok", "last_year", "Posledn\xfd Rok", "custom", "Vlastn\xe9", _s16_189, "Duplikova\u0165 do fakt\xfary", "clone_to_quote", "Duplikova\u0165 do ponuky", "clone_to_credit", "Klon na \xfaver", "view_invoice", "Zobrazi\u0165 fakt\xfaru", "convert", "Konvertova\u0165", "more", "VIac", "edit_client", "Upravi\u0165 z\xe1kazn\xedka", "edit_product", "Upravi\u0165 produkt", "edit_invoice", "\xdaprava fakt\xfary", "edit_quote", "Upravi\u0165 ponuku", "edit_payment", "Upravi\u0165 platbu", "edit_task", "Upravi\u0165 \xfalohu", "edit_expense", "Upravi\u0165 v\xfddaje", "edit_vendor", "Upravi\u0165 dod\xe1vate\u013ea", "edit_project", "Upravi\u0165 projekt", _s20_68, "Upravi\u0165 pravideln\xfa ponuku", "billing_address", "Faktura\u010dn\xe1 adresa", _s16_191, "Dodacia adresa", "total_revenue", "Celkov\xfd pr\xedjem", "average_invoice", "Priemern\xe1 fakt\xfara", "outstanding", "Nezaplaten\xe9", "invoices_sent", ":count fakt\xfar odoslan\xfdch", "active_clients", "akt\xedvni z\xe1kazn\xedci", "close", "Zavrie\u0165", "email", "Email", "password", "Heslo", "url", "URL", "secret", "Tajnost", "name", "Meno", "logout", "Odhl\xe1si\u0165", "login", "Prihl\xe1si\u0165", "filter", "Filter", "sort", "Zoradi\u0165", "search", "H\u013eada\u0165", "active", "Akt\xedvny", "archived", "Archivovan\xe9", "deleted", "Odstr\xe1nen\xe9", "dashboard", "Prehlad", "archive", "Arch\xedv", "delete", "Odstr\xe1ni\u0165", "restore", "Obnovi\u0165", _s16_193, "Obnovenie dokon\u010den\xe9", _s23_38, "Pros\xedm zadajte v\xe1\u0161 email", _s26_32, "Prosim zadajte va\u0161e heslo", _s21_77, "Pros\xedm zadajte va\u0161u URL", _s26_34, "Pros\xedm zadajte v\xe1\u0161 produktov\xfd k\u013e\xfa\u010d", "ascending", "Vzostupne", "descending", "Zostupne", "save", "Ulo\u017ei\u0165", _s17_115, "Nastala chyba", "paid_to_date", "Zaplaten\xe9 ku d\u0148u", "balance_due", "Zost\xe1va uhradi\u0165", "balance", "Zostatok", "overview", "Zhrnutie", "details", "Detaily", "phone", "Telef\xf3n", "website", "Web", "vat_number", "I\u010c DPH", "id_number", "ID \u010d\xedslo", "create", "Vytvori\u0165", _s19_59, "Hodnota :value bola skop\xedrovan\xe1 do schr\xe1nky", "error", "Chyba", _s16_195, "Nepodarilo sa spusti\u0165", "contacts", "Kontakty", "additional", "Dodato\u010dn\xe9", "first_name", "Meno", "last_name", "Priezvisko", "add_contact", "Prida\u0165 kontakt", "are_you_sure", "Ste si ist\xfd?", "cancel", "Storno", "ok", "Ok", "remove", "Odstr\xe1ni\u0165", _s16_197, "E-mail je neplatn\xfd", "product", "Produkt", "products", "Produkty", "new_product", "Nov\xfd produkt", "created_product", "Produkt \xfaspe\u0161ne vytvoren\xfd", "updated_product", "Produkt \xfaspe\u0161ne zmenen\xfd", _s16_199, "Produkt \xfaspe\u0161ne archivovan\xfd", "deleted_product", "Produkt bol \xfaspe\u0161ne zmazan\xfd", _s16_200, "Produkt bol \xfaspe\u0161ne obnoven\xfd", _s17_117, "Po\u010det \xfaspe\u0161ne archivovan\xfdch produktov: :count", _s16_201, "Po\u010det \xfaspe\u0161ne zmazan\xfdch produktov: :count", _s17_118, "\xdaspe\u0161ne obnoven\xe9 :value produkty", "product_key", "Produkt", "notes", "Pozn\xe1mky", "cost", "N\xe1klady", "client", "Z\xe1kazn\xedk", "clients", "z\xe1kazn\xedci", "new_client", "Nov\xfd z\xe1kazn\xedk", "created_client", "Z\xe1kazn\xedk \xfaspe\u0161ne vytvoren\xfd", "updated_client", "Z\xe1kazn\xedk \xfaspe\u0161ne aktualizovan\xfd", "archived_client", "Z\xe1kazn\xedk \xfaspe\u0161ne archivovan\xfd", _s16_202, "Po\u010det \xfaspe\u0161ne archivovan\xfdch z\xe1kazn\xedkov: :count", "deleted_client", "Z\xe1kazn\xedk \xfaspe\u0161ne odstr\xe1nen\xfd", "deleted_clients", "Po\u010det \xfaspe\u0161ne odstranen\xfdch z\xe1kazn\xedkov: :count", "restored_client", "Z\xe1kazn\xedk \xfaspe\u0161ne obnoven\xfd", _s16_203, "\xdaspe\u0161ne obnoven\xed :value klienti", "address1", "Ulica", "address2", "Byt/Apartm\xe1n", "city", "Mesto", "state", "Kraj", "postal_code", "PS\u010c", "country", "Krajina", "invoice", "Fakt\xfara", "invoices", "Fakt\xfary", "new_invoice", "Nov\xe1 fakt\xfara", "created_invoice", "Fakt\xfara \xfaspe\u0161ne vytvoren\xe1", "updated_invoice", "Fakt\xfara \xfaspe\u0161ne aktualizovan\xe1", _s16_204, "Fakt\xfara \xfaspe\u0161ne archivovan\xe1", "deleted_invoice", _s26_84, _s16_205, "Fakt\xfara \xfaspe\u0161ne obnoven\xe1", _s17_119, "Po\u010det \xfaspe\u0161ne archivovan\xfdch fakt\xfar: :count", _s16_206, "Po\u010det \xfaspe\u0161ne odstr\xe1nen\xfdch fakt\xfar: :count", _s17_120, "\xdaspe\u0161ne obnoven\xe9 :value fakt\xfary", "emailed_invoice", _s24_108, "emailed_payment", "Platba bola \xfaspe\u0161ne odoslan\xe1 e-mailom", "amount", "\u010ciastka", "invoice_number", "\u010c\xedslo fakt\xfary", "invoice_date", "D\xe1tum fakt\xfary", "discount", "Z\u013eava", "po_number", _s16_259, "terms", "Podmienky", "public_notes", "Verejn\xe9 pozn\xe1mky", "private_notes", "S\xfakromn\xe9 pozn\xe1mky", "frequency", "Frekvencia", "start_date", "Za\u010diatok", "end_date", "Koniec", "quote_number", "\u010c\xedslo ponuky", "quote_date", "D\xe1tum ponuky", "valid_until", "Platn\xe9 do", "items", "Polo\u017eky", "partial_deposit", "\u010ciasto\u010dn\xe9/Vklad", "description", "Popis", "unit_cost", "Jednotkov\xe1 cena", "quantity", "Mno\u017estvo", "add_item", "Prida\u0165 polo\u017eku", "contact", "Kontakt", "work_phone", "Telef\xf3n", "total_amount", "Celkov\xe1 suma", "pdf", "PDF", "due_date", _s16_349, _s16_207, "\u010ciasto\u010dn\xfd d\xe1tum splatnosti", "status", "Stav", _s17_121, "Stav fakt\xfary", "quote_status", "Stav ponuky", _s22_56, "Kliknut\xedm na + prid\xe1te polo\u017eku", _s22_58, "Kliknut\xedm na + prida\u0165 \u010das", "count_selected", ":count vybrat\xfdch", "total", "Celkom", "percent", "Percent", "edit", "Upravi\u0165", "dismiss", "Odmietnu\u0165", _s20_70, "Vyberte d\xe1tum", _s22_59, "Vyberte klienta", _s24_48, "Pros\xedm zvo\u013ete fakt\xfaru", "task_rate", "\xdaloha sadzba", "settings", "Nastavenia", "language", "Jazyk", "currency", "Mena", "created_at", "D\xe1tum vytvorenia", "created_on", "Vytvoren\xe9", "updated_at", "Aktualizovan\xe9", "tax", "Da\u0148", _s30_17, "Pros\xedm vlo\u017ete \u010d\xedslo fakt\xfary", _s27_49, "Pros\xedm vlo\u017ete \u010d\xedslo ponuky", "past_due", "Po splatnosti", "draft", "N\xe1vrh", "sent", "Odoslan\xe9", "viewed", "Zobrazen\xe9", "approved", "Schv\xe1len\xe9", "partial", "Z\xe1loha", "paid", "Zaplaten\xe9", "mark_sent", "Ozna\u010di\u0165 ako odoslan\xe9", _s22_61, _s42_25, _s22_62, _s42_25, _s23_40, _s42_26, _s23_41, _s42_26, "done", "Hotovo", _s37_18, "Zadajte meno klienta alebo kontaktnej osoby", "dark_mode", "Tmav\xfd re\u017eim", _s27_51, "Ak chcete pou\u017ei\u0165 zmenu, re\u0161tartujte aplik\xe1ciu", "refresh_data", "Obnovi\u0165 \xfadaje", "blank_contact", "Pr\xe1zdny kontakt", "activity", "Aktivita", _s16_209, "Nena\u0161li sa \u017eiadne z\xe1znamy", "clone", "Duplikova\u0165", "loading", "Na\u010d\xedtavam", "industry", "Odvetvie", "size", "Ve\u013ekos\u0165", "payment_terms", "Platobn\xe9 podmienky", "payment_date", "D\xe1tum platby", "payment_status", "Stav \xfahrady", _s16_211, "\u010cak\xe1", _s16_212, "Neplatn\xe9", _s16_213, "Zlyhanie", _s16_214, "Dokon\u010den\xe9", _s16_215, _s17_226, _s16_216, "Vr\xe1ten\xe9", _s17_122, "Neaplikovan\xe9", _s17_123, _s19_144, "net", "\u010cist\xfd", "client_portal", "Z\xe1kazn\xedcky port\xe1l", "show_tasks", "Zobrazi\u0165 \xfalohy", "email_reminders", "Pripomienky emailom", "enabled", "Povolen\xe9", "recipients", "Pr\xedjemci", "initial_email", "\xdavodn\xfd Email", "first_reminder", "Prv\xe1 Upomienka", "second_reminder", "Druh\xe1 Upomienka", "third_reminder", _s16_352, "reminder1", "Prv\xe1 Upomienka", "reminder2", "Druh\xe1 Upomienka", "reminder3", _s16_352, "template", "\u0160abl\xf3na", "send", "Odoslan\xe9", "subject", "Predmet", "body", "Telo", "send_email", "Posla\u0165 e-mail", "email_receipt", "Odosla\u0165 z\xe1kazn\xedkovi potvrdenie o \xfahrade", "auto_billing", _s21_163, "button", "Tla\u010didlo", "preview", "Uk\xe1\u017eka", "customize", "Prisp\xf4sobi\u0165", "history", "Hist\xf3ria", "payment", "Platba", "payments", "Platby", "refunded", "Vr\xe1ten\xe9", "payment_type", "Druh platby", _s21_79, "Referencia transakcie", "enter_payment", "Zada\u0165 platbu", "new_payment", "Nov\xe1 platba", "created_payment", "Platba \xfaspe\u0161ne vytvoren\xe1", "updated_payment", "Platba \xfaspe\u0161ne upraven\xe1", _s16_217, "Platba \xfaspe\u0161ne archivovan\xe1", "deleted_payment", "Platba \xfaspe\u0161ne odstr\xe1nen\xe1", _s16_218, "Platba \xfaspe\u0161ne obnoven\xe1", _s17_124, "Platby \xfaspe\u0161ne archivovan\xe9", _s16_219, "Po\u010det \xfaspe\u0161ne odstr\xe1nen\xfdch platieb: :count", _s17_125, "\xdaspe\u0161ne obnoven\xe9 :value platby", "quote", "Ponuka", "quotes", "Ponuky", "new_quote", "Nov\xe1 ponuka", "created_quote", "Ponuka \xfaspe\u0161ne vytvoren\xe1", "updated_quote", "Ponuka \xfaspe\u0161ne zmenen\xe1", "archived_quote", "Ponuka \xfaspe\u0161ne z\xe1lohovan\xe1", "deleted_quote", "Ponuka \xfaspe\u0161ne odstr\xe1nen\xe1", "restored_quote", "Ponuka \xfaspe\u0161ne obnoven\xe1", "archived_quotes", "Po\u010det \xfaspe\u0161ne archivovan\xfdch pon\xfak: :count", "deleted_quotes", "Po\u010det \xfaspe\u0161ne odstr\xe1nen\xfdch pon\xfak: :count", "restored_quotes", "\xdaspe\u0161ne obnoven\xe9 :value ponuky", "expense", "V\xfddaje", "expenses", "V\xfddaje", "vendor", "Dod\xe1vate\u013e", "vendors", "Dod\xe1vatelia", "task", "\xdaloha", "tasks", "\xdalohy", "project", "Projekt", "projects", "Projekty", "activity_1", ":user vytvoril z\xe1kazn\xedka :client", "activity_2", ":user archivoval z\xe1kazn\xedka :client", "activity_3", ":user odstr\xe1nil z\xe1kazn\xedka :client", "activity_4", ":user vytvoril fakt\xfaru :invoice", "activity_5", ":user upravil fakt\xfaru :invoice", "activity_6", ":user odoslal fakt\xfaru :invoice pre :client :contact", "activity_7", ":contact zobrazil fakt\xfaru :invoice pre z\xe1kazn\xedka :client", "activity_8", ":user archivoval fakt\xfaru :invoice", "activity_9", ":user odstr\xe1nil fakt\xfaru :invoice", "activity_10", ":contact vlo\u017eil platbu :payment za :payment_amount na fakt\xfare :invoice pre :client", "activity_11", ":user upravil platbu :payment", "activity_12", _s32_14, "activity_13", ":user odstr\xe1nil platbu :payment", "activity_14", ":u\u017e\xedvate\u013e zadan\xfd :kredit kredit", "activity_15", ":user aktualizoval :credit kredit", "activity_16", _s31_26, "activity_17", ":user vymazal :credit kredit", "activity_18", ":user vytvoril ponuku :quote", "activity_19", ":user aktualizoval ponuku :quote", "activity_20", ":user odoslal emailom ponuku :quote pre :client :contact", "activity_21", ":contact zobrazil ponuku :quote", "activity_22", ":user archivoval ponuku :quote", "activity_23", ":user odstr\xe1nil ponuku :quote", "activity_24", ":user obnovil ponuku :quote", "activity_25", ":user obnovil fakt\xfaru :invoice", "activity_26", ":user obnovil z\xe1kazn\xedka :client", "activity_27", _s29_51, "activity_28", _s28_65, "activity_29", ":contact schv\xe1lil ponuku :quote pre :client", "activity_30", ":user vytvoril dod\xe1vate\u013ea :vendor", "activity_31", ":user archivoval dod\xe1vate\u013ea :vendor", "activity_32", ":user odstr\xe1nil dod\xe1vate\u013ea :vendor", "activity_33", ":user obnovil dod\xe1vate\u013ea :vendor", "activity_34", ":user vytvoril v\xfddaje :expense", "activity_35", ":user zaarchivoval v\xfddaje :expense", "activity_36", ":user zmazal v\xfddate :expense", "activity_37", ":user obnovil v\xfddaje :expense", "activity_39", ":user zru\u0161il :payment_amount platbu :payment", "activity_40", ":user vr\xe1til :adjustment z :payment_amount platby :payment", "activity_41", ":payment_amount platba (:payment) zlyhala", "activity_42", ":user vytvoril \xfalohu :task", "activity_43", ":user upravil \xfalohu :task", "activity_44", ":user archivoval \xfalohu :task", "activity_45", ":user odstr\xe1nil \xfalohu :task", "activity_46", ":user obnovil \xfalohu :task", "activity_47", ":user aktualizoval v\xfddaje :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user znovu otvoril tiket :ticket", "activity_55", ":contact odpovedal na tiket :ticket", "activity_56", "tiket :ticket bol zobrazen\xfd u\u017e\xedvate\u013eom :user", "activity_57", "Syst\xe9mu sa nepodarilo odosla\u0165 e-mailom fakt\xfaru :invoice", "activity_58", ":user stornoval fakt\xfaru :invoice", "activity_59", ":user zru\u0161il fakt\xfaru :invoice", "activity_60", ":contact prezrel ponuku :quote", "activity_61", ":user aktualizval klienta :client", "activity_62", ":user aktualizoval dod\xe1vate\u013ea :vendor", "activity_63", ":user poslal e-mailom prv\xfa upomienku na fakt\xfaru :invoice na :contact", "activity_64", ":user poslal e-mailom druh\xfa upomienku na fakt\xfaru :invoice na :contact", "activity_65", ":user poslal e-mailom tretiu upomienku na fakt\xfaru :invoice na :contact", "activity_66", ":user poslal e-mailom nekone\u010dn\xfa upomienku na fakt\xfaru :invoice na :contact", "activity_80", ":user vytvoril predplatn\xe9 :subscription", "activity_81", ":user aktualizoval predplatn\xe9 :subscription", "activity_82", ":user archivoval predplatn\xe9 :subscription", "activity_83", ":user vymazal predplatn\xe9 :subscription", "activity_84", ":user obnovil predplatn\xe9 :subscription", _s17_126, "Jednorazov\xe9 heslo", "emailed_quote", _s23_96, "emailed_credit", "Kredit bol \xfaspe\u0161ne odoslan\xfd e-mailom", _s20_72, "Ponuka bola \xfaspe\u0161ne ozna\u010den\xe1 ako odoslan\xe1", _s21_81, "Kredit bol \xfaspe\u0161ne ozna\u010den\xfd ako odoslan\xfd", "expired", "Vypr\u0161an\xe9", "all", "V\u0161etko", "select", "Vo\u013eba", _s22_63, "Dlho stla\u010dte Multiselect", "custom_value1", "Vlastn\xe1 hodnota", "custom_value2", "Vlastn\xe1 hodnota", "custom_value3", "Vlastn\xe1 hodnota 3", "custom_value4", "Vlastn\xe1 hodnota 4", _s18_91, "Vlastn\xfd \u0161t\xfdl e-mailu", _s24_53, "Spr\xe1va vlastn\xe9ho informa\u010dn\xe9ho panelu", _s29_36, "Vlastn\xe1 spr\xe1va o nezaplatenej fakt\xfare", _s27_56, "Vlastn\xe1 spr\xe1va o zaplatenej fakt\xfare", _s31_18, "Vlastn\xe1 spr\xe1va o neschv\xe1lenej cenovej ponuke", "lock_invoices", "Uzamknutie fakt\xfar", "translations", "Preklady", _s19_60, "Vzor \u010d\xedsla \xfalohy", _s19_62, "Po\u010d\xedtadlo \u010d\xedsel \xfaloh", _s22_65, "Vzor \u010d\xedsla v\xfddavkov", _s22_67, "Po\u010d\xedtadlo \u010d\xedsel v\xfddavkov", _s21_82, "Vzor \u010d\xedsla predajcu", _s21_84, "Po\u010d\xedtadlo \u010d\xedsel predajcu", _s21_86, "Vzor \u010d\xedsla tiketu", _s21_88, "Po\u010d\xedtadlo \u010d\xedsel tiketu", _s22_69, "Vzor \u010d\xedsla platby", _s22_71, "Po\u010d\xedtadlo \u010d\xedsla platby", _s22_73, "Vzor \u010d\xedsla fakt\xfary", _s22_75, "Po\u010d\xedtadlo \u010d\xedsla fakt\xfary", _s20_73, "Vzor \u010d\xedsla cenovej ponuky", _s20_75, "Po\u010d\xedtadlo \u010d\xedsla ponuky", _s21_90, _s18_200, _s21_92, _s26_86, _s21_94, _s18_200, _s21_95, _s26_86, _s18_93, "Vynulova\u0165 d\xe1tum po\u010d\xedtadla", "counter_padding", "Counter Padding", _s28_56, "Po\u010d\xedtadlo zdie\u013eanej fakt\xfary", _s18_95, "Predvolen\xfd n\xe1zov dane 1", _s18_97, "Predvolen\xe1 sadzba dane 1", _s18_99, "Predvolen\xfd n\xe1zov dane 2", _s18_101, "Predvolen\xe1 sadzba dane 2", _s18_103, "Predvolen\xfd n\xe1zov dane 3", _s18_105, "Predvolen\xe1 sadzba dane 3", _s21_96, "Predmet e-mailovej fakt\xfary", _s19_64, "Predmet ponuky e-mailu", _s21_98, "Predmet platby e-mailom", _s29_38, "Predmet \u010diasto\u010dnej platby e-mailu", "show_table", "Zobrazi\u0165 tabu\u013eku", "show_list", "Zobrazi\u0165 zoznam", "client_city", "Mesto klienta", "client_state", "Stav klienta", "client_country", "Krajina klienta", _s16_220, "Klient je akt\xedvny", "client_balance", "Zostatok klienta", "client_address1", "Ulica klienta", "client_address2", "Klientsky apartm\xe1n/byt", "vendor_address1", "Ulica predajcu", "vendor_address2", "Apartm\xe1n/byt dod\xe1vate\u013ea", _s24_55, "Ulica doru\u010denia klienta", _s24_56, "Byt/Apartman dodania klienta", "type", "Typ", "invoice_amount", "Suma fakt\xfary", _s16_224, _s16_349, "tax_rate1", "Sadzba dane 1", "tax_rate2", "Sadzba dane 2", "tax_rate3", "Sadzba dane 3", "auto_bill", _s21_163, "archived_at", "Archivovan\xe9", "has_expenses", "M\xe1 v\xfddavky", "custom_taxes1", "Vlastn\xe9 dane 1", "custom_taxes2", "Vlastn\xe9 dane 2", "custom_taxes3", "Vlastn\xe9 dane 3", "custom_taxes4", "Vlastn\xe9 dane 4", _s17_128, _s19_145, _s17_129, _s19_146, _s17_130, _s19_147, _s17_131, _s19_148, "is_deleted", "Je vymazan\xe9", "vendor_city", "Mesto dod\xe1vate\u013ea", "vendor_state", "\u0160t\xe1t predajcu", "vendor_country", "Krajina predajcu", "is_approved", "Je schv\xe1len\xe9", "tax_name", "N\xe1zov dane", "tax_amount", "Sadzba dane", "tax_paid", "Zaplaten\xe1 da\u0148", "payment_amount", "\u010ciastka k \xfahrade", "age", "Vek", "is_running", "Be\u017e\xed", "time_log", "\u010casov\xfd denn\xedk", "bank_id", "Banka", _s19_66, "ID kateg\xf3rie v\xfddavkov", _s16_225, "Kateg\xf3ria v\xfddajov", _s19_68, "ID meny fakt\xfary", "tax_name1", "Da\u0148ov\xe9 meno 1", "tax_name2", "Da\u0148ov\xe9 meno 2", "tax_name3", "Da\u0148ov\xe9 meno 3", "transaction_id", "ID transakcie", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "sl", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Sprejmi", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Nastavitev pla\u010dil", "default", "Privzeto", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Stanje", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Dodaj prehod", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Dodaj k ra\u010dunu :invoice", _s17_6, _s17_7, "week", "Teden", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Valuta ra\u010duna", "range", "Razpon", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Ustvari projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Provizija od zneska :amount ra\u010duna bo :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Potrdi", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Uspe\u0161no po\u010di\u0161\u010dena stranka", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Nastavi geslo", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Ogled stro\u0161ka # :expense", "view_statement", "Ogled izpiska", "sepa", "SEPA direktna bremenitev", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistem", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Od (ime)", _s16_21, _s16_231, _s17_13, _s21_164, _s18_13, _s21_164, _s21_16, "Nov ponavaljajo\u010d stro\u0161ek", _s22_24, "Uredi ponavaljajo\u010d stro\u0161ek", _s25_2, "Ponavaljajo\u010d stro\u0161ek uspe\u0161no ustvarjen", _s25_3, "Ponavaljajo\u010d stro\u0161ek uspe\u0161no posodobljen", _s26_2, "Ponavaljajo\u010d stro\u0161ek uspe\u0161no arhiviran", _s25_4, "Project uspe\u0161no odstranjen", _s25_5, _s38_2, _s26_3, "Ponavaljajo\u010d stro\u0161ek uspe\u0161no obnovljen", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Navodila", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Neto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Uvozi podatke", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Nazadnje posodobljeno", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Ime kontakta", _s17_17, "Priimek konakta", "order", "Order", "unassigned", "Ne-dodeljen", "partial_value", "Mora biti ve\u010dje od ni\u010d in manj\u0161e od celotnega zneska", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogo\u010di", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Nastavite pod domeno ali prika\u017eite ra\u010dun na va\u0161i spletni strani.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Varnost", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Naro\u010dnina", _s16_39, _s16_40, _s17_23, "Uredi naro\u010dnino", _s20_23, "Naro\u010dnina uspe\u0161no ustvarjena", _s20_24, "Naro\u010dnina uspe\u0161no posodobljena", _s21_28, "Naro\u010dnina uspe\u0161no arhivirana", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "Znova po\u0161lji vabilo", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Neprejeta sporo\u010dila", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Po\u0161lji SMS", "sms_code", "SMS koda", _s21_32, "Skenirajte barkodo s aplikacijo kot na primer :link. Spodaj vnesite prvo generirano geslo za enkratno rabo.", _s18_30, "Dvostopenjska avtentikacija je omogo\u010dena", "connect_google", "Priklopi Google", _s17_25, "Izklopi Google", _s17_27, "Dvostopenjska avtentikacija", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Ponovno po\u0161lji e-po\u0161to", _s26_8, _s33_12, _s16_51, "Vrnjeno pla\u010dilo", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Prej\u0161nje \u010detrtletje", "to_update_run", "To update run", _s18_33, "Pretvori v ra\u010dun", _s16_52, _s16_53, "invoice_project", "Fakturiraj projekt", "invoice_task", "Fakturiraj opravilo", "invoice_expense", "Stro\u0161ek ra\u010duna", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, "Pretvorjeni znesek", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "Privzeti dokumenti", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skrij", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Stolpec", "sample", "Vzorec", "map_to", "Map To", "import", "Uvozi", _s25_15, _s29_6, "select_file", "Prosim izberi datoteko", _s16_60, _s16_61, "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Storitev", "clone_to", "Kopiraj v ...", "clone_to_other", "Kopiraj v ...", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nepla\u010dano", "white_label", "White Label", "delivery_note", "Dobavnica", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Delno pla\u010dilo do", "invoice_total", "Skupni znesek", "quote_total", "Znesek ponudbe", "credit_total", "Dobropis skupaj", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Opozorilo", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Ime stranke", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, "Uspe\u0161no posodobljen status opravil", _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Kategorije stro\u0161kov", _s20_42, "Nova katergorija stro\u0161kov", _s21_40, _s21_41, _s24_28, "Kategorija stro\u0161kov uspe\u0161no ustvarjena", _s24_29, "Kategorija stro\u0161kov uspe\u0161no nadgrajena", _s25_19, "Kategorija stro\u0161kov uspe\u0161no arhivirana", _s24_30, "Kategorija uspe\u0161no odstranjena", _s24_31, _s37_7, _s25_20, "Kategorija stro\u0161kov uspe\u0161no obnovljena", _s27_21, "Kategorija stro\u0161kov :count uspe\u0161no arhivirana", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "Bo fakturiran", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Ozna\u010di kot Aktivno", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Ponavljajo\u010di ra\u010dun", _s18_45, "Ponavljajo\u010di ra\u010duni", _s21_47, "Nov ponavljajo\u010di ra\u010dun", _s22_37, "Uredi ponvljajo\u010de ra\u010dune", _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Ponavljajo\u010di ra\u010dun uspe\u0161no arhiviran", _s25_28, "Ponavljajo\u010di ra\u010dun uspe\u0161no odstranjen", _s25_29, _s38_11, _s26_12, "Ponavljajo\u010di ra\u010dun uspe\u0161no obnovljen", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Vrsti\u010dna postavka", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Odpriti", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "Poglej portal", "copy_link", "Copy Link", "token_billing", "Shrani podatke kartice", _s24_34, _s24_35, "always", "Vedno", "optin", "Opt-In", "optout", "Opt-Out", "label", "Oznaka", "client_number", "\u0160t. stranke", "auto_convert", "Auto Convert", "company_name", "Naziv podjetja", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s20_149, "emailed_quotes", "Uspe\u0161no poslani predra\u010duni", "emailed_credits", _s28_57, "gateway", "Prehod", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ur", "statement", "Izpisek", "taxes", "Davki", "surcharge", "Dopla\u010dilo", "apply_payment", "Apply Payment", "apply_credit", "Potrdi dobropis", "apply", "Potrdi", "unapplied", "Unapplied", "select_label", "Izberi oznako", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Do", "health_check", "Health Check", "payment_type_id", "Na\u010din pla\u010dila", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Prihajajo\u010di ra\u010duni", _s17_59, _s17_60, "recent_payments", "Nedavna pla\u010dila", "upcoming_quotes", "Prihajajo\u010di predra\u010duni", "expired_quotes", "Potekli predra\u010duni", "create_client", "Ustvari stranko", "create_invoice", "Ustvari ra\u010dun", "create_quote", "Ustvari ponudbo", "create_payment", "Create Payment", "create_vendor", "Ustvari prodajalca", "update_quote", "Update Quote", "delete_quote", "Zbri\u0161i ponudbo", "update_invoice", "Update Invoice", "delete_invoice", "Zbri\u0161i ra\u010dun", "update_client", "Update Client", "delete_client", "Zbri\u0161i stranko", "delete_payment", "Zbri\u0161i pla\u010dilo", "update_vendor", "Update Vendor", "delete_vendor", "Odstrani prodajalca", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Odstrani stro\u0161ek", "create_task", "Vnesi opravilo", "update_task", "Update Task", "delete_task", "Odstrani opravilo", "approve_quote", "Approve Quote", "off", "Izklopljeno", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Brezpla\u010dno", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Cilj", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API \u017eetoni", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "\u017deton", "tokens", "\u017detoni", "new_token", "New Token", "edit_token", "Uredi \u017eeton", "created_token", "\u017deton uspe\u0161no ustvarjen", "updated_token", "\u017deton uspe\u0161no posodobljen", "archived_token", "\u017deton uspe\u0161no arhiviran", "deleted_token", "\u017deton uspe\u0161no odstranjen", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Po\u0161lji ra\u010dun po e-po\u0161ti", "email_quote", "Po\u0161lji e-ponudbo", "email_credit", "Email Credit", "email_payment", "Po\u0161lji pla\u010dilo po elektronki po\u0161ti", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "Poka\u017ei PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Kontaktno ime", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "Uredi pla\u010dilni pogoj", _s20_51, "Pla\u010dilni pogoji uspe\u0161no ustvarjeni", _s20_52, "Pla\u010dilni pogoji uspe\u0161no posodobljeni", _s21_50, "Pla\u010dilni pogoji uspe\u0161no arhivirani", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Po\u0161lji iz Gmaila", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Znesek dobropisa", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Ekskluzivno", "inclusive", "Vklju\u010deno", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Vra\u010dilo pla\u010dila", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Polno ime", _s17_71, "Mesto/Dr\u017eava/Po\u0161ta", _s17_73, "Po\u0161ta/Mesto/Dr\u017eava", "custom1", "Prvi po meri", "custom2", "Drugi po meri", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Izprazni podatke", _s16_91, "Podatki podjetja uspe\u0161no odstranjeni", _s18_54, "Opozorilo: Va\u0161i podatki bodo trajno zbrisani. Razveljavitev kasneje ni mogo\u010da.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dni", "age_group_30", "30 - 60 Dni", "age_group_60", "60 - 90 Dni", "age_group_90", "90 - 120 Dni", "age_group_120", "120+ dni", "refresh", "Osve\u017ei", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Detalji ra\u010duna", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Pravice", "none", "Brez", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count ra\u010dun poslan", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Potrdi licenco", "cancel_account", "Odstani ra\u010dun", _s22_44, "Opozorilo: Va\u0161 ra\u010dun bo trajno zbrisan. Razveljavitev ni mogo\u010da.", "delete_company", "Izbri\u0161i podjetje", _s22_45, "Opozorilo: Va\u0161e podjetne bo trajno zbrisano. Razveljavitev ni mogo\u010da.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "Glava", "load_design", "Nolo\u017ei obliko", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Ponudbe", "tickets", "Podporni zahtevki", _s16_96, "Ponavljajo\u010di predra\u010duni", "recurring_tasks", "Recurring Tasks", _s18_55, "Upravljanje ra\u010duna", "credit_date", "Datum dobropisa", "credit", "Dobropis", "credits", "Dobropisi", "new_credit", "Vnesi dobropis", "edit_credit", "Uredi dobropis", "created_credit", "Dobropis uspe\u0161no narejen", "updated_credit", "Uspe\u0161no posodobljen dobropis", "archived_credit", "Dobropis uspe\u0161no arhiviran", "deleted_credit", "Dobropis uspe\u0161no zbrisan", "removed_credit", _s27_34, "restored_credit", "Dobropis uspe\u0161no obnovljen", _s16_98, "Uspe\u0161no je arhiviranih :count dobropisov", "deleted_credits", "Uspe\u0161no je zbrisano :count dobropisov", _s16_99, _s36_9, "current_version", "Trenutna razli\u010dica", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Izvedi ve\u010d", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Novo podjetje", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Ponastavi", "number", "Number", "export", "Izvoz", "chart", "Grafikon", "count", "Count", "totals", "Vsote", "blank", "Prazno", "day", "Dan", "month", "Mesec", "year", "Leto", "subgroup", "Podskupina", "is_active", "Is Active", "group_by", "Zdru\u017ei v skupino", "credit_balance", "Saldo dobropisa", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Kontaktni telefon", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Ulica (za dostavo)", _s17_80, "Hi\u0161na \u0161t./stanovanje (za dostavo)", "shipping_city", "Mesto (za dostavo)", "shipping_state", "Regija/pokrajina (za dostavo)", _s20_55, "Po\u0161tna \u0161t. (za dostavo)", _s16_130, "Dr\u017eava (za dostavo)", _s16_132, "Ulica (za ra\u010dun)", _s16_133, "Hi\u0161na \u0161t./Stanovanje (za ra\u010dun)", "billing_city", "Mesto (za ra\u010dun)", "billing_state", "Regija/pokrajina (za ra\u010dun)", _s19_36, "Po\u0161tna \u0161t. (za ra\u010dun)", "billing_country", "Dr\u017eave (za ra\u010dun)", "client_id", "Id stranke", "assigned_to", "Dodeljeno", "created_by", "Ustvaril :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Stolpci", "aging", "Staranje", "profit_and_loss", "Profit in izguba", "reports", "Poro\u010dila", "report", "Poro\u010dilo", "add_company", "Dodaj podjetje", "unpaid_invoice", "Nepla\u010dani ra\u010duni", "paid_invoice", "Pla\u010dani ra\u010duni", _s16_134, "Nepotrjen predra\u010dun", "help", "Pomo\u010d", "refund", "Vra\u010dilo", "refund_date", "Refund Date", "filtered_by", "Filtrirano po", "contact_email", "Kontaktna e-po\u0161ta", "multiselect", "Multiselect", "entity_state", "Stanje", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Sporo\u010dilo", "from", "Od", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "forum za podporo", "about", "About", "documentation", "Dokumentacija", "contact_us", "Kontakt", "subtotal", "Neto", "line_total", "Skupaj", "item", "Postavka", "credit_email", "Credit Email", "iframe_url", "Spletna stran", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Da", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobilni", "desktop", "Namizni", "layout", "Layout", "view", "Ogled", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "Uporabnik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "Prosim izberite stranko", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Dav\u010dne nastavitve", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Proklop", _s19_40, _s20_63, "options", "Mo\u017enosti", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Oddaj", _s16_142, "Obnovite va\u0161e geslo", "late_fees", "Late Fees", "credit_number", "\u0160t. dobropisa", "payment_number", "Payment Number", "late_fee_amount", "Vrednost zamudnih obresti", _s16_143, "Odstotek za zamudne obresti", "schedule", "Urnik", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Dnevi", "invoice_email", "Ra\u010dun", "payment_email", "Potrdilo", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Predra\u010dun", _s16_145, "Periodi\u010den opomin", _s16_147, _s16_148, "administrator", "Upravljalec", _s18_74, "Dovoli uporabniku da upravlja z uporabniki, nastavitvami in vsemi zapisi", "user_management", "Uporabniki", "users", "Uporabniki", "new_user", "Nov uporabnik", "edit_user", "Uredi uporabnika", "created_user", _s25_36, "updated_user", "Uporabnik uspe\u0161no posodobljen", "archived_user", "Uporabnik uspe\u0161no arhiviran", "deleted_user", "Uporabnik uspe\u0161no odstranjen", "removed_user", _s25_39, "restored_user", "Uporabnik uspe\u0161no obnovljen", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Splo\u0161ne nastavitve", "invoice_options", "Mo\u017enosti ra\u010duna", _s17_86, "Skrij datum pla\u010dila", _s22_52, 'Prika\u017ei le "Pla\u010dano" polje v ra\u010dunu, nakar je bilo pla\u010dilo prejeto.', _s23_26, "Omogo\u010deni dokumenti", _s28_20, "V ra\u010dunu vklju\u010di pripete slike.", _s16_151, "Prika\u017ei glavo na", _s16_152, "Prika\u017ei nogo na", "first_page", "Prva stran", "all_pages", "Vse strani", "last_page", "Zadnja stran", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Osnovna barva", "secondary_color", "Sekundarna barva", "page_size", "Velikost strani", "font_size", "Velikost pisave", "quote_design", "Predloga predra\u010duna", "invoice_fields", "Polja ra\u010duna", "product_fields", "Polja izdelka", "invoice_terms", "Pogoji ra\u010duna", "invoice_footer", "Noga ra\u010duna", "quote_terms", "Pogoji predra\u010duna", "quote_footer", "Noga predra\u010duna", _s18_75, "Samodejni Email", _s23_27, "Samodejno po\u0161lji email ponavljajo\u010dih ra\u010dunov kadar so narejeni.", _s18_76, "Samodejno Arhiviranje", _s23_28, "Samodejno arhiviraj predra\u010dune po pretvorbi.", _s18_77, "Samodejna Pretvorba", _s23_29, "Samodejno pretvori predra\u010dun v ra\u010dun, ki ga stranka potrdi.", _s17_88, "Nastavitve Delovnega toka /Workflow/", "freq_daily", "Dnevno", "freq_weekly", "Tedensko", "freq_two_weeks", "Dva tedna", "freq_four_weeks", "\u0160tiri tedni", "freq_monthly", "Mese\u010dno", "freq_two_months", "Dva meseca", _s17_90, "Trije meseci", _s16_153, "Na \u0161tiri mesece", "freq_six_months", "\u0160est mesecev", "freq_annually", "Letno", "freq_two_years", "Na dve leti", _s16_154, "Three Years", "never", "Nikoli", "company", "Podjetje", _s17_91, "Ustvarjene \u0161tevilke", "charge_taxes", "Zara\u010dunaj davke", "next_reset", "Naslednja ponastavitev", "reset_counter", "Ponastavi \u0161tevec", _s16_155, "Predpona ponavljajo\u010dih", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Podjetje", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Ra\u010dun", _s17_93, "Dopla\u010dilo za ra\u010dun", "client_field", "Stranka", "product_field", "Polje izdelka", "payment_field", "Payment Field", "contact_field", "Kontakt", "vendor_field", "Dobavitelj", "expense_field", "Stro\u0161ek", "project_field", "Projekt", "task_field", "Opravilo", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Predpona", "number_pattern", "Number Pattern", "messages", "Sporo\u010dila", "custom_css", "CSS po meri", _s17_95, _s17_96, _s16_157, "Prika\u017ei na PDF", _s21_68, "Prika\u017ei podpis stranke na PDF ra\u010dunu/predra\u010dunu.", _s25_40, "Potrditev pogojev ra\u010duna", _s30_9, "Stranka mora potrditi strinjanje s pogoji na ra\u010dunu.", _s23_30, "Potrditev pogojev predra\u010duna", _s28_21, "Stranka mora potrditi strinjanje s pogoji na predra\u010dunu.", _s25_41, "Podpis ra\u010duna", _s30_10, "Zahteva od stranke, da zagotovi svoj podpis.", _s23_31, "Podpis predra\u010duna", _s22_54, "Za\u0161\u010diti ra\u010dune z geslom", _s27_36, "Omogo\u010da da nastavite geslo za vsako osebo. \u010ce je geslo nastavljeno, ga bo uporabnik moral vnesti pred ogledom ra\u010duna.", "authorization", "Overovitev", "subdomain", "Poddomena", "domain", "Domena", "portal_mode", "Portal Mode", "email_signature", "Lep pozdrav,", _s24_38, "Olaj\u0161ajte strankam pla\u010devanje z dodajanjem schema.org ozna\u010db v va\u0161o e-po\u0161to.", "plain", "Navadno", "light", "Svetlo", "dark", "Temno", "email_design", "Stil e-po\u0161te", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "Omogo\u010di ozna\u010dbe.", "reply_to_email", "Reply-To", "reply_to_name", "Reply-To Name", "bcc_email", "BCC", "processed", "Processed", "credit_card", _s16_249, "bank_transfer", "Ban\u010dno nakazilo", "priority", "Prednost", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Omogo\u010di minimalno", "enable_max", "Omogo\u010di maximalno", "min_limit", "Minimalno: :min", "max_limit", "Maksimalno: :max", "min", "Minimalno", "max", "Maksimalno", _s19_43, "Prikazani logotipi katric", "credentials", "Credentials", "update_address", "Posodobi naslov", _s19_45, "Posodobi naslov stranke z predlo\u017eenimi podatki", "rate", "Stopnja", "tax_rate", "Dav\u010dna stopnja", "new_tax_rate", "Nova dav\u010dna stopnja", "edit_tax_rate", "Uredi dav\u010dno stopnjo", _s16_160, "Dav\u010dna stopnja uspe\u0161no ustvarjena", _s16_161, "Dav\u010dna stopnja uspe\u0161no posodobljena", _s17_98, "Dav\u010dna stopnja uspe\u0161no arhivirana", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Samodejno vnesi izdelke", _s18_80, "Izbira izdelka bo samodejno vnesla opis in ceno", "update_products", "Samodejno posodobi izdelke", _s20_65, "Posodobitev ra\u010duna bo samodejno posodobila knji\u017enico izdelkov", _s16_163, "Pretvori izdelke", _s21_69, "Samodejno pretvori cene izdelkov v valuto stranke", "fees", "Provizije", "limits", "Omejitve", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Zavrzi spremembe", "default_value", "Default value", "disabled", "Onemogo\u010deno", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Nedelja", "monday", "Ponedeljek", "tuesday", "Torek", "wednesday", "Sreda", "thursday", "\u010cetrtek", "friday", "Petek", "saturday", "Sobota", "january", "Januar", "february", "Februar", "march", "Marec", "april", "April", "may", "Maj", "june", "Junij", "july", "Julij", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 urni \u010das", _s18_81, "24 Hour Display", "send_reminders", "Po\u0161lji opomnike", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Skupina", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logotip", "saved_settings", _s27_39, _s16_169, "Nastavitve izdelka", "device_settings", "Device Settings", "defaults", "Privzeto", "basic_settings", "Osnovne nastavitve", _s17_103, "Napredne nastavitve", "company_details", "Podatki podjetja", "user_details", "Podrobnosti uporabnika", "localization", "Lokalizacija", "online_payments", "Spletna pla\u010dila", "tax_rates", "Dav\u010dne stopnje", "notifications", "Obvestila", "import_export", "Uvoz | Izvoz", "custom_fields", "Polja po meri", "invoice_design", "Izgled ra\u010duna", "buy_now_buttons", "Gumbi za takoj\u0161nji nakup", "email_settings", "Nastavitve e-po\u0161te", _s23_37, "Predloge in opomini", _s22_55, _s20_67, _s19_51, "Vizualizacija podatkov", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Pogoji uporabe", "privacy_policy", "Pravilnik o zasebnosti", "sign_up", "Prijavi se", "account_login", "Prijava v ra\u010dun", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Ustvari", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Prenesi", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenti", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Datum stro\u0161ka", "pending", "V teku", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Pretvorjeno", _s24_44, "Pripni datoteke", "exchange_rate", "Menjalni te\u010daj", _s16_178, "Pretvori valuto", "mark_paid", "Ozna\u010di kot pla\u010dano", "category", "Kategorija", "address", "Naslov", "new_vendor", "Nov prodajalec", "created_vendor", "Dobavitelj uspe\u0161no ustvarjen", "updated_vendor", "Dobavitelj uspe\u0161no posodobljen", "archived_vendor", "Dobavitelj uspe\u0161no arhiviran", "deleted_vendor", "Dobavitelj uspe\u0161no zbrisan", "restored_vendor", "Prodajalec uspe\u0161no obnovljen", _s16_179, "Uspe\u0161no je arhiviranih :count dobaviteljev", "deleted_vendors", "Uspe\u0161no je zbrisanih :count dobaviteljev", _s16_180, _s36_11, "new_expense", "Vnesi stro\u0161ek", "created_expense", "Stro\u0161ek uspe\u0161no vne\u0161en", "updated_expense", "Stro\u0161ek uspe\u0161no posodobljen", _s16_181, "Stro\u0161ek uspe\u0161no arhiviran", "deleted_expense", "Stro\u0161ek uspe\u0161no odstranjen", _s16_182, "Stro\u0161ek uspe\u0161no obnovljen", _s17_109, "Stro\u0161ki uspe\u0161no arhivirani", _s16_183, "Stro\u0161ki uspe\u0161no odstranjeni", _s17_110, _s37_14, "copy_shipping", "Kopiraj naslov za dostavo", "copy_billing", "Kopiraj naslov za ra\u010dun", "design", "Design", _s21_74, _s21_75, "invoiced", "Fakturirano", "logged", "Prijavljeno", "running", "V teku", "resume", "Nadaljuj", "task_errors", "Prosim popravite prekrivajo\u010de \u010dasove", "start", "Za\u010detek", "stop", "Kon\u010daj", "started_task", "Opravilo uspe\u0161no pri\u010deto", "stopped_task", "Opravilo uspe\u0161no ustavljeno", "resumed_task", "Opravilo uspe\u0161no ponovno zagnano", "now", "Zdaj", _s16_184, _s16_185, "timer", "Merilec \u010dasa", "manual", "Ro\u010dno", "budgeted", "Budgeted", "start_time", "Za\u010detek", "end_time", "\u010cas zaklju\u010dka", "date", "Datum", "times", "\u010cas", "duration", "Trajanje", "new_task", "Novo opravilo", "created_task", "Opravilo uspe\u0161no ustvarjeno", "updated_task", "Opravilo uspe\u0161no posodobljeno", "archived_task", "Opravilo uspe\u0161no arhivirano", "deleted_task", "Opravilo uspe\u0161no odstranjeno", "restored_task", "Opravilo uspe\u0161no obnovljeno", "archived_tasks", "\u0160tevilo uspe\u0161no odstranjenih opravil: :count", "deleted_tasks", "\u0160tevilo uspe\u0161no odstranjenih opravil: :count tasks", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Predvidene ure", "created_project", "Projekt uspe\u0161no ustvarjen", "updated_project", "Projekt uspe\u0161no posodobljen", _s16_186, "Projekt uspe\u0161no arhiviran", "deleted_project", "Projekt uspe\u0161no odstranjen", _s16_187, "Projekt uspe\u0161no obnovljen", _s17_111, "\u0160tevilo uspe\u0161no arhiviranih projektov: :count", _s16_188, "\u0160tevilo uspe\u0161no odstranjenih projektov: :count", _s17_112, _s37_15, "new_project", "Now projekt", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "klikni tukaj", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Noga", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Obseg po meri", "date_range", "\u010casovno obdobje", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Ta mesec", "last_month", "Zadnji mesec", "this_year", "To leto", "last_year", "Zadnje leto", "custom", "Po meri", _s16_189, "Kopiraj v ra\u010dun", "clone_to_quote", "Kopiraj v predra\u010dun", "clone_to_credit", "Clone to Credit", "view_invoice", "Ogled ra\u010duna", "convert", "Convert", "more", "Ve\u010d", "edit_client", "Uredi stranko", "edit_product", "Uredi izdelek", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi ponudbo", "edit_payment", "Uredi pla\u010dilo", "edit_task", "Uredi opravilo", "edit_expense", "Uredi stro\u0161ek", "edit_vendor", "Uredi prodajalca", "edit_project", "Uredi projekt", _s20_68, "Uredi ponavaljajo\u010d predra\u010dun", "billing_address", "Naslov za po\u0161iljanje ra\u010duna", _s16_191, "Naslov za dostavo", "total_revenue", "Skupni prihodki", "average_invoice", "Povpre\u010den ra\u010dun", "outstanding", "Odprte postavke", "invoices_sent", ":count ra\u010duni poslani", "active_clients", "aktivne stranke", "close", "Zapri", "email", "E-po\u0161ta", "password", "Geslo", "url", "URL", "secret", "Skrivnost", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Razvrsti", "search", "I\u0161\u010di", "active", "Aktivno", "archived", "Arhivirano", "deleted", "Odstranjeno", "dashboard", "Nadzorna plo\u0161\u010da", "archive", "Arhiv", "delete", "Zbri\u0161i", "restore", "Obnovitev", _s16_193, "Osve\u017eitev kon\u010dana", _s23_38, "Vnesi prosim svoj email", _s26_32, "Vnesi prosim svoje geslo", _s21_77, "Vnesi prosim svoj URL", _s26_34, "Prosim vnesi klju\u010d izdelka", "ascending", "Nara\u0161\u010dajo\u010de", "descending", "Padajo\u010de", "save", "Shrani", _s17_115, "Pri\u0161lo je do napake", "paid_to_date", "\u017de pla\u010dano", "balance_due", "Za pla\u010dilo", "balance", "Saldo", "overview", "Pregled", "details", "Podrobnosti", "phone", "Telefon", "website", "Internetne strani", "vat_number", "Dav\u010dna \u0161t.", "id_number", "ID \u0161t.", "create", "Ustvari", _s19_59, "Kopirano :value na odlo\u017ei\u0161\u010de", "error", "Napaka", _s16_195, "Ni bilo mo\u017eno zagnati", "contacts", "Kontakti", "additional", "Dodatno", "first_name", "Ime", "last_name", "Priimek", "add_contact", "Dodaj kontakt", "are_you_sure", "Ali ste prepri\u010dani?", "cancel", "Prekli\u010di", "ok", "Ok", "remove", "Odstrani", _s16_197, "Email ni pravilen", "product", "Izdelek", "products", "Izdelki", "new_product", "Nov izdelek", "created_product", "Izdelek uspe\u0161no ustvarjen", "updated_product", "Izdelek uspe\u0161no posodobljen", _s16_199, "Izdelek uspe\u0161no arhiviran", "deleted_product", "Izdelek uspe\u0161no odstranjen", _s16_200, "Izdelek uspe\u0161no obnovljen", _s17_117, "\u0160tevilo uspe\u0161no arhiviranih izdelkov: :count", _s16_201, "\u0160tevilo uspe\u0161no odstranjenih izdelkov: :count", _s17_118, _s37_16, "product_key", "Izdelki", "notes", "Opis", "cost", "Cena", "client", "Stranka", "clients", "Stranke", "new_client", "Nova stranka", "created_client", "Stranka uspe\u0161no ustvarjena", "updated_client", "Uspe\u0161no posodobljena stranka", "archived_client", "Stranka uspe\u0161no arhivirana", _s16_202, "Uspe\u0161no je arhiviranih :count strank", "deleted_client", "Stranka uspe\u0161no zbrisana", "deleted_clients", "Uspe\u0161no je zbrisanih :count strank", "restored_client", "Stranka uspe\u0161no obnovljena", _s16_203, _s36_13, "address1", "Ulica", "address2", "Poslovni prostor/Stanovanja", "city", "Mesto", "state", "Regija/pokrajina", "postal_code", "Po\u0161tna \u0161t.", "country", "Dr\u017eava", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Nov ra\u010dun", "created_invoice", "Ra\u010dun uspe\u0161no ustvarjen", "updated_invoice", "Ra\u010dun uspe\u0161no posodobljen", _s16_204, "Ra\u010dun uspe\u0161no arhiviran", "deleted_invoice", "Ra\u010dun uspe\u0161no zbrisan", _s16_205, "Ra\u010dun uspe\u0161no obnovljen", _s17_119, "Uspe\u0161no arhiviranih :count ra\u010dunov", _s16_206, "Uspe\u0161no je zbrisanih :count ra\u010dunov", _s17_120, _s37_17, "emailed_invoice", _s20_149, "emailed_payment", "Pla\u010dilo poslano po elektronski po\u0161ti", "amount", "Znesek", "invoice_number", "\u0160t. ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "\u0160t. naro\u010dilnice", "terms", "Pogoji", "public_notes", "Javni zaznamki", "private_notes", "Zasebni zaznamki", "frequency", "Pogostost", "start_date", "Datum za\u010detka", "end_date", "Datum zapadlosti", "quote_number", "\u0160t. ponudbe", "quote_date", "Datum ponudbe", "valid_until", "Veljavnost", "items", "Predmeti", "partial_deposit", "Delno/Depozit", "description", "Opis", "unit_cost", "Cena", "quantity", "Koli\u010dina", "add_item", "\xb8Dodaj predmet", "contact", "Kontakt", "work_phone", "Slu\u017ebeni telefon", "total_amount", "Skupni znesek", "pdf", "PDF", "due_date", "Rok pla\u010dila", _s16_207, "Delno pla\u010dilo do datuma", "status", "Stanje", _s17_121, "Status ra\u010duna", "quote_status", "Stanje predra\u010duna", _s22_56, "Klikni + za dodajanje predmeta", _s22_58, _s19_72, "count_selected", ":count izbranih", "total", "Skupaj", "percent", "Odstotek", "edit", "Uredi", "dismiss", "Opusti", _s20_70, "Izberi datum", _s22_59, "Izberi stranko", _s24_48, "Izberi ra\u010dun", "task_rate", "Urna postavka", "settings", "Nastavitve", "language", "Jezik", "currency", "Valuta", "created_at", "Ustvarjen dne", "created_on", "Created On", "updated_at", "Posodobljeno", "tax", "Davek", _s30_17, "Vnesi \u0161tevilko ra\u010duna", _s27_49, "Prosim vnesi \u0161tevilko predra\u010duna", "past_due", "Zapadlo", "draft", "Osnutek", "sent", "Poslano", "viewed", "Ogledano", "approved", "Odobreno", "partial", "Delno pla\u010dilo/polog", "paid", "Pla\u010dano", "mark_sent", "Ozna\u010di kot poslano", _s22_61, "Ra\u010dun je uspe\u0161no ozna\u010den kot poslan", _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Narejeno", _s37_18, "Vnesi stranko ali kontaktno osebo", "dark_mode", "Temen na\u010din", _s27_51, "Ponovno za\u017eeni program, da se spremembe aktivirajo", "refresh_data", "Osve\u017ei podatke", "blank_contact", "Prazen kontakt", "activity", "Dejavnost", _s16_209, "Ustrezen niz ni najden", "clone", "Kopiraj", "loading", "Nalagam", "industry", "Industrija", "size", "Velikost", "payment_terms", "Pla\u010dilni pogoji", "payment_date", "Datum pla\u010dila", "payment_status", "Status pla\u010dila", _s16_211, "V obdelavi", _s16_212, "Razveljavljeno", _s16_213, "Neuspe\u0161no", _s16_214, "Narejeno", _s16_215, "Delno povrnjeno", _s16_216, "Povrjeno", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Promet", "client_portal", "Portal za stranke", "show_tasks", "Prika\u017ei opravila", "email_reminders", "Email opomini", "enabled", "Omogo\u010deno", "recipients", "Prejemniki", "initial_email", "Prva e-po\u0161ta", "first_reminder", "Prvi opomin", "second_reminder", "Drugi opomin", "third_reminder", "Tretji opomin", "reminder1", "Prvi opomin", "reminder2", "Drugi opomin", "reminder3", "Tretji opomin", "template", "Predloga", "send", "Po\u0161lji", "subject", "Naslov", "body", "Vsebina", "send_email", "Po\u0161lji e-po\u0161to", "email_receipt", "Po\u0161lji ra\u010dun stranki", "auto_billing", "Samodejno obra\u010dunavanje", "button", "Gumb", "preview", "Predogled", "customize", "Prilagodi po meri", "history", "Zgodovina", "payment", "Pla\u010dilo", "payments", "Pla\u010dila", "refunded", "Povrjeno", "payment_type", "Na\u010din pla\u010dila", _s21_79, _s21_108, "enter_payment", "Vnesi pla\u010dilo", "new_payment", "Vnesi pla\u010dilo", "created_payment", "Pla\u010dilo uspe\u0161no ustvarjeno", "updated_payment", "Pla\u010dilo uspe\u0161no posodobljeno", _s16_217, "Pla\u010dilo uspe\u0161no arhivirano", "deleted_payment", "Pla\u010dilo uspe\u0161no zbrisano", _s16_218, "Pla\u010dilo uspe\u0161no obnovljeno", _s17_124, "\u0160Uspe\u0161no je arhiviranih :count pla\u010dil", _s16_219, "Uspe\u0161no je zbrisanih :count pla\u010dil", _s17_125, _s37_20, "quote", "Ponudba", "quotes", "Ponudbe", "new_quote", "Nova ponudba", "created_quote", "Ponudba uspe\u0161no ustvarjena", "updated_quote", "Ponudba uspe\u0161no posodobljena", "archived_quote", "Ponudba uspe\u0161no arhivirana", "deleted_quote", "Ponudba uspe\u0161no zbrisana", "restored_quote", "Predra\u010dun uspe\u0161no obnovljen", "archived_quotes", "Uspe\u0161no je arhiviranih :count ponudb", "deleted_quotes", "Uspe\u0161no je zbrisanih :count ponudb", "restored_quotes", _s35_21, "expense", "Stro\u0161ek", "expenses", "Stro\u0161ki", "vendor", "Prodajalec", "vendors", "Prodajalci", "task", "Opravilo", "tasks", "Opravila", "project", "Projekt", "projects", "Projekti", "activity_1", ":user je ustvaril stranko :client", "activity_2", ":user je arhiviraj stranko :client", "activity_3", ":user je odstranil stranko :client", "activity_4", ":user je ustvaril ra\u010dun :invoice", "activity_5", ":user je posodobil ra\u010dun :invoice", "activity_6", ":user je ra\u010dun :invoice za :client poslal osebi :contact", "activity_7", ":contact si je ogledal ra\u010dun :invoice za :client", "activity_8", ":user je arhiviral ra\u010dun :invoice", "activity_9", ":user je odstranil ra\u010dun :invoice", "activity_10", ":contact je vnesel pla\u010dilo :payment v znesku :payment_amount na ra\u010dunu :invoice za :client", "activity_11", ":user je posodobil pla\u010dilo :payment", "activity_12", ":user je arhiviral pla\u010dilo :payment", "activity_13", ":user je odstranil :payment", "activity_14", ":user je vnesel :credit dobropis", "activity_15", ":user je posodobil :credit dobropis", "activity_16", ":user je arhiviral :credit dobropis", "activity_17", ":user je odstranil :credit dobropis", "activity_18", ":user je ustvaril predra\u010dun :quote", "activity_19", ":user je posodobil predra\u010dun :quote", "activity_20", ":user je predra\u010dun :quote za :client poslal osebi :contact", "activity_21", ":contact je pogledal predra\u010dun :quote", "activity_22", ":user je arhiviral predra\u010dun :quote", "activity_23", ":user je odstranil predra\u010dun :quote", "activity_24", ":user je obnovil predra\u010dun :quote", "activity_25", ":user je obnovil ra\u010dun :invoice", "activity_26", ":user je obnovil stranko :client", "activity_27", ":user je obnovil pla\u010dilo :payment", "activity_28", ":user je obnovil dobropis :credit", "activity_29", ":contact je potrdil predra\u010dun :quote za :client", "activity_30", ":user je ustvaril prodajalca :vendor", "activity_31", ":user je arhiviral prodajalca :vendor", "activity_32", ":user je odstranil prodajalca :vendor", "activity_33", ":user je obnovil prodajalca :vendor", "activity_34", ":user je vnesel stro\u0161ek :expense", "activity_35", ":user je arhiviral stro\u0161ek :expense", "activity_36", ":user je izbrisal stro\u0161ek :expense", "activity_37", ":user je obnovil stro\u0161ek :expense", "activity_39", ":user je preklical pla\u010dilo :payment v znesku :payment_amount", "activity_40", ":user je vrnil :adjustment od pla\u010dila :payment v znesku :payment_amount", "activity_41", ":payment_amount pla\u010dilo (:payment) ni uspelo", "activity_42", ":user je vnesel opravilo :task", "activity_43", ":user je posodobil opravilo :task", "activity_44", ":user je arhiviral opravilo :task", "activity_45", ":user je izbrisal opravilo :task", "activity_46", ":user je obnovil opravilo :task", "activity_47", ":user je posodobil opravilo :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user je ponovno odprl podporni zahtevek :ticket", "activity_55", ":contact je odgovoril na podporni zahtevek :ticket", "activity_56", ":user si je ogledal podporni zahtevek :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Geslo za enkratno uporabo", "emailed_quote", "Ponudba uspe\u0161no poslan", "emailed_credit", _s27_62, _s20_72, "Predra\u010dun ozna\u010den kot poslan", _s21_81, _s34_20, "expired", "Poteklo", "all", "Vse", "select", "Izberi", _s22_63, _s22_64, "custom_value1", _s16_353, "custom_value2", _s16_353, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u0160tevec za ra\u010dun", _s20_73, _s20_74, _s20_75, "\u0160tevec \u0161tevilke predra\u010duna", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Tip", "invoice_amount", "Znesek ra\u010duna", _s16_224, "Rok pla\u010dila", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Samodejno pla\u010dilo", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Ime dav\u010dne stopnje", "tax_amount", "Znesek davka", "tax_paid", "Davek pla\u010dan", "payment_amount", "Znesek pla\u010dila", "age", "Starost", "is_running", "Is Running", "time_log", "\u010casovni Dnevnik", "bank_id", "Banka", _s19_66, _s19_67, _s16_225, "Kategorija stro\u0161kov", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "es", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Por Defecto", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Situaci\xf3n", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Agregar Gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "Agregar a cuenta :invoice", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Divisa de la Factura", "range", "Rango", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Crear proyecto", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "La tarifa para una factura con valor de :amount ser\xeda de :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprobar", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Asignar Contrase\xf1a", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s20_150, "view_statement", "Ver Estado De Cuenta", "sepa", "D\xe9bito Directo SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistema", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Nombre Remitente", _s16_21, _s16_231, _s17_13, "Gasto Recurrente", _s18_13, "Gastos Recurrentes", _s21_16, "Nuevo Gasto Recurrente", _s22_24, "Editar Gasto Recurrente", _s25_2, "Gasto recurrente creado con \xe9xito", _s25_3, "Gasto recurrente actualizado con \xe9xito", _s26_2, "Gasto recurrente archivado con \xe9xito", _s25_4, _s28_95, _s25_5, _s38_2, _s26_3, "Gasto recurrente restaurado con \xe9xito", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Gu\xeda de Usuario", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importar datos", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Primer Nombre de Contacto", _s17_17, "Apellido de Contacto", "order", "Order", "unassigned", "Unassigned", "partial_value", "Debe ser mayor que cero y menor que el total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Asigne el suubdominio o mostrar la factura en su propio sitio web.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Suscripciones", _s16_39, _s16_40, _s17_23, "Editar suscripci\xf3n", _s20_23, _s32_37, _s20_24, _s37_38, _s21_28, "Suscripci\xf3n correctamente archivada", _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s19_149, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, "Escanee el c\xf3digo de barras con una aplicaci\xf3n compatible con :link", _s18_30, "Autenticaci\xf3n de Dos Factores habilitada con \xe9xito", "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, "Autenticaci\xf3n de Dos Factores", _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "\xdaltimo Trimestre", "to_update_run", "To update run", _s18_33, _s19_150, _s16_52, "URL de Registro", "invoice_project", "Facturar proyecto", "invoice_task", "Tarea de Factura", "invoice_expense", "Facturar Gasto", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s18_201, _s16_58, "Cantidad Convertida", _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "Documentos por defecto", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ocultar", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "Columna", "sample", "Ejemplo", "map_to", "Map To", "import", "Importar", _s25_15, _s29_6, "select_file", "Por favor selecciona un archivo", _s16_60, _s16_61, "csv_file", _s23_97, "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Servicio", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Sin Pagar", "white_label", "White Label", "delivery_note", "Nota de Entrega", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Total Facturado", "quote_total", "Total cotizado", "credit_total", "Cr\xe9dito Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", _s18_202, "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, _s18_41, _s20_42, _s20_43, _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, "Categor\xeda actualizada con \xe9xito", _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, _s18_203, _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", _s18_204, "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, _s18_205, _s18_45, _s20_151, _s21_47, _s24_109, _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Factura peri\xf3dica archivada", _s25_28, "Factura peri\xf3dica borrada", _s25_29, _s38_11, _s26_12, "Factura peri\xf3dica restaurada", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Ganancia", "line_item", "Item de Linea", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Abierto", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Guardar detalles de la tarjeta", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etiqueta", "client_number", "Cliente N\xfamero", "auto_convert", "Auto Convert", "company_name", "Nombre de Empresa", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "Facturas enviadas por correo electr\xf3nico con \xe9xito.", "emailed_quotes", "Cotizaciones enviadas por correo electr\xf3nico con \xe9xito.", "emailed_credits", _s28_57, "gateway", "Pasarela de Pagos", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Horas", "statement", "Estado De Cuenta", "taxes", "Impuestos", "surcharge", "Sobrecargo", "apply_payment", "Apply Payment", "apply_credit", "Aplicar Cr\xe9dito", "apply", "Aplicar", "unapplied", "Unapplied", "select_label", "Seleccionar Etiqueta", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Para", "health_check", "Health Check", "payment_type_id", "Tipo de pago", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, _s17_227, _s17_59, _s17_60, "recent_payments", "Pagos Recientes", "upcoming_quotes", "Pr\xf3ximas Cotizaciones", "expired_quotes", "Cotizaciones Vencidas", "create_client", "Crear Cliente", "create_invoice", "Crear Factura", "create_quote", "Crear Cotizaci\xf3n", "create_payment", "Create Payment", "create_vendor", "Crear Proveedor", "update_quote", "Update Quote", "delete_quote", "Eliminar Cotizaci\xf3n", "update_invoice", "Update Invoice", "delete_invoice", _s16_354, "update_client", "Update Client", "delete_client", _s16_355, "delete_payment", "Eliminar Pago", "update_vendor", _s20_152, "delete_vendor", _s16_356, "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Borrar Gasto", "create_task", "Crear Tarea", "update_task", "Update Task", "delete_task", "Eliminar Tarea", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Objetivo", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Editar Token", "created_token", "Token creado con \xe9xito", "updated_token", "Token actualizado con \xe9xito", "archived_token", "Token archivado", "deleted_token", "Token eliminado con \xe9xito", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_151, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Enviar factura por correo", "email_quote", "Enviar Cotizaci\xf3n", "email_credit", "Email Credit", "email_payment", "Enviar Pago por Correo Electr\xf3nico", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s26_87, _s20_51, "T\xe9rmino de pago creado con \xe9xito", _s20_52, "T\xe9rmino de pago actualizado con \xe9xito", _s21_50, "T\xe9rmino de pago archivado con \xe9xito", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", _s19_152, "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Buscar Proveedor", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", _s18_206, "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Nombre Completo", _s17_71, _s17_72, _s17_73, "C\xf3digo Postal/Ciudad/Estado", "custom1", "Primero Personalizado", "custom2", _s21_143, "custom3", "Tercero Personalizado", "custom4", "Cuarto Personalizado", "optional", "Opcional", "license", "Licencia", "purge_data", "Purgar Datos", _s16_91, "Datos de la empresa purgados con \xe9xito", _s18_54, "Advertencia: Esto borrar\xe1 definitivamente tus datos, no hay de deshacerlo.", "invoice_balance", "Balance de la Factura", "age_group_0", "0 - 30 D\xedas", "age_group_30", "30 - 60 D\xedas", "age_group_60", "60 - 90 D\xedas", "age_group_90", "90 - 120 D\xedas", "age_group_120", "120+ D\xedas", "refresh", "Refrescar", "saved_design", "Dise\xf1o guardado con \xe9xito", "client_details", "Detalles del Cliente", "company_address", "Direcci\xf3n de la Empresa", "invoice_details", "Detalles de la Factura", "quote_details", "Detalles de la Cotizaci\xf3n", "credit_details", "Detalles del Cr\xe9dito", "product_columns", "Columna de Productos", "task_columns", "Columna de Tareas", "add_field", "Agregar Campos", "all_events", _s17_228, "permissions", "Permissions", "none", "Ninguno", "owned", "Propiedad", "payment_success", "Pago Exit\xf3so", "payment_failure", "Fallos con el Pago", "invoice_sent", ":count factura enviada", "quote_sent", "Cotizaci\xf3n Enviada", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Factura Vista", "quote_viewed", "Cr\xe9dito Visto", "credit_viewed", "Cr\xe9dito Visto", "quote_approved", "Cotizaci\xf3n Aprobada", _s25_32, "Recibir Todas Las Notificaciones", _s16_92, _s16_357, "apply_license", "Activar Licencia", "cancel_account", "Cancelar Cuenta", _s22_44, "AVISO: Esta acci\xf3n eliminar\xe1 tu cuenta de forma permanente.", "delete_company", "Eliminar Empresa", _s22_45, "Advertencia: Esto eliminar\xe1 su empresa, no hay manera de deshacerlo.", "enabled_modules", "Enabled Modules", "converted_quote", "Cotizaci\xf3n convertida con \xe9xito", "credit_design", "Dise\xf1o de Cr\xe9ditos", "includes", "Incluir", "header", "Encabezado", "load_design", "Cargar Dise\xf1o", "css_framework", "Framework de CSS", "custom_designs", _s22_132, "designs", "Dise\xf1os", "new_design", "Nuevo Dise\xf1o", "edit_design", "Editar Dise\xf1o", "created_design", "Dise\xf1o creado con \xe9xito", "updated_design", "Dise\xf1o actualizado con \xe9xito", "archived_design", "Dise\xf1o archivado con \xe9xito", "deleted_design", "Dise\xf1o eliminado con \xe9xito", "removed_design", "Dise\xf1o removido con \xe9xito", "restored_design", "Dise\xf1o restaurado con \xe9xito", _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Propuestas", "tickets", "Tickets", _s16_96, "Cotizaciones Recurrentes", "recurring_tasks", _s18_207, _s18_55, _s18_56, "credit_date", _s16_358, "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Ingresa el Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", "Cr\xe9dito creado con \xe9xito", "updated_credit", "Cr\xe9dito actualizado con \xe9xito", "archived_credit", "Cr\xe9dito archivado con \xe9xito", "deleted_credit", "Cr\xe9ditos eliminados con \xe9xito", "removed_credit", "Cr\xe9dito removido con \xe9xito", "restored_credit", "Cr\xe9dito restaurado con \xe9xito", _s16_98, ":count creditos archivados con \xe9xito", "deleted_credits", ":count creditos eliminados con \xe9xito", _s16_99, _s36_9, "current_version", "Versi\xf3n Actual", "latest_version", "\xdaltiima Versi\xf3n", "update_now", "Actualizarse Ahora", _s26_19, "Una nueva versi\xf3n de la aplicaci\xf3n est\xe1 disponible", _s16_100, _s24_110, "app_updated", "Actualizaci\xf3n completada con \xe9xito", "learn_more", "Saber m\xe1s", "integrations", "Integraciones", "tracking_id", "Id de Rastreo", _s17_75, "URL del Webhook de Slack", "credit_footer", "Pie de P\xe1gina del Cr\xe9dito", "credit_terms", "T\xe9rminos del Cr\xe9dito", "new_company", "Nueva Empresa", "added_company", "Empresa agregada con \xe9xito", "company1", _s23_87, "company2", _s23_88, "company3", _s23_89, "company4", _s23_90, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reiniciar", "number", "Number", "export", "Exportar", "chart", "Gr\xe1fica", "count", "Count", "totals", "Totales", "blank", "Blank", "day", "Day", "month", "Mes", "year", "A\xf1o", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Agrupar por", "credit_balance", _s16_359, _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Tel\xe9fono de Contacto", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Calle de Env\xedo", _s17_80, "Apto/Suite de Env\xedo", "shipping_city", "Ciudad de Env\xedo", "shipping_state", "Estado/Provincia de Env\xedo", _s20_55, "C\xf3digo Postal de Env\xedo", _s16_130, "Pa\xeds de Env\xedo", _s16_132, "Calle de Facturaci\xf3n", _s16_133, "Apto/Suite de Facturaci\xf3n", "billing_city", "Ciudad de Facturaci\xf3n", "billing_state", "Estado/Provincia de Facturaci\xf3n", _s19_36, "C\xf3digo Postal de Facturaci\xf3n", "billing_country", "Pa\xeds de Facturaci\xf3n", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_360, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columnas", "aging", "Envejecimiento", "profit_and_loss", _s20_153, "reports", "Informes", "report", "Reporte", "add_company", "Agregar Empresa", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Ayuda", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Correo de Contacto", "multiselect", "Multiselect", "entity_state", "Estado", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Mensaje", "from", "De", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "foro de soporte", "about", "About", "documentation", "Documentaci\xf3n", "contact_us", "Cont\xe1ctenos", "subtotal", "Subtotal", "line_total", "Total", "item", "Concepto", "credit_email", "Credit Email", "iframe_url", "Sitio Web", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Si", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Seleccionar Empresa", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Ver", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "Usuario", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", _s26_88, _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Opciones", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Enviar", _s16_142, "Recuperar contrase\xf1a", "late_fees", "Late Fees", "credit_number", "N\xfamero de Cr\xe9dito", "payment_number", "Payment Number", "late_fee_amount", "Valor Tarifa por Tardanza", _s16_143, "Porcentaje Tarifa por Tardanza", "schedule", "Programar", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "D\xedas", "invoice_email", "Correo de Factura", "payment_email", "Correo de Pago", "partial_payment", "Pago Parcial", "payment_partial", "Partial Payment", _s21_66, "Correo Electr\xf3nico de Pago Parcial", "quote_email", "Correo de Cotizacion", _s16_145, "Recordatorio sin fin", _s16_147, _s16_148, "administrator", "Administrador", _s18_74, "Permitir que administre usuarios, cambie configuraciones y modifique cualquier registro", "user_management", "Gesti\xf3n de Usuarios", "users", "Usuarios", "new_user", "Nuevo Usuario", "edit_user", "Editar Usario", "created_user", _s25_36, "updated_user", "Usario actualizado con \xe9xito", "archived_user", "Usuario archivado", "deleted_user", "Usario eliminado con \xe9xito", "removed_user", _s25_39, "restored_user", "Usuario restaurado con \xe9xito", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, _s21_165, "invoice_options", _s19_153, _s17_86, "Ocultar Valor Pagado a la Fecha", _s22_52, "Solo mostrar la opci\xf3n \u201cPagado a la fecha\u201d en sus facturas cuando se ha recibido un pago.", _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Mostrar encabezado", _s16_152, "Mostrar pie", "first_page", "Primera p\xe1gina", "all_pages", _s17_229, "last_page", "\xdaltima p\xe1gina", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Color Primario", "secondary_color", _s16_361, "page_size", "Page Size", "font_size", "Tama\xf1o de Letra", "quote_design", "Dise\xf1o de Cotizaci\xf3n", "invoice_fields", _s17_230, "product_fields", _s18_208, "invoice_terms", _s23_98, "invoice_footer", "Pie de p\xe1gia de la factura", "quote_terms", "Terminos de Cotizaci\xf3n", "quote_footer", "Pie de la Cotizaci\xf3n", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convertir", _s23_29, "Convierte un presupuesto en factura automaticamente cuando los aprueba el cliente.", _s17_88, _s17_89, "freq_daily", "Diario", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Mensual", "freq_two_months", "Dos meses", _s17_90, "Tres meses", _s16_153, "Cuatro meses", "freq_six_months", "Seis meses", "freq_annually", "Annually", "freq_two_years", "Dos a\xf1os", _s16_154, "Three Years", "never", "Never", "company", "Empresa", _s17_91, _s17_231, "charge_taxes", _s16_362, "next_reset", "Siguiente Reinicio", "reset_counter", _s18_189, _s16_155, _s18_209, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", _s16_363, "company_value", "Valor de Empresa", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Campo Proveedor", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefijo", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", _s17_205, _s17_95, _s17_96, _s16_157, "Ver en PDF", _s21_68, "Mostrar la firma del cliente en los PDF de facturas/presupuestos.", _s25_40, "Casilla de los T\xe9rminos de la Factura", _s30_9, "Requerir que el cliente confirme que acept\xf3 los t\xe9rminos de la factura.", _s23_30, "Casilla de los T\xe9rminos de la Cotizaci\xf3n", _s28_21, "Requerir que el cliente confirme que acept\xf3 los t\xe9rminos de la cotizaci\xf3n.", _s25_41, "Firma de la Facturra", _s30_10, "Requerir que el cliente provea su firma.", _s23_31, "Firma de la Cotizaci\xf3n", _s22_54, _s32_38, _s27_36, "Permite establecer una contrase\xf1a para cada contacto. Si una contrase\xf1a es establecida, se le ser\xe1 solicitada al contacto para acceder a sus facturas.", "authorization", "Autorizaci\xf3n", "subdomain", "Subdominio", "domain", "Dominio", "portal_mode", "Portal Mode", "email_signature", _s18_210, _s24_38, _s118_, "plain", "Plano", "light", "Claro", "dark", "Oscuro", "email_design", _s16_364, "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, _s16_365, "reply_to_email", "Correo de Respuesta", "reply_to_name", "Reply-To Name", "bcc_email", "Correo para Copia Oculta BCC", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Logos de Tarjetas Aceptadas", "credentials", "Credentials", "update_address", _s20_154, _s19_45, "Actualiza la direcci\xf3n del cliente con los detalles proporcionados", "rate", "Tasas", "tax_rate", "Tasa de Impuesto", "new_tax_rate", "Nueva Tasa de Impuesto", "edit_tax_rate", "Editar tasa de impuesto", _s16_160, "Tasa de impuesto creada con \xe9xito", _s16_161, "Tasa de impuesto actualizada con \xe9xito", _s17_98, "Tasa de impuesto archivada con \xe9xito", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Auto-rellenar productos", _s18_80, _s74_0, "update_products", "Auto-actualizar productos", _s20_65, "Actualizar una factura autom\xe1ticamente actualizar\xe1 los productos", _s16_163, "Convertir productos", _s21_69, "Convertir autom\xe1ticamente precios de los productos a la moneda del cliente", "fees", "Tarifas", "limits", "L\xedmites", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Descartar Cambios", "default_value", "Default value", "disabled", "Deshabilitado", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Domingo", "monday", "Lunes", "tuesday", "Martes", "wednesday", "Mi\xe9rcoles", "thursday", "Jueves", "friday", "Viernes", "saturday", "S\xe1bado", "january", "Enero", "february", "Febrero", "march", "Marzo", "april", "Abril", "may", "Mayo", "june", "Junio", "july", "Julio", "august", "Agosto", "september", "Septiembre", "october", "Octubre", "november", "Noviembre", "december", "Diciembre", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Tiempo 24 Horas", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, "Filtro por Proveedor", "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "Configuraci\xf3n del Producto", "device_settings", "Device Settings", "defaults", "Valores por Defecto", "basic_settings", _s20_155, _s17_103, _s22_133, "company_details", _s22_134, "user_details", _s19_154, "localization", "Localizaci\xf3n", "online_payments", "Pagos Online", "tax_rates", "Tasas de Impuesto", "notifications", "Notificaciones", "import_export", _s17_222, "custom_fields", "Campos personalizados", "invoice_design", "Dise\xf1o de factura", "buy_now_buttons", "Buy Now Buttons", "email_settings", _s36_47, _s23_37, _s26_89, _s22_55, _s20_67, _s19_51, _s22_135, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "T\xe9rminos de Servicio", "privacy_policy", "Privacy Policy", "sign_up", "Registrarse", "account_login", "Iniciar Sesi\xf3n", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "Descargar", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Documento", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Fecha del Gasto", "pending", "Pendiente", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "Convertido", _s24_44, _s31_42, "exchange_rate", "Tipo de Cambio", _s16_178, _s16_366, "mark_paid", "Marcar como Pagado", "category", "Category", "address", "Direcci\xf3n", "new_vendor", "Nuevo Proveedor", "created_vendor", "Proveedor creado con \xe9xito", "updated_vendor", "Proveedor actualizado con \xe9xito", "archived_vendor", "Proveedor archivado con \xe9xito", "deleted_vendor", "Proveedor eliminado con \xe9xito", "restored_vendor", "Proveedor recuperado con \xe9xito", _s16_179, _s41_16, "deleted_vendors", _s41_16, _s16_180, _s36_11, "new_expense", "Ingrese el Gasto", "created_expense", _s26_90, "updated_expense", _s31_43, _s16_181, _s29_83, "deleted_expense", _s27_94, _s16_182, _s29_21, _s17_109, _s31_44, _s16_183, _s29_84, _s17_110, _s37_14, "copy_shipping", "Copiar env\xedo", "copy_billing", "Copiar facturaci\xf3n", "design", "Design", _s21_74, _s21_75, "invoiced", "Facturado", "logged", "Registrado", "running", "Ejecutando", "resume", "Continuar", "task_errors", "Por favor corrija cualquier tiempo que se sobreponga con otro", "start", "Iniciar", "stop", "Detener", "started_task", "Tarea iniciada con \xe9xito", "stopped_task", "Tarea detenida con \xe9xito", "resumed_task", "Tarea reanudada con \xe9xito", "now", "Ahora", _s16_184, _s16_185, "timer", "Temporizador", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Tiempo de Inicio", "end_time", "Tiempo Final", "date", "Fecha", "times", "Tiempos", "duration", "Duraci\xf3n", "new_task", "Nueva Tarea", "created_task", "Tarea creada con \xe9xito", "updated_task", "Tarea actualizada con \xe9xito", "archived_task", "Tarea archivada con \xe9xito", "deleted_task", "Tarea eliminada con \xe9xito", "restored_task", "Tarea restaurada con \xe9xito", "archived_tasks", ":count tareas archivadas con \xe9xito", "deleted_tasks", ":count tareas eliminadas con \xe9xito", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", _s20_156, "created_project", "Proyecto creado con \xe9xito", "updated_project", "Proyecto actualizado con \xe9xito", _s16_186, "Proyecto archivado con \xe9xito", "deleted_project", _s28_95, _s16_187, "Proyecto restaurado con \xe9xito", _s17_111, "Archivados con \xe9xito :count proyectos", _s16_188, "Eliminados con \xe9xito :count proyectos", _s17_112, _s37_15, "new_project", "Nuevo Proyecto", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "haz clic aqu\xed", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Pie de P\xe1gina", "compare", "Comparar", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Rango Personalizado", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s22_136, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Comparar con", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Este Mes", "last_month", "Mes Anterior", "this_year", "Este A\xf1o", "last_year", "A\xf1o Anterior", "custom", "Personalizado", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clonar como Cr\xe9dito", "view_invoice", "Ver Factura", "convert", "Convert", "more", "More", "edit_client", "Editar Cliente", "edit_product", "Editar Producto", "edit_invoice", "Editar Factura", "edit_quote", "Editar Cotizaci\xf3n", "edit_payment", "Editar Pago", "edit_task", "Editar Tarea", "edit_expense", "Editar Gasto", "edit_vendor", _s16_367, "edit_project", "Editar Proyecto", _s20_68, _s20_69, "billing_address", "Direcci\xf3n de facturaci\xf3n", _s16_191, "Direcci\xf3n de Env\xedo", "total_revenue", _s16_368, "average_invoice", _s23_99, "outstanding", _s18_211, "invoices_sent", _s24_111, "active_clients", _s16_369, "close", "Cerrar", "email", "Correo Electr\xf3nico", "password", "Contrase\xf1a", "url", "URL", "secret", "Secret", "name", "Nombre", "logout", "Cerrar sesi\xf3n", "login", "Iniciar Sesi\xf3n", "filter", "Filtrar", "sort", "Sort", "search", "B\xfasqueda", "active", "Activo", "archived", "Archivado", "deleted", "Eliminado", "dashboard", "Inicio", "archive", "Archivar", "delete", "Eliminar", "restore", "Restaurar", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascendente", "descending", "Descendente", "save", "Guardar", _s17_115, _s17_116, "paid_to_date", "Pagado", "balance_due", "Pendiente", "balance", "Saldo", "overview", "Overview", "details", "Detalles", "phone", "Tel\xe9fono", "website", "Sitio Web", "vat_number", "CIF/NIF", "id_number", "ID Number", "create", "Crear", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "Contactos", "additional", "Additional", "first_name", "Nombres", "last_name", "Apellidos", "add_contact", "A\xf1adir contacto", "are_you_sure", "\xbfEst\xe1s Seguro?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remove", _s16_197, _s16_198, "product", "Producto", "products", "Productos", "new_product", "Nuevo Producto", "created_product", "Producto creado con \xe9xito", "updated_product", _s30_72, _s16_199, "Producto archivado con \xe9xito", "deleted_product", _s30_72, _s16_200, "Producto restaurado con \xe9xito", _s17_117, ":count productos archivados con \xe9xito", _s16_201, "Eliminados con \xe9xito :count productos", _s17_118, _s37_16, "product_key", "Producto", "notes", "Notas", "cost", "Costo", "client", "Cliente", "clients", "Clientes", "new_client", "Nuevo Cliente", "created_client", "cliente creado con \xe9xito", "updated_client", "Cliente actualizado con \xe9xito", "archived_client", "Cliente archivado con \xe9xito", _s16_202, ":count clientes archivados con \xe9xito", "deleted_client", "Cliente eliminado con \xe9xito", "deleted_clients", ":count clientes eliminados con \xe9xito", "restored_client", "Cliente restaurado con \xe9xito", _s16_203, _s36_13, "address1", "Calle", "address2", "Bloq/Pta", "city", "Ciudad", "state", "Regi\xf3n/Provincia", "postal_code", "C\xf3digo Postal", "country", "Pa\xeds", "invoice", "Factura", "invoices", "Facturas", "new_invoice", "Nueva Factura", "created_invoice", "Factura creada con \xe9xito", "updated_invoice", "Factura actualizada con \xe9xito", _s16_204, "Factura archivada con \xe9xito", "deleted_invoice", "Factura eliminada con \xe9xito", _s16_205, "Factura restaurada con \xe9xito", _s17_119, ":count facturas archivados con \xe9xito", _s16_206, ":count facturas eliminadas con \xe9xito", _s17_120, _s37_17, "emailed_invoice", "Factura enviada con \xe9xito", "emailed_payment", "Pago enviado por correo con \xe9xito", "amount", "Cantidad", "invoice_number", _s17_232, "invoice_date", _s16_370, "discount", "Descuento", "po_number", "N\xfamero de Orden", "terms", "T\xe9rminos", "public_notes", "Notas", "private_notes", "Notas Privadas", "frequency", "Frequencia", "start_date", "Fecha de Inicio", "end_date", "Fecha de Finalizaci\xf3n", "quote_number", "Numero de cotizaci\xf3n", "quote_date", "Fecha cotizaci\xf3n", "valid_until", "V\xe1lida Hasta", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Descripci\xf3n", "unit_cost", "Coste unitario", "quantity", "Cantidad", "add_item", "Add Item", "contact", "Contacto", "work_phone", "Tel\xe9fono", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Fecha de Pago", _s16_207, "Fecha de Vencimiento Parcial", "status", "Estado", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Total", "percent", "Porciento", "edit", "Editar", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Tasa de Tarea", "settings", "Configuraci\xf3n", "language", "Language", "currency", "Moneda", "created_at", _s17_233, "created_on", "Created On", "updated_at", "Updated", "tax", "Impuesto", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Vencido", "draft", "Borrador", "sent", "Enviado", "viewed", "Viewed", "approved", "Approved", "partial", _s16_343, "paid", "Pagado", "mark_sent", "Marcar como enviado", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Hecho", _s37_18, _s37_19, "dark_mode", "Modo Oscuro", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Actividad", _s16_209, _s16_210, "clone", "Clon", "loading", "Cargando", "industry", "Industry", "size", "Size", "payment_terms", _s16_371, "payment_date", "Fecha de Pago", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Portal de Cliente", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Remitentes", "initial_email", "Email Inicial", "first_reminder", _s19_155, "second_reminder", _s20_157, "third_reminder", _s19_156, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Plantilla", "send", "Send", "subject", "Asunto", "body", "Mensaje", "send_email", "Enviar email", "email_receipt", "Enviar por correo electr\xf3nico el recibo de pago al cliente", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Personalizar", "history", "Historial", "payment", "pago", "payments", "Pagos", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, _s25_95, "enter_payment", "Agregar Pago", "new_payment", "Ingresa el Pago", "created_payment", "Pago creado con \xe9xito", "updated_payment", "Pago actualizado con \xe9xito", _s16_217, "Pago archivado con \xe9xito", "deleted_payment", "Pago eliminado con \xe9xito", _s16_218, "Pago restaurado con \xe9xito", _s17_124, ":count pagos archivados con \xe9xito", _s16_219, ":count pagos eliminados con \xe9xito", _s17_125, _s37_20, "quote", "Cotizaci\xf3n", "quotes", "Cotizaciones", "new_quote", "Nueva cotizaci\xf3n", "created_quote", "Cotizaci\xf3n creada con \xe9xito", "updated_quote", "Cotizaci\xf3n actualizada con \xe9xito", "archived_quote", "Cotizaci\xf3n archivada con \xe9xito", "deleted_quote", "Cotizaci\xf3nes eliminadas con \xe9xito", "restored_quote", "Cotizaci\xf3n restaurada con \xe9xito", "archived_quotes", ":count cotizaciones archivadas con exito", "deleted_quotes", ":count cotizaciones eliminadas con exito", "restored_quotes", _s35_21, "expense", "Gasto", "expenses", "Gastos", "vendor", "Proveedor", "vendors", "Proveedores", "task", "Task", "tasks", "Tareas", "project", "Proyecto", "projects", "Proyectos", "activity_1", _s29_85, "activity_2", _s32_39, "activity_3", ":user elimin\xf3 el cliente :client", "activity_4", ":user cre\xf3 la factura :invoice", "activity_5", _s35_46, "activity_6", ":user envi\xf3 por correo electr\xf3nico la factura :invoice para el cliente :client a :contact", "activity_7", ":contact vi\xf3 la factura :invoice del cliente :client", "activity_8", _s33_42, "activity_9", ":user elimin\xf3 la factura :invoice", "activity_10", ":contact ingres\xf3 el pago :payment por el valor :payment_amount en la factura :invoice del cliente :client", "activity_11", ":user actualiz\xf3 el pago :payment", "activity_12", _s30_73, "activity_13", ":user elimin\xf3 el pago :payment", "activity_14", ":user ingres\xf3 :credit cr\xe9ditos", "activity_15", ":user actualiz\xf3 :credit cr\xe9ditos", "activity_16", ":user archiv\xf3 :credit cr\xe9ditos", "activity_17", ":user elimin\xf3 :credit cr\xe9ditos", "activity_18", ":user cre\xf3 la cotizaci\xf3n :quote", "activity_19", ":user actualiz\xf3 la cotizaci\xf3n :quote", "activity_20", ":user envi\xf3 por correo electr\xf3nico la cotizaci\xf3n :quote a :contact", "activity_21", ":contact vi\xf3 la cotizaci\xf3n :quote", "activity_22", ":user archiv\xf3 la cotizaci\xf3n :quote", "activity_23", ":user elimin\xf3 la cotizaci\xf3n :quote", "activity_24", ":user restaur\xf3 la cotizaci\xf3n :quote", "activity_25", ":user restaur\xf3 factura :invoice", "activity_26", _s33_43, "activity_27", _s31_45, "activity_28", ":user restaur\xf3 :credit cr\xe9ditos", "activity_29", ":contact aprov\xf3 la cotizaci\xf3n :quote para el cliente :client", "activity_30", _s30_74, "activity_31", _s33_44, "activity_32", _s33_45, "activity_33", _s34_39, "activity_34", ":user cre\xf3 expense :expense", "activity_35", _s31_46, "activity_36", _s31_47, "activity_37", _s32_40, "activity_39", ":usaer cancel\xf3 :payment_amount pago :payment", "activity_40", ":user reembols\xf3 :adjustment de un pago de :payment_amount :payment", "activity_41", _s41_8, "activity_42", _s25_96, "activity_43", _s30_75, "activity_44", _s28_96, "activity_45", _s28_97, "activity_46", _s29_86, "activity_47", ":user actruliz\xf3 el gasto :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user volvi\xf3 a abrir el ticket :ticket", "activity_55", _s36_48, "activity_56", ":user vi\xf3 el ticket :ticket", "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, "Contrase\xf1a de una sola vez", "emailed_quote", "Cotizaci\xf3n enviada con \xe9xito", "emailed_credit", "Cr\xe9dito enviado por correo electr\xf3nico con \xe9xito", _s20_72, _s33_22, _s21_81, "Cr\xe9dito marcado como enviado con \xe9xito", "expired", "Vencida", "all", "All", "select", "Seleccionar", _s22_63, _s22_64, "custom_value1", _s19_137, "custom_value2", _s19_137, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Numeraci\xf3n de facturaci\xf3n", _s20_73, _s20_74, _s20_75, "Numeraci\xf3n de Cotizaciones", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, "Asunto del correo electr\xf3nico de pago parcial", "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "Tipo", "invoice_amount", _s18_212, _s16_224, _s20_158, "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Cobro Autom\xe1tico", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Est\xe1 Eliminado", "vendor_city", _s20_159, "vendor_state", "Estado del Proveedor", "vendor_country", _s18_213, "is_approved", "Est\xe1 Aprobado", "tax_name", _s18_214, "tax_amount", "Suma de Impuestos", "tax_paid", "Impuestos pagados", "payment_amount", "Valor del Pago", "age", "Edad", "is_running", "Is Running", "time_log", "Registro de Tiempo", "bank_id", "banco", _s19_66, _s19_67, _s16_225, "Categor\xeda de Gastos", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "es_ES", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Aceptar", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Configuraci\xf3n de Pago", "default", "Por defecto", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Situaci\xf3n", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "Agregar Pasarela", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Crea tu cuenta en unos segundos", "login_label", _s28_, "add_to_invoice", "A\xf1adir a la factura :invoice", _s17_6, _s17_7, "week", "Semana", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Moneda de la Factura", "range", "Rango", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Crear Proyecto", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "La tarifa por una factura de cantidad :amount ser\xeda :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Aprobar", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Cliente purgado correctamente", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Grande", "extra_large", "Extra Grande", _s16_15, "Mostrar Vista Preliminar de PDF", _s21_14, _s42_1, "print_pdf", "Imprimir PDF", "remind_me", "Recordarme", _s16_17, _s16_18, "click_selected", "Pinchar seleccionados", "hide_preview", "Hide Preview", "edit_record", "Editar R\xe9cord", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "D\xe9bito directo", _s21_15, _s30_2, "set_password", "Establecer Contrase\xf1a", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", "Pagos de d\xe9bito preautorizados", "becs", "D\xe9bito directo BECS", "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", _s20_150, "view_statement", "Ver Estado de cuenta", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistema", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Nombre De", _s16_21, "Clonar a gasto", _s17_13, "Gasto Peri\xf3dico", _s18_13, "Gastos Peri\xf3dicos", _s21_16, "Nuevo Gasto Peri\xf3dico", _s22_24, "Editar Gasto Peri\xf3dico", _s25_2, "Gasto Peri\xf3dico creado correctamente", _s25_3, "Gasto Peri\xf3dico actualizado correctamente", _s26_2, "Gasto Peri\xf3dico archivado correctamente", _s25_4, "Gasto Peri\xf3dico borrado correctamente", _s25_5, _s38_2, _s26_3, "Gasto Peri\xf3dico restaurado correctamente", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Gu\xeda del usuario", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Neto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importar datos", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user cre\xf3 la factura recurrente n\xba :recurring_invoice", "activity_101", ":user actualiz\xf3 la factura recurrente n\xba :recurring_invoice", "activity_102", ":user archiv\xf3 la factura recurrente n\xba :recurring_invoice", "activity_103", ":user elimin\xf3 la factura recurrente n\xba :recurring_invoice", "activity_104", ":user restaur\xf3 la factura recurrente n\xba :recurring_invoice", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\xdaltima Actualizaci\xf3n", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s19_157, _s17_17, "Apellido del contacto", "order", "Order", "unassigned", "Sin asignar", "partial_value", "Debe ser mayor que 0 y menos que el Total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Asigne el subdominio o mostrar la factura en su propio sitio web.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "C\xf3digo promocional", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Seguridad", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscripci\xf3n", "subscriptions", "Suscripciones", _s16_39, "Nueva Subscripci\xf3n", _s17_23, "Editar Suscripci\xf3n", _s20_23, _s32_37, _s20_24, _s37_38, _s21_28, "Suscripci\xf3n archivada correctamente", _s20_25, "Subscripci\xf3n borrada correctamente", _s20_26, "Subscripci\xf3n eliminada correctamente", _s21_29, "Subscripci\xf3n restaurada correctamente", _s19_17, "Buscar 1 Subscripci\xf3n", _s20_27, "Buscar :count Subscripciones", _s26_6, "El subdominio no est\xe1 disponible", "connect_gmail", "Conectar Gmail", _s16_41, "Desconectar Gmail", "connected_gmail", "Gmail conectado correctamente", _s18_29, "Gmail desconectado correctamente", _s16_43, "C\xe1mbios en el c\xf3digo pueden estar bloqueando la actualizaci\xf3n, puedes ejecutar este comando para descartar los cambios:", _s16_44, "N\xfamero ID Cliente", "count_minutes", ":count Minutos", _s16_46, "Caducidad de Contrase\xf1a", _s29_4, "Contador de Factura/Cr\xe9dito Compartido", "use_last_email", "Usar \xfaltimo email", _s16_48, "Activar Compa\xf1\xeda", _s21_31, "Activar emails, facturas recurrentes y notificaciones", _s27_14, "Ha ocurrido un error, por favor int\xe9ntalo de nuevo", _s27_15, "Por favor, primero establezca una contrase\xf1a", _s34_6, "Atenci\xf3n: Cambiar el n\xfamero de tel\xe9fono desactivar\xe1 autenticaci\xf3n en 2 pasos", "help_translate", "Ayuda a Traducir", _s23_11, "Por favor, indica un pa\xeds", "resend_invite", _s19_149, _s19_18, "Autenticaci\xf3n en 2 pasos desactivada correctamente", _s16_50, "Cuenta conectada correctamente", _s19_19, "Cuenta desconectada correctamente", "delivered", "Entregado", "bounced", "Rebotados", "spam", "Spam", "view_docs", "Ver Documentos", _s32_4, "Por favor, facilita un n\xfamero de tel\xe9fono para activar la autenticaci\xf3n en dos pasos", "send_sms", "Enviar SMS", "sms_code", "C\xf3digo SMS", _s21_32, "Escanea el codigo de barras con una :link aplicacion compatible", _s18_30, "Autenticacion en dos pasos habilitada correctamente", "connect_google", "Conectar Google", _s17_25, "Desconectar Google", _s17_27, "Autenticacion en dos pasos", _s18_31, "Desactivar Autenticaci\xf3n en 2 Pasos", _s34_7, "Requerir contrase\xf1a con Social Login", "stay_logged_in", "Permanecer Conectado", _s23_13, "Atenci\xf3n: Tu sesi\xf3n est\xe1 a punto de expirar", "count_hours", ":count Horas", "count_day", "1 D\xeda", "count_days", ":count D\xedas", _s19_20, "Tiempo de finalizaci\xf3n de la sesi\xf3n Web", _s17_28, "Opciones de Seguridad", "resend_email", "Reenviar Email", _s26_8, "Por favor, confirma tu direcci\xf3n de email", _s16_51, "Pago Reembolsado", _s19_22, "Parcialmente sin aplicar", _s19_24, "Por favor, selecciona un usuario autenticado con Gmail", "list_long_press", "Pulsaci\xf3n Larga en Lista", "show_actions", "Mostrar Acciones", _s17_30, "Iniciar Multiselecci\xf3n", _s27_17, "Un email ha sido enviado para confirmar la direcci\xf3n de correo", _s21_33, "Para usar :client_counter por favor, a\xf1ade o bien :client_number o :client_id_number para evitar conflictos", "this_quarter", "Trimestre Actual", "last_quarter", "Trimestre Anterior", "to_update_run", "Para actualizar ejecute", _s18_33, _s19_150, _s16_52, "URL de registro", "invoice_project", "Facturar Proyecto", "invoice_task", "Facturar tarea", "invoice_expense", "Facturar Gasto", _s19_25, "Buscar 1 T\xe9rmino de Pago", _s20_28, "Buscar :count T\xe9rminos de Pago", _s16_54, "Guardar y Previsualizar", "save_and_email", "Guardar y Enviar", _s16_56, _s18_201, _s16_58, "Cuenta convertida", _s17_32, "Balance Convertido", _s22_28, "Pagado a la fecha convertido", _s24_18, "Saldo de cr\xe9dito convertido", "converted_total", "Total convertido", "is_sent", "Enviada", _s17_34, "Documents por defecto", "document_upload", "Subir Documento", _s20_29, "Activar la subida de documentos de los clientes", "expense_total", "Gasto Total", "enter_taxes", "Introducir Impuestos", "by_rate", "Por Tarifa", "by_amount", "Por Cantidad", "enter_amount", "Introduce Cantidad", "before_taxes", "Antes de Impuestos", "after_taxes", "Despu\xe9s de Impuestos", "color", "Color", "show", "Mostrar", "hide", "Ocultar", "empty_columns", "Vaciar Columnas", _s21_35, "Modo de depuraci\xf3n activo", _s26_9, "Atenci\xf3n: s\xf3lo est\xe1 destinado para usarse en maquinas locales, puede filtrar credenciales. Pulsa para saber m\xe1s.", "running_tasks", "Tareas en Proceso", "recent_tasks", "Tareas Recientes", "recent_expenses", "Gastos Recientes", _s17_36, "Pr\xf3ximos Gastos", "update_app", "Actualizar App", "started_import", "Importaci\xf3n iniciada correctamente", _s24_20, "Mapeo de columnas duplicado", _s20_30, "Usar Impuestos Inclusivos", _s18_35, "Es cantidad de descuento", "column", "Columna", "sample", "Ejemplo", "map_to", "Mapear a", "import", "Importar", _s25_15, "Usar primera fila como nombres de columna", "select_file", "Seleccionar archivo", _s16_60, "No hay archivos seleccionados", "csv_file", _s23_97, "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Contabilidad", _s22_30, "Por favor facilita todos los CSVs.", "import_type", "Importar Tipo", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Ver Licencias", "webhook_url", "Webhook URL", _s17_38, "Editor a Pantalla Completa", "sidebar_editor", "Editor de Barra Lateral", _s22_31, 'Por favor, escribe ":value" para confirmar', "purge", "Purgar", "service", "Servicio", "clone_to", "Clonar a", "clone_to_other", "Clonar a otra", "labels", "Etiquetas", "add_custom", "A\xf1adir Personalizado", "payment_tax", "Impuesto de Pago", "unpaid", "Impagado", "white_label", "Marca Blanca", "delivery_note", "Nota para el envio", _s24_23, "Las facturas enviadas est\xe1n bloqueadas", _s24_25, "Las facturas pagadas est\xe1n bloqueadas", "source_code", "C\xf3digo Fuente", "app_platforms", "A\xf1adir Plataformas", "invoice_late", "Atraso de Factura", "quote_expired", _s20_160, "partial_due", "Adelanto", "invoice_total", "Total Facturado", "quote_total", "Total Presupuestado", "credit_total", "Cr\xe9dito Total", _s23_14, "Total Factura", "actions", "Acciones", "expense_number", "N\xfamero de Gasto", "task_number", "N\xfamero de Tarea", "project_number", "N\xfamero de Proyecto", "project_name", "Nombre de Proyecto", "warning", "Advertencia", "view_settings", "Ver Configuraci\xf3n", _s24_27, "Advertencia: esta compa\xf1\xeda a\xfan no ha sido activada", "late_invoice", "Factura Atrasada", "expired_quote", _s20_160, "remind_invoice", "Recordar Factura", "cvv", "CVV", "client_name", _s18_202, "client_phone", "Tel\xe9fono del Cliente", "required_fields", "Campos Requeridos", "calculated_rate", "Tasa Calculada", _s17_40, "Tarifa de Tarea por Defecto", "clear_cache", "Borrar Cach\xe9", "sort_order", "Orden Clasificaci\xf3n", "task_status", "Estado", "task_statuses", "Estados de Tarea", "new_task_status", "Nuevo Estado de Tarea", _s16_62, "Editar Estado de Tarea", _s19_26, "Estado de tarea creado correctamente", _s19_27, "Se actualiz\xf3 correctamente el estado de la tarea", _s20_32, "Estado de tarea archivado correctamente", _s19_28, "Estado de tarea borrado correctamente", _s19_29, "Estado de tarea eliminado correctamente", _s20_33, "Estado de tarea restaurado correctamente", _s22_32, ":value estados de tarea archivados correctamente", _s21_37, ":value estados de tarea borrados correctamente", _s22_33, ":value estados de tarea restaurados correctamente", _s18_37, "Buscar 1 Estado de Tarea", _s20_35, "Buscar :count Estados de Tarea", _s16_64, "Mostrar Tabla de Tareas", _s21_38, "Mostrar siempre la secci\xf3n de tareas cuando se creen facturas", _s20_36, "Registro de Tiempo de Tarea Facturada", _s25_16, "A\xf1adir detalles de tiempo a los art\xedculos de l\xednea de factura", _s20_38, "Fecha de Tarea en Factura", _s25_17, "A\xf1adir detalles de fecha a los art\xedculos de l\xednea de la factura", _s21_39, "Empezar tareas antes de guardar", _s18_38, _s18_198, "task_settings", "Configuraci\xf3n de Tareas", _s20_40, "Configurar Categor\xedas", _s18_40, "Categor\xedas de Gasto", _s20_42, "Nueva Categor\xeda de Gasto", _s21_40, "Editar Categor\xeda de Gasto", _s24_28, "Categor\xeda de gasto creada correctamente", _s24_29, "Categor\xeda de gasto actualizada correctamente", _s25_19, "Categor\xeda de gasto archivada correctamente", _s24_30, "Categor\xeda eliminada correctamente", _s24_31, "Categor\xeda de gasto eliminada correctamente", _s25_20, "Categor\xeda de Gasto restaurada correctamente", _s27_21, ":count categor\xedas de gasto actualizados correctamente", _s26_10, ":value categor\xedas de gasto borradas correctamente", _s27_22, ":value categor\xedas de gasto restauradas correctamente", _s23_15, "Buscar 1 Categor\xeda de Gasto", _s25_22, "Buscar :count Categor\xedas de Gasto", _s21_42, "Usar Cr\xe9dito Disponible", "show_option", "Mostrar Opci\xf3n", _s22_34, "La cantidad de cr\xe9dito no puede exceder la cantidada pagada", "view_changes", "Ver Cambios", "force_update", "Forzar Actualizaci\xf3n", _s17_42, "Est\xe1s usando la \xfaltima versi\xf3n, pero puede haber correcci\xf3n de errores pendientes.", "mark_paid_help", "Seguir que la factura haya sido pagada", _s18_42, _s18_203, _s23_16, "Activar que los gastos sean facturables", _s29_7, "Hacer los documentos visibles", _s21_44, "Establecer un tipo de cambio", _s16_66, "Configuraci\xf3n de Gastos", _s18_43, "Clonar a Recurrente", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Campo de Usuario", "variables", "Variables", "show_password", "Mostrar Contrase\xf1a", "hide_password", "Ocultar Contrase\xf1a", "copy_error", "Copiar Error", "capture_card", "Capturar Tarjeta", _s17_43, "Activar Auto Facturaci\xf3n", "total_taxes", "Impuestos Totales", "line_taxes", "Impuestos de L\xednea", "total_fields", "Campos Totales", _s25_23, "Se ha parado la factura recurrente correctamente", _s25_24, "Se ha iniciado la factura recurrente correctamente", _s25_25, "Se ha reiniciado la factura recurrente correctamente", "gateway_refund", "Pasarela de Devoluci\xf3n", _s19_30, "Procesar la devoluci\xf3n con la pasarela de pago", "due_date_days", _s20_158, "paused", "Pausado", "mark_active", _s18_204, "day_count", "D\xeda :count", _s22_35, "Primer D\xeda del Mes", _s21_45, "\xdaltimo D\xeda del Mes", _s17_45, "Usar T\xe9rminos de Pago", "endless", "Sin F\xedn", "next_send_date", "Pr\xf3xima Fecha de Env\xedo", _s16_68, "Ciclos Pendientes", _s17_47, _s18_205, _s18_45, _s20_151, _s21_47, _s24_109, _s22_37, "Editar Factura Recurrente", _s25_26, "Factura recurrente creada correctamente", _s25_27, "Factura recurrente actualizada correctamente", _s26_11, "Factura recurrente archivada correctamente", _s25_28, "Factura recurrente borrada correctamente", _s25_29, "Factura recurrente eliminada correctamente", _s26_12, "Factura recurrente restaurada correctamente", _s27_23, ":value facturas recurrentes archivadas correctamente", _s26_13, ":value facturas recurrentes borradas correctamente", _s27_24, ":value facturas recurrentes restauradas correctamente", _s24_32, "Buscar 1 Factura Recurrente", _s25_30, "Buscar :count Facturas Recurrentes", "send_date", "Fecha de Env\xedo", "auto_bill_on", "Facturaci\xf3n Autom\xe1tica Activa", _s28_7, "Cantidad M\xednima de Pago", "profit", "Beneficio", "line_item", "Linea de Concepto", _s18_47, "Permitir Sobrepago", _s23_17, "Permitir pagos extra para aceptar propinas", _s19_31, "Permitir Pago de Menos", _s24_33, "Permitir pagar como m\xednimo la cantidad parcial/dep\xf3sito", "test_mode", "Modo Test", "opened", "Abiertos", _s30_4, "Fallo de Conciliaci\xf3n", _s30_5, "Concilicaci\xf3n correcta", "gateway_success", "\xc9xito de pasarela", "gateway_failure", "Fallo de Pasarela", "gateway_error", "Error de Pasarela", "email_send", "Email Enviado", _s17_49, "Cola de Reenv\xedo de Email", "failure", "Fallo", "quota_exceeded", "Cuota Excedida", _s16_70, _s16_71, "system_logs", "Registros del Sistema", "view_portal", "Ver portal", "copy_link", "Copiar Enlace", "token_billing", "Guardar datos de la tarjeta", _s24_34, "Bienvenid@ a Invoice Ninja", "always", "Siempre", "optin", "Optar en", "optout", "Optar por no", "label", "Etiqueta", "client_number", "C\xf3digo de Cliente", "auto_convert", "Auto Convertir", "company_name", "Nombre de la Empresa", "reminder1_sent", "Recordatorio 1, enviado", "reminder2_sent", "Recordatorio 2, enviado", "reminder3_sent", "Recordatorio 3, enviado", _s18_49, "\xdaltimo recordatorio enviado", "pdf_page_info", "P\xe1gina :current de :total", _s16_72, "Facturas enviadas correctamente", "emailed_quotes", "Presupuestos enviados correctamente", "emailed_credits", "Cr\xe9ditos enviados correctamente", "gateway", "Pasarela", "view_in_stripe", "Ver en Stripe", "rows_per_page", "Filas por P\xe1gina", "hours", "horas", "statement", "Estado de cuenta", "taxes", "Impuestos", "surcharge", "Recargo", "apply_payment", "Aplicar Pago", "apply_credit", "Aplicar Cr\xe9dito", "apply", "Aplicar", "unapplied", "Sin Aplicar", "select_label", "Seleccionar etiqueta", "custom_labels", _s24_91, "record_type", _s16_311, "record_name", "Nombre de Registro", "file_type", "Tipo de Archivo", "height", "Altura", "width", "Anchura", "to", "Para", "health_check", "Consultar Estado de Sistema", "payment_type_id", "Tipo de Pago", "last_login_at", "\xdaltimo Acceso el", "company_key", "Clave de empresa", "storefront", "Escaparate", "storefront_help", "Activar apps de terceros para crear facturas", "client_created", "Cliente Creado", _s20_45, "Email de Pago Online", _s20_47, "Email de Pago Manual", "completed", "Completado", "gross", "Bruto", "net_amount", "Importe Neto", "net_balance", "Balance Neto", "client_settings", "Configuraci\xf3n de Cliente", _s17_51, "Facturas Seleccionadas", _s17_53, "Pagos Seleccionados", "selected_quotes", "Presupuestos Seleccionados", "selected_tasks", "Tareas Seleccionadas", _s17_55, "Gastos Seleccionados", _s17_57, _s17_227, _s17_59, "Facturas Fuera de Plazo", "recent_payments", "Pagos recientes", "upcoming_quotes", "Pr\xf3ximos Presupuestos", "expired_quotes", "Presupuestos Expirados", "create_client", "Crear cliente", "create_invoice", "Crear Factura", "create_quote", "Crear Presupuesto", "create_payment", "Crear Pago", "create_vendor", "Crear Proveedor", "update_quote", "Actualizar Presupuesto", "delete_quote", "Eliminar Presupuesto", "update_invoice", "Actualizar Factura", "delete_invoice", _s16_354, "update_client", "Actualizar Cliente", "delete_client", _s16_355, "delete_payment", "Eliminar Pago", "update_vendor", _s20_152, "delete_vendor", _s16_356, "create_expense", "Crear Gasto", "update_expense", "Actualizar Gasto", "delete_expense", "Borrar Gasto", "create_task", "Crear Tarea", "update_task", "Actualizar Tarea", "delete_task", "Borrar Tarea", "approve_quote", "Aprobar Presupuesto", "off", "Apagado", "when_paid", "Al Pagar", "expires_on", "Expira el", "free", "Gratuito", "plan", "Plan", "show_sidebar", _s21_152, "hide_sidebar", _s21_139, "event_type", "Tipo de Evento", "target_url", "objetivo", "copy", "Copiar", "must_be_online", "Por favor reinicia la app cuando te conectes a internet", _s17_61, "La tarea cron debe ser activada", "api_webhooks", "API Webhooks", "search_webhooks", "Buscar :count Webhooks", "search_webhook", "Buscar 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nuevo Webhook", "edit_webhook", "Editar Webhook", "created_webhook", "Webhook creado correctamente", "updated_webhook", "Webhook actualizado correctamente", _s16_74, "Webhook archivado correctamente", "deleted_webhook", "Webhook borrado correctamente", "removed_webhook", "Webhook eliminado correctamente", _s16_75, "Webhook restaurado correctamente", _s17_62, ":value webhooks archivados correctamente", _s16_76, ":value webhooks borrados correctamente", _s16_77, ":value webhooks eliminados correctamente", _s17_63, ":value webhooks restaurados correctamente", "api_tokens", "API Tokens", "api_docs", "Documentaci\xf3n de API", "search_tokens", "Buscar :count Tokens", "search_token", "Buscar 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "Nuevo Token", "edit_token", "Editar Token", "created_token", "Token creado correctamente", "updated_token", "Token actualizado correctamente", "archived_token", "Token archivado correctamente", "deleted_token", _s29_87, "removed_token", _s29_87, "restored_token", "Token restaurado correctamente", "archived_tokens", ":value tokens archivados correctamente", "deleted_tokens", ":value tokens borrados correctamente", "restored_tokens", ":value tokens restaurados correctamente", _s19_33, _s19_151, _s24_36, "Permitir a los clientes auto-registrarse en el portal", _s21_49, "Personalizar y Previsualizar", "email_invoice", "Enviar Factura por EMail", "email_quote", "Enviar Presupuesto", "email_credit", "Enviar Cr\xe9dito", "email_payment", "Pago por correo electr\xf3nico", _s20_50, "El cliente no tiene establecida una direcci\xf3n de email", "ledger", "Libro Mayor", "view_pdf", "Ver PDF", "all_records", "Todos los registros", "owned_by_user", "Propiedad del usuario", _s16_78, _s16_315, "contact_name", _s19_157, "use_default", "Usar por defecto", _s16_80, "Recordatorios Sin F\xedn", "number_of_days", "N\xfamero de d\xedas", _s23_19, "Configurar T\xe9rminos de Pago", "payment_term", "T\xe9rmino de Pago", _s16_81, "Nuevo T\xe9rmino de Pago", _s17_65, _s26_87, _s20_51, "T\xe9rminos de pago creados correctamente", _s20_52, "T\xe9rminos de pago actualizados correctamente", _s21_50, "T\xe9rminos de pago archivados correctamente", _s20_53, "T\xe9rmino de pago borrado correctamente", _s20_54, "T\xe9rmino de pago eliminado correctamente", _s21_51, "T\xe9rmino de pago restaurado correctamente", _s22_42, ":value t\xe9rminos de pago archivados correctamente", _s21_52, ":value t\xe9minos de pago borrados correctamente", _s22_43, ":value t\xe9minos de pago restaurados correctamente", "email_sign_in", "Ingresar con email", "change", "Cambiar", _s23_21, "\xbfCambiar al formato de m\xf3vil?", _s24_37, "\xbfCambiar al formato de escritorio?", "send_from_gmail", "Enviar desde Gmail", "reversed", "Revertida", "cancelled", "Cancelada", "credit_amount", _s19_152, "quote_amount", "Total de Presupuesto", "hosted", "Hospedado", "selfhosted", "Hospedaje Propio", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Ocultar Men\xfa", "show_menu", "Mostrar Men\xfa", _s18_51, "Parcialmente Reintegrada", _s16_83, "Buscar Documentos", "search_designs", "Buscar Dise\xf1os", "search_invoices", "Buscar Facturas", "search_clients", "Buscar Clientes", "search_products", "Buscar Productos", "search_quotes", "Buscar Presupuestos", "search_credits", "Buscar Cr\xe9ditos", "search_vendors", "Buscar Proveedores", "search_users", "Buscar Usuarios", _s16_84, "Buscar Tipos de Impuesto", "search_tasks", "Buscar Tareas", "search_settings", "Buscar Opciones", "search_projects", "Buscar Proyectos", "search_expenses", "Buscar Gastos", "search_payments", "Buscar Pagos", "search_groups", "Buscar Grupos", "search_company", "Buscar Compa\xf1\xeda", "search_document", "Buscar 1 Documento", "search_design", "Buscar 1 Dise\xf1o", "search_invoice", "Buscar 1 Factura", "search_client", "Buscar 1 Cliente", "search_product", "Buscar 1 Producto", "search_quote", "Buscar 1 Presupuesto", "search_credit", "Buscar 1 Cr\xe9dito", "search_vendor", _s18_206, "search_user", "Buscar 1 Usuario", "search_tax_rate", "Buscar 1 Tipo de Impuesto", "search_task", "Buscar 1 Tarea", "search_project", "Buscar 1 Proyecto", "search_expense", "Buscar 1 Gasto", "search_payment", "Buscar 1 Pago", "search_group", "Buscar 1 Grupo", "refund_payment", "Reembolsar Pago", _s17_69, "Factura cancelada correctamente", _s18_53, "Facturas canceladas correctamente", _s16_90, "Factura revertida correctamente", _s17_70, "Facturas revertidas correctamente", "reverse", "Revertir", "full_name", "Nombre completo", _s17_71, "Ciudad / Provincia / C.Postal", _s17_73, "C.Postal / Ciudad / Provincia", "custom1", "Primera personalizaci\xf3n", "custom2", "Segunda personalizaci\xf3n", "custom3", _s23_100, "custom4", "Cuarta Personalizaci\xf3n", "optional", "Opcional", "license", "Licencia", "purge_data", "Purgar Datos", _s16_91, "Datos de la empresa purgados correctamente", _s18_54, "Advertencia: Esto borrar\xe1 definitivamente sus datos, no hay deshacer.", "invoice_balance", "Balance de Factura", "age_group_0", "0 - 30 D\xedas", "age_group_30", "30 - 60 D\xedas", "age_group_60", "60 - 90 D\xedas", "age_group_90", "90 - 120 D\xedas", "age_group_120", "120+ D\xedas", "refresh", "Refrescar", "saved_design", "Dise\xf1o guardado correctamente", "client_details", "Detalles de Cliente", "company_address", "Direcci\xf3n de Compa\xf1\xeda", "invoice_details", "Detalles de Factura", "quote_details", "Detalles del Presupuesto", "credit_details", "Detalles de Cr\xe9dito", "product_columns", "Columnas de Producto", "task_columns", "Columnas de Tarea", "add_field", "A\xf1adir Campo", "all_events", _s17_228, "permissions", "Permisos", "none", "Ninguno", "owned", "Propietario", "payment_success", "Pago realizado con \xe9xito", "payment_failure", "Fallo de Pago", "invoice_sent", "Factura :count enviada", "quote_sent", "Prespuesto Enviado", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Factura Vista", "quote_viewed", "Presupuesto Visto", "credit_viewed", "Cr\xe9dito Visto", "quote_approved", "Presupuesto Aprobado", _s25_32, "Recibir Todas las Notificaciones", _s16_92, _s16_357, "apply_license", "Renovar licencia", "cancel_account", "Cancelar Cuenta", _s22_44, "Atenci\xf3n: Esta acci\xf3n eliminar\xe1 permanentemente tu cuenta y no se podr\xe1 deshacer.", "delete_company", "Borrar Compa\xf1\xeda", _s22_45, "Advertencia: esto eliminar\xe1 definitivamente su empresa, no hay deshacer.", "enabled_modules", "Modulos Activados", "converted_quote", "Presupuesto convertido correctamente", "credit_design", "Dise\xf1o de Cr\xe9dito", "includes", "Incluye", "header", "Cabecera", "load_design", "Cargar dise\xf1o", "css_framework", "CSS Framework", "custom_designs", _s22_132, "designs", "Dise\xf1os", "new_design", "Nuevo Dise\xf1o", "edit_design", "Editar Dise\xf1o", "created_design", "Dise\xf1o creado correctamente", "updated_design", "Dise\xf1o actualizado correctamente", "archived_design", "Dise\xf1o archivado correctamente", "deleted_design", "Dise\xf1o borrado correctamente", "removed_design", "Dise\xf1o eliminado correctamente", "restored_design", "Dise\xf1o restaurado correctamente", _s16_94, ":value dise\xf1os archivados correctamente", "deleted_designs", ":value dise\xf1os borrados correctamente", _s16_95, ":value dise\xf1os restaurados correctamente", "proposals", "Propuestas", "tickets", "Tickets", _s16_96, "Presupuestos Recurrentes", "recurring_tasks", _s18_207, _s18_55, "Administraci\xf3n de la Cuenta", "credit_date", _s16_358, "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Introducir el Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", "Cr\xe9dito creado correctamente", "updated_credit", "Cr\xe9dito actualizado correctamente", "archived_credit", "Cr\xe9dito archivado correctamente", "deleted_credit", "Cr\xe9ditos eliminados correctamente", "removed_credit", "Cr\xe9dito eliminado correctamente", "restored_credit", "Cr\xe9dito restaurado correctamente", _s16_98, ":count cr\xe9ditos archivados correctamente", "deleted_credits", ":count cr\xe9ditos eliminados correctamente", _s16_99, ":value cr\xe9ditos restaurados correctamente", "current_version", "Versi\xf3n Actual", "latest_version", "\xdaltima Versi\xf3n", "update_now", "Actualizar Ahora", _s26_19, "Una nueva versi\xf3n de la aplicaci\xf3n web est\xe1 disponible", _s16_100, _s24_110, "app_updated", "Actualizaci\xf3n completada correctamente", "learn_more", "Saber m\xe1s", "integrations", "Integraciones", "tracking_id", "Id seguimiento", _s17_75, _s17_76, "credit_footer", "Pie de P\xe1gina de Cr\xe9dito", "credit_terms", "T\xe9rminos de Cr\xe9dito", "new_company", "Nueva Compa\xf1\xeda", "added_company", "Compa\xf1\xeda a\xf1adida correctamente", "company1", "Compa\xf1\xeda Personalizada 1", "company2", "Compa\xf1\xeda Personalizada 2", "company3", "Compa\xf1\xeda Personalizada 3", "company4", "Compa\xf1\xeda Personalizada 4", "product1", "Producto Personalizado 1", "product2", "Producto Personalizado 2", "product3", "Producto Personalizado 3", "product4", "Producto Personalizado 4", "client1", _s23_91, "client2", _s23_92, "client3", _s23_93, "client4", _s23_94, "contact1", _s24_103, "contact2", _s24_104, "contact3", _s24_105, "contact4", _s24_106, "task1", "Tarea Personalizada 1", "task2", "Tarea Personalizada 2", "task3", "Tarea Personalizada 3", "task4", "Tarea Personalizada 4", "project1", "Proyecto Personalizado 1", "project2", "Proyecto Personalizado 2", "project3", "Proyecto Personalizado 3", "project4", "Proyecto Personalizado 4", "expense1", "Gasto Personalizado 1", "expense2", "Gasto Personalizado 2", "expense3", "Gasto Personalizado 3", "expense4", "Gasto Personalizado 4", "vendor1", "Proveedor Personalizado 1", "vendor2", "Proveedor Personalizado 2", "vendor3", "Proveedor Personalizado 3", "vendor4", "Proveedor Personalizado 4", "invoice1", "Factura Personalizada 1", "invoice2", "Factura Personalizada 2", "invoice3", "Factura Personalizada 3", "invoice4", "Factura Personalizada 4", "payment1", "Pago Personalizado 1", "payment2", "Pago Personalizado 2", "payment3", "Pago Personalizado 3", "payment4", "Pago Personalizado 4", "surcharge1", _s23_101, "surcharge2", _s23_102, "surcharge3", _s23_103, "surcharge4", _s23_104, "group1", _s21_153, "group2", _s21_154, "group3", _s21_155, "group4", _s21_156, "reset", "Restaurar", "number", "N\xfamero", "export", "Exportar", "chart", "Gr\xe1fica", "count", "Recuento", "totals", "Totales", "blank", "Vacio", "day", "D\xeda", "month", "Mes", "year", "A\xf1o", "subgroup", "Subgrupo", "is_active", "Activo", "group_by", "Agrupar por", "credit_balance", _s16_359, _s18_61, "\xdaltimo Acceso de Contacto", _s17_77, "Nombre Completo de Contacto", "contact_phone", "Tel\xe9fono del Contacto", _s21_53, _s24_103, _s21_54, _s24_104, _s21_55, _s24_105, _s21_56, _s24_106, _s17_79, "Calle de Envio", _s17_80, "Piso de Envio", "shipping_city", "Ciudad de Envio", "shipping_state", "Provincia de Envio", _s20_55, "Cod. Postal de Envio", _s16_130, "Pais de Envio", _s16_132, "Calle de Facturacion", _s16_133, "Piso de Facturacion", "billing_city", "Ciudad de Facturacion", "billing_state", "Provincia de Facturacion", _s19_36, "Cod. Postal de Facturacion", "billing_country", "Pais de Facturacion", "client_id", "Id del cliente", "assigned_to", "Asignado a", "created_by", _s16_360, "assigned_to_id", "Asignado a Id", "created_by_id", "Creado por Id", "add_column", "A\xf1adir Columna", "edit_columns", "Editar Columnas", "columns", "Columnas", "aging", "Envejecimiento", "profit_and_loss", _s20_153, "reports", "Informes", "report", "Informe", "add_company", "A\xf1adir Compa\xf1\xeda", "unpaid_invoice", "Factura Impagada", "paid_invoice", "Factura Pagada", _s16_134, "Presupuesto No Aprobado", "help", "Ayuda", "refund", "Reembolo", "refund_date", "Fecha de Reembolso", "filtered_by", "Filtrado por", "contact_email", "Email del Contacto", "multiselect", "Multiselecci\xf3n", "entity_state", "Estado", "verify_password", "Verificar Contrase\xf1a", "applied", "Aplicado", _s21_57, "Incluir errores recientes de los registros", _s30_8, "Hemos recibido tu mensaje e intentaremos responderte cuanto antes.", "message", "Mensaje", "from", "De", _s20_57, "Mostrar Detalles de Producto", _s25_34, "Incluir la descripci\xf3n y el coste en el desplegable del producto", _s20_59, "El renderizador de PDF requiere :version", _s18_64, "Ajustar Porcentaje de Tarifa", _s23_23, "Ajustar el porcentaje para dar cuenta de la tarifa", _s18_66, "Configurar Opciones", "support_forum", "Foro de soporte", "about", "Acerca de", "documentation", "Documentaci\xf3n", "contact_us", "Cont\xe1cte con Nosotros", "subtotal", "Subtotal", "line_total", "Total", "item", "Concepto", "credit_email", "Correo electr\xf3nico de cr\xe9dito", "iframe_url", "Website", "domain_url", "URL del Dominio", _s21_58, "La contrase\xf1a es demasiado corta", _s20_60, "La contrase\xf1a debe contener una letra may\xfascula y un n\xfamero", _s19_38, "Tareas del Portal Cliente", _s23_24, "Escritorio del Portal Cliente", _s20_61, "Por favor, introduzca un valor", "deleted_logo", "Logo borrado correctamente", "yes", "S\xed", "no", "No", "generate_number", "Generar N\xfamero", "when_saved", "Al Guardar", "when_sent", "Al Enviar", "select_company", "Seleccionar Compa\xf1\xeda", "float", "Flotante", "collapse", "Ocultar", "show_or_hide", "Mostrar/Ocultar", "menu_sidebar", "Men\xfa en Barra Lateral", "history_sidebar", "Hist\xf3rico en Barra Lateral", "tablet", "Tableta", "mobile", "M\xf3vil", "desktop", "Escritorio", "layout", "Dise\xf1o", "view", "Ver", "module", "Modulo", "first_custom", "Primera Personalizaci\xf3n", "second_custom", "Segunda Personalizaci\xf3n", "third_custom", _s23_100, "show_cost", "Mostrar Coste", _s17_82, "Mostrar Coste de Producto", "show_cost_help", "Mostrar un campo de coste de producto para seguir el margen/beneficio", _s21_59, "Mostrar Cantidad de Productos", _s26_21, "Mostrar un campo de cantidad de productos, de lo contrario predeterminar a uno", _s21_61, "Mostrar Cantidad de Factura", _s26_22, "Mostrar un campo de cantidad de art\xedculo de l\xednea; de lo contrario, el valor predeterminado es uno", _s21_63, "Mostrar Descuento de Producto", _s26_23, "Mostrar un campo de descuento en la l\xednea de art\xedculo", _s16_136, "Cantidad por Defecto", _s21_65, "Poner la cantidad de art\xedculos autom\xe1ticamente a uno", "one_tax_rate", "Un Tipo de Impuesto", "two_tax_rates", "Dos Tipos de Impuesto", "three_tax_rates", "Tres Tipos de Impuesto", _s16_138, "Impuesto por Defecto", "user", "Usuario", "invoice_tax", "Impuesto de Factura", "line_item_tax", "Impuesto de Art\xedculo", "inclusive_taxes", "Impuestos Inclusivos", _s17_84, "Tipos de Impuesto de Factura", "item_tax_rates", "Tipos de Impuesto de Art\xedculo", _s18_68, "Por favor seleccione un cliente", "configure_rates", "Configurar tipos", _s18_69, "Configurar Pasarelas", "tax_settings", _s26_88, _s18_71, "Tipos de Impuesto", "accent_color", "Color de Acento", "switch", "Cambiar", _s19_40, "Lista separada por comas", "options", "Opciones", _s16_140, "Texto de una sola l\xednea", "multi_line_text", "Texto de l\xedneas m\xfaltiples", "dropdown", "Desplegable", "field_type", "Tipo de Campo", _s27_35, "Se ha enviado un email de recuperaci\xf3n de contrase\xf1a", "submit", "Enviar", _s16_142, "Recuperar Contrase\xf1a", "late_fees", "Cargos por pagos atrasados", "credit_number", "C\xf3digo de Cr\xe9dito", "payment_number", "N\xba de Pago", "late_fee_amount", "Cargo por pago atrasado", _s16_143, "Porcentaje por pago atrasado", "schedule", "Programar", "before_due_date", "Antes de la fecha de vencimiento", "after_due_date", "Despu\xe9s de la fecha de vencimiento", _s18_73, "Despu\xe9s de la fecha de la factura", "days", "D\xedas", "invoice_email", "Email de Facturas", "payment_email", "Email de Pagos", "partial_payment", "Pago Parcial", "payment_partial", "Pago Parcial", _s21_66, "Correo electr\xf3nico de pago parcial", "quote_email", "Email de Presupuestos", _s16_145, "Recordatorio Sin F\xedn", _s16_147, "Filtrado por usuario", "administrator", "Administrador", _s18_74, "Permitir que administre usuarios, cambie configuraci\xf3n y modifique cualquier registro", "user_management", "Administraci\xf3n de Usuarios", "users", "Usuarios", "new_user", "Nuevo Usuario", "edit_user", "Editar Usario", "created_user", "Usuario creado con \xe9xito", "updated_user", "Usario actualizado correctamente", "archived_user", "Usuario archivado correctamente", "deleted_user", "Usario eliminado correctamente", "removed_user", "Usuario eliminado correctamente", "restored_user", "Usuario restaurado correctamente", "archived_users", ":value usuarios archivados correctamente", "deleted_users", ":value usuarios borrados correctamente", "removed_users", ":value usuarios eliminados correctamente", "restored_users", ":value usuarios restaurados correctamente", _s16_149, _s21_165, "invoice_options", _s19_153, _s17_86, "Ocultar el valor Pagado a la Fecha", _s22_52, "Solo mostrar\xe1 el valor Pagado a la Fecha en sus Facturas cuando se ha recibido un Pago.", _s23_26, "Documentos anexados", _s28_20, "Incluye imagenes adjuntas en la factura", _s16_151, "Mostrar Cabecera en", _s16_152, "Mostrar Pie en", "first_page", "Primera p\xe1gina", "all_pages", _s17_229, "last_page", "\xdaltima p\xe1gina", "primary_font", "Fuente primaria", "secondary_font", "Fuente secundaria", "primary_color", "Color Primario", "secondary_color", _s16_361, "page_size", "Tama\xf1o de Pagina", "font_size", "Tama\xf1o de Letra", "quote_design", "Dise\xf1os del presupuesto", "invoice_fields", _s17_230, "product_fields", _s18_208, "invoice_terms", _s23_98, "invoice_footer", "Pie de P\xe1gina de la Factura", "quote_terms", "T\xe9rminos del Presupuesto", "quote_footer", "Pie del Presupuesto", _s18_75, "Auto Email", _s23_27, "Autom\xe1ticamente enviar por email facturas recurrentes cuando sean creadas.", _s18_76, "Auto Archivar", _s23_28, "Autom\xe1ticamente archivar presupuestos cuando sean convertidos.", _s18_77, "Auto Convertir", _s23_29, "Convertir un Presupuesto en Factura autom\xe1ticamente cuando lo apruebe el cliente.", _s17_88, "Configuraci\xf3n de Flujos", "freq_daily", "Diariamente", "freq_weekly", "Semanal", "freq_two_weeks", "Dos semanas", "freq_four_weeks", "Cuatro semanas", "freq_monthly", "Mensual", "freq_two_months", "Dos meses", _s17_90, "Tres meses", _s16_153, "Cuatro meses", "freq_six_months", "Seis meses", "freq_annually", "Anual", "freq_two_years", "Dos A\xf1os", _s16_154, "Tres A\xf1os", "never", "Nunca", "company", "Empresa", _s17_91, _s17_231, "charge_taxes", _s16_362, "next_reset", "Proximo Reinicio", "reset_counter", _s18_189, _s16_155, _s18_209, "number_padding", "Relleno num\xe9rico", "general", "General", "surcharge_field", "Campo de recargo", "company_field", _s16_363, "company_value", "Valor de compa\xf1\xeda", "credit_field", "Campo de cr\xe9dito", "invoice_field", "Campo de Factura", _s17_93, "Recargo de Factura", "client_field", "Campo de Cliente", "product_field", "Campo de Producto", "payment_field", "Campo de pago", "contact_field", "Campo de Contacto", "vendor_field", "Campo de Proveedor", "expense_field", "Campo de Gasto", "project_field", "Campo de Proyecto", "task_field", "Campo de Tarea", "group_field", "Campo de grupo", "number_counter", "Contador de n\xfameros", "prefix", "Prefijo", "number_pattern", "Patr\xf3n num\xe9rico", "messages", "Mensajes", "custom_css", "CSS personalizado", _s17_95, _s24_97, _s16_157, "Mostrar en PDF", _s21_68, "Mostrar la firma del cliente en el PDF de la factura/presupuesto", _s25_40, "Mostrar aceptaci\xf3n de t\xe9rminos de la factura", _s30_9, "Requerir que el cliente confirme que acepta los t\xe9rminos de la factura.", _s23_30, "Mostrar aceptaci\xf3n de t\xe9rminos del presupuesto", _s28_21, "Requerir que el cliente confirme que acepta los t\xe9rminos del presupuesto.", _s25_41, "Firma de la factura", _s30_10, "Requerir que el cliente proporcione su firma.", _s23_31, "Firma del presupuesto.", _s22_54, _s32_38, _s27_36, "Habilite para seleccionar una contrase\xf1a para cada contacto. Si una contrase\xf1a esta especificada, se le ser\xe1 solicitada al contacto para acceder a sus facturas.", "authorization", "Autorizaci\xf3n", "subdomain", "Subdominio", "domain", "Dominio", "portal_mode", "Modo portal", "email_signature", _s18_210, _s24_38, _s118_, "plain", "Plano", "light", "Claro", "dark", "Oscuro", "email_design", _s16_364, "attach_pdf", "Adjuntar PDF", _s16_158, "Adjuntar Documentos", "attach_ubl", "Adjuntar UBL", "email_style", "Estilo de correo electr\xf3nico", _s19_42, _s16_365, "reply_to_email", "Direccion Email de Respuesta", "reply_to_name", "Nombre de Responder a", "bcc_email", "BCC Email", "processed", "Procesado", "credit_card", "Tarjeta de Cr\xe9dito", "bank_transfer", "Transferencia bancaria", "priority", "Prioridad", "fee_amount", "Importe de la cuota", "fee_percent", "Porcentaje de tarifa", "fee_cap", "L\xedmite de tarifa", "limits_and_fees", "L\xedmites/Tarifas", "enable_min", "Activar M\xednimo", "enable_max", "Activar M\xe1ximo", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "M\xednimo", "max", "M\xe1ximo", _s19_43, "Logotipos de tarjetas aceptadas", "credentials", "Credenciales", "update_address", _s20_154, _s19_45, "Actualizar la direccion del cliente con los datos provistos", "rate", "Precio", "tax_rate", "Impuesto", "new_tax_rate", "Nuevo Impuesto", "edit_tax_rate", "Editar impuesto", _s16_160, "Impuesto creado correctamente", _s16_161, "Impuesto actualizado correctamente", _s17_98, "Impuesto archivado correctamente", _s16_162, "Impuesto borrado correctamente", _s17_99, "Impuesto restaurado correctamente", _s18_78, ":value tipos impositivos archivados correctamente", _s17_100, ":value tipos impositivos borrados correctamente", _s18_79, ":value tipos impositivos restaurados correctamente", "fill_products", "Auto-rellenar Productos", _s18_80, _s74_0, "update_products", "Auto-actualizar Productos", _s20_65, "Actualizar una Factura autom\xe1ticamente actualizar\xe1 los Productos", _s16_163, "Convertir Productos", _s21_69, "Convertir autom\xe1ticamente los precios de los productos a la divisa del cliente", "fees", "Cargos", "limits", "Limites", "provider", "Proveedor", "company_gateway", "Pasarela de pago", _s16_165, "Pasarelas de pago", _s19_46, "Nueva pasarela", _s20_66, "Editar pasarela", _s23_32, "Pasarela creada correctamente", _s23_33, "Pasarela actualizada correctamente", _s24_39, "Pasarela archivada correctamente", _s23_34, "Pasarela borrada correctamente", _s24_40, "Pasarela restaurada correctamente", _s25_43, ":value pasarelas archivadas correctamente", _s24_41, ":value pasarelas borradas correctamente", _s25_44, ":value pasarelas restauradas correctamente", _s16_167, "Seguir editando", "discard_changes", "Descartar los cambios", "default_value", "Valor por defecto", "disabled", "Deshabilitado", "currency_format", "Formato de moneda", _s21_70, "Primer d\xeda de la semana", _s23_35, "Primer mes del a\xf1o", "sunday", "Domingo", "monday", "Lunes", "tuesday", "Martes", "wednesday", "Mi\xe9rcoles", "thursday", "Jueves", "friday", "Viernes", "saturday", "S\xe1bado", "january", "Enero", "february", "Febrero", "march", "Marzo", "april", "Abril", "may", "Mayo", "june", "Junio", "july", "Julio", "august", "Agosto", "september", "Septiembre", "october", "Octubre", "november", "Noviembre", "december", "Diciembre", "symbol", "S\xedmbolo", "ocde", "C\xf3digo", "date_format", "Formato de fecha", "datetime_format", "Formato de fecha y hora", "military_time", "24 Horas", _s18_81, "Formato de 24 Horas", "send_reminders", "Enviar recordatorios", "timezone", "Zona horaria", _s19_47, "Fitlrado por Proyecto", _s17_101, _s18_194, _s19_49, "Filtrado por Factura", _s18_82, _s20_140, _s18_84, "Filtrado por proveedor", "group_settings", "Opciones de Grupo", "group", "Grupo", "groups", "Grupos", "new_group", "Nuevo grupo", "edit_group", "Editar grupo", "created_group", "Grupo creado correctamente", "updated_group", "Grupo actualizado correctamente", "archived_groups", ":value grupos archivados correctamente", "deleted_groups", ":value grupos borrados correctamente", "restored_groups", ":value grupos restaurados correctamente", "archived_group", "Grupo archivado correctamente", "deleted_group", "Grupo borrado correctamente", "restored_group", "Grupo restaurado correctamente", "upload_logo", "Subir Logo", "uploaded_logo", "Logo subido", "logo", "Logo", "saved_settings", "Ajustes guardados", _s16_169, "Configuraci\xf3n de Producto", "device_settings", "Opciones de dispositivo", "defaults", "Ajustes Predefinidos", "basic_settings", _s20_155, _s17_103, _s22_133, "company_details", _s22_134, "user_details", _s19_154, "localization", "Localizaci\xf3n", "online_payments", "Pagos Online", "tax_rates", "Impuestos", "notifications", "Notificaciones", "import_export", _s17_222, "custom_fields", _s21_146, "invoice_design", "Dise\xf1o de Factura", "buy_now_buttons", "Botones de Comprar Ahora", "email_settings", _s36_47, _s23_37, _s26_89, _s22_55, "Tarjetas de Cr\xe9dito y Bancos", _s19_51, _s22_135, "price", "Precio", "email_sign_up", "Registrarse con Email", "google_sign_up", "Registrarse con Google", _s27_40, "\xa1Gracias por su compra!", "redeem", "Redimir", "back", "Atr\xe1s", "past_purchases", "Compras Pasadas", _s19_53, "Suscripci\xf3n anual", "pro_plan", "Plan Pro", "enterprise_plan", "Plan Enterprise", "count_users", ":count usuarios", "upgrade", "Mejorar", _s25_45, "Introduce tu nombre", _s24_42, "Introduce tu apellido", _s33_21, "Por favor, acepta los t\xe9rminos de servicio y la pol\xedtica de privacidad para crear una cuenta", "i_agree_to_the", "Estoy de acuerdo con", _s16_171, "T\xe9rminos de servicio", "privacy_policy", "Pol\xedtica de Privacidad", "sign_up", "Registrarse", "account_login", "Inicio de Sesi\xf3n con su Cuenta", "view_website", "Ver Sitio Web", "create_account", "Crear Cuenta", "email_login", "Iniciar sesi\xf3n con correo electr\xf3nico", "create_new", "Crear Nuevo", _s18_86, "No se han seleccionado registros", _s21_73, "Guarda o cancela tus cambios", "download", "Descargar", _s27_41, "Requiere plan 'enterprise'", "take_picture", "Tomar foto", "upload_file", "Subir archivo", "document", "Documento", "documents", "Documentos", "new_document", "Nuevo documento", "edit_document", "Editar documento", _s17_105, "Documento subido satisfactoriamente", _s16_173, "Documento actualizado satisfactoriamente", _s17_106, "Documento archivado satisfactoriamente", _s16_174, "Documento borrado satisfactoriamente", _s17_107, "Documento restaurado satisfactoriamente", _s18_88, ":value documentos archivados correctamente", _s17_108, ":value documentos borrados correctamente", _s18_89, ":value documentos restaurados correctamente", "no_history", "Sin historial", "expense_date", "Fecha", "pending", "Pendiente", _s16_175, "Registrado", _s16_176, "Pendiente", _s16_177, "Facturado", "converted", "Modificada", _s24_44, _s31_42, "exchange_rate", "Tipo de Cambio", _s16_178, _s16_366, "mark_paid", "Marcar como pagado", "category", "Categor\xeda", "address", "Direcci\xf3n", "new_vendor", "Nuevo Proveedor", "created_vendor", "Proveedor creado correctamente", "updated_vendor", "Proveedor actualizado correctamente", "archived_vendor", "Proveedor archivado correctamente", "deleted_vendor", "Proveedor eliminado correctamente", "restored_vendor", "Proveedor restaurado correctamente", _s16_179, _s45_9, "deleted_vendors", _s45_9, _s16_180, ":value proveedores restaurados correctamente", "new_expense", "Nuevo Gasto", "created_expense", _s26_90, "updated_expense", _s31_43, _s16_181, _s29_83, "deleted_expense", _s27_94, _s16_182, "Gasto restaurado correctamente", _s17_109, _s31_44, _s16_183, _s29_84, _s17_110, ":value gastos restaurados correctamente", "copy_shipping", "Copiar Env\xedo", "copy_billing", "Copia Facturaci\xf3n", "design", "Dise\xf1o", _s21_74, "Fallo al buscar registro", "invoiced", "Facturado", "logged", "Registrado", "running", "Ejecutando", "resume", "Reanudar", "task_errors", "Por favor corrija cualquier tiempo que se solape con otro", "start", "Iniciar", "stop", "Parar", "started_task", "Tarea empezada correctamente", "stopped_task", "Tarea parada correctamente", "resumed_task", "La tarea se reanud\xf3 correctamente", "now", "Ahora", _s16_184, "Tareas programadas", "timer", "Temporizador", "manual", "Manual", "budgeted", "Presupuestado", "start_time", "Hora de Inicio", "end_time", "Hora de Fin", "date", "Fecha", "times", "Tiempos", "duration", "Duraci\xf3n", "new_task", "Nueva tarea", "created_task", "Tarea creada correctamente", "updated_task", "Tarea actualizada correctamente", "archived_task", "Tarea archivada correctamente", "deleted_task", "Tarea borrada correctamente", "restored_task", "Tarea restaurada correctamente", "archived_tasks", ":count tareas archivadas correctamente", "deleted_tasks", ":count tareas borradas correctamente", "restored_tasks", ":value tareas restauradas correctamente", _s19_55, "Por favor introduce un nombre", "budgeted_hours", _s20_156, "created_project", "Proyecto creado correctamente", "updated_project", "Proyecto actualizado correctamente", _s16_186, "Proyecto archivado correctamente", "deleted_project", "Proyecto eliminado correctamente", _s16_187, "Proyecto restaurado correctamente", _s17_111, ":count proyectos archivados correctamente", _s16_188, ":count proyecto eliminados correctamente", _s17_112, ":value proyectos restaurados correctamente", "new_project", "Nuevo Proyecto", _s27_45, "\xa1Gracias por utilizar nuestra app!", "if_you_like_it", "Si te gusta por favor", "click_here", "pulse aqui", _s18_90, "Pulsa aqu\xed", "to_rate_it", "para valorar.", "average", "Promedio", "unapproved", "No aprobado", _s30_15, "Por favor, autenticarse para cambiar esta configuraci\xf3n", "locked", "Bloqueado", "authenticate", "Autenticaci\xf3n", _s19_57, "Por favor, autenticarse", _s24_46, "Autenticaci\xf3n biom\xe9trica", "footer", "Pie", "compare", "Comparar", "hosted_login", "Acceso alojado", "selfhost_login", "Acceso auto alojado", "google_sign_in", "Ingresar con Google", "today", "Hoy", "custom_range", "Rango personalizado", "date_range", "Rango de fechas", "current", "Actual", "previous", "Previo", "current_period", "Periodo Actual", _s17_113, _s22_136, "previous_period", "Periodo Anterior", "previous_year", "A\xf1o Anterior", "compare_to", "Comparar con", "last7_days", "\xdaltimos 7 d\xedas", "last_week", "\xdaltima Semana", "last30_days", "\xdaltimos 30 d\xedas", "this_month", "Este Mes", "last_month", "\xdaltimo Mes", "this_year", "Este A\xf1o", "last_year", "\xdaltimo A\xf1o", "custom", "Personalizado", _s16_189, "Clonar a Factura", "clone_to_quote", "Clonar a Presupuesto", "clone_to_credit", "Clonar a Cr\xe9dito", "view_invoice", "Ver Factura", "convert", "Convertir", "more", "M\xe1s", "edit_client", "Editar Cliente", "edit_product", "Editar Producto", "edit_invoice", "Editar Factura", "edit_quote", "Editar Presupuesto", "edit_payment", "Editar Pago", "edit_task", "Editar Tarea", "edit_expense", "Editar Gasto", "edit_vendor", _s16_367, "edit_project", "Editar Proyecto", _s20_68, "Editar Presupuesto Recurrente", "billing_address", "Direcci\xf3n de Facturaci\xf3n", _s16_191, "Direccion de Envio", "total_revenue", _s16_368, "average_invoice", _s23_99, "outstanding", _s18_211, "invoices_sent", _s24_111, "active_clients", _s16_369, "close", "Cerrar", "email", "Email", "password", "Contrase\xf1a", "url", "URL", "secret", "Secreto", "name", "Nombre", "logout", "Cerrar sesi\xf3n", "login", "Iniciar Sesi\xf3n", "filter", "Filtrar", "sort", "Orden", "search", "B\xfasqueda", "active", "Activo", "archived", "Archivado", "deleted", "Eliminado", "dashboard", "Inicio", "archive", "Archivar", "delete", "Eliminar", "restore", "Restaurar", _s16_193, "Actualizaci\xf3n Completa", _s23_38, "Por favor introduce tu email", _s26_32, "Por favor introduce tu contrase\xf1a", _s21_77, "Por favor introduce tu URL", _s26_34, "Por favor introduce un c\xf3digo de producto", "ascending", "Ascendente", "descending", "Descendente", "save", "Guardar", _s17_115, "Ha ocurrido un error", "paid_to_date", "Pagado", "balance_due", "Pendiente", "balance", "Saldo", "overview", "Resumen", "details", "Detalles", "phone", "Tel\xe9fono", "website", "P\xe1gina Web", "vat_number", "NIF/CIF", "id_number", "N\xba de identificaci\xf3n", "create", "Crear", _s19_59, ":value copiado al portapapeles", "error", "Error", _s16_195, "No se puede abrir", "contacts", "Contactos", "additional", "Adicional", "first_name", "Nombre", "last_name", "Apellidos", "add_contact", "A\xf1adir Contacto", "are_you_sure", "\xbfEst\xe1 Seguro?", "cancel", "Cancelar", "ok", "Ok", "remove", "Borrar", _s16_197, "El email es inv\xe1lido", "product", "Producto", "products", "Productos", "new_product", "Nuevo Producto", "created_product", "Producto creado correctamente", "updated_product", "Producto actualizado correctamente", _s16_199, "Producto archivado correctamente", "deleted_product", "Producto eliminado correctamente", _s16_200, "Producto restaurado correctamente", _s17_117, ":count productos archivados correctamente", _s16_201, ":count productos eliminados correctamente", _s17_118, ":value productos restaurados correctamente", "product_key", "Producto", "notes", "Notas", "cost", "Coste", "client", "Cliente", "clients", "Clientes", "new_client", "Nuevo Cliente", "created_client", "Cliente creado correctamente", "updated_client", "Cliente actualizado correctamente", "archived_client", "Cliente archivado correctamente", _s16_202, ":count clientes archivados correctamente", "deleted_client", "Cliente eliminado correctamente", "deleted_clients", ":count clientes eliminados correctamente", "restored_client", "Cliente restaurada correctamente", _s16_203, ":value clientes restaurados correctamente", "address1", "Calle", "address2", "Apto./Ofc.", "city", "Ciudad", "state", "Estado/Provincia", "postal_code", "C\xf3digo Postal", "country", "Pais", "invoice", "Factura", "invoices", "Facturas", "new_invoice", "Nueva Factura", "created_invoice", "Factura creada correctamente", "updated_invoice", "Factura actualizada correctamente", _s16_204, "Factura archivada correctamente", "deleted_invoice", "Factura eliminada correctamente", _s16_205, "Factura restaurada correctamente", _s17_119, ":count facturas archivadas correctamente", _s16_206, ":count facturas eliminadas correctamente", _s17_120, ":value facturas restauradas correctamente", "emailed_invoice", "Factura enviada correctamente", "emailed_payment", "Pago enviado correctamente por correo electr\xf3nico", "amount", "Cantidad", "invoice_number", _s17_232, "invoice_date", _s16_370, "discount", "Descuento", "po_number", "N\xfamero de Pedido", "terms", "T\xe9rminos", "public_notes", "Notas", "private_notes", "Notas Privadas", "frequency", "Frecuencia", "start_date", "Fecha de Inicio", "end_date", "Fecha de Fin", "quote_number", "N\xfamero de Presupuesto", "quote_date", "Fecha Presupuesto", "valid_until", "V\xe1lido hasta", "items", "Art\xedculos", "partial_deposit", _s16_343, "description", "Descripci\xf3n", "unit_cost", "Precio Unitario", "quantity", "Cantidad", "add_item", "A\xf1adir Art\xedculo", "contact", "Contacto", "work_phone", "Tel\xe9fono", "total_amount", "Cantidad Total", "pdf", "PDF", "due_date", "Vencimiento", _s16_207, "Fecha de vencimiento parcial", "status", "Estado", _s17_121, "Estado de Factura", "quote_status", "Estado de Presupuesto", _s22_56, "Pulsa + para a\xf1adir un art\xedculo", _s22_58, "Pulsa + para a\xf1adir tiempo", "count_selected", ":count seleccionado", "total", "Total", "percent", "Porcentaje", "edit", "Editar", "dismiss", "Descartar", _s20_70, "Por favor selecciona una fecha", _s22_59, "Por favor selecciona un cliente", _s24_48, "Por favor, seleccione una factura", "task_rate", "Tasa de tareas", "settings", "Configuraci\xf3n", "language", "Idioma", "currency", "Divisa", "created_at", _s17_233, "created_on", "Creado el", "updated_at", "Actualizado", "tax", "Impuesto", _s30_17, "Por favor introduce un n\xfamero de factura", _s27_49, "Por favor introduce un n\xfamero de presupuesto", "past_due", "Vencido", "draft", "Borrador", "sent", "Enviada", "viewed", "Vistas", "approved", "Aprobados", "partial", _s16_343, "paid", "Pagado", "mark_sent", "Marcar como Enviado", _s22_61, _s42_27, _s22_62, _s42_27, _s23_40, _s45_10, _s23_41, _s45_10, "done", "Hecho", _s37_18, "Por favor introduce un cliente o nombre de contacto", "dark_mode", "Modo Oscuro", _s27_51, "Reinicia la app para aplicar el cambio", "refresh_data", "Actualizar Datos", "blank_contact", "Contacto Nuevo", "activity", "Actividad", _s16_209, "No se han encontrado registros", "clone", "Clonar", "loading", "Cargando", "industry", "Sector", "size", "Tama\xf1o", "payment_terms", _s16_371, "payment_date", "Fecha de Pago", "payment_status", "Estado de Pago", _s16_211, "Pendiente", _s16_212, "Anulado", _s16_213, "Fallido", _s16_214, "Completado", _s16_215, _s24_94, _s16_216, "Reembolsado", _s17_122, "Sin Aplicar", _s17_123, "Sin aplicar parcialmente", "net", "Neto", "client_portal", "Portal Cliente", "show_tasks", "Mostrar tareas", "email_reminders", "Emails Recordatorios", "enabled", "Habilitado", "recipients", "Destinatarios", "initial_email", "Email Inicial", "first_reminder", _s19_155, "second_reminder", _s20_157, "third_reminder", _s19_156, "reminder1", _s19_155, "reminder2", _s20_157, "reminder3", _s19_156, "template", "Plantilla", "send", "Enviar", "subject", "Asunto", "body", "Cuerpo", "send_email", "Enviar Email", "email_receipt", "Enviar Recibo de Pago al cliente", "auto_billing", "Auto facturaci\xf3n", "button", "Bot\xf3n", "preview", "Vista Previa", "customize", "Personalizar", "history", "Historial", "payment", "Pago", "payments", "Pagos", "refunded", "Reembolsado", "payment_type", "Tipo de Pago", _s21_79, _s25_95, "enter_payment", "Agregar Pago", "new_payment", "Introduzca el Pago", "created_payment", "Pago creado correctamente", "updated_payment", "Pago actualizado correctamente", _s16_217, "Pago archivado correctamente", "deleted_payment", "Pago eliminado correctamente", _s16_218, "Pago restaurado correctamente", _s17_124, ":count pagos archivados correctamente", _s16_219, ":count pagos eliminados correctamente", _s17_125, ":value pagos restaurados correctamente", "quote", "Presupuesto", "quotes", "Presupuestos", "new_quote", "Nuevo Presupuesto", "created_quote", "Presupuesto creado correctamente", "updated_quote", "Presupuesto actualizado correctamente", "archived_quote", "Presupuesto archivado correctamente", "deleted_quote", "Presupuesto eliminado correctamente", "restored_quote", "Presupuesto restaurada correctamente", "archived_quotes", ":count Presupuestos archivados correctamente", "deleted_quotes", ":count Presupuestos eliminados correctamente", "restored_quotes", ":value presupuestos restaurados correctamente", "expense", "Gasto", "expenses", "Gastos", "vendor", "Proveedor", "vendors", "Proveedores", "task", "Tarea", "tasks", "Tareas", "project", "Proyecto", "projects", "Proyectos", "activity_1", _s29_85, "activity_2", _s32_39, "activity_3", ":user borr\xf3 el cliente :client", "activity_4", _s33_42, "activity_5", _s35_46, "activity_6", ":user ha enviado por mail la factura :invoice de :client a :contact", "activity_7", ":contact ha visto la factura :invoice: de :client", "activity_8", _s33_42, "activity_9", ":user borr\xf3 la factura :invoice", "activity_10", ":contact ingres\xf3 el pago :payment por importe de :payment_amount en la factura N\xba :invoice de :client", "activity_11", ":user actualiz\xf3 el Pago :payment", "activity_12", _s30_73, "activity_13", ":user borr\xf3 el pago :payment", "activity_14", ":user introdujo :credit cr\xe9dito", "activity_15", ":user actualiz\xf3 :credit cr\xe9dito", "activity_16", ":user archiv\xf3 :credit cr\xe9dito", "activity_17", ":user deleted :credit cr\xe9dito", "activity_18", _s33_46, "activity_19", ":user actualiz\xf3 el presupuesto :quote", "activity_20", ":user envi\xf3 presupuesto :quote para :client a :contact", "activity_21", _s34_40, "activity_22", ":user archiv\xf3 el presupuesto :quote", "activity_23", _s33_46, "activity_24", ":user restaur\xf3 el presupuesto :quote", "activity_25", ":user restaur\xf3 la factura :invoice", "activity_26", _s33_43, "activity_27", _s31_45, "activity_28", ":user restaur\xf3 :credit cr\xe9dito", "activity_29", ":contact ha aprovado el presupuesto :quote para :client", "activity_30", _s30_74, "activity_31", _s33_44, "activity_32", _s33_45, "activity_33", _s34_39, "activity_34", ":user cre\xf3 el gasto :expense", "activity_35", _s31_46, "activity_36", _s31_47, "activity_37", _s32_40, "activity_39", ":user cancelo :payment_amount del pago :payment", "activity_40", ":user reembols\xf3 :adjustment de :payment_amount del pago :payment", "activity_41", "Fallo el pago de :payment_amount para (:payment)", "activity_42", _s25_96, "activity_43", _s30_75, "activity_44", _s28_96, "activity_45", _s28_97, "activity_46", _s29_86, "activity_47", ":user actualiz\xf3 el gasto :expense", "activity_48", ":user usuario creado :user", "activity_49", ":user usuario actualizado :user", "activity_50", ":user usuario archivado :user", "activity_51", ":user usuario borrado :user", "activity_52", ":user usuario restaurado :user", "activity_53", ":user marcado enviado :invoice", "activity_54", ":user reabri\xf3 el ticket :ticket", "activity_55", _s36_48, "activity_56", ":user vio el ticket :ticket", "activity_57", "El sistema fall\xf3 al enviar la factura :invoice", "activity_58", ":user revirti\xf3 la factura :invoice", "activity_59", ":user cancel\xf3 la factura :invoice", "activity_60", _s34_40, "activity_61", ":user actualiz\xf3 el cliente :cliente", "activity_62", ":user actualiz\xf3 el proveedor :vendor", "activity_63", ":user envi\xf3 por email el primer recordatorio de la factura :invoice a :contact", "activity_64", ":user envi\xf3 por email el segundo recordatorio de la factura :invoice a :contact", "activity_65", ":user envi\xf3 por email el tercer recordatorio de la factura :invoice a :contact", "activity_66", ":user envi\xf3 por email el recordatorio sin f\xedn de la factura :invoice a :contact", "activity_80", ":user cre\xf3 la suscripci\xf3n :subscription", "activity_81", ":user actualiz\xf3 la suscripci\xf3n :subscription", "activity_82", ":user archiv\xf3 la suscripci\xf3n :subscription", "activity_83", ":user elimin\xf3 la suscripci\xf3n :subscription", "activity_84", ":user restaur\xf3 la suscripci\xf3n :subscription", _s17_126, "Password de un solo uso", "emailed_quote", "Presupuesto enviado correctamente", "emailed_credit", "Cr\xe9dito enviado correctamente", _s20_72, "Presupuesto marcado como enviado correctamente", _s21_81, "Marcar cr\xe9dito como enviado", "expired", "Expirada", "all", "Todo", "select", "Seleccionar", _s22_63, "Multiselecci\xf3n en pulsaci\xf3n prolongada", "custom_value1", _s19_137, "custom_value2", _s19_137, "custom_value3", _s21_149, "custom_value4", _s21_150, _s18_91, "Estilo de Email Personalizado", _s24_53, "Mensaje de Escritorio Personalizado", _s29_36, "Mensaje de Factura Impagada Personalizada", _s27_56, "Mensaje de Factura Pagada Personalizada", _s31_18, "Mensaje de Presupuesto no Aprobado Personalizado", "lock_invoices", "Bloquear Facturas", "translations", "Traducciones", _s19_60, "Patr\xf3n del N\xfamero de Tarea", _s19_62, "Contador del N\xfamero de Tarea", _s22_65, "Patr\xf3n del N\xfamero de Gasto", _s22_67, "Contador del N\xfamero de Gasto", _s21_82, "Patr\xf3n del N\xfamero de Proveedor", _s21_84, "Contador del N\xfamero de Proveedor", _s21_86, "Patr\xf3n del N\xfamero de Ticket", _s21_88, "Contador del N\xfamero de Ticket", _s22_69, "Patr\xf3n del N\xfamero de Pago", _s22_71, "Contador del N\xfamero de Pago", _s22_73, "Patr\xf3n del N\xfamero de Factura", _s22_75, "Contador del N\xfamero de Factura", _s20_73, "Patr\xf3n del N\xfamero de Presupuesto", _s20_75, "Contador del N\xfamero de Presupuesto", _s21_90, _s28_98, _s21_92, _s30_76, _s21_94, _s28_98, _s21_95, _s30_76, _s18_93, "Resetear Fecha del Contador", "counter_padding", "Relleno del Contador", _s28_56, "Compartir la numeraci\xf3n para presupuesto y factura", _s18_95, "Nombre de Impuesto por Defecto 1", _s18_97, "Tasa de Impuesto por Defecto 1", _s18_99, "Nombre de Impuesto por Defecto 2", _s18_101, "Tasa de Impuesto por Defecto 2", _s18_103, "Nombre de Impuesto por Defecto 3", _s18_105, "Tasa de Impuesto por Defecto 3", _s21_96, "Asunto de Email de Factura", _s19_64, "Asunto de Email de Presupuesto", _s21_98, "Asunto de Email de Pago", _s29_38, "Asunto de Email de Pago Parcial", "show_table", "Mostrar Tabla", "show_list", "Mostrar Lista", "client_city", "Ciudad del Cliente", "client_state", "Provincia del Cliente", "client_country", "Pa\xeds del Cliente", _s16_220, "El Cliente est\xe1 Activo", "client_balance", "Balance del Cliente", "client_address1", "Calle del Cliente", "client_address2", "Bloq/Pta del Cliente", "vendor_address1", "Calle de Proveedor", "vendor_address2", "Bloq/Pta del Proveedor", _s24_55, "Calle de Env\xedo del Cliente", _s24_56, "Bloq/Pta de Env\xedo del Cliente", "type", "Tipo", "invoice_amount", _s18_212, _s16_224, "Fecha L\xedmite de Pago", "tax_rate1", "Impuesto 1", "tax_rate2", "Impuesto 2", "tax_rate3", "Impuesto 3", "auto_bill", "Facturaci\xf3n Autom\xe1tica", "archived_at", "Archivado el", "has_expenses", "Tiene Gastos", "custom_taxes1", "Impuestos Personalizados 1", "custom_taxes2", "Impuestos Personalizados 2", "custom_taxes3", "Impuestos Personalizados 3", "custom_taxes4", "Impuestos Personalizados 4", _s17_128, _s23_101, _s17_129, _s23_102, _s17_130, _s23_103, _s17_131, _s23_104, "is_deleted", "Borrado", "vendor_city", _s20_159, "vendor_state", "Provincia del Proveedor", "vendor_country", _s18_213, "is_approved", "Aprobada", "tax_name", _s18_214, "tax_amount", "Total Impuestos", "tax_paid", "Impuestos Pagados", "payment_amount", "Valor del Pago", "age", "Edad", "is_running", "Corriendo", "time_log", "Registro Temporal", "bank_id", "Banco", _s19_66, "ID de la Categor\xeda de Gasto", _s16_225, "Categor\xeda del Gasto", _s19_68, "ID de Moneda de Facturaci\xf3n", "tax_name1", "Nombre de Impuesto 1", "tax_name2", "Nombre de Impuesto 2", "tax_name3", "Nombre de Impuesto 3", "transaction_id", "ID de Transacci\xf3n", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "sv", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "Betalnings inst\xe4llningar", "default", "Standard", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Summering", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "L\xe4gg till gateway", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", "Skapa ditt konto p\xe5 n\xe5gra sekunder", "login_label", _s28_, "add_to_invoice", "L\xe4gg till p\xe5 faktura :invoice", _s17_6, _s17_7, "week", "Vecka", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "Faktura valuta", "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Skapa projekt", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "Avgift f\xf6r en :amount Faktura hade blivit :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Godk\xe4nn", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", "Kunddatan har rensats", _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "Ange l\xf6senord", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Visa kostnad # :expense", "view_statement", "Se transaktion", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "System", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "Fr\xe5n namn", _s16_21, _s16_231, _s17_13, "\xc5terkommande utgift", _s18_13, "\xc5terkommande utgifter", _s21_16, "Ny \xe5terkommande utgift", _s22_24, "\xc4ndra \xe5terkommande utgift", _s25_2, "Skapade \xe5terkommande utgift utan problem", _s25_3, "Uppdaterade \xe5terkommande utgift utan problem", _s26_2, "Arkiverade \xe5terkommande utgift utan problem", _s25_4, "Tog bort projektet utan problem", _s25_5, _s38_2, _s26_3, "\xc5terst\xe4llde \xe5terkommande utgifter utan problem", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "Anv\xe4ndarhj\xe4lp", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Netto", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Importera Data", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", ":user skapade en \xe5terkommande faktura :recurring_invoice", "activity_101", ":user uppdaterade en \xe5terkommande faktura :recurring_invoice", "activity_102", ":user arkiverade en \xe5terkommande faktur :recurring_invoice", "activity_103", ":user raderade en \xe5terkommande faktur :recurring_invoice", "activity_104", ":user \xe5terst\xe4llde en \xe5terkommande faktur :recurring_invoice", _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Senast uppdaterad", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "Kontakt F\xf6rnamn", _s17_17, "Kontakt Efternamn", "order", "Order", "unassigned", "Otilldelad", "partial_value", "M\xe5ste vara st\xf6rre \xe4n noll och mindre \xe4n totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Tillg\xe4nglig", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "St\xe4ll in subdom\xe4nen eller visa fakturorna p\xe5 din egen hemsida", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Rabattkod", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "S\xe4kerhet", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Prenumeration", "subscriptions", "Prenumerationer", _s16_39, "Ny prenumeration", _s17_23, "\xc4ndra prenumeration", _s20_23, "Skapat prenumerationer utan problem", _s20_24, "Uppdaterat prenumerationer utan problem", _s21_28, "Arkivera prenumeration utan problem", _s20_25, "Prenumerationen har raderats", _s20_26, "Prenumerationen har tagits bort", _s21_29, "Prenumerationen har \xe5terst\xe4llts", _s19_17, "S\xf6k 1 prenumeration", _s20_27, "S\xf6k :count prenumerationer", _s26_6, "Subdom\xe4n \xe4r inte tillg\xe4nglig", "connect_gmail", "Anslut Gmail", _s16_41, "Koppla fr\xe5n Gmail", "connected_gmail", "Gmail ha anslutits", _s18_29, "Gmail har kopplats fr\xe5n", _s16_43, "\xc4ndringar av kodbasen kan blockera uppdateringen. Du kan k\xf6ra detta kommando f\xf6r att kasta \xe4ndringarna:", _s16_44, "Kund-ID nummer", "count_minutes", ":count minuter", _s16_46, "Timeout f\xf6r l\xf6senord", _s29_4, "Delad faktura/kredit r\xe4knare", "use_last_email", "Anv\xe4nd den senaste e-postadressen", _s16_48, "Aktivera f\xf6retag", _s21_31, "Aktivera e-post, \xe5terkommande fakturor och aviseringar", _s27_14, "Ett fel uppstod, v\xe4nligen f\xf6rs\xf6k igen", _s27_15, "Ange f\xf6rst ett l\xf6senord", _s34_6, "Varning: Om du \xe4ndrar ditt telefonnummer inaktiveras 2FA", "help_translate", "Hj\xe4lp oss \xf6vers\xe4tta", _s23_11, "V\xe4lj ett land", "resend_invite", "Skicka inbjudan igen", _s19_18, "2FA har inaktiverats", _s16_50, "Kontot har anslutits", _s19_19, "Kontot har kopplats fr\xe5n", "delivered", "Levererad", "bounced", "Studsade", "spam", "Spam", "view_docs", "Visa dokument", _s32_4, "Ange ett mobiltelefonnummer f\xf6r att aktivera tv\xe5faktorsautentisering", "send_sms", "Skicka SMS", "sms_code", "SMS-kod", _s21_32, "Skanna streckkoden med en :link kompatibel app.", _s18_30, "Aktiverade Tv\xe5-V\xe4gs autentisering utan problem", "connect_google", "Anslut Google", _s17_25, "Koppla fr\xe5n Google", _s17_27, "Tv\xe5faktorsautentisering", _s18_31, "Inaktivera 2FA", _s34_7, "Kr\xe4v l\xf6senord med social inloggning", "stay_logged_in", "Stanna inloggad", _s23_13, "Varning: Din session h\xe5ller p\xe5 att l\xf6pa ut", "count_hours", ":count timmar", "count_day", "1 dag", "count_days", ":count dagar", _s19_20, "Tidsgr\xe4ns f\xf6r webbsession", _s17_28, "S\xe4kerhetsinst\xe4llningar", "resend_email", "Skicka e-post igen", _s26_8, "V\xe4nligen bekr\xe4fta din e-postadress", _s16_51, "\xc5terbetalat betalning", _s19_22, "Delvis oanv\xe4nd", _s19_24, "V\xe4lj en anv\xe4ndare som \xe4r autentiserad med Gmail", "list_long_press", "Lista l\xe5nga tryck", "show_actions", "Visa \xe5tg\xe4rder", _s17_30, "Starta flerval", _s27_17, "Ett e-postmeddelande har skickats f\xf6r att bekr\xe4fta e-postadressen", _s21_33, "F\xf6r att anv\xe4nda :client_counter l\xe4gg till antingen :client_number eller :client_id_number f\xf6r att f\xf6rhindra konflikter", "this_quarter", "Detta kvartal", "last_quarter", "F\xf6reg\xe5ende kvartal", "to_update_run", "F\xf6r att uppdatera k\xf6r", _s18_33, "Omvandla till faktura", _s16_52, "Registrerings URL", "invoice_project", "Fakturera projekt", "invoice_task", "Fakturera uppgift", "invoice_expense", "Faktura kostnad", _s19_25, "S\xf6k 1 betalningsvillkor", _s20_28, "S\xf6k :count betalningsvillkor", _s16_54, "Spara och f\xf6rhandsgranska", "save_and_email", "Spara och skicka", _s16_56, "H\xe4ndelser som st\xf6ds", _s16_58, "Konverterad summa", _s17_32, "Konverterad balans", _s22_28, "Konverterad betalad till datum", _s24_18, "Konverterad kreditbalans", "converted_total", "Konverterat totalt", "is_sent", "Skickat", _s17_34, "Standard dokument", "document_upload", "Ladda upp dokument", _s20_29, "Till\xe5t kunder att ladda upp dokument", "expense_total", "Total kostnad", "enter_taxes", "Ange skatter", "by_rate", "Efter pris", "by_amount", "Efter belopp", "enter_amount", "Ange belopp", "before_taxes", "F\xf6re skatt", "after_taxes", "Efter skatt", "color", "F\xe4rg", "show", "Visa", "hide", "D\xf6lj", "empty_columns", "Tomma kolumner", _s21_35, "Fels\xf6kningsl\xe4ge \xe4r aktiverat", _s26_9, "Varning: den \xe4r avsedd f\xf6r anv\xe4ndning p\xe5 lokala maskiner, den kan l\xe4cka ut uppgifter. Klicka f\xf6r att l\xe4ra mer.", "running_tasks", "Uppgifter som k\xf6rs", "recent_tasks", "Senaste uppgifterna", "recent_expenses", "Senaste utgifterna", _s17_36, "Kommande utgifter", "update_app", "Uppdatera App", "started_import", "Importen har startats", _s24_20, "Dubblettkolumnmappning", _s20_30, "Anv\xe4nder inkluderande skatter", _s18_35, "\xc4r beloppsrabatt", "column", "Kolumn", "sample", "Exempel", "map_to", "Mappa till", "import", "Importera", _s25_15, "Anv\xe4nd f\xf6rsta raden som kolumnnamn", "select_file", "V\xe4lj fil", _s16_60, "Ingen fil har valts", "csv_file", "V\xe4lj CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Bokf\xf6ring", _s22_30, "Ange alla CSV-filer.", "import_type", "Typ av import", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "Visa licenser", "webhook_url", "Webhook URL", _s17_38, "Fullsk\xe4rms editor", "sidebar_editor", "Sidof\xe4lts editor", _s22_31, 'Ange ":value" f\xf6r att bekr\xe4fta', "purge", "Rensa", "service", "Service", "clone_to", "Klona till", "clone_to_other", "Klona till annan", "labels", "Etiketter", "add_custom", "L\xe4gg till anpassad", "payment_tax", "Betalningsskatt", "unpaid", "Obetald", "white_label", "Vit etikett", "delivery_note", "F\xf6ljesedel", _s24_23, "Skickade fakturor \xe4r l\xe5sta", _s24_25, "Betalade fakturor \xe4r l\xe5sta", "source_code", "K\xe4llkod", "app_platforms", "App plattformar", "invoice_late", _s17_234, "quote_expired", _s16_372, "partial_due", "Delvis f\xf6rsenad", "invoice_total", "Totalsumma", "quote_total", "Offertsumma", "credit_total", "Kredit Totalt", _s23_14, "Faktura totalt", "actions", "\xc5tg\xe4rder", "expense_number", "Utgiftsnummer", "task_number", "Uppgiftsnummer", "project_number", "Projektnummer", "project_name", "Projektnamn", "warning", "Varning", "view_settings", "Visa inst\xe4llningar", _s24_27, "Varning: detta f\xf6retag har \xe4nnu inte aktiverats", "late_invoice", _s17_234, "expired_quote", _s16_372, "remind_invoice", "Faktura p\xe5minnelse", "cvv", "CVV", "client_name", "Kundnamn", "client_phone", "Kund telefon", "required_fields", "Obligatoriska f\xe4lt", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Rensa cache", "sort_order", "Sorteringsordning", "task_status", "Status", "task_statuses", "Uppgiftsstatusar", "new_task_status", "Ny uppgiftsstaus", _s16_62, "Redigera uppgiftsstatus", _s19_26, "Uppgiftsstatus skapades", _s19_27, "Uppgiftsstatus uppdaterades", _s20_32, "Uppgiftsstatus arkiverades", _s19_28, "Uppgiftsstatus raderades", _s19_29, "Uppgiftsstatus togs bort", _s20_33, "Uppgiftsstatus \xe5terst\xe4lldes", _s22_32, ":value uppgiftsstatusar har arkiverats", _s21_37, ":value uppgiftsstatusar har raderats", _s22_33, ":value uppgiftsstatusar har \xe5terst\xe4llts", _s18_37, "S\xf6k 1 uppgiftsstatus", _s20_35, "S\xf6k :count uppgiftsstatusar", _s16_64, "Visa uppgiftstabell", _s21_38, "Visa alltid uppgiftsdelen n\xe4r du skapar fakturor", _s20_36, "Fakturauppgift tidslogg", _s25_16, "L\xe4gg till tidsinformation till fakturaraderna", _s20_38, "Fakturauppgifter datumlogg", _s25_17, "L\xe4gg till datuminformation till fakturaraderna", _s21_39, "Starta uppgifter innan du sparar", _s18_38, "Konfigurera statusar", "task_settings", "Uppgiftsinst\xe4llningar", _s20_40, "Konfigurera kategorier", _s18_40, "Utgifts kategorier", _s20_42, "Ny utgifts kategori", _s21_40, "Redigera utgiftskategori", _s24_28, "Framg\xe5ngsrikt skapat kostnadskategori", _s24_29, "Framg\xe5ngsrikt uppdaterat kostnadskategori", _s25_19, "Framg\xe5ngsrikt arkiverat kostnadskategori", _s24_30, "Kategori borttagen", _s24_31, "Utgiftskategorin har tagits bort", _s25_20, "Framg\xe5ngsrikt \xe5terst\xe4llt kostnadskategori", _s27_21, "Framg\xe5ngsrikt arkiverat :count kostnadskategori", _s26_10, "Kostnaden f\xf6r :value kategorier har raderats", _s27_22, "Kostnaden f\xf6r :value kategorier har \xe5terst\xe4llts", _s23_15, "S\xf6k 1 utgiftkategori", _s25_22, "S\xf6k :count utgiftkategorier", _s21_42, "Anv\xe4nd tillg\xe4nglig kredit", "show_option", "Visa alternativ", _s22_34, "Kreditbeloppet kan inte \xf6verstiga betalningsbeloppet", "view_changes", "Visa \xe4ndringar", "force_update", "Tvinga uppdatering", _s17_42, "Du k\xf6r den senaste versionen men det kan finnas v\xe4ntande korrigeringar tillg\xe4ngliga.", "mark_paid_help", "Sp\xe5ra utgiften f\xf6r att se om den har betalats", _s18_42, "Ska detta faktureras", _s23_16, "Aktivera utgiften som ska faktureras", _s29_7, "G\xf6r dokumenten synliga", _s21_44, "St\xe4ll in en v\xe4xelkurs", _s16_66, "Utgiftsinst\xe4llningar", _s18_43, "Klona till \xe5terkommande", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "Anv\xe4ndarf\xe4lt", "variables", "Variabler", "show_password", "Visa l\xf6senord", "hide_password", "G\xf6m l\xf6senord", "copy_error", "Kopiera felmeddelande", "capture_card", "Capture Card", _s17_43, "Automatisk fakturering aktiverad", "total_taxes", "Totalt antal skatter", "line_taxes", "Artikelskatt", "total_fields", "Totalt antal f\xe4lt", _s25_23, "\xc5terkommande faktura stoppad", _s25_24, "\xc5terkommande faktura startad", _s25_25, "\xc5terkommande faktura \xe5terupptogs", "gateway_refund", "Gateway f\xf6r \xe5terbetalning", _s19_30, "Behandla \xe5terbetalningen med betalningsgatewayen", "due_date_days", "F\xf6rfallodatum", "paused", "Pausad", "mark_active", "Markera aktiv", "day_count", "Dag :count", _s22_35, "F\xf6rsta dagen i m\xe5naden", _s21_45, "Sista dagen i m\xe5naden", _s17_45, "Anv\xe4nd betalningsvillkoren", "endless", "O\xe4ndlig", "next_send_date", "N\xe4sta s\xe4ndningsdatum", _s16_68, "\xc5terst\xe5ende cykler", _s17_47, "\xc5terkommande faktura", _s18_45, "\xc5terkommande fakturor", _s21_47, "Ny \xe5terkommande faktura", _s22_37, "Redigera \xe5terkommande fakturor", _s25_26, "\xc5terkommande faktura har skapats", _s25_27, "\xc5terkommande faktura har uppdaterats", _s26_11, "Framg\xe5ngsrikt arkiverat \xe5terkommande faktura", _s25_28, "Framg\xe5ngsrikt tagit bort \xe5terkommande faktura", _s25_29, "\xc5terkommande faktura har tagits bort", _s26_12, "Framg\xe5ngsrikt \xe5terst\xe4llt \xe5terkommande faktura", _s27_23, "Arkiverade \xe5terkommande :value fakturor", _s26_13, "\xc5terkommande :value fakturor har raderats", _s27_24, "\xc5terst\xe4llande av \xe5terkommande :value fakturor lyckades", _s24_32, "S\xf6k 1 \xe5terkommande faktura", _s25_30, "S\xf6k :count \xe5terkommande fakturor", "send_date", "S\xe4ndningsdatum", "auto_bill_on", "Automatisk fakturering p\xe5slaget", _s28_7, "L\xe4gsta belopp vid underbetalning", "profit", "F\xf6rtj\xe4nst", "line_item", "Rad", _s18_47, "Till\xe5t \xf6verbetalning", _s23_17, "St\xf6d f\xf6r att betala extra f\xf6r att ta emot dricks", _s19_31, "Till\xe5t underbetalning", _s24_33, "St\xf6d f\xf6r att betala minimum del-/ins\xe4ttningsbeloppet", "test_mode", "Testl\xe4ge", "opened", "\xd6ppnad", _s30_4, "Avst\xe4mning misslyckades", _s30_5, "Avst\xe4mning lyckades", "gateway_success", "Gateway lyckades", "gateway_failure", "Gateway misslyckades", "gateway_error", "Gateway fel", "email_send", "Skicka via e-post", _s17_49, "E-postf\xf6rs\xf6ksk\xf6", "failure", "Misslyckad", "quota_exceeded", "Kvoten har \xf6verskridits", _s16_70, "Upstream misslyckades", "system_logs", "Systemloggar", "view_portal", "Se portal", "copy_link", "Kopiera l\xe4nk", "token_billing", "Spara kortinformation", _s24_34, "V\xe4lkommen till Invoice Ninja", "always", "Alltid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Rubrik", "client_number", "Kundnummer", "auto_convert", "Automatisk konvertering", "company_name", "F\xf6retagsnamn", "reminder1_sent", "P\xe5minnelse 1 skickad", "reminder2_sent", "P\xe5minnelse 2 skickad", "reminder3_sent", "P\xe5minnelse 3 skickad", _s18_49, "P\xe5minnelse skickades senast", "pdf_page_info", "Sida :current av :total", _s16_72, "E-postade fakturorna utan problem", "emailed_quotes", "E-postade offerterna utan problem", "emailed_credits", _s32_41, "gateway", "Gateway", "view_in_stripe", "Visa i Stripe", "rows_per_page", "Rader per sida", "hours", "Timmar", "statement", "Transaktionsdatum", "taxes", "Moms", "surcharge", "Till\xe4ggsavgift", "apply_payment", "Till\xe4mpa betalning", "apply_credit", "Till\xe4mpa kredit", "apply", "Verkst\xe4ll", "unapplied", "Outnyttjad", "select_label", "V\xe4lj rubrik", "custom_labels", "Anpassade etiketter", "record_type", "Posttyp", "record_name", "Post namn", "file_type", "Filtyp", "height", "H\xf6jd", "width", "Bredd", "to", "Till", "health_check", "H\xe4lsokontroll", "payment_type_id", "Betalningss\xe4tt", "last_login_at", "Senast inloggad", "company_key", "F\xf6retagsnyckel", "storefront", "Butiksfront", "storefront_help", "Aktivera tredjepartsappar f\xf6r att skapa fakturor", "client_created", "Kunden har skapats", _s20_45, "E-postadress f\xf6r online betalning", _s20_47, "E-postadress f\xf6r manuell betalning", "completed", "Slutf\xf6rd", "gross", "Brutto", "net_amount", "Nettobelopp", "net_balance", "Nettobalans", "client_settings", "Kundinst\xe4llningar", _s17_51, "Markerade fakturor", _s17_53, "Markerade betalningar", "selected_quotes", "Markerade offerter", "selected_tasks", "Markerade uppgifter", _s17_55, "Markerade utgifter", _s17_57, "Kommande fakturor", _s17_59, "F\xf6rsenade fakturor", "recent_payments", "Nyligen utf\xf6rda betalningar", "upcoming_quotes", "Kommande Offerter", "expired_quotes", "Utg\xe5ngna Offerter", "create_client", "Skapa kund", "create_invoice", "Skapa faktura", "create_quote", "Skapa offert", "create_payment", "Skapa betalning", "create_vendor", "Skapa tillverkare", "update_quote", "Uppdatera offert", "delete_quote", "Ta bort offert", "update_invoice", "Uppdatera faktura", "delete_invoice", "Ta bort faktura", "update_client", "Uppdatera kund", "delete_client", "Radera kund", "delete_payment", "Ta bort betalning", "update_vendor", "Uppdatera leverant\xf6r", "delete_vendor", "Ta bort leverant\xf6r", "create_expense", "Skapa utgift", "update_expense", "Uppdatera utgift", "delete_expense", "Ta bort kostnad", "create_task", "Skapa uppgift", "update_task", "Uppdatera uppgift", "delete_task", "Radera uppgift", "approve_quote", "Godk\xe4nn offert", "off", "Av", "when_paid", "Betalad", "expires_on", "G\xe5r ut den", "free", "Gratis", "plan", "Niv\xe5", "show_sidebar", "Visa sidof\xe4lt", "hide_sidebar", "G\xf6m sidof\xe4lt", "event_type", "Typ av h\xe4ndelse", "target_url", "M\xe5l", "copy", "Kopiera", "must_be_online", "Starta om appen n\xe4r du \xe4r ansluten till internet", _s17_61, "Crons m\xe5ste aktiveras", "api_webhooks", "API Webhooks", "search_webhooks", "S\xf6k :count Webhooks", "search_webhook", "S\xf6k 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Ny Webhook", "edit_webhook", "Redigera Webhook", "created_webhook", "Webhooken skapades", "updated_webhook", "Webhooken uppdaterades", _s16_74, "Webhooken arkiverades", "deleted_webhook", "Webhooken raderades", "removed_webhook", "Webhooken togs bort", _s16_75, "Webhooken \xe5terst\xe4lldes", _s17_62, ":value webhooks har arkiverats", _s16_76, ":value webhooks har raderats", _s16_77, ":value webhooks har tagits bort", _s17_63, ":value webhooks har \xe5terst\xe4llts", "api_tokens", "API Tokens", "api_docs", "API dokumentation", "search_tokens", "S\xf6k :count tokens", "search_token", "S\xf6k 1 token", "token", "Token", "tokens", "Tokens", "new_token", "Ny token", "edit_token", "\xc4ndra token", "created_token", "Token skapad", "updated_token", "Token uppdaterad", "archived_token", "Framg\xe5ngsrikt arkiverat Token", "deleted_token", "Token borttagen", "removed_token", "Token togs bort", "restored_token", "Token \xe5terst\xe4lldes", "archived_tokens", ":value tokens har arkiverats", "deleted_tokens", ":value tokens har raderats", "restored_tokens", ":value tokens har \xe5terst\xe4llts", _s19_33, "Kundregistrering", _s24_36, "G\xf6r det m\xf6jligt f\xf6r kunder att sj\xe4lvregistrera sig i portalen", _s21_49, "Anpassa och f\xf6rhandsgranska", "email_invoice", "E-posta faktura", "email_quote", "E-posta offert", "email_credit", "E-postkredit", "email_payment", "Eposta betalning", _s20_50, "Kunden har ingen e-postadress", "ledger", "Liggare", "view_pdf", "Visa PDF", "all_records", "Alla poster", "owned_by_user", "\xc4gs av anv\xe4ndaren", _s16_78, "\xc5terst\xe5ende kredit", "contact_name", "Kontakt namn", "use_default", "Anv\xe4nd standard", _s16_80, "O\xe4ndliga p\xe5minnelser", "number_of_days", "Antal dagar", _s23_19, "Konfigurera betalningsvillkor", "payment_term", _s17_235, _s16_81, "Skapa betalningsvillkor", _s17_65, "Editera betalningsvillkor", _s20_51, "Skapade betalningsvillkor utan problem", _s20_52, "Uppdaterade betalningsvillkor utan problem", _s21_50, "Arkiverat betalningsvillkor utan problem", _s20_53, "Betalningsvillkoret har raderats", _s20_54, "Betalningsvillkoret har tagits bort", _s21_51, "Betalningsvillkoret har \xe5terst\xe4llts", _s22_42, ":value betalningsvillkor har arkiverats", _s21_52, ":value betalningsvillkor har raderats", _s22_43, ":value betalningsvillkor har \xe5terst\xe4llts", "email_sign_in", "Logga in med e-postadress", "change", "\xc4ndra", _s23_21, "\xc4ndra till mobillayouten?", _s24_37, "Vill du byta till skrivbordslayout?", "send_from_gmail", "Skicka fr\xe5n Gmail", "reversed", "Omv\xe4nd", "cancelled", "Avbruten", "credit_amount", "Kreditsumma", "quote_amount", "Offertbelopp", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exklusive", "inclusive", "Inklusive", "hide_menu", "G\xf6m meny", "show_menu", "Visa meny", _s18_51, _s18_215, _s16_83, "S\xf6k dokument", "search_designs", "S\xf6k design", "search_invoices", "S\xf6k fakturor", "search_clients", "S\xf6k kunder", "search_products", "S\xf6k produkter", "search_quotes", "S\xf6k offerter", "search_credits", "S\xf6k krediter", "search_vendors", "S\xf6k leverant\xf6rer", "search_users", "S\xf6k anv\xe4ndare", _s16_84, "S\xf6k skattesatser", "search_tasks", "S\xf6k uppgifter", "search_settings", "S\xf6k inst\xe4llningar", "search_projects", "S\xf6k projekt", "search_expenses", "S\xf6k utgifter", "search_payments", "S\xf6k betalningar", "search_groups", "S\xf6k grupper", "search_company", "S\xf6k f\xf6retag", "search_document", "S\xf6k 1 dokument", "search_design", "S\xf6k 1 design", "search_invoice", "S\xf6k 1 faktura", "search_client", "S\xf6k 1 kund", "search_product", "S\xf6k 1 produk", "search_quote", "S\xf6k 1 offert", "search_credit", "S\xf6k 1 kredit", "search_vendor", "S\xf6k 1 leverant\xf6r", "search_user", "S\xf6k 1 offert", "search_tax_rate", "S\xf6k 1 skattesats", "search_task", "S\xf6k 1 uppgift", "search_project", "S\xf6k 1 projekt", "search_expense", "S\xf6k 1 utgift", "search_payment", "S\xf6k 1 betalning", "search_group", "S\xf6k 1 grupp", "refund_payment", "\xc5terbetala betalning", _s17_69, "Fakturan har avbrutits", _s18_53, "Fakturorna har avbrutits", _s16_90, "Fakturan har omv\xe4nts", _s17_70, "Fakturorna har omv\xe4nts", "reverse", "Omv\xe4nd", "full_name", "Hela namnet", _s17_71, "Stad/L\xe4n/Postnummer", _s17_73, "Postadress/Stad/Stat", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Tredje anpassningen", "custom4", "Fj\xe4rde anpassningen", "optional", "Frivillig", "license", "Licens", "purge_data", "Rensa uppgifter.", _s16_91, "Rensade utan problem f\xf6retags data", _s18_54, "Varning: Detta kommer permanent ta bort din information, det finns ingen \xe5terv\xe4nda.", "invoice_balance", "Fakturabalans", "age_group_0", "0 - 30 Dagar", "age_group_30", "30 - 60 Dagar", "age_group_60", "60 - 90 Dagar", "age_group_90", "90 - 120 Dagar", "age_group_120", "120+ Dagar", "refresh", "Uppdatera", "saved_design", "Designen har sparats", "client_details", "Kunduppgifter", "company_address", "F\xf6retagsadress", "invoice_details", "Faktura detaljer", "quote_details", "Offertuppgifter", "credit_details", "Kredituppgifter", "product_columns", "Produktkolumner", "task_columns", "Uppgiftskolumner", "add_field", "L\xe4gg till f\xe4lt", "all_events", "Alla h\xe4ndelser", "permissions", "Beh\xf6righeter", "none", "Ingen", "owned", "\xc4gd", "payment_success", "Betalning genomf\xf6rd", "payment_failure", "Betalning misslyckades", "invoice_sent", _s24_112, "quote_sent", "Offerten skickad", "credit_sent", "Krediten skickad", "invoice_viewed", "Fakturan visad", "quote_viewed", "Offerten visad", "credit_viewed", "Krediten visad", "quote_approved", "Offerten godk\xe4nd", _s25_32, "F\xe5 alla aviseringar", _s16_92, "K\xf6p licens", "apply_license", "Uppge Licens", "cancel_account", "Avsluta konto", _s22_44, "Varning: Detta kommer permanent ta bort ditt konto, detta g\xe5r inte att \xe5ngra.", "delete_company", "Ta bort f\xf6retag", _s22_45, "Varning: Detta kommer permanent ta bort till bolag, det finns ingen \xe5terv\xe4ndo.", "enabled_modules", "Aktiverade moduler", "converted_quote", "Offerten har konverterats", "credit_design", "Kreditdesign", "includes", "Inkluderar", "header", "Rubrik", "load_design", "Ladda design", "css_framework", "CSS Ramverk", "custom_designs", "Anpassad design", "designs", "Design", "new_design", "Ny design", "edit_design", "Redigera design", "created_design", "Designen har skapats", "updated_design", "Designen har uppdaterats", "archived_design", "Designen har arkiverats", "deleted_design", "Designen har raderats", "removed_design", "Designen har tagits bort", "restored_design", "Designen har \xe5terskapats", _s16_94, ":value designs har arkiverats", "deleted_designs", ":value designs har raderats", _s16_95, ":value designs har \xe5terst\xe4llts", "proposals", "F\xf6rslag", "tickets", "\xc4renden", _s16_96, "\xc5terkommande offerter", "recurring_tasks", "\xc5terkommande uppgifter", _s18_55, "Kontohantering", "credit_date", "Kreditdatum", "credit", "Kredit", "credits", "Kreditfakturor", "new_credit", "Ange Kredit", "edit_credit", "Redigera Kreditfaktura", "created_credit", "Kreditfaktura skapad", "updated_credit", "Kreditfaktura uppdaterad", "archived_credit", "Kreditfaktura arkiverad", "deleted_credit", "Kreditfaktura borttagen", "removed_credit", "Krediten har tagits bort", "restored_credit", "Kreditfaktura \xe5terst\xe4lld", _s16_98, ":count kreditfakturor arkiverade", "deleted_credits", ":count kreditfakturor borttagna", _s16_99, ":value krediter har \xe5terst\xe4llts", "current_version", "Nuvarande version", "latest_version", "Senaste versionen", "update_now", "Uppdatera nu", _s26_19, "En ny version av webbappen \xe4r tillg\xe4nglig", _s16_100, "Uppdatering tillg\xe4nglig", "app_updated", "Uppdateringen har slutf\xf6rts", "learn_more", "Hj\xe4lp", "integrations", "Integrationer", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Kreditens sidfot", "credit_terms", "Kreditens villkor", "new_company", "Nytt f\xf6retag", "added_company", "F\xf6retaget har lagts till", "company1", "Anpassat f\xf6retag 1", "company2", "Anpassat f\xf6retag 2", "company3", "CAnpassat f\xf6retag 3", "company4", "Anpassat f\xf6retag 4", "product1", "Anpassad produkt 1", "product2", "Anpassad produkt 2", "product3", "Anpassad produkt 3", "product4", "Anpassad produkt 4", "client1", "Anpassad kund 1", "client2", "Anpassad kund 2", "client3", "Anpassad kund 3", "client4", "Anpassad kund 4", "contact1", "Anpassad kontakt 1", "contact2", "Anpassad kontakt 2", "contact3", "Anpassad kontakt 3", "contact4", "Anpassad kontakt 4", "task1", "Anpassad uppgift 1", "task2", "Anpassad uppgift 2", "task3", "Anpassad uppgift 3", "task4", "Anpassad uppgift 4", "project1", "Anpassat projekt 1", "project2", "Anpassat projekt 2", "project3", "Anpassat projekt 3", "project4", "Anpassat projekt 4", "expense1", "Anpassad utgift 1", "expense2", "Anpassad utgift 2", "expense3", "Anpassad utgift 3", "expense4", "Anpassad utgift 4", "vendor1", "Anpassad leverant\xf6r 1", "vendor2", "Anpassad leverant\xf6r 2", "vendor3", "Anpassad leverant\xf6r 3", "vendor4", "Anpassad leverant\xf6r 4", "invoice1", "Anpassad faktura 1", "invoice2", "Anpassad faktura 2", "invoice3", "Anpassad faktura 3", "invoice4", "Anpassad faktura 4", "payment1", "Anpassad betalning 1", "payment2", "Anpassad betalning 2", "payment3", "Anpassad betalning 3", "payment4", "Anpassad betalning 4", "surcharge1", _s25_97, "surcharge2", _s25_98, "surcharge3", _s25_99, "surcharge4", _s25_100, "group1", "Anpassad grupp 1", "group2", "Anpassad grupp 2", "group3", "Anpassad grupp 3", "group4", "Anpassad grupp 4", "reset", "\xc5terst\xe4lla", "number", "Nummer", "export", "Exportera", "chart", "Lista", "count", "R\xe4kna", "totals", "Total", "blank", "Blank", "day", "Dag", "month", "M\xe5nad", "year", "\xc5r", "subgroup", "Undergrupp", "is_active", "\xc4r aktiv", "group_by", "Gruppera genom", "credit_balance", "Kreditbalans", _s18_61, "Kontakt: senast inloggad", _s17_77, "Kontakt: namn", "contact_phone", "Kontakt telefon", _s21_53, "Kontakt: anpassat v\xe4rde 1", _s21_54, "Kontakt: anpassat v\xe4rde 2", _s21_55, "Kontakt: anpassat v\xe4rde 3", _s21_56, "Kontakt: anpassat v\xe4rde 4", _s17_79, "Leveransadress 1", _s17_80, "Leveransadress 2", "shipping_city", "Leverans stad", "shipping_state", "Leverans l\xe4n", _s20_55, "Leverans postnummer", _s16_130, "Leverans land", _s16_132, "Faktureringsadress 1", _s16_133, "Faktureringsadress 2", "billing_city", "Fakturerings stad", "billing_state", "Fakturerings l\xe4n", _s19_36, "Fakturerings postnummer", "billing_country", "Fakturerings land", "client_id", "Kund-id", "assigned_to", "Tilldelat till", "created_by", "Skapad av :name", "assigned_to_id", "Tilldelad till id", "created_by_id", "Skapat av id", "add_column", "L\xe4gg till kolumn", "edit_columns", "Redigera kolumner", "columns", "Kolumner", "aging", "B\xf6rjar bli gammal", "profit_and_loss", "F\xf6rtj\xe4nst och F\xf6rlust", "reports", "Rapporter", "report", "Rapport", "add_company", "L\xe4gg till f\xf6retag", "unpaid_invoice", "Obetalad faktura", "paid_invoice", "Betalad faktura", _s16_134, "Ej godk\xe4nd offert", "help", "Hj\xe4lp", "refund", "\xc5terbetalning", "refund_date", "\xc5terbetalnings datum", "filtered_by", "Filtrerat efter", "contact_email", "Kontakt e-post", "multiselect", "Flera val", "entity_state", "Tillst\xe5nd", "verify_password", "Verifiera l\xf6senord", "applied", "Applicerad", _s21_57, "Inkludera senaste fel fr\xe5n loggarna", _s30_8, "Vi har f\xe5tt ditt meddelande och f\xf6rs\xf6ker svara snabbt.", "message", "Meddelande", "from", "Fr\xe5n", _s20_57, "Visa produktinformation", _s25_34, "Inkludera beskrivning och kostnad i produktmenyn", _s20_59, "PDF-renderaren kr\xe4ver :version", _s18_64, "Justera avgiftsprocenten", _s23_23, "Justera procent f\xf6r att ta h\xe4nsyn till avgiften", _s18_66, "Konfigurera inst\xe4llningar", "support_forum", "Supportforum", "about", "Om", "documentation", "Dokumentation", "contact_us", "Kontakta oss", "subtotal", "Delsumma", "line_total", "Summa", "item", "Artikel", "credit_email", "Credit Email", "iframe_url", "Webbsida", "domain_url", "Dom\xe4n URL", _s21_58, "L\xf6senordet \xe4r f\xf6r kort", _s20_60, "L\xf6senordet m\xe5ste inneh\xe5lla minst en versal och minst ett nummer", _s19_38, "Kundportal uppgifter", _s23_24, "Kundportal \xf6versikt", _s20_61, "Ange ett v\xe4rde", "deleted_logo", "Logotypen har tagits bort", "yes", "Ja", "no", "Nej", "generate_number", "Generera nummer", "when_saved", "N\xe4r sparat", "when_sent", "N\xe4r skickat", "select_company", "V\xe4lj f\xf6retag", "float", "Float", "collapse", "D\xf6lj", "show_or_hide", "Visa/d\xf6lj", "menu_sidebar", "Meny Sidof\xe4lt", "history_sidebar", "Historia Sidof\xe4lt", "tablet", "Tablet", "mobile", "Mobil", "desktop", "Desktop", "layout", "Layout", "view", "Visa", "module", "Modul", "first_custom", "F\xf6rsta anpassad", "second_custom", "Andra anpassad", "third_custom", "Tredje anpassad", "show_cost", "Visa kostnad", _s17_82, "Visa produktkostnad", "show_cost_help", "Visa ett produktkostnadsf\xe4lt f\xf6r att sp\xe5ra p\xe5slag/vinst", _s21_59, "Visa produktkvantitet", _s26_21, "Visa ett produktkvantitetsf\xe4lt, annars \xe4r det ett", _s21_61, "Visa fakturakvantitet", _s26_22, "Visa ett f\xe4lt f\xf6r radnummer, annars ett som standard", _s21_63, "Visa produktrabatt", _s26_23, "Visa ett rabattf\xe4lt f\xf6r en rad", _s16_136, "Standardkvantitet", _s21_65, "St\xe4ll in radens kvantitet automatiskt till ett", "one_tax_rate", "En skattesats", "two_tax_rates", "Tv\xe5 skattesatser", "three_tax_rates", "Tre skattesatser", _s16_138, "Standard skattesats", "user", "Anv\xe4ndare", "invoice_tax", "Fakturaskatt", "line_item_tax", "Artikelskatt", "inclusive_taxes", "Inklusive skatter", _s17_84, "Fakturaskattesatser", "item_tax_rates", "Artikel skattesatser", _s18_68, "V\xe4lj en kund", "configure_rates", "Konfigurera priser", _s18_69, "Konfigurera gateways", "tax_settings", "Momsinst\xe4llningar", _s18_71, "Skattesatser", "accent_color", "Accentf\xe4rg", "switch", "V\xe4xla", _s19_40, "Kommaseparerad lista", "options", "Val", _s16_140, "Enradig text", "multi_line_text", "Text med flera rader", "dropdown", "Dropdown", "field_type", "F\xe4lttyp", _s27_35, "Ett e-postmeddelande f\xf6r \xe5terst\xe4llning av l\xf6senord har skickats", "submit", "Skicka", _s16_142, "\xc5terst\xe4ll ditt l\xf6senord", "late_fees", "F\xf6rsenade avgifter", "credit_number", "Kreditnummer", "payment_number", "Betalningsnummer", "late_fee_amount", "F\xf6rseningsavgifts summa", _s16_143, "F\xf6rseningsavgifts procent", "schedule", "Schema", "before_due_date", "F\xf6re f\xf6rfallodagen", "after_due_date", "Efter f\xf6rfallodagen", _s18_73, "Efter fakturadatum", "days", "Dagar", "invoice_email", "Faktura e-post", "payment_email", "Betalnings e-post", "partial_payment", "Delbetalning", "payment_partial", "Delbetalning", _s21_66, "E-postadress f\xf6r delbetalning", "quote_email", "Offert e-post", _s16_145, "O\xe4ndlig p\xe5minnelse", _s16_147, "Filtrerat efter anv\xe4ndare", "administrator", "Administrat\xf6r", _s18_74, "Till\xe5t anv\xe4ndare att hantera anv\xe4ndare, \xe4ndra inst\xe4llningar och \xe4ndra alla v\xe4rden", "user_management", "Anv\xe4ndarhantering", "users", "Anv\xe4ndare", "new_user", "Ny anv\xe4ndare", "edit_user", "\xc4ndra anv\xe4ndare", "created_user", "Anv\xe4ndaren skapades", "updated_user", "Anv\xe4ndare uppdaterad", "archived_user", "Framg\xe5ngsrikt arkiverat anv\xe4ndare", "deleted_user", "Anv\xe4ndare borttagen", "removed_user", "Anv\xe4ndaren har tagits bort", "restored_user", "Anv\xe4ndare \xe5terst\xe4lld", "archived_users", ":value anv\xe4ndare har arkiverats", "deleted_users", ":value anv\xe4ndare har raderats", "removed_users", ":value anv\xe4ndare har tagits bort", "restored_users", ":value anv\xe4ndare har \xe5terst\xe4llts", _s16_149, "Generella inst\xe4llningar", "invoice_options", "Fakturainst\xe4llningar", _s17_86, 'D\xf6lj "Betald till"', _s22_52, 'Visa bara "Betald till"-sektionen p\xe5 fakturan n\xe4r en betalning har mottagits.', _s23_26, "B\xe4dda in dokument", _s28_20, _s39_4, _s16_151, "Visa Header p\xe5", _s16_152, "Visa Footer p\xe5", "first_page", "F\xf6rsta sidan", "all_pages", "Alla sidor", "last_page", "Sista sidan", "primary_font", "Prim\xe4rt typsnitt", "secondary_font", "Sekund\xe4rt typsnitt", "primary_color", "Prim\xe4r f\xe4rg", "secondary_color", "Sekund\xe4r f\xe4rg", "page_size", "Sidstorlek", "font_size", "Storlek p\xe5 framsida", "quote_design", "Offert design", "invoice_fields", "Fakturaf\xe4lt", "product_fields", "Produkt f\xe4lt", "invoice_terms", "Fakturavillkor", "invoice_footer", "Faktura sidfot", "quote_terms", "Offertvillkor", "quote_footer", "Offert footer", _s18_75, "Automatisk e-post", _s23_27, "Skicka \xe5terkommande fakturor automatiskt.", _s18_76, "Automatisk arkivering", _s23_28, "Arkivera automatiskt offerter n\xe4r de konverteras.", _s18_77, "Auto Konvertera", _s23_29, "Konvertera automatiskt en offert till en faktura n\xe4r den godk\xe4nts av en kund.", _s17_88, "Arbetsfl\xf6desinst\xe4llningar", "freq_daily", "Dagligen", "freq_weekly", "Veckovis", "freq_two_weeks", "Tv\xe5 veckor", "freq_four_weeks", "Fyra veckor", "freq_monthly", "M\xe5nadsvis", "freq_two_months", "Tv\xe5 m\xe5nader", _s17_90, "Tre m\xe5nader", _s16_153, "Fyra m\xe5nader", "freq_six_months", "Sex m\xe5nader", "freq_annually", "\xc5rsvis", "freq_two_years", "Tv\xe5 \xe5r", _s16_154, "Tre \xe5r", "never", "Aldrig", "company", "F\xf6retag", _s17_91, "Genererade nummer", "charge_taxes", "Inkludera moms", "next_reset", "N\xe4sta \xe5terst\xe4llning", "reset_counter", "\xc5terst\xe4ll r\xe4knare", _s16_155, "\xc5terkommande prefix", "number_padding", "Nummerfyllning", "general", "Allm\xe4n", "surcharge_field", "Till\xe4ggsf\xe4lt", "company_field", "F\xf6retagsf\xe4lt", "company_value", "F\xf6retagets v\xe4rde", "credit_field", "Kreditf\xe4lt", "invoice_field", "Fakturaf\xe4lt", _s17_93, "Till\xe4ggsavgift till faktura", "client_field", "Kundf\xe4lt", "product_field", "Produktf\xe4lt", "payment_field", "Betalningsf\xe4lt", "contact_field", "Kontaktf\xe4lt", "vendor_field", "Leverant\xf6rsf\xe4lt", "expense_field", "Utgiftsf\xe4lt", "project_field", "Projektf\xe4lt", "task_field", "Uppgiftsf\xe4lt", "group_field", "Gruppf\xe4lt", "number_counter", "Nummerr\xe4knare", "prefix", "Prefix", "number_pattern", "Nummerm\xf6nster", "messages", "Meddelanden", "custom_css", "Anpassad CSS", _s17_95, "Anpassad JavaScript", _s16_157, "Visa p\xe5 PDF", _s21_68, "Visa kundens signatur p\xe5 fakturan/offerten.", _s25_40, "Faktura villkor kryssruta", _s30_9, "Kr\xe4v att kunden accepterar fakturavillkoren.", _s23_30, "Offert villkors kryssruta", _s28_21, "Kr\xe4v att kunden accepterar offertvillkoren.", _s25_41, "Faktura signatur", _s30_10, "Kr\xe4v signatur av kund.", _s23_31, "Offert signatur", _s22_54, "L\xf6senordsskydda fakturor", _s27_36, "Till\xe5ter dig att s\xe4tta ett l\xf6senord f\xf6r varje kontakt. Om ett l\xf6senord \xe4r valt kommer kontakten vara tvungen att skriva in l\xf6senordet innan den kan se fakturan.", "authorization", "Tillst\xe5nd", "subdomain", "Underdom\xe4n", "domain", "Dom\xe4n", "portal_mode", "Portal-l\xe4ge", "email_signature", "V\xe4nliga h\xe4lsningar,", _s24_38, "G\xf6r det enklare f\xf6r dina kunder att betala genom att l\xe4gga till schema.org m\xe4rkning till dina e-postmeddelanden.", "plain", "Vanlig", "light", "Ljus", "dark", "M\xf6rk", "email_design", "E-post design", "attach_pdf", "Bifoga PDF", _s16_158, "Bifoga dokument", "attach_ubl", "Bifoga UBL", "email_style", "E-poststil", _s19_42, "Aktivera m\xe4rkning", "reply_to_email", "Reply-To E-post", "reply_to_name", "Reply-To namn", "bcc_email", "Skicka som hemlig kopia", "processed", "Bearbetat", "credit_card", "Betalkort", "bank_transfer", "Bank\xf6verf\xf6ring", "priority", "Prioritet", "fee_amount", "Avgiftsbelopp", "fee_percent", "Avgiftsprocent", "fee_cap", "Avgiftstak", "limits_and_fees", "Begr\xe4nsningar/avgifter", "enable_min", "Aktivera min", "enable_max", "Aktivera max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, "Accepterade kort logos", "credentials", "Uppgifter", "update_address", "Uppdatera adress", _s19_45, "Uppdatera kundens adress med tillhandah\xe5llna uppgifter", "rate", "\xe1-pris", "tax_rate", "Skatteniv\xe5", "new_tax_rate", "Ny skatte niv\xe5", "edit_tax_rate", "Redigera skatteniv\xe5", _s16_160, "Framg\xe5ngsrikt skapat skattesats", _s16_161, "Framg\xe5ngsrikt uppdaterad momssats", _s17_98, "Framg\xe5ngsrikt arkiverat skatteniv\xe5n/momssatsen", _s16_162, "Skattesatsen har raderats", _s17_99, "Skattesatsen har \xe5terst\xe4llts", _s18_78, ":value skattesatser har arkiverats", _s17_100, ":value skattesatser har raderats", _s18_79, ":value skattesatser har \xe5terst\xe4llts", "fill_products", "Auto-ifyll produkter", _s18_80, "V\xe4lj en produkt f\xf6r att automatiskt fylla i beskrivning och pris", "update_products", "Auto-uppdaterade produkter", _s20_65, "Uppdatera en faktura f\xf6r att automatiskt uppdatera produktbiblioteket", _s16_163, "Konvertera produkter", _s21_69, "Konvertera automatiskt produkt priser till kundens valuta", "fees", "Avgifter", "limits", "Gr\xe4nser", "provider", "Leverant\xf6r", "company_gateway", "Betalningsgateway", _s16_165, "Betalningsgateways", _s19_46, "Ny gateway", _s20_66, "Redigera gateway", _s23_32, "Gateway skapades", _s23_33, "Gateway uppdaterades", _s24_39, "Gateway arkiverades", _s23_34, "Gateway raderades", _s24_40, "Gateway \xe5terst\xe4lldes", _s25_43, ":value gateways har arkiverats", _s24_41, ":value gateways har raderats", _s25_44, ":value gateways har \xe5terst\xe4llts", _s16_167, "Forts\xe4tt redigera", "discard_changes", "Avbryt \xe4ndringar", "default_value", "Standardv\xe4rde", "disabled", "Avst\xe4ngd", "currency_format", "Valutaformat", _s21_70, "F\xf6rsta dagen i veckan", _s23_35, "\xc5rets f\xf6rsta m\xe5nad", "sunday", "S\xf6ndag", "monday", "M\xe5ndag", "tuesday", "Tisdag", "wednesday", "Onsdag", "thursday", "Torsdag", "friday", "Fredag", "saturday", "L\xf6rdag", "january", "Januari", "february", "Februari", "march", "Mars", "april", "April", "may", "Maj", "june", "Juni", "july", "Juli", "august", "Augusti", "september", "September", "october", "Oktober", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Kod", "date_format", "Datumformat", "datetime_format", "Datum- och tidsformat", "military_time", "24 Timmars tid", _s18_81, "24-timmarsvisning", "send_reminders", "Skicka p\xe5minnelser", "timezone", "Tidszon", _s19_47, "Filtrera efter projekt", _s17_101, "Filtrerat efter grupp", _s19_49, "Filtrerat efter faktura", _s18_82, "Filtrerat efter kund", _s18_84, "Filtrerat efter leverant\xf6r", "group_settings", "Gruppinst\xe4llningar", "group", "Grupp", "groups", "Grupper", "new_group", "Ny grupp", "edit_group", "Redigera grupp", "created_group", "Gruppen har skapats", "updated_group", "Gruppen har uppdaterats", "archived_groups", ":value grupper har arkiverats", "deleted_groups", ":value grupper har raderats", "restored_groups", ":value grupper har \xe5terst\xe4llts", "archived_group", "Gruppen har arkiverats", "deleted_group", "Gruppen har raderats", "restored_group", "Gruppen har \xe5terst\xe4llts", "upload_logo", "Ladda upp logotyp", "uploaded_logo", "Logotypen har laddats upp", "logo", "Logotyp", "saved_settings", "Inst\xe4llningarna har sparats", _s16_169, "Produkt inst\xe4llningar", "device_settings", "Enhetsinst\xe4llningar", "defaults", "F\xf6rinst\xe4llningar", "basic_settings", "Grundl\xe4ggande inst\xe4llningar", _s17_103, "Avancerade inst\xe4llningar", "company_details", "F\xf6retagsinformation", "user_details", "Anv\xe4ndaruppgifter", "localization", "Spr\xe5kanpassning", "online_payments", "Onlinebetalningar", "tax_rates", "Momsniv\xe5er", "notifications", "Meddelanden", "import_export", "Importera/Exportera", "custom_fields", "Anpassade f\xe4lt", "invoice_design", "Fakturadesign", "buy_now_buttons", "K\xf6p Nu knappar", "email_settings", "E-postinst\xe4llningar", _s23_37, "Mallar och p\xe5minnelser", _s22_55, "Kreditkort och banker", _s19_51, _s17_149, "price", "Pris", "email_sign_up", "Registrera dig via e-post", "google_sign_up", "Registrera dig via Google", _s27_40, "Tack f\xf6r ditt k\xf6p!", "redeem", "L\xf6s in", "back", "Tillbaka", "past_purchases", "Tidigare k\xf6p", _s19_53, "\xc5rlig prenumeration", "pro_plan", "Pro prenumeration", "enterprise_plan", "Enterprise prenumeration", "count_users", ":count anv\xe4ndare", "upgrade", "Uppgradera", _s25_45, "Ange ett f\xf6rnamn", _s24_42, "Ange ett efternamn", _s33_21, "Godk\xe4nn anv\xe4ndarvillkoren och sekretesspolicyn f\xf6r att skapa ett konto.", "i_agree_to_the", "Jag godk\xe4nner", _s16_171, "Villkor f\xf6r tj\xe4nsten", "privacy_policy", "Integritetspolicy", "sign_up", "Registrera dig", "account_login", "Inloggning", "view_website", "Visa webbplats", "create_account", "Skapa konto", "email_login", "E-postinloggning", "create_new", "Skapa Ny", _s18_86, "Ingen posts har valts", _s21_73, "Spara eller avbryt dina \xe4ndringar", "download", "Ladda ner", _s27_41, "Kr\xe4ver en enterprise prenumeration", "take_picture", "Ta en bild", "upload_file", "Ladda upp en fil", "document", "Dokument", "documents", "Dokument", "new_document", "Nytt dokument", "edit_document", "Redigera dokument", _s17_105, "Dokuementet har laddats upp", _s16_173, "Dokumentet har uppdaterats", _s17_106, "Dokumentet har arkiverats", _s16_174, "Dokumentet har raderats", _s17_107, "Dokumentet har \xe5terst\xe4llts", _s18_88, ":value dokument har arkiverats", _s17_108, ":value dokument har raderats", _s18_89, ":value dokument har \xe5terst\xe4llts", "no_history", "Ingen historik", "expense_date", "Kostnads datum", "pending", "P\xe5g\xe5ende", _s16_175, "Loggad", _s16_176, "I v\xe4ntan p\xe5", _s16_177, "Fakturerad", "converted", "Konvertera", _s24_44, "Bifoga dokument till fakturan", "exchange_rate", "V\xe4xlingskurs", _s16_178, "Konvertera valuta", "mark_paid", "Markera betald", "category", "Kategori", "address", "Adress", "new_vendor", "Ny leverant\xf6r", "created_vendor", "Framg\xe5ngsrikt skapat leverant\xf6r", "updated_vendor", "Framg\xe5ngsrikt uppdaterat leverant\xf6r", "archived_vendor", "Framg\xe5ngsrikt arkiverat leverant\xf6r", "deleted_vendor", "Framg\xe5ngsrikt raderat leverant\xf6r", "restored_vendor", "Lyckades \xe5terst\xe4lla leverant\xf6r", _s16_179, "Framg\xe5ngsrikt arkiverat :count leverant\xf6rer", "deleted_vendors", "Framg\xe5ngsrikt raderat :count leverant\xf6rer", _s16_180, ":value leverant\xf6rer har \xe5terst\xe4llts", "new_expense", "Ny Kostnad", "created_expense", "Framg\xe5ngsrikt skapat kostnad", "updated_expense", "Framg\xe5ngsrikt uppdaterat kostnad", _s16_181, "Framg\xe5ngsrikt arkiverat kostnad", "deleted_expense", "Framg\xe5ngsrikt tagit bort kostnad", _s16_182, "Lyckades \xe5terst\xe4lla utgifter", _s17_109, "Framg\xe5ngsrikt arkiverat kostnader", _s16_183, "Framg\xe5ngsrikt tagit bort kostnader", _s17_110, ":value utgifter har \xe5terst\xe4llts", "copy_shipping", "Kopiera frakt", "copy_billing", "Kopiera betalning", "design", "Design", _s21_74, "Det gick inte att hitta posten", "invoiced", "Fakturerad", "logged", "Loggat", "running", "K\xf6rs", "resume", "\xc5teruppta", "task_errors", "Korrigera \xf6verlappande tider", "start", "Start", "stop", "Stoppa", "started_task", "Startat uppgift utan problem", "stopped_task", "Framg\xe5ngsrikt stoppad uppgift", "resumed_task", "fortsatt uppgiften utan problem", "now", "Nu", _s16_184, "Starta automatiskt uppgifter", "timer", "Timer", "manual", "Manuell", "budgeted", "Budgeterat", "start_time", "Start-tid", "end_time", "Sluttid", "date", "Datum", "times", "Tider", "duration", "Varaktighet", "new_task", "Ny uppgift", "created_task", "Framg\xe5ngsrikt skapad uppgift", "updated_task", "Lyckad uppdatering av uppgift", "archived_task", "Framg\xe5ngsrikt arkiverad uppgift", "deleted_task", "Framg\xe5ngsrikt raderad uppgift", "restored_task", "Framg\xe5ngsrikt \xe5terst\xe4lld uppgift", "archived_tasks", "Framg\xe5ngsrikt arkiverade :count uppgifter", "deleted_tasks", "Framg\xe5ngsrikt raderade :count uppgifter", "restored_tasks", ":value uppgifter har \xe5terst\xe4llts", _s19_55, "Ange ett namn", "budgeted_hours", "Budgeterade timmar", "created_project", "Projekt skapat", "updated_project", "Projektet uppdaterat", _s16_186, "Projekt arkiverat", "deleted_project", "Projekt borttaget", _s16_187, "Projekt \xe5terst\xe4llt", _s17_111, ":count projekt arkiverade", _s16_188, ":count projekt borttagna", _s17_112, ":value projekt har \xe5terst\xe4llts", "new_project", "Nytt projekt", _s27_45, "Tack f\xf6r att du anv\xe4nder v\xe5r app!", "if_you_like_it", "Om du gillar det", "click_here", "klicka h\xe4r", _s18_90, "Klicka h\xe4r", "to_rate_it", "att betygs\xe4tta det.", "average", "Genomsnitt", "unapproved", "Icke godk\xe4nd", _s30_15, "V\xe4nligen autentisera f\xf6r att \xe4ndra denna inst\xe4llning", "locked", "L\xe5st", "authenticate", "Autentisera", _s19_57, "V\xe4nligen autentisera", _s24_46, "Biometrisk autentisering", "footer", "Sidfot", "compare", "J\xe4mf\xf6r", "hosted_login", "Hosted inloggning", "selfhost_login", "Sj\xe4lvhostad inloggning", "google_sign_in", "Logga in med Google", "today", "Idag", "custom_range", "Anpassat intervall", "date_range", "Datumintervall", "current", "Nuvarande", "previous", "F\xf6reg\xe5ende", "current_period", "Nuvarande period", _s17_113, "J\xe4mf\xf6relseperiod", "previous_period", _s17_236, "previous_year", _s17_236, "compare_to", "J\xe4mf\xf6r med", "last7_days", "Senaste 7 dagarna", "last_week", "F\xf6rra veckan", "last30_days", "Senaste 30 dagarna", "this_month", "Denna m\xe5naden", "last_month", "Senaste m\xe5naden", "this_year", "Detta \xe5ret", "last_year", "Senaste \xe5ret", "custom", "Utforma", _s16_189, "Klona till faktura", "clone_to_quote", "Klona till offert", "clone_to_credit", "Klona till kredit", "view_invoice", "Visa faktura", "convert", "Konvertera", "more", "Mer", "edit_client", "Redigera kund", "edit_product", "Redigera produkt", "edit_invoice", "Redigera faktura", "edit_quote", "\xc4ndra offert", "edit_payment", "\xc4ndra betalning", "edit_task", "Redigera uppgift", "edit_expense", "Redigera kostnad", "edit_vendor", "\xc4ndra leverant\xf6r", "edit_project", "\xc4ndra produkt", _s20_68, "Redigera \xe5terkommande offerter", "billing_address", "Fakturaadress", _s16_191, "Leveransadress", "total_revenue", "Totala int\xe4kter", "average_invoice", "Genomsnittlig faktura", "outstanding", "Utest\xe5ende/Obetalt", "invoices_sent", _s24_112, "active_clients", "aktiva kunder", "close", "St\xe4ng", "email", "E-post", "password", "L\xf6senord", "url", "URL", "secret", "Hemlig", "name", "Namn", "logout", "Logga ut", "login", "Logga in", "filter", "Filter", "sort", "Sortera", "search", "S\xf6k", "active", "Aktiv", "archived", "Arkiverad", "deleted", "Ta bort", "dashboard", "\xd6versikt", "archive", "Arkiv", "delete", "Ta bort", "restore", "\xc5terst\xe4ll", _s16_193, "Uppdatering klar", _s23_38, "Ange din e-postadress", _s26_32, "Ange ditt l\xf6senord", _s21_77, "Ange din URL", _s26_34, "Ange din produktnyckel", "ascending", "Stigande", "descending", "Fallande", "save", "Spara", _s17_115, "Ett fel uppstod", "paid_to_date", "Betalt hittills", "balance_due", "Resterande belopp", "balance", "Balans", "overview", "\xd6versikt", "details", "Detaljer", "phone", "Telefon", "website", "Hemsida", "vat_number", "Momsregistreringsnummer", "id_number", "ID-nummer", "create", "Skapa", _s19_59, "Kopierade :value till urklipp", "error", "Error", _s16_195, "Kunde inte starta", "contacts", "Kontakter", "additional", "Ytterligare", "first_name", "F\xf6rnamn", "last_name", "Efternamn", "add_contact", "L\xe4gg till kontakt", "are_you_sure", "\xc4r du s\xe4ker?", "cancel", "Avbryt", "ok", "Ok", "remove", "Ta bort", _s16_197, "E-postadressen \xe4r ogiltig", "product", "Produkt", "products", "Produkter", "new_product", "Ny produkt", "created_product", "Produkt skapad", "updated_product", "Produkt uppdaterad", _s16_199, "Produkt arkiverad", "deleted_product", "Produkt borttagen", _s16_200, "Produkt \xe5terst\xe4lld", _s17_117, "Arkiverade :count produkter utan problem", _s16_201, ":count produkter borttagna", _s17_118, ":value produkter har \xe5terst\xe4llts", "product_key", "Produkt", "notes", "Notis", "cost", "Kostnad", "client", "Kund", "clients", "Kunder", "new_client", "Ny kund", "created_client", "Kund skapad", "updated_client", "Kund uppdaterad", "archived_client", "Kund arkiverad", _s16_202, ":count kunder arkiverade", "deleted_client", "kund borttagen", "deleted_clients", ":count kunder borttagna", "restored_client", "Kund \xe5terst\xe4lld", _s16_203, ":value kunder har \xe5terst\xe4llts", "address1", "Adress 1", "address2", "Adress 2", "city", "Ort", "state", "Landskap", "postal_code", "Postnummer", "country", "Land", "invoice", "Faktura", "invoices", "Fakturor", "new_invoice", "Ny faktura", "created_invoice", "Faktura skapad", "updated_invoice", "Faktura uppdaterad", _s16_204, "Faktura arkiverad", "deleted_invoice", "Faktura borttagen", _s16_205, "Faktura \xe5terst\xe4lld", _s17_119, ":count fakturor arkiverade", _s16_206, ":count fakturor borttagna", _s17_120, ":value fakturor har \xe5terst\xe4llts", "emailed_invoice", "Faktura skickad som e-post", "emailed_payment", "Epostade betalningen utan problem", "amount", "Summa", "invoice_number", "Fakturanummer", "invoice_date", "Fakturadatum", "discount", "Rabatt", "po_number", "Referensnummer", "terms", "Villkor", "public_notes", "Publika noteringar", "private_notes", "Privata anteckningar", "frequency", "Frekvens", "start_date", "Startdatum", "end_date", "Slutdatum", "quote_number", "Offertnummer", "quote_date", "Offertdatum", "valid_until", "Giltig till", "items", "Artiklar", "partial_deposit", "Delvis/deposition", "description", "Beskrivning", "unit_cost", "Enhetspris", "quantity", "Antal", "add_item", "L\xe4gg till artikel", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Totala summan", "pdf", "PDF", "due_date", "Sista betalningsdatum", _s16_207, "Delvis f\xf6rfallen", "status", "Status", _s17_121, "Fakturastatus", "quote_status", "Offertstatus", _s22_56, "Klicka + f\xf6r att l\xe4gga till en artikel", _s22_58, "Klicka + f\xf6r att l\xe4gga till tid", "count_selected", ":count markerade", "total", "Totalsumma", "percent", "Procent", "edit", "\xc4ndra", "dismiss", "Avf\xe4rda", _s20_70, "V\xe4lj ett datum", _s22_59, "V\xe4lj en kund", _s24_48, "V\xe4lj en faktura", "task_rate", "Uppgifts taxa", "settings", "Inst\xe4llningar", "language", "Spr\xe5k", "currency", "Valuta", "created_at", "Skapat datum", "created_on", "Skapad", "updated_at", "Uppdaterad", "tax", "Moms", _s30_17, "Ange ett fakturanummer", _s27_49, "Ange ett offertnummer", "past_due", "F\xf6rfallen", "draft", "Utkast", "sent", "Skickat", "viewed", "Visad", "approved", "Godk\xe4nd", "partial", "delins\xe4ttning", "paid", "Betald", "mark_sent", "Markera skickad", _s22_61, "Fakturan har markerats som skickad", _s22_62, "Fakturan har markerats som betalad", _s23_40, "Fakturorna har markerats som skickade", _s23_41, "Fakturorna har markerats som betalade", "done", "Klar", _s37_18, "Ange kundens namn eller kontaktperson", "dark_mode", "M\xf6rkt l\xe4ge", _s27_51, "Starta om appen f\xf6r att till\xe4mpa \xe4ndringen", "refresh_data", "Uppdatera data", "blank_contact", "Tom kontakt", "activity", "H\xe4ndelse", _s16_209, "Inga uppgifter funna", "clone", "Kopiera", "loading", "Laddar", "industry", "Industri", "size", "Storlek", "payment_terms", _s17_235, "payment_date", "Betalningsdatum", "payment_status", "Betalningsstatus", _s16_211, "V\xe4ntande", _s16_212, "Ogiltig", _s16_213, "Misslyckad", _s16_214, "Avslutad", _s16_215, _s18_215, _s16_216, "\xc5terbetalad", _s17_122, "Outnyttjad", _s17_123, "Delvis oanv\xe4nd", "net", "Netto", "client_portal", "Kundportal", "show_tasks", "Visa uppgifter", "email_reminders", "E-postp\xe5minnelser", "enabled", "Aktiverad", "recipients", "Mottagare", "initial_email", "P\xe5b\xf6rja epost", "first_reminder", "F\xf6rsta P\xe5minnelse", "second_reminder", "Andra P\xe5minnelse", "third_reminder", _s17_178, "reminder1", "F\xf6rsta p\xe5minnelsen", "reminder2", "Andra p\xe5minnelsen", "reminder3", "Tredje p\xe5minnelsen", "template", "Mall", "send", "Skicka", "subject", "Subject", "body", "Organisation/Avdelning", "send_email", "Skicka epost", "email_receipt", "E-posta kvitto till kunden", "auto_billing", "Automatisk fakturering", "button", "Knapp", "preview", "F\xf6rhandsgranska", "customize", "Skr\xe4ddarsy", "history", "Historik", "payment", "Betalning", "payments", "Betalningar", "refunded", "\xc5terbetalad", "payment_type", "Betalningstyp", _s21_79, "Transaktion referens", "enter_payment", "Ange betalning", "new_payment", "Ny betalning", "created_payment", "Betalning registrerad", "updated_payment", "Betalning uppdaterad", _s16_217, "Betalning arkiverad", "deleted_payment", "Betalning borttagen", _s16_218, "betalning \xe5terst\xe4lld", _s17_124, ":count betalningar arkiverade", _s16_219, ":count betalningar borttagna", _s17_125, ":value betalningar har \xe5terst\xe4llts", "quote", "Offert", "quotes", "Offerter", "new_quote", "Ny offert", "created_quote", "Offert skapad", "updated_quote", "Offert uppdaterad", "archived_quote", "Offert arkiverad", "deleted_quote", "Offert borttagen", "restored_quote", "Offert \xe5terst\xe4lld", "archived_quotes", ":count offerter arkiverade", "deleted_quotes", ":count offerter borttagna", "restored_quotes", ":value offerter har \xe5terst\xe4llts", "expense", "Utgift", "expenses", "Utgifter", "vendor", "Leverant\xf6r", "vendors", "Leverant\xf6rer", "task", "Uppgift", "tasks", "Uppgifter", "project", "Projekt", "projects", "Projekt", "activity_1", ":user skapade kund :client", "activity_2", ":user arkiverade kund :client", "activity_3", ":user raderade kund :client", "activity_4", ":user skapade faktura :invoice", "activity_5", ":user uppdaterade faktura :invoice", "activity_6", ":user mailade faktura :invoice f\xf6r :client till :contact", "activity_7", ":contact visade faktura :invoice f\xf6r :client", "activity_8", ":user arkiverade faktura :invoice", "activity_9", ":user raderade faktura :invoice", "activity_10", _s85_0, "activity_11", ":user uppdaterade betalning :payment", "activity_12", ":user arkiverade betalning :payment", "activity_13", ":user tog bort betalning :payment", "activity_14", ":user skickade in :credit kredit", "activity_15", ":user updaterade :credit kredit", "activity_16", ":user arkiverade :credit kredit", "activity_17", ":user tog bort :credit kredit", "activity_18", ":user skapade offert :quote", "activity_19", ":user uppdaterade offert :quote", "activity_20", ":user mailade offert :quote f\xf6r :client f\xf6r :contact", "activity_21", ":contact visade offert :quote", "activity_22", ":user arkiverade offert :quote", "activity_23", ":user tog bort offert :quote", "activity_24", ":user \xe5terst\xe4llde offert :quote", "activity_25", ":user \xe5terst\xe4llde faktura :invoice", "activity_26", ":user \xe5terst\xe4llde kund :client", "activity_27", ":user \xe5terst\xe4llde betalning :payment", "activity_28", ":user \xe5terst\xe4llde :credit kredit", "activity_29", _s42_13, "activity_30", ":user skapade leverant\xf6r :vendor", "activity_31", ":user arkiverade leverant\xf6r :vendor", "activity_32", ":user tog bort leverant\xf6r :vendor", "activity_33", ":user \xe5terst\xe4llde leverant\xf6r :vendor", "activity_34", ":user skapade kostnad :expense", "activity_35", ":user arkiverade kostnad :expense", "activity_36", ":user tog bort kostnad :expense", "activity_37", ":user \xe5terst\xe4llde kostnad :expense", "activity_39", ":user avbr\xf6t en :payment_amount betalning :payment", "activity_40", ":user \xe5terbetalade :adjustment av en :payment_amount betalning :payment", "activity_41", ":payment_amount betalning (:payment) misslyckad", "activity_42", ":user skapade uppgift :task", "activity_43", ":user uppdaterade uppgift :task", "activity_44", ":user arkiverade uppgift :task", "activity_45", ":user tog bort uppgift :task", "activity_46", ":user \xe5terst\xe4llde uppgift :task", "activity_47", ":user uppdaterade kostnad :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", ":user \xe5ter\xf6ppnade \xe4rende :ticket", "activity_55", ":contact svarade p\xe5 \xe4rende :ticket", "activity_56", ":user visade \xe4rende :ticket", "activity_57", "Systemet kunde inte skicka fakturan via e-post :invoice", "activity_58", ":user omv\xe4nd faktura :invoice", "activity_59", ":user avbruten faktura :invoice", "activity_60", ":contact har kollat p\xe5 offerten :quote", "activity_61", ":user uppdaterade kunden :client", "activity_62", ":user uppdaterade leverant\xf6ren :vendor", "activity_63", ":user mejlade f\xf6rsta p\xe5minnelsen f\xf6r faktura :invoice till :contact", "activity_64", ":user emaimejlade andra p\xe5minnelsen f\xf6r faktura :invoice till :contact", "activity_65", ":user mejlade tredje p\xe5minnelsen f\xf6r faktura :invoice till :contact", "activity_66", ":user mejlade en o\xe4ndlig p\xe5minnelse f\xf6r faktura :invoice till :contact", "activity_80", ":user skapade prenumerationen :subscription", "activity_81", ":user uppdaterade prenumerationen :subscription", "activity_82", ":user arkiverade prenumerationen :subscription", "activity_83", ":user raderade prenumerationen :subscription", "activity_84", ":user \xe5terst\xe4llde prenumerationen :subscription", _s17_126, "Eng\xe5ngs l\xf6senord", "emailed_quote", "Offert e-postad", "emailed_credit", _s32_41, _s20_72, "Offerten har markerats som skickad", _s21_81, "Krediten har markerats som skickad", "expired", "Utg\xe5tt", "all", "Alla", "select", "V\xe4lj", _s22_63, "Tryck l\xe4nge p\xe5 meny", "custom_value1", "Anpassat v\xe4rde", "custom_value2", "Anpassat v\xe4rde", "custom_value3", "Anpassat v\xe4rde 3", "custom_value4", "Anpassat v\xe4rde 4", _s18_91, "Anpassad e-poststil", _s24_53, "Anpassat \xf6versiktsmeddelande", _s29_36, "Anpassat obetalt fakturameddelande", _s27_56, "Anpassat betalt fakturameddelande", _s31_18, "Anpassat icke godk\xe4nt offertmeddelande", "lock_invoices", "L\xe5s fakturor", "translations", "\xd6vers\xe4ttningar", _s19_60, "Uppgift nummerformat", _s19_62, "Uppgift nummerr\xe4knare", _s22_65, "Utgift nummerformat", _s22_67, "Utgift nummerr\xe4knare", _s21_82, "Leverant\xf6r nummerformat", _s21_84, "Leverant\xf6r nummerr\xe4knare", _s21_86, "\xc4rende nummerformat", _s21_88, "\xc4rende nummerr\xe4knare", _s22_69, "Betalning nummerformat", _s22_71, "Betalning nummerr\xe4knare", _s22_73, "Faktura nummerformat", _s22_75, "Fakturar\xe4knare", _s20_73, "Offert nummerformat", _s20_75, "Offertr\xe4knare", _s21_90, "Kund nummerformat", _s21_92, "Kund nummerr\xe4knare", _s21_94, "Kredit nummerformat", _s21_95, "Kredit nummerr\xe4knare", _s18_93, "\xc5terst\xe4ll r\xe4knedatum", "counter_padding", "Utfyllnad f\xf6r r\xe4knare", _s28_56, "Delad r\xe4knare f\xf6r fakturor och offerter", _s18_95, "Standardskattnamn 1", _s18_97, "Standard skattesats 1", _s18_99, "Standardskattnamn 2", _s18_101, "Standard skattesats 2", _s18_103, "Standardskattnamn 3", _s18_105, "Standard skattesats 3", _s21_96, "E-postfakturans \xe4mne", _s19_64, "E-postoffertens \xe4mne", _s21_98, "E-postbetalningens \xe4mne", _s29_38, "\xc4mne f\xf6r delbetalning via e-post", "show_table", "Visa tabell", "show_list", "Visa lista", "client_city", "Kundens stad", "client_state", "Kundens landskap", "client_country", "Kundens land", _s16_220, "Kunden \xe4r aktiv", "client_balance", "Kundens balans", "client_address1", "Kundens adress 1", "client_address2", "Kundens adress 2", "vendor_address1", "Leverant\xf6rsadress", "vendor_address2", "Leverant\xf6rsadress 2", _s24_55, "Kundens leveransadress 1", _s24_56, "Kundens leveransadress 2", "type", "Typ", "invoice_amount", "Faktura belopp", _s16_224, "F\xf6rfallodatum", "tax_rate1", "Skattesats 1", "tax_rate2", "Skattesats 2", "tax_rate3", "Skattesats 3", "auto_bill", "Auto debitera", "archived_at", "Arkiverad kl", "has_expenses", "Har utgifter", "custom_taxes1", "Anpassade skatter 1", "custom_taxes2", "Anpassade skatter 2", "custom_taxes3", "Anpassade skatter 3", "custom_taxes4", "Anpassade skatter 4", _s17_128, _s25_97, _s17_129, _s25_98, _s17_130, _s25_99, _s17_131, _s25_100, "is_deleted", "\xc4r raderad", "vendor_city", "Leverant\xf6rens stad", "vendor_state", "Leverant\xf6rens landskap", "vendor_country", "Leverant\xf6rens land", "is_approved", "\xc4r godk\xe4nd", "tax_name", "Skattenamn", "tax_amount", "Moms summa", "tax_paid", "Moms betalad", "payment_amount", "Betald summa", "age", "\xc5lder", "is_running", "K\xf6rs", "time_log", "Tidslogg", "bank_id", "Bank", _s19_66, "Utgiftskategori ID", _s16_225, "Kostnads kategori", _s19_68, "Fakturavaluta ID", "tax_name1", "Skattnamn 1", "tax_name2", "Skattnamn 2", "tax_name3", "Skattnamn 3", "transaction_id", "Transaktions ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "th", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e04\u0e49\u0e32\u0e07", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e0a\u0e48\u0e2d\u0e07\u0e17\u0e32\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e25\u0e07\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", _s17_6, _s17_7, "week", "\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "range", "Range", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", "\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a :amount \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19 :total.", _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u0e15\u0e31\u0e49\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "\u0e14\u0e39\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 # :expense", "view_statement", "\u0e14\u0e39\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "\u0e23\u0e30\u0e1a\u0e1a", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "\u0e08\u0e32\u0e01\u0e0a\u0e37\u0e48\u0e2d", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", _s21_16, "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e0b\u0e49\u0e33\u0e43\u0e2b\u0e21\u0e48", _s22_24, "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e1b\u0e23\u0e30\u0e08\u0e33", _s25_2, "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s25_3, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s26_2, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", _s25_4, "\u0e25\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s25_5, _s38_2, _s26_3, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e41\u0e25\u0e49\u0e27", _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, "\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", _s17_17, "\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "order", "Order", "unassigned", "\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e21\u0e2d\u0e1a\u0e2b\u0e21\u0e32\u0e22", "partial_value", "\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e41\u0e25\u0e30\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e42\u0e14\u0e40\u0e21\u0e19\u0e22\u0e48\u0e2d\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07.", _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", "\u0e2a\u0e48\u0e07\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07", _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, "\u0e01\u0e32\u0e23\u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19", _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "\u0e07\u0e32\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_expense", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0e0b\u0e48\u0e2d\u0e19", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", "sample", "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", "map_to", "Map To", "import", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", _s25_15, _s29_6, "select_file", "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e1f\u0e25\u0e4c", _s16_60, _s16_61, "csv_file", "\u0e44\u0e1f\u0e25\u0e4c CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e08\u0e48\u0e32\u0e22", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", "invoice_total", "\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21\u0e15\u0e32\u0e21\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_total", "\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "credit_total", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s20_42, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", _s21_40, _s21_41, _s24_28, "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s24_29, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s25_19, "\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e47\u0e1a\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s24_30, "\u0e19\u0e33\u0e2d\u0e2d\u0e01\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s24_31, _s37_7, _s25_20, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s27_21, "\u0e08\u0e31\u0e14\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "\u0e04\u0e27\u0e23\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e27\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "\u0e17\u0e33\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33", _s18_45, "\u0e17\u0e33\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33", _s21_47, "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33\u0e43\u0e2b\u0e21\u0e48", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s25_28, "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s25_29, _s38_11, _s26_12, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e41\u0e25\u0e49\u0e27", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "\u0e01\u0e33\u0e44\u0e23", "line_item", "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "\u0e14\u0e39\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25", "copy_link", "Copy Link", "token_billing", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", _s24_34, _s24_35, "always", "\u0e15\u0e25\u0e2d\u0e14\u0e40\u0e27\u0e25\u0e32", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a", "client_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "auto_convert", "Auto Convert", "company_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_quotes", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_credits", _s28_57, "gateway", "\u0e40\u0e01\u0e15\u0e40\u0e27\u0e22\u0e4c", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", "statement", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "taxes", "\u0e20\u0e32\u0e29\u0e35", "surcharge", "\u0e04\u0e34\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "apply_payment", "Apply Payment", "apply_credit", "\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "apply", "Apply", "unapplied", "Unapplied", "select_label", "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u0e44\u0e1b\u0e22\u0e31\u0e07", "health_check", "Health Check", "payment_type_id", "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", _s17_59, _s17_60, "recent_payments", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "upcoming_quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", "expired_quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38", "create_client", "Create Client", "create_invoice", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "create_quote", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "create_payment", "Create Payment", "create_vendor", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "update_quote", "Update Quote", "delete_quote", "\u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "update_invoice", "Update Invoice", "delete_invoice", "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "update_client", "Update Client", "delete_client", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "delete_payment", "\u0e25\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "update_vendor", "Update Vendor", "delete_vendor", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "create_task", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", "update_task", "Update Task", "delete_task", "\u0e25\u0e1a\u0e07\u0e32\u0e19", "approve_quote", "Approve Quote", "off", "\u0e1b\u0e34\u0e14", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0e1f\u0e23\u0e35", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "\u0e41\u0e01\u0e49\u0e44\u0e02 Token", "created_token", "\u0e2a\u0e23\u0e49\u0e32\u0e07 Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "updated_token", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17 Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "archived_token", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 Token \u0e41\u0e25\u0e49\u0e27", "deleted_token", "\u0e25\u0e1a Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", "email_quote", _s16_373, "email_credit", "Email Credit", "email_payment", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s20_51, "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s20_52, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s21_50, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0e22\u0e2d\u0e14\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u0e1e\u0e34\u0e40\u0e28\u0e29", "inclusive", "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e04\u0e37\u0e19", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e15\u0e47\u0e21", _s17_71, "\u0e40\u0e21\u0e37\u0e2d\u0e07 / \u0e23\u0e31\u0e10 / \u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c", _s17_73, "\u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c / \u0e40\u0e21\u0e37\u0e2d\u0e07 / \u0e23\u0e31\u0e10", "custom1", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e41\u0e23\u0e01", "custom2", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e07", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u0e25\u0e49\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", _s16_91, _s32_10, _s18_54, "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19: \u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49\u0e08\u0e30\u0e25\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e04\u0e37\u0e19\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e44\u0e14\u0e49", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 \u0e27\u0e31\u0e19", "age_group_30", "30 - 60 \u0e27\u0e31\u0e19", "age_group_60", "60 - 90 \u0e27\u0e31\u0e19", "age_group_90", "90 - 120 \u0e27\u0e31\u0e19", "age_group_120", "120+ \u0e27\u0e31\u0e19", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s20_161, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e44\u0e25\u0e40\u0e0b\u0e19\u0e15\u0e4c", "cancel_account", "\u0e25\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", _s22_44, "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19: \u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49\u0e08\u0e30\u0e25\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e44\u0e14\u0e49", "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", "load_design", "\u0e42\u0e2b\u0e25\u0e14\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, _s16_97, "recurring_tasks", "Recurring Tasks", _s18_55, "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35", "credit_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "credit", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "credits", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "new_credit", "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "edit_credit", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "created_credit", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_credit", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e41\u0e25\u0e49\u0e27", "archived_credit", "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_credit", "\u0e25\u0e1a\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "removed_credit", _s27_34, "restored_credit", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_98, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "deleted_credits", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", _s16_99, _s36_9, "current_version", "\u0e23\u0e38\u0e48\u0e19\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "\u0e2d\u0e48\u0e32\u0e19\u0e15\u0e48\u0e2d", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17\u0e43\u0e2b\u0e21\u0e48", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15", "number", "Number", "export", "\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01", "chart", "\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34", "count", "Count", "totals", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "blank", "\u0e27\u0e48\u0e32\u0e07", "day", "\u0e27\u0e31\u0e19", "month", "\u0e40\u0e14\u0e37\u0e2d\u0e19", "year", "\u0e1b\u0e35", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "\u0e08\u0e31\u0e14\u0e01\u0e25\u0e38\u0e48\u0e21\u0e15\u0e32\u0e21", "credit_balance", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "\u0e23\u0e2b\u0e31\u0e2a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "assigned_to", "Assigned to", "created_by", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e14\u0e22 :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u0e04\u0e2d\u0e25\u0e31\u0e21", "aging", "\u0e2d\u0e32\u0e22\u0e38\u0e25\u0e39\u0e01\u0e2b\u0e19\u0e35\u0e49", "profit_and_loss", "\u0e01\u0e33\u0e44\u0e23\u0e41\u0e25\u0e30\u0e02\u0e32\u0e14\u0e17\u0e38\u0e19", "reports", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "report", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "add_company", "\u0e40\u0e1e\u0e34\u0e48\u0e21 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", "refund", "\u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", "multiselect", "Multiselect", "entity_state", "\u0e2a\u0e16\u0e32\u0e19\u0e30", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", "from", "\u0e08\u0e32\u0e01", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "support forum", "about", "About", "documentation", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", "contact_us", "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32", "subtotal", "\u0e23\u0e27\u0e21\u0e40\u0e07\u0e34\u0e19", "line_total", "\u0e23\u0e27\u0e21\u0e40\u0e07\u0e34\u0e19", "item", "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_58, "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b", _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "\u0e43\u0e0a\u0e48", "no", "\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "\u0e14\u0e39", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, "\u0e42\u0e1b\u0e23\u0e14\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e20\u0e32\u0e29\u0e35", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "\u0e2a\u0e25\u0e31\u0e1a", _s19_40, _s20_63, "options", "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", _s16_142, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", "late_fees", "Late Fees", "credit_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "payment_number", "Payment Number", "late_fee_amount", "\u0e04\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e25\u0e48\u0e32\u0e0a\u0e49\u0e32\u0e08\u0e33\u0e19\u0e27\u0e19", _s16_143, "\u0e04\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e25\u0e48\u0e32\u0e0a\u0e49\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e19\u0e15\u0e4c", "schedule", "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e27\u0e25\u0e32", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "\u0e27\u0e31\u0e19", "invoice_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "payment_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", _s16_373, _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "\u0e1c\u0e39\u0e49\u0e14\u0e39\u0e41\u0e25\u0e23\u0e30\u0e1a\u0e1a", _s18_74, "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "user_management", "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "users", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "new_user", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e43\u0e2b\u0e21\u0e48", "edit_user", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "created_user", _s25_36, "updated_user", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_user", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27", "deleted_user", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "removed_user", _s25_39, "restored_user", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", "invoice_options", "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s17_86, "\u0e0b\u0e48\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", _s22_52, '\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 "\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48" \u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e49\u0e27', _s23_26, "\u0e1d\u0e31\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", _s28_20, "\u0e23\u0e27\u0e21\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e41\u0e19\u0e1a\u0e21\u0e32\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_151, "\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", _s16_152, "\u0e41\u0e2a\u0e14\u0e07\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", "first_page", "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01", "all_pages", "\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "last_page", "\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u0e2a\u0e35\u0e2b\u0e25\u0e31\u0e01", "secondary_color", "\u0e2a\u0e35\u0e23\u0e2d\u0e07", "page_size", "\u0e02\u0e19\u0e32\u0e14\u0e2b\u0e19\u0e49\u0e32", "font_size", "\u0e02\u0e19\u0e32\u0e14\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", "quote_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "invoice_fields", "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "product_fields", "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "invoice_terms", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_footer", "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_terms", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quote_footer", "\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "\u0e41\u0e1b\u0e25\u0e07\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s23_29, "\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", _s17_88, _s17_89, "freq_daily", "Daily", "freq_weekly", "\u0e23\u0e32\u0e22\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", "freq_two_weeks", "\u0e2a\u0e2d\u0e07\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", "freq_four_weeks", "\u0e2a\u0e35\u0e48\u0e2a\u0e31\u0e1a\u0e14\u0e32\u0e2b\u0e4c", "freq_monthly", "\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", "freq_two_months", "2 \u0e40\u0e14\u0e37\u0e2d\u0e19", _s17_90, "\u0e2a\u0e32\u0e21\u0e40\u0e14\u0e37\u0e2d\u0e19", _s16_153, "Four months", "freq_six_months", "\u0e2b\u0e01\u0e40\u0e14\u0e37\u0e2d\u0e19", "freq_annually", "\u0e23\u0e32\u0e22\u0e1b\u0e35", "freq_two_years", "Two years", _s16_154, "Three Years", "never", "\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22", "company", "Company", _s17_91, "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19", "charge_taxes", "\u0e20\u0e32\u0e29\u0e35\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "next_reset", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e04\u0e23\u0e31\u0e49\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b", "reset_counter", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e15\u0e31\u0e27\u0e19\u0e31\u0e1a", _s16_155, "\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07 CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, "Checkbox \u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s30_9, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s23_30, "Checkbox \u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s28_21, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s25_41, "\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s30_10, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e31\u0e14\u0e2b\u0e32\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19", _s23_31, "\u0e25\u0e32\u0e22\u0e21\u0e37\u0e2d\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s22_54, "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s27_36, "\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e31\u0e49\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e25\u0e30\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d \u0e2b\u0e32\u0e01\u0e21\u0e35\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e01\u0e48\u0e2d\u0e19\u0e14\u0e39\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "authorization", "\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", "subdomain", "Subdomain", "domain", "\u0e42\u0e14\u0e40\u0e21\u0e19", "portal_mode", "Portal Mode", "email_signature", "\u0e14\u0e49\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e04\u0e32\u0e23\u0e1e", _s24_38, "\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e07\u0e48\u0e32\u0e22\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e21\u0e32\u0e23\u0e4c\u0e01\u0e2d\u0e31\u0e1b schema.org \u0e25\u0e07\u0e43\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", "plain", "\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32", "light", "\u0e1a\u0e32\u0e07", "dark", "\u0e21\u0e37\u0e14", "email_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 Markup", "reply_to_email", "\u0e15\u0e2d\u0e1a\u0e01\u0e25\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "bank_transfer", "\u0e42\u0e2d\u0e19\u0e40\u0e07\u0e34\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e48\u0e32\u0e15\u0e48\u0e33\u0e2a\u0e38\u0e14", "enable_max", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e48\u0e32\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14", "min_limit", "\u0e15\u0e48\u0e33\u0e2a\u0e38\u0e14 :min", "max_limit", "\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14 :max", "min", "\u0e19\u0e49\u0e2d\u0e22", "max", "\u0e21\u0e32\u0e01", _s19_43, "\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e42\u0e25\u0e42\u0e01\u0e49\u0e02\u0e2d\u0e07\u0e1a\u0e31\u0e15\u0e23", "credentials", "Credentials", "update_address", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", _s19_45, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e42\u0e14\u0e22\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e44\u0e27\u0e49", "rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32", "tax_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", "new_tax_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e43\u0e2b\u0e21\u0e48", "edit_tax_rate", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", _s16_160, _s28_99, _s16_161, _s28_99, _s17_98, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "\u0e40\u0e15\u0e34\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s18_80, "\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e08\u0e30\u0e40\u0e15\u0e34\u0e21\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", "update_products", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s20_65, "\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 \u0e08\u0e30\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", "limits", "\u0e08\u0e33\u0e01\u0e31\u0e14", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c", "monday", "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c", "tuesday", "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23", "wednesday", "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", "thursday", "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35", "friday", "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c", "saturday", "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c", "january", "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", "february", "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", "march", "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", "april", "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", "may", "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", "june", "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", "july", "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", "august", "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", "september", "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", "october", "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", "november", "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", "december", "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "www", "saved_settings", _s27_39, _s16_169, "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "device_settings", "Device Settings", "defaults", "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "basic_settings", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", _s17_103, "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07", "company_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "user_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "localization", "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e43\u0e2b\u0e49\u0e40\u0e02\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e17\u0e49\u0e2d\u0e07\u0e16\u0e34\u0e48\u0e19", "online_payments", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c", "tax_rates", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", "notifications", "\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", "import_export", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32 | \u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01", "custom_fields", "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", "invoice_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "buy_now_buttons", "\u0e1b\u0e38\u0e48\u0e21\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49", "email_settings", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", _s23_37, "\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e15\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", _s22_55, _s20_67, _s19_51, "\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e20\u0e32\u0e1e\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "privacy_policy", "\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27", "sign_up", "\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19", "account_login", "\u0e25\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e43\u0e0a\u0e49", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23:", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1a\u0e34\u0e01\u0e08\u0e48\u0e32\u0e22", "pending", "\u0e23\u0e2d\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "\u0e41\u0e1b\u0e25\u0e07", _s24_44, "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e25\u0e07\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "exchange_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", _s16_178, "\u0e41\u0e1b\u0e25\u0e07\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", "mark_paid", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e49\u0e27", "category", "\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e01", "address", "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", "new_vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", "created_vendor", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "updated_vendor", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "archived_vendor", "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e40\u0e01\u0e47\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_vendor", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "restored_vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_179, "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e02\u0e49\u0e32\u0e04\u0e25\u0e31\u0e07\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "deleted_vendors", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", _s16_180, _s36_11, "new_expense", "\u0e1b\u0e49\u0e2d\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "created_expense", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "updated_expense", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_181, _s26_91, "deleted_expense", _s18_216, _s16_182, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_109, _s26_91, _s16_183, _s18_216, _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a", _s21_74, _s21_75, "invoiced", "\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "logged", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32", "running", "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e17\u0e33\u0e07\u0e32\u0e19", "resume", "\u0e17\u0e33\u0e15\u0e48\u0e2d\u0e44\u0e1b", "task_errors", "\u0e42\u0e1b\u0e23\u0e14\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e27\u0e25\u0e32\u0e0b\u0e49\u0e2d\u0e19\u0e17\u0e31\u0e1a\u0e01\u0e31\u0e19", "start", "\u0e40\u0e23\u0e34\u0e48\u0e21", "stop", "\u0e2b\u0e22\u0e38\u0e14", "started_task", _s25_47, "stopped_task", "\u0e2b\u0e22\u0e38\u0e14\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "resumed_task", "\u0e17\u0e33\u0e07\u0e32\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "now", "\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49", _s16_184, _s16_185, "timer", "\u0e08\u0e31\u0e1a\u0e40\u0e27\u0e25\u0e32", "manual", "\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d", "budgeted", "Budgeted", "start_time", "\u0e40\u0e27\u0e25\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "end_time", "\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", "date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "times", "\u0e40\u0e27\u0e25\u0e32", "duration", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32", "new_task", "\u0e07\u0e32\u0e19\u0e43\u0e2b\u0e21\u0e48", "created_task", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_task", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "archived_task", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_task", "\u0e25\u0e1a\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "restored_task", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_tasks", "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e07\u0e32\u0e19", "deleted_tasks", "\u0e25\u0e1a\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e07\u0e32\u0e19", "restored_tasks", _s34_19, _s19_55, "\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e0a\u0e37\u0e48\u0e2d", "budgeted_hours", "Budgeted Hours", "created_project", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "updated_project", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_186, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_project", "\u0e25\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_187, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s17_111, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :count \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s16_188, "\u0e25\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23 :count \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s17_112, _s37_15, "new_project", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "\u0e04\u0e48\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", "unapproved", "\u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "\u0e23\u0e30\u0e1a\u0e38\u0e0a\u0e48\u0e27\u0e07", "date_range", "\u0e0a\u0e48\u0e27\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e19\u0e35\u0e49", "last_month", "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "this_year", "\u0e1b\u0e35\u0e19\u0e35\u0e49", "last_year", "\u0e1b\u0e35\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "custom", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u0e14\u0e39\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "convert", "Convert", "more", "More", "edit_client", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "edit_product", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "edit_invoice", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "edit_quote", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "edit_payment", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "edit_task", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e07\u0e32\u0e19", "edit_expense", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "edit_vendor", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "edit_project", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s20_68, _s20_69, "billing_address", "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", _s16_191, _s16_192, "total_revenue", "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e23\u0e27\u0e21", "average_invoice", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", "outstanding", "\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19", "invoices_sent", _s20_161, "active_clients", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "close", "\u0e1b\u0e34\u0e14", "email", "\u0e2d\u0e35\u0e40\u0e21\u0e25", "password", "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19", "url", "URL", "secret", "Secret", "name", "\u0e0a\u0e37\u0e48\u0e2d", "logout", "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e23\u0e30\u0e1a\u0e1a", "login", "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a", "filter", "\u0e01\u0e23\u0e2d\u0e07", "sort", "Sort", "search", "\u0e04\u0e49\u0e19\u0e2b\u0e32", "active", "\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "archived", "\u0e40\u0e01\u0e47\u0e1a\u0e16\u0e32\u0e27\u0e23", "deleted", "\u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27", "dashboard", "\u0e41\u0e14\u0e0a\u0e1a\u0e2d\u0e23\u0e4c\u0e14", "archive", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e01\u0e48\u0e32", "delete", "\u0e25\u0e1a", "restore", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", _s17_115, _s17_116, "paid_to_date", "\u0e22\u0e2d\u0e14\u0e0a\u0e33\u0e23\u0e30\u0e41\u0e25\u0e49\u0e27", "balance_due", "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", "balance", "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", "overview", "Overview", "details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", "phone", "\u0e42\u0e17\u0e23.", "website", "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", "vat_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e20\u0e32\u0e29\u0e35", "id_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e15\u0e31\u0e27\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19", "create", "\u0e2a\u0e23\u0e49\u0e32\u0e07", _s19_59, _s30_16, "error", "Error", _s16_195, _s16_196, "contacts", "\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "additional", "Additional", "first_name", "\u0e0a\u0e37\u0e48\u0e2d", "last_name", "\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25", "add_contact", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "are_you_sure", "\u0e41\u0e19\u0e48\u0e43\u0e08\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?", "cancel", "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", "ok", "Ok", "remove", "\u0e40\u0e2d\u0e32\u0e2d\u0e2d\u0e01", _s16_197, _s16_198, "product", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "products", "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", "new_product", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e2b\u0e21\u0e48", "created_product", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "updated_product", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s16_199, "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_product", "\u0e25\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e49\u0e27", _s16_200, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e49\u0e27", _s17_117, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :count \u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", _s16_201, "\u0e25\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 :count \u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", _s17_118, _s37_16, "product_key", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "notes", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", "cost", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "client", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "clients", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "new_client", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "created_client", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_client", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_client", "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_202, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27: \u0e19\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "deleted_client", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_clients", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "restored_client", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_203, _s36_13, "address1", "\u0e16\u0e19\u0e19", "address2", "\u0e2d\u0e32\u0e04\u0e32\u0e23", "city", "\u0e2d\u0e33\u0e40\u0e20\u0e2d", "state", "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14", "postal_code", "\u0e23\u0e2b\u0e31\u0e2a\u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c", "country", "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", "invoice", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoices", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "new_invoice", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "created_invoice", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_invoice", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s16_204, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_invoice", "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_205, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_119, "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_206, "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s17_120, _s37_17, "emailed_invoice", "\u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_payment", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "amount", "\u0e22\u0e2d\u0e14\u0e40\u0e07\u0e34\u0e19", "invoice_number", "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "discount", "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14", "po_number", "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", "terms", "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", "public_notes", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e41\u0e1a\u0e1a\u0e40\u0e1b\u0e34\u0e14", "private_notes", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e20\u0e32\u0e22\u0e43\u0e19", "frequency", "\u0e04\u0e27\u0e32\u0e21\u0e16\u0e35\u0e48", "start_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21", "end_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", "quote_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quote_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", "valid_until", "\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", "unit_cost", "\u0e23\u0e32\u0e04\u0e32\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22", "quantity", "\u0e08\u0e33\u0e19\u0e27\u0e19", "add_item", "Add Item", "contact", "\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "work_phone", "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0e27\u0e31\u0e19\u0e16\u0e36\u0e07\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e0a\u0e33\u0e23\u0e30", _s16_207, _s16_208, "status", "\u0e2a\u0e16\u0e32\u0e19\u0e30", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, "\u0e04\u0e25\u0e34\u0e4a\u0e01\u0e1b\u0e38\u0e48\u0e21 + \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", "count_selected", ":count selected", "total", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "percent", "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e19\u0e15\u0e4c", "edit", "\u0e41\u0e01\u0e49\u0e44\u0e02", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", "language", "Language", "currency", "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0e20\u0e32\u0e29\u0e35", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "\u0e14\u0e23\u0e32\u0e1f", "sent", "\u0e2a\u0e48\u0e07", "viewed", "Viewed", "approved", "Approved", "partial", "\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19 / \u0e40\u0e07\u0e34\u0e19\u0e1d\u0e32\u0e01", "paid", "\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "mark_sent", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e44\u0e27\u0e49", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", _s37_18, _s37_19, "dark_mode", "\u0e42\u0e2b\u0e21\u0e14\u0e01\u0e25\u0e32\u0e07\u0e04\u0e37\u0e19", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", _s16_209, _s16_210, "clone", "\u0e17\u0e33\u0e0b\u0e49\u0e33", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30", "payment_date", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e08\u0e48\u0e32\u0e22", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "Portal \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u0e40\u0e1b\u0e34\u0e14", "recipients", "\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", "initial_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "first_reminder", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e23\u0e31\u0e49\u0e07\u0e41\u0e23\u0e01", "second_reminder", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e23\u0e31\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e07", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0e41\u0e1a\u0e1a", "send", "Send", "subject", "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", "body", "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", "send_email", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", "email_receipt", "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "auto_billing", "Auto billing", "button", "Button", "preview", "\u0e14\u0e39\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", "customize", "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07", "history", "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34", "payment", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "payments", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "refunded", "Refunded", "payment_type", "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s21_79, "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", "enter_payment", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "new_payment", "\u0e1b\u0e49\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", "created_payment", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_payment", "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", _s16_217, "\u0e40\u0e01\u0e47\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_payment", "\u0e25\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_218, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_124, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s16_219, "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s17_125, _s37_20, "quote", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "new_quote", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e21\u0e48", "created_quote", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "updated_quote", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "archived_quote", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "deleted_quote", "\u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "restored_quote", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_quotes", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "deleted_quotes", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "restored_quotes", _s35_21, "expense", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "expenses", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "vendors", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "task", "\u0e07\u0e32\u0e19", "tasks", "\u0e07\u0e32\u0e19", "project", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", "projects", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", "activity_1", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 :client", "activity_2", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :client", "activity_3", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 :client", "activity_4", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_5", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user \u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_9", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_10", _s85_0, "activity_11", ":user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27 :payment", "activity_12", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19 :payment", "activity_13", ":user \u0e25\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19 :payment", "activity_14", ":user \u0e1b\u0e49\u0e2d\u0e19 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_15", ":user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_16", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_17", ":user \u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_18", ":user \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_19", ";user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_20", _s50_9, "activity_21", ":contact \u0e14\u0e39\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_22", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_23", ":user \u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_24", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_25", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_26", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19 \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32 :client", "activity_27", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_28", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_29", _s42_13, "activity_30", ":user \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_31", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_32", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_33", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_34", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_35", ":user \u0e44\u0e14\u0e49\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_36", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_37", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_39", ":user \u0e22\u0e01\u0e40\u0e25\u0e34\u0e01 :payment_amount \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_40", ":usre \u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19 :adjustment\xa0\u0e02\u0e2d\u0e07 :payment_amount \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_41", ":payment_amount \u0e08\u0e48\u0e32\u0e22\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 (:payment) \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27", "activity_42", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19 :task", "activity_43", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e07\u0e32\u0e19 :task", "activity_44", ":user \u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e07\u0e32\u0e19 :task", "activity_45", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e07\u0e32\u0e19 :task", "activity_46", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e07\u0e32\u0e19 :task", "activity_47", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38", "all", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "select", "\u0e40\u0e25\u0e37\u0e2d\u0e01", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "\u0e01\u0e32\u0e23\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s20_73, _s20_74, _s20_75, "\u0e01\u0e32\u0e23\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "\u0e0a\u0e19\u0e34\u0e14", "invoice_amount", "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_224, "\u0e27\u0e31\u0e19\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0e1a\u0e34\u0e25\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e20\u0e32\u0e29\u0e35", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u0e22\u0e2d\u0e14\u0e08\u0e48\u0e32\u0e22", "age", "\u0e2d\u0e32\u0e22\u0e38", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", _s19_66, _s19_67, _s16_225, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1), "tr_TR", A.LinkedHashMap_LinkedHashMap$_literal([_s21_, _s21_0, _s19_, _s29_, _s17_, _s17_0, "activate", "Activate", "connect_apple", "Connect Apple", _s16_, _s16_0, _s18_, _s31_, "send_now", "Send Now", "received", "Received", _s19_0, _s19_1, _s20_, _s33_, _s21_1, _s34_, _s18_0, _s18_1, _s16_1, _s16_2, _s33_0, _s46_, _s34_0, _s47_, _s22_, _s22_0, _s22_1, _s22_2, _s27_, _s34_1, _s24_, _s25_, "yes_its_great", _s16_228, "not_so_much", "Not so much", _s17_1, _s41_, _s22_3, _s49_, "sure_happy_to", "Sure, happy to", "no_not_now", "No, not now", "add", "Add", _s18_2, _s18_3, _s22_4, _s22_5, _s27_0, _s55_1, "vendor_details", "Vendor Details", _s22_6, _s22_7, "qr_iban", "QR IBAN", "besr_id", "BESR ID", "accept", "Accept", _s23_, "Clone to PO", _s20_0, _s41_0, "bulk_send_email", "Send Email", _s29_0, _s42_, _s30_, _s43_, _s23_0, _s36_, _s24_0, _s37_, _s24_1, _s37_0, _s25_0, _s38_, "accepted", "Accepted", _s22_8, _s22_9, _s20_1, _s20_2, _s20_3, _s20_4, _s25_56, _s20_4, _s18_4, _s31_0, "connect_email", "Connect Email", _s16_3, _s16_4, _s32_, _s46_0, "email_provider", "Email Provider", _s17_2, _s17_3, _s20_5, _s20_6, _s19_2, _s32_0, _s22_10, _s35_, _s17_4, _s20_7, _s17_5, _s22_11, _s22_12, _s45_, _s23_1, _s46_1, _s16_5, _s27_1, _s21_2, _s21_3, _s20_8, _s20_9, _s21_4, _s21_5, _s32_1, _s24_2, _s37_1, _s42_0, "purchase_order", "Purchase Order", "purchase_orders", "Purchase Orders", _s18_5, _s18_6, _s19_3, _s19_4, _s22_13, _s35_0, _s22_14, _s35_1, _s23_2, _s36_0, _s22_15, _s35_2, _s22_16, _s35_3, _s23_3, _s36_1, _s21_6, _s21_7, _s22_17, _s22_18, "login_url", "Login URL", _s24_3, _s24_4, _s29_1, _s49_0, _s16_6, _s16_7, "default", "Default", "stock_quantity", "Stock Quantity", _s22_19, _s22_20, "track_inventory", "Track Inventory", _s20_10, _s63_, _s19_5, _s19_6, _s24_5, _s50_, "vat", "VAT", "standing", "Beklemede", "view_map", "View Map", _s18_7, _s18_8, "add_gateway", "\xd6deme Sistemi Ekle", _s24_6, _s77_, "left", "Left", "right", "Right", "center", "Center", "page_numbering", "Page Numbering", _s24_7, _s24_8, _s31_1, "Invoice Sent", _s24_9, _s24_10, _s29_2, _s47_0, "invoice_items", "Invoice Items", "quote_items", "Quote Items", "profitloss", "Profit and Loss", "import_format", "Import Format", "export_format", "Export Format", "export_type", "Export Type", "stop_on_unpaid", "Stop On Unpaid", _s19_7, _s63_0, "use_quote_terms", "Use Quote Terms", _s20_11, _s37_2, "add_country", "Add Country", "enable_tooltips", "Enable Tooltips", _s20_12, _s37_3, _s21_8, _s45_0, "register_label", _s30_0, "login_label", _s28_, "add_to_invoice", ":invoice nolu faturaya ekle", _s17_6, _s17_7, "week", "Week", "created_record", _s27_2, _s26_, _s17_8, _s31_2, _s50_0, _s31_3, _s22_21, _s36_2, _s55_, _s20_13, _s20_14, _s25_1, _s45_5, _s16_8, _s16_9, "range", "Aral\u0131k", "tax_amount1", "Tax Amount 1", "tax_amount2", "Tax Amount 2", "tax_amount3", "Tax Amount 3", "create_project", "Create project", "update_project", "Update Project", "view_task", "View Task", "cancel_invoice", "Cancel", "changed_status", _s32_2, "change_status", "Change Status", "fees_sample", _s46_2, _s19_8, _s19_9, _s24_11, _s29_3, "after_saving", "After Saving", "view_record", "View Record", _s21_9, _s21_10, _s26_0, _s37_21, _s19_10, _s19_11, "json_help", _s58_, "release_notes", "Release Notes", _s23_4, _s33_1, "started_tasks", _s33_2, "stopped_tasks", _s33_3, "approved_quote", _s27_58, "approved_quotes", _s35_4, "approve", "Onayla", "client_website", "Client Website", "invalid_time", "Invalid Time", _s21_11, _s21_12, _s20_15, _s20_16, _s27_3, _s27_4, _s23_5, _s23_6, "load_pdf", "Load PDF", _s16_10, _s16_11, _s24_12, _s44_, "due_on_receipt", "Due on Receipt", "is_paid", "Is Paid", "age_group_paid", "Paid", "id", "Id", "convert_to", "Convert To", "client_currency", "Client Currency", _s16_12, _s16_13, "purged_client", _s26_1, _s27_5, _s77_0, _s22_22, _s34_2, _s30_1, _s47_1, "small", "Small", _s21_13, _s34_3, _s22_23, _s35_5, _s16_14, _s45_1, "wait_for_saving", _s44_0, _s20_17, _s94_, "remaining", "Remaining", "invoice_paid", "Invoice Paid", "activity_120", _s50_1, "activity_121", _s50_2, "activity_122", _s51_, "activity_123", _s50_3, "activity_124", _s51_0, "normal", "Normal", "large", "Large", "extra_large", "Extra Large", _s16_15, _s16_16, _s21_14, _s42_1, "print_pdf", "Print PDF", "remind_me", "Remind Me", _s16_17, _s16_18, "click_selected", "Click Selected", "hide_preview", "Hide Preview", "edit_record", "Edit Record", _s27_6, _s57_, "giropay", "GiroPay", "direct_debit", "Direct Debit", _s21_15, _s30_2, "set_password", "\u015eifreyi belirle", _s17_9, _s59_, _s16_19, _s58_0, _s20_18, _s33_4, "disconnect", "Disconnect", "add_to_invoices", "Add to Invoices", "acss", _s29_40, "becs", _s17_132, "bulk_download", "Download", _s17_10, _s104_, "persist_ui", "Persist UI", "persist_ui_help", _s104_0, _s18_9, _s18_10, _s17_11, _s17_12, "has_tasks", "Has Tasks", "registration", "Registration", _s27_7, _s50_4, "view_expense", "Gideri g\xf6r # :expense", "view_statement", "View Statement", "sepa", _s17_133, "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", _s18_11, _s18_12, "system", "Sistem", _s19_12, _s19_13, "updated_company", _s28_0, "kbc", "KBC", "bancontact", "Bancontact", _s19_14, _s44_1, "webhook_success", "Webhook Success", _s24_13, _s40_, _s27_8, _s43_0, "app", "App", _s20_19, _s46_3, _s16_20, _s16_229, _s18_109, "Email Invoice", _s16_230, "Email Quote", _s17_134, "Email Credit", "from_name", "From Name", _s16_21, _s16_231, _s17_13, _s17_14, _s18_13, _s18_14, _s21_16, _s21_17, _s22_24, _s22_25, _s25_2, _s38_0, _s25_3, _s38_1, _s26_2, _s39_, _s25_4, _s28_33, _s25_5, _s38_2, _s26_3, _s39_0, _s24_14, _s24_15, _s25_6, _s25_7, "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", _s19_15, _s32_3, "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", _s16_22, _s16_23, _s16_24, _s16_25, _s28_1, _s28_2, "decimal_comma", "Decimal Comma", _s26_4, _s35_6, "select_method", "Select Method", "select_platform", "Select Platform", _s28_3, _s42_2, _s16_26, _s27_9, "enable_markdown", "Enable Markdown", _s20_20, _s35_7, "user_guide", "User Guide", _s18_15, _s18_16, "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", _s31_4, _s31_5, _s25_8, _s25_9, _s33_5, _s33_6, _s27_10, _s27_11, _s36_3, _s36_4, _s31_6, _s31_7, _s25_10, _s25_11, "net_subtotal", "Net", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", _s23_7, _s57_0, _s21_18, _s62_, "change_email", "Change Email", _s25_12, _s52_, _s21_19, _s21_20, "uninvoiced", "Uninvoiced", "subdomain_guide", _s120_, "send_time", "Send Time", "import_data", "Verileri \u0130\xe7e Aktar", "import_settings", "Import Settings", _s17_15, _s28_4, _s19_16, _s48_, "json", "JSON", _s24_16, _s24_17, "wait_for_data", _s42_3, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_27, _s16_28, _s18_17, _s40_0, "login_success", _s16_29, "login_failure", "Failed Login", "exported_data", _s67_, _s23_8, _s23_9, _s28_5, _s41_1, "step_1_sign_in", "Step 1: Sign In", _s16_30, _s17_16, "account_id", "Account ID", _s27_12, _s35_8, "activity_100", _s50_5, "activity_101", _s50_6, "activity_102", _s51_1, "activity_103", _s50_7, "activity_104", _s51_2, _s18_18, _s18_19, _s23_10, _s35_9, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_31, _s16_32, _s18_20, _s31_8, _s16_33, _s16_34, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_21, _s18_22, _s17_17, _s17_18, "order", "Order", "unassigned", "Unassigned", "partial_value", "S\u0131f\u0131rdan b\xfcy\xfck olmal\u0131 ve toplamdan daha az olmal\u0131", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Etkinle\u015ftir", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_1, _s21_21, _s53_, _s25_13, _s37_4, _s17_19, _s17_20, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_5, _s85_, _s20_21, _s54_, _s21_22, _s21_23, _s17_21, _s17_22, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_23, _s18_24, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_25, _s18_26, _s16_35, _s16_36, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_24, _s21_25, _s18_27, _s18_28, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_26, _s21_27, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_22, "Spam Complaint", "email_delivery", "Email Delivery", _s16_37, _s16_38, "pdf_response", "PDF Response", _s22_26, _s22_27, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_39, _s16_40, _s17_23, _s17_24, _s20_23, _s33_7, _s20_24, _s33_8, _s21_28, _s34_4, _s20_25, _s33_9, _s20_26, _s33_10, _s21_29, _s34_5, _s19_17, _s21_30, _s20_27, _s27_13, _s26_6, _s26_7, "connect_gmail", "Connect Gmail", _s16_41, _s16_42, "connected_gmail", _s28_6, _s18_29, _s31_9, _s16_43, _s100_, _s16_44, _s16_45, "count_minutes", ":count Minutes", _s16_46, _s16_47, _s29_4, _s29_5, "use_last_email", "Use last email", _s16_48, _s16_49, _s21_31, _s51_3, _s27_14, _s35_10, _s27_15, _s27_16, _s34_6, _s52_0, "help_translate", "Help Translate", _s23_11, _s23_12, "resend_invite", _s17_135, _s19_18, _s25_14, _s16_50, _s30_3, _s19_19, _s33_11, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_4, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_32, _s46_4, _s18_30, _s46_5, "connect_google", "Connect Google", _s17_25, _s17_26, _s17_27, _s25_57, _s18_31, _s18_32, _s34_7, _s34_8, "stay_logged_in", "Stay Logged In", _s23_13, _s40_1, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_20, _s19_21, _s17_28, _s17_29, "resend_email", "Resend Email", _s26_8, _s33_12, _s16_51, _s16_237, _s19_22, _s19_23, _s19_24, _s45_2, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_30, _s17_31, _s27_17, _s51_4, _s21_33, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_33, "Faturaya D\xf6n\xfc\u015ft\xfcr", _s16_52, _s16_53, "invoice_project", "Invoice Project", "invoice_task", "Fatura G\xf6revi", "invoice_expense", "Gider Faturas\u0131", _s19_25, _s21_34, _s20_28, _s27_18, _s16_54, _s16_55, "save_and_email", "Save and Email", _s16_56, _s16_57, _s16_58, _s16_59, _s17_32, _s17_33, _s22_28, _s22_29, _s24_18, _s24_19, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_34, _s17_35, "document_upload", "Document Upload", _s20_29, _s34_9, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Gizle", "empty_columns", "Empty Columns", _s21_35, _s21_36, _s26_9, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_36, _s17_37, "update_app", "Update App", "started_import", _s27_19, _s24_20, _s24_21, _s20_30, _s20_31, _s18_35, _s18_36, "column", "S\xfctun", "sample", "\xd6rnek", "map_to", "Map To", "import", "\u0130\xe7e Aktar", _s25_15, _s29_6, "select_file", "L\xfctfen bir dosya se\xe7in", _s16_60, _s16_61, "csv_file", "CSV dosya", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_30, _s24_22, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_1, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_38, _s17_39, "sidebar_editor", "Sidebar Editor", _s22_31, _s31_20, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_23, _s24_24, _s24_25, _s24_26, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Fatura Toplam", "quote_total", "Teklif Toplam", "credit_total", "Credit Total", _s23_14, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_27, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "M\xfc\u015fteri Ad\u0131", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_40, _s17_41, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_62, _s16_63, _s19_26, _s32_5, _s19_27, _s31_21, _s20_32, _s33_13, _s19_28, _s32_6, _s19_29, _s32_7, _s20_33, _s33_14, _s22_32, _s42_4, _s21_37, _s41_2, _s22_33, _s42_5, _s18_37, _s20_34, _s20_35, _s27_20, _s16_64, _s16_65, _s21_38, _s52_1, _s20_36, _s20_37, _s25_16, _s42_6, _s20_38, _s20_39, _s25_17, _s42_7, _s21_39, _s25_18, _s18_38, _s18_39, "task_settings", "Task Settings", _s20_40, _s20_41, _s18_40, "Gider Kategorisi", _s20_42, "Yeni Gider Kategorisi", _s21_40, _s21_41, _s24_28, _s37_5, _s24_29, _s37_6, _s25_19, _s38_3, _s24_30, _s29_41, _s24_31, _s37_7, _s25_20, _s38_4, _s27_21, _s45_6, _s26_10, _s46_6, _s27_22, _s47_2, _s23_15, _s25_21, _s25_22, _s32_8, _s21_42, _s21_43, "show_option", "Show Option", _s22_34, _s50_8, "view_changes", "View Changes", "force_update", "Force Update", _s17_42, _s76_, "mark_paid_help", _s31_22, _s18_42, "Faturalanmal\u0131 m\u0131", _s23_16, _s33_23, _s29_7, _s26_42, _s21_44, _s20_44, _s16_66, _s16_67, _s18_43, _s18_44, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_232, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_43, _s17_44, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_23, _s38_5, _s25_24, _s38_6, _s25_25, _s38_7, "gateway_refund", "Gateway Refund", _s19_30, _s43_2, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_35, _s22_36, _s21_45, _s21_46, _s17_45, _s17_46, "endless", "Endless", "next_send_date", "Next Send Date", _s16_68, _s16_69, _s17_47, "Tekrarlayan Fatura", _s18_45, "Tekrarlayan Faturalar", _s21_47, "Yeni Tekrarlayan Fatura", _s22_37, _s22_38, _s25_26, _s38_8, _s25_27, _s38_9, _s26_11, "Tekrarlayan fatura ba\u015far\u0131yla ar\u015fivlendi", _s25_28, "Tekrarlayan fatura ba\u015far\u0131yla silindi", _s25_29, _s38_11, _s26_12, "Tekrarlayan fatura ba\u015far\u0131yla geri y\xfcklendi", _s27_23, _s47_3, _s26_13, _s46_7, _s27_24, _s47_4, _s24_32, _s26_14, _s25_30, _s32_9, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_7, _s28_8, "profit", "Profit", "line_item", "Line Item", _s18_47, _s18_48, _s23_17, _s35_11, _s19_31, _s19_32, _s24_33, _s52_2, "test_mode", "Test Mode", "opened", "Opened", _s30_4, _s22_39, _s30_5, _s22_40, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_49, _s17_50, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_70, _s16_71, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Kart bilgilerini sakla", _s24_34, _s24_35, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "\u015eirket Ad\u0131", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_49, _s18_50, "pdf_page_info", _s23_18, _s16_72, _s29_42, "emailed_quotes", _s27_59, "emailed_credits", _s28_57, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Saat", "statement", "Statement", "taxes", "Vergiler", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply_credit", "Kredi Uygula", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Kime", "health_check", "Health Check", "payment_type_id", "\xd6deme T\xfcr\xfc", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_8, "client_created", "Client Created", _s20_45, _s20_46, _s20_47, _s20_48, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_51, _s17_52, _s17_53, _s17_54, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_55, _s17_56, _s17_57, "Yakla\u015fan Faturalar", _s17_59, _s17_60, "recent_payments", "Son \xd6demeler", "upcoming_quotes", "Tarihi Yakla\u015fan Teklifler", "expired_quotes", "Tarihi Dolan Teklifler", "create_client", "Create Client", "create_invoice", "Fatura Olu\u015ftur", "create_quote", "Teklif Olu\u015ftur", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Teklif Sil", "update_invoice", "Update Invoice", "delete_invoice", "Faturay\u0131 Sil", "update_client", "Update Client", "delete_client", "M\xfc\u015fteri Sil", "delete_payment", "\xd6deme Sil", "update_vendor", "Update Vendor", "delete_vendor", "Tedarik\xe7iyi Sil", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Gider Sil", "create_task", "G\xf6rev Olu\u015ftur", "update_task", "Update Task", "delete_task", "G\xf6rev Sil", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\xdccretsiz", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_61, _s28_9, "api_webhooks", "API Webhooks", "search_webhooks", _s22_41, "search_webhook", _s16_73, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_10, "updated_webhook", _s28_11, _s16_74, _s29_8, "deleted_webhook", _s28_12, "removed_webhook", _s28_13, _s16_75, _s29_9, _s17_62, _s37_8, _s16_76, _s36_5, _s16_77, _s36_6, _s17_63, _s37_9, "api_tokens", "API Tokenlar\u0131", "api_docs", "API Docs", "search_tokens", _s20_49, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokenlar", "new_token", "New Token", "edit_token", "Token d\xfczenle", "created_token", "Token ba\u015far\u0131yla olu\u015fturuldu", "updated_token", "Token ba\u015far\u0131yla g\xfcncellendi", "archived_token", "Token ba\u015far\u0131yla ar\u015fivlendi", "deleted_token", "Token ba\u015far\u0131yla silindi", "removed_token", _s26_18, "restored_token", _s27_26, "archived_tokens", _s35_12, "deleted_tokens", _s34_10, "restored_tokens", _s35_13, _s19_33, _s19_34, _s24_36, _s45_3, _s21_49, _s19_35, "email_invoice", "Faturay\u0131 E-Posta ile g\xf6nder", "email_quote", "Teklifi E-Posta ile G\xf6nder", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_50, _s41_3, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_78, _s16_79, "contact_name", "Contact Name", "use_default", "Use default", _s16_80, _s17_64, "number_of_days", "Number of days", _s23_19, _s23_20, "payment_term", "Payment Term", _s16_81, _s16_82, _s17_65, _s17_66, _s20_51, _s33_15, _s20_52, _s33_16, _s21_50, _s34_11, _s20_53, _s33_17, _s20_54, _s33_18, _s21_51, _s34_12, _s22_42, _s42_9, _s21_52, _s41_4, _s22_43, _s42_10, "email_sign_in", _s18_110, "change", "Change", _s23_21, _s28_14, _s24_37, _s29_10, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kredi Tutar\u0131", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_51, _s18_52, _s16_83, _s16_233, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_84, _s16_234, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_67, "search_design", "Search 1 Design", "search_invoice", _s16_85, "search_client", "Search 1 Client", "search_product", _s16_86, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_68, "search_task", "Search 1 Tasks", "search_project", _s16_87, "search_expense", _s16_88, "search_payment", _s16_89, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_69, _s30_6, _s18_53, _s31_10, _s16_90, _s29_11, _s17_70, _s30_7, "reverse", "Reverse", "full_name", "Full Name", _s17_71, _s17_72, _s17_73, _s17_74, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_91, _s32_10, _s18_54, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_31, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s24_113, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_32, _s25_33, _s16_92, _s16_93, "apply_license", "Apply License", "cancel_account", "Hesab\u0131 Sil", _s22_44, _s69_0, "delete_company", "Delete Company", _s22_45, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_15, "credit_design", "Credit Design", "includes", "Includes", "header", "\xdcstbilgi", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_27, "updated_design", _s27_28, "archived_design", _s28_16, "deleted_design", _s27_29, "removed_design", _s27_30, "restored_design", _s28_17, _s16_94, _s36_7, "deleted_designs", _s35_14, _s16_95, _s36_8, "proposals", "Proposals", "tickets", "Tickets", _s16_96, "Tekrarlayan Fiyat Teklifleri", "recurring_tasks", "Recurring Tasks", _s18_55, _s18_56, "credit_date", "Kredi Tarihi", "credit", "Kredi", "credits", "Krediler", "new_credit", "Kredi Gir", "edit_credit", "Edit Credit", "created_credit", "Kredi ba\u015far\u0131yla olu\u015fturuldu", "updated_credit", _s27_32, "archived_credit", "Kredi ba\u015far\u0131yla ar\u015fivlendi", "deleted_credit", "Kredi ba\u015far\u0131yla silindi", "removed_credit", _s27_34, "restored_credit", "Kredi Ba\u015far\u0131yla Geri Y\xfcklendi", _s16_98, ":count kredi ar\u015fivlendi", "deleted_credits", ":count kredi ba\u015far\u0131yla silindi", _s16_99, _s36_9, "current_version", "Mevcut version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_19, _s41_5, _s16_100, _s16_101, "app_updated", _s29_12, "learn_more", "Daha fazla bilgi edin", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_75, _s17_76, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Yeni Firma", "added_company", _s26_20, "company1", _s16_102, "company2", _s16_103, "company3", _s16_104, "company4", _s16_105, "product1", _s16_106, "product2", _s16_107, "product3", _s16_108, "product4", _s16_109, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_110, "contact2", _s16_111, "contact3", _s16_112, "contact4", _s16_113, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_114, "project2", _s16_115, "project3", _s16_116, "project4", _s16_117, "expense1", _s16_118, "expense2", _s16_119, "expense3", _s16_120, "expense4", _s16_121, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_122, "invoice2", _s16_123, "invoice3", _s16_124, "invoice4", _s16_125, "payment1", _s16_126, "payment2", _s16_127, "payment3", _s16_128, "payment4", _s16_129, "surcharge1", _s18_57, "surcharge2", _s18_58, "surcharge3", _s18_59, "surcharge4", _s18_60, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "S\u0131f\u0131rla", "number", "Number", "export", "D\u0131\u015fa Aktar", "chart", "Grafik", "count", "Count", "totals", "Toplamlar", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupland\u0131r", "credit_balance", "Kredi Bakiyesi", _s18_61, _s18_62, _s17_77, _s17_78, "contact_phone", "Contact Phone", _s21_53, _s22_46, _s21_54, _s22_47, _s21_55, _s22_48, _s21_56, _s22_49, _s17_79, "Shipping Street", _s17_80, _s18_63, "shipping_city", "Shipping City", "shipping_state", _s23_22, _s20_55, _s20_56, _s16_130, _s16_131, _s16_132, "Billing Street", _s16_133, _s17_81, "billing_city", "Billing City", "billing_state", _s22_50, _s19_36, _s19_37, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_235, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Rapor", "add_company", "Firma Ekle", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_134, _s16_135, "help", "Yard\u0131m", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "Durum", "verify_password", "Verify Password", "applied", "Applied", _s21_57, _s35_15, _s30_8, _s63_1, "message", "Mesaj", "from", "Kimden", _s20_57, _s20_58, _s25_34, _s56_, _s20_59, _s34_13, _s18_64, _s18_65, _s23_23, _s33_24, _s18_66, _s18_67, "support_forum", "destek forum", "about", "About", "documentation", "Belgeler", "contact_us", "Contact Us", "subtotal", "Aratoplam", "line_total", "Tutar", "item", "\xd6\u011fe", "credit_email", "Credit Email", "iframe_url", "Web adresi", "domain_url", "Domain URL", _s21_58, _s21_100, _s20_60, _s58_1, _s19_38, _s19_39, _s23_24, _s23_25, _s20_61, _s20_62, "deleted_logo", _s25_35, "yes", "Evet", "no", "Hay\u0131r", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "G\xf6r\xfcnt\xfcle", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_82, _s17_83, "show_cost_help", _s55_0, _s21_59, _s21_60, _s26_21, _s58_2, _s21_61, _s21_62, _s26_22, _s60_, _s21_63, _s21_64, _s26_23, _s34_14, _s16_136, _s16_137, _s21_65, _s47_5, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_138, _s16_139, "user", "Kullan\u0131c\u0131", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_84, _s17_85, "item_tax_rates", "Item Tax Rates", _s18_68, _s22_60, "configure_rates", "Configure rates", _s18_69, _s18_70, "tax_settings", "Vergi Ayarlar\u0131", _s18_71, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_40, _s20_63, "options", "Options", _s16_140, _s16_141, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_35, _s39_3, "submit", "Submit", _s16_142, "\u015eifreni kurtar", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_143, _s16_144, "schedule", "program", "before_due_date", _s19_41, "after_due_date", _s18_72, _s18_73, _s22_51, "days", "Days", "invoice_email", "Fatura E-postas\u0131", "payment_email", "\xd6deme E-postas\u0131", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_66, _s21_67, "quote_email", "Teklif E-postas\u0131", _s16_145, _s16_146, _s16_147, _s16_148, "administrator", "Administrator", _s18_74, _s66_, "user_management", "Kullan\u0131c\u0131 y\xf6netimi", "users", "Kullan\u0131c\u0131lar", "new_user", "Yeni Kullan\u0131c\u0131", "edit_user", "Kullan\u0131c\u0131 D\xfczenle", "created_user", _s25_36, "updated_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla g\xfcncellendi", "archived_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla silindi", "removed_user", _s25_39, "restored_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla geri y\xfcklendi", "archived_users", _s34_15, "deleted_users", _s33_19, "removed_users", _s33_20, "restored_users", _s34_16, _s16_149, "Genel Ayarlar", "invoice_options", "Fatura Se\xe7enekleri", _s17_86, "\xd6deme Tarihini Gizle", _s22_52, 'Bir \xf6deme al\u0131nd\u0131\u011f\u0131nda yaln\u0131zca faturalar\u0131n\u0131zdaki "\xd6denen Tarihi" alan\u0131n\u0131 g\xf6r\xfcnt\xfcleyin.', _s23_26, "Embed Documents", _s28_20, _s39_4, _s16_151, "Show Header on", _s16_152, "Show Footer on", "first_page", "\u0130lk sayfa", "all_pages", "T\xfcm sayfalar", "last_page", "Son sayfa", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Birincil Renk", "secondary_color", "\u0130kincil Renk", "page_size", "Sayfa Boyutu", "font_size", "Font Boyutu", "quote_design", "Quote Design", "invoice_fields", "Fatura Alanlar\u0131", "product_fields", "Product Fields", "invoice_terms", "Fatura \u015eartlar\u0131", "invoice_footer", "Fatura Altbilgisi", "quote_terms", "Teklif \u015eartlar\u0131", "quote_footer", "Teklif Altbilgisi", _s18_75, "Auto Email", _s23_27, _s61_, _s18_76, "Auto Archive", _s23_28, _s53_1, _s18_77, "Auto Convert", _s23_29, _s70_, _s17_88, _s17_89, "freq_daily", "G\xfcnl\xfck", "freq_weekly", "Haftal\u0131k", "freq_two_weeks", "2 hafta", "freq_four_weeks", "4 hafta", "freq_monthly", "Ayl\u0131k", "freq_two_months", "Two months", _s17_90, "3 Ay", _s16_153, "4 Ay", "freq_six_months", "6 Ay", "freq_annually", "Y\u0131ll\u0131k", "freq_two_years", "2 Y\u0131l", _s16_154, "Three Years", "never", "Never", "company", "\u015eirket", _s17_91, _s17_92, "charge_taxes", "Vergi masraflar\u0131", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_155, _s16_156, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_93, _s17_94, "client_field", "M\xfc\u015fteri Alan\u0131", "product_field", "\xdcr\xfcn Alan\u0131", "payment_field", "Payment Field", "contact_field", "\u0130leti\u015fim Alan\u0131", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Seri", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "\xd6zel CSS", _s17_95, _s17_96, _s16_157, "Show on PDF", _s21_68, _s51_5, _s25_40, _s22_53, _s30_9, _s61_0, _s23_30, _s20_64, _s28_21, _s59_0, _s25_41, _s17_97, _s30_10, _s42_11, _s23_31, "Quote Signature", _s22_54, _s25_42, _s27_36, _s142_, "authorization", "Authorization", "subdomain", "Alt etki alan\u0131", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Sayg\u0131lar\u0131m\u0131zla,", _s24_38, "M\xfc\u015fterilerinizin e-postalar\u0131n\u0131za schema.org i\u015faretleme ekleyerek \xf6deme yapmalar\u0131n\u0131 kolayla\u015ft\u0131r\u0131n.", "plain", "D\xfcz", "light", "Ayd\u0131nl\u0131k", "dark", "Koyu", "email_design", "E-Posta Dizayn\u0131", "attach_pdf", "Attach PDF", _s16_158, _s16_159, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_42, "\u0130\u015faretlemeyi Etkinle\u015ftir", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kredi Kart\u0131", "bank_transfer", "Banka Transferi (EFT/Havale)", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_43, _s19_44, "credentials", "Credentials", "update_address", "Adresi G\xfcncelle", _s19_45, "M\xfc\u015fterinin adresini verilen ayr\u0131nt\u0131larla g\xfcncelleyin", "rate", "Tarife", "tax_rate", "Vergi Oran\u0131", "new_tax_rate", "Yeni Vergi Oran\u0131", "edit_tax_rate", "Vergi oran\u0131 d\xfczenle", _s16_160, "Vergi oran\u0131 ba\u015far\u0131yla olu\u015fturuldu", _s16_161, "Vergi oran\u0131 ba\u015far\u0131yla g\xfcncellendi", _s17_98, "Vergi oran\u0131 ba\u015far\u0131yla ar\u015fivlendi", _s16_162, _s29_15, _s17_99, _s30_11, _s18_78, _s38_12, _s17_100, _s37_10, _s18_79, _s38_13, "fill_products", "Otomatik doldurma \xfcr\xfcnleri", _s18_80, "Bir \xfcr\xfcn se\xe7mek a\xe7\u0131klama ve maliyeti otomatik olarak dolduracakt\u0131r", "update_products", "\xdcr\xfcnleri otomatik g\xfcncelle", _s20_65, "Faturay\u0131 g\xfcncellemek \xfcr\xfcn k\xfct\xfcphanesini otomatik olarak dolduracakt\u0131r.", _s16_163, _s16_164, _s21_69, _s61_2, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_165, _s16_166, _s19_46, "New Gateway", _s20_66, "Edit Gateway", _s23_32, _s28_22, _s23_33, _s28_23, _s24_39, _s29_16, _s23_34, _s28_24, _s24_40, _s29_17, _s25_43, _s37_11, _s24_41, _s36_10, _s25_44, _s37_12, _s16_167, _s16_168, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Devre D\u0131\u015f\u0131", "currency_format", "Currency Format", _s21_70, _s21_71, _s23_35, _s23_36, "sunday", "Pazar", "monday", "Pazartesi", "tuesday", "Sal\u0131", "wednesday", "\xc7ar\u015famba", "thursday", "Per\u015fembe", "friday", "Cuma", "saturday", "Cumartesi", "january", "Ocak", "february", "\u015eubat", "march", "Mart", "april", "Nisan", "may", "May\u0131s", "june", "Haziran", "july", "Temmuz", "august", "A\u011fustos", "september", "Eyl\xfcl", "october", "Ekim", "november", "Kas\u0131m", "december", "Aral\u0131k", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Saat Zaman Bi\xe7imi", _s18_81, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_47, _s19_48, _s17_101, _s17_102, _s19_49, _s19_50, _s18_82, _s18_83, _s18_84, _s18_85, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_26, "updated_group", _s26_27, "archived_groups", _s35_16, "deleted_groups", _s34_17, "restored_groups", _s35_17, "archived_group", _s27_37, "deleted_group", _s26_28, "restored_group", _s27_38, "upload_logo", "Upload Logo", "uploaded_logo", _s26_29, "logo", "Logo", "saved_settings", _s27_39, _s16_169, "\xdcr\xfcn Ayarlar\u0131", "device_settings", "Device Settings", "defaults", "Varsay\u0131lanlar", "basic_settings", "Temel Ayarlar", _s17_103, "Geli\u015fmi\u015f Ayarlar", "company_details", "\u015eirket Detaylar\u0131", "user_details", "Kullan\u0131c\u0131 Detaylar\u0131", "localization", "Yerelle\u015ftirme", "online_payments", "\xc7evrimi\xe7i \xd6demeler", "tax_rates", "Vergi Oranlar\u0131", "notifications", "Bildirimler", "import_export", "\u0130\xe7e Aktar\u0131m | D\u0131\u015fa Aktar\u0131m", "custom_fields", "\xd6zel Alanlar", "invoice_design", "Fatura Dizayn\u0131", "buy_now_buttons", "Buy Now Buttons", "email_settings", "E-posta ayarlar\u0131", _s23_37, "\u015eablonlar & Hat\u0131rlatmalar", _s22_55, _s20_67, _s19_51, "Veri G\xf6rselle\u015ftirmeleri", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_40, _s28_25, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_53, _s19_54, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_45, _s25_46, _s24_42, _s24_43, _s33_21, _s77_1, "i_agree_to_the", "I agree to the", _s16_171, "Hizmet \u015eartlar\u0131", "privacy_policy", "Privacy Policy", "sign_up", "Kay\u0131t Ol", "account_login", "Hesap giri\u015fi", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_86, _s18_87, _s21_73, _s34_18, "download", "\u0130ndir", _s27_41, _s27_60, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dok\xfcmanlar", "new_document", "New Document", "edit_document", "Edit Document", _s17_105, _s30_12, _s16_173, _s29_18, _s17_106, _s30_13, _s16_174, _s29_19, _s17_107, _s30_14, _s18_88, _s38_14, _s17_108, _s37_13, _s18_89, _s38_15, "no_history", "No History", "expense_date", "Gider Tarihi", "pending", "Beklemede", _s16_175, "Logged", _s16_176, "Pending", _s16_177, "Invoiced", "converted", "D\xf6n\xfc\u015ft\xfcr\xfcld\xfc", _s24_44, _s24_57, "exchange_rate", "D\xf6viz Kuru", _s16_178, _s16_239, "mark_paid", "Mark Paid", "category", "Kategori", "address", "Adres", "new_vendor", "Yeni Tedarik\xe7i", "created_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla olu\u015fturuldu", "updated_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla g\xfcncellendi", "archived_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla silindi", "restored_vendor", _s28_27, _s16_179, ":count sat\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_vendors", ":count sat\u0131c\u0131 ba\u015far\u0131yla silindi", _s16_180, _s36_11, "new_expense", "Gider Giri\u015fi", "created_expense", "Gider olu\u015fturuldu", "updated_expense", "Gider g\xfcncellendi", _s16_181, "Gider ba\u015far\u0131yla ar\u015fivlendi", "deleted_expense", "Gider ba\u015far\u0131yla silindi", _s16_182, _s29_21, _s17_109, "Giderler ba\u015far\u0131yla ar\u015fivlendi", _s16_183, "Giderler ba\u015far\u0131yla silindi", _s17_110, _s37_14, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_74, _s21_75, "invoiced", "Faturaland\u0131", "logged", "Logland\u0131", "running", "\xc7al\u0131\u015f\u0131yor", "resume", "Devam Et", "task_errors", "L\xfctfen \xf6rt\xfc\u015fen s\xfcreleri d\xfczeltin", "start", "Ba\u015flama", "stop", "Biti\u015f", "started_task", _s25_47, "stopped_task", "G\xf6rev ba\u015far\u0131yla durduruldu", "resumed_task", _s25_49, "now", "\u015eimdi", _s16_184, _s16_185, "timer", "Zamanlay\u0131c\u0131", "manual", "Manuel", "budgeted", "Budgeted", "start_time", "Ba\u015flang\u0131\xe7 Zaman\u0131", "end_time", "Biti\u015f Zaman\u0131", "date", "Tarih", "times", "Zamanlar", "duration", "S\xfcre", "new_task", "Yeni G\xf6rev", "created_task", "G\xf6rev ba\u015far\u0131yla olu\u015fturuldu", "updated_task", "G\xf6rev ba\u015far\u0131yla g\xfcncellendi", "archived_task", "G\xf6rev ba\u015far\u0131yla ar\u015fivlendi", "deleted_task", "G\xf6rev ba\u015far\u0131yla silindi", "restored_task", "G\xf6rev ba\u015far\u0131yla geri y\xfcklendi", "archived_tasks", "Ar\u015fivlenen g\xf6rev say\u0131s\u0131 :count", "deleted_tasks", "Silinen g\xf6rev say\u0131s\u0131 :count", "restored_tasks", _s34_19, _s19_55, _s19_56, "budgeted_hours", "Budgeted Hours", "created_project", _s28_31, "updated_project", _s28_32, _s16_186, _s29_22, "deleted_project", _s28_33, _s16_187, _s29_23, _s17_111, _s37_22, _s16_188, _s36_15, _s17_112, _s37_15, "new_project", "New Project", _s27_45, _s28_34, "if_you_like_it", _s21_76, "click_here", "buraya t\u0131klay\u0131n", _s18_90, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_15, _s42_12, "locked", "Locked", "authenticate", "Authenticate", _s19_57, _s19_58, _s24_46, _s24_47, "footer", "Altbilgi", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s19_71, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_113, _s17_114, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "\xd6zel", _s16_189, _s16_190, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Fatura G\xf6r\xfcnt\xfcle", "convert", "Convert", "more", "More", "edit_client", "M\xfc\u015fteri D\xfczenle", "edit_product", "\xdcr\xfcn D\xfczenle", "edit_invoice", "Fatura D\xfczenle", "edit_quote", "Teklif D\xfczenle", "edit_payment", "\xd6deme d\xfczenle", "edit_task", "G\xf6rev D\xfczenle", "edit_expense", "Gideri D\xfczenle", "edit_vendor", "Tedarik\xe7iyi D\xfczenle", "edit_project", "Edit Project", _s20_68, _s20_69, "billing_address", "Fatura Adresi", _s16_191, _s16_192, "total_revenue", "Toplam Gelir", "average_invoice", "Ortalama Fatura", "outstanding", "\xd6denmemi\u015f", "invoices_sent", _s24_113, "active_clients", "aktif m\xfc\u015fteriler", "close", "Kapat", "email", "E-Posta", "password", "\u015eifre", "url", "URL", "secret", "Secret", "name", "\xdcnvan", "logout", "Oturumu kapat", "login", "Oturum a\xe7", "filter", "Filtrele", "sort", "Sort", "search", "Arama", "active", "Aktif", "archived", "Ar\u015fivlendi", "deleted", "Silindi", "dashboard", "G\xf6sterge Paneli", "archive", "Ar\u015fivle", "delete", "Sil", "restore", "Geri y\xfckle", _s16_193, _s16_194, _s23_38, _s23_39, _s26_32, _s26_33, _s21_77, _s21_78, _s26_34, _s26_35, "ascending", "Ascending", "descending", "Descending", "save", "Kaydet", _s17_115, _s17_116, "paid_to_date", "\xd6denen", "balance_due", "Genel Toplam", "balance", "Bakiye", "overview", "Overview", "details", "Detaylar", "phone", "Telefon", "website", "Web adresi", "vat_number", "Vergi Numaras\u0131", "id_number", "ID Numaras\u0131", "create", "Olu\u015ftur", _s19_59, _s30_16, "error", "Hata", _s16_195, _s16_196, "contacts", "Yetkili", "additional", "Additional", "first_name", "Ad\u0131", "last_name", "Soyad\u0131", "add_contact", "Yetkili Ekle", "are_you_sure", "Emin misiniz?", "cancel", "\u0130ptal", "ok", "Tamam", "remove", "Sil", _s16_197, "E-posta ge\xe7ersiz", "product", "\xdcr\xfcn", "products", "\xdcr\xfcnler", "new_product", "Yeni \xdcr\xfcn", "created_product", "\xdcr\xfcn ba\u015far\u0131yla olu\u015fturuldu", "updated_product", "\xdcr\xfcn ba\u015far\u0131yla g\xfcncellendi", _s16_199, "\xdcr\xfcn ba\u015far\u0131yla ar\u015fivlendi", "deleted_product", _s28_37, _s16_200, _s29_25, _s17_117, _s37_23, _s16_201, _s36_16, _s17_118, _s37_16, "product_key", "\xdcr\xfcn", "notes", "Notlar", "cost", "Cost", "client", "M\xfc\u015fteri", "clients", "M\xfc\u015fteriler", "new_client", "Yeni M\xfc\u015fteri", "created_client", "M\xfc\u015fteri ba\u015far\u0131yla olu\u015fturuldu", "updated_client", "M\xfc\u015fteri ba\u015far\u0131yla g\xfcncellendi", "archived_client", "M\xfc\u015fteri ba\u015far\u0131yla ar\u015fivlendi", _s16_202, ":count m\xfc\u015fteri ba\u015far\u0131yla ar\u015fivlendi", "deleted_client", "M\xfc\u015fteri ba\u015far\u0131yla silindi", "deleted_clients", ":count m\xfc\u015fteri ba\u015far\u0131yla silindi", "restored_client", "M\xfc\u015fteri Ba\u015far\u0131yla Geri Y\xfcklendi", _s16_203, _s36_13, "address1", "Adres", "address2", "Adres", "city", "\u015eehir", "state", "\u0130l\xe7e", "postal_code", "Posta Kodu", "country", "\xdclke", "invoice", "Fatura", "invoices", "Faturalar", "new_invoice", "Yeni Fatura", "created_invoice", "Fatura ba\u015far\u0131yla olu\u015fturuldu", "updated_invoice", "Fatura ba\u015far\u0131yla g\xfcncellendi", _s16_204, "Fatura ba\u015far\u0131yla ar\u015fivlendi", "deleted_invoice", "Fatura ba\u015far\u0131yla silindi", _s16_205, "Fatura Ba\u015far\u0131yla Geri Y\xfcklendi", _s17_119, ":count fatura ba\u015far\u0131yla ar\u015fivlendi", _s16_206, ":count fatura ba\u015far\u0131yla silindi", _s17_120, _s37_17, "emailed_invoice", "Fatura ba\u015far\u0131yla e-posta ile g\xf6nderildi", "emailed_payment", _s28_58, "amount", "Tutar", "invoice_number", "Fatura Numaras\u0131", "invoice_date", "Fatura Tarihi", "discount", "\u0130skonto", "po_number", "Sipari\u015f No", "terms", "Ko\u015fullar", "public_notes", "A\xe7\u0131k Notlar", "private_notes", "\xd6zel Notlar", "frequency", "S\u0131kl\u0131k", "start_date", "Ba\u015flang\u0131\xe7 Tarihi", "end_date", "Biti\u015f Tarihi", "quote_number", "Teklif Numaras\u0131", "quote_date", "Teklif Tarihi", "valid_until", "Ge\xe7erlilik Tarihi", "items", "\xd6geler", "partial_deposit", "Partial/Deposit", "description", "A\xe7\u0131klama", "unit_cost", "Birim Fiyat\u0131", "quantity", "Miktar", "add_item", "\xd6ge Ekle", "contact", "Ki\u015fi", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\xd6deme Tarihi", _s16_207, _s16_208, "status", "Durum", _s17_121, "Invoice Status", "quote_status", "Quote Status", _s22_56, _s22_57, _s22_58, _s19_72, "count_selected", ":count selected", "total", "Toplam", "percent", "Percent", "edit", "D\xfczenle", "dismiss", "Dismiss", _s20_70, _s20_71, _s22_59, _s22_60, _s24_48, _s24_49, "task_rate", "Task Rate", "settings", "Ayarlar", "language", "Dil", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Vergi", _s30_17, _s30_18, _s27_49, _s27_50, "past_due", "Past Due", "draft", "Draft", "sent", "G\xf6nder", "viewed", "Viewed", "approved", "Approved", "partial", "K\u0131smi / Mevduat", "paid", "\xd6denen", "mark_sent", "G\xf6nderilmi\u015f Olarak \u0130\u015faretle", _s22_61, _s35_18, _s22_62, _s35_18, _s23_40, _s36_14, _s23_41, _s36_14, "done", "Tamam", _s37_18, _s37_19, "dark_mode", "Karanl\u0131k Mod", _s27_51, _s35_19, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivite", _s16_209, _s16_210, "clone", "\xc7o\u011falt", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\xd6deme ko\u015fullar\u0131", "payment_date", "\xd6deme Tarihi", "payment_status", "Payment Status", _s16_211, "Pending", _s16_212, "Voided", _s16_213, "Failed", _s16_214, "Completed", _s16_215, _s18_52, _s16_216, "Refunded", _s17_122, "Unapplied", _s17_123, _s19_23, "net", "Net", "client_portal", "M\xfc\u015fteri Portal\u0131", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "\u0130lk Hat\u0131rlat\u0131c\u0131", "second_reminder", "\u0130kinci Hat\u0131rlat\u0131c\u0131", "third_reminder", "\xdc\xe7\xfcnc\xfc Hat\u0131rlat\u0131c\u0131", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Konu", "body", "G\xf6vde", "send_email", "E-Mail G\xf6nder", "email_receipt", "\xd6deme makbuzunu m\xfc\u015fteriye e-postayla g\xf6nder", "auto_billing", "Auto billing", "button", "Buton", "preview", "Preview", "customize", "\xd6zelle\u015ftir", "history", "Ge\xe7mi\u015f", "payment", "\xd6deme", "payments", "\xd6demeler", "refunded", "Refunded", "payment_type", "Payment Type", _s21_79, "\u0130\u015flem Referans\u0131", "enter_payment", "\xd6deme Gir", "new_payment", "\xd6deme Gir", "created_payment", "\xd6deme ba\u015far\u0131yla olu\u015fturuldu", "updated_payment", "\xd6deme ba\u015far\u0131yla g\xfcncellendi", _s16_217, "\xd6deme ba\u015far\u0131yla ar\u015fivlendi", "deleted_payment", "\xd6deme ba\u015far\u0131yla silindi", _s16_218, "\xd6deme Ba\u015far\u0131yla Geri Y\xfcklendi", _s17_124, ":count \xf6deme ar\u015fivlendi", _s16_219, ":count \xf6deme silindi", _s17_125, _s37_20, "quote", "Teklif", "quotes", "Teklifler", "new_quote", "Yeni Teklif", "created_quote", "Teklif ba\u015far\u0131yla olu\u015fturuldu", "updated_quote", "Teklif ba\u015far\u0131yla g\xfcncellendi", "archived_quote", "Teklif ba\u015far\u0131yla ar\u015fivlendi", "deleted_quote", "Teklif ba\u015far\u0131yla silindi", "restored_quote", "Teklif Ba\u015far\u0131yla Geri Y\xfcklendi", "archived_quotes", ":count teklif ba\u015far\u0131yla ar\u015fivlendi", "deleted_quotes", ":count teklif ba\u015far\u0131yla silindi", "restored_quotes", _s35_21, "expense", "Gider", "expenses", "Giderler", "vendor", "Tedarik\xe7i", "vendors", "Tedarik\xe7iler", "task", "Task", "tasks", "G\xf6revler", "project", "Project", "projects", "Projects", "activity_1", ":user :client m\xfc\u015fteri hesab\u0131n\u0131 olu\u015fturdu", "activity_2", ":user :client m\xfc\u015fteri hesab\u0131n\u0131 ar\u015fivledi", "activity_3", ":user :client m\xfc\u015ftei hesab\u0131n\u0131 sildi", "activity_4", ":user :invoice nolu faturay\u0131 olu\u015fturdu", "activity_5", ":user :invoice nolu faturay\u0131 g\xfcncelledi", "activity_6", _s54_0, "activity_7", _s44_2, "activity_8", ":user :invoice nolu faturay\u0131 ar\u015fivledi", "activity_9", ":user :invoice nolu faturay\u0131 sildi", "activity_10", _s85_0, "activity_11", ":user :payment tutarl\u0131 \xf6demeyi g\xfcncelledi", "activity_12", ":user :payment tutarl\u0131 \xf6demeyi ar\u015fivledi", "activity_13", ":user :payment tutarl\u0131 \xf6demeyi sildi", "activity_14", ":user :credit kredi girdi", "activity_15", ":user :credit kredi g\xfcncelledi", "activity_16", ":user :credit kredi ar\u015fivledi", "activity_17", ":user :credit kredi sildi", "activity_18", ":user :quote nolu teklifi olu\u015fturdu", "activity_19", ":user :quote nolu teklifi g\xfcncelledi", "activity_20", _s50_9, "activity_21", ":contact adl\u0131 yetkili :quote nolu teklifi g\xf6r\xfcnt\xfcledi", "activity_22", ":user :quote nolu teklifi ar\u015fivledi", "activity_23", ":user :quote nolu teklifi sildi", "activity_24", ":user :quote nolu teklifi geri y\xfckledi", "activity_25", ":user :invoice nolu faturay\u0131 geri y\xfckledi", "activity_26", ":user :client m\xfc\u015fterisini geri y\xfckledi", "activity_27", ":user :payment tutar\u0131nda \xf6demeyi geri y\xfckledi", "activity_28", ":user :credit kredisini geri y\xfckledi", "activity_29", _s42_13, "activity_30", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 olu\u015fturdu", "activity_31", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 ar\u015fivledi", "activity_32", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 sildi", "activity_33", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 geri y\xfckledi", "activity_34", ":user masraf olu\u015fturdu :expense", "activity_35", ":user masraf ar\u015fivledi :expense", "activity_36", ":user masraf sildi :expense", "activity_37", ":user masraf geri y\xfckledi :expense", "activity_39", _s50_10, "activity_40", _s64_, "activity_41", _s41_8, "activity_42", ":user :task g\xf6revini olu\u015fturdu", "activity_43", ":user :task g\xf6revini g\xfcncelledi", "activity_44", ":user :task g\xf6revini ar\u015fivledi", "activity_45", ":user :task g\xf6revini sildi", "activity_46", ":user :task g\xf6revini geri y\xfckledi", "activity_47", ":user masraf g\xfcncelledi :expense", "activity_48", _s24_58, "activity_49", _s24_59, "activity_50", _s25_58, "activity_51", _s24_60, "activity_52", _s25_59, "activity_53", _s26_43, "activity_54", _s29_44, "activity_55", _s31_23, "activity_56", _s27_61, "activity_57", _s39_5, "activity_58", _s31_17, "activity_59", _s32_11, "activity_60", _s28_51, "activity_61", _s28_54, "activity_62", _s28_55, "activity_63", _s61_3, "activity_64", _s62_0, "activity_65", _s61_4, "activity_66", _s63_2, "activity_80", _s40_2, "activity_81", _s40_3, "activity_82", _s41_6, "activity_83", _s40_4, "activity_84", _s41_7, _s17_126, _s17_127, "emailed_quote", "Teklif ba\u015far\u0131yla e-posta ile g\xf6nderildi", "emailed_credit", _s27_62, _s20_72, _s33_22, _s21_81, _s34_20, "expired", "Expired", "all", "All", "select", "Se\xe7", _s22_63, _s22_64, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_91, _s18_92, _s24_53, _s24_54, _s29_36, _s29_37, _s27_56, _s27_57, _s31_18, _s31_19, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_60, _s19_61, _s19_62, _s19_63, _s22_65, _s22_66, _s22_67, _s22_68, _s21_82, _s21_83, _s21_84, _s21_85, _s21_86, _s21_87, _s21_88, _s21_89, _s22_69, _s22_70, _s22_71, _s22_72, _s22_73, _s22_74, _s22_75, "Fatura No Sayac\u0131", _s20_73, _s20_74, _s20_75, "Teklif No Sayac\u0131", _s21_90, _s21_91, _s21_92, _s21_93, _s21_94, _s21_91, _s21_95, _s21_93, _s18_93, _s18_94, "counter_padding", "Counter Padding", _s28_56, _s28_59, _s18_95, _s18_96, _s18_97, _s18_98, _s18_99, _s18_100, _s18_101, _s18_102, _s18_103, _s18_104, _s18_105, _s18_106, _s21_96, _s21_97, _s19_64, _s19_65, _s21_98, _s21_99, _s29_38, _s29_39, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_220, _s16_221, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_222, "vendor_address1", "Vendor Street", "vendor_address2", _s16_223, _s24_55, _s22_77, _s24_56, _s25_55, "type", "T\xfcr", "invoice_amount", "Fatura Tutar\u0131", _s16_224, "Vade", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Otomatik Fatura", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_128, _s18_57, _s17_129, _s18_58, _s17_130, _s18_59, _s17_131, _s18_60, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Vergi Ad\u0131", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\xd6deme Tutar\u0131", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_66, _s19_67, _s16_225, _s16_236, _s19_68, _s19_69, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", _s18_107, _s18_108, _s16_226, _s16_227], t1, t1)], t1, type$.legacy_Map_of_legacy_String_and_legacy_String); }); _lazyOld($, "_googleSignIn", "$get$_googleSignIn", () => new A.GoogleSignIn(A._setArrayType(["email", "openid", "profile"], type$.JSArray_legacy_String), A.StreamController_StreamController$broadcast(null, null, false, type$.nullable_GoogleSignInAccount))); _lazyFinal($, "_emailRegex", "$get$_emailRegex", () => A.RegExp_RegExp("^(.*?)((mailto:)?[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z][A-Z]+)", false, true, false, false)); _lazyFinal($, "_urlRegex", "$get$_urlRegex", () => A.RegExp_RegExp("^(.*?)((?:https?:\\/\\/|www\\.)[^\\s/$.?#].[^\\s]*)", false, true, false, false)); _lazyFinal($, "_protocolIdentifierRegex", "$get$_protocolIdentifierRegex", () => A.RegExp_RegExp("^(https?:\\/\\/)", false, false, false, false)); _lazyFinal($, "Logger_root", "$get$Logger_root", () => A.Logger_Logger("")); _lazyFinal($, "_emptyPattern", "$get$_emptyPattern", () => A.RegExp_RegExp("^(?:[ \\t]*)$", true, false, false, false)); _lazyFinal($, "_setextPattern", "$get$_setextPattern", () => A.RegExp_RegExp("^[ ]{0,3}(=+|-+)\\s*$", true, false, false, false)); _lazyFinal($, "_headerPattern", "$get$_headerPattern", () => A.RegExp_RegExp("^ {0,3}(#{1,6})[ \\x09\\x0b\\x0c](.*?)#*$", true, false, false, false)); _lazyFinal($, "_blockquotePattern", "$get$_blockquotePattern", () => A.RegExp_RegExp("^[ ]{0,3}>[ ]?(.*)$", true, false, false, false)); _lazyFinal($, "_indentPattern", "$get$_indentPattern", () => A.RegExp_RegExp("^(?: | {0,3}\\t)(.*)$", true, false, false, false)); _lazyFinal($, "_codeFencePattern", "$get$_codeFencePattern", () => A.RegExp_RegExp("^[ ]{0,3}(`{3,}|~{3,})(.*)$", true, false, false, false)); _lazyFinal($, "_hrPattern", "$get$_hrPattern", () => A.RegExp_RegExp("^ {0,3}([-*_])[ \\t]*\\1[ \\t]*\\1(?:\\1|[ \\t])*$", true, false, false, false)); _lazyFinal($, "_ulPattern", "$get$_ulPattern", () => A.RegExp_RegExp("^([ ]{0,3})()([*+-])(([ \\t])([ \\t]*)(.*))?$", true, false, false, false)); _lazyFinal($, "_olPattern", "$get$_olPattern", () => A.RegExp_RegExp("^([ ]{0,3})(\\d{1,9})([\\.)])(([ \\t])([ \\t]*)(.*))?$", true, false, false, false)); _lazyFinal($, "_dummyPattern", "$get$_dummyPattern", () => A.RegExp_RegExp("", true, false, false, false)); _lazyFinal($, "BlockTagBlockHtmlSyntax__pattern", "$get$BlockTagBlockHtmlSyntax__pattern", () => A.RegExp_RegExp("^ {0,3}|/>|$)", true, false, false, false)); _lazyFinal($, "BlockTagBlockHtmlSyntax__openBracketPattern", "$get$BlockTagBlockHtmlSyntax__openBracketPattern", () => A.RegExp_RegExp("^ {0,3}<", true, false, false, false)); _lazyFinal($, "ListSyntax__whitespaceRe", "$get$ListSyntax__whitespaceRe", () => A.RegExp_RegExp("[ \t]*", true, false, false, false)); _lazyFinal($, "ParagraphSyntax__reflinkDefinitionStart", "$get$ParagraphSyntax__reflinkDefinitionStart", () => A.RegExp_RegExp("[ ]{0,3}\\[", true, false, false, false)); _lazyFinal($, "ParagraphSyntax__whitespacePattern", "$get$ParagraphSyntax__whitespacePattern", () => A.RegExp_RegExp("^\\s*$", true, false, false, false)); _lazyFinal($, "ExtensionSet_commonMark", "$get$ExtensionSet_commonMark", () => new A.ExtensionSet(A.List_List$unmodifiable(A._setArrayType([B.C_FencedCodeBlockSyntax], type$.JSArray_BlockSyntax), type$.BlockSyntax), A.List_List$unmodifiable(A._setArrayType([new A.InlineHtmlSyntax("", A.RegExp_RegExp("<[/!?]?[A-Za-z][A-Za-z0-9-]*(?:\\s[^>]*)?>", true, false, true, false), 60)], type$.JSArray_InlineSyntax), type$.InlineSyntax))); _lazyFinal($, "InlineParser__defaultSyntaxes", "$get$InlineParser__defaultSyntaxes", () => { var _null = null; return A.List_List$unmodifiable(A._setArrayType([new A.EmailAutolinkSyntax(A.RegExp_RegExp("<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>", true, false, true, false), 60), new A.AutolinkSyntax(A.RegExp_RegExp("<(([a-zA-Z][a-zA-Z\\-\\+\\.]+):(?://)?[^\\s>]*)>", true, false, true, false), _null), new A.LineBreakSyntax(A.RegExp_RegExp("(?:\\\\| +)\\n", true, false, true, false), _null), new A.EscapeSyntax(A.RegExp_RegExp("\\\\[!\"#$%&'()*+,\\-./:;<=>?@\\[\\\\\\]^_`{|}~]", true, false, true, false), _null), A.TextSyntax$(" \\* ", 32, ""), A.TextSyntax$(" _ ", 32, ""), A.TagSyntax$("\\*+", true, _null), A.TagSyntax$("_+", true, _null), new A.CodeSyntax(A.RegExp_RegExp("(`+(?!`))((?:.|\\n)*?[^`])\\1(?!`)", true, false, true, false), _null)], type$.JSArray_InlineSyntax), type$.InlineSyntax); }); _lazyFinal($, "InlineParser__htmlSyntaxes", "$get$InlineParser__htmlSyntaxes", () => A.List_List$unmodifiable(A._setArrayType([A.TextSyntax$("&[#a-zA-Z0-9]*;", 38, ""), A.TextSyntax$("&", 38, "&"), A.TextSyntax$("<", 60, "<"), A.TextSyntax$(">", 62, ">")], type$.JSArray_InlineSyntax), type$.InlineSyntax)); _lazyFinal($, "DelimiterRun_punctuation", "$get$DelimiterRun_punctuation", () => A.RegExp_RegExp("[!\"#$%&'()*+,\\-./:;<=>?@\\[\\]\\\\^_`{|}~\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061E\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u0AF0\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166D\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E42\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]", true, false, false, false)); _lazyFinal($, "LinkSyntax__entirelyWhitespacePattern", "$get$LinkSyntax__entirelyWhitespacePattern", () => A.RegExp_RegExp("^\\s*$", true, false, false, false)); _lazyFinal($, "_oneOrMoreWhitespacePattern", "$get$_oneOrMoreWhitespacePattern", () => A.RegExp_RegExp("[ \n\r\t]+", true, false, false, false)); _lazyFinal($, "PackageInfoPlatform__token", "$get$PackageInfoPlatform__token", () => new A.Object()); _lazy($, "PackageInfoPlatform__instance", "$get$PackageInfoPlatform__instance", () => new A.MethodChannelPackageInfo($.$get$PackageInfoPlatform__token())); _lazyFinal($, "context", "$get$context", () => new A.Context($.$get$Style_platform(), null)); _lazyFinal($, "Style_posix", "$get$Style_posix", () => new A.PosixStyle(A.RegExp_RegExp("/", true, false, false, false), A.RegExp_RegExp("[^/]$", true, false, false, false), A.RegExp_RegExp("^/", true, false, false, false))); _lazyFinal($, "Style_windows", "$get$Style_windows", () => new A.WindowsStyle(A.RegExp_RegExp("[/\\\\]", true, false, false, false), A.RegExp_RegExp("[^/\\\\]$", true, false, false, false), A.RegExp_RegExp("^(\\\\\\\\[^\\\\]+\\\\[^\\\\/]+|[a-zA-Z]:[/\\\\])", true, false, false, false), A.RegExp_RegExp("^[/\\\\](?![/\\\\])", true, false, false, false))); _lazyFinal($, "Style_url", "$get$Style_url", () => new A.UrlStyle(A.RegExp_RegExp("/", true, false, false, false), A.RegExp_RegExp("(^[a-zA-Z][-+.a-zA-Z\\d]*://|[^/])$", true, false, false, false), A.RegExp_RegExp("[a-zA-Z][-+.a-zA-Z\\d]*://[^/]*", true, false, false, false), A.RegExp_RegExp("^/", true, false, false, false))); _lazyFinal($, "Style_platform", "$get$Style_platform", () => A.Style__getPlatformStyle()); _lazyFinal($, "PathProviderPlatform__token", "$get$PathProviderPlatform__token", () => new A.Object()); _lazy($, "PathProviderPlatform__instance", "$get$PathProviderPlatform__instance", () => new A.MethodChannelPathProvider($.$get$PathProviderPlatform__token())); _lazyFinal($, "PermissionHandlerPlatform__token", "$get$PermissionHandlerPlatform__token", () => new A.Object()); _lazy($, "PermissionHandlerPlatform__instance", "$get$PermissionHandlerPlatform__instance", () => new A.MethodChannelPermissionHandler($.$get$PermissionHandlerPlatform__token())); _lazyFinal($, "PrintingPlatform__token", "$get$PrintingPlatform__token", () => new A.Object()); _lazy($, "PrintingPlatform__instance", "$get$PrintingPlatform__instance", () => { var t1 = $.$get$PrintingPlatform__token(); B.MethodChannel_mHe.setMethodCallHandler$1(A.method_channel_MethodChannelPrinting__handleMethod$closure()); return new A.MethodChannelPrinting(t1); }); _lazyFinal($, "MethodChannelPrinting__printJobs", "$get$MethodChannelPrinting__printJobs", () => new A.PrintJobs(A.LinkedHashMap_LinkedHashMap$_empty(type$.int, A.findType("PrintJob")))); _lazyFinal($, "_logTable", "$get$_logTable", () => A._createLogTable()); _lazyFinal($, "_expTable", "$get$_expTable", () => A._createExpTable()); _lazyFinal($, "envs", "$get$envs", () => new A.WebEnvironmentVariables()); _lazyFinal($, "HubAdapter__instance", "$get$HubAdapter__instance", () => new A.HubAdapter()); _lazyFinal($, "NoOpClient__instance", "$get$NoOpClient__instance", () => new A.NoOpClient()); _lazyFinal($, "NoOpHub__instance", "$get$NoOpHub__instance", () => { var t1 = type$.JSArray_String; return new A.NoOpHub(new A.SentryOptions(null, $.$get$NoOpClient__instance(), A._setArrayType([], A.findType("JSArray")), A._setArrayType([], A.findType("JSArray>")), B.SentryLevel_debug, A._setArrayType([], t1), A._setArrayType([], t1), new A.NoOpTransport(), new A.PlatformChecker(), $.$get$envs())); }); _lazyFinal($, "NoOpSentrySpan__instance", "$get$NoOpSentrySpan__instance", () => new A.NoOpSentrySpan()); _lazy($, "Sentry__hub", "$get$Sentry__hub", () => A.NoOpHub_NoOpHub()); _lazyFinal($, "SentryNative__instance", "$get$SentryNative__instance", () => new A.SentryNative()); _lazy($, "SharedPreferencesStorePlatform__instance", "$get$SharedPreferencesStorePlatform__instance", () => new A.MethodChannelSharedPreferencesStore()); _lazyFinal($, "SignInWithApplePlatform__token", "$get$SignInWithApplePlatform__token", () => new A.Object()); _lazy($, "SignInWithApplePlatform__instance", "$get$SignInWithApplePlatform__instance", () => new A.MethodChannelSignInWithApple($.$get$SignInWithApplePlatform__token())); _lazyFinal($, "_log1", "$get$_log2", () => A.Logger$("list_items.dart")); _lazyFinal($, "_log2", "$get$_log", () => A.Logger$("multi_node_editing.dart")); _lazyFinal($, "defaultStylesheet", "$get$defaultStylesheet", () => new A.Stylesheet(A.super_editor0__defaultInlineTextStyler$closure(), A._setArrayType([A.StyleRule$(B.BlockSelector_null_null_null_null, new A.defaultStylesheet_closure()), A.StyleRule$(B.BlockSelector_header1_null_null_null, new A.defaultStylesheet_closure0()), A.StyleRule$(B.BlockSelector_header2_null_null_null, new A.defaultStylesheet_closure1()), A.StyleRule$(B.BlockSelector_header3_null_null_null, new A.defaultStylesheet_closure2()), A.StyleRule$(B.BlockSelector_paragraph_null_null_null, new A.defaultStylesheet_closure3()), A.StyleRule$(B.BlockSelector_paragraph_null_null_null.after$1(0, "header1"), new A.defaultStylesheet_closure4()), A.StyleRule$(B.BlockSelector_paragraph_null_null_null.after$1(0, "header2"), new A.defaultStylesheet_closure5()), A.StyleRule$(B.BlockSelector_paragraph_null_null_null.after$1(0, "header3"), new A.defaultStylesheet_closure6()), A.StyleRule$(B.BlockSelector_listItem_null_null_null, new A.defaultStylesheet_closure7()), A.StyleRule$(A.BlockSelector$_(null, null, B.C__LastBlockMatcher, null), new A.defaultStylesheet_closure8())], A.findType("JSArray")))); _lazyFinal($, "_log3", "$get$_log3", () => A.Logger$("text_tools.dart")); _lazyFinal($, "_rtlRegExp", "$get$_rtlRegExp", () => A.RegExp_RegExp("[\\u0591-\\u07FF\\uFB1D-\\uFDFD\\uFE70-\\uFEFC]", true, false, false, false)); _lazyFinal($, "editorLog", "$get$editorLog", () => A.Logger_Logger("editor")); _lazyFinal($, "editorGesturesLog", "$get$editorGesturesLog", () => A.Logger_Logger("editor.gestures")); _lazyFinal($, "editorKeyLog", "$get$editorKeyLog", () => A.Logger_Logger("editor.keys")); _lazyFinal($, "editorImeLog", "$get$editorImeLog", () => A.Logger_Logger("editor.ime")); _lazyFinal($, "editorLayoutLog", "$get$editorLayoutLog", () => A.Logger_Logger("editor.layout")); _lazyFinal($, "editorDocLog", "$get$editorDocLog", () => A.Logger_Logger("editor.document")); _lazyFinal($, "editorOpsLog", "$get$editorOpsLog", () => A.Logger_Logger("editor.ops")); _lazyFinal($, "textFieldLog", "$get$textFieldLog", () => A.Logger_Logger("textfield")); _lazyFinal($, "attributionsLog0", "$get$attributionsLog0", () => A.Logger_Logger("infrastructure.attributions")); _lazyFinal($, "_platform", "$get$_platform", () => { var t1 = A.window().navigator.platform; return t1 == null ? "" : t1; }); _lazyFinal($, "isMac", "$get$isMac", () => J.startsWith$1$s($.$get$_platform(), "Mac")); _lazy($, "Platform__instance", "$get$Platform__instance", () => new A.Platform()); _lazyFinal($, "_separatorRegex", "$get$_separatorRegex", () => A.RegExp_RegExp("^[\\p{Z}\\p{P}]$", true, false, false, true)); _lazyFinal($, "_log4", "$get$_log4", () => $.$get$textFieldLog()); _lazyFinal($, "buildsLog", "$get$buildsLog", () => A.Logger_Logger("super_text.builds")); _lazyFinal($, "layoutLog", "$get$layoutLog", () => A.Logger_Logger("super_text.layout")); _lazy($, "_lookupMessagesMap", "$get$_lookupMessagesMap", () => A.LinkedHashMap_LinkedHashMap$_literal(["en", new A.EnMessages(), "en_short", new A.EnShortMessages(), "es", new A.EsMessages(), "es_short", new A.EsShortMessages()], type$.String, A.findType("LookupMessages"))); _lazyFinal($, "UrlLauncherPlatform__token", "$get$UrlLauncherPlatform__token", () => new A.Object()); _lazy($, "UrlLauncherPlatform__instance", "$get$UrlLauncherPlatform__instance", () => new A.MethodChannelUrlLauncher($.$get$UrlLauncherPlatform__token())); _lazyFinal($, "UrlLauncherPlugin__supportedSchemes", "$get$UrlLauncherPlugin__supportedSchemes", () => A.LinkedHashSet_LinkedHashSet$_literal(["http", "https"], type$.String).union$1(B.Set_4e8j2)); _lazyFinal($, "Uuid__byteToHex", "$get$Uuid__byteToHex", () => { var i, _list = J.JSArray_JSArray$allocateGrowable(256, type$.String); for (i = 0; i < 256; ++i) _list[i] = B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(i, 16), 2, "0"); return _list; }); _lazyFinal($, "Uuid__stateExpando", "$get$Uuid__stateExpando", () => A.Expando$(type$.Map_String_dynamic)); _lazyFinal($, "UuidUtil__random", "$get$UuidUtil__random", () => A.Random_Random(null)); _lazyFinal($, "Version__versionRegex", "$get$Version__versionRegex", () => A.RegExp_RegExp("^([\\d.]+)(-([0-9A-Za-z\\-.]+))?(\\+([0-9A-Za-z\\-.]+))?$", true, false, false, false)); _lazyFinal($, "Version__buildRegex", "$get$Version__buildRegex", () => A.RegExp_RegExp("^[0-9A-Za-z\\-.]+$", true, false, false, false)); _lazyFinal($, "Version__preReleaseRegex", "$get$Version__preReleaseRegex", () => A.RegExp_RegExp("^[0-9A-Za-z\\-]+$", true, false, false, false)); })(); (function nativeSupport() { !function() { var intern = function(s) { var o = {}; o[s] = 1; return Object.keys(hunkHelpers.convertToFastObject(o))[0]; }; init.getIsolateTag = function(name) { return intern("___dart_" + name + init.isolateTag); }; var tableProperty = "___dart_isolate_tags_"; var usedProperties = Object[tableProperty] || (Object[tableProperty] = Object.create(null)); var rootProperty = "_ZxYxX"; for (var i = 0;; i++) { var property = intern(rootProperty + "_" + i + "_"); if (!(property in usedProperties)) { usedProperties[property] = 1; init.isolateTag = property; break; } } init.dispatchPropertyName = init.getIsolateTag("dispatch_record"); }(); hunkHelpers.setOrUpdateInterceptorsByTag({WebGL: J.Interceptor, AnimationEffectReadOnly: J.JavaScriptObject, AnimationEffectTiming: J.JavaScriptObject, AnimationEffectTimingReadOnly: J.JavaScriptObject, AnimationTimeline: J.JavaScriptObject, AnimationWorkletGlobalScope: J.JavaScriptObject, AuthenticatorAssertionResponse: J.JavaScriptObject, AuthenticatorAttestationResponse: J.JavaScriptObject, AuthenticatorResponse: J.JavaScriptObject, BackgroundFetchFetch: J.JavaScriptObject, BackgroundFetchManager: J.JavaScriptObject, BackgroundFetchSettledFetch: J.JavaScriptObject, BarProp: J.JavaScriptObject, BarcodeDetector: J.JavaScriptObject, BudgetState: J.JavaScriptObject, CacheStorage: J.JavaScriptObject, CanvasGradient: J.JavaScriptObject, CanvasPattern: J.JavaScriptObject, Clients: J.JavaScriptObject, CookieStore: J.JavaScriptObject, Coordinates: J.JavaScriptObject, CredentialsContainer: J.JavaScriptObject, Crypto: J.JavaScriptObject, CryptoKey: J.JavaScriptObject, CSS: J.JavaScriptObject, CSSVariableReferenceValue: J.JavaScriptObject, CustomElementRegistry: J.JavaScriptObject, DataTransfer: J.JavaScriptObject, DataTransferItem: J.JavaScriptObject, DeprecatedStorageInfo: J.JavaScriptObject, DeprecatedStorageQuota: J.JavaScriptObject, DetectedBarcode: J.JavaScriptObject, DetectedFace: J.JavaScriptObject, DetectedText: J.JavaScriptObject, DeviceAcceleration: J.JavaScriptObject, DeviceRotationRate: J.JavaScriptObject, DirectoryReader: J.JavaScriptObject, WebKitDirectoryReader: J.JavaScriptObject, webkitFileSystemDirectoryReader: J.JavaScriptObject, FileSystemDirectoryReader: J.JavaScriptObject, DocumentOrShadowRoot: J.JavaScriptObject, DocumentTimeline: J.JavaScriptObject, DOMImplementation: J.JavaScriptObject, Iterator: J.JavaScriptObject, DOMMatrix: J.JavaScriptObject, DOMMatrixReadOnly: J.JavaScriptObject, DOMParser: J.JavaScriptObject, DOMPoint: J.JavaScriptObject, DOMPointReadOnly: J.JavaScriptObject, DOMQuad: J.JavaScriptObject, DOMStringMap: J.JavaScriptObject, External: J.JavaScriptObject, FaceDetector: J.JavaScriptObject, FontFaceSource: J.JavaScriptObject, FormData: J.JavaScriptObject, GamepadPose: J.JavaScriptObject, Geolocation: J.JavaScriptObject, Position: J.JavaScriptObject, GeolocationPosition: J.JavaScriptObject, Headers: J.JavaScriptObject, HTMLHyperlinkElementUtils: J.JavaScriptObject, IdleDeadline: J.JavaScriptObject, ImageBitmap: J.JavaScriptObject, ImageBitmapRenderingContext: J.JavaScriptObject, ImageCapture: J.JavaScriptObject, InputDeviceCapabilities: J.JavaScriptObject, IntersectionObserver: J.JavaScriptObject, IntersectionObserverEntry: J.JavaScriptObject, KeyframeEffect: J.JavaScriptObject, KeyframeEffectReadOnly: J.JavaScriptObject, MediaCapabilities: J.JavaScriptObject, MediaCapabilitiesInfo: J.JavaScriptObject, MediaDeviceInfo: J.JavaScriptObject, MediaKeyStatusMap: J.JavaScriptObject, MediaKeySystemAccess: J.JavaScriptObject, MediaKeys: J.JavaScriptObject, MediaKeysPolicy: J.JavaScriptObject, MediaMetadata: J.JavaScriptObject, MediaSession: J.JavaScriptObject, MediaSettingsRange: J.JavaScriptObject, MemoryInfo: J.JavaScriptObject, MessageChannel: J.JavaScriptObject, Metadata: J.JavaScriptObject, NavigationPreloadManager: J.JavaScriptObject, NavigatorAutomationInformation: J.JavaScriptObject, NavigatorCookies: J.JavaScriptObject, NodeFilter: J.JavaScriptObject, NodeIterator: J.JavaScriptObject, NonDocumentTypeChildNode: J.JavaScriptObject, NonElementParentNode: J.JavaScriptObject, NoncedElement: J.JavaScriptObject, OffscreenCanvasRenderingContext2D: J.JavaScriptObject, PaintRenderingContext2D: J.JavaScriptObject, PaintSize: J.JavaScriptObject, PaintWorkletGlobalScope: J.JavaScriptObject, Path2D: J.JavaScriptObject, PaymentAddress: J.JavaScriptObject, PaymentInstruments: J.JavaScriptObject, PaymentManager: J.JavaScriptObject, PaymentResponse: J.JavaScriptObject, PerformanceNavigation: J.JavaScriptObject, PerformanceObserver: J.JavaScriptObject, PerformanceObserverEntryList: J.JavaScriptObject, PerformanceTiming: J.JavaScriptObject, Permissions: J.JavaScriptObject, PhotoCapabilities: J.JavaScriptObject, Presentation: J.JavaScriptObject, PresentationReceiver: J.JavaScriptObject, PushManager: J.JavaScriptObject, PushMessageData: J.JavaScriptObject, PushSubscription: J.JavaScriptObject, PushSubscriptionOptions: J.JavaScriptObject, Range: J.JavaScriptObject, ReportingObserver: J.JavaScriptObject, ResizeObserver: J.JavaScriptObject, ResizeObserverEntry: J.JavaScriptObject, RTCCertificate: J.JavaScriptObject, RTCIceCandidate: J.JavaScriptObject, mozRTCIceCandidate: J.JavaScriptObject, RTCRtpContributingSource: J.JavaScriptObject, RTCRtpReceiver: J.JavaScriptObject, RTCRtpSender: J.JavaScriptObject, RTCSessionDescription: J.JavaScriptObject, mozRTCSessionDescription: J.JavaScriptObject, RTCStatsResponse: J.JavaScriptObject, Screen: J.JavaScriptObject, ScrollState: J.JavaScriptObject, ScrollTimeline: J.JavaScriptObject, Selection: J.JavaScriptObject, SharedArrayBuffer: J.JavaScriptObject, SpeechRecognitionAlternative: J.JavaScriptObject, StaticRange: J.JavaScriptObject, StorageManager: J.JavaScriptObject, StyleMedia: J.JavaScriptObject, StylePropertyMap: J.JavaScriptObject, StylePropertyMapReadonly: J.JavaScriptObject, SyncManager: J.JavaScriptObject, TextDetector: J.JavaScriptObject, TextMetrics: J.JavaScriptObject, TrackDefault: J.JavaScriptObject, TreeWalker: J.JavaScriptObject, TrustedHTML: J.JavaScriptObject, TrustedScriptURL: J.JavaScriptObject, TrustedURL: J.JavaScriptObject, UnderlyingSourceBase: J.JavaScriptObject, URLSearchParams: J.JavaScriptObject, VRCoordinateSystem: J.JavaScriptObject, VRDisplayCapabilities: J.JavaScriptObject, VREyeParameters: J.JavaScriptObject, VRFrameData: J.JavaScriptObject, VRFrameOfReference: J.JavaScriptObject, VRPose: J.JavaScriptObject, VRStageBounds: J.JavaScriptObject, VRStageBoundsPoint: J.JavaScriptObject, VRStageParameters: J.JavaScriptObject, ValidityState: J.JavaScriptObject, VideoPlaybackQuality: J.JavaScriptObject, WorkletAnimation: J.JavaScriptObject, WorkletGlobalScope: J.JavaScriptObject, XPathEvaluator: J.JavaScriptObject, XPathExpression: J.JavaScriptObject, XPathNSResolver: J.JavaScriptObject, XPathResult: J.JavaScriptObject, XMLSerializer: J.JavaScriptObject, XSLTProcessor: J.JavaScriptObject, Bluetooth: J.JavaScriptObject, BluetoothCharacteristicProperties: J.JavaScriptObject, BluetoothRemoteGATTServer: J.JavaScriptObject, BluetoothRemoteGATTService: J.JavaScriptObject, BluetoothUUID: J.JavaScriptObject, BudgetService: J.JavaScriptObject, Cache: J.JavaScriptObject, DOMFileSystemSync: J.JavaScriptObject, DirectoryEntrySync: J.JavaScriptObject, DirectoryReaderSync: J.JavaScriptObject, EntrySync: J.JavaScriptObject, FileEntrySync: J.JavaScriptObject, FileReaderSync: J.JavaScriptObject, FileWriterSync: J.JavaScriptObject, HTMLAllCollection: J.JavaScriptObject, Mojo: J.JavaScriptObject, MojoHandle: J.JavaScriptObject, MojoWatcher: J.JavaScriptObject, NFC: J.JavaScriptObject, PagePopupController: J.JavaScriptObject, SubtleCrypto: J.JavaScriptObject, USBAlternateInterface: J.JavaScriptObject, USBConfiguration: J.JavaScriptObject, USBDevice: J.JavaScriptObject, USBEndpoint: J.JavaScriptObject, USBInTransferResult: J.JavaScriptObject, USBInterface: J.JavaScriptObject, USBIsochronousInTransferPacket: J.JavaScriptObject, USBIsochronousInTransferResult: J.JavaScriptObject, USBIsochronousOutTransferPacket: J.JavaScriptObject, USBIsochronousOutTransferResult: J.JavaScriptObject, USBOutTransferResult: J.JavaScriptObject, WorkerLocation: J.JavaScriptObject, Worklet: J.JavaScriptObject, IDBFactory: J.JavaScriptObject, IDBObserver: J.JavaScriptObject, IDBObserverChanges: J.JavaScriptObject, SVGAnimatedAngle: J.JavaScriptObject, SVGAnimatedBoolean: J.JavaScriptObject, SVGAnimatedEnumeration: J.JavaScriptObject, SVGAnimatedInteger: J.JavaScriptObject, SVGAnimatedLength: J.JavaScriptObject, SVGAnimatedLengthList: J.JavaScriptObject, SVGAnimatedNumber: J.JavaScriptObject, SVGAnimatedNumberList: J.JavaScriptObject, SVGAnimatedPreserveAspectRatio: J.JavaScriptObject, SVGAnimatedRect: J.JavaScriptObject, SVGAnimatedString: J.JavaScriptObject, SVGAnimatedTransformList: J.JavaScriptObject, SVGMatrix: J.JavaScriptObject, SVGPoint: J.JavaScriptObject, SVGPreserveAspectRatio: J.JavaScriptObject, SVGRect: J.JavaScriptObject, SVGUnitTypes: J.JavaScriptObject, AudioListener: J.JavaScriptObject, AudioWorkletGlobalScope: J.JavaScriptObject, AudioWorkletProcessor: J.JavaScriptObject, PeriodicWave: J.JavaScriptObject, ANGLEInstancedArrays: J.JavaScriptObject, ANGLE_instanced_arrays: J.JavaScriptObject, WebGLBuffer: J.JavaScriptObject, WebGLCanvas: J.JavaScriptObject, WebGLColorBufferFloat: J.JavaScriptObject, WebGLCompressedTextureASTC: J.JavaScriptObject, WebGLCompressedTextureATC: J.JavaScriptObject, WEBGL_compressed_texture_atc: J.JavaScriptObject, WebGLCompressedTextureETC1: J.JavaScriptObject, WEBGL_compressed_texture_etc1: J.JavaScriptObject, WebGLCompressedTextureETC: J.JavaScriptObject, WebGLCompressedTexturePVRTC: J.JavaScriptObject, WEBGL_compressed_texture_pvrtc: J.JavaScriptObject, WebGLCompressedTextureS3TC: J.JavaScriptObject, WEBGL_compressed_texture_s3tc: J.JavaScriptObject, WebGLCompressedTextureS3TCsRGB: J.JavaScriptObject, WebGLDebugRendererInfo: J.JavaScriptObject, WEBGL_debug_renderer_info: J.JavaScriptObject, WebGLDebugShaders: J.JavaScriptObject, WEBGL_debug_shaders: J.JavaScriptObject, WebGLDepthTexture: J.JavaScriptObject, WEBGL_depth_texture: J.JavaScriptObject, WebGLDrawBuffers: J.JavaScriptObject, WEBGL_draw_buffers: J.JavaScriptObject, EXTsRGB: J.JavaScriptObject, EXT_sRGB: J.JavaScriptObject, EXTBlendMinMax: J.JavaScriptObject, EXT_blend_minmax: J.JavaScriptObject, EXTColorBufferFloat: J.JavaScriptObject, EXTColorBufferHalfFloat: J.JavaScriptObject, EXTDisjointTimerQuery: J.JavaScriptObject, EXTDisjointTimerQueryWebGL2: J.JavaScriptObject, EXTFragDepth: J.JavaScriptObject, EXT_frag_depth: J.JavaScriptObject, EXTShaderTextureLOD: J.JavaScriptObject, EXT_shader_texture_lod: J.JavaScriptObject, EXTTextureFilterAnisotropic: J.JavaScriptObject, EXT_texture_filter_anisotropic: J.JavaScriptObject, WebGLFramebuffer: J.JavaScriptObject, WebGLGetBufferSubDataAsync: J.JavaScriptObject, WebGLLoseContext: J.JavaScriptObject, WebGLExtensionLoseContext: J.JavaScriptObject, WEBGL_lose_context: J.JavaScriptObject, OESElementIndexUint: J.JavaScriptObject, OES_element_index_uint: J.JavaScriptObject, OESStandardDerivatives: J.JavaScriptObject, OES_standard_derivatives: J.JavaScriptObject, OESTextureFloat: J.JavaScriptObject, OES_texture_float: J.JavaScriptObject, OESTextureFloatLinear: J.JavaScriptObject, OES_texture_float_linear: J.JavaScriptObject, OESTextureHalfFloat: J.JavaScriptObject, OES_texture_half_float: J.JavaScriptObject, OESTextureHalfFloatLinear: J.JavaScriptObject, OES_texture_half_float_linear: J.JavaScriptObject, OESVertexArrayObject: J.JavaScriptObject, OES_vertex_array_object: J.JavaScriptObject, WebGLProgram: J.JavaScriptObject, WebGLQuery: J.JavaScriptObject, WebGLRenderbuffer: J.JavaScriptObject, WebGLRenderingContext: J.JavaScriptObject, WebGL2RenderingContext: J.JavaScriptObject, WebGLSampler: J.JavaScriptObject, WebGLShader: J.JavaScriptObject, WebGLShaderPrecisionFormat: J.JavaScriptObject, WebGLSync: J.JavaScriptObject, WebGLTexture: J.JavaScriptObject, WebGLTimerQueryEXT: J.JavaScriptObject, WebGLTransformFeedback: J.JavaScriptObject, WebGLUniformLocation: J.JavaScriptObject, WebGLVertexArrayObject: J.JavaScriptObject, WebGLVertexArrayObjectOES: J.JavaScriptObject, WebGL2RenderingContextBase: J.JavaScriptObject, ArrayBuffer: A.NativeByteBuffer, ArrayBufferView: A.NativeTypedData, DataView: A.NativeByteData, Float32Array: A.NativeFloat32List, Float64Array: A.NativeFloat64List, Int16Array: A.NativeInt16List, Int32Array: A.NativeInt32List, Int8Array: A.NativeInt8List, Uint16Array: A.NativeUint16List, Uint32Array: A.NativeUint32List, Uint8ClampedArray: A.NativeUint8ClampedList, CanvasPixelArray: A.NativeUint8ClampedList, Uint8Array: A.NativeUint8List, HTMLAudioElement: A.HtmlElement, HTMLBRElement: A.HtmlElement, HTMLContentElement: A.HtmlElement, HTMLDListElement: A.HtmlElement, HTMLDataListElement: A.HtmlElement, HTMLDetailsElement: A.HtmlElement, HTMLDialogElement: A.HtmlElement, HTMLHRElement: A.HtmlElement, HTMLHeadElement: A.HtmlElement, HTMLHeadingElement: A.HtmlElement, HTMLHtmlElement: A.HtmlElement, HTMLLegendElement: A.HtmlElement, HTMLLinkElement: A.HtmlElement, HTMLMediaElement: A.HtmlElement, HTMLMenuElement: A.HtmlElement, HTMLModElement: A.HtmlElement, HTMLOListElement: A.HtmlElement, HTMLOptGroupElement: A.HtmlElement, HTMLPictureElement: A.HtmlElement, HTMLPreElement: A.HtmlElement, HTMLQuoteElement: A.HtmlElement, HTMLScriptElement: A.HtmlElement, HTMLShadowElement: A.HtmlElement, HTMLSourceElement: A.HtmlElement, HTMLSpanElement: A.HtmlElement, HTMLTableCaptionElement: A.HtmlElement, HTMLTableCellElement: A.HtmlElement, HTMLTableDataCellElement: A.HtmlElement, HTMLTableHeaderCellElement: A.HtmlElement, HTMLTableColElement: A.HtmlElement, HTMLTimeElement: A.HtmlElement, HTMLTitleElement: A.HtmlElement, HTMLTrackElement: A.HtmlElement, HTMLUListElement: A.HtmlElement, HTMLUnknownElement: A.HtmlElement, HTMLVideoElement: A.HtmlElement, HTMLDirectoryElement: A.HtmlElement, HTMLFontElement: A.HtmlElement, HTMLFrameElement: A.HtmlElement, HTMLFrameSetElement: A.HtmlElement, HTMLMarqueeElement: A.HtmlElement, HTMLElement: A.HtmlElement, AccessibleNodeList: A.AccessibleNodeList, HTMLAnchorElement: A.AnchorElement, Animation: A.Animation, ApplicationCacheErrorEvent: A.ApplicationCacheErrorEvent, HTMLAreaElement: A.AreaElement, BackgroundFetchClickEvent: A.BackgroundFetchEvent, BackgroundFetchEvent: A.BackgroundFetchEvent, BackgroundFetchFailEvent: A.BackgroundFetchEvent, BackgroundFetchedEvent: A.BackgroundFetchEvent, BackgroundFetchRegistration: A.BackgroundFetchRegistration, HTMLBaseElement: A.BaseElement, BeforeUnloadEvent: A.BeforeUnloadEvent, Blob: A.Blob, BluetoothRemoteGATTDescriptor: A.BluetoothRemoteGattDescriptor, Body: A.Body, Request: A.Body, Response: A.Body, HTMLBodyElement: A.BodyElement, BroadcastChannel: A.BroadcastChannel, HTMLButtonElement: A.ButtonElement, HTMLCanvasElement: A.CanvasElement, CanvasRenderingContext2D: A.CanvasRenderingContext2D, CDATASection: A.CharacterData, CharacterData: A.CharacterData, Comment: A.CharacterData, ProcessingInstruction: A.CharacterData, Text: A.CharacterData, Client: A.Client, WindowClient: A.Client, PublicKeyCredential: A.Credential, Credential: A.Credential, CredentialUserData: A.CredentialUserData, CSSKeyframesRule: A.CssKeyframesRule, MozCSSKeyframesRule: A.CssKeyframesRule, WebKitCSSKeyframesRule: A.CssKeyframesRule, CSSKeywordValue: A.CssKeywordValue, CSSNumericValue: A.CssNumericValue, CSSPerspective: A.CssPerspective, CSSCharsetRule: A.CssRule, CSSConditionRule: A.CssRule, CSSFontFaceRule: A.CssRule, CSSGroupingRule: A.CssRule, CSSImportRule: A.CssRule, CSSKeyframeRule: A.CssRule, MozCSSKeyframeRule: A.CssRule, WebKitCSSKeyframeRule: A.CssRule, CSSMediaRule: A.CssRule, CSSNamespaceRule: A.CssRule, CSSPageRule: A.CssRule, CSSStyleRule: A.CssRule, CSSSupportsRule: A.CssRule, CSSViewportRule: A.CssRule, CSSRule: A.CssRule, CSSStyleDeclaration: A.CssStyleDeclaration, MSStyleCSSProperties: A.CssStyleDeclaration, CSS2Properties: A.CssStyleDeclaration, CSSStyleSheet: A.CssStyleSheet, CSSImageValue: A.CssStyleValue, CSSPositionValue: A.CssStyleValue, CSSResourceValue: A.CssStyleValue, CSSURLImageValue: A.CssStyleValue, CSSStyleValue: A.CssStyleValue, CSSMatrixComponent: A.CssTransformComponent, CSSRotation: A.CssTransformComponent, CSSScale: A.CssTransformComponent, CSSSkew: A.CssTransformComponent, CSSTranslation: A.CssTransformComponent, CSSTransformComponent: A.CssTransformComponent, CSSTransformValue: A.CssTransformValue, CSSUnitValue: A.CssUnitValue, CSSUnparsedValue: A.CssUnparsedValue, HTMLDataElement: A.DataElement, DataTransferItemList: A.DataTransferItemList, DeprecationReport: A.DeprecationReport, HTMLDivElement: A.DivElement, XMLDocument: A.Document1, Document: A.Document1, DOMError: A.DomError, DOMException: A.DomException, ClientRectList: A.DomRectList, DOMRectList: A.DomRectList, DOMRectReadOnly: A.DomRectReadOnly, DOMStringList: A.DomStringList, DOMTokenList: A.DomTokenList, Element: A.Element2, HTMLEmbedElement: A.EmbedElement, DirectoryEntry: A.Entry, webkitFileSystemDirectoryEntry: A.Entry, FileSystemDirectoryEntry: A.Entry, Entry: A.Entry, webkitFileSystemEntry: A.Entry, FileSystemEntry: A.Entry, FileEntry: A.Entry, webkitFileSystemFileEntry: A.Entry, FileSystemFileEntry: A.Entry, ErrorEvent: A.ErrorEvent, AnimationEvent: A.Event, AnimationPlaybackEvent: A.Event, BeforeInstallPromptEvent: A.Event, BlobEvent: A.Event, ClipboardEvent: A.Event, CloseEvent: A.Event, CustomEvent: A.Event, DeviceMotionEvent: A.Event, DeviceOrientationEvent: A.Event, FontFaceSetLoadEvent: A.Event, GamepadEvent: A.Event, HashChangeEvent: A.Event, MediaEncryptedEvent: A.Event, MediaStreamEvent: A.Event, MediaStreamTrackEvent: A.Event, MessageEvent: A.Event, MIDIConnectionEvent: A.Event, MIDIMessageEvent: A.Event, MutationEvent: A.Event, PageTransitionEvent: A.Event, PaymentRequestUpdateEvent: A.Event, PopStateEvent: A.Event, PresentationConnectionAvailableEvent: A.Event, PromiseRejectionEvent: A.Event, RTCDataChannelEvent: A.Event, RTCDTMFToneChangeEvent: A.Event, RTCPeerConnectionIceEvent: A.Event, RTCTrackEvent: A.Event, SecurityPolicyViolationEvent: A.Event, SensorErrorEvent: A.Event, SpeechRecognitionEvent: A.Event, StorageEvent: A.Event, TrackEvent: A.Event, TransitionEvent: A.Event, WebKitTransitionEvent: A.Event, VRDeviceEvent: A.Event, VRDisplayEvent: A.Event, VRSessionEvent: A.Event, MojoInterfaceRequestEvent: A.Event, USBConnectionEvent: A.Event, AudioProcessingEvent: A.Event, OfflineAudioCompletionEvent: A.Event, WebGLContextEvent: A.Event, Event: A.Event, InputEvent: A.Event, SubmitEvent: A.Event, AbsoluteOrientationSensor: A.EventTarget, Accelerometer: A.EventTarget, AccessibleNode: A.EventTarget, AmbientLightSensor: A.EventTarget, ApplicationCache: A.EventTarget, DOMApplicationCache: A.EventTarget, OfflineResourceList: A.EventTarget, BatteryManager: A.EventTarget, EventSource: A.EventTarget, Gyroscope: A.EventTarget, LinearAccelerationSensor: A.EventTarget, Magnetometer: A.EventTarget, MediaDevices: A.EventTarget, MediaRecorder: A.EventTarget, MediaSource: A.EventTarget, MIDIAccess: A.EventTarget, NetworkInformation: A.EventTarget, OrientationSensor: A.EventTarget, PermissionStatus: A.EventTarget, PresentationConnectionList: A.EventTarget, PresentationRequest: A.EventTarget, RelativeOrientationSensor: A.EventTarget, RemotePlayback: A.EventTarget, RTCDTMFSender: A.EventTarget, RTCPeerConnection: A.EventTarget, webkitRTCPeerConnection: A.EventTarget, mozRTCPeerConnection: A.EventTarget, Sensor: A.EventTarget, ServiceWorker: A.EventTarget, ServiceWorkerContainer: A.EventTarget, ServiceWorkerRegistration: A.EventTarget, SharedWorker: A.EventTarget, SpeechRecognition: A.EventTarget, SpeechSynthesis: A.EventTarget, SpeechSynthesisUtterance: A.EventTarget, VR: A.EventTarget, VRDevice: A.EventTarget, VRDisplay: A.EventTarget, VRSession: A.EventTarget, VisualViewport: A.EventTarget, WebSocket: A.EventTarget, Worker: A.EventTarget, WorkerPerformance: A.EventTarget, BluetoothDevice: A.EventTarget, BluetoothRemoteGATTCharacteristic: A.EventTarget, Clipboard: A.EventTarget, MojoInterfaceInterceptor: A.EventTarget, USB: A.EventTarget, IDBOpenDBRequest: A.EventTarget, IDBVersionChangeRequest: A.EventTarget, IDBRequest: A.EventTarget, IDBTransaction: A.EventTarget, AnalyserNode: A.EventTarget, RealtimeAnalyserNode: A.EventTarget, AudioBufferSourceNode: A.EventTarget, AudioDestinationNode: A.EventTarget, AudioNode: A.EventTarget, AudioScheduledSourceNode: A.EventTarget, AudioWorkletNode: A.EventTarget, BiquadFilterNode: A.EventTarget, ChannelMergerNode: A.EventTarget, AudioChannelMerger: A.EventTarget, ChannelSplitterNode: A.EventTarget, AudioChannelSplitter: A.EventTarget, ConstantSourceNode: A.EventTarget, ConvolverNode: A.EventTarget, DelayNode: A.EventTarget, DynamicsCompressorNode: A.EventTarget, GainNode: A.EventTarget, AudioGainNode: A.EventTarget, IIRFilterNode: A.EventTarget, MediaElementAudioSourceNode: A.EventTarget, MediaStreamAudioDestinationNode: A.EventTarget, MediaStreamAudioSourceNode: A.EventTarget, OscillatorNode: A.EventTarget, Oscillator: A.EventTarget, PannerNode: A.EventTarget, AudioPannerNode: A.EventTarget, webkitAudioPannerNode: A.EventTarget, ScriptProcessorNode: A.EventTarget, JavaScriptAudioNode: A.EventTarget, StereoPannerNode: A.EventTarget, WaveShaperNode: A.EventTarget, EventTarget: A.EventTarget, AbortPaymentEvent: A.ExtendableEvent, CanMakePaymentEvent: A.ExtendableEvent, ExtendableMessageEvent: A.ExtendableEvent, FetchEvent: A.ExtendableEvent, ForeignFetchEvent: A.ExtendableEvent, InstallEvent: A.ExtendableEvent, NotificationEvent: A.ExtendableEvent, PaymentRequestEvent: A.ExtendableEvent, PushEvent: A.ExtendableEvent, SyncEvent: A.ExtendableEvent, ExtendableEvent: A.ExtendableEvent, FederatedCredential: A.FederatedCredential, HTMLFieldSetElement: A.FieldSetElement, File: A.File, FileList: A.FileList, FileReader: A.FileReader, DOMFileSystem: A.FileSystem, WebKitFileSystem: A.FileSystem, webkitFileSystem: A.FileSystem, FileSystem: A.FileSystem, FileWriter: A.FileWriter, FontFace: A.FontFace, FontFaceSet: A.FontFaceSet, HTMLFormElement: A.FormElement, Gamepad: A.Gamepad, GamepadButton: A.GamepadButton, History: A.History, HTMLCollection: A.HtmlCollection, HTMLFormControlsCollection: A.HtmlCollection, HTMLOptionsCollection: A.HtmlCollection, HTMLDocument: A.HtmlDocument, XMLHttpRequest: A.HttpRequest, XMLHttpRequestUpload: A.HttpRequestEventTarget, XMLHttpRequestEventTarget: A.HttpRequestEventTarget, HTMLIFrameElement: A.IFrameElement, ImageData: A.ImageData, HTMLImageElement: A.ImageElement, HTMLInputElement: A.InputElement, InterventionReport: A.InterventionReport, KeyboardEvent: A.KeyboardEvent, HTMLLIElement: A.LIElement, HTMLLabelElement: A.LabelElement, Location: A.Location, HTMLMapElement: A.MapElement, MediaError: A.MediaError, MediaKeyMessageEvent: A.MediaKeyMessageEvent, MediaKeySession: A.MediaKeySession, MediaList: A.MediaList, MediaQueryList: A.MediaQueryList, MediaQueryListEvent: A.MediaQueryListEvent, MediaStream: A.MediaStream, CanvasCaptureMediaStreamTrack: A.MediaStreamTrack, MediaStreamTrack: A.MediaStreamTrack, MessagePort: A.MessagePort, HTMLMetaElement: A.MetaElement, HTMLMeterElement: A.MeterElement, MIDIInputMap: A.MidiInputMap, MIDIOutputMap: A.MidiOutputMap, MIDIInput: A.MidiPort, MIDIOutput: A.MidiPort, MIDIPort: A.MidiPort, MimeType: A.MimeType, MimeTypeArray: A.MimeTypeArray, MouseEvent: A.MouseEvent, DragEvent: A.MouseEvent, MutationObserver: A.MutationObserver, WebKitMutationObserver: A.MutationObserver, MutationRecord: A.MutationRecord, Navigator: A.Navigator0, WorkerNavigator: A.NavigatorConcurrentHardware, NavigatorConcurrentHardware: A.NavigatorConcurrentHardware, NavigatorUserMediaError: A.NavigatorUserMediaError, DocumentFragment: A.Node1, ShadowRoot: A.Node1, DocumentType: A.Node1, Node: A.Node1, NodeList: A.NodeList0, RadioNodeList: A.NodeList0, Notification: A.Notification, HTMLObjectElement: A.ObjectElement, OffscreenCanvas: A.OffscreenCanvas, HTMLOptionElement: A.OptionElement, HTMLOutputElement: A.OutputElement, OverconstrainedError: A.OverconstrainedError, HTMLParagraphElement: A.ParagraphElement, HTMLParamElement: A.ParamElement, PasswordCredential: A.PasswordCredential, PaymentRequest: A.PaymentRequest, Performance: A.Performance, PerformanceEntry: A.PerformanceEntry, PerformanceLongTaskTiming: A.PerformanceEntry, PerformanceMark: A.PerformanceEntry, PerformanceMeasure: A.PerformanceEntry, PerformanceNavigationTiming: A.PerformanceEntry, PerformancePaintTiming: A.PerformanceEntry, PerformanceResourceTiming: A.PerformanceEntry, TaskAttributionTiming: A.PerformanceEntry, PerformanceServerTiming: A.PerformanceServerTiming, Plugin: A.Plugin, PluginArray: A.PluginArray, PointerEvent: A.PointerEvent0, PositionError: A.PositionError, GeolocationPositionError: A.PositionError, PresentationAvailability: A.PresentationAvailability, PresentationConnection: A.PresentationConnection, PresentationConnectionCloseEvent: A.PresentationConnectionCloseEvent, HTMLProgressElement: A.ProgressElement, ProgressEvent: A.ProgressEvent, ResourceProgressEvent: A.ProgressEvent, RelatedApplication: A.RelatedApplication, ReportBody: A.ReportBody, RTCDataChannel: A.RtcDataChannel, DataChannel: A.RtcDataChannel, RTCLegacyStatsReport: A.RtcLegacyStatsReport, RTCStatsReport: A.RtcStatsReport, ScreenOrientation: A.ScreenOrientation, HTMLSelectElement: A.SelectElement, SharedWorkerGlobalScope: A.SharedWorkerGlobalScope, HTMLSlotElement: A.SlotElement, SourceBuffer: A.SourceBuffer, SourceBufferList: A.SourceBufferList, SpeechGrammar: A.SpeechGrammar, SpeechGrammarList: A.SpeechGrammarList, SpeechRecognitionError: A.SpeechRecognitionError, SpeechRecognitionResult: A.SpeechRecognitionResult, SpeechSynthesisEvent: A.SpeechSynthesisEvent, SpeechSynthesisVoice: A.SpeechSynthesisVoice, Storage: A.Storage, HTMLStyleElement: A.StyleElement, StyleSheet: A.StyleSheet, HTMLTableElement: A.TableElement, HTMLTableRowElement: A.TableRowElement, HTMLTableSectionElement: A.TableSectionElement, HTMLTemplateElement: A.TemplateElement, HTMLTextAreaElement: A.TextAreaElement, TextTrack: A.TextTrack, TextTrackCue: A.TextTrackCue, VTTCue: A.TextTrackCue, TextTrackCueList: A.TextTrackCueList, TextTrackList: A.TextTrackList, TimeRanges: A.TimeRanges, Touch: A.Touch, TouchEvent: A.TouchEvent, TouchList: A.TouchList, TrackDefaultList: A.TrackDefaultList, CompositionEvent: A.UIEvent, FocusEvent: A.UIEvent, TextEvent: A.UIEvent, UIEvent: A.UIEvent, URL: A.Url, VideoTrack: A.VideoTrack, VideoTrackList: A.VideoTrackList, VTTRegion: A.VttRegion, WheelEvent: A.WheelEvent, Window: A.Window, DOMWindow: A.Window, DedicatedWorkerGlobalScope: A.WorkerGlobalScope, ServiceWorkerGlobalScope: A.WorkerGlobalScope, WorkerGlobalScope: A.WorkerGlobalScope, Attr: A._Attr, CSSRuleList: A._CssRuleList, ClientRect: A._DomRect, DOMRect: A._DomRect, GamepadList: A._GamepadList, NamedNodeMap: A._NamedNodeMap, MozNamedAttrMap: A._NamedNodeMap, Report: A._Report, SpeechRecognitionResultList: A._SpeechRecognitionResultList, StyleSheetList: A._StyleSheetList, IDBCursor: A.Cursor, IDBCursorWithValue: A.CursorWithValue, IDBDatabase: A.Database, IDBIndex: A.Index, IDBKeyRange: A.KeyRange, IDBObjectStore: A.ObjectStore, IDBObservation: A.Observation, IDBVersionChangeEvent: A.VersionChangeEvent, SVGAngle: A.Angle, SVGClipPathElement: A.ClipPathElement, SVGDefsElement: A.DefsElement, SVGFEBlendElement: A.FEBlendElement, SVGFEColorMatrixElement: A.FEColorMatrixElement, SVGFECompositeElement: A.FECompositeElement, SVGFEFloodElement: A.FEFloodElement, SVGFilterElement: A.FilterElement, SVGCircleElement: A.GeometryElement, SVGEllipseElement: A.GeometryElement, SVGLineElement: A.GeometryElement, SVGPolygonElement: A.GeometryElement, SVGPolylineElement: A.GeometryElement, SVGRectElement: A.GeometryElement, SVGGeometryElement: A.GeometryElement, SVGAElement: A.GraphicsElement, SVGForeignObjectElement: A.GraphicsElement, SVGGElement: A.GraphicsElement, SVGImageElement: A.GraphicsElement, SVGSwitchElement: A.GraphicsElement, SVGTSpanElement: A.GraphicsElement, SVGTextContentElement: A.GraphicsElement, SVGTextElement: A.GraphicsElement, SVGTextPathElement: A.GraphicsElement, SVGTextPositioningElement: A.GraphicsElement, SVGUseElement: A.GraphicsElement, SVGGraphicsElement: A.GraphicsElement, SVGLength: A.Length, SVGLengthList: A.LengthList, SVGNumber: A.Number, SVGNumberList: A.NumberList, SVGPathElement: A.PathElement, SVGPointList: A.PointList, SVGScriptElement: A.ScriptElement0, SVGStringList: A.StringList, SVGAnimateElement: A.SvgElement, SVGAnimateMotionElement: A.SvgElement, SVGAnimateTransformElement: A.SvgElement, SVGAnimationElement: A.SvgElement, SVGDescElement: A.SvgElement, SVGDiscardElement: A.SvgElement, SVGFEComponentTransferElement: A.SvgElement, SVGFEConvolveMatrixElement: A.SvgElement, SVGFEDiffuseLightingElement: A.SvgElement, SVGFEDisplacementMapElement: A.SvgElement, SVGFEDistantLightElement: A.SvgElement, SVGFEFuncAElement: A.SvgElement, SVGFEFuncBElement: A.SvgElement, SVGFEFuncGElement: A.SvgElement, SVGFEFuncRElement: A.SvgElement, SVGFEGaussianBlurElement: A.SvgElement, SVGFEImageElement: A.SvgElement, SVGFEMergeElement: A.SvgElement, SVGFEMergeNodeElement: A.SvgElement, SVGFEMorphologyElement: A.SvgElement, SVGFEOffsetElement: A.SvgElement, SVGFEPointLightElement: A.SvgElement, SVGFESpecularLightingElement: A.SvgElement, SVGFESpotLightElement: A.SvgElement, SVGFETileElement: A.SvgElement, SVGFETurbulenceElement: A.SvgElement, SVGLinearGradientElement: A.SvgElement, SVGMarkerElement: A.SvgElement, SVGMaskElement: A.SvgElement, SVGMetadataElement: A.SvgElement, SVGPatternElement: A.SvgElement, SVGRadialGradientElement: A.SvgElement, SVGSetElement: A.SvgElement, SVGStopElement: A.SvgElement, SVGStyleElement: A.SvgElement, SVGSymbolElement: A.SvgElement, SVGTitleElement: A.SvgElement, SVGViewElement: A.SvgElement, SVGGradientElement: A.SvgElement, SVGComponentTransferFunctionElement: A.SvgElement, SVGFEDropShadowElement: A.SvgElement, SVGMPathElement: A.SvgElement, SVGElement: A.SvgElement, SVGSVGElement: A.SvgSvgElement, SVGTransform: A.Transform0, SVGTransformList: A.TransformList, AudioBuffer: A.AudioBuffer, AudioParam: A.AudioParam, AudioParamMap: A.AudioParamMap, AudioTrack: A.AudioTrack, AudioTrackList: A.AudioTrackList, AudioContext: A.BaseAudioContext, webkitAudioContext: A.BaseAudioContext, BaseAudioContext: A.BaseAudioContext, OfflineAudioContext: A.OfflineAudioContext, WebGLActiveInfo: A.ActiveInfo}); hunkHelpers.setOrUpdateLeafTags({WebGL: true, AnimationEffectReadOnly: true, AnimationEffectTiming: true, AnimationEffectTimingReadOnly: true, AnimationTimeline: true, AnimationWorkletGlobalScope: true, AuthenticatorAssertionResponse: true, AuthenticatorAttestationResponse: true, AuthenticatorResponse: true, BackgroundFetchFetch: true, BackgroundFetchManager: true, BackgroundFetchSettledFetch: true, BarProp: true, BarcodeDetector: true, BudgetState: true, CacheStorage: true, CanvasGradient: true, CanvasPattern: true, Clients: true, CookieStore: true, Coordinates: true, CredentialsContainer: true, Crypto: true, CryptoKey: true, CSS: true, CSSVariableReferenceValue: true, CustomElementRegistry: true, DataTransfer: true, DataTransferItem: true, DeprecatedStorageInfo: true, DeprecatedStorageQuota: true, DetectedBarcode: true, DetectedFace: true, DetectedText: true, DeviceAcceleration: true, DeviceRotationRate: true, DirectoryReader: true, WebKitDirectoryReader: true, webkitFileSystemDirectoryReader: true, FileSystemDirectoryReader: true, DocumentOrShadowRoot: true, DocumentTimeline: true, DOMImplementation: true, Iterator: true, DOMMatrix: true, DOMMatrixReadOnly: true, DOMParser: true, DOMPoint: true, DOMPointReadOnly: true, DOMQuad: true, DOMStringMap: true, External: true, FaceDetector: true, FontFaceSource: true, FormData: true, GamepadPose: true, Geolocation: true, Position: true, GeolocationPosition: true, Headers: true, HTMLHyperlinkElementUtils: true, IdleDeadline: true, ImageBitmap: true, ImageBitmapRenderingContext: true, ImageCapture: true, InputDeviceCapabilities: true, IntersectionObserver: true, IntersectionObserverEntry: true, KeyframeEffect: true, KeyframeEffectReadOnly: true, MediaCapabilities: true, MediaCapabilitiesInfo: true, MediaDeviceInfo: true, MediaKeyStatusMap: true, MediaKeySystemAccess: true, MediaKeys: true, MediaKeysPolicy: true, MediaMetadata: true, MediaSession: true, MediaSettingsRange: true, MemoryInfo: true, MessageChannel: true, Metadata: true, NavigationPreloadManager: true, NavigatorAutomationInformation: true, NavigatorCookies: true, NodeFilter: true, NodeIterator: true, NonDocumentTypeChildNode: true, NonElementParentNode: true, NoncedElement: true, OffscreenCanvasRenderingContext2D: true, PaintRenderingContext2D: true, PaintSize: true, PaintWorkletGlobalScope: true, Path2D: true, PaymentAddress: true, PaymentInstruments: true, PaymentManager: true, PaymentResponse: true, PerformanceNavigation: true, PerformanceObserver: true, PerformanceObserverEntryList: true, PerformanceTiming: true, Permissions: true, PhotoCapabilities: true, Presentation: true, PresentationReceiver: true, PushManager: true, PushMessageData: true, PushSubscription: true, PushSubscriptionOptions: true, Range: true, ReportingObserver: true, ResizeObserver: true, ResizeObserverEntry: true, RTCCertificate: true, RTCIceCandidate: true, mozRTCIceCandidate: true, RTCRtpContributingSource: true, RTCRtpReceiver: true, RTCRtpSender: true, RTCSessionDescription: true, mozRTCSessionDescription: true, RTCStatsResponse: true, Screen: true, ScrollState: true, ScrollTimeline: true, Selection: true, SharedArrayBuffer: true, SpeechRecognitionAlternative: true, StaticRange: true, StorageManager: true, StyleMedia: true, StylePropertyMap: true, StylePropertyMapReadonly: true, SyncManager: true, TextDetector: true, TextMetrics: true, TrackDefault: true, TreeWalker: true, TrustedHTML: true, TrustedScriptURL: true, TrustedURL: true, UnderlyingSourceBase: true, URLSearchParams: true, VRCoordinateSystem: true, VRDisplayCapabilities: true, VREyeParameters: true, VRFrameData: true, VRFrameOfReference: true, VRPose: true, VRStageBounds: true, VRStageBoundsPoint: true, VRStageParameters: true, ValidityState: true, VideoPlaybackQuality: true, WorkletAnimation: true, WorkletGlobalScope: true, XPathEvaluator: true, XPathExpression: true, XPathNSResolver: true, XPathResult: true, XMLSerializer: true, XSLTProcessor: true, Bluetooth: true, BluetoothCharacteristicProperties: true, BluetoothRemoteGATTServer: true, BluetoothRemoteGATTService: true, BluetoothUUID: true, BudgetService: true, Cache: true, DOMFileSystemSync: true, DirectoryEntrySync: true, DirectoryReaderSync: true, EntrySync: true, FileEntrySync: true, FileReaderSync: true, FileWriterSync: true, HTMLAllCollection: true, Mojo: true, MojoHandle: true, MojoWatcher: true, NFC: true, PagePopupController: true, SubtleCrypto: true, USBAlternateInterface: true, USBConfiguration: true, USBDevice: true, USBEndpoint: true, USBInTransferResult: true, USBInterface: true, USBIsochronousInTransferPacket: true, USBIsochronousInTransferResult: true, USBIsochronousOutTransferPacket: true, USBIsochronousOutTransferResult: true, USBOutTransferResult: true, WorkerLocation: true, Worklet: true, IDBFactory: true, IDBObserver: true, IDBObserverChanges: true, SVGAnimatedAngle: true, SVGAnimatedBoolean: true, SVGAnimatedEnumeration: true, SVGAnimatedInteger: true, SVGAnimatedLength: true, SVGAnimatedLengthList: true, SVGAnimatedNumber: true, SVGAnimatedNumberList: true, SVGAnimatedPreserveAspectRatio: true, SVGAnimatedRect: true, SVGAnimatedString: true, SVGAnimatedTransformList: true, SVGMatrix: true, SVGPoint: true, SVGPreserveAspectRatio: true, SVGRect: true, SVGUnitTypes: true, AudioListener: true, AudioWorkletGlobalScope: true, AudioWorkletProcessor: true, PeriodicWave: true, ANGLEInstancedArrays: true, ANGLE_instanced_arrays: true, WebGLBuffer: true, WebGLCanvas: true, WebGLColorBufferFloat: true, WebGLCompressedTextureASTC: true, WebGLCompressedTextureATC: true, WEBGL_compressed_texture_atc: true, WebGLCompressedTextureETC1: true, WEBGL_compressed_texture_etc1: true, WebGLCompressedTextureETC: true, WebGLCompressedTexturePVRTC: true, WEBGL_compressed_texture_pvrtc: true, WebGLCompressedTextureS3TC: true, WEBGL_compressed_texture_s3tc: true, WebGLCompressedTextureS3TCsRGB: true, WebGLDebugRendererInfo: true, WEBGL_debug_renderer_info: true, WebGLDebugShaders: true, WEBGL_debug_shaders: true, WebGLDepthTexture: true, WEBGL_depth_texture: true, WebGLDrawBuffers: true, WEBGL_draw_buffers: true, EXTsRGB: true, EXT_sRGB: true, EXTBlendMinMax: true, EXT_blend_minmax: true, EXTColorBufferFloat: true, EXTColorBufferHalfFloat: true, EXTDisjointTimerQuery: true, EXTDisjointTimerQueryWebGL2: true, EXTFragDepth: true, EXT_frag_depth: true, EXTShaderTextureLOD: true, EXT_shader_texture_lod: true, EXTTextureFilterAnisotropic: true, EXT_texture_filter_anisotropic: true, WebGLFramebuffer: true, WebGLGetBufferSubDataAsync: true, WebGLLoseContext: true, WebGLExtensionLoseContext: true, WEBGL_lose_context: true, OESElementIndexUint: true, OES_element_index_uint: true, OESStandardDerivatives: true, OES_standard_derivatives: true, OESTextureFloat: true, OES_texture_float: true, OESTextureFloatLinear: true, OES_texture_float_linear: true, OESTextureHalfFloat: true, OES_texture_half_float: true, OESTextureHalfFloatLinear: true, OES_texture_half_float_linear: true, OESVertexArrayObject: true, OES_vertex_array_object: true, WebGLProgram: true, WebGLQuery: true, WebGLRenderbuffer: true, WebGLRenderingContext: true, WebGL2RenderingContext: true, WebGLSampler: true, WebGLShader: true, WebGLShaderPrecisionFormat: true, WebGLSync: true, WebGLTexture: true, WebGLTimerQueryEXT: true, WebGLTransformFeedback: true, WebGLUniformLocation: true, WebGLVertexArrayObject: true, WebGLVertexArrayObjectOES: true, WebGL2RenderingContextBase: true, ArrayBuffer: true, ArrayBufferView: false, DataView: true, Float32Array: true, Float64Array: true, Int16Array: true, Int32Array: true, Int8Array: true, Uint16Array: true, Uint32Array: true, Uint8ClampedArray: true, CanvasPixelArray: true, Uint8Array: false, HTMLAudioElement: true, HTMLBRElement: true, HTMLContentElement: true, HTMLDListElement: true, HTMLDataListElement: true, HTMLDetailsElement: true, HTMLDialogElement: true, HTMLHRElement: true, HTMLHeadElement: true, HTMLHeadingElement: true, HTMLHtmlElement: true, HTMLLegendElement: true, HTMLLinkElement: true, HTMLMediaElement: true, HTMLMenuElement: true, HTMLModElement: true, HTMLOListElement: true, HTMLOptGroupElement: true, HTMLPictureElement: true, HTMLPreElement: true, HTMLQuoteElement: true, HTMLScriptElement: true, HTMLShadowElement: true, HTMLSourceElement: true, HTMLSpanElement: true, HTMLTableCaptionElement: true, HTMLTableCellElement: true, HTMLTableDataCellElement: true, HTMLTableHeaderCellElement: true, HTMLTableColElement: true, HTMLTimeElement: true, HTMLTitleElement: true, HTMLTrackElement: true, HTMLUListElement: true, HTMLUnknownElement: true, HTMLVideoElement: true, HTMLDirectoryElement: true, HTMLFontElement: true, HTMLFrameElement: true, HTMLFrameSetElement: true, HTMLMarqueeElement: true, HTMLElement: false, AccessibleNodeList: true, HTMLAnchorElement: true, Animation: true, ApplicationCacheErrorEvent: true, HTMLAreaElement: true, BackgroundFetchClickEvent: true, BackgroundFetchEvent: true, BackgroundFetchFailEvent: true, BackgroundFetchedEvent: true, BackgroundFetchRegistration: true, HTMLBaseElement: true, BeforeUnloadEvent: true, Blob: false, BluetoothRemoteGATTDescriptor: true, Body: true, Request: true, Response: true, HTMLBodyElement: true, BroadcastChannel: true, HTMLButtonElement: true, HTMLCanvasElement: true, CanvasRenderingContext2D: true, CDATASection: true, CharacterData: true, Comment: true, ProcessingInstruction: true, Text: true, Client: true, WindowClient: true, PublicKeyCredential: true, Credential: false, CredentialUserData: true, CSSKeyframesRule: true, MozCSSKeyframesRule: true, WebKitCSSKeyframesRule: true, CSSKeywordValue: true, CSSNumericValue: false, CSSPerspective: true, CSSCharsetRule: true, CSSConditionRule: true, CSSFontFaceRule: true, CSSGroupingRule: true, CSSImportRule: true, CSSKeyframeRule: true, MozCSSKeyframeRule: true, WebKitCSSKeyframeRule: true, CSSMediaRule: true, CSSNamespaceRule: true, CSSPageRule: true, CSSStyleRule: true, CSSSupportsRule: true, CSSViewportRule: true, CSSRule: false, CSSStyleDeclaration: true, MSStyleCSSProperties: true, CSS2Properties: true, CSSStyleSheet: true, CSSImageValue: true, CSSPositionValue: true, CSSResourceValue: true, CSSURLImageValue: true, CSSStyleValue: false, CSSMatrixComponent: true, CSSRotation: true, CSSScale: true, CSSSkew: true, CSSTranslation: true, CSSTransformComponent: false, CSSTransformValue: true, CSSUnitValue: true, CSSUnparsedValue: true, HTMLDataElement: true, DataTransferItemList: true, DeprecationReport: true, HTMLDivElement: true, XMLDocument: true, Document: false, DOMError: true, DOMException: true, ClientRectList: true, DOMRectList: true, DOMRectReadOnly: false, DOMStringList: true, DOMTokenList: true, Element: false, HTMLEmbedElement: true, DirectoryEntry: true, webkitFileSystemDirectoryEntry: true, FileSystemDirectoryEntry: true, Entry: true, webkitFileSystemEntry: true, FileSystemEntry: true, FileEntry: true, webkitFileSystemFileEntry: true, FileSystemFileEntry: true, ErrorEvent: true, AnimationEvent: true, AnimationPlaybackEvent: true, BeforeInstallPromptEvent: true, BlobEvent: true, ClipboardEvent: true, CloseEvent: true, CustomEvent: true, DeviceMotionEvent: true, DeviceOrientationEvent: true, FontFaceSetLoadEvent: true, GamepadEvent: true, HashChangeEvent: true, MediaEncryptedEvent: true, MediaStreamEvent: true, MediaStreamTrackEvent: true, MessageEvent: true, MIDIConnectionEvent: true, MIDIMessageEvent: true, MutationEvent: true, PageTransitionEvent: true, PaymentRequestUpdateEvent: true, PopStateEvent: true, PresentationConnectionAvailableEvent: true, PromiseRejectionEvent: true, RTCDataChannelEvent: true, RTCDTMFToneChangeEvent: true, RTCPeerConnectionIceEvent: true, RTCTrackEvent: true, SecurityPolicyViolationEvent: true, SensorErrorEvent: true, SpeechRecognitionEvent: true, StorageEvent: true, TrackEvent: true, TransitionEvent: true, WebKitTransitionEvent: true, VRDeviceEvent: true, VRDisplayEvent: true, VRSessionEvent: true, MojoInterfaceRequestEvent: true, USBConnectionEvent: true, AudioProcessingEvent: true, OfflineAudioCompletionEvent: true, WebGLContextEvent: true, Event: false, InputEvent: false, SubmitEvent: false, AbsoluteOrientationSensor: true, Accelerometer: true, AccessibleNode: true, AmbientLightSensor: true, ApplicationCache: true, DOMApplicationCache: true, OfflineResourceList: true, BatteryManager: true, EventSource: true, Gyroscope: true, LinearAccelerationSensor: true, Magnetometer: true, MediaDevices: true, MediaRecorder: true, MediaSource: true, MIDIAccess: true, NetworkInformation: true, OrientationSensor: true, PermissionStatus: true, PresentationConnectionList: true, PresentationRequest: true, RelativeOrientationSensor: true, RemotePlayback: true, RTCDTMFSender: true, RTCPeerConnection: true, webkitRTCPeerConnection: true, mozRTCPeerConnection: true, Sensor: true, ServiceWorker: true, ServiceWorkerContainer: true, ServiceWorkerRegistration: true, SharedWorker: true, SpeechRecognition: true, SpeechSynthesis: true, SpeechSynthesisUtterance: true, VR: true, VRDevice: true, VRDisplay: true, VRSession: true, VisualViewport: true, WebSocket: true, Worker: true, WorkerPerformance: true, BluetoothDevice: true, BluetoothRemoteGATTCharacteristic: true, Clipboard: true, MojoInterfaceInterceptor: true, USB: true, IDBOpenDBRequest: true, IDBVersionChangeRequest: true, IDBRequest: true, IDBTransaction: true, AnalyserNode: true, RealtimeAnalyserNode: true, AudioBufferSourceNode: true, AudioDestinationNode: true, AudioNode: true, AudioScheduledSourceNode: true, AudioWorkletNode: true, BiquadFilterNode: true, ChannelMergerNode: true, AudioChannelMerger: true, ChannelSplitterNode: true, AudioChannelSplitter: true, ConstantSourceNode: true, ConvolverNode: true, DelayNode: true, DynamicsCompressorNode: true, GainNode: true, AudioGainNode: true, IIRFilterNode: true, MediaElementAudioSourceNode: true, MediaStreamAudioDestinationNode: true, MediaStreamAudioSourceNode: true, OscillatorNode: true, Oscillator: true, PannerNode: true, AudioPannerNode: true, webkitAudioPannerNode: true, ScriptProcessorNode: true, JavaScriptAudioNode: true, StereoPannerNode: true, WaveShaperNode: true, EventTarget: false, AbortPaymentEvent: true, CanMakePaymentEvent: true, ExtendableMessageEvent: true, FetchEvent: true, ForeignFetchEvent: true, InstallEvent: true, NotificationEvent: true, PaymentRequestEvent: true, PushEvent: true, SyncEvent: true, ExtendableEvent: false, FederatedCredential: true, HTMLFieldSetElement: true, File: true, FileList: true, FileReader: true, DOMFileSystem: true, WebKitFileSystem: true, webkitFileSystem: true, FileSystem: true, FileWriter: true, FontFace: true, FontFaceSet: true, HTMLFormElement: true, Gamepad: true, GamepadButton: true, History: true, HTMLCollection: true, HTMLFormControlsCollection: true, HTMLOptionsCollection: true, HTMLDocument: true, XMLHttpRequest: true, XMLHttpRequestUpload: true, XMLHttpRequestEventTarget: false, HTMLIFrameElement: true, ImageData: true, HTMLImageElement: true, HTMLInputElement: true, InterventionReport: true, KeyboardEvent: true, HTMLLIElement: true, HTMLLabelElement: true, Location: true, HTMLMapElement: true, MediaError: true, MediaKeyMessageEvent: true, MediaKeySession: true, MediaList: true, MediaQueryList: true, MediaQueryListEvent: true, MediaStream: true, CanvasCaptureMediaStreamTrack: true, MediaStreamTrack: true, MessagePort: true, HTMLMetaElement: true, HTMLMeterElement: true, MIDIInputMap: true, MIDIOutputMap: true, MIDIInput: true, MIDIOutput: true, MIDIPort: true, MimeType: true, MimeTypeArray: true, MouseEvent: false, DragEvent: false, MutationObserver: true, WebKitMutationObserver: true, MutationRecord: true, Navigator: true, WorkerNavigator: true, NavigatorConcurrentHardware: false, NavigatorUserMediaError: true, DocumentFragment: true, ShadowRoot: true, DocumentType: true, Node: false, NodeList: true, RadioNodeList: true, Notification: true, HTMLObjectElement: true, OffscreenCanvas: true, HTMLOptionElement: true, HTMLOutputElement: true, OverconstrainedError: true, HTMLParagraphElement: true, HTMLParamElement: true, PasswordCredential: true, PaymentRequest: true, Performance: true, PerformanceEntry: true, PerformanceLongTaskTiming: true, PerformanceMark: true, PerformanceMeasure: true, PerformanceNavigationTiming: true, PerformancePaintTiming: true, PerformanceResourceTiming: true, TaskAttributionTiming: true, PerformanceServerTiming: true, Plugin: true, PluginArray: true, PointerEvent: true, PositionError: true, GeolocationPositionError: true, PresentationAvailability: true, PresentationConnection: true, PresentationConnectionCloseEvent: true, HTMLProgressElement: true, ProgressEvent: true, ResourceProgressEvent: true, RelatedApplication: true, ReportBody: false, RTCDataChannel: true, DataChannel: true, RTCLegacyStatsReport: true, RTCStatsReport: true, ScreenOrientation: true, HTMLSelectElement: true, SharedWorkerGlobalScope: true, HTMLSlotElement: true, SourceBuffer: true, SourceBufferList: true, SpeechGrammar: true, SpeechGrammarList: true, SpeechRecognitionError: true, SpeechRecognitionResult: true, SpeechSynthesisEvent: true, SpeechSynthesisVoice: true, Storage: true, HTMLStyleElement: true, StyleSheet: false, HTMLTableElement: true, HTMLTableRowElement: true, HTMLTableSectionElement: true, HTMLTemplateElement: true, HTMLTextAreaElement: true, TextTrack: true, TextTrackCue: true, VTTCue: true, TextTrackCueList: true, TextTrackList: true, TimeRanges: true, Touch: true, TouchEvent: true, TouchList: true, TrackDefaultList: true, CompositionEvent: true, FocusEvent: true, TextEvent: true, UIEvent: false, URL: true, VideoTrack: true, VideoTrackList: true, VTTRegion: true, WheelEvent: true, Window: true, DOMWindow: true, DedicatedWorkerGlobalScope: true, ServiceWorkerGlobalScope: true, WorkerGlobalScope: false, Attr: true, CSSRuleList: true, ClientRect: true, DOMRect: true, GamepadList: true, NamedNodeMap: true, MozNamedAttrMap: true, Report: true, SpeechRecognitionResultList: true, StyleSheetList: true, IDBCursor: false, IDBCursorWithValue: true, IDBDatabase: true, IDBIndex: true, IDBKeyRange: true, IDBObjectStore: true, IDBObservation: true, IDBVersionChangeEvent: true, SVGAngle: true, SVGClipPathElement: true, SVGDefsElement: true, SVGFEBlendElement: true, SVGFEColorMatrixElement: true, SVGFECompositeElement: true, SVGFEFloodElement: true, SVGFilterElement: true, SVGCircleElement: true, SVGEllipseElement: true, SVGLineElement: true, SVGPolygonElement: true, SVGPolylineElement: true, SVGRectElement: true, SVGGeometryElement: false, SVGAElement: true, SVGForeignObjectElement: true, SVGGElement: true, SVGImageElement: true, SVGSwitchElement: true, SVGTSpanElement: true, SVGTextContentElement: true, SVGTextElement: true, SVGTextPathElement: true, SVGTextPositioningElement: true, SVGUseElement: true, SVGGraphicsElement: false, SVGLength: true, SVGLengthList: true, SVGNumber: true, SVGNumberList: true, SVGPathElement: true, SVGPointList: true, SVGScriptElement: true, SVGStringList: true, SVGAnimateElement: true, SVGAnimateMotionElement: true, SVGAnimateTransformElement: true, SVGAnimationElement: true, SVGDescElement: true, SVGDiscardElement: true, SVGFEComponentTransferElement: true, SVGFEConvolveMatrixElement: true, SVGFEDiffuseLightingElement: true, SVGFEDisplacementMapElement: true, SVGFEDistantLightElement: true, SVGFEFuncAElement: true, SVGFEFuncBElement: true, SVGFEFuncGElement: true, SVGFEFuncRElement: true, SVGFEGaussianBlurElement: true, SVGFEImageElement: true, SVGFEMergeElement: true, SVGFEMergeNodeElement: true, SVGFEMorphologyElement: true, SVGFEOffsetElement: true, SVGFEPointLightElement: true, SVGFESpecularLightingElement: true, SVGFESpotLightElement: true, SVGFETileElement: true, SVGFETurbulenceElement: true, SVGLinearGradientElement: true, SVGMarkerElement: true, SVGMaskElement: true, SVGMetadataElement: true, SVGPatternElement: true, SVGRadialGradientElement: true, SVGSetElement: true, SVGStopElement: true, SVGStyleElement: true, SVGSymbolElement: true, SVGTitleElement: true, SVGViewElement: true, SVGGradientElement: true, SVGComponentTransferFunctionElement: true, SVGFEDropShadowElement: true, SVGMPathElement: true, SVGElement: false, SVGSVGElement: true, SVGTransform: true, SVGTransformList: true, AudioBuffer: true, AudioParam: true, AudioParamMap: true, AudioTrack: true, AudioTrackList: true, AudioContext: true, webkitAudioContext: true, BaseAudioContext: false, OfflineAudioContext: true, WebGLActiveInfo: true}); A.NativeTypedArray.$nativeSuperclassTag = "ArrayBufferView"; A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin.$nativeSuperclassTag = "ArrayBufferView"; A._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin.$nativeSuperclassTag = "ArrayBufferView"; A.NativeTypedArrayOfDouble.$nativeSuperclassTag = "ArrayBufferView"; A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin.$nativeSuperclassTag = "ArrayBufferView"; A._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin.$nativeSuperclassTag = "ArrayBufferView"; A.NativeTypedArrayOfInt.$nativeSuperclassTag = "ArrayBufferView"; A._SourceBufferList_EventTarget_ListMixin.$nativeSuperclassTag = "EventTarget"; A._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin.$nativeSuperclassTag = "EventTarget"; A._TextTrackList_EventTarget_ListMixin.$nativeSuperclassTag = "EventTarget"; A._TextTrackList_EventTarget_ListMixin_ImmutableListMixin.$nativeSuperclassTag = "EventTarget"; })(); Function.prototype.call$1 = function(a) { return this(a); }; Function.prototype.call$2 = function(a, b) { return this(a, b); }; Function.prototype.call$0 = function() { return this(); }; Function.prototype.call$3$1 = function(a) { return this(a); }; Function.prototype.call$2$1 = function(a) { return this(a); }; Function.prototype.call$1$1 = function(a) { return this(a); }; Function.prototype.call$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$4 = function(a, b, c, d) { return this(a, b, c, d); }; Function.prototype.call$3$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$2$2 = function(a, b) { return this(a, b); }; Function.prototype.call$1$2 = function(a, b) { return this(a, b); }; Function.prototype.call$1$0 = function() { return this(); }; Function.prototype.call$2$0 = function() { return this(); }; Function.prototype.call$1$5 = function(a, b, c, d, e) { return this(a, b, c, d, e); }; Function.prototype.call$5 = function(a, b, c, d, e) { return this(a, b, c, d, e); }; Function.prototype.call$2$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$8 = function(a, b, c, d, e, f, g, h) { return this(a, b, c, d, e, f, g, h); }; Function.prototype.call$10 = function(a, b, c, d, e, f, g, h, i, j) { return this(a, b, c, d, e, f, g, h, i, j); }; Function.prototype.call$9 = function(a, b, c, d, e, f, g, h, i) { return this(a, b, c, d, e, f, g, h, i); }; Function.prototype.call$6 = function(a, b, c, d, e, f) { return this(a, b, c, d, e, f); }; Function.prototype.call$7 = function(a, b, c, d, e, f, g) { return this(a, b, c, d, e, f, g); }; convertAllToFastObject(holders); convertToFastObject($); (function(callback) { if (typeof document === "undefined") { callback(null); return; } if (typeof document.currentScript != "undefined") { callback(document.currentScript); return; } var scripts = document.scripts; function onLoad(event) { for (var i = 0; i < scripts.length; ++i) scripts[i].removeEventListener("load", onLoad, false); callback(event.target); } for (var i = 0; i < scripts.length; ++i) scripts[i].addEventListener("load", onLoad, false); })(function(currentScript) { init.currentScript = currentScript; var callMain = A.main; if (typeof dartMainRunner === "function") dartMainRunner(callMain, []); else callMain([]); }); })();